diff --git a/package-lock.json b/package-lock.json index 134d859..8d97070 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,6 +17,7 @@ "jwt-decode": "^3.1.2", "react": "^18.2.0", "react-bootstrap": "^2.7.4", + "react-bootstrap-icons": "^1.10.3", "react-dom": "^18.2.0", "react-router-dom": "^6.11.2", "react-scripts": "5.0.1", @@ -14440,6 +14441,17 @@ } } }, + "node_modules/react-bootstrap-icons": { + "version": "1.10.3", + "resolved": "https://registry.npmjs.org/react-bootstrap-icons/-/react-bootstrap-icons-1.10.3.tgz", + "integrity": "sha512-j4hSby6gT9/enhl3ybB1tfr1slZNAYXDVntcRrmVjxB3//2WwqrzpESVqKhyayYVaWpEtnwf9wgUQ03cuziwrw==", + "dependencies": { + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": ">=16.8.6" + } + }, "node_modules/react-dev-utils": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", diff --git a/package.json b/package.json index f47938a..76df45b 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "jwt-decode": "^3.1.2", "react": "^18.2.0", "react-bootstrap": "^2.7.4", + "react-bootstrap-icons": "^1.10.3", "react-dom": "^18.2.0", "react-router-dom": "^6.11.2", "react-scripts": "5.0.1", diff --git a/src/App copy.js b/src/App copy.js new file mode 100644 index 0000000..b584cef --- /dev/null +++ b/src/App copy.js @@ -0,0 +1,65 @@ +import logo from "./logo.svg"; +import "./App.css"; +import { BrowserRouter as Router, Route, Routes } from "react-router-dom"; +import Image from "react-bootstrap/Image"; +import IddrsImg from "./Static/Imgs/IDDRS.png"; +import Container from "react-bootstrap/esm/Container"; +import AppContext from "./AppContext"; +import PrivateRoute from "./Utiles/PrivateRoute"; +import Navbar_ from "./Components/Navbar/Navbar_"; +import { AuthProvider } from "./Context/AuthContext.js.old"; +import { URLProvider } from "./Context/URLContext"; + +import Home from "./Pages/Home"; +import Levels from "./Pages/Levels"; +import Content from "./Pages/Content"; +import NewParagraph from "./Pages/NewParagraph"; +import Standards from "./Pages/Standards"; +import Details from "./Pages/Details"; +import Login from "./Pages/Login"; + +function App() { + return ( +
+ + + + IDDRS + + + }> + } /> + + }> + } /> + + }> + } /> + + }> + } /> + + }> + } /> + + } + > + } + /> + + + } /> + + + + +
+ ); +} + +export default App; diff --git a/src/App.js b/src/App.js index 594831e..5080142 100644 --- a/src/App.js +++ b/src/App.js @@ -1,62 +1,44 @@ import logo from "./logo.svg"; import "./App.css"; import { BrowserRouter as Router, Route, Routes } from "react-router-dom"; +import PrivateRoute from "./utils/PrivateRoute"; +import { AuthProvider } from "./Context/AuthContext"; import Image from "react-bootstrap/Image"; import IddrsImg from "./Static/Imgs/IDDRS.png"; import Container from "react-bootstrap/esm/Container"; -import AppContext from "./AppContext"; -import PrivateRoute from "./Utiles/PrivateRoute"; import Navbar_ from "./Components/Navbar/Navbar_"; -import { AuthProvider } from "./Context/AuthContext"; import { URLProvider } from "./Context/URLContext"; -import Home from "./Pages/Home"; import Levels from "./Pages/Levels"; -import Content from "./Pages/Content"; -import NewParagraph from "./Pages/NewParagraph"; +import Home from "./Pages/Home"; import Standards from "./Pages/Standards"; -import Details from "./Pages/Details"; -import Login from "./Pages/Login"; +import LoginPage from "./Pages/LoginPage"; +import Login from "./Components/Login/Login"; function App() { return (
- - - IDDRS + + IDDRS + }> } /> - }> - } /> - - }> - } /> - }> } /> }> } /> - } - > - } - /> + + } /> - - } /> - - + +
); diff --git a/src/Components/Content/ContentComp.js b/src/Components/Content/ContentComp.js deleted file mode 100644 index 1992bc4..0000000 --- a/src/Components/Content/ContentComp.js +++ /dev/null @@ -1,106 +0,0 @@ -import React, { useContext, useState, useEffect } from "react"; -import URLContext from "../../Context/URLContext"; -import Form from "react-bootstrap/Form"; -import Container from "react-bootstrap/Container"; -import axios from "axios"; -import ContentList from "./ContentList"; -import useAxios from "../../Utiles/useAxios"; - -const ContentComp = () => { - let { url } = useContext(URLContext); - - const [levels, setLevels] = useState([]); - const [standards, setStandards] = useState([]); - - const [selectedLevel, setSelectedLevel] = useState([]); - const [selectedStandard, setSelectedStandard] = useState([]); - - const [selectedStandards, setSelectedStandards] = useState([]); - const [showStandards, setShowStandards] = useState(false); - - const [data, setData] = useState([]); - - let api = useAxios(); - - let getLevels = async () => { - let response = await api.get("/levels/"); - if (response.status === 200) { - setLevels(response.data); - } - }; - - useEffect(()=> { - getLevels() -}, []) - - - useEffect(() => { - axios - .get(url + "/standards/") - .then((response) => setStandards(response.data)) - .catch((error) => console.log(error)); - }, []); - - const handleLevelChange = (e) => { - setSelectedLevel(e.target.value); - setSelectedStandards( - standards.filter((standard) => standard.standardLevel == e.target.value) - ); - setShowStandards(true); - }; - - const handleStandardChange = (e) => { - setSelectedStandard(e.target.value); - axios - .get(url + "/content-list/", { - params: { - level: selectedLevel, - standard: e.target.value, - }, - }) - .then((response) => { - setData(response.data.contents); - }) - .catch((error) => { - console.log(error); - }); - }; - - return ( - - - - {levels.map((level) => ( - - ))} - - - {showStandards && ( - - - {selectedStandards.map((standard) => ( - - ))} - - )} - - - ); -}; - -export default ContentComp; diff --git a/src/Components/Content/ContentList.js b/src/Components/Content/ContentList.js deleted file mode 100644 index c04b0fa..0000000 --- a/src/Components/Content/ContentList.js +++ /dev/null @@ -1,39 +0,0 @@ -import React from "react"; -import { Link } from 'react-router-dom'; - -const ContentList = (props) => { - return ( -
- {props.standardContnet.map((paragraph, index) => ( - - - - ))} -
- ); -}; - -export default ContentList; diff --git a/src/Components/HomePage/HomePage.js b/src/Components/HomePage/HomePage.js index e7bc8d4..103f5de 100644 --- a/src/Components/HomePage/HomePage.js +++ b/src/Components/HomePage/HomePage.js @@ -1,110 +1,10 @@ import React, { useContext, useState, useEffect } from "react"; -import URLContext from "../../Context/URLContext"; -import Button from "react-bootstrap/esm/Button"; -import axios from "axios"; -import Row from "react-bootstrap/Row"; -import Col from "react-bootstrap/Col"; -import Classes from "./HomePage.module.css"; -import ClipLoader from "react-spinners/ClipLoader"; + const HomePage = () => { - let {url} = useContext(URLContext) - const [newContentTracker, setNewContentTracker] = useState([]); - const [newContents, setNewContents] = useState(true); - const [isLoading, setIsLoading] = useState(false); - - useEffect(() => { - axios - .get(url + "/NewContentTracker/") - .then((response) => setNewContentTracker(response.data)) - .catch((error) => console.log(error)); - }, [newContents]); - - const handelClick = () => { - setIsLoading(true); - axios - .post(url + "/pre-process/") - .then((response) => { - setNewContents(false); - setIsLoading(false); - }) - .catch((error) => { - console.error("Error pre-processing:", error); - // Handle error condition - }); - }; - return ( <> - - -

IDDRS Admin Entry Mask

- -

Pages:

-
    -
  1. -

    Content:

    -

    - To view the content of each standard by choosing the desired - level and standard. Users can click on each piece of content to - view it or modify it. -

    -
  2. -
  3. -

    New Paragraph:

    -

    - To add new paragraphs to the database to make them available for - searching. -

    -
  4. -
  5. -

    Levels:

    -

    - To show all levels. Users can enter new levels or modify - existing ones. -

    -
  6. -
  7. -

    Standards:

    -

    - To show all the standards ordered by levels. Users can modify or - add standards. -

    -
  8. -
- -

Home Page:

-

- In the home page, there is a pre-process button to make all the - modified and new entries searchable. The button only appears if - there are new paragraphs added. -

- - {newContentTracker.length > 0 && ( - -
-
- {newContentTracker.length} enterys are not yet searchable. - Please click Pre-Process button to make them searchable. -
-
- - - )} -
- {isLoading && ( -
- -
- )} +

Home Page

); }; diff --git a/src/Components/LevelStandard/LevelStandard.js b/src/Components/LevelStandard/LevelStandard.js deleted file mode 100644 index 49da71a..0000000 --- a/src/Components/LevelStandard/LevelStandard.js +++ /dev/null @@ -1,73 +0,0 @@ -import React, { useContext, useState, useEffect } from "react"; -import URLContext from "../../Context/URLContext"; -import axios from "axios"; -import Form from "react-bootstrap/Form"; - -const LevelStandard = ({ onValueChange }) => { - let {url} = useContext(URLContext) - - const [levels, setLevels] = useState([]); - const [standards, setStandards] = useState([]); - - const [selectedLevel, setSelectedLevel] = useState(''); - // const [selectedStandard, setSelectedStandard] = useState([]); - - const [selectedStandards, setSelectedStandards] = useState([]); - const [showStandards, setShowStandards] = useState(false); - - useEffect(() => { - axios - .get(url + "/levels/") - .then((response) => setLevels(response.data)) - .catch((error) => console.log(error)); - }, []); - - useEffect(() => { - axios - .get(url + "/standards/") - .then((response) => setStandards(response.data)) - .catch((error) => console.log(error)); - }, []); - - const handleLevelChange = (e) => { - setSelectedLevel(e.target.value); - setSelectedStandards( - standards.filter((standard) => standard.standardLevel == e.target.value) - ); - setShowStandards(true); - }; - - const handleStandardChange = (e) =>{ - const selectedStandard = e.target.value; - onValueChange(selectedLevel, selectedStandard) - } - return ( - <> - - - {levels.map((level) => ( - - ))} - - - {showStandards && ( - - - {selectedStandards.map((standard) => ( - - ))} - - )} - - ); -}; - -export default LevelStandard; diff --git a/src/Components/LevelsList/LevelsList.js b/src/Components/LevelsList/LevelsList.js index 00d87e4..ba82938 100644 --- a/src/Components/LevelsList/LevelsList.js +++ b/src/Components/LevelsList/LevelsList.js @@ -6,19 +6,37 @@ import Table from "react-bootstrap/Table"; import Form from "react-bootstrap/Form"; import Row from "react-bootstrap/Row"; import Col from "react-bootstrap/Col"; +import AuthContext from "../../Context/AuthContext"; const LevelsList = () => { let { url } = useContext(URLContext); + let { authTokens, logoutUser } = useContext(AuthContext); const [editingRow, setEditingRow] = useState(null); const [levels, setLevels] = useState([]); useEffect(() => { - axios - .get(url + "/levels/") - .then((response) => setLevels(response.data)) - .catch((error) => console.log(error)); + getLevels(); }, []); + let getLevels = async (e) => { + try { + const response = await axios.get(url + "/levels/", { + headers: { + "Content-Type": "application/json", + "Authorization": "Bearer" + String(authTokens.access), + }, + }); + const data = await response.data; + if (response.status === 200) { + setLevels(data); + } else if (response.statusText === "Unauthorized") { + logoutUser(); + } + } catch (error) { + console.error("Error getting levels:", error); + } + }; + const handleEditClick = (rowData) => { setEditingRow(rowData); }; @@ -29,9 +47,12 @@ const LevelsList = () => { params: { editingRow: editingRow, }, + headers: { + "Content-Type": "application/json", + "Authorization": "Bearer " + String(authTokens.access), + }, }) .then((response) => { - console.log("Form submitted successfully:", response.data); }) .catch((error) => { console.error("Error submitting form:", error); @@ -47,7 +68,7 @@ const LevelsList = () => { }, }) .then((response) => { - console.log("Form deleted successfully:", response.data); + window.location.reload(false); }) .catch((error) => { @@ -78,9 +99,9 @@ const LevelsList = () => { - setEditingRow({ ...editingRow, levelName: e.target.value }) + setEditingRow({ ...editingRow, levelTitle: e.target.value }) } /> @@ -110,7 +131,7 @@ const LevelsList = () => { {levels.map((level) => ( {level.levelNumber} - {level.levelName} + {level.levelTitle} {level.levelColor} + + ); +}; + +export default Login; diff --git a/src/Components/LoginPage/LoginPage.js b/src/Components/LoginPage/LoginPage.js deleted file mode 100644 index 8f0edd5..0000000 --- a/src/Components/LoginPage/LoginPage.js +++ /dev/null @@ -1,35 +0,0 @@ -import React, { useContext } from "react"; -import Form from "react-bootstrap/Form"; -import Button from "react-bootstrap/Button"; -import AuthContext from "../../Context/AuthContext"; - -const LoginPage = () => { - let { loginUser } = useContext(AuthContext); - return ( -
-
- - Email address - - - - Password - - - -
-
- ); -}; - -export default LoginPage; diff --git a/src/Components/Navbar/Navbar_.js b/src/Components/Navbar/Navbar_.js index d9e4d5d..a0827bf 100644 --- a/src/Components/Navbar/Navbar_.js +++ b/src/Components/Navbar/Navbar_.js @@ -1,4 +1,4 @@ -import React, {useContext} from "react"; +import React, { useContext } from "react"; import Nav from "react-bootstrap/Nav"; import Navbar from "react-bootstrap/Navbar"; import Container from "react-bootstrap/esm/Container"; @@ -8,7 +8,7 @@ import AuthContext from "../../Context/AuthContext"; import Button from "react-bootstrap/esm/Button"; const Navbar_ = () => { - let {user, logoutUser} = useContext(AuthContext); + let { user, logoutUser } = useContext(AuthContext); return ( @@ -23,22 +23,6 @@ const Navbar_ = () => { > Home - - isActive ? classes["nav-link-active"] : classes["nav-link"] - } - to={`/content`} - > - Content - - - isActive ? classes["nav-link-active"] : classes["nav-link"] - } - to={`/newparagraph`} - > - New Paragraph - isActive ? classes["nav-link-active"] : classes["nav-link"] @@ -55,14 +39,15 @@ const Navbar_ = () => { > Standards - - {user &&

Hello { user.username }

} - - {user && ( - - )} - + {user &&

Hello {user.username}

} + + {user && ( + + )}
diff --git a/src/Components/NewParagraphForm/NewParagraphForm.js b/src/Components/NewParagraphForm/NewParagraphForm.js deleted file mode 100644 index 4c079a0..0000000 --- a/src/Components/NewParagraphForm/NewParagraphForm.js +++ /dev/null @@ -1,186 +0,0 @@ -import React, { useContext, useState, useEffect } from "react"; -import URLContext from "../../Context/URLContext"; -import axios from "axios"; -import LevelStandard from "../LevelStandard/LevelStandard"; -import Form from "react-bootstrap/Form"; -import Row from "react-bootstrap/Row"; -import Col from "react-bootstrap/Col"; -import Container from "react-bootstrap/esm/Container"; -import Button from "react-bootstrap/Button"; - -const NewParagraphForm = () => { - let {url} = useContext(URLContext) - - const [selectedLevel, setSelectedLevel] = useState(""); - const [selectedStandard, setSelectedStandard] = useState(""); - - const [isSubmitted, setIsSubmitted] = useState(false); - - const [formData, setFormData] = useState({ - Heading1: "", - Heading2: "", - Heading3: "", - Heading4: "", - Paragraph: "", - PageNum: "", - }); - - const handleLevelStandard = (level, standard) => { - setSelectedLevel(level); - setSelectedStandard(standard); - }; - - const handleChange = (e) => { - setFormData({ ...formData, [e.target.name]: e.target.value }); - }; - - const handleSubmit = (e) => { - e.preventDefault(); - // Access the form values from the formData state - console.log(formData); - - axios - .post(url + "/content-create/", { - params: { - level: selectedLevel, - standard: selectedStandard, - formData: formData, - }, - }) - .then((response) => { - console.log("Form submitted successfully:", response.data); - setIsSubmitted(true); - setFormData({ - Heading1: "", - Heading2: "", - Heading3: "", - Heading4: "", - Paragraph: "", - PageNum: "", - }); - }) - .catch((error) => { - console.error("Error submitting form:", error); - // Handle error condition - }); - }; - useEffect(() => { - if (isSubmitted) { - // Automatically hide the popup after 3 seconds - const timeout = setTimeout(() => { - setIsSubmitted(false); - }, 3000); - - return () => clearTimeout(timeout); - } - }, [isSubmitted]); - - return ( - - {/* Popup message */} - {isSubmitted && ( -
-

Content added successfully!

-
- )} -
- - - - - Title - - - - - - - - - Sub-Title1 - - - - - - - - - Sub-Title2 - - - - - - - - - Sub-Title3 - - - - - - - - - Paragraph - - - - - - - - - Page Number - - - - - - -
-
- ); -}; - -export default NewParagraphForm; diff --git a/src/Components/Paragraph/ParagraphDetails.js b/src/Components/Paragraph/ParagraphDetails.js deleted file mode 100644 index 715d49c..0000000 --- a/src/Components/Paragraph/ParagraphDetails.js +++ /dev/null @@ -1,224 +0,0 @@ -import React, { useEffect, useState, useContext } from "react"; -import { useNavigate, useParams } from "react-router-dom"; -import URLContext from "../../Context/URLContext"; -import axios from "axios"; - -import Form from "react-bootstrap/Form"; -import Row from "react-bootstrap/Row"; -import Col from "react-bootstrap/Col"; -import Container from "react-bootstrap/esm/Container"; -import Button from "react-bootstrap/Button"; - -const ParagraphDetails = ({ selectedParagraph }) => { - let {url} = useContext(URLContext) - const navigate = useNavigate(); - - const { level, standard, pk } = useParams(); - console.log(level, standard, pk); - const [paragraph, setParagraph] = useState([]); - - const [isSubmitted, setIsSubmitted] = useState(false); - - const [formData, setFormData] = useState({ - Heading1: "", - Heading2: "", - Heading3: "", - Heading4: "", - Paragraph: "", - PageNum: "", - }); - - useEffect(() => { - axios - .get(url + "/content-detail/", { - params: { - level: level, - standard: standard, - id: pk, - formData: formData, - }, - }) - .then((response) => { - setParagraph(response.data.paragraph); - setFormData({ - Heading1: response.data.paragraph.Heading1, - Heading2: response.data.paragraph.Heading2, - Heading3: response.data.paragraph.Heading3, - Heading4: response.data.paragraph.Heading4, - Paragraph: response.data.paragraph.Paragraph, - PageNum: response.data.paragraph.PageNum, - }) - }) - .catch((error) => console.log("There is an error:", error)); - }, [pk]); - - useEffect(() => { - if (isSubmitted) { - // Automatically hide the popup after 3 seconds - const timeout = setTimeout(() => { - setIsSubmitted(false); - }, 3000); - - return () => clearTimeout(timeout); - } - }, [isSubmitted]); - - - const handleSubmit = (e) => { - e.preventDefault(); - - axios - .post(url + "/content-update/", { - params: { - level: level, - standard: standard, - id: pk, - formData: formData, - }, - }) - .then((response) => { - console.log("Form submitted successfully:", response.data); - setIsSubmitted(true); - }) - .catch((error) => { - console.error("Error submitting form:", error); - // Handle error condition - }); - }; - - const handleChange = (e) => { - setFormData({ ...formData, [e.target.name]: e.target.value }); - }; - - const handleDelete = (e) =>{ - e.preventDefault(); - - axios - .post(url + "/content-delete/", { - params: { - level: level, - standard: standard, - id: pk - }, - }) - .then((response) => { - console.log("Deleted successfully:", response.data); - navigate('/content') - }) - .catch((error) => { - console.error("Error deleting:", error); - // Handle error condition - }); - - } - - return ( - - {/* Popup message */} - {isSubmitted && ( -
-

Content updated successfully!

-
- )} -
- - - Title - - - - - - - - - Sub-Title1 - - - - - - - - - Sub-Title2 - - - - - - - - - Sub-Title3 - - - - - - - - - Paragraph - - - - - - - - - Page Number - - - - - - - -
-
- ); -}; - -export default ParagraphDetails; diff --git a/src/Components/ProgressBar_/ProgressBar_.js b/src/Components/ProgressBar_/ProgressBar_.js new file mode 100644 index 0000000..bf6f36d --- /dev/null +++ b/src/Components/ProgressBar_/ProgressBar_.js @@ -0,0 +1,11 @@ +import React, { useState, useEffect } from 'react'; +import ProgressBar from 'react-bootstrap/ProgressBar'; + + +const ProgressBar_ = ({ progress }) => { + return ( + + ); +} + +export default ProgressBar_ \ No newline at end of file diff --git a/src/Components/StandardsList/Standard.js b/src/Components/StandardsList/Standard.js new file mode 100644 index 0000000..3c30a02 --- /dev/null +++ b/src/Components/StandardsList/Standard.js @@ -0,0 +1,37 @@ +import React from "react"; +import Table from "react-bootstrap/esm/Table"; +import { Trash } from "react-bootstrap-icons"; +import Button from "react-bootstrap/esm/Button"; +const Standard = (props) => { + const handleDeleteClick = () => { + // Call the deleteStandard function passed down as a prop + props.deleteStandard(); + }; + return ( + + + + + + + + + + +
+ {props.standardFilePDF && ( +

{props.standardTitle} | PDF

+ )} +
+ +
+ {props.standardFileWord && ( +

{props.standardTitle} | Word

+ )} +
+ ); +}; + +export default Standard; diff --git a/src/Components/StandardsList/StandardsList.js b/src/Components/StandardsList/StandardsList.js index 8af21ae..747b618 100644 --- a/src/Components/StandardsList/StandardsList.js +++ b/src/Components/StandardsList/StandardsList.js @@ -1,171 +1,288 @@ import React, { useContext, useState, useEffect } from "react"; import URLContext from "../../Context/URLContext"; import axios from "axios"; -import Button from "react-bootstrap/Button"; -import Table from "react-bootstrap/Table"; +import Button from "react-bootstrap/esm/Button"; import Form from "react-bootstrap/Form"; -import Row from "react-bootstrap/Row"; -import Col from "react-bootstrap/Col"; -import LevelsList from "../LevelsList/LevelsList"; +import Standard from "./Standard"; +import AuthContext from "../../Context/AuthContext"; +import ProgressBar_ from "../ProgressBar_/ProgressBar_"; const StandardsList = () => { - let {url} = useContext(URLContext) + let { authTokens, logoutUser } = useContext(AuthContext); + let { url } = useContext(URLContext); const [standards, setStandards] = useState([]); const [levels, setLevels] = useState([]); - const [editingRow, setEditingRow] = useState(null); + + const [fileEvents, setFileEvents] = useState([]); + + const [selectedLevel, setSelectedLevel] = useState(""); + const [pdfFile, setPdfFile] = useState(null); + const [wordFile, setWordFile] = useState(null); + + const [errorMessagePDF, setErrorMessagePDF] = useState(""); + const [errorMessageWord, setErrorMessageWord] = useState(""); + const [errorMessageSameFileName, setErrorMessageSameFileName] = useState(""); + + const [progress, setProgress] = useState(0); useEffect(() => { axios .get(url + "/standards/") - .then((response) => - setStandards( - response.data.sort( - (prev, next) => prev.standardLevel - next.standardLevel - ) - ) - ) + .then((response) => setStandards(response.data)) .catch((error) => console.log(error)); }, []); useEffect(() => { axios - .get(url + "/levels/") - .then((response) => setLevels(response.data)) + .get(url + "/fileEvents/") + .then((response) => setFileEvents(response.data)) .catch((error) => console.log(error)); }, []); - const handleSubmit = () => { - axios - .post(url + "/standard-submit/", { - params: { - editingRow: editingRow, + // #######################PDF Validation################################### + + const handleFileChangePDF = (event) => { + const file = event.target.files[0]; + + if (file) { + if (file.type === "application/pdf") { + setErrorMessagePDF(""); + setPdfFile(file); + setErrorMessageSameFileName(""); + } else { + setErrorMessagePDF("Please select a PDF file."); + } + } + }; + + // ########################Word Validation############################### + + const handleFileChangeWord = (event) => { + const file = event.target.files[0]; + + if (file) { + if ( + file.type === + "application/vnd.openxmlformats-officedocument.wordprocessingml.document" + ) { + setErrorMessageWord(""); + setWordFile(file); + setErrorMessageSameFileName(""); + } else { + setErrorMessageWord("Please select a Word file."); + } + } + }; + // ############################################################### + useEffect(() => { + getLevels(); + getStandards(); + }, []); + + let getLevels = async (e) => { + + try { + const response = await axios.get(url + "/levels/", { + headers: { + "Content-Type": "application/json", + Authorization: "Bearer" + String(authTokens.access), }, - }) - .then((response) => { - console.log("Form submitted successfully:", response.data); - }) - .catch((error) => { - console.error("Error submitting form:", error); - // Handle error condition }); + const data = await response.data; + if (response.status === 200) { + setLevels(data); + } else if (response.statusText === "Unauthorized") { + + logoutUser(); + } + } catch (error) { + console.error("Error getting levels:", error); + } }; - const handleEditClick = (rowData) => { - setEditingRow(rowData); - }; - const handleDeleteClick = (rowData) => { - axios - .post(url + "/standard-delete/", { - params: { - rowData: rowData, + + let getStandards = async (e) => { + + try { + const response = await axios.get(url + "/standards/", { + headers: { + "Content-Type": "application/json", + Authorization: "Bearer" + String(authTokens.access), }, - }) - .then((response) => { - console.log("Form deleted successfully:", response.data); - window.location.reload(false); - }) - .catch((error) => { - console.error("Error deleting form:", error); - // Handle error condition }); + const data = await response.data; + if (response.status === 200) { + setStandards(data); + } else if (response.statusText === "Unauthorized") { + + logoutUser(); + } + } catch (error) { + console.error("Error getting levels:", error); + } }; + // ######################################################### + + function getFileNameWithoutExtension(fileName) { + const nameParts = fileName.split("."); + if (nameParts.length > 1) { + nameParts.pop(); // Remove the last part, which is the file extension + return nameParts.join("."); // Rejoin the remaining parts + } else { + return fileName; // There was no file extension + } + } + + // ######################################################### + + const handleFormSubmit = (event) => { + const pdfFileName = getFileNameWithoutExtension(pdfFile.name); + const wordFileName = getFileNameWithoutExtension(wordFile.name); + + if (pdfFileName && wordFileName) { + if (pdfFileName === wordFileName) { + // Files have the same name + const formData = new FormData(); + formData.append("selectedLevel", selectedLevel); + formData.append("pdfFile", pdfFile); + formData.append("wordFile", wordFile); + + axios + .post(url + "/upload-standard/", formData) + .then((response) => { + + }) + .catch((error) => { + console.error("Error filling in data:", error); + }); + } else { + // Files have different names + setErrorMessageSameFileName("PDF and Word files have different names."); + } + } + }; + // ################################################################ + const handelDeleteStandard = (stdData) => { + const shouldDelete = window.confirm( + "Are you sure you want to delete this standard?" + ); + if (shouldDelete) { + + axios + .post(url + "/standard-delete/", { + params: { + stdData: stdData, + }, + }) + .then((response) => { + + window.location.reload(false); + }) + .catch((error) => { + console.error("Error deleting Standard:", error); + // Handle error condition + }); + } + }; + const HandelPreprocess = async () => { + try { + const { data } = await axios.post(url + "/process-files/", { + // your data + }, { + onUploadProgress: (progressEvent) => { + const percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total); + setProgress(percentCompleted); + }, + }); + + } catch (error) { + console.error('Error:', error); + } finally { + setProgress(0); + setFileEvents([]); + } + }; + + + return ( <> -
- - - - setEditingRow({ - ...editingRow, - levelID: e.target.value, - }) - } - value={editingRow ? editingRow.levelID : ""} - > - - {levels.map((level, index) => ( - - ))} - - - - - - setEditingRow({ - ...editingRow, - standardNumber: e.target.value, - }) - } - /> - - - - - - setEditingRow({ - ...editingRow, - standardTitle: e.target.value, - }) - } - /> - - - - - - - -
- - - - - - - - - - - {standards.map((standard, index) => ( - - - - - - - - + + setSelectedLevel(e.target.value)} + > + + {levels.map((level) => ( + ))} - -
LevelStandardNameRevision
{standard.standardLevel}{standard.standardNumber}{standard.standardTitle}{standard.revision} - - - -
+ + + Upload Standard | PDF + + + {errorMessagePDF &&

{errorMessagePDF}

} + + Upload Standard | Word + + + {errorMessageWord &&

{errorMessageWord}

} + + {errorMessageSameFileName && ( +

{errorMessageSameFileName}

+ )} + + + +
+ {fileEvents.length > 0 && ( + <> +

+ There are {fileEvents.length} chnges happend recently please click + on +

+ + +
+ + )} + {standards.map((standard) => ( + handelDeleteStandard(standard)} + /> + ))} ); }; diff --git a/src/Context/AuthContext.js b/src/Context/AuthContext.js index 2e38272..03b54b9 100644 --- a/src/Context/AuthContext.js +++ b/src/Context/AuthContext.js @@ -1,5 +1,6 @@ -import { createContext, useEffect, useState, useContext } from "react"; +import { createContext, useContext, useEffect, useState } from "react"; import URLContext from "./URLContext"; +import axios from "axios"; import jwt_decode from "jwt-decode"; import { useNavigate } from "react-router-dom"; @@ -15,7 +16,6 @@ export const AuthProvider = ({ children }) => { ? jwt_decode(localStorage.getItem("authTokens")) : null ); - let [authTokens, setAuthTokens] = useState(() => localStorage.getItem("authTokens") ? JSON.parse(localStorage.getItem("authTokens")) @@ -29,24 +29,33 @@ export const AuthProvider = ({ children }) => { let loginUser = async (e) => { e.preventDefault(); - let response = await fetch(url + "/api/token/", { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - username: e.target.username.value, - password: e.target.password.value, - }), - }); - let data = await response.json(); - if (response.status === 200) { - setAuthTokens(data); - setUser(jwt_decode(data.access)); - localStorage.setItem("authTokens", JSON.stringify(data)); - navigate("/"); - } else { - alert("Login Failed"); + try { + const response = await axios.post( + url + "/api/token/", + { + username: e.target.username.value, + password: e.target.password.value, + }, + { + headers: { + "Content-Type": "application/json", + }, + } + ); + + const data = await response.data; + + if (response.status === 200) { + setAuthTokens(data); + setUser(jwt_decode(data.access)); + localStorage.setItem("authTokens", JSON.stringify(data)); + navigate("/"); + } else { + alert("Login Failed"); + } + } catch (error) { + console.error("Error during login:", error); + alert("An error occurred during login"); } }; @@ -57,29 +66,37 @@ export const AuthProvider = ({ children }) => { navigate("/login"); }; - //let updateToken = async () => { - // let response = await fetch(url + "/api/token/refresh/", { - // method: "POST", - // headers: { - // "Content-Type": "application/json", - // }, - // body: JSON.stringify({ - // refresh: authTokens.refresh, - // }), - // }); - // let data = await response.json(); - // if (response.status === 200) { - // setAuthTokens(data); - // setUser(jwt_decode(data.access)); - // localStorage.setItem("authTokens", JSON.stringify(data)); - // } else { - // logoutUser(); - // } - //}; -// + let updateToken = async () => { + try { + const response = await axios.post( + url + "/api/token/refresh/", + { + refresh: authTokens?.refresh, + }, + { + headers: { + "Content-Type": "application/json", + }, + } + ); + const data = await response.data; + + if (response.status === 200) { + setAuthTokens(data); + setUser(jwt_decode(data.access)); + localStorage.setItem("authTokens", JSON.stringify(data)); + } else { + logoutUser(); + } + + if(loading){ + setLoading(false) + } + } catch (error) {} + }; useEffect(() => { if (authTokens) { - setUser(jwt_decode(authTokens.access)) + setUser(jwt_decode(authTokens.access)); } setLoading(false); }, [authTokens, loading]); @@ -90,7 +107,21 @@ export const AuthProvider = ({ children }) => { loginUser: loginUser, logoutUser: logoutUser, }; + + useEffect(() => { + if (loading){ + updateToken() + } + let fourMin = 1000 * 600 * 4; + let interval = setInterval(()=>{ + if(authTokens){ + updateToken() + } + },fourMin) + return () => clearInterval(interval); + + },[authTokens, loading]) return ( - {children} + {loading ? null : children} ); }; diff --git a/src/Context/URLContext.js b/src/Context/URLContext.js index d364551..b5371b1 100644 --- a/src/Context/URLContext.js +++ b/src/Context/URLContext.js @@ -5,10 +5,9 @@ const URLContext = createContext(); export default URLContext; export const URLProvider = ({ children }) => { - const url = "http://localhost:8000/admin_api"; + // const url = "http://localhost:8000/admin_api"; + const url = "http://localhost:8000/data_api"; return ( - - {children} - + {children} ); }; diff --git a/src/Pages/Content.js b/src/Pages/Content.js deleted file mode 100644 index c05f4ad..0000000 --- a/src/Pages/Content.js +++ /dev/null @@ -1,9 +0,0 @@ -import React, { useContext } from "react"; -import ContentComp from "../Components/Content/ContentComp"; - -const Content = () => { - - return (); -}; - -export default Content; diff --git a/src/Pages/Details.js b/src/Pages/Details.js deleted file mode 100644 index 86e4735..0000000 --- a/src/Pages/Details.js +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import ParagraphDetails from '../Components/Paragraph/ParagraphDetails' -import Container from 'react-bootstrap/esm/Container' - -const Details = () => { - return ( - - - - ) -} - -export default Details \ No newline at end of file diff --git a/src/Pages/Login.js b/src/Pages/Login.js deleted file mode 100644 index 1415e71..0000000 --- a/src/Pages/Login.js +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import LoginPage from '../Components/LoginPage/LoginPage' -import Container from 'react-bootstrap/Container' -const Login = () => { - return ( - - - - ) -} - -export default Login \ No newline at end of file diff --git a/src/Pages/LoginPage.js b/src/Pages/LoginPage.js new file mode 100644 index 0000000..fc2762c --- /dev/null +++ b/src/Pages/LoginPage.js @@ -0,0 +1,10 @@ +import React from 'react' +import Login from '../Components/Login/Login' + +const LoginPage = () => { + return ( + + ) +} + +export default LoginPage \ No newline at end of file diff --git a/src/Pages/NewParagraph.js b/src/Pages/NewParagraph.js deleted file mode 100644 index 1b74ad4..0000000 --- a/src/Pages/NewParagraph.js +++ /dev/null @@ -1,13 +0,0 @@ -import React from "react"; -import NewParagraphForm from "../Components/NewParagraphForm/NewParagraphForm"; -import Container from "react-bootstrap/esm/Container"; - -const NewParagraph = () => { - return ( - - - - ); -}; - -export default NewParagraph; diff --git a/src/Pages/Standards.js b/src/Pages/Standards.js index bbbe007..23a313a 100644 --- a/src/Pages/Standards.js +++ b/src/Pages/Standards.js @@ -1,13 +1,10 @@ -import React from "react"; -import StandardsList from "../Components/StandardsList/StandardsList"; -import Container from "react-bootstrap/esm/Container"; +import React from 'react' +import StandardsList from '../Components/StandardsList/StandardsList' const Standards = () => { return ( - - - - ); -}; + + ) +} -export default Standards; +export default Standards \ No newline at end of file diff --git a/src/Static/data/Standards/2/IDDRS-2.10-The-UN-Approach-To-DDR.docx b/src/Static/data/Standards/2/IDDRS-2.10-The-UN-Approach-To-DDR.docx new file mode 100644 index 0000000..4af5a7b Binary files /dev/null and b/src/Static/data/Standards/2/IDDRS-2.10-The-UN-Approach-To-DDR.docx differ diff --git a/src/Static/data/Standards/2/IDDRS-2.10-The-UN-Approach-To-DDR.pdf b/src/Static/data/Standards/2/IDDRS-2.10-The-UN-Approach-To-DDR.pdf new file mode 100644 index 0000000..fbb5e8d --- /dev/null +++ b/src/Static/data/Standards/2/IDDRS-2.10-The-UN-Approach-To-DDR.pdf @@ -0,0 +1,17575 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210108140731+01'00') +/Creator (Adobe InDesign 15.0 \(Windows\)) +/ModDate (D:20210108140942+01'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Pages 4 0 R +/StructTreeRoot 5 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-01-08T14:07:31+01:00 + 2021-01-08T14:07:34+01:00 + Adobe InDesign 15.0 (Windows) + 2021-01-08T14:09:42+01:00 + uuid:09f4cd2d-c70c-45cf-9294-5d73a481fa14 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:4a6bdd4b-75b2-4343-91d1-32e4dabbed19 + proof:pdf + + xmp.iid:d1b9f2fb-66e1-ae48-bf36-88881ac4120f + xmp.did:68749c60-8272-9c4a-a369-f20729573ba0 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 15.0 (Windows) + / + 2021-01-08T14:07:31+01:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Count 29 +/Kids [6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R +22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R] +/Type /Pages +>> +endobj +5 0 obj +<< +/ClassMap 35 0 R +/K 36 0 R +/ParentTree 37 0 R +/ParentTreeNextKey 27 +/RoleMap 38 0 R +/Type /StructTreeRoot +>> +endobj +6 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 39 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ColorSpace << +/CS0 40 0 R +>> +/ExtGState << +/GS0 41 0 R +/GS1 42 0 R +>> +/Font << +/TT0 43 0 R +/TT1 44 0 R +/C2_0 45 0 R +/T1_0 46 0 R +/T1_1 47 0 R +/T1_2 48 0 R +/T1_3 49 0 R +/T1_4 50 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 51 0 R +/Fm1 52 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +7 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R 60 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/C2_0 64 0 R +/T1_0 65 0 R +/T1_1 66 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 69 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/C2_0 64 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 71 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 2 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 72 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/C2_0 64 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 73 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/TT1 74 0 R +/T1_0 65 0 R +/T1_1 66 0 R +/T1_2 75 0 R +/T1_3 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 77 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 74 0 R +/TT1 63 0 R +/T1_0 65 0 R +/T1_1 75 0 R +/T1_2 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 78 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 74 0 R +/TT1 63 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 79 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/TT1 74 0 R +/C2_0 64 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 80 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 81 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/C2_0 64 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 82 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 83 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +/T1_1 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 84 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 86 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/C2_0 64 0 R +/T1_0 65 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 793.701 615.118] +/BleedBox [0.0 0.0 793.701 615.118] +/Contents 88 0 R +/CropBox [0.0 0.0 793.701 615.118] +/MediaBox [0.0 0.0 793.701 615.118] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1899 +>> +/NumberofPages 1 +/PageWidthList << +/0 793.701 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 89 0 R +/GS2 90 0 R +/GS3 62 0 R +>> +/Font << +/C2_0 64 0 R +/T1_0 65 0 R +/T1_1 85 0 R +/T1_2 76 0 R +/T1_3 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 91 0 R +/Fm1 92 0 R +>> +>> +/Rotate 0 +/StructParents 24 +/TrimBox [0.0 0.0 793.701 615.118] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 793.701 615.118] +/BleedBox [0.0 0.0 793.701 615.118] +/Contents 93 0 R +/CropBox [0.0 0.0 793.701 615.118] +/MediaBox [0.0 0.0 793.701 615.118] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1870 +>> +/NumberofPages 1 +/PageWidthList << +/0 793.701 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 89 0 R +/GS2 90 0 R +/GS3 62 0 R +>> +/Font << +/C2_0 64 0 R +/T1_0 65 0 R +/T1_1 85 0 R +/T1_2 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +/Fm1 95 0 R +>> +>> +/Rotate 0 +/StructParents 25 +/TrimBox [0.0 0.0 793.701 615.118] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 793.701 615.118] +/BleedBox [0.0 0.0 793.701 615.118] +/Contents 96 0 R +/CropBox [0.0 0.0 793.701 615.118] +/MediaBox [0.0 0.0 793.701 615.118] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1813 +>> +/NumberofPages 1 +/PageWidthList << +/0 793.701 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 89 0 R +/GS2 90 0 R +/GS3 62 0 R +>> +/Font << +/C2_0 64 0 R +/T1_0 65 0 R +/T1_1 85 0 R +/T1_2 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 91 0 R +/Fm1 92 0 R +>> +>> +/Rotate 0 +/StructParents 26 +/TrimBox [0.0 0.0 793.701 615.118] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 97 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1814 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/C2_0 64 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 98 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3119 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +/T1_1 85 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 16 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 99 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3120 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +/T1_1 67 0 R +/T1_2 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 17 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 100 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3206 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 18 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 101 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3207 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/C2_0 64 0 R +/T1_0 65 0 R +/T1_1 85 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 102 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3284 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/TT1 74 0 R +/C2_0 64 0 R +/T1_0 65 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 20 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 103 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3285 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 74 0 R +/TT1 63 0 R +/C2_0 64 0 R +/T1_0 65 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 21 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +32 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 104 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3295 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +/T1_1 85 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 22 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +33 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 105 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3296 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/T1_0 65 0 R +/T1_1 67 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 23 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +34 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 106 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1845 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 107 0 R +>> +/XObject << +/Fm0 108 0 R +/Fm1 109 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +35 0 obj +<< +/A4 << +/O /Layout +/LineHeight 0.0 +>> +/A5 << +/O /Layout +/LineHeight 12.5 +>> +/A7 << +/O /Layout +/LineHeight 10.75 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa4 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa5 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa6 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 34.0 +>> +/Pa7 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 34.0 +>> +/Pa8 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -11.0 +/StartIndent 34.0 +>> +/Pa9 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa11 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa13 << +/O /Layout +/EndIndent 22.0 +/LineHeight 11.25 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa14 << +/O /Layout +/EndIndent 22.0 +/LineHeight 10.75 +/StartIndent 22.0 +>> +/Pa15 << +/O /Layout +/LineHeight 16.0 +>> +/Pa16 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa17 << +/O /Layout +/LineHeight 11.0 +>> +/Pa18 << +/O /Layout +/LineHeight 10.75 +>> +/Pa19 << +/O /Layout +/LineHeight 11.0 +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa20 << +/O /Layout +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 34.0 +>> +/Pa21 << +/O /Layout +/LineHeight 12.0 +>> +/Pa22 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa23 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +>> +/Pa24 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +>> +endobj +36 0 obj +<< +/K 110 0 R +/Lang (de-DE) +/P 5 0 R +/S /Document +>> +endobj +37 0 obj +<< +/Nums [0 111 0 R 1 112 0 R 2 113 0 R 3 114 0 R 4 115 0 R 5 116 0 R 6 117 0 R 7 118 0 R +8 119 0 R 9 120 0 R 10 121 0 R 11 122 0 R 12 123 0 R 13 124 0 R 14 125 0 R 15 126 0 R +16 127 0 R 17 128 0 R 18 129 0 R 19 130 0 R 20 131 0 R 21 132 0 R 22 133 0 R 23 134 0 R +24 135 0 R 25 136 0 R 26 137 0 R] +>> +endobj +38 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Box_Header_2 /P +/Kapitel-Head /P +/Absatzformat_2 /P +/Kastenlauftext /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +/Kastenhead_Versalien /P +/NormalParagraphStyle /P +/Tab._Lauftext_light_ /P +/Tab._Versal_bold_wei /P +>> +endobj +39 0 obj +<< +/Filter /FlateDecode +/Length 3668 +>> +stream +H‰ì—moÛFÇßëSìK-p¤÷ùáøÐØIC´±Ò¾ŠƒkËŽ{ŽäHNÒ|û›™%¥%-ÙË(qz€ \Säî,÷ÿ›ùχÑÞ³#ÁΗ#Á&/öž¾ìp>úeô¡_¦û{GWÇ3öèÑÞ‹ãÙ9OgÕ³Ç|ïåÁóC&ÙþþãÃ6z<íÀË'K¸Ç–'³Õ\{ù7'g£JÔBÀè„5ƒÏÌÕÞ2ÿ|m™r¶V.ÀÀÖ6àïGoÇ/x%C­`a^ÙZ³ñ'Àpç~bc¦øï“žLFO^B(·„«²pÅ1ØÚ©,ˆàk-ŒêÁ`ÍÚ°ñ–ô5¬:ƒ«Ÿà€¢S +Þ_Q¼ðÄ5Ý'–008øû™W÷€ÓDœï’æól|‘ͧá‡/츽3£g`¿§ìˆW¾Ûâ`Á+Z V8óõ:óžÃ@à_ؼ]ëŒáû××.2eÏážÄe)¸|ðš&ÙJ?µÎ•Ió6BÖÚÉüKã“?K0íF8Ÿ“ð9d`>®a®Åtô›­typ„º<:x5°ðgxû%Ì~ ZiÂÿ,Pdâ2µãRM\„f¿,2ÛFöKÒþ“ì¿H„l‰P›>‡,œp_÷=\Šz㪎Jõ¸›ÀáÛ:&‰(LÙ”Í+ö¯b+w’ôj’”7§l§Ä²"Hv¨@‡Òš³CzÌ'¹Ñàu©Ê|t­m³_اY§œÐdœ€°ظmëX°µÐÑ0} ìžv­ ,½–À¡®%QMÈ¢‘ëPš³^'šføéäúãñådú×õ£§Ož>BÄýý}FS(üL©‚ˆÈèÐ uœ„!¤#Î|J§FIèxxbðåu:08…çÔœ]\R*s—ÒH{P)+à9A(!“Gà% 8£ØÉ“¬(ßœ >3H[„Jv4£”ÍÑ`î´m +†ƒ™]ÓH§lG™ oiÚð²4>):Uá&­™•/Ó–/C!ãǦ7pІm#¤V)b +ûˆ‰Ñ~ä˜zÆïá€]"^x,0øR¯ìŠ^‘¾«fÔIj¨ÁÇNPãzð(¶­ºUb¥Ûq½’eÉ^nVä:XY +Iw«&È:„º[]c2–…©TæÅ O]¯ÐÝràÂö@*.(oÿTO:;€S“6±;®×¡BöºEú%OþgÎ)õžr(ìõ„À¢…HÆc +‡§ôŠ4JÉÍ/ÇXïÑIÀ»8xÌüã?8l¸ÿŸ$Û (K[üãºMü©sEq'™½A÷°Iʵ¿½£J®8©éŠë$®˜ú[bðñ’©¹¥Á»bIéA¶Z½Îçùî]™þ¹Æ$9ãw•\g‹ës| î‚Œ Š¿±*>j/Se±½ü:ÙoIÜ·)mmk IV)/6¶cÉÉæàÅÞLÛ7“l›WÉ™lTÕÔ³/Sn–²?eöUXY1*çÜ¥KOÇ !@U g“ŸÑ=êÝ÷¤‰-éÝíÚ²æÊ;V]šbs—µ7™Àülr6Â×r—iaɤ0°,”vcBL uß‚ÚµÁ³¬¹¥S”tŠ} +È[¯äâ¦yȵX‹œD"Oz„{R$ÙT¦éz‹‹F°ègt’"8˜ÔhœU›mo ƒ@7ÀÈaͪŠMªØsk +ŒùÃuûuMÁJŠÊot Ò\ŠcVZÔJÑÕ¢‡® ]»hê(‘È<žÛJ§@’H%àk0Öÿv¼à#ø²>¼$wõ}ÙºtK¦É ŒÅš‘È6ÛÈvÛÈ– ÙêÙ¶O¶mÈÖŠV›ÁVñëÁÜòD»”©ðn3:ˆYÝcó/2ëœÚm'˜¡5¥Ðšní•©öyM>̈Hñº;Ìf§É ­Ñ̼1û ) ©³!”вÖå}Us³ºY™Ö1zjy ÎtÍ¥JÔ‹÷ÿUŒ¢ÔùhÌL¢÷½~\ã£]ߺÖÞžJ +Œ`¾Ã\¶Tþ«œ pÎ^ºTL—®ãQZ±jËÕI\tâ3vÝÿ…]a±,P((2+I<§¼Š)±+Z,ópÝâ Pg²dg\Êô‹$.Ø1Ëëjzµ:¼­ðQZûœ¢”x[ÇØÀà÷´¬ÆAštŠý”$BÓTé\â.×yphç—Ø”&,,òw’ŸÓ¶8Îo^™6dr£#HÀu%Ð:°ATÄ>­Å2[ÒugÅ]Óu) F ðXÚéÚ ¥ûX$µ;*Sùÿ…¨¹q_]×&6 PŠ(dGYw2£ã‘/zoxè¯v3Zƒ– Œ×—» Ÿæv7“„Ï÷Ñu2¨î³FƒsîñqªvĘ!vDâ†mTÝ —Ø‘ïêJŒí ¬ñËœôn®¤³ÑLUJ”ªªï˜îÔüå”U´bàŒåΘZGÌQXËo¸ÛJÙ&Ô×I›!k”$;ƒ_¢Â,f7ʲKvŽ}+Œ>Ò¶yCa>—”æ§ì ü„1¼ºiÄÑ>»!zõƒì³ƒd!+t>êÑhèëÀ·Îygæ›[kTÔAÚFJ–Ê5n4Ñ°‹)`âÏ ¢ª½µ1y†ÕžPƒB¨dJ^Á»cöëœWž´T9*•±À’0 ¸;Ê€ê*‹¯©TÃ(àD_JåbÅ–Òì=Õև뷽nð*Ò«„¡:ú˼ʰòT +´•= elmÚbk:ñíhkŠ‰¶j€ëWð)¡%r-Á­Cæú憊És¾J®ÃQmX#.[Ç œc%¨È©»¬-lšÌþ1søبT3JÁÖ›ÁV:<€ý·¼n7úÚ‚ÍU7˜ÛAÌšáÌæ±Ý³v³VÃF¼î3›ÕìÙ;ô~`Ë|‚‘ˆ[ðˆ Â½˜8¤G— Ø+NžoÎÉ$ÎZœ—\RÃ{~øÄuâž“m´´–ÁOZK•^—TÆO0;$'IÉ‹?ýЙVgÓ'·%)ćœPʤ +±Žú\Vw¶xƒ ìZx!uÃ`ãà70Ø eGu)ƒaƒZ×,~AMÕÍ°ƒ†¹ ¤ˆŠ?6<>z‰h‘ò-âjêÒ–ˆ£Ì ç •Ã‰W•ô’ÅìÄ-ì@ÇõÏßẠVk«…Íõ7°€!׉ÁäfqݸNö¢tMß*Ì6z%”J|‹¯tM¥:ey@!ÃÉšÏæ€Ìq°xK)[^aÑ5ÄëªÖÁG*¡,&Ü1J?’éþÇ~¹ôF CQø¯dYKÌûúÉ®$6,ÐH¬©€ªREQ)Ðþ{νv:NHJ̈BŬìÉÃÉý|Î1ódj”µ«%‘PyuµzÜ&Fijq]4Ú%Hë¥J©]K©mW€US2¥"~¾{©6‰{@%Ÿ +·ƒ\^(âæŒsª®#Àú 2+ñµ6¢šÛã°«• •—Í‚üN…ÙGF˜Mw·ÏºüŒÏƒ–'x•.›næ;oë~Öë½üOžµG‡›?:ääþ¯ŽT©G2i\m£Ú¦os´G3´€hël¯§`1Ÿ¡{ÍþT8™ó©.;b*<ùªæ‹!¾ä‘ÀÛÝÏ@]òžG؈\Cjû<ÕÒWÊOö]ì·Pìó1°1 ÞûÕXÅcÎüc‚ #j¾.­_æÏVÓÄ"(šEG«9E·ÅÐOŽ ž_¬¬ÑK@:(]è‡$ºmAÍGÔ8˜èÞ¨M(‰ªŸº“sXÖ4h[&r£} ›€6CI¦E^:w<÷8¢jÃ3|å÷5Ë.äÆóWE›¯ñ2I¬•;.sGMའg8\äý-bIãK ÐëÚk°¸-à³@„s~‰ÜzU‡’ë×’KóLß»%pG”çJuYI'Ú}l¯ì>© ×Í%Ð JìUAÏ‘ÜïMˆÙm³Gžd;C,‹Yìm]k(mg×µ³[¯ïÑØõ-˜U” M ° µr‘÷Ý[å _)Étð¦ÝgNŽ^.Ü»×!š­±ÞlRC8šÔ'ÕΚ,GR;*³5fø÷!G›ŠQ³Äèhi2Ö2Zøç»þªn÷QNÚãÊ~V–ËèpeŒ[J2°§ Ê2¡Œ›P€­Ð&F÷¶;UZê î ¢g +;–ÖfÅMØxñY+ù6㌷Sö¼†;¸žrj ü:ÎÍ—µPÇ~ôyÈÄBµô¦[6½Û:2¾ÞóêêyðKVÕzÒT_QOD€R.0‚ezè\ªjg¼I5Žbb½É}Má“¡6s¥™T—×jÀY +endstream +endobj +40 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +41 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +42 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +43 0 obj +<< +/BaseFont /WVEKHQ+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 138 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 139 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 333 250 0 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 0 0 709 774 0 556 763 0 337 0 0 0 0 831 0 +604 0 668 0 0 0 722 1000 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 0 0 291 883 582 546 +601 0 395 424 326 603 565 834 516 556] +>> +endobj +44 0 obj +<< +/BaseFont /FTSMDY+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 140 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 141 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 320 218 0 +452 348 462 434 452 434 462 462 452 442 236 0 0 0 0 414 +0 696 0 0 726 0 0 0 0 348 0 0 0 884 744 0 +0 0 660 528 602 688 0 904 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 0 312 800 556 490 +528 0 378 396 340 546 508 0 462 518] +>> +endobj +45 0 obj +<< +/BaseFont /BSTTZG+Wingdings-Regular +/DescendantFonts 142 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 143 0 R +/Type /Font +>> +endobj +46 0 obj +<< +/BaseFont /JWWUHQ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 144 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 145 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +47 0 obj +<< +/BaseFont /KAGAVO+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 146 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 147 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +48 0 obj +<< +/BaseFont /ZPUHXK+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 148 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 149 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 612 0 0 666 0 0 0 0 0 0 0 0 0 658 0 +0 0 538 0 497 647 0 0 0 0 0 0 0 0 0 0 +0 482 0 448 0 501 0 0 555 0 0 0 0 0 0 549 +569 0 327 0 331] +>> +endobj +49 0 obj +<< +/BaseFont /WIGPHQ+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 150 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 151 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 683 0 0 0 0 0 0 0 0 0 676 0 +0 0 569 0 525 666 0 0 0 0 0 0 0 0 0 0 +0 508 0 449 0 516 0 0 572 0 0 0 0 0 0 564 +585 0 356 0 351] +>> +endobj +50 0 obj +<< +/BaseFont /EHFGPA+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 152 0 R +/LastChar 50 +/Subtype /Type1 +/ToUnicode 153 0 R +/Type /Font +/Widths [233 0 426 426 426] +>> +endobj +51 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12084 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 40 0 R +>> +/ExtGState << +/GS0 41 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—Ir%¹D÷Ê]J»>÷=J¿fm÷Œsí(÷*çúß??þÅŠš[þ{ÅUø‹k´y÷ÆQuì»–6¯¿>ôé×GÄÝâú¬qoˆ~Êp0l׺cíës±y®ëÇÇ'G¯~}F÷`æ³ö{õÃDë÷Ùü3Ú];[¢ÏûŒª={Ü­ ¦f½çjZ\îúcÖÐêqî>óF׶8‡Ë¸#°°à+&rkcÕìwñí¥=ÛÖ½êÎ]ó®í:÷:UóçêÕÖ=¶Æ®Qî6‡W·JXÚ5Ö½C&rÃëšq¯Ígsó&Ê7Fh K©š(cùÞÝ}üá@Å“5gºzé3~y"Ö¹wíyiØØD€&‡j8q¦såŠg¿'ê]su¡Ñ<ãzÕÛ]–3rúÝcjbø´v¯9µ|ãao[Ãö˜‰†UÜ6F÷w9ÒKfM»A;„£=Ëõ‰UdL½®±óVOnW‰«nàÆæXˆT]ΨVãKíWU%`¼¬î,§€®ÇçZÈŠ}a¢¤À%-'ÇûŠ}Ÿz<”‡ÒV\(¢!Üaq› ;µ&àrÔ’%=ì7ÿ©È°€ÊoL;¸Àϖ铬…`(  +º NÏœïít€°²2+›ù¾!ßà'—ÀjÏT° §ÕÊŽ¦<ËP"x\³Ü½w%n„oŒ)\t6UîœìÌ%…@íâ:-7PÑÜÿÌüÔ nì¡ LqPdº´Šã¦8€¨Ì¸3Á Î`†h3qæöÀ¶ã8ïŠST[xkf +<]òƒ3}¢ÇÕ5gšÁLæÂן¿O¼RÑlD7%‡¡Ãéa¸ø‰ã’l&VGûª1¨f¿ŠÆ5Øï(ßjÙšÃá2ìiãQ°íÄRÉ’í.z€€áëÏͯî&Ç­>5Vó{ïÓܼúÐ÷E©}BxJû—1_+À†©¢]ÄL}„ðƒJáÏ¡H6:¤ ~ä1Ù¬)$Œá¬0¡Všû9o†bóMoTÎWtfq]• +±í,ç;ý܇éE–øR‡Â@Wèa”‰AÞu8 R ¦N {ѶFQ‰ÜéWuòN£lÍžé³Î‚Na†•úa8ŸÍê³Ï×<{Ãr\]݃pû7éâw.¾ƒ™‘ßIzd èð5»†IS qê°¶ÔDÁ3wD¸àE“Ð^vH±¦*;dY¼(â]ÔñÌàÀúP ¨ƒ$&ú±JaÁËá¯rž”È&¾×Y‡Zl‹ÁP+ûI™6Õ»VÉœêÎ"ÊÐ'݇RW>ð}+x&Q2ép[~j ÕRéRb<ÆG 4:Õ½ñôPý–ZuµŸäuÍÐÔy^Õ!¯“Ë›<:/¾’ŒhÓ',) Ì-ÞªI6ŒûÔwÕf}è~Z¸0ƒÍ:aÊv(ÚŸîñÝßÇÉ;ªl!Åì8ݪÈ4w7°û4ß÷ Üѵ’qíï®òú¬ ÔjžYh\<Æ8a–qJ$žÔS–Ÿ0c=Ù©°*Ñ¡;hGro[”iGÏ\ÑVëi_w41çö µ(ä>U3¡Pi¥ÚôÓ)mÿ\ËæG[OúÎÌ/egÇ8J…Høw…^ûðo¨RXW_ÑÎÌ‹Ùt«çŽÅ­??Þ)ã¬Ö2¼Í1ØVѲ÷í`›®¢'ué+8Mmd=óË¡‘@ÉðN9Bß;Ѥ#ra\Ÿ ¥ZøÚq;¹ våÿÂ'£ê|Y#¥Q,T$ÞVCD.A¼’ðAá@ôíœKÑœœAc[Ê×ÈØ7gQøÎï%U²ó8vee[\î*²§š ª‰] q‘dþZ×S¢yë«‹á¦Ö­‰á#p¾¤½«!Uaj ‚  žûÛÒGáqŸ¹C"k0cz” +uÛЦÓÖm…\*j­$»ÝMH‘ì¤%05TWòS5,&DR©ˆ’õq`ÒýÃ…Vl§ J•J–+þ¨œJ¤ÂÆ4ž!-rˆ¢O×%)žšWV+ÜD2uÐEí[z\2M2§¹[w! ZÏ eù-GËFVˆI³à;;¾ü—\|½^jËFñÒïýd‡|DŠì¼Aîo Tó!6¯ëý.üKÜD3ÉmàWBê×›Pü¾ýàÜò¢°ÜÔj}ÕÒ›z,ÜÛÀZ±ª=Q(ëõT¢6c$ãŸßH@u1UõUJÅ~1„Q¼I•&™/¿ ëè°pØFª+†æ$ŸýdŒ†+—+Ž7ðß×»ÉXÞ¶?µXv'˜%›ýbºÇ{üé\Ì-Ù¸~õiªsec9ÐÓÏø¶/ ϶S®Uú-êW»M«(ºD!øjböŠ!“ê8×_r$;Ë)3f$þÿêÅ4¸M=ãÐ +Ô7†¥à™¤ºO2 ºÆO—”‹ãò„›®Þ‹ê#šX+{çÉ7Fœ™@z0ˆÉhß&6‹Ÿ +mâU×”"±áe…•UM=Ê9VËÕ[gõ qQ &¼+®³¨vÛ&s>:qJy~+¿™ô/‘›1šùÞˆá&cá¥^¯æKj KÅhÇïYoCø$¼­PqâÎÏ2ýPuK]çu? ])ªqD„‡¯;aḨqº„P+WÄT5Æ6H9¾Rš¡ÒÙ|<ÕªÓˆŽÌgÊl&Zþã{é[VÛþI‹H2 ¿#¸îb·}©·‡¬®! >jz‘@2/vQ4>õàÌ —ÇîÃ-9Z‰‘¿„N­Œû›»°”Ë/OTf&ê§'ܦ|¾Æ˜¶}ÿ +OKŽÞ—ܱˆ‚ÂBtüh=Ùß¹a®|Jò038@M˜ŽÍjã+ØO¦¾z?îõ–Bï·âÀ¯ŽÌt¥Sã2­³;1rªJº{Å.‘„Ãz äk”öÌ0RjÉf¿¡z5þ9<îGbÁþhž_9!…$•—:uŠ¤¾ÚŽ®ÜP3Zã2j'™4ÌKY¯o +û‘§<¯ U¬Ïmé5]·´úºª´|Žµ,Ù«þŸì*Ç’$E¢zŸ"/0ﱟ§”²î¯Î_ ¥² [þò€›0¢˜èÃä3q‹·GÖŽÑVµµmsìz¢›LA_Ôš"i¦ ÿJú~EÄJ­òè@·'&:KÔ]–ÒÕ"M¯;»çq¨¶ˆTF®™þ‘ú‰- ‰×å8äqˆ´Zòözá÷\b2ÚFàáåL»X aÐôä<*Z†a=„ ©ŠÁ)Ó®–‘BƒÛð;•,% =)£e>n°3a7Š¾Ay¿„´­ûÅ6haµ@Z” CÕM”–ÄtˆSY9—hrÓ;Z‰t AjêýsÕÇ£îG-²L»/…2škJoˆNÈAKÞ’œÇñðšj¿óµÁFµ ÙÞ°¯’¹³å<U®ØV0CµŽ"Ó Cç¹Rã#Ô¾`j(fŽqQJ(Ÿ™AøªHSk½ßË~ßaS QÕwlÊå­% +š>›Hu¨½UL\HEz\\ÃÏF&ºQÉNã˜$eÕx i,÷ä§l${rT l° †_•2w,éõ¯{TÆ ‡.ê² +ÿË%¥Re‘RëẑP¶L`ˆÑh¹d0ÚÊÂpk«lr´ eDø`X¦Ð€Tµ_Ú—_ç|Ù pÚˆÃàUOœp¹b´‡ÜœRì¨*÷(lQóýROd×&$…qa½ˆ®û±A¤$–rÁDãUPm:–[TÇ¢.^µL8B!}×dbŵ%,D^XÒxz͢Х·²5¹¸nÉ/¡}Žú«Zç‡e'cÉâ-.ƶ¼ÉYËõhHÂó‡Îò¶x}Q׆^úǦg‰²)ž~振YÈWõm*ºö!Mè´bÎ\\¸*ž(2Ø°¨I×Ãb¿š‘¼À E;8¦½ ¨a1+¦ÄiE¤oñc«Ë2jÂEQʵ#wìÄ" J„ÞÅêbM)ˆdåÔIVaµG@ ²@Ê%r~ר8Šðavg´Ä^ÍPU!ó]\ IHr®äý’ü®æ =¡äÇÊe¯¬PE ÇÕð¦à‚7ÊSêy3 9:†3|îÈÍï aS~(Ä7×”aBª‰ç®æ‰ÚÂúc7$R¸€€±º&å†lHHm<ú£ šTRH¥i¨û}9B¨/·"7ûÏx¡üÌT& aÜ–ÄX×àÌmµ×Å(e[©àñskÓ4nᡉó…÷ÕŠÒz®˜hÑ‚Mˆûh<§Ê€EV ­QôõA‚ZJJãG·¥}z +–jyJµvñ§óá‰:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½[¤ŸO[y¹î=;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re§zó1Åñ–÷¸çjA-¾Z-‰„Mð3¿™û×–L¼¤uý¹?#íýĭתr¸œ˜¥gH™_5fZUǨ™õ½¤³æqhó]ÆÀ¡”IÀª­€¤S]ðpó&‰ïëjuƸ ¸Ù0ƒþj½×Ð:lG(˜iŠëõõ|‡ñßá‰MäCèœqwX=õ›Slyž[óœAŠ¦ô¯‰á“z J¿žv¯[¹˜·ëù¤2lkw$@ËÀÈçÞ¸P‚óÕM¤tqþ)Ћò¯ o{“z!«Ó´SA‡Û…3L˜ :ÉcÈ®ô®˜8[,h\d)ÁañEU%ž×¤î iþ(&=MN)N £’X +ÉyðXÅx\ |îDYÖmBÌj¢º‰íR p‰È7{ªŠÂ8s Tãq¦µÆÓ yÈšC3ƒYƒ¼ AmÞ¤°‹vRRa#!jFhS&ó +ìYÜÙ{ mù +L«ÝÛ2©¹Ëqüxô¦ÜÊ}±S»Ú•þìøÄWÒ ÿh¨ßÙ‘„Õ°xñ¢æ!q&hÆyëiøê0‡Çñ¦#dF ãú +ÛKs ¿àÂB4øŒ„nTù#ß!‡DÿY,3;3÷µ‰ 7Î7rßNÝÙùñvl,1žœF6 Ñ0³Ëé«Lá´VæêPî`<ØÉÈ6ýj½ª@pA/K²;lj°sý”KÚÔÔ*åV_ÊŠ ¶×ú $«·Î% #Ĉ‡¾d?¦â g%„ ÙÑÿÒÄCG L}'(J±FPÔ—‰«"•æ`ÄsfÈ€§} ÕУ?u‚‰#CKx˜)²ñßRÜÝ£âø+£„ò õ7@òkŽ¤ ¡`*KBŠ·³â8åšâ6‘Ðâ„Éòƒ‹„o Í5ù^PÿA÷-‰ÏÎ*rÿÚòQA¼KïÖ’ÃnXàK–IEˆ$Í™ʛ*„ðJ÷$­ÄSXÅå~á6}DAíÁ媻]ÊÀ gº;Bq þq·MA4pÆV3])BE$1 Ã#׿6N•0ÒDÙö¼}»éNôiÀ#á—lpU”Î…íâ¡F¢§D¤å_v~©KßAMÇåªFVÞªï-8¬Í7³Õœ£[Z0om›3‰ˆU+À=óCwJŸÆ˜(c h[H°&b êØŒwÑö+ó´¦ ‰’98±Úø²¼ _D+Òò*?Ä8?ÿ‡yØ„%B">v;UïÔDg­b‹j—gÅõ0Çc… ¶'*[‹Ï=ð_çs9‹¡=bô¯°¢ª¿ŸK ^së›ø¨îuéÏ­A_ÅSkVVj½^2Ý42Gì6ú#c°AbDůîw,=ÑŽIÌ)ÜDÇiWÛÊ5ªõšÅµŒ¥½½XçÉ…a¹†ã_a‰7â@:ªnF¢1¸ûWKÆø˜#)c“̓,Ë„°)¨ð7–Ééœk{ƒJ`¤öc½ƒv-Z\ÑlwyRúuAQ+B‰áE ¨jDd†!sǤñâW¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bpöÆ¥ ªIö¯f¦Øñ截¦|¡1¶²ÇV¾J †’ zûÕL'ôÌpéc<‰m@iy]|¢±È&AÏÄ¡¤bÎ, +‡ìXNV_k‚–I‰éoN»ÛE]Û-ÃøŒ…ÀÉÕeaoäÂHpK“`¬%eY¨·cQß<¦N iêíwÝv:C&L:4¬êh‚Y•[ý‚Âqk»´ ø8|ƽ­,öñ?®«$Ën†]¥/<Í¢ÎÓÛäþÛÆ@ÙîZU™ß’%@ÊßP]ðÌ„à‡žíD¾„kžòûÞ9í³î ¤ ‘íf{&bš‡I:€òw~ ØZ%xÅJVV$€Æ©æÑéB$³"­(éňäMšbÓ±r(ùŽõv1"5oíg“¿•y-ŸÜdP •ÃQ×%—¢!þ.äÐ.XÞI#9⸹îžÑ°f5-ÁæqKÿ,@‹çú¾¬“;žšPYÞ@ïÔö™fÑ-JÝ×›%ÉTç½[9»*ô#\Ô€þå.Z¦»KÉÌ£CiÊÚg96D +h.ÉH„aU*+Íã4H|úuI“è”I­›žŸ£j…Ê)1m¦£g-\dà 0c‘©lüqcýñ{ó„wÁ&¸y é²—ˆ,ÏRdÐSsÿðPÄØÐÈ%Õx¶5gÏoà¶-5/ìWU™'ÎP[Ç…›.¼iªYá5µ|}Þ¹Hæa=%U̧ žåhÅvlie¶Æs¡ÇûÒ;”Ž#&©:ù&Û7ö4 ‚ŒØ=$ž8ãñÞTQtÁZ„œòXG +g†k,áÓDr2ý ¨Aÿôúñ}å³FN4É@‹ðÛö¾±Âðч}›4GЗA}ɧØ:_Ådà0÷l:‚zØ,ÖÔUr8©¨CÍ +Þ[TûÀBËé&ä£tû@Ò/ç.äµ4m©á®,]Xt¹L¤`Êž§ÁÈ@ˆlš½ütc-€Ùþw:`Ð<Érec‰yGñuÜ<žœÀ嶷æñ+! +C ‹m«*‘ _L8ßQa1Ñœê%ëØžì–hXæ"tÌ)YÙQÌKGx/Œl/@¨…¨YôN³âø9·q·ugüÍ5Pñí MÓ ·ÙL{zM*dÅá4T’‡È(ÙK³ÑÛJ8øÓÓbž3@®Ziݹ#KÛj.zÏOMÆŠº¾”ŠS—:¾”J–)ûaT5¾ ?­toîÏÚ_ªÆ?ö¯x]*XUþG!úÆ¡LiŸM&Y*@ThjÃÈA_5*ª,šN’¨Úùì6MÈùnLA8@QÅó›Å7hí]Ú$øÅñ¦zÍœ¾À’£’šköHÐã|å•¢#¿¾ðác¢Ÿ¥‡ŠJã&7€ðŒ¢h(¥æŠP èœy ‰Zsøû¶®WàǦ‡™ç•åšŽýµÍ¹±Øpá½ûÒ2XI‘…LFŸ˜~Ç>ÕŸ¦£ÍÖºRƒ½<õSŒ!ÿùV­¡ÓD¹Ï½lÿŒ­̨È8¹(IhqÚùÎqgMÝÒ  m¶ÀƲªiŸýNØå‡Ä*z8åáÄèé›ôNջݽNËc'´Ÿd6¯)×.ÄÖûá»m×ä©E®[™;I>-GË!õL\¢#ãŒí7Îô ÙÅÕæ|}aˆÈN`N¿ Þá#éŒ%lÞ²$Ç"2•H‡ò'‘P¶â¹€º!X¶?á4§½£Ôî'丨réºaŸÕ(l{ñD$v­*a5@£×öŒÃ¹DwćǤ5øã}æx'!}kÕóÉ.¼ûéNwÓ  +ç-]<ÂPàÙ$nâŽå'å(ãèGúZpÅñ•!})biê65`±ºôboQVÀ^oàÙY¬åÝV ‘nµô£·¤Óû’˜kš¿Y»_‚UÒÐ$Ê«ökM`s¯ó¡D²ýN#‘,É‘gâteŠ¬¬£¸ªîêÍkç1dXAF8‘u1IÔQ7÷Ó´ÉÀïÓ™b]š#§9ÇÓh>û$gÒÑ!ªv\T Æe?é}.Ý'`›rEI˜cn(+Yk£õä +ßbس̰‡@„I—ÂÅkå8lVkû™Y‘µ—ËáôvdÕc“Û(‰•; oèø Ê‘ññÔJÍ6Ë÷ À`ƒQ×u磈ú™p¥J!ƒçÜ‚ EÏ#Dôþ¸›ûì2È<Þñ€¶dÛèËÚLS8;ü_Ñ‘ÈŠ‹Žîì ü‡G‡eúIº‰eÁtêK&C"{Æsh +*KSo-«A¬“¸hÙ™ºí%9-ñ§ +dJÈñ=W¨ï(mû;)!2‰œ¢KÈ +ý½úè0eðËu>ªÎ92èU+’®d~}õh-ÝÎÖÅŠõ_ž´ëaG*Ìâ‹j18K„¦³úe1Ú`x3#ئno”ßÉXÉ“ø]»Œ5ºÝ ™•óƒ%yïúò$ õû<óŠ´ŒDƒ2¶2lY,<>“öž˜öàü%mÃE·‡ÃI?\ ToÌ/,j鶡Ü|§Q9µ°Mø†êmë±y(ÈþtÏHZj¤é<˜ÚÇÕ""Y…;¸Éð™/ù‘²_|‰2ÎÝ€ ºeÀ°02Ä5ŸÛ9(4ÎeóàUî\™$‚RÞØ)rtÑXæå™ÞY/¼QôLòÊÖ}ª7Â=þ8Òtþ¶Ì[23x–ÝA¯‡®¸Eü77¿.8Æ{ÌÓÌŒT8S;"ACd’NO9ÁJºt"K»<øµô•b‡@ÒÜJÏI°•L(gHlº—ŠRò\èö3³yÜë* KÛˆ¶ëUkR.>¾sòhU¶Fp)Ã*Óܹq<\/©Ú!“¿te}=>P>ñ†þ(´Îth”á gmF¯¶Á1w®Ù«¥ýÔ@ÄP!/ ü5ô‡w{ý·Ø„} [Ú8íe‘þ:4dN èG÷ú¾5Q¨?ZÚé7.O·<‡škt"[|Õö’'†9ÛóØIb›uÿkøîrIŽ$7‚螧¨ –ø%€cè m¦UÏB÷ßÈŸ;ªŠÝ¢lÓ•ÌÄ'Â1± ”º1z —!þlýK¸á²½õƒ2¤DÚ0ÔÜfÝýýß©ÂûG¸šbÃÀÁQÔÊšyÀ¤Âgã¸) v .#Þ–>˜£Ì–õïí®'x¶ÝCÀ.ÿcF]¸ù˜#ô\½=#hüªnëÔï·uñÞU×ŸÏ +Éý9ç·wMÝ@i*¹9oãÀ„p¦åÍÕ +®û ±Î÷>¦ «—-æu¦Òú¼K[‘˜å­tß^^ôìÏJPáT÷<+é\?‚fº­~Š¾W¾­ýË¥àÈö‡ÎXÖ¿«¸Ú&1Ðbi ß®Õ«7 6÷^uÃJÍZ®OÖø÷ ’ˆ€)¸–BzqÌ»QààÀUɺõCä;È!¶™ÒzÔ<‘¤zX„ž¡‘K18fà¨ûÐìºI48xŠÞW{ó×G2çÑ´]û ©¾õ +Ö®ãûœç£’ÊH%{È`îBŠ«2ê|WîP!sî8Dtœ‚ïÙÿÓ_ÿþø×Çåqé¿òø™\¢âJ—Ìá×?üåŸE_Ꙭ¬ŽŽEuo—]¹«öUvç$™ýU|(ùûƒ<¥š ^$Ý€ž¨}ˆ²«Vs^×P%«’D!óG™hÖƒü¸ûû U®wyT…ºq­o7ød>F‹Ã.ß•œXˆ¬ÓW+L#FcÐö~N7þhÔåˆ+ +¶›?+L8ûµ£Ûj*F&v‰1Ÿó½TC•R•â´*ñÓ…†tiT«Î†!ö÷…„â ë™gZŸ&“ò(A([œvÅAPÓ°8gÔ¯‚H +¤{æú‰ª"t„L¥˜aî'wÖÙÚåöÕ>±¡̼%ªžÎ>±1§×/SS/×ÒÎW5»%Éà[]2Wdöôä #ç˜Z‹T€j}:ÈTCšÇ]¿>$ö2‡¡Ôîû4ITŸ6`Ð.·êQ'wªQÂ_kI#|7QÔ‘«3WM~DòS¡ôªß°ÇPñ¥4ç°×]!lp‘V¬é9瀰Е¾ôɺž3›úƒ`(Íš›O<„oÚðÍÑ9Å´îÞMKâo¸…oKk)‚¦"±™;C +¾*%…»O÷°Ú;=a=¥1,¨;ߟ劚éuãQγRž©®SøŽBª«ž‰UóÆd$S¥ž*ÿº07÷d:»—ÌP~Ç°$Ÿ«¹ÃÛ“›á…ˆªßgÆÕ¹ù^˳¬ÊŠw?òpªšÌwuJ1È ¯æfMzx Èx6KéÒ „B,·ñתS=ß©L‚0˜P[€âò '¾ï’ùÔ²øyÏÓñc;]°èЭ’i¤ùÈ£ TÓ·éæ{N”6{îÐÿW&Y˜‰ˆOUku·ßÈ9…ŸO™kË\§ûì—.O—ö{ˆVD~9/i†©bíç}Q¶x$k¸fÞQ)*0“…ÌÌœwá¹ßy`9kþ9s^?k#s=©#g‘yìž[rÑjñ£ÚÓM¾å-mWÂ!Nõ@‚‚!±´ªi˳k«cåÿxÍÅn’ÿ*l\ÈÔ›ïtÀÓqE©<‚©uý‘a6`·£bˆƒ°ŽQÞløösážåôÏI~@œ&€kôÀì-ª%÷ˆæÄ f=ù)LÒ÷®Å Ó(…ÔÇTNà|T†ýx’Jd¼TB¿­ ÑßïëO¬‚ÃÖÍí÷ +Éh¿ôGB&[†D3þ‡‡R[º(”v¯ +gd§ûrøŽ¢è,Šë—óV“!óî¢ +·+Î@R‹Š??  ‘žC…©óX×”Ãþ(Š† E.JšÊ{ãœáоΠ«º; Ö©ÕÚ!Ñ’ ‰rIoI 1²f{ßás;3GwÙ†l„Ó¾©§V Aì$Å‹Öƒ-ñZý¶-xî89ÙÌB¨Ž“D“ E{­®ù° ¼Ý"\ºãy®i‰¨`¸Ë‡ïb­'…ä¬e'Þk|t íåºbPJ«Z› µNK˜‹Ð)y´äWõ"ÞMH¹$f£xÔ.‰ ÌòÖ— Âôý™¸„>»l&Âû[󞪤“ Šð +XýqôöзþêÖ½Éã~ÛôQ}âqÒSæròi…$U2“”ud–p08kËFSÚ"Ô2B!©Ý8N@•W—ú¯W»Ì¾°ÔÎTwyWùÅ%)2¢K9AyÐHå¶<<• µÇŠ 3yé& +H³"ÃóÝIô»nšË x² ¬ãdÛ[5LèZ,9õ—óIU‡ +eYÆ‘ÓŸø¯HåàšÑ$õº)áûmXzlj©/'ýduÛ5.çË¢9„xiçÏA[+X¥0o}3úro¡ÂdEwCþº[.=³³²åj¯¿ã>)1I«ǮÓËc¡Ú$:LWW‘µ=NúR“ç8Å ÷úÇÖ€­‘……YUFu9ç¡‘DÙzŠZ‡áWáÏ2Ýi ¨G…4æùDJ#ÍqÆn="6ÝÑØcŽµ€ûj¹ëng’j9õã7º½äv¤³Em"®“èÏÂJ„nHCiè ãÄ››…Qà–8“+ƒëCÔ9ŽjÕ«½TF9H»Ðba¦Ã¤ÀkÑ‘åLm:ð“ŒÔu1ʪŸE•Tµ^+à,í"±‰“1npÆa ËžÙuž“tUyå !iÜÌNp):²0Î<é”Í‹m%^"j륰¹ŽâíG§å· +.5½@¯EÉffd—+3ïm‘æŠ ÷L"TUmè2£oÈÊÏ"ªÞÀ%EÖ#ø}LŸ QçÛÎE=P'Ão§P-ÁUû­œ=FáJéàW5ç¨ý³¡Èî ¡[ìÌ0AÆ‚!Jö.—i °ûqDEQ‹Z„ +å*žÚÀ°æYæt/2Po,@%ìý¥ëÃ¥q +É<–ȃ(9†£Ô5¶¾€@÷Y Ë%žÞE…Ô:Q[eܹ™²×(b«:$D‹ ¸ìÍ:æUât«óDÉË¢½TgB|Ezq!hfˆÐéΈð"MßN(Éb¥Ð6õ¾rŠâ¶!Q5Ýšw aá²% Ntó¶Âª#Sxÿ®Å.Qáûz¸ –‹t«è@õ§ñͬæ¡DQº$àMK-£IÝô¤©'­øs9ªªÓ*°‹u"[ù™-Si»™r‚°ýóÙ1’L£¢o:ݤ?8“­Ë| Uä*íåFBT=)s)ä‘ròŠŸã­ÕõL‚ôÀ…Žuùy5ØP¯’8…%|±èvQ +/[%¿]ÞÖ¿vÈez×̶ý$9¡º&…÷“SKj_q}ùÖê‹˸݂ºîˆµ»„ ¹ù¬Ù«ÁËI£ ›?×ÿ²]®· Ã0^% l=7êþô»#UEA‹"÷(#c#¾Ù¬³õc>ÚÚžmÅS{Wˆÿ&Æå$Œ°(IÉçµ ½íìËk+œ´‹¸½X€,¬Dkž¦b'¨®¶Ñô=ÖýgVÍOEÔ,(²ü(8ú n²a†®Ìc2×FääQP<¤éžñY g çзÓQ„êWªãÂ|¬™ÃNI-O×2‰š 3Ylåõ‚¨ÅÇÌ`¸ùOXooMÿUõÉ<§Ò+Y·CIÌ_‹h¼€¶œšQq ^³äÌôÓÑÔ)Ý(o˜¬ÔÁ™÷ym=£Žù„'Pê}|¥Ç±q-»¼„Ð<é‡Ô=ÚÀQ½¨Gw$…)õ¬Ÿc—ĶETž+iIôE2V?Uín™sÎ7ì.zÖZŸž#JŠö'SЯhš_æ þ*pû þ‹\ê9—CtüŠ^ÒpÛjt±•ëY¡ïZrKâ¼o… Òýk Õ•+hixc 'œà½â­Ò+´ÅÖ–Â:lYû +ÙÓ–Úˆøò¾} 0œ¢Ü& +endstream +endobj +52 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 216 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 40 0 R +>> +/ExtGState << +/GS0 41 0 R +>> +/Font << +/C2_0 154 0 R +/T1_0 155 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒOKÄ0Åïó)ÞQ/É$MÒJÁ‹®šÛ"²T+.¨ÐVýôN +‚Þ¼Ì?fÞû¾˜–—ñ0,h[}}sø|ÿXÐu›ËÚdÒ©g 3 0o¤¯¤}žIgóÀ2Ì#1ò §d‘%}•zBPµ—ŠQ+×4*r¬a½ò>Èí+]Ÿç#m3mwb§ÿ“úÓ§[bQ=Áa'Gìï"’ì™) qˆð®VÁU¡ØÛÈ«}Ë]÷›àï·‚©lÓ¬ÄÆ"Ôª²¼2l1=ÑHß BI© +endstream +endobj +53 0 obj +<< +/Filter /FlateDecode +/Length 1022 +>> +stream +H‰”UÑnã6|×Wì£D4I‘”’Kr¸"—¢òÔ +×qœëÅvj;×^¿¾;KÙ–ÓKê"ˆIQËåÌÎp58Y®?ßÆk:>üHƒËÑ·Åóš†ÃÓ³w”¶™!£]ø×û’–ÓlðþÚÐt• Zû«!Kí}uÅüWé@¾©t}$t‘fYnUû{vÞfç9ëœtÊÿíåàbfèl‘ý” ®ŸFs`¸ͧ”OæÅûS5øøîçí¡ÑPªÒñom‚b 6)Œ65µcJãŸäà +‘ê MÙxŠ€ç]¬_r§Šè´§\[U”¥Ž”õ©ý!áa8'ãõóè±üµ>¾8¿¸0Æ4ÃáÕe¬8{{—å$ÁnÃò FöÍú2—è¡Ž_ çɯ}]»TZå¸úùƒªuÉÇѲ³+:QÖkGù“jÑ KeV*jKùá¼àí­¢T@Þ¸¢'XÚ½(¡\–5-p ¸J÷l÷üƒ’ 0¡Cä÷”‰Í¾e6®M©ÃÖ17Ê55AÐÛ"ö ¡ 0]áõ!evx^u¹J…P½áNZWݺ¢o©qa"ôX¡ðn§ËLy1Ç­sNÕÒ)69gÊÕ¨9ßK+ÁÿFNâåØ9é{Ý`UÉêÂÅ÷¹„=ç?²ÁØDµ´0üðv5}êce9 :Þdè”Pv“±ÃKc%®Ûž¸ñfÇF)¬»' H;‡PBfS›57WPØ>n–*OhÇþ@w…½>µç,ßÔ°›Û³V^ô¿µo$Ž½ÄÒ”ý+¾­¸Õn}ÛÓXÚÄrÂ÷Ë$]ݾ"Ëä¿jÜï %6>ctÉ^1ù-)yD÷»6ÑiÞàäm½0QR´}y¾sê‹{ÃM´Á@ëöî/ó¹N¾}Ò€÷ËDzˆ©,·FàÀEâï8ùÔŒéU¯V5 _TÙ±ŒÝØ}èS5z¥M½pª,hkÓ·µSŸè‰)‚ +endstream +endobj +54 0 obj +<< +/Filter /FlateDecode +/Length 842 +>> +stream +H‰¬VÉnÛ0½ë+æ(Í]bä8R´—D· (œØq/å÷;3” *” 0 SCêÍòfaûµ8i‹“ïÇPŒ.n'+88}›¬æPÎVÕé‘}?>C ‡‡Gc« o&I"^‹š¤·B[Â[ +­éôLTžþWÂh‰æÜ‘|—p†z‚Ôù–# ¡tÎfàbCHˆ<&H›Ž±úÊþ)Œ»±°Š>84“›dâZTt^§×I[Q1Ò–Þu&çhÖ=ƒ%Ò¬ž çh ¶Ü“çh÷-¬I_å }ÐÆ µ}o(Æð—ÜÐìFÛv^TŠA{ Ý"'Z«ZÖ:ô}»Äj¨´¡`ã“ô\T–³‹£2–605­£´ÅúÀʉ\s¾î²ÖÔD æ±7$Á2ð‘H\ò–årqŽëåË`úÜ;éSì3ùûŒHljê#Dú·ˆìƒ'2¼ƒH:"iñ2‘™HäXp:H6JTÍŽ£Ð‘è‚%ÈÈäŽE.í5Ü&qá™ÿ;î»i7ÜupÑð×6¤~ˆ-q‡ÓZÿ7Z]Œ²ù­Í´>NkHë æ:/‘; i$:xfeS÷ÕÑ× >ÿ´­ú~[E´lÓdÞ$Á—KšÃnžP0ïÊOПüš¦cÊ+¼ pW¸ïÆ>_ÂÓ«B «Â#ÍD<òKúb?ëó©Öð]À'» Û¹ØÝ ^¿$ìÈ3<íM6í…‹©,ÐÜH#{w/©x^çן_îDìªÀ¦"Щ’",>/Ól‚ ¹g&Ò +endstream +endobj +55 0 obj +<< +/Filter /FlateDecode +/Length 873 +>> +stream +H‰”VËnÛ0¼û+ö(¤ˆEI@Câ HÑô触'q¶~!NÑæﻳ¤(ɪ,“"÷1;;ëëÙäúöŠ&gw»ù†ÎÏÏ>Ì7KJ›ôÝ¥:»½º™’Ééâârʇ.g“<Ë¡ÙoÒšrþðCçUViçÈVU¦­®i¶ž|I¦Ê¸Ì?‹<Ó”|¢Ò%v^”Ö™£dŽuMÉ£JÖ¯*5yVRòWÍ`C×xn•ÅþF¹¬á •Áê…Oe%{Ú«´ÄÎÂ[ÁO%Û×Á[y%6ÌÙås°Dkx°ðàMìqWãì\+;Õà«MA!©uÊD°!{8y¬µ„=~*Áyl¿uëÙå`›Žã'3Èô4dmê,wÐ'IÕìÇI–‹!7›cÜ´ÜI‘›K”8HS9l]Z¥@«ŒU­G0.pƒC=£4ÄnCeúô‚þËß°5;=ˆbÆ–¥ÚÊvD× éÂ`™bkkÈ^ìûŒîñÐR˜ÆöÈÝ +vtqPu/à V`+La%*u…ãðPHç À+‘/ZAƒ ì¬%–?Zyþ_¥²Çy™Pp‘ ;¨‹íK¬ài¡£ÖÇÖŽ~jd=`õ8L´+&¥‰¼¢ÏÀŒ¡ùHã1è›,vto —C{y0¸Ím`óŸùNˆRwÃkç§îAÑ+¤Üo7žy‘ÈÓð¢kœ;åA{EGv ØB=PØVÙ<útŸ(~ÞÀCCÉȾŸ7îTÁË{uTeÙ»éùéI›ŽÉîÍ ›ž”‘6Û†¹&3ÀJþ¬VíÐÀR—,“jÔ ºý«!²}* Ü)BÛcý`&m"U +endstream +endobj +56 0 obj +<< +/Filter /FlateDecode +/Length 898 +>> +stream +H‰ŒVMoÛ0 ½çWðhµjɲeEmŠaúÖ¶Ò$M»µI—uû÷#)ËVœ¤Ä6M=‘”“G?7£ÁÍí5 ο¼Œpqqþq¼˜C2[¤ï®ðüöúýŒƒËË«!9]™Ê¬…Ñ+h ýèR*Ëk 6+•¶º‚Ñóà[ò„i¦$c4¥Ê!Ù`j2UBòˆºR$K´l_Àu¡*Hî|èù<`©jŠ¾b*wŸÐTJCò݃´!Ý®3ÆùEÀû,Pç¼x‰&gäW^C<¡ÖŒ?#Ge ™¢¡åó`…±ìZ€e iƒ<£Éÿ/½7 ø‚’Ñ fEæ\ÒÑÞš|%ŒÃ›øôfðHÛe9ÓMØéÉ൩NB.÷ìcJOÈÎSÔ5Ã(‘—ã@™&IŒÜ å¬ÉàØÞcÄRÄ–.,¢ƒÁ6´™$í”ÐájNÓƒwu´ü(dæÂÕч“dTíÈH›â°ŒòšÂ±Úy y[Šrˆ¹ÐúXW%ƒTSp|ÂÑ’…â<í¦«ÆS wÍϱ&ŒSq^¡úd’Œƒ0[^á¶ÏáéÝå‡@JnƒRª%H”t·š¡ûæ=µQ¡ß¤I„²h1Ì¡i$ŽÎDÑ¥$-’1Ž!¨á´ðÿ„é ë&¬Ž"&m{¦T_ §÷++‰R? ¹®QºlËn5×Eþ¬gÒëx%Tì€Æi–QšÝÒ8§ý˜Š&‡*Îát1Ö»3ÍåGÄèœr­Ûjîk.ïi.P­c»Ÿagp‡BÕ–â¶MÑ9ŸÐçi}„¢±ô3†8±B;ºx,Ðú’_ŸÁ^Ó”^­Mç·¨yG“E ùÔ4,«š iÔä ש¬±©€ÉèG$e¯Ùÿ¹n<ɼ›îaþ2,ïw?«^k¾ûÒÛX÷}‰É(O$ƒ‘\¦§j,ÏbíêËÖ•ÊÊÚì,9õDÎu„L gæÈ‘œ—4õ[ùŠ² +Fýé¨%µÃ'â¥fþÖЉ_æ`(tÅõ[9ÜÌ[}°É™C³­‰¯Q[ÿUÐ׶‘M;çÞ,û_kƒ‹Ø«¹?áÞ†cº”<òµŽÏ}Þ_'"=ÝÄ/£³> +stream +H‰”VMO1½çWÌq-ÕÎúc×»âAU顤êõ@HiɇXâßwÆãÝuÂ¥B‹=žyoüf†““ñ×Ùz Ùb-?Ÿ‰ñÕùå¬ÓÓ³É9ŒÎ¦£¦¯ 5äøƒ‹«+•—µ[ZU8íaºeRLÿŒ.¦£‹+¼4¾ÞÎÖp2èÙ&že®ò¼Þu_*·µëje£÷›ìYHSBö&êRÈ\ +©K¥![ £U háT±„§Ý%Wôñ$´Vxs&L©lb& 9ºƒ 8È&Âætá;<àÝœî4ÐÝ‚çà7‹’Â-€>*òÍð\s@© …x†Ð™ÜÃV‡-ïß"K»øk.Ðé Þ ð.ÂäˆQÈšnã¦1u-ßfU¶Áºƒùð­p±tÔ ‡š®oàVT„cÃñû JüK¬ò„¬R›qºM`ïíQ0†Î]D'¬'IlM’ùƒ'f¸ñkúå(á¸Ã’ì4c ¥®X3%ß:(å¶ÍL—æŽh« YL«\ +JjC*b‹š_ÐÅ9Q­“ç +˾»N³GS-ª=K{åuYbubÔ®4~ +Ô”„m•*uáEá Èøe¿¾ rò ýwi•±´ìpiõù‹Oñ5ÆåXP¾¬ða.sÚÙ¯•Úêò@í¡QŘf':CÎÜõ; ÒAË[x ®Ê¡l•ÐAЋռõ׋KGaØ¡6y%°–A™*^å®8 úÙtr˜‹hƒËø«ðéX­Üß„t¼êëÁm!µ—5.“b¯h 5^s³Ibø1’fI•Znô(:iGïûšÐß iE÷’-¢ ×zúgèY/ôr:vÒbßcA´÷ðA³6$À ×þ®ÕûZèÀï5GlôwƒRC ÛWbt´ˆ5ZðI˜0ìû­ïíhu´Šü®Šr?¬"S›nšßÐC: +”*€:!²ð‡‡)¥ÛÒ{ì_Û«+Ó +“Hô$šOAÃ2L $ãž5Ø}d<óXçKº[Çò¬vTÃÝ@sÞcñ¢ÌˆÔ=EÓƒÛb›Æ[óžô–;‚êxÜVú§ä&² +,}à‰Oð¼jÿí1D«âÚ0(óÑ(ߣÔÉþ 0™ ) +endstream +endobj +58 0 obj +<< +/Filter /FlateDecode +/Length 839 +>> +stream +H‰´–KoÛ0 €ïù<šÀ¤èa[6PôЦ:¬—-ÀÃé’¥ÝÚ$Hºû÷#%Ù–ã¤ÍeÇEññ‘ÌÍÝ5ŒÆŸ7³\\Œ?ÎVKÈ+ñþ +Çw×·°\^^MHèj:J* Ó=h Š>ô¨ +Zªs0®’6צϣ¯Ù …®dÙ +5}Ïa»@'5dKÞ€ìÃösiYJèB–í`Fɲ,% .ÐHÙv(Œá-kÈ^èlÁ©â-jÍ«34%kf¡’…„×3‡Iܘ U|îlÈDÖ»%QÃ&‰R:Ⱦ‡W:Yðë…×´ãw¬ûªy)I!ÈžQ“èMÅGžØ&öå™”ÝÙ'ÑH4>*ïॠã ;ôF> ¶¬qšÖ“xn4Š½_À ~ÄtŽ‘½AØG`ømúat3ݼÅB}ÀBîNÀPæRç”C“d ›[@É1ìE¾dfœÊ[V3Mê„!_þ¢uœ‚ï±nü,XT0^àšã8§óq¹A…\$Khyˆ1-CLéТÏ&ÿÒéálýÄû'¨Ûêlö7¾©%òÔió£ÕžiIBïÁ´š%t‰7Kw)£ªXóIÇ{ÝsÔ.Ѐ¢¨Ô,¸†ŽM­Ø†*ÔD‡W‘™ö§–üîC¹ †ul‹V®´TŸª¼®¤*kÓÊx˜þµrÒé²c醰[ººd^™b~–DÒ9–Ž®pÇSŒ¶ó0Íx–…º÷­M÷'š=1ÑÒIu§#¦ô€fÄ„$îÑqÅ6ÌþÕ6–.r;-°¶!#ºË+~$$ˆ÷ +´I}þAøp¤÷ŸÍGƒ sœù/'@=d(º¼ †žÂ÷\Œì9}/Aèü¾—ZœÖ”‘"j‡  ÷ˆ +endstream +endobj +59 0 obj +<< +/Filter /FlateDecode +/Length 954 +>> +stream +H‰”VKO1¾çWÌq-u—µ½öÚâÀCUÛKÓSÕC€-¢¤€è¯ïÌø±Þ@ ï¼ç›oü£:ªQË®±Pýª[¡Z¨.Dí×J5T ![º¸Q·$>Ò4ªsQ[úð%Û`G:ÒxD{2ØP¶Ñc IªsQ›¦‡j 3–•P­æ@b(ôŒGGv–ä¨c-ÃîZÒÍ·9lIRÏ)>Ì o‘ÑP+aÃÜ„ _¿ÎDWˆþð(´ŒíÚVÍqGh8ÓËiÃDÒ°Ägsa¨`—"ÐoCI÷Qü<$DÈ•Å.(è‘ÿoà”«&)¾"çƜˆ’ižÿ –~Œ'·€¤wÏ yـç+ò„ _¤ŽS¡RŽÃ¢Øíø<物âÕR…êþ’ÕšË=°þ°¢€4ìMøÀNïíE¡\àÀ‘11çɤœ¶l ÁÀpÌ¤î  å}ç ly^A´÷rpÒ¿ç9LÆ«_rØh5%&– …FVâÁ[÷dâŽjú¡8À‡ÑäJ4‘Ôy‡äÕJU-¦¿w²ìÇ8ÝS‹{¬ÃMÇ0-¨^,çæc(ÓyñÞ¨eD°‹ÞEféŽ"ܲ7˜ÂÄmIÀ…·‰6±IMã’bóÙ%<§ÕÀ”z^Œ#¯8j ´4 +ÊÚÅ“®/Àñ>`ŠÜºòøù÷ú v×e8¦õ¯„~c•ø ÿ¿ígT +endstream +endobj +60 0 obj +<< +/Filter /FlateDecode +/Length 765 +>> +stream +H‰ŒUKOÜ0¾ï¯˜c,ãW^âÀCU«ÒKs«z€%,T ²õßwNpèBWì™ñ|϶_VçíêüâV‡ß/{8::üzÙo ëúüÓ‰:¼8ý|…ãã“3 :iWÚ° þášZ›²q`Ë «`khVY®Ú_{U¶iem‚]V¯ m|ÀFÁVTüG¶U¹3º„ì?œõÊy]CöL«£5·¥. {€Kü´ÚBöÔÁ£Â]<~ÝÃGqII‹ÿ®)@ÊÚ½W¹ÑÕ"Ñ•ÚÓ³ÔÀÀ^°¿ì¯€ìQŠFWËkš©š6zÊÇÆ·pC±!Éít«JŠáþ ÚxšÊ#z<øÍ]̇e£²®0`vÛÃ@0åž:娕”CiE1äNUtdž›`ÄxGI­ ò”±å£ª À3í×ÄE#„¸„X&VÃ7’N@yªó‚'Õ? K +Aýl÷s¬[úÊÕïøÊ#–ÙWØCˆ«ˆ8e¢’¯q‡`—âCÉ#auQsŸTMÏmCɲÃvÝ6(µœt$²­…Æ)é‘\*ÉÆb ¦Ù/³rñÍ-$m[Oë ò‚bGZ-•NÚCócw× ˆB‡Én¬¼3tì á{žÞ3"˜‘çcÙZ3ÌpKßÎW2»XhPð»²BHÎ5®ciögò"¬‹ÎcÓ±4SëäËルnKù¥¥ŠêK!;[êß· r½7-¯ûY¥’²¡<²É9‹ù9„¹ü$ídDÅs6ÓQ‹W’Š˜uƒu*êõ^ˆŸbì`Œ/ö.™ŽÿßÉ0Ý<*Ç#å® …c;È|ã!Ι¤®£md*›ßéžØ&dÍ.düÄ;â«z} +ë·CŸê8ÃG#0™ïñ íï³ø ï3è­v ñc§ãpN6³ã†8,û*¨™AE¹r ÃAv¥œ‡Èœ‚1&zÀ×ÑŽñ™"<·z"d +þ +06sÀ¤ +endstream +endobj +61 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +62 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +63 0 obj +<< +/BaseFont /UCHBDE+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 156 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 157 0 R +/Type /Font +/Widths [250 0 0 0 0 840 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 444 +0 778 611 709 774 611 556 763 832 337 333 0 611 946 831 786 +604 786 668 525 613 778 722 1000 0 667 0 333 0 333 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500] +>> +endobj +64 0 obj +<< +/BaseFont /ISGHRC+Wingdings-Regular +/DescendantFonts 158 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 159 0 R +/Type /Font +>> +endobj +65 0 obj +<< +/BaseFont /TKZLUG+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 160 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 161 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +66 0 obj +<< +/BaseFont /YAMEHW+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 162 0 R +/LastChar 90 +/Subtype /Type1 +/ToUnicode 163 0 R +/Type /Font +/Widths [159 0 0 0 0 0 0 0 0 0 0 0 233 0 233 0 +426 426 426 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 458 483 0 491 394 392 472 0 248 0 0 380 637 516 481 +0 0 470 394 393 0 0 0 0 0 387] +>> +endobj +67 0 obj +<< +/BaseFont /DPATEM+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 164 0 R +/LastChar 149 +/Subtype /Type1 +/ToUnicode 165 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 207 0 207 343 +513 513 513 513 513 0 513 0 513 0 207 0 0 0 0 0 +0 612 0 580 666 0 487 0 0 239 0 0 0 0 658 0 +532 0 538 493 497 647 0 0 0 0 0 0 0 0 0 0 +0 482 569 448 564 501 292 559 555 234 0 0 236 834 555 549 +569 0 327 396 331 551 481 736 463 471 428 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 282] +>> +endobj +68 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 597 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/C2_0 166 0 R +/T1_0 167 0 R +/T1_1 168 0 R +/T1_2 169 0 R +/T1_3 170 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TïkÛ0ý®¿â>Ú0Ëú- B MJY×n#ñ>•2Bšdíºf8ÙJú×ïN®]»ë–…pÒéî½Ó;åGÕöf9›oa0È?@~>Û­la8<€—L€àJ[ü£arÊ·ð.@À-\^ ¸–ŸN¬6,©Ï$”KF=©VKî³QªuORNŒ'2\¢ 2»èQø%Àg¿ZÐ +endstream +endobj +69 0 obj +<< +/Filter /FlateDecode +/Length 5934 +>> +stream +H‰œWioÜFý®_ѧb7›MrH|^8Ùl¬ýd/²<’•XG4#ùõ[W_äЦ ÚÝÕU¯^½wüãÝþòüôl¯~øáø_êøÅéç›û½zôè§'ÕÑO'GjjÛvð×¹VÝ]ÿü²Q»£ãó¿Fur~äë€}Ý)cÚººAÙ®î:\m¬>ùãèéÉÑÓ_`Õ¿`Ñ øòâøÙU£žÜýûèøåíé5ÆðâôúBm¶×ÕÏ?éã_?¢º® Gá®b†ã8‘0ª¦n,|û1ðcF™Ö×oUo‡zGѼÚ<Ö¦¯[µ¹ÑcÝ«Í•®lƒ¿¯4<æÔæ.˜zT›k¼£6—Úz¼¿‡Ÿ^ÿ¬Û¬t—ßhOuåqµ®ºÚÂàaü|«Nµµõ 6·zÄ?¦ÃWï´Ã»7ºÅS¼ +œéŠo¿Óoq1\Tí!V¸~£î¶šÖ½„õ-^ºÖìVìð•¾6js+ ¸1xõ4;Bƒ.µðóÞ‚ë×j§Üé¯1X‡kÝà"=.V‹/ía5µùN¥œËóI*xØã–ž¶ìøˆ†rl(Þ÷ +7/zSÓòéÒV}Ô-]ÝrÞÞS¢àÖ{ƒüïÉ?#Ⱦ(_ªÀKYržÈeÎàû¥•û|åºû Coôpô>Âq§Mƒé½,jäç5Š˜`ELÜ@Í=–«áÑ}*½Ÿ–þв€1Ÿ€rK3´ì߸!Ä·… Tx á9╈š +Î`ý°†¥ÍƺÍÍàZ™_ή‚ä…*š‚J¾Í —\ÓJÆ +›Õê„"6'ç3.JÙ«-­ö#ïs¡÷tåBNŸJâ9p) ¾jð•‰æ\­†çP€È4~ D dm;ѹ4zÞ«Rÿ ˜PgP0“¨/pW„H¬A$q Ü òZzý;5ÅCrEiMÐ2„­ZŸò÷u\žH«ŽVŠ;T^ÊÌX¢"¦ƒ†VùH8ôE“I-UAYELám +ÞåÁ·øüŸ2‘t–7èð_<˜ÔæK0JIÍßïðíÕ 3Ðà 4KÔã8~¤ž;B®I=f‹¡Aø2Ó…^í¤W=öêH™¡…L1âb>j^ê]ÆBöáj¼Q/?kYËŒYß³`r.¢ó!¢|Ž“ÐóÙ íò~¾ž8 ñh*Š1õF òk´ìh›cxž¾ì„eR˜…ÂXˆ` s ,¤dˆ~¢mçƒc>¹+NKÜòˆÍ7Œ:·„ÑÞÖ&á˜T‡QL¦\<Ý„~=ÐOtŠ»\#ñpúJêU6U<§f’cá?Ù!{|ÌšŸ•aD'>ÜO FèÖ .Ûâomz…/Ú‚žc‡Ì s°ws ƒã5sŽÛ3:ìLÑi_,x)ÉàÿI9ò¹(ŽËÏÕÉ[¬Þˆe£ê壌4ë½áhXâl>#ãdgÝ’„i[}@ªá> òO•w¦º\²EÁ­ÁH›¨ +ø(ªÐ!C³ oƒç #•{i±U.nj³M×bÈ-Šé|ØñäU+w%:Ûa p€$Ô¿–§lªø™+w|ò.ä+$ßÚ/ŒdQ¤µÊ§“á­´C\p˜N®NÐLÁÙŸe¶vd4+d“‘zKDÅW ^dQ[§èÖCÖ쮘ÊNÎ?ðâ~ÍèXšË;=°„ >þcÙvB®ë™ÎX2®]ÂRc2A}À_ ˜Â„ouPoO_"Q/t |0IÒ>T$È^Iïç4Jï¶*¹'Ò’v`&R9ˆà¼‚Ù×ҦߥY>3WÌV8ªwÌÕ‘AY*åœÓ6ë©äVIùÎGtF×Ó5XSà!/pÂþïT Ì\Ó¬H¿†Æ2p¬§±abæÌuƒÏäôŒ(R;çõR‘·c;K×xž¦"?Eݪּ”‘yˆeu‰h‘ +å+¢Éô\Ñ$™ÄR³Ùt†\Uhñ­¦)•DÏù:¬n‹À¿Ò¼uFÓM.ÈJÏ™p5 !ö.+† æ"Ö.•‰»¨<åüœÅJ–?Q«yÆðFÿ°Ž+Àš£i5Xû&[ùD{›9‰ë@aVUŽ>%ËmÊòGJ«“ +±vJS™Ifú؉¾, ÚIâÚbt—Bœf\‹²ï›¤)Þy­cÍP"(²áéJù…‘èÒ©LeD’‚M؈a¨îY䤹@uaMÚUÍÁéÖ€s™Hp¯WØÞ”#vFsbF»n@-(z¦Y1Ìz¹áŽ©a|Ñâ¡2—ÑÈ (“J‡Z4ræ–)“†ÏlT6–ÜâÒ3# 0ä+ìOÝ–&à€fK2UÜb9w¢)/y,d›™Ûé8È{"#Ä\%-C¦?(Iç„GÊ( +ÜÕÈ°Ët•˜Å9ñ=Ãb¦+ÏÅq.&„3ajC² ;Tá¾ öLN&æ@4<èE[ªØ¬Ü"ŠÀ‡Ò»O(1LÌìtƒIß±˜!7Jÿ¬™) ÇEÇW£ØkeÂÑcꆳx«*Ÿ¬fŽÁ >è½O¬Ç÷|´¬.{;>`ÿÎ$ØÛ!`cjœX´:,þãÙþþôýÉöÓþ‡gOŸ=kšf|ôè‘¢Å1—ª·GEC£ZÝÄ·bdÆšIh®¯]R3íU2iWo°-¹„vÊ6E}»ÂÚIC‘‚$FØÎ1~ÈÅŽ FÉæŠÊ´Sɼ@y$œÔ'Â%B ɸ„È2ò˜›˜6㈙ BW +ÏCL$í’:Ú±Òʬ®»höÖÓK7Á™ë—ªØÀ—XÅd(†ŒücÚ¹Ç^o4XƒMÖ8’L|ÎfÔS¸Ò†åËÃΛª¹OW(e¹Çö/±6] Á$aís‹¦f¦5‘SPÐ’†S!à–7²@6Y ís¡â£‰œdL8¼…‡/ Þ‡uc©¥³„è2Òé«qä§FÍ +aá—ƒ€r#‰¨óˆj gì%Ó‡$³bzÚ†û¥%Òæ:cKÃu>iÓ›{nä[AØNwð÷µÖ-áèûÕÇê'ÇjZ9~9DÄ®ë&±}»o£âaFÅKùÎ"{¥'ýö†‡Õ[P%5ó ¹‡3‘Iû|hæÓûCBYa’¶Â2šÂѶd0¾_®qR†P…¥"x°Ÿ¡íCŠ`¿¥CS¨÷¦ñ^%ß#‹ð¤ß¶<·¨ýnYBo¯qáÌ +·áBÏ*¸jÖƒÁ00š– SÒ)öäÜJF²lD†VÙî´ë¨šŒÚêr fÚì.4»[(H×$yâRÖSEìê®È"{•ëXqTëúK&Èèy‡ù­î‚1Ú«ûàx:– +TÇkŽ_è¦×Ö=4Q˜Û($qk² ìñ*ª¬Ë<ÎU41-w¶1ↇáËß"¹âÈЖ&loá½ö9L•jÀÐ.>ƒ’Øtƒù60ÌÕê²È Q¼ ÔJPE‡_,åêË‚ÍçX2gÔQŸÕ•øBQ»6S»šÑQ¯o»®¤?.ØA_úÑÈ1žCxr­$„SQ=gˆ +<Ê»Ly6g,ü¢ˆµdÌÞA$ú¡]wÿÏzµ4Çm#á»a•G&‚$’­½D•½ä”õ͇”ã•””G–"%ëøß/úFiŒ²Ë5Ò@÷÷¼ã*©³ÛNoƒÖVV+8èŒCCn„I +úq²4ëôúÔQWJ{ô´¦Q`1ºÔ˜¯gzxè¥ÔrA°1!Q}ì ìÁ3B81x6ä’ê”Oj‚S~‰MþÛ ?Ï,­µ+sŽyÆ3nÎp(Õðä%CáhËÚQh}¸¾H)”•e,b2Ö­>²8qˆS©U·&þÑ·àú <æ—£O áá*,ËAhƒÖQ §—b2p„°ýÒϽe¦+)@ŽÇøŽÔƒS(&\ÈÁxøžà Ð’>iº44|ÙL'ž'Cµe)|¦'N²å؆Èð÷¯³’;aœiW¼µŒß»`[C’°Li®ˆJw4½)’yéšòVÂrn¹çDò9ŸO–Uù<Ú‚ÒíeÕ× ô4âl‹¤lÆ·3'ä‹3^ôuEj”¡Ø¦Äù¢£R5íu‘E"²ÇâEüæ3aÒ@Ðå <ÆÔè÷ »Å[ÀW!xq>Šd;͹m5ƒ®,ftK¸™€.ÉÅ2Š>u‚wê¼SVúüG÷‡åa"9C«Œ:8;9h2i ožÈd£:nôW\ò‰VÕ/|è©Í@ëëTp"|=÷tž?ÀjßÊçeŽk51$å ×úÒ{ÄáU÷=Ln-‡ž|ÎF^?`º+~(±²† Pù|}…SàЬЛ£´¤+3Í í²)I˜ÌKãMœŸ˜A*ž˜‘ZgŒspFµtB܆™ù<üÆã În©TWï£2”çÍ}¶=•Ñ—LERF7eB?´­N®‘ø¥¼S_ “ÜdzÍóLÚÔ€&£2=ω)¡fO3ÉxøéÊ<¬ÃìQüï„À ›Çk)ºÄõœÜ‚S#-éÄ K±`ðÓc.D'Ñ£¼º!è~Âþö&ˆÒ@!‰ÉU¹kjø9o-†ßŠÉèRÙT‹ƒ wÇã¸æ\÷Gõ“R;¦|+bLC²×hiNöÞª'× Àý%øTº—7Nž±×j±Á¹Lj.°­0ê,Â#´yô_1¾(ˆý öCOâtFlÆ\¾qÕ<ç)gæX2ÓÎWÃl;ž›’çæ>Ü%pÛ“rÈuGC¿>E"Ÿ© E 8ÍGOKÜäÅ?1!|ƒ­ÿe¶„J“%ôƒÔ#Íý˜lØñN”pŸ´j¢fâËŽL~ðÿc*VÍrŒ-•n‚S}­+³„f4¹Ö*(µ³vÎp:éë2 *­*sñîwYþgéŒjH=ª"˜"…yáR‰`¯#XîKÖ>ìA,ù„­DÂÒÄ‚êm™†OSD“Õ .D½7XŸd6ÛÜ5dá³’¼Lƒ£½0™u™.ã5[º´ Ta¨¡k’÷ jV§Rò¾Û{Èû×ýiáim–Õt*çžeWJjJ%tŒ_cvaV\äaGòùYâFĈ¡nÀ ¡Ì:¥D„òØ$YÎ]Ê`'•²"+-¤yySJ.”25’'¹̃Š XÂßVFšAê (MÓ”–Qåå0Œ`xùû_d}I+rΞ#zÄDt8ZVé˳n„A³SVXu]9Ðm!b¬ý…Vˆ]À ížE¦Èí1(,•. +N*ªìã²1²Zî;¶z‰¶á©e±6²÷Î +ûIð£Ãû¨Öü$–Âf,Ã'<·+KnQÁ7•âDUKV>☛šç¶° hŒ ¾îºšQ ÕRjɦIï kÀuü§7=ãÕ˃*. +úM3½iÛø)b½¬>œ‚¨´š8¶Í­8¤Ûð…þB “9ÇÍ•Nˆ¢oàï+¶;ÖMwÞ3]—À/§ ÷)ŠÒ@p°Í˜\Tã©ÙEÇÁäpÍ\'«I˜!7!3‘Ž ©³Æ—;Þº.«¸=ƒëUŽ‘êF’Mù„ä…-¶c…rŠëÉóàã²¾sBN¸Û6€ü ©5ˆ†?F½ {€ÄœÂ+=ä’’n*ªÈ2ÙœˆåP¤ÛtþN_Ò‹‹ªê(fœ\gÍR+|vy*bÍ°µ-°U¸º¶SÑOæ=دúI ´Í+˜Irï“<ïi¡ÂòhIŠ¢2r´ÑAGq•+<ý±ÇMîšP'|ÀˆµII·1‹Oz+|ÔMž o0Y‚+‘%É  Ö›4žè¶í9bW̮۞HœîÇöNq­xr¥—Ð/—i(F¥ä¹§_]`Ó.×½uצá< €çO\® ¹¼%í ù°'ˆ Ù ˜ÍX”˜¿UÅ•JªÌ!V0i’øÆ"lÝĸ`m™û¤saѪG.õ0-Õ”Àü_ ª1·° ¢š<-¦ƒFTªõ¹ h9%ËVŠ¬Zh89Äù˜‡¸1)é;kßBînØØa g.\Óî¡'TÛT6:’‹-étá«évÉyt²&³Ù5ã¹ . Ÿ‹ãôoZ6QEÂÊô_{vv蛿q šáçL`:Í<Y7Ÿf«kÛÌÇè4r8ÔÁÏ N¦m“¨6²s1•˜–{‹„9)¼.)¬ˆE£B_–·ÛÁ¶ìÛ¨m\gH ´G +ÈÒ"#‹H{»ŠÚbl÷Ù +è +™ÒÙ|¹á_zÕ]p¡5c]ÆâRvFJ‹Q‘óG8¡ÑÙ)¸pq_©±¦+Æ”ÊGf¸°±Šo¥ „Ûhl?÷ˆ Œ…¯~ÆVâ +0GEæ¡V„WiôY kPh?ãºæ*ÐÄPÒnsæH1œ÷¸ëöÆKàåô™0LrX‚ëÅÓµf°¦ôèEܪ¢ LsÑïýœR“â@EÁJ”Y”yW¶TØ—Áߊ³Ü³êîû`»$½ïtAbÙCÓv†ÙbÚd‹©š-ØÜq²h ßû¶}ßc^]U¬ ÿN“ížî^½ù׿‡îîùÕ›ïÍÏaYÝÛÛW÷æ»1¼:¤4PƒpäuÁµýcûÏV<èj+4ä]§æÇæ­QÖ}„«Œx•·où&PKüŽ²©—¿ÛFÇN^Ç)ÄöJˆ¯²\äSŒ ìü#‚ë¡—œÏÌŽè‰àã¼#¼h»Hô6®8=þ¸Åðè™7,¥òö“‡³½éa«“¾êTáÂS‚è âf7YjnF…Žâºâ +Ò-|¢˜.¤¦>Úñ¯‹j˜÷PùöCÇÿ©b#\Ä6Âxm8ÓS˜¨ÁéÞã~> +/Font << +/C2_0 171 0 R +/T1_0 172 0 R +/T1_1 173 0 R +/T1_2 174 0 R +/T1_3 175 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TÛjA }Ÿ¯Ðãtg¥¹ìŒÁš ¡¥i Ù·Ê6ŽÓ&†µÛÐ|}¥ñvk;%néˬæ"#éh«·Ýz1ko×0WP}h,¿­a29:9uÔ(4Ö^½wpy¦Ðxç€p×7SPÕÙÂ|¥ªcû  ™±csËOš'YV@ÈŸg¹ê ñòZ“ H l06!_=¨1bò“æ^6êôœ)ìâwsU&vòâÈB³‚!´ÐÝ©™ªeT54p4HQx–½•ÉvP›2ÇÈÉ’Æ#Õ²§y]¼Ó¥3ŠGíƒb­ Š;]²'s]Z“ èt2#(Z~?‰â6Õ ïáD—žAŠ….I|V—/ÚŽ½xÿ ç|ßfÃæÁø-à’¬ ¼"æ¡weågáC…É×þ»ìŠg!•¶ˆra±|䘱}œnŒKãä<©çüZ â¦}èô‡ÐWz$ä×B™# ÇåüÙˆR© ù•¾iÞ²8ØeÌý#ø"Ú¤¬Mî;íks§Ó.ZãÈïtºÐ[r<¬®—“°£yƒAOáUÑÿ Ê“rÚ®KĪööÒy1~C~Œì6È2ÃGn}.å@:þ$‚!{‘+9ˆ€•â¯)ÈW]Ʋ–k²nœhþI1[ÿÉ(PŸ‘{E4xoy øï“b1S3ÄŠÍ¢Ç?'51ª +endstream +endobj +71 0 obj +<< +/Filter /FlateDecode +/Length 6159 +>> +stream +H‰´Wko·ý®_Á"à{µä.÷l+v\ÄIË͇º($YºR¬Wô°ªþúÎ ‡ä»+­ÜA|u÷rÉáÌ™sÎì¼¼¾==Þ?¼Uß}·ó‹ÚùiÿáòîV}ÿý«Ý×jëÕÞV¥ªµ­üÛ4µºÞlí¼ýP©ÍÍÖΞùg¥ŒÚ;Þj×,€ÿºµSÍЭû¶i•ukçZXp¾µ]ë½?¶~ØÛúá=ìú'lºÿ÷~Úys^©ÝË­¿ní|¸Ú¿À~Ú¿Ø¨í£‹ÕÛWzçýëw»ÊØ&Gá±_0ãÙã8ªµ©µw¯Œñ«Œ2U·îLëTgûõ0 -†ó÷íßõÊôëVmŸèv=ÀyzåÖÚ¾P·3¿Üà§ïêJ·nÔö5üÔâ£CÝãÇ¥nðñ…6 ¾øY¯HÇö©¶íºVÛ°±­pãS 8¿¾Æõ+؞ߨ}øÓàV×Gê–[Ú´Ñ™^UÊ>Ðã¹´Á‘®aÙ µ¯vù¨]]W¸Ío)VXjñHŠtCwÄs4œ×âŽ+Sãƒs +²Æ?à—.»nØ‚ÿR¬t[ámMçƒátA8˜zcÀ'rë?C¾”þÇÞ_"8‚“@XWÎåÅîݺª‡FuP.Öú:•°Ç;ˆ¼ñùŒ•0Ð¥©@ǘžÉäpNàBðõ^×T·K~|ÍÛ}QÇøĉ_ƨJÉYÕ¸$mÒⲞ€¼óš Öáùn0Ì}:ÚÉ-Ì€[nðHŒ%Ý‹›@[úáóá²Úœ(ˆÎPe |I(…Ýú°mËÛ¶¼mŸÒMW±á*n|uÉ@?öÈn$²vøöÃ3àÓ +ø@+Uö4~*ˆgœÇÏòÔûôÅ.>SoµÅ|¥ž©9ÑC¿¦zÓZ‰¯¢Ÿ÷¢éB,Œ+Ñ ,ýÓxf +àZ‹ߪˆñF¶èN?"ÉÁ_?à .zÐÔJþŠ·š:éè\I8„´]ÉfI²F;œÅW „ù.ð_|‡â°œ¢ZüôE×{‹ÁÑe"“á¢úuÕ6ÆöJjÚ£[÷mÁ†“¨k{(id­ldÏ.=5ÕàE%ÐlDg6Ïhkõ2k•'$€9Î=.‰>Ë\wxæö½!u2ž± uÇg²RF' W´\Ûxzh½¤JéÈãŽDŠ+_\Aóp“&{컇ã¡Œú¹¢sjrmµ¼'·$s%je8 +Èq@dHnƒsÈ…¯­g ÔٵɄ*ö'dÚáã9o`,^ï3FVsF™)¨¶ÝæâQH¼OþÍøKéˆ^Ø 3!);ô`£žs’eieÒg’Æ]‚ 9@&¼ÃƱtU¢Ü(~¨¿ ¨a£(gô}qa8s äsÆOâ8´F DCf +BËM¤‰.ϼf1` õgÙ,‚ÅuÂiºËWÌ_#9–Q{÷¤ü©ÿÖ7a[vX„,#Ô§=ÒËJB!¦u@–ôö¼öcs*„5¢Ò4dü,qÇC0È›ûGm,J ¿%‰J5o²š[I`É +ãú.ÒL:‰:Aâ<<àn9+**õÉo[,býXŽ0S˜)kf&¯¶©…aÒÔtw±”,èI·ÎRùÒbw?_ìÆÓN3-0^+f Q†è$CïOnT7S͘¢I~†Š|åM4‘0â¨jD6¥–ÃnH†WxfOlΧ”$2MÇDLÆÉ£÷êíeû°¹¯©æŒ„ŽXÓÃʳfÞk{-Öù™C¨J{n&d!‘Çd²ÔÄÌ“7«Í›5“’"áb¥è¯Â%‚Jç S,~Ñ”{¿¥•b=ZÀ—F&‡’ÉúOw\±SMYè\:no‘¤aäü,†K½ÀaK¬,wØu“û#Øh‰pñd±ogݾÏ*÷±³-²„Ç8o‰ÊºI—8e¸mï}+ ƒÂl=ņ°+“¡þ‰r2;aªOÛðHmÿ®‘¶aéK\¿¼÷Þ'­þ"9<¶æá›0ÔVyø-Š²ïY'ïÁN¦[ÊÇìuêܚλcF8\Ž?·!ÏÀ_[0a;ƒ¿Ê>_Q¨¤nûZCªÿ†ÄâŸ^Ct¾„‹Í† ¸^RÜhÚ XN#ZI»#A+ñ“O=3ìÌLU‰2 +£¹òíx“Œd#‡@õ‡®qç`¦¦î>Rá¬È³Hì¼ ^/ç‡Jx8`Gç²´ÛŒ™<|o<¾Sëͨïr¸v…ÁšQW×·ÂÆ'/rë;—*Né–i +ñZìå? lŠ•q<–Tã»\N„¶DÛ$§27F«5R°C„ºT š"ɦXÜ)†¬®šT}7¥úsABÎúɱ°4žj—…úT ­RcÒ¢†ü†<™j‘9N¦4ˆÕrÈõ¹Œöà ä:+½ð-„ÃpòNUÞ40È +)Èš³.Í…ìã`±&¬çÉ°gr4ÈЋÿ‹iA0 ü–cP +G'+V‹þåh½4Ì'uÆZLÑšîrÌ ‹ËyöhÉæ“hÄ*©¤´Ü©5IÐåµ9‹vßFkCŽ1;cÕœëÑ2Æ6IÌ,E§É‡¨ê Dó™ŒÙPÌUád©µq¬‚£vàŒœÅt'$ Í%À±õqåT‘iŽŸüöy’ ÕŒZ‘[^™Šy|‚±ÿïTÍq'¿YÓÀ#9‰8üAðã,ˆ±#ÜHÎpn4ÃÉdáؾtØb¨5Õ¼á‹0kô{‡ÙX‚Òàz¾÷Dr­§ð覞Êb+šîoGì» ÿÈY›Ám©ÄI¹h¥M¾.+„Ã| -Z ÍÂ!X3e`ëLD"2kÉž°ñN4Ò~ë9PTx——ØälRl‚ÓLgZ§4ÒÉž§“ÏG9ÝéÊã[ÙZ­A²¥—N‰&æ©¡¨+¼PÜ`#HŽÇžÙ®ºB”d¬G&½`Œ`pèÒÌ8¦*¨i“åvå‡?ì΀ÙÖô¹- EfØ_Ú” .œ8ÜË +LÀ¢»ýË÷ûíØDŽÐœz€7\ »`¸“ X>Ü5uaÄç ²<Œ‡»h~¨phî´mácžR† (£מf-a#M ¾_Uò—½ ˆqÛ:‚rÌ4wë¨ý¬ +4?”báðÙ×eõÄü”ê:ÒÔßǼbäZ¢1Æ6±"n¢ó…m{qÝGm©uÅh83ýŒ?,ã» ‚¨í¦ïb¼6Kð*õ ¼ºœ»¦ñZáâç<úkÖãà¹@$¼Åñ)é&aõ6yu_¸ 7Éì2"_¢¯ðVµñÎÆëÂÑù‰gÌr*yÒ½M/¶Í£èF g¹áº‰†WŽkº:aëOYýÙÉ ·ï2· *eô^×ÎøÐ%þŒ/^nn8%/ÄèIø< @=y†Œ¶9dºn2Mß SNþ5L#Nö_hQjC[¶¡vÄ°Ã74£ñçø.´&•Ê$J‘jm-Ûa60~Zˆãé´Û +G~àûªk#Tí,FD¯_á¸Õd“QPT?j¤LÂùEɺc@Í$@½Áfrh\#õi/{~Ä:˜}HbCÉì0»üûk _Þxÿ¤µ£€^<]]! ÐzÓðêj4ãIA 8ý¨kBV¹];9‰¤§äûäE£/ªÙH÷áMšß´÷oi¼cSØdŽ$ W!:Ô¯œ®³±›C¸?bÅš?ÔMxð«®Iï?é!ÍOŸãt¼£4²)ú™å¨Ðz´ÎV³¼­ï$o„ ‰öq$2»‡éŒ òZ½| úœ®ê8¹Axþ ÊÛ§„‡q“ûV¬&ªŸO0I#çcˆWˆµN@#r@ÄŒ¡¢&ŒÃ#ìP3Ç`Æ `©Ñ7¹ðšËTE96"䬨šííG«FÛ3&3àhø˜À x·LW¶ó~-¶di 5‰ù '(ô;OÇTŒÙ˜%ÕØÜ‹‘3,°]7Ëm—«ÄÖ`lš©é`Äë#襯`8ž “™®3™ .œ¦Ò.N¥õ©´{„:ðìv~*E=Ïõâò8“7v[ŒZ¦êÖij ðä]é>ͷݧúÌ}„묩žßKq*† ˜°¨>ã%jѶóae?ØŸcßQ±`l`e¢ MêŠ=ãuи~R8"Ÿ#hk&öÒW+¸¸Ö¶põœ+@­µ>ô1^jÒÉIÊèÿCz¹4Çm\Qø¯`iTyèAhË”µñÂY8J²ñFÖE²I«hæקï£ïÝMbä•e ôãÜs¾“-#¾d†¶Ü)²ÍFFÚSæëÉùAõÀ$L$˜0ÂÛŸ„2q „*ü”Wý\Qš%¯¾ö3¨Ð¯¤Kk“ð‘T휡Õv¥Èaó¡Ì;ƒ¡Çº"EUì ¶r_vrgõÜuŸ lѱºüÞiÎu*ËL›9²'†ô™›îŸ…RìiŽf?ú̽M¿bÀeYï7®- +{tôÜO:šèZLEàN'wËårpH¡Í?$M|„yéÒp¦5¬ògd, Çá÷+,<”Ó!ª8›ÃÒ™Ž¤½‘Íi?û¤:Ǻ(Çu5 *©ÀG›Õ;)'òÒ|b„rdcÒ2sùn#¡Ãzý̺»7‘atšÏú«êÃAË"eÑg÷µÀ0:’\ðH³%”-!µzšºÔÿp6ÓÅt¶`Õÿc9¼{-¥JŒr釂!Â+rÜ£C|f‡a7¾3~az¸F6ËÎ~¶†jR•QNÞW5銠i„&Ê9 ²×W {®C6 +ðçoúù ~ߧÏü#=ðaD¦t3kzö“q£§Wà“ÙùçÇ”ÃP1Ò£áþî&À‡ •(~!Ýä¶æX‹Ù'f8Öi†OþÜó{¢SžÌ×úqKÖÇÅ´îI¼AXcÚ„’¸¢Áñ\¶ƒ”ËÌn2å,Ãl&ðóI$¯t8#hÖ îXØ¢ªTºÎÜÂ’‡Ýœ¹4d››ÈÍlŽf’“õ‘,ñFã…p`nÒ/¿K‘qæ`&®álù“kœüÅ/jE¡õ‚î5y+dóvúH[VÁN`ÒQ`_C¼Ñìÿ¾M{å ùŒ6ï´ ééNðN€¢µ†ÝwsÌò9³Oeáq¶àgîi3LÁ¨=”ãoi#3î+x– µªöËTf¸Æ† ™4>óÚÑoþ¬@ÓêŠÑct_Ú˜˜ƒg‰¢‡åÏmî­¤U(W +HA,¢Þ‘Ž€ïu§:’Ñè¡ÃãÜLš£Ãçû6㸠6x‡;ÿ"ö6$Srü?¯Óê/BnâÜ©ü(U¾¥ Ê…ÿÖ™þâ¯éT‰€~Mn:ÀvûéòÄÉXß«ûölŽpÀó‘~‰ïée¥'`j˜{΢ˆ‹µzo)ü<ìõ%Ê”œñDZI(r¶X,`˜íp3ùµÏÏŠwWBðJXõ"¤žª ø"’à ,_$O=uŽ÷rœ”²«‘ó´$öáÎäq€ó ¹pÑ4©É”I´ë‡»²KÙ6à#…ÀM÷CzFåÄö/¹B!ãÁ–ÉП ñnžq þ Ä´´ôÔÕuÜn-iM´x‰A‚ýkä$ÆÊú‘Lÿ×´ø¶•ÅzW¡;1 øuXü¿)vÂûEñ]¿-Ç“-;³}sáUOøÉè†Òû—ëÚ×ò‚wfG®´¯HW¯ÿ¶Ó iŽíq‰MÞ„’äê +‹gÃfËWN…žÓhæTï¢û‚?xÊð–ÃH£‰É ÿ$&/żIö`8Ãö %º 6q[á`~*i{Ody“j…⣅É@ñÐygÉTlYÖŸ u͛Π+ÎMï°Xæ6öêèu¸5d8Eƒ¦ )' ÿré(þåYöµ„¬J$ ’4§_´¥ïÄ0‡u°¬•°¬ #ÅïD‚¯µ(Æl³_† ß}À]Ë—2Ù+<®ööWö­Ö¤kÃèjÌnõ,¯n2‹WÌ:7$“–ªýUc"F°¿4)¦ÁC6݈EssË.0ŸXT˜ÅÂU¬˜`f„?,Qi Íf*â´ªç~\à§ty]š•¶wDÃêº&ù¯›œ +´…ꋶ<‘¥]˜T<¡?W\]*ÀqM­;šJ1·¼Ê[| ü–…t-|[ŸïÛÊ]s¡“fÐsu¨%½-É=üi|¢ƒÏ‰T iÀè ËC±Ñ v¨cW±3ŸÙB¨'/#hhL죂\í¹@ÆÜ`‚.€GH›tšÍR·Zzáh+iÛ¡{h(é<ÖÈ}ƒ™þ§#æ¹ÖM<ç;€´ cß##ï—߸ Áü9‹Ç™f°%á´5®Þk.…¯Ü Uu éÒBôFÌeŒÇLú-ýïl.¦¤Â£j\ÎGÀÍHñ8¸-ƒ·ÌÔ#«BÖ °pi‘›q´š­Žxq môÈ Þ)¶ei4ÑÓiÞt?¤Ñõ>5±?iü½F”¸Ð?zÄó©¢Éß²,ÝÕùI«2 +ùRîAðÍÕ8°Ä­kbŸ³z>0ŽÇr ^? Š–Ù€¿ÎÎ;°ø—ÆZ†åc^bâ. +oà”¯f‡YPÑæ¶(`¸úûÏWyk\Œ¼ŒÁG*­Z†ÝbÁ|ºË]3©Â¾aF#Á¬ŒwûM;`‚uÆŸ“T^<4™ a%›õƯXP3 Šçx§/0\Œ(úóD^¡’±m`"‘T<·šDº7p,i=o’Hºo~rDˆHëh[%Rê=s7Ç70y™Ç]ÁΉ(‡8wCj¸Š–ãÑm‚ËbñN1RTda뵚3“ˆÂÔdäÆžë>amðkëµÞÙýÄ wÀûÂtŽENǃÚcÅé4\£³SnB5>¶{þà=M/þ6 ¾DâiöÈ+ù¸jf§šFÆ`²°=W–t®›å =M_[§IÅá™ÊƒqÀ\x‡¸k·Ì{¥<®÷a½É/Š†uØhüô£&By0ônßð Á à¡Ÿjýt—x¥Lãìd »Obó‘|:DØÓC›ìè õ]ï®IôÖ2µ, ˜9P‰$¶/ÝŽû¸Àôï;ÓA˜*úa!¾b0NðÔë•%OV¥,è]•CœùË›Éȵ”k0ï’˜ßxÂÃr³J@~ÀÕݲ¨èÊ¥<ö ýgVA¶†Ç _âw¢­üh|ÙöâÒ2ö$½…x¥ùàqý,^?)këú9OÁnsŸqĬ,“/J±¡0¦ç>ld(µ01Wanzø†2$‹²ýðÝ"zà@ +endstream +endobj +72 0 obj +<< +/Filter /FlateDecode +/Length 4799 +>> +stream +H‰¼WÛnÇ}çWô#Ð §¯3,ÉH2b­“‡(–ä’”d^Ì¥D3_Ÿ®KßæBîZJ ˆKÎötwU:çÔÑ·wÎÖ'wâ»ïŽ~G¯×ןïÄ÷ß?ùB<_´¢m”¶þ§1ZÜž½z׊óíÁÑJþ»R¬Î\Óùþ_×X!¥nto{¡lc­ó .MµúxðãêàÇ7~×ßý¦çþÿêõÑ_.[ñòúàoGïnÖWp‡×ë«sq¸¹ª_=¯ŽÞ¼ø饽,ï#àØOpIYñ=ê¶iÕ V÷þ´L¦ëtªo†appŸWR‹ÃuUKÙHqø[åßíèAïƒ8¼ªd+O*Óøe›ªV‡§â²ª ¬ÏÖÕªk üâš–âÊ[XI+>øŠVÔr€5þ‰ôgÑ +ÃÃÒÿð9Ù+²…/ÎÅ]ØîŸÓûsĶ¢«ûoTKI‹‹ñÄø²ÊA´ÒÍ8³‚N»¦\‰kØÜßýLœÁ¹ø•ÿôaÜúÍ,FÆÄÜN„džcL¸ÂÀ¿£ÿùŽö'݈øÆåqØÞõO¶"/”…ͪ­þö(šTŽ¦F¶f 0Ò4]ÌI…W ©”„KÆ„Aò¦á~ÇÕ(¥ÊÓž•ÕQYxp-n}Zç¨ì‚aÍ°±UI°jaw,y¬t“Tgå1Õ D–g±2Ž:×í“hé-„[G¸·µ„×°KGÁÁ->d-H=é¡Ö~;xÁ·¬Ìí«3ÀÛÉþ³?ù/0ª+áÕù}|˜þ£f}‡÷ßB£t8^aÏîàÒ¸€ŽŒ]BWë›vìãè2p µÇ•á~Ç|m+å3üLÜW¾&wÊÆgÏ—ªVÓnWœ²SØÀÎÂ1ëQHM%¿¨j;âÇŒÌ8‰Ü²k C+$¥Ä* VÞÁÇHPŽ 7þTá²D´Uì•›ª¥ï™»k‘«1Y°‡å@h/||Þ‰} K{ÂÂÅ7zñ\M¯Ç=/²§¾‚ÀÄR’(Ôšé5–>Ÿí,3–[–ë=•GÚšößg,˜ÌÌÚõ%³ÉËJûBüR™;›ì–“›Ô2Ȇ‰Ó(öOtè÷Zbïm…­AÄï‘Ó Ã´N@5¤iSa _*à‰%¹TGÀãŒBÎ)ïT ǤsÅq³–¤^—ØçÓ#Šn u7ŒÃ·£' †Ñ p¼‘ócºXYñUì×R>ÂÞ)ý¶äΨ²…³ZT§u™rE.a)Ž¡!CÌt ±š‚‰fêáwx¨4z©Ú'B$‹–(ó(o™²¼Œh[1stñ§ÍÎÖÇѱé4°koˆs߃ſc 9V>I’ɵ“±»¢Hb.b¦º˜ÅØ·›thU3öeDí 42ÉDãÀ.—øv”õÁÁ®Íî°q#2‹œvMë´p¶Ë,÷ªZJsߌÉQ‰)Sù”aÕ&ôq“&n‚o~7ìx£ì¹Üy±½]`3ì«­ ;1no²íüÔnäWt_(ñ ù¹¼ñç|ÙÿÐú18‘Œiõ·é}Sç·´÷ ›®°ÞíÒ¨æŒÎœ÷šv\8Ÿ ÷úÌß' cp÷.&›Ã±cñÛó ‰·›ÂlHÊV¨Fð#d=²ùì‰2•.Œ:àÚ\º†·¹^3º¢±ÀÓµÖAæ1“z3“Èr˜™¹Ø02<]øÒ8¨ŽâõTðy÷Ü8VméW÷@\_{j qjÈÜøÔŒ,¦6ß”1J»À\×Kv²ëJ£§|Qzº±9!ØTø¼7‚cÉàRË.»#ëV|A$«4® Ä0€žàï-{¢1[¬§y›2N¿@tËd®0iÍÐJhè~ þnÉPMÑÝ21‘8ǯ;ò^¹0¦ŠüouÃí¬MÉÐTÍ +Qþj<û`»feá}cÓ‘I!úM ËúJzÑðhø{<»!6%5°ÚK²†vD ÝJZ™¹ä¤EÑ£ä,©¾ž%w‡GÖó}L/6/ÂO!­/X6ôóL¶“­ Þ­` :â_3cwÚgË0Õh˜Ë^1€²õ’ü*þt…λŠc) øh‘¥ÁÑKÇö.sÆ£>ÅÒE—a)·š-ÿ¬¨ˆ ÅçÉ$‡!ÆJ=¢ <øêó;€2«w<ÓÑKsßùÂõ²ñMñJ7ﺙL5“i¿§ç¶é”šÒ…ìx‹µàr5#"ŽjÇP–8—}ˆ „#,œÍÍʸŸŽk{H•êÌ€:•[äìÐÖI“]êáQŽŒD0Z‘ɳ¶ Œl¶Í¼e1¹Ðã%TeéÑ°)–ˆ“ªLÓ%qL9'K´“3{Ö0ÒR5ºÃÌÆö£9ë)P(ÝkÖ÷påh@‹JGHÙ†\nl8è~ƒ÷ @kSõ’ÂYÊ5äË^¤»;ˆt©Yí’³±¶×Ë º‡tÞ#S*Ù“|™z-So ^3"ÞRÖsžÁzÆIOXRäH¸}ýßV¦o4ÕÛ€æÆÆK2Ê=K"M4Xèë#‹q¡i+:ñùPY´Tï«Ê(šÎÞ‚ª$ è˜Lö%#ø:;¸ÿ3oýíƉbJ¶1n (Æ€î(»8×0ºígñîSë*ÇdDÌ4D*à-5·½…ž2†ÌZ‰Ò&÷¹5/‰@${PDdqf¬sÞÁn¾ƒc§ä^P~½ü“}º3Ll“"0+­+ â!»ú¸ÛÖ.ÛÚúõ$±A#rÕ», †<ß&Ï3@I/+)ÇÖt§™("švh5V»F8(¤l\~5±î,v0»Èœ@ä@Œ» ýýeEÖðÙe£™H3Bƒñêi]$Ì‘˜{ú´–èOá– ð ®/Me[Há‹ÊŸûwhz„ŞTù„ZpÜÚcÙà:484É´Õ-ã1áÅW)9ì ·ÎŒ¶ð|y¸…2@×PžóР_-òþ‰áûÖ`ºßW3®ô6A'uBû½B¡ûÏÛt¾D¥ivÏ__Ò¾÷œvøÐú‘6yÌ,xþ™i`žèŠ¡™9¥îë©Î|ãy0±É@˜y–LtX•‰¢§`þ ÛEòÈä3û¾{÷çÄ~ͦr¡sLße®p±dFE‘rbk=ÕXPP´uYŸ»…*>EÙ› + ü+ëCÙàƒM¾õ!8tP…qõŽÑ¸Jbd7C|—|»ÂU 3níC˜<¯D4.áIè§Çhsjš÷\;âEµíªŸcegÕW­ (KS®é4˜ +†âIl±Žô2xjN¹HªÃH)JÃD4 e÷åD ¸Ýs9<(矦Â=e¾O^ı¼tÆCFE8>1yS+fÔ“’Ìt”Ý‘*uGnŒˆd&¨›rf4 â8¹+´ 5\vtP€ÃfV ÒPea“ÝçXÕª±9´bu"ø—yÀØ!s‰[ - McµÆú\"ƒÑ#åx¸Ã)òiÄ?Ø6(;þ·=®¬‹¦i¥­ÿiŒ·çG¯Þµâ| ÝäÃÀ…à²9V+ +A‚9&ÞTj Æ¡ô´Òxmð-B¦£ônO@­493¢›$MCMÊá7ð1­Ÿž~#uåÝ0°RA¹Ÿ+ä´¿ÂKþ··âUJ=WwI¨‰zù$B!‚Ñ€!…+(b’^_=µ/f8¥<›jd‰ó VZ“Š»\ÅC¿q'WäÅîÕv;ø•¼Ò{ø•®’]’í<‰D ¥b^@w¡ãTHÍ÷3ÎáW.ø[ñK@“#û6&~ûíA®œ¦&@O'KF»^£>!ÕT€žO{¾~Oj¼ nû¬äñ¢[à”4þˆ½jŒ6q§zïö)$/ô‰ÃÙ@<¨„YŸ—DtÆí-o# 潫~¤6œXÅwo!ªcïˆúŽ±±7§:Š·Åv°Sf¾àr¡U¿ÎhI-Ïæ8+š@Á“¬Èr`诳IhÍcùñw÷{ª‹›_Z©-,›YSÛ»´jÚä™KŸ1þ·™$µù¶Ö‡í): Û„Ùaݤüxq¡7açï£:¿?ÃÉ›èi¬?¼<ˆ2ÜAKÄ÷Q®0_Aq µÚÿÔþ‹Ó~þOóÁ™åú3pv À{˜¨°ñ(˜Â$Lð `ªÀäZ…Éíûø¦,5iXåЩÜwNd¬GñÈÐ%.²oTUiT‰YçGA¬L•:X[>BhºV&Eå­®u˜ P§CÕµ$ÂG¡š¦PÝ »ÕfªtXPå/c¨æi¬Y£GnGÐŒ‚&3Š0¢.«ž ×>;¿=Æ «:¡ç/Ê«¤Ã ܾð,ˆ–Nò¸ðQÆ…¾•hDïañ F¼Â/L£(F–àl´;t±á´EÙp§=!w"î1Üqf’;ðó¹ãìáî¸ãq'Kc LZEÜwˆ×èm2{¼!e¨½LdüÉxWÐsù^gzè#Á…Ó#—:ƒ`u_ª›•®&1+Ó|Ì;!æÉ®ÌQ˜ûİa``n‚bÎ_F1ÏÒXc¹`³x_J§nKx¤ë×mé±Tè~Æô‘ý™Ì ‹å¬×€$'~è@…Ö'„°ŽÇù-'!†]aZ"ù®“|wÂ,5—Ý£mï®Y;éË+zLŒ3ÔýïÒŠØ^ëÊzÖù,’l¯; ,Ù%ƒÌð h¹s[!›5mLƒ,fE‰ŠøÕ~yÃþ‚}Av‚¬Uí› O!1„Öé\²IDÓh– לUÁg];ɪaØù¬òf&«F(”½s unýæ5\Öø\NÖÊô®xͺ+Å8¾éÂó…ñ®Aªž@1x‘ÃAJaÁ?p QÝ Œê?o–°ÀÛÿ»Á96ËÇ`ïÝ$öð °÷' +Ykî¾ Í¾³®‹Î[L{šU+|a;©¶üa“®qèçbSbExV2<–ôïLJÍ=Å<@®Õº^•¶]ˆn8aS¦d‰ÜrœëIœ‡aà—à\w8×pÎÒXÃÅ%é/‹ÛÒ|èWŽª Ðþ-&Œ`Ô0†ŸHDúa·†ŸÎF.9cŽ³m¾™DnvríñꜽsM2HV [šª“Ëâ±tÚ;TUåf7^ýˆnŠœ®ŠÙ3 åqW6[»U]›F®àJ¸ËUqQ¶^RB‚Oð’”ÒOVφÀƒHg‰¼““ûß Ü¦.Iœ «oÕ£X -§‹«~=Þ`:é:"Kåýdñ²3°5Ž3 Rs‹XXIŽÄeoitpKïÞ9¿ÒÓ›ÝXS÷µöèÒh­¿HîwÍ9eÏkñ¥½½$+e³Ñjód:ßBýCVîøV(oqÛÄ·¥ÿÐK¶4Â-öÅ*pÒºµ(ÌÓuÙè®Gÿ‘ j rRyAªKã¹ÛG6ìN\Fw=°»{Q±'?º¢ˆ¡éÿZà +VëàM¥††ÒÈÝ Kd‚ßE„ ‹Lõ¼ÎN˜™è Z7a`ZíP/—Ö¬Àœrfž4|…~Þ91飖Ͻ-híܘPiG9@/žÇmÓ +½rd÷ Üûò|!Ìv'M…ƒÔì6ðȽn“\òFöÉœyΠÇþËv}Úí!¦YN¸cá6çßóŠ?ø};×W—aþD<úák±‹Ø—Ï#•Ž4BÞBÙ|ïjg±ù½°P¥ÝÙ{͉K³€*C³9 IMY›Ô¤M>åÌ)rïÆÆEõ0üeœ†*ßó‘ËØ Žçe@õ<ü+ý^cµ¬ÍÜ’ô šÇ•UÃ4«Aþ`è?áz +endstream +endobj +73 0 obj +<< +/Filter /FlateDecode +/Length 5599 +>> +stream +H‰¤WÛnG}çWô#‡Ó×™ÞdË6²°ã]‹Á>X‹E‘²6º…’#+_¿UÕ—éå¡A<ÔLwuWÕ©S§æGÛ‡ËÍrõÀ^¼˜dó÷˧ۯìåËWǯÙäÕbR³º’ÊÀ¿Z+¶½˜ÌßÔìâ~2_ˆÿÔL°Åfb«ÀMe˜vMÕZm™4•1\O¦†/þ;y³˜¼ùVÿ£ðÿâýüíuÍŽo'ÿœÔd¢jk‡ÿÂ.8©5U­SVT5|ÕÂVÖ)¦›JͶëÉ&-©ëJ)‘–À)E±D¶ª2M·D88±´"ZQiÙtKjYÙžax×äfÚÞ’VënEÛî¬hÀ¡=6æ'wËÌÅûåÍ›®ofï^ñù‡×¿3©M™†áÿ"|B!uUk¶xdBøE\iªFXÃÙVÎ9‹Yù<ý…Ïà‚MoØül+˦_¸­œÌà£Ä_Ç\ÚJáSÕ¸ö¬¬ñÅ »ç3ƒ¯Ö\V’M·ðEáß—\ˆªÅ÷ð½aÓ{ÇÂûŸŽyäÊà‹[ÜÓ ‹ó`úžB*y[{;ÖïÑ–%¸è +~|H€)›ÂÉ…QxàÐn¸¤?îü¶ê*lÆc¶í€ ÓàA×|¦ñ¹äJ¡ÇO°ÝË)^a”,XñYö–ä7sÃ=qËÞâýÏÓQ‚˜iÁ_Üc€à‰!tÑM–b°]3¿ƒ†’JÌ9ĶÜ2þïÅßS%>‹6›£ p«JHy,k³®š„¨K8QâIÁ#>sëKú« †GÔ×øq=€ŠÌŽ¤ãZÓ!*šMég÷†òu†16|fýQuJð†­x‹+o!2 †[À÷; ºM€ºÄ 7EöD~h¼>bƒOþE¢#Á'ã}ÂZ`Y.îg¬¶Ôr ®²Û_fYpZ*ŒÑ->Áð#!„ ÃÛŠ-|¾ÐkGnN,Ú,!#Bèã×ñ`iJ°˜=Xž6ÎL€À[S4o0äxi¹Ù݃{w#\$‘Ìþ4˜. 9´®†’Š+,’bñuÉ}…]àÉ´é™Òâµ?köRiàÙ>š#oÂÁŽbˆ üðHDÕ.V¦@ÂûÈg šØðÉëy*ù8C¬`L±IOÿ +×ïJO²»'± Æ@~ÆZb'ܳü38ÎïÖáØyWv®0emÑ ˆi×Vµu²ÀØt–ëŽgM»Ìô.pm QJ$·?X§SýÂÉñ“ÜfNù˜ÚŽY¨}¿žR|ëw±œS |€ˆô6e 2ωR=,»æLŒø·Ñy0u,(¦Øe±báG¡;)ª5-³z®3Àé²Â´Ð pÀÑêáëòj±þöðâí›·oëºv/_¾dd +UI0µ8ŸLåï6êŽ¢Ä +]¯é_OBØ¥ÖÅõ>OLq°½´:܉óVéSš*äÙf‰ÍŒ°ôÜÍé§;m××AJLéød.Dz•*j‹Ð´ s„ìpï„ĤÓÓ„ú;O€ÔbÝ;´pmCöDáS3‚uR/ÈÉ4ãFÜ˺N¹NQa¹ŸKL-wªD-Ë% ‡¸¤›†»&°­ÁB‹‘t$Ié ¢›Í+_‰PT0ªÖIáu˜ØmråM'^Ó6È¥†qIÈJ9g*&g2&ðüy|‚td@cø*ÆÃ$“„ì‹`7*:r$Û˜æÇØÆì²ÑrÛ÷ü?&”ý”#¾K9¦ ÊÝnyz•2 hîPFkRÖÄoó|ô²;\¡ -²ß#­6 MxÒÚOYEÔ2Ê’%eGŸCY ‡¦ìZ`ãaÀ@(ê˜û;t]S|ÊW>Þ—‘m7˜gÏô1ˆ OHº!ôW·7q^¸çŠBö3laÓ¢Õ.j˜ŠbìVÛØ+Q·S¢û¢]-”§¡¡ò#IªZôž ’E!êTˆûÊÐ>_†{ú>áŠN{À‰í&¢Ø³Ðݯb¡Ðå}©àÁÒtVpŽ*þÌ kp‡Áhc‚*w…JÀ<×Ý=wŒïvGpºˆ/·_ÆÉ®uŸ€¯Vÿ˜à´»‚s¾ò«|9ÂW—úÔT=3ˆ™1RþÃ3ÆÔÁTïQ&z(³(4²^F!ÔJ'ì`ÏS˜[lº[…®Üia½ ¹õŒ(ë2Î,f lO\ ÙŒœ+ûœ›Ô´I¥MׇL,µù1©ÑÊ®Ö#(ICb¦ÒØ)\oPù>Yé>S:³µGÔ7ÿˆPKRAnvF¬Ž‚zCAç”ç—-¾È·fD„'6$0ø¥<Ò"MFMÆ/¸íÏ'&0˜Î®â¢®•Y=8´¦ª•ƒt M'<ÒŽFë›kÎùba‹ ¡†›@^*ËÊøCñ‡×jg‹c?OQŸA8ðɦŸ(€ðØ ¤5ÄD1ªÕ `Šò¯[߉ٯ×ãccK/jïáŸÄ‘êA+!j¶é]+ÙÄ«†‘14bu»öö*Î^ƒÚÔuSÐ=Ë +È·X§Ô€€·šDC9U¡yvëu­Ók6½Û¬e—ŽlcE?qÕ ±É:0÷®»¥7 ­W$W¡´©D¿ Ò=ñ†y‚ð?ð Añ¼üøÄöe®¶e&ü5¦C¤b"%ΰpÝáÃn’®§É!JCíæo|Ž°»Z*äñºãȵ&×}ç:rC?Ž¸!-4çB÷š‹0n¢v6ðõ·9·”Ã%yá”Ñ9oSŠkrf@Jý)çšÌV NR”õD¯g\y¼ËW|cghƒØ‚sàË#w4,T¼¡ò=ålëÂbÕIºsÌÂ/a¶£åyéx¬ä$9$óR…u¨] |¨@ü˜=øÁ$"èr› ŒÌFº;k‹Y»SØî8-Ý„&Ñ ŒÔ슣H=Ò1¶ˆŠ?îŽ8@`ï I)À#ú€„¤8%/l +΢a¦ê¸! wÍ~ÃÔƒ¹_Ù4¨ £ñ30ˆP¾¹Fž(ÛqÌq(ë/áor üÉU˜@Ä“ ŸômB\RÞBª>ÿçÆcâ«<£Ø‹Kûõ9®Ä€{0€Þ'éÊÌkÖ{¼¼í±§Éº™ß Ñ}gš<È ®L®1á +aó¬4ƶ ?þ +‘\~¯~°þ5.@FÝ¡%b"f!|‰\—åˆDIö'½îgóJˆjŒ4Â3Eí;<°ÈÆF,ùàÚ‚GæhDlqDD¢§nÌžî¤[ÉÔe)MÜhi’§v¿4Ùfùòaá"2E“‰Ñ½Œ“~ ÍÐîO.n¢HrzYá­ ûÂ…nÚAôe–ÂéÖ_RH/>¢+ÞÙŸXiD<ØäÜ˃!L»,4 é!bà7œ²rÂ[rŒTTuðLKl£’>´ø´T®*ÔÝx¬ÉÖ¤ï‚P±íÜšÅt€Û[.ú(|t7Ä õä($BôþO"…1–yþˆBC—¬ž´hèq¼`Ç߸¤¸ÜD\P‘2*¡*Ŷß&M­ö -Zû×:M9÷ è–1 6ëѨ^žAÎâ€t  +ÈóÚöKá‡ÊÙ¥Ïg’$H—Šu¡)H/íÆë_ÜÚ®Ýì¨È…ÃÒ%U6¿zÏP¦ÍDõ3•^4¡‘Ö3[FUÎÉì(ˆ®¬IEw1Jÿ£½ÚvÛ8–à¯ì£îÎÞøè Ê€Ød=Ý­“ÖN¯?Ý]=3=»Kj%#/"E.gúR]U­©!üÖî0Þ ›ä¥‹äRÑý/¡ûô\Ïudÿ*wîŒþõ㔚‚\šxî#]52›SÕÈa2R÷Ú˜~xñJÓaô¾;/µ™CÇý:q«G Ù§mDeÉug›Wõ°C´æeìý¿á£ŽÄ0t?QSö«¥PµŽûÓ[¯G¶>[¬Â¢¡ä$ç’¶ÈÜ • Ò±ÖÊ)_‹ÉÖ•’žƒPÄøÜ[E—¨6ŸCÕïYû¹Ql–Û˜¬òÒ @ÔXí9µd±§ÛYì v«.)ÕEÙ¸Î4Å'b½“åË:rýìÄÌ>bØ¿:ðÒñò[“ãOçåeAÒ|+[MÅUÁj½îüqÕhþü®\“¿¨úMA,{\÷Ñ/N¼‡~ä‹¿ÊË/øîÔI?rÏ;ö7B1gºN¼õV)ú#—¿Ç 箕1<"s%‡JÝÙ õü¼ÐÚ‡Ÿ, çoô^böüò;¦ô-³”GØa76Ÿ©!q‚2÷üÙ.8Á§èO ©†#“‹þsÆ +¬WÔYepÅâ^v9^¯Šõ\ß|O“Toš¬oo +wþçþ[â½¹b]ÙÒÁ]wÜ.;؆¿A±JPìùŒ£Þ,ïźð­?î Á§àÛpço]üˆí}÷V æÝ k—ç­¤ÏK«Þ¯Ga{ ;5`&ZÔ‰ûÚ„+ؽç% æóÐ… '1l¾þ» Ä/¤¶SøVÄ_“wè8ÏNxø†ö¡ªRF¿àaj°Ž0+¤ý +tP? ª,ÉQqÿô7¢êéžÉ‰¨ˆãzöt ²6Ÿ—r‚ÌÕÀ©•!B A¢Åw_S`ê|CùXëݪƒàVyEåˆüö¶ÀÃ[¾æuæ&ê@éqN ÖN,FJi‡gŠº%^5u +Rò…ÃÓWÎN€óTõ¸­îÚ>qˆ=WPœòÞF5œ¼(UÍ–ÃCJS¬u)wOß{ÞÅÊ +BØbõwÁÔëî8–ZЫÀælðƒ–p­ûá…ƒ‡¡¥Ï{>ù‰<ÀŽ?<±A¤+EQ@XÍÿ~M`aPçî’xBQÜPkê+Èð$½p8EWÃŽTê§0+EdœyH1q3P~¹Yîaz¿œqÄÅ¿J½»W¯’z„Þ†$ [Sº2Àª—_•Çå³ ?9.æH°ÎI°}–M1¥·¡œ’ˆ´E. yJ^Bcè¾½íøjk/D¿ïø¬„ì&ª&õˆrì‹26wÐÊ„ö€}H“…齌£w†$1Õ €b7&QZÑ/y=$aë>J=3ÊJz±»ààeWØ\õ›-ïMúçú¸rÐ+CIžœæ.>únÆúbkNðaC‚,7½}óÃN£"å{ß«tŸ8Y¥ØNRØîSˆ?Ó+Û•„þ›kàFÐÞß%îZ ­$rÎŽ¯“_‹ YœÍØÂ/7 UGq¦,xçJHUÜ*ü.æ)Ûþ\8æôÐp'²ùøè0Òâ ¡.7 +#§S3ÌæÜá31°+HËXÆà§É¥ý“˜Z§\ôŒ÷Ú#)íó’r«Š›²ÃY/ñn‰T 1‘ˆWI,P–z; q!*TàÎð-½)Å{úŽ.†¸F×Ü¡£¤Õ±<Òa"—+@q®Üaõií;ê@q‘ÉêQ­-•N[Y>ÎB›ÍBõ£³ŽÌžŒ¥ZUÂôb¬r(ö ¥zúEH¨©  ã‰} AËÆà‰ò™jY ¾KOߨ +o8éäA|ZFoaéáYÏ&}¨ŒW¼¾•}°–©ñ ¤)båOOE*Àh +ܵ¾VÜ !&xˆ)_^Ç ®ãHij¼Äl!…’/#RR)¯\iÌš´,†pÎ&œh^êÿu%Ñ6Ç&zèçXÈ”Qw™ 8¹)R;úcýéó8½œAK•YÖµ¡†‰½Ké:b×|k¬Q=ò †tZ.ô¬‡T³Òr G±b€g¢„7®×¤qŠË¸Oá¬åPÙ¬GríÕBò›C.„z”¼Ôà þ§ áU;¸’½oàÎsxW ÕÿÒç=\±Zÿäö¿cœBŠrþÌ«¶‘>g׈|WhöFècw¿F}1äwú«‡[¼^«ÛߪÑ{¸¼Gu¿[±V%(K•‚ +®ƒ?` ípš¶‹Ql]‹Þ£šÚ¡§!n¯ÿJ >¹žÉæç/:9ŒN¤Ú3ìAX"Èò¤Þ•ÊŠŽ™/GAiP°Ä‚®=[P] &¢Bu«,ý«(‡ùßÇž?¢Þ€hAœôä¨øŽ‰fÙD¢ŠŽÑxÛ8Æûíg7á¹ÄæqÇ3“;È›}N9/ß~6ÕJ÷¤ù]CؾPûÏÿ\v¶ß»Y­«°Yñ»ý›UÙ5Æuœñ–T¼9á%ªã­{âGèäŒiœ +ÇcÞbÕõ£Š‚åKÔ¦~õU¶•¿3WBÖÔ¾LÛ,mìu)£ú:³ºÏ¬fV +õ'ddÝ#ÜR˜ˆª³RЦ,9T.îŠk ©\b¾o7bìÚèìi˜u9Ó¹nf纭+¿ 6ÁóÃß^À{Í£TÖ½‘ºÈv•±>ÆÊ$n«Mï…Jâð£0YYçE VDšaHeØÎX÷f¿qgÙ³³´¤•c;¸£àΚèà’O.…ÁRXñüð,fE3<›¸Íír=ñóæÊÜÄÍFŸï"Ë!Ó.‚ 53 äŒÇ~¾ÞÎ~ÀVˆŒ =þhö)`~íRí'„DӾƅ1>ë篊]¸iÕXq¥§Ú2é‡áAÕ YæЊ¿À‚9Î!‚NP<hðCcÈû9ÛÐbô05öq(Ùñlt‹°A×M÷®¸Mˆ5‘Hkæ´Êz¨ù>Že¾Ü ÈÔ…ª ûÆØ=àœïhÄÌf{Shl·ÀLôj)õZm¤LanOd«l¾ÒyhE"±)ñ4ÒÛ£"neÉ*6Öf¥s—ø˜¿ãÃsYŠ}/cT½ñùfÌóåùåhë¡mÝgff8JfJ{"²>C¤ÇôÖ_çÿ«Ô‰fÑÌ]Á„ß=én›$GV n26¨  ÑªÌA&N?jÙ8%ܵ¯è°² á¿©ÁEI +Œ#"dMŸÿäoƒx|6Kà³ñÆ&“é숗2™R×Lähîù{Þ÷r§…Ì7‰©ŠÐÚ-BÓíq2å!´Qé(]7§B¹@|á»K«£ªç…:ãǨݹyº)ž4ìÝ`õÌÁÕ ?—/ˆÿ`µ!` +endstream +endobj +74 0 obj +<< +/BaseFont /FLSPBI+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 176 0 R +/LastChar 133 +/Subtype /TrueType +/ToUnicode 177 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 320 218 0 +452 348 462 434 0 434 0 0 0 0 236 0 0 0 0 0 +0 0 574 650 726 536 500 0 0 348 0 0 0 0 0 0 +0 0 660 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 0 574 312 800 556 490 +528 0 378 396 340 546 508 762 462 518 442 0 0 0 0 0 +0 0 0 0 0 368] +>> +endobj +75 0 obj +<< +/BaseFont /JETIFA+MyriadPro-It +/Encoding /WinAnsiEncoding +/FirstChar 65 +/FontDescriptor 178 0 R +/LastChar 90 +/Subtype /Type1 +/ToUnicode 179 0 R +/Type /Font +/Widths [568 519 0 647 470 0 623 0 233 0 0 442 780 632 668 0 +0 523 466 474 0 0 0 0 0 523] +>> +endobj +76 0 obj +<< +/BaseFont /GXFQPG+MyriadPro-Light +/Encoding 180 0 R +/FirstChar 28 +/FontDescriptor 181 0 R +/LastChar 148 +/Subtype /Type1 +/ToUnicode 182 0 R +/Type /Font +/Widths [484 763 542 484 219 0 0 0 0 0 0 0 265 265 0 0 +174 298 174 351 488 488 488 488 488 488 488 488 488 488 174 174 +0 0 0 0 0 585 0 570 647 466 462 624 630 211 0 0 +448 778 638 671 502 0 505 464 465 626 509 820 0 0 0 265 +0 265 0 0 0 454 552 446 544 485 262 544 536 209 214 423 +212 819 536 532 552 542 295 373 309 531 452 722 429 440 403 0 +0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 +0 0 0 0 0 0 0 293 293] +>> +endobj +77 0 obj +<< +/Filter /FlateDecode +/Length 6040 +>> +stream +H‰¬WÙnÜF}×WÔc`R,‹ ð6†¶ƒ±;OQ0h-n·mµ”–dEùúÜ­.Ý¢&ƒ ¦š¬å.çž{îñóÝíæóêìVýôÓñ/êøÝêáêîVýüó‹W/ÕÑ‹åQ¡Š¼´þ­*«vë£ã7Ÿ +µ¾9:^šÿʨåç£:o`ü×äNcsÛºV•.w®†—G‹Z/¿½^½~§þ‡®áÿå»ã]êÕÕÑŽ +:"o‹ÿ…]pŸT«¦,r×vª2u^wV™.oKXqqô9¬©é­i\^ŒÖØ&o9§r-<“5­Ë«Ñ¢ªzÔ 8¤wPmòr´¬ÜwÎñ§ëÕ“ònµ]«ÅÅ6{óB¿ùö•²EÑOÂ<|ÃÌŸÙ)ò´jy¦2ùë^™Âg‹ÿ2¶ÎMSTæ6ï*WaÂ~[|Ô¥Z¼ÖÆå­Z¼Õ™Q‹:³9<—ðºÌáóÝà×ðÕæ•Z<×µÍkXðVÃÑjñ lÀm¿/ÿ’Ð/“ø…^”ì^ðsÚ‡¢†¬ƒ¹&q!kÑŒ‹6y§[ÝâãVÃ&¯Álx¬wð4è×J;´þVg%ºµAwáy¥³ÙºB-ÔF#Ì7ò“–Ãç/xÛá5ê÷Áþ¬7t ^w¦á²Š–YÜvsãן>ȉ÷:£_ Š‰g_ä;ŽgüÉe`AG+0/•X ¿/a!æé=LýkÉÝ ðבGlÉ + (ÙVµøãn£)`;Þ<ÛHd~à›-5øó».qùFW¹¥kØl Xz}°¦ÂMw°ºNmØ¢°ÿ\¶¯Wx|ó0Ve¯\GAT˜ÜVÎ1ˆn4'Úg¼d5!j¥ÉØ æ”,£0¬ ®5FÝ`,0×2zuÉ ®5á¾]!aïÂÈá'mØjÃ9Rx]A`;WñNË©*%õô3œb|›«p¥Å>Q²ÙJ_X°¤ÁdgRFòDØèrÍÍàjk¼êý±ôd˜÷ýð§ÆÜE0ÄXô Vê†|E&á™ÛFA¹@0u£hÀíhcˆMÇeEžœ=G6ÁÑ>ôÔ-Ä#PÐ5_¹Ã(™èN)±©%RE +_ˆ§ÂÆ +> ^*qàZøc‹¼¤bT —=§S}†ë¸p}.;ÿê¸$ä=SÁÊ/ŒÇ´ŒæŽY,~l’TÝbŸÄÃâ­Rxѹk¸€³,V”LV…e5BqÇUÄ}ÇÈÜJÅ$aŠÀô1U·ÊÇ‘Ap¡¤ìX šæ¡š„ø=y€ûå¤iìKÌ€ßÁdƒ5ú–ÅmRT×ÔxC +²’ZÌ- bøyäÜš#Ë.!“äð¹_8Üp¸.ÑZà øxB˜ÈT"è:fU…¼î£›ú)Ž”iP=ãKµ¤ÉöU‹\êP]8Be߆Ý%’­¨¬¬Â’nI–JfkC²pl¡ñŠªßZ…B¬øh¥¡ÁÒ|~:ê9é°eÒòC¯”èzM›c¤ Rfõ‰Sl^Ç45¸éþÑzKÐ:®¸^ÍX°%Ô‰uR%DKbØñåˆaÏo…  bŠn'¨Fp"F{ƒ0J$Òá>=ípU¢^Á%y|T' 2G‰¡|8ø×*Èt£*€=Öú öï2îÝIßðì"œ¾“*ötiÖ R1G2–™ßX CL ãf½FCjF8mplG ýº{IP;ýSMðìÏ ;m;!Ë6ñ. f |ÏÔIYZ>"R¤èÞ+u›¹ŠE¾'2±Ÿ=4Ý Ð¸®H”Á°ÍgVR™}äʸÀͲ ÷ÚöJÚDžQQ^ z—r½ZBn#âú…«‚ÕB5ȃ5£Çâu'…u}|o8ÌËa¬1&iH»ƒÐÉ ž ÖÔÓÂ"Ö”ˆ.9åA¥ +´Û<¡ƒ6i8©×È}³±cŠ9Øi ×=쌻s;‚vçö‰Ý¹Ãb#Y·gûe*J²0,µ±"w= d=?žc$”û%‚°ÿÕ:LÉp8l’*-|†wFéÅ!îÉZ­‡´Ù2 Tµm^®îa ³ü:ïìrÖÜkF-Ï?@®‹rÿ-Ë$»ÕžFЪ Jº’Û C0³ø¼Bk8+‘$ù®3¢,ð¹äöâ=6õxû¦æ]pmFˆ9‡ ¼¸FƒÀ0Ì +4’#à‚³ “†_¨%{ìôAÂåw¸Æ÷òBP1íõR%QRpÚŸB·ì´?˸ž“„ÙbÚZ^4VµÞºçš€uîƒ1/ü-ZÂe!uõ +¢»gb`rý¾À–Š´p&Á†/+-BR„1ƒñ/]‹  ãöù­ˆσØ,ÚdœÒZæ%©Ðƒ³#«mÁ]ô‰·ýzeJò ÕJ™â)´XõleZV§Â5£äWѱiˆñA·‡µ‰¤ðm"„T…õÔÐÀ3–ÑÆш׌[ñ“›j3CŸU]…Z_°ã³À‡ûáÝÐ!š†±Ü¡(xƒ¨ÆÍx埂Jœé˜jzmì’ÇÝÓÁlšN Ø~ÜÃ]ðdZ,¤aÒtpI3œàªIÁÌ¢2™¨VŠŠ³ß×x!Åá!C|ùt´sÐщzŸ¬ß©n^q7Ÿæ¡~2ùÆ-H€$ "i¬º”¼ò-*=¨?Fœõ§*Êíø­¡åwÞ,‘_†Êýë`—HxÈ~W3A<4jÇÝ£W<Íu”0’”}y¶ö¥tè&sFRœ¼ìÂó¿ËônB¦“v:¬×«ºNôúFRm£ÎÅDÔ·Mú½¥mçÃLíþ¢Ð$®¶|ÒýF<’vüz‡¡àH²†ê˜!h>úÁMvP¹>ðÖ•f½pL­8¸²©”ØÂq×—h^’ÈjæJV®-áZm5;àeñ$!PÙ.®Põ»„%¸ÿUSýï“.x^àš¦þ!Øðp’ò&†Š~?ù–T¼oDþÄq)妤ÁÓ\XKÜr½6\qíÔ'¼(³€LoÙTÓà‚÷0‚û©š åk¶æWÓ^`YxĘee!ZZIhWÃ`Ÿ¶AóL¯†Ûdìš s€Å«`ÑÕ]Ð:–_ç]Îé¥KôCÌw«‚_ÙÏÊ‹µ ”rÏÛB&Šroâ’ž .ÂÃ2…š„B q¶0c©ü¨Ô{MŒ³’N÷@%À§µü‡!žuêd©„„?„u _^²vÍ.;zgñ(§«¿i¯–í¸q#ú+ÜòSj€“Õœh3‹É§“l²±^¶'²¤´¤Iœ¯OÕ­PàC¢æ8»ÕMÔ­û@5SÝÂç5ÎÙÖ=FÈÕ#%…ÔµÇSªŽœqBaÜ1Ë'uÂV(F¥Ñ¥f@/Æ58îG[»,°  ^iK^é~$¯¸È+ì«ds€ ã>ßäý8’‘¬)DÞûP]Gzc,ÉáÒÀ‘Êùh<&΂ Èô k»-ÿÛ1¬p»]t ùÖQ˜Ëh×x¨*œ-g\˘€¨“ÉuïN73£ú†ñ59k§ÁØš³¦´fá×Ik:¹§{¨}pøa„I ÚfG“µ»æ`j>?©ºêx‹êi*Ÿ?9ÔÏýFùü!U‚™ƒ‹‹ µÌoã”ðÈ<Š¥È]k& †ž%Š¥…OÝD‰™4‚x§V­Ö5žö²/éä‡x>ó99«È»œuÝLy8Bo#výÄ65|CÑ-¼³S¨ú39Îe)%èEs…ñ±(‹-ÏŽ‹lw!`÷ {ŠµXq…¸QõMG’š—«ñÆ¿Ðr(qrÐÂ{÷LŽMzÐêh1¦«Ånß«Ë›ê%zÐ'~ÞÙÍ/ÙÒ§[MZ íÖb÷7i°.@Ê®8’¤v cÕÒ0d1þk»•Ž¤ëA§*”ÛwWËÍ?Ô³÷*6Ÿ™Xb¸ÀFÀß5SkË=»àk¢S]Ô-¶üÈ9.ˆ‰ì„}Fþþ3î-T|‚ º9^ÔVISr¡ÿfnBæ룪€®µo!ÿ’÷¿Qõ¸’ +òÑ‚Å¢ïAXå¯ó‹h„RŸªE;åì­9{ÝÁâ6ú$* r®¼‰Ý÷0òÖû3–€!¼m†©§Lœâ{Í’µžy¬=òÍ=]­E隃ڤ —uÃV‡~>cóÂgäžL¦¡ü?‹©YSµæŠÅ8ôZ/ 0ofÛŠ5ìà€¼yªøP¥¦ž´!†`iMvä"5óK„Ø-‚d[rŒ‡ËzŒÍžãgÁn³ÎwüÁC™_@Ž{³>ÃRi›Ý¨™Ê°ix¼]è Äìí¡d×o’­´¤ƒYID?ç†ûZ.è™]8œ>þZ9ðo?ó3ôů5Hž”?àʈxñâiì–—ïåÕ ƒ¿EîwY–´ÈîN`/ûŸ² ¶ØùEy⊠«­É²9`á?×ôÏßHÁ=˜­ÅieÔÂëXš ²ÝŸ®ä÷õÈÌ5^xKù š…”âµ~­ivþ;”ÈÇqÇtÃ܃ëÝXnÝ,°½Ë~æe[`öÓhüë‹QYfUUIÁb%ùâ7IQiÌm¥Zþd¡6NŒ)§PÏM½Öµ?ç1ì3_4\< +_?飉|'d:u"îçžiîÇ’Ó•gŽ„‰ÐÜ…ê«|û5Ýï%ÏÆ'Ô ö3jw$ùï¿ZÆ:¼×´ž™Àñ-ÝM²ñÆ&Cù¹pLÜsõ,Iôa¿‚·í dadcgœxÑîh¶7gÛLZâ–…>I«òú® rD0—oýÏŠ&÷H““ÃHÖ~Š†_Ã$×®Ý3¥Ë"Œ‹ò¤ª·%‰oÞãП³êZåð%{´ãºö¡Â‡¾zVª{dH¾ïö÷ã®›áÎù-Ü “5fíýæ_äkéºMR£5zþIšž’X•…XŸ ë£¨„÷Ó§×qè‹£D¶Ú Ð^}2†DEÁïÜÉÆ.[XÈ©8R® Ïi/¬—/Ãµß já|Fù›4öïm žÅG-ÉÚí!ëý sn0ô&»ü_Å€ÙHœµÀ¨åŸ¾W—7Ë”+îß@L66ª—|Éày™¥ºäUãœÄ€E- Eµo•¯É+öÌK’4aŽm°±¼œ"ž ”Ö]}„²W‹Eé„Z£çö˜¼[ænÆ߯~¯P¯*ý°´Î™LBôÒÊ j¨ +ßÈ5`/_ù^Yd„ëÂI苧³ý•¦Òóã‘ŠªŽ·¨¹%(™IEó×ög‡¾­<µl>?ÖâþY…ø‚¶ãÀGq`>’ÄAÀG¯ I +ý Ö•´¨œ €ö+fÉ¿nUÅ­NJX«|P ÉèXú~ƒÏ8Ê€ào«…Ñ™û!Ì*}ñíÒ²;ô:¯ö¶Yî×fNÏ&l/ºƒÅ1ÔVlqÓÄö1¡c§¿‚Fõ˜q΄Q!wÜN}½š™GåŸâj´óùâ^Óä…¥Ý4´ÝŠ¡M¡ò²–뀟ܪ»lž,ú`åz‰Éè*…k’ûMq$Ë4“¼9cŽ¦«hu¾,çkwû]Iãð:ʱ¶õÄ›Çßö-ígÈÚ’k7ã mƒÂ®Ä‘tͽo#õÖÝšØÀf3›¨d'Î,„ד‰rÁ¸¸*ï)M»b“5Zc“\׎\8qÑ+•ðBe-ËJsœ F+µó5¹tj«çeÞ»'â„ÃYϪ_ègÕîºí¾ó½hÀ'C¿ù¤jZl’ªcGWè{7²Û=È6Ð{²»Ùí°‡ƒñ¡ÛŠ/ÝkŠƒ4ã4Í †ÄëJàûg nåãÇ2ÇÆ8¢œbð:‡¥ ˆZÁH }®Påy=!›IÊàÉ+{¤/“6ì4F‡V’wÝád oHh9)NîÒ¸ÅéÒPÅ1:¶üƒ-Hø¹J¢Éf\1Ãí}Q‹VÒnT2¼RÉ~œ†y¾ÙTàÐã÷ÖQ³\ÞˆêöFu>½àg…Èãá³ê(5Â¥KÒ뎳§Ñ&C¸¾¯¹–,\¥s«vμø,þ\Ï ÑFÜèÁ°•ï…ëâXäÖ`*–JœêJWé²™4¦GÌ +N’†{M@®rËpN¯Î0—‹°2þûñÔ—ä4n¡©óÆÒ¯62‚&j‰â£J§•£~â©õÑÍ/&zû£|­•½N²EºÊˆ§ßY‹8«~eûÖš]nx~¼$­“IöüÜ©îQÕ‡¹!Mèð†tmý{Ñ–fiΙõ!ÖéW~?^†™˜mÒAݹ/å™ÕnËšùùK2=bV®Ä’?Ð…Á£:\”ŒŽ¹†4â>ðßëvàGÉÙ´> +stream +H‰¬WkoÜÆý¾¿b>j€âÌ3d°­Ôpa'i¼i?ÔE¡çʱõÈ®dWýõ½y’\‰r ÃÒŠKïãÜsÎ=|±½ûxq|z'¾ÿþðgqøöøáæþNüðÃË£Wbõr½jDSkÓÁ϶5b»Y¾~߈Ínu¸Vÿj„ë‹•­Üÿ\݉vpuo[+tWw…®VN®_ý¸^ýøNýÝÀÿõÛÃ?_5âèfõ×ÕáûÛãkŒáíñõFœ_W¯_ÊÃw¯Þ Óé2¯ý„(dí㨚º1b} +Á*¾ +¥kŽŒ>¨ÆÕNÙN8Ý×Ã0XŒíod¥mÝŠƒk©†zwnW…¤Ëø¾Á[©éú±Tmy_ž‰#©áOþù«¸•¦¶øÔ€7ÝÈJÕNœJÕ@,áðìðGƒw†KBþsý—X®GKc²Ò@!¢á"4}GEP\%tk릃>–8†ÐƸ=W²j9GÈÂ=“ÊÕ^+4oÅT]Ý‹ƒ q&«“ù'@äø§Ãß–óÑøèö\V^¾†ÂPÝ„¬(áS(œÆÒ ø×Õ‰„ñ,(3µ³Š­ –û`ñˆ¤ÃçZ¼÷A¨¨³Ži‰vÀ†Þ…›/}#\ÛxÃ}ÒUÉg¯u¦bȉ¨ˆÜž±,‹1#ôù)&,¼ƒo ÊðD‡¡Œ«îðÌÅàS"S8Èdê˃·1]×ÏÏ€ÐPBÈØ=r`¸"„~òAÌ?Á«Y÷O}!‘#º‚ðiª9°(B¤w\ðÔÝqj÷„ å M`ÅÊpjìi¬Jœãh?îwÓ&±/<æfœ`¥[ÿ›“^ô…‚c&Qç>4|ÐZIºtäï>IƒÃ_ï2~ áøL祇 +¹Ï`fcAŒ^ÍÆBk1 Ãã¹4¶Ù¯y0ËŒn7qêå•€`IFÄ€¿2R xB4O¸t+éÖ>b©ÆêÃÖ#ëM0±ßªô#«bÇVÅF6:ã>êĘ½žö™ÿG—§xŸ¿\ŒUÒ‹k÷ ¥5™ÍžTž,k‰…¥§±ÛcYíŒeÕcËJÌÙ÷Hao‚:…ÉÛçq+ªþŒö mÂŽÂn=ÀÑ–¥¶ÔÏ>Gôh,@õ°1¹$B 6­e;çíZ´R¸€‘»â‰¸[øÅ@Ò lvŽ¢å6ÛšÒf·ÃŒê!³ÙÏ_Á÷jöJâ:ŒE³¤o’z–½1½(rDç^ôu¦Œc_èd»0±f‘v’HP z§Ø„u™®àÍðá?bßà|¶ÉzcÏ%(ñÿÀÞçÃo3¿Íy÷ÊI#À«ã=f¾g°Y[²Yïö @n2훌 V20ÿû‚fž mà‡Ù5xÒ+ ¯ýÜæõÎaÅb#gLsî\Á󽟸7ñwxÔáµøÄõ;£g… +C܈ ?^säŠÚ£|Å9-Î ‡ž[K¦Â1O«ûÀËbðtK,CÎ3Ì–¸Ôû¬Q™‰¬¶áSdU­;"ó9ÊO`Øîü"éI“Ø=ˆlJ©ˆQ8muÄdî²M¤¤™X"•Ø“5 †ž×“‹rQéÆ >Øf-q„ Ï‚¾5ÅvÈmý•Þ[[¿¬œ–¨ìê$ñœæÁÌÃŒ›+{ä¤"^Ø—ÎP1Š®·™Q²<Îími—{%ÉÄp扢}3ò…æBÌ+ŒgLÝŒ—Ίðj<ð IzÍ'ó‘ž9%ü$ÿÈK—Ö'SCÂÿdDflUÒ$ÈÍåìòDdS.ÙB*ŠU×?xðÌËdŸXd5¿ñfë¯,‡KÿôR×9Ùô[4E˧ûJD¯áŒÖ@·×äÌMå2«@Î$ô;›˜%Ô>·$íL~¹ûF¿ì21O`â)YÞ€¡hµéàg۱ݬ_¿oÄf· Ð4Àï§Â€>Yî“M}Ò“Î(î“ÁÔ†‚Óë ³Øµä¢#"…S†h$¤¦ÒÝûÉ>%<öþÆš¬!·éæŠ%úŸ¼8U×”XƒdÊDÔ‘´¶HÎ_¨‡.ß:gªËV«³&°:²gšíØMtdüV)Þ{Ø¿³B]£¼)e"tü<ã H6lÍ®d¸wôøºñØh^y(À9ñÎG†ñ5¶¦M÷yÛб„Õ,òì,‡a—(œO‡'/Çe¾UUì>mž.²Ðt¢‹w¹3‘M±ÇB’@ò ÔæOp2ŸàI·ØI†ç&§#>$Ubbú{ÇoFLÚ±à(DƒàÕ*{žÈêÌOBÆ6Ü%HsÖ¯ù²½ª# jÁ$ò‹¯ArÀÅÝ“¬¯#.õ‹CZÞ¦öʧP ?ok|tâçŽg¸2Úö¸š~«½¾/†›]BƒÔžAƒn„dµ[øy0ü´Ë¨h½ßŽ +³;Ýk²‡ƒU´j$V͹‰¦û öß%²cÐÆÎÌËpÐò*–'ߊ RY¢™šH#ùÜàœw +îQ§Äcü’Ù ¯|í•7Îq>cÈ*ÇlÂxŸa„Œ[É-Gb?‚‹1{àiô‘øFÎ*˜¢1†p"Ãïå»ÄI=+”OÄ芺JI{›ƒâXà’§ÙX?Óöõ3´¥~´H˜‰! iÞÃã2¹%àš^œƒqO?жŽaÐÔüŠh=ÝŽéÞz†ï6´sõõg˜‹®Ó878ÈœU´‚Ë4”ö«ïöà°’l|²Fç’Êrá]ê„Z¢Ï‰mæûí5‚T–ÙS©NÙì‚i?këWèàd¢o$1ä„Bƒ{ßf½T:÷7Ò„Æë\¼>ÈŽæ ÒhàbñÑ0 Ïk908ã½0R«Ô²£G”ìz,y“üþ\LñØo°‹E/FKßìÀˆ”FgF}ʧ¿ !¾AHº5…üAÊ–†©~FìªDzëÊøUãj§lwö™W\cx™ªþ†-„ ?ÁˆB ZkÙ{\-±ï£nè™ndæ[bß‘Ð[Okž¶$±¡ARzG«QŒã®3kîüèœK/Þ‘FC—V)¿ÜB¬*Yƒh¿(^ÊjlÿÊ©$¶ÃJ0Anò›mv¼¦Ïè3À Ÿ2¬¦™ÓÊÈ!xÑ ãÆNüôÔœŒ†Þû_Ö«¥InÛÿ…*ÍŠx’tN²’JÙ*­ròæàq­mÉZÅÙ•¬¬}Ð œá(¹h´3$Ý_HŸ: ªrû/X)é©+˜œ‡hÙÐŽ!°˜¦÷ÅœT–ÐqjFõþ +ááW €¾+¤<^‘³pðð¶û±¿]®³;~ÚèY2ßÕîü•f¥ÎHq·YÚ{~YéÔ—š¾íÍ‚B{ª9à7êlC.ÈSþáÉ•šzƒ}|®òÙ3Ò–pø9 <Ó#¾ìHj† =ŽØ_Ôµžp¢ðÕ´¿…N¥íØF|˜-FZ¯3 k1ƒ¾x¤Ô€|üt¥ß°ÉZF(tÂØ2ýùw¾ðH¤`å.¤ã›¤ØÏQêjA‘i“hfÖoÞw?Î|«nÜ€Y +aÒ ± ¿„¦L«S —TßãØ9ºgG ¡·uaéuÇ‘EzñpKé÷l&^j‹èx pN/|-rÑÒpÿM»™Ü‘­¥R6[c´Ç5º¦Ö·Á)]7åSÓµFOÈè›Õ& +\Ç)¸çèPE&«JV68EëQo¤_ß ƒ°­~ž®†8Ûi^¿Ý·tlf@^V–F§º¨ZLÌIAܹd iláëi.ÈèY üŒžYy×·I×ÁÄIµžª–BIc&êÅYøȸ:qÞãߨp&ØãûŠ!‘€Ø#å ‹ÂsL)¯!BÈk,3Ä ózw¶´¾Ërè@JÆ(õS¬ŠLPÚé<Ý ãÁ~¨Ž2º¸(hC¡¬%Å‹yå›4²P¾ 8FËbU†f7 Žu¹U¯Ë±7€Ë¨(ܶ3HœÅWȧ–±f#"fùЫ«]Éi—;§~ÒhWhŒ€î®zqi+KèÉKÜjDÓÏ€ÁŸ]Ò-FÎpKà„!.¾ýò¤7µJhͬ'Lrað·ЊÑÊÚ-c_QoföôLzö‘ YX˜>W/HÍhÝ‚8ZBø$ÝCEC8š˜âV>7€eÓÁœÒœU/§1õ™2/z®Ç*õæ4 G¬r"‰[@­F·±¸ç´: H»W,~Ýd?ÔæóYÌN“ðõ‹¹Ó~†#£±÷™ˆ†“¥Ìì ­¡\€ï¿«#H0u•ëî™}–^RMýN–J’ƒ‰ë#|/Ñ—û,fH„á{¥öWzÚ¡Nlªm†dãM ÊŽ^øÛ×"×ìÊ>b™Ìº1Á +êÂn}ä:皟k‹ÐJa†óènlJ²+æF°¬J2pàEŒèeŠ°ÏKé|Q¹…) ³õ™ØÒU(ç<Àg&èôËíÝ‘ç¦ßš ¾Î¯Žœ—þ¸f‡·•ýßïmÓ‹ ¼ü´1ÌqÞöžEš´÷ÿŠ IB¾¥¸Â.¾øLf92{Ћõú„E‰kh1¹Ãã>I“JŸç-„*ãºÄÁ+ ºÕøíõ™†ñ¼ŸÖÅŸ—ø‡¶3ù’‚ÓJ]¡Sô÷wðóEèܸiLÇt‰yéÄS½†“Vþ9¸ÿØßG·1àÑ·xŒ~> +k,}³yø"11”!ŠjÝߪ›':`¸mÈaRKóÚ’ƒcrˆ=9Hj¸¯&ý³Ð¬FÎôҧ|¦#žÜ¦Ãa£v®n/¥¡\SCíåPÛ#ÝNíxù=­…¥Ó'mQ(ìbô»Åf©RÕÿ =ª¸åH4h‡U3©ÀPV'û'×ÿF“NIvÃt™óc% ½P‹b(ÙÔ»$”;ÐßÖŠÀ*üvžmg{\³80 f-¸Ü¸Uiß6bg£ZìBQúLKÿ®ŽÙ× ¾ÏùòЈù{%²s²kÌjµn[ZDÝýð‰-ù¸°ŸÔêêl‹„ ³ÿ«³ú¢Â +Ó#¸œŸþ FÞuñÀº…c3ðšdCÝXª6þðêú¡>ȸáZ†ÝXššÉ6æVn•çžÂƒgo çu-®ž»Ž‘´¼à• hÜÓ‰‚$eqNŒ—2¦r2U»Ñ5îQM­ TsK¹f¹ƒ!AÌ–ôÌÌ/ø]Š6hwu籡]w\ä+õ­vÃ>¨†›CR:/D'£)mFË#Õ#£Q&Ô•àÃfã©Äu˜ Y•‘Sª¯{›À6×–QQòJ9~¾1«<1¸¼NIEÞ1;¡§¹fvjSø‘el¥níG輡B»ê‡.ÆZ·P3Íà ¿PŠ}ÃEû)ñ…E²­âÄÜ”zbÇ,G[Ü*"'Jc ¤‡P^\×dœ‹9ÏÅ´5lñEŠv +‘øÀ¼ëU”©òñŽj…Í®æôN°³Æ¾“àþ§šiL—Ú †BQÞ +ìöH¬x¾TQ ,Öašê;çñµµ2¼C—sHC¨+Ã.p÷i'RB:8Ù 8b‚Í1!›0ËΗ¬lç(ŠÎ!0Z‹¯?]8 ði¶Õe‚ wí6½‘ð0OÍð[œ ?ä<ü6Ûp¶ ãq& 0V:–\Ö(”Úº$‡Ýþ©”-/ŸIÉ»M–žéqa…ü—…±É_ÃÏ>]ªÝ+–›ÎÒÑï3g•DFËfqäå?hÔ˜üÖñVÂ{×`åj”½¡ +ˆóa +yÃ¥ ¹÷5XR-ÖŒ-#hŠ¬n¯E ÝÛR<õQÏ{°´9~›€ÂxÁ%Ã$aóDív^¡¥õ t¶‰Üæ¥ꌷÅ_KòÜôʼnŸÓŸêÉ—{_sW—™N}SI¥qëÈ«GVñr`õ5ðVã^%ôenÌÇË*í 0ÛÖêEB= ל§¦"uóD»îz ƒ2Á¨ÆàUwŠéÇ­=ÎÍ•zM6XVaõ½šÁ’åؽØz©ÔÖu€€z€ì˜zr£ÙíH²ÎV=²¿b8‚}Jÿ{\é|5M<†ÂÝW‰È[v ˜zWÇòépË?ª!–±„X½‡ž#S–¹æC3ÿü +hn_Fch°ÏËZ(VzoЈ&§Ññ ê9èXøêó¹ÈH8?&ñ¤ã×pñhø‹øiÜ‘ %@.H†Sgå·DsðÂÊŸžfó›f~ï?©vˆ@M`c*þj˜2´]ZÇ KlCóq郪ÓSéØŽíÛc>vìŽ š¥ +}Ch7øàO´ìíÒ2?ÀR¦‰j€•/ù¤¹« °écšTRƒ„k ²K×쓱[é—Êè˜Q]˜'÷£sÞ£ž?­zþW€5ÅÄ@ +endstream +endobj +79 0 obj +<< +/Filter /FlateDecode +/Length 6322 +>> +stream +H‰¼WkoÛÈýî_15€Is^|A€Mœ-²h7Ñ·MQزüØØ’+)vÝ_ßû˜)J!E±ÈJ‡3wî=÷œsÏ~Ùìî®/;ñöíÙßÅÙç‹—õx÷îýùqò~~Rˆ"×ÆÁÿ­5bssröék!n¶'gsõ¯B(1¿>)ó +ÀUî„R&7µ«…v¹s%,x8™ÕrþÇÉÇùÉÇ_a×æ7ðoþùì/…8_Ÿüvröõñb…1|¾X݈Ùr•}z/Ï~ýð×saUÑGà±ß1ÅÌ}Y‘ZÌlᬘ?C0¼\µaUºÎ›¦)1®ßg×R)z¶–ÜBÌ2ƒ”˜ý€/~ÙÊÌáçRf:×bv%ÖÒæFÌVbkê¼³[Yæ ,R¹ÜŠÙ–hܵÁM$,³øg‰«á5]à—;ü÷®ñõZÌ®a#Z±”tæ…ÿ}ÁÛ.¥Ãk܇#µ¸Í=nÇŠ?$Äî:—€[Á+;qb^Ážx›;ØEãâ•äµ‚?略xhºI6\çI…ç-äHá“$‹ ­ãç23t8ÝÛu8ü„-¾ž‹¯0XoÛqD ~ÞáMéÞª¦]=+0Ê‹P¸{øBÉÐ +ƒ| KÜóÔßÔâMáYY>¦Âo(3 +‹§è6R—X\æÀº_òŸó¿ETE°ê z‰*¢ó#€€Ï¥¡ +| I!ÄàEšQˆÍ`j æõR6X>.c{ Î9 ·¡šy»ƘhÊ ·ÄrhÖ=&¶Z>ô +˜ÄÑ`\mæ~Št.øf|*õ(rú 95”ãF(ˆDN‰²ÑyÑ8JñÛ¢(Ì»„›Žm’£ã¶¡r½mk;z[;’Þ€ÕꦇSæEi:‡ÿ>û*¡z5Â&#¼J–ðYB51ý¹tDDJÚýf’],„¦Zæ5̼ÊÔ#r +E‰_Tí€tµÞ ”ˆäN6¾¡FÔŸ™v¾áá‹A˜Ø#ø\@·k¢@^A8CØ#cAÇ ¤j††Û»Fl^Im˜Š Ï‘Ë°œö$þиý\áѺfn«p› BÞbgüuÞ^ÃßÈMáµ'\G­¨¸Í$¥¦µïC&a +îP0+ Ú"M÷ïÄÌx/-«æ@‘44Éê+ÜÞ F²’uÛn )zj¹‰•fÁ#Þn7Å$²+ˆ$[¯ÉÚ # ¸ÈF`,}>@bå%¤ýÅýŒÚc‘²4?:¡¼¨ñ=:Öj"›´äÝh¼E^)¯â•ú(¯t·À+ÍÛD%¢..0LÆÃHªWŸg Ëz„Mà]äW  ¨QÆöÂ|O= Ac×ÀÚèQƒrEÃmÈ8ù…[îä%Ýç¥ÀJöÿÃJ‘/ñG<3x!Maײ–í¼ DƒÇEZ ´œTJ€òס ¯öžbÃk d;â>Ç={\lñÓöòÝ2SÂqx6„,; Þë–:=¬Él•š€/Õ#©²<ÂM “6‚ª‚ˆñj_?²ú”à'©;|½!—JpÈn{qæsòÞšR/9£s2¤ˆ"&}/ LÓÚN"óN\^Dˆh UÛS›ö——%á%"• +ÑÍT-ë|D™ŒrJ°¿Aþ®:ë[€ÿzi[´6Rb“žf@ÌÐS-å€Ds z¥_#ú¸¹ìn;^ôsiQrøõ×H>5f\­V²RX)tÿS[YTjÈV¹1{!ÎeY3L œß1¾0×hÇŒ¡Þb†ÈÑÇŒÎhì9¢¤ç´ox˜Ù؇8M}Ó…‹}¦<ËêN+7Ìð{DòÈ]²a;¼öÓÖ-EEº£ˆå.¥åÎðœ¶i­fÅT1@1­qô2{Ç'$¦h…·k3pèŒÐÐðZƒ¿L¨yß'Bצ`€V;7DHre’³|%¼7&ù¸”EˆÚvJai=©P¦Òx|Öà+˜.H7K,O"T•E ¥(×9p¯f-þ²Ô9 •,BžpxK¥£²±å·•àí++êFV^¦);Ñ\B*êXkª +ž)3J©A›½¦¼ ]s~E™Œ6Z¶XudŽÚGP¾t¢¡¤|îàœ()¦ ¢Tw1•ž}Šv5PBÓ ¥à |E`¦c3_áÇ©.Ãß0Ì°t+©lÌ-kþ T˜çª-ROåm§¥¹Œr)Î¥&œ£×‡7¿`®Ø‘@¶”·wÌ5@•æQÜž)†nG»d{D¬dpóKÉgyÖ¥b¾õDdÈ©¼ŸÙf¢Ü+ÁÃÕU5YäMqLä{ÛŽy£FŠüp’3‡´ÝIc¸®äö¶4MÐv£kûþ$ChÝ‹ì# £ñ˜ñõÕÖ3á<‚åÖs=J÷gˆ"2Kã]m:.õDZ`'Ä3Î ©ßî«B…ûäÄ¡õ5æ5Þ¶‡xá,È«o¾»íÀ»‘€'[a‡mmzúAèÓ AnV#©iÈ/#¿Àð±/lÐea{Æèx7»Ó^ûþ5"q°k‚l¹¡®yòýD`¯¼“¨»ófjŸ”·)D1¥úm¶†é¶Æ{Cr’¶­wÔ¤úÛÄë‘ãV(2ã%næWQf€€·§ô\Õ3¶Usؼ8cò"Öxà6¢K§]ó'\PÏ(ê¸ +ÉxÄzHò¯­µK¨M5‰u…²öl¯ëÍÛÞ+öÆWÅïšÅ?ÊN"‘f¿Ãÿ{b¢b$£9òTÄù küìHŠ…l á•VÖ¸T'Ìì'+ö´,™ßÌ¥Â$q¯‡¤´`'Óz˜ñ,=öI4òÃbPEŠÔ==õk›ìñ¾QÄׯâíæ(ow·ÏÛ¶ÉÛHÛåÚNÿ mÄKß(x۪㼴íZº†´«^Ú;ÖÅ3Í ÉJæa)â/+üâ[]Q«óŠt4Ó±¸’6oÚݱefc¾Þk0Óm¯Ø\]* +‘¢ Š´Ô„y†<^úÃqÔñÄúist¯$B‡ºnoSǵm¼ßêÇb]gÝ0}u«ê ¢¢.šNUa~ yÓ[yá´vP +`Ȉ +Yú¬ú¤²âîX˜îžú¬ œ &+VÀŠhfÈYÞa3&2RêñÌdíá‘_6à kk€} ´Fw™³Ü•°îâ7™‘¥ýqŒZ‘ØPe7í›é*L£ £ˆ…¢4ãùÂË ˆ‚€H +Ù,‘Îu{v»ÿφÜàÔCûªšçZnO®†"±{_Psic’»'ŠŽò>ŒÏgì·™t4õþ"ÆçgÒRù*¯ JÖ$ªg²¤´4t+áG#m‰‹Oü\c6”ß—¨0Л°pùp Í‚ß6ð +¥@®lð¤Ò"SŠ÷tSººUA2lYåUÁ#r³N +¸Á±]!:Ï…’…mað„\IŸ+ô°”5žj¸!žß±çUÝ’5¡BÜzŠ+Å7­lpÄŠ¥Ç ¦î#Æ@ ÑÚ3¢Ù1l¯9;oDü˜Q36ôØáƒk¹Ì7Á.U¡a!Îç\íØU-Dl\f0nÈØt¢„UǼåÓ^ +B0ÛxK}èšÚÐ[¾¸ϽA—Ùx8¥`FfÅÌŽSÙ¥ãHÈÂVR M`áÔ’# ÷ÍEÄ©)‰8]³y{”Ez³ˆÕpo7‚ÏumþQ´+o¯ÀG°ˆŽ‡Hošä»mƒø¡iª¥D.ºO0(“€"TñÊsed+]f‹ûxŸÁÈÈýjjÎ@Þ€>g‹dÄs_™ë¤[=X6›Ø°C²E{öäW-Ê\lc} I¯õ­¯LqØg-¾‡v߀.§èÀèÜ(¾îÆÍ,[…ÂOe¹Uþ¢<ó$]÷ —b…~©z&]Ü‚À`ÅÆlL.aŽôÉ nVBœ²å)ºfBG=Y$ÛñEd øm>¸Q™àý.ÅqžxûkæüN¿:¡!m ¢À9î¹°ö6þ‚\2ž;اeð¼,¤V“§…ô“Âò€^ÄŽBx½ã#¬¸*Œ» +rÑQ]• F…CüÙ ý®:F{È(ÍžC#9§–:Ëø¼R„µ¯Í- Õ·e©\ ÏÉØV®…ò5m—/¦Ø• øv«Ab +šA%LŠõJ8t ÍX ç¢n¶"Y„âaþ¢Ê{¿¶<0‚qتËࢵhL:ê3ÇÓÁR¬j¾(kÅXp—9·ÐÞªÃÿ¿¬½‰ ,Ú+¹ ÁõÑ×%xõ©hŸa0§‹¯úš,ÚATÑfO¬IÝ­õÒ˜rå×c°O‰Ê™üe”LFøú˜ÉRÆÜv*ˆYâ] Ü<€æV¤–ë’Š6f¤xân®Xq°ØêS;Îè¿Âÿ ?ŠýôÏ©nïš"“jhO€''#Ï+£-/LÍŠ†3º6Є'ú%2íô£¹"Ãí%ÐW‰'k‘cáªN=±ƒý»U3’wZË.“\úù2D ^Ì ìßJo¹5f% ÀìÀc]†ÉvKF5ó˜ä n÷È‘+ ¡^Sù%OóüÃ$[÷Ýás šêŸÝ>%n›³b&ñÉ3´©{yf–œâ‰cì+ñ™6œ¨Ò{ OêiZVûhFñfðñX ô™Ë´–±l& xaK¢`–EÁ“ÀzÔö©>vDu:`ª³ïZ>3u"Š!ß°ìø^DAlÞÁÈÒ?Ñ%NÞ%ÚÿŸK´¯é±iÆ¥ÄB噳Ý;º Ð0³WHöpCô‡›™dSê +$³F”ñôhô²Ó\\)va5¼†‚uˆÚ]‰­ÑfŒØwtÚI„”9M´²…Ù N×eèá} ÈC&ºåQžü4©Œ ´”ƒû‹ÌTr„Ð#ÍmÜÏبÿ(䊇<Ö °»&;ùÕ­¥P èh‰x©÷^Í°+£ø™Ëutg(óî°‡ph÷ÎÞEŽŸ(ºyTá¬1¢¹L`|^ µÌ˜!ª ï3zEË¡jõ¤ZN³\-X¢?Iô<_ï`Ç„ª 6ô":|V‰,x½ÌŠfŽÿ•?€G:Ñ +Xä.]/‹“A8u”¯äë£êð]âÒ¹Ôø‰€^4GÞ?;Íñ8¬{å3,ÓùÚ„0ÛC4ª÷["b‘Jã’{QÝO´êñ—Ñq#ÎÁÛÆ=Âf¸{Ò+\uR=NÖ±RCK€/Õ?ªTŽ­Pÿÿ i÷™"†÷6do¯wÒ”êì0-!©oEžØBèàdn#„`Ä~kl(­yibãƒ(ý +ÜeæªR ”ø •×„FOŸ¡Gúú`¸¥.–&k·vŽ»¶]-·ÍÊm·—û=e`y/×_+|ܰƼÝOsŠ'3,á Šðô‰M{4ï4ÆWe ‹Žì«õ€ 9P`$ÚðK¤¥ëå\>¥† §üÁ,ÿܨs:° 6ôKÿ‡¢ƒéâщ© ¥ÕªE]?äðáÊC/ØW*\ð:Mš“ÕXÛ5&Màh½Iu +Ó)¦Î%háÑ–Ü4H4FÎx÷ŠØ9‰‘C¢w:›ê%VŠFÇÙ=uŸ'ÆÅ÷Æ@û½ŸÄ#Ú„4´¼ìoضP<)ýmÈdÞs<‰× +Y¡Dsâ-ïùH‹Ù#ç*3Z3%eZšß_¿:å4¾€¿@>àøC_þZÏ•£IMœ@¨çQ…ÈÙd› ‚8ßtX7{\‚ %™yaü5ô닲RrWÃ¥[A‡*;Ða¿Ò:*y" †Áù]Wð}—\1Þ;Ž€N¨]Òžš³_^ÏÍb¢æ$M¬8©eNI‰ýUp.¡²‘½LåW§;ý‚K–m)>¹¶ÍÀ³1d1ižð‚[ŒÖz`õKè±3dˆ‘ÐSŸQCgªOè‹hAQj€û¬ÌLxÛ¸Ì7§œ90g‚ 4‡ðÃ:ó®ñX÷U¨½6…Jãæ½ëT1n@5®ßôôU¨›IXû+›É³ët¹ØzÔØ”sÚy 5à ’¶ =%ß¼¹4lxÕ†í1{8IðF»& +VxBç¨ç6†CEžb¾©®‡†|ãÒíFç6ÂãSö;‚ˆxΰ2—•îݨ®ú¥Ï|ŸÕ%°ûà8|®%Ø‚Ú©ºU«@z=ÒÆ”ŸÚE~êµ0ûÞ&5·<]wª—~;h Ù0`mJn¹~°€I¾ Ž±ìL0üj.ϧ$‰-zòåÁGs.3ÔGvkX ÑY6±YòéÝ8Ç 4âtc“©tT"ê—Ê¢Dúìí·ºþw!o‹ÔÔ¡éxˆ»ŒïIÀé`«—àá`mxQØ x PB)ɽãîxKµŽ ä„çàVá¯&j:5ñÀŠ†Þà%ÛȬÐÅ[ è7Çè# M”;3\èX¨è'K\{?ôàö:LSG +™ë#5\†‡~TÝÀç`’£¿oÕ§Uz•' K°bæTºÜ$. ÆQø˜ F Z½nŠ€›6ûùá)ò^äqù}/ÚÐ!v³äåzðd¿$ô¬\i†+-º¶<P Ó“ä/uFwòô-‡<…Añè$ˆÏtwáÔðѵ/*Ø59Ul†ç øžÄ®Ãhuø÷£[y¤PRPu묊³­ÑÔ¦ šÍˆæI˜æ‚uî[HT¢IRaž9þ/¿~˜YÕÒÂÏë ©2V4Öš>— áø!žÚÂWa0Óãw)E£&˹¹îÑ åZº%Ì“ì:¢ƒlPÈ‚‡âi‰žê©)Ï¢l²· ó<:9ƒÿ_F;—&,^–]a5~ÚnZÂmjS/œvåÐ §(Ô4:ÌIÎÊdR‹œ0݃«ѽú"yʦ¸ŽS€_óIéNº\¸üô%ô¬A=2°uô6ãÉ_¨27ÜX”N(·d-1≯4wáž™P²˜.ßÁ_§n^$ñßÏá Hׂâ&xøŸŽ„¥ +endstream +endobj +80 0 obj +<< +/Filter /FlateDecode +/Length 5778 +>> +stream +H‰¼WÛn¹}×WðQ4­&›ì °XÀ¶v /ìı&OQŒ¥‘,ÛºxFZ­òõ©Ùd_¤Ñ ëM³ÉbÕ©sN¾ÚÜ]ž¯NïÔO?þU¾_=ÞÜß©Ÿ~}ôFí½^,låá_ç*µ¹Ø;|{\ª‹íÞáÒü«TF-Ï÷ê¢ð_Sx度hkW+ë ïkXpµ·ßéå×½_–{¿|€]À¦ðÿòýá¯W¥:ºÙûÛÞáñíêcx¿º¾PûëëÅÛ×úðÛwGʵ6Gá±ß0Ã,%ŽEY”êòAÃËŒ2eS4¦öª±mÑu]ñücÿ•®ª¢QûwêN/L[Ôjÿ‹®‹ŽV[½°øà +žT…QûWÚ\¼ÆŶÄg—ð¬Ižàvðòlç“íŽá—·YëEŸ§z6ðgUXþ,*>Îàó |é +§öuÕàçNuxÌ[xÇã—kÙ\[ÜaƒQÔÉß5D [žXkuëqÍVi +ü•¶ þ}ŠÁÔtz¸Ç}£¾z­ÎqWúï¸QµsE]iãñÏSxÃâ¯ôñMW¸ÝZö‡Oúù;JœµøåZCV`û u²¯½ÄŸ°ÖéýýQW”‡­’×09ndk 4-I‰q®Æàfðêïº +ÅrX*ýÏåo”O°JksŒA†Ëªsª1P¥±ï}<”ñ{ˆÇ`äxs*g$QaŸ%wU´ã-"4*A¼‹ SVÚ½„Ká6F{ZÒªV ÁÊ!~ª[\K»†ÕŒ¹ ü‰jfàœ3M…_M€â–q5‰*Äß5bBMBèK àÖ¤D`×úØeur44*þŽi Þ¨ñ®œ©ÓæûвÛ€Ä% A&*ZžoãgàRBtg¸Ü"8ŠŸ +°’Bœ®¿­)N\+‰£À1q5~A>À¼ab!lõ@ù!ì[šÁ2-É’ ~ ç Æ<“v˜aŽs¸ÉV7BTÖIC1+ P­ÿ€…5ÇÕß¡ @¥.¿#.%–ër|CŸ7ÜÙtœ¥ BØþ +/m’1ø€N«^12æ8c>ÉØUÀ ßû_¥pSqJ0?&¹Òæ&îÞHkS`Ž{jqMy< Ûì5Ÿ " Œ”ÏLìn#+¥âF%:×uÒ¿]î§U2aÈÓè üg +³å3^Tßù7žBŠyAÛjeaˆ@Ï.=’HÙ¾ÇS:,aðV»Œ¨`7JÝ]`ˆ)B¢Æ‡Z ŒÁœªBÀ]G-3ŽýŽTBz¶°D~÷ò9«˜¡ç¶’;&4:äl‚8PŽz¢ú2iÈ,ÐÈ`½MNÝðº{!¾TÇ-'pÁ@Ý¢X˜¥ž=rgÖC®ëf°×ØÂDìQÀA?¸;b¤—¢=Psü§d‘r˜Q’ùÜ=Œ¤làÁéµ×N–IW‰˜±$n5Ób¡ÞñTêMË.$õWQŽÆò܇ôr.¼Ô±»À¾"­%N¢ö“ ø‰æ Ƀ#]+|zª š¼¦›@[jû—ج&³YàÜg@å›ÄɳmäG¸\0·Þ­h\90V"Ï•íFÎ9{ÖSßc˦m§Þ 7«ðÝ® aaÁ¶ü*ÐCJJDký<ÜW(ª­Ùä=uègôþðí1EÚ8ŠH6ìÿeQ1oF×°Cý8´’±sxpUb»_áÐP AvÔ¶L-æÐîæ­3s¤cmèå®dªwä—‰à[zªÉC+Åj䘛 ÀÄŸó¥k6I?‹¨Ȉ¦Å0(-¢¿¤ë&drx#L BÔDZ{¥01ì©l)–~¦àLšdûÈwS7T¬90Ù.1åãZ~µ‰™Ú‡èY|óU)ª]=§Tš‚ÿ›)ëJÜï_2ï%ráɆ˜ÌÐÍlËšÂZ;¨\5wc—ˆG7PÕ’YC†ÜΙ¸¢Ëçh“Þa Ç•*»Öƒ¤kÌgòµ~wˆuåbU;1¨GoÈOuËhé0Ö÷ç4"ôǼéUŸ¬U´ ‘Ce6c~¡Ê".#–ÀØuÔªçJ6Ð4ÔKÞé« [ž`¾Ðª.±“S¼IýÚÊÚRwÔŒÍÐRÙúp‘Ñà>tÊA¼ ¶à8¹4©ñ¦Y×LfcÞ®í 3“)Â\×eÝÙ b Ú˯»mmv3.Mâêw°˜CŸVš$rA6ƒÊÛË`TÙ‰BöìÓpØÞ6Á‹ + Rý­IÇC®ìÛËR Q!×…5 ÛQQe ‰˜t}2èƆç׿ä˜Nû®'x +´uÌ)sÄß1lˆâ/pb¶GÝ$¦GŠr¥¼ËüÈTçžÐ[/¶ñ]•ÙøÒTÓ(òmØø<­™U2t€Qr’Êo¸xp+K;p•ˆi¿¨¯š4"\9oÍ%ƒ0ÖÆ‚:fA*×x\DN0Lß´ûVEz`>¥%X‰‡ØNxÆ·ÈKÄá%+|þ„-3¿"Gši³%µëx ™º¨xA±ÉÚ6zµKòp§œË5¸eÄÃoೇ¶Úæôž¼46„»ãÉåxªì ž›ŒýìÕW¦âþ +“ à~VŽ»³m+Ô'1O¨« 8õBnU¦ ãj‡4&á‘ ý×ÃYûÄp¦ÙjœXkuK°ÝªW‚‰‹ÞÙ>òì ñÊcÏ‘^Pö¬-’ELþ¥7ÕÓ†Ÿ‡Þ¤ûè„{¢â.£ +®UoJ¸Éäõ¼ùoŸÁ›oqR¼}Ìàìhqz~ºÌF¢2³”&Ó5næÑüÉ Ç倢VBH€âtirÖÚ±4×æþNÑîôKUb~×U¶Iºg™:+#ŽÁ‹ôP0pàóÁÏ¿D'ü”ø«h#©ÅÀÑy&sx£™&uÚáNš2\ Úg<³•cÛî «¢ÙÍ€Î94vÍP4cDCfáß™¦-UžÝ<¸p. ·ý.™ñÂØëyŸàÑÅ“}b1ƒ²Ï­v,VŽUºÌ5]¶‰ë›‚N@¥KœösŒ»d à ÂË bµ„0í!Ì„‡hPÂÑÌYžÞš0½Uc—&×IƬHæ­€™í'{¶„2)γ˜õèÆæʽ3àšù1"‚ ú׌UÓF*â/Q)zeõO(«êAô¤¶8/½!‰ Ž~DŸžl{¥ó™ú2œ9¢±;”»Pœ˜Ü-Wã‹T¶W5t¤™†nŠ”¢"’'|• ùQb¨ûn57H¯Ý‰k÷³n =!œZ쎆6§Ÿ¶ÉaʦhL핇ó{Ó¾ä‰'&¨>2Ò=áAÀp,œ0“cÚ†ºú,hj®Fþ'ÅGEÖˆå²up¬$.ŠLc˜‚ºi§Áó¤À0ÁÕ@ëÔ¼vÇv’ŠX祶_Šõ¯G®Ï +O‰%¾s¹»A¹gú¿4‰£žÓ*z‡E$Guœ™;Q3½h&S:õ_Ô„G}ŠGgZ—æ¬)ë~@Z´¥ô‡¦†¹–㲧t›KuAÖöÁ¬¯Hb{CçU#ùëÉfÆM eÞ'XõùȬÑu\¶àÉ-êõ'̈/ËÁÄ5cF\Û$x„è†ðî•šËà\ô†"l h^Ÿ¶8šÑyãÆñðn5ÊÚPÁ…ýS€ œW #‘È’›Ú’å[ ©'¢˜»}.W’˜töœ‘»Ìç$&7#ÖtÔ`tÛ :JæKIóÂñDéhL®»#È$Z „ê5úYÐëÉÀqõLý8ƺ¾NA‰¯N¸ Y€ß»±S¿ää²M&5¦ÀwXøv„•qøY•jÿS°ÛÇÚ& +õÇ“**Ö½µ3lÊV¥bmr‰+'!tH­¦¬y†Œä‹7†GÇopøòI]€+m<ÑjʉW'ûÚKõ#ꤎv8ÑIÇùk³Â„¶ÛvÞt‚)ʺ³$özùu·­«âÌ à|—xÚÖÇ%e«F²Æ:…øs§@Z-Ùáq¶}É°ÔŒûwcý ¶ˆãLà Ûðq#¶Ãnj¶ xÊâ‡[<Ò÷L]á—LêÿÐ^-½qÜHø¯ôe h´Ó|u7r +ÖH²À"ì¹äb{-Û±b+šhµÉ¯_Öƒdñ5æÙÓH3l6YõÕ÷`–Ùž ™WSœ³$ÜX¡Wþ9i—¸ürÿÇŸ|aÿ;‰¡凤.±â|$NkÎsÑxcÕŒ`U é¬ÚA}5F˜í~u"Ù—Œ’d„TÇ)ÖÖ¦2¦â h"LÑï#† ή^ÚÕ[rwo$Ü–,QÖ}?³–Iò¿³Ac|ÀÛ;AZ$𓺑8Ó‹J5o„.·|ó`ŸÃ2ØÞaü¹$K$>x¬’Ð8 :úØšJʇj͹þ©¼ç Î\âÎx÷ä¥{ƽã§@Úhh7¿…t¤˜W­dEÌ3ÑX´pðÊ^­%¿8K=ÕœÍz\ç™+q‹ä»e.ΘZ\‡äQ¶7–mdÛ‚ld-B\Oñ|‘’KW +$É°sQ-? ñÒËlÐ [(“G0Û#U!“Ç &(jŸ8›<¤zlY´1-M`ªºŠØ¢; +'8y?.0/°KÆ4$uBM†ÇýüƒQQGžc +&ìCŸ›‰°ƒƒ'u$¯õ=3ÞK§®÷ +&ã4ÝÌÆи³§ Blã¨@¯æ= Á¥–²-‹ž«´ð_{¦A¤Ñ&¯ñ¥9ž”µq-‚ Da@l]xß=SôÎqï¶fï~šä^qº†eW窣šFïˇɗ ½èU¶)Âø¸,¹ºîÔ>¬Ò£%ûŽâû™ü-ü¿Â2ÔF¤_Ž±OŠõ×»ðÛ;Þì†C¥¸Ó/‹#Ö§Ú/52yÕXVM&m¤Gã›g´‚O”Ô¦‰ž÷\¢ðâÈþÿd·q\³À'qÏÀ$ PÊ„`A,EûdÓñz•¥0IÕ‘`*ÁÍHé.™I ‰cUƒë'®qØwùYyÝØcKåز®ƒ-c…s{ˆWËM'‰@*Gð˜'Ñc$‘áòÔ"§o~¢uo³›ïê +½ml X‘†ÞDSŸÏqGYÿ^f´Ê,²!:°}h¢Ã6S`†ŽËpaJ\àáRǸ‚äy*?8 "[ ³o×G·« Aže~üelk“ãÓ¨>==%xòE_…(ùúJÜ×Ô~ϱ-PNi$KƇÊ{Å[\d„·y’ÞÇ)Æ(Ø{Þ8¬Æ7¢vü‡D}.¶Âb×)µã Èa`FmmµíÌF­žEù ;ì3fT:pLn˜>ðã-é«$ ]¿ïŸã˜µ#˜¨º³®Ì/[´ ´ ¦«Y$Ö;[u>î¡4gAE2~@Åý÷ô‘·bK–ìëï3"ûS#\Rä#È’_ªåº†ì&qgÙI%ènRå8µ8ÎSÜlŠã}’Kâºhéx¾Á,×ÊY +. YüW¸è"øãæ%ÛÔ­ql®€º¬çsoJ +‰Ö›–-ÝL!†®òFs6*S Ê^gPùÑ ®8ÓŽˆÑ%~¥=±ÐŸo}E>Âv%Ó¥ð±µ, +ÁÖ—!îG°g³>‚ ÷GEµl¤(\àôšÜ!¼I׈=Íđ׼1Ôï§oÓé‡1´ð›ÀÏü¶—üÖ $jÛD ‘.Þ‰‘¹ƒP‰¥;Á§,ñë+ÆêtÍ×øBÂ\SÂÖsz¼úæÁGalÃßçÛ )Òa_ÿ»ñ\Y°N:Ý[Ž$ÑÆ5YÉ}Æ­£™Ð™ éÌѶ˜I‚éèT’8$»ªh;1ÿ}/€:1 ]o ¤ç[l^«™¤Cºp´"5¦%D_JŠ‘é­$E¡Û‹¦>ZÆ×NùSìpŠ@°½A÷’¹¨%ýApžqó€¯àϧªHþ‘ ¤â°Õbh÷äï@ùêÕzš‰ËÞI+"ÆÚ¶/B ,Åf[7s!U`Ö+|üm±‘_@j F ®qjT*‡®OFm躣ˆ+]f„⊷ÀÀ‰ê2|ÏÍl°z2Ò’ÛòŒ«V®¼ãÔÙ!Ž@ûŽ¤ÉDxŠkDP˜Ë¹ÁøÖ¿ü¹W99wlM‘ŒleÂŒ¸+ÜÑd¶ p;=Üpô˜à¢Ks†ý]›ý—Ùà8X8¨ùß„{ǧÎ3¯5'âÃ-…ÝG4 ;^ÈÀgNS=ïvòMZ‘Û°Y÷óNMYrFR”HÓ¥âšÀo~-°¶8¤ÔÇFð…§àȈ .­¾Ž‚ï9A©z</+üEPQˆÄ™¼X G¯ÞL) %r²,ðÀôûaF HI‹¶ìx‡Ux‡aĘFp¹€ÑlaöôÞA# ^PZÛï …)·×»{V}¡ž"•1qp]K žocªøH‰mw‚& +É°{þÛßfìûc9îï…µr`@ÏØ}©ÎµÙ?‡Õh„®°ýßÌÄ’ƒ-&Jb¿ NË•4‹ðZ'˜wL´Æ‘ìrîÛ·Ú|÷R´øš!Ñë?^àeƒ¯ŸÍ„ÆûHêllÏ 77¶“+;±!üÁÒµóÅLûÕyÔ0iNN‘þçÈo@-=35BÅ‘W9œhOt‘HÕ +_aj·"D¨`¸híÇa´–¬ÕÑQ‹‘®\8+¬ã]´F+|{3ç€Tò#ÿ–ç4Û²×6‡Ît›³FžaŽˆ] ƒëX¿£“#m’EH2¾4Ô8DÎ $ÂBgŹΩ¡!ª¨½±—ßc‡ƒ¼& +Ž5 0âûG¢Æ»Mž—œt>ã˜ÚrjZ:Ô´l;xû5ÆRW¹UÎÚo’ìê]I#³[$ÓËÁáä@^Â|®ÓË&è öí”´š…¢”âÏÓŒû¿#Sêoˆkïg‡éñjzD¬ c< 7¾©[.%3 ¯ýt-=œf­K5òëWê ‹ Koáß>t#HSÿ†!´ø4‰ŸqŸ¦9:а¬V„†Zm P +´  QËx…‡ó/@™ˆ#žÍXͯæ· †>Jöð›b‹ l|Ùû'è&ê®FGôÇ\¨¬@÷¿ËyÅ;¼´SNDÅáCÐ@÷°ÑØÓÆJ/}xÅþ»£°éiLƒ>q·Hê‹abC+y×ä¼»õy·jNù¬lðKGÝ×ýŒ§ë(ëXVw:˜NC‡ï¤a"pÇ`Z·!’å gŠ¢×SÞ¸ÿ 0hÝæ" +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 5603 +>> +stream +H‰´WÙn7}×Wð± p—Š¬b-@`lgŒŽ+OãÁ@Öf%Ú¦[¶¢|ýÜäe-r)ÉÀ€»Õ]MÞåÜsÎ=üÛîþòüøäÞ|óÍá?ÌáÛãÇÛÏ÷æÛo_¾~e^T¦*]íáÿ¦©ÍîâàðÍûÊ\ìì*cÍÑùÁ¶*+çÌщ‘7¦-;ø üëJo¬­Ëº÷½q¾ô¾…ß\llUýrðÝÑÁw?ÂMÿ…‹ð÷ø[8ÿz{ø÷ëʼ¾=øçÁáû»ãŒðíñÍ…ÙœÝlß¼,|õýkãk§¢=<:’˜Òq¶¥@à%ÆÑA µ ä_›¦°}Ù™MiŽŠ-<o?Ö•n2?[)lÞ™×EmËÖlà~m6?™ãÂõøÝ]a›Òá««ð×»bÀn‹?…§,¾žÀáUÙãáÿ>ú!fþdnuÞ LÃüŠ-°ØèLg)EËßY•bÕ–CM 11º>”¬èÝ;Ìòüàœ+zo÷æR¦œo0rxê¾h0ñ³r»à“v…¥b@r-æŠx|ª¹žbm&{µ°T"_6ø;ªÔmQsiàÓžKãñ÷ŸÌ=<ÏÝB¹ùd(w…'ü„qA[ qr:¤_\á9fs‰ýèXêÇqÑá·%Ù+Œ½Ç2àe/»Æ¬ðÞtG±mø•ÿ¾Dà³Du!lù“›ï<5ðZã“·œâ tÜbŠË¸a=Lš & c ‘ÙmV`nÊ…y@¥p È>ãÆÄÁðïˆ|Š2âtŒ©Ô8ÌsþFB›S€F¼¹ޜୗÚ53ÄŽxkçñÆÓHø,ŸÁ^½j1Z‰šjåû]·eÕÖ¦m¡q‹ªö‚¤B¤Îä4DÀÇ®48fø7ñ TÛ;!âœ0ìu6ìn„€Ù!6©ê"I<’‰Û —3SÒJx3`¶—¬z¿*]¹K˜R§‰àl-·Ž?‡‡ù³Æ?P!Ú¬rB«&iDZL +aÎe&ÓXÕÜ!Ê?±ãjÔ +4OÃe½æ5U®yèç5ÏÊ"'è 6⢵qškµ{ðŽHé3Í)!×òÞ|<3Ç,<žKK5K@M U瀆¦< |i^aßûgæéˆ4gj ¶Äš3üAïThéLX¹f›f­ŠÑnçä=Gò{³š¶P]#bªãëE¬q9 M{ ›E2í±tÝØiø)?›\Æ{üFÌí9ÀÞĬ¨×®Ùj1ÚK]à‚tt¬R‘þ"nGıúh%N—õxŸÙ'QŠ„we´¼1í.Y«Ë€]z„¸ý®¨ÄDµ"à-þ=ñ _dåÓü;5“4NœlÛ‡O¦9’,Ói1—ïCÌŠëE´©—Ñ›à]IýFâð²-/­ª³Òµà¥‚,ØÔ +6è5 ­C @2·b—wRMŸœÓBqQ•c ¢P +÷ÑJw‡;׌ˎŽˆ×þQKï'–¾žÁÝLÆ|[ûÿõ[­ø-ÿ,¿ÕdÛbi?‚KðZU‡ÖZвP=ÏÕ³b!2<c¯à¤Ö»à0yÚÔL}_Ðv¾hôãqÌ`îýØÒÜO­N|bD’=p¬¶Š#b¸qdH—i@<µ|7C1îš-RÎ+œlÂCÌ=,>—®vXà?ÔÊ™ŸhÖpjkqÍÈÀŒkK-ë°eɵGà³ ˜:Ïm“ÔÎ>A ²Î­·!câV”~º3ÌX”ÐDî9¯¹.Ïð€4ðaSÔ¤Bïƒèœ‰º¥T Ú*ÎyTU Z­Ÿ“*2_ÇŪyxá¤^“¶#Ò*‹ÎáÁŠg ¯Í‘çÇ4‘× Ê…v¨ûa‘z‚óój¯c}†Þ™‰¦{ë<>\sI]?‰$?&h=<õh‚Y s¾¥ùß’‹n"uÊ ¡X[—©'!ªîº²WîB´‚70E+­©Öª6ïB®Z¯‰Í§2'žÆõ,?¾e!UkW)ºœ¦êÜyñ©°‘~Øè"áE‡?àß×`°êÌÖmQ‚†I ·`¾ÊÖ/á Æ!yV­›±@É)Ñ,ß›‡™Õ €ÂÖ fi0þ"u—H:1oØÿ²Nñzß5jïç$•íDzTÂWçx˜MR{%VÔºÚK +òÎñ×ÿEMcÅ(l5,Æä¢@ÅHÐÜ=íz$Å|Ç «РiÔÄ£îR6-ÏŠçzÂ÷³á­‡“IØ2aU½²¢çšdöf† Æ\ÀCÙÀ³Ÿ"Wr« T‹tɾuƒ[Í.‘F?qæ™î³“|œ.*É;¼“§܆ŽˆceõýªqÈ„#jó_lȯGѯoM\!@ªæ]ò¹ rUSEøœ>-.'èǹäÄlÓûý“¿@¹ µ m™ò[,+ÈŒ©^‹ª žb–Ü”Ï3‡NìŠxÿ|ÝÛ+C‚ÔŒ*¸-d×K‰L6Ê*jgþÁ(›Â×ø6Cyû< 5šÆ–àÓzeпGt ÈìÃC¼ïM‹­ip{´øâ0cø¢21ò×Ò£´ULzrTx293Ø2Jö¢5_-Ô”J(êAoc“DYv¯–Zþ¡(Çⶾ¼>W‰v<¡°úTmmo•E]ØlŸ\ŠÖo¶ÑýŽŒ:t ÑèÈc^EÕ¥ 3Ié…£m}µ¦îAkÙ%wœx–J·—ÍäÅ’ÁF™Ö-«·¦éX{-‡Ñ°9~a®éÀFI|´\ ®”mR“ À¬‚”v¼Ÿ-hˆÇ#’P­†M»<•±aá  •£_ÖÝ|‹]zpÉäNµ•j5dã7Œ9î­Û*  èòqèM&¨ÚÉa¹;¶3b“Ãf`ɉnéM£“+TدÜ „¹íOØMÇe†jÆÌb=GÍ0/¶¶Ìïqb'°àâ¤ju¬˜NC=ÚZªî6î Ï­4çX®›,þç]ø3¸¯Ï‘æê%¤kL9eoAóâ›9ví$1¸Öðä¦Tž03Oì@4ë²Ñ)?ì‘œ´@^diâX„CS¢’W2¶µÇN·bP»°âMÝ’¢bŸa8Dk©× +Ÿâ8lé®ÅK9O¶dø2Ÿ#‹Äq2‡2k«2¬¡9…Žõ4×V#oì–ÀWõÊÇùv,úzÍíˆÒ=¦ýœË×2bŒ³¨¦³ãMþ™obnésˆ…I™Ì5/‡_§ÜÐJ4Ûé.NÁuN`[¡¾Ý¬ú¦s4±1ÙŸtÊÜŽFñ– 1¯âjo‰µ™Õ;_ôH¡ÜkÑÚÚ5hUpzZ]N•}·€Özh”@³Ebù?ÖË¥7Ž‹Âûü +.]€»]$ëÅÉ`6 d1A8+dOK ,ÅJ+Gùõá}‘—¬ê%gc$U-yyî¹ßá^äò|ˆ§¦{Ï]šñJSÅï Œ9rýd. ºŒ‘qP¥ÿ…ÜçÕ§1V)÷˜ÈO—Ë=a®k*™55¨¹< +ïú Ï]¿x/D«^¤9$]œúç—$¸„¿l0»±¯$:ŒjŸ°y‘Ú…ç+dO©céUŠÐ3i,ºg£í•`udnzó6Ïš‘ 3Á¬ÑιÍcdZ=ÚÉú +%²ÀêÞÿNåMþ«Àý1Oi<Ó°n}îL~#šœ«˜Æ;œb2 ­M¬+¯T :-æ0óz³t—Ï–îìžns8+ÝrÙvé.ý󥫾ùæÅ…¹Áº…NwÀ)8| v…Y÷Æ\ »Ý+ùnÔ-9T!éi¢ô™áéËñ;Œeq1 N“J¼9Çħ]ÀØ·§ÅV)uØž‹.¢ÝBš‹Yˆ°½Ö»“‘«xŽQ@ž»jÖ-yË4 KYÆ· ø6øFðh.בµüï§ÎcÃ%,åê}0€Èà*â™èIÌfvD ‰â àípÀüâæTʧdÕSù³‹ˆŸ{ ÄÔX<²De§Q™OWÓúDR0ÌÞB‡l¦Òhû!„™T’ºûzeWd ÞÜ/vE,šk¨‘y…¿|0íu•ßqo^›o:TW ÞJRqØgÎRÛc1O™7}gÔÀK{a Å®^àîaSJ‚ÿ°ÊE92³²ª¹£¼¿Ù|?IÄÿú.~!õÞ <¹œøn¸±^%HÙ?‡B>u³2|a¶…*Fð;N…*^ìºVJÑÅ{8!ºx—D÷$)Ì…:D.ûFÏæöéÑ‘þª¯VÑHõN‹[KÛv°ö}çÖþ©ÍÚ‘ØÔ¡Ÿ¾äÍ®{š0úÐÍ…ÿ>Þ´žÚj(XêCçI ÑèhÏz¶R$äÈ®hB7Y{óš*›¬”úäÁdȽîqü ?xÇgÎÌH¼tG&ûËFGÐaÔ9bKyhµž{Wf*!Y»Úǵ+9>AíS©ö1œR{?ïû¤öÌ¢ñ&œÒ\´sd|åj‹”ê?ü +ŲxãøxæKD¶A›×Ì%k2¼+éŸ@ò(Þêà÷n¢æèᛑ&Ò±asžÏÀþ93KÃ/D¿ –áL‚ÅþbyÔ GäR*”ê‹ËD-v:Ö;…÷g‡V³´b|°S#×´ s.ÕÓŸòJâ”KêyèÚÖb-­Â nô?:Ë—[—®•~*e)¢\m¤›’’/nCÔèu‚~+nmãÐá ÿÊçµ¥±žï‰Ë3˜ú4‚ÌHÂ*X]Ë@&(ÇRzôpæ‡Õ’èGœöva¯“fk_¨Ú +ÓNÚ–Ó$iVÙrÚþ²ÂæE…lå) qÖ2~ºÌ%B˜Sí][FêØPˆŒÇLú¡öó†2¹ÙÈN𠹚rDgñÁw±àæÅ[ç\·Ñlõ>'ÂrzgYÊ•2­‰ù_0½2QVùÉÓ$O%I| s“êe¾æusœ»à$½ÐøßE¹,œLPNQ¦:‚ž_g£g.Ý—»3Ê„¿øL&'„ÌTyÜ\ùƪ+ÖÙM‡Ô͈ڪƒÐ7Œ}-‚ö±l)±ÈÓ'Újìä^©À;v~â×9åÎ-­È/u•yw(á5[´+­*ûË°)ÆÝDßdTÍOw} rS¿M9H¦ðn ȳ(†_;_² X€ÀÃÒðå¸gêp½•<q¾¾'§ÈÛ¤½À[xÌ)F,ð±1…º!Àv^E’ÂífÞ‘§oH_¡íf\cBWJJ‰Ä&Ï^r`ìÝfÈ‚&#¶Éõ'׈ë8ô‘ßx¶¯HìLÅïâ-Í„Iž£V€Ï¤S5%Z•.Ÿ·—ù‘0ë·kUzá °rJ2»U+Å›5·œ¾0Ÿ°(“jÐ{¼÷:„ÁÍ z–ÐO 죟€æí‹nD`Q©Ëp0ßF…ŸV‚_üh<ľÑ7m7"ñô&å‡o±3ìçsnbÊÈò=ä†ðL$&Œ«¾íº‰oÊ‹þ[€fÞˆÙ +endstream +endobj +82 0 obj +<< +/Filter /FlateDecode +/Length 6142 +>> +stream +H‰¬WioÇýÎ_Ñ·ípºgzÀ0Y–£@N“ùÁò–ÄËuõ5w–– h¹³ÓÝÕU¯Þ{µÿ—»‡Ïg›ãõÃûÿPû7Ï7êÇß¾ûIí½=Ü+UYØÊÁ¿u]©»ó½ý_Ju~¿·hþ[*£ÏöÖeQ6•:?×kÓáCc஫ |­ðù•^Û²¨ðø¥…°õÚáç½Âw ¾s©M‡‹n`GxóZ7luªŽ5ÚñfôÂ5lÖò+°;­hŠF­Ô]ØÞÅÏáÐÎë7]ñá°'…ŽZ›^­Îh_zm`ÛÏÿ…ãe÷Œo/ +û4ÉÆrüµ¶¦èqÍ7ºo&·“ˆ åõ˜:ÕìþF%W65nx¢îáDXðˆptüÇŸ"ÿ9ü[ÀÔ‹¨i2Ôdx¨û`ÜÛ «u +×·n“­ou•ïß¹¢¬úZµp¿6Àí0B¸ôô€ªŸ³p¢tY¹QG§êŒ÷ýÌõ½ã+JrEªÁæÏ’÷šëâ“ _/àøø»x ìi--Iª‡„¢×éb _L°O¡\B¥x&Å!4<| Û3– ÔmºœÝPäãºÕ%'ŠÞ F:Æ™%œá²#Ý#¢Ö°«“ìpP.¢×½<– "VáÁ9`Ž 5é½ â +¨ùÖ-Qƒ­pý³îܾPËÚ¥Ù•Y,H(ú«¶5“ Ñ<…"ĦMkÒÐ×7j'²Ã?ÒrnÃiZ3 ’‘MÈH¸#&vÅüWøMj7ë8¿ù,€ü2Ò†¡KÐå Ûù­m1ï"r’êöøæF·$Ü·PŠÐt3âßzð€¼ÀÈRl(OÛñ ia®‡:ål_ +íž.‡K¿„Ь,&´¦,s$:7ĦƒK>€jÜIj ÂâFóLm&8 0yŽ—±@êÆ+y€ÒßÓ[xÀ$¡Eâò€ô%}†î¹yYÛ ’©uFx÷8â†ù<4²×ýã!ÕC†Þk:;bWR|ç;=ÏFƒ—3i÷R´6¥@ª›Tk  5u#Bƒ2SW×¥¿@–€)ʲÀÚ­rˆ¿‰4+Ø‚Oš¤Í=ûÊMöqž4¼–Å&V +8úL¸Ñ*:\y†Oêä1’°O+]û £õøi‰ÓµÃÏOzŒ*xÛù›·I³_†Þ­èóiØØy’ qmbâéÊV®ìWf 0ZÞL©ÔH¹-ƒ }dÎQ—SIÒWÔ|©Wã©N# ¨Fú©ÐŽí:LY©ÜÞIí£L +q cÀ¸hº¶øC¡à¿å)¯²N5C†§¦®7 ×5ÆkPoôíÔÀð¬­Xú:2ŽåÉF¶IÉ-Š÷"žáá@—µí–>–¹Ë»"9VE„tÛÄ>©ŒéÄž¬±¿Ó·ðãa®mpßhÁ¨G0qvÔ‰6­ä‹òv‹$Õ¦3£¥ÛÆìMøòˆ•Óg‰*§"ö\ ‘:‡ÈŒQmlŸÕ'ÍÔ;0@§H$n`ˆ@øù­´kªÜHR l/*û@*F,!§ÇoG‡•Šï¯{ÃzJ±ii ıž·¢¿©(£·;oÅiq%?~d¢M‚šõæì»ù²°æ’™³Ü¡øýì½Ù=.·};¸]t—·œ± k‡WWQ}×h(ïBwͪp¢äuÊó Ý?Ñ­Ôë-AÌÉÉЖ=sKŸv'g(Î4-ž>Tæ»\‹—ô’›àÍ[hK¦²Ã}ny»{9uòJTôÈ*LaRÙP&â^æ¯$¨|ðzw1š í‘”&1…[°U¹±ø %Ñ-yŒˆ:ˆ“7&/hPçqÃ`³J"!ôù4^Kü_ T‘gZ]¨Dd·Í•‰GŒ:ç—‘"qŠ½=ËÙsǦ(Þí`:¨¦à`àì“3˜xöË—ÈÚ6Ÿ‰"szwúb³Q‘=“ŒšŒĤÌÒê˜`2Î`íEG"Š¾Q5sûJÆ‹å\ó¸ûÙ›âÔ¶¿ˆ«à”N€É0Ρ`É ‹Šß Š?ÃFÃI¿yÌ:¼“|%ø àÄ,ð”Ô%)¥q´¥°åé%­æ¼Ò³{MŽîj$±Ø}KEy< «Ä=}$‘­.µ|=pBŒ ³N5E˜|ZíBhq/oWHlJ‰í"¼Eû»‹_è·Ï€'—Ì€W¡”‚JN\¼f¨xÍ}Iê¿úö ¿e\n.tá=áo¤Ãào®4íÌlåê½Oë±^UÁ JIG§Ð6©ËËQ\³”X2ûϹl÷l†¶rMÅÿšôJ´šùØ㵆²zæa#ù»û“ˆŠ +ýzé¯&¤?NJbÊÒó®IJî“)]´ù«®R[xŸÎ‰ZŒ3÷ºïŠ²émÕZ~Y¶µÍ©¶v3í´ WPB¦Éou{ÚÉèTñè„©òÃSlI©æ©üp쇲˜uaKßC„D¿ÒMN´†inÒxg»ç#Ù`õ$ÂP¾ô"Šp¯þMÒ8nMý åûR&[ÅT'Ü2$ºÜ¥D&¡H† ‹ ($Ó½,êú»>F¶e>Y ñ*á™Å!F0Æ¡OÿÄجkŽ +éì‘ÐÑJRŘ١Îœ]“:»§hB.2*¨nçñû +Í-ƒ–I(¾ô”gJ†þÖÚZHÅqÔÏ–ŽxÒ•ÓÀ[‡0GHŒo¶Ü~ȃ§lñÉÿÄ+FKííMâORìmµ£uŒg|ÖÏÍ 0@FëxÈ8 +Ý}‹Lm«h¦â>È}}ús“tÍwv”nÞQV©— ",ì•–M¦ü0æ$Š‘¦j§Î´fg:`Ÿ&2c@´ÿú<*Ÿx´>ŠŽKõv9V\Ž•ªžÆJݵ‰•Œ5k1GóÒ\ɾáîÈ­ÊX;Óþuyÿ¶ÙËä±È#Ë I }¯Î$Šh¨æÝŠ\×Ûµ‘Š ´¬úCú@Úµ9`7ꎂ#áêðÙ#êVA—ò¡×~C/R“þÎêÊ/6‰Ç ·¼çT†¬¡ÿ>×E´Pw@Q“£¨aœº­ÐŸEå²e4~=Ñ5ëqLT™¸UφŸVîý¾§•ÛL:ÿ g¶ƒ39=ÁC—¹¯0V<‘l@L3Mf©¼ |Ô¿°°èïK†åV÷b¬Rß^åö~Í?_ÐÖˆ_†[À ɸE ÄYDæ õ”Oli¶‰~8P΃? +íh…ÑM…ošPÑæ¨pf®O|uPŽC’Ìž…9Uqΰ³Õ}¯‡m dŠ¢H‘ÐÎjüPmz¬Í¨—5™B·_ø¤Õ°]t_ô÷eài]‚ˆQ¡»À2)G’2\âê±ðná1&›¡[Ž~­qCó81 $%ÂÃï~[†nÁü–"a‡ù­Ìos8ƒé0úæñ€¤^ôòäÕ³m3³MMÛr¦Ö%“ )Þ‘¸˜±,É–#E¨ÉXíÃÞ4˜Ärž 7¯’’‹%ÿ,îÙÍ_ìuÉæºäϱy)á,=¼ÊûÚS_ôù¶q œ{?”ÜhºÐˆ\å^ËI :!í4˜ ¢yNΗ N(Õu:ŒÝsÌÁQ3š¢ÖcSª£S&‘s¦37?ÂÊ(uC®Ö¦î½I„ÆOC©îò±‹ =6¼^_‚=™ 28™jºû14ƒà{¬¯kFì‘F0Ga^vÞÅy¬ø²)r1FÌ.K²œË¬M¶†²–@7Óø3MbÈ_è¤;VÔ½<òöE•›—Y!¡BÊó‰äÙwdVHª;r–¼Û#•MgØ »§YDÃá½bÇEh¼B ™ôÆ*P[`З\„ à»EÔ¡ûB6—æ6ëF!fsî€ÕFœ¯þÄ5¿H'==[¡g›ïá/»æÕ‹Îi,þŸö2iŽãF¢ð_©£+BÝS +µÒx9Ø¡°dû‹H7‡ŠE†Hš’ý ‰¥šhÊs±duwùòå÷-°þR€Ës( ·JbÁIp)<ýÐÑFBWø& +Oë\¨yÂt2»Šc Ñõ©Ñ°¿ºv)D5¿ýl>Ñt"ò1í±Å•má‹\!~L@žê:,Z´âËîLk‡âce`š67Îåu?b.pÏÒîÁ:0à†°Ø‘~¼ÃO¢CsvdÜñwh–×Øâ¢BZ'¸¨Í•»±ÅͲˆèûYq”¼‚ÜîÜÑèp¢/üh_ ´êq,±_ñˆx;i¯Z$Ì2#£ãUPÇçÃ5úǘuÖpg'ßYʺûîÐ/¾a¡säsÀ‘¤€'&×ô|a¹÷v’šêGüÛšýòÏ}ºÑä8)UZ wV-ÓS<ÜÍÉwï†JðéÓœò>nHo6"œ<Ísì9œ+Rq)¤³ÔŽô1;òŽÙ +è¡NÞŸžwn8->çÎnÅîg„DJE³x!#Æe_'#ëÎÒ½x½h_Ã]±«b”™@C°ö(á„¢ÿ Ew®ÏŸGæ4Ž˜ 1ÙU¤‘·=m܈xy0°>ýÅØ’N_ry‡è嶅Ñ2œàÝŠ¼ïQ{7]i"Á5Ôca)¹†,Ò”2lɈÔÑh½ð°™L,tñ·¨= +'WOŽ_“Ðhœ¼è+Þè!­yØ Ç]°|ð¯ü, + xÁ&¨L6LÚ‘fµËiiK·f´"]DŠ½Ô!íùJ!S¸¸J–ðÿ2…ô–7=V'Âfñ3_Ö§-aK†l­w‚®`®¬è½Â+º^ ôÝ؃8þ—×"Ÿø}—+£„|z8Mš/X¦¶ãæÿ©²œé,*±£r@•cÑ­YvkêI͵£žREvCÑ® f{Ý~3„WË¡G†…ˆU—r^j`yÜþßš·„+ÆüÄ öœ­6H6Œ-‡w|¦èsX±šÖC¶ºßz]anÊ/ðÁÜÔo•?ÀÂ2QÎ7ìM®9ð*Ѷf •êl^7tá5èls[øå–ÊE±¸¿ë—ùùŠûßã¯×F3Z6˜sÝ„£i¾€¥•¡?{…;¶¡úaåcTù!îíÔH£(¹â/!>è$V¡]Gy¹§Â:ñ"4¼µ½WÂ[7ÿ@ëæÅ=—‹»Y9ºÅü„lN0?“­ó­¬1è$k<9@Eᯡ[*i½+÷ +KËñ¾˜Þ ·‹'––PkîJAƤn$0t%éDì»fÓf9‚C¹ži­ûÅRô{JYÑæ2ô.朗½žùŒ9i¤EE4†ÿï€U&¼ß¼uâí~ïG‰ø(ÞÍ<ŒYfíþMáçK»$ÇI +Ñœ I+]*Q/‹*Ñ ×Xä1³3kl`âk¾Þ$Îàz8 *½£æý¬&Ûéyœû“{5 +ï“œ~t«[o½£_Z1^bª ÈÓ#…ŸY QØâ¾ëÌa™⤽†QtGy êþåW~Õ-hwÜ`åécåèÆÐò/_ì²ü@lsùI(kRåMNQÂɱÂüÿ3üêoF‹(,ßs¤“";·+nη¬ô4 (½üÿPžÈ[û@WŽš›Èä}|f– ¥‹Š{U1áoÂQÚÑô +iõ#BÜŽ3rƒ8vé|ÁÙg™„xò}È{GlNwGº%©É=á;ìžÊ@üÍE& +€…oÝmÜ‹oežy+[¿ H³œ– 67B'›"´åÊHnËg]`¢?ÐE"b"zcÒ´> Z™ÃD–RÚš{®ÖôKfq_òÁE¹}+\ÄL#A¨ÙH8.yDÆ0Ðu®ïpÝ-26ÔÖ]’ } Ú)äÝâbA¼lB®þ+ün¤W6kdmØáR í;|RùM[òsÞ±’ ¾£Ù Jõ3²~,èçÐã>¼„oLð§žM3Žæí´žÅ‡t1ˆúÇ¢ˆ…Ð%vÅä©E*ú†äY(yùV’þðe*.:Ã¥ÿgYeìðu@7lÜcoð¢´é-ÿ¥µt‡uáNµÀ§=I*"4|’;^z-ŠZ墮-):õiÒžbÉß²Ø'ä ×m€Kïb:#R yæ‰éDbÊÙq]bƒXÿîŽ#™å.ÞêþÂx:GÉ}]p·OgqNýšçJ[bx¢¾Ý÷ý7ʧ;û.èžùdæ*|ø[8éÒQÜ^õÈ3ß;ËuŸžõ½Å–¾¨èéÇÞàÓ0%XF®PZ&€°‹Eþ+9IEŒu¼f3W $ú†‰ì£X²üÈv ™l¹Íu ©eRŸIC®Æ®«?BËG ÄUøMo'¨–Ô²4²®ø/çêxæпJÕc lSu R]Ù¿íIC"dmü">8JRoIrJ%9g’ÔàhHÓûîe—ÇT_”ÔŠ)óíªÈîÕ–p…B³Üôf¡”ð¶ !U‰¶>G66wçZ ˆ±YQc‰I9@b6ë 7Ä:[nawŒåô¤¿£¯Ü®Á%pj™yÂq»sY”þ£±êH_¼}“³|WÑ8þz’i*Šžýàû^g¸Ø+2¬åÔÄç™ÄBÙôîàPO™r…­®á;£t'¨NÚˆ­&¿æ¥Bg³þ¦ý …œ ¿Y<Úõkp¨úî¢ã¿T•8 "|¸Å.ß#ϲI¡»¸P ±(’‰¸Ó+9ÊŽ’–™˜Nâè¾½(KZ<ô”Š*o”ËI³†ØÐ7öF'½atðÎx1ƒ@ +>?„Tq©ѯõY›DèÌ'í<¨,8z3¨ü —0yñÚ´R›…ý¾÷wIó¶t&áî–¡õ³_ä‹Ø.•mãgäZñxQ·½ák&U³‘?”Ñ/èŒ7®S žÄî‹“–2³=+%§hCšü—ïäŸmös¤ ú‡½£/=’`´§?d;‹õ9)bÂmùÔ_+J‹a0èÑýß +*|v*K¶…—pIªfÏ‚8Àå1Å.´’ØD‰\ ‹å¼•E`›w…ÚÛub‡ÜÒÆ ,<¡+¶ì²ÁhU¹Ï™ÜY=‡îSXÆh}÷]\"ؼ̿~¥ŒSè3ûîB;übÒ#ATìG7,Ñ‹~ò¤€Ç’Þ¡÷VáØÄÄ|xN5Ð}\i&–|œ +4Ù[N·òùìù‡¤‰0o8UÙêg£‰k׿&ŒåB ˜=”Ó!„j¨M³tTË¢²i_´Vg ·µ^‡Q€^Ø +\¾lìI9‘ç½áŠê‘…¬â‰, p)Ãß ˆ LÀN /EÆx2º4 š)‹Þ»çnL]4MSkõ@MiêÉ5·} ‰ TËò=bSÇómJIÜ­m»DMæn[BrqdÝžcævÚ&ÿ> +stream +H‰´Wko·ý®_ÁZÀwµ\r¹»H ±ÒÔE’¦¶Ú/uQÈzŵ,;’mÁùõÉá>¤½n +Ö½{¹CræÌ9gŽ¾½ýðúòôìƒùú룿š£O?¿ûøÁ|óÍwÇOÍÁw'iêÖuð¿÷ÎÜ^ýð¢1WwG'öß±æäò`×ÔsæäÌȇ{êÞ}Ýk]í†n0mWw]€wÞüóÐV üvØVÿ:ùËÁ÷'ßÿ;þbŒÛà·þô¶1Çïþvpôâýé žôÇÓ›+sxq³ûá»ê觧ώMèºòÔ÷kù¸'rZÚ€Žìqky­ÍÇìÛ¡Ç1ð9/ª®nÍáeµë€­Ås¿Ã¿½9¼­v¶Åp,¼3ðɸö×j×áßÓª µƒ%æÁâ×°þÜ^T»P[sx†°åºj-¾òÙàšwº«<>y,îOßn*Œs{Žµ‡§²y‡›‡z€$™÷°¤–Í$ü…ñ;Ähø·¾0ïð x÷ÒœÊ'u¾¶á À.°ÿ§ÊQ.`©l,GªüˆoUÞèUÂÌR +áë[ùzQµxŒ[“¼}ŸÁötƒâˆ˜2»fGab(h ÕM»ëë>ä +/ŽÛK],lúÓ3b±þ¹«à H_mžV‹ GÒMó ̱ å¸rT’ç„ÅÕéõŒ1¶àk—kz7«‡Iøið( +y#㑶¹ä˼¦wÎ|„Çßà"Ý«Å J × þYqùN^ßé÷f z‰BÁSÐኰ®¼|Ã@us”¹ëü&œ7`#œW¶'8§þå‹íÚOsÕ¹ÐÝ*O¶ã¥/8g, 4Ì8v hÆPÖ¯øà +¿Žs …tçÄ)@ÊçˆùŠ=FŽW=£²43ªMz|1!šK©!tcQe;]YâÏÍÐ⠸б`™€ü¥6Ù^AUI½±“2¸P7Á™0ÀRËžðSÅÿŽç„?W-üÿ²mÛjèÏ•ÐÝ’0?·¸ÛûŠb’1ÇðH¼Ë?ÿšžƒè®ÂÌ+)8Ð 'k{gÇZ5ùðwR& Ž;o‡Ø)"ÓÛLÎ5»ßõá…cdú‚sPßU´_¦Ì‘E®Š,êÏ¿lËXл]5¡ok›Àr+­Wb`PåíKhÅ'½ ¢—]–ms_Á.§9jñš€ûÂ- s œE„:•R{^í dJV©Ú=ØÐCÂû +{íø^ŠÆ” 1å!¦`9ÒtŶ¢¸ãŠI‰I¢PJŸAHÿ5ÅOÐ [ÕŒPbþŒò$œ²{yQǽf–½HL‹6PX$0¿D` çs «¡xË/ª–µ´ðj¸´¸„5¸´£2“Sª £Ûö˜‰DŠdåãg¦{–ª“½tS”z Ø™#rŬ™l`Åá .PW2)T'ŸM4©1vlÖ›º[Yx苲´ªµ´+˜›“#ñQ F‘º‡ZëåaÕ9ü¨ Í •­ÅÌÎ&'â`xå…i+z·Æ_à_Á²fÀ¹p~Õ +Áu²oN‡.µ_´FË´SڅLj'ˆæ¨f´21%þ£¦Çjš2ýAÒúKå=™¯em­ÝòeUy2ѵ™NyÜ´º•‡er—¸b ¼VTö€ï+(§½Èi·*§¯ö±L~b§Û5 5VÙé¤Y— åAF•°Ô— )RÆr´*ír2Yý VB´3$°eˆ‰ä´ÁZvà_ ¯q ô¡|ZéÂïDRv0×SÃÅ:¤¬ÎL€ŠžéØŸ'U“)n6T.KtaÞ#÷R£ÕÕqXkõX·-ªÞW]+ïl‰+硬]ß™nʉÿ¹j=ž, Qã}å,ûÊë§ôU,] ¯OÓ¤60™òÍ´^Áî1’¦Vu û‡Pö tÛJ®`¤Í>'‡°Èn¶˜5¶4‡~Äë웵Îô8Ë·ÃV´¤„©HY+¾Ðš›“Õëd•‰ê°UmŠDÁ!Nþ³-ôPb¶YÅl7 “:”º9dZûbÝÜnu™ Rq¦fw›^hÓ(ʨ ÷ñXšàý•ä(ƒé9yº¡,"-CÜÉSë)[96òíÏûª"÷ÐúX†ŽÕ¥ˆxŽù¤»–ŒGVŽœQ®H2”-ë5x`ž*¯C±¶§°oÊ¿–Bt’s-N°™±e·$y‡ƒÀþ¹Ñ C =]h½“ +©5ºõ‰a§0Lm·sÖÝœ2»… Tº¶³A¯Ç¹¥" kUEXó0Q£Òí§­}éû‡ÁMp€øïMž-ë $–*y£…/ÛçhJoq•†¨ä±âx^$Ÿ%òÍÃı*D1ö’\Î9mZâ®íé(-¬ëÆ•¶ñC¯h{³—Îrí£%qû]¦,c؉Ý~+(u×ØL%¢Úâ¼¢qÜžŽîaGŸÓÑ;5.¨˜\&Ya`DŒeòèqa2ù•oúÁ¼<¬É~B…öŸŽ}^0®ì­riÊG´ƒû‚f˜ã’ú^QLKQÝ ÓÙÓ +–þ#Ñ-E|²0·&sÅÓæ8•Î|ʼnœ'“£Še2N…æä¼Qlv¬n·¹³mô•BjvJf检g«Ôh'¬çLÏs¦fÝì‘w–_šØX|W§­òZ·Â?D¿éw;tܺzfØÀà™NâÎ —ÝÚ¸î“'þÒ/úË-„sE ½€(ñÄ*wæ:"#wð¢-ý.+–Óƒ‰'XAàFD ¡*-· ãΓŨṒJ&•*M ÓwKåw…wç4}`¸"’«žÙŒfá碰”¾Μ™g0ú%'¸[¾ %ký_.ÔMpÆu£2ÿÏ`C:ü¦ƒ F–è‰Éýo’™æò§©4Ñ2_+ËÅdúR¡² ÚÑ~³œß¥­#4éIêj3/aA_Ï5n—,U„ÙŬϥ¸äWZ²!W@âd¼²ÿãaò©Õ=VJ>.¿¦b1û&¹ÊìœM[‘¥6#Òd`Óå×ÎuÈõ t9§i „žï)aïZ ùÇwÍÛ9sÖ¬œ=¦b8oÉK|êD)»âg‰\UñGJ–cu».4Œ¡=‰´B[ÈóL_¨»=e]ÅRªªñ”“¤aV|ƒgõuoL:¥p¯†×¦sâ â\À(4¤•(áI{f•m9‰³v0ZÉ(òí&ÂŽ¢È!¦¿ +@Õleo]¦¡ìk‹pò+RN±BŒEŒÄ/ŽšÆBLÌ”k åÛDüÔè¢ý«˜à-$-ºî<ª©Œ§år—$7ľÔõF‰ã\Wç[^Íl:fÔLj8n½r’ѤSåº0ÿ$ :X Aê1Ê–ÊTX‚ A šÒ§§yº0V- ˆV8 +kgbAžDÖ£t\NúÌUY—ÔÖ³ë=èÆ%tZ4‰4O¢á ÌJe­€Adzöróß½3ŠpÏÐÈö”èöµ5–ÐôŸðð ö<”Ú„nW!„t§5œlwJ­Œ]€R›8~tBg•ðtü°=Œ³¯£NúdØ( ÕTcûä#oâ;/‡# ÂGl›?c‹~C¯[¯¤SW©w @Òã(:Ãcùê&ŠÔ"ÁƒùýÑ'rTÐË#3¹rþ漩êÿϦ"¹ïdQÙƒ¨:N“R#TMO©£‹<$ñn³M©:ƒðn“s‰ñS!%¥êAóºh Ÿ!Žõ +d¨<±-cèEmÈ›Ï\ï©Cœ™!ý±¦òuñÁT?:ù¾Å{¤1½nHûaQä÷)²$; ƒ‡ b#2k´»CÿÎü‚…¦+; ¦ôÆ͇ÅFESwœ/3 I“ª't„+µÒ }Pj|ÿ!_ú?ÂñÙ?Cž—ÐW`DgQýRµÔ®©>Åã9¹Ïòøkµ†P“©¢Ã3wd½2aǵ?7‰Á›À‘)úÂRVŽ Lyo”y×À-ïš—âŒG$ÝdcßÂ9œÖ5…çæ9œ!œ61€C{¥1ÁY0cå¤D™û"a’WzÃ7‰jÕzD™Q‹¹F÷Nûsź‘YuäÆ]œz]É¢5á&GxÞ)÷}  Ú3oŽ²ip¶’öx2çF{\4FS#•ã¢-öK¶xC#G¶ S>i’O®ÇCŸ»ÕKxðv=>l‘RÈÏ)Å×ÐgÒ{À0C "5'ô¾eNÓK `ÙA¯& Æ2Áu‰i"ÚN]Á8»(Ŧ‘'øã¿Œ‰yÁãïÒl]°öT”L V”U¦–ãC9îÀå1ÅŸdÊt.aãUßZE‡õÈr9²†~ Yù÷st †÷®IRú¬!!º¬ðØ ”x¥¼•œþ0  MœŠe2DfÎCœ¯g³ÉË'<]"£h›ôÑnGø)N?ê[ð,­³>n.zM‹äª}^zÏ÷½lÓá:†âÝÉQ¢eØ“ÂÉ.ÁOØÓ•qÖ¹·½[ƒÀÖdË,€Kç¡´5žl8)›«Ѓ0œTpPܶÍp; ´ÝÆL ój.‘“°”tÉK™,œ§0°:“P_l±Ú°Í„ +í–ú`ŒsX¡|R•®êh}!¨E3fù+ùC åµcëÕœ0ÏI¹RJžf!IýšÜ<æj¥§%@ Väæ¨Ü¥ hê¸Ôlj§}4EÝ.ÄÅ™:+Ó¯B5å¡Èg®g,h(ÿ* 8ÉGmª2V Z®Ã–[æœ*ÕÁ'%¬Ð¯zN'7ñ74®/ôÏ9-® $›5ü„Ș_àèjtL92,°RY—!Ãçʳk=t]!e~šg— ÿc‚®QÝcÍ néÃ($iG…·ØìPGV‰ i RÆ0!©¢úb,Œ þÆر(LO°7ƒwÝ_áï&ü]Çý@+¦¯±ò y‰BŸbDËfW¼h»v/C§ò½ÀÜt?s3nÛ9Ó(ßxS‚ý ‡¥…+3LE™Sb†ènßWÐÉOë²y“¬—ù±#—ñGµ²tˆX1HÀÓƒ/v|€çVO™8áófÚ…*5šRêªa8Bä£ 3Ä¡nUV bQÌü šõèÐ'Xk ’ŽC†Š·ÍjÖšÜ.<¸j´·sJfYÉ̼’é1n1•Œ ¦KÄöÛêë$ylIÞ¥MG åäÈ †î÷ò}"X…v"Xñ‡x!ã¯ZRpÅÆ~¨Ã‹âÆÑB¿¸ž)F3É8ôMŠÕ»9=ö…f)²Îj(ök D`åbÅ£çèÇ“ðS« 5”Bì}zÖ\x±V"2„ÑB1%jߢ‘”«òÒk8ÒÝY@ÄXGø±á€S¼A¢eé e+Ô—ùä,¦Éˆñ(^Í!ϨëE,ýIê «OZW©JÔð©îdyJÍ6˜ûǪ86n)§ÀyµÛüøSDËÀé-ÔXÿßÞ—ªÃõ›÷?ÿÞ5×Ç7ïÏÔßVÍÙ‡7~Žpæ€ÓäŸ`­ƒÑÇh„Ù/ë±"øSãäÃLîý°‘¦_½ŠÎ= Ï?u¬Å…+€Ù0KÙâøHÐ9o ÂéÑjÈÿ"ØÃ0É\4ü> +stream +H‰´WkoÇý®_1µ€IíÌÎÌîA€ÚJƒ¶ƒÚ ú¡-Z¦dÕ¢¤ˆ’õ×÷¾æµŠrR0©åÌì{Ï=çÜ“¿ÜÝ_ž¯ÏîÕwßü¬N^¯oîÕ÷ß¿<}¥Ž^®ŽjU/MãàkuwqtòãûZ]ìŽNVú×Ziµ:?ZÔË–¬Î”|ùªü²…=ð¯]:e{ gx§Œ[:çaÏöèŸÇºªá·ã¦ú÷êoG?¬Ž~xoü ^ˆçàðüëõÉ_·µ:½9úûÑÉûÛõ5Fúz}}¡Ž7׋_V'o^ýtªZm²¨OV+‰-§=ƒ0{«Zˆ§qð…âqUÓ/[u¼T¿T ³´êø­:­½ôê>>y§.«…n—½:¾V[øÚàWxæ–:Þí*íøiðÁMÕã®kµK¯+S/uüQ]WºÃ'aM à‡Ee´:棻¹£³mj·©4†}[,ÆŠ_<í”@q',¸¨üØùޛѦÄ&O}FhÔº÷”XÍ¿é”ØÚ/û@‰]A$p…O•Çp6˜^úöV}ÂÛA¬k|‚±©ü +6øS‹„‹Ã)2>ú‚Åh1xìæÑÒSÊËGN‹34æó¾²üJ ÅwWiÍÁà'ç<ïT~0ÔK`XcjaëYµèñÉl1Än0Õ zËNaM:< “Ðaný-ž¢6ê¬êø$‹oLQ/ 5M~ªê~6ø ÅÇ[ˆ©—¾X«)îø’qT‡cÃæØXÖu7ß›e‘pU-èÖÃ+]YŠ Ç.€] ¡ÑMá”Ã%¤’,W¤mwØ$ÃûÁó ¹˜Ï0w[AZL†4,6ü}¯ ÄKœz¬€tV’,¡¢h Àþ~1qü ¤±q¥÷¹©-~¦—„´aõÚñBMé¨aYýmb¼ ¾-~|h¯ð1ÕvÃeÿN£ ˆ@Ÿm—dêÐEÜ~C̬fV0ÖÃ!ã +ÈhßÏ@¦…óëVXù3$¥Ã A:L +#ý«°A¼`ÈèE¼öçùDÙ0ÏšúµB¡ËßUTŸ¸²Ù8) ¾±™ƒbÁ˜ì_(ªQ“Ò™*A9¢ãó ÄÚ¤ð[¼¢Ï®¸U'òBϘÍó˜+ëð=çÌyWKå•Â3µ•]æ)Ãøç‹ÔJAùXè^ÄKâëùçï¹F>\¾ä£¶—‡ˆ"Á,-Aiÿ‚Ùm2&¸ªŒÅô=<™gF]‡¨c—3Ö~~‹ël¦È\‘„íÉ%&²0¹r?‹uå¨éjfE³‡%g3œØMË<ïÉ»`P‰ÝHz.à0-dˆPÁø-‘2GJ;P.3ƒ…ŠHI+ý)ÀÁ¿Ê„-¤çtÛ•tËd‹¤‘;˜q~(i:ÓŒëFx«,1Ä¢bSx'áÍ)rÊ«TW6e—W-«ç°½‹+MXŸ½¬ý$ §cëÃFú¶¢ÿ,3zbÂ˽ú*Î;xè/ÿˆ êJ,ùfK`X“Ž=O^—8VdÈ +û1FùyŠÔ,&;`uÎ]¼>ãÀ2unExîBžÈhP깫ƒ‰˜dœÌ—³¯a¬oTg2ï÷é=éýÌä$é" pc-ÕOd]õ^x”1îóéÙG2µwF‡çÊ…Ï@…ªiZÜ>-}†h»Úê¸Àý“i&²%õrq´a_Ì|ÀÄÞ ¶¡éž×$…ÚcgÅDþËSu<Ó$sÊe€êgƶèHÔ Ÿ F¼N!®€HÃ2.Ʋ{?ˇԵ¯0 +š3£Úä—wYEEK¥M/rµ›:Ó‘e‚bÊœâ§ÄA2r%•}<C`ü ÆqsŒS·h¢BãëeÍ…]Š‘²òÄŒ:¢{* MP×ÊDÄL„Oˆ5^¨ B ®Õ§Ž£×Ú˜íÉ8ØEÈÐÃR£×r™=Ã×ÇY.Oš¨n…ã +ïÕåteèŸp@éøÚž7 ÛC©¨g膣B—~û¸SP`ŸÕ™ZÈ·)̸¾É¼ñ§Ê¾uÜVTiͽzɤ¤Z}ËÃgO”°’„Ïà*Ð-xU‹Ÿ¦gKÕñcp*&;IÞczF„i˜,ÙÎ%Ÿyx6Lž Ì6/vo “„S®í3ï—Œl6ÎYötû(ÁŒÐRèl;¡X¤CM&‹F×~ì Ã¥_ÄÝÂMscIJÞe}0Îãj4Çè}!Š;lQú`óoõƒ€ ÚO±Õš›ìƒ¤#Ž¼ +ñ€WؽŽì.œ7|‡c£):Ew~¦?`vL.®t³]¦oÏ´+L²{ÄÜ°J³DÁÁÂN¹¬œþ¡jx·/gµ\Qù}»¦™ÌÊt(#Ð`ÖQoª¿. |̘®ƒãÖgóA¹Qï“ZobBò9j$J¼(Rv9s +ñ¤¡®Â]Œd‡Ì–T<£Ù&Î6›LWº‡tSª|cÅD Û5 1I§ÜŒ¨v!câ ÖŽfjIü·V™êk³A,ÔwäRâ/)¾t#5Lúc 0­à[O9Ëþˆ‚ ÉçÂŽ 4øñpиR±rÄؾƒa³7d ¬«ÿv´?ÌDºÆg&r\Xõ¿õ¹‰4T¦h¤º‚hB_oÒ­^¬V›À}-@ˆ@(W.hìå°gg¬¥KÜ‚@" ©ýSê-°X÷™÷Lø4Ú÷3Ò+ZÙèåçQk>VM‹¹^@Ÿ!}÷ÁFË%ÃZôÓ'åh&Â¥›¿@¶1PÊŒ‰™±`t‡TQfœ$dYùѨ!^0Ù§hUÈšðç;$ttß—×¼`+͵ãQa'„y#¿ïH-\¡ÁÈÆ\^_ì¾kSw]Õ|ÕàæûNnÙvCXß,{Ût|Í7y?t8Aõ¦ÄàPÕs*Ÿ©^Ꮃî +Â,&:¼A%éM”`péÃ3|Kf’—R‘t§ÕŸå¥ò<Œ©`vÂnCA<â§ÎÝò¡”Ö¥ -]*b¯ç±dápÛ´Á¥í3!Û窉œâ‹áщùÊøãÿsMl2×>—ºI1 GMSŸñ|ÛH±x1Ô¢ÓZ‰WÔÄ7Øh-}¦)ÉgþAZø¢÷Ñ1éHNM–-ô&Åí`é•Äf›­dv#—æ:Öè2‘°­4J®›.ÙZY÷ VŽû 0šr5~Œ Ô8Û Þîy§Öê.ŸC§*âJ_£âfFä(Ö)’(|ò_©ÌÓ8ìQÐþ1ëíÿ¯6~š}¶W]ÂM[eÅ«É¡Vੇs3µ?¸¢ S‚ ¤CeFB3²L9 +Ð5ikJîššÁXêöà Z¡‰¤Gï‹0|AÓï“cLW¢é%"¼šùPR Ï ‚äÛÀï²Å– [4ÊðÀ¯Ë8fÆ…8{€©Ë‰PxßÒ¹Ðâ×"ΊS?¡}’®…/Á‘ÅŒ4‚Ë^Fmbò#‰ FñºEïT4ínñ‚½x0Ä +9{Ô;v\tQ™³i„ìÚDvó*frF òÀÕ‰Žp+¹(x­G +â{ˆHVì*ñ”båcSP¥±.6wKHs1r¶¡±»U^0â/M§Ohlœ—øäS ù £xWžniÔÓa¦WMùHÊýBŠ·# ð3œbž¶ÔSÆó`ìµ[ææ¡×vÙŒÐàùCè‡J]¸MºTË6SëœÆŽ8-c)NÅ^ñR¨’~ʳ¾‡öpû`4T×wÂoá&§Í0Á•ÐÎUòœ—K—ܶ…ÿ +–â9î1 $¸žøÈYÄ K‰7Úx&3cÙ£ÈGöHQ~}P/ ð`7Û«îÓÍP¸uë» Â8‘B-o)—×]ÜwðÕ6¦gOÎéR]롽³‘¹YX½aK•àßÃŒ3æt…¼Bmmq.Þþ²'´Å)þMmþ€« ÷ZyŸ ñ¨ ,ééæøú¶’EaiÛï$ëšâÀ^§Å›Ù +ÿÁqM5¸ +Œg=eGÆ Ú88j„ºŽxÌ ®ÇÂ:Nó.KÍ ”÷«Š„–:Í÷¸¸<뙬R3ÇzQ^cXcŸ&A,žîä/àãIŽ ñ„²Îs$e—ÃçíÆÒîÆ­<ê$ÁyQŒ&…„ó °:옴HÓ„µü³t"Ý}ªxbl¢Ol †ænHÃPHr‰,.êY¦ìî¸=ëIJž åðw1ŒòuZcôE¨ï9¿VÓ*h6Ža +F<$>øû®Fà7mgø¼1?ÕE—r\!’©‰Û 8ùT{ÚšÃØkS^›sKÿ\,´¸Ç#°†ÍÚ3®¨ç$õtªž&ÛÿƒAÞ_r^5 +ÓQ‡ ž;w~I‰Ãì (›Dׄ¹C9îyÝ)Q>_¯Ð‚-cÝfw´3BÁ‘ê™ ´Œ¼ÊÍCkœ”¤ÃÄ/}ÿHlU2{>éÃêØ»ÄZGáåµ°ž…­'ìY`ŸùëßXD-‹œ¼ÂaǦrœ1ÇT8×™8ô¸? ²>ä¬9ï¦Ó±Tš‹q/UùŤˆx…tæŠ}fß׎ÝfÅ;QÜæÕ¿â:aÏ®ö›<é`… "Œz[9ˆ‚ ¢…dÝu +÷XFZ>“jw*$Ê/ lFÚPEÛzÀ«Äš,æ 4]aÜÖûêºd„GG g¨¹g„i°¼¥ª±’’Àºp•.ìÊ(¶F릈S 0~8XdŽ ´uVmL=Ó>ç€íBã˜ûÔbg¦r¿U»ßÝ5Ä.­¥ÏD×ÙÒ¶³Gì®Z߉ È4Ó<ÂRÜAï½*¯Š¾¥^F†eÃ#l̇åâˈ¢Äqƒ³ ¼2ÃÛ_=z©ÓÙÎt³‹W8|<ÔFŒ§$Ýȵ”9”)ZF¾-m)ŸåÂsÊ›WÚ±8¶«{‡ÆŸ‰ò9n*™UrŽÊ û؜皘Ÿ¶8ÅÆïS×¥ +ÊüO4‹â½Vó;Î÷»øsù@žÎp÷ÿ¸Ø—Y¿i¥ºœýñRæœ +Ú +ùZ)˜ûÞð—®$ý¨àû#G³Ïƒ]Y&< Wqw/Ž´áG\w@45—¯þ™ãþAþŸ0Â|ú(FÿlìhA›× Ýq|áìjÜk¨ö:TN‹76ÆÑL—«Am6†¶¦ÉF󴆿ª#1{°~ħm‘æ>‘ÀtÇs`Ø™Éð*”/º¼%f ˜ÏëwÙÓo¯éÞ½\¸A§(’é?pþD¢~á…ä ¥oˆ?<!õWjǸ?«\[´¿ËÑíçÝÐvX1.©¹°—†TWQ1LmIQÐ" ¨æ¼Oèz´“^ ôïÐ9¯DR'šdRx®ê£Ô­âÛp6›îú®ùÙ01]½#’à#c*q‘¹¹;¨È•Ÿ¡„ôv«ò`)L÷v@òkàøxï-iôí»aðø°oT®û‚]$›QÉï°4\)iÏlðÄtS¶hP}!+€%!Í(¯/ðûÙ<’l4™¦KB"î’:Zò3zXKÿ©…ä•áA¼=¯çF^Xu‡u؆:´@Ÿ“ä-9$-¦uRK§ú õã{vßM=ÿ5×ü î4N˜ø^8$Fy3`Jóÿ´hëiJú#¬»-ÜŒËf ½Å pÖ—jvºeGÎ~R°þ;ZêN[›Ê–¬‰ÏÒˆÍYèÓ~ƒ4?•ÕÅùÔo;£2[Ç0£Ûœâ«Q—¯¸þS¦(e¯|TÑ[,PØ çÏØ“…p‹‰ïzóz˜ñ(£Ål˜¿¾f´Çu=¡;öFim¬ Ì¥‚x¼ß²ÈUâa6A•wÒª4¾¼jKö‹@Bûü~°(Ä[î%½+G¥\ž£‚ô´•Ü|5ÖWöZši°;ê‹+ʤ ¾È]— ‚¥øè|*J"³ä üä8&‚÷Ù•„” ­©:áyI».¶&?v; €&|ÆWxS|dÜ™ 7sŠ–7èlÎ Aõ`J> $mx¤wrÕþʨ +ÑÀêhàotXMá —d®PQ(ÃàèwTdç‚ÿeHøÒ²šÁÆñ0`n{䀔dô˜šI5üM ÖX“S ÷H±N”ÅSsÕþª¼w˜%ëÙ…¬`"Xog""a…–°†€Ÿ½ˆ™ Ìô]Ô¢‹ôF4O§}h]ù÷ž†Ío¸½B[i'{³l ŠÚ“¸±c€#'ÇFz!þmdˆ(âI‡µ‰©&$é¨þ G›ŸÍ0&h T‹f›Û‹®øiXzB`*Mž^ñd^³Ù¤Aë‡ ­f’*:'L¯¹Mjã—á¼Il‰®ÏÅõN’ø„õ;¡y®ä`žŒ¶"\¶Yd< =ÃHØIfnˆÇîŽËe+ø™vbÞæÊç±Ç6 °Û“m*1>Îe‰G‚[ø}ØÊña=ò¯T±lvðèTƒÎqžxµH–DžÝ®ß{7lu.8›Ï±àž k D˜kºÂ-Û„u\XÓ>°‹¦Â¨xº›ÝÖìÆrG’›ÝMnKm.œ( |©*ò¦¤ˆæýDÉp]é•›‚ìÏ+û°ynŠÿ_€×´ªy +endstream +endobj +85 0 obj +<< +/BaseFont /FSZFGI+MyriadPro-Bold +/Encoding 183 0 R +/FirstChar 29 +/FontDescriptor 184 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 185 0 R +/Type /Font +/Widths [588 588 322 202 0 0 0 0 0 0 0 0 0 0 0 260 +322 260 331 555 555 555 555 555 555 555 555 555 555 260 0 0 +0 0 0 0 656 604 595 696 534 527 682 689 285 0 0 511 +846 690 717 581 0 593 540 548 682 636 888 613 0 0 0 0 +0 0 0 0 528 598 451 596 528 341 585 586 274 0 0 275 +860 586 577 598 0 380 434 367 583 530 759 519 523] +>> +endobj +86 0 obj +<< +/Filter /FlateDecode +/Length 6178 +>> +stream +H‰œWÛnÛH}÷Wô£eö…M °‰g‚YÌd±‰ó°Y d[vœ±dDzãõ~ýÖ¥¯$%Ó‹1%5»««Nsêäo÷×—«óñÃ'ÿ'¿®žoÄ?¾=}'ŽÞ.jQ/´iàk¸¿::yÿ©W»£“¥ú³J,/ªzQÃ’å¹ðOÂ-Zxþµ‹F(e¦k:¡›EÓ8xgst¬¬\~=úiyôÓopÒ78ßÇwa{üôëÉÏ›ZœÞýóèäÓÝj‹þºÚ^‰ãõ¶zÿVžüöî—SÑ:]F+0¨¿0LÅa.}”µÐQ€JñR%”qð¥­î}ß;Œî_ÇÈJu 'Ž¿ÀC¿èÅñ5<4 %Žo¤R‹Â²†Ûÿ.+‡ >ˆ ½dýZ\I®¥v #ŽdÕãß|­p§{ÚÖ?‹½ +‹·RYÜíw‡óï¤]hq|+Uç7Ä7¯%n|¿ ä\v¼ˆ>o¥¦á%y"àºV–ÆWhZðnµÁWÛ,»’Òÿ]:iÍ܈[ ~¿ôGíð +Š®âðïyH.îlqfÙø*hÎJƒ‘.QǤ-¦ãñ£sE<ûpÇƃÆPiùô UÜpb‡!Ć PÞ—ÚˆÀ£)’7bܸá…,¦~VøôMrc+ß̇-«€Oq[Õ¸>ÇUΔ·n +t*íö¡³†´ô}ÃèÌø Þð}á0+OÒ4ø”pAHMI2”ÖÏZkÙ5Œƒõ=ÚàÞO±9“ÌŒã iÇu™àÅg©{O‰± jC7ÀÂ/wù«XKqÊ^r:iLÝ5YÃù>³y$˜Ð~Ú㛉à‚âi‰§²äún÷kÙâNWÒbàðâA’&ÜŠoxÇ\œß³TÔË ‚¯ 1WÒXÝïŠë øHc‰°º)q‹é­XF· õ8LKÍ Mñw1ª%ô+{++ƒ¯Â_ÖEÌS"Ѥ˜:ám'²~÷Êè˜ÄX˜¯‚M"5ç¿È$§˜xõTb»"J÷…&ÜܹK;¯&\d pÂ)Ž+|w=z8bþ]ãïIS"Fž¦¶d«÷©Õ •I9¾_æ†tˆ³cÁ(„ KŒ±r£|ÁÛR6¨Rw¼v—È@’€9ßN0Øo˜Nq˜€º‰¾üêañHUUŸk;Þ…º6H6ñ=ž¢C ^jbA²/Š}”¬Î¤þaµ×Ó5ò,ç:°¨ÍXÚRc IëWà¥+ÉÇvûðÒ´™#O†°á†gRäÈ&fM´Ã`òð’Û¿ |®¿úá’k_rÚgŸj!ˆd@B3‰ÔÆæIà [a{¶Øž„“X_V58+ß9ÙÞ}8ðÖ=ÖgÑí…£¼™Š”–hÄ'/¸rïkßjÐ""9w¶2 ñ ž>--~<óôyƒ12³áÔ—ôSï…“5™%Êf˜¡@30^iNs$ðqØGaJ ^1ÊþëÉlQ8¤_ZŸd”'¯Dš 4ÓìËè·OûÂkŸ õ RqDƒB7%”š,¥ Í5rð¨I +õboʱ¨l:ϸžL0žÜ¦¦¸ º×7¡ S"ü¾¿KM¹ŠÃÈ5ù€?´¯ñÚ¯°ô9§'r„Ò4s^~VK‘Äsèý"ÏMΨ¡="A°‘~DëÜhا¼iìÂ{ò'ÇȆåœíŒczÁ”ÏãXåTjoé/Lá“,ô‡ /Z›ùèíê’3:^ÈEšš¢ÃùM¢ÎÉ ç#@+Ф¦ßd½X·¡k‚=íˆuI®‰C “aoÏ[‡™3ldŒa¿äXŠ¿IÇ[)@LƒÕýZÄ ^ŽÛ'žFj¯âø KþˆÓ"9MæɈ&ðÀ8ûÞ®wϯ…*A¡µXž‹Ê?<ÀzxØ>Õ¦ÀãR¢»ÝJãx°b»r _hn M™EPºt«ç¨T»Q< ®µÊ&£„‘|àuTýñÄ4µ±ÿØ톂y X¸+TŸï,êTþÏYé#EEˆ…šƒà#:ˆ‰|µç’ýð£AH$ß0²È°yÇ9ºbjݱ:| Wì¼z–­Äà{lÈ,™·ù”3'f ÇÊcŸµÙÎ.êÞ¶¬§#š¯L¦ÏLBšâÚžc]³,­(=>}õ«€mGÀÞÏÁ¶k‹A)NâFŸÏ¡ÝKp¢´.‚Ÿ&S›O¦Ø@.ã±û¡M£K˜iy‹/ˆç]$N¦°8ƒDÛQz€±N0o$W †q3âŠôÐYÚÒàæ½.Æ7¯ØÆÔL™|ëyò¼˜_í&«öÉRý ÅËKBj­ªôÀ´ÆÐ`pé£ +^ƒç{˦áÀwêe5üýˆRñŠë-/ØÞn©E{Ju5 Ô/´Ã`áõ­aG +Ã8𣧯éõöj7ÿú®¸þ²æÛ×A`\G7Wcàã8kàîý‡Í5¥!·Ã[V¼>ØE;´‹í~»ЭH’3U}!Éc“)²{•ôL\Îü$N)ˆ\î¬Ó·Ö.s]â ½€e†®³> +Í7ROÂk‘ò#âÜ'ÐÞ·qÕÊsú9gz $ß²­ÏWÝÝ„`a¡þÇ{Ù,ÇmcQøU¸4«D§ € ¹¹’šM*åQ&o,Y²•HSI+òŒóôƒûƒ‹ €h±í©YÙnwƒ pî9ß¡é'fÆOŠñ >ï ü9êÁ߯±9Ç—yji*¼ÚÁNk´Üæ%µGSæ}™Þ”óávÑ0/¤ à ¨ÛÞ¼ þ¶ÒÞæQ?’ðV8¢OüécÕ…á9ãïë-7ÏvʧO"Ù7jûâUâ¦æTÆwRí$¶dÙª½ÙF{›Oµ·) š3>ÿ½dݶÔýj\òx×Jœ òŒ“Ï”lìê×}K¯ê +oâ°;„Å@›§Ê'üyÑ]ƒ»`¡ÑB6™R ££kòüdþöc—®ð˜÷ÃúîdÊà‡ôÓð»I]LBiƒ#~ã/–Ã>W%¢_wy2,˜³oþ‘Þós}RîœÒm]CNÛòϽÁ›QïY uÄ©½Ê\'”iÁ8ƒ“j٨ݩ̵hÖ4,Ø.ÁÄ‚„WŠuÀí¹1Vcm~:­|žVÍÖ¡±`°±]õŽ˜¿fT ö“f¦ž…DºD/)©Ñ(XG-¥íyXì’³³Ò"Žĸ{òfLSdò4zoøPßôŸÿVñú_ù½_µÓó°EÚ B(äñª)>t×·ûÓy5mÕ%YÌ!D1¥$ CV-Ð eC”U¯ Ñ›TÒ²µw{#ù}÷/žãm°q ¿ÂÔû!¬²êÝÆ&Ë„…ðöBôvÛ†Œ´7+í­ð¯ï‚0h“¥¦»~Û[´ïK°Y"ù?z¤’pÙ†ù‹»›Ô¿1•ºÚ´•ÎÛê'6Ž)š£Õ`,¿>C6÷ 7±>tÛCRmàŠ"DFìç½ “Ý7==ÞþÒŒE¾§ª£‘í£(û:,¥æ‘‘éÜhê?ñÒeFYzIÝs–L|¡´O¡ jm`‘#‹1[T>'—£‚-[ufì¾|ë3ýÁôîZᜢwí†t?R4â¼ImÕ¢Óù)÷”õz¸_‰Ò¬' ³izâ"e ìc{©*O.¡,(Ö`4~€1\3»¤’ÔÌÚNP!5ÅŽ9Ó†4¨ÿ¼t᣾‹jc ’êÁÅðƒÁoôëÏ u—9PtÍýz› +ˆ[z ü•½v¯­-¡cf6Qz$†¦ÙÇ™úÆÞ1éÞ­–xý¾øÿ´Â‰©¦ÍEjε ì†N>SˆÅ„¦¼CT¨ÛÉñõí’Lìª_ñ€.¾­øÍzýÊr@%t·¤|fa£_[’Š +!³S¸uØÄεS6‰†Äê?û•J¦Ï0pí¹ÂÓYÕ=audQñ±(U6ˆ¹ ‰]`ýõ±¶2ôÂ!gÎr¢9u5æ·P u”6nÐŽ’;íVÊ|¢‚AF“ÏTòjØ]Á–Éî&rÕ¸N4‹·¿; OßünÃ[‚Áe©;Ú–°f«ŠCÛðˆÅ^βԬžz&À¯è  .s3‰Á’à[o!tÂ"COQœœ°Nÿ,¼$Ý ß »Z(ä+ÆžÈJŸ{’hB{‘'Ò»ìQNÿ„µpO#®y±™KLÈYËüÈ™;ŒN’—¦uÞ:âŒxø};ä‡ï—¨ÉuäZôf¦E‚dPÖR")m$™<;30iÙTåJý]ä²EcÊB {6p˜fâ#;ÏÔ½hŒJª-/»ËR‰K^u)¥õm9Hj[´åCèQ^ËŠŸhÏ­qŸÄ;¸üÜòīιPÐzÇS ÝDc¤¼§ÂZ±m;K:qNQþŽ¹ø +ž–Ñ…“šõIÉ +W¬ð“ V¡ èÒO:¼¼I¯JÍn£·–²†SXAÃûÏÔå€àJ·þõÁÛοLÜú†fÜ6ÝC¥é„ö3ð~ÃIš²D ~¬ÌP.OpÉ Ø¤:4¾‰™HZÊžê4zðpƒ_6ˆ{ÄŸXx™°2¾ò7t!âÃUŽ2Ï=Ø+劚o8œ’-{ƼÆå÷ëgÊýÛ6ý{ô +0OùADÀš´šîmoñ–/{JÀ‹à,ÄgŸ¢ËmWVh*Ìé±br0NøK''ljÄð(ÞÈŸÜ&}t©NfÜs¼í÷œ8ák™ƒä‰>d~þîUïØƽ,ÅæóÕ»¾Ö„†î$Ûò“n†»¯ÚçVá›]â`ùøªÃ¨‘z15ÃÒá0ÄUÕÌ/«†)Aù%¥zT2E‰(:ž9¾îˆ^ñÐ|è2S0ÖFì)´2ÇåC%JóT:Î~1̹––ÆP/ Ž_zïµÒíû,¦£íÿÀã*uN…M6±H¨Lð%n…Ÿà¸¼ +¶…D~Ý5L&Rd=7ÿï!úØØË‹WBÚ=®„œ˜LÿAjL™ÒjøžP:8é4±N91Q¬!£EÉ(Lí!H§¡£Ð#×mŸMrå™à±[š‘Ð8îž/vÍ3üTŽTùYÜ §~êbuËQœÅˆ‚;,9S<øô^Ï<9ׇK{¯‚ÿYÓŒ¡¶‹Å1j'™,n¯B9‡…Ôc™1Lnz†fÖY[Š™V…¬áéè–„{ +®[]áŒð‹@v"C^aûYÉÃ×±¨šwƘ~™¨ï܆oyÅ!ÂÚÿ–š& ‚߯—Œ‚­\t_z³êÁÝFdª¢K»_,• CÈ@Ýï\bÅV=EY¼Äˆõ¾H¸ç£õÅÔY<œÔR…,FøÜžî°üzOûeü8·šp¶W7ÿe[AnÊ™ÕbÆ܇ópŽÜÅÒ…³#€œc–;ˆˆ×’ÇŽTç(`1ñÁñ°‘NžP£á·¯ù9û_vÔ3ï o\Á9—»1<.›6ØáÛZ,‹ü%YXðXÒó@P^ +û‰Ù䢫Ò»•«á rÉlf®#¦²™Y Í4W j4Ž,-e‡M{Îß.Äv\hÅ#vâж; w*0”,,üÛ.á+NÉIÜjĸŽ\_4\ëÎ*sÁ]²2þÝŒÔ êš…ëXšn„YA°`-ùAŽ™ÄM¥ˆ—㻕ÆoJV|èFŇ •Œõ,¯¶’í—bQ‡­~|ûÕÆ{§*Ɉ2Žå‰ÞGÊý‹åŸ¿O4hWžÁ gðYbŒ&$BBM‘Ü&øMî’Í…4Û–BULT'|û"ÃÍ{N‚"ÌFEMÄL1LLÓ&1©{ã`=Ê|S1ñè+u­úšoYbØÞÆ}íͧö;: JówÄ—°ž4J'@tÀC%³ïÇTå›iïF½$éS繧{¹Ù¯)—GšÖÓa2N>ÓSÈ’«_÷-=åDyhÉuYQþ‰'ë•­uÎÚž¨v¥—(H‘؈º÷¢°U¡&À.&*A2VmãaÃå,…+dCs9ÅM…9U×5PÉÀ…šú”TBùš–ÙpêÜZ@(à,Ð\Š Ûo=ƒè²= «Pˆ~Ægçtûˆ§x 1lÀåê™Ý¯Q_ÖÙȘc‹1g§ó'¸JªJDÖïopßü‘íŽDÈ,U€E8J¼ÖÁ†¦™uD3X/»ïá— 9#þ‚ü¢{÷ +ŸVü‰Dû7®~ßãÕ‡¯¼ëág Q}ÿ`ÓS +endstream +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 5452 +>> +stream +H‰´WÛnÜF}×Wôã4`Rì&Ù$ ‹ÄJ /œ,Ö™l6‹`$d%ºe$Çñßo]úRÍ‹Dg½0`I3dwÕ©S§Nux¼ºØ=ª/¾8þ‡:~³ûx÷þQ}ùå×'/ÕÑ×Û£JU¥­[ø¿iju¸<:~õC¥.ŽŽ·æ—Jµ½8*ª²ªµ=Sþ—Ê•¼ÿº²UÍДֶNÙ¶l[ïÜmL«·¿}³=úæ;¸éw¸ßÇwáxüëÍñ·7•:¹;úçÑñ÷»[ŒðÍîöRmö·Å«¯õñw/_Ÿ¨Þt"ÚãíÖÇ”Ž3Ž} á ê Žº…_ Žoœ¶¦´jSªŸtaüõ6¶4p‘†Ôzµ¹UWºhËAmÔ‰® ~?áµy«vÚöåæ^óÛ÷ÚVe§6=àwxX/?.ú²Q›+Ýà×;<N~„§;¼²mð°¿éÿlÿáy€>/æª~Ã:¬§²„á/M¢råPA¥ˆé¦Åø¯´¡| pûZÊw@€·Æ«Îtßq·Þ€ ]èÂv%½Y˜–ŽƒÿÏtáðÐG] øÖƒÒUéÔæ\[ÀâÿjñSã§wÚáGÀ¶€ë …Ñãµðz†­Æs>ê.†|› ¼ÑPs„½Ç¿(¸ !l‡RÍ®ý±!+Jg¯-~¾Ã°ñÌþÞû@?`1kdŠÃ¨"8þ뺇cLÂÐ#a¾XŠ7BCÄà\1J¼4† ó +6–æ&å–jÔ#~À[CWˆ11Óâ#g^–2¡ïÏÕz‚€D·~žnn°eévçƒ>(D«âbŒbãR €Z@“K¶§ +âdz‰74ÿ†hc¦pŠuølž0ÞQ£ lù¤1öê×TÕÈJ¸ÅZ&®‡ñ²IòªsH¥çOzOtÊø2vߢé ‡×CJ_ñ¤QÐqílƒ -°û@oÙˆ„ž‹×Jö©àŸ¡\ßûv»_O[I‚sæ9ÐAèUçµ7ÖMPm°ÎuM}öž¤Ù‘zšZ>€”Èqa‰xC W“$¬|ÑAÑAèPá}jcîÄÍúâ¯6]êNRÂ'u¤ 9ߥʇ¼ ‡» ¥3_¨S"½•rÇ[†áu2ÚàW–h÷´™•§ã‡M¡R­ï5RÑwQï§ß³x +‘ãòI™ãÌ|álL4õ³[Ï2“³la²9°E©!dxž;üy`ZµþºÃáb*šZ/@D +Ó‰1xÞôY§ËoQGÓ¥ù¸ “ÎϪÂxWà±Â"R!dzþǙɴ"gk2¹:ŒÑqá‚ØÄ£a¾tbêbVÎ׫_bšI²û7±d_(ÐT9„vê:ŠWÀù§k´ŠÐS¦ ã¹ÍºþºùžØÑPª—©…”"SÆ ÿ*(ãý “R} ö" ¥Éz3‹·O"¶¸Ÿ{ ž(¶<©©ïtW’Ÿ‘O4‹ûnÆZä0§ùlÆaŸÊ†J)uâ)r‚Öy«äb‘&Š¥"s:V— Þ¼i™èUVaå‰Ë—óò㕦Åo©¨~ÉÀ.8$#㼶¹Úg„4ö¬~Ú~K\Y_ô~d„`6ÍV½ja™SZ»ÔwÞªr“ú{ë¹¼£åý\‹þ­@OÃÂüy!ó~7¼ò‘Â9–B¿Mè^[.À; b^‰_S™k²^Å f,’&øï ¢ÓÍ(º4+âŠÂq¼ŠA5Vì.ךEû\ÅfJ¦•Å¼’¶ž:Ã:½h»AXèiÔ^Wçû™ô¢‘z™4†Šš#‚Œ{¡A6SaMÚ/¯€ t3øIÔa$?:®ŸóAqãºÖÞ°Ü—LKÜ9ÞÏCÁh“ºóÁ¢ÀˆÙ;g]LšÈJ£¯>U¯ÏÞÉ¢æᔼ–'¨¥5 D¼žXP…ÜÑ,Ë5ÂO‡aZ¥XãcÌP +žÅ1û‘Sõ«Tø¨´ìqTšŒQÄrŒ˜Ÿ4i4ïæ,eÚc[ž0ô€èë‘q;¨$¥ãZìž’ï¾”¸¯”¦ï§czR¿ÀÀ¬ñjÑx ?t<&ÿŽ›µ*™Ïõ¤1Ë;¶µdO÷’ÿ+ Çû”—ñÈ$Äy!(çh4‡‚÷½Mà ÌMŒEã„8„‚r©rÄ@H¢<Õ5 ,ªã›¼YÒ"ÈÀRJ‰ƒùlÖ–$°\_=+ªw¼5¿eÔöâÈ .Rmª"øÏÁAY©Š®ÔA€ŒúI[DY섾ã ×KA£Ãxí®9ìOõc³@_ÂDd#h½Î5¾µ²GkÁ:XóàŠNNÞ_·‘Ñ›—ljȸŸ}?¨a*¦Ò.Žƒ„M‰èhÙ¿X^Ÿîq_ƒ®wºŽì×^g€o+Æ`ÓÍwO3@MÝ1î?MvNxo†ûHøö/~f„EAÙˆvãaþ9dK6m­t%{·IWtOtEݠݘ +ÂÿoÚßù.¦X­§J³¬¬ÍЗ•lF°NÛ_×Ý擾m¨×AÞ‘zÉÉy8Ú@N5*µg#–`OàòsÎLîFxml:·ŠŠ<Ún|¥¢sLi¾‰=´ÉoàσGÆ{ŠÉ³ö$S™·h3#ìßž_3kka—3”°_•à£ï-^xH>80†‘ÔR¤¦&ó² õ=~Ñ­Øg­òiÃ6‘k2u¦«ÉP¯°‰’ ëmbÓŒ’Yà,º¹MtX¨—^{ÆU°H ×+"–èzn™}•Ô%·CÁ]g­¾ò¾ˆÖQ'Xq“†wX]ŸrÏ©›yš.­‘§(uƒè÷:—³0v8f•Ôï¿´W[oÔF~çWøÕRwc=cU•(Qá©E…Š—J(I © …&¡)ÿ¾s®sfl/^ /¥IvgÎœóï I„PÜ80k¨u%ç¶H!ˆØûèŽÙöpV¤“ß‚vѲˆN§¤‰À¼„^ÁA>ÇÆ0¬`#ôÆêÝs}4nÆìŸ[p{tna8j é‹ÏhÇå[Ow­8ÃS(וL!s¡T„_ÿÜÏ픊)-PFŽüņ­¦îÖ@äYÓ¢m@Û¼ÃNüsœ û±‰=6C×)ÿýqø©Æ-ü½®=ôÝè +]QAš¸ ËðŠGw–z +8=­;DÏGô#ä…ÊýŸ½øÑK¡äXÈ(ß=©~­ÉW%w‰­ÖøZ O³Ø3nWRG)ZË} +÷ « ñÏ ¯ô˜'æÌ5ÁY'‘e–Pö,óv[&ŽUmP»²ÌM™ô=¯ 8ÙŒuÆ £!Ýa$2‡‡ Ǿzt †œ®ÖSDK2Óoàbs;”º› ‘jÍÇ\&RWÃ@°Kkƒ†r€bFòŠ:×u‰'tÌ1ùõÈR# oZ°£züQj‹R€„|õF«Épµà¹ŠãÕ#’ÅbT„hršcpî/Ó&ºŒš®¤Z7òƒq"{tŸ)ù½Ô30Š,÷fäŒ[ü•ÁÍþj2G/€JVé\çõô®çÒW0{nÙ+á7‘9n6¥ÅÒâ)Ü>ý¾Ûæ÷} Œ°î÷AOâ¿ûÍãñéáÉ‹öU[E—zù ®Æ†:m¨¢¾MCG {Ù%W½Ò½ª)Iàª`Þ ´¿Ž`Û?oùAm’X\Bþ1n7±ã•íy…³vd„.kIš4O5·a¯ÑhCãš°¿ð«ëÚmâ§qI™Wég.BÝÏs”Výz{—Û¬Ë/jr$Òà–™Ô…È' Ý—%ÈR.²WŠHc&¦DÁ»‰Va³éC5‡c«D*£n—¢nŠ‡±Ê‘\êÿïç…|zKæï#”‚Ô„¦J=AÚ9\¶»…Ó“ÐÐÀ¤UøNÉ·¤Jå´Öå{~'ïuoöz»¤z—Kj»¢©.2…ØL–ÆÒvøÌ ÀX»ùK”&ª_êÝ/™I‚×ì_C\~™¸p/2{è…˜[™h‡†ç=(jÒ°`•¥t]ÁŠÂÎ_“Ͼäö)ľg’p.éB=[” £)¸Ø#‘ßÍàè6¨fBÆvÍôýAÍtÑ2¶ 6ã¶mŽRZ‰ùoKZLlyXŒt$ú¼cf=.DÑ”òhæšËâ1ê5!rpx”Šƒhá; "¤u“d•.R†±¹V݇‘TëYü\ z½ƒ_ì«#XÄI/b6CKÛ û¡ ¾r±éöFU£àcgùøõ¬é m‡øÉà_›§Ô}ˆ¸Ïª`N‹QQýp'®=ðU«ÄkAØ.‚0,ƒãè‚SnÛ‚³–d’BdL•Ì†ÉôoË<Û‡ÖÙ@7·‰øU¯Ëé!C³7‚Ÿ6Ë3 ¡iߘ¸ä\:öãߺ‡_¡EŒ`5`í2s$[xjuàV£IÙḞñƒTc’"~ñáËòjÕì#±Åÿö}WݼypòäyS½¹}pòؽb+6a?§jŠöc¨Ú±ß7C€~~ß4M÷ÃV~µqG•凎ýæC§ü50ùê-<£Åg¨¡èà +˜Ûç €–PÝF ïyÝvYÆÌýc™/͆fKí3¶ü³(ÂÙ­Q9 ‡`·Ì6«'‘¯§%eçk=¡uuc¾­(ÌiˆÝãß±9ca.I¬FD|Ï!Œu3¥²Â‡¦n6É-«Eª(Ž7’í»šÜxºa 0aÚ˜Mãô›Ç)´ÄáÿéÝÇÜ»Ÿ‘ˆt ½i]FøÂ*‹;YéX¤HmCÑ9emùZ1àD‡ìWñ8³ƒÂ¿ÇÊKhs@€§\„÷û €¸G@ä)R2¸¬ÉÖ›­¡°ð[⥊GÁ›oòpbÉ/jxš÷UÜ |¥˜k˜Îà0ÅV|–þÙg®„¡qþs£ê ï$¬7heÚ™Jþ%Ê{ËÿY“Q^‹l„àZ+ÙL‹è Z™ý)¢j³ +¾Ý÷Ibü(–Ï“ Á-þ·Ìœ9Ä/hß´‰s¦P£9¯>²:'†L~'·(xâTÂ,+MX(‡­ìœ7ÊÊIjK izt°<¹¨RÇ–¹Ôy¿·# +bFX‹­‹Þmˆ”‚(ÜuOÂÜЮaËþÀ2{ÍìWúШ“ÝsÛ²·¬³kÅÇ¥ª/…v‘õŒå›À'$Ý€Ñ#a…É'S|=³œ°2KCy€yW]rþL2'9°ïÅÓSO‚¬¾ËŒvoåf&pó”ä¿Tà›ñ#é£Ïéc˜Ö°ïT‡ú¨vE)Ö™E,©Ðˆ°œîùA~mÉ:k 9ëÅÑÅ£?E–D@.ˆ[ÍLê­h°b$¼Ãê;C™ÕîQòÐL_Öì +øô$p‘hêÕ9J ¿AO io`¸6ÿ¯28JˆˆàÞ"xƒGÜŒŸcf5ÕLcò¨³ª;Û:­œ‚Çœ Õw}ÃÜ"F÷G €>†cN"RaöhçÙ££ì„œ2žIh.C—D­úiÆä;8oÐ1—Á¤]Û–þ¿IºÏسuORn9jþfd„BŠš5:‰yWÝêºÖÄDæΖ,¡TÕ‹½ôd8!–:€©¿Ú›ÈŒ]¶Ž ˜/‚CSË“Ÿ(æC4J@cÈ«_‡±À‘‚ª…`T è>§¤‘ðí7jÑ•§Z•KË,pëæŽö„“šqÀ"¢½Ix)è 勱7­¤½Ö§¥Á²Ì +Œ†&yZë$l¸eÜÓtüÚ¹bà$$öäphîV´`*x‹i»½º§£†duHŸ™ù·T‰ à½lác?à‚n¡Àõð¹;Æm ÛÅA‹kÊ38lÌÿ 0ŽˆÀÄ +endstream +endobj +88 0 obj +<< +/Filter /FlateDecode +/Length 8454 +>> +stream +H‰¬WkOIýί¨.)nêÝ]«(R“™ì2 D³Òd5"`;Ø&†Íþú½êê‡´É + ·Ûõ¸÷ÜS÷œú¶·ÿÓ‰Ww{Jœ~Ø7Sb²ØûÇÞþëåýõåÙù½xùrÿ£Øÿpö}ñp/^½z3y+öÞœÂpUëá¿sV,¯ò:û§ú%´8½Ü«B™ NÏEzx¡(aü•…ZÛÂV>Š2¦Ä³½‘òôß{§{‡°Ó7Œ æã\X¾ŽRs”VºÒÂÇP„hEe +£¼;S/–Ó=Þ äFé¶iXíŠàšº* U•­¦”Ö4K„ª(£n¸ÜSE€ Ctð¿,KD£ŽÌ–0º‰L—¦pÝÐÒˆ:´fDŽ-ȱ5Crpõ"upÍŒ®2X§*`”QÙV|6øº&>« ªøêu|͈:¾zDŽ¯RÇ—©ãk†\"“èï¤F +}úàÝ0Ä{Wxg*q>£ ø* ½¸Ù;&4S8,_î0%…iŸµ‹­ +»S´ÇäúSr.ˆFåLìL)5lã6;ÌÉÙì0'ÇS|ìN11®K'‡6|JŽì©)*M J˜.%ÊRÞا‘ßÆ«f‘*Ž'FÓ Õ™‘ÚŒêêœtœVçtèÛS°ÕI÷6 +€kÔkwJ QóØ1¡•9Z™3$¡Õ6&”‹ºÓc¸Cµ§< ÂꜧAX3„5= Â.'™1€*îÁÊ”§X™2€ÕmzùïŸÜžÍѪ|8›_‰ÑÅt<9û‡oßODª®m¡¿?;~E³_A—âÐnŒÓÓ£ˆEä`"Et ñ¾rày p+¿&“c QŠÑgeK9Ö¡pbt,Ç&Žä؃7}€LQ‰ÑkBaÄèTœSÿ>‘f !ÿuú÷l}¶æÛ9Jg“´.` ¾ÉŸB¸ZŒ>BHcÀD~<I©:èB­ÀוÛE+‚‘hû»­Kën’Cjã+î”ê¡êsÀœ_K8bt"¡ðõmŠ58gÓ LçÀt/0­#ˆ‰Ó=Ö¼–%Öý=nmŠƒ°Ä¾4øÅPbôV…”úxˆ\d~…±•Ía©Žð“©VáGÒ2ÁÆ”ãÉð¤l7)[çd7¦ÔáÕIÌ>8’Ž>ßI]anï%ó )w +ÈõPuD:ôËi{(vž°;’ƒR¥SçªÂ€ï-òÁD|ÿùBÂF#ñNºŠ_[‡È¿¥i§é’ŽÒñIùþqéŸZg4n0 í\v84aMgX U§z¿ÉqÄœ¦àˆšš¸ é–ÞÏâ­Œ„fÝ%Žð—Š¸F#W£°¦$`EÝmÄ'$$qh¯nápÅ£áð•ƒ9á„ ”ßÌ jãŽ"7'’ÎÌžJn tí6ÞKê*õ +‰$š~ûxÌßóRtHq:î°ØO%M‰l°ÚÑd8ÕS +`J[Åçr¨§.¦Ìý­Üˆr‡Nä}ø+@Í]áð ñàÈÄBè‘eqú÷2i“Æ·òc::©#¯ÔŠÖkÖz‹Z@¨)|z@ÆÒó@z%©¼%š”›æyV,Yë§uŽ1QâF°=ÈŸÞä u7ÈÂXˆêdÅòªñ%oÍ*ù’¦ÆiÚ@KR`€0LŸï¥RʾÚ\ãnm k–ÕEUŪ¿lå/k·͖ᤴ΂˜«`;›‚DŠIʶ€v-Fç|DÏ$w¤Q¤Р<‹S8Ÿ@ž¿Pq*üi7â€FKš ?Ì%ÞÅèNr¯»–׸‡éôºÙv×4–zZÞXÜ¥-ï¥áˆ¨q~aÙ»NÚqƒ1üNcÿ‹-ÒÓ*düÖoµÕuuankã$A lFr&‰«Ó$WƒFîð;ÄòPYblòT\p\Ô>÷‡±i#ã¶âÒ겶ó *—ÁUIŸêà|v€%îêømˆ-ACB¹°û>On¡î…`©É-=Ì¥bÍûU3?ÅO +”À]:fTê‡;¦5 öÚ»7>s`—Ž•^Ó1-pAÃõ¨¿ìàŽ•Ù½cZ òiL7™­-“Þ¤’¤v¹~ÚÍF)li™_kI'ÆÏ{7ÖæTφÖ®=¯.X(.T·ßàΕëÑ]õn*k€D§˜ßK—jIÉ2ÏÎ. ߶ºFò‰‹ËúΑ.ÉKwš“É1? G¶+ÄÙ1®¦ìmœÛÚ[A³ÓtÄaÛ«ä +—5µfé|æÒWt¸Å/0å4n0I¨âëó01‹5µ§àÁñékcmcÛk–ëÖ$ïv'ôûaU÷ÃjJ‹ì ã…Ðξ£*pi©A/©¹ÑÝCÕÍΧ & ¼$9.ZMÇjö·á—?Þ) ]§}Ý­¶Eû“彚ªhº;Œ>ãàøŒž×Fk ö®¿&¨:¾uª;[ä{¯å; Ý0ËSLÝ1ÿŠnS,$éØ%ô¿À÷?‹4¡±ãÞJ—•â®&5Rþ6¶4˜OT@jÇc˜ÒÞ;YŸ¨ÕúVZ¸Ôøª[ 1´Z¯]µ|»oî&y˜°*5fÛöa›cgtZbsÉü<ÂU<¯R¡g ¡šâÑ÷øæ[¾C² cxï¥ +ùv ÆÍ°ÍÊŽnÿê¸YR24Nµ%e™LЀL¤¦Ðó 姥ž€.æ5Âp±ìèIÜÃ1þƒó²OÈ„+¡}9ÖNg¸ë¾otžÿ£½JvÛFÒð«ðhBƒµpæ2À Ó˜‹s‘%EÖD¦Ý’å´çéçßj!EÙE9}I,‰,ÿúÖ07¤€çï•=bfÑñ±j‹`øšçº™“#Uõå3*m³äSÕ©ò×Â9ò©šTùLDr´‘›«Ï9P‹F"Lí¨ß0WpHZñjBæËÁA—šÜL—®§žÛ_AW/–<9 +S²<äœ3ø;] ý+AÁ4`óßékix´A¾Ž6Òáÿò2 Rã0i”²¬QäG4¸Æ»•€'±˜™Ur% 3jM¤õŸPëáüÝÿ_¤>J)ÜÃÄ8@ëÎИïXìs‘†+¸¯]olÝmè™}.&[_ úý²‚ÐUUuy£ÔS²R¸™Ú\Þ(ur£¤U`‘_–OÇÅî÷õŸOÿüÛçÏðÝÇ3Z#¡Õµe7|a‰¸§ßÿ°øê ¼A—É©.’ð ~°'‚ý—ìÂ"rÖù!£°Õ¡QYeˆJļï¹DtÈŠØöŒÿ·!%»Qûý!¤5«8Ïé¿K1ØåDË—tBj3©Pa胆62—$§ª5¡ÉÜr$£dJuM“Zg~Ì ¾ªoZ”¦ö8)”ÂMæ´JãêtÄ«l‡]OÕ¾’ÌÁŲðüˆxåòÌAÚ#%ÚñtClÔ³hogÒþ„ìŒB]ÒštõÙGËÎ {ý“=ÞÙ˜ìÿÌÕzR|²ý•fVÃ:„îàoÃŒNx]#pN@à¨î !’/ÙWÂïƒ[DK3bˆ=­wRË…Ñr%ÓsÈ¥Ë7È6'*r3 Ø¼Š­¾,êöU(—Åb´³1T4ApúS„Æ&>:¸Æ +*4V\Љ¥Ñ.qƒ v Ò5SaÙر¼P‡›]0# «n6òD¯‹ÃØO×L‘E=º!@æÒ¤êO4^S¦Äp>u…hd>ó.Êmïú¼G“ùß·H²Ž}ð{!v]°ogïÌš–ÇT½AÏÕºøô›}5jiJr ô$ƒƒ(ä/˜pÅà¿  ¦‚2e*-¶ª{hE‘ö¤ñ䎘c) +ÑÇ-ÌCÑ&_róF’î4Ž{g÷b` ~/ÿÁG“$–“ +òå ~-BÞ/óŠ›Ì¼ ™¸Ü<ÞZ ÿмxkÂꔇ œ|Æ¡@v­ý ¾³¸bp2̉7Gä¡•¢W3õxP}:}ªw ¥!Ý”" •Ý™ÃÔB¯@žÚ¶kÇ˦ ½iR…>ˆ„‚(Á]â‡b[¸õñ&^ üVþÁ¢çðU×jÉÞðù1 ù’ÜxÜPVÛÎï2ß»qE À)'Çá‹Ã$¹ˆØt´c ÅCÆGt's1ý\üŽEÔÉašÐ`Â6ň8 ùyô9å¯Uö"yÊ7!Ë¡¦åyx‹O3 t’Ð!ƒo„G¡«-9ñíÙ˜BƒJžO7VŠÁl@<¯mÝÙÁp‰0µc3b`N &N¬¬ö§¨SÞº(2ô,Ò0‡€Óò UîFv£Ïù©ªá¬uÓŒv³Ä£¬ƒO‚ˆ}.ùDLJ Ùዸ$y ¼žÚ½üKï¢äKy^SQš¥;=ðY¹/ö¸…ð°fE¿k5kz(ßz<w 8w?‚M0zÁñK6lçåok~ž@ët©» ‰[ûš@–Mh[].ÐñCo®þ‘“þø⦠Ëm‹ã?øÈÿâ¨z…äë.Fe•Ì)RNAd ˜íäBJ$¡Í­\žvzå²á}vücÉû›{m=¢i©…¦øÇD5´’Òì3TÍZˆù~ÇÆ‚ù“Û*Âu EAÄTQÀ]Àëó|H¶Õðå-‡ŽcÞ²¸ò‹ï¸*È5 ÓL¯É[…ÁÑ‘îøº¥Lú¯¿ã…לîxƒ ;æ-ö|Í >Íí³¯ñ©nPï/àÓT³ |.;ƒOÉÍvÑCo®þþû6—7¹ ..-’#é!xzö0H9>9Ièqe¸hBHê}„¨9]ÑM/žº£ qK#à(‚£`Ï i¦l22ª±cúfJÙ3”‚Xû™óš_È–¯óydáYäµ€æ˜mÙ8ÉÕš«æž¿ß‹ƒ®sÍjÕÊ Jà´ÌC4 ¹i²K ezârñ]Ø“%–)âÃ}úpÔtYò3ѽ.«® %=UzAÏÆ7|ìc~ø÷"Bo…ŒiÐýX£k–ã‚ä™Ï%]KªŸéÍPø.òæêuo.›®%U²7§Q%ÚÇÍÕob°}„D"È#Àô¦EH7‚lvßÜ° + Ð 2˜ IÃü ŠÐoäßäÂ%¶qÌAyÆÓo$zL§á3`ò´=–>E»¤ïÓ2vi¡‚êêÌœ€ÍÁ¥Ñ¹ï•Da8X¶R–»#¾=UM(¨ Ð Á­åHˆP‹TT[Z¡FŠ_"röH?úzÅYýGaøªåµ0–gJ‰Ϩ¤¶Ak`d× +h©ÃV×»֘ةÀ†ÏšïLm3W0$Æàp[NŒ½Dô%N…·®O•{A oÔeúþ\÷˜ì?)Ò´Ú2Í:R£Ú5Ü¿ÉKv^v-w¥¬ko +c°·o}ÐÀ©Ï±³Qv&–ÒÔ>0CV ·-0˜ù#††–8à#¬¸{qTv~¸·Ü¸U8unxíxt¿ýÎqu¸½{ü_Òcí­5}ZÝ~ç‡T·Ÿ•öI1ÿV<§ãŒ3¿ N0%Ä‘_7¼‚÷R”º||bðùF¢Yˆ_9U›U¶ñ DµQþryËw£ä‘Ôq>šDe#…?ÙÎs +—ËygvyÅ=ÁïÖÇ< S§ïõ" Ç¿‰º+fu6 @™¯^ðþ¤4 +>}÷òÑ Ô=0yjrðîàäâA¤ ú$99;ƒ;[ê÷Jl®$- + œKt˜¦‘ðÍrw‡â…hÛ»[öyí*Ÿ%®º[&}ÉŒdÏE c€ŸíðùfN’ªßŸ¤Œî®Ûº…? €ÂdºÙIªžJR´JYȵ£eÓ“Tœ¤Â)8&£õðen®~ÍéÔBÕºXgÀëŠTJˇ¿€Ó©‰aòh?‰†O€<^ °1¿Bµ z¶?ec¨a•§¤T°MúéדŒY½n,N# FÂYà Ó6-F™ö¥Š„” +ZšøÔ§O_ØN}2$gÛ°%Ɖ3*’‹˜®y¥Ï9ç"ô/g†Ì©?%؆„¬qÜ%‡ÕzÏMwû†·…yh‹ @æá”3H&a,wQÏzcj‘#ðôP +O•Ò½ÇŒüšmEß{° m8IXï¥4Üã±TÁÉzï(ÇÉ¿ §ZñÇôét“` 3§Z?“9Ö]®cž¸á+Dt…Œž¹)ú×VòNƒQÑ…™·. Œ +Xô|™“ÀƒkâHƒãñ…‡™ËéChʱ5ÎŽš3Xѯƒÿ¯©© |±E@+1”¦— bŒ´†(A‡„™›¢ð≠‹¸ºE…ÁpgÊÀÓ©úÑoûµ|±'®pXW!%S-‚ìÌ#-_ä\¾ˆtÈYüCÏ1«Fý<³Ò±Ï2«F¿fV£eÓͪ1ï0«ø©—˜ÕB˜¥Yþ‹ˆÒNB·Rzg(C3SNõÀt¾NÎÓƒöU=.;CºT=HäF´‘›«‹ýóšÏWñùªFÐÜb¾ +|ãcÇ„„ éLnÒ숵f!° Ê\d·”Ah‰þ^Ç"ùÖå=‚Áî…¿_É&¿%á-ßd¼’êÔ`,é,j§›h¶®"Kþ†Jù‰¼øT|‰6>Úï`*©AšTˆûŠ®Úò5ÿËÙ¿ÝZÏgá„°H½Å“3xÉÙI¼gL[O·ˆD£+›Á4fÌؼ1cØw͘}k‡¹®g`yåb[,r9–Â:@w±¥‰ñe^¥ +õ&”ÔèèÙ׫ÜT¢ajXsM¦cñ–kܦáÆÇ#õ9”9·J÷Évì“0$IŒêŒ(HŒÁ'7 DçãŒÅšÓ,<î15ÖœÕÿY¯–ÞÆm üW|Œ€)‰’Ðc¯E[lî!¹äi{'†]ï®ûë;óÍP¤¤Ä“œK"9œÇ÷lûW¬UX¦ý¼“E?í²FÉ×I›«™ äƺ´)8¸+l>?õéŽ1¤’·=iõYCØS<¢ +w¯þËœÎ|?΀g¡Ô¯ž@IpæL²vŸ$b³‘üžÃ™²íøKN3wÍuQV}X¾ËB8„xzÒÎãÚˆ7žù˜zY#3D2V¡nø–t·Zâ36,c&45Ü›öLÜQ¢—£&:lY§P,Êve_Ì× mªf˜º‰š ¢«ëzQ’l*Ô›&©‡ö5õP³ò.]9Þv¾zhg«‡Pòšúµ*ºáeÞã&‚È»ígL ) údµØènkFIL¼×´c5‘˜Á–xŽì•åÉE½§nOtXˆtÑ;ž=ý“6‡bpÚÏŸ°®xuÂBºË–Ñ¸ë‰ zʳ'âÊ+¿fXâ]²& m}m¼v0¢Â¿$øh2LéTT€ž2Ïq¡œö¼T6Sˆ*%õ¹ÅÑÇi±À¬mĬ Ï[9d­Š1(›³ûq ULò‚A±g—æu×Ôr®–f¾réì\çz€þq}¬iLø¾Ë·¼¦èò`/ïG2¾×Þvª½YÍÛ æ©c¤ 8ÿœÅ;u_:´óµ+?Q)ªê=ˆÚU'u¸í|DíêOñc¡âQ ²¹¥Îý›ÙJ÷¥wZ(ÍÊ{+§ÓZÈÀà#ªáRì¹¾gHa™«c(´¸'Ó›£Ü{.;ý>ômµÝqáµûÞàf)a'½5ŒL·X>гî¾×´Ùv*lôév~g¹3†®!W–U5ÈkÂÈ6É#kIDnVŠ ÊMtÑgF&#úV‘ÊÆë³)¥l¶BÂqŒ’××Ûätû+¶cŸÐzŸÐ¯èHRÕ­«FWän@»6á7 +§àȉwK'=—[+²´I„ânžnœ£Þtvi+9+¤±(@Ô5°m£º•Òa@íy#]ÛhQhVìñ‹TÛ RÚJéÒÐMYb¸J¯–"ˆ(Šú”"í;[Ѿî&3>öêâ«bð*ž‹¾ GÇÀ(Ñ?´†OÕ—xà +¼³€ÀË…·G€ÌN!¨æ0bêrô…Ép¹]yßnàSíq§=Ù-˧âó{!²ël±Ô¿ÑKSp°9m9­­#ò¼õ¦q1ò•wê`Í ‡7en¸‹ OJÈdþ •­ä7^@i0H=ÜÇüÕƒ#:ªæJÝJ[dÝ¿Ä|“u«ˆL†Üä©%$žh•E1cí¯±THĘ퉲:S”ØÀÿ{(«šOÏщÊ,K‘3%ô0g^ˆèN<z•_ä*±{Xr؉}è×äV&M¡p-Œ°Ó÷€?§ðG¹Z®²N4Rtð„g"`UF4•tó à›Q0wÌk ëŸ#öGÞJ(CwŽjr¾–ªg¶G0…)’M‚!•¤…·bdÙ,’N´xQSÆ>ò¢Ñd¶H1¯y”6''VYþ'…Œù<2$\Ý»XÈØS,4Ú7…L9—…æfÉÕÅ_Ì" :h„q¦Ž¯êçànuÓ ­F¡äå1|~,3ðßt7o¦Ž_ßî½X¼¡ÙcÕÆ”jc4D‰_üRAPz«S© T]é¯Qèôååpo<'{%¢ÓyqÅ‹p`ÂOhÐê4]×FZa¢i·‘̳ÃpÍkEÚö‰ôµÖ"n ÑÆ+õHÙ'k?SâÔÕUÏ׉SçNNÝpß”©k> ýâc1bÜ6^`ñÀa6dð"–[9äÖ‰D"‘ǃtÆóü–ÒAbLEôúPfá'‹ñFy)¥oK?-xUô •XðîdÁ‡û&Ü)0;ƒ£H®.þÌXk[•9Ï êXÝ¡ FÔfý'ÜõÎöµû*›9ÑyN4ºãé¸g=+ÖÀË’økeÚž”ŸUþîYÜ´"‚D¿ëîBÖX´QGI‹AT Ìt í¼@jHKi¼KYûU"Qó2›Gþ³{Ïš³*ˆÉ´Í  *ÈÚtDv#¨ _CáÀ8˾](Æfî^x륥…õ2ZÀVÒ M„"€}k…) 7þ´IDp[~"‚SÀïÓM¶:9ÐÃ}Sºþ‚GÇ^]üF5³èyu¥ú*ú|ÿºaÛª€xɼÇt½ÿ#ˆV(°¤Ë3¾Óó»XD‘Ê.Sg™¼ØæêY‹ðBŒ.iBŠº§Ÿ•øP¿ëB÷=ð².XNZÙ𘠬K6‘]©"ÊŸ`íG¬GcC6C‘¦ +Û|Þ˜´å;uŽmOMÉpÛ”!é>0$Ñ©sf„µ ƨ»Z¨U< ÏÞÃfh6ß½Ä6¶ñ][F#Õñ¯Ð¬ :Æ8Íú±1,¿êú)EùNg}Ì]EmÓ EŽdšLáâ¦NˇW⦨Ý/F2l“©þ’û- SA•Řœœ''÷ƹ.Ò!Ot8@Hž®'ÓC Är® ’ÍJþ.–èk&e|á*µü»©çèü«‰ +endstream +endobj +89 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +90 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +91 0 obj +<< +/BBox [0.0 615.118 793.701 0.0] +/Filter /FlateDecode +/Length 174 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 61 0 R +>> +/Font << +/C2_0 186 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰TŽÝ +‚@…ïç)ÎìŽû£+ˆ&ÞAí]Dˆ¥$D †ÔÓ·^vó ÌÇ™9 JÛ@c4Æžd}bôENe‘¤B)‡8ZiX±Âx§Žäfœ]ÓÎÈ2y€Ü5Ÿ×{FžÛTxâ¿ËÇšXX,0؃1à|aÜ@²TWFß…€oƒòËŠ ‡ñ]ÕVèRáŒÓHÖri ÿ¤ŒÙ™ÜTyªöáõO€i .  +endstream +endobj +92 0 obj +<< +/BBox [0.0 615.118 793.701 0.0] +/Filter /FlateDecode +/Length 467 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/C2_0 187 0 R +/T1_0 188 0 R +/T1_1 189 0 R +/T1_2 190 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬“[kÜ0…ßý+Σµ¬‘,ˆe!7BKÓ@â·Š“Mç² ÞmCóë;c{“݆@Å`]F:gÆó9ÛëÖíms½Æd’"ûÞüYþZc:Ý?<@²_'Ö8øçÝ<ÉŽÏ-æ«$«é§¡¾M¬±P_#gO°¨W ËóÌ;&²?ÑPpÆÎ!–† +Q?&ê«NÉ¡:µ¾Ñi0Ô\§d"T§ûe£½)†pÁZj¦)‚¡N½l´+ær¡é´“ñQ„¯eÕëúW–þ²%Dâ´98\[j.¯„ºÕÚ‡V yçY§•$.™…^°ÛvscÁÂ,Û,XwÈ—WgÚÊ¡É•=ÚTýŽv.qœk¢>žËö‹WêÆ/1|ÛÙ8®ôeý-9ª“£îsö + ;—ö“´ßJ¿­´z§³>2.´ÝWèúîSV[À3]OÈqÂw¸¸´˜á•Â·¡³²Ï¤ä<œ©|DŒ¦™X[æÓϤ²©UP§õ7,{®µ²Uñÿjþç'sƒó®iÉlDæhç"ízî+üà6[tù[“0ÍT9'1ËTŽó$n…:8Þë[MQÆÅ\þ +0ÒÍìÞ +endstream +endobj +93 0 obj +<< +/Filter /FlateDecode +/Length 7851 +>> +stream +H‰¤WkOIýî_Q]Üt½»5Q$$“Ý„ÌGY)Y° 3`Û “ýõ{Uý²nVHØݮǩsÏ=÷ÖÑÁ›³\\nF¹˜¾;x}“‹ãÕè_£ƒÃõöj1;ߊ/>ˆƒw³Ÿ«»­xùòÕñ‘½šÂð<ÓÆÁkX_VëLÕï¹PbºMò,·ðí\Ä/÷ÂgæÀ_Èœð¹Ï¼²Z„2³ +–™ÞŒÆ*È飓éèä=ìôqÁ|œ Ë'”ŠQŸN¸Òe:xQæYÈK1±:óN¬ç#¥aWV´*2í‹Æc]VèPPÞeÆÙƧT¦ +U¯3”oî²噇úÒÂÿ²‘Á‡'dZ«,˜´8¢‚VYÔèâ  +]=¨‚—ÖIðšëä° +Fªðˆ³ÌMÐ(›y[s§ó_7¦5ÂjH—†Ôøª! _µJ…¯²@-Ñß?QD +Eô„o”ˆ0à„ÎdJ;'Îohþ‡('®Gg …z +èý§D˜ÏÛ™ í) +ÄòØ.½§TÇ7ð»²Î7§hcŒD6`NmÀœ +›‚àê²=G•%Æ÷AlæTØžœ“Ç$$ÝRp!.·O’ÿ˜ëEúëóŒf€a´fÄœË&vwNÊÂÝI Õw'¥¼ÜÔÐýÎN°ž÷ûàU'bÏv¢9}N´3©Ï‰vwzðDUX‡dYd­9åivçô`awRöìô4 Cò9² ”ÉB9Œ…Ý9=XØÔƒ…=;uX88»-±×y7[^Šñ|9ùt&Þ½=*7ªÝøÐߟ­ŽGqÇ}Ž¶Ø°Lâ·{Qf%ÃQh^^¸ÂÀ¯ Mèw¾Œ?J¨Õbü57AN”Ϭ”Ç'r@Åøü ³BŒ¥÷™ã©ô8'ý~,Ìò?ÓT½ÓãgÒÍ3e¹ªÚ¬}€}‰-D<¸JŒ?$ƒð‹Ã/ïDõõã(¦E/àh@( ¸¥S-pÎF‹øøÚ¶}Ì>Ñ4ðÕaßË ñD{<õ¡Ì¡sŸI<~âÇ:\ýOíÈPîc§¬|™2&3:èŽpìÅòvÏQÖ3<‚u AGˆÝQ 4©Æ:ÕoôÆÐOF¡Né +ϸøF<…/%ºZ½ÿa}; &EÁ¸”€w*ã«-Z-„õŠZ-q Œ¿–fPy¶Íšø 2xt Ùg©ÉbæÈkY»*^-YÜ’_ …e{À²%™ â‰Q¾¹!À^w@fp†QÞåk( ·7ºÐTâ +A5± è"l§|õ•Ž- ‰ (º)HÜÏØà/çøwƒÔh + ÅH-%1³}‚Œ7¯j˜¡­ùLC“‘gÄ´¾¬ÛÕ#ý{ÛÕŠ0¨=šP +…  _ÅL~‘ÃQ_>ÊWH³¤4—†ëBîuÙ]º°ý—.ÍkìÅ5CQT}…C6¼níŒ1¡¾a†¶ ªü)®¢/ÁªáŹT“k¬ÛåKvtÁ¿ÎÅ×1¿ø&©ˆßI*[\†êÀF ÐAÿ+ô=‡?]Ç ít#9Ä•tõ­Ô +¢ +`#Ï÷ZIC{~•â>Θ£§*BOÏ·ý•âòNWD´o5ž<ž*Í•U§­U.µµ.¥Êž¨äPJª¨¬¨;À@WuOBsÝÝ_¥ýUÜ¿¨»M`[~ƉH4Ý»‰$æv—ÄD[BCX‘x1—dkq!Ÿs#p-)°«Û¤tN—Œ%µA[½¸]c¶è©íÿƒç/¯M$^åXЀOXè—x›x'¸“t×¹½M½æj.9qŸ4r–ß[šÈפ™$þì `3€C;Dˆ‡dÅ!•ØvźkÝÖŠã¯.>[ä±df0à«Ø’/âóý\’„gHI`‚“X©4mâ@”$]B.Ò‹}"‹Ú/ökŸâ<„¯+ù>š qMEÓ7tiƒö}ŽnI¹Aú!o ô©ØŸùy‰ÏMÏ¥Ëä• \s¡ˆÙ_Ä–eò]RÃ>‡MJ"¥Ö¦aÞuÙ\-"YB0H• q‰›û†J Ë$†tõß5ןж¨ôÏ’ž3Êø_ÙȤˆ:£cld“ŽõÁ¹~£òlÍIS«²3{#©Å™Ð½ÕGo#‘6ZŸ8@ó ‘"vȨ«”ûl˜Xû ÷ܰeÓõAø Ä°ï%œ€¼àm½4´Kí>æMѨ> é÷š´ˆpøD‘!ÐÊŸp +×È[NN wRÄèQ­º’±ótL•ÊÓ®Îq^Øåë{/ïÐ5ú·Ž¡fMÔ„÷§®xÚŒ†.Yû²Eâ~¥|V©ƒæ¨.uÌhºÄJù%v%e‡¥¨0O©Ìô©O\Ëì%©Bm9Ž“ºGTiËV¥õTÚЩ´«Åвæó!6B«hú,-顤T ßTcÿ:“”šçÑ'Úsw^yhš‰#Áß›=ó;$Syï[jjæµf%²ÁW«À¥ß_ 5“™¬1€lÞµOßB, +Ò9]²œ©÷²²q …ÖÂÀµÕ<ë*æ›ýpµ.ÝÃLwÙ×0oú^Ã(§BÊ©@bQ;Ji"ù2>‘›BŠËŒÛ¿oÔr\£š± ß]AJ(.Î\4çüöGQ›D%uo_15ÖèqecRP4v+£IR_Å•–¼ð +£ÏE:°ÙéØ›ó¥nÕ}©ªêåæ›èšCRÎîO¹=,ºQ¿Íb›³‰Kt• Q5%×ì+Jœf:¯×â¶N³‰lLÍÞæ<ö]W±½º­[ ÝL?p5ÌÞÛô¬Rq²»I‰KédjC7CØrOúÚè˜h»â<Ÿ¬=ÊÚS|£™hŽ-¼dݹÑTæ_Ôæϵ`µ;˜b*~ ©ÔÊÙµhýÂóì%ä”ç‰ïzžÛÀ¯˜ç& ¹4ñÖVôÿßÉg¼Êr[–ÂA/©ž•|AíI>ãàˆ +mgÝÙôðì3þ´WËnã8ý-# ˆ¤DIËFèÕlÌÌ"µqÅŽcTühÇ® ÿ~î‹/YNLWfYE‘—çžœ}mÒí<ÞüÉÎ÷^ñCP»(ŽØDȼù ‹¸4‰‡%‡»oªµ"96ÿ@¯×r3£ÒŸz¼ŒC6—vGØ|=DJ2ãÈäœ8…’Äœ°bc3wwÏ?v{á–-µÕ’‘Œ]C Œ ³æ~ m"X&»ñ-×ÖwŸy ¿Åfh#výÁìx„Ó.° Þ‘§ˆ5ïɽEÞúµ$£òpýpÌ ½9¡æà,„¡/ßwìÂnq“¦im²ÛŒTÙÙt” G«j¯"Z}uØ¢QeóIR5$nðtè:ºÓâQd°“7US„”þá§{ù7N%¦ãÁTËYéN¯'tÉýï±I†kþtMæFFKÙù¿Õï.FX´6|ð[±õ‡‚d•øeWjI¥Jç1 ÔmÎû+³›ç÷ìÈ•ü>|Äï£y3ø½¯ƒßãÏ>Þ< ‰[iè6ò3Ž†™Ô‰Å›ÈÔ{$ã­§².GÄÜqbtÞË&áQ@Æ÷*·YM±¼ëô¸lÞû@IoºKB/S1TáåŠLI4|ܘldÞ¸| j˜y ,¯¢séýxòÌNíu¶6`‚P8Ó'êµ— µÆg¶"¦O´:™Žuõ̯‰ RÈnúÀò3ò™bö^ÊNÁó—*_2vo>á©fh F'›ÎЋ¾É//6\(ïñ6M›«¢L™eG×.Týˆ‰œ8» U á¤G¯¯ðò¨ø§&ÿûMiÈÅ1Eß2¼—Œâ[n÷l—Ò·ãNõ­z®WÍ`#áXqÓQ&Z×c-/©ì•=Ô ¥R!dixK*8HQqü\ž/÷P]F,Õç¸Ã*¨5µÛ÷²Ô]V¾èíÕù¨I‰T´˜)Û¾ÿˆÑÇ +O™ ŽãúÑ÷—Š´Æý¡GÜ ·`øûx)/ptqà Ê™GîÁ öÎBŒf±–ùVh!œ…§#v:–HÔiìð–E4Œ¿SÅ4xnú–§WñÛ:“¾‡Qãè^¼Ÿ«l’fÞD©À4¦¦Î_ÁzØžR%—ìÏQ]ˆ/2?Ô¿xXjø^¥¶=ðƒJ¦ÀfÎü s¯ðà?ÇÇ’&°ïp½[%Þ8¸%xy'€h-ÖÍë6C(öh·&²]±-)Ñ>SÓq«ØÂÂw¬w,N÷È£pýVü 3ÁÿÿƒÐ‚ëýIßd•!–ê3õK²–XÏ}ø²ØKßzâP§­¨ó«¤”¯Å›s£X¼8ìv>Üú +m1ㆪRÓD ¡o,ù²àÞš>±Ê²TXSï±ÃÉÍ`]U#Æ/á—¶{ ¤ºŸºµIu3Ð0–öS†š:Ê$ÎÑý6¸;¸’Q©”eVF˜ŠOuÁZŸÃP×KòÑSS7ú7"áÐMDBÏMW'Â!KŒÏº®p.IH¼£xŒÓBüäN ÔO¸R§l0Ý J¾ã *:Aæ2ï¸, _2Á‡ÃûÏrÿ„Ägƒ#[¯Ù÷7¥ÈlEÍ‚JFßùG^¾Á[êãÍl½Bqë±™‘Ñ O”U2À3Öß³þ>”0 ™{ÙÑ‚‚Ýß%4‘“ÈÔú!„þyIË“Žþ‰ ?:ú¹›‚Ÿ.yðRrÖfî—!Þ©XlÞ$µùˆÀËr)£$÷û½6]I¹âÉŠQjäJ²®KwšÙÍ™ z}ûœT]ÛB±“¬ú.ì¸Àu©À–;"ZàWQ ƒÜºv‡—˜atDÐû’õ¢LÆ|Lq ÆìµëPlß”IN|Vz0’èžÜI‘ LòU¶–E4Tô!£¤êÒj›UiÉt\œ©n©°-î›<÷=|:ÓÙFXßű§×äŠ3.÷ú< +{ò~ŸgRU­¿Nâ\š%ª6HÀhÚË%@ÕÍ×J@¼’‘`Ù×rMŽ¯aŽ©4±œXE¼°BÀõW©¹-?A8`%yÉpŠ«Œ¢Ñ‘*À°ž¾§ˆ;&®D´_ˆˆ^_g +Tm?BD:m"º/FD´’G ÄG"íW¬Ñ¡M)¼yI‡öG.Ï)p<;Gw|•‘o8±&ŽÌ‚˜ ºB‚èÃýòœv$n/3¦•7Î0g^Fã’ø Rºyš¬ØMÕŒïw‘¾»Þ‡•Óêöeçl0Td¹ÇÇTÌuĪ†•»0“‡/l0ŽÝUM êš 6£ ”º´ ¦N)úìãÍC !Ä$RÍ©Ü)l¨d>òS”DŸ=—b86qÔœ³—ØKXüljw(É÷5Ü dO¢4Ù…4©U<¯›f-¨¸ê†lÅLñnsü +9Iî7y1Ž”žÄ|×èÛFu]RÍË“¥Ræ“V2CäOÄ5I­e“èkÊ+ Ÿ¡¸qž+1p6­Ö¦C“Îǵã©v’hpfÍ^·c¿¶ek÷\lÆVnrIcùµÀ‰°ÀªÈ¡†s“7ù˜->Ý£+¤å 82J5ÙFÜ@ävA¤«©EêÙàº11M²s03|¢Ót(Vcä!gfAT ¨Â@¹ÏºÉA3ªÃTFÉe,ùï‡P°Ø* m(!CÈ€KWÉ/¨¦åòÑ/h 2[˜~ôFyÒ×…ü½/á,‹¡&6´Ú– zi”£kÖ·GDB›Únè­Œ-Ä>ÇØ*¤Ø3ëÖ=(½_÷CÉz½Û¡:â:JâÒ¦C»«e[‰B(X¤Õí@Å5Ck¯PžX«ã©½­­>™:G}†, †D\ï©Ëbu²„Ç›?Ä"½‘üŽ]p!–ªC†òoUÄŠ÷·H*3cÿ!3*ÇŒ–“¬“$f ÇtâÂ;`r|–Ž]Ãté½Ê—n-ß^!qU‰hévj³UÃL¢ñ2cåø^i…—øe˜Ühô/¦òð-úoØ,´ÔÍ?q¸v.EƒÒl §UâŠT¢ è>xðPþÊ/+@# +àÙ`ªš@ÆWs»'/QÜa . /Îòâ(þ%„öMFßÝó¾Nˆ€x %â5Œ9ÅU—;Úò#‰2Vß~ãÙp†—k/ßP ã’–ö G‘R‘µŸ£44y…ÓãÂyb:S³úÐ×,rX­G^bi/"óõyxI<žÇ†‰°q2Jq¸ZÐÕ6r¥Øü…+úyÀå…ez 5ejxKÞ å£Ò|ÞÐ tª/ç©mJ¨­xÆš˜¨ë4™0U:®ÆéþO‹_`½žâdêJ¤ùŠßS1‰¦~ÏŽ¦ƒ¦!pËåžüÔ•Üts„‘tv= Yu¥têv"´±nšñ´²©mŽlÖ#ÞR§ˆ‰VÆëë釰±Ï2`dV¦¨LwKÞ(°¿pž›8Q’85ñœXÑLÛg7QdR×å‰k¢h(Ö¾h¡_¼†+©ٲö¸EÐÅ®T†“QJ7 éž2¼õ8¡ ½<•ô-šAsV"z‰ZT¾U5‘Š­‘£Äªe/t²šŒö“4¼ÚŽs]~ŠÍX; »$&j’&j÷)vA+¼Aûƒ9?ð,?*Ø&Ù?ʠ׎µÓ]ìF2Š3LÇ€ÔºO‹sS•—2‚©GšûyÓ+L-Ñ1p%¥w¡“,GH*®Nzßw»k²óm[ +Gmo¹Ž–Qè¾kXE!ã^<ã­««sÒ Ó«®ñÒ™ÇôFÀô£i3˜Þ˜¯eúx%ÿG¦¿ÀTâggeEí6Çé” kù3äA8Èh‡¸ùø–qõÎÿÍLó1?)[GjxËNHƸîX2xgKYÚ{Z¦·=ËΫ¢]¯%‘,¨+æ<æ™}"Ö Ú³å~0QEi—×|OI™|¤ÙGoe¥ý¤(ÔÎ…PPäN<;è¶á +2„MÂ4xþ@"ÞÌñ…–:Í-”4Δ@¢)‡„]ÙFB±g0ÖéêW‚ùÓÈPíU±…€U Ìe†?¾TU]æ:5­õ·ƒUfƒÖî!sºÆ_i<›TÒ¥¹eK—[Wb>­ ++€v˜^x²¦<Çœ'rƒh !Àhvò;‰×À¿LTé¶ ¼»UåYð­‹Óàñ]V]Áó ác¯¥ ·–8èçYcþô Õõ´ÃÇ÷U~Þ3B&¡oÖh³ç‘úCȲb/Š°•CáÖܺ3ú?q&Z"ñF½ý‘” Ðë j1äÖå"HàjQÞ0Ú)"žÙyoä‚žX_$WLGó°‡çª“ J@xÝãf‰]wÉÑÿ!&ÄTÓ‹i¤J”}û~yMüò<>šT¸W¢@W|*ÅGj N#JË~…À9~õ fVæ¦Yùø+Áž€‰õ¼X1º¼p®`'nÑ‚LwWqª¯O¹ÅlÝBõÍ/¸ÅôµÇÝbBØX•¿µ¹”r+"Ý!¥•"ðóa2¥kx©ZÎ}´ã×`NaËd£Í +îøìŠoO­QƒÖjᦳPd´æB”$1ÏWÄÏ[î +ÄÆ‚·ˆbµ‚`ÃÝÛà16Fà°3B š VØfÏÜÕ[4ÙH¦&®Nxct;gÂôEÍ2{ù‘ûì– ßð5á—±=‡=K—ܼ@½1•Ô9²óN|X¢bD˜Êk—W{Ê@RÞµ·ÍÌNi ȯµ3äç1õ>_¶€ûZWb&Ü×Ðð¾ðîæw”èײ’‘ÝÿJªn#ðŒØþ-ãÝ¢•”ÃN`‹+y~$eÉÝh2YLjauúF "£&2¥äÖ›˜ICqD ²¿0—à“aØ'Œç£AEÙMþ惠ª>“kµ¤i®´e‡ÄLÖ >Ž›Câ!:ŠaL%;‘š‹52ÿTM³~«È\}6qÙG®'Fã 4Š‘SP€§àC PdÒ¤`â“Á7×lÜÎm¼ ÐÍû;Sñ®N|ÙõBÄ£¨±Ä¿>£'nÉzÜIMê÷®®•#M§ÎwµÇû ŸÁ§‘‡“ÖÀÊÄ’k)N•p–ÿ8Îr~¸Ò°µí ÎÊ–-ᬮܯŻM^{wó™q¯ž*˜›G$V<8üóAš*)µû»‚ûk0@j‹‚ÕÞWÄe ßö0rßAó—3Zœ¸ý­tÌw´‡0Ù¨sF½bÀvÑæµy.‡M?ë»zy µëGÅ+ˆBm.Ü.´ ;Ú‚yÑ¥Çщÿƒ‹j¤ç5\+m’î…ÝÕöJaïN {¶lA“t û\õ“×ÞÝüYQ*!ËÏTpnUŽÐEÍ9Ÿ°>Ó6‡q`:£ tÓ?EØ7ºcÂ=oêm"^[^~…çpØ¿q°©szʆ´Œ1$‰[wÄ=’„0ÒÓ 1#~Ŧ¯qÏÜ 3‰ÒÇÑ÷Â[zŽƒÞEÃ:œt˜Ê=/~i Åóò€ó âsEvI鳠蹊Ÿ·¢¬h¦â"ª´¥‡ oæÀÖîéž?Åo‚m$¦ÇaÚF +l]—‘Î*³gx2w§”9[¶„t~E™Óת2  ?žÐsžÐ›‚œ0& &´YºÃ üB×´f6úYIrêð1´®I˜Ÿê¨’RGP^óÍT#«á +¢N¸­(éG8mÌb™³x«&¼÷oI¿Ì+y,v×$úú&4 'Í Š ñÁäý½æñ®@æG‰à|:⽕ú›®WåšzDõ(ìh¦MÊt>ˆ J/{8á­-⢠zÙêµËDµ*RœQÔ  NñCÕJAÉÔ)—A«5%Ú?˜€r³p‰Œ#ŽÒ“§[`hRu_'yJ{B¬¤£ŸG¶Uê­zUPÏ~y¦žM›åD”BÅ¢¢üdÀT)µ 3êÙùÔêF©5Ð ôq€/A¡/0”KÁZD= Ôy=ÑaOTÑæI6h =¦ŒÜäŠÏié·˜-;¶Í2AþF»ù_€ÂÄ6… +endstream +endobj +94 0 obj +<< +/BBox [0.0 615.118 793.701 0.0] +/Filter /FlateDecode +/Length 172 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 61 0 R +>> +/Font << +/C2_0 191 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰TK +Â@D÷}Š:ÁLgþB˜²Qˆ5¢ Â=½#®Ü¼¦úÑ] JÛLc4Ò‰d·fœîä&^h¥á'B{¸_°¢`…t¤ä4ç¡ß(K¹„œ÷¯ÛcDUÕ³TGâ¿Ï«ŽXX«øü⎂óxUBÈ+Ît!缂Âú ^©d¦Šj#µ‹Üý`•.× +endstream +endobj +95 0 obj +<< +/BBox [0.0 615.118 793.701 0.0] +/Filter /FlateDecode +/Length 520 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/C2_0 192 0 R +/T1_0 193 0 R +/T1_1 194 0 R +/T1_2 195 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TÑjÛ@|×WÌ£Õiït§;1$N-I[bõ)„bœØIšÆÅvܯïîɪ­PHL1ØãÕjwvgåú~6™®1ŸPœO6‹Ÿk ‡Ç'#$ÇMB eJÇßÖ–XΓâlL˜¯’¢Ñ_ Í,ÉI1šb žAhVÐÄ?¿/Q)ÏEø㕃 FUÎÁU’µh¾'Wéy–ë  ÒÛ,wªDú‹qyäGHa²ëæCrÚ$§L®xº0Ô-CŠä„˜S•ÙáÉï3I‘5‡uÙî¡7cIN…Pêþ#IY¤ žÈ+ê‰A¥Ò©€8¼1üzú#®ƒ3Ö1Â+VÀ;|Îr++’2µÔ{Œõ<Òû½z%?Ø`ÒEžb¿uƒq–û¶²“Ë,­$ÕHÆzG¦”ªs$,ºN3Èû•t¿ëZÜâ=Ç´hv©íƒËX„«Ó‘âN5¾‰÷tç=ó[«•Õ¶þ9û~¿Ãâ‚{<àêšpƒÝ!™N|-.‘J`"Fy¬¡-‘Q°Ãƒ¬µ7îÎÈ/Î’µÿ¾°š¸tÝJSªZ¤ùÂ~Ä‘¾5™‘Ð_ÀVðªjå$ žÐÑN•ˆxU†(k;‰m+ñ¡Ê¾érqÝåââåÒ›¿ªø +ðµh_¶ 0<†FJ3Ý Þ¤·? šÂp +endstream +endobj +96 0 obj +<< +/Filter /FlateDecode +/Length 3447 +>> +stream +H‰¬WÛnÛH}×Wô£Ñì+I XN&»‰3k+˜’Á@±e­7–äÈÊxó÷[—fó"Q&‹¢úRuêÔ©ªï£“·—©X>ŒR1{òf•Šéfô¯ÑÉ«íîöf~µ/^œ|'ïç?7?vâåË×ÓS1z=ƒåi¢ƒÿÖ±]ÆsNfêÏT(1»MÒ$ÕFÌ®Dxx>É`üe‰J™Ää®Y‘èL{1[Æ*—³ÿŽÎf£³pÓw´ öã^8¾´R±•Æ'¹Îå‰ÕNi’¥…˜Xx'¶‹‘Òp _.Ð*O´Ïk+ŒuI®³¸By—gk+œR‰ÊUuìP¾~ËÍ(Mœ¾›BÉu³lÑß·F½R\¯0§,–›IxzER°9 +SÃ«Ü g}¢2 +T«ÏãéôB‚ÒŠñ—Ôdr)eÅøBN lŸÉ *ÆïáäbüJzÈ91žI{ÊߧRÁ.!ÿ˜ý#V¾ã>™ºOIªb‘\Šßå¤À§_éÇ_Ñy§Á‚_‡d_Qâï@<ÃwQê…ø„¹ä1L•â«3¦[<ñü˜Å׋Éô,Z\¤­œö%›ö2”ÂíÌ9•š€ûx.)Y, +\BÞO%%6Ò?d6›³ðæèð;I Tž 0ψ•(ˆü=e)pðáq#ö‘ ¯iá+Éâ~>€‚j«f›½>s˜&êÎÕÎÖ º…sµ3ëĹÁ åæ7©2®bŠó÷ÃY Â9ð‰«™CúÈá{x¼“¡À(üñ(Eš¤.Ì^ÅV\±M˜T\ÀÃ0NòИrÈB~R‰†*+Âÿ ÑFfü‹á½ÇOMŸTº7À1Þ¢8‹ñn@&õ:Ø6L¥  ¶eÙ€BX´ +a%Á¬Á@d Xˆ+ÿF‚‡×^a”¶2CæüÛšÓèüãÛ]å6l\ã*é0›h«ÖD[/ØÁ¥WLŸdÑVÒ;4L‘>ýjIv0ïÚ6å[hß°iH¸òg† R=@:a’m¥áŒ£Ïëåi ZHßòûZRÀvÕO óöuesÑLºD01±Öˆí²ê–OõŸiè–+Õ"W +¡À,ךX®ƒŽ¼HÁé—G‘«¬Ði½:Äs ÂbÚÇæ¶ÿ±ê¨¢à  Ù+*D÷r™§Š¤TìoÂâ›~¦z@µb1Ç„Ü· /®i"€¸ˆô$.Ô¯=RYòÏ°žãŠËñ÷‡¸í¡\¼ +ûG8iK̓Ç(*Ôzƒ‰5ò{B}¦g›€nÓ—É2ßqíÜ3öŠ™·¡±…XÅýÍ8}¥S}8×"œçÏ Ä¡'Ü;ª¦Ý„[œ²®+p ˆi ÜõBR“¼¾ÂÚP¦HL_øüŠ¡rA=ø-·w¬’×ÕË“`ðVX Uˆ )+uø5ç“2 œÒ|£ ǽq-}»§9wÇÛ²Çßñ››ð¹^nÄdoZëŒI ©!1q]1ÑyWLàcÒBs°x ®**EÈ\ƒÐ+J˜9¢™Õ^SC½YãÏ$ƒ‡_øÀ*Ô­ðL¿¦” ¦Ó¸TŠ‡D±ÙÆèpO¢£]mé|Ù6:±.ß;\5‡„«9ÚÝ™8d(iÅMÔB’²¬¥N‰—žp$B'Ð`LèÿHN 7%ÀCÈ øŠGáÁþðÁ9R-Ü ·¡ñ^Kjå®B´ï0”³†E•~]€ÓÔ톼Ejž7¡•îBË€ÐF´vh^¹âöéž„V‘À:ti[R ë;çºU¬áà¿@UÂ}\ +B›¯D§; +@Îk,º¨ðy…À{!G:®¬B7áûZA<†ã1>i((6Ô:ì–G¦Õœ)}Âq¶àD͸»œ8Jpr2çbî‰Q¦ d8ª†bBQÛIXìÔl'”R„Ä"W +î*K.îs]€W“é?!É-×gÈl +˜"eùK*^Ow” cÒb-Çp¦×[¨ÌØ[¶àx˜©dâZÜWÖ†ª^^GtÖć„Ui³Í‹. S*0Œ©2G”øæu€BFjÃy +«\[Çð¨ÀÉ24yízÚ.(oÄ“1Ü3pÍÉ ˜ʹæ½Ç TµÀvj •©ŠY¼+êÁøj­D‰†íI&.÷‰¥éÁŒê[„½\DD¹“Üùý"jKL[†êùÄþŠ¹w’3ÚòVÔÝIwÁõú¯ÐÞ,8%"iñfØ €ZDÌ ú˜=lQæÈ Ò:vÀ ¢lßèUt5Kõû??RûïHËáÆH7J³¸f[ÈŒûÌ25‰˘ߡeÅH_‹@SqCyI̽Öm赨Ìúš&˜C)Öft•ü\ÚKk'¶Ö§û´uMÌT¬®¨ì(HhK6Ó‡©œÁh(ßJRz­ùßhU}Œ 9Ø‚G-ÃeI¡híód l~VݱoBÜÙAëåºaÕA}e' +UÄ‹9§å’´.úÄü {çaQ¥Œô±§e{± ûö*™ Ó‚FQL*ÂÅÕ…!M,ïŠbðcäY³M:8Ôá0¨½V·ìuUgîÀ\Zõ»Ð¬Þ¢òçT='_‰M\jºÚ¾A)û8íÀtûØ1,JÏ>Æþ*(Û+ܼÝÔŽôL)ÓM†»Ll¥…Ý Û‰Ï\’ÕkKBý É'æ5ñúp¨Ð›j‚„ܾJ̽"SOšMÆñ¥Nþ´¼áWƒôqRóy³JF“x¦û®åÛî'¢3æó’“=—â~¢¡îVóÁþ> +stream +H‰¬WÙn\¹}×Wð± ¸¯.yÉ» ±=cLà™ ¶‚<ÄA Í’cmÓ-ÆùúÔÂ¥x©Û ÈR7—bÕ©sNþisÿåóñé½zùòð/êðýñ·Û‡{õêÕë·oÔÁ룃ZÕ•m<üt®Q›‹ƒÃwku±=8<2ÿª•QGŸÖuU[¯ŽNUøåQµU{à_WyåW™±¾ò¾…=×+3è£üxtðã/pÓopîǽp<þõþð§ëZ½½=øëÁáÇ»ãŒðýñÍ…Z߽߬և¿¼ùù­2¶D¸‡olŒ*8P$ƒ DÕ·ª³}5 C‹q¼¬ëºy%"yò.W‹»â±½¯êfpãc{·û±¦Ì¸Â'|ÅTNõQ|SÑâ“ŒáUF™º«:Óúâú¬ŽôÚôju©Ûj€ëÔþnÔê‹6¾rju¡×CÕá÷Öà‚{üÛªÕV›?ÿË»ªU«ÿèµÅ/àkqç ®€/.”^Ó/·x$\õYÃ&SµÂ˼Z]kø;gœ©Ïø‰£=÷l4Ätª]ÕÐ*«·ê6ìÛ¨;øÊÒrX|…§âñø±Í6¸æõN[|Ê­†@aùïº1,Àu“5þš_,‚£koÆ™P×zM·ë¦Á¾Åo`Áo~ƒìB$ÚØâx4|}7@bZþNìÊ,Ó‚´/ohƒéñhʶáÇZ¬ã½ðó[¥ÿyôçÑe%ºAn A¢K:Ó–*eéñÑÀaÚ1T|€ +fTp3É ,â$Æj> ~¨žkÊæ=!­Å/ÖÇ|ó1!m´Ž¨äC63àÃŽÐBXá«Ç­wxEÄ—’Åðˆâ­îñ ¼Ç…wš~8¼<½öØøzïL‰ÖœƒI–¾hÛb")ÖákÄ +î–ýÁW2ä8Wå5êg¦†MÈÂñHj +ž*P䆾ªÛÁ(Z­õÎèÄÙ¨(f¦u]ùað Óy`X¹g`õi¥=Á{‹Ø-Ò†­Û‰2´±Õ@»ðõ u’™$@Ôc\!Û¢hÓ>mI±«ˆãkk:&~kù;Åå%Ú¹¨à“†ÓÓâ*èT­ÒQå'­µl¥>Ô‹näü]B“ðo›Ø,©¤í>pÑš:2·Û)´‹µ¦pJlƒËOô AN…¬'No™Cyö@±ßÅdû ¸¡ÈwÅmxHd›’Û½EÅ™yo‹I‹ ‘DàÆ°D„lˆPoH[>¢x ø¿¥Æù ÇÏ?é¢òµ¨¡êgÀ‘Z½Åøþß,} ÃCU« …^iO[Œö=Ö°V±ðj²» V‚ß™úHGΗ86îB²æ¶†Þ’ë l}€ëD‡Î¤ ·_k׎Údú„=pו: ´° èN“ ‘Û/ò5û-Il­˜—†$Ìg–ûs«[¶‚¦ i°"ÙWÚÖX—GÝP?ç,Ám°ð«Ðhõ5 i¼—¹+qX¦¡·Ä´=¾‹ ç ð@!¤ñÕÏ…xëöÄõ3Sèy˜©îP-ìh‘ÛyÈ‹}ôó:aò}65¬7ÄCD2.»ŽLX´r†šb éã<í±# +ŒÆ Ž™}!»^Íô@·ῘŸcãQjÁðQ~PoÐã5rH£E4–)mX'¯“¦,Œ^ž«HT·{“øÑèéÌlì <=ԭç§??äœaR}˜F &ž|2µŽO ipJ(IKxz:/ÆE/}ì…z§É`ßjÈfn½1¥¼––;íp׈%ƒ/n¨;¾÷25Ù¬E¿£¦P4qå_Äô4Æ<[©8Xä3ŸéaéèwÇÉ.ƒ¥ÄÈ–Ü»ƒà±€A¨{väÏò*Þœ!œŒK}å,±è®é‚fŠ‚QÕ-V)£V.Tù^VîkQŸõÓçfÅùRÛïŤ¬2ù$$$I˜ +j¢ÎÂUd ÑÙ/F·øp‹-”0’†CRóˉZG‰Ì:°F½ +¡I-à)ñ«aCÿ?ªO+í|Œ(|Xü3ö×€Vrd)ɬÖÊjÚ[!‡Á£ÛWš=@ÓÖ»H–sh…»˜@G˜ÑtïCRÓ¸ÖÆB†bÿ„p°³¦7øPM¢ýˆÞ³“a‰Å¾²:ñú& ®ÿµðÞ˜&G%ù¤µ£¡«Ú#)f4#ø¥Ä6ÚÁ‡Äü=Ót1l¢"·ì5!ŒSeŸœrCÌ éÊæÊ­d ø­`öfvNÄÅ~¡Î£΃êÝé:ÑqŸŒX¾ÉH¥âH¶4cø·ÅÀ×|'{ù’½ºafÝPÕ fs¹d›<›ÖSQ” ó±˜AüÒÁG†©ÝbÃÚÒÖÍŽ!±XŒ£ +µýK×~×|(ªq”ƒ‰‡äS-ž&À#<î,«é JÓ·µ·mAø;É·ô#2q ñµ¡(’„Ïw%eæ?DyšÛwÊ@Ù†n:Wí¹v™7ÞZ ‡©Z¢¥ŽÇŸ§Q ¾©8ˆ)Á%&XŽh#˜á@\YS³T­:ÞS ÂÞ7#{O+ç¡žÚ +Û¸3š¶g ™'?$‘N2x¦Ÿç»K iÈ&Ù”ÞnL·ÇìCí~>Ô]¨“Ö&¬n?—ÝÔÏ-¸l‡”›`ò&Œ¥VøÂl?¥~ì|B‘‘´8[‹çªÌЉûâžh9›Hýö”  +S%¨éyáPu…ß·×®äÇ„c +²Âÿn³aÔ|–Pb±¥V»ÐÂZ1C ÀÝ'LõÙ 6»£¢ßÁoIDìã·†Ñ\·d·šV¸øñ •›IÚþ‚›w/~œ3@ŒÁ™Å5²ã!¢A´›êðe = s# ‹’”xÀÚ¬üÙ1ͺŸ©´Ü!¾;zjù“mk»V@íä¼™†žh /–!ÁsåÍÒÖÕ#⪦AQZ¡o–¨\Ì­‘ûy, †&·ÿMLí$Sóçwÿ¥½Zz£8‚ð=¿bŽ‰]¦óJ"¢(n9¤ÌÅ^aËYäק^Ý]Ý3cf¬äë}ôTW}õ=ä1­MøZÜ­ä c‡†„@ÇÇƲ*6´Ÿãlg¾?„áÝŽ(´e]Ȭµbë.s½Bâ#ÍQ¯Q“-?ìb–´* ñ·<Ûä©2ÅᶛSì)Æo¶€Ì k»5ƒ2í‘ê•!òêVIÝdª•ÌõKíIÊv4_Ò¶L†.kã2GSÚ÷8õQ¾ØÈv1{#ÇÁÊåÁ*³q¬òµž<¿îÉÌ<­ÇúŽ-š^‡èz³„Yjç&[•é"ó?ZÇéÄ*G¶t6_ s׿޻êþ껧/oª«¿D•;bè:¯u& ö€оúƒZG¥ÂDçûæÀ‡:º0üO{UaPó`=i9=)ØOnáò[`™Õ,ßPù°Kó«ä¼…U‚ŸÓ ^Ô<’éʤÈ[È¡ÌÒ_k^r-Í»ÊOÝ1CeÿÈfŠ‘ÔZ@¹RÕ/)¹Åý¤°û¡vÙU3€ž[ôA8é)qIÅ$†x aÛ¦æÅÓ òÅ&ÉÆö˪Z‘§SˆBÐoÓ_Drú‡’P›Ôä2Æz<ù–Tcgƒ%íÛÌ’6~ÁJ8°@C„f™aÅÄKI±'¶ÓÍP  ¡d1ÇÄ8ö"I —à:첶,1Zj«â“¢osI -½¿¯^ó…ÿD\hÉ­>ga-s)J)¢œdn>¨SdÖ©7-W¢èNP|à©F;ùdÎÎyÞ ô×£²[ƒJ›-¨ì óáÍ,‘ˆ",µXI¬4?•È,³.˜ “;Èv&*}.ßMn™ÀçUîÀœ9e÷S.ðÖÉ¡u¤Á\ï“UžÈD¶&r‘ö{¢ó¡+F’tIó®bËÂ.5r“ÏÞâ,†Q0s¨äÅ´ì$¡7õ-ßt¿8«UαÓÛñXŽßo(g,ݵTS8ÓôûÞtmë¶ïGÇ‹dö¸Iô8ÿçÃéÓÅõëã—Ó/~}ñ¢išñÙ³gŽó‡Ý|ûÝYEˇ…­*phòíÆâŒ-¶Ð€6mk²êÎno.',¶ô™>Ì2JnÁÈP¦tSΞƒgÌ 7V#Š¸)›·,š™Šxß(O!àþ[,bªLiÖ×y!¦L ®j±ÀØFL&ƒšßeÈÇsÿ ìe”óýÒ;8<Î1ÓB™L8½9«»> UÁ²ˆÆ¦ê¦qÛzã4Ï¥zZMîGy'B>é5 Ò»¡˜ûèi:þ8`€Iù> Ÿõ;]nC²“ü÷å”! =çªRAÉËÿF:&®„MæŽ2GÞ¡ ø›1i¤VĤ!3{F2°I¶@l󾘇”ö.BêÝG¨b+ÝK¦m Á¹†wë£÷¡¸Ö¬©÷ø[\žO¼Ìw‚±¿jxàÙ›ºv„¤6\Ìk‚<4n‰‘ 10²ÝÂÈþ±œìs¯ÞôXãN^Íw_yP`#t)iémí(D}ª£FÌI>>kƒÞÒÇOëóo.y] H<œhGÄû6ä_˜bkOærËÚb a +‹C€‹ŽanËì#gÐ3èâ º¥¨Ï¡çÖ±€Ñ¢áÜ¢¡x…á Âø Ía{ a€r4D°ïjf¦ \¶L”ï‰?®CT¥SŽ0Œvë0Jn|Xv¿4Ž¦M.Åo‡ë9!Ÿ‡iÃz àÄé 'NZ%ÚÛAAô-Õز6íFñebðPu:}™‰³R&”èSåw\ЕÉ(‡DF¶K¤ôpâoáˆA~¢}W°¥¹„<áZn +'d³øªØ38ÿIõµ¶£øjêžõB%Ê@Ó4?oEØá;[½J6ß #?û¦ƒoháàÒ­:»´M¥2Dœ¶0»ˆÓÉlSs⤊ +Y»ã·ìÃcÈ—È1–Þ$=%½4mvLÜ> +stream +H‰¬WioÇýÎ_ÑÙ€f9Ý3=`8,Gp`+ˆE'âÀX’+r-ñð.iEùõ©«¯9–;²!@Üí©®ãÕ«Wg/wÛ÷ëËGõÕWgWg߯?ß?=ª¯¿~õúuòêü¤TåÊVþ¯ëJí®OÎÞ¼+ÕõþäìÜüR*£Îߟ”«ÒÀ‡KUȧOªYµðükWNS­ªÎuʺ•s ¸=9µ¥>ÿõäÛó“o€›~ƒ‹À@‰ï‚yüöýÙ_oKõúþä'gïÖwèá÷ë»kuº¹+Þ¼Òg?|óÝkeªÒ${§‚=Ó'ð'8Ò‚'•ëzòïÓNÃ×N®Ô¿taê•U§7bGk]™U¯NÕƒ¶%ÄrºÓE·ªÕ鎶øÓ6`L^ê¢Æ¿[mk|þ +2õQÃ9^‹É½º†WÚxÒEG·è|¿ÒÖ®Z8ª~Ò…Å'oÕkôî…¿tæG]7hæ/ú?ç ù;œ!›“¡>`% V +ì¨hP:úÍ$‰*›U_¶’¨—{ƒ!aÓG¥K|î’SoåûkmÌ8]â¹åùƒæÀwšRs¯;üóÑáCC‘®á+¼{ )(ñð->o)ÿîµ¥×^Ì]¦ë­š ´Ûh) Eû|þ;2kñç+4×âãßë¢Â¯÷}Èé2¼<^®vx@@E¿’àN2 +(±TÈ;mHþÒv2rïYÁ`Ûj6¯ ZwhÝ¡ºö„¿v˜Õ=À!CSº¨ÆâéGµ× >¹ÁŠ×†Ê‡u”*Âß‹Zª*U…(Û®ÍàsªÒ†?l»Nm¯JWÍÀ³é¡_<ÇIJ}HY*8õ±ÐuU’ÌTEú¬ 8ì°¾ † ¢€Ú2~­4¼ÙÑÏTŸ‚¢A ¨y¨&WZ AzWáM×Ñ–¼ƒ5¹Bð’%:¾Ó}hß d#žAâ}ÙC4xŠ@ÑýŽLBì2Û¨†ºèC3’ÆŽÒÈ?ÙfÂ,ðÆsÉMx¼óíª ÛR—H #´pB’’ Â¥A@kØakøë›üz›\o)¹ØvtˆÊó_NØ㸻’8çj7‡ÉR0JTòý0'—Z‡HMÙAÄú¤p@/T’4Ï€â¾Tx«‰¢.„#*9kdÛ-Rû‡ÌË]a§z‚p>²˜Aá©"¤ñLÎ…€»¡ÒÅ~·‡¥€ïA¥<ØŒypŽÈÐüþyìîÇ`¡døašÀ"u¯m…æ>?±ÝÍzآ㻜ϧÜÝ•Þ´‡Í<íF6poÁEÓb0O1C¸cFYs`Èreª”{>…ösš§RdÛX+0hŒz¢ Ìã«ùl3õh~1,±Å[µòòRm“TC.@Ò¯$‹–¥¤OõOrµ"àµF¢i˜OÛRÐÑXbAxR‰j¨TP”ÞàX:>œî€^•M3‡˜Ò­úºj9Œï ÑÄSJ̓ó™buà³RDÈZÑ$o²IÞ-›äj$5}ßœã-H$ìlYƒ…†PÀ®Ô!TÇoTv˪Ä=2Ʀê`?5ˆ“äÖ)]ÃCZ*ðQÏ:¹3}®¶Ó q=SWƒd-Ý‹ä±Ò¹Ö„ ¬gK¿6Á÷ÿI²ŽàzQšÛEÅ +ÒOL¥\’-rf! öŸ"ÕϧÚ9†‡× =†ô³Ö2¶EÚÐÓÛ mª,€Æ.çÉ‚ö‘=Ö¸Á5“åö‘xãBK·‹BfôàMn4ÄÜO„ÖY~öŒ£ùö„«*®¶(·EKƒ)s¨ÙY¨µ’µ÷¢e‘h¹ABSUióáÁß«±ðˆC.‚uh/Èðz¥š`5Kjk¥ÎyÔÝÙôŒiÉ"±Žã›*_!—©j~ÌS4âÚDá©›(¤½.¢jÌà^Ùhêù(ÄE]©[Í£6´æFQÿÑËÍ! 0 ej¸Ž< -?Niîthxªå")>Q `db¼œã®a®Å†yÆå™ôD¡;œ6CsK”ݯ=˜f•aêú¤a©ß5x³¨Ù“q3\2™g@PYjôhÒ.îçƒ'ÁžõH“oZn +¹¾¹žáoѼ†¼Ç-Ï0y Ò÷eÄšl¯KPds2r³dSÀ-ZR©~ „†½ã–“d¿‰¯F¹PŸ|݈ÍDkûdÏ$…FÏ `Ød m´Ã¯ïeôŽEPJ/V†ŽËø3Î;ãQ´i‡§d;M]Oæ o£?*)Á<Ö…AÆ¿MƒÈ“†_Zà<6ßDV"MUÍ!²ª¹GÅ7QO·²õ†ŠõÑ×?éÇ0QxòQ„ÃŽ°c“Õñ‘òÝ$ÆZB»9fÔÎÆ›1”Áª€,Û6<õHE “þÑóANsÁû‹ø È$ÂÛõ!}žI‰YäLÐkÞmêt·­Ç¾N ŸÝá5Æ5YÑO }þ둶]b{ +KÀ^QÕ_sòw’ ÜÏ”HÚI?yùiZÎÏE‚Óf8I÷®F4±CQ¥–ôI3˜ÿnØ(U{L¥vqˆíÏ]këáZK÷êØؼ÷»$ž].žŸU¾ƒ+©x‚Q%~h/YoécZB¦Èvb®õÌ=¤¤Å†/ù:.è(/‡V6âóØ­A¼Jf†Tì56_ +DSŸµ¯7; ¶Ýä´Ç4Z‚š%Öåz¢êgØ»îm"J¯1E½È¹.[ <™Í<CÂgœhàÒk/u!3jˆ™~ ßÍÜL0ûO8yàÓ[huØŽútG“KÇc0é×L¥UöP6%¢™Uõ¦ã Ý`<Õ„‘˜ŠŠó˜m&‰˜•°$<þH;8’7ǵϥÔcLm—ˆÓD#cÒ¦¨ê&èW¯¦`EúóJ”Ü6‹ÐEq™J݃5ã¶I—Óµ"™ÖÚ¨Ó¿D¨ñЕUɤÚòÁ¼Aéø"‡2©´(×c¬¤V™f9^:MÐ6^Ÿ¯|ÙÂ׌¾Ö/|nvá;/0`ž'¶+ ˆÍšÁ¢äæ°ØT¨PdÜNî©TÓäj?Ã,?ÎäutÐ&’#`HR2G:/,0œþgÛ~¸vÉ‚Br±Nw~~/º€,‘ +10„>å³¼vhf¿Ó¬·"乣"´LÈq\ÅÚ/\ÅDªÀz<¥»D}H˜¢ óÄ##«מ yK Ñ$†0£µ9ëYf¬{¶ÂŒak«ý +Ô·ÉT¯¡ÀöpôV¹,=ÝŠeŒó3g"w̱0Õ”+cÖβNÓ“À&ûá¾fS|Œ‡8Q•ÔÃü +öTö.!2¡Ã(`–yOXö¾ú•sF9t¨FIÝ:¹Þí–@¥Ê¡Ò¶sPA÷„µ°<Ѷ‹K_¬‘åp;gzÄ‘ÁlFE"kÅD›„¬Þñ ®ÒA}‹3‹jY‘jÁ) +›k+ÆÅÅÁÆú<Ã#†ºá¬OÕ µ€' ]„I™ÏÁÎÄŽ‘¢ð㎕‚ˆÔdÁ,jÑC˜ÇïjBËÐð¯Sá2¬\ öãAS3IÀ,™¤n°"ÌŠW„yeÉÝ8Ep‰Ûh{``ö“\ †ÂôL &¼É1Ÿäüdirü°♚¸1˜¶;•h/ÓL÷ªÂ†Èð¸$´Õˆþßtâ¼Ìô!û0ú°Ò~ÒŒÓ3/h—. 3l@˸6 ¤ +œ‡fSe›l +8ÊH/Órw‹™êÑyÖ¥¡-ejþ)z·êÝlzÃ\äçÅãhnЬãÕ³I؃!î”}1h¼¸í€ Ì}ä`È -”¦>¬ý3y*¿zÐøðS¼eDѾÒ*Q-$³†ØÔ´<Ý}ßzë‰R=ImNNsºªêm¢ò/#ñû<èÞ7ñ@ ‚¼«¼ŒìÁ·ÚTY‡„eOê›l6—>jV‚{R™¾s RÇ× wˤ£Å´9ØÑ”áxçÄ_$U Xš¥`Ú¤X¯èòÏ1‡r™¡‘èÁ'BÉ +Õû¢v“]°ã‰qµ-Ýc2…Ê’1ÙçHlº9(ÂB%þÄ8‘°™TN†"Ñ–­ñy®åûXTm‹*õ¤¨y>Ü‹y¯†“@Æ3bá<€ÉQ£´FçXëoE`ÆטTM–Ò–EÖ9³X€£¼íY•Ïj +[bgGZŒ„‹êuÊ­E}Šú&Íî&ÉÛñ Ïóák)M(|ä"ƒ9 r@âŽÀ­ŸBBÃœÁÍÿY¯²Þ6n üWø˜"ey,Wz,ÐEãô)@aËGù€§H}9‡Ãå®-¡y’%ïò˜ùæ;*Àlµ¨^¼ôlªä„¬–ÈTI矿Øܾ…•Òÿßš{…B;îô9NÍM ³‡ÊÜ”&´‘í=´”åÕ±£›Šóª£ÍÐRüH·£Ä!˜É£Vrkææ'Bdú=ÍZx­.áõÌ[ñÌ’qòC¯ÌxO[â®n@F»ChSÐÊ°›šá½$ƒ6\çOó;4@h:“mßwT–@ΡU¬rßYv+ jc'’]ŸIÞÏS/~šíÚdÛ/¼Á#¾aù WËéPnk÷n;;Ÿ¥VöŸ¹á{×ä8;CÝ€cpä&4Ôo— ä£òàéPèßyPt„eKy‰MÚkXÑ¡ ZJ\¨+÷ÔV^ÌLùg&ið +³àâô[5ýrò…LV¶UÇñQIY˜ç‹q—érBƒ¸c`è85DšƒŠcï8²ÞßʯyÙÞ(X¢#š/ºÁÃ/M1™¤µÚÂâÓ+ïÁ™_ö\bÀ®¢t®Ãƒ­»d»èáÖHƒ&‚o~-ò:-Á‡š‹_¡Å•.ŒÌš‰3ÿ8­Q7‡”áë £}€‚¥íß5¶$ ì>v]Àn­Í1õ +ª^¯Nìß©Læä’F4ýµ3üG*$tKéJ)ݘ.²=•rÃ#¶FK°péâæ…ùؘ(gá–âÂû½=@›°Êìºë"Ux…h»éFbj‚æ=Q%Ž¯?Ê“ûar_§îó}ãò}#ü!·ÅþëÛz8íº‹x]Û xÏô@ê9ˆ|/gO4Eloy¶{#þ'Õ)½—°€6êž¾ÞÁ.þ›M…CçiÑ o”5ði\kCûE"IÓÛD|©~¯º¹ž„m;¯uEÌ«±Ã×Mõè@ FøˆnĪ'=5£§>Ø”ÿæØ…q=Æ´öá Àˆ(Å“>Nip€É+×9RÉEó1CúÔ˜‹µvr~nÇÌ… —"ìK¾Íœ³ý»è/‰o_Ì ¥h€¼¨ÜùŽIŸø¹">3v„_žb/€žÖAã‚8¾± +¢µÏÅW«Wy¥ý«Ì–‹'€©ŒÌÓ™jlòˆH4PuÊ ƒÛq8ÇeÙ€mí+Ô%¦:ùràÚ›ÚBû¸„jŸ&5:v>W”¡UTÀ‰Q„¨à:1ÞY¥öPîñE5ƒ¶{€I먃-<Àeæ¤E7+h¯BDÆÁ5(„O“i}Êêî‹ñØÖR*ŸúÏtJ´Bc9-(§‰¹8|þ{QxäKºkúÕVÖ <¢/Ý*îì)ßV8ëýRXsiÀ¼àì;^b¨zµ­æuýM\œ ª®²‰U$Ö¢Y”ò ùÜBTŠÀØ¢#5µå!JXƒW$V¸™º Ö•oÈ›•)ªÀ/T  ô'S“ ]YÑ "AËå$”Ö!$Ñ·,`¡Í5%Ì@“ª¹«-5?+¡?„ïNŽà»`k.«xŸJ&8¼¤qÕ´“KšeÒq¯"³L¬:ãÀÓ ù’’ŒÊ¼nh:¡IçŒÚ{nÀ)0͈ӈTóƒ\ø ]8Yu„ÓL«JßòfŸø0üÈ9ŒW5ãì‚[z*ÌVƒ‚ªÈRð™ë‰¹¸¦õðûrWäÕÿåâÕ„=—_…ò­Ð* í•Ì¶4 û»æ÷å:‚ò‚«¡¶ P³Û~½ÃøåsÅ)µ„CÛ« SÃVÄãçÉ RóI¼ @êq4ô¬²:AߦþÁ¿šrÍ¿2rÕ!ý­Í/Ýj“‘6›žèŒ¡ +;ÿ 0ñä +endstream +endobj +99 0 obj +<< +/Filter /FlateDecode +/Length 6184 +>> +stream +H‰¬W[oÇ}ׯ˜G- ]í\öj; \8 Z3èC]”DJJ$R%% ê¯ïw›Ù™½ÐdP0ÉÕì|—9ß9g.ÿ²{¾_/¯ŸÕwß]þ¢.?-߶/Ïêûïß}x¯ÎÞ-ÎJUÆVð¿sVínÏ.ü\ªÛýÙåBÿV*­ë³¼,JcÕâZÉ—WU ¼ÿš¢R®s…®J­LUTU ï<ž-~?ûaqöÃOé?ßÇwa{üõéò¯¥ú°=ûûÙåç§å3ü´ÜܪóÕ&ÿñ]vùÓû”¶•IÓU˜Õ˜§æ<’fé3¬1ŠÖ¼T«¶*JÛ9Õ˜¶èº®Æôþu~ŸåÆNoÔS¦ë¨óe–k]hu¾ƒ/ +;†EeQ+X­áçµ_ð_.xÈ 9MüªºËòŠÙ²°êükf5n±RKõ53c&‘,m¯ñU–[ÌãVE§ÎßÔ"­:_«=.2QRør…ÉÀ +ήÆÇÏTYå³Ä…+Éi¯¾hü¶ýj•9ÜñAÝÂÒw¤ßÓо-F~ÊðÍ º¯\(Ê]‚ã“Ç>wƒ/ßÀf5—Øb›LS¶kïwê«­ñÁu¦ŒW¨°”m°|Ú}kàã× F±vê9ëpÓ­Êþ½ø[€Ûa@ÙPEYÏáš×¼‘dwMg]œÒ¬*jj’î5©¬…ñKžàF}4¡uÙt•Ìp›å„¢¡5Â@éK qõ+ul®3®z»¹aX þÆHÞÇŸØJxWí²Š[Ïwi†xÚ5ã•B-¹W€~>Ák  +£KYÚйš2‰ÞQtzx ®ù×5ºË(aÊ懪Àù¡-KæãO¤NNd ¾Ú¶Óˆ®kS”Mkù$ FgõBÐ1£a‰-“¬p‘0 ºJ¦ož»êdr™µ\ÌZ¯p+:–΂DóŸÒ ª(«§ç¸ÀžÍ+–‚^¯I4±ÌB'3L9Š~pР؛ uÈ5$?Æ|2Ï Ë‡Ø+1$Õ”¨¯3Ö¹^­W›Ðëñ@jÖzF‡k¶ 'ÖŸJÔ§ºç†¦C6"œíeñ#ª“c6#ýìµùLõZïÝY›–¹å=Ù®zk\z¡<9ó½ã~QT¬[É c¸öæ±ÑH Xµˆ©IÅÔàʾÐà ün©=XÊso(@&Dqì1¸2¢ø(Ùz +y³sÉNu?á%˜•: ~y†ÚÔ˹fCd,`(äD/{‡IÏéhü¬·‰· ¸d\RwÛì¬ý€÷8Š¨‘¥l#㲓y[z°¥D•Xš O6Š†½… 9–× ¥ œÔk)ëG¬› +al8,nÁ™Òú¤2'Ÿû3fç0`‘ßâG?‰ôŸÃœây9÷ìht4è +kf°LìšÖ ï…x†mdbÄ?ËŸÃdŽ í·À¿ç»ÌÝÈb3e<ÀÐy×ŃÆ.k°*loȱ¼öùHó21 þ‚ä-„¤ëo­…‰Ü]o­5½}ë%nb`vC¿®¥²Ù}ÂFÕÌ´´é´\ûv¥J™èdèdzpݨòTâ¦o®Ç£«.èšež\@@×5ãKÊ”ÖÕ§h“³´%¦ ÆÊxè›V2Â,`5 +Ø7«æo' ŒÛ: p…—ß‚§#ZˆØ,wþš•hAr ñ\ßü%0gˆ¾ù¦D8`Žº &HHVøRv³öÍÏÑøœ¼†N¢ÿxå³=Hz `3.¨ê4úg, Š 0·õ*Ó6QâŽ747°TÇ=:æ6þ‹p°ï;; QOñäkdæž¡ƒ¦U M=©iõ¬¦ÕñD¸í‡¥æ{f Í".ƒ>TiG<äs_û¬œï üzœ0ÜÚOR=v‹ãîzR÷4JJjQ;r¦{!3o9þ™>v>M&Zà: eý'Ѓê_£úÿ3žŽ6¢v–p{¤íaR;’Øø ×ÈU'¹Cw$ߘ·3á[Åoyú˜P! ÑÌT{æÈù{Û bÕ’Â÷g-Ô)ر ³3VÕ&rϽ®è–Cl®É ÂÀƒw ³Bï-´Ý"þ Õz!ªïHõq2Æš_%š;©z(Cô­Q¹¦x„‚'¼Ç˜Ä c‹ˆ)" S©¥HX,¼xœÞ”þHŸ@bÜŒôO' ÃŬ’‚ÂumQÖIP“¶øýȽ«„±ô ä\™ò¾¡=…ú{™(nÐøΑÞŒHî³þԽéEø§ ½JÜq—zëÞ!É,Îò¦÷ˆÆöƒûJh!ª’ ÃÈœ„—þ'ÈÜPÝ} E· =NŠ˜_ü¯X·Õ)ÌT˜IÏÉšu‘»MÑ4+Ç ô-Væf¸\¬y‹X­¸;á8¥/#$Œ‡~Ö"¯Z2š|ÓC&Vz*È—ó¬¢ bÄ‚÷•úˆ'Ó<©¤ñYU™%¨(‡ði3º$”*ŒÀÉ ž ¬axWáÞ_²ÌnŠSpÓ¤nhNÏLyé_è„hnItúËËa9:@#þ¢dŽ¡‘Þ2³V,ŶN¼9>íd+?üƒ+SPI@hÕKIÎLä«™w.a;úóמ†<ÖˆP^1ï<V;§­·ø¼Mn™‡\[ÄŒ¡CÜ™»Fó„WrºÝn‡ÄdÔâZÉ—I¬•Ud¼×[Hƒ$Jk$ ÝHXF0e[òŒ;ʹÏè ØÞîð]x²}á’ÑCLvü„zº¨žË…þM+ä5—æ+£ÂJH¥™Pšk>'¥µ¾ÑÀ†``0MÃH,R ò´e+¹`Ã’«©nÿ¹EXX¬—~Þ,3i С£Ð.¯¸Z@ÇscŠøÇ=>c÷ÄËxA¿§‘Q«÷!1Ëã§Wnų§yY~Fž8'r{ÀWàså·Þb–š.¡4*àÛÈؼ<´Kl—”·L4ÿƒø}¶’<±>ÿÇˬ²2Ýkª©Gc¨) -J†PÉðÑnz.\ f¢j4ƒçWøŸq6-^ܘ+bïB@ïNp.T_4ÿë?P§1é3ƒ }Oh^tE{¶—*Dë½¥J4dlì&–[’k’‡G ¥c¿¯°% A +u‹Í$‘öÄ¿ &³©Y«‰;Qhk¯6S²Ør@ñ‹"ìÃ('@I§úíflŸK£xF>jÜ5tVzÆY¹Yge|õ•¨]Ÿä¼'|½Klƒ4NÌÄ„]g¾áÞ¨ÆN¡-áÚ›c_ɇŠ"uB,­l|½¬˜½ó˜(ùÚ²4{FŽ±^Ù¡šwÇcÅqGrµ±™7í -ðRⱑɜQc …a{à±n‡cæÊwõ´ÃÏd`ml–zXlôÅÿ:ôäål]… ¯9OÀRï‡ûˆ\:B~–>_³Îby…Z0¸ÃÌMÇŠ¦SÒ!¶Ã0—æ|}B|¶3ö¸{\ÏÚã€éR«çH̸¢ عZ)?@/™q,WŸ^¤<^O-ži৞B¯Äïtc†>ÜîT£Á’<ÕS;LhD¾A¦7¿ã:¿ ÷ÖFå•%ùƒýÍ +6Ôþ¦DpÖvš²ãt,ûQ£‰‡TwâÐ Ùí¾Í:gŽT[Áø.Þþ¸T)\Ì\иô&(NlL;œéÄ™4x&=°Â•SÄ}ö5ÄKQ3„(t+¾ Mo™%Oh&–^\›ŠÎˆ“åæsA~“6’½{θ ÑÑy¿†CºÇÓáÖjÌ” +=Í„ÔÿójémIÂ÷ù<.Ka7É&yÏb³—`Å^,lY–³{ ÉžŒÿýv=»š‰ÊI ÍGuÕWß\‚ƒÃ§êóó6üNx(9D%Ä`?–m]Ÿ9 JEæX‰øi«,ž(<¯5í²º‘+ –%U`XÁøö{ Õî3áü¡±¼¤”óvS¤ƒ·WØÞì=ضV<q >| Ap³_à= °§¹¡`ïá®/%Þ³½¦kÝh‡¼s®ê¶ mQ÷Þ¸ÖÏ` »•t?Ùot‹gŒ–˜…DHˆ±ÛBân’ù†e¾›IÐ{q,Þ}Wþz˙DŽö‡%ï¥Ç(Ëim”—j±ñÇ#’б$´ËbŒ}zVÝàÐ]¹á%Q‰¦§Ÿ!; Òu +$yÚìðèö1ŽÑ¥ àRäÉ*£–õ0êWøY ¡küìAÔõÃÂr‡ÎØÙ8_G-AŒ:hŒ> Añ ©„'L«˜L>‹¶ÐÈ9×¥œ²8!«|ËQóPÚ¥07ªÑáwž¾Ëß&ÄÜœàp†=ç«[pê3.šÕ!ùhY°Þ×?Ó«p’¤Ë.]Š|xsèI6evžõí«EnÁ©Ô1tu3("\HË ·í1÷ç…á¹q¾Å׿•mKNζ¬ñ÷PÖÁmÙVäA=võî##ÐRmŠîz¢'$ž÷Ø.,âÆxÌÌ{ä‰ï"ZÖˆ‹ .MX#g´£Sì˺׿ȶ¨±#Y´g½PZ),}ÏAò¥Ì¬L²Xã£ë‹tÏ;2a”°ÒØƶeZ":#“®i°5\=—C¯q Ыc’ÅT¾qìÀi€…Uìk™,Ò ¯iF÷aÞU©ÂRsžÛ¨wš³“[†óäÉ$ܯÞû²GœŠOeí4\5¡™+úçs2ô ýó­qw_p”«hì#;†7ðg¸‚ ø&ž$ç^iÒ6¿–Í@pËŽ¢Þ!¨Þa÷ãG>Á¤°oøƒ®®I®îײÆI-#ÐOÔ‰< Ñ1}jÀ”zE“ëe¯¡-Ã0d¾BÁû&ࢂÃòšÈ§?˜ÞÔt!0ß`aõmÂC$*èžaï£nZ²§±¹Þ&u—IÝqšVÇD y Éúþ;0`–MoÊ5 eÖÃÞ"ÏÑí*ŽW̳Ízî};ßs#QrMÓ=?ŠSšhº4ÛçG–¯‹Öb´‘ýŒs/ve/M¯­³áobEÑ`Ä9kk\îÏ©d ©r·DÛxMOCŽc·@ä>]ë!¸žØ +P•ÂÊBÞúa‘‹ :ª¼²$ŒpnáŒÓÔ‰ö©Ç²&!çûíøú ãrÕ˜õ’WM!’tK•b¹«MñÊ.@¦Që‡Ð­ *;kˆÊƘˆ÷ªZšpèT³·£ÏÒÀ ·K¸Ñž]´È|Ÿ:›øHGjåÖ1ÙYI S5ÝçÞ& 'Ý›€Ö‚)ØÞ³ ÿçÇß`ËÑ&˜µèJà¿7Î~ú܆ŠÐóìaÌzL´#.÷ ®Ê qUî Šo-D…ju•=îãRóx+™r1°ôãÀâ3äp$\[èÅHDY/¢.kÚaYoúÌ”,éú‹ +KÉ­ð[Ò4ô?ʺÍH†åw5ü¾„³ ¬Ã7”–BµojûÒc·ÐèÌÚmÛ™åÃ_<ÕÓÈeªòë@>ð‹í sNÆ÷Ÿ®ZA­^ˆ½®¯s£'äxWº:;+-§ÖD:¿->1W'Ï,´€MC–èÌZýMaÚ$x!ªÓ3Tg;+ÉlÈty†ùAúyr’“é9Q5¹v6c’S”ÛÏ9Ÿ£¾ÔŽ¨EÞ¼¾Ê2ªu8Î$Çfè·Uˆ®Óã¿ÚçºçüîÂ`ìêv¦É".³øKí{þ=U²Ü'ú¨jÛ4uq<üòáÿªŠÃé—¿¹ÿÆøSüöÙhWP@ªã·ð(¡¨ë¨Gà?ëxµê}G‡ù\B˜CÉ|+ÂC&:F!E†"‰ˆàˆlÈ¿b쬔Èeé/Ô‡GèU›&E?R|O-rH5¸Å!Á·LðlÆ=âjS¢Ã»ÓR:øÀ©ìÆø¹û\‡I6;èÏQR†<Œåïà^(ü$1CÙKobK¾3®ïÏ"k4«ÎÌj¶û~ˆ@Ñî?—•GBòZ¤º‘öòXßPg“Æô,½*þ Wâ+>ÇG7 ÝÙ¦!RëážÙ¹ð‡÷0\üÊ6©axûÔÙë\ié;ÆG\ãÀ{3hzÁášæõ›×y]žææ…ªDsKYž KRW£ lä¡';¦7ÆΓ(ê¨ÉKG{„ Þ>O +Ÿêý +¨G;ì D BQ~Ëp0•ðmi‰Ô¾Í{þµý³I +endstream +endobj +100 0 obj +<< +/Filter /FlateDecode +/Length 6243 +>> +stream +H‰¤Wio¹ý®_Á"àn5ÉfÀbØÞìM²šâ`¡Û‡FÒŽd;ú÷©ƒG±»g¤q`Àšéa“ŪWï½:úÓæáÓåÉÙƒú駣¿ª£w'·_ÔÏ?¿|ýJ¼\4ª©­óðÛ:µ¹:8zsܨ«ûƒ£•ù½QF­.šºizµ:SUøô]uuïÀ¿¾öÊW»ÁÊúÚûÞYüûÐê~ƒ?ÿYýåà—ÕÁ/ïáÄ?à@بÁ=àüöîèÏëF½¾=øûÁÑñÝÉ FúîäæJ^ÜTo^ê£÷¯Þ¾V¦mÆ2l…Ñ}Áx Ç» +áR”žŽ©›ŽÂ5M=ŒüŠQÆuðÜ©Þõ8Ž‡ûJWm=¨Ãº2c=ªÃOðâ¿Öüõ\W#Þgs¡+_÷êðFÁǶ¶´Äà«Úâ×]u¸àZ|\Ñósu [º ¿v«G\¶Vø÷þ¨;±O`£Ä†mÝÑ_ƒßoÃó3–7øö‰¶]íÔ!ìj©Ÿ4ï~ËÇÞ¨ïð¾Á>奰|ijà7ƒAÒék¼[_^žÐvüËF;\Æ»ÇìÜÓNtîÆÎÕU¾½¡×aùWŒ ‚¿ƒ›øÖw A;L€ +"ºUqÇïå<á›v<ž¤U¯2PÝ´fˆäÞ´uŸ°q¦yį)±-}€èÛ2#®|€;z™4¸–Á9½Š«†i¦üaµû"ßÛò¸F˜g õ-6–3~Èè§ÈèJd8<JŽßï¼èñ®—~ëðÓWø±« éx 4^‚¶ó˜Ž+l•kh©/ð»Ámó»Îab3Þ HÓèV§2I!E¸V$¾²?Ü$ˆí<€ Z< +ÚõùX1ÙDÊ*Àâ!›­·®Ëa¥WŸŸy†g¤ev!³¦GÏȼçÊÝÅžšÔQ›Pg‡=Õvà”Œ©¯˜¿„, ÙuL?„ÐœÔ'q#’„¨2äýý‘ô¸æ…Êd[<2A 3D" +°wí#!R“³†^‚A%ÖÞ‘°.$¬ 3¡3}ÂTÑí¶Ã¸Ö˜×–[„(ê^sÂ9,¸wÕ™¼=°D"í0†sÝ2ç¶o˜^Ýž›€Ìm‡V7À½éíR „%%zl´G¬e²F¢cQÕ4­ûŒEñŒÌÌ·ˆ$Ä…b'€£†@?‡>˜HÄⳆ…ƒi• üe%ã…~I… +ŠêWyf;>|Æßüx&úáù[âY³+© >ÞÖ–ÓºÜ |Ð+¼]ûD7ùmuá ˆ/bÿV†ÅýèŇ°îoºúA4'<¼ô’¶²Û ²íÖìzà´íˆ8µlú‚l4‹¦ïáöŽ1Ä!_  £QoQîa“×X’ÿùÁŠßvpà±òÚÑѵ¦Ü[L!ìÕ¨dÎþ¥‡!Ù«ójÛ ¢Ò£Iªù†øëÅÜ<1º'b¬è¢Ž Ç8Mf)9å-)›!ãÅ£[û~кµøF½üL§âF‚™þÎ÷Âðÿë—ø ÇW8uý€Adg: +¹ˆL!>õyŒøY=TI•¿Ù]M?KsËÜIàIËÆGß³´¶2ŠH̹;»T¤ÀpÄlÒ–~ÑôÚ…Zàö‘X%œ“,ñ‚ã SSötO–”'µ D|fœfBc[ˆõIUz>¸º\SdþŒï +Pícþú){Ù huµNŒ"{©i™¯uH>–aò%¿þQ0|Hhêë „TÄ5Í*4¦]ñH!¼MÞ5rjiˆ´xH) ÅÇ\©,õx²yZ¨gØj±X¢7r0!a'ozŠ§‚Ïí,êØɦ ƻضWxóZ¬˜ÐfR‹Ž5“2ëef…aî0¼‹}Dr(g^„Ñ2Êì(ÆŠ _@°F4Ty0Üañ…wà2ÂõHúYʾjã¢T”@ð„Òýw<)ÂÉãöÊÚ‚-­ÅºšgUÕcðÿ?7¹ª%I¦dÐ3 (¦ó)j\§~’}쨅 |Žßdc2Æ×AœyÀX£‹0 ò8-å6II/KGؘ´x³ {쥓Ïd÷²Òv?«%Q#U’>¬\0̱€d™M1Ü«„ͱfKm›˜÷à­óD5ò„1ñrhTw8øØbÒHþcÉÊaÅ©E‹E½ÇÞƒ}/Ö§(ˆŸk¾OÎu / +'¹ÉzHì¶Jg†Cc„)_av2É¥ÚÀ_j3éÝj»}ù†LÐNRæd3Å™…çA¦Ý¾´x^¶ +Ù!šŠÚ?ƒ&ø5ž ÙJ.(\òù Ä^°úVI¢f¹ä,¥z´mp@­ ow^ªùØù §5屉¯¢ý—-òC0€{xx˜Û2VŽVæw€ˆZ]’+jLðôMîF6ÃÈ{h*ï ÃhÀK4½°wðË7ºêC—rØ-žëF>Ýðâ ÿHýˆ®ö? ˜&¸rÊ+dý 7õ¿ +2UlO¡"˜€å·%-dümÙfôÙ"}«Fdχìõ1y㬠=Ì\ƒƒ”½w$J±•hªÒÛ¹¸£„jy¥‡ø«4:‰óÎf=rlT¤¸bàË`}2ãN]DÆåMø­,¶_Ê“£dà6éÄ–)∘¼«e"µmpc˘ÊJŸÍ"“óþ2êì„Âv—ÅðJÃÑÿÄÕ ÈX<™M²mkºŽÃ–²&ì'H,{”8å…©õQ»—Vp Y'E‘Íjö›€Åå‘m-œäž“«#Oö‹áœ©X}8ÔÞá«"Dƾz‹ÁŽåÀJù#|Â+ÇÊkGçÖÚÓKF{:¶Q) 7­!×Úüõré㸢ð_éeÐŒ»ýB– x£EÀì”BR±DÉ Ëü÷©û¨{oUu§ãlLššé®Ç¹ç|g&je†Ù¸ö•wÛ÷ÑÃÃÎTŒjJ±„ÄøSJÔ$Qeýw½$t‡/é@ުñ ?ØiIAÒahîLvnMèÖ]nÌÉB¦V+aëD5Æ( Ë‹·}ˆS¯ïxã´ã/9’Æþ½B*«ïÞ¸¼îÑ›LždÌJ|u"›h—–šãÓ²µäÃñw%$~3 ÛUãTØLXÌM)ç·¯…I‡;mlýb&$'#JïÈÇ_sŸh>”Íl3ÄG +q¼rÁ¦®ž¢ ““\KnèýÌ£$eq˜ÔKÉØ9)| 2}ä¥kfUñÌ´+'áS>:2m<ÖxPYc NáB3 ËdX\á€ÝÄr-Äù¨P“ÎCW:פ–On}‹ä·é\SI³cÉOSíN{Da¥‡v‹›SøF¶Œ€¡ÃmÌÓNiš6-#×AœÑ|×á >tèüÀR KQ¸“#¤¿×!o¥ +8Ý‚q…rr[¼¦Å¢u¿éžÙhëªK 9¬ºéU? ³7”þÌGbµš=µÌÌô˜ÖÝJf—7e¼y"<ùhÎgŸ “g–iF4ì—ÅžÀkfí*Ägû¦û-—t_ëæZÊþ:èÒáÒ 1QsÊÙ’••»ÏoVkib,w=UYižÁ‹ÉK ýα‚õÑÕ}¬@«±/!–or¡ª)MKàs¡%Ùó?¨Ó¹pGw÷“T ïîŽìt¸M¢Ójœýuqæ““éç”ÍpUŠÔ;–'çIzX¦!6“ÖºDFë‚×&¦ ÅÛj-Ù©ŸQ?%¦ï½W[â…ãzò”hôp«f½ÕŒwÖ-*¯ åxOœsÎw4Þˆé|Êç.¹Âçž²¥×+(e€—ª!™2ÄC¸A¨c‚\ª¸ö£i:T»(4Ñ©bÒ|í~ôÔ@EF|9WÁ¸Ì­ÑB9€«EèüµFêHûævw·÷¾)?b4ï£ÈP|†[ìWÿ *âù\‡=ãÿ†=zƃÐÓ O¬‘ÇáiákÈm5rKG9ÄxAo~5 ÄÞ* 9 XCƒWî^yøí5ÀºÑÒTÙ´érµùpÒóîðU­ +R,«ìWš}š­E'Xá•/}˜á›'xgQ:CQ¼¾DÛÂè¹µ’š +ˆÇ—â™æ}ñøe6àß…ÜKׂØ~§´¾õ%¦L¹°ÿ¡iÀg(7dîµEŠ«ª«,¼Cšf¤éR?´£S1vZ X gYþ¤ö’¨äÑ0}$I`Øý€;7¯}†’AÉ BBšÌ¥3Ž…•]¯¡PFW¥Ÿ0tô¡ÐOˆ›_¯||,%š¼y_¢s0M}8’uzÌן,g=c +Ãêb Œ/¼‡ü°lQ*ÀèÇ¢[É”_ïò°›ŠK§»:w?³pÕ 19¥Í.Öw: öÙû>Dˆ°3Ë,rêìI"žlÇšÎçUcèKïWR5A=G_Ýçò®9ˆ—-ÛÔœÝ<‚#v8V5`tÄ6.¦`šôÈâÌåÿ9Ë“6–;—óñb³èªJA"C[þ +®`;|Õ‰ö×Uð¯²\à‡ ±~fJqבMË(iª‘€ËŸIBD üÞ‡Ìã%ñubX¢ïë(|¶À"¢—O˜vA 2ô_ñ¥Ã?Âí“QÌO7îŸI ÝÍŠgðÌñ𠩈DäˆÒ@ËID ìpJÿi½©Åþ³áë—Û!LiSiG2|§Ï|»gtIg-מõïï|{iHá”ZÒsŸ‹ýÝ ´=l(°G¿àÖ\;ÃpŽ³§}1Âߦ t20Œ-iðËSƒÀ¢ á»NÒŽ'¤µ…>–è_*=0™Z¥ôf9û…’’A¶S´EÑÉ+èQcmwû=•)Yƒ¹ºŽ\xklêÞ²=¼í®ìï]ƒ õ ®¢D`wÙ= =Ó¿Ç/¾¡WDóŠ>®ä[I)+Î'ÏvŽ>ú|™×+j)ó|˜vä–4µYAÙ9RÄ¿XœÑF£&ù³Rz¾ë<ðÜ3g9GÒJ>IKuGE1E‡Øÿ[¿Rït&kIÕÄéÚO-†è]ŽWÄï+Ô¢YÚ>Þ6Q7·>¨ ñPÇôΦJ–Eu¢bÙÝöà~.|kø÷WŽå€¸ÖR\qO[³?Y[ï¦O‘¶Ií;"6Á€{øëwÀ…"õ^øœåéåÕñl1{'BP}c¼ÑÚ(ÌiRæúÏŠ2ÆØ£H¤nˆëÚ…‹Ä4”&AÔñE=J÷ƒÕ\À^XFžMÙ;Öš7é¥OÎD:RÈi+6ñ²hc +m¸°k<ã|^ÔxjBÚÊ£iSÏx¦k Á|Í$k½ +ýfªeâpúf®µá^KWrº#É9OκHס«ý{Zè»ô”Ì‘1>‘¿B›úÔ6¡ ”øçœS&{G +W“\dÐs$â#î ážÖZó<]£ù¶V^:³#Úpø»°'ŽD$SGyDpûsç*pò3p…Ëþ÷ÜÝ€KÀ¯rÆ+Ê™áÁIýöÔÄ^³&XÚf\¨õ]§ßÞÁgŠs¥'Hµ:†®BûõB¨Â¹,¤‘*W¸æE‘ÙÔAx;£(xª ++5 5;& Ýhƒ‰Xf¨Ë—Îãvcɯ +Íæʼn //™7Ù°E _Oˆ‚+øÅí_ú¸œëàSCœ{š3Ͷ¿X¿˜…pùVÌzŠ&c•›`Ó)ía[ÛèÔ~PäâBuzHÃü•¿ú<oWªB¶I5DŽËÛÒèôŠäWüM…’töÓ,-P0Z£ #ˆlçÜ'J?o{Û±Š³­ém."ÉçlÀ¶r}ÖÛ(La¼` +Û×àǬ÷Ûj'ç3쀷ñGšQ_fI<‚.Ö"™ï˜U²¹Sz°_‡çu×:'Ãh°,_4I¨öda‚Í"°óí¤ŒÅ cžòpÉêÈ)–rš–=9 Nɹ9̆¥êp3·ÒÜ Y£ËKUKFDíļÔôÒIFTÐÆwX] ÙüÂ]ch×1nĉÆçG(I Y fâ® ˆ8ÙÄ#øêë’\Ùœ¸yýÒ„êïvÓLE¤øÊu¢l— W,â¯cJíè´ N—r>­4ÔHzTeceZ{*[&Kàl"‚Ì9¶sˆ8ÜaÖS9¶Ý­÷›w6xR?°h¹eÑÿ7ô™,ÿ©OÌ—þžžä¹²þ€þŒ¾xòºvDK×”¤’E7»Ù8p3æÃŒ +ö™@嶮¥!ÚûÆ+²B9ÊpxñÛÙ’¦+æ6Í 2+Bäþtçýðù¶ìp@d“ÙŽÀRâ Å?iÜÛñ¥´È%5± ï»ä™y¡cÚhäV làGFjÔøjÓÞJ¦¤לg>éÏj w̾*ª\> +stream +H‰¬WkoÛFýî_1M ¢9CΊMÒY¤ín£ý´Y²-+nlY•í$Þ_¿÷5/>)»0`Iä<îãÜsÏ=ûaÿp}µºxPß}wö›:{»zº{|Pßÿòõ+uòryR©ª4µ…ÿMS«ýæäìçw•ÚÜŸœ-õ•ÒjyuR•UÕ©å…ZÈ·ÏÊ•-쿶´ªéë²oà…±¥µöÜžœšºXþyòãòäÇ_িà"8 Â½p<þz{öÓm¥^ßüãäìÝnµE ß®¶uºÞ.~~YœýòêÍk¥Ûææ*´ê#Ú©½Zì Wèªìx¥Q-«ºoTk:°¾íѺvÅ¢5§e±ÐèéU¯ +þvWè²U§Û¢+uúP|¸.ôù>5~yP÷°Î¨Óœ€'ÁŠ?/®áhuú¾ªíEñïåßB ž÷²K¼<[.cè›–<ÒìŽþhSÖ}åØŸ7`…+5š öõhwÃv·øt¯;ü²/´.:]Æ•u² Üg.UQáï×øºÁϺÂm¿«máðXXèp?m€ý—ÅÂâ‚{ÙøPôCu¾VW°¦ÅÜà¥-njðˆ¡¶xÈuQããóÂm´ #©Vd®Eo´V]@J &¨Á«ÉÓŽ]pÉá”´š¬Z‹ßÝó»ÓŠ[ôhÄBÖ+¼á…r!¼3ã°UwâÃâТ߃gQÜö +oÐqÞ ñ­xECq¢Àì×°M¶1p[|ž%f'P8Ák¿nqÔ: à uÚú´¦Ê +~ObÌõ˜€±ýL‡›6JèñÓÈ:¢Æ­ç…®ÓÔ^œœ¹Ð”C9ä0ÑíËPâ« Ù¥z-X¾ç~€Ë¤àá¤GÄþ¼Ô¡‰ˆ6: µt0eöš—q ž~€KÌ[±(Í,q ßè/‹Ë¯TðtÏžÞJÅÆÝ0T÷ jo=‡zW>ôà`|¸*ãÜ  `¢r½ÉÀ•–°ýógëälì(ž_m¥¯,ƒ/!ªÐуº”RǨÕMÀק¢êáü`;Ž†æ…BNpáýJÒpÁ±Å¼´øzWôø¯ápz&XhÃœ‡ u”P&_K_öÓA5`Ê©Ú žK Ñu‰çÁ²'8ÏÊM.p­»%ü5I€ 3 ™.ÄȬäZ‡Ý’µ5~1t:ff܂ßخžír9ÌZå‹Ôa‘þP,:ü&Ù½QÿÄÌ‚É¿AkÎd´¦Í­9p3 +ä“ï/~Å'´2³Ãª±>ƒ‚Á%ÝÈWë˜~bWöê€Q°ëRLøå³­A(*2܈‘q 1+4h‚Wq¦P›¦¦µ‰(óÍŸ›~ìv¢”²?Ä©k™}A¶@ÎQ•¥äžðEÀÐÇV9U;cwÛªùŒcPSçÍ°™C…à†f8¥‡Œè!ƒ6]{ši“˜E’‘Àt) +ñê†Ä,”È’iÿƒ\¬Þà•ý„VƒuT½ï€Ü8‘¡Ub¿O”—õ0„˾x‚×Þv!Þ˜œ4[6Ï–I y˜ÔÏg²%ïèÒ@Õ•411c|OzÛÄx„"Iû´›è¤=ª¤áÊžw8fšCd˜c¤ˆ3;ƒÇF'@Z”»ÐÂ&Š#yÛ‡„!ê{B>6yñÙÉ"ö°Æt´ciÒ×æUÁù4;–H;ì3Ìþ•7ÇÛgZ)vÌYB|þfÜÑ2Vë¬f™ÕœHzÑ\cÜïÅêD´å6çzÏå\Ëö¨Έ&¢I“9æÉ®ÉâéÇ‹cøËÍc1`¢…ü(%^i†nÏm9¤cÊK‰ ò3Ò°©C{4Ô3CÃIðC nYî'“Õf˜×Üscô¼¡ nOŠÒ:h¬Â¾>Bån“Ÿ-õZd½"ñZÁ· %_ ò Š½ ±·´·U.ƾT–X/`“Ô©ú©`Ö¼YËó/ð\È #t.„y³~ÁÀIî uø¸{ÜBXr¼fðj ZÜë·jfdºñ’>H›Þ]Ø=ˆH87<Ûó®5Ž¯´Ä߈‡ÓnS“ÄÔù˜ºÙ˜:@£C|Li0¥˜ÖSƒ¿\‹¦jðŒ"¬[á60ѹŒðž ôï»/Hà<B& îz X°m¹¦–BM8¯çûEjj{É?Aó1œÃ†- ¾Ær>‡<"ôÊ3<Ù€ç\!žh˜lèðÆ»„wmâÕ–oóŸñÖœŠ¢S9¼„œ><¯}–×eÅi­8£º©§ùÉÚÒÝ‹"-l ‚Û°0á!-((ÿ3’ô~>-|‡ñsÁ÷‹Ì?S’ˆêØÁF¶Å¾š’“M¸u¿–«c*„¬Òé K¦7t¡N™¿B–ùÁƒ-·6¾v$ ½Joò‰€ÎŸ„ôtl¥‘Ó®¨Owãøz~]:8§14,—ÿ'ùÞV¹\jgä»­»²«à AìfØDNuË“Ÿ¶,“õÉÄiÖ‘Æù†—T¨X/T¤Çx$쉞[ßÇ`ÏCFD/Ÿ¼V_ËÜÄ5—H@€vï'Ž¿†Ë%‚%½8ìµ\âÛôtûˆÿˆÏˆ]Sn4 h2¾N" N/b4œdûpà™xµžÜØ„nù9dš<¹a¸Ý¨hÁJzÁeì'Ô)\:'Õ#mÞÍ ’÷åæ‘f= Í)b[J;Lé÷XDŽP`’Úõ¸7%@}dstœŽ4 „‚æ«ñóOï „óÈ‹6šfhr{P™ éщ”ý)‡Ÿ.e²Â£“vø­–!«M04ì¾Ç`ªÎ1efȬé]i™ ) òø”–š¤’.zÈä*ÐéŽÃP.©Êhïõ—&‹d À¼û¾ ¹¥RïYÚDa“_ÆGKYpþq¬0Cë2 +n‹~È«Ecæg¤ä@kí!²P¥5³‹pK›…¿šÄǧaË7T´O8¼ç%;¦ƒ„ {lîPH"~†MÅ3Jç èò¤‘¨ú& ,$ î bÜÈÏ÷§…µÜ½nEMŸ]9%áQ_rPd)èý†iÑøüp¹D9€š¾ZêM† ˜—xv›TÏŒ¡­“¡a¶sª÷]"ùÖÜm w^§iI¤M(6nÿ4„¯÷à†òð¾P<³u*|ЙÓÙÌ¥ú-J—ƒ‘p ŒÒ|@Æq¤ñ.Y¶ñºw$Xç‡4f„RE33¢-„)Qeuмï}DËáº]bÁ1\× Æ€nJuŸŒY}I§Æq•GN”%Ú¤©Æ"‡ùÄ ®ÌÑ*†ÉЫ8·,\†ªÿ£¢™*U§ÆCoÈ]lÉ«ŒÑËßÕN¸bjäÐOÎu‚§qaG"[0ž?ra“ÚïsèÌ!Wû¡l³Ìû0·càhí+‡¦¿û¡ ºSß8-Lä=·ÎãýÕhcUlÊi-&­Ú—5±ÀôßÔùžÖd‘Hlìҙꛥ×C]âmðò)‘vè&oòýú³Ì+dRƒ[{ÒÁåÈéªÀÒ3ÐÓ£B_r¤B¾bæÉô/i(ÄL.ÕÛÑý M®Œ#~"QùQ¢Þä3ÝPª-¡®°kÔýMãÃó÷Â=É«Cö¿´W[oI~ϯèÇŒdŸÌtÏö„X#ˆ´rÛao"̯§n]]ÝÓcÏdÅKN|ÎL_ª¾ú.$>3É%+YCeùC€ÝÚê¡™YŸE¨šÅ8:gjŒ›quNÝ«e°tÀjÍÞ¬ ­jÛ¾ŽÕcÂ@^ rÑçì–+ˆÙ(Rð¥a9CR4ÄƇ,<†+%Þ#+ýÏ’•J¸"©~—,aâW ™´œœAÄž‰ƒBì „ð0)†\3¼LyÔÔîä×H¤èÎF”>ü%Æ¢IÞ£YJî ák™™.s ¡‘ß0ìaöÆ°«¦q +VJU,’dÂ2¢=;äc>ä9^óË¢ÃåŠñS%ûݵõ³1#2Œ3Ï äº›~~Á®G5ª»õýNÕÎoí&eä ëÈ A©¼9à¬Å3DÕQÇ>]JÇJñêîïnúÜaõÃlÆÙ˜ó|9+ n¶‚=‰÷HÜ6Ü_O}á_MÉ¿Á`-–Ÿ^Âá¸È*‘þ”FŠ–Ȁ˫ƒv5±Hi¢Äì§KÃj|PÑjzÐ!šŸ>›áa³µ|óóy•þ~ë½ofš`¶UP2ôÆ‹òÕYK.f„‰¥£ºÓ‡° ø260Y &ã ö†À7á°b÷âzo_7!5¹¡÷tA5KªšFà ~ï}qB±ƒú&ÐcS´ý¡ávì!UfšUú-¢œØª#º:¢^«’kú¬DXdfœ6xâmÓôä{¹çÑ4úÍE÷ƒwàŸoHXà?WŽ?¡ÿXzB€OV +í T1GÚ=5çÄ#”šþòä+=VÖ½v¿i¨W"Âñó3^.üˆcÑÑ…g–R¶6IÄ;,Ä0ØýèMiŽŸdyë'|+éëÁ0Êš„1úñ¡¶‚c§ aƤú¼¡øŠ¬ûö9Pé)«ôEË…n¥Èô1eÄfpŽTcÀlGÕ1ôÃ’“ˆšI'‰I¬ßbh¦†KD9’NARï@Ï®¬â9€óÚéyÍbåU¤*AajI‡u䜬òù¸:98Ôˆ‹ž­ƒ×Ë3¤òü((|¤ñïÈ4viîdËžj.€ÌbÕRqúÇŠ¥ÒHsò©z¶ÑJúRƒÐ6ïˆ1[GbÌRƘ-+Ñ‚­VìšÜÚÑÜG6×rl…;/¦sÌ’ ¾O2à‰¯Ÿâ¹]L9£û–Å:’µ×bVm«ö *·ÐFnÏšŽ$( Oð=û¿$§ñ¶7iú×>lj]Hš“‰›jÎF<²^‡I®5³ÂŠË]Á¶léwwi÷×ëp—®nèêÀõ38î-Ïù½äŸñ"”‚hžÍ$/Ä¥ˆç.ƒJij⠪zl(¯s·—|ïœèÑðr¦—(1L™%¾{‚À„®üvÍ]~´K¦‰?D—ÑÌ¡LB)í^>ÜãÓ[_†¶øü¡°Z‰[ùIQ8“„ +;&º%KÅ왤cdÏSBôõ1מ/œ öãÙïÀ³ÅÛ<‡’ˆ— óß쥉ҽÑú•GÊâÏUMß涣×ÎŽl’ ñÅ»4Çx€¦™Ù®ä¥ŠÒÖ¤¯co=Ì û‹“û® yÿ¹Èp¬>T<ê +SS06Û(s',Ë­[9õúHbdbÁîk¥Å3ýq†tf†©F¢¸û(­:Á4Ûw‰k©³¢Çúª¯¨!3Ðb„ÅÜ:\®‰×D2Þ0°·Rs=áÒŸVIË™{Œ_3[9Ž­ª#¿ç6¾Š¾a›Ä€…NSð!CÄk·ŸÄúœÄ6b]7,Æx§L;ò‡˜%ñß±~‘&bT­X«MZ=¨¢B†Xxíœß­Ìû;üßbPßdeß»Ï ’wØMØëGà •ÔØÛÐãM¥½äó~Aá`2·Í†¡nãV7Y‹¯‘ÑP5æ‘ŒöÑxç^¤òø ÆÎd¬”íi^V@ëãß­\à¡þ +ž1¡}åÀtÅ&SvÞ KŽŠß#øÎÜ*J;¨=– ™ÑP[ˆšAõE+M(±¢°É-/Xì<çÏÔ4ÈO(7Š†ZŸdŸðD^rˆ‘ÚTØ/ ;¼¯ß?¼áŒª93eXªÐù’Èm0”Ð!ýâ@Á¦¬`íɇþíûàîo_½ùã÷­»}xõæwþ¨¡»¸yÅc¹¸6Ì#Œê| +3<ÕüUÛ¶á×»õe6[ÇeµIù²s¿Ù%¿6ß}Ä«tt•‹ ¹ æÁy#Úíÿñzͳªkä³ïâ©÷žé@Mf‘ÏÒø­·Iv6-—¤g°–jˆ€x1ó„”GAŽYZ-& ©ü¼qÖ¥ª¦‘_w zø/5³XWðÒ)5‰ãŒlÄŽôDÆD¡Ä‘7 û¡k %ò~KêÉ›|c²Õ™«ô§ æºÅs&çÊQ&ç–t5rã_›0äíã >¦2¦ 4´á>’ê–´oàöÍ›õÊúæÞDcC¹Ç“K*:íM„u”Z§,µzJQ„ýŸ5S£X©±´Råqçƒp超D‘0õT$ì0$ó†Ò^+äxiÀvº[²žü ©ÿg-ÔM3eÓgЧÃOúeV‡ÿ 0s95O +endstream +endobj +102 0 obj +<< +/Filter /FlateDecode +/Length 6095 +>> +stream +H‰¤WioGý®_ÑÙ@f4Ý==Ö0 ¼°³Ø˜ûi³tP²Ö©•ä(ú÷©£šƒ4Ç‹¦BÎTwU½zïÕé÷7WgêÅ‹Ó¨Ó÷gÏ»¯êåËWo^«“Wë“JU¥uþ­k§î¯ONþX©ë‡“Óµù½RF­¯Nª²2N­/TþzRMÙÂ;ð_[zeŒ+]ç;e}é}ïÜž¬l­×ÿ=y»>yûNú*|Âãÿ½?ýé¶Rov'ÿ<9ýxw¶Å¾?Û^«Õf[üüJŸ~xýî2ÞXqÝÓ×6Ý*ìé&½2¶*MåjmWö}ßàE^TUå^Š«>̉ÃRܘß(nW·Ö\aŸ±Ø†‹½Nµ6UØ~Ê(ãš²jÜàô¯uaº²Q«Oº){8OiãËN­.à‹?ºÒªÕNCW_ua >¶Õð Áë=þ|¦[ r®M…?ß@T¯V_øãFÛ¦tô°…‡žáˆpèVãï—JWÐú½Â¯ïµ1øÉÏy|á7ºÆHwÚ4|l™­î7ºðxÙ-žoðÒ…©ñÅgµ é\Ñ©¥kÑ +Þ¬1Ð<žÚhº×˜ž\€ó~å)¾t_ÖTƒ7¸‡ðóAA ¬ÅŸ¶ +khðº|Š¥éŠá‡ 5øþ“†b¸Ümñ±ûš¶Lÿgý÷#ä€p]½%P¿6¡ä“®¹Ð 8eTSÙk¼É%^~Ôpjèæ2¦ +`ÆÛÙl¢5ÈQ"›q"ºîñ…B›/”ñ/ltp¼_[áði(WÇp¦_DãäÙëÉÞ(îÙ³Õ‘²‡ŒV™yF“ÇK÷:ÁpSÝëM;©{fVõ,ƒÑã;R‹ˆ@š}2`J?$¦)uñ<ûa™!­ï;ó{ÁŒøãúâ«MTv„—Å'H\ÉEˆßh¼"ÿ ô¢}WLn–‰£5f0 Ý$µ¶4 I’º¥d†2TlÉ.n.µŒ;]q5Sû˜t +Ãœ?–Ðl‚ ª|¥u.•›ü\_rGƒN ,IlâAϽ) íÜÁ»áÐ+uÒÊeëúTù­íÂÕ(ÕûDÔ\)þTB]Ôl %‘¸ Œ˜1=c¦^¨`®Z¨`e…Mµ¬2ÉÏ.Ó2gjÙ0î-söH-;Ô&qúœ”¥/áĉù³:LÎBÜ>Dt{%Q}ÔLFygŒÃš67äa‚Κòj™w 7ÝôØ% ‹{Xs:&£‚Çu#ÝD( ]4e¼èVH;9ñ‹ðŒqüç}î]òó°‹ãyüL¸chBÀbM8éÚ¦`ó]#Ì¿Ü¿B#Î"þ„Ü𾚈´ð±y#ÞŽ"1 únQà–ÌeM'wœZŠ ™“#),­#9Íhã…‹ rÉËœÒ7ÅJA¤8qìàˆø3øý¤;tB¹ ç~èº1D2ò ܨ÷-wèG]1² Á´t ,Ž–åÕò]càŠŸÔDïEÒqþö®YÓ­jh"'£Øá(‚ù ³ÅÝ„ðáùSÂRCTˆó„Í%²h~͘€(šÏ<ê‚âšÐjzó‘ØÒ +Pmò7‡øÓFþ¬÷ðgxÑd{*PÁ‡³_*tƒÚ¿Ÿ1zW-€L3„L;¶˜ 2~í}ê‰C§hƒ'î»*vr¢¦œ¾ÚhÂàÚ6ýÔÿ&ô¿ÙÛÿóÚðèÿI#O+G•Úi ©<<ÈÁ~–ê§ QÙ£¥xžñê0´ÂHMJÄÚMó<§g 4ubŸ.΃Ÿ³•ûÖ4Ä~ìÎ,lËú6ð¬õس²,n–h¼£ø}r€Õ ‰ c¾Ñ„)€òA7@NìW´ë¹û÷'¬°\_Õ€|›.Ç°Kò=œD‚±Mò6ä3Z|õ<ì©„H5|@eê>¤/Xkú,üb‡t º€åÇî´›„ÙN¦õÓ6âáÏšÈt#oÒ„³RNu’Z¦Ïš' åñx:f½‘XZâ[Æë |±¬Ðþ&U4a¤ÑБ˜Ré%fÎvìÖ¥ªH¶äR[ªýÓ> +’Å\'˜ Îw8^Z $"aÈàä–„\ +¢æ$‰òØŽœö OÞ„ó väÛWÒ0$wÈ. ˆ9VQì ùÉÃÇÕåx ×Õ~ gˆUÀÈ‚“ë¦DM¾¼›ïé­fuºŸHªAº þ;-/n*3ìZ§ ĘÄ?éᎩÕ¶™ÙƾeúȬ•KŠmD±O×æw¨±Z_Ñ|WV­/Tøº€³@}°¹5xá¶î-÷¡CÞëÐuV«ûŽÿ¿€4Ô/©;$¹%ovÛ3žÀ7íuÏüüÙö’ÿ@6K€U¼õfî¥]`Ó' +,4i1ÁñU±ƒª¬+.J…õÀʘ}>¯®L•ãmàm4=iË +~ GÑ` EÞâ¾Õô¼í 6Ä DzÌkÔD‘wÚ: øD¸ö{wˆ¸A$/èB ‡€\Âéù´úŠ n Òjô>Ë€ç$EÌ{ipp Äæñ^©™Áß·—6ýTÚÙ銦 T%`Ù6üæñ¨rGˆ³DÐq®ë‘‘ìö!Ô"B€jÝTƒæàáÔ­4 ~f²1`ú|<š…A_ +Š©€üSÍþ‰è¢K½&kžºÆN¬šÃ…2.Óö×$}²|OW¦“²Sàç'8âûE '²gQDZiO4‚_ŽærˆìŽk†Èfû Y"~³ÞîƒÕ:D!Â,O1ÉÁ&ݼ‹.7:‡èKË”H 5³ÜD’= Eƒ]á_rT7&„PÝ‘QI0žú3Ùüº™åíLA6C"eöYXx ;C^Á¨Ö¼)Ac Âtb\Ô%þ·@Qôœmžèˆ}¾Lr–¹{œ€ »)Í)¦Þ·ÙÖUSúDH<²Òb‘Á²mFEÞ¸a–ˆe˜Ñ½8wß[ŸšN£`¹BçÙô–žy­ƒm{>ÙýåÝ¢&ÌÑ +¤>óŠ{ƒeO“†µŸšïNšoNmY¤:† 2ñßW A®õFpDƒ“†éö|:D7¥z«US¬\!é0iGK¥m÷àÄõ°Ï%FyÒœPrêñè{jaæÚÎsxׂéc8¹'÷*2§¤?f䊃Ç]i2À3 Ìjnðá:­½@öp廊ÍÀêhÖŒì¹V%ë¡®¢õ©%B”\÷˜{åžØq9&†0h%Ï_B‘´‚SO—už¯ôíeÖ#ÇmEáwýŠztévq«%$bäÅìñ“ZfF‚f¥±¢Ÿ»‘¼d±ÚU’òbkº»’çžó1­ÓÌ ,Ç%RX„ä.–ŒÀŽqiŠ?‘Þ\f™ßTÞ4+¨Ïöø^–Ql±y^QTQ)’ï{šv`*bêß’}¤âtÒ˜Ö|R¸Én€€–?óÏ[È5R¾&§HL"±Jz£  õHl.ZSEå’ášKÞ£øü×ØNù¶ž.=,F½<1ZC‰ "‹Á²_gK¥³-fr£ShÞd…Òh×\µkS{×ìÆž- 8¾Gb­%àÏxrË-Û +ÛÕQb¿d°×Ù4 Mž ‹<íé"§NM&/CügÄç•`A!{DÛz«(-w+' ; +£VÍÂŒºwKŒÀ+à?ó\§¼c™ƒTaI75Íãü‚HâFy>0¦Á–c:ºjLvðCç‚âÕ¿ÃQ¨¿×äî~—ÜKˆ#šñ9"e5·Ýûºø^›…ºH¤Jj¹t±Y¼üÊS¡ßÛº~,Í8=ãÜ æã«ùAÚ'á|}:÷bãíO).xULJé@÷Ú¯·g0•PŽ ¦/u‡²°g®5¡<dpo"Þâ‚ÝKTšÁc~Ù/‚â*NÊFìÇ~[t)⹫JS.[é,ƒ”Â8¡™Ý”±Ö}û= £8ò]©Ò=õÖ NmÉ'ÞÊ’àó6nM½Ü(…0ì|^škl³ÜšŸÕ¯#ŠŸîpØ#`%°#«Jç–‚‡Iõ}ì%\ÐòÑËâNTä^‹)=ǯ=þßÑIü(ŽðUå¹ÞXôÒcó8y®'kÀ ù!ú˜Q×d+Yâ‘}€©¢Ôúþ1%hKhñ•GþTÍ™DF`ZçPxr4uY¦ÃßnŒ8: x[y/âƒË½xÝꪷ=}™ ž˜iuÂOáÈ\·^íX¢óýòöÈW©ëˆ|çZ¾5DùÚÅ*^×Ã*ñÂûæ¶÷Þ,]ȯø€ÇâcøOtntŠž«a¬„:…]15å±¢žÆ¥*Ì(S𷜠fA±m“£Ù!³à%0ãÿ.ü>áç .n¹¶B®DéM»¬äA²¹©lñEUÇýr^¶åœÕ6Í +ÈS¾Ã×´HcըˌCMéòØ&±‘ÞŠOÂFÚÀh&6s¢¾æµgÁù¦àTŠ‹ÑKÚÒ[¦Ò[|é-aÃ[æ\>F]*/ÔË ÎÄÌ'¾ªLJŸ€Dáwb“wJíQ°2ÃðÃóþS‡v“žaG¯zƸ©«ÍÝD«l£ýu6V¶°QlYH÷xt!Rp&ôb:q`Áü|b½e8ãžôˆÉlÚ* +­w%43ÚÃHM檚tR /Pöˆf6>ÉÿN,–êÛ@pX#8ñ€i‡þx@¦ÿál˜ z×]îŸ}ûýOCwÿë³o¿³ÿt7wÏÒÊÒ¤“!˜ÎzP¾H+†ÁýyoÚºõ¦û&Ï)ï;ûý÷-i»{‡‹1´˜›Ãk¡„ín^uôK懓EWà?Ò<¨wùå›ïP&qáã lP†g’™f‚FúŠRªú üÄr ”Ÿ¢ix,ùÆ{—î/]&ðx Lq®U†ˆÕ&Vçù[WѲbáîgœNøî FÒ@zÿ²‹"tLÝU¢ú,¸EZe%ìÌ}(ZZJžo àÜÍ蛼m®½;’÷¡ô¼èÜmk$cÎÀ£«©b¹I¶.*R³Ê’;&V}q +÷ô9/VAsʺԔrÌ]‰CÛd ¸d⌧ŸbÏ +K¥çº2äbg|éc)77nÈ Ã$É--[Aœ‘y_8–'©«9 ”D©ÃÒäå°;-¼i/ËcÅäÄ­Q =“ã·¼ BGì ¿<üßÊþðãb®õ&BV—×€§@<“‡)c¥sÑF{!Ç€¶”u1LjPãMò]-~@‚œ¯>FnuDpS)8oÛ‚3 ì}Üj̳§‹SÏ©„•VâðëGZ[#z¢äî'9¸'¹q6ǶçMµç꯼†¶ AsäÌàÔÜîH/{ã­45¡T!ó“o™® +åçoI£¬,¹¬­exGþ6}”Jœ´”ýç?oWËôð“âð¿9õ»O×Vd³%®9@äðÜŽ¬ ¦4sÓ§‚ € ÛÒª£®„1…ªÔ½t©#ÊÜÉQÅ8§ø/‡ÔÖ‘¸†•ØàW;‡ZÐstøêyï@•?vªhõ"Ä O\IwäSÊÐzÂ13jf‘K6eº_qÓ°GqJ7é¦ÔÐÙ4(-*ÃL*†‘Œ÷IzcŽE­À€ +e .¨1(—“4*-=\™zq.>ô¦îžÜ)ÿ°=øH?ø7{ÛSÎœ˜úvŒ1¸ +,DŸç¡1Ù/-¤pÆ —ÒÉ]+¤Õ}ÒÉ(¤ƒÇÚkQÙ,¤ú]~ùæo½w<}C' ½N;Êî{9Ÿ]'ÿü±ÏýCÛeÈUL÷–i–¿¼aN±ÏŸ&l89ºpï)VìÄ'%<ȶ‹XB…¥”@ƒ/Ù4Èà^ØL%‘1×ø”ø[PW^,SLzÑ¥ÖШ4Ä¿:¬¤Ô6<üq<†vƒvýH7šVüê7DÉåèc½ ¸®´ˆX\P<宅z—Två išÐV“}QTÀ$œ 0xÖøŸSiÆ­&aŒO %ŸWœ<—rØ< Ôx<¡=Ñ›ôxY7µ-Œ‡ŽúŽF`Vð"fäíÞd#ä®Õ)4cŠ•õ+TKÔÔJ×æ’-Ó[‡_<í̼ m•X íl*1z³!F8Ž\¦1ƒŒ.QëBrǃ£÷Hr(ÿpÈc[óCwQVFY••1@°³ù"ïzÖ͹ûÒÉx´š-Éu/2ßÝÉV|ÝŽ¼.©Á¸ÆJ8¹q +W™!©žGõWõ$´ Ñ¢9÷7M´nµë¾x@‘¶ŒÉq#&—E£"H& W‰¬¸ŒBzßßzgT<¤½ž˜=a‹ýFB,É~ ÆÁ +Iͪ¾ÄÑÿi­í¡9RsZeÛä•©L™¯1[¦(_%¿m⪙9LôrËõÍr} E}Û²ææ”Ä ¤çg¥î—ÛadJ3G|Ì×>6µ% ç˜Qz{`³÷§8ôú/ÍøÜi‚Û ÑK=ï gk¯1¨ÉþºMHÉ'‚OˆLWÕ±þ.ò†¹ °"+Ñ ÜÊ ,…<vNs÷Rhþ!Q§&«ž’ ¿mNgk7Æ­ℯN&wį¶ð¢0&£ˆ~u\-žÅÝ¥s¹•­(Fp*GP¹ÚÂNBÆ5© ˆ”åˆÏOhSVeMâcøë‘l! ¬Åœñª¯ªáÉ3ŒpÐœ‹-ûŸJ´×Á +endstream +endobj +103 0 obj +<< +/Filter /FlateDecode +/Length 5805 +>> +stream +H‰´Wio¹ý®_Áj@Ój²Iv÷Æ0°>²pàÝ ñ,òaºm¯®Œ${•_Ÿ:xûfŒ¬™ž&Y¬zõÞ«Ã7÷ŸÎNîÕ‹‡U‡ïoîÕË—¯Þ¼V{¯Ö{jjÓ:øßÚVm.öúШ‹»½Ãµþw£´ZŸï5uÓôj}¢VáÓWåëÖÀ¿®vÊm=ØF+ãjç<¬¹ÚÛ7®ZÞ{»Þ{û3œô86hp-lßÞþùªQonöþ¶wøáöè#|t}¡öÏ®W?½ª~ýîÒ®÷"ÜÃ×&E•6(’A ¢‚×;Ó×Ã0xŒãEÓ4íKÉÓgu⬸mïê¦ìxÛÞn¿m_f\á~ÇTkNõ:Ü ÜÆLÃMàrÚÔœiú ›®î´wE0¿í¿­Vz¨­Ú¿ªŒ¯½Ú¿­ |»¬ŒQû7•ÖøÛcµ2µVûŸà¯«[µ]Ñš UÁq>¿¾ÒøíäÞó¸à2¾pRé‚€W:\/´áÔ î ð$Óà÷°¥©‡üà¬òøÚ]ܘŽÂe¼ß©:ªŒÆ•îÅúð5Ï7ÕÊâû´­á÷ÚüO_節ÿ²e¡‰µõZ¡¦5V¢vÖ ø¹má:¶7E9ö¨¶ÆЈó°æÎ¥S>ÀÔý0:à·}õ7P± ±2ð½£DB±©f'U_S9ükÕ¤ZY®¥øš°ÃÅñXÖ{zÕãØ«Ç<®îq§pûž ¬]¨S‡§<Þð•ûøTªåJÁ•*”æ¹3¶¯Ö e[Õ6eòr³h.%ï6 õ2å¬mñâz +šDSÚ4u“­c#y¾ 6#ÞbÀDZ Ýæ^mÒ’s{¯‰ƒ¸VñÎXj›;(YG¥€½HZ\‚ýç±c9Ïóìqÿ3%ÖR‹ÝU £ŽíoB“:n¾ÿÃú+{I!é²`OzTp'‡w9WoðGˆëMÕҙǢCêòVœ*sfˆD ò7<ÁWâ¥](K_,å.1¹Èc2‡éÚŽ+µ=zLAÊrìÐׇ7$röWÛ÷u;êkÛ/A³d ƒ‹Ð´xcÙ4œ4‘ôÍYe0µÜÈ÷åï Ê {\B(}ŒÚ£¢õ¸Ä7•å\Nº{Š²Q[ÄF +ྠ+qg`Çȃí8Bp +Ò¶Y–vXa?!óŸqåŽ;‡¬(Gx…ï¸"dÞž\R“xjz¿Vk¼j¾(§Nqø÷<(èM¸(ô-ÉK©U’±d~Hö2Ö^ЇŸyS–ÏNŠ^èÔæLb1öA¸²šˆ³Ê²ì p‡kDZËù>fF¸áVä"a@0ôY¿PëKãÍO1¿ØÁEKÆ«oŸ¡„ÕKðøÛer™öï ÛÊ$ÉE&ŸÄp+›$¸d‡ߢé4ħ•¡ÂQ~œpR3ÊN©E½ƒí<þ„Æ’@ë ·ûÊ –ËÕeêûEƒuS™7ùJ—q­™ †C¤ >æ+sh·€ŠA€D’kʵŽ`Jh…ˆä4ú/úxÔN"[Ã7M9FùEÜhaƒ7Ù1 VéåˆSŽþ›ˆvCý¦… „›ë*­Í¼ð/P•fUnÀ9GbBï.ùH¬S'å•^Ly\©hÛÔ„ +ºÙŠÉ06¿q~ lKäs\|J¼ ´âëê.ðÑ> Ðq½Îw‹"C<½4œê&2$5-Kž—š1Q˜‘Ôx’šíïiFüi—îê¡K×ñ] îþn†8x‚]½ŠJVɾ c&²¦J䟌/P’AJâI Í<š¢ë±¨-u]aÍs,gJ–óc–³Èr»;Å`—³±bó6¯Ò?ês0R”%-³tÂl9cú8 ™”RGŸôuQŒíáÑ.·úºñƒ) Óíúó–{ÛÑ`Ðö彃gƒUÎÁƒ m&ŠÕý5¦eÊĨd˜#£DŽƒj.~¿ qXüªíðï*é|áx˜· Æîì‚|wåì45a·X!#Š&©5¡Ûeiˆ1ÅeÏ P¶oG ÕZ 7ÛIQ?‘ÍâTÂi›}ÀÞÔs#{ë©°\§îMJm±Â²ŽL¶Ù°®ä³¾[ÀômŸ0•U×ÍÍ9L *;éh¨+fQÖÔƒé`ÛsÅ%(LsõK+z|’èËä +„Ò–krceÖ¢p²O²òÊRšò8˜),vK ¹D9 Ã;LãF¬VŒXt<øŽo2­­b¹¿)_‘x½,ïù;æ´ÃìN…éWL|úe<ùžìž€m|ÂÓ·Ú§)3dö˜¯QÄIî-6—}Š ^NsGߨ§ *¤…TI§ +9reK³Æ`¤ ‰û# œD÷@0[És ƒ¡v‰—"×^8F3âú/JSj4á Ü‚ŠŽxLæ +“È<§rPu#åÓ  óe¨¦€þ‚a·#Ùheå´‰&‚ðÅÖz;µ ÔïY5’Ó×qHãy‹¥i1]݇qF¨Y ùäƒ8F‚‚âÈ¥²wËd´¢ˆPÑ5=Ic(T&Q TZ™ q傶¸¯òA¨ý?Äjñ‡ÓÅl2Š"M÷¡Ï˜Q2£±x_,¦xÌ›…:ùñä×Jw½û‚Ø´]J;´Â÷w£Â9MÕ0{œgZÒé<`Eݶá1y:*U' +2à·+:¼Å†°%âöG+ÙòöD7tj:ñUÁ)­pH²Î0ˆRÐåQ†/Wä4ftTfBÞ ¿u‰<׋… ÈLŒ¢=#§2ï%þ !œ––Ò䤎‹ÌyÉ\!ÁêÛpØb´èÛa´7^¨vçÀÝ b²ucãæ/Ï®¾ðßà 3Þ„ÿ™¸œ©GK† V%Šg ?¯ð0<>¡7S계ª6¹5Æ„ì‚© 5íó€ç–¸Fvêmxs“.hÕÓ"$*®–ÏMÏ”Ÿ½iô E>b¾ÈÝ©g”\”¼Ÿ%æ”Ü=½5tA¼šSh½CF&µl^!íZK!þÓSõ µ5©p]iÊI+$·ÓÀ ›â47:-̓ø³²åFâ°œÔ&Õ½e¦ŒòšŒª!^Jq=N  ÃNÎBmiüƒåÉuöÂ&ø ê·óÔ“õù§»Íôsà +t¹= Ì6\(д ¶b¦\¢IÑ`IÐÎ Š0ˆ1º4ÃðèØ™k-`ëY‘åüÚœ_†v+ ðÃeý&.D2Ö6qd ðˆ"öV’¥â¨ëpÔÝ¡v¶$ƒhððöNÙÖ 3ÿB"~¾VrXhX|rTŒtœDŠS~Áƒ\÷Mƒœè®%}õ¢ƒÉ¥wOÃ<”f:.üŠ|Ÿ~©,%þ@ ±åâÿôjé9Â÷ü +E@3;ý`“¼&AØEOn’lù±;¶£‰"(¿>õêîêfSâxO–gÈžªê¯¾G:.öù”­ý‰¿õŽ7ŸxÖň'L%;ŠÅÏz(†7Ã[ÐPëvô [6_Aç’Í•L¹™‚ Ù¥ ªÆ¿Í2–Ì•‡´¤Þéúï”_åuÚyÏÎUâB—rfV©„&ÙÜmÒ±Žé%QÝgëþÀÍ~Cõƒ¯žˆnE <ÌA$$¦ž@fåZÉ)nýÌ 0僖 Ò³=Os¸Ç ÊûôÍn/íXfG·æ“²×É»EÅΊ.MƒŠ=¾Ê$,˜ÃK|ï!Ùð$Gn‹ú O@ ù‡ÏLc{d¤–<‘`S¤·XFºLö³žÓÒJ\Ì{øŸI;<’¾tèÌmÖUbÀwWý@(VV™ðÃHÅxÏ«¸BZ_¼•2]o Ý{±r¦ Ïä”” ~Áƒ~L†.@àTRPÝñ®ÛÉ_-,:H’Ù‹¿ùÊU–F‘9Ï5z+EÓŒ{8!ß;Ï=Ø7!Ç0ÀÆÚQ¾™¡ž+È‚|,üx¸Áàÿßõý@t¶¿ õYµþÓÑü +£;Þÿ ›?XƒüSÀÚi6Ïa€a{šÃ$kO‘*‚°ö&ùyøú£0÷ço_o¸cXJbìg~æˆ}!+óRìèýïˆxïÛ.¡Ïá’nî<îø( â•Cîi_9d–ÁÁ¼¨Õ#ëZ²°§#ÖLz'¼ó +>Uê!Ô<ÒŽØFº•É‘/RÕĶ.9$(¢7© 6ƒRÕ5ÚXš©l§mö ó›v[”sHQOh¹~e­2ºb£˜,8ÇãQŒ)ºõ^Ê{MçP;’a¨cè«^”zú”‚‚( ßÙvDšRí¼‚@èÁ9¸B Ž‹8ó´fmK“Á¢?â Ll0ðó[fÞ¤b„Z²J§âà·=ÿ:‰ˆÕCói×iÙÏ” Ðü¬¯™”Ø°¸S۶؆øÅÀ‰‰è3JòXÚök½û½K¾B¥¹ì“4@PB—94z‹§U^#µˆŸëÀ¨ZnÄš dK$…5$AŒ4‰Ëp´C¨. Ÿt’‰æ&¤ÿÅůlK—yki (üí»Ÿ{Ù ú"™(ïTŠ‹œŠ÷DÛ›­SUOÚ¶íÞN‘HfyŒ“³ˆ{ÄÍŽ Qž¡„'òQ—wÙRÜùoïxø'É K*UØŽWYnÓƉí~N8yÂbBªöFjLBQ‘ãrŽÅ-¶Ú]’Ï”¿˜•àÙ"þs¦K'òúwO>€‰`HÛœ—·ˆ‰ÑQÓ½Ü3k§WQEaÀfŒ *¼—š²1 +v/R5QÞ¿Ä9ýÒeÄ—‘ü?G¼’¡µÇ×Þ_‚¯Ð@h #ØË$@?`yòH)q|ìC•…$ñ¢}„Oþ'¸Ø&ÈAœ 3ùàŒ›YÁ4–°36‡³ÐÔº¿Êg¾2k”<+db@x™ÇYŒ.XñiÅWUPU®O|Õq×k"¡³èð gÈ‚ñ‹ÍTu¿æ¶ÃjÐ$S"ÊÏÓþ 7hHU¿l<;”‰Í­ ^™ö†ÕdÞâIkl¹²òˆúÒž$Û}*Æ +†¥ÀǤ¿9¡‚¼%çð£çîöØ(ÏYˆíIe[—¬5ðÇ\éGP“ÉÈ재|UD4¹ôsÏ#Úw¼³s’uá§B9OŸÒ¦{Ì Öo‰/‹²¶|°– +iäŽV†¬ e¯S¸"ØŸn{ÜIEDóÞ{ó›¢ÈÈ!¯XÝcñŽ×8³üšKV¸šðü“Øž$7]vAꀚç$³ñYëHöÍpTc‡Ü¢E4Ú".¥žýõP•E ïP‹7K4t¢|wöw®èŒA'p¡_žJhLn.(¿|ƶc³9[d ¨Ö៻wWýàð‰"Ð (º7HÑ3JMm‘w†äm7ôŽ8`_ÁÏùž;tÉfüËз¥ é¨ )"êÏrÛ­ÀdÕžý£÷õo,Ùß‘i|5¯¹ Ÿ{ëù¤–·­†^¦>ÀkïúÞÑìÕI±C¹/CÍÊ,{:–Àµ4¨gàyò×lÀf4` g.]´÷+èÁvzn„‰ki/g¶„‰ï$¢&!ÞEŽ Ç7p°Ý2WÖ e!'aëK­ÍÔè˜'_ý$@àfþÿ”&Žú“=,A”ZÊù­káN QOj2 BuÙqɨ7]¢ìh®‘‰pWYÁÝ+ÛgqâI ËåÖ'´(îPÒLXóׇÍE­ÃÄû²cš‰!'®y,·¦Ø¦Io +쵄ÙÂëÐXøö<¾òˆ—a$ò Mct‘Æ;¤™>ÄXS±”QyÔ¥á_ ®{É»ÕMçf byÙj O\‹]^xù|ÁÕò¹*'þ`Õøuvg â{!ç ”¶ƒÏ”,åVÀgf§¬ò ÚVÚKK¿ø^ ãCžÑŽäö,h`¤ð …‡Si$¤Kè0–}‰!Øg< Z’´¯]ðz¦Kz´r· c:°›Íðj­¹"z“Ž ñÀZ +˜ÈŸ—þŠ‡ñ”)Á±$1Š¾Àg^j”ÏlÉgPÒñ®ÛÉ_Mp³òÖç\- êáH²­§ÏGv†’®ŒgÜÌì,±Òþ‚‚*ø§£ùÕt°÷˜Jï:Ž¦ÀmsÑàú†ið\ô„€ŸÈ}uWsï¤ûîÍ×X³M²8áÔ|…3Î8Ä'¼øYGw¸½~_Ô”ò_œ8f°0.þo=ë~Ò âÖSB)Ø DÕî26%i.©RlB4”Ä,nEä VM„kØY$ˆÆƒùÀb<¾ô^7‚K3«V t´ª'[OòÀº÷ŸLYÒ®ø «­¤2W³jO…]ålDpŽ*¾Üólƒ¨™d‘™O<“½xäÕ¦ŒˆâoÇÙ p†è +ã +ºÀ7 ]ßQ/C™ å~vvŒîä°*³¡»¡±œèÆèìQÂæ«iÁmag˜ÚŒsI´K¿IÏž»®ãÆ ÎM'¶otÃüÖ21Q½jß¾n$4µ/ѵÁ‹ó}ã׸8ŸÕ‚2ûCOü^ÌÀB;³ã»s¡“ÃJŠšá䄸Rø\>½ÿyv –£¸7aÜ;÷´úÏâ2ªpq—ÐÒß¡Ö_WèoVXÇaK²È˜ß¡,ÁWŽ²Ö3š±F®êG Fø`ȈÅ7ǧoÐYcrˮՌ´vÃ^ܼ­ï6”PFb ³gô/r`B;Hâ¨O’Ä·õÀØ35®ït£Üšð§½S„fB¥‚Ùj·$NÒßÔx~í +â•šq¥6d…ƒ¬çvóéˆÁdó⎱]ô2ñ;:%Xu„¼¹,îùŽo„î(”xÚ<æøèJ ëØ{PýŽðV¬̆0|‹e@ã_L°K?ꋘR˜ g"[ñw\'ååÈÛæŶÌËväMš×JÐùym­FÝÕ®?~IGÿ_€[0­4 +endstream +endobj +104 0 obj +<< +/Filter /FlateDecode +/Length 5863 +>> +stream +H‰´WÛnÇ}çWô#Ч{¦ç"ÑÈŽcm‡80xYR²¸»4—”¿O]úR=rWR @Üíé®®:uΩ“¿Þݸ:»¸Wß}wòwuòöìqûp¯¾ÿþåé+uôryTª²°•ƒÿëºRw×G'¯ß•êzwt²4¿—ʨåÕQY”e«–já?}VMÑÂ;ð¯-œ2¦*ªÎuʺ¹ÞYÛF/ÿ8úayôÃOpÒŸplPâ»°=~{{òãºT§Û£¼»=Û`„oÏ6×êxµY¼~©O~zõæT™¦êópFõã4ç2„I'eÝá)ÆðR“ÂkmWô}ß`|ÿ>^kcŠNÓ ‡7Úš¢SÇ÷zÑFïÔ™^˜î?øÿRÝÂߢVÇwº.¬:Þê^ã2|û5êߪðçµ^ز¨èìï}€'?À†%®½¦3 îr·Ru…W~£Gu¯{\½U)ÆD±ìàhXòßkü~‡‡pxÀ=kßãŸm0ª{uŠŸ`ñ©®J á×=.èÂMvÁ<•;•QçºÂ<û>dô½’Iádìô¢æ¿üýƒæµ[¦Âô–‹ˆz3u)0ƒ¨­Ý& mÄĨâš"o•ŒÒ˜¬>/¯¸IëoÒNÜäv°b¿€¼šë_cvÿË9 <°¥ô÷ÚRo°°Ûjàþ˜…ÅÓé’mÀÞ]_ßîùm‡o·“Ø÷Ø +‹à›ò¸Æ¼%Ó¼°-ïÞàæ+Mëï´k0¤b¢N¢‘«p¡bÖÃ'ÄäU ¡t@™‘ÌT”P…•ÐŒ}ïd;M—{Ae¬èämKÌX¬ó@%y«vxw+®ÛŸøIW´r¥®peM‡Píïæk+‘‘jKH{®ºðƒÅ÷o5AU²ˆÁ³+|‹ +ÕQ¡¸‚ï%K<Û–:BöÃgÍìó>/äŠASý_xMvß@±9Pàû4Pšlô@•7Ty‡qgýÔJºÇsÛqÆ{ÌÞúâÏDa sáwûL—Í[Ék‰_!Ûò¬ëÞc‹¹óuS¸?„jGA,*ü +íú‰K-Ýí…?zŠª§R"rWùž1}v÷¡db›Užp[Ì ̘ӄ¾òïþܹ“µñ§¨ÌÎ'86´›à*ì™æ@zª2ã4ƒ¸Ö&"îÊ·ÂÖÿn®—Üd/åd±g7Q.Ï€rà¥sìpª˜ñë:¡<ê·cíªØ¼¤a¢{ƒ`êLjDô@”ïTE +TxÁh×áÞ¥Š˜‡ áy¥sÓX¦Îü%ÀÖC>S:_Ê·OzÌ ²(œô›Ö5iQq@­kQk´î†=1ìÜqÍ­¨¹[é*Ã5ïP”;<­%Ü]£©?.5§®PÿÂÚW\¼õÑ aAõ¼9ã–Ø°}…ôÑRJëåWpƒ+ا®š +>„+)ÃHR¡ºä J”Ø&{î}Å;MŠÔã·+ö¦+.÷}¨Ï#€’a£ ¯— »Aø¨Ÿ ° +qÑpßv~TñÇCºµÉ®‡šÂTõLﺾÓÑÕœ„×Ⱥv`¤ý{vÈÚ\{ +æch?“÷ §dV/m-˜ÁûxØ#Mk†íÙr嶮×ó¿ÊHÀ°±0ÁIIS”ÔŽ¦ª4+_eȧ|̾à +·¥á œw?k‹¥fí—6ó®>ƒ’®*ºˆ’«¡a74bÆ"áÅœ¸Êt– 35{ò,nO\û)Ù :#â!Hœµc‘H©¥´ÒÀ\ÉzÚä2<__¬[Ç‘yزþÜrAâL0ô½s“Dh§`Ù¿"kÓd#cƒ¤PFފƆw™]Ÿ ï®öGX7窱qM†.0~Ë?öÜ»ÏqYÍ¡·é‹&¢7z(k2‡j¿¡ê|¥.=MŠÊÓ‚ô›oÐ-çpoj²‘#‡´ò´êØRÏ$BxÂà¹ùD0†æPM—úåy¯¿õsÙ•Zè)áF묃ǻr<ÁÛiæàB-™pBnâï¾?`Øàd:NL6þ¨¤yåEùÎHH9«2í¼}üï[Ãij£,ÍþP1ûP—ÀÉÔå¬Øú{žºjS؈C°cNŽµP€*3ižq„³ ›²¯•)žÜPCQAÇûª9„M³&ÛFGÖ@·½ŠñgNƒTŸþàÆÿQÉ®V4‘Ĥ©5Ž&;–zž_ôÁÁÖÜAð ÄÉg[J7iã.:ŸUNe}?‡!è‰dñ#Ù¯Ï1|#šIôùM,û‚¨ïU¨ËìIÔQ€ÖTÛ +?p¯_q2Ä°j›À;AÆ„ïx´ò”õ hpdî$”7R‹£µó+'K\”cÝiñ-(oP)K°iô¯nÞ,ø(D®rQ€“z yÍN K“É?ÇÞ²˜ÑÄùkŠ¦v—¨A?ê|jíqYtM°9)%`E/¤ÎøÀ¼ Ùc¾ó§…r`â†VÀŽ­ÎÄ`AàNMšÎÜ ‡Ùý]úmœHgCœRæ/ù‘uäfÎØHÀÄ èdÎÕ}'ÜôWtj¬œO­)ÅEb/–C(ñ¹Iož2é™c36°bFX±)íüÖïÖ[ú.·ôIUy2a&ĬºMF„Ôt”mÊKJ¨kýLÁ¬ôBÞ:b8¦Ûç,5–L]Ïa©«…Íâsë9[è[°Ä/:R-á‰RxÍ3C*ÜBåS©^á§z¨¹]Hàˆý¬Ã€Õ~¶Ì7âLMµúŒ~®‘ÝÌ[}Dñh±.ûM PÀ¼ ãåÃ32!ùÜÃ+•˜'ÆKdTÆÐ l·Fœ£ÆÛ?aõ†Ó©¦\¿8NmNMõ,5µ¥pË©·y +ˆõ« <@Ç:Î=Nè;5v¤ƒ8«ž±1_W¨ÌEl»ÔÛ’óB˜™´£Ã¡‰tìñï†TçcÂpµÒÄp…e@5B€ä¹›”ço7>0Ñ=ÁçMBø¤bŠus“/ üGxÐòp{»ù‰0aÐ5ÂmCOÞk²@à¤+šÝp1”ÝÞ#^#x:̤¾8 ž^Äs²4¿[eÔòŠÊ\Þ…ò P¬"…jE¨ÐÆÔŽCíô‚2Rè¦Å¨ b*¹àùyxnñ"=€Ç@¾œÑ¨p zl€’©Þ„:ºåæZÓ0õ~)‰šŠèjaX¥*GËœÔ1]ã¾+F*w Š†ö‚·ºLïyØã›×šÚ†tÒ/\{ +Øú¸´Fžó扑(H‘¦hÛHSï£ 3áεa‘jâ†ä1÷ŠÓ«I…‹“O]ýùjbãÁ¥!ý‘ ‡cÒYWÞ™Œ\à`2LÈfnî«K¸j߆¼ÇŒÍÙ7zPîŠá›ã§“w^nðÕE¥Ã[ðDÏ[ +o_½“î', ßaÈ4{È”J+“E÷˜å‰ö:`=ÐÔ4^îøú:2ÃMÖÐ[èûá@3oñÒöQA£;á)kå‘ï|ƒµâž²)P|ú þ€ÊAef@Uu=ÌTsHðþãnEù¶yŸ…"‡ ãâÖƒ6»%eÅŒyÿ‹‡´|V±ÝôN'˜§Æ{¨Ñ°:ÍŠNÉ%ë=Ú¶Î),b 2rèÆ%“XzZø“˺Òö!š'ïls_¹°mð[¡ÚC™ Å°ÈŽÑ«RT†Æ˜¯î¶¸1çç DVùl0ËrU Œ"y­Ck9fúüzS› Bí(Þ±Ððó›x½ aðˆÇ=™‡¤F sqºr~ˆlsZ;U†Š­r®Î~õYˆ^ ¹õö@(<“Q gºçsðŒó×Ú+ÃVws„Û-R§Í8 +C»À{ŠÈ)?}ÊϨ\>Rj:Ư‹L½>^õ¼åwXNãš ZÇ ½üëÕÒ7n„ÿ +bÕ΄¼;’ríê誔å•ÖÞèáHQdå×ýÐM€£aìÓŒFtý=þ<óÝNC7lr©pÉ\z•3׫öÔ}¼4‹²"û¬{7hÌHÊB^ÄØÁ_OÄZµ‡âSº wÿž¨Sñ ¶Ë#ß|ì{‡ýý¥¶p¢£ÐÏ°%}ü0hWY“¨Î”ÖÁ 2 +f\Wg®G½¸”MéVMvŽ9`––÷‡¼Wȧi 9“Éà3ÍŸ¨Z%Њ |Ÿ×c{£‰3žlÌÁàØÝ ÷Žs‡™p)Ú9XtÅ€”UoˆA• êB5 V÷6»2l[ö¤ÎÛì}àÄ^[Ñýô˜ _Ö[½2 ŠÔð“.‡8ózé§ÞwÕÛÊ8>îÁÓ¬ñ`OÖˆ¨ M2 ÝÿŸ½å(I!ªËìÂeà«»¸ö̬ʖ&¹ÂÂ#p€M ¥bW•zYqÜ9Rü@•}3‘à—gø¢ÜV}!í©”ë÷ºy¾¸þ«ë.¿{”’š%`4ÄÂÉÃq'J85,ò_cáeIâáF•5V@Ký¼…šÆÏ×=˜ +Sf“£båKR(zåºFlh%@t³§Ž0®?/$ö”àP.<)1‰l‘§Ì6ŽgÝg#ã®jR;Þ:H€kõýZß“ <,œ«74Lö\ ˆ”³ÊB’½¤À¹”5ºç””`zkÉJZœÚcÔu(Ó ÂÊ«ñàž¢;šƒ–f«–ð»xË Ëf£ÏšÃ¬@wÑmÙæAÚl ï`EÚÈÏAð0’“Í O€]õ›,Y¶SÔ!d9×ן2­¶4IÄm-ÑváÕ¼GÉÅùä¢ÆlŽ8¡ýŠ8±0&ø§ú`Ý;&èw½Øùµç€£È™&jÀly³l—ýèg¬Ã„„àJàqÂæ¨Èä|°E6†=`3+°-`3aù@NºMŽÍ ÙFcw‡î Ó\òÆq™]—iŸâöZ5xÈÀö:‘¼îÞh©j-.ïÿ­³½AâŽ|KÆÞ!¾†.«ò{<þxRåWɲ=J@H-y|k°Ãd:@ƒëäÓðç/ú>–î{Ó¬¾®1°©QZã|òìÈ“È؃<™z[€›ˆzG†™¹!l´¢ÄƒõÉ«@}ɵžIžp"sö`nòÅb‚†UÕ(î‘ݨ¥Mø;,­ì»c¡NÙwÈäQ{úŸPëòVv‹f‚ÛémXϲ»7\¢1*´MEÞ ©ïùr¢Íq³f냷ñ£°ýÛC˜Li¼V +Šod^¶HßÉ Õ/›U¿«ú²öÝ$ÂØÙ&Ñ7”.'Fƒ3+8Πâ<·Q"³ƒPÞä½6¥¨2«ýL³‘è9¾ÍàeŸñ‘Q06Ä12+çdhB–ठ+¼L³…wÀÇ+}"œ6ôiš…ÿYY 2|ÒÀÓ‰º–2e‹C¬È½x˜Æî±dŸ"÷3O&Uv +Òd~¾ Ð0Ose3B{AýªÒc]áyäðƒq>åᧀ¬Á)ôÎìÑ»µèÆÖ±R$8·od€ëî_±¯ý\u7qð(š5Š–MY#,u (=EGÒàMnÓ0V™¢êã1«Å¿³¤ë¨—tsÓ, mDûµ‡vÓUº%PHÖI…×È/my”~ª·³L²œñ201Ò¥ ½˜<½z]Óä;aòIÃ$Ç_ÀcîMÈÕûž@øu| •Wй8œoƒ Mk¶  PÌ'˜@oéôµUÌ:Ü`ÀÚ„iälÕ¤¸ÅÚ>Ÿ†Cÿ4L5¢Þ„éKOž°¢d q¼Cb¡DL)ÞdŽëG”‚c÷7PjûÓÜ—n¥x«¼ÁÙx Ã9xxÚ× Âèqœæ-¼øwÆëóÛÌ—ÍB|ƒŠH­ˆÖh€òD;±O…ñÄǾžu¨Á¥+‘k‡:†®;!qbZ`Ù·žóCïè<Üå°f[O;Zøý7°Œ3/ÉÊÇ_?öý„´x܇Iàá/—ã?LÉçYjðÝå玿D  ñ +# ;:.–¡úÖêØû +0öva 1‰í‹%‹_,ÉCü;þk'ÒÃŒNá ·4Ʊ Zñɯ½# :¢ +ìÃ4“¦Ï’#„BìúâážÖ"½ºÿþüÜÓ=ÜQ£îzGŒƒˆ oŸ áŠV¡" ê äKaz>Ê>ÿ/ í‰cíh—Síº¨[4 +…%ujõTG»Ù-Ôª±XTs›+Œš^º9ÓÄË1rˆK„4¹\[TŽ—µ‹{,Ôé+9öÅÍ€ž=#ã‘-ÿÀ"‡Ÿ›3®õ‰*Ð.ÇY ›A+%„Øüž$E:j@‡Hué +¥ÊQªúÆ™1Âÿ•è—ƒ!*wÝi=–Q¯>°Î.ð¯›Þ3“xRÕ$üÿœœÅùõÚ3{4dÒi¤¨~HÕŸÚÕÔntæi&¦I&¦(^~m¦²!вuÀM(ÑÈe ä“c löXjÈ. KW’˜%Ρ :èø˜x"ò<:.ÁOcQÏwühv! ûÌgT–€ç­_3­ºš‚†!l!hˆ´”tUqRÅ ©©>jXOå>v—ô@ò%h%3+Ò6 Eßz’;“áˆg}êþ€÷.’s¼H ›PŠq¬c™A–±4sÛâi'žwÁÀG^Õè»ÒdÕ`¸_3Ó¦d¤ç’ëÚƒ£ q´lÀh‰ÜQôд/È3ŽJ*òAŽžž6±Qî N#’¦p–¸X%@È;˜•ãã@ÑiÍÿ)XÊû%àÒ‘Öyâ“0¦¾c› }¨¤ÀñÀسZÅŠÄÑE€Ù7ï£É.¡Æ¨œ–i¹DX]‚C-·hÅÌðDŒ+¼¹Áÿƒ¬E#ËØ h…8RBâ¸B_ªS…ˆJò--b¨ +©]Î¥wIÛ¾Ò`æù4g›ìµ×rvû¢F¡)¡,†ŸÒÁøåqCâØ4=!É4¦FÈjP °C"­+p@w­/¦€ÀËØGpÓ—$Ò)™&¤vyX&tÂlå,NŦñl-ƒ„†ƒ8:/á·¼ü3¿ú Ù)„ +endstream +endobj +105 0 obj +<< +/Filter /FlateDecode +/Length 4295 +>> +stream +H‰´WÛnG}çWô#0GÓ3==3 ÀlÙI6ⵉõÃfP4%+‘%†”,ûïS·¾ÍE&“]ɹtWW:çÔÉéîîêbµ¾SOŸžü¬N^¯¾ÝÞß©gÏžŸ½P³çËY¡Š¼¬jøoL¥v—³“Þêr?;Yê_ ¥Õòb¶(ò¢(Õr­ä˃²yïÀ_“×Êt®wV•u^×Þù<›—M¶ümör9{ùvú6Â÷ñ]X½>yõ¹Pg·³ÍNÞoW7áëÕÍ¥šon?<ÏNÞ¼øéLiÛé4\…QýŽqjŽs)a. +wÑšÕª­ó¢êŒjÊ6ï:ÂûÏü<Ó•š¯²Òæðy—-ºœ~/t Gšßd¥Î;¹Qªù^eEn“4üÿ(—ðqy_çZÍw¼¼È*|/xñ³øiñc“-,^^ã§Å½ >—KÜ’Önðv‹OÝfþú w Üêsç1j~(Ô¼£æWáH%Åv•AH-­[ã +ûL¼ž«·ŸÅ îwŽ ÂF×nM¯\v-G¼‚õJÜöÑ–­1.ølðÄôÄgp•ÕH-?oðúÚã‹eôÄ/ØøUÉGƒ ^RæõÈy$À=d~~‚ÂâOˆ«¤ìði¯3LŽ«×ù¿`¥$aþ€‡¤:«ì¿Ëz ?Õ2†j^´f‰Rã‘x‰„nÕ¸ óš*¯áÇ«Dç‘,|–ü»trÛq41€mœµMF·#àrò¯q¨ö7Õc›Æ#쇧ôk‰¶Â§š\µJºž«7™npå€G·DJBæ üûu®Ó:×#u4•¸Ì;r ‰Åµw ù[€–¯. ß„阘44#“ZàÚ#]:#ªÁáXª",-£µ€Üu5ƒiЕŠ^sp&å Ú—— yóÖä”YMýÖIËX-¤¨«CM¹úO²Wº3äÑÒ[a¹p2Dãëà‡¡u©ú˜F齞4‘ØGi÷5–*eÏR%>àïBâ^'™ä~ì5Þàl)ãÑýZ€\ÇçSឣÝô +_iñÁ1Šp ü0“èj‚-Óµytƒ ä,RôÇ×®S"dÓ0Ä®m!ûžƒð°}É*1ÔŽrCØ}2ÌÆa°‰¨´‘~5ø4˜;;ˆ˜_¿¢Zm§&’ôévê…X‚éu¬ÓÆ€slˆ¸Ïd53™N™¬–Jå2Ðëù_Âó(½ÅÅ`¿ u´9…öÆ09…MBË)6e®= ×qʼ?©GÌ/ó¬®DkLÐFœÜFý„”9ÃE ~V˜wäá…÷Ê D!¹9@W³ x¾P~õÈé1w†t†ûhŠòåÊF¨ó}ÆX:ƨ…_ˆÜ#xìwÀ ÞEÎs€Ý© #&}//“«âfÁ ¼i i!¾¿;F’ÛžL-#~VÝD#tzIü1Wg”k‹è *½û%CØTˆŠÃ£ê¢¨pjÓñ8Dq!¯Pdeˆ¬‚/]-‘µ°?¦'ÏòT:«kB£ðhžA&MFn'WËÌÒ·]FÃ.<\*R®Š›…Jt ̸2~ +Fݯ:#àwjàEÛd̉ µ_Ô9©ñp~â:(ˆÁ–"V0ÿ–H%ÕkëÆ?‹vÎʲ¼Å½Ìûl“ÉÁ›5'¢Ñ¼ÁD$"ñè‚-¥?Þó)¬}ÏŒ=q`K¢hpÕ{ñMÿ$»Gë½n”7oÃdrÜâÇ„“˜ý\éÔÙfM RMƒñJŠ˜Upž…ó˜C[Meƒzkoû2Åe²[é¬Û_›¿$Ã,ûZïDø-3>±cÍ\ñ½™Uι °Ãê‹Ø¹µt/NC¼Ž îKä†[vƒ|Ds‰tæDïY-ÉDìÀŽ@]™¢ôauu§ó£.ö)LOÁ2Täq¾©w19¾Óï˜roÕùf0ï‰ÿ ÅõÝ\V˜Š{ˆ*î¿’Þds/F˜ž<—4zÀIJ¿zlÎís+µžÇ·H®©É •gœÓÑšDà×V;I3$6”FåžTñÀxÇ„QùªÇ7ÕDåJ_ù¨"bÞã~¬{LX&ôçÂx ÖŠ†}¢‰Sþ•>ßzû¬e·ÌÓËšh¶øšN=d¼Ê'çdH«ÃÉ€”kÒ‡Å*‘µÁú9]fD†T” Iϲp‘Æ?êŽ +ƒ“"EOq„…3{¤DÒFã©#EègÈíRks̺F‰ÆÈÖÕ<> „Œ é·¬¢at°Â™i9ªÂd燔æWÂþ^a½v² …f €!Ö²é£*ÃD6a*WKvúÓ‹ü:ŠŸ–l/ñC®Þ¡É“ªÐí` Kûê{Á¥:’®Ú (™-³a(E53©!ñíælÏ‚’—¦`±¤®ØÄ2Z•Ž‰zÔ×ÿ.o¦ tD¼Ç§ÔEäf{öÄ›kRö¬‰³&trÐÁúk#¢älyƒW·3AQb y]ÁI ÏxçÖ²r/xÛAŽAŒÒR”¾¸® úbÌNÀ +Ц*Ú³\Ê£:®ë8V‡1ÿ;Þ2yfü(6nžAÄõhu0pÔÙF:»e_,N©8¬‹9S*ƒ¥=‰° ¤Ð_]u‚=Šz¨ŸžCq˜.+†ÚžÃøä£bé‘zƒÍ.þÎQ,uÃŽü°} 9¹ “¡x[~û¶õ•=žŒšžÒÈ‚|C2R[WfgìšxTa#*¦ãÚ7QeÒ¢HƒbIc=™Æ «ZÍÏn L„‚ˆØÄSñ–³¾"±ÇEƒö@Ü%„\±W{IM4‚9ä¾¼vX÷Í3¼‰'´Ãº”N9êÐiÓ±ã³Ç>4mª`v3E®Y0Ö#¶f•ø ‚I`d1ÀÃf'Þ6dƒN…Ì|1éÔ²±õ’Žd‚l‚~n9uTžm5,aq Z…ñT4­ÝKWRoÛ>LT ?"o:ÊÛÉRÿZ*päf‹R-×J¾@Bqd£”–!¥ Þ…iJNéifE0Ä› +fM†©N‘>ÿéìèÝ;‹äþá9 _®Vp×Ð)©/¯neÍý'+““-‹è`ÆÌŒ#¥ê@Kd1>–!Ê5rž·m{Ÿ®ïîW×ËÍ×»§¯^¾zUE÷ìÙ3E;U%,½ü8›«lù‡ Gk5_ÅÅK’ܵ›ù°²Ò+š’g_À¸«Æɳ5^|›™BÈ’Hs%ä¹Þü¾q+Âb€-Þ3ÜoÖÙYj·Ã“Z¥m¶V½V5ŒC.ƒ/ f(úK¬o‡Þ¬¡²žf燃ez|˜dñ…´­ïPãö/(C0¨ÉàB3ÑKFw`KÝDn1"±1Êß‹ óLë‚|Ö•+™“tæi/ý(CzrS{Ȧ§˜‚‹Nâàé,^ŠÇ/o‹Ô‡ÌR ^àúNêpü˜?#¨±&o#Ô@\ÿ&jx÷·‚*¨ù-eòC®°¤L‚B14nH…»”Ö‰“Ù®4qN§ì +‹ ʈ0yy$“›ã²Z?žÕ à³ú#¥°þOW‡lV’P¿ÍxHûùo§úGÔõ’ýì·ØI-&`½ +?_#ö\|ó'ïå²Û6 DÑ_ÑV âPjÙ؈»ijÄ ºo’E8ðAþ¾œER’ 1º²cDugæÞ3žâ{@E¾ÛMæ¬`7ËãÑnÿ † j‚Æ`wá¹vóÓh=µà“ô¸†Júƒh&<‚¤xwk8ÇOí€M¯p5^amý¼WáÛ”>–)»ýÒ6àœð:_^]q#c}*¦Ây K›ÜÒ»«NÔØl?Gü[áþ³”o' Ò—ÜP÷ñÔÝ)à¶þ¼­qÕ~8[HS¨‚b€ƒ›íÞ‹À}žCéK ðšëEâì9Ëþ`ëøRdŒÛ´Á©„‡×›$­¹\¼'G#¼YmñN&ºÓt½ÍTÄÈM€7äÎ ÂDE»XIiöy´¸IUÃn@oú†i(Ñ©‰ÜÞÙ:*´÷pŠ½8Á_ +—áMgº.M§­'pâ—!ÀÒ•OÓ5Ûì•ŒÙõ ˆÅšô»°lJ§ÑZxë‰Z ÿ@åŸ(g,ã×Ô§ZL1Ó´E´B)ë¡sÎÈ­Ÿ]$×x¥a÷Ä+&ëyw~µ›_}F7Ë®>/7ˆáí“´J³Ü»÷´1.ª¾€V§¢p#¦v"ÑWŽ¤ð¬‚ˆP +§Ž›?~¥PòZj„Íl‘:4ÍgÉ †‹Èn+–ºã[¼bS¹[¸ÖˆeÓÑ’ÕŽO£Ø_5™ÂŒ‚¨‰–:‹ ¼9n0AàHxhÅÉh  Ÿèõʼ;(HWêèJÚ ŽÖ#Š`þ‘þˆãã/eè ”i/3TƒQ€R™s/hÅ‘ïyೊݧÐ0‘Ù´ñÄêÑM@È’%õ¶;Æû:’é£<ú×É0p 80)g€‰0iL`^CëñÒè:È©{|sû¼›j|þ‚1ô' `« D›Mû†,åžRi(¹KM¼bBsÚs|±{¦¯öÍ…êLÑ–´Y]P¥¬`~uPš—>(ÄÙx®7)Q_-\“6Ü2&ÝÚvbà îLæ¼wtxL¼à=õ¹þg*hð#õq…ÍÊ»K²!½Ü@Ÿ•OlâÓΕ«yª K3û`¢¾•?¢,F­Æ½ôŒ¦ßKÁ\5Ðß0Ê4ŽÆåZ`Ø ÚQ™&rû¾v:nq•…ì¦;”½m¾ÂG¼SŒY»[œ3$_ USêå°«¡¹¬À4 Æ7úa‚– +LŠG(œ¼À¬þ»tõ¸t&Ul[QîlðØL…t¬EZcïL§êuàyr3~ÀwêXjÍZ˜PÒUX<È_Ã<¨;]!<(ÙZ jæA%ñÞñ0.ž +‹'æ0ûÄVWz«k£üˆ®hƒÈ€w°TSô÷¬éÅ7ãÅ·+žÏ쟶—k|ÐWTÀ +ùýÓe~k•—ÈÅ€Då +Ö“AJD! › ýf»ÂŠÿ˜ê  ¿€á\k#_8í#ˆê“R;fŠzíY”§Áf  µÿ'Àþ1ÿ„ +endstream +endobj +106 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +107 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +108 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 538 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 107 0 R +/GS1 196 0 R +>> +/Font << +/C2_0 197 0 R +/T1_0 198 0 R +/T1_1 199 0 R +/T1_2 200 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TmkÛ0þî_q%˜•;ɲ$õ…²±®Ðú[)ÃkšnMÀÉVÖ_¿;Ù휮ì…b°Î’îyéž3š< IXÉÛA·,&'ËmQFãyzjëLM "¡ ˜ »)Åäm·[-ÚëL§“3˜|hl¾í`6;8:„â )Q­†ªêÁú„@Ð, +4Hšk(‡èš-òð qµyüãl0D5õÆEo¡¹+.Õ;]:cA­ue¨&P7ºäLPK]ZAu:šªå-á×– isMŒ + +ŽtY1‰Zé’$g+¸¼ÐvœÅßw2ÏëmlFð¦—d…åÍbÞá‡TÎØ|=”9P”|Æ•p× DT åËg†Õf͘ŒØ®ç}p®3N>' šÿt¡¿ƒ:¾}¡“ˆß‰dF&ÆLùü¹©^üV_5ï‹ã¦8>å"ÿÕRq*.ÕF)ô^]·mÚ««ÝÜþ; f0‚/â^÷ +­íiŸ‘9SÙÚ½Žldêóv²‡{¨à”9náò +aOm49´Ž'±tÌR" áBø`EB¦ˆ±šý–Žû{ã¸M´)îŸù5‡ý&Fõ•Fv)¹žºæHb»í50%î46|dïyiƒLˆå¾sÅÑÒI•ø’[É“¸[ɇÇ6ÌKÝc¹™jq.²q˜Æ–ý)ÀSX” +endstream +endobj +109 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 957 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 107 0 R +>> +/Font << +/C2_0 201 0 R +/T1_0 202 0 R +/T1_1 203 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬VmoÔ0 þÞ_áDÓ8/MŠ¦IcLCå 4¶»mÀnSïÆiüzì$×ön @ ImšØŽý<}«úÕÕüôl{{õk¨_žÞßÜ­`ÿÉÓC(žt…%µqô´ÖÀɳBIk°ð +|†wœCQ?{£àbYÔ‡ú£„nNŽÝ™tk~,½¾óQ¶=”Naí¤ŠŽ®‹=¥‚Ýï>G]qôŠRؾ¿¿(ª@N–}jh¼4Ú€“¨4ô³b^ ÙèÐ齋lZº‘ÁâŽF‰ 6ÎHÕn›´AçÇ(NÚ ßHçÌÏ,ê?7þ})êà¤Bd𪼊ö€(µ‹æi…¦‘U4}»–ñ{W‹ÊK„òu'*# ”GâC÷bÀó·9q&¸K!*éóÝqÅwe4 keëtºúèTh <d¥¡¼„ç´‚ò©0Ò¦—ƒò$çõ®‹©¼•ãósA…Ñ÷h9ÊWA{3¸èeåÎD`?>öPö½@Ç3Ú¦×B`-”+XS´¸–íVÂsðK˜Ñ‚¢¿WÆÓEìW9εҊýW0ç> +endobj +111 0 obj +[210 0 R 211 0 R 212 0 R 213 0 R 213 0 R 214 0 R 213 0 R 215 0 R 213 0 R 216 0 R 213 0 R 217 0 R 218 0 R 219 0 R 220 0 R 221 0 R +222 0 R 223 0 R 224 0 R 225 0 R 226 0 R 226 0 R 227 0 R 226 0 R 226 0 R 228 0 R 229 0 R 228 0 R 228 0 R 228 0 R 230 0 R 228 0 R +231 0 R 228 0 R 228 0 R 232 0 R 232 0 R 232 0 R 232 0 R 232 0 R 233 0 R 232 0 R 234 0 R 235 0 R 234 0 R 234 0 R 234 0 R 234 0 R +236 0 R 234 0 R 237 0 R 234 0 R 234 0 R 234 0 R 234 0 R] +endobj +112 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 238 0 R 239 0 R 238 0 R 238 0 R 238 0 R 238 0 R 238 0 R 240 0 R 240 0 R +241 0 R 240 0 R 240 0 R 242 0 R 240 0 R 243 0 R 240 0 R 244 0 R 244 0 R 245 0 R 246 0 R 246 0 R 246 0 R 247 0 R 248 0 R 249 0 R +250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R 255 0 R 255 0 R 255 0 R 255 0 R 255 0 R 257 0 R 255 0 R 258 0 R 259 0 R +258 0 R 260 0 R 258 0 R 258 0 R 258 0 R 261 0 R 258 0 R 262 0 R 258 0 R 258 0 R 258 0 R 258 0 R 263 0 R 264 0 R 263 0 R 265 0 R +266 0 R 267 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R] +endobj +113 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 277 0 R 277 0 R 277 0 R 278 0 R +277 0 R 277 0 R 277 0 R 279 0 R 279 0 R 280 0 R 279 0 R 281 0 R 279 0 R 279 0 R 279 0 R 279 0 R 279 0 R 282 0 R 283 0 R 282 0 R +284 0 R 282 0 R 282 0 R 282 0 R 282 0 R 285 0 R 282 0 R 286 0 R 286 0 R 286 0 R 287 0 R 286 0 R 286 0 R 286 0 R 286 0 R 286 0 R +286 0 R 288 0 R 288 0 R 288 0 R 288 0 R 289 0 R 288 0 R 288 0 R 288 0 R 288 0 R 290 0 R 288 0 R 288 0 R 288 0 R 291 0 R 291 0 R +291 0 R 291 0 R 292 0 R 291 0 R 291 0 R] +endobj +114 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 291 0 R 291 0 R 291 0 R 291 0 R 291 0 R 293 0 R 293 0 R 293 0 R 293 0 R 293 0 R 293 0 R +293 0 R 293 0 R 293 0 R 294 0 R 293 0 R 293 0 R 295 0 R 295 0 R 296 0 R 295 0 R 295 0 R 297 0 R 298 0 R 298 0 R 299 0 R 298 0 R +300 0 R 298 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 313 0 R 314 0 R +315 0 R 316 0 R 317 0 R 318 0 R 319 0 R 320 0 R 321 0 R 322 0 R 323 0 R 324 0 R 325 0 R 326 0 R 327 0 R 328 0 R 329 0 R 330 0 R +331 0 R 332 0 R 332 0 R 333 0 R 332 0 R] +endobj +115 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 334 0 R 334 0 R 334 0 R 335 0 R 334 0 R 336 0 R 337 0 R 338 0 R 337 0 R 339 0 R 340 0 R +341 0 R 340 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 348 0 R 348 0 R 348 0 R 348 0 R 348 0 R 348 0 R +348 0 R 348 0 R 348 0 R 348 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 354 0 R 354 0 R 354 0 R 356 0 R 357 0 R 357 0 R +357 0 R 357 0 R 357 0 R 357 0 R 358 0 R 359 0 R 360 0 R 360 0 R 360 0 R 360 0 R 360 0 R 360 0 R] +endobj +116 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 361 0 R 362 0 R 362 0 R 362 0 R +362 0 R 362 0 R 363 0 R 363 0 R 363 0 R 363 0 R 363 0 R 364 0 R 363 0 R 363 0 R 363 0 R 363 0 R 363 0 R 363 0 R 363 0 R 363 0 R +365 0 R 366 0 R 365 0 R 365 0 R 365 0 R 367 0 R 368 0 R 368 0 R 368 0 R 369 0 R 368 0 R 370 0 R 368 0 R 368 0 R 368 0 R 368 0 R +368 0 R 371 0 R 372 0 R 372 0 R 372 0 R 373 0 R 372 0 R 374 0 R 372 0 R 372 0 R 372 0 R 372 0 R 372 0 R 372 0 R 375 0 R 372 0 R] +endobj +117 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +376 0 R 377 0 R 378 0 R 377 0 R 379 0 R 377 0 R 377 0 R 377 0 R 377 0 R 377 0 R 380 0 R 377 0 R 377 0 R 381 0 R 377 0 R 377 0 R +377 0 R 382 0 R 383 0 R 382 0 R 384 0 R 385 0 R 384 0 R 384 0 R 386 0 R 384 0 R 384 0 R 384 0 R 384 0 R 387 0 R 387 0 R 388 0 R +388 0 R 389 0 R 388 0 R 388 0 R 388 0 R 388 0 R 390 0 R 391 0 R 390 0 R 392 0 R 390 0 R 390 0 R 390 0 R 393 0 R 390 0 R 394 0 R +390 0 R 390 0 R 390 0 R 395 0 R 396 0 R 395 0 R 395 0 R 397 0 R 395 0 R 398 0 R] +endobj +118 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 395 0 R 395 0 R 399 0 R 400 0 R 401 0 R 402 0 R +403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R +419 0 R 420 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 431 0 R 432 0 R 431 0 R +433 0 R 431 0 R 431 0 R 434 0 R 435 0 R 434 0 R 434 0 R 434 0 R 436 0 R 434 0 R 434 0 R 437 0 R 434 0 R 434 0 R 438 0 R 434 0 R +439 0 R 440 0 R 439 0 R 439 0 R 439 0 R 439 0 R 441 0 R 439 0 R 439 0 R 442 0 R 439 0 R 439 0 R 439 0 R 439 0 R 439 0 R 439 0 R +439 0 R 439 0 R] +endobj +119 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 443 0 R 443 0 R 443 0 R 443 0 R 443 0 R 443 0 R 443 0 R 443 0 R 443 0 R 444 0 R 443 0 R 443 0 R 443 0 R 443 0 R +443 0 R 443 0 R 445 0 R 445 0 R 445 0 R 445 0 R 446 0 R 445 0 R 447 0 R 445 0 R 445 0 R 445 0 R 445 0 R 448 0 R 448 0 R 448 0 R +448 0 R 449 0 R 448 0 R 450 0 R 448 0 R 448 0 R 451 0 R 448 0 R 448 0 R 452 0 R 448 0 R 448 0 R 453 0 R 448 0 R 448 0 R 448 0 R +448 0 R 454 0 R 448 0 R 448 0 R] +endobj +120 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 455 0 R 456 0 R 457 0 R 456 0 R 458 0 R 456 0 R 459 0 R 459 0 R 459 0 R 460 0 R 459 0 R 459 0 R +461 0 R 461 0 R 461 0 R 461 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 463 0 R 464 0 R 463 0 R 463 0 R 465 0 R +463 0 R 466 0 R 463 0 R 463 0 R 463 0 R 467 0 R 468 0 R 469 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R +477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 482 0 R 483 0 R 482 0 R 484 0 R 482 0 R 482 0 R 482 0 R 485 0 R 486 0 R 485 0 R +485 0 R 485 0 R 485 0 R] +endobj +121 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 487 0 R 488 0 R 487 0 R 487 0 R 489 0 R 487 0 R 487 0 R 487 0 R 490 0 R 490 0 R 490 0 R 490 0 R 490 0 R +490 0 R 490 0 R 491 0 R 492 0 R 491 0 R 491 0 R 491 0 R 491 0 R 491 0 R 491 0 R 493 0 R 491 0 R 491 0 R 494 0 R 491 0 R 491 0 R +495 0 R 491 0 R 491 0 R 491 0 R 491 0 R 496 0 R 491 0 R 491 0 R 497 0 R 491 0 R 498 0 R 491 0 R 499 0 R 499 0 R 499 0 R 500 0 R +499 0 R 499 0 R 499 0 R 499 0 R 501 0 R 499 0 R 502 0 R 499 0 R 503 0 R 503 0 R 503 0 R 504 0 R 503 0 R 503 0 R 503 0 R] +endobj +122 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 503 0 R +503 0 R 503 0 R 505 0 R 505 0 R 505 0 R 505 0 R 505 0 R 505 0 R 505 0 R 505 0 R 505 0 R 506 0 R 505 0 R 505 0 R 505 0 R 507 0 R +505 0 R 508 0 R 508 0 R 508 0 R 508 0 R 508 0 R 508 0 R 509 0 R 508 0 R 508 0 R 508 0 R 508 0 R 510 0 R 510 0 R 510 0 R 510 0 R +511 0 R 510 0 R 510 0 R 510 0 R 510 0 R 510 0 R 510 0 R 510 0 R 510 0 R 510 0 R 510 0 R 512 0 R 510 0 R 513 0 R 514 0 R 513 0 R +515 0 R 513 0 R 516 0 R 516 0 R 517 0 R 516 0 R 518 0 R 516 0 R] +endobj +123 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 519 0 R 520 0 R 520 0 R 520 0 R 520 0 R 520 0 R 520 0 R 520 0 R +520 0 R 520 0 R 521 0 R 521 0 R 521 0 R 522 0 R 521 0 R 523 0 R 521 0 R 524 0 R 525 0 R 525 0 R 525 0 R 526 0 R 525 0 R 525 0 R +525 0 R 525 0 R 525 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 528 0 R 529 0 R 528 0 R 528 0 R +528 0 R 528 0 R 528 0 R 530 0 R 528 0 R 528 0 R 528 0 R 528 0 R 528 0 R 528 0 R] +endobj +124 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 531 0 R 531 0 R 532 0 R 531 0 R 531 0 R 531 0 R +531 0 R 531 0 R 531 0 R 533 0 R 533 0 R 533 0 R 534 0 R 533 0 R 535 0 R 533 0 R 533 0 R 533 0 R 533 0 R 533 0 R 533 0 R 533 0 R +533 0 R 536 0 R 537 0 R 537 0 R 538 0 R 537 0 R 537 0 R 537 0 R 537 0 R 539 0 R 539 0 R 539 0 R 539 0 R 540 0 R 539 0 R 539 0 R +541 0 R 539 0 R 539 0 R 539 0 R 542 0 R 542 0 R 542 0 R 542 0 R 542 0 R 542 0 R 542 0 R 543 0 R 543 0 R 543 0 R 544 0 R 543 0 R +543 0 R] +endobj +125 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 545 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R 547 0 R 546 0 R 548 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R +549 0 R 550 0 R 551 0 R 550 0 R 550 0 R 552 0 R 550 0 R 550 0 R 553 0 R 553 0 R 553 0 R 554 0 R 553 0 R 553 0 R 553 0 R 553 0 R +555 0 R 553 0 R 556 0 R 557 0 R 557 0 R 558 0 R 557 0 R 559 0 R 559 0 R 560 0 R 561 0 R 562 0 R 562 0 R 562 0 R 562 0 R 562 0 R +562 0 R 562 0 R 562 0 R 562 0 R] +endobj +126 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 563 0 R 564 0 R 565 0 R 565 0 R 566 0 R 565 0 R 567 0 R 565 0 R 565 0 R +565 0 R 568 0 R 569 0 R 570 0 R 570 0 R 571 0 R 570 0 R 570 0 R 570 0 R 572 0 R 570 0 R 570 0 R 570 0 R 573 0 R 573 0 R 574 0 R +573 0 R 573 0 R 573 0 R 575 0 R 576 0 R 575 0 R 575 0 R 575 0 R 577 0 R 578 0 R 579 0 R 578 0 R 580 0 R 578 0 R 578 0 R 581 0 R +582 0 R 582 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 591 0 R 591 0 R 593 0 R +593 0 R 594 0 R 593 0 R 595 0 R 593 0 R] +endobj +127 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 596 0 R 597 0 R 598 0 R 597 0 R 597 0 R 597 0 R 599 0 R 600 0 R 600 0 R 600 0 R 600 0 R +600 0 R 600 0 R 601 0 R 600 0 R 602 0 R 603 0 R 602 0 R 602 0 R 604 0 R 602 0 R 602 0 R 602 0 R 605 0 R 602 0 R 602 0 R 602 0 R +606 0 R 602 0 R 602 0 R 602 0 R 602 0 R 602 0 R 607 0 R 608 0 R 609 0 R 610 0 R 609 0 R 609 0 R 611 0 R 609 0 R 609 0 R 609 0 R +609 0 R 609 0 R 612 0 R 612 0 R 612 0 R 613 0 R 612 0 R 612 0 R] +endobj +128 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 612 0 R 612 0 R 612 0 R 614 0 R 615 0 R 615 0 R 615 0 R 615 0 R +615 0 R 615 0 R 615 0 R 615 0 R 616 0 R 615 0 R 615 0 R 615 0 R 615 0 R 617 0 R 618 0 R 618 0 R 619 0 R 618 0 R 618 0 R 618 0 R +618 0 R 620 0 R 621 0 R 620 0 R 620 0 R 620 0 R 620 0 R 622 0 R 620 0 R 620 0 R 620 0 R 623 0 R 620 0 R 624 0 R 620 0 R 625 0 R +620 0 R 620 0 R 626 0 R 626 0 R 626 0 R 627 0 R 626 0 R 628 0 R 626 0 R 626 0 R 626 0 R 626 0 R 626 0 R 626 0 R 629 0 R 629 0 R +629 0 R] +endobj +129 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 630 0 R 630 0 R 631 0 R 630 0 R 630 0 R 630 0 R 632 0 R 633 0 R 632 0 R 632 0 R 632 0 R 632 0 R 634 0 R 635 0 R 635 0 R +635 0 R 636 0 R 635 0 R 635 0 R 635 0 R 637 0 R 635 0 R 635 0 R 635 0 R 638 0 R 638 0 R 638 0 R 638 0 R 638 0 R 638 0 R 638 0 R +639 0 R 639 0 R 639 0 R 640 0 R 639 0 R 639 0 R 641 0 R 642 0 R 642 0 R 642 0 R 642 0 R 642 0 R 642 0 R 642 0 R 642 0 R 642 0 R +642 0 R] +endobj +130 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 643 0 R 644 0 R 644 0 R 645 0 R 644 0 R 644 0 R 644 0 R 646 0 R 644 0 R 644 0 R 647 0 R 648 0 R 649 0 R 649 0 R 649 0 R +649 0 R 649 0 R 649 0 R 649 0 R 650 0 R 649 0 R 649 0 R 649 0 R 649 0 R 651 0 R 649 0 R 649 0 R 649 0 R 649 0 R 652 0 R 653 0 R +654 0 R 653 0 R 655 0 R 653 0 R 656 0 R 653 0 R 653 0 R 657 0 R 653 0 R 653 0 R 653 0 R 658 0 R 659 0 R 658 0 R 658 0 R 658 0 R +658 0 R 658 0 R 658 0 R 660 0 R 661 0 R 662 0 R 662 0 R 662 0 R] +endobj +131 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 663 0 R 664 0 R 665 0 R 665 0 R 666 0 R 665 0 R 667 0 R 668 0 R +669 0 R 669 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 672 0 R 674 0 R 672 0 R 675 0 R 676 0 R 677 0 R 678 0 R 677 0 R 679 0 R +679 0 R 679 0 R 680 0 R 679 0 R 679 0 R 681 0 R 682 0 R 683 0 R 682 0 R 682 0 R 682 0 R 682 0 R 682 0 R 682 0 R 684 0 R 682 0 R +685 0 R 686 0 R 685 0 R 687 0 R 685 0 R 688 0 R 685 0 R 685 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 693 0 R 693 0 R 693 0 R +694 0 R 693 0 R 695 0 R 693 0 R 696 0 R 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 701 0 R 701 0 R 702 0 R 701 0 R 701 0 R 703 0 R +701 0 R 701 0 R] +endobj +132 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 704 0 R 705 0 R 706 0 R 707 0 R 707 0 R 707 0 R 708 0 R 707 0 R 707 0 R 707 0 R 707 0 R 707 0 R 707 0 R 707 0 R +707 0 R 707 0 R 709 0 R 710 0 R 709 0 R 709 0 R 709 0 R 709 0 R 709 0 R 711 0 R 709 0 R 709 0 R 712 0 R 709 0 R 713 0 R 714 0 R +713 0 R 713 0 R 713 0 R 715 0 R 716 0 R 716 0 R 716 0 R 716 0 R 716 0 R 717 0 R 716 0 R 716 0 R 716 0 R 716 0 R 716 0 R 716 0 R +716 0 R 718 0 R 719 0 R 719 0 R 719 0 R 719 0 R 720 0 R] +endobj +133 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 719 0 R 719 0 R 719 0 R 719 0 R 719 0 R 721 0 R 722 0 R 723 0 R 723 0 R +724 0 R 723 0 R 723 0 R 725 0 R 723 0 R 723 0 R 723 0 R 723 0 R 723 0 R 723 0 R 723 0 R 726 0 R 727 0 R 727 0 R 727 0 R 727 0 R +728 0 R 727 0 R 727 0 R 727 0 R 727 0 R 729 0 R 727 0 R 730 0 R 727 0 R 731 0 R 727 0 R 732 0 R 732 0 R 732 0 R 733 0 R 732 0 R +734 0 R 732 0 R 732 0 R 732 0 R 735 0 R 736 0 R 736 0 R 736 0 R 736 0 R 736 0 R 737 0 R] +endobj +134 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 736 0 R 736 0 R 736 0 R 738 0 R 736 0 R +739 0 R 736 0 R 736 0 R 740 0 R 741 0 R 741 0 R 741 0 R 741 0 R 741 0 R 741 0 R 741 0 R 741 0 R 741 0 R 741 0 R 741 0 R 742 0 R +743 0 R 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R +759 0 R] +endobj +135 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 760 0 R 760 0 R 761 0 R 760 0 R 762 0 R 763 0 R 764 0 R 765 0 R 764 0 R 766 0 R 767 0 R 766 0 R +768 0 R 769 0 R 770 0 R 771 0 R 771 0 R 771 0 R 772 0 R 773 0 R 774 0 R 774 0 R 774 0 R 774 0 R 774 0 R 775 0 R 776 0 R 777 0 R +778 0 R 777 0 R 777 0 R 777 0 R 779 0 R 780 0 R 781 0 R 782 0 R 781 0 R 781 0 R 781 0 R 783 0 R 784 0 R 785 0 R 786 0 R 785 0 R +785 0 R 787 0 R 785 0 R 788 0 R 789 0 R 790 0 R 790 0 R 790 0 R 791 0 R 792 0 R 793 0 R 793 0 R 794 0 R 795 0 R 796 0 R 797 0 R +798 0 R 799 0 R 799 0 R 800 0 R 800 0 R 801 0 R 800 0 R 802 0 R 803 0 R 804 0 R 804 0 R 805 0 R 804 0 R 804 0 R 804 0 R 806 0 R +807 0 R 808 0 R 808 0 R 809 0 R 810 0 R 811 0 R 811 0 R 812 0 R 811 0 R 813 0 R 814 0 R 815 0 R 815 0 R 815 0 R 815 0 R 815 0 R +815 0 R 816 0 R 815 0 R 817 0 R 818 0 R 819 0 R 820 0 R 819 0 R 819 0 R 819 0 R 819 0 R 821 0 R 822 0 R 823 0 R 823 0 R 824 0 R +823 0 R 825 0 R 826 0 R 827 0 R 828 0 R 827 0 R 829 0 R 827 0 R 827 0 R 827 0 R 827 0 R 830 0 R 831 0 R 832 0 R 832 0 R 833 0 R +832 0 R 834 0 R 835 0 R 836 0 R 837 0 R 836 0 R 836 0 R 836 0 R 836 0 R 836 0 R 836 0 R 836 0 R 838 0 R 839 0 R 840 0 R 840 0 R +840 0 R 841 0 R 840 0 R 842 0 R 843 0 R 844 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 850 0 R 852 0 R +853 0 R 854 0 R 854 0 R 855 0 R 856 0 R 857 0 R 857 0 R] +endobj +136 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 858 0 R 858 0 R 859 0 R 858 0 R 860 0 R 861 0 R 862 0 R 862 0 R 863 0 R +864 0 R 863 0 R 865 0 R 865 0 R 865 0 R 866 0 R 865 0 R 867 0 R 868 0 R 869 0 R 870 0 R 869 0 R 869 0 R 869 0 R 869 0 R 869 0 R +869 0 R 869 0 R 871 0 R 869 0 R 869 0 R 872 0 R 873 0 R 874 0 R 874 0 R 874 0 R 875 0 R 876 0 R 877 0 R 877 0 R 878 0 R 879 0 R +880 0 R 880 0 R 880 0 R 881 0 R 880 0 R 880 0 R 882 0 R 883 0 R 884 0 R 884 0 R 884 0 R 885 0 R 884 0 R 884 0 R 886 0 R 887 0 R +888 0 R 888 0 R 889 0 R 890 0 R 891 0 R 891 0 R 892 0 R 891 0 R 893 0 R 894 0 R 895 0 R 895 0 R 895 0 R 895 0 R 896 0 R 897 0 R +898 0 R 899 0 R 900 0 R 901 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R 904 0 R 904 0 R 906 0 R 906 0 R 907 0 R 908 0 R 909 0 R +909 0 R 909 0 R 909 0 R 909 0 R 910 0 R 911 0 R 912 0 R 912 0 R 912 0 R 913 0 R 912 0 R 914 0 R 915 0 R 916 0 R 916 0 R 916 0 R +917 0 R 916 0 R 918 0 R 919 0 R 920 0 R 920 0 R 921 0 R 920 0 R 920 0 R 922 0 R 923 0 R 924 0 R 924 0 R 924 0 R 925 0 R 924 0 R +926 0 R 927 0 R 928 0 R 928 0 R 928 0 R 928 0 R 928 0 R 928 0 R 929 0 R 930 0 R 931 0 R 931 0 R 931 0 R 932 0 R 933 0 R 934 0 R +935 0 R 934 0 R 936 0 R 937 0 R 938 0 R 938 0 R 938 0 R 939 0 R 940 0 R 941 0 R 941 0 R 941 0 R 941 0 R 941 0 R] +endobj +137 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 942 0 R 942 0 R +943 0 R 942 0 R 944 0 R 945 0 R 946 0 R 946 0 R 947 0 R 948 0 R 947 0 R 949 0 R 950 0 R 949 0 R 949 0 R 951 0 R 949 0 R 952 0 R +953 0 R 954 0 R 955 0 R 954 0 R 956 0 R 954 0 R 957 0 R 954 0 R 954 0 R 954 0 R 954 0 R 954 0 R 958 0 R 959 0 R 960 0 R 960 0 R +960 0 R 961 0 R 960 0 R 962 0 R 963 0 R 964 0 R 964 0 R 965 0 R 964 0 R 966 0 R 964 0 R 967 0 R 968 0 R 969 0 R 969 0 R 969 0 R +970 0 R 971 0 R 972 0 R 972 0 R 973 0 R 974 0 R 975 0 R] +endobj +138 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 976 0 R +/FontName /WVEKHQ+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +139 0 obj +<< +/Filter /FlateDecode +/Length 437 +>> +stream +H‰\“ÝjÛ@…ïõ{™\ÙÒîLÂPì|Ñêædiì +ê•XË~ûîÑ )T ë»søf=*·ûÝ>³+¤±;ØìNCì“]Ç[êÌí<Äb]¹~èæ·å·»´SQæâÃý:ÛeOcÑ4®ü™¯sº»‡/ýx´Ç¢üžzKC<»‡÷íáÑ•‡Û4ý±‹ÅÙ­Üfãz;å ¯íô­½˜+—²§}Ÿ×‡ùþ”kþíøuŸÌUËûš2ÝØÛuj;Km<[ѬòµqÍ[¾6…Åþ¿u/,;žºßm*š +›W«üȼ%oÁ;òüJ~Í\sýõš¼Wä +\“k°'{p °¬d?“ŸÁ/ä—Ìž™™ž™™ž99ž99žµ~©¥¿‡ € s€s`N@N`N@Ž°GAÂý‚ýBÐGà#ìQУ0S)Ì”%“= +zz +<…ç/8áù Î_è/ð—7rþse/Š^”n +7¥›ÂMé¦pSº)Ü”n +7¥›ÂMé¦pSºåécb0RyòÝç¼v·”ò¨.ŸÇ2£˜Î!Úç4“ËU¸‹¿ @س +endstream +endobj +140 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 977 0 R +/FontName /FTSMDY+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +141 0 obj +<< +/Filter /FlateDecode +/Length 450 +>> +stream +H‰\“Ñnª@EßùŠylfÎhBLŒ¶‰½mêí -IȈþýÍ6mrMEàœY›9ä›ÝvºÑäï±oö:šcÚ¨—þ5=u!›¦íšñ~5ý7çzÈòT¼¿]F=ï±ϪÊäéæeŒ7ó°nûƒ>fù[l5vád>7ûG“ï¯Ãð­g £™™ÕÊ´zL^ëáO}V“OeO»6ÝïÆÛSªù}âïmPSL×sÊ4}«—¡n4Öá¤Y5K¿•©^Òo•ihÿ»o,;›¯:fU‡g³tJ¼!oÀ[òü|&ÏéºdM‰šrNžƒ r.É%Ø’-Ø‘XÈöd^à%y ^“×àr +YY:X8X®e±–e­E­e‹<–y,²8:;8;:;8;öqèãèìàìèéà)\W°®° ° ° ° 0» »°§L=™]]è/ðfdî“`Ÿ„¹¹„¹¹„ïGð~<÷Ëc¿<==<===<===<===<===<=Ý<Ü<ÝÒ CvŸ&Œ[ú*ÌÏ,7×ÓOŸÎ4¿˜Ü.èÏ×5ôƒIU8² -ãÞw +endstream +endobj +142 0 obj +[978 0 R] +endobj +143 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +144 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/space/comma/two/C/D/I/L/P/R/S/a/c/d/e/f/g/h/i/l/n/o/p/r/s/t/v/y) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 979 0 R +/FontName /JWWUHQ+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +145 0 obj +<< +/Filter /FlateDecode +/Length 355 +>> +stream +H‰\’ËjÃ0E÷ú +-“E°ãXRÆPܼ胺ýǧ†ZŠ³ðßwFR¨@ž£Ç\_f”Tõsí†Y&ïaê˜e?8à:ÝBò —Á‰m&íÐÍ÷UüvcëE‚ÉÍra¬]?‰¢É^ç°ÈՓΰÉ[°w‘«¯ªYˤ¹yÿ#¸Y¦²,¥……^ZÿÚŽ “˜¶©-žó²Áœ¿Ÿ‹™Åõ–Ít“…«o;­»€(R¥,N8JÎþ;Ï §ûî» ¢Èèršb@®˜+ä]ƒ(ò]d È9sN|`>snN¹Š5i*ÖQ¤£XG‘ŽÞFÆ€Ìû:î³¾&}­˜±fÖĆÙï™÷ÄìG“Í~4ùÑGæ#ñ‰‹SöiȧaŸ†|öcÈa?†üö`ȃáa "ß«IåÆW!½ìn!`ãÓ‰ý£Î ¯ËO^bMñ+ÀŸE¬P +endstream +endobj +146 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 980 0 R +/FontName /KAGAVO+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +147 0 obj +<< +/Filter /FlateDecode +/Length 235 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqv)˜@iä°v,Ý8¶’Û(Î!o?Ù-T`ËBÿ'~KžÚsë]ùIÁt˜`pÞÎa!ƒÐãè¼Ø×`IªÜfÒQH†»uN8µ~B)_Üœ­°9ÚÐãVÈ+Y$çGØ|Ÿº-Èn‰ñ'ô *h°8ð /zBÛµ–û.­;fþ·5"Ô¥Þß͘`qŽÚ i?¢PGê£èíK¿¾Sý`~4 UgmUqêíPÞœ2÷Pä üQxÚ3 ;+Û(–²çñ¹°"0•ø`Ðq‰ +endstream +endobj +148 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space/A/D/N/R/T/U/a/c/e/h/o/p/r/t) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 981 0 R +/FontName /ZPUHXK+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +149 0 obj +<< +/Filter /FlateDecode +/Length 302 +>> +stream +H‰\‘Ínƒ0 Çïy +ÛC zˆ¦®•8ìCc{HLi„(¤Þ~NRuÒ"‘ÿþˆÍOísk´þîfÙ¡‡Qåp™oN" xÕ†å(-ýýÿrê-ãÜ­‹Ç©5ãÌ„þAÎÅ»6OjpËø›Sè´¹ÂæëÔmw7kpBã!ƒ¦…#%zéík?!ð¶kùµ_wó§ø\-BïyjFÎ +ÛKt½¹"Ä…NÃШþ¼LaÃ(¿{ÇDÄYF†‰C™ ñ!ñ!ð9ñ™¸,"“!Nš2hÊ2qI\¥> +endobj +151 0 obj +<< +/Filter /FlateDecode +/Length 302 +>> +stream +H‰\‘Ínƒ0 Çïy +ÛC zˆ¦®•8ìCc{HLi„(¤Þ~NRuÒ"‘ÿþˆÍOísk´þîfÙ¡‡Qåp™oN" xÕ†å(-ýýÿrê-ãÜ­‹Ç©5ãÌ„þAÎÅ»6OjpËø›Sè´¹ÂæëÔmw7kpBã!ƒ¦…#%zéík?!ð¶kùµ_wó§ø\-BïyjFÎ +ÛKt½¹"Ä…NÃШþ¼LaÃ(¿{ÇDÄYF†‰C™ ñ!ñ!ð9ñ™¸,"“!Nš2hÊ2qI\¥> +endobj +153 0 obj +<< +/Filter /FlateDecode +/Length 250 +>> +stream +H‰\PÁjÄ ½ûsÜ=,&–Þ$P¶]ÈaÛÒ´`t’ +Š1‡ü}G]¶Ð7̼çsø¹îMÀߣ×&˜¬3W¿E0âlk«Ó­*·^T`œÈþ&\z7y&%ðj®)îpx2~Ä#ãoÑ`´n†Ã×y8¶~pA— ®ƒ ]UxU /´So¨oÓ~"ÎßÄçD©ÛjF{ƒkP£r32ÙPt /Cgþõ+kœô·ŠLŠšmJL>4S"ÜVÜf,*]VuŠRV¿éäwhpÿ„Þb$ÿegÅx¶lÞ×|båÃ~/ÚxÒ +endstream +endobj +154 0 obj +<< +/BaseFont /PHZJNE+Wingdings-Regular +/DescendantFonts 984 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 985 0 R +/Type /Font +>> +endobj +155 0 obj +<< +/BaseFont /KAGAVO+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 146 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 986 0 R +/Type /Font +/Widths [285] +>> +endobj +156 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 987 0 R +/FontName /UCHBDE+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +157 0 obj +<< +/Filter /FlateDecode +/Length 561 +>> +stream +H‰\ÔÍŠ£@à½OQËîEcbݺ· ¤“nÈb~˜Ì<€ÑJF˜¨{‘·Ÿ:ž¦&䈖÷ó€•ïûCßÍ.ÿ> Í1ÎîÜõíoÃûÔDwŠ—®ÏÖ…k»fþ8Z~›k=fyZ|¼ßæx=ôç!«*—ÿH'oótwÛv8ÅÇ,ÿ6µqêú‹{øµ;>ºüø>Žâ5ö³[¹ÍƵñœnô¥¿Ö×èòeÙÓ¡Mç»ùþ”Öü»âç}Œ®XŽ×Ä4CocÝÄ©î/1«Vé³qÕ[úl²Ø·ÿ7ã²Ó¹ù]OYUàâÕ*ý¥˜ò3ó3rÉ\"ï˜wÈ{æ=ò+ó+òsTž÷÷¸¿_3¯‘ æÙ3{dadz<<^™Ù˜ ™N§§ÓÃé·Ì[äædÚMi{X¶¤e_ÀŽÐõñsׇѥUøfºÂ" +endstream +endobj +158 0 obj +[988 0 R] +endobj +159 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\PÁjÃ0 ½û+tlÅm¶ÃÁPZ +9¬ËöŽ­¤†Æ6ŠsÈßOvKØâñÞO’‡æØx—@~R0-&è·„S˜É t88/vXgҕߌ: +Éæv™Žïƒ¨k_LN‰Xímèp-ä…,’ó¬~íd;ÇxÃ}‚-({ô¡ãY²Ø6eÞ¥eÞ?Å÷ª‚w÷0&Xœ¢6HÚ(ê-—‚úÄ¥zû¯î®®7WMEýÂjnï*£·×‚¸eïC•§ð²ðŒhf"NW.Rbå@Îãóh1D`W~âW€(¬rO +endstream +endobj +160 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/N/P/R/S/a/b/c/comma/d/e/eight/f/five/four/g/h/i/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/v/y/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 989 0 R +/FontName /TKZLUG+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +161 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +162 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/space/comma/period/zero/one/two/A/B/D/E/F/G/I/L/M/N/O/R/S/T/Z) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 990 0 R +/FontName /YAMEHW+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +163 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÛŠƒ0†ïósÙ^«Æ–‚ŶàÅXwÀ&cWXcˆö·ß§taê—9˜ßŒÊêT¹n‚è= ¦Æ ÚÎÙ€ãp኷Ω8Û™é±[î¦o¼Š¨¹žÇ ûʵƒÊsˆ>(9Na†ÕÑW\«è-X »Áꫬ×Õwï°G7ÁŠ,¶ô¢—Æ¿6=B´´m*Kùnš7ÔóWñ9{„dÙÇ"Æ Gß »¡Ê·´ +È/´ +…ÎþË'¶kk¾› ò„‹·[z—Â%óYøLœJMÊ5i,3' ±–¸æ¸–¸^âZX3gÂóNxǼÞ3„Ì¢G³}>1‹6ÍÚôE˜>6ÏäÜŒÏÍRá”Y4d¬!; +s.°M4MxÎÀÜC û—‘/¾³ãÃç_áÔÅ—ú`yŽžF +endstream +endobj +164 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/A/C/D/F/I/N/P/R/S/T/U/a/b/bullet/c/colon/comma/d/e/eight/f/four/g/h/i/l/m/n/o/one/p/period/r/s/six/slash/space/t/three/two/u/v/w/x/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 991 0 R +/FontName /DPATEM+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +165 0 obj +<< +/Filter /FlateDecode +/Length 442 +>> +stream +H‰\“Ájã0E÷þ +-ÛE±cKï5`!i!‹é MûŽ­¤†‰lg‘¿¯®oi¡$ÇX÷r$?ç›ÝvúÉäÿâÐîýdŽ}袿 ×Øzsð§>d‹Òt};}]Í¿í¹³<…÷·ËäÏ»p²º6ùkºy™âÍÜ­»áàï³üoì|ìÃÉܽoö÷&ß_Çñ¿?û0™Â¬V¦óÇTô§_š³7ù{Øué~?ÝRægÅÛmô¦œ¯”i‡Î_Ʀõ± 'ŸÕEú¬Lýœ>«Ì‡î×}«ŒŽíG³ºÄâ¢H‰7ä ø‰ü~&§Âºâú +ë«y.É%¸"W`K¶`! ø‘ü^“׉-;-:-{,z,{,z,{,zì’¼ÓÙÂÙÑÓÁÓÑÍÁͱӡӱӡÓ9²K,t8³‚¬0+È +³‚¬0+s–n7Q²‚¹_Á~…Îgá™ Î\¶ä-˜{ìExþ‚óWîK±/¥›ÂMé¦pSº)Ü”n +7¥›ÂMé¦pSº)Ü”n +7åsQ<—%zÊ¢,ç¡úšŒWz Ì÷ì¶×ÓØίÊ<¯˜Ô>øï·iF“RøfŸ ÍnÛ" +endstream +endobj +166 0 obj +<< +/BaseFont /XQCJYY+Wingdings-Regular +/DescendantFonts 992 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 993 0 R +/Type /Font +>> +endobj +167 0 obj +<< +/BaseFont /TKZLUG+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 160 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 994 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 573 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +168 0 obj +<< +/BaseFont /FSZFGI+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 184 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 995 0 R +/Type /Font +/Widths [202] +>> +endobj +169 0 obj +<< +/BaseFont /DPATEM+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 164 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 996 0 R +/Type /Font +/Widths [212] +>> +endobj +170 0 obj +<< +/BaseFont /ANMBOS+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 997 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 998 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 683 0 0 0 0 0 0 0 0 0 676 0 +0 0 569 0 525 666 0 0 0 0 0 0 0 0 0 0 +0 508 0 449 0 516 0 0 572 0 0 0 0 0 0 564 +585 0 356 0 351] +>> +endobj +171 0 obj +<< +/BaseFont /DQTEEM+Wingdings-Regular +/DescendantFonts 999 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1000 0 R +/Type /Font +>> +endobj +172 0 obj +<< +/BaseFont /TKZLUG+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 160 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1001 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 573 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +173 0 obj +<< +/BaseFont /FSZFGI+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 184 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1002 0 R +/Type /Font +/Widths [202] +>> +endobj +174 0 obj +<< +/BaseFont /DPATEM+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 164 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1003 0 R +/Type /Font +/Widths [212] +>> +endobj +175 0 obj +<< +/BaseFont /ANMBOS+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 997 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1004 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +176 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1005 0 R +/FontName /FLSPBI+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +177 0 obj +<< +/Filter /FlateDecode +/Length 430 +>> +stream +H‰\“Ýn‚@…ïyŠ½l/–Mˆ‰Õ6ñ¢?©í ¬–¤.dÅ ß¾{8M›ÔDýgf¿ CºÞn¶¾MúúfçFsè|ܹ¿„Æ™½;v>™å¦íšñçjúmNõ¤±xw=î´õ‡>©*“¾Å›ç1\Íͪí÷î6I_BëBçææc½»5éî2 _îäüh2³\šÖb£§zx®OΤSÙݶ÷»ñzkþï×Á™|ºžQ¦é[wêÆ…Ú]Reñ³4Õcü,çÛ÷­eÙþÐ|Ö!©r„³,þE^“×à y~ ?D.˜//fä8'çà‚\€Kr ^‘W‘-óy˼EÞZ²³Ö¢Ö +YÀ ò"rÉ>%ú”ìS¢OÉ>%ú=žÂ¼ /Ì ò¼Lyž+8Wx®à\Q²‚çä9˜>¹'߃9OÁ<…óÌS8OÁ<å‘V¥œ­b¶JO…§ÒSá©ôTx*=žJO…§ÒSá©ôTx*=žÊg¡xsôɳ\¦…ùÙ ¬NÜpó»—Í%„¸’Ók0í"¶°óî÷MúÁÄ*|“o7Ô2 +endstream +endobj +178 0 obj +<< +/Ascent 953 +/CapHeight 674 +/CharSet (/A/B/D/E/G/I/L/M/N/O/R/S/T/Z) +/Descent -250 +/Flags 96 +/FontBBox [-185 -250 1090 953] +/FontFamily (Myriad Pro) +/FontFile3 1006 0 R +/FontName /JETIFA+MyriadPro-It +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle -11 +/StemV 84 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +179 0 obj +<< +/Filter /FlateDecode +/Length 298 +>> +stream +H‰\‘ÉjÃ0†ïzŠ9&‡à%!` ÁIÀ‡.Ôí8Ò8Ô²ƒß¾3žB’¾aôk¶¤ªOµw$ïq0 NÐ9o#ŽÃ=„+ÞœWYÖ™éa-§éÛ 7ó8a_ûnPEÉ9Ç)ΰ:ÚáŠk•¼E‹Ñù¬¾ªf Isá{ô¤P–`±£^ÚðÚöÉ"ÛÔ–ünš7¤ù{ñ9„|±3IÆ ÇÐŒ­¿¡*RZ%Z¥Boÿù3-²kg¾Û¨Š]FÓ”.â\8gÞ ï˜µ°fÞ ï™ÂæJ¸b> Ÿ˜ÏÂgæ‹0%Vh‰¥9–Þ +o™%®æ¸ú(|,¹¬<],º¸¬Gþ\ ÍžÝ3÷©qË°–Žq¯œÇç<ÀT¼Õ¯t± +endstream +endobj +180 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [28 /f_l /f_f_i /f_f /f_i] +/Type /Encoding +>> +endobj +181 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_l/f_f_i/f_f/f_i/space/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/A/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/bracketleft/bracketright/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/ellipsis/quotedblleft/quotedblright) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1007 0 R +/FontName /GXFQPG+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +182 0 obj +<< +/Filter /FlateDecode +/Length 568 +>> +stream +H‰\”ÍŽâ0„ïy +g£üµ» !1°#qØ-³‰a#-I·_W*V‹\Ç®Ï%Ûéf·ÝµÍèÒCWíÃèNM[áÚ݆*¸c87m’®nªq®¦ÿêrè“4Þ߯c¸ìÚS—,—.ý;¯ãpwOëº;†ç$ý>ÔahÚ³{úµÙ?»tëû?áÚÑenµru8ʼn¾úo‡Kpé4ìeWÇþf¼¿Ä1/>î}pÅTç„©º:\ûC†C{É2‹¿•[¾Çß* mý_¿•vÂ|ùóäã™G>ž™xdâÉæÁæÉæÁæÉæÁæÉæÁæÉæÁæ¹^õz2x0(×®X»ÒKá¥ôRx)½^J/…—ê¼W é¥ðRæ ÈA™Ã´—”ù+òWò(xtÞ§ÈGç=:±Í{ùè¼/‘1C>F~¿‘ßÀoä7ðù üF~¿‘ßÀoä7ðù üF~¿‘ßÀÿŠyŠ¬ÀØE9éü ¡ÞNt>‰8ªñFqŸ÷@u†xL×Îtöqê›6|ÞL}×»8 +OòW€›Žä +endstream +endobj +183 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [29 /f_i /f_l /hyphen.cap] +/Type /Encoding +>> +endobj +184 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/X/a/b/c/colon/comma/d/e/eight/f/f_i/f_l/five/four/g/h/hyphen/hyphen.cap/i/l/m/n/nine/o/one/p/period/r/s/seven/six/slash/space/t/three/two/u/v/w/x/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1008 0 R +/FontName /FSZFGI+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +185 0 obj +<< +/Filter /FlateDecode +/Length 515 +>> +stream +H‰\”ÍnÛ0„ïz +“C ¿å2†>¤-êæd‰vÔ’@Ë¿}9!)*@Öäî|»à:Ýîwû¡ŸMú#ŒíÁÏæÔ]ð×ñZoŽþÜI^˜®oçuµü¶—fJÒ|¸_gÙ§1©*“þŒ›×9ÜÍæþ1I¿‡Î‡~8›‡íáѤ‡Û4ýñ?Ì&3um:Š‰Þ›é[sñ&]žö]ÜïçûSŒù:ñë>yS,ëœ0íØùëÔ´>4ÃÙ'UŸÚToñ©?tÿíkÁ°ã©ýÝ„¤Êwñp–©Æ÷¥Žëׯõë·e]ì¢.2ê zK3ÅîŸ3ŒŸ¨×ØR•Œ-[æÔ9tA]@—Ô%´P ´¥¶ÐJ­ÐŽÚA?S?C¿P£žrC½‰Zè+ðú +|…¾_¡¯ÀWè+ðú +|…¾_¡¯ÀWè+ðöGÐaýöGÐaý±ìE,Ù,Ø,Ù,Ø,Ù,Ø,Ù,Ø,Ù,Ø,Ù,Ø,Ù,Ø”µ+jWæWäWæWäWæWäWæWäW]ï4ó+ò+óë’Ÿµ/wHYûrt½_¨]×»…Ú•µ+jw¬Ý¡vG66G66G66G66G66G66G66G¶øÁ@¬7£'Ø|Î]{ !ŽÜ2æˬaÊúÁþLãdbÞä¯gä2 +endstream +endobj +186 0 obj +<< +/BaseFont /WRBSKA+Wingdings-Regular +/DescendantFonts 1009 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1010 0 R +/Type /Font +>> +endobj +187 0 obj +<< +/BaseFont /XDOYYY+Wingdings-Regular +/DescendantFonts 1011 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1012 0 R +/Type /Font +>> +endobj +188 0 obj +<< +/BaseFont /FSZFGI+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 184 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1013 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 260 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 696 0 0 0 0 285 0 0 0 0 0 0 +0 0 593 540 0 0 0 0 0 0 0 0 0 0 0 0 +0 528 598 0 596 528 0 585 0 274 0 0 275 860 586 577 +0 0 380 434 367 0 0 0 0 0 469] +>> +endobj +189 0 obj +<< +/BaseFont /DPATEM+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 164 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1014 0 R +/Type /Font +/Widths [212] +>> +endobj +190 0 obj +<< +/BaseFont /TKZLUG+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 160 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1015 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +573 573 573 0 0 0 0 0 0 573 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 705 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 610 0 0 539 0 0 0 0 0 0 0 871 0 589 +0 0 403 0 0 0 551] +>> +endobj +191 0 obj +<< +/BaseFont /QSJEEM+Wingdings-Regular +/DescendantFonts 1016 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1017 0 R +/Type /Font +>> +endobj +192 0 obj +<< +/BaseFont /GTKMPG+Wingdings-Regular +/DescendantFonts 1018 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1019 0 R +/Type /Font +>> +endobj +193 0 obj +<< +/BaseFont /TKZLUG+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 160 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1020 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 573 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +194 0 obj +<< +/BaseFont /DPATEM+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 164 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 1021 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 612 0 0 666 0 0 0 0 0 0 0 0 0 658 0 +0 0 538 0 497 647 0 0 0 0 0 0 0 0 0 0 +0 482 0 448 0 501 0 0 555 0 0 0 0 0 0 549 +569 0 327 0 331] +>> +endobj +195 0 obj +<< +/BaseFont /FSZFGI+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 184 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1022 0 R +/Type /Font +/Widths [202] +>> +endobj +196 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +197 0 obj +<< +/BaseFont /CUCKKZ+Wingdings-Regular +/DescendantFonts 1023 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1024 0 R +/Type /Font +>> +endobj +198 0 obj +<< +/BaseFont /ZXSXUF+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1025 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1026 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +199 0 obj +<< +/BaseFont /SXECAT+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1027 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1028 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +200 0 obj +<< +/BaseFont /GAAIOR+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1029 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1030 0 R +/Type /Font +/Widths [212] +>> +endobj +201 0 obj +<< +/BaseFont /HMNJCP+Wingdings-Regular +/DescendantFonts 1031 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1032 0 R +/Type /Font +>> +endobj +202 0 obj +<< +/BaseFont /EFZRMV+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 1033 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 1034 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +203 0 obj +<< +/BaseFont /UQZJCP+MyriadPro-Light +/Encoding 1035 0 R +/FirstChar 31 +/FontDescriptor 1036 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 1037 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +204 0 obj +<< +/K [211 0 R 212 0 R 213 0 R 1038 0 R 226 0 R 228 0 R 232 0 R 234 0 R 238 0 R 240 0 R 244 0 R 1039 0 R 255 0 R 258 0 R 263 0 R 1040 0 R +277 0 R 279 0 R 282 0 R 286 0 R 288 0 R 291 0 R 293 0 R 295 0 R 297 0 R 298 0 R 1041 0 R 331 0 R 332 0 R 334 0 R 1042 0 R 348 0 R +1043 0 R 350 0 R 354 0 R 1044 0 R 357 0 R 359 0 R 360 0 R 1045 0 R 361 0 R 362 0 R 1046 0 R 363 0 R 1047 0 R 365 0 R 1048 0 R 1049 0 R +368 0 R 372 0 R 377 0 R 382 0 R 384 0 R 387 0 R 388 0 R 390 0 R 395 0 R 1050 0 R 415 0 R 1051 0 R 431 0 R 434 0 R 439 0 R 443 0 R +445 0 R 448 0 R 455 0 R 456 0 R 459 0 R 461 0 R 462 0 R 463 0 R 1052 0 R 482 0 R 485 0 R 487 0 R 490 0 R 491 0 R 499 0 R 503 0 R +505 0 R 508 0 R 510 0 R 513 0 R 1053 0 R 1054 0 R 519 0 R 520 0 R 521 0 R 524 0 R 525 0 R 527 0 R 528 0 R 531 0 R 533 0 R 536 0 R +537 0 R 539 0 R 542 0 R 543 0 R 545 0 R 546 0 R 549 0 R 550 0 R 553 0 R 556 0 R 557 0 R 559 0 R 1055 0 R 573 0 R 575 0 R 577 0 R +578 0 R 1056 0 R 591 0 R 593 0 R 596 0 R 597 0 R 599 0 R 600 0 R 602 0 R 607 0 R 608 0 R 609 0 R 612 0 R 614 0 R 615 0 R 617 0 R +618 0 R 620 0 R 626 0 R 630 0 R 632 0 R 634 0 R 635 0 R 638 0 R 639 0 R 641 0 R 642 0 R 643 0 R 644 0 R 647 0 R 648 0 R 649 0 R +652 0 R 653 0 R 658 0 R 1057 0 R 679 0 R 681 0 R 682 0 R 685 0 R 689 0 R 1058 0 R 709 0 R 713 0 R 715 0 R 716 0 R 718 0 R 719 0 R +721 0 R 722 0 R 723 0 R 726 0 R 727 0 R 732 0 R 735 0 R 736 0 R 740 0 R 741 0 R 742 0 R 1059 0 R 743 0 R 744 0 R 745 0 R 746 0 R +747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 1060 0 R] +/P 110 0 R +/S /Story +>> +endobj +205 0 obj +<< +/K 516 0 R +/P 110 0 R +/S /Story +>> +endobj +206 0 obj +<< +/K 1061 0 R +/P 110 0 R +/S /Story +>> +endobj +207 0 obj +<< +/K 1062 0 R +/P 110 0 R +/S /Story +>> +endobj +208 0 obj +<< +/K 1063 0 R +/P 110 0 R +/S /Story +>> +endobj +209 0 obj +<< +/K 629 0 R +/P 110 0 R +/S /Story +>> +endobj +210 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 211 0 R +/Pg 7 0 R +/S /Span +>> +endobj +211 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [210 0 R 1] +/P 204 0 R +/Pg 7 0 R +/S /Kapitel-Head +>> +endobj +212 0 obj +<< +/C /Pa1 +/K 2 +/P 204 0 R +/Pg 7 0 R +/S /Zwischenhead_1 +>> +endobj +213 0 obj +<< +/C /Pa2 +/K [3 4 214 0 R 6 215 0 R 8 216 0 R 10] +/P 204 0 R +/Pg 7 0 R +/S /Lauftext +>> +endobj +214 0 obj +<< +/ActualText +/K 5 +/P 213 0 R +/Pg 7 0 R +/S /Span +>> +endobj +215 0 obj +<< +/ActualText +/K 7 +/P 213 0 R +/Pg 7 0 R +/S /Span +>> +endobj +216 0 obj +<< +/ActualText +/K 9 +/P 213 0 R +/Pg 7 0 R +/S /Span +>> +endobj +217 0 obj +<< +/C /A4 +/K 11 +/P 1064 0 R +/Pg 7 0 R +/S /Span +>> +endobj +218 0 obj +<< +/C /A4 +/K 12 +/P 1064 0 R +/Pg 7 0 R +/S /Span +>> +endobj +219 0 obj +<< +/K 13 +/P 1065 0 R +/Pg 7 0 R +/S /LBody +>> +endobj +220 0 obj +<< +/C /A4 +/K 14 +/P 1066 0 R +/Pg 7 0 R +/S /Span +>> +endobj +221 0 obj +<< +/C /A4 +/K 15 +/P 1066 0 R +/Pg 7 0 R +/S /Span +>> +endobj +222 0 obj +<< +/K 16 +/P 1067 0 R +/Pg 7 0 R +/S /LBody +>> +endobj +223 0 obj +<< +/C /A4 +/K 17 +/P 1068 0 R +/Pg 7 0 R +/S /Span +>> +endobj +224 0 obj +<< +/C /A4 +/K 18 +/P 1068 0 R +/Pg 7 0 R +/S /Span +>> +endobj +225 0 obj +<< +/K 19 +/P 1069 0 R +/Pg 7 0 R +/S /LBody +>> +endobj +226 0 obj +<< +/C /Pa2 +/K [20 21 227 0 R 23 24] +/P 204 0 R +/Pg 7 0 R +/S /Lauftext +>> +endobj +227 0 obj +<< +/ActualText +/K 22 +/P 226 0 R +/Pg 7 0 R +/S /Span +>> +endobj +228 0 obj +<< +/C /Pa2 +/K [25 229 0 R 27 28 29 230 0 R 31 231 0 R 33 34] +/P 204 0 R +/Pg 7 0 R +/S /Lauftext +>> +endobj +229 0 obj +<< +/ActualText +/K 26 +/P 228 0 R +/Pg 7 0 R +/S /Span +>> +endobj +230 0 obj +<< +/ActualText +/K 30 +/P 228 0 R +/Pg 7 0 R +/S /Span +>> +endobj +231 0 obj +<< +/ActualText +/K 32 +/P 228 0 R +/Pg 7 0 R +/S /Span +>> +endobj +232 0 obj +<< +/C /Pa2 +/K [35 36 37 38 39 233 0 R 41] +/P 204 0 R +/Pg 7 0 R +/S /Lauftext +>> +endobj +233 0 obj +<< +/ActualText +/K 40 +/P 232 0 R +/Pg 7 0 R +/S /Span +>> +endobj +234 0 obj +<< +/C /Pa2 +/K [42 235 0 R 44 45 46 47 236 0 R 49 237 0 R 51 52 53 54] +/P 204 0 R +/Pg 7 0 R +/S /Lauftext +>> +endobj +235 0 obj +<< +/ActualText +/K 43 +/P 234 0 R +/Pg 7 0 R +/S /Span +>> +endobj +236 0 obj +<< +/ActualText +/K 48 +/P 234 0 R +/Pg 7 0 R +/S /Span +>> +endobj +237 0 obj +<< +/ActualText +/K 50 +/P 234 0 R +/Pg 7 0 R +/S /Span +>> +endobj +238 0 obj +<< +/C /Pa2 +/K [55 239 0 R 57 58 59 60 61] +/P 204 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +239 0 obj +<< +/ActualText +/K 56 +/P 238 0 R +/Pg 8 0 R +/S /Span +>> +endobj +240 0 obj +<< +/C /Pa2 +/K [62 63 241 0 R 65 66 242 0 R 68 243 0 R 70] +/P 204 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +241 0 obj +<< +/ActualText +/K 64 +/P 240 0 R +/Pg 8 0 R +/S /Span +>> +endobj +242 0 obj +<< +/ActualText +/K 67 +/P 240 0 R +/Pg 8 0 R +/S /Span +>> +endobj +243 0 obj +<< +/ActualText +/K 69 +/P 240 0 R +/Pg 8 0 R +/S /Span +>> +endobj +244 0 obj +<< +/C /Pa2 +/K [71 72] +/P 204 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +245 0 obj +<< +/C /A4 +/K 73 +/P 1070 0 R +/Pg 8 0 R +/S /Span +>> +endobj +246 0 obj +<< +/K [74 75 76] +/P 1071 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +247 0 obj +<< +/C /A4 +/K 77 +/P 1072 0 R +/Pg 8 0 R +/S /Span +>> +endobj +248 0 obj +<< +/K 78 +/P 1073 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +249 0 obj +<< +/C /A4 +/K 79 +/P 1074 0 R +/Pg 8 0 R +/S /Span +>> +endobj +250 0 obj +<< +/K 80 +/P 1075 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +251 0 obj +<< +/C /A4 +/K 81 +/P 1076 0 R +/Pg 8 0 R +/S /Span +>> +endobj +252 0 obj +<< +/K 82 +/P 1077 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +253 0 obj +<< +/C /A4 +/K 83 +/P 1078 0 R +/Pg 8 0 R +/S /Span +>> +endobj +254 0 obj +<< +/K 84 +/P 1079 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +255 0 obj +<< +/C /Pa9 +/K [85 256 0 R 87 88 89 90 91 257 0 R 93] +/P 204 0 R +/Pg 8 0 R +/S /Lauftext_1._Abs +>> +endobj +256 0 obj +<< +/ActualText +/K 86 +/P 255 0 R +/Pg 8 0 R +/S /Span +>> +endobj +257 0 obj +<< +/ActualText +/K 92 +/P 255 0 R +/Pg 8 0 R +/S /Span +>> +endobj +258 0 obj +<< +/C /Pa2 +/K [94 259 0 R 96 260 0 R 98 99 100 261 0 R 102 262 0 R 104 105 106 107] +/P 204 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +259 0 obj +<< +/ActualText +/K 95 +/P 258 0 R +/Pg 8 0 R +/S /Span +>> +endobj +260 0 obj +<< +/ActualText +/K 97 +/P 258 0 R +/Pg 8 0 R +/S /Span +>> +endobj +261 0 obj +<< +/ActualText +/K 101 +/P 258 0 R +/Pg 8 0 R +/S /Span +>> +endobj +262 0 obj +<< +/ActualText +/K 103 +/P 258 0 R +/Pg 8 0 R +/S /Span +>> +endobj +263 0 obj +<< +/C /Pa2 +/K [108 264 0 R 110] +/P 204 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +264 0 obj +<< +/ActualText +/K 109 +/P 263 0 R +/Pg 8 0 R +/S /Span +>> +endobj +265 0 obj +<< +/C /A4 +/K 111 +/P 1080 0 R +/Pg 8 0 R +/S /Span +>> +endobj +266 0 obj +<< +/C /A4 +/K 112 +/P 1080 0 R +/Pg 8 0 R +/S /Span +>> +endobj +267 0 obj +<< +/K [113 114] +/P 1081 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +268 0 obj +<< +/C /A4 +/K 115 +/P 1082 0 R +/Pg 8 0 R +/S /Span +>> +endobj +269 0 obj +<< +/C /A4 +/K 116 +/P 1082 0 R +/Pg 8 0 R +/S /Span +>> +endobj +270 0 obj +<< +/K 117 +/P 1083 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +271 0 obj +<< +/C /A4 +/K 118 +/P 1084 0 R +/Pg 8 0 R +/S /Span +>> +endobj +272 0 obj +<< +/C /A4 +/K 119 +/P 1084 0 R +/Pg 8 0 R +/S /Span +>> +endobj +273 0 obj +<< +/K 120 +/P 1085 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +274 0 obj +<< +/C /A4 +/K 121 +/P 1086 0 R +/Pg 8 0 R +/S /Span +>> +endobj +275 0 obj +<< +/C /A4 +/K 122 +/P 1086 0 R +/Pg 8 0 R +/S /Span +>> +endobj +276 0 obj +<< +/K 123 +/P 1087 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +277 0 obj +<< +/C /Pa2 +/K [124 125 126 278 0 R 128 129 130] +/P 204 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +278 0 obj +<< +/ActualText +/K 127 +/P 277 0 R +/Pg 9 0 R +/S /Span +>> +endobj +279 0 obj +<< +/C /Pa2 +/K [131 132 280 0 R 134 281 0 R 136 137 138 139 140] +/P 204 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +280 0 obj +<< +/ActualText +/K 133 +/P 279 0 R +/Pg 9 0 R +/S /Span +>> +endobj +281 0 obj +<< +/ActualText +/K 135 +/P 279 0 R +/Pg 9 0 R +/S /Span +>> +endobj +282 0 obj +<< +/C /Pa2 +/K [141 283 0 R 143 284 0 R 145 146 147 148 285 0 R 150] +/P 204 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +283 0 obj +<< +/ActualText +/K 142 +/P 282 0 R +/Pg 9 0 R +/S /Span +>> +endobj +284 0 obj +<< +/ActualText +/K 144 +/P 282 0 R +/Pg 9 0 R +/S /Span +>> +endobj +285 0 obj +<< +/ActualText +/K 149 +/P 282 0 R +/Pg 9 0 R +/S /Span +>> +endobj +286 0 obj +<< +/C /Pa2 +/K [151 152 153 287 0 R 155 156 157 158 159 160] +/P 204 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +287 0 obj +<< +/ActualText +/K 154 +/P 286 0 R +/Pg 9 0 R +/S /Span +>> +endobj +288 0 obj +<< +/C /Pa2 +/K [161 162 163 164 289 0 R 166 167 168 169 290 0 R 171 172 173] +/P 204 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +289 0 obj +<< +/ActualText +/K 165 +/P 288 0 R +/Pg 9 0 R +/S /Span +>> +endobj +290 0 obj +<< +/ActualText +/K 170 +/P 288 0 R +/Pg 9 0 R +/S /Span +>> +endobj +291 0 obj +<< +/C /Pa2 +/K [174 175 176 177 292 0 R 179 180 << +/MCID 181 +/Pg 10 0 R +/Type /MCR +>> << +/MCID 182 +/Pg 10 0 R +/Type /MCR +>> << +/MCID 183 +/Pg 10 0 R +/Type /MCR +>> << +/MCID 184 +/Pg 10 0 R +/Type /MCR +>> << +/MCID 185 +/Pg 10 0 R +/Type /MCR +>>] +/P 204 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +292 0 obj +<< +/ActualText +/K 178 +/P 291 0 R +/Pg 9 0 R +/S /Span +>> +endobj +293 0 obj +<< +/C /Pa2 +/K [186 187 188 189 190 191 192 193 194 294 0 R 196 197] +/P 204 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +294 0 obj +<< +/ActualText +/K 195 +/P 293 0 R +/Pg 10 0 R +/S /Span +>> +endobj +295 0 obj +<< +/C /Pa2 +/K [198 199 296 0 R 201 202] +/P 204 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +296 0 obj +<< +/ActualText +/K 200 +/P 295 0 R +/Pg 10 0 R +/S /Span +>> +endobj +297 0 obj +<< +/C /Pa1 +/K 203 +/P 204 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +298 0 obj +<< +/C /Pa9 +/K [204 205 299 0 R 207 300 0 R 209] +/P 204 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +299 0 obj +<< +/ActualText +/K 206 +/P 298 0 R +/Pg 10 0 R +/S /Span +>> +endobj +300 0 obj +<< +/ActualText +/K 208 +/P 298 0 R +/Pg 10 0 R +/S /Span +>> +endobj +301 0 obj +<< +/C /A4 +/K 210 +/P 1088 0 R +/Pg 10 0 R +/S /Span +>> +endobj +302 0 obj +<< +/C /A4 +/K 211 +/P 1088 0 R +/Pg 10 0 R +/S /Span +>> +endobj +303 0 obj +<< +/K 212 +/P 1089 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +304 0 obj +<< +/C /A4 +/K 213 +/P 1090 0 R +/Pg 10 0 R +/S /Span +>> +endobj +305 0 obj +<< +/C /A4 +/K 214 +/P 1090 0 R +/Pg 10 0 R +/S /Span +>> +endobj +306 0 obj +<< +/K 215 +/P 1091 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +307 0 obj +<< +/C /A4 +/K 216 +/P 1092 0 R +/Pg 10 0 R +/S /Span +>> +endobj +308 0 obj +<< +/C /A4 +/K 217 +/P 1092 0 R +/Pg 10 0 R +/S /Span +>> +endobj +309 0 obj +<< +/K 218 +/P 1093 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +310 0 obj +<< +/C /A4 +/K 219 +/P 1094 0 R +/Pg 10 0 R +/S /Span +>> +endobj +311 0 obj +<< +/C /A4 +/K 220 +/P 1094 0 R +/Pg 10 0 R +/S /Span +>> +endobj +312 0 obj +<< +/K 221 +/P 1095 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +313 0 obj +<< +/C /A4 +/K 222 +/P 1096 0 R +/Pg 10 0 R +/S /Span +>> +endobj +314 0 obj +<< +/C /A4 +/K 223 +/P 1096 0 R +/Pg 10 0 R +/S /Span +>> +endobj +315 0 obj +<< +/K 224 +/P 1097 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +316 0 obj +<< +/C /A4 +/K 225 +/P 1098 0 R +/Pg 10 0 R +/S /Span +>> +endobj +317 0 obj +<< +/C /A4 +/K 226 +/P 1098 0 R +/Pg 10 0 R +/S /Span +>> +endobj +318 0 obj +<< +/K 227 +/P 1099 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +319 0 obj +<< +/C /A4 +/K 228 +/P 1100 0 R +/Pg 10 0 R +/S /Span +>> +endobj +320 0 obj +<< +/C /A4 +/K 229 +/P 1100 0 R +/Pg 10 0 R +/S /Span +>> +endobj +321 0 obj +<< +/K 230 +/P 1101 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +322 0 obj +<< +/C /A4 +/K 231 +/P 1102 0 R +/Pg 10 0 R +/S /Span +>> +endobj +323 0 obj +<< +/C /A4 +/K 232 +/P 1102 0 R +/Pg 10 0 R +/S /Span +>> +endobj +324 0 obj +<< +/K 233 +/P 1103 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +325 0 obj +<< +/C /A4 +/K 234 +/P 1104 0 R +/Pg 10 0 R +/S /Span +>> +endobj +326 0 obj +<< +/C /A4 +/K 235 +/P 1104 0 R +/Pg 10 0 R +/S /Span +>> +endobj +327 0 obj +<< +/K 236 +/P 1105 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +328 0 obj +<< +/C /A4 +/K 237 +/P 1106 0 R +/Pg 10 0 R +/S /Span +>> +endobj +329 0 obj +<< +/C /A4 +/K 238 +/P 1106 0 R +/Pg 10 0 R +/S /Span +>> +endobj +330 0 obj +<< +/K 239 +/P 1107 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +331 0 obj +<< +/C /Pa1 +/K 240 +/P 204 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +332 0 obj +<< +/C /Pa9 +/K [241 242 333 0 R 244] +/P 204 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +333 0 obj +<< +/ActualText +/K 243 +/P 332 0 R +/Pg 10 0 R +/S /Span +>> +endobj +334 0 obj +<< +/C /Pa2 +/K [245 246 247 335 0 R 249] +/P 204 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +335 0 obj +<< +/ActualText +/K 248 +/P 334 0 R +/Pg 11 0 R +/S /Span +>> +endobj +336 0 obj +<< +/C /A4 +/K 250 +/P 1108 0 R +/Pg 11 0 R +/S /Span +>> +endobj +337 0 obj +<< +/K [251 338 0 R 253] +/P 1109 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +338 0 obj +<< +/ActualText +/K 252 +/P 337 0 R +/Pg 11 0 R +/S /Span +>> +endobj +339 0 obj +<< +/C /A4 +/K 254 +/P 1110 0 R +/Pg 11 0 R +/S /Span +>> +endobj +340 0 obj +<< +/K [255 341 0 R 257] +/P 1111 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +341 0 obj +<< +/ActualText +/K 256 +/P 340 0 R +/Pg 11 0 R +/S /Span +>> +endobj +342 0 obj +<< +/C /A4 +/K 258 +/P 1112 0 R +/Pg 11 0 R +/S /Span +>> +endobj +343 0 obj +<< +/K 259 +/P 1113 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +344 0 obj +<< +/C /A4 +/K 260 +/P 1114 0 R +/Pg 11 0 R +/S /Span +>> +endobj +345 0 obj +<< +/K 261 +/P 1115 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +346 0 obj +<< +/C /A4 +/K 262 +/P 1116 0 R +/Pg 11 0 R +/S /Span +>> +endobj +347 0 obj +<< +/K 263 +/P 1117 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +348 0 obj +<< +/C /Pa9 +/K [264 349 0 R 266 267 268 269 270 271 272 273 274 275] +/P 204 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +349 0 obj +<< +/C /A5 +/K 265 +/P 348 0 R +/Pg 11 0 R +/S /Span +>> +endobj +350 0 obj +<< +/C /Pa13 +/K [276 351 0 R 352 0 R 353 0 R] +/P 204 0 R +/Pg 11 0 R +/S /Kastenhead_Versalien +>> +endobj +351 0 obj +<< +/ActualText +/K 277 +/P 350 0 R +/Pg 11 0 R +/S /Span +>> +endobj +352 0 obj +<< +/ActualText +/K 278 +/P 350 0 R +/Pg 11 0 R +/S /Span +>> +endobj +353 0 obj +<< +/C /A7 +/K 279 +/P 350 0 R +/Pg 11 0 R +/S /Span +>> +endobj +354 0 obj +<< +/C /Pa14 +/K [280 355 0 R 282 283 284] +/P 204 0 R +/Pg 11 0 R +/S /Kastenlauftext +>> +endobj +355 0 obj +<< +/ActualText +/K 281 +/P 354 0 R +/Pg 11 0 R +/S /Span +>> +endobj +356 0 obj +<< +/C /A7 +/K 285 +/P 1044 0 R +/Pg 11 0 R +/S /Span +>> +endobj +357 0 obj +<< +/C /Pa14 +/K [286 287 288 289 290 291 358 0 R] +/P 204 0 R +/Pg 11 0 R +/S /Kastenlauftext +>> +endobj +358 0 obj +<< +/ActualText +/K 292 +/P 357 0 R +/Pg 11 0 R +/S /Span +>> +endobj +359 0 obj +<< +/C /Pa14 +/K 293 +/P 204 0 R +/Pg 11 0 R +/S /Kastenlauftext +>> +endobj +360 0 obj +<< +/C /Pa14 +/K [294 295 296 297 298 299] +/P 204 0 R +/Pg 11 0 R +/S /Kastenlauftext +>> +endobj +361 0 obj +<< +/C /Pa14 +/K 300 +/P 204 0 R +/Pg 12 0 R +/S /Box_Header_2 +>> +endobj +362 0 obj +<< +/C /Pa14 +/K [301 302 303 304 305] +/P 204 0 R +/Pg 12 0 R +/S /Kastenlauftext +>> +endobj +363 0 obj +<< +/C /Pa14 +/K [306 307 308 309 310 364 0 R 312 313 314 315 316 317 318 319] +/P 204 0 R +/Pg 12 0 R +/S /Kastenlauftext +>> +endobj +364 0 obj +<< +/ActualText +/K 311 +/P 363 0 R +/Pg 12 0 R +/S /Span +>> +endobj +365 0 obj +<< +/C /Pa14 +/K [320 366 0 R 322 323 324] +/P 204 0 R +/Pg 12 0 R +/S /Kastenlauftext +>> +endobj +366 0 obj +<< +/ActualText +/K 321 +/P 365 0 R +/Pg 12 0 R +/S /Span +>> +endobj +367 0 obj +<< +/C /A5 +/K 325 +/P 368 0 R +/Pg 12 0 R +/S /Span +>> +endobj +368 0 obj +<< +/C /Pa2 +/K [367 0 R 326 327 328 369 0 R 330 370 0 R 332 333 334 335 336] +/P 204 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +369 0 obj +<< +/ActualText +/K 329 +/P 368 0 R +/Pg 12 0 R +/S /Span +>> +endobj +370 0 obj +<< +/ActualText +/K 331 +/P 368 0 R +/Pg 12 0 R +/S /Span +>> +endobj +371 0 obj +<< +/C /A5 +/K 337 +/P 372 0 R +/Pg 12 0 R +/S /Span +>> +endobj +372 0 obj +<< +/C /Pa2 +/K [371 0 R 338 339 340 373 0 R 342 374 0 R 344 345 346 347 348 349 375 0 R 351] +/P 204 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +373 0 obj +<< +/ActualText +/K 341 +/P 372 0 R +/Pg 12 0 R +/S /Span +>> +endobj +374 0 obj +<< +/ActualText +/K 343 +/P 372 0 R +/Pg 12 0 R +/S /Span +>> +endobj +375 0 obj +<< +/ActualText +/K 350 +/P 372 0 R +/Pg 12 0 R +/S /Span +>> +endobj +376 0 obj +<< +/C /A5 +/K 352 +/P 377 0 R +/Pg 13 0 R +/S /Span +>> +endobj +377 0 obj +<< +/C /Pa2 +/K [376 0 R 353 378 0 R 355 379 0 R 357 358 359 360 361 380 0 R 363 364 381 0 R 366 367 +368] +/P 204 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +378 0 obj +<< +/ActualText +/K 354 +/P 377 0 R +/Pg 13 0 R +/S /Span +>> +endobj +379 0 obj +<< +/ActualText +/K 356 +/P 377 0 R +/Pg 13 0 R +/S /Span +>> +endobj +380 0 obj +<< +/ActualText +/K 362 +/P 377 0 R +/Pg 13 0 R +/S /Span +>> +endobj +381 0 obj +<< +/ActualText +/K 365 +/P 377 0 R +/Pg 13 0 R +/S /Span +>> +endobj +382 0 obj +<< +/C /Pa1 +/K [369 383 0 R 371] +/P 204 0 R +/Pg 13 0 R +/S /Zwischenhead_1 +>> +endobj +383 0 obj +<< +/ActualText +/K 370 +/P 382 0 R +/Pg 13 0 R +/S /Span +>> +endobj +384 0 obj +<< +/C /Pa9 +/K [372 385 0 R 374 375 386 0 R 377 378 379 380] +/P 204 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +385 0 obj +<< +/ActualText +/K 373 +/P 384 0 R +/Pg 13 0 R +/S /Span +>> +endobj +386 0 obj +<< +/ActualText +/K 376 +/P 384 0 R +/Pg 13 0 R +/S /Span +>> +endobj +387 0 obj +<< +/C /Pa2 +/K [381 382] +/P 204 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +388 0 obj +<< +/C /Pa9 +/K [383 384 389 0 R 386 387 388 389] +/P 204 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +389 0 obj +<< +/ActualText +/K 385 +/P 388 0 R +/Pg 13 0 R +/S /Span +>> +endobj +390 0 obj +<< +/C /Pa2 +/K [390 391 0 R 392 392 0 R 394 395 396 393 0 R 398 394 0 R 400 401 402] +/P 204 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +391 0 obj +<< +/ActualText +/K 391 +/P 390 0 R +/Pg 13 0 R +/S /Span +>> +endobj +392 0 obj +<< +/ActualText +/K 393 +/P 390 0 R +/Pg 13 0 R +/S /Span +>> +endobj +393 0 obj +<< +/ActualText +/K 397 +/P 390 0 R +/Pg 13 0 R +/S /Span +>> +endobj +394 0 obj +<< +/ActualText +/K 399 +/P 390 0 R +/Pg 13 0 R +/S /Span +>> +endobj +395 0 obj +<< +/C /Pa9 +/K [403 396 0 R 405 406 397 0 R 408 398 0 R << +/MCID 410 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 411 +/Pg 14 0 R +/Type /MCR +>>] +/P 204 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +396 0 obj +<< +/ActualText +/K 404 +/P 395 0 R +/Pg 13 0 R +/S /Span +>> +endobj +397 0 obj +<< +/ActualText +/K 407 +/P 395 0 R +/Pg 13 0 R +/S /Span +>> +endobj +398 0 obj +<< +/ActualText +/K 409 +/P 395 0 R +/Pg 13 0 R +/S /Span +>> +endobj +399 0 obj +<< +/C /A4 +/K 412 +/P 1118 0 R +/Pg 14 0 R +/S /Span +>> +endobj +400 0 obj +<< +/C /A4 +/K 413 +/P 1118 0 R +/Pg 14 0 R +/S /Span +>> +endobj +401 0 obj +<< +/K [414 402 0 R 403 0 R] +/P 1119 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +402 0 obj +<< +/C /A5 +/K 415 +/P 401 0 R +/Pg 14 0 R +/S /Span +>> +endobj +403 0 obj +<< +/C /A5 +/K 416 +/P 401 0 R +/Pg 14 0 R +/S /Span +>> +endobj +404 0 obj +<< +/C /A4 +/K 417 +/P 1120 0 R +/Pg 14 0 R +/S /Span +>> +endobj +405 0 obj +<< +/C /A4 +/K 418 +/P 1120 0 R +/Pg 14 0 R +/S /Span +>> +endobj +406 0 obj +<< +/K [419 407 0 R 408 0 R] +/P 1121 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +407 0 obj +<< +/C /A5 +/K 420 +/P 406 0 R +/Pg 14 0 R +/S /Span +>> +endobj +408 0 obj +<< +/C /A5 +/K 421 +/P 406 0 R +/Pg 14 0 R +/S /Span +>> +endobj +409 0 obj +<< +/C /A4 +/K 422 +/P 1122 0 R +/Pg 14 0 R +/S /Span +>> +endobj +410 0 obj +<< +/C /A4 +/K 423 +/P 1122 0 R +/Pg 14 0 R +/S /Span +>> +endobj +411 0 obj +<< +/K [424 412 0 R 413 0 R 414 0 R] +/P 1123 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +412 0 obj +<< +/C /A5 +/K 425 +/P 411 0 R +/Pg 14 0 R +/S /Span +>> +endobj +413 0 obj +<< +/C /A5 +/K 426 +/P 411 0 R +/Pg 14 0 R +/S /Span +>> +endobj +414 0 obj +<< +/C /A5 +/K 427 +/P 411 0 R +/Pg 14 0 R +/S /Span +>> +endobj +415 0 obj +<< +/C /Pa2 +/K 428 +/P 204 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +416 0 obj +<< +/C /A4 +/K 429 +/P 1124 0 R +/Pg 14 0 R +/S /Span +>> +endobj +417 0 obj +<< +/C /A4 +/K 430 +/P 1124 0 R +/Pg 14 0 R +/S /Span +>> +endobj +418 0 obj +<< +/K [431 419 0 R] +/P 1125 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +419 0 obj +<< +/C /A5 +/K 432 +/P 418 0 R +/Pg 14 0 R +/S /Span +>> +endobj +420 0 obj +<< +/C /A4 +/K 433 +/P 1126 0 R +/Pg 14 0 R +/S /Span +>> +endobj +421 0 obj +<< +/C /A4 +/K 434 +/P 1126 0 R +/Pg 14 0 R +/S /Span +>> +endobj +422 0 obj +<< +/K [435 423 0 R 424 0 R] +/P 1127 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +423 0 obj +<< +/C /A5 +/K 436 +/P 422 0 R +/Pg 14 0 R +/S /Span +>> +endobj +424 0 obj +<< +/C /A5 +/K 437 +/P 422 0 R +/Pg 14 0 R +/S /Span +>> +endobj +425 0 obj +<< +/C /A4 +/K 438 +/P 1128 0 R +/Pg 14 0 R +/S /Span +>> +endobj +426 0 obj +<< +/C /A4 +/K 439 +/P 1128 0 R +/Pg 14 0 R +/S /Span +>> +endobj +427 0 obj +<< +/K [440 428 0 R 429 0 R 430 0 R] +/P 1129 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +428 0 obj +<< +/C /A5 +/K 441 +/P 427 0 R +/Pg 14 0 R +/S /Span +>> +endobj +429 0 obj +<< +/ActualText +/C /A5 +/K 442 +/P 427 0 R +/Pg 14 0 R +/S /Span +>> +endobj +430 0 obj +<< +/C /A5 +/K 443 +/P 427 0 R +/Pg 14 0 R +/S /Span +>> +endobj +431 0 obj +<< +/C /Pa2 +/K [444 445 432 0 R 447 433 0 R 449 450] +/P 204 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +432 0 obj +<< +/ActualText +/K 446 +/P 431 0 R +/Pg 14 0 R +/S /Span +>> +endobj +433 0 obj +<< +/ActualText +/K 448 +/P 431 0 R +/Pg 14 0 R +/S /Span +>> +endobj +434 0 obj +<< +/C /Pa2 +/K [451 435 0 R 453 454 455 436 0 R 457 458 437 0 R 460 461 438 0 R 463] +/P 204 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +435 0 obj +<< +/ActualText +/K 452 +/P 434 0 R +/Pg 14 0 R +/S /Span +>> +endobj +436 0 obj +<< +/ActualText +/K 456 +/P 434 0 R +/Pg 14 0 R +/S /Span +>> +endobj +437 0 obj +<< +/ActualText +/K 459 +/P 434 0 R +/Pg 14 0 R +/S /Span +>> +endobj +438 0 obj +<< +/ActualText +/K 462 +/P 434 0 R +/Pg 14 0 R +/S /Span +>> +endobj +439 0 obj +<< +/C /Pa2 +/K [464 440 0 R 466 467 468 469 441 0 R 471 472 442 0 R 474 475 476 477 478 479 +480 481] +/P 204 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +440 0 obj +<< +/ActualText +/K 465 +/P 439 0 R +/Pg 14 0 R +/S /Span +>> +endobj +441 0 obj +<< +/ActualText +/K 470 +/P 439 0 R +/Pg 14 0 R +/S /Span +>> +endobj +442 0 obj +<< +/ActualText +/K 473 +/P 439 0 R +/Pg 14 0 R +/S /Span +>> +endobj +443 0 obj +<< +/C /Pa2 +/K [482 483 484 485 486 487 488 489 490 444 0 R 492 493 494 495 496 497] +/P 204 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +444 0 obj +<< +/ActualText +/K 491 +/P 443 0 R +/Pg 15 0 R +/S /Span +>> +endobj +445 0 obj +<< +/C /Pa2 +/K [498 499 500 501 446 0 R 503 447 0 R 505 506 507 508] +/P 204 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +446 0 obj +<< +/ActualText +/K 502 +/P 445 0 R +/Pg 15 0 R +/S /Span +>> +endobj +447 0 obj +<< +/ActualText +/K 504 +/P 445 0 R +/Pg 15 0 R +/S /Span +>> +endobj +448 0 obj +<< +/C /Pa2 +/K [509 510 511 512 449 0 R 514 450 0 R 516 517 451 0 R 519 520 452 0 R 522 523 453 0 R +525 526 527 528 454 0 R 530 531] +/P 204 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +449 0 obj +<< +/ActualText +/K 513 +/P 448 0 R +/Pg 15 0 R +/S /Span +>> +endobj +450 0 obj +<< +/ActualText +/K 515 +/P 448 0 R +/Pg 15 0 R +/S /Span +>> +endobj +451 0 obj +<< +/ActualText +/K 518 +/P 448 0 R +/Pg 15 0 R +/S /Span +>> +endobj +452 0 obj +<< +/ActualText +/K 521 +/P 448 0 R +/Pg 15 0 R +/S /Span +>> +endobj +453 0 obj +<< +/ActualText +/K 524 +/P 448 0 R +/Pg 15 0 R +/S /Span +>> +endobj +454 0 obj +<< +/ActualText +/K 529 +/P 448 0 R +/Pg 15 0 R +/S /Span +>> +endobj +455 0 obj +<< +/C /Pa1 +/K 532 +/P 204 0 R +/Pg 16 0 R +/S /Zwischenhead_1 +>> +endobj +456 0 obj +<< +/C /Pa9 +/K [533 457 0 R 535 458 0 R 537] +/P 204 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +457 0 obj +<< +/ActualText +/K 534 +/P 456 0 R +/Pg 16 0 R +/S /Span +>> +endobj +458 0 obj +<< +/ActualText +/K 536 +/P 456 0 R +/Pg 16 0 R +/S /Span +>> +endobj +459 0 obj +<< +/C /Pa2 +/K [538 539 540 460 0 R 542 543] +/P 204 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +460 0 obj +<< +/ActualText +/K 541 +/P 459 0 R +/Pg 16 0 R +/S /Span +>> +endobj +461 0 obj +<< +/C /Pa2 +/K [544 545 546 547] +/P 204 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +462 0 obj +<< +/C /Pa2 +/K [548 549 550 551 552 553 554] +/P 204 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +463 0 obj +<< +/C /Pa2 +/K [555 464 0 R 557 558 465 0 R 560 466 0 R 562 563 564] +/P 204 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +464 0 obj +<< +/ActualText +/K 556 +/P 463 0 R +/Pg 16 0 R +/S /Span +>> +endobj +465 0 obj +<< +/ActualText +/K 559 +/P 463 0 R +/Pg 16 0 R +/S /Span +>> +endobj +466 0 obj +<< +/ActualText +/K 561 +/P 463 0 R +/Pg 16 0 R +/S /Span +>> +endobj +467 0 obj +<< +/C /A4 +/K 565 +/P 1130 0 R +/Pg 16 0 R +/S /Span +>> +endobj +468 0 obj +<< +/C /A4 +/K 566 +/P 1130 0 R +/Pg 16 0 R +/S /Span +>> +endobj +469 0 obj +<< +/K [567 568] +/P 1131 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +470 0 obj +<< +/C /A4 +/K 569 +/P 1132 0 R +/Pg 16 0 R +/S /Span +>> +endobj +471 0 obj +<< +/C /A4 +/K 570 +/P 1132 0 R +/Pg 16 0 R +/S /Span +>> +endobj +472 0 obj +<< +/K 571 +/P 1133 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +473 0 obj +<< +/C /A4 +/K 572 +/P 1134 0 R +/Pg 16 0 R +/S /Span +>> +endobj +474 0 obj +<< +/C /A4 +/K 573 +/P 1134 0 R +/Pg 16 0 R +/S /Span +>> +endobj +475 0 obj +<< +/K 574 +/P 1135 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +476 0 obj +<< +/C /A4 +/K 575 +/P 1136 0 R +/Pg 16 0 R +/S /Span +>> +endobj +477 0 obj +<< +/C /A4 +/K 576 +/P 1136 0 R +/Pg 16 0 R +/S /Span +>> +endobj +478 0 obj +<< +/K 577 +/P 1137 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +479 0 obj +<< +/C /A4 +/K 578 +/P 1138 0 R +/Pg 16 0 R +/S /Span +>> +endobj +480 0 obj +<< +/C /A4 +/K 579 +/P 1138 0 R +/Pg 16 0 R +/S /Span +>> +endobj +481 0 obj +<< +/K 580 +/P 1139 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +482 0 obj +<< +/C /Pa2 +/K [581 582 483 0 R 584 484 0 R 586 587 588] +/P 204 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +483 0 obj +<< +/ActualText +/K 583 +/P 482 0 R +/Pg 16 0 R +/S /Span +>> +endobj +484 0 obj +<< +/ActualText +/K 585 +/P 482 0 R +/Pg 16 0 R +/S /Span +>> +endobj +485 0 obj +<< +/C /Pa2 +/K [589 486 0 R 591 592 593 594] +/P 204 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +486 0 obj +<< +/ActualText +/K 590 +/P 485 0 R +/Pg 16 0 R +/S /Span +>> +endobj +487 0 obj +<< +/C /Pa2 +/K [595 488 0 R 597 598 489 0 R 600 601 602] +/P 204 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +488 0 obj +<< +/ActualText +/K 596 +/P 487 0 R +/Pg 17 0 R +/S /Span +>> +endobj +489 0 obj +<< +/ActualText +/K 599 +/P 487 0 R +/Pg 17 0 R +/S /Span +>> +endobj +490 0 obj +<< +/C /Pa2 +/K [603 604 605 606 607 608 609] +/P 204 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +491 0 obj +<< +/C /Pa2 +/K [610 492 0 R 612 613 614 615 616 617 493 0 R 619 620 494 0 R 622 623 495 0 R 625 +626 627 628 496 0 R 630 631 497 0 R 633 498 0 R 635] +/P 204 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +492 0 obj +<< +/ActualText +/K 611 +/P 491 0 R +/Pg 17 0 R +/S /Span +>> +endobj +493 0 obj +<< +/ActualText +/K 618 +/P 491 0 R +/Pg 17 0 R +/S /Span +>> +endobj +494 0 obj +<< +/ActualText +/K 621 +/P 491 0 R +/Pg 17 0 R +/S /Span +>> +endobj +495 0 obj +<< +/ActualText +/K 624 +/P 491 0 R +/Pg 17 0 R +/S /Span +>> +endobj +496 0 obj +<< +/ActualText +/K 629 +/P 491 0 R +/Pg 17 0 R +/S /Span +>> +endobj +497 0 obj +<< +/ActualText +/K 632 +/P 491 0 R +/Pg 17 0 R +/S /Span +>> +endobj +498 0 obj +<< +/ActualText +/K 634 +/P 491 0 R +/Pg 17 0 R +/S /Span +>> +endobj +499 0 obj +<< +/C /Pa2 +/K [636 637 638 500 0 R 640 641 642 643 501 0 R 645 502 0 R 647] +/P 204 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +500 0 obj +<< +/ActualText +/K 639 +/P 499 0 R +/Pg 17 0 R +/S /Span +>> +endobj +501 0 obj +<< +/ActualText +/K 644 +/P 499 0 R +/Pg 17 0 R +/S /Span +>> +endobj +502 0 obj +<< +/ActualText +/K 646 +/P 499 0 R +/Pg 17 0 R +/S /Span +>> +endobj +503 0 obj +<< +/C /Pa2 +/K [648 649 650 504 0 R 652 653 654 << +/MCID 655 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 656 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 657 +/Pg 18 0 R +/Type /MCR +>>] +/P 204 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +504 0 obj +<< +/ActualText +/K 651 +/P 503 0 R +/Pg 17 0 R +/S /Span +>> +endobj +505 0 obj +<< +/C /Pa2 +/K [658 659 660 661 662 663 664 665 666 506 0 R 668 669 670 507 0 R 672] +/P 204 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +506 0 obj +<< +/ActualText +/K 667 +/P 505 0 R +/Pg 18 0 R +/S /Span +>> +endobj +507 0 obj +<< +/ActualText +/K 671 +/P 505 0 R +/Pg 18 0 R +/S /Span +>> +endobj +508 0 obj +<< +/C /Pa2 +/K [673 674 675 676 677 678 509 0 R 680 681 682 683] +/P 204 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +509 0 obj +<< +/ActualText +/K 679 +/P 508 0 R +/Pg 18 0 R +/S /Span +>> +endobj +510 0 obj +<< +/C /Pa2 +/K [684 685 686 687 511 0 R 689 690 691 692 693 694 695 696 697 698 512 0 R +700] +/P 204 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +511 0 obj +<< +/ActualText +/K 688 +/P 510 0 R +/Pg 18 0 R +/S /Span +>> +endobj +512 0 obj +<< +/ActualText +/K 699 +/P 510 0 R +/Pg 18 0 R +/S /Span +>> +endobj +513 0 obj +<< +/C /Pa2 +/K [701 514 0 R 703 515 0 R 705] +/P 204 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +514 0 obj +<< +/ActualText +/K 702 +/P 513 0 R +/Pg 18 0 R +/S /Span +>> +endobj +515 0 obj +<< +/ActualText +/K 704 +/P 513 0 R +/Pg 18 0 R +/S /Span +>> +endobj +516 0 obj +<< +/C /Pa15 +/K [706 707 517 0 R 709 518 0 R 711] +/P 205 0 R +/Pg 18 0 R +/S /Einklinker-Text__rec +>> +endobj +517 0 obj +<< +/ActualText +/K 708 +/P 516 0 R +/Pg 18 0 R +/S /Span +>> +endobj +518 0 obj +<< +/ActualText +/K 710 +/P 516 0 R +/Pg 18 0 R +/S /Span +>> +endobj +519 0 obj +<< +/C /Pa1 +/K 712 +/P 204 0 R +/Pg 19 0 R +/S /Zwischenhead_1 +>> +endobj +520 0 obj +<< +/C /Pa9 +/K [713 714 715 716 717 718 719 720 721] +/P 204 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +521 0 obj +<< +/C /Pa2 +/K [722 723 724 522 0 R 726 523 0 R 728] +/P 204 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +522 0 obj +<< +/ActualText +/K 725 +/P 521 0 R +/Pg 19 0 R +/S /Span +>> +endobj +523 0 obj +<< +/ActualText +/K 727 +/P 521 0 R +/Pg 19 0 R +/S /Span +>> +endobj +524 0 obj +<< +/C /Pa16 +/K 729 +/P 204 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +525 0 obj +<< +/C /Pa9 +/K [730 731 732 526 0 R 734 735 736 737 738] +/P 204 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +526 0 obj +<< +/ActualText +/K 733 +/P 525 0 R +/Pg 19 0 R +/S /Span +>> +endobj +527 0 obj +<< +/C /Pa2 +/K [739 740 741 742 743 744 745 746 747] +/P 204 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +528 0 obj +<< +/C /Pa2 +/K [748 529 0 R 750 751 752 753 754 530 0 R 756 757 758 759 760 761] +/P 204 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +529 0 obj +<< +/ActualText +/K 749 +/P 528 0 R +/Pg 19 0 R +/S /Span +>> +endobj +530 0 obj +<< +/ActualText +/K 755 +/P 528 0 R +/Pg 19 0 R +/S /Span +>> +endobj +531 0 obj +<< +/C /Pa2 +/K [762 763 532 0 R 765 766 767 768 769 770] +/P 204 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +532 0 obj +<< +/ActualText +/K 764 +/P 531 0 R +/Pg 20 0 R +/S /Span +>> +endobj +533 0 obj +<< +/C /Pa2 +/K [771 772 773 534 0 R 775 535 0 R 777 778 779 780 781 782 783 784] +/P 204 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +534 0 obj +<< +/ActualText +/K 774 +/P 533 0 R +/Pg 20 0 R +/S /Span +>> +endobj +535 0 obj +<< +/ActualText +/K 776 +/P 533 0 R +/Pg 20 0 R +/S /Span +>> +endobj +536 0 obj +<< +/C /Pa16 +/K 785 +/P 204 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +537 0 obj +<< +/C /Pa9 +/K [786 787 538 0 R 789 790 791 792] +/P 204 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +538 0 obj +<< +/ActualText +/K 788 +/P 537 0 R +/Pg 20 0 R +/S /Span +>> +endobj +539 0 obj +<< +/C /Pa2 +/K [793 794 795 796 540 0 R 798 799 541 0 R 801 802 803] +/P 204 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +540 0 obj +<< +/ActualText +/K 797 +/P 539 0 R +/Pg 20 0 R +/S /Span +>> +endobj +541 0 obj +<< +/ActualText +/K 800 +/P 539 0 R +/Pg 20 0 R +/S /Span +>> +endobj +542 0 obj +<< +/C /Pa2 +/K [804 805 806 807 808 809 810] +/P 204 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +543 0 obj +<< +/C /Pa2 +/K [811 812 813 544 0 R 815 816] +/P 204 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +544 0 obj +<< +/ActualText +/K 814 +/P 543 0 R +/Pg 20 0 R +/S /Span +>> +endobj +545 0 obj +<< +/C /Pa1 +/K 817 +/P 204 0 R +/Pg 21 0 R +/S /Zwischenhead_1 +>> +endobj +546 0 obj +<< +/C /Pa9 +/K [818 819 820 821 822 547 0 R 824 548 0 R 826 827 828 829 830 831] +/P 204 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +547 0 obj +<< +/ActualText +/K 823 +/P 546 0 R +/Pg 21 0 R +/S /Span +>> +endobj +548 0 obj +<< +/ActualText +/K 825 +/P 546 0 R +/Pg 21 0 R +/S /Span +>> +endobj +549 0 obj +<< +/C /Pa16 +/K 832 +/P 204 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +550 0 obj +<< +/C /Pa9 +/K [833 551 0 R 835 836 552 0 R 838 839] +/P 204 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +551 0 obj +<< +/ActualText +/K 834 +/P 550 0 R +/Pg 21 0 R +/S /Span +>> +endobj +552 0 obj +<< +/ActualText +/K 837 +/P 550 0 R +/Pg 21 0 R +/S /Span +>> +endobj +553 0 obj +<< +/C /Pa2 +/K [840 841 842 554 0 R 844 845 846 847 555 0 R 849] +/P 204 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +554 0 obj +<< +/ActualText +/K 843 +/P 553 0 R +/Pg 21 0 R +/S /Span +>> +endobj +555 0 obj +<< +/ActualText +/K 848 +/P 553 0 R +/Pg 21 0 R +/S /Span +>> +endobj +556 0 obj +<< +/C /Pa16 +/K 850 +/P 204 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +557 0 obj +<< +/C /Pa9 +/K [851 852 558 0 R 854] +/P 204 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +558 0 obj +<< +/ActualText +/K 853 +/P 557 0 R +/Pg 21 0 R +/S /Span +>> +endobj +559 0 obj +<< +/C /Pa2 +/K [855 856] +/P 204 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +560 0 obj +<< +/C /A4 +/K 857 +/P 1140 0 R +/Pg 21 0 R +/S /Span +>> +endobj +561 0 obj +<< +/C /A4 +/K 858 +/P 1140 0 R +/Pg 21 0 R +/S /Span +>> +endobj +562 0 obj +<< +/K [859 860 861 862 863 864 865 866 867] +/P 1141 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +563 0 obj +<< +/C /A4 +/K 1239 +/P 1142 0 R +/Pg 25 0 R +/S /Span +>> +endobj +564 0 obj +<< +/C /A4 +/K 1240 +/P 1142 0 R +/Pg 25 0 R +/S /Span +>> +endobj +565 0 obj +<< +/K [1241 1242 566 0 R 1244 567 0 R 1246 1247 1248] +/P 1143 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +566 0 obj +<< +/ActualText +/K 1243 +/P 565 0 R +/Pg 25 0 R +/S /Span +>> +endobj +567 0 obj +<< +/ActualText +/K 1245 +/P 565 0 R +/Pg 25 0 R +/S /Span +>> +endobj +568 0 obj +<< +/C /A4 +/K 1249 +/P 1144 0 R +/Pg 25 0 R +/S /Span +>> +endobj +569 0 obj +<< +/C /A4 +/K 1250 +/P 1144 0 R +/Pg 25 0 R +/S /Span +>> +endobj +570 0 obj +<< +/K [1251 1252 571 0 R 1254 1255 1256 572 0 R 1258 1259 1260] +/P 1145 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +571 0 obj +<< +/ActualText +/K 1253 +/P 570 0 R +/Pg 25 0 R +/S /Span +>> +endobj +572 0 obj +<< +/ActualText +/K 1257 +/P 570 0 R +/Pg 25 0 R +/S /Span +>> +endobj +573 0 obj +<< +/C /Pa2 +/K [1261 1262 574 0 R 1264 1265 1266] +/P 204 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +574 0 obj +<< +/ActualText +/K 1263 +/P 573 0 R +/Pg 25 0 R +/S /Span +>> +endobj +575 0 obj +<< +/C /Pa2 +/K [1267 576 0 R 1269 1270 1271] +/P 204 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +576 0 obj +<< +/ActualText +/K 1268 +/P 575 0 R +/Pg 25 0 R +/S /Span +>> +endobj +577 0 obj +<< +/C /Pa1 +/K 1272 +/P 204 0 R +/Pg 25 0 R +/S /Zwischenhead_1 +>> +endobj +578 0 obj +<< +/C /Pa9 +/K [1273 579 0 R 1275 580 0 R 1277 1278] +/P 204 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +579 0 obj +<< +/ActualText +/K 1274 +/P 578 0 R +/Pg 25 0 R +/S /Span +>> +endobj +580 0 obj +<< +/ActualText +/K 1276 +/P 578 0 R +/Pg 25 0 R +/S /Span +>> +endobj +581 0 obj +<< +/C /A4 +/K 1279 +/P 1146 0 R +/Pg 25 0 R +/S /Span +>> +endobj +582 0 obj +<< +/K [1280 1281 1282] +/P 1147 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +583 0 obj +<< +/C /A4 +/K 1283 +/P 1148 0 R +/Pg 25 0 R +/S /Span +>> +endobj +584 0 obj +<< +/K 1284 +/P 1149 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +585 0 obj +<< +/C /A4 +/K 1285 +/P 1150 0 R +/Pg 25 0 R +/S /Span +>> +endobj +586 0 obj +<< +/K 1286 +/P 1151 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +587 0 obj +<< +/C /A4 +/K 1287 +/P 1152 0 R +/Pg 25 0 R +/S /Span +>> +endobj +588 0 obj +<< +/K 1288 +/P 1153 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +589 0 obj +<< +/C /A4 +/K 1289 +/P 1154 0 R +/Pg 25 0 R +/S /Span +>> +endobj +590 0 obj +<< +/K 1290 +/P 1155 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +591 0 obj +<< +/C /Pa9 +/K [1291 592 0 R 1293 1294] +/P 204 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +592 0 obj +<< +/ActualText +/K 1292 +/P 591 0 R +/Pg 25 0 R +/S /Span +>> +endobj +593 0 obj +<< +/C /Pa2 +/K [1295 1296 594 0 R 1298 595 0 R 1300] +/P 204 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +594 0 obj +<< +/ActualText +/K 1297 +/P 593 0 R +/Pg 25 0 R +/S /Span +>> +endobj +595 0 obj +<< +/ActualText +/K 1299 +/P 593 0 R +/Pg 25 0 R +/S /Span +>> +endobj +596 0 obj +<< +/C /Pa1 +/K 1301 +/P 204 0 R +/Pg 26 0 R +/S /Zwischenhead_1 +>> +endobj +597 0 obj +<< +/C /Pa9 +/K [1302 598 0 R 1304 1305 1306] +/P 204 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +598 0 obj +<< +/ActualText +/K 1303 +/P 597 0 R +/Pg 26 0 R +/S /Span +>> +endobj +599 0 obj +<< +/C /Pa16 +/K 1307 +/P 204 0 R +/Pg 26 0 R +/S /Zwischenhead_2 +>> +endobj +600 0 obj +<< +/C /Pa9 +/K [1308 1309 1310 1311 1312 1313 601 0 R 1315] +/P 204 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +601 0 obj +<< +/ActualText +/K 1314 +/P 600 0 R +/Pg 26 0 R +/S /Span +>> +endobj +602 0 obj +<< +/C /Pa2 +/K [1316 603 0 R 1318 1319 604 0 R 1321 1322 1323 605 0 R 1325 1326 1327 606 0 R 1329 1330 1331 +1332 1333] +/P 204 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +603 0 obj +<< +/ActualText +/K 1317 +/P 602 0 R +/Pg 26 0 R +/S /Span +>> +endobj +604 0 obj +<< +/ActualText +/K 1320 +/P 602 0 R +/Pg 26 0 R +/S /Span +>> +endobj +605 0 obj +<< +/ActualText +/K 1324 +/P 602 0 R +/Pg 26 0 R +/S /Span +>> +endobj +606 0 obj +<< +/ActualText +/K 1328 +/P 602 0 R +/Pg 26 0 R +/S /Span +>> +endobj +607 0 obj +<< +/C /Pa16 +/K 1334 +/P 204 0 R +/Pg 26 0 R +/S /Zwischenhead_2 +>> +endobj +608 0 obj +<< +/C /Pa23 +/K 1335 +/P 204 0 R +/Pg 26 0 R +/S /Zwischenhead_3 +>> +endobj +609 0 obj +<< +/C /Pa9 +/K [1336 610 0 R 1338 1339 611 0 R 1341 1342 1343 1344 1345] +/P 204 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +610 0 obj +<< +/ActualText +/K 1337 +/P 609 0 R +/Pg 26 0 R +/S /Span +>> +endobj +611 0 obj +<< +/ActualText +/K 1340 +/P 609 0 R +/Pg 26 0 R +/S /Span +>> +endobj +612 0 obj +<< +/C /Pa2 +/K [1346 1347 1348 613 0 R 1350 1351 << +/MCID 1352 +/Pg 27 0 R +/Type /MCR +>> << +/MCID 1353 +/Pg 27 0 R +/Type /MCR +>> << +/MCID 1354 +/Pg 27 0 R +/Type /MCR +>>] +/P 204 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +613 0 obj +<< +/ActualText +/K 1349 +/P 612 0 R +/Pg 26 0 R +/S /Span +>> +endobj +614 0 obj +<< +/C /Pa24 +/K 1355 +/P 204 0 R +/Pg 27 0 R +/S /Zwischenhead_3 +>> +endobj +615 0 obj +<< +/C /Pa9 +/K [1356 1357 1358 1359 1360 1361 1362 1363 616 0 R 1365 1366 1367 1368] +/P 204 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +616 0 obj +<< +/ActualText +/K 1364 +/P 615 0 R +/Pg 27 0 R +/S /Span +>> +endobj +617 0 obj +<< +/C /Pa24 +/K 1369 +/P 204 0 R +/Pg 27 0 R +/S /Zwischenhead_3 +>> +endobj +618 0 obj +<< +/C /Pa9 +/K [1370 1371 619 0 R 1373 1374 1375 1376] +/P 204 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +619 0 obj +<< +/ActualText +/K 1372 +/P 618 0 R +/Pg 27 0 R +/S /Span +>> +endobj +620 0 obj +<< +/C /Pa2 +/K [1377 621 0 R 1379 1380 1381 1382 622 0 R 1384 1385 1386 623 0 R 1388 624 0 R 1390 625 0 R 1392 +1393] +/P 204 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +621 0 obj +<< +/ActualText +/K 1378 +/P 620 0 R +/Pg 27 0 R +/S /Span +>> +endobj +622 0 obj +<< +/ActualText +/K 1383 +/P 620 0 R +/Pg 27 0 R +/S /Span +>> +endobj +623 0 obj +<< +/ActualText +/K 1387 +/P 620 0 R +/Pg 27 0 R +/S /Span +>> +endobj +624 0 obj +<< +/ActualText +/K 1389 +/P 620 0 R +/Pg 27 0 R +/S /Span +>> +endobj +625 0 obj +<< +/ActualText +/K 1391 +/P 620 0 R +/Pg 27 0 R +/S /Span +>> +endobj +626 0 obj +<< +/C /Pa2 +/K [1394 1395 1396 627 0 R 1398 628 0 R 1400 1401 1402 1403 1404 1405] +/P 204 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +627 0 obj +<< +/ActualText +/K 1397 +/P 626 0 R +/Pg 27 0 R +/S /Span +>> +endobj +628 0 obj +<< +/ActualText +/K 1399 +/P 626 0 R +/Pg 27 0 R +/S /Span +>> +endobj +629 0 obj +<< +/C /Pa15 +/K [1406 1407 1408] +/P 209 0 R +/Pg 27 0 R +/S /Absatzformat_2 +>> +endobj +630 0 obj +<< +/C /Pa2 +/K [1409 1410 631 0 R 1412 1413 1414] +/P 204 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +631 0 obj +<< +/ActualText +/K 1411 +/P 630 0 R +/Pg 28 0 R +/S /Span +>> +endobj +632 0 obj +<< +/C /Pa2 +/K [1415 633 0 R 1417 1418 1419 1420] +/P 204 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +633 0 obj +<< +/ActualText +/K 1416 +/P 632 0 R +/Pg 28 0 R +/S /Span +>> +endobj +634 0 obj +<< +/C /Pa16 +/K 1421 +/P 204 0 R +/Pg 28 0 R +/S /Zwischenhead_2 +>> +endobj +635 0 obj +<< +/C /Pa9 +/K [1422 1423 1424 636 0 R 1426 1427 1428 637 0 R 1430 1431 1432] +/P 204 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +636 0 obj +<< +/ActualText +/K 1425 +/P 635 0 R +/Pg 28 0 R +/S /Span +>> +endobj +637 0 obj +<< +/ActualText +/K 1429 +/P 635 0 R +/Pg 28 0 R +/S /Span +>> +endobj +638 0 obj +<< +/C /Pa2 +/K [1433 1434 1435 1436 1437 1438 1439] +/P 204 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +639 0 obj +<< +/C /Pa2 +/K [1440 1441 1442 640 0 R 1444 1445] +/P 204 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +640 0 obj +<< +/ActualText +/K 1443 +/P 639 0 R +/Pg 28 0 R +/S /Span +>> +endobj +641 0 obj +<< +/C /Pa16 +/K 1446 +/P 204 0 R +/Pg 28 0 R +/S /Zwischenhead_2 +>> +endobj +642 0 obj +<< +/C /Pa9 +/K [1447 1448 1449 1450 1451 1452 1453 1454 1455 1456] +/P 204 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +643 0 obj +<< +/C /Pa16 +/K 1457 +/P 204 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +644 0 obj +<< +/C /Pa9 +/K [1458 1459 645 0 R 1461 1462 1463 646 0 R 1465 1466] +/P 204 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +645 0 obj +<< +/ActualText +/K 1460 +/P 644 0 R +/Pg 29 0 R +/S /Span +>> +endobj +646 0 obj +<< +/ActualText +/K 1464 +/P 644 0 R +/Pg 29 0 R +/S /Span +>> +endobj +647 0 obj +<< +/C /Pa16 +/K 1467 +/P 204 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +648 0 obj +<< +/C /Pa23 +/K 1468 +/P 204 0 R +/Pg 29 0 R +/S /Zwischenhead_3 +>> +endobj +649 0 obj +<< +/C /Pa9 +/K [1469 1470 1471 1472 1473 1474 1475 650 0 R 1477 1478 1479 1480 651 0 R 1482 1483 1484 +1485] +/P 204 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +650 0 obj +<< +/ActualText +/K 1476 +/P 649 0 R +/Pg 29 0 R +/S /Span +>> +endobj +651 0 obj +<< +/ActualText +/K 1481 +/P 649 0 R +/Pg 29 0 R +/S /Span +>> +endobj +652 0 obj +<< +/C /Pa24 +/K 1486 +/P 204 0 R +/Pg 29 0 R +/S /Zwischenhead_3 +>> +endobj +653 0 obj +<< +/C /Pa9 +/K [1487 654 0 R 1489 655 0 R 1491 656 0 R 1493 1494 657 0 R 1496 1497 1498] +/P 204 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +654 0 obj +<< +/ActualText +/K 1488 +/P 653 0 R +/Pg 29 0 R +/S /Span +>> +endobj +655 0 obj +<< +/ActualText +/K 1490 +/P 653 0 R +/Pg 29 0 R +/S /Span +>> +endobj +656 0 obj +<< +/ActualText +/K 1492 +/P 653 0 R +/Pg 29 0 R +/S /Span +>> +endobj +657 0 obj +<< +/ActualText +/K 1495 +/P 653 0 R +/Pg 29 0 R +/S /Span +>> +endobj +658 0 obj +<< +/C /Pa2 +/K [1499 659 0 R 1501 1502 1503 1504 1505 1506] +/P 204 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +659 0 obj +<< +/ActualText +/K 1500 +/P 658 0 R +/Pg 29 0 R +/S /Span +>> +endobj +660 0 obj +<< +/C /A4 +/K 1507 +/P 1156 0 R +/Pg 29 0 R +/S /Span +>> +endobj +661 0 obj +<< +/C /A4 +/K 1508 +/P 1156 0 R +/Pg 29 0 R +/S /Span +>> +endobj +662 0 obj +<< +/K [1509 1510 1511] +/P 1157 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +663 0 obj +<< +/C /A4 +/K 1512 +/P 1158 0 R +/Pg 30 0 R +/S /Span +>> +endobj +664 0 obj +<< +/C /A4 +/K 1513 +/P 1158 0 R +/Pg 30 0 R +/S /Span +>> +endobj +665 0 obj +<< +/K [1514 1515 666 0 R 1517] +/P 1159 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +666 0 obj +<< +/ActualText +/K 1516 +/P 665 0 R +/Pg 30 0 R +/S /Span +>> +endobj +667 0 obj +<< +/C /A4 +/K 1518 +/P 1160 0 R +/Pg 30 0 R +/S /Span +>> +endobj +668 0 obj +<< +/C /A4 +/K 1519 +/P 1160 0 R +/Pg 30 0 R +/S /Span +>> +endobj +669 0 obj +<< +/K [1520 1521 1522] +/P 1161 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +670 0 obj +<< +/C /A4 +/K 1523 +/P 1162 0 R +/Pg 30 0 R +/S /Span +>> +endobj +671 0 obj +<< +/C /A4 +/K 1524 +/P 1162 0 R +/Pg 30 0 R +/S /Span +>> +endobj +672 0 obj +<< +/K [1525 673 0 R 1527 674 0 R 1529] +/P 1163 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +673 0 obj +<< +/ActualText +/K 1526 +/P 672 0 R +/Pg 30 0 R +/S /Span +>> +endobj +674 0 obj +<< +/ActualText +/K 1528 +/P 672 0 R +/Pg 30 0 R +/S /Span +>> +endobj +675 0 obj +<< +/C /A4 +/K 1530 +/P 1164 0 R +/Pg 30 0 R +/S /Span +>> +endobj +676 0 obj +<< +/C /A4 +/K 1531 +/P 1164 0 R +/Pg 30 0 R +/S /Span +>> +endobj +677 0 obj +<< +/K [1532 678 0 R 1534] +/P 1165 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +678 0 obj +<< +/ActualText +/K 1533 +/P 677 0 R +/Pg 30 0 R +/S /Span +>> +endobj +679 0 obj +<< +/C /Pa9 +/K [1535 1536 1537 680 0 R 1539 1540] +/P 204 0 R +/Pg 30 0 R +/S /Lauftext_1._Abs +>> +endobj +680 0 obj +<< +/ActualText +/K 1538 +/P 679 0 R +/Pg 30 0 R +/S /Span +>> +endobj +681 0 obj +<< +/C /Pa16 +/K 1541 +/P 204 0 R +/Pg 30 0 R +/S /Zwischenhead_2 +>> +endobj +682 0 obj +<< +/C /Pa9 +/K [1542 683 0 R 1544 1545 1546 1547 1548 1549 684 0 R 1551] +/P 204 0 R +/Pg 30 0 R +/S /Lauftext_1._Abs +>> +endobj +683 0 obj +<< +/ActualText +/K 1543 +/P 682 0 R +/Pg 30 0 R +/S /Span +>> +endobj +684 0 obj +<< +/ActualText +/K 1550 +/P 682 0 R +/Pg 30 0 R +/S /Span +>> +endobj +685 0 obj +<< +/C /Pa2 +/K [1552 686 0 R 1554 687 0 R 1556 688 0 R 1558 1559] +/P 204 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +686 0 obj +<< +/ActualText +/K 1553 +/P 685 0 R +/Pg 30 0 R +/S /Span +>> +endobj +687 0 obj +<< +/ActualText +/K 1555 +/P 685 0 R +/Pg 30 0 R +/S /Span +>> +endobj +688 0 obj +<< +/ActualText +/K 1557 +/P 685 0 R +/Pg 30 0 R +/S /Span +>> +endobj +689 0 obj +<< +/C /Pa2 +/K 1560 +/P 204 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +690 0 obj +<< +/C /A4 +/K 1561 +/P 1166 0 R +/Pg 30 0 R +/S /Span +>> +endobj +691 0 obj +<< +/C /A4 +/K 1562 +/P 1166 0 R +/Pg 30 0 R +/S /Span +>> +endobj +692 0 obj +<< +/C /A5 +/K 1563 +/P 693 0 R +/Pg 30 0 R +/S /Span +>> +endobj +693 0 obj +<< +/K [692 0 R 1564 1565 1566 1567 694 0 R 1569 695 0 R 1571] +/P 1167 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +694 0 obj +<< +/ActualText +/K 1568 +/P 693 0 R +/Pg 30 0 R +/S /Span +>> +endobj +695 0 obj +<< +/ActualText +/K 1570 +/P 693 0 R +/Pg 30 0 R +/S /Span +>> +endobj +696 0 obj +<< +/C /A4 +/K 1572 +/P 1168 0 R +/Pg 30 0 R +/S /Span +>> +endobj +697 0 obj +<< +/C /A4 +/K 1573 +/P 1168 0 R +/Pg 30 0 R +/S /Span +>> +endobj +698 0 obj +<< +/C /A5 +/K 1574 +/P 701 0 R +/Pg 30 0 R +/S /Span +>> +endobj +699 0 obj +<< +/C /A5 +/K 1575 +/P 701 0 R +/Pg 30 0 R +/S /Span +>> +endobj +700 0 obj +<< +/C /A5 +/K 1576 +/P 701 0 R +/Pg 30 0 R +/S /Span +>> +endobj +701 0 obj +<< +/K [698 0 R 699 0 R 700 0 R 1577 1578 1579 702 0 R 1581 1582 703 0 R 1584 1585] +/P 1169 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +702 0 obj +<< +/ActualText +/K 1580 +/P 701 0 R +/Pg 30 0 R +/S /Span +>> +endobj +703 0 obj +<< +/ActualText +/K 1583 +/P 701 0 R +/Pg 30 0 R +/S /Span +>> +endobj +704 0 obj +<< +/C /A4 +/K 1586 +/P 1170 0 R +/Pg 31 0 R +/S /Span +>> +endobj +705 0 obj +<< +/C /A4 +/K 1587 +/P 1170 0 R +/Pg 31 0 R +/S /Span +>> +endobj +706 0 obj +<< +/C /A5 +/K 1588 +/P 707 0 R +/Pg 31 0 R +/S /Span +>> +endobj +707 0 obj +<< +/K [706 0 R 1589 1590 1591 708 0 R 1593 1594 1595 1596 1597 1598 1599 1600 1601] +/P 1171 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +708 0 obj +<< +/ActualText +/K 1592 +/P 707 0 R +/Pg 31 0 R +/S /Span +>> +endobj +709 0 obj +<< +/C /Pa2 +/K [1602 710 0 R 1604 1605 1606 1607 1608 711 0 R 1610 1611 712 0 R 1613] +/P 204 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +710 0 obj +<< +/ActualText +/K 1603 +/P 709 0 R +/Pg 31 0 R +/S /Span +>> +endobj +711 0 obj +<< +/ActualText +/K 1609 +/P 709 0 R +/Pg 31 0 R +/S /Span +>> +endobj +712 0 obj +<< +/ActualText +/K 1612 +/P 709 0 R +/Pg 31 0 R +/S /Span +>> +endobj +713 0 obj +<< +/C /Pa2 +/K [1614 714 0 R 1616 1617 1618] +/P 204 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +714 0 obj +<< +/ActualText +/K 1615 +/P 713 0 R +/Pg 31 0 R +/S /Span +>> +endobj +715 0 obj +<< +/C /Pa16 +/K 1619 +/P 204 0 R +/Pg 31 0 R +/S /Zwischenhead_2 +>> +endobj +716 0 obj +<< +/C /Pa9 +/K [1620 1621 1622 1623 1624 717 0 R 1626 1627 1628 1629 1630 1631 1632] +/P 204 0 R +/Pg 31 0 R +/S /Lauftext_1._Abs +>> +endobj +717 0 obj +<< +/ActualText +/K 1625 +/P 716 0 R +/Pg 31 0 R +/S /Span +>> +endobj +718 0 obj +<< +/C /Pa16 +/K 1633 +/P 204 0 R +/Pg 31 0 R +/S /Zwischenhead_2 +>> +endobj +719 0 obj +<< +/C /Pa9 +/K [1634 1635 1636 1637 720 0 R << +/MCID 1639 +/Pg 32 0 R +/Type /MCR +>> << +/MCID 1640 +/Pg 32 0 R +/Type /MCR +>> << +/MCID 1641 +/Pg 32 0 R +/Type /MCR +>> << +/MCID 1642 +/Pg 32 0 R +/Type /MCR +>> << +/MCID 1643 +/Pg 32 0 R +/Type /MCR +>>] +/P 204 0 R +/Pg 31 0 R +/S /Lauftext_1._Abs +>> +endobj +720 0 obj +<< +/ActualText +/K 1638 +/P 719 0 R +/Pg 31 0 R +/S /Span +>> +endobj +721 0 obj +<< +/C /Pa16 +/K 1644 +/P 204 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +722 0 obj +<< +/C /Pa23 +/K 1645 +/P 204 0 R +/Pg 32 0 R +/S /Zwischenhead_3 +>> +endobj +723 0 obj +<< +/C /Pa9 +/K [1646 1647 724 0 R 1649 1650 725 0 R 1652 1653 1654 1655 1656 1657 1658] +/P 204 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +724 0 obj +<< +/ActualText +/K 1648 +/P 723 0 R +/Pg 32 0 R +/S /Span +>> +endobj +725 0 obj +<< +/ActualText +/K 1651 +/P 723 0 R +/Pg 32 0 R +/S /Span +>> +endobj +726 0 obj +<< +/C /Pa24 +/K 1659 +/P 204 0 R +/Pg 32 0 R +/S /Zwischenhead_3 +>> +endobj +727 0 obj +<< +/C /Pa9 +/K [1660 1661 1662 1663 728 0 R 1665 1666 1667 1668 729 0 R 1670 730 0 R 1672 731 0 R 1674] +/P 204 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +728 0 obj +<< +/ActualText +/K 1664 +/P 727 0 R +/Pg 32 0 R +/S /Span +>> +endobj +729 0 obj +<< +/ActualText +/K 1669 +/P 727 0 R +/Pg 32 0 R +/S /Span +>> +endobj +730 0 obj +<< +/ActualText +/K 1671 +/P 727 0 R +/Pg 32 0 R +/S /Span +>> +endobj +731 0 obj +<< +/ActualText +/K 1673 +/P 727 0 R +/Pg 32 0 R +/S /Span +>> +endobj +732 0 obj +<< +/C /Pa2 +/K [1675 1676 1677 733 0 R 1679 734 0 R 1681 1682 1683] +/P 204 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +733 0 obj +<< +/ActualText +/K 1678 +/P 732 0 R +/Pg 32 0 R +/S /Span +>> +endobj +734 0 obj +<< +/ActualText +/K 1680 +/P 732 0 R +/Pg 32 0 R +/S /Span +>> +endobj +735 0 obj +<< +/C /Pa24 +/K 1684 +/P 204 0 R +/Pg 32 0 R +/S /Zwischenhead_3 +>> +endobj +736 0 obj +<< +/C /Pa9 +/K [1685 1686 1687 1688 1689 737 0 R << +/MCID 1691 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1692 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1693 +/Pg 33 0 R +/Type /MCR +>> 738 0 R << +/MCID 1695 +/Pg 33 0 R +/Type /MCR +>> 739 0 R << +/MCID 1697 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1698 +/Pg 33 0 R +/Type /MCR +>>] +/P 204 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +737 0 obj +<< +/ActualText +/K 1690 +/P 736 0 R +/Pg 32 0 R +/S /Span +>> +endobj +738 0 obj +<< +/ActualText +/K 1694 +/P 736 0 R +/Pg 33 0 R +/S /Span +>> +endobj +739 0 obj +<< +/ActualText +/K 1696 +/P 736 0 R +/Pg 33 0 R +/S /Span +>> +endobj +740 0 obj +<< +/C /Pa24 +/K 1699 +/P 204 0 R +/Pg 33 0 R +/S /Zwischenhead_3 +>> +endobj +741 0 obj +<< +/C /Pa9 +/K [1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710] +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +742 0 obj +<< +/C /Pa16 +/K 1711 +/P 204 0 R +/Pg 33 0 R +/S /Zwischenhead_2 +>> +endobj +743 0 obj +<< +/C /Pa9 +/K 1712 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +744 0 obj +<< +/C /Pa9 +/K 1713 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +745 0 obj +<< +/C /Pa9 +/K 1714 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +746 0 obj +<< +/C /Pa9 +/K 1715 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +747 0 obj +<< +/C /Pa9 +/K 1716 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +748 0 obj +<< +/C /Pa9 +/K 1717 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +749 0 obj +<< +/C /Pa9 +/K 1718 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +750 0 obj +<< +/C /Pa9 +/K 1719 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +751 0 obj +<< +/C /Pa9 +/K 1720 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +752 0 obj +<< +/C /Pa9 +/K 1721 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +753 0 obj +<< +/C /Pa9 +/K 1722 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +754 0 obj +<< +/C /Pa9 +/K 1723 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +755 0 obj +<< +/C /Pa9 +/K 1724 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +756 0 obj +<< +/C /Pa9 +/K 1725 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +757 0 obj +<< +/C /Pa9 +/K 1726 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +758 0 obj +<< +/C /Pa9 +/K 1727 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +759 0 obj +<< +/C /Pa9 +/K 1728 +/P 204 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +760 0 obj +<< +/C /Pa17 +/K [868 869 761 0 R 871] +/P 1172 0 R +/Pg 22 0 R +/S /Tab._Versal_bold_wei +>> +endobj +761 0 obj +<< +/ActualText +/K 870 +/P 760 0 R +/Pg 22 0 R +/S /Span +>> +endobj +762 0 obj +<< +/C /Pa17 +/K 872 +/P 1173 0 R +/Pg 22 0 R +/S /Tab._Versal_bold_wei +>> +endobj +763 0 obj +<< +/C /Pa17 +/K 873 +/P 1173 0 R +/Pg 22 0 R +/S /Tab._Versal_bold_wei +>> +endobj +764 0 obj +<< +/C /Pa17 +/K [874 765 0 R 876] +/P 1174 0 R +/Pg 22 0 R +/S /Tab._Versal_bold_wei +>> +endobj +765 0 obj +<< +/ActualText +/K 875 +/P 764 0 R +/Pg 22 0 R +/S /Span +>> +endobj +766 0 obj +<< +/C /Pa17 +/K [877 767 0 R 879] +/P 1175 0 R +/Pg 22 0 R +/S /Tab._Versal_bold_wei +>> +endobj +767 0 obj +<< +/ActualText +/K 878 +/P 766 0 R +/Pg 22 0 R +/S /Span +>> +endobj +768 0 obj +<< +/C /Pa18 +/K 880 +/P 1176 0 R +/Pg 22 0 R +/S /Tab._Lauftext_light_ +>> +endobj +769 0 obj +<< +/C /A4 +/K 881 +/P 1177 0 R +/Pg 22 0 R +/S /Span +>> +endobj +770 0 obj +<< +/C /A4 +/K 882 +/P 1177 0 R +/Pg 22 0 R +/S /Span +>> +endobj +771 0 obj +<< +/K [883 884 885] +/P 1178 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +772 0 obj +<< +/C /A4 +/K 886 +/P 1179 0 R +/Pg 22 0 R +/S /Span +>> +endobj +773 0 obj +<< +/C /A4 +/K 887 +/P 1179 0 R +/Pg 22 0 R +/S /Span +>> +endobj +774 0 obj +<< +/K [888 889 890 891 892] +/P 1180 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +775 0 obj +<< +/C /A4 +/K 893 +/P 1181 0 R +/Pg 22 0 R +/S /Span +>> +endobj +776 0 obj +<< +/C /A4 +/K 894 +/P 1181 0 R +/Pg 22 0 R +/S /Span +>> +endobj +777 0 obj +<< +/K [895 778 0 R 897 898 899] +/P 1182 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +778 0 obj +<< +/ActualText +/K 896 +/P 777 0 R +/Pg 22 0 R +/S /Span +>> +endobj +779 0 obj +<< +/C /A4 +/K 900 +/P 1183 0 R +/Pg 22 0 R +/S /Span +>> +endobj +780 0 obj +<< +/C /A4 +/K 901 +/P 1183 0 R +/Pg 22 0 R +/S /Span +>> +endobj +781 0 obj +<< +/K [902 782 0 R 904 905 906] +/P 1184 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +782 0 obj +<< +/ActualText +/K 903 +/P 781 0 R +/Pg 22 0 R +/S /Span +>> +endobj +783 0 obj +<< +/C /A4 +/K 907 +/P 1185 0 R +/Pg 22 0 R +/S /Span +>> +endobj +784 0 obj +<< +/C /A4 +/K 908 +/P 1185 0 R +/Pg 22 0 R +/S /Span +>> +endobj +785 0 obj +<< +/K [909 786 0 R 911 912 787 0 R 914] +/P 1186 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +786 0 obj +<< +/ActualText +/K 910 +/P 785 0 R +/Pg 22 0 R +/S /Span +>> +endobj +787 0 obj +<< +/ActualText +/K 913 +/P 785 0 R +/Pg 22 0 R +/S /Span +>> +endobj +788 0 obj +<< +/C /A4 +/K 915 +/P 1187 0 R +/Pg 22 0 R +/S /Span +>> +endobj +789 0 obj +<< +/C /A4 +/K 916 +/P 1187 0 R +/Pg 22 0 R +/S /Span +>> +endobj +790 0 obj +<< +/K [917 918 919] +/P 1188 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +791 0 obj +<< +/C /A4 +/K 920 +/P 1189 0 R +/Pg 22 0 R +/S /Span +>> +endobj +792 0 obj +<< +/C /A4 +/K 921 +/P 1189 0 R +/Pg 22 0 R +/S /Span +>> +endobj +793 0 obj +<< +/K [922 923] +/P 1190 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +794 0 obj +<< +/C /A4 +/K 924 +/P 1191 0 R +/Pg 22 0 R +/S /Span +>> +endobj +795 0 obj +<< +/C /A4 +/K 925 +/P 1191 0 R +/Pg 22 0 R +/S /Span +>> +endobj +796 0 obj +<< +/K 926 +/P 1192 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +797 0 obj +<< +/C /A4 +/K 927 +/P 1193 0 R +/Pg 22 0 R +/S /Span +>> +endobj +798 0 obj +<< +/C /A4 +/K 928 +/P 1193 0 R +/Pg 22 0 R +/S /Span +>> +endobj +799 0 obj +<< +/K [929 930] +/P 1194 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +800 0 obj +<< +/C /Pa18 +/K [931 932 801 0 R 934] +/P 1195 0 R +/Pg 22 0 R +/S /Tab._Lauftext_light_ +>> +endobj +801 0 obj +<< +/ActualText +/K 933 +/P 800 0 R +/Pg 22 0 R +/S /Span +>> +endobj +802 0 obj +<< +/C /A4 +/K 935 +/P 1196 0 R +/Pg 22 0 R +/S /Span +>> +endobj +803 0 obj +<< +/C /A4 +/K 936 +/P 1196 0 R +/Pg 22 0 R +/S /Span +>> +endobj +804 0 obj +<< +/K [937 938 805 0 R 940 941 942] +/P 1197 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +805 0 obj +<< +/ActualText +/K 939 +/P 804 0 R +/Pg 22 0 R +/S /Span +>> +endobj +806 0 obj +<< +/C /A4 +/K 943 +/P 1198 0 R +/Pg 22 0 R +/S /Span +>> +endobj +807 0 obj +<< +/C /A4 +/K 944 +/P 1198 0 R +/Pg 22 0 R +/S /Span +>> +endobj +808 0 obj +<< +/K [945 946] +/P 1199 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +809 0 obj +<< +/C /A4 +/K 947 +/P 1200 0 R +/Pg 22 0 R +/S /Span +>> +endobj +810 0 obj +<< +/C /A4 +/K 948 +/P 1200 0 R +/Pg 22 0 R +/S /Span +>> +endobj +811 0 obj +<< +/K [949 950 812 0 R 952] +/P 1201 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +812 0 obj +<< +/ActualText +/K 951 +/P 811 0 R +/Pg 22 0 R +/S /Span +>> +endobj +813 0 obj +<< +/C /A4 +/K 953 +/P 1202 0 R +/Pg 22 0 R +/S /Span +>> +endobj +814 0 obj +<< +/C /A4 +/K 954 +/P 1202 0 R +/Pg 22 0 R +/S /Span +>> +endobj +815 0 obj +<< +/K [955 956 957 958 959 960 816 0 R 962] +/P 1203 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +816 0 obj +<< +/ActualText +/K 961 +/P 815 0 R +/Pg 22 0 R +/S /Span +>> +endobj +817 0 obj +<< +/C /A4 +/K 963 +/P 1204 0 R +/Pg 22 0 R +/S /Span +>> +endobj +818 0 obj +<< +/C /A4 +/K 964 +/P 1204 0 R +/Pg 22 0 R +/S /Span +>> +endobj +819 0 obj +<< +/K [965 820 0 R 967 968 969 970] +/P 1205 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +820 0 obj +<< +/ActualText +/K 966 +/P 819 0 R +/Pg 22 0 R +/S /Span +>> +endobj +821 0 obj +<< +/C /A4 +/K 971 +/P 1206 0 R +/Pg 22 0 R +/S /Span +>> +endobj +822 0 obj +<< +/C /A4 +/K 972 +/P 1206 0 R +/Pg 22 0 R +/S /Span +>> +endobj +823 0 obj +<< +/K [973 974 824 0 R 976] +/P 1207 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +824 0 obj +<< +/ActualText +/K 975 +/P 823 0 R +/Pg 22 0 R +/S /Span +>> +endobj +825 0 obj +<< +/C /A4 +/K 977 +/P 1208 0 R +/Pg 22 0 R +/S /Span +>> +endobj +826 0 obj +<< +/C /A4 +/K 978 +/P 1208 0 R +/Pg 22 0 R +/S /Span +>> +endobj +827 0 obj +<< +/K [979 828 0 R 981 829 0 R 983 984 985 986] +/P 1209 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +828 0 obj +<< +/ActualText +/K 980 +/P 827 0 R +/Pg 22 0 R +/S /Span +>> +endobj +829 0 obj +<< +/ActualText +/K 982 +/P 827 0 R +/Pg 22 0 R +/S /Span +>> +endobj +830 0 obj +<< +/C /A4 +/K 987 +/P 1210 0 R +/Pg 22 0 R +/S /Span +>> +endobj +831 0 obj +<< +/C /A4 +/K 988 +/P 1210 0 R +/Pg 22 0 R +/S /Span +>> +endobj +832 0 obj +<< +/K [989 990 833 0 R 992] +/P 1211 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +833 0 obj +<< +/ActualText +/K 991 +/P 832 0 R +/Pg 22 0 R +/S /Span +>> +endobj +834 0 obj +<< +/C /A4 +/K 993 +/P 1212 0 R +/Pg 22 0 R +/S /Span +>> +endobj +835 0 obj +<< +/C /A4 +/K 994 +/P 1212 0 R +/Pg 22 0 R +/S /Span +>> +endobj +836 0 obj +<< +/K [995 837 0 R 997 998 999 1000 1001 1002 1003] +/P 1213 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +837 0 obj +<< +/ActualText +/K 996 +/P 836 0 R +/Pg 22 0 R +/S /Span +>> +endobj +838 0 obj +<< +/C /A4 +/K 1004 +/P 1214 0 R +/Pg 22 0 R +/S /Span +>> +endobj +839 0 obj +<< +/C /A4 +/K 1005 +/P 1214 0 R +/Pg 22 0 R +/S /Span +>> +endobj +840 0 obj +<< +/K [1006 1007 1008 841 0 R 1010] +/P 1215 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +841 0 obj +<< +/ActualText +/K 1009 +/P 840 0 R +/Pg 22 0 R +/S /Span +>> +endobj +842 0 obj +<< +/C /A4 +/K 1011 +/P 1216 0 R +/Pg 22 0 R +/S /Span +>> +endobj +843 0 obj +<< +/C /A4 +/K 1012 +/P 1216 0 R +/Pg 22 0 R +/S /Span +>> +endobj +844 0 obj +<< +/K [1013 1014] +/P 1217 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +845 0 obj +<< +/C /A4 +/K 1015 +/P 1218 0 R +/Pg 22 0 R +/S /Span +>> +endobj +846 0 obj +<< +/C /A4 +/K 1016 +/P 1218 0 R +/Pg 22 0 R +/S /Span +>> +endobj +847 0 obj +<< +/K 1017 +/P 1219 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +848 0 obj +<< +/C /A4 +/K 1018 +/P 1220 0 R +/Pg 22 0 R +/S /Span +>> +endobj +849 0 obj +<< +/C /A4 +/K 1019 +/P 1220 0 R +/Pg 22 0 R +/S /Span +>> +endobj +850 0 obj +<< +/K [1020 851 0 R 1022] +/P 1221 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +851 0 obj +<< +/ActualText +/K 1021 +/P 850 0 R +/Pg 22 0 R +/S /Span +>> +endobj +852 0 obj +<< +/C /A4 +/K 1023 +/P 1222 0 R +/Pg 22 0 R +/S /Span +>> +endobj +853 0 obj +<< +/C /A4 +/K 1024 +/P 1222 0 R +/Pg 22 0 R +/S /Span +>> +endobj +854 0 obj +<< +/K [1025 1026] +/P 1223 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +855 0 obj +<< +/C /A4 +/K 1027 +/P 1224 0 R +/Pg 22 0 R +/S /Span +>> +endobj +856 0 obj +<< +/C /A4 +/K 1028 +/P 1224 0 R +/Pg 22 0 R +/S /Span +>> +endobj +857 0 obj +<< +/K [1029 1030] +/P 1225 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +858 0 obj +<< +/C /Pa17 +/K [1031 1032 859 0 R 1034] +/P 1226 0 R +/Pg 23 0 R +/S /Tab._Versal_bold_wei +>> +endobj +859 0 obj +<< +/ActualText +/K 1033 +/P 858 0 R +/Pg 23 0 R +/S /Span +>> +endobj +860 0 obj +<< +/C /Pa17 +/K 1035 +/P 1227 0 R +/Pg 23 0 R +/S /Tab._Versal_bold_wei +>> +endobj +861 0 obj +<< +/C /Pa17 +/K 1036 +/P 1227 0 R +/Pg 23 0 R +/S /Tab._Versal_bold_wei +>> +endobj +862 0 obj +<< +/C /Pa17 +/K [1037 1038] +/P 1228 0 R +/Pg 23 0 R +/S /Tab._Versal_bold_wei +>> +endobj +863 0 obj +<< +/C /Pa17 +/K [1039 864 0 R 1041] +/P 1229 0 R +/Pg 23 0 R +/S /Tab._Versal_bold_wei +>> +endobj +864 0 obj +<< +/ActualText +/K 1040 +/P 863 0 R +/Pg 23 0 R +/S /Span +>> +endobj +865 0 obj +<< +/C /Pa18 +/K [1042 1043 1044 866 0 R 1046] +/P 1230 0 R +/Pg 23 0 R +/S /Tab._Lauftext_light_ +>> +endobj +866 0 obj +<< +/ActualText +/K 1045 +/P 865 0 R +/Pg 23 0 R +/S /Span +>> +endobj +867 0 obj +<< +/C /A4 +/K 1047 +/P 1231 0 R +/Pg 23 0 R +/S /Span +>> +endobj +868 0 obj +<< +/C /A4 +/K 1048 +/P 1231 0 R +/Pg 23 0 R +/S /Span +>> +endobj +869 0 obj +<< +/K [1049 870 0 R 1051 1052 1053 1054 1055 1056 1057 871 0 R 1059 1060] +/P 1232 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +870 0 obj +<< +/ActualText +/K 1050 +/P 869 0 R +/Pg 23 0 R +/S /Span +>> +endobj +871 0 obj +<< +/ActualText +/K 1058 +/P 869 0 R +/Pg 23 0 R +/S /Span +>> +endobj +872 0 obj +<< +/C /A4 +/K 1061 +/P 1233 0 R +/Pg 23 0 R +/S /Span +>> +endobj +873 0 obj +<< +/C /A4 +/K 1062 +/P 1233 0 R +/Pg 23 0 R +/S /Span +>> +endobj +874 0 obj +<< +/K [1063 1064 1065] +/P 1234 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +875 0 obj +<< +/C /A4 +/K 1066 +/P 1235 0 R +/Pg 23 0 R +/S /Span +>> +endobj +876 0 obj +<< +/C /A4 +/K 1067 +/P 1235 0 R +/Pg 23 0 R +/S /Span +>> +endobj +877 0 obj +<< +/K [1068 1069] +/P 1236 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +878 0 obj +<< +/C /A4 +/K 1070 +/P 1237 0 R +/Pg 23 0 R +/S /Span +>> +endobj +879 0 obj +<< +/C /A4 +/K 1071 +/P 1237 0 R +/Pg 23 0 R +/S /Span +>> +endobj +880 0 obj +<< +/K [1072 1073 1074 881 0 R 1076 1077] +/P 1238 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +881 0 obj +<< +/ActualText +/K 1075 +/P 880 0 R +/Pg 23 0 R +/S /Span +>> +endobj +882 0 obj +<< +/C /A4 +/K 1078 +/P 1239 0 R +/Pg 23 0 R +/S /Span +>> +endobj +883 0 obj +<< +/C /A4 +/K 1079 +/P 1239 0 R +/Pg 23 0 R +/S /Span +>> +endobj +884 0 obj +<< +/K [1080 1081 1082 885 0 R 1084 1085] +/P 1240 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +885 0 obj +<< +/ActualText +/K 1083 +/P 884 0 R +/Pg 23 0 R +/S /Span +>> +endobj +886 0 obj +<< +/C /A4 +/K 1086 +/P 1241 0 R +/Pg 23 0 R +/S /Span +>> +endobj +887 0 obj +<< +/C /A4 +/K 1087 +/P 1241 0 R +/Pg 23 0 R +/S /Span +>> +endobj +888 0 obj +<< +/K [1088 1089] +/P 1242 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +889 0 obj +<< +/C /A4 +/K 1090 +/P 1243 0 R +/Pg 23 0 R +/S /Span +>> +endobj +890 0 obj +<< +/C /A4 +/K 1091 +/P 1243 0 R +/Pg 23 0 R +/S /Span +>> +endobj +891 0 obj +<< +/K [1092 1093 892 0 R 1095] +/P 1244 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +892 0 obj +<< +/ActualText +/K 1094 +/P 891 0 R +/Pg 23 0 R +/S /Span +>> +endobj +893 0 obj +<< +/C /A4 +/K 1096 +/P 1245 0 R +/Pg 23 0 R +/S /Span +>> +endobj +894 0 obj +<< +/C /A4 +/K 1097 +/P 1245 0 R +/Pg 23 0 R +/S /Span +>> +endobj +895 0 obj +<< +/K [1098 1099 1100 1101] +/P 1246 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +896 0 obj +<< +/C /A4 +/K 1102 +/P 1247 0 R +/Pg 23 0 R +/S /Span +>> +endobj +897 0 obj +<< +/C /A4 +/K 1103 +/P 1247 0 R +/Pg 23 0 R +/S /Span +>> +endobj +898 0 obj +<< +/K 1104 +/P 1248 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +899 0 obj +<< +/C /A4 +/K 1105 +/P 1249 0 R +/Pg 23 0 R +/S /Span +>> +endobj +900 0 obj +<< +/C /A4 +/K 1106 +/P 1249 0 R +/Pg 23 0 R +/S /Span +>> +endobj +901 0 obj +<< +/K [1107 1108] +/P 1250 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +902 0 obj +<< +/C /A4 +/K 1109 +/P 1251 0 R +/Pg 23 0 R +/S /Span +>> +endobj +903 0 obj +<< +/C /A4 +/K 1110 +/P 1251 0 R +/Pg 23 0 R +/S /Span +>> +endobj +904 0 obj +<< +/K [1111 905 0 R 1113 1114] +/P 1252 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +905 0 obj +<< +/ActualText +/K 1112 +/P 904 0 R +/Pg 23 0 R +/S /Span +>> +endobj +906 0 obj +<< +/C /Pa18 +/K [1115 1116] +/P 1253 0 R +/Pg 23 0 R +/S /Tab._Lauftext_light_ +>> +endobj +907 0 obj +<< +/C /A4 +/K 1117 +/P 1254 0 R +/Pg 23 0 R +/S /Span +>> +endobj +908 0 obj +<< +/C /A4 +/K 1118 +/P 1254 0 R +/Pg 23 0 R +/S /Span +>> +endobj +909 0 obj +<< +/K [1119 1120 1121 1122 1123] +/P 1255 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +910 0 obj +<< +/C /A4 +/K 1124 +/P 1256 0 R +/Pg 23 0 R +/S /Span +>> +endobj +911 0 obj +<< +/C /A4 +/K 1125 +/P 1256 0 R +/Pg 23 0 R +/S /Span +>> +endobj +912 0 obj +<< +/K [1126 1127 1128 913 0 R 1130] +/P 1257 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +913 0 obj +<< +/ActualText +/K 1129 +/P 912 0 R +/Pg 23 0 R +/S /Span +>> +endobj +914 0 obj +<< +/C /A4 +/K 1131 +/P 1258 0 R +/Pg 23 0 R +/S /Span +>> +endobj +915 0 obj +<< +/C /A4 +/K 1132 +/P 1258 0 R +/Pg 23 0 R +/S /Span +>> +endobj +916 0 obj +<< +/K [1133 1134 1135 917 0 R 1137] +/P 1259 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +917 0 obj +<< +/ActualText +/K 1136 +/P 916 0 R +/Pg 23 0 R +/S /Span +>> +endobj +918 0 obj +<< +/C /A4 +/K 1138 +/P 1260 0 R +/Pg 23 0 R +/S /Span +>> +endobj +919 0 obj +<< +/C /A4 +/K 1139 +/P 1260 0 R +/Pg 23 0 R +/S /Span +>> +endobj +920 0 obj +<< +/K [1140 1141 921 0 R 1143 1144] +/P 1261 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +921 0 obj +<< +/ActualText +/K 1142 +/P 920 0 R +/Pg 23 0 R +/S /Span +>> +endobj +922 0 obj +<< +/C /A4 +/K 1145 +/P 1262 0 R +/Pg 23 0 R +/S /Span +>> +endobj +923 0 obj +<< +/C /A4 +/K 1146 +/P 1262 0 R +/Pg 23 0 R +/S /Span +>> +endobj +924 0 obj +<< +/K [1147 1148 1149 925 0 R 1151] +/P 1263 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +925 0 obj +<< +/ActualText +/K 1150 +/P 924 0 R +/Pg 23 0 R +/S /Span +>> +endobj +926 0 obj +<< +/C /A4 +/K 1152 +/P 1264 0 R +/Pg 23 0 R +/S /Span +>> +endobj +927 0 obj +<< +/C /A4 +/K 1153 +/P 1264 0 R +/Pg 23 0 R +/S /Span +>> +endobj +928 0 obj +<< +/K [1154 1155 1156 1157 1158 1159] +/P 1265 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +929 0 obj +<< +/C /A4 +/K 1160 +/P 1266 0 R +/Pg 23 0 R +/S /Span +>> +endobj +930 0 obj +<< +/C /A4 +/K 1161 +/P 1266 0 R +/Pg 23 0 R +/S /Span +>> +endobj +931 0 obj +<< +/K [1162 1163 1164] +/P 1267 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +932 0 obj +<< +/C /A4 +/K 1165 +/P 1268 0 R +/Pg 23 0 R +/S /Span +>> +endobj +933 0 obj +<< +/C /A4 +/K 1166 +/P 1268 0 R +/Pg 23 0 R +/S /Span +>> +endobj +934 0 obj +<< +/K [1167 935 0 R 1169] +/P 1269 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +935 0 obj +<< +/ActualText +/K 1168 +/P 934 0 R +/Pg 23 0 R +/S /Span +>> +endobj +936 0 obj +<< +/C /A4 +/K 1170 +/P 1270 0 R +/Pg 23 0 R +/S /Span +>> +endobj +937 0 obj +<< +/C /A4 +/K 1171 +/P 1270 0 R +/Pg 23 0 R +/S /Span +>> +endobj +938 0 obj +<< +/K [1172 1173 1174] +/P 1271 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +939 0 obj +<< +/C /A4 +/K 1175 +/P 1272 0 R +/Pg 23 0 R +/S /Span +>> +endobj +940 0 obj +<< +/C /A4 +/K 1176 +/P 1272 0 R +/Pg 23 0 R +/S /Span +>> +endobj +941 0 obj +<< +/K [1177 1178 1179 1180 1181] +/P 1273 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +942 0 obj +<< +/C /Pa17 +/K [1182 1183 943 0 R 1185] +/P 1274 0 R +/Pg 24 0 R +/S /Tab._Versal_bold_wei +>> +endobj +943 0 obj +<< +/ActualText +/K 1184 +/P 942 0 R +/Pg 24 0 R +/S /Span +>> +endobj +944 0 obj +<< +/C /Pa17 +/K 1186 +/P 1275 0 R +/Pg 24 0 R +/S /Tab._Versal_bold_wei +>> +endobj +945 0 obj +<< +/C /Pa17 +/K 1187 +/P 1275 0 R +/Pg 24 0 R +/S /Tab._Versal_bold_wei +>> +endobj +946 0 obj +<< +/C /Pa17 +/K [1188 1189] +/P 1276 0 R +/Pg 24 0 R +/S /Tab._Versal_bold_wei +>> +endobj +947 0 obj +<< +/C /Pa17 +/K [1190 948 0 R 1192] +/P 1277 0 R +/Pg 24 0 R +/S /Tab._Versal_bold_wei +>> +endobj +948 0 obj +<< +/ActualText +/K 1191 +/P 947 0 R +/Pg 24 0 R +/S /Span +>> +endobj +949 0 obj +<< +/C /Pa18 +/K [1193 950 0 R 1195 1196 951 0 R 1198] +/P 1278 0 R +/Pg 24 0 R +/S /Tab._Lauftext_light_ +>> +endobj +950 0 obj +<< +/ActualText +/K 1194 +/P 949 0 R +/Pg 24 0 R +/S /Span +>> +endobj +951 0 obj +<< +/ActualText +/K 1197 +/P 949 0 R +/Pg 24 0 R +/S /Span +>> +endobj +952 0 obj +<< +/C /A4 +/K 1199 +/P 1279 0 R +/Pg 24 0 R +/S /Span +>> +endobj +953 0 obj +<< +/C /A4 +/K 1200 +/P 1279 0 R +/Pg 24 0 R +/S /Span +>> +endobj +954 0 obj +<< +/K [1201 955 0 R 1203 956 0 R 1205 957 0 R 1207 1208 1209 1210 1211] +/P 1280 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +955 0 obj +<< +/ActualText +/K 1202 +/P 954 0 R +/Pg 24 0 R +/S /Span +>> +endobj +956 0 obj +<< +/ActualText +/K 1204 +/P 954 0 R +/Pg 24 0 R +/S /Span +>> +endobj +957 0 obj +<< +/ActualText +/K 1206 +/P 954 0 R +/Pg 24 0 R +/S /Span +>> +endobj +958 0 obj +<< +/C /A4 +/K 1212 +/P 1281 0 R +/Pg 24 0 R +/S /Span +>> +endobj +959 0 obj +<< +/C /A4 +/K 1213 +/P 1281 0 R +/Pg 24 0 R +/S /Span +>> +endobj +960 0 obj +<< +/K [1214 1215 1216 961 0 R 1218] +/P 1282 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +961 0 obj +<< +/ActualText +/K 1217 +/P 960 0 R +/Pg 24 0 R +/S /Span +>> +endobj +962 0 obj +<< +/C /A4 +/K 1219 +/P 1283 0 R +/Pg 24 0 R +/S /Span +>> +endobj +963 0 obj +<< +/C /A4 +/K 1220 +/P 1283 0 R +/Pg 24 0 R +/S /Span +>> +endobj +964 0 obj +<< +/K [1221 1222 965 0 R 1224 966 0 R 1226] +/P 1284 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +965 0 obj +<< +/ActualText +/K 1223 +/P 964 0 R +/Pg 24 0 R +/S /Span +>> +endobj +966 0 obj +<< +/ActualText +/K 1225 +/P 964 0 R +/Pg 24 0 R +/S /Span +>> +endobj +967 0 obj +<< +/C /A4 +/K 1227 +/P 1285 0 R +/Pg 24 0 R +/S /Span +>> +endobj +968 0 obj +<< +/C /A4 +/K 1228 +/P 1285 0 R +/Pg 24 0 R +/S /Span +>> +endobj +969 0 obj +<< +/K [1229 1230 1231] +/P 1286 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +970 0 obj +<< +/C /A4 +/K 1232 +/P 1287 0 R +/Pg 24 0 R +/S /Span +>> +endobj +971 0 obj +<< +/C /A4 +/K 1233 +/P 1287 0 R +/Pg 24 0 R +/S /Span +>> +endobj +972 0 obj +<< +/K [1234 1235] +/P 1288 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +973 0 obj +<< +/C /A4 +/K 1236 +/P 1289 0 R +/Pg 24 0 R +/S /Span +>> +endobj +974 0 obj +<< +/C /A4 +/K 1237 +/P 1289 0 R +/Pg 24 0 R +/S /Span +>> +endobj +975 0 obj +<< +/K 1238 +/P 1290 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +976 0 obj +<< +/Filter /FlateDecode +/Length 9807 +/Length1 15651 +>> +stream +H‰œVyTTçÿÝ·ÌÀ€À +8HÞ0, +3 › ‹2¾dDeØAŸŽbRS“ZkcŒmlò´ÖX£6ÄÆ&Æ%U›¤¦IÚsZ›sÔ&M«HÓÚ“úî¼ù¶wïwß÷û½ï ÃQ:½Âž’œÂ=Wù®jhwwn|ýÚy€R9½aI²¦iå@×Ì}+š;çµ Æ7Ý€þ3n8¯mYsi¶e-à{ˆ‰iir7ÖÿiÊYÀö1ÇËháßô& )”Û1-í=½Û漸ŒÛã8殶Ž7Òº¾Ò¯p»¿ÝÝÛ)Ü¡` §‡ŸWºÛ›òŽÞ,âö³<_qgGwÏЙsɽæï\ÔÔ)½vä ·¹’"èiÈ> Ô ž¸_JGÑ,pTAñð2lò¹_ñù¦Ë%n|yðã ò)£½#È[†òªqFò­ÃƒN.ï3ÿ}ñ (É:½¯ÁÏX@`18$tøˆ°ðˆ‘¦ÈQQ)æhKLl\üè1 ‰V[’=9%5-}lF測ìœÜñòéêØü‚ÂIEÅ“§LV2½´¬¼¢rFÕÌjWͬÚÙi7geê} ¦ÐÑ¥®êšº¯Ý ÿjœ¿ ½má­¬œì\õ‹Â‚$»÷ì9Í gvµ|•7¾Sñ7à¶Ã›]k1êók; w&ûí¿§‹7W$Z#Æ„…;‘úOÌUÊ™&_Šr "‡Fää£bãS2}l‹8À$OIâ•@63kð4†H$#¡ª 7µR/m£çIÎWEQô-¢u[IVR”låesttÄ­ä¡!Ï^â)>À‡ø~øu ãøŸâ3|…¿ã&nP4bDXv¬$+Å3¶fæý-|‰/°Ëi­d{‚VÓZKkh=ÉqfQÕÒLšMÕ4‡\4—j¨Œ¦2§1›K¨’¦Ó *¥@2Ð0ò¡ò¥&fj33}Õ3c˜ñd¦H²PEP(…Q0uÐ|ê¤ÔEm´ˆÚ©›ÒxG(‹ò(›”C)—lÌýDŠ£I¤R9©˜òi2Ð*¤t²S&¥ÒXJ¦ JÁ2<Î,ôX£‰Ë%XŠy\¶b>zŒµ0?µ6î_ˆU¸ØI}´¦eÔC[h-þBÓbz’Öá:-§%ô¯ÎzZAK½¶å5{h½ÿað¹·Çó<߬«"ˆ™ZŽ¶ÁƒCðÛp¿8 ¯“ÊåËt‘ú9ƒ?òþç½>Æ,y…Ù³—µ‹¹¶•¹·…y¸‰9¹Žù¹+±œ1/e¬ÝÌÛÞÝùŒ®™y\ÏœžÃü®a®W1ïËY%¬‡É¬B։ʪÏ +ÊdE¥±ºì¬¸xV Ùú‹ºùò y»,Ý•ò%Uò‘t’ A¼!^ßûÅâq¥¸XìÓD»8F¸'|* û„ÝÂj¡V¨JUȲ»`t‚DïÒí£Ý|êì í´•ÙÕMu^œ1ƒ=HO3çO0ÿ±Ž°.<¸²^0ú}ŒkkëìVÝ£«pâ÷ ö`.÷¢-bœ|v˜#†‡†ƒ†ùû|}ô:Y‚õ0+éôÕ÷YÔæ*›õpà¬ìÕX–åò¹ÞB3$¸4r=Òe³&òOlÖûT¯Á¢"1VU +•w£&Ær©h’ÓâV9}•Õf¾Áé*­öT¤X¥°EÓǸ5”U›Mšìç2¹]Õ»å¶Én¹Îs'~{twã·>)Ǫy×ÿÇ9ﶷË–e³0l>™Š'ɾMtº[ëòëT›µ@ÑD‹z˜Ù¹ÄiqöYx@“,j¸æçÁÊÑ Z5‡[ñæ­M4qÝSÕ +MZ‘˥ɕCEmÕ‹ªù'„Û¬JAK¾Ízœyè •“8l”á)å ö©Üj!/˜£²ZsÔ¹<óÙ¬<ä4:9ÝجI6ë[6kžš`ƒàùÞÙXÁzD;Le‚:©Œ ½ y褞 |ÅÄ$&›fc<ßÄÇ•ù®*ãÌÒ©;*¯€ùÞi:…»¬Ò‡Ÿ«H™ü½~IIɱaB ÅgfÐÞH¥v¡³2ò%cÞÝQ®ý3âFPÈ¥@Ï÷…Ž±¦rBaŽ (‰g&©K8þAdŽÏ4‡ êàç†LÁd c~› ÏÍCÿ ¥¬ +?„;Œº`’6úŠì:ìkXtÜØôŒ´T&³îž½°Ðž\\d(ú7×ÕÔÔ™Fóÿ÷•›D’ܼ „KÀ$’\1ÂCDDk«ÛEZAQD‰*¨UE±¨èª«ØEË¢Ën]mkgÚÙÕm·Õ®­ã´Ž[m·3vœÙnw:ívÖQ¹îwtg6“×M&™ï|çœï|¿Ï[9Ûç«”¶­ðã›Ä;T¤nªÌµªKi•Ln,M4cX™"£†u4#mê©L¬Õpö<6è1MdÐØ áòóB\0€3ѽ[7®"KÛ±%žâÏ~»a“«ûÄšõ®œN7 Ó· &ôùúÓß },}L5¼(¾-žGÌ›Ÿ£À›€§ëñ¢†ˆW’b•éÔXÉ•^‰Ž@Ãd +dŒTGNqtWÇ;“Vo2¦!ƒ;2’BB(¨ 8¨]IHù¡Õ’VÝÚ¼¬´  ¬¥µ£:-Å(Þ'×ÖÔ/W<,]d2“tÇoš4A|S²Aꪪx:â‘ÍŒæA8ÙY-b­:’{ ±Ýäb èÇ]¬!5IFp.‡L&5òIÕÁ-W€X +¤²h5r!8ZE¢jò¡Ø¥û+ŠVVçÌ^ÚPº¹f°peß‚…C»W‰ëå4]d³DH{vðzPøeåÑ ¢ç=‘–ŒYB„ +Ëòe|šžæPr¡šE A:`3ç”Å¢ÃL6Iãü8 ì\]2èR«§IGF&ŸÉ 6ÌL0™§—™ÒSîþ,6^ÿ +‰?‡§Í¼ûN…»^ôV’Ì6zÓðk-ÕÇ9'ñHÜU=Ðð›S^ñ§®»é†]£†ƒ{¯ìYÜ;ÇhRµaòL{ËÎÚ¼è•vþ±ÃæW(„ÖŒ\rYŠ,ˆ+׳ + Èi1a=k U.«^‰)Ž‚MÃ`†Ëe +ñSBŠÛ &ÚŒòC&tɆ$E¡)Eá ~‡#“_™pù!³ú@Uô¸9/wé³ï…*ùÝ[ó}ɤXb>â¼ h˜ü^¼K±GÊ‹è‹6@^ú’2”Š¯N 0s˜ Ê*£%œ–°Yoöåàʇ¯y•MnGÙÒ %W#ã UœÞ•¡EÈ÷û¼ÔAF2ƒ[."¦ØIÂS̘$.âLp#ùsŠ € +âcÒɽÞÝùnkãÄçíþ—£Äß`*ïYP=Ôø̪¨›`IEᵺºkI*ÄoÉ›â¢æ—Ïuu|rtQŠ©mÔ:æ^ûúª¶ÑÚ•^ùc•‚`BJ±†Òl)¤’“là%4KƒÜ†4’æËÃ…XÙNV‰¤d#Jƒ”†ÆqùeÅ0i2¼8àd‚ÉD0EÄIC‡Æ„Ø2Ñk½Â•~Z½ýÚÐ êœ9skóžï­÷ÏÞ2>oî UÓ½oÇ«36¹kŽ\j» ;š,äÐ87¾ñå@F'yÆò}5-z*ñ¿Ÿ-ñ4žü×õÁºÃ Ò¨=€Ú²Ü(Ÿ¬ÃØCÉNe–#RáLÇVÖ @Î$iØ6š9‚B™‰镼ì ÉøXb€ V§`@˜˜ò| ý´~åä®^žT„ ¶5Üÿ$†˜y⮿®ÓÛ /]¯'ï}m•Ç¼‹Sr½¾Š\…‚!"“ â€øqbrI.¿•Zá$ÈJ£Óm©F9•çdóÊà@%w–©ãý¶¥bo=ªÌ’Qr4JzIÚˆ~4kè»ò¯ ÑxIM )!&ñâÈð‚ŽBBü9¤ã“P¼÷’¸2 ÓûÃg˜[rºiNó¼ƒ#;ïl]{qÕ‰î ë×\zctõ²‘þÛæl¾¶æbxõÜŽíTOioSEWM~ÉÑÝ[¾èª‹mùÈ_µùú3/>ºU‹ ŒÖÎ]Ò‡ÜBûXÕÚhwûüNIOn@:HÍpæ›uÚËuAY)J)c´ßh#!:ñ§Ñ8+N HÉÄ‹y‚¥lÀA|Ét Ž8¤*¶Ý>UOÚ–ål¯[£÷ê½câùÜùÑÍý¶ís;4¶®?|ݳ!Ù¶êýŽíÛ*~ñð†xDü·/ÚûÌáï‰?ïï¿.)Çóø&UO…3©7ÊdØ‚XYÂj,äBÈG²É@'Ã\_: Y=åb# Vg¦¤z!ä„Ч: >&jh߆%ûRõ ÅûMçÅOooèÙC¾‰žGu|tñÂ¥Û÷~y¨zÉï\ýʳÍù…Í—Pòø2-y©9ß~®w?Nu¼Zœ¹dlñè¼5¯ÍZú»]&®tÛÔÓžŒÖçG¾<%Þºàí ùì)äå‡É8óížw~Øê3ò€¬”å²pÔ'%sØ_¦‡-k:¯d1Ãì*«*Y™)8HŽÉ*¼qV +UÄ3¢XZ7ÀS»ñtÑà3%¼@Käžìëœ]¼¯“SWrÿi-]ÚÁ9P@G”Ä´Œ·'ðq±fsªPÓp'¬©›‰C‰k@ ‡ºrtno.“£™¼CUÙ­ :]®Xõ+9ró”o€ƒÀ0Œ>¥B'¹ÛϦ#w8TéëãmÈæ+¼W´TŸÇ ›Ÿðt0¸@‹€W‚fV Z)nzý?µ’ VŽ”ˆ‘¤ñãcÏ-“‡5Lý•segÅw»ÿŽú>}½×]¼ð…ÿ^®ÁM¥e?Ï{.ÉIOs¿6IÓÜNš{sï5Io4-ÝR + P`Y ¥t©[¤[Š,]\Û-³P\Å•…a]W°0£Ž:ȳƒî:úÁqVGG?8ê‡m ¾'i +Eó!ÉÉeæüßÿÿyžßÓÿÞÍÜ¿ÆÏ€÷îžo³%·î9*HYEE4Œ.{ÛXeÞ8 e7~=?ôU¾5¹«¹ÉâœÉýùÚÜO®øLÆBÅ}ŠŽ`1¤KM\¶Ô,B/Õ4Ø Í›ù¿”iDxºü·Qß8yüMá=51ÿ¹g[±p-ý£™Cø~ÒD[:î“×%P„Õ¸ÙrΈïIÊ•pb.äÑJ)…Ÿu[®ò +5z1ºâ5ƒšŠªðXwImÅYz­Ánà‘¨ÀIsýLü'¡Ì²½cvE‚'ï3ù«ž}öÊÑUYÞŪhtm¾žRJ3Ùú±x(¶2žÍH•ÿ&O-Ö…æ2äì—Xk©Ì2:7­t©¬Ôåùî—Ëõ¢Ç@-Ò—/8C½…O"N´§“ĬtZKYp‹ñZnîÝEÓ¼š {Ü&hߢy ª^l3ÿ§ã‰%`íA(N©§ O£iÞ½`íj¸4Ü=5Ú¾üض6$Õ©LϱçÞ}s7mŸ»ÿ´Ã_0—Óùb£µcÿêßiä:4ݯôμ^PIg±ÊV¢5]g=æÄ” *ô–°4–fæê¬4•Ö .ˆGÐqGZÃÔŠ¡(±M¾ØIŸ©°`7*´VaVW43œN™ï©³¼kuæT »Û3ÓýÇë9Ú³Žª +‹Å¨P4¹cš:#7’z#;¹ö™'0f.XOn8WÏܵ><-øm¨5§–F‹A¬þúÀŽQ|&òG§Ïã3ñÁ´œœ³pz¶~·‹3xÑ÷Ê,˜b}ÅÊ*a¦XmLî";ïþ‰1qÀ!˜„U¦?3È;÷d’Gn¦2eÞæêά¨íÈ dz{ifîä-Ÿ¹šZÌnrÕü¹ —6½úSò{+M9e…;ýž>M4áiá­4©J²Q.Ä°5§ÀL³Ÿ»Òf5´ɪ˜khyRC*åÁ*‘[B>U¦½UU\™ˆ”#æýèMX)ÂC<õà‘› ë·1Vñ?¥!Wmï}¾Ã«{¼ø65ŸxÁÜÈØLrHRÀUÆ{–íäý™Æ¤<÷ N¥o“óº8L¢÷çGõX_uPåõ®EéT™Çä˜DO€h½qW—~œü„7ÐÅï™øÜÕÊd«½a¨ñdžá?#Løˆ:¢3Ýðs%€i1ÁJ€ª’I(± z”ðñ¬[9*c5@„-ÛYÀŽN«@Ks4qc"k(ÎòDaQddàŠ-l—K;WBÄàmF€NP0ù£+œSîÜ>ðåæ5c.‹ ï?t²AÄø»mQ›Ín:Jrú¶ƒoCú½—¢mþŒÇû™&;r;S”‰ëSÒ#M˺¿óFî+Õ&’Zðåï* mÌý¤†€z¸&ºÜ¨*#У?œÃ>¸ˆZby:m”%Àsâ»4€LÊ‘QŸ)ŸA½ÉYXj¨bå g b4Í‚Žž¬²`¢©_2M\÷ŒðáÓÇ ‡•hU +¡«>Î n³d'>û»C* ï«®uáìE’O´÷>ÞÝóýÎΆá¶MÇ«ÏNµ¿öÙ†C*ò ŒäPÌ©²æ2²8+go*@tÿKw<›\¶bu&A¿ÿ£-×ö.«s­Iaå‚?ÓØ á'–¥<@ÐfPê뢥˗C3­Æú*öŠ¤| "Y³IN~U*Ú£B'H_p¡ø9•j|ú˜ÈL*P/CÍ'ÅÙT‰Ý^±ß`º>²—3f±Ækª•”]¢rZk×0!\…,‘c¨uKZ̦Å*—˜×nÁ  "U·S½¸Iú}žbéSΕIÜÃ)c½ÎÕF`ê°7Ž®l:¸`” íò´ŒB€Ñ Ú¯ólçd…1w:÷ø|‘ÝcMÉÍU¹®%¸‚Z÷Cmø™8â‘U¥F»ÁœZªÕ1ϹdÄUÍãid408×óãBàƒ*†˜¡Š)I/æ{)þ©ÈWóa¯Ö5tö\jm÷6·žæ$õnÖ²òø“]fcƒÓ÷“¹7æWb‘Ã’ îAµ¥•V3< o7‚´ `&å—ÒY©QRr‡ÂºÌL½.È1À‘³=Ã’pq¨ +éëD L¨¡IŠ‹2\æ’r7Mù‘‹õ&ÏîÚv¼.h[¾n˜ïÉ|ñÖ“'Xºáçƒ×Gþñ×ÏüåàKSjv÷öõt×®VÉ5úr¥}¤ïµ“‘ÎÓÁÎÌLÛZÿØ=§»Ãõ‡E†ÜûŠLÑ·‘5¥"FŒô + ƒŠ"T°ÉXÖ{,Ò(!7–«@’9M¦5VȇM BB¡¤×謨éÒª@½~æ ùh»ÙˆÍºÜpK´ÝºÕ¼ï¥–ûWØ´Ú0½õô:ÕþìWuν–ˆ^¹an˜‘´ÙòT½³@P^o +Ŷãœ\k] +®+%ƒîª51"ÅM»,°½õ ·ˆˆEE· Ôç:„¶¬Ps¨¢Y «^çZƒG0®­”¿°éøö‰˜ª@û®¡Lj¬³ªÅ½÷Ñ5ϤvìéÅý^Ïžë¯}$Œ» +ð’˜ù[:M]ÅL9ÌWÉ98-§Ô3 +o3› z|“€UT ù£&„)ˆÁ…kpGócòTfÒ‹CO42•¥^ÿÖP[²3÷«’eæŽô˜×÷Xz{îÖ¿Q÷¦†ìöaÊ¢ä?Ù›Á“<•°»0 4M4åµ³Wþºîóh”š]ìÌ{Î>¹iD)ÂÎPú0WÃù9·‚W”I1®¬Vq A\¯Á1$çÇÐÒ2X_g—ãú….Ch”š@x≋Z¤¨–á•é¹Tnv•íR§;Úv:œ;Ú¢®zß‹6{mÅ@îk¾Qs}膻ÁÛÐ3î­O÷x=ò‹Úž Á'²ï|ÇžŠås1uæ®®Øòr?y¿í'ç#—ÇÓs7-åe–ìÇΈÛwïuâö¡Ú”ÇUªRFapsv® t‰ÏSérÚ+l3…TCŒb°¿²¿¦&¤ÀE²2@‰qº¢P!X ‘Äá&°(zÒ…ƒUuå1Õ¸Ú®­üç)¾W~Ùå(Çáï4 6?÷¿LÅ™Üy[­žÈs»ü2 s4)‰áÎkþcª8wãF'EÇ|¡oð΄ <·H“ÎE”@ ©ê ++*fÌ$+á`bãâà‰ÏUa]f)•1*ݬSÖ8?eU!÷ÒLaiˆ‰×ÁR3ÁE –‚ÒH†n©6FSÛìŽÁ¶„{]CnȽîÑ ‘º°µ¬Mßヮô¿Œµ®Ê®1Á÷DWW»~2p™läu!ùl9r·uÞ$ÿšÎF?4²æÐðŸˆ9V=—¥ºÊêÜù ˆTä¤z¯ƒ,múQr´øøálö}¹_¡ƒS:sá æoÙó)„ÎæÎÉýÒ꼿ÍÎ["¢%Ð ¹Fi„ä`Iö]”f¨_@‡È4ÖFÙPý9Ú Ï;àÚ¿/Àõx¾lÌƃÑ`V°6°Íâ÷À|ðüsâ»ðÎãâwÀ¶RS¨Ÿ¹ƒÂð_<ýoe.¢F8ÐàÜ +vÈ° ÷¾/Ý“Dv¹Ø5pý<¿L?œ×¡0ýrÃ÷,ÌGHû¥a6"˜Œ¿ÏÂÿÎÀoæÿì—KHTQÇÿsïíŽQ'+”’i…LeV½0¢BF*¢! +fi”–‹(r!Ùs !ᦉhAf .BÂ6AH‹“Óÿ;玌w†Z´™ßwÎ=ïulßQ©líŒ|¦=\¿ÊGûËhÃë|FžÉÈÛѽ~úÁ~«™ÏGá·ÎrN)fvwhÇV[ýðÙ9¦¥œ—oé¸õZÆfʃ²¿²©WØÎeÖ‹=¤ƒvORîäYêZ„Å7ã!.zÃ*>ö/õ4Î>¦¬àÜC‚ÌULx|²VŠöÏòŽ£^ÙÆùö]ì1j{$.Ö'”IþÙ>Gò|¥‰”‡bæ(—²œív'wNŸpIÕE;÷j‡Áö=ñ‘Z©¶_³¿ÒÜ̹œoK}±NÉ¿ä>Þk‘oRªbPµë¥ Z nh× =ÈýX±(¿Ç™»næX×i¶»¤¤baìJ%~FMä' «ˆÖ‚‰U7kEê!©‡QÎ¥4"SŒÓm3 ¶õ‘¹`üH'yEjøü¤Ê±ÄŸµ)þÊÚv=ëjL׺²w›z÷”;U¼d\PÕU¼ bîöun7 |M§¹xMË»ãΟÇ/7*n.œw{ íc¼Ü,xßÆïÅøU„P¶P> ì$#Ô_QöQN³!Ý?[Éö3²ŸçÇWÊc”Ô|¢>¤õ™ Ž¤ÞKdû%42_É-g¾9Üwä°–á—.†µœq#ã_26Ñ_ð¸NÞðœó9Üâ—©|Ìüžç ÙÁ³„¼¼Ü;¥ya¤¦‘ïš´i ýƒÆ×OÆ1Mf­&«m>~Ú´xÝÂÈ&K2ÉS`)ó³Œ>äpÍ\žóy·ùÙÆ@ß—oVl"Ï‚·šÂ«üä6æe%ý.V]Š·%%I’$I’ä/xä…3ð:×'o^9ì[ƒüó.+Bóî\ZçEtN·¨g9ºM­ÐÑeÍõé±RU;ª{8"ªÈDµ£›ì?àèõ^G·©ßttYóISã¾êªº@mëñÖž£]'þÜD±›T¡Ô¢ÇIŽ¢ 'PÃ8‚ÓªïÔ_ÆþËSSG/r›âî½üí^‘½7}GÞÆŒkGÈŸ±!d]5/o°B¡úŒr\6wö¿¿Ž# +endstream +endobj +977 0 obj +<< +/Filter /FlateDecode +/Length 10249 +/Length1 14200 +>> +stream +H‰ÄVkTSWþÎ}$0䘯H DQHHߨˆ +h-á%ŒòP¬bm‹ÏÒ¢ÖV[ë[ªÖRµzAkÕª­jk­:S§é®™Î,̬®®®Y£vÂìDWëLëï9ÉÍ9gŸ³÷þöwvξ`†a%xL›:#Û¡+XB’?ÑSV×âo/™6k"À2þ‡º¥KŒÓÛŒ€˜H²¬Æöù-œú¢M¦ùæ/\ÞXm_} K,M þúÆ×&,²ÊÈ^~ "÷òš¯¥yrSË’ÎÇeÓ¼ì×,l«óC?øà£y}‹¿³ý÷çBÚolõ·4|}¼vÍ7¿¾ö¶Ž%C]BàÊ ®·/nhÇÜÎk4¯Ú'äÎB¤½;Ø" þ RÑÈiŽ#7oF- ÄtŠ¯”Ý& ZÑ[4bÃé‘á¡z.´ç¿-ò‚(“‡)Â#"‡)£TjV£nˆOHa4%™“S,©ié™V[VvŽÝ‘›çÌwU0zLa‘ÛSìõ-)7~ÂÄI“§”M6½|FÅÌY³+«ªçÌ}bÞ“5þÚ»öôö½süÔ{§ß?söü…/~xéòG_½òɵOo|~óÖüîåO?‡'×­ìXß…ÝÇðð̆ºU¯àÜõ­kP¬ÞÜxûõG.]´¸­½¥õ3|± +<4½T×мýmûöxóàþC‡ñvÿ€DÊÏÓ³)hEྠ+±¢"^xtaˆùY'Û,L5˜’’ↆBlö²òTeÔþ$ýeÓá&{™eG9a÷‚²)Ð)Ê GG")g•ˆ"jh %­hÄ@XÄa8 ˆG1‚¼š3åB +,HEÒ‘LXaC²‘;ÈEœÈ‡ #1 +1(DÜð ^ø0%(Å8ŒÇLÄ$LÆ”a*¦a:Ê1˜‰Y˜JT¡s0O`žD ü¨Åmtb9žÆ +<ƒgñ1´«°k°ëˆÆn:‘уõØ€!R_Æ+ØŒ-x¯a+^Ç6lÇìÄ.ìÆìE/ÞÀ>ìǼ‰ƒx }x‡pGðŽâ$ôcÇqïâ$ÞÃ)œÆ¼³8‡óø0ˆ‹¸„qá·øWpŸàS\Ãg¸ŽÏq7q ¿Ãïñbécÿ%¿Á,£ôY„Å%-hEõmhGõóÑôÓîÆ_±Ðü É<…¼D£ÿwä2Ê6eˆ3éûПéßìâç +W„ïE½8‚Kgf¦dḇoð5¾$dï2ù8KžOª>BÚKè·Ñin¢î¦Sï¢LXF¶{”ó(gfQ•Qn•’¯BÊB'eh:e­I®‘ Š{ÄTQ/üCøR„Âa“°B° B‰?Éð;øuü*¾’×óJ>œç¸7Èusk¸.®ƒ«æÒ9»Î.³óì ÛÃR™&ˆ™Éè¾ +òâ{ÜÁ·Dpí‘$Šáç~Æÿ(ò2Âì„É­ÓjÔª(å°ÈˆpE˜\& +<Ç` |÷{j{ÌÞÆY6ëU_E§„ÌJý¨ªP7&ÔIáUó©þGd³fÒWâ2lÖ?¬V‚ÙÛÏø¯±ÔØ䯗øê’à3ûõýOOE¥‰Z?LñUÓ*ƒ!ÅXÚ$ÉSJü¦Wš ’èYeð×Wͨ4g›ï²ÍwÈwæã­ûë»SLñºïüBÙ}7$Rkô£lÖA +›jÏÙS"ñ>sÍدÍZb”x³w€q¢o©Ïìë1Ó‚$˜½±RD0V²[Ò,yüÆn©Ø@ãàP*5H㫪$Ñì%Ììm–8³WŠÌˆµY%McmÖ3t9ŠC¼b@-"Øýßã5KÌï-%Â<•’§¦*èÏf¥%ŸÚGpí°Y³lÖË6«[ÒeØÀ+œ,¤<ÝÁfOÓŽÌ“Ú¤N¥‡ÑÍmúÑ+R7 çï{ƒõФLäHW뉳æ0"‹)feåhå©EÌ•ïÒs½uñ%“t-kúß&ë^üËúˆŒ„ÀA NæææqA4z*ž2&ÔQ'2ñ¡­Ë$wzÙßJ˜{p4º‡~`)Û#ëQóZáfB«,¨¢|¨âÊËÏuPËÌIKw¹ÝYVæQdY‘]Aãr‹›*{õÐw|½p‚j ÕOŠ‚Ÿä‘,ÌèR…xP0‹AÑiË–èÕ€Ë"ÛðPLE\®C£‰Öqä"‹s2™ZGþ4ú˜\G¾+¿åe±T‹¥ZÈ­0U×罇ë<§ûÚ7OΞ="h-i³­nUº ŒÒø¸‰ÇþUeÎч%®~s$ð×sµ.6s%b`»¦ ü­ÀÐÜ:«eÎ]{íó›<ã*BŒÑ‹É.QIµ1Écˆ‹Ñ*#&×BÅ4ÃcmÚ0ÈâƒhÝ9¹ÎDFœê¼Ts’ŒÎƒs©uAŒÑm2ƒ*­ =,ºALµ{z[d¬XÎÉ|•Ü=›0š+UØï_Z/ãʼñ«ˆ-ª©{šN©"31,2>–8s0ŽeÆç+ÔÄ[cŠè4z©Ò8ØÒD¹JdA$Ôrì¹Î"Þ™—šÅÌIr%/7Q¹ŽD¦'â‚s%“;ˆ>âÖ•+‹N6' eÇ÷·§Ç”縳 É:¥¬P#Ûôî¤-󣄉ÑEc2ÒŒթѽi±q*Ñž¸×=2ð÷ZסsWªgä¥¤Ä Ëp¸ãw¾ÚZØú¦«-¸‰óŒî·»Zíêf­´«‹eٺ˶,[««-#Y¶±lddY²clænhÀ`0­¹4P˜.IZZ7!mfèd:L&P2}ÊC3ÓtB¦if2…>v¦túÐf +ÅôûW†©GÞ]Íè;ÿ9ß9gÇ%eyÙ·9×ò.§xÉßèüëOyR&© ÔÁû!vƒîBˆ!QõÔã—­¬ÆÚ©ë´!–Œ›NÀÉ~“FÃE¡ dz•ñT2!®p:Ó¸ wÓxà~…8ó@ä‚09m+-K&|4Á[ôQmusg{vŸ3íªÇ: s}±Íã0§snÆÆŠCQ>³:ùÛq¥%zzv9Súáï_ô*ïÍÍžsbÝ“}Z:ŒB´Þ’mLì~3«¯Wþ”Fwg¶g{gòæ‰ÃùñÕóÒeS¤‡#ÒnlH•ÂHcC°C×4åMB§Žå –\ÜÖXúLÞXûò&áuþéß×÷Q±•BQæšy¡­™ŽŒÛÝ.rDÁÓ#j8 +x%ƒ¤3,ƈôµ1§FÐ8eŠ‰6KÌ•ˆ]ÃÑÙõõGâÓ©ÌÿñN䌋E(Ïý×Aïñs²*q¤¿5/*ºr5ÖZ9aá‡*{º¼<Û?ï?–í¼‰ÜŽò'_š»1ãÛ³+îß×øúq¿s2+Ûà ð¿útw\M³yÌʲŸìO¾¶pî›ÓÈ틨â È­Hún!éÉ#È`)m1p¼ Âp +0½Ý*Ð.!$ñŒÅ +oJ‰È©ªFp@ì‚P©Ê€Í®%Âæ²—ÏוÖ|(òT6 ³üxµ¿ÖtÔ6L•Y¸ê’ó±Zñ3^¿·jéš­¸ú–êñ1¥ØwPér Mný2 ?)Ë: +•s[õ!fÉ‘•¤è…µ´›ÛY›â¹²qdyB4»=ѳW+ámgÜ^@nWPÉØU|ˆü‘v‚CÖŠS+Ql«ÉÈa‚Í9EЀ¿‘ (ÓX"œ¶àÖz}d~?'h ™£Qˆò3>ý›gbk»ÇLtÕ"»åðâ–à +“Ž¼”ð‡¼ÛÁ÷é?–½¶ ÓÖ]£ivÇÕµGÿ\ûú‹ 6ƒ,,¢K¶àÛH?5Xè…Ü&J“ +©¤Ö@ñŒM —›Ž÷ +¤¹uÀy}\ÖPp¶—îO3Å1¹çJƒnH%‰w­[êˆÜMgLxŒæ¢ºMH5¡i6è©×—>ÚºýzenKq!{â‹•ùŸíøî|.±=g.fâ†ÒÔ•ý‹“#{&êôDìÔÎ]ïn>:4úz_ÛÄñ‰Å»‡F^Ûµûº»£É5'ùgýïÿ(°\{ôž<#Õ=!Æ–Kÿñ)õp¹ïh³íó1mQSâYÞí8øζMCo?Ýβðœ÷A¿ê +Õhyô*{j¥z 13>Ó÷ :¾\àºÔVà" ÏdÀÃq‰´ŽØ´X7=Ïòƒ”˜K<5r¥ƒ¦Yk’ôêWzØ7%»éü…ôÖØ/“)×È+_œßµ2·ÆÔÙ|gmÕ%Ña‘B¢=¸I>!_ûro£Ág×|\NBÌUt|¨½:öj¶ä3Ŭ·õ(mŒQM´ŸöÒm§­Šb©$‡»²T,ˆyÑ‹Q—]Ûƒ¬èB–½J_׫*WJ¬ª°£ +¦AÌ×¾WDÓ±[ #k° "RR$šá·±.ÂÉôÈ€åž~º £¬(`$¶Ô_ZŠt¹ì4]'ÆÝÍ’üî—ÃZ»¥Ì—–%‹ûïX)òlƒPt‘ÓØ+§L4¡Œ“½úÅù¿²Œá:ŠÎŽ¡eÝ·¶zŸµTg +vÙZ júòY7Ê!sÂSŽˆ­­ñ°2Hœ"…ˆ²½T5#ÍñYV;ÄìȈæ{õ€ åŠ*UT…p¡dÕ‚7—ºੲÒzÅÒöêQpbåh+CâÓ©ë¡NÌ\¤ÛÄB˜²›„Nzu;7án7¥®ˆÿàdåâb¸á¹†Ñˆ|Ï_¤—‡}MtòÛÎö|÷èïINøýw¤ÙÑÀfà’ H©¸oªÔ>’§üåfX+=HzʾéxÔùŠö˜¸æíêqW”Y^ÿœ ‰j +š­ùBG¢9À2-¢ÂzÊ‹Âmàw=H/vBbD"ÌS+ÕÑð{µ'2&³GIC,´:—{7)ÆÖ¦8›¢ˆ¢ÂŒAåj¦s8$‡NïŒÂ›+@Ã9TëW p õzapÕ[ÑyµùiQ’b·Ÿˆe²FvìôÅí»Þí³ê +Z£Ïw¼#ò9i(r÷h{{‚¬»öé3]dÑa¤T;FPýŇ¥Áë|o(+Kò +¥³cR½·‘:7Üý8gâšg†…ÙWF¯«©P£!nÀŒ„Áí3nH”ÆÕZ0¢b,Í‘ÍHÑz#( ŠïÃ@7ˆgÎO‚ÑÜËW1èÛÄNŽ÷¤u¬¯²8vÝ#DÓ¥¼•˜z#a6H"?DßG#7,R ýŽD0¹Á©_ýB˜HÞóصùm¦ÂUèçÝ=Â1£Åœc¾úmGÔ‚A+•Tû@»Þ¿¨)æE6œ‚AD€öÑ<­¥qÑn«c¨&ÄC +z!^ÇjÔP ›gr0Þ}ÇJÝõ˜­jå:Xk½šn{5þ0¬’…êÔ¿0ñ:^ÉàŽI…KË—f?ÅH¼^²°Äê[û~ÈûÎ’°”ë¾&ÒXã°”>.xêý ?‘"–•M&ìì²»LÈ{~òËryà÷èúë®zåw„ë ¦Cü.|ò™ÓâKñRòÆ8f¬5w P}aý?ЕO4šŽ¼àw÷Q:E·Ám`h3m¤ç m!¿§Ñíâ¬T1 Ym­ðÇæ'! ÷5áê´7¬Ì.ÁV[W‹êm€ê*v—¨X¿N©“5á?øÇñE÷„5aIñæØØM~ \]wë§cÁ…ïÆj³f3ÏfâœÄ|«~çl­÷ÙèðÀP§çl[öÀcø®µ?Éï¿ŠnðN:hO'K2û;}òä4:‡>›•ß—>;ý—¾ÜêOƒYñÄ’­IXZ—ÿø¯ÅÅ×ñs`˜ýëÃâ#@·¢&”÷úƒFk 씉ò;Üj„d4ØÉX§Eiõ¢ww·Ä® +^ŠZÚ©¯€®?]ñ0½NÜXg®2̘øFÊIêtê”C\Ž”#ëm1^7µ8 +”Ð_ÜÖ:|ÖË×Òèºu°Åon`,‘Ñ­ƒìáúCÒk—Ýžù0O‡:ɈTi4§;Û÷ȇÒ“já×àŸiÕ¼8‹Ž°Å ““²SQ+Vƒ¨l[HÕ m¬ªÏ…œþªwë°®Gà Å1•ÂRjzRª±)9*Rg[1óTÚc ¼Y4ð&ÂC¾÷kIw;öj Îï®O IÆ3ÔåÛ‚p¶†ZmáîBXšŠ8 W° ùg½[œôLy47zÞW¿Öi̱úþìÒ”»†ÂQ¡¦ÈÜý÷E{ÐÏ“ »gIÊM¬LVüh +êmÄw +yÌÅ(–Úe7 f%Гn%jß”»P +©8­š¨ªV«6LqZ¥“_8÷Òlï`„Ý{,Öóøä4SÀý;šÝ3QÌ;òÜèScq§J‰÷¾9?Ù2%9øÀø¯gòÙ×5·ýf|&À²aèÈÂúCB¬v¤”ÏQGƒwúë( +^2Œs_ؤ©ÅÐŒ"$%Z±‡95X-´GÚô$É£ÿkzXÕЧZŠC ºp2‘òòÉ´:ji©ÚD¦¡U:Õ›°O¼‡Úí-½Œ}¶ ŒÆÑÎÌÂñ ñ£†ÁÔL`xŠ?ºœuŠ“Es¼xó†ËØ:ˆŽt‘Üò¤44½;$µÊÄTdÑÎÕ‰·ö·Ï¶¥ŽXÉÀ_;CÀ)Îóü¥¯>è•d0Ù‹ïÐ4!p›6´ ùŒÒŠuEäÓè”Û&„-Ð/œý¦ÓyXx6R “0ˆ<Ìðt)îù¨wJŽsÃo>¾ºƒh ê.îÞ>H`4í"W®½y° •üß¾Ô¿óå…qŸ|Ó°}¼³íÈ.ôPØû3”G~Ù•2—Êmïºz¸s¾ÅŽ46CBbˆI$,CYé:Р$mYˤPÑ U/šÖv2 Mhm?°ÁÓ4u¦‰IýPMâÃ&MhMý4i3{Þc'Ðù“íOÏû<ÿçÿüþd‚ïŠú[†ÊB÷“OZXŸ­£ÛL¬væâw§ü¢ãcp±+ÁU5s²×=\5Ab£hj¦£oÃ~Œ@ú‰C°Ñ/Ç-‚¢ÐPLE¯U2X¹1S4)ñÒ@¤048™*ö¿%抪PúäiÔ%sã­òUÇÝ,A¥òËjHiYç² Ø±»C‡°ê<•u'¿ýŸ—Þ|uŒÛÐIcŸ}ßšÓÙÿ>sìçJz§ÿzª9zâmÚ]yêÞt;ÐÌNÍ©¦WhºË—Š«‰èÈXù*£Ïg¼>³eÜæÞWŸ8Üú ­Y§WZ{k^kŽ0¹Éˆ´ëÀïô>ó{Gëáp•¶Ÿœñ亥3ÓüÌÉ÷v•¢Ã+»÷;ÒTØÓ× l»ªRû“.gÂvhnQÄåx”‰á¾€0C~ fM†² §xM°)觽)^aFFp^ã Rîìþ£98¬d­=ˆt×&ÃácȬ"6 VÁÖ÷3E«–³F$æð¯>²ê.Gë©E÷HBaN”ËgÖkÜf¾ë«±¥›ç[˜MTèÓu3î(›®]ùçg1‡7„ö[{_%Â,Ñ Mdû\JöºAl;Ù•ó/ÊEŨd#ä3‹: +’ƒÓNÄÈÚ‘ŽÂΨbŽ»ƒÀ€ñ>UÄû)AΊy‚ºÅQ  (T²06[§™ã,±a+óñÏx…!_›ÛÚB¡¹\¶©CÕp[›k¡'blÓ2¢koöV*EPàJn¾› ֣ѩÓÑË¢/¡NŠPÃ!-‹]Hã2IµUJEÁhŒ¬EȬEœAI·{ +íß|ÂìQ¹ÿÄSAÜKúz1îG܆äÜÒ¥e«!ñTëɧчûÓÃs‘‘°¿&ö²efïÙ¼5™6(Æ´/÷ßCKïøÊPR)e»r©bcà>-pj¸}4@ü²sXŒè´…°´§ï1)Yt_Ò×{ØÇìê@-vý':Ô¹¼ÕF´%5J/4¼-¡¨™¾øà24V¦cø(³àûÀ)ÍŒ–Df¶JUtFbô¶õíÎ céÿ59Y ô ê*£”4;ŠŸ0bYË´æ) <^—ž@Ê6ÒS¯Uz%=E„ÚñÆ"é¨,g^¶ +›°£ix~$hùH“;&ÿ3Èýÿ¼¨/óN)- }²ù›×­[r¶rlhËÑŒ/ð­„ZÈ$šV%nÅä_,¤g;WÞhÓú“{¹¬‹$M‹Ÿžé'%ôÞDB[óHÜ…³ÎòÜ˼AxíhïâPAôf^G›f©·¾§Nxë“´çGf±×Í%¸3¸Ì8t²DÍ7¦ ˆÓiéDØšÔù–Ä ] ïXù 4±FÒFÉd¤cÈ•"r£Óö¯—QAt¬ÈÉéÿàQÛd Þ‰…Ž‰}œ–N%ÃGGoßà®D+µÑ£éÑõµŠºq ßqº¥ÊÒ 0]ª€Þk%›¶w~ƒ‹„Ïpµý#•±ªð`û—O’õÏÄ5äΆ¾KÿÞk ÂTº!š +4ÜxOA§!¥` +´jN©ƒ”B@'­ ¸}-2–üvñä ˆ¨íe#ÉÁ"ç¤Õ{ð·?úá7ÿxñO¿EöóËÓÌÄ~¥[µÉ35ôÎíûjÃß>þÁ­gîàŠú—/±yîÅ›&¹Øáù«dïgzI†ÆOQ5j¢QòƒXvG¬l*—òP¨ø„fˆÁJ³)P +¨9íÆ‚;Ðe>®oWLL-õ&W°–ÜëþîÉh‚åS'óŠ4 ´| +ÃTÐ/ÌÙ9&ñó]±Ë1SØgð¤æÞ¿jWWçK­µnrst¥6I.z–ó•á@i:¾<ßkIz•¬5 ï%úXÚ×Ôød7ÑHHG^ÿüJÛÎÙ/%Ž¾;^9>_Üæ—;ô!`ãÉFÝŽ\Xc@YŠ.'ÏêÕ!•áR_†aâ0ˆP °9 o#º[3ª<Ûè ²{Ì­·…GÒ °Œ<³™uc ¸yÞm®TGÃü.»Ç;—ßkž]¼¾Ù6¡Wf£M¾¬»ÂOVüê¯tÍN³÷ÅTVƒÛòöœxxÿÔT¦R.Ì©Ã*–"\t² +u ¼5 +Eƒ>¯[àÍ-ƒ(ÃR¦ø8ÒÇG×°Õ¶MÉcäÔ*“ÉãÜOp–†HPF1ZØÕÙ3➜ϘÁ_.ëW×.<£Wד=¿·±PŽýt)êš"_l4ÏJzªNûüÁä„ÏS4XxÞýìX*±´(M¼)5ùؾLÉiò¸îƒÙ1ñÙcv~ÞY{ø%>ϬS>*Ûñq—^ : ÔnÀf¡b›ñšÉÃa€qZú8•·ÍÁçÜs®¡Ë†ôvèÈú’ºàtà£FO¶~K…¿½xin¼$8’ +6ÕmL ¨¯Hƒ3õK”µj§O]vþã5ýo4ï +ÕwªjgŽ«þäüsÖºUsö7£±Ýh°+Å’?ÛîÌá9={©×Uá°ðµ•÷ƒá¶ü.ÏÝ\žŒˆÑ-å¹Û\¡ wµÒ*B7xTáÿvñÞ2C7"%ÍKšŸò%zý.á±GÂ+ªm˼Æù¢êJgÇCþ'½už‚žŠÇ*"ž×Ç‚Y‘êU¯Ýê…²¼°Ý]µuhµkÝêHug¹mÃ`ÓíÞ\U «ªä?³®Ydš¯WfYí ZÛ|žbÅ+Õ¸K”E+ +rât¨ò$0<•ŽòÒ’‚]B&¦ÔšI‰³¼´ÉœÔœ2Ò æruJbWðZ ÈâU+™_-- {YØW–èªñÌUvßš)2Ò¶¼ðÕ©²†öPr¤eQIYž£Ö5½k扎ÞÛM·G56ÆbòÅHàÆæÌ[>ß-½´ª²¢HP#«Y¹¶{~|ëK_íÆ CÄHïqí႕סdáÎk¾Ö8¤G¨§s÷±,4×¼0N¿Œ‡2Lßr]ÓoéRœ4¹ ò’Ò§H('ÕfpNϘԅ$ûÊaö—"¥m‘têzä£Jïb\¾ õûx*oÒ×~DÙòÞÏö‘f;®L .}ƒ)¢\ëâò¥qçú?®_Æ´6‰nõZÒÚô©Ýc£|PãT¥î0´DLíGÒ°qlÎOª)óžÒºx +á9õ*ã?læ5@XýŽý7ROÑǦé«R _›“&•ÏQ+OãcL¨…Ì¥ýô/bÞ®è´+D”ma¹åŒòÏ® Žñ¹Ê,íBÔIцúŠŸõ:‹U´‰Ñ6¨—#"ê¢úb Àú<$äýã»Êz<)ÿLŸQ'SŽ#͸ûÌØ&øÌëpCÕc,1Ëo’1©ã8ÁïĘœ%9•Kˆ/kï0žY“ëë|²fõäxœñ ßÛEδó¹IÆeîÝÂ/ýù°¦iÓþÇɵ¨¹z1‹Ë>Á§Éa9 ŸÆm¨kò6‡>Á¥Ð½•Kq7ùä<< +ÞXèàд™A¿±yÚnDõŸøœqö7!al#§ÌSpiæ&r`|>„EÍhVvศ £yïδM.E?ù´æ° ±VÛMÇM½¸FLQ¹^áܾDìÇcËøq.,­ ÿGˆ÷¸2u ”e¾ê”EÄ Fó=+ògâû\çÜp²ºlñìÈÙ–AnóŸÈsܧnG>Ù(Àí(¤^Q5ñ-`û:ƒâ÷†’‹€ý °8”F²B‚98:çJ‚>+ŽdP)KXû]_îO2ð0ŸªQÀË©å¥~õ3øb@MÝÿøAla×°ª¹Ödäq\Lé&±OŒæáÅ…®Ö‰ +ŠÙÊÈ*åjKÖ)·Z²AtSSR³)U-Èj0lÉ2¿AY²Âþ)KV)hÉ:åYK¦Oɶö@xß®A÷žÑ©”; +"›7õtlõ÷ ìI†“Ã;î­ kqaæ¿ ƒpcF±)þ¹à÷Lˆ¿lÆ&ô [áG/ûöRIÚ&ÙÞí¡16z6ÿ¦–’!è·ÇYå»\펼6µÙÞ˜oSÛÒ…ùÞ´ž\6¬¤Óáüž?«¬|ºÒïÿ]€ÖÝNe +endstream +endobj +978 0 obj +<< +/BaseFont /EYOAPA+Wingdings-Regular +/CIDSystemInfo 1291 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1292 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +979 0 obj +<< +/Filter /FlateDecode +/Length 2401 +/Subtype /Type1C +>> +stream +H‰|TyPgïf˜ntu0´8ÝÅ@9”5‚J‚!2(¨0RÈ!Š0 00ÀŒ€ÂpŒ: P¹UäDñ ³k<kÑuˬU±*oÈÇVm¦j÷¯­®úê]ßïýú÷^7ŽY[a8Ž/Ø. u ÉQ+㶪UËקÄÅﵤx3ƒ›)k³ãù¢ +GñÇ¿Šá–-¼ÿhÌqÖ”f…㯿T¥ W“²x/Ÿn–Ó{æüÌ_áéé9szóþ ªÝ +^ž“™¥HÍäƒÒâUêt•:.K‘àÎû§¤ð3™¼Z‘©Pk,Á„xe&¯Pf%)Ô|œLT +÷ÕŠ>K— HSïåU–Ìÿ¸{þO+^™Æ X|xšÒâɳ„`&—–à! ¨fºÄ«²Ó²ÔJE¦»Çù¶œt¿šOPìÁ0\x°¹Fa˜Ž-ðåæ…a+ql=†X†m±ÂäVX†Ea˜£ ®ÛŠ©±AœÀðýø1üU´Õe‘·hŸèu ux™x¿¸K|øˆØNÜ'YòyÇFl[h¼j~{N§«"£µùðÔÖéÔ£[4òƒ*1üƒ@<ºNƒÅ™®$§‰Øüàæk´ÅBO‚Æ$H‹fÁü ÁÓï~=8 +,tÈsIwJüÄFrÏ.f18áðd"s“=¸ ­‰¼?$~:úýó÷R˜¿âoÈÕÝ'%1’D´øTï`Û æAgr W*“É"½Ö: œ”¼.„OÍ‹Áï†0‘ù<¬¤uª¨¢ š·þ ØûóÝ÷7¾)(èàz`±¸N\·ŽA;Ðz4¡@!/øzò^]ÍiN1%À›Ý€ÅG!ô°M4ZAë{n|Á€Xºõ=÷`èÚKX$…yÑÏý‡Ø™o3¢™5~‹B9BóiSu½©ìYZ€Üþ¼Í2q¹FS'AqÍš©UZ ¶htjýïU4µŠ”4ÁÕÜôGÜÞ ®¨ÆÜ„‚Éëf h… à(dÁ6‚‘C”;QZϼšh¼É]ìk½3.}˜rgG7Û³¡~ã /Žâ Ù „LmÌx·22tgbÀ¾‚²²BNò›|hX g€Ý…Ìi'†Oåú6pM«ë#Žjm „È?ý‹æaî­ÌþØF› +òzã½;Ï¥2¯ì:Ëöm÷?îÄxùé‹·[šÙÎ4ëfUm—F&(ÙB2T( Ú œñØÖ"ºÐIkû&4“ D¾úؼÙ6†æ~Ë­êJ<Þ-íèhº9~u_~;ÛNâ¦Ø°:_ù9{ ?9?"ž{’ѱ/YªLÕ„ÈdÍÍ»YIŸˆ%š. dƒÕHìÚ Hø’ò3ìõ§ ƒRð%Ávë´néWª¼½l"Å]7®1cuÙZî‰Ö”¢Ù¡ÈAJÅúŒ®w}°î|[NP~Gw‰©F „ÐEÆ"C1›^¬ÊÉ`R5':û/6?â$¡…Àƒá,2{Ábº(;ãp +,ïûᯗÆ{OêKê¹Ó°P\“´ëëDmsvŽG^¿ºÁg7‡*k;8É;,AÂråÃ"ˆ×Úu +yƒŒ4ÏžŠ¢Q¥ìÌŽ=Î ›ÅnȧŒCÿtbävËðYÖDPû+ebð& g £w¥æ!’D²é\ZWZ`(d“õªŒD&rÏ…Çcm7îôµ¥)+¹²bcq‰TÒ^wAòÌȯgð™Ëa]^SqºC +L ÌB+Q?rF$òüÅ üïÞ¯¨ó‰ Î¤y¡YGSoõbq!cwëÙ:;!´ä…+Ìü¶¾¯ƒ3eŸG&m’ËëSY%rg<Ìgž<®½2ÂݾV?ùB +Í$59aê/ï`Qj¡uƼÅlº>3;™‰L½|Ÿ£Þ>;w±ÿl«&©Š-+)+¤{)¼áï°Ô¨­Önd@YÆ5l2‚š„~²ª¬¶¢Šm¬:ÑÔÍ\jL +åPƒPÔG·y‰2Tz†Í*È9«µ1@+’’fY§ý>Ç4èìÍ:aˆ:òç©´<11*ºG1<ÒÛw…,Mê•3BùT”v¦ÖÒt*Êñ)Ý]úÀè)t‘µeÇ+ª-ŒNö0ýMÉajŠúI`Bž!Ò'&:#‡=DP—Šï‰‘aŠ5…m”J&tL-PÂ~lØ,‚›f#Ö:-AžÈˆåÂÒ°0ÿGáŸá²ô=rçôˆ¢o´„®Mß-Ïy4Ö4v[Øoô•¶»-|+°ó†MÔä0Š¢;ßD¨ú³‡™ß`Ö ôoçWN²mêè=¬A´xt†Ó“|£THÊ¢è*c•©’í9ÒÙÞËŒœ‰Üž˜ÞÖUªK“JxA‹—°F§=£méH•}Ðb‘5eGMÕì…êÞ–ëLãqÃáZŽª†u$UVž_bÌcâ‚Õ_dp‚§ô/ÅÈ0í6Ŭ“J¶Â> +stream +H‰bd`ab`ddóvtw ó×ö­,ÊLL (Ê×uÊÏIÉÈÿfü!ÂòC†Gô·ùï>–¿ +Y¿æÿ~Bðès!&FÆ[Ïó €Ó3J --t@¤ ˜4×Q0200“& +Ž)ùI© +Á•Å%©¹Å +žyÉùEùE‰%©)z +Ž99 +`#ŠŠR‹S‹Ê@‚ç(d+¤f–d¤)$%Ó3ú‹RSJŠSRs‹²òA2HÜ4> +stream +H‰|TkPWÞeÙ >š*é¢fíî*±"* JKQ±ZQä!âƒÖG + Ñ$€ jÐ"8¨+UkÑ+(ÅgÕ*¢¼ŸT•:ŒŒ=+gº¡ú«÷Ç7ç;gÎwsæ☣†ãø¨¨°ÈùËN\”ª×ªÔazݤÅBlR‚Jor"ƒ‹#ÅÑCi4å÷õõ“pýcè^5šìuÆpüñ‹9ºõRn¬ÆÈOõóóò°£ÏN÷སL™2€>ülµ.Zà#R FaJŒÑé×ëô*£ öäg'$ð^/}²ÝùoG¼ÖÀ Z£FÐó*)«•òõ‚š7êUjaJÏëì‘ÿеÿSŠ×&ò’™¨µ³£ä4ðªDõdIE7P%F—”hÔkƒçäyKR× ü ^-¬Å¤‡cc±qØdÌ›†ùbØ×Ø<, ñ,&í[„…`%XˆÁÃE‡x‡ãFÌ%²ˆ·ŽþŽ[–ä^»/à~vÈu³ß‡õgS~§Qì"¡‹B<ºLƒôÊú©U6 ‰Sâ%Ún!;“˯•%ƒ¦šæ¦8kEÐÐw‘†”TÒÞû’c)”úÁ—줚ACîo¤ëa©è*®,ªÜsÚÉBíQï‰Ù»º-)"³Y<Ó„?h‡üI<°Ð;Î^ʾÉÀˆÞŠº:®îfE'8(×< +½Â^ ó*GÙyÁ™Û—rí é+ +ªîtCÞ9ZàæŠB´ñyI¬üm.PžÉâ­¿¥´Â«VÅwàå•2E8šŸìxÆæçUVÔÌqèi{ïë‡NPŠÒ±¿]SYsN|“úΊǣP¼$=>øRò4iæêz(lZ…ÌvâK;T·R³Ojxþ0}oxÑF§NjóO›n'½ÜÔœpnÙ~§|ÙCW¯w(/müU{”=¥ +-õdBƒwl[͵‡Ð%G ª˜9u‚2 l¹'ëEÉÃË’Åî{8¬±°ÆÅ&vCô½þ¬Ù ¢ä/Lwľü¾ îÙˆûï}éþ12$ôú n€?ƒVüÔ»ßU†&, ?uþ-˜ÈŠ®2y év\2äÖ‚ü¶ó ¨ž)ÒE?—ÌãæÊ*%ɺc{{HxÚ†ö@8ùcEMI5ó¦hN —!C¡y® Ñ ¥âüÜ óþjºTqê›O)Ò CÈ-0VœßfÎÈÞÆFoŽ‰ fV G®½¼ôµ™“óÍ"ÖŒŸê ÄñOi“>nË +fâœ&pì¹Ñ +Ĺ㦭eÜFÒjXY¼ŒA^ã†& ÷Wîàvûâ>ëAN™ÑþuàZ‡Ÿz +EÏ1’é¼Ý–’ýÊpÈ ™†dÈ ¹uL€ /ï+9Ʀב›ãS0ã=ó< 1syutmá/­Ì›C>9œ> +stream +H‰|QiPgÞ%É•Ù(Û¥4«»[Gëň1¢ŽR(¢xkf,‡`¤F¢ ñ( ÑjCâõ@­H=FÅ«BÑÖ*h½ë:ÄŠGíè»öÙ~Ð?ýÕýñÎû<ï|Ïû¼Ï’„<€ IRœ0~ú„aS +¬¦ Ãt«ås½q¾)Ób6tNE‰#%µ\êÄ¢áÈÝ[~ðï9 +hRA[¯‹½)!˜ É;m_Zà×Ù9yâБ##Ã;«¶«Ž#5MWÕŠ1K¦QÔØòŒómbBî\‹uÅš‘g4Dˆ1f³Ø%a­F›Ñjï$ÿõ$šl¢Ñ”—c´Šx˜mÂï­Fƒ˜gÍ0çgX牖ÎÉ`Öÿ¬M¹"Ögåš:‘>“61#×0«Xº¶Ìµ,ÊͳšŒ¶ˆ!ñúÄ‚F1J4³ü‘D_¢?1„F 'tD,GÄ Ätb¡'f=q¢Äb*±™ry”¼à¸ •eʪå¬Ü(ß#–×Kíõ$®ýêeår©ôýôŽR +ܨEca½üÑY:AÇ:e•ÖÕÃX„1%a;;Ô‰hzO•ô~8þ¢oµ@k +ýüz<À*Ýák”I60²®J×–êwÉ‚"‘f$b‡ùCdsƒoó¾à¡byVfñLnL|íãRᑼ~mÍÕ›ÜïÛbÒÊ:'üékÈÉ'/COHÂ9^ÁÍ1jC…o‡?ä;Ps’»R' jt4ÚóQæÜâå6~áòüÅËòpõ¤è9Ž'pÿ)¶ÆÀJ`dP'•°h@ßAH‹4oÃǪÁwa< ü'ê/”eÐFš?î‹Ô–g÷>hèEhœ¦ýÍíŽüàËxz1í—Ñl÷k]”a×é…MÈ@öâ <â9’ÇÌ4'f NŠ¹·ê†”+Õ•> +stream +H‰|OHaÆ¿owgFsY5œMÜØý Ö?ëf º º´V.mˆH›ufuÈYf&[ÒAkQ¨`z‰°aI¡‚E]*ê]”¨Kײַ‡f¶K§.ïïyxŸ÷ãÃÈãB㦣ÇRýéÞ¶““š,ˆiMíèSÇŤªˆN´ØjðXû½N*:Ñ$]Ò&ó¬I6Æ$v8*Ûûš$CD)/h—‰ê$ÿ`î?§ˆ¬»‹œQd‡2†mêDPÄN»E­\Q¯(†&Kz¤3•9=YH¥BÕ"TïBŒýohåÑ3ô‡ VZ·~¬c[[ÖÝ%5SNïΰ0G_ò4wØf)¡<8°{›Ûe‡*3$¨Í¬õœw&êLC^ƒ7ÔMó«mlÊËÂH.wþìcy%ä›5¼PnPÊy¤a:H¬ÑnhþýõLAç$ikèõðOïÆiˆ†§’Ùáâ;hŸ AÛÍ…÷+ßÂD9xC?øÝÐï9H9–†÷[Àõ‚™e}%à¬` ×w[u~àè…YîÉ*óáÛÇŸàkÚ¾ø6§3Å|pñsoiy~%°ù w.’êê&¡=ÌaÎwÍ´¦L›¦yËdé%ó­ÉÙVÑ„ˆm-™U4g~2«ƒ ÙaouÉ[³µöÕlÍ{½V¢¶ù? À| +endstream +endobj +984 0 obj +[978 0 R] +endobj +985 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +986 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +987 0 obj +<< +/Filter /FlateDecode +/Length 13731 +/Length1 21179 +>> +stream +H‰œVkTT×þö}Ì‘—( Hîpå!Ì8¼‘‡2Ü„q^‚‚ øÀ¨1¾SLª5Uk”$ƦM®Ö&Ö`’Æ&ƨiLÓ&i×jm»ŒMšÕZ5tϨY©]ùÓ»¹œ{ö¾gŸóó}wÀh<U³kìécRóÒØs™ïº–noïÖ—>ü@逜ٲr¹²¡mÝAÀÐξµí½ »…ÐW½€ñî¿¿°ku»gç!0Ÿr‡:Ú¼­Íœyp®ä|Ùì0?eŒæþîOìè^Þ¿«ñéÕÜ¿À9÷wõ´xázˆç*ïâþ`··¿W¸Aa@u ¿¯,ñv·™v%;¹oåùÊz{ú–”y-®¾xﲶ^éÅ㧹ÿ÷@Rí„lí£¥À­¡Û­ôÚÎ*2î^ÛL·L_¹PËo 1ž0¡X‘’ä λÆO4žoî8¹üïü÷ÅAQ’ F“9`Tàè àа1ácÇEDFŽ™{Ÿb‰S'Æ'$&MJN±Ú&ÛSÓÒ32³²s¦äæåLVèÈÔ²ŠKJ§Ï(+Ÿ9«¢rvUµ«¦vNÝ\·§¾aÞüŒìOrŒ¦€èð¤*»¾é_Þ–·.ZÜݵäZn~^öYiÉd{`ßüÆö䢹K;¾(\ó,ü¸î𯮳 ÍÅ·æõ@n”:ü¥!ÑR“bšéDú?±@q1M>å`ÄŒLÏ‹OÀÄÊÙ²-ãÓ}Y$‰wyP8ÍxlÀNŒH¡4‰Ò¨†¼ÔIý´‹ž ]8-\EÑ,ª¢{]IUÒ”<åYK\\ÔµÔ‘ßYâ|ûñ8à ñžÄS8„§q?À3ø!~„gq?Æsx:Žâ~‚ãø)^À‹8Ÿá$^ÂNáeü¯`¯â5ü¯ã4~‰7ð&Îà-œÅÛ8‡ó¸€_á\Ä»ø5ÞÃ%¼ßà·ø€¿Xâwø=>ÂÇø_àøW)Ž&0¢¬G7Ö‘•[;óþ>ÇgXŒ5ô­c{ÖÓÚHh3Éñ%5PÍ£¹4ŸÜÔHZ@õTM³˜ÌæJª¥Ù4‡ª(˜h4™(ˆÌÔÆLmg¦/¤ffl 3¾•,C*ÅR…S…Q-¢^ZLK©‹–Q7õÑšJShåR!呃ò©ˆ +ÈÆÜO¡šNÍ '•Q1•S ͤRÊ$;åP:eQ*eSVã~f¡Ï–cÚ¸]‰UXÈm'¡ÿN¬ƒùy¯u± ÀU¬Å>  ø­¦å´6âÏt?­ ‡i®ÐZIðîl¦µ´Êo›ñÞ³»Öÿ5Û‚¿ú=¾÷ùf-X!ÌTºn ݹÄ_ÃÃâ°¼I>"Ÿ—/ÒyäüÏïm>ëÌ’ç˜=O2£ö3×v0÷¶3·1'71?×cÖ0æUŒµyÛ终ѵ3›™ÓÌïzæzóÞŨd=”³6JY'«f*+(‡•Áê²³âYŒç ‹ä«òn9Lº)Kšd’ ’ A¼*žßÅ}âq¸Bì3D»8IøRøX „õÂ<¡^¨4!_Èì‚*‰Þ¢a:D¸êì¡Ý´ƒÙÕGM~œ0ƒ}H_cÎ1ÿO°Ž³.|¸°^žaô‡ÿ~ÖÖÖÙ£¬º{wáöÜÅïCíÃìò£Á8}øì°8Æ 4:pT€Ùd4È’(¬ÇXNe y@ÕÚëlÖcÉ\‡kûu¤¸#r=þ¦ÀßèÉœ!÷¸lÖþÓ…d›õö?jÖ¡jGIŒ×”R¥ÃÛª‹ñÜ*ºäT½JëQ‡c Ömáë(,1ž*·ïAŠWJ;tc|‰WGµÛ­ËÎ)žho«§Æ­ÚÕëÑvõ +ÏòÍÙ½­ßø¦¯^ùŸÁ…×ý®Ð°ˆ\›u˜asev*¾E”è¢ÓÛÙTܤ٬%Š.ªÚ1dçJ§êP9 Kª©òaål‘%ºÃ«ø×­Eó³ïQ/Ögx<º¬jœ‚T­STMLŽ´Y•’Žb›õ$—yäq,T†¯U”£‚8 ©:yµRÞ0G­[w4y|óÙ¬r†:y¹i°Y'Û¬¯Û¬…zx² ‚ï÷†ÌÆ +6"Î]-`ª¹é”È¡SF‚A0‹)iHIµ„ZBù&.W–›šŒ°H/ßÐ8EÕÈ%æþ®X1\}¦p}q:ò (¤!¦Š3 ¬0äQzE¼Y2JR7Z²!Р=)Ä0ȵß0È+˜Æóù'¤ôX$¨q Y™ÙÙqAÜ—‘ž•™p'F_Å þÐ4òÅTÊ îÕ“Ö–m9^»·¡ÈWæmš[.æ°·voÓVŸ³±®¼©È¥–ßìs WÿÃvµ7Ugá{~÷•{ÒäæÕ´iÚ4iB(¹IK›ÛÚ¦MÛE‘ŵ”Z åÕ-åU,b°+T\A¥‚« ‹¯‘qÐ]uyé2ê¸ëcœa‡qÜad×a‘Þî¹IÊðÇæ6¹3÷wÏ9ßw¾ï» Øáù{lz¸è÷;—n ·Ï«ëJJ»_Wò¡,x‡áÚT¼øóëSO©×o\ó=êûp–ºªj‰ë9jx<ÖÀY–#y#Iƒ€¤Dá¨+§­»f¡ë¸¹òvÖ¢‰#øí`ùkšÖ¹ÞFÝjFô±>7ƒLf-Kð >EðƒTO~/*$S„·õ»DíÎ]S?ÁT1=•7s’F8`vZk3R·:°Î)DñáÔp]]8ÒØ 6„å†úp¸A;ãô” àthÊ7ʸœÒžÌ&nÇÑÈ&0É ’[ìåÿƸ÷µD]6õý6;ŒÉ*‹òÆ]iÕœÒÙ«“„×gP츅FÂg§Š`ýÄl’<…n¢—ÎåˆÍ$!ý¤â"â‡k_^9™]Ï/ U~ò»õ›ó¶îÈËßÐa;Ð…Ï´½üýØÇê¡)¶ã¤úã;ê[êáÀŸú ŠNi¼™ºE·°#‰J2\”%èm°ê–hg20Gd'pΗ5¤}ŠÃluسÁ&ã>/V¢J´Ø\äewAÿgWfvóªå˪KKk:Wõ5ggØÕ›ÌÚ–¶âÏÕ N†‹‘Ä'Æ1NûôwUëµ)z°Š³8‘uO¼ˆG0ƒà²@ÂäC<Ž<ÆÙ„‚$O°e)ZÊózèÑtÆÄBX«?´­ÓÊâÒÀ[ +⦠‹„B_TÁÍt¤Šö@Û›;ó~±²²kcVf™hÔ}Óýâ²HIç2uÏ:Èüõó ³ê`gggÉGaè?wseÅêæüúGÛ«k-_ýäü_Ží^£è8®Âí®Àn€ÖÞ¥²×ÓØEU (l¯ÍJg§!KˆÎ‡I®&må$H/O€§/¾}I#úLŠà?‹áÈœDC³"–D¨.¡°†B1÷Õ¤%æíÎ"r±pH?“bupŒ‘ο)vbÌðX0a”¦ƈütš‘GQ%ñ7j ¤G"UÐŽéõÇkDZòrGãòyûìüzëÚwÖÞ²~ ÷ÜñcÝˎ왿­ñ±K½ï”uÏíÛÑÃWoï¨l™Suh÷Ð热ýC4=»bàäâÛ_6Å&úGŽ-»äI*=Mkã[zîݨñ)ˆN`§NÊOÍŽû<µl‡™z$C <ݽælßÛª~þóõ úÒ³ðéûü@ðìžOµ*w¢“Ð/£“;´i$‘Ò%06dººÈ‚óÿ¸:}×÷Ûáºz¾@®×þ7¢Ó‡5§'çe¹±>"7jOó¨ÂY|šJ×\s†dÁ§ÃQ€Nƒº¿Ãn²±‘Š1îtŽ©€èÝK¤šÞ*-Õøªæµ$ãE#PpŽ.`À¹¢³:ὦP¸!ñhBµLýDQ‰s)™*™(’rQ¸²½´Õ™!(yöL4Ûl¢3ÂÖâ‡3F+ZKdÚ+ïx RNCÂÁ'AR¦õ‹çá®J[îݽ¾óôªÒ֊͆òƒ³¢óæWöÖ>ç ZCÓþÏú¦g:ªÖu(ÝKÊB%.Çý¡àÿ#¼Úc›ºîð=ç>œ‹oü¸Ž‰ãWìØñ#1¶c;Áq|ó6!@Hh(QB€T´<ÆÐ5m’––Ò (:`À(mÓÇ2 cm7Z©°n©Ð.ÓPU¦Q©¨U‹´iR»Ž„›síмØ"ÿsÏÉç÷}¿ß÷}¿ªšå½µ‰‡c-kdž1šÉ"œ› òÊ; G!‚H“ƒBA¼8綰ۙ§âh–Õ\¸8”g5e´¼ZþëIK/î-) Ì@?Ã4ÐËýÀ&•3™Oéƒ(°²üƒöòYŽœšªãþà‚ÖúÕŽùÞUwÏ-Ð<% •K‚ž‚¾Ø"G)~RÓj¿Œ(ÒGƶË;lyV]()¹@-Ÿ³þöîP¿Þ¤“I†Â†õñ£Ÿ4Žï…k±F„'îPÇèÝ„‹(&¢Q¨Í@Ý‘ˆ+86C§…•%!À˜3zcnHÊaƒfV+ç æfwgû ZúÕ1Š‰ Ÿ…nÀ1då¤R#ÅS»Š€„SƒiB0hÓŽ”² ”Í4jݦDªu÷ÂÃW<[_¿õˆ1ò§}§>^s¢åì·ñÁ¯_*Ù™ï|º$\x©bã¶WZÛÏ?›¨¯¯zoiߪ—È+=fe¦d±Üy¸uïJEŸn<9¸Ÿø³xxèn·jùñM?í¯€å¢‚znÇz7Rö‰ëtÚË +ˆ"Á¥% °<0Æ”(à€|ük@]Ë£¥¥ÏÊ¢íI»l¾ ‡»R4â@݈œÔŽôÃ…y“âêé¶Òfñ‡‡~#^»ñ³mþ‘ã­.¡½¹ó™}ŸnXsfü…Íß$ß\*[w^ú5ëB¶s»†\1“}õÈ—;Þé¨ ãÎ,D oN¤ì !ŒXc`$®D´xJíRµ[ ³¥¶/+@ÐDRRXz’P)Ìd°,þ˜Ÿ%Ž"Qɸ`š™¦ç®T¯,*; ÔlÜþÇ'Û¯D¶åÅãñ6!ºT1Ü~zñ–5¿¾}hx*/(ú´œüvÿËâg׋]¶”Ëùm9Ô¥±¸Jï(~ãÖÀ;ÿ|* 1r‡BU.#VKò²u¤ÑŸƒQˆåC˱ó:A!ˆYƒYLX²FcÕR¯6$a5«ظÏíäi> Ëà€p4hNE<_qíN\: á ¡Gs‰ˆs9my2\o4’!iVõv—D'>¶âqÅǸ‡§,?hÔ5k»—TëM–èâ•I~«xsCegÿyG&)—Z2.'3óÞ*7€ÍÈæÕ)Õe¯-\÷È‘‡ Û‘®+4ß“‡{M¹* l“<½h×|™Wu÷oŒŽólhìÊÏßÖð¸7#›¹{Q•“¹ceÃHK +F)UÊ &"^=B¯šˆ ~,/±@ÒsÊç’³PÆjm\.gàâ ¢vŠ—!þ |. j%xx™B¾Þ¤pí“kÔ$dÁr83ûý0¿ÃÀœØ³ï—kkÔšIÂ}]u‰ÁHÿž#x\|0ƒ~d®©w +0äÿÂ%=Í£hšÃh>P°“ÏË`h*Ã`­À3¡™IJ$çe( +Y« ÷)šî+D2£÷bO>šdT/.M…[ÃtjÚgÌ:…f§ð˜D¨-®×‡›–gÄT²¶+çªÞG¿ì¹ ú¿{åÓ]îDóŠ çß¿{þ(ð^Ýò2+ÿèšÃJ*ãÒ2ú"ñUã|SûóÞç é_Áé¡MU•–ücâ×ï~,^<ëË5¦ùeº¿Ä2¡²4®ÅÞ”g5ËY‘»ˆKrµ\ˆ p~®:œ›Iñ¶Ak9(IJŽ.6ÃÀo‡w.›Òr ýyçdÝiÇCqŸfÀàhe8~£°£?GRçôÌûÉ݃'pxvˆÖž™]qrÿé6Ønv¥ÛÁ¢Ë!|Dí_?µ,Ýà2M‹%s·Çä·x¢À¦n‹t†í¦‘ƒ»rhWŒ©aÈårÐ0˜d05Y4°§ŒÁqÿ¸WöìŸ,fæËg½’_ˆÛ`/zð6àý!CØ4sF.›“Þ‚–ŒBƒ^•?9›èQ(óHÑÕ¢ÒÜ…g¡ÎÍ_Zúóf^%×—/«Ð«gbÚé¾¼º®:šéªŠ=LI?lª”†œA/ó%‚Oô€Œ¡ÕF(VÇC«ÍçìœãXðN`Ó#èŒè‘¾ô#¥$ÅL‰‚Œš"˜s€ˆDñ˜[eÌ®Pñ¬ø¯]OèxÀ—]ãBÓU¹®z1̤4Ïo3®"¯L‡½Þ6qKözýb¢I¨r5¤Æ벧棎«æ*¸WÆ•r9¬°¡ 1±I¬¨À#b¦í ÔËÀYSPÇÀ¥S'$¬cŽ¦°32€j³{únª;„§g!S<¡`˜ã¼Ô?¿x´¶NÉS–¨8¤IjÜw?¢xE²µli8/‹´&<öÝVa­5oMÐ tZmm-NËãNë1OB 3˜{ÈS%[Æÿã>ã¥Þ_Õc6¤r ¥ëÃS¢ÒØ>j«¤½ ™©4côì×™§zQ'D|ªX†X­›ÅMiàœœËà‚R²n 4€sNueðl!Èb`åtÄŠŠfÆAšþ‚B«FÎášÂ[Rñ-½vuÔIŽ2ÒWS—½ »¹ ¡á»ãe³û~z™Iò”O©ZK÷Ø!Þ¥±Q#ã³PJ¥­ëŒ y‰í4v!WË@ûeN,µ¹õq‚îÓRÈ3éÕÎs¤ÝÂë$EJ)—òº€N’º&¾õû  ã«`ùûŸŠÿü쥉ªý7{?xRè™p¿ š¾ø¬øÃ)ñÿ&ü ýÔŠã£ÏìÇþÚ½êµÛƒWAàÕôtžF Eˆ…B9ÂE¬èu0œ°  è^PSäV3š”8¯…&ƒ€Ýã´ïžÔ1°ä^ü?~"¼JÙ‰N:³Ï2x­¶ª­uض$þÆöÆƒÝ õý¶3^ž•H6õ-þՉʹ}lt¦>n2Ó’©SÐVÿÄòö—«àêµý-Ç^Àè‹/Jè{‰räåžÑרÉH,¥&-Ë"ã3å*æÉb–Bý_º«=¶©ûŒÞïw¾×ÜØñ+¶;~ûƱãÄñ‹Ä‰c‡ dQ€ðhZÞá! I”¬4@¡PRš’¶tš?Rµ´]ËVÊ:Ò†º©£ÐVÝFÿè4U°Ñ®lÒ¦iššàì»vMË"åËJôß9ß9ç#ýú„Àö‡$d%5‰.ÛfrŒp !o3£l=^Ƀ Ô ›TÔ•ã.æ6~´r™¬72c'Ûë6>Ý47qn×–ÌÇ[…–2oD ÄÏ2ï^Ø~ ¬Ç³tÿÓ³¿ß—è›`ÏÉ<žÊÜú¼c8{•ÂíÑ¿Ë`_cÓ¤Ó‡óyæ,ÿëiP_ëZ‘ãyü­~ãËçgxfÛ‘çùÔüT &#i¨s ÅÀ„Ëý9?³Šµ ˤ@ðƒ±09æN¸j1O‘¼0ºñß—ãÜ"’Ü P g §Ö/ˆÿã•ñ©3í;‰'x¥¶Æ‚­­¥gZoÿâo¯Â'®vw…Ýf³íš !ÓoH‰½É/¶­¼¯öYsK‰•—&ç¹á¸7Z®˜ÜDsu|cKÛ̼~¤sëþ¾Ihâ&á*bTm*bÓÍ»„(ð‰J‘à äª2 €ÒБD!J‘a½¬­¸ˆƒ0­xù-\ˆ\’É5+ +ÄŽ÷œWB¨acî(’ ^U„l㣇Ò"k–ô44_ånéëøúî[™/Îlúy½À¥5Š®;»åâù‘ÚOÿóñ®³k¬Lô‘@¹Ýljè_kK–Š¦¡W^¹ûH¹­öGO¥:?»þh¯^ÛöÌö“¿ß\á}Ñyp³¯"ãåT8å3€˜ˆ(*‘p“PZB¼‚A#D‚™ë€§í´…PUîA:NN .»8B{ªŒÓ!;ìlú‰–Ï\ ¸h>Åñ¡sçBà ½y.¤®ãigYæ×¼VÛ°q²¹¡›nØ»Ì*¶¬¢ñç¹÷F½ÅËöŽÌmɦ‡=S‹ª©dªÂ$ÅÐ+ñ‰^, y¢RTˆ5±è…RpaI±èY è)jͬ.Z¡›ò˜®5 û)úòCö§ xoÉ™þ]%ö Zíº‹ƒW¾Ôå2Ãí{3Ã3G›>öùKG>l‚wÉ͆ÉX°÷ÝK œm¸|— Nis:ûî½}ö/'».!Òü‰°¯f;RyÊÑ)ÚD“ HŸäå9(~…Ú¹b4ˆÁ +Ä¢‘ÙãgûƒW‚Yˆ z8CЫkÜÖØíõ<ܘ´—º3gJ꬛¥ÖÌ{õ¢öþòò£í»Ó,7ö/úƒ€u.3=nrÙøèC?^{ü*ý³%Ó :7¹âÏì)ª/D‰h]RˆàÉD zQƒ!Ï +Á€¯Äé°š ÊeQbhø6†ººRDÁ)\¸Côw¨0躰.¦‡q« ‘Ù,‚ŠàŸ/sg‚Êœ©4mæü¿U!©zÅãÀ¡¶/wXӜӒIÄ’ØÒÛ½žméd~æ·¢NÃoÎ÷c0D.Ž÷\ê8îfŠk¤ièLa©Å=ÞM €âÁ¢-eãGé[^3;õ=ûiIr¾«vgz_C‹.›`G© %¥ŠÁl$ÁPŠBõñDk€B\´µ­"×nýÈè’$Ž'›2§»ï›*$ýÔXWÁýiÑú”óåå¿î³~{©´™ðÆ6KÍ]›ßg>¹÷´ø_Þ“.Þù*óͪº3ÿµ]}à +Ã¥{4Wr—ÌÃÙG3GI û%QÕ©0ªBaŽ‚ä‰-Ô«DÂYL\è·õ…vë€5h]qF"XðɀР+ãš -eO £Aáræ 0øY†%%Iì¢Phûëæù–T3ÃóLkM /žWׯU(XKø®mÆ"†cJ·»cdìöH‡Û­Œ‰ SdÚÞµJö‡‡pb'öä&6ç +qZŠh[½'VrDœÃÒõy¼<±½ÎÉNÌéM,H“ƒ¥•-—…5i ˜ÑpðBXajâš%4ÏÓ?HMM,°„©»½ôôçÌÀŒef`çŽÓr¬Ÿ¸C¿OÿŠ +P ª9U,ûŒâ˜¸ ¦B­dx˜M$ð +Ì|ðBÁ@„…BpBÐENé €•äD؇ùS;•?ˆ!.W(|lµ™Î| *sPßSYì VRd⋉;L>òå¤*©ÆTm¡Š”Kr‡Øµ`Ö)dÀÓ±« +ð‹%¨`HÖ öâ4èéaª(#‘){ÏòŽË‘*g® +Ô _³Ê ê@ñú!‹ëðÈ50ù•83% =¯¯ô7¯–Wo]â áõ¶ÝöhÏ7%w.­|fñcMì•{Õ]¥¡î˽óNîsž°©-ÊÓ{‹ÿNÿÒï«*Ž¿–Yho ¯?µvèZÃjY‘щ›t 2,Qe)¯—/x„ ¹”Àë ?dòGO´ÏϱP3k#7™("×™£BÆÄÒ“} \iä8:T¥V6­öTmy ²¦ûÉ–Ê¿Á¯zmËÞÏlijÞеòh·JMöí+(µ·Z·ëÍݧٖÖW>üÇ¡#¿‰Tù*ã‡d6"£¹M§§RN(‹”E=8¥Ô*‘Ž,Y šô$_0ð*'@…&ŽøÀÌ“aŒìP…šIÚÜ*M>¸ñ>âÃ×ÇnŒH +0±CÌh«ÝŒoc§N)ÆÖÌ­–P{a·òVAçG7»–¾ÓÜ\Û³pí±¹/hznSí®]G€Þ,š1]»µžº¶._Ñ€âÓ'®—®•œ/ðúÆ8{ñÒú÷v/HHËëùÿ¯ú &ï;þ|ÏKò< !$æ$†$@^HÀ$ò!‚¢R”—!ˆ«ŠUεU­mµÚk¥VkS-¸«]ëæù²Ý¶?:O×zÛnu›sÞêv×sôݶ»íöO¯çy÷}ž$(ŠÝ?pîøý~Ÿw Ÿ4â#PA*%6ø€bí 3>TR…××B «Îæ° ±¢™(hÞnÓÒokÀúôäíAñ…râó…ÁÅ$›ˆx°'açÅ»:å:0¢H²(âRIâv½7öþÄÖªáÆ _²?ú]ævpèÍÁКÕAkÿ܉Dú/Û\ÉÊöؽïÒY57tf ù‡óu6{߉mµ–€ÕÐZXœøbj8=îª3/E¾…Ü#—Ù?cÇkëUCã®Ô°h&.(+åiUXJÂXMDÏ :=ðPj#e.p-æ J+“ñ“-ZƒU±Láža.ð»t—HŠ#—Í ËÅ„ ÔšŒPª~¶\ËŸ­Š©…©)gñ®²!{åtA]ÕÞ‰KÊm³Ws`Ƀ¨ØÞOZ”A±·ek¯û°ßOÑTó즊QIª‡Ú,y@Ð9¡£•ðõ-U¥Œ@8JW®&-Íp:GÖÂÖ”UA)XÆůR“šB>ÓÆv-A³§kðÁã"ï–qNH7€›éFî²½yî"Šny®Hpy%f±ï ‹òð%À#}‰Jý½&[àËL .Gc:¿d’ŠŒ÷ª©] ŽŽ +mö¦¾X¶ïÅŽc·öM^¡ö§‡§};z§Åsb롸•™Éª±® cñÍ-;oŒ_ž<»oÐÑ]Žæª›V¿pTKÜ^]rz¤ûôþ+§úwT”>¬˜`Hträg£¾?À[2w;­y}lÝžÆÉûÊî#]#k•típýKoHΤÆ5ðj¾JˆQ”•KyÌÒH¸ÄÆš%WTt Ï›!]T¢eÃàƒZŽ(µnçHbNæñs*—·Äó¨"«[ZB 0èçY‹eNº–5@· Šõ¸Ú¯)UR?¶,¾s9Òh0¼ÉÓ„4 +"n1eYÏvXlÌLg^|”A¤µk"ÞÐïˬz‚W¨u?jÃÏÖPÊOùD§±ÄCqÀªN]‡àV +TµÒ” Y0ÛH¶ó‰ûïŒ*¦å]›ÍRxEò«Gi¯ÑÕut_lJ–7&¼žÆú“YË“”‡›ÌÆ:e•v6–{=ÞºòƒK³W —}…2cŸñ‹N‹Þ¡¦!Ai +%èÜ`3DŠ ¹ö‚ý¿R>°”èn¯1g¦y|¼ò!³ÉÈAªnIôÐZ‹ÃkKÌ‹ñ?˜YHµíQG+ýÉ}çäo›’½«¸p¹ÿÎQras°N›ü[*huDíÁV‰A~LÈ ýÚe…‚t:«àóo(æ•‹–žØÀŸçM~Qf'å#ÄÁcbçu)X£ ŒK Š…ýv–+éÎSËo¬ßŸ¹[ÑdCǯg¿ÂGï¯ünÅܣϑä~ßDÓñå #7«úPBqÂfþþ$3 ÇŒ›”*ÍùˆÓ‚%wl|^GŽžù©'|œsç™ §yÿÝùà÷5:Ü5(vkx¢U‘vl˜þr½Pˆ/:¸®§±.æu+hÖB¤šxÃÝÍ"Ó*ÙjöjÙ°ÒáV׫à;á!- LéQ<·ožL¥2ÈBî…ä1UEŒ·)ÿ0¾uÒ§êXo`´Bl* E „[pÙ†rà/ˆ|úf$ðÌžÕ™þ¹X—u>ž^Xæý°½uOê)w=|ëæc­ÑñrP€ï\³$T¨bÑ JKcJð!H—×hY”€MKð­ÁˆÎ×ôÐùþ5˜ ßâ‡X;‡w76.¹ÅÓíXðÎyÿÀ{ª)f÷Æ_;Þ¾ˆ*¡Ü¢M—äQ³ÅI +“0S;ÅNXìp.™íþ0ë’òM.ÓaX8åp“ú(›‡0#?œLìýÏ™õç_^öÆׯž|ͽúÐàëOT´üñÆéL½|qøÔ7¯ÓgÿxfíÅwf~õštíì5fϦš¨N1ÉÑ$ÅÍS +ˆ»µˆ† ¢UÅ<੼~p+ *ÁY@L*¾Ž/2Ö ÕvPÒ*)ŒZòT"(úùäý®Ф½ ¦/’â:—Õø!wy†êmûìù½5ÿŠô½Ý©RņÂce2y×ÇTÂ…¥G»Ž®ùh:µ-¥WeN2\…ÏÞŒ}º{h¶ô¤3’Ù7h—• dFÄÚ-¿?u-¼¬T/õo|Iy%`Ëk +Á2ää’Å@ë]P¬0 ZáK\G|qqCN›ô"©v‡ÙÒüÂò"[§<ä†mª1q ‰ÖY±g KŒ.»ííøâÚÖ bÿ;omô†UMÖÈûšw!?ûη^—˜ÚQý½å™“ðßÃõì¥c¿©w'Æ¡«÷ l¹«¢Lå«’ËÄØ“š™Øþ«ÝKÛ¨œÓfð¦•T­ÀP@M›ÌE²+ʈ“7è• ìxVðå1f!œ ÙÈSXµIá––ÜBw¼‹`3^:L8tþÀpj» Z±µm ñ¡E?ÔÐ̓þ +Ó7C†2<ê9y·nÀÅàÄ„¨f±¶ÔªUë`±$9’F„,¬è—‰[ªUÑJ'o-6Óß÷* PäC§žåHUn+ W—HÍR–“·’öʈIÓNá–Ùˆ¿4eg,R7ëiøpÓè‘%!{ËÊG÷àw嘺·Ö_ß²ó—çöÿiçñ) e=k×néªnW+µz›ªdËÚ÷E:¦Cƒg›W/<ÿÜtWÕÒƒÁÿ SÌ]ÊJÅň(= 5MèP¥à  ÷Xäyª4jœ9DÉ´ÖŠxØ¥KÈz“7€‘“v‚³Hº.”[ôúÌʱ¤Ùf]æ^U"š´n0oÿœÖ(ýmGûÚAÓÇ/­TÏþ³-åum³|ù?ö«>¶©ëŠŸûÞó³ýxq>l'qLì8Ž“ÇØ&×|ˆ…y!dE𑔯6()«ª: +­švC¨C !D£!”MªP¥ŽMíÔU¨elB[Å(š +«&D'‰³ß}ÏNUýgš&ñ¤ŸÎ¹÷Ý{îùºçÞ˵òáVq^»ï/‹-Êg2Jquµ ÏôU-¢”+µ,ßk6²P®PÃ"¸±åx1?áu2¶Âì + sµPÔ¦ÏÂ|[jûOg•$£0w”¯¶WV®®0Ýp|ëPDMpÞžîØÁÖTReßçöµ¼’hܶ³ƒ­O`ç~°#ºzOµ¥ÒK;ƒH ñn¡µ1Oq•R¡x”|Å‚¬7˜=îÒâ"»µÀ´¡‰•¾…êß‚:&Â/[ÀjYXÛ²Q;âd+²òm^˜Ù+‹§Øësú’¿Ì))^™8Xí?Ø*xØãî¬ +vÄzÊÊzc±ò°ð‰ûµÃn±¡ÌˤA’„I¬vÖNŒ}¾ææÆpXœêlÕ5—›Å´8h(3ˆÖ ²@ (>³ÛlÓl”EH`‹ªR:ìØДiCs3žVÖP!TŽZgª ÓD‹ó8ãgÉk¦D„öñZKÍý6Ûó–ÄÊxŸ§|[<ì]ä?VZVïÚ˜¼ç^œ÷‡žÏ|ÕíƒÕóíÕ•¦ ù5lHXY;0qñ£(sUº–MÛôýMÉWüðõ•ø¡Ê¤_¸4˜˜þé˜ksL|R¾vû'‹`·Ÿêc•Þ\Õ,ÌvŸR¦ØpóWVxËË\¥Žb‘Ôƒ]4°@Úd\sëÌ,€²±²JävzÃØ!Œ›(DñU¯D¡Õºæ…æFòœ…ß+˯øëIw‡é’×3—¿Ék, (_w»N%GJë­‚)ù|À¨åœ$äDXëÇ×Õ¨›õ³m…å¢ño¬û'ëk(‚掉+Rr­có]NJG¬È˜£(ŠQ‰B¿×å,qä "åvYxÈg†l^ov¤˜öTEq>…– +Í vÍNÊB¡ç¡ÚŽm)ólŠ7øÖ4&{|kö­] +:mqktmÄ]ëMÜ*¬÷V´¬ò´µ-·©¹$tº êLSQØóêøskw6¹ß-(•Ömo9Ôû[¡82:J¡ŠùÉ‘!ý-¾/Ž!FKb!#sf¿Gp1bŽx¥b7Y™·h…¹À"(f»ÇUZ,32n1ZY:` 3óÔc7…q•ú…¥E¢žr\!¼‘…ÑzíÏMb¶Ã¿0úš ŽãɯZŽGJQ_^ºۢɿím“Mª|säঊ]«ÄǯÛÜgëÞoÐ …ÿøj6¶¹ÓZ~lPx[‹#¯}Ýâ0ûÂp²ÅTSf20U¶´êh±­]îåk;u­Î^ÃPжãî€y®Ã9ž)ÅÌ¥0£zÄ$@Êœ´+7ˆW>ùF—{8wþ §¤G¼Zo¿}Wñ+\‚@ýâ°xR“`¥ŠXI¾qŽÊÔ‚|Ëň )Û¡œÙSY²@ÓLÖóMqlo—ë­Üò-qçfa_ lIWöö]SY¡3ùYÐö÷{œ›±æ¼w±f+TÍj¡Õ’£*f™¯Y$`Í’é5aÇRA7ÄVÔÙÛ]îºç’f“»\žEÕN-çfncËð™6ÍÊÏëíõ{ö½á øŒØ‡ Q©(–ÉLÚHÜo†Ô]˜y‰ÆIÂЗø Žþ¢[¿Û”»äM”ý=9;qÅ0€•!)5Ãp}b„È\õälòœ) õf|ì=9£Kàh óÂ#Ú!™€&ù2%äZÏFé0JC@\,¥¸t“ú1Þƒ¶ô(Úc¿ :¹ pq ‹ËüÿŸ‹9/r9Àfñ ZoxLA¬å–îP‘©‘ƒT¾FÚÞ ŒP0ŒNÞ6\Óÿ‡É#Ÿ'¯Ü‚ö Œ5¬¢ ôù Ïaøˆòà¯8RñR¸ž Ü^Ĩ4ˆv_*vý©>Ž£Z^ôa­>Ð>Ãí7È”à9‚öïÑß,†0óež_Èû§ÁøÆä}žZ.d@Ë… _JÓ¹ è5*b=äC&4»o vûc=OgAΣ&ž<2ßù¹ÿ„ÖÉGÀ¸–é\È÷Õ~ä +χLð|¸†¹ BÇäøé]Q!Yú bÿ»€«@+þïÕbÌýÜäörÙr;ò꺞뚾 ÚÞÓ(×Só×¢åÕlûžâól[§ädã)¶>ÍÿºŸ¦üõ5ß;Ùñã˜åŸ”]ÙÐü–…ÔÞž§êeã;¯ûý÷¿ò3ÑDhü!hè9Ð]À§à¯‚½C”<¡÷'›Ñþ °çÇ=Р—Añoü"ø‹:ÿä&Æ‚mAûPÒÁçkôS>¹ŸÂÙ½¬Óñ²pY§O²ÁÇߤ¿–o[žÓÀãiKƒÀà_Dâ˨ªØbÒÇ8Ïà ÜLdlEuDy4áœ<…r.Í™—…‡:Ô?å|Idy“(÷ŽÌËÇø‚·‰¬$²uÿÖaÿ5Qá¢"\9Š†’:HTœoÍÝMTZGä*þ„ø¥Ž²Ó:< å4^Œ«ø)‘ï'D•íDUDÕë‡Ìy.~ àÿ|”Öš}D öˆê`gô B¯ú…lô\ýø'Dà(ü±(￈Nà$Qƒ +¼žÂ•gx†gx†ÿ+ðwÜ{ôSÏ'/¯BôUÒ;ü݆>•NÌxsé¼H¹S¼>7ÅËà\)žË¬ÁH&™µvšg‘æ²Ðê/¢CŠ—À¤xüÏS<—ù«uËVÅ—¯$zwöؾû…ooÒ:ZF«(NËi(A½´8@Ûi7½@ÿQC*C:C)X¬ˆ€ZJd™!¡÷ƒà #äÂm-aÀ+Æb=M€WoKs—yË´iA¼† ½;˜mZeµµ ¯Ë +endstream +endobj +988 0 obj +<< +/BaseFont /XQCJYY+Wingdings-Regular +/CIDSystemInfo 1293 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1294 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +989 0 obj +<< +/Filter /FlateDecode +/Length 3523 +/Subtype /Type1C +>> +stream +H‰|U{PiŸ!É$(†•8œÅ¨(ìJ•!<‚xŠ + `x誼$ȹ®SàxŠŠŠ‹€ ‹x*Ö©·®§E•…¯ºÛóî¼µ‡ýØ«›pwU÷×Ö7ÕÕýõ׿þºûëÚ`8Ž/Œ ß±=ÄKµ_¯U§Déu+™êä «Šå(œ“ 9;ù£‘ëO%"µ‡óï»H;`68þüm .‡7MÛ—Çzûùù¬°Òu³tà +ÖgÍš5³t»9E—¤acöò4Y64;Y§ÏÑéÕyš”UìæÌLvÂÀê5ÞhÝüÏ…X­Õhóöiô¬šW¦iy{½&…ÍÓ«S4Yj}«³jþOLýW¬6›å±ØíÙZ«“ÇoXuvÊjE7ë%Y—Ÿ§×j «VÇÄîÏÑ°ÙM*†áüÂæa˜=†Í·ÅÜpl9†­Ä°ÕæakqL!ÁTB,ÆÛa»x-Ÿ]L…Eazìö +â*ü:þ/›8› ›‡? ƒ„ç„7…ODŒ¨P4E·ÄëÄ…â’É)Ûå¶m»lGæÏ9=grnôÜ;¡]¤]µÝëy.%U·¸¿ÜÂyêvKP%ä*§£f* 8ŠFIÇEðŽ@,"Á*Ì|%ž!fy@¼Lpƒ¤•CVIŠîKQ²…xœÁ’#oúþq pRâô¥gŽ[š‡„?Q ©x?$ `E1y·÷ú]æžYÝ»•Úš˜¨ŠìÝ{—‘Źƒ ÞJð¥®N/#Q„­GA(àòƒH|þa° mc‹ðfkZ„X]düî¬1p­fÀµýÛ›´´É8MàP +;‚bšFžRùµ!9,¸#²Ò*ðäDà†Ã$ï‹ktOT`ÿ~@ôlüéäGþ”ÏKäµÊ/3-ŽîG¤¨ùbëmêAGúƬT*‘{á„p1ïÅ°®0aȶÊÞ]ê&õWž§(Øø ˜;© 8ÍXIJ¿ýéw=Cäï61 í¾È\ܽ匒**ª2b¾þƒŽ<ôBØ/ÆÛ ÖB¸€ÓM{‡ªX²MÈÆ䓹E%Q„îuGvr´ì%¢! +–|úÈGÅ,ÊÆ&Ö¥ÓGˆ†ñÛà ?v®úLu½I‚BfÜÉ­¹Ãƒ•LCõÉšãtëÉÖ¦‹Ôèoãâ·ç&îµæ…3ƒ'~ƒËÜàCAžpÍ$Fu3•"ˆ% –ëÁlØRNvíŽ|ùª8ÂÈ"dSÐUL†/ÀîUÔ@L“µHÏF;:†FäßG¼E‘Ë"¢Ûw|›A›Ä²)eV⎹ï“eL)Ÿuùò•óí='˜oŠ.eì‘k²³Õ´ìY§ ûµi¹Ù¹åLbí¾–nù…¦¶k´´˜w0"ÀoXΗàUyÆÜl:W bËÛö‡c’§¯þNrp€E( y²®ˆD΂>ôœ>ßB5§æ¤%œÓ ã‹ÌYæCU DsîäXCäN3S`.®(¥çݸÁÜ1w^ºJIß–À2n1Ÿ¬.ˆp—a-Y¬ÛUº—BŸ)¾{ _ßýxûjQQ;Ó ‹EuºˆºMŠG +4•¢ oøÍ‹{u§Z)ìù5°Ü +¾Òã +å+¯!Ë»G+^Qà6Í£O™ƒS°HŸížÜ<@÷)ý›I}PQºP´€´|]oi£û^…¢ëí…):Pe)e¤HÍw°o[0>íKþì ¡Ó¾béÙ*ðâÿ»ïÈE€:Å5¢PB +;þgáGÁOŽà/Üô÷#oè£D§ßuïž@ PžDOû"?´–ð¨Yy‡®$²ž§¼N}ÈB²ÒþìKHßòV4ÿ€]x¸XÁ¼3žÙO˜Ož1×Sož7õ3½=çÆ&ä2Çâ»è‹{‚ë—SnAåe»A|lg-­ÔD—6nÛÞ´ Â¢êêFú‰>$lçYàUüè™>ÖFŒ4ð?Ë4n¬ßq¢@*âpKþÆGF ×$5⡆{c“ò†o/Ð=;7׺QÞåe;­ÎìguQcæ ºò¸m½‡”ðÎïñ>ç{V%¸ÒAô<7¾  îÍ_Aò>ö>šwñíL«í’··7OÜ*<ÜF÷€›¨1!ºÎŸBKW£¹KÿD2ó]n{aº\›eT)•MMI´´§ +ˆ%ÆN#äƒMHZ!Ä( àLŽåͦ¾~¹5ûöQïÑ&÷-º/3èN$5tŸ¤î×å0GÄès3š³ 9Ée ~ãŠCýu—»ùBÉN$Šd FP‘¥U¥¦2:§L·?—Ê2žé¸ÖÛô„‘~(W„9œ¯PrÃÿ»Xᲃè(ëÿê?Ûc/ Rü@NA0^–õF¶TÄ.CªŽ1ARÎ ²ƒ‘¦SÍ·áòx5¿èîcí-ÝÔXkœ’‘õoÒ&ÿ›Èj‰âŠÂ%dgÉÚ:.YwdFÁVmI¬U#F[WATZD á©Ëkga§°ì.à.°+oØÊ[–GE­E!•ÄÚªE%&UÚ¤ýÑG®ètp/òC$Úú›?ì¾g´N1Ùà.*(y¿Øîöë ]¬!‡Ø•ÞÔƤ µ¢¬Ño‹îÓ?<¶ŒM²S_7̽A IÍ=5 Wt1è0j•pº‚25“Ágå¤ÒQi7î±Ô«'ý׆{Ûr“MŒ^£/ÆÔÍãþ t*P-—åHׄÈ j†I“Þ‚R“©¾ù*=Ò”Œß$xÓ lèSä¬Lç¹\&ûb^a¾ÊE mHNˆÑ9<®8ÕØã4áxåp‡ÓÈ‘?-œ”„'%)¢û&&mc¬½<ÙN/9,(TK»ŽcàŒ 瀵\ñç†å瀶Ï­4ë,UµLƒ±ÎÚK5$E°¨oºJÖèë+k˜6ScS'=Ԙʢzl&amèìúÔsš¢LFY”£Reºh {®¢3„Þ~::+-%(»fZ„6†XCØ¡ÿ¹áÞ3²LÌ,ôýåÊj1Ö>z¸95Ì]îˆB~‚È1ÑÊ<<è©‘’»"ð߉O9|Œ(\¦¡¡Îp[ÐIÐ.o´±×.«ŸãŽ¹qßh Ë#Jr«õð]ŸF‡gM>œiž™Â2CçÂ,1,YîM‡˜›@ + þ/2™Ã9ôkp}Xì¯ ÐïgyDft"£Åä•ÜYÂtÒ~H†å +‰Ig2qƒèî´Ñ“QŸìO‰LÊhïÑ°ÚêòšZ™xæbvrªUÛRDJ¿ÌÅ$”’f}¡šª¶µŽÓM—µe–ª†Ý$¥¯(Òè +èÏB2ƒ”z¿àçEh aˆ3Äì–‰ªámh‚•N× È{»¬Õàtá}ü>ø…-ÿ.ñ«÷z\Ž5ÔÔËšMÝC£\Ó bQÝ™HK($î—-ë? +o¥¸Œç×–äÉò.'Ä77¤3bD©Á½“+ ÅÊÝOeÌ +ó¿P$FAdP½¢+Q^¹ž7N]2¶°T?x’Zu¡ö<}ºÐ:…Ú¿ƒt¬#Å_ê`'òuõ*“ÐCe˜°Zaß"'‚ƒ8:F(P‚ˆêWÇñÉ|¼KÁjÔƒÇ!A*îÃ~NU‚͹Êá&_ŒUJx™¦´„×0Ü…¬Üìâœâ\Mž¶ùKG*ï4NØo=zñÁŒE±HÉ+ù$>sM)Á[Klšö£ ”Š³tà ñàåd‚­B0î½g DwgGoçU,éëÅ÷‘D–‘ig³3Ó’Ñ*´Y*¾h83øšÍf«™@‰æ3‰MçÍ°eÉä‚M³fW¦%î”»«Î}HÝ@¾ÜÍuîîƒՂQò¯pd&+ +endstream +endobj +990 0 obj +<< +/Filter /FlateDecode +/Length 1640 +/Subtype /Type1C +>> +stream +H‰|S}PgßͲo¢†U‰0ÁdÕZ QÑ z½óŽk!å@¥ZùHHР$LHùè‰9B0 \ùZêлDk ¶eÑH{ÓQ[ïl¯çt¸N[õŽÎTé³ô…™{C¯3÷×ÍÎ<»Ï÷oŸç÷ÐT„Œ¢iZ³?9ë×»òžÎªq;,¶l·+!ÅuÔ–êrÚÂ^½¤¥¥UR¬’Çñ¸å‡‚rX˜Z߬ü0MGQ2šþü~ª«œ$:ì¶ìØ‘hËm‹2É $nÞ¼yQn’m.«]È­©ðØË*„gÅ.w¹ËmñØmF!ùèQa±D…à¶WØÝ•aãG…`wxÛÝ‚…89H¾Ûnæ•Ÿ—¯wnWp B¿ ¬h௠ž¿:é²—”ìßwÁ1¢çÌ !™!‚îƒP@ ι'y¬}Çáçñ3ïá$X7;ýjaÓaHÅñúfÁ_îÞõ8®6ÕZX} =<}2øñˆ–3+çtU4d€š 5¨çtXŽpÜÎÞ'@v Îì¹”4 ^ài…äøÅ€üÒöî—Ÿ~ œæAþ?ñºìÜÊê2]ßöÔ™¡žídIž1=1IÐïÞÎn•sÎ`%Á»°‚n—Ò¸F¾YP!=gbñ„Ÿ\0…õ0²Ýø³ ´]êü¸mlu z­ cW›µ¯áš¼ßAÑ ìþ6*ÑÀĪfC¾ià²o\ ì­3£ÃúsC=ï\ÓüÕòÑ/zu­r•t³04¥y÷ØØ¡ÝðAs{¦6'¯éD±¢ù–vñÕ×µ“}ö{Ô»P|„jöOhâä•Ã»4é…GöÕðt\«÷{©t–÷] ± iéûÃHÓˆöáÍàè˜þÆÄ…ˆÕ@tÙW¿™Ð e¿iÒæ½èm(%= ¤G‡¿Cûù[IX‡Í{²2Wï4ê9£ì6 +fà_RD7ÂWL"ïcDœ q'ÿ78¤&PÁ46ãbâŽ5’±üì{È„¥UoF…Xˆ‡HÕŒ”&q<~V˜ÂI¨Ù{âdÖœ"9iŸ|ðÕÐYoýi½ê^°¬j¦³ÒÞù‚¯ÇÂÜì#ôQ n å* +ÆB/}¦}ÿCQì×s¸ðÆTõ#Œ9O€’5Ê9ÁŒ4Uõ¼ëÀàdi +G#⃕R!ñWE IV]”*Õ°Yûס}ØWc:öËú_­nFuŸ¾|·zz/øbˆã@˜,ê‚ã¬êvëÍÖéÀ_-¨3¥'©{ï5\ó… ±{¢ç ñáIsêï·µ<§àú''G(g Y 9h½ÿöÝÒÐ)ó ©7ç1îˆåœ ËqÂ+:ð’Ö4]3ª•~Y5±ÞˆÁÊâIV2ðð a þ¹<ŽKÁ[q&ΚÂ&H€U_?†60æCNÒ{1âoôx)^S¹qÏ>çßHÀ†þLè¹—Éþz¿Ë£E±ät7Ø{+’D}gò©Œöj¬Augk¾8~÷øÏ;ù=Š€üö¹ ÝÑ„êƬuÃ…Ïu¦j÷çy¬„YF¾¥­ûÕ.íæ>kŽ&»4?GçAœ±‘€.  Ï?MûL?Þ{µvR 1ß܃埔ÞJœÔ§ŒV‡5oýñüµ·û_©;­ ’å‹U±P‹×¦nÁ”ùBÚý\ýõ’ŠšÂ²#Yöü®Så:.¬q"iœÐ5šüQ•9p$,CÜFBi)PT,à§à)Õt—æ 5 [ê6IEì ~H®v¯OŽó–«¥ZâDQ|MD¸H¼)ʉ©Z#1¸DüL\¢ Z •KüÊe÷—Bô²û=J%Ô®’~ËÿG€&9´ +endstream +endobj +991 0 obj +<< +/Filter /FlateDecode +/Length 3730 +/Subtype /Type1C +>> +stream +H‰|TyPéïfèl#m#Nk÷ŒÇÊ"Añ * +"¢D]™AÎa¯ÍntÎ]9‚"Èi +*x ˆœ +ApY./v׊Y_&éaóÇþ‘J}U¯¾÷^}¿wý¾‡c¦&Žãsþàç±ÃÓw‰ïa:Tᧉùt»2<˜3«çÎP[a&8Þ÷rCL¬ø6\¥•/sss²7J—)¹Ü^îäèè8%]䊘ýJyÀáx­2*^фj• +¹Gd¤| +"^®QÆ+5‰Fã/ÉÕñr¥Z«Rjä¡¢3\-¾×(r­&T¡Œ +Õ”Ç=¿RüŸPru´\Ä’F«Z€V4ÆËC£KE”˜©(a1 ÑZZï°tcÀŽÃ±Jù +¹ByÃpñ`Ó1l‰ÍÆ°9Æb˜-†ÍDZ…ö †-Å°eæ,ÁÖ›a¾¦X€¦Å0G±É˜/æ‡Å`YX1ö·Æÿˆß515I21HVH¾”´›.4Ýdº×´‚À %qøŽ´&õä„t•ôšô_fëÌÚÌg™{™ï1ïž6wÚ¾i,h µE‰ÅKGË\˦{N?:½`GZ0^‡‹r~$ÍTH1øM¦‰î3h-œ&à‰äè.Feò”t’Ü7u‡µHÔI¡ž1ÞQ£Ð[ +½[’ˆç‚“¤™3WnßIáàâdÝúXy‚Ÿ™èÖ^è˜ÊÂË•ñ—T*MÜð‹±å<…T$<~’´†1PjP›HTòQMPº6¡´ ¯†üa ä3ÈæSd‰¢yt0ã{d4 ó€‚8[šÇŸÜÄŒUÙ"´2ÄvÙª ·°<_÷òÔùDáñ@Z’èéJÐY8w’nG¶ëò6ÑDdTZ·p¶aX"„Xw£š iýæÍÐ8XÊ^ù½Erwïå>îŠ/QT\[ü€/Ùêŧ.v_ŽV"§›m¥”®þÚ +ŠN+ñ£_U—2‰%-ÚnûÇÞmy¸*—ÏÒïž_½qϿÍòôÒhÔ\¡7Qp¥®°ží/Ý´ve„7ìUKÒ¯Žé|`ºj"Ø­þE¹c1àÙ]ƒxΨ_H„ùÖà9Öî(,²—¢o' h@žR¤†T&C +Η_œ{¥àúœLR¯NU«e(JL´ î·‚c^6…#ÁÅ°ˆ9šúUï–¼!"p§™·÷Þh– ­CðÀöƒ ˆ_ùI7ª÷Gr)d·îwÀe¦ç§š!ûÉ+ÌÒà¾z>7뛿ds·/Ö–Þeûï88ìòYÇSº¡ºÙªrtË ˆÿnË=§u üf¼ˆ¾Ý÷V–ð™Rº÷ùõËdý>}È +‘.žó®t©¹ô‚Y¥öw“Ù¬„¹\F ³b÷ýÖLþQU]ÏnXÓ \-Û¼+x5G÷¦ ÕLßµÀ ¿°€C¼{ApùcYã;ÝÜgÂ!˜ù_6Â#ËùÊTí%kd¤ÊÈHô³éÿ2S÷ÄÆ«Ú £W$R‘ÐD÷ +«AÅt!!þ—#W–D‡?º£d¨ˆü6¦‚úÕ7Ugª²o˜eÙŠì°œÏZÑNª(¹[¸Õ•dUñ’n.1GTº,Zaÿ3¸ç?ßSãí/Ž–òtåùN‚n?«Ý™¿œEJd'žpvȶ´äæ–ðHNt߶ã=C‚ؤ'ƒ9y³>å ³ß—57óÍÊFÁD¸êïÛ¸?§«h&»ÑçÄ—;ù!oæ벬|F çTmY`‡¶ª¦g%pÔ&±Üû] í%=ÖCpNw¡Ó …«Ýèß$…ÚÏ'\“¦¼Wæ£ëÁUJý# H‡D¡åƒØ¤žx3@ï'k¨’Ò‘`ªï?9Èe¦—­¯Y{Û}D 7Ä°ÁÕ •“tžm†Ûéeœ>õ`»¢swß ¯ û®$¥óÈ뀫ÆáÄ/©’' .¦^bŸÕÞâËÊóï4É&Ô(á*Â| +~Ïzî8ñçP~ȇÉʹšy}Ûâäà½Ë6:>ãëCÚy'(ß,SÚy±ñÁˆ¬þÐ-u1w=t[ž»ÍçäñÏø¡­LÖ¹â¬jöej³ÒE¶Öo—çDR¾É]®ˆ$«Æaˆ¡{ÅM_Ñyè1 ν£ïôo@äMÞ¡bÿµfÙ­ò†—M5I_\àèš‹â´{ó¢vçndÑl—5¶ömÛÁDÁ©*Â}d›‚ö8mÛ^pQÁQþâFŠCˆ¸C¬‡…qØÿtò+%©—ºNa" 6 O‡%ÏÄÉLþVŠ”ïW „0N˜çQª¯ª–—t<üZ´ÕÿH\WàO\(»}®†ýñ̆0>YŠ¶¥Ûy#s]ëY·ñ‡öú²ë—¹L’>vj+ñ'XÎеÇõÉ)ǹýŸ‡…ù°û”—ï½<ï­ž§Îé:”‰Âš8˜dÕ=Ãô1ø5]›õœÈ$½+c;XÀÿ[挌’'wXþš«=¨©; o&½7¢nfÇ»acîôÞuÙ +®Hµ”â +Zí Pº" µ„5>Ú"”„ä¢Hˆã²Ü@A–¢ˆ^"µå!ÊCDWÅÛº–vÝqºç2?þØ_œñß;s¾ïœïžóókƆ8#㧒èÕïÃkÏ‚øòyÎxš=5FðÙ*ûN½õú Z…‚žÁÊ›½þ +-ç&öå +›Æ}7?z/Õ-Î+e¨Í,iÑ$]ØB£ÅA(Ì¢ÀïƒÀïÁ@ëÕ:ÆŠ3µ…HÓù’îv…ðPº`“”MF†êŽÑ%î‹£ƒ“§þßÕ©F.«ìlgÑs +ibáDCÀ°¨y*‹5äÊ,åÖJ—âÉ`Ñ[hE’ •hå“U°êÞGe£& +R÷s±tè»Ý°ÄÌZ†eC'Z>¡©y;¡¯[n°QØ0!z8+†þBø"¿³’;'GîÖºŠ¾¶3üq"?óD:­ÞeHKeÕûôG)r¢¢ÇÂ$RÚ?…ùq³Ô´°NÐʨ¹â÷3éÎUu`¯ÿ1­G +Ï°ôn_SgkM$‘4æ³uÛ“\§ÒM4‘Õr£ Ÿ«ìèb»ÚªÇ@¬€F 5=`m±^`Ö¢™Þœ_¤g´Ê/±@ž±Ô¼681s£}ϧÆf´ô +i)®gÃ$þ#¢I/p^ñ¤¿:I§Å~œg.;:ÝßÑêc6²¨Á‹]"Ü[SÓ õYL¦^£)8¼È ×B±™ÝÁ(Ú¼ÿ‚hÙu­òRO!Ì_І.hñ¶î˜—¥åd§¬În¸P]óM Û[“Š÷Émì€J¯t^‰qàƉ¸•™ôÀA¤{¨éIN¨ÊZuÜÎtTº;®Ñ£ ›XÔî>‰£Ìaã™öª–‹=ôDcB‹ê<Ð,Èà¶mª4£&ƒÉÓksõ™‹Ìäw¹Iî:"e·*“5‘Twñ}bY¶×¢Nz%‚Ö§uÏ'B‡ÓVÁtWu¶öc¶bÎy¡MÜÑ )ªlÆLRESÄÆW8_s#ÂâDAКçˆeÍ1²­E¢ØÈð°¿MýúcçO/ðP£saû¸ ¾Å½šê¹I¤”Í‚ÃJ&×{è ä¯xCA~‘ñ_Ä}Îâ4¦‹‘¤UeMúX1«’ñeö² +†šq~Û>H?í]ÿ$N|7$ö“¶!k®0óv…iqÕkqyÿô1QC“ØÇ+pÑ•Vžá;º®Ó|y‰¹œ¥ì$Ôõè1K!÷‰z«†-&©zÓ3Ÿ|)e¾½»-ü[“ár+šê¿éë¼ 3ždªoŽÌÝ•J: vÛƭɳéìÍìÚœ=Š½Ó¶íR¹œY¸?r +oŒŠžzÄO…9Z´9ú.rJâËw×f1Ù§ÏZéƺã'œlñaâòM9´2¿q…JX6Š–+‘s“j__.»å½—êã9 E=¤Î¤+20ûtjuqèú,œEM´é‡=ÿòôö¶œñ™Žöx$qŸ45—tô(¤[J½Ñ/¡ìB +•iÇ8» Åψ´Ä›äTKPu» +ör{™ÈB·Á­ë†Z¹bJg`àßx¡»æ¨‹._èJ:EÞ‡||œ8ûªzø~|àðñ•ÉÎÄ;H'Ÿ"a-F}›üëâ ŸU.7‘\wAïWý›¡H¾…ŒD¥ººœïû‘COÁÕmP"—¾ùr +E¶‹>šõ¨mF¥Ä>©D®zçYGýr+éÌpdž<4DòÿøÁR†O&LFýY—¥;¬ËÀº:}íWu½KÃ}xåB²¸Ü‡µOØ8ë±"E‘éXñ&/åà—ÙÚ,MFæXõyµ­½ª½y°¯ýñ0l9ü,!W£‹Æ/ +ÉXn&Ö›¹s+ E.ETé-øiBä^»ü…×o¡&+Y]{ªæT¤C£ÜrX >€*3©ÉÊËÉÍB‡P3Ž: ë`¿¨ ˆa¬“ \º4ÐÿÙ¥;’Uq6®+¥Ÿ‘yAËCÏó5<‰ð÷x sZ½k©_éÒ%£‹½K¼¶¥¿þñ{ü +û¿ÿ“ƒÐ +endstream +endobj +992 0 obj +[988 0 R] +endobj +993 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +994 0 obj +<< +/Filter /FlateDecode +/Length 368 +>> +stream +H‰\’Ënà E÷þ +–É"òH$ËRå&’}¨i?Àqj©Æ; ÿ}g5ûÔäS³M~4ûÑäG³M4ï…â~ãT|9âQos K½>¯µÆTÝÞÁãúÑ Ì¢/ú`©³@ +endstream +endobj +995 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +996 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +997 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/A/D/N/R/T/U/a/b/c/e/h/m/nine/o/one/p/r/space/t/two/v/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1295 0 R +/FontName /ANMBOS+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +998 0 obj +<< +/Filter /FlateDecode +/Length 302 +>> +stream +H‰\‘Ínƒ0 Çïy +ÛC zˆ¦®•8ìCc{HLi„(¤Þ~NRuÒ"‘ÿþˆÍOísk´þîfÙ¡‡Qåp™oN" xÕ†å(-ýýÿrê-ãÜ­‹Ç©5ãÌ„þAÎÅ»6OjpËø›Sè´¹ÂæëÔmw7kpBã!ƒ¦…#%zéík?!ð¶kùµ_wó§ø\-BïyjFÎ +ÛKt½¹"Ä…NÃШþ¼LaÃ(¿{ÇDÄYF†‰C™ ñ!ñ!ð9ñ™¸,"“!Nš2hÊ2qI\¥> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1001 0 obj +<< +/Filter /FlateDecode +/Length 342 +>> +stream +H‰\’ÛjÃ0 †ïý¾l/JNM!JÚB.v`Ù µ•.°8ÆI/òö“¢ÒÁ ‰?ã_Ò䨪Oµëg½‡Ñ40Ë®w6À4Þƒy…[ïD’JÛ›ùqZÿfh½ˆ0¸Y¦†Úu£( +}àå4‡EnŽv¼ÂVDoÁBèÝMn¾ªf+£æîý àf˲”:LôÒú×v­a»Úâ}?/;ŒùS|.dºž6cF “o „ÖÝ@1®R\¥gÿݧ{»væ» ¢HIǸ!WÌñ™ùŒœ±&#M–0'Ä)sŠ¼ß¯Œòù€œ³&'Mž1gÈŠó(Ê£X£H£8¢<*gΉ5³&æüŠò+ö¬È³:1ŸˆÙ¿"ÿêÂŒ )4×ÒTK³M~4×ÕTW™k¢VâÄåsNæŽh}ëlh*½ƒçËñ£—EŸø`›¥o +endstream +endobj +1002 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1003 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1004 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +1005 0 obj +<< +/Filter /FlateDecode +/Length 9275 +/Length1 13030 +>> +stream +H‰ÄVkTSWþÎ}$0ä˜p!¼E¾QÐZÂKå¡XÄZ‹ÖZZ¬µÕÖú–ªµV­^ÐZµjEk§ÚªÕÎÔ©3ó£kÚ™å™5ËÕ5kÔN˜èji¿s’›sÎ>gïýíïìœ}Á ÃJð˜6uF¦C“¿„$ §¬®Å×^2mV)ÀÒþûºÎ%æŽémf@Œ'YFcûüN{Þ(&Óüwó.kŒhÝJº!‰€esSƒ¯¾ñ €ÔÓd/¯‰á»xÍïÐ<±©eI׋ñã2´(²_³°­Îèo{'Íë[|]íì_¸dÝ¢ýæV_KÃÕÒ:šß#ûÛÛ:– u …€cw`½}qC;æv]¡ùù€}²ñ{î4DÚ»•-ü©z!œà¸üf†Ùº@áO¥øJÙM’p`Á±E#6œ +©ç‚{þ³Ñ"/ˆ +eˆ*4,|˜:B£Õé ‘QÆè˜á¦Ø¸øfK‚”˜dMNIMK·Ù32³²9¹Î<×ÈQù£Ç¹‹=Þ±%¥ãÆO˜8iò”²©Ó¦—Ϩ˜9kveUõœ¹OÌ{²ÆW»mûξýï=ñÁÉO>{î£Áó_¸øɧ—/}våóë_Üør~ϲ§ŸÅºãkVv¬íÆŽ#xxæå ºU¯á̵M]«Q<·¡ñæ›[-ì\´¸­½¥õ*¾ZŠå žš^©khÞòÖæÝ»ö¾½oσx·@&åèY°"p·‚¬hˆÝb>ÖÅ6SÍù–„„˜¡¡ ›}¬<(Õ˜õ?JÞ ¸Á^e‡ÙaN`‡Ø½À‡l +tŠ +(B†pÊY5"È£:èI+Q0"1b‡xŒ ¯$@¢\H‚ÉHA*ÒìÈ@&² r 'òàÂHŒB>Fc +Pˆ"¸Q ¼‹”bÆc&b&c +Ê0Ó0å˜ +ÌÄ,ÌF%ªP9˜‹'0O¢>Ôâ&º° Oc9žÁ +¼…Ý؃½xûðöã]ÀAÂ{8Œ#ÑÅ1¼ãø'p§ð!Nã Îâ#œÃ Îã>ÆE|‚_ãS\Âe|†ÏqWq _à:nàKü¿ÅWXˆÎÇþK~…%XJ鳋JZЊ:êÛÐŽêç£éÇÝ¿`¡ùg’x +x…FÿïÈ”mÊfúSýÙC¢³‹Ÿ+\îˆFq—Ê$¦f¡¸‡oðG|M:×ÉÞEòqš<#Tû i¡ßL§¹žN¸‡N½›2a)EØFì5R~Ì£œ™EyTF¹UJ¾ +( ”¡©”µ¥N1(î“E£ð7ákAö +…õÂr![ˆBø üq~€ßʯáWñ•¼‘Wó¡<Çù¹A®‡[Íus\5—ÊiØ5v‘eûØN–ÌtÌLA÷•Ÿÿwpß=Á•Gb)†Ÿ"ø ÿ£È˳wT¤A¯Ój"ÔÃÂÃBU!J…(ðƒm€òÝkî­í•<³ì¶ª&ÞŠ.é•ÆQUÁnL°“CÓªdæÕü—ÈnK§¯Ì¥Ùm~X­ ÉÓÏø$¹ÔÜä«—ù$êͲà•|æú~·»·¢ÒB­–تi•d.m’•I%>Ó+-&YôŽ¬2ùê«fTJ™Ò]S¦t›|§?Þº¯þ±;Å$OÑíŸ)Ý Š´:ã(»m¦Zà5@ö–ȼ××\3¶Æc·•˜e^ò 0Nôvz%o¯D ² y¢å°@¬d-º¤YvûÌAÜr±‰Æ¡\j’ÇWUÉ¢ä!Lò4Ëœä‘ÃÓ¢í6sIÓX»í]ŽâÐ9Њôfs?Ç÷z$™ù<¥D˜»¢Rv×TüÙm´äÕz n6ì¶ »í¢ÝV$ÒìàN Ržî`ÉË+¡Šé6VrÂ&žÖ6)œ*‚OÏFz–EkÑ&ÓÃèæ¶üੈ[„³÷=zhñR&r¤«w‡)Ys‘…32²ôÊäBæÊs¹¾ºØ’I†–çCºýß%^úvmXZœÿ‡€'+âæq4F·&– +&ÔQ'2ñ¡½Ë¢tzØ_JXÑà iô }ÏÖQ¶‡#Ú­åõ*ÂÍ„VE@EýPÅ•›—ã  VH VkOy¶³¬Ì9¢Ðº<³‚ÆåÖ"ªìÕCçë…cTk¨~¸“T,Ê¥ g!f—&ȃŠYMª®p+Äh¶ÌD¯\Ù~€‡b*ärÆ(]¤#œ“)´ò§3Få8ò\y,7ƒ%[­ÕBN…¥º>Ëì9Xç>¹¿}ÔálÅ!AoM™m+Ò¤ +ê—›xäŸUR–1$Áù›Cþ?Ÿ©Ý{¾™+ý[tù¡ïø‡æÖÙ¬sîf×¾°Þ=®"Ƚ˜lÕTܦ˜(½:L`J=TL7œ1Ö¦1ˆ,6€¶(-+ÇÏ’S››,%(è<8—ÖÀÙ¦0iRòSC"Ä8å­ÓÛ£ÅrNá­äîÙ…Ñ\±°¨"ûþ…µ +®ìÁK¿ŠØ¢šêÎN1¨UBxº*Š…ÇFgƱôØ<•–xËeL™B/U:ëŒWjD–@B-+;ÇYÈ;s“3˜” TóJ‰ˆÊqÄ3#˜«™ÒAô·®Ed¢” ”åÝÓžUžU”iJ4¨:Åú÷'mœ!LŒ,“–bîphNŒîK‰ŽÑˆÙqþ{=#ý­u8s©zFnRRÌ°4GQì¶×[ þÍtµÇ¶q×qï~w¾sÎsîüHìÄ>ǯ8çøí<ÛIœÄy?¥fMßí¦¶IÛ´k·[»€J‹([Û±n6V B£B±Nj'D; þ˜Ä€ +‰?ÊûcˆÂ? þ`)ß;§e’ÿ9Ýýñý~ž_¯ŒKɵ5e¢?ò¯e9ÉœrÿåMN;& S¨ƒQò3¼ âÅøt‘ÔSg@n$Lc» ÏYÚž÷Rix¡×Â00X5†2HkÓëŒg3¡p÷ +çòõÇpœBÀ¸îYM.¸&kl¡dÉ‚¯¦8{ƒjœhôìwÕh¹–h[íH«ÏeËõ{i7>"–U.¿1óþxÒ£žYZËW/|¸rÞŸ|gûÒ9—ˆÌt?뉚yµæÉ…†rm΀4Ô¦ÿXª{ò;zº ¶©•ÂøÆú´¶éòãÏpÓëÈát±"³4EDŽom¢bA7íõFDV|"ÀKæš°`ŽñA¥•~1mÆ-hµI¢¿s2,Õ³e„"—Í `”šB^c4(±2ºCÑÜ`et¿Z“¦ÉÙDËôi;7¸RJîíðs$šZ†ö_Æb7Uî…¯l¿¶|í_/ŸòþfŽ«hævÍôH£Çû”6îÐý{{R¼h)Úl£„Ü>˜+}ãÀ¹?ŸA¿ýø?p“ÕRÛ¬©Ñn68“ÖÝí0P‡mF` i+0‚ZTÄ!«çý$:ð~2Ÿñ÷gS™ùWr³ éøìôK¹ÙpAI/ÌSWç3©ÅÅTzÓ ¯!²‡ÜÇ;´oˉ‫LÉh?dúz1@HZm/[AÈF¨b‚wÁá¶<0~Xm.¶ Ž%ŒKÕ¡ˆÅã1ôp -Œ™’ÕÍé?‡SƒÑh¡Œu8:¾ +Ô]Tç!›*àRš0Yù½P„Xr Á7‚ƈ)|;S>ß9¿MwÝöÖÇÛ®ÔæW¢×£¾¯BÜÜc-å.m»tz÷……“ûú½BTö9jNêÑö‚ÄT9™×É™H¨¸¤JŽKßZúî!ÙÆqËÄÝÿÛc«JÍw`ç¡)rÆŠ;õøSÆDáí“(F&;gç#ÀeB‹Ü`ïlÖS#â¤ì‡Í~LðX=-ˆÓš¡X¼«Zà“_iC§e3v-<–Ü/SÖŽ/M–¼?ø{D^ñÔåÉÓ±“.{ìÆæ£ÍÿÞ {~ýþë?½¬‡>6^+v˜ù®/ν¹ù×±Šßœ±µôÜq÷òîÕ»›-ÏÝÐz{äuä1Œÿ JÅœl¢ÒÉF×Ah5åçiد‰—‘ C"ÂiN˜ ŽFXÂRÝOÉ«S÷„¹§Ä9[¨zæAÆb °€öÀ×ÑÖ¦SµÑÙÄKÙñõ1kŸUý[é÷çjWv›Ík³7ÿýŽ¼(Õ|ç!A&«ÿñ±ááZ7muìWèÖ¾¤¨äuúÞ3cå‡7Oœ‰ißºÏ "¸Àü'¾–Ô²·$ù/Ô™âh°‰òú³Tw/ÅKå¹ò¦­‚̵C²n‰-B·ïM!]41ðÅ„Ú.3öM²«>V``TÏÅXû“•‘>]«Ø”NVd¸(ë…§ _Ï„@œÂ>ˆ¨ó‹±ÏüÊ¥œ§ˆÜUØ,.­¬¬/ɶŠ°íê-βÏ{ å’ºDH‰pN§÷\-ú{•4&Ímlnü*ÚÔ¼_¡-$ô´ÕÓZNiˆhø„ºU³™|Öº‡50Ô4ï"©’CË´­: +(áÜÛÃÄän>þMVaŠ»²ÕjâΉDwY^|éÕùg~>lgËŒ9XëU·­V'Õ{ǺºR\ó÷|ùw¯Êðlt¦Ò´Hø‘ç²åÃN[‹¢¨ç'ó‰©#U%¼°¾Xõ(­üצv:,þ–Pð•É`yåÚØÜôksíj¤³»Û <ðÎFªÉFù€OÈ‚ƒ‹€†5ttùFµÇìQ¼›YXmãˆø“{Õ_WoX»V)cywø}yômV3‰ý¿–aW¥h'Ë怜fUîc¸ +37lÕ`þf•ˆ…‰åÛT)Qí¥ +>‰)ÎZÊo!Ÿ÷öF›mÖÂÿ¸.·Ø¶î:ŽŸÿÿßoçøøÛ‰íÄ÷:¾;>>ñÝqbwu·uÚ$„&]Ý(¬iéui`¥ë  ²µ“:V‘RŠ6 C}ˆÄ&lŠö„à¡{aB¤ Q!4xu¿sŽÓ•½åüe)¿ë÷÷ù2î4†Vbbõ“¿“çÈ@-­ùüCŒžP±Q½MgÖìi5A¹95È«(oZ0ÉwRa0QåZÐ(•yò ﶎWÇÂs­Zí.7*¨Ôû5µ•Ø×¾€¬÷„t=±×u‘½“û¿îó‚"ú‘uz$`ñ0t¼óÀ:Ít­µîl¹‡ÏƼÆhIo¹âC±4v¼·&Í*ÈÅ ¼ù'•Œk‘(ÕRžVSlJ4;t6]Š HWÈàœ©Bп<ù%är«qy÷†ÊÉ1ŸÅl’ ˈÙ×T`à +)*çU&m5ºLFKAïä)ŽKáâêZ2|ö˜+a´Út^·u¦(G2šdcÕz¬µw7nãÅÞO&Ÿr»íN¥ó¢ßõqÉTá†ÞÄ7—Ý’†Ö Ì{ÿ~Åxµ4Í©UY¼¾tr—¯‡È ‡Hm8€ à á^"Êi³èƒ ¶RhÝ-QgDAA)e«°»²V +°ÁVIí´«Õ¸÷ò7nœžœŽs+çSãG—ž52u2ph»›¤|^èÌ1ÚkfÞùÂÙ¥‘å–ÝœÿU·Ækå3³;énãbБO>¢„~Gšµ¼ =6ÒÔé ÈÉ#«ŽËšGô{P\«¬8Ãc³hc,nWyÐ: ì­‘E)n6ß.MG$Ÿåù“SËíæ&È$a ?Šÿè[³LÛéz¤“F ù yjÛ3ë÷OCòç®ÂÒ„%=±s×iJNã+ñ²–¿¶ÔšyúX´•ì= ¨åøU?(¼µ:vzTœ=¾Ép¿1 Vv¦¥‹2z€Ükü…­½W`í‹üÕôé“ÉV8ö:¸†×oS¾o…L¿7æÞ|³‰Mé*ú€Š”/Ý:75r¾M9‚tdÇ·ª¥Î÷æ–J nRàÚ½ùìG‘hGˆgj˼—&ÕÈ, © Áã’Èè‘V‡²“¤¦à¢ƒS0œYÔ3¤¡€<³ˆmë8(ïrÚyòù(kWÕ¼:‚*˜ j +«7Û"£ÆËý!…¦©d»‰ŠÊÒ$fD_9ðr7í|I}“]”ôm ÃÜæX «tå3¹2 +…HyÎVS8é÷úNûêÀ…´+~ò?—_þæ8½iÆß{Á–1:þÒ>ñŠ—Œ{fþp¡Q9sƒt>÷p¦åm¤§jf~“k¸ò¯‹«±pq<ÿSÊ”My†¬lwÍV'—šwZºh²ÛÜ_NqkÊì +{æ§=3³Æ¯¬Té8ßvgæÆ.ÍpíóîY£]§ÃóEa*àVf¶}ˆ(Õîäp*à€âŠ!œ†Éb+„)éS‚'=cÎó8ÁéÂp"}ƒxÝ“ÄGP_ä$|ªö¥Oà‘F’iÉÊÁÖ+0Û,glAÁ4þÙ÷mÆ»ájbÑUŒ©¬±|þÒF™ÞÊÎ „J‘å{W›X+ëÕAªîÌ3oïüm“f­Íyÿ![￱€ˆ÷zñ„xonÒcÛ.íJ™ú1¾3^óYCF(qÀ!-ˆEï@F³´ECvù8ÅqJ“¢¡¤`±F‘ت~pïåƒ*- ÏwšŒÚ¨¿Á©ÌÙòÁímä?˜Iw‚%Ÿ¿h2Mô½XDß`‹ÆÖV¯[y¸øÝÌá¹´¯×ú;M­ÂNç‰B-9–Š²›‹G¤V¸ôN=¯·˜#~7ÏjkŽÆipZt‘Õ¸U¨Ø?ûUÅ[(!C˜q)䜖 Å('“ +!¬Ôjnw±«I&<Áÿö¼ºs_5ð4϶™ÙTz_;÷Oï¾V<fM˜ùmÛ­Íl¿ÞÒ†“ä嚧iòš¹õñ®Ý_9îª43½‡¡Ci Oý«óþÞ”?vMÈmð×û•7œ;hl‚<ÖY‰´ÜŠ*%äQ"û9üÕçBã­·ùùkN +jÚ¹»ÝB$›¨ ]„`Ý…VìþOuôe´åH»2¢”a¶Ub„Ü˽;M±Ê;Ä4 gõf=Ä•G á@OX°<ýntq†ßÎá a©[P|3Ú°hLjò0=•‹ßßQq88'‹ o¼þtä³.]>ù¥O—Ê›õ]ÞXÒŽLñÆ/_²m{ó鉑mg#ºÀ5cZ{*Ö¸¾*Ð]fx1—<ÐÙ¹Ö“¦.ã:š7ãÌâ[W`Yâº=3”Ý}ýŠ›fŸ}ž3¼/®ônäìZØ–çêhrËM-÷6¦«ð Ú/ éï°Ôbo.£›»N‹ªC%Ljõ)3¢2`õŒ6ëÅBÈGŠÇâ!}B!½E*£ÀXÈH +\G¹Ðº#©äÂ¥4`, +ŠõúŒt|Z6Y4$µíO«T±¢ý™íR\¸è¼ñ.½®uË•¥³Ç’•‹mm>Ûp …åwA2Œ‰ºÝŒ7ø1úê& \šw®ð&R6 îëÅÑó’`¤¢:é2IÔýWò¯™ÉZè¤W}l[W¿÷}ø=¿8þ~ñwìçÏ&Nœ8ösì'Ž»©Û:©KÝàŽ$ S akX3’vS¦…vl!ÛD«m”n*ÕUÇ€NjaE›¦eªÐ4¦©“¦‰ULB¨›¶ª8œûì„B¥ýÓÞ{÷Ý{}Îùsîï4°WB£F`!+ØYÊkVÏò^ÄZð~3\;_:Mñ5åÉÁÄ5~ 7’„ð8ÃÔÇW<…ç~øµ?œüÓkø8¾ü²ÊÉ™4^~o…×~ðâSW§¯S=üˇ„¸þ¡K;„¢åÀRÑŠÕvF]A¥Ñ`&é`±4Q΀Mh€ÂÖ®Ârb›º•¡H=H tîpR eÃsÈŒºMcÂÚXp©›”mÂ;S|]Ë=…ÌPÊá¨0¹Îëâèì8|ÞÝδýtt¸¿[ëŠlæ‚•ïÝYIæçÊí'ú&ÓÙ@{Å5ÏLƤä¶ðøÎj^nä”X£T‚ö½·ÃÓ$Äör[¦Mž8˜½öhOÁª·¾ÐÚvïÙž}[•5Æs¾ØôæL¿;(µÛ”PtØE¡‘÷a?D•¬…¡ŸT ¡QF?ØFânNGªel÷‡Ãáÿ.–$ðH?ìGÁl=ÌÊ™N”–.-:=½}~qƒÕÕ¼=>lˆT^=QÐÅðwGB91¥9'nîñð·4¹R®úö–¨š”>Ð|fõõ)DS +e2É®¯Å¨e0ïçÔnH +·]`ù$†ðVcÒ‚†¼îf§E4jŒ´cI\+ð@8!¸bæ¦5^ t:5¾‰ïì¤!!¨—`(q¤Oc•vw·v¹›¥=©”Fº0÷ýéF>ͬñáÌhªåù±Çk¼}$· 7b_ï6·ÇÛ>èvukM¢«Ñyß@¤m¬">&çÄ–I»Á圻£ÁûöZÅq°3½új‘™GnÍ´Z°‹a‡Òîh5jºV«–2 +ÇѦæ nC"`@á4ÕhH‰¸5Æ ´Y$€Ųù¨ºrÔª?¾©ñu}wÒZݽS¤N3ͯVœ}†•ù}Õ«_ýz>ÐÎïJ«+Lò$Ž +™ÞhÑ6 ^ÆŒÏÃj1(VíÇ®&uGˆŠa4ßê²°&ˆ#Kh"$'±Þ{*¹P² Xg$[êýK×Z…ò­÷4µ"Î%¨ëK¾Ñ‰ŽY!Ð!µÍý}§´Ý4ê gL¡†²YÞ7+ÇZ ó{˜çðÞ³íÍô“ 0m—þØ?öRü›QC{Žar‚»ýTõã›DÇüêmöCˆþ°šÖ¨£ NkuPð ^à4ZЖ°ÚÛì°Y›D£N=âAgù?:“ 8»¯®øQê©ÉhŠ5™Œw)O&«T”~)¾E6E7žo  ÆLÔäö”·¼x˜-µ¤ççÓ=!Ãàƒ‰¥îý`>Â]'e‘!Êšœºú Îbþ½ê2.<À(6ÑæŽWÏþv ›_­W$ú°,Ž:3hD¤M8¬ô,êÏí´‹ä†rQ‰5£j, Ô¿‡ QjÑGwPEƒä%?‘TdŽæT\ÞoŽ L„Ýaý߈d{¼öd›»d𻃻ÂG|­’®)à<àÌK?_ù¼?ý³Žs?°j²¢Çû•é>÷ƾ¼?g3nÝû[&çk`Ø,Ãàð¯6Ɖ%©j;½q$£îL$ ™hzÌ´¶G'Ø Sf€cE9Ée·YÌ:A…QÃŽ` Lê®™ùk‰)é +É€×ãK)DLÎ;_Š"X騉)Ñš XÕÑ¡ TýÀº¡ÿ4ÄZ²KÿÂik$“šÙ—К­{‹»úÉÐÙÃ#:ã-ÄpÃ¥õz¾•DàÔU-à§Ó.§D1|ƒqç¶-ÿòý@ËðB£J~ d’.âj³žÒaó²Qy :JGl)Š Ã㲊zVà°°KBëÙS?+ú°1Ñ]È×­ÁF"’ ƒÑ ßçMÍÅ/ÇŠOÍvê´ÎóŸÎϽøÆCÆoI%½¢*O«xºPý|ÿ»é§sXؼ_ÏÅ3úÏy~à'Õß]`Da×&מïH¥hâ-ØÇÇu½Ÿ šGw_Õî*óTh}뮊q纽ÀªyáŽë/ª;†h,ù ]¦¦Ñ þ3š¢O¡"{]Tñh¡_¢²0nA³ì(VÁ\‰ZB2þ Z¤® æWà.Ó¿€½¢"¼Ëpƒ÷iyx/ÓÇPˆNƒØØ!(«°¹C]~Rua—Q9‰¦ØšgßB¦ºÁóÃ,”ØN~X»ŒJÌšáŒðí¦ò}†™Uî³ì0Ôz”¹ú?¢ØP侄²Ì_aüJ1ç`itörQQ4ÆÞÄËô;¨…:ƒ.‚ŽSŒlAc°?Ñy’VÁ:=*Â;Y‡(²ŽˆZ€žb +¾ÁÿÒ+°.sfa ̧Ãà¯WPÖ”`­¬²¡<ñ @)ð‚8|ƒšÆ§à~ô»þ8Býöü!~RžËhô®(ºƒÿLΣéÿº”êû΀N Ì":ɺQ‰â±ƒ~•@že ú¬(X—ÀÏE‚'ø¬0^ýÉÞ“ÄfX_†ÿ}‹`{ì û=LìŸÎ+ëOÂwÀšøœ¹ŒJu,+OÃ!ÀðäŽÁ˜«àvU–dîX’»‚'ÄÁ‘à>, •5gÑ÷m°„½U‡ÿY„ñšâ&S°“`©ØFl=úP–ø Ögé{Ñ“Ä?Š`÷ýµwK2xÖ〬M¯& •yeU•T%x&¶¾±ý&ÈA´ºÕöq¬§ÖÖÿCy 2SUx¦ PÓZÏjÂ|t·°å/–³_þ: CQÿ Mm‘?B+–:ØÄDH¤ Æèâ( D „þ¤†èhâââ`œ|âøNÄ88:ø,ú! q07móµ¿{î¹7·çÜÛÛJ̪+L05nF~2ùIÝï5õÈO€rõsy€é]ªx9S}·€ÿ¼3Ï@ðt¨P‘ê³ Ì1†ýÈÍPs{@”+=úÄî€8Wç| +Pm —ÿú#la=´!~¬5'dî€!RÇ´ je\Œ6:쯰4d‘¼d³D^³ÙEmÒÓ!ºI‰;DÕf'<8·Y ýÚf‘|o³D~µ™}:ü™ŽÑ®”Õz£Ôlªz:­g·vòFN˪…V¹ffµ8ž t`ðù+(CE ”Ðä©Bçfš×,ß$;ÈÓ+÷Ç^@‹þ5˜´š,±ÍvûìgP׳Íoz ý1Ê_9%®W¿˜²¼Ê¢%™ËUÁ² EÇYWX?‰iÚ»˜4ŽÕ +endstream +endobj +1006 0 obj +<< +/Filter /FlateDecode +/Length 1452 +/Subtype /Type1C +>> +stream +H‰|SkPWÞMØ +ÆJXˆYe·>Æ'RƒŠE¢- Ø‚ “˜DðQ”¢"ò.:"*X¯RÔX°¾ +$Q© #ت£SÇ{ñ¦ÓnðOõÏ™û3çœo¾ó]’p$IzD…­‰ ™³M§JVÄê4>‘G~ +bH$qÊu In4ŽÁ¥ï¼¡àõñðñ„³“¨awB@’‡B5Z¾3-ÝÀ}0×çÆùs¹ÿÑ8 QhR”œ|›Þ Ü¤ç"Õ5:­F—lP*|¹ÌLnt„žÓ)õJ]–#ù§ÒsJ•!]©ã’ùbšŠï×)œA—¬PnJÖepGå?0õVq*5ÇÏâÖªU$7ðI=—¬VøñS4£[6j¶¨ :•Rïë._³M«ädœB™J$1…$¦“ÄL‚˜M>BâS± Æó"1Ä·¤3ùyP@ +&  +LB¡Vhsšë´Ú)7±ÈŒ^˜I>N3 ‹œPÁH¬½ÀR|ƒÆ‹áw˜Ã-4t{…³l}ÃŘÇýB;^ØDGj³ ê.´u“Zd¢éPE×cÕ|G©Y¿ù;z +ÞAuò.ýÆ×\8tñðù‰% tcybYú1ü…D´iŸVµÁ-wÝ‘Ç@|¿øuc9½·Ñ\pƒyÖUu¾…m:ej½'-þ=þêÊÃ.%Îâá‡5÷Úú¤MÛÎdÖy7¦%T…3k÷îNam±tYe]isÿŠ&*hIÂ6쌦-@üºÛ’¾~)³ŠYƒ®¸4‹½Üך:Hôó °±ŒÎoº]p“ôËãw±]Wà8(’öio¥u¹‘؈)&6.?/žµ®¤ËëL%'¸èfv››á¿*†]-Îà]FqÙ&V´¨È + ;a¦•l@™B†¼h¼\€™¬­~°/ Ä£èh†…ÜD]{¬PÛØÈ+ƒBÔßÒX vFPp2Pâ$*W§Ü½‘Á³£ú¡çÐÙ?Ûn²-¿Þ?ÑÃÜnÞµý4[ßI³åGd &f§F‡²ó‚7à1ØIºüÐÒ«qÞqW»´0m5ÕçXQmÖH`6y¦ aÀH =J¦@þb"®È†^eóÌ„ žð8h£p€Îè%"¸£ :ÏÊBƒOÜ+G¾kGdžý|&VÚ'Rb“Z®^••àR +Í»oï¹þ9ò’| ÄZʯx†QÝ^û¦ê7þþeáÁ‚]Ä&3þ‡jp=r6Ý3õ4tL,;£¾ž™·ÂE¬]g'(QoÑ_²,d{U”íÞ€Þ‰ã!éio)qú¡¡ï-m¥Å’ªèªu§dÐÇ>Aò@šg´Dà÷”¸r»Ïù¾•û %97v´ª»±r—ø_]s;QK'yyE ÑŒ‘:p~º<Ž Z°{aW)žú{Á¥ÃNß¼åÝÓsÒpŒN[ +%8Ò;7Œ†30˜ã“ŠÇE¯`““×èâ,I| Ïϱwî°/´»Åˆ6ó_äR;¬°(d€Wµ\ƒ—¨.`ùQáWΖW,+Ëqéyõùí{žçwÌë«‹K$}GÜ)mÞz.³ÞûTÚêêåL‚|o^ +kå=^õCé)¦»5#tADø6ˆdßXÑù²ÎèÏÐúãw·t0pÎÐ38¦7©EÖĆS5\“^3_ëõn-¾˜]»ë¤ER­O¬‰bðGSƒ±ÛÒËkû“ØNʼnÔiP؆Ïäñ‡ëÒ¼EKj³Ð+yå +áLž9¼`¢ÃvÈ ¥`m.²¢V2 +³=‘jÔÕï@a)JD?h¥ìË@Î2 +v{’½™í2¢­Fèk4N5>4:{צ|é6¦ÈÍÕ2ö©+Ìñ@Íô¿ Ö½S +endstream +endobj +1007 0 obj +<< +/Filter /FlateDecode +/Length 5216 +/Subtype /Type1C +>> +stream +H‰|TyPg獵{…æafwºïŠ¬ÇšEA4«,ˆ#3à(—3¢&ŽèŠÜQW‰Š÷ÈŒF†ÑDQ¼´Ä•U ¨‰˜D_·¶ÁJÕþ‘Ýúª^ï{ïý¾w|¿& ™A’dßÉsÂc¢'Ì5´ºhc†ÿtCʬn/ò¤è%ý±ôýÑ÷ãihrIKðzìI0$)svqk›œ˜šœ˜œh„$C32%, C1vìH¿n9ºGù #zäh!X—±@/Äæš²ôi&!"=)Ø™aÔféuÄàÔT¡Â$õ&½1»ûðc†‚Á$è Y õFA+S R¼Q¯²ŒZ>Mk\,dt[þKMþ?W †tAÂf§ºµØ,éÐ$hÓuÃ%”Œž[’2–¦g zÓ°áá±³r3õŸ>™ HiÎ$áêFøD†ð—£hbAL$ˆÂ@9‘Kù1Uê5IDy„•h"^Îd?2ƒÜH~ï4ÞÉìô€Š¢2©N™N¶Svæéú<ýœaSÂìcjäƒä¹ò›Š?)Ö()Ày¸ó"çïßõâzõÂÞé}ÒÅÉ%Ô徫Ú5Òu§k³ëK6…­bÁMïv×ÝË}±û wÑc´Çn_<#=×xÚ”„r–²¼¦Ï¶>ҊΉ¯Î‘’ìŽ*’‰ëÑ]ë(ÅËN„Í4´3(à·t+]›ä]̼ž=LDIgÄo¸îvk,^cq'º9®’·ÎR wDra£&¡'Æ©pî]ô¸3Fs–ÿK¸ÁL» ÊÇ?k~‹¿ªݸ;O¿˜«‚¸Pð kÕÌcZúÕ£;F¨pjzŽï/Eˆè FòÈ©kèÊ•:ÌΦ髽ó"3‘X¡U°¸6&@uìœòNË¥(syáÕaæö—Wì;°b—É´|ÙÞTøUö>5‹“Á9¤Y¤¨Ê$î; tƒw?hÖlÛªÉSv¸qŽ‚2ÇÉ~p5_”v îTƒ×?AŸÃÒ 7(ç×ê8pªA7©!aqÒ‡ð +"`Ö- ŸñlE¶øSmQŽ'˜mÊ*0{ÙšDFyÝB¶éß6Ò% [d›N“¢“ü¬x¯D^c£!Æ´ÿ }TÍ oP=ef¦^«ÙµˆÞw¨öXƒœŽ†£lBF`?#’N“³f+ÔUC±Õ^Ú³ìÊö³Ç¹ìCõY7Ô0ôöËW ãÊù¹²óááÓõ7T÷㛑Š^bLÕìZHï9\³÷¼úye쌀á BùùºÓŒ²ýEÇ<$Jø˜ÅÃÑ'jÖþr“Fªb-bP¹ål¬¡D'/ˆ}m$éäx§ëSz14b¬7 +®D‰°wÇÞ{vWù”Òé…i©*,ïI´Õ +ó¥Š %~âÐpx‚Ñ¢.Ýs´¬ZjîåIþÅüà0ÿs÷|eÔ,ÓÓÙ‡ê²oªÁåǧàÕ:÷òœýü®ä¤/Õé+ ֯䞆õŒ45xg…Ù_“UµpGj¦JÜò¬‚uF>ìó©†ø8ÅŒé ±¯ +Ã;üÀ¼ï--×à§è2!zþßÒ4Ì6èó\A8¬Øppñ.5 +]O8!ú9ôݾá·ò—×W]U·ÝŒAÉÈ‘=ã}g!DwªAª$ ÈñLׯ´éJùÇÇäiµ›lP^k¬U>ƒ|3ä‹ûàÔ”p5à$_&W6?µh¸¨j™~IßqáCbÍ|`ÐçÓÊg)s¢‚Tƒ[ƒA¡±ÈÇÜh.ãïÚë8¨ù5­qÁpÕø¨™~es™ØƵŸŒŒ “8ÙÄÚ[ý@u½¶®UÚí0× +?ZH[-4بN3·§ðHiå¦ó[êœþZqåÊùN¤‚IA/BåX$±÷€ëCÁõöå£ßZ5%Å«üMÕÆû$i㌟奭3ä–(` ø„{{Þÿ¸*?/-—>3%\=fFãËw ÛøæAåGòÁ‰}»%öí–Ø—Óþœ}ê.…ìw9)‡6²ñÑÿ y³¸â÷ÀØ‹ÒË”Æÿê‚D´#âe³ fî ši;ƒùŽ@:Áõ%í1˜éî1äÐÊöíg¶Vn©V”0[ô_Êã[p©7kYmV‰ü”XÑÀ-ÓÇ®ŠQã_èÓà3‰Ø½`ê%ûªå'ør ½5{î®1j\ˆúa<®€~Ôr½|ç žçu±ÓB¶ØÄIvª¥˜[Wk/üFzÞ§®_á¯Þ<Øö“êMZÓì:M}ì°ã覞ó÷5sx[ +·á°uƒä˜úñÓBÿ* +¦juÅevZ‘j-°­˜û‰½9Ü Û Ú‚­á/B-ìeØÉRGZ ¢Ç¯ÅËa‡w@E+Ãv¬µÂöj¨ï®T • à_Î×ÁÌc¾0&¬Sc8Ê$‚Ì” +gÀ¢®]µ¼’ßa¡·-‰Ù¢Æ\dqÎ@²jÄÅÙ|Ä­–¬gêîìÝ.ÿZº½Í +öœîòRŽ@îC  ÚD¶ÙñhïR€]úEW‘íÌéIò£#PÎŽ-²8؇^ÐiÁ 6ža¡¸èfB¶øï:ÏF‡¯2Ó1ÒËÆ$H³Éà']>´²Ê0‘©(`–]7ÝJmÅ¢·÷,&Nš»©€ÆÍ ÛÎÅ}J™ÝÁ‡Çò|ï}œ_‘:õúЃ}÷$KaÈftß4PÁQô¦«4ª©k CnXVƒåzr»î'pxV„:!RiE*È`‹2ƒJ@("Q Ša²*DIð9 8ÕÍÀ˜­BÁŠÏ -8•ZŸ"KßCw²¬õN°¬çZùwr¾}ö·¿ýí}oÄáæ¾%ÕÓdÆ#4 +&8À¿ùd +Øì½»ç1n ¾Mßš¼œàðà¼FkV¤Ê¹h鹌loòÍøë¡OœP™y2/fh>~¿3¶‚A•ðÝF.¼´,£rBB$F 0M„Å0¦akÚ "dŽh)[ˆ'“×C4MFžóÐ4ä<ÜaÌ·Gø¿Þ¬`3fú¼îXë ç Ã¥®%v?½÷ Ýs÷¤©ž=s^Uß*l‘4üx–Q'VzÒ«#÷üÏê7RÅåç‹è]QΓ|‚ÑØäTÅ­¬` †¼¦…Fí'׈ނºØÊ™åóKƒKlMDö©SúÀŽûIÍ¡*[9ÿá©_Z_õÛSO3êø*Üéè=;׳ú$ªXU³¿‰~ÿ`ÝÔy+B¦°“Áwù:3ÒqÚ°#ê¹u(ñ…[ÛZi˜zûù›·Á&Ämdgjâ4÷…—Õ·ÓZ¿-§œ)×ñJÓ#U4"}ãúåÍï#bûDÚXoáÂU«]V¯©8)b+±š:ˆ xq0X¦ܱ6‚×yµÇa=Ú†µ68‡Ö¿÷Å M‚ÍØÀ˜§GÎâ£EK¿A\Ïðf̳ø‚Ì}W’¬µßg.#Ó ÊXsašˆ†°æ6ÎNñxÛÛî§=M~ƒ>ƒ!ÇpÒ±èP¿ïº¹¹ ¨ÔR‡‡ÿN ÌX¨gûË;Ž\·úN@™ßI×wƒŽŽMÄ`\¼pí¶|•é#õq*$òo¥?Éìq1sŒ¶Œ»oõÌ À9×%ÝéÏg˜Ç;F°Ü /U6jK¢šóg=”ȆR#Ò’¤-Òðÿ>Þ¨æ€cw¿Å‡Jrh#"ÀÛ¢å ¼ót?eÂaÌÑÙkMP '¥f‡=j™V#„ þ3ñš›Ç”nä¨i8RGQthv¤0—ÖÊgø!®4ú7®xÝu¹^]Í(RzÀ——s(Ò¸S–_˜ÏDeÅDxÒáÑg;LÙ@!+¨²F5‡ia³Ä¾[H)Œu Šçx/òÓ´¤tÑÀy +Þ0mÁ[4n~°hÕ¬ îD ¾Âø‰²u²$¦j(•B©8Êü^ý›ñ6 œ¶h4KÑçnhô׫ w3ÙQÙÑ#BÁìí j9µ윭Tž8aÇjq—ôàõ“×ÑÔeµ4ç8«Òò”Û"UÁ4š:e +6öi¹ÛiªøáŠD/ Š ã-œl,xþ 9žšžXýø€]ý˜9—BŸ¡Qnhšùz&ŒÿvÀ\Üú‘»‹Ù›ÀÙ-qs™±ôOûŸ«0ØkÐòL²Bå˜M_7Š ôð³œ9ßžÒ‰ûãÝsøœ¾Cv ‚EþIÖ¤º ^ðbyŒ<2H¨¥”Å¥ +%Cö=:vkÄlF¡ óÐèeþ†{;R)ý4ÚÇé3{XÙ›‰}ãïÀ>Ù"Ü/†Œµ ééhì2ˆ&÷ºÀ˜§-ÆjVA ØH ¶ïÉf|ÄÁñ+±·„¿ýö¿õ<¼€-‹_* \ÌuHÓp^d§•èr¢L^&/aº”ú–úÐ}²l¿h÷®¢Ýôwá‘A™ÖÌÔ²>+ËÑòðHŒá†gò"§Ußê¹ Õ”ä\}Žž~sãJÏÝh­×v婤*“°áœ¶Ýp6+·Œ©ÐòT[”±ô?B}Cêãmb;7ŸÛ¼Fž¸Þ;.^U&fHŒAçj8ýn¿ù-…Æ/u£–ÿ1^µ1MQ˜ŽÜ{[5w —š»6öþ1,ËÍ÷á™&º[\(qÊ°PPSl)ôB?¸ý,aÈd™ô®-¥¥--³¢ýÈŠQ`š°¹¸,YÔ„éB2>–eÙ×÷v/‹{oåËø±ä&oî¹9Ï9÷ä=çyQó‰v¬]Å'\W”cC˜s)¬ÏiíkWV[2 øìJÃ]€!Èó®)·Ø%‘ÉQÓÂ14ejá-Üâ±x8Õ suÍaåKºû2 R “|çwýÂÒü­ëQqèZ>z »Ž÷§úÓS +²b`NW€ò ”Ñp@å:‹Máà¸Àbàh¥»‰ÝZgk°kÑåvd¹k–’À7i¸-l»˜<’¯ RÑùù‚óÏ`zh>8ë»ýÓ÷ÇÃêe¢î>„[ƒ¿ +cV5wÂ]šÔ1ÍÝ°ÜÙ ¢t=þ"7íªvžyþsûŒí‹r0N“e… ñ +»‹Ãb˜7¡‚ýØþ #ÉÑxðÒsƒxèì¨!¬_‚$=‡ÃƒàCPØ1|?”YŒÖ6‹ŲNtÅ:ûŒ&_~Šøz±WD|{]]pžó(<ýž>—ÊTÕ¢5±­­-6S·_Kó&}éäWó×~¼^»Á_4;2x—kržrëp÷%GÚ1 KÀ=š„Ô@F(ËH‚´8°SfàÝA|$2‰/X£Ï'1øG˜FšÜdí°²Ð B^îüA³$ ¬Å¿zùÅ/ã (0¥óÐ]­ˆ[HÁáá-¬Èí‰ä[WÑ“¢EWQ·¹ùSšÕür*,®†ËCôÆÎ(¥4 Ý[~ kY¨ïÁø”A¹K¾Å* +–vþo+Y·‰PAÇfNM+“À3éXoOPõ÷ž\þ]ÂoÐxë”G4¶ÖFÓØ©~KѹÁ«Àþ§*kÈ¢nFXÜ `sÔ7ù²ü!9õ ØQëoPÂõ>ø,sra‚Zžý,© +D½—•ãq—+ÈŒ¦±aëŸNY×l3¶1ÚF®òˆÂT‘CYqëïÍ ƒßXMÔƒµøâoÙ«V‘ü3 î {Åß)MÃR$‚–'‚½½¾‚DàÚDhnrôLs'JÈÅje5òÝãèXOOEÝ ¤0jå¢Ý8¬WÖŸ±·µ3§OÛ*(Ì›3"þ]Bvf£„¬˜, c b-±øk6Åq!ÕX + Ѩ„TU¡Õsò˃Wxžò8<Å?æ d²ð`OÁ$E¦‡¼Ln<¹C6°c{f[n»À• +qù? å3Xƒ +endstream +endobj +1008 0 obj +<< +/Filter /FlateDecode +/Length 4913 +/Subtype /Type1C +>> +stream +H‰|V{TéÏÌ$¼’0¬flfŸå¹ˆø@@p_ T•“@Â#‰Vt!!ÐÖº,‚-¨ˆòRTت "g}¬ÒõØU”Õj-=‹ÝÖµJ{'ûá9ý‚þ±õÌ9÷̽ß÷Ýû»÷»¿;Cˆ$."‚ |ã’Rã–­ðO(Ê3¤kóL±¦­s…Ô„à#8ÍGUS$£?m'aÈ ÞÈoOñ"’ $Rù? c‹!cKŽ¾È¬×ƒ4éæ¥&3v–©·ð.\à”ar~2!Ãø­i›ŽO*Ê·èróùF)ÏlÊK·è´A|LN?á"ŸÏÓåëòv:ï ò†|^g°èuy|:^Ì4àóy:-oÉK×êrÓó²y“sågjÆÿ ÅŒ<öÅ' N-É‚ù|ºQŒ½˜&¢hL;Œ–<ƒ.?(8.i]‘YÇ/ൺ ‘ˆÀÈ“M“‰%¢¹”(V&Jˆ’dÄAÑ\]Q‚(Q´]t@Ô$ºJ(ˆ0¢˜øÞ%Ðå Ë[ñ4q‹d†D+é"CÉbò1åF…P‡¨kÔ05&M•ž” +²DÙeW•ë"W‹k§[Û~7‡»ÉýŠÇ< +‡žÙžÝž¯im£{ùyÕx=÷Žò>àýHþ¼\þbž"WÑ­$” oëþÙK`9½Wl“åŽÄñr +ªÐW Š‚C$ŒRˆGWp*ã¿•ŽS›'Þ! +aúçrjôøýˆÜáa‡ñkäÂ\~ôDZ¶£à½“ŠCÌ~9¡2u‚þqŽˆOà 3Ž¼’âC¥@ôÂ21p¥Lÿ™sW¯ev¦¤dh“SÎjû8rÄuð\5 d9 äL +e½5t)H…Õ %Z! @ mŽ9 Zæ DÅWÞGþ°˜…EA i· ‚Q,W¤ÌÍ–h4ÍÎŽIL̼s*9ð·vÞ`é†u¥0K ¥¾0Ë¡F + +-‰8(ð¾NÚ)Úr!h¾Ç›/ÈQ…]z£—|ñtø9*p[ôW4kntnFªºdS{Oóû 5=…«ˆŽ‹EÓr~ô¤`)ïË?ðPÀ}BS T9ÚÙÁäwÞÛñ”……¯ž‚ôYüõÈZÎ.U¾ú®ù\ÿ]ÕHÔ·ˆ›™Ÿ§U· ²îäÀ±«ìíV£vÝÊ V.·(åèŸnW¥jt‹šjÍN +‚‚£ #à6L ŸøBð# "9Z-EÖqžœ P°Í„FÆ.}Ó/Ôw6tM®¦ÊÓ+4ZšîÄëü 伄±`v¨ôµ½ «Ož°ŸaÁ÷ê¶åqËsãÖ93¢ÈÂ3ƒEÃ,,}ó_ðÊíOmãÚÒâkØ]%¶Šb®öG~MaÏ(ÑpÇ­áÉ$Ò³˜Ý•E6SÅŒ²ùÙ+e¯Ü<Ñ*ü 1S_þ`ƒ"bõæ¬lu9U?tã.°Ÿ·­¬·ÊPôx—uën9wÔ^S}HÝv¤ýÄöNëú5+ ©ÉΪ8—a‹¸Ç™‰®THQÃøH˜GAƒp…ü'=&h_+ZqãLÆ +~—N9M¥ ø¿·§Iýñǹ*©òáíÖÓ×TÃñCÈwv,rYÛ’ò5Æ%UŽ|”³99R5w(ª3ƬÍüòR%wéÔ™ÞZõ]]†µª4½>Y­|X.h™cͶœlý^n}¦ùKÕ…“í}jz.>"0‚×(â!Xü÷}L½µÉÚdUý¬åÖ€ìÞî—Àª `1ø ä7ƒGJ¤—ë]õ§O©«¬%©¦ôtãd}þ¦=iå¹ŸÚ +í2X!Ä3w›–Å–ï-ÛÇYŠÛØ„ÜËÜ7Ö΋}ì?W«Þsî8IÚÇ]³êϦ°)ºäõNž¢!É„¹ßªïtšµ)fºw_ ÆÞ”­@Q/ åC! b˜>C +éá$ÚD¡moÃI¥.C ÙsüHåèçç_9|^f§kj6Öhºß$º|?°gˆƒ¸_b ý”cƒULYû@ÙTOÏõp]íÍ—oªž¯ý*ªA)$ 5w ÜPÝ4\ÜtB}*uíï‚ØèE>Ó`òÏdì_üÞÞÆÞ=gÞ°qkV·‘B„¤RŽ Ý4/ûhõö¸íE6ûnŽ.Ù +a (ˆ  fJr7ìMcÑ”ˆgÀÂ/_| žýÝ%{Z¸ð$kÍkê³h+Z€|Чhx Püäë#µÍ=²Ü…p%ñôj‡p±~ç@¦Ë$5_¿Çݹvi¸oùËÇ}êž• Ž!6*¶l_‡S&˜ª/«ÚYøàI â­š÷a4RWª wÚªöpt,TÞøæäÎb!SdP%Öë@>ö6\ˆÅ³ë4ÞSIÑø–ŽãÍAï7úbPÇ¡ ¼Q6Öà!ý`?xá‚»Cä» +Ày<'®‚/ƒª‘û4•:Pb:¨g‘<ì n”™?ü”÷/îÙu–kš¬ËZ^Æ¢íø_ÁY¬œuvûÜ[¿’­¹5’^ìÈHcÝ%Ž~‚tÀd¨)˜¨K5²ƒŽpæm8V: u@€#3¬UC þx<À;¼àæ÷ûáRÚß>B÷{»¯°3¢AèF Ÿaâ·G\qì;T¾0‡Êp¶à'ÔRdÙ±ÄZ9¹œÚ=¼óéÎG+`Ç$´…ÚêlÍ©TÍÿx® &Ò,<(Ý ¥Ä)Û ¦k»q=FÅðBTfD¹E–C@IÐ&€Gb:N¹O¹äÆ]DDDKÑqgu\KÝ}±~·v_°ÜêJU§÷ÞÿþïûÞ×}îI滬_çiéB‡r›²µc$ßfС°êaÍËÒ§ó2iëLëLg^ôãç²,¡,§Cˆ920Mõâô/|¦¦aíÇ6×y°äQàˆë±$~ôâL;Ý +”±˜ñÐ'¡ßK8kA¶üç+¬xšÌôþ`†-w‚‡à4þûa“˜ì#bbC ¬Lq΀Hðˆ‡„B½ +N3ñû› ˆ™ëm½p‘çsÄÕÜï~+ˆâ±Éi` +á8; rÃŽÛÀIZ•_¤.ážM”õ\ÚZÊnŒHFbo5ò—l+²å–o?™€|±gæ”fÖqã=·ø…8'Ê5Ì¥`Ü"˜{€šŠ»ýsÜ¢«ôºöhÑÊ’U…>9I&`G§VI–ŽŠï +(6Édn–<• %v‡Öó-û6XqÎ.'Óý1×±s5s÷ÔÑžïáx/Z´M‰sx—A¿ž qµÕ‰¥-ã² <z Ô‹=CdÆÁ±!¼¸SÒTidäZRj5ß³¨¢Ð=…8â`ã@ëûž`&<Š­?, <»ÙÝ£´4„y#H:aŽø"€ÀÙ€=`ÎÇ2¶# Ò'3º°T#Fo#ö>ÎdHÔ?mѹ½ a¼^D–}´`ÈŒÀ=kÖ€ ¯·`Dµga a è˜ýÁˆÓ[™ƒÌÀ¯h'ÒN±ÍG×K×w69CËŸH'ŽN®† ²††h¡Ï‚q‚UdT +ÜPQ >¼a—Á óaè¤XÇÂÑœáÜqÌ ës<ò¶ö“N XMƒ‹!ÁŸhRK±)k’×*7š¨håÅXòï¡Ù“ï6ÜÓ_%wV¸à=ÅhÊOÉ“¾PgAVÒàhH~þ¦ õ?L×ÿfNàwØ )â‚ïÎ:–#š§¢å-É ²vo˜eA\ið&OÉ^4àBßQi÷ŦüV¤OqXá¡Ê€A"²­Uü{£ä/î½›] Ká°„MÖÇ™ŸªVuuK`=ÌÞ—dåŠmG’"ùkª¤þ¯{¹ùã… †lÒz'a%lϺ××7{K[ëùLšMÎö§Øžc°Eœ¦NS¥óÑÊè„p.2¾¸u`¨xR-ˆÒÐ|9Hõ,rà lö T?ëÉ°Óœí9?Š6oWSŸ´ŸC_bü3¸ °TãôŠ˜r[}ã‚cÔãÆb•·*Š;hë4ÙÚlþŠ®¥®û¾ÑkƒÀö8„ú¹ªkWòª êlDD씨Õ`ŠÛÖvì]ýrøRœvôðÉn“W÷3aR}½’k«ÎH/Øæ + (önnTà7¡q·&¦dYþÆVÜüV—[-ˆ( +¤ú9`bXDòÀ–aóØþbR¤bJ½8bºpY­ÁzȲçKÀäÖ@M_¯Åê¿q¥€£U ª›}ý ƒkRˆÙžTµâŒ‚J;Èy„\ÿqâòÐÝî†ÈlA“®Q¤KDk•@=÷úQ,‚­0º^ ¾ÈÑÌò* ˜yÁ,²‚¬_Oþ@¾$¶/lÀydPWÒËËÞR©!Á{97ÏK·N êwâö¬ª›ÃܽBσèñ‹‘of†vÃL¥lö`ËN€Ü\oö +Œ­öy%s­´µ·¤ðÌé<´IçÁ½Áyi|V$øçÔˆp!0ô˜»·$i1þhƈI8˜à«PŒâSkðó€}¤·Ô§ˆÙW§vQ*º-!¸vGf.²"ödþSk0»Ñ]Þ^+h£h{Ÿ0×Ý_Eó1„¡®Œ¦sc÷ó¯þMèë)žøMU û辶][Ç;R!NUËO+øet|·#¢ÿ¾À¾ú¥«·¯£6.4‡×¦k”J‰H:µÀY¸SF¸9¢f šãI'£ÉËÒñÕ9•Um\Yà”áõV¬6ÝYz86ãD"$U&—KM¦€G‹ÈSŒ•"›ÛÙý¨ö¸²çi®OÁLÁ/…ñ»ÅþQ ÔÁêúÈk\o}c‡pEÝàfîïHbÿ©¦òð7D¤¶^"… KÀ +x°=øÄš}-L®&ÿ\._™]~©•»Vì)j|¤•ÉÕfåðµºÊŠ&®§<ÄM Åx½Ån#¶1éò8þhJ¢ìXJÊ·R¿zneÐþh©p†f{2F(2‡Öi÷îüŸØˆía» õшƒ&&_[•Í×è*k;¸¾² TZÇÀÂ#VÎ~Ñ2œ›lWÆŠX|£@‹Ø _ Lí‘ÝöÓ¡[FLì,F|®€i¶èççû!leõ–,Åqù…ønÍ&‡poo÷C·žŒU?¸JA6KÁ u¢f(>KÅröÑ ñãùi-Uvõȇɨ'°·ìlž[ºí‰ÛÁ«°y£SEÐúì@k¾á—­Ñi/ð]º–úNn´É{ݪ0ŸíS:!¨²Õ9¹¨2œ£æÊÇ6OEC£hrµ:¾[×réw1O¥Ê`£UdœMá¼bÜ„Ó4Û|êEæÒÚ`m€+†Ú¤ü\oÔ‹o£Wk¨ËšûS†9°»ó«  ë^^oâUš”[.©,-hîèŸ(ã«ßS1¾y»9b¶n‹ ÞÕêó&Ò¤?©àD‚$!I¾ÿÀ®’‹‡yÉP¢c,c£Ç`=ý±þâùîÄø6 `¶äÔÄò íÇ{¸ÎËç.”j`(•"Y•ÄíO©`3ö˘üêr ‰"Œâ8˺3™ã™1¸°†I`nR‰¥%>F›k +j˜•>¶¹ãe‰vÆqÆ[j¤Œ~^Ò²õîCy!ÝÒÌBè¥"¢¨§„z£‡3ñíCg$z=ßÿ¼œóûÿ°¼Ø{Žš½÷5šé1\}Ÿ1‚{Ša-n™.±ò]¹µÉ!*âÍ +{Qí³÷‰0DЖ¦~pýÜ +®N˜È÷õäÙ@`ÚÛ×Þ$ð§;ðRã#¢º¡ÇÝÒQòÂ~Nœ3ü6zœ9OÐm+Ô*õ*º­6ß4//æCƒÀƒÓ#Â49Ý÷§>îiŸù=Éü~Y¤r°wYß4“½œ”iŽ€opØ”Na*hQ£[)ÔÜè‡Ê†’B%P,PŽ)¦—äR¿[1Ô e]yy Ê>=²Ð–{†ní1[ =I»lpŠ n‘@€Œc´$^âWÒÈahè±[&s9Ke¯TƒšÒciÌ?VúUà3LÁn£ÏÚm +ž »mÝr§Ú’ µ©-šãŽ×+Öʵ~±É×6Kã…¹ûC¯‚¡•çŸßAkM×/ šæQ«´ÌÃÍãÊu*4§Žˆ…Nà,£F¶ut¿‘ ±Tîb&'Æf&f.á{8™rp£õT׉žë4^xß?Ä[ðÚœÖã!9 NÄ×êv}rñË‹yY +8¦pb†«]¤ØNS“ÎP{býÝw„b0eþ'ô ¢Ò²¡ñ¥ÍÉáÖfâÿ@Àe±%ù¹öì ·+ËË*=®Â„º): Û–i´NBü!Üfy™~)„ahyKX,ù¤EJ»°ô‰D;])ç¢;¸ˆÚ Θ_½ýg¬í3~Çÿ`p?,ò +endstream +endobj +1009 0 obj +[988 0 R] +endobj +1010 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1011 0 obj +[988 0 R] +endobj +1012 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1013 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1015 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +1016 0 obj +[988 0 R] +endobj +1017 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1018 0 obj +[988 0 R] +endobj +1019 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1020 0 obj +<< +/Filter /FlateDecode +/Length 368 +>> +stream +H‰\’Ënà E÷þ +–É"òH$ËRå&’}¨i?Àqj©Æ; ÿ}g5ûÔäS³M~4ûÑäG³M4ï…â~ãT|9âQos K½>¯µÆTÝÞÁãúÑ Ì¢/ú`©³@ +endstream +endobj +1021 0 obj +<< +/Filter /FlateDecode +/Length 302 +>> +stream +H‰\‘Ínƒ0 Çïy +ÛC zˆ¦®•8ìCc{HLi„(¤Þ~NRuÒ"‘ÿþˆÍOísk´þîfÙ¡‡Qåp™oN" xÕ†å(-ýýÿrê-ãÜ­‹Ç©5ãÌ„þAÎÅ»6OjpËø›Sè´¹ÂæëÔmw7kpBã!ƒ¦…#%zéík?!ð¶kùµ_wó§ø\-BïyjFÎ +ÛKt½¹"Ä…NÃШþ¼LaÃ(¿{ÇDÄYF†‰C™ ñ!ñ!ð9ñ™¸,"“!Nš2hÊ2qI\¥> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1023 0 obj +[1296 0 R] +endobj +1024 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1025 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/R/S/a/b/comma/d/e/g/i/l/m/n/o/r/s/space/t/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1297 0 R +/FontName /ZXSXUF+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +1026 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +1028 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +1029 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1299 0 R +/FontName /GAAIOR+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +1030 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1031 0 obj +[1296 0 R] +endobj +1032 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1033 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 1300 0 R +/FontName /EFZRMV+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1034 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +1036 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1301 0 R +/FontName /UQZJCP+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +1037 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +1039 0 obj +<< +/K [1071 0 R 1073 0 R 1075 0 R 1077 0 R 1079 0 R] +/P 204 0 R +/S /L +>> +endobj +1040 0 obj +<< +/K [1081 0 R 1083 0 R 1085 0 R 1087 0 R] +/P 204 0 R +/S /L +>> +endobj +1041 0 obj +<< +/K [1089 0 R 1091 0 R 1093 0 R 1095 0 R 1097 0 R 1099 0 R 1101 0 R 1103 0 R 1105 0 R 1107 0 R] +/P 204 0 R +/S /L +>> +endobj +1042 0 obj +<< +/K [1109 0 R 1111 0 R 1113 0 R 1115 0 R 1117 0 R] +/P 204 0 R +/S /L +>> +endobj +1043 0 obj +<< +/C /Pa2 +/P 204 0 R +/S /Lauftext +>> +endobj +1044 0 obj +<< +/C /Pa13 +/K 356 0 R +/P 204 0 R +/S /Kastenhead_Versalien +>> +endobj +1045 0 obj +<< +/C /Pa14 +/P 204 0 R +/S /Kastenlauftext +>> +endobj +1046 0 obj +<< +/C /Pa14 +/P 204 0 R +/S /Kastenlauftext +>> +endobj +1047 0 obj +<< +/C /Pa14 +/P 204 0 R +/S /Kastenlauftext +>> +endobj +1048 0 obj +<< +/C /Pa14 +/P 204 0 R +/S /Kastenlauftext +>> +endobj +1049 0 obj +<< +/C /Pa9 +/P 204 0 R +/S /Lauftext_1._Abs +>> +endobj +1050 0 obj +<< +/K [1119 0 R 1121 0 R 1123 0 R] +/P 204 0 R +/S /L +>> +endobj +1051 0 obj +<< +/K [1125 0 R 1127 0 R 1129 0 R] +/P 204 0 R +/S /L +>> +endobj +1052 0 obj +<< +/K [1131 0 R 1133 0 R 1135 0 R 1137 0 R 1139 0 R] +/P 204 0 R +/S /L +>> +endobj +1053 0 obj +<< +/C /Pa2 +/P 204 0 R +/S /Lauftext +>> +endobj +1054 0 obj +<< +/C /Pa2 +/P 204 0 R +/S /Lauftext +>> +endobj +1055 0 obj +<< +/K [1141 0 R 1143 0 R 1145 0 R] +/P 204 0 R +/S /L +>> +endobj +1056 0 obj +<< +/K [1147 0 R 1149 0 R 1151 0 R 1153 0 R 1155 0 R] +/P 204 0 R +/S /L +>> +endobj +1057 0 obj +<< +/K [1157 0 R 1159 0 R 1161 0 R 1163 0 R 1165 0 R] +/P 204 0 R +/S /L +>> +endobj +1058 0 obj +<< +/K [1167 0 R 1169 0 R 1171 0 R] +/P 204 0 R +/S /L +>> +endobj +1059 0 obj +<< +/C /Pa2 +/P 204 0 R +/S /Lauftext +>> +endobj +1060 0 obj +<< +/C /Pa2 +/P 204 0 R +/S /Lauftext +>> +endobj +1061 0 obj +<< +/C /Pa17 +/K 1302 0 R +/P 206 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1062 0 obj +<< +/C /Pa21 +/K 1303 0 R +/P 207 0 R +/S /NormalParagraphStyle +>> +endobj +1063 0 obj +<< +/C /Pa21 +/K 1304 0 R +/P 208 0 R +/S /NormalParagraphStyle +>> +endobj +1064 0 obj +<< +/K [218 0 R 217 0 R] +/P 1065 0 R +/S /Lbl +>> +endobj +1065 0 obj +<< +/C /Pa3 +/K [1064 0 R 219 0 R] +/P 1038 0 R +/S /LI +>> +endobj +1066 0 obj +<< +/K [221 0 R 220 0 R] +/P 1067 0 R +/S /Lbl +>> +endobj +1067 0 obj +<< +/C /Pa4 +/K [1066 0 R 222 0 R] +/P 1038 0 R +/S /LI +>> +endobj +1068 0 obj +<< +/K [224 0 R 223 0 R] +/P 1069 0 R +/S /Lbl +>> +endobj +1069 0 obj +<< +/C /Pa5 +/K [1068 0 R 225 0 R] +/P 1038 0 R +/S /LI +>> +endobj +1070 0 obj +<< +/K 245 0 R +/P 1071 0 R +/S /Lbl +>> +endobj +1071 0 obj +<< +/C /Pa6 +/K [1070 0 R 246 0 R] +/P 1039 0 R +/S /LI +>> +endobj +1072 0 obj +<< +/K 247 0 R +/P 1073 0 R +/S /Lbl +>> +endobj +1073 0 obj +<< +/C /Pa7 +/K [1072 0 R 248 0 R] +/P 1039 0 R +/S /LI +>> +endobj +1074 0 obj +<< +/K 249 0 R +/P 1075 0 R +/S /Lbl +>> +endobj +1075 0 obj +<< +/C /Pa7 +/K [1074 0 R 250 0 R] +/P 1039 0 R +/S /LI +>> +endobj +1076 0 obj +<< +/K 251 0 R +/P 1077 0 R +/S /Lbl +>> +endobj +1077 0 obj +<< +/C /Pa7 +/K [1076 0 R 252 0 R] +/P 1039 0 R +/S /LI +>> +endobj +1078 0 obj +<< +/K 253 0 R +/P 1079 0 R +/S /Lbl +>> +endobj +1079 0 obj +<< +/C /Pa8 +/K [1078 0 R 254 0 R] +/P 1039 0 R +/S /LI +>> +endobj +1080 0 obj +<< +/K [266 0 R 265 0 R] +/P 1081 0 R +/S /Lbl +>> +endobj +1081 0 obj +<< +/C /Pa3 +/K [1080 0 R 267 0 R] +/P 1040 0 R +/S /LI +>> +endobj +1082 0 obj +<< +/K [269 0 R 268 0 R] +/P 1083 0 R +/S /Lbl +>> +endobj +1083 0 obj +<< +/C /Pa4 +/K [1082 0 R 270 0 R] +/P 1040 0 R +/S /LI +>> +endobj +1084 0 obj +<< +/K [272 0 R 271 0 R] +/P 1085 0 R +/S /Lbl +>> +endobj +1085 0 obj +<< +/C /Pa4 +/K [1084 0 R 273 0 R] +/P 1040 0 R +/S /LI +>> +endobj +1086 0 obj +<< +/K [275 0 R 274 0 R] +/P 1087 0 R +/S /Lbl +>> +endobj +1087 0 obj +<< +/C /Pa4 +/K [1086 0 R 276 0 R] +/P 1040 0 R +/S /LI +>> +endobj +1088 0 obj +<< +/K [302 0 R 301 0 R] +/P 1089 0 R +/S /Lbl +>> +endobj +1089 0 obj +<< +/C /Pa3 +/K [1088 0 R 303 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1090 0 obj +<< +/K [305 0 R 304 0 R] +/P 1091 0 R +/S /Lbl +>> +endobj +1091 0 obj +<< +/C /Pa4 +/K [1090 0 R 306 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1092 0 obj +<< +/K [308 0 R 307 0 R] +/P 1093 0 R +/S /Lbl +>> +endobj +1093 0 obj +<< +/C /Pa4 +/K [1092 0 R 309 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1094 0 obj +<< +/K [311 0 R 310 0 R] +/P 1095 0 R +/S /Lbl +>> +endobj +1095 0 obj +<< +/C /Pa4 +/K [1094 0 R 312 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1096 0 obj +<< +/K [314 0 R 313 0 R] +/P 1097 0 R +/S /Lbl +>> +endobj +1097 0 obj +<< +/C /Pa4 +/K [1096 0 R 315 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1098 0 obj +<< +/K [317 0 R 316 0 R] +/P 1099 0 R +/S /Lbl +>> +endobj +1099 0 obj +<< +/C /Pa4 +/K [1098 0 R 318 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1100 0 obj +<< +/K [320 0 R 319 0 R] +/P 1101 0 R +/S /Lbl +>> +endobj +1101 0 obj +<< +/C /Pa4 +/K [1100 0 R 321 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1102 0 obj +<< +/K [323 0 R 322 0 R] +/P 1103 0 R +/S /Lbl +>> +endobj +1103 0 obj +<< +/C /Pa4 +/K [1102 0 R 324 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1104 0 obj +<< +/K [326 0 R 325 0 R] +/P 1105 0 R +/S /Lbl +>> +endobj +1105 0 obj +<< +/C /Pa4 +/K [1104 0 R 327 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1106 0 obj +<< +/K [329 0 R 328 0 R] +/P 1107 0 R +/S /Lbl +>> +endobj +1107 0 obj +<< +/C /Pa4 +/K [1106 0 R 330 0 R] +/P 1041 0 R +/S /LI +>> +endobj +1108 0 obj +<< +/K 336 0 R +/P 1109 0 R +/S /Lbl +>> +endobj +1109 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 39.0 +>> +/K [1108 0 R 337 0 R] +/P 1042 0 R +/S /LI +>> +endobj +1110 0 obj +<< +/K 339 0 R +/P 1111 0 R +/S /Lbl +>> +endobj +1111 0 obj +<< +/C /Pa11 +/K [1110 0 R 340 0 R] +/P 1042 0 R +/S /LI +>> +endobj +1112 0 obj +<< +/K 342 0 R +/P 1113 0 R +/S /Lbl +>> +endobj +1113 0 obj +<< +/C /Pa11 +/K [1112 0 R 343 0 R] +/P 1042 0 R +/S /LI +>> +endobj +1114 0 obj +<< +/K 344 0 R +/P 1115 0 R +/S /Lbl +>> +endobj +1115 0 obj +<< +/C /Pa11 +/K [1114 0 R 345 0 R] +/P 1042 0 R +/S /LI +>> +endobj +1116 0 obj +<< +/K 346 0 R +/P 1117 0 R +/S /Lbl +>> +endobj +1117 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -11.0 +/StartIndent 39.0 +>> +/K [1116 0 R 347 0 R] +/P 1042 0 R +/S /LI +>> +endobj +1118 0 obj +<< +/K [400 0 R 399 0 R] +/P 1119 0 R +/S /Lbl +>> +endobj +1119 0 obj +<< +/C /Pa3 +/K [1118 0 R 401 0 R] +/P 1050 0 R +/S /LI +>> +endobj +1120 0 obj +<< +/K [405 0 R 404 0 R] +/P 1121 0 R +/S /Lbl +>> +endobj +1121 0 obj +<< +/C /Pa4 +/K [1120 0 R 406 0 R] +/P 1050 0 R +/S /LI +>> +endobj +1122 0 obj +<< +/K [410 0 R 409 0 R] +/P 1123 0 R +/S /Lbl +>> +endobj +1123 0 obj +<< +/C /Pa5 +/K [1122 0 R 411 0 R] +/P 1050 0 R +/S /LI +>> +endobj +1124 0 obj +<< +/K [417 0 R 416 0 R] +/P 1125 0 R +/S /Lbl +>> +endobj +1125 0 obj +<< +/C /Pa3 +/K [1124 0 R 418 0 R] +/P 1051 0 R +/S /LI +>> +endobj +1126 0 obj +<< +/K [421 0 R 420 0 R] +/P 1127 0 R +/S /Lbl +>> +endobj +1127 0 obj +<< +/C /Pa4 +/K [1126 0 R 422 0 R] +/P 1051 0 R +/S /LI +>> +endobj +1128 0 obj +<< +/K [426 0 R 425 0 R] +/P 1129 0 R +/S /Lbl +>> +endobj +1129 0 obj +<< +/C /Pa5 +/K [1128 0 R 427 0 R] +/P 1051 0 R +/S /LI +>> +endobj +1130 0 obj +<< +/K [468 0 R 467 0 R] +/P 1131 0 R +/S /Lbl +>> +endobj +1131 0 obj +<< +/C /Pa3 +/K [1130 0 R 469 0 R] +/P 1052 0 R +/S /LI +>> +endobj +1132 0 obj +<< +/K [471 0 R 470 0 R] +/P 1133 0 R +/S /Lbl +>> +endobj +1133 0 obj +<< +/C /Pa4 +/K [1132 0 R 472 0 R] +/P 1052 0 R +/S /LI +>> +endobj +1134 0 obj +<< +/K [474 0 R 473 0 R] +/P 1135 0 R +/S /Lbl +>> +endobj +1135 0 obj +<< +/C /Pa4 +/K [1134 0 R 475 0 R] +/P 1052 0 R +/S /LI +>> +endobj +1136 0 obj +<< +/K [477 0 R 476 0 R] +/P 1137 0 R +/S /Lbl +>> +endobj +1137 0 obj +<< +/C /Pa4 +/K [1136 0 R 478 0 R] +/P 1052 0 R +/S /LI +>> +endobj +1138 0 obj +<< +/K [480 0 R 479 0 R] +/P 1139 0 R +/S /Lbl +>> +endobj +1139 0 obj +<< +/C /Pa5 +/K [1138 0 R 481 0 R] +/P 1052 0 R +/S /LI +>> +endobj +1140 0 obj +<< +/K [561 0 R 560 0 R] +/P 1141 0 R +/S /Lbl +>> +endobj +1141 0 obj +<< +/C /Pa3 +/K [1140 0 R 562 0 R] +/P 1055 0 R +/S /LI +>> +endobj +1142 0 obj +<< +/K [564 0 R 563 0 R] +/P 1143 0 R +/S /Lbl +>> +endobj +1143 0 obj +<< +/C /Pa3 +/K [1142 0 R 565 0 R] +/P 1055 0 R +/S /LI +>> +endobj +1144 0 obj +<< +/K [569 0 R 568 0 R] +/P 1145 0 R +/S /Lbl +>> +endobj +1145 0 obj +<< +/C /Pa5 +/K [1144 0 R 570 0 R] +/P 1055 0 R +/S /LI +>> +endobj +1146 0 obj +<< +/K 581 0 R +/P 1147 0 R +/S /Lbl +>> +endobj +1147 0 obj +<< +/C /Pa6 +/K [1146 0 R 582 0 R] +/P 1056 0 R +/S /LI +>> +endobj +1148 0 obj +<< +/K 583 0 R +/P 1149 0 R +/S /Lbl +>> +endobj +1149 0 obj +<< +/C /Pa7 +/K [1148 0 R 584 0 R] +/P 1056 0 R +/S /LI +>> +endobj +1150 0 obj +<< +/K 585 0 R +/P 1151 0 R +/S /Lbl +>> +endobj +1151 0 obj +<< +/C /Pa7 +/K [1150 0 R 586 0 R] +/P 1056 0 R +/S /LI +>> +endobj +1152 0 obj +<< +/K 587 0 R +/P 1153 0 R +/S /Lbl +>> +endobj +1153 0 obj +<< +/C /Pa7 +/K [1152 0 R 588 0 R] +/P 1056 0 R +/S /LI +>> +endobj +1154 0 obj +<< +/K 589 0 R +/P 1155 0 R +/S /Lbl +>> +endobj +1155 0 obj +<< +/C /Pa8 +/K [1154 0 R 590 0 R] +/P 1056 0 R +/S /LI +>> +endobj +1156 0 obj +<< +/K [661 0 R 660 0 R] +/P 1157 0 R +/S /Lbl +>> +endobj +1157 0 obj +<< +/C /Pa3 +/K [1156 0 R 662 0 R] +/P 1057 0 R +/S /LI +>> +endobj +1158 0 obj +<< +/K [664 0 R 663 0 R] +/P 1159 0 R +/S /Lbl +>> +endobj +1159 0 obj +<< +/C /Pa4 +/K [1158 0 R 665 0 R] +/P 1057 0 R +/S /LI +>> +endobj +1160 0 obj +<< +/K [668 0 R 667 0 R] +/P 1161 0 R +/S /Lbl +>> +endobj +1161 0 obj +<< +/C /Pa4 +/K [1160 0 R 669 0 R] +/P 1057 0 R +/S /LI +>> +endobj +1162 0 obj +<< +/K [671 0 R 670 0 R] +/P 1163 0 R +/S /Lbl +>> +endobj +1163 0 obj +<< +/C /Pa4 +/K [1162 0 R 672 0 R] +/P 1057 0 R +/S /LI +>> +endobj +1164 0 obj +<< +/K [676 0 R 675 0 R] +/P 1165 0 R +/S /Lbl +>> +endobj +1165 0 obj +<< +/C /Pa5 +/K [1164 0 R 677 0 R] +/P 1057 0 R +/S /LI +>> +endobj +1166 0 obj +<< +/K [691 0 R 690 0 R] +/P 1167 0 R +/S /Lbl +>> +endobj +1167 0 obj +<< +/C /Pa3 +/K [1166 0 R 693 0 R] +/P 1058 0 R +/S /LI +>> +endobj +1168 0 obj +<< +/K [697 0 R 696 0 R] +/P 1169 0 R +/S /Lbl +>> +endobj +1169 0 obj +<< +/C /Pa4 +/K [1168 0 R 701 0 R] +/P 1058 0 R +/S /LI +>> +endobj +1170 0 obj +<< +/K [705 0 R 704 0 R] +/P 1171 0 R +/S /Lbl +>> +endobj +1171 0 obj +<< +/C /Pa5 +/K [1170 0 R 707 0 R] +/P 1058 0 R +/S /LI +>> +endobj +1172 0 obj +<< +/K 760 0 R +/P 1305 0 R +/S /TD +>> +endobj +1173 0 obj +<< +/K [762 0 R 763 0 R] +/P 1305 0 R +/S /TD +>> +endobj +1174 0 obj +<< +/K 764 0 R +/P 1305 0 R +/S /TD +>> +endobj +1175 0 obj +<< +/K 766 0 R +/P 1305 0 R +/S /TD +>> +endobj +1176 0 obj +<< +/K 768 0 R +/P 1306 0 R +/S /TD +>> +endobj +1177 0 obj +<< +/K [770 0 R 769 0 R] +/P 1178 0 R +/S /Lbl +>> +endobj +1178 0 obj +<< +/C /Pa19 +/K [1177 0 R 771 0 R] +/P 1307 0 R +/S /LI +>> +endobj +1179 0 obj +<< +/K [773 0 R 772 0 R] +/P 1180 0 R +/S /Lbl +>> +endobj +1180 0 obj +<< +/C /Pa19 +/K [1179 0 R 774 0 R] +/P 1307 0 R +/S /LI +>> +endobj +1181 0 obj +<< +/K [776 0 R 775 0 R] +/P 1182 0 R +/S /Lbl +>> +endobj +1182 0 obj +<< +/C /Pa19 +/K [1181 0 R 777 0 R] +/P 1307 0 R +/S /LI +>> +endobj +1183 0 obj +<< +/K [780 0 R 779 0 R] +/P 1184 0 R +/S /Lbl +>> +endobj +1184 0 obj +<< +/C /Pa19 +/K [1183 0 R 781 0 R 1308 0 R] +/P 1309 0 R +/S /LI +>> +endobj +1185 0 obj +<< +/K [784 0 R 783 0 R] +/P 1186 0 R +/S /Lbl +>> +endobj +1186 0 obj +<< +/C /Pa20 +/K [1185 0 R 785 0 R] +/P 1308 0 R +/S /LI +>> +endobj +1187 0 obj +<< +/K [789 0 R 788 0 R] +/P 1188 0 R +/S /Lbl +>> +endobj +1188 0 obj +<< +/C /Pa20 +/K [1187 0 R 790 0 R] +/P 1308 0 R +/S /LI +>> +endobj +1189 0 obj +<< +/K [792 0 R 791 0 R] +/P 1190 0 R +/S /Lbl +>> +endobj +1190 0 obj +<< +/C /Pa19 +/K [1189 0 R 793 0 R] +/P 1310 0 R +/S /LI +>> +endobj +1191 0 obj +<< +/K [795 0 R 794 0 R] +/P 1192 0 R +/S /Lbl +>> +endobj +1192 0 obj +<< +/C /Pa19 +/K [1191 0 R 796 0 R] +/P 1310 0 R +/S /LI +>> +endobj +1193 0 obj +<< +/K [798 0 R 797 0 R] +/P 1194 0 R +/S /Lbl +>> +endobj +1194 0 obj +<< +/C /Pa19 +/K [1193 0 R 799 0 R] +/P 1310 0 R +/S /LI +>> +endobj +1195 0 obj +<< +/K 800 0 R +/P 1311 0 R +/S /TD +>> +endobj +1196 0 obj +<< +/K [803 0 R 802 0 R] +/P 1197 0 R +/S /Lbl +>> +endobj +1197 0 obj +<< +/C /Pa19 +/K [1196 0 R 804 0 R] +/P 1312 0 R +/S /LI +>> +endobj +1198 0 obj +<< +/K [807 0 R 806 0 R] +/P 1199 0 R +/S /Lbl +>> +endobj +1199 0 obj +<< +/C /Pa19 +/K [1198 0 R 808 0 R] +/P 1312 0 R +/S /LI +>> +endobj +1200 0 obj +<< +/K [810 0 R 809 0 R] +/P 1201 0 R +/S /Lbl +>> +endobj +1201 0 obj +<< +/C /Pa19 +/K [1200 0 R 811 0 R] +/P 1312 0 R +/S /LI +>> +endobj +1202 0 obj +<< +/K [814 0 R 813 0 R] +/P 1203 0 R +/S /Lbl +>> +endobj +1203 0 obj +<< +/C /Pa19 +/K [1202 0 R 815 0 R] +/P 1312 0 R +/S /LI +>> +endobj +1204 0 obj +<< +/K [818 0 R 817 0 R] +/P 1205 0 R +/S /Lbl +>> +endobj +1205 0 obj +<< +/C /Pa19 +/K [1204 0 R 819 0 R] +/P 1313 0 R +/S /LI +>> +endobj +1206 0 obj +<< +/K [822 0 R 821 0 R] +/P 1207 0 R +/S /Lbl +>> +endobj +1207 0 obj +<< +/C /Pa19 +/K [1206 0 R 823 0 R] +/P 1313 0 R +/S /LI +>> +endobj +1208 0 obj +<< +/K [826 0 R 825 0 R] +/P 1209 0 R +/S /Lbl +>> +endobj +1209 0 obj +<< +/C /Pa19 +/K [1208 0 R 827 0 R] +/P 1313 0 R +/S /LI +>> +endobj +1210 0 obj +<< +/K [831 0 R 830 0 R] +/P 1211 0 R +/S /Lbl +>> +endobj +1211 0 obj +<< +/C /Pa19 +/K [1210 0 R 832 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1212 0 obj +<< +/K [835 0 R 834 0 R] +/P 1213 0 R +/S /Lbl +>> +endobj +1213 0 obj +<< +/C /Pa19 +/K [1212 0 R 836 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1214 0 obj +<< +/K [839 0 R 838 0 R] +/P 1215 0 R +/S /Lbl +>> +endobj +1215 0 obj +<< +/C /Pa19 +/K [1214 0 R 840 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1216 0 obj +<< +/K [843 0 R 842 0 R] +/P 1217 0 R +/S /Lbl +>> +endobj +1217 0 obj +<< +/C /Pa19 +/K [1216 0 R 844 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1218 0 obj +<< +/K [846 0 R 845 0 R] +/P 1219 0 R +/S /Lbl +>> +endobj +1219 0 obj +<< +/C /Pa19 +/K [1218 0 R 847 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1220 0 obj +<< +/K [849 0 R 848 0 R] +/P 1221 0 R +/S /Lbl +>> +endobj +1221 0 obj +<< +/C /Pa19 +/K [1220 0 R 850 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1222 0 obj +<< +/K [853 0 R 852 0 R] +/P 1223 0 R +/S /Lbl +>> +endobj +1223 0 obj +<< +/C /Pa19 +/K [1222 0 R 854 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1224 0 obj +<< +/K [856 0 R 855 0 R] +/P 1225 0 R +/S /Lbl +>> +endobj +1225 0 obj +<< +/C /Pa19 +/K [1224 0 R 857 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1226 0 obj +<< +/K 858 0 R +/P 1315 0 R +/S /TD +>> +endobj +1227 0 obj +<< +/K [860 0 R 861 0 R] +/P 1315 0 R +/S /TD +>> +endobj +1228 0 obj +<< +/K 862 0 R +/P 1315 0 R +/S /TD +>> +endobj +1229 0 obj +<< +/K 863 0 R +/P 1315 0 R +/S /TD +>> +endobj +1230 0 obj +<< +/K 865 0 R +/P 1316 0 R +/S /TD +>> +endobj +1231 0 obj +<< +/K [868 0 R 867 0 R] +/P 1232 0 R +/S /Lbl +>> +endobj +1232 0 obj +<< +/C /Pa19 +/K [1231 0 R 869 0 R] +/P 1317 0 R +/S /LI +>> +endobj +1233 0 obj +<< +/K [873 0 R 872 0 R] +/P 1234 0 R +/S /Lbl +>> +endobj +1234 0 obj +<< +/C /Pa19 +/K [1233 0 R 874 0 R] +/P 1317 0 R +/S /LI +>> +endobj +1235 0 obj +<< +/K [876 0 R 875 0 R] +/P 1236 0 R +/S /Lbl +>> +endobj +1236 0 obj +<< +/C /Pa19 +/K [1235 0 R 877 0 R] +/P 1317 0 R +/S /LI +>> +endobj +1237 0 obj +<< +/K [879 0 R 878 0 R] +/P 1238 0 R +/S /Lbl +>> +endobj +1238 0 obj +<< +/C /Pa19 +/K [1237 0 R 880 0 R] +/P 1318 0 R +/S /LI +>> +endobj +1239 0 obj +<< +/K [883 0 R 882 0 R] +/P 1240 0 R +/S /Lbl +>> +endobj +1240 0 obj +<< +/C /Pa19 +/K [1239 0 R 884 0 R] +/P 1318 0 R +/S /LI +>> +endobj +1241 0 obj +<< +/K [887 0 R 886 0 R] +/P 1242 0 R +/S /Lbl +>> +endobj +1242 0 obj +<< +/C /Pa19 +/K [1241 0 R 888 0 R] +/P 1319 0 R +/S /LI +>> +endobj +1243 0 obj +<< +/K [890 0 R 889 0 R] +/P 1244 0 R +/S /Lbl +>> +endobj +1244 0 obj +<< +/C /Pa19 +/K [1243 0 R 891 0 R] +/P 1319 0 R +/S /LI +>> +endobj +1245 0 obj +<< +/K [894 0 R 893 0 R] +/P 1246 0 R +/S /Lbl +>> +endobj +1246 0 obj +<< +/C /Pa19 +/K [1245 0 R 895 0 R] +/P 1319 0 R +/S /LI +>> +endobj +1247 0 obj +<< +/K [897 0 R 896 0 R] +/P 1248 0 R +/S /Lbl +>> +endobj +1248 0 obj +<< +/C /Pa19 +/K [1247 0 R 898 0 R] +/P 1319 0 R +/S /LI +>> +endobj +1249 0 obj +<< +/K [900 0 R 899 0 R] +/P 1250 0 R +/S /Lbl +>> +endobj +1250 0 obj +<< +/C /Pa19 +/K [1249 0 R 901 0 R] +/P 1319 0 R +/S /LI +>> +endobj +1251 0 obj +<< +/K [903 0 R 902 0 R] +/P 1252 0 R +/S /Lbl +>> +endobj +1252 0 obj +<< +/C /Pa19 +/K [1251 0 R 904 0 R] +/P 1319 0 R +/S /LI +>> +endobj +1253 0 obj +<< +/K 906 0 R +/P 1320 0 R +/S /TD +>> +endobj +1254 0 obj +<< +/K [908 0 R 907 0 R] +/P 1255 0 R +/S /Lbl +>> +endobj +1255 0 obj +<< +/C /Pa19 +/K [1254 0 R 909 0 R] +/P 1321 0 R +/S /LI +>> +endobj +1256 0 obj +<< +/K [911 0 R 910 0 R] +/P 1257 0 R +/S /Lbl +>> +endobj +1257 0 obj +<< +/C /Pa19 +/K [1256 0 R 912 0 R] +/P 1321 0 R +/S /LI +>> +endobj +1258 0 obj +<< +/K [915 0 R 914 0 R] +/P 1259 0 R +/S /Lbl +>> +endobj +1259 0 obj +<< +/C /Pa19 +/K [1258 0 R 916 0 R] +/P 1321 0 R +/S /LI +>> +endobj +1260 0 obj +<< +/K [919 0 R 918 0 R] +/P 1261 0 R +/S /Lbl +>> +endobj +1261 0 obj +<< +/C /Pa19 +/K [1260 0 R 920 0 R] +/P 1322 0 R +/S /LI +>> +endobj +1262 0 obj +<< +/K [923 0 R 922 0 R] +/P 1263 0 R +/S /Lbl +>> +endobj +1263 0 obj +<< +/C /Pa19 +/K [1262 0 R 924 0 R] +/P 1322 0 R +/S /LI +>> +endobj +1264 0 obj +<< +/K [927 0 R 926 0 R] +/P 1265 0 R +/S /Lbl +>> +endobj +1265 0 obj +<< +/C /Pa19 +/K [1264 0 R 928 0 R] +/P 1322 0 R +/S /LI +>> +endobj +1266 0 obj +<< +/K [930 0 R 929 0 R] +/P 1267 0 R +/S /Lbl +>> +endobj +1267 0 obj +<< +/C /Pa19 +/K [1266 0 R 931 0 R] +/P 1323 0 R +/S /LI +>> +endobj +1268 0 obj +<< +/K [933 0 R 932 0 R] +/P 1269 0 R +/S /Lbl +>> +endobj +1269 0 obj +<< +/C /Pa19 +/K [1268 0 R 934 0 R] +/P 1323 0 R +/S /LI +>> +endobj +1270 0 obj +<< +/K [937 0 R 936 0 R] +/P 1271 0 R +/S /Lbl +>> +endobj +1271 0 obj +<< +/C /Pa19 +/K [1270 0 R 938 0 R] +/P 1323 0 R +/S /LI +>> +endobj +1272 0 obj +<< +/K [940 0 R 939 0 R] +/P 1273 0 R +/S /Lbl +>> +endobj +1273 0 obj +<< +/C /Pa19 +/K [1272 0 R 941 0 R] +/P 1323 0 R +/S /LI +>> +endobj +1274 0 obj +<< +/K 942 0 R +/P 1324 0 R +/S /TD +>> +endobj +1275 0 obj +<< +/K [944 0 R 945 0 R] +/P 1324 0 R +/S /TD +>> +endobj +1276 0 obj +<< +/K 946 0 R +/P 1324 0 R +/S /TD +>> +endobj +1277 0 obj +<< +/K 947 0 R +/P 1324 0 R +/S /TD +>> +endobj +1278 0 obj +<< +/K 949 0 R +/P 1325 0 R +/S /TD +>> +endobj +1279 0 obj +<< +/K [953 0 R 952 0 R] +/P 1280 0 R +/S /Lbl +>> +endobj +1280 0 obj +<< +/C /Pa22 +/K [1279 0 R 954 0 R] +/P 1326 0 R +/S /LI +>> +endobj +1281 0 obj +<< +/K [959 0 R 958 0 R] +/P 1282 0 R +/S /Lbl +>> +endobj +1282 0 obj +<< +/C /Pa22 +/K [1281 0 R 960 0 R] +/P 1326 0 R +/S /LI +>> +endobj +1283 0 obj +<< +/K [963 0 R 962 0 R] +/P 1284 0 R +/S /Lbl +>> +endobj +1284 0 obj +<< +/C /Pa22 +/K [1283 0 R 964 0 R] +/P 1327 0 R +/S /LI +>> +endobj +1285 0 obj +<< +/K [968 0 R 967 0 R] +/P 1286 0 R +/S /Lbl +>> +endobj +1286 0 obj +<< +/C /Pa22 +/K [1285 0 R 969 0 R] +/P 1327 0 R +/S /LI +>> +endobj +1287 0 obj +<< +/K [971 0 R 970 0 R] +/P 1288 0 R +/S /Lbl +>> +endobj +1288 0 obj +<< +/C /Pa22 +/K [1287 0 R 972 0 R] +/P 1328 0 R +/S /LI +>> +endobj +1289 0 obj +<< +/K [974 0 R 973 0 R] +/P 1290 0 R +/S /Lbl +>> +endobj +1290 0 obj +<< +/C /Pa22 +/K [1289 0 R 975 0 R] +/P 1328 0 R +/S /LI +>> +endobj +1291 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1292 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1329 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1330 0 R +/FontName /EYOAPA+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1293 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1294 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1331 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1332 0 R +/FontName /XQCJYY+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1295 0 obj +<< +/Filter /FlateDecode +/Length 2083 +/Subtype /Type1C +>> +stream +H‰|T{TgŸf… ÊtfpfêÁV"òRp…‚ˆUë£aU¢‰@  (R¾’@¢V!h} •*ŠO| ‚¨UŠvQ±¶Ö·R-°"Öîêö£çìúÇî_;çÌ=÷þî™û»÷÷Ýo$„« !‘H”±3gÄÍRÌX¡ÏÎPÏÖëF«49Ù‹tZµ3+ˆ¬DTºŠ>î +Gv×#ÿ^HB«¼zÍG¾Ó“p‘HîwNÒåá¯3³ò…±‘‘!N6`Ç +!ÁÁÁ6LˆUëiÕ +C¾&Ç LÍ]¬Óçéôùu«Õ +% ‚^cÐèNðÏž„lƒ ÉÎÏÒè… œÌÌÆßë5j!_Ÿ¡Öädè— +:gæÂ%ÿ‡JÈÎp-ann¶3RåcÐ däªÇà*º–źå¹ùúl!hL‚*qEžF/¨5KüHˆ¡„'AJb1’C„áDGL"â‰b*1“˜M|F¨ˆ¹D21 ëKÌÀÀn¢Yâ*Y-isåbr锺J'J»ŽtÍvm"eäò:EY©6Ù`¡¬Iìi’`ëÛ$-sÍ}³ûÍØÑUEú($ ‹ 8ƒþ/eýTÚ€ÑÇ”ØÌ8=äŒý¾ +S·XØ-9 C`xHa_ŸƒÑJãÑüòÈüYó†ã@@cyóhæÇ£!(kB'MI!å<Œ³ž}ØÆ*ª}\Là&“¸õq¾ +™Xnß‘6JQöFL-^Ì%z½A»m²+$ÿzÔ ”òíä_‘od|®&…;Fî«kùD !ÈýI$×ÏV«ãlÖÕ3sçgd¿Ÿ™»`å‚ 9æBk¡M1¢‘yPjåWšK6¬á´…™ùóØ)šæVþ~Ãåkœâ@µT]Ððª¬À³Z|Nÿ,ŽÓŠT$xSH×A¢±ÒþAM]¹»‹i†(’îrÔWœ«8!·QêÊÔªEQ”·âîÚW¢é¥ä6xÀ]ð’Þ¶1ëë/mø…aï¶Þà¿¿zò¸+A¶øÁ´‹\óŒ°äÉÆ%¬/˃G³qÇ~û ‚žE ?+bCQX9§_Vf_É+n•A(âŒb ŒÄ­Þ¾ŠNO½`ŒÖ‚Ôú|}g/¯‹i:ö}ˆGøè¾D¡Õ½Ã׶e,g¡´wÔ÷Ò~BqpÊ DP +  öèºp× +PƒBzÛ ;µ×¨vË!Ý®Ð]ã¾J¬(ãé‹kVÜ3>Yù÷Üs vÊí²ë{[Z:”WŒç–䎧MýÊŸOX·&•EcwìÓ«Öî9ÿãã]^±ÜÔ3Í(~ø² +<ÛpÇ&J¯‚ ^tãæ;øFÌ:ò­á: . í€I<Œ*èEnl\’6%‡·Ài…x z‰\cçh3y E?\÷‰Ê–jKž®T†î©°UÚ+¸KŽsÇ.°÷OMH619ýhÓjÞ\i­tà¥Øˆ%£Af*Ø?ÀGWa­0E·n³UÙ*¹Ë•õÇ[Øí•KOW\F·ÚJÖ–¯f“çd%ø }`C)Pöôò”©¸ÞÖ’×pµSÒîÒ±›A.“Ç´£²éŽô§ß{|U{âЦ/wò–nÒl*2Ù”¢ƒ-<,…Ahðø>–Á`£XTàY)®¢ó*Å"¦ö‘ð +fŠE$ò¢¢QIû"ݤ)],7S¥õ%'ŠOÿʼ«b‘Ç× +-qÜqÈ0T耠HŽ¡Ÿƒ¸êEéîƒÊÜÝ:ƒ‡[g…»»X÷žøOæ? ôb +endstream +endobj +1296 0 obj +<< +/BaseFont /CUCKKZ+Wingdings-Regular +/CIDSystemInfo 1333 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1334 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1297 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nPÒ&´“iìnÅDcÐ(F"jd†EÁÈÃEf`FDqx©Ã0°òpç(>x‰"%Ê:*T0Xš-× kmj-6³fS»[•Ó䚪íÁÚªýµu«OÝó¸ç|çôw/Ž¹»a8ŽÏKŒß±e™ºP¯MI‹Ñë–oÜŸ’šår "‹‹´»èëÅ Tã+_ðK‰îÎÞ›ðõðõÆÜpüùß6ér¥£™ùÂGk×® pÉàùI€°rÅŠ32XKÓíÕ±…†|M¶AˆÈIÕésuú”|MZ ¶¿0“ è5Þè2¾$h ‚F›Ÿ©Ñ )’3C+×kÒ„|}Jš&;EŸ%è\žÿQÓÿO)A›#H¹„9Z—›/ BJNZ”E7S%UW“¯×j A[bã +s5Â!M“Ža¸´°w0l1†}ˆaãØFûÇT¶ÃÔ2,Ö KÂ0F*¦Æb0=öûÃÜ–»•±2ƒ;á¾Ê=Â}BÎÉ5òëÄ<"…h,±Þ_ßÄ%éwSfuOǼ9N@5ºË P¨“Ã÷Ð0.åM-ù†HžÙC(’tB¼Í¸vÈ¥Qh‚B&ä ñ£pR„ÀŒ|7ô¯Ë€£ðEÑÒ\¿Œ%ì*A ‡¨€8Ùx SÑw÷èKàvöîù‡·nOÁ|%¼›ômØ-nHâ@ ».ôhé6"Ð\ÆVßbëd{¦FóPÀª­ÈÓÆ9hµ•òJq§W›\¹eãÓ«™_WCÄôj’úÙa„ÀÀx_ò…C ¨dã>ÒæD'1rö`H+ß¾¦egƒÉÔDñ¹‚Þ5 &·yÔÃmî«|h¸±§—ë;åÇ~ZQÏC8š#Aiµ]dïWöêâ• iÚpnAÝ*¥¢øãC î – t3¦þçÆ,$|÷ðx7޹ƯîÉ8uQÙÕÕ~çÑÍÅ\?øÉÛ“·7…°(Ô?ÍöD*ÿM^×}Jm¶Q­R9{9ªß +Ä"c +Àm(ïó°HØD‡ŠŸŠ³–!§BH˜ó +­_ü¹®(‹ëA¤¼­çNëmv¢©ÀÄ#ѺJ4kR(éäµãv6]é㪠:´aœn3‚š)µ–ZʸÜ2]a›mlî¼êxÂS?™aÂ"¤š¼G@ÁI‚=>´³öÜFÄõÞ9p›ܧ` Ël«þŽ<Ù¨DCºŽ·€©ÞÜ"èCÑ–(KQÐËÔUI‹ë;Ñu®½>AÅÓÎõÚÔ/2tºË¹ÊÚÊúz¥«ì"¤ÈQ ó]u»¥±ƒŠvŠ³¦Tk!» ’›w°ÈcaZ[Å£ –1zïôH/g“ÊÕªäLXz-ãcJñI;%såK ·¯B——Á&¤<8ÿåýþó9ÚZ¾ªÌZV®¤:K@1ÔŸ`Þ ëÁBdb5D2Õöšs]J`ÃÁ}Œ"Â?"ÑŠ lì«ÚŽ{\>xÉïÞ}tµýô• +©oŠé®v8‡ÙÑÆ:žú ÒÀüg0Š€5¿íf‰ÔÍ ñ}ÑÌЯ+vÊ-Ä@ÞÞ3¿aÑ?„½\^Îk-ý]¼­€ø,!326¶­%›Ó"_¹aèqñ#ö›§7Fù{·[^¼T‚ƒ¤_<· VwqHN3fkÑñ.·ÂP°MÈþýW<ýúÙ嫃½gŒ™u\UyU©ÔªÃ(šM_Ãg¸ôKe`öÍÒˆÌä_§ËÄfd$&õiFF/õßà•™—bY)|:Ñ4;âªéD¤"(øUºaüÌ.^lOé›%‘Ò)El"èÐGÚ­¿;ɵÔ6uô²-qH‚oôä‚}9åÅz.¯¸ÀdÒ{X§1±3ŠýdO’¡?FÐÎò19ZFØ’mÛ·*©) Á/°Øü–™´4Óë.|= =dcÕ©šz®­®¹£lß·ÝU]åªÂªŸ!rí®¤¼BNÊx½ìý7ãs³”¦h‰ÑÑ2¸#Zô©ß"´±\bsÿ,½#Kÿòˆf¾<­ÿ47>)Ö0úd¢}âO °)Xg6]0™GW½6 +ÇH{Uƒ­ž¨¿tz˜m;e9ÞÈÓõ°ž¤«ª‹Ë­ElJ”~Cž«×³SrHØöÚv­WR1%ð.´Áü*l¸a²®Æteìð#ž|ýŠ¯üCúÍ{<¶µ54+Û[뺆ŠÌg¸N äMY;£YĬÙü_¹ýr `Záƒ'Ë +•…‡J5É‘í-:ŽBt ,AïEÞ“°™Î§ÿh¤CÈ Í‰]Ù\Þ¹k…ÃìÐÀ‰ZO_†ù¤¥ä°å»çpÇ=ü‹A )ƒA*,Ä;ÄHY‡)Ýå,ÑÝy¡·ó¢D?ÅÏoV¢…°ã8™½?_Ÿ‰¼ÑruÄ.ší°Än·wØ ”nŸ°“’é€gL’iÒîÉ9öîöò´zÍÅ,PÍ/{“—\Ÿ+Ö2ÿ`rÐ +endstream +endobj +1298 0 obj +<< +/Filter /FlateDecode +/Length 1318 +/Subtype /Type1C +>> +stream +H‰|RkPWÞ%ì ͪYº»u°•‡"¨ØŠ"c­ÖŠO ` Ć„&1€h ø ’jŽ´µE-‚Š:0ã£øì訵µ>(JUpêà8­=K/éÿôWïÌ=s¾ïÌ9ç;ç^ ÀpWe¬KMI^µ¬Ü¬×êV˜M33øb}žÉ óG9ÆU ¬D ÈØö÷.‡À£IWˆL€ã÷SL%bva‘•‹KLÔDûmü˜ÍiÔjõ˜ç’u¦<žË(·Xùb ·Ä˜o2—˜ÌZ+¯‹á’ n¬„…3óÞló“¯5qz Çë­E¼™ÓŠÁB½˜oæuœÕ¬ÕñÅZó'œÉù,øŸVœÞȉµ¸ÕF½eXEÒÂiºX±Ši¬K¾i“ÑjÖó–˜Ø´ŒUå%<7—Óñ˜xpl¦À(L…Åb)X¶[e`k± â.±e"hÂÎàx%~'`i@“„•äINH^pîáy.Úð‰;PpŒ¬uàE”( ö0D"U‚Œ~!%sÆ|HB"&…3J¿‡üH>.·?ÊžáGa"| +!88¡DÑ ( å°(³ö> +ƒHbûà àaÕ"àP똩ü©]ƒ¢šŸ•’žÛšZ渺\£åͶ¦;È$`ÙN"Íüæ]"<¤ÜýRÈ}ðØK( }‰š<ÒÞnˆ?ûT½J}ŠÂùl¦=ž8ØÚ}¨—~xdÝG¬+!e>š‰¦%-ž²P*¯†7ŸÀî§xÈÁ +ÉPµò€«ÅÝâØ}÷pïÙ ë?t «Í<‰:Ù(„¡‰(¸?ˆ«]ÍÇZ«r¹1S«ŸZhÌÚœUSì(s•y‚``SÞo]0ËÅnvTÕlc e…Öõt:溋½×yþ +#¿á†Yˆ± ßÀtw©âp H*>…RÊ×㌷¶uAçÜÓÉSa1§£Ff#U’Ôþpoüž8ÆInëîæüŒÁ©)ˆûg6)ßdþ¾Mxûw(*U\ƒq“¨-ðn(Õ½û¶¸·Û¾·\¥!$ÂÂŒÚÙÃHF/ZcÈ.fp…ŒÞ$©-ë«  UéóÔ{ö2ç;Û{输© ,Õ‘½,i͆cÝŸ1ν®º:•\]5ŠG ë÷86BD°¯3|¥úk-„" R'" +Ñ(b(47/4ì?Å”?$¶äm[IÏO;þ›ƒ}سë»w辦ä+‡Í6aÚ »Š`H}'‡Q®…ŠþI²ÑÓ¸ËÇ­?ÒÞE÷~›•Î¢6‘ï”6z÷y}L[Ñçè‹-YóXô¥ÈwHAx~^¾¡ª¬„±n--Ý\ä$ÏÙÖ·/¥ssx ë ©î?o‘^mmv†J¾Áþ~}"DÁv $Ð!ìT¢w¦E x¤~ ŒøÏ÷EM3"_¢é¬#NÙ4~ADfZêÂo={ÐÖ?ÀÊÑçâHí¥-coA5ˆÚC`I]nô4xê™óõÇ/ÒûêÎ:–j€ )uÙSµ½¶’^»²(ÍÂÖÔ¡š!‚#½¹µÙKTòni*Jõª¤^¨PÂ’Ñ +&°\¨ P(™„Üuì³\;_ä «;ªNl=ý¸§È+}B…¢|>ß×>ønû¤"U惘1*H¤~ñcšórƒÇ¹ƒeƒã!D6X,´NþPþ+À­`€X +endstream +endobj +1299 0 obj +<< +/Filter /FlateDecode +/Length 360 +/Subtype /Type1C +>> +stream +H‰|OKQÅgLGJ + #î¢]¦&B¹† úcZÛbtž:¤óä͹j+µ˜mÐèH´mm]Ô¢ý¼|.zoÚ´js¸¿{¸çÞ+KÁ€$ËòÒ®¦Ëkû=bêF‰àõ2jt[:f‚&dÒå¨Ê6Øp2™ì…¼ç…_”²üþ±;|®Ñt`#ŸÏ&…æ|ÝLB6“ÉøšÍÀU•ží ¶ E«†IÝAF +´V ü²¹ÍßkÀ´™NйÙ0ùª¢b‚b^3våÒK×K¹®{ï*¬î¾¹á•»êYtv¼Î#ãëèü}8¤` +endstream +endobj +1300 0 obj +<< +/Filter /FlateDecode +/Length 603 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaC,Ë`KÜêÐA[QÇtGfƵ¥C!-I#æ%xÏÕI¤%á!=˜Çš$ "öÍúVè›íÒ©ïðãý~ïûýÞ㮸ˆ#„øϵ_ïŠ]«¥5%!ujjc\QzÕa©MMJ…v±}ÅöA¯ˆ‡qz§{ç‚>ìƒÕýosEå\!_ÛÔQæ4艖–¦Ã<Ù@›B¡PôUR{eOë†<¢ÓŽdŸªªZÂ¥m¦…j².k)Gü»Ut*+Æ ¬Ñk(̯É5´„$$´›Tu:ÿÐþÿŒ¢J’²,z5©8,n0Q§‰¤d)jaJŸ:–44EÖÁöø•ô¨LOQIîçØ;¹×̹Ùõ¸gp‹ÄCjžd–ìïK„á¡%W¦ØžÊuæ§x˜Æw"Fá‘,)¾Á!ùYOžï.ÔEÆyûµèTè0!cÁÐ&Ä,²œuÁ†ME C ¢.ìFà•…a¼ðx.•‹Œ“å-¸ôÍ +èôÜšüìÀ?=»pz><¾¨ü‘‹4be3u›ý÷øÔGå‹ñÝð²òØn„Ò–}ß"ÏÁ—Á傉\TĪ3X‹Ýس‚uàƒÒÍŸ0 qbmõÝ€¸ú ËQÀª1,k?¯þ†£PÃì+ÕÂ\Ê^Û&àc{û*²öÛøë8”ñÂÓ¾mB½iš3&7ÌO¦‡I·L0iÞ܃ýæºYâŸëíñ–d¼¥ë{³¥¶÷€=.þ`O& +endstream +endobj +1301 0 obj +<< +/Filter /FlateDecode +/Length 3278 +/Subtype /Type1C +>> +stream +H‰|T{TgŸÉd&‘ʸ’ÚŒ;E_ˆ‚‹VÔ + +"jH‚Æ"Þ¯ V ôhQäiµµ ’¨!Q¬ZuÕª»Öê|T´ÊZwqï¤_س={NÿسgιóÝïñ»÷÷»ßwqL*ÁpóшIáÙ:mœ:B—<%L»e«~`‰Fá‚·TøýPMAe¿œü%˜„«ÃÀ=üÒ(Ï/ŒÀqiWOÂÆ„…É)âiñ”jÚìÙÓ'Ø™ƒ6h²jz@@À © +Q'oÖ¨¢²Óôšíiª¥Iñɺ”d]œ^£öW…$&ª!ÒT:MšF—10ùkN*mšJ£ÕoÕèTqââ­x^§Q«ôº8µf{œîUòÀÊoÜ„ÿJ¥MR‰Xªè$퀥'ÓTqIê©"Jò`”øäô$½N«IóŸµ*;E£š¥Rk0 ?ÌÆI0†±6ÃÆJ°‰6ÃfØ9.Å¢H,Ã’1ì$†ïÁ°‰¢ÌX8¥`&ìÖ‡ã:Ü)!%ë$;%G$=DqŒè i’ô!©"ϨñÔêß²ÙBÙy¹\¾Bî‚Y=¤bÈSޣģÛÞÙ3‹-u +¯œ¸hÇ:‰R©PìŠpSP†.3h$á…T¨ƒÇ}@æ¦6 Ža}J8Ï ŒÐ€G£Ny?2â:òdªN´Us/¬häŽð„åÆÉiÃ3üB'ñÒÀ4Vm8–[›––“•Ê§•Tg4°4Zë +ÉÄ A4Ç3ðKKÆPèÏýZ’Ž0X…gÜ쀛Nö¹&0÷‡ŠxTPöÒ¯—ïG …|Hzƒdü.5’³h˜˜Õ¢ñ‡M –ª[€wótD©M¸×Š !,ò¶¡»&ÙY; Aðþ‹À»Êûëß vÉÊMW»l8ÑþÕ5$'„ 霴-âW„“Ûe"hþ• ô‹têD:u"ÌA:™ ¬[.ý_$ÍG3À`…WJ3½¾¾TÜBÀÀ‹¶"MF±h'ø@Pתš&žþûn«ÐkŻ쇢k/³»ÝQr^Ô´×|ã +õÛãÏ^+ßl¿}‘û&Êÿhùéε¼} ³ÿ Û~qcb‚æ—ðh +y¢Ä8õÞ}ÉýA©Ú­px˜|„wT‡ÁbEOúá} íPOѨûh†+0s`W—+é´»eôóÒë›2„]Uê:+xÙ±ð®7¼”)AZrw÷Cδ·9ôì‡Î¹ïA¹{yÆ‹žRŠêÑ{çàŒ%Ûn¨ÿýè=T%Œ!7ôRtœ¨û5 œ±ˆà«v¢ËÛ×ú¨î=­ë&ÖVF”gÊTþñ§¾/÷žö\tµÜ${püÂåçJ{ö™¤\‹zUí v}äî›y»–ÙWÝ´ÿ,ûöû¸±ÓGúð*ŠžUd¿b‡*;ÑṲ́6ßʺÌÂØ;?þÜáDÄ~¢y“ùž²£åà—Û² +j¸+Y©_WÆ"jöB¿©7¢×ð¯4–ó•³ÂWú®\]{LÃѳEh+šv4Þí.R¬îÜxH¦è¿l®‘Ú ÒöAùÜþ2´ùm¨X{H¿‡xN¿Î=I†fÏ[ˆßà›0Ÿ&Éhƒug”[Áßêeq»"OðöÞÝb´˜•°Bö$õŸˆß]˜´‰«ÜJ66>Ôʵ÷³Éë”…2´Æ4a "” +Dz3‹ÿv¿£­¥ž+£yBIø3 +ÇcQq›³!&˜ýxýÉÛ ®ª¯˜§÷DÖZ 9Ó«ÓOÛy0Ô[á(û‘4QKÌ—ï³}€?†ù0.¨yFhÂ?áð—Xwˆ¿ÅgÔrç ‰©.«(;ÌýPÿ­ã ø• HÂ+hxØ4$ùCxûÝ ÎxØxø’/> nkïßeÆš»’EÄœ.äÍ×Àt´ä4ðÕ²"k]u‹Æúøˆ¯cÜO¾ÀßvÖ:ÊÓÅ¿ÉØÖ?Øa¦+†A2[úš¶Y,òðóE3÷òȧÛ<º/9:9“˜mYÙF›Œ­§”B,Ö]Áä ‹ 8…#8cÙ†P±âѯƒá7Ÿ÷=¸½¬š/+0e(éð"l3Ã\ n³Ã7NBXFÆt°ô`…òövðCÓÐ力Ñè'¾À=rÔ•×p…f² eKþ"Ö/è +øóef滃g{Þ² ?1nI O#±çËÍ°ÞŠ?²0Â[Äd̈9.û©¶«û‹Ú]»*¸J3y0?å`"›_”Ä«Õù+B”©¡šÛîå2ºi¬0×*X ÿ•¡SôŒâ•ñÒHY3cÏOfG#É ŒF<žO.žv4ò¦Å³`ÍøðؚϷq9j2åÔÕü¯Ù 7*[OóVsãU¦‹LÑé4™M§¸µ¨‰É)Îþ4— M[¡^Æ"rå ÀxÅ+PÜyôæÁ¹5‘uܾ|S^Ž’6ˆŒVÛĪàâ=j±âk¶Sµ¦#ûpWê.9n±?7͙ɣ;´É yÖoHØV”“Â%åèSóSäF¸+¶žç"Œ>ä½nÞ·+^ˆ=FÐǺõ2EoƒË—IÏÉLO¯Ìú¼ñ?DVmLSgáÞªj¸Ô•^½wK6 ÎME7çÇÜ4NÉ°FÊG(N‘H[ +(­œsô‹"YÀªk X¹?øÈØtÊ爷¹É–àÈt‰çº×{o YrsßäMÞç9çä9Ï9ö–6×RŠKùîE•È*R>Wa8Œ¥:(i«øE-¡&Ä€úIGCó)+3ä¸v‹ïMÄ]çaTÒÜèÀq^uüßÒzw 9,:ÏÃ7ØŽB:ÒSòtE‡˜r®â¨îð<9Z–âßFoÌÈÚ]ÀšHªßø ¡&Ísžz¶ /©=<5.²öG£…ù®e8p‡ž™-C¶á2dlLR'1èŠñáÿ@°°äð ›L« —¡p4g5Z–O/‡EÏ`áO° bVÏ hös<^#t Z¸quLì¦Gñtæ‚78Úr’D¨êÙªôã!ìzOy\âã˜àãih!¨±³ƒÎë¶a¼•X“{[•ÐY9Æ]‹qUä;è\¹’K«ÉŒÆ˜W¸~íÈJh—g’o¢Ž²Ý•)zuô ²¦O¨Úré«8Ä&a]h“H²õ…’h¬1דÁXÍ”ìÊÏ.)-,̯(©µgË-m^÷÷ƒ=¿@,¼ÿÊSH¼ƒÜärô¹5˜°ö|•·ê"ÞFoË¥é ÷†t ‰¡]Ð!Ó‰^‰w¹§.À Óî_÷tÙ +>_‚w^ô +bð?ð‰ÝxX Öë&„OÏæ‡Á2ChZƒÂp“,C±¸Vá°Öâ4bYP ©¬I·ßžLÇÄmFIJÛ@Òßn¿ÄÖt•%šê,ú ÕØädߧ—*ÙX©á¥Aïê>ÜÕü3\€º'¬:Ê‹¢°Q;'u:·š+ÂF­É©:\Àjr8ѨwNBMýáºû ½íØ1CÝvxjêŒîÈWtægº¢böÀŠ Š² ¥ó˜]oJ-g±XÚ-$ʵ<°Hð•Öo¯æá«qË|¦5K1¿>"Ü·€‡ÍQ‚_öŸûa³æ +endstream +endobj +1302 0 obj +<< +/A << +/BBox [31.1811 65.0929 770.524 596.693] +/O /Layout +>> +/K [1305 0 R 1335 0 R 1306 0 R 1311 0 R] +/P 1061 0 R +/S /Table +>> +endobj +1303 0 obj +<< +/A << +/BBox [36.8504 113.796 756.35 595.276] +/O /Layout +>> +/K [1315 0 R 1336 0 R 1316 0 R 1320 0 R] +/P 1062 0 R +/S /Table +>> +endobj +1304 0 obj +<< +/A << +/BBox [36.8504 277.795 756.35 558.425] +/O /Layout +>> +/K [1324 0 R 1337 0 R 1325 0 R] +/P 1063 0 R +/S /Table +>> +endobj +1305 0 obj +<< +/K [1172 0 R 1173 0 R 1174 0 R 1175 0 R] +/P 1302 0 R +/S /TR +>> +endobj +1306 0 obj +<< +/K [1176 0 R 1338 0 R 1339 0 R 1340 0 R] +/P 1302 0 R +/S /TR +>> +endobj +1307 0 obj +<< +/K [1178 0 R 1180 0 R 1182 0 R] +/P 1338 0 R +/S /L +>> +endobj +1308 0 obj +<< +/K [1186 0 R 1188 0 R] +/P 1184 0 R +/S /L +>> +endobj +1309 0 obj +<< +/K 1184 0 R +/P 1339 0 R +/S /L +>> +endobj +1310 0 obj +<< +/K [1190 0 R 1192 0 R 1194 0 R] +/P 1340 0 R +/S /L +>> +endobj +1311 0 obj +<< +/K [1195 0 R 1341 0 R 1342 0 R 1343 0 R] +/P 1302 0 R +/S /TR +>> +endobj +1312 0 obj +<< +/K [1197 0 R 1199 0 R 1201 0 R 1203 0 R] +/P 1341 0 R +/S /L +>> +endobj +1313 0 obj +<< +/K [1205 0 R 1207 0 R 1209 0 R] +/P 1342 0 R +/S /L +>> +endobj +1314 0 obj +<< +/K [1211 0 R 1213 0 R 1215 0 R 1217 0 R 1219 0 R 1221 0 R 1223 0 R 1225 0 R] +/P 1343 0 R +/S /L +>> +endobj +1315 0 obj +<< +/K [1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/P 1303 0 R +/S /TR +>> +endobj +1316 0 obj +<< +/K [1230 0 R 1344 0 R 1345 0 R 1346 0 R] +/P 1303 0 R +/S /TR +>> +endobj +1317 0 obj +<< +/K [1232 0 R 1234 0 R 1236 0 R] +/P 1344 0 R +/S /L +>> +endobj +1318 0 obj +<< +/K [1238 0 R 1240 0 R] +/P 1345 0 R +/S /L +>> +endobj +1319 0 obj +<< +/K [1242 0 R 1244 0 R 1246 0 R 1248 0 R 1250 0 R 1252 0 R] +/P 1346 0 R +/S /L +>> +endobj +1320 0 obj +<< +/K [1253 0 R 1347 0 R 1348 0 R 1349 0 R] +/P 1303 0 R +/S /TR +>> +endobj +1321 0 obj +<< +/K [1255 0 R 1257 0 R 1259 0 R] +/P 1347 0 R +/S /L +>> +endobj +1322 0 obj +<< +/K [1261 0 R 1263 0 R 1265 0 R] +/P 1348 0 R +/S /L +>> +endobj +1323 0 obj +<< +/K [1267 0 R 1269 0 R 1271 0 R 1273 0 R] +/P 1349 0 R +/S /L +>> +endobj +1324 0 obj +<< +/K [1274 0 R 1275 0 R 1276 0 R 1277 0 R] +/P 1304 0 R +/S /TR +>> +endobj +1325 0 obj +<< +/K [1278 0 R 1350 0 R 1351 0 R 1352 0 R] +/P 1304 0 R +/S /TR +>> +endobj +1326 0 obj +<< +/K [1280 0 R 1282 0 R] +/P 1350 0 R +/S /L +>> +endobj +1327 0 obj +<< +/K [1284 0 R 1286 0 R] +/P 1351 0 R +/S /L +>> +endobj +1328 0 obj +<< +/K [1288 0 R 1290 0 R] +/P 1352 0 R +/S /L +>> +endobj +1329 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1330 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVklTÇ>3s~¶1B +³Ü˜¼~ñáað®F? ì’ví]Û ¶×Ù], r-°&Q«¸H¡Ð8iˆ€@t“"Z¥4PKII‘))m%GD)Žˆ +¥Jš¸ß\o,HÃ~TU¥Þã¹÷;ç|sæœ3sïšeR *YU[<£ô|’ÈxÖëÛò•â#GˆÌ»ˆôù m-o^»ß&Êòi›·6t_~¼ +ÜÓÛšÂÁЕƒ—æeŸ„>§ †ÜÑOC¿ +ýĖåK“{ˆròˆÄîæh}0o0oˆÍÃ8×ÜÒ&4¦å_¶[ÂÇ®-Ü .Tq¦-n[õ»{6ÀõÄjâÈ›D‡Þ‚IVÙ(ó]¦½Ë~ŽäI§ØGDÅ_ dÐâOq/-™™ãÊÉwå¸:}ÙÁé+Òû>Ÿ×¡õay:N]úJ}båýŠß«Öd_ ÀþJKæbêq­»Këþ"@êšúqdáÿ°¨+‹ö£¡kQ + mkÀ•)l×¥°‰ó·MN-Zˆ>OaF%ìáæ4’=ÂxÇØÖ€ßNaøŸ)l2âî#rFIɹ2R‹Æ£ YµEcÁD$ÚZ$—47ËšHcS".kÂñp¬=*òúW-©ZR°6ÒÚˆÖ„77cwj6ÈH\†#‰¦pLe,܉'±pH&bÁP¸%Û$£Ês“ÚðíùÊH«D¹¦5’ÀüÚD0ŽË`k¨¢ÎõÑÍ­‰X$/’t„$ú^™´’"TO1ŠR£°•Ũ͹a‰µRcy0Í@lß÷ 8§ù4 Uy±F5rÑFüv(yòzù$=GÝô<¾€=ô:ýF­IéÝ@wFAT]sÙ}l-ĉ±íl'úÑy“<Å°^ö:ò{‹½Ç'£ê!iFõCYîàûù þ›ÿ‰÷óOøg‚DºØ êD\GÅ;âm™Ö­=¯}¨}¨3Ýv:•käëNÈ^3ÝÜdî4l4‘QDãP—uUâ;TO[QÉc´›’ήõ@NÐk>úDÕLU¢ä>æal ÄÏÖ±kaq¶e¸¢ÙKì0;ZÞƒ¼Ï.²¿°¿²O¹Á >– ×WÅkùZ¾‰ïãÏòüeœÈ^~š¿Ï/¡Æ~~5fŠ\1FL^QY-[Äq\œÅö-K[¨-ÒÖhëQû9­_û;Éu¡çë³õù&½Uß®wê?ÉÐŒ,§+¹Æhã~c—ñœÑk|`|iŽ1ÇšS Ef©Yk6›íæQ³ß¼œv,}Iz$=–ᦣøeûå7ÞÞ×pºË×Å4]ÄixDŒK}ïÎò,³9=Â{Uvf-›†ú#Ýé´B;GkÅCԬ׉Ló +fqí ö²¨ ctÈlg§E@ ˆCz¾qÿP?ù~qÔÜjÌËÈôšxFo2‹Ø½“æ‹ñFÇX5ý]§‡±r‚O§s´‡v³vJ£®´clÞµ³|2ëÔ_¯jÝ«og÷b'ê}â4›Æ࿨i4g]§<õÁ-›;o3JKŠ‹ +ÝÓïvÏÔü»­).9yÒwïš8á;ãÇ“7:7'{ÔÈY™éi¦¡k‚3r{­Š€´§lmªµlY¡Ò­ Á› ÿzØ·rlphòVf˜ ß`– 1ˆ™,[. …n鵤ý{%O²uÕ>à§<–_Ú^é`mª£Œ€âra†ôŽoòH›¤×®hoJzÄëÉÌ(·ÊÃ…nêÉÈ̲+¬¶V±ˆ9€Wxç÷pJ¬ìJËãµ—[•‚-ò½Á]Uíóz&º\þB·ÍÊë­:›¬¥ö¨‡BåÎ2¶Qn›Î22¢Ê¡NÙã~#¹÷d6Õ +²BV(ø}Ÿ-‚~µFNý€å±ØÖ?¾Ð}’½´Úg§—Ÿd´ÚwŠ*;z–wx<~µZn¹o—Cú¸mýEÒ;>"•šLî’vwµïf¯KÝý~-t¯¨ñ¹µåÝ+U5>§eã‹‘¤²©2‡ +[^e l”vºµÔjJn `³&$mªÙêzuBeÙ©Á?S¥W&Wû,—½x¢åzîêÉ£dÍÖÞåerù­žBwOvÎP§{FŽJ¬7ƒð°ÏA]!dýu«™ÊÈZŽ#bËz‰L|–Íóç©[x%ëç†ËÏÐÑúHfÏW¡çg[2yp¬+·Z‚)‹‘Ÿ}TÇeøÈÁÿ5¶ +ìéÓÕI1˱µÈl‘£Ï.t·Û+¬¶li¯@˨ʇIþùÅh¹Ë¥v¹ódÕA±;ªÿÅzùÅFQÄqü7w{7s×ÚôO.®Ê•ÓÆØ4¦­J±Ð\û÷Ï}ƒmƒ•[~Q¦rÿ•ž².kõà DËÉàMÙDzWXáÁ²i9IT6A´òeðf1SØn„o?饑nUµS_àAš +î‹Ô'ëi*p™lïYZR³dËd*ó 2e‡ÁÙj‰ìà²}ï0º®±\C3ù6õ©ãhóU”ë8ï¢Ë݈cl +Ç2ò5ÆØÁèúþ+ôlõ#êõ öÎqy”!öb¯À54å數¹|¿å¹ +pÍþç¯É_ÇC|-ÚÂuK´§.ÂèŸ| ¼‰ýøî«Ãñ[á´l #ÆNS8Ƴo­%ìGý«ÆâsGÛ{†ûìžg5ÓÌ¿Õ3t½Ÿn¯#BùÜ5”+ïض‹^;üÏuÿjxX(~~›Ö"èÇóéç{îÞ÷Òv¿)–¯çÉïû-Ee™bþ÷RŠñ—iI£ï±[î€oÃ{ƒF¼54¢º1CÖoæ-QŽµà$U`&Bi3^áŸA=o•SWª¬_§b=‘œç±ùžfè+1Ëú€u†5Ã:Ízu‚5Íêeõ°ºYqVŒÕÎÚÂÚÌò³ –—%bOÂ߃à;p|.€À9`ƒY0Nƒip ¼ &À!0Ý6ÏqÓ6ë,ë}Ö)ÖIÖ1Ö¬ÖVV+K²|,‹b1ø[ð5¸ +>Ÿ%ð18À‡à8x ì;zš«ÕMVN¼ë•Ö i•Ö¤´öHëyií”Ö¨´¤µ]Zii¥äýj£Š¨ûÔ=ênVµªZ­W!U¡ÊUP)åW†ò(<ÃN•7áIôÇEÂY¡ÄpÄùµ?šÁ§¶;¾h\8ë”x:vZÏwF“+sB¼>fêÉÌEbelÒÌ;¦Ú†¿oá’½DrßeÚ 6‘ÄoË‚Üð©ÔÑ~D-7jé¨åFÃb>I͉¡ñ̽t‡†ÿÚÄšÙ’š»uw“©9Eñô¶ö‚§,ˆþd̺t¼6´·Ýí\[]ø€yÉ 1Ceø¦—c’xЩƎÆÂM§*ôü1Ÿ +h«3/‰™|*„ð: åŸ îÐo¶ +endstream +endobj +1331 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1332 0 obj +<< +/Filter /FlateDecode +/Length 3258 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘æA€TÏr "Ù¼@ƒB0»ÂPÉÙÅ¢»Én’5»KiZaƒN;¦Îh¡F+ 87ÛàÐŽ¥B3£Õ:£3:XÚÎıÄÁ©”ŽVÓß¹Y2ÁêüÑét¦÷—{ïï{œï|ßwÎ=bD”I=$¨ì®úÒåo$‰Œ×¡½»©;!_*=xÈœM¤W4wµt¼þÙR›(ËG¤Ý×Ò¾¥¹ÿìCká{÷ÖÖp0t~ß™ +¢œ!È·´B‘75ãqÈ ßÐڑؼêŽän¢Ü|"±«=ÚÌË#bKpŸênîwó‰ò÷Â_v;Âìûמƒ/Dq¢+îºëw7Þ;æ Ä‘7‰}&Y•Ùæ»L{—ýÉ‘>&Ž±ˆJ¿Í¥åŸàY^¶0ו[èÊuõú²‡ÓW¤¾¤GÆôt„úô5ú͈•ÿ+b|š“}£ø+/[Œ¡G´þ>­ÿ‹©kîÿáàöÿa¨+‹ž$Fã×¢Tiœkà5)n€7¦¸‰ý·UmN-Rˆ>OqFeìÞçt {<Åñ±½)®¿™âø?SÜdÄÝ傲²[äšHS,6'dU4Ö‘hg‰\ÑÞ.ë"-­‰¸¬ Çñîp¨ÄW[Uã÷­t¶„pÇ‹ëÂ-›Úƒ±«ÕO(d$.ÑDk8&ƒ2n‰ÄáX8$±`(ÜŒµÉ¨²L›¿9_é”#×uF_Ÿ&Âqì •"@Ô™ )º©3‹„ã%’’DßË€[ÀÖP„š(FQŠãn¦tU`1êržAh"`TË +j$ÕA×B­°Å)ŒwÞÝx†àé£ZD©!?PDëáÝ ÿPê§bgL mB´ Æ])]íèÿ´ÿ¿{H0õ ã@Tí¾o5RYŽVõC‚«N† u8Û ‹NŒùfkóU­Žtr“©l$­ƒqrPó׃)îÌÙ mi*ƒè¤ +š m‚Ueq¼Õªã‹5¯c?"Ò´·´·ðéN¿ü¦Y0|Ûµ¦^Jª¼ /ŒEìy*7Ë™Ýó­Þÿõëoµ”MÌÇæÀ~ŠªœžÆÂýõQ÷¡…¸m°:‹ßÍè¤Ò/¤mxzèìýÐÑÜF°7Âû$ÞË`k›91úØçýíDìOù ?ÁO8Öåˆ[£<ÆÁõaèU¼ôa¯ÁçAz¶côŽ…È}øå½Äæ½ì#6Ê×BËÔüˆÓï>äûkú€þÆòÙ2–dÇá“ÇvrŸ­>'wœ( +kX;‹²Û˜#\ðEˆå»x?·ù á×–éÃFž±ØlG¸8{sQ¡Šö]ìÆFà‰¨ãø㬖5°Vö$ëG'Ù(ð/æËÑu…Ÿˆ€–¥ÓÛôç€ac¹/Í@lçûLìÓBºUy1G-rÑýøíPx؆^>BÏP?=‹p€^¥ß¨9é4¡KèN6 êZÌneë?cÛÙNô£wc{Ù {ù½ÁÞã×£êq´£úñ,wð§ùQþ“ÿ‰ðù§‚Dº¸O4Š¸Ø/‰·ÅÛÚJ­_{VûPûPgºít*ÏÈ76½À3Ýl3wš?6÷™¿È(¡¨Ëºjp5ÑT²vQÒYµà(½ ÓǪ`,U‰Â­ÌêÙ:ÀÏ6°ë`q¶y¢¢çÙ ì;ŠZÞÞg§Ù_Ø_Ù'.qƒOçEõ­åõ|=oãOò§ø^þ"vä ?ÎßçgP㿈3Ež˜&®^Q 4ˆ{Äf±C'Äi1ŠuËÒn×–ië´¨ý”6¢ÃJr]è…ú"½hÕ;õíz¯þ3ìèQ}ÔÈrº’gL5–σÆÆ—æ4sº9(1ËÍz³Ýì6™#æÙ´Ãé+Ò#é± 7Â/Û/¿öõ¾‚Ýý[¾Ñ(¥™ì4vÃ"^ê¼;ɳÌöôTÙ™õlVêtI¤Ójí­÷P»Þ(2Íót€Åµ‡Ù‹¢šÓ~³›1*öë…ÆÒñ~ò§Å!s‹0Ï"ÓÏÄz«YÂVè½ì_Ž/:Æjéïì"Ý‹™|>¢Ý´‹uSõ¥fSð­ä׳^ý9ñ²Ö/¼úvvVp–>,~@‹hþ‹šGs°×uÊWnåâ%‹o^¸ ¼¬´¤Ø]4ÿ¦y7Î-¼Ášã’×_÷Ù³f^[0cú´ü©y¹9Ù×LÉÊÌHO3 ]œ‘ÛkU¤=7`ks­•+‹•l¡NRlüëaW_écË€ã&¯ô¬„gó×<+Ç=+'[ýjŽÜ"ûNËcß¹u¤ Ø=Ä^hðÙéUCŒ|Ǩf¬g`UÇãW³åUùuÜgÀ}ÆÖ‘Y"é-ˆH%&“J»¿Ö7ÙêRO¿A‹Ý«ë|.dmy÷HUFÏ©AYA)’T:UæxÁaË«4û¥nÝaµ&ï`±f&mªÛâzyfMå±±?SW&|–Ë^>Ëò=³ò)Y·epU¥\u¥¥Ø=“;Þék²S$kÊdž°9ÌqW Y_n5SY«°ElÙ$‘‰Ï²yáõ/¡dÓ¸áò3t4‚þ’9j!ôÂK&/6‚5zþJM0¥1 +s.’¢j»Ll9Ø/s»¨Èž?_í³ +K‹Ì–9ò¢bw·½ÚêÊ‘öj´ŒÖú0È_QŠ–»\j•{‡*©‚ÝSû/ÖË/6Š"Žã¿¹Û»™»Ööè¿\\•+§±iL[•"Ð\û÷‘9Ãw_6™jÌŽ™ ™ìx·¦ ¯b6Ûte3ÙÁÜÊ¡¡h$ÍÎ%Ù}™B—r+‹c¦OïT§•Géޖòšž4—<¦7ÝÄ«4ŸçõéÞ—'*·ü¢Låþ+=i[Öþê‡?‰–“Á²™ô¯°Âƒeór’¨lœhåËàb¦°Ý4ß~ÒK="ݪj§¾Àý4Ü©O6ÐdàÙÞ3´¤fÉ–ÈTæ`ÊŽ€q²ÕÙÁËdûÞft]c/¸Šf>ò-êS'Ðæ+(×sÞE—»ÆÙþŽaä«Œ±“Ñõý—ééêGÔëAì œã<ò&(Cì!Ä^‚kiÒßK“…sù~ËsàšýÏ ^›¿ŽøZ1´…ë–hO]€Ñ?ùxû­ðsÜW5Šã·Â»h!ØHG Œ¦p.Œgß*ÚJ8€:VÅÿ 掶÷4÷Ù=Ïj¦˜«gèz?ÝZG„ò¹«(WÞ¶m1´*väŸëþ7ÔÐ*°&Püü6¯EÐçÓÏ÷ܽï¥í~S,_Ë“ß÷?\ŠÊ2Åüï¥ã/Ò’Fßc·Üß‚÷: {kiXuc†¬ßÌ›¢kÁ ªÀL:„Ò&¼Â?zÞ+§®.T©Z§b=‘œç‘ùžè°+1Ëú€uš5Ã:Åz—5Íšbõ²zXݬ8+ÆjgmambùYË˱ÇáïÁuð¸>çÁGà,°Á,˜§À8Þãà0n›g¹i›u†õ>ë$ë=ÖqÖc¬ÖVVK²|,‹b1ø[ð5¸>Ÿ%ð18À‡àxì;{Zj5VN<ë•Ö´´ŽIkBZ{¥õ¬´vIkDZ;¤µ]Zii¥ä½jƒŠ¨{Ô]êNVuªFU©ªPå*¨”ò+Cyža§Ú›ð$úã"á,Sb(âüÚ͉àÛ_4.œª%žŒ‡¶FÇsÔÑäÄÊœ¯šz2s„X0óN§©®ñï[¸d/‘܉֋$ñÛº ×*u´QËZ:j¹Ñ°˜ORKbp,s7ݦá¿6±f¶¤fçÝÝdjNQ<½m{ÁSD2f}:^Ú×îvns}ø yÑ 1Ceø¦—c’xЩ¦Ž¦ÂM§*ôü1Ÿ +Ü\o^3ùTáuÊ?œ¯pµ +endstream +endobj +1333 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1334 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1353 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1354 0 R +/FontName /CUCKKZ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1335 0 obj +<< +/K [1355 0 R 1356 0 R] +/P 1302 0 R +/S /TR +>> +endobj +1336 0 obj +<< +/K [1357 0 R 1358 0 R 1359 0 R] +/P 1303 0 R +/S /TR +>> +endobj +1337 0 obj +<< +/K [1360 0 R 1361 0 R 1362 0 R] +/P 1304 0 R +/S /TR +>> +endobj +1338 0 obj +<< +/K 1307 0 R +/P 1306 0 R +/S /TD +>> +endobj +1339 0 obj +<< +/K 1309 0 R +/P 1306 0 R +/S /TD +>> +endobj +1340 0 obj +<< +/K 1310 0 R +/P 1306 0 R +/S /TD +>> +endobj +1341 0 obj +<< +/K 1312 0 R +/P 1311 0 R +/S /TD +>> +endobj +1342 0 obj +<< +/K 1313 0 R +/P 1311 0 R +/S /TD +>> +endobj +1343 0 obj +<< +/K 1314 0 R +/P 1311 0 R +/S /TD +>> +endobj +1344 0 obj +<< +/K 1317 0 R +/P 1316 0 R +/S /TD +>> +endobj +1345 0 obj +<< +/K 1318 0 R +/P 1316 0 R +/S /TD +>> +endobj +1346 0 obj +<< +/K 1319 0 R +/P 1316 0 R +/S /TD +>> +endobj +1347 0 obj +<< +/K 1321 0 R +/P 1320 0 R +/S /TD +>> +endobj +1348 0 obj +<< +/K 1322 0 R +/P 1320 0 R +/S /TD +>> +endobj +1349 0 obj +<< +/K 1323 0 R +/P 1320 0 R +/S /TD +>> +endobj +1350 0 obj +<< +/K 1326 0 R +/P 1325 0 R +/S /TD +>> +endobj +1351 0 obj +<< +/K 1327 0 R +/P 1325 0 R +/S /TD +>> +endobj +1352 0 obj +<< +/K 1328 0 R +/P 1325 0 R +/S /TD +>> +endobj +1353 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1354 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVkl×>÷ÞyøØÆ€î21!xýâé1†ÝuÀ ¶!¬I »ö®íÅuv  'ÐkµŠ‹ +“†D㘴Ñ*¥ZJJŠ”H‰Hi+9"JqDT(UÒÄýfv± ?øQU•:ŸïÌw÷Üsν3kbD”N]$¨øáÚ¢Y%çãDÚ[Ð>ÒГ¯9B¤O&R4v4µ½um¡I”á%RÖ7µnnì½¼m%|OcliúW^Z@”yò¼f(²Ç¦=ù*ä{›Ûb›–/ï!ÊÊ!»[à þœáœa"VŠq®Í¿©C<¢Í$Ê9Ùîo þdÛ=»á Qœéˆ;þÝ}ëaÇzbqäM¢K€ƒNFùý=¦¼Ç~Žä†I§ØÇDE_eÑâÏp/)žåÈÊsd9º}ÕÅékR¾(íR°<§u…:±r~EŒïµÖd_"ÀþJŠçcêq¥·GéýÒGÖ5ýÿ°ñàÿ0¬+ƒö£Ä5‹(ÉåBJp¼2É5ðú$×qþ¶X‡SI… /’œQ1{,É9fÏ$9Þ1v Éðw’\ÿg’댸óˆœU\ÖÆ¢lÓHE/±—Ùavµ¼|À.²¿°¿²ÏlÜàÏóGê[ÉkùÞÂ÷ñçøþ +Nd??Í?à—Pã ¿ŽÓE¶'¦¨V‰GÅ&±CgÄE1„}ËPTÊ”ÕÊ:Ô~NT>ÁNrU¨yê\uЬ¶«ÛÕnõg8ÑCê–aw%[«-ÔviÏkýÚ‡ÚWú8}¼> (ÔKôZ½UïÔêƒúå”c©KRC©‘4'Å/Û/¿ñö¾ŽÓý[¾N+¢‰ì"NÃãb ¼¬ïÝYž¡·¦†x¿•^Ëf`§þH7D*U)çhx”ZÕz‘®_¡Ã,ª<É^tŒéì´ð‰!qHÍÓ&úÉ÷‹£úfݧ_F¦×ijj³^È–¨Ýì0_Œ7:ªéïì:=†•c|&£=´›uR +õ¤c£ð®åSY·ú¢xMéu;»;8Iߧ¹4ÿEÍ i8ë*åXÜòù¥óçÌžUR\TXàÌŸyÿŒû¦çÝkLsÈ©S¾3yÒÄ{r'Œ—36;+sÌèQéi©)º¦*‚3rzŒ +Ÿ4§ûLeº±lY%~(ü·(|&þõ0+n÷1¥Ïv“·{–óñžå ÏòO–)Ñ¢§ôÒü½Û'ÙÚj/øÓn£NšC6_aseº-Œ‚àp`†ôä6»¥É|ÒcVt6Ç=>7âõ¥§¹ W0­ÀI}ié é`f…ÑÑÇ*ʘMx…gA§”QÈʬ4Üs¹á¶R0EžÇ0WV{=îIG]Ód®£Þ$c©9&ßv!—½Œ©¹LÝ^F†¬r¨[ö9ߌï=™Iõ¾üŒ€ðÏk +µFV¾ùá6Ú2˜[à<É^^å5S]'­òž¢Êᮾå]nwµZ¶Ë»ËvŸ÷ ['‰¸'7$-1ß%ÍÞjï­V‡u¯«CÐgU׬ Ï^i•Qãµ+@P–[„$-Uf¢à á±4¾ ÒL5–Íñ >lÖĸI5›¯M¬,?5ügªôÈø*¯á0O2êüîÉ}9¯ÙÜ¿¼\.¿ÝRàìËÌJtºoô˜$Éu+ ŽØlf»[ Yßl5³22–㈘²A"¯aò¼Rë,¥xC)ÜpÕ1t4„þùâ™ ¬Pó2 ¿N8ÆЕÛ5þ¤FË˼NµŽËÈ‘ƒý&7óóÍ™3­“¢»°µÈ¬Ì–ç8;Í*£#SšUh­ôbRÝ‚"´Üá°v¹ûd9ÕC0»ª½ ù_¬—_lEÇs·w3w­íѹ¸*WcÓ˜¶*E ¹öï=x¤hzHÒkK $*$&‚!˜Ú€×VW©ñI +Q¤`W¶-âAHh¢U ‰b# úè«&ÆØúýÝ\Åꃛ~î3ûûÍÎîÌîvg"4hÎQì¡ú”ãIëÌB>Sý¤ÎÎg +‡§£xœÏ»K›jGÕþÊC5•í{sDÍ*éaÎãõi̾û3ɾºÌ˜Y—ÎŒ§pk:ð*f2ÑHG&È.ŒFBÑÌl"‘ÙßžÎw)»¼0f:±ñÔAušy4œÊ­}^Ó“â’Çô¦x•æó¼þü³#ÛûË7ÿ¢Låþ+=e[Òþê‡?ꉖ’Á›²‘ô/¿ÂƒeãR’¨dœhùËàÍB&¿Ý2ß~ÒK="ݪj¥žÀ4Ü ¨GÖÑdà2ÙÞ³´¨fÈ–ëÈ”çègJŽ€q²Õ"ÙÁ+dûÞft]c¸†f>ò-êQ'Ðæ+(×rÞE—;Æ<Ùþ>?ÌÈWc£ëû¯ÐSyԨׅØ8ÇäMP‚ØȽ WÓ¤¿›&óçòý–ã*À5ûŸF¼:wòµbh ×-Ñžº£òEðö›á縯jÇowÓ|°žŽ;Mþ\Ïž´qu®‹ÿÌmïî³{ž•L1ÿVÏÐõ~º½Žår×P.¿cÛ.bpEìÈ?×ýo¨Á`M øùm\ ϧŸï¹{ß‹Ûý¦P¾ž#·ï¤•a +ùß‹)Ä_¢E¾Çn¹ ¾ ï òVÓêÄ Y¿™·D)Ö‚T†™t¥x…6úõ¼=VJ¨R±Fź"YÏ£s]MЈ+1Ãú€u†5Í:Íz—u’5Åêfu±:YqVŒÕÊÚÌÚÈò³ –—%bOÀ߃à;p|.€À9`ƒ0 Nƒ)p¼ÆÁýn›ç¸i›u–õ>ëë=ÖqÖã¬6ÖV K²|,‹b1ø[ð5¸ +>ŸEð18æÁ‡àx»ºšªU VV¼ë–ÖIi“Ö„´öIëií–Ö°´vJk‡´RÒê“ëÕ:Q÷©{ÔÝ*¬jT•ªP!U¦JUP)åW†ò(<ÃN¥7áIôÆEÂY¢Ä`Äùµ7šÁm;_4.œŠ%¶ÇÃNK½ã9êÎh²byVˆ×FM=™¹HB,N˜9§RTSÿ÷-\´—H¸LkÅ’ømž—k?•:Ú‹¨åF-µÜhXÌ%©)10–¾—îÐð_›X5[T³}¯în²oVQ<µu'{ÞSDÒfm*^ÚßêvnSmøyÉ 1M%ø¦—b’xЩ†¶†6ÂM§Êôü1— +ÚTk^Ó¹Tá5Ê?ÑoÖ +endstream +endobj +1355 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1335 0 R +/S /TD +>> +endobj +1356 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1335 0 R +/S /TD +>> +endobj +1357 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1336 0 R +/S /TD +>> +endobj +1358 0 obj +<< +/P 1336 0 R +/S /TD +>> +endobj +1359 0 obj +<< +/P 1336 0 R +/S /TD +>> +endobj +1360 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1337 0 R +/S /TD +>> +endobj +1361 0 obj +<< +/P 1337 0 R +/S /TD +>> +endobj +1362 0 obj +<< +/P 1337 0 R +/S /TD +>> +endobj +xref +0 1363 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000376 00000 n +0000004658 00000 n +0000004909 00000 n +0000005036 00000 n +0000006144 00000 n +0000007240 00000 n +0000008259 00000 n +0000009265 00000 n +0000010286 00000 n +0000011345 00000 n +0000012391 00000 n +0000013411 00000 n +0000014444 00000 n +0000015452 00000 n +0000016473 00000 n +0000017482 00000 n +0000018504 00000 n +0000019526 00000 n +0000020547 00000 n +0000021581 00000 n +0000022666 00000 n +0000023738 00000 n +0000024810 00000 n +0000025832 00000 n +0000026867 00000 n +0000027902 00000 n +0000028925 00000 n +0000029974 00000 n +0000031022 00000 n +0000032070 00000 n +0000033106 00000 n +0000034142 00000 n +0000035078 00000 n +0000036933 00000 n +0000037002 00000 n +0000037319 00000 n +0000037655 00000 n +0000041397 00000 n +0000041576 00000 n +0000041703 00000 n +0000041828 00000 n +0000042289 00000 n +0000042757 00000 n +0000042909 00000 n +0000043335 00000 n +0000043613 00000 n +0000044007 00000 n +0000044402 00000 n +0000044614 00000 n +0000056930 00000 n +0000057438 00000 n +0000058534 00000 n +0000059449 00000 n +0000060395 00000 n +0000061366 00000 n +0000062313 00000 n +0000063225 00000 n +0000064252 00000 n +0000065090 00000 n +0000065217 00000 n +0000065342 00000 n +0000065923 00000 n +0000066075 00000 n +0000066306 00000 n +0000066660 00000 n +0000067184 00000 n +0000068097 00000 n +0000074105 00000 n +0000074989 00000 n +0000081222 00000 n +0000086095 00000 n +0000091768 00000 n +0000092252 00000 n +0000092520 00000 n +0000093092 00000 n +0000099206 00000 n +0000105052 00000 n +0000111448 00000 n +0000117300 00000 n +0000122977 00000 n +0000129193 00000 n +0000135064 00000 n +0000140829 00000 n +0000141321 00000 n +0000147573 00000 n +0000153099 00000 n +0000161627 00000 n +0000161755 00000 n +0000161881 00000 n +0000162303 00000 n +0000163072 00000 n +0000170997 00000 n +0000171417 00000 n +0000172239 00000 n +0000175760 00000 n +0000181390 00000 n +0000187089 00000 n +0000193347 00000 n +0000199665 00000 n +0000205810 00000 n +0000211980 00000 n +0000217860 00000 n +0000223798 00000 n +0000228168 00000 n +0000228281 00000 n +0000228409 00000 n +0000229252 00000 n +0000230487 00000 n +0000230585 00000 n +0000231044 00000 n +0000231890 00000 n +0000232985 00000 n +0000234421 00000 n +0000236105 00000 n +0000238040 00000 n +0000240283 00000 n +0000242928 00000 n +0000245757 00000 n +0000248940 00000 n +0000252414 00000 n +0000256164 00000 n +0000260143 00000 n +0000264412 00000 n +0000268924 00000 n +0000275634 00000 n +0000282566 00000 n +0000289801 00000 n +0000297249 00000 n +0000304993 00000 n +0000313164 00000 n +0000321537 00000 n +0000330167 00000 n +0000338945 00000 n +0000344608 00000 n +0000350990 00000 n +0000357375 00000 n +0000357648 00000 n +0000358159 00000 n +0000358431 00000 n +0000358955 00000 n +0000358982 00000 n +0000359287 00000 n +0000359652 00000 n +0000360081 00000 n +0000360381 00000 n +0000360690 00000 n +0000361018 00000 n +0000361394 00000 n +0000361730 00000 n +0000362106 00000 n +0000362429 00000 n +0000362753 00000 n +0000362906 00000 n +0000363101 00000 n +0000363374 00000 n +0000364009 00000 n +0000364036 00000 n +0000364346 00000 n +0000364772 00000 n +0000365122 00000 n +0000365487 00000 n +0000365884 00000 n +0000366318 00000 n +0000366834 00000 n +0000366987 00000 n +0000367420 00000 n +0000367615 00000 n +0000367813 00000 n +0000368209 00000 n +0000368363 00000 n +0000368787 00000 n +0000368983 00000 n +0000369182 00000 n +0000369577 00000 n +0000369850 00000 n +0000370354 00000 n +0000370674 00000 n +0000371046 00000 n +0000371156 00000 n +0000371743 00000 n +0000372385 00000 n +0000372495 00000 n +0000372983 00000 n +0000373572 00000 n +0000373727 00000 n +0000373882 00000 n +0000374297 00000 n +0000374496 00000 n +0000374888 00000 n +0000375043 00000 n +0000375198 00000 n +0000375632 00000 n +0000376028 00000 n +0000376224 00000 n +0000376350 00000 n +0000376505 00000 n +0000376922 00000 n +0000377318 00000 n +0000377518 00000 n +0000377673 00000 n +0000377914 00000 n +0000378461 00000 n +0000380053 00000 n +0000380108 00000 n +0000380164 00000 n +0000380220 00000 n +0000380276 00000 n +0000380331 00000 n +0000380426 00000 n +0000380556 00000 n +0000380632 00000 n +0000380737 00000 n +0000380818 00000 n +0000380899 00000 n +0000380980 00000 n +0000381047 00000 n +0000381114 00000 n +0000381175 00000 n +0000381242 00000 n +0000381309 00000 n +0000381370 00000 n +0000381437 00000 n +0000381504 00000 n +0000381565 00000 n +0000381655 00000 n +0000381737 00000 n +0000381852 00000 n +0000381934 00000 n +0000382016 00000 n +0000382098 00000 n +0000382194 00000 n +0000382276 00000 n +0000382400 00000 n +0000382482 00000 n +0000382564 00000 n +0000382646 00000 n +0000382742 00000 n +0000382824 00000 n +0000382936 00000 n +0000383018 00000 n +0000383100 00000 n +0000383182 00000 n +0000383258 00000 n +0000383325 00000 n +0000383394 00000 n +0000383461 00000 n +0000383522 00000 n +0000383589 00000 n +0000383650 00000 n +0000383717 00000 n +0000383778 00000 n +0000383845 00000 n +0000383906 00000 n +0000384020 00000 n +0000384102 00000 n +0000384184 00000 n +0000384322 00000 n +0000384404 00000 n +0000384486 00000 n +0000384569 00000 n +0000384652 00000 n +0000384738 00000 n +0000384821 00000 n +0000384889 00000 n +0000384957 00000 n +0000385025 00000 n +0000385093 00000 n +0000385161 00000 n +0000385223 00000 n +0000385291 00000 n +0000385359 00000 n +0000385421 00000 n +0000385489 00000 n +0000385557 00000 n +0000385619 00000 n +0000385721 00000 n +0000385804 00000 n +0000385922 00000 n +0000386005 00000 n +0000386088 00000 n +0000386210 00000 n +0000386293 00000 n +0000386376 00000 n +0000386459 00000 n +0000386573 00000 n +0000386656 00000 n +0000386786 00000 n +0000386869 00000 n +0000386952 00000 n +0000387244 00000 n +0000387327 00000 n +0000387450 00000 n +0000387534 00000 n +0000387629 00000 n +0000387713 00000 n +0000387792 00000 n +0000387902 00000 n +0000387986 00000 n +0000388070 00000 n +0000388139 00000 n +0000388208 00000 n +0000388271 00000 n +0000388340 00000 n +0000388409 00000 n +0000388472 00000 n +0000388541 00000 n +0000388610 00000 n +0000388673 00000 n +0000388742 00000 n +0000388811 00000 n +0000388874 00000 n +0000388943 00000 n +0000389012 00000 n +0000389075 00000 n +0000389144 00000 n +0000389213 00000 n +0000389276 00000 n +0000389345 00000 n +0000389414 00000 n +0000389477 00000 n +0000389546 00000 n +0000389615 00000 n +0000389678 00000 n +0000389747 00000 n +0000389816 00000 n +0000389879 00000 n +0000389948 00000 n +0000390017 00000 n +0000390080 00000 n +0000390159 00000 n +0000390257 00000 n +0000390341 00000 n +0000390436 00000 n +0000390520 00000 n +0000390589 00000 n +0000390666 00000 n +0000390750 00000 n +0000390819 00000 n +0000390896 00000 n +0000390980 00000 n +0000391049 00000 n +0000391112 00000 n +0000391181 00000 n +0000391244 00000 n +0000391313 00000 n +0000391376 00000 n +0000391506 00000 n +0000391574 00000 n +0000391686 00000 n +0000391770 00000 n +0000391854 00000 n +0000391922 00000 n +0000392024 00000 n +0000392108 00000 n +0000392177 00000 n +0000392287 00000 n +0000392371 00000 n +0000392451 00000 n +0000392553 00000 n +0000392631 00000 n +0000392729 00000 n +0000392867 00000 n +0000392951 00000 n +0000393053 00000 n +0000393137 00000 n +0000393205 00000 n +0000393336 00000 n +0000393420 00000 n +0000393504 00000 n +0000393572 00000 n +0000393719 00000 n +0000393803 00000 n +0000393887 00000 n +0000393971 00000 n +0000394039 00000 n +0000394198 00000 n +0000394282 00000 n +0000394366 00000 n +0000394450 00000 n +0000394534 00000 n +0000394627 00000 n +0000394711 00000 n +0000394833 00000 n +0000394917 00000 n +0000395001 00000 n +0000395080 00000 n +0000395190 00000 n +0000395274 00000 n +0000395413 00000 n +0000395497 00000 n +0000395581 00000 n +0000395665 00000 n +0000395749 00000 n +0000395943 00000 n +0000396027 00000 n +0000396111 00000 n +0000396195 00000 n +0000396264 00000 n +0000396333 00000 n +0000396414 00000 n +0000396482 00000 n +0000396550 00000 n +0000396619 00000 n +0000396688 00000 n +0000396769 00000 n +0000396837 00000 n +0000396905 00000 n +0000396974 00000 n +0000397043 00000 n +0000397132 00000 n +0000397200 00000 n +0000397268 00000 n +0000397336 00000 n +0000397409 00000 n +0000397478 00000 n +0000397547 00000 n +0000397620 00000 n +0000397688 00000 n +0000397757 00000 n +0000397826 00000 n +0000397907 00000 n +0000397975 00000 n +0000398043 00000 n +0000398112 00000 n +0000398181 00000 n +0000398270 00000 n +0000398338 00000 n +0000398429 00000 n +0000398497 00000 n +0000398604 00000 n +0000398688 00000 n +0000398772 00000 n +0000398911 00000 n +0000398995 00000 n +0000399079 00000 n +0000399163 00000 n +0000399247 00000 n +0000399402 00000 n +0000399486 00000 n +0000399570 00000 n +0000399654 00000 n +0000399793 00000 n +0000399877 00000 n +0000400000 00000 n +0000400084 00000 n +0000400168 00000 n +0000400355 00000 n +0000400439 00000 n +0000400523 00000 n +0000400607 00000 n +0000400691 00000 n +0000400775 00000 n +0000400859 00000 n +0000400938 00000 n +0000401044 00000 n +0000401128 00000 n +0000401212 00000 n +0000401311 00000 n +0000401395 00000 n +0000401482 00000 n +0000401581 00000 n +0000401704 00000 n +0000401788 00000 n +0000401872 00000 n +0000401956 00000 n +0000402025 00000 n +0000402094 00000 n +0000402163 00000 n +0000402232 00000 n +0000402301 00000 n +0000402364 00000 n +0000402433 00000 n +0000402502 00000 n +0000402565 00000 n +0000402634 00000 n +0000402703 00000 n +0000402766 00000 n +0000402835 00000 n +0000402904 00000 n +0000402967 00000 n +0000403078 00000 n +0000403162 00000 n +0000403246 00000 n +0000403345 00000 n +0000403429 00000 n +0000403540 00000 n +0000403624 00000 n +0000403708 00000 n +0000403807 00000 n +0000404010 00000 n +0000404094 00000 n +0000404178 00000 n +0000404262 00000 n +0000404346 00000 n +0000404430 00000 n +0000404514 00000 n +0000404598 00000 n +0000404729 00000 n +0000404813 00000 n +0000404897 00000 n +0000404981 00000 n +0000405198 00000 n +0000405282 00000 n +0000405421 00000 n +0000405505 00000 n +0000405589 00000 n +0000405708 00000 n +0000405792 00000 n +0000405939 00000 n +0000406023 00000 n +0000406107 00000 n +0000406206 00000 n +0000406290 00000 n +0000406374 00000 n +0000406490 00000 n +0000406574 00000 n +0000406658 00000 n +0000406737 00000 n +0000406851 00000 n +0000406958 00000 n +0000407042 00000 n +0000407126 00000 n +0000407206 00000 n +0000407324 00000 n +0000407408 00000 n +0000407515 00000 n +0000407650 00000 n +0000407734 00000 n +0000407818 00000 n +0000407929 00000 n +0000408013 00000 n +0000408148 00000 n +0000408232 00000 n +0000408316 00000 n +0000408396 00000 n +0000408506 00000 n +0000408590 00000 n +0000408713 00000 n +0000408797 00000 n +0000408881 00000 n +0000408980 00000 n +0000409079 00000 n +0000409163 00000 n +0000409242 00000 n +0000409384 00000 n +0000409468 00000 n +0000409552 00000 n +0000409632 00000 n +0000409746 00000 n +0000409830 00000 n +0000409914 00000 n +0000410033 00000 n +0000410117 00000 n +0000410201 00000 n +0000410281 00000 n +0000410379 00000 n +0000410463 00000 n +0000410542 00000 n +0000410611 00000 n +0000410680 00000 n +0000410777 00000 n +0000410847 00000 n +0000410917 00000 n +0000411024 00000 n +0000411109 00000 n +0000411194 00000 n +0000411264 00000 n +0000411334 00000 n +0000411451 00000 n +0000411536 00000 n +0000411621 00000 n +0000411725 00000 n +0000411810 00000 n +0000411909 00000 n +0000411994 00000 n +0000412074 00000 n +0000412188 00000 n +0000412273 00000 n +0000412358 00000 n +0000412428 00000 n +0000412504 00000 n +0000412574 00000 n +0000412638 00000 n +0000412708 00000 n +0000412772 00000 n +0000412842 00000 n +0000412906 00000 n +0000412976 00000 n +0000413040 00000 n +0000413141 00000 n +0000413226 00000 n +0000413333 00000 n +0000413418 00000 n +0000413503 00000 n +0000413583 00000 n +0000413689 00000 n +0000413774 00000 n +0000413855 00000 n +0000413976 00000 n +0000414061 00000 n +0000414234 00000 n +0000414319 00000 n +0000414404 00000 n +0000414489 00000 n +0000414574 00000 n +0000414655 00000 n +0000414736 00000 n +0000414870 00000 n +0000414955 00000 n +0000415040 00000 n +0000415261 00000 n +0000415346 00000 n +0000415427 00000 n +0000415573 00000 n +0000415658 00000 n +0000415739 00000 n +0000415855 00000 n +0000415940 00000 n +0000416111 00000 n +0000416196 00000 n +0000416281 00000 n +0000416366 00000 n +0000416451 00000 n +0000416536 00000 n +0000416673 00000 n +0000416758 00000 n +0000416843 00000 n +0000416936 00000 n +0000417040 00000 n +0000417125 00000 n +0000417229 00000 n +0000417314 00000 n +0000417395 00000 n +0000417534 00000 n +0000417619 00000 n +0000417704 00000 n +0000417810 00000 n +0000417914 00000 n +0000417999 00000 n +0000418080 00000 n +0000418208 00000 n +0000418289 00000 n +0000418418 00000 n +0000418503 00000 n +0000418588 00000 n +0000418669 00000 n +0000418750 00000 n +0000418919 00000 n +0000419004 00000 n +0000419089 00000 n +0000419170 00000 n +0000419320 00000 n +0000419405 00000 n +0000419490 00000 n +0000419575 00000 n +0000419660 00000 n +0000419774 00000 n +0000419859 00000 n +0000419929 00000 n +0000419999 00000 n +0000420075 00000 n +0000420145 00000 n +0000420215 00000 n +0000420299 00000 n +0000420384 00000 n +0000420454 00000 n +0000420524 00000 n +0000420600 00000 n +0000420670 00000 n +0000420740 00000 n +0000420832 00000 n +0000420917 00000 n +0000421002 00000 n +0000421072 00000 n +0000421142 00000 n +0000421221 00000 n +0000421306 00000 n +0000421417 00000 n +0000421502 00000 n +0000421583 00000 n +0000421717 00000 n +0000421802 00000 n +0000421887 00000 n +0000422007 00000 n +0000422092 00000 n +0000422177 00000 n +0000422262 00000 n +0000422336 00000 n +0000422406 00000 n +0000422476 00000 n +0000422545 00000 n +0000422660 00000 n +0000422745 00000 n +0000422830 00000 n +0000422900 00000 n +0000422970 00000 n +0000423039 00000 n +0000423108 00000 n +0000423177 00000 n +0000423313 00000 n +0000423398 00000 n +0000423483 00000 n +0000423553 00000 n +0000423623 00000 n +0000423692 00000 n +0000423829 00000 n +0000423914 00000 n +0000424054 00000 n +0000424139 00000 n +0000424224 00000 n +0000424309 00000 n +0000424408 00000 n +0000424493 00000 n +0000424574 00000 n +0000424720 00000 n +0000424805 00000 n +0000424886 00000 n +0000425187 00000 n +0000425272 00000 n +0000425353 00000 n +0000425434 00000 n +0000425583 00000 n +0000425668 00000 n +0000425753 00000 n +0000425834 00000 n +0000425999 00000 n +0000426084 00000 n +0000426169 00000 n +0000426254 00000 n +0000426339 00000 n +0000426461 00000 n +0000426546 00000 n +0000426631 00000 n +0000426712 00000 n +0000427073 00000 n +0000427158 00000 n +0000427243 00000 n +0000427328 00000 n +0000427409 00000 n +0000427542 00000 n +0000427623 00000 n +0000427704 00000 n +0000427785 00000 n +0000427866 00000 n +0000427947 00000 n +0000428028 00000 n +0000428109 00000 n +0000428190 00000 n +0000428271 00000 n +0000428352 00000 n +0000428433 00000 n +0000428514 00000 n +0000428595 00000 n +0000428676 00000 n +0000428757 00000 n +0000428838 00000 n +0000428919 00000 n +0000429000 00000 n +0000429105 00000 n +0000429189 00000 n +0000429276 00000 n +0000429363 00000 n +0000429464 00000 n +0000429548 00000 n +0000429649 00000 n +0000429733 00000 n +0000429820 00000 n +0000429889 00000 n +0000429958 00000 n +0000430031 00000 n +0000430100 00000 n +0000430169 00000 n +0000430250 00000 n +0000430319 00000 n +0000430388 00000 n +0000430473 00000 n +0000430557 00000 n +0000430626 00000 n +0000430695 00000 n +0000430780 00000 n +0000430864 00000 n +0000430933 00000 n +0000431002 00000 n +0000431095 00000 n +0000431179 00000 n +0000431263 00000 n +0000431332 00000 n +0000431401 00000 n +0000431474 00000 n +0000431543 00000 n +0000431612 00000 n +0000431681 00000 n +0000431750 00000 n +0000431819 00000 n +0000431882 00000 n +0000431951 00000 n +0000432020 00000 n +0000432089 00000 n +0000432194 00000 n +0000432278 00000 n +0000432347 00000 n +0000432416 00000 n +0000432505 00000 n +0000432589 00000 n +0000432658 00000 n +0000432727 00000 n +0000432796 00000 n +0000432865 00000 n +0000432934 00000 n +0000433015 00000 n +0000433099 00000 n +0000433168 00000 n +0000433237 00000 n +0000433334 00000 n +0000433418 00000 n +0000433487 00000 n +0000433556 00000 n +0000433645 00000 n +0000433729 00000 n +0000433798 00000 n +0000433867 00000 n +0000433948 00000 n +0000434032 00000 n +0000434101 00000 n +0000434170 00000 n +0000434271 00000 n +0000434355 00000 n +0000434439 00000 n +0000434508 00000 n +0000434577 00000 n +0000434658 00000 n +0000434742 00000 n +0000434811 00000 n +0000434880 00000 n +0000434985 00000 n +0000435069 00000 n +0000435139 00000 n +0000435209 00000 n +0000435298 00000 n +0000435383 00000 n +0000435453 00000 n +0000435523 00000 n +0000435594 00000 n +0000435664 00000 n +0000435734 00000 n +0000435798 00000 n +0000435868 00000 n +0000435938 00000 n +0000436017 00000 n +0000436102 00000 n +0000436172 00000 n +0000436242 00000 n +0000436313 00000 n +0000436383 00000 n +0000436453 00000 n +0000436524 00000 n +0000436632 00000 n +0000436717 00000 n +0000436805 00000 n +0000436893 00000 n +0000436988 00000 n +0000437091 00000 n +0000437176 00000 n +0000437289 00000 n +0000437374 00000 n +0000437444 00000 n +0000437514 00000 n +0000437641 00000 n +0000437726 00000 n +0000437811 00000 n +0000437881 00000 n +0000437951 00000 n +0000438027 00000 n +0000438097 00000 n +0000438167 00000 n +0000438238 00000 n +0000438308 00000 n +0000438378 00000 n +0000438472 00000 n +0000438557 00000 n +0000438627 00000 n +0000438697 00000 n +0000438791 00000 n +0000438876 00000 n +0000438946 00000 n +0000439016 00000 n +0000439087 00000 n +0000439157 00000 n +0000439227 00000 n +0000439311 00000 n +0000439396 00000 n +0000439466 00000 n +0000439536 00000 n +0000439617 00000 n +0000439687 00000 n +0000439757 00000 n +0000439821 00000 n +0000439891 00000 n +0000439961 00000 n +0000440032 00000 n +0000440102 00000 n +0000440172 00000 n +0000440256 00000 n +0000440341 00000 n +0000440436 00000 n +0000440506 00000 n +0000440576 00000 n +0000440662 00000 n +0000440732 00000 n +0000440802 00000 n +0000440891 00000 n +0000440976 00000 n +0000441046 00000 n +0000441116 00000 n +0000441205 00000 n +0000441290 00000 n +0000441360 00000 n +0000441430 00000 n +0000441519 00000 n +0000441604 00000 n +0000441674 00000 n +0000441744 00000 n +0000441833 00000 n +0000441918 00000 n +0000441988 00000 n +0000442058 00000 n +0000442149 00000 n +0000442219 00000 n +0000442289 00000 n +0000442365 00000 n +0000442435 00000 n +0000442505 00000 n +0000442584 00000 n +0000442669 00000 n +0000442739 00000 n +0000442809 00000 n +0000442885 00000 n +0000442955 00000 n +0000443025 00000 n +0000443111 00000 n +0000443219 00000 n +0000443304 00000 n +0000443392 00000 n +0000443480 00000 n +0000443575 00000 n +0000443678 00000 n +0000443763 00000 n +0000443884 00000 n +0000443969 00000 n +0000444054 00000 n +0000444124 00000 n +0000444194 00000 n +0000444319 00000 n +0000444404 00000 n +0000444489 00000 n +0000444574 00000 n +0000444644 00000 n +0000444714 00000 n +0000444803 00000 n +0000444888 00000 n +0000444958 00000 n +0000445028 00000 n +0000445125 00000 n +0000445210 00000 n +0000445295 00000 n +0000445365 00000 n +0000445435 00000 n +0000445511 00000 n +0000445581 00000 n +0000445651 00000 n +0000445722 00000 n +0000445792 00000 n +0000445862 00000 n +0000445926 00000 n +0000455823 00000 n +0000466163 00000 n +0000466353 00000 n +0000468846 00000 n +0000469348 00000 n +0000470918 00000 n +0000472511 00000 n +0000473212 00000 n +0000473239 00000 n +0000473544 00000 n +0000473854 00000 n +0000487676 00000 n +0000487866 00000 n +0000491481 00000 n +0000493213 00000 n +0000497035 00000 n +0000497062 00000 n +0000497367 00000 n +0000497809 00000 n +0000498109 00000 n +0000498409 00000 n +0000498770 00000 n +0000499146 00000 n +0000499173 00000 n +0000499479 00000 n +0000499896 00000 n +0000500197 00000 n +0000500498 00000 n +0000500858 00000 n +0000510224 00000 n +0000511769 00000 n +0000517078 00000 n +0000522084 00000 n +0000522112 00000 n +0000522418 00000 n +0000522446 00000 n +0000522752 00000 n +0000523150 00000 n +0000523451 00000 n +0000523811 00000 n +0000523839 00000 n +0000524145 00000 n +0000524173 00000 n +0000524479 00000 n +0000524922 00000 n +0000525299 00000 n +0000525600 00000 n +0000525629 00000 n +0000525935 00000 n +0000526286 00000 n +0000526684 00000 n +0000527026 00000 n +0000527386 00000 n +0000527688 00000 n +0000527989 00000 n +0000528018 00000 n +0000528324 00000 n +0000528647 00000 n +0000528973 00000 n +0000529067 00000 n +0000529490 00000 n +0000529988 00000 n +0000530061 00000 n +0000530152 00000 n +0000530234 00000 n +0000530370 00000 n +0000530461 00000 n +0000530517 00000 n +0000530597 00000 n +0000530660 00000 n +0000530723 00000 n +0000530786 00000 n +0000530849 00000 n +0000530912 00000 n +0000530985 00000 n +0000531058 00000 n +0000531149 00000 n +0000531205 00000 n +0000531261 00000 n +0000531334 00000 n +0000531425 00000 n +0000531516 00000 n +0000531589 00000 n +0000531645 00000 n +0000531701 00000 n +0000531782 00000 n +0000531863 00000 n +0000531944 00000 n +0000532009 00000 n +0000532082 00000 n +0000532147 00000 n +0000532220 00000 n +0000532285 00000 n +0000532358 00000 n +0000532413 00000 n +0000532486 00000 n +0000532541 00000 n +0000532614 00000 n +0000532669 00000 n +0000532742 00000 n +0000532797 00000 n +0000532870 00000 n +0000532925 00000 n +0000532998 00000 n +0000533063 00000 n +0000533136 00000 n +0000533201 00000 n +0000533274 00000 n +0000533339 00000 n +0000533412 00000 n +0000533477 00000 n +0000533550 00000 n +0000533615 00000 n +0000533688 00000 n +0000533753 00000 n +0000533826 00000 n +0000533891 00000 n +0000533964 00000 n +0000534029 00000 n +0000534102 00000 n +0000534167 00000 n +0000534240 00000 n +0000534305 00000 n +0000534378 00000 n +0000534443 00000 n +0000534516 00000 n +0000534581 00000 n +0000534654 00000 n +0000534719 00000 n +0000534792 00000 n +0000534857 00000 n +0000534930 00000 n +0000534985 00000 n +0000535160 00000 n +0000535215 00000 n +0000535289 00000 n +0000535344 00000 n +0000535418 00000 n +0000535473 00000 n +0000535547 00000 n +0000535602 00000 n +0000535776 00000 n +0000535841 00000 n +0000535914 00000 n +0000535979 00000 n +0000536052 00000 n +0000536117 00000 n +0000536190 00000 n +0000536255 00000 n +0000536328 00000 n +0000536393 00000 n +0000536466 00000 n +0000536531 00000 n +0000536604 00000 n +0000536669 00000 n +0000536742 00000 n +0000536807 00000 n +0000536880 00000 n +0000536945 00000 n +0000537018 00000 n +0000537083 00000 n +0000537156 00000 n +0000537221 00000 n +0000537294 00000 n +0000537359 00000 n +0000537432 00000 n +0000537497 00000 n +0000537570 00000 n +0000537635 00000 n +0000537708 00000 n +0000537763 00000 n +0000537836 00000 n +0000537891 00000 n +0000537964 00000 n +0000538019 00000 n +0000538092 00000 n +0000538147 00000 n +0000538220 00000 n +0000538275 00000 n +0000538348 00000 n +0000538413 00000 n +0000538486 00000 n +0000538551 00000 n +0000538624 00000 n +0000538689 00000 n +0000538762 00000 n +0000538827 00000 n +0000538900 00000 n +0000538965 00000 n +0000539038 00000 n +0000539103 00000 n +0000539176 00000 n +0000539241 00000 n +0000539314 00000 n +0000539379 00000 n +0000539452 00000 n +0000539506 00000 n +0000539570 00000 n +0000539624 00000 n +0000539678 00000 n +0000539732 00000 n +0000539797 00000 n +0000539871 00000 n +0000539936 00000 n +0000540010 00000 n +0000540075 00000 n +0000540149 00000 n +0000540214 00000 n +0000540297 00000 n +0000540362 00000 n +0000540436 00000 n +0000540501 00000 n +0000540575 00000 n +0000540640 00000 n +0000540714 00000 n +0000540779 00000 n +0000540853 00000 n +0000540918 00000 n +0000540992 00000 n +0000541046 00000 n +0000541111 00000 n +0000541185 00000 n +0000541250 00000 n +0000541324 00000 n +0000541389 00000 n +0000541463 00000 n +0000541528 00000 n +0000541602 00000 n +0000541667 00000 n +0000541741 00000 n +0000541806 00000 n +0000541880 00000 n +0000541945 00000 n +0000542019 00000 n +0000542084 00000 n +0000542158 00000 n +0000542223 00000 n +0000542297 00000 n +0000542362 00000 n +0000542436 00000 n +0000542501 00000 n +0000542575 00000 n +0000542640 00000 n +0000542714 00000 n +0000542779 00000 n +0000542853 00000 n +0000542918 00000 n +0000542992 00000 n +0000543057 00000 n +0000543131 00000 n +0000543185 00000 n +0000543249 00000 n +0000543303 00000 n +0000543357 00000 n +0000543411 00000 n +0000543476 00000 n +0000543550 00000 n +0000543615 00000 n +0000543689 00000 n +0000543754 00000 n +0000543828 00000 n +0000543893 00000 n +0000543967 00000 n +0000544032 00000 n +0000544106 00000 n +0000544171 00000 n +0000544245 00000 n +0000544310 00000 n +0000544384 00000 n +0000544449 00000 n +0000544523 00000 n +0000544588 00000 n +0000544662 00000 n +0000544727 00000 n +0000544801 00000 n +0000544866 00000 n +0000544940 00000 n +0000544994 00000 n +0000545059 00000 n +0000545133 00000 n +0000545198 00000 n +0000545272 00000 n +0000545337 00000 n +0000545411 00000 n +0000545476 00000 n +0000545550 00000 n +0000545615 00000 n +0000545689 00000 n +0000545754 00000 n +0000545828 00000 n +0000545893 00000 n +0000545967 00000 n +0000546032 00000 n +0000546106 00000 n +0000546171 00000 n +0000546245 00000 n +0000546310 00000 n +0000546384 00000 n +0000546438 00000 n +0000546502 00000 n +0000546556 00000 n +0000546610 00000 n +0000546664 00000 n +0000546729 00000 n +0000546803 00000 n +0000546868 00000 n +0000546942 00000 n +0000547007 00000 n +0000547081 00000 n +0000547146 00000 n +0000547220 00000 n +0000547285 00000 n +0000547359 00000 n +0000547424 00000 n +0000547498 00000 n +0000547575 00000 n +0000547872 00000 n +0000547949 00000 n +0000548246 00000 n +0000550422 00000 n +0000550613 00000 n +0000552656 00000 n +0000554067 00000 n +0000554519 00000 n +0000555214 00000 n +0000558585 00000 n +0000558732 00000 n +0000558878 00000 n +0000559015 00000 n +0000559099 00000 n +0000559183 00000 n +0000559257 00000 n +0000559322 00000 n +0000559376 00000 n +0000559450 00000 n +0000559534 00000 n +0000559617 00000 n +0000559691 00000 n +0000559810 00000 n +0000559894 00000 n +0000559978 00000 n +0000560052 00000 n +0000560117 00000 n +0000560218 00000 n +0000560302 00000 n +0000560376 00000 n +0000560450 00000 n +0000560533 00000 n +0000560617 00000 n +0000560701 00000 n +0000560766 00000 n +0000560831 00000 n +0000560896 00000 n +0000560985 00000 n +0000564335 00000 n +0000564424 00000 n +0000567772 00000 n +0000567849 00000 n +0000568146 00000 n +0000568212 00000 n +0000568287 00000 n +0000568362 00000 n +0000568417 00000 n +0000568472 00000 n +0000568527 00000 n +0000568582 00000 n +0000568637 00000 n +0000568692 00000 n +0000568747 00000 n +0000568802 00000 n +0000568857 00000 n +0000568912 00000 n +0000568967 00000 n +0000569022 00000 n +0000569077 00000 n +0000569132 00000 n +0000569187 00000 n +0000569276 00000 n +0000572626 00000 n +0000572699 00000 n +0000572772 00000 n +0000572845 00000 n +0000572888 00000 n +0000572931 00000 n +0000573004 00000 n +0000573047 00000 n +trailer +<< +/ID [<5097551FCAF38D4FB99145E579BD1E83> <0BA72DB8FCE86F47B52AD178A1C76531>] +/Info 1 0 R +/Root 2 0 R +/Size 1363 +>> +startxref +573090 +%%EOF diff --git a/src/Static/data/Standards/2/IDDRS-2.11-The-Legal-Framework-For-UNDDR.docx b/src/Static/data/Standards/2/IDDRS-2.11-The-Legal-Framework-For-UNDDR.docx new file mode 100644 index 0000000..872b7d3 Binary files /dev/null and b/src/Static/data/Standards/2/IDDRS-2.11-The-Legal-Framework-For-UNDDR.docx differ diff --git a/src/Static/data/Standards/2/IDDRS-2.11-The-Legal-Framework-For-UNDDR.pdf b/src/Static/data/Standards/2/IDDRS-2.11-The-Legal-Framework-For-UNDDR.pdf new file mode 100644 index 0000000..22c8f54 --- /dev/null +++ b/src/Static/data/Standards/2/IDDRS-2.11-The-Legal-Framework-For-UNDDR.pdf @@ -0,0 +1,19032 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210108133544+01'00') +/Creator (Adobe InDesign 15.0 \(Windows\)) +/ModDate (D:20210108141109+01'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Names 4 0 R +/Pages 5 0 R +/StructTreeRoot 6 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-01-08T13:35:44+01:00 + 2021-01-08T13:35:47+01:00 + Adobe InDesign 15.0 (Windows) + 2021-01-08T14:11:09+01:00 + uuid:e7321e2c-decd-4559-b273-e4b0322f831c + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:2465cacc-c8a5-1d46-929b-bdd8550647e5 + proof:pdf + + xmp.iid:a0e14084-d358-8c4d-9afa-b95425437a86 + xmp.did:23d656dc-1b47-e247-b323-5c6dc2a2ba8f + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 15.0 (Windows) + / + 2021-01-08T13:35:44+01:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Dests 7 0 R +>> +endobj +5 0 obj +<< +/Count 28 +/Kids [8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R +24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R] +/Type /Pages +>> +endobj +6 0 obj +<< +/ClassMap 36 0 R +/K 37 0 R +/ParentTree 38 0 R +/ParentTreeNextKey 91 +/RoleMap 39 0 R +/Type /StructTreeRoot +>> +endobj +7 0 obj +<< +/Names [(BICC_UN_DDR-Module 2_11_online_final.indd:4615) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4616) [10 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4620) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4621) [14 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4622) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4623) [18 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4624) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4625) [18 0 R /Fit] +(BICC_UN_DDR-Module 2_11_online_final.indd:4626) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4627) [19 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4628) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4629) [20 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4630) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4631) [20 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4662) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4663) [21 0 R /Fit] +(BICC_UN_DDR-Module 2_11_online_final.indd:4664) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4665) [21 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4666) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4667) [21 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4668) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4669) [21 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4670) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4671) [21 0 R /Fit] +(BICC_UN_DDR-Module 2_11_online_final.indd:4672) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4673) [21 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4674) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4675) [21 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4676) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4677) [21 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4678) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4679) [21 0 R /Fit] +(BICC_UN_DDR-Module 2_11_online_final.indd:4680) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4681) [23 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4682) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4683) [23 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4684) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4685) [23 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4686) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4687) [23 0 R /Fit] +(BICC_UN_DDR-Module 2_11_online_final.indd:4688) [33 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4689) [23 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4692) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4693) [23 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4694) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4695) [23 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4697) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4698) [24 0 R /Fit] +(BICC_UN_DDR-Module 2_11_online_final.indd:4699) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4700) [24 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4701) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4702) [25 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4703) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4704) [25 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4707) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4708) [28 0 R /Fit] +(BICC_UN_DDR-Module 2_11_online_final.indd:4709) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4710) [29 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4711) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4712) [30 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4714) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4715) [30 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4718) [34 0 R /Fit] (BICC_UN_DDR-Module 2_11_online_final.indd:4719) [31 0 R /Fit]] +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 40 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ColorSpace << +/CS0 41 0 R +>> +/ExtGState << +/GS0 42 0 R +/GS1 43 0 R +>> +/Font << +/TT0 44 0 R +/TT1 45 0 R +/C2_0 46 0 R +/T1_0 47 0 R +/T1_1 48 0 R +/T1_2 49 0 R +/T1_3 50 0 R +/T1_4 51 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 52 0 R +/Fm1 53 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R 60 0 R 61 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/T1_0 65 0 R +/T1_1 66 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/Annots 69 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 70 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/T1_0 65 0 R +/T1_1 71 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 73 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/TT1 74 0 R +/C2_0 75 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 76 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 74 0 R +/TT1 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 77 0 R +/T1_2 71 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 78 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/Annots 79 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 80 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/T1_0 65 0 R +/T1_1 77 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 81 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/TT1 74 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 82 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/TT1 74 0 R +/C2_0 75 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 83 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 71 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/Annots 84 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 85 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/Annots 86 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/Annots 88 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 89 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 16 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/Annots 90 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/T1_0 65 0 R +/T1_1 71 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/Annots 92 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 93 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 29 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/Annots 94 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 95 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 31 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/Annots 96 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 97 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1899 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 39 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/Annots 98 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 99 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1870 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 42 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 100 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1813 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/TT1 74 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 45 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 101 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1814 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 46 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/Annots 102 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 103 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3119 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/TT1 74 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 47 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/Annots 104 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 105 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3120 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +/T1_1 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 49 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/Annots 106 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 107 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3206 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 51 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/Annots 108 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 109 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3207 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/C2_0 75 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 54 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +32 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 110 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3284 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/T1_0 65 0 R +/T1_1 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 56 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +33 0 obj +<< +/Annots 111 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 112 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3285 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 57 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +34 0 obj +<< +/Annots 113 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 114 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 4315 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/TT0 64 0 R +/T1_0 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 72 0 R +>> +>> +/Rotate 0 +/StructParents 80 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +35 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 115 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1846 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 116 0 R +>> +/XObject << +/Fm0 117 0 R +/Fm1 118 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +36 0 obj +<< +/A4 << +/O /Layout +/LineHeight 11.0 +/BaselineShift 3.66299 +>> +/A5 << +/O /Layout +/LineHeight 0.0 +>> +/A6 << +/O /Layout +/LineHeight 12.5 +>> +/A7 << +/O /Layout +/LineHeight 10.5 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa5 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/StartIndent 39.0 +>> +/Pa6 << +/O /Layout +/LineHeight 16.0 +>> +/Pa7 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa8 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa9 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa10 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceBefore 8.0 +>> +/Pa11 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa12 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa13 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa16 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 34.0 +>> +/Pa17 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -11.0 +/StartIndent 34.0 +>> +/Pa18 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceBefore 5.0 +>> +/Pa20 << +/O /Layout +/TextAlign /Justify +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +>> +endobj +37 0 obj +<< +/K 119 0 R +/Lang (de-DE) +/P 6 0 R +/S /Document +>> +endobj +38 0 obj +<< +/Kids [120 0 R 121 0 R] +>> +endobj +39 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Kapitel-Head /P +/Endnote_1._Abs /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Zwischenhead_4 /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +>> +endobj +40 0 obj +<< +/Filter /FlateDecode +/Length 2540 +>> +stream +H‰ìWïo¹ý®¿‚Eà´æor‹À@âØAŠ8èUôC[Š-û|±¥DV’Ëß7C®´+KÊ*éݸÄ@–Ú%9CÎ{3oÞŽ^\(qó0Pbüêèì^‰çóÁƒ÷›ïu~tñn2Ož½šÌnÄp:½x&ÎO^>Z?{~"Ïƃ£,¾|À;ñp9[íu4ÖÿQx9¾ŒT¥F—¢ >‰PE/þbå…qºRÑ9a|åM¸üsøJŽtª Ë‘¯¬~Ä3ðæŸÄPùïñ_§ãÁé9\Ùã®i¹«ØòÁWÁ´œ¶ÒÆ;NˆجœÎa2V°:à TI /iÀÞƒõÃwì/f,ù f<`àhðƒø›9:mSÓ~w¼_ÃÛÖ~>‹IófÆspÞ+q!G±ÙÛÓ`!GlŒ&Úy¹vÇÒ¾7(šñYÌ[ׂÖ²ÿscd*^â&3ÏÙ¹öà'Þ»_ô½jÛF  3:ñ¶g ¡n_õP9þ¥×Xx?  ƒÆ}è$bcc¯Åtð1[óä‚€yqòz `ùVŸc÷Ó`ÿ-Db׫«T[vÌÇž(•Üq?×|ãÚiô§Å[â„n8a¶]HòU +ÁÝ…„~d´[ §*š´Á¼1Âï«:ƒÄÐ`*ˆ–0e˜˜fj½¹g£šÑ‰Aj¾ap+ëañàNæ¼MÌk4Íx+®y²no6x-ž³1ã”?õ…glg‚ÊúrM¸·ÎU©¤ªDY¾-‚¤líD¨c•R_–Áyø*M”„3º¯3©åŒ^{R²NT¼vxz¹ü0¹O]>9;=;SJÕÇÇÇ‚·M;jpäS[Ǻãé0É\B°øTã+6g¯Ÿeâè ÐÚç8™e„ÝS ñ,1¶‰· |à°Ü˘—ay¢ð%œ7kZ¾ `˜[Œbþr`sØ)®‘––Gï˜Ö”3nK$iðI ?2#[¡D24J—PžP’öM®‡s³%2j §PzeÙ߇¾þiÕ)?“ÂX·ê¤kê¤c—)8¼‚Û¾FתÎn_HÄÞ~”â|Á“ƒÏ½ýÕ]’æèŒ6}Ò%*lm§†ÕÁÿ;nÔ +èÃj…ã>gy\ú«äu_Vuê’®RªS÷¨k^ùý2¶nWIŠº]q}GÀ#ÜŽ 6Ôû¯ê´sDMûÌõaµvõ>Ú&œË,´æÒe¯¤aÊ`­áI«d…3EŠ"ö2­YE¼#uÄ_&$,H²`-íÑAføFâ Èä¿ÐLÖ'†¥Ž§˦¾ÜÊ,®>ÐNóö¢7fÝ!˜5¥LÙÔ½×? +¢þ7hûd_Ñp(DʆŒAóˆ¶àéœmà¹öRì]ß:ý° iíܺª¥4 +,-<áé^r {¾–dù•\µðw-9UÞ2ò-+ð,·o¥áúEˆµŒ×:±˜…º!°2rt…Wua‹ò7Ò‘7ã\l>ß°e)§~¿™Þ”ˆ;(¡‘¬÷˨Nˆ6¨“@k +s'Þ-€ýþüIùmüVþì8žéËŸzƒ?:–ëWˆìnQÀkoجíÏ"[›G,B¤S*o¿ŽPh}B½dýï„–Sörª@ÐDææ¢aC.PGžR<¿^ÞÒô@ó w³¾ð5j|Mí¿¾h;‘&‚í^t?øþ^€6ú7ôŽ÷´1€ÎJ•evØ hW»ÊøÙ¬;L¹8³Êç•$¥.†E”|Væ…Ä\Š æX=ä_ éåä T p(nH̬Õò­t5m|u+¹‡¼9ß4ß‘$áÆè\Ê®¥®k*^j³‹—ÒY'ÝðRg^Ž4§fC]%˜ùZjMÙxùãCý4ËshlÇ •£,Nns»ù‘ävnxƒ; å÷î"2Ñ9½çï×XOfÒt ÷Sêr±à5MgSo{ç‚z{.ÐÖ~Ïÿk.š «ˆŽ¦¨~\<„{Vʽ¶;_ŽГ{Vop/4µG…]ä³® +.¥B>¢]$¥d1p+…ÖôéšÖÌz6 +ÝVv!×´óvÃîyé;¦÷o óÈþB\HÍü¯k"Ý„4óÜQ}9=©´jEðü—¦½cM®Þ(ÛukrÞŸKß‚Å¡ìi؆)R³Ö›K&úzÞ(gŸ;1—œ ÞH“šìÁÙ+=íp#KVúâÎyþƒ ÍS‘œ ®Äeœš&³½§ÜÛgÆïÕæ!‡~wô!ÑÄHNÀ—Žï×d‰®AëæT|Å÷åÅæ4å;ës——Í.ÊÍ÷N{¶+|‘®K³·¿íÙÆî6x\¨A· Ðd¯Ûh|lÌõ)dmÛ5aJÇ^_ã¼!w4-.«*ÅXÞêº/¯ý–”£v1 Šè WåÔæzj)N¼l +goŽ¬ð³hÀþ²-ZnÅF¦Åè´—kIˆc–¬` +B󸻲ðÀµyðŽHå¸í#ßæ¨Ü4÷2sˆë3u{t6Óòj±v§/bwˆvü©êô–ºjIG…Úvµ¯1=ˆJVÙLGïÒÖr7¼8€Œñ‡Fõe`:€Mn­iN—#f„ïV6Ó®lT½B²¢D§L¦\,ˆ€¶ÔK—¨ÉÄb~=JÿÛ)–K'‚ÑÂ,¦AzKÃ;Ãœ¨NÕóuídSs6¨ß—k;D±1ßEq±[›Ê4žm°}QìÂL§6*¥® 5k³ƒš_¾•šº'5][ôÇ ¢_çÚ¾f)©Bv—Éãš… °Q‡LÔ§@¶#DϨäú¨X”RÕ~OKÿ÷±ê|CTæ's{!KËér:âê¦ÐœI)kKj83¥r‡:]™j̸Þô¾,þ8{ˆ¹îZƒ˜Ý„XcVﯻ-ôtOérR"(¶OÙ†•ë +×…•Ê°¢åW]•ßU\]yEùŒ€uʲ‰€u%Gv•Vs70bɳ䌟ۚÜÏô‡ÿ.]þÏ-U@{[k¶¸Þ¤þ–âÐÕËJûRŒÛU:~cmðmÿW€ÌÝá> +endstream +endobj +41 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +42 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +43 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +44 0 obj +<< +/BaseFont /SKMYOJ+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 122 0 R +/LastChar 146 +/Subtype /TrueType +/ToUnicode 123 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 0 250 0 +500 500 500 500 500 500 500 0 0 500 0 0 0 0 0 0 +0 0 0 709 0 611 0 0 0 337 0 0 0 946 831 0 +0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 0 291 0 556 291 883 582 546 +601 0 395 424 326 603 565 834 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 278] +>> +endobj +45 0 obj +<< +/BaseFont /EKOSAL+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 124 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 125 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 0 218 0 +0 348 462 434 452 0 0 0 0 0 236 0 0 0 0 0 +0 696 0 0 0 0 0 726 0 348 0 0 0 884 0 0 +0 0 0 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 0 302 264 0 312 800 556 490 +528 0 378 396 340 546 508 0 462 518] +>> +endobj +46 0 obj +<< +/BaseFont /AOPZWT+Wingdings-Regular +/DescendantFonts 126 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 127 0 R +/Type /Font +>> +endobj +47 0 obj +<< +/BaseFont /ISSVED+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 128 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 129 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +48 0 obj +<< +/BaseFont /JRCBSB+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 130 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 131 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +49 0 obj +<< +/BaseFont /XHBHGZ+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 132 0 R +/LastChar 119 +/Subtype /Type1 +/ToUnicode 133 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 666 0 487 0 0 0 0 0 472 0 658 0 +0 0 538 0 497 647 0 0 0 0 0 0 0 0 0 0 +0 482 0 0 0 501 292 559 555 0 0 469 236 834 0 549 +0 0 327 0 0 0 0 736] +>> +endobj +50 0 obj +<< +/BaseFont /WIRBSB+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 134 0 R +/LastChar 119 +/Subtype /Type1 +/ToUnicode 135 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 683 0 509 0 0 0 0 0 493 0 676 0 +0 0 569 0 525 666 0 0 0 0 0 0 0 0 0 0 +0 508 0 0 0 516 319 573 572 0 0 509 257 848 0 564 +0 0 356 0 0 0 0 749] +>> +endobj +51 0 obj +<< +/BaseFont /AWNUWT+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 136 0 R +/LastChar 50 +/Subtype /Type1 +/ToUnicode 137 0 R +/Type /Font +/Widths [233 0 0 426 426] +>> +endobj +52 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12084 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 41 0 R +>> +/ExtGState << +/GS0 42 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—Ir%¹D÷Ê]J»>÷=J¿fm÷Œsí(÷*çúß??þÅŠš[þ{ÅUø‹k´y÷ÆQuì»–6¯¿>ôé×GÄÝâú¬qoˆ~Êp0l׺cíës±y®ëÇÇ'G¯~}F÷`æ³ö{õÃDë÷Ùü3Ú];[¢ÏûŒª={Ü­ ¦f½çjZ\îúcÖÐêqî>óF׶8‡Ë¸#°°à+&rkcÕìwñí¥=ÛÖ½êÎ]ó®í:÷:UóçêÕÖ=¶Æ®Qî6‡W·JXÚ5Ö½C&rÃëšq¯Ígsó&Ê7Fh K©š(cùÞÝ}üá@Å“5gºzé3~y"Ö¹wíyiØØD€&‡j8q¦såŠg¿'ê]su¡Ñ<ãzÕÛ]–3rúÝcjbø´v¯9µ|ãao[Ãö˜‰†UÜ6F÷w9ÒKfM»A;„£=Ëõ‰UdL½®±óVOnW‰«nàÆæXˆT]ΨVãKíWU%`¼¬î,§€®ÇçZÈŠ}a¢¤À%-'ÇûŠ}Ÿz<”‡ÒV\(¢!Üaq› ;µ&àrÔ’%=ì7ÿ©È°€ÊoL;¸Àϖ铬…`(  +º NÏœïít€°²2+›ù¾!ßà'—ÀjÏT° §ÕÊŽ¦<ËP"x\³Ü½w%n„oŒ)\t6UîœìÌ%…@íâ:-7PÑÜÿÌüÔ nì¡ LqPdº´Šã¦8€¨Ì¸3Á Î`†h3qæöÀ¶ã8ïŠST[xkf +<]òƒ3}¢ÇÕ5gšÁLæÂן¿O¼RÑlD7%‡¡Ãéa¸ø‰ã’l&VGûª1¨f¿ŠÆ5Øï(ßjÙšÃá2ìiãQ°íÄRÉ’í.z€€áëÏͯî&Ç­>5Vó{ïÓܼúÐ÷E©}BxJû—1_+À†©¢]ÄL}„ðƒJáÏ¡H6:¤ ~ä1Ù¬)$Œá¬0¡Všû9o†bóMoTÎWtfq]• +±í,ç;ý܇éE–øR‡Â@Wèa”‰AÞu8 R ¦N {ѶFQ‰ÜéWuòN£lÍžé³Î‚Na†•úa8ŸÍê³Ï×<{Ãr\]݃pû7éâw.¾ƒ™‘ßIzd èð5»†IS qê°¶ÔDÁ3wD¸àE“Ð^vH±¦*;dY¼(â]ÔñÌàÀúP ¨ƒ$&ú±JaÁËá¯rž”È&¾×Y‡Zl‹ÁP+ûI™6Õ»VÉœêÎ"ÊÐ'݇RW>ð}+x&Q2ép[~j ÕRéRb<ÆG 4:Õ½ñôPý–ZuµŸäuÍÐÔy^Õ!¯“Ë›<:/¾’ŒhÓ',) Ì-ÞªI6ŒûÔwÕf}è~Z¸0ƒÍ:aÊv(ÚŸîñÝßÇÉ;ªl!Åì8ݪÈ4w7°û4ß÷ Üѵ’qíï®òú¬ ÔjžYh\<Æ8a–qJ$žÔS–Ÿ0c=Ù©°*Ñ¡;hGro[”iGÏ\ÑVëi_w41çö µ(ä>U3¡Pi¥ÚôÓ)mÿ\ËæG[OúÎÌ/egÇ8J…Høw…^ûðo¨RXW_ÑÎÌ‹Ùt«çŽÅ­??Þ)ã¬Ö2¼Í1ØVѲ÷í`›®¢'ué+8Mmd=óË¡‘@ÉðN9Bß;Ѥ#ra\Ÿ ¥ZøÚq;¹ våÿÂ'£ê|Y#¥Q,T$ÞVCD.A¼’ðAá@ôíœKÑœœAc[Ê×ÈØ7gQøÎï%U²ó8vee[\î*²§š ª‰] q‘dþZ×S¢yë«‹á¦Ö­‰á#p¾¤½«!Uaj ‚  žûÛÒGáqŸ¹C"k0cz” +uÛЦÓÖm…\*j­$»ÝMH‘ì¤%05TWòS5,&DR©ˆ’õq`ÒýÃ…Vl§ J•J–+þ¨œJ¤ÂÆ4ž!-rˆ¢O×%)žšWV+ÜD2uÐEí[z\2M2§¹[w! ZÏ eù-GËFVˆI³à;;¾ü—\|½^jËFñÒïýd‡|DŠì¼Aîo Tó!6¯ëý.üKÜD3ÉmàWBê×›Pü¾ýàÜò¢°ÜÔj}ÕÒ›z,ÜÛÀZ±ª=Q(ëõT¢6c$ãŸßH@u1UõUJÅ~1„Q¼I•&™/¿ ëè°pØFª+†æ$ŸýdŒ†+—+Ž7ðß×»ÉXÞ¶?µXv'˜%›ýbºÇ{üé\Ì-Ù¸~õiªsec9ÐÓÏø¶/ ϶S®Uú-êW»M«(ºD!øjböŠ!“ê8×_r$;Ë)3f$þÿêÅ4¸M=ãÐ +Ô7†¥à™¤ºO2 ºÆO—”‹ãò„›®Þ‹ê#šX+{çÉ7Fœ™@z0ˆÉhß&6‹Ÿ +mâU×”"±áe…•UM=Ê9VËÕ[gõ qQ &¼+®³¨vÛ&s>:qJy~+¿™ô/‘›1šùÞˆá&cá¥^¯æKj KÅhÇïYoCø$¼­PqâÎÏ2ýPuK]çu? ])ªqD„‡¯;aḨqº„P+WÄT5Æ6H9¾Rš¡ÒÙ|<ÕªÓˆŽÌgÊl&Zþã{é[VÛþI‹H2 ¿#¸îb·}©·‡¬®! >jz‘@2/vQ4>õàÌ —ÇîÃ-9Z‰‘¿„N­Œû›»°”Ë/OTf&ê§'ܦ|¾Æ˜¶}ÿ +OKŽÞ—ܱˆ‚ÂBtüh=Ùß¹a®|Jò038@M˜ŽÍjã+ØO¦¾z?îõ–Bï·âÀ¯ŽÌt¥Sã2­³;1rªJº{Å.‘„Ãz äk”öÌ0RjÉf¿¡z5þ9<îGbÁþhž_9!…$•—:uŠ¤¾ÚŽ®ÜP3Zã2j'™4ÌKY¯o +û‘§<¯ U¬Ïmé5]·´úºª´|Žµ,Ù«þŸì*Ç’$E¢zŸ"/0ﱟ§”²î¯Î_ ¥² [þò€›0¢˜èÃä3q‹·GÖŽÑVµµmsìz¢›LA_Ôš"i¦ ÿJú~EÄJ­òè@·'&:KÔ]–ÒÕ"M¯;»çq¨¶ˆTF®™þ‘ú‰- ‰×å8äqˆ´Zòözá÷\b2ÚFàáåL»X aÐôä<*Z†a=„ ©ŠÁ)Ó®–‘BƒÛð;•,% =)£e>n°3a7Š¾Ay¿„´­ûÅ6haµ@Z” CÕM”–ÄtˆSY9—hrÓ;Z‰t AjêýsÕÇ£îG-²L»/…2škJoˆNÈAKÞ’œÇñðšj¿óµÁFµ ÙÞ°¯’¹³å<U®ØV0CµŽ"Ó Cç¹Rã#Ô¾`j(fŽqQJ(Ÿ™AøªHSk½ßË~ßaS QÕwlÊå­% +š>›Hu¨½UL\HEz\\ÃÏF&ºQÉNã˜$eÕx i,÷ä§l${rT l° †_•2w,éõ¯{TÆ ‡.ê² +ÿË%¥Re‘RëẑP¶L`ˆÑh¹d0ÚÊÂpk«lr´ eDø`X¦Ð€Tµ_Ú—_ç|Ù pÚˆÃàUOœp¹b´‡ÜœRì¨*÷(lQóýROd×&$…qa½ˆ®û±A¤$–rÁDãUPm:–[TÇ¢.^µL8B!}×dbŵ%,D^XÒxz͢Х·²5¹¸nÉ/¡}Žú«Zç‡e'cÉâ-.ƶ¼ÉYËõhHÂó‡Îò¶x}Q׆^úǦg‰²)ž~振YÈWõm*ºö!Mè´bÎ\\¸*ž(2Ø°¨I×Ãb¿š‘¼À E;8¦½ ¨a1+¦ÄiE¤oñc«Ë2jÂEQʵ#wìÄ" J„ÞÅêbM)ˆdåÔIVaµG@ ²@Ê%r~ר8Šðavg´Ä^ÍPU!ó]\ IHr®äý’ü®æ =¡äÇÊe¯¬PE ÇÕð¦à‚7ÊSêy3 9:†3|îÈÍï aS~(Ä7×”aBª‰ç®æ‰ÚÂúc7$R¸€€±º&å†lHHm<ú£ šTRH¥i¨û}9B¨/·"7ûÏx¡üÌT& aÜ–ÄX×àÌmµ×Å(e[©àñskÓ4nᡉó…÷ÕŠÒz®˜hÑ‚Mˆûh<§Ê€EV ­QôõA‚ZJJãG·¥}z +–jyJµvñ§óá‰:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½[¤ŸO[y¹î=;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re§zó1Åñ–÷¸çjA-¾Z-‰„Mð3¿™û×–L¼¤uý¹?#íýĭתr¸œ˜¥gH™_5fZUǨ™õ½¤³æqhó]ÆÀ¡”IÀª­€¤S]ðpó&‰ïëjuƸ ¸Ù0ƒþj½×Ð:lG(˜iŠëõõ|‡ñßá‰MäCèœqwX=õ›Slyž[óœAŠ¦ô¯‰á“z J¿žv¯[¹˜·ëù¤2lkw$@ËÀÈçÞ¸P‚óÕM¤tqþ)Ћò¯ o{“z!«Ó´SA‡Û…3L˜ :ÉcÈ®ô®˜8[,h\d)ÁañEU%ž×¤î iþ(&=MN)N £’X +ÉyðXÅx\ |îDYÖmBÌj¢º‰íR p‰È7{ªŠÂ8s Tãq¦µÆÓ yÈšC3ƒYƒ¼ AmÞ¤°‹vRRa#!jFhS&ó +ìYÜÙ{ mù +L«ÝÛ2©¹Ëqüxô¦ÜÊ}±S»Ú•þìøÄWÒ ÿh¨ßÙ‘„Õ°xñ¢æ!q&hÆyëiøê0‡Çñ¦#dF ãú +ÛKs ¿àÂB4øŒ„nTù#ß!‡DÿY,3;3÷µ‰ 7Î7rßNÝÙùñvl,1žœF6 Ñ0³Ëé«Lá´VæêPî`<ØÉÈ6ýj½ª@pA/K²;lj°sý”KÚÔÔ*åV_ÊŠ ¶×ú $«·Î% #Ĉ‡¾d?¦â g%„ ÙÑÿÒÄCG L}'(J±FPÔ—‰«"•æ`ÄsfÈ€§} ÕУ?u‚‰#CKx˜)²ñßRÜÝ£âø+£„ò õ7@òkŽ¤ ¡`*KBŠ·³â8åšâ6‘Ðâ„Éòƒ‹„o Í5ù^PÿA÷-‰ÏÎ*rÿÚòQA¼KïÖ’ÃnXàK–IEˆ$Í™ʛ*„ðJ÷$­ÄSXÅå~á6}DAíÁ媻]ÊÀ gº;Bq þq·MA4pÆV3])BE$1 Ã#׿6N•0ÒDÙö¼}»éNôiÀ#á—lpU”Î…íâ¡F¢§D¤å_v~©KßAMÇåªFVÞªï-8¬Í7³Õœ£[Z0om›3‰ˆU+À=óCwJŸÆ˜(c h[H°&b êØŒwÑö+ó´¦ ‰’98±Úø²¼ _D+Òò*?Ä8?ÿ‡yØ„%B">v;UïÔDg­b‹j—gÅõ0Çc… ¶'*[‹Ï=ð_çs9‹¡=bô¯°¢ª¿ŸK ^së›ø¨îuéÏ­A_ÅSkVVj½^2Ý42Gì6ú#c°AbDůîw,=ÑŽIÌ)ÜDÇiWÛÊ5ªõšÅµŒ¥½½XçÉ…a¹†ã_a‰7â@:ªnF¢1¸ûWKÆø˜#)c“̓,Ë„°)¨ð7–Ééœk{ƒJ`¤öc½ƒv-Z\ÑlwyRúuAQ+B‰áE ¨jDd†!sǤñâW¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bpöÆ¥ ªIö¯f¦Øñ截¦|¡1¶²ÇV¾J †’ zûÕL'ôÌpéc<‰m@iy]|¢±È&AÏÄ¡¤bÎ, +‡ìXNV_k‚–I‰éoN»ÛE]Û-ÃøŒ…ÀÉÕeaoäÂHpK“`¬%eY¨·cQß<¦N iêíwÝv:C&L:4¬êh‚Y•[ý‚Âqk»´ ø8|ƽ­,öñ?®«$Ën†]¥/<Í¢ÎÓÛäþÛÆ@ÙîZU™ß’%@ÊßP]ðÌ„à‡žíD¾„kžòûÞ9í³î ¤ ‘íf{&bš‡I:€òw~ ØZ%xÅJVV$€Æ©æÑéB$³"­(éňäMšbÓ±r(ùŽõv1"5oíg“¿•y-ŸÜdP •ÃQ×%—¢!þ.äÐ.XÞI#9⸹îžÑ°f5-ÁæqKÿ,@‹çú¾¬“;žšPYÞ@ïÔö™fÑ-JÝ×›%ÉTç½[9»*ô#\Ô€þå.Z¦»KÉÌ£CiÊÚg96D +h.ÉH„aU*+Íã4H|úuI“è”I­›žŸ£j…Ê)1m¦£g-\dà 0c‘©lüqcýñ{ó„wÁ&¸y é²—ˆ,ÏRdÐSsÿðPÄØÐÈ%Õx¶5gÏoà¶-5/ìWU™'ÎP[Ç…›.¼iªYá5µ|}Þ¹Hæa=%U̧ žåhÅvlie¶Æs¡ÇûÒ;”Ž#&©:ù&Û7ö4 ‚ŒØ=$ž8ãñÞTQtÁZ„œòXG +g†k,áÓDr2ý ¨Aÿôúñ}å³FN4É@‹ðÛö¾±Âðч}›4GЗA}ɧØ:_Ådà0÷l:‚zØ,ÖÔUr8©¨CÍ +Þ[TûÀBËé&ä£tû@Ò/ç.äµ4m©á®,]Xt¹L¤`Êž§ÁÈ@ˆlš½ütc-€Ùþw:`Ð<Érec‰yGñuÜ<žœÀ嶷æñ+! +C ‹m«*‘ _L8ßQa1Ñœê%ëØžì–hXæ"tÌ)YÙQÌKGx/Œl/@¨…¨YôN³âø9·q·ugüÍ5Pñí MÓ ·ÙL{zM*dÅá4T’‡È(ÙK³ÑÛJ8øÓÓbž3@®Ziݹ#KÛj.zÏOMÆŠº¾”ŠS—:¾”J–)ûaT5¾ ?­toîÏÚ_ªÆ?ö¯x]*XUþG!úÆ¡LiŸM&Y*@ThjÃÈA_5*ª,šN’¨Úùì6MÈùnLA8@QÅó›Å7hí]Ú$øÅñ¦zÍœ¾À’£’šköHÐã|å•¢#¿¾ðác¢Ÿ¥‡ŠJã&7€ðŒ¢h(¥æŠP èœy ‰Zsøû¶®WàǦ‡™ç•åšŽýµÍ¹±Øpá½ûÒ2XI‘…LFŸ˜~Ç>ÕŸ¦£ÍÖºRƒ½<õSŒ!ÿùV­¡ÓD¹Ï½lÿŒ­̨È8¹(IhqÚùÎqgMÝÒ  m¶ÀƲªiŸýNØå‡Ä*z8åáÄèé›ôNջݽNËc'´Ÿd6¯)×.ÄÖûá»m×ä©E®[™;I>-GË!õL\¢#ãŒí7Îô ÙÅÕæ|}aˆÈN`N¿ Þá#éŒ%lÞ²$Ç"2•H‡ò'‘P¶â¹€º!X¶?á4§½£Ôî'丨réºaŸÕ(l{ñD$v­*a5@£×öŒÃ¹DwćǤ5øã}æx'!}kÕóÉ.¼ûéNwÓ  +ç-]<ÂPàÙ$nâŽå'å(ãèGúZpÅñ•!})biê65`±ºôboQVÀ^oàÙY¬åÝV ‘nµô£·¤Óû’˜kš¿Y»_‚UÒÐ$Ê«ökM`s¯ó¡D²ýN#‘,É‘gâteŠ¬¬£¸ªîêÍkç1dXAF8‘u1IÔQ7÷Ó´ÉÀïÓ™b]š#§9ÇÓh>û$gÒÑ!ªv\T Æe?é}.Ý'`›rEI˜cn(+Yk£õä +ßbس̰‡@„I—ÂÅkå8lVkû™Y‘µ—ËáôvdÕc“Û(‰•; oèø Ê‘ññÔJÍ6Ë÷ À`ƒQ×u磈ú™p¥J!ƒçÜ‚ EÏ#Dôþ¸›ûì2È<Þñ€¶dÛèËÚLS8;ü_Ñ‘ÈŠ‹Žîì ü‡G‡eúIº‰eÁtêK&C"{Æsh +*KSo-«A¬“¸hÙ™ºí%9-ñ§ +dJÈñ=W¨ï(mû;)!2‰œ¢KÈ +ý½úè0eðËu>ªÎ92èU+’®d~}õh-ÝÎÖÅŠõ_ž´ëaG*Ìâ‹j18K„¦³úe1Ú`x3#ئno”ßÉXÉ“ø]»Œ5ºÝ ™•óƒ%yïúò$ õû<óŠ´ŒDƒ2¶2lY,<>“öž˜öàü%mÃE·‡ÃI?\ ToÌ/,j鶡Ü|§Q9µ°Mø†êmë±y(ÈþtÏHZj¤é<˜ÚÇÕ""Y…;¸Éð™/ù‘²_|‰2ÎÝ€ ºeÀ°02Ä5ŸÛ9(4ÎeóàUî\™$‚RÞØ)rtÑXæå™ÞY/¼QôLòÊÖ}ª7Â=þ8Òtþ¶Ì[23x–ÝA¯‡®¸Eü77¿.8Æ{ÌÓÌŒT8S;"ACd’NO9ÁJºt"K»<øµô•b‡@ÒÜJÏI°•L(gHlº—ŠRò\èö3³yÜë* KÛˆ¶ëUkR.>¾sòhU¶Fp)Ã*Óܹq<\/©Ú!“¿te}=>P>ñ†þ(´Îth”á gmF¯¶Á1w®Ù«¥ýÔ@ÄP!/ ü5ô‡w{ý·Ø„} [Ú8íe‘þ:4dN èG÷ú¾5Q¨?ZÚé7.O·<‡škt"[|Õö’'†9ÛóØIb›uÿkøîrIŽ$7‚螧¨ –ø%€cè m¦UÏB÷ßÈŸ;ªŠÝ¢lÓ•ÌÄ'Â1± ”º1z —!þlýK¸á²½õƒ2¤DÚ0ÔÜfÝýýß©ÂûG¸šbÃÀÁQÔÊšyÀ¤Âgã¸) v .#Þ–>˜£Ì–õïí®'x¶ÝCÀ.ÿcF]¸ù˜#ô\½=#hüªnëÔï·uñÞU×ŸÏ +Éý9ç·wMÝ@i*¹9oãÀ„p¦åÍÕ +®û ±Î÷>¦ «—-æu¦Òú¼K[‘˜å­tß^^ôìÏJPáT÷<+é\?‚fº­~Š¾W¾­ýË¥àÈö‡ÎXÖ¿«¸Ú&1Ðbi ß®Õ«7 6÷^uÃJÍZ®OÖø÷ ’ˆ€)¸–BzqÌ»QààÀUɺõCä;È!¶™ÒzÔ<‘¤zX„ž¡‘K18fà¨ûÐìºI48xŠÞW{ó×G2çÑ´]û ©¾õ +Ö®ãûœç£’ÊH%{È`îBŠ«2ê|WîP!sî8Dtœ‚ïÙÿÓ_ÿþø×Çåqé¿òø™\¢âJ—Ìá×?üåŸE_Ꙭ¬ŽŽEuo—]¹«öUvç$™ýU|(ùûƒ<¥š ^$Ý€ž¨}ˆ²«Vs^×P%«’D!óG™hÖƒü¸ûû U®wyT…ºq­o7ød>F‹Ã.ß•œXˆ¬ÓW+L#FcÐö~N7þhÔåˆ+ +¶›?+L8ûµ£Ûj*F&v‰1Ÿó½TC•R•â´*ñÓ…†tiT«Î†!ö÷…„â ë™gZŸ&“ò(A([œvÅAPÓ°8gÔ¯‚H +¤{æú‰ª"t„L¥˜aî'wÖÙÚåöÕ>±¡̼%ªžÎ>±1§×/SS/×ÒÎW5»%Éà[]2Wdöôä #ç˜Z‹T€j}:ÈTCšÇ]¿>$ö2‡¡Ôîû4ITŸ6`Ð.·êQ'wªQÂ_kI#|7QÔ‘«3WM~DòS¡ôªß°ÇPñ¥4ç°×]!lp‘V¬é9瀰Е¾ôɺž3›úƒ`(Íš›O<„oÚðÍÑ9Å´îÞMKâo¸…oKk)‚¦"±™;C +¾*%…»O÷°Ú;=a=¥1,¨;ߟ劚éuãQγRž©®SøŽBª«ž‰UóÆd$S¥ž*ÿº07÷d:»—ÌP~Ç°$Ÿ«¹ÃÛ“›á…ˆªßgÆÕ¹ù^˳¬ÊŠw?òpªšÌwuJ1È ¯æfMzx Èx6KéÒ „B,·ñתS=ß©L‚0˜P[€âò '¾ï’ùÔ²øyÏÓñc;]°èЭ’i¤ùÈ£ TÓ·éæ{N”6{îÐÿW&Y˜‰ˆOUku·ßÈ9…ŸO™kË\§ûì—.O—ö{ˆVD~9/i†©bíç}Q¶x$k¸fÞQ)*0“…ÌÌœwá¹ßy`9kþ9s^?k#s=©#g‘yìž[rÑjñ£ÚÓM¾å-mWÂ!Nõ@‚‚!±´ªi˳k«cåÿxÍÅn’ÿ*l\ÈÔ›ïtÀÓqE©<‚©uý‘a6`·£bˆƒ°ŽQÞløösážåôÏI~@œ&€kôÀì-ª%÷ˆæÄ f=ù)LÒ÷®Å Ó(…ÔÇTNà|T†ýx’Jd¼TB¿­ ÑßïëO¬‚ÃÖÍí÷ +Éh¿ôGB&[†D3þ‡‡R[º(”v¯ +gd§ûrøŽ¢è,Šë—óV“!óî¢ +·+Î@R‹Š??  ‘žC…©óX×”Ãþ(Š† E.JšÊ{ãœáоΠ«º; Ö©ÕÚ!Ñ’ ‰rIoI 1²f{ßás;3GwÙ†l„Ó¾©§V Aì$Å‹Öƒ-ñZý¶-xî89ÙÌB¨Ž“D“ E{­®ù° ¼Ý"\ºãy®i‰¨`¸Ë‡ïb­'…ä¬e'Þk|t íåºbPJ«Z› µNK˜‹Ð)y´äWõ"ÞMH¹$f£xÔ.‰ ÌòÖ— Âôý™¸„>»l&Âû[󞪤“ Šð +XýqôöзþêÖ½Éã~ÛôQ}âqÒSæròi…$U2“”ud–p08kËFSÚ"Ô2B!©Ý8N@•W—ú¯W»Ì¾°ÔÎTwyWùÅ%)2¢K9AyÐHå¶<<• µÇŠ 3yé& +H³"ÃóÝIô»nšË x² ¬ãdÛ[5LèZ,9õ—óIU‡ +eYÆ‘ÓŸø¯HåàšÑ$õº)áûmXzlj©/'ýduÛ5.çË¢9„xiçÏA[+X¥0o}3úro¡ÂdEwCþº[.=³³²åj¯¿ã>)1I«ǮÓËc¡Ú$:LWW‘µ=NúR“ç8Å ÷úÇÖ€­‘……YUFu9ç¡‘DÙzŠZ‡áWáÏ2Ýi ¨G…4æùDJ#ÍqÆn="6ÝÑØcŽµ€ûj¹ëng’j9õã7º½äv¤³Em"®“èÏÂJ„nHCiè ãÄ››…Qà–8“+ƒëCÔ9ŽjÕ«½TF9H»Ðba¦Ã¤ÀkÑ‘åLm:ð“ŒÔu1ʪŸE•Tµ^+à,í"±‰“1npÆa ËžÙuž“tUyå !iÜÌNp):²0Î<é”Í‹m%^"j륰¹ŽâíG§å· +.5½@¯EÉffd—+3ïm‘æŠ ÷L"TUmè2£oÈÊÏ"ªÞÀ%EÖ#ø}LŸ QçÛÎE=P'Ão§P-ÁUû­œ=FáJéàW5ç¨ý³¡Èî ¡[ìÌ0AÆ‚!Jö.—i °ûqDEQ‹Z„ +å*žÚÀ°æYæt/2Po,@%ìý¥ëÃ¥q +É<–ȃ(9†£Ô5¶¾€@÷Y Ë%žÞE…Ô:Q[eܹ™²×(b«:$D‹ ¸ìÍ:æUât«óDÉË¢½TgB|Ezq!hfˆÐéΈð"MßN(Éb¥Ð6õ¾rŠâ¶!Q5Ýšw aá²% Ntó¶Âª#Sxÿ®Å.Qáûz¸ –‹t«è@õ§ñͬæ¡DQº$àMK-£IÝô¤©'­øs9ªªÓ*°‹u"[ù™-Si»™r‚°ýóÙ1’L£¢o:ݤ?8“­Ë| Uä*íåFBT=)s)ä‘ròŠŸã­ÕõL‚ôÀ…Žuùy5ØP¯’8…%|±èvQ +/[%¿]ÞÖ¿vÈez×̶ý$9¡º&…÷“SKj_q}ùÖê‹˸݂ºîˆµ»„ ¹ù¬Ù«ÁËI£ ›?×ÿ²]®· Ã0^% l=7êþô»#UEA‹"÷(#c#¾Ù¬³õc>ÚÚžmÅS{Wˆÿ&Æå$Œ°(IÉçµ ½íìËk+œ´‹¸½X€,¬Dkž¦b'¨®¶Ñô=ÖýgVÍOEÔ,(²ü(8ú n²a†®Ìc2×FääQP<¤éžñY g çзÓQ„êWªãÂ|¬™ÃNI-O×2‰š 3Ylåõ‚¨ÅÇÌ`¸ùOXooMÿUõÉ<§Ò+Y·CIÌ_‹h¼€¶œšQq ^³äÌôÓÑÔ)Ý(o˜¬ÔÁ™÷ym=£Žù„'Pê}|¥Ç±q-»¼„Ð<é‡Ô=ÚÀQ½¨Gw$…)õ¬Ÿc—ĶETž+iIôE2V?Uín™sÎ7ì.zÖZŸž#JŠö'SЯhš_æ þ*pû þ‹\ê9—CtüŠ^ÒpÛjt±•ëY¡ïZrKâ¼o… Òýk Õ•+hixc 'œà½â­Ò+´ÅÖ–Â:lYû +ÙÓ–Úˆøò¾} 0œ¢Ü& +endstream +endobj +53 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 216 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 41 0 R +>> +/ExtGState << +/GS0 42 0 R +>> +/Font << +/C2_0 138 0 R +/T1_0 139 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒOKÄ0Åïó)ÞQ/É$MÒJÁ‹®šÛ"²T+.¨ÐVýôN +‚Þ¼Ì?fÞû¾˜–—ñ0,h[}}sø|ÿXÐu›ËÚdÒ©g 3 0o¤¯¤}žIgóÀ2Ì#1ò §d‘%}•zBPµ—ŠQ+×4*r¬a½ò>Èí+]Ÿç#m3mwb§ÿ“úÓ§[bQ=Áa'Gìï"’ì™) qˆð®VÁU¡ØÛÈ«}Ë]÷›àï·‚©lÓ¬ÄÆ"Ôª²¼2l1=ÑHß BI© +endstream +endobj +54 0 obj +<< +/Filter /FlateDecode +/Length 1014 +>> +stream +H‰œUÛnÛH }×WðQT£¹i$¤Ž‹i‹m´O‹b¡:¶7ÛØN}iš¿/É[R’ ŒEkFCry©ü|³»·ÓœåŸ!¿j×ûŒFã·\4‰%-ð×9 ›E’¿»V°Ø&y£ÿV ¡™'^–h€¥,ÀÕ¥¬¼ó` +Y –IªEóorÙ$—1ê ºÀÿæ*Ÿ,Œ×ÉI~}ß®ÃU»Z@:[eï.Dþñíû1†í¡‘ž ”Öào¥ +„@t’)©*h¦žà ã*]QyÖ¢&÷И(¤ßaN«2 ûþZ“ç'ct/§ÖÓôê™7ê5‘QCEԞˣ{Œ+­÷‘Ñë½È¬–5¥’YNº&l­ÈŒ§ÅÙ<žŠÎÙ&ðzAS/¨ˆPY†¨ƒî *¼Má9üFGÁV8 +÷N¶†/vd?[â9wÅžt€÷‚îÝ©Y|;¤>Ôw,¬"“/pOx9 +¼¦‹K‚Ï[L´`¸"s$£-íïi\"OµÁС&‡d2£èý1ÏUôj# +*Ÿ +¾Áe-Xã],ÿL1MÝ30¬ CØ_!mŒZÓvKƒQ$œª!7d +;üE±5vÖA,kWˆ›¡z®š ËÛ‰Tݯ u)µ?)ȆéŽL¹S4‰7CµTŽ +²œ®Áé pù`eøô§°lMÊ'E5_ERLî¾ Ã3ç1"óŽƒ+f«i6Á¦ƒÊ„Ý nȸ‚ ×?•…ëAa˜¾Ntá±-ŽžÂx¾b˜07‚£‚z}ÈÑŠ¢mBûSuT fÑ@C®®¤òµé‹(ÍúßWâú^\ž»ú?Z"í.#ëƒÌ«Ø&š²5Éê)=ñ²/?à«ìrßÍÉIC×),idèÐ mEýˆ7a¢uC öp”Æó‰„ôT$‚nÐ(Š¢ã‡0c‘ýo¾˜Wl›—tH†Ãf©z'Ïš…Z¿~Úñuü7ayÞøÄF1øÂD„†'Æè×±8æ«)_ñ~ 0,­ +endstream +endobj +55 0 obj +<< +/Filter /FlateDecode +/Length 783 +>> +stream +H‰”V]OÛ0}ﯸ±DŒ?Ç‘P4mÚ^¶¼M{(¥0ÆhQëöïw'.P-©Il߯sÏ=¦û0»èfŸÎivüåa±¦““ã‹õ «uùîL:?§†NOÏæ|欛)êv¤5)þ㇯¥²mEµ3Òꪥî~öµXc¤§âA´ø1^:*~ŠR×TÜ +ü.E©dC|²ÁÞ%ŸÁ ­a¶¢[Q²‡ŠŠµ0Z²“GQI6[ # [ÞVX^‹²†ý‚}k©Ùm¯OüŒ·8Ì1…`GôÀ>ÙÙFhŸgWÁ1ç׆¯}KB /-"ǃWìF‡¶É]épv?Ù4¤|%¬‚ÝÕ68õH‡Ø^’øÖMê‡ÏúÁ0*e÷›¢U#íÕ•—šË +M™ ãé™0>Ÿ²VëŠkü‚熞ЌPq:tƒ:ÆNhƒr0¬Žî„‹Ð­ivÆœˆ &Œ%/|G;±žšNqËaËå-…èVýg´XÿáG~¤ ZÂÐ^Ó‚.¹‡±9晟}Ï‹yï}¹J15fL(iÈó?G66X¸ûÛר‘"VرعÇB³‰$imÕz©\kr~¥è~Lñ«UîXjUPke›¸·6à°é«Øö¸Ýõ:bv0€UÆ…^%x«¯õß÷¬3€±u@žMkp[¨0o@2:Æç ,=â¥FGOéø"‘sô¸ +õŠ•æ¥W5$ÊíÄê^¤ì2ª'®ô¶t/Ê*z³¶ér•q{ÛÓ~dTðóÙý +ÂÀ/cìsŒ ª¬”¢X7v.—ði" ™X82e: Í> ½>ÀBݲö,g¨×¤,úO×2ð_ªi¦€.^3ºŠB Ÿ5d¾‹#>ª^áH°\Ü« +ÐâóàHå"–_ö\5²‚ì™\þÒõ3Ȇhâíûfä±³‰ëÐáèÈõµ=<ƒïýIæ™o@ŸÛ±Â¦ÿ-lxî.D•™Ê[ú'À—&ì{ +endstream +endobj +56 0 obj +<< +/Filter /FlateDecode +/Length 741 +>> +stream +H‰¼•ËnÛ@ E÷þ +.E 3%@Eâ hÑtѺ«¢ 'qâ ¶cØiƒþ}çrôräF ZgÈKò’”NOÏ&ç4:›Žbç4}"Šýã_¥³qZeäbg8š®Fߣ{6Ib3ŠÖœˆ-)zäÌæÍ9± E[oŽm³q¶ hÆInSƒÁ¼g)­£èÁßKës9Î+-‰cØœ¤pðËr|X±Ép'ÕÚ|4IեÇ;6$- ­Ò˜Díj—K61ì3NõýÄþŽöÓªBZî…´ò#Ó*¤u M¢ƒt#…ææ¯gÔ/ï .*¿¨å{òƒï®2,ÔÞÀPÐá¦ýovûâ¶svðu‹+èšähˆh¸9›\!!þ1ý8º˜Ž..=u㯛ٚNNÆŸfë;o]›÷g<¾<ÿ0!ÉöÑtÙa6³JlÚ°ùJfPP…'N%›A¯¿#@£wâ±)ã‚sUÿt\s W,‰2â¼4d%ŒØ'&PÒ@XV{Ä꧒v\@ÊŠ5¹RãÀL«jj³RJÓª¬Óhç,¤‰¢!ËÕ-|ã»HËj[Õ¢æ¬Ãà{¢uë´†úýÄtàÀ@û–¾¡MÞåçãQr{(‰Ÿ·Ã(>TƒÒÎgâ£üñT^šJ£í^¾¦a0ÌZË2¬*Ÿ·¿µ YmÚj´ Hp½…ÇhÃnh‚t=]pëo|¡ Z›õzؼuŸ×øì°ÃÛá^ûv¬çЙ÷¨’,ìA©Âz¸R¶ÃÂÀn8Q–Íàv +®ÐäÐÍh¸ª½µÈhAVëYË!õÙèPÒ„õÞVÙ¶]¾G³?cA^`!OlÕ°ðŠÆáªØ¶{¥Y}zõ7ê–îU¤.äñ?±þz×A}`íîš&í*ë 6‘;´‰DsÚ–NÒ:g)jÃF…ÒüT–-}º|F U2Ü/îöKo×uÿ&ú+ÀDæå +endstream +endobj +57 0 obj +<< +/Filter /FlateDecode +/Length 996 +>> +stream +H‰ŒVÉnÛ0½û+æ¨"E\DI@ÑC-šZ÷Ôôà8ÎÒÖv`» ò÷…”ä%­aÀ´DrøæÍ›G_^ÃèôËÓdoÞœ~œ,î!›-òwgxzuþþL oßž]Т³ñ¨,Ê2Àx +yüõ Æ@Išª(]ëÁû¦¨Mãùè[¶Âª¨)âMYXÈž0ÈótÃ/*ú…®h »E[²¿?Œ.Ç£Ëÿáj†¸€‚»Š¾½w°º¾ûRÂýš&l)8ƒâ =ÎÒ&4A¬\¡mã-·èBa û¹)!û…¦æǬ§h\áx¡±œÃSÌ&´Ô-d ´’õ-,±á%7“6ÿ •’{n8À”GšÝÐ {D+œüAWÇe%?¯æ¦Ýæ†ó†ŸLŠR +óZí\C9›9:÷†–Óyd + +B¸†9š†éZbn%Ct’)³ä4ñ$9)†³æíÂÝ<ñ³† ¶žÐÿ+ô‡È·ÊoVRJ>†"¸µáƒЯu²t†iEÐ,‡ÔÇ ‘+D‡ŒgÚI‡ÒÎ;ØH¸ÀÉF6ƒÇ´ŠhøÕ½V£‹^jóŠ7NІ¶‘ A¬—´Ï ×E:~AÇ +-÷¸=}§ô¯PÑ«ª„¾í4ÐIàe|½Š@~ë&¨¬ÉC¨PáXE÷[.àí+ú tP§ª³g„tŽ9{›¬fZá>yáý³ì4K­k¢]4Â<ÂWÌoùkŠA‰¼`ÍmAl_Ÿ9*M9æ­ˆUøÍåh¹Kå+ª,Q–S ! +Šª“º`Â<¤r +ýy_®¹øÚTk=‹D¯™+1s +JÉJ©ÇzZ!¤åÊ’ô¹]Ó Ë;U +kÏ}ߤžM@3£åM½r£ÀSK[Iæ$¶‚ôÚÑ‚1û×ÆAÁTtF'˜Ai9n×r¤/œÈîöX‚®À‰.#¤ÌáÚZÇWRóïj+©“èS.{H=/C[íÖ‹Ú«—ìVKkl0aðÜéN ½»z;I‚ÑÆyé½t˜ÀñðC„ï^ï~{Ó@m]þå°o÷fzÀiÖ”hŠÿøöQyª['ªm×hØ5äà¾!·ò ­zÇq£uõ”ï&# m¥>šxß[ÉX\4zþÄÓ{—Guèò0Ug4^g‰tÙ]#V2ÅýÚE,iSç„’Å z!¡äÌÒõª–ùÈ7G=¸ŒV¢6Ï)÷žYóRº´Ôâ;ÛNHÑ6Ú…S:VÍVÿ X;¼T£ô¶O¨xîŽÑÔ2ò=H”Tûmqp>¯"~¿Ã_$IE +endstream +endobj +58 0 obj +<< +/Filter /FlateDecode +/Length 788 +>> +stream +H‰¬VÉnÛ0½û+æ¨"†‹HI@ƒã hÑô¨§"×uÓñ;i~}gHJ¢l5ð¡ð’8ëã›G7&×Íäúæ +&çwÛù..Î?Î×-×ù»)žß\½Ÿ6py9‘Ñ´™Hh^@)ô£¥²Bšº£­¨•sЬ&_²ï˜« +²Ÿ¨” u‰…Ð=¢–}ƒï +Ãû¹’ÂA¶Ç¼kx'ÇJXÈ6äHvk²³ü¾G] ÙÌ1w¢¤/ð‚¦K¢8 ÙÒ’X|ŽOŸ`âmÑgYòwrY`^óJåH¶#Oª»Åe–œþæš –¼jneŽªæP]§¹e‹572=Üßsy2-DÍÁvNmÚ±Å}¶iÖMŒ¶Ã2$÷m„ˆÖÃÅ@ËÖi<Ú6Â\ŒÁ¬üq¼oNcH‘2DÈÂY¢d)Jf‡¡ÂËŽ&M ÉZj† çq¤--6FòúL&ÇQH¼èQkv[£V±‡®=˱ú„µOF!C•:ôDfaÈ(»„0c +7£š!»…-†;.Ùò9Ð{åÉáø=Ä: +>6Ž›Z¢/{ò0a‡ÈÑ ¡È@²Â…©Ú¡‡×°³ç‚uâÊÅõÀÉÌ° 3ˆÖRºqÑ5qµcÆqÝyç•ç|:¨0"%ƒóŒJdzŽƒ—bc…KÆ‚ºwaC^ĭŒ òõu +®榕¯ÒƒŒ43ýqutCíÝÎ ™XÏË·j[q_~Êá(¯ÐuOD ‚ÕPO#MÁ‰^¨ Ó¢Ù²úQði³––‰`·ôó ÷<.R.Å¡xŠDŽ;ô°:™ îß—KQWBºZÈ‘åØü:)ry@=ªkœz•¦£Þ–ï—Ì*öÖkB«-Ý”¦xXÆc蟥 \<-»ó&ÞO‹ðÚQµ¿ƒǘ½j¶*Õet‘°!;UæÍ‹bD‡b%ÃÜ.PûH­¢1Õå5jmßàzŠ·rCô¸¹ûïB*Kä4ü—hÿR„*hþñþ +0 +Éð +endstream +endobj +59 0 obj +<< +/Filter /FlateDecode +/Length 807 +>> +stream +H‰¬•MOÛ@†ïùsôJõâÙõ:¶„8@jU.mn‡n@…%¡´ÿ¾ó±vÖ!)Tª8˜¬gçãgÆÓO£óéèüò FG_—³}ž-测üâÔ]ž}œ€«áäätBF§ÓQa‹Ó@„‚þèQ[ø¦W5±ª`ú8ú–ݘÚ"dO¦´²…É1ØÙÚäÏoLÞðóÞ`ÍçOdÏdVðñLaÇrl ÙwþMf/ÆìïÎT|ܲ72[Ä×ÓØ’nñÏ +²Ukœ%·³èå¦Ëâ.ÚwQ]ɯ7°sFö’ÝfÆ9¶YI{ÉÉrEå9ö3fûíiŽžkË¥º[qÒ2œ´'›1…^§†M Š OÕyöÎ÷ª¤XãPÓ}0ˆ*Ø}ÌIÔ¬‘ÿy€^>V»’'Ö"ºD–Ö´ûµ“F9‰Zit©ôÇÛAÍÕô}X5C¬ÊòW¡´MÏÕŒ nó¶ì§®v‹â·thá\Ó܃@‡¢T¨HJ¥“»"zŒl*ÄóP1~ä¾ðÊ}t ï±G,¼Kä!&¤NÌ% ª;A䞊äµkz§ä;(‰Íá5i‰Åp¼¤«Kã$ñmó”¥5l7›½eaP‡¯aÛG£·@ó”Ë@Ý9†AàŠ/÷~)3žÎ«¼–ë«6•2¾Ñ ¿ß/|hÐ +çðS0=?‘ã_"¿Š‹xíІ§9ù~"î¸AJ+5gqÇœº÷R$oka¹² $!òRÕ©ùñLÛGaíšÑMb¯MtÅþrš/}þ’ & ïÒÜm¡x[ÄNrZÓ[)ýp] ¯Êk´½n‰*/SúÂ"ø„jýv)yñeá‚pç­ÐvÙÿ—þwÆÃ]UáÖHãг6Ø0ée²XE­$èwD¾ú•Ñ¥–,Ë.†d%0s«Áî +k.ÊÂJ'2'qšèJ6w§Î«9ß.®=“©ü!ÝZºi4ëˆp¹ýµñZqI‡¥_B¦Ô[6]§wøÖ¬øŸ•gÅ ^ÍJ½oV®à8ñóÐ +endstream +endobj +60 0 obj +<< +/Filter /FlateDecode +/Length 934 +>> +stream +H‰œVÉnÛ0½û+æ(‘"RMAYP¤hOõ­ÈA±pdCvšäï; II†ÝEŒ$ÎúÞ¼ñìûäv6¹ýy “ó_›¦…‹‹óMûɲM¿]©óŸ×w7P¸¼¼ºÁKW³Ižåv +³wÐrüÃÃUY^Ô%m²B[ ³×Éïd«l6…äYé"« Y+m yS©.éq¥LÉÚø™oï`®Ò’N•™¦·i•¡ÙV¥eféÔ|fp§Ò)<‹26+Èôç| 6hoöì§lŸÓù¢ +:”qf¥´Î ;táÈÅ3YâÙDï tK•r·€Þ«ÈOjLVBÒbúìà•ð']Ñù„õHŒÎjrô°üªH|Æ÷1š2\̬)OôÕq©lüøu^5åÕדr£· îg§¡_ Ñ?Œ¼®±ù‡%±\AEÁZ.˜ÒíŽá²W2H†*C‡Ý(¨¤?ªÐƒ¯uX¸¡~ïTC;2÷mÇ\Ñ ìÌ'R“<ƒ¿š^–2iø>qF‘E¦ObHæRÒ†„·¯kJdAøc½ d¸£íQ\àó”r@Ra +%ý#è©6‚wî›$lUs)©õ%×\[v:öå{ ‘#FÐ9N!¯¢0£)à!’¢“©øÄB¥´Ž…9%.í²Ã‘Dƒ +XMì?š+j"ÎÛx‰mxâºØ ? ò@81}£¼0áMÍ’²jQ¸ÏkŸÍ.Lùs˜{yïƒ|c +¢Fêõ'ØI¾9½èuHܬŮõnÖ¤Ž†[žWv¦Ã­Ç-éÅ\ + yÊtU}Ä&¶™Ù¨ÜÓŒ#…éeÕÁ´]OÿÓÉT׈sGÄÄÖÂ)¦Ò> +stream +H‰œ’MoÓ@†ïþsÜ‘ðf¿¼»–ªÒVDOø†8XmÚ5„@Å¿gÞµ1Ž¨ ª"%™ïwfŸî}uÕUW×T->îû-->ôÛ{R«mývÉ‹ë‹w—äŸ//%iÙUµÑÆ$êžÈZ2ò‘ŸÜhãÛ@6XímŒÔmªOêŽk›I8hGjÇ­N¤6ÄFGRGñç£neÝpžç±•à~H^qí;J«¦˜ r¶ì,jôÈÖêŒHÒ–Ô=KQ/,¬GÚ±mE-úÊÖâ&u#M=LYØ<'ñ°v)ãÆ•øèÃÄŒÊ?ŠÔ<ópíÊJkvcáhùÉÖD¿Ç?±dzL·ön¼Ü†ë€µzöå(ÿ(dÿ¾ÍôÙ€ÐíØR)ß`'ØÎAõž[|ÉYÂì“Žsom=ÖùܽŒ¥> +endobj +63 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +64 0 obj +<< +/BaseFont /WIZCNB+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 140 0 R +/LastChar 224 +/Subtype /TrueType +/ToUnicode 141 0 R +/Type /Font +/Widths [250 0 0 500 0 0 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 0 +0 778 611 709 774 611 556 763 832 337 333 0 611 946 831 786 +604 786 668 525 613 778 722 1000 0 667 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500 1000 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +500] +>> +endobj +65 0 obj +<< +/BaseFont /GFTZHH+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 142 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 143 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +66 0 obj +<< +/BaseFont /LHMOPX+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 144 0 R +/LastChar 50 +/Subtype /Type1 +/ToUnicode 145 0 R +/Type /Font +/Widths [233 0 0 426 426] +>> +endobj +67 0 obj +<< +/BaseFont /ILMBJD+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 146 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 147 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 307 207 0 +0 513 513 513 513 513 513 513 0 0 0 0 0 0 0 0 +0 612 0 580 666 0 487 0 0 239 0 0 472 0 658 0 +0 0 538 493 497 647 0 0 0 0 0 0 0 0 0 0 +0 482 569 448 564 501 292 559 555 234 0 469 236 834 555 549 +569 0 327 396 331 551 481 736 0 471] +>> +endobj +68 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 609 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/C2_0 148 0 R +/T1_0 149 0 R +/T1_1 150 0 R +/T1_2 151 0 R +/T1_3 152 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TÛnÚ@}÷WÌ£-•ñî¬÷b !5F­’¶÷ E"@“P-¢_ß™u¹¸‰DQ…dŽ<³sÎìœqþv¹¾ŸŽÆkh·óO_¶‹kèt.z]H.ªDB2–ŸEa •(´°n@Á oÜA’_ ÌVIÞ¥¯ +4TS>X9¥ÚÈcZñß/ -!ð+ÅO[xt…q@)(Ž=%m¥BÑ©’Ë*¹¼a MËYb­C*K9d5óhÈ€E­–“dšä§zÊ+½SÙR¨œ‰Rkå.Á¡·Q¥çv- +È¡ò:ꦔµB‰)f-­ÑCªuv[}Ø+?©CÈ¥ëH.`ÓäÕe@ç9À¼d\¨y¯™.ï$kY4þd 7éœC'ã0)‹ŽôD +½²á˜>…ìh6'K7Ú!ÒtéšítY<.X»G–ÿÌÀa€t, ¶É÷o!ýçŒu|Ã+…€7ð9krR¦”zóX§rTÏp` £Ý›ç˜Ã§î`µ|]Ù +Å’‡+ÿ’J’±>ˆ1RuÆ@IÆ;¦)Èy'ìßvxÏï´L§¥ƒ~,ÂÕpîÈä§áQ6OÇÍcOëÚÓK7–=üÿ ñ•ån¬±ql_«ldù‡âÅÿ ˾ÚBþÚDãx©h6s^7/¾'ûö˜Ø¼vƒ.`Í5¦ÏÛ­'M& ›iÄ“èÔÚ%:º[|¤ 4‡w£2ZŒAØÅ<1ˆ&æóNŽoرXÄ2¾>£%ã¦1YáË®ÀGèE}¾6[ý†Å~ 0úJQx +endstream +endobj +69 0 obj +[153 0 R] +endobj +70 0 obj +<< +/Filter /FlateDecode +/Length 5515 +>> +stream +H‰¼W[oÛF~÷¯˜GˆdÎ 9#î’º-²Hl­}Ú,²-+ÞÄ—Jv\÷×÷ÜæFR2Ó‡MP¢ær.ßùÎwN^o®¯Vê»ïN>¨“w«ç»Çõý÷oNPGo–GµªçƶðÓXµÝü|V«Íîèd©ÿ[+­–WGnîaüõóVimçvÑ.”içmë`ÁÍѱ©–ÿ;úqyôã{8õ78tÿ–ïN~º©ÕéÝÑ?NÎîW·hûÕíF¯og?¿©NÞÿðöT5ufÎÉr)—jGWÂ#ÞèáJÛv ^ùo¸ÓÏ;uÛªÈ-q0ºþ¶Ò n¹3Y|¶p’Ç×|—9DzgÃÀðˆs°Ž¹¯Ì¿Áûå3Ën3ìÔ½hh¸.˜ÑŠþî +CfºÃ•Ïj2æL†¹`¹ÎÌ}VÊ©ä?Ü,0ø"ïAŽï|¬+ÃõE›n¨"©PÌËÖ: '”8å’œÆÚ_ô°Øá®ë-îe´äùl#_'”Zzê>F`Ô÷1ºïÖP*þ%Œú£€}A|‹áû©˜pZY:øWº^œÉt“.ÂmÉÐ7~º_JX^lBÄÁ +‹!¾óißí°¶’eSÑg Æ+¸­ïݺ‚dz¼s:¹ÉN†”!s^(~Ž2¨ó¾ÚK³: è‚ :*½Qz)1*–:G Ž7ƒùdÏÛÒs²­éÙfݼvV9Š5ø6ô›.S°1† +fù.ž4Öãðš§ÊRIÝá_2 B\}4FW éŽ÷ÎÚ‚¬e`†ÈÁõhñ±Ý`$_h¸–ˆHp3^kˆ•G´/ºAºÔÔ°-zü »Ñ YNñ’ 1ÎEìC‘(,=q‡ÐG¸ÊàU³&»ÉÚ!á©ÉŽ`Â^«¼ðÀBân:™»TóÚÚ}`oáʈ¨ŒSÉ#ì{ÌhmŒ@xÒ†¨ÈÎ JBè^CŽ¼üLo(_Â;@½3ÇW¥¶3è¤Nú¨‹€ºf|ÁÌŒèdI\\¯Zöjå€)eQžÿ\ ˜‘Rø;F”SZT·¢ õý§Ð½o+ÑɇO©Ñ!R¨‘• Ñüðëd¸ø.{©Š=‰Ë¾h }®ÒYq}A`ˆfö¥¡MiÈÁ•‡1¥Õ\ Åât<Ìo¦M‡›® Í«ÝK¦Â´}<æ4µ !íPŒêÖ¶@Âõ¡šÑ³eñ±©3Uôq†Xáq¾ÿ!濨>ÔÆ †ÆjRgóüûQQÛI—ï›0e‹)=>ƒØôß½ ]!kI»îÕÇãÊ ¬"¿Ï>T-Aæc5¥ôÇC&¥Ïëm69 ¦çjŽ=Lè9ÐƸ¬7{õÆîy›š†¶î "ÝW­×¾îTÛu0iZÇa[U-åÂÑkË^šº?ÜÔ“LŒü4mhÃö‡iR­?aÿ ìý¶¶EÀÉÆíú¦bþ)¨©Kƒ_R@ÙJÚ¹t fl{Ì=û`‰ÐvϼC½zÒL˜$Jr¢g“GÙrpšKN(”Gˆïdé… 2³ö _€çXM,ävϹ€©ðÏù|1$¾ï±]D@³‚©lL¨ÖPz†"“ÔFŒs‡9‚ÝyjeŠ¥m(QK ÑE ¡²r"abÈUDN% àù÷É9** A½¯È=@%†ô¼r]¯È]Vä{´7©o‘Óê F +Û±ÊæìQT†Àýw¤WߣDlH5™\ñÜ9,)Å„‰ìàG„Ë8;ø>;SKŸ/LÎl3¥ú²¬N¯¾¶×p¥yt0Fô´Ð·Ë‚ÜÝ£÷ E!èm +ú5EƒÉ B¥I?Jó¹5Bn”‡»Û ‡w8l,‚?=`® x´Ï›²½¹¨q}¨…0Ù †HS`¾‰˜ß‡x—o'ô²&Ãû +ðÝ°êæ^¹Cs\®º hç‚É/þ¾›*IÅÈ{©àë]îýaæHsÙJ>]ÈÌ6* {žM'4ÿBk‡“X%5r×ybt°‹(Oú”õOŸãôyLŸÖ‘b'KÝV>‹¨ôÑE×:)%ê‡0µP“ñŒ‰—­Ì7ådñBNY©]¯±žºa=RÆY—ˆZ›§¸¿Z[cÝäNL¨PkÎÒïü84í¹bŠÃzÑ==Ö.±pÛŠŒŒ[Óø¤'W!6 øÔ«é lèp§HC8s>9¯]¯˜–âÖ †«fÑf-`ÉÂõS˜n²¢zàB[R„neK!Á¥. ‡°ÐË<À£Žº\Åä‚Ò¯}Dè¤Jõµ`µÐK$é5ZÖVÔ9 ²J"Iч¹ÍÒÎX¯ç¦gðlÏ@¨á¹ú t]> m¾Gcš,JÛPC* õ ÑJöåƒÀ´¼˜~^HC[¸öÕT¹z‚PÉÑ3Y¨¸b™×€Ê²¡Glz5ô¡X|BEár Ïj[æ§Þœ[ Rß8çºþœ[0×9W¦‚oe°Œ3ƃÌKœôº–ÍËfÐsÂZâbTÉpúa£d’ÝrÛ¿=ÎH’•úŠ|׌'· Xx¾È o‡â}8’l+Ëý¾)øc2rM¹ÐÆAÂ"¼øS ³G„Á¼æãWOů=ŒßÆÕ)ð{¬^M®#Bª à«$˜žÀ¶ cæ“Ê ï˜_b¿=_'¥Èùåe¨ÜüBBöO”ôR†ý©s4Hc¶‚Ήœx*ºê™ +Öüš¦¾ØX3Ú ôL ¡E´Tö“;§k‹ÈÚþo«¶›£“ŸÏjµÙñlÕ…ÙŠ“ï8A.KP 4ßzÍ ²h¸FSf`ŸzKö³ø[‡ùwè±¥ŽHš÷Q¢~Aµºu¤eÀêhÀšê]9I‘Áê3º¥Ñ­Z<êöѱí4øÛö\ÐäÒ­JŒ–³@ÖëžÃì8Â0¡ö¡‹¡{:Jl1~ä”x¯ƒ¾RÿÂmðéàºè¹òysg +¾QCä‘©ÃÈ줒¯kµA¥N«X¹­¬ kF¢$§ 3TU‰IU’57F0É}:#•h&N݈8ÍKÄpãÒ4ê„$:8¾'(k·"¢!’e{Ÿµ¢â L$çâœ[‹-Ô„ÀËô'ÝuÆ\€í8^÷ܱ֘V%EEuÒãBA]¨“.MD?SßnsÁ¶‰ç„$¸ÌÀ44óæÛ„í=®±º¦·#öŒãÕŽHQnfe‹d:ve³Á¼:СsÎ ‰ÚY'tš„@SåÎUFG\ÔåŠ%¥G†7šˆ$VßyQlÀÒVØËç ÅW[ð"æÐãû?„GxF`M˜·YËÆ_À¸ÏtŠ.w•Ìå†Ì¥¢>}™®¤übá×TG(=P:â”ôˆØäО©ÀéÌØ"të +ÐÏ&ê+_÷èÌîíx TNÄä~Ñ!*+¡‘%÷û›~j¹í%’ªÛB‡ Fâ÷9juj³ ^‡MCVÏ}z廓DçýÀ94¥^ñˆ"UXH.$ØuU±>Lä÷ÔŒáÖ_ð=X1“êÞU iX üù¾ê–#F Ç¢(¦!Ì¡jèkË€½*ÂöT„Q–,AMK +'ó!—Žµ`eÄël[@ZÕe<`ò« ÙѱµÞÍM‘tAÏOä¸Á¸ˆØðs—Ê>›Ü(ôÐm¢ÑCÉ^r¸ØÑŒ…•¸ªËkÇäÍêOÖËe7’Û +ÃûyŠZNn¹Hɪ¥3ƒÙ8€5Þ `´"&±ºè2Nòô97’‡¬êVuœZÝu!y.ÿÿÔQ&r"“ƒ¥*ÉÊñøŠöäž*íªÛž?Û²gn¶7Ì&HëœêÐ>‡è;g‡ut^¦@©s¨j‘£1ú˧rK‰%„l]J€ôxî3ê…›~$éXØñÉp v)¦§RÙ9WW>m0];Ä)Vƒ%6 +ûx"7 XõRv†ÞqƒëÜೡ¡Ò¿ïC%àYéy¬è…°’ÜfÜMاL¯Ò¦*¦êv‚Ò{ SV2eDvHG±u {iª{ÂNAM^ÔpMõ&<¹´Æ B­-âÁCWPxÃw+CÊÎ_R¾FAoN'ŬYh°œ£`ÔŠíqmz>?ôŽ;³1\¦Rnn=O¢ a+~{Á|‹…[íù Wÿ€«L"Šm fôEôÚs\˜Pg'œËNŒ5-ÔÈR«¢‰¸öOx¡ +Ú9ÆBFè>¿ïC\ ÛgkMïȪ؅EìBå•l´ ¼Â"ºÃû>÷ýHŒ~Õ]39¯Ð¯ÀV=Eú3äÖDÄ :‰”ãm‰í<ÐIcý™¤§ ä-†ÕôZ&ÔÅžA‘JVóÉŠH>Nª|#’$$TZª§b*òdñ¡[-\RYyT‰&±‡Uðùƒ…ƒÒ· ê +Œ¶æt¾$§*Лs:µCMö¾ÉÉé8+.9Ù| +üs.º``ˆÏ$q¢o0”Uzæ¿ö»x5±_‘0üå?"$ûâœVT–‰W'äuô•ú{Ó\ºJâc3”á–iî ¼P1…KÔu2µºÆsIú¿H:5ó8ü1Õ#TàB–.¸XÏpjìÈÚ,ÙZ!Jƒ (OØ-T%¯ˆ@SÕè†\Ïs®VÆ‚tRÕ%¹¾(ø¶±¶sÁÇ8cmdDÜìʽì"”~„W…•hz^'£îÇ2 äøšÚ¸ +»Ĺht j\8‘„H"°W”ÈcÓ*ÒáCÛcëÝ2;Ü!(n¸&É0•–ð±*§X+2ï!Ø%0¶gQò¥ÂŽ¤ç[ï˜qW0iò‚9Z¤ºävÕ)‚aFôKO¢ñÈã•ÝXBŠotP&þAW÷ee=nçi3[ôÑÿˆñ„ ~„ptïfX±«@û†ÇóˆÚ¤¥èé„Å8ñ”ÒIÏâ…þ¥%ò¸[ šs,—™Z j²ÚC1ë n7æp +¶œ=“¯8UÆ\Eþ¨¨6¥+k7M4ů•« L+àk~ã›îÊT,™OÖ#.Â{µæd‰º´íû™<øªûso]¶´p¹Ä&%áL"Ʀ3~À3n¢Ê·ve¦l˜/¡˜GÍT‹>ú@‹¤MÒu‰–Yñ¿;3§òªÀûæ .†Š(:°#˜Ûq†˜×ÆcS¥fqJKU÷õNÆ:¸/É÷’¾A-çzW‚ë&?u˜¸À"1ÐMÓ9Ùbà Ô5ë¨Ë9Zãé–¦Wû0q·5üŒ ¿€‰ÍxYQß &¯´b7%£8'Ö`¼ô «À8ã%7ùsÏ-}% _ƒœ{m¨í1TT¥&¼ü± 45sú½ tÉh4Ð! Ç$Uzzºö=ù¹ò¨¸Ö/i q^ iÓ©"t^‘Ò›3À™©è¼š§**†±„Ñ_ÄÍ妢øwObÃJ~rèJ­Â>H}¸d…µ¹}’¡­ê#Ÿ¯¶”¢uô•µu4VÐÁDoñœ»ëžEó+ÌžÑ<õ¶Ëç'_ 𙞶i hv¯rã±'é¿íg.VãSùX®*"™½üþ›-÷»ÔÊG¨[V©¯°'òvØôÌ]Nï>nŽrPQÖ´DgSÂ÷»þÓ?6½66êodÃ~ïVsà9W/âRwäƒ4Eìܘ'0³Ú|‘ï{ù¼ÁßGæXÊêÎ$!'¾•ëwˆŠìô('÷øÌÉ0¦¹‹’wÜ÷!ÙŽH…£,Ë[ûyßÖ¾x ©á}¾ô%ê)oî ïÇ»ñ‡ßó1`ÛËŸÝœÙiá2'#Ãhé’}S­ˆÜ3†àk +(u uR4‰ ÕÌÐÌ…zÀ{,Ú.¹îƒ°{ªèC])p´2â+¥)_ªî÷ÝAn.»dä9J'¤¦R-Â{Ø÷Ì/Û#8Ÿè7Š7uŒõde”@i™Èrz‹‹þ®6JþNŒü­'ƒ.Q‘Pƒþów|.ÒèJÕôo`Ì’æ7i)¹É¹›¹Þó‹ê=ËŽÓõ,DŒÍQ7C;¿.µÃN‹T “*á×#6Ï|º×©{1 ¥›ÿv<ˆóß%çûÿôúþ©OËÑ÷ò•¸ü™ÑôŸD…³Rðu7p+y…·`U¥Ã´:G·&¶bb#b¾JÅ{ð{åÿ`܈QH +endstream +endobj +71 0 obj +<< +/BaseFont /RLKTVL+MyriadPro-Light +/Encoding 154 0 R +/FirstChar 31 +/FontDescriptor 155 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 156 0 R +/Type /Font +/Widths [484 219 0 0 0 0 0 0 0 0 0 0 0 174 298 174 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 647 0 0 0 0 0 0 0 0 0 0 +0 0 0 505 464 465 0 0 820 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 214 423 212 819 536 +532 552 0 295 373 309 531 452 722 429 440] +>> +endobj +72 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 572 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 62 0 R +/GS1 63 0 R +>> +/Font << +/C2_0 157 0 R +/T1_0 158 0 R +/T1_1 159 0 R +/T1_2 160 0 R +/T1_3 161 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”SÛnÛ0 }÷WðÑf™ÔÅ’ ÀzA±a]ÖoE1dM¤[ÀÉV¬_?Rö’8–õE¦%ñœCñ°|ßn³ÉýF£ò +ÊO“_«OÎN!;i2ÔÆz^³p}‘¡öð .án秊7óuVžš/ÍŒ›{¾Ò<˲Bþ¼ÈQ ‘·×Š´GŠ`¼6ùè)!F7n³ó&;¿d Cþvž‘“œäx2Pm¯ ´Ù,+UT6´Õ¨‘‚è,ú(‰m¡ÒÁ'‹%´CªÀTÑ[‘y›P…Õò¥rÚB¾Qùƒ*8ò¹*ŒŽ·*êò _ »+AÒ¦Š‚æ8S…c’|¡ +’œµàòÁ¤å,þ’}>Ÿ¤À$¯ÝqAFXÞmÓ ß§rÆê«è¡Ä¢ä{ÿ]wù‹ˆŠ{Bù™a±Z2&#N–Ó.¸V 'ÕI½æ½AèÞ ‡Ž¾QµˆßˆdF&ƬSýy©NüZÝ5·¶ø¯.Ó¡}µÁhKnÐ×@í™ï8ËÎïgÛà5:òbÓÐc¿²öQtLhßd¾(ÍWe¶UÕFb;3,èMõ¼š¶í`3±íˆeVlÞ´ ß5Îö4œªÙØÜWøÌ­ö⺕lH‡rÅ@b\'6`çz’¦³s}øãútÔö0†½[‰Q}bÅ[Ìðf‡à®¤Êö%IpPR@M>¤nF[W]E¬ Ö"I³‚dU¢‚ß ¼A-ë +endstream +endobj +73 0 obj +<< +/Filter /FlateDecode +/Length 6185 +>> +stream +H‰¬WÛnÜ8}ï¯à£ D²HŠ” HâIÅÌÞìÅ>l _Û™¤moÛI&¿¬ o’º­ÞAÜݺŪSçœ:~¹}úps~ù$~úéø/âø×óo÷ŸŸÄÏ?¿:y-V¯ÎVhjm¬ÿÛ¶Fl׫㷧X?®ŽÏÔ¡ÄÙÍÊÕÀÿëj+Ú¡«{×:¡mm­ólVGFžý¾úålõËo~ÕÿúE×þÿÙ¯Ço68¹_ýmu|úp~1üz~·G×wÕÛWòø·×ïN„jt€m?B Š9ã8šºü—¯B)zJù—»ºSΊN÷õ0 Âù×щԮn…ÿ4M­ÄÑß…l|ìGRY¸¾•m­Åѽ¬üÙÄÑ¥ÿi|T²²ðóQV-Zx;^‡Uü繬”‚Ûk^7^ùä¿4µÃw<{Ïï|–•ö;ÞùÄÑ•Tm¨!Œ­VÃKO²àB\î£4°|àŽ·û‹Á9Âÿ¢êa…[éêÁ¿À×/eOçÄãÞI­àî“ÿ‰«âÕ?ü‡ßêIÜCrzqtÅŸR©,e†"Ôx,<‰N'™8Þ2Ø¿>Àm0‡Ë9HÈÞp°€?¥ÈMþ\È3oôÉÇq\ËŸý)"p/ÚL¶MíÐ×t¦£*÷Þ¥Û|éZ™¶\¾·uc†VtÊÃ+bu-˃Ý@-!Gþß1pg:ÀϯÒ`Jîùò–SøQœ#l›x”ˆò[é¢74RµœÂjq%.®…/œêp/ פODÇiöA]o8ªˆÈq}+,ð•È z.6ÐPŠÎ‘Uº£Â^|žÂ·¼AD†H[VÊR‹õÜYtmêÓ¬FÓVÙr#ÄC.Ç’]‚¥¬Ú`ÉXš_ÄRãû`,aé ”£-­ñLOHÆ`cY¸±ªé! ¡€D=|Z4½"Ð=QœÍrTZŸ`:ØÎu0WMì¥Â}8ˆˆ3t_ ³ì3dñïê´  }tàÙp£àÆ—ði§Íç V‹¿Ê¶%ôi:‘q&±”]†œÊCÇÌ#Çõþ‘…Î9uÌ +FîBÏws=Ï’ðo¼_¡†Z+Å'gÒtœòo"ŠÃãCPÿJ;X›rMËí[Çr‹ÂW T[ëgk¸ìw)•üÀ>ã.Ÿ¿`l\vƒÇj ½£xÖ3<ƒÜÊør#nížË³Y ’™‚Ÿð³™ZŒŸ¾d;ìÀO§kñ“œUh¦€ß€ûôsRꧩ©¨ÍßkO3rÂL%±…R¢B¯±,\À*`÷À€Ø’ù¹—¾|þÍ/ˆd/ÝÀz>ón¶¼ç?‚?Vmv'g?j!1µ²“ØŸ1±>7n Ãì¡€åà(bŽœåŠ¨š¯µz0m—³]ÕsW)6õD '€J¤ÆËì¸ÃT‰\iU`Ò×° zˆVê[Ö{èÄÀ³‰Qsl¨C‘f°$ å{l’cæv °IçfNUyŠ:ä¶éì‹4ìÉ4l Gô¬n™ò¡A(â 9 ;0Ø. v1=ž +/ïUul­É¼|ìAÍüäXœ,yüàò| ¢g®ubÜ_³9 +%dÝ`¦ ‹š:ñÇ +9sØf•ÛǦxÉÊ³Ô ô¹|$­¨Ó±ù]ñØ|.Kœæ EÜ?x*´Ä7k‰½¥ÙÓ5"*Üå.jª?É@R¹5¢ˆ:\“Í&ÝÅxÐ¥*6»ÈG™Ÿ·l1%ï¥lQ×jñFêqü©E5¦ã+¢}^‡¦6ãRö$ Ü1ªaÿÙSÃh,ýgLº¡dÞLd”x¨MìÉÀ™ÏŠ‹XQ?.—W®˜óÊ]05?œÍÅNç”YcHù÷yÇ‹l¶'ûJgŽñuÍÑp$+];vð×÷<=Lðæ‹”\|š¦f¹:–¸«]>¡Ð(’Ù£)ªÞJìÜd”ÂÊdñ±Ó$JýN4LYnºY†É0¬’ˆÞgBLGñBV樭1>í:©$P¦|,=$Ç•JÛ\üÄ[Þ‰¬I#ûð±Ä?¹~µ?û“¡çÇ]Øÿ„â!4YfÊB½“v &3Ä€I7ÒÃvÿùmÒTðÏÉÜ·s"¤$õ¤)KÌ9~»Óï#êÜ4Œq2cñJ¤—vQ‡N•­P{°rÅ;Í[råœïd¨…,ÇZWb‡ÚÞef|Òû²!cSµdDFF;Z#znÏãròI´Ž'r¼1µÄwÓ‹®G:œ÷Dt÷»ô™Ÿ¸{€[0üaÿÊq… žÃEÑi@w=g°/­Y è DOHV˜Wül§YTåfäÀy!ZÌ‹ãn7w5Œ»Ë±Õïæ±,?D&㽇}Q†¼EgÈç&Ö3¸ \HeÅ¡OçF§3p:¤Ž¨£Xö@øÝ…­CQ5$íÆ:ÚfÛn·,Û-CbáêY²z°µËk=”<Òº²Þ~òª;嬰¶/åv8ë)a‡à[BˆJ€jÂL¦rŠAd÷AcZr»{½â²ØÉ]c=>…älK“ÚEïÀV$ƒæؽÞÀ³üAEDÒï[ÎSY¢²ñNòG×^r”¡C=ÇK‹ê¥±˜–†~Gû9Ô{‘.¨Ãám°cìT;ÇN“OcPUS žßQÒ¢ Ü3y&O÷RjK–qÈyœQhÊLVtû6 þ‚q´w”=Ѩ_KÓ‚Ü<Û (HNˆ@`Q&WYæ=ì(3œ,¶n2F˜Š,'7Á’ÿ¿œ5v£ÃÖeÁJ`Æ É Ç½È|ç#ÙÉoÁúsH½·™¥Ó=ªí‚HÛeªÝ—ªÝQgG»„šõVÜÆYÈàÔ†#$)Ak?ß--P{ä/¥hÛôjxDýèÄh¶ E—œàÌ°›F°Üƒ2.8Ú݉˜Z#‡ï¿×ZËÞUî™$Â\Ùf“D¨„6Ô•+©:*™³¨Hw*äòÚÒ<Êûg“3˾œÃF‘ZŠŠ‰·Þ&ÍÃjFíϦ"›OE>.àçPÄyü2tº'—{Πà5¬ /Fnzb9ẍjüJg—‚¿ÌÂæÝ#·1l{VÆÇÒwWd sxóDMäv;¨‘OŽ¡Û\`\ãÂ'ŸÑ*Z ï·KñÝcRMGÅ®ðÎ%ºlwZ¸Žt¼…!€Õy¬—çª-Ýó¥À„u˜'_¼nb­Ú¾Ë¬ÕIê›!s¯ª ÄyLé¤áiâåæûáOB f¿c¾W©]7bÊæC!´‘¥Ç¦-Œ¡6¨nYî Ô€[îËßiCߢ³É¯èlD x}æ”ÊñV´–‡·îB{óØ£ÒFƒÛÝgKÞ¨ùžk;vÎý;— ßx ›ßN%|ßL¡M~ÆçÉ4§LÙ<•¼Íˆ˜B}ìj䋦`ö`F›“ËöÓM¹šŸ}ÃFĽ?D’Ÿ¦Þ&‡Öùw[)‰Ìq^q y×;,k‡Ì Ž-EûMXÇŒ3ÊÉtö,d6+usÓ¦[ÌÛ0ZÁz:3•á„ûëÆf)u’ €Q@^lnqGúœ“Hw¼9¤ÎÒ Åä=QpZˆ>¶ P,jp¶RCèÅåÐêJA›…•Ÿ$‡ŒzF^¢Âl0{¾h ü3Êö€ŒI}ùœÓa>6iuÊ3tq¢b¹YÀ=¢–ìœÆbQƤRa«'ãÜ[ày^„-–ß¿‡9vqnû"·¾ØÆú¿mkÄv½:~{ÚˆõãJ9Ê·‹ù6ƒ÷1ÖhÊw (ÀQõ-ék€dÒ$Á­§#T^t€à¤Äáâ°ÌÂÚ­+ñŽòÒQ}(ƒkíbà +³^>bUÉöÀÓ&¤§cCÐPR§i(ÓÉ!? +òãù®Û1Θn¨›Fq¢ÞA9°4ÉÚxcÚìTPñµD÷WK‹´¤¤í!ÞFEˆãý‘(_M.‡~¿„Äv dþ‰•2äÁ¢å *HoG’H5'Ü%ÉšÉ@϶œ}ª/zÏ·†Z“'zšaLÚ.ÓTiFù‰ E¶WÍÿX¯’Þ¸,|ϯàQD «ŠEÁ\  &š“ Z«Kn¥eÇñ¿Ÿ·ÕÊb7;ÉI­n²–÷¾÷-Ño2Ñ¿à¬)%¢S%§ðNWH ydV\KKΩÖòqÞx;½2åqê“[€i¿Àr”Ïw}á Ù?éŠDؘÙ;q§Žs€C¢bpºJóZÞO9Ý5KüY‹Îe¾j~ ÆVØð]Ëèl‰æBU»l>j3+—ÅVOÐÇð$圈'0”r‰í1PW—¤(hMCŸŒô%t3¤ÔºbÚzj´ÉÀtѴ׿l[ZghÕý¸Â{Z š©¿Kd«pÎ!›ds—8Ün“Q”Æû©è”Åðnkä$œRr8U­û«0«(™v?¾žÆ<ÀŒ ‰^Gp³0XyÿlˆœÃPCŠúâœ1ÝŒ©Ëût š-˜MPuf‡dé +T hq€ê¢5JJŠxkßL±É­Q¸œG…#†Ô †´g1¤.r<Çâ¡;fñÞèÿ¡™¹~øn¦ÂÌÍ Å¶nl f—ÍówïûÞück½Ó,èW ÕÎWuÃæU§º»¾V|~è[ËÞ6ø¡çü jùQì”ꧫI6;Ä[°FŠZ~ò÷™X‘Æ;*}sÓNˆõϬ àò‰ÎI—x(X4õ@ƒ¬}.®îZb¬›–YèIþâø2xîۑèëÑé‘üÖÁ>­ägc-ΚXæ‰È€¦ž†ûc‹aàŒLÓ¶…Åñ¸m°°S>›XJ7YSÔL)ZÛ÷QàÑùAÍTÏlÂFøÁÈe#·ÏöºÅ#8à¥nà!xįŠ0:\ã9à­øzÉ{Ùë+öMèg9Ž6ÂWhÊ8À~¡2!;’¦Ú3*™¥òÚ<êºjwØjn[—y°ûøÍÀz&ÉéUÐë%Œ©®Hë)¯=ïÒ˾â*ÞΊ ³€vÅü¬ê—ðT—ˆQ¯¦ì€©p´þ{Ùï)Ñ_ɲO‚¾s$±¾’üïX‹!SnhN$q:RÝvì¼,e¿kp"a“ßP"èÖr+t†~]‡ÙA@˜u˜‹n«™/¼BÍ]Á#°µxüRAOYÒJ(ƒÚBîL!wÓJ @¹kþ‰ëNy$ËDd¬âá¾’Y)¢MLòŠX;ÃWÓžæk¡tÅ Ñ){bëo5é;ž#Y(ZMïܲ¬ûx·g,'­i _j;ürƒ¯€BW02©«>`ä;&‰RÚñx%‚&¥2ã©ÌfÝ'¾ùµ%†tªS° è–Jã—£bšÿ‹ð›1ùÆÅ4Y¶Ûì#–.;ôÓáhzuà™% ô½’ RzÀäZÁÈ቞q#çwä’`Oå¦$Eô©ª'u½<£ý&o?ê~½ýŽÚ_‹Y‚}?ž¬KÄÿuyaûµÇ°×7Ãó«]:Ra½m—ÑSž"’Â|¨¨`!`žn~ÀÉAÉgI! ²z÷âÒ©óû$•Q‹È#NÜyÒ½}b¢ô°ÓB|¼B ›·­“Å•o[!PÇ|ŠžýŠÎ°,:]PžÀcQ ÂùÚüdL¸Giæ"éÄ@*·†¨A'òû–fê{ºßÐà 2Ždˆ;òÍ;™5À›¦ÖÁ™ãÞ:¹žÿ¿çÛ!™NÌ:ʳ ùß‹w8à›2ÀïZ¦c$‚¡˜pàxÿŸ wµcaÁ®äÕíuÛšÖÈT’=(s›–þHnŽå¶bÕí¹mØœÛБÌÇb[z†·ÿ¢–;‚}Ï“€ÿ}õÑé[kzND†'„4æà~nM¸>a8°o¢õŠ„"+Íê{µ½‰õÕËðÁ)Ì~4’üo~C6UCjª¢òÜïY¡ÙôTd¬êø )é¨x¯àõ‰^Þ  ¿À ÙºÌls!¤<°IìIÇBXwE2pˆs ’“…(uE´#7fg9´†•†Œå}Í‹oïX–× EâG…°:˜cÍ=òž%XÒOòÍ^úó°¼W^juHt&÷ íÀºæÛ9ˆzªëv¦­ö¶ù†¯&ÆÇ¡Â%'óªã=ÛbÍâÐǼ‘gdglyˆÄ./rl6ÅŠíH°Ëø•¢Àöp~£M†à÷dhU!‹“>´¾/vîŠe|3¢Þ 3Ò ÉT£Š+Ú¾F ?Û3®ø7LñhGÈÆ¢ô¯§öe¾ÈYM 6Šî×zH 6È9~øÖ²ÓSéP<³¿š…IÇCñ¼QãPwY™ >ã7âÐq‡neÊz5®£FbGc¾âU‰0>•žäS8(°ŠA ]’pðhâB+»Qü~©?E(j¨ªÔÀÐî|9}VÊv4¸ãPJ6”|œnuµ?œ­øþOgí IJҜ‚\&Ê%[ƒÓF7ñî»"Ä¥Då¶c¦HrG3©ÄxïžÐ¸GºbbyHjìy#* 6…¹Å£M))ýÌEôãFù丠»#íغ¸ ®sÑ4‘ŒvÞžcÉyì›;Äú,Ê1R¯ø'ܘ ¼ªUx… Iv-…sE±¬°žýkÛ™Wf3{D„”G\Ž4BÚý +_OyÏ‚Ø‹\ Ù°;Ãðd–÷ÄÌ€©¸º%9I³ciÁ‘Ji”¨__£5Q!ùSïñІ_BG™¥?Ýz¶)ü©§}‹´Ÿ¨TÊ>O †]Ï&Î;`>à6ð]zN4ãuQBŒëhLÙf;PΣ˪ÒY9ÔˡŪÛs¨ÝœCñƒ>DÓC¼…ŽP- +žžSe„Y Õ£æ½Áߢ` ì‰xûÕó24&/øú€PØ·$Ê$;¤ƒÕo8Ö8³´> ‹Oé&øçµywz ϽÁ·àÁ“ÿà¢Ï„¤ŸZºÁÏ2¡ïZ sã’bC‰ûXâÞú«Yhgržv àßXHce…#ös÷ïd)¸œK–é•­2I’]•¤Hû0’Z¼ž]4ÀÔ†çí•›óüqÛô‹* 3°ð s^t[CÈØüÏ-AÔ/¶ÈÃ4ªcywÊur¨êl^Žx,±&ó+Oj*ùKK˜/BÉ-PÇ?¿—w™¶Qð [ :¹ÂÈkÞØËKQÞƒ¡LÄ uâ^^ âÇÖ¦p}qÕ³#öŽM. +s‰ß/KGÇÀRáÿÑ¡ð{1¾ðq×BŒeF[t’ðÂM˜a¤Æ"Á‹µ…5|P5àñí#?ª"£Ø#`‚ÊÆŒ²>݃¨kº¦kbË‹$‘Y†Ð:G  t3ǨÒÏ­&Ó£m…+JþI³´qqÏ6Ä*¯µKKEs-ýo–¦²bSÃe‹Ö5ë¾Iü]j3ô9,– á 3k,6^ß'QçyÛЀà*VÜC?¥–¸GLojŒ½ÕÙ€E ‰£T Ë<-¶#xÊJðÂM«¿Åȹì²äS˜öÃ+2=>TÐFº<{]ž*®lܦʖææ*ƒÇÿÍI +endstream +endobj +74 0 obj +<< +/BaseFont /EFSOVL+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 162 0 R +/LastChar 122 +/Subtype /TrueType +/ToUnicode 163 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 302 282 0 0 246 320 218 0 +452 348 462 0 452 0 462 462 452 442 0 0 0 0 0 0 +0 696 574 650 726 536 500 0 744 348 0 696 0 884 744 726 +556 0 660 528 602 688 0 904 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 574 312 800 556 490 +528 0 378 396 340 546 508 762 462 518 442] +>> +endobj +75 0 obj +<< +/BaseFont /KTUYBZ+Wingdings-Regular +/DescendantFonts 164 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 165 0 R +/Type /Font +>> +endobj +76 0 obj +<< +/Filter /FlateDecode +/Length 6506 +>> +stream +H‰¬WÙnÛH}×WÔ£ +iÖJtâžFf:îXÀ<$ƒ†"˲ÛrKr2ùû¹KYE-¦gA,J¬å.çž{îÙO›ÝÍÕ|±/_ž½g¿Î¬wâÕ«×çoÄäõlR‰ªÔÆÁ_kج&g¿\TbµœÍÔŸ•Pbv5ñe à_]:¡”)Mã¡]震w“©•³/“Ÿg“ŸßÁ©Á¡+ø?ûõìow•8_Oþ˜œ]<Ìïц_ç÷+1]Þ¿¼–gïÞ¼=Ê׉=p½¢ëßèx}Kw·BéªT•S¢ÖmYU^ãÕ/«ª2¯’ÛOÞÔ$7uÇF‡Ç6vô±mP†…΂EUVFÌec¼˜}_JÍ1…'ªñeåMfÂÇ鹄Ã]ÒâÇ7 /=~-|©ÄôVj-¦kéK+¦">ÈBãg\µUø9—Ê–­˜îd7ÂÃTtÜZÖøõ^6%Wle¢ðÝö4¸£€œÃÏW`§ü\ˆ-º›Ã +giƒë.e…?‡_7¹Ì ulèI3Ã¥÷²Åå+ñ MI;ZÜ°†…e6ªŠkpÛ%š_i»ãå<߶âÓTj_‚Ap8þ/†Ïß1ʸBšú$FnÄJÉ¡ƒ[Þ¦(zKù¯ÙßGA¦®2È 4À‰ÊWm†‹i!Gâ²VÉ%ˆA¨aoN€"Ñt ¼•…%W Ky»‡„)ÊÿÂPaŒÄ•Df \]|s~þ–1-ÇG§„0›)®¢*o4¯Ør%tÕ–¢30\¼‘ªÆ‹×’î¿C§ R“Kð@Ž(…fï×à Ã÷c…‰ß‰ï°R1ä!#†áIØ¿ý#@ \^½†Ž}˜†ý¿!Júîpóï9‹¡|!Îñ -Ãëþ1>Ã&‡šNg M¥s*FƒÞ@ï}~~ó +ÂVqûȾædkcXᶋm¿Æ$!9i&'FÒJt+*Þ¢“ùTÎü(dÑr´é×î,fô¾U _"ã@ÎÊ!_Ê,¥p &)¢H"0M8ã|»ýDo å2.¶’÷–bÆw_ßÃ'ž&î€4˜Õ ‘ì ]J¦åËàê&ÙÈÌWX#Wh>Å(ºÁ†¹¼¤^°Ãã µ,%†‚fÙACu7¨.jYé#`ò ÔqG=§Ì!§-:2'V!ºôÂŒí»ÜÕ#t :Áá…²“|†ð"¾P†1V£Mw´ ‡|áø¶àÅ­øzð#«ÊÒÒYâúdˆa\HøÔœœÄDφž›~ˆJà0­XÊÞÆèk´‚õ­cE—u ïƒå¡=Ûñp•ezH`JŸ£‘äOPvå|£gôù:©RúHkcÒÞ•Xiwn!Üóàú–)±ãŒ¾VU%„Æ)éÐEyã6ÉD`´!î%üp  ·¸q} £öí‚¢¦ûf+TËö”P$9_ìSìx˜´˜Xu&Ö$²û) +ßô’Jq±Á.Ú,kQ}':=jƒ9¥ù¤×ûº„›Ýƒz$©¿x u-rh1s4¼V[4í1ª:GÒ'‚88RÐ>‰yqî(Ë’böoøN|@dø@uµX4O$RbihÅ‹U:4M5ä¦6|8ˆm{Ž½šê¦ˆ”Ì^ˆÛÍ‚ŒfwkLÌgɃ BH1^‚¾32jt`…‰kiŸöÛâò ô®mÐj å%AB'Û6xŽ!Òôf;~¨mTÖÿa»qð×Z#6«ÉÙýg•Ž¹¬–bÕ +…¢½rJx”&¡Ò^VUe^TN.à™Æ5Ãc;úØ|Œ£ÌŠ¯“³Ù,ø‚0Þ¿ŽW¢„ïP˜ðqú–ΕG‰["¹ôZ,)?ÌP~`Ìž^DŒkêDR'ó|âX‡Õò˜2ôÃÞtú%R +‰UÇL ©£õ“kˆbÄ3<1›È™  êTþpöóåXAIÔ)Z¹ ·±°q£ÑmÅšm³ fw%›‡‡õÉ©²S˜¸Ä…T&8irðPˆ!jpí3z=²¡ïµqWëN0?¯7§ÚøàØg´ñvl§u¢§6|œ^`3¢"S,ıõ|=Ø®]hX£KLI…Y8Î=çy°µ§¶“¤‘sØ|@­n!á•F˜üSܧ®ÿc‚Zá»°âHz[/ÌàëF´4*7ˆ id +ÚNþ‘7ÔäÒÿë}© $šF°Z#WiÈŽi†G‹ÑG›Á s*ÔÀ-àe€•Ÿ°eŽš‹Öl›”g zf$÷d°;F a§§/Ĺdy. 1ÛÑwžx:ED¬>ëÌOµêlàE«cߎLèŽöí¤c†’¢‚EV%ãÙÝ.IK6xý·ØZn¨gÇ™s|7kí ¶ (lÚ½®æœáº®¦˜ž’»æµGÖè÷£ïÓ›T¶ˆèLŒ…â3û¾c A¡ÝIj!k‘^M±â9p»úu$€Z¢Îº¬’¾~|R’‰= ÞÐÄè“öõPš>_9€Q;êB±ßÚL+¢!m.- <¥xK½]‰àÃÔbJc‹Ë=qAdŒ²ªÛËeW'}Mú¾&e5вyeŽ-½'êÂåuá±.®B…¬ƒbKvƒFº„)‰ý¾‡_SÍ‹Òê lƒ6Ò}xºk“2aä­¸Wß϶Œ|H×Õx œËÑ œÏP2-F7 L˜äª`ÀÖOo]Mt50˜Tu³ÄQKÇ" +×°mmCøFãö‰ÐyÃCÊæ@wâ}{ÓQTøŒ°CטŸŸ¦Ò9Þ5¯¡Ï•4ä`)]EUO—lmÊ©¶üzž \iîBÏDÇeûÉ€Öu(ê«xÔñ– á²±²\^õT(ë@¯ÑÛ*`4"›œº`˜<  ×~„;Ͷ C‡Áᦳ¾þ†¹¨)F4rÅÅ܆#ié®Ojl'únD5 ~MyÓc,o2Ù÷õŸ£'Cj±˜2ñ•Ü¢.IPd0Ô{Ý—^J%À)­‡¼z=<ê¨æ†³•M1 ð‹Øñ®s¶m2LD¶¥¹²—„†4Àg á?¬WÉrǽë+ꨎà€]KoG‡rø`L(|Q„b $lÆ"á¯wnU•UÝ=èaèÂ!f©ÎÊ|ù–©¶>k*ÖZå`/>äg‹OûoC†ú]±‚Øq§li̸qr‡öø*m +5*ZŸa³ïˆè‰;*ð°dŒÎÌOÈ$b9<þäžéÜñË-òßPÁÙó3òʈ^aÞIè²íf^›{½TYØDx½ž^û•Šª»ŽøÎŽ AÉpdR gÞVÒÆ\òL’¢ë¬¹ë¸K( …’§‡ +ÕoF“kÛ +Mv#=Œ5 Â8(# ¨§+åι’jLÞ‹TyºÒÎ ûˆHœÙ7™ÏéŒHbÇk|ß0a/]¡õ¥R²V­Û䙉Y 9ðç4´n±ÝRÿ7¢*—¥‘î黩†ªšhíHQ[x„ð&(|Ž”É=2¥r«ÃHAãú/©BHE ¶£ÉñM€Úv‡F?š¾ÉµN='»0xeÙµx]bó#W,Ï FSËÒÿˆvcó彪ðý¹ý ª3ç×´UPýù¥‘ÿpNå8¸ÈËØ& v ôt…(ħ÷D¦ª5?š‰yÚ?\ ´öŒ„/ÑJC¤ìNšX(Š>—š[.×Ú©Ò–T,¬g\àbÿ†u‘5Ϻ+&©’’}3°Vx¦CçÞ^,?‹q–Ç’á´A–Úóá½vzìElKÍ “yŠž•I@ž*{db9%{ÝMDCc /³ÚÕši~A†ÓÆw©ÅÄÞx}ÙuE± ÒamÏÉœo†BWZÌ©¶˜iö-À7ÍžlP´nû‡"§FÏAõŸ™s¦²¤È÷‚©}ôÉvÀÉc‰‚ŽlÖCeî A|Žþ¦×,g»ÚtdÃ2ñÑÑ;F!‹Ïvdµ·TëÁ,x¦™¯œMìHGYRº£f ¸¿í8è+KàÆ ø\Ç@È®xħ?qÆ©6k.5·y-rèñ÷Ž–!ÙŒ{ù^Þ³¸¢åè.ý°âšlñ'âkgyD h¥{ýA`ÿæõΧ‘dÖØóÖÃÿ6E¤¤ž÷S½¢‰ÿêœkÆŽ|„—–"%£½ (ÃƶqYZyƒÝÿ HJÆ°k8`ah¸ãMðÞ§x·D!?ÁJ-ò«AC–W>÷]âØ#«Rù­ç†éd¿îÚØCF›{@¨Ú’jWšƒb_Zªæ¢ z:®Õþ1/vB©Ä… ºŠ +0ÑqsÑXœkäLjp2¿–K¦G1Ä»EÕŸ`];®›Ä ™\‚Ìß‘ÁýB|ŠË/?3л…œ·´>GU%ï ø «p9±hàåS©­{ñ9¢äŽæ}…§v â\ŽWÃúlêÉðy6^îÕP—èrͳںxé«qÔ¦y]߉é$ë<Õ)´¯p!6߇ l'\Ê©è©´e7l®œ^fßk¬½ì)³ËÁÔ ;×eÐ }Íj¾1¨¬ZJ–rªycŸQPL6ÀN™ã…˜µ‘¦–p4 ¨œÔ[’¡j,ccd¡ç¹§ã+(ßÄ+scf\ßЀζ³…mk7âÖ(ÃMÊ–þ.K[ò°ÀiÇÂÜ?iß.âùòûú/ñÀ›‘4&ípZ¼€Y‚¼ŠœT;Ã&¬w¸Ë ‚Ž¼K²Pç"±V3àÆÔ¥ s›LÁ°¢pÄÊd'Ž‰ÍMZ‡0è;Ï‹z™ïùd>NЋR;Ó° Në P³¥éV}/v#ùÞ£Œ"wÙ‰{[æ”î/á”CC®‰òEW:SErF~L–™€™æEŠ!?ŠÙR×ë©W6­ƒ6­ZB„U·`žeî’ÔÕÃÀ&×úA¾QyÅï›Ö¯+0ºn‹oi­²ºÙhöü2–Y¨g~ ÜŒ D@¾ +¶õÎ-p[nø´xS%õ4,2Ž³xUHÔ(lÞq@óø œœð»¢°5 ø +¢\Œ‹nª‚ÊøÖ0IJŽ FÃ7æìp¢ ùJZàK½uC + 4ôqã Ì¬R¦5‰½}3rXÏwo ô°%Ãcá;÷±IJºÞTŸ6b0Ù^KJù?ú Wt/¢9MzN›Ê}‚–ýëPül×ýõ;ÿ}ÛùÝÊ üP ÊM@wýä¼²—¹;õn0‰Ì5k;Ãñ óÐVE¶(¨0…N¦àÖi`x„B¯s¥1mò;§ë.Ž?ƒo°.}!ªvZk=¾ìÞPð>&QæF¹Š|+ï×&¿Ñ- ù$µ +I­ÂL­DÞíéjÙ þ>©çCÑsVñq*™s6Ÿ‰•‘r?âŠ;[…¿9«f>Šk@ƒ;”4<"¦9ï<§MZˆDW™ôûù Ž +dvgåa*lóOmñøyÚaŠÃ¶’×´B^mï׆ OÌÖcc×ôeǸEŸ2ó½Î6|¯³Õ½=t„ì,t"(œÅ‰ƒvuþ œ + qMó€g¡Î+8.¶¢¡Ù7-“”ø¦<ÎFF¹[í5{ü%(‰ÏxÈÜ•—;ž:œHÇ>§‡ ?Ó#KúÃð9­Çv欗ÛÛ:%Ï{‰±OÍ„ÿThóå’ïøãÏùÂ3ÀfwÞÎ}ésîO²ÑÜ—Wå² +S;‡Þ©út”R“6lî²›QÖ™‡P³ìY-x®1IÖÝ:a"Áz‘W•QŒ›ÿInÿ©Î°IXŒHï·hd°ƒÔ†þ„u{ÂW$(<ôIã­¡R<¡àõ$úR9½]![ N1+gáã;ññ½Ñ ° lÈfìddQ|×rXí2+b‘ys¯¨ªÛ†4õŽNX$ƒÏæv›v¾µÁA{³½¯¡ìk »Ü×nR"–·:Š…ÚŸî R +Z‚-i§™ 6ÅgˆËM Ó Ì}ƒ¨ÔPì#9lm(Ñ›àÛ42š([ÉS…B¯Ao™O7Êv&1>'ß>©®ôëvÍnØÐ)­ûR„¸y*¥—öÄŠ©+y²;üšêC¢×˜½ˆ=žpTýÒ~Ä„SˆAü²¤XË)¡ådCÆèBfŸÌÊ0¿Ëi|eìµÞlîo?ÓºyàÕ½Ýx]iûÛÕ˜kÁ_蘛ÃȨ¨ªZŽyWø}ÅÈ Ê5›}p¾izø-bN +ÎqÊ*%3[ʼAŽí U–™¯Ô WJ¦ö?º9±Û¡0n‚šÕ P˜J(ô}y<¬õ™»þÓ+™W,•}5‹È¡Øéí¸éªu”írg(7^óÀ ]á÷+]R:ñJ­x° Eµ²ñJËÚçY÷è"§$Ωð)W©å¹ƒa†'™s¼V•„{=Púd||ªµ²=1àôÚö|m<½Šë”õ¾k0|]iïàèâ/4Ê_³áúSE§Vùÿí‚àÛJÖ®A Üy¶D7)1Ú Ÿ˜ƒó¤[Õ²DÁÚhÔ„û×YQXb=“”ªíÕ2ÄûMZô³“˜U¿A¿×¢D®7E‰¹$ ‹ãû€Ëûµá7óõÛñaK|À¹ËøGåìæ×ã±¾šÄ´Ïˆ‡Ø¸ä"èŠÀÞsâ¥r¯„“¿éÉEÍÂß.ã“{éGàs€xH+Ç–*IUÐH“GöpÇŒ"®í$W +Níº3±R­×¬óbF•}ÁKeXdÚË?òêù¹×Œiì¤Çr=e;M}Qü¿…¦_>&4•!#Xÿ†àÍóÍïÿñ±57‡ÞŸÛßœ"ºÝ„0ÆxCÁI~ÛXy¡#ïžéÏL„iÉ~~C@Â[À×ÃQšƒ|€IÖÒ‘˜dù”=%Ü‘c&aïj^‰ci¶TÃᄶëÜ õ´Ï. ²=µŽ÷׃AHýýÒxÖÆ%¬O(LæGȶìñ}¢Ê6j-ÊßÚ7½Ø6šÀUþ±ÜËãw)v=‘âቴ™Söx·ì//n¡GŸ41_r+¡<ò Žù¹xü£$ƒkùûÇËÿžž‘Sy›èåÀ…ã¡´ØAÙŽÔúðŽ5ñ„±„Ò!ÂHîÃ|”Ò<.¤—ÈïÄ„<ˆÏÁÓ«áÊ-¡ïñÅè.—hcd: :C„Õ+h7nà¡Æ¥"±|Àß9ñöA*P'?rùk–øå9#°¯”’eg!QvÌLÀ\¨ >–º½¯]w[À}©½vÜ–ñÅLwÙ ‚O+`ß\]¿6õTUþ¸…,«J³zâÞ>5¯‚»àăô‘úy‘¾ÅåBãÝÄö§À8¶C¢ôd>'Knñ¼Ä˜™Ž +z›»½1C=¶>έ_“;Œj-”’¹³€ý^PjEî,mþÍ-n¯ç€×#Y=¡¡&ï„~¡¸xÒ®ç6Ó~~'?Dv Q ‘|b%ÑÙ‘QŽ•½à1®øœêx”Ç>ìïäà{É5©æÿ fs"0sAÚ6à)†ô–r5¡8]pW +æ<âcÁ‚`ò„¾©9J/ÀîA.{L@Å/¸ˆ-‚çr3tE–v:Zy–2BKææЊR>@jH‰¶5W@Ëp]#púu!ýÏ"M ¨{¡*Ð : *`¼‚[Ýf ^"J(·åX +endstream +endobj +77 0 obj +<< +/BaseFont /LNATZX+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 166 0 R +/LastChar 146 +/Subtype /Type1 +/ToUnicode 167 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 260 0 260 0 +0 555 555 555 555 555 0 0 0 0 260 0 0 0 0 0 +0 656 0 0 0 0 0 0 0 285 0 0 0 846 690 0 +0 0 0 540 0 0 0 0 0 0 0 0 0 0 0 0 +0 528 598 451 596 528 341 585 0 274 0 542 275 860 586 577 +598 0 380 434 367 583 530 759 519 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 260] +>> +endobj +78 0 obj +<< +/Filter /FlateDecode +/Length 5208 +>> +stream +H‰´Wێܸ}Ÿ¯àc HkDR¤$`±Àzg³ðÂÞ ñìS=ž›=—væâÙùûT‹WIÝj#ÁbÝÓj‘,V:çÔñOOŸ/7ŸžÄ?ÿM¿Û¼nŸŸÄ?¾9ùY½9=jDS+mà߶Õâáêèø׸z<:>•ÿn„§—G¶îàø¯«h‡®îmk…2µ1^¸;Z™êôËÑ/§G¿¼‡]ÿ›^Áÿ§ïŽÿz׈“íÑߎ?|ÝÜc ï6÷Wbuq¿þõMuüþç·'Bé!Gà±7ˆtœrMÝH#N_„”î-)zS7zhE§úz‹ÑüsõT u+V[ñT­e_[±º®l=À¹âkÕà÷‹JÕJ¬6•4u/VŸª¶Öø3< ¥W¸P¬.ªµ¥÷ï*)ݵ©;±º¯”ÄŸ*Ùà÷Z¼­´Æ7žÄgXL§<ÒŸð+¬†¯_á8t‹[ÁÃøMÑŠj=¸h0ZÛ÷¸ÞÄàM\†rÆÑ?T–bú‹¸®$½­”Æ‹¼Tš£¥Ûï]¸5­3¸.É\ËbÊâOâ¥R þ¿@Jà¦xXt‹aô>•Ýd*Õ(•µL“Yýëô·—]Ðh› YéÛ¡¯;¨¬ö«uŠÄ[Ëdë5@«A–lë. +!…AÏ%”Xq—”»jݺ¬(àó²ùi1ù ¥pá7È•ê3ä[¬Î+Ù9$Â>í ^2…ˆçEXÒñPw ++B Ê §ÝˆK|b’_ü÷V÷œã‡¢AùaÇgø½Å“øTŒoÜ`îy{EïèìÌ¢JPHQPr\cl]ŸÞó)[ÆÜåT4}Œæ÷kñSÓ¥þÁÏG5|v‘ 8ºG¬%v3\›f9zUŠÞZª¦!Ö@4Ã`ܯP”ÇŒQC73³®'y“·3%¾lc½g˜%Yʶ•É¢—ðýí+ÆÔ>àñÇ€¡&3Üyq¢Õœ€®‡¬ÀrÚÞžáð¥¦wµýy¦¡ä +²-š‘UZ;÷ ]¢ü¨çS'©å¯WWøè²ÓO‚ÿ˜„™û»¥ 8Eq“0´«"upvQ¬ÄõùùIиWØ.Ùtu'­Ò}×[Â&‡ÀJDàxƒ­çéRzÊ\¾`IuÒÍl±¢›ÿ_K-±ëÍŸÔ6Ç^ä"å¦Üt‚™C¨Ñ?ø©ö,Lõì¥âÐÊl¬¹ØÆïÀÝÎÁ—ÎX ƒ!‡AZüvèëÆ*+þj]~Y´µirÉz#3öRiã¦8߸ŽãnÜ’êݬoÿîñVM·nul¨Ø Á×­Åñ˽Xœù¥[Xjåæ‡xÏrñ5gSætûnøó6Èy`>:ð5œž\†HÖ^I' À„e€°:üýª²™1~¨(Uçض&9Èm¥v¯ ó_ŠO&QS(“Móò½ÂF8›qýFÇaÇè8Ò̵뮩)§±s¨9°rªIÞL漋Qgn +Ë”–àv.rÝ6̆wk£ ñµ\+ò‹¯Õ@ЪEÂâÎq?WŽ{0'®ÑK§¦.?nÄKwtÀ[¹[äFØb iB¬H=…âq¿OzÑìâð}(Áö=S®rê´‚ªðŽs„Á³›âº)ŠAƒa&’‰^¡bkÉ‹{žœ’ÅkAãê¤soŽ-çi#*Ž^™ÃÏ$ +T=‹_ˆ'qs1ÿ&Êc {W4ÏT ë×jÀ­(gTÆn‡!ĉ‚“•’ë„Œ,®¾ž×PêÖi¥³Ò¯Äb m ߨÚd™í"#+ÂÅ®ö 3¯³Š{+ÿ¡r"aEñÃIîÝ€ö³ŽM›ÇAàŽÎh3•àÄ&#¬uÑEô v‚2dw{‹uÂñFµ?tRõ4ví›GpìÂàuçé=—Å’Þ9—/ÒÂ÷ÆñÜ5i7@¥™Ge@MÛ¢±ëæ$±œ¡”ï<®-Ï}\vn³³òj–Èk¾=ýâÒ÷ê8L¥Þ›F5žI=Z<Ëýà[´éÆ9— ¬z‡Õâ<Û²EÕÌ ešé ÕáI—bƒXµî‰3S¥-aa–™VÀ‰}ºp’Ö#õ.Ǣͻ +MœLÝ¢"xæ R&}çô ›{eÙÌOS9ïø³xŠ ì2îì{†An’L.â*í6ï6P!(ôg¼J益ˆGêÌ[Œð w’PÓ­Ÿø˜ŒCª[0”¥h:`(ës³Üõ3Ì€V*`u jitÒx÷8fŠ>åS+’`ÄDG+m*ÖœÞ;nè ‹P¨Q1>`í©Ñ›lþOóßHµx¿?pøþ;X2j˜W‡~Çúwœ‰13æ,[ŽìPó†‰NµÁ³‚]Ós?^F*`v„]èÌC¦«¡ 7 “iÄ Ó ˆIú$^غ¾X!ž­ç±ÀQ¬w*fòhÀv¶•n1'côñÏ,½ Uú˜µ6"¼æ] `MÇfŒðYÓ¾`+IÛ]QÔÈå ‘‹ù†Û•˜1b£·qC\˜!Éÿq +Õ¤õç1b1nlSÊ¢ÆMÛw‰s½ ¤ÞóÔêr1¥)…0ú1Õý~;ÅEǚ̲º nöN‰# Xž7„¦4„³R–ÒY)Þ%)øóÂuºü:f^ÒuzLJ-Nñ¬DÅvCÙ%'Ô©Ä{à4W™ƒ¸ÊÊý–·í4Z^ë-/[°]zçñ@Øs8³itÕ„Y]µÍtÑS ãN+'·ÙŒq«>ŠK”ÖºOmÀï&\yüHÌì²ÂÊæõÙ¦A(gÙ¢ølñ|›? C#k(“k`ÚC|·U¹“13®»5CâºÇ®à`±ðVp„X{ ^sM‰Ûæ>Û¹ì­\¥ +—‹ûljŠ‰œ!+ØÀÄé‰|j1Š±Ñsµ:wµ6qµþÜï°ˆDm»­ár<è¦9ÃrÓlÛ jrÎ4·m›˜æ}»WoS{ÂïFØjcá»L‡7ô.xÂ6´¨»w=^“g¹AÚÔ¯æó#¾ Jë + w õè]o˜D=Üé ‹6Uë¯UËjÍ +)¿†•kO)xšÊOÃUûÎKE٩٨^ئtT§ãÏ5 +Ë!kæ!KvZ+j%CÖ&[O `4eÖرî•üеeÑ-}ëŠ'fI,^>Ç“)µàãIªH‰ã·ÊŒÓL¡STŠLQuÔBDoDqajXöâ­â?¸Ô€¥:-ëFl´½«÷k<¿E’B„¶ŽŽ¦uÝ:L9ÓmPºßÒ{P:µƒ_ˆ¥Ñ•† "|Æ: béjJ+喝ðºÇì7øWZWE±#½ìGù‘Ýò Õfª¸Bm?@¤‹zÓ¶FvÏ^ü¢ÿ‚©‹wM(m$xŽj„ÂÙ¡S¦†&Ž`e¡Z?Õum~¾¸+ÛÛŠ½ýª¡éªC[¼j—Þ;¬><{qqÁ7A´ÃBœ”Ûæâ@tÀ~,‚¹êœb­„Åt*u“i;׎ó‚1jŒ{Û Ÿ›jœÎ«õ®êëÃè2Ö¹³AK&#èʃÏ}ÞžÝU’CozZ)«2Õu¥[©Ê|¼U+JÂäKt ¸—±ÉíÊO¶p{2‡Z¦Üල¹L)?ÈDùxô©´›n7p;ÜäªèCÂTÓói1˜ü(JÞQòg€HÃÍ +S¬Ö0;KmzÁ$ÉÔF%~À¤ç̸ó†MK Ø Îç:þž:FLMÂôý <ÏÀ.$¦t•‘ˆ›ë–?~pJ„<5Ùº˜VÌk9<†‰¾Ô^_¦0¥Ä kËžƒ\Coeà[Ît_opúŽÓ¼ñhF+ÞDRïF襶 L§ú ó“XØóúdár^š^we¯A¾ç•;¿9ûsŠ8OAjN5ž9)–¤ÉSR‹EjÙ*dvòóÔÙï@ÔÎ’ÊtCÝ 4®èˆ·sÒÖºÐe? ORæÓ¶@G$+Gsc¹*˜i-ŸÌ“¢`Æ0wÚyœ´àéNÊô8 $hÔ’*¦;Rë]Õ%FzEw¡4؉o1¿H¬<ÁÎ[磟Šê§üjþ°´ÈUÕ9ÙÁ‹wG IMâ,˜žæ›%ÜÉë÷¾f ý?û·y”×.G‚Œ ¿} ´‰"Ôø<©¸¿sàòvÆÕƒtço†i +£TrxÕä‹{ªyȪœl!{ÄŽg—!9› cð‚G~'Ù&øÊŒ‹›{a¤¬j¤=7Gt¬4¦ä¤ ku’”Ù'¤,]ø)+Š(kR&vþ_Êþ+RV> ýLÉ‚Ñ´5tÆh“`äLU¥Ð”Ž6g_ëZØ×2qŒ¼€h¡“§¦þ&¦Pž^Œ6¸Füv H'ž}©Ò«a÷såû–—¹G/âôÚ7Î/‚Ž5=ÿªÜ;w×q3f±0ÅölÂnxªoöŒÅDÞ&Õ&†ë=ÂYÉ:D ´ø„C4ŠY±ç칦Sƒô¸øºuœäV¦ÎÿÖ ÒAÝU<8d½®ªvÉÿ#ÀOp +endstream +endobj +79 0 obj +[168 0 R] +endobj +80 0 obj +<< +/Filter /FlateDecode +/Length 6264 +>> +stream +H‰ÄWisÇýÎ_11UÂrçØÙÝ”ËU–h+JÉŽm!ŸÂ” xyÅçp´ÙOŽR&Îeƒ»®9¸•Ôªhq ˇÿ‚xçQ¬Xv%–âLBÖ p# E]aÔ×HƒóÐcZ0ÛÏ#™€ÍϤnñ*¿‘ÍPÉáucðòÁž3ŽèTqX~­¸Ã Ý eÿ³8»ÏJÉ­þ„7· Š¿¯¦ßá’u~”Ã(=9n8"‘ª NxçtÙ9 e_áÄÊø{Û]17xh!œFˆ®åó¹v êQ¨ÒÛ(Ô˜¢ÊêD‘˹ϣ¶ÍV–ö–ëŽÏ÷‹¬ÔPÊ\G=XWª.w‚ÍçŠÊXCšž-tÄé‡U²›Dµ~%Ë >Âë8|5-’'æ&Š^;ˆ”ŠïC©óµâ6>2ô M¨¬óèªo;4ºéå¿#”é\Õ¹¥(”1Û¨êÚ¢£j(4êˆÓ$}T@˶›J®ÄÉæm¸41øÿ‘cArWÜ‚ŸH±®£"‚£p윶fo ëqÿ“4ÜÝ…–Eñ–ãÈÁ£ùÄ3/Û!]ˆ”uSwH7¹uÞ¹µíéoY‰Å¹ð_ÆÙ]A­Ev?B–tAÝ|r8U7:=?\lã‰8LõNŒN*¸/Ø|Èh’Þß ™ÑÑ<Öˆ©EyØfï<Ò‘ ûõ¯ó/XžøƒTDÄBüZ—½8b@¡Eäpl=’v‹ ÞòÝÙ`“ÑV¸$ÙÐÜ›ä½áwÂ*±ÆDRÇJ™N“ õh,–\nœÿp;™6nP9[*t-À˜³e6Ÿ\u¯ ÃÌLüÒgf¬«² €1 FÉzÄ ‹5×ÆSE·ÁnåP¦_6xMÓ·ÜhRW¦wµ”Ã`ú»–ŸîûÕ¾$}w]ÅÅ’Ý\ÆáÛ4Äyƒ+ƒ!ò‡Í†ÊÎ×>ÕZÉJy7hù$ç0¦ì]·áý–ûg¤`•ÌÃå¦È××Raû+ü¶óÿ‚+àÍ9Ú’¶† ‘"~/Û¬úSÀÞ¸ú²‹OæYÛµ9Û‡:]gC݉NP>àF¿£dÑ,Õ¢ªÑCÛ®!Ÿ[Žõ+>÷`eVw´ »Àê&Èj6÷Ôûæžv)¸ åo-–þÊ4{áé"­“_HÊœÅ|s¹krøð9pÌôÖÞô†9Nμ“9 ÊíŽ#嘖&²µ$…;óóÕ-WÞç@¬ ½ÖÊ£*ØC5ñò8Ç™$!=sÛ&V¾W~¹ +ì­ÿ±Ê?H*y/M|Ù¤Z îYÉÿòhëÆJZrÿ/H«ÊÒz¼Ph¶ëŠû]hw¡Ûq¾uÊ74Õ¢l\Íù¶Þ“pJ™–sr^…tT© +›4¸7~ÂXI’xçc0, sZ»ZrlR“›0^0˜Ë[¤4T ΄¸ÕÓ]JÏo6!¼Ç¼áÊ)½O¢ë@’9S~_î–ÿ\Jüëy:ºä¢d3ÿ¬,WM¡õ pªÚÖµ–|Có­úoŽY›!Üè(——BTˆhåâî-~vL3ûìÐœýÊát&Ng˜G üÙ§ú­t5~žJྦ4út:Fþª$½ä +À.ÓþÙaˆæéYI¦x8ÄþàAœêâ&TÔ8¬Ö¸G¦qY•d—-ÐUjÆŒžµ[d¸re¡]küt% ¡PVÒÀ +rîý±ˆÃ ã+{Šûh¯¼p&a4,u]oÐÁÒ"?/DòxþV y¤w’8·æîKÜù:˜ò4ïéÜn9Óˆ#’##zž½g²º¯#kßHCÍõñÙÞÕET¤žÍPÁþåÙæé’.öà红gëă'n–ǤÞÔ?µåÁuؾõИúÅ´²Þf5¿È†nÓns†˜éœjsN…ál„L¥É&ŠÆþ¥²f(¢Â›>=~—S$c±÷ƒ'Sô¢›äˆÃã™,Ù}"mþ‘š¥ëŒG±YÖc&*\jëA;6ìw_GÙ£U +ØŒnÂÚÏIŠ|é'izÌá剩5å{xÔ7ÉfQÙŸ¥k&:;Tö¥žN3èéå˜mÚÞíÄ;D¦és—ƒ´u±ú|íaîÆ«Ïêõæ-w¦`!ÀGõú‰®‡æÄ  2ÂÖº!_Š Ln&x;œ¦HŒcÙ µ²e4J zƒ¸´¹&ç–h¨º¯Ã&«À8úý“·¸Kñ +¹7McNÆe¿´û„™jæt&+ŠFIKg¶ø*ÄcÑOÕøwE"y*‡Naè7ðDzò, ]e ÝPÓFRS^`¾«¾]½$Ý1Bv;z{ÙThR7u‡à&¦mmzŒ+wâøe¼>]™˜_±z¬5«Û£4œQ”é¤Óˆ‹ãXÂçÄ)Ì—¥.ù*1Ç/_kÐaþŸžJiha14Û·I„œ+,È&ÆÄßT \Ôe aoÄOOÆ/Ÿd2°ZÐ]ÛXdÅínÇA€â.*eO¼|_ök´Ïç ëðaC— +µ×ø6äò>²ß³pçq.l4·ª'vzÄÕÛgl€ÞMvdÖ¼ÅJ„ ü)¯þ†<T9 _•«½’µá’ õyhOCÄ1"jw7a©î"2òu6Ûlœ5:³q€š#@“ ~™1Ý“^ò~g™}TTÑ'ºLõÅ;Дo©¦ÛÑ«¬EI¨…¾ wœª ª¥S^ýW¸yî»(œ9’­;Ÿ|;ÖÔûYãÆëhkè8Š8±æ˲:k)´P =[¸Fƒo©©Á|1g–ûY£èìS­µl*”vc˜ëMnÉäni`*2øÓÚ/ cgo¼i=õ€ƒðäß~BH—ØŸ¿ëÿ_.ÍqãVþ+ܢʭ!Éò*§l§&YDš]6²lYš‘ÇŠäGôïƒûpñ`‹=™TVRu³AàâÜs¾‹Ëi1ŠãiŒÑ{å‘Y^ä­œTÜýêX+ul‰ctbÿ›ú˜êÓ«ÎÕ!31LW?þBÃå%'àU9nÊìty¶Òr{Êø… {?*íiP ®µH‚®íŠA<¾ú +_hë.$YO¦ua§¦0µäŠz$ùÇE¢Ó¸4©i¿XìXÆVO_-6L†‹T טo;M2w°ïE„Á¿3JtVê-œá{­Lùáx98\+4°ÄòT³ÔF³ÍÜlræéÌSô#Çô†#lx%Š“uM½QŠŒ_}“’*L FH¤8Û ?…÷ºxÛuë±2p³7µœ.ùÝÿ~?A!z{ÊêP¦aìÇ1ëˆðO­l‚+ÁnÂBñâ‹õõ•¾¶ w:Ý0Ùç»BÂÆhÄû–üÕ{—¶Š®=.nC…·ºS3kªv¯É§P-CêŸ`ôT Cƒ&”Rž{<õþ`U týw09 RL:N^ª1o¤™Öv0âß‹PO\ñbò7ùù2î$H˜èYp®áuvî*¾ðþ°Öåðg„òÆ–ÒëãÏ£ sj¡`~=fFL^JPöo`3HJ•ß…§-Ù +ë…’ø,ì`¿:l©?oµ»›WšÓjaWéúС?a,öOQÞkÑfû„E?´¡üL‘aKD *èEZšÂø^!z¼ÎÜ”eDÁofQ:ê²ÿÃ’\Z¿W¤­wÞ?ªH?‚¶2¹ ?ÓÇ9Êi#¹gøø^FzÁVJ¥¾&çÿ +NMUÚ­Q·GS(±Ó“/ônìâ—}KO¥ü7ǪÐ(‚œß‡Š“¥Óì#Â"{BÏÄ§áºbfê«]®ŠúQÆX¡M^l!zÙ£NéÑ)…’M‘\Pi)-Û"ª5øžÃ4¿åÞ=ƒÝá¡Eè­ |l–ô²FW nò¸Tïd 'R^àɯx *ÅRÜ—Bÿ‹ù¾CRû…êË1Ìn’5L@IMMq'âŠ\<¥Å¢;r㎄¾¶…šƒÐú·´ÎCx õŽi]ØÔ1h„^ó¬‡ÅtVwlò±0çÍŽ ¨"b*_¾ÁJNL‘o•µ$ÈK´×)œäRëÅJ|`~DW{1ȶ.“\£=¢¸ê¹%u¿bf¡˜ éq[2£¸-î6Ï +QéœÆn Û*V¢£%ž¿RÅøLRælj'ždyC#Ü•¥î3|цÒæ ‹øMÚˆ'± TýIYäÎ'"íN¦qCÅëýŽ»ñ¥mu§Tƒ.ÿe ª?… žà=ÔtíÎ;ðÛG~7O}¾HK +}!nyƒ8Îî–Ѳ'!…‚NHȵLÈÕoÔ¬£˜¶ýb-»³Ð†U04Ví©,‡•툡a cLæBqLõOAyäo)é¥7q.µÄ7Zú`fú½ä„…<4i²(,ðRü hi.`´Mä$“F[$Š ¾9³Æöò•KšlpÔ¼×x ¹¦ ùôMÖœ'Î¥u#Þ%¯ÌÈ×Ùt£ap¡¡%̽ªv㶪³ìf/æ’|3¼†Š•Û6uc½_:ËÌÖg÷ZN€”h/; Ñ௘–ý-`†{ÈðìH…iðrz¥´®)’ÊnsÙ)ž1'ÌÑûul'ä‚ìý1omqW1Çp™ºJ:=\\ y4rÑût»ÁÒGoã îóˆpC­tríÈyÃ7ÜîT<±luÜQ´ÉPõŒ=œü: iÿp;MÜü ³ÿ~T&Âm×<æ””×4Ö +Ñò`Ëœ¢ðuœ] +ðòEñ'­z.¯=¾ö ™ÂÐpžÄPq`c¦ ¡[|c»}~ÆÈ•MÖB,î8Š“·N÷8A‰¦f®VÉ]ÂT™A].¦EV’ÅÔùNcJžtyÄË蛄µŠàJýOðµIV*l0 ®„¡\ ñizžÇ°D$#ï}:Û3ÿ¥çÒ욉. š1œð|ÐGÉ¢ÿ«­CBéÉ—)h1—ï(ðq¸4UCD®ä¸=·9ø¨;ï¸Gø‹»XÈ´aÿà”zH²(¢ï ÍøàŽ¡.¦åÁñÆøN™îL5?Bñto4ôÙ”Wìùm€3ÏxfôÈ«˜&7‚Åb-yØ,« Éâ‘Ùçñ‚EÒ[¾Ç5²oŽ' Ï•Â .¹­<€ŽäŠGæ©cG­h%rŒ¯¡$^ cEß|!X³]kÙÌMˆ ¼°°«´ÝhqŒi:JXi”¼ïñ7ÿT!ã)´ÜmY0Ǧ#Õ%µÒ¬˜çÈßÜŸÏghî3¡9/¢×ÁYà©Î•Õ¢ô±‰¨k$E|Èï>YoS©·ÅÑÛ8 ÆåC+" 1Bœøøø@Nâdš˜ þ"#i Ì­!u‹Šâ©Lµç$ëNÜ·¶¿®0@âŸá\[eäZv"Sc ,h1+òMYM,™'@”Ô ŸÞ³ô?1 ~`Q¤AGH.8ç)*/ ^Éru1Ò³9‰Ð3ŸZ•Æ¶u´ SJ8ÝåiÊóÿ@½j˜@Xz׊Š B¯x‹¯ÃæþQt·‘öÁŠŠYƒ$5}výÉrxf?€ã‡Ào¶‰ÄÁM.0ƒ …+ŸÁfÃãN™9¹©7¼R]™x"Ž@¯XˆpôppÔyøÅùà¡A­x)Í7ã¶%JUklóBM 5yI¦“`L±ãN¢Ç¿*»ÊQ±mMò¾2oÐâ¡ñn·Ðfiq0ù ŦëQWÏ& ÚÍ)2~†ê‡þ>d?!÷pNRÁp9÷FŒ¾ +Ÿd0Äí}Z{®ò‰¹’@÷wC•ø=ãd乿aSì& ßiÏë+1út4naÏàiIùo€½Â'?qrŸ`>K{ÚÛJÉx¼ºgÆz0à vpîÒÊÎù¢¼¦¾nïø<Š^˜y® ʵäÄ(óŒá܇PÜÎë K”3ñý¹gùZo²ØF:ódâ¬Äk]~´óxØŠðÁ&Š•%Ç.æË-\ç\¡A„rãgW3ˆÓ;|Ž­J”¥hŸ®~“+å@ý‡P^Ú +qÒ›~_³,ŸökeK×nK*Ö ú.ï–‹»›êú¸f$‚§A\¡¯BoˆC`Wªãää+Q{â†Ö˜,è* ‚¶¨€E +JTæÍþ›¦³Äž¢ß;#d‹‡=·ˆIi&ÉfùŒÈ„¶ÚëÇB1_?ì(/þh·Tt 2R&À—ä,eââ—}K±tO|¡™¿EU·¨ÙâÍŸ…¯.‚2–þ Ÿç™È ôëyî9ÅÊLÂX‚Ÿ\³mõÄ$ú²ÏÔÊ•.w ð6ÜWØÅ»ÎÑL#C)OE 8~iÐx²M™ÔŽS€. ¢Ë1p™ûà2à²#*¤&ÄSV¨0½ÇA*EOº.Ðn1M;œ](éc÷•cmÈtž‡6;•ü>ÝâRPZ46˜ Ö‚é_ñC}³ÒlVó~³RÔ>gü¶|)¹Öã}kÈx’,.f[Øgr¤žA_SCÊA]Ê#O:Àñ|¡ò¢W¢à¦ÞðØëOI!GË+Î^hð? dô +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 5955 +>> +stream +H‰¬WÛn7}Ÿ¯àãð´šl’Ý b;Éfád³«ÉS¼$Y)ÑÅ;’VÑßo]xí˸/ knM²XuΩSGßì®.NÎÄë×GÿGNžïÄ›7oß¿«·ÛU-êJ7þÓˆýnuôýq-v÷«£­ú­Jl/V®jáø×VV˜¾­:gœÐ¶²ÖÁ7«u+·¿¯¾Ý®¾ývýlºƒÿÛGßÝÔâýÝ꟫£ãÏ'·Ç“ÛXŸßn¾+~|÷Ã{ÑضŒGà±` ŠÙú8êªÖZlŸ„Rü”­ê¦7¢Õ]Õ÷½Ãh~]ÿW6¶jÅúNªN¬¯¥6øéQn´ªz±¾•üú 7}Õˆõ‰Ü(U)±ÞÛ¾2bý,>jÝŠ+X¡áÎë[q']åh‰êðÍ%|†-Î¥®4,Ox¤£#¶‡ßáå“ÜX|à^B€pÂ+ñYÖø\X'às÷°//7Ñ-|¤íîÅ9îÐòW=¹‡Gt¼[ã{©Fÿ^65ö/8 ¶1Ùš EuÆÃÖp¸¡Ãð³Ê¾‡[Ãz8óBïbüW(ÞÿNê#¢0)œ\ÜáiþÐÎÇ]$HœÐθBâVŸ„ü÷öïLÓeÀÙ:šf +Ñqè¼üMƒŸŸäÒr.U™Ëf&—yŽÅ×€²‰™¾ÆÇ¡ki)åYÙ£çâDUÁ§KÀ`‡c:ZÒÊJZZ¡¤í°Rµø[¬Jª¶ø7‡w?‰o¤¦{|–=ž:‚å2Õ~ÃY»µî8µM–Zi(U¥4D†*?H¦ˆÏ/€F_hÊ4*꺲}o)ßçØ0™ôâ“T­¯2Ý2]Ú× ¯PbÂö9æ_–k¼üÏÆ€Fý˜F×”/…ß4¸ÓiÒ EÈ„ 4¦Bªšb{UðÇàžáÔ€‚¿ÉMƒÁ~{>0O˜àÊ]R^‰TU™)ªST¨\5× ³Çø°Í.Ï[Ô£s“¦EÌkREJ¤M'‹;_ú½Èv‹ü^£pø÷/4tX—­ƒ¨@«z„âb<¹z(5jT®lG©éDÂ%:"þ¦Ðfœ–½ÃDWH`EooLjŽ@Ÿ ln"™~ ’Îÿtâ÷0‡?À|Žÿ˜  S’¼SI1‘BaOÃ5ŽqƒäƺA„24Ùþ¡ð3}ódaCÄú«š[b‚‚¸­›žÄƧ9kšº¶Ì ¤ûž«Ù¶Ëq¡¸Pn-d2âbÜ]&ºC7ì]ÊýdwÀÏ KQ r8`6ÊLú·(l”öŽ»y+î¹M_F +] +HÏ’ƒ;µH:¤¡)ØÇéÅÀ-^ ,¦ +¥îvz.NQF +ÃCGC†×;ÜD¼ï.Ùm}ëJG¡P)>sHœî *Tèw¾{´5}E÷_Œ=ß¡LßUµëušõ&7Ù·n† lg@iÛÌ5G"&­žÊ’HÌi1›;V…ˆÈë”.¬’£Wõ•ïOÑ15fØ¿,B]³wêPèpgÂŽ²© ‚¦#(Õ¸Û)>¸Qž[%‚Z *>€­Cí=&N¨¢Ù»ç¸)}ÃÄ@‹W¼Žd˜ÉØÿáÊÓÖÁYO1!ËAj¾l£œi +stÛçš”¹È6ñõÂL:¢±?̬7ge$ø‰¹‘êÓTtÖ¿0ê¸i†çÅðÀ'yÊcßØì|Ôaç5Çú@ jR¿kS¿Óe¿ëüõ­oë='Æ×ýjvÒ”‘í ¸)ÛGÖ³ZŽ›£¤ª.‘¢ê¶j<åtŸ9î±?eºAÞ©|.‹eKƧÍ4+¼*)ý~Ž9 ¡<;pIÔü u€˜&,< ”S'Öæ™6é;‘’8óµ³ÊL»œ¦q3 qëK¦¦à3Öº_p+ä'šÚ’Z½`ÙA:? +?egZ“Oáø¤vœÉ¡ë:`×=ܗç´°iôØÎe†ùNºÔw&f[ÊVÙº—DîgÙzeSÈõó€°paÛ`@Æzj?êšGÅ M+KMã$ 1B‘†9_m.hƒ(D%jgèæªß³Äd‹ŠÕÆáÐxc“É¡›š—I¯+l÷rxô '* [2ÇÅÝe%žw;÷Î7ÝÒox‰à¯¿Õ +žtÌçZåòÄ­J.Fp,À¨`,„KÖ%õ3ð;~ñP‰q<QþòQ1;óS_š#ôiÛƒXP%N½êù<^y‚Qm²<¶ýõñzq E+˜¥f9êÚúËÓ—µZj7c©%·ÜW"OMdÊ…+øÍ¥Ÿ#é$kÉׇPD†ûoР.ñ3ÒÝ_ I|“\pß|¤ùm—èâX»Ò”ÓÐë“·2©ÍL'à\Œ'W„»f`¶%ˆB~”/(ºJ ŒKg¿ñn@XŽƒXÔÛ–qpŒÅ C*k˜€Š›ÆF&`O¹kàæWgôD, õ¾G÷ÌU1,óÌmZÆцvÞøaøŒ˜éÂ#lrlv¢a¿ÈÊwå¡Bó˜»àJ».w%ZâJf+’;åJxR"A43ÞÄ~7éü@F2›ŠËmEáOøYp)Óc.ú÷¯ÂÛ%•å]ÇM¿‹ØËâ‚Á$&ŠqþàÏL“VC&ûyn”ÑD…çÔ/¹¡ÎŘ÷æúk&Û®°ð•R³öÁèÌÛÝã`p%-ûSÒÕ挄¥Dbø©“f#àF‘0g¢Ç½3ÆšÀk(BYèÝCg0hõ¬¬¡çà¡•Ž‚ÕŒsRûÇXni¼Ù¡lB¹G…ÇÒÏ y’ÛjG„Q´Q”lŠó“ï[“>ÐÃö¦7ƒ¿±mzÈìÈ ªß ô½žñänC +\!<œŒ1~‘Z0:ü)¿ÏF‘ž)£œgFë}üЄfV´C~uÌÏ wr*=Âs”²šé€þóƒLi®Å¥Ôw¹ŠTåÆ7þŽH}œ¶Cuëó0îëûä(”É]šx¼)Z3?¶$d“LˆhèõÉãô^œþõrÛÛHÂ𽟂—&à‘Ù6É` P€o²†!ßF‘ä5¬C2’ldŸ~ëÔÝÕMΈ#ëF3šö¡ê¯¿¾ÂÊ«M-·)„–ö%eœžrö å K«Ê / ÑP +ê“ó —ÚzÜûª†ŒFÂ728ƒ·ßGç=éG7qØ>\’ ÈMà x¢Bi# » ¤4ˆq™‰O»ú”ᇡÈõ ÃašŽ‡¢áU«EãP„”j÷ˆVúįeÕÏ@»³n_Küõ¼Æ«¤þQ;Ú(´S‡<¦rå<â«ÅU!™¸~3öÌ×WØvs#Í2×WÀf¹ØÅE$Á³Žp¼©*æ½TíyШíe"ë_v"jØÜ?‹)«š¥´|…F +Þ–¨³Å~OpËÈó¾ê³üÛ0+>gm.šËBøõä‘!Е:ÓÌ)“ÂË9äÜäûF€žcÉ7é s§4\«5aöƒ”ŸFhT“-ôðzÓ®lƒ“à–TÕd“ÊmÝ-šCî7$–;‚É+ÕÈ„Ðëv1ôRž¨–º$o‘•ÂRKÌÒV3<šá&=½=3F¹Hs”6ð(Ä6Œ@{Cà{qó¸]Á"³Ùò—Ä‘„¦ÅÛ– 3°ÓnœxýövËüв}9‰k{Ù„XâXAʼI½¤cç­v2õ`©q©v¢s¶j"nþéu¬”‰}zu}ÁÈ`4SöÁA"†¨ÒÂaDÆ”â—vCuÈfJ¬âÎ92tˆ5=ZÜ¢?Ôš(#x÷{s*²þ¯(f‰8ŠÖ¶ÃÙšOj`Mb½ùÎÿAŒ¸üp”UŽ1KmB&üäÒÓ´ì!¬|h‰Éîš>Ò|p#Õ˜Ú²ŒMÊÂhRü¢«v([ÅHâ°Õ »ËÅæÂ:©òÀ~,=ª¹’îu'>°k½¾çAoë6³Ì~9¸g’ÓŒÎîZêwç­×Þa%ÿìnßЦ|‘%¬Øg²ÎZG_¿Á$”x¤I®ÇàƒÈŒ^¢É CåýëwDÔÀª·õøÕ’R¥R'ß´> +“ÚÚÀXa¸ã^7£»ÜÚ:\:©—žð\”M/ÙÄGç#JiÄ€œ·†· ¢¡h҉׊zQ¿ÙeI·Ù·ÐCµlW«'” XFÜB=؈ͭZËçˆFü¸ßÇ ç¨Vž›~ü¦lÌ–8Hc¶zxœ?ïðùÙîÕve{¯Viff0Ÿújœà¬>¡nµšá}×Í$}b‚)‡­4YÌ€"N;ptdÎùîÑ_²ŠY‰õ‡îŠÿ_ËÝØL‘qšlzÄÁûê!‡ i‹ÿOÜD½¡”ðbw( <†F¶Â7Œöms!^ò(Cm*|»9óŠœwÔFè¢ÄüH¯‚x¤Ÿ·øÊ|÷Ún"Üõ:0¥túûVwÖé]gi¾³jé¼jò.WÒÔqD>+œÕ€Í¡¼¨3AFvÝyÃûUrT(:ðÜ2§²ty‚# +aéÇ$Ë<ì4ŸgÿIõøÛ«¨I½Ò±¨ø„Z…Ì)Ò°v „X-6·¨ˆd3frj9ã³¥Dé¼>Q¬¤&#WRìI­ËSH¾¨}p8×Ã_ï]³ûüêí©ýÒÓœ]½š(SS3¬ØИÒ{ÊÓ¿º®s?¯µ=–ÆU£!T«Ž~õªå¸Bªj¾¾z{v&ç'ž¸ÉÑ›Å&§÷'õYt` úëÁŽ`òœœ`tYχ@  å»±:ÆGÔœaèåeàæd'mp»–>¾o­à6¶'4žm¤UbA]·^~ÂOB Ù*È„¢ß (îEx eãPåWÍo¸¹#QÛžEíD÷rØæ¼%Ã$GúLãQÑ&ð&ôÀ}óéuKo˜Y',cxÎ ù­%›úÔâ/7ôþ#¾Žh¤–„ÿüÖãZOÝðS»>Yc™,Ñ‹ðPç§R* ß€•*EÐŽ-z‹É ‡™u³Ò†â_öunvFàSøðqÐ g¬¿Q=G˜½rï¡Û¥KÌæ=cÿžõñGc*»ûÝÍÒÄF½á^rvyW¹ +õ5beŠ Þ ÖÔ…ñéX/ÑiÓöÔÆ;Ð8‡ K!ƒñÍy<%üÔÓ±'tk‹âr¸ßØä|m›±Â"Ø ²ï=^ÚŠ'»’Ì‘DZŸSk3 cÏ!Õ^­O¥éªTÚ½©ôÁޜʭlõ'MjTupÝÀ)щoo$9ËÒ ›+aíÄ™ \“IËqü÷/L7ZP K3O½äýÖô,³ˆ"ïZGÎòÐôL>ØCMÙ­¥™c~Çy)$JbþŽ#C”B£XU²ó¼%ýÒ0PD­ ¬jÿªþ%«•râý4žta²…H^oÖB¼Y†ø,=ȳMÒÓU¡ è¥ðǤ<ÀÙFE3Ê›J5éºðäu&·dHdÚN™v1sèIB>âÕsÉp~²>gî¹ðZïž_Æ‚¯rÕõðeú—/µ¿†¯Õá ObWp‹ØÃTo§ê`$È2<t˜n“ZÌÌUŒ/[*æ‡$ášZ«°èº9å’¿žâú¸lùÛ[\hbÛþ:Å}fÀ ÙûÂ0ë øÝbÍy4×÷ÀDäm»ŽTÆX¡Q ïOuÔý70¿õ‰ß󛥋ÿ…€p‘Ûhw™§â¿tXê=žmz GÑ›é¨ÇHÒ{[Ùa™ÀÍ«|_’=¡O°™s.(Šçë4–> 'ØgÆj÷#ÌXäÐ﫦iR|*F—)Š-v·Ü™Mt±GÓ#ŸcWN8i×Ýp¥&Éšµú¿˜òa±ÉÇš7ùž|6C2.¶Ô#é£ôž€Fl¹+á +™¼Y{RAøP¯ï‹«¯oI9 ­ëx,2Ô.÷^€µ—ÎÄ°<ØjåÙš½ß# 0üLý¨z<Êß-yÝcÝuröH jú5].` :Ôr½~oñB]DT»Ki§iæ e +oÚN6‘g·4R¯‘a‡%†]âÍP„cŠ!m’©LNÿ…²¹>ûRð{_Ä> +stream +H‰´—Yo¹Çßõ)ø8Ü-žÝlÀ0`KÚ…/œXìCc#%º23²×ùô©ƒd³{Žm Þõ°‹Åª?«~uü~µ¹½^\lÄÛ·ÇŸÅñ§ÅÏÇçx÷îÃé‰8ú0?RBÕÆzø¿sV¬–GÇ¿ž+±\Ïõ?•Ðb~}ÔÔ-,€ÿÚÚ ­mmƒÂøÚûÜÍ‚œÿëèl~töXý]¿ù§ã_î•8}<úÛÑñùÓâ}ø´xXŠÙÕCõëyüÛÉÇSáŒ)üí5mbÒö¡†¶ï„6èm°¢5¡nëp÷·J)û®pààf¶Ø¬´¬]­:çÇ–ƒ›lÙ Ã*ÐýCçñ•ª•oÅüBÄ/?„Vux©ÚB [Ý\øûl.+ãÅìæJVm­ÅLÈÌÿ2Í#_v>×…è~±šü0µáÃ7ȱ÷µi´yò:Ñ’Añ‹Xe SJ—h?àïFsÊáo¯>â +øåZÀ.¾((\ÒD :Tx¾úx/:\у=žôKt—ýDýÁkžŒÑ »´žô: äƒQqúóôNK¨Üº HÒâß­—!èðÁ£xÂwª˜DøˆJ ÷Bçu‹?_‰kÜn"{±ÚÍoRÓÞU“¦ðó6íâÅ- Êí~µ(mc-«å!绉5†.Ï%Þ ã5ÈÞqˆ‡â—è¾Kg€‹GåËa8p5Fg•÷f E•&PÉ Ü=cøt +´_ŒÛ-Å"útÎÓ¥£>\ñ&%Ã/®î¡È‰Ùz€5L²€ dç'ÉEcqÔäz2õ5¥ïèÃõïœ@¡¡^B½þâN‹x©tæ G†‹gKQ0¢ß$®Y]MGWˆÂº\§àn ‹Y=¹PYužzjé +d Ú¶¢ Ð^ƒ,Тû-»1¯ŒÌNçk&ðŠJ¼¢˜Wô¬”û—°25UÖî…› Ðj7¤XôȲi°óE¨HÈa¹ôöp{ºbÕ\6•dlAw‰òoŠn~K}ÞfJYKºz 6ŸKpÍdsP1v2{ÔïQ‡=¾LÏ?§²›½fèú£¬ú“WtûVx«ÝÚ. f 6.Lñ…‚ëÐ'MÍÍ% ¢|’gé½t¬ô÷)ÿJ’1FWB½¤Í| +íJ…o™ÌÌ‘U †ÌyÞœ[Äfº²†@ž±e(#Þ„¦k2šU“ëAÉØY´P];³K³ùÖ´ ˜¬Ùû¡‘*·âüW†–,œ/dÖ6ëï&…xŸÝ-º¬è3 é`Fœ´:bftÞ°$¾“÷²¡¬ÂM§µ¸frF!e­ã5Ï5Æ©7êFÑz ñµL|íaâãG¹«å†ÛäŠ.ß@,gB=­®D– N¾'þó¢Ð#‹Ö€„(sc +ãŽ+0ɦ'H€Û£Ç B>keöÖqߣÞ6ü\Dνå+I0‰S3MÒ¼' u»’Óƒ€â7G3¤¥ÁÊÌKmä%³—¨ŽôDA&Xcâ)ïÒ-C644 .RLWFAÅm¦J‚ÐèÐl +MnsÓ«RðË3VîQ½î“CÛÔz¸,ú)²”á%l“òrÃpù +…mƒøu9[ÌlO’ëÌ3k`ëƦaàªOWŒ3u9šr +¡ðmü ÎÜŽé 8’ˆ{)›a²ÑV’Õ]¹G()û‘ØúzÇlÓ׉h*F£y![XËÀEìtˆë£ñ"Ž‘¨s ê­hn N{ œ¨-ˆ„iyU“ÿðz3,sv·H‡Ã¥äh×Ó¥Ò½žÛ&€~Û­¿ž:ÏC³ÓáÙé ð¬M„gmö]‹bÿž+ïôèÌŸ#´ÝÐmí»ÖŒüøst¦ëÔq!܇Îø%ÄŒzBZ%_¨¨Ñ;_ÄHŠ°¤E“6Ý4Úøº´€ï'À½ÙBÉ;É`tɈãqtDˆCO;4ÅDCœ+†¸ÈËÉí¤.÷ƒÔrk¼M^¤×Ò[ * AU¬M³&î[†qRPÇÌHÞ LÛ¡LÓpæ +0ù­qC®x6Ž\^ívQ°32~h( q(Ó‡²>§Xš3Ë¥H÷¢`rVp?´Q<.ªß°úM©~ÓÖa ¾"Jœ¦áª~r“M­švŸpZSL7sŽ~®,ŸéÄ”´nˆÓ‘ìÓ.FÇÈž5`ÇÍ“/XŽ—˜'Žâ§‚f4Î"’4ƒ´Çñ‚ç4?ÝëÝ +/­‰Õá=\埆ª0ßqAÜ4.CSÊF$ÇÅ`䤢yøí4­¾L¯&_½¾Ôü!>bŽ*KRž[¶Ìh…‡uÜšòL¦b[Òžã6]Ý„Á×û€ µ·íôc^_yC¬¼]ß^ú¡‘ëŒ×™M¤¸»0L’õ $Ô!ñ}*åé–ñ‹&5"ÆÒ½WÒîhHã+éÐå\6%·þé#¤W¯!ƒ¶ çQü‹GH¯#³ÓGHo&ŒªMèµ·öû¿~„ôöð 5¿mwNÐÔU7vãÿ0A¦­3Ò¾Œ\ú=1³+FÂ8p±îíé?c{4}'~Á»¨yíç‹1•^=…þJ¦©]Ð]çºëz—²“å`±@7T7¹$teáb[Jú×¾±‘µôq5TJ^ ‚­ñ.‚?èmït©‡}z²þ]zËU·¢Ft/yÈÃÀNð CŒF —; )œ •ÄÉ]¤¯28ïpZOb=<‹oœJOeé½l¨ƒüÛ¼:ùÔ»Ÿ4P4Íðâïñ6ºÑ±o¨³xt¨GñD7½+:"´êÀ?{iàMÝ¿l^CÀ§´sGêá[ƒëw Ø¢€³Èø“ICNÏc8IÞ§&]œ`äâ>A¡R«_Jh¦ˆÒT춒»Ê Ï’D_ô—ØŦçs0ÖZí›=øÐãþÖ¨µƒšc+~ÆCÄžŠù¬8´Ö9Ó-™£Òs))+ q ˆà˜œVbrd£Éq´ì)·G»aR2~m9ÖSêÆâD¼cpÏÞ±öœWKoÜ8¾çWèiG|H¢°ƒ{°˜Ë"˜50‡ 0ˆÛÉÄŽ=íI²Ù_¿õ"Y¤¤nu.v»-‘ÅâWßcÀ߯ډï÷æQÜ +:S¨µì+°.Æ$Y˜«8·?W­a·ÈæM +P.vûµ×1¯3k÷ÞåÖé:z¹Ž¯cæPã6™˜ |ôbz¢ ²þë/6ë_ækä+ÐG_)xÙÀ”|Ø ¿eŽÎÈ ÃóG”ùÞá%¥pa,ŸAyP•Ä>)F‚Âb†£¸w¬ÖÖQo¬µm 9{:м`*˜a>ŒÊ™çAø—/ ‹>0„%~y+±£ì¸>C_ž…| ˆ?ÆÙØépFný ~'Í–eνâ|é{ a}ÑämÂ"ãJœ;¢(M/;™,qi*¾ÂL¡ñM+5jd<Š!5ãºëŠ*)‘í¨4V­/HFrL¿­"?†-!êø™Ô߯¡gtèwS®rÍÑJè˜5xŽ“ôF’@,š¹°|rNP× Î»|ÿ¤³¥, 3µ?‘m“™FÖã©žHñ®udS¾H‡3T4’¢ìx¥X‡‘ñ[ZOÑbZ@”¡h•`îúžˆé±6Hb¥sYšÙï´»Yb@¶Í@ºÒEÀ¸¯¡ÊþlômÆóyÍåO8FCÑ &€þà|g£E ö¤Ñ@¢•?qPaj1›fåN•ª ]Åo#ÕW7ÏSRoX$½RŒL©L/J> §(N°Â âîޥ݉=n“ûŽNièk·9Øj·ãÆ”bV Ä{å>#QD WÚ`ŒD¾ŒÂw šÝǶàG*˜Äqw•cüñ{zBibÉDôEG{­2bó¸Â?[b ší O8GíÌF¶ÑŽáÿ÷À5G> Ï=Ê·)ö$8s‹”hŒ"A&ØðÔý0lE"«^èU[R²fhˆ¾êK_¤»“ŠöOÄÎJ÷ÊZ +½[¯®lǤCƒoÉÛÿÌûè¶ÏÐwÛg4ö˜q}μóò«c›RÞæ_xÛœBh›X®kéëNþ¬Þ:ŠÓL2òžÂè,f&ê¨ÏBí¢ŸWòƸ–^<@:ÛVbgO½¦‰øŠ’¾ ‰•Hú‡Ž7Ä\°½%‰¹qðïňA"ï…oØ­§fî"™KJ̱Ž@&ç%>Q"ÄâCmÄÆJਠ+kZd¤¹=Ùvý‚/Áï‹v$R}ÕN$½¿Ã aniÄ`çÃlFŒ×ˆ)ÑÒCõ®@ ôÿòÏmK÷%a¡0v¶pÁ,bÉ“¨²¢á]ëhÈ @Sêɽ %s¬dC©d*Gˆ¬/ÇÑ„FΈ¨âŒmCqUÔ`7kðPFºåˆ,vRùfŽ©ŽõÜšÌÓ\tìµ—çz¿áû›æBsQ –ü­Ñ~œÐ»#¶yÇ…d|DÞbÊÍß;ªàxƒh$`¥«v˜ä +`úB>åJX“Ö¨zF®Ç®Ôcæ'® ëf(èNÃèº ¥M3«(òìÊd/“ÓX““„¡§YPÛsâ"¬ÐØîa©¹á¹¾Ö>VVX5Å]‰)8'K(‚}Èæ2 7ó3ýOÉ4šqÙÿ.Él“†Þ$âI¿Êj‘PEŽ¿Q†Â¢›búû¢py{;ì¦Þõ“²ð@÷)ÈY²ûúȬ;>äîJ¸ÐšÖ\ú U£¤zX’øçá`h¢…P ˆ»þjÉo%ø¨1DEL¯DFîbs›mêÖëxªÈ×m!ß¼ô5|¶‘÷{’í _Ú Æw6‹¨±§ +Þµâ03nFÍØ)ÔìPøÆ5Øø^ÙùºÆ’ô4ôq*“Îäœõ½uŽ®„Ùý:š^[øÕñ,ÌW“³ œ~DüÓ±22 ÉÈ™I’”æ'ŽØšwΔF…äük&Æh)³ =žfÚc3,Ì SˆØ®a£-Vï×ÝΖÝË(’÷å ’©¤Ï ¢b uÄ)ZPv è=öö}ë©ÇŒ‡X Ú™Òpl1@RDm8r®8(Þ“Åvêa K Ö½,N\CËõ\\Œ¼FbF4±ˆÚ^Ì?Ÿg`|oG£[Gc† 0s6æŸãäIÂK„*\!æØ"U?ÈI÷íÀ­ŠÀ’©MÊ4ó¹°Bh@³™¹ê%#b¬î2}«J u‚EwrsGÓ'þY¢„ñ:d¼®ñ +E4„±³îË÷ÕY×ÃOœ±¿}öòÜþW×\Þ<›è§ÆV‚qp‰M¾õ§®ëÜÏ[Y¥W[¦e¡ÝäûzÙà7/;”'AÌ5Ÿž½¼¼”DÉ|×ÔNµÿž_ôœàîàNh«P‚É%8¬? \ ·ç*ðM?žõa¨Ê8o=ûˆøŒVƒÄÅNXGBôß„†˜B‡üVƒ~@*Ô“ Ï8€ñûßàÐdÿÈÜ=°ˆø)9 +(qÓ¼n½M`$¦2,÷±^bN^ýÎ7[ìNR-šÍ€ü›NBô[Ö‰+&k$òw±BÛ ƒÅ#ó×ì6ŸÐ‹²e‡vëàÑ‘~‘† ØJG:bâsÉÔüçë–<)E×€Ïn‡A(a L"8p¦„¢pn° ÁE°nX‰6Úu+ô=£ w|Dï=Æ4Dœv€§’Çih¦µ kCP9eÆ›Ñü×Ú·À8¢Ú’q$ óU|kÊ5Ø%fm­r݈ÿ¿Å àKÛæ–6{@Íéü‰È-òyÀ ­ž²sFÿƺ"´l‰«³¤'›“$ LRÉs¡õ,ðëAtAÈwÉPFHyo‘6,²µD’lRøÁ«ëæ)‡W,$º’›Ö• +xAi\¯f; FÔpP¶0õ­$ðo‡‘©a´J8C§ÇuKNñFl×M;T~+F½TjÀ|­Cb[ùâ¿øœW­vµÉãÇÙ¯Y “#Sí7 2 ¼ðbi*Wa<‹6ä‘.ucÇ+4è¥Úq‰ï±^.uÇɲ£tïs,%6Dç„÷Ta;6Ø H`_~‚© UníVaä{D.™_>`ug“¾áF},(€iO*PŠÃ@pøŠ sFéà¡ùÞ96ù4ƒ¤-ƒZù D<24ž˜Ï¾·."—’UU"VÒ¡AFA¼§ ;Ä¥ºË™4@È"‘ |¶²KPÇÎëÝ’ý#CINhIÔãHµËZIÔ¶LmoÁaXÈJHÿ6F–à+¾ólÁÌLs¬â™VçœÌ¦;YyT¬¼H,dÒ2û7o›O­c2ľ7ù&ÅS‰§¶¶å‚—£#Z¾— °Âè}*˜ø­u=#3R¯üIi¶%L¿òß磂¦riôàLj¹Ï-×|{¯q? ë Lkä`³NÇæ1Grï§G– Â’FH$Î ³$ŒCà±²ž÷a#¤P«^ÀµOàÀ~¶S°_öí³v•+Òx$)²øãÌâט$(= ë(C÷ò•^eÐöZ +ƒê2b¹^Ïõ†Íõ:¬™…Ø•îꞀêðC2~ejˆ‚¾Ëm ˜'„ÓY„ø1 kœm¿ß¡¸_°˜®‡ŸÈhûìå¹ýCÂ&3ÉÔØ5—Þ¹dÁêºÎý¼•®FµeZ¸º›|_/üæeCyÄhóéÙËËK92c7JÅËXVû“–[T:€ÏxJî :÷B &—ं1PÞž‹@ôš&Çt¶*ãW½LðÄ ÇMVÄ=2 +áŒ0ô– ýw‚ñÄž~,¡9ºkÎ7ú¿ÀUD±vŠîWo»ƒ}'YsÈo³±/öMz\‘Àk¶“{ÄçʧÑÇ šÞáV…ëMZªí¦yïÕ=X‡§€Õvë{`mž }ô'¨–8]jqÑûæ2lì+-qŽ>TTâ[ Q2ô‘¬¥ÞlÇTÇÜÞ +&úi š&L˜VzÆÄCócäœ'*_,–ù è#u‹ +FbôÌ*ô‰Žœ¼‘>ZºšæÍs” 9 _чžèƒrhÉ–¾ié'ï¢ô_Ïé)ØkR¸)~€MSÃ/Z²ƒ°Àæšr¾dÄ;é£õåtÛèÀ)”-l²ÈKÎ@¦w*±ÚD¨¶Ãÿ9¯–Þ¨a |çWøˆ NüHB—ín¨'¨¥ V-Z¥ÿÏÃöØÙݺœPCv&ó=HšYîKTe=ÿÊ2YçN˜Y[GS‹©åˆõ¤Ú#LíYœì÷ñwY?¥3J>ÍÈ6Bé`÷­ŒW^A¿Ç]l³3Ö!ðar"Œ‰fá¤W°»‹TâkyÞB²9>€›²ÅgÔÉ l³AŸ»4Ô¾V`7q;uxmüvm?Ùü±õ›º¬_y¤„‡Ø “tÍ w…(÷^„OŠ*aóRz`ø>C1íÀ©b: LÛD8Ó 1°ñÅn0º0 +°<ŒÒ‚`0"cÝÂ4ƒ8ì.n˜#Û8Ì‚]ÖÆýkDû\ýZŒÌq8Á_mº;à£ï˜!à>CR_f1òà ø‘,¹Züú;âçªë‚"6æø-79ù%"Ìøpôàý~ïºTÞ5Æ^Œì Ú곧f‘N—ÛØeWýÐ 2§ŠÕF=àï¶IŠß IÚ™T)÷àHìT/o“:s`¥\ÔâÄW8!Œíé´‚¡²üó—¶gh„"4j³AËrÄ!Þõ®õžQ¹ƒ~`éQ¶Ë¸ÁÃþác&šQä%X@d¯~$MºŒK¥O†‡9Ci}4¾‡ÂuĬEfh¬ª™­¼Å½çµºO^L¬lñ§à Î5Ù³sm£â_”¬Ê9±‰›8í¿$ù0LeÁþ/xŒ©xl!{†I#Œù2O.š“.•’E?+mQhïòŸíq ¦[áI’ÙÊ[P¦|Dæ®nÍ=j#ÀóµY«M†¤‰))Cbe¾æD5 +) “íGQÂÉÊ +}K~þv…¥/z¢ÓÜtBÑ* ø A!×Òêÿøš+ +¿5%Ã_ê–å +d-Àü,¨’í`È0ƒ:˜%-B¨¾.š½ˆ­ B-"-Ѩ˜,fÏWÝLå©pf^ŒÑIÇ4ѵ¿yör;~â(—Ã!T–»8"ç5ÇUñ>P^cì›>z#Ó–,œ Xž]wá:0 ²Õw耋ýˆëÏVÊ.|~8%žX‰™E Y< ¹D†îªGÔf¡OÊ +ù 7¸~°/Pã­ÞX(qoÄçgª«<‘ijDƒwzôð•[m-ý‹H~Ä]Æ]Bêâí²@—-<µPÐâ[[íº +cpjç3hjÄ1°ƒà ,«kN%îˆÇ>gÕŠü`Z_» +endstream +endobj +83 0 obj +<< +/Filter /FlateDecode +/Length 6255 +>> +stream +H‰´WÛn¹}×WðqxFÍkwc ¶äl6ðæbk±qè2–ä•ÆŠ$[Ñߧ.$›ì˨GvdÕžfW«N:µÿúöþòÓñé½xùrÿobÿÝñã—¯÷âÕ«7‡bïÍÑ^%ª•6þk­·ç{û?¨ÄùÝÞþ‘úw%”8ú´çW5€ÿÕ+'l[¯o½Ðn圇×{‹V}Þ{{´÷öW°ú0zÿ?z·ÿ§ëJ~ÙûÇÞþ‡›ã Æðîxs.ëÍòç7rÿ׃_…«L¸Wäþ@G÷-ùnE« ŽÆ‹Z7«¶m=z~YU•y•9ßêÈfŽ¢ÕÆ­*ÓÚ¾ÕÆζêÊt + ûÈßQˆ¿ZUpæèA(Åo•PU½ª•w…×.ÞË¥®VJ,.¥‚ìŠÅ¹\¶«Z,.¤V«F,îŽlWV,¾ˆOr©à—Ûµ\ú•‡˜àÛ•‹3©Íª…pÞ_§ƒÒâkü¹ÆŸ£!©þp §4º¼;ôð~±hùv-Ò)x"o÷h.àß-z'ç·â"fk/òU‚UƒïÉû•„¯ ˜â’Ü@x¨ñÈ^³_\Ë¥EÇä ~ØdqœIU£Åµ¬ñÌy¼$¼÷ø ä±Æd@þ<æ3ySþp.î)׎2H±Ã7ã¸g¯ƒ3Ȭÿ›T„. ù¯£¿ÌC‰ÏP²DHÔS€¬× 7R ²Þ[Ê—jñî¤è’wPÂH81÷Ç…ô`JæËÎåt ôÄÊØàû+´ß®…Ã[;|þ$~ÃÊ@P‡Ò\ÿ,—ä{<©üIô¸èÀO;¨3¿H`ˆó@ôÿw(Ñ/½kXüýä^tæås O¯¥whþHÌ >7j0é SÎsƒyvÿ2s;3uÁ,p©à¾më.“ÁJï´ÿýT®F+¢¤­ðcWæ,8@v0T²v(ª|”øv~šÏfë@šž¾Ž}Ö$h·L‚žÕù“@UOLì{ÝL2w»Û(TÅ+ä\Q*M ©z÷Œ½Oy‹·È®5…”YÐY£uã)ëÅß<Îg°ü4+øZ¯TSáÏ°hàTIþ=Œ4_NV uŠžê_L“v[Z¾gÊ´ý)cxÊ<{Æã5G…ሞÍ/%ÂzAÏOÏžçòi£| ›•Ë3hTéçÒ¨«Ÿ'¨•ÙF£¥ÕhÔ>A£cxÏœÍ&OÃ:ºfõÊyÉ4z+˜BÓÀ‹Šgz8y5‰ô§¡¨¤#!\Màý‡©ªö»UÕÓòÇJ°RAê-kðZzEÍ&¥±AÙ=\ÆAþ¸j ‘F»Âç]±_ºç¶\¤~V[ømmQZÝ¡-êêÂN-š¹ÛÝÔÅÉz¸kN-•´o¹b7Yº &Ú¼“xr_Ó„¶Å~ç}¹Œí6eæ4…þñ»Lf>É=ÔZZ’6v÷¶œøfŽ@Ðm¶6ìÌ_zªYuØ9žËW¥áóñV**ô¡¬=¯k-ñßeKJäŒõÌ&ÔÓ§zίI;“„-®ã!cj%|‹j* þÕ”ÊKÙrãÆm0îGŒg7\s_ü—z“DbWJÃ1ÈÚ"'íîr²\å,¥=lZí¸$Jû‹ÕøÙj>Ülã*‡ƒv¦*’¯‡ô¨ÖÕŒÀß;²Ï©½¤èáDø 1ïþ*XÏ{$h9ƒO‘›Ä1²–ç’Ž¥=Ò6éñ’šÂ0YÀç·À2ë¼™1f_̵€)†8¶”à´Îq!†ðZˆê +áãŠc\K¦ÌË %X"¬ÅmÀfרtÍoè:p[SÎì¥Û‘x\Ú1*=ÀATxfMÕº@Dw¸ÚpXAP†¤ôæ,òà1V,Ô°Á3g”dJ’g³SľÜD¶ÖöVS¯œoÚ^°iÿ<¢0±w?õE·C˜º‘3JP]\Û'wËLÅ‘¿•x-5ù:”Ôø'¨¾85éW’‰~LÖ![âBÅCGU„Ó»µƒ'œEí˜)äfL!ßqTدL:Ëau'Ôøåøýc~ëéUӶͪò­.êºXʹ;F±Å®ªKó âôIBMêøœ6bf °zj›f/е#vvhŽv”Ø!è…pI]5ð¯Æ÷nù€ãÄt I—îö +*‘h¢¦kèf¸¯ˆ©ŽùñÚðfö°;°Ë‹QƒŽo$ý'¨ÌNBîKÉ’2x&1w¥°¡~~?äØeh/Ë©kÌÒ2í3cv¿GÏóQH›¥Û…®LU@ÎÚH¬]AêS>#Ö.- ¥ãML©Û‰ïº•ïÚ-}ð“4œæ“^•ý.²™”IämÂÓ ruÜHIërý*a*ÕôiœÉ‰ºRM!î’‹BÒ"0ƒí†Ãç·ílŒ¨ÁH€™OU®)P2ŸùL«MŠ(c ülFƒA|Äþ×4Òïß[„ƒU縋½ÆKÉC·E%Èúï¢vm!ÿ†¡¹‹ÃÙlŠâŽDúÀJ5,̪x'"æ% HT',K3V'Á:¿´¦_ÚnÚ y³(¬{yNLú:µðp›v¯ly \({ðã»7‘cæd~*ìô\w`ÊhS¤Xv.º*VvÛšl…h­r<‹„(Îl^˜0ÝE#ði ͵Wä¤À#²l¶ìbÉI«`ƒ«àha·¬Kå¦I«š"§Ï&6‰Î·+ •¶“.'»©Ã?áéÜ#F˜©˜³ÍÓf.ùÜzˆ[R×8l·6öÅÁTè³ë§›U·Ù‚qÛµŠåü†eaIûÏ)þ ‘ú)®C‚P‚Å|kÓµ¹È +¸Tõp¥ÂãF1ÿb…Ć‹øÞú]X+`&ëm&¸¬ÙZÁ‹Dlšº!Ä}ÆûiªúS"wP§’á›,m‘¥õgÇwÑlg{Úg×R#ã$ )8›Ûf4&¥7 ó¼î0ÄÛ²lÚO`–£NHnúL´MEÕ…Š&2˜d8î5N•÷“÷wFcu ±&T‡°¸JX0ô÷A\#hÌؤ]:Xð¿à‚ù­‘>ÈËC\j;˜[9[Jõª²é5>×Ù(ì ?žˆ nÃaºÊ–oðÒ [9ó ÇMžÍ>ÑS<Š¢Òš+M3 “fk1>E’8pL²ªfLÌΫšÓYRçw„ÕEÉ4ªÚÑ’Aô@auÌÙg6ž; ÕБ‘Ò‡Ócµ.gS؆øÅÿm°:‚¯ÙÇÁüš²aœžÈ~Õd3r‹íìÛ ã’0XúâÀÜàBâ;Y€t‘vKòy%YYãàåŠËÜT6 ’Ô‹¼4è\—ìý¶Üj\V·1ÎO°-á s{4Ádm7¦“,¥6> ËÌçB„¸¹”–®¤§Foz+:¡¼¤tv¸#Yö AoÙ­ƒ'îU}‚t켦9q­ í²ã˜¶n)ýôjéÜFÂ÷ü +#`숤(QÀb/ ìa÷O°—¿ÆÎŽí̶홿õ"Y$%·:¹¸ÛÝj>ª¾úº®'RaÏ Ôd½k`³Lcu&dñÆÑØÂE£cG,{ÖwZh1“MÆÊÊèž#Õ&/´é+Ú¤UøßhDgÑymDa"÷wª2«aC–Ýä•,'°äVÙþT°Ï yt•Qx1/¿jL¸2H*Tøk®Ë5Ì#éi•6Iàu·‡Ì‚šFR[e{U<íÒ)ç·»Ö{Ì«.ô S¡ÍëJ÷¼Q +ý¦GZ:Gê·=ª³±2f…*?$D‡šÅ$v0ñH®wÁßð>Nk8©Å( »5™ÏÍÅLð¤«Hç)ÑìŸ_šX·윛•$_0ó·iuYq]£à)Ôú*ëú]¬ÿ(:UwøúmËüc¶R'kÍ7/ƒcãà ùPESùÊ°Á9x”TÆC6/tŶžbH’Ò&y¼ÒäJ-<ŇòÉð?´Þé$ì Ay*~´»NÚÃNƒ xÝɨlbÑl°çSp¡ªÚSvx Þ÷p‰pѹªÛÃ-^÷¤!p%ቬ3͉RÁ f%¾cUK1÷~EðÞÈ +=#ìàËwš‹™¿ÏŠôÆjqƒWó…¯dTß\cì#Jªu…ègÁ®i^FRUv¯É`Š™•M +ŸZ+ñ™ÓEµ-¡¯†©T!u©4¢–ÉsÆ—+¼ãRû`íR"rË”’¸O±Ò\²’xt3¶‰h(x5*8‚þG"Rzw–Æ +â`®âøF“Â~ÎÙ©†ÔÐQA~‡;£d´h'·€6Ó†¯´Ë¨ŒÀ0X&œ(8DE#R‘b N +ˆ'±µ“UþYÓøf”‡Ò¡7û¥UÓrcšØ «©ütÁš[ŽúGœg—9áŒýC}…öN‰Aœ.SP¿nÊcgzG1ÊõvÆulOÖÁŸ€š*ˆ¸ ³aPÞëÃ÷ýH¦ÃJ̘~ÓËH³ô¡ïÒQbg•ˆrâȆYÜïzúS=»nüKæ£!¦N¹GëüóÉ¢›áqÉnÐÖö_ɬɜÛn¨™ði, Ç„CX~í-Ú5 +S‹®ÝSü@ÆØL A1])™ìFżíñÇ%œÓb Hì÷ø>”Qmñ€›&å>÷0Cë »>'2‚Ü$np¢j³¦´ršÿÚV·: +MæµènÅÕ½µ§‹Ä@Éþ]bÏgF¶”d‚|íKwÙÝUÊ(³ 5¼:oB$³d+ž +6‘u".éA76¶F~x2”µ±â:Ö{¶‘KÉSãj "ʼnÈ|t›®;¦˜ÂÐ\y®˜HfmÀ™´–¯Ѧxm»ëÜ ²Ù5k ‰ “v®‰iü­ì't×ú¬R_š3kÅ¢ +ÿ»˜ ÈÆð%Þ¯@èmçõcÏV2qç~€LÃ6eùVsÖðkµ“²&SÙ»q–˜–€è㊴Gå¹ÇÛŸà{|=ÚŸdü2ÙZa„X6I$µ°öþ‰þNÆÊ3_ñ¤¼ øáõŒb9®ÀÏ¥´°›Ô}¹ïI8»CžÈÀÁªJ¸ŸU'>ðJ¯=¿Î]úFà\Ø,®XÕXC‡<ƒßL–™Á[\æCßϯ o<íó®-•¢ä¡¸’):í*’QE&À–Ê:/iòþ­ŸQ¬ øšt·eæ+'ÄɈåÅàÕiÍæÔþ½¥ç,ÎÙIQ: ;¬JIË:`:H9¦E§çpjhW˜Ã¡Q„‡×óq±EE¼åœIÜÿ±Ÿ´Ú6bŸíÚŠ¬ØRVâZÈ¨”âJ€ [ápXÐØÍ °EhVŽrËôð¿~\2L +ûìýþJzºKU®¨®ÔÊø Þ|ê ³%Fe9ùMök¿”ƒ[Ô©¦'ô¯ùq"j’üîF¾*gÚ`x, + ¹ÂŠÍA÷ƒÁo[¬„0(¾"²gÆ’Ö+…öÙ³®[Ø59?É[ZôEæÂ)ÉS¾B¨H©ñ¢^À;üêY2@"œ<‹W²CnÖ¾è<@¿8ï=ýÄôžæqèÒ}þÝO×غEr|?¿ ð¶Ët*¯f²iÆÀÂŒ”Ï÷ã`ªü0ìðþº“7‚ +8÷hm ¸­YŒÈÊžßc¯÷#³¨‘4†Qù›M£ÃÄsMÏAµ07±ÛD®ý¥ÀÏDÁ„³i¹‹8Ãðƒî3àφø·W;Ž‚>'&ÄÉPÙ§jw…æbR ÿÎÃßqtÝáî»~´¿Aº÷qŠ pX4NK·@á|˜:wÃLÕúÛZý÷½i%¨½ãª©åªaܽêRÞ;Ü}úî‡÷ïå&„ƒP’‚æóÙLåe6åa,Ü°°›$ƒLÇ"QÁµ8‘§éÇ%ž žüŠë4sݾ¥êknC’W:ÉÀ¶"Ác‰Ï%Ê¿ïÁ¸>6ñ‡ö„<ëò«cRÅîÏSÙƒQçÍ·‘­p;¿FFâÒ¢»çc¶•$ƒ–·a Uòª‚HØ¿¤ •_éÖ¯ˆ+x÷/Gž{zè± ,Ê ˆz®ÈWD~¡Yw?FÜϼßýDo·¿¼f'ý4¤µ¤ä'‘Îlß"rÕý¤3»#¤œu>jד9gÚä_ŽªÝÇ9Ó +ç€ÅXþ"ë$p¥Æþ‚ËŒu¢¢0sÓ£ÒmØ‹†ÄœuyýOuGëŽ1ƒÇ(Iƒ.rܹ½Ä³ÝËæyž›qÙûq›VÆ%X[àBÀ^(úÊóŒvw‹= v_¨‘^¬íJÒ¤‚µ>½„hb™ÈèßâçBÎŽ[ ¨~ª/YY:RÛ~ÙWZyhÓl”3vžq¹ŒJ>g;_üy‘"Nå0QÂÝJÁ:ð¾}­«,R\¶ž(•n[gèf¨" +K¨@¾lÔWz®¤…$LÜc¥)º‰zp÷CzÚ¡”3,žÜÕ?a觯R¸è˵ËÃɲô­$Õâà„¾·x”¨è-q›Åyg`‚êè€.Ìk}¥L‘o­Š‘K0?õŽmWlÿr\8½HÕ~Û·ÿ|1twÏ ?æ7“]¯bú™¨?ÈöÔ¡©sxx|7Bö†yá½'¤0÷ ‘ðô÷Ýåg¬áÿ,°JPÁ¼‚׿ÆI«è©Õøõò맸ܓøœù0Ëe^˜"˜sn…´RÌxˆïB„`h·™Gn×æôà™«ö^ª½CÞûéØê— 1×ÛßÔPŽ®õ>arL}ºGÑ"Ñ6´ù#BÐÆÿ£ßçL(_閭HØ srD™f,Ýûk÷(~±~~éÈ‚Ì”GHSݼ»ÂUˆ6¾ðÒv¤Û††ì«œþÇoº¨¶OÙ ûÆ O¨£Ž€ëÕƒµ3ÊQ:,ûÖŽ{pr fù?zbªxÆXæ§T½ÀfÈϘ{¾uOI˜h M‹¬@ÎÁZöþé?õ ë½ m-¬£¬r†ÇË©£#OCÃóÜÏ,PAú—tá¼{ÐôêZ»+†c•tˤpøÔ«*„•!r×râߥÉÕ郞‹Feþ†¼ÂM†š ýIî&öîÃàf¡è¼—5úh¡(׬ìôÚˆî„/Š^õÂ휪âæhÅçIa÷!ȼ ÐÒd’v=žþEìfô>•Ì²#f¢»bS îò’“NO¸ÖB> +stream +H‰ÄWÛn¹}×WðQvZM²Éî k{c8°w[Aâ`1².öZ)’¼‚òõ© /Õ—õda, x4=M²XuêœSG?ÞÞ9_ºWÏžý¢ŽÞ®¯¿Ý«çÏ_¼z©^Ôª®¬óðÓ8u{qpôúC­.ͯµ2êøü`UWµµêø“Š<¨Pµ°þµ•WƸÊu¾SÖWÞXsuphj}üÛÁOÇ?½ƒ“þáz\ Ûã··G¹ªÕ«ëƒ¿}¸Yo0·ëÍ…:<Û¬^¿ÐGï^¾y¥|׈h!8CÁ½´)¸²oWõ†bꕱ©k{ÕZxÚ÷CzV×µ{.‚Úy¬ÇÊÓ]G;wÍâÃ0ý +/òò},Òíz¼‘©«®ç7Œ2.TupƒƒÿuøJÛP5 +>]]uø^ÝhãñÉ­6¦ +êpß;uøI¯ëð^¯ ;ðÃ\êL‡o\ëŸot¨z^ÛÊâv+[µêðNé_ºƒ_áëg½òø¹Ö+8¸„?àçKÛö¸0ÿòU;\x†¿ðAŸaŸð–›ø50…qO¸Ó«£¼‹ä}!2ÓãËÝËMzÙ¶Ì7müÎwöñÎ ß¹Á z>Ò ü î8ŒM9÷¸:mŸn¯®0ímNÛߧè;üø/Ò-nóµÔu\qÓ@kg 6ªÆê©$ÿ>þë2ðµðmÅÙfŒÝkJï5§×cƼì5Ô+`|Í(3üX­©Î#EHœªtg‘e‘Ü8#08~곶.½E ¹B$Î:%d£Ž2Dõ¿@ì:­ÁM)ÙÔ çêU„ÿ sèÉY–¯Xàâ¹øø;|£ÌÐB+šœ+~â\œ”dÄ6óøæ9¾7=g³r݈µUL'§±ZŽ‡n§š…& ™!·µr­!'}ï÷'×~@®bçD®Ã—“k_?A®À­uqïš îŹ +·JV s¬Š¼Ñàš›Ôƒ‘<ª¾´€Úîfb‡R§Ò_Õ%.&Æmñ÷ R[E2Ú$àb ‹¿ÓO¢h£3µ–øs†ÜÏ4õóïÚ™È÷±Gä’t혽)ÄÄ?ª +e”êŽ9<¾*t£-=H|ä(iˉ @"¿E¡ƒ€2{ÊœE©Á¿,Ê$²K‘w}Žõ`J OR¢”ØÍQâ Ùb66ãüoWž<ÕŒÀ¦šÇK PÝ|ƒD,&]œ«p*>ëoÂÝZýá ;üŒ;Á³U,2°¸ÇÆé¹{l *ÈîÉZFyª¦pÎÍ"ZŸ¡þ¤b™áõ®º'XN̽áÍ4Ñ€ã7À\Õ6àÇz‰9ƒ‡ó{Ó2öÞŸ@ð&˜vŒš~e“ª¸!ÖF~01c‹Ãt õ£Øô^xtS{£BSƒ¡å÷’‘^ŽýXCFÛî¡!þi iK†­/ýÓ$ì öc(æm€çvσ`z6Hé{ÃŽ^HŽ‹üp|›á3àÔnÀ©†‚SÇ´“rZXµ+¬ÚŒY•Õ×ÖsœÚ85÷°ƒSÛ§ú §úeœ*°ûÇ9U?GÇæWÃýŒ#WÂú€?\Ç¥h4¿J#—…¾ëø;%©7šPíEó£óL‡4/±«¹}ئÃ[¯Eªu­£+‚w|‡@ †ÒÉ}îq: ª~ãw/øi›ð—2§8>@[šš¦OÁÁ/ˆRD ±™.µÇ>9~‰¢åáF/ãÏk('•áÊ×Ð)Ðc x§½¼9õØÓlß +šøy›6úÔ-„†KJw€¨*(’‰‰–´. “«‘½¿7GÜ–áÎâ¿Qþ/°½ðåªp£#sø°<r¤êºÃä$pNÂðê½hÖ|u*Ý&º²nuÁåéêwÜrùV\^ .9b¦ñ(AÖ>H“Ï8Ýd’à=Q’‰GrÈb”*Â3Y.„´ðÝ@æ`"ƒSÓwKþtÂû¿Ä+ÔõØŽúmøò¦r!xÆ×9¦MÚ(TW1igš¬èƒv~˜K¾éW™÷ñlX2íËøÉ™¨ØmsK +â +¹vÒ0 if–å^k]Ï;ÄÏ,¿è ‡Ž0ª'ù ±ttêˆôœ¥¤RÇœi9±pK0²#²Ö"MÓ®[ +3…݆ èËœ3[7¶½(ÚÈ“C0†m`ÃÊ“n‘2L.±Ü ²±Á*YÒëÌœóM v\É|ŸÔÔ ëé¶ÔSÖwi¥ tÒuIŠÙðZžéø3eo?á¦+ºjI爋²ENY{BÒâÆŸtÇw¢)ñŠD,¿ápC¶›­ÌenŒ=àeÇð +Ûð¹ê3¾ÜáØO½ÑµÔ‹ õ8'8OvD9¾Ø"bz@³¹ù#BićÚ;ò8¥£ø½A‚èÕtd¤Õ°äƒòÚ5lBí×hx¯V¹F/#M&!h  æÅ°ô/bé aL3¤’:þM7ä|1‘TmÈy“ÏËÆ{ +Bï½´“%ÏH:ˆP´@€¦ƒš†Éèð£Ö ͸ÕrCS4ÆOœº|Ý _˜‰4êüKL‰õµ]?Ì@}kÞGÙyh.s>õ~R&ô‰®bXãFS¨œ)Wr3Ë"µby»œ_"9³dJ;ÍÌL€ÞÐÎ)õÑZ£ÁÖè†âê5æУ¬Ã+fgçK¿Åá8º=œhã>j%ÄÐà}(ŽÇˆód9^‰—!X<ö¥ña€h¦ãß–mí‡PôÛ´²éáÏ/ÙT1g3;R¤»{š)>ó‘ögÙ\fl˜=:”Sä‹x`¹‘ˆ6’Ýï†nk,aùáð¦‡O/rͳåI\“3’“ùm16n8mäØrncóßç«èAȺ}V7¬Ú¸ãÀ¸†]í(Š|ýåÈ øÓlƒOW û=°lrW1‹c+ÁÖv¸ rϸ"ÂèH¹á€:ÌÉ >§¯ <”÷óø}"ÐÚI7]5çÿ»Ÿ‚j'ƒ;MY|DIs2«+C€¿Â÷»Í‹@a~ehKØ({£ÁŠkîÃÛ¼h+{/Ç`;RÓ­ AØý‚“”ú $‰‰ õÔg7ØAøtѳìYÙQ]t4-Þ…òâ"dH4ŒX•¸á¬á éz—FãŸbø,S•çJÑ $™2Js#üõ³CX Ês¯ÖŠPê&ÓN`<’r>–itZ¹bEÓî+¶’5!âiŠz…u°tC°l o„wŸJòŠ+fˆ¤–.5a|×p׌‡;¼³šš…¡Á~iždwˆ%=‹f®ÊEêÁ2BqCDŠR‚øúdÄ¢—®ÝoÌÂù"i´´£Ø? Úc<sŽo|x­-IÜ Ý“;;Ò-8ô8xÝÆ×,¾æÈ|9íén¢3ö1Éûø»=Ö¦C¨Ú„¹VØ{Ñ’'ÚñèbÏÅþ‚Ö$tÌšƒ‰¯ŽÔ¾šz™¥,f+Gzé¢À´ƒA1*àÏl'r¬œÔÛDR¬Cðd+ã)Â0«5"QBƒ™Pyuê”ÜŒ1ÄoXÔ›8Öv $h]H ì$Oš…å³®Î!m]/Fˆ©¸y Žånv°ôÂìÁ}‹›jÒÍBp©v©&kæÅ6éû*7C5SßD”ƃS²ÜÌ¢[õe«¸È4®0|“Æ—Û˜Q¹âÀ$¦ýÔ—í’¦­ŽÀ°G­¥¢íCʳUr¼"ÆüoÄðÓ¾pbK•°´i©F‹OaPÁQâ©ý&µç„/»Ýö‚ƺÃA =ƒ­ 'ÓN ‘Q]÷â œ +ÎQHü— @m|©jÛs ºÅ-؈½Å][[ÕMoGwU3£&A§Ýi&í`þXn&©§ Yÿjy¶üTœ•Ñ0ÝN¹Þ {ý£ +ÌÜPЋ¡@²zœ2ò87t#q°ê ͼ˜ªh¡_§6‰·í²_–Þdë‘äã”ÏÎHÔÈppoyì­ÁPç%;<éÀ|ö†¢áå„â£ÓÂH¯Æ W±³±;aä†þG{™ôÆ‘Qø®_QGànU®Ui †ç`Ã˧1`&E#YDk¡å_ïŒ%3"ki‰™ËŒD±»²2^¼÷=K¼Ï?.lÀMƒBnµô³Q&@fî)ï‰ßtò^ -9éü¤éŠ'"YàFÓÊrYÛ`…ÓXñ¾J¡RšÔ M´%¡ÛÔw`x‰TÆ°lQ6¸ìr†+õ‹áˆEúiyдµõŽvRiZ¤:ž”ŽO|%—ðé¤oÛCÞÚ Uli0«×‚2Ëoö+iw¦˜ðoEÁö"ðOg÷Óô?˜ÐÀCï0»L÷–ɨÚNð$<ù¼ˆ¤s›»0€¼M|Ñ䛣b`Y‘õ¿ëÙ(O½›iô`P÷Êßò¿XîŽ6¡$E —åúÄlŸ±Ò¾3oRu­sIÆnãšR²ïé®vbk«àñ¡6‹üÀH ^šÅDWýÐãõ=À‘ +(4¾Kž)ì(i\d}-iŽKZ”¯y Å•.‹s®Å­þªÇ‘w?ŠFÔ„{é¨ï{L¶­+Q[y¤â¬|» HÕàݸá÷uæè+<øR[`ïjÒ^r.Üö±W¥‘âÈ%RfFrÉ>]{ %Ö%ì|Í6NAu> ü\N#ûuN~ÇX§kš/Ÿf»\ÁJL—ïyYð3È3¤ógèÛoD>àFþ²ÃÛþeÖô/háûaƒs?W¶†Å?þÏœ9¶ {lÝl.çbÔ—œ(ýh:Q {™Û žþ¹w žöæs/ö™Áæ)½ÄgâYŸi¿ö>3>é3Ãà7”¦úËøŒÀÿ"£ÃJF Þ°\0vœÇ¥oPƒAQܯT"Bïa&´&ƒ‡±^W´´œK@Fàw"M¢6'u¾ÞR™ lS?±|¢·Ôú©z9lŒ©–Û¿ÓÓfd¦ñ8U‰œaG=E‡‡ý§µ¶Ÿð=?g¯$ç¸.X©dU»@)ªxúZ®<¸æå½ç‚)y*ë3Ië3AOxÂ'§¿ŠoOï÷FåÔþ;O/53æUy‰ñøáœñ̾v¿ñxó„ñ¬ˆI=맋+¹Pöõî'dT/½Ç”ÀJ$‹OALûaŸ>¸y”mÆ-mšà\ ¤F‘ÆlÅ|Ûo±¿Ð1µ¢ªg‘JgáÂÄ ÏÆu½\uMåß)Д'”¶WR½|u¾¼¥%üƒUþ×ÞáæwëÕÛ¦ØæI¢OäÓ yÃÃiº€m¶TGÀ&¢’ì·î]?‚Ñ$*N*㞶|¯[ü‰içØ2䄾×mç +<É¢ tï‰/Q9N9 +ŸR,ÇæáÉžb RÓe^:Džÿxƒºúl‰Â±Æ«DiQ¨ÓA˜šdXѯ~õ€œ89QÕßPûA2Ïá­|ݯ·È­,¾Ó”ì/¾¾Aæã‹ÕBÕ̲Ç0±Á ÔˆéÀÛÇãÔ¬OT׬ÀºÈdÿ=h¨Tî³K¹œHËÓ±T ­´*çùw•Ïv‡Û'è9Y#%tÛ%ðvU%›Ù^ ¬(šîTS±ýó[%®Iâ­¡Áy´„kA©RL¢æIqTÔ#WñûM^°’æ´´H±Tî¨TÝ_êJà —¬™Ú+W¼_q¶BÞ¸aœÆF!Ýî Ñà+2Î`®îh»ZôJjªQVgˆ-uGxm‚6LFSÝEe‚þˆ‘”½2’©/àp‘fÔ¼ºÇ•'óVœCñ¢¼vÊD}bÑ°ƒ#ú”P'”'é{ìþÖ{Oz’™Vø·&ÖcOêŽyᑃW€#‹†ï”¡—â¦ky&J+ˆ³&Êf°‹øq0Øݲ=ÓÐØMˆ¬žaì©5v3o©UµC>tUíZœPÏ/[„™ó}ÑÖìSÖ¹&“M™tº„vÉæ—ß]Ýì—_×—zXÏX(ëŸ{7·í‰ï ê¸,7‘«M‚|…=aí±û¡wŽŽ,=ï÷KyÍ;öѯø¦™€Q&Àd, b+«»5tÛo®a˜QꆒR>BRM>‰‡ +ØÅQïè6C Ò,•oÖàÍfõ¤3űQÂ\¹ê ýˆHù:~· +_Ç;oSjþj§S…*¿KÕ67!1ŠÕ9x&^㼦E‰]CAºVò%§?kX[)êX$ð€ÿñVRbÍ°C-#a¿t̶ÁUÝŒI5›Jþ²-mÉ+AèÉÈÅJøâîùöoáF&Üž_tK`Ä9©A@ºò«Þ4Uek‘Šz’ó±½ÿ 0Þ/M +endstream +endobj +86 0 obj +[171 0 R] +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 6206 +>> +stream +H‰¤Wkoä¶ýî_Á&°‹EI@ »N‚-¤íú[·(ÆöØë¬_{×q}y$/%­q ;ÖƒºsÏ9÷è/ÛÇ«‹õÙ£úᇣßÕѯëç»oêÇßPïOjU¯lÓ†ÿ;רíåÁÑ/Ÿjuùpptbþ]+£N.ªzUûFœ)þñ¤üª ï„ÿºU«ÜàVΧl»j[Þ¹984FŸüqðÓÉÁO¿…/ý'|Þ‡wÃñðׯG?ßÔêøîàïGŸî×·á¯ëÛKu¸¹­~y¯~ûðñXùÖ–Ñ*ê+„i(ÌŽ’>°2CeênÕߪÎö«a<„÷ÏÃc] +«¿éʸÄá6ühVF^éÊÚ•S‡·ÚÔ+¯/ÕæF³êBhÚÂK[Ýá ¸ÚÃÕª…»øB8á,žù¬àR‡Zo>âááÖ·5\ièJ W®´éá³wÚÑ×+ÓÂWt<œúNÝkƒ‡¬Ã-— f<ñxHK˜˜[¸z­+ŒB¼H¿ÖÖÀÇžÕ“„__´/R +Ńž}G©ßCPx2—@å³7ê"„ÓÁåëT·ÊÓ)X¿™9…rÅ+|å\éžpù­þ×É_¾^DPS ¨‡úéÁà8¬$t_<ÚÉ£Wµa¯oWu38Õ…6t z¢:˜jê–è1´š½Ýèò…§k襉ˆ¸žP¢Ô Û@žt€s8÷AÝèÊAe׺Á>«;~ýŒš}kŸ‡A·2Ü»Ž;ñÌuðÿB{¸qN$b ÏY †ƒ1š ½;nõ"¥$®üá©?9« Ãò„!{,ŠÂ "¿d  pêÍi(D·3Z‹%ÅêE_À¨Â;Í5¡fÇ8±t#öBÅi 8[± Qߣý#´¾euK»‰_º"l'k<oÚ†ØRN4У]Ûô}Æ+¦' +,Ìye¡¿ Q„ÃW€'¢AzÖ5´R¹ˆ'O$Lžl¥þ¦›6R½Øß|)2´ 0Q’ÙWLèifI“˜¿¡cŠ©ÚUQßC¥œÔŵK* ´@› Í£ëí Œîet¡Ž-´¡%¥"ÖIܘFs”ºENÐh¹Ò{ÄF"Bã´æs–ÑREï‡=…Å ž™Z + Y;îd®鳤 _.'%DSF–‡=„‰+J2ŒˆÏMU´ T#¹"ì’Ÿ7ì]Âì¿Åò,·ÞìGX‚k¡YýnáÛÙ¸¢fDþëß®ÂÝÝ®ŽZðëÌ;Dæmä'Jæ¥~¡2÷Úr³ˆ[gÎ#¢”ÜKô#zg'ìÛNØ×ïdßv ûj*&nC}Ô—‘±çpF WžÃWhoœÛ;좠Ar¬6È£ggF/+@ä„ÅkÇŽw»ÕFøÜ©¥ÊCojέ’<©­+ë^ bS¢¨‰*’¨‡¥¶ mÏYâ¹WT)mJI2Õõä|óRÔ-JøÄo©à˜ßÑæ‰0>)Ç[iÄ‚°‡èj•ŒÑ1ÇÞ0/Ýé†Ô9œ1L}gN?þËõuŒ;lôg­ŽßòÕÐw¥êwì„mg…E‰ÔÈí¾à‹_Ë%‘m±×=hOë_2öØ»$‚×D4c²ò’¬&Fþ«F­Ú(!¡Qâx—K¨äèض<0gŒø-W,ÂkŽYNy[¼¢„ KÙ,5:£:RÉ'úÒ‘ÄFÕNCv³0ý7.Ѳ‡J,ºìÓö`ÆŠ§Y,ÐTKíÍ›K±òŒÖ4^yæI=3°„À‹šÃ>TßÍ üTO7`°Zøã‚(þ|cPÒú‰ac+wÅžwE;ÞAµv®›<&¢Òx­ï¦þ2Ç:À1s>nž\ÐÅøëêúäøç.‹èÿ†„€$Oh$zÏ{0v‘ÊÈ )à†ö5nèæÖ:6‹´Æ'÷̺žùÄÃísÆ\bÁl™"™šÖlÀ;5iEÖÒÊDnä ÀcäbD»Ü88ü>¾‡ÃÒÌp]…ù‰$c7ï÷¨¡j(DAHÉ…zI(„Jú¡e(\EÎdÁV'd*£ÉvVÔ±•ëK"e¦ŠPžN”‡Øgö¹MR•lÀ«0 à$ãŒ$i 9ãÇ>(sÑâ2Ù’Vk¿cj‚Ö»T*Q™!Uƽ\™Q]ü¤.ýžuißP0s-ÛÚïeŒÆìd TF;Ë ¡>­n°ÝF}à)OiYÜ"óN#â–x9¹i ‡é€sÿWtS®vDUyx§ÕJÌ‹Ér5£uÒtó@rC­$¹ñ,"™t+T‘(i vî;{–×­p$a!€{ƺŒòu©'N­Í®kzì _¡ÎY²)*¹ð²‘ÌäMêPÏîc/¬™#ž—Œo.}¹ß¶‚úP­„H. ŠuÖÏ=0ãJîÙ ™nXÕ 2yüÍD»‘©i +FØÚ Xˆˆÿ³ø³ô6ïq!-¬2ÎV¡ÁŸ4,N„ò áý$áL<Ôê/Ù‚k;òœ¼Ó>¨&èJüJd¶JSÂÇ‘ ©ÞFæ /ªˆ€nÕ'MŒ2……+üfÀ#¤;m/f˜ +Ë‘øq$"YŽ¬¶DÖ`v ˇOÏ‘Q¡ +å&ñŽÒ5+ÅL͹FÛÐ2ôË*Û¡B{ÈëZ”ŠçÌ ºæ;£Y¤v) Ý]¢7¾Ø]vL!:ó#pZÌ£Üa¬¥ÓÓ:ö¶qïÐ8‹XŸÒ/fK„µ¹©ë hŠTzLØYKþ´›Ì>rçK€5vÀÚZ8Ì,: i j&ÐèÒ™¶À¬´8HŸ­5ºÅ j^·†‰1µp€…JöèÖ3 £çu± ^@3‘Ë ULf^jxiú‚¼7ж”“ÓŽjw'<ҋ݆ÿ1WÉrlð¸g%Y7ò¢í(²ñ‡Ñ2@’ÐŽ-”®„6ñù?•ªé wÒõ˜éFr7ìÀLã…Õžh¨21 Ö"®sÖÌ»É6‚OÙ¤NPsz¨Qš!¾sA´%´'rNûƒì^ª&ϵºdª»œSa-¼}Ћz6uF:þ—íut è«ë¸Ð…Ù¨3¨ñØAÁ.ynà!H” +¤=äÙ´”C5\_`tÎ÷@?òȮـ€ùì‘O7EI¨¹Š%&KÏýÎ Á¿ïDµB£›ƒVÄÏUä #:ÐoĬ§GxóHá޴²2¦yº'…±–ŒzÑ )³ŽõdÞ˜KïB®ñŒ29 áY\—⚘Mæ ät‡êwOw“î‡a¼3µ;ðP÷Âo¿9%G”õ?Þ«¥7näÿMÀ£Ýd“œ ï!¹.ä²#Kv$X¼ ôïÓõêªî&G”³ØÓ fÈ~T}õ=ü~5ôEß"„Æ ‰O²áÅŸ·É²“¾—þ~I¶-ÀkïÕÆ>œ›ÆŠnK‘‰¹M®É7¹Æ7ÍeçÑÇfddHŠù–W;%œc4àkýè}—‹–á%ýùzãˆ7CèLå Û+}í‘ì%c¼‚#Ócõ#ä ÷\"á9™X3Ä’hÄ|ò\þ qñ ­ºÏàDhQä5{êDZù>Cm„è9Ã3£)–‰‡q2–eÝQ(¿Dãk7¬™idö$Há|Aí}û¨gŽ·ˆr«½Ù ©^‡C?lX©5‘€WZš+u8zš(3Qr È×BŠñ^Ðn›IÒ?SIa"<#Âek©µXjâÈD[«`8|_¯yôŒftÒ¤cªÝM½5~œ'â8ò\‰¼aÜA^˜ wÜÜQ£@Î&žS°Ón¸[ÒÕHV‰.t¼Ry3*1å­ÙQùÌ¡pUJ¹¡ óôqJXŸ‹6Ñðõ©° §)#b‹YÕ2ëÈ$~¦ùÊ6˜$¸¦Ëu²OGoL÷äØ*]ÅH¾Gó<¬pÓ“c¿¢±KáT‰á‡”MŒ}7ö~‹(³3¸Ðt¥ñ (ó%Ê–=”Í£qà¹6¹]n%Êñ#Ç£xdžÔ{£Näj‘üß± MvˆÖýYò`‹<±óø=¬òCÆ=gÇ.õlZ)*üŸšÝÏ;ž†%áb¡Ó óòÐL,*`(;Ë/2än¡Ò–ܸÒòÃH™,RJ”L1ùñ]“4¾Ÿ¾[z®|ÿ°§²~1¾ßøÖ… ?ε¢P@‚¦ uJ Aºê²‘kÂL§%’9'>g¿"}³Bºã Ø½³5€’tJq”·Èþä +MŸ7†B9B*Æ+Þ3Ǽ¤q Ùù8-g6yÑmŒ{¾ÿ‹!1+‘žãØÄq¬Àûqd† +>{èc”Ñ£çbWQß¼p)„ +ÁÿØ`ö ‹:v=ÎŽ÷›“h6À3¯5m*Šð[zåo¶û2Ú¾p8Ò™]#tÅ\¢Â6;‡›Pe › +éÍgðªÇ`°Oô³Ÿà–ç>Â]ø?:chUýñ„ßUŽƒg)Ð…ð ëeƒ/sWk´TÍ$,Á5×ý35õÆPtAÝ7 VÇ`AY,s=ñ+µå+yÄKeU'c1ÆD¢‹fˆ`ÖÕ¶xUuÕÜ·È!.Qj¼yá ‘Ã“a`âÍ +¸L„ÇÞÐôõc¸8oý”ÇW:X ·y.CXžN½‘¦5þå¦ñyv¬‘ÉYN%ïò|³9Ÿ©™œ„å;yA†Èðl»ºÊ¥u•[¶oaÁ­ýÌk¶ù+[îÜa¹wtw&Š1ÃCo~Ü72¹ñë`ìîÁñËŠ¦ÝÙ¿Ó |yîμF©ïé·Ô3¿QE„T=@­8 l˜÷Ž5‹ã/TM·QÍœ' Ï”‚ò?_ú…œfÉZÂëéù•} æ¾ÏïÀmìççêpëâ`Z®¦´*4Ž¾MÎ_-qò©y)UÌ+™Ðù¨ £YÛXÛ䧇aX H¼ë¯ê +y‡¥\úájÃܹŒµý{*æ¿m+ÂÞK¦ÓCƒÐÄcÏœò  #ýöKïQc…!\ÔDÌ&|eÊ®¤ßÆ êîs!e²Hßt°{ã)¾ˆý£uoAR~Õå÷i†ßý%QÛö—ÃÙql…’…ö¢’KB¬®ù³ìô;Èò?ŠQ1ö½?Mä0Z†QÇíñó¿}ôðÏU÷‰»•7òÄ™éZ)7ʈSü¬cèó[´J拤*ƒ +›áOi÷påë†ãÖÒ•Vþº`–·sA{]BÊlÂ@´ýÿ°g"ÍÙ*-ÿ»‚‰¼ü}5ÒÏp9ÜÍ÷¾…£–|ˆÆ€›“5ÓÄž™=òñäá‹ëWÁÇ ‡ =ºK#8bw—í4YEÕ|òKë]rjÎHz4J'¸I¼,¹ó!ÉýÞãòg¨ÅhÜœØkäaÅf`-|ÀܺÙM|›Ûe*€N¡ÙBhaL!Lî~å• »RA7²D¢;¥]7 ©§¹Ófa|Jª ÂÜ"±³­†)¶€‚ðÖb’L÷³‰*„>ûM·åi´å§U[oàØŽõO˜¸±Ô\t)ĈënÕ3Ž„PyŽ¤A3¿‘OØ~+ÕlöcåˆÓoëÌ2Œ¥.à*Ų`qUkÛcäž[–í²&Çëî_$-V*é +Ì£xâ™KhdamÈ7Ab¤Àų½\äÒÏý*më*y•Ya¦0hÄjd²'¿uÇÛʹݺ]¿Í1Ê}Ÿ}«¤-¹g¥‹Ét¦µþÚ)Ķôå8x\ÅJ>î£gvÆ𾂚’|‹žÞO ?wÙ£S¢´¡É ðxwÖ—Y°µÎ(‹¨a^„»•íEà2zpq +šë=¬«,ùŽÐ«Çg‰ªÌÒ÷MMB{´DL¾Xú.’G™lX”3x5_™0dŽ°0§ÙÒ•™çP#Ũ[Â禮¢t8œÂ÷:?B–$¬†¹¥>‡爬/Àö‘ÌêÛ ö«qÜ?°x*D†Xçm¾Èo³Åõëü–ëa©,Û_¢ $–ç–s–åÜeŽÛ•Ù?ŒÑæŠÑÖ’ÑBW:}ÿ§¿$g_èû¨±µù©¥jóÿ¹™*ç¬öxݶ¶=ѽÎcŽŸ+.Eµ}„†»¢öÍzaO^Ø½Í /â…·ì¾*Bf6Áp¥q3ªÕØ7hî+x⇳­¸†±\±ì±ÑÀRyXÞ {¡vãc‰¢ÌC4VüNÏþ§šÔËæö„}úO¤ûŸÕÚ”TÀíä46µ^Þ½$[RBŠ)%*™o”,0<ˆ¢‚ötù©žÞ±Oübÿ JŽ–E»§X‘;%.NTâ&XôÑÃ%®ºOTb®™ŒèÕÍfñú—Ëa8ÐÛÒhÞhoÑ@{ƒà­Ž‡°ã”YÕùë%O£õJ±²Ø¤òèe<‡ñ\¾˜X Î˜Fl—a–ýi]"ˆ"¼è8¼–´ÚFøF­R}zM¸øÐÄÓ§>"q½ï¬rC\ëÚ)®æ7ØùÝðžûš=ƒ‰—^õd˜J;OvÎAmÛý­÷؈KCtƒ±J‰ë6NÖÑxü_ÅÉCºð®ÜúQ'í#¨™'v[ÄèxüBä†à"ç8Úº ËgEëoxæ.xtƒŠS›~-?Km0L­pâ-v²/N:›QJ‚ Zƈ ”ÈÒŽËöŽSµc”g«(ü…ƒÀ“VÑüNµšhl©)ð÷µ‰œ@Ø6…R"Í×éÌà¨d³ÿ 0 Cýö +endstream +endobj +88 0 obj +[172 0 R 173 0 R] +endobj +89 0 obj +<< +/Filter /FlateDecode +/Length 5492 +>> +stream +H‰¼WioÇýÎ_Ñ·íîô5`Ðá +lDZ6ŸÂÀà%šE2KÉŠþ}êêkf–2F @Üíé®®zõê½í‹ý§«w'gŸÔwßmÿ¦¶?ž|½ýüI=þòõ+uôrwÔ¨fc]€ÿ½wjy´ýám£.ï¶;ó[£ŒÚ½;Z7›Æ9µ;Sòá‹j7¼ÿºMPƸëC¯lØ„ÐÂ;þ¹2ºßVVÿk÷×£ïwGßÿ'þÄ}p8¿ý¸ýËÇF½¾=úûÑöíÝÉ FúãÉÍ¥Z]ܬx©·?½zóZuÆÔQ+ î†k8ÜDK`ÈfÀSà=Zkr˜í7Ã0´ç'½¶vÓªÕg½6CÞ_(ŽýV³éàAúÞâBxÃôøáwø>@œÚnl^u¦×ÃÆÀwXp[c7Wy\u­áÝ^­žÉê+:Þ«Õ |èðÃïÚ:\ñ´¸ä£^{Üð„Î…7â;צÃ3.t‡ë/i=EëZÜÀ6¸þ#¬Ï6 .¸T˜ ú¸—[Á;-†Ïi¢høÐ ½ø÷F[ƒYø¤ÆáÜiÈ8e^¥ šW±|Ü=ä¯Ã Óï7ÖÖë|é€éy'ß'Õço4À¾¿ÒÎñ߯ú ÜG­~ÕTòMÎág+øQ xã[ü)@ô +Þ9غµ„®U«wï—íïŠýçЛ5~„^¹lº3BÆBßÌNöæPß`éä¿Ó–6¸F ÷¸\×â§;M ó"…«ÖïÕº6¥%å)h øsa=e[ ¡ü›ÚaHžifMá܇rm¨'ž©œI Õ…GçÓlHA/Tn\u#½}û …1Ðá¬0C`œåRнn%¯P¾BÅ&fö®Š~èxeG 2DW\ F_oŸ˜…j{‹_aßzݽÁ:+Ì“²Ë¼ß—pšâvˆDø{¼ÒÞa@V·ø £}ŠÕÀÔ÷™ËŒöô}€«©UÐŽ˜Í¨WHø®(«í97nʤ} 8̤‚ Ü=¾B#dM#8ÑÔ+§Úa†rœážo©ÛŽµöOÜÈk/´í¸_(þ3Ýóë2(˜ÿçÇ73ÎkIáWxN1Ï·ˆB#]îJŽ¡Až»k9HÛ’ç7 ¦y¶=œ”È0cçBAŽr³®™†n!çÜ6mV +1Fm”oÖ©3¦pªÑ;~9ÉŽb%—ã«*SÉmrÌØÿ£ ›vD"Ÿ öM¡•á&:¨@k è›eqkˆýç3ì‰q&ˆÑ…’þD¤]k^yžyÛ’˜Ï3ÈÉ„hƒHFÑd(õÊbxt5<\{ݘy¡8â—ù›•W*¯ÏÈùìk ¿PcMt*[L; +ÈHì3'í; "{ÏïQ×óx“ +Ç>¢íÎqû®¼+‰“uç)6T“l +m%2mõU •ÑürŠi¿¼4 Ä!n™ +¾©&¨Å4z±“3ªºÍ·M¤UÐÿœqhŸ`ã¯ËÐ9ì…®PˆKíÈӌȭ”t_ð1æ#LÍG÷tó5Pd;|E¾©ïe;,‰Ã\˼P‹àá30÷Ž—*=CöÕùk+‰ÿk +R/:d2 ¢•c F4p¢¡&±v,ø] jA¯d½ÿB„å}¦fg4Ÿ¼ÕáAÛ™•óI݉ Âú,—Ǩèâ†5"°'ôóMVh³•'i]ÎmŸÜÒ±µû +ªœq?­ Ù> Á’KªÝO÷pû=Ýý,‡ ôN—0â;º=ߤÀ=aùv‰9êKù–Ή@€TÓ¿/©z‡Yz(5ãzñHíÊ[€LÃz•<Ç€?~‚Ý 9 q¸„ˆ…²c¿Å”#Œ•?é& ô¬—žõL,œ 3Ê% ’zê_Ó<¦ã{:¾MF„ÑP¯õšÆùc à°û[óB¨ªWІ°ø{ÝRÝ·z]ðJ>ÖŽBÛ þà\¯1üVwŸí %€ÅãC¢¾×ƒe¡ÙÒ(ˆ¨¼ÓC‡ßA€¶4q_h;ÔËÉÜhj5«[RwǺ°Xž§kì‰Ý£N¢D.=&µJN +Õï‹vAª]&Š–—_p§ç·Á}í3ºC ƒhú‚W™'ö\Ð(WÓ ÏhbJš+(‹Tt·T½{d+BUÔ fŒÀ+Y†6Ñu7Gè¢'ÕŽ‹“ò8á®fTû³ŒÒŽ%Ôì'­éà>aÙ±ø/¸Ø}˜ÃP¹.\…skc)˜=wd$òÔÔ—Q‹èŒwöÜÉE¦9Ïîqxj¼µìk!ˆ~Š9¸pßIÆLGÁ?0?¾LÑ”µ¥-<ŒÚvF7DmÆT)J4ÅÑ•uä—±úc)U¬ an*Ò%è$ÝX¬-ÆwÁ53QÑvªEà_æ–P°&(ñ3G~ +—Kñ_QÛžÁI¨©~‹ƒ(á—ƒ²Y‚Ä´Õ^Ó#›G´þYê}6ñ‹ ) ½©Oö9wme%g­ÉÏ®‘ùéÈPwm"³Èn#6Á €CG½•\¦ø9ÐöŸ¹×Éj’Úƒ¥µj¯Ó9òÿ翨ã~ne +‡¬äöIÃÄd‰‹!gj^röäüà +ƒqÏÈI>#qÈk 鑉»åF’+DSXÞÀ<ś͌®y7’¼â¼`¸–šYêÂÒQ–ÂBáeFsPÆÉWU¼å²–,FS„ÆÐÕacêþÂ0QU&£/‰:É€9uçSnÅ¢µjTè‘v:^+?Õ³Ÿ +ú©4‚8’ÿAv¼*¸D[7ÚþO’]Y ·i懂ð…4Y¨Í’v•ó©~§ŠT»¬ "¼UaÄ»…®-ßp SºÆ…¬ŠÒð ¯â(ÜO…ûÓÄÀÌÄ)ý$ñúIåÜašŽ'ë÷H5!—ÞÚº¤ÞnÌ`:.é[ÌsÀºˆÞÂÆ3bâxËÙaúX—AòQ𻨭t(O[+Cí:èšv¾ŒuRw˜×>.a®ʼn´œdKåußð [Î÷,š"ú↉ÔÆ#ybÿõL ‡”gF_„d—iA2üu8ʧX@Àž4S +ÜnH—+ËÌB]C£CEÓc›4]´1XBƒÒÏ’‚Ë(œ_Ö.Ù1ƒ_ˆ(Ý ¢Á;†¶F.f1K>?¨…¤HÀ27;D9¸ë%=¬H<¿“‰¢…Y½]äŸß*ݤ½+[˜@¾Ìɹã ú–|­h©:á6’gXøs{ïÆ{?>R$x¡ï½zm’È5Êvõ~¶u1Ç>Ò/öŠÿàÝõhÁ-fú~ÛwCO{üé€0‡SƒáøÆ0ÊoGȵA»< 0pV?¦^á5>=<ù(Ìs[ݵÃÉaÞš¥0/.»>ÌÛæx˜÷3 AÞôü0oË0Ÿøù¢ØÉ° +ø  |cžn¨®)+Å“uè6þN<Î@ÁŸF¼X‚}ƒÁð®Þ’…GS[½¡È= ´ ËjO« Ë7i³É^ª =×7YÖ{ek󺩻1µ~‰QL;0?û ‹ó?é¶FÓ¸vP®kß"›Š0q«~F«Ñ&˜ŠMá—£8¥h£/ÜÜÔ™pŸ*§©}ƒgè=½;Wô¹äiÎ}û]Eÿ ±Ü¶™Ôtïf¤ÖtÛ.J-¹‹ pĘ–(ÈàóEüfžHKHÀËìáe0 ÓñÈE¸,*]¶ì©.L=bO ¡¿Â­Œ,¶ÑH¨|VshûŸÙ"2&•·ß Ý44º‡yhd/çiWkÊG=cšmõ”¸U <§cïkš`iþ+ô_ú㵜e˜QKæŒ?x‡!tDücçnáôîAx·´.w”ÉÞöÃ…þS Ÿ<à TÇ-1 Hôà™Ð1™Y>—­Vxfè k¿õc…ç¿‘ŠW¯s¯ ÂÁï]’2w ±þ·h>fÛÓÖu"ÿ¿óMî`c,ñŽ_Ê ɨAW¢+Ýùÿdeüý%eð ÿûR!û¢óUáíûø5CìÉŽ4~y/Æ÷Ý S\ñÛ°”–ëu”ú|¬'¸|:º…æ[4ò·ð>þú­êYha––¶Z}¦‰‹Œwqò‰jèüÚšËO!×¼2ápŒsá-¢‡|Œq¥X[Ô`ŒÆ8B®ÀÍšŒ †)wäÝÚŸ7È8'Q‹Ü,þÊ‹qº¾½Th½þŠxè_áÑ­¸bÂ%<;2 ãƒÊâØp/dJi õ;\«ÍrkBó$ÅW¡=äpÂO]²ö‰àöymp8Þ˜b©`¬ úTZÚzµ E-¬C-¬íœÐœÙ6QhO< XlïãÃ=ž$,™0ê¯H¥ÕqDø=DdÂõv̇Çrc¸CêŽdTódŒ44Í« øcyq÷Ò7¾né{ì­œ[¤iƒgÜ1pa¥C[oå®ÎCŒË©_‹Wl!ýeú~[]çwÑ›np?tÕÊ*é´¸K:3èmSÛ&;›J©Õ×59Öuít kë!(žý‰u4Wûñ::äu´gŽi£°DÇ(ðã芿½°æR`Šp¢ âÛø¼úl¨/ÚΘŸÚÌŽ—ÈuÐ^Ú‹ UǦF;}¯mCËOÎS!Ü¡ò‡´‹|ºZíMÞ8Ý0gȆ(!‡øô@V 9bçAµôYÝ3üÖ䛉þŠ‘u*bç+•ÃÑKO¹Î*¢3Ì%Ó!+WZ/6;ƒŒøNôoåîŠÕ$™pêR&î,™ˆcX+kNUuAˆB<~NyrÈk• © +D¯a¯-÷WLÿt^e_Z­5;_Z0 í „Ô™¯km/o³µÕs2ö#ÕEÏv¡ÛÔSù̱‡ð‘Yê©{*ìÎüÞä-ot—i7h٠ܼtäMéŽh»×.…å +n“ê•·Ô˜ËAR:g5žÓgU«\T‡Úè—4ýQÿÌ;ÐÈÂýp¼«:îƒ1ƒhÃwŽC¯½âäWëÙå¢ëÌœèêV}¤Ó‰ÑV{’ØC… s‡ h2ˆ5ŽýRËØàNŒ#mõÇÜɇ¯&‘ÝH§k°¤.¬ _²JFÌ{þÕ­ƒz“©žíQ8´À”sùÜ<͆—/¼ñQEã~ùHZM +y ίpMx㳊T?ÞÍõÂéNfuਠçGh°–`º¾ÁZÂu^ÃS‹Gˆ(žQÙ_Ôÿ¯8įÙ-¨,YÏ>馘ðP2ÿ× +èœÂÿ`‡ùÙõ +endstream +endobj +90 0 obj +[174 0 R 175 0 R 176 0 R 177 0 R 178 0 R 179 0 R 180 0 R 181 0 R 182 0 R] +endobj +91 0 obj +<< +/Filter /FlateDecode +/Length 6487 +>> +stream +H‰¬WÙnÇ}çWÔã iv-]]"É1ÈñÍ +.CŠ6…CŠV¾>w©µ»gØ#Ä!§ªîvî¹çÿõáñúòôüQ|÷Ýñ?ÄñûÓ¯÷Oâûï_¿}#Ž^Ÿµ¢m´éàkx¸::þñC+®¶GÇ'ê?­PâäòhÝ6-99áópMwà_ßtÂÞpÐ]ÓuîÜý²R²…ïVFþûäïG?œýðXü/Äwð 0ƒ¿½?þÛm+ÞÞýóèøÃçÓ;ôôýéÝ•XmîÖ?¾–Ç?½y÷VôÎ×^ tî7tW±»'Á[6Ð(5 ¥ø¨ªí›^—½öÍ0 ŽÝüYj×8±:ÅŸV¬åZ·ø‡k©<p/mcÄêN®»¦Çsk¥%V7â\züp/•«'ø»ÅóðAãxihà›­ÀïZ<º…ðÆS~>tøC+4þU|B3äŽiñòiþ¾¿JE ­ |äšž‡CÛ 4ɾÃs¹vÁ‘ùĽԺñÁ +8¶‘>ˆ‰ƒìz6Ùb_ßJ.rv¶9)þ~K¦ }Û¯Bž 9¥<ù()xl_ˆg²íê£ä÷'|¬ƒÛ(¾rÈFTpÛ ¨¡Bð_Æw€öÁŠÒÝ'¼|œtª® ¸1ÖI*ÊíG­µ„°è"…ÈÙåå‹/ \Žþ„ €ÂD_‰¤`s¹8ëw3H³ÍiH_p‚\ñ û°É%†Ï9£Ä¡(JôžÊ&ø†fYS¹KU°HÄÀ«¯žšÑ÷saÜvìqö<Ö¥Çgΰk¶×%8ÈÒÛ®À±ÃÇÏñ'4»Cy¼£² e×¥€pƒ_l—c°o+R›‡_ m? ÃoGs`©õtÑz¸óYj" 0îÙiæ"09' …fb;wjvBp­0‘ÙxÔUø4ÖÏÐX…þéa‹4i*[Êp’n¨²1MMPW7™NÎCYÛ¼7w3$ÒU »]ryX7»’Âöt³;¼›»Ù«Ð‚-WÀÐÏg‰±½MËõ/ôÄ3¦]Y¬Š†uƒÆ£OR[¼c/ò35“Óü'f¬æ¿7èºý&þ[4]ÒI£´Ÿ§×ëF%ŒgD`;uŒø¸’ðÍ;©‰PÞHcø'ÇþQŠ¢9Èç k_ˆ‰‚9Þ ­m `<_Ðåê ¥†i¼Å¯Y*ªJœF]^Ø#K,þ}rþ!‡Dý,-ßõ0u0øZü±pÚàÐÒ9:N"­º}}!-ÕjÞåx25žÚ +Éu}¡¨' ..Ãô¸íû€ˆêeJzj<ÑUPib@‹;¼µ&˜DΉUi3Š¿,ÊŽ‡.hèI Š?)o›Á¹^8³Öi +lååÉ¯Ë tûÓ¦<`±7z”7LŠ5“–ŽòIY*»eËEæ}%ËŠ—Ü’`Kß<¾¡ ¹OÄ€ÝlG$ÁHãæf"`aÚ!s“þ4$—âa`‘¡R¢ +I4Z`ª~’ꪴ/.βód[¹Fzê Zo^¾Ó>kb7ÂÔE0™zË)EËÑäêb£P›í(mÞ"2ÆsE¬¨[G‚fV³5hjŸW€®Œª¨™¶tÑxÄén~lÎk+~7w.ÿ~¦Y~Ø„ŠFÖC›ï²-ªÓBµ˜ j„KéJæË΄Iο'n¦aóï–¥ÎI}‰)YJÅ\¦­øÕn4¾Ã[Sp™m¢»E¶vÙ®|v\ž®R1¯±–³ŸWSdê¡X0Âú{ç33K4¿ÅxþNÀú]®{¢b¼BV;À\ͱr¿íx¿ÍmA\?™g– bMO]ˆ\ž€wxG<!w½[&î…?,ñ¾bcÜŽ¼ƒËYéï‰TÏFº‘ÔéW,*îª=5,ӯݗäÙÏ$8+»ñb¦r§|øÞ6ãÆëæHfqn‡šmÝ.¶mU¡p Ý¡µ‘CÍ9L±¸ãº@õvɧâ<V0šÆaúf^Úüíé’BÄÆd(_eAm‰øbYœ4ߎÖ5Ÿ´¤X–#…böÄg4ó~Žk"É|‘¤~ˆ¥ˆºµò%ÕG.ȾÒÆ’…Ö vLÇY\„‚„Ԩ׳¢>.Uéq¦“„ÞëÓ -·dSUÙl½Þ‘MX²òÀ§¼é*oi½Ê%=…X3,HHe14ÚG è0ȉl/D;õ˜Ó¾dBÞ%²Ì›ö& 7q:Í^ÜêØ_ÔobõÛ©«÷Smû©ëƒ@ê‘÷ªé6Ðâê3Ä”<ž¼*&n“#5žÞËÀKc‰A”ƒ„Ãc²ÄéÛ1±¢#ª=P7 f¼îØ‹:Ðî}1ý#’MÂíš2w/ˆL‰PhÚ R>0êM +6 ï°ÈFíw‰Y‰ÃÜ•ŠlÜ}q8CzÒ“]aædòQ*]è…ÉRòù ¢~¨ç·êü|6­ï‹^#Èg=8‡ EÂ&¯ahM¡üRž4¬&šo¤1ÌM†¦o#»çt²R¨Ú‰y^,—-ÎW7KÜáà OÛô¶UÂ*Ë+¥óˆÃ=ØS½+-Èœ6nT*œ&$€ „ ŠkJÓ‚y@üý‹¼ /[»±Z/Žw<ˆUHïŽeÓöÕHöAƒýrK¡Òb²ÖqQÒ4оÀ_~LTZÅkÒ&ˆ(¸c› «ˆ$öœ€ã°LÒAWؽIæn"ÛÅ%ëyyÖÇr¦DH‹ŸE] « EÛ÷M›PgVÁ·“iÕš£3ç´ª +_6‹mM'1ÐÐh\ª¶ozåUÝPˆ 1¹#šV+ÇŸô5¯h™¨³•ê†ÙHLüjª™¥mħDf†Ö€4zÅÙ%© |‚ŠTœŠ»ÀRÈÚ¼=K¼ND= Q4‹'LÚíŸÅMšÆsš/o&уÉÕ̤ñ.…t†Úî‰>ÌÝË#v!À}«G€ëbßwj඗‡Ö [«O·‹A7Q‰Vm<ÛCz{øk¼ŠVGi_ OÒ,6¢ÒØbÑéÛ®mÔÐÃda—Ëêó£ÖJ~’†ÄÎWIÈ9“ˆ˜dE… ÀÙqè‡êÃ% ø”Å)`¹g,«–Á옔1ÐB: ˜Í5î·$kõœàµöF‚-ñXˆ«O C~î‰Hw¨n2×};™³CdØa~®÷ ŒuÀ‡ÑøËJI +¸[nw:OÕêñh7ƒ•±.—ˆsäBÂÇÝíZÑúÙ]à……0IKŽë\ÒxÏù¿%v0—$vRôlb³¨–e ­È9 qq·Á ciËn¡?pì’÷¢kÚtÏEŽ'“¡ÆxžME¹ÚJ^³X*ûv"Mvìtë®.—†”×f7Çúf²n–e÷L¦sî¼}œ1S“.Ѻ¶QÑW•{„¢c"ÄtÅš¦éïÒÖ5/$QW¢Á’½¤ÌÔ ˜Û½€)âÝÛ0Ù³\±máAÁ–iÌ’ +_}D„Χçž%§ò±)Š³Ä ñ-YÌãÿy¯–¹m$|÷¯àq¸'")QÒ1ˆÝ½ì!vö ÷´ÇqæaôØkûß/ëÁb‘’ºÕ6²—™nµD‘U_}ŽÊ¼KS9ö…âLcôl“+p´ÙAV{·p‚pî Øe¤ŽRI3Ù'ñŠDÎ;–ð]Ùï”cékÇr&66“§l¸µ5Ö–"ZO9[ÑÞt­SÑãW€å¤,U6£“"᯴žýëøT®†dmºvز'æÚҜʜŽÉœ†¹9ÅñÑdÝÓ$OpÆ?ç-MU_굞¡JP€Tº¼Wœ§žæ u&¾x‚§wÃøâPÊt¡ˆ#®yGD{¬Ï‹ï +è-ø\gM÷f¬¸-c¬prÁû†¶õËbãÇQÙÒ‹†®ôú•…çcƒ¸d` ŸŒ4.šN9‚’“ÙÊ6PÁÅHÄ +j¶Ië8h¼úlq§5R W•¤ò AÊf;g™H"ݘî“Aá± ð\–y–Meu^EØ|ºY&MxÕRK)?|ÛîWl·”RØYÄÒà•¿,íüÈv>v¾Ÿ™ùÀf¾_5ó÷MOõ.FÊ÷ÙÞs?`¼5žjý,ÞWf­K²[ ”®Özì¦XƒAüü• ›Ç5Ô>^ÚVÚáà\ÞW…6æ?Í8*Ø +ÂÓ̦)iáW +$¸5½Ð£’å{L^™±ˆA™Ð>3öº:àT—7´2ådŠšnµ€”oåkÞêÌ¢ É„‹8ò°Ö·“ZxR2 +­94š¥Ðàí*€µ >,NW?©Xp d@a¤´C£rr@Ã…Hg=+¬ãaÄÞÁéãcæ)5^6’Þ7Ž¨Ã¹"gú£„3L#üõaæšn»àÜã<°Ö0‹ä»^™Í* ±æÿr¿ÿ›¿‹Í×úCaé™y¤Pö! B˜-½Òt¤­„ÑSÆEéåÌ͆¯gKâJŽO[«Ó–ée&]yG¡°‰Ú•! h +÷$z°#k7âBÓüxáÎ|Q¾jy—Ǭ‡X‡¼k6¹»Pùí@šJƒãÃÊØÄÁÏ6[6 aƒvÇs.¤e{’}1üCÄÀXJF£Î¼k–q¤{ËØÎó§—ÐÆÙ†Ý8•m“XÉ”g•–_r;MÝ ôºŠ: +tŒ‰h¯þÒï«`½Ðô\ºÞš4—2)¼Ó +ÿöpl‰…qÍôÆxVš^ +2á”ü0?@îÀ)Îæ~6°».1QÄŒ%Ju%1û2ZprmÀR·æÈ“%–LÓ°º@MàŽx’·föжdܼqžÒnƒD¯šX «BgѤµô¼Š~$é/Ð4œBÓvà¸8n…DÜ8*?§´›Ã=º7 9¸dÚÄyæÉÙGŽ˜ÐÓM”! TŸLf&­A“B¦ÓÕ®±¦Àƒ{€…:V´íH—Ç/:æ^Z›œoUe½Åzƒ‰kDÀNú‚Èêi×Ç)An¬„œÅëúøv…=ÜÐms¸ Íq—æêwç\3R™Ù¿>GÇc|AéQòðIe +x¸¨e; +E:XÕ~B\j_.¹‡¾m°ªñéE€ý¢á ʧC×â;wq)ôØŠcËÒa¤tX™+:ûßwD†NfèµcòNôÈtðÈm/*«üWãPÛi|Üà/:2YÒ•ÙhlGaW¢p%YºÐ*‹|¨F:aË[í>41³uÏŒ€t´Æ1F…&ŽWñ®0r¥(ÜG¶¶ž´L…“Àê@wÔÖWŒ·§¤:æñÞÈò;\ xÂ}·ím™µA-4Á|ÄZ"5ß5¡àº ]îº1Èq!ÇnFJ_¦©8 ËPé‚r¾™çÓIÓ&K|¼£ˆG™zŠ°é$bTÂá&#*Ñ™ü~ÕôžÀâM¿7jI´Å¤U-$ì½72œâÖÍ3µ@ösV)ø˜\é ú!è€ÐxaË"9òRi%Ó1AæÑêwä±ÐüÈï=w§S ]“ `G¥õk”—ήXÍb ´¸£-ªŠ¦IœÏ5æ‚ÄÖEG_o—·éÈ.$©æR˜J[™>ŠB"6®ùŽåê‰ÍÆ·ŽF*íâ\†SžgfC³ïŒ?u'V™ùÓ ´4cÝbÆ|žçA‚’¼ T= Þ°,xR?ëË1`Àn/@ÕP¡ªnioàS·ÆCÑÍf󜋔RT<ƒ>çIgÇ|²À|ôEÂQ¾‚Ÿc.òjçlOe;aŽyšñ©vÓÀ°ök: —ŸP.bcµ[9ι+z‚Ï)67£‰ž©FEQƒï^<¼GQüb|’¢0Qþ"}t嘊4²³ àú2~7WÀnÔšˆƒ´¶¸Ö+£®º@Ò4rlDú Ô±|S=/Ü-¤ÖœkP“æyNìƼ#Ï 5á€ÓÚÜjßÖÞg,ûmÛ¨I6ôƽ2É?7©`ß0(KÙNmRĉ-H’­­Ë¯ºeüf–ÝUWú›­î*q©pM3R6‘Šzfê’¼X~NÊë+69¯@ ⢿ž\RNP ¡ÀkeÚìŒk¨T¦ÁÁŽ¯A \†\ÒÉÐ!5ØyJnv”6ü…­Ó½J¶H[í´â¢mh•‹žê *¡Ãîý—}&ö$O«D-Câ4Uˆª±'¢?œêϱG2ܬCäJ¯Í?að°†q«ñÉ/’b°ä˜Eecõå¼)|JÍ° +ŽD(Ùø¡™úBŠÏ\…™+¢ax©:lBÿQÊ(Œœ»UVú¸-n]cºi¼nÃä +¨\íš7¶-íkç=® ± ÊoK÷³mΓƒÖY‡·½4oUáîK¾7i3÷ +ª4,â!θ d«ùÌJùû ’§L›[ð£:°aƒ*>ºÏ»š;©¼ïeÒwÚÀ_Lùq{Æ£*„v“IœW°Úôðç x«+yk ,Þ)¯)”Éⶥ|‰²FŒ;7iC@Š³>¨ïIÞò°Œ’¤š½0•p71i½ŒžhßIG¸<‹cÉ~äËñ"l„3ìX7æT^;-±È]Ù+­„GíÞ·c¨/1Ô¯(¾+»fÁññ>1¸Ž*¹JA–…rÂÔó½C³dÑäÇò4ž­ËŠçé© vYQ‡JQu»Åó¨ôL]Î=凒uX1³µ@Qê¹l +ˆ!¼z%kó1Êü–!»`Ìga‚_¿ÛA6Ä®¶S.üRJovØÒ”b¿A×ï%z$ $gÁAã×g‹=0[$oÌЙsþöZÎ9çl¯]Ÿöºë¼9Þ½øé¯[s÷üâ§7ö?Ì›w/pþ±ÁøÖ_·C;™‚¥B¼ŠüÛ›ôà8‘cî‰\'Ê*ÊIž`¬VW|wdç&8Òc3Úží,öÓ åä7Ò½=eB!lKL +gÉ |m Q!€ãþÞ™{îgÂ7 ,°]ø(bïí5UÍu=û¾¿žÜÔëz^™ÓVK-;UV+®øfoøCðRçú1ÒRê\tÄpwÆ2ôZø~¤ÓêAòO°^žy +r¦"Ö?æF +l6R¶áýM$‚k´#¹dOŠÍ(¦§#­Â×´ì‘/£¬y­´m^E¬@›•#Ñ"w¼È‡ø*D +êÕ3rÌ0?Ò¾!Ö>lîm×–¼ë_×¾ï"÷¹h³Tí·w¹³+àÉ- .ã ¥2ѽoÜD(Ç1û,·GÿÖq¤¡¥±{K£œüø= ŸÓ³»£xø š7P÷pÝ£I†+#ºÜ@¥µÈ G2YÝI:H·¥qܳ´ãŽÇ¬˜É@Yü¿]›7Ð_Ô”Ä*Ž7¢oo·ûž™ëìÂÌ@Õ÷ ¦™Ïpõ’~=¤xäÙüVã™ïÏf©ˆ?ÊXÖõRdÕSÈÝ%#{Ñâ?6ó8€îŽÁëÛâÏÎ_îC« ÊC<¯gÉt̆a(‡Àut0²)[ðÐmtS +ƒÛŒhOÂ(ÎØÇôþ$?I/c Öß>QÛkÞ¥¤¶Íˆ?;©TmSQÓoð%[‘ŽªóSÅ¥@±d¶Ë1üáé‚:¤¸D!XÓ8Ð(†…ÐH3p;Ü”FkX¡x“ + +endstream +endobj +92 0 obj +[183 0 R] +endobj +93 0 obj +<< +/Filter /FlateDecode +/Length 5862 +>> +stream +H‰¼WÛnG}çWô#0©éžîžÀ0°¶²A²N»bgèBINt[FŽ­¿ßºõm8¤†J60`Id_ª«Nsêèo›Ç—§çêõ룪£÷§O÷ŸÕ›7oß©ÙÛÕ¬VõÒ4þ·¶Q›«ÙÑ×'µºúmv´Ò?×J«ÕålQ/kX²:WòËgå—-ìíÒ)­›eÓ¹N·tÎÞÛÙ\ÛjõËì«Õì«ïà¦ÿÂE¸÷Âñø×û£¿ßÖêø~ö¯Y½ì<œíZÃNˆ/ÒJ›®ï[e4Äaz«Îo1~u;3½^Ö=Ft3;NNïðÉïOï®Ô|}·øúmuôÝ»oŽUg]ù|:ûW|·æw¯äÙµ¼Xwµ–0 ŽÆ/kߨâéûÞãs?Ì¿©šféÕüQUð5ÿX- Løà7ùàTÝTºÃßî+»lÔü®âWUÓ.­š/`ý²®nÙÂÎJë¥#«EN«ןUp±VóX_\TyÜu ?::Äàæ ¼¾}€K5Þ­Ófüåc…‡œÃŸï~Rp,ñx„áñZãñúGùÊñ=Ü¡~¨tÛ÷ê3|§qùGK¢»QðLJÌ=ì¡ü„çÝÑÍ•±–ÆÏ6u‡oYPtkIÞ¬Åð6ð +ƒË -û=¿T’?[zV™k|n¨}¿€#àÄ;uŠï2tÍÃÀZ…‡ò>—ŸûŸÕ·Ö{qæ œrQ«/0È:fïÑm~ô²†ƒJ„††l¡¨m„(?Ó%G +ÙDp¨_ð¹°âåUXŒgn¨kEr\ ‚Ù‚ÀxÎ7$D/,WaÊRi*¾À)˜5«þ©‚>AhËϵÂÈ\r {®¹„n·R _K›ðu)µPTWƒ5 Éáq‹žNêñ*Š†ÞÚ@쯠!Œæ®•¬noØ`° Ù–cæ S¬Ü߯¦®‡çC™Äã‚xc–Éÿ5Ç] 6ov­ÈôÀ¶ëÊ4\¬…¦Æ¿ÅÚëAoQæ>†ÒC¸)([ÆÜB-à£^Ÿ‘ðÄLàÛÌ(±µíivE].Ëøû\Ý#’a륚ð‹ÃÛ¯ª;D5¿êÆ@ÕOóÊ5xU¤6D‘Gô~ƒ¤‹%Èãª!Üÿ›š>8Q¾ÒôÕ²¢GA~­BüŠ6Ûls‘E$Zµª\Ç$ˤ9`9ÿ"–맰\†Œé,çêìè¼ùRòrû¶jú@mf/µQ;{ªäOUe æf©~¬,!„pËEÕf]Q;qÃâw¼×…Ú¤×*Ó0AuEåº3Ls š­XW†O'FqŒZx£Ž½¯±÷éXq‰èôø“‘˜x®¡nÓ!'m÷ø„éš•~WE”E"íÍÑܶ ã ëSAètAQºR”86ßBº"bVL)ÑËœ­ËÂûDîÈe)Ö;á~H¬¡åÜý!‘,b‹ ”ÈÌ*¥kd†oÝ‹,Šç¹ÌW‚³ÉY9a„„لْ%]`i{Œ5mƒO S´!¦ûFÄw!c†öJ½d:žð¶E?ÀLG‚É€s‹Ñ;ÔÊ»6sïgKH€îþ\5Z‚,›ã0·˜ËÎsäd^ä¼FÄr[HàÕ-ò ËF\óþ/øA³Ïc1E”¦ŒÐuôDtÓãÙ·g•n +¡íƒûéxŸ!3•éÍ¥œ<ð¼R°‰cLº|¬Id8ŧ±2õ¶O›Ž­¦4B¦Ù-Ûd®{¿›¦Û?Ãræö»ÁLÅ ’ÕiƒÕqϺ5Á£ÃžT²ÌÈX-2V·ì‹ÒF‰(Bý?y->ü2YÆ ¦ò劌)z¡ mÐgÑäÛ|Û3Óût„Ù{ÕV­Î•ü2Ž5Óg¦ß0Ý/þÂጄvsOÁ–Xc²˜¦;ùÙK…äsnóDØ ‚‡ìqðø‹0±Æ”/¨ÁÿôNºåâ0Ñ(¹–^ Ë( báœÖA™qBhœ¨µéÙã³0Ë-šVl¹?° 4ægƒ¬–ð¼ä²­”žXåF”bM¥§TMN‘/Ì20qãàkµ¹š½3?C†Ôê4d³ÖSÅ{¥ Ž^5˜êÚ¢¾€t½®ëºy3ÕN·ÙåñØP…Á±|lW¾ ‹¬~­VòÂ1Ak†z,Ö,¿ÿÃ|h[°åm®¸ÌIb>'¸lA*,;ƒZ$f +òá2ǶC¡Ú6TômV_«4ÍE–P‘43—?bŒÒ;‡TŸÈ0²Ò“ºÀˆŒ–•;šÒD®' Måäó\ÎÊ8XœNR Bž°Â f×Ò!‡Ëã‰ÐWÓ£ŸL|/Ä(âå‘È–2Ù‹ò÷o`5äÁ ¦±ÉHîáže-Ùégø2B­x +ÜyYµŒ‹V&+ZC$ïŵ¬Aµ¼ŸɆȇ&¶Q§HЂO+ø¤ŒÝ§ÂJ7|óyp v x%!¢íOtí¡k_ÿ!.Ò5 ]În^ÂE^ïå¢òØé\äÍ.r;•]Z iIAþÏ¡ -Ôî  4{úÉ$”ºþT‘[i²ñ"/nâT*Úòò¾ +>ø>óviX9d¨ÁKFÇNžU*¢-BbkŽügé)i_CÑ<Þ)í¯ 5YR Ó{ pô;paáô‚hèÍy&÷Ì~qnsešÌhšžý2“¹-&ϲ>[þ(ÃN¤Œm¢00rõÚNn/Q”Ç@þ¢€·¹áx‘]úWÅN¯âG¼ +iE¼Ñw…¬aSC%…îâì0b­EöJ#Tô‚ÝG9U·4ìUš]÷å%¢¹éÐow3…ƒ×m×Èó3‹¹6qäŸ&Ï?:ÌV„ƒŠÒIãÓ°Úâ»Ï cì)]Fý9 +É6Ž%¾ ‰ïòÄ—dèž%ÃÃjs¢§‘á†ËÍ)uâuvxµ4YqHPC.’ÝcÝ‹ n¸;aJõ‚º/ܬ3 +\[dùœÅû’í_J²¶ïÐN²m½dÇN'ÙV?K²ºÛA²ù¥æ?µM²{Õ1›£EÍD“•¸e†Z0!–4æ‘ƶ­ï·™AQØc&SmnŠ0s18ˆÛ}Í­ËŽ¥Æ”" YZf-?-Ó¡ÿÉèYýñ?¯?]©?[Fu ?™M øÖ g¿v&:‹]0©/ðG œƒËäP\˜úLÔRê® JñÔ–Lï5z£Ž!ÑÞ6°8Lê†IˆUsAu1Œ †}%—Lgð>·nC/ù[XÑážCœCšjj'y–-!ç;¶¶![¬öXxÜït® Ü]0î¦Ó8a +°mS€S@OæEE"…Ÿ'ŸùcѾ…»è+\ÆT7ÃZõ +€mˆŒ®Ë~]« BÒC–Êv(•îåRÙG©´“¤2ðYÎs +§OØþ…‚ñÅ¥+\óéjÚ¾xd±Î¿ldi÷Ž,ƒcPÓ #K½KM³Kÿª‘E.¥hꜥePÊáû‡°ðy»pU€¼ºÌ»v—5ï`&N#ž²Õ#_Ÿóq4u‘Îó:£XaÄÛŒ]BDÓ¢d–¦Ý%¶ÖdcÇ>ȼȻ°õ²¥õ +T¼ÕP‘*Q9>A !äTºÍoÍÔ3º1¬Ä%üÝà¥O*ãiQ#ÂïCU&±LV>6¸êBÅu±N‚Ë°½IÒæÆÚo}r/w9Vê4àèþ¹H° Â<3]™|ç8fÀq÷™Aãr%šæY_ †nE…$’¾ˆ¸ÁiAÁŠ¤QÅ©ò4ü=†S‚ +Þâ9-]w™&‘ +_½3›ŽF¾1 #Ÿœv"MÏX3{±æ²:/¨Ð!pbÖ„¸V× çvâ*a¬ÄÏ®äg—YzZ{¶>9}‰·‹màÞd푨©ø[<¿ÐfWŽÚœ ktÊ©Q +U…¡Pi?’G[ +ô`‡CDj£×éí -!÷"¹+‚ŒÚÛ”ö^¦6­Ùæeps nï%wk!cɘ·Õ… oRÂ~\½GÑ!›ú´WÛnÜƾÏSÌ¥xל#É (P$há‹ö¢RP1HöJv-É‚äDÐÛ÷?͑䊛67ÖJægæÿŽåÓšÊ µ¤¡lI&änuz;ÀÆþõìn§©Èî SÌÚÌbŽ–Ÿ;ËM‹[ÛmºmëpŸW‡Ž¾v-üJÓŠš¿¸ƒi*rÛ“ë¨or…œùû’ëhŽ%×fÙíÉu´¯&×>¸•Ù/ýùì]·HÓÕœÛi®É±½$.Aßðs1ã÷è¡(?¡æ"I;§¹Ï]Ôäü5€€]刨€?ü× +£—‰Ã+Ýy +‡£zéLÙqÓ¦«à0&*¢´Dë +6&ý°šô½œ[Jú¦Mú´b3 \m 0‡eœ ºˆ«‰¥¡Œi*Ä;Üï¤æ¹–æÇ;EòÀ{|`ßQZ5’;z¯Aý€2ñs ÈGE½ ¬l%kyg9Š¬<\íß®í?ÈþIwXžlG*öÿïn”¹êE[Ú²_ÆÖLO³/Æ Ìì{ЃJ>,*mΚ—H9ö3ÚÂG*V caìÄà‰_ïe2—TìHêwpuCOjí(ȸdsI¹Ü30¶õÃIʊþ½Ð¿h‘A:2_E6…þ‚øÑŽ|b׉Ÿì8«Àø‡sxõØ÷?ÔyçH )dòˆÀŽ{dmàóªÀ/€i#“ œUðé{þ–°9…ܪ§KtN_ü¿pýŠ»-ò¯D)MÀ{R(Aq_7²ÆgÙß»ð{ÞÓö«ª«- ¦· ŽÒµöpè€þsrÑmËÀ°Ttïð4Ç_ C¨\†Bé­çÖI)÷ +S›Æ%Îco-ÚƒÖQhCþ'Ë&“t9yP/ËL<3Ö0ó‰,‰"Ÿl £ À LtŠ¢¸†^¯‚©8¼i:Ö}íÁ{]•€üf?¿ÛÖáídyoN¥±•%ÅON Q‡q)3Áy¤æQåšï£š7¨L5œ[.ãü +Fð€¹-YÈ¢As–÷’G(XXò„_‹°“5úR¥¹$ˆKbñÛ*o†¡ÿ„)xª‚¤>Š3Ô<ÍôAYõ µæhm—Ë(¿üCpžãš`ü¼ëÛÄž!î_ƒx8IŸ¦º®D½O²äaTý2VbèLu£öÔ7qɬ¨ž" ¢ù¶ÈÊîèÀ–>0¦ŠûÕ$yjŒƒ™ËMÎd—–éÞªŸ…¯Úd·-SèQ•¡ôá$}Œœöd ŸØ$ÊÜÕá^¼.TÊâv¯È¦R¨“°Pγi¦pI’e·I–¨m[25‚\˜„Žå–²fP¦1¨°`PRtOPÅI× 3« €ª<ƒ,KÎL›Á¬W¹¡(SGª\¡ñaY£6¢Ü‚^ÙÒŠ2í¹¼Ïn¼>m\ÌÖËÌN»b¦¡öæ)åqüºz†•ÒV(þ.5¢Ø' ö‰ ¨Þwž¾ítDVUbVa6#Ê´>;¬A +ö¯“nͪɲ_ìuQA×.qé«"ÿSÒ‚ï?!§àcR1›Òâ®s„‡÷]ç 2š±1š­6C÷ÀN…|ideª§@k.¥)3ÐKnÔ€F`Jó45•B±øÓÈ,#:ËEçP‘îÇ2×{Ö#Š wÒw¯q/%1±Çé2+Âûž;KÄÉkÒÍ/' ÎÖF¼ 6;Õ ËùAåÌ•ŽÁ„ªðFpZ^ :×8ð™qžKúøXúÀ:ç×$ÌAqãŠH>i:ËtfZ/¬áƽMjœ~xÒÍÛïÚ5¡¤­b6ìû`•1®ˆÍíŒeˆêu‰ÁpÀuN$´—3Pþ¥›stÑßÃÐHXßü ’o»‰øúÜÑyžY'Ÿ;<¸#;& šf¿:K§—Ì +9p¸õ†ÕlÕPÓ–›.®å—­ÃETrÒ… ñkÊ·[ÂGf +̾Ì/¤ävÍ µÒµø8ß u < Qïž=å©›(äÂ:½ôÊ]ô3D™úÆãy5í÷2ï_P¼äa32†Ê4hØ €@ ¦øA [rà %Xõ8°ŒàâoÖ#P{„©0ŽK*µ³¨Ìè9˜šÖZ/vcD Yãßvvà{ÞÑÊ71ž¨3ÆGX +}ñF'ÄJ9³’LYƒ·WÞi¬/mo¬‡³êñæ»·?˜_ð/®Ñ…áæðÖ&ºÚ hØè=Ü[€={`"\ןú¾·¾ø϶—OÅËÓ²i +õ²£Û¸ìÔ÷Ë@¸¸³`ùe›+ßúóÙ±>3ü>.*ùk¾W¥$̈)ò©#±þ$³MæÂntÛqbü¨®`¹–ÆýŒé ª´°<Þ×µ*,ÇÒ–_Pÿ‰¾·ÉH(Ðü†ë¸Ê¤$U.û×<Ù4æ[çãǶàÍìÌ:´1ü³›ï|@qÓ=½íš¥êGX“sò>æÄ·­T˜z½:=Â@ûPÁ’õVD¶ J¯€bÜ”ÀW·ô‡2阱B¾óßè2x DÜÒ¯9]QޑЀx£nbªw’èp°â„C(}R³2ÃGnG€GÂq¥8ÆB½9ï8oå Çõ¸¿”ß~ÆÐiñË©IO&NqÄÓOuæ#Æñ½¨š/ŸöñÄÊHòÙ‘ÚÑ`éñ¼KÉ@ÁØŽ¿ªôìµ[ âøsð£¸Ó¡GZôˆfʼn&©RÖcÀññKGúu@Å S±I5šá›v&j·ë«×=ªû¤‹";ŠZïÒ{¸& œÄ“î®:Ý +MPÓܾª¬G9>£4w®s1hã7ÑÑ%aṡ"d|RÔW4.hIš^NÀF]Ò4äel`MRìš.œJMÅË1¦£.Š<ó‡œÉÔŽ¢£ä{ŽŒ––¿5JÕEÍJßœÈ*ëŠZ  ŽûyˆRÆ…§4/©˜.ŒŠ4øáŽzßT +åe¬‚wt?Þ¢üÉìTRêu3=å‹Ëί§?<‰A]ߌÄÕ`Hý0l ‹muµºŠÈlË ìǽM Ì,hNs³!þ­úÐbOc–ì,¡#ŽU\nK%L䣬•ÄÎrP!&˜‘S·¼<ëÅÌ[aOÆD7Øͪ&ט0¹°‹9]1(òŸÉU 02¸ÓÒà^³ xMͩ혚8ÔS/ÃOn%M®HåÏd“@ÊΉõ­&•\sœžSÙð×%Q¼6=Vˆ©¯TnrE2]Å‹:bÞeÀÛ²ÞŸuÞâ3O"ƒaÇA½CPMj^ouð•såÐga½}çéKºó#þÞ«tî»Ý€ë~Αò¬†EÆÐNO€RÝ_cGh˜Šd=ßwR¿^»©¼`ñQ/äïhhÙå"ÃÿÄ®uÁBY‚Þ4 ô6Ÿñ/tÿüßáð†u+XŸŽj#”©³÷]ç(fîë‰ÿW€hÝ +endstream +endobj +94 0 obj +[184 0 R 185 0 R 186 0 R 187 0 R 188 0 R 189 0 R 190 0 R] +endobj +95 0 obj +<< +/Filter /FlateDecode +/Length 5970 +>> +stream +H‰´WÛnÉ}çWô#XŽú>3‰a ¾d± 1÷i,$™ºØ”ä%¥ü÷[—¾Iiho @»«««N:uò·ÍýõÅéù½xñâä_âäÝé×»‡{ñòå«7¯ÅìÕr&…lµqðßZ#6—³“?Hq¹,Õ¯R(±¼˜-d+Ës…o;Ø]ë„l«µóB»Ö9{nfsåšå§ÙÛåìí{8é78÷ã^0ßÞüýFŠ7w³ÏN>|9½EßÞ^Šùêvñã«æäýëŸÞˆA…·àœ"ç^ëè\¶;Cƒ8×{Ñ龆Á£;/¤”æeáÐSG*Y­öî>رÕÞN¶ªê° ¼Àgˆó2Þ¤•ƒÂ‹ÀJúU %»¶SÞU§þ2ÓhßZŸF¶JÌÿ#¾4Êá›M£TëÅü¿÷b~Þ,<~¿oZBªæ׸ÕÄ_¨¸k,¾¿m|;€çFÃXÕvb¾[xW2¸ë®QZÌš…²øuÝh)æÅÙJœ¢O°ò±Ñ + žÂE¶Vâ.xu!®Á°F‡o°~lûîÀûßiùG¦Ñ*X{HæÖð@mˆ ¼øA\«¶ø]ÄÏ´¯¿ðͶMôÕÙbÕ,ÚºE§‡*:»áRh-îØ +tÄáA×ä‘G`ÆM¯´Â j +ÜŸ¾ŠæËLC.QÓJ;BÜ¥K¹§;zLçS| ï¹ãñó{çJï.0ÞÄ,÷ ”™Å›¯!׳BÙ^7W5*‚(–¹ÛƒÉ]ãÇäŽÇ Ò‚òÌSÏc‰“ì +òY_žóæ ¹…e†€ïº†"sX¾Ï>üt¤ë-ã¼ê#cºp³ŠRwÃ]T™¡S!&;‚”9)ßC`3]Äl'§ø^û*žq%ñv™÷ECõ¿mˆßˆÝL#ý  1$` ‰ûf ²ÀÍ^p5eþØèQbjQd8£(ðnÑI˜ÚæØvz€Ý(ÀÚ †(Á,”5›Ÿô A"ôZxx^{–a]3UŸøJŸÀQû²ª‡®ÕÞu£¬ŠÀwp| `j5EòNÕ‚SŒOÑç9®”ÁUJ²ç&¶«:\V¼ö,oZPúãjå‰c„ÑUL V3@¸’"":w’/g|‡û†åÆ ìJå +rZe9-}È%>@|ãa„¦wÐÐØ;<{*\R7 ƒÞµø ?x 1?5ôk(¸LDÆöÎfñº§MÏÀ¦àS‘ÝÝ2]†Ã¯k¶y {9hÚPŽÜ4DŽw›&ôî.f·Ç¾LÇ\Ðî@èÄT­y”=e5Øø<=}•‡åÎà@èÈX3ðœ` AtÖr®ƒ€V,™Á’²Â¦Hzï7FkÂgjb›ÕX{$zÿÕZ5ÞbHEq$1Ô˘¾QXú¬£X¶eÙ›ÈÏì¥P uR:ðSHÚC”ˆÅÚšô¸8`<×Gô‹aDgÒq (5„°.²LJL”*¥`ø"2‘lƒàŽqÅ<7ûÀ:_ÑUÒjxXðî? ^-°5ë=ŽÄºSLpLÉãq™8Ì…•EÔSã-‹,§?‹l’n@°ZÖÀžºUPcŒ$Y&–<±m’x‹>PŸûƒa«ö­i@º?0q¢ùмQõ8Fì4&CºÅ¨Ãɺ¹9 W3Ð^KÜÍÅÔªU5«)¯jó Õp!¡zSˆCÒÙá}¡½YŒäCø|¶aôI*ò4ÈÏ-¶ÄŽ¢˜1J¾ÞY§K”<W[þØÚÒYÇ%|ŽrýçÕXxWT_·¡ÊX’¯±áP!f=·¤=DÞ—:†Êé˜Ôc­‚20jŸÊ³”ë¢XCОXåõ“1jvj`¨:_ï‡PCÂò\’F?ž`Ï)ˆÍ+q•² úZ#Kð|±šÞ/´­ŠIÚÅä@pòñlg@…9*)L’‹\R)@þ ²Î&L”5’CG¥—€À‘g…&~ÆÃ!ÿïñT.7g À‡Ìâ•jâ @Ž4ÀìXQûú®þ`°?Ü SØqÇGßÄõUUô +MDO¼ßã©«ã\ñ!.…°žžuWgÝÊzSYg g½èq¤'†Cð¼ l†<0jòа⪞ÄóÜ´BÖ}Ü|Åê5¥·j}Ý Í¸AƤàØBÿ§ê—JõÕ^ ­}„]5îzή 3AÓ­®Ö-”æé!I&UÍh -Š­|‰u_CÜÿ©ÕP®p°£V:ˆ¾æÉŠ‡¾•~Ð +¡/M¥àr.ÜmßãØ  #Éú"q‰vYíEA_%ÇìÇ»X§W&%; Öß©¦]Hƒ}* P"Ôº/p fƒ õA:ˆøßuS”À% E~yB¿Ã7Øþ½Ø“‘4‹°KL±vt*Î[ëôÁà¹í¼Ødð…ILc§¼ÎY”®>?7zà…¨¥îX+\œª¸Ë³xçYÀ‡²nËÂ.P–ÃJé ÞîŒMY¾gñ.jùÛѦþÅ/˜Ýß×ãŦua\^‚a#ƒ§þÆ !Eä:ö™Mêè¼ ‚<µèsÁ"é]ŠB%¨¢«áõÂäaÏŽØéåÓÁnW£“উ¬ŒYSñg÷êˆ 1iZ™ v‡\ˆ6‰íkÃâ5 +¡©aèÂ| kŒÐslÖ®ìow¡oÊLoY?`I“Ó?Ër=Ÿ5ؘ~Èi[;Í 8ì¶?è¶n«KEIÞÂ$Ç˳U]ªØÑ(—‰OÁÍzœÒ{JÆrK5ÔþzŒÜTÎ eÚ¼ÔÂö}Ûm–¸0™sdøæìžeN%=K 4Fvyðw“gZÍtÅÕó…âŸE\¿q¥¦Èê‡_e5O²üŒTÍšÅRqˆg$‰änPŸâQĵÛ0ÁÕ¾g ºŒ%ÞVD./nÓ‘Øe±RÔc”ÒI"'^A?}àVZ™U_€þžn0½ +ú]2-ð‘ø´ÄÇ|Z §VÊî@ï¶m}‚Š< )‘ÃM€E•Ö=D ¸=¯ti2èi£É`´f9õ8Ì07.h’õ2ÎQtÌíL:O‰æàÇžéŠx¢nM_ÂPö«0%U»IÀoXqè;ƒÞ£è10¦¨å5þdQá”Ãd‡VÖh¥c¤ÚסvîT9N5£§Ô 1üTÐZyXØ¡o¥t©ùb*b­zZX-"õ6ÑEœ·,—"\ ÷{˜°å@øt÷-SljéÑ,E7 ]jPØç"<< +†Š Ÿ4 +â^'xÆp„Õ09Ä#ýGÕ)ÔÀg Æu°E¥aèæÕT‹ŠD&Í=‚ç‘(¶ÇßR1Ø"ôc©ž³žÍÀ÷Q¡˜oÒ¬=rHSáÎ è¬ÿ¶)ͺ=SÚ´WIoÜÈþ+<Š€ZaU±ŠE#00˜‰o±ƒ9ÈI–2N$KÐòëó¶ZI6Ù­ÌI-v³–÷¾÷- Ëå²Þm^Ö­šn¨c0Šµ£*v=?ù€\ j=t%ŠÜ…pT7¶%ú:…h¢}ÉÙq ä3fid÷}KÌe&]g&·AþO™i-–›@\fö«t‰DebÇS1,syÂŒÑ ¹«ÒDÄìÕøfÃœr1:L4ÛOìžc ¨£bC?îãrÙísl»•9žkE¶ÙùÉGµ±´ªVúàQ\“Q…é"`NÍ•€xG(þJdë0>‡QŽ#EHCÖû?­çÃ{ð —¬ˆW—o2õhþ(˜~§yꞧ:®’•û™¤[«kKÏ6cѪÊ`kÔÓ|šjw~Þ¨Á7=œÃíÖÝVí¶zE»{%`¤ÀÉI³91XS^ÈV‰Á۳Ό}cFpç†ÿh5MuôÚhLªïŒ³þlg&ñ°~q“ùJLïÐ&ÿ,«GÿL¹¸ñåh­s_±#˜ÂK…kѽhæþÙXá2[×üŠ»#4ï.ãõ>µ|Tb737P¼H“dì:}¾MÞ°ïž?H(G,l&Ǧw¼ƒ«G¶ç%&yMÎ6à—r¡[®T6DŽÙöè+ÿŠ #ÿŠfÁã´"x®B£ñR»… JLþïÄšŒÁšX9;b&³Íp&­çÁ‹øcINn’ðñL‚ñoÒ[RœÍRœç4séR…3yµ8É G>z]¶~jÅúWÜ‹Ç|d™ûg[fYñÄñÿBX“餼ZƒK>Öm ~ÁLôh‰w\a Š¿6tÕ—9 ˆ¿¶;PW6ãÝâ÷Úœà7=€"αÞ:Ç®_s `G¥K°à@­í„žÚÑVP©a +m¥Á1%hÿ–üfÖq1 l¡®gÒ+#îºI¸j¾£ó"¡ÈŒf\“lŠ<5Ø5Ç«¬Í–̧BX¼¢°O8¯<’. ]Ò'‹âLÆ዇YA01Al6ãNÕió„‚IžŠHEÈ'>‘ŠÈ_¾TÛ“öù4U’‹«èÚ–—ß<(n¸9šúº0Œª@ÓÉn3t‡ +ºÚˆÆá‡j¯(€`‹VÔs÷:nšcr2;m¤ ZLìæ«ûÉÕáHªœ[m1‘–·ãeØâ¿5’àÑÛ¬§_-z>yÌšV@œY&[PýÄíÙ¢;Y;yÀ€£Õí©áÒî,ÚÐ1M\ñüd÷äÅ.0<½¹<_Kv7ÜKE»ëÅç¹ÜîrM29#j{Š=‘ãŒ;¤‰“dtÓr î˜ôþŠO°ìó#“­@-2¶¯Ú÷%:7j>ê2o`ð·è§s6±ßŽI5•‡åÌ“Ó+ݘ±WŸVŸÈ>ÀÓ#Û•n‡—ðÄå=¾÷‚`Ò"ý%nƒ9*šá¸vC3àÐô$ \X@–Gš•jJ¯Spóêy­Â­ÆYk÷vñÐ"Ë9="¡Üdýe£9[K<½>ÄþÝŠk‰Ø<»}Â^ºôïÁÈÖqZ# %wÛÇ%6É.Nôì rŸŒõºoi ï.á‹Ù +üv9¨ÊGªè#ÕœÔX¸ëÆF{ØY+–Jm¶jå W:¢-x15oÉ>r(±êk½ ÎQ;Àslùgž”Ë_q°1ŽÜ]†Ž5ŸZ­Ù4‘ÔYEäñEƒ­ö–5ç¾%ü@û|´‚Ì@<TðßÕ’¦–W,}—Øõ1GMÍ=HîxIŽŠ+:Ïð/ÜAÄ—øc¢Î!<Š†¦Êä&»Ðr“EЬTaБò ÎÒ ×G=8€úûY Ûeã :6P°³._lFôOUŽŒ‚Ñå#BŒßý_â[1 ìLÒaËÏýä­ ùU/48PÿÍ´9ä•ÌïC^Ö°`8È”’Ì’û—þT~1ˆV\©Ã•â…Då&ËIMnpr©Å—9IaŠ™;4@‚Ãæ1Ï„¼^Êcq6Jó˾KêyÐlIz³ 3®È2i—ÉàæߢΔá+ÖpÑ0 ßKOîáZͽ´í±°;VlLô¸_²†_C8}ÉÒ^Ú_ú@IÂ$é"œQ¢Üñ¢¹Í™_+°\Œ“Øĸ҂íñÃYÄ…Á +PÝã´H¥¾MH· ®²ÆV¢™]R*®Þö)¡:C%¤õaùŸ®ž_.n?_ÿñü×ûð¡e~ÿþ}C«cl_A=I<ñ\›Î7¬H´‚6uÖªâ`ç'?@B}ÇŠbÎë507ï"ßxm~F*œ œÉ u"–}ŒV+º*Œù­¥¸´½s¾5FZWKGìA;m/6éÞõGvoœtšÕ/t0?ÞùÉGR)šy‘K+~x—å¹j{zo”÷26©d Œ±î¸Ég-5-qK ›Jl+ìÌï +vx#}¼3ˆÁp÷¡ŒWQåK;ôÈ°Å9 깓µ…£¯ÅKGà“1@ª“Í’}¯¬Àœ‹ÝŒvß-«VêWКCn9©ƒQq¡`~ÿÚŽDÛ㌯âLç—æÒ•´P×/xN8É/(hp¿7ÉDGÃ#p…Ôf ˆ®a6Z¾¡æëG ³t™'oY_AþÁëš×uÍÂ6â`ÞFò¦fŽ"Aü}ð±Á/,¸.aÞdžŽìrctVÖ^EAáx’ê„Ÿc!cÍŠ3,ËѬ\…V7. ͘³1CÚ1þ9©”æËIë†Bûë ‘é#¦«ÓœIjʃÝÌóPŸx(§´ý¨p¥½<Ó¦¦²|PàJ”#Úåp›ˆ¬¹l•*|wÌãUú‚ƒèLà±™ ¾â¡ñï—6cNNl iC*Er¾ª|_IÖ>q|"kõ&÷ç;»9Äóµt˜p·æèìG÷Ìzß‹ëKGx`‡ß41!m²L.Rhšà›³à +NQàë\StáðõžÜK/9¹Ðj;—oq‘!uV.ì¬\„¦Ÿ_S…MS ÓäïÏôw Îœâ†Õ{êÊö°jzp¡²¸á¤r;@†RtÆÑUfª§¤®i7¤ªE1ðBŽý^úñ‹MÐéš+ û~Xó2RT{n¢zjÉô¼„Š¯¼¨dÁ 3LIw‚—Æ-Ôa"ÿ$P D}7xÇBU¢á ,^—­an…Ÿyœ/# æ‹Kké §ÍÛr¤_×™aÈlñZ~m#íã tƒ¨0h1™ŸŠÂRñŽ8æÛÄã¢æ/­¢Ò?Àö*óx˜Ïàﻢ ÿ`&¾ü +endstream +endobj +96 0 obj +[191 0 R 192 0 R] +endobj +97 0 obj +<< +/Filter /FlateDecode +/Length 6335 +>> +stream +H‰´WÛnÛH}÷Wô£X4»›l’‹À@ǃYL°Ø‰Þ’ÅB±c[;¾,ÇÉ~ýÖ­›Ý¼ØT2‹‘%QÕÕU§Î9uôz»Û\¬ÏvêÕ«£¨£ßÖßïwêøøÍÉ[uðfuP¨"7¶‚ÿËÒªíåÁÑ/ +uùpp´Òÿ.”V«‹ƒe‘Æ©Õ™’?ž”Ëkø ü«óJimsÛT2U^U~ss°Ð.[ýçàÝêàÝ{8éO8¿…ðøî·£Ó›BÜüóàèÃýú3üm}{©_n—¿¼ÉŽÞ¿ýõDµMe ÉiJî­ñÉuq[J¨UÚ¹.*­jÓämÛ:ÌçUQö8Êè¹3Û":3„õ·ì…mÊÙauZx…Wø*½òwÉ‹ºÆ«hÍßj¥­Ë g“C?.N²¥É5„ϚܩÅ×Ìj|ý’•¹Q‹ëL7ЖÅ]Vã§÷j-ù“ÛLÃÿçjÔjq“iü>3~¦ó¢Üà5†[Vøz›·j±SgpžÆÀmý\W{ [<þ*søt÷ë%?ðéÏÙ`z¥dÇ$ù•øÛsµË–mnÕ¿Òx&¦\ÅwãñTƒž+Jân¹ +wx¾Ácá•jµtøzæ#>f¦ÄûÂQ¦KŒb—’±˜Ì¡â«Y¼Är˜Uö3$eF/›Ì8<–.`ðQxo眒ýkõ÷y821Žò¢¨&0Ŭf €[Ìò7†¿>Cf¬Æ2]âï°ªZóÕ_¸zÀ'MôÄð§#ñ7=Ð=Œ¡bÐb‡qwÇ’î𗤚^±/EDœk¬twcº†Ÿ”x–£PO' å kš“+µó™]ÉÓ¡k«î2Ëð0!:ƒçà2”±NÃ:¥Õ”F8Ú¥.E©™ P×@ynˆH Çs—Lö’„ñ +‰´Q#¸Ž™ÍuTÜq‹×ΔPœJa6Ã)ðm$pÓÌyF|R’„é?£àLOˆ+B¼@‘u¨ ÕÓÄgw~Ò €¿ŒÚǺr`™ÿ>¼åÔípèP€¬1‰ó3”ÿ O¸~Éמ­:í? &r)"¡¿°ÃiuÒgj³ÆfKÙC»Œå!–©*5YÅœÄ#ò€ sM_ ФÇ®Ay^ÆñìÇÃCá·ø=I%¶«L¬ÒTÜŠ‡ÝgÁl¹É¬•Án™E ”7Ÿ_Ä&*â2T1'ÔRù/ÓÖyël µ„|œae1åì¡mS>×ßõÊÀ4Ma’f-”šy€† ¡£†N®l€(Ÿm%€X1¤Ó»ecKŠ#ÉÄŸ2[ñ8Ý tujr½1ñS}Æü¹éTë„f½©®7šÞ^R'ˆ&xôµ"ü®‚…ÎYd"9šͽÄ7ã|«nÏdþešld"vdÓ4~|´œÍ€ =­Ea/tÐV 1O ¥wÁ¡’·»û¢MdÓ{^ô 9Áoºµ­Å·fá0®èì,™ŽïÒ÷\wýUJ 8|ù·}êiz“VyXÃ\´šgZç8Ótðúl÷¸¾^}ù¶{uúîôƸ=>>V ƒ£»:" ÀÔæ¥h{)Þz–u^YœâÇůÐ*Òm*aUl._Z¥‚ +jl»’SX #{må¬ ò›iÁ$`$h¿TL3£v؉öNhnË{[¤òÛ-[æKVÄ{Á¶ømÕû_?ñláwCËšì:"É!ž¡¡i>ËD)8ÕÀsªFÔMÀ°¨'pXµ ¸VÝy• párR§3ÞPM4ÓF´‡R§µ÷æÅÇ3ȒŸc—ȇ\ 2i6,*ô½cÄZÍÅ +dÈp>÷|*“nyKq™-ãÛeüÍN]¡wkøšt‘X¤Å´(vóëFï$ß­ºÄ¿Zɤ!°²…î6°–3aï­k2°Gp»dÚŽ¾oXºjÊv +, \®…âXbkž¨Îÿû&p½$×Á„ðüS#[³¤Åg¿R·œJö.zbdK8µº3-á·^kµîèÑõ£±¬Õ{ìL‰«Êg?'êCÆz»ÃÚت⹉Lray +K=u1†Î;xÝÝsI0¾SŸÑBZÊw84û£¢î¡ÂNÂAnAºÁªP¯>zV}4Aâ“1&kĬÞeVV—Æ—‚‹à'Óû¢#ôL…æO³›„³ÚxÀ¤‡;?a=ƒÚpºnDø~Àž/®:¶§’á´AÅÛë‘D¸¼ÏyIÇ^Òˆ—ÔL"cnro ¶¾Iª€ƒˆž5­îeÓ*,Sw0¾‰Ü¨Q<zîŒ:ð˜? Ë ^"Ü‚÷nGÔljNÎažÈÏ uV‚)_ß ]ûŒô1„wf£@‚Ä0pjÜ‘g³>Ú>@'ðQj4D¢<þð{D~l×â5æÝ}ê‘îÓNèERÆéE7dd¨›\*ZˆWÇ—á!«Z[ñ¾mîM4Ýá;ÏÝP©~Hbú~ŦW#bC.å$Q9¼tÓ'òK÷Þ(ÏnpÊ]Ͷ´ß|Í,KS'ÝmN[Æ’SŒT'h€n½d÷—é}äß@¸¸*ßöªRõ‰‹ ͤÚ~rétI”žø)ä²(ù^u­"éV´íŠ_À’Ãá†ïp_«ñc­™€AÙ6©Ý•V%PĶ¨`ç¶È¤âàãY«Ÿ5݈ÜH›BÉ|ÿQ·cÕ ðS¥ø†kŽGÐÒIÛi© RÊ%+ü +úm fé¥Õ^phªÿK½ ³À¯Æ’m˜®ïð\Ö*ø6ߣU_y)DÑW^ëòÂYUÖJ<ÕaarÔx:x}¶{\_¯¾|Û½:}wzZ€c<>>Vújkô çÐ(4˜Û¼ݨ;À¿¦”8É‹×0yØ„ë`–Ƙz*í¨ÔÑ«DʃW‘7¼tl?&áW&NÑc¸ ë 3bßÏþŒ[ºTì:¦ïiÅ®$Ó!Õ±‰ùiz`E{”âžÑá¥bÉÖûMuúÔqhT.2ŽfQeeí v©s~º–A4©iÇ&W²–c%ü´È*‹ŸEÎŽýe°ž÷Š,N웑+ð_Šý”9ò§,«è—‡ªšÈ`>ÛìQi˜Lë¼I· ϯ݈p¤xHô¸ ‰–¢Gõ…çíQ§Aø÷@ÌC^×ï@Ád¦¯S«nYšÈg^x2ë³Ób&±SKÁž…ÒÞù ›Ü`c5>"ôŽŠ\_{sMJò©‡àFm(çT,êç¥3"ryïˆF¥ ,%@€ ;Þ<¸ée]>E¦¸œä^‚Е¸’/Mì4ðÕGY0»MÂè5xs—¾ÿYsG×}5ì=ï(K,ª~ ê¼ÿfÈë“;©«te6|éó\Dao‘ -¾åGáÚß°íø3t´ö@w, Û¿]sš ›Tw“EèH|»Àw|Ûc#·úmGñ6%i©D±N>×<•j%‰ÌgQ5ˆ´­ŽoÆC©€:àëÙŽ~MeMáø"†–ˆ®o°ÀünÀ#Î>tCpg6ôÜCNoâÜ:û¦“Rù •*;ÙJRwÒø+JƒÔX…CÝ»øü<ÕÑ×ou’ƦìÇÐW^w[è€Ãô +*Ý‘!Ìèç†DiÀi[Ðeeª¤V©/T¬dËÖÜ—âÙ¥':ÌI™” ‰pmµž3ª„þ=#_¢"gÔœJ +È®Æ1á§Ü:9‹°"+î<‚µ=çÈt}™—ç,o¥ÐœŽ[aÇak$&ÍK’öÞ¡,LŽpZé|xI$ˆÒY¨Ý»Z2ð8í!ÌK7ôAeµ'é‚oá«ljt_¶°¡QûQg˜H<ƒ—Ö|¨Ú˜(~¸µ$hMUÐ +5•ZD²é˜ú:kæYï ˜šÅ0Œk•ÍÍájd†lGT¼"O‘šÐ'yô9Î+)‡-l›ï­Ç X§#”Ú!‡ +fPUrWÕ.{7¯äþtä Õ 8á>¦4·=pÖP-Á‡öˆWôŽ3ÄÁsr¤¾Ø}Ãà׆}Ø +¯/[¬Jq–YŠ*õ(9JÛT¯ØžZ$å5‚Vú¬YîR’Š2‡Àçϳ°¬Òó  Úÿ-ïÒ^Úø‹óÒèQBßs>m¥œâJÊ4؆ƭéá!Öž7 ¿SÏ€Dm•Ù5ÐÑcí•ÑHvjPÎyr=›þˆ²Ó3•zYh6úÆ.oæüˉkÏjí5‚ŽôŠãN†&ÓO­zJ¡m‚ҸݧôúÚ¢šä@”p÷·è˜Š['Ô[æn0[Ånšœfüð€˜rê•È·Š]féC>ûí4XîyU\#¢I^ÍJràþÛÐËY·‡Ç–ŠÇj™Ƴ~:7xe&EXÐ_;läªT<±ŸSÍÅ¡“+^¡Q|Ñr¡-Õ}JܪY6ônÝÐϪ'Qšó´_R:’˜#Î%r jâÕqsXî£VꬼÒËn¯\ë@eˆUé®ÓñãZƒð#{퀈ï«ìa7ÅLÇÝ-ó1TæcâÒÑ÷Û¶&™*qc\`wÅñŠ›8êµXòÛ’ý΀ på!ÚØÙÄJiÿ«a£›“Á¦Òå¸H¢xj°¡€¿#ã1ªÝSiâÖ•Xí³çŒƒ~tP08üÈßí3HÞV¨ñ›É° ~dºT§éf©|éBÌG0¼8H_£š¤þ·šÖ]8gÍ,tœ‡êô‘B·mÈ™ÁRîÄ~A§Âc¡ ›}ð«ÖS#ã}ä–àÀ†½ûFÏYº³c ´dß>á!–RlWŠ™€x%Ç´Ù Ù…¯j€ö¤8ï*õ[(²‹SFûÒ7û: ØÿŸ­xä@+ŠDqc˜õZx€¢ÙWfD`TRñ>ÔDz‡gh8?šq²³.ú@Ž¨÷ã)/·BŸØÐìW U +BÛ“²[§³[fT ={2l»êŒiVöWåfîŒ[¾þ$=AË@àž‰ÔzV¦˜rir\Æ“€Ìà-ßVEI€1»Ï¾2ÖÖÞ‡ŒµPB@}ï®%(¦öÄ_”ÞTìãçh³º«"N­2RAùf —9B ãlÐX݃!w‰ÈÙLøš4Bw~ÝÁ›i!„@5æÚàZH^ÙàþÅ8"I²>[ÏûÃÄ¿ +PÐ_»5æ&%0>>³OÏd¬ۖ¶—:«¶Eæ" +¸©iãhk”K°•K8+|ÂÖÝ¡…3Òäs­ìå&|iÑÍ𬃣®qœB¯ã2Þ%¦ÄgAe™ µ§9<¡$ÀMƒ™€â2/f ž9q‹±Âç`Ÿƒmñ™HÌ/Ê\–¼çN#–àÊ—P/?ÊpOÜ—ƒ³Lï§_*ó`kÇŠ\=ÄVçmu.%.ET“NMJ܇6í·NÑ–Mœ–P3n¢Š•¢¹Q«.¸ÿ²#•Í(‚בÓÔ! ª33áó"‚3‡/q¶äˆgïêð’(Ø8Ç3Ò8+=šï##¸žYH‚N,›‰›îop¢:‰\ÕLíQ×¹Dòl)씇ÿ‡¡©_5*¯~»ùd]ÿ‹?+Ç"‰FcÈA§1B\üÏ‘Wž;¶ïD©2¡q}¸JtÆNøn eM Mše¡Và÷ƒvyŒ’LÂ7JM/xù‹7f ‚û`fºÿ[3ú£ûš…êöÖL>g ðÇWOD;ÁÅè/|waŒ'wu&»óX$HñÖ€¥;¥ƒ$‚+«Õøÿ€×RÂËÕ“àSæ~>¼^Í=†øø¸XG²CâõdôœGóÃ\öï+)éCLY… ª²j'²7âR¼ô_d-#õ1nDAív Ì“É +° +ñ@Œ>XPjáÆâÿ0|aä8Š¶h®l9Wî´¹’ÝÅØ”7–o/˜B_ ÷á(¤úIe‚–‚ƒcu'œâ¬lWùÊäb IÎC<üJ\ºT)-Z^^îZ¢‚¶U>î+'½š«‰1ãÇÎvß"ä^ÄÓÝv„P‡°zÝðeŸ>vß­‹p—‰iTK!=Y°H¿)ш6›sÂ/9¡U…\UX¬=G}ª=¨°ë~¦·~À¹³ÂEzN´&4°]£[ézä^l6'+Êæ&È}²ÙŽdàõÏz¬“.!¿ße…ÒeÕxÉxùE:÷æÀb(büé($8…Ïð#™É-ßv Æ­‡[$&– u˜–~Ø€å4+— —+ÀVßyñúÃÌ&äk¼é¼bÉ,p0{KÀšåû  åƒ£rõæ0óOAá;OÓvaΊ‚ýW€Œ¾!F +endstream +endobj +98 0 obj +[193 0 R 194 0 R] +endobj +99 0 obj +<< +/Filter /FlateDecode +/Length 5675 +>> +stream +H‰¼WÛnÜÈ}×Wôã4à¡Ø;€a`mmx¬¥—`£k´«[Fr çëS—¾’œÑÐ ¬N³»ºêÔ9§ŽؾÜ^o.^ÄÛ·ÇÇ7ß¿¼ˆwïÞŸ|GïÏŽZÑ6º³ð¿1ØÞÿtÚŠ›ç£ã3õÏV(qv}´n›ÖÀ§ >|®ñðüóf0öÖ mk,¸?Z)/Ï~?úñìèÇ_à¤ÃAø>¾ Ûã·Ç¹oÅÉãѯGǧO›ŒðãæáF¬®Ö?½—Ç¿|øùD¨Öš:\Qýq*Žó,„™OP +5ÞhŸ{Û´Ý`„×}3 ƒÃø~[Êb_=ɶqp¦\»F‰Õ…\bu+×ʈÕ5üéñ›2 <½7r­[\öàë·R·bu oñ·µÖøáA*ÚöFŽK¥MuÖ\±gIûüKªÿ>J5çŽ#ίÄc‚W¾J­pà ¬QäöJ¼ y@…¢ ?Yü‰ù(X ‡=ãÕ4®=Å_Ýaà#â(|5n·§ð ‚ïåqéŠÈîÄ£¤£Î°ø~¡\qRa5>ݼšº5wdz€ÄÀíj ‹¥èؘÕ%øïKÔ4­ëv Ä ºi›ø`ÍYP_6Õ,õp¾Üé›ø€ÁvE‰ÓMR‹ãß[ÎÑئ¶†'=AÂ`!¿à__!p&k³¶‰xu)Í€{C(ªÇPÆ­`ê1¸–ã‹ÅÏÀm9ìÒv/B&‚âB&y˜?­/z&Ìóêâ‰AUËÉ£¤ß‹‚S#œ"ðcè[N=VÒá‚ûÐô±9D(•^È·CÅR;°æ}Ó'¬½HbûG‘ÏO‘÷ø!ç^§ƒû”i#ÞØ“8We'\vC? tÜ9üZnA•T¨e¸¼Ç0B®^‰ß%—ä í£g +pK]}ÁÈx;\Þ,Ȳk¿SÕœ¢ +™_¦jàdv«ÚhÛªæô«ªéÞ£âÔÅ¢f«z¼.jC-j=µEË(u5 #D†+¸&r`d†É`xLý<Æ=Ò§|±€KË’y "ñŒŒ»½ +b^öÙРчÅ-:µû$x™ÿ-ëk¾fy&î[ŠÔêž:p33ê™`£—zô¶¸¡›¶0ìLµYÒ"Ý!Dú`‚jMè1¢@¶,c+!Ë`ŸpÁ_ A3œ.Dö¯¸1*ˆŽ™%s†€#£®0¨²H6rŒÂ3èhÄ@]µ`ß‚¢¬)±—Ä•~‰ÄD¦Œ¶‰Žd#°ˆ¸Ì÷WgÑÀ~qÙ}ÄUo»„¸ÜëÄ¥†]¸+ŽE悲0>R«6e¸Š^¥©*²ÔŒ ¹­­ì’™‹À•ZŠaW5yd®ÂÙð¾)u™¹RÌô2CL Æ"¯ðDHÑBÏ‘±ß¶k£ý¢É\> 5Ðì7QÎÉûç&î4özÊ,sÓ˜Âb«-hŽrƒ][½Ó¬?d³þ•Â®u,Ü0HÔ„aS¼ðò4|¨“Ââ‘Ð^Ì^ˑ°?‘™º’6ø힪Ø1D©Œå¦£šÛp^è’²XAÒÖ†AÔu¸ò›xH#"³dxåü*¥M“Ò?I:i—ìƧ1<ØœÚkL’-'‘h"¨`Ÿw%d>·3|¾d£Ðê]k]eÒ¿g&)ØDEÝ#«IsÜ­±ãàƒÎ¦Œû–†8¶ +ð-X¤øâ(½™Y­»y'8Ñën¤×~F¯% ̶kî¿ Ëf…|MŽ!Í´ŠGªïëò„¶%lÖ þrƒ‹JÞå ¦ÇàŸ˜ÿ–ŒwnQTkÅÙ…(È +ðê'X²ƒ.œ:fI„î³9¨5Û‰IqNÃ^˜Xîv&§¨~vùŽÿŒ¼6})©Ž•¾e<ìÍu%DšûT“ \œÀ‚ÐÈY ®KJIÑôæKyÁŸñÖƒ˜<Ôwpþ©°²£›4Rá +þ¶k³U˜G2fŸ¿N‘|8H|=>FþÛ¶P‹Sâb%ä¡ÞË—³è uY߶~"~¥›g~˜,94ÇsÌ5ëØ[9þ»ìƒóHµô¥èŠ)P¦±ð‘zd_“É6Zc†¢íµðÐ{ŸæÅ„K&°§ :sÝÅ'M%üs¼pŸ †ˆönBjy »Ø4l픚½ÆѳKàވꊽ'j!ÐÁ~Päu4h7ÅuæMÝd&ès¡ÈÜÓ‰¿RhÚRÐÓú zŽÇ¼Dx<åeo]yõ;Ô¥GVȼf…¢[p•µ:=]eÔØ‚&‡j‚Î8[Éûÿ_Ó”×/·Œœ§œéäÊŸF®ÆõiÀ?Kºá)†ɈòQ|^IÅd⸭ Å÷Yk-_ÏSŽ•Å|–ÒÒæoÄ`üt‡M +o¬awZû«´Üa!Á·Áˆ°âÌQLåHü¼# ~¤­kþ”åôflÜPA¨}IK)Å64«ËóÜèÆ6XC’¬Žòú%åâ.Óƒî1‹ä†êQfÆ¥¡¶ÄE Bµ3EËštŸÎýƒÞ›%Ìu‡-9‘Â@ßùÌ‚+§-‘`5:Áó¯ø&ÇÁ…ƒ9]ÎÃMï¢$ã ·s*ù‚ÏÔMLúO2..‘iýS—ÂmØ©ŠšƒãÙ%2KpgëQ½*9TßO×s&ä) B¡oÒ”';Éc#[º·’†ZyÔé%,Ú6/„ËÃN}ï€{™o”Ìú‰÷vô\Éž¨ó³œkb úd%û‘ndž=Kºa%3„gØTeudÁÉ_†V© .Ñy!ðÔiwX]ƒ\ýŒp#«&UwY˜“¹DßvDß3äý ÿµÈÖ*Zóy!:D†ÀÌÕvwÞé[âtýˆ:g¦¬ˆa3@™†—ªhQuèOWx6Qу± Í/%Ï™r|XLÖ~–ãm0m|Hr‰S,3uÓ­i¿Z ݼ†Dí²²#‚Ú?<‡¦ù6ÉÛêýÞV“·mc×®¡‡]f¨K©©›²H¾e ã7Kè´¯­a«æUÜxW S6YhÃ-Ü+Ö°ð- è{,¨Â‚u䘾1Ž#èk$‹9³ñÛUøe{èÕóVCdôÝŒ†ˆAû(#uÎaw‹Ó}* KobmM¤VºÝáµÆ Š{!‡¯ô +‚…æOFCzº‹ íl[æ5í&¶¾­IÏš ÊtÀÅF!%¦%ñPSfE 2M顪_-Àz¯j¬wì;]ŒA³j´Ð¤…²eî T2´L£‘+›ªp×)ÙU΄¬+HÇ°v›Úpm~mÚˆ3œY7XÙó+qz}|µHȉ#ÈX“KU4˜ÐÙs0m³*™dâ«}yb„ôn[àc|1ðYU»gÊÎŽ¡Ä”Tw̵Æå¬)Ó[ÉÅÎòÅYØG©³>a»Ç¿ûü{Â:‘¼ £]‘Ñ1#iך,Ðib$8#•Sj.•î»¦o;WÕ +(èp×Æ]cÈ·ñÊY`»®˜AXäUf¶fìžò¤†õð¸ìF:n²Tp‘K¬G‡B¿ÐÇ'nˆB}ÃŽÐ× ÁÛÀ%°:î€l·‹öˆÞ‰Ç@€®ÍóiÕ¸±˜£óÒBiË5ðÒZÒ¬ò¹3­D¿ÓëÌið%Û";?#VÉO–,I¯ÞìíSç“Â;$Â}¶aŽcÇúž¡Â }ÓºAWˆt H?2rv;a² g½N¾?àë¹>Ÿ ”ÀºOâIr³§d®IÆ.ˆ“0|À:óì7Rµ!|u$`ßöy%m‡ž¥Ã¯²pgsµs³#Ë.˧íø ‡Ã)ðW~ççi©/à÷ÿ±_.½q#WÞϯàÒ¨Û¬ÉB‚xëEb-zYã‰+²=Î̯Ï}ëݤì$@%µÙŪºçžóÝőʲ-soÒ“·e<û]M®“Ã,¼'¹& ¿&6*(;^¯ôâû ŠFå|잺×Ôô¥ì²ÇO~“{=?Ä]£ VþSÌbÚ¢¶Ä epŽ”“Ù@9ŽÌ« xÃMte]-„I}åÃœ?™7Ànþ`´ÌÃ)MçŠ0,‹ ¢[ôŸ íb,ynÁÀ'*·˜ŽDý¶G:i¨¯)徊R0ì/%! ëž5 Æ/e9jü +ÌǼġkùÅ@-C%?.îçï°_ÓYvéB~7L µ_ƒ°ZÜn9 he†Tmº´d@½"ÜñÅßÝ€Î9vöˆíêJíT]žÔfƒ² övï™ eË>„òý&ºjÞæyèñz”â;”,Éåê…îß>GÙ«’5´ºžø áÄ|ý¦§š•~EÕ{=í`DU]Û'[NŽ@¼¨ t‡ ì:5Å^篔ðj;Æ'78úåM#¿,zÄ~úÊöX–<4Db÷¾ÔµÔèdvp¡Cï¹”ØÍ=Ç¡ÿ‘ÓeOãøz$AÄ£XßóQ`‚šÍ'> +_$–\i–; ±‹$䪦˜":žéÁÑj­]ßæ¼Sö:7ÄÞŠý·Hç•æmÄîÿ ŸÐ—à7›âŒ<Ó’™ñ–ãæ67¯¡÷cÖx´‘T\WN,aì&÷•<Ô%‡÷CÉòۤ棂}Pˆ÷Ù°Ýá°àÏø9¹£d~†íSeLηíÛ‹uçRcõ©n, eöƒK“}M<­×ž6—È=–ø1¤ /Ó¯Æ%> _u&Tyn>‚ªÐæPÌ`W˔ƽ‘¬Ï^þ ×ï1zìÍà§bÅ1p=þïu‘¶™´O£Ò>WM¹N(w…qE²/l‰r]͸B¸œ£;DÒM,xmrõ ¿B“Ïêê¨Òqä² ÛwÈ?WƒxlðÆO­í`É^ªã³IÌÉG-þð¤#k‚ju¸Ü€ÿ ßp9G ²œ×ËåuzÒV0±[œhcí_èA}Ãó‰ÞOHzBƒ˜*}“°!}èFjxX¿9ynĦ3è qœ€–'Ý”pú`»Ym4{Š>Iˆ{DÖODºb;Â_ÕÖÆ-ÁjØÔ§:ÜÁ3'5žšœô‘[‰ ãH‡m§|h†F’#·ÞžS S?Å£ø‰Ÿæhw0}RyƒE…¼AÃkÿÌ™pÿl••gŪüçôPY zÍ8oö¨Ç<‚AÔŽ^ÓQ§âˆù~%W@S¤õ|§…=…[s ýdÍïk:Vôq’`r¥H\Ñ-ûQÅÿȺÈWîY󮌿g^(b¯'üñIMj;d’Ö9ËÛõ½â¾Ý3`5\rd}’B*Vv:2æ%ÔÊOP”Wù""¼!7Æï6@ÖD[;ÍnGzÈYôEÔé™eaóÔ/ǦÙ^ÛN‡ØhgCliÔÎ+ðy‹¹åÕ½ƒ¾¼™Ã»4W«£?/”V®ÈÝ$ëºÂhNøÿÿ0Ôê_°5•”K¬óp£b¦&»B|ñ¥hÝ2AHJض"ì6K zÑÀéi¢fáUÏU¾4þO>´Õ‹fݘb²íz²Óüò+}’‚¤Sεó) |”æË;p“@À"M ÿ€n8Ψú±j6Å¢ôu%9©NpZxR¾ˆ6;áŒhûJ´;ôä6D i! Qí¼KIʶ×Öö? öjÂ(Ÿ/“páUBÐÂH!½º|i¾¶î97`¢N[]ów¬z¢vŠ¸÷œØJiÅ7„Ë++k'õ)ÎôÑä±pI Ï<\}¥ovÕgûîHâ0(Ì—Áîð@ÜYv§/Ô‰2¾ˆ®xGãçq‡®üÔ§bæì2ÕÁ8Ÿ–’áà–Ú; +cº„k|0_㿾çBhåûlóÍ^ú‘âª7ÒãOhál$Éw¤mjüíWªÖûóþ Á7Ï÷?¼þ£û+ÜPsùžŸz“‘!5ô}ºÆéúD×õcÛ¶þ÷—?o|yT/ÏËæ*L–Âöe»úLXäæo?¼¾¼”³ú•AE¿wuP‰+ƒJ·sPIÿ¾A¥x<9W=ÉrYk÷ +Yòøh.£ÕNy:O +ÔÒM7GNÍ·@¬¼N3 7Št ,î³1Äb œÖ_^–9½ɱííšúxt£Š{çÀ½¾“Â'f\›ÂšÕ#Ý4”+C£Ý¬+h{´S¸Ý‡¶²PÊa‰I¦žOx€G*•§_x„Ro°)Ÿ$ÊÖðDÍ“(eTé¨g™¬T*‰ àÌ ÿ¨‰å@=Hè§2Š„Ùƒ[òScñQØŸ“™©3`ã¯ú=º&™áV…©×ŽÂ€XŽt'Ö¢²dÈ8Æ‘8à/ÆÄ–¤ò ¥` _v¢ˆ'BuX(ak€~® ÃYÀŸIW§==sÛÀ˜H¿E¬7¬âO-葈îf bV~Ô-p(‚^«X¹*Š ¢PÇõ?Íž3È£3«n¿2¬‡[DƒT„FWyÛ÷¤áðKô¢ÇjIëäÒpl»ä*¡¼:˜­1ðVÖ^ÒÊgÔŸš*Ø{d(’!è,½Ë`#÷ˆS¹²å2ë Š|«À²ÈÞ®E±÷ùà3*íàzÙ:û|–制/¸—©<ÊÛªøIK3çÚPró<»”ýBçerË.jñåÏÙw,Ô{žÍ Ì»c÷"(³î”ÕËî€2ë¿ ÊÔ{ÿeÿ³Pf«i䈯è=j”ÝJô©n¤2}éÜóÑÿ>®•o$“Ž0ÛU3~”5‚Vnžï-£ÙÁÊHŸSê•'z²6ÓÕNXL—fÃßäÅ›ŒëDÉò7¦’0½B:“ü=Øa):b6sùò™nWCÜ®J {µ«ñ?­R^þSYÞ¢†ÔõØÖï°™íR>ñ¨@èFÆEÆgH¨Ù©J¥?gú9×½ò)vÆIUTzj_¨}u¬L_£ FN” žF\•Ë|oϤ|Øï¯&ö l;¢hwEÙƒw(l2¶qE©U¨ÿ]@מÝ9æö‚¹Ã*æÚݘ[Ô”û ê.“—zÑ +7Ú³Üس°V·þ-9ÓÒ• ë>4*¤ +Æ_À¨ƒôÚVO¡o +£ÎQ(¨@ZgÔ^+ç£þK€%Fq +endstream +endobj +100 0 obj +<< +/Filter /FlateDecode +/Length 6037 +>> +stream +H‰¬W]o7}÷¯à£TãáÇ3‹ @c·Ù,’¶ÛhŸº‹@VlÇ­x-;Fúë÷~‘Ù‘l©[ˆ¥‡¼¼÷ÜsÎ=þþîþêb¹ºW/^ÿ¬Žß.¿}y¸W/_¾:=QG¯Gµª+ëøß{§î.Ž_¿¯Õåæèxa>ÔʨÅÅѼ®jëÔb¥äã +U„wà_¬eŒ«\Û´Ê6UÓxçæhfZ½øýè‡ÅÑïà¤ÿÂAø>¾ Ûã··Ç?ÞÔêôËÑ?Žßß.×áÛåúRÍÎ×óׯôñ»“7§°·éŠp!:CÑØ]¿qGuÊغ2ucT´mÕµãyQ×µ{YDô䙶.ÎÌÛ¦k·mýþÛšaæ^á3¤z‘îRJ¯1ü£QÆ…ª®<ó·Ù©¶¡ò +þ:xCÍ~U·Ú@îÕìNƒ—ø½U³•žü~¯ç” fWøª<0-®ø¢=>_ëPu·¶•Åí涊j¶Qx>iHBÀÕ~~Ðsãñ뵆ŒÍ>ª•nñµ¼×œ£ÚÀã–7´œƒPðÈŒâ2´ø“ê?bºÂ]!4uwmñyÄ$\Â*ƒ7ÇáõZBTôGmnðµ?lnèò=opmº®zÀlÀÒ[¸é/‚[Y<ëVÓ¶å[S$Á†2]ãŠ%D¿áŒ"©(u”h8ÓâÙð‹Å$èÿ,þ±'€l  Ê ¶£òZÞãÁ†RÛám–9ÕT»sµÆˆbùb£lxNƒ§zʺœâI  d)¿‘îè9 ózzÂô©>H9ãŽóy‰掲Öï0‡ÒPt†‚¾œ§h)+W“Ñ a¶ÇõEêB!˜#‚9!¥„ l©mŒ¥¶ƒX:Ê Ê`éOâòkj‰sì4‹=”¤JèïpÛ6;Kn@FÛqTCJŽ¤¸}(¶Ìez#¨ÿN ÊBÝÑRß{L"¼é²XìI ±ÚŠø »EÝr)úö™û\±ˆ{8üƒ}WvÜ òE8½!„øÁÉ°m(±Ý× 5nö(uŠ@)!Õ!•ðE%Pl±ÅR¨»‡öÇâ$ +Z%6–Ëó+@ÈI+,ë#èl‡·k¸ ÷ŒÌxû‡×<é¶)1¤Àb\»Ø©àC¢±BC@¹uNÄpëC9>£ÈX.°{7îòàßf¯ÖØ!vW‡¨ÜÃñø#õCÁ»…`‘¾¢ÜÄ e¢òKòK(ùå UÞý¶…'ßÓÛ9µß +O*„>7RÏã·:Á«ûÂT¹›y“.ëö5Þ-"E,ñ ŠýQ;ÃARâä*×ÅŠ[]ó‚LŠD«ùq) +”šµ“è}Š­é‹‘i]2°9 AÚ “–`i0†ÆÑ2›ë½1Ú D¿nãn<:ÀSÆcŸTKñ‚#Å9$¹A’J1ï“ÛJr[I®hæNM³Ïh*€˜ÙPjÂ*ûŠ9“0ЛLÃÉmñ+êŒ\@y Ôé0t<Ô‰ ²)L¬Å1–ÜHIßËêTò2rç¾Nrɤ§FJèœÚ …ãðçæ\œù©æ0uqõX]X\p°bùf‚#Ìfýe;’mrUß®Ä_ñk,ªè×ÒÐ`@7ïp%\+ˆŽ¥ÒŠmNÎdõüÉQá.3GÊ—DeòÛêVro*å¢P®ôÏÍMcÿ 2€$E‰î}º°À1ð¸ÂCÉF•o4Ø©½aµAš’W|¢®íJG³Ëû¢õÈ[Oûò~†c-£+ØÝ,UûªÎèºH¶rÒ©–ä`tLžB\Ïx%Ò“ \-MHo41¸Ó™§§ÌÞˆH3º]†Ùãë9Aœi¢êlí‡;jBz 6´›B¸¥n®ý¤W²7Úíí¾hG¸÷<îÝV¸ï€y cK‚ù…¥U|S®±ÇŠ~TEùò‰ên“OåloÄÿj³‹GJ0bÊ ™ÆÜ;ü`)lγŸ}†åä¿ñ¬jï1«Ðûá‚ÒŸ_‰ã,t“ïR©‘{Ê 'xTµìä™a[JËàBâÖ÷1ÿ=Ggÿ¶?†}=À0´¿¤:uwyt|b?ˆë$|ó Ù·‡xŠ>Ââ­AȽ¨ëÚ½ÜØ`(úsó¶ É£}[¿ÿ¾vxlõy잣h~xÄJ­äBU78Ÿ¬³…‚}‚JŃl”M‹bfª=‡³'…8ldlp˜ à¢ò‹¨ÆX\l ëØLºÈýj©OVÚfUG}h 4/îT=SßÏ.kjÔvF&)¢V Jl‰OÚs›Ð«ê͵v¸!5‹'ί@_xf·-æhN{¿Ã€Q׺±ì«É_è&²‡÷Ô¿+´ádx-]å! lVŒ‘DêıIŒpcÒ‰ ¹áZ{úþ1-Xè9ažgy|à Å·ø Ÿß}ZŸ/N†ÜñGí] +2rm˜x÷‡‰ß®#CL ’˜PwL %~ìé#Ð4fS'hÉ À%*ª°}ƒ¹ºas dG´J +˸1Ì“â.hñú!É"ïÓ +†I|Uþ…¦,"ùM¦å‹Ž¢d}oá ‡È£#ˆ\k–”{ ·•M ê{x@2ˆ²äø*Vüž„»¦4)ØZœ<䆔Êt;ÁÏŽ ÿW Kè¼Ñ Ôaö¦»®¶tÜÅh%ÖÍPµ‚u[=.ˆþ²Á…ë÷ ¨UñÞÔ¿Q^¦óÓe©UØ¥HjópÅ5CFúú;…ÖŠòãGįzDT:R¾‚!%¡2´l6òD'I3Ô"4(®œ4Œ9]ðUlèƒ|=Ê9oWÐ`k–ipŽ¦¦ËRÊ®ÒâÌdkõ«Hcèl¤5¨A›_rÎERÄÀBql¥xXŠý|¾Ç¨ 5V3’Å={_iM½ÁW%þsôÏ÷>ñ,ô„ÎvávKÓç¼ÂEÉŒ´'pV§Æ KŸôwL+1“‹‘< õsô®AKv,­[‹L–(2& :Ðf‚rʨÔ2¾wExÛ„íŽ-÷ìbÞß¹2 qß}`¹Œ¿, ±Ï8mzé$øÌ’P»éÚòFÈXó›Ì¨öAÞ•ÏN¨ŠkœPèrÉ2Áƒ»X˜7xBß—5ðrÇe3B«÷™!lj’Þ±‡ 3„©mÇOôJ˜qE Äi+”j¤=Žà ¾ëK*&=jÊA ñ`fTöÂ剴X‚9‡d ­5©]í¦êRsS# OfÔâ;±‰`´Ô劮´EW ‹Bfi.³jüý/½2ÿ‘0Á¾y€´6«Ÿb!W‡ó·¦iìßÏ69y€ëâÅ|ë§ëzwþº}yÄ–ºÍÅØ^RQÓÁ`¶ÿ¿?|‚Òâ¾úU™¬d2ŽÐk>‚]ñÐÖOö Þ¼lÛNOò 3¡ší:ÄàÈö,:µÃ€‰³ +Ýÿ4lÆ!ò a–Ø¥4ŠOYšøŽ­áÕ5p<@6 ðªÍìˆ"…·²¥hpÆ'U1vÏ +»Øl9™]°1ŸwVu^ô"j$í¯‚¶LWÂñ~Ü°1há~dÄ¿C:ýnÖhß%9)åº+ ³ßE²ýÿèÜQ°ÿÛ#üï{ç'縪ȭ<Àp Ä–Ó€ÄužAb£ŸàÑ¥·Tü㪊‘°…o ÿ㬶LXWL—ù¦m¹é%ñ'B7µ²¥ÔÓo",ÌTÿªº†7nÞ€¦ñ[k¦¸ô֮ɱÞÐû ;v´ø½ú¹ +VŠîûMý("¸Uÿà¶Uæ„ïð9ÿX©\kšZØ%6»ÔÁ$ᔞ*äõãVý“8.ü§thƒ¼HbL=Tü\šXhZö=X¼òÇPûÊRþšÊu¾•Á¿àцթá¤×ÔÈŸ2„Më&Žàe†Ùùƒº!H« m#šF1ø•ÉÌÛù¨%ÜtŒVbt +S³øLªlÈO·„ (˜ò^˜ ³Üq¢Ø;s7$kØ¡®c‰¯ŠiM‹¿¢L¶”ØÌãbŒ‚í“ ˜Ÿ}â\3o´]Ó¯¡¤5wDÍ`2ÇžÙY›·Öc!P¢˽EcpÑ«¡¹S÷t zô9Ø£Ô¤2-kzÞŽÛ&XÝð!jR®ƒ¸¦Â2»| q)a)Û„÷• ŒM;bJ?^‹kLVóP‘Ç{&¿JÔV£ïª®L%Ú1Íræ¬t>÷Î?:w¶|?úÁ”ƒ„K¢¯@M_…ˆbmÍ,¢§÷Yhø¼ÛUZîMî}SSãA Zp5*ñìsj-ç÷8½ˆ(ؘ°¸Â}÷çºï$43n:÷NÞŸôá“uWøðþ»øð|ÿ܇Ÿ_\·¬Ô¸“F$Ú®…m†Áû­Pê¾=íóñA/}Hrî&ý~F´[~ ý« Â|Ci¯it®+Çô-d7õõ²ƒÅiØMwøMLã!èºÔ õkEÂ&tü-Ή¤•!e‡¸GϘG&¾ßE1.&÷qlõ8¦UN´‚d|€ªuXÀó¬"úÖ®JÖçpÑ*Òà ¯hÚ&K'Éeûû9¿Œ:jC-šaƒ·Äòõ,â”2b²£1ÆÈÈqŸÜCŽC©ë‹Nñ©”72ƒbhrñ*žH@(—ˆ0“ñ*CĈq§“'Úóû¿lƒ‰ý\h’™¨¥ü¥µÍ´Aê'N9>°[¸¡8…]¸f+ôájåØbŸè²¢†ß1bš`!Ö̲i"¯ô‚ö 'v/÷À!ë‘Á\¿§w©÷èë @£.xÅ¥Žs3•!¨¼ +hÙçædA\à3%G´âXÛà¸Å£âPXýL)¢-ü#&Z`M¿P¡¹`ÔðEf;²„·øÙ«¸/Z ö5ºú>¢;¡ •…­ÙøÏžÁÌ<¥ÊžÔ4<äj—ÃNi}yaZ½Æý[5}î\)¸Ä­¥d<»g¼¡oRw´+n\}u„ÄŽÊŸë¨ü¥7Ñò¯õàC úãwY)Ÿ[©béà¦Ê¥W¸)ÿ7mñ3ÌgGÈ šÞ£ëÝqÃãå`Š–  Àfr+¤)@ÇýLà ¢Ž½Žæ)©Å4"; ¯{'Å¡é¿"% çëcÔ¯ O®•Óâjb1 £Yjke ¬¤0mBèÓ²yÏ›w²~]ýÚEUh¤tÔi-ráÐt“ÂÍX‹Sâ E\ª“Å“^ã÷¬)j‘T¦)!ž=“‚ÜŠi¡²dßN1¤†l×0ä[TÖ •Ù3¨lEí»©WšW;ŽKÓgq•Ý0£»’Ñ…Ïýù|®8‹&Æåÿób€\²[Ü £²­%wJø¥»ÊxA®Ñ ²E»ÙIQ+\ÎÊQ1Hÿ/eÁ•%Ý’ÿ(i¸1ÂïòDF×¢z€0ƒo’¡¸Æ”‰/ Qo&¬6–Ïg„(4™w2Š[Ž¯•mYuøëQ +p«8‰ìÄ@Ñï>pSy´ 6¯ceË@÷΋º€ï¬fï…hnça›á(Bõ`³àøY Ýq2>rÄXí€#h-IC¿ááÞªrZ’Í$—g"PxuÜÂ82_Ð&Wüü/ísªÃWÅ5`÷ü%þã8†ÞÕš ;e¶u«h—þ‚Hè‹Õ ësp÷ú;óªpÜ u\FxTd{ï¨ñVÆΖchwŽÍ+‡1áy¸PaàŽ OÌÛ¸4¾´ÓÀ`ÄtÞbVDLŸ»õe(öCVŽ#+Q^¬«°QtšC(‚ yáYÚr…E’’¬©¢]Yø1,Ÿ!ðVÛ÷Úµ=.‹4"oÓG^9h6W‰eM¶ÈÈP=[ƒ¹ 6ámU›¦&ò) EA +ÀþO€Åá^ +endstream +endobj +101 0 obj +<< +/Filter /FlateDecode +/Length 5061 +>> +stream +H‰¼WkoÛÈý®_1E ¢çM² lâÝEŠ¤‹6*ú!)~lj_•í¸é¯ï}Ì g$R½»E€H¢9s_çž{îÁ«‡Ëó£“ñòåÁ/âàÝÑ÷ÛÇñêÕëÃ7böz9“BÖÚ8øßZ#V³ƒŸ?Hqq?;Xª_¥Pby>[ÈZj'–'"|y¾nà ükj'lgkåáíjç<œ¹žÍUW-¿Ì~\Î~|–þ †ð<ž…ëñ×»ƒŸ®¥8¼ýmvðáîè=|wts!æg7‹Ÿ_Wïß¼=Ju²tW W_ÑOÅ~.ƒ›½¥ð¥º±Zã÷ÖÕÒtV4º­»Ö {çª\ŸßU²ö`²ZøZ‰ùIµèÄü²Z(+æçðÑâ/ekxz".ª…–øÚ#¾€Ç/+-ÅüNñ¯…Öøå¦Rtí…¸«”Ã'+8aÖßÈ ª®¶è ¸ç®*¥ê–Üru#æ÷¢ú×ò/)›Û󥶖÷Žeí(—è S®õ¢‘¾ÖMGå{)¥4¯²n7©3“ñÚ”õòÚÖî­®|_q°ê-ñCɦn”w…Õó·}ªï8‚ŠaJO+M…¡Úyª¤¯¡BTc*¦jñ󶲵ƓÕèV¬ÎøQ_%*Ú·J+¼áaÃ5†PÝqƒuôø'0¢GŒ<ÁõÆ+ú{%z# >¸ Ëc”0vðÄW+èÓ6ذц°¡ ¾÷B†7+CXü;£Õ"ZÁ(ù ¿[B©ÇßÙCÙ²™‘ŸUÃðk†ñ=<‡/ŸÑo+uÓ¶;]z|å2T®§,¹”™Õ™¸ ÞOé›c +: ßéZ&=PÚ=zγ~µ®(’,p‰ ˜mʼnï%dpR.äÆcü€ØuÓ”Ê?çYº@¹0ÕƒÖ3—9.›Ç#×øBÓ³墥^}\Î’¸–`{3Ë(*\eòüY¢mÑ»+ž°³ ÝÎ0º¤„Pðåó¨•ÍF˜(W +æÆžš¦nž¶6šm´!À¤Fæ=-@{4ø%M¸€ÈhpãÞT÷8»ú2-<·ï¶ÓåČ㋌×a¾(Àl¹Õ‰ ( mðÎ'±Q 8ñSaÁ®«q°ƒÁ‹¿SÜ A‘BVD³Y W;¾=§•jÐloDÅ<jpæ;jáçñ/ùæì><0bÂG¦(” ±ë¢Cö™Xp§Œ6ã ‘¸¢­cqÓ{¡s('Mã´ñõT•Á€£Ñ›»Š¼îÏCÁ§W³ Üë×(˜,q‘Ö|QhýmÃÒe´í¬Å."ˆ¯C^ŠŒvœÑ¡ñóbP`"Ü°?ÏWxM‰©ÎaÊB$ SŸæ•£K}Ü>  Òß øà„ ¢¡®Q•kñ·)¡‡Õ‚)&S ;’à5¼Å;»‰®BgÁ«ªwu¼'Ä»ˆß5¯KÄÿ³òz +â(qÚB"ÀÀ¸L ÿëS6‘á&RA­ìÛFïyoï¢n[A™ÄüSUY’ˆõ”à»,xÜWU¿¯JöUüYAiLyÑi1q­…u¶m8-üBÐ„È D,æÞÂ&¯™xHdSÃÐÓ óàe+Ã"XYâðšaPñú¤µæ—8¾Ã+á&zó& “÷òžH–ÈtðÀ¿\UäÏ%Ž)Hë+çœ;º9å/§·Šb©¼KgP1a@0.Hù‘w-ÏB6’ûrοVöA+Áý ûׂUEpÿºwuµ”EuãÎGÅuX\üfl¨®o"ìSy=L…zŒP¥„Ao‰ÇQ •òR—ò’‚Ps*XëXËþ!’¿¤ÛŠ¶£cìKÞì” ?hϺóæ àE¾6=`,¼·>ö–™ ¯00‹ªj?m`ÃòÙ $0À¡¬?Ü‚ÝסÓ]Ýlê—í#¨úÍm&íAiþ(¢Zóm,]-úQO€¨*Ù§¤`'!£Mƹ¨–_ö4 3kÈoò›vù”Íä›È×"”ñÃujÿ¯u*´-Î*òñ£ñøékS£$}rtÁ@Î&[ÚIãÌ‹HÝ\DÄF¯+“>ú+Ù!A+º˜Ú‰ˆˆÜlÉûó”æj±Ô a0ºfºµÛ]…?&@S”VÚˆBŒ”ß~— +~gMž¶,/óÈÂP‘šÏvÑ°¥‰Ã ¤ømyfM_êb¥ Ĭ1}’;ýz˜È,rR(Uû´Z⥶@~ØnÓ®6È"á#m”Fõ¹·Ú±¥ ¹{Ž´£RO&‹NDÝ•³i»ÀaË£)q‘xFCç'X<‹e`~Ï_lÄ]Y +ìô©›³P!3R8cñªÏ:㬵mºWÊ‚iòu q–nÑó­|¢eîà€kÛÒãûô¤ {휆o‹¿q¢Ó‰ÕÙ€•»€»UÜ@öÇß.l×ÖÒwº@Á|±ÿhóûa Ó›0ÖËŠž×ݶIAŒÛöŒ›çeŸ¶$Å×_²±vŠœKv’P  (ȬSP›[Ý ƒã¾üÜÑiæq'”T¹(s‹ƒ Ã8âŸ%拾 Öá“^ rbê°Kj…Odm¤n”¢SX«)eì0¤l×d‹A?€!Jpæ[exOíÛî*9Ï;à‚þš^Àékp×–óˆÈã4ìŽ÷9¾ç|ÜUrM¯°AiÝ××â™qRµÜÇ!•k[ˆÅ(þýþ°µÖÛL`ìËŠGNW´¹q²GÓcÏ¡ðЖxpj­Éär6QbGFµ¹ÞíµU$­:°Þ% ÿ¶Õ®à‰¬ùº$Ü·+Áæ9 "Fˆ%ß“+î0UE7KF{Z…9èrmV@îœÝÞ`©mêû7ɦ®œÒ#xó]¦¦ÿv˜¿+Üq¾õ1Ñn?¾m3¾ÍÒ|AGT|™ Z^g’$‘&†ü>¤²kr:è?µk4vM2CŸOYzÂlëµ Œ4Zê~M^_­A a¦è´ž oj̉¶ÄÐe ÷¬aîKmM™€ €Q²d(;"‚¬³™ÐÞÌ>NåŽ'Å)&Ê`L- 5[‡Â/Õ¢ÁÓ+ø¨P)YË6øä¿» jègÁå[ô/‚ߨüàº@ü:‡E!“/ ;Ú<{Dí¸Ð}îwT;°°YΙ!áð½Ô?aÁ íð¹W!`¥ÖxÈÀÊÊL[÷ê’=•çÖ¹ÀÖ¶l<Ï›ñ±G¶¿¶å¸lËÙÁÙ“Kž³„ +®Ò*ü%‡.)÷õù˜8íß|ΠC›wö0èñ.cI@(öŒv|Ï[F»Ç–Ž _µæí,iŸDÜ¡G@æ¸!ÖZw­¾{8õÜA´.ßÒ¦ÆÌó$VÕ£vÞ¿¨&+*Ô@‚’,*«dS7Ê;a‚½¸ý … Í/NïJ¤}a‘vzzÀML–ÿCZ‹I’w£¸½¥ˆã†ÔÓ\6ª1g"c¾…-º^éB8 å-ŽèÀ +W,[Ä#]¤øxí±/]ô +pa‘v¾XÉ3h1-yWÓTÃSl>¢š4_¢WI)Y”Mþ£É èÖ£Ÿ½å@iwö·éÚLqBŒ¶Üü~»€.7Æ|ªZ¶ ´ëèw臤´¼J¦üM¡P•$«Ï7xp` B•dÖÚÏ FœÏŸ©À±NbhfÈUì'L˜î+›¬6¦×µ–›•uÛ ·jB^’w! «LÆW¢†×$kÿ4V®€ãàkX]ÌÞè_aby>ëlè`dºÖ Ó¸ÚȆ°öRJi^-¿ìiÒg&ãµ Âåµ­ÝÿÚ¦Œ[C|,—!‚ÖÌ­}œ¿ z­PHŽ» )P¯R á!cr˜õ[K9C¯•ÍdÛH)•202XØôŸ'T»}nµ=ø,÷ŒjwÛª]^;¡ÚZî¨6NK÷òD„/ƒc3wà#ˆ¼…&$ñ™D’vÿ˜”¶À±ô­vë*ÿ$ï:'}Ó볫ÉÖ)V˜/°ª¯Iª3Á3É7€vÈÒø¸¨ê͘ô#I˜Å.!ÑÙcŸÕcGÆBcîN¨5PÅë¡Â5Ä÷h),›"+© ¾ýŒ {±`ðïs´L°vv ÷Åá&ÛëÕý8w`ûžÆý9î(·ÝÃa•;š¦Ãûä¯ùÞ©xsñR¼>ô£gƒgØàY1x`f±þ—‚û»º#É Z9©¯•Yd¸Å}Q:¾Ö<;‚¡Æ€ŒR×-]Ê0Q©û ãV7ëWO¿°ÚÂ)V;¢+ÖžgŸÉ*;SIÈ]8ñßØÞ$>Inˆ—"{F +3ÙßÏðÐ fŒNÅÏ*[µ˜[W›-*lœ<{Ç™TY¶ÈmÛ~ +¥ùW‹ÿÌ×MuÆÙ½Gº¦8wÃ×û,U+¬3%wcGPt…3:6!̇E@*ŠŠ xùËšØæ}í8œX[( T­Ï<ÏG¡‹Ö7« <ú½z)uúBYS#¡á’ +Ñ$?d-;î2¸XD!i iJ¿I¾SŠKéitz¬yË*0 ø#¹z„Q¼_ÊoúÑð›†ùš.ûY¤÷y•áô˜ôšô.^:¯xH? TjêÒ7B5 òöëÛŽ¤Ò]FÈPj‡„3ØKP«­tíì‹õÃh;˜b Úu#!MÏÝ!X_×]Q=4í»¿ùWè'™¸Šq©šËãœýµþóê• þZ?€ÆŸÊ+Á†ÏÃØ~–†pán<Ÿ#–ÔŽ’A±t#p¸JŒ7Ë>ò.A´ˆù”Ø+ò*bÌÍ8Òhü€-nÅâ(R›5£P*c[|ïÁ„8?ôÜvĺ͈U@ÚƒØvQwíb½;ڄجªk]iFÚ +ê¢Jý¬âšýüϨygX¼ +4û©tk=¶"š®ÔcÏ’“LÔÞK1ó„uŸõö«Ö騴R¤F/XLÙ‰$“„–8ÜÌ üc¹ÐTªBDäç:B7à›ª6L¥rÆ\jô$£27Uu#ZɹsJá¸uÏ1š)JWodiõ?Ñ$Å,0&;ÁlB9Ðc·õ=ÍkÝðIqr½wBï,ž%‘ÿ'ÀPR/7 +endstream +endobj +102 0 obj +[195 0 R] +endobj +103 0 obj +<< +/Filter /FlateDecode +/Length 5864 +>> +stream +H‰¬WÛnG}çWô#‡}ï™À0ÛÙÄ {“ØÊÓzaHÔÅ^K”—’V«¿ßºtÏô ‡äÐ1 Xä »»ºêÔ9§–?mî?_ž®îųgËßÄòÍéÓíýxþüÅ«—böâd¦„ªŒõð¿sVl®fË_Þ+qu7[žèJhqr9S•Òða%éÓ£U„5ð/V^hm+[ûZ_yà7³¹Qòäß³ŸOf?¿…“þÁ +×ÂöøíÍòo7J¼ºý1[¾ÿzºÆßœ®¯Äüb½øå…\¾}ùú•ÐÆÕE¸¦è^š6ºvã†"j`ª´òZDSWMÓ è™RÊ>/BÚhSÚî›ï9Ø·v“÷õªŸ{—øÉ>ér^òLoµÐ6T*ØÞ©ÿœ¿’&TNÀ_ ·ówâ«ÔŸl¤ÖUóSü^‹ùJ.~¿— HŒóϸÔæè_ÜJ‡Ï×2ຠi*ƒÛ-LÅüNÜIÚç“„<üµ†×r¡.¾–F‰ù¹8»§,y”FㆧðAn.ÄmŠêRœKãp—zƒAGàƒÁ7ÃCœô¹Á*Ð2Û‹Öè:úàuÎreÖ© ÒctK\Þ?3ƒ¦Ѧ_%Ôå2ZýCºÜ)&«NÁò­æä9< Ј§\ ú]ì~—^ | Î7–+z´Ägº•ã3¯Üƒ*ÓG•ÛE4 +îÔ4žQõ-use¹5 ÜÄ\²fìØqR£DÞ¦ü­xñV×áw3V¦âc.YI JNÉ ·‹»«–ÇjD]&•´æZ¬$ÅtÛö”žîbFºJ¸n» ÑF¾Hºc±óžd™²‘!¹¶`îÍQÔd ‘!0$Àüa N¡†š¶$׳˜˜[:ÂÉ%C9Á±ŠÛØ¿rã Z¾…°-}Z1­¡ Á ˆî o°p!m’ˆ)^O"Aß¹Á1­!A)%œO¾¾ÀG *òø±Ib£ ×B»vkH±çalÕÙv{½Ú$"ùM.Èû}.h°ï1.(vAM½MÅ©;]?ä‚Â4ÔŒ¸ mSðHP Ù….¨ñ>?ÞŠM«l‰žDË ¬Œìïà„:sÇ{¡†¾ "RMAü»Ê$S’FÏá` bº™Þ±/Zv,|,Ìñ˜ˆkã#Ú½ÖÆ—Ö†¿œp¤ÁI¦¢“ʃ'ö-1]¬Þor¶O39#§µ2-º[ø´†YâÊ)Ú–E~þµéøæ,÷Uzó^²Ñ¢+Û«Ž}‹cá¶â‘8ª‡ºå³nùr¶0ק’ã+ÿ+æì´&ñ»+Ÿ›¶“Hks§’ aQHî,•ôœ: T¢NÍg¨õWyº¹ ±áÑM’+S9MHå´x’5­>Fnša’\NRçœ1”©V +ÐwÈ¥ê^.°¶c/‘ˆBx~6$ÿù–“à ꯫¡o€Ç ôûÑjô>5ì{„s@ »i¯<õ úúï †²Õ;&„ÙÍsϦS3ÇSJ³e–gDSdrƒyëCqn¹bÞ€D°&Ù¦¿H8nl€ÝÂ'\ÁfŽØµf±¼Hf@à!¦*mô:¹ÁË]³hk'â™û»¹ÁqûLoÛXH£Á•H÷<¼®/Ï:ìj„”¶@mÇ7“Ë®'ÉÌöX­FáŸc‚Coâ,]Lb·0À÷³4&,vÞd +šzn‚O%Š +Œ1²æµ¢so–õXl¹›mÄŽ»^Ÿ.ú·)ø€akôt}: +ýn¶( pÿCtæ™{?Îê‚Îm÷ÃÈË ŽÁ S¿3‘g†<šur˜sšy".MaµÓPL¶F<Ô B‚[áÛ;V(Ø8ÏyY÷²Y`zß²40ú ò€åO"o,¤cõÓ›§!* 7êªù¶[Sg‰Ò†œ™V’†+pŽéÍ»mHj%~CŸ^L;9EÛÜФR3bZ5+õÍèp ìïkÏè(¦³mz;“<Ál˜P3Y—H`¸°ÅY " e0â“ÀéA7¢çÛ‰…x1é“ ¤"Ko.`Oþ-šøsCѺ4F•.»‚>~ü8~2z £§t‰ìÄ;®“YBN(rÕ!Ç c÷"çˆr7={¥ý’pº+ßòÁût³‡õ5 úƒñ„Å ×3O½„Åí„ùAÂÜ_HX‡£ AU÷­w4z)?ô„è𦓣¥ 7Xäâ Y¼J x69€'l+ƒàyó|ï6]}Ø÷vK(»e:V¢ê[qovÑC€-XÐOàÙERHb©-±¾¾Kn»óÐ ã[fïO]í¢äPþÇpš. ÄÀ\´Ð<$h3´²nÓ[§„ÈW5ÖˆÞ´–<3–täºzλO6lùc²^¦°ü[SßÀkw£)§í9gÙ(}js˜yu:tô„ ±„Íb4ÅÞcht ðZFcg’uO}ÙnÄnñÉ*ûrÎJHîÀ÷(¹ÝOÜäF;§yšÕ$)¯³Af¯’šÛ…ä5·lnŽ¶‡3Æ2>:zT<3öM÷õ²}Yˆ;TÁº=.ñj xë¾{‘|ý¢#±ÝUaÖŠÌ G—¸Äþ¦k?|¿Y$`ßÓ¤O5Iö³Ó›lŽ´áöJŒ‘Ô‚'2;>néŒ-¥-ŠáÒ•²+Ù. +!ËóChÄ|+Z@wÜù°5<¢ÔnOkÂù*Ö±W蹘ޚþ@k¢ ,Z³TÓºF¸¼/yØÈuI/x¬ðèôúTÞéõ¢a.¾Ïf¬c9C,|/n°®$–xð œÂB±£Ü$ï|aÍÚÆÒ[´d:¨1Ä0óß³X°Q 3“§KEi geXš$¡k§m(^¦žìy²ë–1F`á#ewK=H®)ƒ?¾ÐÈŠõð¿sVl®fË—æcšUÂNK W +\ªmjp Ž óL)eŸOe,Îl÷Íì[»éûö''ºø2[žœ¤;f”&]‰ôaŒRËó‰R ª Ô*|ŒW+}=„ »,G -xñ’!èd# „ñ'¹œ_¥i’—6ž;Ë&_eÈj¬Å;‚ø†=ö-u]÷¼àð¿ É|H¤vOÒBÜÜ-6b£?"ÐÕ<]1ø.ÄïÒ1¿[|Þ®eŒc3àâ'ñaŽÇÀ£_³~‡N?ï*æ_>èwŒ žÓ_«~â‹ÚÛ:eÞ Œ³ƒcB ì IƒxÙ˜þ”Â\ÊßB„fmø;•$/(úÃ$à"^DŽñðDŠK丵¡ºÀ ……€ÚJßà‚¥´wÔ’Ë eþ¡Å¯Úð8ÖÿÇið;Z ¶UÝfá +mºK¾)cö*h_j¬gb«{6¦Ï ß"Ý-{†â“ÿŠ¢pìºÙ9ÖèÑv„žíÀ¼Žµ€läA +'_³›Ñĸÿg¾Úz㶱ð{~#ÀžH¤DQÀbÚ ivQ$ú°¾Lm#ĵázýï—çBò¢w]·dŸ|’¹^9Iì&bM‘3Œà Ï4I€V‰`ÎÙê2ÉÄRÕŒzGÿ,¼«`~§[ÐuÁ)ÉùñÖ¦YŠ¾3Ò ·´bb­@|mZˆ Ñ&B<öŒ´aÁHPM‰e¸J>As…âs©OX¹|Òyœ·ÐÕTÐÕRÓ>‰Úe·¤d#Ѹ ¼g~I‰¬¼–ÐÃrÊ…u «'–ºO£)A†ÚÙ&©sÇÜ6UyÓÖëªÑÞ‘)ÍR~+1] ß!®®Ð9’ZïH¨Ç8 HP‚ ƒÕªsl5Ð|<ˆVˆR~‘çs5r¦v…Ý’¨Ù`·¦®ÑPº^XøMaiÌÂÒ ´Ô"±•&]ƳÑ.(/ wÁ!*uÌà瓇Ờï\aÚ+wÃ݆ÚÝTrg̨þnhJK8»Špû÷`5ÚAPîGdXAΖ`K8Y µb§~©g0ïA6ÀRçNÝô Ð[áÔÒßý>sB@[.†bxÑôè)ѳI4”n:4J:bìŒà€žh£CÙ;¥W¿€_СAÕµj®ÑàËq”1âÑPu<±`’™ò¼àgév C9^©?ÆP6ÝLû+fnG%\ ™¦f3Õg|LÁ<½[ÀÏ`…wOµ+K´ú~@s^]°—978²Æf ¹¡*K™«7÷¿©LÝÂÃüߧ†tï&‘&GCâ—›4J…w×U•@¹ˆR?SöZ¬˜23@±¢ù"Tu>yJ£Âw`ç6‘P_¢h\@Qß ó³GÓ÷;ô¬sŸ%ó‰ÍÇ6ð +›äãÚRX{†fÉ`bûæ窻ë–<í©!Žäí ëå9ÖGd>ýQn£ZáŸz´È‹¦ë^2Þ)D"jD_Ï~mÎP¨×l|½¤ç&+áRP)“KÓ£À¿óŠƒ·I\‰”¡…`>>û%ÈD“!¡¹\³t&z¬†hs¨ex+GÀ”r¨” GÄ,ñBòµ³i=0!ìÔÞÿÈ F{ h%Ï”kðœÈA>ë*L—JÎê6:L'[ a—ývÄ…_Öûá‘p‘Âm˜¼Ï9+RÔaÜlÈ xï,ªL/ÆýƒUQÃ@ª=É~ô@]›$CýŒh—ÒRÓ“Db1{.¦£½ ÷†TɼR\ìÀm¨¤:Æá‘~Ì$©íGà/ÿðÇ?ÞóbïAëýu~ö6 =únC3Ç|Î[ï2.Õ)ÿõ¤ >ì.ýÕ;:ëzßáq×u#*íÖ'*—£çRê'½3Æô†ÞªõLÙ^DÍàÿí{£î¯ß¼û^ÿÓo£Î~{3᎓âéÚÁƒwš¢ÿKÛ¶æ¯+÷4­Œ q]~ãW®ëúõëvù] Bêó›wgg|ߧaAÑå®ÿx{F:Bé™`È4rÙDæÏ”1"†JÂçÆŒðyê!Œ"ù!=‹,Ѭǘ‘ÜÐ~ÍÓ™ô³:÷¢9 ‹ EÙpÖ˜lsÇyz ÕæËÛV’ÐO=£(’+™Õ$ðó$ŸÎXf(´Ã†Ã9€‚~½3•¸ {~@DV–‡åàáÖHÒ#Ba5ðz«Š]º†e'yj2$ÄBEƒå d~$î(2ðxð´³Ñš%ŒP’cºoã˜2`vKð¬H +—ÔØÐeÕg{'“¶UÐäì^)°(è4)ˆÅ °Xã¶ñÁmCÁl/Ÿi™Ùpv4â`§~ò?¡¶|Q‘;b±Ø¾>áª6¯0¢B$8©&õSCƒò:”’‡ËÎN ˜éµH9«ì}5h”Sz"sÐ’é—ÂÚ‹Èôà±Ð—<ùbƒúœ®¦×Uå.¯*·« &̨.ʆž-ŠKz:$rõ£dDÉäxòµ‚«å€ºz!…>µ£3­¦ Rë‰Ô<¾¦F}'uÅ<±f}Id"[ ƃïÆÔ€²üAm z‰G‡XÒºúÝóp)Éò ÷ ‚wæb÷ +µ’D˜%”Ïõo`õÓu|mÂÕ¬¼õÿ–Õqæx"kY„ âyVI¨gFÝVzòLAð0¶&Ì>‚#éð^S]n6@Ô­¨ÀψN¹+sKÞÞ—!yû¼#X•ÐT 0Kh>’e‰Yx§~³¦C­m0kƒÔ”"Z”žáWXU‰â¯Þó iQ3“E¨7‘¡SŽ´Â*ÝĨËÈ ô…—Ø/d‹UB›$À!L¨©>!–UˆI‡¯9øüç¾Hǘ—&®j}'˜ýõ˜ôˆÏpc;ÂÍNë:Ó$ü¼hi˜I.[rÚ{š½?ó²Cÿ?³aßdÀ´ÔØ`ÀþæW3CjÕááR +ê )Ñ¥bÎÓR²©º6žö÷8°ê†ë}¡eÖ££[ÁXËkGæùt¿<7ˆ¤p®î˜gŠP8äM¦¹¦rO(Ùë^ A@@Ü•³Ææ°!‚¼ „C!‹zX'AÍ‚$Eš‰"Ô¡·ºk÷q'ÖÇx‹9$¯@…ÌrϤ•w +®âòLl›(•ì×Mü M@ÀJÞr›^&7I!F`nÀŸ)Ó¤§§KÅÔômìDBØcBÊñõ#b%KzK=ºç<ó•Ý‚o·Aùk™°âë-Þx—ýß Þ´Yõ +endstream +endobj +104 0 obj +[196 0 R] +endobj +105 0 obj +<< +/Filter /FlateDecode +/Length 5314 +>> +stream +H‰ÄWÛnÜ8}÷Wð± D²x%A€ÄžYä²;ñìK²8¾Å·ím;Éd¿~ëFŠºt»;ì€[­&‹ÅªS§Ní?]Ý_žŸÜ«Ç÷ߪýWÇßo¾Ü«'Ož¨½gG{•ªJëjøï½S«‹½ýï*uq··d~¯”QGç{EUVÖ©£%ßT(ØMY+ßùÒÔ•Q¶.ë:ÀžåÞÂ}ôyï—£½_^ÃIÿ†ƒp?îóøíÕþóe¥oöþ±·ÿîöø=|u|}¡g×Å‹gzÿõÁËCeœñCwzõúiØÏ£ÌMS‹›øðMƒ«ËÆ[‹Ïm]V®óª±mÙu]@Gß/ÞéüV‹[]_z8_Ö”F-Nà¾_ÂG§çºp¾ÐºV-Ô¼©qá\6.5ü;Åmü­p Åµ.È2l0´AÝ®`Q—xZRg'Òò[m\Ôâ +•–«ÊF-îô¿Žþ–‚»9|õÆlؘå>A¹SD®nƒjªPÚ®n0\«ªrO²Ìn>uŽŽ“¦%ìàë+Í‹n´uhë›Z›–~1héL·xþ×ì01 /à÷JrïÂZ†¬ü¢ íÙE+|ˆF÷“ÛWjÅÎd—góÒ; • +A<> îpI„j…“C<šԃмCóK•.µü8‰RN¨Ûc´D ÒF~ 0|‚Ášøþ óá°¹%Zý‚±ƒhßÂ](/7ê.Õd·ÔT–Hþ^ HÍ5¬€×|¤T™Á1È?ÅM_ôí ÍŸjÓ°è¾à±kH¦ü•” +; ¡®§±2§Œ5l-meÈœ·–°¾µÔó­åGË„ûw‹Ëi¤¬ê°+’ž°ÒD,¼›‹Üvâù†š'Š0×{fê¨å´Ÿ³]=:±Ó¢Ýrn:ü¾Ätˆ-KLpÕcËqkä#Ô”L-N¡ûÚŠCtÓï*.Qt-Ê0º= +üz½á»¶¬@k °(ôÖ*øsÀ‚¥×»™÷†îw1ŦÁ …i¥ £hòh²–ÛA%Ø0bP˜ñdlóƶPù²j›–oò+8`—¢ ²+šÃ8I.ÈXÕ°·Û{×ü剩nA͵®û5ÓnP3#³»¨™îa5GÏSS~ìûÅ?µ§ÎÒ÷zaÒjØ«ÖH‚lr™òÿoX°ðÛõ?2ì ÿK7تl j;¢j7?$ÚÔ[¯†¬ ¦@Ÿö2áÓ8e¿d{ô»j‹Ñ¨PT ò¨½GfvtÙ9¼ÕwÕ³{ͯX t€ËÏÈDYã¦Ô0BÖÝ”Fªù¾Æã—¢Äû†+-k³iÖÎÅáÙ¹R;êüz­ÎŸSÒßþõº|¬Ù?2¿®dáÊ + ã佂3(ó¶g lÉøï!xºD±·€„ߎ10÷Øf)Çôqm›ëÒJî`Ñ#Þs 6¸ÉÔ2å€â¼ÄJQØ.ÎÄÆï:¾>å‡Ëå’"&Šã… u/Y¼ì÷m(;ÔQÎù,—bÔÅòHAª ÔM°¤ß´%é›´êj×çr†5uæŒ_+Jm\Þ–á3TÇ@öHöOí¾ÅfØâJí: Õ¤±ãújðÍ„»æô^îÿϚæK)ûÎgß©Ö:]7”Žñ0Ñ÷Û—>¨V,®é¤ÿPfÅÜ·¶–Š:U˜Ÿ&+³:”yå5¦ËOæGÒ«¼'qͬï€67RDί…—oAÔš`Æ“‚‡•øWKàlÆ!’C$å»u}M4<u8¦Ýáƒ%ÛXÁFš/ö¨9òšvÍПÃ(>û 2ý\ÔyÁL5³—Yc…H9.”øÄá¡Ù0ÁfXéÈç‰ÞIh’ZŽÍHæÍ‚TÓT=Ãl°€âðÀš*™@%uÎiîj5bÎÀ:‹qO æÑ.ô# ú l (ÅEÙ–b„‘ Y£¤q>tÿ*ut¦‰Îçè¹fÈ~ÖÓˆEaÝ5³u·±&êA ¨ +®ðc¹ßƒèµ#ô†¿ŽÞ|`«¥{ð1tÜ­®¸ÄX¥En„á1|ÆNþ)IŒæzÁ›‹+<ˆsÚõ9ñ‘¤ ®vÁ\=Â\'Á¶Y¾šd¨€Ë[H©fR + †è¬õÂIT˜7×±OÜ¡(À©C‡Eø/×<‘Â…—.j +ºîŸd šì÷}£8°¦³‘-Ç‹–ñwêyVD'Éþ·êÒŽ»4ëQÞƒ”ë¤K[#]:H—NÇoìÜÂ,¹ëv“Œa8ÈÌ „ã%7<¨3‡0ñò C\ÓQz¶ÓÛΨ®Éϸ \Ñvu7‚€DîˆÉ&J‰¾™qÕ4”­•ØLx–úÿ ÅJ͘J€1È'½<~ÕŽ‡ùý#qJ^Ö»”T; #Niù—ªÈƒ$N!L½Æ„|€zœmŠm/r…­§êXe\åR»´YÜgx8ZJQäòÔ63£úˆ“"bj9ãL„)p¯6‹÷¸Ç¯¸éa*XÿÎ#ËÆ^#7l¶Ô_Háê%¡ª}@Eɾ=<ºa5çÐð][V*7ÇƢغ‚}5bs'Jc×€f£~T‘•ÏÍ \½ *À› aAc161 ·qc/z7íÆý0—"¥à¨ÞàÍÃS”-‘>,thæ¦7ùÙZƒ|‡¼èñ;( Í´ÔË«ŸVÚµâƒEÁ &>hí-î-çI˜µØ¨>Üšú)±ñ1¬Ÿ8dSàö ³#š]/WãrŒòz§GJ.< •%jt+ÌLÝÿÅòrÂklN&7=â(n³9E¼3aÀÝ=ÊbxIlˆÀLƒˆJ:26Œ¶Å4YÏš´W¸37‡ÜF;7¥ý(ƒ‡ŸÐ°ä&œœ©®à®Îº’€·¦e?„j yZ‡ÚªÊ&¼—"–4ßRµ9úüBô%½H„©‹:ÔDÚP¤î4 J +Vç¨Ô)"‡åˆâëw·š•À–’S£ícAçU_&FÄ°ãÁ‡ÈéTfÕSmɃ ôauM2'š¹‡L"ªe0¬÷ƽù‰¾àêmÃßTÂÀ^˜»!G®Ñ\7ˆ¶õ2SÊï{Îî"gSí0øzÜS?u3lë¦"Y^+׆LŸ?Gò0 ›Ý0K®¸ä–"¦nD<­ –ðõÑD—ÏH¯°}á2ñNŒ®¢‘I›qó"ìÁFÃ&7 Œ‚XéÍ€N<þØ{”Î!-ÍbiòR5¡€âC£ÜÉhÏCºº‡Éı¨þx–tj!-~¤´ì£°…úÌÁ³‹úlFêÓ¶kÙÍ56~n9ý}Ö´¶™)gIYòqdÅê7ƒ-)0y´ŠÞfÍ?öh6é‘&ñîØ`ç©Ñá÷~žêGòù ùbÈâË"’s‚žôÏBç9òÌ ŽýðÒ»ÀO¥Ï^°Ê[¥AuvBìr­ºŽ¸ô­¶T·Ï5$nô#æÐÛà¦Zopc7¾qolåÆvó‰A_KþK|µ4Åmá¿¢cTÅníŒÞGWrŠ]Wn¾lg .‡8¿>Óééy-’q*'`ÑJ£îïI{“½•²ïzÏu‹—knñò¨¾í ך¬Xuì*M´6Jx'7ó¨M¶8œ¶›jÈ9«…[œ…Û;cpvgŒ¦jÖâTžÄºô®yA±ì8Eë@ð°¤4“=Ò KO>¤Á•›ï4öÔmÇ>‡{t9¦e0ïa0¨ÇT9nTÕFö’$ÛôÌÖë!9bؘ±BW Ub݈–Ü”*®zO9ªfÿMغwß ²héI-zh¾ÃY¯Hš…ð—ÝŒuÑúäÒx©•K ;\bËaaÂ?‚ìxeÕ +ÞÿhªÚb¶»mãùIÌÐÕ/‘ÿr÷)E‰õÐ1‰­š¹‚»¨ÆPÇ9HCɼ¼É†¬4ÁǸÕ{'ÃY›³¿*åäGÎ17-epñ³Â¸éJUt½õÒBXõ—– _ñ†-å¦eåtGvµŸ^•X¾?mÖ`îÅ“à}m'#{™XPÊ,Æ—oN£¡¤' –O¢Ÿ¨2 ®\Ò!±åCÏÂw¨ ÉΓª Ë“˜Ž›SïåPá~éqê†âˆOân àèna!­°8ác‹ûÛ;%tßßðcF4§ÖÉñÍaŽ :•M¥{À—£w±¨QøÒR$m@i¢T¾@sX}¢í¶Yž‰¡”Ãâ¹³“&¯º ˆýƒ§xQ{Ü7 óÊ-Ò|šû‹g¼Á;"Q—S57—Ê”;.ÞagGõ6ÞøEç/yâ šPßÚ€Š)F…C¿ÌûøØ ?ìÖ+ï)¯u^æÊ0«,û{ÛI £kýÄSÊïö>÷æ'rZÛáŸo­µí<ЪŠàM ÛeÐÅš(¸YöS—=•ÍØôS X¤ÔYÁÏß¼n-šÇOí<ÂÏs‡&{ ÆYœË;ÎÃŨdµ®çÞ$©·Lîcô9-°1ÊjÏ+@KìÖËTÁLß«TyO˜¹·3j]ä¸ò:O!aGûL +2‚ä³ú_°ÑØàQ¯ðD¼»±QHÔ,œÑ‘ +³æYªO×¢qˆdòâ/ŒÀÌǨŒó8T|u¡¯*r(U(^¢ñ¡Èع‚"—ëCæ+%´Þ'´ñdB[4¿.ü‚|6‹RYÇ©¬«¦²“¥­D/7«E[Šmª_Œ·C!öGVQà/&\u<Àg\/³©XqA6qFeQ'äÅ”ýã½Ê;ªùûÅ ö]ç +ŠÜ¬ÙK Q†Ÿ†@èW—L-d‚à¡ðdbU²¦‚'8ÂÓ3R Œu>Coß]¦‡ÈÂý÷µ5QiÌ;úÆBá1tzÖµ3 .ýBjy ¯áîð±¬ðb™äÑþÝ AÏXÍ&m`!–1ý¹IT¸âAMlÙ€)»&y)@mH^cã5ù‚׃…`g|禣°ÈPk\W¬ªð—ÁôФ)„¥Qž´u¼ii´xÿƒf¶rÆÈR,YÊ”X +hM“vÚQwÚ+NìZO«j—¹/[â ‰›zivÒþ‰DÆá(¼ë)¼tXó!žÂ·ÆêÉl€e_‡¥‡qå6öydSYpqû-çbè¦JÃ5®Ô„ ‹MÂM§|è©P>@(¿ge{Àâìiwx£s¸Ø†x¯#e\ë&zªáZ·(¼à°ÎQ=Ö +RÄ¥ç¤FÌ56 ¼¬Ìâb ¼õ÷9/îÌ7ñ;ÎG}åú­Im+Èø"s³TüŠŽ9à R·8sR6Ò0Åƹ^†ò¯eö4ƒ~DcŽòQ‡·}„÷•dø 9 –k”wám¦-­¨¥/îAš­ÏÉ2òåÞè!G z\3@lðƒ'Yw'ÛYjþ+„£- ™bÐt•®iúA¥ºÓeËjy³'ÅÍí‹~»Å—Äœã9-8L#RsÓR£ +¤Ìõ$àÏ]cµ‡¢\2”%â —sïéäõ#¤î9DQ@¬ÏýKg‰ž¶ÔõT.•IñÓ Ë~ÇaRå„)¢-ÆG0¢ €±{*Àz `f˜˜‹­ Æi[ÈUa‚ÈÅ-Jâ= \àíç99^-NäµÚ"ÿ‹ŽJë¹jYÅ<1¸¤á§È\ŠAÄäæ’9†œ +ßD( ±$wÊ +óú’)ˆY‡ßA½Ý +œeE¨rQ?„ªl?‘’{¿EÇŽ·lÇ8ØƱßÎÛ²aFVÌs ó’rвqÛQËúè7Z?(l˜òLfoêé3ä5tž0„y㶩Íðøû6€§%¬Ã?ßZkÛ™ +ðÚ1„è…H„P˜,^Ëèç5çvÐ^´ŒªDúþ† +endstream +endobj +106 0 obj +[197 0 R 198 0 R] +endobj +107 0 obj +<< +/Filter /FlateDecode +/Length 5790 +>> +stream +H‰¼WÛnÜÈ}×Wô£ÐPì&Ù$žÅØÀ»A`yˆƒ@]l¯¤ñjäh•¯OÝúÆËÌPÞ¬N³»ºêÔ9§N_Ü?|¾:_?¨~8ý‹:}wþ´ùö ~üñåëWêèåÙQ©ÊÂV ü_וº¿>:}û¾T×Û£Ó3ó¯RuvuTeÙª³µZɧGåŠÞmÑ(cª¢êšNÙ¦hïÜýãØê~ƒ?ÿ<ûóÑ›³£7?É¿Á°Q‰{À1øíÝéŸnKõzsô×£Ó÷_Ïï0Òwçw×êøònõö¥>ýùÕO¯•©Z›‡­0º_1^Ãñžùp}¨O1eÑõ¼ÚÄH[Û}ß;õ\¯Œ)Œ:¾ þ1ƾÑÖ«ãGõY[‡Ÿôª/¬:Þª¯p=1j‹ßïõÊ-<‡ ðñF×øø·øÞvE«éñzÐ}QÃ2µÖ>Áõ´ÌÔ¸îBW%~ÿ¦Mƒ¬õÊá¶ðâŠcûäw´øgü^mðN_a Žþš7¼M/«KŒ6Þ[Åm?Á9–êo|p©W n¸Uô–ßBR|L_Ê›±²U‡AÃyÖâ}ï´5õ\·I“×`WÚ¥)¥;JJ‰?¯9G—X¨Pg|7Ÿ õ’ +»†Ê@ÎÌ®KsÎ0uˆâãÿH /ñ/p¡2èîg•swPß6àî…¤ãsÜIŽÛôÆ>ôü÷­z¥ á*àð þ­+#w—|¾±šT2l~Omñ¨Ögκ¥bÖR7ôÝKÕopoX÷­À(½‡M uå`ð Ê°-Óp€M/q¥ù÷@좡°þ¸ +žkÓ㎔á~I†Ï=¨ï¨u.¤ó\Öy6é¼ï"løZ,@\"®0-³ «\QºJµ%´qß7Œ¸¿ëšz*o]¼TÎ,˜ +%Áýåõkþ +)¢¿_5enZŠTxÓ§ÆX\IdZ%õŒ<¡>Á³SòYÀu‹[ŒŽs…hêq3梤\ò⯰™ÐT`C‘^O³¤à@xrn%ÕÒêàBÎ 1–YE„Q;}ÑTXè :0m–¼b$ouÖ.^„„xi£!‚'º&¶¢¿P‰ל¨¿!á‘¿,’Ë¡T›9(µàT”žéS¨Ý$ú[!»X‘v@:NHÇà¨2èñöXVúëQÊ ¢M£®>Á(ú1HoÍê(æ„Ç5{/-W u^'÷©¤›UÉú>$ð`ÂzœxãpTµ#?ÕäkÓ¸ Q g_Ü»Ëkgɯi“!!%;bbÔò2';‡·½¢D÷‰bªP7!}Âèyc’2Ôü ›(»’sfÂÚ)0#cÑŒ¿×¬;~”‰ž\EêÀëE›—œw£™¢#O û,ìc.1ˆ$ç¦LöŸg=Ù­úp¬Ê×kví7µ)ÈGg:ô,@gW&{Ó[ÏÁ³®’Ybh]ÛÁ0&MXë6øËpKŒš)±ÖY#[üÞ“ŠÆàrÿdBÐ…ûƒSÆV¡Sx3´ì` ·í°G:ÓMÚóÃÑÙ™‚Ê~A¶OfƒCšTa›’’ŠWŠ^KV‰½Ð6UM©Âˆ¸æ‡*b^X£gLï`Þðx…:Æ^t +Þ=Ý3²„ä·aaSw]ó”ì3ÿ²l\礅Òî°˜‹åÕHÉ eç /¢ ö³Bl˜sÒ)Çžù¢ê¸Ü°@¤ éR¡–Ä[%ñ&¡V®(]¥\i+ú“ë¢JhîÚ)Õ l°]až!ßÝ£ï¹Ú-“L0³ÑéÍäàõšY¯Wçɽ^O`…ADüˆaXNk™õ¤{(þ›M?zÒ\ñYââbÄ»¤žx:êÜ"¦Ýt.1€p• —-Ó½ãÉ0êWÆX;áš\À}cPÜ…±Wèç +n’ùvÂŽæ!¢Æqù†nácDˆ\› e`b¯Ô±;ë Ýܧ"éiaÅ7ø¬¹Õ.p:…}¿M Bkݱûi¬d5®²ë•Ì¤b¼8ó¤3"ù%ðiúZÛ9üÀ€Ú{º€w1»JaÍw–©•â}Òf÷¨±oGU‘{s“úé’a ++Ã(Ãa\«Hظ–¾ DIgŽá8·ŸL•´H¦y—g ?æ•Ç  zÄFeX#xÃ1´µôÍólmÊ!¥Ož\°é ÍKäÂÃ1å˜(R8-™(Úœîº9´6ºAAë¿¡<”Õœüºyœ“Ý¿NtŠMAðÆMV”|j™£ª÷”‚i¦“ºA'uy'eLˆvxÓ13èÕÓ†n|ºjÄ–Q“¬ØîÀPPbo±\ÜÒ¸Ôx:ki™HùðuB«f±®Ñâµ ¤aÑã_ŽÝeíÐP•’b~ÑLâߨ„6“ô0¿6‘ÎÇlCæ¾K»$JífÌ혲‚­7)aÅðÒ¿úEfºoRÒ³qðâþ7–g Dâ)øô‹®¨&Åô9MÀEÎÖj%Ÿ’PEˆàOuvß¹@ч²Šãª<˜—úr;¸?±P ö®­«•zC“Ü9`ª\“Ìb„ðïMνk…$iæZÔ,γ3×wÙóZìyb¿{Îñ£)ù§‘eÃCXûão¬Á¡&¹W÷e~5äx«`Þ4›•d~ÅŽ@šßÓ°n:ÆïàÙötàã ÇΫv œ‡ˆ†F°ÑÌ;p#ÞwÃ4q7!‹[D‘T¨Ír'ÓiÍÖYÔƧ-ØrBÎV3“/ ¾t³uÒJøaL¶:ë Š +æ}˜Ã飵m^ëÈpDV †ƒhrB쇔P9š‘œ¢ËÎÛ õ +µ¤JÜ£%¿ú!ìãõ" +fnf:´ÉTŸÙØÈ[s¬%¸œã­ñVŸóVÜ8ç´íÎ+·ƒ+wû®<èôâ-2MPo}kù0r’Õ +Vjæ]Ž7Cu×&Î:i\ÏÎÂUŒ­Ç-ýVsü +9äsÉEk ø¨“¶ŸX>¯lûtÍíÕµƒñí{n˜:ü9) GvÞMŽBùˆ«Ù¾ ¦ªM|Ú$Y)L»»0 PÒ™qn«Û +Ýàd„[¡“§¡AÊë¤ÓáïtA'.¼há™©Ê åˆ/’©©ò¦£{…½2á­g8ò¦ýN6™šÑµãÄó°V„é?'èXÈÕ|ʉüR0b.ø±º ¨ä:ĹÅ;“Z:Kâ[€¨.纟ˆl4«£:ÄYžBÙPÑDA÷-øÞ ›Òd´b–L. Q…ÜPídˆEXaSÇ:Q»ä°xÒbB{pÄ*âœbJ±œ!™/v¢h¨Ã•¿ÁÆc›ŒgM9˜m™…pö\kÂL50¥‰ÕÐ÷:@9Ý~BåÂö’Þß ¦ŸwªEGÖ¸ -Ç«C}R]–4ÎÊ oý^zóOe907Â).'1A;wæ“Ÿ`6š(rf¸`±®l„ +îž· »¥b$nŒ0i™0xÅ'Eª2ï%)%˜>#êé8cûÊÅ.˜]΄2dÓXÌaFã^-%ý lj=üµEb‹‰•÷Žþvªp‡Œåº49Þ`†˜ÁL¡Ñ˜Á¤S³Ñ» ,Ž^Sª¢t™AA¾ß iqY¯Ò„ÔBm;œ»,ì炱5Ïíbˆ·p†C?Ý%ã …½ìYM 9«n<ï8aƒèyô–ñä¹â Ç2¯%]snó™b¯å…ý’Ï œgýñ}šEZ]—6C«©gÑj\2$ÄNSãà3’c]E ÎœÿŽRç¸ÁÍxàêSÈ…ù„}¨L”¦ë pž%ä9Ø;š77’Ï ¤*6V`7é²þÜÈtùûÚºX¥-³m«¦íE2E„1Ð-™"·#²»ÁÔ-LµCªÑʶk3°«Ã¥ºŽ"°ÃZɇiX–6™InÐÿ±©­¬`é¿ÄWÉnG¾ó}tKŒéªê5D‘QY$œHÑ`K4&‹óôù·ªú«÷bq¡ñLO­ßj‰ÉûOÐØvà°Xa o—6_¥›¿Îp•p$éâ\}YÔ.sm«âí·ˆf±{¬B’ì'»š”ß²ßz–3>> ¤ òŠHMîâ×Õ +ÝV¤#!ë’‡›ïïrj¾!¢žœI0]fQ„GèîÉ^¯!»’yO%Ï×è)‡ìC( ¼c!Êd6âëAP÷P +¨$T%!¨Ùê—ÆKǽ®+=ÐÛgåû©OØ¥ÚQP—B$äŽxÇœõE†äÊH¯"NìsçXÀ¢¥FS‰ + BUðÑdÜGºËÂ-#\J¿.%E@ÿòøöU¯ç¹q!ºÂbè;‡÷:«ªQ¡ãÔhgH(ß•¦¯—vB˜ѓðêG¸¨”ƒÊÌY*aѺÊÖIÔò½Ep#ÝñÍ Ék²ç OT€¾Ë;’Iø¢Ä/¬TÁ†¦‡¡Õ6°·ÇySÐ%ÕyIAâež—{.³_rÇ™BÐx’ +â-ZíÃ>?eAp6À±ëÁq + ¸N)[ôo_ô|ÂÐ$ªR5}U©ÉÞàivù—‰z"_˜…|€Jôô@&'n&%‘î$@K³!¿tÚX>ö S²¦SÄпcªÇ:Iþ;Ø¡—Ú°¢°Èà”â¦díØYJ1÷0cŠéÈ7£€é]ÈÀåvï-Ѩ x·ê‚Ôõ»A¶"}Þûù?Èyܳê¹%ÕK¡ +c8}ñ©‹—çK12ç2K2m‹j•õ*mö7Ï¢ƒF' v«’í/¸ñŽÈEëí¹õÉCNÓR*ùj ÀL0 ®‚ËÒe§7ž<³¿Ö²«×:‚]—Œ"âm²ÛU ‚îëjÝ7k‹+Èsœ2 ëÁÜ·-×ëÒ­ K²÷ž\]Ɇ¥SOöââR=3å÷­Ü~±ÞñO1e•ìüt{Cèx=A[nd3é^96Gί7Xkë„–¸^R|½>Ÿ°X$3ÐzkïÞ¤a~uL—›ëõ?4®Eý.dõ>I²j}u©Ž'&iÐÞn°¹©O˜âÒ”µ©ÅøA_Û¡ÉÒ>žn Jy.QZx÷<¢T³DIÇÝB”z(N¬é™gŒšõÃòo) oÑjJ(Ü|‚–÷|¤Œ©H^À4LaHF÷?çH¢Þ!Ìç*žã£ÊT„;|)‰A†¦.=Ö|Êå‹{Wmh¤”òœwHzI"Ÿ^-Ó„äFö<ƒ­4ín ô°â;RÄ+¦©{‡ÖÑ09Ôõüh¦“JK4× z E®¬.r;Dgvuñs¤5<H!Ê9Žr7xAŽÎ +ÀÅêX&žâGÙÅçìV +BA‹Å•¤¡Žœ% ¶˜•†tÜ Ò`Í +ip§®f} i˜dEv†Ôš<‡lA¸$‹34ðŽœ0î~u˜&[©×/Ú‡‚0»žcØî¹å0fæ-ï# ´ç,ø‡lñ¤Tb§£–¨uØ_þ _fۦͻÍÆÊçzªX;Óbêe¤ÄsQÉ{¢ßøøá|ü¨¦¦ÁÍ/íWþ÷S^9|gƒh¸âLÃ5Ð'Î ÐÎÌéEoÜ záì‚^ŒÜ¼šìdAnðoÈ{^°3Dì¡HÐì•èÉ}vdvM¬æ©ÄŒŽÓA,dW2Ó£¬:Œ#*@ž‚Óö3tØO ÌôÁòb¤­„X¢®Oºœ¼=ApŒŽŽ³b¦„¨Òëó/“Í;û]ίj†Hº^Ã9º'rtG‹Ýˆs#¨©ë£72b6‚öÆ݈¥ +›«Í„(ªY>Nù¨]J kÝTgÐ…šÉ*3¨?e†>°vËäSDI2åP­Îw Ÿ¹Š:˜Žj{ ~ò¯(Ä2æý™TSÞËkņlǯMçeöÞ Îêêig­À‹¦m]dùjàêH Có®³üo®•U…éÁ•.ƒ%è&‡BE×G`ý˜ó9 pÉ—–ÿlXÇÈ¥³ð+€˜„ž]ÉЃáré’z Š£Ï0ð܉ ÞæôØ RßjD e}¦fðŒ¥ñœp@ÊF¬Ë×2ÁfÆç]^VøÜ¢kíúzpv;¯#¸nVáÒq7(\Y,w„IȨY_\<‚ÿîÖ¯Y–nÅ+ñhN'€ßìY[)T¡,¿dÕi,—‹Æ´(¾í{ø‰3Æm&£kªw>í…ð5I\çµ³J“‚¦býy§Õ )ÍŒ¢ÁîJSÕ j€ç«ªÃéAGbIB¥3íXÏcši*ß©·tœ†NòÜ—’ñüˆbe{°brº9er=V’^CIÏ7Z…̘‹%£ôÂ÷Oãf6\äÙ®èÎ,5å|„KÇÝ"pKM±œR85í‹‹Ÿ1'µ3÷ûž"O/ôs.´h¦:7ˆ„M”ˆµ:‡…É+½ aºö©þmöŠ¢ CëÙ£u‹p‘bŒ|bçR—NÔÕ¬ZOOOÒáãqš •`ÑØÁ6àzh‘D5L´ç„énT©§D õElàÅLdó˜é*û—Œwy’/–­,ž¶ó[K‚€ùÛ&yX 0ÕS{ݱ˜ |ëÈk?„²ê%G³¢Uº¤W +Ô)Q¿cwŒÃD„´Iwõ ¥ë?"ÐáÏËäæþ`ã½ +endstream +endobj +108 0 obj +[199 0 R] +endobj +109 0 obj +<< +/Filter /FlateDecode +/Length 3093 +>> +stream +H‰ÄWkoUýî_q?Εèv÷}vKiI±Ê²Zb>Á +9‰BÛŒM¬ðë·÷Ù™éÀî*R<3Ý÷QU§Î9uþ·ýÛëË—âóÏÏÿ)Ο]~¼ýýA|ñÅ—OŸˆ³//Î:ѵJ[øß-ö¯ÏοyÞ‰×÷gçýÏèÅÅõY×vÝ .^Š&|z®õ°þùÖ +3êv4ð@ÙÖZkÞŸí”–¿ž}uqöÕ?à¤ßà ؠõ°=~{vþõûN<½=û×Ùùó»Ë¼á³Ë›×bwuÓ|ó¥<ÿÇ“oŸŠÞ__Wà­Þâ={¾çE¼&ÐvNã)}ϯö¢ï|ë{g…WC;Ž£Ãûý¸{*ûV‹Ý­l ±{)›¾o{±û>8ˆj÷^ÂðäJ6ÿÞHÕ·ƒØ=ÈfÄï|ê‡Ö‰Ý/ø +ü½”Êá¦â¥ð[ið;-ÃRï…ÃÞÈF©ÖÀâ÷èËãšž6½—}‡?¼‰›Ãš¼‘p:¬ý 5_Täí`1]òƒ°xf»blÁÇ—‹{Ú|q¸¥çÙk|û(ΑÁ×ÞI8{%^\‰=\]µðø,ps` Ô:\û?; +ß‚üxÙ[q‡oÂv°å3ET¦óRnñB÷¾òßO8;Œ¤¡BR’Á¶ð—Oy…õ²T&®A,„4Pô!Yð«Æ§¾”²³¿·!×%XÆr%) o¸ ûP;j·R9<{¹v6ãkG¢¥—:úû™x”ðª.îò[A™KšcüÑàÇÄÇ3¸¤\:gðYó¢gdYú™6MðŽã‡†>†§œ*ʸ©»€Î!€ZòJjƒáÝ$”†ÛQ} Æ…ªÅªü4¹'„¶@6– k»Þ¬±QEGËHû–X§ÇRä :þ˜$€ú1µXhˆ¼Ãw©k¯ Î —£ Pß9áD@ìv'‰3î ·ø<” +gð½\:O±\ÀP‘«áñÁk馱ÒâO.¡Ò@¹ú’iéüG©màš2Çðã±Îó~@¸ÁÞ߉\j!»@*MÕüM¯§öŒ­— ‰$Zâ¯XE ȧðïdÇdFK÷§Ävë,dÆôkT8vM©¤‡÷îkðY»Ìrn€„&–ËDBi‰Í”ÅlÖ¬¢èê¦÷s­¼àøìÓ‘ˆÿA½ &×pBâ㯀º@@enå[Ò*e‚lÇÃ’”%bÕ,Æs1 €Qtžw‰ÔÑÈÄsÉÛe±Ÿ¤7n†8Cò¾ðÜ)‰:Ç„Îw‘ö‹ÛxÐ,àJ)›k ì¸TŒÜ jU /ãVàåUÛ—ð꘲V´÷ñ¢»2V<Òk‘Iã˜cÉ5ú5#t|G–mºk%ìÏÀ/œ˜ bŸ­aö9vo¥f^4Ù'$z~@™ÓÞæ3ø +Åíï¤ Ä?”\\ÜW ZŒ§¯ŒÙ´-VÒEð²ÇòNÙ°re>¸2·îÊÊdl•>îÊœõ…sÏ–=䬄2£jG‡pC»ìÁm§Õéòkk(‡·ÔwP ý\z'N?Àլ특tFcLa.ç`:4r¡lŒTà¡t›‰ãzP¾6äF€¨ÕÁ~Ÿ+Ol—d zI=µ0EfAg$ÖQ™Ö¢5Æ9Š 2¬zD/÷ˆêN5l< +&áS0snñÞ¸õ« Ð÷'˜Ì$[Læ0™pÖL¦‹ç÷ÊDÇî³{™œ: ªF˜^Jè={…±S•RòÄ‹+KìçMZ ºæ‹ ™L„˜a”- uòè„”½’Ò¸äCnr€-œEÑžó–N+-7Á_ÑAKî)€3Lk9Ý!XÎæ,Ž^µHžJ’ÈeH¶,©zABìÝ%·gÂæÀ°_Öÿ~¬r¤¬(™ùkTÊñbf ×.×XÀ'-\Eϳp¯Œ… + Odïii ¦J‹Ù±¥|DjŒ¦_xŠñF¬èXŽOuÝá)`'øÐ+BNAMI3Öƒ·]ó§ãÆu'î¯&íDâ§D2.‰›‰K&¦¦Ç8peÒ.Ádð$µN +©«ýFRX€C_Ù² €P ö }ðG9ÒIœë'ÔZC®¨¡QªD…õáÑT<ÇëX 8\äŠZ‰cV†ýɈMßhD_’'`¬Ò6L*Ë´2!ÿÚ3Ã7†["芸Ñoˆ¯ðˆk‹éõ»€3H±f*hT¨çé)RU—t­S.Þh±}vþDý ×…©‹F1Bæìà„µP®±§t}ÞuþâT+àÊÙ-n›ªPo;˜Ó·5uLXdñöìüâ"Æ‚'¬XßòØwO‘Ÿ!ÕO¥¦)îûbxbe-æ’é6wr•V††Jœ¢p&”D +5 ZC]ù–éÀŸê†ŠzË‚ˆXŠú½çï·@@è_çê·ècÜš–}ÌÓÅlh†r[†Dàã ï#×îÈÿîh£y¡éÂ,Ft•]òž*Ö8Ìô-žÆÚA£˜BP^KÆH`žç¨‰çàðNn`H2ãÐvnT\v<¢¾?¬¦¸ÿ˜ôM s”Zœ¿’w²¥¿Fw1æ÷3ähQY¡€"ÞÇ"ÁÇ÷±/•~(¼Ë1&"í±žhäñüË£­ïÍ|‘o©Q” â©*b7åil~Hˆ>Á‘Zn‡z5ªLªÌ¡ +¸·õƒ¸Úß_‘2’á]q\zGSÏÚôúqã`ãõŸlŒ»ûqØNúÞ ýɶHßÛ£ƒM¯Ü +é—Çþ›Ødzd­wÐQXeNw”ad™G»b©›fÖ1hMA.‰ƒ?ÉÝ¥^$™uw·æí–¬Ò†–p“Î…^XÁ +$xHX9Å=š¬ªµ{Tµˆ­¹ÇñêáÙw峈ÈëjXš¡òHð¶Á¤P® nTÕ Ï"ú’[I´–‹Ž-ŽxÌÖ%!!žyzåý 2_}‹ÌGdzÄ%,E« KŒFq§ÚÂ#JÎÄ»@=wðbô4.õ$¾¯ÙúÒNu4»Ã‰{+§ xê·Iãø‰ã…é ‚ORš¡;¤4õ¶”fèO/´_£âÜÍR³>_Dcl²a©ÍSuXj{šIÐÖ«?ië=2bš(>Éß7Á'-Xf3³Ì¶¶ÌIÕŠÆQ=ûIà VXg{šu>½G†©}›¸Œ"=1$¿m4ç}iÎOÓЬTsF.ÙK“˜ëz0ql +[î#AÛ‰-÷éŽÇMùAÒÀ]àÑc,ª>™EÕ#LÜ”EKäÁ¬1¢1ØÓ-ú’jY¸Y>l@“>AØJ m¶Á6íMa¨xx^s ÀÎÀßÿêà\©Ø€A‹JÈÇJ³¡?í¤Õ¸þK¥‰1FÚ‡JV–hïA„ÎÔš[«D¤ö›$—‹v×DSmÉ]R?º².±ˆÌ3±? S–¸£2øA ì™öÍ7ùž9ÈYÒºŸ¤4j®Ìÿ`‚»5È +endstream +endobj +110 0 obj +<< +/Filter /FlateDecode +/Length 2141 +>> +stream +H‰äWYoÛF~ׯØG-R{ñ*>sÀiÜHA‚¢PdYvªX®,ÇÉ¿ïKr)ë b¤MZ0).¹;óÍ73ßôöç‹«‹áh!ž>í½½Óá×ÙÝBìíŠÎÁ £„ŠMà¿sVÌ'Þ³¾“ÛNo ÿPB‹ÁEGÅJ[1‰ÈßÝ‹4ÎàøËâDhmc›'¹0Iœ$)|ó©Ó5N>vŽãWpÒ_pl ð[ØöN>)q4ëüÖéõo†×háéðz"ºãëèÙì½:|q$´Ë“¦¹­úíÔ¥šíDó”¡søæ^hçü‰©ÍÌLëYv¾ïîË|è^K§pËÈáï/22¢+öe&º¿ÈHÇý¢µ2²åÿùXjƒ?_ aÕ‰îBFè^Íüž·ò÷ÁË +ŠÍΦ³½Á Œ@žÖ쎮ÝI‹<Ö…JÙC Ïátp+A³t8 +gîwÃé`üeñôäøäD)Uìíí :±+(bhc[íðÀsÞ1‹ÁÓ¸g(€/¥%ï°„ç¸o.\I£åwb(uM$¬Sk|-2_Ã2ùV +€¿Y(>žÀsx…À^ÐG°Í<¡˜ÌÇ·Ì},šr.^Ë(Ç×´7—í6xÂ\âÎŽwNp;ØßâºÃõ)º¾>/`=EsÁJ“á—ÒX\»£øö2G³gl†¨ìGð.Že†— ½£ñ\M(%€ožË¨ÀoT€Ãð`"¾%íH—…¤kqÀ*æ6. +•Pî¯!Ò@&9¡áÑŸS›ƒI2\(Å@b”Å™´>îÆ0g +|ðÒŠ“’ï’××î¸CJæ:«ìoiŠ­*µáoMÖì÷cÏÞÍ/ + LÅ(ÓL®ÖÙS¨%”+´[×ÏœŽmÐÏ \‡×¾ÿŠÁÉñ7Œ:óýºß:P¤mÁnÎCu&ICÎ$UrhàTóGcd-DúFrï¡U.JHÍú%ù ­Ï¡&0ñLI<ç‰G¦Ï¸Ší¦ +ÝE›ôô«PPZœ¬¢û vX¥~†ªô†>¢Läü›`¯Ì©—»%*)–Œ3é¾Q¶{lÂâqem™Ðâž²ÊFU%¼\l³þ,Å÷ÐWËÚÉƆå†Êi³%ís³¥aÓ Z‘¦ “Ô8ü¯Fùá&‡˜‘ôM (SÐY¨²Úcn7cž€ú®ÛÿsL}$Ÿ®VaÎ=6Ï¥%2±æLWjÎÕfÀܨÀ#W©ÞÇCPî¤5«çˆz2iS¬Î1æ[áõzÞÈÜeDRÐøºún ú¹ÃNæÑ!a-éÖòõ±€²¿d•ì  (|¼Z +%žú.,5^„xU1mL kõKCm…Ÿú|„ñ6…ê)©=ÐÉ 3…My-Цòs î¡tËÖj´ýLYÏ"”r×UäÊÓ>ÓöIXm3i‚)¥H²"EªRεôör‡è§[¢JP¯ˆ~9ëàqýŽÿMü¡ÈÓøAíµ:K“œI*ºAs<-1ä‰èË(e ÂWb®0Þ¹·´æOZóRŽ¤b•íStÞ°ó”õ¼’"NZ/¹Ý¾9ì@žl y@Ï+ÈS– ‹çaR"“ÁåÇKÒ”DÔC’ ÇÌkÃù +Ms&*&’ú?úÄ'ñ ‚×t³òÒÔº/Ä>Î4iP‚¦årº$—Qÿ‚ÝЬxÄqøEEú-Ákð=DvÌ TÁ¼Ãh¶#_¾4_B'äùoîE­â,ÌL¥ª[G°cj³$ƒ"KÆ_Ìæ”Å#TQ\L4árNœWQ`iªÎÜ×=ºŽ‰¥)÷oö‚®\PǾÀó8YæpgW¥ˆ¨E'RäÚ§mÑv€Là&Y‘ÏP«|ææu»yLÆR§,FžÝë2¶ÌÄR­Âë«8÷U-Õˆº7h+sÞ·UΆÓwŒ®a¸ÄT;%BkØ¥6WKˆKCh1Øå\qú/€¼sY¼ÄšžoœR깬Ú‡j—Z «fÓªEZZºß{½û< dN_jJ»éR¼îcqux}l ú¨tÓëP$JWiŽ )„sq Š”ɨC¡ˆõÜqçŽS^«¥`hK}žª‚!nß·« ­c,ƾ­Œ?ùþÔèlù.ƒF¢Ì–À Q«…þk” ú‰Ì¿ø5ÁM©¬”G2A "ä""R5O/#ÉÝï4oi¹3žª[ÄÕ´GµØ U»UðYU’Š¯°mØUâÿ+Ü*m˜…Ì^7ûžŽ„q+„w)Ün ÄÎ]²"îYÿÑØRâšå"k”N_.f2c=¡¾ + œUcÐTè'Ð!26Pwå¨R2›»%bL$óŠó; ›„j$V¤â"¾Y)JtòºOpl€_¶ªLbáwp7-a_`£!Åm=bšA''o}û¹ÂîÀ8z­'¥)çA‡¨aÞ)Pypãñ{Ê ú}+YB.à{ÇŠÎx”Ûc˜¶UtlªÝ[Ì+ËŠ®–oÍÛ·ÒP£¹FŠÕÂá³Ïó‡âÊ4UŠeƒwÁx“{½§–(¿–ÔkçŸçÒ¦%mS|ç¡JohÍM–rÂKñËz¤#—àß ·’»Ã +endstream +endobj +111 0 obj +[200 0 R 201 0 R 202 0 R 203 0 R 204 0 R 205 0 R 206 0 R 207 0 R 208 0 R 209 0 R 210 0 R 211 0 R 212 0 R 213 0 R 214 0 R 215 0 R +216 0 R 217 0 R 218 0 R 219 0 R 220 0 R] +endobj +112 0 obj +<< +/Filter /FlateDecode +/Length 6701 +>> +stream +H‰ÄWioGý®_ÑÙ€IM_s` >¤Dgcî'y± i‰V¢kuXö¿OUõ݇±µ ֜zõê½ý·÷çg‹å={þ|ÿÛ³øvýpÏ^¾~Åö^Î÷*Vͤ2ð¿ÖŠÝ®ööz_±ÕÝÞþ\ü§b‚ÍÏöªYUµl¾dS÷ôÈêYkà_33LwjÖéJ0ifÆÔ°æro" Ÿÿ±w8ß;| 'ý‚ *\ Ûã§7ûG—{}½÷Ͻý÷7‹+ŒðÍâjÅ&§WÓŸ^òý·¯Ž_3aª& w>wAa,’ö¤¿LÔüiͬRf Ä£ <@<'“C>õL°ÉÕ'>Ur¦à ¾Â¿×|ÚÎ$›ÜÃç +NùTV³–Mîø¿ç¿„[ ÇÙæiÅXØŸ˜OùŒ÷o}îèÁ[c+ø“'0wtöbyÿ°¸˜Ÿ~½~txtTUUwppÀè¨ £,cpã‚ìÒ g•6뉪™5¢®³N&sÈ åï3<Ì4%IèYIÂøå”ÝQL©dLà]…?Ýò)-^ò©qv‹Ù9”ƒÖ\ñ +¿YR¡:6¹àðJ‹› Ê&ŸìŸS.áðgl[ \vÉ[\EÔ¸êŠÃ1+vQ¶TSÙ¸ iõ´¡h­½ã¢E?M–Ÿñ½&ªÆÄJÆQA5è¶J±´>-t_¼’‹b"d Eð€;³ »ñüpÍ•Ÿv8‡:I9#¬maIR”äÂ5ìG€¿¥mG†¨|eŸ¸0>RÛN>ž3Û!}"£ª-ÄT7‘˜äS“91ÕÍP“N&ïo¾mo 㺀ÜÚjHÌÎ5Æo¨i–ØŠúš·°Ù7ÞÑçgŒ$#>–lç–YFicëå}ª°O‰'‹0ÝøÑÙ‹?á…Ú¬CåÒXú‚AÂç{Åé¢ ùQ*¾Äf =>ÄUH©wì³¢³w„¨Ž€{š¾fÛ[ ƒ/æ'Yã—tvÝ—oL3msÉ)í7)›tcûFPóѶ6ª?o$:˜D¯g}‡íÐG*­Â¬Ñ f©ôD$˜6_xø’xè|Ûh±å +—ø0ᾼѸìï»ð·±GúQD­’Ã_9aÇ +“¡)ÆýþÇì¹]k'6ãÏSè,;}ò±ãN8ã.žrâåÁh' lxµ¥#e¬ +ZïFHš"i"¹!ÒõiKÄÛÔ¢#+ÓAكٯÓÜ ô1È>; QçhlåµHàˆ¤U–³Ãrö’ ¸Ï4Š.êfÔú1||¤¦¨ "Øm±6ÙmYĆk\K€qz]µ= ÌË%DM([pºèŒ­KàŠ.q$+mâsSð¹ùa|>žÈãí=ñ¦èß{¦dƒàƒLEðE•êcvY±Ú¾ïas™q9N§1…›þ‚Äf"³#…ú³úqõè+ñe*ëÖ±—d¯ ’ÂÓ…]ð£f½f=cŽ éða~>òk® â`ºÂúD˜"¦5ª”˜ú¥·!A, £HßYM"ÖÎCÜ¡$n6îÝ:§ÍJ!n‘Í „Šk(]"JGù_[UjMÒƒÎÉØ .«Âk¯ß'º\/]5–t"mÓa,®hqRz¢\÷jÂS+õG˜v×vé-¢C±Ü*|sÆ^p{9ô+vÕ4h‰ü ®„׸uT}í&Ï}zA7½}sýÎŽ{&×1]³©Ñ‰¹Ý¸ê,Òx¡Þ.ë¹Òvªó[ÉRÇs“áYˆAL¸R¸RrCÿsË/¨f2Ô,ñyc*æå‘Î,Haz7ÑÑ.U«·W OóU3OVµ& d +Ó:}€ð’˜N&ÿBZa“_áÂúüŒ‚ ñŠS‹üž*5+K§›â÷Ä(©ßØ;x”˜]4´¹©Àìëõ쳂ýÓʺ§¯ÎÀ„‰#{\n9=êÞK‚u?Géu%\¼îW2Øôbªçz èW.”ûÉPh\L9íŸ VMØç™Ò–ÊÊ!鼕(”0ñT‚ÜïÌÁŸJf5B‹úÑœH}'×*ŠÓD;ôL;r,ë®Ý 9ÿÔÍ’b8êá!¨–I±¤+ü¼BšB—bÐcV2DÙAhAÀ~çÚåØá”ø.­]EAm0øDY[q×$âŽp¯]IÙk0{tÍ%…Õü/E4Ž$.ˆikö ·-•HL¡Ü%)©™‚vT!9µ"zø@=Þx£³AÓÏØ ¯‹]XDvaðn+ƒkx ^?ƒ«ÂŽ™!OC:–IäªÙ%Q¹H XšÚG°òsœ‡¹Î÷}tI+ÚvkKbé6Š étÚcUx¾«ÜJqQ0nÀVrhBpM$¸È¤–œg ÷üYÑZ$Ù´®iµ\uøùO†MÉ*¦MTL]èÊtRqª„dŠ¡ÔÙ]Z¶²°½»‘ìm 90i]¯Ê [Ç´uÞ«•ÈAÙš!P62eÌì+[Aw)+$ñ¦¦­èo\¹DX¦‰ó·HW1Žœ,w€>‚I"ÅØ•ÃN´r<éõÆÍqØw“ 8Y„”nûA  +i~¨Ü’wD]jþP;àšxßtÓ‚­˜ß¢þo.YѦb»ÅµÁ}ÿáÞÿ™Æ2qÓ3ÙüÕyþd2®v­Ì@+`ýhM—€vWÊkÓéËV\–=(“ùô¦T§6R]]PI©ÎQ£5æÜ+! ÎÎþmÕf¢S™”Ù`Øš‚êòFx²«³T}Ùå<$íyf4G*˜h†`§ëvßÍsI  +2e 9ô<+V^ÌÛ†Qþ ÿ{ëLý¾Â~c}$'3\…ôµÞ&jnøÜÙPídèZÄŽý–žÃo}ö¸t0t¾³×O=¨2.O^žn"©Hô=Ô+zÅDJ7úDP™9d ¼c æ¢éu=Tðì¹á>fïËÆcU[0t^­€aŸÂ\* +ÚQû›‚‡:¤Zì„s´B´ÚÁø™®§6“c`@Ý"!¾EàƒR»$X@ +ÿb¾Úzã6®ð_!Ð `­9w2) n´HšÀrQö‹-ËvZÉt‰­ßs™žár¹¤¼ò`h½KÎœ™óïò±ÙË–û$2±p¯¬Æ¿oþE"¯ü“ cPõà‹M4mñ¢yªx‰wˆµ¾æŸrdF””~!¿%§é”Îs¹5w3Cþ~‚Ç¿àl “1œ±8¢q:lùPF¿škúÀ]Ûz8<ìvu¥XÚ™àbÍhq¯2 — “¬z¨ØösH„~ HD·è5瘻/&Ø¿áÕáMøÌgfÐOuLܸ ¿ tÄ©‘FáÿÌç×Ù+œ Â½’àj/rV¨rÃHtX'ϦáÍ[è¤[\Œô÷•Ø8ƒdt¦_^NU{ÂÔGÂ6IŸwô ùÆb\^(—ˆ;5 K5ø,= Ì›O—Åg»™°BöV»Ó8ϽáÃÇ¡APGPœgbó+BÃK¹N2y™}<ÙL3x +ÙNSCóÅFš§,-ý˜K3#EbÛ‹QÞ ¤EŠ+ö!9£$•ú¾¾ ψ§„³ÍŠûîÄ}×WÝùMk{×À¿Aå"ª­ >=½½{sþòìËí_ŸÿðüyÛ¶ý“'OZî¨!=Ä–Òï,¤ô\V‚¶°4wäÓ^ ±TÄ‘üúœ[>ÈPì`6šž&[M“vé V„=i€_å£A{–€ö¨¹Á™.v[j +=S„Ï#¨º‘Ù¤·AXiý +4¸v?:= ¡ûVhpzD%¯ŽžÒmèÚ@×±`”ÚÂpPX5&Ä„ƒ˜pPVOkû‚—0K=k^P”¯±Ò ›ôe +B2t¼eÝ"@è•]6û»º¡Ëý7ë²]ÐeQÉCºÿl]~&ý`Çïñ¹±ÿAeí‹Á‘Qù[GÙ_¸m(©…”Ôp±‰¬6XâádTß½êÈu®A’LJ`[H/O›ôa¬Ý\ÞàÒíâÜä|í `#Üd 2ëBzð‹a\ÈZì†Øë?»ÝŸ »ÿVÞm¤Ä\7E…dÀ)€–pNNfºâ]Þ$tá‡èŸ$a‹'Ò+víˆ2[•³cKNóoi„úÊð¶øÿ0n†®up"[×nªãÞS!é*ûc©ðÌ{f–@Cøš>@³ú0Úca‹zöGÍgøŸ*Ó OÓzã©OµbRüßÐZÞr7tå‘æ.¥«r‚‰©+.ÇTzé]Ã&kèRSš°“ž®’Dãéج†B/éI¦ºfÕ²p©ºÊJ×Ê·ºoap ^ldS(p—ym˜ÎÍ@ô*Êž`¾}u9 G$3Ÿ¶À3=wÃc©üóæ)¿1tŽÏŒ›Àø趙a áïãŸàiî÷œFL.&Öûö„¸eÔEGY#.~D±Y[æ¤ÅvBZür˜†3ãl]ÈZm‘žÙoÆl‹-,5õœP¾s—œìÀÊôbè¤JÐ/XH²#vP rù5×€½§ñÍÎIJû14‚ÚàªgôÁT“Çܾ»ü‰AÜL¢¯r"bí²cwßäØ]>¶8vMvÉnÅ uK5`Ô‹Ö_4€‰ÿÎõÑ;Ðm²åa$€xl¶îf–® ðð=´ }q1jš‹crýo±¹AôDÓÏ7 ïàÑË×0£FL@׉AwœÈƼÇZlÂÜV!ö¶ùRäýw©Æ±c÷™Uý­âØZ ‹;èØ­A¨ +YI«Ñ,€¡X›š²é6­t;h嫤{?+ñëÈð°­ˆ²8#1‚eå§yÇTˆ«|=Ù®SùKêX…Ú¤AYNúž8X4ŽÅõxlž³ÉÖ:‰Ýñ ŒDåm[|í”Ä͘nÃÉ áçÂÁ +•#Ö¸zyW­LÃs®8‰ÝÁñ<3>Ù*¤úÜçž7bîüˆ£© +&$L= Õ.Ó_Êvå9’9·‚û§;ÑÔ)ñE6õ U-Ÿ”}á[´ÍÑñÎ∌øÒ›ÛËá]ÖÀéùjûù‰¸ŠßäDy…¢úì9óA–båê7F»9ìwA`_l"væ&‘CáC…a -Ò„{¦{i +Nat¿ýø¤™7˘XÚê~›¿sÜ¢¾HáH°d¯»i^Ñ>4ÙÅcê”õt,Ã÷®áµïT¤V½Í@rX·ë«/i62ƒŒ¯[kév¬S¬`r—¯…« +Wx¬¢NÍ*A—Š=¦Æjq$ªý˜y«qN)ð!¤ÏPf””¹ôqÞͻ̥î|x¨x±§ëÆšj²¦š¹ñŠVŒ4Íêá Æ¤›ä+ƒ›ðžçàØkæo¼uO}øK¾½×ŠG`'èGõ»ì Üœ'­pÀÝâÛêÚzºGYÈJ/ÐéÚ hŸNnº¹Î‰_ µÝRM#DzÎ×?§)üNu4c•A@ùÄ%Ú$.Éú€ t.q‰öiÛëä‡îhh4Jš&Õ=ËÅÓå*Žš7DžÄX¦e_ÃÂÕBòÚd[– àHÕÿÀÖkŽPŸ” øÿÅ$Й ´™ÄÚYsQŒ;Õs‰²`Rå-]HHþ¶g]· [_Gú@ݸ,ßüFN€‰nægŠ‰ô‰WÿµÒæÊÈÀ;V!áš„ vò7Øì$}bà⌬pG0- 3î¿IQõ&áïc~Æu_Œvœzבq·ÐB“0CÆà‹¶Z¿b×C´X•³š’ëx¦Ã,üªsCS²©ì¥©lÈŒK˵íbxrïÒ߉­Ñ8Ù€_ ÅDE¤kѯZ‹ Ófni•¡#j$CÂïè‡GÍer†WˆR7„ŠkeªÌ9X=± v¦H{Å¿ä°ôe¸Mc"æ¯î³óptQß7UPËq64©AãT%¤sƒºQƒäù›í¬4Õž¸¿=ÿg¾\’a0|•n]´#òÌ]ºjï‡@^‚§íÎÑÑóçËŸ-üQŽ9il-{[/£Î=hR´=|Rô±ú{ѹsôÚ %Þ¯¾×¦nÔ>sXù¸ŠºØ[Œ^g"> H9ðRЧëdöÔpc}ÖìDÖlë¼5×!O»í!O„ +=(}¨8…^èèAÕU| ½cWßUœÒU~J&5û‰k<õªWÎ%‰EHLà«¢W˜” ®S°*¾}f¿Ž/¼©1ÀsitBÓ!ùÐT4‡…ü ÷Ù¥«‰Qr¾Çaä ÈLãüþÃ\ÌDì— ù€Uä³ñà +}ò™-›l×Or]æAään·£„ìóÚáÅ€G–dv÷{•ÀÍÎÖ”‘¤Æžÿ#Às›: + +endstream +endobj +113 0 obj +[221 0 R 222 0 R 223 0 R 224 0 R 225 0 R 226 0 R 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R] +endobj +114 0 obj +<< +/Filter /FlateDecode +/Length 2732 +>> +stream +H‰ìWÛrܸ}×WàqPerˆ;¸ër•|S¶v³Ö>Ù[©±$KJ$ÍDyWùút7 fÆäf²ÉCÊ%“CF÷éӧ燷ëË/‹“5{útþ›¿[<,ï×ìÙ³ç/_°ƒçÇ kj© ü¯µb·çó7v~w0?m˜`Ç_šºi;>aU¼û•ÙÚÁøçjÄPµòÆ3ijc,¬¹>˜IËÿvðêøàÕ{Øé°hp-˜Ç_ï毯öryð—ƒù‡Õâ=|·¸9g³³›êÍs>ÿâíK&L«KwzõwôS?37ÛÎÍ·òÉMºéütª©­r68*sGw»b +WÒh ,9q®$ÀiVó_Žÿ<2.Ϥ]v» \5~FØÒ“©h3oªîôÛŸ0‘íøqvÁE“Š¡‡å09+L$å;n=¾˜sÑR¶æÜ8¼þJKÊ×bò¤Ã…÷`IâÍ ¼G@Ô\À¯å-â¾;ç²AàáF$ZÄÔ —mx®kÇf'¸WòÉìÒ®à±ÅÏÎÈà8Ø—ô}þ"=ötC\†'¡\IÞ!˜áÕ5Dz!^¯Îð…BŸ+ƒ®.h…§â@*nñõ%¹æ‘±”0šMw§‚ï%m7e AÈ÷šWuò ^tg… ÿQ:3;jÊŒ¥³qRSŸÀ´k»ƒÍ¶WÖþ‘é jžÎ%yˆâ÷¿ƒÆþ·‚îvÙØ€O¨m7’ʬùC©ŒèÊàiEþ ëÆ®u8% +MY´ÝâƒCä?²R‚埒þ{…‚>üÀ ç9WãFÂQrmÑPÝÔ·%…ý<$f%&Œ•§]s,Æ´Yz1…`ý@3 …£Ø$ž:‚…é®'X;ž`Û=l£¬(=™H°b¨šGÍXùŽ»f,(.‚•Ð夥âœåÍY~óœ¥âœE³ƒ  ‡IËç“VKˆDˆä"…i枦”n† +¤Q_~@[;‡²J$*jÑäs…„àK/ˆ£I´æk©"pW&l¤¢¨Âp…@vhÏÚ¸Q?|µ/ËnìºNt»ÈÔ¥l£R Ž.!†å‘ªcWq¨6+7º8„ÜgqèV–žL-Uª½Ip¥’Èöù8û–ŽÍÎS!E¿Qƒ +\áu å¶SH¢±KdúŽb‰Á÷ÍSè—Ã槳a+ëµ-¾_m ¸<ÿ¥ ´:LÛQ÷øaÆfG[û¼{Ôçý~fENq@-Ceú…-Ø9‰lK‘ µ–ȇõÑ +#N×c`u ,Ùï!…ú‹%ŸI5œQ›')R1ˆSž”ŸSLŽ&(¡w+jœw›ð<ʾT±jw`ûG(éÍÉîV\Z©B0×%–¤‹%Ñ%Èt…–ª!åPø@ŽA7AîhÇ«´cL¢Ë ߧ}ÅU/cÉÖ41mÔViø„¶õ2¨TýH¥ú©*žj]h†c§(RšP“Ù·Ñû6HVÉ Eúß0˜fklзôÂÂW²¡‹Áêh¹6è&˜Äüá£ÞÇ”V‚JҦسt8)¶K‚µ3øê|J¥Ø‘šÛobrA%T‚õðmP•á‹'¬—ÆÀ8Ÿ¤”/`ç2ôçTTVE°ÉÈ^n+{¡.†+l)Yˆ•Å)e)ççé“ '=E]1Ÿ{ÝÀ]þ²< úveqe´mâx„ØCX'c¹UáF¾íj5¦ÇuÅ÷é“lmo2¼è{›Ç¨…ÒíV´q¦‹ àtC9ÔÒn¹Ô4Veh1~¶~² þ\áÑdÙTL8ptƒUñnk½1¸ p!¨dš)šPAˆÇIÓåjÎEW4JÂh‹xûr¸ˆœ¿Zr—èÛâ Dœ + Ð hˆ©QŒá”‘>'Ò?Ç¡„†«ÓÌBš~Eð†í+B'MÔ/–7Xðéú Ae‰ðèdÚyïÉý/dITû Ih«´ìÇ'Z é÷Û„þh¾#?éWÄl‡xjò»°…[¯Ç™'„´âa`ù¶xþÓK.iÒ‚+ÅúGôÙÐCÞðÀj÷}I¢><]$é‡áÄX£¥=¨[axMG”ëìM•*#7<äú•­á¡‘Ôèæ“S9¥øãPÄ¥ù]<Ðئ8Æ»lÀiGë0)ö=àžL¬T™[›Ë27ÿqvHj­S÷9ïSzN¨¬Ú0Ä â@`è ZLžrAǯÂÈÓµ`(Öð+4Û Bj&6(æ” «!ÙŽì®;ÝGV5ãs¬÷ÉÆ^<™šcóígæ?Î:½žZx(Õ¯È*Ó°Qßnîû¬¿Û Y~:G›ÙŒHË¿¢ÌÄ4g“²n\êè—ä-±‘SC=e³G.oòSÈâˆw$•T'•ºSôƒrL:„ê;Z'“’A×AßÔ_r¥aä"›Ô¢â!Sn‡ã‹$†7ÛnE†p1áno‡ôCÿ-™ +pÿm€gæÿðÑÿ²Æ'w:<“Žê%ò†!*´æRO÷ÅÌ‚DF!5uRùÂ…p¥¨D?ñ€}=ª0*Ì… +Ã^#ã¨:¥ˆÚ¡ðI ø]Eª¨/"9ºˆTó¨ˆj¡Ýï/¤ÖY[zÓWà_`‘žþ7ðïøWü«ÿ¦ÇΓ$}÷‡~ñýzHïr;ôJr—T˜õ7)˜cò>Ú>¥±•Ýb™ü´QÛ¬â´Û°°˜K7áV¤à?ó43@0]Q„ÝÁ-|`Ù¾«¯J¬ã2-–Õ5Ù4ê<Œ/(5»Ã2®Æy· ´£ì¯06ôÌO¥œÂÔ¥L.W)£²HmÈ@Æa—3$ä ﻈó^’wk†¦ÐŽ:&T ªë–à‡Ãà\<'àX–û,(égHÊ„™´FY®8Ô% ]$ë_ Žô—, +endstream +endobj +115 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +116 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +117 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 1266 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 116 0 R +/GS1 232 0 R +>> +/Font << +/C2_0 233 0 R +/T1_0 234 0 R +/T1_1 235 0 R +/T1_2 236 0 R +/T1_3 237 0 R +/T1_4 238 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬WÛn7}×WÌãÈR¼.¹aÀq #E“¶ú”…lÉ—Ô–Œ•ÃùúÎ!©ÕÅn 7†-µœË™™3CJÉ<)Ù*‡oKÝå`x|ªèr1PR)Ku”ž7ce£[ŠZÉ Zꦃ‹bc¡ï\RNFëH+Û`ÉéF6lÔ42:uV"FKëÛ^Ä[¹²Z$ÚV*ï×6¼tÛ¡‘Áëç†Ýòúb|¾¤½½ágþ>~œß/iÿÝûC¼xúü5ŽôŸŠ4.¯æÅ9ÕeõÀ£iÅŸXw¤µ4>©æ•VArj,éh¤ó.Ðèvð¥ú$ê 5UŸG¢¶ÒRu$¾~GÁâ*]P‘d¾øN+øöZEÒ’Úó"ù> ##Uç‚Å UWôWT½VºüðT`§t+^ÌEí±?ÿ¾-¬Ü~7¥k¡9Pªt."ô°¨ê:¡=6¦üš3¡£l©ZÒ£àŵp[ŠãW4å[ÿªl`GЫ=°ÖFAIÀÁ¯:xÔÀeÅ-Á;¾ Þ”&Œ€5ÆÀR•7B[hÉy–{à0ÏŒŠÁÙ†A…HSˆ!Þ‰:É–D^f…)ö9I/«ånÙœe¦Ä¶ÊV‘}ÿÿ6×Tp ·ÕŠ +¢nsH»É%£ R¸MRl%#ôåí8#©j‘5e’—ò–y‡Ôµ0ƒR4x&2<Òš.©ý‘¹W4ñ2 R‰yÌ %Xg'oè^h—8X‚(©àåNÕZÓ7Ù`Ú3ض‰§Yµ•^¼ÁîòI¾~­ä–çaÓ³UžW+9óÉ÷%ÿ#×âí´;p(YK"‡íV²Bª®Býx4§¦?º…Ôno })©/X;C=\¦‰Ãûug^`¶˜ÞmGÅñˆds©Ÿké3¿¥«Gml–KÚwpËþÞŠZ³Ñ¡ˆi¤ 3X: –…ei‰Nhû̘©HÊ#EÖ çaCr@n ¿pó!`ó—8²®'ƶkÚ\ÏQiá§Sj’QÌË@V‚(#ýÉL^+ÏVÍ¢=@xîŒ[:+gW¤™$zÝHœÿz±Æ [gJ¨‡(wìÓ{—sÿÈåÊçÁæè¹D:\JKŠì«á›@Ï}ƒˆYJ ›˜“~óS±œiè@„­áDÿh{ųÏEž^a«‰ÜÆl¬Mj—B›,µ`/JÖ“K.f}E ý%àVЬR‹ÊFn„ÆÜ…šÆ—ËÈLuœx"uåRäc·ÆKd71<毜ÖY$@mRbž(OšÖµ†Îv1ë»Üç·xÏûã´0ùlG‚zǵNÇÀ›Þâ´ö+ùðèäCÉMy^Ã7'ù'@Å  uâýõœ Í¿i<›äʼnHvRœº`þ·„œƒb:>cúT´… –à©NýÁñó"M‹ ~ñâ‚£3p=>Õ¸y£âv÷ú·Uh‹!ÂV¥+zÙ‰²M´“ã†Æ9úÈN¾Ó—oŠ&ÔÿšÕEYã&–ÈH˜¶[€ì)ÝþK <x·3r͵xµ˜7þìÀ³ËžÑ[òž»¹çó‘ÿÝøí.Ó-·³øîïÓñ5Ç ðâ/b>|kïÒm–Ta¾û°ê—O•lÆ0ãÓØQÌ. F²‡M^ý-À|©÷L +endstream +endobj +118 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 172 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 116 0 R +>> +/Font << +/C2_0 239 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰TŽË +‚@…÷ÿSœ'˜ù›"¤‰›$¨ÙE„XJBjH=}ã²Íwà\àÈí8?º¦‘¦ò¹o>¯÷Œ,Ëw(÷Ä`¡´ 4FãX ‹5ÎÆ $«£ŸHêʈà»0ôm¨øeÅ„ˆƒ|×hD,´&Îhe…J8dOJ™“ùJOe>ü{²Ö µÙ¬#)¸Xh¥aEÄ +ã:ú 0“.ì +endstream +endobj +119 0 obj +<< +/K [240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R] +/P 37 0 R +/S /Article +>> +endobj +120 0 obj +<< +/Limits [0 31] +/Nums [0 246 0 R 1 247 0 R 2 248 0 R 3 249 0 R 4 250 0 R 5 251 0 R 6 252 0 R 7 253 0 R +8 254 0 R 9 255 0 R 10 256 0 R 11 257 0 R 12 258 0 R 13 259 0 R 14 260 0 R 15 261 0 R +16 262 0 R 17 263 0 R 18 264 0 R 19 265 0 R 20 266 0 R 21 267 0 R 22 268 0 R 23 269 0 R +24 270 0 R 25 271 0 R 26 272 0 R 27 273 0 R 28 274 0 R 29 275 0 R 30 276 0 R 31 277 0 R] +>> +endobj +121 0 obj +<< +/Limits [32 90] +/Nums [32 278 0 R 33 279 0 R 34 280 0 R 35 281 0 R 36 282 0 R 37 283 0 R 38 284 0 R 39 285 0 R +40 286 0 R 41 287 0 R 42 288 0 R 43 289 0 R 44 290 0 R 45 291 0 R 46 292 0 R 47 293 0 R +48 294 0 R 49 295 0 R 50 296 0 R 51 297 0 R 52 298 0 R 53 299 0 R 54 300 0 R 55 301 0 R +56 302 0 R 57 303 0 R 58 304 0 R 59 305 0 R 60 306 0 R 61 307 0 R 62 308 0 R 63 309 0 R +64 310 0 R 65 311 0 R 66 312 0 R 67 313 0 R 68 314 0 R 69 315 0 R 70 316 0 R 71 317 0 R +72 318 0 R 73 319 0 R 74 320 0 R 75 321 0 R 76 322 0 R 77 323 0 R 78 324 0 R 79 325 0 R +80 326 0 R 81 327 0 R 82 328 0 R 83 329 0 R 84 330 0 R 85 331 0 R 86 332 0 R 87 333 0 R +88 334 0 R 89 335 0 R 90 336 0 R] +>> +endobj +122 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 337 0 R +/FontName /SKMYOJ+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +123 0 obj +<< +/Filter /FlateDecode +/Length 401 +>> +stream +H‰\’ÍjÂ@…÷yŠY¶ Éßx§BZµà¢?Ôöbrµ: c\øö“SZh@ó…9'ù˜¹éj»Þún4ék蛎æÐù6蹿„FÍ^Oò´]3þôƒ‰-ü’oÃÆ- +endstream +endobj +124 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 338 0 R +/FontName /EKOSAL+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +125 0 obj +<< +/Filter /FlateDecode +/Length 391 +>> +stream +H‰\’Ûjƒ@†ï}Š½L.‚‰ÑÙD9€=PÛ0:I…ºÊj.òöñ)TÐýÖ>f'Üç‡Ü5£ ß}W<šKãjÏCwó›3_¬"S7ÕøØMߪ-û ”äâ>ŒÜæîÒijÂ9F7³]Ýy„o¾f߸«™}틹 ‹[ßÿpËn4K“e¦æ‹z)ûײeNi‹¼–óf¼/$ç/âóÞ³‰¦ý +2UWóЗûÒ]9H—òd&=É“ìêçëiçKõ]ú 4x¹”ExÞ+ÿå=Ê~½šö²GàHy ^+ÇàXyÞ ÇÈ57¶`«¼o•àƒp‚š‰ÖLP3Ñš„:¤u¤„xÒxBZ¸Yu³p³êfáfÕÍÂͪ›…›U7»o”á&‹^äãÆôJeòÌs^ª›÷2*ÓxN3¢ÓÑ8~NpßõF²ô ~?lÀ +endstream +endobj +126 0 obj +[339 0 R] +endobj +127 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +128 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/space/comma/two/C/D/I/L/P/R/S/a/c/d/e/f/g/h/i/l/n/o/p/r/s/t/v/y) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 340 0 R +/FontName /ISSVED+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +129 0 obj +<< +/Filter /FlateDecode +/Length 355 +>> +stream +H‰\’ËjÃ0E÷ú +-“E°ãXRÆPܼ胺ýǧ†ZŠ³ðßwFR¨@ž£Ç\_f”Tõsí†Y&ïaê˜e?8à:ÝBò —Á‰m&íÐÍ÷UüvcëE‚ÉÍra¬]?‰¢É^ç°ÈՓΰÉ[°w‘«¯ªYˤ¹yÿ#¸Y¦²,¥……^ZÿÚŽ “˜¶©-žó²Áœ¿Ÿ‹™Åõ–Ít“…«o;­»€(R¥,N8JÎþ;Ï §ûî» ¢Èèršb@®˜+ä]ƒ(ò]d È9sN|`>snN¹Š5i*ÖQ¤£XG‘ŽÞFÆ€Ìû:î³¾&}­˜±fÖĆÙï™÷ÄìG“Í~4ùÑGæ#ñ‰‹SöiȧaŸ†|öcÈa?†üö`ȃáa "ß«IåÆW!½ìn!`ãÓ‰ý£Î ¯ËO^bMñ+ÀŸE¬P +endstream +endobj +130 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 341 0 R +/FontName /JRCBSB+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +131 0 obj +<< +/Filter /FlateDecode +/Length 235 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqv)˜@iä°v,Ý8¶’Û(Î!o?Ù-T`ËBÿ'~KžÚsë]ùIÁt˜`pÞÎa!ƒÐãè¼Ø×`IªÜfÒQH†»uN8µ~B)_Üœ­°9ÚÐãVÈ+Y$çGØ|Ÿº-Èn‰ñ'ô *h°8ð /zBÛµ–û.­;fþ·5"Ô¥Þß͘`qŽÚ i?¢PGê£èíK¿¾Sý`~4 UgmUqêíPÞœ2÷Pä üQxÚ3 ;+Û(–²çñ¹°"0•ø`Ðq‰ +endstream +endobj +132 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space/D/F/L/N/R/T/U/a/e/f/g/h/k/l/m/o/r/w) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 342 0 R +/FontName /XHBHGZ+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +133 0 obj +<< +/Filter /FlateDecode +/Length 318 +>> +stream +H‰\‘ÛjÃ0 †ïýºl/J4N!°¦-äb–í[é‹cœô"o?Ù*Ìè³å_È¿¢ª>ÕfX zw“jp~0Úá<ÝœBèð:‘¤ µÜwá¯ÆÖŠˆÄÍ:/8Ö¦ŸDQ@ôAÉyq+lžõÔáVDoN£Ì6_U³…¨¹Yûƒ#šb(KÐØS¡—Ö¾¶#Bd»ZS~XÖiþn|®! û„›Q“ÆÙ¶ +]k®(Š˜V Å…V)Ðèùä‰e]¯¾['ŠÔ_Žc +¢ØïS –ÌÒsÅ\y>3Ÿ‰³40bÖf^›e̱LS æsι¾ôõeÎœ{>0<™ž¹é{'æ“ç 3=¶È¹ŸÜ÷“sM +Þ„ûk½45xx­nΑÍa´Á_ïì`ð1};Y •ÿį8Ý™ë +endstream +endobj +134 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/space/D/F/L/N/R/T/U/a/e/f/g/h/k/l/m/o/r/w) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 343 0 R +/FontName /WIRBSB+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +135 0 obj +<< +/Filter /FlateDecode +/Length 318 +>> +stream +H‰\‘ÛjÃ0 †ïýºl/J4N!°¦-äb–í[é‹cœô"o?Ù*Ìè³å_È¿¢ª>ÕfX zw“jp~0Úá<ÝœBèð:‘¤ µÜwá¯ÆÖŠˆÄÍ:/8Ö¦ŸDQ@ôAÉyq+lžõÔáVDoN£Ì6_U³…¨¹Yûƒ#šb(KÐØS¡—Ö¾¶#Bd»ZS~XÖiþn|®! û„›Q“ÆÙ¶ +]k®(Š˜V Å…V)Ðèùä‰e]¯¾['ŠÔ_Žc +¢ØïS –ÌÒsÅ\y>3Ÿ‰³40bÖf^›e̱LS æsι¾ôõeÎœ{>0<™ž¹é{'æ“ç 3=¶È¹ŸÜ÷“sM +Þ„ûk½45xx­nΑÍa´Á_ïì`ð1};Y •ÿį8Ý™ë +endstream +endobj +136 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/one/two) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 344 0 R +/FontName /AWNUWT+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +137 0 obj +<< +/Filter /FlateDecode +/Length 245 +>> +stream +H‰\PÁjÄ ½ûsÜ=,Û£eÛ…¶-MûF'©Ð¨sÈßwb–-t@g†yïñxüÜ>·Áàï9Ú >¸Œs\²Eèqô5œ·å¶ÕßN&1Nän Nm"S +øç’W8<¹Øã‘ñ·ì0û0ÂáëÜwKJ?8a( @kp8ÐÕ¤W3!ðJ;µŽî¾¬'âü!>ׄ ëÞìflt8'c1›0"S‚JƒºPi†Áý»?î¬~°ß&3%_+5¦š:S£Yî³Ô›¢;JTÅwÓ¦ànÜ.9“çšS5»ÙôïQ¦˜€XÛc¿ &šv +endstream +endobj +138 0 obj +<< +/BaseFont /MIUYIV+Wingdings-Regular +/DescendantFonts 345 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 346 0 R +/Type /Font +>> +endobj +139 0 obj +<< +/BaseFont /JRCBSB+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 130 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 347 0 R +/Type /Font +/Widths [285] +>> +endobj +140 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 348 0 R +/FontName /WIZCNB+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +141 0 obj +<< +/Filter /FlateDecode +/Length 562 +>> +stream +H‰\”ÍŽ¢@…÷ݴøÏ}¡¹MSÚÛÐc/À.Ðõñs§‡Ñ¥Yøe+x +endstream +endobj +142 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/P/R/S/a/b/c/comma/d/e/eight/f/five/four/g/h/i/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/v/y/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 349 0 R +/FontName /GFTZHH+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +143 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +144 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/one/two) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 350 0 R +/FontName /LHMOPX+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +145 0 obj +<< +/Filter /FlateDecode +/Length 245 +>> +stream +H‰\PÁjÄ ½ûsÜ=,Û£eÛ…¶-MûF'©Ð¨sÈßwb–-t@g†yïñxüÜ>·Áàï9Ú >¸Œs\²Eèqô5œ·å¶ÕßN&1Nän Nm"S +øç’W8<¹Øã‘ñ·ì0û0ÂáëÜwKJ?8a( @kp8ÐÕ¤W3!ðJ;µŽî¾¬'âü!>ׄ ëÞìflt8'c1›0"S‚JƒºPi†Áý»?î¬~°ß&3%_+5¦š:S£Yî³Ô›¢;JTÅwÓ¦ànÜ.9“çšS5»ÙôïQ¦˜€XÛc¿ &šv +endstream +endobj +146 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/A/C/D/F/I/L/N/R/S/T/U/a/b/c/d/e/f/five/four/g/h/hyphen/i/k/l/m/n/o/one/p/period/r/s/seven/six/space/t/three/two/u/v/w/y) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 351 0 R +/FontName /ILMBJD+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +147 0 obj +<< +/Filter /FlateDecode +/Length 424 +>> +stream +H‰\“Ín£@„ï<Å“C„gz YÚ؉äÃþh} m)ÐüöÛEEYi‘ìùTéhÊÍn»KýäÊ_yh÷:¹cŸº¬—áš[u=õ©XV®ëÛéólþoÏÍX”Þß.“žwé8uíÊßvñ2å›»ûÖ ½/ÊŸ¹Óܧ“»û³Ùß»rÇ=kšÜ­׮ӣ}oÆÍY]9Çv]ï§ÛƒeþÝñvÕUóù’2íÐéelZÍM:iQ/ìX»úÕŽu¡©ûïº_1v8¶ïM.ê +7/¶oÉ[ð ùÅxµœÙãŠ\WäØ“=8XÈŽähìÙéÑéÙãÑãÙãÑã™õÈú'òxCÞ€ééáèàØÐØÐèà&t8³‚¬0+È +³‚¬0+s–n7á¾û’Gò#˜Îgy&?ƒé/ð>sÁ3îE°y%ÛK¬#ßQÄ;ŠôŒðŒôŒðŒôŒðŒôŒðŒôŒðŒôŒðŒt³Cò9 ›j÷5‹í5gÃyôçùÃäõI¿¾Žq¥ð+þ +0ÍuÑÊ +endstream +endobj +148 0 obj +<< +/BaseFont /PVEBDP+Wingdings-Regular +/DescendantFonts 352 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 353 0 R +/Type /Font +>> +endobj +149 0 obj +<< +/BaseFont /GFTZHH+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 142 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 354 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +0 573 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +150 0 obj +<< +/BaseFont /LNATZX+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 166 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 355 0 R +/Type /Font +/Widths [202] +>> +endobj +151 0 obj +<< +/BaseFont /ILMBJD+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 146 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 356 0 R +/Type /Font +/Widths [212] +>> +endobj +152 0 obj +<< +/BaseFont /BYALPR+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 357 0 R +/LastChar 119 +/Subtype /Type1 +/ToUnicode 358 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 683 0 509 0 0 0 0 0 493 0 676 0 +0 0 569 0 525 666 0 0 0 0 0 0 0 0 0 0 +0 508 0 0 0 516 319 573 572 0 0 509 257 848 0 564 +0 0 356 0 0 0 0 749] +>> +endobj +153 0 obj +<< +/A 359 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [520.398 478.475 523.604 469.387] +/StructParent 2 +/Subtype /Link +/Type /Annot +>> +endobj +154 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [31 /f_i] +/Type /Encoding +>> +endobj +155 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_i/space/comma/hyphen/period/D/R/S/T/W/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 360 0 R +/FontName /RLKTVL+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +156 0 obj +<< +/Filter /FlateDecode +/Length 391 +>> +stream +H‰\’ÛjÃ0 †ïý¾l/Jm¥B GÈŬۤ‰ÒV'¸éEß~’:˜ÁÑg¬ßùe+ÚûµƒÞ}Wh°MëjO·îî+²gº´Î$©­ÛjWá[]ËÞD,>=n] ×t&ËlôÁ›·Á?ìdSwgššèÍ×ä[w±“¯Ýij£Ó½ïèJn°±Ís[Sý”ýky%Ù¬¨y¿3Öüe|>z²iX'j¦êjºõeE¾t2YÌ#·Ù‘GnÈÕÿöç •›ê»ô&KŽœÇ<×¹ÉÒ8¬90ï”wÂ{å½ðAùÀ¼Xæ`²e˜ó\y.¬9˃ÊÈ ‰þ;V-ˆT ¢Õ‚ha©¼†Ñ·°ž áÌ•òJx­,uÁFy#¼UÞ +k 5‚ÖR#h 5ÂxG|¡êý ÜªgϨžQ<£zFñŒêÅ3ªgϨžQ<£zFñŒê™ƒ<ÞøJòŒÜmöÙ#ÕÝ{nÐ’¡/¤#ZGÏ®í»Þ²J¦ù`\X¾ +endstream +endobj +157 0 obj +<< +/BaseFont /NFJBBT+Wingdings-Regular +/DescendantFonts 361 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 362 0 R +/Type /Font +>> +endobj +158 0 obj +<< +/BaseFont /GFTZHH+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 142 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 363 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +0 573 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +159 0 obj +<< +/BaseFont /LNATZX+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 166 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 364 0 R +/Type /Font +/Widths [202] +>> +endobj +160 0 obj +<< +/BaseFont /ILMBJD+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 146 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 365 0 R +/Type /Font +/Widths [212] +>> +endobj +161 0 obj +<< +/BaseFont /BYALPR+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 357 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 366 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +162 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 367 0 R +/FontName /EFSOVL+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +163 0 obj +<< +/Filter /FlateDecode +/Length 481 +>> +stream +H‰\“Án£@Dï|Å“C„ =݉„,9v"ù°I´Þý c/ÒÐü÷;EE‰´H˜‡`ŠW†Î7»í®ï&—ġهɻ¾á2\cÜ!œº>[®íšéólþmÎõ˜åiñþv™Âyׇ¬ª\þ3]¼LñæîÖíp÷YþÛ»þäî~oö÷.ß_Çño8‡~r ·Z¹6SÐz|«ÏÁåó²‡]›®wÓí!­ù¾ã×m ®˜Ï—”i†6\ƺ ±îO!«i[¹ê5m«,ôí×½qÙáØü©cV¸y±H‡ÄäGðù ¼!oÀ[òüB~I\2§DN¹$/Á¹ YÀJV°‘ L‡%J83™ÂLA¦”äÌ|A¾x²óY‚g óùÂ|™óŸÉÏ`vtvt”Wrúc+Ͼ}=}<|<}<|<}<|<}<|<ûzôUöRôRæ(r”9ŠeŽ"G™£ÈQöRôRfêœÉŽŠŽÊŽŠŽº&¯Áì«è«|¿Š÷«ì®è®ì®è®ì®ènìnènt68 ÎFgƒ³ÑÙàlt68 ÎFgƒ³ÑÙàltN|ÌŸ_->ë4}îkfškŒi\æçÒõákŠÇatiö쟡.òÕ +endstream +endobj +164 0 obj +[368 0 R] +endobj +165 0 obj +<< +/Filter /FlateDecode +/Length 240 +>> +stream +H‰\PËjÄ0 ¼û+tÜ=,ÞGYZ†²¥C4í8¶’Û(Î!_EY¶P-†Ñ #éKýTÇP@¿Sr èBô„cšÈ!´Ø‡¨GðÁ•+’ß 6+Íâf uì’ª*ÐLŽ…fØ<úÔâVé7òH!ö°ùº4[ÐÍ”ó ìÁðرыͯv@Ð"ÛÕžùPækþ&>çŒp|XøäqÌÖ!ÙØ£ªö\ªg.£0úüiUµû¶$Ó'žæö`t'ˆ› óŠÎâtÕ,ž¼:Ü»‰ˆ³Ê}$ä/D¼0§ ¬Zžú`Öƒu + +endstream +endobj +166 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/I/M/N/S/a/b/c/colon/comma/d/e/f/five/four/g/i/k/l/m/n/o/one/p/period/quoteright/r/s/space/t/three/two/u/v/w/x) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 369 0 R +/FontName /LNATZX+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +167 0 obj +<< +/Filter /FlateDecode +/Length 394 +>> +stream +H‰\’ÛŠÂ0†ïû¹Ô i­uF¡Á‹=°î>@mG·°¦%Ö ß~gú‹ hó…d&“‰×ûÍÞ׋ßCS¤s§ÚWA®Í-”âŽr®}4N]U—ÝcÕÿËKÑF±î×N.{j¢l´¯t¿îî#ù;ñyoÅ¥ýz ™²©äÚ¥„Ÿ%Ê —ït,"ñÕ¿ý !ìx*¿‹å©N”×àµñ¼UžŒ{ÖI9§ÆðÄ8gÆSðÔx ^*gÈ“YžlžoÀcܛٽSäŸZ~B,Y,ÁÌp†ú3p s 89ɘÁl 2ZWƨYndn727ÚµÈ9£†l5d¸±¹1ÜØÜnln 767†›ÃÍgà™òÜr¦ÉxÞ?èãåìiµݳoÊ[Ú2}›ö½b]R{yvrÛ´N£ì‹~’Á¯ +endstream +endobj +168 0 obj +<< +/A 370 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [191.421 468.14 194.627 459.053] +/StructParent 7 +/Subtype /Link +/Type /Annot +>> +endobj +169 0 obj +<< +/A 371 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [168.843 416.637 172.049 407.55] +/StructParent 12 +/Subtype /Link +/Type /Annot +>> +endobj +170 0 obj +<< +/A 372 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [252.93 345.637 256.136 336.55] +/StructParent 13 +/Subtype /Link +/Type /Annot +>> +endobj +171 0 obj +<< +/A 373 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [423.794 287.567 427.001 278.479] +/StructParent 15 +/Subtype /Link +/Type /Annot +>> +endobj +172 0 obj +<< +/A 374 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [511.515 736.271 514.721 727.183] +/StructParent 17 +/Subtype /Link +/Type /Annot +>> +endobj +173 0 obj +<< +/A 375 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [288.098 169.622 291.304 160.535] +/StructParent 18 +/Subtype /Link +/Type /Annot +>> +endobj +174 0 obj +<< +/A 376 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [184.967 665.271 188.173 656.183] +/StructParent 20 +/Subtype /Link +/Type /Annot +>> +endobj +175 0 obj +<< +/A 377 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [244.143 565.871 247.35 556.783] +/StructParent 21 +/Subtype /Link +/Type /Annot +>> +endobj +176 0 obj +<< +/A 378 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [126.226 537.471 132.34 528.383] +/StructParent 22 +/Subtype /Link +/Type /Annot +>> +endobj +177 0 obj +<< +/A 379 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [282.778 537.471 288.898 528.383] +/StructParent 23 +/Subtype /Link +/Type /Annot +>> +endobj +178 0 obj +<< +/A 380 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [234.74 494.871 241.124 485.783] +/StructParent 24 +/Subtype /Link +/Type /Annot +>> +endobj +179 0 obj +<< +/A 381 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [205.563 480.671 211.862 471.583] +/StructParent 25 +/Subtype /Link +/Type /Annot +>> +endobj +180 0 obj +<< +/A 382 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [472.491 466.471 478.577 457.383] +/StructParent 26 +/Subtype /Link +/Type /Annot +>> +endobj +181 0 obj +<< +/A 383 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [237.401 452.271 243.689 443.183] +/StructParent 27 +/Subtype /Link +/Type /Annot +>> +endobj +182 0 obj +<< +/A 384 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [204.985 381.271 211.133 372.183] +/StructParent 28 +/Subtype /Link +/Type /Annot +>> +endobj +183 0 obj +<< +/A 385 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [128.04 223.038 419.134 207.451] +/StructParent 30 +/Subtype /Link +/Type /Annot +>> +endobj +184 0 obj +<< +/A 386 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [290.998 693.671 297.266 684.583] +/StructParent 32 +/Subtype /Link +/Type /Annot +>> +endobj +185 0 obj +<< +/A 387 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [433.657 618.245 439.869 609.158] +/StructParent 33 +/Subtype /Link +/Type /Annot +>> +endobj +186 0 obj +<< +/A 388 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [231.68 467.741 237.93 458.654] +/StructParent 34 +/Subtype /Link +/Type /Annot +>> +endobj +187 0 obj +<< +/A 389 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [401.318 425.141 407.742 416.054] +/StructParent 35 +/Subtype /Link +/Type /Annot +>> +endobj +188 0 obj +<< +/A 390 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [374.682 365.534 380.978 356.446] +/StructParent 36 +/Subtype /Link +/Type /Annot +>> +endobj +189 0 obj +<< +/A 391 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [423.384 351.334 429.913 342.246] +/StructParent 37 +/Subtype /Link +/Type /Annot +>> +endobj +190 0 obj +<< +/A 392 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [251.201 286.03 257.686 276.942] +/StructParent 38 +/Subtype /Link +/Type /Annot +>> +endobj +191 0 obj +<< +/A 393 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [297.963 679.471 304.28 670.383] +/StructParent 40 +/Subtype /Link +/Type /Annot +>> +endobj +192 0 obj +<< +/A 394 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [315.484 355.759 321.981 346.672] +/StructParent 41 +/Subtype /Link +/Type /Annot +>> +endobj +193 0 obj +<< +/A 395 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [429.538 483.559 435.942 474.472] +/StructParent 43 +/Subtype /Link +/Type /Annot +>> +endobj +194 0 obj +<< +/A 396 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [277.391 455.159 283.804 446.072] +/StructParent 44 +/Subtype /Link +/Type /Annot +>> +endobj +195 0 obj +<< +/A 397 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [485.868 220.726 492.333 211.639] +/StructParent 48 +/Subtype /Link +/Type /Annot +>> +endobj +196 0 obj +<< +/A 398 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [315.947 464.987 322.296 455.9] +/StructParent 50 +/Subtype /Link +/Type /Annot +>> +endobj +197 0 obj +<< +/A 399 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [495.366 551.671 501.874 542.583] +/StructParent 52 +/Subtype /Link +/Type /Annot +>> +endobj +198 0 obj +<< +/A 400 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [259.281 523.271 265.528 514.183] +/StructParent 53 +/Subtype /Link +/Type /Annot +>> +endobj +199 0 obj +<< +/A 401 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [492.969 665.271 499.332 656.183] +/StructParent 55 +/Subtype /Link +/Type /Annot +>> +endobj +200 0 obj +<< +/A 402 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 703.828 89.4144 691.429] +/StructParent 58 +/Subtype /Link +/Type /Annot +>> +endobj +201 0 obj +<< +/A 403 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 677.828 89.4144 665.429] +/StructParent 59 +/Subtype /Link +/Type /Annot +>> +endobj +202 0 obj +<< +/A 404 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 547.828 89.4144 535.429] +/StructParent 60 +/Subtype /Link +/Type /Annot +>> +endobj +203 0 obj +<< +/A 405 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 534.828 89.4144 522.429] +/StructParent 61 +/Subtype /Link +/Type /Annot +>> +endobj +204 0 obj +<< +/A 406 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 521.828 89.4144 509.429] +/StructParent 62 +/Subtype /Link +/Type /Annot +>> +endobj +205 0 obj +<< +/A 407 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 495.828 89.4144 483.429] +/StructParent 63 +/Subtype /Link +/Type /Annot +>> +endobj +206 0 obj +<< +/A 408 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 404.828 89.4144 392.429] +/StructParent 64 +/Subtype /Link +/Type /Annot +>> +endobj +207 0 obj +<< +/A 409 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 391.828 89.4144 379.429] +/StructParent 65 +/Subtype /Link +/Type /Annot +>> +endobj +208 0 obj +<< +/A 410 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 378.828 89.4144 366.429] +/StructParent 66 +/Subtype /Link +/Type /Annot +>> +endobj +209 0 obj +<< +/A 411 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 365.828 93.3694 353.429] +/StructParent 67 +/Subtype /Link +/Type /Annot +>> +endobj +210 0 obj +<< +/A 412 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 352.828 93.33 340.429] +/StructParent 68 +/Subtype /Link +/Type /Annot +>> +endobj +211 0 obj +<< +/A 413 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 339.828 93.6608 327.429] +/StructParent 69 +/Subtype /Link +/Type /Annot +>> +endobj +212 0 obj +<< +/A 414 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 287.828 93.5409 275.429] +/StructParent 70 +/Subtype /Link +/Type /Annot +>> +endobj +213 0 obj +<< +/A 415 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 274.828 93.239 262.429] +/StructParent 71 +/Subtype /Link +/Type /Annot +>> +endobj +214 0 obj +<< +/A 416 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 248.828 93.5242 236.429] +/StructParent 72 +/Subtype /Link +/Type /Annot +>> +endobj +215 0 obj +<< +/A 417 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 222.828 93.3265 210.429] +/StructParent 73 +/Subtype /Link +/Type /Annot +>> +endobj +216 0 obj +<< +/A 418 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 209.828 93.4962 197.429] +/StructParent 74 +/Subtype /Link +/Type /Annot +>> +endobj +217 0 obj +<< +/A 419 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 170.828 93.4166 158.429] +/StructParent 75 +/Subtype /Link +/Type /Annot +>> +endobj +218 0 obj +<< +/A 420 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 144.828 93.47 132.429] +/StructParent 76 +/Subtype /Link +/Type /Annot +>> +endobj +219 0 obj +<< +/A 421 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 118.828 93.7185 106.429] +/StructParent 77 +/Subtype /Link +/Type /Annot +>> +endobj +220 0 obj +<< +/A 422 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [85.0394 92.8281 93.5374 80.4294] +/StructParent 78 +/Subtype /Link +/Type /Annot +>> +endobj +221 0 obj +<< +/A 423 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 740.558 122.215 728.16] +/StructParent 79 +/Subtype /Link +/Type /Annot +>> +endobj +222 0 obj +<< +/A 424 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 727.558 122.152 715.16] +/StructParent 81 +/Subtype /Link +/Type /Annot +>> +endobj +223 0 obj +<< +/A 425 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 714.558 121.913 702.16] +/StructParent 82 +/Subtype /Link +/Type /Annot +>> +endobj +224 0 obj +<< +/A 426 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 688.558 122.169 676.16] +/StructParent 83 +/Subtype /Link +/Type /Annot +>> +endobj +225 0 obj +<< +/A 427 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 662.558 122.036 650.16] +/StructParent 84 +/Subtype /Link +/Type /Annot +>> +endobj +226 0 obj +<< +/A 428 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 649.558 122.049 637.16] +/StructParent 85 +/Subtype /Link +/Type /Annot +>> +endobj +227 0 obj +<< +/A 429 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 610.558 122.123 598.16] +/StructParent 86 +/Subtype /Link +/Type /Annot +>> +endobj +228 0 obj +<< +/A 430 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 597.558 122.049 585.16] +/StructParent 87 +/Subtype /Link +/Type /Annot +>> +endobj +229 0 obj +<< +/A 431 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 584.558 122.185 572.16] +/StructParent 88 +/Subtype /Link +/Type /Annot +>> +endobj +230 0 obj +<< +/A 432 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 571.558 121.813 559.16] +/StructParent 89 +/Subtype /Link +/Type /Annot +>> +endobj +231 0 obj +<< +/A 433 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 558.558 121.977 546.16] +/StructParent 90 +/Subtype /Link +/Type /Annot +>> +endobj +232 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +233 0 obj +<< +/BaseFont /ELSCMV+Wingdings-Regular +/DescendantFonts 434 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 435 0 R +/Type /Font +>> +endobj +234 0 obj +<< +/BaseFont /EFZRMV+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 436 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 437 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +235 0 obj +<< +/BaseFont /UQZJCP+MyriadPro-Light +/Encoding 438 0 R +/FirstChar 31 +/FontDescriptor 439 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 440 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +236 0 obj +<< +/BaseFont /ZXSXUF+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 441 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 442 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +237 0 obj +<< +/BaseFont /GAAIOR+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 443 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 444 0 R +/Type /Font +/Widths [212] +>> +endobj +238 0 obj +<< +/BaseFont /SXECAT+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 445 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 446 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +239 0 obj +<< +/BaseFont /KCSMSJ+Wingdings-Regular +/DescendantFonts 447 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 448 0 R +/Type /Font +>> +endobj +240 0 obj +<< +/K [449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R +465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R +481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R +497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R +513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R +529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R 543 0 R 544 0 R +545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 557 0 R 558 0 R 559 0 R 560 0 R +561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R +577 0 R 578 0 R 579 0 R 580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R +593 0 R 594 0 R 595 0 R 596 0 R 597 0 R 598 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R +609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R +625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R +641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R] +/P 119 0 R +/S /Story +>> +endobj +241 0 obj +<< +/K 654 0 R +/P 119 0 R +/S /Story +>> +endobj +242 0 obj +<< +/K 655 0 R +/P 119 0 R +/S /Story +>> +endobj +243 0 obj +<< +/K 656 0 R +/P 119 0 R +/S /Story +>> +endobj +244 0 obj +<< +/K 657 0 R +/P 119 0 R +/S /Story +>> +endobj +245 0 obj +<< +/K [658 0 R 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R +674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R +690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R +706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R +722 0 R] +/P 119 0 R +/S /Story +>> +endobj +246 0 obj +[723 0 R 449 0 R 450 0 R 451 0 R 451 0 R 724 0 R 451 0 R 451 0 R 452 0 R 725 0 R 452 0 R 726 0 R 452 0 R 452 0 R 452 0 R 452 0 R +452 0 R 452 0 R 453 0 R 454 0 R 454 0 R 454 0 R 454 0 R 454 0 R 455 0 R 455 0 R 727 0 R 455 0 R 455 0 R 455 0 R 455 0 R 455 0 R +455 0 R 455 0 R 456 0 R 456 0 R 456 0 R 456 0 R 728 0 R 456 0 R] +endobj +247 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 458 0 R 459 0 R 459 0 R 729 0 R 459 0 R 460 0 R 460 0 R 460 0 R +730 0 R 460 0 R 461 0 R 731 0 R 461 0 R 462 0 R 732 0 R 462 0 R 463 0 R 464 0 R 465 0 R 467 0 R 467 0 R 467 0 R 733 0 R 467 0 R +467 0 R 468 0 R 469 0 R 469 0 R 469 0 R 734 0 R 469 0 R 469 0 R 470 0 R 735 0 R 470 0 R 470 0 R 470 0 R 736 0 R 470 0 R 737 0 R +470 0 R 470 0 R 470 0 R 470 0 R 470 0 R 738 0 R 470 0 R 470 0 R 470 0 R 470 0 R 470 0 R 470 0 R 470 0 R 471 0 R 471 0 R 654 0 R +739 0 R 654 0 R 654 0 R 654 0 R 654 0 R 654 0 R] +endobj +248 0 obj +<< +/K << +/Obj 153 0 R +/Pg 10 0 R +/Type /OBJR +>> +/P 740 0 R +/S /Link +>> +endobj +249 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 472 0 R 741 0 R 472 0 R 742 0 R 472 0 R 472 0 R 472 0 R 743 0 R 472 0 R 472 0 R +472 0 R 744 0 R 472 0 R 472 0 R 472 0 R 472 0 R 472 0 R 473 0 R 473 0 R 473 0 R 473 0 R 473 0 R 474 0 R 474 0 R 474 0 R 474 0 R +475 0 R 476 0 R 476 0 R 476 0 R 476 0 R 745 0 R 476 0 R 746 0 R 747 0 R 748 0 R 749 0 R 749 0 R 750 0 R 749 0 R 749 0 R 749 0 R +749 0 R 751 0 R 752 0 R 753 0 R 754 0 R 754 0 R 755 0 R 754 0 R 754 0 R 754 0 R 754 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R +759 0 R 759 0 R 761 0 R 759 0 R 762 0 R 759 0 R 759 0 R] +endobj +250 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R 768 0 R 769 0 R 768 0 R 768 0 R +770 0 R 768 0 R 768 0 R 768 0 R 768 0 R 771 0 R 772 0 R 773 0 R 774 0 R 774 0 R 774 0 R 775 0 R 776 0 R 777 0 R 778 0 R 779 0 R +780 0 R 780 0 R 780 0 R 780 0 R 781 0 R 780 0 R 780 0 R 780 0 R 780 0 R 780 0 R 780 0 R 478 0 R 479 0 R 479 0 R 479 0 R 479 0 R +479 0 R 480 0 R 480 0 R 480 0 R 480 0 R 481 0 R 782 0 R 481 0 R 481 0 R 481 0 R 783 0 R 481 0 R 481 0 R 481 0 R 482 0 R 482 0 R +482 0 R 482 0 R 784 0 R 482 0 R 785 0 R 482 0 R 482 0 R 482 0 R 655 0 R 655 0 R 655 0 R 655 0 R 655 0 R 655 0 R 655 0 R] +endobj +251 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 482 0 R +786 0 R 482 0 R 482 0 R 482 0 R 482 0 R 482 0 R 482 0 R 482 0 R 483 0 R 787 0 R 483 0 R 483 0 R 483 0 R 788 0 R 483 0 R 483 0 R +484 0 R 789 0 R 484 0 R 484 0 R 484 0 R 484 0 R 485 0 R 790 0 R 485 0 R 791 0 R 485 0 R 486 0 R 486 0 R 486 0 R 486 0 R 486 0 R +486 0 R 487 0 R 792 0 R 793 0 R 794 0 R 794 0 R 794 0 R 795 0 R 796 0 R 797 0 R 797 0 R 797 0 R 798 0 R 799 0 R 800 0 R 800 0 R +800 0 R 801 0 R 802 0 R 803 0 R 803 0 R 803 0 R 804 0 R 803 0 R 803 0 R 803 0 R] +endobj +252 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 489 0 R 490 0 R 490 0 R 490 0 R 490 0 R 805 0 R +490 0 R 490 0 R 806 0 R 490 0 R 490 0 R 490 0 R 490 0 R 491 0 R 492 0 R 492 0 R 492 0 R 492 0 R 492 0 R 492 0 R 492 0 R 492 0 R +492 0 R 493 0 R 493 0 R 493 0 R 807 0 R 493 0 R 494 0 R 494 0 R 494 0 R 494 0 R 494 0 R 494 0 R 495 0 R 495 0 R 808 0 R 495 0 R +495 0 R 495 0 R 809 0 R 495 0 R 495 0 R 496 0 R 496 0 R 496 0 R 496 0 R 496 0 R 496 0 R 497 0 R 497 0 R 497 0 R 497 0 R 810 0 R +497 0 R 498 0 R 498 0 R 811 0 R 498 0 R] +endobj +253 0 obj +<< +/K << +/Obj 168 0 R +/Pg 14 0 R +/Type /OBJR +>> +/P 812 0 R +/S /Link +>> +endobj +254 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 498 0 R 498 0 R 498 0 R 498 0 R 498 0 R 813 0 R 498 0 R 498 0 R 499 0 R 499 0 R 499 0 R +499 0 R 499 0 R 499 0 R 500 0 R 814 0 R 815 0 R 816 0 R 817 0 R 816 0 R 816 0 R 816 0 R 818 0 R 819 0 R 820 0 R 820 0 R 820 0 R +820 0 R 502 0 R 821 0 R 822 0 R 823 0 R 823 0 R 823 0 R 824 0 R 823 0 R 504 0 R 505 0 R 505 0 R 825 0 R 505 0 R 826 0 R 505 0 R +506 0 R 827 0 R 506 0 R 507 0 R 828 0 R 829 0 R 830 0 R 831 0 R 830 0 R 830 0 R 830 0 R 832 0 R 830 0 R 833 0 R 834 0 R 835 0 R +836 0 R 835 0 R 837 0 R 835 0 R 835 0 R 835 0 R] +endobj +255 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 838 0 R 839 0 R 840 0 R 841 0 R 840 0 R 840 0 R 840 0 R 840 0 R 842 0 R 843 0 R +844 0 R 845 0 R 846 0 R 847 0 R 844 0 R 844 0 R 844 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 853 0 R 850 0 R 850 0 R 850 0 R +850 0 R 850 0 R 854 0 R 855 0 R 856 0 R 857 0 R 858 0 R 856 0 R 856 0 R 856 0 R 856 0 R 856 0 R 856 0 R 856 0 R 856 0 R 856 0 R +859 0 R 856 0 R 856 0 R 860 0 R 856 0 R 856 0 R 856 0 R 861 0 R 856 0 R 856 0 R 862 0 R 863 0 R 864 0 R 865 0 R 864 0 R 864 0 R +864 0 R 864 0 R 864 0 R 866 0 R 864 0 R 864 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R 869 0 R 872 0 R 869 0 R 873 0 R 869 0 R +509 0 R 509 0 R 874 0 R 509 0 R 875 0 R 876 0 R 877 0 R] +endobj +256 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 878 0 R 879 0 R 880 0 R 880 0 R 880 0 R 881 0 R 882 0 R 883 0 R 883 0 R +884 0 R 885 0 R 886 0 R 887 0 R 888 0 R 889 0 R 889 0 R 890 0 R 891 0 R 892 0 R 892 0 R 892 0 R 511 0 R 511 0 R 511 0 R 893 0 R +511 0 R 511 0 R 511 0 R 894 0 R 511 0 R 511 0 R 895 0 R 511 0 R 511 0 R 512 0 R 896 0 R 512 0 R 512 0 R 897 0 R 512 0 R 512 0 R +512 0 R 898 0 R 512 0 R 512 0 R 899 0 R 512 0 R 513 0 R 513 0 R 513 0 R 513 0 R 513 0 R 513 0 R 513 0 R 900 0 R 513 0 R 513 0 R +901 0 R 513 0 R 513 0 R 513 0 R 513 0 R 513 0 R 514 0 R 902 0 R 903 0 R 904 0 R 904 0 R 905 0 R 906 0 R 907 0 R 908 0 R 907 0 R +907 0 R 656 0 R 656 0 R 656 0 R 656 0 R 656 0 R 656 0 R 656 0 R] +endobj +257 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 909 0 R 910 0 R 911 0 R 911 0 R 912 0 R 913 0 R 914 0 R 914 0 R +516 0 R 915 0 R 916 0 R 917 0 R 917 0 R 518 0 R 519 0 R 520 0 R 520 0 R 520 0 R 520 0 R 521 0 R 918 0 R 521 0 R 521 0 R 521 0 R +521 0 R 521 0 R 919 0 R 521 0 R 521 0 R 920 0 R 521 0 R 522 0 R 522 0 R 522 0 R 522 0 R 522 0 R 522 0 R 921 0 R 522 0 R 523 0 R +523 0 R 922 0 R 523 0 R 523 0 R 523 0 R 923 0 R 523 0 R 924 0 R 925 0 R 926 0 R 926 0 R 927 0 R 928 0 R 929 0 R 929 0 R 930 0 R +931 0 R 932 0 R 525 0 R 933 0 R 525 0 R 525 0 R 934 0 R 525 0 R 935 0 R 525 0 R 525 0 R 525 0 R] +endobj +258 0 obj +<< +/K << +/Obj 169 0 R +/Pg 18 0 R +/Type /OBJR +>> +/P 936 0 R +/S /Link +>> +endobj +259 0 obj +<< +/K << +/Obj 170 0 R +/Pg 18 0 R +/Type /OBJR +>> +/P 937 0 R +/S /Link +>> +endobj +260 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 526 0 R 938 0 R 526 0 R 526 0 R +939 0 R 526 0 R 526 0 R 527 0 R 940 0 R 527 0 R 941 0 R 527 0 R 527 0 R 527 0 R 527 0 R 528 0 R 942 0 R 528 0 R 528 0 R 529 0 R +530 0 R 530 0 R 530 0 R 530 0 R 530 0 R 530 0 R 530 0 R 530 0 R 531 0 R 531 0 R 531 0 R 531 0 R 943 0 R 531 0 R 531 0 R 531 0 R +531 0 R 531 0 R 944 0 R 531 0 R 532 0 R 945 0 R 532 0 R 532 0 R 532 0 R 532 0 R 533 0 R 946 0 R 533 0 R 533 0 R 533 0 R 947 0 R +533 0 R 534 0 R 534 0 R 948 0 R 534 0 R 534 0 R 949 0 R] +endobj +261 0 obj +<< +/K << +/Obj 171 0 R +/Pg 19 0 R +/Type /OBJR +>> +/P 950 0 R +/S /Link +>> +endobj +262 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 534 0 R 951 0 R 534 0 R 534 0 R 534 0 R 534 0 R 534 0 R 534 0 R 535 0 R +535 0 R 952 0 R 535 0 R 536 0 R 537 0 R 537 0 R 953 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 538 0 R 954 0 R +955 0 R 956 0 R 956 0 R 957 0 R 958 0 R 959 0 R 959 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 962 0 R 962 0 R 540 0 R 964 0 R +965 0 R 966 0 R 966 0 R 966 0 R 966 0 R 542 0 R 543 0 R 543 0 R 967 0 R 543 0 R 544 0 R 544 0 R 968 0 R 544 0 R 544 0 R 544 0 R] +endobj +263 0 obj +<< +/K << +/Obj 172 0 R +/Pg 20 0 R +/Type /OBJR +>> +/P 969 0 R +/S /Link +>> +endobj +264 0 obj +<< +/K << +/Obj 173 0 R +/Pg 20 0 R +/Type /OBJR +>> +/P 970 0 R +/S /Link +>> +endobj +265 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +545 0 R 545 0 R 545 0 R 546 0 R 546 0 R 546 0 R 971 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R 972 0 R +546 0 R 546 0 R 973 0 R 546 0 R 974 0 R 546 0 R 975 0 R 546 0 R 546 0 R 546 0 R 546 0 R 976 0 R 546 0 R 977 0 R 546 0 R 978 0 R +546 0 R 547 0 R 979 0 R 547 0 R 980 0 R 547 0 R 981 0 R 547 0 R 547 0 R 982 0 R 547 0 R 548 0 R 983 0 R 548 0 R 548 0 R 984 0 R +548 0 R 548 0 R 549 0 R 549 0 R 549 0 R 549 0 R 549 0 R 549 0 R 549 0 R 549 0 R 549 0 R 549 0 R 549 0 R 549 0 R 550 0 R 550 0 R +985 0 R 550 0 R 550 0 R 550 0 R 550 0 R 657 0 R 986 0 R 657 0 R 987 0 R 657 0 R 657 0 R 657 0 R 657 0 R] +endobj +266 0 obj +<< +/K << +/Obj 174 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 988 0 R +/S /Link +>> +endobj +267 0 obj +<< +/K << +/Obj 175 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 989 0 R +/S /Link +>> +endobj +268 0 obj +<< +/K << +/Obj 176 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 990 0 R +/S /Link +>> +endobj +269 0 obj +<< +/K << +/Obj 177 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 991 0 R +/S /Link +>> +endobj +270 0 obj +<< +/K << +/Obj 178 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 992 0 R +/S /Link +>> +endobj +271 0 obj +<< +/K << +/Obj 179 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 993 0 R +/S /Link +>> +endobj +272 0 obj +<< +/K << +/Obj 180 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 994 0 R +/S /Link +>> +endobj +273 0 obj +<< +/K << +/Obj 181 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 995 0 R +/S /Link +>> +endobj +274 0 obj +<< +/K << +/Obj 182 0 R +/Pg 21 0 R +/Type /OBJR +>> +/P 996 0 R +/S /Link +>> +endobj +275 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 551 0 R 997 0 R 551 0 R +551 0 R 998 0 R 551 0 R 552 0 R 552 0 R 552 0 R 552 0 R 553 0 R 999 0 R 1000 0 R 1001 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1004 0 R +1005 0 R 1006 0 R 1007 0 R 1008 0 R 1007 0 R 1009 0 R 1010 0 R 1011 0 R 1011 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1014 0 R 1014 0 R 1014 0 R +1014 0 R 1015 0 R 1016 0 R 1017 0 R 1017 0 R 1017 0 R 555 0 R 556 0 R 556 0 R 556 0 R 556 0 R 556 0 R 556 0 R 556 0 R 557 0 R 557 0 R +1018 0 R 558 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1021 0 R 1021 0 R 1021 0 R 1023 0 R 1021 0 R 1021 0 R 1021 0 R] +endobj +276 0 obj +<< +/K [<< +/Obj 183 0 R +/Pg 22 0 R +/Type /OBJR +>> 1018 0 R] +/P 557 0 R +/S /Link +>> +endobj +277 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 1024 0 R 1025 0 R 1026 0 R +1026 0 R 1026 0 R 1026 0 R 1027 0 R 1026 0 R 560 0 R 561 0 R 562 0 R 562 0 R 562 0 R 1028 0 R 562 0 R 562 0 R 562 0 R 1029 0 R 562 0 R +563 0 R 563 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1032 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1036 0 R 1038 0 R 1036 0 R 1039 0 R 1036 0 R +1040 0 R 1041 0 R 1042 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1045 0 R 565 0 R 565 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1049 0 R +1051 0 R 1052 0 R 1053 0 R 1054 0 R 1053 0 R 567 0 R 1055 0 R 567 0 R 567 0 R 567 0 R 567 0 R 1056 0 R 567 0 R 568 0 R 568 0 R 568 0 R +1057 0 R 1058 0 R 1059 0 R 1060 0 R 1060 0 R 570 0 R 1061 0 R 570 0 R 570 0 R 570 0 R 571 0 R 571 0 R 571 0 R] +endobj +278 0 obj +<< +/K << +/Obj 184 0 R +/Pg 23 0 R +/Type /OBJR +>> +/P 1062 0 R +/S /Link +>> +endobj +279 0 obj +<< +/K << +/Obj 185 0 R +/Pg 23 0 R +/Type /OBJR +>> +/P 1063 0 R +/S /Link +>> +endobj +280 0 obj +<< +/K << +/Obj 186 0 R +/Pg 23 0 R +/Type /OBJR +>> +/P 1064 0 R +/S /Link +>> +endobj +281 0 obj +<< +/K << +/Obj 187 0 R +/Pg 23 0 R +/Type /OBJR +>> +/P 1065 0 R +/S /Link +>> +endobj +282 0 obj +<< +/K << +/Obj 188 0 R +/Pg 23 0 R +/Type /OBJR +>> +/P 1066 0 R +/S /Link +>> +endobj +283 0 obj +<< +/K << +/Obj 189 0 R +/Pg 23 0 R +/Type /OBJR +>> +/P 1067 0 R +/S /Link +>> +endobj +284 0 obj +<< +/K << +/Obj 190 0 R +/Pg 23 0 R +/Type /OBJR +>> +/P 1068 0 R +/S /Link +>> +endobj +285 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 1069 0 R 1070 0 R 1071 0 R +1071 0 R 1072 0 R 1071 0 R 1073 0 R 1071 0 R 1071 0 R 1074 0 R 1071 0 R 573 0 R 573 0 R 1075 0 R 1076 0 R 1077 0 R 1076 0 R 1076 0 R 1076 0 R +1076 0 R 1076 0 R 1078 0 R 1076 0 R 1076 0 R 1076 0 R 1076 0 R 1079 0 R 1080 0 R 1080 0 R 1080 0 R 1080 0 R 575 0 R 575 0 R 575 0 R 575 0 R +575 0 R 1081 0 R 575 0 R 1082 0 R 575 0 R 575 0 R 575 0 R 575 0 R 575 0 R 575 0 R 575 0 R 575 0 R 575 0 R 1083 0 R 575 0 R 576 0 R +576 0 R 576 0 R 576 0 R 576 0 R 577 0 R 1084 0 R 577 0 R 577 0 R 577 0 R 577 0 R 577 0 R 577 0 R 1085 0 R 577 0 R] +endobj +286 0 obj +<< +/K << +/Obj 191 0 R +/Pg 24 0 R +/Type /OBJR +>> +/P 1086 0 R +/S /Link +>> +endobj +287 0 obj +<< +/K << +/Obj 192 0 R +/Pg 24 0 R +/Type /OBJR +>> +/P 1087 0 R +/S /Link +>> +endobj +288 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 578 0 R 1088 0 R +1089 0 R 1090 0 R 1090 0 R 1090 0 R 1091 0 R 1092 0 R 1093 0 R 1093 0 R 1094 0 R 1095 0 R 1096 0 R 1096 0 R 1096 0 R 1096 0 R 1096 0 R 1096 0 R +580 0 R 581 0 R 581 0 R 581 0 R 581 0 R 581 0 R 581 0 R 1097 0 R 581 0 R 581 0 R 581 0 R 1098 0 R 581 0 R 582 0 R 1099 0 R 582 0 R +582 0 R 582 0 R 582 0 R 582 0 R 582 0 R 583 0 R 583 0 R 583 0 R 583 0 R 583 0 R 584 0 R 584 0 R 585 0 R 585 0 R 585 0 R 586 0 R +1100 0 R 1101 0 R 1102 0 R 1102 0 R 1102 0 R 1103 0 R 1102 0 R 1104 0 R 1105 0 R 1106 0 R 1106 0 R 1107 0 R 1106 0 R 1106 0 R 1106 0 R] +endobj +289 0 obj +<< +/K << +/Obj 193 0 R +/Pg 25 0 R +/Type /OBJR +>> +/P 1108 0 R +/S /Link +>> +endobj +290 0 obj +<< +/K << +/Obj 194 0 R +/Pg 25 0 R +/Type /OBJR +>> +/P 1109 0 R +/S /Link +>> +endobj +291 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 1110 0 R +1111 0 R 1112 0 R 1112 0 R 1112 0 R 588 0 R 1113 0 R 1114 0 R 1115 0 R 1116 0 R 1115 0 R 1115 0 R 1115 0 R 1115 0 R 590 0 R 591 0 R 591 0 R +1117 0 R 591 0 R 1118 0 R 591 0 R 1119 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1121 0 R 1121 0 R 1121 0 R 1121 0 R +1121 0 R 1121 0 R 1121 0 R 1127 0 R 1128 0 R 1129 0 R 1130 0 R 1129 0 R 1129 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R +1133 0 R 1133 0 R 1133 0 R 1138 0 R 1139 0 R 1140 0 R 1140 0 R 1141 0 R 1142 0 R 1143 0 R 1140 0 R 1144 0 R 1140 0 R 1145 0 R 1146 0 R 1147 0 R +1148 0 R 1147 0 R 1147 0 R 1147 0 R 1149 0 R 1147 0 R] +endobj +292 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 594 0 R 1150 0 R 1151 0 R 1152 0 R 1152 0 R 1152 0 R 1152 0 R 1152 0 R 1152 0 R 596 0 R +597 0 R 597 0 R 597 0 R 598 0 R 598 0 R 1153 0 R 598 0 R 598 0 R 598 0 R 598 0 R 598 0 R 598 0 R 598 0 R 599 0 R 599 0 R 1154 0 R +1155 0 R 1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R 1163 0 R 1162 0 R 1164 0 R 1165 0 R 1166 0 R 601 0 R 601 0 R 1167 0 R +601 0 R 1168 0 R 601 0 R 601 0 R 602 0 R 602 0 R 1169 0 R 602 0 R 602 0 R 602 0 R 602 0 R 603 0 R 1170 0 R 1171 0 R 1172 0 R 1172 0 R] +endobj +293 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +1173 0 R 1174 0 R 1175 0 R 1175 0 R 1175 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1178 0 R 1178 0 R 605 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R +1181 0 R 1181 0 R 607 0 R 608 0 R 608 0 R 609 0 R 609 0 R 1183 0 R 609 0 R 610 0 R 1184 0 R 610 0 R 1185 0 R 1186 0 R 1187 0 R 1188 0 R +1187 0 R 1187 0 R 1187 0 R 1187 0 R 1189 0 R 1187 0 R 1187 0 R 1187 0 R 1187 0 R 1187 0 R 1190 0 R 1187 0 R 1187 0 R 1187 0 R 1187 0 R 1187 0 R +1187 0 R 1191 0 R 1187 0 R 1192 0 R 1193 0 R 1194 0 R 1194 0 R 1194 0 R 1194 0 R 1194 0 R 1195 0 R 1194 0 R 1194 0 R 1194 0 R 1194 0 R 1194 0 R +1194 0 R 1194 0 R] +endobj +294 0 obj +<< +/K << +/Obj 195 0 R +/Pg 28 0 R +/Type /OBJR +>> +/P 1196 0 R +/S /Link +>> +endobj +295 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 612 0 R 1197 0 R 1198 0 R 1199 0 R 1199 0 R 1200 0 R 1201 0 R 1202 0 R 1202 0 R 1202 0 R 1203 0 R 1202 0 R 614 0 R 1204 0 R +1205 0 R 1206 0 R 1206 0 R 616 0 R 617 0 R 617 0 R 617 0 R 617 0 R 1207 0 R 617 0 R 617 0 R 1208 0 R 617 0 R 617 0 R 617 0 R 1209 0 R +617 0 R 618 0 R 1210 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 619 0 R 1211 0 R 619 0 R 619 0 R +619 0 R 619 0 R 1212 0 R 619 0 R 619 0 R 620 0 R 620 0 R 620 0 R 620 0 R 620 0 R 621 0 R 621 0 R] +endobj +296 0 obj +<< +/K << +/Obj 196 0 R +/Pg 29 0 R +/Type /OBJR +>> +/P 1213 0 R +/S /Link +>> +endobj +297 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 621 0 R 621 0 R 622 0 R 622 0 R +622 0 R 1214 0 R 622 0 R 1215 0 R 622 0 R 622 0 R 622 0 R 623 0 R 623 0 R 623 0 R 1216 0 R 623 0 R 623 0 R 1217 0 R 623 0 R 623 0 R +623 0 R 1218 0 R 623 0 R 624 0 R 624 0 R 624 0 R 624 0 R 1219 0 R 624 0 R 624 0 R 624 0 R 1220 0 R 624 0 R 625 0 R 625 0 R 625 0 R +625 0 R 625 0 R 625 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1226 0 R 1228 0 R 1229 0 R 1230 0 R 1230 0 R 1231 0 R +1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1242 0 R 1244 0 R 1245 0 R +1246 0 R 1247 0 R 1246 0 R 1248 0 R 1249 0 R 1250 0 R 1250 0 R] +endobj +298 0 obj +<< +/K << +/Obj 197 0 R +/Pg 30 0 R +/Type /OBJR +>> +/P 1251 0 R +/S /Link +>> +endobj +299 0 obj +<< +/K << +/Obj 198 0 R +/Pg 30 0 R +/Type /OBJR +>> +/P 1252 0 R +/S /Link +>> +endobj +300 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 627 0 R 627 0 R 628 0 R 1253 0 R 628 0 R 628 0 R 628 0 R 1254 0 R 628 0 R +629 0 R 1255 0 R 629 0 R 629 0 R 629 0 R 630 0 R 1256 0 R 1257 0 R 1258 0 R 1258 0 R 1258 0 R 1259 0 R 1260 0 R 1261 0 R 1262 0 R 1261 0 R +632 0 R 1263 0 R 1264 0 R 1265 0 R 1265 0 R 1266 0 R 1265 0 R 1267 0 R 1268 0 R 1269 0 R 1269 0 R 1270 0 R 1269 0 R] +endobj +301 0 obj +<< +/K << +/Obj 199 0 R +/Pg 31 0 R +/Type /OBJR +>> +/P 1271 0 R +/S /Link +>> +endobj +302 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 634 0 R 636 0 R 636 0 R +637 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R +651 0 R 652 0 R 653 0 R] +endobj +303 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 658 0 R 1272 0 R 661 0 R 661 0 R 1273 0 R 663 0 R 663 0 R 663 0 R 663 0 R 663 0 R 663 0 R 663 0 R 663 0 R +663 0 R 663 0 R 1274 0 R 665 0 R 1275 0 R 667 0 R 1276 0 R 669 0 R 669 0 R 1277 0 R 671 0 R 671 0 R 671 0 R 671 0 R 1278 0 R 671 0 R +671 0 R 671 0 R 1279 0 R 673 0 R 1280 0 R 675 0 R 1281 0 R 677 0 R 1282 0 R 1282 0 R 679 0 R 1283 0 R 1283 0 R 681 0 R 1284 0 R 1284 0 R +683 0 R 1285 0 R 683 0 R 683 0 R 683 0 R 1286 0 R 1286 0 R 685 0 R 1287 0 R 1287 0 R 687 0 R 687 0 R 687 0 R 1288 0 R 1288 0 R 689 0 R +1289 0 R 689 0 R 1290 0 R 1290 0 R 691 0 R 1291 0 R 1291 0 R 693 0 R 693 0 R 1292 0 R 693 0 R 1293 0 R 1293 0 R 695 0 R 695 0 R 1294 0 R +1294 0 R 697 0 R 697 0 R 1295 0 R 1295 0 R 699 0 R 699 0 R 1296 0 R 1296 0 R 701 0 R] +endobj +304 0 obj +<< +/K << +/Obj 200 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 660 0 R +/S /Link +>> +endobj +305 0 obj +<< +/K << +/Obj 201 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 662 0 R +/S /Link +>> +endobj +306 0 obj +<< +/K << +/Obj 202 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 664 0 R +/S /Link +>> +endobj +307 0 obj +<< +/K << +/Obj 203 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 666 0 R +/S /Link +>> +endobj +308 0 obj +<< +/K << +/Obj 204 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 668 0 R +/S /Link +>> +endobj +309 0 obj +<< +/K << +/Obj 205 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 670 0 R +/S /Link +>> +endobj +310 0 obj +<< +/K << +/Obj 206 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 672 0 R +/S /Link +>> +endobj +311 0 obj +<< +/K << +/Obj 207 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 674 0 R +/S /Link +>> +endobj +312 0 obj +<< +/K << +/Obj 208 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 676 0 R +/S /Link +>> +endobj +313 0 obj +<< +/K << +/Obj 209 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 678 0 R +/S /Link +>> +endobj +314 0 obj +<< +/K << +/Obj 210 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 680 0 R +/S /Link +>> +endobj +315 0 obj +<< +/K << +/Obj 211 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 682 0 R +/S /Link +>> +endobj +316 0 obj +<< +/K << +/Obj 212 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 684 0 R +/S /Link +>> +endobj +317 0 obj +<< +/K << +/Obj 213 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 686 0 R +/S /Link +>> +endobj +318 0 obj +<< +/K << +/Obj 214 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 688 0 R +/S /Link +>> +endobj +319 0 obj +<< +/K << +/Obj 215 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 690 0 R +/S /Link +>> +endobj +320 0 obj +<< +/K << +/Obj 216 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 692 0 R +/S /Link +>> +endobj +321 0 obj +<< +/K << +/Obj 217 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 694 0 R +/S /Link +>> +endobj +322 0 obj +<< +/K << +/Obj 218 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 696 0 R +/S /Link +>> +endobj +323 0 obj +<< +/K << +/Obj 219 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 698 0 R +/S /Link +>> +endobj +324 0 obj +<< +/K << +/Obj 220 0 R +/Pg 33 0 R +/Type /OBJR +>> +/P 700 0 R +/S /Link +>> +endobj +325 0 obj +<< +/K << +/Obj 221 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 702 0 R +/S /Link +>> +endobj +326 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 1297 0 R 1297 0 R 703 0 R 1298 0 R 1298 0 R 705 0 R +1299 0 R 1299 0 R 707 0 R 707 0 R 1300 0 R 1300 0 R 709 0 R 709 0 R 1301 0 R 1301 0 R 711 0 R 1302 0 R 1302 0 R 713 0 R 1303 0 R 713 0 R +713 0 R 1304 0 R 1304 0 R 715 0 R 1305 0 R 1305 0 R 717 0 R 1306 0 R 1306 0 R 719 0 R 1307 0 R 1307 0 R 721 0 R 1308 0 R 1308 0 R 1309 0 R +1308 0 R] +endobj +327 0 obj +<< +/K << +/Obj 222 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 704 0 R +/S /Link +>> +endobj +328 0 obj +<< +/K << +/Obj 223 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 706 0 R +/S /Link +>> +endobj +329 0 obj +<< +/K << +/Obj 224 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 708 0 R +/S /Link +>> +endobj +330 0 obj +<< +/K << +/Obj 225 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 710 0 R +/S /Link +>> +endobj +331 0 obj +<< +/K << +/Obj 226 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 712 0 R +/S /Link +>> +endobj +332 0 obj +<< +/K << +/Obj 227 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 714 0 R +/S /Link +>> +endobj +333 0 obj +<< +/K << +/Obj 228 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 716 0 R +/S /Link +>> +endobj +334 0 obj +<< +/K << +/Obj 229 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 718 0 R +/S /Link +>> +endobj +335 0 obj +<< +/K << +/Obj 230 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 720 0 R +/S /Link +>> +endobj +336 0 obj +<< +/K << +/Obj 231 0 R +/Pg 34 0 R +/Type /OBJR +>> +/P 722 0 R +/S /Link +>> +endobj +337 0 obj +<< +/Filter /FlateDecode +/Length 8635 +/Length1 13981 +>> +stream +H‰œVyTTçÿÝ·Ì°  €,¾afvTÆ70‚ ²‰3ˆÊ° +‚â‚Q4î Ƙ˜ÖZk”clµÉ“ÚÄZµ!V›£©¦1mL›¤=§µ=Çؤik]èAsZ{òOßo¾íÝûîïû~¿÷=€x"ÊgVY3BÓòÓyä:—šÆw×–#Ÿ(³W,SÖ7÷ît-<¶¦¥kA‡`xÓ è?ãþ‡ ÚWµ„Ue|O1ûZ›ÝM ˜vHtr¼œVð}QÅý§¹?¶µcYÏÎy/­âþÇÜÛÞÙèFÒöM-ã~‡»§K¸C!@ÖM¾_Yìîh^»½w ÈÏ+íêì^6´_æ\rf{æ»–6wI¯?Ïý•ÜOI‘ô dÐZÜ;5\K¯¡Eਂ ãáå·Õg¸áóõ JÂ"ùê½SŒ'D(R@¤ŒóÎ oÆ«Æ-ÍE‡ƒ\ Þ{þûâIQ’uz_?ÿ€AÁ†Ð°‘£Â#"GGEÇÄŽQŒq¦±ñ ‰ã’’SÌ–TkZzFfVvNîø¼ü‚ 'Ú²Ôì¢bÇ”’Ò©Ó¦Ï(›Y^QYU=«f¶ÓU;§nnfÎçsrõ>~QaãÊ]ÎÚúºÿÕ´pQGûâ[yùÔ/Å©Ö€î¹óZ’'Ï^ÒúUáøNÇ_Û6ovm¥h(ºW× ¸3ÕÿÐ}]¢±*Å™aGÆ?0_©dš|)ÊAˆŠÍÉÇÆ'`lÙÌ´,åSZ?Ò*ZFÛhþDÑrzŠ6â­¦´Wg­¡•^Û„?óš=´žÿ°Íø‹wÄs?Ö‚ŽUÌL­Dû½S÷‡®ñÛð8(o”Ê—å«t™ú9ƒßóþ½Ë{}‚Yò +³ç3j/smsoóp+sr#ósz±š1¯d¬ÝÌÛNÞÝ…Œ®…yÜÀœžÇü®e®×0ï+Ye¬‡©¬ ëDeÕLdå²¢2Y]VV\"+ÐèýeÝBù¦¼K‘îJE’*ùH:I Þ/‹o‹ýâq³Ø+.»ÅLÑ*& ÷…O…Aá °OX'Ô µB™  +Bž`L‚N褃´OÝ´‹v0»º©Þ‹ó#f°éYæü)æÿ ÖÂqÖ…÷QÖËaFñïemíf=Ǫ{t†Wà!~jæJ/ÚÆéÁg…Ñ6jdXhˆ!8(pD€¿Ÿ¯^'K¢@0°2ìJ_CŸIm©±˜’{u†gxžË[MðVš_²K#{ð#Cs +ÿ4!Ùbþ£ &õ‰ñªâPZÝMšϵ¢Iv“[i:f³õU;|ƒ1ÚUîô4¤xÅѪéã‹Ý*œÆ(M¶wE¹›\UN“Õt;ÊjºÁÏNùæèî¦o¼SŽW oüsámï!$<ÏbdØ|2ÛO’}Åšhw·ÕÕ«s±¢‰&u€Ù¾Ân²÷™xB“Lj„æïÁÊÑ"ŠÛ4›[ñæ­MŽâ¶§©9¢´—K“M*‡ “Ú¦ &U HŽ°˜•âÖ"‹ù$ òÐ*'1`á©å˜ ö©&ܪƒÌVíÔlõ.Ïó,fž²ìœn:,æT‹ùœÅ\¨…%[ x¾7d6V°q¶¨ +ATÁG^N‹XáÃ!ìEŸþáÆ5dé:²¼°æƒnØìé?öÂz¿×ÇB†¶AÎ^lþÁg£WS‡Rmo¦¾x'u9uì,b΄BçOßÃûD#5”®$Ç*Ó©±’5œ^‰ž@ãdL +©8Ò‰î¨I«7ÈÀ‚K…˜p4„µ!Ú©BÊ_Y-ŽdgûʺòòÝIGŽ1u|±±y•âAÝ"S6IWáôUE“ÙÆo·k7H¬:¡Š÷€‘BÙS±R1NV‹X«ŽCòB˜mØiò°pSèÃÖ`SÉÞ#8‰3©¡P‘T\ÅQ.áT­FB5Š‚eP$*uG¢´Aoš.Ú‰šüªgæêš®^›¥B¡R¾üÉÚã+‹Ë:V¦v¿„,ß=B’‡:::Ê~ÓV„z®Ü[]ý|Òß°¢¥nKãHåó;æ/ݵ&µ^NÓÕv{5 A„´-;@× €¢DU±`]Q0è ‡³…¹ËÝ0«gˆ=Í#s¥šE A +°_óCJ‹ŒbÑA&Ÿ¤q0 (¿X—€ z†ÔêiRpyE¯µ#P`"€É|uôJ'¦±¢ÿƒž³Í·QÅ™Ô#¡ƒYOEûwœªèûv >¤Ê¶ª7¿Ö‘<Ê»‰ÉÔÎäP˧©õÝÊ5ìV¥JX0òÈeÚ†,ˆëY䶘°ž5œÇªWbŠ§`_$ñ¸\f¡8m$1rŠ(j¢³QiÔà–ìHršvT5gÃÿpÕÔ'&?­Þ÷tìhviñŠ?‹$Ä]õ¯‹Ìd*‰zŠˆ‹QEËÔç©;ô({(^c$À_$¨öÒ×Î@6|m* ÊX@™s LX–ˆÕºx-a7²<\äÇ!„¯EÎ.w"„칄‚’«‘±ŒK‹#z\ZDñ¡`IQ€ÚÏHÍÍØ­Óê¨ð´2&I‹´3ÚHý9-@ó1¹ˆäOô÷¾ÛÙ:ñѺ’P[Òbw¿>?9Ú:oMÌG°¤¢òzSÓõ*I*RwÉ›©EíË.ôuÿîð¢S×Ië™@Á’kºN.©¬åŠPhÓÏŸV C("9ÖˆBÊ–:@*u’z©$–§A>ƒƒ¤Åx&\X€•ïf•h_N>¢4hÄMihœî Y $+€Ã!^5TSM·Ñ8/P¶I WQ¼æ +ÿÕ@9Q)Ó¥åð +*ÉøËúm·N5“#ö•þg›Öß¼öé‘ÔÅâ¹½±-»÷mÛë4ö¾·ÿ<°Ál_ó^÷ö?¾’úýƒ©C©ÿàu‹†çüœøÅØ*|x“j¦ÎÁSL &dØ‚XY*ÔVyȃPÉšj^†ù¹,Ì…üiÇx©‰Ý^‰áhÄ \!@}"t¯ +x¶cÉ*TsùÂÔ½¶‹©÷omØ؃Š&&›ÄØÒ…+¶| ¹ü­Éýkÿš8׬l¿‚Ìg'iùsíAç…Á1±Â&,›¸3°ïþÄsõáL­÷É1j'<=›ëÊ6–ܪb\Ŭ†ÁJDSØRÍsÙr/ìá¹¥z:‰æÎÁÑŠ8Ä-A&8ÎblUÏËS|Íað;â(´0ÓÈRQmHô¡0Ô.ÙÅT$Ñët1ZpK4Rƒ‚iúM‚˜*}œ…t–>†Þùú¹§ÓÎlMðÍÙ’¨~­—W'øîÔ_:ëVì¾äÎ"”ÐÛ$®RY®Ë±ºN´”W4¨µ•oÌj_u¨­1hY +³V¥û’8°Åf•²€@Ò™Nœœ=XÌø5S¢\~çü^§'¹É/Ϧ§®hr²¶.IN,†ßf’¼Šf̶iöð °¹³(YÌ°+—Ù9ƒÍÞƒx=…„Œ kÀ†hz2J(Å49:½+!<¶køxëL­Nº}d×1éžš\©™†aµmy„aúœž’w™UPÏÙ3±º˜UGèü¢ d)¨«‹sµ\ WÉ•s9l¬Æ™Eò66Áà8âà9 JµS*/À•è¼­ÔHãyÓ=Ÿ¹@È'/Ð ä7# áÉ#_ IùtÀ±(ón€.dhú(ŸÆù½õõ jžtDScº„Î7u•äU‰¦ÊyáHIxA¤)¡ây6ÏÓkÍu-a6ÇVä:›k{E–—é·?b€1Ûû‰e/Lþ×÷–Ÿ|{²¥ßnfþ¿L¤¿>ÐoWg¥'‰ “Ýi·ÐD–Ú.©)<¼Ioöb²†X¤@SÅAÖàcíœUqJNΕäU¤¶õ9°]ðjõTUÊñùB¤§qÝãŒÁ6}œ|üœ¡Â ï‹O¤ðnüâ-‚6ê%nÐéÓ3½B^ßÂ& @Gáw&+¿AØ—ÃL?ýÚ1ÖÑ÷`œuNrbrþ7X’˜(yx“¤!Á"²ªXÈ¡E„\`ÃH^Q +Š åf˜}˜Ô",rlX†Çõ"¢v 1Î uË2¢†èH×Wøå2|P1–*¨ä(©LFó9Y5®’/AE¬ž¨d‹0×TØÑ%-h9‡f+ݸÚd¾Z\nl³0]ºªrlö¼ª1 cá? +jF"6EtBæ8Ú×1–¢èèø¾C§“ÆßÅGxÞn”ɲƖÑScoCúg{"-þVwm½¹N¨‹¤‰”âX}s×»³¯.³™I*'æ÷Ô‡öŽN×eÿ +S…n<Yî®èéã§_`,~HðDÓN²H.AÀÎàÚ5`Ò!WH/â4¯0à|«€sœè2°‘5C0(’7¼P»º2&((¬ã],s +Ô§ª¢1­ZÀŒnb—¨¤FËO5Žß\ãm­˜ó­ªÎlë.E’ꬻ>×ü¨­vgOðôÌòÉ6úýùêžÐؽ½ oLñ³VE{{ÎYòyß뎗T<¹‘m±uV_<÷ qƒàß*Ì XaáO;u€ë(ELÈÎT ªQØn”C‡4gef¼€ÝydÃ~EÏ®ÚÂEdˆ +óˆ×ḒkÛàˆo]NŒMw†Ç½z¯âÆÖ}>¸µ­cãŽ5ÇÇJ45eð˜K:½|{W„7Yëtá|vîØï#qw°5vX ™V¬Ã±.¢šXžNóà°ø«ø•&P*ädÄg=hÔ!«—*x€ «#ƒÜ`’¢ …ô¹ _‚‰<¡‰Rä^¸„ùp÷ñÆŽO­ZàÐo=ˆ‘ìÀ½ÿh§–“G–U»°÷*˸¿F~¾£ç§Éñ–Á“ˮζ½þRòåMK„½¢êÿhû,Ed>GÉÇGæ<ƒ.>ë©®5FÿüWÿÜÕ\ãZ•Â• úd°>fP|/x€ - ÁgˆF._ ´3ƒ<ÖŠ¤|¶Y‹YEžQH€öhÑ)Ò ‹`*l'žÑ [³§+lÀ'c/EÄ UDyðdDÌÞó#—&¶‡†joý…¾ñ§ì§þ×ú+Wø‹Ýì÷gS™ÏFùÆŠ¶è9u纜¸¶¾ñÃwªÍ–u³£q“¯XߤŒù'>™ÊŒñÕÆeØoÌwé‰Ñ® 8<5Pö +ÄGKÊ‚'‘" +@ZVÏÒh…23r@¦€/a ¤Ê© —¼pH–^¬ø·PK +„‰CwÉötªäŠ,WP5ÞRžN—o DåÜÌŒÆY²×±9à¡ï]-¨ퟸ#¿Ÿ ³3d‘¥5HýéÕ ÛWÛ{½IÔÏߣú°BQ¢‘è%¶¥œÀiJ¡£ ±5 !ŽF ˆï&¦\Žê9`4Ö|?45K Mñl§Å”l.ÚTtP†Œá/ƒ“Gç•ej¦2µ>`®ô`ïÒ«óÞÅ*Ú±tŒ(—K„ÂÊRA̼|)p +?ª„m[XŽBX8§r6&sDÏK„)6P®û…miÿ¦M>¥ÙR·®Z¦vw¼þhjòãñ·^õì\}9}3Ý4»4;éÞ8’ØÖ°~ÏÜØ­¡ÉëSýÖžš›$®[qØg­0P¦„%l»:ÜsõàòïÍôí —­ò»'(T59ü“Mž€×Çš²ßtM¯<1²v_íäiÏ©îá5R2>Tsà¤0ó^ì/#¬„—ð¤K 6'Á¥” èhåìäÆ·B†0èiðçΗoÁñE¾æ{šš”Û,pH˜ÞgM ÐTwôÜ®k,¯M¹œµIòó¦ïæ¶ ÕÒP1ì©-w%k®”¤^œQ›qFˆhÚ«jQbå*æ@;~;ÿÕWñ’{±¨G”c!zž¬›¨;Ûž~ê{Jl $ýûwÊ+:ÿ°¶´1¨*0åžÛmÍ_‹±ÿ Ï¾ðÅ&/¾g1 +Ÿûï¥OÿÍ|çi˜èO÷(X¤’¡6`À[®å”¸£ýk{k«£.»ÔŠ£‹„‘+ØÓUŸ¦š8Äb7]*:ŠÇ]™`“žé…NØÀ 2Xr~·gÁ'¹— ™§וH!è +QGÄ|Ñ/mª®-ñákMGÏ{IíL|òÝW©í]~Nö$].ga³mã`bOûB¹êòñ¬­þ*®ömr§ë#ÁªîÌmó vcï‰üúµˆoÕ¾Ù¾Å%‚;‡šÆ2É>O¶s ¯îhÚ×¼ôg‚gåÂM‹{Âi·âø5C¢ÜÉà>Ç*J™pÙ8ž&q&±È”ÇT´l`V!Ük0XT·¸NÿßèêEî±™à…‹¡ÄÀîGp«SèG°_˜FUB˜F uoIBî_/ßfpºpÿjFZp«Ð‘%kÎÏ'nX‰!{9»ûÙï ¦î‰D²éösÊ‚«W6ž6kY<³EŽgDÍ(,=£§11ð¢Û½AšÏ³7ö‰ã¥ýàu"jøíÉÔþ¯® ¾óJËɯ_8f_1ÝäøŠYwëÑw7_þòhó+·‡.þëyý£kknÏ®ÿë•£ ïPÍ@áw‰:¢+ÝÈ(Q… »$°«°f¨ +‰‡„Ë v‰^Æ• B‡³ºB„Ñ°ù$ˆƒŒ »5ä%©À¢hŸ`µu˜»qº–L«^<5Ä?2wex³fzô7»öÇþYw¦K&‹G¢y£2îÖ²ÓýݧW¾y¹y´Y+Ë^ ˜¼ +ÿe¿êcÚº®øy~¶Æc‡cÀ¸Ž1LpÃr£|´E $ˆ@—À’°5ih‰²ªk«6khǪ¢­²¥,C(š2ibR•­Š¦6ªªlÐÄ´ªŠ²©ííª›¢‚Í~÷½mÑ*mš”'ýtÎý|çëÞ{Îo^¯þõÓ}É’yjR§{]ëýå·¦bÑ¡_üøÊo”Ø´û'{TP4V)söl^/ ‚Ù«¦¿”÷í69K¶qxg]ÜC+šë¸Jí:UŽwFÜU9ô^–Mot\絋ß*Ž”ì 6º­­ýÍÇ䬶oµìûÚÚŵY7žøÿè{®/u!ý$®Üa ÈÚ<Ð DñX´ÄeÉBѧ3:9wS>R¶ §‹w–X²ƒÇèÚäÎû œ.ÈqÄOyl:‰¯–†¶jöº+Aæ«|JŠÍÒk½Wñj)‡ÖÖv5LúæÙêPáÎŽwgïŸÞzúUIÜþÊþëC'¯þì™ßüá¸ÙÈ•víÙ3´«êa“ÁbÛœU4´ç‰šö7Cí½Óñ6»ûÄñ#oî +×=Ïnˆàò'ü¸x—\´#V“Ï‘ÍÈ¡`1 ¼Ê&½dçleJ‰`ÈÏæ­F΄T“7ˆü¤Å2%”(Tò0Þ ‰åj¥¾A¶‰ Œ\?wÁ0ÜäÌçœÖÔ—áÆH“ëqç±÷³!ÐòjÏÞ ã­ïv˜F’Ÿ¶4ûŠü‘IUŠ·vZɹvÆêr9 Tyy +€•¡V.–C\®×¨çªsø W‹ìXè‹D„ÕÎvUri¾©§úX Z¤la¹BÈ¥F·1OÑ—ëÀf“¬ãIî² CCºHomÕùy›m½ÈPM0óP1^a’, Æ’Z¾s)dÞy$ï9ÑôŒG¼uþ— ‹ª¶ô¥>s×[®÷ÿ¾t{ùöαò‡Æåe†ÙÜ wŠo&/¿»ÛR¶eçšN»ö§Þùú¾×ºù·ã§ËR~þçc‰µÁ‚ÍyÉ÷‹‡ w¯0Á}¤›Åë‘3qzÓsžt\–ªXN€Ž8ó{Ý9[Ç<›ú…kUö[ŸÊ~ٵĢZÞ\qaÎŽ¿“` Ìoq*ù¶!`´‚•ðnh+t7“—ˆŒ¾Å©ÔEC@éMû¸ŸJi]2y€ÃûcÐf6fôÑÓŸ¦õKŠ LèÏãv§fA#XÛËÀÖ*XàLl/ƒªŸ¨Ÿ§NE6¬—ÎSœo§“‡ÙEüˆBÌÿhŸ +4ÉLNPf/|ä £=¨ùî°ÖÇpF‰‹Aükx´/0ýu%XŒ ý[ô7 +ÕX‹õ‹/Ä ó?óýFÐ/ßañ ÄB”XHâ¥p%2¹f¤üñEïyøî8|¬Æé=,ÔÀâÅB:`;?³ß¾|XRb`%2Álu±Ââ!,n`-(ßµ|vzCIÿ_À~ÀQàÐŽñï(>föGl2}ÙÞR'âê¦늼Qåì)”É©Ø‹ÍkUâê^ý6°y¦®«ûdb]7²¿j§U{ýLÿ1ÜcM¯L(vË€v¶×aCù`¯LÜ÷ïÓ~ÿ+;%ÃDK_€öƒ^= +|þè³ ·‰R“jªí_Íx?>ÅØÒeð—U~qógÀ‚¶¢ý>(©`ëúJïh˜ÒèœJ—®f`N¥‹™`ó¯Â6+_ëWÀ+>TÁõVnB¾‡¶ /dð×5H?¸?èw¨0Œ­êÄu[ˆ²:ï…©ò?C6`Æ+o†r®àYƒ¹]DÖY¶^yeüŸo!r˜øÜ9­¢à0Ѧ*à=<Ï°ÅæD…½ÿEœ€x€ø¿Ç*(:Iz­|2¡òÊG_½†äV&š\Ws©¼@9«¼>Gã%p[4žíÄLN4*ížÃŒž'3µi¼€þÁj¼þug{þⱶŽžG[‰#'†Žüë&=†t`ãGñœ(At8ACtŒF¨“Ò!zRé{âßÌý*£‚j½åsTE|±ÍÖ¦¬zgev¾X?iÉ®˜Ï +ßßö’89Ù™¦ñ9aÇ …À?UÁà +endstream +endobj +338 0 obj +<< +/Filter /FlateDecode +/Length 7999 +/Length1 11374 +>> +stream +H‰ÄVkTSWþÎ}ä!$$¼ä•p!@H€!Š!|`-Pk /a”‡bµS|ÔÁ¢ÖV[kñ…Õ:ÖZ{A«ÖªõQ;µ­µÚ™:í̬Y³¦ýá™5««kÖªvÂìDWëŒcÿÎInÎÙûœ³Ï·÷þrö†ÕàQ=kvv®!¶p)iþHOUK—¯·Ü=·`V€ÿ®eÙRS_M I—ÕÞ» ‹Ó_ôŠ™$ÿ~Á¢í+‡ý+U +gêh󵶿4}! •‘½‚Rhöòq$Ó¤tt-íß85›ä=d¿iQO‹:‡ °øIníòõ÷²á`m¦õ¦n_WÛê¯7‘¼–Î;ÔÛÓ·t|@(lÖÀ|ï’¶^Ìë¿JòŒ€}²ñî DZ;ÌþŒ»½†v.à8~¦™`²,“üä_»I,8c¤hшM G{Jê¹àšÿl4É ¢B©R‡„j´á:}„Á;!.>!1ÉdN–RR-iéÖL›=+;Ç‘›—ï,pMœT8yJQq‰»Ôã-+¯˜:múŒÊ™Tͪ®©]7gî£õ Í{|þM¾æ»öŒzóØ©“ï¼{ú̹óï]¸øþ¥Ë|øÑ•¯~rý³Ÿ/\±òil>±~ußÆì~ €§6Ñ­yg¯mï_‡V`íÖö›/Y´lñ’žÞ®îOñÅr¬Zø$Ðñ\K[ç+ûv¼º÷Àk÷~¯ŽÉ´ùWôl X¸¯‚QÑQ\x `œùX?Û*Ì2š““cÇǃÑaµA­ÎdøQû`3â{žeG9a·²)PPB5B + qV‹p:QhW$¢Äbâ$"‰N5#q!¤!°"6Ø‘…läÀ\ä!NÀ…‰˜„BLÆ¡%p£xQ†rT`*¦a:f 3ñª0 Õ¨A-f£s0¢ hÄc˜‡Ç1O  >4ã&ú±+± +Oá—xš"´k°ëð ÖS)#Ïb± ›ƒA}/`+¶áE¼„íx;ð +†±»°{°#؇W±ðâ×8„×qoàÞÄQ¼£Ã1ÇÛ8“8…wpïâ ÎâÞÃy\ÀE\Âû¸Œð|ˆ+øã\ŧ¸†Ïp7ð9~‹ßá ,²‡þK~¥XNôYŒ%÷4]èF õ=èEõ Ðñãêöÿa¡óÍB<‰>N¨ÒB¿ƒ²¹…25õæ8YôNlˆóµ6Ì®—²¥ïã²¥[tvæíûZºRLõ”Üz`sÉ÷A•>"z’ÝvܦZà5@•Ë¼××ÙTÖä±ÛÊM2/yÆ'z—y%ïD² ybäЀ¯d-¦¼SvûLAÜriC¹"NžÖÐ ‹’‡L0ÉÓ)s’GÖXcì6SyG™Ývš.Gqü¼‡@ŒéEz“i”ã‡<’Ì|ž + +˜»®^v75γÛhÊ«÷\ì¶,»í²ÝV"­vp +' +)Ow°äŽçJ(…Rº•œ°§¹íJ§ç3ÈÌ1ëÍú4zÝÜæ<"q³pîŽ'PÍþ ÄDŽöÜ¡JÖ©â ²ÐàƬ¬ƒ2­˜¹ +\ÑÜHK|y¥±ëÕ€ÿ›ã³_o µ&øXÿŽm&îjãÖó5¡`B7Ub‘iïpåäåR²Å2XëpVU9“Š-«²ëh\k)!+N*Ö»D-Õ‹dw\l”A*0¥êp11ÖcPEOö2K¬9yÎD–—[àÔç§IÉ +ÂȹôFR¸"{qºô Ud›˜ üjwM&F¬åÞzî¶]˜Ì• +‹ëw.mTpUw_ø5Âñ@q;ÒZµ ÉTG1M|Œ†©rÇ2ã ÔzŠi>cêÈtzшÈeË•:‘PËqä9‹yg~Z“’•Z^)¸È×DMîd-SæFååºbž"2EJª +íï͈ªÍ)ÉŽK1jEŠ-oWn[.̈,žbM7õåêNMI‰Õ‰ŽÿíÁ‰þ¿5»Ÿ½Ò8;?556Ìš[¿óÅî¢îJ££¯/yfQºÅÜçTÃrËbÿ<¬ +¼`¡jüü4A¦z™å¶€©óÜjFYÉ–" ‚h°†X£ÈW—ÇVLÖŠ"óÞ ,eŠÒ@ˆf3ß’f!¿Ò +\wÅ´,Ž.‘Säg1å è¦B™ÈEµ4U¥Šµ+kfZÓ ÛbSížÆ«F£kìJ2Åè +Šø(UåT½Ç®ríª>Y鈷¯ªïsÍ:×½ÁìØ×P¿6F““UR=©#>#LmoŒ/°ü›ëjmê<ÃçûÎwŽÏ±ŸcÛ‰cãÛ‰ãøߎ/8>±MìCî MI€ÐA!,áÒ*zS¡ãDa Z†(]ÅP[mÚi¥Û$ö¯HË4í×`š¶©úc«:³ïØÉ:-òÛ±ä÷yŸËû¸/°ûÍÈ0=òEŠÎeg6ç¦óð‚²íæé­ßÉZ7ÅHc¸5Œ”ªŽRÖÒÀã2ÐHõ­tƒh‚Á0—q> VL)„]mvqøÆýÜÜ©Ýè1îf¸—•B©D+A”ô·ÉË“FV\2÷¶·:좠¯;ðק_ßÆr)à†v¬'üÐv¤“±kÓÝÀ«Ã«ûï{ +‰µ$¤—„—N‚––\ÀÃûìæxrüî§{n¶¾¯êu¥3Å“W«‰´Sj©í80 ìø!z¼úŠÿ̤ ¸MT ¡šYj |q»Ïn£¡öš¶úwøßû# €°ú*ø™æ“kŸQ·Ð¸Qn+UÂíÒGt³0Ÿ€¬/-rSÀ”Ã<‘gé„ÌáÅ’(ËA¹“e,€v§ƒþÏyœ *_®->óì½3Dç—NÍíeñTâ“=ÃàK…±´©!Ïîýú·ÿÝwO|{`d{©-T|é™W ÃÎ{çc•Ðô³­‰ÓL>x­àVž+ÅÍ€†<Çé™6à.s á§–z&¯ÎÉC,Út8‚=¤X>ˆŸ† +bx"¿AêbU1ó›·^YxÒ_â1‚]ßWÍ’ýÅ”¥Æ05i ¶,÷‡Š¿ËÖžÒñDãÄžÒØP&NË rTM‘Íiªì¤E{ÕËú8çæDÎÂñÚ€n»HªlÂ3 ŽtDj£ºR5Xi8ÙptoóOS%½™È–¯È +}ø½¬Jƒiˆ4µ.\ȼ“Ù;`Ðoi:¿ñOz6¡X9‘Ã2ª}ç­•GÉý‘rÒ]>s¶R¬d)n™¾ÿÓÙ¡¼í·P’'Fo8NÒŒO·\¿¯ZMç.u{S7|^¬Ûº¡¾<ý·s;—·a;:?Y½Òªr‘¯"¤rÉ2iª¯¿ûåa€>ƒ¯®ú/µ:Š£ÖþŠ¬îŠ¦îB²Sy=؈ŽõHj>le “{ñ9€(áõÈÔÍ:¥€:ž7ª D +ׄ¥nEþuu‡ã–TS³™æ… j¹’UHMâ´ÎÃ9‹%`µÙ–×ξÁÌí*Ò·:.Ó>ª´[VÕøƒâùÍFqêµË;\è +eôû¢ÛÕ¡èÃ#¹\’q¾ûäåß]Áó¡ÑZÛbûÈ•Cv³Ûç‹žÊƇ¿¥úBÒùÓSj»oûæHï.›ÉëîN I•…wÆßoÜ@‚@w±¢"D¹”wáŒeíØf†ÀÆEÎÆt‚žxã,„´£€? „pÛ Áb€Á‹ˆm\yoSëAíÆCËÆæõdiÑß•þZù`w­$ Ù;É#*ó\£wͪ”ýHE¼28ûñ/TÈG d¯â±R¥1S廘Ӈ{CGæ…ÿê7…˜bK@bßÚçärg½L„K>ÿ&^OP–°Þʚ؀‘‚¯›'àKq§Ù†/{q9ôz¸jJ¦¼éŒ¬kÆ~ «M«I[Ü ÎÖÊw2†¦]Ūzê¿F×cÃÇ€ð@NT"]ö +êß2Ö=rÚç5HYð¾0ØhqóæèøŠ0(ηTo^wyG¼\¸‡‰ªíÑM-ÙžÜÞúÁ¬d¢0ïÚgäŸ);®À¢§ÙÌ4²Äõ’ÉÁZÙ˜ €Ýœ„K :0-þV(9lä Ðî¢a±©ÂÞ&8þÿˉƒ bD6ˆu)ã3eˆo +¾zv­˜`¼4x… ÷HÞ¾C¢9Û,ì;Ø<¼§=â&‘g¯?0#äèw["½•ˆ:uHK7àtý'}[ÜÜð¸2~Îß¾ÚcTD÷—Sðê¬ËÀ’ bØÂ?ü×ek0àeÌfqïyU™^ž™×´7‹ñn"wA"Tò¦Óƒ¸JÔjmÑK<xÑ¥ÝêPƒ7\7â’¤é*ؘ½i«aš«4:í4 ëß|k¡o0*>w4^Þ5óÇWÈÀd§k.ˆûF_Ÿâ fW¦–üåþÃ3]³ªÝ+}ãWs%S-.N|˜“D1‚YZû’ש•òFPp[IGÀɲxÈi+¦M]úNeXY€It0 –rQ;å/2^ð?Ôh})š;ß®Õsœ—@>mè¯-³MÖN¢F•æ[ +>öÌY»ú +¼u¡O€ù¥cyôž{03' bðG.lvÈ3[Z[>¸Ûj섯E‹ŒíÂŒ:´{OXí®¯ 4=cµ9åíË-¤²FFú{OX‡Â¿qõ«O«ÚO b3ó9Iè‰0Q(¥<˜ð‡þCu¹Å¶m_aœ’%êFI¦HY÷{dÝeQ7K¶ìXJ"ÇŽ-ײ«8vê^nK0§µÛdm68…»ÖEoÁ’5]› . ÁÚ>dh¶t†îa2`Á°yØ€¡@ y°¡Svþ”ì¤O–)><ç;çû}¤Z!Ù€¥$ä#”øŽ…£Ì‹¢#!¿^¡HuØÍÃßÆ:hBô€þàôÃdöõ'³Ãôï€g>OwÑ~4´÷¹éƒ4©ÕZU[}||¤^óŸ»´oî½¹‘Y_û;=[ê?5…—°ÑR»ÛïY³†ÚDÿ¯O\=YšïÝ:æHfO]òñrbÃÞ}&— +Rì.¸ÒñH¿§W`¥9ŠÛ¬÷ó@ùQ‚7d­y´.Ju ¼o×Áç¥\›æyCgŠ2§À¹g|»‡mbŸdZ–ÍÔ铉z(òˆ|Õãb´÷ݠ8×üôÓ©K ¡{t¸|þÊwÇÜAëç´àÂ7¼+*zµÝ¯{ª©±)füwÙª½p-· nÒºLÒé2™G,öé¡Ñ#µêêõHb©v¨œä5¦>öÌtŽOk{¿·<ä÷—(qu‘næÏó«_?س,…ú—¬¢ó;Ҙߪǚ)Óÿ"lD˜ˆU|.S@ѽ"Š‘– Íœ¡OÛ½à{‘.ÁÇe‘Èä“Áöžë.lŠP7O`áX,jš3‡û{èO>æúLyj{ù¦Ò©F äõ•üuMº†~ ³Uó€¶~¹½TÌYÀù–Ò3Í”w(ªàí´¶SèÔ)È}–´!µÍäÅÕ–§«g2i§WR§E'¤×PÇû0§„ºL’`È‚B)¬æ7ë sϵëcS ×{ôÑgkû¡ŸIôOüîr°*Ї.,‘ÛzÅ°Æãäþ7¿põÃWûbJ)Õ”K Vº[Xƒ-´¾Š­ÛG=¨È‘:d@/˜1?8:»—W‚Â0l~³‡Íà°¨ò”÷>²ÒСÆõí:¢ÌñAj®â¬ 9õø•¯¯Ccäÿ©LÁÖLÃÆÌO æƒôd¹ )ajçìK mî<‡šzY3ô ê* ¸49Hî5êLÒÖÜq^!ð亴)ëH kÝÀè”Ô Ýy‚Êp±;”…óòÊXüÂ!Þƒì²ì¿ø¾çÝ\G>yæD?mäÒŪ¿y½gÛSH÷m[«‘9¾U ÉhukEâ–ŒîV61Ù¸ñF-—Ð-í‹m fl}v¡F²1 ½?Õ”·uÁÁ™Ÿ…×kšÌêõ@–P@Í ;)hI+Z#ÌÀ‰C;cQ@K]È‹kõawzÝÙ=Ù¢Iùä˾-ui%‡¼Â _˜RStôç{Â×ÃF¿KïˆO]½)ªJ3­|m­»<¸T ÄZŽÅLe©ß“,δk’Ž‘µF*YýËÔñ„«ªÍò±f´•Ž¾4òç7Šu‘¯÷E—ß)ž‹´v|ü>5Œx 2$"©Ö#«,E[/ÏêT>ä•‘ùŽ ýø B M~x7¬»5ãØAÈ¡Hä©k½# +ºŒhŸ»%Ô|5± +µ9,êDˆìG(h½Ï!(Ì “‚|ÑÂðJ2»›¨ä] È[ìz<Þ–.•§w.”o—Ô;GœÉ’÷ßòÍMœe OôÌVN•ª7V~6ʽuGK{“á×–RªÍ öž=Ÿ¡£#éž*c 2Ú‹ÃíÏ'çN¢H!H œùkû÷ÿg¿jcÚ*£ð¹ßЖAK ¥´¥„¤+et²Q:èc…”X'?P–­ÆèB·Ômn¸LCˆq“-1‹1 BL\¿b³™Ìè–“eºÄÅcÔhˆ? K2;Ÿ÷öŠSÑÌè?½ðôžûÞsÎ=ç<ï{ïyÛÛ°xÔ5ºs[øVhG—R±™«tn]¥N¯£ÂJ›¹Ä xÙŽIkNØшŽŽÍ˜Úb Z¼UNó„udØê"•²|Á™W¸·ÃÇ6™ëCs›<[¤M[þHi­>igBÁzc_fX|‰™o¨:Ä.Ÿ¸úÂGíC¯7ï +ºD±Kçj8û~Q[·ÂÌþfjŠø¡´‰óZì:ô«…µ^—Ãf1ãµ¥Oú á¶ü.úO,OD„èjѪ+áb§ÊBWЪ`Š³ {o)ö­1sseóS¾T¿ßå/9±³1º®ÊÖºÚ«\0V;íùzë=Åe>Ç㎘çµÉPA¬zý«÷ŸyÎjˆZÜUnpmÜ«îª0õŽ¿‹tyõ¢EÎÿÖÆf–I8× , Ú!ZiôyJ/Wã6 «Öël¬;щÓVQŽ]«Ì‘~ &ˆ”ÖæSÂ,/ª“S†[fA]®vŽ}¼<{Õrj7ÝÒ’²X£>ka »Æ“ûÒz_û,i]Sòʬµ1N·¬2[ ¶:Wîf÷üáÎþbÓ’Û#*}‰ÿ~¬žqc²Öäz¸Ö;FF /èMnùiæÍÏ}u}y†€Î Ç·Ý$¡€þxäê”Cr z2¾>š…äÊYˆ”³D·'•Cy¦ï:nÈw v˜Ü¢‹ü(¥¹O(%œ¦¸4Oçåšäº)ñã|ã唑¶r2t=üq +qïÒ…<ÐÄ9$¼_û)ŽëÎC¸²¸N +Ӕ侢Y BêÆò…vÆú?)_¡9i†zÄS”’‚”•®Ò Ø 6È%LUøǶ3”‡(­˜poQ½Ÿ3ê9#u£ +Ó3â5ÄDÍ!®<@QñkŒ/QX<£4_N>@CÒ"7#|JuüGŒ)±¹ôÓü³˜· 2ìJ(ŽkfG¼“*#ñ“è]S¸‡ç + ° C'è ~Ôë­‡M¶!¹‚b¬.¢Â¨a†~Àr§q¾ˆø®¡Gùáó/Àê¤ÊIÊ"îA5¶i<3Œ:œ¥Ñßë!–„æ7˜&Å):%¹(Ápvá2%€¥wÏ‚ÊuuŽ3>Q³p<…ø™ïm,gØ'ñÜ4â#÷æþ²|PÓ¬j +÷Á5«¹x‘—ƒŒO•Ãnp>•iØ@Wåm‘—L÷n.ÙYåó€ñÈxC ãŒCÕfž†”}ÈvS\þÏ™ÂxRÊ£ày2.ÕÜX®ÓˆÏGQV3ØG…ít’ÕG‹Ñ‡¼wç¯U.Ù8øÔæ³ £VÛT§T½¤¥„œ€Ìr½Š¹}ØO“ˆ-ïǾ¼´zÿŽi¸þ+°‰¯+`ieˆ£iÃÊ@Fy\ÿ- ++£°øæïC‡*ê_&2tµ9¢UÑð‘ñ) ·ˆJ“ãæ‰,—ò({’¨|'€\­Ð¯8œ‡ µ±»ÿÇìvƒö{É°—_À2HKtc쮞_þÐIëxH R\åerµ&Ë×j²ô@“ !U-ËÕИ&ó؃žÐd㳚,B¾¤É2äM†OÎÔq ºo׈{ÏÄŽLƇ]›û:zýýÃcÃ{GÆÓÑôØö{¢:@Qä¿‹FÈM{h‚vPn +`?Æom¦>€f/ù©Ÿ†û0í…þ8¥a›ÆõvJÀî1øa÷&îÑæßÔòÝyU^áˆØ ­b³¥©È$¶fKŠ¼Y9½zLÈf£EzöœÐö´ÓïÿY€òT(^ +endstream +endobj +339 0 obj +<< +/BaseFont /RFJHAL+Wingdings-Regular +/CIDSystemInfo 1310 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1311 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +340 0 obj +<< +/Filter /FlateDecode +/Length 2401 +/Subtype /Type1C +>> +stream +H‰|TyPgïf˜ntu0´8ÝÅ@9”5‚J‚AT]åEa`F@a8F†(ˆÜ*rˆ®DñE ³k<kÑuˬU±*oÈÇVmZµû×VW}õ®ï÷~ý{¯Ǭ­0ÇçÉåZà’¥VÆÄmQ«–®MŠ‰ÝgIñf7SÖfÇY4òEeŽâOÏÃm[xÿɨãŒI;Ì +ÇÇ_­J®Æ'dð^>>ËÜ,§÷ôù…¿ÌÓÓsúôæýãT{¼<+=C‘œÎ¥ÄªÔ©*uL†"Î÷OJâ§!Òyµ"]¡ÖX‚ñÊt^¡ÌHP¨ù!¯î«q|†:&N‘£ÞÇ«,™ÿq÷þŸV¼2…°øm)J‹'Ï‚é|LJœ‡€¢šî«ÊLÉP+éîëå[³RüJ>N±ÃpáÁfc…aN8¶Öb˜†-DZµ@`!¶Ù +“[aÛ1,Ãu…ØLõã‡Àãï¬"­®ˆ¼EûEשּׂ«ÄKÄÄâëÄ'Äâ>É’Éa±Mt¾ñšùí5\8®‰ŒÖæ#“[¦ŽPŠnÓÈ*Äðñè gªœœ"¢§mðC‚O˜¯Ó Y< • -šðCp\O¾êûõ<à(0ß!Ç%Õ)þ3É=#¸˜Åà„Ãs‰Ì öà‚´&òþ€øéÈ÷ÏßKa!WwŸ¤øp¶ÑâÓÝý-7™í‰Q\±L&CˆôZí€pRò:>7/¼ÂDæ °œÖ©" +v1hÎÚ'` ìÏwßßüs^^× Å5ªàš5 Ú‰Ö¢Ù¨‚yÁ7÷jªÎpˆ*Þì,>A ‡­¢‘2ZßuûÐ Àêôíï¹×_Â)̉|î?ÀöÉ|ͬò;TÊAšK›*kM­ `ÏBÐ<äöÇ h†‰ËË6š +8 ŠiÔL®ÐZ°E#“+诀 É¤¤Î®æ†q{s0¸¢*s +"$¯5 Öƒ£ OX/TFQ|üdq-ój¼±ÿw©§yxLú0ixg'Ûµ¾v ã /Œà Ù „êL-ÌX§2Çöìð?áÄxùé wXšÙN7ëd†‹Ï©vHÃã”l!ÈíÎxlk]l§µ=ãš Â_ý lÞlE³¿åVtğ蔶µ5Ü»¶?·•í'qCtX/ƒüœ=ÐœË=IkÛŸ(U&kBd²ÆÆ=¬¤ÇÄ"M‡2Áª$v-$|Mù™ öúÓ†¾~)ø’`»å Z³x*gÛHq}Ç­ºëÌhM¦–;L¢UÅhf(rRÑ>#kßÝ诹ÐÅ–”ß±Ýbª^!t±ÀPȦª²Ò˜dÍÉöÞK8Ih>ð ƒx;‹Ì^°.ÈL;’ÄË{~ø땾±îSú¢Zî ÌW%ìþ&žA[]…ã‘ׯnðÅ­òê6NòN‹ƒ°\¹°bµví‚FÞ £úÍ3'#hTn Û3£OncÍB7äSÂ!º1t§iðk"¨å21x†s†‘»RóIõ#ÙT6­+Î3䳉zUZ<¾÷âãÑ–›Ã=-)Êr®¤ÐXX$•´æƒÃ]ü3òkÀ|EæRØH—V•i“3Ðr䜉<qÿ»÷ËOÝa3`–øà®]‡¢˜à°¦ zκ½´±ÿ3T½]%¬¸³°XSàð|Z mÕÚ=… jŽÛÃÔOààER/O‘ÝMg/ÔÕW³Ô£2`ÅÔèÑŒ´R%³Sž«ØÃEÇî—m“f#‡{hŠ”ü)`Á3˜9Àè>¨ó™ Î„y¾YGSoõÛÅâbÚžæÍ ²uvBhÑ W˜ÕÿmmOgÊ$¾ OØ(—××&³Jä(Nï{˜;ÆG½}vþRï¹fMB[RTR H÷RxÃßa±Q Z­Ý È€²ŒkÐd5½dEIuY[_q²¡“¹\ŸÊ¡:¡¨‡nÓ8¥©ô: ›‘—u0[kc€f$#$³Nû|‰ h"ÐÙ›uÂuäÏ“;iy||Dd—bp¨»ç*×_œÐ-g„òÉít­¥éd„â#)Ý]þÀè)tÕ%'Ê*-ŒNu1½ ‰ajŠzI`Bž!Ò'*2-‹=LP— aŠ6…mJÆuL5PÂ~lØ$‚[f#V;-BžÈˆ¥ÂÒ°0÷GáŸá²ø=rçôˆ¢o6…®NÝ)Oz4Ú0zGØo´N›…ݾ•ì¼a#51ˆ"hÁÎ5êºÞÌAæ7˜ñ#ȽÁÛù•“l«:r/k-™æ´Ó$ß ’²ºÂXa*g»Ž¶·v3CgÃ×$Fm‹Omé(â •ÅÇŽK%¼ ÅKX¥ÓžÕ6Ow¤J>h1‡Éª’c¦JöbewÓ ¦þ„áH5GUÂ’*)Í-2æ01Áê¯Ò8AŒÓú—bäN˜ö˜¢ÖH%[òaÔƒ-~ ¾êQÛ)Z{áîÁ1Ü}÷†+þËÞkK:lBësŽ”6ÔU´_ìËÑ5³­ ×ìÛV½‰AôʀϹâ°óÿ8ÇþP÷iÀz–ƒyy|‚e^KŸœoû÷&ûvø÷Ø÷DpØøä'NûÈû@@›Z©mq¥·yÀ¹³‘’ °÷‰}‰x`}£Æ÷!ñ÷%÷ ´‹÷;û&vø€w“ø«p“ø€÷Cü€÷I÷Gø€ûQZûe°b…h…cˆ…²„±²V÷e®ø€wø¯ø€÷HüT~ƒ…„‡ƒ…„€|svt‚u‚v„y‰°û,¸ÉüÁ»»ÕÕ÷cô÷ÌûT^ûq…q…g…r‡…£ƒ¯„¦P÷q—ø€—÷&———£—ûf—Ì——øx—÷.———£—ûf—Ø—  b_ ‹ ÷ +÷H ÷ —š ÷¸ø’ ÓuÁÇ +endstream +endobj +341 0 obj +<< +/Filter /FlateDecode +/Length 411 +/Subtype /Type1C +>> +stream +H‰bd`ab`ddó +rv +vÒö­,ÊLL (Ê×uÊÏIÉÈÿfü!ÂòC†Gô·ùï>–¿ +Y¿æÿ~Bðès!&FÆ[Ïó €Ó3J --t@¤ ˜4×Q0200“& +Ž)ùI© +Á•Å%©¹Å +žyÉùEùE‰%©)z +Ž99 +`#ŠŠR‹S‹Ê@‚ç(d+¤f–d¤)$%Ó3ú‹RSJŠSRs‹²òA2HÜ4> +stream +H‰|TkPWîf˜¤wµ3D¦³Ý­lH,y!jjyÊãc€Qp„AÃc`,´yE³WÝňˆÌX²®Dy(*3°F‚)«¬Íi¸¤v{ðÏþÚûãÔýΩû}_Ÿ>÷☽†ã¸kRä¦Èˆäu[©”ò´xUŽç6Åþü,¹ÊVdyçWÙóï8K‘ª[\\ŒÃÍßÀ‹]ïH𕘎O>û$'W8»?]ÍùûzØ¢ÿr òà|½½½—£?·1-'EÁ%ÊS+äqQÙ©9ªÜ•\­Hóâ6feqËyœJ‘§PilÉ׎8e§PªÓ*N.÷+…ó*E§VÉÓäªL.ÇVù¸ïÿHqÊlNàⳕ6” ’yœ<;m½À’³¬’š“Ÿ­V)y^ëÃþx(WÁ}À¥)öa±w±÷0Ol=æ‡`Ø&,‹À"±(,Û‚ÅbñX–„½%ôužÅn`“¸~ ÿ n±K´»`7'*õ‹íß´¯°ÿN¼B¬ý¸¶ŸïÃ…øû>Q­=_½¿TM@¢08.† Ä¡o¥`K ’%b÷ò€ ¾_jÛ!"ÉÙŠïùkcø} ïô/Ñ}ƒ´²»¿ú o¿jb‡nµÏ‚ ðôq×™ëñ¾çÑ +:<¦â觬%ZzìOíõ&bfÝ‘_ ‹6»»¡Xe¦¾>Ÿ!}Ok`à.¨Í±è¾‹àø]tÔpÞŒþCnµfþEÁë"ïdFWùþ9U „—†¿ýKmÁÊûS07E}¾.pUBe½îQåS¦Nß¾ÉÖ³Á2МغŒ.TëCðqFW“9–6¾cÒeÁs±Ç¯©|˜†¡aD‚Š×VLSÄdõ×駼¾jÞÚXè0K”|U|'ÿyñ÷Yßlos¨“ŒŸùçÍYáß”˜y\«Sydk‰•Ö7]¨ï¢ŸÕ )üeañI^Œ/A†žÖðó8쵊`¯‹•Ÿ‡”‰¥ª 'Èñ²q~±¿g… «èÞB tiµ)^…î€?…T†ÿß’›­ŽzÏ'ò6¬cx7 éYv'Cµƒ@ÞYyÉ +ò§”–v©ø«îj— ¢$óû_¢÷c·LeNmÙÞÓd¢nü$•-— 8½[4r”Q½è 1ÖßÞqŽ©#(mC¬¸‚¤Tï]yõ&¥$55†Þ­8wã9à­?éXrCù(„ÛÞñŸŠøÐHõ' Mm²9°È­@äŽÜgÖÂÚ¾miºÈh‡Ä%Š²Úïã^pÒ±ú!é`Õ©úç3þ 5,‰. Çñ)‹>ráÀq9~%™øbøÞٶʊ“ŒqTÜP”ÛE§ì)ÍÌ`SÒ´["dêˆÈÑ¥ Y„c°fÆÊ +VvÌÀY õˆ÷á ¥Ô|Õ&±ŽèÔìꢑˆóB Ùô»à|¯ÿkÓ9ÖH 2ê3Ÿ¸m§2™üHñÁ+·KèÁѦëËQÉ ]B=ºi¸b¸Äx£‹R­®¨RË$&+i“s,5öß?¹}MžÔÂÔÖ—je¤FøžÍY€›­Pf™]¬`"Zõ'™oZL7èÇç£>bÑE«0³âÖ¹9#«\{ÉÕæç—¨tpÝ 9¤°j¡)þ ÉRÿ_“-°™0õAÒŠ!: vŠWh +))*Ò.rÕ$úñ´f!Ù¦n“^HØ Q  ¹+ôÇ< ¦!kšzdv™l5šdº›:»¯Ó#í a,º6 ý’–º–z#s­ùÊå>z¼=Á‹E禡C¡]Ñ»2çg3ÚB6×AGÜÐì茢CvïÝ•ËVToÕqQ—ªOÙ!#sˆù7†qá§ôÌŠà"TŠd«=P ò|¹ÞGø툀÷=_"–ÕEI_]u FxLhP@ìÃ?3ýôJ˜ƒàÜûqYÁŸïjÐ,\ÍFÁu“ÁÈ »{nÑÆ5º,uò±„4ý\_NÇš²9Ÿ­"¨óÕs6/»õÉÛd$ø×>›Ï…G£m!ºÜ& ¸/Š HLµö7÷ „q[ÓÎÖÄ T¼ê!Þ|¡ØŸGUÅÛJ“Ž&»Ve½%?4°*Wm$BQmñöâíe¶ü‘¾Ò¾’DCÍ*ò°‘/4‚—ÑhãF s:e³c­³ÓÈV'k½ó›þo–þW€ê"Y  +endstream +endobj +343 0 obj +<< +/Filter /FlateDecode +/Length 1752 +/Subtype /Type1C +>> +stream +H‰|T}TWŸ2A¥CË3tfêâAüDŠ gµP¥‹,+6©‘@’&‚A,HR¶.$XeÑ?ð±¶|ÖãÔE„ºë¶¸¸`=ÐV-uÞa=g_èþÑ¿vΙ{ÞýÝy÷þîïÝy$á> IRž·5:)zÅ–"Z¡LÔiW%©v«³´¥+*ˆ,)ÊÝE?OzÙýÜÛþóG ô{Á¯ øI×yóHòëÉ7µxwnžAXºÒeÃæìÚ•BhHHÈœ ¢”Ú,•T¤7¨vë…¸ül­®@«STÊ !J£æRèJ¯Ò]àÏœµ^P© y* ÀÁ\5Þ¯S)ƒN¡TíVèv ZWänÎÿ)%¨óœKHÎW»¼$õ‚"_Œ³hçªdkßÍ7èÔ*}PplÒ¶¢•!(U9~Hb)@¬"‚‰5ÄëD8MÄ›ˆÍDOl!ˆD"‰ØN,ÂÊι­Ä-â!¹ž7­Îíkw¹{ˆûy÷KÞ”´Ôv‹»Ilý»ÝjÝÅê™ÄÙj +ìèº m€ƒ˜¢€údàrf?ÎRskØ€°O‰½2× +¹<š;ðD4OŽ€Ü·›¬²ýóª/YøÕ‹Sý·ù[×/=O9H³Gßêãz·„µ o6:¶r2^¡²÷Ÿ°_d!h<ÖðhãÊ5(ÌÊé +kíÅ<Òl„‹Ó0íÊî6âƒK\ë4²B4MÏ.¦h¡ö™8dú_Xô†ZÅ!äEÑ÷ja âŒb ,­5y€nŤC¼¼'e4àVóMåg·žÙx%ârÔbˆA]`fÂ…öQÌa{ØÁÕœ…ÒÜU~•ñw ¾Hø)œ¢5˜Që#ÐNá’4(v±¢¡u€¶œÖ6­iZûá¶z“0TiKÑWÆÅÍÿlÇ»ô‹c7nLȯ?Ë9Å]Ȉûp9û^ÅNèp™Ýñ1Ö`´Wµ953‚¦è7šâÐ3Òq_Žû‡ åÙìŸüaEšŸŠc&r«qLJgÂe³>R”7!þb”œ(C^³¯J‘oJBhĶ~ðåÄW¥t°ùa’öNMxŸÆ¤×ƒ³WLõ©lµ\þD1ÒçOQȆx㻹ÜGë%Ígºu²ãΔ]|…m¶"r ò’3]QWcž|ÑsüB+g§˜½“%LW l”UÔ”Wïçò̹»ÒX¥æhçßÆš&,<½¶| +¼Çaá² À;àá&êA%³5ØŽ“¿HŠB"ƒX8µB‡¯;wpEÿ’”ædUle{áa5?îÞ]wúÎ=öŸ‰Ê¨áitËÃO‚ßrÔ%P¦È?Ÿ>–Þlîé?z¸ªÒÉýù;ɦºwXEZ™:—WdÇÇËqÁƒ³¼”.@ªï`þ$ |k6y·Á+`ÀJÜ—‰%2æqå[ ÕnÈ<Å¢ù¿^ŽÂ7/Ýê>yùoSPK~¯XŸ˜ÚtDÃI +;ËØÛÃWzøžO›ïþ(‡“Ræþm[»í ‡›:.+µW—q™¥Ù»w²·ÇxæñÓž›wzÛÔNÎ^nÝg–ÓZÜÎkÓg"áeHÁ- úàÅ'T£Õù~=wÞyöt';Ô’ã|èíR »¡É¯(Õs…¥¦={ ¸Œ^¦\?ŒXb‚*W&,ÌfÒð ü”†7­£:º@@»$°‚BYp 6à ZF¡huYq©qߞŊFß7gÒæxÌq˜Ise+N»ä,Ö x¦ŸßE~Ì}ü‰'\¢muîlésŸ²×ŽïØÄ£6Œ_‘6ÚÙ\›óTk{ãÄŽu<:ŠqýÈ«ë²5å{ +8C©ÉT\àa¡>7¾}îwldf†JÏWSLWå—’×(»Âšž$§sÍßÀØ#<@ Æ ÚÅJ +XˆÏ&äùJà°VÞ£˜Ó²å?¢¥|õjÙƒ³aÓbûÆΑoï·=˜À#S[`@j6puáÅ8]·IÅô7Úœ¶îjCû…ì¡‹¥žgœà!eúmå¬ûØÔ­y±z¾ŠbNVMIÊžiM“ÓX ÔÀb|»4Îä0çñð€ÿl‰¤Ô¤I˜;ÎÎú›6ª!±aç¡í×Qš/P¬K$è%*iʶšS*R°ìæ¾²¾½×@ã@Å#]éÛ%Éå.|Ÿ¹ÏÜ» +}é}±Ä+ÇG +å8î:¤Ú〠9ÈCÿpÌçš³2=ç×z.œ\^ 'ë==!{‘øXö_«„m_ +endstream +endobj +344 0 obj +<< +/Filter /FlateDecode +/Length 529 +/Subtype /Type1C +>> +stream +H‰|ŽAhA†wšì®µ!­ÅÐJ:H=TÛ4ÆBÛK -¤(X‚i "V·ÙI»˜ì†Ý56‡â¡ ÐBõ0 ª½ˆVÒK‘`‹Ú›­xô’"z~“NîÆ‹'/?ïûÿyÿ$øÛ„PO"3=›™¹x­l骖²Ì¡ 3¯Mš†æ¥aÖ‹Øi?;Pø¾viÝÝ…E_ z:ÒÒÑA‹F£-Á Íœ'8]¶R°ñ#kZEÓR¢Ep"ŸÇ­ +[Ä&VÉ3ÿþë6&º³H,¬ºá‚îî[DÃŽ¥j¤ Z÷°é%ÿ`î?§°n`· ϺGiÇ5m¬Ú°Ûb¶®dÍû†céÄŽ 'Ó3å"ÁcX#9A@B§ t#Áд±~È*ÕûUC®ö×|U?«4RÍŠkü“ÂãðD„#‰c¾§€ÍÇrSškÍç.Kì½âMÜ£ ,¯ÀzC>èZQv_¾ÞÛ×·Õl.wóÆ}§/È⛥Fø‚)ù`*¡F˜Ëˆ?뇶âªä>©‚Ì’€<ÅǺB ó[«òÛ]ñëÃßì9ºý“ŸK¥KK…ðóóâÓ­íÞý¹L$Å}WÇÄËrð!eË(¥ëTâwé*»Ö…ˆkmÑ> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +347 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +348 0 obj +<< +/Filter /FlateDecode +/Length 13533 +/Length1 20913 +>> +stream +H‰œVkXTÇ~¿9ç,,¹*—<ËŠ»ËUðÂzP¼ 7‘ÅËMPŒ1Æ{‹±¦¦µÖ%ÆØ´ÚäHmb­¦!6&Q£iLcZMk´ÏÓÚ<5Ö4m­ +ývÕ<©}ò§çÛÙ™ùæÌ7óμïÌÄ“P2³<5#,-7=—9UÖµºÛ7üøS€2etÝŠeêÚ†Õ{C#ûol_Ø*BÞp>W¹þÑ–•qû²£ã1 »¯©Á]_ûÇi§­…ãib‡ñy×÷q}DSë²îíó_XÉõSswK[%E½@Q-×{[ÝÝíâ…%‚ßW—¸[6Eluq=žÇ+joë\6¸Wá¹”.ö´·w4´Ë¯áX¥[¸>$GÑÓP|A»h)pïøý\~‚£ +¡àáã·Ù÷~Á÷K—êÈÅÊ…{ÇO¨ÈWA¤Žò¶7çUã1b2à“sá}ç¿n”dÅàãkôó>tXDdT´)&6n¸jŽ·ŒH™8*)Ùj³§¤¦¥gdŽÎ36;'wÜø 󣵬ü‚ÂÉSŠ¦N›>£xfIiYyŬÊÙU®ê9sçeŽùlÎX_?Sø¨WUuÍ¿Üuÿ®_´¸µeÉÍœq¹ãµ[…)©óæ7&Oš½´é‹¼…0NÇ߀Ûïìš‹P›ondàÎTÿ†Ds¹Õ•éDÆ?±@-cš|.)AˆŒæÉÇ%ŒÄˆâ™30ÄÞÁ&{¢È2¯r¡r˜h¬ÅÓ$‰B(‰Ò©œÜÔLÝ´ž#]œ—%I2JI‹»­¦©éj®zÐu3mpг—ØŠgIP0â¾eTCMÞ¾½ô²·/¼}q½j÷ÍyÐ×àíûÿ>¹¸Ë#ž¢·é4e;GïÑû^û€>ôÚe¯]ÛÅY¶s÷MŠgÈP`€³Ç?ø#€55AFBÆLŠaˆ@$¢xeLˆA,â0œqš F ùšˆQHB2¬°ÁŽ¤" éÈ@&F# c0ÙÈáyŽÃxLÀDä1G'Aƒù(@!oÂa*¦a:f 3Q‚R”¡˜…JÌF\¨ÆÌÅ<ÌÇÔÀZÔ¡íXŠtòI°ë°°›°ßÀ7у-xŠwä[ØÆ{úmlÇ3ø¾‹øvâûØ…`7žÅìE/žÃ><ýxðC¼ˆáÇ8ˆCø ^ÂËÐq}ø)Žàgx¯â(~ŽcøŽã^Ã/ñ:úñNâWx§ðÞÆ;838‹wqçñ~÷qà7øñ~‹ßáŸXã÷ø®à\Åø;>à Š§XFÔ†5hÅj²Q"ckdÞßÄ縅ÅXEOÐj¶'i m¤u´–6B 4‡*i.ͦyTEóÉE ¨šJi:³q³¹˜*h&Í¢ +"? +$_BFj`¦62ÓR-3¶Ž_OfŠ! ÅQ…S…R-¢vZLK©…:¨•:i M lšH9”G¹ä q4‰Æ“¹o¥‘4™4šBN*¢|šJ4 +i4¥ÒXÊ ,J£1”Ž•xŒYè±eXŽÎW  9oÆ"t?hkb~>j-ì_‚'pcõÐZü‰VÒ2ÚBëðgzŒ–ÓS´×i­ ­¼:èqêòÚü…×ì¡uÅ6âS¯Çó>'Ö‚UÌL-C˽ã÷ú/òix@êWÖ+‡”óÊ:O½<ƒk¼ïò^e–¼ÄìÙÇŒÚÍ\ÛÆÜÛÂ<ÜÌœ\Ïü\ƒÕXŘ»k'ó¶ww£kd×2§ç3¿«™ë•Ìû2Ö@1ëa*k£u¢±j&°‚Ʋ¢2Y]©¬¸DV Ù>ç ‹”Ê%T¾+çËšì+d!Cº!—Þ‘z¥]ÒFiµ´\ê”2¥T)I ˆOD¿Ø/öˆ5b®¨ÅBãDŽHa2¡~ÚO{øÖÙI;h³«“j¼8/1ƒ=HO2ç3ÿ²Ž°.<¸±^^dôûÿnÖÖNÖÙ3¬ºGWáþ +<ÄïAíÁ\æE;…qzð¥Âì64<,4$8hH`€¿ŸÑ×Ç È’ ØúXNµ§¶Ç¢5VÚm}É€³¢[‡µ*"ÇåÍÆ{3Ý/Ù¥“3ø—ÝfåŸ.’í¶ûT«Ã¢&)AS Õ&w½.%p®ê²ÓâVë;=Uf~Ãã*©òäµ°I÷I(pë(­2›tÅ™í2¹ë]åU–TËmSªå:mýúèîú¯}SIÐò®ÿOç¼Û^WHhDŽÝÖÏ°ùfvªžIöè’ÓÝ\“_£Ùmª.Y´>Šs…Óâì±pƒ.[´HÝ߃•£E4ë·ê·>ÉÄeOQ/4éS\.]±h‚,Z³.,ši·©MùvÛ1¾”Á×5žD_ˆO®ª‡…Ô£Ytrk…¼`ŽŠ*ÝQãòŒg·q“3ÄÉÓM‡Ý–b·½i·åéáÉvÏ÷†ÂÆ +öA¼ÃT* 0È¥|ùù„ÄM'|a ’¬é°¦™CÌ!‰œˆ¯+ó]MÁ˜å×îhü­Â_=Ò?”•|3 G±Ã.b£D =ÈÏÏw¸IHØý~Léa¡¾FÙ8<.6ÆñX_²*zA”? fïˆyy))Ö4j‘,afN–¬Loʔ̜2Ù/™ÙN^Éër üÕÙå¼tÃzõ–cEOìšøÖŤâ›V +:²èŒ'uPl'¨ð¤Îk;pÍóeµjà?lWyp÷Þ÷ÛCÚ•¥•V²dY¶K>ðJ–uØùÀ†Zc'À\Æ`c.(a8 qL ¸(ÊáB +JèL˜ I›¤\I™I›c2C‡™¦i™Ðv(à¥o%ÑÉtª?tÍìû½÷¾ï}ßû5’…ì ô[[¼A ˆ¸Ç€õƒ )š$‡@ã q@ÜÆ ÉBÿȵyó¯Žø{†&*½EPwŸ{ï-Ô÷‚þèZå¶ríìØŒ\ƒ‘ƒÙ¤F¦´ `äq4F6§#›”)"@ î¢% ḅ~¨œ8Ôãï~meYù²³JctgÎB)8×Fgߺûøåaåî½;Û­¼ —¨G¨Œæ„Ž£6€Ãê““åPžÍ@2 ÆcpÔ™Û¾¬v†ó¤iÒ£ìY£Gfú­`þC†Z¹. ö´ 0?ƒh³‚%H“ܸÛFjƾâ$K€ ºA}ràñ¿`5*‘ŽÊL˜8Q% 0[yµ´qéGm4+ #Îœ¬¯†š…Æ ÜØ 6ª1Î=Ö3ìMYzBPêÉl +|9Ä£í11®Ÿ<`oü»’{WÝŠ+J_`7ãv”MyÎŒNOi­5)ÒŽè;b¦‘´9é$X?1EwØEÔöÒŽHF±4£â‡;ŸÝ¼Y]çOúèW«Öå­?¼¼/¯hM.9ô|û‰o†?Tš×?Èë*o? [ÙÁd&'eÎ :^¢õÐ" #Œ©œ“ĹHV‘öÅm&‹Íš’L¼h¢ñX<5E¼ì€t¿sfå´,^0¿¦¼¼¶sqOKŽÃªÜgV´¶/ÖÌ°Ù®’$_•c·Î¤¿®^¥vÑY\ÂŽSa\"ܼ x§YÚbÜ^ˆÛ–ÇÓØ›â’ÇKÙŠó¼nz(“1²T³ÃW(ŽëC4¢¦Åe€· +∛Ú2L¾Xœ“,¶tÒnhs[ÞäE“ºÖdgU݆/—½:?TÖ9_Ù¹²~vaïïìì,û`^z/ß_Tµ¤¥¨á…Žš[‡&.Ù>ýÃ;–*}ZŽ«r¹ª° ÕûPâz«(¡ê•<ŠSÀ+YèœLÂxh=Ñúp« äX82'fð ¡/Þ ÄA]Åò°OSÈp¤4YPaÈœ,$‹†1Y8Æëñü8c€Èc™€ejþûÓ¯þÒ´V¬ÿ¨÷Tû×P1ª|7ÙW1nB\>³wûñŠþÙr}Ä`wg¬ùIgË!ÑG?RZ;~y\VîõßÌ•ŽI{_ùýËÏni²Úô]„9ÝݹmV¸ùÊ :ï#Gܸ¡×'*,B‡ë<-•ÃeCˆu^@€|Y6bá%FŸç´è+²¸âÐdDKe±H)9’ªÙ!—üØ%¨Œ‚4£ªHԎϑʱ/m¤î§öŒ=͉Cöp腧ߎ5vÔo, f2J ôéóq¡cì[å67Ìﯛd¥‘_ ¢ô²T×B6¹2Ed²™×™(Õ˜¨öˆ&Úeåå|,"T%*+ wiÝàÊ¥V›Ö2}œ@žÇ¬)- Êì^: ñÝB@§Ñ1426‹$Sبó™KEòir®_ó›ÅsÏ|Ò]²9Ï[]Òá®ë92½exîSK4ϯ·µ]¯FPþÌ|ªÌXðü¹þž«f8l]Çœ£òøYG—v›5±Z„ÈÚwšZ£¡…˜ÃTm©ÁJÕIrá,•$òP å0\ .%.<–Uèãu°ÇQ¬†|¬‘#É B¹B¥ñÈ$©¸M2К*úÉ©¢£Á¬)²ùáîŠ_,*yjn´¼t}øGEMSf…¸¥½¤aé©S†œÆõ»¶þ¸l]AëþË]Ÿã.MżFßê“ô”g–-ÜÕÚùÆæFò§«‹ç¾ú·‡Úöu¨*І<{€¹û¨P"i&Þ‡¨·k|¹ÄÉKø ª@ϵ‹4 þ”@ÊêìÇân$:øDE Ç\}q žù^¸×·dì‹’Ek¨"4àØJ÷¯ö‚fª2pm¥Å-ay¹ í}û+)V×+?ëÉÁú hèʱePù0¥\ê®Q‰]~3uâM5NÕ$ÊÇ»²­Z6ìãõxñÕúj3’ýve9ÊÐåS¬Ž12ÃYáçQ»‘;â6ãžRžj¼Ê¦•@“úðzdäQ,ž|™Hö^%—Ÿ¶=üˆsNÌkZ0uï‘m_l\qqéáõ«ú–_>ylÙü#;§ojzñúò‹˦ôlíf7×l™WßßZZ}`dž[ým£½>(iÞ½°ïôìGŸ5WŽö›54eÎv(ˆw6¯H¬ïž¶FåSV:Š•Ú)?5>ás×™±< ä;tH†â5°ÛêbÐnÉ_p$?å|èœh×<©¥ +Ç@Dû¢Ì©*¼É’~[¿éóãíÌk~ÑêSm}7·\¹sP9š¶&ñâÎ=›vx®þ_µyU¦k饞—þ¸Q¹õð¦²_ù'éžñÊSû¾¥ßÛ½óc5Ëmèä}ô tr›ºêEQ ´)G'Œ„¬@WX°ÿW§¿÷ýQ°¾AF‡/‘ÔÏ&túâ&ÕéÉå&YnjÉMêinå}¸„§é©LÕ5ljf< ŽtÔý­V£Ä‚#½Æ ¸Oö˜*ˆ}ÿ¸äV³¼ZÝj|ÕS[SëEP¸à}&€ ÎM­Åï4“Gt˜œžÝO…Qɉüʈ]Ýv¢~QÏò¼D飑ROn¶=SMº™|aZ°TD0\`û©E0‚àÖ$áH»:—ü_µÓ8¸®ƒ¿³E¢Åç˜\{(žÐÖü¼/TÔ1vn‚µ¤°¬¥fZ¸0{Å_¹]“Û²•¿NQØýWêžs{rUÃg’~O$ѱ该;mÿ!¼Zƒ¢:Ïðù¾=ç,G{e/°ì]vYn+¬» 9,{¸#¢"ŒŒh”Ôu¬Õ¤!5EAÄâ%U«Ö˜„KÕÔ\Z“™hm™¨©mm&fj¦±qšüèt&i*xèû³(Š¦Ìþ9ßÇï}ž÷yÞçµ›Õr  ‰MGsT±=G·à%DYá±ô^fì£Ó(‘jk’ÓxLùÚlÂÅ!Ä:/ ç +^ˆ*ÚëÆΔÌkà6¥)ÆŒzõÍF`:á¾âYUŸ¿Oè§ù P…[&4 ¦„+Æ ‰Æ¨7߶r•Þ|kä~iಳê×ì¶EþÐð£Åû[Ž}¸þRñú,ßsÅáüÓå+Ö¾ÒÚvbC¼¾¾vðÝÙ= WœVërhSäÁDãõ»Z·Ì×ÐÌþ¡ÆóÈI0Õ€wÞìÔÍÝ·ò‡½å¸LÒÐ/l]ôXü0ì2³€9BeS¢ßDaâ È&h!e£,„‚4g…þ6@Ôïqq;s³)KMâ‚×G¼<ñB·Áüñ€êü4àèLªg”4Kß=òk镯r- +¯mõ‹mÍíÏ÷º«añÑÑ«þYwdi¨té)d=<Œ,‹- ¹oô vÏÃÃ_¬ß~cxQM˜h":o>ðøÖX‰i6ò¢œàÈW…3Rhƒ•kPã‹X63Óøôà>k ƒÅM ;ÿrïɺÏCDqŸf à˜Ô$´B ¸‹¢·#Ê9s”ð~`ÓÀ~Ò9ë$׺œ»»âÀÖÍòmQºÚQ$ßœ ‘#zËèc[ÁÙ‰Î2ŒT|ïöÿ–¶Ó4ZÙé”ÏÈøƒÃrx# –hSÄÁ§ƒìj¬¨ •Ae÷×À­²'·øx1w¿|Ò+)4ö¹´wÃ{œÍû(#¼*k\›ð(È4rà ¢¨¬»ð$ÔÑñ©³K~ÖlÐ%[Êæ”[ôwcÚé<ûpm½'Å_)Ηò%|:'ÆÝ ;W§ÆUˆGåD"ƃJòp):f/2³xöD…ÄatÜ£)<¬AmäIÜMœá;³ ‡ +Oð,»Ï ÷ÏÏŸ¨©ÕhgT4Ö7?  šºÖÒÙáHaxN¤µNc s·U\âÊ\,b;¶Ší.÷‚òŸŸ3NërŒC ¶:ºT‹Wþ7p4—~cta—êä@9Ê×»&D¥‘~z콬*Eë èyÆ.³Ïz"U+FòtB‡8S€#Miå5|2ŸÄæ˜5´>Ÿ 8±÷éS™*MÂÇòQ*‹+îD¬ àî8ˆBw~+P˜ô09ü÷„ðš\|K·Gõ©.±òWS‡'»³¹02øÑÒI€}{g™uª“>åj#; ~£›mœ„’’¶.³v˜%Z*6 [Yº ì;=¼“bzL4Ì obáa2½‰é@“%ŒVÉ)Ð ç+¸À>}Azã·'Ñ¢/¯ ¹ï},mÿã†Óëâ•[¯ t¿ÿŒØ5x 5}~ÍûÝAéÌß>‘¶ÿ‰yvÞ¾KÏo’FþÒ¹ðµ¯ΣÂWê< E¨éb…ÂœYÌ8wBÌC¹¨º  ‡½qÜârŒªq›½E“wËêX\|+ þŸyÞå즓È쓼ÉT¹ uÈ=+öúãÛ;§Ïèy³=V–¯kê™ùËý«ÏÈ¥»ýð)»ƒ‘‡:ÝõOÏm{éÉr¾ÞÔØÛ²wA_zQF?—*ƒY>-O úF½*"dr40`7q >{†fŠZ(ähѸ'Uà˜žB?°"&ª“ÓŒÂKÂa7³ëñù³ -"&ö(ÜE¼–I¤ Y?:/ìý`ƒ±½wz±pdÍ£ÒÅeBzF}8læÿ*½ybŇÈÞ/ÓÙÿÙÀº3]B×s„ð¸[úû•.–f]%j¯ñ¹kL®…N}yù]}=ø=Hû᪅çÑ?w¶¾þÓÛ<3­Às5U- +iÈjÁUq7PŒèP0Wñ3ûÿè®öئî3z¿ß}ø^sñÛ‰øyýŠŸ±ãIˆã$&$e)„@Cž )%%”ñ(tJiV +H£*P•Ò²+P¤ mSË£«èÊ4Mš*6±®lÒ¦ý1Aâì»všŽY²,ËýÎïœïœó‰uµN–É‚¤âä€;käjÄÓUéÉ5í[‰'x}-G"c¾ø·Sð™«ÛuØíöˆC1æ÷kËÅ̦7º‡?R;¬Å¡ÄÊK“ó{ŽÝtŽ¬TLL¢¹¦îÛìfÞp¢wÝÎÞIlü6á*RT]6a×Í»„$ðµU"ÁÈUm¥¡â…$EF >`í¶rzDŒÀ”âå»p!rŸŒHî¬Q vÜç¼>„/-.ErÁ‹  +2Ph|ôpƒÈ:’ý¹ÖCKÜíÛW}ïýü—Çžúy£À5h7Ÿ_~zí…ó'>î~óŸ/l<Ýce’Ï…*fSnÿ²Tg& š†ß~ûÞs•öº¬~9»zþ«+ö t7¼þùš¨÷¢óàd_EÆ+©xÖo+0 QT"á&!PA¼‚Q+E‚™€W´‘…Xq©‘UîA:§» +8B{ªŒÓ);ìtú‰ŽÏ_ ¹h>Ëñ±³gcà½w6¦®çi)œÿ%¯ÓåVM47tÓ•ÛZ}';O,¡ññÚ‡'½¶…ÛFO< ÚRH3z¦ÔP™lÔäK¡Wã½XfŠJQ!:ÕÄbàÂ’b1°(24P(ÔÙÓºhT?é?0Uk@á]òÿä‡ìOðÞ‘35þIöU9nù…¡+Õ3Ãí3Ã3C×pàÇ÷^j…Ÿ‘ÛE ±`±mËžÎ]¾G†&µ9ÛÇ>8ý—ÃÍ‘—©füì©BGªÌ:Á#J¢]4 Å€ôû¼<ÇÅw©íP,FS‰‰ +$•LL?~¡?x}0 ±Ñ»aô-ë[ú¼žgZ2Ž€;¬¢ÞºÆבß娙׽¿²r_÷æ–{ð/úãu3uÜÌÂÑ“O¼»ìÐUúÇM`<êâÉbR¸!+¬@ë3BW†b0ˆZ yVˆ„ü’Ój.1*&Uˆ!÷M õõDÁ)\8Cô·¨0Jõq}J—ŽãTAÓYÁŸ/swœÊ«2­áœü¿U1_M× ¡ÐžÎ.—¿ÆŒ¦W[8É¢ bEjAó¯g}KCF“ÿ¨×òk4ÞÒ “ £»8¹Ûlßt¦,`qö‘]ƒ XZþt{xt}Çkf'?çR~T‘™ãªÛÔ0„·¡C—­eORÊ—µ¹”c…êç‰Îe8hƒjZ´ØnƒÈè3$+›²¨»ÿ5U:B4úii \÷­òYé­E¿}ÇoýæPéòñU–Ù÷ìAGšùlì+h¾µ¥Á¶2ÿUþþ’ú¥ùÿL›®íàŠÛàR×–Zš›sW4aF6Žß¥Eÿ‚ +QµT[¶1ƭ☴ &ªV2¼ Ì&’y-º¢d#e‚‘ˆ e AÄEŽê¡„•äpÜîX7éŽhi9àqæÔàCTqtãôf–Vph–ÉD*Z®@{‘ãܸ¶ó{MÕÎZ–êí߶{¨NÁ…;¤„$¹\ ÷Œ¼inï`ßiÈþtKbn¸%\Òè"~ÏÎýÚ2~v½jocsÇûoä_žå°ÐÌD œû@»{ ÷¥†ü× 2G ýÕ‰ùþH´Œ"ã_Žße4ì§ØϪ¨–l]™ŠTú‚û-‡Øu`6_̈‹ bW•à!JPÁ°2¬%D2èª|&G“æSˆÉxZ6|9T y×ò)0êA›ð!™J뱬û|KęފÁ\ÿ;‹ƒ-‘¡E5#ës†ðûæëýºó­™M ¢Cç·•½2V³1ë»<Ðôúé°]5oÞLƒ×öwú£ ¿Ú=“Ÿëh¯8ºløZîIÙO“ã·évdØG…³^N#xœ„‹¹”ÀëA3 Dç1Ý÷gX(ü2‰|“‰"r¸É¼”vÆFZJVi¼ª”ãèXµZÙú¤§zíãU³û^j¯êƒª3k·ý~×ÚÖ¶•ïëS©ÉŽ%‹­}ÏògßÛœÌöCÕ3_ ïýu¢ÚmIï‘›r òpyð¡ïÏÏf%' +ÂIžÒ j•H'B–‚M¢Œ¼Jˆ +0qÄfžŒPÊGíÔÃ(¶Ò‰ /}„øðö±¹!’Ì +L¸‡Äà¦ÛðîonÒ+ÅTϬj/îVÞ)éýôöÆ?ik«ëŸ»ìÀ¬ã‡[_{ªîÙ˜COï‚Úúnk=¹ \¾¢Å­o–ù¤¼xCKš½piŇ››k}‹ê¹ÌÏò£¤ÂTs¶.k‰! r3¾šXp0E%äŠfB  «EC¿ªRГAÚ‹ÃW91|¸aJœÕ…ˆ)Ž ±:  Y$EñáÜÀ‘õG·nˆ-Ïœý{æ“üïÂ=¯NlÇÎÅvœ›OnN !8nšûr!PJ(d´RRJ[(ôBʀ΃%tmG™P«ºýèªv-Ú¦MŒ1 M›Øþ¨¶JL“*T¡ +›½çØÎB—Qä(Êû~ïsýI^±†±¡D£1 qÀ.Ý—Å.\Ñ!…iñ\¼ˆL=¤1½® {¾rŠßbº ¥ãe‰I›ÉÀ˜Ìö,™Èb=ÅbX/x''=yfKÓ` j?ðt׉ëf¯ì p”;[¶»o^¸ ´ñ!‡<5[1Õ³yªþñ–á½W§ÇgÏáâuH¦²iÓ‹®\O™ê-•Ö³ñ³;7Î í®œ(~Ô[:CáÀìį&Ë|n”º;òÈËSûgïÊãÇz&úådx¼î¹WEeʬz +8ßí, D%.ÑoUSí·ši£Èñr’´* œ&4V5íGe(Ì`9®[Y¢¹?´ÌrIy­&´ +*»Åœ¾‚~–Xê´½½ÅYe°×¾^ïä QkÝT{ýÞ £ÿ6gÀÈ?0ºN•¤yžì:´NŸšO=½A¸­g¦¾a¨,Õý®€ënà†›tÒ2Á¦·: QyJ EŒc2\ +¬æP‚ÐC\ð¦óÒŠÚµønag`1)µ®´—¢D½Z {U~mWübS««1Â;È“¦!®n3êkåEho£‹ohtòPå{—’£>úÂH”nÁfÒr9\ˆ•Y™LŽòȬÇp¤yùt¼{ ,:ºƒ×gÄ4{^2íŒ ŠÖVŽô›8ÞÑ×qõ?_èöDÛ¼–×F~x×6ûySk_7ãw¹oÇ‹{kÕ­ÿŒzLÙ@£øiN°Ï3Y*4•LùG¹ìutÐtP\:TýékÕžG÷oJ -ÙºÄóéÄÚ4B»ÚöG"YÕƒ·Ž€?†90D3ªw9Ù\xçP•/OIƒXY;M‚K(|(á +©i²"³Ã[#=(_Ó²òýi0è¾G!vŽß¯n*u½¨—C|hͳúöPQ$¤¾ñ7ÊÛk+áÌù­ +àla+†‰©9•… çt4d8»„v·Ÿ¶‹þ&…i°0œ’¹‰yŒÍ‰©‰_ÌFžýÏÛcï=ßþêíO¿äØtdäÐÑMo”vþå–ù[‡£Ï_?óíËäù?½Ýñá› ‡¿|IœC¼LMÃ~¢‰ˆ ­ ‰ëÐyr‘ Õ;Ôp 3 +T*LÅ»‘C¦S²¶\lP*ÂèdÓTiÁfQB)šQKö$åpíêdõ.HókL«í:ãÕð!óÑÒÎÕÙùÙSφ¾®üQL© Žú§J$ðŽ•ìbÍñ‘žãœ›îŒj•©Ó“½Âg?®žúô™Ñdñi[uêÀHÑê{QžÔ„Þþ›é3—ýíÅZ1Ã{ÌJ-RŽÊCn LBc$µvT(ÓiX5K)Š)hGŠB v R¨6‰1vûdp²šl‚ð"R§T¤„m˜µHkBi²§K,¹ÁwýõòŽáEaèÔë[x« ¥…¬q°yàs𽎣‘¹Ý•OnHFÿ=jÊI^:ñ‡ºiGkD?úÉÝÜasfU ©´*þë{£ 3»~÷LM‘QÚlZN„?‹t¹XƤÁ¨‘(XZ‚m +–U²Z¯•eoL#Æ8$!»a•™Clrkíx#cÁùÔtñ°7Âå»=ãÑ]¬²sGÇpã²D/sèÚaw©áÛÑC£©·VjNV­ 1Ø`Ñ,„‹‹ÔJDs4„$®U'ó"ZpKÀ-V+I¹MQTh$ßäåˆö"DàwlZšÁ™®X­“¥D'¾œä¥‹‰ÕNæп4¤k,@7ìmxgÛä±*Ÿ¥eã¹ùî3Ǫöõ±+Û÷þöÂÁ?ï=9§R ’Þþþí=•ësäj­YiÝÞÿÓÕ]󾮑óÍ:nÏSOÌ÷TÔoá½÷/ìJOÎìƒÛÔu‚;l¥Im[κÙ§(vÀl X•ÃÒ˜`{unØ¡aå‘T+m•FiW «‘* ë‰?8ÈUKŠÄñ»>•÷VwÁ6U,Úü˜Í¾µ9à¨)}Íb­\7šúš«S_¿^Rëªïw•íÅ]Nù¢Æ‹fqÔ·/yéóZç\ײ¼SÏXêrÛð©üqógª¿¿?¶üK“¹àìW{lS×ÿν××öÍórœØŽíø•Ô8 vœØ’ÆF!¤QÄ#e*áQò ‚Ñ 1Z ¡-{DŒ¡ +!Q„b¡ +!m¨Û$Æ؆ЄFÅ“ [‡öG;!pœýνNNÔVš¦í®ôÓ÷sÏ÷ïuÏù®}äªoü>ÁïÕ'«üªY0˜KƒJ¥bEª +ø}•n—½\$µÇP*XxÌe´¹3+@ÙXU-r?ýøBwQHà%Nü% +lº{Z¬"^è´-¨, +üù¨g‰é¼ß[Á¢ŸÎt…•‡ËÝÇ3C®úÁ”y=lÔjNòã¬ý7áCjÂÃzÙk6Ÿ(ÅC¯FþÁÖ6•ÁrûÈ%©µÖD3“5n'e¬Ì˜¯(ŠQIÀ’ßítØ Œ‘ +º-{&øX…F#Ίdãx÷‡F88Ö”±kWßüÎœ&«ìrÄû¶íÚû^‹Q®íô5ø|~C /SþRßÀ¦3,ù³ /ÕΟ^–ò«™t à®ð¶d„PðÍESs«ej^ç˜98£²B”x#…çÜù¢½ý}oÍÎüYìuÖmM Cu‡¸xÈæsTøgex k¸gÙ9mEAóç$š(÷yrrä’)l.+#êY Ñ!"sõ““™S¦°6;áagä SGÑz‰È´È©Sn¢el˜öôH‰.JI·¨ë½ûAb|ëg»y p) ›ëBXÿ6—…Ìv®X%¦e†ÇÅ^é5¢îkå(Õ‚¯•¶‚wCT+\†Gï®ëïŒGÈ+Ÿ&¿Ü†ñM¬5,£¨tŸ‚Ðg7üš +¯BC¹€bÀ»ObßÓ Ë5¸ïÃÔªÙÚ7zö4Bÿ|ñ&5b~:lHIC¤ +K(ÌÃ8Ìyc!üÀ<¾”t +¥Ý QX\C-ÂqØqƒ‚Ò~Rå³Xã¥äì’·~é–íæûk6í¥w0.Cj¹=@/ì¾:ƒ¿3WSšû&œ¦·i-*æ­¬+s´²Ë9¸¬†[LåºLº’ñ&-Òlƒ¼ü¥„v +s{x\¤i:Ï?Æ{{6_ +·”ÇÁ•F1^›Í]ovŽã Vk±×Z0>Áý7ÈÔÉkã0ß*Æ y™×ꄃçŸç~*~ÊëA«… ÐjaP/®±ZÈì–‡±êa"4¿o"w[‘c½N'A.¤^¼&± ñø í£€´Vcµ «­¨^Áëá:dA…%£÷§c¢‚#ðOÈâôW€v¼ß¬å˜ÇµÉýåºåE¨«z­kö6ißžF¹Z¼øº6­®&û7EÌs}ד‹)|*þzœÆãõ;¹ù㘟¬_¹Ðâ–ƒì·ý ¦´ñÊÅWÞ÷+Æïg¢‘(Qú3ÐÐS }À5ðW@÷‚Þ#Ê êó™VŒÌÃýñ èzЋ x—>þœÎ?¹…õÃàûAÛ0¾ +J:¸¼F¯éôɧYœÌÒ‹:M_ÎÁE>É_±{Ú¦3MUÀå§ð9 ÍÀ·Ÿ‰IàW8Yp3®ÁEYE„œŒ¿Å ¹÷$b¦à8R¶§FÞï‰ÔÛDùˆ,‰ +ÎâjAlŠ ³ºKº€ê°"~¥ðÝö/¢²w‰Ê¡×Ž}‡p-öUL#rYß¹oëðýbTÞ]D¾J"¿øQàQôTÃöjäãØÂûÐDa…¨±©yŸ¨öQöžÞN±°= +»êçÅ›Øc¢†¿â¨ú/1ŒGÔf—Åà­çø2̸ðÏñÿ'àÿ¼gh³¿O*þ¼pª²*úšwþc¥Òà3ÿ\:/RÁ8//Èò28w–ç:k±’Ifm<Æ3¬ã²ÐÂ,/bþëY^ߟåeð?Èò\çO^YÐ=§#î\¹aå¶u7}ñ^¡ÔMs¨ƒR¦NZI€m´Ž6Ò&ZD¯Ñë´]›Ûò%kÿ“·¢½ÑãT?é¿O²¢xnÞ¬òH¾Mš5X˜_7( ˆ‡¤ÁÁEùQ:|QlÞï +‡ÿ-À×®‹Ò +endstream +endobj +349 0 obj +<< +/Filter /FlateDecode +/Length 3456 +/Subtype /Type1C +>> +stream +H‰|UkPYî&IÃHl„4v7 +Šâ (ÌHˆ A^Ž‚‚ˆ^2£†¢ã[Q`xˆŠŠƒ€(ƒ¸*îª;Ž£E•åú¨ÝY§ÆO3—ÝÚ»?ö×Öí:uÏ9÷~çuÏiÚ`8ŽÏ ‰K˽•{uUZ”N»<(K•šiU±…sR!çæ@"tÈMäþ{©Fá—9÷Ü$åN˜ Ž?{³I›Ë_Mß“Ïúøù­^f¥kgèúeìêU«VÍеl`š6EÍÆîÕ竳õlXNªV—«Õ©òÕi+ØÀ¬,vBÏêÔzµÎ`þÇ!V£gÕšü=j«â•éþ¾NÆæëTiêl•.“ÕZ5ÿÃîþ?¦XMËc±[s4V.6ŸêYUNÚJE;c%U[“¯Ó¨õ+V†ÄÆíÍU³Ø4õn Ãù…ÍÆ0G ›c‡yàØR [Ža>¶Ç‚l1¥‹µÁ¶aXŽ-áS‹)±(L‡Ç^âB\‰_Åÿeo3aó›`¿àwa°ð¬ðºð±h¹¨VÄ:âx¹¸Y)Xf$ïô]½ÃÜ5«ú¶P[’“•‘}»î0#Pœ'¸á o àòÔ)‚Ð:Œ"?ˆ„MÏaÄ‚8lDÑ r^oU ùˆÕF&îÈ÷ÜÛ¿¿NKš St!F€Ñ‚¦häE ¥_’ÁÜÛ" !©/N8Lò¶¸FgðB…ñEOÇŸL~àO­~¼Wøe¥ÇÓˆ5÷ ´Þ¤îwdìdÌr¹¹ ±Ïg.ó~/€Å0pw‚ Gþ°EúöB7©»ôÄðŠ‚€?ûIåhÀ)Æ"–þòÓ·½Ãeo×?B>òóRè.¾¶eôìMêvGAFR̾$&Í}@Hߎè>OTåG(Ûks>(>zW¨‡qpzgXô\7qbdà¿i²…n´HŒfA'Ycüܵ3}MW]¦ÄªäZf!\ÂbÞRÀ•OÑä´#¡B¿‰¶ž³tS@eD)Ëâ¢#ëOe3ÙH&*º8Qü‚‚˜€ìë‡wô0=;6Ÿ–S%%Õ¦}̱?‰à(ÁCσ­àôh¼ B` D8íÔ"r_M±%Ç„lL«³6+mƒÂvy"ZòÑ ?~à£b–>aãRök3诈†ñ›# ;|¶ætM½É…N{’[òF†ª˜†š‡ŽÒ­'Z›z¨Ñoâ·æ%ï²æ…3ƒ~+\ãCA^pÅ$FuÓU"ˆ# –ëÁLØ.œÚ!ùòUq†ÏÐjPH_A—‘„õÃ˨ÁØ&k‘žŽvt ß’ý¨xƒ6 ·…Aˆˆißö}&mK_ɳ“·È|/ú(HÈÄì‹/kï=Î|Wr!s§L“£¢¥O+¹ ²¿Q“ž™—“WÁ$×îié–oj»BKJy s@Îx „ÂR¾/ËÉÓæfÓÙ[Þ´?³}òàòÏà"Ϙ‘ëŽHäú>øã­ÞSçZèƒ&ãîÜôd½kFQ¢1ÉœmÞW]h±…ΓkˆÜnf +ÍÆÊ2ºØhørµ5ÿÚ5涹óÂeJò¦–p øduAŒ€»kH£6¡l…> úþË7/—”´3Ý°@T§UÔm¤P" +B³Q +ò¯Ÿß­;ÙÂH`ç`¹e|¥Ç! * N0~ˆ¬è­|I Ø4>aù2ødÇdà Ý/÷oB$õi@eY4ah.i9Voi£ûQ‰æ¡eë‘…))®¶”1¤â;طЊ-Ÿò%ÿé aS¾bÉ™jðæÿ+wæàNr(Œ¼á»£hþÕ¹ñÚPX!ü ~³—0Ÿ8m®§^?kaúzÏŽMÈf%vÑ=;Cê—RÁå „"'Þ¡3–Vj¢K½+=¸¨¤¦¦”‘|ä Àux?/f€··š‹ýÏ0ê·/´%±¿¥àgÃÃâQý•¤ÛCâᆻc“²ûúï’ÏÓ½Ûk=(Ÿ€ŠòíVcŽ3ƺ¨1óyívY|š&”ÞIHKù©äÁ7f?Dð¦\ê {ŸžSÿúï`û.îš}•ñíL¯í’µ·7ŽLÜ(ÚßF÷‚‡¨1)¦ÎŸB‹W"ûÅV‘Êü×^”!Ód”rySS +-é­b¡¡Ó`Ó§V1l’p&çŠfSÿ€ üÅàõmôܬý"“îDbQCçÈ™!ê^]A!ó•}jF³¢‘‹Lšä7ô~x îb7}OI  $˪ËLåtn¹vo•m8Ýq¥¯é1#yow„8œ¯Pj¡Ó-~Ư…é—ì,8r—ÈqçGŠ†(~Š +_AÞ–uEv”"A¿[˘  ɧ é—‘&…)“æ{çKjŸ¾§‚ Åm$Ω£›U•9 +¢ƒðéÊW¤¾Ò¾Ai Ø­|C'”)qt…0Tç¢1™²%[ÜËÏc—%»…lþñ’—sï¹çwçüιÁ°óöM³­{ º?’âšVÃ:7öœšPS.ÁgA!Af=ÙSØK#¯Áh—‘E!¿mbrª}¢1aÈf¹B }ŸþδL¸IR.|•b WyQ¯a2ùle—:üx¦óÖ·ƒç2̬QkÐêdb‡¤Ó þ|0ø½xÂ|à)TA¸¤ÊZ}¥[ô!ðFï¡ÃûQ"ю߃aÿô=³}ŠÉ_QééÓŸ'ÐQíC<æN,é©jsÓ“¶“ÙXYA¸žAú6”©ªU³p˜šz?X|Òwp³“Îö®¡æ}¹¡V#¢f.å+«2èSÑê”$61ù¼¯ “ŽËúêK½|2pm¤¯£0ÝÂuÆ2LÝ<¾áß°É Õr©QîtMøœ æ`„´mxŠ´X[¯Ò£-éø!ÑŒ7 ’ÀF>EžÊlž+dò/•«¼ôÐä„Ã3†S=€}î§ ç'p8ùóÂ)ItZš"¾?ebÒ98ƺ*ÓÑô’ÂBµ´ÛxAá>þÁÈpnXÀ>X~nhÜÐúI«ÁVSÏ4™ì}ôpSZ ‹Úð¦«d±±ºŽé°4·8èáæôH5bû k#g7džÓ©s¥º@¥ÊõÒ®B…#‚Þy&>¯ˆ-'(—nZ„¶¦DSÔ‘ÿ¹á^3ºLÌ,ô’6ãåêZ71ö~z¤53Ê]îŽB}‚È] ñÊ"<©Qí] +ùïħ>Æ.ÓHHO¸-$hO€?ÚB؆k—ÕÏpÇܼéO´å%¹Õ~ôОœOâ£ó&δÎLa™¡ á––,÷ºCÌM …ÿ«MDnóHÁý +¼ŸûK ú%@“ŸÊè1yÚ;K˜N™¢Èð¢\!±,&3n='=Ù÷ÑÁÌ„Ø´œÎ^«¯­¬«—‰×c.æa7§êRu,E¤ŒË\LB9i5Ö™j™áZgû8ÝrY_ac©ZØKRÆ*µÎPB‘¦tÓû?/BÛ S’)a¯L|\oB ¬ô¸aNØïÙm—¨†¦KïÓüðÁ¯lå÷©_¿Ýëu¢¥¤®QÖÚlé¾QÂu0‹ÎÆÚ"i$yÿà¶2jà8¼‘á5^\¯-’](KI omÊfĈÒ@ z«P @Š•{Ê™æ%A‘H:ÂÈ°FEw£¼r½hœ¾1|ÉÜÆR°ŽÔkJõçé3¥ö)ü:þ¤›`=)þÒ»Q »¨WY„^*Ç‚Õ +9&àÀ‰Ð BRDÔ€&‰O瓽*~H7¨úR¤â~ìçQ#8=kÜnòÅQÚ¤åeºr-¯c¸ y…ùee…º"ý +–ŽVßižpÝ{ô’ÿ‚)Š!‘’Wòi|îšr‚·kºÎã ”Šó àÉ°ÑÃ.„{Úý„pÜ{ÏšˆGWŸã*K€ôÕâ»h#ÄVYŸåçf¥£Uh›T|Ñ*pV´Z­v+R­3V›Î[aû’É ›f­ÞL[Òi_oƒï +ú€|øZ|}…«³ä_q' +endstream +endobj +350 0 obj +<< +/Filter /FlateDecode +/Length 530 +/Subtype /Type1C +>> +stream +H‰|ŽOLAÆwÚî®HS¸5S&(”ZI€K )jDëßÑ¥; ÛÝfw­ô@<˜& $èa”‹Qô`¸ÓñÏMbkæ,»hÙªK´8Íçq³ÂÁ6qˆ]òÍ¿?†ƒ‰áΫ^8cxû6Ñ°k«)¨ö]lùÉ?¨ÿç6Lìuá+¦áSÖõL«¦6àµXÍ+9ëžéÚqâéìår‘àa¬]Ð&H!tÁ\Þa•jýª!O{jÁjˆU™ýŠKü£ÂSðX„]‰c¾¥€ûä}iª9CŠ{,±wŠ?qŸ"0¿cè-ô¡}AÙ|ñjkÛXWsº~ãêkc£;ÂR«¥Fì>‚ ˆa" +ÑFŒËïM=íÀqQòžTAfi@‚díQùÍEùͦøõÇÎoˆtîÞúÉe²¥¹BìÙqñÉÚúÊF×ösýZ<ÂÝç†ÅÓräeóz)¥ËTâwè*{Ö…¸g­Ñ\§ßhKluúv¸¥n­„#­õ•pø xï± +endstream +endobj +351 0 obj +<< +/Filter /FlateDecode +/Length 3396 +/Subtype /Type1C +>> +stream +H‰|TkTWîfènÓ»¡3D§“îQ0D F J0"ÈCÅÆ™A^Š³ØUAY  ‚ò *#ø‚¼ÆÀ"–—/tÙuc5^rvü³¿öÔ9uîWunÕWu«.Ž™š`8ŽÏõöÝ°fýç‹7ìÓjÊmÌÇU Q +í´“X\˜c*|0[Š–¢¬7oÞøpûwðÏwk?xçµ%f‚ã}=cbÅ»êxùRww'ûií2£ÝìåNŽŽŽ3ÚE¾Z¦’í‹‹WEÇɽw‡Çhcc´Šx•ÒA¾:*J>"N®UÅ©´‰ÓÆ·Œäš8¹J¯Viå +Ñ¡ïkUJy¼V¡TE+´»ä1Óžÿ;ÿO*¹f·\Œ%Þ­™FAñ¢1N®Ø­\"F‰™É“°;^«QÅ9,Y´i_¬J¾L®TíÄ0\ŒÆ1K›a pÌÃ>°1l †9K°5f˜/ØV ³{‹mÀ0%öGì<6Žâ9øK…É7&÷%¬D+9*)•ü`ú{ÓxÓnÓ—ÄBâ$iN®'¯RïP~Ô#3k³-fÇÌΙsæ;ÍKg1³¶Íº<ëW ‹d‹ÑÙ+7e4ã ¸¨4H2L…´É€©4²Ð-)ZÇxB"9º!…i0u”š"·Ïœa1)4J§OhÑè9 p¨/ƒ I4I×CF+E£ Xâ`!‰Nz©è\Õ¥¸³jµvÏΈâØJž>“(´d$Y‚n¹:«ÁI΃d:ÐüÏN¯â.‘IÒFá„aX"ì°2¢ºLªñ:Âœ¡q˜-{ðÉ=|bTÛ¹óˆ’²ú²ÛìøE?o>}‘‡ZŽœÖ®›LѺ.8ÞÊ.KñcžÔ–K/Þ‹7²àØ?öjlýOóùLŠ™xXz¹ù¾¬/°½çå­Õj¸"¢ð|CQ#Û_¾móªå‘>üVïz’y28 t4ðÁµ'"X¿À’|ít1àÕ݃ø©Ð<’ ¬Àk¬ÃQ°³§Ð•)g"n"/ +i ]šI3ì)(Ë?_X=7‹ÔkÒ5Šž!ZÝnp˜‘^“œÝ#¨•È*.;ĂU“¿›wùÒ?Ud×±à;jƒœÓy´ÞÆùiv²8ú ±Ü[ÝoKz¬†àëFÇ Jè?$:Î$Nº&Íx']¥¿¹MºRô2q^¼5Z FT#¼p!éeé(Ü{-¶®gž 0_‚“ÔPL˜êû rY†Š5u«®yÌ…HôŒžtuG•$sz~¦û±¥œ>}W‡²+´o.Š‚§„ýo®$,²«kƒ£÷ÅTpø-Áº²/­J]èð·S¹{ÍFÉg÷·&<Ýßu}sYÕUÜt{DÖ¸÷ª¦Œ«VøŸv`ý}úŠò“fç•eײÓ[T.²U[8'’ÞÚ-\ïŽL²l†è¦WÜøª®½­,8÷Ž¾zx‘ßóUaZdW+o>¾[—tð;Ž©+_¬÷tthþZ½ï²r¾}ûF0Qòcêª_Ù›¿tòßXX¬äè@qäÆÅÝÙ1,VÃÂ8„=˜úv5(Hú±®Kx“„ÿ< †%?‹ÝšG!Õ«À àƒÎ :OYSh‘·íÒu÷`1'XSô]kd"dܺղrƒLŠànu¸\_S+ojN ý^Æ@)fÆJúâ>ðýOºá„u‘Šÿ/W`ì…8þzm@ù +EnbóMc”r)sù®Hq +Ў᧱¨6;¤Ù!ÕNÎÙ<í¸–:C]¥‰¶Ôš-W¨ÉŽèí ê³Ã° ¾¢ÞÈÒ}u݃ÔÝŽho·C—‚6õFħä¤Óy*y®*ÃUO\Ë5‡Q IñŒŽ ´3üíDEr¹,ö•~-'ù€ÓÏÂqkè:kÏÖ/ë×î€^x™C£â³h=AZKfùÁ¯pNk&œk&ðpAÿïŸ}ñØú×sìèÓ\Ø{ÛÉ»£yeË6$-B½ˆk½zbœâ…vÃ{>O‘[PÔÑ}_389íD¼˜Þ‘û{Ç”Œ¾FÏš$B$ÇUo™×äýÀ1‘c6¼jpѵ–ž`-ý7(¶ºT_ͦy9f(*./¤öí—…ç0Z‚lÕ=áäK(—Fa$ŸÂ[\Ý—@òˆ×}N”×1 ¾L`bôÑtR¯;ÙœÞh–\j½0l½¨,8C7óë3’j¥”WdDð=q‹©Ì­¬–ìC’ä´”ˆÄøƆLZˆ² §&]–ì¼%ç²¹î ½QÕI-™tÖÙÕ=TÇùʪF;Á×iºlJªèe <&‘0¡Vc“qíéqÇ*iužÄ#êƒ ¥NY¢¦+e²}Tà‰8ëƒ. Ðö?ýbê>Çù•¼2ˆ?CèºJ-ƒá®2GèK(“3Ì0aˆ\•óˆrÊù›Q ŸìT&æ'k’]uD¡YmVZ6A‹Xae pýO¼¹W¢ÉÎF.ô]:KÌ€¿M†ëÙü¾a£jãbî!¥x–€-Õ—ø i•QêƒEÒu:B3?ôÍÈN(ï"‚P™ò€ò€†;?5¨Ìÿ9JÅBœ Kµ3ŽWÍ‘„¬FñCq‰¤DW¬=Eç%¤Ë’gæ¤çç7í7ûêúºF‡ûÝ„Ãßbob#ê,8ZxäT:žÏ¢Ö‚.Mûzè X§œo–e›Ya°ú¬,ÑÝ­Ì}íäÇZ‡Ñýuç·oâ?Âÿ iŽÑf +endstream +endobj +352 0 obj +[368 0 R] +endobj +353 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +354 0 obj +<< +/Filter /FlateDecode +/Length 365 +>> +stream +H‰\’Ënƒ0E÷|…—É""!ØN$„TÑDbчJûÄR¤b,Cü}g0ˆÙ"?Šý(ò£øŒŠÎ¨ÎÌxi…fŸš|jö©É§f?šühö£Éfš©XWªhïàñêüèFÑ—ü +0ík± +endstream +endobj +355 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +356 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +357 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/D/F/L/N/R/T/U/a/b/e/f/g/h/k/l/m/nine/o/one/r/space/two/v/w/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1312 0 R +/FontName /BYALPR+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +358 0 obj +<< +/Filter /FlateDecode +/Length 318 +>> +stream +H‰\‘ÛjÃ0 †ïýºl/J4N!°¦-äb–í[é‹cœô"o?Ù*Ìè³å_È¿¢ª>ÕfX zw“jp~0Úá<ÝœBèð:‘¤ µÜwá¯ÆÖŠˆÄÍ:/8Ö¦ŸDQ@ôAÉyq+lžõÔáVDoN£Ì6_U³…¨¹Yûƒ#šb(KÐØS¡—Ö¾¶#Bd»ZS~XÖiþn|®! û„›Q“ÆÙ¶ +]k®(Š˜V Å…V)Ðèùä‰e]¯¾['ŠÔ_Žc +¢ØïS –ÌÒsÅ\y>3Ÿ‰³40bÖf^›e̱LS æsι¾ôõeÎœ{>0<™ž¹é{'æ“ç 3=¶È¹ŸÜ÷“sM +Þ„ûk½45xx­nΑÍa´Á_ïì`ð1};Y •ÿį8Ý™ë +endstream +endobj +359 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4615) +/S /GoTo +>> +endobj +360 0 obj +<< +/Filter /FlateDecode +/Length 2848 +/Subtype /Type1C +>> +stream +H‰|T{TgŸ!Ì$Z JÔŒ‰Et-ŠX‹jWd (Š¨ËS4ÆòLB/k•ˆ ©Š¼U|TK%C"¸€ài}Pà†A ÎP«b•!êäƒTñÛµËOÅywgþýqú™~9ó‹=®ðhBçÔ÷î»a"wx£ú$9Eð¼>‹Ï›íóGåÂÙŠysçΕó+”É[9Eh†FË%jIÚ–¬NIVÇj9¥·bEB‚bB£PsN­s||›“B¥Qp*ívN­ˆŒñ*Á_Í)Zu¬’KŒU¦HvX~§ÆýŸP +U’BÀR„%©Z¨Vø¨QÄ&)ç(É£Q¶%§%iÕ*Nã=Ç?tCF +§X¤Prq† æâ„ÍÀ0_'l†­tÅBÅø^ ó¸Ä‚±,ÛÅx<·à7üœÌ¢i¢m¢o½œUΈXAhˆâ¿äÒHÞ¿/.÷J<$œ¤^28fÓ˜³c‰±«« íü ät»¨Ð™/) Á„º(´ JxA"j§À¡ŒÑ£gX†äÛ(Ç 94):"En ÆO€Xt ¹P姚¬¼”?yWp +²b%Rô)h¿‚]¢¯ÀFÅ®&±4ï)~©_ô¯<ª¶¼æø‰¬*&sg*«ÙW¡;NKÁo…²àVþÏ6ÑÀ~jO«m_ îCæëÝlÏÍ“O_É_'Þ ë`.‡z\é u_|¾™µÆSŧ‹…^¢1hù>mR ”«Ü_”ÌHkktp¥Z`8Û*p·Â•7䓽M1Õ³*”…L—ØÉì“9v훬;ª‹a£øÞÉK]ÏäÖŒ–¤SL½rC•/µnÏ®­¬UEUÔ_ ú.vú¼ÕëÕWã—$r®¦÷kÏäÇOŽ aÕ¯ ijžås´€·Å­Á{­2=ïÞÐ`–ÃZñ£Ôÿ vKXnÒ¦l;Q[wþP äþ/gGÈsÅh“qfÉe¶À–Õ?Ümo®?ƘH™þ€?‘ޔ̶Ë_ÏDfF‡ûÑ:Ób`Êß°ÒÛŽ¨üæHNwë·Â?[ezç.³™F2ÀÜ™p—~øCX3!—!\ðg¬nGŽ¼ðã ±sê¨ +S©é0óý±›¶[4àÝ3‘+³¡ A>ÈéãàÖ¿ëÃaÃáCr©*¿‘_؈7¶Šx.*/5.k=DK`7^Õ^¯Ï9ÎV4¥;#*Bh4ÝÃÍF3ž{Ûg¯>TÃJ¯ý.ãÆVøÞ*³ñó‡Ã)Ôa7¦mj^D£±^žhþ~y<ñ‚±O:míµŒQÈÖ4—h& u†¦srþ¥8r¤”Òr r™ÍOí/ŒIØ+À`Âgoîu„V°¦cFŽ\Zœß;Ì°´o´Âe»ˆ_ÊXRXR*ïK/äƒÆÏ¢iXÉ䚉œ”øìU´×ÂnðfMfêÛ’ /¢ArjFÀ>VŠ’jtü3DYðVLr0)3¢NŠŸW <9]µ{w)Sf&J²SJè¸m9II¬R™½v…<ÕŸëY#–^Cœ–Zø¹ yïhèçýx-%4ü‰0–ôȶÙô4ää‹üФ‡€Ë£Žó¶ZÖ¸šD¬Üô‡àÈÊ£;˜L%‘r®'ûoô¥ëeMçY‹¹¶\åÐ –õÛfã9f3ª£2 2¾Èbü5k•4"Ö¿Œ• ‚ìÖƒ×÷.nZWÍeõ™ri‡PÑÆF¡+¸0GõVQ¿°¬d•ñHñ¦»ºÓÖKÿX·d>‹ê­Ð,är,:nG~f +“”©MÍN‘ /’”¢ãŒ6$÷ÝnÜ ¶Ê^ÀDw^9¢ˆŽ{Ri™éiie;Ö–U=¦¯Ò +TV!®a˜u¹=ê²qÔÙýÝ¥ufISË——ÉùÐÈ_1’åqêD&MŸkȆà£á[”VÀÓ•¥=q¤ºæ¨¾:•®›€ÉQ‡& +“ùk¸"I[lFÅD‰R¡6B±ŽDK‘¿>+=-W?Å $_#ì’ðQG¡úáp¡x>JKÞèí*u¼§ÊúÜØÈrSEq)ÓQio»Nßm +¸i·B¸¢¨\ ìbeëùnú~S ÂXtÆ +çÄð)ÂODnÞ‘šÀdè3uÙIÙ“¾ù|½$jë†DÖ@Êl{1¤‘3îˆyב·¡ë­²»Ž¨v²ÌT^t˜¹RÕÙÚK¿zבF1‰Z²6&,•€Zö>þ ¨-ÏÂû Óß +? K²†Ï¥Ð{óA‹Ñ¬fÁøŸÁõ;OŸWh +»OI›I}‘ëϙ˞¸w€H…]ƒVé`­*ïݲìGá”NÉu_÷$ô ÷ãõcø¦-z\†p*GQý{ŸѤ1Ú±Vn¡J‹ÊL¥Œlð5½ï–Íÿ˜,צÂ0Žgëœå…S4…Ó†;}"º"V¨ˆ&deMR7ç-gFÞæeéÙœ›JN–.ËÂ377u^sÛ¼o¦¹$+üP!] +‚ÊŠ>¼«×½gù¡¯<¿?<Ïÿÿlƒ¡ç"áö„³ž—5r£‘OÀóh|ÑŒ_Š·ÊÎnÁͳ¡S¸ft/>ÜkoÑ·S3ÜÖ¦­M‚3é…jVÌ¡ÿÊžmHùÄ>:ÑcKnèæLÙÂjì“·àÛŠ÷Ý‹lWÜ}*yðZïCþ”ݵìQiÍB« ëª,4æ +§¥$‰&ó^—R«r»> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +363 0 obj +<< +/Filter /FlateDecode +/Length 339 +>> +stream +H‰\’ÏŠƒ0ÆïyŠÛC±ÕšP¡Ø<ìÖÝ°ÉØÖ¢=øö;“)]Ø€æ2óÍÇL’ª>Õ®ŸeòFÓÀ,»ÞÙÓxän½»TÚÞÌSü›¡õ"Áäf™fj×¢(dò—Ó¹:Úñ +k‘¼ ¡w7¹úªšµLš»÷?0€›åV–¥´Ð¡ÐKë_ÛdÓ6µÅû~^6˜óñ¹xi<ïØŒ-L¾5ZwQlq•²¸à*8ûï>Í8íÚ™ï6ˆ"¥àí7䊹">3Ÿ‘³]dÜSæy¿Œòù€œsLN1yÆœ!+ÖQ¤£8FQŒbE:*gΉ5³&f}EúŠ}*ò©NÌ'bö¬È³º0c +͵4ÕÒìG“Íu5ÕÕGæclÚ£;Ô>œ²|ÎÆÜCÀ±Ä§çA“è<_‹½Ä,úįŒé£* +endstream +endobj +364 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +365 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +366 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +367 0 obj +<< +/Filter /FlateDecode +/Length 11804 +/Length1 16196 +>> +stream +H‰ÄV{T“GÿÍ|ß—ˆ@"A áiˆ¢BHß(ø(á%TPª(¶h­¥E-­ÝZµ¾Z­Åjõ­Ö·híV­µÚnÝv»{NÏn»Çv÷xzz|tÃÞD·uëºÿîÀ—;sgîï>æÎÜ0+!`ú´)éºÁY­Äù†¾‚êFOsž³tÀá‡ê%­ÆÅ…MF@Š!^r]ó¼F®=çShüûy –Õ­¹ý§]€j`û±¾ÖSS÷ÚÄù@f$áeÖC½Cˆ¢ît«olm{!f| +I§P¹ ©ÚƒèŽ.`Ô4®iô´5³â0v$­7.ô4Ö^oѸŒôõ47-nè³øæ›Õ6cvÛ}ø„ñ~­ÝÂZoÂ}*Æ£Ž‡œ«ð?šFË|i¨7üËg7ˆÃÁü3zŠõyÅxÀ$Êýkþ³Ñ¤ J +¥* 0H=(8D£ Õéàƒ#£¢‡Ä 5šbÍÃâ,ñÓ¬¶ä”Ô´ôŒöLÇÈQY£ÇŒÍÎqæºÜãòòÇO˜8iò”©Ó¦Í(.)YV^1köœ¹OTzªÞغ}gÏ{‡>8zìÄñ“§Ïžé?÷áù }|éâå+Ÿ\ûìúçó:—-ë¬Y¹xm¶Ä ÀŠu~ëV½‚SW7¶­F ð솺¯oÙ¿`IË¢¦æÆ…ŸâË¥hŸÿPÿRumÃæ77½µc÷Û{v½»{{ûd~ž¾nŠÈ¿öGECqÐæamlƒ8͘eŠ<0àæNVäçjŒºŸ¹6=®³—Ùv€‹l?»ëû#L‘vQ%T@ ‚ ¦œ FiÔ":’ +C8 ˆÀ`D" +Ñ‚ %­&ÄÂL¹ â1 HD¬°!)HEÒ‘°#ŒÄ(da4Æ`,²)­œÈ… nŒCò10“0S0˜†é(Df %(ÅL”¡˜…Ù˜ƒ¹x•ð  +7ІeXŽv¬ÀÓx†"´«ð,Vã9¬¡0vÒŽ¼ˆ.¬Å:¬÷õe¼‚ x¿Ák؈ױ ›±o`+¶a;v`'ÞÄ[Ø…Ýx{ðz°ïböã=ÀAÈèEá0ÞÇÅ8†ã8“8…Ó8ƒ³èÇ9œÇ‡¸€ð[|Œ‹¸„ËøWð)®â3\Ãu|Ž/ð;|‰XòØSò$Z±”Ò§‹p±ÕD›ÐŒZ¢óPÿóêºÿ‚Ððg>žÂb¼D½ÿ·ç +Ê6 eˆ %ÞoÚÀŸé4;„ÙâEñ–d†òffÁ,wñ-þˆ¯Hæá] 'Ióa²ª‡,ÝIÖo¢Ýì¦î¤]ï LXJ6Qôê(?æRΔRPnå“®±”…vÊÐÊZ“2TÑ/m—â%ƒø7ñ+Qw‹¯ŠÝb»˜&UÂyáˆÐ'lÖ«„2Á  ç^ÞÏ;ùjÞÁó +žÀ5ì*»ÀN³=l;‹g¡>›™‚î+/Yþ#ná&¾{ȃ+ù “¿xð‹ý[^@6Ûar†‡éu¡ZMHð uP`€J©D3Xû(ßÝÆ®ª.³«®Ôfí£jâ.n“‘TfUî'cüDL,—™[ó+–ÍšDÿ2O´Yïÿ°*fW/â\Æ|c½§FâˆeÑmökzήâ2µ^˜¢Ë§—ù:bœ1¿^VÆåyd–™¢dÉ=²<ÊSS>£Ìœb¾•b¾Iº“î©yìJ)Εsóáœ;~–6Ô0Êfí'·©¸>#»òdÁíi¨Wé²YóŒ²`võ1.¹—¸Íî.3MÈ¢Ù!ù|%´ˆ¼Ùé1úí–s£¨ïëÊùQò„òrY2»‚™] 27»dub„ÍjÌ«g³§ËQ8ë"#ú´|ÔhìåB—Ë,3+Ÿæ,.“•å>}6+M¹µn27 6k²ÍzÁfÍ‘õ‰6p_…“|…T ;ØìŒæ¹ +5”b.ÝÆJ.nhn£’AÁB„¤4$¥š´&m<}ŒnnÓO.‰Š¸I<}Ï嫇ÝÞ*n§*®ƒÁÂÔà­!¢Fba~áœäT¦´pûˆlî0 aúÎí¶£çR+×ͱ9 ÌAæz»m[؉¿·}ÿMaZÉ™3WÚ—_>{‡^GèB×úеj¡E‰éþ®Ë&ðdïdaú@¦¬+- /)M_ÑS\¼·ÝÛÝr÷Ρ÷ïÝmI{Ò{Û{uï^ïuïíZ¶ÉÛOgˆ“×:g’5¨8$äÇM&\e|6sd: |gutÞd}ãsªïwÃô/þemPâïO>;Ëás¹/Ž§&š: +&V‘˜ô r:‡Iiw±¿æ±œþ~’èø­§sªF„S+è(âL\¨ð‰?qŒÈÌH§³§0ÇZ,Eiö‚ûÐlK{J1õ‹,9ô&©ø‡P#¦*I•ÏÀÂJ5Sÿ0KT@›Ú)‚-‹¢G O&ìûöOÙ<#ݦç¤"™Û™B«'}¡†ðŒôLGæXæ §ÅR!f›*jR®}ÕÎc=ͦF²§÷‹:Ëð™ÖM‚êæ“Þ.7§T±ÞKßî÷~ªj÷¹ž'y7‡f¾ã˜]mµÌº“Võ|·s|±?bô¤Ú*SUuF ׉L©C@ dŒ5éTz‰Eû¬ÍILÍ°Ç02É®oŽUÐ~p‡Vï³1¬I¥ž•  +«•†(¿ÞVؤŽŠ¸Â]ÆïÚÄÑIÅP®àÃà̧CÃ2>©Áʆ!Ñm +NƒÊBœ”ÐmŒ8ÍF¥„Á!{zÑ™t(!]Ÿ·¹'v¥âYÈ€ŽRÒ+B¤x«ÈJH·ßC~Ô“ü· I¦rgßFKáÂ…¢6{î­Ñó~*Å0¶g,ŒZ3­i,ßx¸KÜõv?´•4Ííó€ÉV:4,XÅùäS¥>«ã Œ:gÌÄL‰¡ÀðOjŸ_'Ó>‹¬?‹Ó +¤Ñå’VœfÓFžUÛ àäÝÖÌŠfÖq~QMmƒÃú” „LV8Z‘áš)äÎ&³ +‡P±4Áï)¬”Šh0€I"°i¨¨ûG:Ëe¨Ü5:ÀÀeW^ÊÊåâ}µfï€ß¾®2dk·G÷ÆŠíûcíy§æÖŸ¡uêõÒsÖÜÂÐém?=géÅèÙÚªMAÆóôŸÚP˜ gôÔå¡ÀöSß›BÖ. ¶g™el¼ÑœÇ"PV°H* Æ©k"6é´,zôV«Jð¬x''i#ŠÜå&ïïAÊÆÉ´Þ„ÄRNy_þpñ¤\›ìÕñ¨¾"³evfK7°¹á³ŸO8‹y×pòõ¼ËÔ5¶æ£wËÅìº\{òÚ—çtºÍˆÂ ªÉŽ}»SÑ“k“ýB™òr©¤ŠÇ³b«©nB~oãH7 ÁM\R*àT ì ÎFKgV Áh  [GÏS5Q’¨C‘‘§éVÀ º">ÊßšN%ý+ ™ ¥Zû`ÛŽ+C[·§:?[Øymב;ÙLbGÆPìè± +]¥ÑKÓ3Ã…=ƒUjP>¶{â§Û×Êo¼Ø¾vððàÌÝ…—&&¯H¾“¥î…^Ázh}gÄ øîŒ\ض§Ð9ÚBXGæݬóboLçZ ¥QcëRV4 Gù|ZT’ÎÍt²€î‚碒\q¹V­%„ +øëtZñ4a´¿âè»Ä\X˜L'ÅŽÐÎjnįܶ5+>›ŸT7 ȤÞ¿õ¯×tIÈ ¨7—Ë%ÕÖŒ ã—®OìµióÛßñÆ.î1ò?üÓÙ×þýÙ"ð2å¾P‰U—ßÜ竾Læ)aÖìf¾Bô𤔠%bV’ZqdПK µ()>“]v«Å,ŠZÿê$˜¶‘0â•€&ÊŒÁ‹(_•B‡N¶€KŬVŸei„Ìh¤]4µtôú6¯Sp› r¼|û÷{ú²üÎÚTÁåH¦3ǯbI›O_¬ü`ÿ+PyŸùêÛç=/Ž•ÃÞ&²È0EƒÏê}|wÜm6±¹gEOÅsó ã·'àI_<‡0“ÌuFnTlÊu[4Ôú¸„¹ ÙÕ‰ÞÄ$¢a¢=Ïó© •“9 ð¶‚Òm9†í¨C²Šgé¾jvw¯È)•Æ@ÆÂLL‹O×/“™`G$F¾B∞¯žiÒH<Ä@ëlÅͼë2ºô˜ïuŸ*ØøM2®etœvÌ_ûtüjut6t3ä<ÍÚ}Ozi|iqâGcGöf|Hršªfê1ò@YR3j-o92ôç*QÑ´t±òæ~É Vïd¬™û‡º«Î©]û™ãVâßýUÙ€Í)¤s!³ˆ«\ÔI?®ÅV0¶Øê©4SÆZ6È*_ÁÓLÈ4Òz- öw.·×Oèk$äU²ÌyJ¿nÛ@ãí¯ƒÒ™c W#G,ÆÈíÚãåÚïì¿ûÕ«¿¸¬>Ô_Í­Ór¿¾¹¹üFío}E—6ihêšÞññ•‰ƒCz$_¾Mz róUÄ1 hEgIK T"¶_W>èhÜÅÑøÂ.$žIx ä 7c“J PsA–a©ö§à­@÷=rO3#yëæ "7 ˜gø·B0xëP-·4rbªÿLŸ¾Ký{Ï秫W'´Úù‘Gµ'?“6‹Uç9™Ò?AøNñh¾]ZkÚç¦×vÅ„:@Ëþ·¶÷å½wøxa á<ãÔ‚Ð~ÉUc¤ᔌÈ<À³áp®××H9<™ÕÞIq"OY@ÒPŽ„ž—Ôa ®”§]dsÇé;c.šQp99–”ÆBÙƒN–WBïJ²…¿á«s›ž™•<ÉŠÆò´¡¬„¸§™Â>¡Ž/ÖÖãr/¥ÅHm=ݵ\evöLE2ùñWîªu{Sq‹¤¤{¦‡Q›ÍŽÓÕÐkŸýbŸX^®-ÿ6ÔhÛç¦Év-Á `½9R(9òÇk Ï5Ǿ«ÞµGöl”k`kIÿóç˜ÕvöÜF¯b,·)ØHÙ}J*Cá6ôd:ÊžpQ¬5)_Fd×C6ÕXhh¦@*[BŽJ +¥±YÐÃœ[mWBi…ÊaRÜê‚H|Ôyà­ïÄO®ÂEuQÿÿZÜØ€ýdeBÝ ÄÏʆªä°ê­üÃÙ +ì­Xù¢Š›ya2Æ4ôŠ­Sk <ÉQ¬+¼µgz–RÛ“iúÁ/Kë7ÔüË’æ\WklSçö÷‹}œÇÇ>DZã؉¯‰‰øÇvâ['9!8v…[©Šè.ÝÔ¥£Ü’ë¥tí:ÔÑ­ˆVK7@«€iSË´JÓþLeªÚ iÒ¦mêªk{¿c'Ð_þÎñï}ž÷}žçå(TÒél‡mK4ÓBÙ¬,Òu×™ãZŽx\Ϲy[0¥7*g +ÝÍ:¹† s0é×<–ŸbQsÞV#åk¨ºÏëa|­¨«)ͱ¹x'•uQÅ^F„7oàA!»|8ÞŠSh÷*»…É 8M³Ë¢mfñ Ú3¹åp ÑzyP’º$‚*c+¯’wœ€upù<5™ä°9Wª\º³u0×pmë†[B~tÓââô@QŠÓ‹ïNåK7…\ÿÔµ÷dFê~ŒÒ÷Fͪž#¿¬üG§C™Bܤ¾ —Ú +#$¦X}Ay£0¼ +Κ*:ø@Ç©éɇ0[UPš9ji;i »€y4kÑÂbѺœÕŠ•ç†¤±RÏì`Ö(¤‡Ægîå¡PÚtmQF¦P’ꋙɒo¤7ê¨Ý¨¢zêÇš"Lt)eÁÃ[a‰q±>UWˆq.¡ +±• NŽ$Äñõ|¤ÝE™rFœFDÅ$ºwà7ÿQÂCŒ,q¨vFÄ„,ª¬ÅTr€EGr˜,SvuåòÇ +ñÔõo…©Çw&º×úäïšzmdp¢’ w&®ÞÜÂ\fíÔµ÷¡Öp/•,t‹*¾Ò°òÎüõ-ÉDŽ´¹©gfÿä‡Û7%BÀÐgÿÞ§¼»©·×عÿ%û `QÑlɯëSe(u£ªÌ z0ÓH™ÉK (ǹùVÞÉK¼™YÎF‰Ê rÄí ÚÝž‘˜20¼0X'²x:Ô¹êC²Hu¸¡wÍ UãTHLÕ7©Â£*º ªÑ$V‹+ GZûq›Ç\ÝbÔìt$+òÓVóº@éÌ©‘ïDwå‚…¨³pôX!­´¹¯jñ½é±”åöÛ;²Ñï­y9Ãó’)®skç ÒOdÑpüä*ôÖäËn §Ô)óSŸß8?; +ØYÛo,-Ød>HkóÑePö)¾Ø…è·ÑêKž“6+-ÃrGpü—ªšá|ª?m¥ÌÒÒaÎÏ{y7oáEÞDëŽ[([š ·a7z±Ó&2dB'ÓàUú&^+ZXC ‹ +˜ ß8WAc%£„PƒÛHU)ÜêZ+Ùh«P =Î>ýtG/Z¥Dëð‰¡Ò‰PŸMäy{"Òâh—•«_Œ3¢±ì*Í•ŽàRè€S¤ .k”$>»ßÀÓdœ¬ÒùÏï)_) +¦XŽOO¢9Ô¹}iáSÉHz +kf!Ëü²Œ¨ñk‚y/Nâa ꢡ嵨¥‘{’oÑ0;5·×B@GØ7y!¬Åœ iàø^ŒXA4o„lõÁ´_EéõÜñ?ŸÝòkåëW«üí%ôÚÉñwNœ¾2ä®Û8ƒ§?B¡ó4û蹿¿øß_NŸE-ø³Ê_ç•¿¿ÿ†rjãÕ×wòUe¢‹ÀYè@ Ýçq1ls °EcVžÓõ‚EåW4*KUIÌ|.:”äf! ÓN\,©û«Ö4úa{D« “ºXÀäÃöJÂ'®öýŠ%2 ©nU_}÷ݱ"Ùö¹†ì̯~¾R õ¶qz†wm?ìάïjËðU÷Úö›dÑöÞzÄ¢.‰:š¶¥· O¼²Çj4-uÂÙÔ†'·¾²ä®ÙVÍ· PÿjÍ`>í vAþ=Ú5 ’·j(=À‘ά+-1#q,¢z´k@ Kj¹V3 ßµ¢m("¸bà¤î ²Ôbœ–¬# ßZäoKÖVE2ÌV•tu²gC9ƒ„0 ^~a"uàR`ê²ÜòîX‡L–H"è|ÖY )·½ýüܸÇÏÇoH=‚NÌç*?½-[“nê–ƒR½¾ +ˆNîß>]êéP¦½åvbVè^w¥µìÙé´žeö$–Ü}G™¹ûŸÑ:èà¢f4_ÌDÛ}’ gÔrnŒµ@Æ- m"Ç!h‹hPÐÓ†..Óîóº™})‚™–¤¡Ÿê²2,¨¶74…9¦Ê> Bðñ·©Žl—ÙPX­:‚$<07QµˆÚÒ½Ò}qÖÛì{æY7“ßœåðõï†Séziòàé‰WMl‘©÷xöfBëgå±Ð­Ý==QýÂÝgþxZBOÖ”š&inhG¢ød£Ñév‡Ž%ÃåïÈî€ïÄáI¹ÙÝÂ=?žÛd1¸œ~ßÆ|Å™s#•7 e˜‘KÐ#AHø)â×hÆMFÜŠ¸°Ä[tíˆ`½ì“’õá¦BˆE³^ÑY waWÕaˆ‰ z€w‹«5 é®*p"ûÀÓÑæRÞDO¿m¨§‘¬»ƒ^Bk.e_òç2-dWOƒëa!”¡rÙV‘ɯ5ÏŸ·¶öÔ²Â×d:XÍfåû÷˜GÕlÖŸOHÁ$h¢}¼‡wñ OñˆwðØ.p~äB!ôBÄ.1,\½`À»„¬T‹]dAQ59l®ÅäW«ÆOATó¨:éË–®¯U9„¯dÖ]n?!Z€Å4î/ÿpdæ.ÖQͲQ¢ÞÚþªËkµ–'²CÏÕ…ZêM4îUîìÿÃPÔKwÓsDqiQšs”ieÛÏ~U.ü½yÑÖLÞ#ŠÕö¹6²Ê§ß~æ`âT¤¿ô®oª4ô úâý/•O4#šL>àu r)¾›‡ |dŠÓècÞÖ‡ÍbâúÓõˆA£PñrÁäéì #Lyü”Ú­mË–ã@À´¨É³4¡FÕẪ-UåþEâÂjgc?õ£î=ê˜2u„¤úxâòääe×î -v»åÊ/&Ûž:nJ74¸¤TÄHé°gÁki]3ëm=K?±Ú¸ô'åwçЕG>úÕUÛFZ†çûf<¾íÇG|$>ÆîøˆxÙã5ãÛUåBâõ§­ß|íÚm`ü+ºO+OÿIž!B"¢e ›Õ*.ª³jMÚ "-F$A–€“(…¹î#I@«•d‚5,«|Nìã!)”Û¦¦Õá9ÛÚd†Ò÷² M{Š•(´~AÝꯟ–ûRj8ŠØ‡µâØÈTbÿ×ý>½ ƒï[&"A³—eâ– þ„{µvû–§çtÌgˆ4ñš;Þm– ýGZ«²`R¡]|OÿN~¤²,‘' +å¤hchŠKê“CkÕöZ hÒp=«ª’jÀ ‡üp{hXü„Üh9¶½ærF©[>Rh£Ý+–•íˆÖ%RF–nLJ íKƒËd´ øFOòŒ\çWVáÓ‡Ýi‘ÕhR9í­û E9ÑŽÕ–âaý5¸ÐúÑè^‡¡Yo”ß ¸ŸŒ%¾Çðç xsɃÛ×°~„}ÿ?/YÃAŸ†aø#×k¥…ÍÅؖоÝä<&ÄrOPô÷B-‹Dí´šu -8ïQ#"‹ +nø. ík‹*³·­V ;-†ÓNÓ°õÂÕ×F'âüѳɡC‹_4°Ãdpf§ÙLú<טeõŒ'[M¿ûùÓ‹‘¥šÝ'Ìý¼Y¶i*ÅSÓÛ©¦Àó1„ÈúÓG”ÔA¤ZÎAÞk%A—V‹†Œ‘6`ÑòSD·Ä5ZÉÓ6è `¬÷Çí*/8¯ñOA£V€ú„_±t”,ððY៲Zvg7Ié…*Zñ&ø'ÿj¿52šg­kÃb#æsëçrÔ–w"ÛöO åÏÜpH‹#æÔÈö]§11¯Ä‹ÛÅÚäòáh-Ñz@QKñkV›Kzg¥­O>~À¢þVˆ¢<é(±_»ùø7 §¾&Bæ(9Cèˆ(r›¾D¨UI.¡‘@€ ñmc ‹¤¢á I¯„æs=<úÛ¸â;(öâÊ°›”ìPzB•Ñ¾ŽÁ^08rxz‚‚ƒS³ùæ[LJkÕà—oŽÍ¿2?<hmë¦ç +}'‚GâÑç7´=­WœYsµÞ÷îêë' +s½#›Ç<ÉìÉ›~x§©~€K¥²E…¹V®Ý‚‚¾.»NMs1œ9S'HK „ц(Ѐ >C· +¤Úu5²ÛWQ¦‘äŒÒþ0æ6ŠÊÕ@î¨ì»ú˜ÄÙl×Rk'µp8ìsð_À§ü/‡Œ¿5 ÌϾývSƒàCJ,^zõ̾žóåqÛ¿¢¡Î¶f ,¬RIÔ["ù!ÒGž¨‰cå%›FiàÀ¾‰†‡õ)dF½€¦PÊ„}ˆœÐÓj ¦(B›\]Ë£çN»üj”³«Ê>-A õ4éºÌÒpi'¸G’*ä# ·ÀLLËê@;ô)hâJ‚qSò/þ†Ï âm–óÓ€“_:[¡©ð\q¢N6º±€Ói_é:—rÇOü÷ò ßb6 ÒÐûÏYÓÇ_êÇ_ò1®¸wòç*¥S/’îgNÖ|•Ô¾)õä/³w ç‡r?¦Œ™¤·Û ÛÜÓƒ£‹ÕÛ5íz4Ѭî/&y½E Òã‚´gnÂ;9mèúÊÑÁ`°@:ÎÖ=éÙþK“|ýìã‡{ŽJᾦÓáý‚´/èétIÕMˆ™ò¸‹‡É =®‚¹h˜Ì‹°M Há_q Ö±¦œ öòÚ0ŠM~<ïíåU`FÀ <ŽÔ¥]íï2iç°bY{~]›?™ÕئÑC«‘êÛ5¢ZL[‰… üÉw¬†»áÁÞw>¦²Är¹KëEæVf¶+T—î_«B]l€+õ÷x•)SœÚÚ©tª!üB°¦OWÁ·c¢®Âå µ[­æ€lC)°™~f6å ‡ËxNg+¡9í„@ô•#zt­ËâÇÓ5n¤fI€EM®9¼*·o>Îìaåý±§"rÛQ ƒÈ’>;§È^v›âSKwYM±g«{7f}SB>ØS µR9jÿ•&ÜO˜TCzŸ—yrpéõ7®Fâ´”šUF •;LZAî“#ʉþd”£¸l\Ĥqëœ:›ÎlOЖ,SÀ€jçNíQ|' `î>.΢x`ô¸Y9Ü dJîæpÄA;ñ;´0˜`Ã#ü‘oÍY©Û喙–m\N¦ÆëÙûÆkñÜ©Uiò×u}¦<¹u§¦ 'ÈËeoÕˆzÃä«O¾{ã½=5äé.UÓ­‡¡™.W‡?n|0–4µS8fKíæ"eW‡#&T- 4¢=Îs¸'xÚþÙ«žììðY~̆†_Qüé›N +¡ß¸»U$×["çÑ4v óø."ÍÎÿ¤SÈ §‘ ¬—úCÔ"R¡ª‘É[KÛŠkG3ué8Ä4WôJJpÄ zÀ…$S;×¥@×Ðã›ÀºYm¤ÉgÐБ¨òøµÊ˜-ŠTyÅmö]½¢=à'bU¾ÑÊ—N7j󂶄ý ;0Æ+?»nÝòåRÇ#[ÎJtž¯Æ4öd¬²¹"1M¶g!›8ÐؾQ•Æ&ë>”3qvá+HÖq ¼6Ó=³yÅÃüŸïjmê<Ãßw.>—8¾ßûøŠcDZcÇvãÄ1±IKÈB—@†²‘UdMX­€UP±Òuiºj0º1Z1„6Ô®Û¨Ú ¶1µ?ØÆ&4¡®ª¨TUZÅi¢ÕŠ˜³÷;ŽS¶J;ÊÑñ¹|_ÞËó>ïóš÷–tMòS{j§Z³6+˜Çʸ龜™¨-né!Z™jn+à-ß73ãµÑŽ¸Ôz™eˆd”6ë°AÛDǃfÑÈgdJ ûéÎàÍ‘[¤QÔ“0*F=M +~Ænü {TbÕÀ%9VCÔ©ðIî³°©ôFúÂ*ZIÄÂu~[Åìp!)Er<{Ùp1Rš*vGÁoï^\(ð¥™a§[)L\rÓ&²øtµ­bÍŽ5„‚ïpì±~˜HZ8j•Ù&çµ%cé¡d>¸Mÿ +üÕ¡ j/…Yô‹'«[°¢“¥üaž÷#Ö†ç,äZ¸Ñ “æLÃxÒ⸮dT™IŠÐ¬Î€Ó]óõ¿ø½/ÿáÔŸ~‹ßöI“[™¾/hÜÜI‰)âåwïðº÷_yþúÌ-ªÀ¿vHÌ»bd°K°¸D8m ÖÆ`~I "ê+å|›•r‡bPpGTËIq¡•¡²HX e 6·»)›–ràdíßÓ°˜èKBê% †(¢#ÕX×kO•]”ÚÆU-¦¬*ÐL‚‚¬à—M©mLü'뢢ƠWçIl{á’ïÏUFÛNvOË¡¶qÏd¦4•–s[c“#µªÒÌ©X£`x=Dïm÷V´Y©m4^Š+»–o<]è·ìZã{ž+ömŽ7´Ù-úaÐý›J=vì¢v¨Pt9%±™à  ŒÊÕa$ cÚe +‚ow z–ѵÇþ›, ðÈä:MÍÙÌFKI½\”¯w› +]ÝAiÝÓ²-3hL¿q²_ŸîÅOE*R^{QÚTðñ÷´•áJíææ”@¨,Ÿ]¹M}hÊ£R)×õÛL:óANðBQ;"Ëç0À[À`x4â÷¶¸m’I×Ä`¤›HæpàA¸Òkc€ f²º2ÆÎ4DjAѪ2+ÉíÖÚåÉð–o‹¯§Sg–<ÍîGzñ‰q¥ï¥"E·'sN£Ç%»w¦zÃìµK“àgqåÔqfyQªÔjÃv,Å\ê`¦Ó +4bÍve!#µ`ôB2d’ Ns]*GTÄ5´1|‰8>^–F-Ç„ñcvÉ Ío:söáÁɱ#u– mzcÜÝm¼³ŸßW»þ¥¯ ¡žXun,^¹Ã¤ N2¨¿Ô•J Ú !ʘ øÒ¸]¢Id… öX…ö•Æ´Øê±±f@‹‰¥X‰Ë6äX½VBj„Wõ ©–ÕI«£ÁPµé«Nâ\–ºµÛÕ>/†Úåøì>Õ?<í ŠqÃÒu-ãO†z¿5•âq[Ö½Šw•;,Îæ´Çzk¯=¼kÇòa¦TÎì;µ·zº xÔšPVîÓ·éP`á’Óâ}b‹Ø$"¡Åi1hÙí¯ /r$@¥ÄDU ü 8!*»SÉ€+ÖzÀ9 Åá×òßÙ`iUÎ¥~Ÿ”·²Æܱ’9Ò4jQöÍ+éVãàünæE¼÷|[ ÝËTBLüÊ{&^Í|-el«0LEô¶©}t—ØX]¹Ï~èOƒªiM¹¬Ð­…°ý it`-/bÁßârØ­’I/ôEx°YùÌfrÀtX5¼¡cT>5›Ìi«Ùô9ãÉÇ eXÊlVÌ©õ¡—Z#g#}i35õÃÝ£›_9ÌG‹‹‹ÅBÄØ·?»Ô9×»þQæo¸ã”"1Äx“K[j/à2æß­-ãþGÕ'ÚÒþ£Úùß,aˉ+«ŒD?žeP²J%$ÚœÄ1Ar‰0] ‘€×플z ä¦Ñ§² §ê* Ì…¸G`ZR¹ÑMw’¤‰ÅKþ$ÂÈÍi¸ª%Ó’9šŠyc†ç¾š(üÎ\<À]1=®¾±£VYo ¹¸«òÏŽ(|5XüiûÅgíÚ²äóq¦Û»¾»¬8L[ö¦ÿ^ªš¶Ì08öËõâI¾ÖFß)¨³”Éf:€Ã> ­+èE'Ñô h¬'{œ›E/j0jÚNƒKu— ~miµ\¡ð¾T"raÒï«é¡HÁêì—ÍNKörÈ.¤6†åÚûöu=gk¹Ã…³öD)?»/«³ØµÎ¨·öñÆó‡û†ô¦{>™á‡‡©7«­u§ŽZ?>]ô¸$AÃ7™F¶þ{ùï…¢ƒ ©õÑ[ÊyDŠw ¥Çæ“(ñ2¦°+½HŠbB¤cøë¸ègÝ„g c›ë”8~—¼cÔ”u +-em¢Ö2ó‹À=£¿©eq_ôGBäaÝÓεÔRŒSOµ„oœ½—–¤]Ê0a¹¨õ÷ö&q KÌ͉Ú9ZÀG<…Æ.p7»ˆWÜäîm*òÖþÔç!wcÏz7ñí÷¨zTöpï½ øîþ55/}I j;ø¨;ìW¨/ ‹À®ÙxÆÁÁdehjB>‚÷¥æu å +pˆy·®á@c¶}Ú7€ŽS@ç- ’ºÀa]y¡ïÑ^àX#ñˆ.Ýc@Çz¾üÇ?ñû€yèò¬¹áã°ì+npLÌú°¼ó «…ú5 u¼r¸NÞ©¸A~Zq/1DK—^MÖ¾Ã]èBNq7jpOqãkŠëäo7È·gLW°ÁœŸš ç ³³áX<I G“™\fnrÆ6í\¶²!ôc&ëŸÂ$ÂÈ£€ ÌòFŒÿ3ãüÀ F1‚ï0Q$‘aîÌÑ~6}m^gaÑï2㈹B…>ÓJsú¾È.ÿâu¶É׫Ÿ¬?îê½Å€¿£hØÝ9­X4ý1Ü}¦õÝn‰F0ÇN +endstream +endobj +368 0 obj +<< +/BaseFont /PVEBDP+Wingdings-Regular +/CIDSystemInfo 1313 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1314 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747] 134 [891]] +>> +endobj +369 0 obj +<< +/Filter /FlateDecode +/Length 3060 +/Subtype /Type1C +>> +stream +H‰|TyPgïf¦»AaT:=‹Ónw«x œÁcD²j8Q‰Yf˜•s@ŽRÈ F™Á¨ ¡E#h`<8 ®€(‚«aYº‚G–Õ¸+žqãV^O>¬Ý’­Ú¿¶ºêÕ÷Þ«wüÞï½Æ1¹†ã¸2jeX\Âú¹Ñ…FƒFcÌôYš™¦sx‘ÅÅ÷äâWÍCSä#?eÐ;¾ŸÔ?Åõ†;æ„ã÷Ÿ†gfI‘)©¹BÀ‚jo‡ “󼵿¿ÿ˜ Ât™Iz!¶0'WŸž#|˜¡Í4fe5¹z¯––&Œ¥ÈŒú½1Ïaü¹Á#è ¹©z£ ‘œ))Þ¨× ¹FNŸ®1n2žÿQ“ÿO)Á!H¹„µ‡›+sM†ÎOÊ’9VE›¹%#×hÐçøú-‹+ÌÒ ó>ÃpéÃœ1Ì Ã&`˜»c1l†ÍÁ0_ °¥$aQKb3¤ÉbÑX –Ž•cØþ+|;~ÝÉÓIãÔêÔ/ ˾•¯‘_#”„•xDú“WÈS!T5è<Û9Óù;_³ËÍqžã’ÆÝ?3©¬K|Ù…KÒ³KV&Kí1£¥$T >…À~FH$ K 8”Ñ}Ô(ù»±7„ I'ÅnÆñBMž*ìaùx=¤ÊžÛç3ÅÙsÒƒŸî÷8·ýUã+gp+äË~@NLǽóÿ²ýù•xùgMOS;+LwÁrð&æò™–K=)Íññɺµñguݼ¢º.ÏÎåã`‚Y20)a–Cî$Zò›ãˆ„‰W +©¨.ƒI¢8<o™X¦„IÈl¥þØE<¾ÿpŒ[øÍ + MONà¾B8QªóÄön“&ž7‡.[Š¦!z^¨‡¥¨6+¬¦ƒ«;ü|ÑPÓ#ͧ™œæ[[†YXðf¨¿E]]\Í[)ú̓-—oªž„ÜAü¼Å9F׈œˆš†+Ç.±ýMº¸ˆ‚õ>á×IzäÏý‘ Zý¢èèúê¬1\à$Ô‚3ýà)?R‚ß= ‹“ÐJ +YFb6´!? +Í„£Œ•z ÓŽ¶j®;7yYª1ku*ä9ÖñxЂüLÂá5øËÄ,;Ç ŸÈM豧á¸õ ÊKI+–­HŠ‰©­Îà³Iœ(¼ÏBøÛÁm0ýr‚·}UÍný¤Ì\ÄWOÀg¤ÄK$ù 7ð'9Ý|%õl<Ÿ¬_»ÎÁ”™/[R›f]ü˜Y”„/LÂWdY¾û!ÑCb„1Ý(Œ€ù$ÒÛƒ ´‘DIï‚ P“F’i…é=r ¥êbU«³•¬ÒÜpP{M÷P Ji‚óñð‘ ؃™wÁàc¦ÐW—'6_´o“ÙUJð"“¹?"ÃQî–%¹ê‚Å“KÉm÷ó†óî}[Ý“×Ë‚äßÁ<Ì)ÿ%ra—¯ÏÒdðfhBޣפ2qæófüÁÆT•WZ+¹öªæÆ6öÖ©U¡<ݨݑ˜ÚØV™÷[*«TŠ€iýÀEZ1øÓ7E_˜ÈlÏÍü4… [uáïüKwﶵaçŽZž>û}óàæÄ}ZEx!4ù¾™ 꾋UxE ÜÔyâ{àìÀ`“ÈYÞÒìh{ƒjÍÔ©-ëV±ÈÅÓ-(—ÚAÞ#³Áùë«'z9«Ôü¾pXÒl3÷õ¨Äk”ÉÄÐÅS©‰Û´=5=‘JêþëЙë7/Ø I•|ùŽrÓ•¢¸ˆ‘·¯ßà6˜ËaªL,õŒõ@űz¸­‚ HBBЯÑDäó|.,¸Vu¤‹Ëÿ(NÒì\Ç~ýå×»xË[¦mO}_?ûMMt2¯@¥«psL\KòÝï=[•¢ÛK{QôÈqª£®¥ëHMéîÏ9zh/¸HW·7/{MŒ/NÑó‰ÚˆUA$’÷ºQŠv¤g)Žeúy4ÑÒhŠ‚XÄÐ/w­&Ìd«Qsr‹\gÌBhê#/p»ráXÛIÞº™ ˆÓ…¯Y{¸6KGal¿QÜÏÞ¾Sý‡Ë|Oçá¡g*¨§è‡w¬mÖFù£/˜bËÖÝ&.¥$-[ÇF¦ôÞáé—OÎwõœ;™¥=ÀYw”—”¨舄°(ÿø¸÷Âû(@jg J±H{‘ôo´¯a6ÿ>±œ×Xš lWÓ©s|»%Í–À*ÊÇBáÓ|\ZTüz¿K–Ö‡lé€qècV‘h#´C8$(’œf}ò«7¦‰3ŒËàîp°sÙÑÙõ’; ˆRSçt3a›Èpà 2¡(8¦[&Œ¥ÝXÛ«4ƒ7^y Ú„ VX§B¦¨fÙˆÌþ|Z¶Åå©y÷aÏ•˜Ë%—ç}þ¼yžßï÷œÃmWì/øXžö£T®/=9+iËà +fåWtøo…,|ñ¢è±•Va‚#]=ˆÒ†F'ÅïkÉt]&9¢öï–®úCÁq1:t¢P¦ýhŸâ ³pÙ|ª¾µ¥Q:ãXþù>Š=Ð %( #¢÷9Äjç𢠰]I4Ò9~ZMy:¦Ÿ[3ŽÊ,8býHMjƉÒo9w‡»íœÔäij¨œ™ùI†>j¦ßptûýC>œý~´_yÇE FÖ7å»qËÄ+AùxR-¦ æËNE1'Cw²ÅÔÎa¥¶õdë{Éí¬wòܤ{ê Ø<4tBêç”æîÇÍB¸[QÏ`£P€B˜õG´%}Ë—hÇIÕ,-0âlÓSg³µôˆRæ)÷–!ã< ®y×|%Ti*[A«ÝUÎ2~кàùÁs½¬FþlœÓ _Æ´Ä‹z©W¨—î¥*¯±³I0$_á:'6bëiŠî0BKwƒ»«íak^w5¹m®O0§kÈr†ªV¼›Äœ² !AÂÒ“äáÐä 7%£é²Q8q> +endobj +371 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4622) +/S /GoTo +>> +endobj +372 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4624) +/S /GoTo +>> +endobj +373 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4626) +/S /GoTo +>> +endobj +374 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4628) +/S /GoTo +>> +endobj +375 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4630) +/S /GoTo +>> +endobj +376 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4662) +/S /GoTo +>> +endobj +377 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4664) +/S /GoTo +>> +endobj +378 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4666) +/S /GoTo +>> +endobj +379 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4668) +/S /GoTo +>> +endobj +380 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4670) +/S /GoTo +>> +endobj +381 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4672) +/S /GoTo +>> +endobj +382 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4674) +/S /GoTo +>> +endobj +383 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4676) +/S /GoTo +>> +endobj +384 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4678) +/S /GoTo +>> +endobj +385 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.un.org/securitycouncil/sanctions/information) +>> +endobj +386 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4680) +/S /GoTo +>> +endobj +387 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4682) +/S /GoTo +>> +endobj +388 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4684) +/S /GoTo +>> +endobj +389 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4686) +/S /GoTo +>> +endobj +390 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4688) +/S /GoTo +>> +endobj +391 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4692) +/S /GoTo +>> +endobj +392 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4694) +/S /GoTo +>> +endobj +393 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4697) +/S /GoTo +>> +endobj +394 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4699) +/S /GoTo +>> +endobj +395 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4703) +/S /GoTo +>> +endobj +396 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4701) +/S /GoTo +>> +endobj +397 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4707) +/S /GoTo +>> +endobj +398 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4709) +/S /GoTo +>> +endobj +399 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4711) +/S /GoTo +>> +endobj +400 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4714) +/S /GoTo +>> +endobj +401 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4718) +/S /GoTo +>> +endobj +402 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4616) +/S /GoTo +>> +endobj +403 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4621) +/S /GoTo +>> +endobj +404 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4623) +/S /GoTo +>> +endobj +405 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4625) +/S /GoTo +>> +endobj +406 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4627) +/S /GoTo +>> +endobj +407 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4629) +/S /GoTo +>> +endobj +408 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4631) +/S /GoTo +>> +endobj +409 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4663) +/S /GoTo +>> +endobj +410 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4665) +/S /GoTo +>> +endobj +411 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4667) +/S /GoTo +>> +endobj +412 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4669) +/S /GoTo +>> +endobj +413 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4671) +/S /GoTo +>> +endobj +414 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4673) +/S /GoTo +>> +endobj +415 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4675) +/S /GoTo +>> +endobj +416 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4677) +/S /GoTo +>> +endobj +417 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4679) +/S /GoTo +>> +endobj +418 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4681) +/S /GoTo +>> +endobj +419 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4683) +/S /GoTo +>> +endobj +420 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4685) +/S /GoTo +>> +endobj +421 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4687) +/S /GoTo +>> +endobj +422 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4689) +/S /GoTo +>> +endobj +423 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4693) +/S /GoTo +>> +endobj +424 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4695) +/S /GoTo +>> +endobj +425 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4698) +/S /GoTo +>> +endobj +426 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4700) +/S /GoTo +>> +endobj +427 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4704) +/S /GoTo +>> +endobj +428 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4702) +/S /GoTo +>> +endobj +429 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4708) +/S /GoTo +>> +endobj +430 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4710) +/S /GoTo +>> +endobj +431 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4712) +/S /GoTo +>> +endobj +432 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4715) +/S /GoTo +>> +endobj +433 0 obj +<< +/D (BICC_UN_DDR-Module 2_11_online_final.indd:4719) +/S /GoTo +>> +endobj +434 0 obj +[1315 0 R] +endobj +435 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +436 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 1316 0 R +/FontName /EFZRMV+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +437 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +439 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1317 0 R +/FontName /UQZJCP+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +440 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +442 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +444 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +445 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/N/b/e/m/nine/o/one/r/space/two/v/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1320 0 R +/FontName /SXECAT+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +446 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +447 0 obj +[1315 0 R] +endobj +448 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +449 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [723 0 R 1] +/P 240 0 R +/Pg 9 0 R +/S /Kapitel-Head +>> +endobj +450 0 obj +<< +/C /Pa1 +/K 2 +/P 240 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +451 0 obj +<< +/C /Pa2 +/K [3 4 724 0 R 6 7] +/P 240 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +452 0 obj +<< +/C /Pa3 +/K [8 725 0 R 10 726 0 R 12 13 14 15 16 17] +/P 240 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +453 0 obj +<< +/C /Pa1 +/K 18 +/P 240 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +454 0 obj +<< +/C /Pa2 +/K [19 20 21 22 23] +/P 240 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +455 0 obj +<< +/C /Pa3 +/K [24 25 727 0 R 27 28 29 30 31 32 33] +/P 240 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +456 0 obj +<< +/C /Pa3 +/K [34 35 36 37 728 0 R 39] +/P 240 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +457 0 obj +<< +/C /Pa3 +/P 240 0 R +/S /Lauftext +>> +endobj +458 0 obj +<< +/C /Pa1 +/K 40 +/P 240 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +459 0 obj +<< +/C /Pa2 +/K [41 42 729 0 R 44] +/P 240 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +460 0 obj +<< +/C /Pa3 +/K [45 46 47 730 0 R 49] +/P 240 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +461 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceBefore 8.0 +/StartIndent 39.0 +>> +/K [50 731 0 R 52] +/P 240 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +462 0 obj +<< +/C /Pa5 +/K [53 732 0 R 55] +/P 240 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +463 0 obj +<< +/C /Pa5 +/K 56 +/P 240 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +464 0 obj +<< +/C /Pa5 +/K 57 +/P 240 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +465 0 obj +<< +/C /Pa5 +/K 58 +/P 240 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +466 0 obj +<< +/C /Pa3 +/P 240 0 R +/S /Lauftext +>> +endobj +467 0 obj +<< +/C /Pa2 +/K [59 60 61 740 0 R 63 64] +/P 240 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +468 0 obj +<< +/C /Pa1 +/K 65 +/P 240 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +469 0 obj +<< +/C /Pa2 +/K [66 67 68 734 0 R 70 71] +/P 240 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +470 0 obj +<< +/C /Pa3 +/K [72 735 0 R 74 75 76 736 0 R 78 737 0 R 80 81 82 83 84 738 0 R 86 87 +88 89 90 91 92] +/P 240 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +471 0 obj +<< +/C /Pa3 +/K [93 94] +/P 240 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +472 0 obj +<< +/C /Pa3 +/K [102 741 0 R 104 742 0 R 106 107 108 743 0 R 110 111 112 744 0 R 114 115 116 117 +118] +/P 240 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +473 0 obj +<< +/C /Pa3 +/K [119 120 121 122 123] +/P 240 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +474 0 obj +<< +/C /Pa3 +/K [124 125 126 127] +/P 240 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +475 0 obj +<< +/C /Pa1 +/K 128 +/P 240 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +476 0 obj +<< +/C /Pa2 +/K [129 130 131 132 745 0 R 134] +/P 240 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +477 0 obj +<< +/K [1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R] +/P 240 0 R +/S /L +>> +endobj +478 0 obj +<< +/C /Pa9 +/K 203 +/P 240 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +479 0 obj +<< +/C /Pa2 +/K [204 205 206 207 208] +/P 240 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +480 0 obj +<< +/C /Pa3 +/K [209 210 211 212] +/P 240 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +481 0 obj +<< +/C /Pa3 +/K [213 782 0 R 215 216 217 783 0 R 219 220 221] +/P 240 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +482 0 obj +<< +/C /Pa3 +/K [222 223 224 225 784 0 R 227 785 0 R 229 230 231 << +/MCID 239 +/Pg 13 0 R +/Type /MCR +>> 786 0 R << +/MCID 241 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 242 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 243 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 244 +/Pg 13 0 R +/Type /MCR +>> +<< +/MCID 245 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 246 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 247 +/Pg 13 0 R +/Type /MCR +>>] +/P 240 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +483 0 obj +<< +/C /Pa3 +/K [248 787 0 R 250 251 252 788 0 R 254 255] +/P 240 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +484 0 obj +<< +/C /Pa3 +/K [256 789 0 R 258 259 260 261] +/P 240 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +485 0 obj +<< +/C /Pa3 +/K [262 790 0 R 264 791 0 R 266] +/P 240 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +486 0 obj +<< +/C /Pa3 +/K [267 268 269 270 271 272] +/P 240 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +487 0 obj +<< +/C /Pa10 +/K 273 +/P 240 0 R +/Pg 13 0 R +/S /Zwischenhead_4 +>> +endobj +488 0 obj +<< +/K [1327 0 R 1328 0 R 1329 0 R 1330 0 R] +/P 240 0 R +/S /L +>> +endobj +489 0 obj +<< +/C /Pa9 +/K 298 +/P 240 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +490 0 obj +<< +/C /Pa2 +/K [299 300 301 302 805 0 R 304 305 806 0 R 307 308 309 310] +/P 240 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +491 0 obj +<< +/C /Pa12 +/K 311 +/P 240 0 R +/Pg 14 0 R +/S /Zwischenhead_3 +>> +endobj +492 0 obj +<< +/C /Pa2 +/K [312 313 314 315 316 317 318 319 320] +/P 240 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +493 0 obj +<< +/C /Pa3 +/K [321 322 323 812 0 R 325] +/P 240 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +494 0 obj +<< +/C /Pa3 +/K [326 327 328 329 330 331] +/P 240 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +495 0 obj +<< +/C /Pa3 +/K [332 333 808 0 R 335 336 337 809 0 R 339 340] +/P 240 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +496 0 obj +<< +/C /Pa3 +/K [341 342 343 344 345 346] +/P 240 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +497 0 obj +<< +/C /Pa3 +/K [347 348 349 350 810 0 R 352] +/P 240 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +498 0 obj +<< +/C /Pa3 +/K [353 354 811 0 R 356 << +/MCID 357 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 358 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 359 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 360 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 361 +/Pg 15 0 R +/Type /MCR +>> 813 0 R << +/MCID 363 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 364 +/Pg 15 0 R +/Type /MCR +>>] +/P 240 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +499 0 obj +<< +/C /Pa3 +/K [365 366 367 368 369 370] +/P 240 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +500 0 obj +<< +/C /Pa10 +/K 371 +/P 240 0 R +/Pg 15 0 R +/S /Zwischenhead_4 +>> +endobj +501 0 obj +<< +/K [1331 0 R 1332 0 R] +/P 240 0 R +/S /L +>> +endobj +502 0 obj +<< +/C /Pa10 +/K 385 +/P 240 0 R +/Pg 15 0 R +/S /Zwischenhead_4 +>> +endobj +503 0 obj +<< +/K 1333 0 R +/P 240 0 R +/S /L +>> +endobj +504 0 obj +<< +/C /Pa12 +/K 393 +/P 240 0 R +/Pg 15 0 R +/S /Zwischenhead_3 +>> +endobj +505 0 obj +<< +/C /Pa2 +/K [394 395 825 0 R 397 826 0 R 399] +/P 240 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +506 0 obj +<< +/C /Pa3 +/K [400 827 0 R 402] +/P 240 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +507 0 obj +<< +/C /Pa3 +/K 403 +/P 240 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +508 0 obj +<< +/K [1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R] +/P 240 0 R +/S /L +>> +endobj +509 0 obj +<< +/C /Pa3 +/K [496 497 874 0 R 499] +/P 240 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +510 0 obj +<< +/K [1342 0 R 1343 0 R 1344 0 R 1345 0 R 1346 0 R 1347 0 R] +/P 240 0 R +/S /L +>> +endobj +511 0 obj +<< +/C /Pa3 +/K [524 525 526 893 0 R 528 529 530 894 0 R 532 533 895 0 R 535 536] +/P 240 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +512 0 obj +<< +/C /Pa3 +/K [537 896 0 R 539 540 897 0 R 542 543 544 898 0 R 546 547 899 0 R 549] +/P 240 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +513 0 obj +<< +/C /Pa3 +/K [550 551 552 553 554 555 556 900 0 R 558 559 901 0 R 561 562 563 564 565] +/P 240 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +514 0 obj +<< +/C /Pa10 +/K 566 +/P 240 0 R +/Pg 17 0 R +/S /Zwischenhead_4 +>> +endobj +515 0 obj +<< +/K [1348 0 R 1349 0 R 1350 0 R 1351 0 R] +/P 240 0 R +/S /L +>> +endobj +516 0 obj +<< +/C /Pa10 +/K 592 +/P 240 0 R +/Pg 18 0 R +/S /Zwischenhead_4 +>> +endobj +517 0 obj +<< +/K 1352 0 R +/P 240 0 R +/S /L +>> +endobj +518 0 obj +<< +/C /Pa12 +/K 597 +/P 240 0 R +/Pg 18 0 R +/S /Zwischenhead_3 +>> +endobj +519 0 obj +<< +/C /Pa2 +/K 598 +/P 240 0 R +/Pg 18 0 R +/S /Zwischenhead_4 +>> +endobj +520 0 obj +<< +/C /Pa2 +/K [599 600 601 602] +/P 240 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +521 0 obj +<< +/C /Pa3 +/K [603 918 0 R 605 606 607 608 609 919 0 R 611 612 936 0 R 614] +/P 240 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +522 0 obj +<< +/C /Pa3 +/K [615 616 617 618 619 620 937 0 R 622] +/P 240 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +523 0 obj +<< +/C /Pa3 +/K [623 624 922 0 R 626 627 628 923 0 R 630] +/P 240 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +524 0 obj +<< +/K [1353 0 R 1354 0 R 1355 0 R] +/P 240 0 R +/S /L +>> +endobj +525 0 obj +<< +/C /Pa3 +/K [642 933 0 R 644 645 934 0 R 647 935 0 R 649 650 651] +/P 240 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +526 0 obj +<< +/C /Pa3 +/K [652 938 0 R 654 655 939 0 R 657 658] +/P 240 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +527 0 obj +<< +/C /Pa3 +/K [659 940 0 R 661 941 0 R 663 664 665 666] +/P 240 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +528 0 obj +<< +/C /Pa3 +/K [667 942 0 R 669 670] +/P 240 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +529 0 obj +<< +/C /Pa10 +/K 671 +/P 240 0 R +/Pg 19 0 R +/S /Zwischenhead_4 +>> +endobj +530 0 obj +<< +/C /Pa2 +/K [672 673 674 675 676 677 678 679] +/P 240 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +531 0 obj +<< +/C /Pa3 +/K [680 681 682 683 943 0 R 685 686 687 688 689 950 0 R 691] +/P 240 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +532 0 obj +<< +/C /Pa3 +/K [692 945 0 R 694 695 696 697] +/P 240 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +533 0 obj +<< +/C /Pa3 +/K [698 946 0 R 700 701 702 947 0 R 704] +/P 240 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +534 0 obj +<< +/C /Pa3 +/K [705 706 948 0 R 708 709 949 0 R << +/MCID 711 +/Pg 20 0 R +/Type /MCR +>> 969 0 R << +/MCID 713 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 714 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 715 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 716 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 717 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 718 +/Pg 20 0 R +/Type /MCR +>>] +/P 240 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +535 0 obj +<< +/C /Pa3 +/K [719 720 952 0 R 722] +/P 240 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +536 0 obj +<< +/C /Pa10 +/K 723 +/P 240 0 R +/Pg 20 0 R +/S /Zwischenhead_4 +>> +endobj +537 0 obj +<< +/C /Pa2 +/K [724 725 953 0 R 727 728 729 730 731 732 733] +/P 240 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +538 0 obj +<< +/C /Pa10 +/K 734 +/P 240 0 R +/Pg 20 0 R +/S /Zwischenhead_4 +>> +endobj +539 0 obj +<< +/K [1356 0 R 1357 0 R 1358 0 R] +/P 240 0 R +/S /L +>> +endobj +540 0 obj +<< +/C /Pa10 +/K 750 +/P 240 0 R +/Pg 20 0 R +/S /Zwischenhead_4 +>> +endobj +541 0 obj +<< +/K 1359 0 R +/P 240 0 R +/S /L +>> +endobj +542 0 obj +<< +/C /Pa12 +/K 757 +/P 240 0 R +/Pg 20 0 R +/S /Zwischenhead_3 +>> +endobj +543 0 obj +<< +/C /Pa2 +/K [758 759 970 0 R 761] +/P 240 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +544 0 obj +<< +/C /Pa3 +/K [762 763 968 0 R 765 766 767] +/P 240 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +545 0 obj +<< +/C /Pa3 +/K [768 769 770] +/P 240 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +546 0 obj +<< +/C /Pa3 +/K [771 772 773 988 0 R 775 776 777 778 779 780 781 782 989 0 R 784 785 973 0 R +787 990 0 R 789 991 0 R 791 792 793 794 992 0 R 796 977 0 R 798 993 0 R 800] +/P 240 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +547 0 obj +<< +/C /Pa3 +/K [801 994 0 R 803 980 0 R 805 995 0 R 807 808 982 0 R 810] +/P 240 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +548 0 obj +<< +/C /Pa3 +/K [811 983 0 R 813 814 996 0 R 816 817] +/P 240 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +549 0 obj +<< +/C /Pa3 +/K [818 819 820 821 822 823 824 825 826 827 828 829] +/P 240 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +550 0 obj +<< +/C /Pa3 +/K [830 831 985 0 R 833 834 835 836] +/P 240 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +551 0 obj +<< +/C /Pa3 +/K [845 997 0 R 847 848 998 0 R 850] +/P 240 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +552 0 obj +<< +/C /Pa3 +/K [851 852 853 854] +/P 240 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +553 0 obj +<< +/C /Pa10 +/K 855 +/P 240 0 R +/Pg 22 0 R +/S /Zwischenhead_4 +>> +endobj +554 0 obj +<< +/K [1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R] +/P 240 0 R +/S /L +>> +endobj +555 0 obj +<< +/C /Pa12 +/K 886 +/P 240 0 R +/Pg 22 0 R +/S /Zwischenhead_3 +>> +endobj +556 0 obj +<< +/C /Pa2 +/K [887 888 889 890 891 892 893] +/P 240 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +557 0 obj +<< +/C /Pa3 +/K [894 895 276 0 R] +/P 240 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +558 0 obj +<< +/C /Pa10 +/K 897 +/P 240 0 R +/Pg 22 0 R +/S /Zwischenhead_4 +>> +endobj +559 0 obj +<< +/K [1366 0 R 1367 0 R] +/P 240 0 R +/S /L +>> +endobj +560 0 obj +<< +/C /Pa12 +/K 917 +/P 240 0 R +/Pg 23 0 R +/S /Zwischenhead_3 +>> +endobj +561 0 obj +<< +/C /Pa2 +/K 918 +/P 240 0 R +/Pg 23 0 R +/S /Zwischenhead_4 +>> +endobj +562 0 obj +<< +/C /Pa2 +/K [919 920 921 1063 0 R 923 924 925 1029 0 R 927] +/P 240 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +563 0 obj +<< +/C /Pa3 +/K [928 929] +/P 240 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +564 0 obj +<< +/K [1368 0 R 1369 0 R] +/P 240 0 R +/S /L +>> +endobj +565 0 obj +<< +/C /Pa2 +/K [953 954] +/P 240 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +566 0 obj +<< +/K [1370 0 R 1371 0 R] +/P 240 0 R +/S /L +>> +endobj +567 0 obj +<< +/C /Pa3 +/K [965 1055 0 R 967 968 969 970 1068 0 R 972] +/P 240 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +568 0 obj +<< +/C /Pa3 +/K [973 974 975] +/P 240 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +569 0 obj +<< +/K [1372 0 R 1373 0 R] +/P 240 0 R +/S /L +>> +endobj +570 0 obj +<< +/C /Pa3 +/K [981 1061 0 R 983 984 985] +/P 240 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +571 0 obj +<< +/C /Pa3 +/K [986 987 988] +/P 240 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +572 0 obj +<< +/K 1374 0 R +/P 240 0 R +/S /L +>> +endobj +573 0 obj +<< +/C /Pa3 +/K [1000 1001] +/P 240 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +574 0 obj +<< +/K [1375 0 R 1376 0 R] +/P 240 0 R +/S /L +>> +endobj +575 0 obj +<< +/C /Pa3 +/K [1020 1021 1022 1023 1024 1081 0 R 1026 1087 0 R 1028 1029 1030 1031 1032 1033 1034 1035 +1036 1083 0 R 1038] +/P 240 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +576 0 obj +<< +/C /Pa3 +/K [1039 1040 1041 1042 1043] +/P 240 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +577 0 obj +<< +/C /Pa3 +/K [1044 1084 0 R 1046 1047 1048 1049 1050 1051 1085 0 R 1053] +/P 240 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +578 0 obj +<< +/C /Pa10 +/K 1054 +/P 240 0 R +/Pg 25 0 R +/S /Zwischenhead_4 +>> +endobj +579 0 obj +<< +/K [1377 0 R 1378 0 R 1379 0 R] +/P 240 0 R +/S /L +>> +endobj +580 0 obj +<< +/C /Pa10 +/K 1072 +/P 240 0 R +/Pg 25 0 R +/S /Zwischenhead_4 +>> +endobj +581 0 obj +<< +/C /Pa2 +/K [1073 1074 1075 1076 1077 1078 1108 0 R 1080 1081 1082 1109 0 R 1084] +/P 240 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +582 0 obj +<< +/C /Pa3 +/K [1085 1099 0 R 1087 1088 1089 1090 1091 1092] +/P 240 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +583 0 obj +<< +/C /Pa3 +/K [1093 1094 1095 1096 1097] +/P 240 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +584 0 obj +<< +/C /Pa3 +/K [1098 1099] +/P 240 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +585 0 obj +<< +/C /Pa3 +/K [1100 1101 1102] +/P 240 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +586 0 obj +<< +/C /Pa10 +/K 1103 +/P 240 0 R +/Pg 25 0 R +/S /Zwischenhead_4 +>> +endobj +587 0 obj +<< +/K [1380 0 R 1381 0 R 1382 0 R] +/P 240 0 R +/S /L +>> +endobj +588 0 obj +<< +/C /Pa10 +/K 1124 +/P 240 0 R +/Pg 26 0 R +/S /Zwischenhead_4 +>> +endobj +589 0 obj +<< +/K 1383 0 R +/P 240 0 R +/S /L +>> +endobj +590 0 obj +<< +/C /Pa12 +/K 1133 +/P 240 0 R +/Pg 26 0 R +/S /Zwischenhead_3 +>> +endobj +591 0 obj +<< +/C /Pa2 +/K [1134 1135 1117 0 R 1137 1118 0 R 1139] +/P 240 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +592 0 obj +<< +/K [1384 0 R 1385 0 R 1386 0 R 1387 0 R 1388 0 R] +/P 240 0 R +/S /L +>> +endobj +593 0 obj +<< +/C /Pa10 +/P 240 0 R +/S /Zwischenhead_4 +>> +endobj +594 0 obj +<< +/C /Pa10 +/K 1190 +/P 240 0 R +/Pg 27 0 R +/S /Zwischenhead_4 +>> +endobj +595 0 obj +<< +/K 1389 0 R +/P 240 0 R +/S /L +>> +endobj +596 0 obj +<< +/C /Pa9 +/K 1199 +/P 240 0 R +/Pg 27 0 R +/S /Zwischenhead_2 +>> +endobj +597 0 obj +<< +/C /Pa2 +/K [1200 1201 1202] +/P 240 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +598 0 obj +<< +/C /Pa3 +/K [1203 1204 1153 0 R 1206 1207 1208 1209 1210 1211 1212] +/P 240 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +599 0 obj +<< +/C /Pa3 +/K [1213 1214] +/P 240 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +600 0 obj +<< +/K [1390 0 R 1391 0 R 1392 0 R 1393 0 R] +/P 240 0 R +/S /L +>> +endobj +601 0 obj +<< +/C /Pa3 +/K [1229 1230 1167 0 R 1232 1168 0 R 1234 1235] +/P 240 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +602 0 obj +<< +/C /Pa3 +/K [1236 1237 1169 0 R 1239 1240 1241 1242] +/P 240 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +603 0 obj +<< +/C /Pa18 +/K 1243 +/P 240 0 R +/Pg 27 0 R +/S /Zwischenhead_4 +>> +endobj +604 0 obj +<< +/K [1394 0 R 1395 0 R 1396 0 R] +/P 240 0 R +/S /L +>> +endobj +605 0 obj +<< +/C /Pa18 +/K 1259 +/P 240 0 R +/Pg 28 0 R +/S /Zwischenhead_4 +>> +endobj +606 0 obj +<< +/K 1397 0 R +/P 240 0 R +/S /L +>> +endobj +607 0 obj +<< +/A << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 19.0 +>> +/K 1266 +/P 240 0 R +/Pg 28 0 R +/S /Zwischenhead_2 +>> +endobj +608 0 obj +<< +/C /Pa2 +/K [1267 1268] +/P 240 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +609 0 obj +<< +/C /Pa3 +/K [1269 1270 1183 0 R 1272] +/P 240 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +610 0 obj +<< +/C /Pa3 +/K [1273 1184 0 R 1275] +/P 240 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +611 0 obj +<< +/K [1398 0 R 1399 0 R] +/P 240 0 R +/S /L +>> +endobj +612 0 obj +<< +/C /Pa10 +/K 1314 +/P 240 0 R +/Pg 29 0 R +/S /Zwischenhead_4 +>> +endobj +613 0 obj +<< +/K [1400 0 R 1401 0 R] +/P 240 0 R +/S /L +>> +endobj +614 0 obj +<< +/C /Pa10 +/K 1326 +/P 240 0 R +/Pg 29 0 R +/S /Zwischenhead_4 +>> +endobj +615 0 obj +<< +/K 1402 0 R +/P 240 0 R +/S /L +>> +endobj +616 0 obj +<< +/C /Pa9 +/K 1331 +/P 240 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +617 0 obj +<< +/C /Pa2 +/K [1332 1333 1334 1335 1213 0 R 1337 1338 1208 0 R 1340 1341 1342 1209 0 R 1344] +/P 240 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +618 0 obj +<< +/C /Pa3 +/K [1345 1210 0 R 1347 1348 1349 1350 1351 1352 1353 1354 1355] +/P 240 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +619 0 obj +<< +/C /Pa3 +/K [1356 1211 0 R 1358 1359 1360 1361 1212 0 R 1363 1364] +/P 240 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +620 0 obj +<< +/C /Pa3 +/K [1365 1366 1367 1368 1369] +/P 240 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +621 0 obj +<< +/C /Pa3 +/K [1370 1371 << +/MCID 1372 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1373 +/Pg 30 0 R +/Type /MCR +>>] +/P 240 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +622 0 obj +<< +/C /Pa3 +/K [1374 1375 1376 1214 0 R 1378 1215 0 R 1380 1381 1382] +/P 240 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +623 0 obj +<< +/C /Pa3 +/K [1383 1384 1385 1216 0 R 1387 1388 1251 0 R 1390 1391 1392 1252 0 R 1394] +/P 240 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +624 0 obj +<< +/C /Pa3 +/K [1395 1396 1397 1398 1219 0 R 1400 1401 1402 1220 0 R 1404] +/P 240 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +625 0 obj +<< +/C /Pa3 +/K [1405 1406 1407 1408 1409 1410] +/P 240 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +626 0 obj +<< +/K [1403 0 R 1404 0 R 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R] +/P 240 0 R +/S /L +>> +endobj +627 0 obj +<< +/C /Pa3 +/K [1447 1448] +/P 240 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +628 0 obj +<< +/C /Pa3 +/K [1449 1253 0 R 1451 1452 1453 1271 0 R 1455] +/P 240 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +629 0 obj +<< +/C /Pa3 +/K [1456 1255 0 R 1458 1459 1460] +/P 240 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +630 0 obj +<< +/C /Pa10 +/K 1461 +/P 240 0 R +/Pg 31 0 R +/S /Zwischenhead_4 +>> +endobj +631 0 obj +<< +/K [1412 0 R 1413 0 R] +/P 240 0 R +/S /L +>> +endobj +632 0 obj +<< +/C /Pa10 +/K 1472 +/P 240 0 R +/Pg 31 0 R +/S /Zwischenhead_4 +>> +endobj +633 0 obj +<< +/K [1414 0 R 1415 0 R] +/P 240 0 R +/S /L +>> +endobj +634 0 obj +<< +/C /Pa9 +/K 1485 +/P 240 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +635 0 obj +<< +/C /Pa3 +/P 240 0 R +/S /Lauftext +>> +endobj +636 0 obj +<< +/C /Pa2 +/K [1486 1487] +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +637 0 obj +<< +/C /Pa2 +/K [1488 1489] +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +638 0 obj +<< +/C /Pa2 +/K 1490 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +639 0 obj +<< +/C /Pa2 +/K 1491 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +640 0 obj +<< +/C /Pa2 +/K 1492 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +641 0 obj +<< +/C /Pa2 +/K 1493 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +642 0 obj +<< +/C /Pa2 +/K 1494 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +643 0 obj +<< +/C /Pa2 +/K 1495 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +644 0 obj +<< +/C /Pa2 +/K 1496 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +645 0 obj +<< +/C /Pa2 +/K [1497 1498] +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +646 0 obj +<< +/C /Pa2 +/K 1499 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +647 0 obj +<< +/C /Pa2 +/K 1500 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +648 0 obj +<< +/C /Pa2 +/K 1501 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +649 0 obj +<< +/C /Pa2 +/K 1502 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +650 0 obj +<< +/C /Pa2 +/K 1503 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +651 0 obj +<< +/C /Pa2 +/K 1504 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +652 0 obj +<< +/C /Pa2 +/K 1505 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +653 0 obj +<< +/C /Pa2 +/K 1506 +/P 240 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +654 0 obj +<< +/C /Pa6 +/K [95 739 0 R 97 98 99 100 101] +/P 241 0 R +/Pg 10 0 R +/S /Einklinker-Text__rec +>> +endobj +655 0 obj +<< +/C /Pa6 +/K [232 233 234 235 236 237 238] +/P 242 0 R +/Pg 12 0 R +/S /Einklinker-Text__rec +>> +endobj +656 0 obj +<< +/C /Pa6 +/K [577 578 579 580 581 582 583] +/P 243 0 R +/Pg 17 0 R +/S /Einklinker-Text__rec +>> +endobj +657 0 obj +<< +/C /Pa6 +/K [837 986 0 R 839 987 0 R 841 842 843 844] +/P 244 0 R +/Pg 21 0 R +/S /Einklinker-Text__rec +>> +endobj +658 0 obj +<< +/C /Pa1 +/K 1507 +/P 245 0 R +/Pg 33 0 R +/S /Zwischenhead_1 +>> +endobj +659 0 obj +<< +/C /Pa3 +/P 245 0 R +/S /Lauftext +>> +endobj +660 0 obj +<< +/K [304 0 R 1272 0 R] +/P 245 0 R +/S /Note +>> +endobj +661 0 obj +<< +/C /Pa20 +/K [1509 1510] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +662 0 obj +<< +/K [305 0 R 1273 0 R] +/P 245 0 R +/S /Note +>> +endobj +663 0 obj +<< +/C /Pa20 +/K [1512 1513 1514 1515 1516 1517 1518 1519 1520 1521] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +664 0 obj +<< +/K [306 0 R 1274 0 R] +/P 245 0 R +/S /Note +>> +endobj +665 0 obj +<< +/C /Pa20 +/K 1523 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +666 0 obj +<< +/K [307 0 R 1275 0 R] +/P 245 0 R +/S /Note +>> +endobj +667 0 obj +<< +/C /Pa20 +/K 1525 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +668 0 obj +<< +/K [308 0 R 1276 0 R] +/P 245 0 R +/S /Note +>> +endobj +669 0 obj +<< +/C /Pa20 +/K [1527 1528] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +670 0 obj +<< +/K [309 0 R 1277 0 R] +/P 245 0 R +/S /Note +>> +endobj +671 0 obj +<< +/C /Pa20 +/K [1530 1531 1532 1533 1278 0 R 1535 1536 1537] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +672 0 obj +<< +/K [310 0 R 1279 0 R] +/P 245 0 R +/S /Note +>> +endobj +673 0 obj +<< +/C /Pa20 +/K 1539 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +674 0 obj +<< +/K [311 0 R 1280 0 R] +/P 245 0 R +/S /Note +>> +endobj +675 0 obj +<< +/C /Pa20 +/K 1541 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +676 0 obj +<< +/K [312 0 R 1281 0 R] +/P 245 0 R +/S /Note +>> +endobj +677 0 obj +<< +/C /Pa20 +/K 1543 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +678 0 obj +<< +/K [313 0 R 1282 0 R] +/P 245 0 R +/S /Note +>> +endobj +679 0 obj +<< +/C /Pa20 +/K 1546 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +680 0 obj +<< +/K [314 0 R 1283 0 R] +/P 245 0 R +/S /Note +>> +endobj +681 0 obj +<< +/C /Pa20 +/K 1549 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +682 0 obj +<< +/K [315 0 R 1284 0 R] +/P 245 0 R +/S /Note +>> +endobj +683 0 obj +<< +/C /Pa20 +/K [1552 1285 0 R 1554 1555 1556] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +684 0 obj +<< +/K [316 0 R 1286 0 R] +/P 245 0 R +/S /Note +>> +endobj +685 0 obj +<< +/C /Pa20 +/K 1559 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +686 0 obj +<< +/K [317 0 R 1287 0 R] +/P 245 0 R +/S /Note +>> +endobj +687 0 obj +<< +/C /Pa20 +/K [1562 1563 1564] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +688 0 obj +<< +/K [318 0 R 1288 0 R] +/P 245 0 R +/S /Note +>> +endobj +689 0 obj +<< +/C /Pa20 +/K [1567 1289 0 R 1569] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +690 0 obj +<< +/K [319 0 R 1290 0 R] +/P 245 0 R +/S /Note +>> +endobj +691 0 obj +<< +/C /Pa20 +/K 1572 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +692 0 obj +<< +/K [320 0 R 1291 0 R] +/P 245 0 R +/S /Note +>> +endobj +693 0 obj +<< +/C /Pa20 +/K [1575 1576 1292 0 R 1578] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +694 0 obj +<< +/K [321 0 R 1293 0 R] +/P 245 0 R +/S /Note +>> +endobj +695 0 obj +<< +/C /Pa20 +/K [1581 1582] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +696 0 obj +<< +/K [322 0 R 1294 0 R] +/P 245 0 R +/S /Note +>> +endobj +697 0 obj +<< +/C /Pa20 +/K [1585 1586] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +698 0 obj +<< +/K [323 0 R 1295 0 R] +/P 245 0 R +/S /Note +>> +endobj +699 0 obj +<< +/C /Pa20 +/K [1589 1590] +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +700 0 obj +<< +/K [324 0 R 1296 0 R] +/P 245 0 R +/S /Note +>> +endobj +701 0 obj +<< +/C /Pa20 +/K 1593 +/P 245 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +702 0 obj +<< +/K [325 0 R 1297 0 R] +/P 245 0 R +/S /Note +>> +endobj +703 0 obj +<< +/C /Pa20 +/K 1596 +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +704 0 obj +<< +/K [327 0 R 1298 0 R] +/P 245 0 R +/S /Note +>> +endobj +705 0 obj +<< +/C /Pa20 +/K 1599 +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +706 0 obj +<< +/K [328 0 R 1299 0 R] +/P 245 0 R +/S /Note +>> +endobj +707 0 obj +<< +/C /Pa20 +/K [1602 1603] +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +708 0 obj +<< +/K [329 0 R 1300 0 R] +/P 245 0 R +/S /Note +>> +endobj +709 0 obj +<< +/C /Pa20 +/K [1606 1607] +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +710 0 obj +<< +/K [330 0 R 1301 0 R] +/P 245 0 R +/S /Note +>> +endobj +711 0 obj +<< +/C /Pa20 +/K 1610 +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +712 0 obj +<< +/K [331 0 R 1302 0 R] +/P 245 0 R +/S /Note +>> +endobj +713 0 obj +<< +/C /Pa20 +/K [1613 1303 0 R 1615 1616] +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +714 0 obj +<< +/K [332 0 R 1304 0 R] +/P 245 0 R +/S /Note +>> +endobj +715 0 obj +<< +/C /Pa20 +/K 1619 +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +716 0 obj +<< +/K [333 0 R 1305 0 R] +/P 245 0 R +/S /Note +>> +endobj +717 0 obj +<< +/C /Pa20 +/K 1622 +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +718 0 obj +<< +/K [334 0 R 1306 0 R] +/P 245 0 R +/S /Note +>> +endobj +719 0 obj +<< +/C /Pa20 +/K 1625 +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +720 0 obj +<< +/K [335 0 R 1307 0 R] +/P 245 0 R +/S /Note +>> +endobj +721 0 obj +<< +/C /Pa20 +/K 1628 +/P 245 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +722 0 obj +<< +/K [336 0 R 1308 0 R] +/P 245 0 R +/S /Note +>> +endobj +723 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 449 0 R +/Pg 9 0 R +/S /Span +>> +endobj +724 0 obj +<< +/ActualText +/K 5 +/P 451 0 R +/Pg 9 0 R +/S /Span +>> +endobj +725 0 obj +<< +/ActualText +/K 9 +/P 452 0 R +/Pg 9 0 R +/S /Span +>> +endobj +726 0 obj +<< +/ActualText +/K 11 +/P 452 0 R +/Pg 9 0 R +/S /Span +>> +endobj +727 0 obj +<< +/ActualText +/K 26 +/P 455 0 R +/Pg 9 0 R +/S /Span +>> +endobj +728 0 obj +<< +/ActualText +/K 38 +/P 456 0 R +/Pg 9 0 R +/S /Span +>> +endobj +729 0 obj +<< +/ActualText +/K 43 +/P 459 0 R +/Pg 10 0 R +/S /Span +>> +endobj +730 0 obj +<< +/ActualText +/K 48 +/P 460 0 R +/Pg 10 0 R +/S /Span +>> +endobj +731 0 obj +<< +/ActualText +/K 51 +/P 461 0 R +/Pg 10 0 R +/S /Span +>> +endobj +732 0 obj +<< +/ActualText +/K 54 +/P 462 0 R +/Pg 10 0 R +/S /Span +>> +endobj +733 0 obj +<< +/C /A4 +/K 62 +/P 740 0 R +/Pg 10 0 R +/S /Span +>> +endobj +734 0 obj +<< +/ActualText +/K 69 +/P 469 0 R +/Pg 10 0 R +/S /Span +>> +endobj +735 0 obj +<< +/ActualText +/K 73 +/P 470 0 R +/Pg 10 0 R +/S /Span +>> +endobj +736 0 obj +<< +/ActualText +/K 77 +/P 470 0 R +/Pg 10 0 R +/S /Span +>> +endobj +737 0 obj +<< +/ActualText +/K 79 +/P 470 0 R +/Pg 10 0 R +/S /Span +>> +endobj +738 0 obj +<< +/ActualText +/K 85 +/P 470 0 R +/Pg 10 0 R +/S /Span +>> +endobj +739 0 obj +<< +/ActualText +/K 96 +/P 654 0 R +/Pg 10 0 R +/S /Span +>> +endobj +740 0 obj +<< +/K [248 0 R 733 0 R] +/P 467 0 R +/S /Reference +>> +endobj +741 0 obj +<< +/ActualText +/K 103 +/P 472 0 R +/Pg 11 0 R +/S /Span +>> +endobj +742 0 obj +<< +/ActualText +/K 105 +/P 472 0 R +/Pg 11 0 R +/S /Span +>> +endobj +743 0 obj +<< +/ActualText +/K 109 +/P 472 0 R +/Pg 11 0 R +/S /Span +>> +endobj +744 0 obj +<< +/ActualText +/K 113 +/P 472 0 R +/Pg 11 0 R +/S /Span +>> +endobj +745 0 obj +<< +/ActualText +/K 133 +/P 476 0 R +/Pg 11 0 R +/S /Span +>> +endobj +746 0 obj +<< +/C /A5 +/K 135 +/P 1416 0 R +/Pg 11 0 R +/S /Span +>> +endobj +747 0 obj +<< +/C /A5 +/K 136 +/P 1416 0 R +/Pg 11 0 R +/S /Span +>> +endobj +748 0 obj +<< +/C /A6 +/K 137 +/P 749 0 R +/Pg 11 0 R +/S /Span +>> +endobj +749 0 obj +<< +/K [748 0 R 138 139 750 0 R 141 142 143 144] +/P 1321 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +750 0 obj +<< +/ActualText +/K 140 +/P 749 0 R +/Pg 11 0 R +/S /Span +>> +endobj +751 0 obj +<< +/C /A5 +/K 145 +/P 1417 0 R +/Pg 11 0 R +/S /Span +>> +endobj +752 0 obj +<< +/C /A5 +/K 146 +/P 1417 0 R +/Pg 11 0 R +/S /Span +>> +endobj +753 0 obj +<< +/C /A6 +/K 147 +/P 754 0 R +/Pg 11 0 R +/S /Span +>> +endobj +754 0 obj +<< +/K [753 0 R 148 149 755 0 R 151 152 153 154] +/P 1322 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +755 0 obj +<< +/ActualText +/K 150 +/P 754 0 R +/Pg 11 0 R +/S /Span +>> +endobj +756 0 obj +<< +/C /A5 +/K 155 +/P 1418 0 R +/Pg 11 0 R +/S /Span +>> +endobj +757 0 obj +<< +/C /A5 +/K 156 +/P 1418 0 R +/Pg 11 0 R +/S /Span +>> +endobj +758 0 obj +<< +/C /A6 +/K 157 +/P 759 0 R +/Pg 11 0 R +/S /Span +>> +endobj +759 0 obj +<< +/K [758 0 R 158 760 0 R 160 161 761 0 R 163 762 0 R 165 166] +/P 1323 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +760 0 obj +<< +/ActualText +/K 159 +/P 759 0 R +/Pg 11 0 R +/S /Span +>> +endobj +761 0 obj +<< +/ActualText +/K 162 +/P 759 0 R +/Pg 11 0 R +/S /Span +>> +endobj +762 0 obj +<< +/ActualText +/K 164 +/P 759 0 R +/Pg 11 0 R +/S /Span +>> +endobj +763 0 obj +<< +/C /A5 +/K 167 +/P 1419 0 R +/Pg 12 0 R +/S /Span +>> +endobj +764 0 obj +<< +/C /A5 +/K 168 +/P 1419 0 R +/Pg 12 0 R +/S /Span +>> +endobj +765 0 obj +<< +/C /A6 +/K 169 +/P 768 0 R +/Pg 12 0 R +/S /Span +>> +endobj +766 0 obj +<< +/ActualText +/C /A6 +/K 170 +/P 768 0 R +/Pg 12 0 R +/S /Span +>> +endobj +767 0 obj +<< +/C /A6 +/K 171 +/P 768 0 R +/Pg 12 0 R +/S /Span +>> +endobj +768 0 obj +<< +/K [765 0 R 766 0 R 767 0 R 172 769 0 R 174 175 770 0 R 177 178 179 180] +/P 1324 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +769 0 obj +<< +/ActualText +/K 173 +/P 768 0 R +/Pg 12 0 R +/S /Span +>> +endobj +770 0 obj +<< +/ActualText +/K 176 +/P 768 0 R +/Pg 12 0 R +/S /Span +>> +endobj +771 0 obj +<< +/C /A5 +/K 181 +/P 1420 0 R +/Pg 12 0 R +/S /Span +>> +endobj +772 0 obj +<< +/C /A5 +/K 182 +/P 1420 0 R +/Pg 12 0 R +/S /Span +>> +endobj +773 0 obj +<< +/C /A6 +/K 183 +/P 774 0 R +/Pg 12 0 R +/S /Span +>> +endobj +774 0 obj +<< +/K [773 0 R 184 185 186] +/P 1325 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +775 0 obj +<< +/C /A5 +/K 187 +/P 1421 0 R +/Pg 12 0 R +/S /Span +>> +endobj +776 0 obj +<< +/C /A5 +/K 188 +/P 1421 0 R +/Pg 12 0 R +/S /Span +>> +endobj +777 0 obj +<< +/C /A6 +/K 189 +/P 780 0 R +/Pg 12 0 R +/S /Span +>> +endobj +778 0 obj +<< +/C /A7 +/K 190 +/P 780 0 R +/Pg 12 0 R +/S /Span +>> +endobj +779 0 obj +<< +/C /A7 +/K 191 +/P 780 0 R +/Pg 12 0 R +/S /Span +>> +endobj +780 0 obj +<< +/K [777 0 R 778 0 R 779 0 R 192 193 194 195 781 0 R 197 198 199 200 201 202] +/P 1326 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +781 0 obj +<< +/ActualText +/K 196 +/P 780 0 R +/Pg 12 0 R +/S /Span +>> +endobj +782 0 obj +<< +/ActualText +/K 214 +/P 481 0 R +/Pg 12 0 R +/S /Span +>> +endobj +783 0 obj +<< +/ActualText +/K 218 +/P 481 0 R +/Pg 12 0 R +/S /Span +>> +endobj +784 0 obj +<< +/ActualText +/K 226 +/P 482 0 R +/Pg 12 0 R +/S /Span +>> +endobj +785 0 obj +<< +/ActualText +/K 228 +/P 482 0 R +/Pg 12 0 R +/S /Span +>> +endobj +786 0 obj +<< +/ActualText +/K 240 +/P 482 0 R +/Pg 13 0 R +/S /Span +>> +endobj +787 0 obj +<< +/ActualText +/K 249 +/P 483 0 R +/Pg 13 0 R +/S /Span +>> +endobj +788 0 obj +<< +/ActualText +/K 253 +/P 483 0 R +/Pg 13 0 R +/S /Span +>> +endobj +789 0 obj +<< +/ActualText +/K 257 +/P 484 0 R +/Pg 13 0 R +/S /Span +>> +endobj +790 0 obj +<< +/ActualText +/K 263 +/P 485 0 R +/Pg 13 0 R +/S /Span +>> +endobj +791 0 obj +<< +/ActualText +/K 265 +/P 485 0 R +/Pg 13 0 R +/S /Span +>> +endobj +792 0 obj +<< +/C /A5 +/K 274 +/P 1422 0 R +/Pg 13 0 R +/S /Span +>> +endobj +793 0 obj +<< +/C /A5 +/K 275 +/P 1422 0 R +/Pg 13 0 R +/S /Span +>> +endobj +794 0 obj +<< +/K [276 277 278] +/P 1327 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +795 0 obj +<< +/C /A5 +/K 279 +/P 1423 0 R +/Pg 13 0 R +/S /Span +>> +endobj +796 0 obj +<< +/C /A5 +/K 280 +/P 1423 0 R +/Pg 13 0 R +/S /Span +>> +endobj +797 0 obj +<< +/K [281 282 283] +/P 1328 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +798 0 obj +<< +/C /A5 +/K 284 +/P 1424 0 R +/Pg 13 0 R +/S /Span +>> +endobj +799 0 obj +<< +/C /A5 +/K 285 +/P 1424 0 R +/Pg 13 0 R +/S /Span +>> +endobj +800 0 obj +<< +/K [286 287 288] +/P 1329 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +801 0 obj +<< +/C /A5 +/K 289 +/P 1425 0 R +/Pg 13 0 R +/S /Span +>> +endobj +802 0 obj +<< +/C /A5 +/K 290 +/P 1425 0 R +/Pg 13 0 R +/S /Span +>> +endobj +803 0 obj +<< +/K [291 292 293 804 0 R 295 296 297] +/P 1330 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +804 0 obj +<< +/ActualText +/K 294 +/P 803 0 R +/Pg 13 0 R +/S /Span +>> +endobj +805 0 obj +<< +/ActualText +/K 303 +/P 490 0 R +/Pg 14 0 R +/S /Span +>> +endobj +806 0 obj +<< +/ActualText +/K 306 +/P 490 0 R +/Pg 14 0 R +/S /Span +>> +endobj +807 0 obj +<< +/C /A4 +/K 324 +/P 812 0 R +/Pg 14 0 R +/S /Span +>> +endobj +808 0 obj +<< +/ActualText +/K 334 +/P 495 0 R +/Pg 14 0 R +/S /Span +>> +endobj +809 0 obj +<< +/ActualText +/K 338 +/P 495 0 R +/Pg 14 0 R +/S /Span +>> +endobj +810 0 obj +<< +/ActualText +/K 351 +/P 497 0 R +/Pg 14 0 R +/S /Span +>> +endobj +811 0 obj +<< +/ActualText +/K 355 +/P 498 0 R +/Pg 14 0 R +/S /Span +>> +endobj +812 0 obj +<< +/K [253 0 R 807 0 R] +/P 493 0 R +/S /Reference +>> +endobj +813 0 obj +<< +/ActualText +/K 362 +/P 498 0 R +/Pg 15 0 R +/S /Span +>> +endobj +814 0 obj +<< +/C /A5 +/K 372 +/P 1426 0 R +/Pg 15 0 R +/S /Span +>> +endobj +815 0 obj +<< +/C /A5 +/K 373 +/P 1426 0 R +/Pg 15 0 R +/S /Span +>> +endobj +816 0 obj +<< +/K [374 817 0 R 376 377 378] +/P 1331 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +817 0 obj +<< +/ActualText +/K 375 +/P 816 0 R +/Pg 15 0 R +/S /Span +>> +endobj +818 0 obj +<< +/C /A5 +/K 379 +/P 1427 0 R +/Pg 15 0 R +/S /Span +>> +endobj +819 0 obj +<< +/C /A5 +/K 380 +/P 1427 0 R +/Pg 15 0 R +/S /Span +>> +endobj +820 0 obj +<< +/K [381 382 383 384] +/P 1332 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +821 0 obj +<< +/C /A5 +/K 386 +/P 1428 0 R +/Pg 15 0 R +/S /Span +>> +endobj +822 0 obj +<< +/C /A5 +/K 387 +/P 1428 0 R +/Pg 15 0 R +/S /Span +>> +endobj +823 0 obj +<< +/K [388 389 390 824 0 R 392] +/P 1333 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +824 0 obj +<< +/ActualText +/K 391 +/P 823 0 R +/Pg 15 0 R +/S /Span +>> +endobj +825 0 obj +<< +/ActualText +/K 396 +/P 505 0 R +/Pg 15 0 R +/S /Span +>> +endobj +826 0 obj +<< +/ActualText +/K 398 +/P 505 0 R +/Pg 15 0 R +/S /Span +>> +endobj +827 0 obj +<< +/ActualText +/K 401 +/P 506 0 R +/Pg 15 0 R +/S /Span +>> +endobj +828 0 obj +<< +/C /A5 +/K 404 +/P 1429 0 R +/Pg 15 0 R +/S /Span +>> +endobj +829 0 obj +<< +/C /A5 +/K 405 +/P 1429 0 R +/Pg 15 0 R +/S /Span +>> +endobj +830 0 obj +<< +/K [406 831 0 R 408 409 410 832 0 R 412] +/P 1334 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +831 0 obj +<< +/C /A6 +/K 407 +/P 830 0 R +/Pg 15 0 R +/S /Span +>> +endobj +832 0 obj +<< +/ActualText +/K 411 +/P 830 0 R +/Pg 15 0 R +/S /Span +>> +endobj +833 0 obj +<< +/C /A5 +/K 413 +/P 1430 0 R +/Pg 15 0 R +/S /Span +>> +endobj +834 0 obj +<< +/C /A5 +/K 414 +/P 1430 0 R +/Pg 15 0 R +/S /Span +>> +endobj +835 0 obj +<< +/K [415 836 0 R 417 837 0 R 419 420 421] +/P 1335 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +836 0 obj +<< +/C /A6 +/K 416 +/P 835 0 R +/Pg 15 0 R +/S /Span +>> +endobj +837 0 obj +<< +/ActualText +/K 418 +/P 835 0 R +/Pg 15 0 R +/S /Span +>> +endobj +838 0 obj +<< +/C /A5 +/K 422 +/P 1431 0 R +/Pg 16 0 R +/S /Span +>> +endobj +839 0 obj +<< +/C /A5 +/K 423 +/P 1431 0 R +/Pg 16 0 R +/S /Span +>> +endobj +840 0 obj +<< +/K [424 841 0 R 426 427 428 429] +/P 1336 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +841 0 obj +<< +/C /A6 +/K 425 +/P 840 0 R +/Pg 16 0 R +/S /Span +>> +endobj +842 0 obj +<< +/C /A5 +/K 430 +/P 1432 0 R +/Pg 16 0 R +/S /Span +>> +endobj +843 0 obj +<< +/C /A5 +/K 431 +/P 1432 0 R +/Pg 16 0 R +/S /Span +>> +endobj +844 0 obj +<< +/K [432 845 0 R 846 0 R 847 0 R 436 437 438] +/P 1337 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +845 0 obj +<< +/C /A6 +/K 433 +/P 844 0 R +/Pg 16 0 R +/S /Span +>> +endobj +846 0 obj +<< +/ActualText +/C /A6 +/K 434 +/P 844 0 R +/Pg 16 0 R +/S /Span +>> +endobj +847 0 obj +<< +/C /A6 +/K 435 +/P 844 0 R +/Pg 16 0 R +/S /Span +>> +endobj +848 0 obj +<< +/C /A5 +/K 439 +/P 1433 0 R +/Pg 16 0 R +/S /Span +>> +endobj +849 0 obj +<< +/C /A5 +/K 440 +/P 1433 0 R +/Pg 16 0 R +/S /Span +>> +endobj +850 0 obj +<< +/K [441 851 0 R 852 0 R 853 0 R 445 446 447 448 449] +/P 1338 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +851 0 obj +<< +/C /A6 +/K 442 +/P 850 0 R +/Pg 16 0 R +/S /Span +>> +endobj +852 0 obj +<< +/ActualText +/C /A6 +/K 443 +/P 850 0 R +/Pg 16 0 R +/S /Span +>> +endobj +853 0 obj +<< +/C /A6 +/K 444 +/P 850 0 R +/Pg 16 0 R +/S /Span +>> +endobj +854 0 obj +<< +/C /A5 +/K 450 +/P 1434 0 R +/Pg 16 0 R +/S /Span +>> +endobj +855 0 obj +<< +/C /A5 +/K 451 +/P 1434 0 R +/Pg 16 0 R +/S /Span +>> +endobj +856 0 obj +<< +/K [452 857 0 R 858 0 R 455 456 457 458 459 460 461 462 463 859 0 R 465 466 860 0 R +468 469 470 861 0 R 472 473] +/P 1339 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +857 0 obj +<< +/C /A6 +/K 453 +/P 856 0 R +/Pg 16 0 R +/S /Span +>> +endobj +858 0 obj +<< +/C /A6 +/K 454 +/P 856 0 R +/Pg 16 0 R +/S /Span +>> +endobj +859 0 obj +<< +/ActualText +/K 464 +/P 856 0 R +/Pg 16 0 R +/S /Span +>> +endobj +860 0 obj +<< +/ActualText +/K 467 +/P 856 0 R +/Pg 16 0 R +/S /Span +>> +endobj +861 0 obj +<< +/ActualText +/K 471 +/P 856 0 R +/Pg 16 0 R +/S /Span +>> +endobj +862 0 obj +<< +/C /A5 +/K 474 +/P 1435 0 R +/Pg 16 0 R +/S /Span +>> +endobj +863 0 obj +<< +/C /A5 +/K 475 +/P 1435 0 R +/Pg 16 0 R +/S /Span +>> +endobj +864 0 obj +<< +/K [476 865 0 R 478 479 480 481 482 866 0 R 484 485] +/P 1340 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +865 0 obj +<< +/C /A6 +/K 477 +/P 864 0 R +/Pg 16 0 R +/S /Span +>> +endobj +866 0 obj +<< +/ActualText +/K 483 +/P 864 0 R +/Pg 16 0 R +/S /Span +>> +endobj +867 0 obj +<< +/C /A5 +/K 486 +/P 1436 0 R +/Pg 16 0 R +/S /Span +>> +endobj +868 0 obj +<< +/C /A5 +/K 487 +/P 1436 0 R +/Pg 16 0 R +/S /Span +>> +endobj +869 0 obj +<< +/K [488 870 0 R 871 0 R 491 872 0 R 493 873 0 R 495] +/P 1341 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +870 0 obj +<< +/C /A6 +/K 489 +/P 869 0 R +/Pg 16 0 R +/S /Span +>> +endobj +871 0 obj +<< +/C /A6 +/K 490 +/P 869 0 R +/Pg 16 0 R +/S /Span +>> +endobj +872 0 obj +<< +/ActualText +/K 492 +/P 869 0 R +/Pg 16 0 R +/S /Span +>> +endobj +873 0 obj +<< +/ActualText +/K 494 +/P 869 0 R +/Pg 16 0 R +/S /Span +>> +endobj +874 0 obj +<< +/ActualText +/K 498 +/P 509 0 R +/Pg 16 0 R +/S /Span +>> +endobj +875 0 obj +<< +/C /A5 +/K 500 +/P 1437 0 R +/Pg 16 0 R +/S /Span +>> +endobj +876 0 obj +<< +/C /A5 +/K 501 +/P 1437 0 R +/Pg 16 0 R +/S /Span +>> +endobj +877 0 obj +<< +/K 502 +/P 1342 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +878 0 obj +<< +/C /A5 +/K 503 +/P 1438 0 R +/Pg 17 0 R +/S /Span +>> +endobj +879 0 obj +<< +/C /A5 +/K 504 +/P 1438 0 R +/Pg 17 0 R +/S /Span +>> +endobj +880 0 obj +<< +/K [505 506 507] +/P 1343 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +881 0 obj +<< +/C /A5 +/K 508 +/P 1439 0 R +/Pg 17 0 R +/S /Span +>> +endobj +882 0 obj +<< +/C /A5 +/K 509 +/P 1439 0 R +/Pg 17 0 R +/S /Span +>> +endobj +883 0 obj +<< +/K [510 511] +/P 1344 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +884 0 obj +<< +/C /A5 +/K 512 +/P 1440 0 R +/Pg 17 0 R +/S /Span +>> +endobj +885 0 obj +<< +/C /A5 +/K 513 +/P 1440 0 R +/Pg 17 0 R +/S /Span +>> +endobj +886 0 obj +<< +/K 514 +/P 1345 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +887 0 obj +<< +/C /A5 +/K 515 +/P 1441 0 R +/Pg 17 0 R +/S /Span +>> +endobj +888 0 obj +<< +/C /A5 +/K 516 +/P 1441 0 R +/Pg 17 0 R +/S /Span +>> +endobj +889 0 obj +<< +/K [517 518] +/P 1346 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +890 0 obj +<< +/C /A5 +/K 519 +/P 1442 0 R +/Pg 17 0 R +/S /Span +>> +endobj +891 0 obj +<< +/C /A5 +/K 520 +/P 1442 0 R +/Pg 17 0 R +/S /Span +>> +endobj +892 0 obj +<< +/K [521 522 523] +/P 1347 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +893 0 obj +<< +/ActualText +/K 527 +/P 511 0 R +/Pg 17 0 R +/S /Span +>> +endobj +894 0 obj +<< +/ActualText +/K 531 +/P 511 0 R +/Pg 17 0 R +/S /Span +>> +endobj +895 0 obj +<< +/ActualText +/K 534 +/P 511 0 R +/Pg 17 0 R +/S /Span +>> +endobj +896 0 obj +<< +/ActualText +/K 538 +/P 512 0 R +/Pg 17 0 R +/S /Span +>> +endobj +897 0 obj +<< +/ActualText +/K 541 +/P 512 0 R +/Pg 17 0 R +/S /Span +>> +endobj +898 0 obj +<< +/ActualText +/K 545 +/P 512 0 R +/Pg 17 0 R +/S /Span +>> +endobj +899 0 obj +<< +/ActualText +/K 548 +/P 512 0 R +/Pg 17 0 R +/S /Span +>> +endobj +900 0 obj +<< +/ActualText +/K 557 +/P 513 0 R +/Pg 17 0 R +/S /Span +>> +endobj +901 0 obj +<< +/ActualText +/K 560 +/P 513 0 R +/Pg 17 0 R +/S /Span +>> +endobj +902 0 obj +<< +/C /A5 +/K 567 +/P 1443 0 R +/Pg 17 0 R +/S /Span +>> +endobj +903 0 obj +<< +/C /A5 +/K 568 +/P 1443 0 R +/Pg 17 0 R +/S /Span +>> +endobj +904 0 obj +<< +/K [569 570] +/P 1348 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +905 0 obj +<< +/C /A5 +/K 571 +/P 1444 0 R +/Pg 17 0 R +/S /Span +>> +endobj +906 0 obj +<< +/C /A5 +/K 572 +/P 1444 0 R +/Pg 17 0 R +/S /Span +>> +endobj +907 0 obj +<< +/K [573 908 0 R 575 576] +/P 1349 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +908 0 obj +<< +/ActualText +/K 574 +/P 907 0 R +/Pg 17 0 R +/S /Span +>> +endobj +909 0 obj +<< +/C /A5 +/K 584 +/P 1445 0 R +/Pg 18 0 R +/S /Span +>> +endobj +910 0 obj +<< +/C /A5 +/K 585 +/P 1445 0 R +/Pg 18 0 R +/S /Span +>> +endobj +911 0 obj +<< +/K [586 587] +/P 1350 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +912 0 obj +<< +/C /A5 +/K 588 +/P 1446 0 R +/Pg 18 0 R +/S /Span +>> +endobj +913 0 obj +<< +/C /A5 +/K 589 +/P 1446 0 R +/Pg 18 0 R +/S /Span +>> +endobj +914 0 obj +<< +/K [590 591] +/P 1351 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +915 0 obj +<< +/C /A5 +/K 593 +/P 1447 0 R +/Pg 18 0 R +/S /Span +>> +endobj +916 0 obj +<< +/C /A5 +/K 594 +/P 1447 0 R +/Pg 18 0 R +/S /Span +>> +endobj +917 0 obj +<< +/K [595 596] +/P 1352 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +918 0 obj +<< +/ActualText +/K 604 +/P 521 0 R +/Pg 18 0 R +/S /Span +>> +endobj +919 0 obj +<< +/ActualText +/K 610 +/P 521 0 R +/Pg 18 0 R +/S /Span +>> +endobj +920 0 obj +<< +/C /A4 +/K 613 +/P 936 0 R +/Pg 18 0 R +/S /Span +>> +endobj +921 0 obj +<< +/C /A4 +/K 621 +/P 937 0 R +/Pg 18 0 R +/S /Span +>> +endobj +922 0 obj +<< +/ActualText +/K 625 +/P 523 0 R +/Pg 18 0 R +/S /Span +>> +endobj +923 0 obj +<< +/ActualText +/K 629 +/P 523 0 R +/Pg 18 0 R +/S /Span +>> +endobj +924 0 obj +<< +/C /A5 +/K 631 +/P 1448 0 R +/Pg 18 0 R +/S /Span +>> +endobj +925 0 obj +<< +/C /A5 +/K 632 +/P 1448 0 R +/Pg 18 0 R +/S /Span +>> +endobj +926 0 obj +<< +/K [633 634] +/P 1353 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +927 0 obj +<< +/C /A5 +/K 635 +/P 1449 0 R +/Pg 18 0 R +/S /Span +>> +endobj +928 0 obj +<< +/C /A5 +/K 636 +/P 1449 0 R +/Pg 18 0 R +/S /Span +>> +endobj +929 0 obj +<< +/K [637 638] +/P 1354 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +930 0 obj +<< +/C /A5 +/K 639 +/P 1450 0 R +/Pg 18 0 R +/S /Span +>> +endobj +931 0 obj +<< +/C /A5 +/K 640 +/P 1450 0 R +/Pg 18 0 R +/S /Span +>> +endobj +932 0 obj +<< +/K 641 +/P 1355 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +933 0 obj +<< +/ActualText +/K 643 +/P 525 0 R +/Pg 18 0 R +/S /Span +>> +endobj +934 0 obj +<< +/ActualText +/K 646 +/P 525 0 R +/Pg 18 0 R +/S /Span +>> +endobj +935 0 obj +<< +/ActualText +/K 648 +/P 525 0 R +/Pg 18 0 R +/S /Span +>> +endobj +936 0 obj +<< +/K [258 0 R 920 0 R] +/P 521 0 R +/S /Reference +>> +endobj +937 0 obj +<< +/K [259 0 R 921 0 R] +/P 522 0 R +/S /Reference +>> +endobj +938 0 obj +<< +/ActualText +/K 653 +/P 526 0 R +/Pg 19 0 R +/S /Span +>> +endobj +939 0 obj +<< +/ActualText +/K 656 +/P 526 0 R +/Pg 19 0 R +/S /Span +>> +endobj +940 0 obj +<< +/ActualText +/K 660 +/P 527 0 R +/Pg 19 0 R +/S /Span +>> +endobj +941 0 obj +<< +/ActualText +/K 662 +/P 527 0 R +/Pg 19 0 R +/S /Span +>> +endobj +942 0 obj +<< +/ActualText +/K 668 +/P 528 0 R +/Pg 19 0 R +/S /Span +>> +endobj +943 0 obj +<< +/ActualText +/K 684 +/P 531 0 R +/Pg 19 0 R +/S /Span +>> +endobj +944 0 obj +<< +/C /A4 +/K 690 +/P 950 0 R +/Pg 19 0 R +/S /Span +>> +endobj +945 0 obj +<< +/ActualText +/K 693 +/P 532 0 R +/Pg 19 0 R +/S /Span +>> +endobj +946 0 obj +<< +/ActualText +/K 699 +/P 533 0 R +/Pg 19 0 R +/S /Span +>> +endobj +947 0 obj +<< +/ActualText +/K 703 +/P 533 0 R +/Pg 19 0 R +/S /Span +>> +endobj +948 0 obj +<< +/ActualText +/K 707 +/P 534 0 R +/Pg 19 0 R +/S /Span +>> +endobj +949 0 obj +<< +/ActualText +/K 710 +/P 534 0 R +/Pg 19 0 R +/S /Span +>> +endobj +950 0 obj +<< +/K [261 0 R 944 0 R] +/P 531 0 R +/S /Reference +>> +endobj +951 0 obj +<< +/C /A4 +/K 712 +/P 969 0 R +/Pg 20 0 R +/S /Span +>> +endobj +952 0 obj +<< +/ActualText +/K 721 +/P 535 0 R +/Pg 20 0 R +/S /Span +>> +endobj +953 0 obj +<< +/ActualText +/K 726 +/P 537 0 R +/Pg 20 0 R +/S /Span +>> +endobj +954 0 obj +<< +/C /A5 +/K 735 +/P 1451 0 R +/Pg 20 0 R +/S /Span +>> +endobj +955 0 obj +<< +/C /A5 +/K 736 +/P 1451 0 R +/Pg 20 0 R +/S /Span +>> +endobj +956 0 obj +<< +/K [737 738] +/P 1356 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +957 0 obj +<< +/C /A5 +/K 739 +/P 1452 0 R +/Pg 20 0 R +/S /Span +>> +endobj +958 0 obj +<< +/C /A5 +/K 740 +/P 1452 0 R +/Pg 20 0 R +/S /Span +>> +endobj +959 0 obj +<< +/K [741 742 743] +/P 1357 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +960 0 obj +<< +/C /A5 +/K 744 +/P 1453 0 R +/Pg 20 0 R +/S /Span +>> +endobj +961 0 obj +<< +/C /A5 +/K 745 +/P 1453 0 R +/Pg 20 0 R +/S /Span +>> +endobj +962 0 obj +<< +/K [746 963 0 R 748 749] +/P 1358 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +963 0 obj +<< +/ActualText +/K 747 +/P 962 0 R +/Pg 20 0 R +/S /Span +>> +endobj +964 0 obj +<< +/C /A5 +/K 751 +/P 1454 0 R +/Pg 20 0 R +/S /Span +>> +endobj +965 0 obj +<< +/C /A5 +/K 752 +/P 1454 0 R +/Pg 20 0 R +/S /Span +>> +endobj +966 0 obj +<< +/K [753 754 755 756] +/P 1359 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +967 0 obj +<< +/C /A4 +/K 760 +/P 970 0 R +/Pg 20 0 R +/S /Span +>> +endobj +968 0 obj +<< +/ActualText +/K 764 +/P 544 0 R +/Pg 20 0 R +/S /Span +>> +endobj +969 0 obj +<< +/K [263 0 R 951 0 R] +/P 534 0 R +/S /Reference +>> +endobj +970 0 obj +<< +/K [264 0 R 967 0 R] +/P 543 0 R +/S /Reference +>> +endobj +971 0 obj +<< +/C /A4 +/K 774 +/P 988 0 R +/Pg 21 0 R +/S /Span +>> +endobj +972 0 obj +<< +/C /A4 +/K 783 +/P 989 0 R +/Pg 21 0 R +/S /Span +>> +endobj +973 0 obj +<< +/ActualText +/K 786 +/P 546 0 R +/Pg 21 0 R +/S /Span +>> +endobj +974 0 obj +<< +/C /A4 +/K 788 +/P 990 0 R +/Pg 21 0 R +/S /Span +>> +endobj +975 0 obj +<< +/C /A4 +/K 790 +/P 991 0 R +/Pg 21 0 R +/S /Span +>> +endobj +976 0 obj +<< +/C /A4 +/K 795 +/P 992 0 R +/Pg 21 0 R +/S /Span +>> +endobj +977 0 obj +<< +/ActualText +/K 797 +/P 546 0 R +/Pg 21 0 R +/S /Span +>> +endobj +978 0 obj +<< +/C /A4 +/K 799 +/P 993 0 R +/Pg 21 0 R +/S /Span +>> +endobj +979 0 obj +<< +/C /A4 +/K 802 +/P 994 0 R +/Pg 21 0 R +/S /Span +>> +endobj +980 0 obj +<< +/ActualText +/K 804 +/P 547 0 R +/Pg 21 0 R +/S /Span +>> +endobj +981 0 obj +<< +/C /A4 +/K 806 +/P 995 0 R +/Pg 21 0 R +/S /Span +>> +endobj +982 0 obj +<< +/ActualText +/K 809 +/P 547 0 R +/Pg 21 0 R +/S /Span +>> +endobj +983 0 obj +<< +/ActualText +/K 812 +/P 548 0 R +/Pg 21 0 R +/S /Span +>> +endobj +984 0 obj +<< +/C /A4 +/K 815 +/P 996 0 R +/Pg 21 0 R +/S /Span +>> +endobj +985 0 obj +<< +/ActualText +/K 832 +/P 550 0 R +/Pg 21 0 R +/S /Span +>> +endobj +986 0 obj +<< +/ActualText +/K 838 +/P 657 0 R +/Pg 21 0 R +/S /Span +>> +endobj +987 0 obj +<< +/ActualText +/K 840 +/P 657 0 R +/Pg 21 0 R +/S /Span +>> +endobj +988 0 obj +<< +/K [266 0 R 971 0 R] +/P 546 0 R +/S /Reference +>> +endobj +989 0 obj +<< +/K [267 0 R 972 0 R] +/P 546 0 R +/S /Reference +>> +endobj +990 0 obj +<< +/K [268 0 R 974 0 R] +/P 546 0 R +/S /Reference +>> +endobj +991 0 obj +<< +/K [269 0 R 975 0 R] +/P 546 0 R +/S /Reference +>> +endobj +992 0 obj +<< +/K [270 0 R 976 0 R] +/P 546 0 R +/S /Reference +>> +endobj +993 0 obj +<< +/K [271 0 R 978 0 R] +/P 546 0 R +/S /Reference +>> +endobj +994 0 obj +<< +/K [272 0 R 979 0 R] +/P 547 0 R +/S /Reference +>> +endobj +995 0 obj +<< +/K [273 0 R 981 0 R] +/P 547 0 R +/S /Reference +>> +endobj +996 0 obj +<< +/K [274 0 R 984 0 R] +/P 548 0 R +/S /Reference +>> +endobj +997 0 obj +<< +/ActualText +/K 846 +/P 551 0 R +/Pg 22 0 R +/S /Span +>> +endobj +998 0 obj +<< +/ActualText +/K 849 +/P 551 0 R +/Pg 22 0 R +/S /Span +>> +endobj +999 0 obj +<< +/C /A5 +/K 856 +/P 1455 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1000 0 obj +<< +/C /A5 +/K 857 +/P 1455 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1001 0 obj +<< +/K [858 859] +/P 1360 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +1002 0 obj +<< +/C /A5 +/K 860 +/P 1456 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1003 0 obj +<< +/C /A5 +/K 861 +/P 1456 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1004 0 obj +<< +/K [862 863] +/P 1361 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +1005 0 obj +<< +/C /A5 +/K 864 +/P 1457 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1006 0 obj +<< +/C /A5 +/K 865 +/P 1457 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1007 0 obj +<< +/K [866 1008 0 R 868] +/P 1362 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +1008 0 obj +<< +/ActualText +/K 867 +/P 1007 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1009 0 obj +<< +/C /A5 +/K 869 +/P 1458 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1010 0 obj +<< +/C /A5 +/K 870 +/P 1458 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1011 0 obj +<< +/K [871 872 873] +/P 1363 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +1012 0 obj +<< +/C /A5 +/K 874 +/P 1459 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1013 0 obj +<< +/C /A5 +/K 875 +/P 1459 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1014 0 obj +<< +/K [876 877 878 879 880] +/P 1364 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +1015 0 obj +<< +/C /A5 +/K 881 +/P 1460 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1016 0 obj +<< +/C /A5 +/K 882 +/P 1460 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1017 0 obj +<< +/K [883 884 885] +/P 1365 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +1018 0 obj +<< +/A << +/O /Layout +/LineHeight 11.0 +/TextDecorationType /Underline +>> +/K 896 +/P 276 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1019 0 obj +<< +/C /A5 +/K 898 +/P 1461 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1020 0 obj +<< +/C /A5 +/K 899 +/P 1461 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1021 0 obj +<< +/K [900 1022 0 R 902 903 904 1023 0 R 906 907 908] +/P 1366 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +1022 0 obj +<< +/ActualText +/K 901 +/P 1021 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1023 0 obj +<< +/ActualText +/K 905 +/P 1021 0 R +/Pg 22 0 R +/S /Span +>> +endobj +1024 0 obj +<< +/C /A5 +/K 909 +/P 1462 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1025 0 obj +<< +/C /A5 +/K 910 +/P 1462 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1026 0 obj +<< +/K [911 912 913 914 1062 0 R 916] +/P 1367 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1027 0 obj +<< +/C /A4 +/K 915 +/P 1062 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1028 0 obj +<< +/C /A4 +/K 922 +/P 1063 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1029 0 obj +<< +/ActualText +/K 926 +/P 562 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1030 0 obj +<< +/C /A5 +/K 930 +/P 1463 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1031 0 obj +<< +/C /A5 +/K 931 +/P 1463 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1032 0 obj +<< +/K [932 1033 0 R 934] +/P 1368 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1033 0 obj +<< +/ActualText +/K 933 +/P 1032 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1034 0 obj +<< +/C /A5 +/K 935 +/P 1464 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1035 0 obj +<< +/C /A5 +/K 936 +/P 1464 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1036 0 obj +<< +/K [937 1037 0 R 939 1038 0 R 941 1064 0 R 943] +/P 1369 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1037 0 obj +<< +/ActualText +/K 938 +/P 1036 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1038 0 obj +<< +/ActualText +/K 940 +/P 1036 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1039 0 obj +<< +/C /A4 +/K 942 +/P 1064 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1040 0 obj +<< +/C /A5 +/K 944 +/P 1465 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1041 0 obj +<< +/C /A5 +/K 945 +/P 1465 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1042 0 obj +<< +/K [946 947] +/P 1466 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1043 0 obj +<< +/C /A5 +/K 948 +/P 1467 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1044 0 obj +<< +/C /A5 +/K 949 +/P 1467 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1045 0 obj +<< +/K [950 1065 0 R 952] +/P 1468 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1046 0 obj +<< +/C /A4 +/K 951 +/P 1065 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1047 0 obj +<< +/C /A5 +/K 955 +/P 1469 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1048 0 obj +<< +/C /A5 +/K 956 +/P 1469 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1049 0 obj +<< +/K [957 1066 0 R 959] +/P 1370 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1050 0 obj +<< +/C /A4 +/K 958 +/P 1066 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1051 0 obj +<< +/C /A5 +/K 960 +/P 1470 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1052 0 obj +<< +/C /A5 +/K 961 +/P 1470 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1053 0 obj +<< +/K [962 1067 0 R 964] +/P 1371 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1054 0 obj +<< +/C /A4 +/K 963 +/P 1067 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1055 0 obj +<< +/ActualText +/K 966 +/P 567 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1056 0 obj +<< +/C /A4 +/K 971 +/P 1068 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1057 0 obj +<< +/C /A5 +/K 976 +/P 1471 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1058 0 obj +<< +/K 977 +/P 1372 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1059 0 obj +<< +/C /A5 +/K 978 +/P 1472 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1060 0 obj +<< +/K [979 980] +/P 1373 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +1061 0 obj +<< +/ActualText +/K 982 +/P 570 0 R +/Pg 23 0 R +/S /Span +>> +endobj +1062 0 obj +<< +/K [278 0 R 1027 0 R] +/P 1026 0 R +/S /Reference +>> +endobj +1063 0 obj +<< +/K [279 0 R 1028 0 R] +/P 562 0 R +/S /Reference +>> +endobj +1064 0 obj +<< +/K [280 0 R 1039 0 R] +/P 1036 0 R +/S /Reference +>> +endobj +1065 0 obj +<< +/K [281 0 R 1046 0 R] +/P 1045 0 R +/S /Reference +>> +endobj +1066 0 obj +<< +/K [282 0 R 1050 0 R] +/P 1049 0 R +/S /Reference +>> +endobj +1067 0 obj +<< +/K [283 0 R 1054 0 R] +/P 1053 0 R +/S /Reference +>> +endobj +1068 0 obj +<< +/K [284 0 R 1056 0 R] +/P 567 0 R +/S /Reference +>> +endobj +1069 0 obj +<< +/C /A5 +/K 989 +/P 1473 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1070 0 obj +<< +/C /A5 +/K 990 +/P 1473 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1071 0 obj +<< +/K [991 992 1072 0 R 994 1073 0 R 996 997 1086 0 R 999] +/P 1374 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +1072 0 obj +<< +/ActualText +/K 993 +/P 1071 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1073 0 obj +<< +/ActualText +/K 995 +/P 1071 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1074 0 obj +<< +/C /A4 +/K 998 +/P 1086 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1075 0 obj +<< +/C /A5 +/K 1002 +/P 1474 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1076 0 obj +<< +/K [1003 1077 0 R 1005 1006 1007 1008 1009 1078 0 R 1011 1012 1013 1014] +/P 1375 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +1077 0 obj +<< +/ActualText +/K 1004 +/P 1076 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1078 0 obj +<< +/ActualText +/K 1010 +/P 1076 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1079 0 obj +<< +/C /A5 +/K 1015 +/P 1475 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1080 0 obj +<< +/K [1016 1017 1018 1019] +/P 1376 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +1081 0 obj +<< +/ActualText +/K 1025 +/P 575 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1082 0 obj +<< +/C /A4 +/K 1027 +/P 1087 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1083 0 obj +<< +/ActualText +/K 1037 +/P 575 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1084 0 obj +<< +/ActualText +/K 1045 +/P 577 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1085 0 obj +<< +/ActualText +/K 1052 +/P 577 0 R +/Pg 24 0 R +/S /Span +>> +endobj +1086 0 obj +<< +/K [286 0 R 1074 0 R] +/P 1071 0 R +/S /Reference +>> +endobj +1087 0 obj +<< +/K [287 0 R 1082 0 R] +/P 575 0 R +/S /Reference +>> +endobj +1088 0 obj +<< +/C /A5 +/K 1055 +/P 1476 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1089 0 obj +<< +/C /A5 +/K 1056 +/P 1476 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1090 0 obj +<< +/K [1057 1058 1059] +/P 1377 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1091 0 obj +<< +/C /A5 +/K 1060 +/P 1477 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1092 0 obj +<< +/C /A5 +/K 1061 +/P 1477 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1093 0 obj +<< +/K [1062 1063] +/P 1378 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1094 0 obj +<< +/C /A5 +/K 1064 +/P 1478 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1095 0 obj +<< +/C /A5 +/K 1065 +/P 1478 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1096 0 obj +<< +/K [1066 1067 1068 1069 1070 1071] +/P 1379 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1097 0 obj +<< +/C /A4 +/K 1079 +/P 1108 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1098 0 obj +<< +/C /A4 +/K 1083 +/P 1109 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1099 0 obj +<< +/ActualText +/K 1086 +/P 582 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1100 0 obj +<< +/C /A5 +/K 1104 +/P 1479 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1101 0 obj +<< +/C /A5 +/K 1105 +/P 1479 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1102 0 obj +<< +/K [1106 1107 1108 1103 0 R 1110] +/P 1380 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1103 0 obj +<< +/ActualText +/K 1109 +/P 1102 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1104 0 obj +<< +/C /A5 +/K 1111 +/P 1480 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1105 0 obj +<< +/C /A5 +/K 1112 +/P 1480 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1106 0 obj +<< +/K [1113 1114 1107 0 R 1116 1117 1118] +/P 1381 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1107 0 obj +<< +/ActualText +/K 1115 +/P 1106 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1108 0 obj +<< +/K [289 0 R 1097 0 R] +/P 581 0 R +/S /Reference +>> +endobj +1109 0 obj +<< +/K [290 0 R 1098 0 R] +/P 581 0 R +/S /Reference +>> +endobj +1110 0 obj +<< +/C /A5 +/K 1119 +/P 1481 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1111 0 obj +<< +/C /A5 +/K 1120 +/P 1481 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1112 0 obj +<< +/K [1121 1122 1123] +/P 1382 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1113 0 obj +<< +/C /A5 +/K 1125 +/P 1482 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1114 0 obj +<< +/C /A5 +/K 1126 +/P 1482 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1115 0 obj +<< +/K [1127 1116 0 R 1129 1130 1131 1132] +/P 1383 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1116 0 obj +<< +/ActualText +/K 1128 +/P 1115 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1117 0 obj +<< +/ActualText +/K 1136 +/P 591 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1118 0 obj +<< +/ActualText +/K 1138 +/P 591 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1119 0 obj +<< +/C /A5 +/K 1140 +/P 1483 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1120 0 obj +<< +/C /A5 +/K 1141 +/P 1483 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1121 0 obj +<< +/K [1142 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1148 1149 1150 1151 1152 1153 1154] +/P 1384 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1122 0 obj +<< +/C /A6 +/K 1143 +/P 1121 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1123 0 obj +<< +/ActualText +/C /A6 +/K 1144 +/P 1121 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1124 0 obj +<< +/C /A6 +/K 1145 +/P 1121 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1125 0 obj +<< +/ActualText +/C /A6 +/K 1146 +/P 1121 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1126 0 obj +<< +/C /A6 +/K 1147 +/P 1121 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1127 0 obj +<< +/C /A5 +/K 1155 +/P 1484 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1128 0 obj +<< +/C /A5 +/K 1156 +/P 1484 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1129 0 obj +<< +/K [1157 1130 0 R 1159 1160] +/P 1385 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1130 0 obj +<< +/C /A6 +/K 1158 +/P 1129 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1131 0 obj +<< +/C /A5 +/K 1161 +/P 1485 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1132 0 obj +<< +/C /A5 +/K 1162 +/P 1485 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1133 0 obj +<< +/K [1163 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1168 1169 1170] +/P 1386 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1134 0 obj +<< +/C /A6 +/K 1164 +/P 1133 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1135 0 obj +<< +/C /A6 +/K 1165 +/P 1133 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1136 0 obj +<< +/ActualText +/C /A6 +/K 1166 +/P 1133 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1137 0 obj +<< +/C /A6 +/K 1167 +/P 1133 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1138 0 obj +<< +/C /A5 +/K 1171 +/P 1486 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1139 0 obj +<< +/C /A5 +/K 1172 +/P 1486 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1140 0 obj +<< +/K [1173 1174 1141 0 R 1142 0 R 1143 0 R 1178 1144 0 R 1180] +/P 1387 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1141 0 obj +<< +/C /A6 +/K 1175 +/P 1140 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1142 0 obj +<< +/ActualText +/C /A6 +/K 1176 +/P 1140 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1143 0 obj +<< +/C /A6 +/K 1177 +/P 1140 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1144 0 obj +<< +/ActualText +/K 1179 +/P 1140 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1145 0 obj +<< +/C /A5 +/K 1181 +/P 1487 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1146 0 obj +<< +/C /A5 +/K 1182 +/P 1487 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1147 0 obj +<< +/K [1183 1148 0 R 1185 1186 1187 1149 0 R 1189] +/P 1388 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1148 0 obj +<< +/C /A6 +/K 1184 +/P 1147 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1149 0 obj +<< +/ActualText +/K 1188 +/P 1147 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1150 0 obj +<< +/C /A5 +/K 1191 +/P 1488 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1151 0 obj +<< +/C /A5 +/K 1192 +/P 1488 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1152 0 obj +<< +/K [1193 1194 1195 1196 1197 1198] +/P 1389 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1153 0 obj +<< +/ActualText +/K 1205 +/P 598 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1154 0 obj +<< +/C /A5 +/K 1215 +/P 1489 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1155 0 obj +<< +/C /A5 +/K 1216 +/P 1489 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1156 0 obj +<< +/K 1217 +/P 1390 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1157 0 obj +<< +/C /A5 +/K 1218 +/P 1490 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1158 0 obj +<< +/C /A5 +/K 1219 +/P 1490 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1159 0 obj +<< +/K 1220 +/P 1391 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1160 0 obj +<< +/C /A5 +/K 1221 +/P 1491 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1161 0 obj +<< +/C /A5 +/K 1222 +/P 1491 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1162 0 obj +<< +/K [1223 1163 0 R 1225] +/P 1392 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1163 0 obj +<< +/ActualText +/K 1224 +/P 1162 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1164 0 obj +<< +/C /A5 +/K 1226 +/P 1492 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1165 0 obj +<< +/C /A5 +/K 1227 +/P 1492 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1166 0 obj +<< +/K 1228 +/P 1393 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1167 0 obj +<< +/ActualText +/K 1231 +/P 601 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1168 0 obj +<< +/ActualText +/K 1233 +/P 601 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1169 0 obj +<< +/ActualText +/K 1238 +/P 602 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1170 0 obj +<< +/C /A5 +/K 1244 +/P 1493 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1171 0 obj +<< +/C /A5 +/K 1245 +/P 1493 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1172 0 obj +<< +/K [1246 1247] +/P 1394 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1173 0 obj +<< +/C /A5 +/K 1248 +/P 1494 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1174 0 obj +<< +/C /A5 +/K 1249 +/P 1494 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1175 0 obj +<< +/K [1250 1251 1252 1253] +/P 1395 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +1176 0 obj +<< +/C /A5 +/K 1254 +/P 1495 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1177 0 obj +<< +/C /A5 +/K 1255 +/P 1495 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1178 0 obj +<< +/K [1256 1257 1258] +/P 1396 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +1179 0 obj +<< +/C /A5 +/K 1260 +/P 1496 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1180 0 obj +<< +/C /A5 +/K 1261 +/P 1496 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1181 0 obj +<< +/K [1262 1182 0 R 1264 1265] +/P 1397 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +1182 0 obj +<< +/ActualText +/K 1263 +/P 1181 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1183 0 obj +<< +/ActualText +/K 1271 +/P 609 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1184 0 obj +<< +/ActualText +/K 1274 +/P 610 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1185 0 obj +<< +/C /A5 +/K 1276 +/P 1497 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1186 0 obj +<< +/C /A5 +/K 1277 +/P 1497 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1187 0 obj +<< +/K [1278 1188 0 R 1280 1281 1282 1283 1189 0 R 1285 1286 1287 1288 1289 1190 0 R 1291 1292 1293 +1294 1295 1296 1196 0 R 1298] +/P 1398 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +1188 0 obj +<< +/C /A6 +/K 1279 +/P 1187 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1189 0 obj +<< +/ActualText +/K 1284 +/P 1187 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1190 0 obj +<< +/ActualText +/K 1290 +/P 1187 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1191 0 obj +<< +/C /A4 +/K 1297 +/P 1196 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1192 0 obj +<< +/C /A5 +/K 1299 +/P 1498 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1193 0 obj +<< +/C /A5 +/K 1300 +/P 1498 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1194 0 obj +<< +/K [1301 1302 1303 1304 1305 1195 0 R 1307 1308 1309 1310 1311 1312 1313] +/P 1399 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +1195 0 obj +<< +/ActualText +/K 1306 +/P 1194 0 R +/Pg 28 0 R +/S /Span +>> +endobj +1196 0 obj +<< +/K [294 0 R 1191 0 R] +/P 1187 0 R +/S /Reference +>> +endobj +1197 0 obj +<< +/C /A5 +/K 1315 +/P 1499 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1198 0 obj +<< +/C /A5 +/K 1316 +/P 1499 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1199 0 obj +<< +/K [1317 1318] +/P 1400 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +1200 0 obj +<< +/C /A5 +/K 1319 +/P 1500 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1201 0 obj +<< +/C /A5 +/K 1320 +/P 1500 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1202 0 obj +<< +/K [1321 1322 1323 1203 0 R 1325] +/P 1401 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +1203 0 obj +<< +/ActualText +/K 1324 +/P 1202 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1204 0 obj +<< +/C /A5 +/K 1327 +/P 1501 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1205 0 obj +<< +/C /A5 +/K 1328 +/P 1501 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1206 0 obj +<< +/K [1329 1330] +/P 1402 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +1207 0 obj +<< +/C /A4 +/K 1336 +/P 1213 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1208 0 obj +<< +/ActualText +/K 1339 +/P 617 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1209 0 obj +<< +/ActualText +/K 1343 +/P 617 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1210 0 obj +<< +/ActualText +/K 1346 +/P 618 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1211 0 obj +<< +/ActualText +/K 1357 +/P 619 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1212 0 obj +<< +/ActualText +/K 1362 +/P 619 0 R +/Pg 29 0 R +/S /Span +>> +endobj +1213 0 obj +<< +/K [296 0 R 1207 0 R] +/P 617 0 R +/S /Reference +>> +endobj +1214 0 obj +<< +/ActualText +/K 1377 +/P 622 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1215 0 obj +<< +/ActualText +/K 1379 +/P 622 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1216 0 obj +<< +/ActualText +/K 1386 +/P 623 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1217 0 obj +<< +/C /A4 +/K 1389 +/P 1251 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1218 0 obj +<< +/C /A4 +/K 1393 +/P 1252 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1219 0 obj +<< +/ActualText +/K 1399 +/P 624 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1220 0 obj +<< +/ActualText +/K 1403 +/P 624 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1221 0 obj +<< +/C /A5 +/K 1411 +/P 1502 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1222 0 obj +<< +/C /A5 +/K 1412 +/P 1502 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1223 0 obj +<< +/K 1413 +/P 1403 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1224 0 obj +<< +/C /A5 +/K 1414 +/P 1503 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1225 0 obj +<< +/C /A5 +/K 1415 +/P 1503 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1226 0 obj +<< +/K [1416 1227 0 R 1418] +/P 1404 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1227 0 obj +<< +/ActualText +/K 1417 +/P 1226 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1228 0 obj +<< +/C /A5 +/K 1419 +/P 1504 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1229 0 obj +<< +/C /A5 +/K 1420 +/P 1504 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1230 0 obj +<< +/K [1421 1422] +/P 1405 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1231 0 obj +<< +/C /A5 +/K 1423 +/P 1505 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1232 0 obj +<< +/C /A5 +/K 1424 +/P 1505 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1233 0 obj +<< +/K 1425 +/P 1406 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1234 0 obj +<< +/C /A5 +/K 1426 +/P 1506 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1235 0 obj +<< +/C /A5 +/K 1427 +/P 1506 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1236 0 obj +<< +/K [1428 1429] +/P 1407 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1237 0 obj +<< +/C /A5 +/K 1430 +/P 1507 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1238 0 obj +<< +/C /A5 +/K 1431 +/P 1507 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1239 0 obj +<< +/K 1432 +/P 1408 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1240 0 obj +<< +/C /A5 +/K 1433 +/P 1508 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1241 0 obj +<< +/C /A5 +/K 1434 +/P 1508 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1242 0 obj +<< +/K [1435 1243 0 R 1437] +/P 1409 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1243 0 obj +<< +/ActualText +/K 1436 +/P 1242 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1244 0 obj +<< +/C /A5 +/K 1438 +/P 1509 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1245 0 obj +<< +/C /A5 +/K 1439 +/P 1509 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1246 0 obj +<< +/K [1440 1247 0 R 1442] +/P 1410 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1247 0 obj +<< +/ActualText +/K 1441 +/P 1246 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1248 0 obj +<< +/C /A5 +/K 1443 +/P 1510 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1249 0 obj +<< +/C /A5 +/K 1444 +/P 1510 0 R +/Pg 30 0 R +/S /Span +>> +endobj +1250 0 obj +<< +/K [1445 1446] +/P 1411 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +1251 0 obj +<< +/K [298 0 R 1217 0 R] +/P 623 0 R +/S /Reference +>> +endobj +1252 0 obj +<< +/K [299 0 R 1218 0 R] +/P 623 0 R +/S /Reference +>> +endobj +1253 0 obj +<< +/ActualText +/K 1450 +/P 628 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1254 0 obj +<< +/C /A4 +/K 1454 +/P 1271 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1255 0 obj +<< +/ActualText +/K 1457 +/P 629 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1256 0 obj +<< +/C /A5 +/K 1462 +/P 1511 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1257 0 obj +<< +/C /A5 +/K 1463 +/P 1511 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1258 0 obj +<< +/K [1464 1465 1466] +/P 1412 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +1259 0 obj +<< +/C /A5 +/K 1467 +/P 1512 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1260 0 obj +<< +/C /A5 +/K 1468 +/P 1512 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1261 0 obj +<< +/K [1469 1262 0 R 1471] +/P 1413 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +1262 0 obj +<< +/ActualText +/K 1470 +/P 1261 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1263 0 obj +<< +/C /A5 +/K 1473 +/P 1513 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1264 0 obj +<< +/C /A5 +/K 1474 +/P 1513 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1265 0 obj +<< +/K [1475 1476 1266 0 R 1478] +/P 1414 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +1266 0 obj +<< +/ActualText +/K 1477 +/P 1265 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1267 0 obj +<< +/C /A5 +/K 1479 +/P 1514 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1268 0 obj +<< +/C /A5 +/K 1480 +/P 1514 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1269 0 obj +<< +/K [1481 1482 1270 0 R 1484] +/P 1415 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +1270 0 obj +<< +/ActualText +/K 1483 +/P 1269 0 R +/Pg 31 0 R +/S /Span +>> +endobj +1271 0 obj +<< +/K [301 0 R 1254 0 R] +/P 628 0 R +/S /Reference +>> +endobj +1272 0 obj +<< +/C /Pa20 +/K 1508 +/P 660 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1273 0 obj +<< +/C /Pa20 +/K 1511 +/P 662 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1274 0 obj +<< +/C /Pa20 +/K 1522 +/P 664 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1275 0 obj +<< +/C /Pa20 +/K 1524 +/P 666 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1276 0 obj +<< +/C /Pa20 +/K 1526 +/P 668 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1277 0 obj +<< +/C /Pa20 +/K 1529 +/P 670 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1278 0 obj +<< +/ActualText +/K 1534 +/P 671 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1279 0 obj +<< +/C /Pa20 +/K 1538 +/P 672 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1280 0 obj +<< +/C /Pa20 +/K 1540 +/P 674 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1281 0 obj +<< +/C /Pa20 +/K 1542 +/P 676 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1282 0 obj +<< +/C /Pa20 +/K [1544 1545] +/P 678 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1283 0 obj +<< +/C /Pa20 +/K [1547 1548] +/P 680 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1284 0 obj +<< +/C /Pa20 +/K [1550 1551] +/P 682 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1285 0 obj +<< +/ActualText +/K 1553 +/P 683 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1286 0 obj +<< +/C /Pa20 +/K [1557 1558] +/P 684 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1287 0 obj +<< +/C /Pa20 +/K [1560 1561] +/P 686 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1288 0 obj +<< +/C /Pa20 +/K [1565 1566] +/P 688 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1289 0 obj +<< +/ActualText +/K 1568 +/P 689 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1290 0 obj +<< +/C /Pa20 +/K [1570 1571] +/P 690 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1291 0 obj +<< +/C /Pa20 +/K [1573 1574] +/P 692 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1292 0 obj +<< +/ActualText +/K 1577 +/P 693 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1293 0 obj +<< +/C /Pa20 +/K [1579 1580] +/P 694 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1294 0 obj +<< +/C /Pa20 +/K [1583 1584] +/P 696 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1295 0 obj +<< +/C /Pa20 +/K [1587 1588] +/P 698 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1296 0 obj +<< +/C /Pa20 +/K [1591 1592] +/P 700 0 R +/Pg 33 0 R +/S /Endnote_1._Abs +>> +endobj +1297 0 obj +<< +/C /Pa20 +/K [1594 1595] +/P 702 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1298 0 obj +<< +/C /Pa20 +/K [1597 1598] +/P 704 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1299 0 obj +<< +/C /Pa20 +/K [1600 1601] +/P 706 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1300 0 obj +<< +/C /Pa20 +/K [1604 1605] +/P 708 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1301 0 obj +<< +/C /Pa20 +/K [1608 1609] +/P 710 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1302 0 obj +<< +/C /Pa20 +/K [1611 1612] +/P 712 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1303 0 obj +<< +/ActualText +/K 1614 +/P 713 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1304 0 obj +<< +/C /Pa20 +/K [1617 1618] +/P 714 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1305 0 obj +<< +/C /Pa20 +/K [1620 1621] +/P 716 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1306 0 obj +<< +/C /Pa20 +/K [1623 1624] +/P 718 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1307 0 obj +<< +/C /Pa20 +/K [1626 1627] +/P 720 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1308 0 obj +<< +/C /Pa20 +/K [1629 1630 1309 0 R 1632] +/P 722 0 R +/Pg 34 0 R +/S /Endnote_1._Abs +>> +endobj +1309 0 obj +<< +/ActualText +/K 1631 +/P 1308 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1310 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1311 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1515 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1516 0 R +/FontName /RFJHAL+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1312 0 obj +<< +/Filter /FlateDecode +/Length 2210 +/Subtype /Type1C +>> +stream +H‰|TkTWîfè|5JgˆNcwÇÅUðòRtAÄÇ¢!"!#Œˆ ™AÀ3ÌL4 +‚ñYQ5AÔõº¨øXâ#’0*AÏj5{É9{‡ìýµ§Oßs«ª«ê«ª¯‹$ìí’$•Á+ƒÂ—OYº1#E•ž¡¡NMY­Õ$Ù¬¢Ä‘’Ò^r©@¾Èêbßðï/(hs„cÚ]†y8v$ù¨g¾6{'¯Ígøû{Mµ>CçÌ©¢—§§çÐé#%iW«Åˆ™YêÔLqqZ¢6#]›¡ÊR'Mƒ4q(D¦˜¡ÎTgèlÊ?0‰)™¢:%k­:CTacr +öÏP'‰Yª$uª*c½¨µYþG\óR‰)i"Ž%F¦¥Ø¤ˆ,¬ÌUiI8Šv(K¢öË´¬ŒuætЈÓÕâ,1I½† Hücì%AL$ˆI1 <› |I"˜$BeD˜NMJÜ`b)–÷­¤=™O>"í>²ÓØݵ뗹ÉöرWÛ×P¾T>ÕJݧ#éJºW>Q^>©¬EzÝBâÓµEVf/•„–Ò`EW(¶SÐK#]P€MüF>HÇÝ!a™–Z¶²IÌàxÆðRÊ~I…Ñ°ep`ÀM¦ú"/ srw<žÀÇ †Á ¢Bé4ÅýF/4yª½ç/Lx^ffšÎ>îà˜jݯ'Á#d`p†¼+¼æVO‡×( Í”½•~#¡璲ߢ}ùåf +¨=éZù~Á/ÈÕ?$MÇ7úPê›]æ~<üùg‚Éwþ\4 M;OÎöÁø°í²Ђ“¬·P±ÇT[VkíÞö°îò‡›7Îö ¯Ù0㦠F#Ÿùuýlõ±zÞbÊ_–£J—œ›[’Zšmʶ8@ ¤StÕz›„œÒ‚’"^“œµ’[¨n½i¹ÔÎ3O·¼‘ ¯È;àÀYvÇ¢(nºXr—ƒ?n»)ܸròŒT‚<±kɾu©O râ‚C‹ #pôR|½»Öz‚ƒéÏý›I@S½‘™ÏØPfÍÏjœè‡eý¶è²;Î8Å 0÷#3,ƒ½ýƒãhF,{'ÝÒÿ×,¹¾CuÒ-äH3ÊÀñ:©&–éî×€fã ̾’³™~.îæ­æúÀ3³Nƒ„[Îø!åÓìnW«Ïö¼‘ÖÜKzÿO §Æ"ñw?šÑ`Du/@Û‹S2Œ uít§ñˆv¯÷ޙ߮(×;KçÖl|¨{–ó´b÷8Xå׿»zµ[yY÷ÚÃüñøÅߺs!¡_­€ñSXwÀ=èjM Z0K¦™yÕ:éÖ;âlŒÃuK· êÝà6WXA3†>é©žìÄݨÇöÎ?Å ³­í÷OðûÐI¼¤@ŽƒãåhlÔ2¯Y+Ú`,/—3†Ÿ"tPØÕÛítƒžŽìf)Ú¹¸Îxú{%„ÈßÇ÷!Ï€0Ý—ÉüßæPÕõ-»ÎqÏ+£Ö Er´ÈŒÈ¥ÈQÉ6] +ysýüÁãu¼•f7o¤ØæM¨(2”òk Éëc¸$Íþs÷Ÿîí6 +ÌfÃë%:éϯ`­Þ©#6Àv3Ìqf›·ÝÃìÿ´áï™×9°Y7Ì`²Ù¯à‚£4q©‚Nã*:q’•ÆHã:X¨Wì´TXvð«Î4¶pON.ðØf·¸¥Q_kÎã;LååJffA/8=‡Ïðß0ÖƒLʵ{îùNù!œ‘òôG,â[¯;xu^©Ü}Šßø#•»fuÑrnnèñŸJ…çö-[Ü~À=ÙotDè—7d—m( Î’ð¾G< ¿V}¾mÿî’âJ~ǯÔ7ú [×qª˜¼”dA•˜¦Ô-öèäL:Rÿ +Ãz ý¥AïÔc wÿ±4YÚ¤`_/¡ŒtSVBc‡†ýÉù þù$u£åÐéZÁ¢¢'|ªš½w†OŸNm8Õ‘×ÎÝì¬:s^8¶úÞ[%’³oZš,õ<.ê "טSšÇ'ä&¦®âT7Ÿ +ìë¾ó×n·6¤ÄWòÖs¾AÉhq9Ÿôã©xÑEá’:œñå{ºÊ\ùu9¬òè‘sÜ­š¨Õà±5ÉÁÓçÒ,MZQn&¿!WŸ½9ËÁ6ŸÑ´í'•6é¡Ä 7æ³L¾ßc°ÓlúT3^ë)˜B£ÕpA,…&Óh8š‘—“«ËÏg¤ô +oȘ!CblQÁŒÃNøÍ`cÍHXøÇû‘ û2NÒU–ª­;ù£‡Ïr—Æ.PÖŸ‘WYwYwò •‡ëNqWkcg h?ÖÛàû_š¨)ÈNç³rõúœt#}Q·²ñ¯œB¼:S(¥Ùæâ»Ô'´UeŽ‹P2ɆŸáé L ¶+ƒ&©X&Mpóñ|?xÜ+§.Œi²û[4Q(¡xvÔ'Ð-&tÁ¼Uw^>nxÖ)SŠK`AnÐ×qŸ­ì°m°­4ÛVe©´Tð—*šŽ_åvUå[ r¶ÍR°ÅœÏE/_š)”Ðì¡’^J¤­ æ¸ÅJÆ£ †»ÛzíT!mfÓ+0u`ñà& +FÑ°LÚD!g:•Qì±¼ƒº0Ñ¡”.l*8‘{ú/P6–·2 Àãð:¬Xë²¹»ÚÜåt;ÄPìíªs•çʯ9XèŠðŠU»>¿‚bÆMÃ4[èQt$ÒäýGA aÍaÀ8k8Pw æˆß÷ u6ŸßEµ‘Õ¡ ñ¦ öG|/”à«Ÿþ£zúwíéÓ§/žÎö;mú•éì@¡ŠéßõÀB@¡Ó9å$Åópvóp?çúÎÏý|*Ï5"?ÞˆQZ[T +endstream +endobj +1313 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1314 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1517 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1518 0 R +/FontName /PVEBDP+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1315 0 obj +<< +/BaseFont /CUCKKZ+Wingdings-Regular +/CIDSystemInfo 1519 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1520 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1316 0 obj +<< +/Filter /FlateDecode +/Length 603 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaC,Ë`KÜêÐA[QÇtGfƵ¥C!-I#æ%xÏÕI¤%á!=˜Çš$ "öÍúVè›íÒ©ïðãý~ïûýÞ㮸ˆ#„øϵ_ïŠ]«¥5%!ujjc\QzÕa©MMJ…v±}ÅöA¯ˆ‡qz§{ç‚>ìƒÕýosEå\!_ÛÔQæ4艖–¦Ã<Ù@›B¡PôUR{eOë†<¢ÓŽdŸªªZÂ¥m¦…j².k)Gü»Ut*+Æ ¬Ñk(̯É5´„$$´›Tu:ÿÐþÿŒ¢J’²,z5©8,n0Q§‰¤d)jaJŸ:–44EÖÁöø•ô¨LOQIîçØ;¹×̹Ùõ¸gp‹ÄCjžd–ìïK„á¡%W¦ØžÊuæ§x˜Æw"Fá‘,)¾Á!ùYOžï.ÔEÆyûµèTè0!cÁÐ&Ä,²œuÁ†ME C ¢.ìFà•…a¼ðx.•‹Œ“å-¸ôÍ +èôÜšüìÀ?=»pz><¾¨ü‘‹4be3u›ý÷øÔGå‹ñÝð²òØn„Ò–}ß"ÏÁ—Á傉\TĪ3X‹Ýس‚uàƒÒÍŸ0 qbmõÝ€¸ú ËQÀª1,k?¯þ†£PÃì+ÕÂ\Ê^Û&àc{û*²öÛøë8”ñÂÓ¾mB½iš3&7ÌO¦‡I·L0iÞ܃ýæºYâŸëíñ–d¼¥ë{³¥¶÷€=.þ`O& +endstream +endobj +1317 0 obj +<< +/Filter /FlateDecode +/Length 3278 +/Subtype /Type1C +>> +stream +H‰|T{TgŸÉd&‘ʸ’ÚŒ;E_ˆ‚‹VÔ + +"jH‚Æ"Þ¯ V ôhQäiµµ ’¨!Q¬ZuÕª»Öê|T´ÊZwqï¤_س={NÿسgιóÝïñ»÷÷»ßwqL*ÁpóшIáÙ:mœ:B—<%L»e«~`‰Fá‚·TøýPMAe¿œü%˜„«ÃÀ=üÒ(Ï/ŒÀqiWOÂÆ„…É)âiñ”jÚìÙÓ'Ø™ƒ6h²jz@@À © +Q'oÖ¨¢²Óôšíiª¥Iñɺ”d]œ^£öW…$&ª!ÒT:MšF—10ùkN*mšJ£ÕoÕèTqââ­x^§Q«ôº8µf{œîUòÀÊoÜ„ÿJ¥MR‰Xªè$퀥'ÓTqIê©"Jò`”øäô$½N«IóŸµ*;E£š¥Rk0 ?ÌÆI0†±6ÃÆJ°‰6ÃfØ9.Å¢H,Ã’1ì$†ïÁ°‰¢ÌX8¥`&ìÖ‡ã:Ü)!%ë$;%G$=DqŒè i’ô!©"ϨñÔêß²ÙBÙy¹\¾Bî‚Y=¤bÈSޣģÛÞÙ3‹-u +¯œ¸hÇ:‰R©PìŠpSP†.3h$á…T¨ƒÇ}@æ¦6 Ža}J8Ï ŒÐ€G£Ny?2â:òdªN´Us/¬häŽð„åÆÉiÃ3üB'ñÒÀ4Vm8–[›––“•Ê§•Tg4°4Zë +ÉÄ A4Ç3ðKKÆPèÏýZ’Ž0X…gÜ쀛Nö¹&0÷‡ŠxTPöÒ¯—ïG …|Hzƒdü.5’³h˜˜Õ¢ñ‡M –ª[€wótD©M¸×Š !,ò¶¡»&ÙY; Aðþ‹À»Êûëß vÉÊMW»l8ÑþÕ5$'„ 霴-âW„“Ûe"hþ• ô‹têD:u"ÌA:™ ¬[.ý_$ÍG3À`…WJ3½¾¾TÜBÀÀ‹¶"MF±h'ø@Pתš&žþûn«ÐkŻ쇢k/³»ÝQr^Ô´×|ã +õÛãÏ^+ßl¿}‘û&Êÿhùéε¼} ³ÿ Û~qcb‚æ—ðh +y¢Ä8õÞ}ÉýA©Ú­px˜|„wT‡ÁbEOúá} íPOѨûh†+0s`W—+é´»eôóÒë›2„]Uê:+xÙ±ð®7¼”)AZrw÷Cδ·9ôì‡Î¹ïA¹{yÆ‹žRŠêÑ{çàŒ%Ûn¨ÿýè=T%Œ!7ôRtœ¨û5 œ±ˆà«v¢ËÛ×ú¨î=­ë&ÖVF”gÊTþñ§¾/÷žö\tµÜ${püÂåçJ{ö™¤\‹zUí v}äî›y»–ÙWÝ´ÿ,ûöû¸±ÓGúð*ŠžUd¿b‡*;ÑṲ́6ßʺÌÂØ;?þÜáDÄ~¢y“ùž²£åà—Û² +j¸+Y©_WÆ"jöB¿©7¢×ð¯4–ó•³ÂWú®\]{LÃѳEh+šv4Þí.R¬îÜxH¦è¿l®‘Ú ÒöAùÜþ2´ùm¨X{H¿‡xN¿Î=I†fÏ[ˆßà›0Ÿ&Éhƒug”[Áßêeq»"OðöÞÝb´˜•°Bö$õŸˆß]˜´‰«ÜJ66>Ôʵ÷³Éë”…2´Æ4a "” +Dz3‹ÿv¿£­¥ž+£yBIø3 +ÇcQq›³!&˜ýxýÉÛ ®ª¯˜§÷DÖZ 9Ó«ÓOÛy0Ô[á(û‘4QKÌ—ï³}€?†ù0.¨yFhÂ?áð—Xwˆ¿ÅgÔrç ‰©.«(;ÌýPÿ­ã ø• HÂ+hxØ4$ùCxûÝ ÎxØxø’/> nkïßeÆš»’EÄœ.äÍ×Àt´ä4ðÕ²"k]u‹Æúøˆ¯cÜO¾ÀßvÖ:ÊÓÅ¿ÉØÖ?Øa¦+†A2[úš¶Y,òðóE3÷òȧÛ<º/9:9“˜mYÙF›Œ­§”B,Ö]Áä ‹ 8…#8cÙ†P±âѯƒá7Ÿ÷=¸½¬š/+0e(éð"l3Ã\ n³Ã7NBXFÆt°ô`…òövðCÓÐ力Ñè'¾À=rÔ•×p…f² eKþ"Ö/è +øóef滃g{Þ² ?1nI O#±çËÍ°ÞŠ?²0Â[Äd̈9.û©¶«û‹Ú]»*¸J3y0?å`"›_”Ä«Õù+B”©¡šÛîå2ºi¬0×*X ÿ•¡SôŒâ•ñÒHY3cÏOfG#É ŒF<žO.žv4ò¦Å³`ÍøðؚϷq9j2åÔÕü¯Ù 7*[OóVsãU¦‹LÑé4™M§¸µ¨‰É)Îþ4— M[¡^Æ"rå ÀxÅ+PÜyôæÁ¹5‘uܾ|S^Ž’6ˆŒVÛĪàâ=j±âk¶Sµ¦#ûpWê.9n±?7͙ɣ;´É yÖoHØV”“Â%åèSóSäF¸+¶žç"Œ>ä½nÞ·+^ˆ=FÐǺõ2EoƒË—IÏÉLO¯Ìú¼ñ?DVmLSgáÞªj¸Ô•^½wK6 ÎME7çÇÜ4NÉ°FÊG(N‘H[ +(­œsô‹"YÀªk X¹?øÈØtÊ爷¹É–àÈt‰çº×{o YrsßäMÞç9çä9Ï9ö–6×RŠKùîE•È*R>Wa8Œ¥:(i«øE-¡&Ä€úIGCó)+3ä¸v‹ïMÄ]çaTÒÜèÀq^uüßÒzw 9,:ÏÃ7ØŽB:ÒSòtE‡˜r®â¨îð<9Z–âßFoÌÈÚ]ÀšHªßø ¡&Ísžz¶ /©=<5.²öG£…ù®e8p‡ž™-C¶á2dlLR'1èŠñáÿ@°°äð ›L« —¡p4g5Z–O/‡EÏ`áO° bVÏ hös<^#t Z¸quLì¦Gñtæ‚78Úr’D¨êÙªôã!ìzOy\âã˜àãih!¨±³ƒÎë¶a¼•X“{[•ÐY9Æ]‹qUä;è\¹’K«ÉŒÆ˜W¸~íÈJh—g’o¢Ž²Ý•)zuô ²¦O¨Úré«8Ä&a]h“H²õ…’h¬1דÁXÍ”ìÊÏ.)-,̯(©µgË-m^÷÷ƒ=¿@,¼ÿÊSH¼ƒÜärô¹5˜°ö|•·ê"ÞFoË¥é ÷†t ‰¡]Ð!Ó‰^‰w¹§.À Óî_÷tÙ +>_‚w^ô +bð?ð‰ÝxX Öë&„OÏæ‡Á2ChZƒÂp“,C±¸Vá°Öâ4bYP ©¬I·ßžLÇÄmFIJÛ@Òßn¿ÄÖt•%šê,ú ÕØädߧ—*ÙX©á¥Aïê>ÜÕü3\€º'¬:Ê‹¢°Q;'u:·š+ÂF­É©:\Àjr8ѨwNBMýáºû ½íØ1CÝvxjêŒîÈWtægº¢böÀŠ Š² ¥ó˜]oJ-g±XÚ-$ʵ<°Hð•Öo¯æá«qË|¦5K1¿>"Ü·€‡ÍQ‚_öŸûa³æ +endstream +endobj +1318 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nPÒ&´“iìnÅDcÐ(F"jd†EÁÈÃEf`FDqx©Ã0°òpç(>x‰"%Ê:*T0Xš-× kmj-6³fS»[•Ó䚪íÁÚªýµu«OÝó¸ç|çôw/Ž¹»a8ŽÏKŒß±e™ºP¯MI‹Ñë–oÜŸ’šår "‹‹´»èëÅ Tã+_ðK‰îÎÞ›ðõðõÆÜpüùß6ér¥£™ùÂGk×® pÉàùI€°rÅŠ32XKÓíÕ±…†|M¶AˆÈIÕésuú”|MZ ¶¿0“ è5Þè2¾$h ‚F›Ÿ©Ñ )’3C+×kÒ„|}Jš&;EŸ%è\žÿQÓÿO)A›#H¹„9Z—›/ BJNZ”E7S%UW“¯×j A[bã +s5Â!M“Ža¸´°w0l1†}ˆaãØFûÇT¶ÃÔ2,Ö KÂ0F*¦Æb0=öûÃÜ–»•±2ƒ;á¾Ê=Â}BÎÉ5òëÄ<"…h,±Þ_ßÄ%éwSfuOǼ9N@5ºË P¨“Ã÷Ð0.åM-ù†HžÙC(’tB¼Í¸vÈ¥Qh‚B&ä ñ£pR„ÀŒ|7ô¯Ë€£ðEÑÒ\¿Œ%ì*A ‡¨€8Ùx SÑw÷èKàvöîù‡·nOÁ|%¼›ômØ-nHâ@ ».ôhé6"Ð\ÆVßbëd{¦FóPÀª­ÈÓÆ9hµ•òJq§W›\¹eãÓ«™_WCÄôj’úÙa„ÀÀx_ò…C ¨dã>ÒæD'1rö`H+ß¾¦egƒÉÔDñ¹‚Þ5 &·yÔÃmî«|h¸±§—ë;åÇ~ZQÏC8š#Aiµ]dïWöêâ• iÚpnAÝ*¥¢øãC î – t3¦þçÆ,$|÷ðx7޹ƯîÉ8uQÙÕÕ~çÑÍÅ\?øÉÛ“·7…°(Ô?ÍöD*ÿM^×}Jm¶Q­R9{9ªß +Ä"c +Àm(ïó°HØD‡ŠŸŠ³–!§BH˜ó +­_ü¹®(‹ëA¤¼­çNëmv¢©ÀÄ#ѺJ4kR(éäµãv6]é㪠:´aœn3‚š)µ–ZʸÜ2]a›mlî¼êxÂS?™aÂ"¤š¼G@ÁI‚=>´³öÜFÄõÞ9p›ܧ` Ël«þŽ<Ù¨DCºŽ·€©ÞÜ"èCÑ–(KQÐËÔUI‹ë;Ñu®½>AÅÓÎõÚÔ/2tºË¹ÊÚÊúz¥«ì"¤ÈQ ó]u»¥±ƒŠvŠ³¦Tk!» ’›w°ÈcaZ[Å£ –1zïôH/g“ÊÕªäLXz-ãcJñI;%såK ·¯B——Á&¤<8ÿåýþó9ÚZ¾ªÌZV®¤:K@1ÔŸ`Þ ëÁBdb5D2Õöšs]J`ÃÁ}Œ"Â?"ÑŠ lì«ÚŽ{\>xÉïÞ}tµýô• +©oŠé®v8‡ÙÑÆ:žú ÒÀüg0Š€5¿íf‰ÔÍ ñ}ÑÌЯ+vÊ-Ä@ÞÞ3¿aÑ?„½\^Îk-ý]¼­€ø,!326¶­%›Ó"_¹aèqñ#ö›§7Fù{·[^¼T‚ƒ¤_<· VwqHN3fkÑñ.·ÂP°MÈþýW<ýúÙ嫃½gŒ™u\UyU©ÔªÃ(šM_Ãg¸ôKe`öÍÒˆÌä_§ËÄfd$&õiFF/õßà•™—bY)|:Ñ4;âªéD¤"(øUºaüÌ.^lOé›%‘Ò)El"èÐGÚ­¿;ɵÔ6uô²-qH‚oôä‚}9åÅz.¯¸ÀdÒ{X§1±3ŠýdO’¡?FÐÎò19ZFØ’mÛ·*©) Á/°Øü–™´4Óë.|= =dcÕ©šz®­®¹£lß·ÝU]åªÂªŸ!rí®¤¼BNÊx½ìý7ãs³”¦h‰ÑÑ2¸#Zô©ß"´±\bsÿ,½#Kÿòˆf¾<­ÿ47>)Ö0úd¢}âO °)Xg6]0™GW½6 +ÇH{Uƒ­ž¨¿tz˜m;e9ÞÈÓõ°ž¤«ª‹Ë­ElJ”~Cž«×³SrHØöÚv­WR1%ð.´Áü*l¸a²®Æteìð#ž|ýŠ¯üCúÍ{<¶µ54+Û[뺆ŠÌg¸N äMY;£YĬÙü_¹ýr `Záƒ'Ë +•…‡J5É‘í-:ŽBt ,AïEÞ“°™Î§ÿh¤CÈ Í‰]Ù\Þ¹k…ÃìÐÀ‰ZO_†ù¤¥ä°å»çpÇ=ü‹A )ƒA*,Ä;ÄHY‡)Ýå,ÑÝy¡·ó¢D?ÅÏoV¢…°ã8™½?_Ÿ‰¼ÑruÄ.ší°Än·wØ ”nŸ°“’é€gL’iÒîÉ9öîöò´zÍÅ,PÍ/{“—\Ÿ+Ö2ÿ`rÐ +endstream +endobj +1319 0 obj +<< +/Filter /FlateDecode +/Length 360 +/Subtype /Type1C +>> +stream +H‰|OKQÅgLGJ + #î¢]¦&B¹† úcZÛbtž:¤óä͹j+µ˜mÐèH´mm]Ô¢ý¼|.zoÚ´js¸¿{¸çÞ+KÁ€$ËòÒ®¦Ëkû=bêF‰àõ2jt[:f‚&dÒå¨Ê6Øp2™ì…¼ç…_”²üþ±;|®Ñt`#ŸÏ&…æ|ÝLB6“ÉøšÍÀU•ží ¶ E«†IÝAF +´V ü²¹ÍßkÀ´™NйÙ0ùª¢b‚b^3våÒK×K¹®{ï*¬î¾¹á•»êYtv¼Î#ãëèü}8¤` +endstream +endobj +1320 0 obj +<< +/Filter /FlateDecode +/Length 1318 +/Subtype /Type1C +>> +stream +H‰|RkPWÞ%ì ͪYº»u°•‡"¨ØŠ"c­ÖŠO ` Ć„&1€h ø ’jŽ´µE-‚Š:0ã£øì訵µ>(JUpêà8­=K/éÿôWïÌ=s¾ïÌ9ç;ç^ ÀpWe¬KMI^µ¬Ü¬×êV˜M33øb}žÉ óG9ÆU ¬D ÈØö÷.‡À£IWˆL€ã÷SL%bva‘•‹KLÔDûmü˜ÍiÔjõ˜ç’u¦<žË(·Xùb ·Ä˜o2—˜ÌZ+¯‹á’ n¬„…3óÞló“¯5qz Çë­E¼™ÓŠÁB½˜oæuœÕ¬ÕñÅZó'œÉù,øŸVœÞȉµ¸ÕF½eXEÒÂiºX±Ši¬K¾i“ÑjÖó–˜Ø´ŒUå%<7—Óñ˜xpl¦À(L…Åb)X¶[e`k± â.±e"hÂÎàx%~'`i@“„•äINH^pîáy.Úð‰;PpŒ¬uàE”( ö0D"U‚Œ~!%sÆ|HB"&…3J¿‡üH>.·?ÊžáGa"| +!88¡DÑ ( å°(³ö> +ƒHbûà àaÕ"àP똩ü©]ƒ¢šŸ•’žÛšZ渺\£åͶ¦;È$`ÙN"Íüæ]"<¤ÜýRÈ}ðØK( }‰š<ÒÞnˆ?ûT½J}ŠÂùl¦=ž8ØÚ}¨—~xdÝG¬+!e>š‰¦%-ž²P*¯†7ŸÀî§xÈÁ +ÉPµò€«ÅÝâØ}÷pïÙ ë?t «Í<‰:Ù(„¡‰(¸?ˆ«]ÍÇZ«r¹1S«ŸZhÌÚœUSì(s•y‚``SÞo]0ËÅnvTÕlc e…Öõt:溋½×yþ +#¿á†Yˆ± ßÀtw©âp H*>…RÊ×㌷¶uAçÜÓÉSa1§£Ff#U’Ôþpoüž8ÆInëîæüŒÁ©)ˆûg6)ßdþ¾Mxûw(*U\ƒq“¨-ðn(Õ½û¶¸·Û¾·\¥!$ÂÂŒÚÙÃHF/ZcÈ.fp…ŒÞ$©-ë«  UéóÔ{ö2ç;Û{输© ,Õ‘½,i͆cÝŸ1ν®º:•\]5ŠG ë÷86BD°¯3|¥úk-„" R'" +Ñ(b(47/4ì?Å”?$¶äm[IÏO;þ›ƒ}سë»w辦ä+‡Í6aÚ »Š`H}'‡Q®…ŠþI²ÑÓ¸ËÇ­?ÒÞE÷~›•Î¢6‘ï”6z÷y}L[Ñçè‹-YóXô¥ÈwHAx~^¾¡ª¬„±n--Ý\ä$ÏÙÖ·/¥ssx ë ©î?o‘^mmv†J¾Áþ~}"DÁv $Ð!ìT¢w¦E x¤~ ŒøÏ÷EM3"_¢é¬#NÙ4~ADfZêÂo={ÐÖ?ÀÊÑçâHí¥-coA5ˆÚC`I]nô4xê™óõÇ/ÒûêÎ:–j€ )uÙSµ½¶’^»²(ÍÂÖÔ¡š!‚#½¹µÙKTòni*Jõª¤^¨PÂ’Ñ +&°\¨ P(™„Üuì³\;_ä «;ªNl=ý¸§È+}B…¢|>ß×>ønû¤"U惘1*H¤~ñcšórƒÇ¹ƒeƒã!D6X,´NþPþ+À­`€X +endstream +endobj +1321 0 obj +<< +/C /Pa7 +/K [1416 0 R 749 0 R] +/P 477 0 R +/S /LI +>> +endobj +1322 0 obj +<< +/C /Pa8 +/K [1417 0 R 754 0 R] +/P 477 0 R +/S /LI +>> +endobj +1323 0 obj +<< +/C /Pa8 +/K [1418 0 R 759 0 R] +/P 477 0 R +/S /LI +>> +endobj +1324 0 obj +<< +/C /Pa8 +/K [1419 0 R 768 0 R] +/P 477 0 R +/S /LI +>> +endobj +1325 0 obj +<< +/C /Pa8 +/K [1420 0 R 774 0 R] +/P 477 0 R +/S /LI +>> +endobj +1326 0 obj +<< +/C /Pa8 +/K [1421 0 R 780 0 R] +/P 477 0 R +/S /LI +>> +endobj +1327 0 obj +<< +/C /Pa7 +/K [1422 0 R 794 0 R] +/P 488 0 R +/S /LI +>> +endobj +1328 0 obj +<< +/C /Pa8 +/K [1423 0 R 797 0 R] +/P 488 0 R +/S /LI +>> +endobj +1329 0 obj +<< +/C /Pa8 +/K [1424 0 R 800 0 R] +/P 488 0 R +/S /LI +>> +endobj +1330 0 obj +<< +/C /Pa11 +/K [1425 0 R 803 0 R] +/P 488 0 R +/S /LI +>> +endobj +1331 0 obj +<< +/C /Pa7 +/K [1426 0 R 816 0 R] +/P 501 0 R +/S /LI +>> +endobj +1332 0 obj +<< +/C /Pa11 +/K [1427 0 R 820 0 R] +/P 501 0 R +/S /LI +>> +endobj +1333 0 obj +<< +/C /Pa7 +/K [1428 0 R 823 0 R] +/P 503 0 R +/S /LI +>> +endobj +1334 0 obj +<< +/C /Pa7 +/K [1429 0 R 830 0 R] +/P 508 0 R +/S /LI +>> +endobj +1335 0 obj +<< +/C /Pa8 +/K [1430 0 R 835 0 R] +/P 508 0 R +/S /LI +>> +endobj +1336 0 obj +<< +/C /Pa8 +/K [1431 0 R 840 0 R] +/P 508 0 R +/S /LI +>> +endobj +1337 0 obj +<< +/C /Pa8 +/K [1432 0 R 844 0 R] +/P 508 0 R +/S /LI +>> +endobj +1338 0 obj +<< +/C /Pa8 +/K [1433 0 R 850 0 R] +/P 508 0 R +/S /LI +>> +endobj +1339 0 obj +<< +/C /Pa8 +/K [1434 0 R 856 0 R] +/P 508 0 R +/S /LI +>> +endobj +1340 0 obj +<< +/C /Pa8 +/K [1435 0 R 864 0 R] +/P 508 0 R +/S /LI +>> +endobj +1341 0 obj +<< +/C /Pa11 +/K [1436 0 R 869 0 R] +/P 508 0 R +/S /LI +>> +endobj +1342 0 obj +<< +/C /Pa7 +/K [1437 0 R 877 0 R] +/P 510 0 R +/S /LI +>> +endobj +1343 0 obj +<< +/C /Pa8 +/K [1438 0 R 880 0 R] +/P 510 0 R +/S /LI +>> +endobj +1344 0 obj +<< +/C /Pa8 +/K [1439 0 R 883 0 R] +/P 510 0 R +/S /LI +>> +endobj +1345 0 obj +<< +/C /Pa8 +/K [1440 0 R 886 0 R] +/P 510 0 R +/S /LI +>> +endobj +1346 0 obj +<< +/C /Pa8 +/K [1441 0 R 889 0 R] +/P 510 0 R +/S /LI +>> +endobj +1347 0 obj +<< +/C /Pa11 +/K [1442 0 R 892 0 R] +/P 510 0 R +/S /LI +>> +endobj +1348 0 obj +<< +/C /Pa7 +/K [1443 0 R 904 0 R] +/P 515 0 R +/S /LI +>> +endobj +1349 0 obj +<< +/C /Pa8 +/K [1444 0 R 907 0 R] +/P 515 0 R +/S /LI +>> +endobj +1350 0 obj +<< +/C /Pa8 +/K [1445 0 R 911 0 R] +/P 515 0 R +/S /LI +>> +endobj +1351 0 obj +<< +/C /Pa11 +/K [1446 0 R 914 0 R] +/P 515 0 R +/S /LI +>> +endobj +1352 0 obj +<< +/C /Pa11 +/K [1447 0 R 917 0 R] +/P 517 0 R +/S /LI +>> +endobj +1353 0 obj +<< +/C /Pa7 +/K [1448 0 R 926 0 R] +/P 524 0 R +/S /LI +>> +endobj +1354 0 obj +<< +/C /Pa8 +/K [1449 0 R 929 0 R] +/P 524 0 R +/S /LI +>> +endobj +1355 0 obj +<< +/C /Pa11 +/K [1450 0 R 932 0 R] +/P 524 0 R +/S /LI +>> +endobj +1356 0 obj +<< +/C /Pa7 +/K [1451 0 R 956 0 R] +/P 539 0 R +/S /LI +>> +endobj +1357 0 obj +<< +/C /Pa8 +/K [1452 0 R 959 0 R] +/P 539 0 R +/S /LI +>> +endobj +1358 0 obj +<< +/C /Pa11 +/K [1453 0 R 962 0 R] +/P 539 0 R +/S /LI +>> +endobj +1359 0 obj +<< +/C /Pa13 +/K [1454 0 R 966 0 R] +/P 541 0 R +/S /LI +>> +endobj +1360 0 obj +<< +/C /Pa7 +/K [1455 0 R 1001 0 R] +/P 554 0 R +/S /LI +>> +endobj +1361 0 obj +<< +/C /Pa8 +/K [1456 0 R 1004 0 R] +/P 554 0 R +/S /LI +>> +endobj +1362 0 obj +<< +/C /Pa8 +/K [1457 0 R 1007 0 R] +/P 554 0 R +/S /LI +>> +endobj +1363 0 obj +<< +/C /Pa8 +/K [1458 0 R 1011 0 R] +/P 554 0 R +/S /LI +>> +endobj +1364 0 obj +<< +/C /Pa8 +/K [1459 0 R 1014 0 R] +/P 554 0 R +/S /LI +>> +endobj +1365 0 obj +<< +/C /Pa11 +/K [1460 0 R 1017 0 R] +/P 554 0 R +/S /LI +>> +endobj +1366 0 obj +<< +/C /Pa7 +/K [1461 0 R 1021 0 R] +/P 559 0 R +/S /LI +>> +endobj +1367 0 obj +<< +/C /Pa11 +/K [1462 0 R 1026 0 R] +/P 559 0 R +/S /LI +>> +endobj +1368 0 obj +<< +/C /Pa7 +/K [1463 0 R 1032 0 R] +/P 564 0 R +/S /LI +>> +endobj +1369 0 obj +<< +/C /Pa8 +/K [1464 0 R 1036 0 R 1521 0 R] +/P 564 0 R +/S /LI +>> +endobj +1370 0 obj +<< +/C /Pa7 +/K [1469 0 R 1049 0 R] +/P 566 0 R +/S /LI +>> +endobj +1371 0 obj +<< +/C /Pa11 +/K [1470 0 R 1053 0 R] +/P 566 0 R +/S /LI +>> +endobj +1372 0 obj +<< +/C /Pa16 +/K [1471 0 R 1058 0 R] +/P 569 0 R +/S /LI +>> +endobj +1373 0 obj +<< +/C /Pa17 +/K [1472 0 R 1060 0 R] +/P 569 0 R +/S /LI +>> +endobj +1374 0 obj +<< +/C /Pa13 +/K [1473 0 R 1071 0 R] +/P 572 0 R +/S /LI +>> +endobj +1375 0 obj +<< +/C /Pa16 +/K [1474 0 R 1076 0 R] +/P 574 0 R +/S /LI +>> +endobj +1376 0 obj +<< +/C /Pa17 +/K [1475 0 R 1080 0 R] +/P 574 0 R +/S /LI +>> +endobj +1377 0 obj +<< +/C /Pa7 +/K [1476 0 R 1090 0 R] +/P 579 0 R +/S /LI +>> +endobj +1378 0 obj +<< +/C /Pa8 +/K [1477 0 R 1093 0 R] +/P 579 0 R +/S /LI +>> +endobj +1379 0 obj +<< +/C /Pa11 +/K [1478 0 R 1096 0 R] +/P 579 0 R +/S /LI +>> +endobj +1380 0 obj +<< +/C /Pa7 +/K [1479 0 R 1102 0 R] +/P 587 0 R +/S /LI +>> +endobj +1381 0 obj +<< +/C /Pa8 +/K [1480 0 R 1106 0 R] +/P 587 0 R +/S /LI +>> +endobj +1382 0 obj +<< +/C /Pa11 +/K [1481 0 R 1112 0 R] +/P 587 0 R +/S /LI +>> +endobj +1383 0 obj +<< +/C /Pa13 +/K [1482 0 R 1115 0 R] +/P 589 0 R +/S /LI +>> +endobj +1384 0 obj +<< +/C /Pa7 +/K [1483 0 R 1121 0 R] +/P 592 0 R +/S /LI +>> +endobj +1385 0 obj +<< +/C /Pa8 +/K [1484 0 R 1129 0 R] +/P 592 0 R +/S /LI +>> +endobj +1386 0 obj +<< +/C /Pa8 +/K [1485 0 R 1133 0 R] +/P 592 0 R +/S /LI +>> +endobj +1387 0 obj +<< +/C /Pa8 +/K [1486 0 R 1140 0 R] +/P 592 0 R +/S /LI +>> +endobj +1388 0 obj +<< +/C /Pa11 +/K [1487 0 R 1147 0 R] +/P 592 0 R +/S /LI +>> +endobj +1389 0 obj +<< +/C /Pa13 +/K [1488 0 R 1152 0 R] +/P 595 0 R +/S /LI +>> +endobj +1390 0 obj +<< +/C /Pa7 +/K [1489 0 R 1156 0 R] +/P 600 0 R +/S /LI +>> +endobj +1391 0 obj +<< +/C /Pa8 +/K [1490 0 R 1159 0 R] +/P 600 0 R +/S /LI +>> +endobj +1392 0 obj +<< +/C /Pa8 +/K [1491 0 R 1162 0 R] +/P 600 0 R +/S /LI +>> +endobj +1393 0 obj +<< +/C /Pa11 +/K [1492 0 R 1166 0 R] +/P 600 0 R +/S /LI +>> +endobj +1394 0 obj +<< +/C /Pa7 +/K [1493 0 R 1172 0 R] +/P 604 0 R +/S /LI +>> +endobj +1395 0 obj +<< +/C /Pa8 +/K [1494 0 R 1175 0 R] +/P 604 0 R +/S /LI +>> +endobj +1396 0 obj +<< +/C /Pa11 +/K [1495 0 R 1178 0 R] +/P 604 0 R +/S /LI +>> +endobj +1397 0 obj +<< +/C /Pa13 +/K [1496 0 R 1181 0 R] +/P 606 0 R +/S /LI +>> +endobj +1398 0 obj +<< +/C /Pa7 +/K [1497 0 R 1187 0 R] +/P 611 0 R +/S /LI +>> +endobj +1399 0 obj +<< +/C /Pa11 +/K [1498 0 R 1194 0 R] +/P 611 0 R +/S /LI +>> +endobj +1400 0 obj +<< +/C /Pa7 +/K [1499 0 R 1199 0 R] +/P 613 0 R +/S /LI +>> +endobj +1401 0 obj +<< +/C /Pa11 +/K [1500 0 R 1202 0 R] +/P 613 0 R +/S /LI +>> +endobj +1402 0 obj +<< +/C /Pa13 +/K [1501 0 R 1206 0 R] +/P 615 0 R +/S /LI +>> +endobj +1403 0 obj +<< +/C /Pa7 +/K [1502 0 R 1223 0 R] +/P 626 0 R +/S /LI +>> +endobj +1404 0 obj +<< +/C /Pa8 +/K [1503 0 R 1226 0 R] +/P 626 0 R +/S /LI +>> +endobj +1405 0 obj +<< +/C /Pa8 +/K [1504 0 R 1230 0 R] +/P 626 0 R +/S /LI +>> +endobj +1406 0 obj +<< +/C /Pa8 +/K [1505 0 R 1233 0 R] +/P 626 0 R +/S /LI +>> +endobj +1407 0 obj +<< +/C /Pa8 +/K [1506 0 R 1236 0 R] +/P 626 0 R +/S /LI +>> +endobj +1408 0 obj +<< +/C /Pa8 +/K [1507 0 R 1239 0 R] +/P 626 0 R +/S /LI +>> +endobj +1409 0 obj +<< +/C /Pa8 +/K [1508 0 R 1242 0 R] +/P 626 0 R +/S /LI +>> +endobj +1410 0 obj +<< +/C /Pa8 +/K [1509 0 R 1246 0 R] +/P 626 0 R +/S /LI +>> +endobj +1411 0 obj +<< +/C /Pa11 +/K [1510 0 R 1250 0 R] +/P 626 0 R +/S /LI +>> +endobj +1412 0 obj +<< +/C /Pa7 +/K [1511 0 R 1258 0 R] +/P 631 0 R +/S /LI +>> +endobj +1413 0 obj +<< +/C /Pa11 +/K [1512 0 R 1261 0 R] +/P 631 0 R +/S /LI +>> +endobj +1414 0 obj +<< +/C /Pa7 +/K [1513 0 R 1265 0 R] +/P 633 0 R +/S /LI +>> +endobj +1415 0 obj +<< +/C /Pa11 +/K [1514 0 R 1269 0 R] +/P 633 0 R +/S /LI +>> +endobj +1416 0 obj +<< +/K [747 0 R 746 0 R] +/P 1321 0 R +/S /Lbl +>> +endobj +1417 0 obj +<< +/K [752 0 R 751 0 R] +/P 1322 0 R +/S /Lbl +>> +endobj +1418 0 obj +<< +/K [757 0 R 756 0 R] +/P 1323 0 R +/S /Lbl +>> +endobj +1419 0 obj +<< +/K [764 0 R 763 0 R] +/P 1324 0 R +/S /Lbl +>> +endobj +1420 0 obj +<< +/K [772 0 R 771 0 R] +/P 1325 0 R +/S /Lbl +>> +endobj +1421 0 obj +<< +/K [776 0 R 775 0 R] +/P 1326 0 R +/S /Lbl +>> +endobj +1422 0 obj +<< +/K [793 0 R 792 0 R] +/P 1327 0 R +/S /Lbl +>> +endobj +1423 0 obj +<< +/K [796 0 R 795 0 R] +/P 1328 0 R +/S /Lbl +>> +endobj +1424 0 obj +<< +/K [799 0 R 798 0 R] +/P 1329 0 R +/S /Lbl +>> +endobj +1425 0 obj +<< +/K [802 0 R 801 0 R] +/P 1330 0 R +/S /Lbl +>> +endobj +1426 0 obj +<< +/K [815 0 R 814 0 R] +/P 1331 0 R +/S /Lbl +>> +endobj +1427 0 obj +<< +/K [819 0 R 818 0 R] +/P 1332 0 R +/S /Lbl +>> +endobj +1428 0 obj +<< +/K [822 0 R 821 0 R] +/P 1333 0 R +/S /Lbl +>> +endobj +1429 0 obj +<< +/K [829 0 R 828 0 R] +/P 1334 0 R +/S /Lbl +>> +endobj +1430 0 obj +<< +/K [834 0 R 833 0 R] +/P 1335 0 R +/S /Lbl +>> +endobj +1431 0 obj +<< +/K [839 0 R 838 0 R] +/P 1336 0 R +/S /Lbl +>> +endobj +1432 0 obj +<< +/K [843 0 R 842 0 R] +/P 1337 0 R +/S /Lbl +>> +endobj +1433 0 obj +<< +/K [849 0 R 848 0 R] +/P 1338 0 R +/S /Lbl +>> +endobj +1434 0 obj +<< +/K [855 0 R 854 0 R] +/P 1339 0 R +/S /Lbl +>> +endobj +1435 0 obj +<< +/K [863 0 R 862 0 R] +/P 1340 0 R +/S /Lbl +>> +endobj +1436 0 obj +<< +/K [868 0 R 867 0 R] +/P 1341 0 R +/S /Lbl +>> +endobj +1437 0 obj +<< +/K [876 0 R 875 0 R] +/P 1342 0 R +/S /Lbl +>> +endobj +1438 0 obj +<< +/K [879 0 R 878 0 R] +/P 1343 0 R +/S /Lbl +>> +endobj +1439 0 obj +<< +/K [882 0 R 881 0 R] +/P 1344 0 R +/S /Lbl +>> +endobj +1440 0 obj +<< +/K [885 0 R 884 0 R] +/P 1345 0 R +/S /Lbl +>> +endobj +1441 0 obj +<< +/K [888 0 R 887 0 R] +/P 1346 0 R +/S /Lbl +>> +endobj +1442 0 obj +<< +/K [891 0 R 890 0 R] +/P 1347 0 R +/S /Lbl +>> +endobj +1443 0 obj +<< +/K [903 0 R 902 0 R] +/P 1348 0 R +/S /Lbl +>> +endobj +1444 0 obj +<< +/K [906 0 R 905 0 R] +/P 1349 0 R +/S /Lbl +>> +endobj +1445 0 obj +<< +/K [910 0 R 909 0 R] +/P 1350 0 R +/S /Lbl +>> +endobj +1446 0 obj +<< +/K [913 0 R 912 0 R] +/P 1351 0 R +/S /Lbl +>> +endobj +1447 0 obj +<< +/K [916 0 R 915 0 R] +/P 1352 0 R +/S /Lbl +>> +endobj +1448 0 obj +<< +/K [925 0 R 924 0 R] +/P 1353 0 R +/S /Lbl +>> +endobj +1449 0 obj +<< +/K [928 0 R 927 0 R] +/P 1354 0 R +/S /Lbl +>> +endobj +1450 0 obj +<< +/K [931 0 R 930 0 R] +/P 1355 0 R +/S /Lbl +>> +endobj +1451 0 obj +<< +/K [955 0 R 954 0 R] +/P 1356 0 R +/S /Lbl +>> +endobj +1452 0 obj +<< +/K [958 0 R 957 0 R] +/P 1357 0 R +/S /Lbl +>> +endobj +1453 0 obj +<< +/K [961 0 R 960 0 R] +/P 1358 0 R +/S /Lbl +>> +endobj +1454 0 obj +<< +/K [965 0 R 964 0 R] +/P 1359 0 R +/S /Lbl +>> +endobj +1455 0 obj +<< +/K [1000 0 R 999 0 R] +/P 1360 0 R +/S /Lbl +>> +endobj +1456 0 obj +<< +/K [1003 0 R 1002 0 R] +/P 1361 0 R +/S /Lbl +>> +endobj +1457 0 obj +<< +/K [1006 0 R 1005 0 R] +/P 1362 0 R +/S /Lbl +>> +endobj +1458 0 obj +<< +/K [1010 0 R 1009 0 R] +/P 1363 0 R +/S /Lbl +>> +endobj +1459 0 obj +<< +/K [1013 0 R 1012 0 R] +/P 1364 0 R +/S /Lbl +>> +endobj +1460 0 obj +<< +/K [1016 0 R 1015 0 R] +/P 1365 0 R +/S /Lbl +>> +endobj +1461 0 obj +<< +/K [1020 0 R 1019 0 R] +/P 1366 0 R +/S /Lbl +>> +endobj +1462 0 obj +<< +/K [1025 0 R 1024 0 R] +/P 1367 0 R +/S /Lbl +>> +endobj +1463 0 obj +<< +/K [1031 0 R 1030 0 R] +/P 1368 0 R +/S /Lbl +>> +endobj +1464 0 obj +<< +/K [1035 0 R 1034 0 R] +/P 1369 0 R +/S /Lbl +>> +endobj +1465 0 obj +<< +/K [1041 0 R 1040 0 R] +/P 1466 0 R +/S /Lbl +>> +endobj +1466 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -19.0 +/StartIndent 42.0 +>> +/K [1465 0 R 1042 0 R] +/P 1521 0 R +/S /LI +>> +endobj +1467 0 obj +<< +/K [1044 0 R 1043 0 R] +/P 1468 0 R +/S /Lbl +>> +endobj +1468 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -19.0 +/StartIndent 42.0 +>> +/K [1467 0 R 1045 0 R] +/P 1521 0 R +/S /LI +>> +endobj +1469 0 obj +<< +/K [1048 0 R 1047 0 R] +/P 1370 0 R +/S /Lbl +>> +endobj +1470 0 obj +<< +/K [1052 0 R 1051 0 R] +/P 1371 0 R +/S /Lbl +>> +endobj +1471 0 obj +<< +/K 1057 0 R +/P 1372 0 R +/S /Lbl +>> +endobj +1472 0 obj +<< +/K 1059 0 R +/P 1373 0 R +/S /Lbl +>> +endobj +1473 0 obj +<< +/K [1070 0 R 1069 0 R] +/P 1374 0 R +/S /Lbl +>> +endobj +1474 0 obj +<< +/K 1075 0 R +/P 1375 0 R +/S /Lbl +>> +endobj +1475 0 obj +<< +/K 1079 0 R +/P 1376 0 R +/S /Lbl +>> +endobj +1476 0 obj +<< +/K [1089 0 R 1088 0 R] +/P 1377 0 R +/S /Lbl +>> +endobj +1477 0 obj +<< +/K [1092 0 R 1091 0 R] +/P 1378 0 R +/S /Lbl +>> +endobj +1478 0 obj +<< +/K [1095 0 R 1094 0 R] +/P 1379 0 R +/S /Lbl +>> +endobj +1479 0 obj +<< +/K [1101 0 R 1100 0 R] +/P 1380 0 R +/S /Lbl +>> +endobj +1480 0 obj +<< +/K [1105 0 R 1104 0 R] +/P 1381 0 R +/S /Lbl +>> +endobj +1481 0 obj +<< +/K [1111 0 R 1110 0 R] +/P 1382 0 R +/S /Lbl +>> +endobj +1482 0 obj +<< +/K [1114 0 R 1113 0 R] +/P 1383 0 R +/S /Lbl +>> +endobj +1483 0 obj +<< +/K [1120 0 R 1119 0 R] +/P 1384 0 R +/S /Lbl +>> +endobj +1484 0 obj +<< +/K [1128 0 R 1127 0 R] +/P 1385 0 R +/S /Lbl +>> +endobj +1485 0 obj +<< +/K [1132 0 R 1131 0 R] +/P 1386 0 R +/S /Lbl +>> +endobj +1486 0 obj +<< +/K [1139 0 R 1138 0 R] +/P 1387 0 R +/S /Lbl +>> +endobj +1487 0 obj +<< +/K [1146 0 R 1145 0 R] +/P 1388 0 R +/S /Lbl +>> +endobj +1488 0 obj +<< +/K [1151 0 R 1150 0 R] +/P 1389 0 R +/S /Lbl +>> +endobj +1489 0 obj +<< +/K [1155 0 R 1154 0 R] +/P 1390 0 R +/S /Lbl +>> +endobj +1490 0 obj +<< +/K [1158 0 R 1157 0 R] +/P 1391 0 R +/S /Lbl +>> +endobj +1491 0 obj +<< +/K [1161 0 R 1160 0 R] +/P 1392 0 R +/S /Lbl +>> +endobj +1492 0 obj +<< +/K [1165 0 R 1164 0 R] +/P 1393 0 R +/S /Lbl +>> +endobj +1493 0 obj +<< +/K [1171 0 R 1170 0 R] +/P 1394 0 R +/S /Lbl +>> +endobj +1494 0 obj +<< +/K [1174 0 R 1173 0 R] +/P 1395 0 R +/S /Lbl +>> +endobj +1495 0 obj +<< +/K [1177 0 R 1176 0 R] +/P 1396 0 R +/S /Lbl +>> +endobj +1496 0 obj +<< +/K [1180 0 R 1179 0 R] +/P 1397 0 R +/S /Lbl +>> +endobj +1497 0 obj +<< +/K [1186 0 R 1185 0 R] +/P 1398 0 R +/S /Lbl +>> +endobj +1498 0 obj +<< +/K [1193 0 R 1192 0 R] +/P 1399 0 R +/S /Lbl +>> +endobj +1499 0 obj +<< +/K [1198 0 R 1197 0 R] +/P 1400 0 R +/S /Lbl +>> +endobj +1500 0 obj +<< +/K [1201 0 R 1200 0 R] +/P 1401 0 R +/S /Lbl +>> +endobj +1501 0 obj +<< +/K [1205 0 R 1204 0 R] +/P 1402 0 R +/S /Lbl +>> +endobj +1502 0 obj +<< +/K [1222 0 R 1221 0 R] +/P 1403 0 R +/S /Lbl +>> +endobj +1503 0 obj +<< +/K [1225 0 R 1224 0 R] +/P 1404 0 R +/S /Lbl +>> +endobj +1504 0 obj +<< +/K [1229 0 R 1228 0 R] +/P 1405 0 R +/S /Lbl +>> +endobj +1505 0 obj +<< +/K [1232 0 R 1231 0 R] +/P 1406 0 R +/S /Lbl +>> +endobj +1506 0 obj +<< +/K [1235 0 R 1234 0 R] +/P 1407 0 R +/S /Lbl +>> +endobj +1507 0 obj +<< +/K [1238 0 R 1237 0 R] +/P 1408 0 R +/S /Lbl +>> +endobj +1508 0 obj +<< +/K [1241 0 R 1240 0 R] +/P 1409 0 R +/S /Lbl +>> +endobj +1509 0 obj +<< +/K [1245 0 R 1244 0 R] +/P 1410 0 R +/S /Lbl +>> +endobj +1510 0 obj +<< +/K [1249 0 R 1248 0 R] +/P 1411 0 R +/S /Lbl +>> +endobj +1511 0 obj +<< +/K [1257 0 R 1256 0 R] +/P 1412 0 R +/S /Lbl +>> +endobj +1512 0 obj +<< +/K [1260 0 R 1259 0 R] +/P 1413 0 R +/S /Lbl +>> +endobj +1513 0 obj +<< +/K [1264 0 R 1263 0 R] +/P 1414 0 R +/S /Lbl +>> +endobj +1514 0 obj +<< +/K [1268 0 R 1267 0 R] +/P 1415 0 R +/S /Lbl +>> +endobj +1515 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1516 0 obj +<< +/Filter /FlateDecode +/Length 3262 +/Length1 6160 +>> +stream +H‰ìVklTÇ>3s~¶1…YnL^¿x¼ë€ ¶!¬I »ö®íÛëì.‚L¡Ö$j)' D×1i!¢UJµ”””*‘‘ÒVrD”∨Pª¤‰ûÍõb ?øQU•zï½ß9ç›3眙;kbD”Nm$¨èѪ©Åç{DÆ[°>VÛ—¯9BdŽ#ÒçÔµÔ7½um®M”á#ÒÖÖ7nªë¼üôrpOãÞÜ +¯¸4‡(ó$ô™ 0dO{úUè÷54Å7.Y”ØM”•C$v5Fj9ý9ýDl6îsM-â1c +QÎ~ðes )tèÛÁ…*δDC-þöþµðc>±‚8ò&Ѧ÷€`’U2Ì|iﱟ!¹~ÒûÅ)ö1Qá×}™}´à3<‹‹¦e¹²r]Y®6A_µqúšôž/f·i=˜žŽS‡¾LŸŽX9¿$Æ÷¨9Ù—Ї¿â¢Yz\ëìÐ:¿ô“º&ý_yèXÔ•A{‰ÑÀ5•(‰†6€5àò$6€k’ØÄþÛ¬6§– +-H_$1£"öDsÊžMb|clkÀï$±üÏ$6q÷9µ¨h¦\®Fb‘º¸,D["Ñ@<i. ee¸¾!“•¡X(Ú +T–•/^øHÞªps}w,¿2T¿¡1½Wû A†c2Ž7„¢2 £¡úp,Š†‚2 CMèzQž[ÔºoÎW†›%ÂÈ•Íá8ÆWÅñPLšƒ…q&¨lhŽGáX¤#$Ñ÷"ÈL e¦ZŠR„b¸ë([)P”Zœg–0P3À³!’*a«§øbŽÂ;v+žA0+© ë¹üG(VÝ ~0ùŽQ¾3¦ž6 ZãîÔîuô–ÿï ¤ž!¼ã胪]‚+ñV#•7îXU?$°êdZ“q=l‘Á1ßì­»§Õ‘Nn2™¤•ÐÂNjþ* €£Åœ9›a-Lf¹¥‚ZhàU…¶Zu|±æxöCÒ)E;¯Ç§;ò曂BfÀq·kY•”TrU^í7òØËTl3»í®ìÿúuᮞbH-óñm|5ÐOpBÓ>ÜAÜÏSuðîMÃm•ÓeünNE'•}mÁÓCÿ`‡éŽeÕÀ_öY¼çÃW‹7sbt°=ÎûiÚØŸón~†Ÿq¼ ·\1„wë=°«xÛéUºÄÞç)z¾StABäüòÞ`“!íìcÖÇ—ÃÊÔüˆ³ìäû+úþÆrØ|–`§ÁÉæÛœ\fkç,ä‚EÉ2ÖÈ",Êv#f/|¢Fø.ÞÉm~FTkóõ#Û˜e6" +\œ½Y¨PEûvc äÉÁ¨ò{ÆY[ÁØ^Ö‰β>È5žÏ ëJ~,üZ†ö‰¾^ Òc¬4¤ˆ­ã|ƒ}šKÓQ•sT ç ­Ão‡’§ [ÐËïÑ ÔI/âì¢7è×jNºH—èº3 ¢êšÅd« Õ(ÛÊv í·È3l?ëfo ¿·Ùû|ªFT?åv¾ŸàoówøŸx/ÿ”.H¤Šµ¢FÄÄAqT¼+ÞÕkÚ‹ÚGÚG:Óm§SÙFŽ±Æh‡ì1SÍõæóGæóçi4 +u¹QW9ΡZÚ„J¶Ð.J8«Ö9A¯CzèSU¤?Y‰’™‡•±•j¶šùY‹±ƒ½Ì±Ãìjyò»ÈþÂþÊ>sä7øHž7Xßr^ÅWñõ|/žïç¯`GvóÓü~ 5öòë¨1]d‹b¼ðŠ2È +ñ¸Ø(¶‹ã⌸(ú°nÚCÚ|m¥¶µŸÓzµO°’\z®>CŸiЛõ­z»þSìè>½ÏÈpº’m 7æ;ŒnãCã+s„9Òœ)0‹Í*³Ñl5š½æå”c© SéÑ47Å/Û/îøz_Çîþ _cÒv»áI1 ,uÞåfcj˜w«ìÌ*6+õGº!Ri©vŽV‰Ç©Q¯éæ:ÌbÚ6öŠ(£ctÐle§…_ô‰ƒz®1w Ÿ|Ÿ8jn2ýæedzM<§7˜l¡ÞÎóø¢£¬‚þήÓ˜9ΧÐ9ÚM»X+¥PGÊ16ßÚY>µë/‰×´NáÕ·²°‚cõñ}šA#ð_Ôdšˆ½®SŽ:pKfÍž5}ÚÔâ¢Â‚|wÞ”&ß?)÷>k¢KNÿíqcÇ|kô¨‘#r†gge:$#=-5Å4tMpFn¯Uæ—ö$¿­M²/ÎWº€!p‹Áoã_»ìvŽ-ýMÞÎ,³îfɳdÉ2å<š—ï–^KÚ¿óXò$[]á~ÆcUK»ÏÁˬMr”!P\.ŒÞÑ i3¿ôÚe­ ¯ßƒx]éi¥Vi(-ßM]ié€é@v™ÕÒÅÊæ3ð2ïœ.N)C•]ny¼öË£R°E®7´—Wø¼ž±.Wu¾Ûf¥µVMÖ"{XžC¡RgÛ(µMgVåP»ìr¿™Øs2“jüyA+ø®Ïj5GVžý°å±ÞÜ;:ß}’Zá³SKO2Zá;Eåým]KÚ<žj5[v©o§Cú¨Í½cEÂ;:,•šHì”vg…ïV¯K=««4ß½´ÒçBÖ–wTeTúœ +”.D’ʦÊ(8dy•Å¿NÚ©Ö"«!±ÎÅ“°©r“ëµ1å%§úÿLå^™Xá³\ö‚±VuÀ3®+‡•›º—”È%·{òÝ]™Yî:, 2†Ü +Bƒ>9t…õÍV3•‘µ[Ä–µ™ø,›çÎVÐlJÔÎ W5CGÃèŸ?‘9G-„ž›iÉÄuÂF°ú®Ün $-FnæuRPm—Á-ÿMlçåÙS¦¨b–bi‘Ù|GŸ‘ïnµ—Z-™Ò^Š–ÑrUÏ)DË].µÊí'K¨ŠÝVñ/ÖË/6Š"Žã¿½Û»™»Ööh{ÍÅU¹rڛƴU)Íõ°ïÁ3Ur‹Ä^[J 1“†`ðÚê*5>I!ŠìʶE< M°Jâƒ!QŒb$A}ÕÄ{~gw'W±úটûÌþ~³³;³»Ý™4ïGiؘ§øÃM¦ãɨÌb1~Fe3¥Ã31<ÎçÜ¥MØ‘¥¿êP}m׮ǭ~•ô(çñútEçtßÙTºq(;n4f²&nM7^Ål¶;íÎf²C¹üÁáX4ËÎ%“Ù½]™b—rùÅqÉO˜»4 ªÓÆ£áÔnI{ É%á5›y•æó¼±õŠùÜ`õ¦_¤!Ý¥'í£ËÊ_ýðGÑr*xS´ZãWx°hYNULå¿ Þ,eŠÛ-ðí'µÔ#R­ÊêV/«‡•`ÅY¬M¬ ,?KgyYZüIø{p|®ƒ+à<øœ6˜3à˜ÇÀ»`#`Ðmó,7m³Î°>`d½Ï:Æz‚ÕÉÚÌjg –åaQ< ¾WÁçà3°>çÀøo}`Gok] .°ÞÊi/Æû„uBXG…5)¬=Âz^X;…5*¬íÂÚ&,SXiq¿\'£ò>y¼[Fd½¬“52$«d¥ J)ýR—‰gØ©õ&=É„–tG(9u~ˆå´àSÛ_,¡95IJ>ˆ8íMŽçˆ;£Éiù9M{}ÌP“™ ¤iù±I£`Ó¤ú¦¿o‘²½djß%Z«­'߶±öS¡¢ˆZnÔRQËF´ùµ&‡Æ3÷ÒþkÓVÍ–ÕìÚ­º›JÏIJ˜[¶³<Aô'c4˜‰úÐÞ·s"Œ‹:i3Toz%&‰w•jîlîT)|ÑTªJÍ ©È ÆEm¦ +!¼Cù§­¡oÖ +endstream +endobj +1517 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +¸ «› +endstream +endobj +1518 0 obj +<< +/Filter /FlateDecode +/Length 3316 +/Length1 6244 +>> +stream +H‰ìVklTÇ>3s~¶1à…17&¿yˆ1x×G4~6)a×ÞµwÁö:»‹„"'ÐkµŠ‹ +“@¢kLZHi•ÒB-%%AJ¤D¤´•¥˜J%ô›ëiøÁªªÔûíÜ{ΙoÎcfîÜ%FDÉÔA‚ +¯.˜Vt¶?Fdfº¼¡=*ß(8xz‘>·±­©å·WçÙD)‡‰´ÕMÍÏL¨ù+¸'ÑÞø½¾K{/Ì%JK>+CúȤ硻 ?h‰®_²(¶z€Hlo5xÇŸ‚ˆíD;Óâ]ß&–S‰2®€/[½-þC3&FÀ­A;Õö·=þ»WJuly“èÐû½IVÉó¦}À^Er·I¿-N°O‰ +¾H —q/*œž–•–•–Õ!èV§/Iï»1§CëCx:B]úR}|eü’GJ$ØM8À¯¨p6†Ѻ»´î›D>Bd¬‹GÎ9 æ>Òáeß1ýUè|ip2ã¨yY»+]À kÅ7OÖûNkÅ7n©4&ÿÿ£PW +í"Fƒ×4¢¸,(Ú ¬A.Ëäú¸lbOo“´Dh>º—²'ã2§áìù¸Œ÷–í‰Ëäwã²ùŸqÙdÄsÊi……³äÒ`C8 5Fei(Ü +{£ÁPk¾\ØÜ,«‚MhDVù#þp»ß—_±Ü½ÈU‘³"ØÚäC‹äUù›Ö5{Ã÷k2È`DúƒÑ€?,½2ìo +F¢þ°ß'£a¯Ïßâ ¯•!Õs‡ÚøÍùÊ`«„¹¬5Åøê¨7êHo«¯BN€†ÐºÖh8èäK:Hó^Ì‚´”‚Ô@a +Q­‘¢°•B +S›s÷„ÔJùèYHÍ€¤*Øš°ºQŒRšO?Øí¸ûÀ¬ åä¦Eä‚”C+ÀnßF(ÏÓDëàÍ‹qwk÷;ú?Íÿw†„¤î~<£˜U»Wâ©FªÞ¨cUó!!«™ôAkq<®…-44æ›{ïku¤“›Œg#i´ “ƒŠ_ Éëh'f+¬ñ BwTÐmzUFA‡­Vo¬9ýGz‚vV;‹WwôWOò ™¢Îú{\K«¥¤’+òÊm#…"³ˆÙ÷dÿׯs÷ì)X-†¯„ôœPE´͇ö"uQïäÐt4R9]ÄqfRÙ§Ó&Ü]ôv€~àXæS=úëÁÆwŠÑ×€'s|tá?€z~¶Â÷¼—Ÿâ§œÞð[®ƒà½zìÊßzƒ.°·Áyš^@ß :§FÁs¾Ï×Ù “}Êx¬LŇŸµ`w!ß_ÑÇô7–ÁŠYŒ'?ãä2­œÓÀ9Ç‹ÂRÖÌB,ÌvÀg?|&¼†øvÞÍm~JÔiÅzŸ‘nÌ6›á.ÎÞ4T¨¼}»±xjÈë ÞgœU²`»X7r8Í€«[¨w²|Þè0«¤¿³kô$"GùT:C;h;k§êJ8̆á];Í'²NýqTën}3{+8Nïߧ™4 +ÿ¢¦Ð$ìu2Ô[2{ÎìÓ§äçåæL}hʃ“³°&eɉ¾=~ÜØoeŽ=*cdzZêˆáÃR’“LC×g”ë¶Ê<Òžì±µÉÖâÅyJ·¼0xï0xlüõ°ËîæØÒãÐäÝÌ0¿Æ,d– 1YªœOóór¥Û’öï]–<ÎVVÖB~ÎeÕI{À‘—:²6ÙQ†AÉÊÂéÎ ¸¤Í<Òm—µbn þz’“J­RR^.õ$%CL†d—Ym=¬¬˜9/sÏíá”0 YÙå–Ëm/±\*[d»½>»¢²Öí—•U——k³Ò«Þ&k‘="Ç¡P©Æ6JmÓ #ƒªê”=¹oÇvO¥zONŠÏòy¿[k oŠ‘–c?j¹ìG7ögæåg¯ÕÔÚ‰¥ÇÕÔž òÛ=K:\®:-½´v›Cú˜ýãDÌ”JŶI»»²öÎÞ,u¯«ƒÓ¼ÜǪj³µåÞ)UUµNpÊ2 ¤²©2 ö[neñ¬‘v¢µÈ +ÄÖx°Xcc6UmÈ::¶¼äÄí?Q¹[Æjj­,{Á8«Îëß“A±ª ½KJä’»{òr{RÓgºgøˆ¸2ìNÁ?ÔçH]IÈú«©f*#k ¶ˆ-$2©µlž=GÝüs(Ö04\u 3Äüyb©sÕBèÙ©–Œ]#lkàÒÝoÜbd§^#%ªí2´åÐÿ/ÖË6¶©*ŒãÏíÛ9íæVö–ƪ´T³ºm"ãmé:÷z?P25-’¬ëÄÈ>Af™Áì6½ÊŒŸdE®r·!BÂ’øÁ(F1’ ýª‰1®þÏ}ÚJ'N?x³_ç>ϹçÞsî½»çÊf8l64¨'EtàÖâÊÚ¬ýMO2õЈ7`ê2ŠÅqPbëF y0¨îòD6B)ì˜c»â¼ ”"à ӖT™¥B¦öY•+dŠ‡'Cxœ/YK›ZSÖÿ*½uÕû·šZÝéaÎãõé Ì;œ¥cñúÁô„¿>™žLàÖtáUL§»B®t2=˜Í¥Bo(=¯ëé‘Îd¡KÙÜ҄ߌL&ökT³…GìîˆÛý¶—l~{¢‘WiNÛë;s‡G*·ÿ"ýÒúWz6srEù«þ­Äâ-ꓧÑæ+(9o¡Ê݈Ç"e\q?̈WÇ^FÕw]§ç +ÈQ¯±/pŽËÈûAbO"ö2\KÓ®^š.œËù[ž×ìzñÚüu4ðµ¸#h ×-О¼£â0xû-ð‹ÜW9ŽãwÀûhѦŒ¢p.Œgß*ZK8Š:GWÅÿ æŽûyî³užÕÌ0ÿVÏ¡êýtoÍ›ÏÝD¹ò¾m[h©U±ãÿ\÷¿!S«Àš@òóÛ´žOßsë¾—¶ûM±|+O~ßµ©™fŠùßK)Æ_¢e…ºÇV¹¾ûm²×ÒìÆ Y½™wµr¬§¨3i/J[ð +ÿìPóöH9uu¡JÕ:é dmO-ô4CÇ,is¬XçY³¬s¬wYgX3¬^V«›eEXm¬í¬-,ËÁ²³´ÈNø{p|nOÀeð¸2`Ì‚s`œï€Ip «Í‹Üt†uõ>ë,ë=Ö)ÖÓ¬vÖV+K°œ,‹"ø[ð5¸>Ÿeð1¸Á‡à4x{{škÜ5îÍFV;éÆaœÆ”0 +ãaìÆ°0öc·0ˆ‹GåȇäƒÒ'ëd¬’^Y!Ë¥GJé’i“x†Íj»nÓû£šn. ‘ž +˜¿ö‡²šg×nÓŠjf•Nú3QŸÙ6m'¬MVËÍkÚkã~5™¹Bš–ŸòçHP]ødO¹FëµÍ$ðÛ²(Ö*T´QÊ*jXQŸ¶£f}p"ù0ݧá¿6mÍlIÍΪ»±ø¼¤h¢c{ÑVæA’þ`"Zçi³:·-èõ_u6Keø¦—c’øP©ÆöÆv•ÂM¥*Ôü1Ÿòn ú¯j³ù”áuÊ?hÝ— +endstream +endobj +1519 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1520 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1522 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1523 0 R +/FontName /CUCKKZ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1521 0 obj +<< +/K [1466 0 R 1468 0 R] +/P 1369 0 R +/S /L +>> +endobj +1522 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1523 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVkl×>÷ÞyøØÆ€î21!xýâé1†ÝuÀ ¶!¬I »ö®íÅuv  'ÐkµŠ‹ +“†D㘴Ñ*¥ZJJŠ”H‰Hi+9"JqDT(UÒÄýfv± ?øQU•:ŸïÌw÷Üsν3kbD”N]$¨øáÚ¢Y%çãDÚ[Ð>ÒГ¯9B¤O&R4v4µ½um¡I”á%RÖ7µnnì½¼m%|OcliúW^Z@”yò¼f(²Ç¦=ù*ä{›Ûb›–/ï!ÊÊ!»[à þœáœa"VŠq®Í¿©C<¢Í$Ê9Ùîo þdÛ=»á Qœéˆ;þÝ}ëaÇzbqäM¢K€ƒNFùý=¦¼Ç~Žä†I§ØÇDE_eÑâÏp/)žåÈÊsd9º}ÕÅékR¾(íR°<§u…:±r~EŒïµÖd_"ÀþJŠçcêq¥·GéýÒGÖ5ýÿ°ñàÿ0¬+ƒö£Ä5‹(ÉåBJp¼2É5ðú$×qþ¶X‡SI… /’œQ1{,É9fÏ$9Þ1v Éðw’\ÿg’댸óˆœU\ÖÆ¢lÓHE/±—Ùavµ¼|À.²¿°¿²ÏlÜàÏóGê[ÉkùÞÂ÷ñçøþ +Nd??Í?à—Pã ¿ŽÓE¶'¦¨V‰GÅ&±CgÄE1„}ËPTÊ”ÕÊ:Ô~NT>ÁNrU¨yê\uЬ¶«ÛÕnõg8ÑCê–aw%[«-ÔviÏkýÚ‡ÚWú8}¼> (ÔKôZ½UïÔêƒúå”c©KRC©‘4'Å/Û/¿ñö¾ŽÓý[¾N+¢‰ì"NÃãb ¼¬ïÝYž¡·¦†x¿•^Ëf`§þH7D*U)çhx”ZÕz‘®_¡Ã,ª<É^tŒéì´ð‰!qHÍÓ&úÉ÷‹£úfݧ_F¦×ijj³^È–¨Ýì0_Œ7:ªéïì:=†•c|&£=´›uR +õ¤c£ð®åSY·ú¢xMéu;»;8Iߧ¹4ÿEÍ i8ë*åXÜòù¥óçÌžUR\TXàÌŸyÿŒû¦çÝkLsÈ©S¾3yÒÄ{r'Œ—36;+sÌèQéi©)º¦*‚3rzŒ +Ÿ4§ûLeº±lY%~(ü·(|&þõ0+n÷1¥Ïv“·{–óñžå ÏòO–)Ñ¢§ôÒü½Û'ÙÚj/øÓn£NšC6_aseº-Œ‚àp`†ôä6»¥É|ÒcVt6Ç=>7âõ¥§¹ W0­ÀI}ié é`f…ÑÑÇ*ʘMx…gA§”QÈʬ4Üs¹á¶R0EžÇ0WV{=îIG]Ód®£Þ$c©9&ßv!—½Œ©¹LÝ^F†¬r¨[ö9ߌï=™Iõ¾üŒ€ðÏk +µFV¾ùá6Ú2˜[à<É^^å5S]'­òž¢Êᮾå]nwµZ¶Ë»ËvŸ÷ ['‰¸'7$-1ß%ÍÞjï­V‡u¯«CÐgU׬ Ï^i•Qãµ+@P–[„$-Uf¢à á±4¾ ÒL5–Íñ >lÖĸI5›¯M¬,?5ügªôÈø*¯á0O2êüîÉ}9¯ÙÜ¿¼\.¿ÝRàìËÌJtºoô˜$Éu+ ŽØlf»[ Yßl5³22–㈘²A"¯aò¼Rë,¥xC)ÜpÕ1t4„þùâ™ ¬Pó2 ¿N8ÆЕÛ5þ¤FË˼NµŽËÈ‘ƒý&7óóÍ™3­“¢»°µÈ¬Ì–ç8;Í*£#SšUh­ôbRÝ‚"´Üá°v¹ûd9ÕC0»ª½ ù_¬—_lEÇs·w3w­íѹ¸*WcÓ˜¶*E ¹öï=x¤hzHÒkK $*$&‚!˜Ú€×VW©ñI +Q¤`W¶-âAHh¢U ‰b# úè«&ÆØúýÝ\Åꃛ~î3ûûÍÎîÌîvg"4hÎQì¡ú”ãIëÌB>Sý¤ÎÎg +‡§£xœÏ»K›jGÕþÊC5•í{sDÍ*éaÎãõi̾û3ɾºÌ˜Y—ÎŒ§pk:ð*f2ÑHG&È.ŒFBÑÌl"‘ÙßžÎw)»¼0f:±ñÔAušy4œÊ­}^Ó“â’Çô¦x•æó¼þü³#ÛûË7ÿ¢Låþ+=e[Òþê‡?ꉖ’Á›²‘ô/¿ÂƒeãR’¨dœhùËàÍB&¿Ý2ß~ÒK="ݪj¥žÀ4Ü ¨GÖÑdà2ÙÞ³´¨fÈ–ëÈ”çègJŽ€q²Õ"ÙÁ+dûÞft]c¸†f>ò-êQ'Ðæ+(×rÞE—;Æ<Ùþ>?ÌÈWc£ëû¯ÐSyԨׅØ8ÇäMP‚ØȽ WÓ¤¿›&óçòý–ã*À5ûŸF¼:wòµbh ×-Ñžº£òEðö›á縯jÇowÓ|°žŽ;Mþ\Ïž´qu®‹ÿÌmïî³{ž•L1ÿVÏÐõ~º½Žår×P.¿cÛ.bpEìÈ?×ýo¨Á`M øùm\ ϧŸï¹{ß‹Ûý¦P¾ž#·ï¤•a +ùß‹)Ä_¢E¾Çn¹ ¾ ï òVÓêÄ Y¿™·D)Ö‚T†™t¥x…6úõ¼=VJ¨R±Fź"YÏ£s]MЈ+1Ãú€u†5Í:Íz—u’5Åêfu±:YqVŒÕÊÚÌÚÈò³ –—%bOÀ߃à;p|.€À9`ƒ0 Nƒ)p¼ÆÁýn›ç¸i›u–õ>ëë=ÖqÖã¬6ÖV K²|,‹b1ø[ð5¸ +>ŸEð18æÁ‡àx»ºšªU VV¼ë–ÖIi“Ö„´öIëií–Ö°´vJk‡´RÒê“ëÕ:Q÷©{ÔÝ*¬jT•ªP!U¦JUP)åW†ò(<ÃN¥7áIôÆEÂY¢Ä`Äùµ7šÁm;_4.œŠ%¶ÇÃNK½ã9êÎh²byVˆ×FM=™¹HB,N˜9§RTSÿ÷-\´—H¸LkÅ’ømž—k?•:Ú‹¨åF-µÜhXÌ%©)10–¾—îÐð_›X5[T³}¯în²oVQ<µu'{ÞSDÒfm*^ÚßêvnSmøyÉ 1M%ø¦—b’xЩ†¶†6ÂM§Êôü1— +ÚTk^Ó¹Tá5Ê?ÑoÖ +endstream +endobj +xref +0 1524 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000389 00000 n +0000004671 00000 n +0000004705 00000 n +0000004951 00000 n +0000005078 00000 n +0000009140 00000 n +0000010248 00000 n +0000011331 00000 n +0000012366 00000 n +0000013398 00000 n +0000014457 00000 n +0000015478 00000 n +0000016527 00000 n +0000017573 00000 n +0000018606 00000 n +0000019641 00000 n +0000020691 00000 n +0000021715 00000 n +0000022765 00000 n +0000023802 00000 n +0000024851 00000 n +0000025900 00000 n +0000026937 00000 n +0000027974 00000 n +0000029022 00000 n +0000030058 00000 n +0000031122 00000 n +0000032174 00000 n +0000033213 00000 n +0000034252 00000 n +0000035275 00000 n +0000036301 00000 n +0000037327 00000 n +0000038263 00000 n +0000039852 00000 n +0000039921 00000 n +0000039967 00000 n +0000040186 00000 n +0000042800 00000 n +0000042979 00000 n +0000043106 00000 n +0000043231 00000 n +0000043725 00000 n +0000044167 00000 n +0000044319 00000 n +0000044745 00000 n +0000045023 00000 n +0000045431 00000 n +0000045840 00000 n +0000046050 00000 n +0000058366 00000 n +0000058874 00000 n +0000059962 00000 n +0000060818 00000 n +0000061632 00000 n +0000062701 00000 n +0000063562 00000 n +0000064442 00000 n +0000065449 00000 n +0000065976 00000 n +0000066103 00000 n +0000066228 00000 n +0000066956 00000 n +0000067187 00000 n +0000067397 00000 n +0000067857 00000 n +0000068782 00000 n +0000068808 00000 n +0000074397 00000 n +0000074830 00000 n +0000075718 00000 n +0000081977 00000 n +0000082465 00000 n +0000082617 00000 n +0000089197 00000 n +0000089690 00000 n +0000094972 00000 n +0000094998 00000 n +0000101336 00000 n +0000107365 00000 n +0000114793 00000 n +0000121122 00000 n +0000121156 00000 n +0000127028 00000 n +0000127054 00000 n +0000133334 00000 n +0000133368 00000 n +0000138934 00000 n +0000139024 00000 n +0000145585 00000 n +0000145611 00000 n +0000151547 00000 n +0000151621 00000 n +0000157665 00000 n +0000157699 00000 n +0000164108 00000 n +0000164142 00000 n +0000169891 00000 n +0000176003 00000 n +0000181139 00000 n +0000181166 00000 n +0000187105 00000 n +0000187132 00000 n +0000192521 00000 n +0000192556 00000 n +0000198421 00000 n +0000198448 00000 n +0000201616 00000 n +0000203832 00000 n +0000204019 00000 n +0000210795 00000 n +0000210902 00000 n +0000213709 00000 n +0000213822 00000 n +0000213950 00000 n +0000215550 00000 n +0000215972 00000 n +0000216070 00000 n +0000216458 00000 n +0000217154 00000 n +0000217427 00000 n +0000217902 00000 n +0000218174 00000 n +0000218639 00000 n +0000218666 00000 n +0000218971 00000 n +0000219336 00000 n +0000219765 00000 n +0000220065 00000 n +0000220374 00000 n +0000220710 00000 n +0000221102 00000 n +0000221446 00000 n +0000221838 00000 n +0000222156 00000 n +0000222475 00000 n +0000222628 00000 n +0000222823 00000 n +0000223096 00000 n +0000223732 00000 n +0000224156 00000 n +0000224506 00000 n +0000224824 00000 n +0000225143 00000 n +0000225557 00000 n +0000226055 00000 n +0000226208 00000 n +0000226639 00000 n +0000226834 00000 n +0000227032 00000 n +0000227442 00000 n +0000227611 00000 n +0000227704 00000 n +0000228090 00000 n +0000228555 00000 n +0000228708 00000 n +0000229129 00000 n +0000229324 00000 n +0000229522 00000 n +0000229916 00000 n +0000230188 00000 n +0000230743 00000 n +0000230770 00000 n +0000231084 00000 n +0000231488 00000 n +0000231956 00000 n +0000232124 00000 n +0000232293 00000 n +0000232461 00000 n +0000232631 00000 n +0000232801 00000 n +0000232971 00000 n +0000233141 00000 n +0000233310 00000 n +0000233479 00000 n +0000233649 00000 n +0000233818 00000 n +0000233988 00000 n +0000234158 00000 n +0000234328 00000 n +0000234498 00000 n +0000234673 00000 n +0000234843 00000 n +0000235013 00000 n +0000235181 00000 n +0000235351 00000 n +0000235521 00000 n +0000235691 00000 n +0000235860 00000 n +0000236029 00000 n +0000236199 00000 n +0000236369 00000 n +0000236539 00000 n +0000236709 00000 n +0000236877 00000 n +0000237047 00000 n +0000237217 00000 n +0000237387 00000 n +0000237557 00000 n +0000237727 00000 n +0000237897 00000 n +0000238067 00000 n +0000238237 00000 n +0000238407 00000 n +0000238577 00000 n +0000238747 00000 n +0000238917 00000 n +0000239087 00000 n +0000239255 00000 n +0000239425 00000 n +0000239595 00000 n +0000239764 00000 n +0000239934 00000 n +0000240104 00000 n +0000240274 00000 n +0000240444 00000 n +0000240612 00000 n +0000240782 00000 n +0000240952 00000 n +0000241121 00000 n +0000241290 00000 n +0000241459 00000 n +0000241628 00000 n +0000241797 00000 n +0000241966 00000 n +0000242135 00000 n +0000242304 00000 n +0000242473 00000 n +0000242642 00000 n +0000242811 00000 n +0000242937 00000 n +0000243090 00000 n +0000243329 00000 n +0000243873 00000 n +0000244288 00000 n +0000244486 00000 n +0000244880 00000 n +0000245033 00000 n +0000246722 00000 n +0000246777 00000 n +0000246832 00000 n +0000246887 00000 n +0000246942 00000 n +0000247511 00000 n +0000247850 00000 n +0000248565 00000 n +0000248653 00000 n +0000249702 00000 n +0000251132 00000 n +0000252818 00000 n +0000254799 00000 n +0000254887 00000 n +0000257211 00000 n +0000259988 00000 n +0000263170 00000 n +0000266653 00000 n +0000266741 00000 n +0000266829 00000 n +0000270580 00000 n +0000270668 00000 n +0000274698 00000 n +0000274786 00000 n +0000274874 00000 n +0000279349 00000 n +0000279437 00000 n +0000279525 00000 n +0000279613 00000 n +0000279701 00000 n +0000279789 00000 n +0000279877 00000 n +0000279965 00000 n +0000280053 00000 n +0000280141 00000 n +0000284938 00000 n +0000285037 00000 n +0000290292 00000 n +0000290381 00000 n +0000290470 00000 n +0000290559 00000 n +0000290648 00000 n +0000290737 00000 n +0000290826 00000 n +0000290915 00000 n +0000296433 00000 n +0000296522 00000 n +0000296611 00000 n +0000302455 00000 n +0000302544 00000 n +0000302633 00000 n +0000308880 00000 n +0000315343 00000 n +0000322187 00000 n +0000322276 00000 n +0000329350 00000 n +0000329439 00000 n +0000336961 00000 n +0000337050 00000 n +0000337139 00000 n +0000344722 00000 n +0000344811 00000 n +0000352431 00000 n +0000360718 00000 n +0000360806 00000 n +0000360894 00000 n +0000360982 00000 n +0000361070 00000 n +0000361158 00000 n +0000361246 00000 n +0000361334 00000 n +0000361422 00000 n +0000361510 00000 n +0000361598 00000 n +0000361686 00000 n +0000361774 00000 n +0000361862 00000 n +0000361950 00000 n +0000362038 00000 n +0000362126 00000 n +0000362214 00000 n +0000362302 00000 n +0000362390 00000 n +0000362478 00000 n +0000362566 00000 n +0000362654 00000 n +0000370980 00000 n +0000371068 00000 n +0000371156 00000 n +0000371244 00000 n +0000371332 00000 n +0000371420 00000 n +0000371508 00000 n +0000371596 00000 n +0000371684 00000 n +0000371772 00000 n +0000371860 00000 n +0000380585 00000 n +0000388674 00000 n +0000388864 00000 n +0000391357 00000 n +0000391859 00000 n +0000393672 00000 n +0000395516 00000 n +0000396136 00000 n +0000396163 00000 n +0000396468 00000 n +0000396778 00000 n +0000410402 00000 n +0000413950 00000 n +0000414571 00000 n +0000418059 00000 n +0000418086 00000 n +0000418391 00000 n +0000418830 00000 n +0000419130 00000 n +0000419430 00000 n +0000419797 00000 n +0000420189 00000 n +0000420273 00000 n +0000423213 00000 n +0000423240 00000 n +0000423545 00000 n +0000423958 00000 n +0000424258 00000 n +0000424558 00000 n +0000424917 00000 n +0000436812 00000 n +0000437012 00000 n +0000440164 00000 n +0000440248 00000 n +0000440332 00000 n +0000440416 00000 n +0000440500 00000 n +0000440584 00000 n +0000440668 00000 n +0000440752 00000 n +0000440836 00000 n +0000440920 00000 n +0000441004 00000 n +0000441088 00000 n +0000441172 00000 n +0000441256 00000 n +0000441340 00000 n +0000441424 00000 n +0000441532 00000 n +0000441616 00000 n +0000441700 00000 n +0000441784 00000 n +0000441868 00000 n +0000441952 00000 n +0000442036 00000 n +0000442120 00000 n +0000442204 00000 n +0000442288 00000 n +0000442372 00000 n +0000442456 00000 n +0000442540 00000 n +0000442624 00000 n +0000442708 00000 n +0000442792 00000 n +0000442876 00000 n +0000442960 00000 n +0000443044 00000 n +0000443128 00000 n +0000443212 00000 n +0000443296 00000 n +0000443380 00000 n +0000443464 00000 n +0000443548 00000 n +0000443632 00000 n +0000443716 00000 n +0000443800 00000 n +0000443884 00000 n +0000443968 00000 n +0000444052 00000 n +0000444136 00000 n +0000444220 00000 n +0000444304 00000 n +0000444388 00000 n +0000444472 00000 n +0000444556 00000 n +0000444640 00000 n +0000444724 00000 n +0000444808 00000 n +0000444892 00000 n +0000444976 00000 n +0000445060 00000 n +0000445144 00000 n +0000445228 00000 n +0000445312 00000 n +0000445396 00000 n +0000445480 00000 n +0000445564 00000 n +0000445592 00000 n +0000445897 00000 n +0000446219 00000 n +0000446544 00000 n +0000446637 00000 n +0000447059 00000 n +0000447556 00000 n +0000447906 00000 n +0000448303 00000 n +0000448604 00000 n +0000448904 00000 n +0000449245 00000 n +0000449604 00000 n +0000449632 00000 n +0000449937 00000 n +0000450067 00000 n +0000450143 00000 n +0000450236 00000 n +0000450345 00000 n +0000450422 00000 n +0000450514 00000 n +0000450619 00000 n +0000450712 00000 n +0000450767 00000 n +0000450845 00000 n +0000450940 00000 n +0000451031 00000 n +0000451207 00000 n +0000451299 00000 n +0000451378 00000 n +0000451457 00000 n +0000451536 00000 n +0000451591 00000 n +0000451692 00000 n +0000451770 00000 n +0000451871 00000 n +0000452025 00000 n +0000452102 00000 n +0000452257 00000 n +0000452348 00000 n +0000452435 00000 n +0000452514 00000 n +0000452620 00000 n +0000452719 00000 n +0000452798 00000 n +0000452896 00000 n +0000452983 00000 n +0000453098 00000 n +0000453529 00000 n +0000453640 00000 n +0000453739 00000 n +0000453838 00000 n +0000453933 00000 n +0000454013 00000 n +0000454094 00000 n +0000454173 00000 n +0000454307 00000 n +0000454387 00000 n +0000454501 00000 n +0000454596 00000 n +0000454691 00000 n +0000454806 00000 n +0000454901 00000 n +0000455000 00000 n +0000455365 00000 n +0000455460 00000 n +0000455540 00000 n +0000455603 00000 n +0000455683 00000 n +0000455735 00000 n +0000455815 00000 n +0000455925 00000 n +0000456012 00000 n +0000456085 00000 n +0000456202 00000 n +0000456293 00000 n +0000456392 00000 n +0000456527 00000 n +0000456666 00000 n +0000456809 00000 n +0000456889 00000 n +0000456970 00000 n +0000457050 00000 n +0000457102 00000 n +0000457182 00000 n +0000457261 00000 n +0000457355 00000 n +0000457486 00000 n +0000457593 00000 n +0000457704 00000 n +0000457776 00000 n +0000457899 00000 n +0000458006 00000 n +0000458117 00000 n +0000458208 00000 n +0000458288 00000 n +0000458398 00000 n +0000458525 00000 n +0000458624 00000 n +0000458731 00000 n +0000459108 00000 n +0000459199 00000 n +0000459279 00000 n +0000459401 00000 n +0000459481 00000 n +0000459553 00000 n +0000459633 00000 n +0000459685 00000 n +0000459765 00000 n +0000459863 00000 n +0000459962 00000 n +0000460045 00000 n +0000460268 00000 n +0000460395 00000 n +0000460502 00000 n +0000460621 00000 n +0000460724 00000 n +0000460827 00000 n +0000460914 00000 n +0000460994 00000 n +0000461093 00000 n +0000461173 00000 n +0000461279 00000 n +0000461366 00000 n +0000461446 00000 n +0000461509 00000 n +0000461589 00000 n +0000461668 00000 n +0000461792 00000 n +0000461871 00000 n +0000461934 00000 n +0000462020 00000 n +0000462083 00000 n +0000462196 00000 n +0000462279 00000 n +0000462342 00000 n +0000462438 00000 n +0000462521 00000 n +0000462573 00000 n +0000462654 00000 n +0000462717 00000 n +0000462895 00000 n +0000462991 00000 n +0000463120 00000 n +0000463201 00000 n +0000463273 00000 n +0000463354 00000 n +0000463500 00000 n +0000463615 00000 n +0000463711 00000 n +0000463792 00000 n +0000463878 00000 n +0000463959 00000 n +0000464031 00000 n +0000464112 00000 n +0000464164 00000 n +0000464245 00000 n +0000464361 00000 n +0000464451 00000 n +0000464513 00000 n +0000464594 00000 n +0000464646 00000 n +0000464726 00000 n +0000464819 00000 n +0000464944 00000 n +0000465025 00000 n +0000465106 00000 n +0000465220 00000 n +0000465330 00000 n +0000465411 00000 n +0000465483 00000 n +0000465564 00000 n +0000465616 00000 n +0000465759 00000 n +0000465847 00000 n +0000465942 00000 n +0000466032 00000 n +0000466095 00000 n +0000466176 00000 n +0000466239 00000 n +0000466320 00000 n +0000466372 00000 n +0000466452 00000 n +0000466607 00000 n +0000466737 00000 n +0000466861 00000 n +0000466957 00000 n +0000467116 00000 n +0000467240 00000 n +0000467383 00000 n +0000467512 00000 n +0000467613 00000 n +0000467739 00000 n +0000467820 00000 n +0000467934 00000 n +0000468034 00000 n +0000468115 00000 n +0000468178 00000 n +0000468259 00000 n +0000468322 00000 n +0000468402 00000 n +0000468457 00000 n +0000468545 00000 n +0000468633 00000 n +0000468714 00000 n +0000468795 00000 n +0000468876 00000 n +0000468957 00000 n +0000469038 00000 n +0000469119 00000 n +0000469200 00000 n +0000469288 00000 n +0000469369 00000 n +0000469450 00000 n +0000469531 00000 n +0000469612 00000 n +0000469693 00000 n +0000469774 00000 n +0000469855 00000 n +0000469936 00000 n +0000470047 00000 n +0000470158 00000 n +0000470269 00000 n +0000470392 00000 n +0000470472 00000 n +0000470527 00000 n +0000470592 00000 n +0000470680 00000 n +0000470745 00000 n +0000470873 00000 n +0000470938 00000 n +0000471019 00000 n +0000471084 00000 n +0000471165 00000 n +0000471230 00000 n +0000471318 00000 n +0000471383 00000 n +0000471505 00000 n +0000471570 00000 n +0000471651 00000 n +0000471716 00000 n +0000471797 00000 n +0000471862 00000 n +0000471943 00000 n +0000472008 00000 n +0000472089 00000 n +0000472154 00000 n +0000472235 00000 n +0000472300 00000 n +0000472407 00000 n +0000472472 00000 n +0000472553 00000 n +0000472618 00000 n +0000472711 00000 n +0000472776 00000 n +0000472873 00000 n +0000472938 00000 n +0000473019 00000 n +0000473084 00000 n +0000473186 00000 n +0000473251 00000 n +0000473339 00000 n +0000473404 00000 n +0000473492 00000 n +0000473557 00000 n +0000473645 00000 n +0000473710 00000 n +0000473791 00000 n +0000473856 00000 n +0000473937 00000 n +0000474002 00000 n +0000474083 00000 n +0000474148 00000 n +0000474236 00000 n +0000474301 00000 n +0000474389 00000 n +0000474454 00000 n +0000474535 00000 n +0000474600 00000 n +0000474702 00000 n +0000474767 00000 n +0000474848 00000 n +0000474913 00000 n +0000474994 00000 n +0000475059 00000 n +0000475140 00000 n +0000475205 00000 n +0000475286 00000 n +0000475351 00000 n +0000475446 00000 n +0000475527 00000 n +0000475608 00000 n +0000475690 00000 n +0000475772 00000 n +0000475854 00000 n +0000475937 00000 n +0000476020 00000 n +0000476103 00000 n +0000476186 00000 n +0000476253 00000 n +0000476336 00000 n +0000476419 00000 n +0000476502 00000 n +0000476585 00000 n +0000476668 00000 n +0000476751 00000 n +0000476820 00000 n +0000476904 00000 n +0000476988 00000 n +0000477072 00000 n +0000477156 00000 n +0000477240 00000 n +0000477309 00000 n +0000477378 00000 n +0000477446 00000 n +0000477547 00000 n +0000477631 00000 n +0000477700 00000 n +0000477769 00000 n +0000477837 00000 n +0000477938 00000 n +0000478022 00000 n +0000478091 00000 n +0000478160 00000 n +0000478228 00000 n +0000478345 00000 n +0000478429 00000 n +0000478513 00000 n +0000478597 00000 n +0000478666 00000 n +0000478735 00000 n +0000478803 00000 n +0000478894 00000 n +0000478962 00000 n +0000479091 00000 n +0000479175 00000 n +0000479259 00000 n +0000479328 00000 n +0000479397 00000 n +0000479465 00000 n +0000479546 00000 n +0000479615 00000 n +0000479684 00000 n +0000479752 00000 n +0000479820 00000 n +0000479888 00000 n +0000480021 00000 n +0000480105 00000 n +0000480189 00000 n +0000480273 00000 n +0000480357 00000 n +0000480441 00000 n +0000480525 00000 n +0000480609 00000 n +0000480693 00000 n +0000480777 00000 n +0000480861 00000 n +0000480945 00000 n +0000481014 00000 n +0000481083 00000 n +0000481156 00000 n +0000481225 00000 n +0000481294 00000 n +0000481367 00000 n +0000481436 00000 n +0000481505 00000 n +0000481578 00000 n +0000481647 00000 n +0000481716 00000 n +0000481809 00000 n +0000481893 00000 n +0000481977 00000 n +0000482061 00000 n +0000482129 00000 n +0000482213 00000 n +0000482297 00000 n +0000482381 00000 n +0000482465 00000 n +0000482534 00000 n +0000482618 00000 n +0000482687 00000 n +0000482756 00000 n +0000482841 00000 n +0000482925 00000 n +0000482994 00000 n +0000483063 00000 n +0000483140 00000 n +0000483209 00000 n +0000483278 00000 n +0000483363 00000 n +0000483447 00000 n +0000483531 00000 n +0000483615 00000 n +0000483699 00000 n +0000483768 00000 n +0000483837 00000 n +0000483934 00000 n +0000484002 00000 n +0000484086 00000 n +0000484155 00000 n +0000484224 00000 n +0000484321 00000 n +0000484389 00000 n +0000484473 00000 n +0000484542 00000 n +0000484611 00000 n +0000484700 00000 n +0000484768 00000 n +0000484837 00000 n +0000484906 00000 n +0000485007 00000 n +0000485075 00000 n +0000485166 00000 n +0000485234 00000 n +0000485303 00000 n +0000485372 00000 n +0000485481 00000 n +0000485549 00000 n +0000485640 00000 n +0000485708 00000 n +0000485777 00000 n +0000485846 00000 n +0000486015 00000 n +0000486083 00000 n +0000486151 00000 n +0000486235 00000 n +0000486319 00000 n +0000486403 00000 n +0000486472 00000 n +0000486541 00000 n +0000486650 00000 n +0000486718 00000 n +0000486802 00000 n +0000486871 00000 n +0000486940 00000 n +0000487049 00000 n +0000487117 00000 n +0000487185 00000 n +0000487269 00000 n +0000487353 00000 n +0000487437 00000 n +0000487506 00000 n +0000487575 00000 n +0000487638 00000 n +0000487707 00000 n +0000487776 00000 n +0000487849 00000 n +0000487918 00000 n +0000487987 00000 n +0000488056 00000 n +0000488125 00000 n +0000488194 00000 n +0000488257 00000 n +0000488326 00000 n +0000488395 00000 n +0000488464 00000 n +0000488533 00000 n +0000488602 00000 n +0000488675 00000 n +0000488759 00000 n +0000488843 00000 n +0000488927 00000 n +0000489011 00000 n +0000489095 00000 n +0000489179 00000 n +0000489263 00000 n +0000489347 00000 n +0000489431 00000 n +0000489500 00000 n +0000489569 00000 n +0000489638 00000 n +0000489707 00000 n +0000489776 00000 n +0000489857 00000 n +0000489941 00000 n +0000490010 00000 n +0000490079 00000 n +0000490148 00000 n +0000490217 00000 n +0000490286 00000 n +0000490355 00000 n +0000490424 00000 n +0000490493 00000 n +0000490562 00000 n +0000490646 00000 n +0000490730 00000 n +0000490798 00000 n +0000490866 00000 n +0000490950 00000 n +0000491034 00000 n +0000491103 00000 n +0000491172 00000 n +0000491241 00000 n +0000491310 00000 n +0000491379 00000 n +0000491448 00000 n +0000491517 00000 n +0000491586 00000 n +0000491649 00000 n +0000491733 00000 n +0000491817 00000 n +0000491901 00000 n +0000491970 00000 n +0000492039 00000 n +0000492123 00000 n +0000492207 00000 n +0000492291 00000 n +0000492375 00000 n +0000492459 00000 n +0000492543 00000 n +0000492611 00000 n +0000492695 00000 n +0000492779 00000 n +0000492863 00000 n +0000492947 00000 n +0000493031 00000 n +0000493100 00000 n +0000493168 00000 n +0000493252 00000 n +0000493336 00000 n +0000493405 00000 n +0000493474 00000 n +0000493543 00000 n +0000493612 00000 n +0000493681 00000 n +0000493754 00000 n +0000493823 00000 n +0000493892 00000 n +0000493973 00000 n +0000494057 00000 n +0000494126 00000 n +0000494195 00000 n +0000494272 00000 n +0000494340 00000 n +0000494424 00000 n +0000494493 00000 n +0000494562 00000 n +0000494630 00000 n +0000494698 00000 n +0000494782 00000 n +0000494850 00000 n +0000494918 00000 n +0000494986 00000 n +0000495070 00000 n +0000495138 00000 n +0000495206 00000 n +0000495290 00000 n +0000495358 00000 n +0000495442 00000 n +0000495526 00000 n +0000495594 00000 n +0000495678 00000 n +0000495762 00000 n +0000495846 00000 n +0000495915 00000 n +0000495984 00000 n +0000496053 00000 n +0000496122 00000 n +0000496191 00000 n +0000496260 00000 n +0000496329 00000 n +0000496398 00000 n +0000496467 00000 n +0000496551 00000 n +0000496635 00000 n +0000496704 00000 n +0000496774 00000 n +0000496844 00000 n +0000496914 00000 n +0000496984 00000 n +0000497054 00000 n +0000497124 00000 n +0000497194 00000 n +0000497273 00000 n +0000497359 00000 n +0000497429 00000 n +0000497499 00000 n +0000497573 00000 n +0000497643 00000 n +0000497713 00000 n +0000497795 00000 n +0000497865 00000 n +0000497935 00000 n +0000498009 00000 n +0000498139 00000 n +0000498209 00000 n +0000498279 00000 n +0000498387 00000 n +0000498473 00000 n +0000498559 00000 n +0000498629 00000 n +0000498699 00000 n +0000498790 00000 n +0000498860 00000 n +0000498930 00000 n +0000499015 00000 n +0000499085 00000 n +0000499155 00000 n +0000499234 00000 n +0000499320 00000 n +0000499390 00000 n +0000499460 00000 n +0000499565 00000 n +0000499651 00000 n +0000499737 00000 n +0000499807 00000 n +0000499877 00000 n +0000499947 00000 n +0000500017 00000 n +0000500087 00000 n +0000500157 00000 n +0000500236 00000 n +0000500306 00000 n +0000500376 00000 n +0000500446 00000 n +0000500525 00000 n +0000500595 00000 n +0000500665 00000 n +0000500735 00000 n +0000500814 00000 n +0000500884 00000 n +0000500969 00000 n +0000501039 00000 n +0000501109 00000 n +0000501173 00000 n +0000501243 00000 n +0000501313 00000 n +0000501398 00000 n +0000501470 00000 n +0000501541 00000 n +0000501613 00000 n +0000501685 00000 n +0000501757 00000 n +0000501829 00000 n +0000501900 00000 n +0000501970 00000 n +0000502040 00000 n +0000502153 00000 n +0000502239 00000 n +0000502325 00000 n +0000502395 00000 n +0000502466 00000 n +0000502596 00000 n +0000502683 00000 n +0000502770 00000 n +0000502841 00000 n +0000502923 00000 n +0000503009 00000 n +0000503080 00000 n +0000503166 00000 n +0000503252 00000 n +0000503338 00000 n +0000503410 00000 n +0000503481 00000 n +0000503552 00000 n +0000503623 00000 n +0000503700 00000 n +0000503771 00000 n +0000503842 00000 n +0000503914 00000 n +0000503985 00000 n +0000504056 00000 n +0000504148 00000 n +0000504219 00000 n +0000504290 00000 n +0000504376 00000 n +0000504447 00000 n +0000504518 00000 n +0000504609 00000 n +0000504696 00000 n +0000504767 00000 n +0000504838 00000 n +0000504934 00000 n +0000505021 00000 n +0000505092 00000 n +0000505163 00000 n +0000505234 00000 n +0000505305 00000 n +0000505382 00000 n +0000505453 00000 n +0000505524 00000 n +0000505620 00000 n +0000505707 00000 n +0000505793 00000 n +0000505879 00000 n +0000505950 00000 n +0000506021 00000 n +0000506168 00000 n +0000506239 00000 n +0000506333 00000 n +0000506404 00000 n +0000506498 00000 n +0000506569 00000 n +0000506640 00000 n +0000506711 00000 n +0000506797 00000 n +0000506868 00000 n +0000506939 00000 n +0000507010 00000 n +0000507128 00000 n +0000507199 00000 n +0000507270 00000 n +0000507364 00000 n +0000507435 00000 n +0000507506 00000 n +0000507577 00000 n +0000507695 00000 n +0000507766 00000 n +0000507860 00000 n +0000507931 00000 n +0000508018 00000 n +0000508089 00000 n +0000508160 00000 n +0000508265 00000 n +0000508336 00000 n +0000508423 00000 n +0000508494 00000 n +0000508565 00000 n +0000508657 00000 n +0000508743 00000 n +0000508814 00000 n +0000508885 00000 n +0000508950 00000 n +0000509021 00000 n +0000509092 00000 n +0000509157 00000 n +0000509228 00000 n +0000509299 00000 n +0000509380 00000 n +0000509467 00000 n +0000509538 00000 n +0000509609 00000 n +0000509674 00000 n +0000509760 00000 n +0000509846 00000 n +0000509932 00000 n +0000510003 00000 n +0000510074 00000 n +0000510146 00000 n +0000510217 00000 n +0000510288 00000 n +0000510370 00000 n +0000510441 00000 n +0000510512 00000 n +0000510589 00000 n +0000510660 00000 n +0000510731 00000 n +0000510817 00000 n +0000510904 00000 n +0000510990 00000 n +0000511076 00000 n +0000511147 00000 n +0000511218 00000 n +0000511401 00000 n +0000511472 00000 n +0000511559 00000 n +0000511646 00000 n +0000511717 00000 n +0000511788 00000 n +0000511859 00000 n +0000511990 00000 n +0000512077 00000 n +0000512149 00000 n +0000512220 00000 n +0000512291 00000 n +0000512363 00000 n +0000512434 00000 n +0000512505 00000 n +0000512596 00000 n +0000512683 00000 n +0000512754 00000 n +0000512825 00000 n +0000512897 00000 n +0000512968 00000 n +0000513054 00000 n +0000513140 00000 n +0000513226 00000 n +0000513312 00000 n +0000513398 00000 n +0000513469 00000 n +0000513555 00000 n +0000513641 00000 n +0000513727 00000 n +0000513798 00000 n +0000513869 00000 n +0000513955 00000 n +0000514041 00000 n +0000514112 00000 n +0000514183 00000 n +0000514248 00000 n +0000514319 00000 n +0000514390 00000 n +0000514471 00000 n +0000514558 00000 n +0000514629 00000 n +0000514700 00000 n +0000514772 00000 n +0000514843 00000 n +0000514914 00000 n +0000514979 00000 n +0000515050 00000 n +0000515121 00000 n +0000515193 00000 n +0000515264 00000 n +0000515335 00000 n +0000515400 00000 n +0000515471 00000 n +0000515542 00000 n +0000515623 00000 n +0000515710 00000 n +0000515781 00000 n +0000515852 00000 n +0000515933 00000 n +0000516020 00000 n +0000516091 00000 n +0000516162 00000 n +0000516234 00000 n +0000516305 00000 n +0000516376 00000 n +0000516462 00000 n +0000516533 00000 n +0000516619 00000 n +0000516690 00000 n +0000516761 00000 n +0000516838 00000 n +0000516909 00000 n +0000516980 00000 n +0000517061 00000 n +0000517148 00000 n +0000517219 00000 n +0000517290 00000 n +0000517376 00000 n +0000517463 00000 n +0000517534 00000 n +0000517605 00000 n +0000517691 00000 n +0000517778 00000 n +0000517849 00000 n +0000517931 00000 n +0000518013 00000 n +0000518095 00000 n +0000518177 00000 n +0000518259 00000 n +0000518341 00000 n +0000518427 00000 n +0000518509 00000 n +0000518591 00000 n +0000518673 00000 n +0000518762 00000 n +0000518851 00000 n +0000518940 00000 n +0000519026 00000 n +0000519115 00000 n +0000519204 00000 n +0000519293 00000 n +0000519379 00000 n +0000519468 00000 n +0000519557 00000 n +0000519643 00000 n +0000519732 00000 n +0000519821 00000 n +0000519910 00000 n +0000519999 00000 n +0000520088 00000 n +0000520177 00000 n +0000520266 00000 n +0000520355 00000 n +0000520444 00000 n +0000520533 00000 n +0000520619 00000 n +0000520708 00000 n +0000520797 00000 n +0000520886 00000 n +0000520975 00000 n +0000521078 00000 n +0000521165 00000 n +0000521242 00000 n +0000521539 00000 n +0000523842 00000 n +0000523919 00000 n +0000524216 00000 n +0000524407 00000 n +0000525102 00000 n +0000528473 00000 n +0000530516 00000 n +0000530968 00000 n +0000532379 00000 n +0000532451 00000 n +0000532523 00000 n +0000532595 00000 n +0000532667 00000 n +0000532739 00000 n +0000532811 00000 n +0000532883 00000 n +0000532955 00000 n +0000533027 00000 n +0000533100 00000 n +0000533172 00000 n +0000533245 00000 n +0000533317 00000 n +0000533389 00000 n +0000533461 00000 n +0000533533 00000 n +0000533605 00000 n +0000533677 00000 n +0000533749 00000 n +0000533821 00000 n +0000533894 00000 n +0000533966 00000 n +0000534038 00000 n +0000534110 00000 n +0000534182 00000 n +0000534254 00000 n +0000534327 00000 n +0000534399 00000 n +0000534471 00000 n +0000534543 00000 n +0000534616 00000 n +0000534689 00000 n +0000534761 00000 n +0000534833 00000 n +0000534906 00000 n +0000534978 00000 n +0000535050 00000 n +0000535123 00000 n +0000535196 00000 n +0000535269 00000 n +0000535342 00000 n +0000535415 00000 n +0000535488 00000 n +0000535561 00000 n +0000535635 00000 n +0000535708 00000 n +0000535782 00000 n +0000535855 00000 n +0000535937 00000 n +0000536010 00000 n +0000536084 00000 n +0000536158 00000 n +0000536232 00000 n +0000536306 00000 n +0000536380 00000 n +0000536454 00000 n +0000536527 00000 n +0000536600 00000 n +0000536674 00000 n +0000536747 00000 n +0000536820 00000 n +0000536894 00000 n +0000536968 00000 n +0000537041 00000 n +0000537114 00000 n +0000537187 00000 n +0000537260 00000 n +0000537334 00000 n +0000537408 00000 n +0000537481 00000 n +0000537554 00000 n +0000537627 00000 n +0000537701 00000 n +0000537774 00000 n +0000537847 00000 n +0000537921 00000 n +0000537995 00000 n +0000538068 00000 n +0000538142 00000 n +0000538215 00000 n +0000538289 00000 n +0000538363 00000 n +0000538436 00000 n +0000538509 00000 n +0000538582 00000 n +0000538655 00000 n +0000538728 00000 n +0000538801 00000 n +0000538874 00000 n +0000538947 00000 n +0000539021 00000 n +0000539094 00000 n +0000539168 00000 n +0000539241 00000 n +0000539315 00000 n +0000539380 00000 n +0000539445 00000 n +0000539510 00000 n +0000539575 00000 n +0000539640 00000 n +0000539705 00000 n +0000539770 00000 n +0000539835 00000 n +0000539900 00000 n +0000539965 00000 n +0000540030 00000 n +0000540095 00000 n +0000540160 00000 n +0000540225 00000 n +0000540290 00000 n +0000540355 00000 n +0000540420 00000 n +0000540485 00000 n +0000540550 00000 n +0000540615 00000 n +0000540680 00000 n +0000540745 00000 n +0000540810 00000 n +0000540875 00000 n +0000540940 00000 n +0000541005 00000 n +0000541070 00000 n +0000541135 00000 n +0000541200 00000 n +0000541265 00000 n +0000541330 00000 n +0000541395 00000 n +0000541460 00000 n +0000541525 00000 n +0000541590 00000 n +0000541655 00000 n +0000541720 00000 n +0000541785 00000 n +0000541850 00000 n +0000541916 00000 n +0000541983 00000 n +0000542050 00000 n +0000542117 00000 n +0000542184 00000 n +0000542251 00000 n +0000542318 00000 n +0000542385 00000 n +0000542452 00000 n +0000542519 00000 n +0000542586 00000 n +0000542745 00000 n +0000542812 00000 n +0000542987 00000 n +0000543054 00000 n +0000543121 00000 n +0000543177 00000 n +0000543233 00000 n +0000543300 00000 n +0000543356 00000 n +0000543412 00000 n +0000543479 00000 n +0000543546 00000 n +0000543613 00000 n +0000543680 00000 n +0000543747 00000 n +0000543814 00000 n +0000543881 00000 n +0000543948 00000 n +0000544015 00000 n +0000544082 00000 n +0000544149 00000 n +0000544216 00000 n +0000544283 00000 n +0000544350 00000 n +0000544417 00000 n +0000544484 00000 n +0000544551 00000 n +0000544618 00000 n +0000544685 00000 n +0000544752 00000 n +0000544819 00000 n +0000544886 00000 n +0000544953 00000 n +0000545020 00000 n +0000545087 00000 n +0000545154 00000 n +0000545221 00000 n +0000545288 00000 n +0000545355 00000 n +0000545422 00000 n +0000545489 00000 n +0000545556 00000 n +0000545623 00000 n +0000545690 00000 n +0000545757 00000 n +0000545824 00000 n +0000545891 00000 n +0000545958 00000 n +0000546025 00000 n +0000546114 00000 n +0000549466 00000 n +0000549555 00000 n +0000552961 00000 n +0000553038 00000 n +0000553335 00000 n +0000553400 00000 n +0000553489 00000 n +trailer +<< +/ID [<4A38E46F664BE54891AAFF9AC72F517B> ] +/Info 1 0 R +/Root 2 0 R +/Size 1524 +>> +startxref +556839 +%%EOF diff --git a/src/Static/data/Standards/2/IDDRS-2.20-The-Politics-of-DDR.docx b/src/Static/data/Standards/2/IDDRS-2.20-The-Politics-of-DDR.docx new file mode 100644 index 0000000..507ff89 Binary files /dev/null and b/src/Static/data/Standards/2/IDDRS-2.20-The-Politics-of-DDR.docx differ diff --git a/src/Static/data/Standards/2/IDDRS-2.20-The-Politics-of-DDR.pdf b/src/Static/data/Standards/2/IDDRS-2.20-The-Politics-of-DDR.pdf new file mode 100644 index 0000000..6d66a8b --- /dev/null +++ b/src/Static/data/Standards/2/IDDRS-2.20-The-Politics-of-DDR.pdf @@ -0,0 +1,15277 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210108142226+01'00') +/Creator (Adobe InDesign 15.0 \(Windows\)) +/ModDate (D:20210108142458+01'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Pages 4 0 R +/StructTreeRoot 5 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-01-08T14:22:26+01:00 + 2021-01-08T14:22:29+01:00 + Adobe InDesign 15.0 (Windows) + 2021-01-08T14:24:58+01:00 + uuid:fe74e608-a475-4e78-9e31-2947f56a0cd0 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:b2a3fcc8-325b-7f4e-8371-a687dee1f9a2 + proof:pdf + + xmp.iid:4c42bb02-1851-0342-b28d-89c4874acb60 + xmp.did:9148e695-92d1-1d4d-8cd2-972f26bdf1cf + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 15.0 (Windows) + / + 2021-01-08T14:22:26+01:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Count 25 +/Kids [6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R +22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R] +/Type /Pages +>> +endobj +5 0 obj +<< +/ClassMap 31 0 R +/K 32 0 R +/ParentTree 33 0 R +/ParentTreeNextKey 22 +/RoleMap 34 0 R +/Type /StructTreeRoot +>> +endobj +6 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 35 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ColorSpace << +/CS0 36 0 R +>> +/ExtGState << +/GS0 37 0 R +/GS1 38 0 R +>> +/Font << +/TT0 39 0 R +/TT1 40 0 R +/C2_0 41 0 R +/T1_0 42 0 R +/T1_1 43 0 R +/T1_2 44 0 R +/T1_3 45 0 R +/T1_4 46 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 47 0 R +/Fm1 48 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +7 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 49 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1730 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 37 0 R +/GS1 38 0 R +>> +/Font << +/TT0 40 0 R +/TT1 39 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 50 0 R +/Fm1 51 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 5713 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 64 0 R +/T1_2 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 67 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 2 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 69 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 70 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 71 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 72 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 73 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +/GS2 74 0 R +/GS3 75 0 R +>> +/Font << +/TT0 62 0 R +/C2_0 76 0 R +/T1_0 63 0 R +/T1_1 65 0 R +/T1_2 72 0 R +/T1_3 70 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 77 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 75 0 R +/GS2 61 0 R +>> +/Font << +/C2_0 76 0 R +/T1_0 63 0 R +/T1_1 72 0 R +/T1_2 70 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 78 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/TT1 79 0 R +/C2_0 76 0 R +/T1_0 63 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 80 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 79 0 R +/TT1 62 0 R +/C2_0 76 0 R +/T1_0 63 0 R +/T1_1 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 81 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 79 0 R +/TT1 62 0 R +/C2_0 76 0 R +/T1_0 63 0 R +/T1_1 65 0 R +/T1_2 70 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 82 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 65 0 R +/T1_2 72 0 R +/T1_3 70 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 83 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 72 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 84 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 72 0 R +/T1_2 70 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 85 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 72 0 R +/T1_2 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 86 0 R +/CropBox [0.0 0.0 615.118 793.701] +/Group 87 0 R +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +/GS2 74 0 R +/GS3 75 0 R +/GS4 88 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 72 0 R +/T1_2 70 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +/Fm1 89 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 90 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 72 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 65 0 R +/T1_2 72 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 92 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1899 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/C2_0 76 0 R +/T1_0 63 0 R +/T1_1 72 0 R +/T1_2 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 16 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 93 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1870 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/T1_0 63 0 R +/T1_1 65 0 R +/T1_2 72 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 17 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 94 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1813 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/C2_0 76 0 R +/T1_0 63 0 R +/T1_1 72 0 R +/T1_2 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 18 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 95 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1814 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/C2_0 76 0 R +/T1_0 63 0 R +/T1_1 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 96 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3119 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/TT0 62 0 R +/C2_0 76 0 R +/T1_0 63 0 R +/T1_1 72 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +>> +>> +/Rotate 0 +/StructParents 20 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 97 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3120 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 98 0 R +/GS1 99 0 R +/GS2 100 0 R +>> +/Font << +/F0 63 0 R +/F1 72 0 R +/F2 70 0 R +/F3 76 0 R +>> +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 21 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 101 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1846 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 102 0 R +>> +/XObject << +/Fm0 103 0 R +/Fm1 104 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/A4 << +/O /Layout +/LineHeight 0.0 +>> +/A7 << +/O /Layout +/LineHeight 12.5 +>> +/A8 << +/O /Layout +/LineHeight 9.5 +>> +/A9 << +/O /Layout +/LineHeight 9.3 +>> +/A10 << +/O /Layout +/LineHeight 10.75 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa4 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 39.0 +>> +/Pa5 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa7 << +/O /Layout +/LineHeight 16.0 +>> +/Pa8 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa9 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa10 << +/O /Layout +/LineHeight 12.0 +>> +/Pa11 << +/O /Layout +/LineHeight 11.0 +>> +/Pa12 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa13 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa14 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa15 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa17 << +/O /Layout +/TextAlign /Center +/LineHeight 12.0 +>> +/Pa18 << +/O /Layout +/LineHeight 10.75 +>> +>> +endobj +32 0 obj +<< +/K 105 0 R +/Lang (de-DE) +/P 5 0 R +/S /Document +>> +endobj +33 0 obj +<< +/Nums [0 106 0 R 1 107 0 R 2 108 0 R 3 109 0 R 4 110 0 R 5 111 0 R 6 112 0 R 7 113 0 R +8 114 0 R 9 115 0 R 10 116 0 R 11 117 0 R 12 118 0 R 13 119 0 R 14 120 0 R 15 121 0 R +16 122 0 R 17 123 0 R 18 124 0 R 19 125 0 R 20 126 0 R 21 127 0 R] +>> +endobj +34 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Kapitel-Head /P +/Absatzformat_2 /P +/Endnote_1._Abs /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Einklinker-Text /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +/NormalParagraphStyle /P +/Tab._Lauftext_light_ /P +/Tab._Versal_bold_sch /P +/Tab._Versal_bold_wei /P +/_No_paragraph_style_ /P +>> +endobj +35 0 obj +<< +/Filter /FlateDecode +/Length 4039 +>> +stream +H‰ìWÙnÉ}çWÔ# ¶j_C@¬Åp`3ƒ<A@S‹5‘H™¤=ö|}îRMvS¤Ü-[3HÆà.örëVÕ9÷œûapðâL‰«å@‰ñ«ƒÓ[%Žçƒ_¶ïk¾pv7™‰gÏ^MfWbx1½x.^½<^>?>ƒçãÁÁ|<] +-Är:[Ç:ë+¸9¾ŒT¥Œ¦¢ ~¡Š^(ø‹•&Ù*©…ñ•OøÂíàíð•éT˜XŽ|eÅð à ¸sÄPù¯ñß'ãÁÉkHåtC#]Ey`¾ +f“„U¾JÎúvâ欜ÎaÊXÁ¬3„*‰á”1ðýðŽò…7VtÞXÂÀáà'ñ³9\†Éï†âE1¼nijðà‹˜Ôwfô¬÷\œÉQ¬c{,äˆ&× F^mÒ±÷ + +ßø"æõ\—¿8ÿûz’ ñîiœæ˜’kÞPˆ~Öu«cÍh·ƒàY)ÛÜê¡rük—R=Ç öC'3,b-.ÿ3>iU8PU9gÅ›sÿ&œx ñLNøoA1VN.˜h05SR{¦Tr‡Ý’Ëur¿” Îòd…®Yavm‰I•Ï9?nK´j¼¹ìÅU‹‘v×ÜVW.è-ú¾ÊŒƒƒ @±®ƒØ3„þ¾¦A& FÄÞÐȉ)A ž, „ß¾Ç:2Îhð¦+¼´ÞQy¡¾X¢Û“KÑÁœ¼¡5û ÐÒ%'Bð(çxɆÒrTvÂ\ꜘi$¦7Ù”ÃÞTŠ!þ6]}œÜŒ/>¯žžœž*¥òáá¡ À9G©XŒ •u1µr220'X|ÆÈçtfT‰ÞË„œÅó²Tæ2rÙÊÓyÕ%v?•ßtZÈ:+¸QŽŠ´\º“m•qCL¬Ï$âv@Í"Ž4Îê— ¶œÉN_×_Èi¶¢‘åRGe o†-VÜ® º6cîÑt¬Úåjír”2n}ƒ:mõ'D¦}&Qå#oé­¤ý„KÆëd!µÃÁ—Îù6ŽÜ$LiTFÛ9i+•c+§aÕûbl/\ZÃuX­ÑØe)÷Õ¸J^wåF{¥.Á6ç”ÛKÝ°c¨»–Цpá¡Û5c÷œwýµPaqBýðV´V‡¦=SvXmR Ž¶fòkÉÞg.¤s ¤ð'”ª½l:. ÐH­Ø¡°ß¡a¡'ÔztH(4XàÉ;d7T…_ñM² †*µÇ«ºÚCQ Çñ©`ö‚Ã/EgȦ>5Þ‚ŒÃùµöõÏ‚h¾Ñhã·B´¹²DMGˆÕ¢~eiBóˆ6à‰¾¡Às“¥xðûÆê‡MHkç6â”iÈ¿zÄÓ­$S°Di²è”ÏåÚõÄߥtÅcêfµ¾– “†k ¯Å`ÎR5CP/™lÛ™Açp+O~'fS0NZó©ävÍvg"Ñí<4MWJ½‡:æÁeT눶¨“@R§yÞ €ýáü1æIø³gyùc·ø£cÙ~'»ŸEP•lÉmwÙlî±N:¥r÷q„‚^¤&ÔKrÔAh©d¯  +MȘDà [Ì8Ý^]ãëdã ¹öYgøº=ð5Ù?¾:@›áýÖFwƒïhÿ$€Þ³à΀[€f£J.;ì´ËMëú9gÖõ¼’PYnÅ”zÖæ…td Š¾–.ãëç×’šF-9™«:Ì µØh®øŠÌ½tQ:•© hr<567Ò%2;iקÇ^~:Ã,:šöÖýÙ˜L;0&â×1ÙZa“¶+&óÎÎ!‰)B—f(E­yrh³|ÖÂEHÁeË ”Cy†¯¤'× éd{–˷ß=‰Ü„e??&áõFj]ŽFPRÉOÁ ° ñ BÀd&`½ l> Î]gU qØ©”ÚÙ¡tþ¸>ÝuÈ5$ rÂc©l`²¿ue²mÛš)ʺ6S\LU4HÒVZð\ö»¤¶åäv×ë*¦mÚj¬Çæ1¬5U²~­" +¢ ?Goc©gEöoGÒjòâ‹úÕ%×"ÉjÄœ͈ڞZ –kl4º}KzsÍ‚¦2s‘æœ l; {,­°,ŒV CEå#¼O2Ô +iKȈYv-öGqèKR«à؈¤kü}…¢½8ézq2µ²xRFúvb*±ô+mvÑSAµ0f­âš¡LP¤PÈv¦¨8æfóR<Ÿß°õèBÄ¿.)?ÃÈvnDÜx'u çتüY ÷›HªS$°¥+ýžìå%ãŇ/€ª™ŠÑÈ^¬#¬bSOt÷iÁ¾å¾gÑx“£šÀÙÞ±ìà ÆbØFåz3‚"92]™þâÌÞÅ\ã+§‘¹ d>ÀÝ^¼}yÛÊáI™›Ú©ž±#Vns|ÊiW371s YTׇ¸!Ü#îÛáKb“&q „j”U=àÑOÖ{‚æ×ÒS`I/Ï›ÿâàÿ_½î ­N@˜Œ¤m€²Ÿ'îËe§úr¹•ÚSrÙév› ûƒm.`[YÒcʺΠ<£ƒý³)T^¶ +þÁ$ÍÉ:IUÙl +‡7›È©÷\$P>¯ûÒ. xl°r¸X#;\òÎ+TÆPÞv¤®ð¹#uÇ¢Îú—+Ao¶"·n±È²vƒÃ/d°‡›$Í­€‚~k¨Bï¥ÎhÖïà'>Ÿ—Žã†kÖµ„ï 9m‹#Ùžnf´D3ŽÈ@õÃâW–vKÚïʧÍ¥¿sI÷/Å1Î_À¾éZ ]«—ª¬I¥Òh.JrÊ`¸Zxiñèº9÷~Œ³ívetñÁjÝšö +ô ´l­à1dsm²)&Jh(æw¯„ÚfÁ¡’„z ÆÏ¢†z:zÝGCõ.ót¨©t„H„àó6¤d5–ŸW>Ocm0Á}öG)1-­*6©™ i( e NÚÂI²²ÈIÖeò¦Ý1g4]K˜€aºbÓïVj ˆø!ÕßIBM€f#{ÛåP|oÕ »USïSÍV6WÍžuYI|¼È:Xqv™Öº‹¬ƒ*õ½DÖçº2œJöÙs°×n#¦R¡¥FÓÝÓQ’=Ò9_t.·uN³ÎQ£»–«†Ò-eâªc(Ä»ûrF®&£DÕJ\JC!ê-¡«zI]ê#u&A[a½nŸÚ×øðê×lWe™åÅÅo–ÀæÊš=˜–# Õuk½Ú'†fÉ:'hŒ¬ƒ>ÖÁÐOÉ›*Ùµ¨º3j$Ñž±¢IÍÞL“>™P -0ëÑ`ÁDEÍÀ ûŒÈ‡ÜÁ{…øÁBÂ{,€÷â%æ +}6#•-Þ FÍÛz–E­Á·. µ·âŠ³X¯Á ‰4ÑäŽWØYY½Þ£¬ÑÿŸ)ëųvاЂß>ÅëCUoöP5X³Oæš)t–98±xÏö µêh]½Ý!Æ{9ªte}pÛ¥jm¾™¢'ȳTÓ‚Ü!õF`JÙ7.êžid kV,B‚HN4bNäD$ÛÚ )ÒŸ™‡2$|§þDä ÌdÅ9hUœî}êâsP%] Ñ”d‰šÎctó(Kb“2Ì̦[6Ú&a¡°°Í *RœÊuºøE£x¼ÎPõÈÆ2ÆêNy·›ò8ø®ŒßÁ8gÿK~¹,µ ƒQøU¼$ §Ö]ÚvÝÓá(—–™P:v¦oßÿ"Ç’b —Ú ß$‡óýçŠÅ”ˆéì%„™‚0­"aã92+.LÌl,íN&ÁŽµw¢¬¥z¥ö1æ%&Êî kÇž6pMKù²ÌWËòÿNŽxÝ œÃªIŸ•<^R]D(‰‡z„¿ç¢ñ²–Zåõf½ï¨f—îáŠ{~Ä,K[†¿ez|.?îHü¼¦óaÀaª¹½L[¤¯ÒK ÈP¤ +çK iYŸÔòš+¸–Tð–{ +™Šâ¢çúÄNÕÀÃØ("¼è‘’HÑ +d}ˆ›Ü$E^ãÝÆÃCt±Û}&ç2e»‰*ä…j |Ðj”¶¹¾Æcg Vvš 4v>] +endobj +37 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +38 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +39 0 obj +<< +/BaseFont /NXFNUO+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 128 0 R +/LastChar 122 +/Subtype /TrueType +/ToUnicode 129 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 333 250 0 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 0 611 709 774 611 556 763 0 337 0 0 611 0 0 0 +604 0 668 0 613 0 0 0 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 0 0 291 883 582 546 +601 560 395 424 326 603 565 0 516 556 500] +>> +endobj +40 0 obj +<< +/BaseFont /WVTKQW+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 130 0 R +/LastChar 122 +/Subtype /TrueType +/ToUnicode 131 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 0 218 0 +452 348 462 434 452 434 462 462 452 0 236 0 0 0 0 0 +0 696 574 0 726 0 500 726 0 348 0 0 0 884 0 0 +556 0 660 528 602 688 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 0 312 800 556 490 +528 0 378 396 340 546 508 0 462 518 442] +>> +endobj +41 0 obj +<< +/BaseFont /TYEXAC+Wingdings-Regular +/DescendantFonts 132 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 133 0 R +/Type /Font +>> +endobj +42 0 obj +<< +/BaseFont /FNKWME+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 134 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 135 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 452 610 539 363 596 599 292 0 0 292 871 599 589 +610 0 403 451 383 0 551 0 0 545 486] +>> +endobj +43 0 obj +<< +/BaseFont /GMUCAC+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 136 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 137 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 555 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +44 0 obj +<< +/BaseFont /UCTDOA+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 138 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 139 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 666 0 0 0 0 0 0 0 0 0 0 0 +532 0 538 0 497 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 448 0 501 292 0 555 234 0 0 236 0 0 549 +0 0 0 396 331] +>> +endobj +45 0 obj +<< +/BaseFont /RVFLYG+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 140 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 141 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 683 0 0 0 0 0 0 0 0 0 676 0 +559 0 569 0 525 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 449 0 516 319 0 572 256 0 0 257 848 0 564 +0 0 356 417 351 0 508] +>> +endobj +46 0 obj +<< +/BaseFont /VOGJCY+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 142 0 R +/LastChar 50 +/Subtype /Type1 +/ToUnicode 143 0 R +/Type /Font +/Widths [233 0 426 0 426] +>> +endobj +47 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12084 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 36 0 R +>> +/ExtGState << +/GS0 37 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—Ir%¹D÷Ê]J»>÷=J¿fm÷Œsí(÷*çúß??þÅŠš[þ{ÅUø‹k´y÷ÆQuì»–6¯¿>ôé×GÄÝâú¬qoˆ~Êp0l׺cíës±y®ëÇÇ'G¯~}F÷`æ³ö{õÃDë÷Ùü3Ú];[¢ÏûŒª={Ü­ ¦f½çjZ\îúcÖÐêqî>óF׶8‡Ë¸#°°à+&rkcÕìwñí¥=ÛÖ½êÎ]ó®í:÷:UóçêÕÖ=¶Æ®Qî6‡W·JXÚ5Ö½C&rÃëšq¯Ígsó&Ê7Fh K©š(cùÞÝ}üá@Å“5gºzé3~y"Ö¹wíyiØØD€&‡j8q¦såŠg¿'ê]su¡Ñ<ãzÕÛ]–3rúÝcjbø´v¯9µ|ãao[Ãö˜‰†UÜ6F÷w9ÒKfM»A;„£=Ëõ‰UdL½®±óVOnW‰«nàÆæXˆT]ΨVãKíWU%`¼¬î,§€®ÇçZÈŠ}a¢¤À%-'ÇûŠ}Ÿz<”‡ÒV\(¢!Üaq› ;µ&àrÔ’%=ì7ÿ©È°€ÊoL;¸Àϖ铬…`(  +º NÏœïít€°²2+›ù¾!ßà'—ÀjÏT° §ÕÊŽ¦<ËP"x\³Ü½w%n„oŒ)\t6UîœìÌ%…@íâ:-7PÑÜÿÌüÔ nì¡ LqPdº´Šã¦8€¨Ì¸3Á Î`†h3qæöÀ¶ã8ïŠST[xkf +<]òƒ3}¢ÇÕ5gšÁLæÂן¿O¼RÑlD7%‡¡Ãéa¸ø‰ã’l&VGûª1¨f¿ŠÆ5Øï(ßjÙšÃá2ìiãQ°íÄRÉ’í.z€€áëÏͯî&Ç­>5Vó{ïÓܼúÐ÷E©}BxJû—1_+À†©¢]ÄL}„ðƒJáÏ¡H6:¤ ~ä1Ù¬)$Œá¬0¡Všû9o†bóMoTÎWtfq]• +±í,ç;ý܇éE–øR‡Â@Wèa”‰AÞu8 R ¦N {ѶFQ‰ÜéWuòN£lÍžé³Î‚Na†•úa8ŸÍê³Ï×<{Ãr\]݃pû7éâw.¾ƒ™‘ßIzd èð5»†IS qê°¶ÔDÁ3wD¸àE“Ð^vH±¦*;dY¼(â]ÔñÌàÀúP ¨ƒ$&ú±JaÁËá¯rž”È&¾×Y‡Zl‹ÁP+ûI™6Õ»VÉœêÎ"ÊÐ'݇RW>ð}+x&Q2ép[~j ÕRéRb<ÆG 4:Õ½ñôPý–ZuµŸäuÍÐÔy^Õ!¯“Ë›<:/¾’ŒhÓ',) Ì-ÞªI6ŒûÔwÕf}è~Z¸0ƒÍ:aÊv(ÚŸîñÝßÇÉ;ªl!Åì8ݪÈ4w7°û4ß÷ Üѵ’qíï®òú¬ ÔjžYh\<Æ8a–qJ$žÔS–Ÿ0c=Ù©°*Ñ¡;hGro[”iGÏ\ÑVëi_w41çö µ(ä>U3¡Pi¥ÚôÓ)mÿ\ËæG[OúÎÌ/egÇ8J…Høw…^ûðo¨RXW_ÑÎÌ‹Ùt«çŽÅ­??Þ)ã¬Ö2¼Í1ØVѲ÷í`›®¢'ué+8Mmd=óË¡‘@ÉðN9Bß;Ѥ#ra\Ÿ ¥ZøÚq;¹ våÿÂ'£ê|Y#¥Q,T$ÞVCD.A¼’ðAá@ôíœKÑœœAc[Ê×ÈØ7gQøÎï%U²ó8vee[\î*²§š ª‰] q‘dþZ×S¢yë«‹á¦Ö­‰á#p¾¤½«!Uaj ‚  žûÛÒGáqŸ¹C"k0cz” +uÛЦÓÖm…\*j­$»ÝMH‘ì¤%05TWòS5,&DR©ˆ’õq`ÒýÃ…Vl§ J•J–+þ¨œJ¤ÂÆ4ž!-rˆ¢O×%)žšWV+ÜD2uÐEí[z\2M2§¹[w! ZÏ eù-GËFVˆI³à;;¾ü—\|½^jËFñÒïýd‡|DŠì¼Aîo Tó!6¯ëý.üKÜD3ÉmàWBê×›Pü¾ýàÜò¢°ÜÔj}ÕÒ›z,ÜÛÀZ±ª=Q(ëõT¢6c$ãŸßH@u1UõUJÅ~1„Q¼I•&™/¿ ëè°pØFª+†æ$ŸýdŒ†+—+Ž7ðß×»ÉXÞ¶?µXv'˜%›ýbºÇ{üé\Ì-Ù¸~õiªsec9ÐÓÏø¶/ ϶S®Uú-êW»M«(ºD!øjböŠ!“ê8×_r$;Ë)3f$þÿêÅ4¸M=ãÐ +Ô7†¥à™¤ºO2 ºÆO—”‹ãò„›®Þ‹ê#šX+{çÉ7Fœ™@z0ˆÉhß&6‹Ÿ +mâU×”"±áe…•UM=Ê9VËÕ[gõ qQ &¼+®³¨vÛ&s>:qJy~+¿™ô/‘›1šùÞˆá&cá¥^¯æKj KÅhÇïYoCø$¼­PqâÎÏ2ýPuK]çu? ])ªqD„‡¯;aḨqº„P+WÄT5Æ6H9¾Rš¡ÒÙ|<ÕªÓˆŽÌgÊl&Zþã{é[VÛþI‹H2 ¿#¸îb·}©·‡¬®! >jz‘@2/vQ4>õàÌ —ÇîÃ-9Z‰‘¿„N­Œû›»°”Ë/OTf&ê§'ܦ|¾Æ˜¶}ÿ +OKŽÞ—ܱˆ‚ÂBtüh=Ùß¹a®|Jò038@M˜ŽÍjã+ØO¦¾z?îõ–Bï·âÀ¯ŽÌt¥Sã2­³;1rªJº{Å.‘„Ãz äk”öÌ0RjÉf¿¡z5þ9<îGbÁþhž_9!…$•—:uŠ¤¾ÚŽ®ÜP3Zã2j'™4ÌKY¯o +û‘§<¯ U¬Ïmé5]·´úºª´|Žµ,Ù«þŸì*Ç’$E¢zŸ"/0ﱟ§”²î¯Î_ ¥² [þò€›0¢˜èÃä3q‹·GÖŽÑVµµmsìz¢›LA_Ôš"i¦ ÿJú~EÄJ­òè@·'&:KÔ]–ÒÕ"M¯;»çq¨¶ˆTF®™þ‘ú‰- ‰×å8äqˆ´Zòözá÷\b2ÚFàáåL»X aÐôä<*Z†a=„ ©ŠÁ)Ó®–‘BƒÛð;•,% =)£e>n°3a7Š¾Ay¿„´­ûÅ6haµ@Z” CÕM”–ÄtˆSY9—hrÓ;Z‰t AjêýsÕÇ£îG-²L»/…2škJoˆNÈAKÞ’œÇñðšj¿óµÁFµ ÙÞ°¯’¹³å<U®ØV0CµŽ"Ó Cç¹Rã#Ô¾`j(fŽqQJ(Ÿ™AøªHSk½ßË~ßaS QÕwlÊå­% +š>›Hu¨½UL\HEz\\ÃÏF&ºQÉNã˜$eÕx i,÷ä§l${rT l° †_•2w,éõ¯{TÆ ‡.ê² +ÿË%¥Re‘RëẑP¶L`ˆÑh¹d0ÚÊÂpk«lr´ eDø`X¦Ð€Tµ_Ú—_ç|Ù pÚˆÃàUOœp¹b´‡ÜœRì¨*÷(lQóýROd×&$…qa½ˆ®û±A¤$–rÁDãUPm:–[TÇ¢.^µL8B!}×dbŵ%,D^XÒxz͢Х·²5¹¸nÉ/¡}Žú«Zç‡e'cÉâ-.ƶ¼ÉYËõhHÂó‡Îò¶x}Q׆^úǦg‰²)ž~振YÈWõm*ºö!Mè´bÎ\\¸*ž(2Ø°¨I×Ãb¿š‘¼À E;8¦½ ¨a1+¦ÄiE¤oñc«Ë2jÂEQʵ#wìÄ" J„ÞÅêbM)ˆdåÔIVaµG@ ²@Ê%r~ר8Šðavg´Ä^ÍPU!ó]\ IHr®äý’ü®æ =¡äÇÊe¯¬PE ÇÕð¦à‚7ÊSêy3 9:†3|îÈÍï aS~(Ä7×”aBª‰ç®æ‰ÚÂúc7$R¸€€±º&å†lHHm<ú£ šTRH¥i¨û}9B¨/·"7ûÏx¡üÌT& aÜ–ÄX×àÌmµ×Å(e[©àñskÓ4nᡉó…÷ÕŠÒz®˜hÑ‚Mˆûh<§Ê€EV ­QôõA‚ZJJãG·¥}z +–jyJµvñ§óá‰:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½[¤ŸO[y¹î=;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re§zó1Åñ–÷¸çjA-¾Z-‰„Mð3¿™û×–L¼¤uý¹?#íýĭתr¸œ˜¥gH™_5fZUǨ™õ½¤³æqhó]ÆÀ¡”IÀª­€¤S]ðpó&‰ïëjuƸ ¸Ù0ƒþj½×Ð:lG(˜iŠëõõ|‡ñßá‰MäCèœqwX=õ›Slyž[óœAŠ¦ô¯‰á“z J¿žv¯[¹˜·ëù¤2lkw$@ËÀÈçÞ¸P‚óÕM¤tqþ)Ћò¯ o{“z!«Ó´SA‡Û…3L˜ :ÉcÈ®ô®˜8[,h\d)ÁañEU%ž×¤î iþ(&=MN)N £’X +ÉyðXÅx\ |îDYÖmBÌj¢º‰íR p‰È7{ªŠÂ8s Tãq¦µÆÓ yÈšC3ƒYƒ¼ AmÞ¤°‹vRRa#!jFhS&ó +ìYÜÙ{ mù +L«ÝÛ2©¹Ëqüxô¦ÜÊ}±S»Ú•þìøÄWÒ ÿh¨ßÙ‘„Õ°xñ¢æ!q&hÆyëiøê0‡Çñ¦#dF ãú +ÛKs ¿àÂB4øŒ„nTù#ß!‡DÿY,3;3÷µ‰ 7Î7rßNÝÙùñvl,1žœF6 Ñ0³Ëé«Lá´VæêPî`<ØÉÈ6ýj½ª@pA/K²;lj°sý”KÚÔÔ*åV_ÊŠ ¶×ú $«·Î% #Ĉ‡¾d?¦â g%„ ÙÑÿÒÄCG L}'(J±FPÔ—‰«"•æ`ÄsfÈ€§} ÕУ?u‚‰#CKx˜)²ñßRÜÝ£âø+£„ò õ7@òkŽ¤ ¡`*KBŠ·³â8åšâ6‘Ðâ„Éòƒ‹„o Í5ù^PÿA÷-‰ÏÎ*rÿÚòQA¼KïÖ’ÃnXàK–IEˆ$Í™ʛ*„ðJ÷$­ÄSXÅå~á6}DAíÁ媻]ÊÀ gº;Bq þq·MA4pÆV3])BE$1 Ã#׿6N•0ÒDÙö¼}»éNôiÀ#á—lpU”Î…íâ¡F¢§D¤å_v~©KßAMÇåªFVÞªï-8¬Í7³Õœ£[Z0om›3‰ˆU+À=óCwJŸÆ˜(c h[H°&b êØŒwÑö+ó´¦ ‰’98±Úø²¼ _D+Òò*?Ä8?ÿ‡yØ„%B">v;UïÔDg­b‹j—gÅõ0Çc… ¶'*[‹Ï=ð_çs9‹¡=bô¯°¢ª¿ŸK ^së›ø¨îuéÏ­A_ÅSkVVj½^2Ý42Gì6ú#c°AbDůîw,=ÑŽIÌ)ÜDÇiWÛÊ5ªõšÅµŒ¥½½XçÉ…a¹†ã_a‰7â@:ªnF¢1¸ûWKÆø˜#)c“̓,Ë„°)¨ð7–Ééœk{ƒJ`¤öc½ƒv-Z\ÑlwyRúuAQ+B‰áE ¨jDd†!sǤñâW¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bpöÆ¥ ªIö¯f¦Øñ截¦|¡1¶²ÇV¾J †’ zûÕL'ôÌpéc<‰m@iy]|¢±È&AÏÄ¡¤bÎ, +‡ìXNV_k‚–I‰éoN»ÛE]Û-ÃøŒ…ÀÉÕeaoäÂHpK“`¬%eY¨·cQß<¦N iêíwÝv:C&L:4¬êh‚Y•[ý‚Âqk»´ ø8|ƽ­,öñ?®«$Ën†]¥/<Í¢ÎÓÛäþÛÆ@ÙîZU™ß’%@ÊßP]ðÌ„à‡žíD¾„kžòûÞ9í³î ¤ ‘íf{&bš‡I:€òw~ ØZ%xÅJVV$€Æ©æÑéB$³"­(éňäMšbÓ±r(ùŽõv1"5oíg“¿•y-ŸÜdP •ÃQ×%—¢!þ.äÐ.XÞI#9⸹îžÑ°f5-ÁæqKÿ,@‹çú¾¬“;žšPYÞ@ïÔö™fÑ-JÝ×›%ÉTç½[9»*ô#\Ô€þå.Z¦»KÉÌ£CiÊÚg96D +h.ÉH„aU*+Íã4H|úuI“è”I­›žŸ£j…Ê)1m¦£g-\dà 0c‘©lüqcýñ{ó„wÁ&¸y é²—ˆ,ÏRdÐSsÿðPÄØÐÈ%Õx¶5gÏoà¶-5/ìWU™'ÎP[Ç…›.¼iªYá5µ|}Þ¹Hæa=%U̧ žåhÅvlie¶Æs¡ÇûÒ;”Ž#&©:ù&Û7ö4 ‚ŒØ=$ž8ãñÞTQtÁZ„œòXG +g†k,áÓDr2ý ¨Aÿôúñ}å³FN4É@‹ðÛö¾±Âðч}›4GЗA}ɧØ:_Ådà0÷l:‚zØ,ÖÔUr8©¨CÍ +Þ[TûÀBËé&ä£tû@Ò/ç.äµ4m©á®,]Xt¹L¤`Êž§ÁÈ@ˆlš½ütc-€Ùþw:`Ð<Érec‰yGñuÜ<žœÀ嶷æñ+! +C ‹m«*‘ _L8ßQa1Ñœê%ëØžì–hXæ"tÌ)YÙQÌKGx/Œl/@¨…¨YôN³âø9·q·ugüÍ5Pñí MÓ ·ÙL{zM*dÅá4T’‡È(ÙK³ÑÛJ8øÓÓbž3@®Ziݹ#KÛj.zÏOMÆŠº¾”ŠS—:¾”J–)ûaT5¾ ?­toîÏÚ_ªÆ?ö¯x]*XUþG!úÆ¡LiŸM&Y*@ThjÃÈA_5*ª,šN’¨Úùì6MÈùnLA8@QÅó›Å7hí]Ú$øÅñ¦zÍœ¾À’£’šköHÐã|å•¢#¿¾ðác¢Ÿ¥‡ŠJã&7€ðŒ¢h(¥æŠP èœy ‰Zsøû¶®WàǦ‡™ç•åšŽýµÍ¹±Øpá½ûÒ2XI‘…LFŸ˜~Ç>ÕŸ¦£ÍÖºRƒ½<õSŒ!ÿùV­¡ÓD¹Ï½lÿŒ­̨È8¹(IhqÚùÎqgMÝÒ  m¶ÀƲªiŸýNØå‡Ä*z8åáÄèé›ôNջݽNËc'´Ÿd6¯)×.ÄÖûá»m×ä©E®[™;I>-GË!õL\¢#ãŒí7Îô ÙÅÕæ|}aˆÈN`N¿ Þá#éŒ%lÞ²$Ç"2•H‡ò'‘P¶â¹€º!X¶?á4§½£Ôî'丨réºaŸÕ(l{ñD$v­*a5@£×öŒÃ¹DwćǤ5øã}æx'!}kÕóÉ.¼ûéNwÓ  +ç-]<ÂPàÙ$nâŽå'å(ãèGúZpÅñ•!})biê65`±ºôboQVÀ^oàÙY¬åÝV ‘nµô£·¤Óû’˜kš¿Y»_‚UÒÐ$Ê«ökM`s¯ó¡D²ýN#‘,É‘gâteŠ¬¬£¸ªîêÍkç1dXAF8‘u1IÔQ7÷Ó´ÉÀïÓ™b]š#§9ÇÓh>û$gÒÑ!ªv\T Æe?é}.Ý'`›rEI˜cn(+Yk£õä +ßbس̰‡@„I—ÂÅkå8lVkû™Y‘µ—ËáôvdÕc“Û(‰•; oèø Ê‘ññÔJÍ6Ë÷ À`ƒQ×u磈ú™p¥J!ƒçÜ‚ EÏ#Dôþ¸›ûì2È<Þñ€¶dÛèËÚLS8;ü_Ñ‘ÈŠ‹Žîì ü‡G‡eúIº‰eÁtêK&C"{Æsh +*KSo-«A¬“¸hÙ™ºí%9-ñ§ +dJÈñ=W¨ï(mû;)!2‰œ¢KÈ +ý½úè0eðËu>ªÎ92èU+’®d~}õh-ÝÎÖÅŠõ_ž´ëaG*Ìâ‹j18K„¦³úe1Ú`x3#ئno”ßÉXÉ“ø]»Œ5ºÝ ™•óƒ%yïúò$ õû<óŠ´ŒDƒ2¶2lY,<>“öž˜öàü%mÃE·‡ÃI?\ ToÌ/,j鶡Ü|§Q9µ°Mø†êmë±y(ÈþtÏHZj¤é<˜ÚÇÕ""Y…;¸Éð™/ù‘²_|‰2ÎÝ€ ºeÀ°02Ä5ŸÛ9(4ÎeóàUî\™$‚RÞØ)rtÑXæå™ÞY/¼QôLòÊÖ}ª7Â=þ8Òtþ¶Ì[23x–ÝA¯‡®¸Eü77¿.8Æ{ÌÓÌŒT8S;"ACd’NO9ÁJºt"K»<øµô•b‡@ÒÜJÏI°•L(gHlº—ŠRò\èö3³yÜë* KÛˆ¶ëUkR.>¾sòhU¶Fp)Ã*Óܹq<\/©Ú!“¿te}=>P>ñ†þ(´Îth”á gmF¯¶Á1w®Ù«¥ýÔ@ÄP!/ ü5ô‡w{ý·Ø„} [Ú8íe‘þ:4dN èG÷ú¾5Q¨?ZÚé7.O·<‡škt"[|Õö’'†9ÛóØIb›uÿkøîrIŽ$7‚螧¨ –ø%€cè m¦UÏB÷ßÈŸ;ªŠÝ¢lÓ•ÌÄ'Â1± ”º1z —!þlýK¸á²½õƒ2¤DÚ0ÔÜfÝýýß©ÂûG¸šbÃÀÁQÔÊšyÀ¤Âgã¸) v .#Þ–>˜£Ì–õïí®'x¶ÝCÀ.ÿcF]¸ù˜#ô\½=#hüªnëÔï·uñÞU×ŸÏ +Éý9ç·wMÝ@i*¹9oãÀ„p¦åÍÕ +®û ±Î÷>¦ «—-æu¦Òú¼K[‘˜å­tß^^ôìÏJPáT÷<+é\?‚fº­~Š¾W¾­ýË¥àÈö‡ÎXÖ¿«¸Ú&1Ðbi ß®Õ«7 6÷^uÃJÍZ®OÖø÷ ’ˆ€)¸–BzqÌ»QààÀUɺõCä;È!¶™ÒzÔ<‘¤zX„ž¡‘K18fà¨ûÐìºI48xŠÞW{ó×G2çÑ´]û ©¾õ +Ö®ãûœç£’ÊH%{È`îBŠ«2ê|WîP!sî8Dtœ‚ïÙÿÓ_ÿþø×Çåqé¿òø™\¢âJ—Ìá×?üåŸE_Ꙭ¬ŽŽEuo—]¹«öUvç$™ýU|(ùûƒ<¥š ^$Ý€ž¨}ˆ²«Vs^×P%«’D!óG™hÖƒü¸ûû U®wyT…ºq­o7ød>F‹Ã.ß•œXˆ¬ÓW+L#FcÐö~N7þhÔåˆ+ +¶›?+L8ûµ£Ûj*F&v‰1Ÿó½TC•R•â´*ñÓ…†tiT«Î†!ö÷…„â ë™gZŸ&“ò(A([œvÅAPÓ°8gÔ¯‚H +¤{æú‰ª"t„L¥˜aî'wÖÙÚåöÕ>±¡̼%ªžÎ>±1§×/SS/×ÒÎW5»%Éà[]2Wdöôä #ç˜Z‹T€j}:ÈTCšÇ]¿>$ö2‡¡Ôîû4ITŸ6`Ð.·êQ'wªQÂ_kI#|7QÔ‘«3WM~DòS¡ôªß°ÇPñ¥4ç°×]!lp‘V¬é9瀰Е¾ôɺž3›úƒ`(Íš›O<„oÚðÍÑ9Å´îÞMKâo¸…oKk)‚¦"±™;C +¾*%…»O÷°Ú;=a=¥1,¨;ߟ劚éuãQγRž©®SøŽBª«ž‰UóÆd$S¥ž*ÿº07÷d:»—ÌP~Ç°$Ÿ«¹ÃÛ“›á…ˆªßgÆÕ¹ù^˳¬ÊŠw?òpªšÌwuJ1È ¯æfMzx Èx6KéÒ „B,·ñתS=ß©L‚0˜P[€âò '¾ï’ùÔ²øyÏÓñc;]°èЭ’i¤ùÈ£ TÓ·éæ{N”6{îÐÿW&Y˜‰ˆOUku·ßÈ9…ŸO™kË\§ûì—.O—ö{ˆVD~9/i†©bíç}Q¶x$k¸fÞQ)*0“…ÌÌœwá¹ßy`9kþ9s^?k#s=©#g‘yìž[rÑjñ£ÚÓM¾å-mWÂ!Nõ@‚‚!±´ªi˳k«cåÿxÍÅn’ÿ*l\ÈÔ›ïtÀÓqE©<‚©uý‘a6`·£bˆƒ°ŽQÞløösážåôÏI~@œ&€kôÀì-ª%÷ˆæÄ f=ù)LÒ÷®Å Ó(…ÔÇTNà|T†ýx’Jd¼TB¿­ ÑßïëO¬‚ÃÖÍí÷ +Éh¿ôGB&[†D3þ‡‡R[º(”v¯ +gd§ûrøŽ¢è,Šë—óV“!óî¢ +·+Î@R‹Š??  ‘žC…©óX×”Ãþ(Š† E.JšÊ{ãœáоΠ«º; Ö©ÕÚ!Ñ’ ‰rIoI 1²f{ßás;3GwÙ†l„Ó¾©§V Aì$Å‹Öƒ-ñZý¶-xî89ÙÌB¨Ž“D“ E{­®ù° ¼Ý"\ºãy®i‰¨`¸Ë‡ïb­'…ä¬e'Þk|t íåºbPJ«Z› µNK˜‹Ð)y´äWõ"ÞMH¹$f£xÔ.‰ ÌòÖ— Âôý™¸„>»l&Âû[󞪤“ Šð +XýqôöзþêÖ½Éã~ÛôQ}âqÒSæròi…$U2“”ud–p08kËFSÚ"Ô2B!©Ý8N@•W—ú¯W»Ì¾°ÔÎTwyWùÅ%)2¢K9AyÐHå¶<<• µÇŠ 3yé& +H³"ÃóÝIô»nšË x² ¬ãdÛ[5LèZ,9õ—óIU‡ +eYÆ‘ÓŸø¯HåàšÑ$õº)áûmXzlj©/'ýduÛ5.çË¢9„xiçÏA[+X¥0o}3úro¡ÂdEwCþº[.=³³²åj¯¿ã>)1I«ǮÓËc¡Ú$:LWW‘µ=NúR“ç8Å ÷úÇÖ€­‘……YUFu9ç¡‘DÙzŠZ‡áWáÏ2Ýi ¨G…4æùDJ#ÍqÆn="6ÝÑØcŽµ€ûj¹ëng’j9õã7º½äv¤³Em"®“èÏÂJ„nHCiè ãÄ››…Qà–8“+ƒëCÔ9ŽjÕ«½TF9H»Ðba¦Ã¤ÀkÑ‘åLm:ð“ŒÔu1ʪŸE•Tµ^+à,í"±‰“1npÆa ËžÙuž“tUyå !iÜÌNp):²0Î<é”Í‹m%^"j륰¹ŽâíG§å· +.5½@¯EÉffd—+3ïm‘æŠ ÷L"TUmè2£oÈÊÏ"ªÞÀ%EÖ#ø}LŸ QçÛÎE=P'Ão§P-ÁUû­œ=FáJéàW5ç¨ý³¡Èî ¡[ìÌ0AÆ‚!Jö.—i °ûqDEQ‹Z„ +å*žÚÀ°æYæt/2Po,@%ìý¥ëÃ¥q +É<–ȃ(9†£Ô5¶¾€@÷Y Ë%žÞE…Ô:Q[eܹ™²×(b«:$D‹ ¸ìÍ:æUât«óDÉË¢½TgB|Ezq!hfˆÐéΈð"MßN(Éb¥Ð6õ¾rŠâ¶!Q5Ýšw aá²% Ntó¶Âª#Sxÿ®Å.Qáûz¸ –‹t«è@õ§ñͬæ¡DQº$àMK-£IÝô¤©'­øs9ªªÓ*°‹u"[ù™-Si»™r‚°ýóÙ1’L£¢o:ݤ?8“­Ë| Uä*íåFBT=)s)ä‘ròŠŸã­ÕõL‚ôÀ…Žuùy5ØP¯’8…%|±èvQ +/[%¿]ÞÖ¿vÈez×̶ý$9¡º&…÷“SKj_q}ùÖê‹˸݂ºîˆµ»„ ¹ù¬Ù«ÁËI£ ›?×ÿ²]®· Ã0^% l=7êþô»#UEA‹"÷(#c#¾Ù¬³õc>ÚÚžmÅS{Wˆÿ&Æå$Œ°(IÉçµ ½íìËk+œ´‹¸½X€,¬Dkž¦b'¨®¶Ñô=ÖýgVÍOEÔ,(²ü(8ú n²a†®Ìc2×FääQP<¤éžñY g çзÓQ„êWªãÂ|¬™ÃNI-O×2‰š 3Ylåõ‚¨ÅÇÌ`¸ùOXooMÿUõÉ<§Ò+Y·CIÌ_‹h¼€¶œšQq ^³äÌôÓÑÔ)Ý(o˜¬ÔÁ™÷ym=£Žù„'Pê}|¥Ç±q-»¼„Ð<é‡Ô=ÚÀQ½¨Gw$…)õ¬Ÿc—ĶETž+iIôE2V?Uín™sÎ7ì.zÖZŸž#JŠö'SЯhš_æ þ*pû þ‹\ê9—CtüŠ^ÒpÛjt±•ëY¡ïZrKâ¼o… Òýk Õ•+hixc 'œà½â­Ò+´ÅÖ–Â:lYû +ÙÓ–Úˆøò¾} 0œ¢Ü& +endstream +endobj +48 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 216 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 36 0 R +>> +/ExtGState << +/GS0 37 0 R +>> +/Font << +/C2_0 144 0 R +/T1_0 145 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒMKÃ@†ïó+Þ£^vg7û‘@ØmÁê!{‘X°…$¥è¯wôæe¾˜yßgôÕ0½õ»nB]ë{èÛÝÇñ4¡iVëZeÒ©et# 0vÒ×Ò¾Ž¤³ybæž¹ƒ„ód‘%}Îõ€ ¢—Š•‡«*b`½ò>Èí;]Ü\æ=m2m¶b§ÿ“Ú¦MwÄ¢z†ÃVöxxd<‹H²?dff(€ÞEÜ·½-y±¯™K×ü&øû­`*[U ±±Q¶€W†-†êéK€xI¨ +endstream +endobj +49 0 obj +<< +/Filter /FlateDecode +/Length 1106 +>> +stream +H‰Ü—Mo7†ïú<.¢8üZ²0Ø‘´HuöôàÚ²òaËŠí¤q}f†«hw-É« +iëÄ@H-‡ä|ÎðÓ`ôò³»Õ«Ñɵ“›ÁïƒOÝï¿Þ,Îæâà`ôêl>Åt>|y$G¯_ü:ÑŠñøhòB Ž*ìE >Ò8@㌪Š>T—ƒ¡VÚŠê\€Q>ÛQÀªJ¥¶ +œGÛëAeõ!ÏŠ“žß>»ª¦_ïNŽON´6ÇãñXð¤Z9ˆ8Vu1(u:~_ ±µ¿NßûgKî +Ê<ÒÛb"=úVLe â.ÿz/“QÌäÐà´¢˜c…?c‘'2›‰…Õn$..‰â +-,b?à› }/!ª Šó34ÔT[^Iƒã=ˆ;©³CnKÓpæñ`%}ø"M¢A§bB&Ø‚%~?E·,5ÜÊD®¡‹4µ^Ëj¥ôŸ^.Þѯ?ªßÇUÞ¤mJpM%(k"ö°®ýÕ9wœÒÆwÎ]­û·] zu–+ôq×7Üeq&òw£,ÉÝ>êi/ÉãV–Púö’V+€eÝÇ·Ðð ‚Œ:iØGÞNÈ3c›µªÔ©!ZeJi޷ȸ+>ÐQƒà“Ü‘ +£¢õK,NkA/y.£2$¦¸ÃS3¡ ”$*éoüMvDŠÉ¤àVB…äÉæª-’jÒå1‘kâ²Øƒ²,vÃQ잦ò +ÆG\%ºðÐðÅ«2ÛX²¹æ]c C#Þ œ‘{\8<ÝDZfì´7e “j¨²EQFÓö.WŠÿ®:[š–ê6ÜËØÅÒf,ƒi«ÞëR•® ùû^üx(õmÿÏM­“~‚Ë`•ÓÁw¹’¡ÙKÖ«kêÕ%bhH!};ÍL]/ÌÂ'W‡ÆóiL4Kv+ºÞ‘ éõå³æ๕k¸5Þ©!µTYˆµàîMs‚inzõoÑœÌ.4;«<]|š‘„Èþœ1&g˜·ËظŒ·Äç­Nåš}²TÉ-Ó:öØþ¤qì¹”k¹MÊ&Š· ý­·ûcë:Ø"][7qÛòjOnS_n};Oî>5õãwGýÞÄm¤Ø˜0ccŒ‘G׺¹4õ»(gº_Å¡GPýB5£R6Ì¥#|WeØuüBÌå,3‡\ìÚÏ56¿‘eNSŠþ„†][Æ¢ë÷¤¹èÞÚù1ï¯TvCC­1¶g O½¿B{•+]á= õ%[è+±GùèSÂò ß8AC_aQ–$¬J&>^XQ KÎÇhlÊÄ ßþ,0¼ýùó€K•KÀ"JÏÓõ¯- ©%w3 ERÖÖ?Kd»f·/mП‰}r¼ 'hîDÂ-nîaófø/„ +Zw$€÷+Õ¤¸§R7­Ó˜¦<¿ 04‰U½ +endstream +endobj +50 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 66 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 36 0 R +>> +/ExtGState << +/GS0 37 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥séZ虘(@)3#c=3CK C=sK…¢T®4.€¸á † +endstream +endobj +51 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 618 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 36 0 R +>> +/ExtGState << +/GS0 37 0 R +/GS1 38 0 R +>> +/Font << +/C2_0 146 0 R +/T1_0 147 0 R +/T1_1 148 0 R +/T1_2 149 0 R +/T1_3 150 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”TÉnÛ0½ë+æ(ÅU¤C@âØEÚ&jÝ‚ P½Áib²R·ùúÎÐò¦¦‹O‘œ÷gÞ0½¨›Å¬7Ðë¥!ýPý\=7P—W}ˆ.Ë(íŒ× Öãe”¾Åßù:JKùYàb9‹ +ƒ1$m´%fü¼P\CÆÅH€ã¤Ô\{ëAY.¤ÆŒ§(¾¾fåC4(£Á §ÿ”…ü²å'nA´éè[µÄ„‹qó\=–ÓMo8…yQr;JÏŒs'J !ÿ­ñ¸ÒˆËÑPÏ;å‘nWŠ6j˜ü·jÜÅ×,Ñ\A¼d†kˆ&!ž²3!ž³DqqÍ<Ï!®ðˆ;q”6ax3ü‡+–$‰,‘”³&\ܨjÌÂÿ'ZÇý** XnŽˆ©ˆåÍ1œ°m*f¬¾8)yl¿ âÎ ~!QþHhâ‰a±Z"&"VËÉ6øÄN¸§l5ÿ­n[ƒÚ¿=b9‰oH2"bæáþ8ªÔVüšÝ—ïÎê8Pƒ¿ÒDÈÝD¨®#O:­á*÷ù©Ûà<ßÓ8öG4Ž£þ-šËÂ Ü ÅÜÝ ˜ÀaFûjgBICèƒ:°“™@×c?Z=!¼)ÎQ²«Àû}öø-¦µéà }.~g¦Žž½½”ÎCµ·Áæ•çF粕s<`2ÇI@#À-zÃ’MW´@–øŽ'Ç‘Ó ù­n%¹­nÝnLÂVÝÂ(4{FÎh,MfD†³,ÕiíQ÷~:éc†“+dx8”hãéóãaE¨„• +2ǵÒ`¹ +êi4‹~ 0¯¸Zì +endstream +endobj +52 0 obj +<< +/Filter /FlateDecode +/Length 1188 +>> +stream +H‰”VmOÛHþž_1½R½Ù7¯m E* Twݵ¸Ÿ®Õ) !ငBå~ýÍË:Ø!”œY{=;óÌÌ33;|·¾¼˜L×pp0ü†'“§ÕÃF£Ãñ6F;_àoîæƒáÇ3óûÁ°±°Ð\ ¢.QÿJ]@¨K]ÅÁº(" +Ü 2«šGÍàèµþ@¥süoN†Ç7Æ«Á§Áðìv²$ '“å²Ù2ÿx¨†§~£Ú JéþV¦`@Ä +Ühãjh¦!8FVD¨ +m| Öø`Êš€ý•9•[«dZå®Ò2gÔ·æ÷ Ú_ ³¿ŒÂrË0"BÃÊP×ûéúarÝÌ~®ŽŽ1õh4VæPcvlˆºðUÕG“ÀíkÒ|Žž4Êaø³…ª´Gœð§òF[ÈVªÔ²ke#¹w©¬#µ²…®Ò;ž›*CË=¬h/`Œ'Q"-Ÿ÷ ‹ë„eØ4¦“›65 ÙKÛÉŒóÚǘ2sö rou Ù >0V|°5Ÿ`²"=Üá§@2Oû¢óý¤¸"V[bµ¤JÛšÉc­ ½L©K#Dƒæl!Ç*çØ^".C1»G\ºd|È*ËøP˜€z¥}O7 +¿£àLå­Kå,y¸Vè~çÊ–œH­ˆ +åÉÄw…¦j±YPZy¡7ª¾ì_BàÈ’hï&å½"• +´¿ÂÂ;KEÎán¦\òÆ9²È jÒHn†<@hs>Ǿ¡qS_3åˆG(hb~V¡ {_HK¢¢a?WŠéº•yeLšGp¸ñÔ +L`ƒ3çN)4dpÀÊtØÆÇ„ÏÍs®¨B`_…‡zD)Œ¥öä»DIû¶Þ¢×êLéúºÛ:)jÞr«D²„ãJØG²I äÇô´µ#ܼ⓱—p¡ñ\yœ†S iŠQâŠç#ODŸÈ“¼Ü*>Ù‰½¤ŒÚÔV¸†/0MIÙS\S«'m˜·$]ú@N¬’±©¼¶UsOeEeìTì—©º†ŽwHÀl¨˜AÖjx®[‹ÖˆAâèd·^$Ðð}¶¥ŽíÖïwë³lÕ)¬G½ÌšH–ÞíÍÈØauZS¿B·Ô¹UA„­:äe1¿(Žë9IrçÍqÔ3Å¿N“Ë¥umt8i’–ëTƒŒœ/ÊÕävêCD_×¥¯“TK‘vYÜí^´½“Ê}ºUD71{ÛRkÛ{×zÏ’ëþ‹ŽBµ…øJZ]RQ²1Ë7ÅæhÊÁÜ-ßæVBù¢õnb rG™ù­2ãuO6–¯÷ÇPWÚÄÚu™˜å{öǪß­…äcbCºGl¼ —3‰~ÈlÁÖiC§iÜ=‹^ñm°â€¦q„—<ú¨dÿšøX¥êõÌžÖJKÛnw±Óîí ëÜZv×2êåv@½Û÷J°êQpGKú¿5ÝW8U•œN³vkþ3I~Šº©P‡zéÞ$¹þ<j¹ H‡ÞTôËÈ®"O£Ê§ÉÎIXl’"^ÒP?Wßà?$‹¸ +endstream +endobj +53 0 obj +<< +/Filter /FlateDecode +/Length 1002 +>> +stream +H‰¬VÉnÛ0½û+æ¨"Y¤H-@ YP´h€õ­éÁ7…7ØY~}g†¤H;Në…²¸¼YÞ›>®Fƒ«ë  ¿¬ÇK8=~/gM—ùûs^_|¸„ÎÎÎ/éÌùhPÂ蔂’~ô0][”u§ÁÖº¨”é`´d9Ž~¬Ê¹ ¼ðÖeÕ°¦¥=ËÐ_³)êBC¶Á\ d[¸Élw1WªP²G§³Ò+™òÑ +² ð‰¶ ­%*ÃW&ðH›Šÿ.1·EýJíQÈðfˆD[òÆɬeÐY ½X3ön±eÌö„l)Z¾#Ȧh!›;S÷Þ«[Ìk†{€ æã°/•h ÙV>²˜ ‚Ù¢+'pO+Ú{TòAŠmøÞ#ªÆÅBðb˜œf0GÒŠ}i ägŸ9в±˜9]st½–ÌÜ÷!êÝ Ï_gn3Åo££DIú8B•Q9Ç‹R'ÀÄXUEÄ8cÿ#/ TÒ¸u'ÖXzMÕžšß˜Å¢v +2¬ Âj’äÂsÁ#yBÏÏv͆–ÈŠMäA^X¾ ,3ååÒßÄôß‘^[ïW“hޛЩ‰N"ö¬Ø-þ³S‚Ä…PQ6Í +‰’6‹£¥Q% ’lK £[ gÓìêD•MѨº«:úãI}GµŠî(<ïŠBs0¤.*)ˆµ«ù-¬|¾):Õ$¤8B—DdPMÅæ¾s˜#Gߧ‚.ó½_¾áM‰$ÇçÊ»µ5AKwQi_W£õuÜîhsãu5šKÇK89oôO4£ )Ò¢O±§°s¯~³× -ƒnù”⣸ Š7š–pf¼ÁZMó¬KÈàh™˜ÝéCÅ}xü”ä^Gïd,]—G$J–^Í+)–³õB®Kå@Ìqß^;w§o»Ò¡£™Ö)͸"T•»ÝñåE(AO1DVKHmì QÈa¾x¡Ëá'®u³—{öEx‹¤RÜtº€ÏhL‚û8=¥Aá¦!6X»V\ : “æ¯ãÄëæÐ\_£ÛÜ­…<ïùžÿ ¬ºuwß$%®eÄ> Ýâ kmƒÔáý›ôì^‡*«ÃÚ3¢Ï*¯½gæ£ÚûD©öÒ¡Ï%(Ó|Í™Ö{÷ädš[å;¿OÀsiàÁkˆÊÒG‡hiEn½¯_÷Ú·¼ž—F›rêZWâE›~½x½ú^pH*"™ j!-|×lð\ÇÁj÷+Á7ÝÿS}ú¢£)ÇïÏ é +3v¶á´¶ü·ÁÁ"BËßêúž3ïõ¿GK|º +endstream +endobj +54 0 obj +<< +/Filter /FlateDecode +/Length 920 +>> +stream +H‰”VMoÛ0 ½çWð¬Z²,Û@Q`mŠaÃvÙ|ÛvHÓôck“¬éZìߤ¤HŠ"ÀÙ)~<>>ªÿ8¹ì'—Ÿ/`ròu3_Áééɧùê¦ËUñþ\œ|¾ø0eáìì|†Fçý¤(eY*è_A)(ñ>ÚZ–UgÀ4Tª†þqòmú(”’ zZj˜ÎE¡ZYÃt…/µ´0Ý +eè)á(Zz{¢Oœ,øè5ÜÐ/øeí¿<‰J*˜.„¡ïhç£(Œ VUôü V‘í¾”.l¡è¹†•°²ãã6÷,:ŽWK ÝÐñ¹À¤[ +‰Æx:˜PB”y<|oZ*T+òO¦†¼m'°$x4²Â_1Uņ·Œ”rN9Ø2A¤¦'»nÉuÑ‘åxÕŽÙPC`1&k,}mð/•"Y(MçЕæôî…s´vy­Äþ8–4 KJèÈŒ%¦kei;ÒdZˆþçQÞÛ=jŠ0BA«e(˜5¿¦Ò´¥š¨VKì¸B@™(ô Wý**åšä¡ˆG&1KéåOG·ežÆ{Oy¯j:ÆO¥ðÿ?Ô†–úÅ$ÝÂw9Gr!IM¦$©BUîÄÚ3ìf¾ð™¨J2ú[ÑR2¥£(ÝÔp±™lDTáˆZJ)§~§"ÙyÔ]ûHeQ¸Q‰#ƒ³ŠvòhòuûäcŽ49UÙÈFY Æ`õ% ŽIÁ‰“ã¦;þ|V"¡Æ‡Ç+ŒöÄÑŽ¬S*Õ©Á°"ñ…±fê¢8ÐX Õ8¹ø¿î:ñÌäÃTï|n0 1õ™C"†-%™Yû"M,2!I\3*qz q³QÊ3Ó£Cs,5t™RC–>°¼*#ëÀ‰f?‡°;¸wK¸sMWÂðJáÙ[ÒjAD~ ëLýjDµ!¶7¨MbGOÿ{¯f¸:2¿ ã1D›¥/J¬òšÙñà…(¸I'- õñMÎ0!ç€d4váF/Äd»? €|·áZ°SÕ°ˆ|Ë÷#&¤ Z€kyM•kÈøîŠ,9zwi1PUÕ"òÕðút`åÓž¯éö4÷7õËfMÖ6¬¿Øõ\¿Ú!=aAÒФõëQ^´\l~-4¯¦DÕ +ÇôØÈ£ÔÈÄ[U”:=Ü®þ&4¼Ãu.v=~9Ø›ˆxÓ Z +”ÖçnÛ(³±m…›ál®oOË· þ 0ãxU +endstream +endobj +55 0 obj +<< +/Filter /FlateDecode +/Length 958 +>> +stream +H‰¤VÉnÛ0½û+æh•"’EA€fAÑ¢½´¾=8‰›¤íÀvôï;oHI”—Ä@‘ƒb.³½7o8ž-²çêäËÅÇK2–ÎÎÎ//ht>yQV4y!­©à?þø*/lSRY¸\kÞœ¾7*Ó>w4¾WY…ïT—[oèIX˜)“¬ë*÷4¾Q%¶gÄ M^Òøh¼š©ÌÉù¹Ò:¯q‘-òw¡ŒÎ‚«–Öô 2cpw¡t‘kõø,ãÍ›ÛOìl°Îß4FÞ†GZuAf|‚o<ò?Ù‘–$Ö*¬s Föoè¦ØÓ¥²ÉWUJ™Ò5‚fË%~³Á!¤®+ÉQßÒÊ|<æåXõg @#.†î‹²VFR~G¯ l93cL´ìu‰¢TGBf’3ïøèɣܽáãe@¤~L>®&£«/Ìš“oOÓžž|ž.îx7¥V™P‹3, +¿Ÿ[¶a¨[nM ¸à×Àß\B´ø‡Ó*±.\ZÐ3!tànQzÛo…×›k„ùV‰êÜb#€ž°‹îhÉû3–´ +%E•°'@™^6¼œ2 5½¡›”JL$`Uá÷*0h‰þ¨ûꈉã5¥ ¡ Œ›¶ð°TÆâÊK=—2å7½#\X«ºx¤ëúMKÇÂ]¥J2Dºl|^¸Æ¤Ps·L~eØ %J7hT×yÝÒè ­âQ$öaö$ 5h±Ê{®më=·Åj/Šf E·Õæ¾E5tꌴ‚±±y‹÷ÜÙU$|Úó¿•y†ô=¥Dñ2È£ý>ùêuЇb+^3ó›Ø1¦ $­µUò'dUÚêZÍÄzKx¸W÷3ÆqMZÆ$½Ð¥ñ&ÔÞµ+‰Ä¢“ɘfàÊÒÂ,ª«t¢…ý^f¢•·fhJ.ýºD¸03@ç`| u«[¹«Òa¨Ïí +Õš!®qp~£^×%%núÜv’É‚û„|ñÒ­k6I¬|ày{R?‚PL¬¿Ý,O¸Æ¯v NUécÀF,|‡ªï@F+ò›O6¿M6;$›. KΑåG‚mÙöž'Ð')ýßÓÉx:áAÝ` +íšî§‘(‚H’—S‘—I¸—iîôÚà€ÄÎc“χdÒ´¯«HÅ¡˜HA„% /9u#GYœÅv;´W;dß3a&´¬‹SoWõç0­/‡c™Ñ3{R„Hÿigt4 +endstream +endobj +56 0 obj +<< +/Filter /FlateDecode +/Length 972 +>> +stream +H‰”VÛn1}ÏWÌcFên×^ÛÉJ‰^„@ !ˆÔàaé%TmÓ*ªòõÌ{oÙ‚*u7ë™ã¹œ3öébrúþ˜&‡Ÿê½xqø®^-iz¹Ê^ñáûã7'Tôòåщ-&E^C‹G’ÿ…üÉcî󢬕¥Ïñ´¸›|žÖlªÜÑtÉÆäs¼ÃËL^8óx®Øš¼¢éºgãarE¿8£@Ók6óÜÓT–dá¶Áh]M‘šž³Ë­|¦kάÅn+Xy«JŒÖòRÅå§|,໡+€ÇöòónˆoÓCo÷ÍæxÞ²uˆë'›À.8«bô}ù°¤. +Í–°ÏïM¸”¯YòßÀm¦8, ¿D`ßfý€N؆\68áRCüÈý +(Ä<ùxÄè*,J +„Ðæ-}Àü¡ÁÄvɺ÷zJñ×ÅÛÉéŒ2=Fe ÔFIˆUèŽ&\ Œ Ø`”ž£ã±µëmÉ­.KZÖ#Ì':gmß=gZ£.Ÿ€‡vѺiW§©²Ôáû*¶]q|ˆ/íÛÎ'°u$sËx-iž ÏF=IJµ7mê8ÔªNKØ¥eá—*´(š=D÷Ôó:•¼Z“`£mÅ\kÂ_5~‘$"&™CF´Õ#+õëý¹d·¸T„d*¤½ ™T/®§z@®®×‡LÙФž2Ú |•¨ÕnÐH.¤| {ð¥µK£êV‚p‘#‘ª¯ëg`¼Ò]õÛó¾Jýà8Dk¦B›¶Tøù(Ãëïã7HY ½Ÿd/7¨ +u ‘+½«Cjp§Ï éÅV·ŽÔïJÛ{b†=)Ÿé &uœ‹›îPÁ E,:ztß—^åðð ³çÙe+ɹa׈K2Hæ] +--Àù¤‰4Ý/è›|ÇÛ“Èö«%œu^KuÀ—˜]v<@™8MG¹Fï }`çâa:’8jJ¯’fÿCÜ_¦ì5îcÖÍ>ˆ¥Ú+öÚ°/œäƒúÓ”ƒ\‡VíFO?“f‚òI§Î½Ì<[ÄImµÍÄ^1ë<ÿWV-+-dµ7UÜÖ=Éí Êlž—Ý=ik~ªa’lò][J €3‘ýƒ!5ÇO¹žØ¡^"NNgì´ù=¨Fæ29Bw[Š÷´ªAT–7tûÞ;‡hp<¨°ÿÎ! 3R8 ÇgooƒkÜèjõ¯¤½n»¡Îø’¤°‘É+Ø÷¢.ãäPRÞ¦Ÿ¨ÇÆéîO¿uˆÙ +Ü¡? îáp1 +endstream +endobj +57 0 obj +<< +/Filter /FlateDecode +/Length 1046 +>> +stream +H‰”W[OÛ0~ï¯8µDBì8N"M“¸ibbÒ´õm㡃R*•Rµ\Ŀ߹؎“–Ñ ‰Û9—ï|ç;Fk(ðGkhª¼([ ÆÙ\ë +&£_ã'ÕæÆð ´ÎkÏ”É Œ§*sôçV5ôxV™¶¹ƒñf¦²Š7@´ð„; ½ÜÓ†£/ËKÜ:ËÆnUYÐóYé*¯`|£,˜Aò±ËÛè|ËxlSUÓîŒÍ¯æø²”íEp„^ðÐÄ\0²Jbf·[ŠL“¿ög£‡Ô’aK­OÁÀ/6øÒ’­7¸#|ðíÑã´Q% TŒ¤Òs¾‰8bÌ Ë$÷û“ž+íØzHƒYr>ŽòÁZàÑ.qÉÑÞ +¦p†¥ÂÕï`Ež(ÃÏ#Pד¯£‹ÉèâÛŒŽ®§+øôéøjºš£÷UöåT;»<‡ÒÁçϧçxèt2*ò¢©aòJÔ2ȶyË‹ ¼¨2e“àh ÇŒRSr-ícALA_#ýIš©±¼m‚7œ“#\9'6¡‰°&p-™ç"<Šé9ãËÕÃO ÈÅJ½ùð™cùþ0+ ç± c wÇ…‡Ý’1ä3Å;Š¤«ìl7`cÈþ —ØÉÉPâ‚ .–ªƒ%°h Sβ¢52~ ¿ÑÊ1±:¿hßògœfG¥Ã)Q÷)Qéw(Q¢‡@‰Øp‹ò³_‘‘JQîiá^ç•Ã"†|¢y(ΰ˜+e4õUèæ­2Œ%d”6…oœšÖîú+aI´ç«>> +stream +H‰ÄVKSÛ0¾çWìÑšÁÂ’,Ùža8ð˜N;pjnÀ!$æцÀ´ ÿ¾»+Y–’†^z!FÝow¿ýVão£óñèüòF‡ß_& 8::¼˜,î!kù—qxyúõ JÇÇ'gxèd<*`<üóª®ÂÏ”[(Ym@5F*eŒŸFˆñ½<èÄC^ÈB±©ŒÛðT[Y˜¦UÕ²Q–ü\e"WdOB9È^D)dÏB!&È^qOK ÙJä4Mp¡¦……ÐJ6¸x_kYâÌè”õ×ðð£À³¸ñÿU´îòmÂÙ=LxOù;–a°çJ Ù ¦¢¦gDfèf®ÐínW²†l+ü;¹#³+2ëÈÌî±JA)ºØ¢YGØ0Žr˜*È{CÖ›™Õй{áüaÕ…SzP–¬-ɸ&«ÎÞƒp”§¾ eGŸJíèw…®,¹Ò†\I8|‡;áóö¢™vÉú…},)‘ÕJ—YJWe…#Ï)D7ãý8lÖf¶3Ë•²ê˜…µap}¤X;Ÿ‚’0bÈ”¬Wá8ÊXPºÝà‚æh˜I6%A8ò1§Ü¢©\¨Š²=_/² ¤*éÔ^D‘ÀÚZ:=õÛmRlÌl¯Ú„Ì î‚:Ô”ÊO"çšÈÞ1(Äæ{ä&…—fB[ò»&²l0ëbBºÉK¸ÅôïZ,Dó˜ªÈöÖç꣎¢=Õ)€fÆqñ$Œ}v:‚‡b¶ÂÒoO]_ \7œ˜ƒÏ²¯LÉ×l'Ÿ-¤íÈçYï|1–p´ÿ$,;êLæTb.ècOáØ¡Øè5õ0J+i l°4 Þˆ)f#„Åi³­QlhÙÝ­Ò$<‚‡Î´Òsø6Z‰÷B‡¼GíÈj—?-ÈxývÙ!»ôŽ¡i0Õ»ÒqaiJõSÔ ¡k‚ó»=Aý» Ô·ÍZWŸ,¥ó¥4»5ÏlhÞgK¹Ù éƒáþ¬‚èaÔÑcmyºíÔƒqÝÅÇe¶äÆlÈÀpéìØPb(O•<,püê%•†„(y¹ìM÷÷ç\Ù ùªQ)a°H{¾æª-¯9TÚ­ÄÄ ºgãñ„ÕK—Adø-‘$sýpágìV4tÃß\m®(‰ê¹Ÿ=ë™îå¶Ì(¼Ï.¯Åp8¹‡Sï5(XM?9²Ç2kI=ø~>g/5Ä@ ؿ6ÜXz˜Â$©|ù­—e»€¤g·k0¾ª5—¤öQy2gT'“tglòÜ×iI/€ø#ÀÀ+¢% +endstream +endobj +59 0 obj +<< +/Filter /FlateDecode +/Length 724 +>> +stream +H‰”UËnÛ@ ¼û+xîF+iõ‚E‹æÒ +¹4=¸¶ë¤õ ±“ _õô#­{±¤].g8œ¥Ëƒ›rps{Mƒ‹/›ñŠ.//>Ws +f+ó~È·×F”ätu5Iа„TNH~^É…6Íä5$ç()rë²Â‘‹"ëœwT.áòçYEÁ„6t@ÁKœAå^–‹D3[8 ¯ÁœSë(³q/OòQ0eSØ”‚G6Â+¡`ÅÈEÁœÆì¼Í)˜H¤> +6·lÄmiÇ®i+1Ö¨ˆAÐüN‚~È#Ç—Ð +&Ô±™q„ìcBvÝÊ­WBò;¥ çˆX š,…o´%G9àŸeÁÙñ²ˆ(ÅþN>=ÖÓ‹¢y…×Ôk™ËjÞUªråøŒ„šQnSŽC<Ÿ¡‹×ÂR«ª¼A§ú[¡RI2~È.ûGü­<˼><°Vœ¼é¨"¶Yc¨ dH`$!š¢u]Ždé:¶ò'N⯅ªÊOP[°­úÀ.Fi–Š/>B’£ËSjÓøzôé+WŽyhð¤‘Ò:io½âA‹¶‚âÙšv±'½¶–:U’Ê­ÍÙÊM‡¤ÉŠÛ–ØëßÔîjJ±µ”tÄúºÓõè ǵŔ«&Ýw´®½÷t†fçºÌýLjìlvö€ôÑ©yÒÄYa}câ¿7;¯ÕSmôîšz.Uƒ2&SZ¡{zúF?1Ú¸¦#È*ð†]†TÿèM€QÖÌ´~Få·lØ=Öì&¸Néáuòo^§ï0’q~ïAê/Žë±^MCêûòíé¼Õ©7®[à´¶T3þ”iO ;ÂþFG÷.®þNÚ™Tm?H6QÅîÙ–þ0ܪþ +endstream +endobj +60 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +61 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +62 0 obj +<< +/BaseFont /MPMXPP+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 151 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 152 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 0 250 250 0 0 0 444 +0 778 611 709 774 611 556 763 832 337 333 0 611 946 831 786 +604 0 668 525 613 778 722 1000 0 0 0 333 0 333 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500] +>> +endobj +63 0 obj +<< +/BaseFont /PTYAPJ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 153 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 154 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +64 0 obj +<< +/BaseFont /XIWLNT+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 155 0 R +/LastChar 50 +/Subtype /Type1 +/ToUnicode 156 0 R +/Type /Font +/Widths [233 0 426 0 426] +>> +endobj +65 0 obj +<< +/BaseFont /AHJJNN+MyriadPro-Regular +/Encoding 157 0 R +/FirstChar 30 +/FontDescriptor 158 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 159 0 R +/Type /Font +/Widths [523 523 212 0 0 0 0 0 0 0 0 0 0 0 207 0 +207 0 0 513 513 513 513 513 0 513 513 0 0 0 0 0 +0 0 0 612 0 580 666 492 487 0 0 0 0 0 472 0 +0 0 532 0 538 0 497 0 558 0 0 0 0 0 0 0 +0 0 0 482 569 448 564 501 292 559 555 234 0 469 236 834 +555 549 569 0 327 396 331 551 481 736 463 471 428] +>> +endobj +66 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 543 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/C2_0 160 0 R +/T1_0 161 0 R +/T1_1 162 0 R +/T1_2 163 0 R +/T1_3 164 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”SÛjÛ@}×WœG ªÕ^uchìZZl½…PŒc»NÓ¸ÈjCúõÙŽUÜ XÍÎÎÎ93{&{ß´ëålÞb0È>!»ž½l~¶/Æ#Du¤¡•uVï&W‘VÏð¸Ænï4îeWSÕ6ÊFö‹†A½¤‹õœBêg^¶0š~¿ù¨AI.Mkð…ʽËaƒ²¥¦³ïÑ@ëÒë‡è²Ž.oˆCŸ@³ŠBÈ•­*¾ŒE^(g‚2Ú¢YDË(;WSV›K¥a¦éκ rUaYP¹ÁU¸PÂæJFxÞÆ6I ñF¬’”¸äˆ­Nîêægy¼¶¨g]¥Š’ÛB…º¼ìà® ®`¸E’zåÿJŒ2²µžý°цÏ6L§OdäªDßXÈF„L1Dzoã5éÄzsü61’#½žWßé¬ô¦Âk£\I˜Ôºjq2ÿƒr(Ä&ò/a{M–ÓÜôªy[9'óy¨Ý¿Zh肵}u×2LU÷Ò–©Ð° X¡“ f©¬Å¨DCk‚†5=iÐÉVD$ÂZcÉ]tBcÒ“ÇFC +endstream +endobj +67 0 obj +<< +/Filter /FlateDecode +/Length 5342 +>> +stream +H‰¬WÛŽ·}Ÿ¯àãÈô6É&»;0 H^KØÀŠïä) +‚½ŽÖÒ^2»’,}XÞú2ÛŠŒ ^ÍLw±XuêœSG/öO7×gO⇎ފ£_ξÞz?þøòø'±z¹]Õ¢®´±þ¿McÄ~·:z}Z‹Ýãêh«þS %¶×+Wµþÿ¿¶²B)S™ÎvBÛÊZç¸]­µÜþ¶úy»úùú_tçÿ¿ýåèÕm-ŽïWÿX>œÝA¿œÝíÄúênóú¥Æú |¾éòâ ÏöñßKWõþ!ŸB ŸÏýK=g­²—}9às¸¤¸‡"øK\ûr`ÂœÎô_ôpæNôé^A¹àù[éÓló#|å{¾‡†°òßÛ¿E,ÂM“á°aÌ©­ÝFpœøÔÜ.ÔŦº@r]VáokK)K ó×Ñ)ý³Pá¼t&LJî]/Ç<üëøœP†ššO?–FQFÅÔØžI÷º§,(m p¤öÝ\¤m Dþ +¸£àBæþB-†´ÜY?ù= 5Ãä.9ô“DÜóÇ ÙÑØp"ƒDÏ‚8ãÜ?ìý$um·çÌ‘‹à$0¤M>Í7þOÀ]ë?8Ù3h€9T0¬ap´Å£—‚Óæ¤VÕZÍa³öô½%l¦¾ ¦zb„a¶L¸r‚'ÕWm´*Úžø›Ê–ªä$·P%hóóÊÀòØȱ³º#Æc1†ˆ}½€X +YcÐ%ÆÁÄù€/•÷ !ìÇJC=èú—[lxx0…l|:øû«nc€ò96Í>Ðò³D¶#®ÄH3‡×ù2Dþº–”d*à<'›ïãdž´wkii™NPqÕ—Œæù uÍG8åùÑ߯¤Å÷”´¤X‹Ð7±¥ä"ºÿ Gø/þ.^HÙ=HÇóPÔcS^š!ÿ^¤™q.dØX8ø”†èÕ0ƒ$ì$èEÛe]Ôv)*Úˆ°påq“#b½ÉÍסÈÝ@0ë9Át­®TÜUy”hŠÞm:„¦täÐeÕ Ȫø>¢à Dg?BíƱ¿ÉÍ5OäTÓî¿Ð(Q—"%\šQdëÎe.,˜°›Nئ„ϯȾµ#û„×`ñNé(ýTêŽnŸ"pÚÝRâIA¸Ò¤F%úÌqKžÍ=Zæ÷c­ŸÇZƒm3kúäèÓ/sáàÒçÔÎ䊔ô«é +‰ayg"Žx¬ xtÕ¡ô$-Ñ- œjœ)l7T¯}Š,¡5 GgX-- «—¬RÊQQ]VT_ÆEEõ|ˆ®Ä©{(ݽÔTHƒ ÊjTÏ–|éã ×r¡Ò’¨AÑ ù3]S9î%²­×`xù7iyQÀc’Ùò¶Âx3-?V“%^Zupó´3\áBMl¯='ùAÄšD:ÞxõêI“É÷e6 ÀÃë½)Gáò¡€ùé$Š}Nû)Fð å~àІ=“ÙN§@bäCâ*HûŸ¸„';@^tÕiS5ðÌm¢CS’¥¯ùä5ö’ó©§ÖÔí4õÄé°„ •/º(î ÷—,ãÅ`Ò¥EòÁNÛV]­xž­k’/Écæ, MÍÌMM;àHoÎÑy“‡Vx· ŸÀ€S;¹þ±¢±X¼\ Ìøà¨bC…ZÞzrÛ`Ýñ.ŽÚ¯—˜Qš\¶ûcpôüÿ7xùá¢l"Z¥hy‚?ˆ+äÔÖUhûÊ‹¡bP™sÓÖylD¨Œ"‡¦ØËÚÂó÷D8׉4†¬Í%tÔå´Å¯^¼!§Ã?0¸›AÛ)Α%ƒQóå‘gÏfmÊþòSÌv{Þ)¸°©Öå^%¸„7ß ·&øöÜ•bÖeåHã×!œÕ3IqÔa-Ò„f<ÞG~p4ŽtDK±Ù,ðô9.{zgî¶ñ QÀÒH—Ë–:«ž[.ÙZ/;&;ĽîÀšÁ°O´DÃ2™°v‰Ø•¥y:D;/=jüØræ﵊l|ÝhК2¯ée>ˆ3íôÀÄ•âq?ôßPÚ1€—"Ö•¸ªgqe<ç׳º›è5\éÏ#˜Ž¼à¦!`”ä¯~·0–wŠü!©ä.:“P¾2øô²ð=jÉ%A°¹~zlÑ/1áCÇv0x_. ©ËÎDÅ5"01è"rÃ@¯:æj&g²È7”ej·Fm£ ð“™Ã‘ϾŽüôŠ'fÞT,2mªF@tR¬¨GÁ“¼5ïOýØÆ¡ˆÛoñbqY¸…Ü…4Â];¡þ9LŒY° ƈݥ-Jìˆäûj܇:¨á»âÁF…Eã©ú¾M¨@cñXrD9¶ËqØÍ p‚ GPÚ!f¬x“õñ!° +±àÊí‚å¯-ÍÌò×O/™Û*èÖÍ9o”Ö ÙQ÷‚&*ïŸo«¼œE#Í#Ÿ<\ˆ"‡ä¼cÉ(À+H&þsµ¸‡}ÖÃԾ澴o­ú§¶žê‘W‚ +±4ª*àVWÚXÿßƳß~·:z}Z‹ÝãÊ/³xœKll_iÛ8‚ –ˆ«Jleoø¸Dî‘t„GOµôâ‡äwÉtvÕFþ$5Da-cŒðZßSÏH€ñŒ{ç;<'žÐH.ƒ^®ð˜sItuÎà ÔáðtŒõ€‚¶©¡í6;‘èÝŸÙOœ¹­. å Â +* ÆÅÎL{ÓxªuK¥~AE¸C¼7™#À ÿ]¼à`8%©q¶sÝ¢j?†•BÄQ +¢$I¯Ÿ +®n¹¬ØgüÛ£·Feûœ™ æÑœsì”Åe]á4rÝ +zÅ* s;öçÑ𫯠¸º4® ¼réÓè +nÇÅë’#$c‘×Y0Z”*K"¤;øü1  ` +†IgÕY6b„eÁ7.Æœ)¬±M#Ì÷ÄE„Mqð0ÐÀ‰DÕW ™{x¦]µD¿xˉ%E׋öŸ€Ñqã& ¨æ€Ø.0$ ˆ%UÁCà'ðX‚GGEáÃxþ‹ÓlÓ™Û‡äë‚÷ÁtM¦‹aCàœ 4Ë‘Ò̻듮ۮ-P²^,0và«ý"¹½üi4zÆnðg@#}Ýñ±l°v ü4X¡€›a&ý78;Zn:(_½X±[WÞlùùskg„éýÀÇa9 +ñ'€xy8JãcÆ{dâ,@­x§µ’s¸ãcnKÁáñohOœz[>PC#ÀËp¬Fú…°-E^ ±¯à²úø8Ö‹_è[x wà<ñÿÂbd~ÃQŽÒhi~u&`È¥M‚(öJP›¸=,U[Ðomæ6JÓ5^þ¢rj±‹ýÔ:Ø‹õdŒŠ‰õ‡™š‰‚붼gúûV­+¶ÒW™ø´Ï±ò¹Ì‡ºG¾ šônh·ÌØŸ¯2±‘f-ŒF&ï.ßzb>—›-øQvx•úKÐÛ;ÉÎëð¿îƒ+šÑ‡œ¯Ã¥+á2gë3;8^†H %Y¶”G4>ì{4ÒÌÓ\ljC®¼Œ©­ᢱŸ¼óÆÙÁÉøÒa+ç‚°³dÊL;Äs`N]—«é³NÓÖÜ·rƒ›ÇžœÄN:bªxGv)° øÏpúÏZ q 5h˜¡ašÄ©$ž?€ãvÒ†ölb†),EY@éý5e]±õf¡ÒwÓ j­µ™Éœ¯Õ»µô:‘xïÓ·Ò"dÞÉ%£?]2}zÞä–q¦9jÓA´«¸U!— ¶¥Á‚Aš÷×ÿÑ^e»mQôÝ_1&©$‡rÀ@PÇEQ Ec÷)OÖf»‘—ØN÷ë{·YEɔӾDŠLÎÜåÜsÏÛ†¾Êdp «ü’Ì};]× ;4YÛsSΧغÎ?üz¾>[~|wòáä¤,K{tt¤èü߆£ÎN´ahcB¬sM„q꜖Z ê°´IxŸ_§8‚£Ã9è«|+#z"ÕÖf»km"u(\kª/%〩_¼_^‹¨Ú`L¼ ba†Š…ž3âôê˜>qÒÙáqÌœœWmpBÛ]QÊ…†%_tÅžÊ[§á¼^4N|iD¯®-rB"‡¼æ™-Gï±^og˜€¼Ý£.¯1;\µ áÄsÕÈ·Rt?ënly%„ø½Rñå°XJ¶„A7³y¥×PÞ¦úþ¤?˜TbÓÈ +øýíè26C4ó%Ý6†(›iã‹:Cl-ÂGREÛ½Š*Úœ*†ZžD÷¦Bm•^Ãz=ÔÒ¢—¸a‹¤¾CåÛ¦ËVyìÝX)K »´É–‰Ù%×cVàUǶ/⡈_’ºåüòß0ËX¼š1Â"ÂÀxaÑe“ ­L~¤—Ú‚ßóXƒRµÖéKá܉n¸Þ“–:òð~‚§¹~ï ^wfZºìç{lpÓ™W¥ÍÇrÇ‘Él¶d¯‹IÃXêž¡‚É6~ +·mg“Ïàøí|×0oót?`8]lo4~ÌdJÖnF¶LËÐ6æ)Aѯ¼—Jß) ƒo´øÆ +veEc;ljjwí_&ŽÑìoË]óUŽy.S}¸Ø]}ó*}h«ÑèŠ"tYBWh¼_¢š>#€µ0’é/ê?=€0âü¹7¬ƒ«2Œ™ŒUd/¯œlu„¼ó,&Ãø0Ô\ÖpÐ8àbɱ‘Ç„c…ÛHçÇ5…8>uŸºøà—aø4Wd‡Ë}ìEÙ¾ +>z4|¢È2rªÉÏE"À‹³ÊzS1–¨šFûˆ…aµd<}ç4¯j‚Ñ͆ +ô“Iös˽hÿjD®âM˜Ô¼à›fœ9Štªš¿(LîZa¯& +Å:9¦±MÒXXÄà¡þV÷?ýrZª‹eé8­dN3ÜzÝ×SÝ·½ªKèk è¤ÖkŒ³ÂP&¸©¥pi‰W½‹s¾E6Ö$;|þ«Xˆ9¡—¹rÜäÛ›ÑÙ¥R—VŸ1­Ê¥UaVø¥ãYƒ+­µË¬êaîÊR2;céå…&B¶C€C1"ƨZIƒ— /¢Ñ1–:v\hš„Êõ.õ0=ËXYªxç㸠֦ -0]{& Χd§ÐhD¸Â{¬=eq¡Æª@ Ù:FAÕ䢠s5:'q|çœZ˜^wIêd ÙÜù9}-SI•ð£Šdûf@ø_bU˜¦KÙ 2“L‘¤ž£ÖlœÆ4ZhÚDXƒýëw ÊtÓÖ£jÀôbšQ•=Ć‹·w *)3±TªÈæ°Ú‰UQoMåú°yϵ'2W©¤‚ß¿a ›œµ†4—#ÐfÄøxòÇ ÂãX¸RŽ*ÌcôFË?bŸ&ò ü>U§X“ƒ´SžpQ¬Éimôò ŠžpóK:~´8_F’Å›ÇëKáÕv;à+Y{xmxYjšæñ[¡%»7sYŸ~‚þˆð«EQuD/!¿M¢«ãžþQLzY+Ù¤ûÏ àüF‘ A_TÔ¯zÂ:Qyèu_6÷¾¡¿¾Q›_ñâ뜻éh +1,z—K®b,¸9$û2VŸBªÚ( €ðˆ:źCZú×Dl­,C$ß ×‰ºùRª¸ËñÌžYÑø[ñ6 ñ<ÞüÛQ»¤?4Ž-…1UïfÇ0òN>Fpt=„Ò„®ºU³e4‚é%,m|.Ùf’înøà?Z;ndÕOzánüÌ:sÀ™º{/|ÙÌÝè]œq[°±8pž‘ÖÖÀ’Š”€s‹=æ– –þ@S6wãv‰‡·²3üAä–‡\\ÊV ÆÃ>U‘ ì‘,ÇcÉ–¼)!^q‚´&˜¯ý–c¥R#b7Í3.™}™žgP í´;pæDV‹“ˆû Ø'5¢[„ªõÕ@òíJYà³ð§gxÖ¤v(ðš:ÛDlPoÑK‘mlÆ«<å|­×9ì¡6vO¸W’K× Áµ'œh“|ñÙ#$úâjö‘’md*’üÝ…_‚/œö¬ñø@6û”œçûíà üËß=F,Œ›1•š_Ós×] ëƒÓƒ?wc°J18WÀj¥E0{´t }ñ7õšo0VÅÙß|<œþ~þøõ|}¶üþøîäÃÉI Ç):R') Ыc;[˜Á„Òçµfu€‰/,¸ Ö›‚ê3wûW¥;ÁüFþ «ÀÒlðºTüÚ#!²Â¿Oˆ%Üû h#Op%\J!Ð8CoµÀºî0"jÒ½WÜË<†[Ö;+ùw°O« ÷’Ém@;¡ÿŠ¦HS(¼„/¨&}…¼ioNèAeV°OYÈïp¬.™¤Z^ªˆèÚ'ñ†A‡úÃÿ*j ê9E%#ÍááÁðà …ŽF:÷éF¥n¥ÔpÃ_¿xãhôJÌ H´^Å œþè¥ðBÀe‡_£œ:%¼$ +¯xïY^„ˆ±´ØþdM¤ú¼y×9ygó¢Í´4Zu¥—O‡?DŒ¾ƒv+Ý ,+Ò4kRœÔæž×Y”””¤ÂŠ:ß0|5=aÖq­“C‘‹Z· Ê+ÇùxŠk†¿¨e%LT‡R@ †éNŒÉ-‹LÓUÞ9“!z¢â•:Æ'á‘ã‚÷×GõéãöU™arØd&˜0CþË© ¢º‘êØ$X#tÑv9WÌÃU9‡Mrhn(©\ôœeóÃ…2CîŽ!ô¯×j +endstream +endobj +68 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 575 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 60 0 R +/GS1 61 0 R +>> +/Font << +/C2_0 165 0 R +/T1_0 166 0 R +/T1_1 167 0 R +/T1_2 168 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰””ÛnÛ0 †ïý¼´€Y&u°d °PìÐ h}WCÖ4Aº5œlÅúô#Ï‹“bYolÉþ?¹|Ûn³ÉÝF£ò3”'¿V?60ŸœBvÒd¨õütÎÂÕE†ÚÃ8¸„¸¹E˜BV^\#Ì×Yyj¾ 43lîxKó$5òëY–Zˆü ùY‘öHŒ×&"/=f#ÄèÆÍCvÞdç—la˜¿gEä '1ž TA[cÁkBí}6ËÊc• õ5RŸE7Jf[¨tðÉcàbÉí*0•FôVlÞäïTaµ|©œ¶oA~¯ +Ž„|® +£#ä­Šº†|Â[Âß-A¦Š‚æ9œ©Âq’|¡ +’˜µèò¤å(ž?Êw^Ÿ¤I +^»ÄÉò¦WL;|Ê«¯â‡R'ß»÷BrW?‹©¸c”Ϙ3,VKÖdÅÉrº\©¤“ê¤Îó¿Î lÏ “Ž/H_«ZÌoÄ2+I&Ö¬Sý<rR[ókuÛ¼ï±8ÚeLý#ø&lRb“ûNûl:mƒÑ–Ü Ó9€ÚÁñ8]‡7aÀ¼ Ìj¨À¡ËqýW÷¡¯®×¤ÉÕ´§öµúÃ[חŇh¶eɱu:Éíà¥ËccÝÙÙ½H»ò +MB±&cOBcìß+–ÚNÆ0È•Pƒ Ð8ëpÙû)PÿS Jjò<玶®¶±JkÆ5Udpàà·ó0Ü +endstream +endobj +69 0 obj +<< +/Filter /FlateDecode +/Length 5709 +>> +stream +H‰¬WÛnÜÈ}×Wô£ˆ#v7Ù$Ŷµ»q`'›µ—8¤ñHëX’•É^åëS·¾ñ2â@Áb=#»»úÔ©S§N_m>_]¬Ô?œþU¾»xúúø ~üñõÙuôúü¨RÕÊØþ­k«¶×G§¿|¨Ôõîèô\ÿ«RZ_¹U /ÀíªQuß®:W;ešUÓ8xáöèØçÿ>úéüè§÷°ë`ÓkøÿüÝéÏ·•:ûzô·£Ó÷wû‹»ku¼¹+y]œ¾óöLéÊæñ(<ö ¢9s‰£ZÁ«çßaŪëù= ´«V»Fµ¦[õ}ï0 ¿-JíVZß©¯…Ö«Vo ‡Ÿ +Ý®,ÄP˜•§ê¡èá^Ç_Õ®èð…ÇBÃNêø¾ j|+îQj³rêøA]¨û¢Âg²ÑE¡›U§Ž×¼bS4øqU”¦Â=K]ã)7j»)Ê×íàn{ò›ÂÔ¸ü?á×\ˆ+>c8ìkñ>oñ^ÀïˆQÁ·$@}Rk¸‘‰KᵞCjñ‚7¼ h0ìÒá1…˜NÔ|â1g……øƒËÂõ< i亽¬s>^‡ÛÁB›=È/iè#ü+‚±–'ÞŠÞ¿SÅ?Ïÿhµ—BuJ¡•ÑÌíIÒ5@¾V-$¡ IóÝQ¾L̸fà12¸Ñïr5B¼({¾²¿ËsXh‹;IÁ ¾–H1„§Ð´!æ +³rµ‰Ñ¸ÁƒŠ°pɳQè–háðZ†b¿Áá M;ÑñÎo…[Û±ca㯨Ül%@lº—¨a $ìFX³? +C¯ñÅ•z‡˜vx|Iu¼–¿CÜ ˜°¤\N›&SžŒ2MqYc3ΫTèöní’­KT.£Î×J¾Lr³‚rïû†¹yC¨¦–Eð¾m¨n[¼èâ ¶ù)ÓMŠhÓºA ©Àé<­v”ÖQRÝž¤Bá”5ïi)gO*ÒNÒù¥°´Gòn`¸%Î<©+£´XIK®«’^c}A-@ÕT‘'Ó\h yùÆ—ñÁµúx ÏèR—Øe僢¦XUPU(><û–®Sa¬ƒ~ + ¨ptèÇöð¥6Çu>×%JÒáÇÜïFÜOéŸPâú÷™ Wݘsž÷®T‚&GNõ2Åð]“àÛIjFªÊå*ä›'ß%ìE¬Ci£Å߃ê +ƒ=qôXÏþ`LÚRZ&!Rð“°,¨dЭ’¯²Co@œ¹.\òB0.³ìŒwºp…¦QM¬½t»$¯´Æ4s·&£€7@oàxß´ù4ÊbB1fD©çyÒ‚ +ž¼) ¿CÑ›ì¢EÝå/Xœ‹:6ìä†]Gcåi1UÒ_ j·ßD«6L›=­r¬©¶Ê U ºÎ9ð ×ÛŒg%þÄ¢3OÔV¤<Í0ÙÒkOŽ”Œø\] +‚ŒÊ­ +¤Ì¹ƒ—¡¢X̽W¸ê`«š.ã dg¡pAõ¦|Ôã#ð±i“y#Ô +©Äv¦9¶‹šc0øodTñŠ‘c ¸õ*æÝhØB +Ù +ƒëÄZª_‹ºfŽN“ð•„tx=aŸlÈ·¼)èÐ_aEƒ»¾BnZŒÊYêq߉vùÀ öZ…;zys–6'w̪T0[„ÜÆ# +¨•ÍÙaÌ<=j›ŒQŠ! +“šì–=û”Ä;ÈõZ2Γø“ ‰^çR?ÁtÉ–c]k&E˜xÁvÚ´5Ê@Ò£Öq'Šá嚈Bb'µûN‡ãØžy4jüéU±¿…¨‹ßIºF¡JÁ·žŒ¼ßãõÉn’ümŽ–¨wè¤Édgç³ÁÐÀ£z0˜=}Ïô‰'ÿ>%Úvää‡Â +“N´Ä"‡ïY%Ýy§ +yŽ»¡è§þy€²ŸSåxš8#‰|S|–„mFÂä8»®è,踙ÁÍ‚'ŸoÝ^øzÔ.MÚ.søØIa'VæMb7“„$ð¦·ìé{ÏÎËgå¿‘Ä”+Jþ¡iYNÐ&·eÍ<=QÞûn*ñª\4·¾Þ²Œö«>q/ŠŒA4Ï-hÔ)6Z̸›äH?¬ ñô…ü2½,,¯–!øö¤Ê(¢Ø“n¥GÇN'¶ñyë'܈aK ¥zYûÂù=àRn81B`“'äîeƒí–Ì-´d W°dmÞtõžY¦Ö8#·Ôݲ¨Å€É—0#úûCçEyf¦ä,,íx¸Ã-5¥ÊäsšŸFÎðtˆç¬°ôæo*¥ûpJ¸“Y³Ç¼Ñì©š«QªY3FŽ«Ü;IÖeLb½¨¥– +h&iwY0OÊ7d_¿lŸ}\KƒM^ÎÓ.W5ÛÏ2©é\âîƒÜ§rFú2Ò†~ª;“ã²ÿ"çZî‡HŒá,¥SXƒÌEß!xÏq î;æ°·LÈq8=Žd'-’4X½DÇûšB×d–WªÕO%á’&-6–ƒÆHEOüúBm_ε~`ñ@$Ï×J¾Ì±fÖ84Üù¦,L'´N2Hu²¡Ñ€K“R°Z!˜éA„ ~±Z"lœPWíªÕ®QMÓ¡•ÇB•Øó;de™»­JŒX϶b¯±ø/Te'ÆKÚa`3ß0“›¨óT¾fýki.…ÎJÔõ¼)5¦­úh`BXžÎ[ÞA¬L_­ê¶Õ¬b5„2â&ÿ;4t_T,¼]¡òÞ%å2.ÛqJÔv°R%|.rÞ•‹ôXö˜›LðãgF–A§~¡r½Éð[îŒòZçû‡j«k´#-§'aX)0[c£Iïå&ŸR¦ñÐFªtzo¯iÔqžrr°Nµ3b¨>Á› ãNBÀw,O¯%{ΤÉ81!¨#êçÂج(éÍ ÔØl+Ý°újG7A³#v 4ßðƒã”ªg›ÅÊÁ›;2« þ€¨¸¬+¶Çb¨ì:7 ºža–W(î`F¯ã§6`“ê“Ì—›8X\| ˆMš +—šŠGê}6&„ŽÏ5<žy¸Ö”1ÎM´^%7²ž…9wÊ~ƒ™©J"xép•Z1áBŽ¡d|FÆdBÛ¨„ƒ–‡O¶Â«˜ÒäƒIßÏ0«#0åOEÃ]À÷£åГ­y`msÓX+¤ÍŽ~š}qGÌQ;• +ŽL#ËQsy®j6FVŒÑ?˜ê¢+Z }Ø4^Ë ,MÍ@ã¹DZúˆâÚâßVáêX{øqÿ' xý{aZù™ ãVº-JJÍ5@W½‘6N+k¦UŸŸ*ahîݵGŠÉ—,‡H£ü© ¨èà¦ä{N8àå@·C‹‚h×3rVwmâUFEeˆ('Ñ©€eÛF¢$2á¨ýI5C²aÑ"ÇÛLZ L~h¨}Å°hTø3Òc‰hA£ç²TåOÀ7g\DÝZt¸ dšèã}-è ÚC^'\!µ°ÏHËW@­ ¾ µçO¢Ç› ee,=ʾI1_öNÖ™´ìGcÞhö9šs,lú¤©¾Ì]ÎKOZõìo4½»|12eMu°Ø¸Cs¼Ñ!.ÚÁ–vp¸W÷‹‘¾/ÓVóæÙtõª·6‡r¹y¶z ÎÐä¦3æ96µÄùJ–$)2ùM:@—:@Ðfxž(…|û ­`!ÏŠ[cq_Æ‘Ií1¨pÚ˼‡·~h]ž/3ÕÚP>±Ó͘å>e:&呧äÇéu¤e¯‰ÏµX¹vꪚZa6¾ wýs5ƒÒˆJ£A˶ÕtÉ~‰'&áÁòê2,FÔfrbÝœ8C‰7ÿ'=Ù5OTÙ}½ºc7gðO2•—2'œªÖCóBbºÈГ@eàÕžö¿yXŽa½OEà +½k2Á{,U‘f¨"3é©LÖ;ýWòò ÈùQ6<’Ô‰C°I½³´¸òàœgºeù kIšæ¼(’ÉBª&øvö{‰Õ‰õ"ç|yºù¬›#®1rºN¤ÖÓ‹°h’悵Nžè‘ªP³msCã”+OtÛ‘•ˆ1à¡’ÇV!¹êÕ‡‚! ðœÒÎMu9¡‡“…ž‘Y ìŽ.#oÍŒ¥¨–¡ŠDö˜ÔˆŽ{y°ÅÉ°$¨Ô:ñÆD¤œ‚¡d>ýa꾘9ë²æo·ÍCŸ«Ï¸¬0 ð‚S©¦K–üÏ\ie݆ÜÂzo$Ã{®¦"ÿ~ þ°„k²oZkêØHäÆ­$»¼¬Ùå™å$yŸ°“P£MœmÅ{°;)ÝÇ‚¬7r\»Ù-øÔRqž2[^›â7èù­qÔ1&-¾X1ô¢œü´9nüškéJ¾D/y +‡ï)˜QTÜëƒFÛ—¢PžÂBTxälXöÏ•ÐÂg–D)&$Þ1ítgÔiIHSØr‰2P +]&ø.€%ê¹ÝXùdïkhšºÂf ãi–ói…ä¡:§:•Ik‹‡æÅïw#ß”«´@ù³í€rE’æDuVùà—` ƒOÈd('ÎÁ˜áhßSò8¥æ<ïx†^w¤:AüƒN~ù/.8î¶nÖ=2ú„ØX½ï‡9ŽV ï¬âƃÉ_ðF âÒ}˜*RÕ\N“sd<}e«|Ø(¾6Ú&*Zb¦ó¬›Î£¨×}î/{%*1~öæXAòàÛ‘6Ôµ"yvž•y®ê¶2 |ÌØÿYØv=}KÐÞ²O^Oàû9ðžÉ6*!Ö+?…œâØ”þƒ6pÒÐIÕÝñy¥EËE.;ab(¨ £XÆþ?:¯úQVãJ[%õo9Rî  Íç¿™Ý"n£>'º>u>G]Ý4( H8‘ºÏb99숌>6¯8¨„•¼v+kqMãׇ<žÅ–¦’‡f#‰.(xˆn×pZ±N7ð« kfaÆJIr©ã;åjø^w†ZÓw0¤ŽsÆb“le‹©S⟪tmâ Ú<˼«¸©?ç³Ô˜á¥ï†ÀŒ2æù 2ÁÌì“`øg’ñ‰ã ;Æä²ðÅ‹9‰ub\rôCe¦Ç.·w¡ßâãÅß­ZwÉ ©Ò +Î!™ C´’à{¬ës×i~ÇO…C;ÞXD½¼´¦‚p6Û67Ž? ó!õ{ï´ þ3– Ö¬Íè› +7æý +ü†Qùûõ¡!' ‘ô#Ò¯ˆ°¢›’aÅÿ_hW`ÍTðÐpÖ<%w:Wê–>/š—°0ñŒla*Oš‚=cbÂÕoý1½Acì©Dö?Ò–s +ˆÁù«´4&ÂTÀŠãÇG}°ô :G:‡òæ\"Ý +ä@7t³¹a†3öÁ²Ã‰÷Hi‹Ž¤(ÉÿH¢ŒÒ„$}œ¢¬5k©Å絢ǕÍɉAÑŽ!`kZŽaDw•  ÒS1ÚÁ=±®~Û‘¹KÑGçO:làseî)íhOà‰–Gö|Ç\M<›†Ð† ¥•ÛЕ1Ï€ÓRp˜]ã0Ø8ý2…€ÇA›½·Ó…–8ý1ŽΫy•Ã°¤“x5Ž€¹#«¥”ôVýæ…Ó4ãXÍ[ùðÆ +š$QúŽ½™n†N†’È “Hí㘙$¯²ú{Óœù=9Ö1!:•æ4ÇÕx^¶ƒÊwš£VðÔ9åá+cLN¸#£Â s|![Ò\—ä³”¾SŸ·PjÊ}°ª»aÑwˆ+”C¶§*ßRu‰öN“ÄžEú(úÇ™“²8=Gb¨8ìkœ,õ‘à4-GQÖ|â[HpXƒ‹íè3tÖyøwœ9|ùá§_~íÌ—cä›Ï&ÏÈ@#Pz?‚³r–2`ÃÒù`~äò#Ø#»ÍVò„ÐZ˜°= dd(ße¶ôÑ#jˆ£2l¬çÈ´¹6¯^Îü%è±Ü~ZÑñÞA«»^nÿQ¶ Hi T\Ч_  &’jä ÜýÎÏxè.&8 ¼üç“oŒºüôŸÿ.ÿ¼³4akšêrÁß3‡=Èׂì.¢‰ôøà8« ]ôt½Èÿ”yÍ ¦Š¶•M¨¼ ¼QÏNÒä”,˜¶¿¢a3ò²áS©S”ý…M0;y/K.]:°z‘›ís™!ìçqI`c‡ˆ¤kqGÆBtÀŠ½¶_¯ÒÙ{S÷®Â#g]i +é9‡œ ¸ç"=&ÒTÀ(Ø–>SÄ’À¬)&†~yK¢Ÿ´4Dßk¥ ñEÌÿLã‡×lÏÖGˆPô›±2¬ ³ï€òuP>˜ÝÕïÛ–öjéú:RDF§^kãJ$õb…³H¶ÅRÓNðæ˜ÛD +ÏAaã +b|^)·ÝמkGŽáoÛë8n‘·Ÿ®úõÀöW÷?¦DØ\Ç—É 3Ðò2/\“Kî¯üø„–”(㶓 ’Xþ܃,Æ‹ç¸ËkÀø`²#„šÏ=D +½üÉ4dYæ&|h{ÂÒÞáoô"ñî-ot‡È\ˆ×<ÅžDÏ1áqÀ9˜ß,4äYÖ¸–Ç/r¦Æ?Úïˆß“–pÌÁÓ:V0­ìæŽL~ÍjÐäXm<ºE,|oóÀE¾3e¾r ÈÔ9«¥ÐTš£Tú‚ƒd™'ìþ4¢¨mPÜß:7á#ª Ô9U”=¸ü¾…É%””Ûcn°RtìµÕç7W÷±ø·gÔz.2#”™]LÏÚÓ,ÿ0)°ßìèاÝ@tþ#t~dcÆe ú#ð(ÚñM\ö#úF ½vý$ ÜŠjèéÍ—ëgVXõIOFÿHh³d%éÛìþÿ`x`Î +endstream +endobj +70 0 obj +<< +/BaseFont /BJVERL+MyriadPro-Light +/Encoding 169 0 R +/FirstChar 29 +/FontDescriptor 170 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 171 0 R +/Type /Font +/Widths [484 542 484 219 0 0 0 0 0 0 0 265 265 0 0 174 +298 174 351 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 381 0 585 0 570 647 0 462 624 630 211 345 0 448 +778 0 671 502 0 505 464 465 626 0 820 0 0 0 0 0 +0 0 0 0 454 552 446 544 485 262 544 536 209 0 423 212 +819 536 532 552 0 295 373 309 531 452 722 429 440 403 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 174 0 0 0 500] +>> +endobj +71 0 obj +<< +/Filter /FlateDecode +/Length 4386 +>> +stream +H‰¤WÙnÛH}÷WÔ£ +ˆhÖÂ" 4Hâî ƒnÌL¢yš ŽWulË-Éq{¾~îVÅâæÈ ‚XYË]Î=÷Üã×Ûýúòôl¯~úéøïêø·Ó§ÍÃ^ýüó›“·êèÍê¨Tea]½wj{utüîc©®vGÇ+óßRµº< +E à_]TÊW¸¦j”­Šª +°àöháõê£_VG¿ü§þ ‡^ÁÿÕoÇ¿Þ–êdsôÏ£ã÷§whÃo§wWjqq·|÷Fÿþöý‰2UÛ·Gáµ_Ð 1lȲ,ʾ)ùò¨LY4¼Åv¦Õ¶÷u‹¶ýŒ[zµ(t]N-Œ^µPÿнY\ÀK8a±ÑeQ«Å½^Zü¼çÖáú%|±p¦þ¦ V-îtO÷zpÃöóq®:×ÿYý-Eä9ïC™y¼ZIÌKôýõÜ4ì¤Éœ4¶pmØÉ×ê,dCû6`_@‡ ðy£A?áuƒ†‚[¦ÂgÚ‹[úq§-­¿,y´ÅHàçêTC$<³- ~À ]÷|!Ý{ŠO</€®ÕNSˆ®åŠSxcÐ"\€_Ôç u‰öUxŠiäÝðCÎÅ£vF|d“´iÑ‚B­`CCWÀ“V-Öð…±˭>Ìf6ßbÜàÊ:¬Ü¡°v¯ 4-ï?ðÕ8s¯Ö„•J¢Øbɾên Pœé†¯ÔâÖf{ðCI»†Õ-|8šL†&„13ð mS˜Ÿ;¹ ÑÜ 0¤ÌrŦ;™9¸Ie…æx¯µ¥2aüЃ˜CÂÙ]„ÅNm$&—*E2æ]¥hc¬Ý Öʯµq9llI¨¨ÒäÃ}iðÂO ]•øè¼i Vôæk‚UÚPâ{°•Sr‹ÖÔSE΂Q¯:¶ìA¶#Ï’øO¿ËëâÙ3RM’¿3þ°M>S6çç”~R Ý–CjŒb4ÙdÌû¾×û_¬s$µôÞôu,´,tÞée-,"º…@sÎz'>…~Hš É• µ²Ý½ð§($¨'Š?À!DZºà» À½+è!Àà I 뉦¹ìÇǹj^5!EÍv=@·¡áˆ`NáÞí¨ÇP¤*Ö„ ®3®X“;ŒZ Ïª÷œ¤N©Óc‹ØØ@ê\uRL*œà‰8·Î[L*Î7ð…çJž'lø;;ð`\Õó}¯ÂûMz‚J_ýqØÑÍPàÏ!ÄXiC›ÄØLTzz 6×oóT7îG3ÒЀvßϸ +S'Ùà†þýY“ íímÏçÐ)ÞyŽGóÂÞ„ßþԔ·¡/¹ž"yð$­‰×³¡”îÜF²;GôØL»¢dwC:«¯¦xQõ’k: +ŠhïwÇ„ü9­í@߇9H…¦h NT"¹.&=›Â£vô$ɯ!³9J÷'k­nd%6œìAýI/²‘íú˜A+ú¤—’–]Ín9fºlÄ»P—,éÙÕЕ…ÁÓTs’,“è¿Â¸ä”ÓiË|ó=®bHž§t(8ƒu×à9)IëdyIŠ-vkSêËøóCc][«zvn|¬*ð>Á d§‹Ò’õ7WûÙ¾hH°7qÈ©X`6?Äi‡¬g‘‹AK~r—NR[\ÀÉîH kª±]GŽ m¹,Ð(O…hÊØ,¼@”â‹GÀì2´r»¡¥5;Ò +\Q“­4ÑVFœÎµù±y¢Â7˜ ÞMö²Ï‘M_K W ¯à‰ã&$}4ªäØ{‘;VDì»NÇÇx©ëtŽHÒH¦aJA÷ŒŽRÖMÝÃÚBª#kßkú¥!eßØ¢ Ž<Û²¡ŒkÍáûépôuYìÕ*µ´}Ä×u'JMB~&ŒD0,9·´Í÷áD,?Ö±‰2@vÚÒ‰¯ÔgÝf„ÒKbèþJ¡h*ªM +¹U£™èÞ)©˜÷Xº6ys¢i¼BÊnˆáÆõ̸XI¢¤¨yb¯YË9W\’i<ˆs8t«yèvà +@‰&×)ÊØ3ˆ¡Z¢©þ J´Ø=Á”ŒuB +ñ¨F +^c7ÜÁ&„FqÝ‹"ÃÐd@‘Ðf¢œcx­"û–ðN2[ó@%ŸlÃbR¸t¿bšdEª è„ðŒN°Q'ØYàAgBÒ é°¾£Ðz/¢ ñCM7¶bR¤¨~1,[M)£&³¿@È:ôæ`/êù öW^ìõx%D¬m…ÖÞkç˜þ×QœíÔ¨fð·$“8 YƒRàSyge})3ý!2¶lNhpU¦¨%:çFÄþ¥J£+wŸQÐ(TuPÆÆ4Q¹l6ci‡¼”˜£VYõŒ‘S;ÂSLE>MM¯TxÝ‹k#¶¦.BñÚ&ïíYÈG\Óošm51×BÄî#/sCÉŸâq÷©z‘™’æÜ^Ë©òPç7TxðU;Žžœt¢y`:ÑŽðùAñ(9"ß®­Ø‰¶2°g'3P!§­xêÍø2¾L®)Ù†eD‚^è#h°ïÑḒÈþ$Tdý6ÒË!“~ô¦;)hä4ø8#Îö÷a{:Š¹'ømG}8‡kR‘9\W‘MÙ+j ³Ñ¨˜XIYP‘_á,â:ÞáuI]ót äQpOAI‚,ç˜ë;j ÕÑ*†Wžq7Í&*›ŽÔœÉoÝŠ¥]­ž¢L¨±±Y‡ö|¥«c¦Ö"2«Ó™ ûNfmGn.ÙºkÕéƒÀÍ& +šÖx°(‰ò`ÞJ>=õÄÌŠË^  +“áÕ†¯ŸLió=Ù‹:ªÁ¤pNÌž*ÐŒ÷¥î<ИcòüAÚTDàh4eW"ýŽ-ðS[Q¬©SjZöUr™E"Bü‹oLŠUÀ®Yö¦´†g’£ßá1=^ CŸ‡‹ÙÆö®,¬«à¯÷Nm¯ŽŽß},ÕÕN¨¯Ä1ÎB†3–«@´Î*íh¾,Ô¿´ó§’u¶µÑšÕ«ÅF4î’ð€Qt\qÛÒGTǪ!¬úkQüÊ#’ÎP­4?&JôçóšlYsKíŽÄôxê–; Qv`GY;],C4±$1é^rŽÐðDeÄ4拺6wGØîä—P$ΰÒp„†‡ç×õó‹ÙS_0±ûã‹­!s•÷1ᆵД£áæ­ÈÔMœa.$ÁÁ{'ÕAŸH‡,9éœÞ:ÜÑv#ø¦™g}~!lß›~¤(ÖÙr<äð ùùYÃb"Ï6íˆgmw»Úp8Vº-yhÒ<êùÿ³^.½QÃPþ+Y‰±Ä ;ªÄ¦`Çf*Z•¾x´Uáßs_¶¯d&3eÕjfbßØçžû«¼µW¨Á;YmÇF;5 q‚†mŽª³£ ä²Î'Žîת¸NåaÚ±ÿƒ_KàÙV3àRWÀêÊ'Üo¤ÙB^sUÅ@Èá$0äTÇ^ä‘æ,þ¤%k~6®Íôz…u4ŠÔR:€"û‚ +œÍ×ORmÁ‰¢TU@ þ‘u +Æ¿³¼~G¶ŒØTÉø,FÁ»pzÉÂ8’t[¤GÅl.Lè1\BÔV•¯á‰aé²_W19°üÂå÷ÙÏÞ'uÁ4±êfîÁ&vº‰Õ¤wj››Úea§:Go7ƒ_°=@ñgû€{KŒÂóê§GœÂl8®õZõY,i`è/è scÔÓïëø<ò|o ¼i´C›Û¡óípgû„—ˆVrY3{'ï¦{½c°z8@…Cvdûa*D¸…˜Êß•N$›è–RÊ\dú Ë«½m ïñª´˜eS&oÕ~á×v1ë'± ':j3OF:-¼s¸=kž‹Ähƒü„17„g”Bnc-âCÆ1®.ÄEd>O¡•;ðƒþh«Në29FD P_<#g´À+ß µ±Ðh•9Ø,yŸÇÍ%÷õ9”ÿ…ÞÎãìSM§ð!|ó^ñ¹êüZsO ÚŸà"éØp/ÖI‰ @(xàNy¼Àê÷›œB˜në'ºuý¦ér‹‚[e{çµcïî±Ô ÇÀÀ„yg<Õ–žÚîÛ¡ýžÚêù™‘8µûK|r—¬%|2„™Ñ¨¿c~IX»–ò׋Êä¸`–³’ñTl: XÕÁQb×´qtðÕµàc\ä}ëoAûƨ?Ã=[b•®>ù]¸{Í¿È"«7ŸS¹8j­GlT"€-~b‘L'B¬-ƒpM¬>9ë‹êüâ™Ø\&€*Ë:é¼ËØi®átMŒÍÑê§lòCÇAþ97;°õÝR¢}ö°Ì‡÷«tk'd'ó©Ÿ›ÛpÂGŒ˜®Á]ßÃn#6§ñ®îz'Œµ=cmáËéFI•/q.µhxV„\팔ÆòIF˜|¡ ™fK£îÍÂr%(îr Ö)RL=O ¨)£³1ê¾gW ¡ýUx™7ÏÀ0‚Þ¯z3{ï;éÕMõV ›+ÐزY–ê%nî }tžŒ~é2j“s漓bYBÕN \Ä^JÞ:üý³²ààÕ¢¤ä¸•ªoÄ7LëÆ=‚ª‹j¢¬À?ëUÒæèS¤ÃIÔY— ãóõºÕ»ÜÜÚq‡(9ÀœöùØœ~+:%§Ÿù¦XQ ¡n*†%¨È¢nDŠD:#–´0ï;¦&Ÿ÷nfÞ§~Ò¦ÞÈ‘X`¹]q½X8i'UÙKü𡦚¯ÄýaQËâ§Íàù'Éz¡ö…5^²þ³(*Ø-:uù€íQƒ³¡m„ûl'ìlÉÕîá·P½öŸ|pÉöƒ`ç–TÂ#LºyV¸/ òX~öxWÕåúx`_pì^6À¹—ÔÃwIÑæmvPÿ<É +endstream +endobj +72 0 obj +<< +/BaseFont /CKNVPJ+MyriadPro-Bold +/Encoding 172 0 R +/FirstChar 30 +/FontDescriptor 173 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 174 0 R +/Type /Font +/Widths [322 588 202 0 0 0 0 0 0 0 0 0 0 0 260 322 +260 331 0 555 555 555 555 555 555 555 555 0 260 0 0 0 +0 0 0 656 604 595 696 534 527 682 689 285 0 0 511 846 +690 717 581 0 593 540 548 682 636 0 613 603 0 0 0 0 +0 0 0 528 598 451 596 528 341 585 586 274 0 0 275 860 +586 577 598 595 380 434 367 583 530 0 519 523 469] +>> +endobj +73 0 obj +<< +/Filter /FlateDecode +/Length 4616 +>> +stream +H‰¬WioÉýÎ_ÑÕ€9š¾æ /dIÞu¢]'H‚MRGÌˤ´²þ}êènöpHjè†Å™žîê:^Õ«:=[=>ÜGâíÛÓOâôjø²xzïÞ½¿8½÷ƒ^.òL­5bu×;ýù&wëÞé@ýž %·½"+aü+3'l]fUa ¡]æ\f½'ÿé]z—¿‚Ôo ôþ®N?Ìrq±èý­wz³ÎQ‡«áüNœLæýŸßËÓ_Ï?^U—M}^ûQAÅŠ¨<«ø»•ËrS[Qê*Ëó²F=þ Šè<«ÅI&KÊž(é@{ÿ^$ïb ûJœÜK‹Ë±”}ÁÂBÒ¾©Tî:yŠy„W~µ‘4âd(k|žŠ¡­`Ë\:<÷R)Ü«HÐŽ–(–¾®d{w +¡ê.nKUÐÅtbÚâïwP3gþ=østùA÷V‰{OÔ<ËËJ žhK.U—‚í¦Î vég©ëL“B];ƒ2ƒ*i\^¡ã@ß5˜|”}Ú>+vL8Èø¾Ö™¥9ºèNÈ>=<Ò‘£Rà ŒŠEY ©ÐEðÙeä[] ÁþŠ +*ùnRf*Ƹ>½À^‡sÙwaÁ=3ºÕ’G24N$êÀ‘ø{ƒÂ‰)}U£°[X))žR[ü}B ‘·ú!¬9^biQ\x‘ÒäxþL#-úÕ›Þ'À†^ÌZö­ÿ%—Äu±"¨ÀÉoàÄè+ë•EûV›­_AYâ܃u!µÁ[ž%¬—hDgÕnÀÊÖ¡E­¸:é§%ã€hç©h@h±µ\£"j'F¨Óàž;g…_ {áéV´ÑvOQ¬ÙUà ¨kNMx¥4ö؉ن]Š~‡U‘¬HÞÆqÑW5Ä `s° Õ|„Wª „”ï|Ã#fU¸3±–U€U‘]dè6Ç+Vd:Àî%ñÐjÂ"§Á{,î¼Þ62Üë#neÉbYÄÁëØ}¶á>."|hˆ™îÈÿÞ1:oWÑž:WûáñS™¬®sÇøIcJVÏÅ— ا”‚&¿²á±Ä‰ME‚)5.Á'pþ æTêL(Ã_|è`­b±!ÿjƒB²#,Ô*2‹BeyU¯QfŸ+‘ÞæJä´ÃèÐŽËVçáG˜£LZùšp­Ût9ƒ.ñjó„2BÀPF¹š3®@ïmH’³ÔVxßm¼`ÅÉ1c>ŸãÐHÇÊ¢îªæ<Ú§ã·7¿È(ú¸¸ÄEª#eöð±vådZˆCQŽ£JªVB¼\EV\]ž$ç%!³+@ÓFhRA«^Í$“âBÆáDÑ:ã9Ñnop[©\pˆBai”Ç$Ì¥!–í4Õ|Ñ0mí.‚…K*aPÎUEY²ÛÖà6Bù}¤>ŸÑìš©d&cÖ=é;H·MÆž{¸¦fݱa÷×)—ƒŒ6 8œˆ”F÷6óŒ$QÈpøb@ZÐê|ñWa—ŸÕ ü¥ãáÜœÃ1å ’t¬PÐ9msT*nÑfN²Á‹Ð +eC4•UCDØDÄ ¨©Vå5þ…™c£›ÅP§‚¡êÚ†à°%Žnã´ñô”FO}ÞáäoMþ†ðš£À¿€ZpÜ´w³ ÉYˆÙ'¨«¬[BÊ ds$f=œÐÁƼuÆ›jvÒ…Úq ^Âq;ò’Ö¡Ý—ÄjÛxP¡h[vÄ™`ŒôqÆ´½bŒ¶Ó«©X©S{9âL0ƧÃqÆ´½bŒVuÛ^Æ¡à€1Gœ Æà‘üØÈ´¥Æ´ËèùY,£®QFùß×X ±=Òu¡5Œ{_gk,4e! + 8J%Ϻ¶Bê9“}jÑÞÓEÿ +‹=0Å¥ ~º'â™?Ñ›ø qîÒpß9͇À ICÚ'"@sn°Û¢6÷¤gÑÉ@|$z‚Ó¿Ñn¸æÕ¤¹ó3©]R#_ðj"Ͻ¸K6q©Âij7ÿ*‰µ¯q“e}ȬxŠ¨n¤Æ?8©Æòanû|ƒR´‚¢8( +ƒ‘€ò¡èû§ç]AqUÅe”‚ò 6 öGR§$kòÕ'úä[…=Ô` hz;CÞ6ÂÎü\6mØͶ§çú÷ÐÕ¡EDäl +0!¿vÎ5Ly›ç¹y—0ùA%ªD‰(ւݦÐÛb+ÛYl}0>˜4Æϱ'Ñ@,¯ÝV\þ®öÍ¡ jŠÅ£ îÐ~•{Iù1¶Í†A¡ ‘’[ráÚ·²tºˆ-:M^ԽŽ«â[œIa¤âf”ÛM£xÆ%߶´áVÄsÐöý+7¥ï@#Íó}z”†z¾ŸºjPŽ• §ª*#\i¹‹ˆÚæöTrPSrw)Ý@˜â`-¶·×uM‰ +‡Ð´ú¨Çh‹%M‘¢Io(©âA\5¯Ió„´\27à€Ò̳ÎcU‚± ž>üÏ5Üåò¼±%’›"t©Ð¯av³*cðH.Í€$ñÉ᫇þ„‘8ïŽ2³”°5È,š jN%§CJ«Xá Ï61zKä §ô®hà ¶¾içó³$‚jÇü™#ßJánm Ä“Oþ†)/SÞêãòÖ™·[%ÄaÞL\ß&ÐÐép‹)`¯ÜžÝÙ*áf¤ò-l£iK9·;´Ê}¼gÌ>¯—› ïõ{ô:õîä·g&±1·ààËÙÒ÷†Tü™‡!´bµ]Lšm~ò9ù9“ƒ%"©F +U>¹Â6Z^‚#-ÆÐr ¹u’µ¸åß‹‹kJz½á• Õˆã1`ùiÌ8|½;’®uÚaê+,t훾b˃ °ÖW‰_‚--w7ìh7›’g-®ƒ…ÏÍðßrÿZ0“‘Ø‘˜3ýL’`ßÍáØŒ +“œ¡À½ðY”„*\æÁ¾vWÔÙÁ?Þµë%4Ò?Ô ™ü`½lŠí^/MçN¼ìöÖËäúCõr*ÓZ²†êc«8Ma¡ÆÝœ‰I…I3uÃ<iK„á_B1æR‰€úÞ嬹@d£ˆ¦¸Š +ÌÄ2ž¸1åÁ"akW蘃½ŠÎt>M½wÒïÚ¬˜WšktÒ¬@7á'­–ó-¯Ú3VXðXÆætÓ)N|Ñ ?·‰¡ˆá¡ñLÍmKƒËQ§öµ\&üÏ5@§`ŠÝc“­º$øùYteÚ!äu€|ãärß?ABgq¨Aå¼,„Íu¦lpô9ÚÊ}’ý•ûm ~—¤í?¨1€ƒÏH³°rÆñWÝQåþ)Ñþ¸‚T,HM±G¤²{Ary±¯ 5b²¿ ÅƧÕ~±ü—õ2ÙmÜÂð«ðh‘BöÂnžArH€œf9Í\4caÄì™üöéZš]\ݤt²,‘ÕKÕÿ×Wªrz…—À»„ìˈވ‘+²`ñå*P:*ktOÍ æ(ÿ…ýià®N—su®莧½ˆtlb!"†Î¯2ÿöœ%ï9ÎÒí€ UÍl¨æ:Œönßv ½-wÎ ÍŽVq/¨1SÏ0g†ûÚ…/"Ô(Ë´@r€[ÑâUÄà€iaÀ5ýð»ÚD¤©ù퀷oÆW">EøR–Ç+e'ÃT—“¼v¡~·HÞÔK’„Í—¼Qù’¯¬«±üç«Êç£Ð*ÈFé +$°Ãò°@üÄœ¦uã,t*±ÍõLÄ/›HêWØ6 h’¤ñq§MÓ¢-O!Ä:D0Ð%C˜¢kŸiÂÔþŸ©”_ÒÑå®°Ûæè4ÔÏp³Y°íÞšD,ÉGÄô%¥P3è’ 't° '>’E¡üŸ\±WsA˜°ÅM±‹é‡]!&_ ÊͦF,¿ÔO c©ž-Øï¥nù…äøâë̈êÿøó:Rã°Ø›^—‹} ´ú’D3ÐX|šú匤šIIÅCÀä¹¢ÐÜÛmQ^u~[4~ ·Ê°ÜàÃtNu-8çð O–P·“3/¡úŠÓ¶”UHp»EV¶Z”U?l¾¬l+«©›«~¾ú»Dèzd§> z‚TÅhüºIÿ“þÜ”ä­!2Öp6\ÚÖŒ¶vˆ¶Tv"A%‘ïT |G9ö´âÒ–ùÆâcïò+̪•6®«¡›xÆêźê‡]QWfÏÔ³v-–Ÿ(°kød¡ZB®G챡ΎôÌC‰¿_çÖÓC´bVnh¹G ^ Fä©Ã)é +Þ¹NóŽ'*ßÑÄÃgŠäD~_ʶÑõ’•ÓµÃDÇDÏdDy/Øæ>Ü›‚ ôB7qWîZÆ™ÚQïÙÁæñÉgÀ”[ñ ù§¡,óQx?8Ix~‡ÄŠù†¢¡"û¨Íå<\9³ ¬[ÒÚ ì +­ù5³Ã\•Ëi4Ô!˜Lá=ÛåûŽÜ´By!¹ +ZÁÀÇŸ‹ F[¢0¤™wuŸx‰ ¿èJŸd’Û J›Ã?w4½¼ÝâOÒÜ›+ÁO¯]ˆüÊkçY)]~SI†í{¸­C!‘ÐÀµ†kvÐÿjœ%îˆý~̲aÏU–B#Ëé_Ÿ>Ä36N ÞTòvBÚñ§ ¦}O߆›¯\S¨ÐV›6þÃÇ3òs8È'nÐâþÂ|ünñ …–ùG‰Óë¿Ù9iê ºØý*7hÔ¢ôÃæ»A£Ï º~*æç£üŒ/òÔc©P=\j–æÖFC\Û]¾çÕÐ ÜD8Õ )kèŽO~o`9{˜E¹ã¯?™*†#XØ‘["§ÓÔ¯¨OKÓà|‘o 9ûTp)³©øìbñõî(¾æœâ«NЦ³¥„L”§ãÃýaº4…#rbc¡Ê°›«¤4þ]“{wvî«z¯6åÞ/æ¾vEîÛRͦX~ù ­G~#Òßw”@l=¤@ïZj—Å£tÖs“.«-ÖÁSé©Q#Å°9&Çàžû\ð6'Α]0®ÊàˆÚ»}ÕÝÞ¸ð ù¢˜UÆòˆn½J2^Dô_à¿^\›8=öd7oøE+f³9)QÓIô\#‰®³g·–F­]8ü‰ºE6„Í—¨Ëf˜š¹"Ë/AÂCÌ&jät§ 0Ðò2 +ôµøʤq,ºTÇu˜ ZXÿkDÂÛqZ˜›…Äï§#4 ¸jçWR¯Ñïkgéj÷Jo×z`CšX•Æ­!Ž`‡‹~gúÅbþ66½Si¦ò™bâMâÃÃ8 6£Ai4ˆœHÎÒ¨qDÓðíÈ'òïV’ Ì•CX§³·lŒ`p«ò6 ƒ8‚Ü_ò·Ó' 86µz¯n¡÷Þ™¬è'ƒ¦­:øÂJg;>j]mƒ·ƒ°+œ->°Df­M¬¿dmŒ:=y +ƒêžM*÷ð¼F2?¡†Öê êÎ)9íÑ7£ò;Ž!‡ü+<þç?ïWZÅ$áþ/ÀŽº– +endstream +endobj +74 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +75 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +76 0 obj +<< +/BaseFont /PHSFFJ+Wingdings-Regular +/DescendantFonts 175 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 176 0 R +/Type /Font +>> +endobj +77 0 obj +<< +/Filter /FlateDecode +/Length 4623 +>> +stream +H‰¬WÛnÜ8}ï¯àcˆd^DI‚N2;›Lf6ñbâŢǗŽwÝÝžv;†÷ë·.¤D©/–lc0iK"‹Åª:§N¯7W—³³xýúè7qôiö°ºÛˆ7oÞ}x/&ïN&J¨ÜXÿ…ëùäèç¯JÌo'G'úßJhqr9)ó +ÀUî„Ö6·µ«…q¹s%,XL¦¥<ùÏ䧓ÉO¿‚Õ?Áèþ?ùtô—…V“¿O™Èkåñ_Ø'±¥RT¶Ìª…v./½™6>¯X_LLésUùf‰)¸,ˆ6œöy‘Ú0…Í‹Ž¸$Øh\‚w5¹çUÿÚÔ»R•yéËu•›Žá¸"n¾G ¦r¹O-hW÷LÄ%ñ~Í‚KLý÷ fFcfþ„¬àÝæ‚ã†Î´a1‰‡)q=ù + h7ñ™uµc“)õ¡ ¥ªríªºÝŸM©èïq!7rOshºgÀm¶7=r¬¯ºžÕ%Æ}ïe†oiîÂU7ò.Û›¹‹©J(æ4•J˜Â`ï½Ìˆ=-æ©NGÖÙö¦Gn£5”¿êz5t05#ö4·ÑºÊ«±¨ÙÞ”ÞæèëÍl‰\ûi¶œ‹éÅ2{,~}ÿñƒ0µêò.Ùý/ÂÚDÂÕL¸*Wº'g" Ý (<Þþ{€T¡Ee +¸” Pð·é±ÌbúUf6×bú»GÅô£Ìª¼Ó/23ÿ8–ÎçFLO>â+¦¿É¬Æ•Ÿ¥ÅßOò_'kØ|ûF?¿kn¤u’÷&v…—Rtº 0_]äViß¹Ìk¥”}“´”ƒN˜Ä‰Æl½ª6Ußl] 6kÍ–‰ÙÒ%^Ië˜!ã5ô;ç{ú§Ì4ø»Ô +35“ºÄç˜á›ZL×ø¾\ˆ¬1Yߥ†ÏÉ +|¿€|/3x8—RLåJ˜úµ4Ϥ1dJ¾ÞrEœc{KÎù¹˜ã‹Š¨qo0u^߀?u×Ä Ö­„jº–€*8êJØáJìþ,g?è¶ +®EôR /´¢“Œ=Áûª öJêC„žØ6Ò£—k¼¿æ Á2ƒ÷£Ÿ+| ëÖMnx;^Ä4AYJíðñV5®~;â&n$d¶€RzÝó)@)¥gvPª¡@Ù‘³ôÔoÓ¿JÊÉ*Ôܽ8çx¯úpDiâž‹ƒ-И59}´bÛDŸ'>­ÙK8mßIúÙH¢Î»4·íž!ÛÈ:Š-1Í€ˆl_4åñæ§ÊV[Á‘ èž +Ñ:\9¦Öêg×Z­YT®5°Öºf‡×š¼…6¤l*»‡(Òã±²¤ç†j5qYBD…[%¸6ìN¬óüÀôÖX)¥þô¨—¦€™œ–áÓ’:QtJ’HêÖáÁT'"±ô¶/z$VÝ„³ãÅȱ¦g ¯3ß‘ Mü¾À—JÎøpà|+€1U|ŽŒ4 +³ð +¬Cªšþ¦)-¶8PͶ-a!N§1Š‘zFɽÈÑKØô*Ax`©ÐIƒÇkÄ)!Ýá#úÔ©‚ÐÅ-·Ç6Ã`q>"ä©èA•“+J+øcoÕ;›h‘9’Q¶×ÈSTôz9¿`÷ø‚â8šª)ÓŠ®ñ l‰ó ¸Båí™Á3âÏkxDÒÜÀW"WK]tÉ›V—ü{ƒö8¤%G´ä€ºè,Ú€È0>¬1p\+”¢’‹>Z ˜Ö?‹ž¤[*|q¹ +&G¾« £žmî ¤ÚBœÒ€C9 ¥¸TêìJ£õ‰ÊY6ÚÙÄbýƒà"‘w)X>-<“4¡¦*ƒ­ÌP¡? Ö†ñqÁMÀVrµˆCõp*qø×Åüó¨ð')&X1uÍŽèbÏRLɩߦ°¼Ý.R +iÿ™=]Àß„ &4Ä ”3Ce±5Œ„‰¥ðƒ´ò?¾6qJõ FEÇÞ®t…ÈËÂ_0Næ>FJÃEµ+ˆ¤šŠ‘ŠSîïp#¸æOÀ9Ä_Àm‹îci½N>bXà퀟>Ÿ†—¬Y²-loz‹1Åk•:T¼=³ƒ‹|.Á´Ó{šQ77[ºŸõITÿ¡LSeµ=Ø%šæI5Ú÷’4®Ùfrèò‘n¹Oœ°±Ó7âcˆÓÏ–bVíמTÔPŸM*nÖADq_<ÛS×´¬°ª8Õ@KqW‡¡¥”u¡´ÅŒ€Ë®¸=,¸¹Ã])3Ô‡B‹ß«2(Ž†mR>|‘†d×ÛØ̾ XË"ý°ÁÚ5;¬nļÄLº«B’ã;óRU3ž`i Ð].âÌ´ú~ÙŸ¯XÇ&‘Y’S+D®IÚUé»'3B÷­¸—¶7¡Ÿ¤;ô«Vwg¦J¢žïï7‰šØNT[\he›cƦvû"ï ĪòM³'¯â/´.X<å>îñvU@.äK±à%4ÞÞ†å³%J`œË{xÆ )NgÆäó=|]bt†=F=c–Ê0ðħ›7Η3ž@±›vÊxx|Vç­³ôùy_D/×ÌXm$øwvŽbI3Ã8 Wã¹ÑBµ4•¿ºk'ŸÐ¨ÐÎ/ºl„.R»±š´î#¾?n<|¦àQÒF~ Yþ,3JìI*y8v¤lêÊƪ—T6‰»£ÈRV6]³ÃÉRP6ªØ ÙN²ì’Ÿh) ÞÅô‰%ÒT ¢–û‚ªNH5è˜sIE‡8ÃåÔ…µê°vF\}ÛΈ["$òz³¢ïhr†jpÁp>Ÿº¯]Z~Ü'# orßû’‡Í–q8&[D¸‹™Kv³’Á=Àîq,'·yAYQT0º< )eEÏì¤ –iµßG³©#8 d4ˆ­îc¢’^€Ï8i2¨¸3Qb˶·´@ÈšC¢ck#™ý?Ô6õÉó}më$Ì  ‰5:ï‚}UQèâï]â¨Këêt*AwЦàèâ¢ékýÓ‡Z_V<ÞÖŠ²È]ï„i朻¸H·\EnЭd,àÁŠºð+Þ‚²ŠC—jÄ}˜‚"í1ªü9§g6O§€bÇ€¡}÷ÒN1yQäÈXp©”ÎqÇ;èêÑêTnŸ„Öú Z»fG ÕEë®RINMÛQÿjO+ÚæÚOTÖkq ôÝQ×bÕ ÉÐܨ€@XÒðùvx™ÇíìÙòiªÄèƒÙëšž=cÆp­Ù ùäüC²US“ìwù­D^ð÷f7Ùe*¤Qà•h +„As]Ùãæ¡Ð hÇ Û¡‰y§F–’ $…ƒ -â< a¹Ä?“ª'`9c™ˆiý"8pZÄjxÅuû|'ú΀Q$è4ú07 M}Ñgö:2{½/Í [At+«0™Ñhµ¹ +£À*ŒjKYPƒ¾„'q¼–uh_ø¸ùŽâƒöÀ/€¿5¶*ìv~+ªšŽ] Wi§kæsš©ûúØ} æO‰ ÃÃî^°A²?I^™ò ä»fG@¾1ˆø½Ú89~›¹CÙ‹€ŸÕÜ©rÜzÆëy[q‹; 3Ì+øéUÓ""`Eã‚&ñt߶lñDË%h/r+ÎB >¢á+ŠÊ0,õy+|¨ñÃðÚªûƒH‘jO°­·‰¢Z_1wƒENRô"hG•EYÅœe•CmPÓV„ Å`]€^ŒAŠ9¤ØÊ?MÚXu)=³Ã‘bõp¤èÊîK^rü¡ÞØ;U;‡z䕤…M“bz\IbÅ‚ÿî=µÃVÔ÷ÚždB㬶ậƗ³0ø^‹R'¸µÀ¶¼‰‡àá4`*3†ÿ¶ÃI%>ÝõÚn×Æࢴ¦1!¶Ïlé³ ³_;ë1¾àŸa˜íêÎBvï®1;g7KMïíð»ØÈmÿ$€Ö5;`î³Czê`\ "ZHx®?ø@YÁX´ ÿ† ŸûK+o1éž›”ﵓÿ³^&»m#A~MÀtØÍæ + $š ™Žsš\dK¶cK‚/o?µu³I“rÓñIâÒ û¯ú뫼IÔyO7“´‹ÙÚ7ܺÒÞ`ÛfQÙâ +¿DK ”»ˆ¤¥Î¯÷‡ÙÝåâiÿqúe:…@©'“IDBAi@qQÙ …}†ü3ƒùõ§'ºjú¤_Ò¡inô‚>W™Vé&96¯RŠ· rTªBÉcR²-Ù2BÖÀ¡OŽðvõ‚:V¼üíï„C¸”]ê7–ú‡š;h=ú˜!˜‹·),1[!ïÕš¯ñ÷ +$LùkØKç ¡Œ‹PƹeÌH?¬ÞÑÓêÀQõÃö´á~hÒP? äFo#œTgÄ™a$Ú›Ià!GÒ Ë‰K"Gö¬Bš=ª_[yGT¨çƒDAž iGG6*8ˆxð$Ltø;áè 0[ÎÀq]ˆiV͵–Þ!“ÞØžÃ25:ÖѱϑêÌ¢T¨„¬F¯²ãpØÈ Ø •â7–Ù² +§¶2—k¹¶K-Å ¨.ÃûÏò¢b»§ lÐǪL_ÍŸ?œ~>C¡ZÊö’ɉKåú¬¶j)(9*‡¸Ö˜njÕº¼ =ÉŒÿ&×ý!Y8åFö;~ü^à!C’~CaJ“Óõå_x$Z^ÄYd¶¯á—¿cÆyŸ8.㊣מvDÆ•c2ÎR] Ùq[Â?1üR(¹lÎ×B‡ÑçÏ|kƒ• Ç+½–öØIåŠ*ëz…©EñL-G§>7O!Ø—+JUC)¡\×pSPn1ó`¢ÿìÎfü`+è¹>ð¬æ¶äŸv5§T::@SŸåî^×¼;E鹈®Rµ`xÆ|wÿŠ>.°§ïpÝ'Íû +Iw™1’NvkÛŽf® 7¸»ÌM‡ˆwïy1Z«\kÍÙyã÷4<ÚJŠ®;¢\Ö-:×ÅCRCŠÚƒ¿¥p#×*·¿ƒÜÞÀ汈{Bè”e@v,› r[§–̦Cô6!#õXtÊ!­qÔ"úuæL­9ùœ »…a%^Á¾`ÖSÐæ¥s%<àÓ£UÊNS%Ÿlϵ ‚fÁ-GŽ +’· °¥FÁ[§uÞRCú±©}6êÓ°L9£Ù4Ñ™è’+°?ûªÌÍ÷HrnWð£ñ‡Ïú9N¹gèÄA`Ɔ¶ô+Æz§\ŸtZzd]{YÍR ·T³<;ZÍÚÓ†W³Ü„V³¾àðVýø˜‹P°é9,çt7ÎëD-•qÏ`óࣱáÞLŠÖžå:—àñá¼peÎà4ù,&º„‚À;Žä†X¼wJ}ù ôªæó¬«A26¡EÀùŸ_ï³»ËÅÓþãôËt +òדÉ$¢ã—”E½‚tk b1`ÒªÖ^Ó(ïÑÈ&­hµáÃFÉ@ +w\œ–nNdOÔU1tÆnÁ¥ü$†'™÷®  ¹Ã`„ØÃs xmÙ?8¾ôCË°±e¸ö 9ØŠcV šþ™Ÿ$ÁV샥ώô§_ܲòÐç†ÑLsdærðÚâ¡ñÐ}b® ?êýØ^ÆÕ¬qnXsÃδánX¤¡nŸ]gCªxË#Ñ+nYÙC!h-^´.WX ýë(;fÂŽbº—‡9Õzã½$éÆåt˜LÙÚ5ÍU7ŸHǾÄõ?&‹o +€<þA‡#O¡;y6¸*O=øqL"Ü×á›·£Ñ.μ¢ãꛩ¦—O£F}šy‰ ~\‰ +¸ºÈ²»ˆ®`(¡+±B^ÄE²ÀBºyäx Š,Ì•7Û®áÞQd!ªz§>BUÓQUeâžj0O¡H×>ÛªšL…lÊ&%ÞÝcÑ¡b’ä6C>˜¡ÛRùJ`¥ ž¤,3‘À3«!ü}¨MI`šSõï +.ñ}œ—d;ÄI§?Çùwí·2Äîh שtzôàøe¤zˆIemÅÑ•ˆIà Ó¼±Š)£5íðSK×ÿ®±´ +endstream +endobj +78 0 obj +<< +/Filter /FlateDecode +/Length 6567 +>> +stream +H‰¬WÛnÛH}×Wô£X4ûJr˜\1‹ vw¢7ïb +¶Æ‰my$;‰çë·nÝlR—Hvĺ5»««Î9uêô—ÕýÕål~¯^¼8ý—:ý0{\>Ü«—/_½y­F¯¦£JU¥±þ:gÕj1:}ÿ±R‹õètªÿ¨”VÓËQ(kXÿêÒ+×Öe\PÆ—ÞXp3×Åôóèítôö7Øõ/Øtÿ§NßÝTêÍrôŸÑéÇ»Ù-Æðav»Pã‹ÛÉûWÅéo¯}£lðýxûÑÈTâ¨ÊªiÔô›ÒšWiÕø²²­SµiʶmFs6þµ°¶ j|¯Ö¯ÆÚBìãe¡?íðãua*5þ¤Î/Ô—‚\WÂ’»¢ÅǯŠ‰1¥Sã[u5ø–¿ƒµ·…†¿Ÿ +ãJ«Æ'Š xˆ±øÍ·Âjü|Q4øò?ÖøÑà «"Я'êžvöåÄãŠYanpŸÿʆ£k|Õð.¨5n+M…û­àwÔ£“€ÜSÔ!»ü*m¦fñ¹\–ﺄcC¶ù•|ÿµ0_S¤½”hJÊ-ƒŸ×˜?‡!Ï°6ð£ê6™À4‡Þâ7ªøßôŸ P{Árð€À¥ë(‘Á|k¢Š*&K®3Ñðó &—Éïy¾\ÙbÆà‡f³r+×vvˆôLÚ~b1´Ž YØ +{H9ºÞ‚—j,wƒ«ç › pÑ3xþHHUõr¸Í²!gtLÁÝ+#$~/å±wˆ‚ÖǬÊsßá9< o@ë »gè”îPëüìœñ”¸3ÑF®Ðâ)=9÷ä»wåå›nÁ‡c²Î09APÚ ¬ ƶõ ÊM† ú†ÂúKŠI|ûÎ:Q<Êé'€,‘o©>ƒ¶]ý2ìQÕgÄH›,—ø;Õ:ê-DÐ`‰Im. Ny‡•Ôu†—byÓ¬¤CY¢¬ÁV—ð®.ƒõ]áz€#x D.ßòV-¾¹Ju…}àèµÂ§COÓú Ž‘ý˹xFšžniç¶C$4Lҭ¯¶h01fRq3Iʱ¢áÊea{¤é0ž˜üQ*±Lôðç¥ÏÎ{ì‘· ŽÚÝäÐy'{ Crp£;é” ²¤ ÇYÇuwŤˆáÅ&/¢È${TÇ•JRƒkü7’)’Ê’¶ŒªvÐ wØ¥P›RgÝ00Z’,µ±a±¹þMUõÆ %gÐ1$9C2%'9—¢y‚=Mîp¾e-±DStd’‡|ø±bÆð£Qz¼n¤Ó¤$Ã!Ï2;Dé`D–ê5~CHæ„áU¡©]°t¯áw”£/‡C¬®ú fÄ|9òL"/ +*ð%ò¼Æ× 9¦âæ~u{1Ô,0|ó…®õ;SØ3…)™,^É4d¦2"«)wArÌžøŠ!´Õ«LÍÄõמ+1⇢%o£Ñé»ÅdBò2,C×ß6ÛOfý æ!ÛF;Ihà„fTM¡ààï7Ýþ<ö×͆ñÁjø,Üè~ÃÛg3Ÿþsç^‡{‡Í0sS9º’édË#!E>‹QÝtü›@Øá¼:ØbÌ{M&²ÃÉ7LLQ6½l)Ùܼ÷„’N÷æMµeäÙa"‡TÒÀ›ó!CŽ€9°£™v¯•>Œ,j-L¼Eà/„îqæCê,Mdª5 $ªMç +.ö˜›ÅÞTR… ÿ\ð\ÙcÛІ8~~gа('oÂøÍ0xDvîÞD_"¸SÅ+ÉŸçö›3Õ÷™jrO‘nu:·¥×o› +v8œì`43­šÎ•¼Ù +,¸qnÀ'ìSàbŽSãuLMKå±,”¯»k꽆RnpMzO”xâˆØ]N[ëtU—µ^…Jgï$„!æU\úø˜oІÂßõÐ%]Er›ÚˆV6nj¢¢Þ(÷Nhú3¶¯Uw†‚8u`¶Õ,Ür*Ñù»zU8ô²~&ƒz”Ô~³ëð4÷×# §nS[úK^pÒˆ{¦š?H2RRTêKÜa2߇Ã6ðz˜;–.âÁÓí<µÛ!M8³h¥ðË¥\dŽComö»G±h£a-õî5:!lLÒ äLD™u.t>€]÷æŸÛ'¬Þ˜â’bž9hÍ>žîן›´ŽXÑz‡cô‚IX "0¬ šæ…¸yJ/I¡ºä¾¢ÅS1ÁÕ’Û–EÑ´â<›8uŒ&¾æì .}Q[FB>[l8¸Lo9Òì$ØåoÅæ³qŠ;Büü‘â×µ½ Ä6ö$ ûd°¿ë2X#ƒM”ÁfŸ f±œß¢ v„ÒŽ[¡òRÈð±šñ£+ÖɃ«Òì—C¨Nâ˜lÁ;õ#Üí;ô†ºL“À ¬Ò„@ãU¬€™Ò°'HRiñ’ç€Ó6“ÂÞÔA@åÁ “—b—(b;Ñ,Xóh(Ï4Xú|†Ût'gˆþàÔIp2-3AnÃÏþ Z‡œt㈻9©9Û”þ’âÕÄÐnÒL‚*e6, =B÷ÚÝSQTxã >'gG)Èê=a;¶¯!^HçŠ(š'ñ‡GèºT‹‹Láéûák`ÓÔ,N\p¨#SH‡<”Ìk`óÚÛ³K`•¹HžÕ\wÅÕÖy®–@[Qwžå®âhghã dû\éZû´É­Ýg »®œí1Òˆrj˜_w+g È Fäü!Z|l¼RXÅK¢—!2.­eY%7Ô!mBh¹=¼pÛ]'^«òr-€FŸcM ¿Vnp¥gx>aÞe˜'1Ü6°Ø’þ´¸ð†DÐöäÒ˜É;µ i¨"²,ˆ +:ÙÍŠ )TÀ&‹Œä.1ÓÞZõàસ¾Â‰ÝèJàÚ¦¬ 4/ÁxR +ïÜòÄá‚›ÿpÊHð­ÛlʘÓ|#ÒÞâ›+¸ìWœhôMKv¥È{n-_~ÙÃñZ1ÒW{ÂE:B|ÂO3p.¸ä“¡zŸ õw=B†š#dÉ5Ä7»e(‹ålüº€á‘€^±­ð–ÀÔü÷Ÿ†œ8(|<-ê„ÖR›N•[ÑL9ií¼¡v8¸žínë7l÷ßÔvp­gI‘¶_ÃRöHQ—ãìªkn®:`ŽD0 ÓYˆ õUzmnÃ\I ƒ‚å#dV³–or²aµeÙ‰:*¶4»'EÝJëp[½šËNó`ºêÙ°ø”éÉU{=@׃Éçªc<€·B>o÷‘/‹ålü;‹'Õ~âBÔP(t#geä°†%4,ÓCYÖ‡×e{‹ßJ'ÇWµú,:!{Àé²ÌŸ +C¶'Gm7BÓ±›]Éæ×toMp¥²à>Ü9ܦ±y ½˜Vá(ZÍãRÞFçó«A²š‚_‹q·¹qGrrÓÛNO\øÞ«¬7näÿ>Š€9`wóh‹ 6k$0 @ 6°°,YR,Û‚Ž•½¿>uuwu“‘QÍhfØGÕWß1ì§î¥ã䆘€öSlœòUwŒÓ°cœ:ñžôf}œÔYÞüÚ‡b‚;m “àBŽÐu‚ÍÍ·ÏP»[žîå3´S’¾`p”RÅôvEeihƒý÷z—&¤¡3¥ëx{Çuù8í– ÿR|cNú¯ð=Ãw¾êv|›v¾ ~Û÷:Ë»“Ô qàp+yq0QC)ã<<’&JÅ7&ú³{FÊ6’tÄO?nn˜1Ûg`è-nðòH.…L åÞQÚùóÄ_†_CN»¯9_è hIQ?¨OZ>@‚ø×ä +?àN4e&ä™-çhç¤p|VJ4ÈŸ0ñ—WÐD>h=âWgÁ‡êxráó,ðÿn÷¿î¡ ¶hÂzºIË©Ck%û?c§uÇK(ZÍ'I]%5ç&Š ¥úDY”皢Ðëíê_èü\ ö£ßíüÌpÄù«îp~ãç×wâüðͪóÓgywò7(y' Æ]ùpŽóÌi-ÃT,»ø‰¦oñÍõíö¶ø#þî` ;¹Ç`ƒÞºâ¬¯«·8}ˆÁç1Ù™ªñ †/ +Z"Aš²Ä•Í$éeÌ#N¯‡´nÙ0ïãž<ÝÄѷ̬–ö\“2Ù3ÒBEâfÕNB)¢”ØzmHç$V½?©{C¥lž«3ñÏóþÿ¾^Ò±í¨˜2{€àÌa!ëà1d¬Á-güßh#"';ï`³ï«',»S|ÈRg°!Ž˜÷G•ä”Ö*׬i¬ +<ü?|I«E6A—é¼Zpâ|‘9>¡Êä6¤“Å/œÇf,Áu;<ìo¨$Œh8h4Õ)A w·ct7r°$c?FîVLض’b@go#(PÓFéa¿ªi‹†¿/Ú(y" fû5ð‹—‰ç ‚ )DFæ;Ca[©àS™ ˆ Ò6afyÿ€Æ–ö•ë33aÁƒ¦äÁB]<õ‰Có(žÁ~D’vgÞD®6ó¦÷P§Q̇G¢$¿ëÊ:1nÎjòf|©‡02yò˜ìŠZ¨zD‘²sÁ¹Å ‹Ä!æ®çßÆémHŸÌyÝ.Ü21ú3ÜŸx†³ìqÎJ\H¡•(~·pd…(/ÁV"&râø”HF…ÅÅ7s“»Í«F"z‹×öaÀæòҮɋó7ìd’cH)«”&Ÿi)±ViK‘Yhª¥Lõ(Óõ1¬uµ³Uɽ <ÈÇ0êÔSŠÒðÙéð³[…2±U ‹)‡ÅŠžá%lÂáJå¤M°—H—¨Ž¥CÓfŸ°¸œü*ÆQyÎYÆŠº@#رÎœâšùJ1/ÇNÞˆ=AHRG:ìˆJhóè,·â“ïKf/?VTHmbIA A1vUEÚë¢_÷Uœ÷/gúÔ^ôŸÅbÏ8/Áb¶·C ËÂÔJûÁÚÚõö?SQSTÔkÏcA^Ñø p~\—…¹¢1èq¨!(GÌB¥û˜Ï '¢¨õyhÄVm/qŸçÕƒuA$¼»KŒ­-ÅÖ_ío'jÀT½*ÛMÑÕýÔ¶­ûùôßÛvÔÎaU߃œºrUßm^uÌïƒ`©>ãE ]äôÔð=Ъ¶äYÀ%‚ =oÀÔYÞ¼ýZw=£Ûy†3쇒.Ä äDPè è&õû®v=ó?è")D7r µäö+ÁÊyÝýüÀ^öj9nyGèúXÛ‰Ejs«½* BÚr ÚÉå@8Xã§âþ¯AÙ(F£Æ³²*/kK/«!¾@¥ %Úçß×äã!)ÌJÖmÈ8á4Ð\>¥¹â|zœ:5€ÉÉŽl6a)&Á„ÑÂOþ@ Û•tÐ+ÖstŠ÷ÖÚÚ³EOž}s“¦uÊë&hpƺ#'M½q4\[XìUAu²Øè—¨‰s6dƒÓb³`TPðú ^-¬˜g¼;êA‡–ø‰>–òº·n%_"ï´‘ 4Ïmký 6p+ÔP +ª(3Aóı§„Cf¢ϼ¦ÄEîøTŒ[u™¡Tÿò2Ã.æŠHæü^°~~/ªe±¿aÖÓlIôdæ!d)‚ÔtµY¢­Ó‚“#%z&°ÈÖ ©Žü½l3Z´õóxÇWü¡A—ÃÃ5À×>#C›û¶Äctà*$¸íTC løê©»)ë GƒÅ›ˆT¯Í°[ÈHuåîÞ¸n \í€î^ÀtÈškÎNZSõªsÓÓ ž3ê6 ÔæÀe&Ú¯¢$dÇ ”þ·„ŸQ”Éă\1ç5“ + ³Ýã Ï´±øŽè(Ds„–ÓŒ²íâ>áêB›TtæäKzÐdã¹!<ß„ùðçD¨ýQß^8ƒíøîr†³+4“U#ÍX(KÀôý&ó0ÁÉg½– ]b¡<Þ7®l;“~-¡+ð/ö„~rPStémÈâ +&=ÀŸÄí@è—`ŸmO@ÕSâ6¬‰`¶1÷ø s‡î·È¾_¢tHQÏ¿?«“ÕÔÅê伶£W +UA“ +Gþ+úqøÿ}]÷´Ã«øÑá …!/½†¢Ñ+M1/¯‰§r*ê}ZJ&ÊÇË*)*–ábák*×@8|5wlsñ¸à‚„œÛ2¬à`6癇R‰Ül‡[î’;Ýâwœö‚^C¿#î ï£ï’mø|‰ëJ]„ ´HwKªêÕô®Ð šøø€…Àø¶4CžP´ào×¹êîƒjKAõWû›hÁiª&@Aï‡Ê .zôŸÚ¶u?oÞQmV…¸Òº©+WõÝæU}~)„~õocè6§§†/ƒSâ8qˉ£!=€oÒ´¨£¼ƒ©%œÜ×”x…D˜Ï>›ícâ`7÷ p¿¨=›»[I ßp¤X–áÈgmà3' @z|ØñNÎ2´{ΖtëÈÆnà8ixô¾ýŠ¿#¬ßóƒ¸Å'ïQ "‚ž¥Úð|6–¨ö%»p¿a:CBé5Ž üã””£j[7%]½…ËUx˜›Ü×ÒÏQFú¥€á *ë”iŽ!ª0ÓÂuO8ü]]|³¸G²Pê[æºlwD ®-¦g‰Ü¡vݤ2Еt4w¡­êƒâ£†ˆdáÁq%AFT·QôF¬Û KÁõ‚ÏbP•¾î¬6aù>X!¶†£ë• +QéTÕºM&$¨¼µ|è¢C5þùkxþ)Z|ø´A^ŸXI®ùñù*bB,È¿þ¨°0™Ït`ÉPFòq ÆÖËšaÆ o²P&wœnZø»NáéH"Å‹MZ‘b$ž)>ò £æ†9˜É[ê¡;(„-J_±~$;ôexîâÌV‹ +Œ‡«h`Æ%jr"°• Ôu_]8›%-a´Þá6Dk PDÉeØ yùÝò½ZÅ47UÄý”t9‘Ø5™¬²{jÂÄERkøtJ‡§4¦uŸKriÓfžï Y»‰Jг&X ~)û‚û ãùå#µ‹È) +ÀEzSÁ–ùazQ[Hå>ÄŒ’ ^aC‹Dp£%Ô‚UÌø«o¸ EŽR‘NÑsl.(Y³¨18YU*ÀÚØ0“¡8¨ê%G—)JG{Â2·@j §€r 1r Š³1Ÿ)) +o ˜"•PõˆXVG ²Â˜ˆ²¥€7‡žj§ËÕ± +endstream +endobj +79 0 obj +<< +/BaseFont /MAENPP+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 177 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 178 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 0 0 348 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 696 0 650 0 536 0 0 0 348 0 0 546 884 0 726 +556 0 660 528 0 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 0 508 546 302 0 574 312 800 556 490 +528 0 378 396 340 546 508 762 462 518] +>> +endobj +80 0 obj +<< +/Filter /FlateDecode +/Length 6546 +>> +stream +H‰¤WÙnË}çWô#0ÉémÃð…·8|&;¸ %ŠÖµ,1¤lÅùúÔÒëpH –F³tWW:uÎâÅîþújuq/ž=[ü],Þ¯~Þ}¿ÏŸ¿|ýJL^.'•¨æÚ8øi­»ÍdñöC%6ûÉb©þ¨„Ë«I=oàø×ÌPÊÌMëZ¡Ýܹ^ø6™¶rùçäÍròæwXõß°èþ/ß/þò­¯ï&ÿ˜,>lW·ÃûÕíFL×·³·/åâ÷Wï^ kë,žÅ+¶mçð·í`ÓnÞTªîæUUkÜõYUUæy¶ñÉMšl“beœÞÊ­½r[¦S`ø_1Šó¸ôç™UóÊtby!ð6z€ÝCj•ÆÜšz^Õ¦ˆåãô…œÕóVL÷rfé'–az'gªš×bz!gº™+1½Æ'ðÆJÂÝ{i ÎK9k瘊¤w×ð‘Ãwoä "˜^oàã—»–°ZÃËâïï~›}XáFB¦-A¿WRY|p)»¹ö+‹é?ïð³-ÿ6.}]^ýåRq²*Ÿ'XóTÍå<)¡kDžíziz*^`¬pÊÝZìÖÒbX7œÎaÐp\Õr®à7eQi:,ì·÷xL…É^K߯¤¦´\JÕÌM¼ ÇÔx{/îð}¸Ú‰mHqù&¤Æ,~+go¯à¶ò…àuÏïá3Zæ:ÆÁìÅ +aÀ+Z|cï+uçï:AÅ„­¯…u)hçÚo©iKÎÅ‘.%!n-F—ÑUYéV.ÂÓƺÅTì8ß|FSÈT5|N% %S„Ë-DJx³ê7ñO:Cg€ÌÕY&DZ ÅÄû‹ ÙæëÎ¥÷*›ß§õh§µäôý„‚뽉)7ÏñS@´ÆV¼í¡b…8l±V„†µ¸õ‰–ÔÁ©jüìîÖúEM(ñ0èbœS:LÇk©ðÉ݉s|‰˜4ùC.@vø¾¹"ª¡äiË,¼eJo%÷Ñgúü¨‚EB§‚sWÆc`®éàºLüÅ's>bøp•R5×(û‚Þ9Þ”ˆxó 6'ë9„ͤKê{m0Ž€±åõ©hag5ñ7<‹Áüƒ2lá º¸{IMŸ\ãân­ð •kñL4:<ò ,±ñðU‚éÕ øRy×Òáà‚ºï +W`VeRÌ2HS"âr<.ô(±’«†Ædª¡«àýº…¶úÕàL¡²•½jè­<^58{Žjð¥ÆÐs¥TCËÇé{OjÜÄðÙô«Ô¬:|ºÁÁ¦°Â5ÎíÇCƃ ÃAã'm‚&Œ–ÇΟQ(\ºbN®xôŒ®µ”˜2 =5ÔM”@Ü4½ã?ïpNšœa‚]ZÏpuF[âÿBØÜ&(úëà*ö0aZ?âý"ô#`·Çïâ3ñAÑS±Ët1W¿Žb;ˆ®€Ç@솨ªæ8q’ïHE +@ñŒñ”ôàa¹’ãÈ;ØÝ £“Ȇh.i2™™ž… =«ûÒ… Esu3¾8ñÉ°¸Ÿ¦ÒÑHYcßÀ*s”¾ bÝÐý¹?-÷ 9X|ÅÞE´m$ÖÒÍáŠI†O¨IyXUøÃH«”Ö,O¾ ÔÆyÂ^\ø‘h<à‡…s9¶fb€ w‰Â¼òéǯñÅ 5o†*šÔ<²ÝiÆî È +èãpäÖ©Eg m)f”s—Ô õÉNÐ!ÿ.ôAÞTgÃÌ”’íÄ*•iy¿ €?˜ò¤uÉè¸m7³qðÓZ#v›Éâí‡Jlö“Å+ýGÅ®”ähGçê„B¥W9P£m¥á³ªªÌó‘:´vÙþqY  Ó‚ +î-ÛÚÑË–VŽª ¾âyg¹ôÇAékXújªÎYz/BÙò8>Nߨ:n[fFO‰s´: ™Ú›"š Ÿ™²=½ÎÜYÜfJC©ê#ð€a§snSĪ8ÅŒÔ&KSP¿¦¼‡p!¥­÷u2p¾Ew²¦ÁòD„Üïštád5É ;)¸à켨;êíJÖ˜[ÉÜø1ãq ÃÙå´ÊVÔ¯LÝQç êNdNDG7ÉÈÚ–d­XÌætIÉyºnò‰œŸ‰´ší0ë ©¸³xÎÃ’í‘Ž¶žtTwU f“¼…¸Låu‡¡Cί%´ò¢–³‡k|ƨ*à/z¶”Aåç£=Ç:6îW¬#±ö¡¬TTŽgùǦ>éËeÇûǦ9Ç?¶Þ”˜2‹äãô Èö°3È(Xªš²ԌК9Š{Cz(˜®=ÏØノ¶äÁ¶ØÖØ;r=´ðèr¶ƒ®«7jæ† \k¨]Õ¶º8ÚôéèyÛ•4Úô¯—šÖè^æÄ ´o8×â>teÔµ,H։ŠOˆ¶”:õQÒ:Ùà :U>öÌ22¾”{çVU§º{zÚÙÆÌt×åœï|—2bº6 üZéÒ#"ÄpÂ<Ùf£™r¤¸Fœ²P™äÊì8Dz«ˆ†i(ú¨\2;$‰ è,¥ÆžFN¼-Yœ¿˜ì¢“¥©ù·¦°U’*‰Û>ÅÝ¢¢má.NzhõD¼åɇÉÜÅg7·\“TšI‰V|JT UEè·íšøøñç„QùøÌ£žö¼ÂX”ÏŒœË ²PÖd! æÃÝà»BR˜o¼É±EöY$+yq&,µ£wˆ¦û M;EÓ¹¦ÖMSÆ%Ž'’´sÅW‚ñÑGáL¸\æÔ²øê¼u©VÉi!Úl‡[{X=ÔÚ Ìý[çlÕ êäÔö0Qa\–³OxvM^™Íå À`gî©bm]áH(þ)ÅLá$Å%.°U: FYrw“á©éÛë zšßŒè½"ª|x˹Ž`›võ»ñ˜vY:ÕÎ< ¡°ÇöÍ é$µ5,BÈðœriѧ€êmíª®ÇBÚ*PŸvp"PO~ÞœJ¡¿^ƒÓ„ßß6¾¯ÂŽ&Ó‰ñã|û_ø +We#ȹà=n„ \a‰(dxæ‰ÍïVr$€v‚åxa?BÀØÑ}“@‰êÞ£øxD²§ÿi΀x¦ô$#Á’’–U™öøÍD’Œ¾þ‡Òh´Îò¨hŸ2]jÎNÊ ïÄ5eºJ{3wY†Äñ,Ê@·ÂRðIXë'<Ù•¼êñ‰B¿¹ßÉÑ‹+yŽKÀÏ+³ÿ€AØžÖ\ s®gfUçñÀ÷ÙÏLÚvÈô+\—ð1¢#>nñÚªÔ©•I²Oû}Ëð¾Ëc_ó _²®˜óýÊ¢n +Q²ƒÒQNL3 î =Ý^Œ¡(F³s>À¿mëÍÍÅ£'/^5æâöÑ“S÷®áɦâjÓ'Lüh|gwMßSµ~išÆÿº5Yjw½rjC¹òÐn]y,ã µ×|Á YºÐë×MfH/lázBŒY„"¡úQÿôYÞœ<Ã!ŽsÅy_Ñ?V„󵺧ù Ä|í@‡Nʹµ]£]¥;ÛG†#¢]P¦§ºfÊï¢5‰.BKG³úÓ(û/q¯fF¿Ìc¤¥Á›’{ð$.jçäYSÎ{ž=j‹—7l õ©½Áo#ïÄZ`Ïû|°“i0‹·—øœnD Ŧnî²›1”ni@B ®ìéI]mI´Ýl‡ùx+&ɉК°¢.´IÌt… ³¥ŒhY!˜ã¤ò+?°nÙŽõW«cã@:ôS·k’%Ìå”~c2]è1òmGñä‡tÝ Û¡CÔI²•ûGq%PNpMXY¹Ì¼8‹.³×.s;ÎÚ ý +<èvBB*iŽ|t–;1„yˆqr:Å ™0”E˜÷å{ú²òc2üÉr15”2'E€ò˜Æ1þ^ù²bè°²CÕp$Œ‘⊾ Ç]€Ü`ÃØv«ØÖ.'eAtcçû´7Ÿ9¦Àø-ñn¹ÍfT„ì£ ñöé&ìsrè,ä.°üŵgïÚ–Ùê£ÄÏ í<±è=ŽíßELPZžZ -Ûas„ï<€¿¾èëá9?G(º]tÔYšœ>ô„5¦ršMrÀtóž"®%Á€9[0öC„í³6tÄÝŽ}ŒCì +uKçºû‡±öÝh»àäÜû~˜õ\‹K½O®xÄ£_WÖw£XˆÐ8BJ²Ð n­Do?,Ô`ÆlŸ…Ò.˜ R»U%Ï‹NJÉï¹?ª6ªÉÙwæ$ Ј8Ù|5óUØèfb‚nbƒW8jHãgã1Uyw&‡çÍú2#iaþþ½Tùs‚ú2N¶ÃdX§BNCäÄl¦Ÿ± kǃüãÆF9fEÊ©9‚Ýåãê)µüUº÷¢òTÖ›Ù>¿Cû#ïzÜôme”xMØG´O\>ŸµfÆIœý}ªþ9º%wÄ“g²Ì¿yzMÅ¿™Wb­EƒäÖ Ô:l'Zä†Ã-†”•­o¾ÉY;dz€»Â„ uÕÑ>6ÊÅøÁš<ÅLãgÃœ¿2KÜ0²cN9$±¸åxPá¤Ò=­yI­|?™r$_üῲhiPÂÜ àZïyd~ˆŸ3ZÍ×¹•KϜ΂Ü+ú“ ;§šÀ^Žó°Nn›eÖPÚl™CãÕêËm{e•Ë¶DæmWlaEàSy¶ˆa¡ˆaÝ<†ÅªÅE…9¤AGuln¡e¤èÅ/&î ­tßNÔ…[´‹,ÇpÁóÅÐTîËÝŒêœbã3š;>÷Ä=Š ¸™s,ž²Ó+æqç1ßm_[€XÕø·m½¹¹xôäÅ«Æ\Ü>zrêÞfÌë>£±pFÛkÖ]àóKÓ4þ×­ÈÔQ1- #ì‡0N—ÚÍËvåìæ ^ÅÒU^¿–› s· ߤp¶r(ôþ‘Då Š£%Ö!ç™­ÿ´e¹O}ôBau_±üud‰˜Z@”"-5<0.k=P«·@ÔàÇæöêØW·|õ†nM7¶xÛ]ß:‡;#âÆ®¸óÉÓÍd3”Þ§ÓD9®¯âÚnRRó ‡·G^0ÅC3öoMeÄ\JÎÙW´ä÷Ê[E—b¥Þ#ÛW±9êÏùá®Ò`sOÈ3Í}$%KÆ`ú>ê&’W`åMØ\à®d³b[—LúÄîrŒû ŸXgôT°ÀãTéq¦V;¹H(.:–Q•Æï&›3£†;ýH¬ÿŸŠº™è£,c§!HHÞ/Tﬨõå¼]t…y‰3r¶Ôa‚Ž ò¶ª@{ôêÿÄk’2ö¼”¥s}­"²S:lJíås§bÌNV‹oi‹ Õ“kõändž/±ʵŒ¾SaFÏ6ãZ¼ÈšM’´o†y7{‡˜=éëò3f‰ OñA`J*7§F\zùlMúlMþ/öïÖØ?’Uå<Í}Å(Qó"”ÄñI®FW45™ó¸™Ôr _ÁÒ÷ÉpE¼ð­ÎqkÊj®¨Úß«·Ã¢]±80>M? &NÌf‹£ã fËfŠ1ÎP×9ego’ÁœOOÐÕˆ=B¯k)´•ìH +€±5I¡ÌiEøú®Ad¡%„òî#–YsÅ AwêCæ"9aþ©ËÎ]Ž“Bb’$xB´s“¶Ä\ŽŽw‡ÒUtÜp:ÔKÚVm'Fïð¤l_w|}€¯Ÿ€ÏhÝ|í <6ÈaMmÿ:ÚãÅžááÆÿ`ò“—Õ&J˜ò± +‚Õ~Qj–¢˜nÃ-ÓÚ~?"ÈeW–¢Ž#û#àÛ1øUíË +ã¥yÚ¬ڄ᛽<ØB"<°HNgŽ7MNyíäQñ×ÑæÏdµ_•ÕƒÃ§s3&‡-˜Tˆy&ÇR‚Û¶ÞB¢4% ¬71 Ñ×3ï.žjMX‡‚XS2¦ùÅkAÀQ¬¦ç’R{ŽBU“‰Ž\ž|s… xÙqP?$k]ƒ•¾TžyQÔ&«EÑ‹´ÕpŸLITù.Š=›(I!4C$äîEJÅë ›)÷è©ø–ߊGΕü"` œ¼Ž ]½#óšñ*.&=Kc¸Ûnì\3eºC°þήÿo8—ý’ÕÈ~*kÒ :à]* +\Ò”ËÙê–©C÷ƒ®-9P¯«aTtõ¸$ç(Æqqòm*“Ï`P•CÄ4à½Þ¤`, +½3òLvÊö Ô¾äBt á +ÁÇR°ë ±³ôc ++ûqµZp´Z‰O-†xŠ7PSÒÐÔ %¥=Odñf„ÜûÄ’ü L‘:XÐÜiégêÂËD³½ASo4!õGL¡Þw4„”ðLVHGB%ì R©ª +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 6526 +>> +stream +H‰¼WÛŽÛF}Ÿ¯èGqØìf“\b;Éfádwa½e<÷dF3‘Ʊ'_¿uéK5Ej(X±4b³»«êÔ9§Î¾Ù>Ý^­ÏŸÔ«WgÿTgï×ÏŸžÔë×oÞ½U'oV'•ªÊÚ4ð¯µFm¯OξÿP©ëÝÉÙJÿR)­VW'®laü×–²}[vÎ:U7eÓ8Xp²è‹Õ¯'ß®N¾ývý6½†ÿWïϾ»¯Ô»‡“Ÿœ}x\oðï×›kµ¸Ü,¿Sœýøö‡wª©¸ÏÙÛ:ÛÓ™½ê5œß9ÕÖ}YU®Æ_UUe^‹C`Åa×®)+ÓÛᮽk“§QáµÃüiÎßÊDZ¬à«Vçd I^}Vº.9£ôEWmÙj×dwùyñ¯Â5¥V‹õ¶Ð-~y*´Q‹Û¢†åðó]Q;µPEm`“Åea4~® kqõyaÿþßÕ?æEäd!V+Í÷¯üÕ«ž®®ùâð°5¥î{7¸ößÔÅR;¼ÂFíàk ·|(z¼ó}¡5~^ªó¢+küÝ–Ó–õøÆU±„è:µ¸ƒ_ ÿ=/–ÊS±ìñ­‚oºÃo +Wö¸á}Qw¥U‹OðÄâbLî Kë +—Â^=®xÄ•nÿºÀ­x Ö<«xŒºRkX¯qÍ–_ŒÁÀR¼Õ…ºÆ[ás*¼Yã}à¢=žJÝÁE—ôx]ƒ¯=«-ìÐàN;HJBp"u gÔxùš_ÎV´¬Z=¨_„œÖÅú=”­Ë‚‚ZûðϹP—7øÁrT@(M›žÇH Hþ$ Çß}å¬ÿ´ŽA¦_ª `ãðãI]QuV`*$Iã…žE’ +]QI HµÅðµŠÀñÜ[, ,þû†6T—S•V öó)˜uŠˆÒãó zLD¯ð©ÅÌÒ|,tYe8h*¸ˆ–8X¨b.öÌP0«X+ÆÏ7ù¥€ª.•Êœ‡M…ŸF6ÙUj²:ÕsOùÜb;5øˆ +¯¡:D¢ÒP8( +”d­Ç6Ë*Øq™?R.üQLÂô1ÙcWøYªßú†ˆ®'liê³PᒭÉõNSHI\šá²a\2ÕgÍ—NÇ–i<Ô‡:!õ +/ÜÆ|ÖfCÉTs $j=JFçPªmÙé÷Ðä:WÚHZc…t¤+ f.rŒ/|ˆšªAÜ1“Ü_nψ-*ŸËÊ[9®sv”J•'-ºPõ÷ž¤ +bÃp+Þ±áfñ +¶ÔhÍâ Tß‹ÂÙÁõj&­x¯+fÔÈïx™°‰½àwnùØ­¢Žª)IŽq¸Ô’¡1@3TUê¯çùp«gÀM‚ḙ\ «)t-ı¶W-aFpÛSéXƒMhñçG¼Ü¿,«L…é¸Nìö·Æºà,¬Qµ…@‡Ò%Îèñì›Ó=&Q°¥ûôlÞ¨év.S'ˆÆ/UwñÎ|,ùǯ¤ Ÿú"!4ÕÂákáüõ‰þ–óAgç€N âÐɱF3…º¦¶úÿÅp™}e¿¥ƒŸ…ÄH.À ±†íº„' U@›wÙkn‚…‘Ι­À“ºÁrz`Ô ?¿ÈL±·´œ%ö‰”_ºå]z;€5¤þ¥N¼×U"r$¥}> Ý4 L¬î}ÜΕ—ŸH÷‘¢ÙP‡f Åßq"obçp Ò$Ráª^µÏ8¾Ï“œY‹ï–ÑË¢‹DâÆh +‘>¥² Ç_Lmj1Bqñì¡Gzاƒ—GTZÎjg+ý X­®ˆ à˹âO6C ZuMY™Þ*‡ßw†Ð Z!¨²pÔ4º°T³âW ‹øP õ¾0‡”PgîNý³Íº°Ü¿ÜRÆzT¯MZ·-´ŸíPõ¯ ï5ÅzCëýò5çxã\øŸ¡UXL •¿_âì(íÓ +§FËÕ¢· 7k¾Ð=’¾pÎB²óçίM—ÕfåKSqYt3p ¡*M骞«òrGài{€C<–¬5…»,¸mîÎÄx„àÔ T»—|ìÓ{GTœÐÏt5Ù64žP]¦%ƒ öþŒ[’" +ê9´;_:y Àüb&Jׂîê‘Jø:¨x˜?é1|w‰}F*[‘Ê¡B)ef­ÛRꊗO¬Ëž§ÍãI Ïýh;¬Ô5ë½r:jQs­™­™,¬ƒvØ©ÿÔ ÊÉÄîÓåK™Ú^!ÔJN¯ Ñ@gT‹{Et‘äà cržg?r +K‹?¬ƒSê›K0"ñ +ÚÚeçÅ¢ +m¼¼ÁØNAÃëÎñàq°ð=]‘ò›ð_”U­K“”µnp‰ŽU„¬Á=1Á/Ó×t„Ÿâf³Ñe«]ÎMÀËYŽðJåY² Ú,ð‘À¢?]ÐøÉÇ›ÅKOØ +Ø@6Ï,¾,hn È,Ï÷*'šp†[—ÝYíKšUMÜ” Ä…·P)BPO¹#àR†w}”«&7ÀdN>½<Ý¥^âÖh䶷!èØÖ™'§ƒJõÁ'#ÂγýÒ9‚š 5`’"€DÈlLÏ=A†þ.6Ñé¤è¤øG ¾vž4`[Xú'úÎÌ~]a „^ÛAu[B$™ûó0øÞ¨ÄÈ0ž_$§ŽÇ' xÓ@jŽºcuŽ×eÎWíÁ0h©ˆž „9ƒœgöÙûó¯l(R——C036`™vKœ1Yõô cûȪ¯3\†¯~·µÉ@«§Üš"Š =èÎÜ@\Ëä´šÄ2NRL„A¦d²™Í‚\B?=R5Ðj‹F Oº74‚Ä’¿³ çÙ/©éVŽA‰Øe,¼6(qdU³¯ÃÜÁöP+´ç>mÔGœUÊn›1é@ XKõwÿÊ2 ‘xnÂécÕ +dá f¦Êœ&àŽ‡¦*´hô ËšÒ ýr¯_Ng°"“t˜•¬²€+pJKn%¹à=°JˆðF ®¤ú ]” +DÜ‚ŠÖk4B ±rÜ +uæ·Âø,úÀqlÀÔ¸Û4ƒ½ÈŠC6¸‹é5ÆѺÎY3YÕM€ U-‚LúZ4ÙPÏF—Jøæáàâjñã#p‡H®B^öˆ$äpºBGeQj+Û½ù51„ “[Ñ—.eoÏL ™¥úÎr<3RÞ¿ §˜lRÐļH‹­ ŽHÕ%ïé9ð®`£z8úwíd—šäŽ›ÜºÞ9×jAHG`Ä徬›pö¶o…³V@w£3K@|3JÓÉ¢·˜—¡}ÚwÜŸxÏ +—µ(n] T“ïFŒ|JqÞñk‘ödžø9e~–ÛûhDÛaSb!8I†!û-‹îjžZà)´„¿ý“ª¢É Æ#tüm±&¢¡ÃC‘rníÉÊϤù›‡¸1‡ÌüLwÎs¦Í¨ÚM'lžCA+n@+ýKæ·É¤U¼Ù&h9Ù¢kD²ÍšÃù ȃot¢é²¬e‚\{sÍö­Ú©&Í‘`æç½Ï^×S#ÞNKÍW†mdŽ}ÿ×fîz¢FÜH§ê +ó•{"¸:19ŸÉQDbʸV£öÃÓˆDRœs槶©òÔ6Sˆ¶•PñXÂqG2(¶ë:ÌK¢<äéQ:“DXç#6~þámÖåÐ"´”û–½éèÏSQƒ#’«³äšÆL$““+‡_àç) °Œ÷ÁIt=šI¸Îôoh@ætîK_.©7™ß?Ló“Vçrvgn>jl–h]Ù‰Dƒ+kGz_Œ§ˆ‚æïìÅ¢ù¿e n…3%(ÕwÀnb¦Ú·º o Ñâ•[˜ØŽxX¾Ñ¦ÿJgÕÈi²šÈ”ë…ýµ)áW‹ϰÒå0ðsØ’É.îP3{î8ÉʦiÌt+?‹Q;Ê£å6€#þÇzµôÆ#áûü +G€ÝI‰’®»{X`‘ä`?ãY?²íxœÌ¯_ÖƒÅ"©v«\b§­¦ŠU_}[t>îŠt +¶ÛÞ»*eU|iûi7Ù0?ŽJeþ Q +z4yiܯ޼<VXëÓÛø‚[oˆäÌ/âòC.c*Å~R.a±ƒÅXÀ"èxϾ_?ù`¾H:&’hŠÃÌw9¢·©³2"Ã:"ÇŒÈíhªÒ¤; ¿~°•ürÇ…öYÉÌ ð¶ &áÛkˆŸÐsIOB†@ƒ‰´cí¾Y0ðŽ(à{óo\½çÝy,ì¢ÓÄIÁµ)zÆóÞuóTŒ0ÏX©a²iRoµI–¶°©q€—&þôN2¾oJÃô!^ÈÅTN±¹`§h˜±?°{ u+`¹ ÛhÈà--ö 0RÄë2ÙõIeÐÚÀ€£äAÏ®ð³øú¸ŽÖò:« nÅgiáðKÕgDHÂU=ƒ‡ãÛû¶T¾s‚¾óoUãd €/¤owÑ©;22äuî»Eà¥ó “;:z²ÝæòB_*$Žt¨…uÑ{ÙÉVu­Ð3&ùSÇ%µ«.ÃÞ('ÿ‚ý_ÈßËxç0[Ç@;–Œ)~üV™ŸEìçgš‹hél2ÕE€ƒÿå >Çÿu==´~_ù4ÙR4´å]ŸUþ‘=ÝSGU_¼ö*vøŒÊ^\ îE¼ËÅà]ž·c5”Á²ï§$á–Íå+VYJ wìNëÜÙ-ŒÔ*ÙB_HÜ)ÔŽJ´3ÊräœC4õË([ +¡|8ç†-¿¼O@M‚{‹¬³Á96‚ƒ’+†4ë!ᣭQßçp4¨­I ^#Þ{ž§ÿ¤W¦ÞÅÉaª¼©j¢~q_N€Œ«tý@ð‹‰P¹lµo*×YãÀfhPƒ…—q)¤ñœ|íϸT˜bÎLUáÏDæ"òg…§7OAïMe7_âQžëE+ŠðÍg&G&$»BÔ=RÚ«žtz=öDå2Ù/¤ýçÖ¾¦ØS@½WÿÇ^{øÅ!ä^¶ƒÃŽ_CDW #š¥Ol;z¨dõìæA…“ÇŒ¶ØIWšâB© +I¨R‚AWéV ÚŠy œàtÎq#8âÇ;ó‰´–~Ño “iÚ„ Þè È­¶süôqˆ÷ûZbhÚQH¡Î{!¾HœFž¬¶ìý¹¾DNyû,Ÿ6Ðw«Ì˜õX³xú;•Þ’övˆŽ[ ªPtDCå˜ÇC zå’µÞŒ¤7`•š1òÄi7£)bðEP¾äáwÉé’|ÓÕ¼Î-•ÙãS©æöÍ$óÙ9×Í”góYÉý¸7½Š ÛQ3&>AÌ`•Ï× ðÅÆ%k/]üü{7z¸¯òX¨:;ýøK_°8y”•÷ܵ÷àâ£ðÑxÌG3v‡¼ƒ?Å/ ]|aoR4‡"ýaëÆÿ?ÇéüõdMŽÙjÃQæßÝ°ÐiÓŽàîÉɶԼÆ#ªÓŽùWçð·'P±ïŠ˜8$VÌÝE3õûç®Yƒ&½ü`ý€ÓŽ7_ÒÀm?í&µÐ¹IÙôpÑ¥ÜÄõ7}ÏH†a*H—ï–ô#švø =ÑŽd´ÛâO¼íÑ.¿JU›¸w€øGÁ3Ÿ6“ÂRëÇ]*ÕFaP5˜¯ö îNI&òÆf¼úmxÕp:¯Cóã5æÈìÀkË5óœíºú=&nb;‹ïi»©@ùkÙŽs³Ót+WΟïV6¡É3)Ò•¤®I3UÖëýµA9ž²§5­ýíA˜7K&)¦ÖVÞ 'Büý…ô/F³Ç±ºw㛸TL½rÙ¯x…P¬=óö‘XP†MîD!¬]^H¬={¢…‹Êëðs?OÖîCD“­ÏK2÷ +;Üiµ’Y:àk0±GÙÚ5½ªlÀz·æ¦[ãz·FîÖRv+õŠIÙÃçpŸøܸµV™…¢MÚ˜ÊVÑ wÛ!j2²e´§oÇ œ~e}L‡¦òè¢<‘ÃÈè¨iO¡¨À’¾ +Eyƒ°<—òK òº§É­à}#ßNþ/ù¿g.øâšAÿ³sKÑ%b&zª5]r2“P/"3²$¨U2âcŠÄA:]ÝrVߟi…±Æ J9Ed/óx<úÚ´”Ë®Oxñ\áTôÒÀoÎ7usNÅvjˆBd3ÁPâĈ?¯[¹‹Xwû0ÁC_€•>9ÚV‡‡Ÿ™¼èåþ$Ÿ´ìhö´õwˆ˜Ë£YaVÎ+yOyo#ߺ³Ð\ÚIWnîzlö\,„ð^“}æøL×k:"t±@K 7€Iš‡àvaŽ´D‰;4P.t®$½îò7Øì³ø3þu;´ç¾Ü),ÊU´,ˆ†QJM’yÝ_¥]Ø_19õs‡‘’A¶ƒA4¨4DÖÿPºÆ¤±ñ{ðÉ_Œô¬Ð5 aÀsL Zcg«üªO˜›ù&#íB*€ø KDó ª€¼DšÒöPæ}æŸ×ÅÞÌœÒáûF\¹ø–0²T*„y¦–KÀ%_Ò½”F;o_èí² -[^ú°¸:ÛÓËìVöf™±ý9»(‡RrQ&†I brÓ¥R\mZÑ3—|{ÅŠŒ|&¼ªåÂs9.;DOÈÜtiþ¾@’ÓÐH%\`N¹°hYNÚЊym¿rGi× ˜Xp¦Èô ¢Ò+7žQYb’­¢2Ý…ðûvú- T(9„ƒ>z×nƒË¢‚’ˆ+0(‡¦›£ìð+£¬ŠfD¼k!§2 IhLÙD€5¦ pÕ9Ddr~û¢¦í +3ù ¦Â²ƒ*.qР̒M†Å(›iùuB±X'Ö ¡&â</À[ +ŒVŠCܦ“•™)ZHï}Õ{²Í°K쌰ŽoXÅ‹BGê #nÑi¤dW™.ÁÂr3ÅcÛ5ÏŠ +ßE¹89*ðPqŠ·)ñvw¾Ì–«îNáÃj¢•'ÍÚ@Ùí"UÒ60xzÁ!lŒÞ)‡3-Á)ã·ÙÞü ë½ôBà6c&T¢ù2øe =“UVñË%"…È:ÐâG< d„f¾ öuG&ò„ÒÊaäÇøï0x³¿ýíÝ?>öæöù·wŸì"ÙšO7ì(±jðGXw0¾„d—)F6o5Œ’Ô<µ~JÂêu|tzù¹÷À Ø:ÚT?”ÈxÊa(ˆÂ,N0‚)åyÀqtl‚1ÛŸ `Ø´$Ën$r͘Þ2ázîåw Ù9—”‹æLjõîÍ}®=É o¹@AÏqAÏ{ÂtE wV÷ƒÛföü ðÿp£Â=Ý>0Z'n{Ðh•æS#¿º&}£/|¨ëð)¾{ȼ^Aú%=&‹ÕÔá _¸‡Üò|,Oxj!yv %>}çëôÿýö¦/ýѦƒ.HÓ® Ð Š¤{#‘DZÞ[…óê.ù¦tNÑ\\0hô NEÎá3÷ô |‹¸Á¿Á U§° Þ)f™@&ÞzÇuüÕQ«y¯"µ_î»™GÉ ÎF`{ÃíµZ›_¬~Ë™½¬#M=÷¸ +¯h‚I¹Ð:ÆFø‘ÖøÞe + þ¿Xý +endstream +endobj +82 0 obj +<< +/Filter /FlateDecode +/Length 5617 +>> +stream +H‰¼WioÉý®_ÑÙ€IMO3,va[kÃ7Aleó!Š¦[WHɶþ}êèsŠÌ‘ötWW½zõÞñËÍÃÕùrõ ~úéø/âøýòéîñAüüó«“×âèÕéQ%ªE­-ü5F‹ÍÅÑñÛ•¸ØŸªUB‰Óó£yµ¨êZœ®„ÿò]¸EïÀ¿fa…Rz¡[ÛŠÚ.¬uðÎÍÑLUòôËѯ§G¿þ'ýÂ÷ñ]Øÿ÷þøÍM%NîŽþztüñ~y‹¾_Þ^ˆÙúvþö•<þíõ»a»ºŒV`P_1LÂTf:AU‹–WÖ)¸¦nUÕtÝ?fVÖÕ¢³…l4\a¦¤…;áÿçÊ.´˜Yq"Í¢3ÿñA\I¥pé­XáËðíNZ|çVvøñ©Ò .—¯d ÌV°™Á…ÃW”ƒÇð®a~þs^õ_Äl+üêÍ®³÷Úè»´=ƒ´Ì.Å î Q>JÈ—³k¸Fü9x/õÂáo?Öb‰‹áùFÒÅnøg‹ øãwï¤ÃÌ=ÒÃ{ÿp+ä?Oÿ±³ô:+ýñéiGcB;.´Ê +­ê…î*Ç…~)çT?L¦¢hjƒ·†Ìp­®±âxáy]/ fÔ!0àJ5þüY¤_Ä;|Ø!&j‡ON¤†«}€*<㣨!Qhr„*B‡üáVœÂbxréO“súögñRÖTÒ{¨ƒ¢„YZñ}áMºÓ«àèÓâNñ9 pN/.¥¦ >€“áQÔ3… +×Á #*ÎÖ8uþ#5©ÃÀ-)Ö?¶µ¿‚¿ü~€uߤVôÜ‚Ð]Ðm:5þ°’-'…‹'ÁÏç°aƒu‰Èÿ+L¶2 ®à²þE~pm®q?î\.«Íh*Æ‘ +kñ@Õµ^[ÔÄâŠõ ÌF?¸¾°YGí$kzçÅ$LŽ¦ˆYH‰Â½Š0‹8Ò‰Ï'€êÓ2›Íyç+ΠOäµH½ë|…|éöÇ”ÍÇ M·R­^t]eR± —¾ +Ì«‘^—A‡×­‰6¾ûZ¹ JtÏÍŽFŽ)¢Ÿ £ME\Þ†LÛ‘L#¸ñ†\ !·ÃEç2¤— ë*®ã®æ8ŠgK*ÍÕ2%ÝbdÕLa ¬l±ÉéküÅ&‘.Òú~±%µO¦“TÂìÈs%òÔ.2s 8"òîõªœT†‘Z_2)Ÿq%Üñ Vºò +WÜPÒ í`pá +»Špͼ¹o¿Êóé•Hsš±Ùf(Wî‘-O[ŽÚ9g)Ÿ?6Ÿ>{C¸ËÙÑ[ èÐ&ª¦m +ä΄<ý²Ï®ª²#&x4ò¹#À[_c© ‹-ŸÀ‘¡7*¯JºŽŒ2Š¥¨Ò¨º¼ÙÐ9ðJ–„ËÁ¬à¨opL]Æ +BRë,†lˆ5çÌm—-Ö‘‹D~ÔlÝóÍ6ÈfB€4$ŽÙ˜®R¥âc«¡"t´K«…šlFfìöu—&æ”DzæG4t¡*r 'øJÖqèú¢ç3ÿWÏ·•ùd™TM“ƒ5(ôO…’b.÷÷eC”Q]ØÞ=PfO]Ä•àjïaíªº7¬AèL +?홇X¡f… ‚&K}füHáá)Î Ól DzäA¥´H1≴ÆõIœeR tXÒ…Ò¬BIŽR.Š*³7ˆA°{訖‡OfÆ¢™!µbX­¸Q‘èâǘÂo³¬yd|{y[Àýe½àe™Hù‰Â¦ÅÝ2ÜïÇ^¬OX]êï”°Âlí ']ÎœœâÀÌatÀÀ4%õ9Û㾈ÒÖ =ñ(ݳԼbG±EÞ i"eIf;×k‰È ê‘ =Ö†? ?±\›µ8—\Ý4Š—ð~ÅÀ©ã2:éß9ñ +>«+ÅÂ, q,åÜ>àn†3ùñã~Ñä +~ÈYw’¥úÀ*°~ëA·¾ï|Np‹4V›Z^‰ÈŽIo.@F3BCàwñǤÒoÃZ£ÏÁ0.5iÄ{÷36ôw*u‡åfeªEí^;¿ ²ëÇ|çÝa]qŠ¼UXìñ¶ù ô´…¿Æh±¹8:~û±[Ô J„ãD¸”ÓXo8‹P£¬zãËÝ[[s](úÞSù|ÝzÒº€^ꨃ4þκžêVŶ‚d©çpšÕ™„X”¦¤ä"”Á®¸ÀÆ”ŠPBxûìÒS xMp?A}/Ø?‘]™HL’øŠT˜AÄ”š@’iÀtµâ ¾`w9ƒ¿ý‘¢J3سÞ귴מ£¡ü^HS¥N_‹¯RsWòp{Â2(/O»@d´8®d3šù;‚Áu"J]ºÂ&)iìv’Nͨtª£2Ëy>9óƒ7Ì™Y²-Y$àìÂ5ÒAø]e¾Éö4boH`CÀF/ö§%0OÅÀRÝ„”0BhhÔ¢kéð +7D:8PSjšº£¸¢–Iâb8z&§º>lª³ToKT7ì¶Vx \ _Î(ëC˜Ù,~žd&ŸdÌ’,t‘ ¼Ì‘7“ÁŸè*›KsO7¾K¶¬5 ç6õRrqwÑ¿^`o”¨¶ «²®@Èl¾¯mƒXKê)šl[`ÊzÆ,tÎÚùòŽ[#ËA.3ðrûµ›ÌÖx6"Ï–Ôg”ÌŒ³3ç'þI×G_pÈmÎ-ÞI­›ß ‰ù-ùKMC/iº‰Ð3<”¨QtǾfåŸ9 âƾê¬qÕF|Ãúm©s#0JÙØ@Xº§£ô$` O:æD¥¢ËäPP£Åí¬WÍe»æÞké''m6˜ºs.sÄZ_—{Zƒ)ãc¹tŠ %zŸ1sb:Ê‘çs±E¿àR£-ýkÛØU1²*h1!†Äjä¥Í:vîåjÈÆmH%õ<{+` —ŠÔÇ…dÉŠ Ë2$ûë;¯Ýå’4•ô$›÷1óÍ÷À¥¯@V3í²<¨l_D>\æ"ÔšSFÐ ñ—r˜kÖÀqh{§ÙÒê[Ž°2Î1•>z»PZ<¡Þß5ˆGç‹Ðj +“¥*‚§ä¼ ·V¥Ã%®9ΗbA\¦ ®^Ú(N(½“êó^”î-ºÁoËÓ*À|¾5—àâþƒÁÉ%à” +8U·.*ðéœf·$;ðCä{.¡vE…:I÷¡kš»R,H%¶ÿ½ËiÒèîpYKÀ#µzp“E=! ^†*0;YnȉÉ\d^sNt~‚ìÉBUÁäJb!éÁ3¼†&`yùº¨|·W(½2SÓgueg¹ˆæ¶v6qZzbf&`ÍÒ“Wk̆TA :C×L|¢s Vä6v@$ôÙ¹=?ùóf¥Ôæo”U7"W8Ô!žÍ·ÌS`x-õÑm9ØÉ·<âœZ º³*Y¸„‡þ{S5¿`Ò&˜{£¨vDîÚøC²Í,Axê Ó8H> G‰wjð‰&t9:åÎGêÈæ‘°¥¾VdªM¿°ådªÈm½¸1ø.>ñ×örÜ”3 Öºh»6ÂËÇl1Ù$Ë *»~Ýy8>cM*…5f +ͼØÔ¥©È‰È…í4ù3ÅVvhMph¾ªgyUɃOO†ìc +`FzÚÇ#­^“ ÝëQsW£A³NǬ3ÁW©úG`Fð’‚m¥^Ÿ~u¯qE4%|ÑXpG‘ÚNlÞ­\M•9j“”¯24`‡``I¹ºÝĺ='TDW”§ *1QŸ¶QÒþ3IvÄ2R5"Ó85.ÛÿHxåœ;¸À3 J+Ï€ßF;DcR3(==..g³mM©ä9Õ–_†$}B=;Ä’¥ˆ»ù4¾ˆÆœpAXá^[öMnHԱ罄ýqÛ‚?]^È Š„×)HŽÎ'akG#É,©Ü>mLžXÒTI>žn¼¾â"±a3倴mÀ‚À]€MgßHP½É-Ñê×´¥\뻼Ò4|Arj”Gósƒ6¥E€+V­ÄðP)Pv¤f„: +¹J46øínŸ÷%Îqº´'Çç¼ô­„Ÿ ÏÀQøó”{N i”xÕ˜^±ž…œ µÎnrzó”{¸)2oÌñ8ÜúÅ)ÓtÎj1‚ε„/µøƒàô:û êm{ÅŸ óEªµØ +ì(yð™’h»Ã;=ç°úœ¦älj4b…æúHbB¡ÓC”0fÈ4´«7ãÏ8 •.†ø,R#.Ç.Ɇ)XùÄ)¸(ÉŽ„¬À¦ñL<-JUÌÄNäS7H–›ßÊÄ´S,jevP”N!PWQÒÒQ5><`瑬 ¬4HʬBw<š>}’« L–yé'@ÀåÙLÉÈ.› GWÁw(gXx·òhÅŠ¬JÞpÅúž)kÏ¥yD¢ªp·–¥ŽÔ»À-¶ˆÒ>ºgr§QÐéûjf^úÄãõ|–å ,cäÀÍõFY£K0=Ô–ó+J"q>ž·<ªœTqÀˆºèè´ãðx½ü¼qÐ’|þòW‘.>ßš¿A³³Û{61ÚÑeš lÛBžµ@¯Š—¹Ej#ŠlÍ[Q O 0†¢/Éç?Áun,6â[a[¤ ¢S²@øwˆ×ÿx?.Ùòxå³dz¨6$¾TÁŽ»l6Äê(fðï¿¢›œ¹÷)³ ûº“eø\Ý©]ײ]©·‹¸Ãaä­ŸrºÒ.sü„~€Ëâ^ZÜGû¢ÎôPQS¶Qk®`Âa`2Ôúœ€Ò’‡Üoôú’[ü„Y#‡@Þ¡gËd–N4ä2´üf¶|ñÆs+pÙwî‡77_e±ç³ØÂØKÉ`É]/¸5òwö [o˜g-M¿em´„Aðh²þ‘¹m“KÝAÁ•NË^šïóI^–óÛÑ0Ó³å]nbÉ›™DÓWjorš+ù@{MŠsÎK+óˆg¿Ãœ@g6ÒÓðgË-1ÚRÑe°e(^ñçµÄ bä'÷=àI-sSpð# 8ËСÿ0Vm°¦¬Z0eü3RÐVì=¡“·èâzñ÷-S}ÍÍ[܉vrÞ „EÓG ¸bÞº©u]_[×(=9" 4µ‘æœ9¯½¶ã½Ññ::tˆ-­°\lGÈkØ*‰A¾²0.mÄΔë¶ÒO÷üÌÓíÁÓ ç À†Á +endstream +endobj +83 0 obj +<< +/Filter /FlateDecode +/Length 5863 +>> +stream +H‰¼WÛnÜÈ}×Wôã4à¡ØMv“ Ø–½ØÀ‹lìò‹ÑÕ^Ë’V;Îקn}#9'+<#»»ºêÔ9§_ÞÞ:ߞܫ~8ü«:|·ý~ýp¯~üñÕÑkuðjsP«º²ƒÿÛ¶Q·‡?}¨ÕÅÝÁáÆüV+£6ç뺪}£6'J¾|S¾ê` üë*§Ú¡­ZkZe]圇5_VÆèÍïo6o~“þ€ƒp=®…íñ¯w‡o¿Ôêèúào‡n¶Wá»íÕ…Z]­z¥yýó‘òíPF«0¨Ï¦á07%PãðcøU£LÝUñNu¶¯†aðÞ?V½6½Z}Ô¾àHu£Ûʨյ^»ÊªÕ6?ï5$gµ†—]åÕêD÷øô^nÔê +¸ê\¯mWÁv—ø¢Z}Òøÿ‰^{\t¯NµépÝÙ<µjñ z1¾o=nx¯×~ná±ÁoáKÃoc¦Wÿƒp£mZ`k<Nìñ…™º†0¢ót3ÓÏ×sĶêàöjK:¼#þpª kùæÂå)Š{¤M->xжÅvF·RÚÐZÈ?g +ë@‘Ÿá9°ø»¶_Ds`Gx*dôH75þü^émþ‘÷¶\c«ªm[B§wUÝ ­êL[u97˜ÙkÃqm%ÓTn·#ó×gìi+¥æÜkx>ÿi­U€*Þ¸°A—£ Åí)g=íÐ㢠+RæðüÒP©Šla®ÒeZ6ܡûP„± +†ý¤:wšÞÿ¨Mƒ!È,Ö}m(¢K¸ Öè*þ, pÃë\À¥=Ý*,7¸Ý홺§ûQ‡Ú9G rçµø:£æI']"¤=_‚în.˜ªùTÑ"f—ãÌ83¶ß³î0 Žq–:¸ 8ú‹¤éLØàÚ³e²:ràá€W¥Îtõ$Ëš6¤œÐv*žõåX~L@å"Wêƒ$ýAªzrôñù“ž:¢!HfjéRÄp<åâRèçAØ—X¸a(Ï4š%ÖŽšWq ïƒD'áæ!Àƒ‹,ª=pbK>j†yœøŽÏøh~wÅe(5–¤E)£=SÇÈC”àã„Šñ-·ºÃ/ÇÂ8—XÏWßëß¼V_A@ñÈÐú¬Cœ5-T¹µ+¶žƒ^&kÛ=…­ÆeÙÅ x^éÍßóîX»§êö qh¢o3®,8òJ[ƒÛ‘¶Ûýx£)¼Ï<:Pˆ…ÇúÓGH²VÐb'¤K…!X^©§OéQ] âB}À“Ÿ@Õ±ˆ‘µ•ðð?ßùŠ|QœÒ0‹¡s\Þd䟊Œ)óô‰%¥lÙ Øß®öHg[¶Pä¼Sô®Ëœâ[<ÉH|ブ«¡ê„Ž©gž‹¨£€'ÆY@TÜņ/¡û)£˜Õ¾NÑ?IÈp¸~âÞ˜-0<•´Å½“DJf“v'°¸ ,!Ñ!ˆå×})LµG.ÃGµÃÙ¿µž \3Lµm2ù¬ì5¹eS“}‘3iPðŽÍ—1Iܪ„ðtRh +¿& žœ:6&U}£J,Ô”ÙuÆmðï0`}"²ñ2]˜ÂÙM$bGwøQ|IR÷átäH«\)Äಡ§¸*uæ¹£Û‚lïI“í :Gé_Œ4_ + ¸%e¹6nlS k¥ôæ÷eûwÙþ3ÚWò£#9ÎGé**š[”3;í°x(H›%»ÐZ\õaâŽ`÷~ÚYÑ—·†¯K³Ð6“b›ÀIÉ‚ÍŒ#=g>˜ÿ¨<“«™jM$ø«N¼Ÿ¬‰iþMž'òߧâ¶2 +&Ûw ˜/zAŒadÇü¾¨h XâÅwNá6Lh{`.åPˆüm––h,ÙlçdB|ÿ@lìr>vyo¸Ž¡÷,wªÄð™$mrÒ^ø˜·fó{',ÒÔ +¶Žóìb¸{3r0­íB¤ƒ1ØTè11»MN[£ŒMà6ãì8Ú„2^B’ÁfŽä/Œã€årÑp‡¥ççæjêT³Y§^ŽÿsÆGH[]±Ö—l TäÞpq¡÷o˜™§|»LSÂñ)·RœÅÀ°ò`;@Í[[‚bµ^̃ÍvÖï†Ì¢ÉâîDUiíFÝí–u7’G“ð«¦5I²£=Û'$¹hêäl¦¼—5ZdnïrJ`MæH„ÐÒ§Út¸ÁÄ^ÅàLƒˆ87fò+áöu¹¿MV8—Œ3H'ùÖ‚sL&Î ƒŒ,ó1êïÑ醄ïýäÖŽÔ¶ß 2×£)݈"Dæ; ´å‹¸¬[Îdfþù§¨À;Éû”/³iŸ©ù€G¥rJ¤™ +å¤õy¦$Ï"†Æoòcljvî±tNl|4¸*Ëãr|¸ݶE»×1>2 ¹0a]Ö[èδ™©Ö\Ì™v~Z{ô@/Tê%jw!å¤B…:Mu27ÜqC~Ä9ħzHÁƒ,ŸMc +ÀºøÐ R†oš}@46ëF7gxæhãýª§ôÅä„ÉÉv_ûZ†-üX“ÔæDñ'¡Âù¨~=P©Ê–°¸¹¥Îí1ƒ‹OíJ…§ÇØZãÊãöÛ~t±Úá9ø­œù‹„xÂh.˜½|Rˆ„ŸKL«AŸÈ¡ß¨8àÂhÒ‡àb—="*i…ФÊH̘0¤DÍjpÃsy#†Z3‹'$}J»sHS”ãçýä.Ìo˜¨4=‘Ï;øµ¦$8d&1݇I"Ëò!C‘\›Ûæé4_…RÈ}ƒyØæĨæÚ®±M°•Z +æ®ÎŽ˜§j¨gS¦¬’O»söåF×,W"¢Áúq¨=¼K飧̴§ËHFBÔw:y<êèM Mšq} +çдÅ`Bå(¦ë{þ½ `óì0£qɆ\xpû4„_ƒÏI±`}µQ]>ŸnÌoFµ9? š¥ÂÛXø¶ƒ48q,¼¯‚ÆZõJÎJØp*)oš¸úVw<ÙcKˆ“Tq§ˆuq˜Ø?øχ­¦RÞkºíA†Ç…4k~Å>1ˆîRò×µ.‚Q@IÂHÜ­GGïUˆ¶^‹©_)6–!«è¯ Þý–·!öéå“x­Ž-žÚsèkË´¸¸¶¨Ä¦æB–[V3nÄÖu•oÜÀõØ`#fmx$<ûA·¸Æ~ÈfŠjñ¼Ì@¬S˜˜Â‹ÄnĪf®sJ ò"{XjŠaÈĔᴜ=|bù‘0ÉîOqɱ¥>C[7sÍcGiº[nÚ&óÀ%~6gŒf1çÆÔåxiJsÝ7;PÒ6UQR°Ñ„ ; Žž:–­FFY„¨‰ÖÏÎAk'¦ÍÈBË—Œ,«ÕPX•ú^öܧ¯¹¯~…£ñÉ™ZßRe_Ìœ}…¥{èX¥ÃÁÁp§ §žÒíS(f¾HC&–5[—Lü­X Í ö“¨p8h2ì.ÿ¶6mi!rÈ ®ý` Ì,÷ÁÝhÜëÍDZè°ìv0äZc÷|ÖÔo˜Ì ‡M5 +rÁÜ—»Ó&$¿H±%I¨Ô˜,3 +CÔ0šÃÄÆ^FÐDà8a”Œ0bvi8¢}z'nѯtöˆGDçJÇ=8RQÇ ñÅ`û„€N¬È]•Q™ayûès·Ûu¿~ 3ŒìÀn<‰í‚ Á/‰# D Öøïª/þ„ù‡ªôVêûÓtla–y$ôØB<ÃãÜæ©jg*“Ø^ŒQ.1ÂElý2 Ó~_u# á`FH¾.(ÿ½Ó ˆw#ô(?º-§;7‡Uy/\D6Èí;6:?MZÚ½lvA¹±ÈµÒî{ˆi¿“q ÊA³Ç@UÌl•1ÉÜrdÅS |d‘l= º‘jûÒcÞɹŽÃRöÅ5Ï#©µ›ÜÆVÏðã~T„Ìóx­^Ú Ñ»>’hqP—™„ÓV÷ÅfÒñ“±p]R`23|@h›§Ù;÷©A”r¤.Y_/Yƒå ëM2³ dMﳑa¹˜Î÷—nþËz¹õÆ‘Qø¯ðÑvœi²›Ýý˜`À²6y1H²n+dŒe9ίëBV‘Í–ZÈ>4Ó²xꜯzð­s`Éï\±'ƒB“êkK‰»¢to'Ke4LqôÈú»úã„Àc3%ïM2a®ÚZpüã¬?ÐäÝÞ¼û'³îÉ22õ6¶˜Rœ÷z»]XnC¢ê£ßž¨“ߘ¨~tjÌГÎÂþCaÿ:YñDÿnh¨ûüÎnRóe`_Çpø'7—ÑA€#‹7~âTs…øÞxg<È=?'­ÿ­Ùð7xmüâæÏÖ ëÓ/m‘Oó¦1[„EÜÙ‡šÏÖöŽ•îúhËøk’aКY#Cª©š‘ª¼6bÿ£rÛ"ÏÙ Çbž‰ÿÃÿ…Óx[êN}90ìszaPeóŠÊâÉÉèpÉý‹$lëZdÌ.Z5®>î-ÐÞp=À¿”Gõý¿¢™Ñ ;öt`W_ç@XžXMAAQ*UÐå_ ‡f^¬Ä3ƒj¼tºˆIi´iÕ:Ÿñ [Hryï9qû-šDP®²TôAlb‚¹ƒ I¤}w5pÁCÐ¥†G¶(ßü YòCŸ—„%9¼A+®Œ±¦LÀ;³µ3³–b ºŽÅ¼“:ŠÚ8H/Œ•Z­uR*®j„ ß±“ßb«^íûO§Ý¿ãÀ`N¯¨]Æ9ý 8QIœ”$BÔ0{O%  ÈÒ†ÒÇ/âlø—ïì"·P#ž+ö˜ ×tÉÙÃúØá R±È`R°Õ£ÅŒÉ·Ý‚céžð¶‰ºp¤y¦O?£úø%¿ÂB18éó„¾þ +7äœP]øò"¾‘‚9ÖòÿæJ÷E¥O÷Tè}‚qÀò¦êöÑ-Ç@þ€tÝA»|ãR>ÆNGþæÈã(¡¥lW¶É¾‘}q¶€ç4]a‚å–gÂ!™b‡;º¨°§%Ñ,¿Ãah=„ö0ÒR’l‹ÙóK#ÌŸú†4&f»I &­,•DAßYOH{«Uܯ‰ãÓU<Ñ iqÃí +JDVÕͱ¬IQg¦¤I+:‹—ÎÊUgUXÐ_cਔӰ’L<¥lh/¾ þʱQigP뙲© Iùù`¿^uH–Ñ.á‘e’X&znòV7Ò¡„y1…yÿ¢ +dw„ÉRiRïì"sÏ‘êÎôÆ@ta·ë#T<Ô+™â&’@bÎa³\Á ‡‚[:\à÷¼ _ «údø:ñ'HÍ¡tCAã÷üêßá•e¢/ÓÆ ¢åÛ^¬è‚WÇ+jÀ쳜²R/3âпK?\/`|Ú§´)¥ÑP(5¤¼u㊄ðý'`¤èV|ü¿hk,œªÛ¯ 1Ä©ìs°¼j +ÂM:8 9´qg»~(fÝa¢­4¥X Ö›¥ø7ëç$A·ŽÉWоZ'ñÙÚg„÷æ7ëfÂ#N¤ûÚÕ’7æÓ|óþkiUL.¡.FŸuh—+ ql¶yÈÚë]•‰Oç—7j*£¯cr kÂÜû. ë ð€@‚÷Tdl>ÇÝhV×Ô^"€´ózª£ž¬ËpÁ(¬¥—¦ó¤0 Ø'óì‹öáó–È&ýº2£Iao‰fVé#”>‰b„wá¸+¹ñ•®PÈhª>5? +±¸¤»øŹ‚ðÆ^soîâO,é!sžCÓþÈ0jqÃÄ;ãDÚѤšYŠv³ªær(DI~ER~NÂEãIì<[0¾û1¢3âÎ\½=ÏŦñ(ÂgFÓ|r|¦÷ &´b|ìy,‰*ˆIF¿ô‚ƒY¸wƒ†xPÜÌìG<}·|ngÝËhŸp&ƨ–®À®Ìô©œØH±ìMÈíWÛM„÷ù–N¿k«PÆý¾´ŸU°ŠÊÍ佬·„ †Ög‡VøÃõ—Ú~vÞh»™ÔMÔÜã?éVÊŸîóýY,ß,ò;œúÌZýšŽSìjø +¡o‘ cb‘?,{•[É߆Úߎ—E¸H]³R<ñ§‰»¦Aöü†¼eÒÞ›¼eGΧÁ€›íªèªylMûYpû¨ô VÊ"hD9o\‘Z +Ÿ ‹72\­Ä•¢òp€ÉÕXGו æR/¯ +E£@|.¢çÎzœPü7Òðè`9áœì6÷¥¼&¹£'2gpúÄ&’DtÖ¹"Ôó°~œàF7ñÌráõ^âCë»/4Çfe¸2X´*úyŠÜ2;-‹w;{úû¶'ûjÆ‹ÐÝ<Y+T­õ@Û$Q%a^³÷bϘ®ñ'lÉ4U*V¹e~xÍÍéT2F%"éé̘òHõÇ,fë/°e4Ÿoü +eJYgܶtqOЙX¼}iÔ7QŽkkýŸÁN:EH1­d,vɃ¬TæÔÍBî×…œ”6u‚ÚKk÷B‚ã–õ¦vhÉ«—¾˜½@¯a-‰ÈHÊFGYLep=œ+.Yà€W“ã ÖýŒ +endstream +endobj +84 0 obj +<< +/Filter /FlateDecode +/Length 5870 +>> +stream +H‰´Wio$·ý®_ÁÓÀN«ÉnölïÆØ`Þ|Jc¤Õa¯®I+(¿>u‘,ö¡m%hfú ‹U¯Þ{uüÝáá·óýéƒùæ›ã¿˜ãûçÛÇóí·ß¿ýÁ}¿;ªLUºÚÃÿ¦©ÍáâèøÇ_*sqt¼³¿VÆšÝùѶ*«º6»S#_žL[vðüu¥7ÖÖeÝûÞ8_zßÂ;×GÿØØ¢‚{Wük÷§£w»£w?ÁŽŸaC\×€mðׇã?^WæííÑߎŽ¹Ûß`¤ö7fsv³ýñûâø§Þ¿5]åó¨ ÷ õîN¢­$PëqkùQklÝ–U[›Îõå0 -Gù¾ØÚ¶´fs_ür^X‹ßâgo6¸áñÆu±mðs_¸¶¬Íæ¡ØºªlÍæ·ÂöüFƒ×oLü²/¶)³¹ÇWùÓâ·rý´Øø>d¸× 7øЬ_:³ùË@==ÞâÞÙËÎðÆX×ò…ilt +XÌSv³tëÞ<ÒW‹qõxóqOëÀžWxhüp¶lÌæßr¿Þü +ÄÒã'<Òà…í(ZùLѧWÍÞü;Á׿BXý†­ÿ`. €åÆÕx穨-§¡Ç/ø³ÃŸ´ì¡héÀoôòpjK_m ‰=3ø^„W«à…€wÍ>ä…RFüì‹7<)ª.%äS…‰"0œ*¸Šç&¤/xJ%¹4wréPÔ Âõ¥r†âaº)öh)ºï¨6àïkXßÒz3 +‡qø”5‰£&áÈ/˜ë‘ÒÒtKH© I‡Á3R®°Ë;Ì`lfªÐ'ÃD™àQPÆñ¸Ná}kéXX™ZBu&4ëÀ½ßbÏFâω,ÕŸ”Š ǵµ5²œ•¶ Ž«æû^ɲ"BrÝ.¯WQå·=FÍào°œ‡È™øòñ;Â&G+s”æ8¯àQ7{^Lµd+¬ÅÑãj w['%oëBúm’mZæ x–½ ·¨=8_‹Pí a[9*Öj„ö™TfàôNc}›s³-v¿¯[z¿r ào{8w¤ÉÈ ÍAS™#T^…¥°»mFlaØöT­*“šÈ·š(¦Òà™{aAÂÝû,Ir£×$P3ßÒgi’cxÇOc³GIýÂWîÚ™‡ccQ¯…'j ¿£8…ô+NšàêäÌ(CCÁÆ|*©Êòö:IñS0,+¿•Î•6Bå–õ®ðŸÔ†›I“ “™?^Ÿ¯!Ë×®âtU’©Æ/øOÊ\Õð…òôä«w…@s¡œ>ŸØ8K€‘$m ˜D¤ºŽÅÏÒ€էʰý‚,á£4yÙ67²3ƒÌX©¦\-«%UåÀLÐñeŠ†a æ‘^Þ¥´@ûÁ­§™4(ct77¤Ê·ŠýH³Û+G'=¬ày_7´¸J“cY K˜i\ÙGÌ$_”§„i*Ä÷<eÁ¨É°Zb~8\ÅI—ÑÎ]h©ÁJÅ")‰ð\gqÓ‡W~3Œç`ÄÂ$„3 4<Ë@V☙ˆŠ})jÞ"_šÝ @¼p· ùÊPÄ/XêA…´£ª.Á\*ô̸ýÕX°ËB™€]ÐÖ¾c $\‚¯G&ãkxW8!›q¯òikuZCÄã´{hqE1(ÄAׂ¯´¼ÔÎçAwUì)?ÛSnÔSíB„ ^¸ qÁd +4<¶6ùØʾ Œ"^ä#µ3‰ÊÀÞ Ø))„ÙÌ)7¯Q]7ž4kض;dçnbíß#«¶âë¹¹ïLJQ(™û@Ù‘áÒ¹f2Ì’´ ²©›h-è4."‘ÿ|ÓŽJ@QÇÅ_"‹1r·Ì¡×;®`ïÌÿ™+Ö£~Á7Ãñª®ï2HÀ`¶Ò7»f¤:ÍÛTƈ¸ÄrI€F“ÎŒvª°‚CQ¼žQ¸«c©bãÃÓu$Ë!qZ6Ú°ÔSÂç-ŒrTì2Ì–O gªµKµ6ªˆv†ìnˆ><¡!hëh¼³^s—¯ÕÔ;Ÿ‹VŠÅO¨é0O8C‚ÜÌ¢—²j~ň¦±°~Dsí:ƒÓô-šâ.ŒjU[‘±vì5§™ÆJÌØ)Ýä‘E$rRâCJ3ä¸4;&õŠhÈÔÓNÌl´!mXî KW«w˜IïÅœœÌ w§Ñ£³,Þc|SR7Ø©M(‘ScÂD÷ã*!¤pxÂgŒ& ¶î’9’£ ŸŠZªCǹŒ à~æ¼æ½xón¨é"(Út:‹ÞX “(II@ËÃÑr¡8+FñåíãLeîå,{ö\‘Àút<* ,½n,½2ƒ¹Ì‘F›’f12ì¨iˆc“¼šO`Ž&[ðð°3ìrRÔÉL‹g›rAû¿qe'Ö}žgm 1òM#àä| yq…gÿí&9€i¯GM?vSýj|§Œt0Ñ1Q¹}ïB»ª 6#ÈÞ”NÎ2ý »ç"Rç¼ÛRê¢É3E4;{m‘OTÿKú]WÊlEÝiD,‰Z¶Tì, ¯† G·±nòlR.Ò@Q3ðI¼cZ¹ ŽÃ§î„/¥7ŸA@©'ߨ%¿r+‡A’yaî]œ!* )XNS+®fÎä0GòíÁ3¦QõŸÎÙb ÔÆâÀ¡¨hE¶ìZm°+(¸§`-øc +L5Mñ[˜ˆ†FÆA;àPÙèÚ¼®³#Mx.‰¢¡Í=³ãIam>€-pŸøùi1ÉEF¨ld¡óÙWY‹2ý­ L±_7M,ëMSmsÓäÝÝ üùiÀ¢î&‡`všÌ¡[r†®8­håÙdL¹nâ"¶©?'|~&ëÝ˃Š„@‚.bÜÎhhQwý‹À¦\E/k0êl™KÔêÒ:ÜÔ9ñu +²žˆgÄ“öËM~¨CÎø 6ðÛ¸(¯a¨˜+fÄõ0v9ÖÚE¬AªµCû¢äSèzô]ÑUòIy>AHb“5©É1÷x¾´¦$ö³\Ž@ùlFȧ…’˜ÁKDÔ$óCÉdÊÓìµêŽÿÐ^.ÍqÛJÞçWpiVEc Ar™ŠSIÉâF·¼IUJ#Gò$z¸Fr|õï/úF GœT²Ò˜æhœ>ýì4‰‡.GZœ¾ÆðXœ“ùôÔª²RêbVQü#·7þ%tØ5?†7áÐ|H›äi´Yn‹¯)1œák}>cÇé€ÅÔ»¦YsªÓ ÖâÄh2ñ¸Û¾´tˆù@ Ç]°¢|ÎVÄà‚Oõ}hdÞ${;¡±þî‹ö}®ên{~ öíÅÖ‹/Õq“Wèº_uYŽŠÛ?îóãé\@8ŠYÖàýÏ]_¬A XòŒô;yX•3¤ohÖ«¤4S@PÖ?i«ãÿ¸ŠC.Qu<¼ˆ8TžÅŽ; GÈJ©PY˜Üt°aÄQ87œ•a]™a;[WTNu´Š+“9´p¢C#ñ™¥m_ŽGJY>€ë§š­a¡uÔÀõe Dïü GTuñŽèål^!¬yjïq¯ÑihæÅœµ}ûs™‡µ&VWÍC\ˆw¶ êQæžðBÜï +þR«´™°œ+©pÐá<ï‚°$æ%­C+8LÿA1÷]ƵÚõ½…j×a­SN0GŽü¡ç®,€F !½_ìx‰RlÃ9 \ícˆyFðÀ©)¥tþ„˜<$¢_- v{Mé}syÝðårÆO³ðØÎ ýWh¤°<[+Ru d2ˆ1]ÿu$Ž˜È“i¦¦ëäÕ»íû³ùü­•]fœœvˆ&;+c2~Åü.gþY¦þaú½¢~Ì‘™ *.ÖZá-Iõzšj)h©~S°·ÚÊ+-œUÞ´i27`b<õ÷œiðö§äQ5g*‚aÀ¦Î:¤ÀuÚHaé×ÁWïñÇ|žÃ¸ÒžÍJqQsª:®6.¬E•B Àw>"¾jš9…5’.Â(QTä':4|¤å÷…>1ûœŠÂ.Fwá És yš×Ó‡Ì_ߴàoxàÔ¢þ;È¿óBË€ ¯ÿzY5«fâJöKlgõä'.»iÇ|S±­¹WñjòbÀ­~–úD5#93 õý†0¤Õ¸= õêïºqMìv‹„S4,—´å)Éh¥>´ÛQ*Þ^¾ çqzüÚ6)Pñ­|^÷PÛž\Ç,NFð!¬/ZéDqã«ÊôéTù‹Û3%B¯a¾…Dq‹-oTxF˜‘Z¬êÉ{~¹LoÁ»5p¤a€íyKêAe$~T&ÏvaúÂ+ÃaÓ´5å´.㲑,ëÂSE*eG*¹aaé:õ6%ªá~ Oô¸g[ˆ ôï`Ïøzý…‘'¨õ±ŒO9ÔÆ¡uä½ +À74wüÊíµÒ1ìí¥ù-¥¹¼‘DFü%ÑŒ +gUá@ÍÓì¨pZe(‚c ?†p!,ç;-š¿lA lçØ¢·t÷X$Š…)jñ*ˆ­“<üð®`éîèÁ'šñ½Ÿà/¦[¼G¨°D³pÿ \±x2aÝx2ô÷?Ûë7eõ»ì¨|ˆwXÃyMq€]£™©p?âÊ̶y\±Ç2æú<Îâ)É°à•2²Äç0›Æžp¬ãhÊI1ë×zTÿ>~ýÜö¸»¯›Ÿà5Ð"÷û¸Õæ—–0)zVÚkÆrO5Š>¶¼3¾?L²8lžQ£ÏwÊn¥Ðx +1Òr”•„#36Ôµyó' 3F§ir`©ÈÊ>lÓ¼a¢jálŸ¨CžP»y\Óe0ñú®) |z€õ- +¹É6®øqû¨L.¡i ÊÌäwv´QA /hÒK™&Ž@ö¶`"WÐV=”á(RPä‘­4²ÏQ’˜X!ÉDzߥ`auÇt‹¼,ûRñ¶gÀóÄG«3h‹Ÿà÷PA>wv‹ÅUASD±Ö&¬ºÙ˜º‘XEÉÕ%Rð9Kk7Ý. »n[I£ Ï¢€Ž`#ËbQîâFrÒa„û÷•ä©Öõ°¿j0· ØéðóqÒ\U“q'¥EB8êÎXåR:¤ÐUå†Ó¢çeä+NùJËĵù´\AÇcén–Ss~×yט!¨ ƒÀ­ð奘äõŒÐGÐãL“¿Ùƒm~fÙ†äe “E᮲±)°…^ÂãŽ*È*ø¡šñDi +G2Ð*Ó¹£óOM«ÜÀ¼6°zăƒôîJn‹ôT}c5éEÍl@_µ«>{Áæ‡h ¹¼Œsµ¼Äz§ xÝAõ1‘¢bø\ʹZ:â“ bâtèÛ»æ½:=IŸÑÄ]^;Çkø0Ku@ãËãåCE§pÀ80æX¥¥°oÑã>3?7¢'OË?1h½4oÂ>ö­1ʧ;&.¾,zs.^ME ùÛÇ憳³Z隸èh.lQ\áÀ®Œ;ƒnXAà8¸ìÝzàà§qCÖEgzigkÙ5?€íÝÒÄqBˆ4á²xƒ‡ ç„‘"܈D†£Þɉµž¥Öí¦|57\}ìoIJnÕ,;Å°û߿匞!u.¾ ÜJ¼]bãi“t08§1S×›f³IN9JÛñ„~Cµ„¦¿Ykäü”+³¹n9ùÎ;ä.¸Óáv-]r•Áfá\5E«£•˜þçÖΧ:QŒ‘$„ voöø|êÀ k®Á!ß'R{£²C‡Y 4Å”¥Ë}ªíÅð#x› íâsyùù„¼:“¸ü¬Ðº4¥jÁ`‚=ëp˜¼4iXT•ÈräÿkF)‘ãÿݳßîšKÈpAÍÚÎåùS®#6Ø“·SfHÍøÇ-Qßf\é–¹Ò¬se6l²HºY¾+Dá×E1y…ýujU 3X—ºÅØp{šº]bóq*rÉÊóßn×\‡ªõ×ñÛûv$¶ž#Zã»è2 õ@ÍK¢=¢öæx§%®Þ^|«Š¿XÓ!ÔAjº/7Êk™Øg’ {°^¼mäÊãe×mø õ¯%—ÇÛRYqhDè¨ä…ÁØpÏW´cUhü²”Ðxyrò87?èë½~D¦~†;ðÔy_ÔÖÏ0:èýpù–úÿ¥óòrÿ_€»ÿm& +endstream +endobj +85 0 obj +<< +/Filter /FlateDecode +/Length 4587 +>> +stream +H‰¬WkoÛÈýî_1M ”93ä, d“mº…w7ÝUû¥)Ù–g-Ù•œî¯ï}Í‹m:- X5û8÷ÜsO^ïî¯/Wç÷ê»ïN~U'§«ÇÛ/÷êûïxûFý°<ªTµ0¶ÿumÕîêèäÝÚ,õÇJiµ¼<*«EK–çJ”[´°þÚE£ê¾†3\£L³h{6Gÿ<ÖE¿Ûâ_Ë¿ý¸<úñg¸ñßp!žƒgÀ5øíôäÏ›J½½=úÛÑÉïw«-ZzºÚ^©ãõ¶|÷Cqòó›ŸÞªÖÙÜj…Æýæj6w)ÖÒhrÕá-ºZt=/תkÀ¾V­é}ß;¶ô¡0zaÕñª(µ^hu|]‡/îÕ—¢„ßzu¼Å5¼‚ä×5,npñ‚wº[8uü©p¸v­Î‹º-jJ¶B¿b(ê,%}“!ðIŒÕƆè©{ÈjÕt|ŽËbùyÞéMz:à³Æ'½ ø\-zzVBÕ F£C˜]âS“ÄG­ÔÍMð¶œñCà 4¯ ƒßvÌu‡ j|Uã/·‚‹s>n-©'˜Ð§¦sê/…¡7·…±¸ò¡°šo } _åBG__‹G¬ÓߢQà2àL·‰ñlÌܳ-šý…6i´ÌÑ©i]GwÀKm²=è¥77¡´C,}Ê*ß² E6_p¼¤ +æCÓåà1z<ÐJß7 ž4þÞíc¬W¡1÷. æ“tV'K ÍzBsOÚ!ÀÞ £í|­OnDŠ[̺ÃM”l¢ 1œkÈ‹›4ÆP8pÚ"r—è/±šîÑ/Æ]ËöÒOIâJò$%¯ŠpÁûä"£XL㺲‹ôŠ€mÑ p‰Cd’7ëâ€isÀtf0®ƒü¶9[«30×J ˜è]¤}уA·V!#ü ½ˆ‹Ï%’ŠAÒ°H£vp†üÿOåuÞr…ÇIûÆ-Žnz¤†Ùøº„6}*äNï„4µxÊU(c|Èl—Ö}Úºë¤2ÒÓlºÉlŽðŠae #´Ø+§¤äÄÿœÔð|àtO6ÁšÖ,tMú®óX™¡”ˆ5i(¿'#¼ÈNóqŸ"óS¼½ñ>,ûíÅÍŠ諨vÒ@eåOI| X¹DIÍ—píºññ¨FäÏN;-ôYº¶Î¨E•èC*½}¢ŒçÅ“Yp”ê)ïçLÚ1\ÄT¯k¬þÀÜ¡å õ¾h¤É’ï+ ŽA“ ­kµ)thö-uJÐ5»´Â^Õ3û8Ñã_Ü2‹l©r­ÈòŠ[ï[ÜÔ8<ä·ÙÞ·Õ““ETjzTdª‚Ê&ÿÿwx–®œ |«{BuÜîFÌQ3î<Õz‚öbåLb÷HMXò@jSvó[b5z¸zÂÔŽW2E%0LaÌÿÉ´!…ã5œoòXŠ4²çb)̨(e¶Kü›=¢ËNšÞˆYêP¿¼<¢sÈ~í¯û…iê.Ôy%—µ-Öê´ÀäŸÌûÔáÀÉÒ÷[Í Á¢­÷Ñ¢ƒuZd´• ÔÜ7E^Ss 0"„ðs?ßS›yº¬ØQ¨Qk&òe¡+ÛVô©tÿl +è:o*¡f”ÐgÓÙ ´ R@zׇ‰ž? +H«¾÷†bbÕÿ¨¢X‡.L,B#É%,®™ì+öØ¿ˆ€÷ãÊVXËü’>Üà¥V¡ƒt©Î’RÓ£WzOÒŠ;ü(ç㢞®Ü¦o­±ŽU±ü<ïè&9ºÄRO aÁf†€ò5«ÿA«à eD£wHÄKÏÈ"&Rmohó‚„{‰ =¥õ¤du“§4h?»±Ê£z«DÜQu f>Ý0c‹âŠ +ÜeªÞ‰L襫$p‚WŠüí3mdÄ—„Mù94E,nTÛ¾up•ðø‡ÎŸ§í8xàraù)ðaó±è€1ý`ªÔÙ0ó:EF-£Âõn%ñõ{x¬Ó‘\V°:~¾»£‚u)2èŸÇ µ „˜á!K¸i@=©X÷¥Î‘NDµ(jl²B}¬P–Áš¯Â‰Ä1Ò¡h³WVþþñ ;§LV:ܦò|ÉKýá±ÂÅ“ùØiØ™àšº×ðà¡s`ó®öM:ÄóLÖ4v= +Ç*¾Í‚øÈ‹FÝŽURW»$#Äw6á†Q“‹¹h]`Š>IŒ•¹¤bbɈi÷œ@K(›<®„AÁÀü‚ÃaÑÍÀlöÐ7èh;Ö±W•*ž µÊ—ÌI—6»EÕO¤u‹.€$ ᨡ0‘FY`8IËÙ:U†Šá+Ži-J@SûÕJ*nÍgòÿÀbcH#cH7$ªæQE‡GÕ?*ÐoWu¡]°oM.Œ²HKãk†¯ÁÆ—œPêþi½”¡T÷|èôt 6#ÇTJóéeÄžÑ˘­ú©¶rmÅ$„R2÷o(u5nùÖDK¡.s¥ò*¾Ç!¨ 1ÁŽnè)ØÏŒ’oj¸ M¡Ý`x5Ùð*£ë¡ÁÕÉ\$%1#¸w,!§'’qï÷Hb*D«+–ElV#FŠH;TUu’§ÙPëªjÎM`­îÙŒ&k†AçaP?ƒ‚wOIx¥xÔ^²SMRí‹ÜâK®ß½âÎqˆ.›]v)ðøÎ#Aq±#»Õÿpȹ>š'(o>=ÁA‹oþ#€|VÿbšÇ¿ÐÁ”wíüÃÔàáÛ‡BìIQZãÕŠa=–fÇàÀ_ +k¸ÅÎkÝêlhïS)º'Š0­œ±ÓYŸÁ3„Ot©W>c)üL}ï¹FìQJüý¥Â`FS#ã”tÁ-6í8Þ”µüH…?žFÃ{!¨½DzÃE" Tki±S=?Mõ ¨M@³!5î4³1bRbÊáQ÷Ý¢r½ÉðE»ü<ïh;„p®äá &U2B¨>µÀ‡²| u!D¬1–»[Ê2BuàÌuòÙKå=§i1?@uâÅÉRÔJ«å%;d¼C†Â2!—LpɶíÂôš=j‹ž4âÂkàÈû¢b.[Ä,•Ûõ†¹âz»B4¨²iõ9Lu–Ç D QãÞw¹?úŽ"Ú·Ú^dÜnîpeíüôi-" &áÓ¸"´:¾¡è—VŠÙ²£&ëm£ x€ñJÁßmLD‹ÜéUQÍVÏNQ“¥hYq†*IŽ™@›uP;­uœ›áÔÊ­g©žc7,]_2žaþ¡€>buêÑ~ W þH€n6«¬M«l,yшšªð”ZÊ&ß2w¾uƨ3ÊQ…%uÊ,ìXšÛƒ¢~w,šn­5«mY3 +{ú.½„<ãk›tI7Í€*5 ¿µ-C%¤mÄÓ–iœÕŽM‰m”y<í1Ô{ mÿSÜ7Ôg%K‰ì Mƒ¤9ò=¯Ó‰‘¡ãñWÐÇ¥×|tÓ.qåïò}î ‡ù=D*ü5šO#sòKdI;`TbÎE‹ŒŠµãú6¡TË”ê„Rå…#ŠÕT³=±l›p,çš)#¾l½¶`Z:òÃK¼Ù _iqäé„I:ÿº_±—óCÓ=Ådºž˜lÕ-úÆHßü n¥^°µ´'…?D´&úÎ TÏpzp$õÆ(•©I·/E)èKç۰ʪiƒ€¤6d‰'Qèyµpiʤ¼øæYf詧³0‘æÚÉ2ÜUÇ]+¹4š;…›CÖÍeúÿ²^.»qã@ý.# ÝI‘’–AüɳñfçaÄö4Üödæï‡õ"‹”Ô–‘¬ÜîÖƒdUÝ{.áÎk†n®hŸÎpµ•ÜœÈ7·RkŠYºBAR«‹oòi|fòzÌU­í#yÁ}G’áÿ‹É‰—MÅü)ŸÂ–„ ‹sž…_¡¸CwþJË"ƒ¹&á ÌE„J¶e™3é ?DªÏ&÷ÒâÚ§8ñ:ïòüYăl)Ib‘¯àèÒ9]ÁA¤'|XZ Å0Úq| ÿÏýþ×M±Ÿÿg?W:mJíŸ;íÌ-½Ä‹cC–„BŽäb=]…Jñd*ÖÀ™Æ8–玪rý2ŽÁ{Œ Ÿìg|qúðý—Pìõî8»mwì£ä¸åŽ.ŒÇ8Lƒ¸£í½Ø£e{DyÔ_¤$§áúûžþôØ‘Õak~ç ðE,GïÜ¡åݦ`àØ#ú¬ëáÏêFpDãKÞñß:lbþ4FÙU/„ª>aU÷ç‚Ù_vS¿!ƒK,g¶á jø¦£ÕÝÁþýê™ÛrÛ-çŠÆ3û“”ÌÆo4ÔÓI™âÒ»j·»Œû,a*W É šä.ÅÅl™¸çFèPðÓMø®Z”íÃ|¬œ·}%¶“ÂÜe œˆm›RW p7¯˜®¡¶Ái#:7§ÜÕ)X\L>ñÌeäE+jÜ™qu ètd(ø³j~ ”Èz®(Z")ÜÓEù”7› ´­c°·¼¨Ÿð­o@Î_Ê{'È”®¹'_—™s\Ísz4èõÏð|²„™`ÎGl5”üKEÂlñl[Ìù5å†ÝM^NÊ–ªœwC¼jŽc¹ORÅåŒ>f?[€'Ò…tÐkoÝSgŒðû§ÎÚ|¢+ƒåDA÷ ¬³WyÁhöoŸàŠ+6A–AÈÒ,Øyš4b¡RÆ“$iªÓ«mNõ6a“ß =¼Ã/è­o¦pwíc%(λºþ¶£ÑØ9mÀ§¡Åxrà¸Û£*Åœœ  ,ÍâÒ,Ÿ!ÍM±™ÂÕaÉ68÷WNiBy¶j`Àý‹æøžÁ¦%Ó$ žt!€m¡2,ܤÙmÀ•Þn™¹Lj­$³]©8Î)ŽSö„†³^;1{uK¨ÆÑùÔaZɧÈ8ಙ’ö÷Ǹ­ ¡OOóÎW½ñÆìæëé"_ÛôÁeÅQ¦yp#¡5 Öë_.±f‡¸]ùylý-ÍJ«úEмg¤ömfJT tÊËäu¦z>ÓÚ>¥y«ȉŠŒ î›jOÁJ6¬}x¬}Ø7>üJ`Ÿk¤˜ãºØÑ*¬üƒF/³ÜWú?GÕÔx£ÚrÅhdd\c1.¥ˆ±µX>Ž ºd×Ó-™’ ?cJ˜jåE¥3×ÎùÎcUßÃYε©Mʺ_7-‹_B.á£H_èÅ{ +ð€ÿRÊ8Lä%Œ)EäUÔ§‚ /Ç9‡àš6=»«ˆ?¦?œö‰Ql‹c[ùÛÛpSß7 ·Ño!*„½@b%y¬d aˆTj²^SÙ{ŽHt[~ØB@xèÚ© “ÕgÇ…“ºÐc¤YWË8Õ;ýÊž·Áy…è­)ßà»Ndª'gm¯ºÆì`\åŸeÁLb¼Dó[6‰â¹¿‘¬j¤ôö>ltÒ໢ܚ > +stream +H‰¬Wko»ý®_ÁZ Z/Éå>Š‹ 8¶“¦ÍÛj/Š¢¸Päg#ljlß4ýõÃ]I–ïmxw)’3ž9sæàp}}±XÞ«Ÿ~:x§^/~Ü>Ü«Ÿ~~|¤&Ïç“JU¥±þÖµUëËÉÁËÓJ]ÞMæú×Ji5¿˜Ìª²‚)ó¥ò/ßUS¶°þ·¥SZÛÒv®SÆ•Î5°æf2Õu1ÿ÷äd>9y–¾!\ka{üz}ðâ¦RÇ·““ƒÓ¯‹/èáëÅ—K5=ÿ2{ù¼8xsôêXu•Í½UèÔgtS³›sïeå45Ñš§j¥mSVU¦³eãœEïþ9=*´);°U˜Ò¨é¢˜Á‘Ôô®˜¹Rã°Ãá‹b¦aÒ5<œš®ÏñWœ¥`¤ÂwE‡#°Ö¸rÅsW…Ñe­¦?Tákx±.­š~+üÆjoŽ+×çêíá¯W0©7Ô×B7ÞAÞ /×Á\C;_ð %xw_ô8ãW;|[5®½- ú7ÚŒl›JMÏ +Ý¢sµPñK–Ŭ£CU¸µð‚7X¦ÁcJg:² á°_Ô-º[\¨ ¿æŸ‘²š™¼ÏæÁÈZÝà¦uÚ¡©Íÿ¶Cu†¡  ]“ác:“àݹµ[c¢Ôz¿˜M_ÖxEµ8#Öà†j<¢¦p^âZ‰xÁ©´ök¸Ô™c$èú@ÂþL‰;¶ï®ü{VÌz¾Ê;;|. +6|Y°oœì?.„‹x _Ïq%˜;SŸÀ œðCÝyÏa +<þ£zG‡v87‚¡÷±F,=x +O‡aC.Ìä¨Â¹oŠY{¾ ÉxPœ GÍ2ˆƒ\qÁ']¹çäƔ!=j,QŠAƒÛ!UµöAêä @è‡:¨'$€½v ð¦‘åj‰ëÈÝ>†_6Àˆù‚YÂ2KàÞ’'j¾:NÇ%Š’Y³öÑô,Õkß|ÙJÁ_¾'‚Ǫ“eµ­1›ÇÅ_ä¿·àWÜ|"HB,qÝrLà AFFaLÃ[3œ!Üäx»]ŽsuÁQµãRœÒo_,Ù.Ô-òK×f虪}…:ì1UÚÖ°Ò˜Pußeš}H01ïû¼ŒwÄž² ÍøªbŸ×¡ãÛ6Aq$½ +AÌWpµK­‹tr²ÖB«ÁÅw»Œ+]ê YYVu¯éuhzéAê—ÿ×Êãå}G±fsRJöb²ˆ• “­&[Ö÷ìR“ƒP´©>O@ªÍ‘Z×[jªîj¡úe1 =^#…EBfC‘De‹¦9ßÉ@¾yIMRÆt¡seôª÷Yª;©¡É„°Í¹zG›ö )a ]wœ·ÞX})6€}¡D EÉÍ•q)àFi×3‘§ÎÑk1‘¬Ù“ÔëÞp¬wp&Jdíš *ÓÙÞHtµÞÖ<è¶ÍÃÎÛ +¨$²9=½xŽõ¬ ’œRœ/c\»ÔWߘ®²æ¬{ à,Z‡-ËHdòå9fuV Ÿwþ™dBï‡{½.Ü¨Û ½»‚ô +­Ó©»3ÞsŹ¢8RW+ j‡Úƒ‰+Öe.Jw~þu(;¢f°º¨YÞ2S*ÞxäP¨'¡¡òíþPm¶C5aÉ9Ñ),¸Â~bq"²»K2¸y˜¯jJ<ü´è±¨Y¾ÐnC9&°¶,•Bã4«£Rõ2Ÿz;Ù‹F•ùÇDíHè¼LjC­ä+º +Õ¸cÇMhr’X×8¾¦¯sör—–H÷Y¹ðÑØÊà Ø)÷ÇM›WD7€Žmʪ±J×Z´ÇŬ çˆrwÉ·÷@ãZj–ð#o'¸^EÛÔjŽe˜o‚ºâñËbÓ%l×bÈgM¼•3%ZˆÛà“Ǻ”ݼ¥óqXÉ(‚—E! +ÄG9•®'™¬+п«+Üe\þ÷†H·OyBìC¿¹°ÐDüí¯Y¢PóÔÕÂ}U81OÏõ9þìÔ†®dG‡k7ð{*¾…ÅÖób™Ô}l|=Æ65¶-ÑŸ>ƒWXÇ5ºñ5º•‘â{auf’» oˆfwÉßq ‹,» X?…è Èón;I;à÷¤¢gvô´ :𒤼H V5¿Ö±ºó +€z"HàwgYm –¸´qå%¸Ãðü€—:;y¨ç£]¾qý{X„‹ª0-Aî|WÖÊ]Á÷Ã.5ô†Ä(´ô¦@o¨w ª¥=ÉpÎ Ñ›°g(ûªÍÝbž|BéǼ·Ñ,è4)Ëò W¯ÅÕæ+(d+Wß ùüŠÐª™ Aû¬0äd ôÇ9D(ÖÆËÀPý¢ÒµœåiOˆÊÄ‹••$#_Ô«cA¾à=in‡ÙéÊcÜË“”¨™;ÔꄃÀˆ VÚ‹4&Á‹WÊ/Yƒ‚§–ÄxðÔ÷E¶ðhe_G2x±#ñåv™€Pú,¾YMPxt#6f¯ÛD&AÈ ›Né9iý¼‰Ù¤àbz&Á£„¢ê"_h!±SÍH%ÀϸöÍÎPá‹«ÚTè¶Ü‚É™ˆhc94¹RËpŒ+„k#ÉhL$²¬r,ÔQAäóâê0<‡ØСÂU¯P„¶ÜðþÄÄÕPЬ,ŒÞ706ó +46•œÃp¹»7m^É–j(´@`Vm×JN•ÔY0±4ÖÁߺ¶j}99xyZ©Ë» c·Q­m媑{«fxÌA2¹ÀÅhGýW\õMyÛ ñ€ÑtÓoTm¯–7´ÿ­§V“ÓÉ¿IÅ›Ø|“˜@mÕ–ÎÉMПü©ü6¡e[íZ4îÑa n—ÿŽñ9˜ë_Á–š_ Õ|TÓ1óA>»Zµ6-ú: MÜÿ +±À¸$9ñ2”Ô î+ÃaoõºpD™¢/u2û¤˜a6DÿFÕÃÑNÀ5Ù"LÏak2úuˆ=„ súÜ,áù-´žÕdHS–¿¡—ŽGào1§:²À•ëTÉ}¨v«wèaM³¨Ýø3ýdÅ>1;¹¦Ÿd‰O>•÷‚z¥Sš[ãØ[u OÕõ]à¾èä{ÖRñ¤Ñ›¯ócÀbo•ºžW^9ÿä ìä±J!àãò&ņ:a0E7AmF¨¼/˜€N K<Œx8!^V4LÈÑ|>ö鸞 xSÐýž¼ÅEt÷™Û/®/ ]ǽ¯Mðõ!½Á6h±í¡ÕlC²ÿ¢¾À)Z$Šú-øÛh¤ ™v@óêaÓCá_J;¸D×4ðŠ²oÓôñ‹ËIø¶-SÎJŒÈ[«üFðÝ—]y_—Ü¢[§¡ ™Òu}ªFH qG1ÀFq?ÄÆWi€Ý›V*X¬`Õðáä¡ B#ýÀÙ5€Z\ú +œÚt} ¶Ó'H¤#0YÅ‹¬7Ù¤“iU0`±ª¸VóáûìWMoã6½ûWè¢~E€`³Ù¶hî¦Ç^\¯š5àØmì´ÝßGR¢([ÑJIC“ÓŠ\g†œ÷øæÍrv¸³ž)aJ!egÇ`›ºs¤,í:žc9;ÜY§öôíN¸p“Ä×¢9‚ÿ^ÎòÕµôtû+ki\¬>xõ•^}±ùÓÙÕ-/.·¨y`õÇaò¶DäQ#T}×i+OTÔÊòœ§x¢Ò´4•è !\ýµœ‡dÒz=³x+ÔþÔâ³6PZÆDËY³ÑP³YÇsÖÁX³´´<ªÏÕéåû$T¦yüëNw`ÐèDlt­áeQÄT(©ÿWàœ9´{Åq6©Äi»^íWËÅ¢å'›¹“ ³º­6ûŽ8 +PjÃ-œDŽyV½Áéá´8sŒHÁ‰G¥¨ üx¿8U±Ø|Î}á` +wh;;Y™–¾dYŠ±±‰õXõG—s$alQ¶NÖœC«÷CÂr»Y®Ö«Å~µÝ<`’ÂOùÁ"BüA‚IFiÌxã˲ÿRÝ ÛMä®}úëAÅ?…,~.rÇ—/„E_A^)}ón€ñ^IéäóȗƧ,¦ÆD rô€ÿŽQcÊã˜ÂÀ91Û×pÆÅTÇ1ÉÄ¿{lHÝR@üØ£Ax .45¦9Ž) OF}og\LÛQ‚Ù NSaw1%|¡dÀZLɆb¢žÖr35&ˆéU–PÔ©1EOL… y‰“i!§Æì{F)¦€óãzò9{ž‘šŠCU0›¡¥3Áë‚¡Hbœ *û ÅònY-vÕoŒTíƒeé4”¡ÄæسtÒ:Qj†¸YÚñ®EÚ^×r3Ž•Î»bš›]×våþn~jŠ“Õ~~ÊQÙâäkq·î/øäÝÓ| ¼Xi9We}_ÅÇ RQÁÀš¶\ÔÂ¥ -¼œ¥HiÙp±Ùh¸Ø¬ãAë`¬¨ÓŒ$£{ÐÉxý2Ü VZ•ZX•Óp· ®²Øþ1š~Š YfÁp Åt'Ûxö)>Þ3s ì V +[“êû-†?¥U»<é(F­Ùñ×N1%¦j%$:ƒâÇš€ÄåjWmnñÁ?Ò)XG¯ ê`ናGïCyT˜($DRY”/<ü‹¹-Nv»êö÷õ×ðèC"ä¹Xîïë_«÷ß]½¿ºŒ¹óóó"¤©_°Gïälôc–‡JÁŽÎè,ú‡7–Ù'È…š P PSb´C3Kåx7—ÅÉ…n7ªÏÓš$z™WÏÔ^—”£‚ŠZg0¨RI§#*Wsbp›ÅºÈ]…ön"óã›VgÊ›•ÜXÛ9Äö[¦Xèñ•È”tßçöG†—ˆÍ Ò0jŠ‰GÓ‚ΘÍhÈ1¹J4ä®ôSK_Ëi¤LëõŒ0†òö§ä`ŠÛ@iáÏ놅éáœu0VÄ,#I8àŽ,د x@Hëh"./?=­a¥úãôŠ=~Rú_”_³òc”d H`xÅ; 忾~bù¡Á +€RáÖÙVa‹á«£ÂdL®ÂZê\…ã2Sá°‘©pX'öÁ‚ +û4#àßPa f3í½„W¥ ´ÐÞØ«zª»}@‘ù=ÖbXMi nŸg¼kš¦ÇÂXPTéæϬÇÂú +Q¡Áw/ú/ÈG§Á˜Ü8Ì3²uΕ‚SŠ”– ›†Í:´†bÆ4#ù(»|l :M¡Á›ˆRüÖ p,Žf˜¶Ù»½ýónAõ¥ÚìVÏ]5žŒª×§” Ø9ÀNê> +endobj +88 0 obj +<< +/AIS false +/BM /Normal +/ca 0.330002 +/CA 0.330002 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +89 0 obj +<< +/BBox [296.638 519.086 513.987 334.319] +/Filter /FlateDecode +/Group 179 0 R +/Length 11689 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 60 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—Ir%9D÷:E\àGqNÐè#ä¢Ë¬¥EYß߬Ÿ;_©4-¾@2H ®ä¿ÿ~üõ¯§ë?ÿûøçÊ^ÉW›õÞ5Oþiwïóúõõ¡¯yï2®WîwYíÊéÎs^¯:îZÚÕïT¯W¯wßׯ›»\/ÝÅÙWžwmýzív„\‘ób=,}Ñ÷½GrnwJ¼³ó=›Îä|—Q㟹µ3îÅí|”ë¾/¾ædK_÷|§Î™Ön–s+÷¨(’ËÝÐÒŸÌ»ó/w o”;s{ÁŒª/R½ë,WÅÊ=õÁ.÷Êõjéî™KÚŒ«qìzu5%ôb»Ñg·­…¶³ŸíØËå#M;˜3cò"/l[óŸ'§ð䔳/UT8˜ã©«ì»Ìv¾? #Ï8Žéˆ»”ë}XV‰…<¶ÚÖíýžÙû©N‹GunÓqâöìëð¯”u—ÇZ°Ê9îýy¯¢}Üγ×›ų̂(÷{ùó^pO#jx¢ðÑ ÒÇÅ%Ý«g~ˆiËקݛjÓÂ$‚Q’„p +MÄl¤¬ÝV¬\­÷œUû9¡ b«Wh‚LÍ„ÊbßÕ§qY/W^(”¤4ÐÉãî G“AgkÆ…ŒàžÌ¨Bˆq$¡C"z*üÍš”~g,!wr7h„Á\½l îËš”l»õYÁÏ$k>­ÚRȦB´Û*o¸8ØX×y4„ç%t•XuHLâìq|fù¹q°¸¸µw_çlLé®ú„;É£Ö±µCU2‰mÁp#£Vy m™Ò抸º½W>µÒ­#$Qx=²ñ)7ç` [ðOF•¸"Ý¥zA<À›GnMÊvŒÈ8N"‡ec™áUÑO +ãøèÓ ³Úê +ö??þ©ü/GT'†²´¢7žä²í àÚªLë;5òÜgîïÄB”‘)'ñv®ßûéÜj1E–ö8Á(“H¬Q&¾h\3vøs8çWš'¯zõBâṂAèD d}ëò½P§K¤%ku{¸Oé¢xüôDP;A A`‹JzvHYØÊÞŸõÍI@£¼ùŒ ¯ˆ¦÷íDªË€…èµ=Í bAgÒ¬åXš·cßå‰F–’bDR|öÑÒ1{è…Be*ò”Çf´ Tp«ªÒÀ²Ij4K­·³g+p‚&TÿÈÆ3P`…$@»Éúl ÂX+±bâ´öªÞí‘ŽªW¤Ñö ¯†‘K/¥VM£ªp™O­™[z%á­*»ma-Hn[R*ÁmÒ¾â‹*²b7 ª £›E ôJèÓs65pÚUªÑX¯ÃJFÄ&Ál=N³ÐÕðQ7Çê}EmYêKä 컓=¯n–ùô‚=1Ìx/#RÒ®ÒS¹‚êì~yaN)qÒ£1çåW‰ÃC>=TNw<£mC&\#QoˆùÚáó¹b¡ß'ygá†eBîJžJ/ÂWùÍ"ÈáóE-ò¶4t{ÎÆP\+2ª¾P‚äd¹b<ÛQ2F?+ÚAéÑÀ¼bY-äÑìÜ“êÐFY>±Õ/å(³’“@è +h2&…›Ê%³Ôï'àÑ.ÛÑ)žR[׎ÕéQf^O Ô²«ÍS÷åË´Ÿ¢*§³“‚«ÅB.¨ê0ü#2ÑAcžßbTRôË8Ž°¦¯ª+ä{c3ÙôÏw´xf‹³ä]1‚  ®;Ö*o ãÖ°ÀŽoß`zQkâåðLjsÕ?QØœ5ÈÉ&“Ù‚:®ùã(kÇUçw†Ü\ŽS-w?ã|QöúMiXZ5T¬®Ü{n’#¦½«^eœDQ¥„}œvßéŽùÎó¤QôËbÍpœèJÅWðkÖ&žhå†ËLÿºS§ðÇO™NnC$¯–ã±"@/r»žDˆf&õ¸Áù¥æ¦ÿö¹º‹9ª;Ò„ÖzÛc©D³ƒšM„ŠçÒ„•¢Dï} +êQtUT²: Ç'éÅ ö4VE‡ìšŒ–˜×LûˆÔ¶h뻫ju˜lT0í/´ ïD‘qŸFŽ§p q&æ´·¿\¡¨ý²¼ò/¯ìiÐĵK°Zh“TÔ÷<ͧî滈IÛì‚Ô”ƒ–¦°©8h)S¼PUçgà€ä•$Ê>aÔihØäÿøA­¼\»—ü6G¨±~IÊþSÊ!˜Üœ<š·›¥xðìÌEºu=R뇃bÀHÏg¾sŸ2ûùžwÏåŸa—ú0„!…N!®¡­œÚɦHmËÇôµTÚ²g |ßôâÛ±§º’9îMϘû=U5› 0C5$p€`çzëF ++sÚö|Õhs”hEjÇä¨Ò­0©9qñ¤Tï!Û=lüðŒÑ˜lCt+_±°¡:Øé\u6¹iüŒü^¶}ïÙ¡U}àL#öo^:ï5¿3Ñ×’ì5²µge8ƒ˜ºá6Þ”''j|øe× â¥MsÍcž{1ÕGµáØS=…áäÁÕµÇêféo¨¸O÷öÄý¸+÷n ´|"5¤õJ‰S¨Ÿ)`,’tŽŠüiБ‹Ûk0)5ÑÎ2ýäP‚•a#H,¿ÁÎö”XEŽý$³`s½|åÔ›iðÑTwŽêüþÏu•cّðܧðì'j×yœLо:X¨ªßŽº©/©(. 0»çN#©ákšL“HJò¸†meúD&{ò_I¸À‚†©ö€ÏE†»4…+`h,H0EÙ°#dŠŸÃ¤«ÖÞ® 0 ‹Q×0á~6yÕœ>í2J«`q#i™®dX“åÑ>y5P¬P‚¯×l± Üt†ªm[µ•–Ú#p,Ìœ»Ø^c¤(;V–3l>š¼·xX5¡êu S.ºÅj£zE²öIh•qš‹¨êyòDIUk§qBSŠu7äãó³šD(\Mî®p’c$0*Ñ.çæ®-˜´g¶˜á4ÖL6f™žwlãSc;QàÜøùOOq&‹<ÀÙ4»C“V5¾o—:m£|T`©§°C8Á;ÞMŽ}žôG‚Ƴ:»¶ éį šç“^`ň’å°N–hzµP˜Ý˜Tª + ++Ñ>0iñë’5-vSÈ¡Õ­e"²T žnÓcÔ‡šY™,I§Å"k|ÐŽ5>IÛâY—çéÖ4sì·Óaw}’°Ô@O=Ânã‘g°”Ê©Fáv¼”uOð=o)ÎÚª‹å‰{úªì¯Væ2‡"Æà åmÒT¥w»ýcìï<ºîau!sqvA—ºå&BÀBÁToeK ´a±†t Çdj äÁ<É[yá¨UÚ—H,©f&{+ 6ªào0®{uPD‰v?Q8V%G©G%ˆZsÇ,2ЃÍÊÚdyG´§Ó]V«vF¦Šy/Ó¨n †0'Æ0–/­,Q­æöc®b™›Ùlµ' ÙÇâÃâfoÛò:ßÝΰó“ðVê«ýfå6@ÛÜÒC¸fŠîÍjG<¨¬;‡uGÒ>m3¤8v ¦ƒ+Ã8dK^2>dì@0ñ$ŠÛýîÂz‰ŽbˆÙïÇ2b‘9 »y'mMbz7s¶gåË™íãÌÍ,énü|GÃy0ÞjAÔ4„ˆ!%>lôÐÌÚ·ç +1ÿcG[5KãÖgëÈPãc¿úhqnù(º[-ÍÖ·OHFR÷î@8>ðŠvl/3¥'ÇÑ}b‡,LØkùD1Ky¢é•/Å¿è«DÇ[üÊqcØ^¶—Iþ"·öWOú¹Ùºð»¹Ñºjzi͉ÐKÉ@¾Ex!ù©R Eÿ–¾„ÄÖ¼çüΪ‹ÖßA‚ZV ¦TµÈ®SJîWÙc¬+Nà*Cd"«˜0v-Ó¡búÄôÜ@¾ÑÔô:{ºª‰ |BÇŒ¥Â䎎‰óÂ[Çp‰sÇŒV,a00•Ÿ$.vqˆI2 »˜ñOûÔ“’éñ+I;Hˆ`®?“ +½8•b\—ävN)’+ÈÄ3z‹dœ‡<‰‘ØI› *°c;´Ô¬ü+žY˜lõÉÕã_ŒÅÊžîMqØkÏÿÀ¬BE_Uüœ+EÔœÈ:ë¢F° Çãk.½/»=£@¬—ê v“¸‰¥ŽÑažƒ…ÍJ¥ôÞ0g—ÌÛÇüO­ ;–ŸÝXÒÀI: ¼É÷#ô“vÍšMŽ¨¢*–…•š ã£LY´Ñ½áðjؾ©oÁ¤FtÕªŒ1µW/€1ß(j?›mò&u/î³Êb½Ô~¢Á¯-¸ÿ©Ö»¿\þ ¢»j*ÑIvКمÔ,Ê”ŸQ­Dñµ^Çù]êS'²wõBJQ~(Ô¶ˆyÑàÒ 8£±§4FYbP¬Oñ}Ø"sÜáköm~a¦¶¨ "¹PÏþD@žKìÍ”Kîqž³ùöò‚!…ïî‹‚ÉÁÉÞ9[´ãæ~TêÜ0HŠ3÷ _MýâÐ5#݆2> î">P¡8í\jª¹" P\Hк Wä™÷·B4§äd35oJ†Åg¨\eŸ‘v“¨DçÞX¾K¥)%çˆÓ™ÉÓ‡ ®’……·œêŒ ŠááYë@6ï²iá¸êlÓ.`kå9DÿúÀw† éæ3ºCV;oZQ–U`R9°QhØúº×œê¥]òð®\ZdL7CÄÐ8zgj™EÝÙ€YÌ}Ù¡…J£} .ôîš«Np0G°[#’朾˹UNfHÎ"2}gç)§—<Ô= +KÛï{ˆß%|dvwf/ñ-,—ªâ8ÞCöŸ#—%ئ/>|²¶ò EíX¶‰~¼+þ2ó^‰ÂäŽÕy¯Ãvtõ%v,9oÖ¦J}GìFñjz!ÔÅ/;« ¦fdœ_|à œ5…Æñ þ0ó¯ü ·1wÈ_ê $DWw„øúsxy?÷ý{?w7qnK~¯^häµ_.¡OòC³™€uÖç\í®¤C2 .ƒ«„3—,ÃW—'i’Xš¥\aú°Å`71 +Gb¦O&«´Å$˜n&MÊÏÉ«ç:¥˜|ù†%…÷ pV¡kÏsü/Ä~°c7[²ÍùH2]ÝD‘¨V +Ñ#lN’ËP–0æÄáÈî-LÖʺ#=µØ=kŠÚÍ&Ÿ0X‹(4ÞJl&O¶jä$ÒÜñˆ&ö +wi¡cH1‘dv!à)5äö/ +¢ïç9~€6”ñÌЯØÕL¬8³¿8›ápþ Ñ¿Z‰Ý?²€8) ŠÉƒ$ó¸O¾in³Ê +)ù¥•FD'uUXÀ³(2Ç#퓼´X°ÑÒ)¬4Î}D.–w°+xt?‰eÚƒÊd%Ë¢ K}ʉ뮅[ï“ §nßbmpy™YvͺgN©·–8VÌÏ ;’"EQ¥=g¶*# ;Yè³Â.ô JKsl÷\„‰_ß·¾»¾ÕšîØ ñWöçXVŒ–]7ù‹å :F‚“b„]{ñüd=-AÂpø¡¨FeÒ ‘àR–ú´K¥x”ó­["$Íú ®ªaêHzðv- îµ(ð-䀸XÓ1éÜ——&‹àj®(h´bmqØÜAnÌÂÖܳ9þr2Ј‰­ýJ±$gÓÃuÎóýCæPÇìÐtú=¢•mú¢-궔¨ä€sgŸåíЬH÷㮫Ër‡]e.Ðïi£–óL2A÷ýÓÁBÙ®ŠªÄoILÀ¡Züî!‰ÔúE­J•Üð¹¦SÀÉs@•Ò³Y:*çµ€§d$]£ ÜšûÞÖq”å‹bz!@B¤Võì …×LíÈcvÁÊyÃj‹bÕÞà£j+¬Èo@)N±hE1_€Î‘©D%‰XWJƒJÀeM-J:ƒøÑPÿç؛ƌ-™bÝo4ÁZ˱A\;98—Dá¦=ey*þôðÉ‹NÃö)ˆjݽ2t€¢aKíºp»<ŽnUb)ôŸÄa7RuÅÙoꜧo,ªaX¦K µ–˜@Én~T6²V(ª&ÇY¯·ÖVó™Ø³Œw-~|“{PTm ¸õ± ŽümëÊܪs‡ê +®Îpü©£~p$ [À höMœV½é7ëÎÀT%nÙ!ÄyÔj‰\/0+óLÍ×ð2¸Rñ±4@}µ§¡‘îõT"#BÝÙÃOcº ƒÀìþp hØ)räú¶¡éÇk(û@ÔÃMšyÈ-ËßÌ6HrÂpšÓÓ©<ÖMIuJ™êSܼœ4ª”Èž4hM¦&íÀçÌ# «º `d I(ác$×h¨boÜq½‰ª†^³HÑ9Ìÿ Ü1Þ`Û:¦cA¯Šf=Üâæukp.+‰I©šû¢GÏ”úüܤ:%z™nxò6QĹ¥œºpk¾ú…™ R›Âà£@ 9æ­Gl˜(ê¦ßÆc hlÏ6úœò/L&ÚºHR*«]Ód¹2^ç€ùëó®I¨Ö’í׺¥!21ü,ö{|Ê‘ UãGõQ ÞƒÉà¡àü¢/š\‘âLôÛ)¾\GÔF–oÕ˜Úð<sQÙ_J…Œ8š’àÉ4ºMjÏüÀ œc +­E€Ô½xßÖ€:ÖDÀÂ΋Ðyΰ 2†û˜G~&–óå¬/:[ÚâŒ,r'#y®[ê±Ñý±IhBHcOM‰ ÎùsŠžu¿QìDö7Y{‹n‹okiÏÜ°)ÚNKà‡¥ñ`ܸRX;ÐHãXJ %Û}€ á-²¾×ØæћӔ“V÷L—z~Ai¤š%7kœ.Ž'é¾a³+¯âæþôÁ7Þó8»(Щ†AxÀòpü¢Èç ZÝý;îãáÉ|!†Äš˜qHÌñ-4XÜI¨Èã#O*·E0Gš=ìwùc=ö]+‰ÅKaéaWÿ\"¿—¥²ÉÙ‡Ìl«òèg)ñ hŠ±ü(”Ê?Y†àÕË_öHÒÀܹ½ÞdÆr ÀãÐS0þÕD5ÍpUÙK7ŽU;kŸÈ‰£ WTÊZÒ‰ýÓà\°nÝ7ÖŒ„A„PûX8¬ÈvXõ3æ*‰d4Ä[‰¤Ìpß9l=êŠÚ“b*6•örzè*‘Ë£Îe (Y­æÓz®G¦¿ZÜîbDˆ°„;‡eñ®$ÁرÒXyÀÊöm®H©FA‚ÅßZ"v¼°å‹f\– Cˆ&§ÄC¢¬ùGèZéDu4Ì0&zfÁgà-3™‘¯Äö6ÿ + =;Ø0ÐÉE€œšëÑßtÒÆ#üñ…Ði›JYÇuèYÖ(wíLˆÛ¯È—Öݾà •’Á²›h˜ÃâÆɨŸýNÊÂÑÕN]¬e3TDj’f\¦K  +Y¤YçT“"Ê”´ˆ³ÝŽÀ³:ó ‹„0Ÿ#“º¾(PÏ´Koö2Z*—ï«> 44“'¾Û‡Á)US#:µ-sæHëwVRÃ-“ãfOl8ª2vœ•§ð'L©^T2“dë _.ôÅtBéŽéªÜ¬cèòàTóâ#…ù®PξØQä‰_hˆ ëx$}ñÔQž=H`çÅjeŽÇ'2º´ +¯…½ 0³ýÊÆ|/*‚õ­Xxò­ëŪÔþÅRįA`Cc£0,‚8X +«r‘°½VÖ²ÉgaÝ´a+xH0XO.Á!àüçýݽÈ+ªŠ¾JF§Y-÷‰gÚäçÅ à…¿­Û×!ô_oy¾]†JaªéÁn¨äŽéÞ0â=' hÇ'ÖÕ^žD‹g™1:ßGjZ$˜ »fê5‰Tn@šªyâ°W=©‰*èWe°‘Y–ݯDÙþ“%"#Ê_F$G¹…ÜG32Í;úP¾û¥-Y°ÄŒD”î0tW£åÝ/1ñ˧ÿ¾b "N/‡3-\Vx°’ô]ì}Ÿ#½Ü+Ÿ“Ï(í-'¢Â~öó{†?²Äº¼,H?ÞÂ3,0ÄÄéö¿8y9 œUÝ3Í°3À!Ì!Æx=»\z,>xEšP_RÚ íêz(£>XÄ ÎÆxÂB4Ý÷5tr"WzÇÈ$ž-Y†ÚŒjiø á1=}B±˜Óê—~³³çJ°áøÒ´.Ã>‹XŽxç¾xÌ©.Škãø±ò}ëokóõÔ2hÌÙL‰Åc(,Qü…8âóŸ‹eÙ`9vöj°õ°ãEÒQ×RQáÏïø†fÒ­"_àZ]Ï ¬:ð%QŸ-a'‰¢êȶ/Ñ™“Džó¥D\5‡“xÎü„ }‘6’ˆ3Ëj¬{%rØ»ÙmYe¡f³6Xj\ž|¨ÌdK^ÔÖ$s§Æ¬4çiâSžò0@Q¬Â±NG*¼8(á?ð¤Ù2YÛ¦xì:<ÖMB +¢®™M†î™º©k #! YÙ 4À„éoOp,⮡ÚG÷,(Æ8 ÿ7à™¾(ÁªÖNº)«Yç,Kg±–„W·8oeppôS_ø¥Dlñ'SÖ èTfXÆ2‚Ê"Qø;:2tØ°af/¥îbu÷ÂdN¡Iê_Ù¡þ¸ÕÐùT=Œ2Þ±+ë PÃîæBÿÙ™Û듺W¤–Ò=茱ã•ÂˆælA¬›{uד~‘ÁÎÖà¤V^¼Žå|eC[Uq7â»,Ð;«QÖôƒGq^j»;ýÜÅÓèÕsÌuNf…²a®ãzuföU%ðCŽ# šÍÐÐ,’¯Z¥ß\Îl’tiù+‹†XÄ Ðpã¸8u}'*˜àw³H°è +‹°7OK‹²x|Öø{ñ0IãIÊ?Y†@¾CTýý|s$Sÿjù*¤¡}H?ÂržåÑë®*üŸ:X"&óûO–ÆÚÅšGOw ©Ìïíq”+þï+ø²\ÿJ¹ø(7^¸üi‡_agõ!ŠÃŠ}¨»a¨ñåHi²ž>QyN_+º¸%Ž) Lw·{srÑhT–{=˜Y`ÏŒ³ØÖ‰œŠ¦¦·÷͘î*ûL1æ÷6å&^½ÌñFIGfS²ª…õ‡¨ªX}#5}™ª*ÁàtO¹ðmkU«eI±6æåþJ þº«$Ç‘$Þõ +}@ _èÛ3ú ô)óÐÿ¿´- IUPa€©e,NÒhËë’ô¾ÖQHëÃGhiŸÐJ€p0_†¯'1òÍ ÕDvÍn|ÍflÎ +ýþm¯*úK@¹¶Ú¯Z‹)c¤˜þð'€Kö…÷ d¨Õ6­Û?Ý]H 5ý©Ú ´Fêç§uBç´~ä´Ö"°ñ¼&YAœŽ&ØøbM}Àç ;+“Ÿ«ôrš÷€LƒOý ¸F¥Æd×½·ì †•-½ª–@°Š1ºÛìkq¬k”¾ªîéñF®ª:w•Mfn¡EK¿¬³Þ–…ÏÄV'd13ç?‰C²/ I¾sãæa£ph,^ʦ)\ÂTmï4“/o<ì¶ðÅ’^§œƒ6‹†Ë±§C£ôþMƒ¿ŒÔB²…ÍhC´…_háç' zD6Pb(†Ñ ‚ëÅ¿Ö~å4 ãK½Ÿ•¶7]ýrðgY û=ÁôÓT‘o94l(È«]_SõG‰ÚK +Ã)z×Å\t[v`G¥ú*¼Y=ˆn¿¨ÒUÕ;gA×Ow!ǘ;dÃþ¤ Xåè@'34=4*/±ÂOV42lEØ@6 K¡;Aà:F´Œ²9‡¸z1ÍÂ\¯/Ã%Ð’;¡û÷Žæ‹ÿ ¬ûr›N˜!싘¶Îá€V««Uyù‹WÊužýºòZþÂòá…ʳ°J?w‰¤^®Þ¢G3Ð9·£”UõqÓѪÝ`j!ï˜!Øïµé¦pœ`—™°b‡7·"G§™µ$øë’¡Lû˜Ûðv9†ŸÝ·‡%¾ +1tíMüýE_ Œ•u!š}ÜÊ1Å‹)M±˜ Zjfv7VŠ(;U—qŒdD3nÖx[ˆ…ÚâÀ+ó¡ñ…ã“ #¨ Þ­Ð’ÄCÙS$8žK±b²„ì"€5DÑ+@wC‹vøb,UççŽÌ<7®9uböM‡lÃ(¥ KÑ&0ÿq¶*¶ù¸¬#Mô¿QÚUÁJÐ7 +Ç;±‡Â(%ˆám§€¢÷Ë‚:’V×Jš6 ’À—‰}›5‡wW‚½:¹xÓal¡¨âÛäh;ª‹ˆ= -çÍhA + Wž;!ëÅŒ¨àFþ­’ „Ð/Û~x-§hjÛqBKüÆDôE ÛŽ6$zeÐtOØסÏN¹ uX¬K%rãSÕ·§æàÐÑÆQºBÊ™€)`Ðî¤V†òAKÔBl”µžù7.›ŒŽÝB*ö»S2õ(±t»¦yO{:>š9ep9Îq¼D¸_ùå+Ì¿ “'ñàŒ°ë°@ìt‘Ô‹Ö)Ñ@3Æ1%z-^uY,. <jÜ›M¦µžpï¶qï¡ÄbQŽÉZµoìÞP蕉k²rÌ-ìw2¾U€²äW€d€å§Æ3ëúšè­;2"ݶjšŸVæì.iu§wY¨h)É—`gó蟃vb_w“QPx§ã8ð(-+z/ˆöž–Æ7OœJúEÂUezûœâЂâhÁ|Kbí-Dž 1«Óê×’ÝõÒ>ËÖlø¶ªèöBÈâûBeØ[A[&§„é¬ÐîÝ¥²ýžž +“ù©ÜtÀ€Ó`©ô›K^±ëí65X…šafiŠZÜ-6` +a¿'—? çºf„‘YvÅ53ªtÊ9% ÅIçL£à-^sÃK:g¹‚ãfð²«ü솱[·ôMy*o¾©8ôa°&øF\Åvå .e¤ÿæ¦^T‚z›êf“u0ºª›“€¬‚Ahˆ¬.veùª4a*ײ‹8ŠÀ]¶¡è2€&ïÆ‚‘pE_‡vs¾íFn½Pu•’¨É…fuêî,†Ò¶8F"èPM§-]:³åë!; +ƒ ÆE"´çÕ$¬œtŠZÙ‚ä Œ)f3ä`΀٦MZò‚9Äi +wõ:Öyr6:éöÐí§gázò“uо+LOóÄ–‹a&»ª·§àfâ”1&¾»y¼,ŨE6[‘- \Žæg¥àú|æ®·:0ßd Ý«ÂJ_U£üˆ]‚ÔQ¦ÍQ® |`šáfz±MMÏj•Bæ®— Oü—1K6‡±õªUjaÓ,¸M ›R±÷]Ív4†ÒH:ãecZ*~eÛN½äçHªØ^EÖºH5OùµÌŸ;–É;täãȉ¤3ÆÅ)$¨ÖG¶„ z¨²‡ñXî‹ ña·òÙøÇÀ¶oTÓ'¸°ÐÅ?·&uGvFò\p»¶fʳ¡=aE/`K«Ѿn>·Þql6*.ià½É•ƒŸ°úöù×âtªÆÙF‘2”¸¹ÊN,âÞvNk&(qi€°ÀÐAÏ~eÊ(¯˜Ÿè3dA¶µ³rŠ¨H{¬‹x«ªQ12oüJ'‡CUñ³'¶¨ËU‘õkA5FzwØ }Ò ¿[>´éBZEgrª.tÊ[º2Ûªâ\â03$<6¯¶*'’ݾ2úÓ*+Õö”)ýnõ9&ÉJ“ƒÁíeŽæsH7”‘æÝÍ™@® /tN$4!(Ö´«n™o×Åy ­ÏQ­»÷Ø*ÁÎO>N 9œÍŒé‰ë•D!”°Ì´ GÙ„ÉVqŠúQœ:h1µÝ¯Ds†Lé™ÖÇM~À$>/Pà¬ßëØ$zÈç¤àùz\MyY<Žtz5…Að­1Â}‡á$Ê’T²{_>ÅømNCÿÖ~åŧASR ¦6áìx™ªè˜¹¦˜$ð;Ò¬1ºò3˜7i‹·ICš9µ„}K‚$ßGô5¬¨cýW‘Ó êtT†´f~Ö5À!êÄáíV.ƒæSgŒ¹úH¦"ºìr•d&Æ ‹£ÙÃFWv•<ºÚÌDcê ƒ®l‰°xÒq,#6‹éŠyŽã2çñý,i*6gÖp!9wø1%¹j“3 hð7iöø­E§0HuXè:¥?¦®ÇÂÍS}Ù¡`ô4³‹Þª£®^}ÀŽU4UvçËÑ—˜}ŸŒ•:6žŸ{À¹RºîàcA¡ööÿ ,rMÀÝX]S`é` îšš‚bÕè6`ybŽøÀ| äƒ[ÚÀ²ØÏ…%!`À*À l0X‚Û‡†ÚÓÔò5@`an~‚¢)œ¹ y„O‚ +endstream +endobj +90 0 obj +<< +/Filter /FlateDecode +/Length 6055 +>> +stream +H‰¤Wio¹ý®_Á"ài5É&»X,`[ÃwãØäC,t¯v5š‰ŽʯëàÕǨµ†Ϩ‡]¬ãÕ«WGoï®/OÎÄ?ýM}:yÞ>>ˆ|wü^¼[Ô¢®´±þÿ¦1âîêàèÃ×Z\Ý­Õ¯µPb}y°ª«Ú4b}&øË“pUëßñÿÚÊŠ¦o*­­ÚVÖ:ÿÎæàPY¹þýà§õÁO?û›þã/‚÷á]oþútô—M-Ž·?8úº;¹?Ü^‰Ã‹ÛÕ‡wòèç÷EçºÒ[Nýn*rsÍ^Ò•R.QŠŽ*ÑYït߈VwUß÷¼û×á½lªN>KWõÂÿ¥T¥Åáƒj½¹R'þ«ª”8¼»÷reáë…\<.¥êÀÎN$+]WΟ‡þ3¸–Ê‚õ+¹ê«Vþ&µ‚wðŽŽ\ú/mrCj°x'NÄ™ìà÷­ÿÁˆÃ[¬ÇÓº 7þo‹4àô™\9xÿAjÿá]ò^:¸£½€0ZˆšÃ)‚§ÒÐå+ôçü§ëÐÿhNƒ +‚ÖÍ@Áç©PxÂà\‰iälÞˆÓ q2Ö‚ÿWR9ˆoK¾ÆRûkˆáÄ'~‡ú9LŒ†?ÏŹ45ûèMciï`ø¢Öå­ThéJ€)@ØI´Éi:ðtPÛþ„’Q~®°\X:(»Côr’¹0·´ÜRh²ki;ø–c´¿YžÜóÙëRŒ•N&(Úå7³ÔÀ ›wù¿Ò(Jf +®ðEòjÞ[3o݆²‡m{-dë\ªÓ’ÉŠax/V[€UÏ«®+Û÷–€u¨¬ØãTZìVOtúÅ*¬úÄry¶Ñf踬p`ë\xÐøÏ ¥›-[@FKà1üz—[´ÆfÉÊ]" +¾žÑ{‘D®³CÇ  ²Ž<@î@ÊÛ€e—!pÌw\y½ÂhÎ;Š4ÿÈø@êr“}—y¼­Ðé,¹!ú,²b¹H¡z:oï2ÔÀ§©ÅáK}·qjHe3SÍuS‘Ê>JƒÄûÀL@â dÄ°?¶|â! ¥é¦†óCaÉHÈëFé‡È”Y² ÎÔg Ýè#Âx°ÔPéFTeàãØ#d^ak—ð7=¿7±˜|5AvÌc¼fֈ׉´¸ ½‡Å8˜åNR!M[&ùKvùfxžÁ³ÌÔ_¼‚WõH:Pßl^<Ë­J‘Ü›À]«+q+£òf]JwHç*£vû‘Y,µ;Æåc4¡SwÀ1ƒ!Å£%/$ëŒH‘TGåX u0!ÒÔ]eßr%˜mãñ£´B"q,úY¨>\Ãl"FÝ'|ˆè0ÝTô—§ó‰¼†Ò4w–J<ù2R9Ïã†XŽ0S ¬nÔ Âl›éõ$) bT¼Ä;#>OYIe”)‘ù}¸Î¼ü/îHV‚%ÅóÝìï@0ñ‘ϼFEðºÁìòÆiÀ®vø?¦ì³‘eð‚zä&)5ÇS6öå ¨¡v­Ä?G«ñÔÄÚYŽ¬¦D–Ö3ÈjL&ÿ³¹o:žäÛ_ŸNU}’Gby‰e:Îc7˜"<“&wµ®ÜÕ†œÔ& ¾u*¼ðf‚ó(ä–´õÄøM¬‰£‡‚žÄÒ„å†Ö¤£½6xNÚ —V\Õ±/‹>Áƒß׊)ÁËÑds4Í I÷™Þ@ØoDz’´L¦4$d'û‰™®©v[œV—šï%N£Ï>J †ß[ú7«åѺ²w권XÕmÕ*g…ƒbó|– "cqYº¢,ÓmÙo ΂èIçT¾âmÐh”+B(€rù†}¡0|Í,áHòǤ3sæ¬V4^qßÊÄ™§®I¬l|kkîy˜õ´Ù„gy3J=ì&¦û$Iò²÷I…ÌÊS¤j°ü0Ìý< +Òb±bm)-ý†7ÝTµÊ¤å·Ci{RM¾iaNûÉ°#¼>Hl¢-4S—Ç©&Ñî“ ÉŽã­¼¡˜Â¸€ž³`÷â¬å ®:*åXR”>&:YºaA¹e)8Áa¾Z¸Äfb-.j£0†c¨ŽÊ1ˆÈq˜Ÿo2S äΤÊQ¹ £"ú_œÌÈ}+ƒHž&õ]ìöž¿šÄ—#­HL74Û¹Lbú–&L¶ÓN +ù4L6±j m³X£zÁ6€­u +©3E÷y ›fsÇKR¶ +­llW’ÍDz¬“tFK8¯H¶íÌ£:%ëÏJ]è,ñ+RËpŒ†!êæ‡h"yF\ÕÅÈé3äøPaÞlŠ tY§`³n¸^ãÞË5Lô ñx3ÒŠŒr–£O È­±3ðkÐø-Áofž_S¶ïòT +îTªR:óê#LÂHüAåfTÈ¡úÈÿB¦2`WˆmI|ŒAFyF~z?ù-hœÁÞ[4Í~Éa¥Ê• ÂÔ¦GƒŽ×ƒ?¿_òÍ÷ñ,‹éJ- À+KJóaKXŽ4óÜ È|Ë$™ÿ„±¸«¸‡” „Qó„MbI"Üc<‹Ô\]ÆIé>„{`@àOËÁ`ËÔµ3°~²Û¾ÊžÐˆ¾ŸÚ­Ä ©_¶ +©ÍÌ!¤á=¶HE>+§µž÷¯•“6³˜ziZtåoÆžû|¤Lg«Q¹jzÒ3hõ+DãÏ|A?àÁ +0TƱãÇÜ0YÞEY(ıùb5º¹j®†Ål,ÆŒ››MßyõºŒÏßú÷e¦ÛŽVÏÀ±ñ©ˆpn·aÍŒ²h€\î¥I-‡O3Ÿþø`+43(jpÊY éÇ‹Æùp *ßù"b§EûÙ^YNÙ8xà®&,xâl´¤Œ÷.­| Ô9‹Ü‹’ûâ ŸŽ=‰”Ái'[ Ô®Ücõ¹i“8à~ƒ>C"öù Ÿ»¤ò)œèWÒÑ`¦z_EjÎtbÌ,··(pbi6 F¤-’Ò¤L ä˜-åX·_ŒÅ,Žá21ÑeoAO]ìÒÅQí2\"œ¢à7ðþ©Ä9žx¬™ìÁœ ——¼/KÞÌT\Á—À?¨¾Ü§¸T™¼_QlóûJŸW^IB'ªßY;çJ!ÒnÙæ-`4ïOTå+¸¹'­3!lZ6í¤°‰H-¦"PB¾¸:Š‡T½Æö û6®Þ? bú/"Î(g¸ÅG€¦ãÈ@´Y;®HK OØܳà.S_øÃÍ  v€ÈÓŒæöK=–ÍžöfŸ64g‹™‹¢[: 6½tˆÊ{ÐÊàòthLî3|ªœ\öˆ¥(Û‚-~ÒZ3ÁÆAà'fªwÔ6¢Ï3Àˆÿ³^.ÍqÛJþ+\šU–j ¹LY›»HUÊqU6ÞÈv$9¶ß‘GùõA?€n<8Ãɽ+=fH‚ƒs¾Ó¦öð +>‚‹ZHW+£sRd¼CÐ9O/˜á +(|ðztèS¯FÒt£Œ-E™Ãð<Ü^ ³MDI$.ÖR!èO£# “Ïã›–ñ‹6q^Wétg·â£ÚÙjœE|â«öÔµ_ŽÉh¤)ÎÓÌDp€ož¶Ç…ì‘-ç!{ØéœE« ½”m®F„’º¦®”lU +÷2xÿîÛÒ&̆M¸Ù*hUYmŠ¬Æv‹s—Ø`;¿Ávác»”ñ¡Y>¼ôà¸~ëiϹ +iÁh¦+G˜OÝ™EÀ"³¦™•L/M/©Aá€*¼Jš „Zð Ì6®‰ŒSN<,¦ÀðÆ°‡´pì¸#è”—¥‹«ºŽÙ_ž¢|¦¾†¸µ=ôpE;ú¤L=³f_Ò‚§ÌÁw$át‚Ô!K@ YD׿oÛ(ÁÜ%®§à)°Á„¶óuèøÕˆPôS¼Ó@B5­·¹D4 N¾ÝNáƒõHsz¹÷uN¦á2MŠgó¡i\Qƒ¯€0Ÿê@iSâ#2(Y{(pƒÜø$ͺ=G\ÔwÃßíÙ]0 ª¬DÙ«’Nó[²‘/OçäËÉ›Ã|=›àË£ÀŸ"õny6d›áËAXÚ¶M@û¦ê”¢rµJ÷ aWz‚Á…¢ÊˆGª0ìàÜïN, nz±& XÄÄÏdQ3Eø ÔËÎÍ$ "Ø£‘ ‚~‰D†À8TçhÖÎ|y@üë’¹†]%ÓEÉ +ñíÛ7î\¶ÿøä; ßœèÁs¥d[^©åf!¤Hÿ¬9ôL‡Ë<1Ã-<ª¦’^ð{YuNÙ¤‹¥ìŸiÜ”gÚ×At¾ÎSÙÀæSä ¡(rÃË!ª•ŽiÔNœ;,§N‹Ý-¬¹*œvCY£HRf[ +º&º<ã#·q(åL'Q1õ,u qšdJÏÜÑÂþ‚;ûBߣ!}ãôQ)ÄÌxWÑ0íÁ9­I¶” ú„µÕhãÿe ¡ÜÜ"«Šî­µv\(º/W:>rdw%^ì¥Órít•-QÙýTÞ/·¥Ì¸ µË¬´U÷FÈ-@Žý´÷ØŸbÒ1XóÛq )h„¤eÀHú,=Ø$;~ÛYoÇþål„ò2î ©vÒBÄnéÂPcW’ØÒúÇüm[íðrÚXõŒìõU28DËx¤¬F \®éz:‡{nõ}|=*‘LÛÆ…¤ó92%f™ÒKßòÏ3çt¿"×J‘ó†$g§x·añm8,ê NרéÛ©P«ÓbYôð"þ\¯z0éÂAaÞJ(F£ÊÀœN +ÜÚtÍŸ-$ •3칚 –ñŸApÌÛKÀ;:Xõ»Ñ¡”Zõ| +ýqE’íygQ¼:ÞÙSE"Ú–üáU`½†Ú[_\yøübAzü;Ø‹U!r³G{u¹ç;˜õ‹*·Ù²}GNRÆ­¸#cL£iJÓQ…~Í{ ™é:ÓÌ^ÅîB¶;y¼zy(zCa`=~1±ãZ m)°hÓZK_– ™œéy|nkhvÿ¥Ù ³Y-4sh5?³vãNMGSQYzE%PQ!g ›ÜWÞù{V))Úƒ[ í1S-÷ýž¸ÆXíud7Mªe䧣ŒéIgHöÅÇx+ ½A.ÁÃiÑBí—d¶<º©¤ek˜ŠÖ+àV®ƒè8™¡€§·æ"ws)™(îS4áËåþxY.~¤­'øz뱑=iSòæ Ê W2´£JîNfÑ`k'¦Š¶Æ ˜÷õþM·e®¥ç˜Ã|=›àëª ü1©áhv\´TW‚-~á\š]¾á+nF‡gþõ a›äŸs©6ðsŒ×¯)ùà—(\^jVnnö ;Jp°âñÀÇ8µ¡ æ8’xÝß|, •Ï)Ú:½WÁpº¢)ô¾Qq—6K“_,û+×Äÿq^ŒÒ èÄ`ègûa¹v>nj)–ÿDF°ðÞ7 ñÑ7¯£C£žŽ/‡quÁblÙ7p!±nõí-ÊRšÁF5p=zOä‡þ> j~âgF ÊÓ“!c¶BfÑ!?;Ž“%‹O±¸÷7`Pñ³×ƒ€}‚å$¥<ÎÕ™ — ½ñx4ŽÓ0¶Äk¥?ñ°EÃ|Ç2quØ„Ö~hɤsNÈïŒö;I–Ž_ï+ÏÛ ÝijÙÿ7HþYÍ^:f:e9›z0“‘Þ@äÀÕÐ T$Õ¨èŒHCþ#ÕŒ3-U£Ž¯å»l1¢À5Ïo>•È…1)&2žN“’°h~ËÁßÏC[Aÿ?‘*£ }m-KQ2~àZ¾v¬ý¾Â´瀷ÖÊé+0 ¾Û³üc>âêm}щõî€Å$g[nò+‹8Ù=Û9íg•Úü6š1«Åœ©x²ñ±’|!ʯ˜‰O¨KÇ=ÿ˜o³êˆ£‡=Èù‡‡ãäX¶¥<þ`äÇúà +endstream +endobj +91 0 obj +<< +/Filter /FlateDecode +/Length 5812 +>> +stream +H‰¬Wio9ýî_Á"µ›G_À`€³³YL°Ù‰€|X/>dʼn¯õ‘Lö×/ë YìnÉr0µ%6Y¬zõޫ×wçǧ꧟ÿ©;þ~óø ~þùÕ›×êàÕê Vue]þ÷Þ©»ÍÁá¯jµ¹?8\™?jeÔêü`YWµmÕêTñÃ7ÕV]x'üëªFã*×7½²MÕ4mxçê`aZ½ú|ðËêà—wá¤ÿ†ƒà}x7lývø·«Z½¹9ø×Áá‡Ûãkˆð·ãëZ¬¯—¿¾Ò‡ï^¿}£Ó•Ñ*ê „i(ÌGYs€µ‡CŒ¡¥&G×Ù¾†¡…ðþ½Ø襭ÕâñX/©ŒZÜéðÙª|ч[-®µ5Õ Úßk½lá÷ðÙTZÜ+]Ã÷b_Yµ¸Ñ&üÿ¶·°‡ KÎxé=¼jx«ðy_ « rœZ\hÛVŽ^†|/¾kS·ðó õ9<¼QÃq÷¶¥¥5ÄwGž†`Âk%®#C¹€øfoÙA@xKæ$ÇÁMoè˜kEûyÞ¯‡¥.P@xç“ná µúá4Л¶xó‡yL½ÒÜ©\”µºÔÀ\Â4Yx)üÿ%ìiè*)rƒwÛ(ýŸÕ?tw‚³—à¬jo·a/Ü«KØ;ZèÆÁÅŠL´±\ø%¸Å5çz«—á7Ÿ®†…¿ãÂðÃåu8/Ü­Ò ngtë`©Q©N+Ýô˜¢)Ú—!=RÃ%~¢æ{+ð©>êÖÂækm¡J5øçmlŒøžÁï§Ø|/}…‡zx]ë©Ÿ§ðúOƧޅ‡®¼"Gl.ÈAH×úŠq[;÷D–iíñUØÑtðfXˆ7<ÓËŽÞ1CAgZ(¬ GJ´,–’Gwmè¬c8j ë@ÃÐso—=Wìf«t£]ñ{hì>Uš/5Úlw¦ï5Ã#nœ ,i±±´I*³ì×úuJ1¢¢£BE.ài<^€çVS;«ø>ܥ˼E@/=aù^ã[¡Dh—ÄæL}JtÈÞ_µ3ÔøÈãFD”殉äô†COý_ÈÃýÏög0kF é¶€¦íé‰Á>†p:¸ïK¸P¨õ;„ÚS‡ÆX$¹oÐÂä€Û-ÕÄÑ„*³÷ö,ehí®FRŸ5ÁéO„‘xÕ$â„Õ9t%Ú%j–èŠa1xÔi‚S¬€B_QˆÙÕ¨ÃæýšŒÖ+¡ž +×w2xÈ:‘Ö2ج’“”GŒ óö©£èÍäOöƆ݃«$.žÁUNl=‡¶ÎV&¡-߀mÁ¸‰ÉºL™j­y_Q¢¦¥HtojrM¸Éåö$42dù˜ @H6¡˜²‘ 9Óx…V +$"K¸3[Ô6É3Þ¶zF{‘l0óäëªRâ][Õ­SmÓ üQ{ _Hmê‰=.»aþ|­‘N߇žnàÕ—Ú¢s{1CÖô†¨ŠcC;‹`q)@£AoÜ0œóßhôú‘wØ@,xR¨^D¬hù4“]ýxïiÔçd‘…MüЬÑÌÐn·¹ExnÖ¬q§?í`(‰÷ÀÁÒ_Ê'Õ“á´özä: d6sz»?𚚥îú®€ÜBíM m¡[Æ™mºåpÞ“ii:áŒÆ ‹úû”[¤AÀŽîÓà4'|A–ÖÁ×*p}Ø}æ"áåŠ÷ØZU1‚ÎÌx'õ8´ÐÛQ›a*÷Bø¡)â Tvlñ¸L ÏžâÎ* +f³QúYž›–Œ÷ßœ…§`G@ B'Þkñ×ÏàÈn䃶âÉÂ|xØ*jÝ–òtLi—œ9È(ârÍ#=Å!÷pYù=!3žš¸x5UÛ a ÄÇ4FÝ­ðw»ÓdzUßðjù&|÷/Ú‘Îç#z¢+ôd±fFJ?QÜîèdVâ™ÜgDjo$õÛI/£ಋ•0®G®D¤ ÎVàè.ÙD•É1ÜŽæ‡ìØO:ø|ÈÒkò#ÙŒ_P;.jgj]PTË­ÞKR½Eë| rTµz‡‘™©ÛQŽ£•©°oõÙyðì=ñ5Ÿ©‰‰‡Çg1Ê·u­±àǦ$ÌäL'>½“|•Ç¢»ë8Á¤¾¤²æ:ÑŽ*Û²sa¨ó›ô$'Óè©3®Ç-ºµP{3Î$xBƒüo»ªÝÅLFá‚êa~¾óÉ£PÒ5Ò‹–žmtxÌÆÞÈqõ9n`Üõ“mÂX3ˆdL8Åó»:Zè ½že¯‡³jñ)»x6êÑŸ*н°Àh? þY†¿}ø^-Ž4±¨“,šI;ÚŽH‰Ëˆ[óÔf®ifêL2•4&fÔ½§éê6ҰɬÃôþ.­ŽÕdÑ*8‰%Züd)FúŽíyùĀ먩RègÐ:¬%ì²y]–[Ù £$YHÒ³8+˜Ó§}°DÜþ>ØÙ¨ƒçž—œ¦³Â¯hz‘ƒ\iú¦nf3ܾ'NzÒõèšÄ".cj8YEÚQùÆ&vH:å´tDl< ƒj$;:v‰'z怦D;™Åy.©î£1r«‰a\˜‰ mélX6;#¿LK'£Ò<ÆÞ­˜GžÑ‘M‰­c*ÈJv¿Ó©k™`æ00tW˜@W˜±h¸ 9àÆb¸‹|4e¡Âæ€IM´úü|'Òa.èaÇ%¥p†Éc/=©ìé ØŸìÑ×ûdØ>t4IÓ´6¨µú¼×Ö¾[Ï!®sà¤q¢×¹ü̧<½DrösäLÊDCnÝÂE†/1öþ|æ^”híLM°és»bó˜™f"îÚR'ï]oDâWæ4µ:Çþ­CºN?„bÕ!pL¬‰mêÊ (]¸ƒƒ¨«$$§1£•nµ&€F-Ô{ ¶o,sƒX#¨Çt KÀ¨ÂÕŸeöš ½ÑS¡ÀBX‹›kzíXã±×gôçf­q†»>ㇻý3c‹Ì¬jJLM9a*ÖOÁæºÞSN>`M1ÜNm"McÙ¼´ R¯E>xFШä¹Apj«¿ÃÄ;Ðð¦[pf«¥nñc~µáðS¨ïœ©e½B³)m[íÒ¹¾8‚êz*‚ýøTÓ\ÖgÁæqÖqÊM¼(ë ˆ¡Dû’eÒgN0OF$ÈRiI*ÔÞOp  m‘h£ègä6ÈÓ.ÛB¢G*¦<<ƒÓÊzm’ò°n´\Á8’ñrÃOô´XÚï-KïÙºY3Þ¹qPL<׺ ÕÒNéB̺½¥Qoù³²ØÒŸÀ‹l„X#œ–þ˜JgC9ðTXÍíúÍë1æë+û›3ÓÞÖ1PÂ…pš~hãBæn ôa­pSøØ&T¢1——¯ñpMq÷D÷S'~C€ÿX9çÛªçc‡ª†ÁýojßóVwUtïqåèƒ*=™á–›P;*^ÜïÒ?ãƒB|×l©–Ì“#ZYzžÜ=±º CVЫšê óV9JY›zëlÝS]/¡ÛB-.+tÿÚÄ*’²Qid—û—]Ëtd¼Är)[¢Û +<;ÕÎÎR»7ÂCµ= è†ZU¹{VDNþ¬*ÒÌ&üük@É]ÔNiÞ‰=on¢ à^l¥ÒàÕe´Hµtý¡"8SÑåP‰E²—öó.›Ó¸&⽩æaÎãBVKl,P¬î–”V]‹²2ZDßÈyq Þ‘‰~¶æ§ªe Â2þÇÞê(fS6üϘŒ®¬ÂBï*z\ÌsA^pæ’/¥Ž™ô +Ê9í[¥Š‡ ·(5_àÇÀ'‰»“¹ EeÑá>›½E;){™zÒ÷…åpÐØA`1ïQ÷OëUÓÕ…j\ÉG¢8 QMšß¤]»yÂqd@o{>“ýTÅ8¡ ¹~;ÌÑËÒà…&š» Þ$MÑR”¥¼P·D¦|dÅ ¢ipkÔÈØ +Ž +´A8C뵘ø'.ü +I眫†–ØXG p‹Ãá} ’ñ8žÆøµ2}½îøýÉ(qË‹…9C`6çïÖ.èËŽý¶}¥šÎND5µãÄ2Ñî"c¥>@±57‰ˆVª+p€œ€ ÄÖªñ%·‡?ÂƻĆÁ„GvJRxJµ…KÜTÖgÛàÆ”U–co¹tY4Ù¢ ¶ÇçBgÑ ÈȉOì§'Æ „½ÎÓÒ +r™‚lã–4ømc!ö@A<°D%… cwÌeuTŒÔVgÌgFl³`µDGÑà­ÝœãˆN±Gw•Ã7>Ëv8‹Ž»FËeI*a’M`œ¨K•²?ÖHìûC²Âèˆ{ÉÀd3yCeô¶$cöŠÓQŽkucßÓÝJ‹Ç•8dJ$ÁíK‰*‘ˆ¸…ÉkÔ$z9§â×ÜÀ{XmáËä¸ÍVU ÊéáY¦Ìs4Žm×{›»Dpüè}‡mS+¸} xí3 “!X„E'ŸMBÉ`K›°rsqSj›¢c‘ßAäs¥’Þb[R·‡&îÕ{“A™7U‹þ²Bnûž£úG‘_ØóśʤÞ{—Îu2¯Ü™4½EñŠåƒí€ºÍ!5­ÇÑå‡Ø€°ªIËm 5aßéÎàXÊ#ü?ùAW`éÒØcÃ7–ª¡_Ñ㽜Aâ5½£h}̧ác†6î $ ½—6‹¯W;Žõ¤hÜYåÝEpëÿO€¦Ã»8¨2jd`aA‡áæVO7>v:Ÿ„Øl“Ææ¢N^jÓàØ®&/Hu½’z¥¤P‘º–¤Œ<ñ©øojB¡­XâÜ;‚%rÓ|Ž§J’ê3I¬ FÉ— ƒc§C¢ÍÙÎ\òâ&)úP2hù´ˆÇéÌ#z°´€ØQ’šjr¸ŒºDèu¢ñT¡AŠ¾—7’“ÓÍœŒŠv»÷J² pØ‘¶W{†€†B@£]Ð8(’ÔP6b]ª¸~ØiÖbí¬é³C‘|b +I®Cö®Ù‚o ë ¥¸¯ðÃì]0‰òÅåQ[3yq¸í(“KùE^!°?îBnŒW•óÙ"uwÁ3×6˜I¶ƒ=9Üè^ôìÀÒÐ`æâLú×ǦFù6{ñ†ü§dÊsô3ú±K44 +oóNéf:¥çNé¸SŽ@š@®ÍW¢N%ÄýFE^ +UÎÕ KÙ'†Ü')É…”-E‡È-hf:‰¼²!y,gãu:ã„Y˜¾˜t°OF€Ñ±âdN`¡%Õð;‡wSÍÔò¯4GÀ8 +endstream +endobj +92 0 obj +<< +/Filter /FlateDecode +/Length 5833 +>> +stream +H‰¼WÛnÇ}çWôã6ÀN÷LÏ0 H¢í(GÚø% +Œ%¹¤(‹¤Â%Í0_Ÿºô¥z.ÒP±ÚåNOwuÕ©sN=»½»<ßžÞ©ï¾;ú«:zµ}¼¹¿Sßÿüø…:x¾9(UYØÊÁÿu]©Û‹ƒ£ŸÞ–êbp´1¿–ʨÍùÁº,ʾ*ÿåA5E ïÀ¿¶pªî붮QÖÎ5°àê`eZ½ùpðÃæà‡×pÒ¿à |ß…íñ¯WG?^•êøæàoGo?m¯1ÂWÛë µÚ]¯z®^¿xy¬ú¶Ì£UÔo¦á07>J:CµO1†×Õ¹¢¬úZµ¶+ú¾o0¼¬ît_Ôju£Nt¯V÷zmj¸Ê꾸¨ÕGmKµ:S§ºÃ?ot]Tju aù9|t¸˜ÖhÓÂÖkW´¸Æ”øÊ)¼‚?«“vøí\ƒgÜà',¼Ý©;Ü{¯›¢ÃÅ{|»Å½!ðB¯!­=íŠF­¶Ú6 +¼j-þc‡ýnð-Øç\mÕ ˆ6øNsøÂ3µ §Aˆ/ÇÇ7||ÇÔk:N¡KÝã)òNkë}vÔ±éXW´ìúäÿå$Üp/8o·>¼ug”¸øÊ'f§ô?7Žàù,<Œ„GQBu¦‹)jcñß­´«0à=&ÕPíÌÃŽrdk¸sCk(ªõR¯é’pÙZ\–ƒ·ÊjÚµ€uxë +þ„¥ +èšVv€¾6ÜœRà¬8ÝÆWÛôøåR”‚yT¿èšÐé<š:Œ¢îr2+¼Õm**0ì‚/Ÿaìt”ÉQ]éþwP#w÷¸¯©œï´®-î_¨µi&×è¥u(_p6’‡¾‡¤ìPŽñÄEù †4“ØrÒCúUY{`Z3eLàbѾÀ$S|i˜FF’6¢–ÄMÒ/gò—Ä{tÿÌ¡ïuSe†šoö'¤dÂ¥Yâõ”(”Ò‘äÕÇÞÐÓÃQ^&FK^²uj°¥êÌÎN®±F~Ô[ÛvÛYéµ½ðÚS«¶4îøùÀI7ÛI<dHvX–Y2iÙÈ ?a™°s3“# 'Ä|†‘jÆHî "„ê±aé¿ µž ƒø+q¿¯7Öï!ûËE^³dî•×[‡b<`\•¦Ë*ds1ºÜÕsì…ÕŽì5=·„ÄPóî}ôÔ½MÖ½Ÿ#ÑÁÈƆþ?4Ãéc,µ¤]ÝéjÑ«ñlÆ›ÜÍHiP_¯½øâ0ýa¿3Q23X–«@M©wæº.÷¤Èü†áLl§)âQ7íÐwoýlç»zŠ*Ö¯Ï:9Œ¾é&´ÅƒYð‘¥i1:ûÙBR3Ë3Õ•"SGó«QFmΉÜK«6§Êb(”D“èô„« '±Õ}‡áÁ-:ˆS­Ô1^–ˆ–?ßðÏÛë3þ×i£+ÜBCFË‹/ï<¨.o®·Œºƒ÷ß}ÂÕضù’}˜ŸNµÖ†–ŠqyÇÝúè7D?çb;W4ÈØ_áo쾚ªPs×,ζɲ½)9Ù%æ™2n¦±êÀMt•ë8ͯ4‚r8{ÍÌr7!³k¢½Ê]KKDzƂ'ˆá'™Ù ì EA C3äˆUÆö_E‹•|šP¶@FåÀÌαWä|?çÁ”ÔXì„tà;k ŽNuFý~>ÑTÇè¾Ö¦ÃQMó¼o½K~§Ç&ãó´OA ö‹ânÏѹ<–¥ 7,ÛºÊMÂŒUt8ÂDlOŽŸHŒT¨îi¿€„…Nµ*FÕúb­øKð2SÕBŸ¼tï/Mí›vÝ©p|ÔRƒ/½XŸFÕΕ(Ñ‹=bgWø-ʉ •fÊ°ÍÀDÃó4o;vÛËAZgH2µ›úú¥èûCH{%oBj¨JWŽJ¸÷^èDÃs‹éK¶Æó.–©3˜íDÚ…A÷.'9÷á úõ°±0ƽÉÎ-zCËU ;¦ëp܇*N†L‘=:Õ]Ir‰¸5¤Ý r‰ˆs¿c3¿³U‡‰‡.NÙ;‹.Ù4ì¯D»Y? pJ–ÃË ¦™~^%  Ñßú×ÁàÕt oX mÕßñ;¤ò/jÞדÚÞ0xòUcÐ ƒ±2ª‰IȲYQ’ü(4j‘‘ÄÛÒ[jý¯’0ò¿à—g­ôÈ|ANqŠRŸâÈ‘› ]ÁækªFƒv|³hIHF`pÔhRš!ôì4‘³ÓØ©»¾$ìüúÜ…Ùç~v“šò5”Ö0¥5㙶5ú%,¤ ^«LŒ­ 0"ô³Ói“ÐÌÔÃQmÐlíd³Ù? Ù¢¯•)„D3û]/O»À|Iä<Á|u9.ûj—­“…¨/|üÆÓÐŽ³–¸ Ú|héÿY sàÈA!4'¿*`+Ü]hH´òÞSM‰˜O¨nÜL‰SR½‡Ò˜¤¸|<]Y¢žÃL»©ã‰Ên3æ¼òÀ”ï²ÔV Ö [ôgË–fÍú°±õ€`ú™k3û¾&VÞêªb³t²›µ›n‘ÝLjúÍuÌ8òÝr0hù÷Í¿ÉÊ›a‚»'¿p`‹ñÑ—óÜåJˆ ²UŽ•ZÊ]½[*ʲ™Á^] ¿?´˜£ '@êT+y†ÉñU{ƒÐãÂsV¸¨1䪑a¦-GÐìšc^ÐuØ‹ 0짙i!>וÉ4ÍC ®Å~¾f§ÄËù¥ü™^û> ËýPΡ·Ã]ßµBoYyxæª0&ïuD+†M4þPª9J€ŸÞT¹Øv‰( ä-eálŽíæDÙöbÐÈø+ŽD^F™ß#~…7$V)Ýaxó›hÌM)šw ² ¾%ÕôàA°Í ˜h.·Þ¦â÷z\EÇÖŒ*®Ùã]¡c·;ïÉ“?^ŒÅz É +´;tòŸ%L™ÉYçäöVvƒ–\S/lL{dt®°%l„M¼¨¡`rû‘î®éÙé`3çñ‘b’ Gq¡©Â'°p;ÇÙoÇ&åþ\e¦Ð‰o9 “ðcmgòbfÚsÈÕTŒëör—Ó»9Ý|s¦~Ñtñ76ö•ÚŠuScun¬3 %Jëû@€ÞS²FÒÏ}ïHÁÞJ;ëGú4iDt ¼jŸ¸ïM´ÓÌÜšÛÍ ¹cœŸ_ãæ@kx÷Ç4ÁCOO=ÞáÕ1Ôº§Ó›ª¦œ Ü“Aúáü +Î,l°²#·î91þ€<É];Ê}®NˆëÌ÷­ò!cÿË’rV™L3Í’‹#G’XÕà!2Q¥ô¥”Ä&ëbå¸5Ëq`N=ÏQkL±ã¿=1àÒ!+òƒ×ÉVб9JIR‰D.nƒätB9=j†Z='»‚@ ¦˜ð$á²ð<š‡®œ7v±&úJ¿ÐÆºÆ Q’÷¾Šbˆîé\.y`£pà^ä n㊠+Ò²8Tƃf¶ížµ{=ožû-ˆM:²v²§Çd}¹“ô#ƒ¶´›Á x7Y¯“§ÜÕŠ¤d¾F^°¤>AI7ˆãò,F„t7{|ÙSóÿ´¡ ]E’£ük!?Ü}üîÍ_º÷ß½ù‹þ¥"[¬5P©¡ €Šqr®18¬ô{X óçÓ² aŠ"â±±ͱ“=ýØ:nQc»_ñRŠ.•$w] ºíÆê­ï^ýÐkÏ|Hš`œks|i&^šw§È “±x(÷è4”’ rd“D/ÔÈõìÄYÞ^Ô;ü3œðó«~4ìüûs_° È rKe”âuù²ó÷äV¥ír!;Î2Õ®i£ð´³âƒ 07ÂxÞ ÌðËÀ뎷>v xý‰àEQUä‘a\¼ÿÝ«¿#(uH!ÊQ#`L·È¾•Gá(%Á#ÓÆ#¥«©Ùš]ã)„S“ÝyÖyE àsù&¤—šl8¨=*ÖÁZð¥E…¡töm´,ïÉù‚ª + +ÚKPà@©ÆrƒÙÁ$3B B±ß©Z6mkÚ¤¸¨a[vkª¸4+Ÿ€v~œí¼°;•íF<à)óHA£DE1¿l¤¢¯é +êKßtlb‹"H%2þMBÞ[Ä¡ÅŸ†Îý‘¾ +ÇýÔY¤Î cÔH*ŒSðU•}í3IÃÉpü‹’Æ¿{§‹ÍÑXÎgvÂó=™9Êâµoè¥ÿ£iK7`£Ld6LÇ‚®`³>•üÔ°xlFÛ±4¡í6CLˆ¸ã¼Ý?yÊIHc9 Õ±ª\¸”;F‡Ú[oÑ(¥~¯FYxæE¥ô1ªÝ QÊlÑ(³FÅûß½úºò©4 ü{ýj—£Ù'22y˜z­È0‰ãÏ)Ù7ÙÒ7í4“ù=GÇG‰Z'ø殓ãï Ë“à…¼L¶\¦,¨JªJ««æêÀFiÍ·í£sûVánÌá®ôqKW}o(»®)™< +`l!Ê Æ×pcN#‘Fãû¡!fTþ8õIe+ÈIóç—¼»`PüV|(¢®'êžHÔô©ÂEÛætkäZD€ü†Ç^[yu4|YÝdAS±Ký¹ØåØóF‰¿ÿªÖÐD-7¹oXu(}¦¦udy¶ô*ru—mÞž. =2—¢ÈK?—„øH@Bƒ7Ñi¾Ÿn¤*ð\©%§MpÓ8qŠ†àye¡E¨.ŠöÅe KáÀ£˜¬4Öß©à“loTšÒ,'G±iNÞ"6aƒØÐÈð?^ÓÐy~6·²–wàñðªäKM«•ýµ¦>q0º‰„YŠPÉ»wÙ]l¶wÏ‹A¯#ݼð¡v.´}ˆÂåà“ÌÑœð+*œH¦üñ\œñú•Â™k9 H*¼ÁšÞÜ|ÁSw•z–[S+„‰’U¶¢sе(þDH'ošUAàXר’zt¡E HòÎ’þ.j­\…}åèÚ2Ý@îZæ5™Âý¦P=Oœƒ°è"ý»¥ìY³"b¤²2<"û'‚gÓ2ð°jˆþÔ€FÜr¶,BXý+!¬ÌÑ5Œ½[PŒÿõªº“à5_úâ²{æ_*‚_ YÞŒ¶ +gQ)SÆp;ò¤‡Åhë%ÚZ‰¶f-Ú²<)ºAìè.øŸe¸¸Pøk¨ÂRïÐxv;ë¹;ËPÚ <Ú,@ׯÖbÁpÀÅTËY?N¬ôÙBÄX6ó([”ð­›”ÐfüÃÌß÷|FBï•£ª àâ5'„xê¥èþ·á©÷¿õôxz*èrƒ >z >±CM&tf3‹ärþ;’ÔgéÄ]Ô©ÓsŠõ/q²ÁúëÚú+ÕPhr!¼íàd%¾dòaªi½°Ô{”$S)4g¦©çbv“ =6½££3ÎÆ¡?ç‹À€ðÑ™ /0©yqÇü);6asöRÝ4Sõ"œÌñÏ%e…‡®MLç¦E¾û¬¸Å[Š5à7·^d|Ý0¾YMD[è¹Ív€P‡J<øVÌÔ[”ùcµ^¤sW9ÕdIüuCó2sKzßóï»<«(WCR_·’å +¸ Ò55óJªH|¹¦›½Ÿ°¦ùPIæ5›’jôˆ›šByÆ<¼]‹Ýq7ç~(`ø¤Í ™è!†Q6±R¶±;å‹9€9äÉD2Ïè>Q¾AÔ*¤p; R_e +•j˜Ê¢¶¼Hgæ;Æë:™=žx^«OÎä®×,ɬ‡x>Ÿ%ŸÌY0ÌnITðÔeJŒ4ï—1,[}B¡´{Ž¯O´ŠŸST^°¥mÎ]jª’æt[]‡oõ{ÝeGY“­2ìt‚8n¨·ÍÐÐâšÕóc8Zc†%…œ üÓ\l])›Ðˆ~e Èøå%'–Ód÷û¤M§¼NV)ö+B&®Éĺ{éè××­ŸäšzÊÖbe« +ﲬ¨Ó6ÑÑUá±FñX®tfâPb­èfä²lqK3 ¿ÿÆïHŽ:áj¢VjºÏ5j™r®OXå¨GûP™ƒ?. «ÐÓ(³gäÉÖ$_ƒñÿ ýj/u +endstream +endobj +93 0 obj +<< +/Filter /FlateDecode +/Length 4935 +>> +stream +H‰¬WioGýÎ_Ñ9€9šîžžØVbdádwmn¾¬NúHY”c(¿~ëêkZ4&5œî®®zõÞ«“ç÷®Ï.Ô?œüS¼>{Ü}yP?þøâô¥Z¼X/*U•Æ:ø¿®­ºß,N^½­Ôf¿8Yë?*¥Õúz±ªÊÊXµ¾Pòå«jÊÖÀ¿¶tJk[ÚÎuʸҹÖÜ.–º+Ö?­?ý +'}†ƒp=®…íñ¯×'?ßVêt·ø÷âäíÝÙ#|}¶Ý¨åÕvõêEqòëË_N•®¬ÎÃUÕ'ŒSsœk ³’E¨5¿ªcx­éʾ³Þ—×ÅJwjù¡XSÖj¹-V®lÕò žëR«åÚã#øvU¬ü¼ð?}/5\|y_,nbš>`³F-UØ„^à/ð áí;\º-t…6øru‹_Z:ÙF—=mÚ—F-÷*][ãO—êLÁw‹ûìd9ž¯Ü«WÅëðs¸¯Æš-ÿ‚Xù…;ô¡àCvEÏ· +vváµz à÷Eƒç_qŠÌ EÃáiŠ®} é½(jÙBîÍ{Æ⟥zY@Ä6„Á½“³5~~†… ž­M¾_È#dÂb&àTü*@+ž©âë¬F£IЈIAd õh;ÅëÙ§…­ðÎoHcþ­ÅpÚ&%ûTPe¯Ô]a(íPÊ1ʹàŒ\©KÜÖú¼7 0ºmRCÇ5DÜ©Pù Œ†TkÁÆ·Àr‡É5¸;dŸ÷j0äÐKXv:e—†â{O¶W_ Cò@óµL!¸Ò=þ†ˆ¦Xöê¢èðŒ]ÑãËÆÚÃ⓱K:IE˜øžgèxØ”¬€-õ:ªªt]¸,r‚ò¥ÚPLô5 ô¤!¨wógi¯bÖðŸ…åÔ9uh“¦òRú +™§£¼0ÞÎ ­9­n–8Òà +MY-Õš)uª2c´Ç;ÏSR‘´Är€…AXŒÛè[¡NòÂp‹œâ/-±2 +÷*v€ÁPW]"ãô˜4懌ª“f; uŽ†ÆÌ ¡é÷Õ ‡H¸;¦´ïrÎîñöMÆò ƒ1GÕ8DßwE•Õ ÒŠáŸg“k“¾ÂÚÒ§!ˆ>‹È +oÐzÚÎ ‹`=‹šù-¡ zÜÀiÅE1{0Áë\n0ÍwªXhCS:Ý“î{n|`ŸqqÂËÂxGÆe^g,­)µ§Žo!$"é”Y)ÊcÂk’ðÐ êhµ¸/&¼ +2Mq›$îŠÛöò¶èIíJ2IG´ÃBÉ ’‡ZªŸ rišñìFžRrk?Yúý Àß–BVÒ†¨èQÖàÙ–8ÿ‰)©Dí,d#ÖéJ6»ÅŒÕño0(œpDêÉk³ä­s]9LÙl#é«Ý¸î@M£Û±£˜$†m'CvK}aElšT&̨/ÄátSîÈÜPòñSQ‡F-¸‡ŠôBÈ!:ÑçW‡˜í £½,HÊþ—rxÊsJXôÎStŽÉe”*håyr©n…Às—.¦‚ïùÛÇ lj#0Öåü!Þ¢õxr UÛµž–*ÖŸÑç¢Ö5£#"dÑ4˜±Í±s3‘“™¨Ÿ›‰: +-$æ2ïÑÇ»‘ëŒÉ'´Sí?¥ž0Ø*î%žÑL²ÿv“åoå×Zª*6?zià ÂNçšMl ‚ŽSC˜Ø¦Öˆ6á[$C Í$o耧;ÇùÎ8ŸgF ;wè=iz]‘×~„ŠÔÕHä¦ÁSA<#ë‡so‹nã-’=\á­Œñ—¤t!÷~Ô!SýÅÊËh¬EÞ’©±À:d5:¦±mll°õºáºy +²ÂÅÌnŸÃ)vŠN¬ZŠ¼ÀºßÙå§Ë%M-Ý4=ÍÑV—0öFîL]æ;°Á1õYYýáµè¶>¼Hp».˜|S;*M¾ü{K­çKÕŠeÁ/3žÅu¦´®í¼gÑ•ñ¦Åˆi¡Øض@p¶XAðê÷Â"mÝx¦ ð@ãDË–K±CÌrŠñõ#.džà"¬7am7ê*×€ý«ñ]¼Ñï(Š] +8A»®±$Bj÷ž`=(å l&f;±œ]Þ[‡,‡NØ{ì¢ xˆú!ì=3Gbà““ÐIj4@HÔèwˆ‰o‰ïp +jRWô•¶l²”Ó“¾‚¯š.·á¬ß_IÖ¦E°ÇmXJ5Wŧ£ÊÎù†ˆ ‡üÛõ€–«'Û†ºNŽÈá +ÁÎÃÕA\#"à±{ +ÙÐQÉp1s?›»Y¿ÿж ÅUÐé…QXU££0¸U.,xgz9±ÙAïÉÈFE°5JÚV;âî{áÏÄq*U b)ÿ GüÄjÙºËeP×\²M •çàÄpQÝŒ«¡{ÖŸ:•´¨›ðB› +ƒ;ÏgJòDý ÃI‡àŽáO—»W´³Ø³]iöþ&Î)iB8%žHž°»gäPó3Ént4}¦ªêݲpSØ8X žŠˆ”o‡wþþûÿ– ë&ô¯5ÎÍ÷¦Êߥáö:hà æ§3mX\aè8‹ì¤üíÕ¨Ëc†R“â¼½+Ž†W“ëíÀ ­§à5T«‹¤Ì‚”0çˆÉbé¸K³ÃÚнáÓ +Ÿ`C+?ß$ÓîÊðÁ‰±&û¡ééóIRŸK¾1²Gyr~pÚŽíçÈ #ýôþz”bŒh'ÕÈrªH{£œ¬x‚ÁáA¨ù¹e—:“_µ–ÕàüxÖjâiIf¸JL”´Í¨Ù ºŸiqêÓÑäLp”vL6ôÄ8Öã‘ƒî¥ '% R ˆyÁkzû%‡ÏæT.&JäÆ&ŒÁ%´]™M¦#_ˆp®z$ê)¼jþÔÓXM”ü®ÈdƒÜø%.íŽCQ—»¼9Õ½KF„1~³dø{†vj<Áæ…±x‰Ç|~l²ù‘\ÁÔÏ sMtP„»¢JŽÊÁ’ÛO0{¥ª½‹Ò¬©Ñ„DtV3ål&.寑øoq~l’‚I¯$ü㣒v·Á†å–!q¢ŽYží€P7žÐ‡«>ÃøXëàÿ¦ŠûÍâäÕÛJmöˆÛhÏôΓv‹?måÕ ”½çÚìjWʧõº¥ÙÓ8ÿ±Éë7Øá=ÂvïÃÙÒo}—•© ¶d¥3¤3Ð-ê©ô|:Üÿ Äg(÷ñàkA°í–|õ}L“‹âª¼(˜uõ «¡±'ký‡'ëë…Æ­éw“T¥‚ï]ã«ÂdS-E«7…Ûn9âV.@ý·)*æZÁ.&ñ/È*e“,ŒõyÀL“|K—zÓÂ×…¼³„Q‹Z‹H‰8á”›ÐüñØ/Ñ‹·ü.³d“-¸V§§oŽÀºÓIZOÖëŠsĘGFÕ#:…ÿJ×v–S9V‹=3Ëû@øG¯f²e˜ÙÆ6Ë´LTÁ^±]ŒG‘”sMιfÀ¹Äh(þÏ€n{ŒP¦[PàG±ܲ¬@ÓJÂñ¹h²K`¿Ÿš3¹ÿ¬Å4c>ŽŠ‰m€†³8tm `ÜõÇ'îmv°2sØÃ~ Ø»óê§SŸ56Ýn²žÞ aRz™¿âŽì ƒH«XñìÌ a&ñh Ž]4Jõ‹'Õíœê~S•MÄÝøÎî *ž ⤪ôx¾`·wCÑ|ï¹»¨Y´ø’Ç5xanäUÐ(ËDáR¢x:jë|~5í°\[ê,  ?©Ê.µý”ã¯Ázã))É)›{õ…T4\²Œÿ‡ÖDábçê´‰C‰½íäzÆq7šÅñ3ÅÉ2ž'¨!uê=ãÔZNùÓ*yÛP4z‚l‡Ž³Z@r­ñCN8ozâH¸ Œü $jP뉑ÕMé£#úÀÀç Dx<ðH¼nnýpÍÁŸ‹¿{œHe"’º¨l’2 í{ d:!ö{t•ÿ³^.½qÛPþ+Z†€ÇR%­ŠÀ@—é¢iVÙŒ;AêWÆF]÷×÷¾H^’ÒŒÔvåÇŒä=<ç;òê-¿:ãˆ&½à“ñ”¤Í«á*u/å¨3¨ÊÊ…éÕU¯wkŒYl/2Ê.f,`ˆºÑ¬!~Ÿfêq/øèWP.Óµ0IŽ>J·N²’M”FÆ…`J®[U¹i±ÊÒNVåêتʜ—ØêtlÕòJÓô„b*ßÃ[=íð2e:ÊJ¼xîfl\ù2mh]Ço»^Eà ŠBÓ¶ 3- ØðÕ5ª{Ïé½:ê2©Å׆ë_¾‰ú yô›S©óŠ~û€eŠÆuÕà~Xc¼tK>ʆRãæ¾aWm“«¾]Ž§ÛÂo  :<ïŠïõÑŒôórÃæOY×9]æØ‚©…QÈaÏbeïÌŽœ>¦lßÁP¿’ó ^Ýòòè‚£wl˜Ïëá÷³… ©kIP°š©¾ëý¥³]ÏËy†± Gg$4†Žä€NÝñ¤QcK Xds£2CAŽ‘­Iì„{Ö³›.,;·[Ã<–òë0:•ÒÛ§eö +eÂø¼–ÜX–Õv3½M?éÌsŸÒ駄,§¦+X¹A6'7Ð@Í>ê€<Þ+²VfÉ­è§ÛâRZ2íp’õ8RðÞÅ¡¹¯zÕ:s¹Î\¥³³*›H^š"ë³å“äÚS”ö±‰éè;ôý‰zšàAb—OäÅL P;²Ì´rÉ¿Q:¦»Óhiª*\øê'¼½ŒaÄKïÑ)¬Ún„ž JpyÝéO)ìtŒJ¸/é Üáþ<™)aJÔ;yqú/ƒ¦­w°OG +¾íCm´|W Æ_P#Ü9^ʸC]t¸Që©`A¡|ã+ØIúvÀ§â©w8¨ zJÀaŠÂDê,¨Mê_Შò&ù_õÔP°¾ Ò[µ}i>ÎI‡a¾Ú¢­¶B—y]¡¥D]¥5ÏN]›2 „oá +Ùla‘߯ùüÎô-‡häKÞC¤YBÅòü㉅~mœ¡+/…H[CÇqßÄй’ŽöGÈÒÂÑÛ+”„Oò#N~k>™Žj] +4›)'Ì—ÛNÔxB§ÌßÝeèÏŽx¤ªðPøùÙ0ü}rä»ó¹©•‘“iU:êè9ÊþæÆ;© +9à[ÊÀŽRõæ¥+vëDº¢)5ÛòExÆšW\h§Ü¸©–)> +stream +H‰œWÙnÉ}×WÔ# p“µtõbkb8˜A&c¾ÅAI¥±H)¤lCóõ¹K­ÝMY4 ¸ÅîZîrî¹ç.þ¾¼½^]>Š×¯ÿ‹_WO÷_Å›7oÏ߉³·Ë3%ÔÜXÿ×µûÍÙâýG%6‡³ÅRVB‹åõY¥æÊ8±¼þ·°þµs'꾞ë1nî\{¶g3ÝËåŸg¿,Ï~ù nú\„ûq/¿~]üc«ÄùýÙ¿ÏV;´ð×Õn#fë]õþ­\üöîùЪµ¥¹­ú‚vê`§f;ÓZÍ;^iDçæÊöµhM;ï{mѺÿÌ:YÕ°f6—•†÷bfÅùùâA*ph¶—ZÌîeeæVÌ6ð®Åw°j%Í܈Ù´z gàó ÿ»ügtùy§êÌ©Åré#­æÚuä€fóu2_ƒ1°¬ÿ «mºWÌ·dƒÃ7 ¾7bv+µC›6à„Cÿv²A×èxp®òŠ½¬ñŽÄTÎØÙ5û¹—¦Áç4z^‹ÙœÞàñ¯Ä9~‚WçÒ*ŒÅž·‚ºÃßS[WðÂrô*£Ðö­ÿB>Àó V´©A«µ‹ÆÂm{XÓá%•Ô5_?4ãRVäŸKwb½ÆUðüêM½S1xx>9Š›4[[AÀaÉ#YÉÕ>‚>Ò†îùdŒK;ö™ÎÛat:>³2?V|ùAœ€—á…ê±™†IÓƒ!&+È)X~!-§ÉuCÀèT=Úq ‘‡È}ËÁó> '!-7CN^"ÄÄcXy@FãÁˆqß Lö¹DUB<}ô5FÝ‘ñš«Ð‘…\t 1ÉXq'áwMUìÐ*ŒvxGƒw<À¢‘wlô-âÊ–é'ÀTH- 'wã›·ô¢öþӢљ=> °õT_p£êJ‹Iø†1²E2àEŸÂ[7 žboñ€¹Xj Y9oMAºÓPëÀµ,O)ˆ”z 6­ßÉáf2Ñ„ŸNÁs¬Si¦‹l8>ŠRô9rYYîp …ñF}5©œ* "öµÇ`_‰‹µeø‹´‘áÐ@Á(òIi¼h"ìK¾.2‹¿W§] >þvBfÛ¢óèÏ&5y¸‚›<þ1ÝE›FÏU«tì¢ÌåÐF-…Í‚£7V4*fâw kªEŠú¤ B ,þ|¤? ¥–yÇpÓá½°‹¸ùW¹r¹>±ívÓm×»Òeé54g:vzÉlvá_‹߶F|É à7èí7iuÞZÁ/NôµøŽŸšøiåw<„ÎL¬ox>–Øt+b÷ñ†QSòŒÁ‹ƒ*xî’ùà_˽88ìÿ4“ÎùþÆ”#-=7Ò’¡sYSI¼Ê 6™ÁY‹.lt^´¹^É„„?…+^™#§ð\Ÿódû AÆ™–ð^šç2û<×hæŠg§P»¢úIbàD®0~“’Qd€W@ºôPoMþÊ’êË+¡Àm5ËU[cRVXWÄlR(†œÎ(Ïom–ìqGrÈÚð’!FS[¦Ãƒš…÷„¹x¹wiŸ‚ïûlGŒ½÷|¬Q<<^ŽN D— ´Øv#€€*dT3¢(¦‘Râb¢™õ2Ú±N¥q—„ZEa¾0Ðý„ ¦¥pÜGQc9Ó¤ãè@-]‡¿Uä Ðò0N˜ IÛV&PZY•©QÃO`»clã÷ORÖ&È‘žk≠,÷IZÃ54dñª I«ŠL¶úÕ2Ú0"æçÖƒA¥Î'í¸ÕV!IfB68/\FÉ#bÐÚÓt}§‡ºÞ·"s„‡p@ìD—dÏ:ÖÏK&‚¸0ï©k°&²Î‡‹´ÉíÚË +ÀKô\QÒNP)t" WÖÁÿumÅ~s¶xÿQ‰ÍálñÎ|.Z-:דo½è@®k„ë =uG®½VJÙ7Ë?_h„ÍŒdžˆ Žíê—[—¾a&ÄtJ“SQ>¤4AC™·ºqÅ­GC;¥êAWi†z¡û^ȇШûn;‰ÕJC`›{ïå{&ª§JVŸ_±º¨GêÂñ©pÝ“ìÖ†/‡“;N#5 k~DÍs *=Dí Axi]Yô MÙõc4¥Ø3´T¦¹M{» BĹMN¨'Q~3!gò^^ê`—!Y‘+„ä:H~TÅ +C,Ž]ñ'&Ï:Ç`ôýHë¼Q¼Š,®Ý(®Ý ®®ˆë 4é0“~ಣ(¸£Òl$8¬_’úÙRêB"U<¹b\[Jx\¡IVþåÛZìBìZ¼e#FFÞ%ß%ëLCžTNe’€tÉÆ­`4Þ‘„,OqStF(Áµc¾Hõ§Åˆ ã$:Fùfn ,Ü›Ú~†…Q°6ˆ³ÀRL'ÇpbÛ¹“C–T_,XÉùÁ•n‚®ls]™t÷-j™´s‰øSNM?b²AáÚýZ| Sȃn>òcQsŠÉB´§GP;ä””¹•Êa¹gÔ©ÑÙQ£óB‘ ¶º’Û«bô4½9–`NW×>Áçm,ñ­¯²{†ü…ä@ú6í™”kØù6““‘†É88Œt¬I» TTÙrœŸÖ˜tŒ-2‰%‡EaƒøŽ[‹cµÜ"óE¬ æ@o&ÖàY©‚+~ôÃsQ˜" `Á6y»º 5\TUI»ÚÛÖÅ·±Á†p–C‚l,ŽG§F€Qªžœ$×uÏx¹fBˆµÐãí[‘Uô¸ãÇPö¸ìp +|´Æ`š ùÒy`X˜9Õb¡%Ó«¯­±êt5 T±QšüK’F‰À.RÝÃGn‘ü9´£„íÑ”Ù, ¦7‘‘¬ÂÏ©À.’>÷—e‚+t)VNÙX2Vt|Ï1NEu¤KuÔO1lVþÍDŸ + +n×$x‘ÚÃ$Nõ±Ž0 A„ù¥/gÀ€éJðØcD纹ŠèÉê‰u›Ú`ºÈ`ÓLÍ‘ñ6Õà +LM1Ò„¢?l|LÈ2’f$;] y]´‘Ô>6ø©Ïð$âM¬Y¿m½Zo/†É‰µåÉ ™³wƒ^™ÚXÄÇÄ©Í'…RÞ碘îÚ¢@öéN©ä .É÷–u2˺d»­˳6ýJu¦yà,4\*èõ™lÚŠçºãA’z-©¥èp…ˆ MË/¬fLÖ‚Ö ÎIÔ_{z-á D}‚©H/ik­k݉“O›åt±ÔŸÐbyÍÚ¥ËKáÿ€dc¥QºMJ7XÜ×ʧ»“UK£xBà³²¿5zdÀU1¿K.žËÿ=s'¤"„¡Á1®"uÅîü,€[¯xË­¤Iê@/ã1i+-cŒLØbýÔ$ÅÇhEwàa~ãîÊŸí×l=©Ü_xø¢ ÔíHsx;ÿb8¬dÇV7¬xçî„ tE–Š |ìëc]YÁôfl'Ñ6!nHž6ÆEB5aè¨Æ£6šSÅ`今¾˜Öw9ßhQí}q<æ„ÍeJü\Sm_>qÙ†]ÎPÁF ù—‡N¨:úžšipÐ7ï;ÍSbêQïø9æÏX¨ÈPC!y%’Ò¯ˆâ°•š+—G†o&,~}uJm÷ƒ=$ÛƒcIÏN æÿ¬WYoÜ6þ+z̶+’:ûœ¢(P @›ÇÅÚ±4¾j'1Ü__ÎÁáðv•øiw¥•HÎ|óG$P©‚ªõ½jýfĶCÛ §´Á¦iSrÊ!Kæ/Í°¡ !A¨âª}`úÍìâP‰‘9-à;ʘSL¼‚AÁY%O2Õ²Aµ@(:^ãh˜˜¶Maâ\ÇÉè_-8‰CfgF +ç1’å.*:ÓCw pÆ•L!šõ!­nO>IùãQI0N•K4÷9õБ:ºÄˆ E©.å«W:œßž­(0ü²sx#î8„Œ"ÉzßâyÅ è\%ja²¢Éé× ÿx˜ec×ÍÞ¿³MÚÿæôØi|ªLÐÕ/è™üö]d +FqP­G¿k©Åv-kaU›÷ov=úM=Xÿ`Óáh¨ð ãž™Hl¾ÊSû&ZÞB@ÔÖÙþïýZ^¹6 ‚–œat»Òþ’xœVHÆe$ƒŸƒ¿ú~×èÍÜýžÈ~£E©Dý¯œŽ Ès):¦…é:?+¯¯Q¨üç{kíÂàX%15ð„°@Gypñ™ „‡´°”ž‘ÓäÏŒ>¾ýO”í¢ÖÌКª{qIêA¯ÝD¶~¹2ø¹&ÌÇã£KðlRLJë”–ÄëÍ|;²Š¨Uͮ͒¢Å¡ó$' „›§°’²ƒÃ˜ˆ¬ÎÚàhOioiM:‹Ï©21UâŠ%á·|³Üåêø¹Xà F‘x—Is<úeáh€š +4ÔiB Fœ ”ìÇXÚ°8N“ G +Ç­pÓuVmc™ï±Qud†6ÔbPµðÔÔúâ`„4〕ñXBqL;žfèçcd4uÁÄ°¬Œi>~£H!@L"aÊ»=„ç 8AßQòc˜GTØXs!¤FÑD%õÚB©MŒðÄ5ÍW8„MeáíÂrß%%¥Š& ׳û)†ÉAÿôªŒ׋,Û.LÌHC)9:%cÉé³y³/cB­vê ”„²>!Fov—qQˆ +an±@q‰q‰ž‹£5’¥”7Љ¬x ¿˜Êâíy0‹oa¯¾Ìoá–ÏŸ›í‘Ø+nø-k±_ÌÑäKºe帧„ã³£áÞ³?ãß#œä?æüËFÑó , 3UQŠƒ¸…íÍÛ1¥dê¹£@DßúU¼Ð&ð‹æ%’²ã2üÆQ™¿{vô@Ò¼ž,¼dÒud³ڟP½õ\”ÄÜônO¬$jVvKÞKåÜ›i Å÷›$­")é,RÈ1qóŠÁñ;ˆí€ìA!{›ôyàN›€ë –„ˆaJƒS>ñTÛ-xK#™‚M›(öúYe”<¡ +8Šþ’N€«f{O+Ö k~¡EƒÿÕ£¢©‡ì—ë€u«‘1>`ai¾/‚D FvVv;TNDÒÿõ«”GQä¡”¢½ø3tÀ)Bæ&n’ÉØ©+“ ©›ë¶r“ÃpÂj­U8Pôò|¤æ8R¼‹î$æ’"±ØÌ_YxzH§m²ih"§ +qð<8ž[IŠá7×uó/ɬX§Ëë,U\Å®2³{€ÚNð®HJ ‚Ï«éo«áòIhÊÙepù8;+ŪAŒÅ-3Bd;O÷O;ì²ÊYó†Mž&‚}RLC¼ `"ÀðaÜ7qsüÎ˦j™SÈ1‰2=Ú‰làŠŸÓCô…RHÏŸ4ãT3„ÞÀœl™kÆFÐh#˜2n’ÙÑâsÂ<áSèF.€{r™äøc‘©œ;"‘íÇFÊS-ó +Ÿ°b +“FAÓyf^ ÜNÇ¢ ¨™³HÑMË`±>kµÖ-D +U(ÀÅn"øqñåpÕcйŸ`÷VáŠY¨Ò]O†ƒ2ÜQ=£#X AÔœ‰Šò~ƒ[?5*‹ô:‹TÅ·Š?÷‘Tl:(Sl¯¡C±#ÕC¥BDdkªÂª×ýö':ú Ó51œi·åj“[›øÙ›h,h#»–:×RÒáñгmê*×Ðä©h( ÖÆÑ‚Š;hÀ˘‡dðŒ§Òq§SŸcç Ù=W‹5—ƪ¨’¾5øeϻĞŸú+³ïJ,I'Þ­gæ ´öÇÇsd”b®jsJq¨Hpì}sP8û )Óý–›´ÇôßÔksÖuy¯ç+’H6Q‹Z,ò¨&ú1s:êžOò´›–xCt!xäxxÄ£ùü+ ¼T?¨LØœÇ.¢­bq!/ˆH@¶9šwò‘'>Od­Ôï%Z‚<6„=f (n“â¦xà ‘æFí?åo ýŸ¼í’þÃÁä>^nXÖ¥©Ä#®`Ózɜܔ.—9í‰æyˆ ôµqzô=Õpó„7¼Än‘¹aÜÝ$…í¢yõDÀò!Æfd 0BôsR‹ÿe†¹ˆ +endstream +endobj +95 0 obj +<< +/Filter /FlateDecode +/Length 5914 +>> +stream +H‰´Wkoܺýî_Á+ »E‰’Ð @ß{q‹¤ý…ã¬'ñã®í¦î¯ï¼H%íze£ï®(r8sæœ3‡ÜÜ]œœÞ™—/ÿbßž<\ßß™W¯^½1¯JS®*×ÀÿuíÌæüàð—÷¥9¿=8<¶ÿ*5Çg媴ðáÔ,åÓãW-¼ÿÚUc¬u+×5©šUÓxXpy°¨ÊâøëÁOÇ?½ƒ“~‡ƒ`ƒß…íñÛÛß/Kst}ð·ƒÃ÷7'WáÛ“«s³X_-y]¾{óëì]Õ*ÜÃ7UŒ*nØS$½±U¹²ecM[u«¾ï=ò²,K÷J…²û°F÷ ÷ìÛÕûïëóœ¼Ä7L¶åd§\;Ê0ä™VYc_•Þe§XüTø•7‹ÿõÊšÅüiàÐbÙ¬Z³¸*l½êÍâsaÛ•£ß«UßÍiEìÌâ¤XÚnUãÒÊâwE_¯a#‡¿.ágØá²°wL;óïwæã¢ð-¾‡ÁÙ_à•Ò,.à{‰‘Ýš[±Å?[[áž×øõ{Ë?›«ø˜.tg>­ÍuÑâ盂vŠg›GïWTþ s‚¥ sb6ë‚Á#Šë–à_¼2%‚÷>á³?n‹aZÊÏZN;~†÷h}åñL,kŠÿiOT´*¦«7mcÕuJ›<¥MJ)dðƒµ”‡—¾ƒ(1/ë¢Ã(ÿ]¸¼¬æ‚67Îà£Üjãe•—BHšyó[ƒ¨ÁÚá‘›” ÅYC"aÑyai·P_„ {‘˜ç/Bõ;.ðùÂ8=ßÞâö‹¢¡˜‘÷n/L\gÉ”®íM[Â5ú¾yÉôêx½uä™|ë<ãÊ=y©Ü9‚T¡¡NEðañjUUÜMKÛcq¿ApÃ#îûsC] %ZytL*Ž[ +N ‚ ¬Òü†²ø¯Ô=Uqâq7r`&˜Ê0õxl ¾CÞC‡â+§ ßS~3ÀZ£æ¿˜o<Wê" Ijýk8¨% +$.ª:¦-áƒØXÏá²ç5FÑaC}RÔQâΧxù@šÂ³Kê>ä-‚óFòðDÍÆ©®9ë߰À¡Jî8—”–¤tÖ÷œê4ä¬)ùNŽ´•n•2±¹…©}âÕÑ5¾&‘pL÷ëÐ!hRNS]yŵH؆“’2 É°™, ªŠìUQÈêœÂ 5þ˜~ì³~7H²UŸ¥¥¶ÔïàJ¸7ŸÁ›®šÉ›#gæÛjeŸäÌ€¬v8³Á¾s³žÁ˜ ¡h:ùÔZë8>,þJ¹¯©\Id "™% +ÊrtÄ…ÿ —˜A­ÄRB•]¨`í¹‚Ë–Å{éˆ3/ø‘Ð(á 2‡.˜SÞffywXpß´O´àÎï,t¾ïœB·3 +m·xp}<Ö—8,¶<´vGåáÒ^°+–}ÊZD A¡L–('sq8É…~ˆdû»ÂU÷AJ¢F_L0\¢Äˆ)JfÌlu2Ñ+ËÊ…kÄËK¢R†ÅÃrÌSxÕs¸Sm‰«£1$»ªˆ*Dú­ƒr ”ë› ª6^ÚåÊšOÃftJ÷¸q÷µSÆ='ã•LQœ“j û+å_“”†ß°[uæ$~¯ÈêÜ‘9wrD[Ù±.¨ØHFóM¾xI–Œ&©ŠÎø[Ô™y®?Qa|ä 5Ž¸|•@£š[žp£ðã›ÁÕ•Žœ 9ò‰äsÇÒ¥;»«gØ5¯f Eû}e¼Ç´•}#y/CîD[ÞHEØ,wÝ8 ¦¶óØ]þ>Hå/ã\ò8âË… W àxvtâ +×l/½¯ ØO–cü„‰o<0ðVÉ5¸þag¿$ÀÓž1¬h…+Ÿ>‡0‰ ñü]„­öw3¸¦.詇Úµ±„~ŒðQiê¹é +"áqD@ Ô¼"6mZ;¦ÈR¸U(ÕQ¿? ^¸úûò\J§1†6I¼ sF·Í•RL’¥nJA¹›ï…4ð^•Fä°€ëõåg9|úA»"ç)–®H#ôgdçsÙgBÚdíÝîTÕè{cà5=„wªªÆƒ9+ZNa¤ai9jèñ´3-<›õ¥Ðõ5»‚1?<¥‘Ñ]Í`óºôcÛO³yÓB¬1+ïðVÊrj–èˆz >¨LÇ?ôAäûØ« 9]Y¸ÐÞ\_=ZhI +ácUUE'êý¼Y5) å?h™”qS°y~¼lAG ´ßœxšd‰¤/¾s‘¢†ä””HèFJ“% éÛ‚3IFR?§ô Ø)Ûm-å!í<“ËááãF*ƒ +>§•²‰åñÊl!VFYñ±»& ¦÷„ñ¹ˆlˆ´d$¹²²§“+&Ö rJ?žp Vy ñ4‘®Ì˜¦ ±Ï¼Å(ãëçL)uƒ­Û†µ¦T¶s‚¾“€8ò‰‘ž(~"ëwŽ¨Bèñ*b †ïWt`¬_N :™MJæ˜Æð»Â¶+‘åhŠþ¹bƒï8MÆ®d¯ºL¬yl¡è3¬G³?u|H£®M"'Xcµ’ +Šì#\9=M†ëêmðq²ÊKµ¿`vtaû Âf%#ÊÖØ¡Œ~cÆJä›\Í8•_”*RÎq»nDáiyDˆ1b´ æ×bÙâƒ3CóomI^6k¡‘˜H(`¨ž¡É;<+²]5ÉvʨîÈéY8> ¬2Ëßسπ‚ßn‡¨k3,LqüuϽÛáxã¶á H#¹LÌ2Õìw(e£à|ÄÚ$K£'¡áüb¹OF%ä~ieUì^Áôopá¡žsÎtò:©‘©Þ;ܽö\| ò\AfQ$湃µ‹4¹ +KØ72ßjÛž éF"øŽô+`/ªÍ ê|芓!mÍBê¡}] t‡éµ9øîr¡1ÚÁ²U–ÉW:Nd}ÉÂ3²QÃr(ƒï1‚ÙŸV9úÌÀòÀG'˜¡2(i;(n@B&G=«HÇe=»—­â–àvžçùÕ Ò‘Ü7+Íyné¡0 c=?ƒáGhH`ßßL0½17]Ä“ ©á€HèÕdÅÉÌ@K?`,»ÍXÕ½S&Bô\°Ø/É òÇ’EõÒ¯%÷Ô‰­²b£lÙc¾îÍ/"Ðʤ6Ã#bbˆâ"ð)~A‡õq´U'yËÇÚZÛÞšC\d·ÏðÚ¨¼CTdvÓ2G +â?ýP!ïÔYÏö²­Ã˱‰ŸŠ´aF%7q‹X¤ÉýAØ”ÊÚæÎê¶Wæ~FëC§29•§eËúdèªQ4â`ÚÌÉœø%z â d6=c7‘i§½NO{z¢Èá<¾•Õu›˜<œ:,N=žšFBi8L³“õÙ$ ÌDœ0c󒙣‹zućèS[DÔ‘\!1å ŒÙcM¿ c¾V@¢â á*ß9Û=æv¤‚•°eÅ9b2à2næ˜Zåà½vðrçr€ÇÈÊ‚‹.&™%Ž0Ĥƒ&•›‚‚ÜåÇìüPáã&/Å»6ù¸)3H•›ƒŠrù`’¼J?³5e­9Ç2Ó°ßð1SÕžV«nJåöÏXÙ¦gI¼Ò?ÿ¦™¤]§Wvý1uÔ˜j¦¦Â¦23ò•&B›QŽ’(|uÚ¡·C‡Ž±¼• ¶Q^&/ÚŸZß.Ì7²M|íòÓáb¶I_O<†9rgÁ¿K&' þl;Þ¸íãf‡óÊŠÏSðŠQ«°+¶ÆôWfÚ¬¹I=$ywÚžŽ5( ?Ò&RÁà‡Ùäš:P™hðæ$±Î­¶ƒDBþJïL ×Iõç‚ç/uÍ@<šb&g¼–Lx¯Ã_“ƒ‡Ú°Í­ú^ƒß-ôb«ð\È@a§,¡QdeS,Ž_Š &¦IÇsDh9E$2çÀÏ—0¯¹ì.}š.ÏCp Á¢Æ·¹ätÄ ”œ¨FƒwG¸?PšíÝÖ ­°’Ų8þºçÞ~Àö['¥²S.u˜VÉaΡˆÉ2$†?~½ €°U(1§y—Ve˜ws-›²qó>µw²…„•†œ&…C­À‡M7·—b„ý¼²Ž È4÷²µ­c^%“Ïc®/¥#'ôaÂÚƒÂÏ/±ZCu<Ì¡³6GR9¤³€$÷?ÞË¥·nˆÂûþ +-+ rEJÔcÙEv“UŠn¾~%ÈË°“î¯/çÁá"ËIºIîõÕƒäœ9óuP,zº:îæÜì8‘ÝÁq,è +­ +ÁŸF`º²*¹"ŒÀþÉûX!ÂjG6+º—Ï–$¹Y-²˜ðH{¢Ö]R5SžbcÂ3¹ÒkBÍÁª+9 +9ÍGrr¼bÊœm`÷q×w‘œF0ž$á bG”´džTÒ¼*MgXà›åa `¬ ¼ó>jðQ à]hš*CO¸Æ:• ó8z‰j¨jRÂVzº¦>­ÏàŒÂná™ÄoÃjT ­ÞØäFD‰5bµ9‰9sÊ{R{ö‚𗾶ֶ‹£tR©ÄÀ2$’G–I†7}bâ¡£øe›Õ9s†)Bz¢ÕÂyž5¯¨ÌÒjtócÁx=h .ƒUÆYÁâÿ—œ&îâî¤<ôc2Ì™kúf̬ 9 »‘ýa +Z4"žc¸žávažhþPüIÕ‘ÓDz<¢›àÑÍÎ|}^á›Bê¬vؤPZ9¢Œ’ãâÑøRÝf.í@©F’ eš%ÑÍ T+¯~«`´G’<",«„Õ²lMY~á E7añfü¤,˜RÆ Øsm~V¹ŒÇ ‘ÿƒ"Aœ×jt°™Xö$Kè\'}òNàÒNã“ +ç”Iw=#eÏmïÐUª-xðçæ\1ße‘נ&nIªš Å}Õ‰P—ÒCE}!š€Ó|0ÜöRFR4¶ ¶ý#r2ŸjjìEáq³rdéÙ|,j:Ytê€ýMQÑ7°A±]@¥\u {Œ*D k…>h> +â¨ÖM¬Þa`J’ZŠšîáýt~où™BU¡1xtfÖ̫½¾r6]x$âM£VWEYv†Ÿ®ž>¸\6¸V-¾ÌЧ`èq:ÆVy(Nkå쬆àVDbÐéߥâV +©óW€nü_:XðüÔå~œ]I÷ ¾>«›T5‚d‰@ỿñ쀜’Ã/¯Ìß^Í«ëŸ ø9ÊÂ*Y̾À«aY,PMocµ-Íà³el~™Ï°AGåë˜Fòƒ‡Œ½û©;MO?@SÀåo¸Ð𵇣'Áñ¥|³?@è’™ŽØ‘“á;?ø xG} Þ0°]Ëäæ”Ýð +B3âðþ‚¼å?Þ(Ä”âUOuðþ¿˜Z—:w¶Îã@åøµí° +ïÙ·„îi*Ü4ÊȤ{Èf¶©³‰3”¬Í«Ý:8–’`üSF’«…§ æ+=÷ZïU2“€-1ÚÅÌ+¶†+•XYz-(à4vÑû8!™îÛ?Úµ#•qSé5ƒ=¨fç·§<é_bD=÷Wðñ‘0àɘ‹ýˆOÏ”Öe0úcĸvÆÕ~çWÄ契”ic1‘ìÙæ9õh‹[áÜùÅ%ÇK “ÃÔ]°KB1^ËbÐ[•E…p‰_oér-ÀEAŸÅ®>kþh»>]æ/íä1Ñ‹~ pþU<’p!yÊxÇõ>„épG·Ü]w†ßˆ>kéÈS8}ÑØ’’f_#Mkç3'Óôì@ªspÒ^·S„â ñßËF¸Í$öâ2Õ™šì7Ê`à LÌD«,ÜÿÙ8°4œ¿Â«t£8h”È7Àê'´ýõù.Ïwš;K0ôÁg1x¡x^SãåuÙiÞ;:„·ôä-@¬i_çÐÕ3¼ø_xáÌd6@_ÿÜ:<Œ×ÖŽí4ò®ëkÍ<̯¢"0ø ÛšÊ ž™!0Äâ!ÃãÀµh¸ŸI…Ø¿ÛÓ‡[S·)?<ÊÐ41âú9?Q£û†vF}*c2ʘN@ªáùÕjB TN00:‡OX«Æ»PÓ`…a–¿X ƒBzÝ6›V”ÍE/¸/Šw#èÅšD7È=2ˆäo2[¦BĦ[ªÙ}SÀç`˜OVÐܧU‚fõ9@¤Òd ëOÿý¥ëq¸Qs¿…Zä½fóˆ›X=_2—‹NE‚â8Ãó‹Åö¥x;±žÔ{CM:Ea±ÞEš˜zÂgX +ôû&2ý ‚ …×÷Ô·n%„¿ï™KÅoŸ•“è̤:›kFe–Q1÷-wâ÷«~·7¸5îPãغbâdhá©àÉyg[ð€q‚\ò . `ÍÄx¦_PÈ Bõ66$ÓZ†›O°Â˜¸Þ éPam üæg½ã¾Ä€ƒ03r¦ê‡9j˜ +9!E)‰ê¤cŠ³tÿ¡ÙThv© ÍÏ™¹Ž\åeòªhú„’‚ ÐøúBšŠ¿M©;F…/|Qmhnÿ,£¸25?ÍP®àn\…˜EËÙÂ6 9Ì€n“N’ûFãõª_5Z×JFL©7Þ¸…“4 +ÐØa}UcnÚÃz;çТTÏ7Ü0š)ìLHÍAidçÅ=lÏùˆÓTºˆ÷0ôÞ5h s||8a]lnÚ†D9›Õ …~ å`¦ÑÊ_à›H_ÍÏÊ”4iJj¹©*¬´@õÕ + NxºøMÜvQ¯âÕþ[%(³‚;D4æì^ ‡f´ŠÝ¿mb?g BWN„#ÁÓJxMPñ‰:fò8Cð¾ï˜Pgí‹Å +7‚GL‚`v.ð;f<É£ãB?yÎÃR¦¦µÔ¹¶?žå™¦¸´y-Ö¿)‰ *<ÿ®ù'ÞäõIºL’ýZ“$¬1›p•ßêÌ!îåXÒ„\Ÿ¦6¿7¿ÓGîºHHÈf7íœMòN¹”Þ‚×Û=¯ â½¥ÆÞ,äè?õddÞ¸VØ£?ð”ÀD*<€öýµkQO_°Ú†›ÆFÂr.PÎíCЩ—‹qÑõм¿ƒt±Óéƒ@Ê32wá„_±õ® 耲¦tbŽcMXþCÄä¿Iñ‘C|ávpŽ¬ó°d"Zñ„‹ƒ'ÇþÈÁÓ¹O(›Ù‰äÓ7†®ge"åÏ;÷7™-¤Õ…vKÝÇ€¶Áà¥ñ°¹‹~×2HŽ_ØQë…9 ²9cSQÙº*ôßÀt°(|¿ZýHÿ‡`å7†-ªŽ@tÂL™ç[)ÇÓ¹/G¯úîœ  Ë‹‘86H>a«L€ÖbßnÚ5\W(íŸðPÿée#SÆ•‹Òf´÷Eë)QóÝ!oò^'éãÞKgÖ–„ÿ„&~eBŸ86* Fe±³¤œpö¢à¥Ã%‡.?á.þPÔÊâÂû£fÆžaáácWšÏ xÒöG6ŸË³d…ÿ 0­x^í +endstream +endobj +96 0 obj +<< +/Filter /FlateDecode +/Length 4582 +>> +stream +H‰¬WioÜÈý®_ѧ“bw“M20 ¬­ÝM/‚ì +È;XHòèˆuíŒdÅûëSGÅcä¡0)NÕÕ¯Þ{uøÃæáêüäìA½~}øuøþäëÝãƒzóæíÑ;uðöø RUi]ÿ×µS›‹ƒÃŸ«ÔÅöàðØü^)£ŽÏŠª¬¬SÇg*¼<)_¶0þµe£ê¾.MSe›²i<̹9XY£ÿsðãñÁ¿ÀNÀF8çÂòø×ûßn*utwðσÃßîOn1Â÷'·jµ¾-~~«y÷·#eLÛÃUÕgŒÓpœÇ!LÚcu=ncª²íx¸?Ú²5¾Q­íʾï=Æøau¤­/kOW•F­~U7º¨ñíD;WZµúªNtaèÇs]ô¥Ç§‡C¯Öºðøù Ÿð÷ƒz€‘¾^ˆF¨KmN¹Óþ¾Ö¶R«O¸ ºÒ…µ¸ù­†õáÃ…‚a N<Ç7S¶jµQbXaú‡mñGX¯Æç£6¶tQƒÓ‚YGXÏv‡S Nå%t8K‡;ÝãÇ›ÄZ¶æ5¯ñ§n”ë¶âÓñŽw0Þqð ØŠ©-lp•û¢ÁçZ[Ücƒ{x¼Š^`صzÒÖàrév4„·Õ–‚û‹þ÷ñßâžÅTWíUïìï[Oª'4õª‡¬4WmåKÛ7-béuUUî@üóû±\¶kºõxÙ®ÞY»o©”UßR‘˜i…ˆí?¬~ÐÝ͆.ÐPÀ5â|Rš.ü¿Ó…äj1( ¹¥r"dJ›<ý‚>œGC€²¡\ÕêàÙãl,ðÌËž`;¬Á'‹'„ÀRí…îuÍ8·§=€ +ÆÓPt=‡eDXžB¦2¹T£ùÅ­Ó.¢š|Š™{Ó¡å[à)6yŸpê\Ÿ jÀI°”U» ¾·—ˆ/”àXáuæ¶Dó QñUÅS¨-[·˜Ød®& ¡î!­t7…c`µø罶41Å­€}h“;˜¬f–wà+V -k€ŸÑ¢??&wËL¬ç óë@ŸëiyœC¼FàÂ1z‹Iñ´¥Ç¬†b߬_ŒZõ´ªƒöãË8ÖxBËUÏ®£TÇLñNBξÎ\¾4€>wHcœÖ´ÆЪGWч—]£?›"m.…m‚¹9Éjn™$·™»"Ò.Có´aäèZÑ$—™ìÀ5£ƈ1ͼ4Ýã¥Ô¢Ü ƒmV¼¤úqOÍÒþ0v4Æí4@ÐâvRÀ†–4—Bþ2j SÞrr_Ø å¦‚Î¾´xWÑo•xb„K-ÁctÖ[8öO¢Ú¦Qî h#OÅy¼ôìyÒ8<î°ÛÁï‚gL02u“ƺ€nˆËà•ˆ×òRÙ‡-G=—4š +–s@++¥÷–.ÙsÌ ®é­°Üû”"UøsB¯“N“Í +5/ÀšëTâ~ˆÎX‚†J°\’c¿ÐžŒMIÓvÉ[.4%í3¦d´ìSÒíoJ¬ÙA8rû«iOÞ—íÀpi ½Ý«y‰1Xÿ§kdë¿hKÁŽÈ‹Ë–hqä'|:¹e®¾¼j +44F!(Ïyjá^É‹^Ivh3ÿD5e•"‹mqÔVÓ´ËÜŽIS9E-þ0¦µEbÓïf“|ï¾ft"4÷¨Ú](înêãRXœE·KP¿Ç…m‚í›v±ŸéfPM‡µ8ku–‚…58éDa¤–í&–I,òº¡ÝKµžmU D½²Í®\×pŽr@¹;9ÈZª©®‚©fd× Z¨Æ4,¿ u%óu©&–YaÞjGØÀÐ_É*àÙJï5•gldØît­›Y7žŠU€Ö3kGsûMÕÔU¼éè'S~êàà*ª**a‡Çž„£žºb ”“%wkF¾¾j°[Å·‘ÁO„ÉôÔCô äÌ¢§«Ë6 Š}MÜî0¢;•Ä Ÿä:ô`_eùG~Þd1  +gB§“Æ<ÈA¥æ`àPZá~ +2ŸöaðçU)Ý÷ØÆ_ T=…vBðÐÔÒ _Î4#‰V"Çyd8¿‰5~ËÈŽes¦.P»™Æ¡²® ¡Ùmô‘;*ßÛ €+÷l.-×Ð9³fm%Ìí©6lG";5lO2û’B|˜ ™^$åÖ=×X=ãm\ò6ò¦2ŠÜŠØŸ”êîS3XòÔåV"÷uQ­ ÝPC@lž8±7Ü"IlUæöD8•ùno qQá $=S¹ÈRÄBîz¬÷ûCµÝªJK Úú°@m<ô¤¦‘¢Ç%vY˜gX|ˆð¦–²H¾õ +aÔ3¯a{KjK Èð£KÊ-W¼SÆ@nj%­%žN¦–î¼ô»¡w›6×alvKA‚§r‘º?væÁ- ÿ<4èÛo´ ,´Wݬ9%š®s´»ÏÊp½D?û‘~6;ðR[aÑ¥¼s³*Å=(hK)Œˆ +½èY¾À‘‹Ž• +uÄs(p•Ž²ø’w©P¦4\ÔF‰Ä¦bïÓªí†$¹€7Có€!†Æ$2¾Ihr4 «€@, +§ýXS¸Š&#…—¿E„xÑž¡]Ð|ãÖ&n¥ºÉAÉJn`¹›ÍÞÞh3Õm¬y´/ìgÑöÍ;ÊšL8 l8q°i¥E0eŽI—X(Q¾—Íá–á{Ýwyu$”±OùI['¯|b²4³´¢ùŒ–5’À#IŸê( `ÎRÃÙ™9˜jÇ©”rêç6N7õv(Õ2Ç0‘2ÞïÀì—bˆQvRÙp? %i…Š?öd™µ +BãÜ>ÂÙ¤' ÚÅ’ôL'®IØ æ˜“@jˤi¾«…“ËO +Aþÿ «uxüLDÖárOhÚAÁÃÃî}€>HÀ0ã¶qªÌ:.%.’O0&rLcÓVÓ‘Ž|]‚/»Ûœ5Ô§ƒR•àZ©½ÍÈR^{ +Y×÷”þù*ÛmÛˆ¢¿2áƒRέ( ¨v姤†¥´EÇN+6lgq¿¾w›™K‰"DHò9ZÈá¹çž%§0D¾B¤½M™¨ÞŽŠ¢kˆ 3ÞëÍþqk>&W-p"‰x=ÃCnõcE˜Ñ}.*zQÔé2§ F"«Ã_ŽÚçd'‘_¤oÂd‚Bï—•ýǨa×TÈ0ç¾7òŒ œÐu]ˆ¼u¨<£;/ja<íÕì<ðÿ€yaæ<ó¯¸Ýý>{óˆÿ‚ü®Ûß>½…O=!õéN®ù8áɪޓ­J~°’žiXÞ<ìLë„*§8-¸÷ÏàéÕáÉ"hçŒ2Ž0ÿôõííêçß,eYv'''† lÆ#Ã¥r¸ÿ ¨ˆÆGÕÇlVp©™“Ê™¤NÎ,›D©˜èµlVæqòZ?ŒJ›Bn•Vä÷×òNÎ<ž ´T?öÒõ•+êÍK +øÒHÙ»,éà=¯Ú”1×ã댪óH;¼óï(xðúêÜtÀNU´d¾o_ ¿IèÌd ‚dãƒ\`Õ®´Ý­¥m…rt¹‡<– è6£èºòmF·ÁóŸ ùÌüC×Ræ·•ÊWC”£ˆIʼY¨\ÝãÚ‡íº™\RîÐè" s‹ß£>½ö0ãIM!u;{ 'Ï°SǸ€óV¤S‡ëÒ©6v¿Â20m£…nÄhN@u¯6ÑÉr9¸(B`L—G[±hñ6€'0Æ7„°å{±å Ž£EáÚÔnÔœN‰¿yñ­ååñxL곦I s„l(?ö—ìI•±p>›oÄ°F§NÛöÒး`‰©2‰'•­^V»z\àU£D¸7¨®µª²£ž¡YÁå—8;‡ÈâfÀ¹–GðÒ3|V®Ry¿.0QË%ŒÁãç÷S–ŠuB¬3î´¹,8•©+§EÈÒH^ÓkÖÝ!èŒøTºßõÓ:ü%¡d·ú ²¬ÜG97e÷ç“òÁ8Ú¼ó|Æ~¿Œu5=õ +Øq +›ø5ö¸ïyAˆüyðØs¦“hñyf\q %ÕLkðÌV+¬8ܦ¾Ä Ü­2œ°>wÙÛÆMA³Qî£}ã_YÆ>–o +ônzpÊdÏB}L¾ç¦›rGl¶"?»œ¸b'®áČಪÃë©zV¦|\ë  +Ch&y±ï—Ð?³(ÛÁ(/YØYP+·¯ZE~zíã¨V!«U`µjwªUÔ*?°I{jU·C«ˆ6ûÏ2ŒÎÒv]ŽKiªi¦‡{”2Šˆ ƒC:üáÀÀ/kü~œD¤7z>M÷ZJ">æäõ¬ªq¬ ƒ&gƒÇùƒ¼Ó~ŸòÄV#ö¦pDTèRãd¤¾Æš]ä­z%‚Cª9-Š4…°´lÖ™ fU´Ú5‘Ô{§ :^W-„Ðz UXjß"ª?1œ—(ò*åÀõÀƒÃ+‚@4š°Qû½7èÒÖ߀ £ﶶª³yf‚[zð%žº5œ:Ž¦ÁÇYüÌZ¢ˆØD?, [ù±6Ý…ù6«z‡É©û(†Nd°š òÃ2ÖF« `(V«G7 |#ZFÕ[ØxJÒß _õS_ùó2µãd +.§„¿a5¼ÏYåéÕ1}xŽP‡ò#ux§-È1Õ‚¼JRâ÷UÀh5Ö<üNœ ÂT&““:™O:„üúZÞÉÀû £H$:âe®Ì ejŒ̳(áð­ÙBæ3%âuãÃÖ—Cã¼ûê³²½ Ímå¾¼ j‘«Œ‡×ÁZ1—ÁãŽ0Sƶ¡(»¶fŒØè2"¹–t⧅lw]ÒÐÿ'À ‡' +endstream +endobj +97 0 obj +<< +/Filter /FlateDecode +/Length 5202 +>> +stream +xÚÍ\[sÛÈr~ׯÀ#Puaî3©­MyíõÆ'öÚ±å¤N­ó@Ñ”¬XQ²Žþ}ú2ƒ›HpHÛU©­¥p0—žžî¯¿nøøÙíÝÅÙ|q÷Ë/Ço_ÏW÷w¿þZüöâùÑñšâ|]üvrÔµT¦¨µVÅíyQ7+NŬáoÇ/›B'g…­)øÏÕ¦BÕÊߨBšÚ+htuôW)«ÚÀÇŸüýè÷“£ßß<‡ ?øxÀ×ðq^üïÑñË«¦x±:ú£ã7ók˜âëùõyQ.¯güV¿yþêE!¤jº ‹vÂøŸ(¾RwÇ/OO4µç_dvNz\ˆwš§÷¬ò0¿ëJÕ>e¹¬fnü³ø­²u(ÿ¥8©l€ß«™*oª™¨}¹ª@®¼¬ø»¬UyŽ¿˜ò±XárÏŠy%kYÞV ‹òª‚ç¡_ í>ç²»zÿÙ‚C­ßOp£'ÔÁýªMÝå .£÷Ÿ}TA Í~Guô„:¸_µ©»¼£šÑûÏœFàÛ`äÕ›‚Vˆ·nÃêà~Õ¦îv .³÷ÿ¿ÐéIÀúüY°ŠQ„Ý.§ƒ™3Á˜k Ä[\um-Dª¡ ¾FÌ¡ÜÌP­0*„PØ j8ŽiO Vµlþ‚R ±ç»ß±åÔteœ.L£Æ>êýa½©¥ †}ÃÖº|£b¨ûþ6pý¡¨DSãGñî9v‡¨¹©>"0òþPÍ@!Ê·p ¢(ÿ¤G<ú²Â¤ûï‹ì…¨ÁBZ +¿m]Äá>­ç%Dï +—cÊ?`.þí.,êO¾›;ýD¬4™Ñ\”𵑛D òÈB¼| ß°x„­Î‚™bN`.ª•šP4íRDDóz‡ÒP´? ÍåëW¨8+";^Ñ6*œ¬å³×“sýø¡›«íÄÕ’EÇ/eKìD≿áÂ1°àôL!Mï¤3 ËUqQ $n®*â Nù¿­+äm–ŪRHØ7ü·Ü´Ó”w(«A +Ç” Ò\[Þó"{=®[ÏÔ앪]>îy;MQ^VI©‹JÃ"î*3¼¨pe øq‹‚&Å5#”î\ØnÞ&|EKT´Ä?åa3éi… NðèÔ‚ú4œßÅ¿T¼[qKZn(”„é›Æ “4У_Àmª_‹“ÿÉ;tÂìwgGZc7uîunçz’_ÄÓ!ÝX}{|•¬µòbþñ9yZ†[ ®uË"!X\Vdû.psUùµ†6 ¼„­‚­,`¨ï0žpw^‘ø†Ïyè`Ž{®¡á]…æ:öí(×ôyŽ›m馬IxDCbïŽõîÌqT%T.W~†.ˆÕø8<ŒC­ðÙNЃG§ÎU-v’Í|Σ愞Ú¯)l9 x$@Y^¶.Pêå<úYDÑ¢<[±ªßšAÅÆ¿høô”ÙˆTû>ì@ ¡À6kµv§1ÐGƒAà[Ú‹hT¢­~a"@oiŠKÉ,”ÙpE‡¡ Å‚Ä¿Y0 §kt d0.(‹ÛŠb‘% ó3¨$°p†Œù0J­¡"˜ò”“j÷wäˆ.™­®©·Õ-ý™/âhP„ê÷䶮èÙûÜÕšfØ|²:Cá`_«+gÕ„è#FÚi£vÚMÃõ…iá —tô’O×üឩ̧!ã9› ⡸J•g|ù€§\ùÿì"˜áqý’{ÀŒÌqà‹^| Í{Ùi£&ø¸ã|môttdÂ@õ7Ù’Ñ}OêLàésEöblñ€ÞV1Gÿ|ZIR\ô¨}{áwWžÁn’ñ]bŒ"[;Ya Æ}Ùäìf7°@aãW1z 6}Ëü%Û ›ž/pã¶_Tla:Œœƒf/h SÀ4Šzƒ9s¸1kDÏчQêÿsqÊžiI6¤•Ÿ£›8ãÉ¡ $´î“ U¾xìȸF/Õl÷RFÃ>˜%.fÙéï+O'Z‘QC‚…x*c(ÁÛ’B EzÞêKÅq¬mo°íêcÉÀ&éãÞƒ畯cøIBaÄØûír~ýU»LX\݇y¢Ñ5J€…Ô*ì߇y]ç= 2î|vÁ<Ñùü±'5vÓ¾&ƒ~÷gÁœÄ}£+ï¯h‹/ ÎaÓ·Hr¡3ÅŽM>úûWÌÙœuwPÃññYÃÞA±wäÚfŸ¤´éŠX”È‘ÐDÖk²[ûmê~ìž'‚"VÂhüÝ ºBµœáwÕk È6Î4žÜoè­È–±Ãåœç*žÝìÝÛcfÀú…&h€àCqÔóöÝŽ{£ãÖÛ4¢7ÓÁÎ9˜ëÏhÁŠ›(y‚Idd$íˆ3‡ÀÇà)t| +uþ)´?Ê7 +]毽Ž ÝáÁÇ=çŸ?«w¿´3ZîvæƒyüU¾¦r® ²ü_Ù[/‰™¾Äº0PÈ‚7‡¶ã”Á +\1ü¼$?¿&w²¦Û Œ»ÀÙú9ÜntÑÄS!ÚŒ‡ Àæx´]™z^$Æ»4‡ÏÔ ÑJl…—çHV>V +Aáq¶‚˜éÓÒ“öÀ…g }!ð²B¯èʇÖIʈ'ˆÎ_2«º±$tT¬È¹Ÿ2sqG¥qs~¼ %%Ë‘zé|ŽÁÚlŽaƒÚk@x•bàjݤÚ?éyµ÷»yýÊ>ý/ˆ¥ 5Ò„/;Ä‚Œ’`C¨ñ‘ä·J0’í¢}h ìT›ßAW¹G(ÅSšº 1;ýŠôãÝl ›í¹ÜnÏ5†h=Gý©\1H}Ä3íÑÇI´â+ÂØŸeÑÃÄÿѹ*?U­ñ€›ñ€£ÛD‡€â\¢ãd/O¦@vÖçŠU!6& ŽZ²“ïzù’<‰!¶'P‘~Œ!ó‚Nä—ööêl/÷âƾ6šÚ-BÓ FeøŸH¬¡•8„2ºIl·äŽlÄ3:x®åÍ@ØWE¼jƒ€Ó#(ä],{ÌWê}2Å*ó +±Ö‚è—}¢'öŽ4|í»¦y äQH-”×›| X.¨ë%.hß㱜œÈ¬îà±`Ò˜amƇ·(oW>U!†|FnvšÐ©ïä©t#ë&Ÿ¦sRY¢˜ˆZ:m©(¤Y®Ï™o"/=pà +}9ê`:a„åΗ) §ÐM{†®*Ÿ„s:‡–ê-„ZË BÒ‹uÅFœr–ÐZ2Û¦úùB>Fñè²ÆÌ£ dÑ—+ºT( +†¹iN&ž¦d"þœ»6³=*=X2,ìÉpEÙL›³j1)Aðƒ³ÇjË  é²¿¡h:ÖÚùjÞâ8øýSYb#<÷ƒZr ·À¼'þ³§[ÙÒËË&+pJ”;9¥8ÖgžàM‹Qñ*Ýí­­º$µ‡ý÷ù›òÃCC±Ôr;óÃO:ÏG[~2?\ËœÜðØNÁ­äW¤¦?â©@/0@îx<ºîh©ùäÂ(-™4ú\Ž`úšÐ613d2¢cm½¦‹4œˆÝÞfk‰}ÿ¡C:”›D¥¼£Â(aÚüÌžP €1àqg#Ƹì +ëy‹³ÄªÎtbJGâ9ˆìÎ’¶\ë å›/M9p¢tª6M‡QÇ ™)Ô^ôÖɇçõŒ7}Õ6!Jµ Þzå3ŒºÈ —|[\‘î¶Ì+a•ëÞ0·•F÷RggÕ¼ÚZYµ‹(/œtøóC´ˆ½+˜ùGJ¤è’ ×(£f¹ÀIáÁøGþD‡%`mYŸ˜(ëSZê½`z3„©ü'‚IÙÀ†’€™Ä›Ë«PdRw²-¯š.šÒÄZveSdǺLJ®R±@CñªÇ5«Gªv¢Ê¤lïèmžwÄ÷ÝtçSù×9Í ] ÞäIÝ B¢%{¿]¶pvEغ«ÆJfÏÛ˜T8:lJÓ•QeÈ’ áDQvTíOq2×ê}ãR½%m å0SØæy­Ëù]¶%ò?†\žË½\¿“,Ë“žóý~˜öûÂî¦Çöæ]E)ú}¼É9Qc«ÖtS íºè§ÈFØàÙ5û¶(¨bœáÚü#ŒE‚Rƒ1Ã%È$SÀÛEåœïê€åÔ²Vc‡µQXÒ,ßGwiÖ§´„5ž;M…¾Å"D5±M™sñ± ê[ÖˆœÔU23¦ï”©ƒD\GR“å þl§ÄG”co.{é¹wè ;ðk>Iä÷” +C7srÓÜü“ž÷8>;¹ù šr8>¦Ã,Å\’àSÿ uúLÐå¡bméÈ´EEÛBÞC@^97¤&7)<$±Z„”_ •­/fè9¤ˆ„¥Ø~¼š¦Ö=Æ÷”ÈX:?R`Ê‚\ÇsJ\ï$Éq`Æî.æ¥9f¢Ÿ`ègXk¾¨IG,l‹\ŸŒX¯+‹Ø•ŠÍ}™î¾§µh,7Ÿñ{*¿H+¸©dÞ–ù‹Ed} IDã»_QµÂ‰)¯ÆY¯Ï[ªÄWÇýgµÜ‚P˜¢Ç +ᶙ®ªÇ‹o‰èîé¹È ¹”½â°ƒÓ™X1l +>Âœ™Ãœ™Pt@›î®¦ìfHü-b¹=2ä7œc-”7}8n?Œž†}ì»jÄ.fäIçÙ&^52;ýrX’ñ©êeÊ{ÕrW#*MÃN^sª¤ÀÊAÊh´Î½xºÿX$ʿѯˆŠ‰ø‰©ëx?L´ Žè¤#–F ¬#j¨#1é«bº7[SÔ“ŠõSq½4†JXCôŠ#ì“ ÕYÞuPˆ}a^™ùáY;›ŠÌRY5ùrÒS¼‡AC\ãÕH>Ó$r¿ÿ~[ãÄähÿ^F V¿¯äY&ÚÈm¤¶ÐFƒbÁŽWá]ïÁý%)ø×´‘}ìk;>ñ4×ÅeoÁˆgwˆiaI~3¦ÑIX3àq©X,´zÀ’‚Ü„¬ 𡪟Ua|«$#ðX$D n ƒ´,¹£5Áuäß(Í´&C)¦«3º"¯´¦·uvL5#¨ å ºdÒˆ`÷70?œà3À&0§ãp€l`Ì`ÐÄTÀ7%;G¦?‡f2>"€Oï‘ 'ÈÏQ† âÊØh˜8¶„Z|¸ .KPÚ_Ñ[”S–š’ÓÜPĤôUy‰pzò–ã­%A*ÞHkÏp÷ñEÃÛE¶\B^Õ·«ƒ³NöP¹É(%šp‰´N³‹ÖœŽGç¤\®3 —?††ªè^8CL¿jõ¤ç|!Õj|ä^Sô¸+ #ª»uš-ãзïìýR•¹3‚a0ÓLNàë½ÙïËA¸û=<€ðòÀ2Y%Ìôþ{Þcÿv¾ +eìN`8~îNN½ñdڜד°Þ÷Âú'A}çƒ[=!¸>Ä“vpþHr$$sjRÐâÙìÒ=%ÜÞe¨Âz*CMÐqÍô¿EsÓ&·o)nµ±–¨+nÄØö‘P÷ +KWc$ãíAÕ*ñÌ{Uª‚¶õá—´‰/6ù*¯Î·pìí;®+zGÅboßgÏa£‹èi |×Þ¡(cruWÞ‘Í€ñ-3â·3yC|dºþOÎ6¾â‚³'øï¾âÒêç•Ï®0PR˜ B1ôkPZv+G‰~c­ÀwÒ9}:P8ßsfè­f*TI .I ]ùÚ] ·ŠàS×xÆå.Ò¬¿D™•&BIk¤K|ÊšJÊÇNÿ’dz·j°º‚‹«®™@ÁRÒ«;w±ÂŽ çôb>œ(ª +dl¥“©£R}ç‹øCÅÝËMH½‹NxÒy¾§&ËÓo 2Æ&à#è §U¹•€uÙoÝïý²tkùcÅO[þ½^œVÒ~¯Ð;Éœì§n§Œ;ßCüNJ©¦wkÅ`*DÔr¡l„+gDóXrn\ÄeøM»lã –ôÊ ÞÌýà÷î +endstream +endobj +98 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +99 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +100 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +101 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +102 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +103 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 1266 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 102 0 R +/GS1 180 0 R +>> +/Font << +/C2_0 181 0 R +/T1_0 182 0 R +/T1_1 183 0 R +/T1_2 184 0 R +/T1_3 185 0 R +/T1_4 186 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬WÛn7}×WÌãÈR¼.¹aÀq #E“¶ú”…lÉ—Ô–Œ•ÃùúÎ!©ÕÅn 7†-µœË™™3CJÉ<)Ù*‡oKÝå`x|ªèr1PR)Ku”ž7ce£[ŠZÉ Zꦃ‹bc¡ï\RNFëH+Û`ÉéF6lÔ42:uV"FKëÛ^Ä[¹²Z$ÚV*ï×6¼tÛ¡‘Áëç†Ýòúb|¾¤½½ágþ>~œß/iÿÝûC¼xúü5ŽôŸŠ4.¯æÅ9ÕeõÀ£iÅŸXw¤µ4>©æ•VArj,éh¤ó.Ðèvð¥ú$ê 5UŸG¢¶ÒRu$¾~GÁâ*]P‘d¾øN+øöZEÒ’Úó"ù> ##Uç‚Å UWôWT½VºüðT`§t+^ÌEí±?ÿ¾-¬Ü~7¥k¡9Pªt."ô°¨ê:¡=6¦üš3¡£l©ZÒ£àŵp[ŠãW4å[ÿªl`GЫ=°ÖFAIÀÁ¯:xÔÀeÅ-Á;¾ Þ”&Œ€5ÆÀR•7B[hÉy–{à0ÏŒŠÁÙ†A…HSˆ!Þ‰:É–D^f…)ö9I/«ånÙœe¦Ä¶ÊV‘}ÿÿ6×Tp ·ÕŠ +¢nsH»É%£ R¸MRl%#ôåí8#©j‘5e’—ò–y‡Ôµ0ƒR4x&2<Òš.©ý‘¹W4ñ2 R‰yÌ %Xg'oè^h—8X‚(©àåNÕZÓ7Ù`Ú3ض‰§Yµ•^¼ÁîòI¾~­ä–çaÓ³UžW+9óÉ÷%ÿ#×âí´;p(YK"‡íV²Bª®Býx4§¦?º…Ôno })©/X;C=\¦‰Ãûug^`¶˜ÞmGÅñˆds©Ÿké3¿¥«Gml–KÚwpËþÞŠZ³Ñ¡ˆi¤ 3X: –…ei‰Nhû̘©HÊ#EÖ çaCr@n ¿pó!`ó—8²®'ƶkÚ\ÏQiá§Sj’QÌË@V‚(#ýÉL^+ÏVÍ¢=@xîŒ[:+gW¤™$zÝHœÿz±Æ [gJ¨‡(wìÓ{—sÿÈåÊçÁæè¹D:\JKŠì«á›@Ï}ƒˆYJ ›˜“~óS±œiè@„­áDÿh{ųÏEž^a«‰ÜÆl¬Mj—B›,µ`/JÖ“K.f}E ý%àVЬR‹ÊFn„ÆÜ…šÆ—ËÈLuœx"uåRäc·ÆKd71<毜ÖY$@mRbž(OšÖµ†Îv1ë»Üç·xÏûã´0ùlG‚zǵNÇÀ›Þâ´ö+ùðèäCÉMy^Ã7'ù'@Å  uâýõœ Í¿i<›äʼnHvRœº`þ·„œƒb:>cúT´… –à©NýÁñó"M‹ ~ñâ‚£3p=>Õ¸y£âv÷ú·Uh‹!ÂV¥+zÙ‰²M´“ã†Æ9úÈN¾Ó—oŠ&ÔÿšÕEYã&–ÈH˜¶[€ì)ÝþK <x·3r͵xµ˜7þìÀ³ËžÑ[òž»¹çó‘ÿÝøí.Ó-·³øîïÓñ5Ç ðâ/b>|kïÒm–Ta¾û°ê—O•lÆ0ãÓØQÌ. F²‡M^ý-À|©÷L +endstream +endobj +104 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 172 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 102 0 R +>> +/Font << +/C2_0 187 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰TŽË +‚@…÷ÿSœ'˜ù›"¤‰›$¨ÙE„XJBjH=}ã²Íwà\àÈí8?º¦‘¦ò¹o>¯÷Œ,Ëw(÷Ä`¡´ 4FãX ‹5ÎÆ $«£ŸHêʈà»0ôm¨øeÅ„ˆƒ|×hD,´&Îhe…J8dOJ™“ùJOe>ü{²Ö µÙ¬#)¸Xh¥aEÄ +ã:ú 0“.ì +endstream +endobj +105 0 obj +<< +/K [188 0 R 189 0 R 190 0 R 191 0 R 192 0 R 193 0 R 194 0 R 195 0 R 196 0 R 197 0 R] +/P 32 0 R +/S /Article +>> +endobj +106 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 198 0 R 199 0 R 200 0 R 201 0 R 201 0 R 202 0 R 203 0 R 204 0 R +205 0 R 206 0 R 207 0 R 207 0 R 207 0 R 208 0 R 207 0 R 209 0 R 210 0 R 211 0 R 212 0 R 213 0 R 214 0 R 215 0 R 215 0 R 216 0 R +217 0 R 218 0 R 218 0 R 218 0 R 219 0 R 220 0 R 221 0 R 222 0 R 222 0 R 223 0 R 224 0 R 225 0 R 225 0 R 226 0 R 227 0 R 228 0 R +229 0 R 230 0 R 231 0 R 232 0 R 231 0 R 233 0 R 234 0 R 235 0 R 235 0 R 236 0 R 237 0 R 238 0 R 238 0 R 239 0 R 240 0 R 241 0 R +241 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 251 0 R 251 0 R 252 0 R 251 0 R +253 0 R 254 0 R 255 0 R 255 0 R 256 0 R 255 0 R 257 0 R 258 0 R 259 0 R 260 0 R 259 0 R 261 0 R 259 0 R] +endobj +107 0 obj +[262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 265 0 R 265 0 R 267 0 R 265 0 R 268 0 R 265 0 R 269 0 R 265 0 R 270 0 R 270 0 R 270 0 R +270 0 R 271 0 R 270 0 R 272 0 R 272 0 R 273 0 R 272 0 R 272 0 R 272 0 R 274 0 R 272 0 R 272 0 R 275 0 R 276 0 R 275 0 R 275 0 R +275 0 R 275 0 R 275 0 R 275 0 R 275 0 R 275 0 R 275 0 R 275 0 R 277 0 R 278 0 R 277 0 R 277 0 R 277 0 R 277 0 R 279 0 R 277 0 R +280 0 R 277 0 R 277 0 R 281 0 R 277 0 R] +endobj +108 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 282 0 R 282 0 R 282 0 R 282 0 R 283 0 R 282 0 R 282 0 R 284 0 R 285 0 R 285 0 R 285 0 R +286 0 R 285 0 R 285 0 R 285 0 R 285 0 R 287 0 R 285 0 R 288 0 R 289 0 R 289 0 R 290 0 R 289 0 R 291 0 R 291 0 R 291 0 R 292 0 R +291 0 R 293 0 R 294 0 R 294 0 R 295 0 R 296 0 R 297 0 R 296 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R +305 0 R 305 0 R 305 0 R 305 0 R 305 0 R 306 0 R 306 0 R] +endobj +109 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 307 0 R 307 0 R 308 0 R 307 0 R 307 0 R 309 0 R 307 0 R 307 0 R 310 0 R +307 0 R 307 0 R 307 0 R 307 0 R 311 0 R 307 0 R 307 0 R 307 0 R 312 0 R 312 0 R 313 0 R 312 0 R 312 0 R 312 0 R 312 0 R 312 0 R +312 0 R 312 0 R 314 0 R 312 0 R 312 0 R 312 0 R 315 0 R 312 0 R 312 0 R 312 0 R 312 0 R 316 0 R 317 0 R 316 0 R 316 0 R 316 0 R +316 0 R 316 0 R 316 0 R 316 0 R 316 0 R 316 0 R 316 0 R 318 0 R 319 0 R 319 0 R 320 0 R 319 0 R 321 0 R 321 0 R 321 0 R] +endobj +110 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 322 0 R +323 0 R 323 0 R 323 0 R 323 0 R 324 0 R 325 0 R 325 0 R 326 0 R 325 0 R 325 0 R 325 0 R 327 0 R 328 0 R 328 0 R 328 0 R 328 0 R +329 0 R 330 0 R 330 0 R 331 0 R 330 0 R 330 0 R 332 0 R 333 0 R 334 0 R 334 0 R 334 0 R 334 0 R 334 0 R 334 0 R 335 0 R 335 0 R +335 0 R 335 0 R 336 0 R 335 0 R 335 0 R] +endobj +111 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 337 0 R 338 0 R 339 0 R 338 0 R 338 0 R 340 0 R 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R +346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 350 0 R 350 0 R 351 0 R 352 0 R 353 0 R 353 0 R 354 0 R 355 0 R 356 0 R 356 0 R 356 0 R +357 0 R 358 0 R 359 0 R 359 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 362 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 367 0 R +369 0 R 370 0 R 371 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 374 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 381 0 R +382 0 R 383 0 R 384 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 394 0 R 395 0 R +396 0 R 397 0 R 397 0 R 397 0 R 397 0 R 398 0 R 399 0 R 400 0 R] +endobj +112 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 341 0 R 341 0 R 341 0 R +341 0 R 341 0 R 341 0 R 341 0 R 341 0 R 341 0 R 401 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R +409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 417 0 R 419 0 R 420 0 R 421 0 R 422 0 R +423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 435 0 R 435 0 R 436 0 R +437 0 R 438 0 R 439 0 R 439 0 R 439 0 R 439 0 R 439 0 R 439 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 443 0 R 443 0 R +445 0 R 443 0 R 443 0 R 443 0 R 446 0 R 447 0 R 448 0 R 449 0 R 449 0 R 449 0 R 449 0 R 449 0 R 449 0 R 449 0 R] +endobj +113 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 450 0 R 451 0 R +452 0 R 453 0 R 453 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 457 0 R 459 0 R 457 0 R 457 0 R 457 0 R 457 0 R 457 0 R +460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 463 0 R 463 0 R 465 0 R 463 0 R 463 0 R 463 0 R 466 0 R 467 0 R 468 0 R 469 0 R 469 0 R +470 0 R 469 0 R 469 0 R 469 0 R 469 0 R 471 0 R 472 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 476 0 R 476 0 R 478 0 R +476 0 R 476 0 R 476 0 R 476 0 R 476 0 R 476 0 R 479 0 R 476 0 R 480 0 R 481 0 R 482 0 R 483 0 R 483 0 R 484 0 R 483 0 R 483 0 R +483 0 R 483 0 R 485 0 R 483 0 R 483 0 R 483 0 R 483 0 R 483 0 R 483 0 R 486 0 R 483 0 R] +endobj +114 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 487 0 R 488 0 R 489 0 R 490 0 R 490 0 R +491 0 R 490 0 R 492 0 R 490 0 R 490 0 R 490 0 R 493 0 R 490 0 R 490 0 R 494 0 R 495 0 R 495 0 R 495 0 R 495 0 R 496 0 R 495 0 R +495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 497 0 R 497 0 R 497 0 R 497 0 R +497 0 R 497 0 R 497 0 R 498 0 R 497 0 R 499 0 R 497 0 R 497 0 R 497 0 R 500 0 R 500 0 R 501 0 R 500 0 R 502 0 R 500 0 R 500 0 R +503 0 R 503 0 R 503 0 R 503 0 R 503 0 R 504 0 R 503 0 R 505 0 R 503 0 R 503 0 R 503 0 R 506 0 R 506 0 R 506 0 R 506 0 R 506 0 R] +endobj +115 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +507 0 R 508 0 R 508 0 R 508 0 R 508 0 R 508 0 R 508 0 R 508 0 R 508 0 R 509 0 R 509 0 R 509 0 R 509 0 R 509 0 R 509 0 R 509 0 R +510 0 R 511 0 R 511 0 R 512 0 R 511 0 R 511 0 R 511 0 R 511 0 R 511 0 R 513 0 R 514 0 R 515 0 R 514 0 R 514 0 R 514 0 R 514 0 R +514 0 R 516 0 R 516 0 R 517 0 R 516 0 R 516 0 R 516 0 R 518 0 R 516 0 R 516 0 R 516 0 R 516 0 R 516 0 R 516 0 R 519 0 R 519 0 R +520 0 R 519 0 R 519 0 R 521 0 R 522 0 R 521 0 R 521 0 R 523 0 R 521 0 R] +endobj +116 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 524 0 R 524 0 R 524 0 R 524 0 R 524 0 R 525 0 R 525 0 R +525 0 R 525 0 R 526 0 R 526 0 R 526 0 R 526 0 R 527 0 R 526 0 R 526 0 R 526 0 R 526 0 R 528 0 R 526 0 R 526 0 R 526 0 R 529 0 R +530 0 R 530 0 R 531 0 R 530 0 R 532 0 R 530 0 R 533 0 R 530 0 R 534 0 R 530 0 R 535 0 R 530 0 R 530 0 R 530 0 R 536 0 R 536 0 R +536 0 R 536 0 R 536 0 R 536 0 R 536 0 R 537 0 R 538 0 R 538 0 R 538 0 R 538 0 R 538 0 R 538 0 R 538 0 R 538 0 R 539 0 R 538 0 R +538 0 R] +endobj +117 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 540 0 R 540 0 R 540 0 R 541 0 R 540 0 R 540 0 R 540 0 R 540 0 R 542 0 R 540 0 R 543 0 R 544 0 R 543 0 R 545 0 R 546 0 R +546 0 R 546 0 R 547 0 R 547 0 R 547 0 R 548 0 R 547 0 R 547 0 R 547 0 R 547 0 R 549 0 R 547 0 R 547 0 R 550 0 R 547 0 R 547 0 R +547 0 R 547 0 R 547 0 R 547 0 R 547 0 R 547 0 R 551 0 R 551 0 R 552 0 R 551 0 R 551 0 R 553 0 R 554 0 R 555 0 R 554 0 R 554 0 R +554 0 R 556 0 R 557 0 R 556 0 R 556 0 R 558 0 R 556 0 R 556 0 R 556 0 R 559 0 R 559 0 R] +endobj +118 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 556 0 R 560 0 R 556 0 R 556 0 R 556 0 R +556 0 R 561 0 R 562 0 R 562 0 R 563 0 R 564 0 R 565 0 R 564 0 R 564 0 R 564 0 R 564 0 R 564 0 R 564 0 R 564 0 R 566 0 R 564 0 R +567 0 R 568 0 R 568 0 R 569 0 R 570 0 R 570 0 R 571 0 R 570 0 R 572 0 R 573 0 R 573 0 R 573 0 R 574 0 R 575 0 R 574 0 R 576 0 R +576 0 R 576 0 R 576 0 R] +endobj +119 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 577 0 R 578 0 R 577 0 R 577 0 R 577 0 R 577 0 R 577 0 R 577 0 R 577 0 R 577 0 R 577 0 R 579 0 R 577 0 R +577 0 R 580 0 R 581 0 R 580 0 R 580 0 R 582 0 R 582 0 R 582 0 R 583 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R +590 0 R 591 0 R 592 0 R 593 0 R 594 0 R 595 0 R 596 0 R 597 0 R 598 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 604 0 R 605 0 R +606 0 R 607 0 R 608 0 R 609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R +622 0 R 623 0 R 624 0 R 625 0 R] +endobj +120 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 582 0 R 582 0 R 582 0 R 582 0 R 582 0 R 582 0 R 582 0 R 582 0 R 626 0 R 626 0 R 626 0 R 626 0 R +626 0 R 626 0 R 626 0 R 627 0 R 628 0 R 628 0 R 629 0 R 628 0 R 628 0 R 628 0 R 628 0 R 628 0 R 628 0 R 628 0 R 628 0 R 630 0 R +630 0 R 630 0 R 630 0 R 630 0 R 630 0 R 630 0 R 631 0 R 632 0 R 631 0 R 633 0 R 631 0 R 631 0 R 631 0 R 631 0 R 631 0 R 631 0 R +631 0 R 631 0 R 634 0 R 631 0 R 631 0 R] +endobj +121 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 631 0 R 631 0 R 635 0 R 631 0 R 631 0 R 636 0 R 631 0 R 637 0 R 637 0 R 637 0 R 637 0 R +637 0 R 638 0 R 638 0 R 638 0 R 638 0 R 638 0 R 639 0 R 639 0 R 639 0 R 639 0 R 639 0 R 640 0 R 639 0 R 641 0 R 642 0 R 642 0 R +643 0 R 644 0 R 644 0 R 645 0 R 646 0 R 647 0 R 646 0 R 648 0 R 646 0 R 649 0 R 650 0 R 650 0 R 650 0 R 651 0 R 652 0 R 652 0 R +652 0 R 652 0 R 652 0 R 652 0 R 652 0 R 653 0 R 653 0 R 653 0 R 653 0 R 653 0 R] +endobj +122 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 653 0 R 653 0 R 653 0 R 654 0 R 654 0 R 654 0 R +654 0 R 654 0 R 654 0 R 654 0 R 655 0 R 656 0 R 657 0 R 656 0 R 656 0 R 656 0 R 656 0 R 658 0 R 656 0 R 656 0 R 659 0 R 656 0 R +660 0 R 656 0 R 661 0 R 656 0 R 656 0 R 656 0 R 662 0 R 663 0 R 663 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R +669 0 R 670 0 R 669 0 R 671 0 R 672 0 R 673 0 R 674 0 R 673 0 R 673 0 R 675 0 R 676 0 R 677 0 R 677 0 R 677 0 R 677 0 R 678 0 R +679 0 R 678 0 R 678 0 R 678 0 R 680 0 R 678 0 R 678 0 R] +endobj +123 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 678 0 R 678 0 R 678 0 R 678 0 R 678 0 R 681 0 R 682 0 R 682 0 R 682 0 R +682 0 R 683 0 R 684 0 R 685 0 R 684 0 R 684 0 R 684 0 R 684 0 R 684 0 R 686 0 R 687 0 R 688 0 R 689 0 R 688 0 R 688 0 R 688 0 R +688 0 R 690 0 R 688 0 R 691 0 R 692 0 R 692 0 R 692 0 R 692 0 R 693 0 R 693 0 R 693 0 R 694 0 R 693 0 R 693 0 R 693 0 R 693 0 R +693 0 R] +endobj +124 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 695 0 R 696 0 R 696 0 R 696 0 R 697 0 R 698 0 R 698 0 R 698 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R +704 0 R 704 0 R 705 0 R 705 0 R 705 0 R 706 0 R 705 0 R 705 0 R 705 0 R 707 0 R 708 0 R 708 0 R 708 0 R 709 0 R 708 0 R 708 0 R +708 0 R 708 0 R 710 0 R 710 0 R 711 0 R 710 0 R 710 0 R 710 0 R 710 0 R 710 0 R 710 0 R 710 0 R 710 0 R 712 0 R 713 0 R 713 0 R +713 0 R 713 0 R 713 0 R 713 0 R] +endobj +125 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 714 0 R 715 0 R 716 0 R 716 0 R 717 0 R 718 0 R 719 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R +724 0 R 725 0 R 725 0 R 726 0 R 726 0 R 726 0 R 727 0 R 727 0 R 727 0 R 727 0 R 728 0 R 727 0 R 727 0 R 727 0 R 727 0 R 727 0 R +727 0 R 727 0 R 729 0 R 730 0 R 729 0 R 729 0 R 729 0 R 729 0 R 729 0 R 729 0 R 729 0 R 729 0 R 729 0 R 731 0 R 732 0 R 732 0 R +732 0 R 732 0 R 732 0 R 732 0 R 732 0 R 732 0 R 732 0 R 732 0 R 732 0 R 732 0 R 732 0 R] +endobj +126 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 733 0 R 734 0 R 735 0 R 736 0 R 736 0 R +736 0 R 737 0 R 738 0 R 739 0 R 739 0 R 740 0 R 741 0 R 742 0 R 742 0 R 742 0 R 743 0 R 742 0 R 744 0 R 745 0 R 746 0 R 746 0 R +747 0 R 747 0 R 747 0 R 747 0 R 747 0 R 748 0 R 747 0 R 749 0 R 747 0 R 747 0 R 747 0 R 747 0 R 750 0 R 747 0 R 751 0 R 752 0 R +753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R] +endobj +127 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 767 0 R 768 0 R +769 0 R 769 0 R 770 0 R 771 0 R 772 0 R 772 0 R 773 0 R 774 0 R 775 0 R 776 0 R 777 0 R 778 0 R 779 0 R 780 0 R 781 0 R 781 0 R +782 0 R 783 0 R 784 0 R 783 0 R 785 0 R 786 0 R 787 0 R 787 0 R 787 0 R 788 0 R 789 0 R 790 0 R 790 0 R 790 0 R 791 0 R 792 0 R +793 0 R 793 0 R 794 0 R 795 0 R 796 0 R 796 0 R 796 0 R 796 0 R 797 0 R 798 0 R 798 0 R 799 0 R 798 0 R 798 0 R 800 0 R 801 0 R +802 0 R 802 0 R 802 0 R 803 0 R 803 0 R 804 0 R 804 0 R 804 0 R 805 0 R 806 0 R 807 0 R 807 0 R 808 0 R 809 0 R 810 0 R 810 0 R +811 0 R 811 0 R 812 0 R 812 0 R 813 0 R 814 0 R 815 0 R 815 0 R 816 0 R 815 0 R 815 0 R 817 0 R 818 0 R 819 0 R 818 0 R 820 0 R +821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 825 0 R 826 0 R 827 0 R 826 0 R 828 0 R 828 0 R 829 0 R 830 0 R 831 0 R 832 0 R 833 0 R +834 0 R] +endobj +128 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 835 0 R +/FontName /NXFNUO+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +129 0 obj +<< +/Filter /FlateDecode +/Length 445 +>> +stream +H‰\“Ëjã@E÷úŠ^&‹ [*U9 ÆNÀ‹y0N>@–ÚŽ`Ümyá¿Ÿ¾º!Ø:BÕW§èê|»ßíC?¹üwÚƒŸÜ©]ô×á[ïŽþ܇lY¸®o§Ï§ù¿½4c–§Å‡ûuò—}8 Y]»üOzyâÝ=lºáè³üWì|ìÃÙ=¼o.?ÜÆñ¯¿ø0¹…[¯]çO)èG3þl.Þåó²§}—Þ÷Óý)­ù_ñv½+æç%eÚ¡ó×±i}lÂÙgõ"]kW¿¦kùÐ}{/+.;žÚ&fuâÅ"ÝoÉ[ðŽ¼¿_—¬/Q_.ÉKpA.À%¹ YÀ¹+YÁF6ðŠ¼?“Ÿ óùÂ|A¾0_/Ìä óùÂ|A¾0SæLö+è·b_úªø­ +ߪ˜_!_Ù¯¢_e¢Fé£ðQÖë\O…ÒGá£ôQø(ûUô«tS¸)ÝnʽPì…r/{¡¯ä´ÑµÑßàoô4x= žFOƒ§ÑÓàiô4x= žF7ƒ›ÑÍàfòf°ÏI¨¥á¾æ¸½Å˜Fx>6óìbjûà¿NÖ8Œ.­Â/û'ÀIjÝS +endstream +endobj +130 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 836 0 R +/FontName /WVTKQW+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +131 0 obj +<< +/Filter /FlateDecode +/Length 452 +>> +stream +H‰\“ÁŽ›0†ï<…»‡ Ø3Y EŠ’])‡m«¦}NŠ´äCÞ¾óóG[©H„Ø3þóí~·ï»Éå?ÒÐâäN]ߦxn©‰îÏ]Ÿ- ×vÍôx››K=f¹î×)^öýiȪÊå?mð:¥»{Ú´Ã1>gù÷ÔÆÔõg÷ô{{xvùá6ŽŸñûÉ-ÜzíÚx²Dõø­¾D—Ïa/ûÖÆ»éþb1ÿfüºÑóû’2ÍÐÆëX71Õý9fÕ®µ«ÞíZg±oÿ÷+†OÍŸ:eUÉ‹…=Œ·ä-øíñ¿Ýoö^r^‰yå’¼ä\’K°'{p °¬d¯È+ð†¼1ö\Ëc-ϵ<ÖòÌï‘ß3§GNÏœ9ý+ù¼#ïŒk ¨%0g@Î@ÿÿÀüùýü…>a¬ V+ˆÆ +b…±2ÇÒSà)ôx +kÔ.t8 ¿ƒà;÷F°7ÂZµ÷I°GòN¶¯”5*jTz*<•ž +O¥§ÂSé©ðTz*<•n +7¥›ÂMéf4Ù£›Ðnv*ÜW/7·”¬ç£3÷/:·ëã×é‡ÑYîì¯vºÞ' +endstream +endobj +132 0 obj +[837 0 R] +endobj +133 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +134 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/P/R/S/a/b/c/comma/d/e/f/g/h/i/l/m/n/o/p/r/s/space/t/two/v/y/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 838 0 R +/FontName /FNKWME+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +135 0 obj +<< +/Filter /FlateDecode +/Length 368 +>> +stream +H‰\’ÏŠƒ0ÆïyŠÛCÑZ“´ B±-xØ?¬»`ãØÖ(Ñ|ûÉ”.l@ç2ßÌG&QQžJ×Í2z÷ƒ­`–mçÓp÷änÛD6»ð·}=ŠÅÕ2ÍЗ®D–Éè§Ù/rul†+¬Eôæð»ÉÕWQ­eTÝÇñzp³ŒežËZ,ôR¯u2 +²MÙày7/Ôüe|.#È$ì·lÆ LcmÁ×î"‹qå2»àʸæßù.fÙµµßµYBÉqŒ¹`.wI` "Kw1 §Ì)ñù@ÌÚ”´Šk*ª©¸Ž¢:Šë(ª£·1 sŽ¦Í9:äp/M½´bVÄšYfC¼gÞ³7MÞ4{ÓäMŸ˜OÄgæ3ñ…/-3ìßÃÞ y3ìÍ7ÃÞ y3ìÇÃ} õ5GæcÄãÆi$øräsÞöî=Ž:<¯0cšnçàùÇa”¨¢Oü +0°“³x +endstream +endobj +136 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space/three) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 839 0 R +/FontName /GMUCAC+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +137 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PÁjÃ0 ½ë+tlÅi²ËÀFG!‡ncÙ>À±•Ô°ØÆqùûÉné`YOïñ,qê^;gŠèuO GëL¤Å¯Q4YÇÕé>•WÏ*€`r¿-‰æΤDñÉà’↻ãÚƒx†¢uî¾OýE¿†ðC3¹„¶-Yè¢Â›š E¡:øMÛ9_[ ¬Ë|¼™ÑÞД¦¨ÜD +Ž噣ræÞÜXè¯*‚¬ónUqÙ4¥çòé¹ô\²Æ};«ñ§ñaU¯1²Ër™b/³ŽÇ > ³r¯_sÔ +endstream +endobj +138 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/D/P/R/T/c/e/f/h/i/l/o/s/space/t) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 840 0 R +/FontName /UCTDOA+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +139 0 obj +<< +/Filter /FlateDecode +/Length 295 +>> +stream +H‰\‘Énà †ï<Å›C„ãÆY$d©rɇ.ªÛp`œ"ÕarðÛw¢T*̳0üȦ}n ßä;Œ0XgÎÓ5h„3^¬›ŒÕñ¶K«{/$%wËqlÝ0 ¥@~sŽa‡'3q%ä[0¬»ÀÃWÓ­@vWïpD¡€ºƒzéýk?"È”¶n ùm\Ö”óñ¹x„2í7¹=œ}¯1ôî‚B4jP'µ@gþù7Ûœvôw„*9¸(ȵÝ&&#T•Ï+>¯ÊÌ%sŽ©8f÷˜˜ q•¹bÞeÞ12˜™ÌMæ†ù”™Vû\sÏ5÷ù.2ü[Çü$Rîzék$Uúž¤«cÞÐO(‹§ø`(Ò +endstream +endobj +140 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/D/N/P/R/T/b/c/e/f/h/i/l/m/nine/o/one/r/s/space/t/two/v/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 841 0 R +/FontName /RVFLYG+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +141 0 obj +<< +/Filter /FlateDecode +/Length 335 +>> +stream +H‰\’Ínƒ0 Çïy +×CÅW­„&ÚJö¡±=%¦C! +ôÀÛÏÆU'-ø—Øÿز”Õ±²ý Á»Ûgèzk’bÚÑàäš}c¯¨òVù™V¡Ðšþ8Ù¥k¿¯ò˜ƒÃŒÊádåH8bŽ…cæƒðx·[™ ñIøD¬åÍ÷hÑjÖj‰×ŸÊyÊçi"œ0kaÍœ +§Ì{á=³Ôr i)\2…ÌgajBžI®Œse’+ã\™Ô“q=™ä"ÃM»w‡ÛGS†ÇlÚ›÷4–õ)¬óàIô¯ÅHÅŸú`>¢Ò +endstream +endobj +142 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/two) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 842 0 R +/FontName /VOGJCY+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +143 0 obj +<< +/Filter /FlateDecode +/Length 244 +>> +stream +H‰\PMkÄ ½û+æ¸{Xtm"”m 9ôƒ¦ýF'©Ð¨sÈ¿ïh–-t@ß oÞã1üÒ=vÁàï9Ú Œ>¸ŒK\³Epò%8oËuj¿MbœÄý¶œ»0F¦ð"—’78<¸8à‘ñ·ì0û0ÁáëÒ÷kJ?8c( @kp8’Ñ‹I¯fFàMvêñ¾l'Òüm|n A¶ù¼‡±Ñá’ŒÅl„L * ê™J3 î¿«†Ñ~›Ì”|¢]!˜º­' ^î½ÔÕQî Au¼j«7nÁíš3enwjakLðvʪ>ö+À%Év‹ +endstream +endobj +144 0 obj +<< +/BaseFont /FZTLME+Wingdings-Regular +/DescendantFonts 843 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 844 0 R +/Type /Font +>> +endobj +145 0 obj +<< +/BaseFont /FNKWME+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 134 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 845 0 R +/Type /Font +/Widths [305] +>> +endobj +146 0 obj +<< +/BaseFont /HVNNOA+Wingdings-Regular +/DescendantFonts 846 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 847 0 R +/Type /Font +>> +endobj +147 0 obj +<< +/BaseFont /FNKWME+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 134 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 848 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +148 0 obj +<< +/BaseFont /GMUCAC+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 136 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 849 0 R +/Type /Font +/Widths [202] +>> +endobj +149 0 obj +<< +/BaseFont /UCTDOA+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 138 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 850 0 R +/Type /Font +/Widths [212] +>> +endobj +150 0 obj +<< +/BaseFont /RVFLYG+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 140 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 851 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +151 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 852 0 R +/FontName /MPMXPP+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +152 0 obj +<< +/Filter /FlateDecode +/Length 548 +>> +stream +H‰\ÔÍŠ£@à½OQËîEcbݺ· ¤“nÈb~˜Ì<€ÑJF˜¨{‘·Ÿ:ž¦&䈖÷ó@™ïûCßÍ.ÿ> Í1ÎîÜõíoÃûÔDwŠ—®ÏÖ…k»fþ8Z~›k=fyZ|¼ßæx=ôç!«*—ÿH'oótwÛv8ÅÇ,ÿ6µqêú‹{øµ;>ºüø>Žâ5ö³[¹ÍƵñœnô¥¿Ö×èòeÙÓ¡Mç»ùþ”Öü»âç}Œ®XŽ×Ä4CocÝÄ©î/1«Vé³qÕ[úl²Ø·ÿ7Ïe§s󻞲ªÀÅ«UúKù™ù¹d.‘wÌ;ä=óù•ùù9 ­<ïéqO¿f^#̲göÈÂ,È9 +³"³!Óéáô[æ-ò ó 2=¡A`¡A`¡A`¡A`aW‚®„GØ› 7ao‚Þ„½ z:ÎÀÞz t8Î@g€3Ðà t8ÎÀN: 4”(:QÎRÌRÎRÌRÎRÌRÎRÌRÎRÌRÎRÌRv¢èDÙ‰¢e'ŠN”…GÙ¢¥MûQô£ìGѱC?F¿ÁoôüF¿ÁoôüF¿ÁoôüF¿ÁoôüF¿Áoôü%æ«5®) f\Szf> +endobj +154 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +155 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/two) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 854 0 R +/FontName /XIWLNT+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +156 0 obj +<< +/Filter /FlateDecode +/Length 244 +>> +stream +H‰\PMkÄ ½û+æ¸{Xtm"”m 9ôƒ¦ýF'©Ð¨sÈ¿ïh–-t@ß oÞã1üÒ=vÁàï9Ú Œ>¸ŒK\³Epò%8oËuj¿MbœÄý¶œ»0F¦ð"—’78<¸8à‘ñ·ì0û0ÁáëÒ÷kJ?8c( @kp8’Ñ‹I¯fFàMvêñ¾l'Òüm|n A¶ù¼‡±Ñá’ŒÅl„L * ê™J3 î¿«†Ñ~›Ì”|¢]!˜º­' ^î½ÔÕQî Au¼j«7nÁíš3enwjakLðvʪ>ö+À%Év‹ +endstream +endobj +157 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [30 /f_i /f_l] +/Type /Encoding +>> +endobj +158 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/A/C/D/E/F/L/P/R/T/V/a/b/c/comma/d/e/eight/f/f_i/f_l/five/four/g/h/i/k/l/m/n/o/one/p/period/r/s/seven/space/t/three/two/u/v/w/x/y/z) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 855 0 R +/FontName /AHJJNN+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +159 0 obj +<< +/Filter /FlateDecode +/Length 448 +>> +stream +H‰\“Ýn£0Fïy +_¶„˜™®„Òd+åb´é>'Ejr‘·ßùü¡VZ$âãØ3Ûãt»ßíûnvéïihav§®o§pnSÜ1œ»>Yå®íšyéÅßæRIjÁ‡ûu—}’²té¼ÎÓÝ=lÚá“ô×Ô†©ëÏîáïöðèÒÃm?Â%ô³Ë\U¹6œ,ÑzüY_‚KcØÓ¾µñn¾?YÌ׌·û\û+Ê4C®cÝ„©îÏ!)3{*W¾ÚS%¡oÿ÷°ã©y¯§¤\}·ÉY&bï·Êú¯_ý­õó,ö­1Þ’ãÿŒ³&)׫ÈÖçä¼&¯ÁžìÁ¹+YÁÏägcÏœ9=óxäñÌã‘Ç3G/dÓÓó ÿ‚nÜ +æ)§`lXáwßÎÌ:„±‚X¡ƒÀAdÙ;0×%X—p]‚uÙ&GÆ^Ë ùLç¸ç²#ïÀËù`Ÿe9;ØR¹.ź”ž +O¥§ÂSé©ðTz*<•ž +O¥§ÂSé©ðTz*|Þ¤qEáMþ 0Ô-Ú† +endstream +endobj +160 0 obj +<< +/BaseFont /SAMSFD+Wingdings-Regular +/DescendantFonts 856 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 857 0 R +/Type /Font +>> +endobj +161 0 obj +<< +/BaseFont /PTYAPJ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 153 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 858 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +162 0 obj +<< +/BaseFont /CKNVPJ+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 173 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 859 0 R +/Type /Font +/Widths [202] +>> +endobj +163 0 obj +<< +/BaseFont /AHJJNN+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 158 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 860 0 R +/Type /Font +/Widths [212] +>> +endobj +164 0 obj +<< +/BaseFont /ZDZDZP+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 861 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 862 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 683 0 0 0 0 0 0 0 0 0 0 0 +559 0 569 0 525 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 449 0 516 319 0 572 256 0 0 257 0 0 564 +0 0 0 417 351] +>> +endobj +165 0 obj +<< +/BaseFont /SWBYFD+Wingdings-Regular +/DescendantFonts 863 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 864 0 R +/Type /Font +>> +endobj +166 0 obj +<< +/BaseFont /PTYAPJ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 153 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 865 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +167 0 obj +<< +/BaseFont /AHJJNN+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 158 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 866 0 R +/Type /Font +/Widths [212] +>> +endobj +168 0 obj +<< +/BaseFont /ZDZDZP+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 861 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 867 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +169 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [29 /f_i /f_f /f_l] +/Type /Encoding +>> +endobj +170 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_i/f_f/f_l/space/parenleft/parenright/comma/hyphen/period/slash/question/A/C/D/F/G/H/I/J/L/M/O/P/R/S/T/U/W/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z/quoteright/endash) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 868 0 R +/FontName /BJVERL+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +171 0 obj +<< +/Filter /FlateDecode +/Length 480 +>> +stream +H‰\“ËŽ›@E÷|E/g#nªÆ²äñd$/òPœ|†¶ƒÂxá¿Oݾh, ÷)C_NÑtºÛ¿ïûnvéihav§®o§pnSÜ1œ»>É ×vͼTñ·¹Ôc’ÚäÃý:‡Ë¾? IU¹ô§]¼ÎÓÝ=mÛáž“ôûÔ†©ëÏîé÷îðìÒÃmÿ†Kèg—¹ÍƵádA_ëñ[} .Ó^ö­]ïæû‹ÍyÜñë>WÄ:§L3´á:ÖM˜êþ’*³cãª;6IèÛÿ®—žÓŽ§æO=%Uþn7g™ˆëÕ_µ þxÔ;«‹,Ö6¿’_Ák22Š9ÞÏ|Œ™mƒ1smHªyöydŒWäØ“=XÈðóJV0}<|<}<|ü–¼ÓÍÃÍÓÍÃÍÓÁád%z, r¦O Ÿ’>%|Ê’\‚éSÂGØ‹ aŽ G˜#Èær„9‚‘彃™)1“= +zö×MÞÈo`ö×K–õE²¬-Þ¿,ëŠ~•ý*úUz*<•ž +O¥§ÂSé©ðTz*<•ž +O¥§ÂSé©ðT®…b-ÖxV‘åø-äUüh—¯Ÿ¯í2÷¹7šÛ4Ù¶ˆ[1îì„®Ÿ»uFg³p&ÿ +îÊ +endstream +endobj +172 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [30 /hyphen.cap /f_i] +/Type /Encoding +>> +endobj +173 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/X/Y/a/b/c/colon/comma/d/e/eight/f/f_i/five/four/g/h/hyphen/hyphen.cap/i/l/m/n/o/one/p/period/q/r/s/seven/six/slash/space/t/three/two/u/v/x/y/z) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 869 0 R +/FontName /CKNVPJ+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +174 0 obj +<< +/Filter /FlateDecode +/Length 506 +>> +stream +H‰\“Án£@Dï|Å“CÆ=݉„,;‘|Èîj½ù c/ÒÆÿ}¦(”H‹„§FCw½nO§Ûýnßµ“K}}“;µ]3†këàŽáÜvÉ*wM[OËnþ­/Õ¤1øp¿Ná²ïN}R.ý¯Óxw›¦?†Ç$ý96al»³{øØ]z¸ ÿp Ýä2W–® §˜è½~T—àÒ9ìißÄóvº?Řï/þ܇àòy¿"LÝ7á:Tu«î’"‹O銷ø”IèšÿÎ5cØñTÿ­Æ¤X½Æ³,ß•Q¿ÍZ5¾/qŸg<Ë ·Ô[èÝwL¾Ä¿B3>.I±^Í:.QçÔ9ôšz -Ôí©=´R+´Qô3õ3ô†zµÐKà%ôx ½^B/—ÐKà%ôx ½^B/—¼P£'Â>ú 샠Â>ú 샠ž=ôè¡'››'››'››'››'››''²vEíÊüŠüÊüŠüÊüŠüÊüŠüªËÿ ÍÚµ+½^J¯ù>(kWÔ®¬]Q»²vEíºÜ!Ôn¬ÝP»‘ÓÀiä4p9 œFN§‘ÓÀiä4pÙ lF6›ñ>Ä—~¹Ý¸þqJÝ×lÕ·qŒc5òôƒ‹Qx“OëPúµ +endstream +endobj +175 0 obj +[870 0 R] +endobj +176 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\PÁjÃ0 ½û+tlÅm¶ÃÁPZ +9¬ËöŽ­¤†Æ6ŠsÈßOvKØâñÞO’‡æØx—@~R0-&è·„S˜É t88/vXgҕߌ: +Éæv™Žïƒ¨k_LN‰Xímèp-ä…,’ó¬~íd;ÇxÃ}‚-({ô¡ãY²Ø6eÞ¥eÞ?Å÷ª‚w÷0&Xœ¢6HÚ(ê-—‚úÄ¥zû¯î®®7WMEýÂjnï*£·×‚¸eïC•§ð²ðŒhf"NW.Rbå@Îãóh1D`W~âW€(¬rO +endstream +endobj +177 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 871 0 R +/FontName /MAENPP+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +178 0 obj +<< +/Filter /FlateDecode +/Length 385 +>> +stream +H‰\’ËjÃ0E÷þ +-ÛEpâØ3 ˜@›¤E4í8ö$54²QœEþ¾º¾¥… +l¡yФ«ízëÛÁ¥¯¡«w6¸Cë›`çîjs{;¶>™e®iëáç4þëSÕ'iLÞ]σ¶þÐ%eéÒ·xyÂÕÝÜ7ÝÞn“ô%4Zt7«Ý­Kw—¾ÿ²“ùÁMÝré;ÄBOUÿ\Ì¥cÚdÛÄûv¸NbÎ_Äûµ7—çeê®±s_Õ*´¤œÆµtåc\ËÄ|óï~^0m¨?«”‚§Ó¸E^‘WàGr,R泑ãyNžƒ r^`ÖÉQ'_“×`ÖÌQ³`ß}‹ŒœY¿@}a_A_aŒ F#cLNÎÁôøˆ’|G¾ÓSà)ä0ÎBg³lÈ0ýþJ…¿ÒMá¦tS¸)ÝnJ7…› +YÀôTx*=žJϸá^ ϧÎýÎJ} !ŽÉ8šã|`2Zo¿ÓÛw½‹Yø’oä&¿ƒ +endstream +endobj +179 0 obj +<< +/CS /DeviceCMYK +/I false +/K false +/S /Transparency +/Type /Group +>> +endobj +180 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +181 0 obj +<< +/BaseFont /ELSCMV+Wingdings-Regular +/DescendantFonts 872 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 873 0 R +/Type /Font +>> +endobj +182 0 obj +<< +/BaseFont /EFZRMV+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 874 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 875 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +183 0 obj +<< +/BaseFont /UQZJCP+MyriadPro-Light +/Encoding 876 0 R +/FirstChar 31 +/FontDescriptor 877 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 878 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +184 0 obj +<< +/BaseFont /ZXSXUF+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 879 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 880 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +185 0 obj +<< +/BaseFont /GAAIOR+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 881 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 882 0 R +/Type /Font +/Widths [212] +>> +endobj +186 0 obj +<< +/BaseFont /SXECAT+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 883 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 884 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +187 0 obj +<< +/BaseFont /KCSMSJ+Wingdings-Regular +/DescendantFonts 885 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 886 0 R +/Type /Font +>> +endobj +188 0 obj +<< +/K 887 0 R +/P 105 0 R +/S /Story +>> +endobj +189 0 obj +<< +/K [263 0 R 264 0 R 265 0 R 270 0 R 272 0 R 275 0 R 277 0 R 282 0 R 284 0 R 285 0 R 288 0 R 289 0 R 291 0 R 888 0 R 304 0 R 305 0 R +307 0 R 312 0 R 316 0 R 318 0 R 319 0 R 322 0 R 323 0 R 324 0 R 325 0 R 327 0 R 328 0 R 329 0 R 330 0 R 332 0 R 333 0 R 334 0 R +335 0 R 337 0 R 338 0 R 340 0 R 341 0 R 401 0 R 889 0 R 435 0 R 890 0 R 471 0 R 472 0 R 891 0 R 494 0 R 495 0 R 497 0 R 500 0 R +503 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 513 0 R 514 0 R 516 0 R 519 0 R 524 0 R 525 0 R 526 0 R 529 0 R 530 0 R 536 0 R +537 0 R 538 0 R 540 0 R 543 0 R 545 0 R 546 0 R 547 0 R 551 0 R 553 0 R 554 0 R 556 0 R 561 0 R 562 0 R 563 0 R 564 0 R 567 0 R +568 0 R 569 0 R 570 0 R 572 0 R 573 0 R 574 0 R 576 0 R 577 0 R 580 0 R 582 0 R 626 0 R 627 0 R 628 0 R 630 0 R 631 0 R 637 0 R +638 0 R 639 0 R 641 0 R 642 0 R 892 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 662 0 R 663 0 R 893 0 R 678 0 R 681 0 R +682 0 R 683 0 R 684 0 R 686 0 R 687 0 R 688 0 R 691 0 R 692 0 R 693 0 R 695 0 R 696 0 R 697 0 R 698 0 R 894 0 R 705 0 R 707 0 R +708 0 R 710 0 R 712 0 R 713 0 R 895 0 R 726 0 R 727 0 R 729 0 R 731 0 R 732 0 R 733 0 R 896 0 R 747 0 R 751 0 R 897 0 R 752 0 R +753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R] +/P 105 0 R +/S /Story +>> +endobj +190 0 obj +<< +/K 321 0 R +/P 105 0 R +/S /Story +>> +endobj +191 0 obj +<< +/K 898 0 R +/P 105 0 R +/S /Story +>> +endobj +192 0 obj +<< +/K 506 0 R +/P 105 0 R +/S /Story +>> +endobj +193 0 obj +<< +/K 521 0 R +/P 105 0 R +/S /Story +>> +endobj +194 0 obj +<< +/K 559 0 R +/P 105 0 R +/S /Story +>> +endobj +195 0 obj +<< +/K 899 0 R +/P 105 0 R +/S /Story +>> +endobj +196 0 obj +<< +/K [584 0 R 900 0 R 594 0 R 602 0 R 591 0 R 592 0 R 593 0 R 595 0 R 901 0 R 902 0 R 903 0 R 904 0 R 625 0 R 905 0 R 590 0 R 906 0 R +596 0 R 907 0 R 597 0 R 908 0 R 598 0 R 909 0 R 599 0 R 603 0 R 910 0 R 600 0 R 911 0 R 601 0 R] +/P 105 0 R +/S /Figure +>> +endobj +197 0 obj +<< +/K 912 0 R +/P 105 0 R +/S /Story +>> +endobj +198 0 obj +<< +/C /Pa11 +/K 280 +/P 913 0 R +/Pg 13 0 R +/S /Tab._Versal_bold_sch +>> +endobj +199 0 obj +<< +/C /A4 +/K 281 +/P 914 0 R +/Pg 13 0 R +/S /Span +>> +endobj +200 0 obj +<< +/C /A4 +/K 282 +/P 914 0 R +/Pg 13 0 R +/S /Span +>> +endobj +201 0 obj +<< +/K [283 284] +/P 915 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +202 0 obj +<< +/C /A4 +/K 285 +/P 916 0 R +/Pg 13 0 R +/S /Span +>> +endobj +203 0 obj +<< +/C /A4 +/K 286 +/P 916 0 R +/Pg 13 0 R +/S /Span +>> +endobj +204 0 obj +<< +/K 287 +/P 917 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +205 0 obj +<< +/C /A4 +/K 288 +/P 918 0 R +/Pg 13 0 R +/S /Span +>> +endobj +206 0 obj +<< +/C /A4 +/K 289 +/P 918 0 R +/Pg 13 0 R +/S /Span +>> +endobj +207 0 obj +<< +/K [290 291 292 208 0 R 294] +/P 919 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +208 0 obj +<< +/ActualText +/K 293 +/P 207 0 R +/Pg 13 0 R +/S /Span +>> +endobj +209 0 obj +<< +/C /A4 +/K 295 +/P 920 0 R +/Pg 13 0 R +/S /Span +>> +endobj +210 0 obj +<< +/C /A4 +/K 296 +/P 920 0 R +/Pg 13 0 R +/S /Span +>> +endobj +211 0 obj +<< +/K 297 +/P 921 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +212 0 obj +<< +/C /Pa11 +/K 298 +/P 922 0 R +/Pg 13 0 R +/S /Tab._Versal_bold_sch +>> +endobj +213 0 obj +<< +/C /A4 +/K 299 +/P 923 0 R +/Pg 13 0 R +/S /Span +>> +endobj +214 0 obj +<< +/C /A4 +/K 300 +/P 923 0 R +/Pg 13 0 R +/S /Span +>> +endobj +215 0 obj +<< +/K [301 302] +/P 924 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +216 0 obj +<< +/C /A4 +/K 303 +/P 925 0 R +/Pg 13 0 R +/S /Span +>> +endobj +217 0 obj +<< +/C /A4 +/K 304 +/P 925 0 R +/Pg 13 0 R +/S /Span +>> +endobj +218 0 obj +<< +/K [305 306 307] +/P 926 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +219 0 obj +<< +/C /Pa11 +/K 308 +/P 927 0 R +/Pg 13 0 R +/S /Tab._Versal_bold_sch +>> +endobj +220 0 obj +<< +/C /A4 +/K 309 +/P 928 0 R +/Pg 13 0 R +/S /Span +>> +endobj +221 0 obj +<< +/C /A4 +/K 310 +/P 928 0 R +/Pg 13 0 R +/S /Span +>> +endobj +222 0 obj +<< +/K [311 312] +/P 929 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +223 0 obj +<< +/C /A4 +/K 313 +/P 930 0 R +/Pg 13 0 R +/S /Span +>> +endobj +224 0 obj +<< +/C /A4 +/K 314 +/P 930 0 R +/Pg 13 0 R +/S /Span +>> +endobj +225 0 obj +<< +/K [315 316] +/P 931 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +226 0 obj +<< +/C /A4 +/K 317 +/P 932 0 R +/Pg 13 0 R +/S /Span +>> +endobj +227 0 obj +<< +/C /A4 +/K 318 +/P 932 0 R +/Pg 13 0 R +/S /Span +>> +endobj +228 0 obj +<< +/K 319 +/P 933 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +229 0 obj +<< +/C /A4 +/K 320 +/P 934 0 R +/Pg 13 0 R +/S /Span +>> +endobj +230 0 obj +<< +/C /A4 +/K 321 +/P 934 0 R +/Pg 13 0 R +/S /Span +>> +endobj +231 0 obj +<< +/K [322 232 0 R 324] +/P 935 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +232 0 obj +<< +/ActualText +/K 323 +/P 231 0 R +/Pg 13 0 R +/S /Span +>> +endobj +233 0 obj +<< +/C /A4 +/K 325 +/P 936 0 R +/Pg 13 0 R +/S /Span +>> +endobj +234 0 obj +<< +/C /A4 +/K 326 +/P 936 0 R +/Pg 13 0 R +/S /Span +>> +endobj +235 0 obj +<< +/K [327 328] +/P 937 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +236 0 obj +<< +/C /A4 +/K 329 +/P 938 0 R +/Pg 13 0 R +/S /Span +>> +endobj +237 0 obj +<< +/C /A4 +/K 330 +/P 938 0 R +/Pg 13 0 R +/S /Span +>> +endobj +238 0 obj +<< +/K [331 332] +/P 939 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +239 0 obj +<< +/C /A4 +/K 333 +/P 940 0 R +/Pg 13 0 R +/S /Span +>> +endobj +240 0 obj +<< +/C /A4 +/K 334 +/P 940 0 R +/Pg 13 0 R +/S /Span +>> +endobj +241 0 obj +<< +/K [335 336 337] +/P 941 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +242 0 obj +<< +/C /A4 +/K 338 +/P 942 0 R +/Pg 13 0 R +/S /Span +>> +endobj +243 0 obj +<< +/C /A4 +/K 339 +/P 942 0 R +/Pg 13 0 R +/S /Span +>> +endobj +244 0 obj +<< +/K 340 +/P 943 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +245 0 obj +<< +/C /A4 +/K 341 +/P 944 0 R +/Pg 13 0 R +/S /Span +>> +endobj +246 0 obj +<< +/C /A4 +/K 342 +/P 944 0 R +/Pg 13 0 R +/S /Span +>> +endobj +247 0 obj +<< +/K 343 +/P 945 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +248 0 obj +<< +/C /Pa11 +/K 344 +/P 946 0 R +/Pg 13 0 R +/S /Tab._Versal_bold_sch +>> +endobj +249 0 obj +<< +/C /A4 +/K 345 +/P 947 0 R +/Pg 13 0 R +/S /Span +>> +endobj +250 0 obj +<< +/C /A4 +/K 346 +/P 947 0 R +/Pg 13 0 R +/S /Span +>> +endobj +251 0 obj +<< +/K [347 348 349 252 0 R 351] +/P 948 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +252 0 obj +<< +/ActualText +/K 350 +/P 251 0 R +/Pg 13 0 R +/S /Span +>> +endobj +253 0 obj +<< +/C /A4 +/K 352 +/P 949 0 R +/Pg 13 0 R +/S /Span +>> +endobj +254 0 obj +<< +/C /A4 +/K 353 +/P 949 0 R +/Pg 13 0 R +/S /Span +>> +endobj +255 0 obj +<< +/K [354 355 256 0 R 357] +/P 950 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +256 0 obj +<< +/ActualText +/K 356 +/P 255 0 R +/Pg 13 0 R +/S /Span +>> +endobj +257 0 obj +<< +/C /A4 +/K 358 +/P 951 0 R +/Pg 13 0 R +/S /Span +>> +endobj +258 0 obj +<< +/C /A4 +/K 359 +/P 951 0 R +/Pg 13 0 R +/S /Span +>> +endobj +259 0 obj +<< +/K [360 260 0 R 362 261 0 R 364] +/P 952 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +260 0 obj +<< +/ActualText +/K 361 +/P 259 0 R +/Pg 13 0 R +/S /Span +>> +endobj +261 0 obj +<< +/ActualText +/K 363 +/P 259 0 R +/Pg 13 0 R +/S /Span +>> +endobj +262 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 263 0 R +/Pg 8 0 R +/S /Span +>> +endobj +263 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [262 0 R 1] +/P 189 0 R +/Pg 8 0 R +/S /Kapitel-Head +>> +endobj +264 0 obj +<< +/C /Pa1 +/K 2 +/P 189 0 R +/Pg 8 0 R +/S /Zwischenhead_1 +>> +endobj +265 0 obj +<< +/C /Pa2 +/K [3 266 0 R 5 6 267 0 R 8 268 0 R 10 269 0 R 12] +/P 189 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +266 0 obj +<< +/ActualText +/K 4 +/P 265 0 R +/Pg 8 0 R +/S /Span +>> +endobj +267 0 obj +<< +/ActualText +/K 7 +/P 265 0 R +/Pg 8 0 R +/S /Span +>> +endobj +268 0 obj +<< +/ActualText +/K 9 +/P 265 0 R +/Pg 8 0 R +/S /Span +>> +endobj +269 0 obj +<< +/ActualText +/K 11 +/P 265 0 R +/Pg 8 0 R +/S /Span +>> +endobj +270 0 obj +<< +/C /Pa2 +/K [13 14 15 16 271 0 R 18] +/P 189 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +271 0 obj +<< +/ActualText +/K 17 +/P 270 0 R +/Pg 8 0 R +/S /Span +>> +endobj +272 0 obj +<< +/C /Pa2 +/K [19 20 273 0 R 22 23 24 274 0 R 26 27] +/P 189 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +273 0 obj +<< +/ActualText +/K 21 +/P 272 0 R +/Pg 8 0 R +/S /Span +>> +endobj +274 0 obj +<< +/ActualText +/K 25 +/P 272 0 R +/Pg 8 0 R +/S /Span +>> +endobj +275 0 obj +<< +/C /Pa2 +/K [28 276 0 R 30 31 32 33 34 35 36 37 38 39] +/P 189 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +276 0 obj +<< +/ActualText +/K 29 +/P 275 0 R +/Pg 8 0 R +/S /Span +>> +endobj +277 0 obj +<< +/C /Pa2 +/K [40 278 0 R 42 43 44 45 279 0 R 47 280 0 R 49 50 281 0 R 52] +/P 189 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +278 0 obj +<< +/ActualText +/K 41 +/P 277 0 R +/Pg 8 0 R +/S /Span +>> +endobj +279 0 obj +<< +/ActualText +/K 46 +/P 277 0 R +/Pg 8 0 R +/S /Span +>> +endobj +280 0 obj +<< +/ActualText +/K 48 +/P 277 0 R +/Pg 8 0 R +/S /Span +>> +endobj +281 0 obj +<< +/ActualText +/K 51 +/P 277 0 R +/Pg 8 0 R +/S /Span +>> +endobj +282 0 obj +<< +/C /Pa2 +/K [53 54 55 56 283 0 R 58 59] +/P 189 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +283 0 obj +<< +/ActualText +/K 57 +/P 282 0 R +/Pg 9 0 R +/S /Span +>> +endobj +284 0 obj +<< +/C /Pa1 +/K 60 +/P 189 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +285 0 obj +<< +/C /Pa3 +/K [61 62 63 286 0 R 65 66 67 68 287 0 R 953 0 R 70] +/P 189 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +286 0 obj +<< +/ActualText +/K 64 +/P 285 0 R +/Pg 9 0 R +/S /Span +>> +endobj +287 0 obj +<< +/K 69 +/P 285 0 R +/Pg 9 0 R +/S /Reference +>> +endobj +288 0 obj +<< +/C /Pa1 +/K 71 +/P 189 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +289 0 obj +<< +/C /Pa3 +/K [72 73 290 0 R 75] +/P 189 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +290 0 obj +<< +/ActualText +/K 74 +/P 289 0 R +/Pg 9 0 R +/S /Span +>> +endobj +291 0 obj +<< +/C /Pa2 +/K [76 77 78 292 0 R 80] +/P 189 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +292 0 obj +<< +/ActualText +/K 79 +/P 291 0 R +/Pg 9 0 R +/S /Span +>> +endobj +293 0 obj +<< +/C /A4 +/K 81 +/P 954 0 R +/Pg 9 0 R +/S /Span +>> +endobj +294 0 obj +<< +/K [82 83] +/P 955 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +295 0 obj +<< +/C /A4 +/K 84 +/P 956 0 R +/Pg 9 0 R +/S /Span +>> +endobj +296 0 obj +<< +/K [85 297 0 R 87] +/P 957 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +297 0 obj +<< +/ActualText +/K 86 +/P 296 0 R +/Pg 9 0 R +/S /Span +>> +endobj +298 0 obj +<< +/C /A4 +/K 88 +/P 958 0 R +/Pg 9 0 R +/S /Span +>> +endobj +299 0 obj +<< +/K 89 +/P 959 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +300 0 obj +<< +/C /A4 +/K 90 +/P 960 0 R +/Pg 9 0 R +/S /Span +>> +endobj +301 0 obj +<< +/K 91 +/P 961 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +302 0 obj +<< +/C /A4 +/K 92 +/P 962 0 R +/Pg 9 0 R +/S /Span +>> +endobj +303 0 obj +<< +/K 93 +/P 963 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +304 0 obj +<< +/C /Pa1 +/K 94 +/P 189 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +305 0 obj +<< +/C /Pa3 +/K [95 96 97 98 99 100] +/P 189 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +306 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/K [101 102] +/P 953 0 R +/Pg 9 0 R +/S /Endnote_1._Abs +>> +endobj +307 0 obj +<< +/C /Pa2 +/K [103 104 308 0 R 106 107 309 0 R 109 110 310 0 R 112 113 114 115 311 0 R 117 118 +119] +/P 189 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +308 0 obj +<< +/ActualText +/K 105 +/P 307 0 R +/Pg 10 0 R +/S /Span +>> +endobj +309 0 obj +<< +/ActualText +/K 108 +/P 307 0 R +/Pg 10 0 R +/S /Span +>> +endobj +310 0 obj +<< +/ActualText +/K 111 +/P 307 0 R +/Pg 10 0 R +/S /Span +>> +endobj +311 0 obj +<< +/ActualText +/K 116 +/P 307 0 R +/Pg 10 0 R +/S /Span +>> +endobj +312 0 obj +<< +/C /Pa2 +/K [120 121 313 0 R 123 124 125 126 127 128 129 314 0 R 131 132 133 315 0 R 135 +136 137 138] +/P 189 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +313 0 obj +<< +/ActualText +/K 122 +/P 312 0 R +/Pg 10 0 R +/S /Span +>> +endobj +314 0 obj +<< +/ActualText +/K 130 +/P 312 0 R +/Pg 10 0 R +/S /Span +>> +endobj +315 0 obj +<< +/ActualText +/K 134 +/P 312 0 R +/Pg 10 0 R +/S /Span +>> +endobj +316 0 obj +<< +/C /Pa2 +/K [139 317 0 R 141 142 143 144 145 146 147 148 149 150] +/P 189 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +317 0 obj +<< +/ActualText +/K 140 +/P 316 0 R +/Pg 10 0 R +/S /Span +>> +endobj +318 0 obj +<< +/C /Pa1 +/K 151 +/P 189 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +319 0 obj +<< +/C /Pa3 +/K [152 153 320 0 R 155] +/P 189 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +320 0 obj +<< +/ActualText +/K 154 +/P 319 0 R +/Pg 10 0 R +/S /Span +>> +endobj +321 0 obj +<< +/C /Pa7 +/K [156 157 158] +/P 190 0 R +/Pg 10 0 R +/S /Absatzformat_2 +>> +endobj +322 0 obj +<< +/C /Pa8 +/K 159 +/P 189 0 R +/Pg 11 0 R +/S /Zwischenhead_2 +>> +endobj +323 0 obj +<< +/C /Pa3 +/K [160 161 162 163] +/P 189 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +324 0 obj +<< +/C /Pa8 +/K 164 +/P 189 0 R +/Pg 11 0 R +/S /Zwischenhead_2 +>> +endobj +325 0 obj +<< +/C /Pa3 +/K [165 166 326 0 R 168 169 170] +/P 189 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +326 0 obj +<< +/ActualText +/K 167 +/P 325 0 R +/Pg 11 0 R +/S /Span +>> +endobj +327 0 obj +<< +/C /Pa8 +/K 171 +/P 189 0 R +/Pg 11 0 R +/S /Zwischenhead_2 +>> +endobj +328 0 obj +<< +/C /Pa3 +/K [172 173 174 175] +/P 189 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +329 0 obj +<< +/C /Pa8 +/K 176 +/P 189 0 R +/Pg 11 0 R +/S /Zwischenhead_2 +>> +endobj +330 0 obj +<< +/C /Pa3 +/K [177 178 331 0 R 180 181] +/P 189 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +331 0 obj +<< +/ActualText +/K 179 +/P 330 0 R +/Pg 11 0 R +/S /Span +>> +endobj +332 0 obj +<< +/C /Pa1 +/K 182 +/P 189 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +333 0 obj +<< +/C /Pa8 +/K 183 +/P 189 0 R +/Pg 11 0 R +/S /Zwischenhead_2 +>> +endobj +334 0 obj +<< +/C /Pa3 +/K [184 185 186 187 188 189] +/P 189 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +335 0 obj +<< +/C /Pa2 +/K [190 191 192 193 336 0 R 195 196] +/P 189 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +336 0 obj +<< +/ActualText +/K 194 +/P 335 0 R +/Pg 11 0 R +/S /Span +>> +endobj +337 0 obj +<< +/C /Pa9 +/K 197 +/P 189 0 R +/Pg 12 0 R +/S /Zwischenhead_3 +>> +endobj +338 0 obj +<< +/C /Pa3 +/K [198 339 0 R 200 201] +/P 189 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +339 0 obj +<< +/ActualText +/K 199 +/P 338 0 R +/Pg 12 0 R +/S /Span +>> +endobj +340 0 obj +<< +/C /Pa9 +/K 202 +/P 189 0 R +/Pg 12 0 R +/S /Zwischenhead_3 +>> +endobj +341 0 obj +<< +/C /Pa3 +/K [203 342 0 R << +/MCID 365 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 366 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 367 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 368 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 369 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 370 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 371 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 372 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 373 +/Pg 14 0 R +/Type /MCR +>>] +/P 189 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +342 0 obj +<< +/ActualText +/K 204 +/P 341 0 R +/Pg 12 0 R +/S /Span +>> +endobj +343 0 obj +<< +/C /Pa11 +/K 205 +/P 964 0 R +/Pg 12 0 R +/S /Tab._Versal_bold_wei +>> +endobj +344 0 obj +<< +/C /Pa11 +/K 206 +/P 965 0 R +/Pg 12 0 R +/S /Tab._Versal_bold_sch +>> +endobj +345 0 obj +<< +/C /A4 +/K 207 +/P 966 0 R +/Pg 12 0 R +/S /Span +>> +endobj +346 0 obj +<< +/C /A4 +/K 208 +/P 966 0 R +/Pg 12 0 R +/S /Span +>> +endobj +347 0 obj +<< +/K 209 +/P 967 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +348 0 obj +<< +/C /A4 +/K 210 +/P 968 0 R +/Pg 12 0 R +/S /Span +>> +endobj +349 0 obj +<< +/C /A4 +/K 211 +/P 968 0 R +/Pg 12 0 R +/S /Span +>> +endobj +350 0 obj +<< +/K [212 213 214] +/P 969 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +351 0 obj +<< +/C /A4 +/K 215 +/P 970 0 R +/Pg 12 0 R +/S /Span +>> +endobj +352 0 obj +<< +/C /A4 +/K 216 +/P 970 0 R +/Pg 12 0 R +/S /Span +>> +endobj +353 0 obj +<< +/K [217 218] +/P 971 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +354 0 obj +<< +/C /A4 +/K 219 +/P 972 0 R +/Pg 12 0 R +/S /Span +>> +endobj +355 0 obj +<< +/C /A4 +/K 220 +/P 972 0 R +/Pg 12 0 R +/S /Span +>> +endobj +356 0 obj +<< +/K [221 222 223] +/P 973 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +357 0 obj +<< +/C /A4 +/K 224 +/P 974 0 R +/Pg 12 0 R +/S /Span +>> +endobj +358 0 obj +<< +/C /A4 +/K 225 +/P 974 0 R +/Pg 12 0 R +/S /Span +>> +endobj +359 0 obj +<< +/K [226 227 228] +/P 975 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +360 0 obj +<< +/C /A4 +/K 229 +/P 976 0 R +/Pg 12 0 R +/S /Span +>> +endobj +361 0 obj +<< +/C /A4 +/K 230 +/P 976 0 R +/Pg 12 0 R +/S /Span +>> +endobj +362 0 obj +<< +/K [231 363 0 R 233] +/P 977 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +363 0 obj +<< +/ActualText +/K 232 +/P 362 0 R +/Pg 12 0 R +/S /Span +>> +endobj +364 0 obj +<< +/C /Pa11 +/K 234 +/P 978 0 R +/Pg 12 0 R +/S /Tab._Versal_bold_sch +>> +endobj +365 0 obj +<< +/C /A4 +/K 235 +/P 979 0 R +/Pg 12 0 R +/S /Span +>> +endobj +366 0 obj +<< +/C /A4 +/K 236 +/P 979 0 R +/Pg 12 0 R +/S /Span +>> +endobj +367 0 obj +<< +/K [237 368 0 R 239] +/P 980 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +368 0 obj +<< +/ActualText +/K 238 +/P 367 0 R +/Pg 12 0 R +/S /Span +>> +endobj +369 0 obj +<< +/C /A4 +/K 240 +/P 981 0 R +/Pg 12 0 R +/S /Span +>> +endobj +370 0 obj +<< +/C /A4 +/K 241 +/P 981 0 R +/Pg 12 0 R +/S /Span +>> +endobj +371 0 obj +<< +/K [242 243] +/P 982 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +372 0 obj +<< +/C /A4 +/K 244 +/P 983 0 R +/Pg 12 0 R +/S /Span +>> +endobj +373 0 obj +<< +/C /A4 +/K 245 +/P 983 0 R +/Pg 12 0 R +/S /Span +>> +endobj +374 0 obj +<< +/K [246 375 0 R 248] +/P 984 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +375 0 obj +<< +/ActualText +/K 247 +/P 374 0 R +/Pg 12 0 R +/S /Span +>> +endobj +376 0 obj +<< +/C /A4 +/K 249 +/P 985 0 R +/Pg 12 0 R +/S /Span +>> +endobj +377 0 obj +<< +/C /A4 +/K 250 +/P 985 0 R +/Pg 12 0 R +/S /Span +>> +endobj +378 0 obj +<< +/K 251 +/P 986 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +379 0 obj +<< +/C /A4 +/K 252 +/P 987 0 R +/Pg 12 0 R +/S /Span +>> +endobj +380 0 obj +<< +/C /A4 +/K 253 +/P 987 0 R +/Pg 12 0 R +/S /Span +>> +endobj +381 0 obj +<< +/K [254 255] +/P 988 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +382 0 obj +<< +/C /A4 +/K 256 +/P 989 0 R +/Pg 12 0 R +/S /Span +>> +endobj +383 0 obj +<< +/C /A4 +/K 257 +/P 989 0 R +/Pg 12 0 R +/S /Span +>> +endobj +384 0 obj +<< +/K [258 259] +/P 990 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +385 0 obj +<< +/C /Pa11 +/K 260 +/P 991 0 R +/Pg 12 0 R +/S /Tab._Versal_bold_sch +>> +endobj +386 0 obj +<< +/C /A4 +/K 261 +/P 992 0 R +/Pg 12 0 R +/S /Span +>> +endobj +387 0 obj +<< +/C /A4 +/K 262 +/P 992 0 R +/Pg 12 0 R +/S /Span +>> +endobj +388 0 obj +<< +/K 263 +/P 993 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +389 0 obj +<< +/C /A4 +/K 264 +/P 994 0 R +/Pg 12 0 R +/S /Span +>> +endobj +390 0 obj +<< +/C /A4 +/K 265 +/P 994 0 R +/Pg 12 0 R +/S /Span +>> +endobj +391 0 obj +<< +/K 266 +/P 995 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +392 0 obj +<< +/C /A4 +/K 267 +/P 996 0 R +/Pg 12 0 R +/S /Span +>> +endobj +393 0 obj +<< +/C /A4 +/K 268 +/P 996 0 R +/Pg 12 0 R +/S /Span +>> +endobj +394 0 obj +<< +/K [269 270] +/P 997 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +395 0 obj +<< +/C /A4 +/K 271 +/P 998 0 R +/Pg 12 0 R +/S /Span +>> +endobj +396 0 obj +<< +/C /A4 +/K 272 +/P 998 0 R +/Pg 12 0 R +/S /Span +>> +endobj +397 0 obj +<< +/K [273 274 275 276] +/P 999 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +398 0 obj +<< +/C /A4 +/K 277 +/P 1000 0 R +/Pg 12 0 R +/S /Span +>> +endobj +399 0 obj +<< +/C /A4 +/K 278 +/P 1000 0 R +/Pg 12 0 R +/S /Span +>> +endobj +400 0 obj +<< +/K 279 +/P 1001 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +401 0 obj +<< +/C /Pa2 +/K [374 375] +/P 189 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +402 0 obj +<< +/C /A4 +/K 376 +/P 1002 0 R +/Pg 14 0 R +/S /Span +>> +endobj +403 0 obj +<< +/C /A4 +/K 377 +/P 1002 0 R +/Pg 14 0 R +/S /Span +>> +endobj +404 0 obj +<< +/C /A7 +/K 378 +/P 405 0 R +/Pg 14 0 R +/S /Span +>> +endobj +405 0 obj +<< +/K [404 0 R 379] +/P 1003 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +406 0 obj +<< +/C /A4 +/K 380 +/P 1004 0 R +/Pg 14 0 R +/S /Span +>> +endobj +407 0 obj +<< +/C /A4 +/K 381 +/P 1004 0 R +/Pg 14 0 R +/S /Span +>> +endobj +408 0 obj +<< +/C /A7 +/K 382 +/P 409 0 R +/Pg 14 0 R +/S /Span +>> +endobj +409 0 obj +<< +/K [408 0 R 383 384] +/P 1005 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +410 0 obj +<< +/C /A4 +/K 385 +/P 1006 0 R +/Pg 14 0 R +/S /Span +>> +endobj +411 0 obj +<< +/C /A4 +/K 386 +/P 1006 0 R +/Pg 14 0 R +/S /Span +>> +endobj +412 0 obj +<< +/C /A7 +/K 387 +/P 413 0 R +/Pg 14 0 R +/S /Span +>> +endobj +413 0 obj +<< +/K [412 0 R 388 389] +/P 1007 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +414 0 obj +<< +/C /A4 +/K 390 +/P 1008 0 R +/Pg 14 0 R +/S /Span +>> +endobj +415 0 obj +<< +/C /A4 +/K 391 +/P 1008 0 R +/Pg 14 0 R +/S /Span +>> +endobj +416 0 obj +<< +/C /A7 +/K 392 +/P 417 0 R +/Pg 14 0 R +/S /Span +>> +endobj +417 0 obj +<< +/K [416 0 R 393 418 0 R 395] +/P 1009 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +418 0 obj +<< +/ActualText +/K 394 +/P 417 0 R +/Pg 14 0 R +/S /Span +>> +endobj +419 0 obj +<< +/C /A4 +/K 396 +/P 1010 0 R +/Pg 14 0 R +/S /Span +>> +endobj +420 0 obj +<< +/C /A4 +/K 397 +/P 1010 0 R +/Pg 14 0 R +/S /Span +>> +endobj +421 0 obj +<< +/C /A7 +/K 398 +/P 422 0 R +/Pg 14 0 R +/S /Span +>> +endobj +422 0 obj +<< +/K [421 0 R 399] +/P 1011 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +423 0 obj +<< +/C /A4 +/K 400 +/P 1012 0 R +/Pg 14 0 R +/S /Span +>> +endobj +424 0 obj +<< +/C /A4 +/K 401 +/P 1012 0 R +/Pg 14 0 R +/S /Span +>> +endobj +425 0 obj +<< +/C /A7 +/K 402 +/P 426 0 R +/Pg 14 0 R +/S /Span +>> +endobj +426 0 obj +<< +/K [425 0 R 403] +/P 1013 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +427 0 obj +<< +/C /A4 +/K 404 +/P 1014 0 R +/Pg 14 0 R +/S /Span +>> +endobj +428 0 obj +<< +/C /A4 +/K 405 +/P 1014 0 R +/Pg 14 0 R +/S /Span +>> +endobj +429 0 obj +<< +/C /A7 +/K 406 +/P 430 0 R +/Pg 14 0 R +/S /Span +>> +endobj +430 0 obj +<< +/K [429 0 R 407] +/P 1015 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +431 0 obj +<< +/C /A4 +/K 408 +/P 1016 0 R +/Pg 14 0 R +/S /Span +>> +endobj +432 0 obj +<< +/C /A4 +/K 409 +/P 1016 0 R +/Pg 14 0 R +/S /Span +>> +endobj +433 0 obj +<< +/C /A7 +/K 410 +/P 434 0 R +/Pg 14 0 R +/S /Span +>> +endobj +434 0 obj +<< +/K [433 0 R 411] +/P 1017 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +435 0 obj +<< +/C /Pa2 +/K [412 413 414] +/P 189 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +436 0 obj +<< +/C /A4 +/K 415 +/P 1018 0 R +/Pg 14 0 R +/S /Span +>> +endobj +437 0 obj +<< +/C /A4 +/K 416 +/P 1018 0 R +/Pg 14 0 R +/S /Span +>> +endobj +438 0 obj +<< +/C /A7 +/K 417 +/P 439 0 R +/Pg 14 0 R +/S /Span +>> +endobj +439 0 obj +<< +/K [438 0 R 418 419 420 421 422 423 424] +/P 1019 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +440 0 obj +<< +/C /A4 +/K 425 +/P 1020 0 R +/Pg 14 0 R +/S /Span +>> +endobj +441 0 obj +<< +/C /A4 +/K 426 +/P 1020 0 R +/Pg 14 0 R +/S /Span +>> +endobj +442 0 obj +<< +/C /A7 +/K 427 +/P 443 0 R +/Pg 14 0 R +/S /Span +>> +endobj +443 0 obj +<< +/K [442 0 R 428 444 0 R 430 431 445 0 R 433 434 435] +/P 1021 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +444 0 obj +<< +/ActualText +/K 429 +/P 443 0 R +/Pg 14 0 R +/S /Span +>> +endobj +445 0 obj +<< +/ActualText +/K 432 +/P 443 0 R +/Pg 14 0 R +/S /Span +>> +endobj +446 0 obj +<< +/C /A4 +/K 436 +/P 1022 0 R +/Pg 14 0 R +/S /Span +>> +endobj +447 0 obj +<< +/C /A4 +/K 437 +/P 1022 0 R +/Pg 14 0 R +/S /Span +>> +endobj +448 0 obj +<< +/C /A7 +/K 438 +/P 449 0 R +/Pg 14 0 R +/S /Span +>> +endobj +449 0 obj +<< +/K [448 0 R 439 440 441 442 443 444 445] +/P 1023 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +450 0 obj +<< +/C /A4 +/K 446 +/P 1024 0 R +/Pg 15 0 R +/S /Span +>> +endobj +451 0 obj +<< +/C /A4 +/K 447 +/P 1024 0 R +/Pg 15 0 R +/S /Span +>> +endobj +452 0 obj +<< +/C /A7 +/K 448 +/P 453 0 R +/Pg 15 0 R +/S /Span +>> +endobj +453 0 obj +<< +/K [452 0 R 449 450 451] +/P 1025 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +454 0 obj +<< +/C /A4 +/K 452 +/P 1026 0 R +/Pg 15 0 R +/S /Span +>> +endobj +455 0 obj +<< +/C /A4 +/K 453 +/P 1026 0 R +/Pg 15 0 R +/S /Span +>> +endobj +456 0 obj +<< +/C /A7 +/K 454 +/P 457 0 R +/Pg 15 0 R +/S /Span +>> +endobj +457 0 obj +<< +/K [456 0 R 455 458 0 R 457 459 0 R 459 460 461 462 463] +/P 1027 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +458 0 obj +<< +/ActualText +/K 456 +/P 457 0 R +/Pg 15 0 R +/S /Span +>> +endobj +459 0 obj +<< +/ActualText +/K 458 +/P 457 0 R +/Pg 15 0 R +/S /Span +>> +endobj +460 0 obj +<< +/C /A4 +/K 464 +/P 1028 0 R +/Pg 15 0 R +/S /Span +>> +endobj +461 0 obj +<< +/C /A4 +/K 465 +/P 1028 0 R +/Pg 15 0 R +/S /Span +>> +endobj +462 0 obj +<< +/C /A7 +/K 466 +/P 463 0 R +/Pg 15 0 R +/S /Span +>> +endobj +463 0 obj +<< +/K [462 0 R 467 464 0 R 469 470 465 0 R 472 473 474] +/P 1029 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +464 0 obj +<< +/ActualText +/K 468 +/P 463 0 R +/Pg 15 0 R +/S /Span +>> +endobj +465 0 obj +<< +/ActualText +/K 471 +/P 463 0 R +/Pg 15 0 R +/S /Span +>> +endobj +466 0 obj +<< +/C /A4 +/K 475 +/P 1030 0 R +/Pg 15 0 R +/S /Span +>> +endobj +467 0 obj +<< +/C /A4 +/K 476 +/P 1030 0 R +/Pg 15 0 R +/S /Span +>> +endobj +468 0 obj +<< +/C /A7 +/K 477 +/P 469 0 R +/Pg 15 0 R +/S /Span +>> +endobj +469 0 obj +<< +/K [468 0 R 478 479 470 0 R 481 482 483 484] +/P 1031 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +470 0 obj +<< +/ActualText +/K 480 +/P 469 0 R +/Pg 15 0 R +/S /Span +>> +endobj +471 0 obj +<< +/C /Pa9 +/K 485 +/P 189 0 R +/Pg 15 0 R +/S /Zwischenhead_3 +>> +endobj +472 0 obj +<< +/C /Pa3 +/K [486 487] +/P 189 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +473 0 obj +<< +/C /A4 +/K 488 +/P 1032 0 R +/Pg 15 0 R +/S /Span +>> +endobj +474 0 obj +<< +/C /A4 +/K 489 +/P 1032 0 R +/Pg 15 0 R +/S /Span +>> +endobj +475 0 obj +<< +/C /A7 +/K 490 +/P 476 0 R +/Pg 15 0 R +/S /Span +>> +endobj +476 0 obj +<< +/K [475 0 R 491 477 0 R 493 494 478 0 R 496 497 498 499 500 501 479 0 R 503] +/P 1033 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +477 0 obj +<< +/ActualText +/K 492 +/P 476 0 R +/Pg 15 0 R +/S /Span +>> +endobj +478 0 obj +<< +/ActualText +/K 495 +/P 476 0 R +/Pg 15 0 R +/S /Span +>> +endobj +479 0 obj +<< +/ActualText +/K 502 +/P 476 0 R +/Pg 15 0 R +/S /Span +>> +endobj +480 0 obj +<< +/C /A4 +/K 504 +/P 1034 0 R +/Pg 15 0 R +/S /Span +>> +endobj +481 0 obj +<< +/C /A4 +/K 505 +/P 1034 0 R +/Pg 15 0 R +/S /Span +>> +endobj +482 0 obj +<< +/C /A7 +/K 506 +/P 483 0 R +/Pg 15 0 R +/S /Span +>> +endobj +483 0 obj +<< +/K [482 0 R 507 508 484 0 R 510 511 512 513 485 0 R 515 516 517 518 519 520 486 0 R +522] +/P 1035 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +484 0 obj +<< +/ActualText +/K 509 +/P 483 0 R +/Pg 15 0 R +/S /Span +>> +endobj +485 0 obj +<< +/ActualText +/K 514 +/P 483 0 R +/Pg 15 0 R +/S /Span +>> +endobj +486 0 obj +<< +/ActualText +/K 521 +/P 483 0 R +/Pg 15 0 R +/S /Span +>> +endobj +487 0 obj +<< +/C /A4 +/K 523 +/P 1036 0 R +/Pg 16 0 R +/S /Span +>> +endobj +488 0 obj +<< +/C /A4 +/K 524 +/P 1036 0 R +/Pg 16 0 R +/S /Span +>> +endobj +489 0 obj +<< +/C /A7 +/K 525 +/P 490 0 R +/Pg 16 0 R +/S /Span +>> +endobj +490 0 obj +<< +/K [489 0 R 526 527 491 0 R 529 492 0 R 531 532 533 493 0 R 535 536] +/P 1037 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +491 0 obj +<< +/ActualText +/K 528 +/P 490 0 R +/Pg 16 0 R +/S /Span +>> +endobj +492 0 obj +<< +/ActualText +/K 530 +/P 490 0 R +/Pg 16 0 R +/S /Span +>> +endobj +493 0 obj +<< +/ActualText +/K 534 +/P 490 0 R +/Pg 16 0 R +/S /Span +>> +endobj +494 0 obj +<< +/C /Pa9 +/K 537 +/P 189 0 R +/Pg 16 0 R +/S /Zwischenhead_3 +>> +endobj +495 0 obj +<< +/C /Pa3 +/K [538 539 540 541 496 0 R 543 544 545 546 547 548 549 550 551 552 553 +554 555] +/P 189 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +496 0 obj +<< +/ActualText +/K 542 +/P 495 0 R +/Pg 16 0 R +/S /Span +>> +endobj +497 0 obj +<< +/C /Pa2 +/K [556 557 558 559 560 561 562 498 0 R 564 499 0 R 566 567 568] +/P 189 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +498 0 obj +<< +/ActualText +/K 563 +/P 497 0 R +/Pg 16 0 R +/S /Span +>> +endobj +499 0 obj +<< +/ActualText +/K 565 +/P 497 0 R +/Pg 16 0 R +/S /Span +>> +endobj +500 0 obj +<< +/C /Pa2 +/K [569 570 501 0 R 572 502 0 R 574 575] +/P 189 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +501 0 obj +<< +/ActualText +/K 571 +/P 500 0 R +/Pg 16 0 R +/S /Span +>> +endobj +502 0 obj +<< +/ActualText +/K 573 +/P 500 0 R +/Pg 16 0 R +/S /Span +>> +endobj +503 0 obj +<< +/C /Pa2 +/K [576 577 578 579 580 504 0 R 582 505 0 R 584 585 586] +/P 189 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +504 0 obj +<< +/ActualText +/K 581 +/P 503 0 R +/Pg 16 0 R +/S /Span +>> +endobj +505 0 obj +<< +/ActualText +/K 583 +/P 503 0 R +/Pg 16 0 R +/S /Span +>> +endobj +506 0 obj +<< +/C /Pa7 +/K [587 588 589 590 591] +/P 192 0 R +/Pg 16 0 R +/S /Einklinker-Text__rec +>> +endobj +507 0 obj +<< +/C /Pa9 +/K 592 +/P 189 0 R +/Pg 17 0 R +/S /Zwischenhead_3 +>> +endobj +508 0 obj +<< +/C /Pa3 +/K [593 594 595 596 597 598 599 600] +/P 189 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +509 0 obj +<< +/C /Pa2 +/K [601 602 603 604 605 606 607] +/P 189 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +510 0 obj +<< +/C /Pa1 +/K 608 +/P 189 0 R +/Pg 17 0 R +/S /Zwischenhead_1 +>> +endobj +511 0 obj +<< +/C /Pa3 +/K [609 610 512 0 R 612 613 614 615 616] +/P 189 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +512 0 obj +<< +/ActualText +/K 611 +/P 511 0 R +/Pg 17 0 R +/S /Span +>> +endobj +513 0 obj +<< +/C /Pa8 +/K 617 +/P 189 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +514 0 obj +<< +/C /Pa3 +/K [618 515 0 R 620 621 622 623 624] +/P 189 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +515 0 obj +<< +/ActualText +/K 619 +/P 514 0 R +/Pg 17 0 R +/S /Span +>> +endobj +516 0 obj +<< +/C /Pa3 +/K [625 626 517 0 R 628 629 630 518 0 R 632 633 634 635 636 637] +/P 189 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +517 0 obj +<< +/ActualText +/K 627 +/P 516 0 R +/Pg 17 0 R +/S /Span +>> +endobj +518 0 obj +<< +/ActualText +/K 631 +/P 516 0 R +/Pg 17 0 R +/S /Span +>> +endobj +519 0 obj +<< +/C /Pa2 +/K [638 639 520 0 R 641 642] +/P 189 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +520 0 obj +<< +/ActualText +/K 640 +/P 519 0 R +/Pg 17 0 R +/S /Span +>> +endobj +521 0 obj +<< +/C /Pa7 +/K [643 522 0 R 645 646 523 0 R 648] +/P 193 0 R +/Pg 17 0 R +/S /Einklinker-Text__rec +>> +endobj +522 0 obj +<< +/ActualText +/K 644 +/P 521 0 R +/Pg 17 0 R +/S /Span +>> +endobj +523 0 obj +<< +/ActualText +/K 647 +/P 521 0 R +/Pg 17 0 R +/S /Span +>> +endobj +524 0 obj +<< +/C /Pa2 +/K [649 650 651 652 653] +/P 189 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +525 0 obj +<< +/C /Pa2 +/K [654 655 656 657] +/P 189 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +526 0 obj +<< +/C /Pa2 +/K [658 659 660 661 527 0 R 663 664 665 666 528 0 R 668 669 670] +/P 189 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +527 0 obj +<< +/ActualText +/K 662 +/P 526 0 R +/Pg 18 0 R +/S /Span +>> +endobj +528 0 obj +<< +/ActualText +/K 667 +/P 526 0 R +/Pg 18 0 R +/S /Span +>> +endobj +529 0 obj +<< +/C /Pa8 +/K 671 +/P 189 0 R +/Pg 18 0 R +/S /Zwischenhead_2 +>> +endobj +530 0 obj +<< +/C /Pa3 +/K [672 673 531 0 R 675 532 0 R 677 533 0 R 679 534 0 R 681 535 0 R 683 684 685] +/P 189 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +531 0 obj +<< +/ActualText +/K 674 +/P 530 0 R +/Pg 18 0 R +/S /Span +>> +endobj +532 0 obj +<< +/ActualText +/K 676 +/P 530 0 R +/Pg 18 0 R +/S /Span +>> +endobj +533 0 obj +<< +/ActualText +/K 678 +/P 530 0 R +/Pg 18 0 R +/S /Span +>> +endobj +534 0 obj +<< +/ActualText +/K 680 +/P 530 0 R +/Pg 18 0 R +/S /Span +>> +endobj +535 0 obj +<< +/ActualText +/K 682 +/P 530 0 R +/Pg 18 0 R +/S /Span +>> +endobj +536 0 obj +<< +/C /Pa2 +/K [686 687 688 689 690 691 692] +/P 189 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +537 0 obj +<< +/A << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 19.0 +>> +/K 693 +/P 189 0 R +/Pg 18 0 R +/S /Zwischenhead_2 +>> +endobj +538 0 obj +<< +/C /Pa3 +/K [694 695 696 697 698 699 700 701 539 0 R 703 704] +/P 189 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +539 0 obj +<< +/ActualText +/K 702 +/P 538 0 R +/Pg 18 0 R +/S /Span +>> +endobj +540 0 obj +<< +/C /Pa2 +/K [705 706 707 541 0 R 709 710 711 712 542 0 R 714] +/P 189 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +541 0 obj +<< +/ActualText +/K 708 +/P 540 0 R +/Pg 19 0 R +/S /Span +>> +endobj +542 0 obj +<< +/ActualText +/K 713 +/P 540 0 R +/Pg 19 0 R +/S /Span +>> +endobj +543 0 obj +<< +/C /Pa2 +/K [715 544 0 R 717] +/P 189 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +544 0 obj +<< +/ActualText +/K 716 +/P 543 0 R +/Pg 19 0 R +/S /Span +>> +endobj +545 0 obj +<< +/C /Pa8 +/K 718 +/P 189 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +546 0 obj +<< +/C /Pa3 +/K [719 720 721] +/P 189 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +547 0 obj +<< +/C /Pa2 +/K [722 723 724 548 0 R 726 727 728 729 549 0 R 731 732 550 0 R 734 735 736 737 +738 739 740 741] +/P 189 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +548 0 obj +<< +/ActualText +/K 725 +/P 547 0 R +/Pg 19 0 R +/S /Span +>> +endobj +549 0 obj +<< +/ActualText +/K 730 +/P 547 0 R +/Pg 19 0 R +/S /Span +>> +endobj +550 0 obj +<< +/ActualText +/K 733 +/P 547 0 R +/Pg 19 0 R +/S /Span +>> +endobj +551 0 obj +<< +/C /Pa2 +/K [742 743 552 0 R 745 746] +/P 189 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +552 0 obj +<< +/ActualText +/K 744 +/P 551 0 R +/Pg 19 0 R +/S /Span +>> +endobj +553 0 obj +<< +/C /Pa8 +/K 747 +/P 189 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +554 0 obj +<< +/C /Pa3 +/K [748 555 0 R 750 751 752] +/P 189 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +555 0 obj +<< +/ActualText +/K 749 +/P 554 0 R +/Pg 19 0 R +/S /Span +>> +endobj +556 0 obj +<< +/C /Pa2 +/K [753 557 0 R 755 756 558 0 R 758 759 760 << +/MCID 763 +/Pg 20 0 R +/Type /MCR +>> 560 0 R << +/MCID 765 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 766 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 767 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 768 +/Pg 20 0 R +/Type /MCR +>>] +/P 189 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +557 0 obj +<< +/ActualText +/K 754 +/P 556 0 R +/Pg 19 0 R +/S /Span +>> +endobj +558 0 obj +<< +/ActualText +/K 757 +/P 556 0 R +/Pg 19 0 R +/S /Span +>> +endobj +559 0 obj +<< +/C /Pa7 +/K [761 762] +/P 194 0 R +/Pg 19 0 R +/S /Einklinker-Text +>> +endobj +560 0 obj +<< +/ActualText +/K 764 +/P 556 0 R +/Pg 20 0 R +/S /Span +>> +endobj +561 0 obj +<< +/C /Pa1 +/K 769 +/P 189 0 R +/Pg 20 0 R +/S /Zwischenhead_1 +>> +endobj +562 0 obj +<< +/C /Pa3 +/K [770 771] +/P 189 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +563 0 obj +<< +/C /Pa8 +/K 772 +/P 189 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +564 0 obj +<< +/C /Pa3 +/K [773 565 0 R 775 776 777 778 779 780 781 566 0 R 783] +/P 189 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +565 0 obj +<< +/ActualText +/K 774 +/P 564 0 R +/Pg 20 0 R +/S /Span +>> +endobj +566 0 obj +<< +/ActualText +/K 782 +/P 564 0 R +/Pg 20 0 R +/S /Span +>> +endobj +567 0 obj +<< +/C /Pa8 +/K 784 +/P 189 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +568 0 obj +<< +/C /Pa3 +/K [785 786] +/P 189 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +569 0 obj +<< +/C /Pa9 +/K 787 +/P 189 0 R +/Pg 20 0 R +/S /Zwischenhead_3 +>> +endobj +570 0 obj +<< +/C /Pa3 +/K [788 789 571 0 R 791] +/P 189 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +571 0 obj +<< +/ActualText +/K 790 +/P 570 0 R +/Pg 20 0 R +/S /Span +>> +endobj +572 0 obj +<< +/C /Pa9 +/K 792 +/P 189 0 R +/Pg 20 0 R +/S /Zwischenhead_3 +>> +endobj +573 0 obj +<< +/C /Pa3 +/K [793 794 795] +/P 189 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +574 0 obj +<< +/C /Pa2 +/K [796 575 0 R 798] +/P 189 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +575 0 obj +<< +/ActualText +/K 797 +/P 574 0 R +/Pg 20 0 R +/S /Span +>> +endobj +576 0 obj +<< +/C /Pa3 +/K [799 800 801 802] +/P 189 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +577 0 obj +<< +/C /Pa2 +/K [803 578 0 R 805 806 807 808 809 810 811 812 813 579 0 R 815 816] +/P 189 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +578 0 obj +<< +/ActualText +/K 804 +/P 577 0 R +/Pg 21 0 R +/S /Span +>> +endobj +579 0 obj +<< +/ActualText +/K 814 +/P 577 0 R +/Pg 21 0 R +/S /Span +>> +endobj +580 0 obj +<< +/C /Pa2 +/K [817 581 0 R 819 820] +/P 189 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +581 0 obj +<< +/ActualText +/K 818 +/P 580 0 R +/Pg 21 0 R +/S /Span +>> +endobj +582 0 obj +<< +/C /Pa2 +/K [821 822 823 << +/MCID 868 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 869 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 870 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 871 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 872 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 873 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 874 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 875 +/Pg 22 0 R +/Type /MCR +>>] +/P 189 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +583 0 obj +<< +/C /Pa11 +/K [824 825] +/P 1038 0 R +/Pg 21 0 R +/S /Tab._Versal_bold_wei +>> +endobj +584 0 obj +<< +/A << +/BBox [113.136 310.907 530.329 691.25] +/O /Layout +/Placement /Block +>> +/K 826 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +585 0 obj +<< +/C /A8 +/K 827 +/P 1039 0 R +/Pg 21 0 R +/S /Span +>> +endobj +586 0 obj +<< +/C /A8 +/K 828 +/P 1040 0 R +/Pg 21 0 R +/S /Span +>> +endobj +587 0 obj +<< +/ActualText +/C /A8 +/K 829 +/P 1040 0 R +/Pg 21 0 R +/S /Span +>> +endobj +588 0 obj +<< +/C /A8 +/K 830 +/P 1040 0 R +/Pg 21 0 R +/S /Span +>> +endobj +589 0 obj +<< +/C /A8 +/K 831 +/P 1041 0 R +/Pg 21 0 R +/S /Span +>> +endobj +590 0 obj +<< +/A << +/BBox [133.078 563.291 146.134 563.591] +/O /Layout +/Placement /Block +>> +/K 832 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +591 0 obj +<< +/A << +/BBox [168.512 622.818 168.811 635.874] +/O /Layout +/Placement /Block +>> +/K 833 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +592 0 obj +<< +/A << +/BBox [270.559 622.818 270.859 635.874] +/O /Layout +/Placement /Block +>> +/K 834 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +593 0 obj +<< +/A << +/BBox [372.606 622.818 372.906 635.874] +/O /Layout +/Placement /Block +>> +/K 835 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +594 0 obj +<< +/A << +/BBox [321.732 635.574 322.032 648.63] +/O /Layout +/Placement /Block +>> +/K 836 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +595 0 obj +<< +/A << +/BBox [474.653 622.818 474.953 635.874] +/O /Layout +/Placement /Block +>> +/K 837 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +596 0 obj +<< +/A << +/BBox [133.078 520.771 146.134 521.071] +/O /Layout +/Placement /Block +>> +/K 838 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +597 0 obj +<< +/A << +/BBox [133.078 478.251 146.134 478.551] +/O /Layout +/Placement /Block +>> +/K 839 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +598 0 obj +<< +/A << +/BBox [133.078 435.732 146.134 436.032] +/O /Layout +/Placement /Block +>> +/K 840 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +599 0 obj +<< +/A << +/BBox [133.078 393.212 146.134 393.512] +/O /Layout +/Placement /Block +>> +/K 841 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +600 0 obj +<< +/A << +/BBox [155.756 357.912 168.811 358.212] +/O /Layout +/Placement /Block +>> +/K 842 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +601 0 obj +<< +/A << +/BBox [155.756 329.566 168.811 329.866] +/O /Layout +/Placement /Block +>> +/K 843 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +602 0 obj +<< +/A << +/BBox [168.37 635.724 475.095 636.024] +/O /Layout +/Placement /Block +>> +/K 844 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +603 0 obj +<< +/A << +/BBox [155.906 329.546 156.206 376.504] +/O /Layout +/Placement /Block +>> +/K 845 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +604 0 obj +<< +/C /A9 +/K 846 +/P 1042 0 R +/Pg 21 0 R +/S /Span +>> +endobj +605 0 obj +<< +/ActualText +/C /A9 +/K 847 +/P 1042 0 R +/Pg 21 0 R +/S /Span +>> +endobj +606 0 obj +<< +/C /A9 +/K 848 +/P 1042 0 R +/Pg 21 0 R +/S /Span +>> +endobj +607 0 obj +<< +/C /A8 +/K 849 +/P 1043 0 R +/Pg 21 0 R +/S /Span +>> +endobj +608 0 obj +<< +/ActualText +/C /A8 +/K 850 +/P 1043 0 R +/Pg 21 0 R +/S /Span +>> +endobj +609 0 obj +<< +/C /A8 +/K 851 +/P 1043 0 R +/Pg 21 0 R +/S /Span +>> +endobj +610 0 obj +<< +/C /A8 +/K 852 +/P 1044 0 R +/Pg 21 0 R +/S /Span +>> +endobj +611 0 obj +<< +/C /A8 +/K 853 +/P 1045 0 R +/Pg 21 0 R +/S /Span +>> +endobj +612 0 obj +<< +/ActualText +/C /A8 +/K 854 +/P 1045 0 R +/Pg 21 0 R +/S /Span +>> +endobj +613 0 obj +<< +/C /A8 +/K 855 +/P 1045 0 R +/Pg 21 0 R +/S /Span +>> +endobj +614 0 obj +<< +/C /A8 +/K 856 +/P 1046 0 R +/Pg 21 0 R +/S /Span +>> +endobj +615 0 obj +<< +/ActualText +/C /A8 +/K 857 +/P 1046 0 R +/Pg 21 0 R +/S /Span +>> +endobj +616 0 obj +<< +/C /A8 +/K 858 +/P 1046 0 R +/Pg 21 0 R +/S /Span +>> +endobj +617 0 obj +<< +/C /A8 +/K 859 +/P 1047 0 R +/Pg 21 0 R +/S /Span +>> +endobj +618 0 obj +<< +/C /A8 +/K 860 +/P 1048 0 R +/Pg 21 0 R +/S /Span +>> +endobj +619 0 obj +<< +/C /A8 +/K 861 +/P 1049 0 R +/Pg 21 0 R +/S /Span +>> +endobj +620 0 obj +<< +/ActualText +/C /A8 +/K 862 +/P 1049 0 R +/Pg 21 0 R +/S /Span +>> +endobj +621 0 obj +<< +/C /A8 +/K 863 +/P 1049 0 R +/Pg 21 0 R +/S /Span +>> +endobj +622 0 obj +<< +/C /A10 +/K 864 +/P 1050 0 R +/Pg 21 0 R +/S /Span +>> +endobj +623 0 obj +<< +/ActualText +/C /A10 +/K 865 +/P 1050 0 R +/Pg 21 0 R +/S /Span +>> +endobj +624 0 obj +<< +/C /A10 +/K 866 +/P 1050 0 R +/Pg 21 0 R +/S /Span +>> +endobj +625 0 obj +<< +/A << +/BBox [133.228 393.07 133.528 589.103] +/O /Layout +/Placement /Block +>> +/K 867 +/P 196 0 R +/Pg 21 0 R +/S /Figure +>> +endobj +626 0 obj +<< +/C /Pa2 +/K [876 877 878 879 880 881 882] +/P 189 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +627 0 obj +<< +/C /Pa8 +/K 883 +/P 189 0 R +/Pg 22 0 R +/S /Zwischenhead_2 +>> +endobj +628 0 obj +<< +/C /Pa3 +/K [884 885 629 0 R 887 888 889 890 891 892 893 894] +/P 189 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +629 0 obj +<< +/ActualText +/K 886 +/P 628 0 R +/Pg 22 0 R +/S /Span +>> +endobj +630 0 obj +<< +/C /Pa2 +/K [895 896 897 898 899 900 901] +/P 189 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +631 0 obj +<< +/C /Pa2 +/K [902 632 0 R 904 633 0 R 906 907 908 909 910 911 912 913 634 0 R 915 916 << +/MCID 917 +/Pg 23 0 R +/Type /MCR +>> +<< +/MCID 918 +/Pg 23 0 R +/Type /MCR +>> 635 0 R << +/MCID 920 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 921 +/Pg 23 0 R +/Type /MCR +>> 636 0 R << +/MCID 923 +/Pg 23 0 R +/Type /MCR +>>] +/P 189 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +632 0 obj +<< +/ActualText +/K 903 +/P 631 0 R +/Pg 22 0 R +/S /Span +>> +endobj +633 0 obj +<< +/ActualText +/K 905 +/P 631 0 R +/Pg 22 0 R +/S /Span +>> +endobj +634 0 obj +<< +/ActualText +/K 914 +/P 631 0 R +/Pg 22 0 R +/S /Span +>> +endobj +635 0 obj +<< +/ActualText +/K 919 +/P 631 0 R +/Pg 23 0 R +/S /Span +>> +endobj +636 0 obj +<< +/ActualText +/K 922 +/P 631 0 R +/Pg 23 0 R +/S /Span +>> +endobj +637 0 obj +<< +/C /Pa2 +/K [924 925 926 927 928] +/P 189 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +638 0 obj +<< +/C /Pa2 +/K [929 930 931 932 933] +/P 189 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +639 0 obj +<< +/C /Pa2 +/K [934 935 936 937 938 640 0 R 940] +/P 189 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +640 0 obj +<< +/ActualText +/K 939 +/P 639 0 R +/Pg 23 0 R +/S /Span +>> +endobj +641 0 obj +<< +/C /Pa9 +/K 941 +/P 189 0 R +/Pg 23 0 R +/S /Zwischenhead_3 +>> +endobj +642 0 obj +<< +/C /Pa3 +/K [942 943] +/P 189 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +643 0 obj +<< +/C /A4 +/K 944 +/P 1051 0 R +/Pg 23 0 R +/S /Span +>> +endobj +644 0 obj +<< +/K [945 946] +/P 1052 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +645 0 obj +<< +/C /A4 +/K 947 +/P 1053 0 R +/Pg 23 0 R +/S /Span +>> +endobj +646 0 obj +<< +/K [948 647 0 R 950 648 0 R 952] +/P 1054 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +647 0 obj +<< +/ActualText +/K 949 +/P 646 0 R +/Pg 23 0 R +/S /Span +>> +endobj +648 0 obj +<< +/ActualText +/K 951 +/P 646 0 R +/Pg 23 0 R +/S /Span +>> +endobj +649 0 obj +<< +/C /A4 +/K 953 +/P 1055 0 R +/Pg 23 0 R +/S /Span +>> +endobj +650 0 obj +<< +/K [954 955 956] +/P 1056 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +651 0 obj +<< +/C /Pa8 +/K 957 +/P 189 0 R +/Pg 23 0 R +/S /Zwischenhead_2 +>> +endobj +652 0 obj +<< +/C /Pa3 +/K [958 959 960 961 962 963 964] +/P 189 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +653 0 obj +<< +/C /Pa2 +/K [965 966 967 968 969 << +/MCID 970 +/Pg 24 0 R +/Type /MCR +>> << +/MCID 971 +/Pg 24 0 R +/Type /MCR +>> << +/MCID 972 +/Pg 24 0 R +/Type /MCR +>>] +/P 189 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +654 0 obj +<< +/C /Pa2 +/K [973 974 975 976 977 978 979] +/P 189 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +655 0 obj +<< +/C /Pa8 +/K 980 +/P 189 0 R +/Pg 24 0 R +/S /Zwischenhead_2 +>> +endobj +656 0 obj +<< +/C /Pa3 +/K [981 657 0 R 983 984 985 986 658 0 R 988 989 659 0 R 991 660 0 R 993 661 0 R 995 996 +997] +/P 189 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +657 0 obj +<< +/ActualText +/K 982 +/P 656 0 R +/Pg 24 0 R +/S /Span +>> +endobj +658 0 obj +<< +/ActualText +/K 987 +/P 656 0 R +/Pg 24 0 R +/S /Span +>> +endobj +659 0 obj +<< +/ActualText +/K 990 +/P 656 0 R +/Pg 24 0 R +/S /Span +>> +endobj +660 0 obj +<< +/ActualText +/K 992 +/P 656 0 R +/Pg 24 0 R +/S /Span +>> +endobj +661 0 obj +<< +/ActualText +/K 994 +/P 656 0 R +/Pg 24 0 R +/S /Span +>> +endobj +662 0 obj +<< +/C /Pa9 +/K 998 +/P 189 0 R +/Pg 24 0 R +/S /Zwischenhead_3 +>> +endobj +663 0 obj +<< +/C /Pa3 +/K [999 1000 1001] +/P 189 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +664 0 obj +<< +/C /A4 +/K 1002 +/P 1057 0 R +/Pg 24 0 R +/S /Span +>> +endobj +665 0 obj +<< +/C /A4 +/K 1003 +/P 1057 0 R +/Pg 24 0 R +/S /Span +>> +endobj +666 0 obj +<< +/K 1004 +/P 1058 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +667 0 obj +<< +/C /A4 +/K 1005 +/P 1059 0 R +/Pg 24 0 R +/S /Span +>> +endobj +668 0 obj +<< +/C /A4 +/K 1006 +/P 1059 0 R +/Pg 24 0 R +/S /Span +>> +endobj +669 0 obj +<< +/K [1007 1008 670 0 R 1010] +/P 1060 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +670 0 obj +<< +/ActualText +/K 1009 +/P 669 0 R +/Pg 24 0 R +/S /Span +>> +endobj +671 0 obj +<< +/C /A4 +/K 1011 +/P 1061 0 R +/Pg 24 0 R +/S /Span +>> +endobj +672 0 obj +<< +/C /A4 +/K 1012 +/P 1061 0 R +/Pg 24 0 R +/S /Span +>> +endobj +673 0 obj +<< +/K [1013 674 0 R 1015 1016] +/P 1062 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +674 0 obj +<< +/ActualText +/K 1014 +/P 673 0 R +/Pg 24 0 R +/S /Span +>> +endobj +675 0 obj +<< +/C /A4 +/K 1017 +/P 1063 0 R +/Pg 24 0 R +/S /Span +>> +endobj +676 0 obj +<< +/C /A4 +/K 1018 +/P 1063 0 R +/Pg 24 0 R +/S /Span +>> +endobj +677 0 obj +<< +/K [1019 1020 1021 1022] +/P 1064 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +678 0 obj +<< +/C /Pa2 +/K [1023 679 0 R 1025 1026 1027 680 0 R 1029 1030 << +/MCID 1031 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 1032 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 1033 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 1034 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 1035 +/Pg 25 0 R +/Type /MCR +>>] +/P 189 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +679 0 obj +<< +/ActualText +/K 1024 +/P 678 0 R +/Pg 24 0 R +/S /Span +>> +endobj +680 0 obj +<< +/ActualText +/K 1028 +/P 678 0 R +/Pg 24 0 R +/S /Span +>> +endobj +681 0 obj +<< +/C /Pa9 +/K 1036 +/P 189 0 R +/Pg 25 0 R +/S /Zwischenhead_3 +>> +endobj +682 0 obj +<< +/C /Pa3 +/K [1037 1038 1039 1040] +/P 189 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +683 0 obj +<< +/C /Pa9 +/K 1041 +/P 189 0 R +/Pg 25 0 R +/S /Zwischenhead_3 +>> +endobj +684 0 obj +<< +/C /Pa3 +/K [1042 685 0 R 1044 1045 1046 1047 1048] +/P 189 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +685 0 obj +<< +/ActualText +/K 1043 +/P 684 0 R +/Pg 25 0 R +/S /Span +>> +endobj +686 0 obj +<< +/C /Pa1 +/K 1049 +/P 189 0 R +/Pg 25 0 R +/S /Zwischenhead_1 +>> +endobj +687 0 obj +<< +/C /Pa8 +/K 1050 +/P 189 0 R +/Pg 25 0 R +/S /Zwischenhead_2 +>> +endobj +688 0 obj +<< +/C /Pa3 +/K [1051 689 0 R 1053 1054 1055 1056 690 0 R 1058] +/P 189 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +689 0 obj +<< +/ActualText +/K 1052 +/P 688 0 R +/Pg 25 0 R +/S /Span +>> +endobj +690 0 obj +<< +/ActualText +/K 1057 +/P 688 0 R +/Pg 25 0 R +/S /Span +>> +endobj +691 0 obj +<< +/C /Pa8 +/K 1059 +/P 189 0 R +/Pg 25 0 R +/S /Zwischenhead_2 +>> +endobj +692 0 obj +<< +/C /Pa3 +/K [1060 1061 1062 1063] +/P 189 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +693 0 obj +<< +/C /Pa2 +/K [1064 1065 1066 694 0 R 1068 1069 1070 1071 1072] +/P 189 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +694 0 obj +<< +/ActualText +/K 1067 +/P 693 0 R +/Pg 25 0 R +/S /Span +>> +endobj +695 0 obj +<< +/C /Pa8 +/K 1073 +/P 189 0 R +/Pg 26 0 R +/S /Zwischenhead_2 +>> +endobj +696 0 obj +<< +/C /Pa3 +/K [1074 1075 1076] +/P 189 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +697 0 obj +<< +/C /Pa9 +/K 1077 +/P 189 0 R +/Pg 26 0 R +/S /Zwischenhead_3 +>> +endobj +698 0 obj +<< +/C /Pa3 +/K [1078 1079 1080 1081] +/P 189 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +699 0 obj +<< +/C /A4 +/K 1082 +/P 1065 0 R +/Pg 26 0 R +/S /Span +>> +endobj +700 0 obj +<< +/C /A4 +/K 1083 +/P 1065 0 R +/Pg 26 0 R +/S /Span +>> +endobj +701 0 obj +<< +/K 1084 +/P 1066 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +702 0 obj +<< +/C /A4 +/K 1085 +/P 1067 0 R +/Pg 26 0 R +/S /Span +>> +endobj +703 0 obj +<< +/C /A4 +/K 1086 +/P 1067 0 R +/Pg 26 0 R +/S /Span +>> +endobj +704 0 obj +<< +/K [1087 1088 1089] +/P 1068 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +705 0 obj +<< +/C /Pa2 +/K [1090 1091 1092 706 0 R 1094 1095 1096] +/P 189 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +706 0 obj +<< +/ActualText +/K 1093 +/P 705 0 R +/Pg 26 0 R +/S /Span +>> +endobj +707 0 obj +<< +/C /Pa9 +/K 1097 +/P 189 0 R +/Pg 26 0 R +/S /Zwischenhead_3 +>> +endobj +708 0 obj +<< +/C /Pa3 +/K [1098 1099 1100 709 0 R 1102 1103 1104 1105] +/P 189 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +709 0 obj +<< +/ActualText +/K 1101 +/P 708 0 R +/Pg 26 0 R +/S /Span +>> +endobj +710 0 obj +<< +/C /Pa2 +/K [1106 1107 711 0 R 1109 1110 1111 1112 1113 1114 1115 1116] +/P 189 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +711 0 obj +<< +/ActualText +/K 1108 +/P 710 0 R +/Pg 26 0 R +/S /Span +>> +endobj +712 0 obj +<< +/C /Pa9 +/K 1117 +/P 189 0 R +/Pg 26 0 R +/S /Zwischenhead_3 +>> +endobj +713 0 obj +<< +/C /Pa3 +/K [1118 1119 1120 1121 1122 1123] +/P 189 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +714 0 obj +<< +/C /A4 +/K 1124 +/P 1069 0 R +/Pg 27 0 R +/S /Span +>> +endobj +715 0 obj +<< +/C /A4 +/K 1125 +/P 1069 0 R +/Pg 27 0 R +/S /Span +>> +endobj +716 0 obj +<< +/K [1126 1127] +/P 1070 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +717 0 obj +<< +/C /A4 +/K 1128 +/P 1071 0 R +/Pg 27 0 R +/S /Span +>> +endobj +718 0 obj +<< +/C /A4 +/K 1129 +/P 1071 0 R +/Pg 27 0 R +/S /Span +>> +endobj +719 0 obj +<< +/K [1130 1131] +/P 1072 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +720 0 obj +<< +/C /A4 +/K 1132 +/P 1073 0 R +/Pg 27 0 R +/S /Span +>> +endobj +721 0 obj +<< +/C /A4 +/K 1133 +/P 1073 0 R +/Pg 27 0 R +/S /Span +>> +endobj +722 0 obj +<< +/K 1134 +/P 1074 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +723 0 obj +<< +/C /A4 +/K 1135 +/P 1075 0 R +/Pg 27 0 R +/S /Span +>> +endobj +724 0 obj +<< +/C /A4 +/K 1136 +/P 1075 0 R +/Pg 27 0 R +/S /Span +>> +endobj +725 0 obj +<< +/K [1137 1138] +/P 1076 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +726 0 obj +<< +/C /Pa2 +/K [1139 1140 1141] +/P 189 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +727 0 obj +<< +/C /Pa2 +/K [1142 1143 1144 1145 728 0 R 1147 1148 1149 1150 1151 1152 1153] +/P 189 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +728 0 obj +<< +/ActualText +/K 1146 +/P 727 0 R +/Pg 27 0 R +/S /Span +>> +endobj +729 0 obj +<< +/C /Pa2 +/K [1154 730 0 R 1156 1157 1158 1159 1160 1161 1162 1163 1164] +/P 189 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +730 0 obj +<< +/ActualText +/K 1155 +/P 729 0 R +/Pg 27 0 R +/S /Span +>> +endobj +731 0 obj +<< +/C /Pa9 +/K 1165 +/P 189 0 R +/Pg 27 0 R +/S /Zwischenhead_3 +>> +endobj +732 0 obj +<< +/C /Pa3 +/K [1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178] +/P 189 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +733 0 obj +<< +/C /Pa2 +/K 1179 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +734 0 obj +<< +/C /A4 +/K 1180 +/P 1077 0 R +/Pg 28 0 R +/S /Span +>> +endobj +735 0 obj +<< +/C /A4 +/K 1181 +/P 1077 0 R +/Pg 28 0 R +/S /Span +>> +endobj +736 0 obj +<< +/K [1182 1183 1184] +/P 1078 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +737 0 obj +<< +/C /A4 +/K 1185 +/P 1079 0 R +/Pg 28 0 R +/S /Span +>> +endobj +738 0 obj +<< +/C /A4 +/K 1186 +/P 1079 0 R +/Pg 28 0 R +/S /Span +>> +endobj +739 0 obj +<< +/K [1187 1188] +/P 1080 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +740 0 obj +<< +/C /A4 +/K 1189 +/P 1081 0 R +/Pg 28 0 R +/S /Span +>> +endobj +741 0 obj +<< +/C /A4 +/K 1190 +/P 1081 0 R +/Pg 28 0 R +/S /Span +>> +endobj +742 0 obj +<< +/K [1191 1192 1193 743 0 R 1195] +/P 1082 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +743 0 obj +<< +/ActualText +/K 1194 +/P 742 0 R +/Pg 28 0 R +/S /Span +>> +endobj +744 0 obj +<< +/C /A4 +/K 1196 +/P 1083 0 R +/Pg 28 0 R +/S /Span +>> +endobj +745 0 obj +<< +/C /A4 +/K 1197 +/P 1083 0 R +/Pg 28 0 R +/S /Span +>> +endobj +746 0 obj +<< +/K [1198 1199] +/P 1084 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +747 0 obj +<< +/C /Pa2 +/K [1200 1201 1202 1203 1204 748 0 R 1206 749 0 R 1208 1209 1210 1211 750 0 R 1213] +/P 189 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +748 0 obj +<< +/ActualText +/K 1205 +/P 747 0 R +/Pg 28 0 R +/S /Span +>> +endobj +749 0 obj +<< +/ActualText +/K 1207 +/P 747 0 R +/Pg 28 0 R +/S /Span +>> +endobj +750 0 obj +<< +/ActualText +/K 1212 +/P 747 0 R +/Pg 28 0 R +/S /Span +>> +endobj +751 0 obj +<< +/C /Pa8 +/K 1214 +/P 189 0 R +/Pg 28 0 R +/S /Zwischenhead_2 +>> +endobj +752 0 obj +<< +/C /Pa3 +/K 1215 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +753 0 obj +<< +/C /Pa3 +/K 1216 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +754 0 obj +<< +/C /Pa3 +/K 1217 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +755 0 obj +<< +/C /Pa3 +/K 1218 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +756 0 obj +<< +/C /Pa3 +/K 1219 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +757 0 obj +<< +/C /Pa3 +/K 1220 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +758 0 obj +<< +/C /Pa3 +/K 1221 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +759 0 obj +<< +/C /Pa3 +/K 1222 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +760 0 obj +<< +/C /Pa3 +/K 1223 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +761 0 obj +<< +/C /Pa3 +/K 1224 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +762 0 obj +<< +/C /Pa3 +/K 1225 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +763 0 obj +<< +/C /Pa3 +/K 1226 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +764 0 obj +<< +/C /Pa3 +/K 1227 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +765 0 obj +<< +/C /Pa3 +/K 1228 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +766 0 obj +<< +/C /Pa3 +/K 1229 +/P 189 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +767 0 obj +<< +/C /Pa8 +/K 1230 +/P 189 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +768 0 obj +<< +/C /Pa11 +/K 1231 +/P 1085 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_wei +>> +endobj +769 0 obj +<< +/C /Pa11 +/K [1232 1233] +/P 1086 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_wei +>> +endobj +770 0 obj +<< +/C /Pa11 +/K 1234 +/P 1087 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_wei +>> +endobj +771 0 obj +<< +/C /Pa11 +/K 1235 +/P 1088 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_sch +>> +endobj +772 0 obj +<< +/C /Pa18 +/K [1236 1237] +/P 1089 0 R +/Pg 29 0 R +/S /Tab._Lauftext_light_ +>> +endobj +773 0 obj +<< +/C /A4 +/K 1238 +/P 1090 0 R +/Pg 29 0 R +/S /Span +>> +endobj +774 0 obj +<< +/C /A4 +/K 1239 +/P 1090 0 R +/Pg 29 0 R +/S /Span +>> +endobj +775 0 obj +<< +/K 1240 +/P 1091 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +776 0 obj +<< +/C /A4 +/K 1241 +/P 1092 0 R +/Pg 29 0 R +/S /Span +>> +endobj +777 0 obj +<< +/C /A4 +/K 1242 +/P 1092 0 R +/Pg 29 0 R +/S /Span +>> +endobj +778 0 obj +<< +/K 1243 +/P 1093 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +779 0 obj +<< +/C /A4 +/K 1244 +/P 1094 0 R +/Pg 29 0 R +/S /Span +>> +endobj +780 0 obj +<< +/C /A4 +/K 1245 +/P 1094 0 R +/Pg 29 0 R +/S /Span +>> +endobj +781 0 obj +<< +/K [1246 1247] +/P 1095 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +782 0 obj +<< +/C /Pa11 +/K 1248 +/P 1096 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_sch +>> +endobj +783 0 obj +<< +/C /Pa18 +/K [1249 784 0 R 1251] +/P 1097 0 R +/Pg 29 0 R +/S /Tab._Lauftext_light_ +>> +endobj +784 0 obj +<< +/ActualText +/K 1250 +/P 783 0 R +/Pg 29 0 R +/S /Span +>> +endobj +785 0 obj +<< +/C /A4 +/K 1252 +/P 1098 0 R +/Pg 29 0 R +/S /Span +>> +endobj +786 0 obj +<< +/C /A4 +/K 1253 +/P 1098 0 R +/Pg 29 0 R +/S /Span +>> +endobj +787 0 obj +<< +/K [1254 1255 1256] +/P 1099 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +788 0 obj +<< +/C /A4 +/K 1257 +/P 1100 0 R +/Pg 29 0 R +/S /Span +>> +endobj +789 0 obj +<< +/C /A4 +/K 1258 +/P 1100 0 R +/Pg 29 0 R +/S /Span +>> +endobj +790 0 obj +<< +/K [1259 1260 1261] +/P 1101 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +791 0 obj +<< +/C /A4 +/K 1262 +/P 1102 0 R +/Pg 29 0 R +/S /Span +>> +endobj +792 0 obj +<< +/C /A4 +/K 1263 +/P 1102 0 R +/Pg 29 0 R +/S /Span +>> +endobj +793 0 obj +<< +/K [1264 1265] +/P 1103 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +794 0 obj +<< +/C /A4 +/K 1266 +/P 1104 0 R +/Pg 29 0 R +/S /Span +>> +endobj +795 0 obj +<< +/C /A4 +/K 1267 +/P 1104 0 R +/Pg 29 0 R +/S /Span +>> +endobj +796 0 obj +<< +/K [1268 1269 1270 1271] +/P 1105 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +797 0 obj +<< +/C /Pa11 +/K 1272 +/P 1106 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_sch +>> +endobj +798 0 obj +<< +/C /Pa18 +/K [1273 1274 799 0 R 1276 1277] +/P 1107 0 R +/Pg 29 0 R +/S /Tab._Lauftext_light_ +>> +endobj +799 0 obj +<< +/ActualText +/K 1275 +/P 798 0 R +/Pg 29 0 R +/S /Span +>> +endobj +800 0 obj +<< +/C /A4 +/K 1278 +/P 1108 0 R +/Pg 29 0 R +/S /Span +>> +endobj +801 0 obj +<< +/C /A4 +/K 1279 +/P 1108 0 R +/Pg 29 0 R +/S /Span +>> +endobj +802 0 obj +<< +/K [1280 1281 1282] +/P 1109 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +803 0 obj +<< +/C /Pa11 +/K [1283 1284] +/P 1110 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_sch +>> +endobj +804 0 obj +<< +/C /Pa18 +/K [1285 1286 1287] +/P 1111 0 R +/Pg 29 0 R +/S /Tab._Lauftext_light_ +>> +endobj +805 0 obj +<< +/C /A4 +/K 1288 +/P 1112 0 R +/Pg 29 0 R +/S /Span +>> +endobj +806 0 obj +<< +/C /A4 +/K 1289 +/P 1112 0 R +/Pg 29 0 R +/S /Span +>> +endobj +807 0 obj +<< +/K [1290 1291] +/P 1113 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +808 0 obj +<< +/C /A4 +/K 1292 +/P 1114 0 R +/Pg 29 0 R +/S /Span +>> +endobj +809 0 obj +<< +/C /A4 +/K 1293 +/P 1114 0 R +/Pg 29 0 R +/S /Span +>> +endobj +810 0 obj +<< +/K [1294 1295] +/P 1115 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +811 0 obj +<< +/C /Pa11 +/K [1296 1297] +/P 1116 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_sch +>> +endobj +812 0 obj +<< +/C /Pa18 +/K [1298 1299] +/P 1117 0 R +/Pg 29 0 R +/S /Tab._Lauftext_light_ +>> +endobj +813 0 obj +<< +/C /A4 +/K 1300 +/P 1118 0 R +/Pg 29 0 R +/S /Span +>> +endobj +814 0 obj +<< +/C /A4 +/K 1301 +/P 1118 0 R +/Pg 29 0 R +/S /Span +>> +endobj +815 0 obj +<< +/K [1302 1303 816 0 R 1305 1306] +/P 1119 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +816 0 obj +<< +/ActualText +/K 1304 +/P 815 0 R +/Pg 29 0 R +/S /Span +>> +endobj +817 0 obj +<< +/C /Pa11 +/K 1307 +/P 1120 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_sch +>> +endobj +818 0 obj +<< +/C /Pa18 +/K [1308 819 0 R 1310] +/P 1121 0 R +/Pg 29 0 R +/S /Tab._Lauftext_light_ +>> +endobj +819 0 obj +<< +/ActualText +/K 1309 +/P 818 0 R +/Pg 29 0 R +/S /Span +>> +endobj +820 0 obj +<< +/C /A4 +/K 1311 +/P 1122 0 R +/Pg 29 0 R +/S /Span +>> +endobj +821 0 obj +<< +/C /A4 +/K 1312 +/P 1122 0 R +/Pg 29 0 R +/S /Span +>> +endobj +822 0 obj +<< +/K 1313 +/P 1123 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +823 0 obj +<< +/C /A4 +/K 1314 +/P 1124 0 R +/Pg 29 0 R +/S /Span +>> +endobj +824 0 obj +<< +/C /A4 +/K 1315 +/P 1124 0 R +/Pg 29 0 R +/S /Span +>> +endobj +825 0 obj +<< +/K [1316 1317] +/P 1125 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +826 0 obj +<< +/C /Pa11 +/K [1318 827 0 R 1320] +/P 1126 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_sch +>> +endobj +827 0 obj +<< +/ActualText +/K 1319 +/P 826 0 R +/Pg 29 0 R +/S /Span +>> +endobj +828 0 obj +<< +/C /Pa18 +/K [1321 1322] +/P 1127 0 R +/Pg 29 0 R +/S /Tab._Lauftext_light_ +>> +endobj +829 0 obj +<< +/C /A4 +/K 1323 +/P 1128 0 R +/Pg 29 0 R +/S /Span +>> +endobj +830 0 obj +<< +/C /A4 +/K 1324 +/P 1128 0 R +/Pg 29 0 R +/S /Span +>> +endobj +831 0 obj +<< +/K 1325 +/P 1129 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +832 0 obj +<< +/C /A4 +/K 1326 +/P 1130 0 R +/Pg 29 0 R +/S /Span +>> +endobj +833 0 obj +<< +/C /A4 +/K 1327 +/P 1130 0 R +/Pg 29 0 R +/S /Span +>> +endobj +834 0 obj +<< +/K 1328 +/P 1131 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +835 0 obj +<< +/Filter /FlateDecode +/Length 10073 +/Length1 16081 +>> +stream +H‰œVkTT×þö}ÌÀ€À +8Hî0 +3 oEÆ;0‚ä%2ˆÊðÅÆW|W411­µÖ(1ÆØj’«µ‰µjƒ661FRM“´1m’vµµYËØ<ÚZEºgÔ®Ö®üéÝsç¼îÞgç|ß=`ƒˆÒö´°”ÜTî¹ÆwUC‡§kó‘J䌆eK”uM«÷ºfî[ÕÜ5¿C0žóúO¹ýÁüöÍC_½¸ð?Ä]iiò4ÖÿaêEÀ¾ãeµp‡ÿsz·Ïq{tKÇ’žsŸ_Áí?r̽í dÞä¹²Ös»¯ÃÓÓ%ܦP /–ŸWz:š*Úöpny*ÏWÜÕÙ½dh¿Ì¹LÜæïZÜÔ%½zâ·p;$EÑ“ý@{h0xú^)½‚f£ +‚Œ—a‹ß½Šß¿»PâÈWO3žP¡@‘2Æ7"€|e8¯×h$ß:ÜïäRð=óߊ’¬Óûù‡‡CLjˆŒiŠóˆbŽµŒŽ‹O361ÉjK¶§¤¦¥gdfeËÉ?!ob¾#CÍ,(tM.*ž2uÚô’¥eå•3«fU»kf×ÎIÏú|v¶ÞÏ` +Sê®®©û‡§áŸm :ÚÞÌŸ;AýÂU˜lìž3·9qÒ¬E-_çχÿ4ü¸åðe×ZŒú‚ÁÚNHÀí)‡îêÌIÖ¨±‘N¤ýó”r¦É—¢Œè¡Q#9ù˜¸xŒ.™1A¶Å`²7Š$ñJ  +‡‰uxC$’‘ÆR*U‡Z©‡vÒ³¤ „k¢(ú‹Q¹¥¤(©J®rÄu3ehÈ»—xÏ@!4†}Ë©ŽZ|¾}ô²Ï>_GLŸƾ9÷}u>ßÿ÷ÊÅžñ½AéÛez‡®øì]zÏg×|ö±°S¸Ävùž‰±Ì 2tÐ3{üa@YSAFŒE3e8F ‘ˆâ•1!£ƒG§±°`4☯ ƒ±HD¬°!v¤ iHG2‘…lŒCç9‡‰ÈgŽN‚ +' +PoBŠ1S1 ÓQ‚(EÊQJÌDf¡nÔ`6j1s1uð  hDa1ºùM°ë±± ›±ßÂVôb¶óŽ<¼§Oa'žÆ·ñìÂw±ßÃ|{ñ öa?úð,à9Äó8„p?ÀqGñ"^ÂËÐp Çñ#œÀñ +^ÅIü§ðSœÆœÅÏðúqçñs¼Ž øÞÀ›¸ˆ·p oã2ð~‰+¸Šwñ+¼‡÷ñ~ßàC~c}„ßâwøŸàS|¯ð9nP,bDX‹¬&+%0¶fæýM|‰/°+i ­f{ŒÖÒ&ZOëh#Éq—fSÕÒ,šCÕ4—Ü4j¨Œ¦1§3›K¨’fÐL*¥`2Ð0ò£ ò§&fj33}>Õ3c˜ñd¦h²P EQ8EP(uRuÑZDí´˜:¨›R£‰”Cù”KO“hÙ˜ûIO“I¥"rR1Ð*¤©ä¢ ²S6¥Q&¥P¥bezm –¢‰ËeXŽù\¶¢ =÷ÇZ˜Ÿ[;÷/ÄÜÀ*ì¡^Z‡?Ñ +ZBÛh=þLÒRÚNpVÒ2zœWg#­¢å>Ûˆ¿ðš=°žÿ°MøÌ×ã}žoÖ‚ŽUÂL-GûàéÁþ¡÷ùmxHì—7ÈGåù* Pgð{Þ¿·y¯O2K^bö`Fíe®í`îmcnaNn`~®Åj¬dÌËk7ó¶“w·Ñ53ë™Ós™ß5Ìõ*æ}9k „õ0…µáb¨¬š)Ç©ù×ÿÇ9ÿ–¯Ë‘c³ö3l>™Š7ÉÞBMtzZë +êT›µPÑD‹zœÙ¹ÌiqöZx@“,j¤àÅÊÑ" [5‡Gñå­M2qÝ[Õ\&­ÈíÖd‹Ê!È¢¶j‚EÕ#mV¥°¥Àf=ÅG‚<ôšÊI7Êð–ŠrL{U‹FÕŠ樬Öunï|6+9NN76k²ÍúºÍš¯…'Ú x¿7d6V°±S™ ƒN*ã#H/HgD:£'èÿ`1)I)f£Ù˜À7ñqe¾£Ê¸ ³tö¶Ê+`¾{žÎâ«4Ì ÃÒC¦@Ÿ_rrJ\DL ¡ÙYt Z©]謌~Á˜g”ûpßÌøv%Øû}c¡“¬ƒiœP„#$Fâ™IZ$ H?2'd›#uð3C¶`2ÐÉ€­¯çÖ¡¿ÑrVE"F]¨I›ýEvvß5"6>3#+=ɬ»kw¹ì)ÅE†"{rÑäÑ]õAMÞwüùýž—äIÒ$<äI@Þy‘„„$4RD_¦S €ET@DP2DÄ‚¢S§Ô¢eêØtÚÕÝÙÛt닶¶=¯õ\m{½³çn®»^»Ýy(û> ¶ûgù.áÈ}?ßÏÛ÷ñxʤk+ôôù&Ý ­›LØ"IšbFEÈõűeŒ* z4ž„e¤Ì|!íÄqZÎâ3c^‡ÒÊ`^Ëåø‚\ÀèÁÝÛ7‘©íxCVáG¿Ù´ÕÑsr}—#sK: éÛ }©öÌÃá÷ÄcOéÆsâwWÄ?ˆ'Ï"Ù…Oÿàé~:EVуÑI“ˆx V²<©Ò)É‘h”J„Ž‘æÈ,Ì„íÆ»ì‚!NgЧ ÞmV5’„  Äùmt¿)ßN2¥T¬mZUœ—7»ymGEJ¢^|Dm¨ª]­x\¼Ä`¤˜0Ž¾Â eÔÿ”üªh“´U Lñl$‹x>âƒr²°qˆMŠW!y´"¶, »ÉJÇ–OV$ç°YÈ¡JK#4¼²¨¥€_‹Ñ [€ie0$òÙƒÃë 3C[Pí{/¬)lÛ’l +)ÔÊm_¬{uUvnó*q`#2ýò8E­=ÚÜÜœûn£u^{´¦ ¥"sÎÊúâ—«†ò[ú.ÞÛ*vɦÀl.4ˆ”îìàõ" ð%‘0 ¢wÙx™’€Ù,„¬¤ +ËíÐò³]):†C ùÉHÊ—97¨44‹ŽÈ2(çDedÇG ^'£ât e³:]N—`FÀ<ÀDSöÃ[§ôNVêù¨ólíW(4!~7ä?zîyÁ=y¨ït¨ûEw©_m4gi¶Ž¾Ò\q‚³“OÄþŠÁú_Ÿv‹ßwßLåûÇùCûoì«Û5WoPµaê\{óžj_'è•vÞXàò+„B gF9‘Â$#âJt¬²› XÇò”Ê‘¤Sbš£áÒ°!ÈðQ9a¢‘kFHQ{!ÁÀ‘Oà°%3’…fU€Fø?žþ€K5Ë#'Œ¾ì•‹®Ë\{K·çx(±uzÈK‚¢~úñ>3Ì-)Ô“ / +ØyéŠf£d|s:̘€™óÀL€(‹Y¹8Ò¬gÝiØ“‰ý(þìR™å„9•TÐr Ò窢ä¸Ö8Dsþ¯ÇM’IfbrËFä ;j<ÃŒAâ"*Á7’?g¨ >Y*¢¸S=[þ¸vÅä'íÞ^‡­È[Ÿ4\Ò1¶°bxÅ‚ÖH:ÉRŠü[55·Â +ŠRˆ_SwÄ%M/]ìîxÿØ’DCÛxÒ„{Võ©Ö¶ñêü"•ùö§r)“‘Š`bRP!eK1 •œd/y#iZ”ΧPŒ«$.,ÀÊ°³Jt01ÑZ4d§µ Ž:ÈKBÒXÝ8àçÁÀ«IYùÌ@RèÈ‚>&6'úvÃkk¼—Qñ‡;o /ÓdÎWí[º«Ö;gÛÙÊyCIÚž»ž»5½ê赶{p£A›Ö¾ùõÏ­yY ¹«T5_î-Ãÿ^T”µâÕ}XÒé®KÌv{J³ +ž®Å÷bÉ%uX¶üLšO@QÉ›eNÖËiŸõ͆*¹}¶&ºos2vØcÊ4‚–£qÊM1zô«€QËŒYâ¡ÿòb‹—Ô“’Å~Ù¬nÐQPˆþ Æ»Ô(º{I\NÒðÌþðæÎ4Îmª<4¶çóí®´žìÙÔµþÚëãëV ,Ü1÷å[믄ÖÍëØÝN÷ïj,í®Ê):¶wÛ§Ý5ÛÞõ–¬î:÷â“»åá‰ÎÁñê¡y }(]hŸ(ßéiŸ¿EÒS: ¤Fxæ›±[Jâž ¥%*A8ÁÊЈÞLAuâƒv bpZ”’Á( Ù3,`ꋈ¡°E!ýµtǽӵÔyUææ³5]·wÝ|p\¼”=Käåƒ;¤Û´æîßÙ»)ÁÜúVÇοm?}|[<*þ·/Ù¿àÈ7ä_F>–ø<¢ŽÓýpûá9sa¤T™_V«X¹žÇŹ9ˆ1#§g†ìP$$e·`3Ë+UjJgû‚Ö£¸Å!Óð¾t¤bÈâg®uÅù]nxŒ ÄÌ,5;PÅϸ?fwèÁø8ý@Æéê›æ(ï8j +¾³ÿÔ '—^x>ð÷×r{ι¬ëE-gjê.ÿ¢°¼|ÎÈÕ}õ-×É=fÍsÑ8£pïášÁj5EŸœX8v`™ô‰GÇáÑéní’­íE¸@TS»‡–¯Ie=½C×Òç‰4Âqñ6!–C¦Ê4 9òPlH“#0×—ÊÂÝ’1“h™T2v§”BÐ ¤– ¸rA»¨!ÌXBO×æ-5^?¼·©ws'òLö>©qEê¯Ü¹ÿ³Ã ¿{rhÝ?ÊÎ7åä7]C g'‘¡aySŽåâ®W(ÙöÒäýÞƒS“ËK’º²žN1xs‚‹ +#`ÁÁ°h3!;ÊȳEkß–‚M[äMcût^‚¶Iiº2ïÿíï£$~0#IðÇ[%ÊQPˆ†žaæ'»o”Tç䡸?·l|{[Ý­}ÁNk8®æ\/š¨¯\ÿÊ +ûÏщÿåjféØáÓâÝ;~—%–(K"uýqXk°ûÏ}½ïÍo·{£ŒLQ#€r±,2ßjÔ“¦Ôp6ö ˜ÕÊ°146H)çDY(”êÓ1h~%B%Q­V”á–°áYéNŽæ¨R†÷™‘ŠF‹cu +§‚„Ý)AÇ9RhÀ\@œËi±Ê$¼B°ý—ðjmê¼â÷|÷a_çÆïglDZÛñ3vìÄIŒc'Nȃ,ËÂ;ƒ@¡F(.)Ú²¥¤< +,iXi€–1š®ÀJ5ÖÁiTTZ@([7mšÔi•:mÚ?“ÚMƒ¸;×vx-Ý,D Éßù½ÎïDs†38=9:Åo—Å%ñÛ¢†(sÿÒ¨ZÖtñv5O·5R+ÚÔ[³ŸllZ»ïBy1]”“d²ˆ.v¼{.Ý´6¡×e­ +Õ¼7Û×m8úø²¨y%6^¹æ úÈ°Õ"BEb\Û©#a‰_9óGN/ø6v¹\Û:ŸñKMÜÌ5eIñsË;Ï-ÉØÛࣕ* ×è5S‰t¥Øñ‘ŒûzÀSÄ ¯³ Á($ëãNF-AþÙj ósð¤ÄâŠ[h­â쳕u²ªòfί .‰ÀœØûÒëkZTšYªG‡ZS‡ò ýsNŒÈñì²<þ¡-Öအÿ.7O£›«Ñ¸D‹dRŽe¤Þ_Þ„=Ihs«†cù²"$’¼¤;4á ¿·b\èdœWÍ€žÐ©Äâ’wû#^gÐëjF´I ó¾Íóã©žESÒ„R²âú;™3ÙéOw~û>?}{Ä›Z¸tã…«ÙÏ÷¼ +þ›Oýˆ/úàVy­H2LTÇBÙ7ÌaëÊËPråÐóó@Å©±'3M6×dö/od¯XÌ~Éò‹í2mÎSjJR«„ä¹Ô²à̯$ó«™'ÓI°§ü7Q¯Ü{Bü7sàî·ç¦¢ðÿ‚ÞÞÆ÷ø¨Út@ X9ðÊãõj"çu.Á)ØçAí<÷ƒ(ˆ-ßnsîÊ HÂ<`®9žŠšô*ͦF¥šÏþcdûáU‹¦–òtôáwß™VzäO¯ûA5—÷G¥ÝÜG_øñ…ןÂ××Píé +ªC¼ zR²a¨À-!¯ +7÷,Ð~KW¿·¼Šb÷çHí½`ý?ÞÁu˜ëˆ8c%Ìv”GÍ¢ÓeVôNÙ»’o tïh_0ú³µÉmª­gôkgOlbw¦eåk)›3CìÛ­üá`£Ð¡ëÞ·dòåü”l/NÙBµ¤&0╲ã€ÀD+ýE<‹£Y…dÂÎ2iàýàš(Ù[žÖqõbš±UyowÌ9a~™ü2Á•ÏI@o˜={±a‚Ø2«â³ ÿÕñnÏ¢¶#¡înßd÷§—þzn;{ËÃe6›-T¦ +é²£º„YlØòJïØÒ9¶æ÷ †'MÎïž¼iŸ9Y)IæK¨©Þ ÿ¶5ÚLRíñþ »bˆ‰ ™1©¤¢i¯¬ÀÄA†y_qó:• jևξ2ZÇB¤p¡d]8°ÝÁaÆ À2µãØQÌ„ÁiçtDÔÒì{'-MsÒÈ™3ðFΞ‰(RRÚÌ^“ªÕÍk_{ñ(^õôší ­ž“‹Ž/£ñsøâIwéÂíwï,½?piþvùŒ~Ÿþ% Tgº)Š[rœ—VÈ©LF¸yž£””ð: + Ê—àEr’£г‚ŒŒG½ØD“³É‡ôÆEI¢ÝàÁ×çî¶Â@:ã¯8±lƒJl âEš @¸ñá®ïeê´œµ¤¦`ûó“.Øíˆ9Ng¬¼(klíß¿ù H_øN¬5Øæó/kr¯kרªD:/%išßý“W²/Ö–Yh¦@ݹ·UÏö¿Ð˜ýÈM!í@]l7.¡È—úò3FÉÞ¢TÞ©É9©ôð*ή“–x"º\#rÈõøƒÅËaL¶ÊôÄ¡ÓÒ”¹˜#±‚yóÒŽÆÅò?, rÄÓ)PÅÜ~¨®‰kT¹ã‚äŒËqeú+ö7¼¹ÔߺX\?±áv©ֶí£õùö†-=áƒìhg¯ÎÔoòE6_̼<ì·É;:ŠµîÒ¿ÓWüÞºÒÐÝ©lkYWô±£«Æ>l^)¦S5^]È°‡ +¦ÝZ œ’wÙ qÊ@ªeÄ(6"Æ¥%êïY°šz ÕP†äÁjÜ?’jDF GGê²ö•®ºõË«æm~¡«jÀ¯ó˧ÖoÿݳëÛ;×lZºg³\A†‡õ>Ki×îÕ[Ïn‹9L¶FmÕSü*Vç ·Åw‹:lCN"ªžZN; ã)V»ð•&PÈ:°ä4hÔ%¯“Êa^ FŽxÁ$%<ر° ÷'r´¸añ!ú¸0p½F%æÉ} bÀЈýÍ-™PÓW[ïAíEËeÖ÷ßúí¦žŸvv&ZWí­=6Þ~ø[É­‘2 ý, æPÝÑôZKÄÉ}._Udú»7|«<Ž¬¤Ú¶8ûî/»¸m~³8…“‹üL ?2*HÍO'}@±VP ª¹ÇWB†UgcØ\ÑL$4oµ(éCr °> ÙO»Ñ|•óù€wª¸îbnÌLQœÕ®-¤*²HfÏÃ\¨pƒG6z"²ºáÌïÙ©ëÙßûö­¨\øõ ÙË?9žšø¸ßÑj¯¢‡Ï¸¾×¿ÙüÑ[õëòñþ:SÀ¬kQăC¿>°zb³£ÞX‹z«Änq‰ÆL̤Œ ]Cnd9‹a➃Ea™L"%ŒÙ@4¼ND­Ê-ÄÅŽR"Êœ‘?D¼„0Z]çÖ~gIè8rɘìH§ ȳ²â꾪uétźª¾Avà€Ú]:èz¼ÒÇ^>V\Ù9tNÚ?s¥@V.ò1K¬½$# ¦—džXâÜã÷ã¥Û4s™éE†j°/¢6¤ûÜ SÛ¡³…ð‰LDFIc®¦€«H¦IœÚÖ‰õ°e¾YBIXÆÁw X ùxUß®dc@&è8þ2¸䈢\ÅÙa¢!Üdj—]2«]dÑ™[€"]ž\)Æý Ïo}‘¾¸Å¿ªC¨â\Úè .äÖ"W1=Û $¢‹õŒçŠ¡=\»6 °X—g uøéÎ÷‡w|0P÷ÎÛ1ß–ÿð]­AQgø|ß9{9gØå°7–e/gwË{a/,ìÂQ."l¹ˆ‰Š¢I ŠÆ$xI hµ)C‚IÇXhêØþhiÛ錙ŽµiëtÚ:ÓéNÚ™¤É˜Œceí{βÈEà Îþy¿÷¹¼ÏÓ5+\Vó!N™Œ´o‰o[Õ·ïÖèåÁñ ‡’ÖŽªK¤ô“ábŸ·„6¥î·ÛðúȦÕã•“íCÝJ26Xõò Ñ™ÔRG»M$ĪB®"ñÞ ª"ä·ÈŒ¢ÆËJT¤†85­µid~TŒbr¬D u‹×,é¡•KÎk3¡%T‘ÔíÈ^~$ý4m±ÔŒcMu0ªH§c­ÞÍlU#kâûÖ’þ­îZ ‘? 4úŒr¥u>×yþ`ôß¡žïµ©T‘~ÿˆK"ï@DÅ\®8•l?µáülîV•š¡ä>ùAhäãýýsÎ{(u(i^Š—™*I ±í?}놓S!ìc\Ê®p{…hò‚ X9 É:P¾B§e4 E;)Èìt¾sÈ{:O ƒ>@V‘ÉåpREbB’"¬”û QƒüI¢5¡´ØÓg4Bºîðͺ±£ï²Ðûý“[x£Š¦¬º§î%àgχÇ7ÕLí î]—šAÿ=nRÏ}tú7U£\}¾ÿ³ú +æŸ +2•žŠ¯c}gÃٱݿÞ_јqÚ¼´Œˆ ~é²°BN’£V’ Ç…í´ŽeT ‹ y˜QqcòK…rÞÈ–),hPpb¿xÒï̆\jÔÙWZcÍõ– 6ìfTM;ûª[ôc Ý>âõ¾éŸèO½·Øs2n€k‡øˆ:!æ4kTHf•Áé¶Öë²R$¼q©´Óæ|#ù.¯D²R„|ÎÎÊä8©~¶\Ì;’œø2’— ‡‚“Ø?Òå +¨‰t&Îmž,÷YVµ Y;’w?ØJNUžøtû¾_^:üû}g¦²iäêìîÞÞ\«VjØ•m{÷Û§Cͳ¾æä…º&õ…çwζ*ŽˆX”>úOQ÷ 3BzD°4‚ +§&1éË"rbÝ&©4)õY8—FjßXIáið°ˆô&%S.¢\L¯v©ñAþ¹…?=ûžr¤Þ¨GÆÜÔƒ@M¸Þ¼Ù¸û&™­ô6žêYk/5|ðr‹ztî_ ¼c—é¯âT.hH¤ºJ¨Ð"9XqQQT¢L€ˆ0Ƈ´­@å9¸E Gh 2Ņ̃9“l‘V:t$,Ž¦öøjóæåÿ˜U”Œ¹ÓѤsóú&§ò»=“[Æ#êùÇ &…±æyR-O{×n«|fg'Ú4ÁæÎwD›ž  ÖyzI7è+ª¼ ÙÈ'Ø<ãd쌖ÉÖËh»Õb4èØ\eO+“Òe~DÂ8T†|(œ.p:À)ÏÀŠ2‡•“ï~¥ f=›úaV¾±¡m¬ÈóBÛ–òÜ{ƒÖ.>Ð) ÚlCP?ÃøŸs_øN[ɘCT SŽQd‘Ù7wí-é‡É…Í0¹çÑò>`ã!‚‚›ËQÓXFë\ŒÉƒ$âq;9‡­Ðb2’„zP¦#eÈ›ß[Væ§Q¹ÂÍ“ +ñ)a` +"á=8 +?‚ ÃãVä+,./ˆhÌúµ6­óo3ÖNåUÎ^€_k*-^æ?ɳ©‹– ‹•©­^…´{ +gEPóMï uÔŠ¶¡gô’Šxúý_¢gc˜Ü$u›ËDŒ¨J +Íɘ2ÆËY t4& +“x¸Bs¾)G!#‰œÞl/¬¿jñú‹ý.vé’áHª-Qðéòj U…'W‚£Çƒ÷Ô]aaØf¨‹¹Z*Sƒ®–½Bås^ݱú¸¶¿ëƒœ³uŒ÷¼ÔÚZÏN”^Å]Ö\¿raýÏ}X»agÂúv®…Ú¸}Ý¡¡_ac¤ä1<åÎ’ÔÅñtš$¯“×£¸P®@&L{츪©©ÎÍè”,ÂuÙ’Aåfc†ÖÙ -F9"à +e )ìA`U9\·3}Aâ(µ;à”r‘P4((y~îÊ{uVáJÈL“©Ï×MF,;"êƒq”l¦îîi•›jyàäűç®FòŇ̳žó_¥ã™lB×6w±Ž7à3Ž¢HÿGïßrâ_¤’Xþ÷¿ÿ³_F¡mVQÿçûn¾$5mc­íº-­±­£Æ8c)Zk©)RKWÊ6âíYY;´ÛúP&ìaÌ©T "CF±„R¤ÂÈÃÃ! +2–"}1*ˆ0|òaØ´ñî÷¥¦iØ&{ð%_Ï9÷Þsï¹çžïûzgÖ.{þª¿ŸŽ‡{qmðíZY¿è ëÖ‚Ÿë+« É:‘2î`T^Òme0hu"îJ㔑Ɖ™AÄÔ2¢ÝLyŽöÇw‘)"MD‘$FÈ|¤ãÏŠ/}NÈ<ä°9¸ûoD¹V“ZA‡{+Šõˆš ¾ƒÌ"b,tîo&ºÏó1BV +ÍVí%Ž¡tÇ©·#ª~G+çkpópïGÔ&Æ=ÃuS”u ²÷4zt¬c¹[Œ§ƒó¿b.¡ƒí»CLÍÂoìEØu37O;,º'À}°]bÿ Ô}Ú6ß@·qžq,¢Ußšã˜Úè× ì¼Mªe£ò€¬¯c:h×ó "I0î›”½‚ôùv!+{3R8ëÉêøÙ^ëÚ¿>GÙA߃‚øj–]~™ËkïOy–0¤c£¿õ%bF?ÂäEýŠÝrþ´O‘ç¼*$NJÉC3Ϩž2J{Ä9»„Ó&œÓu1µF`о ûw[”¡ýÛ{ÌvúÒß’úbrþrö¥ðLçnK=èZ(@×B¬—`¾Ša\i+ÍõX…è}/ñì&xÆvnÁ + [êAj¡æ®Mògôç|-#¹š`­H="õpƒ¾”ÆÞÜ +óô…YKý³`þȹFúÙÿ¶>cÉ?kSö+s[C¬«E»Öu¼úÙÓRâÔù’q}º®¶î¯D΋÷º1O1%öZ*ÿvž6òõ§<;Åç'lɳ¯btÞŠpžíM”Œù*æ¾×½Ïüý_yÖ¢@ö/Ê×)/RŽ‘ëÔ¯Qž¦\Ö“vûzíK¤—ß?(G)3”ìËÎSŸ·õÕeŽOSŸ¤ì£ý#%lÄ_Ëë¶\½í0ãÈŒ-³WŠÈØrµ…¹Éÿú€ÈüÎù>盩‘ü˜—ù†}—_È?˜-ä'Àõ½‡îyª¨#YÀÿPùlSÓòßy„Ôò•Y;<šêNõ¼Hn»ÀWö'ÀöXWOÁ'ÉÐø-_µô{lœ¯|ÆâžÿhµiáÜ­Uäç2eÊ”)s\rƒÂIxœë“Ÿ7/~\OàSþó.+?’›î\¶n¢zCWÔ«Ý¢Öèè2g„#]ʧí¼î∼n  +¯:ºÉö×]QŸtt‹úgŽ.s~3ïØ·'<8|tøø‘ñcw71€8zùwö ŒA ã(9Ž#Ç1 áM¼…ºí{Œ}^ÓÎ^î<žÝrïåï¥5/?Ôµí™Ê:Õ• T>Tšï?÷žJ&‡*£˜Î˜/ž †Ãÿ0™LËN +endstream +endobj +836 0 obj +<< +/Filter /FlateDecode +/Length 10415 +/Length1 14440 +>> +stream +H‰ÄV{TÓGþæ÷È0䘯H  (À7 +¢RKx «<«XmÑZK‹µ¶ÚZßÒj­U«?ÐZµjEk·Z­Õî궻{öôìvÏñݳ§§gOÕnØ›ÔÓºkÝw’ÉÌÜ™¹÷»w¾Ì0£° +~B&·þú…>DÒZç÷4nj÷õt±ám­£õ¦_{ó•Š›Wh¼’ìíïêì^2Ò+Ðú1‰ù®ÅÍ]¨ë¹Jã’€~Òñ{î4DZ»-ü©?¶B2Z8-Àq +üb‚ɺ@íO%ÿÊØ-’p`Á=E‹z,†ª ÷…ÔrÁ5ÿYh’D™\¡ ¥ +Wk´:}D¤!*:Æ?ÚdN°$&Y“SRÓÒmöŒÌ,‡3;Ç•›7flþ¸ñ…Eîb·¤´lÂÄI“§LV>}FEå̪Y³çT×Ôέ{lÞãõ¾†í;v ì÷è‰÷O~pêôÙsŸÿèÂÅ?¹|éÓ«W®~ã‹ù}ËŸ|ë¯]Õ½®;ày`å‹At«_Á™k›{Ö  xfcË­×·Z¸tÑâήöŽÏpsV,xh}©±¹më[Þܽ÷­}{Ä;ƒCm~Žê†€û*5Å…G/F˜õ°ÂtS¾9!!zd$ÍV”ªMºŸ¤=n°—Ùav˜Ø!v7ð!¢ r( DBFœU!œ,j …ŽvE D!10"qˆÇh²jF,Ä…$X‘Œ¤" é°ÁŽ d" 8‘¸‹<ŒÁXäcÆ£…(‚ÅðÀ‹”¢ 0“0S0ÓPŽé˜ +Tb&ª0 ³1Õ¨A-æ¢aG=|hÀ-ô`9žÄ +¬ÄSxš"´ +«ñ ÖàY¬¥0öщ¼€~¬Ã‹X êËx± ¯â5lÆëØ‚­Ø†íØØ…ÝÀx{°oaÞÆ~¼ƒ8ˆCx‡q1„£8†÷pïãNâ>ÀiœÁY|ˆsÆy\ÀG¸ˆñk|‚K¸ŒOqWñ®ás\Ç |ßà·¸‰…XúÈɯ°ˈ>‹°ø¾¤h¤¶]h¦v>ZZÝò Ú’,ÀèÆKÔû{.#¶©‰!Ìò§ú#¦s_'\¾ âh.•Y˜Š…à.¾Æñ%í¹Nú.’Ódù¡ÚOHý:Í tÂ}tê½Ä„eäa'E¯…ø183›xTNÜ*#[ÄB14•Xk–keÃâ.1Y4¾$a¯°IØ ¬Bœ à/ðÇù!~¿–_ÍWó^Ňðç熹>n ×Ëusµ\*§f×ØEv–íc»X2Ó03ÝW~BþO|‹Ûøæ®>àƒD>üìÁÏøD^N˜]0»##ô:­F®¢TÈe¢Às ¶!â»×ÔßÐoñ´Ì¶Û†(›x«z$¤WÆÖ›ñÁF +I«‘˜Wý_"»-¾—f·ýøÃ$X<ƒŒOò˜ÊL­¾&‰O¢Ö$ ^‹ÏÔ4èv÷WU›© Â[3£:Ð’Le­’<©Ô'¡¢Úl”D¯©ffµ%Órǘi¹M¶Ó­Ý×ôÈ•b’§èöC›‹îE­a¬Ý6LnS.ðš ûK%Þëk«/©÷Øm¥&‰·x†'z—z-Þ~ MH‚Å%…|%mQ¥m’Ûg +â–ŠÔt¥2£4±¦F-RÁ,ž6‰³x¤°´(»ÍTÚZb·¢ËQ9ç!CÖdäø~Eb>OÌ]U-¹ëköì6šòj¼×»-Ãn»h·Iú4;¸@†‰”§;ØâŽåŠea ÅtË9a3Os›å 2NΧ;žeÖ˜5ÉTÝÜæ<"%q³pöž'Íþab"G{uîP9kSpYhpcFF–Nž\Èòró Ü@clé}û³Š^ÿ7‰úþ².4-ÎÿC@CßÈwl=q7 Qn ¯S +&tP&™ê>€¼œÜl'ñQfI°Zû*®òr×èBëŠÌ*êWZ‹(O׎üƒoŽQæ làNR²Èäÿ뙆½çÛ¸RÑ¿U›ò¶¤®Ñf{ÇÑðÜ÷„ª€ÿ.zfìU”éÜÆèH*T`r”áLÃëÔ)ô"‹  -JËÊvÅ3‚äÒä$[d].O£`Œè”Õ)ù©Šˆf1NþÕΊΰ(±’“y«¹»vaW,,ªrÜ»°NÆ•ÿøÄáWS´(Cº)z•RKWF²°Ø(Š™“q,=6W©¡¸å0¦ŒH¡'’ÖÉ–ÆËÕ"Ë ¡’åÈvò®œä fI«x¹…•íŒg +\`¬br'…b›—-‹H´$åùG÷t¥FVfeõ*YV¶á½)›æ‡ “# +ǧ¥˜ºêãR¢¢Õ¢#ηoŒÿo yÎ\ª™“”=*ÍY»ýÕŽ‚Ž)zGwwÂÔ‚«¹Û¥Ðr–Dÿi›"ð4D9ñ`¢ Q¦Ïp[Á”Ùî3]µ±MÜwø~wÿ;ßÙgÇçøü’؉ßíÄ8ñ»ófÇIòž@b @ [Hx ,ÐŒ·-íhA7PkW¤m¨BS·Q>TýÔCZ¥Ñ­«4µ|­4ºIc•è—šýîÐ$ðÝYòýžçù=ÏóõÔì•« [ݨm´à,'€ãí–…ž +°¨1”ABy{•ñT2 à\Át¦rl¢p/…sæ@‘ ŽÉiêhÙlÀGƒ¼IÑŒln µíµû# Ý¥h£(K‹õ.›1u2¾£Ôá37‡?ì9"«“Ë™âë/]pÇÞš\³‰Ñ¦ÎáÖ}Ž½)9Ò—Ò>«×Ht¥¡¿åü‘™ÌŽ¶–-9ãàR®ÿæ¹!¥™¦”V“6aßÊ÷ú1+$ÁåÔqÄ/kí\#„!¤¡…tÈeT +%È 0¦°³ÆjbeŒ¨WbŽ¹’NÒ*³MMÈ­;ÏA 4PSY`IŽgÌœŒká x•/*R1QªÅuÒ¸Á»w£­÷7 +úÜ…[cŒâ\ŠÚ}6Âëæu5£ï=ÚiÞù«~h)êšZ—s­xЮØ$sù»òÓOÙªœAhÔ>oÊÆ]¤Hè‡0|£üÙ; +¯ÓϾF^o£b‡ò™ch"ñB} öÛ§3$qfˆ€«Yb9 +øXIgú°à÷Ô3/'ôÀÚeŠ‰Ô˜™Ëa+ËÑmëëħS™ÿã]‘3.–ByFѯ}hÅ{¼œ¬J)Ç_MK1íÀH´n蘉ïYêŠÍnpó¤!~λXBï…Ãw#üñS7¦o|{zÅù§Q¾t¤–ß5Üfî;Üáññ Ÿ2$CÞhì«&ä£ùt×kskÿXEnˆ*>ÜJJ{Í'í`v 2XÁœ6‰_ A—\ ˜–&uÐ BÀÌ3¦ZˆÁ‘ª”ÄBVU5Š](TªòÅAÀbÕ(Âæe/_¬+­QæC‘§’¸°i˜äûGÚGƒlÃhÇØ+în9-<àu{Ž “Cµ­6ÓÈ‘¾X¡u!ÖÚíªöýúKÈÌ]/n³çW†Ö¶éÌA[›Ù9_þ@³9D,1oÿÉ¡—z—%£Ó9}e(¸ýô£»sÈí +*ù<¹‰í>’÷Ú$Ú6Y#q@\†:E±u=‡y4e—€o%P¦ÑD0m­u{”÷÷"aqeZ_Bæh$Nù€OÿþØ©hy¦Ï ¢«È֥ŭÀå‡Ï8‘pºÝ;ÀóÉ7ËnKÇxõߥi²óJùé¿Ë_\$˜Ž[…EtIž-Ú©®|K4à4PlÊ'¤’‘â}‹.'o”Öçtq™¥àt ÜW Å1ÙJƒ&H%ïP´n¨#ån:cÀ{Ê룹¨nPM¨BššK¥ƒlÛquhjka®íØ_V¦ßÞyô^.›Ø‘5ÚºìRGqìòüâpïì`‰Œ¾¼k÷/·÷êÞøfkýà‘ÁÅûû{_Û=sUöŸ*v®ôIöC=íag,è¿7ry`ÛloûX³â(ï<ûî2}Jcÿ«©6鵯51êŠÞoÔ 5ë¡ìWâX}wÌfæy<ã%ÜKº³þ‘xrìlzd<Ñ42t*=Ìyãcô[cÉø–-ñÄ8þ_3~ù +ÑÅS[¾!³SHz®ö»%F’㱨Ûa·Ye“¶ àß'Õ¿ï £eCêh+J?ŠiR˜ŒÉfpk8Ëõ{9!5™7C_Z…ªªŸKòXÑøèoþ<»)'N—çzÝÎd:»z­7–¬õW&°ðLþŽ|õý ï«ãÅà°¯ÎÀ)ývß“û«…£•kÎìôÞþ;P`úþ$ÜSž‰È ù\UÌFjs¾Ó¦£{â2ƪ’íè”$iTT]%Šb*D磂 öû2Àºá@mžp }(ª9fSE:¹§ÒX„0ú±‹¤kJ«‹U‘“²cR7uãWÓ·âhŠ«jBdÞ„ˆ!=î¿îׄ´Á’ÝšÇ&DiÇÁ‰·?¸V[j¸Ýà: Mú¶ª®ô¥‰KÇv¿>~tOÖ)6È.KÉJ?™Ê™Ù"Ox½h;: +ä'#fË¥7'± y~šØ³ð”\s;ɪ]éfÈóÏ“ •Á-JËZ:«FD(ð3ÀDânA¹Pð¬!Ê ‹µQŠÕ}0ÄŽn}D†ç(¼ÁŠBP NhÚø˜’Œ>uì›Í5‚9ÕnSUGUäŸ]Ÿ­•®íÖë—G—Ÿ¾+o1—\ JŠÿéõx¹•o¨·ìõ0õ1IÖi[¸µ}S÷ã»GVC„@ÂuÎ¥ l ÿB(ŨõNõWòê£Æó›C5´ÃßÆÒYšÌU´ díHH¢ÌG0¢Sþ¬™ë^Øt `83¤W)Z‰hD¦XS/ä  +zx ÅJÝjTê–J§¤˜ƒ:¹/aådo¥§`HIª$ÔºU‰,¯{+>ƒTÇ´ƒ² £Æ’ì´3⣥IØ3i añÌLŒhûÌ™¹z£¨¸$F¯hïš_¢yG2+Ï?üCÑhÿ½üY'0Pàyû™3³)‘«Ë÷‰Nš:…úW¼î5hßЪ5–¯v¥|‘ &«Ï¾fo‘'TŽêÏw‡6ÆC5 tkŒR%š%džSV૯­…Êca¤à‰žþ—ù&jèö—¶Nfâd= §”©Mƒ¨Ñœƒ´â/a¨"çã½¼‡y+/à=‘Ìr ?Ä„:Þ“é: º:j´1Ä6U®Eíƒ=Z“-ˆÒúŒ¬Eë\Y‹º‚MµìTËÆÁ­ÙMt!¿UËšêÌ\¢`ãM4A9­ÛäÚµËã%—‹‘rÒS¾ðfY.Øœ”u¸:óÑoæ&í?<\H¾4u3Ç󢥟õéWËâûŠÍtñí^ôÁŽ›> ÄÞ46WgþqqÏêÒs`éΞO×®º>" +,Ÿ,“¦æ©æí/#êC4ñêšÿm—“R l¨ÌRxDznªT“{‚~‰f’7J¦œ<Çæa‘K0Çü„9(QÑ,·èŽêè¼ëY¯ª=^«\}{ÛŸ¹½°ÇCñ +eqìÇÙ¿áÆ–§sínÑØ;Ü–y2`kˆ®SÒæW–&Î7Ñ|ˆ3мtðœ/·=ÊñÚŽ/|ö¹bsý˜ÿ] J,E¹†6Oß:á4›Ív£ðêÒàî·½±æk-·†Ÿ6þ ÝhiÈM+ie#ê¹Øx"‚ÅcÇhÓhh„‹ nH§KÒH÷6Ô†–GôÔê-ÌøÀµ@»P?¨}Ãæ0îÄVÍÞõøäã +âÓ£nHèZ\ÂÂð3êJ¨*YŠM"ÔX›IÎóW§álÉwå™{Êp4px²Øéˆç5O#Ú|¨ò+[üÝ|ÿ§â€ÀÚJÅÆÏ*NšÓØv‡Ç~Fl3hÂ*Õƒsµñps.PïU¢ÐW™†·îß—èsþˆ>‘^ó —ÝÚˬ<ý;Å‚ïU°ïå’=AQ0Ј‹è9Š¤ºàö•‘>]„ðNPɈ` L1.× øèSƒ&D—‘H#u:愦2²‘­)ÍÍ2)ü>8­‡pþÊHl~ŒÞŠèƒÉq”´;Ôh¤ÐJæÝQÊàê8±ÊøèÒ¾´¢Äï¿jwœ¹2½çW£¦B·ùý'sÑíKÊdôÁñ$ÛqûÉ˹"¢çå©Ú¦7v8]9æ0{|¾è›“Ùxý»ŠO^:·Céôuqç·÷ÚM’§;xv2XYüñxã~‰:ìÈ]ÐH.ÿ ú簛̄qq‘·³=¿õzE•q€?Xd„ ›.Xxˆ>íâVªº`È¿øí’7 7P³óÌѾZÉBͽ—lo£Â>B?DSwÍJ0û … +sŸüV!„hŽ,¼6º´ÕTyø|° Ÿh3·„o>Ïõ™ õ‚Õá‚í‚ù«ºj)-F²p¤äý¼ÄÓ<É#ÞÍ×$èŸo%:DšÑË&bY(€¼G׃‹ê‡qk˾H(Ú}l­â)<³GÈ +z•Cøﺄ›8b?nõëã‹O–ìTÌ"uõƒƒ?‘NgM¾T{Ãí2:,'GN6½òç±d€ÊP+øP6qÅ]§š ?ÿ]½>þGtç]W'þ‘ŒÁtjRÚÃ4¿œ}ùLúr¢Öw'Ѷ©Ñ>,Cr;ôô_äqr +AZ.ùü]‚AG[Ãg⊴´Øñ½x‡FYõ^‹p¡™VÇph ×kå Õ¶UÏèCëµk´é÷2N–aÜã”o~FÝ诟D–ûéD%ÒÝë¨pòXuklË9Ÿd fÑËDo Ý#˜£Ç– ñhçåÖ ·w9"ñá<U:£]íÙüÀBóH6h¢‹ôô+òo´C'@2Ï—â²ÝÌPÖ¸!hrr6®ÏB7”$NgŒˆîQú]DÐi'_Bn†~F#€4`µ¡a4VlÇ€hï3YÈ""4-šÂƒ WÈp>(ÍÙ|(wèH,´¼¿3) ,›änÜ7S”3ŽY#ÅJD™‹:ƒ§o3Í_lvòóõF¡qÑß¹–o+ˆ^þ˳Äõ97NccUxðŸ+¶P@bÍfqá’R˜Y=Š7oðv‘» uË%oQ:Â×GpÈ×ek7ÂB¡ݸÑÉ*o؃Ú]ÁžB¨³k¦¢ðL§ƒaˆæ[ç//ŽLDÅ'âå½³/ðB… lëqÏ÷⾩×;£Ù©%?þÎòlïœâ‚;?_²³£ÃKÓ÷óAQŒ#§Ÿ~M¥[ŒÔJƒm(籑Î@ÇÁÒŽ,œØoê5ô (Ë¥-DÒN8uD?:=uÐô"TªoQ£žɧ.˜_ +焇ïϪúS¡eÖ±¥Õ +T1ê_øŽ ØzGr‚m±"7h×à铃ÔO=™ùà– |eÈ™ž­¶'ª÷îºÚbÄ™è0k_™U&÷í+±æcŠš‹^°Ù;Ò¿<4°˜Êž²°Áæâà,o\ÿæO£iƒºy`æ¹MgÐ…u¹RÊ ‘_&8:Ýaбiä×1ØÅåˆø"©p(`2²„ŽÝíá¿Q@¬å`Iít˜´‘ Tî '@¸4!¿ÔÚA´«û§'(‚ç]ìêí÷W”Zàû×Çv]ÛUÙéoÞ3Lï̧ŽíA_Ë^?;Ãy›×\™öZ=õñ‘wŽæwöUWŸwÇ3Ç®ûÅJëòæbºB)†Ø1^ËŽi“àg¬œv¬¦€¨#-„pºÑ)‰ï¢QB ¶½É®w:ÛC!æh×XTýŽÞ¿aëõ±´Õ1c¿X<SB¡äÿÏu™Å¶q]axîÌp™á¢á2î;‡¦¸Sn"Å‘*ÒeÉmÑŠlK®j¨qšÚ¨KI\Çä@YdAQ¹Iš:… +…Ñ$níÂ.Š"}( +ÈCP´†Z 0jEž +4péž;¤d§|âܧsÏýϾ¿ I:øŽh¸m¬Ìw>þ¸I²ut‡ŽÕÎ^úî¤_t\§í.v5¸¢¥W»£UÙ¤ Š˜îƨ;0ÃD‹8B<-/Útdu\¼‘ +šlSP}âíçJz§þzº1rê-Ê]yêþT+ÐÈNÎj¦~Wh¸Ë—‹+‰èðhùmÈg¼>³eÌæ>P?Ú|¿Å¬ÇÓËÍýµ ¯3GèÜDDÚshŸwê€Þù½ãõp¸JÙW§=¹Néì?½úðþžãRthÙa÷~Gš {ú´,©|D•8(O¸x2¶Cs‹"YŽG©áÙIãOŒŽ¬ÉX¶‘)ž‰ ]äoŠW™Ñ8€‰\ã1<ŽìÎþãŒKèPkÂݵ)ôj°MC£50õ=`nÖrÖˆd"9òWZõW¢õÔ‚{8¡2'Êå³ë5n+ßqŠÕØâ­Í&É&*Ô™º‹s”Mׯþsƒ³˜Ã‡B­Ý/aâÄŲ}&%»ñ È ¦ÏJþá"bDRùÌ"_D;íx@X;Ò¤…ÐÐ'ÝA ¸2ÝàfÊ•”$”ÇPWìUÿ@;ÊBÅc³µ9βÒýŒWóµÙímšÍeÛ‘j0T ·t¹&úq"Æ6,ÃúÖVw¹R´ï,çæ:Ù`=•qŽn}u +D„’u,éBŒËÄÕV O3ÀY„Ì:ÄÕÔI»W¥BÑÞÎÇtígÔ¨â]H°¤¯Öã¾qÌmLÎ.^^²O5¿þ4úà`zh62ö×Än¶Lï?¿LnO¤ªQ]ÀËý÷Èâ{¼<˜TKÙŽRª(÷ݧ îã"B²«ßG# ;G L±`jôô<&¥ƒê Cúj;â¨]¨ÅnüÄAC‡ÚW¶[ˆ²¤F¨yÙÛŠÌÔ¥‡W ± +ÂO·8Nqdz¤$Ò35Pªª=£v¬ooNàhKïjr²èÔUF)ifâ©hÙƒÖü e'×¥¯!u éÁ©×455Eb„ÚõÆ"î¨"g^± +›°«i¸ùXÐÊ’Æ{L9é“rïÌ‹ú¹°”!ÙøÍkÖí@9[91¸íhÄçùfB+d‹+·lò/Ò3í«¯7‹iòɽTÖG’¦…O΃ô“zw<¡«y$îâygyî%Þ¨ ¼z¼{i° dÒ/Ž¡ñ-½Ø]ßW‡Opâdíû‘…^èvr ®¹“é1èd‰˜“'ˆÓë¨DØš´ù)‰AªÞµü 4±¸’i€Še A‰ÈÎØc¼Ji\F!©Ò‹‘ÿgÛ¦XöNRØí˜Øó€þjiW2|tØñÖMîjT^®ÄhFH¤GÖ×*ZùP¾ítK•Å›`úT½ÛL6l%nsƒ‹„Ïr·ý#•±jÈþô/­âñÏļg0Cߣ~ ÷5a"-‹¦;ÞSÐ3x¢T¬SE­ÌimP hÕJÒˆ;Û"cÉï×€ˆzÛ^A±ø¾EI+÷ÿào}øÃoþñÒŸ~‹þìç—¦èñƒj·f‹§kèí;´Æ¿}ôƒÛÏÜ%+Ú_žcóÜ‹·L4r±ÓÂó×ðÜOw“4ŒŸ"jĸ\òƒXéŽ8XØT.ä¡Òð f& ³)*¨9í&=é@k„ø¸¾S1f0´Ô‡MouÌZJ¯{³§  ©¬:…W¤>¥åSR5èæì,øùžØ•˜)ì3zR³ï]³k«s ¥æZ'¹5²\‹$ÙIÈ éØ cŸ½^iÙ9û•ÁÄñwÆ*''ã ;ür—:l™ep…ÊO=ºGþÔT&d¹”‹³‘FÚ°†ñÁP„‹NV¥-!7ƒ ðX4èóºÞlÔш0.fJ€Ã=|q Ym;” 9rKÑ“Üq†KPA1ZØÑÛ‡3⾜Ϙ{Á_.ë×Ö.>cÐÖh“=¿_ž/Ç~ºõM‘Ï7ç% +U§|þ`rÜç)-¼Çà~v4•X\Æß|ì@¦ä4y\÷áì¨øì ;¿÷¬=ú‚Ü¤× ‘•dG|Ü¥„£ž¡ ƒÚ¤™…‡ÐЀÍäšÉÀÆiéádTQÜ?óøpÇ›|ÇzY¸`ç^Ûkø”+–ìíýKó‡çxò2™¸±à1=xN{²{ûè·*\¤o®.BEíGè,ÌIžhÉÕlŠ ! +ºŒè¥^dͬŠ #IGÉ!D€‚Ö=‚Êj1«ÈçmY +»IR™•ˆ2bÇãi駑܎C…vJÏÄ5òùcéÓl$HœzßÁi³­öŠ'Ì&¸7oëé`&2úÊrV»yÞmÝó :6–³646Q£¿0Ú½>säØ Š—EzHàÔ_º¿¯Wax”™=¤îQu QvZƒ¬Ÿõ²:–`¼N+§Wá¤Ø‡üKÉbÅD%¨uˆ=t‚I´ø?ö«6¶©2 +ŸûÑ{»î£]·n]»²v]7¶ns¥í¶"]ae(£b‡‹™néÆX—¨€0ˆ˜¹>ÆbÈ4s1‘4„€qF!B4CbŒÍâ3ˆ­>ïíeâg0úOïöôž÷½ï9÷œóœ÷ãú}¥ pYâeîÍÀùUþ)ÏûuŽÕšë‹ÝÁ¼ŠÌX¾(á÷Vå®Iôˆ/pýÓ5 „±Õ%VŸÿ`i÷k¾MžÜšVQlÕ•ÔO}3§Î[a/ªßGuA—§Ö$äÕqî “U‡szF…³¤ØbÊÕcÙÊŒ¹ îÖßvçnLOxï*pîVf(Üm˜ë2Ž*(qöobë–,È’Î÷-ðísõu¸K܆ÃÕ†—Z«òùÜ2›uy§ûIg•C_à*~¼8ìxuÔ¯ —5½rωCæ¬É^úà@sɲæpYk‘qU¿÷ë`«3SÔ„D‘sŸ^æc‘R5Â,²í§†`­Ë‘'8¹r{¾³X¯³°Ó¡ˆ“ˆGvØ,E…ùzÄQæýå^„Ô U^èUŠ%Ãͳ LW+Çv§ÊÏ–ZNùŠ¨¯ï3™C.s†§­Ü‘ú̼pé$i\dxyÒ\ ćêsòÍY–Ê’Ôõ¶éÝË;ôÆ[v‡(¯‰FùwÃUŒ£5kQª;Öd+ÎeÔð¢6ÓøÀê'N]sU®¹ÍÐz¥ŠZ‚6¯µfäx=gâ´~£Î¤uà+Êê]ˆ©Ì‹.¶®Úmf“AŸ£“9]§ƒækL]Q›9c}Cš gƒê‰m}ŒI/zËËœ¥m¾oäÙD>GæÂÚÉm×vµÃ8ìØßXj’‚¤ÚS7G>i:ÖÊéî1Ⱦ á¦VÛòRê7D“®s…­gƒçïЩ͗Ö/¹N‚–~¥*å]Rã$š×Д¤LDòI¢Få]é,Üq]•îè¬PùžføŠsRŸpœ"ši:'ii”k£8úò!ôRB³ž“0ÖÁ$?÷ñ—Èñ]¸û…×ak;EÐöãÞöD;&ŒSŒûœ&"MØaw¬^G¤K4¥™ vñ(õi¼”Ô\¦.±€owj0Ñ`û#t'(*vS\6âÙœò<.&”{BÓ†s\€ž¯Àÿ½J ù^ +‰_ ÿÄ°1@S°eã=Ô­™ã&„©’Ÿ¢sð±O4 –ê†}æs¯ AÏ@´™ñ6*‚Äâä݇gx¯0 ½Æ$ ƒñ‚ù:CMЉB×/Q˜åEtQ9 Ôá{üw÷øwùx’ÿ6ÿ,OŠ£$üîR|Ç;ÈÃIøí8øUíÆáÓ¨8FGñ•嵜U¸HQàyÍYø3«pEž#ŒOä¬Áf»—Å ýÞ‡¿ÄÞÎìÂÞNršTôâ9¸f9g(ªrÙÅøT8làS‡Æ*¼ÍQã’½“KvWøD0oÈa„q¨èLS·¼qšÍ‘¾Å{ÆÐï¥>ùpŠ8—Jl,Öqøç¢ËôCÂ:Âò£€ùèBÜ›Óm…KÖ>Õ:`ºäªWápL“B•¢Y¬—QÛí4 +ßÒv¬óSkÕ?À¥ÁAÆŠ@ü§`å¼9Œ¼ˆJ<„y¾HkVñôŸ#ã!"Ýp™±4²ÀröP9ôkèÛ~AEn/‘q(¯š(¿êoâ‘éK¢øR¸‡È"*¬±l#²âýÅÀÛiØ°)-ØMT‚~;œqð*ΕN9ë‰Ê0¾ìl®}D刯Âò?þ#`[ØUÚJ¢2×xʈŠ [´ }ìi=7¿Ñå’z òÐJË"ä2U– 7¨² ´c$'f@*—9*§AUæ1I«²€þIU!_Pe ò¬*Ã&glÙÚº©ß><²1‘°{OglÝʵÁž-ýCñP|pÃÝuQ í âßDýd§a¡”ÀŸ<ø à·“b´ŽVÒZHnê øÞC[0~ˆâУ½¢Ð{vس‘»Ôù7G i‚~zYþƒ+hÉj}¦ºl£Ø˜4d;“R¼zPH&CÙÚFXò”ÍíþY€±LS +endstream +endobj +837 0 obj +<< +/BaseFont /GNHWAC+Wingdings-Regular +/CIDSystemInfo 1132 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1133 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +838 0 obj +<< +/Filter /FlateDecode +/Length 2680 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nð1fqZ»[+(¢DÅ()|À(à*¨(Â8 "30#j`xŒ:  +>7>o‚®DtDŸˆ¥[k|…µÆèfWתX•Óä’Ú½ƒ»›üÚºÕ·î¹÷Üï|ýs.I¸º$IN‰\½>b•OD¶^›´F¯›³<5!q‡óHYR”»ŠSÇ1h **þsž®O€7¿œ:vöDÂ…$Ÿ¾Z¡KÇW5É™‚`à|_ç0:/òæÏ›7ot‚“tÛÔBt¶!S½Ó „¥%êôé:}B¦:i®œš*ŒB½Ú Ö›ï Zƒ Öf&«õB>Ôhñ}½:IÈÔ'$©w&èw:çÉoÌíÿ'” M0–°.Më´¢3ñ¦AHHKòÃ(ºÑ(‰º¬´L½Vm˜ë“® IêíAâAŒ'9A(Ib6AÌ!‚X@Ë݈W"Ú…XOq$Ác]‰b ¡'$E&‘{É£ä[—.$’VÉ[×í®½R™´AúŽšA-¤zè±t}ÝÍÓÍävÕí_îÜKól—Ä×—H<+/Il®âá5#((A×åRø…t…§1RFPñ£kBئÄËŒs…œ– Ê ¹Ã]r•%0ý/{~üHšç¹Ç;]©ùÐM6`oQ +JžJ"Öy€72Ùé;½ÒÇ·¿~öN“æÿùÌ LÕÄrÄHOu:¯²w[R6ñE*• +y"Ú©'"iÙ«<ø½8¼Évˆ’ˆg`cÖÅåoaÑËÁ྿õîêss›ù˜!­Ô…W.cÑf´Gù($È T;ÍË`S!¢/päm ÄHn—2–Žëûž³à .§®Íßí½ü¦)àƒÏ‚{¹Õ’zÄ°íË_ËCšÄØWÛ›X žD ÉÈ÷£O‘»ÏÝm³çó2”Po^hrbKn/d~Yaà iY |ĺÿì{ˆáàƒŽ‰u(Œ’½ª7‚ 8©ø4æAöÀ‹lªèhUQ5ûòi½£?×uâæ=ÅýÔ››Û¹ÎM!Õ³YåJKA¡h"&Tcodïµkc×nѬܕ[\œÇË~ÂÀ‡€Å0ex.NÁ(ð¡&ªÿÔî%5|ÝâêõGLnAåœÎzc¼¿ûº¡;¾Ö­”¾R;pó™â®áâÖ6®kCðq%ëd)Øà 6a4X;{³¨M·A›¤ å6Q²Þ<œh%x‘=°\!Br¶…1u=5±ûòŸàöCÌ ÿ¿°Us¼]ÑÜ\×wïÒ®œ&® ”Òºø¨Ê%, +òòCc½†•È?ÊhÞ•¢Ðî4F¨TõõÛ8Y— ¨™ÆV#dKÈ&6ÂJ a…E’ Ålä2s³?ßmr³Â ¤¢dõFÑlú|Bb4 ˜=D3N¢™þ~x3­ÑÄmìP÷_ëìºÈ;Š’;£Yì>gõuŽsBÀ/˜¥ÙIi¸ão n='­NZô1[ÅÁ£\uYåÉ6ölµ&†GõØ©>R\Uz„;Q^SÛÄž­IŽäQÞï¦ajäãé)i…9z.#'ËdÒ»Y)‡1®)œ]´u£!›ßOÉ…·¤È‡²ÇÛ£>ýŸ.æ_E9ÿ^”ÇÐJW/=ìådÛ]—匮rFa#ž :pÓÆŒl#ž/"¿ÿ">5c˜ +ã?ˆ”@ŸhcÐRåL45×-“¾Å¯¥÷¬wh.oAræjCDèÒô £ × Ö ÞÀ-†Vá3Ü^¸]Í¿¾Cý(ŽÁë;¥¯éÎêg÷o7úkðz©TÅèÿ­è4¹N`à5Ÿ»)¶7ØK +(é%:¹{rï$`á°jÅzé#Ë#Ý\²bBÓ –­n‘ïœÒ5ušŸ0,ž|·n(_^¾l£p$,Ž|ogŸÞ3µwŠÜæ)ëž7³³c†¼ð”ï¶ìÂ=}u-ÝÕÒ‰>E… à]Òú„õ·[oRoŒ­_@ãwïó¾ó3nýî°þ»#óÊÅ¢å›NÔž—þ®såâKù®Ki{µVsΫž:[jþÜÉ«6ï¬nX$·â;ë¬ìÐ~Ò¿E-\4廂6|gÈä8P5­¹Rª²¦)5Î{þœ|9¾ßÂßÕ~ –ý`û.̵.Â7~<U÷û-qâ·»Ã쨕¹r…K·WÞ¹yâ¤ò¾˲w6ÖvVH'Ô.>&ÿ]ñãw Õï +ì|[º¿[ÿV%i¡É?V LæÔïÎX¿{²}wÿÑÀú;-êw*«ð†Æ¤ÖŒÖdŽ¶ÖM-7…}O•à[ÔÇ8áÇzæ mBX'Ôõ6·Jµ´7·¶È5Ô—•4•6•µTvnø­#±£ÿäÜÃ{îÞ}õê÷ä/ßÏHüa‹û]ØZØšÞZ$ÙÎÖº¸y}˲€ï…|ÅÝß•¿'Wb\üÛy±Øo`¹›Ý˶jÅò5+Ö3‹ŠÄ·?F¿•¾‡v°çæ”åfüú­+ÁW?ýGÃôïjÓ§O_<íwÚô3ÓÙBÓ¿ë…8€B7¦sÊ-HŠçáìæáþ.Áõ݃û;ÏôY<<ßwˆü˜$ +`;ÈWû +endstream +endobj +839 0 obj +<< +/Filter /FlateDecode +/Length 527 +/Subtype /Type1C +>> +stream +H‰|ŽOhÓ`Æóuiê\¨¸.lY?ЋÚvµŒÖ‚+Ô‚ÿ+•n0%Rf쇘æ(Ã"térkÛª7ZÖ²õp«§ÁZõN¡[ç`® 4÷½Ðæ(¦«8¦{Ï×å&Ü2Ôöœµ"8uœ&üÖÊmàá, 8|?lCŒ† h7_ +zóÃìNÒ»;àûzñÍÈbø®/°ûåÙ«×[¿e>ÒpjDפÁçÔã}´¼öx5¸ñB‘FÏÏß (zËÚï7” WJäd>ÿt±öCsi®“¼6!Ú³ÙI +¿“í$}þ[¦uÓ„#¦i>19Z6·LŸæMˆ¹h>™½ƒK“WùÞßì^ˆôý|ðçÿ0•Cõ +endstream +endobj +840 0 obj +<< +/Filter /FlateDecode +/Length 1269 +/Subtype /Type1C +>> +stream +H‰|kPg†w³$¡±bÛ¬“]K¥2*j ¥Zµ2Z‰€‚ÕâXd@ ˜›Q¡ä&Pê{Ðà X±`al+šrïÚ¡Ò*­L‡ŽÓ9‹?º¡üÕïÇ;ß{Îœç=spÌM€á8þÎîÍ1["C–ï8¤×¨ÔQzÝÊ]l²I«Ò»š4GáÜÛnÜb/­A¥¯^½R +áæ|p.¸²Xèë püéóͺL~69ÅȬY»V¾Â¥As¼‚‘¯^½zNƒ˜µ.e¢Œlº ËHÔé3uz•‘U0!Z-3‡00zÖÀêÍ®â1ÃjŒ)¬žQñÍd ?¯gÕŒQ¯R³é*}£su^³IÿÅh2žÅìÎи\´‘/U†zOÑÍ¥$êLF½†5¬Ús(“e>dÔlÆ?[Š­Á1¶ÛŠ…baØvl…Å`»±ùü5y5c€ïÃÍøU§@)øJpSð„ ˆLâRAñunê:Îë{׉b7®`&j¶@¥è'm„¯…0)B ê#Áef+ij¢Ïçþ°ñ^Äõ’®r9‰‚óF¸oïàœçïÄ£“dþÕÞ‚Û,zi³ÛiûmÛ¤€§<‰¼!»%oA ¨­Ê¼ãŸÒŽp²¼ÁVÖErÂÑh»Ÿ/ŠÐ¤•”™d’–:3T@‹ yâ‘DùµEÍÔØæžk´­½¦û–´ßÔ“t^v1QY« >‰ÉûRE;”dÙÙ–Òê…=^¾÷Ý ÃÉr -iç‰]ƒP1ô±kTô´àbJmÀ¹à³;O[Ü'DG› ˜þ82¢íÞSã^*¾ÛøÃÍqi¯åš¦UÖ¡Š¬ "•ù_ÄÑŽ²¬²µì +õ¼ÈÎI7Fí ÉE’¼:37õ‡x'ñ>Nn +Ìž•H“;Âa#xÇ8Á½ÿŒÌѧfF-ß|ܦûGè¾s¬Ž®Z ûÏì¡|)Â?Zöç2ðø¾ÊÚ@K +s‡a½|íxÇ38=Fp `&KN¬¬‘Ž«€Fr´DÄÈùûƒÿ㾪Ê6Y–]x4•ÍQR÷€g!]b'oU\§þj Š.¢%(™_X1ëîâ£6øp +ðBÍâç6Õäç‘Y‡…‡3+´TB\vZ* ÎÚ*5†nžUˆ%½üüºûv¿ï„'qßÇ ]¢ê’3åVYwU×å©_[Â6Ð¨Í bøÈ÷òöTmnÖYf–ÉtTï^7ETÏS,ÿÜû6àþÎ…“ ðá,³ñÂé«3ÁdšÑ M¯7´µ×7¶ÑmæÆT™ÕÖ™gb]¹®Ð™Xžs-g›7ÈŸ¾›  ;N"é’è´rz9,xó „²•Óˆ¦ ÃÈ—¾k®\¬ˆøåŸç]/^Ò&wÀEè{Ò1âRyÐÖ“ÝGx°ì^ü•àó´²1£æ²ôbKkoWû‘cçdõ? «2ã+c)_eø†ûZzÀÐdTIÓÓÂãö×Tà7Ý”{`Ÿü˜ä¦Hä¾iÛCT-Þu*¾é€ÌPw!»“²}S^QMŸä.0R±‡mý4T‚÷òZ,9få,V°Z­VJ²>¶Šeu q^Å^žCóœžÎ2¯7 å-®˜üW€…nµ +endstream +endobj +841 0 obj +<< +/Filter /FlateDecode +/Length 2045 +/Subtype /Type1C +>> +stream +H‰|TiTW®¢éêV˜B©4jSUñheWqTDƒÇÅ‘–¥QhèÆf—MYh— n´ .ˆ â‚ 4ˆ¨ãîL4è ¨¢Ñ˜3z‹yÌ9óóc~Í©S÷Ü{_½ï»õÝ{.IX[$I*W„.]³Ø%8]³\«™¢Nˆ‹ÒÄÇXN‘%E¥µèh«@>ÈèhÝôïõR豃ã¯9Ê·ØV$ùãÀBM¾½acŠàáëëéj±Þ£v¦«àéîî>j½ÿM”ZI×¥¨tBPb´F›¤ÑF¦¨c¦ þññÂ(„NЪuj­Þ’üX“§Ôq)ÕZ!nˆÃ÷µê!E£NˆÔn4–“ÿ cÿ•—(`,aUbœ% +IÁI™ã†Q4£,Ñš-‰)Ú8µnº[`ÈÊô$µ0KˆQljb¼¡$ˆ©áFáE>±$I"ˆ$‚Ib9A„X« b"˜Æq ÑAZ“9d¯•·•Áê„–äK®XO²^c]gÝkýNš,=CYS*ª–êÓ•^__$±rQRj-/)¦Àˆ®(Ð<øZ +ƒP§,ÁÈnÙ1êÃ<„cJìPXè ;kÙö´ÂXUg<É>툞?'$ÂM›Z¶#‹§Û0êñ— ü•þˆzüu·ä„æ ×Á™ûVV¤Ê¡²ëÓéû2þ–øÍÚr£ìzmww¿²KÿMl×´Ï™ Ü^°3ÍPM‡±@½qþ_®VÍâPt™Y/Þþ„pËx†;€xBÙ5VRtOîë%zñ³W°1Õþ&nI.Œg²àOLû®xÜþÜô½î: V 釅<|Q6ã ²a„Ƈ'ð%pÙÜ¥˜¬5%«J6qÀ@£ÂT^Y¾‡»TÝÖ|‘}rf‘Ï´;…Ï ]ª}+W²ÇPQ¡¤ç罆ۯðìÙKD—÷Š<]Bþzvæ’®·ü Ã÷w†ØóÇòòkøCÒ*ͺŠù}Žûóryã ®=ßU™êyº oìŸMF ›@.u V`òµÊ«Áy"w_Ä 9 :ƒçÝ+UûÏréO¥Ù±Q+ع-Ï‹ùgÖwž¸óû¤Æ?ÂÀÓ( Å€ã/d¯E*•ƒÈ¿Ë®š¿ë9´¿¨°ŠÛó³twjòÎMldØÖ¸ |dtÆÒ¥J}ÛÍ^F‹¯ú+’¼‰—A(†¸é€óTuYÕŽ +îTÕÉß²·ëCxT•n•»÷åYñ‰Ù:.9;5-+En‘tE#3†ÊL} “ì»C`3+ÄL4n$SÆüzm8P¥ITÇI±s÷¾dHZœ›Y¬gÃ3ºyØ cÐÀƒ”Y +c-`_)f1I•b¦‚F2¥ð +–‰™Rä@ÍC¥RæÔVU®:?Z^Lå·æÎ>7J'Ò9&1Ó.&“©ÎD¡XÓ“ §ÒL0}4%Ç©‡¦1œ9Je;¦ÔÖf`,ØÙ TØÚŠŸˆfÅ·ÕÕ +endstream +endobj +842 0 obj +<< +/Filter /FlateDecode +/Length 574 +/Subtype /Type1C +>> +stream +H‰|PMhaݯùkmH[uµ4’|Ò¦IŒ…4…6±`SŒVŠØºénÚÅd7ì®%9‰†ÔÊP(íE¤zz(%Ø"zSô¢"ÄKŠèE„ùÚ/w׋'çð˜÷ófÄØ[„PÏdêìXbªÿ|I9~B‘FåŸ%Þt}Ä‹Èa;9æfi]ÚŸÞ¿à€×ð¦ë%ùriAès#!ŒÙ¹y ŸŠÇ£A-Œq4‰X8ˆGx9#àtIÕ„¼ŠÏI³²RNøÉå°¡bEPeÁÿ^„E ¢6/(˜3Ì9јWk +Ç yN¹ŽeÓù‡fÿ³ +‹6²ð%I4YZ3Ds6Rdkˬ|CÒQPCádúb© à!Ì Yƨ¦‹9dýg$¦Žl¤Z«“udàñº­f'Õ½‰fÕ KôK‡á¾vÓmLÒ¼çj:§­†©ÁäkvÔd(W`mÁ€ :+ìæã'Û;â:7›ÍNM>7ü2\;;Z…nh…nH{'YêMÑMÑ3[4½¿¿þ‚2„ç!Aûü·©}þ Ný4PNdfŠï ¸è‡þ;+ï7¼F\ \$ Á-`m¤ó¸è•E׳MLJo‚§g÷êwÚ;‘^(æ}«'×Ö—7¼;²—CÉh ûdž§]ž›:)ëÐuý®î¤×ô·ºËŠ:„ iMo¥Yý“Þæ[É̸ÛjîöÆ8ÚÞXv»ÿ0Ä; » +endstream +endobj +843 0 obj +[837 0 R] +endobj +844 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +845 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +846 0 obj +[837 0 R] +endobj +847 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +848 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +850 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +851 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +852 0 obj +<< +/Filter /FlateDecode +/Length 13034 +/Length1 20317 +>> +stream +H‰œVkTT×þö}ÌÀ¨À +’;Œ€03oQÆ;€øàÈ "ÃËAP!¾â+¶˜ÔÔ¤ÖZ£$16­V¯ÖFk5 yØĨ¤15icÚ$ÍZíZÆ&Íj­Ý3jVkWþônû<îÞ÷|ç|ß90@DiI…=%$);™{®q©jhww>zøÃÏJä´†Õ=ʦ¦õ]3÷­kî\Ö._qúO¸ýþ²¶¾æ¼‚¼VÀÿ Qëir7Ö:ïàç|îðNÉíbnOö´÷ôîª}¾Û]œs_[GƒE]¥Àìn´»{;…Û å÷•îö¦•†ÒóܾÌß›ÓÙÑÝ3z@æ¹”„yÇ;»š:¥S'y¼$“Ûq )‚ž€ìÚK+á³w½ô"šÎ*2î?†í~w+~_w9 Ä-—¯ Ÿe<ÁBž"eŠoDù|(¯×h"îu²|ïü÷â$ëô~þ†1cǃCBÇO ˜5)ú!Åcž?%!ÑbµMµ'%§¤¦¥gdNËÊžž3cf®#MMÏË/˜]8gî¼ùEÅ%¥eå• ªV»j-^’šñù¢L½Ÿ!2tJ©«º¦îŸî†5¶.oo[q3kzvŽúEAþTûØî%µÍ‰³®ô|•» þóñ7à–Ã7»–9¨Ï^Ü ¸=wÌ¡]¼©ÂbH w"åXª”3M¾å@DNšÈ“ŽÃäâ’"Øxó0Û›E’x% …ÓLÄ&{—®úìšÏ>v Ù.ß51†Y A†zf? ƒ±¬©"F#„™2†pDðÊD" +“‡§ 10c2b™¯ñ˜‚$Â+l˜ +;’Œ¤" éÈ@&¦!‹ç99˜™ÈeŽÎ‚ +'òÞ„BÌÁ\ÌÃ|¡%(EÊQJ,@¢.Ô`c j±up£ hD'V¢ Ý|lÂflÁVlã؎oáÛèÇ<Æ;òìä=ý.váI<…ïa7¾=øöâ‡Ø‡§±0€gð,žÃAÁWø;>Ç Š¡IŒ¨ÑŽõd¥xÆÖ̼¿‰/ñ–c-m õlÐFÚF›im%™@"FhUÑbZHK¨šjÉEK©†Êh>³±ˆÙ\L•TB ¨”É@ãÈÈŸš˜©ÍÌôeTÏŒm`Æ7’‰¢ÈLÑA¡FÁÔA­ÔIËi%µQµS7­ 4fRåR69h:Í¢²1÷-G³I¥BrÒÊ£¹”Oó¨€ÒÈN™”Bé”D”Œ><Ì,ôZV¡‰ýj¬Á2ö-hEï½1óóAkãþØ€X‡½ÔO›ðgê£ÚA›ñ=L«è1Ú‚ë´–VÓã¼:[i­ñÙVü…×ì¾õþ‡mÃ_}=Þ÷¹°t¬Š fj9چώ¾Ç§á!qPÞ"‘‡ä+4D<ƒ?ñþ]â½>Í,9Êìy–µ¹¶“¹·ƒy¸9¹…ù¹ë±–1¯a¬ÝÌÛÞÝVF×Ì<®gN×2¿k˜ëUÌûrÖ@1ëa.k£€u¢²jf°‚2YQ©¬.;+.žhòƒ~H×*ßwËÁÒ)OR%?I' Äâø¦8 î·‰ëÅUb·˜*ÚÅaDøX +û…Âb¡F(Taº%س $z‹é íç[gí¦Ì®nªóáü€ìEú*sþ,óÿ4ká$ë‹ûëåFñïcmía=ɪ{pî®À}ü^Ô^Ìå>´…ŒÓ‹Ï“cÂøÐ`cP`À¸±c þ~z,‰Áz‚•áTúëûÍjs•Íz"pVöj°T‡e¹|.Çç4C¢K#gÐ]6«…ÿ4!Ñf½ûê5˜Õã$ƪJâq7jb,{E“œf·ÒxÜá诬6ñs¦(Wiµ·"Å*M›ïÖPVmŠÔdç4W¤»ÑUQm¶›oEÚÍ×ùÛ–oÎînüÆ7åX5÷úÿçÞòuƒÃ²lÖA†Í7³SñN²?_î–º¼:ÕfÍW4Ѭž Av®všýfÐ$³®ñbåláù-šÃ­øæ­ÍŠäº·ªDj….—&›UNAfµE̪661ÜfUò=y6ë¾äÑ—UžÄ £ ¯W”ã‚دš5r«¼`ŽÊjÍQçò~Ïfå!§ÑÉÓM†Í:Õf}ÝfÍÕBm¼¿7d6V°1ŽÈ2ATÆW^ΉÎ@éi)3Lg ñA‚'n÷¥Æ¦‹»ãºvæŒt[6ðɵôµS|B&¬MïùtäұᣜYåÌvÎlôf†_€ž8ó8‘3‡ÜËcšâ3£Åñ¡‚N牣9;»â:ŽôLËZql¤ÐBµBù1J¥¨¾ôEWoŽþ›íjmê¾Â÷üîþ¶qì_;Ž'~Ç ¾v?ŒÇ ylІ4Í + „Wx(J»!Ò´Y¡ P–B[¥"ÚÁ¤¢ŠJ£];ÊVuUµµS¥NLëU™*ÄÙùÙCÓü‡_Ò½¿s¾ïœïûìW·oá½Ù·á*sµ¥8­˜] ÂÛêrÝ*JØkÑ“"ðK‰8œ±Wô®k^d?gl¼_¶dâôbŸŠWDS™.ãöv!ŒXŸƒC¼€Ûȼ‘ª8ý §…d&¿Ô$ˆM—µÃzåðÔ7ðî²–)I‰ÂÜ^‘¶6£p©Åå‹Eãµ\A!jm …;Ú5í!¥½-j§÷¸8¥ãüˆ˘Ò:ÂèW0ôd>w9B#¢qpþIa¹Ëðï”ð6Í•É©ÙËünÌeŒ;m/Ê:FmÎäi?¢-eø#Å,Ò^^(‚÷£ArF„Â˺"¤ÚH\ŠE‰n}òá{`<±4Øxóç[·{wžÚ°Å[½- ¢Ïô£]ê=ûåØ»ÙãS|ÿ…ì×W²¿Èž:ª×>‚èktn¦î²ÝüH®’R;S\D´¢ÌêLZ`%Žp¥è¦å9ž«Ê´'a1š,ærâvéAKÄñ˜1êæ‡õ ý•ÝVÞµzÅòL}}óÀêM]å¥æìncwïJͽÌ"‹•R$÷J œÕ¼˜ý¼i+EщU\ED‚̬tmØ)A´ë@Dÿ'N‹Wd›`€xE¹LÏ°’×ídGK8!Z¾Â 4àX”–%»È… ‹„ˆ'žd“¥P´zßØ糪qp[™-©Ñkw}¶îååáºåÙƒ›Áö£·úØÀÀ@Ý;ý!ºvgUÚ®ê¶'û2OwÎ^³ÁwƬÍnQ BƒÃÑ€ÝKŸ(ʑ׋ØE Ó’N‰¸Þ~·lbËKˆp±:¢ö`žiö—› Jf‰ b97>ƒH#ZËpTUÅ ¤6×PU¸8×È&g4 œÛåóûpÇ™Ç6ÛT=ø飿TÝÉ7‡Î÷~ɉìףѣɳʫ‡÷¿’Üñ˜ÒÕ[Á¢íG^è:)yØûÙᮑ¾Ÿ¾¢doïøb¤B—?÷ëCïé0[tƒ„»°~`ß’ÈÎ+‡ì\ÇqbÆmM§4Ø„¯š)ÊÀR‹IÔ A›…˜D™Óyí&-á%3.KŽ¨þ åV’ê" Ù‡(9€N&ªÄ¬xIM~f!-/Y‹^ìLŸ´FÂO.|3Þî?ÐúLm¨„ËvÁPˆ½”ÐôMþ=û…0&ki4³8_²ãejj†2òÞd ™±!3?CfbL{ºÉ%Y‡YT*I¨šDQ•›_çP;ÀQÁjxu˜ët9rü^—x)Z[RøÃ*º ‰ü¸…-°£'f,”‹Ü湡ûY [ÅáSU'ٹ헫—½úÑúšÝ^wSMŸ}¬eÓé]c˾µ6`EN3ûFOÏ”†ã4Ù?sg­xââŽMï_Tj·O(3—œY;8¾dv“.Ñï½Õ©aU*V/µÇ5T[2Ø)Ý$îRMºÒ¹œü-yq±­*¨…K«€7À¨‡7$·A(W¨4.…Ä¢“°ÈzVÕÀN/¶`Λ¾Úø“U5¯C惮Ü{´¨ºcî’È#{zkÚvŸ7wÔnØùüÞg붺]ü#¦Q&î6xž:÷‡W}°¤nåóݯïn'ÿZØ\öò?~;Ús´ª@ÎÙ]¬ÝÄÓþ’b"câæJ%U œÆSA좬ž +ô2«ÄòàË ¤Bw?žpâðÐÅ'”kõ$d laç‡àö–5“ŸÖ„Mj}a×V¾óþ¨æe‡³Ùä”±½ +“‰u¿ù'9Þ2¤<^VB­aFŦ&û²#ÙwóÊEÝ:…(¿•ÚñY/ÁdÒõ3ef5ñˆ‘f|tT{š‹rx;ʈk+^ ãœÂ føqÌjN;‹ÑéëóÀÓiʨòn—‚sOäÞãÅ~=ä°§Ãåc-ÓëÿiéÙþŽóŸÞ÷é3¯¬=µsë– ×ί[~úà‚ïw<}cÕ亹›ö®çwgöô·îè®m:~`×ïwôL íz§¦ó‡+·\xìþ'©‰¡‘ñ%£s—î‡@býDçÆôÎõó·ÑyÚ‡¹…=‹i¡ E'IF÷JÂɈ7ú¥†ëÿñKö¡ï÷C­m +zgÒF?;ÐCƒÔCɵEéh +ô4gö:\ÅÓtL õ£R1žœÀj8*ê^³Aæ¡´¶é„Ðñ‡Ëå… M4/xšæu绌g¾íÇèð¡Úd…·:ƒ¡öÜÑ„éžú†  Æ¹…™ŽR]( ånVÇ«Ü¢{f@ši4°6½8¢BÑöÁ%½ E;<íBTɤ´YT”Dt£ieP©à¡J»çØ:pqu}OÃöGƒÕšªxüZ^ò€ÍÖÞÊõý¥­ó…þ¦Íý‰uK“Á:»ea0°¸y΢§[’,»7AÑlWh"!èBwŒ‰ ÚEÒ•©¨•&¢XÀç2èxQ”],Zëª(³–È’Q»X¬*ˆ„TÄ]ËÿÈ1Vg®içrÿSËM€Øø'_-™<¥sšO†"³z:Ÿð„«û&/Î2×TÕueæGª*÷'çzê%œÓS–ý+²YþؽÍÚï:]4p¹L@d©tÕ߆kZÊ̪\Tਔ'ªØÔñ› îetûbSw¹ü0>õE™4³ ݪÆéhLéu¢Ú,“L]-ðyIuÒƒ±åxÇÁǃMsúB¸<äHÓEù¥Ú¿U²Å|Ia@gSºÉK“ˆÜùL˜™Ã¸™<ÆÅ”yÒâVKW*àò±œLÎ2ÀÙÀÅÁ.­=‚ÕQ;ÿ²gdÝÊá¦x†08j¶Hæ|ßÇ^éœ<‹y?¶«û(Ö@Ö6Á´-kº*Žíß-¾Íow[óÅ·ÝΫn|Dì}a²Œmà*I +3ËcüY8H`]›Q<ÃãF‘ƒ;rh ãuR3¤1©¨ô +(uA 8i#8žÝe?-ññb¦ßü©[ÊÀØ=a#ì@÷ádY¼™8™Ç¨›FǤ0±€5¢øÞ%KD·ÊïMt)”y°G§»€Oì;ÏS¨ƒs¹‹ +ߪa•±šâÅ!j:¦ÍÞ¶«Ë+‰#q¶RÿóÄÙèÅÆ¡’<ä,ºY–¬€w$ ûÑÒ ÌÂxZÁpŒ™ah°V`Ö ètè’Žè%¥ýTtLÉÄ$ÃœDdŠ}v¥.%¤diá_;_:ÐôGJ¹…wOEtdXi‹ßÜÒ󦇒<ÏeÖ-“_Ÿ ++º½yìb5ºýY5_§%ʳmœÔLb‚LSȤÒ|ÐŒ:DO‡° 0 „[Ä@r Ð‹À>?™‚‹&wHŽDÁQ +€jã}7y:x¦f!%žÐ(ªŸõó«Ís*XÂèzÉö'×6>)Zäñæy{#áxÏÝ¿Ò”¾‚‡z¨å›Mæ†PÕF³Xií†qZC»üxÁ†ÑÿØÏfŽ.k7h¥(ÆCñu廊4²xQô^J—`Àèqc·©Wz¼¬‚÷:”~tÓj;E©eâ™X&†ÉËJŽ'T9´ÝµàœU•DºAQ ÊI,™Š˜Ó9=÷Ôg +µ +MÛŒ>‹¯ëàT>«|˜Ÿª[¹Ì¶š ‘„=Ø÷SË Ë/Mz«5¶fm‰fbp´ê)”¤´u›Ò£Y’€vŽOSúcÐbšê—6·NÆ(#;Õš–èêF¦[¢Ó`Q’"äb +dÅ|…^@«œ¸)|øûK éïw@í§·„ƒ~íʶ`éþ;ÝŸ½Ì·Ù/€ê{õ8.|þ·¯„ƒ_’¯Ô÷oß%Œü¥mÙ»ºo€¼ÓÑî<òÊæòÅ2àqÒZ I†ž AÈåN»Š‚ĸÅeIy> w[òe¤cÂê(X0ÿϼGÞÅìŽL'šÙŸðjuiCdÀ¼0ðþ¦ªƒmsçwþ®9Pœ Ww.øÍÑõ$72<Ý·ê ¤8Ô hž÷Rmã;[BÌ'úQôïËŸØ<§ù=mµÕ†{UUY}U÷?þö¸ÅE,¹&£Ñè4©œj¡Sí×1[ŠñV¤§~F:ô’$Qà“áí}7ÌOŽ»Q¦ÌÖÇÆ1%&©ÿg«_ž…0É»MPH‘^Y€ŸeTy G{@Œ?Ÿhà +µ4@ÒThch N²ÒhÐÉ3N0Á7Æ‚C•Û¤õï)ýñ6cµ¡RÝi%ÀñƉ„[ ļ#ï 1¤É“¹©lî¾%–…í«>ú@¸×÷Ó‹%4R)nl]~úù Cý×"Gþ¹mýéez³Ùá2¥hË:›¼µÅYŒ¶çäÉG›]ÆÀ›«vñ«æw¯xcK[»wí¡/[r­½¨º ¤ëÿÒ]í1Qågô~¿û˜{‡Ë¼Ÿ0Ì3Ì Ì[ž3Íñá›7Ãà ¿}3¬Nñ´Ìü„×éšv-ôô’G:íÞ+/o¡ñëüWç˜.ß×Ð1Ýyºú³¿›=õp²~Dç0,˜¢­èèóôĵ¦;!“‹Ú\ +‡£Ïß¹öÇéæÐàGˆT3ÿ7öj¶!”§à%±X´¹xðy=<ÇÅw©‹!W –ò T!D<¶rülzz¼°±ÑÇa +Fô-ý-C÷Ë-u%~WæRiʾǻ>s¬¤jm÷™òòñîCõ,÷ìïôÇû*fiܺι+ÛßÚñÆ}ú½ K ·:7¹â÷ìªR;Ðú:!†…9„ ¢#ŽB_©ä°[MFeg\…šþC*åGœÂ‰;DÿFƒYÕ'tÉ(nD!¶’EPü7âažÎS™KËÎÁÿCöVu}=8±±Ëíá0sÉÝözN²i Ž±4ÑѼßãîo©¯Ód~.êµüÇœ€)r{näx‡ã STã]‚Îøm®¹!rlÛ +´çÆé'+»ø{.ñìÝÒºÕÎÚƒõ“øW2ã¤ý”òRUé(ª!OAòEŽT¢V!'zVCA ‹bÏ':'G$ 3†Ÿ,Z´“¤6D{³eÔlT8¥œXÑDª?Ë ç­#‰÷ñ¨U(tgR'E¾=ÝÆð<³¾¦O6¦Îè +vÆÝ:Øo.d1¡t¹v_~öÅåÝ.—2!2L¡eÿàyǶãÄ|}<‰  sxYƒX/è6|û_Ô+ÅDϪ*/j/êR>1 |úx°ãý¶¶Úá5;ήšn=ÿ•ÚWÂ%zúŒdÐ>ÓwÛ èž~瞟}㑇WÊx€7´$ÙÛõ}p¨¹Ú»)…Èe~f%¤šÓµ~ X;è,DÕ”‡ð5ÐÈꀳ¥BB®h& +Z°Û4ô·T +`ýz2A{pùÊ–¯@‰3Ê6ó`×ÀÞˆX†…‰,’‹øA.ÜÈ›ýï÷ÖÝü-{ý“̯ƒ=¯o/ï|1XèL§f>šB­‰ÃôØ­«"×ó½mMߪ²Ù·NTZ…ÆÕêdðð¯ÎõÎ IU–U¨·òù“ÙÏ°'5¦«%n Œ3¤bÑL$p»:¯B©Tð„)4½`TÑéA—¸a&_*⠬ɊùËZ´ +ë–[ñå,þ”±¤@Þ8ò¡¥vm:eQ•QæÇ{"{JÓéÒ=‘ž„¨q +¸R‘46(Ó·aµZÝ\¨ ,# í"Iª…\4µjØš=Ä?DÞT»´œfêÀ]ê@í²]‹ÚEÙÊ/Óå••iÂÎh2éKGþ—;p2W‚ÝfÈÜ‚ŒéÅ[H!o±‰ñÞ5·¦ƒ»vÔ6{ýÖFX3öÕ¶ó¿ýx¸òÝñâYÿÁ®‹ééÕ§ËÁÉgFÃývö×ìkÜö꣡›½£WǶwTß ¹Hý‹'Å!c­±GJfû:f­{á\÷ÁHŸkSÐw˜!ñѾ÷vùËË‚5ó¯õ§;Ïôo9R7:ÇwLlèÛÌÓ•½Õ¯ýáÕÛÔy†Ï÷slŸãKì8¾ÅvŽí“øØq;Ûqn> ‰ $'˹,®%²µÒŽ¶¡°µMÐEaD]ÛQ¶©Àд]ÅÖ¢m*¨bŒihÚÆ~ôGµU¢›T± +!löžc;]~E¶¢¼ï÷>WI™4¨O盈„Q£2Ÿä7ˆª« »´Uâxe…št1P ç .=Få(®À*\w*pb‘æ`ñ‹,—•×eC+ "³[j« è—Y‰¥æ=k›P/«ŽöyÖ™½‚%éj˜XÛ¸o=Àh8¼ÓÛ0 +ŒnPeYž§»fJ̙әo/Gnï™jl,Ït?‚+àz¸ cGˆrÑmvy ¢ +Ôê"ÇòJìVshŽ0C{fSݲr¸øÁag`1)wì—¢$½Z{]a}Wïù–6_sBð67‘ï¥mB]Ûi5׫ªìh_³Ohjö + PåÒ—Ð&ú +y& ºmFNCÀ…X••U*U¨G3†ë ƒ)—^ CWÊKŽÎ 朘æï#ÈCfQ’õ5‘#ý6Np$LÖ®±óÇ ÝÉö 3µ“ïÝwOÔÒ¶©[önÃçžÖëÛþ‘¬¨hç"Î`»„ ¸Æ6@PˆˆŠýÚVšÎΖ{±‡13*M ˈ(ÇM¾•ekÙ2àÀ˜±“GI›-È\cR®öè7³X™KZmôPæ®á-]¿K>X¹Ý¿øè‹ ¹?0Õrb}ÓøõªÁÄ–P#¦3Ÿ>Š ”CÆuÂI¸DkÞâôÈ–ž—ËÁaùÌða,γhN+þ»ûÁ=ÅP¸qbXìÕ1X¯Æë a|F¶^txs_s}TàUˆ5[[…poªU¤ÚYÌZ­‚žŽ‚ëÑ\¸Ý¤èCÝè +Ì 9hJn…¹ËWÐTr!“ ä\ˆb¥¡Öû8®F¾ŠÈs ]½›Œ³ñé+= S‰Ý© Ðy¼¼I¼@ç-£Y6ÃÃ-ù‡)ßÜ,}ª‰nªØê[Ê&Â#-{]´˜ 3µ¼R[ñõƒ3ƒ‹¶.ó|rnuš¢½í“‘€¼êÁ['Àã¢5ú¼¬Þ9V*PÓ .ÖC“àLÍùbzZ‰\È¡ÇðÖÈ Êײ¤|ÿG,¦¯ÐCˆc«›Nß(©ÅãåϬºs^?àÁ+ŠÙ¾ñÊ ÛÁ‹ŽÂ68[ÜF€abjVç$èY Î#£=¦=’¿Éa, §lnRcóbjü'Ó‰g?kôÝç×¾|çÅù—øG†gŽn|ÝßqøçÛNß>œ|þüØ©/¿KžýÃ[ýç_ºµpø“—¤9ôéËÔ$Ì&Zˆ”ئ qc:)Q#¯‡k8P¤ª˜A0•@¼Ò¤fÝZlQ3qt¢È‚iU;q…³hN-™ÑšüI*á(Æ•Èë]‘V9˜Ñ ÙuΫáCÅû‹g8ÓpdχO?û¬vàû)µ::ž(“Á;U³çêŽ ÷ûÚ™ÓÉ=I£:3O)òWøðµI—λk3Ï ÛWÞËNUdÆÅø®_Mžº^[j”ò7¼Ç´Ü 刱 ÀdM "T¬4X=K1¥´#¦Ø€yä‡j3W$ÅîNV—o@^$`Bê”Ë‚œ°-1‹b5ÒÚP–ìÙÀ%Ën +]¾¼{èœ8xòµmBˆUDzBÖ<кð9ðnÇÑ͉ÙoU?µ>3þsÔ¦I_8þû†I¾-aùõ}í#·*ÐT^¿Í}É…©½¿=P×Aä”6›Vq1Ì"“+$i±d +úË°›1Y5kDñì¨<c…sÆ! ÙC «¶(y©É­¶ãÍœR“¥CÁW¨KîeÕ»;†š—$z‰C×ü–/GfF2o.ל¼Z7AcpÃ!¢UŒ—ÚõjDs4„$®Í ' "Z ÈÀ-Õ«I•›±[É7¢ƒøm·‘Vàª\W¬ÖHÉR¦“PI +òŤj§äe4—–lèF£}MoïÜújMȹfÃ8×;|ëÇTýk£WwíûÍÏýq߉YƒÊúúûwõT¯Ó¨ôF‡Úµ«ÿ‡Çk»N‡º†Ï¶vš¸gž~òtOUÝaéÁÿijÔ]ÂN4ŠµfD„tHCb2¤%” +2zmr=U™µ¸A¨9XEá9½îá”–ù&wQ!õ·AÚšÐ-ruáMÕD›ÕŒ¬…™{U‰H›}‹uïR§ +tXçZÞùÎÍdú_IÁ³Çö7iª2Hg弿F¬3 H±ÏWå3Õ¢¬‡ !Ï(QM¢($6ƒ…–Ä|Ž·Ñ˨ð¨BG#ÒX jK^h(ÊÑ U”„¹ÏÓiò +æÎRÕ÷^Ý6Õä Ž§ºr z8Ï=µþPª~û“}hsÎÁÒgú'b߬BÝ9xÉô•"ÏA + ‰n«À–²nÖÀêõ4ãæœV‹ÉX¨ð°ò)4ûSF$ìÀ£JB™²1Ü©Èb”h©]þ©‚|ã SµvGæGÚbk25åó?“ÚVSxgŒÛ$Tõ‰c.׸(z"øÓôíÐqŽŒ»xDÅ1Eá8Eúì¡ô/þ´á¯#‘¹øaWvrÅ~¸MÑ â.š4V±•l€-c8¦HÞ³u`†¥1Áö™°CÓò ¨VÆ3Œ3®V#uÖ“~áÉKJŽ÷CºàíT²u‡Û³½5Â×ù_qºªKF2Ÿq ú«c7Êê}õ½}åS½>¯êœ!ˆ¦q2´?}á£*ñ–¬YÚ©g4s¹}èäf|©õ9oÆ/L-}isÙÒ{vÁÞþ÷È»°·Ÿ¨½|†Á4c*c]l$0¿·”÷¸Jœ6+IhÆhI£@~eˆ¹aå¨PzRÚ“C´"ŽÁ— Ðq7 +•”×8¢z»yËPú÷y®Ou‘w;PÕõõÎûïá’…ÌOÕF¬Êì (eÌQXE]W/kbzm7{H*ê ŽvÄ-0¹-}‰¬Å‰z±¢ÄNä/fQjY–U²1˜ÄÏ—Ø‹mJš$ +þÇ~¹‡6uÅqüwî½¹yô¶MÚšÆ6Æ6­5­6‰MVµk "Rm UKWŠ¶ê\u¾_;7œç“u"N†©¥ˆŒF‘©lûcs²¹2W„© þ!nÈš¦ûž{okš–Í1Æøä÷;çžÇïuϽ·!…§ln|Êf”xÆgŠ¥ÀŸ‚žO… +¿Æe†ÐôX©+­\=Õ½2\æ©žkòTo[:;àsÚöÐÒ kVnäv†?7¯fwAakMÍÛþâ…:WZ‰i4 [Dç/ÝPî:™–--_Wµ·ùŠ09Xô4K¼¢Xw›ö-^{‘£y•#sæB·Ãˆ9Âù–t“ áõ`NK,ætwNöd™‘qµÑÆFæÅafn?î¦*.?O{!ÀÑÆ‚!÷4¼Bäg‡üê PH<3´—Ù÷}hô”Gcw«Ž³_ *¯Íc5¡ØO[kdG¹"ûŽwï^™·q‘¸3zÃîê,¹P¦…G³ÞUu¶iGöïªyäg_£ØÎnΑ…ì•Š‰)û3˜¢e·(樱5 ®KÍžåKœÍ†6Ÿ}ý½Vó‡3¿Š™¯ÂŒÊ~“€U’FV±q‡øÉ'÷7¸ÚS‹ö¸³šÄ«þô{–B _A ±]<¡®`£¼Ê¬IÆ$…)i“R’,F¼€eŒ3°t½Jfª–ÉšažQmmÈy'uÚê°s•°œï5«‰;pÏ45ÃûÖgÿù>×Æ완ï]ì™Ì2³’aKIV,f™ï™)`Ϭ§{ÂÍTQS\%ó½’ê“rÜ/LwŠh9Wq«ÚOר^~çO÷oÙöF7†3b—%B$Rf¥Õ+2’™´‚xÜ ú»0s—º%Š’„¡»ø Îå_NU­L÷+‰&Jü v]4yÍiPe¬¤Ï0Üê&2 vÆΘ¼joÜ•ãºNu Oh½DdårEä2ªg=´Wè¡6³),ݤŒw£ yí^ŒŸ ÚL'€„A_büA>svòuÀ*ñÕ~'örIw¨™)–}T ½XÚÝ º©Xè=ÆëÚ5c;¹å.Ê•«ÐîÇHC=ôù¤»äÁz×dE¼¬†:ÊiÀ»;±od£j÷½‡*T[7ÀžR¬¿Hì§RôÏ‚ a©›ayÙíáóh{¹n´Âô#{aé:Y¥6Ì)$¯¸†Ê…S°ãy¤¤Èç0ÆM…˜ç´¸µJ7…dß_µiA;9(æö€Ø}r!‡_3P”û&tÑAcT‚~;«‹ƒ,ÅÜFŸ«r“)|-“æŸdì§ZÕ6Ì—?¢°°„¼ÜéÍâùG{/pèù²p;!yr‘£LHÚkõܵè}œCj]¬Å^kI@û4÷ß S„×ÚŸ£¿B `.æ˼¾P'žžû‰0~ÀëA­…8ÔZˆõ’=R ‰À®¹û¡âQýîGî¶#ÇZŽC¶R9¯^ ñ v…<~Â’á' ªÖÀH-$ÂcµµÂë!^×1RX6|q:)ZH–~@.?°\Kp}«šcÔ&÷—¯-×¢®nhµ®Ú[¦Þ{ªävªñâãªÔºïß1OôutD&ðu¢økq×C~ï$æ3.>º_‰¨qK@¿·Ç0¡}ˆW"ϼï3Æï¿Š3Ñ(ú² ò äFp úUÈ}wˆbZ¬íOÁB"J+‰luv;Q:ÖÏhÈIæ“1×ñ5QÖq<wMñeW&ðH#§s,.0õ-Ù3ˆ¦å¬›û‘'‡(väFT€ÜOÇõéxöÏ€ ^Øè=IT„¿O4¶Íš +»’D>ØèGüø1€m³{ÿEžàQ2 ¶‚E:+žóœç<çÿŽ;K»È¨>)øòÊ@_>½Ç¿ÛЧPǘo.M)uT— §êº -G×ùšÅÉ$³ÚÑFŒè¥Ðb]Ñÿ’®KÐ[u]†þ®ó5?©ŽT×G"ÞHó†æë6mþó&USÔã?B^ÐLÀZG›h3ÕÒËô +íTû¶ýÅØrUÔ¢7|Šüã¾{ñ«œ’¶ iîä’ä in‡5yf‡tT<z[êè¨Möѱ>qÞl¯÷¤”ƒ1 +endstream +endobj +853 0 obj +<< +/Filter /FlateDecode +/Length 3456 +/Subtype /Type1C +>> +stream +H‰|UkPYî&I'†‘ØiìnÅ>P˜1U òL—£¨ "†W €Î(„!èøD`¢¢â Ê ®Š»êŽãhQe¹>jwÖ©qÇÓÌe·¶Ãîýµu»NÝsνßyÝsÇ„vŽãs¢ã£#|T{ôZuZ´^·4(KšiS±…s2!çîH¢tÈ]äñ{‰Fœà—Y÷Ü¥eΘŽ?{³A—Ë_MßÏúúû¯\b£«§éÚ%ìÊ+VLÓÕl`š.EÃÆí1äk² lxNªNŸ«Ó«ó5iËØÀ¬,vÂÀê5ÞhþÇ!Vk`5ÚüÝ=«æ•éZþ¾^“ÆæëÕišlµ>“ÕÙ4ÿÃîú?¦XmËc±›s´6..ŸXuNÚrE7m%UW“¯×j Ë–‡ÄÅïÉÕ°ëØ4Í. Ãù…ÍÄ0' ›eyâØb [Ša¾¶ +Ç‚$˜JˆÅÙa[0lŽ-âS‹©°hLÇ^âB\…_Åÿe—`7n÷›`¿àwa°ð¬ðºð±h©¨FÄzâx©¸I<%QJ&ì}íSì‹ìÑ ÕŒcb‡m}ŽÇ@ÇZÇ?–TÝàþvç©ç A•«œŒžª$à !‘ŽŠà-X4D‚™:"ž"’¦÷ @æØŸDp”à¡çÀfp~4Þ +!° +"œnr¹¯z¯5ÇŒìÌ+³6ª$Aá;½£-zhˆ†ù?ðQ1‹Ÿ°ñ)ûuôWDýØÍa>[}ººÎ,A¡S^䦼áÁJ¦¾úÄ¡£tˉ–Ænj䛄ÄÍyÉ;myá,à_ã +×øP7\1‹QíT¥â ¨áºD0¶” Gç6ˆD~|U\à3´”²WÐi"aíûçàø2z ®ÑV¤§#ííC·ä?*ß uÈ}~"bÛ¶|ŸI›Å²WaÙÉ[r¿Ç‹ „> +R21ûâÅKçÚzŽ3ß_ÈÜ!×ää¨iÙÓ +.ˆìkЦgæåä•3É5»›»äç[¯ÐÒ`ÞÂ,P‚ Þ ¡°˜/ÁË2ò´¥É|¶ÄÖ7mF%O\þ\åी¹(y³ˆDnïƒ?Þê9u®™>h6íÊMO6¸e%š’,Ù–}U…V Är^äh}ÔV Sh1U”Ò{MÆ/wS›ó¯]cn[:.\¦¤oJ`7OV'Ä +¸‹°Š4鶕î¤Ð'A?€Ð¹óáæåââ6¦ æ‰juÊÚõJDAh&*E¡ @¾ðõó»µ'›)ì8,·„¯ô„C9Ä Æ‘å]#/)p»¦‘'ÌýÁW0WŸlŸ ûÂI}ª¨(a Í&­Çꬭ`?ªÐ´dM²·2Å{«¬¥Œ©ùö+´a Æ&ýÈúAø¤ŸXz¦ +|¸†ÿÊ]8%ø “\ +'¤oøî(šuî¼6V@‚ßì!,'N[ê¨×Ïû‡™Þž³£ãò‡Y£‰t÷ŽºÅ”gpyÙ6B‘3ïÐk 5Þ©MˆÙ™\T\]]ÂH?òÀ‡„uà6 ¼ŒŸÓÀ‡[‰[M{Î0 ëê¶/”€ŠØß\ð³ñáÞÕ¤zÉ!ñPýÝÑ ù}ÃwÉçéž­5ž”¯¢¼l«Í˜Ó´±NjÔr^·Už¦ ¥wÒ~*yòÙ‘|£©—ÚÉžgÆç$¼þ;HÞÅßC3¯2~é5ò¶¶†áñEû[éð5$ÅÖPH±p9rXøg%©ÌymErm¶QÖؘBK{ª€˜oì0BØõÔ¹‚A d +ÎìRÞdîë—C€œ¢ß¡õ^u_dÒH,ªï>3HÝ«-(d¾£O-hF r•Ë’üÇ‚Þõ×^ì¢2Åñd‘¬Þ*²´ªÔ\Fç–éöäQÙÆÓíWz3Ò÷&ð@¸‘Ãù +¥:ßâgüjˆ”} É.²þ#wù~¸h⧨ð„0àc]óWdO)·vé34¢°©Böe”YiΤùÞ9O­æÝu¸­¹‹mIcdý뵩Ÿ§ë¾m?@[ŽXŽ“KcJøYg‚¹üOE)à|aYZW™E)ãz~zt½o¼û\ù:¦ÜD'w'N¡xþ©³È÷×Yõ1M]Q|„ô=@R7Ÿ%µOßSAЉâ6çÔˆÑÍ*ˆÊÇÑAøtå«R_iß ´lV¾¡ʇ”‰8:‡B*‰sQ‡Ž˜LÙ’-îe‹ç±Ë’ÝB6ÿxÉ˹÷Üó»¿s~çÜ`Øyû¦ÙÖ½ÝIqM«a{NM(È)—à³  ³žì)HlŒ¥‘×Æ`´ËÈ¢ß619Õ>Ñǘ0d³\¡„¾OgZ&Ü$)¾J±„«¼¨×0™|¶2ŽK~<ÓyëÛÁÎsfÖ¨5hu2±CÒiÿ>ü^ðª \Re­¾Ò-úx£÷Ðáý(‘hÇïÁ°úžÙ>Å䃯¨ôôéÏ舨ö!s'–ôTµ¹ÆéIÛÉl¬¬ \Ï‹ }ÊTÕªY8LÍ@½,¾é;¸¿ÙIg{×Psƒ¾ÜÆP«Q3—ò•Uô©huJ›˜|^++Ž@Ò»h‘ÿ„R`ÝÜ÷K€æ–Ù ÄìÌ kNB½äOŠôÄ°2©ãV äÿ|+øº®7 v³¦b_\zxttKS“ÖŠòn|§¾OÿðØ66ÉN}Ó4÷\m$5÷Ô4RÕÍ £¨]ÂJ*4LŸWIÇe}u¥^>¸6Ò×Q˜naŒ:c¦nßðoØdPj¹Ô(wº&ü@NPs0BZŒ6 ÷Ó„ó8œFŽüyá”$:-Mߟ21éc]•éÎhzÉaA¡ZÚí¼ pÿ`d87¬à?,?7´nhý¤Õ`«©gšÌ ö>z¸)-†EmxÓU²ÎØX]ÇtXš[ôpsz$‹±}„„µ‘³2ÏéÔ¹ŒR] Råzé W¡ÂAï<ŸWÄ–”K7-B[ S¢)êÈÿÜp¯‰]&fzI›ñru­›{?=ÒšåŽ.wG¡>A䮄xežÎÔ¨ö®…üwâSc +—i$„@¤'Ü ´'Àí@¡@lõËÀêg¸cnÞô'ÚÎòˆ’Üj?zhOÎ'ñÑy“gZg¦°ÌЇ…p K K–{Ý!æ&B‚ÿÕ&"·y¤`‚~ÞÏ‹ý%„ý ÉOeô˜<í%L§LÑGdxQ®X “7ˆ‡“žìŠûè`fBlZNg¯ŽÕ×VÖÕËÄë1ó°›Su©:–"RÆe.&¡œ´ëLµÌp­³}œn¹¬¯°±T-ì%)c•Zg(¡?È Sºéý‚Ÿ¡í„)É”°W&>®7¡Vz\ƒ0'ì÷ì¶KTCÓ¥÷i~øàW¶òûÔ¯ßîõ:ÑRR×(km¶ô ß(á:ˆE gcm‘4’¼p [5pÞÈð/®×ÉŠ.”¥$†·6e3bDi ½U( ÅÊ=HåÌ +ó’ H$FadX£¢;‹Q^¹^4Nß¾dnc©XGê5¥úóô™Rû~ÿÒM°ži€Ý(Ð]Ô«,B/•cÁj…‹œpHàDè¡@)"j@“ħóÉ^?¤Ô } )Rq?ö󨜞5n7ùbŒ¨FmÒò2]¹–×1Ü…¼Âü²‚²B]‘~KG«ï4O¸n=zÉÁŒÅ‰HÉ+ù4>wM9ÁÛµN]çqPJÅyð‡dØèaÂ=í~B8î½gMD£«Ïq‹%@újñ]´b+ȬÏòs³ÒÑ*´M*¾h8+Z­V»•@©Ö+‰Mç­°}Éä…M³Vo¦-é´¯·ÁwH}@¾|­ ¾¾ÂƒÕ‚Yò¯Ãù4 +endstream +endobj +854 0 obj +<< +/Filter /FlateDecode +/Length 575 +/Subtype /Type1C +>> +stream +H‰|PMhaݯùkmH[uµ4’|Ú¦IŒ…46¨hLµŠØºÉnšÅv7ì®%9‰†ÔÊP(íE¤zx(%´Eô¦èEE<ˆ—Ñ‹óµ_îÆ‹'çð˜÷ófÄX[„PÏå±És‰‰óEEäø¤"ŽÊ³|L–xÓõ7"‡­ä˜“¥ýtqjÿ‚ ^wÀ›®—äËA¦¡Ï;19oÌÎä4|* ùLjb؇CÁ`°‰Cx„—ÓNUM˜Sñ˜”‘•¼¬pšÀûñÈì,nF¨XTA™7Å¿aQÅ‚¨ås†9#óŠÀcMáxaŽSn`Ùtþ¡Ùÿ¬Â¢„,|QM–Ò QŜČ¹¹%#ß”4ET žš(æ<Œy!ËÕÁt1‡šcŒÄÔ‘…Tªuò£Ž <^·T­¤²—lTì°H_±4 +l°k§˜n±`’Æ}GÃ>Õì!J n'›¬ÙQ“¹ T†Q´ƒè,³ëOžnm‹k\&›½ré™XóºH´ V’+Znh…n H{'Yê§}tœžÙ aèýýõ” ƒí÷Þ¡VöÅÃõÒ¾R,=]x¾/ Ü]~_sqUp8 ·µÎ#à WÏ×m¾}ü ®žÝkßio25_˜ó¬œ°=Z][ª¹·g'ýñP{ÏÛN;\·tRÒ¡O×õ{º^×ßêC*èà7¤U½•fõOz›g9=íl«:ÛwÀÑö%§óõT Ï +endstream +endobj +855 0 obj +<< +/Filter /FlateDecode +/Length 3579 +/Subtype /Type1C +>> +stream +H‰|UiTW®²©jÒ&ÔCºLUGˆˆ¬nÑÁ#‹AT˜Qié†nEÀfÅؘAih ÇdPpeUp£"‹"‚²´AQ ш‰ç$“[øÈÉø'¿rÞ9÷¼ïݺßýꞯ^á˜Ù Çñ½Öûú,Ü¢QËšØE_(££åš©$Ç‚ó¶fc"p2ƒ„ÔJ£Upœ€—$’¡oh˜“ÇÄ“äöé=¬B&ùFzj‡¦Ý” ÃÂ$¼œEÈ‚¾|ç&ˆŠ‡ìÓlµkâd‰æBZ Öx#XŠ@¤¥«‹/UUÇ_T©4{#£Jâ*9ɹ$¾c0+Ù´CT5hm†&ØÕ$Õ…æ|~v=mD6)É2ò§Œ8ð#">Üƈne‹ë øl‡ÇÁJú2ð5’­ö‹Ung/o .”Êî1ãW|¸LûÕh9r^·Þ6D,ÑöÀ‰NPôXðÉgŒzYWN']}˜`dÀéÙØÏc¾÷WpÙbêíÓÒë-¤A}è/Þ>š-ö#Š.772ÏÊ·mYµ|—æc ©—Cƒ +'=¢W­Et¡@3õ2àݽCx¾ ÔÏEü<ðërâíÄèƤ MÈ[ŒÔIg‹Áö–\.ªù8‡Ô©3Õj)Ú3-´æ1x<ÁaÂ$â½'X=$娃È))Í­fÀ¦y£‡žsý{ÈÒÀÍEqlâz"ùÊýä>}ûPƒòæ­¥\IDh^(P§Kå.À +ôäÔ¤ŸñÞQÔ"®UNöc$Tñ&¢Uhý¯k·®õ}ñ/|M” Žkiøp¼ˆÐ–åW¹1Õÿ´æÒ½&é3ÿdHWïyÁW‚{Õ¬>ƒ L+ÔaAˤƒËa6›ý^ÚÚ™Ã=¨mè;ÏŽhš”+¥ë·†­d©~=_G\ Ù¼[]VÙ!m¾^od%€ #T=†î~Áø6ªŸ_ *º©Á•û'܉9$JùÍ%»AE>¦;a A½<]›W{òºy6yRq2"G'Úl+éO3ò·{’­«¾§ºø‹cô~Uˆv3ƒ–:ü–÷/oÁ¹ùΡåU}®‡ ºN%l.ô`ÍVÚ s‘|1ø° à*'ônþFÞ7Ì[Ž‰ú²é#730ðן+ÚÛ¹ö£0C +¸ê¿›Ø¦@çRô³Î?ý«ÍÜ°ýuqEî-üGç#—LùΟ‹Ô»õ¹‰¬D›e„£½ 6 +Ä"Þ“·¥Q>¨¡Ì8‰ýæÎÏÌG!Ÿ”ÆÒÚ ÓÏõÙ C+ïEÇ!JèwR-|#o’ß'yK#ªå߸’’R¡êl7”NɆô÷…Åä‘¢’Ì‹Ìз ·¹ŠÊÂú6éýDCäU¶*¿ÈñÞ”þ/97ìOçæ—æÔ0¯ÛÃý¶Î‰‰Ïþz'©ou±G`¼5HdT©Šÿí‘”·Ï|”Os™2 Œ›C¶‹Hˆì"IÒvìJ‚¬6tXWŽ€|ˆJå—Ù¤—ëjë¤à#z‹ì‚öï`‹‚ˆówÎÜb~Ì[Á¥‰ÑFý\?d!¥ Þ ëÞt5VÔ\bsH*õXñ%xДá°.-ã0»ó`D„?³]y©åàg_ë8I§¶[™Ä{vÃîdkã0TP©ð™ eÈ}Jä~UÍqÝ ÷ûwàÅÁ½ûOÈŠñ V…Ds:hqZ„ëÂt»Ø1¨ ÏäœÊ>É>*l®½Ï¼jXú7Ž2 ѦՋý¶Öµígu'uyyRɦ´nëÆk„kcÁ Z«Ùõe(³pm˜½½?¢úrí¡s\ÑcâTü¶Ó[äüÂ=²ûÁæwü§àT1'iÓö(’øU]SŠkLP:Bøa4ªÓ‰¯%†Vz1hæ;ä¦çЂQ;°¸W{÷›-(ÍõþC噆R~Pì2™KÌ<”qˆ¥ >BŒÃ?ž½ùõîÓ±ÎúmÁ§¹­>U+•èÒÃÊv˜ÛŽ×¼€¼!¿’hý‰ì3…R“8äŒ>uCb4Í7Ùƒ}ÿ7g®°©íÄÁ]J­?ãò¹,uœ¾n;vmÐÄüXâœÉIP”à·G°¼§ ïö*«5¨‰3ŠN&ݨÍt\cc¶îúè[¥:hµ‚,F”PPÁ7ˆD Ä$„  àXÊI$RÄF…IUÄúB«h¥:bÈ´R¥­ÇÞe>œé·ŽÎ´wæžsïÙïž{ À‹Knì¾ã°|]Ép=ÄmúT:i½!e›´I¿*L‘Þ32W"=6_‡©^¾n|)‚c€ºÏÏæ52j¨p a&]ê7v ñä@4)|ïÁØ;Ç= ¬e ‰¤+¾šg¯ILYÕr5ç"}¹§Ê}’=ÙV×b8%ÔýK–Ë1fj’éÍÚ=£Qn_ƒúå1K Á]7û¯¶o\geÊrK z…´ϳ ÿQ¯Œ~qï?xH[Iå~Ž9eõ¸.ÐW,dQ“Z%<͵rGjž^Ť볲rv2ù RŠê0Š&ûo»¢üÔ ÌÀk‚F4ø⹇çÉR23RwÖe4««?RÄ6©ëw0Òí/k 3c%çàw0ç…rV’žFzâ²fˆ‚xb +‰¦¢à­V«hÆ|5µêa¥Ð²Ðï°·ý.øµ×;}ê£î÷NðáYª-Õû+w•Ë}Žö:c±¨Ýk©µŒcÚ«[NtÐ71,jðA³Bf´E$¤äf¥1ÙzZŸŽ×ý‚:ε‚NÜΚHêta±ˆ,M.IŠ{­Ÿ@+ÈGÝôs œeÌéjOëE¬ßJ¬ßQ?´I`Á4WxpLbBc&)OÁ=bákœŒÝüèn¼\pòW14ñù2¤˜2}Šf>oC¼Õaðá̧ˆeÍ+dÏZ§}†D‘!óæ~qïù#Ï“gØÐ25D]çÅ7Œ¯ a¨)e`µñçw]¥|îƒ%ðAП( $zÛê­,nã~á"„´$XâV)d\ieiC uÛηwуgæŒÄk>ŒŒm»¬cÍf®R!EKñÔ³³¿˜¨Ë½Ø¦+ðÐUŽéæÜ'¯Ð\y‘¹œ¥*H¨Ë–ü}%yôêؤ•Yl!I5š ò%–(£ÒÉyׄ±Ïöƒâ¡¸å,ÛyÚp–Iw×Ã[Úæe#ëÓì.ÅñÆ#žcºÜƒLÝUš¾¡JIO‹ŒXøekü@*{-ѹQ‘¼3%b}‚ݦb¤(4ï€W4èòC24*4ü²I¢Ë78TLFí÷†VÚÙ°ÿ€-ì&LF­)“Vj],TÁ8/¬DzÊØ›$¼Îq7ü ÷S~7ÞÐ ÔAêLº³I—”´šÞuå µAè¸-úmãϾ3gZ v¥ÙBô‘¦æ"w‡BšUì UÉ'Ré•"G4D? Ѽ†ø„œ‰ø´èÖç$“G™È<—Á¥sχ\ +9ÅýpéwœTìÃ1Ô »Pú>.½Gö +[guw‡.º*Þ¶æ6ÒÉï‘0 £Î!—£B]´a]¾r¢‰4žÎ9³çb(È“!¨X·V·Ö(|ßÛaèÈù1ŠäÒä—»(ú†[šù(…¢bbÇ ‘½ÑvØÚ8ÑBÚÒ¬éwÝD"ù_$Žò¥8æˆdØ»:•n·. CêôŽ= ËŸÉ¥)^9/.ðÂF¢‰2£e_¢À´¯p/“¸s{†F••–“µ¯n±¼®¬½º½¹«³ýáO°äð‡<œŽNänËÛ²7 /|~cn³ñèh‘KC‹oÀ“›";?IlŸÀOºŽ[È:GM}M¤‚S^rŽ!–Bµ™ÌRegªUhj–KkþcÚûÚ·cGæð䬗Üm¸6ØÞlÐ×2/aß[•H£wBç£ñ¬ê•m¿BXØó?‹ˆzIßï#ç¡‚üjæÅøáe’š­±\ §MÙÌ&&gF…+Ô¯Pr9^ÃA Çqõ‰¶pw9 S›´~l@ñØ1ÞÑþ1þ²±oòߎç‹eÿ +0c˜J› +endstream +endobj +856 0 obj +[870 0 R] +endobj +857 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +858 0 obj +<< +/Filter /FlateDecode +/Length 364 +>> +stream +H‰\’Ïnƒ0 Æï<…í¡‚IZ !M¬•8ìÆö4˜iè·Ÿ«NZ$ð/Äþø',ÊçÒu3„ï~°ÎÐv®ñ8 7o.xí\°¡éì|Ÿ­oÛ×cRqµL3ö¥k‡ Ë ü Åiö lžšá‚Û |ó úÎ]aóUT[«Û8þ`n†òlIè¥_ë!\ËveCëݼì¨æ/ãsâu¾3vhpk‹¾vW ²ˆFÙ™F kþ­ÇG)»´ö»öAsrQ .„ æ“ð‰8‘œ„s’X8&N“•)§Â)óQøÈ,š)k*ÑQ¬£DG±ŽÅ:z¿2bù®×Y_+aŬ…5³6Ìá³øÑìG‹Í~´ìQóõY˜-3âÓ°O#> û4âÇ°#~ û1âÁ°#ÿ¢À‡?enÝxôØÞ¼§ö®Wjí+w´sø¸uã0Uñü +0êv± +endstream +endobj +859 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +860 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +861 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/D/N/P/R/T/b/c/e/f/h/i/l/m/nine/o/one/r/s/space/t/two/v/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1134 0 R +/FontName /ZDZDZP+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +862 0 obj +<< +/Filter /FlateDecode +/Length 295 +>> +stream +H‰\‘Énà †ï<Å›C„ãÆY$d©rɇ.ªÛp`œ"ÕarðÛw¢T*̳0üȦ}n ßä;Œ0XgÎÓ5h„3^¬›ŒÕñ¶K«{/$%wËqlÝ0 ¥@~sŽa‡'3q%ä[0¬»ÀÃWÓ­@vWïpD¡€ºƒzéýk?"È”¶n ùm\Ö”óñ¹x„2í7¹=œ}¯1ôî‚B4jP'µ@gþù7Ûœvôw„*9¸(ȵÝ&&#T•Ï+>¯ÊÌ%sŽ©8f÷˜˜ q•¹bÞeÞ12˜™ÌMæ†ù”™Vû\sÏ5÷ù.2ü[Çü$Rîzék$Uúž¤«cÞÐO(‹§ø`(Ò +endstream +endobj +863 0 obj +[870 0 R] +endobj +864 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +865 0 obj +<< +/Filter /FlateDecode +/Length 339 +>> +stream +H‰\’ÏŠƒ0ÆïyŠÛC±ÕšP¡Ø<ìÖÝ°ÉØÖ¢=øö;“)]Ø€æòÍÌÇL’ª>Õ®ŸeòFÓÀ,»ÞÙÓxän½»TÚÞÌSü›¡õ"Áàf™fj×¢(dò—Ó¹:Úñ +k‘¼ ¡w7¹úªšµLš»÷?0€›åV–¥´Ða¢—Ö¿¶È$†mj‹÷ý¼l0æOñ¹xi<ïØŒ-L¾5ZwQlq•²¸à*8ûï>Í8ìÚ™ï6ˆ"%ñv‹rÅ\Ÿ™ÏÈk2Òd)sŠ¼ßGÆ ùÀ|@ÎY““&Ϙ3dµ‹Œ2kiçQ”GåÌ9±fÖÄœ_Q~Å>ùT'æ1{VäY]˜± …æZšjiö£É溚êê#ó16íÑjNY>gcî!àXâSˆó Iôž¯Å^b}âW€Š„£( +endstream +endobj +866 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +867 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +868 0 obj +<< +/Filter /FlateDecode +/Length 3924 +/Subtype /Type1C +>> +stream +H‰|T}TWŸa2“€0 Ù¡!Ù“™ÅoEQÔ²UÁ¢ˇhP" šŠ’”ˆX PDу+_rTT\äÄ$¨TÑúQ•ê*ºâúQ¶Öu[ÚÚ½_ܳìžã_{æœ;ï¾{ïïÞûîï=y`8Ž¿½xù‚Õ¤Ø<ƒN­‰3è'«tëÖ›Ü&–Wâ|€ˆg½4•¿>ù:’„[¾<>òâý®ùc$Ž‹Ä^φ2Öè2Ödd¬Éœ§ÏP„h.lÖ¬©Án9mXÎ榆††Ëi\”F¿VË%æMÚFnQVºÞ­7¨MZM•™É C9ƒÖ¨5äº7ßÖÆ錜VgZ¯5pjÁ¸N'Ä´ÎdPk´Õ† œÞmyGÍø?©8]'`qIY:·–h6œ:K3E@ÑgIךe2è´Æ) —åek¹™œF›a¸ðȧÀ8 °Ñ86N„MƱP '°™-ÁT$–(Áô¾Ã›!œ5‹Åa&ìÖñ¸7>Æá¿xDzTx´#‰H"ž°•"‘h¥¨‰¤Éud!i§ÆSubZ'þJÂH–Kž{†x¦yV{6{Mô2zÙFŒ‘9â¼·‡w¬w©÷+ŸŸÃ>÷|^ÐÁtýÒ^ÖÍ¿ìÆ9º›(ñ%Î8W 娗A³a Ï)Ä¡ó ¸W…ØE­^Ãl$èŽq¯[£Ñg´s¦ù„Ùß +Òúï3™ÂØl„ç«›öʤiÕÇ;ª½+¡ÑGÈ×ù5~³‹­3–Y>ù£Ur´ò[4²oº²‹Šüu)øBŒ–ô‚ôÑ/ÊÿE@ðâòeúžÝ†‘°R«æÿ‚'ÊÕÔÀ¨KÈ-’£ÅK‘äh! xˆ‰kȇù=³ª@æ®ËW 5„@EÞ…D#85vˆiË ÞóøÁ­®?Ò_g4nÞ”ÃwÖäQÐcQfÜÂDs:uêÈUúöŽ¤ç[ùËþà÷PÕõÃ9i?ÄA4Sz²¸§Úî¸Øs½ÉqE~;¹o”:鳜O”µ:òÐQke‹âvËÚ¥+Œêå*vųj_âž™ôù!Ë4T É·ÔÞMõ¹`±ÂËž2³#ß(íç£ÀÂÎíž;£ô +Dr”ƒ2àè=xBa xB!h‘/ÈÐl¶D¸ÜG(ENEcÐ44-&A0„=|ç°t·pŒMV¸í#üÅ><Évêó#Çw6*î4tw²M5½ò‹æÓN*[2–ŠT$$iXÛzfOmÓžÓŠ÷§ü‰‹ŽCÞŸd•WYú¼y¥ ºÚÞ¼òŠúnGÇšCk#ªâö›%ÝÔgǶv›^åßÕMª‘ìß?ÖÓû¹-¯+븲E³¬.\‘_\¸–µé˜=5§öžQüvO=zê‡ñ£XŽ¢XydÅ/Û ÚFt439Í77õ*`tßÓ Åu#¢‹ØšÖzW~¾¥ðÞÎM[k•µV²Ê”\£R jÖ¼ñS®'®e_jÛÖÌ‘ÏŒM—°¼®A«¤¿¨B[qÐ +¬ÐØ4d[]ùé fý–1ÛDöa&¹BÄhío …‹(Ñ=HWòc“]“ÄhÖìyˆù ÌQò“Ä4/*»ÊŸ½(¼UÎi Å ä¸uòÇÚo*¯ºo½ª:¦aüÏ.™ì «þoáò5LÏÞXBÜ4ý=w`ï#Kuür‘•`ØzÕüÐôtï'K¦`À*z·ÅZ” û­bõoë†6é>  ¸¥´­U‰ŸäüŠØ´¤mYiʪõäÑS§+;@íú"8Y¾MŒV잃¹Ô±¤ëÃöŸïl9¬,§¤[*’a¤ŽÂÒ‚’eÊæÕ«"+SOÞ1(«_•°ôOî¬üÇm 7û?´Á3»t xHåOÉÝTLëÅÌ~Å+ÀÃ3cùDÄic7°¥p;ÅõBÀ_Wª.Õ)ÏÂ)¦¦üËòÊ¿¾áèS~yò`¥4R†<æÆÚïä*K”¨”ÓÛ…§qF;Þn'øQ½Œ%'#?Aˆ?ü—êjŠêºÃàνY¬—5ëÞæÞ1š`UIhMÌDjEA˜ Ë£°`ƒ°€,ìÃ}@ä‘lHØe_À‚B$Ä}ðл‹(`¥U#IR¢(1£`BcÚæ\zÈLÏ®253û×™9ß÷ûÎþ~ß÷»(m°ëó@pÑ©Öv0V7fR¤[÷SpㆠÈŸ› ÌÄPksß}¢â>/¸Å’>.r!MGõD_yÊÀk\±)Fž`à†{›ÀŠ{c¾‹´UÛ°Àõ½úþ³"îB¼h¨õº÷´4鋪ˆËŒEý•<‚À/®ÏüûËÑä8+Ó 5(µ"þÇU} ÀbÜÁ},øó‹z¡©¾É$š(›`\½ÂõwÃ=íkýÐFë\˜¶äfµiÛ°™ip >o:ÿÍ(ÒõÜîã &µUpñ.á žfyàéµSà‚‚ÓĬýö½n{uµ‰6»°&MIS!•Ÿ«•J‰D“°ST›7±OðgažÄx¸­îÊ¥g˜â¢8™€œÓïÀô¸G.~™Z—½ +£àÓ_= žº;:èëd ¿Ãá³o¦<¿Olk/ U¬äì¸f„ºtÍÜ?Èx\ã TÜ95dpÎÒ©°W zOYs”Ž-KÄQKz‚r›~øå…”ÄVºQcP«Düi¤è@úW‚Q9YÞò·ZN¶ÐWZÇ|7¨ïz£#èdÁbáSŽÌü‚*U -UÉJ5%!z0|Ö!™„ÜYs}rK>ak9™xQFßw,„ ÊUòòr³¢½Ólow¨í2†/}t¡ÁÏËa¨Ä?¥±@Œû†A*<‰]Æa)èE¹›Ž%âÈucÕGåå:õ:="«F¦‘¸ˆª]HCü/ £20 &ÿ/ì—ä”_‹·4XOšèQÛÐð5j²/Òr‘ㄵт$^°y¯Pwúã`Ï°à,öÀàSâÔMi!­T«*4R”&ãòÔÁÝTtFÎÛEŒ'}u_aY¸!ÏPµô‚¨,9égÂÍ –F#ýû˜÷5¿ô‚}Ø^0#:!+¹”F@çê¾þ?Ð-”6Q¨[½àGä†mœNW ¸¾øí‹`õ ôï`7˜‡ë˜ãX3ù¯ÂÐèˆð~{¬úa,|ä pWHðCU.™ÃÜL° Û€'~<^8úùá×à °þµ‡0tÛþ¼¸wü¢¦êf°LÜiHO±YS£¹ÁD“s7Ûn,™C Ûû +\¶3Îû¹œAÎ`2‰ø0ÉO< "'üÚm¸Å`1´Ð“&vì:õÁûõú÷™óĉšê5Ôï¦'TøÉœú9¿ð ÃÁt?¥ËvOðe¼ÅòyÏ€–¥¾»:rû³ wÌGÌžÓï´‰{ÜãÞ3*…¶»1ë‘|Sõ«äøØÄì›EÌDqOñÑÁC9¯gK¬–R´çn@ []Áó^Þ<÷½®Þ‘7Lj´¦Üö#´ÌÖ]ù ÕÝ~òO¦Æ‰Õé”uG¨T…{œ×À3.ø `þÍÊþ*®™D¡Ê’ç¸hNÅpWÔ*jÕtº<5mõrÁÿb€C {¸çaÑøÝ‘áÁ¿m)~ƒ âz§ÞÕ/â××_*@™¹²ÄŒpÀþEÖƒN†Ä!/ åE™¡úƒ&µ›Ö£îS°hU»€ÖRGý·Â‡Ò̱C:þËáËß; +µÖÛÅ–1j¦dKJ[â}Ø*D¸‘7 ÿ5ìT&ªÓ«2ÑØhÏ©}ŠË[@‡0 ž’¿}4U—åϺó¯j4 +œòe™ næ6òÚü4; ¾õØ%|ð=öÓ¶3ë xk¡]ÚVtò…—p¸Q@‹À·ÃåŠe©BŠ¸”ÝG;+º¶ƒåB¾îâ6^³1v1k¬2ÔÔŠjõµu•tYÒáÜ2YqñaUÙ»æ\¡±±·ÅÕóב¾{—Á `#ø¯0G«ðUµD—_U„€ß=£ui{Ñ7̧B~Z½›{ÞláBx–µ\ˆ^5àV‡µÍêÍàðD€sh,S–+e°þCÈ÷+ø#n/úº9%Èãöº~ÏždÞǶ.[Œ÷r2ØÙE<èºõOS­n¥Û˜­\lΡ ™ C™ÂÇ®~ÿB’GêAs€PÔ^ò n‹&ÌÃP:Ønßï¶UW·ÒA]ŠÒ!O¢•1yµ? º“ gfŸÝéh?v¬…&?µ81ræMɇETæ5¥G˜C‡TûßÉŒ,Vû‰Vzù“‰ÔEÌôÞË\ÕÇlôO›Ù…8Â,ÍnΠöe«Š3Ù9‰¯‹*ׯ3r2#xÅh4vq˜o¼c$БÂ6ŽBÐѤq9Ý–“µjyýª•îìJðf—*øŸiÌ78 +endstream +endobj +869 0 obj +<< +/Filter /FlateDecode +/Length 4600 +/Subtype /Type1C +>> +stream +H‰|U{PgŸawfA``Ya×쌢 ‡<‚€¢"#QåTPð¸»È"oP$¾0*òÚ%w‰ADs "*ÅçEADÊ·ä,MDIŒG]ð¼OÉõ¬u÷-zU÷×ÕWÕ5Ý_ýýºû÷õД܆¢iÚmöü…ñ±Ñ>1…¹Æd}ln–odVºÞº#JÐ’«\Ò:ð8Ícäƒorxà’òÎÕ×.”œ¦í¹Ÿ‡R ³S ™~ºäì”$ãì¬lh]j¾øahhàd« ‘S'‹#2HŒÐg­5ˆK +óò yâ¼L]VnvVnr¾Aï'F¤§‹#!òÄ\Cž!w£ÕøžhÌ ÆüTC®˜L6×Éù\ƒ^ÌÏMÖ2’s׋YÖÿQSþÏU¢1S$±Ä¸L£U[’OŒybr¦ÞŸDɹE—µ!3?×hÈóóZ²´0Û Nõ†Š¢É¢e”‹‚ÒPÔ8[ÊWNM‘S¡4iKÅŒ¢lè=4FJLÅP±Tµ›ª§®POiz/ýƒM°M£Í=ÙrY•lPnŸbœ˜0FÇ\g~cYoÖÄ>Vø(v*^ØÆØfØ6ØØM·Ûh÷|Tò¨SöÞö›ío;¬r8æ0àðÆq«ã·Ï•roœæ8Õ9 :ÏtþÔ¹[é­LRæ)ÛÄòvéí4‘ãÛeår©Ä;\‚¯ñ8 ¾``E¯ð`U†ÿ¨fW|Ã,$:+uðÖ/´jÜð$E{¸H› @ö +møKÿ<ÔôOôßá¾5 Û3=ЖÃVH}I‡ý²ãÐÍ{Áþ— +r¨bèvøDBßyòô•«ëZããSôqñ§ô‡Ç,t üEv:Ò,FÆ‹Å´·F†«ÝhÑÐPÞ2(ro‹]XühÆdÁù:cb¹rPJÀÑð3L–Iån ÄR“âF;ó¬¿÷)Ðj5ý'ôžž‘’¨=4SßÜÖÐ¥yؘ/”†GEâ8TM w÷WpEàsOppïÁÇ@ j°µ…Ïk½¿¡_¡/ûAñdÁõ°jÁ¤P½ü¡átç=õÀ¬ïP˜–—«×ž@¦æhס+š;™ú¥Ñ›–— ±HßbUƒßÞÉœŸ¨3ÌŒ‰©¯ÎHRà,[îÀx™´Â ü&)q¡ˆEf"œEzAoR<…qug´Öžó¨dK’Kuz5Ž·âµÈ% / @&e[´<¾a×à3¦òèÓI ¸]Y;7jnÆ‚Ø؃ՙB6²Ì¦“Ý…½˜ýú_àØ“Ñ™Ø$4­ZP£Ù¼½¼t«Pý+Ÿ³$² +€z ö¤‘>~2i•Å›ßRQXžU:¡xêúèXÛ9Ñ«' §Fÿ'ÈCŒ}ñð ñ„ôÂÕ›ÒÖkKØ=7îæ«Ã¦ƒÊl1|8†J»u¯D8hªªüBÛ´¿ùÈYÍÝÆe‹æã¬U‘êH.mR’¬Íš‰.—*°vøO ³P+]fž“¤‡$ý+—FðGÒ¨@ðDR:ÕÔñàó¢Fõ/é\pX0+Tî4¿Ú¥î]ðWœŒn#Ñfñ‰øÛ—B5ðqúê¸0õ”?Õþaˆ_¼îÂÅ +áⱓíÕڛϫW¥¦ÆiUJ$=ßuH§[›¾>u‡°¬F×pA}öhs‡v„ÒóA„ùïi w­¼î®–¥žŠ×ħâ–Y©=òsgYj«Õ¬1sm„„õÀ–¸PõH +‚¾#˜Æ¢ÁÂàJ×¾ a ½L°üðdTƒ_Þ{yï[»WW•P¥;‡žî\É.``)ao0È\ºIÓ"À?€ ÕP·™/nî*~¨u_Ýé6á\sÃ¥›ê§‹¯ÍªÕK= -]7Ô7߬<¢=–¸øK?MøôÝ;uøxñ¦}_›š4÷Ng/OX“6CH`‘–w°ª¡ž›ÙŸ|¼0'*§°Ü´Eà¶ïi¸Ð-$“Z@ËoÏX¾c•ÇÌxøݳïÀ±óüöm'„àÈTg/ª™©Á58 ]ñS\ +8¶öÝÞ_Ý p»À^Š;º|¡BdVø­]Å„³î@5\¿/ܽzqx5Ø'ý8§CÛ=íºjfE¶D )Ó¼y_¹Y£û"P,0øÃpÔVh7m,7o¸H2- œIç”Ö+dÒ:É—Ç +¢×€r8èmˆIÈqâSÁr3H—g¿÷ÎÝnÔa(g,&Æ*r"€åî'Rp{{W8C†•ÅNrã±í_ãXv÷ö¬=©Tõ¢x=ªï¿Ù¶ù”ÐS“6÷@sÈßÕóË„²‰ÍSnýÞvÑ­tpÒ ÔÕ\¸>¤< ª`¤.•dÒu[Bø·!DiJlÉ–Bó*¬„*2o’±Rðó{?Kˆ‚ó)Wéü{»› +®X+G_–ƒäõ5‚@_¶l‘YÔn0‰M±Rp;ó7|”¸)Ì£„ÝÒ»±ããy°Á“Ø5VjŽe«àËÏûͯ+ÿæabk¦ò©›ù«ÝÁžíƒšúÞ†çµ?y˜ÙIæIæéZîÇÿÂáˆ2XëI +°)ýûž­¹¢iæ… 3³=`<îc ˆä#bëeØHfIF®_wE(wǨ·!±M8J‰àHJ ½,ƒ["x\<úàjB+;ô•j²r`!2dhè„=èÈ]óDG;iü„˜A«Ñ7~y%p9¤ÈŸ@A[_Pôx.ó (î,Ž‡Hwc”&E;„®tk4"rÄ#Á¨QAÙ€ˆrƒ,‡È1ƒ3€ÂŒ3uä>å’ûrÐ," *‘ŠdÕu]×]cX׊&¯­ìo†rkjªfººßûýÞïó}ß×à`°d® -]X + …¿HÍna,Õ˜Ñ[˜½¹ÅJø¯)<ß¾‚hN ‘ãœ-……íÛ¸)l,8Á–¢›OÁ*Äé°Ö½3cR;\O®C½Ó™¾Y²ñ¸»E!){"™IøtÙ¢$$bé3óX• ?-~¶A¡ð€ÇÚF «ãÑÙI²ð?¨HYWV›´×¬l‘ þè) +ÂF ÛÈk@W_è(íÆWF—®@´-]0RcÅG6ÐNAªð)¶;ÐzéYtVŽz|@~Ibð‚õ¶8ÄÏ}F fŠþZñû7½¼÷ƺVÃg°ŠÉRlN6ª‡Å°™*è´aÍδÌx®Éž¨jýþÂûciìQ>ŸB[5ˆÜƒ1cØ4îñêúHuw+WD2Yº‚1/Q®:W•Ç%*ScØø£•Ýã“•Õ<‹7‰À`„c¥ÖàˆÙÿ‚É‚=6ŒáÌ<*íí•Œ±ØÛÍŸ'«5ëfÑBvGpJD2¯‚V|.8M Ê_•À ´‰ôVÇ è»ZzÙÚý¶ðŒÁ-j¿wØá–^%§:§ÖéÅ4rQâÖ× ±µ sWp†E¹éGNı[ý†ŸóÕWDz=ùy<ÓYÁÜ-I;Å"o{´-Gί`Íõ+ú’FžV`U¯‘KÀ¸‰6Œq08ââ1ïBD¨BEµg„Vû±há +Gô•¯9¾X7Æ›F[8-^ýYXRÕ¦º>*&(¼'…ˆ1d«… +.<÷pRëyõo3—&ï·ÅGêxMžF‘'¦¿VñâÍ«×fmð9ì€e %c‰Õ6ˆÁҬдy3ú}Œœ^:€ûÔ„¾j„“þJdGF䱞¾oœäÕoD½§®ßdï•ûÆ⩶ËÅÒXnX¬”ZÿNÌ ÈlËY0·§˜õÔåêò‚óxÔ8 ±µŸ‘=φ}›ÇEóögîFæ7ç,):Å€~j€RÌ—Æ—æ‘°T‹˜Ù“{ Ù“Ѽ“E‹?·C®hÙS{°¼6\ÛÛÌkH×Àh€?VV$rIˆ"RîdßdïO—ý™5TÎü,†Šy4­íÕ¶pÈÕ‰²Õ²§L<Íæ™ÙŽŒö5§DsÚŠy5âò0ƒÆõ‘˜ƒªT[vZÇ5éë›ûØÑšpÕKGÁŠo¦ìÜ÷‡&J±í1ƒù· dû>`’OxÃðÆÔ«Ûu …"äº|%æs |è„gâO€yŒ¶³û­Æn÷ènÓÖmn1þþÞ‡o<¹ßøã4îh»üpŸh‚EŠ÷­Â™y4BDøw–L¨Jgq2â xᣇK=÷¥Åq*\¼ü;¦EÒîƒãŒŸN£×žãõ]­ýìÿM_Fî2õ ^¥S—ˆéœùœ‹¡á÷¥ðÆ÷ 2ᢒ +$3{EkÐ sÈg(À8¦¬õa—#óµÈ¹Ì:ÿvËÐ0ÔÂkIXm®Tg*¹(åáäpvwô÷ÿÚ1~o¨->úáÌÅ’FRì»–Íoé4‘©!qóÑ”hõÜ°¾ëâ5öÂy•ª˜‡å”V‘JΆú%y¦ò$Óyò9>!µÚPj«ò7¸úÖlVÞ³][HÚ9&¿ÉÂÒû·ÿÅ«ïG;·ZøUg–ÔŠë«Ë:ûúd95\ã[¢,)ø|‹,7y¹ðê½Ý¯ã-Æ2ËrRÅ©™²ƒ‡öV]8‚_$ò•xÂ,s³Ç`¿à±ðoÑ2od~ …R^¥¡MÉ\j]ïqÛé»sU¼(B¥ÈRe²åã‹yå Qµï³>°óU Š}F`¡l‡é0ƒËýï*x)½ö÷Þ9ì—o¹½{S}Ýb¹ÀH›ë;=\ú·¶’ýoiù2X‰_?ýGíôïšÓ§O_<íwÚô ÓÙBÓ¿ë…8€B7¦sÊ-HŠçáìæáþÎÂõ]‡ûãÔ<> +endobj +871 0 obj +<< +/Filter /FlateDecode +/Length 8156 +/Length1 11650 +>> +stream +H‰ÄVkTSWþι÷†AHHÈÄ HÂû!*‰øFD-DEðÚŠV[lK«•Zk•ZêÐVí…¶¾ªV´vj«µÚ©NgƳœ®5®éš®Y³V­†ÙI;ÖÇþ“{rÎÙ眽¿oŸ}÷¹`°*§ÏÌ̉Œ³‚$¢:­¡ÕÛ^î¨)X: ü£aÕ +Óòm&@J YFSûÂV®=ëTShüû…‹×4ý-¡û Nâòšx›vN\$yH_A3 4û„X?Oã¤æÖO'LȤî é¯_ÜÖàEDõSu4nlõv´³{ø°®¢õ¦%ÞÖh—iÜCöúÛÛ–¯îK{‰¾}Ù‚vÔu\¢ñ<¿~ÒñG~­ÝÍ–¾´[Ñ‚&N8W㊠¦”EÒ(_ñs³ë$á`=y‹zl$U~RËkþ³Ð¤ Jª upH¨&lDx„V©7D£cFÆÆÅ'Œ2™å¤äKjZºÕfÏÈÌÊÎÉÍË/(]4fì¸â’RG™Ó5¾Ü=¡bâ¤ÉS¦N›^9£jfõ¬šÇ<µ³çÔÍ÷x½wþ«{ööözïØÑãž8yúÌGCg?>wþ“O?»ðù¥‹W¾¼úÕ­kÖ®ÇsG¶lX¾­¯½‹§'ž  Ûø"N]îéØ„Fà©íM×_Þ}pñª¥ËÚÚ[—|k«±nÑJ ùù†-¯¼¾kÿ¾¾7¼ñö;xk`P¡Í¿¦Úí×"ò?¼A~Љaæel»8Ý4Æœ˜3<ðf/« +H#L‘÷¥=®²Øav˜‹ì »ãÿ‘N‘NQ… ¨Œ„BC1;ádQ "i—Q0"1‰XÄ! EVÍH„L±ŒXŠ4¤Ã +ìÈ@&²ä"ù(@!F£c0ãPŒ”Â28áÂx”à ¨ÀDLÂdLÁTLÃtTbª0Õ˜…<j1sP‡¹˜‡ÇQ/æã::°k±OàI¬'mÀF<…MØŒ-äÆ­t"Ï  Ûð,ž 8õ¼ˆíØ—°=x»ð +vãUìÁkØ‹}èÅëØ7Ї7q¿A?ÞÂÛxq‡ñ. `ïá}|€#8Šc8Žø'q +§ñÎ`gqã<>Áoñ).à3|Ž‹¸„/p_â +®â+ü_ãcÕ#ß’_aVSø,ŲŸ$­X‚jÛÐŽÔ.DóýÕMÿCCËC’EX‰åðçˆÿ7sE[Eˆ³|i¾ìá›ô6 +uâñ¶d”Fñ4&³,wðgÜÀ7´ç +é;O6N’å÷ U?!í%ô»è4»é„·Ò©wR$¬&†mä½&Šy35GÓ(¶Üd«˜¢0Ÿ"4¢Ö¤S I{%‹dÿ.~#*bŸ¸Cì׉Ùb¼¨Î G„Aa·°EØ(x£0B8÷ñ!¾•oâ|9ŸÍÓx»ÌγÓìÛË,LçÇÌT”¯|„üŸ¸[øö—à ‡ŸüŒÿAäÓs>ÌŽ(ƒ>R§¦ V©$Qà ¶AŠw—©k~—ìlª±Ûé6qUw(°zŒEµf\ QBÒkæŠø/‘Ýf¥GáévÛl¾Ù9À„d§Émjö6*B2µ&EtÉ^Sã€ÃÑUí1S€9®¶ÒãïˆÉ&w³”\îU0ÃcŽU$×èÚXocíLœ)›)ß"ÛÖGk÷6>r¥”ì,½õÐæÒï"­ÎXd· mº \&?È®rEpy[êÇ×;í¶r“"ÈÎAÆ%×*—ìê’iBeg´êçJÚ¢Ë[‡×À­”ÅRßßUܱJEm­"ÉNRÁdg‹Âe§¢I¶ÛLåÍãí¶”¥á3N1¨•àoM¦.t9e…ynr˜£Ú£8êkýöì6šri]7v[†ÝvÞn+Uôévpÿ 'ù/Rr°ìˆãe* ‚Ä2ÊÆA\ìh®'ˆAŃÃk6¬Yf­Yk¡Ê(s›ï:%ºÄÍâéœþûÐì¢Hä´7ÒÄZÔ lÌÈÈŠ ²”°Â‚B#ïmˆ+Ÿ¬oݬîô}›¤æ/ÛBÓã}w†ëx¯TAhHG=ݹ“þ­ÁÈr™™Ç5Ü»Ù'}wGO7ò$š¯oP¾§\ïHËÍŽŠ‰9r¸™lÖ +aÁ¦ÉÉÎ2ÇÅD ºwX +“X^@_©5ÝšE +¸1ùCŠœ”ŸSŸ—ÉÌA*ƒþ¾¬D(,a:`x÷:>:ɤM4FdåTõ_l˜X¢™çk*7Çç¯{©<;/69ÜíiY´“yñƽ'å­Õ“,•I #$·(º#’c’n›•hŒRqÿX¥—=rß5¦»·žñû`õðM)D¼M9"Ë‘fÔµ.8•©óR4LÅb˜.36XK§“jäºÅafò•QÉbr†`!È*?|1*7Çïo™“R,)ùyºÂ‚ÜI%~íäá¶9SËâ÷—jؼvõŽ©Ö•Ñ:k¿ïößÝS–¸³G{bª8aéäÙ[Xðñ¾šªÝ¾¿Nt›Ãò"Æ-œ{n‡·í+˜á¬ê'̳éSA/^¡Wé¨HÉãåâ|^4–ë5<šBy|n¸Æ NgÙ,_.Ò«Ì)0alöx""ˆvdÙÓ ’n Ó0ÞfRi$Vá§Dg”•KŸLùZ"–ŸC„Jx®Qeó,)V¦Šg~Qa /ÌÕã(ƒœÁ-ÌÊ´æ¹*ƒJ6'v˜‚¹h]ö/¦«4¶‰ô ûûæðŒ=q<öŒÛñøŠcãøNì8¶“8dÈ… )Ê‚pìr4 ° [µ´ ]ŽTËŠ…¦b[ØC+uE«RmÙ²*ôO·RùS©ª–UÕ®Vªú£ªZ©j‰é;ã€jù×Ø?Þç}Ž÷™ÁfyË©-¢¹Æm~ë.cÚíÞ›tˆQ!É +ÉØíî×æ"WÔB˜P_i®Ü¬sí‘ð?fm„Bb„œ·6Ž(îê7›$ÇÆ“áà•€÷hgGIf tÓ,¶¿{ó Ù*x¶áÑåË 3⑱ã Ì:äBn„óˆ5{.„XÑÄñ.shѦ(ÔÙBMô¦2%œáÓqäϨEÉ„Dþ™$GJf¾ýå©…Ç£ež¯Ô¶ÿ⮂,rŽHYk S ŽÕVÕÑ(RHUS‹À ÅtårÎëÂÁòp,¸|ÌåDÔåÃDR§ @:Vlç¼ xÔtØÕÁâkƒE5>J¨Eˆ6™ ‹¼ÆR.Ñ~ ¨qéYÆL9sÅÆÝOãUËÁÍ—_48éš3´¯„ê}³ëk²³Ã³{þÃdª“ƒ“ +vä+ONðrü%ïû×HADÁFŸþ›þæ¯ëv–7NdÄd¦—˜VRDk›ˆ)Ø «ú–:ÈJ\'çáDÎÊñê‚=v‘(Œ°½~œE1t¨« R“ÀÊå£@ãÍ;ƒ­š °ú–¦¬MeJ‹àÁ3 1d dh‘Z‹ u%¤÷‡p‡ýVA5_Vû‘nô–ÎDaÒa‰ÔÞ¼8öè·É¥ÁX%驼q¦) Ò:04w÷§‰>ÛÃ÷•’¯N_/pœhI3’~¹"¾«¦³ºÑf¯K>H¦±¹<÷—³[—7@„8º>Y½ìT¸X„W÷Ç%+„©y´yãŸKˆü_õ_p:H…¡ /![~Ù"@gŽ•ýÁ4ÉéWš×Ò^Ïé‘×Îä¼:ê€Þp—º5*Ö´%³yQ0!Ò/0¢yÁ¢:eÒ`;PåÔÿCœ=ûû‹v~Ü|òý_7¿| ýàÂÔÏ]úhTªŸÙy7>Cò÷Hz˵?ž}ç¿?k¼¼øÆÉæËÍ¿þüVóâÖ;7p-‘Uà»yR‹tý>ŠN ‚z“L98–)¢*?÷RIõ’E¥º úH9Ç.¸eÕ…ÚÑRŽ’‡Z$G£Ïè…DI‡aj-S²Ú׃UhzÐ/DH8—R/A·¸ö¤rYÏÚÝ¢±{ -û8/ÔEçQßúãÊã§ëu¹f çÛsJ*lî 8Ìt¤Ä]÷?Uçðüwlœ‘D5†$ý»ÖoZ9ì0›Í6#|±ï…¼‡Ý\_•*Ù¦åWõ*›ÿ¸n¤Üï¬íIœŠÈ =c½1Uä6mõ³1‚X]ôõ‹ÔX àÙ¥a½HãÉ5ÌñøsÐN”†Ti_Ã]@6;´;= WO¡(©rF¡pN5´j°ŸÖ¢GSó¢ qç§ü!.ý‰˜ç¡ôÔh!„ ÌHzÕB`ín uøtNÓŸ-û D/Ò¨R£Ç–ŸKûóB÷pª‘z/ÚÒwìHyË3žNøCçû™mCí½C·?p¶õŒãòc;¿M™Ø±3ªô4‘dC~C°¹2íÍ/¤rû¦-LðËbÔ€KŽÿÚ•'ŸdTWÍ3»‰AÕÊ©N ÀˆüÌR—AÇd_G«9‰™µî LFxÑa^èá¿rë5 „èýAv3èùUѸƒK5Єü¾5¢ÿQ]®±Mg?ï{ŽcûÄ—cßï—8¾;¾Ç—›Æ!&qÈe†&4²BHP’–Ž²)Tt%UÛ5¬e*­R MhU?°• ¦uê>l“úM[ŇMšÐšªMš´Š™½ï9N€oøäÏó¼ÿçÿüþOê®g¦÷PP¥2+6>øøP­Ùðº°{þùÚœ·{•žž+ 9¾-½£tuß1gµÖÐ/¿ÿ|i.¶kã9{"{ä‚—«á×ê†È¯¶†Q::@<',ûai´8üE0Þ&• K9Ä* +%H:@F,¿=l´s)9SˆÈÓ€m¡ôô˜fÞH¾fy™àVTQÝßGÁ¾õVN׶a0!¦@éøS9¹W:.â$xã0À=‹wǽy–õ ”Ç&•-ƒ@€5"nqïz·×læW,'’¶èóÿ=ýÆk#̺*3òÅ÷ )•éo­Co»kÔ1ñ—õʱ·H[ñ[÷&šîzr|J>ñ›lÝV¸œ[‰‡G +×(u:ápêÙšÑ6]}ºq©©\ Ç—{Ë ®_ï§RcþÌÀÜÇÄ´ÊòÝåªÏW"MÇ[öÔlþå ®uüÁ½åLphÉlr|'3î³÷X%#s%bŸ0få`ÂgBÃÍ`!$‡C$HÁ?ñá¦uš‚Æ8ežtÄPôZ´=:¸ÊáÓ]ÙÙ›GICuÀ+®„àéÅ#ôØi–c‹ÃámŒ„+rÊàÏè þ¡Au%XulÙ>R(¼¼Vf6Ó³–@)´pó\Ò‘"y²j¥jæ‚ÿXgX½o}λÏÐý&â£tnÔñËL´;;êiPxSpÊ)Sÿ$¬(©F¯S@, (‹ Ø–6YF+§ŽÚ<œ”Q±R$y9Oj®·ä½&€A:F$£±]O1lhÈ@}ò1'Ó¤ËS[[À;•J¶ý%·äkö§àÇ‘]g‡UÍÍîR1gDô°”š™MzªÁ Ðc)j9Y( +ñ|"ÌRl6ÂOa£Í´‘ÖjB^»‘#úôY&QÕ‚UVn—áÞÉÄêÞ)¤q\r6”è‘C®å,Æ'ü HÔÜvRëTãºà.îÙwç Ô¥Ïe–ƒF¶¥›N$ÇZٹǚѱى߷úÓÂÄÖå¦"'O Ž†]ý‰‹ÿûèüç(™Ú•Fª{/°/‰Ñè™·oïNh`s;i6PoVÂ+X{“× 041Pú8É*ÐäíRv‹‰R"{=<9õÙÀˆIá.‡®`¦ÐLÛW¶š€dcrUÃçP1® §Øþ?û’È_¦‘·hUòj²Œ´-k‡HIë€Ú⊕¾£š,4KkhTWÄ2“„ãPT¿¬ºøy®ev¾&¾¬iåê>r=~ÉÐ]Àz€ÍÅÈïlê>Zñ$â«!E3q{zß Çñù8ÔÑú¯^7l¹ Éâ¡Á-s=<Ï5" +>©o¬d˜%«“O¶¯žoäâê%m± òGuOÏ e‰fÀ{£‘þ²=Ãlœ±3ì ¯pš~÷–»³¼mË©Ý´S ݵ=Uô³ÕÑ"Øó#–êtgS¦±MùT M2OÌãÀ¨úɈ¥uŠ´f2çÛ1ü RGkñ3:-J â 8i +q2qp 9‚Úb/Ï>iÆ&švÛžZñÄ’kô4Û.&¸à°ù­ÌÕ °T®„(%‰WÖV‹ +a.ݶØ2Å…È2T±,x¯­ó̹uÆï{yμlü{,aÞ_,dž‘+Ñ‘Xï’¿@ýjº,‰.ª=«Ó§Œ¶È Ç <¡ð27 Ðíâñáé¶Šàƒ—ýÝÛ•{¿s5?|÷Ù?\üã¯ÁŸ\Üâ5º¯Ï&ßä¨2xû«û +Í_?¹pëðXTüì4fNÝÔQÀJ·ø¯aGku£ƒˆ:F”‰Q!ïBbáÐæ7ÓýÈØR1tçer.¢¤`–P®ù³„ Õ·A^Í`•`V·+ÆÄ#C#ubÛF ++Xšµ´{"@)ya:Èô˜HÊœà§úäùÉJW:ŸScM½ͤ(ÍtòÕÙèfe©\óG;öÅ´°4äÎO„gºŒZ.j öÑšÓ䡸³®ÊrÑÙˆÉ|©öåùbÓĘ® F–X+wz„wȈDÇ„ª X¡RÌ¢­ŽV+¼À‡Tó’ }Øax$Bž€zê ënU‹ÝRU$»ð“f‰…‡³¯•ÞlGf³BBë.»ož³é‹¥Š0ÙS齺¡ÉÎõͦvh¼:¬sÕUn¬èR|£ª·ëÝÛãI%”’ేwáš +„ äS!¯×P@á“+h)|9 -Sä’·CAÓaã9½¦Ÿ„f!‘’Á÷âNu½ù?–þÀã”f'ùa ³ë•É½?Ø“r:Ü3/¹ +•ûÚêÆaµ¢LéLé½Â|!ôÑBÐåÑùo¯×ÏdÔÀ[špº<ÑQ§=§a9»Úvd$YèdFßÈÔ¹Ðt"oÑÙ­nÛþäHàÈ!·ˆú,?üž£Ö'‘y`\Ø*FJI¢ÄgÒ@=BN!H…«:'z 7~ dœ,^.—’{EÇOå8Üêñ7k8«ìœ51¯ïVÁäò¦öÞÅùý3¼LùÇ®wlÝýG»·žþv‘ñWÃã ¨¢öÃûTíIšh +¥dŒ Í^MP^׈+¹­§eJ°•ñ RÐÚ —±H-z|ш!'»“ÛÄ]ñ‹[èQÞ–û§¶Ê»“$—gá7½óã'hÜ9vÉÌ(’ÍöŠÝGG˜7o©(OÂ?òÚRRqîŒÍ0ð)8XKêrc@®:;ÒýlòÀÁI.¨ÄÇþÜýmµ„–G܉ÌÃä]²Š¸& X ÚE;èþÿ³_µ±M•QøÜï¶+¬ëÇèڭ뺺• º¶E[·–e@YŠV\Ìt L7Æ ++Xù\êFæ !‹ +NB âG !€!Q Æ„ ?$11A" †ðÃŒÄ,>ïí0†(ÿôvÏîyßûžsÏ9Ïûq®ô³V“QZéfßeZ9îZÔ¾lÆxCj1à./á0OXíÚ +"”Â\™W¸ÏÃ{—X«CGüßÌs-—–¬*ö5Y¼yIkh0 +T¬Hw‹ïs}“5³…f1êçœþvq×ÇÁµþ‚š¨(F ¥5‡²¿N1cwnKW0û¨jªýÎBœÖúJC…¡5ÍLx«3púòÙÎ"{¡Íœ¯oõêàsè¾ÏìBÍîÖ¿[Ǩû©Ål ZÌ9ÏãûÒ4\²ø[<‡«½ÞÖ€…ï9Ø\úÑ)QÕ˜É4.ð´n¬mjnÙ ^åêÆC6‘9ov£úì;\„Óý˜ãÚ7ˆjL‚uî{ÙÉ/F9ëž=w´I؉Ȃ4¯É㯵 –yœOosðÍ¢÷ºK‹¶‚|lÈyI!¨ú»Aåª4¸‹¼{ñ ¢î= b‘ÐÀHa%/û³±YY‰Yƒ³ƒ¯zz;|¥>Ó¾—j# Êó縕Ó%ÎÖg|»ÜÕ®üBOñ+Å1×ñá.VÑøáÜ£oÙ[Yù³ý‹J[Å*¢Eæe}kMQwž(ED‘ó}Öd‘„³5ÂuÌ£54Õz\ÁÍU–Y…™ ò V)‹¨±üŠ«ÄQ4Ëšo9Ê[Y@H ¹°~gÔåŠÅÀÝ›_êFääØyçÖèáÙ!©_Tõõ½6{Äc×ûÛ*]ÙËö'O`®Í¯3}0a¯m +§ëgZíFGUiöfÛäŽÖŽ|ó­2—¨¬H$ø/cÕlÖ§ºl;÷vcIq#ˆuy槗ÿ1öéOžª9†€ƒ×.žÏ_x“=|e«”ír ãdœ«š†Tšµ)Ljn+ÛsLO».ÉÓº'T~§³|?¥¸ï©W8Dqi’NÉ:æÚ(…þQ>‚þY”–Vq2ƺøQ +qgh„?O.ŒïÄ=$|[›)Žv÷.´û ÚIa7%¹+4Imؘ`‡Ý±³í—ÏÓiŒÚÅqê•”‘.P§ØÀ7È[%,BØÇÙ Ý1Jˆ]”RÌx6¥>O‰iõž–ÚPã…é ñ"üß©ÆWž¤ˆø úoQX< +ýt¶Jx?uISܘðUñGè|ìMˆ¥ƒº`ŸùÜ#ÈÐ3Qm¦G| ÁGâ‡Q•÷âÞ+\‡^cÒÐÁxÁ‡| Fè$ ’‹(Æò"z(ŒfèW|?w÷³ðï"ò±‹ÿ 6ÿ,Oªœ¤ üîT}Ûw†‘‡cÔÿà8ø’Ðì¦àÓ°8BãR)%xçÎQxW: ®«\'ç8ã9«Ç#ðŸÙîa1C?‰÷¦ào±·3»°·•ÅƒœfTýq<×,çâYJh\v2>UÛÀøTvCcUÞ¦¨“qÉÆNç’ÝU>1Œ7ä0Î8Tu&©KÙ„¸iÅåxÏúÔ«¼N'ãRźþy(Ârýˆ°šö³ü¨`>z÷º\[å’õƒOm0Ý0rÕ£r8¢ŽKÊJÈ È,Ö ˜Ûç€Í4 ßrvœ÷–Ö²½Ópæñ€Û—ËAxê\½q¿‘ƒ|{‰Ýq"ýÉÃëDy/íD3LÀw9äGˆL €Ÿs(€¯æ:"Ë6"ë‘ÍHTH`gÖa";¶ý"+p‚ȘœÏÿÇì»D›HT×OFœ€lŠÜ¢íècOtàÞAW@ZÅCYÐÊÉ"ä +M–!7h²´c$'ê!•ß“9ª¤Mæi&íÓdýš,BþZ“eÈ×569só–Ȧµ}eë‡Ö¤ÓeþpØ¿¼9ïèðuttoìLER«­‹ši EÿZê£2ZOC´†Òø•‘_jaü_Ž1QŠS~> ¾wÓFŒ¤tSh¯¦ô^„ölèuç(!GÐmÈò_\Mã|1h›7Ã,ÎϘf¸3rj΀ÉDføéÍÂÂ×J|¾?;&~ñ +endstream +endobj +872 0 obj +[1137 0 R] +endobj +873 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +874 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 1138 0 R +/FontName /EFZRMV+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +875 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +877 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1139 0 R +/FontName /UQZJCP+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +878 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +880 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +882 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +883 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/N/b/e/m/nine/o/one/r/space/two/v/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1142 0 R +/FontName /SXECAT+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +884 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +885 0 obj +[1137 0 R] +endobj +886 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +887 0 obj +<< +/K 1143 0 R +/P 188 0 R +/S /P +>> +endobj +888 0 obj +<< +/K [955 0 R 957 0 R 959 0 R 961 0 R 963 0 R] +/P 189 0 R +/S /L +>> +endobj +889 0 obj +<< +/K [1003 0 R 1005 0 R 1007 0 R 1009 0 R 1011 0 R 1013 0 R 1015 0 R 1017 0 R] +/P 189 0 R +/S /L +>> +endobj +890 0 obj +<< +/K [1019 0 R 1021 0 R 1023 0 R 1025 0 R 1027 0 R 1029 0 R 1031 0 R] +/P 189 0 R +/S /L +>> +endobj +891 0 obj +<< +/K [1033 0 R 1035 0 R 1037 0 R] +/P 189 0 R +/S /L +>> +endobj +892 0 obj +<< +/K [1052 0 R 1054 0 R 1056 0 R] +/P 189 0 R +/S /L +>> +endobj +893 0 obj +<< +/K [1058 0 R 1060 0 R 1062 0 R 1064 0 R] +/P 189 0 R +/S /L +>> +endobj +894 0 obj +<< +/K [1066 0 R 1068 0 R] +/P 189 0 R +/S /L +>> +endobj +895 0 obj +<< +/K [1070 0 R 1072 0 R 1074 0 R 1076 0 R] +/P 189 0 R +/S /L +>> +endobj +896 0 obj +<< +/K [1078 0 R 1080 0 R 1082 0 R 1084 0 R] +/P 189 0 R +/S /L +>> +endobj +897 0 obj +<< +/C /Pa2 +/P 189 0 R +/S /Lauftext +>> +endobj +898 0 obj +<< +/C /Pa10 +/K 1144 0 R +/P 191 0 R +/S /NormalParagraphStyle +>> +endobj +899 0 obj +<< +/C /Pa10 +/K 1145 0 R +/P 195 0 R +/S /NormalParagraphStyle +>> +endobj +900 0 obj +<< +/K 1050 0 R +/P 196 0 R +/S /Story +>> +endobj +901 0 obj +<< +/K 1039 0 R +/P 196 0 R +/S /Story +>> +endobj +902 0 obj +<< +/K 1040 0 R +/P 196 0 R +/S /Story +>> +endobj +903 0 obj +<< +/K 1041 0 R +/P 196 0 R +/S /Story +>> +endobj +904 0 obj +<< +/K 1042 0 R +/P 196 0 R +/S /Story +>> +endobj +905 0 obj +<< +/K 1043 0 R +/P 196 0 R +/S /Story +>> +endobj +906 0 obj +<< +/K 1044 0 R +/P 196 0 R +/S /Story +>> +endobj +907 0 obj +<< +/K 1045 0 R +/P 196 0 R +/S /Story +>> +endobj +908 0 obj +<< +/K 1049 0 R +/P 196 0 R +/S /Story +>> +endobj +909 0 obj +<< +/K 1046 0 R +/P 196 0 R +/S /Story +>> +endobj +910 0 obj +<< +/K 1047 0 R +/P 196 0 R +/S /Story +>> +endobj +911 0 obj +<< +/K 1048 0 R +/P 196 0 R +/S /Story +>> +endobj +912 0 obj +<< +/C /Pa10 +/K 1146 0 R +/P 197 0 R +/S /NormalParagraphStyle +>> +endobj +913 0 obj +<< +/K 198 0 R +/P 1147 0 R +/S /TD +>> +endobj +914 0 obj +<< +/K [200 0 R 199 0 R] +/P 915 0 R +/S /Lbl +>> +endobj +915 0 obj +<< +/C /Pa12 +/K [914 0 R 201 0 R] +/P 1148 0 R +/S /LI +>> +endobj +916 0 obj +<< +/K [203 0 R 202 0 R] +/P 917 0 R +/S /Lbl +>> +endobj +917 0 obj +<< +/C /Pa12 +/K [916 0 R 204 0 R] +/P 1148 0 R +/S /LI +>> +endobj +918 0 obj +<< +/K [206 0 R 205 0 R] +/P 919 0 R +/S /Lbl +>> +endobj +919 0 obj +<< +/C /Pa12 +/K [918 0 R 207 0 R] +/P 1148 0 R +/S /LI +>> +endobj +920 0 obj +<< +/K [210 0 R 209 0 R] +/P 921 0 R +/S /Lbl +>> +endobj +921 0 obj +<< +/C /Pa12 +/K [920 0 R 211 0 R] +/P 1148 0 R +/S /LI +>> +endobj +922 0 obj +<< +/K 212 0 R +/P 1149 0 R +/S /TD +>> +endobj +923 0 obj +<< +/K [214 0 R 213 0 R] +/P 924 0 R +/S /Lbl +>> +endobj +924 0 obj +<< +/C /Pa12 +/K [923 0 R 215 0 R] +/P 1150 0 R +/S /LI +>> +endobj +925 0 obj +<< +/K [217 0 R 216 0 R] +/P 926 0 R +/S /Lbl +>> +endobj +926 0 obj +<< +/C /Pa12 +/K [925 0 R 218 0 R] +/P 1150 0 R +/S /LI +>> +endobj +927 0 obj +<< +/K 219 0 R +/P 1151 0 R +/S /TD +>> +endobj +928 0 obj +<< +/K [221 0 R 220 0 R] +/P 929 0 R +/S /Lbl +>> +endobj +929 0 obj +<< +/C /Pa12 +/K [928 0 R 222 0 R] +/P 1152 0 R +/S /LI +>> +endobj +930 0 obj +<< +/K [224 0 R 223 0 R] +/P 931 0 R +/S /Lbl +>> +endobj +931 0 obj +<< +/C /Pa12 +/K [930 0 R 225 0 R] +/P 1152 0 R +/S /LI +>> +endobj +932 0 obj +<< +/K [227 0 R 226 0 R] +/P 933 0 R +/S /Lbl +>> +endobj +933 0 obj +<< +/C /Pa12 +/K [932 0 R 228 0 R] +/P 1152 0 R +/S /LI +>> +endobj +934 0 obj +<< +/K [230 0 R 229 0 R] +/P 935 0 R +/S /Lbl +>> +endobj +935 0 obj +<< +/C /Pa12 +/K [934 0 R 231 0 R] +/P 1152 0 R +/S /LI +>> +endobj +936 0 obj +<< +/K [234 0 R 233 0 R] +/P 937 0 R +/S /Lbl +>> +endobj +937 0 obj +<< +/C /Pa12 +/K [936 0 R 235 0 R] +/P 1152 0 R +/S /LI +>> +endobj +938 0 obj +<< +/K [237 0 R 236 0 R] +/P 939 0 R +/S /Lbl +>> +endobj +939 0 obj +<< +/C /Pa12 +/K [938 0 R 238 0 R] +/P 1152 0 R +/S /LI +>> +endobj +940 0 obj +<< +/K [240 0 R 239 0 R] +/P 941 0 R +/S /Lbl +>> +endobj +941 0 obj +<< +/C /Pa12 +/K [940 0 R 241 0 R] +/P 1152 0 R +/S /LI +>> +endobj +942 0 obj +<< +/K [243 0 R 242 0 R] +/P 943 0 R +/S /Lbl +>> +endobj +943 0 obj +<< +/C /Pa12 +/K [942 0 R 244 0 R] +/P 1152 0 R +/S /LI +>> +endobj +944 0 obj +<< +/K [246 0 R 245 0 R] +/P 945 0 R +/S /Lbl +>> +endobj +945 0 obj +<< +/C /Pa12 +/K [944 0 R 247 0 R] +/P 1152 0 R +/S /LI +>> +endobj +946 0 obj +<< +/K 248 0 R +/P 1153 0 R +/S /TD +>> +endobj +947 0 obj +<< +/K [250 0 R 249 0 R] +/P 948 0 R +/S /Lbl +>> +endobj +948 0 obj +<< +/C /Pa12 +/K [947 0 R 251 0 R] +/P 1154 0 R +/S /LI +>> +endobj +949 0 obj +<< +/K [254 0 R 253 0 R] +/P 950 0 R +/S /Lbl +>> +endobj +950 0 obj +<< +/C /Pa12 +/K [949 0 R 255 0 R] +/P 1154 0 R +/S /LI +>> +endobj +951 0 obj +<< +/K [258 0 R 257 0 R] +/P 952 0 R +/S /Lbl +>> +endobj +952 0 obj +<< +/C /Pa12 +/K [951 0 R 259 0 R] +/P 1154 0 R +/S /LI +>> +endobj +953 0 obj +<< +/K 306 0 R +/P 285 0 R +/S /Note +>> +endobj +954 0 obj +<< +/K 293 0 R +/P 955 0 R +/S /Lbl +>> +endobj +955 0 obj +<< +/C /Pa4 +/K [954 0 R 294 0 R] +/P 888 0 R +/S /LI +>> +endobj +956 0 obj +<< +/K 295 0 R +/P 957 0 R +/S /Lbl +>> +endobj +957 0 obj +<< +/C /Pa5 +/K [956 0 R 296 0 R] +/P 888 0 R +/S /LI +>> +endobj +958 0 obj +<< +/K 298 0 R +/P 959 0 R +/S /Lbl +>> +endobj +959 0 obj +<< +/C /Pa5 +/K [958 0 R 299 0 R] +/P 888 0 R +/S /LI +>> +endobj +960 0 obj +<< +/K 300 0 R +/P 961 0 R +/S /Lbl +>> +endobj +961 0 obj +<< +/C /Pa5 +/K [960 0 R 301 0 R] +/P 888 0 R +/S /LI +>> +endobj +962 0 obj +<< +/K 302 0 R +/P 963 0 R +/S /Lbl +>> +endobj +963 0 obj +<< +/C /Pa5 +/K [962 0 R 303 0 R] +/P 888 0 R +/S /LI +>> +endobj +964 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 343 0 R +/P 1155 0 R +/S /TD +>> +endobj +965 0 obj +<< +/K 344 0 R +/P 1156 0 R +/S /TD +>> +endobj +966 0 obj +<< +/K [346 0 R 345 0 R] +/P 967 0 R +/S /Lbl +>> +endobj +967 0 obj +<< +/C /Pa12 +/K [966 0 R 347 0 R] +/P 1157 0 R +/S /LI +>> +endobj +968 0 obj +<< +/K [349 0 R 348 0 R] +/P 969 0 R +/S /Lbl +>> +endobj +969 0 obj +<< +/C /Pa12 +/K [968 0 R 350 0 R] +/P 1157 0 R +/S /LI +>> +endobj +970 0 obj +<< +/K [352 0 R 351 0 R] +/P 971 0 R +/S /Lbl +>> +endobj +971 0 obj +<< +/C /Pa12 +/K [970 0 R 353 0 R] +/P 1157 0 R +/S /LI +>> +endobj +972 0 obj +<< +/K [355 0 R 354 0 R] +/P 973 0 R +/S /Lbl +>> +endobj +973 0 obj +<< +/C /Pa12 +/K [972 0 R 356 0 R] +/P 1157 0 R +/S /LI +>> +endobj +974 0 obj +<< +/K [358 0 R 357 0 R] +/P 975 0 R +/S /Lbl +>> +endobj +975 0 obj +<< +/C /Pa12 +/K [974 0 R 359 0 R] +/P 1157 0 R +/S /LI +>> +endobj +976 0 obj +<< +/K [361 0 R 360 0 R] +/P 977 0 R +/S /Lbl +>> +endobj +977 0 obj +<< +/C /Pa12 +/K [976 0 R 362 0 R] +/P 1157 0 R +/S /LI +>> +endobj +978 0 obj +<< +/K 364 0 R +/P 1158 0 R +/S /TD +>> +endobj +979 0 obj +<< +/K [366 0 R 365 0 R] +/P 980 0 R +/S /Lbl +>> +endobj +980 0 obj +<< +/C /Pa12 +/K [979 0 R 367 0 R] +/P 1159 0 R +/S /LI +>> +endobj +981 0 obj +<< +/K [370 0 R 369 0 R] +/P 982 0 R +/S /Lbl +>> +endobj +982 0 obj +<< +/C /Pa12 +/K [981 0 R 371 0 R] +/P 1159 0 R +/S /LI +>> +endobj +983 0 obj +<< +/K [373 0 R 372 0 R] +/P 984 0 R +/S /Lbl +>> +endobj +984 0 obj +<< +/C /Pa12 +/K [983 0 R 374 0 R] +/P 1159 0 R +/S /LI +>> +endobj +985 0 obj +<< +/K [377 0 R 376 0 R] +/P 986 0 R +/S /Lbl +>> +endobj +986 0 obj +<< +/C /Pa12 +/K [985 0 R 378 0 R] +/P 1159 0 R +/S /LI +>> +endobj +987 0 obj +<< +/K [380 0 R 379 0 R] +/P 988 0 R +/S /Lbl +>> +endobj +988 0 obj +<< +/C /Pa12 +/K [987 0 R 381 0 R] +/P 1159 0 R +/S /LI +>> +endobj +989 0 obj +<< +/K [383 0 R 382 0 R] +/P 990 0 R +/S /Lbl +>> +endobj +990 0 obj +<< +/C /Pa12 +/K [989 0 R 384 0 R] +/P 1159 0 R +/S /LI +>> +endobj +991 0 obj +<< +/K 385 0 R +/P 1160 0 R +/S /TD +>> +endobj +992 0 obj +<< +/K [387 0 R 386 0 R] +/P 993 0 R +/S /Lbl +>> +endobj +993 0 obj +<< +/C /Pa12 +/K [992 0 R 388 0 R] +/P 1161 0 R +/S /LI +>> +endobj +994 0 obj +<< +/K [390 0 R 389 0 R] +/P 995 0 R +/S /Lbl +>> +endobj +995 0 obj +<< +/C /Pa12 +/K [994 0 R 391 0 R] +/P 1161 0 R +/S /LI +>> +endobj +996 0 obj +<< +/K [393 0 R 392 0 R] +/P 997 0 R +/S /Lbl +>> +endobj +997 0 obj +<< +/C /Pa12 +/K [996 0 R 394 0 R] +/P 1161 0 R +/S /LI +>> +endobj +998 0 obj +<< +/K [396 0 R 395 0 R] +/P 999 0 R +/S /Lbl +>> +endobj +999 0 obj +<< +/C /Pa12 +/K [998 0 R 397 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1000 0 obj +<< +/K [399 0 R 398 0 R] +/P 1001 0 R +/S /Lbl +>> +endobj +1001 0 obj +<< +/C /Pa12 +/K [1000 0 R 400 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1002 0 obj +<< +/K [403 0 R 402 0 R] +/P 1003 0 R +/S /Lbl +>> +endobj +1003 0 obj +<< +/C /Pa13 +/K [1002 0 R 405 0 R] +/P 889 0 R +/S /LI +>> +endobj +1004 0 obj +<< +/K [407 0 R 406 0 R] +/P 1005 0 R +/S /Lbl +>> +endobj +1005 0 obj +<< +/C /Pa14 +/K [1004 0 R 409 0 R] +/P 889 0 R +/S /LI +>> +endobj +1006 0 obj +<< +/K [411 0 R 410 0 R] +/P 1007 0 R +/S /Lbl +>> +endobj +1007 0 obj +<< +/C /Pa14 +/K [1006 0 R 413 0 R] +/P 889 0 R +/S /LI +>> +endobj +1008 0 obj +<< +/K [415 0 R 414 0 R] +/P 1009 0 R +/S /Lbl +>> +endobj +1009 0 obj +<< +/C /Pa14 +/K [1008 0 R 417 0 R] +/P 889 0 R +/S /LI +>> +endobj +1010 0 obj +<< +/K [420 0 R 419 0 R] +/P 1011 0 R +/S /Lbl +>> +endobj +1011 0 obj +<< +/C /Pa14 +/K [1010 0 R 422 0 R] +/P 889 0 R +/S /LI +>> +endobj +1012 0 obj +<< +/K [424 0 R 423 0 R] +/P 1013 0 R +/S /Lbl +>> +endobj +1013 0 obj +<< +/C /Pa14 +/K [1012 0 R 426 0 R] +/P 889 0 R +/S /LI +>> +endobj +1014 0 obj +<< +/K [428 0 R 427 0 R] +/P 1015 0 R +/S /Lbl +>> +endobj +1015 0 obj +<< +/C /Pa14 +/K [1014 0 R 430 0 R] +/P 889 0 R +/S /LI +>> +endobj +1016 0 obj +<< +/K [432 0 R 431 0 R] +/P 1017 0 R +/S /Lbl +>> +endobj +1017 0 obj +<< +/C /Pa15 +/K [1016 0 R 434 0 R] +/P 889 0 R +/S /LI +>> +endobj +1018 0 obj +<< +/K [437 0 R 436 0 R] +/P 1019 0 R +/S /Lbl +>> +endobj +1019 0 obj +<< +/C /Pa13 +/K [1018 0 R 439 0 R] +/P 890 0 R +/S /LI +>> +endobj +1020 0 obj +<< +/K [441 0 R 440 0 R] +/P 1021 0 R +/S /Lbl +>> +endobj +1021 0 obj +<< +/C /Pa14 +/K [1020 0 R 443 0 R] +/P 890 0 R +/S /LI +>> +endobj +1022 0 obj +<< +/K [447 0 R 446 0 R] +/P 1023 0 R +/S /Lbl +>> +endobj +1023 0 obj +<< +/C /Pa14 +/K [1022 0 R 449 0 R] +/P 890 0 R +/S /LI +>> +endobj +1024 0 obj +<< +/K [451 0 R 450 0 R] +/P 1025 0 R +/S /Lbl +>> +endobj +1025 0 obj +<< +/C /Pa14 +/K [1024 0 R 453 0 R] +/P 890 0 R +/S /LI +>> +endobj +1026 0 obj +<< +/K [455 0 R 454 0 R] +/P 1027 0 R +/S /Lbl +>> +endobj +1027 0 obj +<< +/C /Pa14 +/K [1026 0 R 457 0 R] +/P 890 0 R +/S /LI +>> +endobj +1028 0 obj +<< +/K [461 0 R 460 0 R] +/P 1029 0 R +/S /Lbl +>> +endobj +1029 0 obj +<< +/C /Pa14 +/K [1028 0 R 463 0 R] +/P 890 0 R +/S /LI +>> +endobj +1030 0 obj +<< +/K [467 0 R 466 0 R] +/P 1031 0 R +/S /Lbl +>> +endobj +1031 0 obj +<< +/C /Pa15 +/K [1030 0 R 469 0 R] +/P 890 0 R +/S /LI +>> +endobj +1032 0 obj +<< +/K [474 0 R 473 0 R] +/P 1033 0 R +/S /Lbl +>> +endobj +1033 0 obj +<< +/C /Pa13 +/K [1032 0 R 476 0 R] +/P 891 0 R +/S /LI +>> +endobj +1034 0 obj +<< +/K [481 0 R 480 0 R] +/P 1035 0 R +/S /Lbl +>> +endobj +1035 0 obj +<< +/C /Pa14 +/K [1034 0 R 483 0 R] +/P 891 0 R +/S /LI +>> +endobj +1036 0 obj +<< +/K [488 0 R 487 0 R] +/P 1037 0 R +/S /Lbl +>> +endobj +1037 0 obj +<< +/C /Pa15 +/K [1036 0 R 490 0 R] +/P 891 0 R +/S /LI +>> +endobj +1038 0 obj +<< +/K 583 0 R +/P 1162 0 R +/S /TD +>> +endobj +1039 0 obj +<< +/C /Pa17 +/K 585 0 R +/P 901 0 R +/S /_No_paragraph_style_ +>> +endobj +1040 0 obj +<< +/C /Pa17 +/K [586 0 R 587 0 R 588 0 R] +/P 902 0 R +/S /_No_paragraph_style_ +>> +endobj +1041 0 obj +<< +/C /Pa17 +/K 589 0 R +/P 903 0 R +/S /_No_paragraph_style_ +>> +endobj +1042 0 obj +<< +/C /Pa17 +/K [604 0 R 605 0 R 606 0 R] +/P 904 0 R +/S /_No_paragraph_style_ +>> +endobj +1043 0 obj +<< +/C /Pa17 +/K [607 0 R 608 0 R 609 0 R] +/P 905 0 R +/S /_No_paragraph_style_ +>> +endobj +1044 0 obj +<< +/C /Pa17 +/K 610 0 R +/P 906 0 R +/S /_No_paragraph_style_ +>> +endobj +1045 0 obj +<< +/C /Pa17 +/K [611 0 R 612 0 R 613 0 R] +/P 907 0 R +/S /_No_paragraph_style_ +>> +endobj +1046 0 obj +<< +/C /Pa17 +/K [614 0 R 615 0 R 616 0 R] +/P 909 0 R +/S /_No_paragraph_style_ +>> +endobj +1047 0 obj +<< +/C /Pa17 +/K 617 0 R +/P 910 0 R +/S /_No_paragraph_style_ +>> +endobj +1048 0 obj +<< +/C /Pa17 +/K 618 0 R +/P 911 0 R +/S /_No_paragraph_style_ +>> +endobj +1049 0 obj +<< +/C /Pa17 +/K [619 0 R 620 0 R 621 0 R] +/P 908 0 R +/S /_No_paragraph_style_ +>> +endobj +1050 0 obj +<< +/C /Pa17 +/K [622 0 R 623 0 R 624 0 R] +/P 900 0 R +/S /_No_paragraph_style_ +>> +endobj +1051 0 obj +<< +/K 643 0 R +/P 1052 0 R +/S /Lbl +>> +endobj +1052 0 obj +<< +/C /Pa4 +/K [1051 0 R 644 0 R] +/P 892 0 R +/S /LI +>> +endobj +1053 0 obj +<< +/K 645 0 R +/P 1054 0 R +/S /Lbl +>> +endobj +1054 0 obj +<< +/C /Pa5 +/K [1053 0 R 646 0 R] +/P 892 0 R +/S /LI +>> +endobj +1055 0 obj +<< +/K 649 0 R +/P 1056 0 R +/S /Lbl +>> +endobj +1056 0 obj +<< +/C /Pa5 +/K [1055 0 R 650 0 R] +/P 892 0 R +/S /LI +>> +endobj +1057 0 obj +<< +/K [665 0 R 664 0 R] +/P 1058 0 R +/S /Lbl +>> +endobj +1058 0 obj +<< +/C /Pa13 +/K [1057 0 R 666 0 R] +/P 893 0 R +/S /LI +>> +endobj +1059 0 obj +<< +/K [668 0 R 667 0 R] +/P 1060 0 R +/S /Lbl +>> +endobj +1060 0 obj +<< +/C /Pa14 +/K [1059 0 R 669 0 R] +/P 893 0 R +/S /LI +>> +endobj +1061 0 obj +<< +/K [672 0 R 671 0 R] +/P 1062 0 R +/S /Lbl +>> +endobj +1062 0 obj +<< +/C /Pa14 +/K [1061 0 R 673 0 R] +/P 893 0 R +/S /LI +>> +endobj +1063 0 obj +<< +/K [676 0 R 675 0 R] +/P 1064 0 R +/S /Lbl +>> +endobj +1064 0 obj +<< +/C /Pa15 +/K [1063 0 R 677 0 R] +/P 893 0 R +/S /LI +>> +endobj +1065 0 obj +<< +/K [700 0 R 699 0 R] +/P 1066 0 R +/S /Lbl +>> +endobj +1066 0 obj +<< +/C /Pa13 +/K [1065 0 R 701 0 R] +/P 894 0 R +/S /LI +>> +endobj +1067 0 obj +<< +/K [703 0 R 702 0 R] +/P 1068 0 R +/S /Lbl +>> +endobj +1068 0 obj +<< +/C /Pa15 +/K [1067 0 R 704 0 R] +/P 894 0 R +/S /LI +>> +endobj +1069 0 obj +<< +/K [715 0 R 714 0 R] +/P 1070 0 R +/S /Lbl +>> +endobj +1070 0 obj +<< +/C /Pa13 +/K [1069 0 R 716 0 R] +/P 895 0 R +/S /LI +>> +endobj +1071 0 obj +<< +/K [718 0 R 717 0 R] +/P 1072 0 R +/S /Lbl +>> +endobj +1072 0 obj +<< +/C /Pa14 +/K [1071 0 R 719 0 R] +/P 895 0 R +/S /LI +>> +endobj +1073 0 obj +<< +/K [721 0 R 720 0 R] +/P 1074 0 R +/S /Lbl +>> +endobj +1074 0 obj +<< +/C /Pa14 +/K [1073 0 R 722 0 R] +/P 895 0 R +/S /LI +>> +endobj +1075 0 obj +<< +/K [724 0 R 723 0 R] +/P 1076 0 R +/S /Lbl +>> +endobj +1076 0 obj +<< +/C /Pa15 +/K [1075 0 R 725 0 R] +/P 895 0 R +/S /LI +>> +endobj +1077 0 obj +<< +/K [735 0 R 734 0 R] +/P 1078 0 R +/S /Lbl +>> +endobj +1078 0 obj +<< +/C /Pa13 +/K [1077 0 R 736 0 R] +/P 896 0 R +/S /LI +>> +endobj +1079 0 obj +<< +/K [738 0 R 737 0 R] +/P 1080 0 R +/S /Lbl +>> +endobj +1080 0 obj +<< +/C /Pa14 +/K [1079 0 R 739 0 R] +/P 896 0 R +/S /LI +>> +endobj +1081 0 obj +<< +/K [741 0 R 740 0 R] +/P 1082 0 R +/S /Lbl +>> +endobj +1082 0 obj +<< +/C /Pa14 +/K [1081 0 R 742 0 R] +/P 896 0 R +/S /LI +>> +endobj +1083 0 obj +<< +/K [745 0 R 744 0 R] +/P 1084 0 R +/S /Lbl +>> +endobj +1084 0 obj +<< +/C /Pa15 +/K [1083 0 R 746 0 R] +/P 896 0 R +/S /LI +>> +endobj +1085 0 obj +<< +/K 768 0 R +/P 1163 0 R +/S /TD +>> +endobj +1086 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 769 0 R +/P 1163 0 R +/S /TD +>> +endobj +1087 0 obj +<< +/K 770 0 R +/P 1163 0 R +/S /TD +>> +endobj +1088 0 obj +<< +/K 771 0 R +/P 1164 0 R +/S /TD +>> +endobj +1089 0 obj +<< +/K 772 0 R +/P 1164 0 R +/S /TD +>> +endobj +1090 0 obj +<< +/K [774 0 R 773 0 R] +/P 1091 0 R +/S /Lbl +>> +endobj +1091 0 obj +<< +/C /Pa12 +/K [1090 0 R 775 0 R] +/P 1165 0 R +/S /LI +>> +endobj +1092 0 obj +<< +/K [777 0 R 776 0 R] +/P 1093 0 R +/S /Lbl +>> +endobj +1093 0 obj +<< +/C /Pa12 +/K [1092 0 R 778 0 R] +/P 1165 0 R +/S /LI +>> +endobj +1094 0 obj +<< +/K [780 0 R 779 0 R] +/P 1095 0 R +/S /Lbl +>> +endobj +1095 0 obj +<< +/C /Pa12 +/K [1094 0 R 781 0 R] +/P 1165 0 R +/S /LI +>> +endobj +1096 0 obj +<< +/K 782 0 R +/P 1166 0 R +/S /TD +>> +endobj +1097 0 obj +<< +/K 783 0 R +/P 1166 0 R +/S /TD +>> +endobj +1098 0 obj +<< +/K [786 0 R 785 0 R] +/P 1099 0 R +/S /Lbl +>> +endobj +1099 0 obj +<< +/C /Pa12 +/K [1098 0 R 787 0 R] +/P 1167 0 R +/S /LI +>> +endobj +1100 0 obj +<< +/K [789 0 R 788 0 R] +/P 1101 0 R +/S /Lbl +>> +endobj +1101 0 obj +<< +/C /Pa12 +/K [1100 0 R 790 0 R] +/P 1167 0 R +/S /LI +>> +endobj +1102 0 obj +<< +/K [792 0 R 791 0 R] +/P 1103 0 R +/S /Lbl +>> +endobj +1103 0 obj +<< +/C /Pa12 +/K [1102 0 R 793 0 R] +/P 1167 0 R +/S /LI +>> +endobj +1104 0 obj +<< +/K [795 0 R 794 0 R] +/P 1105 0 R +/S /Lbl +>> +endobj +1105 0 obj +<< +/C /Pa12 +/K [1104 0 R 796 0 R] +/P 1167 0 R +/S /LI +>> +endobj +1106 0 obj +<< +/K 797 0 R +/P 1168 0 R +/S /TD +>> +endobj +1107 0 obj +<< +/K 798 0 R +/P 1168 0 R +/S /TD +>> +endobj +1108 0 obj +<< +/K [801 0 R 800 0 R] +/P 1109 0 R +/S /Lbl +>> +endobj +1109 0 obj +<< +/C /Pa12 +/K [1108 0 R 802 0 R] +/P 1169 0 R +/S /LI +>> +endobj +1110 0 obj +<< +/K 803 0 R +/P 1170 0 R +/S /TD +>> +endobj +1111 0 obj +<< +/K 804 0 R +/P 1170 0 R +/S /TD +>> +endobj +1112 0 obj +<< +/K [806 0 R 805 0 R] +/P 1113 0 R +/S /Lbl +>> +endobj +1113 0 obj +<< +/C /Pa12 +/K [1112 0 R 807 0 R] +/P 1171 0 R +/S /LI +>> +endobj +1114 0 obj +<< +/K [809 0 R 808 0 R] +/P 1115 0 R +/S /Lbl +>> +endobj +1115 0 obj +<< +/C /Pa12 +/K [1114 0 R 810 0 R] +/P 1171 0 R +/S /LI +>> +endobj +1116 0 obj +<< +/K 811 0 R +/P 1172 0 R +/S /TD +>> +endobj +1117 0 obj +<< +/K 812 0 R +/P 1172 0 R +/S /TD +>> +endobj +1118 0 obj +<< +/K [814 0 R 813 0 R] +/P 1119 0 R +/S /Lbl +>> +endobj +1119 0 obj +<< +/C /Pa12 +/K [1118 0 R 815 0 R] +/P 1173 0 R +/S /LI +>> +endobj +1120 0 obj +<< +/K 817 0 R +/P 1174 0 R +/S /TD +>> +endobj +1121 0 obj +<< +/K 818 0 R +/P 1174 0 R +/S /TD +>> +endobj +1122 0 obj +<< +/K [821 0 R 820 0 R] +/P 1123 0 R +/S /Lbl +>> +endobj +1123 0 obj +<< +/C /Pa12 +/K [1122 0 R 822 0 R] +/P 1175 0 R +/S /LI +>> +endobj +1124 0 obj +<< +/K [824 0 R 823 0 R] +/P 1125 0 R +/S /Lbl +>> +endobj +1125 0 obj +<< +/C /Pa12 +/K [1124 0 R 825 0 R] +/P 1175 0 R +/S /LI +>> +endobj +1126 0 obj +<< +/K 826 0 R +/P 1176 0 R +/S /TD +>> +endobj +1127 0 obj +<< +/K 828 0 R +/P 1176 0 R +/S /TD +>> +endobj +1128 0 obj +<< +/K [830 0 R 829 0 R] +/P 1129 0 R +/S /Lbl +>> +endobj +1129 0 obj +<< +/C /Pa12 +/K [1128 0 R 831 0 R] +/P 1177 0 R +/S /LI +>> +endobj +1130 0 obj +<< +/K [833 0 R 832 0 R] +/P 1131 0 R +/S /Lbl +>> +endobj +1131 0 obj +<< +/C /Pa12 +/K [1130 0 R 834 0 R] +/P 1177 0 R +/S /LI +>> +endobj +1132 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1133 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1178 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1179 0 R +/FontName /GNHWAC+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1134 0 obj +<< +/Filter /FlateDecode +/Length 2043 +/Subtype /Type1C +>> +stream +H‰|TiTW®¢éêV˜B©4jSUñheWqTDƒÇÅ‘¶FQ ¡›]6ei ]"4¸ .ˆ â‚ 4ˆ¨ãîL4è ¨¢Ñ˜3z‹yÌ9óóc~Íy§î¹÷¾÷¾ïÖwïy$amE$© Àk¹Kpš.V½\§¢‰ÔÆE[v‘%E¥µèh«@>ÈähÝôïõR豃ã¯9Ê·ØV$ùãÀBm"¾½ac²àáëëéj±Þ£v¦«àéîî>j½ÿhm¤FIÓ'kâõBPB”V—¨Õ©“5ÑÓÿ¸8aB/è4zÎ`I~¬IˆÕ šØä Æ›bñ}&ZHÖ©£5ñjÝfAkÙùŸ0æÿP ± ÆV%ÄZ¢dœÔ ê„h7Œ¢e‰ÒnIHÖÅjôÓÝCV¦%j„YB´&† H¼ˆñV„’ ¦„Ax„AøÄB’$‰ ’&‰åbE¬&ˆ‰X`"ÇÕDiMf“½VÞVF«wZ’'¹b=Ézuu¯õ;i’ô eM©¨ZªO_rQ|}‘ÄvÊEI‰µX4¼|¤ˆº¢@óàk) RH@ +°#»e#TĨóŽ)±Cañ%¢Ñ]:gHL"OÂ8H; vR Wäˆ"xVÚ‹Á™·'04°rȃ/š¦ø{³'rA‹UOÀ³”‡™Æ o²ta˜K!!l$ã6ÃÜ +yέ™6W¥e]òNT½%á æSÞ¡ê2YW»¤ÿz2”òý¢ŸÐ߀M8×ì-=ÜØ~¬‹}Úð׿ðFŸ…sÑ44y^ÀÄù2:ï üñ%ìú‰l´`/ÌS0-9jêßõèxW§üÖ o€W‚çl°Áuò.ˆ@ãmŸ/H¯_¨9ÕÈ•³—%„©c'mHX›¾¶0¾(Õ˜Z&?Ñ èmôó2òéE¹…ù\\ê†ä5ìbMÇ-#ÿcÛåk ^Û~s^‘÷À~ɽ2EAë¥Âû,LøÐÐs‹¿qåÌK°U‚,ªwI'×ì]ìÙy«x°óTìØÔtš…éÏf '#ü\½w)§K*1¥ó4¸–€â b=L-I±¿R¸ +K`»Œ‰‰ñEA?g*môk›uÎ ,3<Q(›böO1yíÁSq¢Eü-€³‘ðŸÝTcÓ+ÈÂeÓµ¿ç€ÝTѾc-Ûÿ°¶½oi®î¼¡¼žÔÕÈ5¯:èÁÎZ¶=_Åí£0UÖ™N²O;¢æÏ ‰pÓ¥”îÈäé6Œzü%hG¥?¢¿FÝ->¡=èup澕å)r`¨¬ú´G†¾ô¿%|³ö€Ü$»^ÛÝݯì2|ÓÀµDísf·ç¯ÃL3&óa,PoG¬ÿ—«U³ø]ZcoÿFB¸e<ÃÀN¼ ¡¿ìš+)º'çõƒøÙ+ؘb·$Æ3™ð'¦}×9³È‡gÚƒ煮?Õ¾•+Þc,/WÒós_ÃíWxöì%¢Ë{E®>>o=;sI×[þ…ñû;Cìùc¹yÕü¡i¥v]y‹ü>Çýù ¹¼qמï*Íõ<Ÿ;öÏÀ¦£Œ…M —ˆzÐ(0ùZå‡Õà€<‘»/b‹œÁóî•Êýg¹´§Ò¬˜ÈüìÜÀ–çEü3ë‹;OÜù}Ríaäi¤ÆBñàø Ùk‘Jå òï„ò«5ßõÚ_XPÉíùYº;%iç&V¶5v¯ŽJ_ºTir»9ÂËèoñõOÅB’7ñcŠ!n:`çqdã#¶p†ª*«ÚiæNV44_`»Ž¬]Ì£&œo“U™öšÌ\SeÃñ³l÷ѵ³ytç-eû^ž—›šÈ%g¥¤¤'Ê‹©K†5Í_±¾ªž/¢˜ö‚ûÒO)“º4±s÷¾xHZ”“Qd`Ã3ºyØ cÐÀƒ”Qc-`_!f2‰b†‚F2¤ð +–‰Rä@ÍC%RæÔVUŽ&/J^DåµæžÎ:7J&ÒÙf1à .f³¹ÎL¡ó³ §RÍ0}4%Ç©‡æ1\M¤ÊvL‰­ÍÀX°³(·µ?kÿ`­á +endstream +endobj +1135 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1136 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1180 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1181 0 R +/FontName /SAMSFD+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1137 0 obj +<< +/BaseFont /CUCKKZ+Wingdings-Regular +/CIDSystemInfo 1182 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1183 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1138 0 obj +<< +/Filter /FlateDecode +/Length 603 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaC,Ë`KÜêÐA[QÇtGfƵ¥C!-I#æ%xÏÕI¤%á!=˜Çš$ "öÍúVè›íÒ©ïðãý~ïûýÞ㮸ˆ#„øϵ_ïŠ]«¥5%!ujjc\QzÕa©MMJ…v±}ÅöA¯ˆ‡qz§{ç‚>ìƒÕýosEå\!_ÛÔQæ4艖–¦Ã<Ù@›B¡PôUR{eOë†<¢ÓŽdŸªªZÂ¥m¦…j².k)Gü»Ut*+Æ ¬Ñk(̯É5´„$$´›Tu:ÿÐþÿŒ¢J’²,z5©8,n0Q§‰¤d)jaJŸ:–44EÖÁöø•ô¨LOQIîçØ;¹×̹Ùõ¸gp‹ÄCjžd–ìïK„á¡%W¦ØžÊuæ§x˜Æw"Fá‘,)¾Á!ùYOžï.ÔEÆyûµèTè0!cÁÐ&Ä,²œuÁ†ME C ¢.ìFà•…a¼ðx.•‹Œ“å-¸ôÍ +èôÜšüìÀ?=»pz><¾¨ü‘‹4be3u›ý÷øÔGå‹ñÝð²òØn„Ò–}ß"ÏÁ—Á傉\TĪ3X‹Ýس‚uàƒÒÍŸ0 qbmõÝ€¸ú ËQÀª1,k?¯þ†£PÃì+ÕÂ\Ê^Û&àc{û*²öÛøë8”ñÂÓ¾mB½iš3&7ÌO¦‡I·L0iÞ܃ýæºYâŸëíñ–d¼¥ë{³¥¶÷€=.þ`O& +endstream +endobj +1139 0 obj +<< +/Filter /FlateDecode +/Length 3278 +/Subtype /Type1C +>> +stream +H‰|T{TgŸÉd&‘ʸ’ÚŒ;E_ˆ‚‹VÔ + +"jH‚Æ"Þ¯ V ôhQäiµµ ’¨!Q¬ZuÕª»Öê|T´ÊZwqï¤_س={NÿسgιóÝïñ»÷÷»ßwqL*ÁpóшIáÙ:mœ:B—<%L»e«~`‰Fá‚·TøýPMAe¿œü%˜„«ÃÀ=üÒ(Ï/ŒÀqiWOÂÆ„…É)âiñ”jÚìÙÓ'Ø™ƒ6h²jz@@À © +Q'oÖ¨¢²Óôšíiª¥Iñɺ”d]œ^£öW…$&ª!ÒT:MšF—10ùkN*mšJ£ÕoÕèTqââ­x^§Q«ôº8µf{œîUòÀÊoÜ„ÿJ¥MR‰Xªè$퀥'ÓTqIê©"Jò`”øäô$½N«IóŸµ*;E£š¥Rk0 ?ÌÆI0†±6ÃÆJ°‰6ÃfØ9.Å¢H,Ã’1ì$†ïÁ°‰¢ÌX8¥`&ìÖ‡ã:Ü)!%ë$;%G$=DqŒè i’ô!©"ϨñÔêß²ÙBÙy¹\¾Bî‚Y=¤bÈSޣģÛÞÙ3‹-u +¯œ¸hÇ:‰R©PìŠpSP†.3h$á…T¨ƒÇ}@æ¦6 Ža}J8Ï ŒÐ€G£Ny?2â:òdªN´Us/¬häŽð„åÆÉiÃ3üB'ñÒÀ4Vm8–[›––“•Ê§•Tg4°4Zë +ÉÄ A4Ç3ðKKÆPèÏýZ’Ž0X…gÜ쀛Nö¹&0÷‡ŠxTPöÒ¯—ïG …|Hzƒdü.5’³h˜˜Õ¢ñ‡M –ª[€wótD©M¸×Š !,ò¶¡»&ÙY; Aðþ‹À»Êûëß vÉÊMW»l8ÑþÕ5$'„ 霴-âW„“Ûe"hþ• ô‹têD:u"ÌA:™ ¬[.ý_$ÍG3À`…WJ3½¾¾TÜBÀÀ‹¶"MF±h'ø@Pתš&žþûn«ÐkŻ쇢k/³»ÝQr^Ô´×|ã +õÛãÏ^+ßl¿}‘û&Êÿhùéε¼} ³ÿ Û~qcb‚æ—ðh +y¢Ä8õÞ}ÉýA©Ú­px˜|„wT‡ÁbEOúá} íPOѨûh†+0s`W—+é´»eôóÒë›2„]Uê:+xÙ±ð®7¼”)AZrw÷Cδ·9ôì‡Î¹ïA¹{yÆ‹žRŠêÑ{çàŒ%Ûn¨ÿýè=T%Œ!7ôRtœ¨û5 œ±ˆà«v¢ËÛ×ú¨î=­ë&ÖVF”gÊTþñ§¾/÷žö\tµÜ${püÂåçJ{ö™¤\‹zUí v}äî›y»–ÙWÝ´ÿ,ûöû¸±ÓGúð*ŠžUd¿b‡*;ÑṲ́6ßʺÌÂØ;?þÜáDÄ~¢y“ùž²£åà—Û² +j¸+Y©_WÆ"jöB¿©7¢×ð¯4–ó•³ÂWú®\]{LÃѳEh+šv4Þí.R¬îÜxH¦è¿l®‘Ú ÒöAùÜþ2´ùm¨X{H¿‡xN¿Î=I†fÏ[ˆßà›0Ÿ&Éhƒug”[Áßêeq»"OðöÞÝb´˜•°Bö$õŸˆß]˜´‰«ÜJ66>Ôʵ÷³Éë”…2´Æ4a "” +Dz3‹ÿv¿£­¥ž+£yBIø3 +ÇcQq›³!&˜ýxýÉÛ ®ª¯˜§÷DÖZ 9Ó«ÓOÛy0Ô[á(û‘4QKÌ—ï³}€?†ù0.¨yFhÂ?áð—Xwˆ¿ÅgÔrç ‰©.«(;ÌýPÿ­ã ø• HÂ+hxØ4$ùCxûÝ ÎxØxø’/> nkïßeÆš»’EÄœ.äÍ×Àt´ä4ðÕ²"k]u‹Æúøˆ¯cÜO¾ÀßvÖ:ÊÓÅ¿ÉØÖ?Øa¦+†A2[úš¶Y,òðóE3÷òȧÛ<º/9:9“˜mYÙF›Œ­§”B,Ö]Áä ‹ 8…#8cÙ†P±âѯƒá7Ÿ÷=¸½¬š/+0e(éð"l3Ã\ n³Ã7NBXFÆt°ô`…òövðCÓÐ力Ñè'¾À=rÔ•×p…f² eKþ"Ö/è +øóef滃g{Þ² ?1nI O#±çËÍ°ÞŠ?²0Â[Äd̈9.û©¶«û‹Ú]»*¸J3y0?å`"›_”Ä«Õù+B”©¡šÛîå2ºi¬0×*X ÿ•¡SôŒâ•ñÒHY3cÏOfG#É ŒF<žO.žv4ò¦Å³`ÍøðؚϷq9j2åÔÕü¯Ù 7*[OóVsãU¦‹LÑé4™M§¸µ¨‰É)Îþ4— M[¡^Æ"rå ÀxÅ+PÜyôæÁ¹5‘uܾ|S^Ž’6ˆŒVÛĪàâ=j±âk¶Sµ¦#ûpWê.9n±?7͙ɣ;´É yÖoHØV”“Â%åèSóSäF¸+¶žç"Œ>ä½nÞ·+^ˆ=FÐǺõ2EoƒË—IÏÉLO¯Ìú¼ñ?DVmLSgáÞªj¸Ô•^½wK6 ÎME7çÇÜ4NÉ°FÊG(N‘H[ +(­œsô‹"YÀªk X¹?øÈØtÊ爷¹É–àÈt‰çº×{o YrsßäMÞç9çä9Ï9ö–6×RŠKùîE•È*R>Wa8Œ¥:(i«øE-¡&Ä€úIGCó)+3ä¸v‹ïMÄ]çaTÒÜèÀq^uüßÒzw 9,:ÏÃ7ØŽB:ÒSòtE‡˜r®â¨îð<9Z–âßFoÌÈÚ]ÀšHªßø ¡&Ísžz¶ /©=<5.²öG£…ù®e8p‡ž™-C¶á2dlLR'1èŠñáÿ@°°äð ›L« —¡p4g5Z–O/‡EÏ`áO° bVÏ hös<^#t Z¸quLì¦Gñtæ‚78Úr’D¨êÙªôã!ìzOy\âã˜àãih!¨±³ƒÎë¶a¼•X“{[•ÐY9Æ]‹qUä;è\¹’K«ÉŒÆ˜W¸~íÈJh—g’o¢Ž²Ý•)zuô ²¦O¨Úré«8Ä&a]h“H²õ…’h¬1דÁXÍ”ìÊÏ.)-,̯(©µgË-m^÷÷ƒ=¿@,¼ÿÊSH¼ƒÜärô¹5˜°ö|•·ê"ÞFoË¥é ÷†t ‰¡]Ð!Ó‰^‰w¹§.À Óî_÷tÙ +>_‚w^ô +bð?ð‰ÝxX Öë&„OÏæ‡Á2ChZƒÂp“,C±¸Vá°Öâ4bYP ©¬I·ßžLÇÄmFIJÛ@Òßn¿ÄÖt•%šê,ú ÕØädߧ—*ÙX©á¥Aïê>ÜÕü3\€º'¬:Ê‹¢°Q;'u:·š+ÂF­É©:\Àjr8ѨwNBMýáºû ½íØ1CÝvxjêŒîÈWtægº¢böÀŠ Š² ¥ó˜]oJ-g±XÚ-$ʵ<°Hð•Öo¯æá«qË|¦5K1¿>"Ü·€‡ÍQ‚_öŸûa³æ +endstream +endobj +1140 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nPÒ&´“iìnÅDcÐ(F"jd†EÁÈÃEf`FDqx©Ã0°òpç(>x‰"%Ê:*T0Xš-× kmj-6³fS»[•Ó䚪íÁÚªýµu«OÝó¸ç|çôw/Ž¹»a8ŽÏKŒß±e™ºP¯MI‹Ñë–oÜŸ’šår "‹‹´»èëÅ Tã+_ðK‰îÎÞ›ðõðõÆÜpüùß6ér¥£™ùÂGk×® pÉàùI€°rÅŠ32XKÓíÕ±…†|M¶AˆÈIÕésuú”|MZ ¶¿0“ è5Þè2¾$h ‚F›Ÿ©Ñ )’3C+×kÒ„|}Jš&;EŸ%è\žÿQÓÿO)A›#H¹„9Z—›/ BJNZ”E7S%UW“¯×j A[bã +s5Â!M“Ža¸´°w0l1†}ˆaãØFûÇT¶ÃÔ2,Ö KÂ0F*¦Æb0=öûÃÜ–»•±2ƒ;á¾Ê=Â}BÎÉ5òëÄ<"…h,±Þ_ßÄ%éwSfuOǼ9N@5ºË P¨“Ã÷Ð0.åM-ù†HžÙC(’tB¼Í¸vÈ¥Qh‚B&ä ñ£pR„ÀŒ|7ô¯Ë€£ðEÑÒ\¿Œ%ì*A ‡¨€8Ùx SÑw÷èKàvöîù‡·nOÁ|%¼›ômØ-nHâ@ ».ôhé6"Ð\ÆVßbëd{¦FóPÀª­ÈÓÆ9hµ•òJq§W›\¹eãÓ«™_WCÄôj’úÙa„ÀÀx_ò…C ¨dã>ÒæD'1rö`H+ß¾¦egƒÉÔDñ¹‚Þ5 &·yÔÃmî«|h¸±§—ë;åÇ~ZQÏC8š#Aiµ]dïWöêâ• iÚpnAÝ*¥¢øãC î – t3¦þçÆ,$|÷ðx7޹ƯîÉ8uQÙÕÕ~çÑÍÅ\?øÉÛ“·7…°(Ô?ÍöD*ÿM^×}Jm¶Q­R9{9ªß +Ä"c +Àm(ïó°HØD‡ŠŸŠ³–!§BH˜ó +­_ü¹®(‹ëA¤¼­çNëmv¢©ÀÄ#ѺJ4kR(éäµãv6]é㪠:´aœn3‚š)µ–ZʸÜ2]a›mlî¼êxÂS?™aÂ"¤š¼G@ÁI‚=>´³öÜFÄõÞ9p›ܧ` Ël«þŽ<Ù¨DCºŽ·€©ÞÜ"èCÑ–(KQÐËÔUI‹ë;Ñu®½>AÅÓÎõÚÔ/2tºË¹ÊÚÊúz¥«ì"¤ÈQ ó]u»¥±ƒŠvŠ³¦Tk!» ’›w°ÈcaZ[Å£ –1zïôH/g“ÊÕªäLXz-ãcJñI;%såK ·¯B——Á&¤<8ÿåýþó9ÚZ¾ªÌZV®¤:K@1ÔŸ`Þ ëÁBdb5D2Õöšs]J`ÃÁ}Œ"Â?"ÑŠ lì«ÚŽ{\>xÉïÞ}tµýô• +©oŠé®v8‡ÙÑÆ:žú ÒÀüg0Š€5¿íf‰ÔÍ ñ}ÑÌЯ+vÊ-Ä@ÞÞ3¿aÑ?„½\^Îk-ý]¼­€ø,!326¶­%›Ó"_¹aèqñ#ö›§7Fù{·[^¼T‚ƒ¤_<· VwqHN3fkÑñ.·ÂP°MÈþýW<ýúÙ嫃½gŒ™u\UyU©ÔªÃ(šM_Ãg¸ôKe`öÍÒˆÌä_§ËÄfd$&õiFF/õßà•™—bY)|:Ñ4;âªéD¤"(øUºaüÌ.^lOé›%‘Ò)El"èÐGÚ­¿;ɵÔ6uô²-qH‚oôä‚}9åÅz.¯¸ÀdÒ{X§1±3ŠýdO’¡?FÐÎò19ZFØ’mÛ·*©) Á/°Øü–™´4Óë.|= =dcÕ©šz®­®¹£lß·ÝU]åªÂªŸ!rí®¤¼BNÊx½ìý7ãs³”¦h‰ÑÑ2¸#Zô©ß"´±\bsÿ,½#Kÿòˆf¾<­ÿ47>)Ö0úd¢}âO °)Xg6]0™GW½6 +ÇH{Uƒ­ž¨¿tz˜m;e9ÞÈÓõ°ž¤«ª‹Ë­ElJ”~Cž«×³SrHØöÚv­WR1%ð.´Áü*l¸a²®Æteìð#ž|ýŠ¯üCúÍ{<¶µ54+Û[뺆ŠÌg¸N äMY;£YĬÙü_¹ýr `Záƒ'Ë +•…‡J5É‘í-:ŽBt ,AïEÞ“°™Î§ÿh¤CÈ Í‰]Ù\Þ¹k…ÃìÐÀ‰ZO_†ù¤¥ä°å»çpÇ=ü‹A )ƒA*,Ä;ÄHY‡)Ýå,ÑÝy¡·ó¢D?ÅÏoV¢…°ã8™½?_Ÿ‰¼ÑruÄ.ší°Än·wØ ”nŸ°“’é€gL’iÒîÉ9öîöò´zÍÅ,PÍ/{“—\Ÿ+Ö2ÿ`rÐ +endstream +endobj +1141 0 obj +<< +/Filter /FlateDecode +/Length 360 +/Subtype /Type1C +>> +stream +H‰|OKQÅgLGJ + #î¢]¦&B¹† úcZÛbtž:¤óä͹j+µ˜mÐèH´mm]Ô¢ý¼|.zoÚ´js¸¿{¸çÞ+KÁ€$ËòÒ®¦Ëkû=bêF‰àõ2jt[:f‚&dÒå¨Ê6Øp2™ì…¼ç…_”²üþ±;|®Ñt`#ŸÏ&…æ|ÝLB6“ÉøšÍÀU•ží ¶ E«†IÝAF +´V ü²¹ÍßkÀ´™NйÙ0ùª¢b‚b^3våÒK×K¹®{ï*¬î¾¹á•»êYtv¼Î#ãëèü}8¤` +endstream +endobj +1142 0 obj +<< +/Filter /FlateDecode +/Length 1318 +/Subtype /Type1C +>> +stream +H‰|RkPWÞ%ì ͪYº»u°•‡"¨ØŠ"c­ÖŠO ` Ć„&1€h ø ’jŽ´µE-‚Š:0ã£øì訵µ>(JUpêà8­=K/éÿôWïÌ=s¾ïÌ9ç;ç^ ÀpWe¬KMI^µ¬Ü¬×êV˜M33øb}žÉ óG9ÆU ¬D ÈØö÷.‡À£IWˆL€ã÷SL%bva‘•‹KLÔDûmü˜ÍiÔjõ˜ç’u¦<žË(·Xùb ·Ä˜o2—˜ÌZ+¯‹á’ n¬„…3óÞló“¯5qz Çë­E¼™ÓŠÁB½˜oæuœÕ¬ÕñÅZó'œÉù,øŸVœÞȉµ¸ÕF½eXEÒÂiºX±Ši¬K¾i“ÑjÖó–˜Ø´ŒUå%<7—Óñ˜xpl¦À(L…Åb)X¶[e`k± â.±e"hÂÎàx%~'`i@“„•äINH^pîáy.Úð‰;PpŒ¬uàE”( ö0D"U‚Œ~!%sÆ|HB"&…3J¿‡üH>.·?ÊžáGa"| +!88¡DÑ ( å°(³ö> +ƒHbûà àaÕ"àP똩ü©]ƒ¢šŸ•’žÛšZ渺\£åͶ¦;È$`ÙN"Íüæ]"<¤ÜýRÈ}ðØK( }‰š<ÒÞnˆ?ûT½J}ŠÂùl¦=ž8ØÚ}¨—~xdÝG¬+!e>š‰¦%-ž²P*¯†7ŸÀî§xÈÁ +ÉPµò€«ÅÝâØ}÷pïÙ ë?t «Í<‰:Ù(„¡‰(¸?ˆ«]ÍÇZ«r¹1S«ŸZhÌÚœUSì(s•y‚``SÞo]0ËÅnvTÕlc e…Öõt:溋½×yþ +#¿á†Yˆ± ßÀtw©âp H*>…RÊ×㌷¶uAçÜÓÉSa1§£Ff#U’Ôþpoüž8ÆInëîæüŒÁ©)ˆûg6)ßdþ¾Mxûw(*U\ƒq“¨-ðn(Õ½û¶¸·Û¾·\¥!$ÂÂŒÚÙÃHF/ZcÈ.fp…ŒÞ$©-ë«  UéóÔ{ö2ç;Û{输© ,Õ‘½,i͆cÝŸ1ν®º:•\]5ŠG ë÷86BD°¯3|¥úk-„" R'" +Ñ(b(47/4ì?Å”?$¶äm[IÏO;þ›ƒ}سë»w辦ä+‡Í6aÚ »Š`H}'‡Q®…ŠþI²ÑÓ¸ËÇ­?ÒÞE÷~›•Î¢6‘ï”6z÷y}L[Ñçè‹-YóXô¥ÈwHAx~^¾¡ª¬„±n--Ý\ä$ÏÙÖ·/¥ssx ë ©î?o‘^mmv†J¾Áþ~}"DÁv $Ð!ìT¢w¦E x¤~ ŒøÏ÷EM3"_¢é¬#NÙ4~ADfZêÂo={ÐÖ?ÀÊÑçâHí¥-coA5ˆÚC`I]nô4xê™óõÇ/ÒûêÎ:–j€ )uÙSµ½¶’^»²(ÍÂÖÔ¡š!‚#½¹µÙKTòni*Jõª¤^¨PÂ’Ñ +&°\¨ P(™„Üuì³\;_ä «;ªNl=ý¸§È+}B…¢|>ß×>ønû¤"U惘1*H¤~ñcšórƒÇ¹ƒeƒã!D6X,´NþPþ+À­`€X +endstream +endobj +1143 0 obj +<< +/K [1149 0 R 1151 0 R 1153 0 R] +/P 887 0 R +/S /Table +>> +endobj +1144 0 obj +<< +/A << +/BBox [85.0394 112.093 501.232 633.543] +/O /Layout +>> +/K [1155 0 R 1184 0 R 1156 0 R 1158 0 R 1160 0 R] +/P 898 0 R +/S /Table +>> +endobj +1145 0 obj +<< +/A << +/BBox [113.386 691.308 529.579 737.008] +/O /Layout +>> +/K [1162 0 R 1185 0 R] +/P 899 0 R +/S /Table +>> +endobj +1146 0 obj +<< +/A << +/BBox [113.386 105.704 529.579 705.354] +/O /Layout +>> +/K [1163 0 R 1186 0 R 1164 0 R 1166 0 R 1168 0 R 1170 0 R 1172 0 R 1174 0 R 1176 0 R] +/P 912 0 R +/S /Table +>> +endobj +1147 0 obj +<< +/K [913 0 R 1187 0 R] +/S /TR +>> +endobj +1148 0 obj +<< +/K [915 0 R 917 0 R 919 0 R 921 0 R] +/P 1187 0 R +/S /L +>> +endobj +1149 0 obj +<< +/K [922 0 R 1188 0 R] +/P 1143 0 R +/S /TR +>> +endobj +1150 0 obj +<< +/K [924 0 R 926 0 R] +/P 1188 0 R +/S /L +>> +endobj +1151 0 obj +<< +/K [927 0 R 1189 0 R] +/P 1143 0 R +/S /TR +>> +endobj +1152 0 obj +<< +/K [929 0 R 931 0 R 933 0 R 935 0 R 937 0 R 939 0 R 941 0 R 943 0 R 945 0 R] +/P 1189 0 R +/S /L +>> +endobj +1153 0 obj +<< +/K [946 0 R 1190 0 R] +/P 1143 0 R +/S /TR +>> +endobj +1154 0 obj +<< +/K [948 0 R 950 0 R 952 0 R] +/P 1190 0 R +/S /L +>> +endobj +1155 0 obj +<< +/K 964 0 R +/P 1144 0 R +/S /TR +>> +endobj +1156 0 obj +<< +/K [965 0 R 1191 0 R] +/P 1144 0 R +/S /TR +>> +endobj +1157 0 obj +<< +/K [967 0 R 969 0 R 971 0 R 973 0 R 975 0 R 977 0 R] +/P 1191 0 R +/S /L +>> +endobj +1158 0 obj +<< +/K [978 0 R 1192 0 R] +/P 1144 0 R +/S /TR +>> +endobj +1159 0 obj +<< +/K [980 0 R 982 0 R 984 0 R 986 0 R 988 0 R 990 0 R] +/P 1192 0 R +/S /L +>> +endobj +1160 0 obj +<< +/K [991 0 R 1193 0 R] +/P 1144 0 R +/S /TR +>> +endobj +1161 0 obj +<< +/K [993 0 R 995 0 R 997 0 R 999 0 R 1001 0 R] +/P 1193 0 R +/S /L +>> +endobj +1162 0 obj +<< +/K 1038 0 R +/P 1145 0 R +/S /TR +>> +endobj +1163 0 obj +<< +/K [1085 0 R 1086 0 R 1087 0 R] +/P 1146 0 R +/S /TR +>> +endobj +1164 0 obj +<< +/K [1088 0 R 1089 0 R 1194 0 R] +/P 1146 0 R +/S /TR +>> +endobj +1165 0 obj +<< +/K [1091 0 R 1093 0 R 1095 0 R] +/P 1194 0 R +/S /L +>> +endobj +1166 0 obj +<< +/K [1096 0 R 1097 0 R 1195 0 R] +/P 1146 0 R +/S /TR +>> +endobj +1167 0 obj +<< +/K [1099 0 R 1101 0 R 1103 0 R 1105 0 R] +/P 1195 0 R +/S /L +>> +endobj +1168 0 obj +<< +/K [1106 0 R 1107 0 R 1196 0 R] +/P 1146 0 R +/S /TR +>> +endobj +1169 0 obj +<< +/K 1109 0 R +/P 1196 0 R +/S /L +>> +endobj +1170 0 obj +<< +/K [1110 0 R 1111 0 R 1197 0 R] +/P 1146 0 R +/S /TR +>> +endobj +1171 0 obj +<< +/K [1113 0 R 1115 0 R] +/P 1197 0 R +/S /L +>> +endobj +1172 0 obj +<< +/K [1116 0 R 1117 0 R 1198 0 R] +/P 1146 0 R +/S /TR +>> +endobj +1173 0 obj +<< +/K 1119 0 R +/P 1198 0 R +/S /L +>> +endobj +1174 0 obj +<< +/K [1120 0 R 1121 0 R 1199 0 R] +/P 1146 0 R +/S /TR +>> +endobj +1175 0 obj +<< +/K [1123 0 R 1125 0 R] +/P 1199 0 R +/S /L +>> +endobj +1176 0 obj +<< +/K [1126 0 R 1127 0 R 1200 0 R] +/P 1146 0 R +/S /TR +>> +endobj +1177 0 obj +<< +/K [1129 0 R 1131 0 R] +/P 1200 0 R +/S /L +>> +endobj +1178 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1179 0 obj +<< +/Filter /FlateDecode +/Length 3263 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘Ä)P=ë5ˆdó4³H”æÆhÚ±Thf´ZgtFKÛ™88–8:…ÒÑjú;w—L°ú‡t:éýåÞóûç;ß÷sï†eÓ *¿±¹lYÅI"ãUho +ö'äóe‡™‹ˆôªö¾ŽžWÏ®¶‰r|DÚíÝÛÛ‡Oß½ ¾Gqïè Bg=UE”;ye'ù—d=ùÈWtö$¶Õ_Ÿ|€(¯€HìéŽSSD¬÷‰žÀ¶>q“±”¨àüeo '|ß™%?/Dq¬/î»ñwWÞ;Ö-Ä‘7‰}&Y5sÌ·™ö6û9’›"}Ja•}9™;Ik>Ƴ¢|yž+¯È•çôŧ/Iÿ¬r@Çòô éõ««àWÄø^µ&û&ñWQ¾ +SŸÓ†‡´áÏý¤®Åÿ‡ƒëþ‡¡®ÚGŒR×2¢4T)Å5ð†47ÀÛÒÜÄùÛ¡§– )DŸ¥9£rv[šsšÍJs¼cì@šk௧¹þÏ47q÷!¹¬¼|¥Ü Æ¢ñh{BÖFc}ÑX ‰ö–ʵÝݲ)ÒÑ™ˆË¦p<ë‡J×Ý°~ËÚÚâ-‘ÞŽîxIS¸ckw ömõÓ +‰Ëp$ÑŽÉ€Œ…;"ñD8ÉD, +÷b]2ª,3Äö¯ÏWFz%ÂÈͽ‘æ7'‰p\zCeuF·ö&b‘p¼TÒ!’è{9°l#E(H1ŠRw;% «‹QŸó @ë¥RXÖR7 © ºê„-îHaŒax÷ã‚ç:ºÖÓø×R1ÆæwÀ’ãTâÌé ­ˆÀ¼‹¥o;û?íÿïL=Ã胪]ÂWbT3•5áhU?$¸êdR± ºèôœ¯·¶«Ý‘Nn2¤Í"Njýf°€#Å5{¡-KgQAÒVXUFÇ[í:ÞXóRöCÒ)C{C{¯î¼ #…„Ìá›®ÍRRÍ'ò“)£˜=If³¾Ñû¿~½õ– + È|ü~3ØOñ…ª ý¸C¸¡!â£)ZŽÛk ÓøÝ\†N*ýrÚ‰§‡þÁÒ͵Ô{¼c¬†-ˆ‘91†Ø^g¼›îEìOù(?Æ9Ö5ˆÛ Ìm~L´jÕú¸‘o¬2»\|{óP¡ŠvNcpçtÔþÀ8kd-¬“ícÃÈá8›Îò¾]Wø±ðk9Ú‡z—þ0nl6Í0[Ç÷}Îi]ª¼X£9‡èüv(ÜìD/¿OÑ0=Ž/à½L¿QkÒI:EçÑ9€ªk»†mZÛÅîE?gàAv€²—‘ßkì~ªN¡Õ§²ÜÍ÷óùküuþ'>Á?⟠+™âvÑ&ââ)qX¼)ÞÔÖkÃÚãÚûÚû:Óm§SùFq«1ì53Í.ó^óGæ£æ/²Ji>êr£®|‡‚´•ì¤=”tvmx‘^Æé#U0•®Dáæaul3ÐÊnf~ÖÃâlÛtEO²§ÙAö"jyx—dae;8Ï >O×·‰7ó-¼‹ïãðüœÈQ~”¿ËO¡Æ ~5f‹|1W\*¼¢h·ˆmb·xN'Å$ö-G»N«Ö6k·¢öÚ„ö!v’ëB/ÒWèU@§Þ«ïÒõŸáDOê“FŽÓ•|ãcµq¿ñ˜1j¼g|aÎ5ç™—¥f…Ùlv›ýæasÂ<ñlæÚÌHf,ËM‡ñËö˯¼½/átÿ–ßj”Ñv§áN1^ê{wœç˜Ý™>ª²3›ÙìÔé¼È¤ Ú Ú"n¡n½Md›gè ‹k÷°gD=KO™ýì¨ð‹Iñ”^d¬Nõ“ï‡Íí¦ßð=V«´'¾ÑáÚbG˜Áå é-ìôH›ù¥×®ëïLzýÄÉΪµjÃY%nÉÊͳ묾VWÍÂë¼U#œ2f!+»ÁòxízË£R°E‘7²75ú¼ž….Wk‰ÛfµA«Í&ëz{N±ãBµÎ2¶Qk›Î22¢Ê¡A9â~%¹w,—ÚüÅ9!+øžÏVµF^±½ÎòØëvL–¸ÇØÓ->;³vŒQ‹ï5L ŒÔx<­jµüZßýŽû|¸Ïß1±P$½…©Ädò~i7úfZ]êÙÚŠ %î M>²¶¼{¥*£ÉçT€ ¬° I**3UpØò*ÿigZ×[É;üجI›š¶»^XÐPsdêÏÔà•ÉŸå²×,´ZžE#”lÚ>Z_#ë/¶”¸GróR™='MrfÍ$ái›ÃwÅõ…V3•‘U#bË D&>ËæE•ê®¤d°n¸Z:AÿüÉÜ*µzQ®%“çÁšLj­*CË].µËƒc5ÔÁøëåEÇñßÜíÝÌ]k{ô_.®Ê•ÓÆØ4¦­Bh®‡ý{©š;$éµ¥#ሺÒ#œÇëÓ™1|e“©†Áì˜ÙÉŽ§qkºð*f³]ÑHW6“Ì-ŠFBÑìL"‘ÝÓ™)t)·4?f:±ñôNAuZy4œêÍ)¯éIsÉczÓM¼JóyŽ¼sddí@åÆ_”©Ü¥§í£‹Ú_ýðG#Ñb2xK6“^ãVx°l^L•-}¼U̶ÛáÛOz©G¤[UíÔx˜&ƒ»À<õÉš \!Û{ŽÔ4Ùr ÙÊ<LÙ!0N¶Z ;x•lßÛŒ®kìבÃÌG¾E}êÚ|åzλèr7âÀ˜#ÛŸÂñ#Œ|1¶3º¾ÿ*=[@ýˆz=ˆ}s\DÞeˆ=†Ø+p-Mú{i²p.ßoy®\³ÿ9Äkó×ñ_K †¶pÝí©K0ú'_o`¿~ûªFqü&xÍé°±ÓÎ…ñì[F[ ûPgß²±øŸÁÜÑöžå>»çYÎqæßêºÞOwÖ¡|î:Ê•wmÛE -‹úçºÿ 5´ ¬ ?¿Í+ôãùôó=wï{i»ßË7òä÷ý—¢²L1ÿ{)ÅøË´ Ñ÷Ø-wÀwà½IÃÞZVݘ!ë7ó¶(ÇZp‚*0“¡´¯ðÏÆ€ž·ÇÊ©« UªV©XO$çY;ÛÓt%¦Y°Î²¦XgX§X'YÇY½¬V7+Ί±ÚYYëY~–Áò²Dì)ø{p|n€OÀEð8l0 ¦Àpï‚qp ƒ·ÍóÜ´Í:ÇzŸušõëëIVk«%Y>–‡E±ü-ø\ŸƒÏÀø\sàCp¼ ö‚í=-5šÀ:+'^ŒõJ뤴ŽJkBZ»¥õ¼´vHkDZÛ¤µUZii¥äƒjŠ¨Ô}ê^VuªFU©ªPå*¨”ò+Cyža§Ú›ð$úã"áÌSb(âüÚÍ‰à–­Ž/NU‚OÇÃN[£ã9ìÎhrbiFˆ×GM=™¹DB,N˜y§ÓT×ø÷-\²—Hî½B«Å:’øm“«?•:Ú¨åF-µÜhXÌ&©%18–¹ŸîÒð_›X1[R³s—în25£(žÞ¼=ç) ¢?³>¯ íiw;·¡>¼ß¼l˜¢2|ÓË1I¼èTSGS‡NዦSzþ˜O…÷o¨7/‹©|*„ð* åŸ s0oÖ +endstream +endobj +1180 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1181 0 obj +<< +/Filter /FlateDecode +/Length 3263 +/Length1 6160 +>> +stream +H‰ìV}pTÕ?÷Þ÷‘/$ R p×gÉn>@HD…`v£ “J ÙMv“¬Ùdãî’ü˜XhÅ :í˜:£Å­:€ób° v,š-ÖÑÁÒv&Ž5ŽN¥t´šþîÛ%¬þáNgúNÞ{¿sÎïž{ι÷Ý 1"Ê¥TqcKùŠÊS)"ãXojïOÊçÊ"2ék:ú:{^ùôj›(ÏO¤mïŒîê>{çFpáÞ݆>|äÌ¢ü1è«»`(œ“s?ô¡_ÖÕ“ÜY]ê^¢‚""±/kMM±jÜ'{‚;ûÄMÆr¢¢àËÞ`Ox칪—À…*Ž÷ÅÃ}7þîòíðc>±‰8ò&1 ƒ`’U3Û|“io²_ ¹)Ò§ÄQöQù—“ù“´î#<++V¸ +J\®A_ pú’ôñϪ´qLOÏÒÞ¨_‰XE/ãûÕœìs˜Ä_eE†>« ißH]Kÿ/Ž\û?,êÊ£‰QúZA”Á‚Š¡¥±ÜÁp[›Ø»ÕæÔ²¡…è³ fTÁnÉ`N—°û3ß;Áðklÿ3ƒMFÜ}H®¨¨X-#íñX"Ö‘”µ±x_,LFb½er}4*›#]É„l'Âñþp¨¬e}cK·tK¤·3„;áiwîˆãßÖ>m‘„ G’]ḠÊx¸3’H†ãáLƃ¡pO0Þ-cÊ3Cíøú|e¤W"ŒÜÜIb|K2˜ 'd°7TŽ1g‚öØŽÞd<N”I:D}¯€¬j¤µSœb”ÀÝAIØjâÔç<ƒ°D€z© žõ…Hj†­“ºàK8Zï0Øýx†Àl³Ï:òR)m»üPæ 3¦“v Zã.Ö¾íèÿ4ÿßH=Ãx'ÑU»Wâ­F*oÒ±ª~H`ÕÉ´'b7l±é1_ïíøV«#Üd&I›¡EœÔü-@AGK8söÂZžÉ 6£‚vh;àUE¶Zu|±æböcÒ)K;¥Â§;ï›BBæÁñMWc‹”Tó±üxÊ(eOP¥YÉìodÿׯ7¾ÑS ig~~7ß +ô3œP•ô0îî‡hˆ†øhšC+qÛ@ t¿›+ÐIe_Iwà饰ƒô#Çr µÁßö ¼×Â׎7sb ±ýÎûNÚ‹ØŸðQ~œw¼ë·A1ÒÂGõqØU¼=ôa/ƒs;=ßQzCBä!üòžgË ƒì=6É7ÂÊÔüˆÓ öòý5½CcEl-K±càò»\Ò³ €sò†EI#‹²‹³{s‚ ¾ +Qc|æ6?.Zµµú¸QhT™QDÁ‹³·ªhßÃnlƒÜ65-`œ5±M¬‹=Ȇ‘à 6 ù”{ø:t]ÉOE@ËÓÞ×»õÇ!ãÆfó‘,±uœï °OKèJTåÃMÈ9D·â·CÉí;ÐËУ4Lá¡é7jN:Mgè<º3¢êªbW±-VHœÝÅö¢ƒ3ä>v€²‘ß«ì-¾U§%ŠêÓYîáó#üUþÿŸàðO‰l±]´‰„xR¯‹×µ´aí1í]í]é¶Ó©B£ÈØf Bö›Ùf·¹×ü‰ùˆùËœ2šºÜ¨«çP;íB%wÐ>J9«69B/@ÆéUd*S‰’«˜—Õ±ÍV¶•XK°Ó=ÁžbÙÔòämvšý…ý•}äÈynðy¼tº¾¼…oáÝüAþ?ÀŸÆŽåÇøÛü jœàçPc®(sÅbáuMâf±SìÏŠãⴘĺåi×jkµÍÚ6Ô~R›ÐÞÇJr]è%ú*} ¤KïÕïÒõŸcGOê“FžÓ•BcŽqµqñ¨1j¼c|aÎ5ç™—BÊÌJ³ÅŒšýæasÂ<›õLöúìHv<ÇM‡ñËö«¯|½/`wÿ–o3Êi;Ýp›˜ –:ïNð<3šá£*;³…-ÃJý‘΋lÚ ¤-âfŠêm"×ü²„v7{ZÔÑ3ô¤ÙÏŽ‰€˜Oê%ÆÕé~ò‡Åas—0Ï"ÓOÅz—YÆÖëƒì _‡/:ΚèïìÝ‚™“|9¤{ië§,Êz†Í·v‚/aƒúãâymXøô»ØXÁ…ú¸ø!­¢¹ø/j]Š½®S‘:pkªª«®\¹¢²¢¼Ìã.]~Ų˗–\f]ê’KwÑÂß)ž?onќ‚üÙ—ÌÊËÍÉÎ2 ]œ‘ÛgÕ¤½4`kK­nð(Ý +ÂœaØø×cË€C“3kÀìø +³&ͬ™f²|y ]ãqKŸ%íß{-9ƶ6ùïóZ­Òžtp£ƒµ¥Ž2 ŠË…ÒWÜå•6 HŸ]×ß•ò¼ˆ7’›SkÕ†sµJóBV(ø}¿-‚­jŽ‚RûzËk_¿{¢ØãcOmòÛÙµcŒ6ùRÃÔÀHý€×Ûªf+¬õßãÐçƒ>÷ÄB‘òG¤RS©{¤=ÜäŸéu©gk+‚zÜšý.dmùöKUF³ß©AYq9’T6Ufºà°åS–À­Òζ®³ºR·°X R65ïr=¿ ¡æèÔŸ©Á'S›ü–Ë^·Ðj zQªy×h}¬¿Øãqä¤;=rÉì È›5„§}rè +!ë ­f*#«[Ä–í™ø-›—T«G¸šRíÕ ájeèhý ¤òר…ÐKò-™:GØÖä‡[‚‹Q’ŽTÛezËÁÛ¥¥öòåj§˜µXZd¶ÖÑWyÜýö«/_ÚÐ2ÚèÇ Ö5åh¹Ë¥Vyp¬†Ú ØMÿb½üb›ªâ8þ»ímÏi;·²?MãUé(.Æe1ÛT†ÀÒ×ýéƒ5SÓ"ɺHŒð¤!‚Áì6½ÊŒO2ˆ"wån,„„%:%ñÁ(F1’ OÆWMŒqõ{tâôÁ›}ú9÷÷;÷Ü{νw÷œ4ïGhؘ§ØCÍÛ•U™ÅR¦ái•9XÊ”ÏFñ8Ÿs–6 ¶l*ÿÕCuÝ»³µÐ*éQÎãõéŽÌéžûs©tÓPnÜhÊæ&2¸5 ¼Š¹\"Iä²¹¡|áàp4Œææ’ÉÜÞîl©KùÂâ¸aÇ&2»4 ªÝΣa×mM» W†K.ÃiáUšÇõz{ ñÓ`Íæ_¤!¥'­£ËÊ_~ÿG3ÑrÊS´’Zã•Vx°h]N&ˆ +_øo–3¥í–Nøö“Zê©Ve'õû )ÿn°Hý¢‰¦|—ÉrŸ¡%9K–XG–¯¦È 8 &È’Kdù¯åy›Quõ=àr˜ùˆ·¨_G›¯ ÜÈyUîAè dyÓ8~”¯2úFÕ÷^¡gJÈP¯±ÏqŽ È €ØȽ 7Д·¦JçòüVä*À5{ŸE¼¡xòµøbh ×-О¼£âEðöÛá繯r ÇowÒ‚¿™Žè;Eé\ÏþtT°uö¯‹ÿÌ-÷iî³sž•L3ÿVOWõ~¼½Ž,殡\sǶ´á±Ãÿ\÷¿!‡W€5äç·u5ü^<Ÿ^¾çÎ}¯l÷ërùz‘â¾÷‘JdŽ)篤‰–ê;å.ø6Ü7hÄÝ@#²3dõfÞÒª°œ¤j̤ƒ(mÄ+ü³>¨æí±*J$P¥vŒõFò®Gç{Û CŽ´YÖ¬Ó¬Ö)Ö»¬¬iV«—Õʳb¬NÖfÖF–—¥³Ü,-öü¸¾×ÁÇà8Î Ì‚p +Lƒcà00è´y–›¶XgXï³N²Þcc=Îêbmau°ËÃr±(ƒ¿_«à3ð)Xs`|Žƒ7Á>°£·­ÞWïÛ`æµb}Â'ÌÂævanfF˜i±^®“yŸ¼GÞ-Ã2$ëe­ ÊjY%ýRJ¯Ô¥Kâ¶ëÜIWr ®%íÅJGì_¢yÍÿä6Ûkvm’’OÅÃvG³í:âÌhòZaNÓ^3Ôdæ"iZalÒ(:“¡Póß·pÅ^2µï2­Õ6Àoû‚Xû‰PÑDM'jª¨éDÃÚ|ŠÚ’CãÙ{é ÿµi«f+jvïVÝM¥ç$Å3[·³\?ú“53ñPpo§Ó¹MáÆ%´ +à›^…Iâ]@¥ZºZºT +_4•ªVóÇb*|`S£qI›)¦‚¯ÁPþ)À­oÖ +endstream +endobj +1182 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1183 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1201 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1202 0 R +/FontName /CUCKKZ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1184 0 obj +<< +/K 1203 0 R +/P 1144 0 R +/S /TR +>> +endobj +1185 0 obj +<< +/K 1204 0 R +/P 1145 0 R +/S /TR +>> +endobj +1186 0 obj +<< +/K 1205 0 R +/P 1146 0 R +/S /TR +>> +endobj +1187 0 obj +<< +/K 1148 0 R +/P 1147 0 R +/S /TD +>> +endobj +1188 0 obj +<< +/K 1150 0 R +/P 1149 0 R +/S /TD +>> +endobj +1189 0 obj +<< +/K 1152 0 R +/P 1151 0 R +/S /TD +>> +endobj +1190 0 obj +<< +/K 1154 0 R +/P 1153 0 R +/S /TD +>> +endobj +1191 0 obj +<< +/K 1157 0 R +/P 1156 0 R +/S /TD +>> +endobj +1192 0 obj +<< +/K 1159 0 R +/P 1158 0 R +/S /TD +>> +endobj +1193 0 obj +<< +/K 1161 0 R +/P 1160 0 R +/S /TD +>> +endobj +1194 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 1165 0 R +/P 1164 0 R +/S /TD +>> +endobj +1195 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 1167 0 R +/P 1166 0 R +/S /TD +>> +endobj +1196 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 1169 0 R +/P 1168 0 R +/S /TD +>> +endobj +1197 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 1171 0 R +/P 1170 0 R +/S /TD +>> +endobj +1198 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 1173 0 R +/P 1172 0 R +/S /TD +>> +endobj +1199 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 1175 0 R +/P 1174 0 R +/S /TD +>> +endobj +1200 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 1177 0 R +/P 1176 0 R +/S /TD +>> +endobj +1201 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1202 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVkl×>÷ÞyøØÆ€î21!xýâé1†ÝuÀ ¶!¬I »ö®íÅuv  'ÐkµŠ‹ +“†D㘴Ñ*¥ZJJŠ”H‰Hi+9"JqDT(UÒÄýfv± ?øQU•:ŸïÌw÷Üsν3kbD”N]$¨øáÚ¢Y%çãDÚ[Ð>ÒГ¯9B¤O&R4v4µ½um¡I”á%RÖ7µnnì½¼m%|OcliúW^Z@”yò¼f(²Ç¦=ù*ä{›Ûb›–/ï!ÊÊ!»[à þœáœa"VŠq®Í¿©C<¢Í$Ê9Ùîo þdÛ=»á Qœéˆ;þÝ}ëaÇzbqäM¢K€ƒNFùý=¦¼Ç~Žä†I§ØÇDE_eÑâÏp/)žåÈÊsd9º}ÕÅékR¾(íR°<§u…:±r~EŒïµÖd_"ÀþJŠçcêq¥·GéýÒGÖ5ýÿ°ñàÿ0¬+ƒö£Ä5‹(ÉåBJp¼2É5ðú$×qþ¶X‡SI… /’œQ1{,É9fÏ$9Þ1v Éðw’\ÿg’댸óˆœU\ÖÆ¢lÓHE/±—Ùavµ¼|À.²¿°¿²ÏlÜàÏóGê[ÉkùÞÂ÷ñçøþ +Nd??Í?à—Pã ¿ŽÓE¶'¦¨V‰GÅ&±CgÄE1„}ËPTÊ”ÕÊ:Ô~NT>ÁNrU¨yê\uЬ¶«ÛÕnõg8ÑCê–aw%[«-ÔviÏkýÚ‡ÚWú8}¼> (ÔKôZ½UïÔêƒúå”c©KRC©‘4'Å/Û/¿ñö¾ŽÓý[¾N+¢‰ì"NÃãb ¼¬ïÝYž¡·¦†x¿•^Ëf`§þH7D*U)çhx”ZÕz‘®_¡Ã,ª<É^tŒéì´ð‰!qHÍÓ&úÉ÷‹£úfݧ_F¦×ijj³^È–¨Ýì0_Œ7:ªéïì:=†•c|&£=´›uR +õ¤c£ð®åSY·ú¢xMéu;»;8Iߧ¹4ÿEÍ i8ë*åXÜòù¥óçÌžUR\TXàÌŸyÿŒû¦çÝkLsÈ©S¾3yÒÄ{r'Œ—36;+sÌèQéi©)º¦*‚3rzŒ +Ÿ4§ûLeº±lY%~(ü·(|&þõ0+n÷1¥Ïv“·{–óñžå ÏòO–)Ñ¢§ôÒü½Û'ÙÚj/øÓn£NšC6_aseº-Œ‚àp`†ôä6»¥É|ÒcVt6Ç=>7âõ¥§¹ W0­ÀI}ié é`f…ÑÑÇ*ʘMx…gA§”QÈʬ4Üs¹á¶R0EžÇ0WV{=îIG]Ód®£Þ$c©9&ßv!—½Œ©¹LÝ^F†¬r¨[ö9ߌï=™Iõ¾üŒ€ðÏk +µFV¾ùá6Ú2˜[à<É^^å5S]'­òž¢Êᮾå]nwµZ¶Ë»ËvŸ÷ ['‰¸'7$-1ß%ÍÞjï­V‡u¯«CÐgU׬ Ï^i•Qãµ+@P–[„$-Uf¢à á±4¾ ÒL5–Íñ >lÖĸI5›¯M¬,?5ügªôÈø*¯á0O2êüîÉ}9¯ÙÜ¿¼\.¿ÝRàìËÌJtºoô˜$Éu+ ŽØlf»[ Yßl5³22–㈘²A"¯aò¼Rë,¥xC)ÜpÕ1t4„þùâ™ ¬Pó2 ¿N8ÆЕÛ5þ¤FË˼NµŽËÈ‘ƒý&7óóÍ™3­“¢»°µÈ¬Ì–ç8;Í*£#SšUh­ôbRÝ‚"´Üá°v¹ûd9ÕC0»ª½ ù_¬—_lEÇs·w3w­íѹ¸*WcÓ˜¶*E ¹öï=x¤hzHÒkK $*$&‚!˜Ú€×VW©ñI +Q¤`W¶-âAHh¢U ‰b# úè«&ÆØúýÝ\Åꃛ~î3ûûÍÎîÌîvg"4hÎQì¡ú”ãIëÌB>Sý¤ÎÎg +‡§£xœÏ»K›jGÕþÊC5•í{sDÍ*éaÎãõi̾û3ɾºÌ˜Y—ÎŒ§pk:ð*f2ÑHG&È.ŒFBÑÌl"‘ÙßžÎw)»¼0f:±ñÔAušy4œÊ­}^Ó“â’Çô¦x•æó¼þü³#ÛûË7ÿ¢Låþ+=e[Òþê‡?ꉖ’Á›²‘ô/¿ÂƒeãR’¨dœhùËàÍB&¿Ý2ß~ÒK="ݪj¥žÀ4Ü ¨GÖÑdà2ÙÞ³´¨fÈ–ëÈ”çègJŽ€q²Õ"ÙÁ+dûÞft]c¸†f>ò-êQ'Ðæ+(×rÞE—;Æ<Ùþ>?ÌÈWc£ëû¯ÐSyԨׅØ8ÇäMP‚ØȽ WÓ¤¿›&óçòý–ã*À5ûŸF¼:wòµbh ×-Ñžº£òEðö›á縯jÇowÓ|°žŽ;Mþ\Ïž´qu®‹ÿÌmïî³{ž•L1ÿVÏÐõ~º½Žår×P.¿cÛ.bpEìÈ?×ýo¨Á`M øùm\ ϧŸï¹{ß‹Ûý¦P¾ž#·ï¤•a +ùß‹)Ä_¢E¾Çn¹ ¾ ï òVÓêÄ Y¿™·D)Ö‚T†™t¥x…6úõ¼=VJ¨R±Fź"YÏ£s]MЈ+1Ãú€u†5Í:Íz—u’5Åêfu±:YqVŒÕÊÚÌÚÈò³ –—%bOÀ߃à;p|.€À9`ƒ0 Nƒ)p¼ÆÁýn›ç¸i›u–õ>ëë=ÖqÖã¬6ÖV K²|,‹b1ø[ð5¸ +>ŸEð18æÁ‡àx»ºšªU VV¼ë–ÖIi“Ö„´öIëií–Ö°´vJk‡´RÒê“ëÕ:Q÷©{ÔÝ*¬jT•ªP!U¦JUP)åW†ò(<ÃN¥7áIôÆEÂY¢Ä`Äùµ7šÁm;_4.œŠ%¶ÇÃNK½ã9êÎh²byVˆ×FM=™¹HB,N˜9§RTSÿ÷-\´—H¸LkÅ’ømž—k?•:Ú‹¨åF-µÜhXÌ%©)10–¾—îÐð_›X5[T³}¯în²oVQ<µu'{ÞSDÒfm*^ÚßêvnSmøyÉ 1M%ø¦—b’xЩ†¶†6ÂM§Êôü1— +ÚTk^Ó¹Tá5Ê?ÑoÖ +endstream +endobj +1203 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1184 0 R +/S /TD +>> +endobj +1204 0 obj +<< +/P 1185 0 R +/S /TD +>> +endobj +1205 0 obj +<< +/A << +/O /Table +/ColSpan 4 +>> +/P 1186 0 R +/S /TD +>> +endobj +xref +0 1206 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000376 00000 n +0000004658 00000 n +0000004881 00000 n +0000005008 00000 n +0000006116 00000 n +0000007117 00000 n +0000008201 00000 n +0000009207 00000 n +0000010227 00000 n +0000011247 00000 n +0000012331 00000 n +0000013378 00000 n +0000014411 00000 n +0000015457 00000 n +0000016516 00000 n +0000017563 00000 n +0000018585 00000 n +0000019620 00000 n +0000020655 00000 n +0000021752 00000 n +0000022773 00000 n +0000023807 00000 n +0000024855 00000 n +0000025890 00000 n +0000026938 00000 n +0000027973 00000 n +0000029008 00000 n +0000030027 00000 n +0000030963 00000 n +0000032370 00000 n +0000032439 00000 n +0000032701 00000 n +0000033065 00000 n +0000037178 00000 n +0000037357 00000 n +0000037484 00000 n +0000037609 00000 n +0000038075 00000 n +0000038545 00000 n +0000038697 00000 n +0000039131 00000 n +0000039411 00000 n +0000039803 00000 n +0000040218 00000 n +0000040428 00000 n +0000052744 00000 n +0000053252 00000 n +0000054432 00000 n +0000054727 00000 n +0000055691 00000 n +0000056953 00000 n +0000058029 00000 n +0000059022 00000 n +0000060053 00000 n +0000061098 00000 n +0000062218 00000 n +0000063290 00000 n +0000064087 00000 n +0000064214 00000 n +0000064339 00000 n +0000064912 00000 n +0000065143 00000 n +0000065353 00000 n +0000065816 00000 n +0000066675 00000 n +0000072091 00000 n +0000072968 00000 n +0000078751 00000 n +0000079286 00000 n +0000083746 00000 n +0000084234 00000 n +0000088924 00000 n +0000089050 00000 n +0000089178 00000 n +0000089330 00000 n +0000094027 00000 n +0000100668 00000 n +0000101110 00000 n +0000107730 00000 n +0000114330 00000 n +0000120021 00000 n +0000125958 00000 n +0000131902 00000 n +0000136563 00000 n +0000141189 00000 n +0000141257 00000 n +0000141394 00000 n +0000153308 00000 n +0000159437 00000 n +0000165323 00000 n +0000171230 00000 n +0000176239 00000 n +0000181823 00000 n +0000187811 00000 n +0000192467 00000 n +0000197743 00000 n +0000197866 00000 n +0000197987 00000 n +0000198112 00000 n +0000198225 00000 n +0000198353 00000 n +0000199953 00000 n +0000200375 00000 n +0000200505 00000 n +0000202604 00000 n +0000203047 00000 n +0000203731 00000 n +0000204713 00000 n +0000205831 00000 n +0000207499 00000 n +0000209991 00000 n +0000212856 00000 n +0000216042 00000 n +0000219477 00000 n +0000223189 00000 n +0000227197 00000 n +0000231351 00000 n +0000235905 00000 n +0000240656 00000 n +0000245684 00000 n +0000251041 00000 n +0000256551 00000 n +0000262343 00000 n +0000268422 00000 n +0000274744 00000 n +0000281705 00000 n +0000281978 00000 n +0000282497 00000 n +0000282769 00000 n +0000283295 00000 n +0000283322 00000 n +0000283634 00000 n +0000284005 00000 n +0000284447 00000 n +0000284753 00000 n +0000285068 00000 n +0000285394 00000 n +0000285763 00000 n +0000286125 00000 n +0000286534 00000 n +0000286853 00000 n +0000287171 00000 n +0000287324 00000 n +0000287520 00000 n +0000287673 00000 n +0000288088 00000 n +0000288283 00000 n +0000288481 00000 n +0000288875 00000 n +0000289148 00000 n +0000289770 00000 n +0000290194 00000 n +0000290544 00000 n +0000290863 00000 n +0000291181 00000 n +0000291279 00000 n +0000291704 00000 n +0000292226 00000 n +0000292379 00000 n +0000292810 00000 n +0000293005 00000 n +0000293203 00000 n +0000293597 00000 n +0000293750 00000 n +0000294171 00000 n +0000294369 00000 n +0000294763 00000 n +0000294866 00000 n +0000295338 00000 n +0000295892 00000 n +0000295997 00000 n +0000296470 00000 n +0000297050 00000 n +0000297077 00000 n +0000297387 00000 n +0000297659 00000 n +0000298118 00000 n +0000298205 00000 n +0000298331 00000 n +0000298484 00000 n +0000298723 00000 n +0000299267 00000 n +0000299682 00000 n +0000299880 00000 n +0000300274 00000 n +0000300427 00000 n +0000300482 00000 n +0000301803 00000 n +0000301858 00000 n +0000301913 00000 n +0000301968 00000 n +0000302023 00000 n +0000302078 00000 n +0000302133 00000 n +0000302407 00000 n +0000302462 00000 n +0000302548 00000 n +0000302616 00000 n +0000302684 00000 n +0000302752 00000 n +0000302820 00000 n +0000302888 00000 n +0000302950 00000 n +0000303018 00000 n +0000303086 00000 n +0000303170 00000 n +0000303254 00000 n +0000303322 00000 n +0000303390 00000 n +0000303452 00000 n +0000303538 00000 n +0000303606 00000 n +0000303674 00000 n +0000303742 00000 n +0000303810 00000 n +0000303878 00000 n +0000303950 00000 n +0000304036 00000 n +0000304104 00000 n +0000304172 00000 n +0000304240 00000 n +0000304308 00000 n +0000304376 00000 n +0000304444 00000 n +0000304512 00000 n +0000304580 00000 n +0000304642 00000 n +0000304710 00000 n +0000304778 00000 n +0000304854 00000 n +0000304938 00000 n +0000305006 00000 n +0000305074 00000 n +0000305142 00000 n +0000305210 00000 n +0000305278 00000 n +0000305346 00000 n +0000305414 00000 n +0000305482 00000 n +0000305554 00000 n +0000305622 00000 n +0000305690 00000 n +0000305752 00000 n +0000305820 00000 n +0000305888 00000 n +0000305950 00000 n +0000306036 00000 n +0000306104 00000 n +0000306172 00000 n +0000306256 00000 n +0000306340 00000 n +0000306408 00000 n +0000306476 00000 n +0000306556 00000 n +0000306640 00000 n +0000306708 00000 n +0000306776 00000 n +0000306864 00000 n +0000306948 00000 n +0000307032 00000 n +0000307127 00000 n +0000307257 00000 n +0000307333 00000 n +0000307449 00000 n +0000307530 00000 n +0000307611 00000 n +0000307692 00000 n +0000307774 00000 n +0000307867 00000 n +0000307949 00000 n +0000308056 00000 n +0000308138 00000 n +0000308220 00000 n +0000308331 00000 n +0000308413 00000 n +0000308542 00000 n +0000308624 00000 n +0000308706 00000 n +0000308788 00000 n +0000308870 00000 n +0000308966 00000 n +0000309048 00000 n +0000309125 00000 n +0000309250 00000 n +0000309332 00000 n +0000309396 00000 n +0000309473 00000 n +0000309567 00000 n +0000309649 00000 n +0000309739 00000 n +0000309821 00000 n +0000309887 00000 n +0000309952 00000 n +0000310018 00000 n +0000310091 00000 n +0000310173 00000 n +0000310239 00000 n +0000310299 00000 n +0000310365 00000 n +0000310425 00000 n +0000310491 00000 n +0000310551 00000 n +0000310628 00000 n +0000310724 00000 n +0000310893 00000 n +0000311048 00000 n +0000311132 00000 n +0000311216 00000 n +0000311300 00000 n +0000311384 00000 n +0000311543 00000 n +0000311627 00000 n +0000311711 00000 n +0000311795 00000 n +0000311918 00000 n +0000312002 00000 n +0000312081 00000 n +0000312179 00000 n +0000312263 00000 n +0000312352 00000 n +0000312431 00000 n +0000312525 00000 n +0000312604 00000 n +0000312710 00000 n +0000312794 00000 n +0000312873 00000 n +0000312967 00000 n +0000313046 00000 n +0000313148 00000 n +0000313232 00000 n +0000313311 00000 n +0000313390 00000 n +0000313492 00000 n +0000313595 00000 n +0000313679 00000 n +0000313758 00000 n +0000313856 00000 n +0000313940 00000 n +0000314019 00000 n +0000314451 00000 n +0000314535 00000 n +0000314621 00000 n +0000314707 00000 n +0000314775 00000 n +0000314843 00000 n +0000314905 00000 n +0000314973 00000 n +0000315041 00000 n +0000315113 00000 n +0000315181 00000 n +0000315249 00000 n +0000315317 00000 n +0000315385 00000 n +0000315453 00000 n +0000315525 00000 n +0000315593 00000 n +0000315661 00000 n +0000315733 00000 n +0000315801 00000 n +0000315869 00000 n +0000315945 00000 n +0000316029 00000 n +0000316115 00000 n +0000316183 00000 n +0000316251 00000 n +0000316327 00000 n +0000316411 00000 n +0000316479 00000 n +0000316547 00000 n +0000316615 00000 n +0000316683 00000 n +0000316751 00000 n +0000316827 00000 n +0000316911 00000 n +0000316979 00000 n +0000317047 00000 n +0000317109 00000 n +0000317177 00000 n +0000317245 00000 n +0000317313 00000 n +0000317381 00000 n +0000317449 00000 n +0000317517 00000 n +0000317603 00000 n +0000317671 00000 n +0000317739 00000 n +0000317801 00000 n +0000317869 00000 n +0000317937 00000 n +0000317999 00000 n +0000318067 00000 n +0000318135 00000 n +0000318203 00000 n +0000318271 00000 n +0000318339 00000 n +0000318415 00000 n +0000318484 00000 n +0000318553 00000 n +0000318616 00000 n +0000318695 00000 n +0000318764 00000 n +0000318833 00000 n +0000318901 00000 n +0000318974 00000 n +0000319043 00000 n +0000319112 00000 n +0000319180 00000 n +0000319257 00000 n +0000319326 00000 n +0000319395 00000 n +0000319463 00000 n +0000319540 00000 n +0000319609 00000 n +0000319678 00000 n +0000319746 00000 n +0000319831 00000 n +0000319915 00000 n +0000319984 00000 n +0000320053 00000 n +0000320121 00000 n +0000320194 00000 n +0000320263 00000 n +0000320332 00000 n +0000320400 00000 n +0000320473 00000 n +0000320542 00000 n +0000320611 00000 n +0000320679 00000 n +0000320752 00000 n +0000320821 00000 n +0000320890 00000 n +0000320958 00000 n +0000321031 00000 n +0000321114 00000 n +0000321183 00000 n +0000321252 00000 n +0000321320 00000 n +0000321417 00000 n +0000321486 00000 n +0000321555 00000 n +0000321623 00000 n +0000321732 00000 n +0000321816 00000 n +0000321900 00000 n +0000321969 00000 n +0000322038 00000 n +0000322106 00000 n +0000322203 00000 n +0000322272 00000 n +0000322341 00000 n +0000322409 00000 n +0000322490 00000 n +0000322559 00000 n +0000322628 00000 n +0000322696 00000 n +0000322809 00000 n +0000322893 00000 n +0000322977 00000 n +0000323046 00000 n +0000323115 00000 n +0000323183 00000 n +0000323292 00000 n +0000323376 00000 n +0000323460 00000 n +0000323529 00000 n +0000323598 00000 n +0000323666 00000 n +0000323767 00000 n +0000323851 00000 n +0000323930 00000 n +0000324016 00000 n +0000324085 00000 n +0000324154 00000 n +0000324222 00000 n +0000324355 00000 n +0000324439 00000 n +0000324523 00000 n +0000324607 00000 n +0000324676 00000 n +0000324745 00000 n +0000324813 00000 n +0000324958 00000 n +0000325042 00000 n +0000325126 00000 n +0000325210 00000 n +0000325279 00000 n +0000325348 00000 n +0000325416 00000 n +0000325541 00000 n +0000325625 00000 n +0000325709 00000 n +0000325793 00000 n +0000325872 00000 n +0000326026 00000 n +0000326110 00000 n +0000326241 00000 n +0000326325 00000 n +0000326409 00000 n +0000326516 00000 n +0000326600 00000 n +0000326684 00000 n +0000326807 00000 n +0000326891 00000 n +0000326975 00000 n +0000327078 00000 n +0000327157 00000 n +0000327267 00000 n +0000327366 00000 n +0000327445 00000 n +0000327559 00000 n +0000327643 00000 n +0000327722 00000 n +0000327832 00000 n +0000327916 00000 n +0000328054 00000 n +0000328138 00000 n +0000328222 00000 n +0000328317 00000 n +0000328401 00000 n +0000328516 00000 n +0000328600 00000 n +0000328684 00000 n +0000328775 00000 n +0000328862 00000 n +0000328993 00000 n +0000329077 00000 n +0000329161 00000 n +0000329240 00000 n +0000329394 00000 n +0000329478 00000 n +0000329562 00000 n +0000329646 00000 n +0000329730 00000 n +0000329814 00000 n +0000329913 00000 n +0000330055 00000 n +0000330181 00000 n +0000330265 00000 n +0000330384 00000 n +0000330468 00000 n +0000330552 00000 n +0000330639 00000 n +0000330723 00000 n +0000330802 00000 n +0000330892 00000 n +0000331055 00000 n +0000331139 00000 n +0000331223 00000 n +0000331307 00000 n +0000331402 00000 n +0000331486 00000 n +0000331565 00000 n +0000331667 00000 n +0000331751 00000 n +0000332060 00000 n +0000332144 00000 n +0000332228 00000 n +0000332314 00000 n +0000332398 00000 n +0000332477 00000 n +0000332563 00000 n +0000332642 00000 n +0000332772 00000 n +0000332856 00000 n +0000332940 00000 n +0000333019 00000 n +0000333105 00000 n +0000333184 00000 n +0000333282 00000 n +0000333366 00000 n +0000333445 00000 n +0000333535 00000 n +0000333622 00000 n +0000333706 00000 n +0000333800 00000 n +0000333935 00000 n +0000334019 00000 n +0000334103 00000 n +0000334194 00000 n +0000334278 00000 n +0000334665 00000 n +0000334758 00000 n +0000334898 00000 n +0000334967 00000 n +0000335036 00000 n +0000335128 00000 n +0000335197 00000 n +0000335266 00000 n +0000335407 00000 n +0000335548 00000 n +0000335689 00000 n +0000335830 00000 n +0000335970 00000 n +0000336111 00000 n +0000336252 00000 n +0000336393 00000 n +0000336534 00000 n +0000336675 00000 n +0000336816 00000 n +0000336957 00000 n +0000337097 00000 n +0000337238 00000 n +0000337307 00000 n +0000337399 00000 n +0000337468 00000 n +0000337537 00000 n +0000337629 00000 n +0000337698 00000 n +0000337767 00000 n +0000337836 00000 n +0000337928 00000 n +0000337997 00000 n +0000338066 00000 n +0000338158 00000 n +0000338227 00000 n +0000338296 00000 n +0000338365 00000 n +0000338434 00000 n +0000338526 00000 n +0000338595 00000 n +0000338665 00000 n +0000338758 00000 n +0000338828 00000 n +0000338968 00000 n +0000339067 00000 n +0000339146 00000 n +0000339272 00000 n +0000339356 00000 n +0000339455 00000 n +0000339804 00000 n +0000339888 00000 n +0000339972 00000 n +0000340056 00000 n +0000340140 00000 n +0000340224 00000 n +0000340315 00000 n +0000340406 00000 n +0000340509 00000 n +0000340593 00000 n +0000340672 00000 n +0000340758 00000 n +0000340827 00000 n +0000340896 00000 n +0000340965 00000 n +0000341054 00000 n +0000341138 00000 n +0000341222 00000 n +0000341291 00000 n +0000341364 00000 n +0000341443 00000 n +0000341549 00000 n +0000341754 00000 n +0000341853 00000 n +0000341932 00000 n +0000342098 00000 n +0000342182 00000 n +0000342266 00000 n +0000342350 00000 n +0000342434 00000 n +0000342518 00000 n +0000342597 00000 n +0000342689 00000 n +0000342759 00000 n +0000342829 00000 n +0000342893 00000 n +0000342963 00000 n +0000343033 00000 n +0000343117 00000 n +0000343202 00000 n +0000343272 00000 n +0000343342 00000 n +0000343426 00000 n +0000343511 00000 n +0000343581 00000 n +0000343651 00000 n +0000343732 00000 n +0000344044 00000 n +0000344129 00000 n +0000344214 00000 n +0000344294 00000 n +0000344392 00000 n +0000344472 00000 n +0000344588 00000 n +0000344673 00000 n +0000344753 00000 n +0000344833 00000 n +0000344957 00000 n +0000345042 00000 n +0000345127 00000 n +0000345207 00000 n +0000345305 00000 n +0000345424 00000 n +0000345509 00000 n +0000345589 00000 n +0000345682 00000 n +0000345762 00000 n +0000345860 00000 n +0000345930 00000 n +0000346000 00000 n +0000346064 00000 n +0000346134 00000 n +0000346204 00000 n +0000346280 00000 n +0000346389 00000 n +0000346474 00000 n +0000346554 00000 n +0000346675 00000 n +0000346760 00000 n +0000346889 00000 n +0000346974 00000 n +0000347054 00000 n +0000347162 00000 n +0000347232 00000 n +0000347302 00000 n +0000347373 00000 n +0000347443 00000 n +0000347513 00000 n +0000347584 00000 n +0000347654 00000 n +0000347724 00000 n +0000347788 00000 n +0000347858 00000 n +0000347928 00000 n +0000347999 00000 n +0000348085 00000 n +0000348219 00000 n +0000348304 00000 n +0000348433 00000 n +0000348518 00000 n +0000348598 00000 n +0000348741 00000 n +0000348815 00000 n +0000348885 00000 n +0000348955 00000 n +0000349031 00000 n +0000349101 00000 n +0000349171 00000 n +0000349242 00000 n +0000349312 00000 n +0000349382 00000 n +0000349471 00000 n +0000349556 00000 n +0000349626 00000 n +0000349696 00000 n +0000349767 00000 n +0000349917 00000 n +0000350002 00000 n +0000350087 00000 n +0000350172 00000 n +0000350252 00000 n +0000350333 00000 n +0000350414 00000 n +0000350495 00000 n +0000350576 00000 n +0000350657 00000 n +0000350738 00000 n +0000350819 00000 n +0000350900 00000 n +0000350981 00000 n +0000351062 00000 n +0000351143 00000 n +0000351224 00000 n +0000351305 00000 n +0000351386 00000 n +0000351467 00000 n +0000351547 00000 n +0000351635 00000 n +0000351730 00000 n +0000351818 00000 n +0000351906 00000 n +0000352001 00000 n +0000352071 00000 n +0000352141 00000 n +0000352205 00000 n +0000352275 00000 n +0000352345 00000 n +0000352409 00000 n +0000352479 00000 n +0000352549 00000 n +0000352620 00000 n +0000352708 00000 n +0000352811 00000 n +0000352896 00000 n +0000352966 00000 n +0000353036 00000 n +0000353112 00000 n +0000353182 00000 n +0000353252 00000 n +0000353328 00000 n +0000353398 00000 n +0000353468 00000 n +0000353539 00000 n +0000353609 00000 n +0000353679 00000 n +0000353760 00000 n +0000353848 00000 n +0000353961 00000 n +0000354046 00000 n +0000354116 00000 n +0000354186 00000 n +0000354262 00000 n +0000354357 00000 n +0000354457 00000 n +0000354527 00000 n +0000354597 00000 n +0000354668 00000 n +0000354738 00000 n +0000354808 00000 n +0000354879 00000 n +0000354974 00000 n +0000355069 00000 n +0000355139 00000 n +0000355209 00000 n +0000355298 00000 n +0000355383 00000 n +0000355471 00000 n +0000355574 00000 n +0000355659 00000 n +0000355729 00000 n +0000355799 00000 n +0000355863 00000 n +0000355933 00000 n +0000356003 00000 n +0000356074 00000 n +0000356177 00000 n +0000356262 00000 n +0000356357 00000 n +0000356427 00000 n +0000356497 00000 n +0000356561 00000 n +0000356631 00000 n +0000356701 00000 n +0000356765 00000 n +0000366929 00000 n +0000377435 00000 n +0000377625 00000 n +0000380397 00000 n +0000381015 00000 n +0000382376 00000 n +0000384513 00000 n +0000385178 00000 n +0000385205 00000 n +0000385510 00000 n +0000385820 00000 n +0000385847 00000 n +0000386159 00000 n +0000386556 00000 n +0000386856 00000 n +0000387156 00000 n +0000387515 00000 n +0000400640 00000 n +0000404188 00000 n +0000404854 00000 n +0000408525 00000 n +0000408552 00000 n +0000408857 00000 n +0000409295 00000 n +0000409595 00000 n +0000409895 00000 n +0000410258 00000 n +0000410627 00000 n +0000410654 00000 n +0000410966 00000 n +0000411379 00000 n +0000411679 00000 n +0000412038 00000 n +0000416054 00000 n +0000420746 00000 n +0000420936 00000 n +0000429182 00000 n +0000429210 00000 n +0000429515 00000 n +0000429837 00000 n +0000430162 00000 n +0000430255 00000 n +0000430677 00000 n +0000431174 00000 n +0000431524 00000 n +0000431921 00000 n +0000432222 00000 n +0000432522 00000 n +0000432863 00000 n +0000433222 00000 n +0000433250 00000 n +0000433555 00000 n +0000433607 00000 n +0000433692 00000 n +0000433809 00000 n +0000433917 00000 n +0000433989 00000 n +0000434061 00000 n +0000434142 00000 n +0000434205 00000 n +0000434286 00000 n +0000434367 00000 n +0000434422 00000 n +0000434502 00000 n +0000434582 00000 n +0000434638 00000 n +0000434694 00000 n +0000434750 00000 n +0000434806 00000 n +0000434862 00000 n +0000434918 00000 n +0000434974 00000 n +0000435030 00000 n +0000435086 00000 n +0000435142 00000 n +0000435198 00000 n +0000435254 00000 n +0000435334 00000 n +0000435387 00000 n +0000435450 00000 n +0000435522 00000 n +0000435585 00000 n +0000435657 00000 n +0000435720 00000 n +0000435792 00000 n +0000435855 00000 n +0000435927 00000 n +0000435980 00000 n +0000436043 00000 n +0000436115 00000 n +0000436178 00000 n +0000436250 00000 n +0000436303 00000 n +0000436366 00000 n +0000436438 00000 n +0000436501 00000 n +0000436573 00000 n +0000436636 00000 n +0000436708 00000 n +0000436771 00000 n +0000436843 00000 n +0000436906 00000 n +0000436978 00000 n +0000437041 00000 n +0000437113 00000 n +0000437176 00000 n +0000437248 00000 n +0000437311 00000 n +0000437383 00000 n +0000437446 00000 n +0000437518 00000 n +0000437571 00000 n +0000437634 00000 n +0000437706 00000 n +0000437769 00000 n +0000437841 00000 n +0000437904 00000 n +0000437976 00000 n +0000438030 00000 n +0000438083 00000 n +0000438153 00000 n +0000438206 00000 n +0000438276 00000 n +0000438329 00000 n +0000438399 00000 n +0000438452 00000 n +0000438522 00000 n +0000438575 00000 n +0000438645 00000 n +0000438728 00000 n +0000438781 00000 n +0000438844 00000 n +0000438916 00000 n +0000438979 00000 n +0000439051 00000 n +0000439114 00000 n +0000439186 00000 n +0000439249 00000 n +0000439321 00000 n +0000439384 00000 n +0000439456 00000 n +0000439519 00000 n +0000439591 00000 n +0000439644 00000 n +0000439707 00000 n +0000439779 00000 n +0000439842 00000 n +0000439914 00000 n +0000439977 00000 n +0000440049 00000 n +0000440112 00000 n +0000440184 00000 n +0000440247 00000 n +0000440319 00000 n +0000440382 00000 n +0000440454 00000 n +0000440507 00000 n +0000440570 00000 n +0000440642 00000 n +0000440705 00000 n +0000440777 00000 n +0000440840 00000 n +0000440912 00000 n +0000440975 00000 n +0000441047 00000 n +0000441112 00000 n +0000441186 00000 n +0000441251 00000 n +0000441324 00000 n +0000441389 00000 n +0000441462 00000 n +0000441527 00000 n +0000441600 00000 n +0000441665 00000 n +0000441738 00000 n +0000441803 00000 n +0000441876 00000 n +0000441941 00000 n +0000442014 00000 n +0000442079 00000 n +0000442152 00000 n +0000442217 00000 n +0000442290 00000 n +0000442355 00000 n +0000442428 00000 n +0000442493 00000 n +0000442566 00000 n +0000442631 00000 n +0000442704 00000 n +0000442769 00000 n +0000442842 00000 n +0000442907 00000 n +0000442980 00000 n +0000443045 00000 n +0000443118 00000 n +0000443183 00000 n +0000443256 00000 n +0000443321 00000 n +0000443394 00000 n +0000443459 00000 n +0000443532 00000 n +0000443597 00000 n +0000443670 00000 n +0000443724 00000 n +0000443804 00000 n +0000443902 00000 n +0000443982 00000 n +0000444080 00000 n +0000444178 00000 n +0000444258 00000 n +0000444356 00000 n +0000444454 00000 n +0000444534 00000 n +0000444614 00000 n +0000444712 00000 n +0000444810 00000 n +0000444865 00000 n +0000444937 00000 n +0000444992 00000 n +0000445064 00000 n +0000445119 00000 n +0000445191 00000 n +0000445256 00000 n +0000445329 00000 n +0000445394 00000 n +0000445467 00000 n +0000445532 00000 n +0000445605 00000 n +0000445670 00000 n +0000445743 00000 n +0000445808 00000 n +0000445881 00000 n +0000445946 00000 n +0000446019 00000 n +0000446084 00000 n +0000446157 00000 n +0000446222 00000 n +0000446295 00000 n +0000446360 00000 n +0000446433 00000 n +0000446498 00000 n +0000446571 00000 n +0000446636 00000 n +0000446709 00000 n +0000446774 00000 n +0000446847 00000 n +0000446912 00000 n +0000446985 00000 n +0000447050 00000 n +0000447123 00000 n +0000447177 00000 n +0000447261 00000 n +0000447315 00000 n +0000447369 00000 n +0000447423 00000 n +0000447488 00000 n +0000447562 00000 n +0000447627 00000 n +0000447701 00000 n +0000447766 00000 n +0000447840 00000 n +0000447894 00000 n +0000447948 00000 n +0000448013 00000 n +0000448087 00000 n +0000448152 00000 n +0000448226 00000 n +0000448291 00000 n +0000448365 00000 n +0000448430 00000 n +0000448504 00000 n +0000448558 00000 n +0000448612 00000 n +0000448677 00000 n +0000448751 00000 n +0000448805 00000 n +0000448859 00000 n +0000448924 00000 n +0000448998 00000 n +0000449063 00000 n +0000449137 00000 n +0000449191 00000 n +0000449245 00000 n +0000449310 00000 n +0000449384 00000 n +0000449438 00000 n +0000449492 00000 n +0000449557 00000 n +0000449631 00000 n +0000449696 00000 n +0000449770 00000 n +0000449824 00000 n +0000449878 00000 n +0000449943 00000 n +0000450017 00000 n +0000450082 00000 n +0000450156 00000 n +0000450233 00000 n +0000450530 00000 n +0000452666 00000 n +0000452743 00000 n +0000453040 00000 n +0000453231 00000 n +0000453926 00000 n +0000457297 00000 n +0000459340 00000 n +0000459792 00000 n +0000461203 00000 n +0000461280 00000 n +0000461435 00000 n +0000461563 00000 n +0000461754 00000 n +0000461807 00000 n +0000461886 00000 n +0000461951 00000 n +0000462014 00000 n +0000462079 00000 n +0000462198 00000 n +0000462263 00000 n +0000462334 00000 n +0000462388 00000 n +0000462453 00000 n +0000462548 00000 n +0000462613 00000 n +0000462708 00000 n +0000462773 00000 n +0000462861 00000 n +0000462916 00000 n +0000462991 00000 n +0000463066 00000 n +0000463140 00000 n +0000463215 00000 n +0000463298 00000 n +0000463373 00000 n +0000463427 00000 n +0000463502 00000 n +0000463567 00000 n +0000463642 00000 n +0000463696 00000 n +0000463771 00000 n +0000463836 00000 n +0000463911 00000 n +0000463976 00000 n +0000464065 00000 n +0000467418 00000 n +0000467507 00000 n +0000470860 00000 n +0000470937 00000 n +0000471234 00000 n +0000471289 00000 n +0000471344 00000 n +0000471399 00000 n +0000471454 00000 n +0000471509 00000 n +0000471564 00000 n +0000471619 00000 n +0000471674 00000 n +0000471729 00000 n +0000471784 00000 n +0000471869 00000 n +0000471954 00000 n +0000472039 00000 n +0000472124 00000 n +0000472209 00000 n +0000472294 00000 n +0000472379 00000 n +0000472468 00000 n +0000475818 00000 n +0000475891 00000 n +0000475934 00000 n +trailer +<< +/ID [<2BBFCDE236B68545AAA4F9DDC7F70DAC> <42D97A5668C9284DB9E4536AFE0BD4C8>] +/Info 1 0 R +/Root 2 0 R +/Size 1206 +>> +startxref +476007 +%%EOF diff --git a/src/Static/data/Standards/2/IDDRS-2.30-Community-Violence-Reduction.docx b/src/Static/data/Standards/2/IDDRS-2.30-Community-Violence-Reduction.docx new file mode 100644 index 0000000..1a076c5 Binary files /dev/null and b/src/Static/data/Standards/2/IDDRS-2.30-Community-Violence-Reduction.docx differ diff --git a/src/Static/data/Standards/2/IDDRS-2.30-Community-Violence-Reduction.pdf b/src/Static/data/Standards/2/IDDRS-2.30-Community-Violence-Reduction.pdf new file mode 100644 index 0000000..fc2a350 --- /dev/null +++ b/src/Static/data/Standards/2/IDDRS-2.30-Community-Violence-Reduction.pdf @@ -0,0 +1,20697 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210108143304+01'00') +/Creator (Adobe InDesign 15.0 \(Windows\)) +/ModDate (D:20210108143915+01'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Pages 4 0 R +/StructTreeRoot 5 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-01-08T14:33:04+01:00 + 2021-01-08T14:33:08+01:00 + Adobe InDesign 15.0 (Windows) + 2021-01-08T14:39:15+01:00 + uuid:64ff6eae-4f90-487e-ba89-0e3e3622dfd4 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:edb91a4b-78a8-8e41-bd6a-ea8108d11925 + proof:pdf + + xmp.iid:f8726ae7-daab-a24f-a35b-59430d2fcb70 + xmp.did:bf461207-8cda-d14d-b0a1-db1c420b39b2 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 15.0 (Windows) + / + 2021-01-08T14:33:05+01:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Count 29 +/Kids [6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R +22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R] +/Type /Pages +>> +endobj +5 0 obj +<< +/ClassMap 35 0 R +/K 36 0 R +/ParentTree 37 0 R +/ParentTreeNextKey 26 +/RoleMap 38 0 R +/Type /StructTreeRoot +>> +endobj +6 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 39 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ColorSpace << +/CS0 40 0 R +>> +/ExtGState << +/GS0 41 0 R +/GS1 42 0 R +>> +/Font << +/TT0 43 0 R +/TT1 44 0 R +/C2_0 45 0 R +/T1_0 46 0 R +/T1_1 47 0 R +/T1_2 48 0 R +/T1_3 49 0 R +/T1_4 50 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 51 0 R +/Fm1 52 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +7 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 53 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1730 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 41 0 R +/GS1 42 0 R +>> +/Font << +/TT0 43 0 R +/TT1 44 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 54 0 R +/Fm1 55 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [56 0 R 57 0 R 58 0 R 59 0 R 60 0 R 61 0 R 62 0 R 63 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 68 0 R +/T1_2 69 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 71 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/TT1 72 0 R +/C2_0 73 0 R +/T1_0 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 75 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 72 0 R +/TT1 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 2 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 76 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 78 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 80 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 81 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 82 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 83 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/TT1 72 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 84 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +/GS2 85 0 R +/GS3 86 0 R +>> +/Font << +/TT0 66 0 R +/TT1 72 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +/GS2 85 0 R +/GS3 86 0 R +>> +/Font << +/TT0 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 88 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 89 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +/GS2 85 0 R +/GS3 86 0 R +>> +/Font << +/TT0 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 90 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +/GS2 85 0 R +/GS3 86 0 R +>> +/Font << +/TT0 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 92 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1899 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 93 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1870 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 69 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 16 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 94 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1813 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +/GS2 85 0 R +/GS3 86 0 R +>> +/Font << +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 25 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 95 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1814 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 17 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 96 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3119 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 69 0 R +/T1_2 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 18 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 97 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3120 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 98 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3206 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 20 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 99 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3207 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +/GS2 85 0 R +/GS3 86 0 R +>> +/Font << +/TT0 66 0 R +/C2_0 73 0 R +/T1_0 67 0 R +/T1_1 79 0 R +/T1_2 77 0 R +/T1_3 69 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 21 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 100 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3284 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 22 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +32 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 101 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3285 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +>> +>> +/Rotate 0 +/StructParents 23 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +33 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 102 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3295 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/TT0 66 0 R +/T1_0 67 0 R +/T1_1 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 74 0 R +>> +>> +/Rotate 0 +/StructParents 24 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +34 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 103 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1846 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 104 0 R +>> +/XObject << +/Fm0 105 0 R +/Fm1 106 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +35 0 obj +<< +/A4 << +/O /Layout +/LineHeight 0.0 +>> +/A5 << +/O /Layout +/LineHeight 12.5 +>> +/A6 << +/O /Layout +/LineHeight 9.0 +>> +/A10 << +/O /Layout +/LineHeight 10.5 +>> +/A11 << +/O /Layout +/LineHeight 10.75 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa5 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 34.0 +>> +/Pa6 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa7 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa8 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa9 << +/O /Layout +/LineHeight 16.0 +>> +/Pa10 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa12 << +/O /Layout +/LineHeight 12.0 +>> +/Pa13 << +/O /Layout +/LineHeight 11.0 +>> +/Pa14 << +/O /Layout +/LineHeight 11.0 +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa15 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa16 << +/O /Layout +/LineHeight 10.75 +>> +>> +endobj +36 0 obj +<< +/K 107 0 R +/Lang (de-DE) +/P 5 0 R +/S /Document +>> +endobj +37 0 obj +<< +/Nums [0 108 0 R 1 109 0 R 2 110 0 R 3 111 0 R 4 112 0 R 5 113 0 R 6 114 0 R 7 115 0 R +8 116 0 R 9 117 0 R 10 118 0 R 11 119 0 R 12 120 0 R 13 121 0 R 14 122 0 R 15 123 0 R +16 124 0 R 17 125 0 R 18 126 0 R 19 127 0 R 20 128 0 R 21 129 0 R 22 130 0 R 23 131 0 R +24 132 0 R 25 133 0 R] +>> +endobj +38 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Fu#C3#9Fzeile /P +/Kapitel-Head /P +/Endnote_1._Abs /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Einklinker-Text /P +/Lauftext_1._Abs /P +/Einzug_mit_Klotz /P +/Einklinker-Text__rec /P +/Einzug_mit_Klotz__le /P +/NormalParagraphStyle /P +/Tab._Lauftext_light_ /P +/Tab._Versal_bold_sch /P +/Tab._Versal_bold_wei /P +>> +endobj +39 0 obj +<< +/Filter /FlateDecode +/Length 4034 +>> +stream +H‰ì—[OÜHÇßûSÔ£KZ›º_¤iC.Ê*í ½3ÑjÅ4 aBw’åÛï9§lw¹¡;eX’¬† `S¶OªúÿÎåãdïõ¡`§Ë‰`Ó·{¯.{q9ùyòqs\¦ñ½Ã«£{ölïíÑâ”UóEýú9ß{wðæ“lÿù‹6y>ìÀdz%Œ±ålÑÛÚ›Ê œžLjÑw3ÖÞ|a®ñ– øñeÊØÆ:ᘂkÀ.&ï«·¼–¡Q01¯m£Yõnà 9‡G¬bŠÿsú·ÉËéäå;pe‡»*sWèƒmœÊœpð;:3t‚ÀœaÕ%Lé˜u7® ¬šá y§|_]‘¿ðÆŠFà%ܼù û;¯ ®ÍD´wNö<«Î2{Ü°£ndAïÀzÙ!¯}gÛâÍ5¯i2|Y¡åÕÚvOáFà7ì²›ë„á÷çÿÐM2go`Lâ4/ȹüæ2ÖK·ZçÊ È$Áyë gµÊ·ºbŒOÿ(™Át3|œ A'a?d`>²ÁÖõ|ò[ôÂ<8Daü40óøúX?P6á×5 äZÇàÐ!”YëØ3!‚Ù/sÍv®ýœ”†?’ý™ê® ‰°ÉV…ûmˆ+ƒQ§‰A©º½Û€QÃ>*i6`<àR¢Z@J•tÁEãðBÚû´àÉ—H%"qÃa‚ŠýŠâuøÏmè@“«Qj ´Ÿ†éÓ_æø-¼~ÌéíO³Nš+nð²¶I~-Juêó›ßîì“Y-ÝÆ,»dí‘u TL0ÌEž0&m‘"ab œÕÉ7QêSÈ|’k‡ÔÚ¡.ˆR %K`诳է£óéü?«g¯^¾z%„ˆûûûŒ,½†ÜV°,ãø¯~WIeèYzuzœŽÛÒ¶^À.KIíýÀ§ªýå¹UéJôJ¯š^È%K¹]4Ác5\©Á|C.u V% #¹Ì³ç:í8oE€6š&”»·êå`phÒ&Ü«fí*ðæuÞñT€]ï¹TÄí'ªA,"*Ÿ9„*.E*“¨º¸B¤éÉF V2—œ ÿâ;F–?zø•@gVJ#%*{>·š'óKV,Y3F²Êj¨%àüûú½$joKÔkÿP‰æ+Ë$ªJ%êÆJÔÀ_ÑzšP}E¢™<Ñ<×^²ßg«¯rIKÓ'¶)®Í5ŽŠh‹zº€¼æ0pCI¬±\?æ}ëáP'ܤ•¯©XIe8ä@Ñ&A€õ1 È©€W(Vb õ‰ cŠ-T¬ÿÎ zÓjœrÍçÖ·³TøAFÞ=M1~ ÒÇâRbpDèH‡ÑÉÏ;Ø·ç'< +?[–WÌOÜàGú¾×;(‚8(¬O.§HGu‹"8éÚÑû-QÔT$êtÁ5…ìÕ5d”&xLIC»”44µXÞÃðê _wøž©¦,”¯[ä«¢½¿|¥³M´vc£Ëäû­­ä‚v»] è- Ö…‚VjCЩP¥*Ûm´‰ MkÆU.Fõñ¼áŠš…¶ hã½ëK˜×ÜPÑ–ÀgÜPóx|–úW-U2§™+,4,Æb%»–•ÚJcRsZ#‹+Ðö97!õ3šú¿âH¬ô¨z:Â,Ò«áÖ}oMšÇÐä`…™&m©&íÖÎÏEtR6F¦6J¦é¡Ñâ£dƃ&êÔBèI-*£îŽNWÒé-®étš­á}õ+t‘ždS;C.„PIÕAíH¬åá¬5&ýZ +ÒØ5Þœ¿¸[Sn .û8Y&Ÿ®ßïºÐZœ!4>bØÌÔ9.'u1 ˜ìa™(TâFè nŒ×B;píuE9Þ•Ý[ÙøÐA %J@†%¤Š ÎœSMжË*\’¥ë®WÔ7¬Rå­,bÝ?¬)…±üÊRi$q䲤´ƒœËsŒ„”H HR£1ƒ˜(ý &ŸîÓnnü€Rœ¤8q ÎPYf$>ßcØW( ;0U@/)֜Œ!®%}Þ6$*¤ÜÖŽÖÉól:‹±<Å?y8ºk {hd°™Zw@=†^-ÆÒ›yð˜ìjYÀ.´ +Q +¿Io­QÀúÁøþ‹<…lH‘Ø"­#1šF-ö-uL8¥ÊpÈ—ÍÞ®-áÝ!|ήo‘¦ZȾ¹Ä/àÅ9;"öl?%Æ›ªO2pɆ€>¬À÷)´Ã[a3âž}€›ˆ¼¶˜Ç¢]$˜Ó*Š»0­¶ÐlýŽó]BÝé…ñáUìAüé±üåSß‹@WJ ) ² yH ¦œdLàP!‰y$±Î8Ñ,ª,G¦Ñcv YHYM +|—?g_>—gb|>°%ZJÇ®¦Î¡[[–i:G\¢Ë]ˆvÙ]©ö¹èòtž¥¹±‰³ebÞr¸cþK~µì¶CÑ_ѲZÈàK|,íÅlf•f<é,qŠ ?çÞ+Ù¤"9” £hfKŽERäy~m»DÌþÞ"ëÂÀ·ÍsË;RĹØPÞ"[ºø§ùÜv–dáÏ–3ÀMóJ2Ày¹]s€Ç'µ3œþÅEÏYº¹m¾ÐÏð_|òãOØShHÓ5ÝܵZñ´’$ö-ÿ©U™¢Ól¬‰ƒÌðÕô\¬ +› ¢/æ$~OÈÔqÃ×!=•®mBZóœV¼‹ØÂDtÈ^è Œ{Ub\ ÆG".™—µ£Cóê[ËÝíh^—šÖçVô:KÐ!\ÁÕ¾eÏúA}@z?ÁÚÍš ûÌÈ–^gtÇHx~Óo©+b¬=Àz‡ay€DÏ? ïÒ £?bTj†Ãð[j¨Bð¥Xܼ´L¯Àžëí—Ö*½fJ<‹ûîd¢{Z }‰{±^Kß?àMíäq®J6x}¥,=c®‡ô$r +>­~of„Ÿ––„¿˜î,QTÉŽ;$¬æ´Ö¼Ÿ­8w뢛òHfÌÕhôÂdð¤ÝñÀ†@÷ßZG €›èšÿ®åÕm3V­€;]0àýiÀËœÕ6àÝÿ¤DÎÑ:Â3-¹Ú*èæ žâŽrbW=H»@Îb µäd¶KàɼK›ZóšËŽ TÓ É& _M¨†˜¤Ú‹¹v3d©cÏjb9.霒ćv¦GêcìC bà4…–øw‰¨ôÔ|Û‹¤1øÙ×Öjétâa¦6ãßxÞñ9nt·ûbæŸÙŠzvÆlG‹ªî€>L³N[ª›|y$öVŒçúÂñ¸-¤) sê®ñ¼ç{é(KtâãÔ{çÛ™sÇíi0ïW¶;]/²&GvOb–ÆÈ0ž"C¤±k·1Í«›ŠöƒÉÛ/”Qãa‚Öˆ©j¼k$5¨‰¤ê8HjZPÔb9—*ª­dWÐgW^"œò¼^ÿNç¬Ù¡³ ½·è°ØœC”™ôѲP:áQ–ã„M +2¬çb{¸²Êr7p¶’’Á¬éFa‡>QìN¶®ØCƒ@Ñx¢ó§CÓûe´xË}-þÜ9uT£Ä ­h½G»bÝ“¨›Ñ |žjGçpä +[Dj ¿‚¸ŸoýøÐ;Û»¡j>·¼î¿Û.‰Áýà3¹Eùâš¿¸o²@í%¼wÍ¿9º—ø^'Ïî±nöÇNMuý‹âs‘Û£Dö¤väfù¼Š‘~ÊÈÑÜ’9Ó_hÕä +â6£RfÊÈ+ÛµÑÌEaQ-÷Óø=“q›GŠò> Ä‘>:ê¶Iˆ^ŽŒygŽ=qÎ0Ç ¯ÓIþât_Ͻ¸À=ã~Sò­!¥CûQªÝR€[EË4¥¥^zšcž—Ù +.¥e¨¤eTZö\‰6ÆÛyn&Ô‹)n¢“ Ü„÷Øjnb‚ôvÙ}ú£U4Ð~´ Á #–¢ÇºÊÿx$8¢E5Ú£þ`NóQ?çÚ–4Cau >ƒÄ±Ìëjè1›ÞÅ »ŒÃFåþO€Cnd +endstream +endobj +40 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +41 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +42 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +43 0 obj +<< +/BaseFont /XTMLAT+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 134 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 135 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 0 333 250 606 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 778 0 709 774 0 0 763 0 337 0 0 0 0 831 0 +604 0 668 0 613 778 722 1000 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 0 291 883 582 546 +601 0 395 424 326 603 565 834 516 556] +>> +endobj +44 0 obj +<< +/BaseFont /DKMVGH+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 136 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 137 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 0 218 0 +0 348 462 434 452 434 462 0 0 442 236 0 0 0 0 0 +0 696 0 650 726 0 0 726 0 348 0 0 0 884 0 0 +0 0 660 528 602 0 706 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 0 312 800 556 490 +528 0 378 396 340 546 508 762 462 518] +>> +endobj +45 0 obj +<< +/BaseFont /HAOYKZ+Wingdings-Regular +/DescendantFonts 138 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 139 0 R +/Type /Font +>> +endobj +46 0 obj +<< +/BaseFont /RHQGUF+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 140 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 141 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +47 0 obj +<< +/BaseFont /SLAMID+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 142 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 143 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 555 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +48 0 obj +<< +/BaseFont /FXPMID+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 144 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 145 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 580 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 538 0 0 0 558 0 0 0 0 0 0 0 0 0 +0 0 0 448 564 501 0 0 0 234 0 0 236 834 555 549 +0 0 0 0 331 551 0 0 0 471] +>> +endobj +49 0 obj +<< +/BaseFont /EYAGUF+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 146 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 147 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 588 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 569 0 0 0 601 0 0 0 0 0 0 0 0 0 +0 0 0 449 581 516 0 0 0 256 0 0 257 848 572 564 +0 0 0 0 351 569 0 0 0 500] +>> +endobj +50 0 obj +<< +/BaseFont /IMBZYX+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 148 0 R +/LastChar 51 +/Subtype /Type1 +/ToUnicode 149 0 R +/Type /Font +/Widths [233 0 426 0 426 426] +>> +endobj +51 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12084 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 40 0 R +>> +/ExtGState << +/GS0 41 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—Ir%¹D÷Ê]J»>÷=J¿fm÷Œsí(÷*çúß??þÅŠš[þ{ÅUø‹k´y÷ÆQuì»–6¯¿>ôé×GÄÝâú¬qoˆ~Êp0l׺cíës±y®ëÇÇ'G¯~}F÷`æ³ö{õÃDë÷Ùü3Ú];[¢ÏûŒª={Ü­ ¦f½çjZ\îúcÖÐêqî>óF׶8‡Ë¸#°°à+&rkcÕìwñí¥=ÛÖ½êÎ]ó®í:÷:UóçêÕÖ=¶Æ®Qî6‡W·JXÚ5Ö½C&rÃëšq¯Ígsó&Ê7Fh K©š(cùÞÝ}üá@Å“5gºzé3~y"Ö¹wíyiØØD€&‡j8q¦såŠg¿'ê]su¡Ñ<ãzÕÛ]–3rúÝcjbø´v¯9µ|ãao[Ãö˜‰†UÜ6F÷w9ÒKfM»A;„£=Ëõ‰UdL½®±óVOnW‰«nàÆæXˆT]ΨVãKíWU%`¼¬î,§€®ÇçZÈŠ}a¢¤À%-'ÇûŠ}Ÿz<”‡ÒV\(¢!Üaq› ;µ&àrÔ’%=ì7ÿ©È°€ÊoL;¸Àϖ铬…`(  +º NÏœïít€°²2+›ù¾!ßà'—ÀjÏT° §ÕÊŽ¦<ËP"x\³Ü½w%n„oŒ)\t6UîœìÌ%…@íâ:-7PÑÜÿÌüÔ nì¡ LqPdº´Šã¦8€¨Ì¸3Á Î`†h3qæöÀ¶ã8ïŠST[xkf +<]òƒ3}¢ÇÕ5gšÁLæÂן¿O¼RÑlD7%‡¡Ãéa¸ø‰ã’l&VGûª1¨f¿ŠÆ5Øï(ßjÙšÃá2ìiãQ°íÄRÉ’í.z€€áëÏͯî&Ç­>5Vó{ïÓܼúÐ÷E©}BxJû—1_+À†©¢]ÄL}„ðƒJáÏ¡H6:¤ ~ä1Ù¬)$Œá¬0¡Všû9o†bóMoTÎWtfq]• +±í,ç;ý܇éE–øR‡Â@Wèa”‰AÞu8 R ¦N {ѶFQ‰ÜéWuòN£lÍžé³Î‚Na†•úa8ŸÍê³Ï×<{Ãr\]݃pû7éâw.¾ƒ™‘ßIzd èð5»†IS qê°¶ÔDÁ3wD¸àE“Ð^vH±¦*;dY¼(â]ÔñÌàÀúP ¨ƒ$&ú±JaÁËá¯rž”È&¾×Y‡Zl‹ÁP+ûI™6Õ»VÉœêÎ"ÊÐ'݇RW>ð}+x&Q2ép[~j ÕRéRb<ÆG 4:Õ½ñôPý–ZuµŸäuÍÐÔy^Õ!¯“Ë›<:/¾’ŒhÓ',) Ì-ÞªI6ŒûÔwÕf}è~Z¸0ƒÍ:aÊv(ÚŸîñÝßÇÉ;ªl!Åì8ݪÈ4w7°û4ß÷ Üѵ’qíï®òú¬ ÔjžYh\<Æ8a–qJ$žÔS–Ÿ0c=Ù©°*Ñ¡;hGro[”iGÏ\ÑVëi_w41çö µ(ä>U3¡Pi¥ÚôÓ)mÿ\ËæG[OúÎÌ/egÇ8J…Høw…^ûðo¨RXW_ÑÎÌ‹Ùt«çŽÅ­??Þ)ã¬Ö2¼Í1ØVѲ÷í`›®¢'ué+8Mmd=óË¡‘@ÉðN9Bß;Ѥ#ra\Ÿ ¥ZøÚq;¹ våÿÂ'£ê|Y#¥Q,T$ÞVCD.A¼’ðAá@ôíœKÑœœAc[Ê×ÈØ7gQøÎï%U²ó8vee[\î*²§š ª‰] q‘dþZ×S¢yë«‹á¦Ö­‰á#p¾¤½«!Uaj ‚  žûÛÒGáqŸ¹C"k0cz” +uÛЦÓÖm…\*j­$»ÝMH‘ì¤%05TWòS5,&DR©ˆ’õq`ÒýÃ…Vl§ J•J–+þ¨œJ¤ÂÆ4ž!-rˆ¢O×%)žšWV+ÜD2uÐEí[z\2M2§¹[w! ZÏ eù-GËFVˆI³à;;¾ü—\|½^jËFñÒïýd‡|DŠì¼Aîo Tó!6¯ëý.üKÜD3ÉmàWBê×›Pü¾ýàÜò¢°ÜÔj}ÕÒ›z,ÜÛÀZ±ª=Q(ëõT¢6c$ãŸßH@u1UõUJÅ~1„Q¼I•&™/¿ ëè°pØFª+†æ$ŸýdŒ†+—+Ž7ðß×»ÉXÞ¶?µXv'˜%›ýbºÇ{üé\Ì-Ù¸~õiªsec9ÐÓÏø¶/ ϶S®Uú-êW»M«(ºD!øjböŠ!“ê8×_r$;Ë)3f$þÿêÅ4¸M=ãÐ +Ô7†¥à™¤ºO2 ºÆO—”‹ãò„›®Þ‹ê#šX+{çÉ7Fœ™@z0ˆÉhß&6‹Ÿ +mâU×”"±áe…•UM=Ê9VËÕ[gõ qQ &¼+®³¨vÛ&s>:qJy~+¿™ô/‘›1šùÞˆá&cá¥^¯æKj KÅhÇïYoCø$¼­PqâÎÏ2ýPuK]çu? ])ªqD„‡¯;aḨqº„P+WÄT5Æ6H9¾Rš¡ÒÙ|<ÕªÓˆŽÌgÊl&Zþã{é[VÛþI‹H2 ¿#¸îb·}©·‡¬®! >jz‘@2/vQ4>õàÌ —ÇîÃ-9Z‰‘¿„N­Œû›»°”Ë/OTf&ê§'ܦ|¾Æ˜¶}ÿ +OKŽÞ—ܱˆ‚ÂBtüh=Ùß¹a®|Jò038@M˜ŽÍjã+ØO¦¾z?îõ–Bï·âÀ¯ŽÌt¥Sã2­³;1rªJº{Å.‘„Ãz äk”öÌ0RjÉf¿¡z5þ9<îGbÁþhž_9!…$•—:uŠ¤¾ÚŽ®ÜP3Zã2j'™4ÌKY¯o +û‘§<¯ U¬Ïmé5]·´úºª´|Žµ,Ù«þŸì*Ç’$E¢zŸ"/0ﱟ§”²î¯Î_ ¥² [þò€›0¢˜èÃä3q‹·GÖŽÑVµµmsìz¢›LA_Ôš"i¦ ÿJú~EÄJ­òè@·'&:KÔ]–ÒÕ"M¯;»çq¨¶ˆTF®™þ‘ú‰- ‰×å8äqˆ´Zòözá÷\b2ÚFàáåL»X aÐôä<*Z†a=„ ©ŠÁ)Ó®–‘BƒÛð;•,% =)£e>n°3a7Š¾Ay¿„´­ûÅ6haµ@Z” CÕM”–ÄtˆSY9—hrÓ;Z‰t AjêýsÕÇ£îG-²L»/…2škJoˆNÈAKÞ’œÇñðšj¿óµÁFµ ÙÞ°¯’¹³å<U®ØV0CµŽ"Ó Cç¹Rã#Ô¾`j(fŽqQJ(Ÿ™AøªHSk½ßË~ßaS QÕwlÊå­% +š>›Hu¨½UL\HEz\\ÃÏF&ºQÉNã˜$eÕx i,÷ä§l${rT l° †_•2w,éõ¯{TÆ ‡.ê² +ÿË%¥Re‘RëẑP¶L`ˆÑh¹d0ÚÊÂpk«lr´ eDø`X¦Ð€Tµ_Ú—_ç|Ù pÚˆÃàUOœp¹b´‡ÜœRì¨*÷(lQóýROd×&$…qa½ˆ®û±A¤$–rÁDãUPm:–[TÇ¢.^µL8B!}×dbŵ%,D^XÒxz͢Х·²5¹¸nÉ/¡}Žú«Zç‡e'cÉâ-.ƶ¼ÉYËõhHÂó‡Îò¶x}Q׆^úǦg‰²)ž~振YÈWõm*ºö!Mè´bÎ\\¸*ž(2Ø°¨I×Ãb¿š‘¼À E;8¦½ ¨a1+¦ÄiE¤oñc«Ë2jÂEQʵ#wìÄ" J„ÞÅêbM)ˆdåÔIVaµG@ ²@Ê%r~ר8Šðavg´Ä^ÍPU!ó]\ IHr®äý’ü®æ =¡äÇÊe¯¬PE ÇÕð¦à‚7ÊSêy3 9:†3|îÈÍï aS~(Ä7×”aBª‰ç®æ‰ÚÂúc7$R¸€€±º&å†lHHm<ú£ šTRH¥i¨û}9B¨/·"7ûÏx¡üÌT& aÜ–ÄX×àÌmµ×Å(e[©àñskÓ4nᡉó…÷ÕŠÒz®˜hÑ‚Mˆûh<§Ê€EV ­QôõA‚ZJJãG·¥}z +–jyJµvñ§óá‰:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½[¤ŸO[y¹î=;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re§zó1Åñ–÷¸çjA-¾Z-‰„Mð3¿™û×–L¼¤uý¹?#íýĭתr¸œ˜¥gH™_5fZUǨ™õ½¤³æqhó]ÆÀ¡”IÀª­€¤S]ðpó&‰ïëjuƸ ¸Ù0ƒþj½×Ð:lG(˜iŠëõõ|‡ñßá‰MäCèœqwX=õ›Slyž[óœAŠ¦ô¯‰á“z J¿žv¯[¹˜·ëù¤2lkw$@ËÀÈçÞ¸P‚óÕM¤tqþ)Ћò¯ o{“z!«Ó´SA‡Û…3L˜ :ÉcÈ®ô®˜8[,h\d)ÁañEU%ž×¤î iþ(&=MN)N £’X +ÉyðXÅx\ |îDYÖmBÌj¢º‰íR p‰È7{ªŠÂ8s Tãq¦µÆÓ yÈšC3ƒYƒ¼ AmÞ¤°‹vRRa#!jFhS&ó +ìYÜÙ{ mù +L«ÝÛ2©¹Ëqüxô¦ÜÊ}±S»Ú•þìøÄWÒ ÿh¨ßÙ‘„Õ°xñ¢æ!q&hÆyëiøê0‡Çñ¦#dF ãú +ÛKs ¿àÂB4øŒ„nTù#ß!‡DÿY,3;3÷µ‰ 7Î7rßNÝÙùñvl,1žœF6 Ñ0³Ëé«Lá´VæêPî`<ØÉÈ6ýj½ª@pA/K²;lj°sý”KÚÔÔ*åV_ÊŠ ¶×ú $«·Î% #Ĉ‡¾d?¦â g%„ ÙÑÿÒÄCG L}'(J±FPÔ—‰«"•æ`ÄsfÈ€§} ÕУ?u‚‰#CKx˜)²ñßRÜÝ£âø+£„ò õ7@òkŽ¤ ¡`*KBŠ·³â8åšâ6‘Ðâ„Éòƒ‹„o Í5ù^PÿA÷-‰ÏÎ*rÿÚòQA¼KïÖ’ÃnXàK–IEˆ$Í™ʛ*„ðJ÷$­ÄSXÅå~á6}DAíÁ媻]ÊÀ gº;Bq þq·MA4pÆV3])BE$1 Ã#׿6N•0ÒDÙö¼}»éNôiÀ#á—lpU”Î…íâ¡F¢§D¤å_v~©KßAMÇåªFVÞªï-8¬Í7³Õœ£[Z0om›3‰ˆU+À=óCwJŸÆ˜(c h[H°&b êØŒwÑö+ó´¦ ‰’98±Úø²¼ _D+Òò*?Ä8?ÿ‡yØ„%B">v;UïÔDg­b‹j—gÅõ0Çc… ¶'*[‹Ï=ð_çs9‹¡=bô¯°¢ª¿ŸK ^së›ø¨îuéÏ­A_ÅSkVVj½^2Ý42Gì6ú#c°AbDůîw,=ÑŽIÌ)ÜDÇiWÛÊ5ªõšÅµŒ¥½½XçÉ…a¹†ã_a‰7â@:ªnF¢1¸ûWKÆø˜#)c“̓,Ë„°)¨ð7–Ééœk{ƒJ`¤öc½ƒv-Z\ÑlwyRúuAQ+B‰áE ¨jDd†!sǤñâW¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bpöÆ¥ ªIö¯f¦Øñ截¦|¡1¶²ÇV¾J †’ zûÕL'ôÌpéc<‰m@iy]|¢±È&AÏÄ¡¤bÎ, +‡ìXNV_k‚–I‰éoN»ÛE]Û-ÃøŒ…ÀÉÕeaoäÂHpK“`¬%eY¨·cQß<¦N iêíwÝv:C&L:4¬êh‚Y•[ý‚Âqk»´ ø8|ƽ­,öñ?®«$Ën†]¥/<Í¢ÎÓÛäþÛÆ@ÙîZU™ß’%@ÊßP]ðÌ„à‡žíD¾„kžòûÞ9í³î ¤ ‘íf{&bš‡I:€òw~ ØZ%xÅJVV$€Æ©æÑéB$³"­(éňäMšbÓ±r(ùŽõv1"5oíg“¿•y-ŸÜdP •ÃQ×%—¢!þ.äÐ.XÞI#9⸹îžÑ°f5-ÁæqKÿ,@‹çú¾¬“;žšPYÞ@ïÔö™fÑ-JÝ×›%ÉTç½[9»*ô#\Ô€þå.Z¦»KÉÌ£CiÊÚg96D +h.ÉH„aU*+Íã4H|úuI“è”I­›žŸ£j…Ê)1m¦£g-\dà 0c‘©lüqcýñ{ó„wÁ&¸y é²—ˆ,ÏRdÐSsÿðPÄØÐÈ%Õx¶5gÏoà¶-5/ìWU™'ÎP[Ç…›.¼iªYá5µ|}Þ¹Hæa=%U̧ žåhÅvlie¶Æs¡ÇûÒ;”Ž#&©:ù&Û7ö4 ‚ŒØ=$ž8ãñÞTQtÁZ„œòXG +g†k,áÓDr2ý ¨Aÿôúñ}å³FN4É@‹ðÛö¾±Âðч}›4GЗA}ɧØ:_Ådà0÷l:‚zØ,ÖÔUr8©¨CÍ +Þ[TûÀBËé&ä£tû@Ò/ç.äµ4m©á®,]Xt¹L¤`Êž§ÁÈ@ˆlš½ütc-€Ùþw:`Ð<Érec‰yGñuÜ<žœÀ嶷æñ+! +C ‹m«*‘ _L8ßQa1Ñœê%ëØžì–hXæ"tÌ)YÙQÌKGx/Œl/@¨…¨YôN³âø9·q·ugüÍ5Pñí MÓ ·ÙL{zM*dÅá4T’‡È(ÙK³ÑÛJ8øÓÓbž3@®Ziݹ#KÛj.zÏOMÆŠº¾”ŠS—:¾”J–)ûaT5¾ ?­toîÏÚ_ªÆ?ö¯x]*XUþG!úÆ¡LiŸM&Y*@ThjÃÈA_5*ª,šN’¨Úùì6MÈùnLA8@QÅó›Å7hí]Ú$øÅñ¦zÍœ¾À’£’šköHÐã|å•¢#¿¾ðác¢Ÿ¥‡ŠJã&7€ðŒ¢h(¥æŠP èœy ‰Zsøû¶®WàǦ‡™ç•åšŽýµÍ¹±Øpá½ûÒ2XI‘…LFŸ˜~Ç>ÕŸ¦£ÍÖºRƒ½<õSŒ!ÿùV­¡ÓD¹Ï½lÿŒ­̨È8¹(IhqÚùÎqgMÝÒ  m¶ÀƲªiŸýNØå‡Ä*z8åáÄèé›ôNջݽNËc'´Ÿd6¯)×.ÄÖûá»m×ä©E®[™;I>-GË!õL\¢#ãŒí7Îô ÙÅÕæ|}aˆÈN`N¿ Þá#éŒ%lÞ²$Ç"2•H‡ò'‘P¶â¹€º!X¶?á4§½£Ôî'丨réºaŸÕ(l{ñD$v­*a5@£×öŒÃ¹DwćǤ5øã}æx'!}kÕóÉ.¼ûéNwÓ  +ç-]<ÂPàÙ$nâŽå'å(ãèGúZpÅñ•!})biê65`±ºôboQVÀ^oàÙY¬åÝV ‘nµô£·¤Óû’˜kš¿Y»_‚UÒÐ$Ê«ökM`s¯ó¡D²ýN#‘,É‘gâteŠ¬¬£¸ªîêÍkç1dXAF8‘u1IÔQ7÷Ó´ÉÀïÓ™b]š#§9ÇÓh>û$gÒÑ!ªv\T Æe?é}.Ý'`›rEI˜cn(+Yk£õä +ßbس̰‡@„I—ÂÅkå8lVkû™Y‘µ—ËáôvdÕc“Û(‰•; oèø Ê‘ññÔJÍ6Ë÷ À`ƒQ×u磈ú™p¥J!ƒçÜ‚ EÏ#Dôþ¸›ûì2È<Þñ€¶dÛèËÚLS8;ü_Ñ‘ÈŠ‹Žîì ü‡G‡eúIº‰eÁtêK&C"{Æsh +*KSo-«A¬“¸hÙ™ºí%9-ñ§ +dJÈñ=W¨ï(mû;)!2‰œ¢KÈ +ý½úè0eðËu>ªÎ92èU+’®d~}õh-ÝÎÖÅŠõ_ž´ëaG*Ìâ‹j18K„¦³úe1Ú`x3#ئno”ßÉXÉ“ø]»Œ5ºÝ ™•óƒ%yïúò$ õû<óŠ´ŒDƒ2¶2lY,<>“öž˜öàü%mÃE·‡ÃI?\ ToÌ/,j鶡Ü|§Q9µ°Mø†êmë±y(ÈþtÏHZj¤é<˜ÚÇÕ""Y…;¸Éð™/ù‘²_|‰2ÎÝ€ ºeÀ°02Ä5ŸÛ9(4ÎeóàUî\™$‚RÞØ)rtÑXæå™ÞY/¼QôLòÊÖ}ª7Â=þ8Òtþ¶Ì[23x–ÝA¯‡®¸Eü77¿.8Æ{ÌÓÌŒT8S;"ACd’NO9ÁJºt"K»<øµô•b‡@ÒÜJÏI°•L(gHlº—ŠRò\èö3³yÜë* KÛˆ¶ëUkR.>¾sòhU¶Fp)Ã*Óܹq<\/©Ú!“¿te}=>P>ñ†þ(´Îth”á gmF¯¶Á1w®Ù«¥ýÔ@ÄP!/ ü5ô‡w{ý·Ø„} [Ú8íe‘þ:4dN èG÷ú¾5Q¨?ZÚé7.O·<‡škt"[|Õö’'†9ÛóØIb›uÿkøîrIŽ$7‚螧¨ –ø%€cè m¦UÏB÷ßÈŸ;ªŠÝ¢lÓ•ÌÄ'Â1± ”º1z —!þlýK¸á²½õƒ2¤DÚ0ÔÜfÝýýß©ÂûG¸šbÃÀÁQÔÊšyÀ¤Âgã¸) v .#Þ–>˜£Ì–õïí®'x¶ÝCÀ.ÿcF]¸ù˜#ô\½=#hüªnëÔï·uñÞU×ŸÏ +Éý9ç·wMÝ@i*¹9oãÀ„p¦åÍÕ +®û ±Î÷>¦ «—-æu¦Òú¼K[‘˜å­tß^^ôìÏJPáT÷<+é\?‚fº­~Š¾W¾­ýË¥àÈö‡ÎXÖ¿«¸Ú&1Ðbi ß®Õ«7 6÷^uÃJÍZ®OÖø÷ ’ˆ€)¸–BzqÌ»QààÀUɺõCä;È!¶™ÒzÔ<‘¤zX„ž¡‘K18fà¨ûÐìºI48xŠÞW{ó×G2çÑ´]û ©¾õ +Ö®ãûœç£’ÊH%{È`îBŠ«2ê|WîP!sî8Dtœ‚ïÙÿÓ_ÿþø×Çåqé¿òø™\¢âJ—Ìá×?üåŸE_Ꙭ¬ŽŽEuo—]¹«öUvç$™ýU|(ùûƒ<¥š ^$Ý€ž¨}ˆ²«Vs^×P%«’D!óG™hÖƒü¸ûû U®wyT…ºq­o7ød>F‹Ã.ß•œXˆ¬ÓW+L#FcÐö~N7þhÔåˆ+ +¶›?+L8ûµ£Ûj*F&v‰1Ÿó½TC•R•â´*ñÓ…†tiT«Î†!ö÷…„â ë™gZŸ&“ò(A([œvÅAPÓ°8gÔ¯‚H +¤{æú‰ª"t„L¥˜aî'wÖÙÚåöÕ>±¡̼%ªžÎ>±1§×/SS/×ÒÎW5»%Éà[]2Wdöôä #ç˜Z‹T€j}:ÈTCšÇ]¿>$ö2‡¡Ôîû4ITŸ6`Ð.·êQ'wªQÂ_kI#|7QÔ‘«3WM~DòS¡ôªß°ÇPñ¥4ç°×]!lp‘V¬é9瀰Е¾ôɺž3›úƒ`(Íš›O<„oÚðÍÑ9Å´îÞMKâo¸…oKk)‚¦"±™;C +¾*%…»O÷°Ú;=a=¥1,¨;ߟ劚éuãQγRž©®SøŽBª«ž‰UóÆd$S¥ž*ÿº07÷d:»—ÌP~Ç°$Ÿ«¹ÃÛ“›á…ˆªßgÆÕ¹ù^˳¬ÊŠw?òpªšÌwuJ1È ¯æfMzx Èx6KéÒ „B,·ñתS=ß©L‚0˜P[€âò '¾ï’ùÔ²øyÏÓñc;]°èЭ’i¤ùÈ£ TÓ·éæ{N”6{îÐÿW&Y˜‰ˆOUku·ßÈ9…ŸO™kË\§ûì—.O—ö{ˆVD~9/i†©bíç}Q¶x$k¸fÞQ)*0“…ÌÌœwá¹ßy`9kþ9s^?k#s=©#g‘yìž[rÑjñ£ÚÓM¾å-mWÂ!Nõ@‚‚!±´ªi˳k«cåÿxÍÅn’ÿ*l\ÈÔ›ïtÀÓqE©<‚©uý‘a6`·£bˆƒ°ŽQÞløösážåôÏI~@œ&€kôÀì-ª%÷ˆæÄ f=ù)LÒ÷®Å Ó(…ÔÇTNà|T†ýx’Jd¼TB¿­ ÑßïëO¬‚ÃÖÍí÷ +Éh¿ôGB&[†D3þ‡‡R[º(”v¯ +gd§ûrøŽ¢è,Šë—óV“!óî¢ +·+Î@R‹Š??  ‘žC…©óX×”Ãþ(Š† E.JšÊ{ãœáоΠ«º; Ö©ÕÚ!Ñ’ ‰rIoI 1²f{ßás;3GwÙ†l„Ó¾©§V Aì$Å‹Öƒ-ñZý¶-xî89ÙÌB¨Ž“D“ E{­®ù° ¼Ý"\ºãy®i‰¨`¸Ë‡ïb­'…ä¬e'Þk|t íåºbPJ«Z› µNK˜‹Ð)y´äWõ"ÞMH¹$f£xÔ.‰ ÌòÖ— Âôý™¸„>»l&Âû[󞪤“ Šð +XýqôöзþêÖ½Éã~ÛôQ}âqÒSæròi…$U2“”ud–p08kËFSÚ"Ô2B!©Ý8N@•W—ú¯W»Ì¾°ÔÎTwyWùÅ%)2¢K9AyÐHå¶<<• µÇŠ 3yé& +H³"ÃóÝIô»nšË x² ¬ãdÛ[5LèZ,9õ—óIU‡ +eYÆ‘ÓŸø¯HåàšÑ$õº)áûmXzlj©/'ýduÛ5.çË¢9„xiçÏA[+X¥0o}3úro¡ÂdEwCþº[.=³³²åj¯¿ã>)1I«ǮÓËc¡Ú$:LWW‘µ=NúR“ç8Å ÷úÇÖ€­‘……YUFu9ç¡‘DÙzŠZ‡áWáÏ2Ýi ¨G…4æùDJ#ÍqÆn="6ÝÑØcŽµ€ûj¹ëng’j9õã7º½äv¤³Em"®“èÏÂJ„nHCiè ãÄ››…Qà–8“+ƒëCÔ9ŽjÕ«½TF9H»Ðba¦Ã¤ÀkÑ‘åLm:ð“ŒÔu1ʪŸE•Tµ^+à,í"±‰“1npÆa ËžÙuž“tUyå !iÜÌNp):²0Î<é”Í‹m%^"j륰¹ŽâíG§å· +.5½@¯EÉffd—+3ïm‘æŠ ÷L"TUmè2£oÈÊÏ"ªÞÀ%EÖ#ø}LŸ QçÛÎE=P'Ão§P-ÁUû­œ=FáJéàW5ç¨ý³¡Èî ¡[ìÌ0AÆ‚!Jö.—i °ûqDEQ‹Z„ +å*žÚÀ°æYæt/2Po,@%ìý¥ëÃ¥q +É<–ȃ(9†£Ô5¶¾€@÷Y Ë%žÞE…Ô:Q[eܹ™²×(b«:$D‹ ¸ìÍ:æUât«óDÉË¢½TgB|Ezq!hfˆÐéΈð"MßN(Éb¥Ð6õ¾rŠâ¶!Q5Ýšw aá²% Ntó¶Âª#Sxÿ®Å.Qáûz¸ –‹t«è@õ§ñͬæ¡DQº$àMK-£IÝô¤©'­øs9ªªÓ*°‹u"[ù™-Si»™r‚°ýóÙ1’L£¢o:ݤ?8“­Ë| Uä*íåFBT=)s)ä‘ròŠŸã­ÕõL‚ôÀ…Žuùy5ØP¯’8…%|±èvQ +/[%¿]ÞÖ¿vÈez×̶ý$9¡º&…÷“SKj_q}ùÖê‹˸݂ºîˆµ»„ ¹ù¬Ù«ÁËI£ ›?×ÿ²]®· Ã0^% l=7êþô»#UEA‹"÷(#c#¾Ù¬³õc>ÚÚžmÅS{Wˆÿ&Æå$Œ°(IÉçµ ½íìËk+œ´‹¸½X€,¬Dkž¦b'¨®¶Ñô=ÖýgVÍOEÔ,(²ü(8ú n²a†®Ìc2×FääQP<¤éžñY g çзÓQ„êWªãÂ|¬™ÃNI-O×2‰š 3Ylåõ‚¨ÅÇÌ`¸ùOXooMÿUõÉ<§Ò+Y·CIÌ_‹h¼€¶œšQq ^³äÌôÓÑÔ)Ý(o˜¬ÔÁ™÷ym=£Žù„'Pê}|¥Ç±q-»¼„Ð<é‡Ô=ÚÀQ½¨Gw$…)õ¬Ÿc—ĶETž+iIôE2V?Uín™sÎ7ì.zÖZŸž#JŠö'SЯhš_æ þ*pû þ‹\ê9—CtüŠ^ÒpÛjt±•ëY¡ïZrKâ¼o… Òýk Õ•+hixc 'œà½â­Ò+´ÅÖ–Â:lYû +ÙÓ–Úˆøò¾} 0œ¢Ü& +endstream +endobj +52 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 216 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 40 0 R +>> +/ExtGState << +/GS0 41 0 R +>> +/Font << +/C2_0 150 0 R +/T1_0 151 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒOKÄ0Åïó)ÞQ/É$MÒJÁ‹®šÛ"²T+.¨ÐVýôN +‚Þ¼Ì?fÞû¾˜–—ñ0,h[}}sø|ÿXÐu›ËÚdÒ©g 3 0o¤¯¤}žIgóÀ2Ì#1ò §d‘%}•zBPµ—ŠQ+×4*r¬a½ò>Èí+]Ÿç#m3mwb§ÿ“úÓ§[bQ=Áa'Gìï"’ì™) qˆð®VÁU¡ØÛÈ«}Ë]÷›àï·‚©lÓ¬ÄÆ"Ôª²¼2l1=ÑHß BI© +endstream +endobj +53 0 obj +<< +/Filter /FlateDecode +/Length 1060 +>> +stream +H‰ì—]o;†ïó+|¹¾XÇìU‘ú‰8 Ô½C\„6 …&-´åpþý™oïÒ” E‰¶Rìx'Þ±=ϼãÏ£ñóc-æ×#-š—㣅—£7£Ïýq“ÆÇÇWÓ¥ØÙ¿œ.碘-Ëç{rüjÿŨ­˜LööÅh¯Á_Ñ¿ŸhC󌛆š³‘VDs"ŒIFFkNP騌ÕN4‹ÑÛ"H”…’V« +'ß5ÿ$Ѓݓ›ÛéE3ûv³stxt¤µŽ“ÉD°…ÍÇÑá+삪­Ç×4§8c#+œo*Kc”ÅYѼs‰_#®F–è‡(nÄ-êdáhäRü¼•8ˆvW2Ps-¦læE±”?OÅ…Lß/eT%ŠYjUÓWr#KÐdpN†Ž /q"Oã×¼ÄÃ&ùþÐn»|·DÚÑ2uþ÷p›à𩽊•uZ”³¾î„a¡~ø·Šµ!çæ³sÃóÒ†Oƒ"ÜÚ¯+!@ÏzÙ0ªö îð3tâ+«»®° uDWMŸÚÒBþPk4qÿ!>Ž°¹’œXO˜] ÔhgâŠznMîDZh˜Å@ˆ!ƒ‘ž G­Ú€šƒ'ÖþvÁE¢uy,âÇìþÄõ}p(oì„s§Üá†r;*¼×•¦î›Ú Mìki=š)mi ¥Xù–IDgF|L²dÝü@:É*îÕ½r{ŽødŽ“NŒí©9¦‚Ù‚:Õ:K,%°Ìs°}Q­(ûL”&ˆ¨Ÿ´x°ÆZLƤ±y >¬±ÛM_^}Ë&LØì8òHyu1E±ïdÝV=ÛÀ,&8àï˜õ-²šB»L¬A¿á;ÇòÁfr[“ç„*Ñ¥W‘Ââh$`u 8°Ê¯­0‰Ôri¸ô%j!&jåÓÕø{§ššÅùB…8?¢IxR$ÓšDf‰û@Yc>J{?”FÛ¿œÊ_A±Æc”Á<*‡ÈíV,w¯8k”a#ʹ7EÙEÙwÝt|·Uà«M$#Á[¸#Ù¶ê ¬Rõ6(ã ô[ìK[¥»%½Ñ\HÇ’{‹\‘.ÏQž© 6­º;leж2[ê`xÒÁ?ª½·N®”fýÍ¢pÀ÷'®¶F¸ãÖïB8¯çÇMƒ°ŠæŒë»¾÷RýÊîRÇ«lMû¨QªŒ ‰æ]ÖÚ )5KKÇ’Æ:÷MìJÃT=£kæ{‰sqëR©ÓÝ–oº_Ivצd3¥_§݈m‰ÖŠÑ–Løà»mì\”EÁOÌr¯¿hÀVW±³æÁ±óàYf±ZlaFë^ÅgMŠ1k«ÓNžI;«ôx,`)óeæqò¸ú_€QK¢W +endstream +endobj +54 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 66 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 40 0 R +>> +/ExtGState << +/GS0 41 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥séZ虘(@)3#c=3CK C=sK…¢T®4.€¸á † +endstream +endobj +55 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 583 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 40 0 R +>> +/ExtGState << +/GS0 41 0 R +>> +/Font << +/C2_0 152 0 R +/T1_0 153 0 R +/T1_1 154 0 R +/T1_2 155 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TËnÛ0¼ë+ö(Ň(’€! qìÂE“µnAP¨~»•ºÍ×w—’ëÈMR¸=iùØ™áî¬Ò³ºY-«YƒAú ÒÕÏÍcEq~1„輌ÒáTÀl `;[Gé{\Þn£´”_n–ËHp¡0˜AÒE;Pb†ÀÏÅ5äÜŒXn@J͵3”áBjÌxˆâÉ„•wѨŒF—HœþUòËŽŸ¸ѦÓoÕÎfÍcu_.~4ƒñh<Bø¢( ä)±<Ϭí) „Tœ¤æP i÷Õ hwôøÌÿñøëxÂÍÄk–q qÃ$Ä –`&Ä·,QÜA\3Ç=Ä^±‡+–Òæ ‚k¸`I†$ñŠ%’r¶„‹UY¸~ }<¯B ‚áÙ3âD*by÷1Ü0]*fl¾’8)¹ï¾+âÎ!~"Qî™ÐÄÃj³FLD¬Öó6øÌNx§ì4¿UÛÖ ƒv/@O™'ñ IF$bBLÞ¥Jµâ·ì¦üðŸvëõUÛŒ+ï|ßJpš©iÖ†Sšµéð +­d`\"Å\ߘ#ÈPí­&i²\Pàßâô‘¯°êÿ@—ÿ>VGs«Zûì…i9_µø4Ú‡b¶ÁqAÚ —¾?(Ò££±¡p…=6d· mPk¿càÈ9äØŒú–5’º–5vo÷pTw0 +M›“CD“©á4kr°F¯59Žœa╯t¦ÿ›E_ +m¤‚Ür­4.…‚z-£_ ØxHt +endstream +endobj +56 0 obj +<< +/Filter /FlateDecode +/Length 1078 +>> +stream +H‰ŒUÛnÛF}çWÌ#(©½“, ±e ‰ˆ¼4AÁH²ªVG¦’¸_ߙ٥D¶!ÉÝáì™3gGoöíê¾™µpq1ú£»æiwha<¾œ\ArY'd®Ã_k ì—Éèv*aù˜Œjõ§õ}âóð¯ÈتÈKo=h—;ç1`“¤JÔ'×urý³~ǤKü¯ïF7 “]ò1Mš-a¸k¶KHÛìöRŒÞ_½`ښܔÂhü-¥c@D ™Ì¥záú¬f\ÎCép©²à+¼‘EE°þHµÈ”Î-¤¹È´Ï=¤FH,"•âkýîˆøtjÈ%ÿIª#IŸ°©ˆM6NŠ9ßÌÚC³®¿Ú‹›ë›)e5“j¤“j ÊúܘBJH™%!´žcYWB9ªb·6Wn„£ÚÂä¤[\,!] kH[®ŸŸ )|×U b‡ÛyéZ`Õ>ÊÐÎ"Æ¢ÏÏÔÿt.£î’ …V[Ù›98*‰éÏ´ce>’êi½=Q“v“õO#oèý3ÕæÏP[Og«­¨M/©­À²:µ}õ$Èæå‰n‘cê Þ`È_‘Z¤R1¹3¶(K;Q@08þ‡0Áÿž5B:v1Ó=L…âoÅmVÑ$wm©Wºg·aØÕ2Ü©¶©ãDD0‰Bü?ž`BëcÅüú}›í+® ·h5Upé>ž5ÉÖð§oJÃW’ÿe<¬·ÂzFå*áqÁ£b)0ŽGA ËÅýNõëØ×Y€ g¦0Á=5#D1ÿ²ûq…=*jÄC³,¾Â zÎH +endstream +endobj +57 0 obj +<< +/Filter /FlateDecode +/Length 990 +>> +stream +H‰”VYOÛ@~ϯ˜G„ï®íx%„TUT¥úRx71ˆp”ß™ÙÃk’T©Xgoçøæ›~LGG{0Ÿ<Í:ØÞŸu·]wù×]íîC ;;»û´gw:*‹²´0}¥ ¤?Úº(­ ntaTE«óѯìùs]hȮД<¾¢ª‹²K¬ +CÀ s¥ +Ù}ÐÂÜ MÐ×#ÈžÝÂœSXÈðÈ -d7ð&§iõU[Tr¨e,š¥‘n¯¢CUò|«·¶|ŽV*½2UÉŽ’ÏÌP7lâ M×å+T±e¢ßÇ dwl/YÀ5ÊÌÅ£?ÁY6öƒ0k¾ýuÉwØ8³Ý> ›RÀÌÅ8ñ]¨+Þù"þ›½{BÔ Ý’õV¶º_—à|¸NQ[ŽO'–YÆYã<žO7b‹²eR¯aKÕŠ ²üàKÑJœ£°4>¹Â!M'n8(©:ËØ>ÚpŠ¹xôã y©,Í=¡ü£s'@‚ùˆÆ%бé2äíΟ}A+·òOºmß›µOT†ì‰tjËoÞCŠßOÌɾc?E!WejçÌ/¤Höc¬,[’3³¬$~3*:X¶S¨Ÿ [| D'b²]-D0"rn]x…;\««ë¹´¾r‘8”…KÅ *I ã\ñí½n{ó6æŽ*òPÊZ­a!AìIêÏQbº{£iTCYH¤¨—•„! «¤¢J"ÎS* zLe*ÞG[¯kîg(z Æž_ô‚¡Åþ‰^7—`9nÙ2GvI‘Ó 2V*Ab´@ÝòâÖ’·¼F‚!õrdlItbê—*oS*¨TG†,¨l[”Õ) ¨„¦¿7ÖC2ÕŠ‘NÅæ±ÉˆN…r„…g|R@AÁΩ¹4.E&U¯å°/8ZöXÞ;à #\ úB­/ÔJ@'ó $o*16èÌå³JŠÛKÈìdYp—íìXþRInyÈ9ÍÖõê䆉¿¡ùÇ —„ <­œvT®q +‡ÿ¸Ab£˜™$üµáýƒ H]2 ­×Z“j-[D' QÎXË…uËw–› •ù$T¦Yâ’ +%°(º> +stream +H‰”VËnÜF¼ïWôqGœ‡$`ø ÉÄ@-|‰sXY”â@»,+Nþ>]Ý| ÷ao Wóè鮪®™ÕÏ‹w«Å»÷—´8¿y^oéÍ›ó_ÖÛZvÛ⧠sþþòúŠ\¤·o/®xÑÅjQÒê9G%ÿñ§©lÚH±u6¸ŠV›Åï˵)’­iùbŠh¾®Ä÷³)ô8ëiùÕ­ „ ®±-·XéhùÉDÌwôÕ´¢µq•m1ñ“lõ%¦>ÞÊ1þ6ÁáÐŽ6ˆŽ_›ÛÎxÄù‹%!z2Ž7ßNt8‰§8íå¸+9Ú=ðDm¬ˆXÈ;9Ò+Nã4žM‡ ‘ +­ùcu–UŽ¥-ëzŽ§+k[»”(Öµu ×œKB[,k”íS¡÷Àáu‘°‹LDæã[TŠñ2ÂÂ7ÃëxâO­eÀ + ƒŽ4ÍÐ3ИüBP£ ô¡áجæ©í%‡DÒ”È=À¯b!á ­é +Axñ• ¢ˆß¦TOšh’xkR%Œoäð˜1Knüg8þ€=ÿwF—†|0EÀ±ˆØ!rXô/Ývt2ÝiF·«Ý‘öIÞ¶Û\h@毜_.£|¹äZ4(L‰V=´Ê:¯ðkÈ΄ˆŠî€¢Ÿ‡tA Põlû}0àŒò–·2 LÜ£1–Tsœ²ê eÚ{I =iI¢béFàY3É%ç”ʨ©5¢7^úi_1\k§(4z.€¾©´æYLjP÷%:ÉÉz¨çíÏz;¬‡ÈLzØWàè^S…äõu*«1·Ó¢Ñå>VP-Êé¿“’¦­ô8‚¡nÎA¤ìpe­@”VþwˆÞ1ÑýG¹“³Äеú€öä'ÝõNßMb(*ÜïpžÜµ{©îŒ…„”[,ÌL=L†Ô?Ÿ¯ôzÈÌÒh±{ž¼,îp¡H÷?¿˜å©*iŽ_¸±ml™ZŸK„XýuRà6 \@Çü(psúË-¶:Ú­3?.M0õ‚!ß7,ð£kh­L;p‰”yË y#{-{/ð½HKÚ’VšÑx=ýj¢¼#˜ŒF›b¸†ÂŒu±…ü-p€:d+lühLôê>c³+±G:rèǺïÇÔ÷ãw =õ†ò6”«9j…M¦üWó©¢òåÜzšcÖN³«è软þ‘Åìæß|ßP«Ã†ú?ïü.Zmexéáwå·&Δ¹ã*Ê ¥ìÕ•Á^°KµùÝA»o¡!N?öŽ¨.rà…!ÆÚä¯` éç!›ìA5ÞÞAËi¡!µöáXÖý'Àˆ"p +endstream +endobj +59 0 obj +<< +/Filter /FlateDecode +/Length 988 +>> +stream +H‰¤VMoã6½ûWÌQÔ +)R’,ödQlÑŠÆ襻'ñ⁣°7-Ú_ßyCR¢d§5Pø@™óñæÍ#—?Ì>,g>]Ñìâæeµ¥wï.~\m¨Xoçß_òŧ«×TYzÿþòZ6].g¦4uGË?ÉZ2ò“aQ—Æuž¼iJkkZnf¿߸+=;:ð¼.­XäyƒñŽçÖâãU>|YS±—‡™'®šÒ‘œWuÙQñ­dmC[–Í2u/å|¥»:ì^q[6TÜÊ4LÌ%‚â9 ø×ÂÅßbgV™ƒSO,æeÃŽ=æÅ‹+T|GÜÀÝZæ+سêë…ú¼6<÷z•òù,­e bãÉí%yc®*,åÉK$\KÈX:ÐŽåK¢øú/¹ê™i¶Cr ÀÛpÀn+­øÒغÄ<$¾…)0;o¹Z §çxrÍΕüX,YžÇ¢*gÑi¹Î–]bÐBµˆš'µóÀ`Òs£ôîx­C5Cì þ¿ךzËOŸ?Ø…,i ²¶8)ù·XAqëé=kÍa_9)Õ¤bÓƒÔ¶p›°>Ð׸£”¶qïr®¤èYö<ªA +Œ©£ã¼ÕŠ”çsÁe\`óÁš¶lmÓkñ ± í;Ss‘¢³I2¡Ø„2H/–¸AZ.ÔÖ¥ö‘¬µ:uVíDIp- e –Ž»r\ö#ø÷¬hÞGkà/tBh#ѽ€iö°"ìŠ.bŒóW,~ºÈø32nѧaq ÀÀ²¤L¶•öE£ +ÐǧƒÊœt'¤òEe #‰U7ÊvwÜ:‡ó)äG—R%¬9-)¨rbÐ!Tâ±o¾T¡S¢½c‘êE¦‘p±Yy]º×‚G$§ä’ó>*,ð¥Á9è±KûsP|\êçmÑ:²›…¢•ÊP ¦(Ó±$/(ŒÊû"W.k†¶?¥öV]|Õf«N·‚„9tÛ4ð·eIý.¸vø½!TûϦIýö­SAɉe)ˆ—¿e¸™H˜¯ß  `?¢"‚Å5Òct}Ѽ¡*P£DñgϲÉPº H;|¿ ÒtåÕg¤ýêé]S÷_o~…ÿ@?±ß; –¾\¾ed½‰¼t°ÿƒxˆSï«ð²óÍñ3³¯eI)Ê/¾À[º]S\Ï¢ +ïéXUWÒ*¥›dî¬Ô+ýSN_Yü…þ`ü%\´ +endstream +endobj +60 0 obj +<< +/Filter /FlateDecode +/Length 942 +>> +stream +H‰ŒVÉnÛ@ ½û+x4JÖÌH²9dAÑ¢¹¤F/MÊjÞ¥iúõåãhYbˆdŠÃy||äÌìûè|6:¿8¥Ñäç¶ZÓÑÑäGµ~¤ñý:úz“‹Óogd§t||r&N'³Q”ÄIZÐìL%%òg Yœ¸2%ç²Ø˜Œf«Ñïñ†M4~ -g4~åȤxy’—/[NcCâex>ãie<§øm Ø¿Ðç4®de•kbxTƒø,8²6Nƒ/ô€oØ-EÐ —ˆ¹¢]"sÎãRvÀLqݳÿÃÎÀ·Á±fkà)+­Æ^°G±‘ÐN¾S—ìÕ˜ÓF ©SĹ…áŠk'|Éù–£Oðò³`›cÅ‹æ$†Òß$‘^$%rC’¿™ªg^e§4H]ÂÈ+’8YCVHãV]‚ͪzµÍ­ªÓú>Ö†ÅÖ‘øzv˜ÔŠ©¹L¥f:“Ê¡În¥zA¡PŠQQªôú2®U~‡aoù­x +NU§ZŽM]–'ù&e¼!0–c¹Òþ—S-o„ò€¦x#}¡ô6 ÊØõ$Þª®D¸g +Õ/ÿï`È}£D)6P`¹6”Ú-ºRÖ{©Î$M‹ÈwÔ¶Q«cÁ˜KT^%ñÌFw‰é”ÅõGê’VØÜ ¸sXûÞÐP©ÜäËR^’>º¹§WµöÛ¾†s°bÊŘ“`ZÒˆ°ðÌeSj_è-º7GñÔé‘ó HZX¡S'ò3¤KFÐÚÚiÏŽaMíز&í^…xo}Ñî©­ïÞvî‰Oá¸O»Ãok3ÞiÙö‡ÆÖ9Ùé}‰Ì +Œë7öÁç],píú}6j¯¥©-è²9†-Û§³£âlKiæõˆGÀסŠsI ¸d¿Úl)oԶﴱjX¶MÙ–3²SMx÷i»FøœH»&½‰‚›C´VLúS&¥®®˜tpt~ҳ˘2Øþ_ݪŸ—£ë®F¼¢ˆ•5ZoѼøð˜Ý‰ÜHL2•†Ïs¹¾HNM-~r}먧tw +ûÔV}gX`Ô‰õvØH2õê YÏþS|xr„çRäã9>n1Y@†ÜYü ݲµÀzIƒ£½ø O A£÷ïh;s\Ïònæ×—%ûֽì¾c©»í7þ´ßøáèlø­Çy˜oêcVì+ +IÝ£žN|Mÿ‹`>ÿ +endstream +endobj +61 0 obj +<< +/Filter /FlateDecode +/Length 892 +>> +stream +H‰ŒVÉn1 ½û+xe$Í +š]Ð^Z£==dOSÇì,íß—O”f4±Ý>HÖHùøø¨é‡Éétrúé˜&û_Îætp°ÿñl~CÙÕ<{¤ö?¿?!géððè„7M'M_È*øÇCUÝ8ëÈ6­v¦¢éý$#5½ÛÉ°K ë¢nÆÆÛJ®+ÉÖ¥6bû{ö¨:]R¶ ejí(;S¹1ÚP¶ä‰Õñ–ܺ¦ì§âSÙEÜðÄ“f*/t“¥ Õb²P%lΕ5ºƒ%¿ÿŠKÙoŒ7ßáïJ±5¾EÓ;eKØ[(ëpüE9ƒ/Wl”‡gümð×âÜRÕþë=÷û‡ÜøàþЂ=×-e×¼Ô$~ä Í ž·XšG%ÎÎá—Ê4ð¢·j=N3Äãþ¨:¹µXხê’á^Ó6;½¹)n$WÈe@®çÄhíhö +mðW—¡ñ;,jú–4ט·‹p~w^µãÇ¿ +7ÓªhâCþ +0µ¬1Š +endstream +endobj +62 0 obj +<< +/Filter /FlateDecode +/Length 1023 +>> +stream +H‰´VKoÓ@¾çWìÑ#á­w×^{%„D[@ zÀÁÐ4<Ú$$-¥ÿžùf׎>ÈT©¶³óžï›ÙÙ•½£Ü©ìúBy¡k•µ”›FW*[(*ðlÉT8`~)Uö•_‚*ûFÆèFe3…_ä gIqC¦Ð^Ä*|Ï)·ôüRà÷Ü°¹38ŒRâd' +²âãR­g”K vÇ+¨C䜬זE(Úàܲ£Å7œ:€? hƒ#ÛáÌÈB½×yתíóòðÿ•ŒÃçUàï5ëYüpIŽÿçÈZ¢*a¬³"Eä /`ŒµVd$øAÂœ¥OeoP‘çI¿‹aç~à¼îœ¢%ë9”\çäj4oV5K‚ú4}5y6<;9R“ƒ·«v¡?>xÝ.æ,»È_ÒÁÉÑËcå‚zòä𘅧“B›ÔôZ£ +þãGSéÂ…R™à´1•QӋɇì”L Ÿ#µ‘·‘×øu…9â‹”b×~AD@CW¹ŽúK¶jfF^ÖPô±´NjÜÁÿÖ¤uxêT»§d¾%N)znðüÉgCWm‘ØÓ¾äR=Æ—µˆgÑä‡@ÂI3Næ=c”a¿¯YÐD®ì‚0ùú=’ø³\ûj¤Û6R<ݨˆ( ‡yÂÑœ&Èýï.ì ¡²Bh Ÿ24ºðÁŽðÃØ~ß˲X¾“u£7L 9ÓG°R=Œ•®e­Ì‘€ž¨ËŽ¶Ͷ 3–%³=Mgê¹H¼Øð +½wÙìˆy…7ãÒ™¢Öµñ^_òKJs4êÿoð­D „`KÎÁâJÅ´ð‰õJVwÞ‘à~L-#áîÅ[¬>`©¬„è2 Õ3uË´úÌ6bM„^.òÖÊôÜR&pœxzL®€|*j50û¸5˨Øí®\FdžâîÒ{OÜÒ úÎK’¡,gJ7·^q¶]ëŸcÈ™„A?¨ÞoL77êóm"Wb2„tQÌøŽC?œþAÛo“*V½TÊ€“íBv¸Èe¬¶I¾_v¹:å\æ?—¦‰c<Ý6q4^¥žÆ«ù}„þ¥°ÂùÒ­ð(.7 z4Õmw%/éX‰VÖ'v®®Çs½Mã~Õ¡«ÓKŽö‡Q¹3>ê{·ãˆ; 2â;U;£Aöƒ•e÷²ØÍ~ þ5y%ããž;Ðvm†:þ.è|Ì`„_ß& Ç2Ï…ë'qY$ÈTBë ŽŒ˜ñq‘¿4µEðDpdoU‰=Ø`NW¢bÈË^4ªOcJU/‚âÁï–¤J%)Çxð#<¼'o÷È¿âáVËè“ú#ÀÅ~ê +endstream +endobj +63 0 obj +<< +/Filter /FlateDecode +/Length 516 +>> +stream +H‰ŒSMoÓ@½çWÌÑ#agg½»¶¥ªi+"\ꞀCÚ¸¡I£8Á¯gÞ®óaT$äîçóÍ›·í‡ÉM;¹™_Ñdz»]lèâbúq±YQÖmòw3žÎ¯Þ_“óty9»Ö Y;1…±–ÚŸ$BF?=j_˜²q$Ö"^¨]O>go9SÊÖœ[S”¸Ø狤h(ÛhHƒËÛÏ>†¤.6xCg¥Ä!bIœ›qºïè%"”õ(ici‹s‰ =mYlHïôbQcOÏ,ØåaÛé4‚éj+´ƒQ3C*Qžˆs¸Œgêé‡ +ɳ£}ĬéßX³\ mD­Õ:ú~àˆm‚Zœ?"dÒsÝ ‹ŒVÄ_Ûÿ“HIDJÿ‰˜ªhÄ'…Œ¸ò£1~Ì8üë°êÑ9ո倭õ´d© ’#;@_E ù$ÜúAn>­WÕæ ‡)_[çÑ=ÀWžÃHœ'ëÓAç=§i⇈ +Ž•"•±v­I‰þ£Wà‡WàN¯4ÁÞÓ=Û¸»_ç{|ttǶïØæPÕ!ì4í'8ª¿Û¾òøb[ H·‡§Ð)=°Âø¢%V?rr*€r¤#ú#À†Íð +endstream +endobj +64 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +65 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +66 0 obj +<< +/BaseFont /JRGOYB+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 156 0 R +/LastChar 180 +/Subtype /TrueType +/ToUnicode 157 0 R +/Type /Font +/Widths [250 0 0 0 0 840 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 0 250 250 0 0 0 0 +0 778 611 709 774 611 556 763 832 337 333 0 611 946 831 786 +604 786 668 525 613 778 722 1000 667 667 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 333] +>> +endobj +67 0 obj +<< +/BaseFont /KVQTWZ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 158 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 159 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +68 0 obj +<< +/BaseFont /VJFNKD+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 160 0 R +/LastChar 51 +/Subtype /Type1 +/ToUnicode 161 0 R +/Type /Font +/Widths [233 0 426 0 426 426] +>> +endobj +69 0 obj +<< +/BaseFont /XHAOWZ+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 162 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 163 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 415 0 207 307 207 0 +0 513 513 0 0 0 513 0 0 0 0 0 0 0 0 0 +0 0 0 580 0 0 0 0 0 239 0 0 0 804 658 0 +0 0 538 0 0 647 558 0 0 0 0 0 0 0 0 0 +0 482 0 448 564 501 292 559 555 234 0 469 236 834 555 549 +569 0 327 396 331 551 481 736 463 471 428] +>> +endobj +70 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 628 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/C2_0 164 0 R +/T1_0 165 0 R +/T1_1 166 0 R +/T1_2 167 0 R +/T1_3 168 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬TÛjA }߯Ðãtg5÷]0†Æ ¡%¡Á^úB Ží:MìâKûõ•f}[»%5íË®˜ÑèIGÊßÏãác­Vþ ò›Çõt¹€vûâ²ÉE•  ÔÆÑ×ZÝ륃X¸„g¸@x‚$¿î!ŒæIÞÑ_TCzXõÉ¥Zñg +é÷“¯fPÐÒ×Ù ½5´“º@º{MZˆ…mWÏÉU•\݇&Ù(qÎK]–üÈ) >H£ 8©PÃl “ü­œòJíXJÄ’™f+Ò—ÁE–ÒuZÉàKâé%yÞ§Zd*H ©™¶²„Ô x¨>É#bªX§ÚX5q5‰ãjã‹÷†p ƈÌIé2¸‚¾Ð¤ Ï£ÁåPÇMsÒë& o™¤ ÚtNÑ›IrÈP”Í$;”’´Nc‘)© ^öÙˆÉkMÏÓï±䱈'ä1ý ã܉Ìr‰8LÉñ^b¼éø ž¡‹5> +stream +H‰¬Wko;ý>¿ÂÇÓiÛmw÷ +!Ä +.Ú›ÙýrY­&a2ä’L&ö×o=l·ÝйZ!2IÛ.W:çÔÑóýáâ|svOŸ}Gï6?oîâÙ³Ç/ÅâÅzQŠ²ÐÆÂϪ2b¿[½9)Åîvq´Vÿ)…ëó…+jXÿê +¥LaÛm k,¸Z,µ\ÿ¹xµ^¼z»~ƒMwðýîèõU)ŽoÿX|Ý\c ï6×;±Ü^¯Þ¼Gï_¾=U‡#ðÔ/‡â8Ö>Œ²(k#Ö÷¯R]0µnŠ¶mFóÇò¥TuaÄòF*-–wr¥UÑŠåµTe¡ÄòL®Zü¼+eÅòR|\Jkð…[¹²øÍV®\áàS¼…—ñÝc©]Qá§)Åòwxò&–'BKz³–ÞPÒ\§Ä¬ð‹k±†ÅX~–7ÚŠwrUá»[YãY;xX¥ðñ¥x-Uƒöž8þÊàƒ+|Pã›ÿ½4¿¿ñ÷#ùEœã“*ùFüoÇÿ&Ò›à.¿ËÊâ¹¥¬4..ðÒŠ‚ºW<.¿ +;ÊQÅŸü÷Fkñ,ß$‰7>À›/ü¢ý++­qÓk¿Ç–àß·RÓÍŸùïõß#¢BO“ gÑÍDTUÔ)DÄò_!$@ÜSî]‡üÀ8.Åé’‰a«H°ê¢ŒêÏOâ@ÉrXk¼r‹%¡R ®-ݶÅDö/XGƒà`(~„ìBýjÂn‰+7¾ÖIN{e¸ÁÓ`å9îIïRåê å6>wþyv¡3Iå{J¾~AßdÌ`D­0ì"ìR8ø OÞåô;:¹šž4DÈ~a•´§IÚ“&@¹~ŠØðP7ÉÕ%š N3œ z想ʩÔÚ)lÚ:ñô»h¨s À[lMfÕ*eB@¥®’åQƒf¶çÞ¤ÆäƒlÆ/ÜI×I"•>œd§Ÿ4àÄ(•ר…³C ›±È¤>ÝË÷×ãÅ3$zB7ø ŸÉÌpt&]CÁ-JCÎe5_dmŽ ÓN!£2‰•êª3± +ï?.Âm"N~[õÇ®_‘J׉[àÃ%«•x•Žð q¡ïé°”Jó/¤=ÏÐO† éCýI¯öÏNY¼¸OÒ*iŽ!‡}¢©gj(§v,ˆ0.‘—u“^–ÚÎe×ÚÙˆqÓ,Õ¡E·‰Ǭž9õ«Ïø•oˆ¤h¹_KBvL4A#Zs›¾ »oŠ]f¦'¬³†5u¬+pÉ–†—^Aí!m¹ӤÅ5 qÅüÜ×Yî! cágU±ß-ŽÞœ”bw»€,S=\WÛh`}£¸JZ¡ +ñ^ê–EPóˆaTtGÊ!µéVÜž!È ç€G1Ûe×0'é’ë„yhp6%2øSZoGnp†Ÿ,'Š à +ÌÅËJ–ƒ¹)iò”àÅÅÌ…Â\ +†g‚8Ä8Fã;©´½ ë–É°ödØÅÓn‰Â‹åü–k{¾Ê2!°šUÄÐ}'91ÀPâV#†å‘:Ù›õŽýLjKÊ™$7JTU%Tµr½œôFÍ]ÿ¼ Ù·C>'M¥òÞø30§7Lœ,’K{e ÞkØ]ü+ì‹lj"R¡|²–&îËqmÂîAÉi&’>drî´±¹†ðy–N 4WÌ„+s•=SA +»ÙS=T3GŽ¡¦$]zP Õ>ÓØ~(&éà™.®Ò®°Ù»óì•@½/þ½ð¶Ëæ°Ý4!º #¸#·âBÜѲ¢)Ò¦'³ü…‘á’ìÈÐ~< 5c“èj^‘¼CžbOI>©˜@=Çk4G GÕÔ…³•´¤g»ÖpKRÖöD5ÝîéÅbÊÁ8k^©¨ÕΩù*ã: A–3`BŠRKqÃSÕ5Ñ’m¤=jïU {Jö3§ÞÊzÛó©¼=a¾¼à$oÒY5™ Á™³³m´1¾CGu§r |¥®9ÕÏ9 Ì”[‰~ˆçžû¢2Oî  }¶#‹ŠŽÆ™¢H ¸BsZ©Î§Þ¶Ã|H°çÁŒ7ñb=ïQêà0ØŽ«ÞJZ(ýQe‡£\”=~•=êÜÄÐpÈŠÃŒDZqæ:¡Ló¬»yÓú¶¯3‰2AÏvDkôe¼~8 *´šäAWaq.¹*Å\¡Bãƒq¡ŒK‹›Xääáx<\x…l—Ð Ï°'Ó-ÏÙ€§àcv£+6´zÏ)¡¨¦€X?JÃrª‚¼,kÑ«õ<íND·cL¹Ÿ¾±I&”]È¢)÷;RUÝ­ ^S3)6w#™ Ëº©3”€¿žiD\ψhGf‡GcLшIl(‹Ç²¢Ü"ð“ âB!7cOÂê-W4 –óµ°¸±¢ìÏ’pn 4^A1]+Äÿ~èÊ![ix̽4„Ôo-RÎBÔŠZ+Ùxw¹ëu8 +'¤ÞÐ@{[àˆe“šèc°…­½·®ðsƒNÞþ‰CE—S¾ü m ΢rÄŽ7ô‰o ÝW8JãQšœ÷¯NŒ¸´J¶`ŠÝŠÔæÀÒ3¿©šŒ~K35XV`Q*êDTj1-U± î5MF7ºÎ§¨˜9=QøíUß³{Ҧģ+ÇGuú0оÌðóЯ'8L¦€ÞO ûû«Œ˜û¤„ÑȤõOå[´Bêð½â9ãStxš”ú>èíµôΖòð™·ÁMèCÊ׳áÒæp™²ƒ¦m;Ø·yA ã âˆÆÇûÞM4s˜*ƒíÊ‚kdPòóÉ)t·‘Üc;<™^zØʹàì$™z¦íã90§.ýØ`‡?ê4m†„KñA®hòس“ØIÇL• ƒePàïÿúði%Ä9æ ò Ý$N$óü8®GmhëML?„™(«Ë”®Q)ë2ˆ-W3•¾VÉÎc¸mªÄdNçêãRÂ…ÞJº÷Éi 2åœÖO™o}^oR˸ Ý5ÌÓA´«4U—õ¦¥Þ€Áš÷·ÙeÐ=[Ü®³ÆÁåÛ†k²)°(´?lÿüìp·¹\ož¾~õúuY–í³gÏm]j4ì´þ<F6'B3´DJ÷I©‚´ÚO£ûcù×ü†Pª³Ü¨Ãˆ—TàÂìºcJ*‘.JéÄf³ÚSLûí•7R–Ä›1t)É:|E“$u˜îDôhgÂÖWYú-Ë"qÁT”Æo4Âl:“þGz•ôÄDá;¿¢.#a)tìZlW2)â0WÐ\‚¦!$P&“?o«ÍKSMNíî¶ËUï}ï[²…ȳ…í 5­†¯­È bkóÂà–Y$ .Ú´‹-@0bý‚ùˆ&ºÈkÄ33·F^SQ΢ˉë±1'Ó*|é1ì|é]|ô.óuI`à̽ä–>ßV·gºì2Í°Â.Š˜ÊŠ@£D…/¬¤7¼ˆf’—ó~fŠmþB0®æömÙó'g’LùóL371 O&pÃ[¯˜‚òôÇ^[6ð‹\¥óàøKlU ½±†²6Ö3ƒŸ€ºµj¼X† ž/Âåén©!ƒP½o¨±-@ƒhƒþCÁŒlkűP î¿…ˆðÔ*Ø[xDV×jl÷6­ÝØP¸Ë=L@”ð‚é»Ùt®•:Û™L¦£y‡e$mu?¡ŒÅ Ú8ƒkjßOÕ¾~?ÁÄYfoÁ´t5$¢Ö ™’Û0#+ÓâdZ\6-<%TLcý`4áw +¿àDEW _|u‰úïvd¼Ïî¡ãÌaú®)» +¸´o“^ÿ½¸Fû"‡9Îæ +¸ò}8T„.OèJRjè3˜€‘Ñ_FXÆñfa$Η1ò.b¬›`¬_ÀXGõ&X_ñ(ÉÌÁ3?%¦ôqêRÔ89®gû@)õ‚Øê&D”…e¾õg£÷‚ÀG¶ÕS¶ ðúèÌ·û”Ö½>®>ÙÎ&ܤ)f FÌÎOrÉó<5CQe*é EÁjËpú?΢EЄ¢o³D•Ø'UNéPL-øCþhÆ­b˜Ó»àÊ0ÌCkM‹_7ý4,‘—f²¦±¹{ÀõS¾þ5£•†'y?n`w[«Ã÷ì³,UØŸö~Íi*?¿Áßïhß/øŸ`¦žÔL¾ +! +.B*£É¾Ç$¡%QÝ' "°Ñ Y»bÛz[x8mÈÆ݇ã¼Xì0iIìÿñÍ,àÄM„ýóËqҦ,!¤ry?g ú=B«ÍC8p]±Òž© Ê5½®+<-ÛôP¶jÀ %`Ì^ …¶/_²£².«4ótËmÊ–éÆ~§€S^ „µ>O¬²Ü¢Ÿ÷âçMͬ…÷äñ’„änÒW"9Ÿk·&‹´¦À ‹éõ|å¦eŠ¢£ü‹;693…Áx~ï#îg£ÎàU´ätÖäÿÜ4É~3”K±Z šA%! +”ŒÇÒ|<_ýÚ|Õ°ã3ó5”óz6Ÿ0R¨Xu`M”õ¦º$¾( x.ʼ±Ö¨Çëƒ×ž¶êúéàõ±þURgWãfÔT3%ƒm í :óâíˆ%û”ÞüQï|†Š…¥“…G[»p™a¨Åê+§£ãœu|t9F³ËSC^vüˆ†ò«“oåÃáICº<ˆó§éû"p ­„,êÑüTƒ‡'¿Ór‹;úá¾q"ø¤ê¸Ñ ?‚È)D~Að"ã{°ø‰–e»eñ„ËÀ¿êüPöxÂ>ò´¡}7-g3à[Ï›ZôøÜzDü™ù¨1¬0o'§ÇŸ Š +›ì“ð°è‡â<|†Ÿ¿#ÑB5EySêZ;ÎJ9‚çŒ%Ü%U:Ïšâ,à îàˆJƇ}Uºö>çÓ‰„ÎFhjhQbSacöP:‹cX"¹tr‹¢š™¤y;åÌ_Ùçnq>56°3<} Âm2'¦pãe}fÒ˜CŠN ‘’Ø`Øm0ìK¹1 MœA=€ì@v@=¼#èJÜ´û¹Ÿ¨‚N\C®áA"ãœzî±°%šM¢TñóÔ£õ$ d=ãØÖ¥T‘},Kö—Î&TÀY.þ®é$À@üº1DÃ@ïp÷ûÆÿ8–ãl? !è4¤Ç­a«.$ÂÝF¥)6hg¼Áï›fÐÌ®êê@yä¶ÚŠêͨŇ›y jnÁäØF­”Ý<Åi]ŸÑŒà[÷IOœdh4:‹2¡3§X2pŒEü ¹B;sMºNØ[˜‰y:ýꟆ:ò]Øå¾ C¨¥Ÿf´O˜(ù=¹QL¦n(t®£õï²LCD×âpïoÙ_»‘6Öá†.ÒÑD§PW¸·²$¾ àY¨†Ú0…C·˜«!Â!F€ØÏI>ZÊ;Ü.õ쳆8×Z7£cîÉ mInd‘n”‘ÎEh1°8¦™äïèZš^‘\MäOXÓ J##p„`‡ ¡Èö ìS ·ùŽˆˆò!„ÊOF¨¯æNUŠI'©Ósa.ÊY-FvD2§aò4$±À£ý/À>` T +endstream +endobj +72 0 obj +<< +/BaseFont /DQHESN+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 169 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 170 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 302 282 0 0 246 320 218 348 +0 0 0 0 0 0 0 0 0 0 236 0 0 0 0 0 +0 696 0 650 726 0 500 0 0 0 0 0 0 884 744 0 +556 0 660 528 0 688 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 574 312 800 556 490 +528 0 378 396 340 546 508 762 462 518] +>> +endobj +73 0 obj +<< +/BaseFont /GSQWIH+Wingdings-Regular +/DescendantFonts 171 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 172 0 R +/Type /Font +>> +endobj +74 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 557 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 64 0 R +/GS1 65 0 R +>> +/Font << +/C2_0 173 0 R +/T1_0 174 0 R +/T1_1 175 0 R +/T1_2 176 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”SÛnÛ0 }÷WðÑf™ÔÅ’ ÀzA±a]ÖoE1xM¤[ÀÉV¬_?Rv³¸-ôE¦%‘çPç°üØm—óöv “Iyå—öÏúצӣ“cÈŽš µ±žWç,\že¨=<‚ƒs@¸‡ë„dåÙÂb“•ÇæA3çÄæ–¯4²l€?OrÔAä-äµ"í‘"¯MD>zÈ&ˆÑM›ûì´ÉNϙ¿[dEä$'9ž TA[cÁkBÝ]6ÏÊC• í8j¤ <‹!Jd;¨tð‰càfÉí*0•FôVh^çŸTaµ|¥œ¶oA~§ +΄|¡ +£#䊺†¼å+áß• i3EAó?œ¨Â1H¾TIÎFêòAÛqÿ?È>Ÿ·)0©‚×n¸ #(vÓ ?¤rÆú»ð¡„Âäçð] +vù“Š{Dùa¹^qM®Ø®f}p©RÔ' œÿ÷¡ƒ¡t|£ô•ª…üV(s%Aâšuꟃ /Õ“ßô  nšÏ;wû-CŽLhƒÓud½ÙQa÷• â`ªFðCFÒ(°Íh‡üÂS6¢®+¶ìž§¤·wBŽ'c7„Œlzdñµ­Sã}ðø’‡ÕÑ{›j6!k_Y/Yˆ¨ñ›ƒ(b‹ÉœHÆ.ó$±Ë|xvh:ê†2†}V‰¨ÈšZñ#¼OÆÑÌbý<³øº¥€š|/g´uÕwÄ (qÓì&'T,Žü`À‹ +endstream +endobj +75 0 obj +<< +/Filter /FlateDecode +/Length 5347 +>> +stream +H‰¼WÛnÉ}×Wô#0‡3}™K`°åÍÂÁîƱ˜ä! +êjÙ’¨%;Êקn}›!mj‘ ™CÎLwWÕ©sN-^ß?\]¬NÔË—‹?«ÅO«§õãƒzõêÍÛCuðfyP«º2ÖÃÿÎYuy°øñ¨V—›ƒÅ²ùW­µ¼8h«€]啺ªo]«Œ¯¼oᛃ™ÕËO?,~øVý½„¿åO‹?ÞÔêíúà/‹£»Õ-žá§Õí¥šßÎ|£?¾{«†!;ÎâЄ]ÚrPCÛ÷­êL_ ÃÐâ†/뺶¯²=¿±~S×ÙaÕÞWµÜxÕÞí½jSfQá±?cúNßRâ˜×¸“Zžb¦S˯ª1'”.šº«º¦õÅYþ1{¯ç^Íî׺­5û¤çMSµp=ïÔì¾:üú ç}Õ«™z­›¶2jv§çô|úÊá_4?ºÒsë«FÍ®áåï-4^þ  Áµ~~¡ÕáâJæ†nÔ¸ÄW=ð»:Ä'­š­áÉ +Îskü/²Wèà/,nŽç—Ï?ÕñŒž€EÞëžž|­]‹Ç‚M,.±À,Þ§8>hG™8Äáµc )‚×þ ÿ¹üÓ~µ39ä–ˆ+Us‘¬©á5Êú®2mÝŽ +¤tM§ÅO:}Óx<ækÝvxºŽâ\hë°ﵡ³Û=Ä—àûcà[Éee#÷1{=îòQSJÎeÓµ6Wý¢­ Âàë÷šA²¢”J©áñkµnl–Ä®óe6\#]ÌÆ&ÕÛÐÑÓY UïA;Æ¥å’k'ðë©:ÃÈ[üN'¾?Ç¢7„ôV2ajVà]kB୺Р°µfÝ:áÅ¿AJÚðã •R5Nõ*$ù–Îr?@v{ì!j¤† ö3’ù^2ßÑr„Â?ø©ÁËŽMe§G¯ñä=­5zAR6§êž© 9€«'õþè·Ñ†²ø¢‚w¦fâ&ïŽ eó H¸$ê~$j(Ñ0x†Äƒ¦ ×ê^*ayE ðlU„óÓȯÃ0àŽ@9ÄUcj¨ê1ëÂm•Zòû9ºsõÌvÜÀ{¾ÎLX‚”=¼†¼cF%•ÿ¦Cøøo\iÂØ l‰_ïj¥â}8Š'д  ½é©è£j¯ÀOêž[™x&&ñ.l¶ìÕ"4bcdwwø[†:Aðþˆð¹øUµ7;Ñöp‚È“F»àü@žMƒùÄO›¾•¦÷©é‘$ð{ªÿ‘ÀþQr}J8LvðVó.Ùª)ua›QJn„Tbe{¤4¯TDñ èh!zlŽuæʆBKÀX¬À©¨ÐãXÕîǧªsÇtyÇ?ÒOÈ`ºÇ£=NXãu‰Ux»¬Ëˆ…UB8edD™“5‰ÐÉ;×ÐÛg ¥KÊ° .©š¨—Åä` ”ü›“xâÔ‘ìñxDŸÁÅ,´¥â+m‰a#½«“¬ô #fz)¡!Ài#çÍÀò´Ä+•!&$~ðæ×ê îBàY…RÐa +Võ×$qrbŠþ³J¬ŠÚF8:“ä~<Ë™D´ʱV‘Ï÷¯|Wò„µ» ++·¾ÏâîØ£ ˜pêß©98ÕôÚ&‘FãìCÛ-ÎjJ%3 A:VñmyL$Q•ÙO‘ÚR‘Ú\‘â0Ž–É Ëæþ\MÝàÄÓtøê|£Ì°9Ù`Çf’Uûè‹1iGõÍœd,Ѐ™»Á£’ 3‘šERûF¢ŒÆbÂêrDä"8£šª_yrx2ÁY«n(9XDfÿ°‡r:¬Œ…‰¯rΪûKkÉKÉhH–³ÓÆ Õ0×yÛpr,Æ +Ù©àŒ0<½#r€}À%<3A›SïËÒoLá F–b¬³>J£F™‚Ð…¡¹ØÅ8"2£Û ò ‡d EÎt<¸d ½Â KŠ´cnÙK¶(xÓìâÀ±‹Ÿäh£¹yÝ“ +†)õ4if~ZÒ£§¼‚'Úrj"-p+ö.N¼nT†Â?Lky€pH/“cÇ­ì°Å¡$´Éz#¯*#.;Ùdð¬ÞâóE©ä‰­]ÎÖx¸q¤Œ¦7+íéFû»©N3ú¥>sKÅÅáP¿<n4eÔf,,Ø›ZPñZêì;=L§myö‰\&Ê脧A;òNÇZ;âŽJúM]š±3KÅf(Áø‘z1õY“º­M +Ð$w?gƾb¿¸IN43ÎÔ¢£éôz‹Z¨ ®]j‡,¸8QPúY²/)6kŒÛèq£îUž¿[Ž"N /êH1Ó…´ú]ÒÚr’¿))mS +J7ö;ß”àQ÷OA›¥`‹)÷u»Ë¥Mú„ô.¾0+Šð‡LÐbp¬EŠ:Áã³Ð@¦ð%ê‹XýBs –ÑÜ[Á+Ét‡Yå–1SÏô¼|3b»~Çã“ `ņðV%®O"B£Õã÷ÇÉ0ÖÁ¸Ã9 þPužØ-ÎQD¸œyy +æ6?‚O8.ŽàñûLz΀ÿt¨(Bý” +Ô±šgœ˜`Þ3Ÿ‡y£`} ©@°à%„°?ú ~Øήë3ãqÊyÄ‚52T¶L²eô‘H”' •r|§ę̈&ú΃ˆ™R‚£2Û¤žf?"_¨ˆ;aŸLjB¢3›SÌ(=#­f÷»ýl(0Ó‡û"É™žõ5ÉViâËë.&–ìP²±>jÊÈÂoí—vB4fLîs„¹¢ ìŸa+ãFÔ´}‰ ¦ò¨šz&ÔºiøèYu¦¸E¬s»å:L 32tX† Ü *¡%³ ¥.–-¶œÌC­|úq¶Ža@hwÔòQˆ8Ääc,iÁ¦;4Q¾\‘e¸¨#V0Ü’sú<ƒ—BŽî\[‡ˆÜ»È`³J +¾t;Iø:³gX4»- 9Ò™°¦UÕ5k¨4ïW2–‚ˆç÷"kIPtqŠ)‡Z™{zÞ³_1Tƒë趑ÔPº½Ø”„þ§d¬ï)å 9„û–]øO³‘¯"ò†J¦=—‘0rÌ©du’¡‰³NÚ´[ÂI?÷QS +Mow`F™äѦòüÝf)0=RÅ×ØHúX]·i« ѱêº*HZ]GK`<`ÇòTKV÷:Ò-¥2ºB®Áõ7tÇþM²I7ŠPÌ@§À·¥ë q6å}Áˆ–ç™|æZ¡¿ë0}‰)÷Œùþ<ã ÐdO*‘Ï´·¸VAõ4½C” jº?V;RFÓ»•nðüjJ-¹O£ y¯Q$®Ï<ÂÔZ{‚žaC½Fº˜Ò¢v¤ÇZ;Ãü±%lѺÍØ#¦i.’IüûØ”xîkïMnïY¢çÝgÆøÿüDêxÝáã'ÚMǵÔh^¨b %:3#íÏl\*ÐÒÞ5t»»Éׂ…*çõ›)½ü´ßÒ¾dö¶ßÞ¬v°™Œ^s\éÈ]ÉÅ“i°œÑYšÙ: ùV,±JÈæK&|GýòT8œ$1Z“H4–J1Ä©&™wèh¸øTfõ]€ŽW$±KX„îï2…|}Ö6„µ±Æ}Îäfâk'bo$ºxf´#{µ0XÌg³-Ðcj³=ÝyËÜI…²ÉL!-‹€é0Ö¾¤¾ÑÛg†ÈùÀN«,¥ mK´»Ø*`Nøy/·Þ¸m +¿çWðѲŽDJ”Ô‚4)úP hüæ…íøÒÖ ¯‹ÄýõÉ¡¤]S‰‘<‹õŠ"‡gÎ|'¡/À(o ÜËH¬S¶Ü †ãlFÍÆþ‚÷}–|ú¸>ÃïÍ,Uì&>¤hÈžz„jÊeÒø—ÖÈ +ÿöfX6élP„“·’¾°gû¹÷o+nÆCóz˜ËD´å5x~ÍϪºÔe<@KPÚ̘=³N&]W†D´¯›p>­2ˆ¦PCÎsÊygÐy'¨+Ú6$Á*´ì÷§j3µ€­¸þo[g½øå}m®¶Ï^¼±ÂU›ãËg#ÝúhF8b7xã’걧KU×µ;*“«Õ›ÃªQJùªC[¼j“ŸjþÁƒ4tãã†Ïã×î 3ýv„e¸–&Õ}C#¬Í4L×·lÂcT®|áU ǧà%\2M*Ò*¨‘µƒj'ʘTó—ÕÊÞª#Jîd¸<ýƒ‰]$èó¦¥ó_¦‰Â^|1‡Á¡ ú!WÊÖøçéxÀ 4ª›éW˜ œvó¬Jgq7K_á¡Îæ“p‡Rl8Œ½³vBë[¼‘ž}7sÅ °4\(˜$þºPIðm©g qÔ›ˆe¦ñªëÉLÃ.&ãÂS›yKš:èGæµLÊÄ÷1ÌíªFÌs`˼©è­¿ÃâuÕ‘|>Ts}܇/"©©&¢(%â‘Ú]©¸×YÉÊ/Ûí˜é¢Áã½²„§E•£*½\±ñv¥wÓb°ÖëóûOoŽ/¾Þ¿z÷öþûùèèÈÐRS'¶#X€(<91nmÛw…¾ —]×ÝŽ[Л9A‘ºA’Ôt¤j¿$ÈÔfŽüziÔîÉ®‰È™Áh;EM"$«vq²‰)gp! 2Q?7*õ«<,e —„±CÇn¦£åNŽDã8—…¨æÈRÈ +Ñy¨ìÈbm¬ÎŠÑÄ@ªCÚþeàQ8;‘aû»¢”ÌV°ðqyHÑa,o±Ë¸I0¨¢«.jõ~áË«J¦·­圗åíãW¶yÃ7õ|°3šYßC}9ÛÔý®R{99x_±…DÇaövž‡¦7DtgâŸÎÂwxyB) CY²–ý®ëîJ¯[–W¢lf¢Äaž»GžØÄ âœÍr {È2aAW%++õ°{˜µãÐ;ÚLà¥òÓ_RVß(j¾ªèÔ Wßt™ñª•Ù +ûE(&¶Ž>…©j ö!×+Y™…šOÙq[±$Ù€;Ñ&[/CŹ$1mÑ ¢JKYd0©Î™áa´ó83Å<^Ø©,vkîÄÜX­]@ëNG à~ó‰.bæHc(< ôd›ÃyâÙâ†&š–±:3襃Ú<‘e}¼L÷–'¬Ú½ã6­¬YžÊí!q÷}°Ö#æÃǦêèá§ÂÀÕ•' –,5VÏ[üˇ +×ðÈ TÜ ¶Äû”zʽ¯uy ìwjkUNXâº@uþ1ªk‘êP-NÏ(áT\‡kœ¡|ØnŦ/Ä +ÿ'7¨“æ². ‚±zIØ´ï9Ú±c• ^Ì£\Þ4­Ö?½·œ‘Ûêö×˨Åþ¬hÞ†!…ѤÆRÝ—ÖU»IIa!ˆ–ë°-”Ê™¢LªnR„sc{n¢]¤Â¿íS^iGÜð ÀZ+ùƒš6ab1²ˆï*jàè0Ÿ$ò$©5O 45sG~"@BP–#¯ÝP£'€øÖŽ@B Ž¶C=j3'o5€4ŽJ‚¼“i‘U{”[^bxr‚5ô^Èê±XŒ©çÒ7Ž ˆ‹Pî3æÖ½ÙŠüÿLƒ—ÛŽÑÊ‹=ɶ¢îpäã4ô|z§rÄsÞ5Y­Ø4žë“ŽœHtLBÞ®°ˆ¾Ä"jÄ `XÔt ¬ã"ð:êø/¸1"Gý`øjóœqJæ8î¹VF©öq,×p²¾…‡Р|x +ŠŸ¢…õfNþ@i¬ê9FÙf!¡ôövoü_z˜éöñNæþúŸu3\õ’Ùµ3Ù-†ÛL¥…ÄôË°su”IÂãµC¯WÖáƒóØG>b9m: Zg£¸5bê¤r)#–ʼ« U+£Q»,[Öðø¹Ùð‡eöMŽªb¨Nâm'ª@ì@k—d#žÿ|`hÃôÝ6TÒmÕQ¦)7†Î®4†ÏM¥ý&‹èzIJïò+ºÐß;.Hí%snSì:§E(ó‹ »Ãn÷vF{©ñfeßâK T°ý`‡Œœ>æÔ—½m;ÏqRKJˆƒœ^ŠW}>ƒ>[‘Ã÷È×jÓS€Œ¸I»5‘Œñ¡!­Þô|:‘übƒªk(ñpñ®äeßYEF¨bÑ1ö^È–¥cG…˜pGíôùcùKýõghÎ'@¸®/÷gÀ½ÅS{99ø.Ùã½'c…v'w Ac¢íMl1(y’î©°ýmkf!e3q[œ•Z:Œrn·ìÜ8׿շÇeßÄ·í^ßÄ·ý~ß–´¶¥Ò5‚´ÑZ°ÿÒž¨â_ð´=6郹‹»¦^,ð¡Ù”V ›Kƒ˜-ùJÀüÆbeÐྲྀ¾±6ÝØÂéCr•Ù@eŒÀ&\ Ùú—2atFɦïoªÅà’Qqc@r‘WØüÁtÓ{³›ú_€¶Ù{t +endstream +endobj +76 0 obj +<< +/Filter /FlateDecode +/Length 6123 +>> +stream +H‰¼WÛnã8}ÏWðÑbE$%JÚièûΠ‹í6fÒ‹…ã8éKn'›É~ýÖ…¤Š’íÈ™ g0ãX¦ÈbÕ©sN¼¼¹ýv:_ܪ/þ¡>Ì®înÕáá«7¯ÕÞ«Ù^¡ŠÜØ +þ_–VÝœí¼ÿ\¨³ÕÞÁLÿ»PZÍN÷\^Ãø·Î+¥µÍmS5ÊTyU9Xp±7)³Ù÷½·³½·a×ÿÀ¦gðßìÃÁ»‹B½¹ÚûçÞÁçëù%Æða~y¦&ËËéûWÙÁÇ׿¾QÚi< +ýhdæã(r­šÝC ¼J+m]^8«jÓämÛ:Œæhò:Ójò{6µjòI]gºÊK5¹ÉÊܨÉUÖäðëY6ÕôÇM¦uîÔd,>¸È¦¦È-þ¿Ôl6­ðs¥p¦—–ê–ÁkðQâöá˜oð©&‹lZä ïJoœÃ~«Ô*s¸é× Nuvë >¸…Z\z¥D ;ɦ-TŽ‚£á;xÇრx§Ä——™Á»Þð¡xƒ+.)ºõ ¶2¸;<(0>¸á8ÞºÆ-NðÓâŽVï«ã¬ÅyÑm’‘K¼J…Wq|ì_³ß"*¶"@'H+ðVë2¯c‰}>ẦšÁý(ûÆaØ1SJÄ %“b+ †»¯æjÁH¸‚_p‹cÈ2mÃUŸãŽwDX8*pã·Âç—ê ++Ù8åzýmüµÍ¨F|mB#¶””ViˆD•V®5yÑV”“EQØCч[¶âè¸mHuoÛ¦½m9²•‡,Ï<šü‘9#€ E0˜âkȹîRÀR¬<ÀéÀ¤ÅŠÏ©“Ú¤¡ äk̯·¸àÛ£%†-è`ÑGšŠ~†- +[-û¤q‰ ­’q ¿ŒGGµ#:h3Øëåâön~>[þyûâÝÛwøÏ›ÃÃCE[ K]×y3(5ƶžÜÓ /"8š|˜g5æë8³DŠ†é­Ä¤ß ÷L‘Ú¤QC†CËûÄ#8àÁ +®öE…õÿÍ,þr;W¸#d¬¥TCjÅŠ;D&`Ë!è"…”ª …Ýz`˜€Qÿ`8HÊ3£y:0DG çM›&¦T5RØ1üŒùv‰—$€ ‡€X!eÀ?`Í;x­Ž´ñJñej4n&e#ŠTXX{æIªîTø{†úžúŽG!ÉãÈmÁѲÛþ •ÀHõX—¸H"‚£É¯ä–´/ÊöÐ ÂV×6"Ë÷ü]ƪ³ÀuŽ'¾`¢rd†¢1á’ö,(«Yd¢G¹a|MkýSjjŸ¡¦æé5ᯙØË­S|Êè%7‘Tü +Ÿ£‡Ü“Ñ:oˆ™/„üÀ„¾‹À°­¯™y@OÕUö% þm©:´kÓ®Jä:~þ«yfÀØŸˆoè(wÌ_ð—"‚£É[öþ'™¥|‰–öc›!iØ**µ¼ŠŸŒ"gDËCÂ"x֯á ¨ùXv’Þ(‰!Á:HG˜\„jÿàfÿóCããWÒÕnµþ9Dú j=Ö B²‹²íÍ C"–£ÉG$r]N[Îx,öm+¦™hE"•hÒü5 ¸æWWYÉ&ÀÚ„ MŒò¨„ 7A«ŒÎ»C ´‘|<éHLúfˆ÷UçiøsžÄ‚† ,`gÓ#¿sܲñÜj¼rV},oŽ¼6Ì÷ ²þ&¹’oNµ7oHðÔØ©;º3Þøc¨ÒëUlÌÃl‹Ñr.m»cCìjÌ „Ù“º¢jÍs¸óz¬;Ç®€´ÏÊÿ±®=dP¨ÉS˱¾@†ŠþmA‚ +pPK")ƒåâë.+< kϯP,®‰­ÂfŒwê.a„!^,ýty2¾^»úß‚ðô¢ÕÍs8áf¬†¹³ØT*ÊÑä}GaÜ[\•0ê*ျ¹Çw§—³2‘E7 +Ê^›­m²Mß÷@ß…# dÓâ÷•Jf,Z@œÃ|—lÁr·v [¢6š 6`ÌléiŠ7%w,½|rP +Ö½é²ìÕ€¿®07Ž>I§xÛ2½Âó$š1úÓ+Ux¥ƒÛ M:8$¨©Ð:h@‹„ Ä9°Òæ#“˜ úZ¹R˜ú3Ì­OCÅi°ž°ƒ»O]ðJÝ è+k¦5#‚MGÝæí£á ²¼8­¢“#"Î:­ÛÒR™£ö!bKËbXþˆø¶%À}1Æd k¼Bû_åR± õÞ}˜'cpÜzý-ã¬@H¥õŽ©òÎp4†ì ‰"ï€!éü× §*„»?…²Ôy2|U’?€æ».[rÏ=OC_¤ñ;­þ3›Ö¸úNxªe9£‘@ÓëgÕX¥ƒ™ZòñW̽{#BÐ2v9¥$"¶YÌ̘ìR}™x3óù=b~z…,Éø#|ÿ’uÔ±ds)Y§yœ En:Ž£%X-§¨ l_—¬ÎÇ#.™AWv³l«=>þˆ¬™Øâù·ƒç^ÑFÑ· P땤ä +XYAa¡/‚v^%¨%¿÷UU]¢Þ:‘ÊÆKö`‹¹ ™å«VëÔ±cqOÓ “¼Î4 +}B´6ú›rlÀTåÕTÛÁ‘á6sQçÈPQZ]3,¶;JŽ£ñ™Œ¹¶M/’ +2X® Tƒàk¬²&{‚ÆÙ‘Å¡ÇPíö·É^o¶F·*Ò‹`SzLãàÆ6Ç-[<öx©xÀ”MÄsŠÆž9ÔIôGrUƒVSçñ˜8»zBŽ Ûñ\GP.r2mÐ<’¢$I&ÁQ±zB9%îá]Çã"¼ò¢4Z¶MÞFₘÆÞyJøÃxhÆ XëÈÁ@ —J¼öˆŸ¥4ݽGJÑ®{Jg +ïÌlàbôc¢ˆ®~¶ÄSÐg¬•ƒ†´UÀ=„Ý¢Ü&DWX[8èô\ß +ƒ6òtŸû<‹Â­Öt-ÚÓzh„† wØ1Áh?Á¬%à׎ Ã²ˆ`#kêRkšØÈ™%JÒóÀé®H6>Œ/Øo>ÁçQš’)ŠÐöÊu¶:΀òñ—o‹”…‘f×¹„²†´Æû¿„b0ü—D@u~òƒÝù 3LV0¿x8#<4¯:¦‘*ožÐ/[9™zÂö`ól†¹¿-•R;Ú¤¼ä#º <‚¼ÑtÍ"mÅô z–_]PÚK|uJ8”œäý‡Ö¬ò0'ßr3*º7«Õ¦f©œ°”]§ žrÝ9ÕL¬¯r’ºÃ@TøcßG1Ñð*eì +õw…LŽ$)¼Ñ)$ÔJÍÈšwšÓÌ} ÂàÐ WÊu$V_È¥c‹—€xÍ]uêá*×IP%Ѽ~r +Dbh&zD#xÒ!Oãß™ãÁczà)7a§4ÂíIµ’˜¯û˜wóBB»yTv5&Vêžd³‡ ¯¯ªNª:½€Š͇y â¬×vÁqa´ÃS˜ ¸ßM[ð9ROM¦ I ]êÚ<Ú ÙÇü žG©ñ[ø+İغt]б±¡;ßQ´XìE^Nì_J5+Oߛ̜Æ;Ú†}y•¸“øXi€›dìù,â‹:úÖxÊÊG¶Ê¤{uƒz"ïÚËhÎýGŠ²óCC øz”²«SoÉð¶_ªMA% `†ÜÅf”‰Í0ƦUµxs´PÝÎf}Îè2×,¬bäl9¥PæÁÅ°q×—í嘼‰j¶Ëë©·/q{Õ³@`ŽNYµ¹ *tùºrI¾&Ólö}ÜÖ®gúzBnÚ:o°ÇlÛ +×÷Ç&½Z•zµªój ™‘Ÿ…¯4\g-÷dl‹ë# î2ôñqvOn3×èJÕ#*%S¹C¥š´oœÙT©¦–+²˜WÀÒûŠ–Yrî½áßQjAÝÑ"QuŽÉS¢£¯ûþ펅“®× +jÁ¬žAýû]o©Ç<úO“øÈàhâµGpËØPdxtM‘ÎW¦*7°ÖÂ÷ )/ˆˆwÞ½o²Š‚Í"!u¯¶S/´Ù5O:’~ÃÌš0¶Ó]Åt§yÖ3~ÖãþÔ:0êîp»ØSè4·…Ý”[˜G:«ðÒ«¥7n# ßý+x Ìn’Ý$rJ¼€‘XØFrY`¡‘FJ¬W0’VÑ¿ßzuwu“œáD5Cö£ê«ï‘œüAev¢ÌE™ Õ`¿¦7’>S6™„‰M«£°>^1Q+C +#~}¿­MŽ‹èLE¸x²"L­ßú²Û\=üRÕÁÉ'-¬)éLåYî“ŽÞÂq6XQ©ut&ˆ¹ÛJç @l|fÜð=ÐÎ^"áßÑ¢>ù«¼ãrÌJ=~+-bäUŒÑV1zN“nÈ4qWw£-´Ü-µÒO¯† ÈÞC0 ¬©y(M|tŠäºs׌œÿ’Ę¶Î¢õ-O¬è½ªLí³Ù¶>:ñ\ì:`O²<¸« œ[WÓš¥[…÷`µ7,´i´K³¢/Kb½Îñ[AŽXš€µ¸+¨‹v :ï˜xJB¨;b–P¼&;õÉ”¶¾Ô™å=_æó¦QZ9¡”ªô¡ûµÊóÝÅò¢_÷©VQ%/BjŠD£¹'eF7u@Q7#OP˜C8å2SÄ#E*–óà 4žðšvv6Ãô®®¼[ã€TÙOp@¾ ¨%dÁ`%•ÞÁõrSé“¡Œ ]ËW(Œ&eÈœÑgq3nL¶§Ö—rÊüü”µ„‚Ùyõ¼ïè÷–ÑpX×7² Ã’Xð›I#æF¼/›²Ž8F”Alåß°èâKðî˜<þ"´s.3TdÆñ*¡G[gm£ÆM¾œP×ñ°×4ÐÇ–êÚ{%³azƒ}Ÿuôöˆ“ÌXAh#2Z}1J„¯m=¢àq® ô”À›8á3Kß}VdÄÚd¸T7?pûóêÄ8.óP%éK;Îí.-ø™Û~(¶÷s–CáÙg!ÃÒƒ +ÆÔªãF_4˜z ß½@¦YÁ°<ëÖä9¨ñ‹ØìZåPÖÃa"-Þoµ˜ _3qíd\wŒó»CÖvJr̤oÕ6¼®f;s~ÁSÍGÇ{üþ 6¡‰<;DK½+è' eO{ÃOVËÜ(H´{àÁé T”d=G™<˜5nvTþi‘û§• –ÊauíJˆ‘89“Äy ÎïîæAÐ^"ï Yò÷¹7ç;Þ&‡8°‰Äúp.Ô${õŽ…þ_(‘Ýü9%C]ŸÐã<î5[ê1ÚÕ8ëë/ @``¿rm‰©ƒ \‰¬rrÑÍ[Â>ñQ¼Nd-&ž–.ÿŠ¿êX«ÅÖÔíÀ¬ á+I`éRÙp—Ÿ£ÍΑ§‰1™Ñ–ÕÈèÖŒBÅ £s¦/P!¹Êˆ†è†yF`Ú šªé8±zCAuMüØvؖȤIhZ"Û9‡n™Œ©ÀûCüx%{ +‹ÑâoÕ]Ä#õåoà™Å(í…Hàf#ÁPÍF«#Á7<ÎTYê?¯E$ÔÂýñ tÂôȦÏÔ¦”E„]ŸÇÉ)G” AÚ¾’.~0ñó°1ƒS¦9R»»C¦OyNÐNhi¿k¸óAÕã +ÉÐͦÅ‹yTLTÞˆåR4–£2”svòý4¹M#g`ÑC¸S›Š 3g% õs93R\+^굞â5zÑj…MEòNªöŒ›[1¿Ìz ^ޢ ̄³¡î] S¼`Aú¥‚hˆ‘*xì¬"½*oX[è û»t°¾CáúÊ!kYAÓÊôý\[Ï´1™‘‘6b[U’ÉŒüY7LÈBŒ]T³H_äÓ˜|’ÈÄ æ+SE6ƒŒ^‡+²6‡LÇRÌœx¶c)ïSMÍý߀Ï/U’^ùi´Öœ”¬Ë|<ÀW²°^É#%3³O#jÈH$c³/cŽ—Ñ,M ¤ÅqJÊ< +iœSÔ!Y!ônëûÅ} ”y(½}ÊžF%¬„f “Ð[éÝ]ä¹à(’c ½"«©ŒISI¯Ãa¼ѵ /Z}|ø|ˆ-fÎ}ËAG³á1…¨1)1²þO}ÿŠùªL·…o>W¦vðéªÈZÿ®».³.Å„²‘X ä@À f&3øϺó!¦qúT¦Ái¿b‡L9!,Adà£_àMš–òâ.S¨v’Q‹_$¬.P?-ÕÓRÔ™s¤M—ªU’)ç0"üTí¥Î0™SŸW·ZªÄÇù‰ÉáÐ#&´gÄÏ$Ù‘ÃÎ$ãcfcÍÅƳ„.Z§õx29žÃ…ÁD,¾ä%gÉqùœø~r´)Ú"#Bª~¬zX;¯ék;-Rz‚³V_wLÕšõ²9†l»„¡Æ(+û¤5Âí²Us9sÁç¥Ú£ '1¼©çLIWÆaòª^ë¶ç€–;ú°ÃÜÜp¨$#‘ H ¤¹·Þ_:ªÏš©jO+ýǺ®=ÑN•;ÀÕ¯jÚ,r1Z‡C2–1wLa¶CmŽ¡†ts>Œ ^yéSä}œËHGøEšñãônÖHÓÛ¡G¨òCÝ’Ï¡¹—Á-i.øV‹^‘mÃÓ ÄñIbÑÉÂä7ø‰›Kø§o£>„iÈ›8 #†]YŽCÀÙ€cºa<-!ÏiåkÝbšpI°i^_›#]œÌ'<;}v*× wòÜHÝ[Ô€£jÒÓøÁk`ýPÕß¾¯[¹/t‰ý¼UŽ>´/÷Bˆʅ…{ñâ^#aȬ×rp‡Â¡jÎÀöÔª¦¶ÔÊ !¸D.Ý1q1âŽÌŒS¯Õ<^ËÐ.g +¸)5JÔ(Ú®I&óxdÚŒ©7ÌœÃ^žšv}Î +V³øýÿgêŽv‹†¨î;ÖÓ#ýôS’Ë +I¬íáß®k«ý͇Ÿ¿6ÕÍÓ‡ßÌTÕ·ëñk—þ‡P‡'Ü9Hç5¶jÇö¼qndÜý&!ö÷˜ÏZF}¤o{¬$B xêËÎ0"Äí±ÎÊ cdá—/—R«•4¤X…ÿ¼çɦ®ô,)cJ&$’°ðôc8˃‘~ÏM½ñØ€õËÁ¯'4Å«¦`Á.øbµaÊûXí§Ú3ñ©ò†ÇíYœq€ÕC=r*°&BùÃOò¿~yy¾yÕ‘Ͼ5<¼#=åøÌø {ohØlÈëVzÉ-þŽïYz—»$§Ë^ŒÙæ„t@Èx~qdKl{e¶eWb‡Ï@(Ñ;: iÙê> 9_fÕ·vñc^~€ÆA +W‹³MžíooÕ4Å[S)žHîÿB!Z±2 Pr÷¨®Ô/½¸t<]Ä[,1‚ˆž kÏÓxz”Ä ,Kp²^–g³pQ3­=W¡ÿÒú»Fü17”†&èï]ü}‡›t¨òì“vxH“7²ËÙ26tØõ£Õ6EÕa֘ˬ]/ˆi¼ö$ä+Ðó‘W‘[°ˆ<n­ª‹Ü +Œ¹üü3R¾îÿć ƒï+ÜÀ‰1éEe»Nf:¼:ʨô¢_ô;¿9»=ÿŽþ bv&[ÒN—–’üðJ_8*¹é˜®Y;÷ê¸Ö +7{)D/Ÿ óŸnKK8ÖoÃ¥#Dà)܉ý4E?'ÚC\ö6Mãt‰ ë‰¦LßDˆ/µ°Š 4ʽàÊ=×B¦…dÈ]¯åï¸:J…EÅð¤W¼öCí%Gò’›–åM^~ÂvyÙ›ºI}+ùe´MúùˆŸLƒÄ‚;~z.Ùó¬ÄKV«»zäñÁ¯8ž†‡nNÕ®Öª†ÌM“5M¯5I”N)&€¼38ñ°%oDØ"y‹·¹ çõ!‡‰Õs<~ý¢Ú4jz÷­ætûR8‘ó¹Kÿ_€,hÅ +endstream +endobj +77 0 obj +<< +/BaseFont /KGRPMZ+MyriadPro-Light +/Encoding 177 0 R +/FirstChar 29 +/FontDescriptor 178 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 179 0 R +/Type /Font +/Widths [763 484 542 219 0 0 0 0 0 0 0 265 265 391 0 174 +298 174 351 0 488 488 0 0 0 488 0 0 0 174 0 0 +0 0 0 0 585 505 570 647 466 462 624 630 211 0 0 448 +778 638 671 502 0 505 464 465 626 509 820 0 503 0 0 0 +0 0 0 0 454 552 446 544 485 262 544 536 209 214 423 212 +819 536 532 552 542 295 373 309 531 452 722 429 440 403 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 174 174 0 0 0 500] +>> +endobj +78 0 obj +<< +/Filter /FlateDecode +/Length 5526 +>> +stream +H‰¬WioÉý®_ÑÕ€8œ>æÊ.ð±1؉c1þ’ ”-QŽ-Q!i;ú÷©kú˜C¦¼Áb=ÔLOOuÕ«÷^-Ÿì¯Öïê矗SËWëûí—ƒú嗧ϟ©“§«“R•…uüë½S»ÍÉòÅy©6û“åÊü^*£VW'uÑÀø¯)*廦hk_+[UU›“ÓJ¯þ}òëêä××°ë`Ó ü¿zµüóM©žoOþ~²<¿[ßb ¯Ö·uzy»xñT/_?{ù\Yçòx~öb8•Ä±(‹ÒïoÊ”EÛñJ£Úª(]çUcÛ¢ëº#úç©Ñµ+¼‚«ïŠFÚàŸV­õ´pÓ[màßj¼Ò¼6Úø¦°êôLmµ/¼¡®µqE­N·ÚÀƒ/°U‰+ö®ðÊG½°÷ºÅ°nÃ_=SxRâWwÚ¼&a,L…?öü‘;¸úE±ƒÇ$ò:F¾‡Mñï5Å/]éÿ¾Tw§Ç=Æw¡!7ðü3}Ë` ¸Ã{¾ij\·†ÛE øö¥^TÃ^»ÿ”%Ϥ>Tã“WQFW¯g£çe˜ÙÉQ +½¶ ï´»äÓÀ)(ÛkmiånW­ÅÇô¿V h|y>CËô¨ªJH¿³.ƒÕ©JþàÖU²uÜ5`Îܬt‡IÙâ û3ÀáÖ +â± ‹n/8òF}…4LT´¥MàŠ)‚»m¬ ½`¸°o;Be,°À€2wk^,•lã—záÚ^º‡Ršmt,K‚ ç'õžnÁêkøÑüÙ´ÄÓ/:|ºKÂw¸êl +6‡¾-®ý¢Ùƒc~•Ó˜ø+ý‘YWú /[±µ¢ëð˜[Í1_©°ßŽßÀ…âÛcP°¤PÇc°N1XX¨^†CS6EcêJ5%”¼ë*†Ì3 Ÿ§pº·Øí„’Ww«©Ù7”#”#¥qxã†ÈÈá&™€•¥ª¡Å +áY!<÷šòü¥§*('©æYj¯¦ì`‡ +˜‰Juq _i°xÎPÌŽ+R2â‡d;…ßNµo16Äg¡k +å7-±ìr¼ïzŽÄc±| <ƒ¬Æi ¡1FZÄÈñhŽ!¡¤ø ¡6Öq]¾}ÏFu ç lt% +•*PvhJßš¸e´‘jÞ@¹”“#‘ОØq ð +hkuú)­.kyŠœ„~9ÔÊáÚ=>2ÂÂ$æü±—ÔìÏqGWG-ø–b„çr +«]®ž°¸”-¶Üu·g— ýW9¡Æ&@è­ðµ”+)VQì&UêŒbÒJ©a›…¿ÆÔ4R9xðF»ªHµ‡MSwä¹(Æcè+‘'.`äš7Ú{–ØIf–!Žñ–ᵶ¤±¡«.Õ¼êöìÑÒQrÄ°¡pµ3Z ‹ï!ºšÍRBÉC1+~J 8ã{MÛaªëç¾éŽš/3ª*a™ÆYÕ$&?&rWeÚÐó@/"â%O*©=¿±Ë¬R͹!xŽ9HNÈÍ(Í–T¸'·àN¢Ål«+îŒì|ôF˜¹&˜[®JÉ¢ÊÉ,“É rµÒIø òøL»èM/¼™SzØj&x¯m'³ Ã…Ù öTlÇé#v‡ÓKšZv¯ÇƒËÌKl–w‰#ÿ&ŒÒ‹Û¶§|(ê¡K^ ˶<Š…ãRI‰®§rOÖ Ã*:¢ÐÞÑšà÷s¼Ï ïT§¦:àIEøÌ9\&_Å…—«áT1”þMiµLióõ¾á³<ôÐë#Ku\4š²;bÀ±o?ˆ{›3ÐP邯Ä3F<Ð"EY”F!¶V”ó*ÚÏ!ýh)iP-,fàB“dÁŸ ONmÖA=áÒؤC Ûš+óJКÁìãR]Œ¬bû­¡]½ÓN½@Ý+W6EŽ¹²ÇT°'ÙCé%‚ªËÝQï,z£àŠpAdÉ7@‡™¡8S´Ò[Vø[µb¡ œ +æJáüäYÎAäÒáQ}…/²á à?Áy§!lLtW"چŮÃ}¯‡¾!z`•U¤ÉÊ0;  jž¸‡*¼VSAÐB¶a¾[ ¶'übhÞYòœÐ?ÊšÆÚ%Ø«P±À@GhüÑòó2件(ëÎf‚YõÈIÏWù¤WúxÂ@mú{>,%¥M[-Â,jo¬¥èhì‘}ê ¨ÛÎÔìD”Ñøü#£ `h¿5mx„*Œ'“„©¹Š‰Áª§´(>ĬF©°é!)T ÕDÎí÷6…„vCë7=°~×Ü`ˆÅÙ¤{uqù@'ôˆÇΪ«7´ÄÇã¸Î¹°k§ÁVµuâÕÿXH;jZn¿3…¤¹i1—æ)³ß»« n¦+,¤ù +‘X‹ÐÏoú"Îû²î& íЮ„vï˜DƒØoÕS~KÅÆsµ)_5Üóíü)ŽQ“€ŽPÚ56ñå˜P¯jºblÎ3Ñ1¬¿!órôä8aõQ¼áÝ%À£1¯1Óù ¦3Y:U¸qs‘¤˜Û[—•BÁc/’Oo~76§I„Iô½Å ïM1)Kɱ]*…©÷æF«¸ù2‘X‰!Ž¬cg)©7ÔSŸX\:<Ù.áÒ.9aháˆÔ£aÕ¡±)¦¡±]N{m7ƒØªÅù@;Ù*¤¶æB\h*ÐÊ”¡Lª2’I ÈtŸóqÄ>Ûd~è0 ûˆÈ6ošÑ—ZFÚÄÈë~pä]ËŽÄÅÛ&<ߦ £Sþ¤hs‹à‹«û¡Ð ؤ‰žŸwê,4S$£neqÄ:¡U9°jsÄç=Á†a”¤²ïÖq±øL†rÎ2"¯¾ËG&%RΡëZ©>5駴ĉó<FSqÐ"&ŠHà0AªN{^Ñ«[T¶2Ï]jr6A @_¦‘Ú{/uëð‹Jº‘¤ÛMz|ë`2Ê_½WòcVÀá&ÕÓ’õÞtÂR$m;Æ:¡äVœ+ø}‚ÄÂñûÎ÷ùe“³0”pi4Ÿ½c:‹÷áî^0ir4ÏÂWŒ—‚4â­YÈMX÷º¥ +ÇçÃfô_ÖUð¯÷Ní6'Ëç¥ÚìÙnT’(ü‰ª9QuH”o!ÆÊYN”GÜ; e/œªÚËèâ¨Â¡Ä¶ÚöVHZpƒ¯`*a˜ZÐq!§àÜýp-·•¥—>Þiº‚Â2‘Yю΄Ë3‡SŸ0SPÊé7 _Cæ Dxú—tó96Ç«+¹®%Öç©êiµãUDŽFWä¶Ë`iĉòŸ+nÓÐí|÷˜h¸ýWùû‰¶Ä¾˜ƒCÐÇqÃ7ÇCε¼}Ðd¿·øg#ñ;Žw{+Ç™há{Ñ &Z)&¨Š?'3aÅØð²"ÆßÛ£HìƒÄoy\ké#ŸGÉQ%QÀƒ:u_ˆ¹23R½…K¼Cpr83=‚zü¼Ó +(ªbEAÙwœûÄöNœHtÔˆ_«FY¬&¥±ÎçÕ•û†î*@0Ä‚-Á^ÑËÝ ¼|ðŠ*D¨N@Â$™uɨ;C1ÉÖÈ,µÏ·1¼âˆH.ÕÿFkœöº¤·ú…–øü^˜„¶@è„’wØXMGÿÓñ`©°,Wæwl´ºB]:¤¢…ü¡FŽlÄQ ú^·g..tC97þQï´'Æ€üq¾k¬‚c³ÍãØ¡G{%²m(¯÷ÇÇ_gñ¯J ŸXtû®ƒùÑ5žc~£´h2ÌÙáä™ ±}õL-&=ñ.ÕØ»$–+)[jšh7? +qÍN¤!'òÇ[ú‡Š©iH4—ê+&¥‰†ž;]—M dt²!äŽíAW?Ò4Ó0$ôõÎI ù Ýÿh¯’Ý8n ú+}Ii²÷c $€ ŒÈA@—‘=’åH^fdÎׇµUd75=rrÒ¨§‡KÕ«·´^Ï&AG~Ûèüt>†—¾{Ü2õÀèÙ†Þºù—€ÛU7GBÖô\¾þqC6ã‘x÷á½AöTÎbݨúª»[0X0ù×°:¬¾y$¢;ðã€?¯{[½÷5nh8´ä +Ï! 2"!êÙ!C{m,)'âݦ޽Ãá­ˆæ"Jhë´Cg~¤´RÝ#àÔX¬Ð.ŸÀíÀY³ågõ­!«xðJ@ÒôX¶$g|Ç0<­Ãc½ÑÃSg¸0ªÖÈ$n]H©…0S}ʼné“Ú±®T:ªðT Ô kYrÈ ÍBØjMeÐN£ÇÐ伜œ™WïV-Ý×zi¼±€FÏÞárÖyyk“T‡&i)΄R].Êa‰O¡¶ÊTýŒQ—I¦¢×1±e0t,Rµ"Ò¦……7ÕKùÊÿn擪K\Øæl"ð¹£* ä‚1› /6øÌFÎÎÞñp‡êêÄ W½„óO./üˆÀ)®L%C¶Bò×ødðDÚ—â>_Ør(™ ŸJ‘X ªkƒöƒd±(3Q +ÖûWOa"L„®€¢ÚËRä´ŸMO)ò’b1Íau0”b†ž“ÒÄZ5\}ä9ôjN•–~ò …¿MM,o“‰;ÚÁ%€ö\_ÿ÷Êyª¢ºÔ3]7ø·8tq—gx!1!Ñ =ÓÓHߺBUh” +fz!Šê½Rhú)¯yfI;EÆc€!ÆWÓt¬Ö 1ßßz"Â9ÝȺÁ›‚¤Gó´yS–Dj[€^Ó¨$rÉŸ™5ƒ…;ó‡…û·Q¢öÊ7ˆ×oÕNç¸>t@`²Û.ù½g†!±@|ž]†—*™­§éÆÄX}SFhÏ€8„žp¼‚ÒfÍÉËÆg‚mϦóLÔƒö¥öc®òÿƒ‚õU@X¯ ƒMΖÔ“‚dŠ²f”ê¤Ff#Fì{5£º:1]¢¯a[·­^€O)mú=‘Ùü^—<¾-Øð¦ÃZÓ7ðº­âù_™n¤‘XŒ—‰C=P‹¨eŒûêOÓ»Ã@Ž9–9T;_B-ñcˆaªXb¿ƒ)&Ž_ Á5±Vƒäf±¶+%Šº‹È,CíWÓJ4ëuÁ ´·ÐB`¡î¥Pe“G/ŽÆ´ŽXû€¹ÍèÊ-J;óQß­Uä°Öô¯*çÍ¿ã#ˆÕ¸–Åñ—"?M.O]󦺙㹢ÌéN-ÜvÿT~=¶óD¢òXp¨.©õj`­ŠªªõG+‹ªu¿ ,;YHXSÒ3œ•–²)}ƒ:R'+rbU ÔB"'å^A7æõ½Wñ€Fú¶ÊkN?õ\7Á岕섆jĨÒÂá>ÆTm/òûÊîѹRà9]ðë¡Ö瞪)bÀγ§ÚÃYÎúDfTÞÇS“=’ 3CôàzB.Y'V'x"/b·©£ Væ³èF ù}E\×j)Xdˆá ¡´ƒoêùUë`—øís¾uÜ]«ƒ=AIbû³3Î"­²îw!÷Æå’&·IJ[ÈõxRþèKpñê-<²MÚC¸ç’/`êìÉQ‡ïQb’Ò6x!ïµaPt4ƒv[6èüo‡9÷öög€×ИÌ{æy5þèÁD/,#pKr€¶–Ì ¿ð\Ú2e”j†M ¯!…îAúÚðš‘Æà‡¿K Mél5–Æ2§t„ÌM)LÇBR´í¨,ü[¬Aƒ"ð…ñ¸­¾@`챩Z‘C˜SqR"2Eø¾$…lqC°~T£ðýΧB9ÍȬL:—šÁb®Œ_Fû×Ðþ6uqx{Í£òÆ€Ãbò€ÁfÝWžüÃG8œºVÃsLæ¹µ%«Ô´Êƒ_ƒ‰udr~ùø n¯Ž_¨ãoðÅ°â:€.Ã@+™°Ñ ÷ªÖ²dç¼€Þ·‚ ŽC‘4&R†¥ß~Ï‘ÅG25ÿÿ„ =–ºR–ØèïIºÞ΢"–3cJ±xú1G +ÑÇ…!Àfr3£6ÄbjtOÏB + …TgBQèT+Ä7G»,Ó (%FYœNû«Õ¦u 3r£Fq ÊœÄQ){BüÏ•ãkaüýêÈ+ ÐôJ©œ«rgDI°;®¡è±÷ÍM… ›Ý’)`üµ‘9|‘¤\¤†*5¿Ž•Þ/rubZäô¹$ßPqi;ZÒÑþ¹%fP),CwíªëqçÖ­Ýz¡›,?4®€éºWùÁ£ªM ^‰®ã‡#½0“ûƒ ûdúMÚ€)ü~1€NóÏ«ç)ŒÉw-öq×­vQÆû„C¢C~€W…_Ñm!ú|.«Î4XŠsƒaÂñèÔR« ($úž´¯U+ wNóë1×fêYp`“U9avˆ£ªám©/Ccг©jüeÆQ 92™¼äî³{›¶ƒµ®ŒiQŽÎý ¤Õ[(uB;Œ > +endobj +80 0 obj +<< +/Filter /FlateDecode +/Length 6312 +>> +stream +H‰´Wko¹ýî_Á"‡ä3,hâÝ EÒ¢‰Ú¢hŠ…ìȶ[r%%†ûë{_äp4#E¶Xl<šyyï¹çœ{ù‡Íny;¿Ù©Ÿ~ºü³º|?YÛ©Ÿ~}õF]¼ž]”ª,¬óðoU9µ¹»¸|û©TwÛ‹Ë™ù­TFÍn/BQà ð_]xeŒ+\ãe}á}€/&AÏþ}ñËìâ—°ê`Ñ;øöþò×ÇR]­/þrqùéi¾ÂÞÏWwj²XMß¾Ö—Þ¼»R¶ñýxnû1ÈLâ(‹²lÕìbà·LMm›¢mÛ€áüs²ÖƵšlt]5¹ÓðÏ\OM˜¬à¢-Z5YÂiò_=µ…ÅWl(œšìàw‰.5²ÖÞ_©-OîuÀ%¸ü|Q¸¼) ì¹Àë€Ûoõ´Â§ð—ÞZãýFMnô”·/ñ­n× +÷ZH0_Ô3-Ia¤¸dw•ÆTɉÍsl°ËBáŠW¤7ðÜQ„pÛª,IpŸ³Qr´pžï¼áq¥[ˆŸÜ´ÞÔㇰu‰‡¡ÜÄ›[u£Üe­[üýH¹ttáUýÓ´øæþÁµ¥_©ô¦zÄLÌ•sø΋‚Í—†bÚ)ý¯Ùâ-äx+Jga +2['L]c]­Å|<éÿäø,›5º[åI-ñ ªqÕUÝb’}Vµ…´ÁÅ7*ƒÁ2Pžt)9x÷ÿ^(HÎV^óY*»Š××Vël±†;(F§à<[°ÈßZÞËê©EÓPÒŠÒú%ç†=!‡öÒ þMO)–ªËœDK(ºCÔàMN×<ÆžÁŠOÕáïóD{‡¶xËHî0Yê¦ ¼’r\iG¹þH™€O>£ºG[ TB’„¬¦¸ +í)£ƒÃ(ŒJüòqNÝTóé£^¸åAýŠŒd$!¡—˜ê©gí>`P¦Z³›$÷=£°¯â)4xÐ&©©XQ;·Äö¹BÃïÓÛ³-ûíz2à«Ê™mÛ$%-%ÐÒZrZª«‚ëÉ¢¥ä>à‡”]diʤÑQ¯‡/(Ÿ­ ø:<³ÈbP‚ +y,³þ=¦5$ryZ‰ò=‰¨¾<…<³-‰ [æ…ÈX¶@°BÌÛt2$(Û« WM]Ñ÷€Ø¡s½Î!¦ÙìADl_áQ¿ÉºFŸ×GgѳPsaƒqRª"OSKœŒÛ·9 0}xĪþÌ!0™æáÑõ]¶~.c%`ok`¨Š°–’¹%¶’ˆÁz_ë†ÙŠ“»;:Ym:u‘åÉß50]Õ#™úvª{3š¶žeÛbíäõq£äõ)Bî[F`AL!23ãgëX×FKVÕÊÜ?÷ÀbÚÎÒ)º!`ÐÅ«¸ä4ô”V\ µí&>éžö||>0:Á—¿ÈjgTõ#ˆé”5ö9°Á©õ{5b´¢}ð0Úe|3ðŸFôÜö4T•†ø˜Á¬ˆóq椇ªƒüj¯† +ûpÈÜÖ eâOq m°>Î eE-Ž0@wË¿)Ì(»¸-:£Ã䎫¶:[YO@C­ð`ÆiäQ¹{)#A0XyŸ÷í£Íî#¡×û=-Úͼ§Ú<ñ2ÏEN:ÔádPgP;ÔõÞ5áíÖ&›’}‡Ç>Ã2‘È(j]wtCa“ )÷5°tªE6>„hšœh,eóUV²Ì0~:“¶gdŽò;j2‘M½*v>Î/<‘äŽ}$§K¿Ç炳5(ˆ¹Q :`ih‰–'‹sJóLÿ¬Xlž9Ó@6}#Ë×8dYf„HB±ÌS;&›æâêïöL@f°d¬Ý3 {~ÜžêÇ]ß“tYqmìÇ{´)±æNsÜ·$mV’Ë™ù *¡f·LVÌWµ­ájÙ¬ZsÛ€èRµ*ÚbhpL›¢p¿Cm¸~ðs®)ÿ´üYoèÑqµó•Ü_ðÏËúaF3ÞØî0ßLßtKPéh§ÿ¨O C¿„õ§ÔÏË'4Ëb:¤ØŽû™>\ˇ·üó^ÓCìrÜóQ6‡¾ƒµRPq›y~b°ŸX´­|»ÌÎN{bÉ\YöJ6+¹b$ X6ç¤Zu3h®ªárõ&Z]4ÃX‡È„³×I:©5øù*Q<²õÒsFG=ç*&Ôçò¼리 KP+%!÷ï%†9΋™Ï‘ˆßõÚ›Llà!kÀâ¡ø³Œ×ùF®×4!Ž59ïf¾Šx–?»&Øر8óõöt1°QÈs;°v?ôïüpyzâ*Ïÿ“ Û»Oå9àhlš¶¸“ç@WÚ=?¶€©/‚»©Š*;¬áSN9?X'G zhΠIWº}FQµL¨S0 uY›½`®uoäÜhVûyOí}æqØIfÞç×&Ã~n¤Œè! ˆËh?WÙ%‹¾3^v±\—ŸɃ •(™¡{$PUxaiõ\¹£Ú mОþf€gËž2¤N@qLØ%!Õ&#ˆ¾?F[ÀÓ‚:ÜPß;Ÿ–Zú8EœŒ°ÞÜZ”ͶÐkà—[£üãb}Ã8ÿŒx§£ˆÔ¾PiIØ»á<࣯”ÔÙµ’ì»áèªæCͽ Q÷‹î÷ŠNþldR-ÙÌÊá#3IÏ-»Êι«tGz•Ž‘›{@“%)TÒO\ê£JsJ,CÖD´ö* +[O˜ˆNˆaÜ1pø£`Ç7j`“‰­X&¬4ÉãzXKF7ƒ›Sð³˜9õˆÞÅöç¥.Ñ4VÉPÕäYVè–n˜X"èºW÷,{œÕòe¥K§‹¦Œ¼/óãþ°9X\S‚=@6£¸{4/¯» кÉËÜf½Ã`H_%Sr‡Qqlת¦áy–YˆXœ™pÄÜ›hî bE¨î¾Â ëCr÷¹{Ξ‡ Ðзèù$ù*É2¿ ÇR ÿS:atm¤lÛ'Iך¿î¤j.5Y(N÷‚÷‚²ô¶ ›PLìŠ' ñA Í —99uõa“ IkýaâZÈGÙ¸ýC†8wû"GÒÃswóä¹îñÐíÝ@¨Ø1û‚ßk÷ÚlÝòŽOŸ<ÓÒn±éê1†#YËnɪz|œPîúÜ<åÇ÷ùÐs54”L´!6×t›é/vÓà–íQíH7©L¸i’ûJ@˜Eɳ£Ã~ªá¾NnÊUë#pŠËî[ÌÛöNÓf·º‰·có¢n]Ͷk„vÕ­y¾§x#gµ×ê笧"ÕOtaþØîKÞ:TïÖj‹€½;7ÉYÈ3q¼ºÒ€3æ ÇsBHÃ"3£&ÑaCtà´­íÉ¿V§ÎJ9L¶­Ã,HÅ"½—Ä>#4;P]lÌŠ#TŠ8Óg:"QJâ•J3îsêfÊ ˆðh‰ÌÇVÊD ‡\—‡ÔG|ÆÁfÔ×'µ>Zo¤ H­Ø¹X€Z_Fˆn†2–ï/áçÝaü¹qPþ_Õv›f|ayb L©0&f§+f—+ݪâ•Ð+ûþzÞÇ—‰#ü‚£fÛâ³mŠ—Eµ¼±qMÅVôÞáG¸¿/=%9íѸ44]K1âMGá¾(¤[Oá­´ +MB5ÔuÎÙ°ýËÀ)p‰#ÊkDUhòφa,Ðt¶²——­J¼Žý¼½ +h2‚')¥ÉÊà8ÿ0 âñð‡9ÞfôÞÊœ#ņS]¢d¦zrKOÞ£Ñê‰ó9D=“§C|Ýs$”U1[¤Äw^$·O÷MDŸ)ÎQQMÅïõ]›²,âPómf +E?çüñ;¸õQDf¼„Qe”è–î‰H€š±ŒHÈ+«.>ƒc7›v‡á}Tn8‘EÉ}ö‚; —õ)QLÛŽlË]“jÊ}r°ß#Ø3$)zÕpND'Gãg#ME[Ù¸V «˜SÆ©Tì Ñ&àÃÅW‹û8•ç‘õ9©|€—$Ôv¾Ãœ£ÔåxJ +bªM€êBü°3Î{~ŽÇÃAø¬PiMÍŽãž`eO¶GçÅÚžÜbÇ5˜W-Œ jô»Ž„ë掟ÆMBs_ì3ëÚ4嬂$®’D*&XO3ßÌ„7”e²Ep¥Eð‡-‚Å‚Mm…0b}ku©³×±j…~Çë&Xšq#' I,Ô·Êå³³úÏ…cI'°Jµ‚óUA§ñlê°nWÎ9;xº$h]ÏÛù,~ƒŒÓÜÐ-±~Ê7þúî•YŸÈu w3J»ˆSï÷1ãƒÝr-ŸŽgïõ>=Î*ãLêØÊ >LˆcgI€/Ì¥2 +v3y¨P¿‰ëX œ(ºÛ4Á\ÞHŠþ‚ <$í:Hñª±‹æªÄLFp…ÿ]so7l[7ÀàP€Ïº€ÒMìl‡,qnã§æµí°¡ñ5þû–.ûDÒ±…‡HTZ¦!64àñ®øÀõl‰î=œ`k‘¾vË+Ø–ú«•‹>4f'(½sýÞÁ¸(Ìãº%gÚ.u¦Î•}Š»íqCô“!´“öS‚®%Ï ¦9M¡ëÙàÃÚÆ_›¯äFÙ>XÉEÈjבÝ{mrù.ƒõGbf@ÅI+2Ÿçô*‘´b¢k=.éÛÅ]ì*ס¢õ¡¨íòPáú²uíTÐÓd3¤ÖÁ•‘QÞé>ÞôÞdÏRœ:J]ÛÁ¿§2Þ)_.¦Hl²¦üÄPnšk¡µÈÄøØ"F¾:³=ZÂŽ,o§‹û‹•¯ì,iWr}”»›V*DfØÌàÊ4'ø>ÏùIŸ^F… å˜ó%0|m ³9:œp\²8B ‘O Ae—ù"!ž.Õâ@n˜oŸÌŽP÷]ø‡ ƒ…VDaÿCþ€N½³ì~@6’|Ff`ÑͶ,)2u:µ˜±³©þÊÚÞ‘-¿¤’1f§l$N(j Ê,§6¹T(£PR6`š—ã'L4¡;„Ÿ¡WQA÷¼I·m {Í0Yá¤(WÆó Ï +c¹ ö`ó1CU“ü4GT’¥,OTTN|˜IûÒ³VÆs#g`ŒìFÉ3=“ïLYI±êoG~1Eê ÊŽI¦ðZÞÜÊ^Sß+ýö‹¯okLf}1>Ö 4McãM¦y£=„½u£Ç ¢€x/}±’l™DÆZ +Cå°b¾P`ʘp hN“X±ˆ4nµ6 eUâãb8ç+wTD'Hû„0žOI#Së¡ñS~§¡øCâ†IžÖC°®&×ã¸_ðq—[ŒäÉ£»”cAZíA7Á©ŒlÕªM:RÆ5ÿuq&í“<û¤µ²+êCN^?ÙÖ$±ñѾÑ] ù5f¢Ž£†Sf6jiWµeë™÷”|z"FÈ^îýCã–È%sPÿÿQ—:礈9Ó +d£í¬J¯(nîº5øûå8è&Á3RÑD©Î®8Û,í±$8ƒ…–6^3Fv3Gd{Bo«IÊ"_ùÏ6˸s!xû=}»09¶!Ê‹£xÍ(dÏ+ ð5$,:·U ÂN ‰ø‹#äG\ÙrL´SU9„‰ÈçÙ?ãÑRós½No¿É©áè´%=XF…¦1­-:ÎÖtŒ0ˆvC“5Дþ.d7K¨véxÔY>d›$PS Vô4RÈuM¢ä¨'ö9BbyëAø'žüd;2yˆ'å3õ]pƺ¸ïù Ør%ßDž;€­ø&›å×Pƒ¸Ók˜ÀŒÏwö“;û¢Kϩ輓HÈ¡*]“+W¦§¤e, +K9£k{§õB–+ ¦žˆ ûØQBd3à•J>0Öo™ÓN•gn”B©’œ²_ +wM¨—}¿8Â÷\ùtŠ3ivw'„­®;l¦vÆQyÝL î“é]9O'ð½ù‚4‰à\Íu¬yÔ䱓È÷vÐ1Rz»Í›!Æ’?žéA›Õ¬W¾p+¾Rs¤Ý’H¥Xµ"‰g»ö¥:8¥V3ÚðÙʃªôº öwÔàÿ'w°-1‘'7e8¬‚áqQ4½¡.š¼øj¸£ª¡‘ úÁ™Û{üÝý‹µ‹/›ï^üû8Zz…–8œÆ7ií¡¡µ!xµ¼pÁ¸ÞO·ûÇëÍåÝ÷ýßÞüýÍ›¦iÆ—/_\îÌ`Dƒƒ/B­¯õÖÀ›µZŸOÖ…‹&tú`ÿ9‹űg¢ï1Mµˆ>'ÂAywÇ?¹§n=àœuÐOP»HO®#ZÁîÝÍ-ë©/z `‡ÚpÏ__9×¾†À6=“μåï¾XOCˆ½¶‚~’+ØIi/ý+§îi*ù4²;±ÓÎwÄÝo¶eÁE;ß"Ä]qnb ©Îþßĺu ¹§2ñ8}´ƒp8ø$¯áPƒa¿ž”'s3mÀ7 $4¦écç)hð”ûüdˆ%ÒÍùç¯âùáóßñ}Y]4©+^n…mB ,Tö•Ã›ß#Rð#ñ^‘òïŠJ yëk~ÝiÜ!yw‚¯z–JØ‚ÿ•‹éì–S–Ÿ°V’Úš¯Ù£ôØÐ{‚JCž7!È%;‹ý(%ëO*õà +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 5537 +>> +stream +H‰¤WÛn7}×WðqÐŒšd7»¬ ²H°Øx°û°^ºŒdźeF±ã¿ßº‘,öEm`X#M³ÉbÕ©sNýmÿ|{}~ùl¾úêìæìÇó/¿?›¯¿~óÍ[sòf{R›zã| ?›Æ›ýÍÉÙ÷ïjss89ÛÚ_jcÍöú$l:XÿºMkš¡Ûô¡ Ƶ›¶ °àþdÕUÛ_O¾Ýž|ûìúlzÿ·?ž}w_›oOþyröîéücøñüáƬvëïßTg?½ýáã}WÆcð؈å@¶ǺÞÔÖ›ígc-/³ÆÖݦ³¡5ë7Ã0Œç?«·•5«UkoV?›C70«ÕºÅÏójmížßÁ/-|˜‹¹­ÖÎm³z¨l/«uÏ‹\³éÍêwXL¸ ˜Õme{|áSå-n»3ÏÕ€_<Â/kxÖâ‘ßÝ™]ÕlœYý°Å3|À; ¨Ç#Ý ðµ¼$Ö€±º°ñøè6ýv]Aø°ùcµ¦{]â}Šá]'ÛÃóƒ;yÜí ¸Å#àñàµðä;ŒBÿ’ž¨S,]oÏɺ—?w•Ã3öæ²¢4=ÂÝáëû 8J…]­‡ç”SBÒUñÃX½~jªÿnÿž ô"\z —­]‰ˆ¾ÝÔ~hLg›M—qQ ˜"®å³)0@儬YÊQNA¾4Èj]ÙCÇDx,zÑBæ>,C‹Iü³zKß0†j³ºÂ;ÃFûX˜£òÑÂ+WæKå(3w§"NÀ0ïWUCaÝWkB“º |Üô¾-îzÍ•ß-¿S*Ìû +_Œ›Ïm*¡÷.ÝG­9‡U¸u_ò„ð3{Ž†Rvƒ\·¤¸~Eý‡¢þuèê_×›vZ®¿‚iO©s5Öêñ×Pó00rñ øŽ2L7`oTkŠ>µÀýEìXÃÙJÉÜ°æ”ô_ÜÄÝòLB¸€¤ô”íšé*õ’‹omÕ¦bî%U1Ôq€‰h"ÑËWª(i#„M'Üוි¥q£Gm˜‹œÇ7&13>=Ž›†FS—ÐÌB#ôÑD ã3oñúX"HHÀ›Ä4Iz4Þcebsž›÷ÎÙª¨‘)Ò~¾d¾^“\EM‰\îpË«ÊQiàgªš» + +_=UtèSÅ,´çÄ?Vžû݈™¤H™@$^…ˆäg²mÔž¦ÄI°­– +á¨Ðv,CÖVPÔ-Ç1Y >Q WK»¶ MÂ8ÌJ'Šµ6’$ìGÃËF¥€V3ô@Eƒ+°%U¾èÅ­Ú}Î’ª…p «éœÛÎÌ®Ðõ:+T%üâéóó”,^ên\P5EÏî¹—¯¤ø(Œ¸xc¾ƒT+'‘ÝH®lK(½”>!+wBqd6|ƒP²ÃÈ}Põý<­£6©Ž¤þ›«ÖȈ)Œ² }Àn‘­UrvϹz‰›Ç_Æ]ÂEÛ)û›XòÚf/±æ‚ˆjF$ö!qÍ5VYåÊÐœi~ζäÇI—ös]ê +‹œÎK`tõ¦ëVKíz²mæÈ6™ÚÂ(™+AygBidQB5R8ˆœ"@ ‚ØkifŸ;ˉ'F4Tfõ‘óPûhRŽx½yÑậ{Z$<×EžÆ0h@8êƒgÝiˆQ#×ùƒä´Ñ“–»U% IÚ%U©}KàWì-€ÝW¢aâ¹NŽÖÒ¸Ú©-5è©INZ¼6¨Ç_ å<{kjÝ`æ‘Àjr9˜ÜÝÚD•ËÞšlŸL@þ΄ö/Çò§º…9O‘J„Z´è"¬thŒˆ ¹PºŸnÎý(z‰$RûÑÀ +ËV¤…§óΈZ™£­HWÒ–_0¿M×™ÃkÌ•”UÜœæTþæ!y[aÖ’ÄY;ú‚pp£Ó-]T dž{¬ŒÅ¼ç±Dè•­Je®áâÌHK¦”6U¾±ÈÑ>‹Ú˜wR_lŠždŽÕ,Ùr¡À¿}´4 +ÒwË#Rœ(˜Æ˜¿Üc#U%&9H²¦I9}} ‘¾_€H 7JI¶;Ž™LÏ*›ÆsGÔé@È!†ý²žs6/ ›…FHs³ùÉü?h4M”°d0+WyÖ::å˜é|XHcã•YD;íŒWiá€vÓà/pvÊ$àܧIôž˜“X dá6FÔœ8<ʹJ®}*þ}j4WD XsoŽÏ^¨ËìáÍgÏ Ê^½H}1TÝ%c + R°Aœ­¦<^’Êaag™'ÁQŒ9û¨ï"°VktL´w#{ÿŠÚ²‹‡%¢·­2&Ÿè¤VÏ…Ø®w#ÑÎ.úª¸ybC`òˆ&»UåÌ+„0=?ÄŽf]Ê÷_~^¾"™®LfXü0û½2û£^eA`ÛPƒ¸šÛƒYçE‰àÆ,%&#Ï7Ül‰©þ_èN¤57v4¤ùz…Á|èñ ôe»Mñ`j²¦ÜàAƒ„Ûgj‹³“´¬X‹M‚0&)áþßmïnß|’g­‹g ÒÂØ7‹Ø•àà—ÜÕÑ .ÇQ7, ÔwN©ÍÔ¶ý5—ÖPâ“WÃ]~À=UÜÉÊôÊì+®FGo©4:[ý n'´%2ëåÒ¦´&7D’·ÈÞæƒÄñÔOš§Œö»êм[«5¯ìJ_Häµ<1©[ 낤éð—iÂœ–Öé£Sê §þ´WIo#E¾ó+úHÚt-½qCÄm@H#!Çq&±3qfBøõ¼­ª^õ2i#q™ôØíZÞûÞ·ô&¯)LñÊÓêƤ¶`®v…<,µÏ{¥tÛgêIóêKõù¥hG?r&ØqÓ˜ÑvÅñŽù}Пˆ§À‡kÍbdy:^‹%Ë=Q`I$¯œMiÚQ“%ž>h”Ò\¯®Ê°œV©ÏÞ÷Y5Ö÷¹«G}nX \`ÒÝO%!ÿó[!â2ѽT–Äñ:ä¬Ü;Grl´ñ¸”%]e",7i݃ün“'ØSIr•|;tª­2kÒ¬_·T5@dÛ$>Š³(Çn‹—’ùWP»Bt$Ð×@½.D¦nQ¥È£™kÚ#­ÂšŸªÑÁkemp)œž£€ã ”Õ)%Z„¿šFU2[aå*õÔŽ²­–ÐQ’ê³°n’-p_“DXºG²‡2:e!Ï4´]—\mæíÂÈWªÊo8Òý£œÔ®Ý­¿O›Ý碖ëÀ¹ýTpÌ@Éè*<Ó#õ؉î“ç-+Ž Þщ²}‡AÁ’îö<ÚŸòù|Sñœ 'X|‘*¢ Ò2C¶j,ªA4åVš"Å)%G’9ÑIJI&„t_’Ä60§2xR°ÈŽªð—8µ$ÙëÑÐåÄaû ÔÀ”]\¦Ý‘cɈ…û °¿Ÿ¶ é ¼úB¦ž|‹û¹öyæGûC> iÖ +šHå«VXjAšz<ͦøYù¼vjA¨u õébMrÅŒ9³–±–µXõ%šu95l€²¸CFÖºÌ`ÍXÜç’y,¢ˆ:êAŒ +ÉÑ (u¹dO”Aôãg ¥¡e1LªÐò@ùÌBº¯˜¦Õ¤’Z +%­Ä¨-ìÑfØÌ÷8!xM +Ï””LnŽTõ™µÈ°$¯úûÄM§ÅÆ.ÛˆØÎ#ˉ/O÷¢‹PaŠ"ò›Ç%};Ãx¿"Æá»÷EâOõ–DÆñ¢TiZ¶;5CŽ7, ¦³`{5ÉN®°c;¢ü8’#—ZbueÚäæšÈaË×ÒuØ÷ŠFû²4™XDIofêð·<ÀèOQÛlLãÐAøDË€¨‘¬pë£ðØ8/jË).ÖBlÅÖã9o^ß&%«I*Âj™Œæ8qîT†à­T† ö•Ërüšög5’úZ#iEM·éŠváô·*ô¹‘Ù+–ZRhBá•À1A=±žÜ+ͽۑò#/ä 1R$½Ð$ ‰Ô3Y‘û<ÃÏöfÞÏRX°djùaÞب§±M-™éŠ AWþ¹—°åÙ×V¤8wÇÖ§àžýìý+¿¿=\ñê?O*þ—€5à2s?:J¹^Ä.ö¸CЭ.…·ÂR„f§Pຄý_¶NÙŒ"ú{V›[Fd(ø(ÆÒ§÷âo_g”à)y8Û#Ãj:ü¼Dm@†7o¢isfÝ# ø>27S'õ·×$†/ô8Rg±ûuö?AÈTQ1Ä%Ù8{ƒõðr +^8^¾›üuP¤^¢›UˆZÄJiD» 6`)+É’™Jåç%Ê,`,RhpqZÆe3<Øà®{fÁ,Hâ0÷ÚaýQö>sVšU ÷¹ÊñY_ÿ³½s¬tÂG¬’WÈaŒx§X0ç6ªAGÆŠN˜<™aÇÇ€Þ_ +¿,‚~è7u;X )èëÅ_ëVnr£&*0Ák½ŒxUæ¹OcTŸ- +XÔˆ»™ÑcŒ$˜úëÛË}©sÇÞK5£Ã]f#¾à„=®ù’Oƒ>–4s.ŸÁº/xb"i¹í\ô T—ðt~&攵Ð^2L$* ‹ +íBþ.}Z¡½KEÏ€-ÊȲñ±Oo#°ÏOZS¿eήöÕ»#zÚ —õƺþõÞO7ß|÷Ó/uqs"Ça£ÎºpoÂW[¸Î×#Œ”£8‰ÄJ™~û]§ ªŽOK& +R.»†}¨ü¾¿E êÞ=.A7µ’æ,µû®$ïÿ¿öøûçÒÂÿð9àž/¼/i‡¿é\TlÛ±53 À† 0ý4!ƒYÌ~º. ­ õg<3Òñ: + ·âÀÿÏgt¨ Rí–[§ð±G.áABà}9ðè„ÏÕ%!”/Ê.Uå ˜Á¬­ôÒƒ¸¥Ë²áVJmJ†­ÈP,¦Ä š*õ%÷ãs9p±hú8Ƥ3¦ ¼ÅOªÒòYÉty±:´ÞÇ"æ¶äÈ’ 0R½œðIÖí?£#ý„Ëçšá§æ!U†xôªx‘nú™±W|ø¶ôÄŸrÂT)æD¤¢Ñš×òA¸ÔâOKOlö¡Ä5:B,0*ü¸Ð=é-¼E(ºÃ—ˆ±éôàIÒ‘HåëõÅTqçëÚ¹È-Õ)N[)AÇÄÁ·;$\É9Áh?¡PÅ#¤3KÇ‘(‰ÄNEà¤ÈA-C2#°›ÄhE`)T†d5·‘Þ÷dGN µ–CVlÌ +i×Õ¥ê7KßXéƒP+S ü¹¢Ñ5Ø‘x:Iâl£†IcŠ™J.áÐ’vnòü+ÀõΡ +endstream +endobj +82 0 obj +<< +/Filter /FlateDecode +/Length 5931 +>> +stream +H‰¬WÙnÇ}çWÔãÀvUõ +,É1ÈÉCCŠQ"‡1Ì×çnµv÷¨™†<3ÍêZn{–“Ÿî¯.·çê‡Nþ¤NÞo_nŸÕ?¾y÷V½9=ªTµ±®ÿ×µS÷»£“_>Tj÷ptrjþY)£N/ÚMà¿nÓ(cÜÆõM¯l³išÜ­z}úùèçÓ£ŸƒY¿Â¤;øwúþä7•zw{ô磓wÛ=îáýv¿S«‹ýú—7úä··¿¾Sn0ù~.û7bx#§²uµ©L«NŸa<ÌÄít¶ß ÃÐâ~þ¾Úêµ1£VWð¥S«õ¨‡M­V·JW›V­î/´ÝXú»µø‡= ÔêRÃ{ ŒÃOxñ^;œæ\×8ú¦Y›|Òí¦Ç'0ü¼–ñºÃñ;†³ÛvãÔ +Þ²´¬ßŽ^×8l«Mƒ³œÃã§yѦjqూgŽ®i«ñAƒs8\é Vä v_òašµõÞküûG9?Ì^áÊ[ LJÏ;mZ\$ÙÑ01Û­üùR=à-ýiÀ!Û0”âë’._o†¸øíðóÆ;üÙãÇz‡ûÀ{’}}ÓNêj©TÈ®Ëür +¿nðs¯áy/û²*"áZéœþ1 ô "m‚HB]?‡:8TP‹(kÂvÅÓc{†Y‹»ôáqpÓš¯£þFõj_€ÇÍÝ°1 ¹U=yÜÀEUˆÓL=bÔ<Ço/ê퉆ò…ÀUö)n}ùLåïp­~Ž¦zB4„ÖM°í'æUìдP˶)jÒIj¹÷6îëACý öE1«¥j…ÚLÂaÈ;Ð7¼!„î]›{íµÁjݵc®À˜cЕÃfluš³7uϤtûù¯ÂdWBØ€.mL¾ÙŒMPU¸'c—ÀªÓ|¡WÔÙL³&^ðŠ hŠu¹÷ü#¬¹€LÃ%o¥?òò ÕÜ âüyÉD·|D¾àfò‚¯2y5"¿.ã†ÑEî@9B›ˆP<ëFSÌÜåð•gjáf¾éÛ¢Ñ IÔn*¤‚åPªSÝTn†¬ÚNÈê=j »Ú"St)‡Œ6ÛÑf‘hÂVUraÈ$ _5¡!!'’&f%à’jnF«vÒS"` °3€=¯°À˜w˜@<߈~åhb¬÷Ü(¶Æž¤^QKøi¢Ýc°¤ÑK/é|ÙÕ`$Úôéûå* 7W[íjZ"‡m}€Ç°]Ž·¦¤®Z¨«ëÇ ë@¸èÞɶޡ˜Àª‘Zœk*jhmÜ´£/ÜlW -Õüi¦E‡çû}¥kb|±FáçáôÂBüThí_¤´]¶Zbr,u¼ý»³‰I óÌ5€5€a*4×ê"rÄßÇ/3=oä½_az°õõvÏó­'ôîÏÈut·Òp¾Pÿ·Æäéˆk\"+ât2MÏ´ó²ªm–-2^l‚U×wDW*2§îr֭瓸ç"©xLié¦ìÙ¸J[ÔŸ£°dVW±nÙë ¾PVÃ×TLc0Ò¦ýXûzàº*KqMѹã£XîN ð®öƒ 9š\š¿ßW—Åî ˜Ù9˜Õ.‰"#?ƒêKå —­uÎ ÙÉn2Ï)GÞ`ð"W¸"‡ÅÛÊ}g“×xŽ©n4{ò'j#wm°OÀª"vЩÓ"›A’ Kw:ü}¬bZ•ŽLÊéˆWfPÚÉa—!˜æþ¿d‰¡d@Á¹’/Óh±C’(öxÈÔ®­á£cmàk ¨Ær<ôñH£kvü0/϶r{Ž«‡å߆Òã9¾ ‚WëÖ;~ñ¡kfûŸT72«Z\‰ºªr¾Ç"˜º,‚k7y 7ýðOhìè"áÖƒ¢ÉY /ð ox ø[ù„éÆÒ£øB·é›ìŠ®rœ7íâ^&r‹D#®Qµ¹ñd>{"íoÐG4É‹ÞHš:.hd@IMvÜÖ÷ÂÄxŸx´\ä“йnX]ʧDYv§_U8%´(á’*…Êÿ +(˜œ8›ÙV¨LâPËÝ^I¹v Æ x>â>Óø\`„Lf2äŒoçQtÈvÊ!2Dǵa27ˆ¹Ør#“ˆrýiÆ…ìY“£Ô-Q=1(ÇêL›ÌÇ„­IQs³®öÞzŸOïÅ@$£ž”Ž(±p§‹1f3Œ3‡±¦o8ºÜ(µ€+OE¥c‰Ä1|úD@Mt-]áZìãZ´¡úmÀRò6.4 Á%‡·}˜à0<1!e —òƒ@Ž1jå¢Í FË­ºoÄÉ +Õm}nŒ~P0BŽ²–Š"¯©­Š‘êGÚMJÑûÉ4ß¿¨Ê »Iî@PAÿn€¿R0/ *uUÒÍrPt)³êªIfYböóÔYÅX”è.w½šBÕª¥ÂªK.é$Ê&]’ Ô(Kx?G±^¨äX©§N;VzߤÖáÆŸ“h#­­HÈ۸㤠Ät&#J?á§÷šm+±*V\(EÁåpl +Gi†9Ð4=IM,fh`òÐë¶+®08£>»·Ì¥“ðÒTÀVDx;OJ³ô­–LjÓ‰ÝħwT*~mþý…±g¬Ñ ÖûäÙ¯¤}]|­«¶ ŸfGuf¼c]z×Y§¦G8|ÌÓF«ÉïÌN-ÔQ0Á;%—OX.OŒ -åæ)ÀMÓ­~ÓN~Ò~®%`nÔm;¾¹gÍy+º+>ÓZ®ñ’Ú$&YÅ €È2%yHÍ(kD'}{”× I;QÎ¥öÖ«˜Ö÷{æÜ™U‡•[ Ÿn‰,&Ðy…,ö¹w›Ã¥«’t0yÕi¹YÓäSËEk‡éH'È«E¼„4¬Ä„¼ƒfSÇ]¨Xº4ïQyØdÝÞ©hr<·Œ;%3›5\׋BЄ$Ž¹«Ã7ÏøCâ’%©áãûÿ4¾ŽÁkœñã+˜mÈ™ÍõsBšÍ—KœAÒÍÒW :Ú|i/cì§ðÉSüqpC^´x{Oþ‚ ™bVš¨g";eæþÄ6ê®(åÉJ²Ð(ò—'$}ð² /@NᵎJòy‚¹U€D]Åì”ÆI¾•w1jLu€Ð`ýªë» 1+µ”Ð`†Â³usˆ¬LbôS®GÇ8A•‰noV,ÇKbF.p¬ÏEäêXÔRB¨¢/l’ÉýœK(ùʲ®$8áY~e´¿4ð¥ÝÄø¹A»o–pOáÅ¿·ò9Ñ7uÖ_2‡C¦„U)Fn¶|¼’ôåy™×?$â<â=ÙÚØHBÒEl™FŽÃpê™5¨ÅضKÄ:ÁÞr±†>̱ åô\yÝwI0ù&¶'Þ7ƒ|ÜÊûàƒ±ÁÇZK™ÐçŒm%–ð€B÷ôw­¨[L–<¢ƒ3vs$Y+fØ8ƒÉPêC^ÝI~4ý”¥A³\£Y¾¸9£žuX±1¥5žÁ~ë±ïûýDÐ]O$t)‚¡÷çî ŒŸk8‚Z½‚¦ëʵ¦žƒZçЀ +Ô°\¦ðÊtÖ!Q‰u¬%tCðÖ Ç«ñx¡ÍYý¬ CcÝJ´²‹s!DÕ»"V±[3$ÝwÌ>²~”cYªp<*•W3’W<´¢ é2Ta_É«;–ö†ês5YáÉ5tJ¯à„o5¡ÁOuÅÊÍئóJ•näF&]´ûNªùÈWúfž3#¾š!É 7‚‰Ä‘d(oÞÅP&¼—õgµž|H¡-ù£çÐ`<\p9D øÖŽ›œ•ÒCQ{ìÛF\W1„/¡,)âAÚÍoyùÛ<vCq®ÝT­S5DÌèá3‡yEö -´:ÓÔ·Ú[e¸ÃB›6 BµÆÏ.é?•´Üèòr&ÎTÄf·¶¡ÁVm±ÞgQo ÙøÈÍkqaj¨;­£{‰.. ©ÉðÀ‚JBƤÇòk–LoÍD-¾˜¶‡Úüû6ÿ-ÙåÁî?¬WMoÞ6þ+:F€_¯DŠ”tÝöÒK±hÝí%ÀÂvœ¤m¯ëfóï—óAr†¤^ÓÅžØ29œyæùØ‚Ýüz¶ÑMžóÌs®ä¹ ªî ¥Ò:ÒR«­‘O«á?òäšbb²”¢NN@‰l‘Ò.™šç— w2µ¥ÿ”¾=!zï…4°‹JíKˆe¦@`|âž\¿æóˆDªâ#ô£hÓ(r%³$âuÂD(<ĉ¯ˆC«èô?næÿ„7ïQ &3ÜÜüŸ0 ‚ÉC˜W–ÅЖPÜJÙCÍÛá0"ñ4ëÞˆá 1çwn¦ý‰£°ðœîò7UþÍDÕCÍŽ‹ßgÂÏuèk ¡Ù#gÝNÕ+œÈÈå*]LeΊÊ=tUY«`±ÛltÏðrb‹ô»Ùƒx‘cjŠø‰ºÆà[á/’Úd"m'¤áP˜Þ`Ü1¡~wm.ïÔh‰K’ _Rò¹uÇÇü>Ò‹ö©H³¶¨¼#»&“€ŠÂCÙ˜ÖmUpx3ôz¨eRº6/óaÍKHk6üÑ–é;ñaIuV÷Âýçû‘8ãÌ$’Çl,z?pÊ®¨½u»#§³\ÒVÈ¢ >§%aZD÷s‚ùïÕmžo[_¼í‰ãí,†¡:6e.“J¢A>(-6´÷'þ¡|f÷ú‘hfã3û(AöœVÃhQNºˆ{„ÑjÍÞ ê2 º#35‡ ¦º¯°wV°©ÏÃ1¤ýž@Ç2áã]Ë6>qH–ƒ†©†Ç éÝA›”q¢†Ü™”òXxÚ3’Ùƒ0b’ fäšô•äeä°µSk¸s©êš>“¯ŸH‹KbNiRã;}—¬fuççÒŨøTœåÕYý2CÓ!q…¤³%™Äà#¡R™VŠà3Š½Å«d1˜ú`묘G ‰HØqZ¬+ò¸*Ûy¤ ÙŽ=û ®‡C<ñ@ë/FºØ³ ÷{ùä Ü'úQ2ÿ9ñr œ²Ž[Ú<î¦YŒ†ú¶ +„Âœ’ø…ÆþHTyóŸ°«V•ÃËnÐ8<#9E^>+Àn38ÑôMæÚ·Mšˆ$.g#ÍV,…9Ô˜Ó ¾ K¥ñ›õ¨L /Î÷v©…"âü€à|›àš´¶å€È»åLÛà²ã73ËÁŸL´|a¨ h­çú®µ’d——¤ƒ¯îÆÌr ]ï2;¯à> +stream +H‰¬Wko·ý¾¿‚EÀ3’CÎ ˆ5R$-jou¬¤ÕZ‰%«ZÙŽûë{|ÎC9…aíîCÞǹçž{úÃÝýÕåîü^|÷ÝéßÅéO»/>Þ‹ï¿úü™Ø<ÝnÑÔÚXøÛ¶FÜ6§/_7âpÜœnÕ¯Pb{¹quà_W[Ñ]Ý»Ö mkkl¸Þœ rûÛæÅvóâg8õ?pèþo:ýËu#žØücsúúvwƒ6ü´»9ˆ“ýMõò©<ýùÙÏE gö¼öw4D±![oGS+=ˆíg¡ïRB5]Ý)gE§ûz‡æüëä™Tâ䬌8y%ŽÒÕNœ¼“•ÅϬ”ªaý=|±ð!Îe¿?ȶ†n¤Võ Nîe¥|áöÁó+iêNœœÁfXý(u[÷¸«… œìŽê/•êùB‡;÷⟲¢ooµ6R5´óBª®Ö°'èhÍ•„—aõ“4 +¯ÛK«dyViÜpçà-!«Æûå𣈎8´p÷Às¸»• +^Kjñƒ4äÎ}|]\“ᶸ£Rî‡' +6_KMÆ}„Ÿw^KeñÁ#ŽF¾·~áŽû ÿ½ýkȃ`è +0Én‡¾nÜ ‹dŸT9ö<ºÏ®•Qåñ½­3´¢SmÝE(0*è€Æ2zÈÇk‚‡¡øL¾(þ¸ó;:¯4Ǭşï¥n ûâ&.–&H;4&PÀv݉ iššLP„Ý[L£Ë!gñZ¸¾GÃIdí^û:ÞX10£Åh‰Æp]áÙ]~v\£=Äð<¾â«5V@,GxNvTdÈ…qö…âyñÆ _ƒTŽëQ9dÐSšÆŠí9&Ô2î&8jšÚƒeí¤¢²?$»ÉUªcEñ¸ÀËõ#&Ka‰]RÔA‰)ê†2w;5mr -n¸˜"F æ`2~`íò”$‚ùŒércêzŸíÈH0 Ü‰Ÿ +quÉ…•üõgQuDn ÉMY¼‰<>&›ñxÎ÷ÚÛãƒÓÒçÊŠ¬«U~Òcnä«ëaf›’üÎbMˆõÃb®ƒ"UA®š]Ô •&ZܳŸÜ“’Œ1¦¦ZÏÀö™óÃ?‡¤¢¸ù@ØÐâƶ".І£ ".¹é" +õ"˜ Ïöþ õ&¾©<í0öþÖñõ“Tˆñí þü%uàߦ`ü!É“{¬a<ü,9ïʨïý2¡Üàs*•O㪠+àêjò ÂÚN£™ ÒYb=ØTÑ›n¡ºN×*bìÔ“ÃÀåYŒµ5m~–Tžw…ðæ<5™ÚylœsŒö"=¨#eXh~áßTûz®7ÑöþA“,71ßÊ¡°³¢/9lp«Ç0u”ÌU÷Ø:¬È­¸*DiŠ#¿Þeò¬âvzîù¯w/æUEО‚§ØZ &½B¶åHZ/Û¬÷^½TÛe#À2ꉻLLðë¾"¡œE-îtaÓ$ Ž‡ÉœRçŽÀ¨¥"“ªt"’ö\v€7™P-{»®ñ”hÊ®§(´ž Wë²çˆØâƒZ /Gb©fXšÁEðà·=V¯Ê«ø«q’¯õXmË9@-á©5Ù0ƒ'ªiÒsC®Í}€â"> gLgK +ŠÃx÷Î?Ÿjp¾3c;™_DŠ5¿zN\Ñzdt%Þ›è'Ô0õ°é¿ŒçYH¸ +]Ìa›vmFÓ=]I:ì̫؈šäé˜ðe·’TñD|„žèŸŽJ*²Ì´>,c¾U$…ÊÂZ¹òrþ–÷?»L•zzÈt]>OÚrž´iž„¾õ;⬙l'M . +Ü;Q?Âz—YºU¿*ºárƒò”½ÐÑ êÔY£Ø‹À +WÉNáÕJ¶Ô¡ñ N§lycX«ß‚¤ãvœ†¦ è¾´µe‚ZowWؽmØl(3Ÿ v6Æöl|äjdj‚e0*VÂúgªœ®»9ºŽOBAá`Â/$ͺ»‰ÒGHm‚ ½*–IÆ©…²žpjT¦hDÙ'ôÜÛúÇt~å[Û™T&'†ØXw#âg©)«™Žéȱ´óEdœ¢?ü™ÖЗšxX‡þàˆQaØI‡°ì¾ª DR^#¥“c­ß•Èq_iô¨T0Ú“_ÑÄÒøs¶—¿]JÎuŒó^LÑ??zìÛuS`f‹Ÿl‚â5]°s½6™d9µŒÕéV¨Ö<×ëU«kFªÕt Pjuí ÐA)IrÊb¦ï|–îS7öåóÀ]AQ+‡(ö¾c¸´Æp¼ÏáN'¦ÓdD*)Š&¹ë;,›¨9¤1¤3ú¼Í'2/£ ¬ÏrœM`va*§·'ÒüJlÃœäíý‘`ü+²ÅOCÔõŠ0Xx-ŒÔ×Ú[´†ÂFOÿ¿Õj :UòR×/€ LÓ¤B^H@!ó”óT¿†§dK¥ÿVÊV³F|% QƆŸ¢·Ã'.Lg(H†¹æËâ,r9Ù~BL–fë·¼ÞÍqOÂ[EêòèÕ铙ʈc ê¹¦²|`lÉ™Êà0Ù|nâèÅâzÊn£Ðü![2½lò¾`ŽÁjté54˜Aë4hJàöípCt\Ö¥ž’²Ús-¤+U~ÑPu3¢(ðXÀMçOñð˜’̃ÕÀú, éÅôØj3£ÏuxuÉöjN˜ÐC ­Ð/=㊠s-òÂüF¨8t+¤+õlGí²µ @i°—Î0Ü´%<˜œ)vôXTø¤œÉújÇjŽJñŒX™q›4QQp¼ +k_Äs{l>™¦ +£ÓŹo[ì–õ-FFùa†®âsÔú9±¾ÏZ0Ê'ª6pÑ k%{»Ræ3UîÏùÒiÁód4åÎî1ÜùírÞÙ’}ô0ª¾$97MêJÙqÂÌß  ö?Î%Lz$å’ ô/Îö²‘bËtªÁ¯YZëP§"½þ·‚×åú(oËl—ÁûU¦)žøæW‘-DŽ¤O=ßaY«¬ý>[®ÄVã°Õ©B߇XyMÈH„CçEõtÜâ!ç¹lC¿'­ÃŸ‹ŒíûÎÊ€^í˜bó$ƒXŠóÏÈ€FWWŒ®±^°SÏGQ‚nV¸-´'EÜõ„0ãÒ|výÏ»|¤"R\~…šÏó5?ŒTš^€ek25??öQe›Icr¡1= hb¼7 ÑÄH5GÀÜíýXgóâ“‘in¿{ 'óiE³ét8(ȇØÛŒ°žüÁY5qºõ6D|øÜzU4Z PM|3;*dƒj€xðˆ§ˆv^,’£ùiIÎÑ>íHåöPî +V˜ŠœÕàíšeðFtéa4„PG¶Ú#Çéró›bÙ}–”w`Fyh½&b¯¿ø´º‹Z * éEwßú¾ªÂ×KþBñˆ»ÃæôåëFŽä¿‹þ›Ê© ûo¥øâ-‘0‘+Ô²š¸ƒ"aÑ`0.ï}wGŒkJ-’>Aâ$5ñ +ÂR9§ ºRµ ZË uŠ ÌA z >iÅ &¶‹7WŠÁOÕº÷\x<®’.£„±¿cx†H̛ʼnq¾t>N¤[ÛÕºÕ.êÖ9Õ1ÑΡãYîx¦€¥‹n†ÍJ]s©‡2Î8‹*«°·ójIù¦³QT¤Ž¾K=}ìóœDð£ÈCÝÜ´l¥"¥–i rrŸ´Oj®[&ÑO;±mÔnÖƒâÄW[OG~çWÔ#-eÆ]—¾­,$Ë^g­•-m ÊC¢FÌ8Øûë÷ܪêTwîIâ3ÝU§ê|ç»ø§û¿\ãºPX/kwøzzÈŒ])@ŒòSfÐ!êœö…Ën´Ë¦vØà ™Ô<Ž™B¶f‡‘{ÊI!ÉAC_öÂ3{=76ÿïç#wœ:𽿞;®uJ@ßm¦F<”AˆØðL*È•½Õªf3°wÍÜ)dì»vä­j»xD7o7'¥Ø 7÷Úßgÿ´YÒã?G¸–d’HŽ••§…+ðª‚*PWkÍ´cÙK7ÚKÇS!áuyDb€3§‡UãñÍdù çQÞ>¢È·ÑbN|OÎÑkF¬}O"ÆAÄü¯vøî+üÊ|Ïnê´ªZâ‡=¬D76æÝð@u!gs(¶Ò5‡âÙç-_á ¿c*ãÅ÷ØÙûŠþ“AN!X÷+%5QšwÄoìR¯á‹cã*zs]5ô†­šOPg:a@'²û‡>˜W•£žHyqœŒ•”SGjbû7u¢L£c'˜:3Âc _’áûáË N™êtÛ•‹aa·eeÂm¶ +4Ž©écýš¨¹ÖòK£ÄÙv& R¡ÎÍŒ0™˜²×àèm§¯³²Ð ô‚{üvî +š9è ä©¥}êëb˜]èË^‘®Ø¶1®ë”G³Ý©[ uà! Ïb< ó3¢›¸@ÛtEóá~ŽÈPF$~-ÍŽLZŽ‹O6ØÉÉÖu;Œ ,«ºÑvO„È2]ˆ'3…÷+ZKT&Ö&¶Ç è„èk!zŸˆ>F^ü¶´™3_ûGŠ „$îNûçAeŸ CŠÓ|—¬v9’#ÍÙ̀ƮG8/É”í¤â%X›ÍuE©»vG±XŸš©ü4šu$©/K6ßÀVå/ÕlÞ…häÀ&žÆÒ0Z«atxŽLë#Ií c]^6y>§=I—sM<’ RÃèu õ×æ]µê°ÒK³M-H@q–½bàVt)1˜ð›™,Yk*ôÀv`®TrÍä4P%_¡ûq +&HôwÊwøÚO{ ƨǺ]顤™óTYÔÕëÄø.a§ Àtnçý`Kž‰V[Uœù*¾pG÷hFZ™ŸÞÉ º¨ L¸”IÎå…þ Ò`”Ô’8ç#Æظé`Ä4ê΀+ +]Êiñ–m„SSÂÉá½NŽl†Íd2òèÔ_ +Õ]‘òe_ÜÏù9=vzX5 >Øài8OAx«†k«†† G¸È‹â5’kÉl'=icâ…¥[1?ÊrÉ5‹±0¹‡ÐŠï°6vâ”`ßTlÅ¢—aócPÈÈ’R ^ œ¦6‰7ÞÈ/rá~DqŠàÐÃ/ÿ×¼ÐRx†–*0ÆÏXrbëåOÙñ¿[¤Zhd7øuW[ûÁ/æNË v?™`ÞÃÒ¯Ýob¢‘_b¶´„ s²5´7lýêüñËææäâëãË·ÿ|‹ÿÞÚy •Ó7O‰Ö˺îÃz-< üUû£¥Î+ ÿHýkç!û¬Cðf{uðâÇãÚ\=<{†¿³ü®I¾üOXµ¥ªONlN/>VÝÙiÈˬ*ûõð= +» Œ%Û3þsË +ù`§5uÃr»ÅùÀ†„Ko÷œ ®œÄÈS)ÑÃœÌ Ö± >¡Î±ùë“ùã•I-. P"‹*zY¹>*É kðBÒ®•qvœˆ¨ù$òá5W•ª¼þ<«˜Äo*æ­ Þ¬åÍzæÑ7xUL$Á÷•g‡#'¥x§.À9©ŠR«óå…­€?Ü>±uèKëÚ皬òòÐN"Æó0$8¦ÅšOûÈD Ý"®É©áAžm*ª&øËm6í¡jXóÊ‹ªÆËá(ùX1çƲz3é¸þ{\3°Ôz™2í9¶0°ù°uÑFR¥Ü©º~N¹5îNÆd½G't`„Œ¼!Ë—Êà}Ý*{rÂRù1)d#€-–©Ø¡ds:NR”dèåÃ)äýƒUfrñ‘šº.Áe›]òï:•+JGÅö¿ç!ßÚS¥ûXþIç'DCçºë¸vKÂŽkžS;”vmG;þ +ƒ%lÅ;FÓ–]œg¬X}Ç‚›lÿP$ÏìR,{—U8ÞxvÙirei'´1Ѧ-¦lÑñVz#1É·gʉSI„Ïr‰—òFq”¸BFù=qãÚ\ +ñ\juñ–ËáeKxõ»Ð…Jèú\µbœ£“Y‘ì‡Fù¾ˆ•i‚˽£|¢=bS¤>“o‹Tȳ p)†à•Ðኘ—¯}CF·UA&¢šÀK\5ˆ\È|'«™3Ðøtœ +Ö&QÇŠÙVÅËó­tœobÔµm‘rž™rG1Û<ÙÏÎõb,¸ Ý, ½Êº˜F':9øøJ~G{Ž5ãòÑ|Зcs $ØF ]rÅWO-è…ܘÖÚ»;Ë÷y“'`¹‡¸¹æy¢ òhËÎŒo§ÇW1ˆÝ%‰®¾ßX+7ܘÃ#èщÃÁ¢•Åkát-njɓߚ>(o›ÃiWo¸Þ‹CýåôÔDzôx¿l’ðFPs-Òï=•×cY1UCÈ3kË3—w…Ž¤Œ~N×õœ¢¡3gˆmÇÞIÑ&"Ñü\9raw™8F,ñô¿è–nLCuL§µÙkc£iˆl`Ÿœf%/Úb¥¯¥O·iê’§ôŒ™Óêñø.nÙNXèÿ ÏêYC +endstream +endobj +84 0 obj +<< +/Filter /FlateDecode +/Length 5687 +>> +stream +H‰ìWioÉýÎ_ÑÙ€gÔÝ3= °%Ëpb'ص²A°MÉŠu-ËίO]}Ìôrc‚È€IÎôQÇ«W¯Žž/×7W³ùZýY½™}}جÕÉÉ‹³S5yq11Ê”®òð]Wjy=9zõΨëÕäèÂþb”UW“”Æ9u1WòåI5e {à_[zemUVï”ó¥÷ ì¹›L­Ñÿ˜¼¼˜¼| 7ý +á~Ü Çã¯7GçwF=L~˜½{œÝ£…of÷×jº¸/^½ÐGoO_Ÿ)o꡵ +ú„fZ6óB¬¤ ÐÔÊâ-ÖòZ«lÕ”¦©T뺲ïûÍûyúZ®ìÕôL»¦¬ñ³2jú£.,DMß)§Á+5-µoÊFM­n*\gÕƒ®ñŽº€Åš~Ô ´PotQãÞ…nK«¦×¶Í`Å_·ê\Û_/5<ñüªÂWwø Å}=þ|Ò•Çäñ-„ ?©+Ùߨ¿è¢)Á†?©±µÇ=ïµ®.-ÉÚ E{;´w…Ç€Ak]ô¸x&ÁoçЂ ELZÓÖã®+µF¯ÑŠpŽ.<Þ°ÂO‹çÞÐ~°å^Ûoü€ÀŽŒ<ÿLAið3øº2x¡¢kñH¥ÿ~ñ‡¢oÂÄg0AÔn +À¤6¢`œSáÿ*æk _ü0;‡k®9ïKMÙ†È8 œ5Ù}§yº xŠ±V— •ÝZPªùV‡®;‹û¾êQ—ßœ›Ë‘…$µÁƒˆ0zÇð»¢]–âo%erà +Àà‚ss“ÀpŽ >Â9¼­ñÙÀ•ŠRúUaä*¾œX¡­pû' ¡i†f²‡5/),CžŸ£ùlpA@_í?Í€FvCØÒ÷½ghP«A¾,8¬¾ X¶Á~¦\ñƒ??{JˆEc*‘‰—WêIsº? +­<¨¸j‰Û*¬ÍûðRS‘­¡È‰çXm=Aƒq‰;°¬–XŽÐ=Yt…ç:Cd>¸Â6|ÑÇ÷U{|M W>ÀrÅR}„&ª¦ÏÔ%·Žf¯‡þTÛþÔÌ5®ÆÅK.³›ÜÔcƒLfÇ]‡£»2„¨•a‚=Pï@åžú@PZîøá7åÌÜþ´ÿ¤AËùÏ#Í}ý¡Ðoƒ Æoߦ»RA8מò²Ñ†E_m©y¶¥;‘© ¨††ò‚iƒ<ÞÐAb Ji‡Áÿ=¶æ3 ”¸MsUÕ£ í‚ÑøÅv âë±Ñ—¨Šz‰A4 Y¿Ñä)Š GÚ¤ ½¥ÂjÄ—JaXÞ†=ÖJA’bu¸°~èÑx`f§ +„ÕÐñ•îû‰@d2J$eO|U±Þl˜¯$"“2ˆ,CÝÇi JÂWeŠj4OÇ^â, ¶ø.&­›Æ¨Lä§d×rxšªðßîV¾¤Ä¼dóÌ7Ç]3HÚ=Òx¹Ð”Ô­veÙQÂÆ2êFWÜHéi™ghŽÁSÕ ƒeÌ¡ 4iB²=O¶á”æ›dœš©3!„3ÄYRãþ»Ô¸#‡Ê­b°2N} ^Õa?;<õ¹X'¦q{r_ƒ1÷ce€]`ç“Œu MIýrVuC?Ÿ©à øWõpsŽé²6¤$>)`ã‚ŒsÖ½vÔv³†¹0ÔyBÀ¥îyªK©6Ïp"†€‹ŒÄaÂõ¹Cùnóº žžÇ²»b*X|cÏœŠÛéc±#6ª' øö-_µëC—ÃOª×– #Õ©ÞOµ'.ŒÂ±¦©×Ø’{lŒ†ØO°ôòº¢â,A{Aœ ɨX´§2 }D8ïrÁš± ÂPÛ}‰åÊéðÔ:3Ov¦ÕØLÈ%‹ +«4ñ`æãßtGæ1H1”»ܤÄO û„­=žô^Cä~y¸?Ãq òRÄ.kÐÕËëÉÑ«wF]¯&G§îQ±tœõ|¾ÞÌn/_ÖÇç/ÏñïìääDÑQ=E¤‡˜4:ß)cZPÇÆtõ Njhü2ÕÉs›sCci4û„VZ²r8<Ð죃Ý1:H¦r»~†hzn¬4ɬø×îEµ8ØáÎXs³áÂÀžD8šË”ñ [æ^èø2-uá 3hÉS•uÂʆOd#ˆõI4й3À¤½Ô=×ÚJw2äЮ`%Ò¥X“5ß Iõ:‘ØïVs‹ÁþË,ò Ðš•­¸Ib½NwrxÈÜòIÓY+ØI_©ÏX•^ddKð®Ê.»¬"HSì’ɨèž}Éb\Ì1&ÙI£ZEŽü¸WÃò„l£Ãé¦íÚ<à’CQZÄ¥Htß@" IhÎ mÌë5iÓlO.[êú€Ÿš„ƒàO²€ ™ìAm¬©¯-H° ’`ÏÚo ´ã‰Å_Ó4#¯Tìüê6(O!ôOºbP‘Ò¼EùCÂ!2£âÌgÊŠ%i@aâM¨¶&©ñ´È +4“Mš ¤ø`Î £jl*Qcö¸…4Ð ßB¯ãÑêžâÎC‚è0+6Í“.§Ù6똞G^ÛžAË‹~Â$Q·bÏS£¯èù×ßùáœk½Ýݶ¼ïPÄJ²rçE^µhå5úCê“ÛÙzÃ]º“v •§Ë†ƒ›‘ü]mK‘û‘æso/êÀ2£UA¯dr{‰²‚V…ñ àŠ#AX\åc[¡ 8d[K™êx¤÷\ù2Åñ ˜üNô™L%œü•Ü½HPߪv}h˜øñþáápˆ´CÁjöA¤®Q°¶ ‘í0 Óí,êš ré!|&rj²¤Ý&mžg~)…=c4^"Ȳ7†1“½#°¨¥ÔäÖœRвÊæ‘G] ¢¨‹äi£¦—£Íµ8¹eáAâu™µ1cÖ X­¢˜ÈK*¯€"Sõ->ù'‚­ÐUº8V²2ÇËèÁÈv|9?Ý~UìQ~[ß À3-YÊ´{ ‰ê>²×&KBò/ã®wŸÍ¯a°¢Š@tq;Øâk)ê7½®b•>bú@2¡’ <#6psQ—y“cçÁç -·»D“ãÐ1Ãl»R E0‹,USIåÕßH’'‰@Y‡m¤ÒæhȨA ­Ê óßU{òW')1~w¹`‰´”êXaCe5*Ni2q&ö»º™Ç¬Z¼¨–&ÇAáh,HÝ%ñcDHEá1?GÝhh)«"EÑH8"áL²„Tl±T¸,I­6#Ø +·'Q“( ö^¦¾LDó„Qjs·L6:/$©œ¤ì +Ä ‹»Ÿ…"LŒÍé–ÌØanˆŸ„µ•iÐvŒªíN2èûW°1_­½mYô{~Å|4•ÂypH‹”Zñë4YÅí.Ð…ã‡ì&–U9iÑ¿÷5ÃÊbÈÄ"™âܹÏs΢:QómBžÏÇçÊd’^ÿªYÓk$fÞN mvn›ªQ®ja‹#”´ªàBÍ‹Z£Wpl†ÈñsA¹X©[Ž +µ°c<¢–Ú†~iaÿrþ ½p °'KáÛ%ümIO@šh€ä¨l?[iÎE)°KÊôN¶EùsSЂé4Üèçêøx¥¶<¤»B  Y¬oÉ®µT¶f#eŸiûøòkSÓëјogçÎV-ç;²¦6Û í3òø`‹úÖeÂW0¯hX[iŠ®ëNGšÁ½ué +Í·¨Ûm0êS1&D“ëàI:T\À]³‰c"kØ16:Ø:Æˈ ÷˜¦90w‘»"P÷w‰ÎS÷ʯ˜Vf¨[ò”¶±™ãOÝQ˜¨o¨¹æøžpH»ÀÀl[øB]°‰Ë ßÏx1Ã4Ñ0èJñ?ÑVøKˆ§TÑ+1šK÷ÞwG…%hz*|…ÜOVÔv@¨kì>*n·0²È"-õ1ŒÁàÞYb!O˜øæDíÖÏžŸ¼-ÕúágÎ+[»yÓÕÂU­›æ¦hfJ;oàLxÁa×Ö'oà\65ÚnK‡ÿÓÑ°ƒùI ;à“–¢áøF0¡+µm:àIåRáÎF|½#çš²Åÿ½N½3-…O¶õ¼ö™íðJx÷Î5&[Pý 3j0£¿+iKÔáóªnj +±it«.îèþ=éûøìí³‹‘’ØCF€P´Ý3R#Ý‘8 0sŸ‘8˽3-x´Æ¢VƒÀ÷uQ '^´wæðEñ£ñƤIpöKÿHÌÛø#1)¹™Îþ™áh m㲚‚êÂö:ДC1$™7%¤ý3cB˜3Îé,Ý–¦ñpDãÏtÁ—:;3" ½3ý€zty5;^Fª2â"’&‚u +¬\ +Ƚ,iùµGÈÊ”íÜë&Ú5"«%Ò<ÂþBˆvÅŒ¼"ÂxS.QÚ©“@[¯…Z§´xd–V̓ò{AiJcPà¿q!íz‘h$¿ +òiQ‚ÄH^,‘&Á—DÎH_¬6œ–à0J’¿Œ÷¶Î[£ƒoøí€oàC}{#"hÅ©|²>O0ÕŽ<Ô´Ò-^¡0”|ÒDËÁœæJ¥Ésú8ó>ÿÞüt-FA’†Ýo•/JÝœföï%4Ó?Î~çD›8Ñ™Ìu¾ê›mÜX³®ìÃAQïSïÈ—T°˜»J·u¯sÞP?ì +îb”:ÐõÀ~G+ +ÕtËPlœûÍú>,Ÿ ¾´Yó‰<½€£V¤}…²Üã¨;Þ k`þ¯ñÝ5c;íÑÝ0ƒ݇‚ؤ¦ EÒŽÐŒ†V·Åé)¢iÄÓñ.™\0‡K®÷ B|Ye×Ã8î…üÛ›ÆHajˆ1Ðÿ°°þô.”ö êÕúg‡£CucBm}ÙdLµš<¦‚¨’š~=ðÀIý˜Ì‡Ô?¥­1 €\=@=³¨™@Z i}€òÉ[´E]JU.wŒ´ïA-ˆs5Ô…0ØÝZ ¤oëåŒÐæz›—Kâîõæœì@Sw 0 æôè/8%>‡¿[¼ñ?ݬ+rˆ~_ï +º$ÿ¼Å>2´º²Mp]|`7ÐŽÃW²nåwÜ\Ñ­‰'ü~'¿_£øCï滘‰ñmÙ>:¥]Q\c溱ð(³_¥Ü4Ž~Œo8z( $͹)9ØH.¢•ÿj™jZ|éyQQ".#­8ê1¶“IGÖ©Ñ6Aú'F¾mÉÓ¬×" ! 'µÝ¡u.›n¸?-·\-½@-0]™J?!`TU„½I€Q™AÀÈÍŽŒÊŽŒÇú#¹õÕðÜañ<ë ¦ä+î‹MA•YCÏÐ;¤áo +QüŠÂǶ{¬.X„œc³@A·ç¡Åb>¡GÅ¥án¡ú^q =¨û‚Pé¬b•{vá®àÅà­à¿Y;ÑmÃVAÁç½:ŸáÐ{ø Þ²ÑþŽQò=€ƒ&ñŸ tè$æÝx€¨ROa|J‹1ª*˜€ +æ *8 Vý➸Y0ô=Ì4E|Ž£Fã<3ZÀ®fˆ?§£¤å¦ åS²8 +ɯÊaÏÍNÊI,>ÇGhNeÌ©,¼A¬^÷ÐV”?.À7 W€íŽÐ-I¹O´a}A@θ¢‘Á–N®J, PëÜoäµ ½Ò>a¯@à_¥ø|9Ø+¹Ùñ½âõ÷JâÈÿãÊ9#._{ož®öºm¢šV{;TûžÙ µwß@Þé­Tè&åì† ­-WZ(Ü”PEtL¢žhõRuǘ$E…mQ ëÈñu¤Pz®¶‘~ô˜Dá]ÁÔ}FV•ðí-ae }@B¾î“°úSÄD§2 ²ÜpwjVútÝGHžÀŽœÄ\¾šØ‘û} ÀW‰Hïû07;¡ëoéÃäÖ_ŽV<ü\ùK¬á•ê‰ ÛLu " K|º½ ¿ª[´‡ ”IBóIØ|In‚ŠÕô<¨Õ]_¾Êü°€Œ¾i¹8‹‡â©’ëCÔQáÆž¦(‘Óµ 3Éèñ­Ù<*1»ZÕe"ýÆéÛ½T³n>GïjFûGr4ó`Le†ššÊÆ]#ÔK\èÊ&õ»­žƒ“zy5;^Æt¤º»X E™<‹:e¬dKØêÊÁιÆ„%Åô|S Á¨¢gEEÉzWÚ +PŽÖ'Üg?ë–9Z—ÙFKœò€è 3§ׄü‚Le@Ð:†¯†oå“ð¹ÓWŒ«¯‘ÝáóW‡äáËâŒ>6 +|’¾X¾ݾõSr}’§I[s}nv<ÆÖ£¹«¢µè<­è¼¼9O1é<1øqw‹É×4ˆØ®0v•¨7ËKCøùn‹+~½Å_ˆUó‰>ùཬ€×ò·\°a0@Å/Ð6k‚(+¤Oü²å}!zeküò—X ^Ü%o5Ë öå³|®oäõ-Þ†0ÿ¿´©} +í«êÏ`c‡qxÒ¶Þ¶ä…p'!Öo˜P&2]‘E[2ÜÍtͧÝ4ÙPO• CÍmMÍiÍ=, r³š{´€ æ®Csׇš;q„ ꃛöÜXd¢oîLz±, +ß²Ôâ3$Ï ©xŸ8{ÖK[;K· ‘3&î+A·x‡Ÿ¶¼ÔÍŠ¥%~¤ð!A Ö½…3¶àÛ–Ã?+`ý8ZˆŒ}qZ°·K¥‹Êâ£ïÔ÷èš:ú™©{¥^,‰€_Š‚ °ÖÒ4¶KÌ:ú›:.(•?­dp~îÿ AªNÔB„Õh¼8VÁ—ð .àëVj¡€ýÔYVLî¯OœV\¤&ó…§OÚ%–YNÿ'Ày³Â> +endstream +endobj +85 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +86 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 5144 +>> +stream +H‰¬WÛnÛH}×Wô£XÊ}!›$HbOÝÌ$kw‚E Û²ãÄ–<²oþ~ëÒÝì&)EšY°Dª/u9UçÔÉ‹Íöözq¹Ïž¼'o?Ö߶âù󗧯Ääå|¢„š[Áÿ²´bs39y}®ÄÍãäd®?)¡ÅüzR¨™rVÌ/…ÿò$ܬ†=ðWÏ*Q¶å¬4º¦šU•ƒ=÷“©Örþer6Ÿœý +7ýá~Ü ÇãÓÛ“_î•8]O~Ÿœœ?,VháÛÅêFL—«âõKyòë«7§¢ªÛÜZF}E35›9÷V*o ­ñ­y©ZÕ³Z»JÔ¦™µmëмÓWR‹é¿daÅôƒ¸—E9ƒç…´vfÄô‡¸XŠo²0zÖŠéJê?¯¤®g°~) .ÚÈBpº•E‹ïðBã1_¥Å÷KYT³ö‹©«YÉ[`á­Ô .XKX 6b+[ü}-¤ÂâT‡oN¥Uh!¿ïÎ)Ñ‚µlðº8•¾lð<džX|~…¦Ýû›Àt‹Ÿ3ñ^ÚʯuøæQ²í[±äÃÿKî¼TáÂÄkvAÏïcC1R¸ý6cˆÄgï|<_ð1’?Km9`lx‚c)+!ÿ3ÿ{Î>h4*…ÆL;“g¾© m)jH_¿¥h94¡ð€P[ôüž~*Ñ»Bƒqwüqôó¼ Fÿ—œŠ5ä±Îâ€UpÊ!N•G’Icj8F—Š­I׋GøŠfÆ£C& ‚ê–®rlsþ{ÅgƉ¹o›%æ‡ÎyŸà^?D-u^@œžx%±Îñv¸,<Á’oÂÂ*ÆÙ‡íNbÆ4mðFØUö ¢ ÷ƒCµ»À¡ ²Ú¶bp\A¹¡Íì¾Kà^CðDœÃû± SÔ\ƒšêu o]žÅeð“ ‰AmsÝ„‚ +éD@ñg…÷viîL±¯p­õûV—ýXô"±g?U~ ü9øš[RPþºÆ×ÐÆã¯JÒ]PZCäjÌ÷ +{@ÃAw¸p$ïý¢‚3>CÓÊ..Åd“¤l`<€NŠ’i‘2ÛÞ£mr4²¨²ã t €#v¨?$E +¤©‡0m“TSEƒ»×ð¦ÆÞISr,û›»þŒGt]oY‚v›CÛ2´ëàK…ÅÒµÎW\HCíò.²H ¥s´;t3OaýžìoM˜¯¿Ãð`sƒK)~ëJj)  ßiO•°aÜ)ŒÊãŸà>۽̗ržóœg2ÎKr6‡ô䲇¶²Ü¶ÚÌtD[䎲bÀá’ópèãpñmÐuÇŒ­´U9f –¢-¼®±¬k0{†}ïhM3"ß:n·”ÙïÒÒ)˼[¡Wbc/m©sŽn’#r˜ëÿ1NYË/ScÖ>€×bX§¾½€z6 +Á`àÄ(ðÓḩú]ªB)]tZ$I;QU'jú0áå +zï]FK+n Ðg^£3R.“Ò÷â(Ê.¦ ØÃY%ëðÈ{ôƒ¶ÜTéCäÝŠzA$Z^p+©C]€Ù¾që+DãB rØ‚.P4$¯%÷žîx6#S½Q¥ùìt`á«­hÓ&ÅU•â#M#É2yøì÷QeçÆò˜)Iwž$Ã,û­ÊæÝ]tGò +?.Zýô:‡Qóµ³ú'@GÑÖ׫" ë$/[:_sÉÓQNI¢¿ ?]2½°9 šm¦”ú奖”qJËQ1=Œ”ínŒÔ&~+ 7µGjiÛ¼V×ò£>h1~kĪ§µ;À\t­ß×; ×\-1âºW>-.¾é§~Ë‘Ám¿7•Ò\ãR%ñóâØÖ؈YùÁôAÄÆÌ‚øvD)ÝÈLG“YK‘©bOT<9%³¦ÖaÆtÉìÔÆ +ª½#0dóyd|ªnnˆá#©éúÇ0¶»š8¿¾÷JèxÝ€…¯Qߑĵ³ Rv!ÔOXRgñ$ÑÛYë·òe‘ÿIh•È(ʳ¾"BùÂ~ë ¸±ü˜œªTÝõ¦Ù8ƒ±ëÕÑH/ËPÞcÖ¨êåºe‚qí'€Ô/˧,@ÐÌØ +þ—0:mn&'¯Ï•¸yœ0¦DÚ¥šÓ5ô +PÝ™ +¸ibàÀu Œ…êÊV\ƒŽjj<ºU%þ§óù +^¤çb›Îö+ºƒã†©`š,MwÌwMvFXÑ— ud\£Züïtb…O[&Ö“ ùңÒîènÍ5†KSüãi0žÀ¿«@?k,}ÐiqyOð?øÑ»›œO~÷‡(>Äî:†ÎºR‡Cº-±KÀ“íðnªÁï¬ÙcJ ²ÑMñNàq÷ öì¾'nÂT4%4·4Ø€‡1ˆa;bOðÇgÜãÏpÏþ j] ¤›Úf ¡k§CÇl +qy¤{~îÑpÏiƒºF×™qÀÍž ±'øƒ[L¶åçþ ÷ôýéóÕ²8=‹Ä\fÄÌ_c=™ëOÐEÄ»2¥˜_ +”€ÀPÀá¨Ø<ƒ·Ø‡j'*èóTgÄàïaÄ2y'‘Ï¡½ãÒÙo^¾õ£Þ™Dºsé v÷ž…?Hš_£¶‚ßÏ漌ž-ÿìðdÒóÿ”ĺï%ñÆù>Y’{_¥Þƒ[upPÕ=«g¥…®Ô÷° Iâk¬ùY¿yöž¿‘D¨/ÀRx|+á»x/ËŠ_‘§éº9l¡™.žñ_Ô?q(×Y.Og_™OÊg%!ƶ È`µyW6 7dpð™RÊ>Ÿ9ìò:¹<ÛB‚Jkû§6åÁ§6„jF¨5ìS“cüå çó§ÐŒ†î˜òBKb¤ äܬ’„Ñ–”&Éý–äP0¨^Sáã ¤iŠ†%/CQ]û™D5νå᧓R‹ ÂÁÑÄÙzùCJ—æ„ö(ÑÝ&‘‹D ú*Fâf#kØ®o^w=z¡Sj/úBO9 …N1ñ‰B§ô>槌B§ÌQ( Ü…ÁÄŒSìšðã/WÒ,§¿{˜ÝúNsÅ ô›$½¸Ã~©y|TˆécEKhÙà©„ñ†§¸á«_K©†#¯ýó†÷.y¡ù£&€’†ÿí*ñÂ-ÚSNɾ%Nøú`´Øÿ#ZJ‡¤~tÏrªÜ‡–üÔ#ÐRŠ–1p$·~œþ[ZÅeIQ‡!›õœ°4 VžMaJÅGÈ,e^Z¶x°ÒÆŸ‚«®Ä“¤6Uñ„ÖàÒÏx2ØFÒ`/æ-‡g9e¤;´—buÀdêgWß.ïä›ûëղܶ EÅKq¦v€Ïeê…Ó2ÓÆÓé(ÅndO,*#Wní¯ï} Q4aeÉ¢.!žsσ¤˜ØZ?,¹•+˜9”­=›«’\×Ë:Ù_›²áªláq´J&lSöY Vv̪#ƒ½Eáy“mvéjGÖf‰{/žö²·D!•[éKÌÈA¿¿33¬„£<]3âPNµn1V7,Ê©Þ-¢úä½zÕ)”=;ŸƒêõäÄ’á¬Ø "µ8€a†%VÞyA>|ùïsJ}F”OŽBI–“(ùcÃQ’"ó.z™ãºà2Ûµ^³ îƳ9'` +¯¸¤?AÕðš~²äëŸu„vºœ0ù›2 EôÕÒŽ'¼Áu”­ß[~fQ83¤ÌÈ (½IqFªIføc#˜QeÞ_ç Ç%A³Y#$ÔÔÒŒØð÷«”²P5§KZß $V"ÅŠQÆåîð -CMD{#Âԣ H8Éë™á@×.UZF’Í$ÐþØ ÛÌ@;YÌþ*Bm³ÓPu÷õLƘˆ:ßD,«êªI!£3‘=ý©dŒò=OQÑ9äü‚’¥pâ% LÖ‹¦QHáÇä2;¸ +Åæ ƒ‰ á%eüFƒž(»Å©DõŽ=Üᇾ– †‘ßõû-iWÝah‰œUvûsUxÃtGXëóý V⿃Ùr¾Y¶(øbŸàDj̉ölñ§F°%؈ÆÈáÜã…"|7=õu!xs¹Üà=âjüCê˜JrFxÄ(¢È{49¤ž‚WÝ_ü[DÕWT7;ò6œLÑÜ Y¹¿1%e× …N)÷à{A¿ÁJ%ó~[ãVU1O¢YµQ×øòGÙbõ6cÒvOÙj²?Œ çl•¹?¹YÌnQL®¹~äëGÀaCƒ¬Ç +L(&UÆæâúe&“Íå`l&qÍE™@«NaâåÛ‚e~ Ï^â«/ECÿÁ€÷ŸXñ¯Ã±ÈX.´G&`1Y.ÆF`U.öÃ9d€¡ ñ¥ f€ l65^Ry8Ú–%®¼x²QePb)áKÌÈA¿¿33¬€£|~ç°(§w5Ö9,Ê©Î]G•Ž÷+¤oæs»~¢’;c‚%6ÁyA.|éïs8JµÈˆ’ãÈQ(Õr%lJ*ó.z‰ãºà2Ûµ^³îÆ“9ç_Š¯¸¤U>¡p[¿¡Çá'K¾þY胺e ôÕÒŽ'¼Áu”¬ß[~fQ3ªŒÌ(eZŠ©ëIføc#˜ÑdÞ_ç Æ%A³Y#$ÔÔÑ Øð÷«”²PµÎ–¸¾È«DŠ£ŒËÝáZ†šˆöF„©G…A‘0pŽ‡1û…¿BNGìôµ™î'Íý¤¿pvµ‡ßl߉G,»Ö %+¬½´|t–—‚Mj«[& ÖQéäû“ÿê½ÛÒ†6¶ªR5¨yZ8FìÌùž·/«RõøƒÛøó> +stream +H‰¬Wio$·ý®_Á"°3j²›}†Ø² 6rXÈ—$FÚÑaëòŒv×ʯO]$‹=Ý«;X`[ÓY¬zõÞ«³?í^î®7W/æ‹/ÎþbÎ~ؼ>}x1_~ùÕù×æä«‹“ÊTk_ø¿ij³»99ûî§ÊÜìOÎ.Ü*ãÌÅõɪZWum.®ŒüñÉ´ë¾Ý:çêu݇Þø°¡…oNþyêlÏN½ý÷ÅŸO¾¹8ùæGØñWØ×Á5`üõÃÙ·•9:ùÛÉÙOÏ›GŒô‡Íã9Ý>®¾ûÊžýøõ÷ç¦\µÁà~Áp‡{!ÑÒ²§H]µîz~ÝW·ëª­Mçûõ0 -Gú­;súÑÖnÝ®vÖðûÑÜÙ•÷ëÿ¼²ýÚ›Ó';à£xP­kü‚>À ·àM|bNï¬oñù ½Øâ çÖ}^|oà‘ëñÑ-Þ‚ë&~c6ðÈ­9ÝmÍ£…䶸s‹—ˆdëÜ[G?áÇدðÅÖ0íOøb…[mh£€±qŒø}Úàv1ô ±SçÇ×{Üro"žªÑ‰ÚCÌé;óµ…þaWðÆß'v7—[£òäàÞ{ë:Œ~k=^vð®Çw!7n”ñ‹­‹Ò˜ú,j|ă‹`5€¤ë» §Æ^ü¼léZ/ ї˧®è\³îØž­kñ°¹È˜÷Vݸ‡?•X Óàû÷&ÖÍpcmÌ9Öîœ[8‰Ã¬ÃâŸíà‡%îñrƒ5(7ªñ¾‚±”^CþInîyÝa­r8{|Ñ+°ïr8@‡;¾D4Ü¢½îµƒ'Œ žúÂã5'οáù°¨Ó8]OòÙõ’^öÔnX³Cê¼åèl +¹9U°þ0ÐÆvÅ¥m¨í³—vg)Í—æoyÐqkÝãRÄ+FæNôp l£˜Hµ!¥&Q>@Ö1Š\¨¡3*´É{Dgyel^1ž‘©š²©!D¼AtÓQž{>C$*^`¯Á2æN('Acë·yEÚQP" C‰uL¢Í«¹´PdúNt‹8Ø*^ÆJ—;áâ˜ÍZ÷G !”dÒ¶3Xh{8h"“ ja‰ßl3àÖ«˜Löö lÇd6`¢l%\Ò²¬®ÝŠö$÷c“F1ÈtÖm¢‰^‘—£RÁÆv?aûëkó£õ‹„ð-ÝyæÕ¶‚S!8¨Ñ5oqGhÍ°3/d^~ ¶è; C ¡A›„Ä‚c”ì™/o“pçdq+ˆ¼-„Wf5ˆÜ6¢•Âx8OmÉ,Õ·´_»„§T˜¤ÇL³ +¿g½aâÓy­ß"`‰_Ù¶àáN:û³fž·•âá$3Ax8–VÀ +×OTίÄÊm`8T \Á $$à¶ó.#TN¨J1Å9É”$…»bñÛ[âœRÝ!‡™Z'…¡Åz/XŒj?zû¥/à×#ÐÔ)4)k=§Ð)c­²=n´HíÑ  k†^÷, Óùn$ßÝ›ù®‹|§~Ëâ¿–ò1,o¢´›ÄE‘â%ÂÑG!M‹ÇÉÚ6rÓôˆÎJ넧èŠ2rßÜÏ0¨É™L„›[D('Q¤@ä4òSD/$Ô˜"Of‹çÕ|=.ó‘ö ¥MjGú©D{ðúyûž1×ÔÊ__f?!“¤DüJùØÁ拆VbtkEñÏQÈwS¤Ò„©ÒdŸXú²õò㮃)•ÚÐŽÚÖÊ"Nb%;‚'4(FR¦4WSej¢¡žó62“EK +!g²A_Ec„§FŽÔ°ËSäªáktq‰CDé¿"+·:<êZ~£a¬Oyˆh’ÌwjJA|“†;Áì%°;ÑǛȬb0¬ÊX |püªöeÅìa×Z)·pÜÆ$ÿãËq‰b@¹.æj+ͽ}ЊÚi¿ïBksÁm”†´T’H\ªä …ìÔh©ó?fo3¦©B£Äñ7~^ së ËÉ‹¾G0kògŸ®E²“87?€uþ‹ìxT»¼D +B‹ÑÐæ¼ %­XY9Íú-îÀÉ)q•SÆnÂ÷ðUZ)·È0f°Fš€‘Ù”,êµmåÜQ¦éwf×ÏtZî§D5 .C§›+:€H·ÃxÐ¥‚¿.%­˜Â“$@çO¬Þ΂*SŒkõ`2Adç;Ü9Çõ©9ž-û›jôElB˜ç6di\´{ö¥¾Æëbqé*_]©«K€y3º¿JÃ)&Ρ•ÀŽ±™Ím8sö æ¾g¯ öñôá;s¤üµZþžq•ÂpÕ5žàˆ•'É]ŒänBðäËì%5DžŠŒà.s‰«¤\§g™$2òÚâÊ×óž*`m°‰.;ôäÅÏË–nJPÁq§-[€©3[¶²Cð¬f'ꥹšQ’=‰VÀ ç(g*¶Ëó,:â,v{š1|b-GÞFùõ@:‚ j`£èéæM´–}~( h¤1-ñ›¥«Ã)wR¯Mο¼w6ÁN¤)*R7î¥0vªáЩu2U{ÜùÙš`a_Z¡øV$Ê,t5™É&qx7±¼ò•5£~1xÃð*tÞV[® ̆-vò[YÚGeÇ7³|ô)LXyUht+×lIÀÊp€8’x¶x‡>j,uÏ€e¼€ãØf¦É7f›Âéó·« Á‡ƒûîðPWÌÿÚÿiO’Zï’‡ªÖ7ìçf¯ÄŽ6/œì‡½Ä\£Ä[[7XÊå@íJ*ôÃ6 Úø.Q¡k0‹ç’ñEa¬ÄB©\ý´ˆÓÈ­ÑÓ%€XKV’q^âA â“­ùm'£@HšpÓ{K(ü@‘ÍÌB¤"£«lâ¿Ò[OiÄhVèf2ô˜!Íhò I®üD FÅN¸aÌ3l +XŽ¡¾ÀPå›9 !F5=`ÔN[—=d¢ÖÕZQó¤á%Ò‚0DP×Yu_F™8w–=d×N\Ò’opWqpÙùØú‚Uë£æÙbä™ ˆ¬ÃÞK¦Ú¦·àÈÄ %Íx—¶ô.þÀ»L!1ujÆcq’%xd4Ö9cìv$‡’¾AÒ@§}ïMÀò%HÊð›m¨§•é®§?ÔEŽ“´@ÆË£6!>ÑohØÂßÈš¸¥XÈd˜d"™7Áqó „.Í+T©hõù¼VN9g•¿¾ =5ºfuî,è•ÄæŒLôpÄO–µä6/$$ÍÝ[tµJðÅ«<ßeˇÍ!*ÐðøÁb¨Ê3¿þ-ε®@ê yäVÄ.Ü,¯[â-Uþ—{KÀOQÞ®ž)oÓwÊdfôŠ‹ÂïEOÖ¢(lÊãGàw¹µ²¨sýEÒºЊó¬ óF‰ûHy1Tÿ1¦fŒ¿yÌu]l2žíŠ0³²2éêá㈪Kn‚Ya&É]–+Ée<ºà%2H†§°:©f1üPI´Ïìñ²ñF탿9!À9jàPS„Ï3fŽé6@À¬Àîgsk¶(…: ñÿçTÛpnέøÎHäô_4|t’d4E2¨µc?{oÔ4Fß>3ádƒ +€ðYŧ3”v³<Sà‡Ñß3Øõo$m4ØåÑà ÿœÞ‹1˜KKCš£º½·žª—„§NÖÅM‰:šxñ T¸bJ‹0ýhë whJYœævÓëÁôåÜW5~®‚àÙ³+¥Ž3 {œ<¤4(¥¨ú^¥;¹¢èÑ+w8“Ø?XßȺsEo®G懽Àøo(Ũ-:Ç ³Q“®Í¯1)žwkI@8'ŽJ¹éh›ñ ÔÏ%x;Ëë”AW>ÚGëÙ–s–C“Q:%k›G>h j¡‡¤0#:rc:BÃc’!KÕa_àùçqXÒ*‡ËûÂWŸ/Qše›Ê+qF¸¢}´uÇ%#Ž Éê¡ãÏŒaa‰Š,!·L­PäK+ö´%ÍH4l²@UÒ4Ú–NÀó†ÜÖŠ‹c¨~ؘÜt ìF1ý>»1é,5î;s :Éëï-Uæ6™#žŸÄèß[4'ï‘jq+#¾A\/ï~ïF”f U÷½ò ‡¢ãô O@"H_’"߲ͺܚg¬oK2+ejó•ï8mÿ£½Zzã6’ðÝ¿‚GÈŒÉnv“<ø°À"²ÁHÖû¶,ÌÈqòï·^]]͇DÅÎEÎÍ¾‡'µufw²'/œ8Lù Åf]qÛä³¥ßs¯H׺ü1iª\ÖkË(|Aüõ¶Ï +ùþÐqk‰²8–´4s Xø“™·q$y¼“èVÑ© [*c—Ó(©4,ùpÒ†]¢㥦KíÒæ0ºçkí©ײˆ¶{žõ¶øeÕ³4Þ,¾*'O±› šgDÄ(›ÂCu†ó/=«}ƒÛ{¢éÖ¬¯¶¼ X3’l^௮Öx2dÛáá×%/CÂK¿`•=)ÅØK];YÛL5Èîàì±Ù£ÇöÛ·9ÉY>N¶ê㾉¾ò]0§ˆYŸP ZÜ­'èýU†„$J„ÂÏÈm …O"ÆdÒU:rþV,gbÁ$¢ÌQô&š‘æ:%/†% hæ¹ÃyÓš%,Þx ¾fª»œYþ&ÎQìâaž®Iµ÷ÕÏÐS›I®y’þÜÞÚ°ÁtÙ¾¾ÀtÙœ³C×å×ì“]—©Ô¢&‰U^ !Ä{j_(-ŠrÚã‹Ï)õói,}wF2¯ÚÈ.¬h[&ls‘_³!t19/ºå®2I.#7¹ + *"ð›aÖo™Á `6_SrR”Ál-Š¦YL3OêØk“33u…QQ}­§fŒ…’õR§çÙ‰Aù\ëf?a©Ô§À;0æ~œº¹Á˜«êâ5.ÿ­íñžåžÕäá/jy›AcfËÈcvføŽ|~ -íPP?û‘ߦK5ëfOÙ†¤ìrRpI„)vˆ¦íz¶‰Íˆ§ìÕ¯á +2c¶nPÉŽrn}à؉µ/jñ-G²YìÙFN(±ì»ã¯˜ð¹Ós~ª™é’TV_ð ”ÒܶŠR @µAJ‹Ìebà-Ré± «Ï‘å’©Ï·òþÒŠà%À¯gÂ[˜Ëל'ÃêJ2Ó9û‰÷?p…³ok° æÍ)ÈÒB(Sšy:`ýÒ,¹Ü8„Ù×e þ,É!Ë×u S—½¶8øê-6wDš8j<òNf£«[ +Rû:Уmɶò»ÒÍyž÷Ea2¥quÍIvN<†0x´8ðsùÇe¶ `p {É@þ Ÿ u4·ãø –v;~Ú?mÖðÓwÆmÏlãÇÌá8q44nA¿¦QSù‰{L…ž¥87Ap¥=°öf)ýßBÊ Ë£‘ËDùKèÌRP¹­#…K? —“g‰º®ð–DÎÌ!ªîò(;¨L—È6¦Ó£Ì²¡*!îD˜ý¢äy]—ýSMc¨ŒÎ Ix"ÒŽÇŠéšRÅv ºƒ]XÃ`lŒs_H-NR ™gŨ!x«uÑú8•¡z¤:ï+ ÌY/rBØM—Ò% +O`a\”–`»2âŧ$€ƒèù2ð|9|3”¶åô}ƒÅÖà¹~Ý¿g0tÑì»Â;œ:BoëŠ9bY¥˜–l*ÏJXJ»Wº¢Ž-µü®Ê8I¥þÀfú É4(5ͺü?0¦üVbs³ïA·‹ˆö¹)bŸN5Ÿiÿ‚zv¦žoÎÛß¡ŒÕùÍ« ÕÕ™º6 Ç}Ö5Ô<Ùû„6¨¤‰ø­¦†ÿ +#ïðD÷HÄ‘- s>ï-øˆÛvù¸÷xq„ÔáŸY+oª³3ÄYâr¬÷ä–3ΩGVý”þ5ŒÛ]Ë<¿¹$¡(ÉyÃÕM·û&úªúýàÃÈu)FsšŒ6)4瓾¤$§‘x¬Ò[âÐ!XC9Hø  ìSò 㲚X"áŽÈåF?Èÿ™“û¿ ÐöËáµô4!ïR!²·ä;ÎëÞ›Ó¹ +s(7y­++ÔÜeä6÷uOvÜÖfÄÄID[•©¶‡Ù~ +)WE& ª_Bk0K¸£!:Í[Ò3só5&ò +³æK¤0N|®ïeš`ÔªlNÊ£ü¸<ñÕP£º¯ÿ‚Ué—œµFòŠŒz’s.¹÷yɬVDƒb°bŽfòýCÂ:è ǽ·Þ’½€ÌÍëË,,»°çQ€½GmYñÓ¾Ù.1ºNU}µº®Ã/–\Ñ3/S]ò$(• õ[ÔU&.^†->´q´ÙíáƒæBðI}Q)¦î>d×u#æ6·*…Œ‰ËQ¸T×âüï±}}QDš¨cr¼i‚Xß?M€˜ußž(06ÅMTæpÓÁÜ •aÝ!¤ì6Ä&¯wõù·-=š¥—À×AM=|ðyâõ/"@mãrH“|Lœ§ÓEÄ.•ì3¨ˆ „C)‚0³BdÔ¦NYú=âeªÕæÉD¿ÀauÍD°ê‹. +ÒhõÞ"¦ã$7i¸2<…gât³çxÖqD{&.Ü•@†l¾[0T‰&. 1­è62ívnÚ^€˜¶$û¾]#{ Òì;çâ”c®îr(¨Jè~\‹†bÔ¦¦L¢<%Ç5}‡–d§ s¯YH°cOŽn‰uóf˦ kMk™#Ô§§òt†SP¯ZªM9VE ÛQÒ5.—IiGˆÚO:·…ß 2¶ó{ç àµp½¼ÆkL€Ôá¤#ù4:8•Bû@1Ðáájòœ3âéË<‘\aêÙ¤â/~†OšâþÄxå ȵ´º£™Q®¬}‡RÎGÝubÁÚIÁEKÞc‡ô4ÊBÔ_ZW/ŽäŸÐ¤TcÁ¨ƒ0jku;øº’šâB†ÁØÐYc¹í…‘jJ![ ž°L=¢˜w2µè(–¬˜¨{AÕò¶iŒÛžk ˆž3 êŽ&ÔUý=Ð %è¢]ª¦â¦P\Vó2–RžÁÌO?*fBAX ZDøÛ»o_½ùå]SÝž^½9ow(ÝšBUÄÏÁùXuœ"ŽQõïš3ÈC!¡+ð€·t@{ƒ_”ôx]·Ž«ñX»ýæ‡ù‡9ƒ8¦)\ív¶8]"yàbŸR aíQðKüñS*Ôo¿‚“ïñËôì}e¶H §löÞ߈©©ÚÇ_/(t´ö|©~qØZ¿l x{Äà Ø܆ŽL®—kÇðKûç]ÃŒ9º:˜ +Winï«Ó#.Fk3]ãÓFE¾­{ñÓóîø2ßÔöš[C~¨2«E6héŽ'Xgu<˳Ó÷˜#}æ1ܵ°ÜEã{‘V1OîÄ|oïC?qüЂó«J>¬@» ´÷8 #™3T©ê¯Y{>÷ŽÎó^¾¿÷Æukyž +8n—NߟpªÃηÈ#;/2Aõˆƒ¸ <:(ð1oç¹;A(Ò-º÷õ(PÒ'o)ÅêÈ Û9=‰®ë˜ëñ·‡TlؼÌÕa ꔋVü_€T´Êï +endstream +endobj +89 0 obj +<< +/Filter /FlateDecode +/Length 6158 +>> +stream +H‰¬Wmo7þ®_Á"­–\’»{( +$qšË]â^m]ûár(dÇvÒø-¶Ó ÷ëo^ø2«]¹RZ¬]’3œyæ™g–Oï>œ¯OÔwß-TË×ë¯7ŸÔ÷ß?;x®fÏV³ZÕ•m<|:ר»‹Ùòåq­.îgË•ùµVF­Îg‹ºªaÉêTž¨Pµ°þÚÊ+×;8#xe}å}€=W³ÿÌ®áݼÑÿ]ýcöb5{ñ,~ƒxžfð×ëåWµ:¸™ý4[ß®¯ÑÓ×ëë 5?»^¼|¦—ož¿:P­ë†^+tî#ºkØÝUô– T¦îЈ1¼Ô¨Îƒó½S…»¦e/ô¢¯5_ë…1•Qóº©ØVWzáð¾éð&׺1øê«z‡›àÉxEkÎñAÀï@›µ­¬šßé…¯ZÜiMÕ«ùƒ:×`vÞà7¼¹ƒà'Ø2 ®¸×¶Só' +N¶¶r¸ÕÔháT/àÅ¥¶·}Ö¦E ±\¨·sxF¶Nt‡Gƽ:‹èŽ7ì탺d/ð:-»¢+;|bFçA;< îC{§tïá2ûVÃ¥½è"8\ãwì%Û¥%½¿àk¡éáZ:ò`ð \!¼Çlз¡c?ds|–ºÕ& opŽÇkž¢^q‚áù½ñQ¨õj€š°Iu¨j‡oI'àjƒ–À¢%ß¾DÀœ¡+üÍpP9(9ÿ ‡àt¸ž%¸XÊz‡W»…¼E¬àO·&㮄þ¡hÞ+$¥öö±äNS¶ÞE„yPÐóJÑ]‚ÈK†„ºç”Ür"éò à>V Õ Þ’—?á(7|ª¨>(µCó\ÃÊŸ!Øj~¤ +lp£-‚:¬ÂýáëùL¢Áö¦ê2¯@ùùÃpÖzE®`i9ün¨À(WðâXY¨xSiƒ_6Öz­2ÖW¾÷Œƒ3õ/íˆÄ&gL–ê]Øši‚c8Q›zAVlFOõÓhå{ðÓ *yE¼ óèÍ[­ÅªÝÃo†YÛa +LÝV­ÁÔ¶UÈù8C~‰~Xf1ÁΕž<÷ ®oþÿŽuL¡ ›^"ŽàñWQŒ¤k•ë#16Óì3ƒ-ŽN ¾@Æ—*øF¾è _žH¤šSécYŸCdH6ø¿h~•ïÛH7r—k[u´k(!ª¬h™õÃFË…T$PÂïÿE¦S%[Kãî ³;ÔxhP'Å?Ñ(%P<ÃA”俵ícYð ¶ò_„½ntŒaŒ„b©˜ÁCH6j/‚@sú‰³4AèX0"ÕK~öÈEý4 ߈•ê÷œ<Œ韌WÙLºy]¥°/´¢W¥vÍeó§]s*¤XCHº¦Sº[*èË0R¯wÆH#0Ràáú®ªCoøa³úm·SÝÞ̽aå‹rý<Õæ¿ $Äa”Z +È˳Ø3I@vƒäÃwWb8`š&A"±³ˆwve|GP .1kHxCEó{G±x<O'Ù)ÁjGúãàÕE6 +‰±s%úrKFgÙ6¬ëØ º†:å6RlöogÈùí´Tp'±îÂw {§qª3îr§áZ'œ\Q¼š±r ² X–ã˶¤Š@&ò,}6ö’@oŸŒé-Ð$v…Ø ¸ˆÓˆ£VÔ˜ìö¹õÐû“3Å*á̦ ßÔzFeÄš®‡JY4±¨¥jü®°"ïmÞE í³¤–Ï3e©éäH36Ê&šã[MÆÌcÌÞg½#*þG¯lÈ10´N#5ž\1©¤ ¡úÈL[GòN¹Þ²Ð2ý[!.™­c@…ëÉô‚Ú'M¥0l5^Žq¶á¦0‚ÛU<û|C˜öøðj¨u;È2ÐáEöÿe”¾E‰IŽ_«Ñ7¦z.÷SÞN(ëd•ó¨èÿܨèi‡Ñ~›2+¾F;T-í@_ǹïú&Sª óTTŠG¬¥À³ð¤o@û.ˆ‘98ôÜÕ}Ë Ø ,WæWûÔê|¶ˆóà©*ƒ!AÄfˆL×·–!âciVÄ4‚RªæêH›(Ï[Æ:‡ÄaLb?Ü@aGž¦z~¯áãÃ-ŸpB#Žæ=¬¿hÎXÊþYäükÞõœ‹äç#þ¹¾~Çÿˆm””õ-þ+¥rÃú +:bç<7 sÒwZ‡œK#çõUÊEò‡ž{é_à{욦PÒ´ª9K5&Såšé6®«lÛ÷œŸt‹6A±@Õµ°ÈM2?5¶†TÛ>Öv3œFÕoª!ª(À±¯Ô€ƒn•%pn|ì]ÔÓùܤ¢7]Ûì# Î'" Q\gÚ³Óæ ;‘؃‘#>^Bw »”"*ßgádE`2½Y +íפÀ'¬GXÐ!ã:Ëæ„»;ÚÌPÁ¶[ÀÕ8x—Àµ5%a³¬LcÒæ¾L”ù=êܧ 8Dx%>,ô±cSëé8xq[ÂøØ»ŒÄ{ä« ˜.êAçt/'æ­ŒcödœbŒ4Ød1Ìñ˜°›[ +oË—âx|Kш,³@¬u¤½KeµãéJê@úV³&aø\ 6xÈ 7ŽSâD“ÄCí»r§.C•F +@#g](_ÆË«{NÁ{mÖ“îäLàC]¦{ +Ì° ƒ*\p—:›5ÛX¾)Ò„a¨ mRÙÌlT”C˜ÀŒÂ›~Ö‚ »Æ\gqB'N¸Á\Âs5š‚vdŒ“ é³9ÉîŽf€»m2254¬Œ€ŽúPÖ#/Ï”ì˜X›1 mXž–=QyàŒ¾¤¾(ê‡KwsåN=iÒ™G*[ðœò\?ÕCþbžkÇ<—¹xÀémê<Ñšœô¨u‰Ò×Hr,ÌtîˆÍñ|¿˸íc¯á†m š+½úm·£ý°i6[$Yo*' +CJ³eH±xoYxiH±8¤pÒX'gOÚ­¦Y…"|º;UÁ7pN;Å£þ¦éä±7£Éi…¶C~Hr+*„IQj7e,ͤÏr“üE»EÙ I”J½M.„ÍËò¦ª{# ¥ÙPY’ å%ÉPY‚ÅFõ¥þ‰ ²¢O*rµ¶Î8ΠÁ¨Ó+Ú€ŸÀ…ˆËÙñì§xH͇4ÃCØQ0À¼±£CÚtHÙ7{l)®î¼%J€ð„ÁŽíz´EÜesOŠÿx“¸Íh8‹Ç7eç¸ösn´g»sy¢1x“Œ[o©ê¶ßhliëò¦},å´î³)ÅŽ LîùãØ÷ì;hç.Ô­t.8*æG£°ah‡Ðín¨Dn÷=9pD‹rËíÙ!pÈL½ëzé›uDÁÄ`dè·‡¡¸=ö¤ÀýŸøjom\Çâ_%V0îZ’e[°,Ü;ÓYî»”Þ…¥…¥´ÍLÒ†4éÜùö{’-9‰+¥e`ì:–|t¿#m¸äíÄm¯II\ÕÀ;Al`0ÕGs0øPBâÒ?Ô'.}M—8X¢£% ‰ÛZ“€Á; ’0P¬wÓâÓY§XÛÈò¿ïüBûæe7Ù8TùNvËÚž–•nf°ç‚àÙAžä« Jîàì\ ºC‹zò ¨Fxåö_Çdv´­È +#ÞEAj°aZ5z$jÑCù÷yòW›r+U’S%ßJX]mái‚¨ âW6 g_Ù”}F¯¤1-’6Šê“—j?@_Fî–Ôû¨þ[} ‡ +Šª_gÛ6 +õïeYê\|K BAôÛÊÓ¦±f¸m[%o«G³fKñ¡°ø8ß„^QÂ|Z£ÚA).„¡]A_ߺ~⢼À¥B[|Œ¾Kk¬Í³sH`.á³p3Ç &'“¸jô9è?ñ‡û©[ +[è÷úé^M/o¥ ³”Ýᜠr÷| 5Å&Ø?1‹€‚¶ËbŸêß9&NøüC-ÚCH*§ë]-<˜bkÌrrê#¶¸ø9¨Å›Ñ·Íhñm,kñÚ§ÞWœ Ë“Ï¢Ä~„ŽU¥»àßwé©·GL½R§æÔ·åhêãmÓSßʬÔW>õÕ¾Ô0ÛÐ8X.Ä!¦ä‘ ÇÐ0¦C«ŽX‘¸ç ŠèÑŠÄÛfT¤Ê©HݸŠàÍîŠ Þûah$£¸¡UO0Ç«€Ùvã¶õXÛfT É©@é+Pî«@È%¨šµtEÍ?_ Éw kdâä´G¬Ac;>Ë«­A¼mz ì¸æâ’‡¥}¸<ùYÙîŽÐHÌP¦´HÑüz¦d=ÓcƒBÒc¯ŽÔgN×Ü¢¨gNWy0f([ (Ÿƒ8ÝŽÊÖÁ¶Ì’­¥'–r±„\’¯â!"yÆâ°Z ­ðIÁf f‹«žŒf« R-`ø ¶S*õhqÅæT(\Ù¤­ÙÍ@ÓÁÓç'˜[Xô—¦×¸ÊÖ–ÆÈ€C×M¨ÐgBb|Oз-Æçþb…ùàÄ5JN2zwîv;þ½X•wAMN‰[ Y3)ÓëOhc×éÇ=&/€]8ˆ™í8/ÄÛf´t/$Ô9äòä_ТÑ£„N?¹ïnn˜²%à üÍÜ-áñíŒÛ4ôatÈEªj³tWÙ¸•µó|ºå¡I.ïû)GƒB§"¯–WÞ]”£e "HwM®n[æ1ξêjI©ãã]ž|±R”óÆ‘G×WAXÓOëÍOwãÉÅ×l±`¶ÚtÓbš€®ÐTÜ} Ÿ Mv7Å (± E¾v 6s?ökyÏÔ6iËØvåÆ”oAÕÎC׃C+wèþÈA +¯q_E˜X{Â' 1Nw‡ƒ¦óý6¤Ÿ†À³æLC[î²!Ý4Ä»fLC– ÙKß}Ń@PQ×_£òåžEN#“Ý +ªÚ\P‘6wÓ½l-GÙºÆ_‰äæ¼Ã5lÜâ 4< +’ºa†Qx`å‘`ž…µŽlYC|ÚlЖ&UôÙ‚®è€Ãøؼòí™ §c·Ž°‘Žh"A_ýà–/ün­„'Më X`ñæ¡ÿB7XœÞL©yKè²ÈëB5cÞrI.c¹Hµ¼‡¦Òüÿ\®\c>ÃJè”o‚R= ´'A‘S|è©—Úst¨k«^׶|–Xx_9å?ëPW<º×·Dú_PÇ4¬é¬òˆU  :>gºóuw°Uh«:Ê4¬ øÝ~%r¶¸Á*fÄæ ä‡']"5^^ËmIP¯@÷¥ „” ÒUø†“ÄD’f¨Žsì:˶M;ÛÆãcU܆ÕváÕ¬qÞ’W_ ÇGEíÛ¬¤(W€’ÎO(<]aOÕ<îÔ¾ø„dq«ñê¶æ(i¿ôœ åçÛ²½AÕ¼=¦Áhµ¡ íuó—´½¨Ÿº¡ÄY#R¥¡»iñé¬;F(™¥c8‡ÆîhçÔú#YÈ‚³¬`ʲ1|¢3Ê6dó·/NÁþ“ž@@_|ì¿Ò(iÿDóËo.àJ8üAc3Z‹ø‘:ƒx›.òf_ä¦=mºÈ?žSX(µÙž…äCð‹Ä_~èIFŸØwó¼lÚÓʶm”î,žWåž—°[ÓX3Ü6è•L%ú~d sgT;èÏ€Š e^êb΂ç D9©-‚ïÍ5.v¾È:K  ŠEt¨h›,E«Ô|à[oŸÏ4A‡£#‡GrÿÃIMº+r|¡–×#n<ã:` %Ž¤Œö\ò¢öj”!øõé¨ô©éÒñÃÁð aXî„×|òN³{ôúb|:Á‘|ŠêxüðÑ4#üðɬó'³ç©ÿ÷d¿É~w6m/¼‡‹&ÆP¹3º6äºþÜUS–ª‰ †!5Õí³£Úlç8B‡{–L¾—w5?&}…SS“&nœ÷qÚØ©£—½bÚ¸¡/ý~¦¥$ȲFѼw#þVïçÈ~gR1 +BïâÈnã]G1Þ5"Áb~îúV ¾}‰2¤ÄìÂÑ°°ÑEu~q¡ïœÞð]ÃE‘µnÞˆƒÖ“ß™#ô=““ï“gÞû~—´”»‰Yiµñ߬°çÖ¬óµ o˜N€ëäÐ*³¶+ “U^U>Þ5£òUjå·×ÞV‚ÕêpóÙÙÅ‚ÍÌæ‰Ñ€&ZÑDëÆ¡ l„*T9¾ÞÀµaØíàÆ2ð&ÑìvxÂJ¹#âÍnM^WÀñøt¿&!âùŽG]øp +ÂúŒ‚±ÎCÔÔ|øJƒ¯|…ŸTŽ’Ñõåy–Ðͨ<·MºÍêÀ·%\TŸßæ¡Ë6sç>=qÌ €,Q•£ò䊓 ­H5J‡¤J&*ˆw²Š ÒÃATO4¿<دW¥®Ñ)XÄãBJ?ô,ø%*þGÿü™‹†5ŒxA/™Õýsz†Ð@ìƒü!üç*yšWÿĽUn F©g‡*OnËkl…ËÉêLíq-"*õìÑ-x&ÛÚ.•5®? aàæ„•:}}R›¼Òǃ0ô¼&¯Æ`g°mF—›|ïÑaL\‡?*ÍåìÊã‰s¨}°ñ&?ÑͶØ4Ì\ÞI¬Ò ‘‹ÿ[sxúw¡¾Ç˜Ã³Ÿ ú;%Î>è ìêΞMn<˜O@)’ {äJtÞ°P +ËÐÓÕèé:ÃÓnI¡–,"%9” þ [`­#kéüf:¥Wv̓CÊAjÓmž)wîÚ§®÷ƒãH©»:Zâ9€•Á\)U‹ºÅö•¢%ÄS””šÒGM]²ÿ"•ýèý­¨èñ•šòø5J!j}Û¿?¹EÑO2¿Âç4*˜‰É²_'QãZ?O>ã%«>„çGÜ”´$óÄR®I/‡‘o$ÎÀ u=·Õ7}÷«@´ñùüñ¡‹ŠA‡YÁŠšõˆo¤òtƒ8 û J" ¾ +endstream +endobj +90 0 obj +<< +/Filter /FlateDecode +/Length 6746 +>> +stream +H‰œWÛnÜÈ}Ÿ¯èGXŽØ6É`±€liÍʱ×$’`!K#YöHöŽ${ý÷©K_Š—‘8ÍÓÕ]]uêԩãíÃÍÕùŃúñÇÃ7êðôüûçÇõÓO/Ž_ªÅ‹Õ¢RÕÒØþ;gÕözqøê¬R×÷‹Ã•þ½RZ­®eµ¬`ÉêB…/ß”_6`ͲVZÛ¥mëV™zY×lnÚ«‹“Õâä5œô„öh ÛãÓéáÏ·•:þ¼ømqxöåü=<=¿»Vë»òÕ‹âðõË_ŽU[›¾· +ú„njvs¼ä–šÔš—j¥­_VÞ*ÓÖËι½û÷Á?‹R·K¯>À—nÙ©ƒøR/µ:ØZ/[pCÝp³Z|.<.}Pçê²(;üŽ«+ür_”?Ïá…Fó-î£n‹Òá#¾·øå·m`Û¢¬qû»Âh<÷A})à`‡–nið´×_“‡´!z¹XÐÙë ÁVÝãž_XØçõ²€‡¥UïTöÄZ\þ]eî`  ÷¬pÅEQ¶xãÐÑÇB7¸þ?-Æ#_·<>ރô¾Ôõ¥+âê¡è(€ã;þwõ·„Ž'óo{ù略6~étí{¹=(%ðžÜÚ‰­ änìîíœcì@Z¼K„EA·^« NÜg¸sC0Æí¶0´âÿÃ_0üà¾EûÒxLËçÞ­Ú¤J:â3Ö +mdÄCÛMFåæR}+¬ 9/ װŗ±“Ͼ#Ðטªä½nÅþ¡ÐH¸2Þ­Æ;€£uÞNjk”ÃË^*Y á'†Çy•çéšâ²¾ HøÉ%" :Š]p$Fhô +/¾b8š¼÷=fEc±$Œ&ƒE‡‘šÑzF†öÀ¨—[ƒÃ;Z'rK9x‚À¼âƒÊ¡Ÿ +S-qÖEÀ1žšùxbŠôWšT ò˜è ±RÂÜ Q[5"‹Àüa­„Çýpl<ïÝàÍbèÖ»NM¬(ï¡ED·10†èþ;Ñ0ärèÕ²šh!»N† ¬½)8Ê×ØZlb±Pæc¶é :äh9ø’ µ'«$ÇW¦¶ë©äcKY €];.Z"„v[ׇ­ïÁöÉ FT%„f¶}ÂŽA–ŸÇknyRŒ•¡l’-8mA^2Þék +uB˜Ãç¥Zá!9†ó©»žë:}6–ÚA#­ü.0™n©˜fÔPÐdðÏßâ3®„{_M6Àî Âë$ÊTC!­˜ ã/9VØš4µ{Ø'lo†ÜËÈï‚hŠQŽ5{_Þúέíö}aÙÄÇJÊÅÀ.’{ ~ +† 2ôݾ´iRe|d¢ëB0a Û“¹pv‰—ž`MÚ g u=>ªüNᵄ„æjc »iÍ%JØô)dÐoXÅ.Õ†‹ +5Å5’8ã龆°é«Ç)Ä6›Ðµ2:ØÇíùLé¦ò 2žT¢¨„‡ˆú;düY=yN¤bD'¤éç9Ìד}~"b3,brj.V|5Go œÌ×[0½öÚâNÁUU¨æ +o‚’Íw}.>ET­Æ0ð‹4¸a ÞaR©GA+ lÆ…œ¶=p§¶ØBMâöû µÛ˜/ÃH¸¾õÝØðG /ê'†%¾o¯VÚüþÝ€gT¦ü讬ƒLÍ‘²"Öréx-ª¿€J>æ}ÁŽèìŠûkª•Ž 8²¬®àùœçÍlÍ´éÖ y/o-ųÁuá³yg,.Z£×ˆ!+….ƒêÉækŸƒ¶…§Ç¦H.ƒ"n1è›`<îa…#ò<B‰b·‚Å=ŽµAØá)"¢[ïîa”Å!lø´LhE÷I"Iäwøò6ü(ñîWvR®~ÍðÆ–YXž=>fj/8 ÿ1Æì,Ûo¦f—¸×â>G}¬šuâ¥KuM9Ô#zaË*ȽQêÞÔ}7¥&¦ëlÌO‘EØ¥Mde"?ö;F:éIZ¹†~Õà¦_˜ù’GjÔ)ƒ7̬¬©8}RÂ:+ê,/Ii¥ÖGÒqöù¹Çg~0*L·ÝùXqñnê]`©[!ÞgO‚$»r¼€Á«+ˆ7¥Žýͺ~$$9×1”B(R‹ò7PÒÝxš ¸ +Ý8!Š(ñ=*ÙÇÐSSBO0²Škµ7k&•ÜN€7Ï{iBáz +1!Ó£WD,>Ü3 ”ÞŠËZ¶™ZŠÞy~ð8ÖEQÐîC#9-å°TT¹t˧ŠžÈ»ÊP-n+$Ãû'7f%‘› fv2 Cå¯FWÌPtÚ>ÄÔÌ¬ÎWÉAÐA K,3 C#ÕcT¶9„ûbFDBT©&â¶áLÎBbôMªâçоk"{®×JÕgyjÕ†5W*g”gÄg‰Þ>{(wÙs•ºx .6!ðäÓ¤¸ðcq1¥ÏbS™hDŸÙ>m¦snz*-¤÷˜7Ršƒïn$•Û~˜‡tœÌ8!‘7]¿ô‚ êë º§ƒšà™çÂd]måÔyR¾û“Êß°Ðn&hztz"¾(¾†¨¿/¨¡ÕyI§ êN}*laÀáh›ªKŒ^µ,ß4`‹{þ_dÙ zµÁFw™ÀGæ¹wãóýë Uˆ.5Ò–ÐÌÒ×6B½ç6—ˆ™#ŽQª¥”yÊ*LW‰Ú8øט-ä<•Q@ β' b‰ +s'‘À\ö›“Ÿ¦«TòG0]º‚¬±YÖЙcñœúg¨ Ç0šGQ•Ã©®Xsçã*àñ2= pí/ŒA÷ªf|·m.ñ$-Mi ê³X{Á4‹à‘ŠðSò}.ôšJ²¢®êÓ[ ÄY5m#Ñv ŠÕÇyÛk±ýg6FŒJû6JîenÜËnƒ~œÐ&ɘ§.©?"Ì®0¸ýÎ$ZBÓ–ŠÊbR-‰òÇPG\&ëcƒõ’£6Š8½Át¢Þ`.àŒŸÕ‘:>~§Þœ·wEáÍ+Œ]‹Ï%L'à•Øk<ÄÓ'=Ÿô‚w\[Ãç¬Ú^/_Uêú~®AX6à˜3j ÈJ§J˜nÍÛõBw„N§ú¦u^¬°€ÄÎæ-p˪©Å +gaWq\Ñ50:µbÁ葶A÷ºÊáò1úæ=LÂ7[Ã6ÖJïâ’äXýKk¢bMô0®‰Š%WD„Šú£g0z¨ÀªÆq°îZØd¡i½º¸%ü•R}³8[ü6©xÛß$yÚB]6ý= ü÷Èì7ðü|“ìélN4wßBnz&!'Õ؆2Sù ›˜¤±QÀÈ&$ml#B04êÚ¥qí”séB”ï=/4²Ù}¡dd¡†›®¶2ØÖu®Q´3 +ÑfŸsräFíŒ\²Ùç ¹}ŒRŽÐÈôŒžÏÑØæyÐMØ<º±Ñ tƒ¶t¹.OR[²=ÍŸ7£j¶Q?Wå ¶ú = Niu Ùƒ5âžÖ vlÿ‚6BƒÉQQ6¡3hšsß²¦<=) ¨WQ'¼Á>ŸG§4 +ylPO4ØþMÜ@øë¡»dhSA úî¾Eç°«5X’ªù%ʉä\›œïP=)¥CÍÿX¯²·‘+ú+z¨§VVpgÆÓ1<í r·ZFKC­öÄùúÜ¥HÙZªd=Q©â]Î=ç\pÒöëwÒö_P§/àý&vÊMÝf¨h-, ú›ŠåœaØ`òwàÃeÛ!ƒŠ5!§÷ ÍTëCAŸÜ j×îgnµÑ ^È× ÓÔ°ŠÀr÷®Ëm´=wï+rˆèK°q•+ê›?×7@¶¼·—ö-ô+Ž2V?©@¯o*KS%ißùxÇÛÒí;, Ôác~7¼x5ÿ’ç_6ó¨¿ÖÜŠU¬à×{2ø†ç„v³_Èê#¤ò;àå°é«-¸(}u~ñ½Àox|›™7ªÍìMÄÜ_ñê‰&Ð?¿£Ý‡¡Ìi¾lB&š÷¿d®Ð0-4ÌÑÀj"š:€[Ï®„9‡s %°žë½"¿ÔvPjÙNºä7¹A6€˜†t Ðy¹ûÈzA´ן±È†÷@ó+n$Š†öÞw'G ·™ùº?‡·”ŸÞªÿ^Ù’ZQøa¤P!¤ö=LþY€bþåx­úA¤¬Ø+Ì°Ÿ Žõ&ûXr¼qUœÔ¤uºþMid܉ª·ûÃþ7‚<ÿºR#Ð'¤÷ŽÁë3ö ôãE®³UE{嬢ç÷Ø]>Q7}Ãç ¿Kü?tq ßGãöTbfø!àqÌ÷íÿò{&A˜˜³0Ç’Ö>áŒBÚ<ÞàÅ_på… ^àgŠ›Ò_ü@Xñˆ–(b»©ˆ> ]C4N üw6ðHS7S’NGøP`D›Å#Pc} v7ÚCàðý+Ä…ý=W’t}Y‰/*8Ä·Á†yüYR6üÿÅh ó ÷ B—C»æô¹c9ˆPÃ`D,fD…¸°²&\´wèg Á"SÒ#D kâhÛý°©èÌ=Nø•ç¼C?+5̪©cCeaa¨ÛÎ|GýøB&ZbhÈöq¤¾¢/…63FSóû2 +Ó3…Üá>¼?ÐôHÁÕØÄ$âùiéAZÚÇ´´?––— W@Zs6Cšèš™`¢\ ¸õ¹ºÉË\ºmíÚ9/¢î`OQ÷àØ|êõ5©; }­6k6óO-ËBë¸ÿÙ¢ÁÙ7»G¦« . Þµ¾‹Ü½Nˆ£#Š0ær¹ÌZpYK=³Ñ +^c$øe†Ô%)=…ß'h(]zvÄß¾U¼—ΙÇW£§¸Í+žÂ¼…”G±òä凔p®U 8ÍÍ0b0bà8'b ûåð¹?Åòc~ðü fÏ£7,wÍï²ÄØqx7;”¢W ÛyLEƉjè‹Û39=ƒ4Υءó”­|‰†ïâS¯Œa~¶ØiÐ(ߦ²ëL¾G´˽ܓ뫱¤$3ËŠüxkrÎÛG¾F›¾‹û⯶;k¢‹Ö† ê3¶XÌ¿Îtª£ÂÅ®Š~Žìå)ÀéÍ0*OÚs€Í ƧÄñ£–¶â„°§Šø½€"Ýõ(Òèp!EúS98¶€"Ãu)2 d:þ•ŒÒ2.¥Cÿ½8ç˘å٥ϼk¥zqà 2«'‡›O(›Ðk7°š ƒõ‰%K»£bcç'õ‘ f»ã¯ðàn»‰µqñ$ú¬”ª´å!˜Qª,_Í Dœpë°c÷í’R®""vÝÊ+¥oCW>†W²§ˆŠ–â®'Eã±-êTvŽú 4´Š•°±¤©'Î…†)&u Ü‘úaÖÞáªJº+Ièü ˆ“diYƒÉ±oî¡d +«NäùòÀ¡±ä»‹bŽ—ö´±Õ ´uÏK4ê„ïÿ/o/…C¹­ãΑˆÑæ¿.æŒÍCü°«4™ˆI)¢ë\“ kŸØ—Ö €h°ðP­F°áK.í¶RÉž(föí„î"¿)ºTw^©¶¦e"µ‘'Õfpl¾ÚÈ"µÉ˜˜$éøC%Iú%¾åÅm¤ˆ×Å°oŒá”]9^ÇOKr}˜f·P 6°ÏjȺm«ÄQrDÏÈï)ò(Û ŒŽ¤ÙÙ_nD•<<×ÞÝÔ6ôBÌ×HU.&ÄÒ'µ`±llÁzÍ>îeÓhJk/´ë¶§>ΖüÞ7(‡g-Åòq'óM Ò?lµ†VÕ°”ÖV]f•90–ZÔ9<5*•½ŠÔh^š~zÓñoUX¾Mëù¤êZŠŽFqëXì/·|ª>ˆá.8íÊØ &Ù¾å${1APÑ´¶³ñ“¨}/× W™ÔWípâ--$¶§©.N1*Ïk“b™Ž¿"ÊEÀ)vå(§PÞ?5åZä¢üP’·NÇïQt+"é‡(0KÆJë Èß< {![áC5 + ¶U¥õ†‰!æNó?ÙÛÁ·ßGhuáëc>ªôp/igöÈÈÚ`ǶƒÐ£+7¨„p‚#“;©¢˜†vñö:ŽÒ?g«®‡9ëåe̪õ Ì N-Àœ)aV›¤5) c:þŒ9èd Ê+Ù@E{Tvñí‹_»Ëܦ®O¿jAñÝUÌfWþ$éøßUÍí%úʯù5¿"ÉZ«[}(«ù)’œš_s“M²yV" d:~ N9f ZÍÖñ +ÒÍ)«;8µŸW¶ºi Óñ›ÏB»JÆ­h§Ñ/ŠÆ°ìGcÙŽn7ùíªÏbÒÞ¨P›^´˜tL +×P¥;VHÖ$&Ûı“l$òår^€È+2¦ õe*eN1æàÔ|DÚ"Æ„øcéÕ‘Ò§LÇw4þ5ª“à=ÇÑVƒ0¤E늮íí XÒÑ7ô·H+ü`ŒdHóm…ÍáI/¥îÅ›I«N¯MÆ«D7ö !ZozÐØl…Y­à+®n£UEÊ øµ¢åt>ú„Ïð³’ÉÚrUUŠòü*¹a•’ч#ƒR¦:/·:~XÐpb86?ÐäŽogPÞkI—Ø*‘2oª“ˆ¦ß"vpLh÷/0øŽhˆͲ6ÑTÂïüÇüZ…rB€&¥¶˜-^K›øá~É¡®²c©Å ­1ŽþU[Õv·Hgky@g²’ÐûÁ±ùB[««X?c~|èÅ1B,n#‹®—Œ±gd_Û±oÓ¢|%­ÜŒ·Má"çSòâ]GúÇt¤ÈŒ‹F^ðÃÁŽ$q`GˆúoßBå~º«jÒ»Ÿ°ðý¶<Éýì–Ô×k 8rqQKÜÉ–ô-h‰¿î$qLÇï7UèûŽ(òd´:_2Q‘–û#3à Èfq¥Í§ØzH±Â4`2G"-—‹>e1¯ˆì7÷l —`THJù‹Œ»¿Ú`[oQw’_ÇæCÇñëÙ¤q€fW&:xÅ1I¶¨ØïÖ¨¿+ò*£ÛŠÜúÏìpþQУë1®õò2 t'wplAŠ÷ìx§q¼¶!ë53,ØÁ–rbÙ&¹Æ&áÏ“ÒÅà í±TMœêHœ°?uÊð…œ®xhñ*ªyR¼@8Þ5h摨fxÅ-bIûìòÿ¬—ÏnÂ0 Æ_‡@ù×Ĺî%¦©»LÒv¦¢ñü³“¦8…–¤ãĸdö÷ýlûºÛÁÝlÅ"Ü*Ü",jáŠË7]e›*ÓÎTÁ®‡­ÐëôÆ–+Ò㟗è‰ÁU鱘žüÙòô€¬INg‰ö3µg:ºÍ+ݼ1=:°î‚Ý©<ð‡¼+¥Ð»ê¦ ¨ö3Þí(•I+¿Ì@—2c p?¸B>£GŽSî>®à`§ÄALÜò¦€ÓAÕLe0«=‹uR̶R /†fõã9{9Y7¹Âºö?ÃYì,ÓÖ1)Ýæ­±šzvúFóW§¾‘:B4ô”F4P‡\ll  õUÖ‘fHÊ•¶d§]&µ¦ð¦÷ªb¼e“f‰§[|¥&»Ïêµîæð‹X<[îM_…Õ)÷‰ÂUt¸üa™ §¸)^šŠ}O°mɇ’\y¾îñ»\¡òæxU >ƒóF™?!´‘ôê6h0dc’v½–ÐB²†n~ý>‹RÌØgd«Òø ôº³Ã› nìád üå +Õmµ“mÿ»½i“Òm^†=¶êȹ ùÆH†}¢þœÓЉ;dywìɘ,x¶Ít•Ïeï¦ö´©v¾Ú3¾Òáe—w{r%ÛîyþHlS +endstream +endobj +91 0 obj +<< +/Filter /FlateDecode +/Length 5774 +>> +stream +H‰¤WÛn7}×WðQ ¸[M²Ù [Y# ‹µÎCv±É#Y¶n;’âÕ~}êÆ[_F3 x4=d³XuêÔ9'?m¯.Öçê‡Nþ¡NÞ­ŸïžÕ?¾>}£Ž^¯ŽjUWÆ:ø¿i¬Ú^¼ýP«Ë‡£“•þO­´Z]•uUÛF­Î•üñMµU{à_W9Õ MeŒk•q•s-ì¹9:Ö®X}9úyuôó¯pÒá Ü{áõøíÝÉßnjuzwôÏ£“÷ë[ŒðÝúöRonË·¯‹“_ßürª†¡Ï£UÔW Ss˜+‰’ÀPM§hÍkµÒuWuºuª3}5 C‹ñý~|Z˜¶j|ÚºÒêø½º/´Ã'ÛBëªUÇküÞ«ãó¢lášÇEijüá +·ÚìîqÅ]ÑàóÛ¢Å}›ÂT_WšªSÇê¦(ߪéžÚø<õ{‹kÇy( BpeJ·Ãçtò]Ñá‰÷E÷/>}ÀOø¾IÓB)Ö°õÞ}R—ßÝø$:¬AñïÕß,woH€‡¸Ò`ÎÀ ÉÇXï 3†FuP›.@ì“IQpR·ª ÊļK‚ð¹KJLAŸðÓ -mðF%œHéøû¤Ìü®;ï…œù­°T{) ÅàÏ÷>ù’U6ÙµFèwñûŽ¢/œ»–ço +Xý±(-vZx™ô›Ä@¾Ä§MXj‹Ïo¨¶ÿÐþ&Oªä„_`e‹+oC:KZxW x‡m9>¶\l1X‘µT@½®‘(I„¤à{%ÇÝ\©;ĹApêŽ×ø×XíÛ}!¨ëºcÐyÚ.g¹¦‡—×µA0Ö(oò‰øÒ¶w'@:ã`nÈ-PC6†Áñùóìàó¯kN;$¬ÍÒÍ›¯Õøê|ÀÕåDºH1µ´Ä®Ìoøªÿx‘ëÕgŒ–‡Ab3%Tu¶Áöi#d˜Ü ëˆñkŒW8—æEIø=—]ýÆã)íÉ~¿ž¤n°CÿgÝRïù<ù,5Iù8C&ÅP¥áųði{Hw€ï¤€Ÿ4’dSSC2kþÅL²ÇÝ7W êP“vtè®uÈŽ!N{ÆO“V„9ãÃŒR‡=1$Ï„¤ÆWÿ¹:ç7ú¨6‘4<‚MM«="|`Äù•ú­hÍ!}0Iàû`¿ù>쇡ÌpÞ 6g”ŒÉ†¾ªÛÁdP8.S9¹ûÝÍ iÎB­3•PÛÕ…í¨ »Ñd잌<«¬'_œŠüÚs1ïN -k XOÓP›\FÖñVg~8~Wkè$M…!ˆøáHbæ ö˜‘+:^G™°$‰àmíü:—]Gs<ÄUsÍ[In§s(÷€ŸWœÿ«„ñ»ôÂsáá÷yº.q%‰(1w€_·ƒœíÔ4‘ä:L¾42ÈÖãè*ðgº3Á „äé)ü²+&»­º 3ñ%§ä×…C#ÒQSÔgPà+üÏ|ÇG2ÍŽÓ‹³$Ô@k^J¡¸O‡@o ª3—G y7“*NjhCç‡Ió<#.AX;":Ó‹1é‡ Ê›¨Â]Np + #„d±™°šBÿ—1¦èÙµð Tž‘×Kf n¸,¨ãöÀ†ŸbÉhbÛçÉIfûáî5‡ö0‘ x` +σa¼Ó]x +¥´<‘oqS¡±™™æ» éå£'8N'ôé|‚¥! ‚-QÀ`ì–'º«á^ÖØ …`@öžè}N¥Ñ-Žv3$&Xó|UX5Lüš²z •êRpl +B90È@šë€ Y@ Â ±«¶—G'o?Ôêò;U‹‹Â?à-_  p½‹e5_ ­ â¥ˆ©vðÇ{ùå~KEëˆ1;ü„[Û†•„¥h¥% qCKz"%Û‹ö£¾ÜÿÖºÎoQ_ñº¯+~QwžœàQµ\ dQk¹ìŠMH ŸHíùœõ¥&Ö-æÖ[çDä‡çiÿl +ºívX‹ŸÞ!Œ$`ÚöMâ:B§Ê,éÄŒ eôš/ø/TzgÓ»dl1/ÝãiL‚%M¾!7KA Ë@JýîHó³ñˆ9%ãøœžJ9ö¦ÜÒt¾ÄÚÐÍ÷‡‹žEŠ Tÿº1.Åê_›±ú÷­¦õ2¸Mà +Ä ñ²¿9òðT G‡[@çl¥±aaVçÇG¨°-ðZgë=^4/ÚÄî>(”9È·(snƒ +bì£î‰ÒEŒÛàj,¼E +ry ‡voÊ0Zè•×pž±Ø"q ž…¹Ûg‡½‚S{nTŠâ÷BeàÈ€PÉ&>¶Ÿ9ΕÔRé<ŸÕËÛT&È´×¹×bwžDéD?²NÛÇwbeˆ/Jü>äØJ“a'?ŸgœC’àj+Á˜Fͳb#ê'º„D'6Kô‰Ðt@•røæ’Y¨?AÂŒf2m­E>#¦£ª +ˆúZXA±Åç‰èCwŒ„gÀ˜&¾¯•ÛC/%˜:@.é6Glc åªí| W¤ñrQK÷sÃPìcI2êÓ_hÍŒ‘FÆ«ÍŒ×l›0pGO%pQhA5åž)’±–ºÉSƒ·A7¦—ë¢f)¬¤à»¬V;™ _ØÌNêu(3_éZ/ §ùó&®¢8ˆhÓ»ñ‚&’;Ndg@¢N*(,6ˆ{iB[ú°Å$¶Ï«3d9©«ˆ[`[³à¶ˆ½ åï• +ãNÓyDJ]b2Ç6ókvì]ä¿É‘ÓÌ!œ†ð%·ÖïsŒ—”ø:ºÙDZÞàË[š5Èã\.Žýmga{ÒÆ–naª6ƒI¬ÁŒ$–ŠCæm¦.„ÖS“ãŽ{)ÞEÅ[7E8ÊÄÚ&Œr2z~Ȫ+áá²Æ’^‹è#WI] ~¿ÚÌÏ þgÌZ“|¥žˆ8ës‚)i‡¼‡ÔD¹ýö¦~+ T\Ò9­Äo²ø[žštöASs©{»0Ûš®O$õo òk;O&wCž DØú¹%5^žxê£fáê­g_í µÈC „n„<‘ÃÞ0à87 ³x¢ú‰ÀŸH,©b>ä(6Ÿû)#^ úˆG¿m|èÈ^Å ­M.ŽŠš%Ý@œ$_—Jí§JØr´Ü¥ŸV*2²y×èà-f*g:ž\Ÿeý'¤>axÝ…|½ð~FÆ"”(Ë• È²7"ÏâOF¢ÂU%‹:™h¹åš\Š” wT!ú*tSëM'OÚ@¨— A@ «Å>aw¼T»k4½) ¨hpàó}ªª½rñÿ9l"tæ‡jP¢–›÷ 'HcfííÇÏŽQ(ê‚÷)¤=œÇ—› +hf ›†1;"/ÙæQôk‡[3ÀçkzÕU6£V;µ:WðÇÀ¬£ðe×uWuºuªõöOx¥Ž”=uÅZ>G†ÂeT:3ª[Ѷ.6dƒ‘G2I±ÉѸTwŠ!ìXœ=ûØÆ L(F³e2b™˜J¿Ç4ùx=½º¬GƒéÂÚ$Æ,¬&N£ÈDÚ„ß¿ÑÎ6T"3ÿæ„߇Éï¸ aî!› g‚œf€<Ö®Ï$·ú²çÍLMm'‡vVˆZ}98_[É»¦éôJvøä2ðùÈÇŒ6fú¶¡,ïÃi:}× ö`zfÒâòh€œZ'jŸ>¨ëðmÿGäìãA„Y~î/œ(ZDs;ÞiSÙãgþJ%¢7a—P Š€•¡eklȼY²„$ÑæA—*vŽ3¾2)ÝH® Ë6 ™ü6K¯[ÀήŠ­ ƒÔ̹„@Æ.#*ÊžE."ÝeBKHY&ÇqIlƒÝrŠé…¿N [ó<¿⊠=v\áv/Á^/®*U¥.W¥‰Ç‹ñ'íåÒGnEá¿RË)`Zi’EVÕ2Ð*@EÐ3+%˲[vÔ~@ÿ>¼^^>ª§+ƒl,YRWñqî9ßñ ­T(àm*† +a~Ýi,—–8º"—,V=$³•ác~Ÿ°BåzvÞT–[*¥ë,*³&(Ǥìq;EácE™p½.'ÈœQ$ÁV‚|&Ÿ—b¾•ßY*—eÇ!¸²Ùkºtž)o¤Çwš•F9Ú³ô’Zø »jm;K,d^TÜÓŸnRm|l&©¡nE=kF1ïÜ\:™7Ûz›W…þÍÀˆ¬þØÎðXVHˆY±4Qq8õíz&KÔÎ7<öè;gÞ÷Ã5š2ÄSüÂRSC.‘3KÌ÷Jdï.»f°Áýœ]K„ÆFíà!çÞsÏ0¨¡äØcÈ;Öé=̉¹¨rß[ýn+[Je…i[YaRåBZÂaîBÞÍšÿ–Žë'IŸ‡éL›+1°˜ï|Ð4¥M þâýð#§‚xÇÒ}Þ¥†YT‘=2CÈsÉ :¥Rñ©Åµ©èKÙS"/ÕKE9_±]ÖQ± 9üAœ@~xX•¡ü{t'’;…´VBÚÖ‘?*üOl`'ŠCƒçs3ü¥}aP#ð8ØãO ¯È©Ä‘1TtkPº_µ}áÐ#‹Ð´* …nq%tGnkýlXKÕÆSZ°:éÂë¼ÄwhŠßù×bÕÃ]ðIZmBñàŠ~k¯PôtÂù¤F3I9ðÖÜHâÚ[é÷TànU¼ávÄŸü ä¹WTîXƒ–Ý–• +áF\õ{¸‡_ãE§%…ŠCf½ÛP°„J*Oõ›ø§¨ã2“›¡FeŸ)ëY‘µ È:0v±\|³Å¡ÖUa®’»y«­6iNÔ,……áÔT…eÚ(, ³xë‚Ç…ybË|¤ îq§LÝgØ£-•îæu??9Sš“Ûn‚.îÉ*wJ:Ië,†:­áyÇÅò’Ã>Ñ‘}¢/ ÇäK·¼Ó@Ç¥ÝÓýðµÇ¸Ž®I¨v}”{¯E &Æ2Â<‡/ï¸íÂ<÷R{ùëc-%ò +‰¬/<¹ñÄqÎÙ:îÂA%@¶’uNåÏÓtiðèGt ×KÉj) §û(ŸZKÓ~ôk!¦hø§W¾ÃU¶wôð"4Àmáþ×ö³Afç͔뱰ᴇŸ#YUqu¾@²Aƒ(§RJ¡ªˆ†ŽÎë6·õv ð}™ ’3{`(QI¯øÏ;—§ùµºËñäÔ€–1é5I›ˆ¯Yb§Õ\¼‰ÜÕ$¤Œ°cèVøܸ"Üð§÷¸â¤dö—“ù—¢zÞ“â,J›¾!Å‘à¬Ά( ?\÷‡Hº€‰ÿ«¹¥àûýŸôßs\õL³ŠÈ0ÁÉ|K9ñ÷èÑáÑQ†·Ïïès÷1ÎÁQü÷¿¼ð€ƒ|NÏaT|úòLŸ‚¨¨]ðDÑ¢âGçŠ}f²ü|Þqt¾8ºÓ‘NŽüàƸÍÔ3j§H#nvtd‹ËÛ~ÙÌÐÆÍ ÓV*1H·O¶éÙ–›Á¦g)ó¼ó†9ѼA1!sBÔôfÑ£ÀG¼„ƒ}þ +ÜDÔ$Ì䉙L—™BÃLS™õ7Ò‘=2T Ú‘R”gHhÈǹg¢BÉfÝЋÆ%:ˆ²\Êf›p€p x¿öˆí°rkôÖ–4b—Ú¤ äÄÆjáãÍ—Eˆ{•i"7ÎÉ2'6*Ì|¢×$VùßLx*è&Ó£¤%Ó‡{éh©F}b¨G"S|,­äÅ+|…£™°V¤%Hp < ‘{™•+Þ¥"1MÁeÍ•²6„·aEX Ô½ ÌÖb~Q/‰/õüzYP"ã¾—.‡ +E†3»Uù'^Ñ+-ë Ë€xOÞMƒÞõ®—F⛀~ßQ6Ûè~"ìý2Æ.L!ƒ½òœ,(S+MÝ • ·’LË@rÐ'VÍW\BØ£°¶å]»ëUµ”0«%{ «-4µbתs-’=Îñ›$Y± º¡ûhyÕòId' ñB· ÙíÏt!0Ðx8Í;ßgúàr¾uÔ©Ô)øoÔëæ¢sR'q–i^=;2Ç}‘Oèó†æ%ù—njF³í¹,UyÇœ¦I5 ;®ªæRQMâ®Þž·öì®ôÔƒA„/d#<×<\Ù!öÚàtÜl”YãH‹ 6ügRmWÅ'ð2ˆPÒbñ"ܧ?ÇÒd“*UaÅ3GkÛvà¥r`ƒ—ƒ×}³çLLÕiJ¢‰C6›à3/Š@[ +›ˆÂlIa´ò.‡¹‡åí>(ú$6Ñ>ƔҪ r¦Q8 ©½ä&šò‚úÞ ’7ËE1§[´A÷ò¡ÛÉŠÁÜheÑ6,.î•~ ó ^Ân^ 'š/©¦ŸhclpûÆÇVR™æF*2FaRŒªIkîc„êhlj³ugêršºÞÂÎpÇf†­~äâð=–ƒE×8=á¼K °Ù|S0ß +éØ÷Mþ9yNáO}ï4ŸC‚(×(ßó¯z嵧!wõ…² «æg¤s»þ +Í`V§ü"foǘÄ&Eɺ ýq>Æ‹Û! W†º]¶õã +ERÌ]rT1¾á;ІM¬Î´Â_Ä¿ p¹áUiSXº¹—rœ‘/#¼åZȈm„‰DTÔ$ ŠÆVf±a\wâøÒJ+>Öé‡ÖÇÂó¬0i¼nèð;U,YKÊAÝ=jL}âw<&(O¨Àkø™eR'1­šš»q…½Go²ØMÐ_‹ó®O,MJB^(h1ùZ9ÃੲkÍY^BUevˆy¹(椴թ~ OýϲžÓù£„ é6‰v²°¨H–ÿ¡^ù½½ë³˜—"{èrTX'ࣩaúmeVïØ?3njº,ríz¿ä9xtS´ø×qÖ¡”×Uƒ#¡¸îÿ +0 +üÁê +endstream +endobj +92 0 obj +<< +/Filter /FlateDecode +/Length 6296 +>> +stream +H‰ÌW]oÜÆ}ׯ˜ÇÀ¤È™á‚±-·•æ¡. +I^ÉJ$­"Éqýï{¿æ‹ä®wm?¬Ýåpfî½çžsîñwO×—gOê›oŽÿ¦Ž<û¸yÿ¤¾ýöùÉ uôüô¨QMmlÿ;gÕÃÕÑñ¯uõxt|Úþ§Q­:½<ªšº1^^(ùðAùº‡wà__wªmmm‡nP¦«»ÎÃ;·G«ÖëÓߎ¾?=úþ'8é8ßÇwa{üöãñËÛFlŽþqtüúþìoøãÙÝ•Z­ïªžëãŸ^üåDµËë*¼ÕïxÏ–ïy*×äêâ€SÚ¦F^ݪÖúºñVõf¨Çqôxí~ÕU;Ô^­ÞÁ‡±Õê>tu«V7ºm뮢^høúO]YµúY=j/ë;ü{Ë[^ïÁu¾Vgiäþnp¯^­`‘t­ž4$|Ui8Êà·ÜÀÓ—Óïpô­¼¶Ö•ÁuouE ¯µqøü=¼àñXhóíî²ÖôÒ_ìV¥Ýèw¸¹Ç¯zÀ?¸½ö°ÖÖ©Õ3 øZ®†Ýï4äž_…¼„íG:¹Çä=à3É +¥µxiÄdÞkCçA¾܆—v¸´2=”JaLídXr¥°:´á£þ÷é_#¶v¢§k +ôLÑY€t?ô2V*‡îîíÛ|ûºqÃ{¡;zHqÁ·F Q*Ç1UT¿ðû6”´'È}9ësÐ)Ý0œFÌÓF¾¦ Ë~Rãk,+µY¦%÷¿R-žÕÒÞ©ìriÙáÝ….g<¾ð[JÃ; +‡Qm´eØŠá-BÆ2Œp‘lG9hé/B¨éîðÁÊq†“Óá?H¨žÉVq!äÁƒÍ3`OƬŽ¸AÈzÄðšï›â’® +½hhY8mšÀlWFiR”èi•üœVSÿÔ¶å#åBûCÞd˜Dînzánü@èô}lÈ«éá{‰Î&ÌÝpª-MȾ< ’Ù™®+ƒÜïÝmnY‡á§6„Öùyã5ðó8vZÆ«©Ñ vOÀN—cG(0ñ·E4f`­9iÍlZ«S¬5ÂΦžç^W—¸â›9ý‰ZÑͪ+º!t e’[U÷‚Û Ô±Elæ.#ßÅ°Ü$¬}‚Ro ˆ`@i›Q;ÞÆäý"è—LWvÈ÷#H6±ÕºOñàPðଣÎDC/H|È+Äz‹BÚÎ=0lÒÏÝvÉ|«ýÁé›RŠw‚ÇÙÌ¿Â –w¥è”ÕæêdE8‘WN4p5eÿ…ü tm_aÅŽ,›o+'>’j;=M½YiGú}MÅk1Cñ*’1ÿ c`¶;ß1Í@Þ{£Ut„+Ã6)ßšX5¢…îdK7Ò–¢>A,.ËÀŽC”Ç…¤îž}ćéÔÖ­ STó)S”5üþi÷ä³ .ð™7%"Aɶ#ÒŒÙô2ã 6¬‰Ëæ.~T¿Û<Á^ŸšaÃû=—ìoÅ&ÌsÉ»à#‚´“Ìh:á3™høâ0µ¤‹iû»¦•8UÑ••Ù"ƨKÜ=Ua4{.šeJeÁÄ¥£\ô¼6÷¼ ÕNä±iwà ®”†D)èàgX(óÀþK¬;O¬ï±âÔÌ@&Ëóg"ÇO]>‰nÃÓ–‡VÀ¦C¨ü3[M_šÃ¥EpAT·7קp‹*Ljð¶DPŽCòŽÙÄI6dA÷'æ-oN')Ê2ð¸[™ÛI‰ _M›Í ÷Ú å<ËP™^ÊÎævÖq³ñ"X}úšeŠš[†P–9 +|¶b)§CQO¸äPpÞõg`£zb¤úÐÓ}fˆBŽ—0Wxìv.Æ|´ÙeSÍPèß‚Ðâ´'•mÎ>H4ÉÏìžZGWHZ‹‚5…ˆõ5rUCk2è¯5“zDr¢ûr>‰—DM¸&‚º˜,LoHöDx¿C>N\1; Þ 8%øÉ”SæxJ9vB„¥]Í|]0"ä÷6 ‡¿`Þá§Wêµè\)o&·-Ò<»ä-ÇÛ‰÷Wb·ˆ¿B³åŦ°•[U’±z‰?´_0¡¨7+ ö¤$Bȯ0…ðè5Þ¾S¶\!¼„ö†§oôÒÜ7¥4Ûa†#3µqQs8ôŒ£©xi7âõukHw“+úÿ°Ï6=*wõÜ‚îŸôvOrÈ~9ô¦¬©ó;jj›Ì‘32;ŽdJ'«¬[ƒ“°ÃüÂ>)ê· yîžj’÷ReÃ^pæÔ6Õ.‡Ï…Dõ¤-CŸã_.§h“’ŠÓ›».XÙðVûWÐîYÁ,½‡TЕ¦ŸæTA@arÌkôæLì, Ò8ÁçCe+4d¸ ŽIJ7sULb¦«Ý¢÷ˆP’‘#SÞ‘ÏèÐgœHžhÛ°´¤ $º$ç~ê2}ø,}ÄÁ~nÿ’wÉuýŽ¢À ›\å#Cõx–IŠ¡ ¦ô)àòöy E×6™6×ê¼ðhõÌ"ƱV +‡ÚŒiùVÆ磇ÜD°rŠÐÈ·ß_™ÜÐggÖà·`0hH9+Á]p°2(ŽÂxŽD„à:!»(BígÓ&Ýo¨M¢FFzfjšË®Èu¿åy>„Î +3\›fÜQÊÞ¢æI)ÙKHs¬ná’ïp4ë1ß³¾‚ + øè=ðœ)î \J´¤Û'ê—ÔáA¸|ÀºÅšŽTû×u,{ŒÇöÄwcæ¦ææ·ù%eJ”A+縹ŒÜ?!«ÏiZô2”ŽLlb+ V„Ë¢p…ñ.’ £ØÑ4¥ÀúŽ;]¸4ä’ßû° N’übÅt2iNë°¤û×bh&ú÷=½Pðag;€Lê~+òj½™Å( *Æa4N8L(Ìø,9)g–(êî-•gˆO`·Ad¾%}¼Æ<:®kżxŽÏØ1¡Ž\5ƒ×ÁU2Bµ›µŠ <5Æ£ÞjÔZyv ­¶lÉgßh‘ʪ爪–Yµ¢¬ .}Ôu, žl¯L•aÚ¿Ns%ÚAˆYy ÄÁL°`毅RÛ¡”3Ô>#ªhoíÜV¨¹Wp‚|Jíµ&=ל›(@†~¯ÕÏ@¶tcç!Œ‘9Êà=’‰9ÎŒaA´j#nïRÅöF“ï’i¯ØçåþŸ¹æš°T¶r\ÉÝT<Ì„¦#å—Œ;„|»>ÏüL¡““ˆ9ó³­LðÓ&úˆ¥a6òoJÊ!l´{€Iàƒ &gõ0S. înªB~^|Жƹ5æ´WIoÛH¾ûWÔe€ˆdw6 ÏtÏ1h=‡ÐcYÎâر¬8™_?o«ªWER&H:’IÕòÞ÷¾EY±3H <ùÒÄæ•#ÕGUµéá¿6ø¯¼ 5©->ÒØVÚÑü_UäÆ™M­rr“yD„P䘹Gº!ÎÜ »,°“;Ú×*¯óó\Æ·E÷¶ŽüÛËÞj–Sl&.MÅw ýIyżÆ[Ï +e×)¯ˆõj‰©(ÿ¸—#X*Gý¶»ËÜeÌþÁ›;.q‹rÚMEӃȒòì†T­©­ŠŒfA–é@箎»Ã“¬Í%l"¦³$¼Ý/P^UÈ Wä„\è¡\9ibÅÙšÛð¶wÏ=ny»=ͼ©‘³Ä0µq•¦Á 2Xæa0«9M²Ö•NmÔM ½›×“ó\›gl‰Ã÷BúkÓe =}m!¥8SÈ/P½P\+R…×Ìã2ÏÕ¥ ÚJeV£ÖÖ£þI›Îÿp¡ˆ­\<—Tþ½IÛ£Üz“±¡¿Æµ;ÖHºãwwŒ¡Ÿ3ï^e5õ`Ÿu¬L¼M xܯaÝ^æ.F´mmu¯Üù·+ñášÁÿ$R®MÈFž°yùaÆÍÍg–I89³f1g†Ý 4b{È«ì2¼CY·«æ¯[ÅwBà™OxK—¹¼”»Àäull +O½û_¯ÞfÔ–ñX‡iÍ\Pææº%rt.ža\ßëDߧÕ—ƒï ›„Í·çY¯D¿¤M~yqÓ‚Îx@ˆf°UDŒËÁ2+”d˲Ðxò-ôñÁÜä«-|¦ÀÞü °5Ù%LPÉPËxˆ~9íðÚ®cm/íd:˜™ :C<ʧ¤)%šf¶Ï®’|ã×& +¹´T§Ò+öÒ"=‰ù4›Ÿ«{¡Q<8ós+<àq[¹x‹¨ŠCÁÕ #ÒóvÞ|ཊ(RÅÕѦ§N*jÔÅiìà;fÐRµxÛù(ibíÓ©1åÙº‰ ã2›ÐÚu?Àþõ #"Ð37ø©%Cc`Ž¡tÀZÑeà,N° ·X¨¡“ËÙhʲ ¯6±A±Š?ìšm„íΞéwM,clîÍ.ÊåšZñ˜Ì»ùÊ'9`QÉ•Eðòl©èfc”zzü*cÕFRg©wj2#G˜Ë–ÿPŽ÷¶Ö¸¿ +“Ð;¿éýrQŸO.à»c@Uõ @䨬hâFD¦'™Â{{7à®ßähG(üÅ_–ôú»¢(²Ž€¾×*ÉJô iƒš$B6\T¤P­t a¦D¶¹)~½^‰O¡øãÖãëߡtÛ8Ô¬·ü›~êÝ"v±¹M"j^IDͧŒ2ð`0Ê÷î|?ÀGáüC%ÄBü}Ïè´žÌÏ™]†–Ei]XöìýÓaóùrûýé×ßþõþ÷Ï7oÞZtEòÞËvˆ"xÌEÇæåì`bËn¢Þê,½:3G£ òèQA}Èzåå}ìO‡SÀ ­x½¢Á>Eoß¡Hòpn3bôoôÇA=ÿ³¡,Q%Y¢r¦¥ŒJ¢‹h­-J½ÛH»+oLdW Á$¸ÅK÷Qýò Þ1ú W°½¢KH˜3.,P‘¾“Ðö$‹Î•Xù+8€0GA9Á¨7¸%;¬<*ª 1`ÒA¯Žƒè{´êŒ÷ÜeXÎfWáOõ„›ƒ7iB +r#r´î¥¹ +7l Fì<È9Í[ M‹ÒÎËT°¸S/.¼¦#ò‡[3ðOáÔ¡˜îIy”…i¢Q…ßðddx¼¤Xzm…ï©×®õœ ìÒFÃÀa§}n7‚„Eöè-ºÒý‰‘4ð0 Ks6îÕN>´J†ÙòªØÚ"‰1¼´òž_0r¶:¢\ù¤–<„€‚nZ‹<êB;½ÙT¸‹QÌYÛ¦HNÒVëܶ]rRiIÜIÄ0¢ÌÕhÿ8ÜÃ.¨~ì›5—2¥ðÜIC$µ‘±U0Ä^Õ³Â%¯¥3*/ö4GÎMåýdÂâf#VçÑÇæÍÑJŽˆ54‡ï2p1”îe÷¥´>»6OSDœ>qKáüÝ_hÃ|S=”»è4â Þg+·"ÄF¦™cH>ÅR+3E¯=Rê|Q¬‡µ )®,YÝ~?~ÍÀ¤ΡÒZ¦>æÖŠT±òш@4#"õÖcŠºôÑ îŠ¤4¤„jqå'gL¹{lAcb£˜ËUx„%(±1çPÌì&b¦…øŒjh¼âí +Çd 5-¤PdI'ä(QÕ:¾«‰Ù=ÙŒu 4û…B›®¶Ã8ê“–Çp¡ cfi‰ŸÝ2Ó&ÙGìZzk=úá꜑º=nÍðW àPÌ HCݤ-,žŸX£TQÕÒÏ š­ æÏôË6N®ôέI'O o’ÈóW..¹¥7l±§žÍ¶oçg¡jeT5? Ÿ|]U¥yÜœþ~‘›ÝþäôÒþ U4—7'äÆ©¬íÚBf “aK`d*ëÀsSÒ…KÔÚŠÌ,SX Ñ™?ÿÀ€Ø¯ v¶á»ðÑßÓ¯À_ïcnÔÛäÓ°ð {ÁV±¢^­d®ž²‚Þ",­2zv—‘?´$ɸ©u£qÀo_­Ñ2ãÙšYŸøûnI«Dά‡©±‚æÐH_Ð;qc[¤x4Y+n½dWÐ0Š-½-Öîøq +„ú™ûþËn›É Ø"¬²UË?º!OKTŽïñ/úŸa¿ŽŸ£‘ÌZ¦7é.;†ü惄̽|ßf%G¹^F‰`Mçø"æå ðÒ‰›'ÖðO™•æ/«ƒ.zzˆ^ªŽÆË^u•Â19¦åÓÃkTn©WŠÕS•-YÇI"x¸Â'|¬ÜŽ Cê€?yØá +è9³â_¯²œ¥À’Þcï±9×n‰F¼ ¾¼°ÅV¶(Ç5§*>¢ß`¾úð#« H¯ù×ðœÖÞeä2h;¡–D™¦ùEo’œÖº¨á(%¤F]lhìåÇ™[´K‡©jJ5LaL +fó–GÊJ©¬Lûªcѧ‚ºY¢bm'Nºö#ÅÏýˆÈc¬$Vúmx…bÜG{ód>„OCæðQÚŒýDúß-Zˆžââ 2êêzlrþ'ÀêÃŒ& +endstream +endobj +93 0 obj +<< +/Filter /FlateDecode +/Length 5382 +>> +stream +H‰ÌWÛnÇ}çWô#ÐÌN÷LÏ%0 H”c'Ebœ‡(–Ô’¦Ä%©%)šŸºô¥z.4×0@€–;;Ý]U}êœS«—»»‹³õéúæ›ÕßÔêÍúñúþN}ûí«×GêàÕñA¥ªÒÖþošZíÎVß¿¯ÔùíÁêØü§RFŸUY5ðשò<¨¶ì` üëJ§š¡)mçZe]é\ /lM§?|w|ðÝpÒ8×ãZØ¿½Yýy[©××?X½¿Y_a„oÖWçêpsU|ÿJ¯~<úËkeŒéópFõã4籓O( §˜ªì~ÛÀ—®ìLëTgûr†Cü×á?uaú²U‡¿è¶à`]¸²S‡Wênü >µN>èÚá/×j /ÁyêðLƒ?]ã'¬ßm¶þ¯¸£¶÷Á]*\}¡MÏKš²ÆßC¶´êð£:Õ=î|­‹×Çá=øø¨‹W_Àûÿ¸Âs`Ûµ¶-î·xŽ‘µxÂ)$áÊ3åP×”:ïiŒê‚ò„Ínu‡›lá;,¸Uضø•¶h³á‹aXøöBqœ îiœ N‚§_aá l…?מs¿¦çpÂ¥:ÒôÇÏXø|§ô¿ÿáõ4€  ²êš >zWVõШÎ4eáq£¹2;H’¹þ$jÖbüw˜‡ÅJ<¤ +ÌðÒlàñ#|4¸„öäÔ¬-lU…ªsªa œý¨N6ê£6Tø&L~Õ5µá¸.ãwøôFWüc€Ò ÿzœAõÛ÷Gøk‡—´‹Û ç ¼Å·0²‡xl¶³YØ; ú¥néÑ‘î:\¶Ò5eþ–°ñN×t +£Ç0þ¸D§»Ç>}> +XƹeTUé†Á1 +nñ03jeˆôÒ75ÞäÙÓMÂÿŸ!Ø/îz¾ÚjÂsuÇ6ê¨èsÒIJFØOJ¼Ið:gØ]Áΰ €×k áÚÇz†Àmñ³®ñõ®« Øô-Í/"‘6pu÷Øøøõ’ûTe¨õ_fÇq÷è?DµZ|/'ªÆƒ»à}êïÙæ’ëBPYw8˜Ö,¡íR#)ŒuRñ‚™~V6$1˹S΢³ZÿéñèbÇL;CA*«¨›­hbW!¡ÁEŒ·S`}8Ô­Å|æ.Ž¤G²tõ¶=#%ñ[PÛ%¯FÒoh»¢ÃýÎi™Ë vñàIÜ[Í¥½÷!Ô ß8Åà­©]¡Ð-ã3l®0S±ÔÙÒY.ßûÌ$H`SgÕ ¡@^º˜±žÎýmknæR $$ŸTÈ/Qk¥ 2’FgZF_MlY`”¿ü^aHèyÞ,&ž‘ êOÄ®&8o5gI ©i¨Ù7š–í8έ.‘kAa¢¹1¼YÅB­«Ä°mz0¹þæžY‡*o}7E& °òmÕ6¨_àTاK »?×HìºZ€-z]/ÃÎuÂö +a¹F¯°—|‹»™€¡>µäg^:£Þ±äÑòòñíìÉVFH¬ðnb³³PCõÒÒç”3ã¤äËT>.—!¹BÎv6œ–ÇPqo%ÉFq1ÃMr°˜Ç#?2C/š9ÅQqÁ¹z—Z²¦¦¹÷„sº6›lfò€Ö+×g¸„ãÓÛ;±ý<à›Zùå©«¡¾Í™òšÍðÄ~¼økÓÚç+ò]7Y°óD´f$ @„2ÎwV*šç{Ñcä0Ù¥›–®‘¹÷¸’v¤Qvr-¦êÊδNµvg„¾P{Ïû= +ý! 1}ÑD ±É}Xêb í ™IÑO×~æIÂX·Úšî æÐÆßEÍθªbáÙ_†–Ú¬fÌër—¤™À‰³ë`Ä™[š>†4§D)Q|ù‹vûA3ûü0æ!ç#€ÿã£Ø7â­ÎûÆyº¡|K¿@˜„4ð›t&¡>¬Hhå1J¬å¦‰÷‰`óàHÒÊɧ×é}=j;H„þì3Ž°Ñß{Š‰I¹ò·Hõ¶‚ô§ŠêòþVçh÷j|Ã’’爫‚a²3‰DwŒMðBOYbi$ ‚‹J|žÛØçå²>'VI­Ã‘‹ðëå%tDa¼L„ž +‚º›õ;`esXUõ2¬šý{Ç°ú£»Kšù°ÑÌ”–Q|åãò€9R¹dòUx)f`Þ{Ë›) Œ–²!CÑ.þIÏ_~Ž“I»§’NÜ’)©ËPì¥I4·]lnCnµT¨³¬²Ï‡GëRÛ.㮄×~‹„Z_†²ŠL»Æ¢Ã+ç<ùˆ-ÆîV-"1tLìn²'©Œ'ÚÔ iFV2.s2@ùÆæiÂÑÄ0Mé¦4šÜi-»4´<ù`3 +Í[%j2œ_°úäãÝ)MŽ”ê ' ÉgNzT`èéOjaöÊîh¤ÌuCYì?·‰K}þàŠìS“¥·ý­®=/ï8xø“¶¾|ÄS^žBx¡ëñ£@x,žO¥ÿ{Sh(…ÐŽ¿˜‚~20òÈj%÷G7JòYg“†‡î>Àr9°º'(¨2ÂC‘]Íwã½!7Ý)yÆáz4U“!*? Œc¨HQl™©þˆJÏ0ú&ô"Ï‘‡ØzÅ5œ:ù!Ty4wE†ä•êÈ«^¤ã0D± +Cm¤cÝ'[µVv‹†?hK¥ Èô4–g»wšÇÏý|¢dŽ}B'%s4µ9šl¿ˆ¦¦ï„Nªüã‚0^ëš,Æ;ÝÊWz ïPduø3¢”8Iæ°}b¸ x:L i‚A óà S.Hõ¸ ?!ˆûHàK¼×c"¡4.ýRàÀê$°–AÕÕh¢÷qI¨Û5g ôK­…C¯æÑaíï&Í! jŽçÖérz½k?WÝèA´n°™t«SãwÍJà xÂj',eS#8]oˆ‚h¡î+){Ê£èuùnË=î°ÏÉ¡±“{4UWv¦uªqƒ°»o¡ò£{©Ûß‘Ÿ[AòÏ[3ßéšÀ¤ÉŸS³kHflƒH„w¾hº¹ˆ…l"•eL’;bQ0µÄôa¾)¿OözÖà|/›ÔÛèKåÔË'(AáÍM®uB`Ñg±ßÖ¶Ï"Vg¯)ý]tÿ”â…œÒÓè…}/ xXB0£ûëØžìïf€Ü*×g¸;þô¼í›*‡l¹H!M#ìsÎeKågœù§L‡TôGôƉŽ´ë–Ìó íÒ¥Óï|Ë3öqzÝbâ"}&G2ahÊjº:9Gy¢çõ1Ú;ZRMv&‡Ê6p’SÓ¡Äs­ TÜÁrĨ0&9ÈÍy©VØc½æ€»lgíùPmLŽ¥vÙ17`a’cÒœŠLhú«ø࿼—[sÛ6…ÿ +Ë™P!’3îLÚ‡&™ØÍkÇÙÖÄ–]Ùž$ÿ¾{° H™ìíÉ2%’Àâì9ߊ|hÁ +æD™úÈ[ötãªÐfIÏTvÙ&fi”YÆ’:ŠõÅÅ$°Ñe#TnTÆ+`'Tè’#h`kLÊ™þ{Ž=*MX Ä`çq NA? âV,ºìáôý¿ +¥v@i‹4žzÖ¼c4SÇhç£d7vŒC6Ömü +»I6¶sÙ¸ÓÉû*Ï’SBšÈ>%¢%Ù× üjZ¥µUôü7x^cS_3x£KdKBº*ͯo‹á؈þô9!0ÁH¬ž{Q^Žg +²¨Í ¶D´Â«ÃÊýa e~´O¯ÔÄÚÿÕÄàUt!«ž¥£R{±ôý3· +|úPÄUÍ—k;“×”¤–h¶K5 “ÂeQñ‡ ñºÍFM Ïx®TÇÆÖòá33 Ç—kŽ1Í`½,`]0ÛLÎ2†ÒH”g|~AO³tRß ®ñ«bßf¶l€)"’ˆ iÏqNSD-"Ç8ׄ‰ j@^#¯dE›ä—¹ÓÇ=„ÎóÓ’r¿µt^âæD±zcÏ%qÑC†è%ÃcI‹ ¾Âkº“vùQPãuÊÊóçÌWÌf^³h¡,i–dvZ›k14 ŒOHG†•Gñß0­¸žÝ$ +ŽÌƔ٥æ^dÂy€ì±8/nM´=¾à¶±P¿ÞÐ Û*9ñV±ÀŸlÎ/‰“SOiÁQ²ÿˆ`+M1hšpÄØ©wJ‚¯Ì{X¦BŒø»8¸ú¯ë¥´Í !-Ú#Æÿ +¿§÷Eº%\Ñ|íµuê¤@“âhZ©—1鼇'ÑSÄ(£Ã,BIÛUŠ¢B]I6ïEc&,fÈ!0ë´Éyñ¼{É…$/p¸Gt­tÒ°ÐÑ¢O?––¦¦O¸/«@ø‰­ðVîÉ¥h?’º>µ}&˧֓YU]¹VyeJ+ØÌ´¦!ƱŽík’Ÿ|mÿ¢Lª¨õ4P:xyJb;ÜgéxÒÌ+Hê©ä¯BFx/Ò~Á°HÝÀS†Ft.ÅxÄÎ +læçXÇše¹$Óhó|.²ì-NJ¸ÿ æƒÁÎP€¾a µ™…¶iÇ·â~éÝèéS)xöA–±[èeá±í’Ÿ`õ$ówe·ÆñhMÖúXƒ¤ßáN h¹×‡òIêô¤”ëxupl*œÖM Ú)¹~JkžCŒÀœÏèÁÁ-©†¶òÈEK£Š†ä x‡î(_N vÒn|P,ŠFDTþJ@´â’ä/|<«b„µß¹5%ž”µ3}@W:Äവꚷd‘™Õ21ÕŒbݪ°"‰{eíË=_n&!)], ¤¶QÇ1ž9)=˜X"­Ç +¤rð›/É„Ú`«*±˜™ä÷ßè¼R–¾–DqC£Þp·Ì{Þ¨øÃùyÏþnÓ•L5LÅDûƒ“õñ§Çf¾a$ŠCÆ ×^Ý“·1þ?wC^Î=]o8%Yª†ÿv\I¬R§½ýø ~&úPÚ5þÂ_Ÿ-1Ãö¨â½-LµØ•Îö˜7êœKbó ++ÔOV`=¨€ž×Èo¬2Säò£ô?Àÿ£‘-Ø}§vÿöÌüa +èÈkêÍÚg—…|à²pUl¬JÓa|X®J‡Ý[Yùè³ð¡ø ò™|õËgþw·ç¿÷|†;0^>l®ïäûóýØãN˜ +L«Ê•Ðw:uçÕNúÁ'>õnó´ :ë¤:g5§–ºÎM“i0· «óÃ_}= ‘*F÷¨†ÉÎì0XNª%s*:È +>z<«ŽŽG;AÝ0«±n3n­˜…‘lý›ˆzñ¦ë"¶Ÿ(uWDúTd¬§Ô9Yžxß½¼(Ž±–\éy ¸Ô”mÞ”5ϵ†Šù …Y¶€S‹¸=Ì9ÅöXËùŠÛdndtøÖ]o}- ß~¾M?¡_Ü„ƒ¥xè›JƒÈÛâ[ZÅðÕW)Å›\þþ<á9,ª6Š¡šf›’o¬„í#ØÈè Ö€ç"—¥ ·¬" z§ðNg\Kc'“W’ä±'7ÝD[EjBÚù½_cïôIøé*Û„j¨GT™b¸9#,kL:¡\à‚ìø¬2_]=­Ç µ:È%F²³¸ÄUñKi)ñ ßhÄ‹J¡UéösØ~ٖ׋†™ðlÈŽªa™9Ç»›b+jÛÔ&i,«‹óÜ×bç£*8ˆ®µTZêÜÕ2˜¾yÃ7¸”'Þ©”i¯±Fg£Ã`g;u;Ý$vz|ÊÝxèía\X 3 «h¡ñ´ÐLÑ‚YC!œ‘\ìVÔŒ ”ü«²£ÿ .¤øo»²çN¤)WŽÅÊAr@Ì÷øÜ(ÛHÁ=Øà-k>`Úý <‡†ºù›¶G!ÀÙñ®0ø†iº†:v_Ü{Y‡â Í Ù8P;aÀiPèð™–Ì7±FꣻLà;ɇüÔ³N‘ ‘ç¥ñć§#JÙHR†Î;¼SN\뜻½Çn?¥Jq¼ï±Øƒ!OÒ òuút¢ªåQ=ïŽþ®È×MŠy»@1N›æª†•ŒKžì‚D"O½¤“6.»—jþwbƒq¨¡Ü_àé}.*+#CÖ†~Ðàþ^Ä¥•¤R–¹«¨$|ügðV <_@_Ç<î}ºÑx“ëExo›{¦úhT—X=ø€ç¤æìs|$“È ¥OÁk•'¡´Ah£IµQ·è#•|U d—Q*±”×e‹#’DÜN<µÿDyÅeDåÉâ¡ì9 ,Eè³çh2Iêõ (7I¡O~³ÃänùÂNÂHPyŠ\LR„¿-§^ +endstream +endobj +94 0 obj +<< +/Filter /FlateDecode +/Length 7236 +>> +stream +H‰ÌWÛnÛH}×Wô#ûAT_ÉîA ¾Ì ³Nâ…Y,”E 8ŠÇ³¾e'˜¿ßªê&Ù¤,™íÑÀEQ}9UuªêÔìÍýÃå·åù{õjöÍN–Ý>>°×¯ŽÙä`>L”J[øoŒf÷“Ù/g‚]¬'³¹ü,˜dóo“©(…Òl~ÎâÃV•5쿺´LJ]jgS¶´¶‚=דB:>ÿcr<Ÿ¿ƒ›þ„‹p?î…ãñÛÉìçkÁŽn'ÿœÌÎî–7ˆðdysÁŠÕÍô—>{wøöήl.CTÿEœ²Á)Îî +)JV*Bgd­Y­êÒUN!¼E1ç•fÅK-+N¸”¥dÅ13Ü”5+~b‡|*+VüÆ%®øÈN¹4ôÄ«¶~À¯ðû¯|ªpÃ1·øwVÌÙ×áõáña‰ê–À9pÜ[N>à1°æ=k0½Ç7pâQû¦A"1¸HÇ#šå'ÕÇ\á¾3.méñ3"oÿ3ÿµ ÜV~ [­©Y-q«Á2æʗƲûÕD:WÖ®ýY‡·2Y ¼/kí·/0ð¦J~÷¥°ÉÏîÒ! K/ þ't ªª»;T·JqÅݵݒÙŽ%[»"bë :ç„Çÿ :#` nà Uz\ÑÁkVt—wk|»ÖD€Ý’ˆ°[±ÛJéMë@©u©|/°ÍŠöödMƒpךˆ°[&+¾µÙþdBÖý ßÂ; L¨P[ +-4;¿¦ øx­,»šœAq ‡ˆpˆî€:ˆ¤“¥rýC”ÐñnKÀ +Çoé ŽÞ〷‘z[BHÄæ–óÄ–Æÿ››Œß”¸`s“‡ðºÖ Ê™<ƒ6¶lÇÖn2hÌN]m=åçv'd\Ônʸ¨sÜmq\»'ãž–p{Ú55c||6vŒV"at? `uÚáêѵ{r.J|½qÑsáɹ§OΦ6@±dædÐæ–!ªàÓ¸^YÕŠŠóg¿')=cïIœ½yÏsMR¯ÇnIê5„ÂeUëþ†q¹%5~°¥ç®ÿºšw¼Úà"p‚ y„Då=O?˜UIÀN™d-._—{©ïC»”ñ;P¹Ô:ˆZ|CÂz +²t(Ȥoá;Ië9 +r|€7J¡’FÑLjý}O´î6§NÍZØ‚WCðʧµ€ÿ’uó1hÄ-@ HÎ`<ˆê¿¡'Ü¡6¦‹yÜô£¦“Æãw}ü 0çû~î2ÖUüo*Üzz +–¸0AQ4N ¿*Ö®8³‚e€ó=®4óXŠ©ª‘Å}BÀÉ°¸ó†ZôÍ—uc>>m1ß™ SÈüS^£?`!‡ÇÑÚ3‘@»ÁȳéÑ‘²Í d»‚鶲*¨Â€® –²F–>cÌŠ~‚Dˆ4#0µ¸­õÚ6TtB‹ +’B#lÌÛä·§„ ÁÕ\‰/u“Ï–R#¯Nð’û ±)<b(lu´†‚¥dXdêPd ÂLJjXTŒŒ¸/ÁÝàæ +ÆÃ5Oò>ñk îôÞ÷ æÐÞ²Þ´¼2Û"(U +Ýg|ÚœRHÕÖ›CŒ8~ÕÖ¦a6—ŸÐ~þâ¥;Ä (N8d"4zÂ~`,„YµÀtï0Á÷Kn1L…À.o>‡øyõˆ¹À¿ÆVP}!T?á†ò¹Zµº™þrÐYQ÷“·T–¦Ñû‹¶½ÍÕgÌKêY„zÇ€¡*Œ†­y%„Я·v€"-ç͹j£òÒ Ïufü¹~giFM6QÔ%!9*Ó·pÙo±"ÝbQt<:ëÒ¼ÆXœs¤ -£†y} Ñ‚õ7ð Á»äSøöM°n¢žB'U¢5c›PDkÅ5’¬®¿PòÃå«ûhË+^¹G> _º +b˜Í'§vò©nŸœÞ3Ÿ$ÿ?|2C>Õõ;¬·eÕ2ꪩC«%•Øš*•¤N¹Šñ¾áÚ:˜Ý·¬“måÍäVµ‹[ƒss¸Uçpk¨žˆI‚„äºÄ@¬8‘犋 ƒßI¬/y…ü¹á²"þ€`GGÃCF”ÒZþ.о] ½»G݉4¾+âÊ'!zÉ%bÃo¿il·7hV+È•Šh¤sYä÷È"«ÛJšÇ"/v²¨n‹ün1žÏ¢IÊ"ò>/Ô¢'!…í"|¥Ÿ[&ÉPÇ`mÞïÜ +6[‘f·ßréæUf÷³Ðûš µŠÄ]CE—&ÔåV_œ..pÇDÀ#vHmÄë8¬à»@Çã×{¤#4öêet4;éØ?7‡ŽvÏtL, +ªNZ ãgF +'0Vür¬^1§AG*M[[ô³åÀ¾jÈ>×ÐO7ÊßmZ¯»Òü© u>ì*Ø5N• +qÑĸŽ² ¥Û„þŽ_o‘rv‘V‹Fš`ÝTÛø`ð‡0HÀ– nÂÁŠ$Â'žaðçã«Î ~ç¼087‡®{žR$‹â_\úXk‚rC’R/ƒŒ$•”OJ)®\«¿‰’Ë îÖëX ‘x(¼A%DÏÆ&: zl1Â÷ÐS>Ò‰JÈaNØÆOv›ŸœJºÌú§&¦×‘éÁ 7ãÛ¼jDÉâ^BT%ôN¢öÏOT@¶ßºš"Yÿ敦ã1VÈßC½ +º>I¶ÛGNqºƒE.Gƒ)±G%o@¡¼¨é)±SÉÎÍ N–’QE$‹â»Î{MúXñå!”êpX/hüÛcýpÏÖY +¡LqçÔŸ_?´Oê^ê‡/¦(èKÕ²äb])fPž¼ˆ¥2-§ÉÑQûGgUª¬*ÒH|Ø&mR0‹âgnHVQ{g„ò¹Š¯=ô"Y÷•1PèŠß°YncsU'ÞÄy‚ +ÁwÞÈMØ_°ËklŽ:8Ab¢)K3˜!=›c|qÃC ‡ÒÈ»ˆÇwœ–C»¶)·Ö.h™®×É$õ|èþšLkP%s$± •bM«=¦(‹•1/EµÞ™¢ýs3RT›½hê62 TÄ0°6Zù¼W[sÚHþ+<¢ˆú*iߦ×V¦6—3“}ð¼˜$ÌÆà1vRÙ_¿ß9§[jÉ€hLí‹1Bjëw¹»~zZËè­h’jæ´FD›fÂc> ZPk*o¤†À?Ž-Ú&À*™–ˆ1ÏàcÆá«Zâ S‰˜…u‰ÈSeŠ'sNr@IO#s˜úçæL^žAS·i 7ÓÔ†}LVOÂâyÑý»Ä¯Þ)~ãàdûD÷¢•3Z8N + ªÊê^ü¤`Ÿ‘‚‹…r» eŸÂ!¥¦UŒ«Æ¹]…ºl1Q©5×.SÞØ3Ê ÖŠGEÇú$ðKâA܆öÒ!uº÷ZM±ù™‚³Ïg?çÊ„þÐ?;ûã@Yç^ýB҉»ÀN±˜|Íï(ð«bæJêÞ5†—Íî©Ô¨ø¿]Î^_v!¦ØMX¦DÇÕŸµ»ßÌ›®¬° gD)Ñ".Õ»_Yâa˜/ƒ„Chš½ÞïÅLÄAFˆfçP¥áxÈîÊ«4œƒC5xÀÏ1‰c˘8u‰ò¾’ + Íw4k¸ò¡@c15ñŽ¡0–šx|ön4ûJ#R›Ä”“ý|µÙk»7{ï€a!ûë`o.ƒÝù &èÍå¿YåtºÍÕU@TìwAN®õ Óªí´Ú›+ÈÍÇ\/ÞELÖÕýã©çoXkžq«Â°€ —ãïeòJÒô#†ÂÓ{"†.µ1b˜JK¢¡"Ä€¥Ã(BkÕ´’%mæ+‘ +W@CÄw}!ž O™ãƒ¬Êˆ¤.cÀƒå(Çógˆ§ÕµV9‰ú-²&Bv4R?5®Ö´_Bíì-¾=À àÛðò`Œÿ=@Of u¥^,c5¸ã鱊dæ$›<[é2V5@Ó†W¼wn†Œ­L–7ŒMëÓ”&yém??±(¾¦7Šã[‘,­Ùñ¨=ˆ†…z:¾§ë ]ô¬ƒ“¬˜‚qLIŒ||ëìˆîÐ53M/î #X¹²£+‡GßÛr,HvT‰í³ß edB+–œ“ÏÄ –½W-Z”uÉÝ Ü`å‡*4 +eöuÒ6óº ýuÁâ=Ñ—fi¡Xl¼§XÌ?þ*–!Šu3žˆ¼c:ùs*¸B«Ê2¢¦¡Û1Ü;‡Bµþn…ÚÒ m¥ä+b$™CO±RH„ [ŠÙuƒ`¢Qà +™ãux³m¡JõÏ"#§úŒ …jO•æ ¨ôÏÍ•º<+¨$q*üØàù#ÚÒ-³æ®Êt!Ù–cw…ZV þ=, ¹ðî{¦B¶%ñ’gLÞÈñ-ëÂðœ‰]¬<5*Ðáö1ŠÓÅ©Åù@Š• Ãß +–vË‚-Ž¡šÿ*5U*cïš!n6ÜÚ¡6Ñ;÷2YüvåTï»–dcoðåØmH {­ØÆjgó°Ùݦ$»¢ëÁ±9ûwä62«|ÅÍôm`ò%£|ÐìP?‚ݳ|Q²“<\‰Ž@½…ÖH® +†bASXÑ0Îø€ŸÙˆßT#ËÙæPƼ eÙ$;·@tŒªe¼Ä‘Úih!6´l&]:Ö¼8ŠÒP’NNõ`u\lÛ×!—ÇLHðHtØ~9zà”@ÜÌع(QͲyI7“š9MÅfµ7ψµ9ãÁ“ú–È”åÁ%ê{ü™Re-‘‹[äö4©‹ãfz¹&…ŒÞ< çÖ/„EB'& ú¹áuƒˆßkn?ÆÖ²NŠ¹ub8\4Y.”Ï\Ä:¼/¦õ±Ýû€Ï"ºqáGQœfØXw@loÿæ/ÊÇ´÷}â9­N~¦|fl4vO&0¢-Î-èÕF^Í•^}'¤bÄR²]r¹¾Û€¶YîšgÖ¼•¯AÛc± lYvUgNd~§". +®á­\^Š½y˜lÃ,=":#å%A$.£ci²Äò­ اœèÝ°äU,yµ; ¸î©À,×0TèÍð “¿âÒ/g{SúóÌÓ€ª:Týcs€ªÎª²‰Miö4¥‹ãfzM<Œ!Y~ÈÄM Mþº‚±"„Aò2pÁºa¼„mxŒü¯,:í7è,š!:Õžê=ÙÀv¶øt(ðö¼Ûx?²Ãs¢W Ú&,€H©€DZ3™*"=²}¢;ñËÇã£WåØz7¨mešD}¼m0J «3FJäv[Ì»£iÁ4ñI¬i¶‘tH»•T¥5Ñ{Žã¥‚QúŒ[Už²ÊÜÀÞ±¨lÖŽ1Qo S)‘u²b…¹¹+x/ï#¼]å(š—G=jÞª%þ=̯A-xúºXT4¬M|°&Ï“uN”Ež„Òê0J÷ŽÍ™‘,”Q]IìÉX„,þƒ!"×óÄ-D{±ÖjºÏ¨¹DÁ|g(†ýã²eD´yþr3`5BSx,1yÝӻ̀ÅÒ¨qôÍèž>Ú tͲ$ã«^2´Ï:ð + \­E÷£ìL“–ŠÎv’W¨¢{·“ b,&.Ǽ•±Ø:ÅÝ$¸ÆÌñc/8àÅÑõ8Z^wU€®hQíj•ÁæžY…‘sÛ|XÒ^ôƒ8Š-‘PÞ’G¸O·_–@HÓfFÐíröú² "Ål*¨ +S2/5‡3 ÿa\æM H!k¨s7Qu3× ÚϽ~}M2…yUþ¼à%°ÊŠ*|í`™V; j ÀÙ{ú'‰æ LÞÐSÁAçΞ ]ÎZ{d]Á µY¿Ø|Iˆà8iÍ0ü;Á1fæ W4æ—óò[NšHâò~ãczqeäoË~þe @ÿí®€×óº­Àc!~÷+a¥ŒZ4±µÔâè„­ï¸;Z„4ŽœŒSÐìëé\uò¹æp%w®1~:Lš(á¦ðêŠx#cÏÿX¯’å¦(ø+>¢ƒÍ*©ŠJU*à„TÈŠ“;$/x!„¯§ß›kA±5¶OR$yò–~ýº¯¹È&®¦zgM7)H‹M@ Cý1@–̆Ÿ©á‚¯’IˆÞˆc`ÿ]z§£y­+XŠ"—µÈbºb]Ù ¸›ðÖ" ›’Ø.(+²²Äd7|£é’¡þìk][úpP’«SÄU «G +E(ؾ)ȧ$£O—’"¥¸¾&ŠZ†þ©î;Iç« ™j0gjkl''tÑ"'´¸,„nž¡'Lz=(1ÚjÛÜ~adK9Çbî‘þb¾O‡ “ÿŠ¤„Ù(Ç‘†ïHŽàu¸^ûçÝ»gDWEQ¦™ +z`8ú¼Ÿ‡w<Ï,K x.§e}JŠð=›z 2Nxä”)Ûî!._ª^X)œiÓ¯*… Õðp®³€ÝÚ-:Ñ¢‰7PnJ¸ùêOaËÝ£“hÅ ëÔÞcÂwñŠoà&%™ÆÔ™îÍ2;”ˆÊå‰Qy]B_w®W•©[ò¯u’xì.{™Rö¹G«¤|§( þÞ|H3—3D±Ê¸NÌÞøYå…+É2fæ²í!Û´"”ž17…ç!ûлsÃbD°Lx,\6ÕϽ‰ã¢(Ôxãaòí!k[$Ï>¨YÂÄ°p[ågoSbÜ1]\­ÛÛaéV‘E**¸§QLÌEƒÚDñÚ°Ù¤ñÀ*ÊP̽+R2(ßœ¨>40°ž»Y笒Ì3¶uÌN +LïpZõ lzD¦ƒ_Ýé¬ØÊtõs#˜ÎÊã2]%Åè@µvH›Ï´œÑ¾n˜™å°¾œ½œÍƒ'›9À-©q†FÌÒÓ'ZT»¤Y#Aµ}hHõl%kŽß†œ`#)nO¸³ù„D~¹6q÷Y@Ç@JR ì|?D™mˆª(¯Õp'ÓœÒã£qòùÝj=|ºÿY½¼ XqvvÖãsÿob%Xo/(ÌoonI"ÆÒâ-¨Ÿ’Ú÷Hبþ:lƒlƒ3¢]’°]XßÒWø{BüEi$›í\»Ù ¬€ª%Ð}ëڼɭ&p«iOìárC,Q€Ì­:ä8]:eÛ»' g•7 ÿâ*19ñçy" íàç›ÓÀ¬WnÍ]‡AÆBÅRnqð|h˜Ùëçq™¥-¢aßD@ö—™8 +åjÚ±™i¨Ë®œ» ` öžñú~(@, s!Ž~5»w×î½Ìd+ÿ–Ñ7ŒßNzüp ŒÙd]EÞf¯µ!¬ó7~} þ2:™öeR&SSCG!Ó‘û7Ïu×5m6‚rüå”þzìôÚ’t kH„LÎÎ32n½ƒ‰Ê j"òÖ+Ù—^м^vƒ2Ewç‰ +cîôØ)‰yœÃD )‹Z°ÿõþ,h +endstream +endobj +95 0 obj +<< +/Filter /FlateDecode +/Length 6187 +>> +stream +H‰¬WÛnG}×Wô#0GÓ—¹4ˆ¥¬‘…ã`me÷a³XèJ+‘D…¤íÕßoUuõm.4i4äpº§ºêÔ9§NØìîï.¯wâ»ïN§o/_ÖŸvâûï_ŸŸ‰“×'µ¨+møo­›ÕÉ雵XmON/Ôk¡ÄÅÝɲ®j݈‹kÁ¾ˆ¶ê` üuU#¬³•jaÝTMÓšǓ…ròâ÷“/N~üÞô'¼×ãZØ¿½=ýÛc-Î×'ÿ89ýð|ù„¾½|Z‰ÅíÓòÍkyúóÙOçBxQ®À¨þÀ8•ó‚Ãôo¨”rø¥ü£J¨º«:Õ6¢Ó}åzƒáý{q!—ª‹²­¼Rü*—m7ÞIe+#΄¬áp‹K|?K£ðx°©:±Øò‹î¤Rx]ãîoÄ™„}þ)—÷{/0@…7·j0š;¸×áK,. [>‰nâ²;’q+u¥aüµõG¦06øý•øB·(\Ýâ³»–b+)cÏþàÙA?¾Å¯w>ß÷”Äk>Û3†‹Ù‘ôÌZþçâï3ûQѨ( +n]_Õ­ÓyÁËŽû·îò­«Ú ðÔ7Umœ¬ pZùãm¸X˜A*Ï#•ÙÐ_gȈÖøðD [‰©:|ækêsëð{¬ƒè.´d+vÒákqu µ1 ÞÁÁò?¤á‚Puopý$µÅ¢îÄ•„Ø`ûð´øÌnA€èqég©U„{@~v©_DÂÿFGn*¦¸vOÉ€…¶8ô>èÐ*=þôÄÍÐ +ç‚ݶp·ÃN^Bäeï™A[F¢è`EÂ/·€8|ý!Í Bj@y@ÈG©Œ¯^cØþ˜;lÊ–Š)5(1A¯K==`qá'ÌšžÀgê z³õ75Q節¢¹´úÐÉ¡ÝOc±Aý™Æb}âÃìy•±Ó"_Ø·¦h¡„ò©±FÅ•rìÄsT_(w¶Ä‡”3=•ôæØ™RNm;ƒ:k’÷?Þ<Çø#”8{ƒ)~ŠPÎ)Tg-Ž™6S²9’æ'aPÛBݽçnüæºjöyÍ@àšZ;÷^aqî æ•-²yçk[Ì9Ü­.×øIÆÉ'6Ï~¢ôè+|âb'Âñ!æ6ŽS›‘³¹¯ ü`ð{š¸·Ç€Ê¸ÌZBxu7–vidÈ¢ IwÔ3b`•Ÿ±M:Êdí}M,üRwÌûFç>†É(³}f¿iÄÅ Õ“ŒjÛ)þÛ +¢s›<‹ôí_&ã>oɆ¤†ˆîÕyd&YmHÇYûŒ‡ìF5EÚÙÐrŒšù)¢©á€F›? qøÑ–´WÃq-àCϪ[d‡H… ¥‰b¿á£ î¾š0ê©u9ÒEwó¦E<2I^JC#ÐKv'µ‡¤ˆ”V‚§T(zřϧöø6…‘5Šal)W̨ã&—Ä1¤Õ•€9 ±äOs˜Æ`9 fT­Á÷ä­¤ÎÚm¥¡éóÕ1õeDÝ`Q¨[]Û—Áäãàþ +.½(9L ›Õ§I2ø¼@=^‹s“H«“ó¡<°¥Z³ø\gÜÍðöîéÞÇèýC¢¿è»pØ61U¸­éz37öáì“æCyYn8õÜÎÄ&îã£*gÚ¡ƒá,×ãí¬ÃÌå¼!aé<ûnžiÔ›¾Íç ¶-t‚}1˜mËQ¨˜r¿½ºH,í@S·Þz~â$dƒO¯iµN{ìéÅ5ðéÐh÷õÙŒ!m6do¬¼yiÙ¼t9ß^Òy:Oïå™þ…I€‡,_I7l†±)‡‡à“µÁŸ+q4\]Ò¢¶ö©»ªSm#šN§ á_ÔF'3 ùÔgb¦= Ø5ó{¢{þª¦·ix V! Ï 2zDF⌉Ǯ¡Œ:k‚àf™CØ:XìÒD“—€Œ:#™äɬ·óŽîPpSc5ð뭚ဦOf}-; ¶Œ™Ìò!ÞFäŒ05éŽ×7“šq¼ÑAJrÓίþJZÅ©tô}€ÞŒS¨Fy9À¸˜ù&Zó\¡§¸-kν¤®¾b>‹ÝRäû(eºð¢ÎOˆAÍÃ+Gª¢ÛŠËd{/^¿†ð=×ñ6ïçPÑ#€Û À¤4 .ex¢kˆ¨Q±LÙ0â«)Ž!•Äegl;×€³®€µ§–ÌO±÷I›·8+BÈÓ–õ$bj0Ì1€> +?8å±ø‚pÚ1Û \?òÀuË–5!á«bí’í?/¸0zÖ0vjèšj7,éáró$áÓ4t>p:ƒ§ó1¶ Ð*Ç@5FDHÀ‡˜úŒöúã<ú^å>GõŒÃÑÒvri/íuÉU.C²ãý¨êÄ(&l¤g6±a1ex,Ð8{%Ÿ@hòi)ä‘l©ãëË1hZR[טf GªîªNµ°KÖûÂëQ,cî…1¢÷ÒÒQO¥«©»+¦èG?Ñhs‹w¾>Åv‚ä†r…¥õT.–kÖxYŒÜ2—1×3ú‹(åÓ‡Öó#ÖcÊ„åàëm~˜ènŠÚ.™lSüÒëÜ’±0¥¶™© G”]Í÷>9£M^ò…8ÔàØZ—ÊTÏÌrfűÝÆ^iéŠ e³>Áå@$= á$wüXÁsG œlܹ ©É RDÙØ¥\Aæ]^u­˜þ½n“•Ú\ëC,½·û xÁx³×½ ôŠïl¢ÿ³^nÍU#Wþ+zDUGê–ZÒㄪ$T¥ žš^0 Æ`s±aç×gߺ÷îVË>òðä>–ú²öZßêiœŸ6iCÅzvˆèsnÊú£¨ä +¥§˜§åÞ5–#çì,âΚ÷‘89—+'´CsþÍ©*öhnÈ57lT¼ì)AµQÛÀõÚøV¶8Ù€V^‰q%”ìeñUîžWm’¶ÜjRŒŽŠ|_˜• ‘0›z‰ØOÆ–&m½)â@>XOB²¨«°~£MÆçEž?U&Ù×'yÄIþ…Ô›ÑHçÖkøexYLÒ=ŽÇ5±b?!ôƒI—¦·Á¥éÉhg«„™3Pon_á‘5o8Œz£‚äT*ìƒv¬­¶óþâÆÓåu‚äD¸¦Bß»ž–Qm”Kä´BêïÅøÒ˜ÅÑ7AlOâa‡¢BaCó†¢:§Tý¦±í&¢ƒì¾IçÐDÇrrÒÊAæ·–läG:Ãæåµq×|ý¤…ÿÿžÿo`ÇæÉëï$ðn ܈ÍE¿qÓNÜÒbÀ”%ÝŽú\¤0#Ê+¹ ê(´xV…Zv}ÄèÂKÔó[GWE ¼€[\ˆ7ºæ‰Ýå.“ÑxV\TƒŸgë/p¢ÁŒÜ·ÌÊL¬Äz¦B ‚lrÛC«€ÿKšÂ_ÛÚ%ÜûeºŒjÞ´| 'Ís¤´º\zë¹gòþ¯‘tÊœØN +!™{¹q{;…¬ËE©^†M«bo¹Hš©ÞΆ^üïœÜ¡Hî¼´ô¤–j‹pT5)Qƒ&*{žñ#Âk.«ßP×䕲u]•C5öÉgµ– IZ­£¢zg2›Îv-9r‘6Òæð×RÁPA<û…o¤€ Ÿ«ÛñÇAT™Û¬ìÍûX£Ò7Fö bcõÌ‘DrÒüó‚Ò{Ágz>¤sK¯ +q©A&’€Ñˆö×æ8é"L¥¤µØ¼… ß¡–e½‡e>éÂâ¬TàÌŽEï¾+„¸Q÷<”É„ÞW83eL>¤žH‰%ãmLos–*|…~¥¡¹TäÅŠ÷Vñ–œE¯4ÆœÁïî«]¡^» [{d¹^³üóJ–f·œq}¢ÄtÀ’ððé¿ä«Rx'»PŽA­qÄ"HÒYFÞ#®| +K&ôÔa+c9ÅN?VE8Óg‰‰ì°2ØwFM~ÜPÐ0*‡ßc®™ñž-WÌ&jCé0T³Ù§aͬCñä3³°œŠ5’s"¦Z^ŘBg5GÚ[Òglb téÉ`­Žt{¯sž74ÿ$v0Ç^{Û)OR"«_q)ðéLÝŽáŠÈa_©€¯þ¾G"îÈ´ƒáO`mhªÑéJ´é2)©ÎD$én’…“³|€ºõ`<‘>Ȇs‹0Y0‚? ˆÎùh¯yäcW„ AÎjÒ“Œ p_´Ÿo¼ÐÔ,/w0¨˜)ÂÑ¿¿Nz|©ð .wA©,s¯¼÷[åÝ ¬«Ù`dÆÅnq‡J|n$aØP BðJ%½—.à²&GƒÓðÔÅ•¨;‡~d@(¬ú"ÖËkƒx¦g-§ý]£gŸ÷:¸Ðž’à\N带G~qèkèj†;’¡^ÃÀƒV=0½Ñì,ïK©*OaåÍNRdôªe5•E§uÆ ­Œ³j[1Ë€ªì;ÒûÓ=’¶Á(É¥sŠÐw­[rºF%Q¢LbÐ,`x‡AFÔÅY0S =†DXim†KZ5ÕnÚ9ÍÕŒÈ@€ú5ÙŠij#c/ï“(h®`IA<7¢½AîÇeGc»TÄaÇ2Ë…ÿ^R׺' Ù³Áì¹ù1”Ùå·ßwÓÉÔ‡±qó¬àZÞ +*1Öþyôµü„[eBõ6ȈéW Ñ÷&ÖCöc»l:|RÌlóÁ^Ñ3¯ë ªz¢ïÒµëß’ùµu%3ªú0¿[xZ-3ë§Ë/q_ðùÕ3YIí莗JÈ¥6ÕMƒêK8ú_Ú0¡&êyÞ‡ïÙ¢gý§õ„ÏÄjOšç°P’Åg[<¥¥Bñ{K¿øËÎT#uG>˜UWÒë¾U5¯Ÿ´Áá/Ô¼KWŽ7”Á…?.Ø|J¼ák¯Û&‚V"ت$Ïl‘âÚdÜz†“íP$`…¿~ÑB™ñ`h)§{T2•ÀZºa?\èRïÝ™Q‰/¯¨¡Ú×ÁÈ^|ÎÁø¹Ùܾϲ¨«V-(Öž43|æö®Aè½Ïš c5îKÊtgª}1ž¸ªIÑ㚯d‘« iV-©c3Š¶×ÛpK9ó¼õ¤Éï ´#ŠÐ7ø?Ï X,Ée)OPÒýxQÍÛ|2,3xÑ⬠€JO?ùè¥ÐkØë”–WZˆù¡ŒÀbµ)<Û::Âw¶¨d¿ð'ès#ðóH,@û’ðf2µ¡]îƒ#‹˜Á¼/[%/ ² ² ¯$‹p§¸2¨b|ç*Ì|^mìsL™L#¢¿‡RTW@Ñ<Þ\TàÆyJnÙϲâ©Õ)ÿlq„ì`ïgß?+òH³U(Õ9âFÅñš´Ð† +è½®éêl•ú­,ñçMBõL¨‚£ßý‘T»JüœÒØj5ä©AºLõñOÇ Р™ƒ=Éa–¶¬³\.a÷tìä齋+bÑ ‹æc²Q fÇ- +‹sOøO °BªÅŸO£àƒšÃ,äÉ7Õ¹ýŒs&Û8›Ï Œd/ŠB#}>Ë‹Â#o©K¯„ÇÕãb5¤›Ø!WÂѲ¡–Î+C+ E~ýy@'¨7yœ›æ)./a{×Bk˜¬‹‡¥`}~>ÂŽÒ5ÅÄ)O%õª¤˜Ò#ã‘4ð!ÿ¼ÉÜ´6€ÅæŒx=«YÖ Ò÷ÎZ•‘c²ÊÃÀ?û #ìÚ#4¿ LQcý¼ /õ,²U  MzÁÎ’ˆ´‘ÝÇ¿è¹%#mäVvÒ¥¨ŠƒòøÄ3QTjXMš|x°£‹¸LÙ±…ú&k:M!b!<#Ä\é'Ø2æb•S„CòÛÖÓ2Tó|DŸÄ-©¼$ãocR,ì¬$®äRIz}—W :¹¸a2høõÉE …uutoø°ô¤/¸Ý9J¬ï ìzˆÂ~•šÓ‰M¸ëX2²#I” i E¥NxždVÏÛ86š:M Æ»–u*`¼x´©µÏìd‰ y­•nNÀMK1ú!›²“ xU/î”æBüF ë5&CyÝr¯ÌMÚ½u ɱ±šé }챡1·!Ô‹ëú ?‚þ–ˆxeGÉuõ†" ôcFP oƒ®§Î:C‚¢ƒÏ'.°*,sŒ6A2­[:¶q¹È¦9ú)kd·Y/~粇èSã‹Ñökb ØS¦A|wßF äË¢*ñ‘o“ØöT7|¾…=Ê +9vÏ[¢‚b÷¯(8™­£ôÆ‹>mgúyÒüVn§u< +8Oä,ù_áæ2ðÄ`ü€¶òy°1”—Lž§Ë“CÞeCùÊ{ûƒ®žS#=úV…ÔŠPc¨†j¨.«^A$w×$‰^˧/eÂ/T—ŠÀ¹L™\úÎoÈÅ;åî÷♪ϋXh®ˆè By‹Üxs´-– +Z˜AT}Ä +K[!—ÈÒ}VR&H9gr³¡á ]aCΰåvl~Z›RˆÌÑœòÓ“ehí’R8ÀIMA?cïÛ‰…­¢Á,Ð*©A¨P¹C4syð“Â<ó²’bu1ÆZÜÂm]>3v‘wí_¢Ì™LÈuÎñ4èIHå IWM^»6ìo-Ñȼ%å¹pXõ×ù"®%ý#ŸÅôké’|æ+Û6Ï)èK“6i!ñ­°u2òulÇB3gíòxe-+.Êýhì`ZœU×éÇã^à;ó‚ŠÍuƒb¹ øœSä¢Gí€bÓw2æŽfËƉC‘¶Ü?óÑã½M_ãðžÒ#o*ÿ`c[À +endstream +endobj +96 0 obj +<< +/Filter /FlateDecode +/Length 6458 +>> +stream +H‰´WÛnÜF}×Wôã4`ŽúÂn’@ –㬉++yÙ,º[¶f$k¤úûÔ¥¯R™Yì€9"ÙÍêªS§Î9üááñæêôüQ|÷Ýá?Äáϧ/wOâûïß¾;oO”PKcü߶V<\þôI‰ëÍÁá‰þZœ\¨¥Òðã\4á׳ðËÖÀ¿né„Övi{× ã–Îyxau°0Jž|9øñäàÇ_àKßàC°Âµ°=þõóáû•ïîþypøéþtþ|º¾‹ËuóÓ[yøËчwB·V×á +Œê+Æ©cœšã¤ð,}‡< ­–=/19ÌÎôK¥ºãü×ÂËfXj±XÊî;±0²e6Þiùü->ÂUã“;Ùtx]à +×4ðÄ‹ÅJ6p÷Fҽ͆¯7²ñKS-¢Ý6²¡Ý/ñ +ï=Æà‡¦eÿZãò^,®%že±‘ÿ>ù{Êëë™3EæONb99CÆö”!ÍùÑE~´YÚAyÎÏ<&h-Ö^qx’–Ò㥑Ú-:¼¦ÝP=Æڴ˯ðw‡t_®Ç8ÜR`1Exr*ÆcL,ìe nºÆ=¦¡¡l$$ Þ|#é»ðè³ôÇ¥ø5¤ì£4ÆqÄNÄ3Ðsˆ°â6\ĵ„û=â0ÒuØJ ëŸÂ{§´\çuÒhŒíEÁó!g€@u]@ +•ò…H¸ xì;L)ãf-îž+L§«î ¯ðø<ä 2F(Î(øqeøxWŸ$ž½¬ +¿ù(hGüù øÂ* ×èýŒ]æ‰/¨Ä´ 6¢Ô3ý@é ¾?¤ UŽ@ƒ¦˜–Ì MÒxlˆ¾Ã®clãþÄu¾:ð•²ÛÐ/05Ô¥uûlŠä†–h鼇 ¢±õ‡‰ìGWcF¹9ÌôÐ`>FÌ$~ǘë¡*X`*£ÊFu‘8 +Oâ8’ºô"à¨hä˜JCŒ LYø}!Þ9––Jqà‚ߥl ¾²'¨ƒÅDõUëhÿ_al2m扉n¿À¥Å­î1$FH‹±Ÿo}}L¥™é4uòWè­ëlm³a,[š<¡ñ +ÊpT|/¨ùj¾ƒš¤'¨lcCÃPBbëé8áÉ'3ÕNÏÔº•™ +E1f<;¬Ð) ÒȳX+Ch†ZJ +é ÷Uš'œRÙÔ<ÞŒ\Ý”§ûƒÞ¨öØ?¶œY5tòŽv¾‚ Г/;îÝŽ‰¯Ãf§P¥lfíè]q}ˆræ²êBVý+Y­š”gÀ€fE¶Vµ2½U è%.Ï&ƒ0”-ð\ )°zªM‡G»óÒ¹PF„<Æ,sû 7NCëL#¬-i(± ¸Â_màž:iD[èótcu–üc_Úr»êkç<êëÌ Ý2Y–¾¬ƒ!¸ô¸Ë½ìØ˼æd' +5–b˜i²d•Êò•QaúÐ{W»+õv9ùªKhó® ©÷ÆMüy"Ôκ-òâ4Äd#Äì’YQSÍì(Bƒ™4ºœ¶D»©sªÉ_P?oP y\q¼Ðü<¿eŒµºä[æ)šœÚM"]PÚA98‹ªy‚eÇ6·÷(~jlxð „*É¥¥t´BKGÀT"ÖHÿ‹$OP S$÷,m¶Âó:ŒaðY¤ÑOq¹2®6jš–:z¹O¢»ÊühïFɶ~©¼…¡Ò¤iö®3ÇE&íƒ]£V)i¡3º~#ª/ÊA© gÄpl¡Òä²À¿c£>K–[Ü<ÏÚ ÚÏIUG?Êž%l$^ +Q=ˆ¨Ø=Åw&U4v^ùý¨1=PÖbñïXŒ¿?ÑL²¥.nö©uÿŠh€mU×wU¡bwÑ0T8RjŒ£Ô´—¤‡äG"»eßæÊ©ÑŸ| ærØr¦¶!Wv•¬Gãû±Ã‚\˜hª ™u“zŽöÈ%]ãV¸>JœÀ3çû¸ÏÈò¥áÙ6ôvI¾Û‡H\Q 13-¹lÍÊÿÅàÕÕà¥ìP×l‚Ù|#æÍl·;:ª™ÈصÃP¨Îci)˜# _·Öx欅ڇIxÊU> Ǻ"ªà,êÆÏ¢îCêB"žC9(´˜E ÏZV²7I º‚ÅDæ’-ÙƒÙ/„_ÖÃx*/“4’ ÊR¾g«|Œuz¿à-=ÊtCU}‘ƒÇ¿—[SíõCNRõ>ˆÐc#5?…îTË~ØÆGï +éù*žE¬lbü8[’Fâì2ûpŠxŽ&¶2O趚œçÆ»Kûà\2¨Õr #П\ceÎL¡s½M˜Ü‘ÏÂ3ŒQØ.Ãô€§2Sô´% m–ømWrßœi» +ofØÒ©†êTìæFŸ¨@ [?›¹”Õ¤šµ"ô¿Ù]¦ž†çbn$–€Úc$:[|`ŠÇ:UÈ×i†Ðó”¢B®Š Mï)mÁÂØ#¡ƒi˜ã<1tid”†Öó”ŒãÕPMؘRÔAÌÂ+óN¬´PÏñFsdmì·@ &²{¤IŽ‘´}«†Æð+ïG˜t8àÚm(¾©RsTîk™ix +n‡ÛCêÉ M›3<¥ßOQ»¶žcvFQ·à浟TÔý¬¢ö#EÝòúö¡¨» ;8Î+ŒÌ§µÌpùŒ8QÎBÌsLaMPá“@º§a÷X§nÊSðmØ`4µƒÔ9 +¬sˆìè lVW¯§¸¤º=àáj¡Ü›9™f. å¤K…J ý'ïÕÖÛ6Ž…ßû+ø±#’º.ŠE;·ÅÖØ—(7I;¹´kÇÓvýžÉCIv­¢˜<$¶"Qä9ßù.Ž2ß_täzÄÙÙdÔ!¥„™§Æèæb¾ˆµâ“¬t&w.ârû}Ø1ˆS+¿ãî‡,\†<ЗÂavA3N-6U[áPÒ?e X×Á±š[M½ ÍLÃþO98×ã3`s,§?š¿âWa®†¾žkˆbL¤8b¡ÇaúËð\©7ÌV“Ë´#ùgUI©’ežy‹÷)?Ñ(¢ôX­RÏ"Ý;ί',âýV94f¡žŸ–­™wä>ïcYœ;ïfè'±?t¡)xÆ—Ö:â=…ºðê¨q-‰<š.¿” X+Ô˦(9T¿1Þ?Èa®…bù {Fè\o·Ì³]rødªã lµ9¶ìÁl}µØJÑ…å`dø’vä¿ aä4¤]nµ'¡ãû^Ùác9æØìúáìR°}”ñ:É@d¥˜r¼ðþ6–úè +¸I£f¿çýKjdžã%|øŸTùÇ! ±L«Á°»?{ú -íÀã¢ìÍèg¯úy±²ï±fuó ô½,+ŠRü’O­vªÕ50ZUq§ä5zÿ‚Ûåá‚93/€Ôqw%ÿÂÉ–ñÛNÂÂŽÓqä#[Þ'9ûîô#5ev¤UÉ'â\¸´uuµ Ô5íÈÅ_žPú€ÞoOp—<úQH8å&¸^pvb`hà¾q¨# ;\ËÑ3ç&:¾ÈLâP-3“;ÑšYñU‚Ìä†c)SƒÆ!aB~%zÉD¥&×ò>…”ø°‡)¬ö÷¶k30œ™bõç‰k;µöÆÀ%WcÛ$?ŽÜrS‹2‹?ɼ13~7{l{‡&½EQå©JÔ-Ôi-Š•°sdcŠ†oÒuôSpÉüÛ·y³¢£õ¤y»*:¾Sò OC¥Â&di£Úl$Þ<-M”'¥üÇ pø ._Ãïªòf{ûìâ÷7¥¹Ý=»xéÞ ­ôÔãH:XÖÖøNâ\‡-~^–¥¿<<•zw\7B'_·«N_·ÎÏ„˜4wxK‡I ØF ß,K(Š~ûÛ³†Ä£4Êjo%(ÑwDhßǾxü’t×Ö’êþ·h8Ë‚Göœ!:0Y0ØÛ€½e°û#`‡…ØÅm + J²M >|›räÁ ŠwO(¿ÁWèP¥/{±T.¬r°bôGe»J;?GOÞ7 Ï3«LéŒyhŽø=Á†ëáÜCõ¡½â zjéIn §cuÍGÁJqèÁGTÇÂyÄ5-8 P…\nãs?eÞ ÁxTü§@BÑ×ǘ‚"©æ]à-ê@ƒõ'’«™äˆõ6ÅþXѪɊƻꬊŠ>¼+ŠÊá»fxæɅ´,öbó´_߯®¿==ýÛküyuyyih©¯¹`:â5ÜÜLöìNf9Û`9½d¹ˆåK÷@ÝÓ&…²çǘ¦TÎú³àÖ!¨L·¼l 1‡Ñð¸·EOÆ°²MtF ù<š"ÑúØ. µpÄ +d)$)ã–T7€Lˆ*£×ö罄â£ûha´‹’C^ ojjù ðt—Ñ´Ì€»ŽB$[Ú’H"(kP§&~`V,3Ÿ‹Q î[šÓ5cÛãB‰?~íØL}ŒIC,˜MW +¥Iª•ªßÉTD‰œK×SoØÉ&Å \ÕgºN¯õ/Lä +SUÅkyÏÞþP ŒÄëqí+’½8иSÜìd8´å 1AcaFLh³²,ûîÔ*õµŸ±Z¤ÔyÖOo O±,êÍüGYA¥ +g¤`Y „JBŽÙZ¦… +yŒ}i#ã[¡O‘±"³Ÿ ÁaØhOŒÏ°ö(miPÌ×@oŠÆdñf„Ì$=uÉ *²’êò$K+-Ð4IJ¿†³ ÖŠçž¿’…sU£Êg¥‘YédVª4+Šéxs#Ê!ï4OyÛÑDœ›[:†U\Z –ÞSÏMr j†v#õµÉõÖ‰5p+Cˆ©7ÉùX/·ŒÕϘÚd +YÚ||I8v2øq&•G`é̈ê©aòó\}Û†\À„í­rô£¢±Lä¡jlDjŽ ¶l˜ÊsõáU:i)É^ˆˆ\P3”+ôAÒœ6 p6B˼Œõ8Võ; ЩH[O†ÍŠ åéýé²þ€yð5ü®*o¶·Ï.~SšÛݳ‹—î=´Ì¬nx5XìÅæi¿¾_]{zþú·×øóêòòÒÐR=u¸‡û¥ïêÎض‰þéyYvÕ%Ò +n¾•þòd’éóÝ"ŽÌnÓÒ6W+Ù%Ê%RÐÆȇIÜ©]½={‰4€óåtžÌ¶§æá`÷ì j»i Ø2x ºJ¹ˆ¼ &ܱ&àðÔ÷aêk1æ-O½ã©o¸½ ›™ˆýìÊ™ý,©HX Ÿë,$°öt¶³'vúÙØýT{y{öÂeî'^¸ ÷»ŸT7´Ò`~”“$#Ÿ¼+<‡^Yù.ÚŽá¬3:ÀÕÔù/EŸÌäÑŒH‘w¶–åBPû“%opxï1†=å£aK×cK&úÀë +_W’ãðú„ßésñ¶1£ETL¤ä¢ðlH(l饄é)ÕrDR”Q­NŸ—›˜²ÁéXȧIÌUòÞ$`KõkX³-µ÷z‡h´Å1Èg-AçQÝ5B +@Îø,g¿)☸nÍÂãOëí Ã=kAÈ»`Q+éoKš^°&«KU‚¦ ¯‘<®³gÙ4ãº$½Y‹þÞÓæ>QL¨½ídâÔ˽ H}÷SÛì®K|…zW¸Ù èÿf„ø_Á€Õ‰ 8Bµ >¬2FÍ5Ú£NgÒh›Y•Ú5¶A4¶‹ ÒÁ}t Âó&Nð±&…E¹ 2²e­xPÝ)ckmµÆŒqØñÌÄGý·8Ø·ý¨hf8ßIAGúDÔ~Þž­8ÁÄHñëMö˜â•N'[øBÈ +ä H\³ ºgë‹÷a(*±ÈRX¹’l¥v¬lIª¤ÕþY 5Æà{ìô{²· ß!P©WX©;ñÊR†‚‹$ÍËÌ;e²íOF‰Èœ Y¨"»¾h3—l4ÉfÀ;ëQT‘‘Ì‘¦¤ŸL•§Å‘ V[—-Ü¡QtfŠ“A¬CÆ}•µòá?‹EAÖ9Ò +ke/RéJ–ÊÄKàÖaÁpaË 5.JauK2/‘Éìs?ïHiveûc¾RêŒøaÙ`ñ$…[*1Ÿ²Èèø$|ýVTêîˆ;…³+(Ï&ÜÓ¯`>hf¶Á9> +stream +H‰¬WÙnÙ}çWÜG6`5û®Ý1Øò‚ <Î$æ$ãÀ ˲eI–¨ØÎק–»öb‘Ff7Eö­[Ë©S§VOn·ï7'[ñøñêobõjóýú~+Ÿ>;‹§ëE#šZi ÿ£ÅíùbõòM#Î﫵|×)ÖïMÝ(-Ö'Âø*\ÝÂø¿­­0½©¥m¤P¶¶ÖÁ™Ï‹¥’Õúãâùzñü7¸é \„çñ,˜Ç¿^­^|nijëÅß«77›+ôðÕæê\,Ï®^>­V¿ýúLHÓËÒ]^}B?%û¹ön6ÞC#ñ)ùU):[7º7¢U]Ý÷½C÷þ\þ«:]íÄò|èë^,/àƒ­¥X^VRÖø!à+¥j#–WôüöƒS×ølÅò6ú\|n*åj-–[8Úà›Ücñ„Áï¯Ä]E÷Þã÷píMEÿ€s-^íÍ]ÀL­ÄòTW`~ùèøÍáóI4x ZFŸ4šHž8<·¡)x±G£Y€JâW[ðÒ¢iƒ·’;ñ>Yüñ<ùfÑi0×°tèL€'lí*å|Qä ¥ño–”Ÿ;ìÜa +=C|Þ¾¢û8¥ä@²Ã\Cà¾b~ñHlSY^|VQúnÏò ÁaM%Õ¿× ý1 Uúiû”AjÛˆ2¬u‹¥!lW£ŸUT'ÅÈP†ãåZÍ@'Î)L‰µ¦œÃ/ŠòŽõ:­dK‰:Åô‡¶˜@(ÁŠD(/nH¼štíž =¬—G”Š¬ †àÁ͸a°Y0wΠVÎ?ÌðòkˆŒæࡨ¼áu؈Š£§› }Â]– ¥(M¨ü-¶©t¾Ý\ÖéŸ}f ÈõEä±Q$að|ìè;f; ˜ŽØ´QÏD”c_SþÐ+ßÈÈçë²f;<ãðÈ)6<0FðÝzînb“Û¬m-ÃL ÜÕ,ÚÌ:RfÎVLZµx‚ØÑó4@ßÓ³Å×~P²žÀ+N"ÊC6Äñ~Û°žÝª0ðZ[xÈÖ…ôKü|SWnпLÝ7â+™*‰oö}pcKÜX5ƒ›Ú7r±6$úu¥P .Ø÷uÕѳö  Öžh²ñäO­í~ÔÚUrò0HC è/‰zNZ0ÏKCSEiLïwAÓËLð… hìà†˜‚Óÿ©4³ôL¼Û×™ì¥9Æ Ó³ +L ÑÒ³_s ¨J2~WéãýÅgaƒþ\:Á±ÎgØå ÅóœÂ(;ªaÁ±;Ð\¡ç ™¾«R+GPq¶IüØv[Z;ƒaÛf›Àä !L(ÇÚ!AÀ ëPSxQçDÂlSŒ_/´±¢þ¤Æ“¬èü¾DMï÷ +n¨ø~PÚ:1¾'Qæ5«£ 1ÇÚ=dÂiñÄ#™»!Udý«×6 ÷ܳ¶öíHÛAµnR¥à,‘9ÿòøÈNÒDýRѨ«²—e3€I0îC†]‰#mf€dt&öÓNØrï¸\{䋸ò¿žÙÓ8Œ=Z¦e8D憛$m)Žrèñ57Ûò"û1ˆ„t9±ìeY–l‘ç×UÏ@(ðåk' +ꙓw~¨]ä3T¢Æ\Úù>ƒŸÉµ$Õˉk´GŠáè¸óKÌ…9¸CY⟃\?O‹nª/÷ƒb0}IT&.•æ o£™òU%¨e]¾=e;‘|`="jjóÐŒðj(LâS;™Ì%'>„7-žqR²‘OL™3±µ…_hÕàHŸËôäî8fšÄ¡H¡]>+À?Ò&4ï¡(£v†‘mš F«µ|',ïÙ¦O'Â|!OÂTD˜ÝÖY-aIÃâýà«¿Ä:ÝQ£Ã¨!hGd,¾u~{}åe Bßø÷¯˜ÍNùËËkzžl*ÂÖ×ù‚ß½fÓÐúÜp»gAYX7œ„ÆÇ4Õ_¶…kµí8ú5+²H‰°׉ ÜœðËꘑÂQVþ‰Ïb4]@×ÏÁðßQòñ½Ã^Dµ‹"u̹3A%,%Pœ¾Ä%ôq#"ñð`!éó#’î +’&V…ÖöãÔ“•œö1£òÁâ·;=ÛF•Š@µ3iÙhÛ3„v[PŽÏÆøTщX 1Žæq%u.í9á)1ôvÖÿ{,bàæÛee5Èæ„c-œÝ@‹oN³˜r¨e±uˆ®¬Að¾­*K'&¹¢ýÃÔ<ðUöìæŽõ„35<vŒqôÌ6{7“Ã$y‹X㉅Ñ× ’ Òz¤C\¾@ "KÂðëð†G˜ô“ËYB›Éiç•Oƒ˜ˆÛú¸ ÿã½Êv«¸Áð=Oá›J±D3ö,ž +!¡¤T½**Q{R•„$ЊrB[Þ¾ÿfû÷,‡¨à&hÎŒ×o;¯¿`ß<š+ðt1i¸;-•m!•´ ˆƒ“ÐÄ¿ä8ÍSnA_7jŒn!!ùàsz>'߀M\ Ú®#|ò¹ÍGÑ™NâÐ’ %IàبÉXã/­ØN•§e€ß[›ª˜ª¥fÏÈýÇ‹â +=¡Žñ\à@ z—~Š–'Y"Ë<ñ”¾‘U”äd÷0^7ÛÔ¢ B'ñbTN +€ÄWqQ+Ý‚¹^+Þܺ!rˆ­ÇéÔQRš¸Òåô€w©´lôÔKRïlG”zemã6wÏp8+¦îéÛ6‡Åëµ€¹2]™h™›u¦OåR ƬoTJeËjŲøà aö£ç5‡4!Z|ôšgÃqØQa¤0Éé‘®sÍr¹‰˜ _ÿŠ®É_ \3‡9N)›8æ…(úKåÜsMç1,6ÜþP:7 7å¦ÎIñB:V_&jñ5^R7“J0†¨³Ê[år˜zOIh˜V‡ ¥N®ÂgaÌ1ÆL‚N©;òAí¨•¾ÂŸ!—µrÀ5 œœl% -Òõ1»Ba‡«mr#¹äL[è›WžI¥18>Õ'¸]v#MŠÜ*…8nAKYzê´³²£trâ+í6ØÁa–– åÒàÿ?†"+Ǻskft0pž’”B¢ªj(¢ðŸäœbð#|LÓ×MQ¼îd¤Û,r…„Y®,*Õ…ó|5E[¢³j}L‚Ù&¸9$G{º¨Œ¡ÎAL@‚BNŠ2Özà4ËÍ¢¬TÝà4hŽŽ×ËT«†žAbhrÀ/ +×D»'a,¥QS!ÃëÑð2´EÑâ›1¥T0ãZ:FŒÀŒ¯%à-ñ=Ú:©Nõ“Y‘ +KÑgn{ËLëš AIŸ²ýÌâaa(,b‡p|‡hôŠˆR´lgƒ +±SÙú ßo^W’UíšÆ›»›~|Q™›ýƒG'îw@9»~0€3ÀÙ¶¡3Zhðü<®ªÊ?YË^ÍGM¨,F ÍúQC¹»ù7RÓFÎÎd Î[(½jö—GOE:TX9GŒùDþÖ8Ð0¦¼ãÏ7X™–BÞ,¡©Öµ>r€Kü‚±D3ïê£RS¹[ÂC4~H¬°ìNQYÌeœ<–B%èf®Iäe‰ °ô¥tú¡ùH"•E˜3­®ýR>'ŒÜbåÃÈÊ)!ù?ó°iú]aCÒ‰k>§ó¡zxì[ Æ »/þy{OÏQîIÑÈF‘ìž=<Êj2³Ýú-øj#·sH¦qaا—÷ÏoÏ®þ½üì‡gøïôÉ“'†pÖûs¹M|½šÁµKW‘×òòè7Ûˆ&Ö“è¿rÎÙÐ2+,k/ëù”9ØË‹e¼–Op9þZÎuTªT‰ Û*÷AŠ<Ê4hðóK°ÇÄršX£Èv› nÆðºÌп­gºÉøÙµeçQ=šo:%ˆêŠˆ—wúµÜ-V›ör³ ‡ÜÀ7"uI]/’Hú›q} ×Aî¨ix=Üì0›ú]àpCXAîn¥®ÿ¶Ô­ S9P£¯ån³’»s­Öðò茹—€ÿpA"ùÈŒNlO6ùÈzʃÏÜPÖÍp 'æÕ‘íþMF·¨2 ¸/”¾1F®KÃ,<3ÇèO¶…/_Y“Ôxëq•ÄäïȹÂAç²Îã«[ Ôn„З§*LJ_œn%p´ÕWõj ¸aÎæ›U¢q |” +9jÉyÎ︼,/xMµ¾¦üÓ‰…~ãÈ™±\þq…’ljv/Ò°‡œsÌÉFá$Eù´²²h¶LÊ/¶ÖYÍs t$¬¹~’«ÜåEâ̖ܲ¿®ñë JKŽ¨^5ž "ºQ†YdA§Ø¦ØU›º"}Ú"Í}€… °.2-ùtl‹ûNU˜³e{ [–€2ú­¹á­ÆQ;ùˆÎéÝáÏãýEÓSa½›ää†ÏRzi(ˆ ƒ´øyí’ïRdÙÚ¢á[hèíÿ‘ÿ†õ .ÔK@Ék™zI!ç!Šw«€ÔÙ}Ž^ÁM÷¾h\Ól?KIJËÅË7:f‘ó½6Ù%Š)Ή¤'ñS†ü V@a +_Ü ¸&Ìæ„Ü°z¶M^¾ÒR×ERÈ9ÆõÄßÖX¾ðMµFMš£rÚC¢Šº@¤L«D»¦ˆýaîzn¨9¨JÐʸ^‰5…ŸÃ‰ŠïëÙh1Äl‚¦þBåëÿH“ûò4©×ðòè…eVæ&”d--™†.ØÛØó»¯ñ|ÔË üJ “lDÞ a™4²©Ð\MjT`š9 +*Ÿðo4£î«,¤)É®ö‹Ò ks®Š!̺yäè¼(C´%˜sm¹ÔÒYqÉÌ{6úòj]’-¥gìÍ&I©Ä$¤ßGËe샥ý;øïC“ºirÜdÞmzÞω®¯ó—æMZ©¯ð·¿iyílSº$·š¦Œ&Ú 8y‘*§B¢þ—%Qb\N…FYT ò>´À†ø…ƒ"\–ì `Ñ="»+Ñ¥bèwUŠr‘ΑHòG©¾å8¬ŠÇZqéRÝ(©©Z8“ÓXv —ÐÇ×A¥9 ™¼œ·QÀÓ‚_®¢E#¯T> +stream +H‰¬WÛn¹}×WðqxZM²Ù`±€mm6x±‰WÈK²<’e[—‘ìU¾>uã­/ÒŒðh¦›d±êÔ©sŽ_nï¯.ÎÎïÕ?ÿ¦Žßœ=Þ>Ü«|uòZ½:=ªU]Yçáÿ¦qj{ytüóﵺÜŸšÿÔʨӋ£ºªëNž«µüõMµUkà_WyeŒ«\ï{e}å} k®þµ²º†gðñïÓ¿ýtzôÓ¯pâp lTãp ~{sü—ëZÜýãèø÷»³ŒôÍÙÍ¥ZmnÖ?¿ÒÇ¿¾þåDß´eØ +£ûŒñŽ÷4„K'TµoðcøU“Âìl_ ÃÐrœ7º­8L•Q«ovjõE[S5jõ¨>èõ€¹ÒkSW­ZítSYµº‹oBZzµ:ÓÆãFçüx£×??¨;øv¾Õ®¾ÓlüÛ5¸/­ïp½m+§V÷°Î¹Ò¦Çna=ü~ <~ß©wÖ¶j»Ñ¸À÷q?k.µ1 œÞâðéqó:ƒå´Ý ĉaÁ}¬åàªLñl4Ž¥0:×ãV¸Á‹|Á@$Cnš¡Ž3ä$Cm~C¸@Ïre†j Öá1Sa¹ÜI½[ixü ®ƒÀN´ƒ{ÿß²xf {¾Óœœ{º-,þ£—ìªO#®ËW™E•õk½¦.8ÓŽjü¨0.†õ Ç)xd§ŸûÃ3ÊfpJLÍ1ä;¶Ü+xxšÇ,ǘ>ÌPj Äað lÜHýMKíC"xäNóLž ý°3î¾èÓ‚­:×=ï0à÷kJ Ã?l/TÄ;Ý0•\e˜"J{T_)©EÒMŸµfÌ(€Ödhþ\©S†ÑÇ2ㆅÍaQ”OZeMGߪ÷›D¦kÏ]ë¹t 4™¶Î´SŠàCþbð× Ÿø' *Úâ f胼üZÃ;ÿS«·‡g(˜¦†è穦íá‘jî<š¬;©Ì±e˜PÇÍë»<]¼\vo¹6MXÎPJ¡Çj¯1ÝåDëó…yë¹q¨¼ul>ËÔˆ´D$è$‰4ãX-4(­“½PL»p¥¦0s£¸ +hž"Õ=h‘OÜi fC€õE‡¬ELDfóŒb¶çNpT!<·¢ÌÛO¹ßq¾.ÔT6·7¾-жZëÓO{îmJ4Ýš;?¢™›–*j²Æ‘'sFF%³‘/بC”<ÇG¤¢ÄcH$U>q憗üI˜§ +ÕÜ36´‚›RH:oMj2ãjæ§KâbËH²e€n4ëú ©™Ópjó9M¬-<⎢À? CŠ¾ŠlË2‘z`d©egHWÙ „sæ`ãy?A{ Ûe 'Œù.û)4ºÐ &@½Ö‚Àß1¤0a3&$6fµ{æ¼×”<†2·¡Ô, +%—OD*mWjGºÄ–S™x‡0w/ ï +©oèäk2 In3x°yÓKÔoR≠µ6nþVÑÌñ|AÄD¼#ǹ¬8j²-Д†Ø<ÓÌÓ$¨¡  !·:.ƒZYÃÞÐ` "6ƒÜÈz'¾µ­‚Ʀ[r6„ˆ;"<7 ßèV9nSae¨Ç'm„⻜Ã2=±ö»®Ó× NUwÃðAhV­ƒ?èV£Þ,y6ë°ÝŒB`K¦4vp-)ϸ¯4ÂÈJ–òdÌ™yH^H6užá-ø©\çê,Ÿ…2 §O„1w+5Mý„§ÉÞO©Ð`#ç:Ígà÷Dã;5Ó1ûƒÃgà@H@­ Ñí#$žÐweÞ*É\Fó¢³TrÏÊNÈ’Z½Pïµc&iY„†|«oÉtDPÄZŒMãd´ƒ[ˆh\[zòM;#ùn Ÿ¦2ÓuôC“1,—šxô-rÔ_Q‹¡[Áfqù™ùWüÚe­ÑÒÓ‚3?ã‘r˜-¸£îÀÁÙŽ³H"pXDLæ#ûP؆ +KÃ,¨ãØ(Y¬{0Í2¼R/qR´²’¶Hýû, +³>Ù t”¥?ù’Bw©LÙZ9­£¸2^™wtQš)O ^í4g4iµQXðCWYq}Ñ1Æ1,Eàf3ØÖcT“¢¯Øë¢hîQ4︮pÆ.â ÔZñ–Ôxvñ'i*­í§&®+sã÷*‰“õÌ…ÅTÎl0‘çæšÊI²Hx…\ôµ\}¡³Ñô#íÇ׈"ÁO¾­y&ËBlFµ½Æ>t£²¦^ +QÈžLEÚ´§ \'ÅÛžSf‚òí +"i‚ÀpÖˆÍ-­v»ƒgÂëµEwì/! F^ˆº‡.ùE¬Ó]²‰VBƒk’æ W[Å 2¬áKýÐÅÔG¡¾ä¯hSXÁ5?´Viê?#µïÈÓ¸òŒ `‡L«Ÿ‡¬är&?[hãDŸ‘ò¦(É'ò¦Y²>™@Ð,µ^¨/ŒÂÈâ“#¥ #[~V›;/óÈbñ°Îîò{¬çûOí41|ê€|kÑTYSÉ,yÂç¥95ÑK¦$Os«wº¿È蚤(R‘QÿdAæÉÅláª|$@µYnÂýÔ:6cÏõÜÕCÕ…éHÎÈž0KEk¥Û0f|±˜ÿc½Zšã¶‘ð_ÁqYå™%A$Ž[JmUn®¬+§½HEÒZ²Eùõ‹~hY¯ø„/è«‹Žžz}Í<°9&›ú’Ì3cvãÜŠ=ˆiÑó~Ç’FÀS‹ƒ¡)A’Œ&S>;R¼"I–¸äæ̧yŒB5ûÓ‚_ؤ¥»Œ:™1YhüòŽär¿Ãƒ¹H³3ßáPL‘9†‘Ùk÷Œ±£{ +w5‹‡-‡ÈyÖ¤õ†m+B××.À*o"ÛB•"â ?ß$ýÄ‹*×<®y$%êjWÕÕìQ×,¡ÏýЉ–ä…`Ë㿸Sbâ +WTU¹¸à#øLIð¹sð+÷ªüL!$±U€?÷d踟k3äß` 3Nk~Q¯éþìÇ©†ŸÕ¯Ì8ñ¯/x€?º Ùû¤Yd)T‹ý8wÓ·Ípx„¾§5úž7è{œµ‹¢^1Úp™c¿8¾u=sui8Âa§ÑP%iÌ‘s‚0öìzР|†•6 &Lg4XÚž;Â…†Í„¦Ð[ÅhÅhý¿•Œ—‹y}“®BŒs°ÇKf>7ý {¾`Êš]º%´À·BÄâHÓ:’½áiY~Ò±‡mƒƒ-m¤ïߺq†OØ1Wà!ÅØb¤ƒd§vœ»MçqÚ€±YDä{î&&c)V,M®`°‚±Äãp;X°ûTTUæÅ¿v†’e1!wû •’øÌ/ð F})r¦ ¨@È Bòï +úΛN’Õµ”h)”z¥¤áæw²h”¯a—K|]óqD_ FÉÔ þ¾Lyc Ðo™2, 3?ñÔ‚"VÐàˆOøs}8šñf›g<½‘ñÆi¯ªÈ+´ÙŠ±ú85a]Òë@‡f¹me*ä—„ÔG}ŠÀjÖÆáïu-»½uVšpÏDɶœ ¾¿æèÈž†Œáí –†«aD5º©˧÷”ïÔæ#NA`íˆSXšNaÏÚ‰|·:c »®#·?ʽ"' gõ©›GáÁµd)eÔ ;¹Ç¸‘‡•_𪢠ö‚æP‚µ—z­.ÄנШøbÓ4 d]˜îÞWÇI§DtETŒâý†uâ1Ô[]uþãÏHß?U§ÿ_ÆCëÈFœ Ðè°##Ðã& c´øý¾8‚ã@@ÄÝ$,¡ ó¹jÜÞJš4ÂäÔá"£ôËÿZ%zZ€Ÿ…Ò·©‡ÿ½©¶å¨ `ÞíÄaÈÕ­q<ºY«½_-ˆÛ‘x›÷½£%bÓè ŸaŠ5”i7J–~§J€§¦Åe(9@SË°h–‘‘¯úAšP!òοzžÀ:–’UÐþIGÇmØ'‰ÏIÂÖ %zGtUüùöÆŠ±hú‘ˆDøÒ>i:³ä?‰oa)u×&*‘¥¾ “E;¿?N+ëÖ„¦«Që™âÐ Ÿy»0þï®À™^RýÚYò£/zƒu^¦þqÕÍØÌz1†Ç>vâ~êFŒiWï. M”EYÀEg°7f‚z™EñÕÄáú­CfŽÉ.õÉߘÓAa³ƒ×jg»ÇZuž­½p +Ëç3‘„À@ÃEÒ«ÞáÙ ü“æHe4&' Ü–ÀÇÀ«ä&XeÓ¶EÓá¨Ì…7*S¯~&üD·Ž‰u[»ˆýx÷ò§'P ¨#:­è`7Ð;"À„lqtÂþ+V=ƒY Ht3¸lײ˜ÑÔœz!à܃¥·9t5AmD+r‚† ðy}E}ÇL¥n+^F’»«fÒ– LÓü–0XÙ@ é{çs…GÒGzIs³ä^5‹’Âm~aøòœ‰ƒà–&Cï£ öàƒ÷"ÙA²×$Û&’OïAÙ,"»´ÌÏ"ÍÔÏ%W•BÉY)ø¶šlsߺ=&ÍÆkäþ°eÄäµb5PQ-gáüdÙ¯,dÿ{8ñ'Xàõn•åÆŒa²4¸*0³øu‡“•˜ñª¼Ïs¾n’óICpDûçLû=ÂÖ7M"U·‰\èÎs–5Zß +bÇؼ˜æwn¦©Bˆ®‹‚ºš,iÑ/ãz¦*D¢\8€d)ÁCÛè‘ìwþ±ÓŽuEtûÉûˆx'é÷ŠŽ¹Å×}¾( 8”â`¥&  1`Â;aPÛF‰LºÅ àÉ‘|„²#ŠŸé¥!œV‘}³$ CcZŽ£kÉå¼EhÞçpsá—ÒþFdE\-@øý`Õˆ zÄH‚F¦–j~òh•¸bДZ",ïš0©K|ã°9Ê—ná+p%ðŸP#äÐä¥U%Á)øÁŠ÷¢ŸÑˆÜâK7È·ô¸×"ÌÈ”`$žX‰½Ô—ø3 ¸º¹U±T‰ö&2-ä%yËøxpD¾–¼öM‡5þÎqà[#¼äÇ"oâ'33Ç~\kÁµ} x@^c@_SÅ:‘´O‹gýÂCÉÀÜ‚çuUÞ q†J{Vÿö$žBs QºD”YGÔ°Ì)BSðÌBz|.hcõÓ•ø+3[(y£Ã×P‘Q¥¤ss"Ô@+ñÑ‹Ì$¼Máéô29ñ9ù ,f¬È”ü"VÈ—[¿(r<‹¤J§Ø #°ËP!“<Ä8ä¡è`6]v—“fËH¤ýÄo¨<"˜‚i9²Ø*å—ʈÃØX`LO›G‘"^± ¹ob‘R¤9ÞY¾,›¸”yò~F…!œö!vjÙýVÞ˜²A4Tw«¡( ¢þÆW UàÓô—’ÞZF=—Å ‹ÉêÜ××GÃB +ÎêG@#ÒyÂK¢õÇ„!®œ +“§¨®FgKVÚF xiYõ‚V‘™nYy?63$Ó8ûÁ9íõƒÞJp1„fÕŽóÆ('Ï—20ÚKÖGO’kŒ »”꜔÷³ÛÚdDòHÙ3p~ö&óù–U·ÐjËŵ¿D”žþ=>gã­-9‰Òö$ì#QÅ„}8ÉG|™`D{_6S +½æÙpÊÊâÏD÷>„µTƒF7d¥@‡¡y2±û3Åç.µÈWzŠâèw1çFל³æ*²¼$¥ ò”Ë_í‡nìó¨Êä2LRKŽù67î =]…½ìÚ"èÇü“mÖ-ídˆ†¦S$„`éŠI´0áÝHG8YS1ê4€ôwøk·Š[Ù bY… -ÖCA&,ð@ÐaŽÃl©ÄÙ»GʼCÛhϽý­H';ÄýK+Ù·Ãö‘+Ïgõ‘7- Ê‚3ø—j±T]uþÏÏ ZØ«z%‡ù¤å=„¯3š9G €!uâú‹Æsî;9tŸ@:ŽÊSGD—6dжTVâAèrÏ’©¢Ñ&Ð ›…ahßômùP¬ý˜q5 ™‘ŒÍ°²ßÈÙ¾ÏEu*¡y¯×"Å}Œ]#R\ ®ÕM7Œ2Ä Òh£:Îþ>pp™nL=2‰ß~ˆ™3ZÄhŸô±ÔCh¡Øä³Nm_øf³¼YÀi%ô/ÌÒYßM6˜ñnYÚP‘…Ümü<â(ÉûàŒ­Òf„hí ž8M¥øHª¶v•4¬Rh*ù~Ú³ýÃÌ{—6Ì–E„¨(Dd¢¾Ü›v¨*ZŸ9©àÞ¢z²¯q³×ŽúsŸÜÆ[!`àÁŽø¯‰WU7lõêw<Ùåñ_ӳ̉Œ¿GOü꾡•F *ÐàGþÊiõ{þ,!„°CŒgÅ‹Ûçø¿J°œk +endstream +endobj +99 0 obj +<< +/Filter /FlateDecode +/Length 6666 +>> +stream +H‰´WioÜ8ýî_ÁM ’yˆ”¸$¶Ç›g“µ{xƒNûœøš¶#ûë·J"[moËöÂ@[¢X‹¯^Um¾_ÜŸÌæwâíÛÍÏbsoöãúþN¼{÷a{Kl|˜n(¡JcüV•‹ÓÍÝ%No76§ú%´˜žl¨R©FL碈O—5ÈÀ_]:Q[† +>W:çAærcb¬œþ¹±3ÝØù–þC @¡,¨Ç·½ÍŸ.•Ø¾ÞøçÆæÁÍì +=Ü›]ŠÉñU±ûAn~Úú¸-´W&wW WßÐOÍ~N[7ÉB©ŒA+ZóV-W**x ¥Æ¡{‡“;Yè¦ôbr&}À¨¸’…+k1™IãK+p‡Qp¼É¹„ðÿZV¸Þï+´.µ˜\ˆS©}YácÊFL¾K«Q÷±4¥“i +$j4>\J7°®+Éëwâ÷‰tÍÜâ'M[i (¾v)…ÌÑ%ÙŠ“Tz‹Nw¸Ât€õ7¢+ÊôN†lÿßG\?¬`ñ¸S¡Î ôj‘¸¾¢$$õ§o%z¸êX^˜: vŸºkë7È“„Ó#¢£T:SéÁ…÷xýàì‡=ÉÚS –þ&v1Þp;pD1ù²¬mßö1–ðíã–˜¶MÚo¢øjHÆÝ oA‚ï»’þÿ&Ú/?A·R ‹ý*)æûâKä¹}IÁÿ_F†)s·8í¦\Œ²€Á©±Ï.´ð›5èQcë—Æ®ÀUx¡‚°x(ŠFÁ ‚T»Ç»™tOTã*Èg5H¢6©švO¯¦ßÕ[•!$jjë.ÕÒné´ô[pÔ ó6*à/Œpਡ{ÕÐ àí'ªÛ-ê~KTb¡·®šä”Øî4Mª$néÙo9éæ_ð ^Ã_"Ršp +ʨ5îÆz/æ—$€¿`HîbãÆV¢X‰Í•ôà†,lR­Ï*jéeØsVYð Ï=ê 6Æ=n¨ÂÛi,¤ye ˆËB],ǵGb¤2ki(´Æ‘0#jȈÄ9¯ rh}‘ö8mÚ9Í@fà ðCƒPê&P†?zœ1Bí8ÃR™5N4ZãHÆÒD¥3ï `>?z¤1Bí‘"©éQG +­q$í p>KˆÚƒ>z¢2Ý,êš2d"kh(´| ¥àè¸ØÞé;€&m£òoH’I˜ZL碈OÛêØO¬Ðdú]r u[8 TT¾-¶\Ÿb¿ý »nx6Øßú(©Ù{/iãž„Ÿ'»—%ßCæ;x©–ÔšHÁI=Ó?׳ UÞPƒÅ |Z‹ú._öñð؈@ÂãņÁQÍu!±e=X¿qƒÙµæ°†WUÖ®ln™?T×ÑÅð4ecÈiH€WÝè<¬¦ŸÄ“Cî¹ø~?'ó³Ù•¤šqŽÍ_yà„.°QSÞ;¾-¸\¸®\¦}ç ïèšu¬,p"iã5rKàï¸|‡üWÇwR€ÕÏ ¡ä†Ú" ZÊ]ÔEÜs Œr5l—‰èî%ÙAw½Îpæ~ŒÀ›}E¼UÐ<oÕ“xËõŽÁ›{e¼%žBskñ2.ð2u;¸SżÒ^JvçCL¾*g7qþÄ#/Ç!¼è#5olŽÚ¬1 å_1¦~f+nê'“냘§GÄ´_ÄìáäïÜÃ$4åÁ'úB= õ.Ô_a_kV6Â×ØÊ:Äu?gÒpsÅݼø +W‹¯Ì0 m˜'ªNâj,þ®¬°YBAì•=6n‹ :;îT‚†˜bLà’§“v¾.ê±/¼¸ÍƹäY(²êIåzG ÈêWæÄ“ÃÉ{$@Æ׎#¸¹£n„´á©™fH „ÈaµYà;ÑEápkKa÷ËÆ6ÜUb©åôL–ÕŠZPZÝg8ºž¸úZÖtŒTÿÛ;}´Ó®c«#ñ@D-†¶ˆOÀ@ehƒ »Tí… $­ªÛØæw©´’÷á’è#… V¶þEOp„=éÉ÷iŒt÷„ öýž ±~6ØW¬ÇéÉFæÅ“õxIX»¯H‚ü¢(/—Ì=—jº’ ÑònÇŸ—2N£7RŠ'KM•ñ>Ž—ˆRÐSpJÝ¢Çõtý'²kÔ5¸hm7ˆpú%ª¤¦߈«8T¶<„$¬Šô NödÚ’è°,"U•sþ™˜€‘ÁMzÆÿ7uÛ±­dx• ÔW0‰º:·= ¥u6Õöª; æªÇuý6`ä‡XM,#©4è+숑·Ðg=TZôQ þºŒƒJTšÉ ë®Ã‰…“¤—xuœ¼¸Ä;hyHª'Kü’Þ©^¹Ä§žN~•ÆqæB«X?^LÛñpÖ/P±ÂÊ‹üp(ífÊ8ˆ´&—o´ÿßÄJŸL +dùJfó¦ËkvÞY8î,x ˜5¤uûÕÖ~OQd·›\rgû©É£;#PX™W,­‚ñ_ê˦¹q ÃEGqËò ‚Ç)S™ªÔîÔì¤R[òE¶dY‰$+²=Þ™_ŸþR2M(ºìÅ–D²°ß~ûéÓôXôê±7Eæï´ÖhÙéøcFýKÊ~ÙtÊò’R¯efÓ:É;;ÛsFùÜGã’æÚ¦¹å±d9j~€+;pøýuDîf½»‘€i^b!‡€´³?q=˪†™[›>M9€>ó7é³ÐpU{¦auÿ›ŠŠâJ +ëeÑàäoX+ðó5Ulþ—Ÿ²‚8åãj׆Fj…o\GµQ9UÅGJ,v?‘›êhEN)ŽÁíü˜YC*ÜaÉĉ»ÑzoÛlxæz ¶Uò|FøøýDoåɋǧ¨˜œ nRËìÆyhì 5)f?R¹ÒA*^”ö‡<óC=ŠeÓ¨gi«Ô´–Š}& 0îrU§+­ì‡‚vÜ•IPÑ~8ÑNÈ4 Hýÿ +5fƒÌ`–Y€ÐôFø “?ç¯Ë«i;—0p(I?¥òUG„Xás¨6QŸ£&^Pÿ†; ¸ЃÆIû~µ î;Úíj`°eZã?7)êˆf0uËO.P5®N‚¹ÃÅb…‰Ž=œ÷<\›e ©-‡Úñ.0˨p_1=Èõ¡‚¥º›Ê¥‚{ò%“™ÔžáÞÙ)àá')ÎWeÆÕ—æ´*3}UÖ‰›Reåy«,ÞÉtü†.rÃœ•îxT+yT#qáÜU¢—T$¬¼vÍ@?‚í±gEžB•òx”ï(¾ Ì…Ï}ͦT í½lÊ7YHS‰ >Ôv‘8–çe S•—úÆ(ßcŒväUfŒã@-<ÿÌ¥¿ÈT%ÉcÚf:}ÎÈÿF«kvSãU‹7ïÚ7‘»BäÞdŠ2rþ[Oý¬“uF¹`H!›gN8sŠ:#žxÝã EwâRôiF¼ˆËW°]“ć‘Ðã}üwž©’­.\Œ:Ó@k["±]Ú³C‚lc\ ÖaœA?qqÒ Ó •ŠÍ“±*àærŸ‘,u¹jqr+ðÈWàVÄŽŠ´Áõ¯¶Ä7„]ßùðtNä1ÛSÜÝöG+l‚µÛsGØÈÿ)Õï¥K4 ÀýiGâRÄìÈÑ’Ìªà ’N· `Q**ñΛ1ö6Gƒ*·³æ( •mùXþÛ’í]p,Aº¶S{yå3X½•AxéøUÓvÈÒØxJ|‘”ŠÕ‚^EMû«¹ ¿ͽÛñûrŒþš°œ©G2Äý ï+ñ-Ôì®|ùQV„ÆI¿ßd¼Æ=wTyÏ¿Îåë#&¢•h¶u3IïI¬åŸ™¦ád›QŸ—³Fwñièv%·[$gÙjþŠrSr‹†DZ^„øhG–Z…aciÌ2zn-‡}àC$¤·zǺCVs t§…xZyÈx“1ýèfTÉ=ɳ|§´–$ÍQ 2"¶0Vw(:úË‹^²àÍDI¾¯Bóá7)¦4aÁÀ7q·’Óܪk|-­A1%U¼˜gJêÓ\Oš$ÎR—ï²Vldü` 8-§'SºPCɧ9~i ¹vÝ6j}µo$½¨ó@V b|ÓX?]ö­>_L>^‡ÕëóõÀ¢²C'œö&ª¼¯¶ÃööÀNX•Òž¥—Š)ù ú^}ØÌt|M­ô3ó̺+ùŽ<Š +˜0ðˆ2¡ªš*–2Èeæø$*ÌÄHK¬‰½†]¬”&EJ}’§V‹f>ËÂŽ\„Û –švîãð†ïá9BΙ˜Ü]³uÍ%7!{ Jv-J— V~¥Ï¨=«}I¤ñWUôj¯6¿*3T{Çê;¬:Í*ržý¡A³`VYÉ£­˜ˆÈ¶â}½:\°÷Š¹hb8œ.š0¸¶õnnŽ¸ùï $ù™×G‰7ÕøôèÐFmtsÓlOñÛluUŒÄ˜%ª§%þÈ'×eí“VëòÊŽ +pXä'åÓ¿dÄû)S°©/T4ðáÃ8_¿dT«¿fÔ"¯à.bO¼ªñge¿H]'TŽ=cåDK,ª·tÚqSjÇýÚiåé3P +ͬZ݆aÂWa<dI”xAÌQ”¦Bi +ŠËŸ=ã@x&«>2ÅÞÔðՌ畹¯¬´¨R›û¡8`³ùIâpý=½7AnpS?&ŽhYc•t.ÃSlÉSì»–)S›@i#‰æGÊsAæŒíÓ;§k€Å5!Țȵ‰M ±Ý´­s#»9jûˠ˶w¶šBl¿9./¿»ôþÍøË»´øÄH*ųüTEA G‘¯¶ØNj ƒ’y ûÒ­;–òèžaÅŸkKûØŃšʸe}®1ŽŠ·¢ÉßSì®ÎÏ(ÏÒž¦µê•g;n‚î3̤߳™óã ß1ö’Á|1ùx2³æK‰ ½M+ª/kŸ°8$¯,$g´òäÅ¥|õ§ºúÕWÚ¢#Øø'©°¯d+·ÿ&”Òév ¢jr!Þ{b5Ňn +ª:¥ ÒP¦ƒÆ•ú°¦Z9ºÊxì› Li;¢žWëx¨£ÑéNf½m`[zêÈXªúP—ŒËÁ^>ÜF SìÔró[cë+^'S/¥Ôpv}È4}ýÇ`ÝUù9é$‡=Ÿ":ÌdŸ…·ãW\•'ÑÉ v2ÎC²ôze|O§œ‚“ Ó÷ 6·ßQ£Ž-°Æ§;¨²<ötý» °@`‚L꤮axnÜ7¢-ˆ‹OÐùgwYÅwÉÚÂ<ŠÉ=Ž:ŽN“ÕÉ@Õ°£ÓdÕK¸)²J"ƒ®‘Ê*Þ v‚ÛÆ•ìàC”™ê­eS¤œ™nžSsªß·©{Èz h/? L^åqÒ,"°i™V•à€_u†>’YÎ÷4~@,YfbdWãŠe+¶ÕuÒåŠmÝ›% +X½Ú3ÊÓå—ê4yV½òlÇM‘§;ïLïd:þæÂ,³î˜‰×¤ÃïxAX±\<Úm2ïXô¢s|®5:ñ<v¡QÈ[™“f™ø¡Ž¢÷ã ÷|Ò'A餵ôÀ¡¬<~Z4ZlÛäýk¬Y2}¿°"³M¶ª¼>£f-|8I³*ïÕl;n‚f•:³¥F;™"¢;Î4¹ã2£ŽýòåÕ–Ó0¯’_TÍæ}~øãIÛˆô¡ âôØãÙͦ ¾ªlwýÛc{´Î†¨{wÅy`¦“âO&zfž¯6s L7‹¡Ò^œU‚¤ÈÎó_o¼ÝÆC(eÆ\ÕÝþ:Ý:~!¹gqδÔ]­MY„|HªR€.€»nyu±q•ÔXšËyÑpɽMØHNÉ‘52„ÃÌA|€Ù¦wAUM|·ô'êGx‹&„b¢wÖUt“jè¢wºq׃Ö&×TtÜ‘O¥ETÊ;“ùÔÊÁ»¥Í€–ä–Ò…H­üÚt†Ìr±õô5â@dtjXZ’/æm…$·ok€·°OU]6†ßhœs¦M¯Áͽ㠇q¢ØŽ¿AhØ*$ƒë?£Ð|@O@%›oÖCþ/ÔGÚrAãÖÛ"iXFiᶅ–Ž¼´. y$ϲÇâ^ÒËŠÞ7$í’-ÆüÒ?šèe—> +stream +H‰¬WÛnG}×Wô#0GÓÝÓs‚±• ²p°Þµ}X/”Dʲ­‹I)Žþ~ëÖ·¹ˆd‡Ã™îêªSçœ:ýaûx³Y]>ªï¾;ý‡:}»z¾zTßÿúì:y}~R©ª4ÖÁÿº¶j{}rúÓûJ]ïNNÏõÿ*¥Õùæ¤*+mÕù¥ZÊÕ7Õ”-¼mé”Ö¶´ë”q¥s ¼s{²0uqþéäÇó“¾ÂF°@…ïÂòøííéßn+uvòÏ“Ó÷«;ŒðíêîZ-ÖwËŸ^§¿¼ùùLé6ÌÂUÕgŒSsœç>LÚ¡¬l‹»hÍê^kº²ïûãûÏâ¦XSÖjq•‚ï¦)­Z<âW8>P•­Z¬ð“ý ;|ñ·Âê²xÕ·b©éÞÑðÄùPkµ+:\å nU¥V‹]òr=î·¢wµJjÊ–…ïøà•Zùw7pÑâ«5Ʊ.è÷­Úð žp|÷¾Âå_ÕÑí +C¼V—,v_ôØ-ÆÓÒv?wê~€0îiߎÞUþW¿¸¦GJõO\—½Z|.,%^†Å³ŒÐ¾;\ÁàÞ|EQŒ¢Æ,ÜFã*œdx|‹a9LvøÃe±lð>¥Í`˜;HDô±€ú:\HN3%çK)¹RÅÏÿ`ø2Ðêheåê9ÁmÀÑŽðPT||SS¸½ÖÅ‹{†ìbR ¼Áƒ­Õ^"H|…;.9ƒ i»Öˆ²y¤Záác:uñ‡¯uYPœCuKAÔè–PÓž7%X@·X†¢ºU>¼€XÙ&éAtÚIÍ að ² +FÏU¶ºü4€ÄØ'?ÖQu/ Ýò 5hzEQz œ\§ÈœSxª€VúÞ1žÂVo +Jò¯ÅÒâç¿TAìó€ Qcè5üÓ¸º¾LM )üQà1ÓóŒÞ´,Žº§ò=Ìo5´?Ñ!5f7hLæ7o)ñþ{ˆwa­µü>XÜг¹³ÈOXzÈo1BÀ)×ØH„Œé@° òl’„/÷ÃáÿçHäœÿK„^|„Þƒ7:‚Á#ŽSt8jšLí2À8g­]“f±LuöåµÛ"+3ƒÈ¦ƒ6H”rÜžW>¡Ÿ@ +á;Q혾ŽsÔZî~B,·DWžPÉh¦U$>|÷X‰o-ú¬î‚žH7åN¿m0œ†õ¸ã°_ôÇÙ‰5Ô§¯Ô^Ag…­°±©¥Ý@ó|k¹iœæ§<éعTvó( jM©ˆÖLW¿S3š¬ô]ÆÈkS[6!5{•È×Ƨ„šMA$°½pEÕlP57°UÎeAµÝúÆ6,cç™Á!3LäÐCŸ´7jöTuö¬Pkê*'LÑÆWÌŠõ …Ì^ƒ-‘Ê¢òáÑ'ÐÀ!B³;÷|C]ˆI“PcÔhkg5£¦A£˜`›Â'~W õŽ¼Úzo'h©ÕÖb2·òÞN<ôÇþÝ Gëù&,²º»Bß7ÔÍíªlË%g—Ê ¡Qb¯Íß±ÃjÚ°æN­å+eùæþŽ×><_Ðzi¾ÃŒ®g).: ”'ð +ì$íþµçª”&ÉYÜRýí”-H‰£™%Žr~‹cÁ¹!ißG…Òˆ›)Ú?å8ÿŽ¥½Ÿ†]•L?^Uû±û)ì }ç…!æø‹~ŸÇL·Çþø™¨Ñ¶EE ^ŠÝèó1¨Ðù,Ò630P6—Áº,ÉáÐÌ¥Ó†6KÐjUиŽÕÑâ'““ˇ8ÃP/d½Î˜öÙ17ÒŽÊP;ëQæýáöÙþc6“Œ™ ·Cm’YÎË(X÷ħÎÒ>˜NÊIèà&9b,ðU"'Xª‘ªµIÕÐV®7 +ˆÏRª?Ó…»cerDõý¢:: êVràÚ#Êcdx­xW8?4LŸÚ›¹ùE2¹S3kõDÔ)¦écÃh‰œ!˜ä³ÎòºaY3ðcüFÒG¾˜™ÇïÄãÛ)ë°OÇÓDú,t§{áh|PËŽwD‚¬M;þŠèe€Ó:Ó.ùÀ4°‡Ì0¹¤à:brYIÁ«›9Ut-tTï„î<®²17jŽ÷=”†GåÏÔÔ。Žíh_¶™pJéŒe4o<«m¬ õÔahIßhÓq&,"¯Uô´P©~@ýA*cu2âh?“lŸ¬¾¨ñ·F>%Ý3é$F@º=F}ù0ŽÀ˜ËI̵s8pmYÄ3xçóçç+=9_qnÇSjPI~ê×SŒzÓÀãP“¦Z4qeDù¢°0¤ÈK2K9«ºƒÔr¢-äÉfq³S“JÔ­(raš„®ñmÊ€­‘¿ÜSù “»Œý^r»=Ò‚59Ö{3X«MâÄ/°iXRd¦‡Vc7åŽ¤Ô ’‚-§÷øI19dðLj6sõ7T³Ë¹|É,5ƒâ€aŸvÝ3- 84qŽ×¹‘öˆÆBmxÎœE0ž‹)’èV0=f&("~+q–ÄÆf†í,¿(Îã&HÕÇ%b1:üpˆµ‡Hf¯c$³Ëá;;H:œˆ,2)Âwžùbû™`n‹ ìë•G9ÈqÂ+ž0¥.™åù4ÀKNihÛ6¸y-”…”‘x=9O6×!J)+,¼DÌ›‰Š#2n¡U;ÜíI íe!ÞÑ«ú xö§¥:gòʉŽ›ý¡¨ÙgˆuËìÉçNhc2ñ+¡}ó$Ã}0;;¢ÂÁë0²»˜š,,‡ÀS_$†¡zÍÛ#Ϊ¨8MT´ ¯ÅÏFØe¨‡2e°]ÞxI©Sƒ'K¦•®¹ÒÝt¥Ù=Z¼?žL†^jJ¤9¨0#ðþ))ÕXú+‰zl#B,Ü*áBîžJÙÖŠJ‰<Éšë°«—U<ú)&Â&•*t*OZô(- ÷£¶°8ìÀ2FØ쫪Vç—J.¦XU8îC’—K¹¹¹—¹h™4! <"2³9Õ ]ƒmà¦Uu× A•˜Î0O:±Ê~Ö+Í\ø$‹{2½)àÍ_ÑširÓ•x MšˆcÁ©Õrïíkµ$š‡sþuÇÃ=[bH\[Ù8¶ä¸Û4=í!Q>d¸î%ÜajßäŸR?Ø`xqpo„2gM¬&ýìZÆ8X¿Ðáð±8Ë:G8KÓRhêjš®Mœåh‚㌋u #e§¦^ýŒ|†Q¯y, +³hèñj0mˆ5 Ÿw³¦ÍF!ßç$t¥¬õZˆ&Ø0#x6ÓšijX!¯Â¾éº| =5zEpcše™ùÑÔ¢îfÀù~(BpÏ…ñ¾Øò`4ÒjD1ƒôûÆGÕdÖ!Øuµ­ð>ÀÛqR8ñ72ÛÖüP˽Æþ%æD{†Å¯ñÓV¢Z‡CÛ à×ÏÁ¯¶‰ïŒÌèñÇžX/Ÿë=ª½‹Næ[T^‡ÏeÚÛy}™B±½+'‰5sÛeÈÈq?«DtûÝû78çæ^ÁUbS­±q`Á¯ÜÁ2RRˆìxÄHFaKúþ¨^8ð8ãùÄX€cZ|(ÔŽ£ø8F…Õáö­°•Œ$ϵæM`v ‹¶¹À7íŒMŸ¸×”ó1I<–ÊÜ8QdÛ›'V¾®†T{OP?²Bk\‹<‘2ÊÒ¿(-sp;i—&Ü¥‹`‚jbð‰0Z²›Ãá¬IË‹Nbq=Á‚±ö}ôבS’Bªñ‚Û*ñ+Hþ=K‘\ìB¿Ñn9ÐÅ[¨Ô’Ž ™Ñ#ðÚ f#ÒPÁ®qü¸Hõ‹À@ +°Á0óN‡&Ðëõ°c™&J5¦úxdV𿂉3ʻΌ(ü„ʆ@íóø4D 8EU݃ùêçiiÌ}’“^òÏkˆÃf®(žŸKïó±J³ãý'¶ŸN¢ð>œQ´¡¢ôŽ½>ç³v8øèUU2°„äÁ¾qöCŒ08Àé >*N ¡RäÊÒ”UìLpéðc)ÂQ"ØøL­î†ìP€C/¬d„4é˜õgGH±¢¯Ô6«“™@Õ£'É~Fú?óUÒ\7„ÿŠŽQUžKm£Ê‘p¥8'_lÇK +¿8<'óë™Þfz¶g ràB‹4êéþú[>ß²4RüÌñZ¶$Ž8)¤ÛvX#]öÁÛZ†EÁ|oÊØ%$ÕÙ +R;«üðz´õ94s;á]a+•?„²‚Øáý›Ù%Š^ò·ÎHƒ^QßQ7ÅÛ𻎠^ë°×P”eA4Ô^‰$.? D‰£j‚¬ð/wíìÓ”šîÌã4Ñ^²Ùú]@„ÄëE;uhtÄ3‹ñ¡îU'Ü¢Ù|Ûdð´€ýW§±·ÃÕ&'¦¯a{1*œdxhéV_àºÞ)6U¼R‹s}È6?·q}GXa (©ÄÍû*ï¥Êð÷xìP8px•erµ‚crLMØQÌ,G¦`äŸgÀeë r7wµÚ´’£•+åë…øŽÜ_n,h'T¡´|›¡«Ûß³æh2èaOiwMX¾Þºâf¹°ü²Ð?܃ïZšó·õCõ•“UY aoJ&õÁE<¬ 7Jw¬ÁÏ Õ³šÑ8Ïg##{}÷Ýج¿´&Áw¡Ñ(§Ê(Ç0JÁÜÀýwÖãèm).ųX½ð€üEpsp“EÒV…ÚvÄÒ/öÌrŒYfL½Ö0»@94Ã8*—ÿCë®û›»7áU5ÕDÏ,îzS€TxÁÆû <œ-òøŒvìM—žñ`RÖNâ[oIùÄ*ûòÔT¿@žqàIe_ȶ©‹Jvÿ¸‚#ÅÿŒ Çõ†| +t¥‰BÔš‡¨íÓ¶è“í}šc—>Uõɬʥ+‹í%{[üû±EûTr}1ò)ƒ„óŽP„$à€4áK;òÁøë'‡²;BÙW´õ«2µ…O*ãäÄXÿAõMé][Àg8äN@šÄ‰€Ç'ž½‡žÈDü™Y¢ÌKg4—Æ}/f'ê«¥êÌHnÀí•H‹§³IÓÙ|.1†Æ*†À™x yñý{räÍ +Kä……œO¡dÇas*¼–îaK ávÅÍ¥¶]‰ç–ýÏæM¯}¤ŸÜ <~íjõ¿Öà øÐT๷A'ûBl(9B1•Ý͇ÐCKç•h™y} ±à#Ñ9C5\•¼,v ™) ì!³5âšÊ b×+³}P[W(C¬= ã.dŠoˆ*ÃK6µD}Â2|[ºæ=ãã};àÇ´‹§Lݪ_)Eêy–1®u{Žu{ô’æÕÔ!ÓÑ5h‰º»Ú*-\FjfI +uùmK¤»K+2³ÃÇîe;hÌÙÀØDô»(SünM<b‘çl-š©F…éh¥¾5Èðä7qN ±¬°6ZNmSȳQ¹‘g´ó 4(Tò/Yryl>`xSƒë}dÇžùC… +^£JE× £¤2WɘuÚö7Š B–ô _ƒ›ñBpÒ¼7È=‘097úÍ t¸O}Œ§©Š§eP®³Í«îÀñcmYj`s- Ñ 2ÃF¡-ö;È XÁ‚Z°—!4ÔÊ–m;«ã˜;rÏh¾¶f$^]£NJ“+–Ð:1Z +©s°~¢½À¥_’Øg•ìò,Tuh®b°Ø~uäEG¢ü°]ʉ4|á"H"ÔÑ?ÓÓÏ° J²Ï‰âî=i +Vð.„†»WK¦àþSaƒFÒ©]æ18×À`> ÄU8éºÓm÷Àâ%!H¹j¯ýŠLÞ+6+49#*z‡âŸYb$Òþ„Ž1ÍA`á¬æèiAô:7Nd%°âçæ‰9÷®áų h&‡ª=c×왬Mâ I¦ë¶¬sm:£Üû­«ñ7×f`UObt•`x>ѾYjX<`L”Œ0ƒ&5Ûa†Öß[¤bì¬:Ô:$þÃ&—BëUó'oä•øDb—í…foiöìò(m:5Íaåµkœü®Œpâv ¬g,œÖ;qÑ(p¹ÕÍ:Ûmsç®YæÞ.à±,Á,ž äFÍS’“ëÕÔ( óÈrM‹ò”3³fQˆE.ê#sŽ¹˜”6ŸnÕ”2÷ì³RœÓHYå*âPBœ7U9h–×@“YVnÃ$öýš_ä f ÊÛÁ;÷ü»ÆÖÿ>›¼c_¯ ©%Àö“.þåÅÛ¢<‚}ò]Í”/¶Tóæ*Å9É6zÇÃf,z£þñýñ*B¹Ì«f?ížT/'*1œ¢BʇøÔÇB„=iÙεòé•a§-ñ³uÚ¸,zîå‰k7¥âê‘3­ÊŽŸˆÃ2‰}&¸Å@û72°U˜*¬¶ñâKxÆÞ1‰£ZŠž rÔÌ9ÊýéÅÞ‡(n{…i ” q1d„(ÃFD: ‘–#WH8PòØç±)ÎcSÝC×mâ#æ^17PŽ §\Á>ª +Bò%ûLëþò°wcJYU½'åÙÓb>Ó¶?Áð Âqd§ÉÖ³ìé¹/:—Ñ|’¥¤Ç=èã7ž™üƒŒOés/Ìdø ””#hRSk×HÅ $!y’žå2‡-<†Xú–{«cÅ¥cŽøÜïE¦“tkÿ©r "σöÍtóÏ|‰“Ÿ÷UÈ‚È$8%é¿[†íðœbZt=« Ó],„Žß n¨§¸¸”íÀ([(=Ý´ÉÝYŠWŽZC›£WžV´¬‡~¦Ó/š÷Ðæ>²J«Pp/Qªå=ÒÇY9«ØÉ9F™PsKÖëÔÜÁ•'Mâ(dzޒ«•4…gg!Kéü¹Pµ9ó†¢Q³'¤,iH±5Xº›„ò?õí£ÒÔ¿„€‚À?·¶1¸Ý¤*`` +úu ìf ®æøL,Ãö®ÏyÒÕguý ¢«WÄ={hfm±ˆ¸Õ·°õØä{Šs§[¦¾[U}Ðس1kÙ*<:£bÀå›vDš†Þ° ÄÒ~ƒøj*BE|}ËŽÝ×Î<3×|dºw—6™Ù™}1ýˆkvÙ¶.Þ;>àžIä‰w°(ÉÇ.¹ÚE7À ¼Z£°â1GXFt½eSPöyK,•B˜DK8Ïè¾{ûW袻äO ô˜Zìû/l+‹)ÄÄ)dKi‡^{wæzÛ·F€ëkáÁZ•Šn*Îyà®–w‹Y[óCûªZÏb¾[¾â½h~f—\’ƒ©j…Xóˆv&‹oÎÛ²ˆ‚ wß@÷fFþ©9-ÚZ©)7th-Ø^¤þ@‡Ã@ ÊŸ f??¶—íÙ> +stream +H‰¬Wio¹ý®_ÁCÀÓj²ï`±ÀúÈ"›Äƒ @#it¬%YÖÈÖj}ê"Yìî‘fŒÀ€§ÕYU|õÞ«ãŸî®Îק懎5Çï×OŸ¿>˜|ýö9z½:*MYøªÿëº2÷GÇ?(ÍÅöèxåþ[gVçGeQ–½Yš¥\=š¶èàøש‡ªêÒßMÓÂ77G ßØÕoGïVGï~¾ÀF°@‰ßÂòø×ûã?ß”æí磿¸[ßb„ï×·f±¹]þüÚÿòæ/oë:—‡k0ªO§ q:Ž“Âó´_<W=âMße5Ô¦ó=<î óß‹Ö.=ä°(,¼ ¿ümfe鯫»tx±±Ë¦hÍâœïßÛÎ,Öêa…¿[þv}{Æ'ôóUvà›á廄*·ö?«¿ÆR=_ ¯Šq¼Z…â¤]Y‡¤ÎÚ¥¬/ª¡l9ëDޛťm‹ã÷„v¿1Wp¿Ä<·æÖ:Šó³9ç—ñYS8³øݺ¾¨)múîÌ|¶Îa.÷f‹Wž²Š +j„ßâ2°Õ Æ÷ð®Ã¥î-ÕàÌÀûž6Æ]àά¸± .'!ÜãÝ–¿¯ðûøéè,R(o,¼ðO¬6üþR„ 3ÊÜ\ãû½pGqR~ù@ÀKL³ÁwÏqíB¯nîð£Æx?ÿ¶Áã…G§øÛJAö›õ˧ŠÙ`æy$[s.*Ý$…k‚£ úÂE¬%ŸS(ýôN¬ œ Îã=Æ+‡60BÂ)_òJ@÷ËÚúqð@_·Ô ®¦JmT=§ `0XH¨g…{zªÍüÙb‰¨Ê¿Ûoy*ô+Ã6!×¾¹¶¾Æo¿Z>PJ¨'ÔpBá¬<Î —Ž»Øá½äUÙ"+´TG¯óµÇD¡oÌGï[óhaõJ5"àÉkÌå jR;Ž:cÐ M g]ù*CÆÂhî~~íF­ IÍ#¯‘Ê& ÉjEºE¸x…}}ßiª9\ r˜x€Í[Gêa"Öæ ß«ÔñÜð %óQ@i-|.»EZÂmø4K|yŽÂøð ž`‹|³¥pÈÀ(¯3¨4]FNWO&¶eêþ"EFìQá.'–ŠÃ›(ReÔ„52ÂhŠÀ»mh@—îŸÀƒ î|Pº¿Y1EâVà´ÍH¬lûPj!¤¥1‰è®‰`bAÚ>¿³Ã3Å!™#5w5kÆæ¹;[2ùDf'FGŪ£D °FêÃúP數Ææ†2ªyR¢æœ!wr²»Ð"À¼)Ê6–†–|ìW ókù1'ånp¯J ÄFóvÀÃ÷T7"‘² .®›šº‡Ìšª›Àzõ + ?‡ìÞçôÈ>×ítRmðˆúd½0Q†v6äG^eß+³?`&ÔðÅÞô©—?òÚÝ p>ªèÉžíõúÁû:ÙQŒpŸ$–ï÷û.ÀÎ ý<`±G¬ï±²ÐTí¨èKçÅ\Çæfžç¢_GæŸ2‘]cðût€†± +z]Î_u狲¯»‚Ìãe°³(<âBÅv€ã¾œÃq³Kk§æ«@ãS\ÿ 9/¥Ò®M:Ó± Âf¬±˜¤ ÿ1K]\ܬ±_r×$3I‘Äø6¹$$ºIE22Œì¦÷ÒÒ5§’[ˆ²#¯Ažƒd㎡¨Ë#ˆãZ Z,Ù~j77~c]ãÚÈCÆíÌ>©@„×ëŒ{ÑÜ'½#F¹ÄNm•ñ(ÑÑ<§&·Û3ÖXÆO1ÙjßM|.øn—àûNM-‰çÊ”`<Š¦©E™N>'éWñsŠŸ´Ú ‚üØüŒ­UDÅA1E„LŽRùD‘b>0¥¨65&“Ü­VmÒp+ånsk7ï(uUdV_vyÉ…Eãó²íi” f뾫öktkú:Gf×í@&à$M5o±Lí[<Ò‘í íËeR釚¿@Fù (fgk°×Û¬×}¦r CÌÔ£ì‰ÙöÏtAνÓ*2qm๧ûñ®¿_8–¯ë1Þvš—Ô8 +§ÐO›Rúd+Þå «^]{4 {ÚÕ¢%À•ÔÐ(šË´}ÊXÝ(LÊfleÝáöÏPîav5r0»ƒÛÏì60î%³»{V +nª¡¢ c{K0ažm Ö¶¡è ò|ûRTðo–_~gáÿeI9?Ú©(|f€ÅD1ƒÚ¿ä¬©ÅcÙðP™¥–éX°¨Ë!pL®U"ÂÉÕtü¿Zßà[”T«’ê(©¸G²X=B“bœ›C›qJµtn›u.OUÿ7~v¬2v<Æ>—D· j0¶%w¬ˆ5QsVÔùÉ1ã7„¯^ð5ŒBs√>zßjŠ#-øá%ñ¦2]6»%zé÷ñ´:ÿše^ çtz ãø€{&r#ãpNÇÂv–ê맘#¾0í¾ùþfÇ<P5š°\½Cs2£P;Éþûb­Ô|ElÿÄgµå#×=À9›“ÑL’p dÙìµhàÔÌUFÙ —'ªÁu…gö(y]‚qdYæ9–觉!zyÇÏ»ó&‘ +b¨ÖsVæú‚nü°þÛ2¿;Ï¢«V²Â‹ÉBtTâÝ…5#ù‰%Kñ0yXê\Úv@¥eÀœRÒµXßY6Ì9¢VKÜ®òJøĨšP‚ß’c¡5ïC·‡º{fÞM+Ÿ]ÉÑÿi¿~”ŠS?žÈ¸%)Å–7–pðh«†}|`ö3ŸàuBòËíbLs¡É|k¦0L„ÒlLydÆq¤üžô!{“K£øn5»W=ôEÙ‚¦iü,–û¯vDe@9óø„‹4D=a[œÛU;—:©Ç/ïìÀšâÇšB.Û‘U<Æ#OÆB9°‚ˆDM;ª©ù¡@HsÝÌ1 f>äEø‰Õ9͸jn"¾N®tR©ÙWs¿‹Gü@/à“ó¢ùá<1ƒ¤7̘:Mz'Åá¾n‚\8Ø!¼PÔ’ƒ+YC¶êsšõÝd»å®TC„jæžPÐ0>]˶&Vã9/Ÿ_ñXA\’ßñ¤ïÒnÝ#‹—À-FÀÄÍŒ|­Éf·,æ°@„4SµØ’ÀOæŠ0T‘®/q5æ¿€ ‚å¹msû&N²æ!8„ص[ËŽã*ìö‡ØÕMbc3uØÊú´bn)Híb©®Ï´¡möÇÌ°ÇD«Ñ²ÿDÛ—eŽÇ~—î7­3„Ç¢üb*DŒ«ØŠ³MxQèw“٢ؿÁïY±‚hÓ¡O'±âü¬+h«¿S³ˆ:º@A€Ûq!Ž¿³TZ y‹‰ŒÜܪ©óØÎôŠâþhKÂl#Û‰y³-úU¢9åÇs»d<˜PçôÞ'ˆ4Úso¨õ¥Ûj + ‡@m4іèÕ^M#ÿã½\zã6²(üWj)i Y$‹ä2pf‘Ef‚Ø“U€ ²[¶Éí‘¥8þ÷S÷UuëÁnÒ fe¹Õ"ëqî9ß¹õÉIˆ›ù#"Vvû,¢<¦v W¥¯ÉèÒï X˜ó•î8éoØv.ãgƒ4ÿ˜²c—´ªò¶ÛMp +Ž5×´sÞ±äµþÌŒ÷÷~áøÎÞ;Ý s˜„º;jò|‡óÙ£Ö>U”[3/K±´”3ysŒ2 “£Œ<^P¬²Ë'¿mH4#<ŒØ3¨M|¦iæÅìé¡^²Kà÷èeoMkª¶!ÿê»m¨&…·©—‰»øˆëõ5UââE~âA*31tL ~EÆDßxÎOFņ2p!mGkWr‡†uß +*€\ *x—£÷cãHå”"ÈÂçÖMüù } ÇO¹ôg~€¹¦GZýѾLÎŽéVõWݯéÌ«[,AÞQ_½6üQ$mÚ†M÷“Ç»a =;¸3fÜŒ¿²Ù`®@aè/§‡‡†]•lÌÿç6[@xâÜ>ìØ‚K¶ðª¥´¼øeªßW?úƒµn¢µÇYýA—Æ4‰]ÝDn€—ìš[‡´CKú‰ñ°&‹¬^¶ùW&‰)’ôàEo‘Õ?˜ßL>¼Á™õØa±]V 1»ÙfËìö·`Û?7_‘¹„õÅBìÇ÷$àtošÐ‘Ý­VQ†ù÷IÀ‘1Xm%梇…H·ŒqâN +£¥ qbÇ%Oð¢.r-+k +¨ïá1‰/'¾Í#r~xäóéòð°ìk¸Ó äþ¾C56©hí°"»,Þ£ãIå$¬x×3 +)ésonl[o {8C!pŠo¥Ã ç2!ÑÃ#éóQjM¶Ió1Á-Ë0+Êœ¶-²Ãnu ïöÿÿ7,z቙բÏÔDÂ9 rz\$þpÛLü—KBÔC9Tý)Ù(—B¶2!tFÑîÿWáû/cÄä´]>ýz Ë|ݺÅ&Úñýlk wC*ÍyE™ó jÈc1ˆœUÉ<õkίy0<È¢8¿1ÁºZ@à`,N,C X—d”•\Ÿ’*åÇ¿–ôãËÍÂÒ‡l¿jXÑ™¯=›wɤÜÚˬj<å~âÆ npS£ 80ŒÖ9eŠÏỶùï¶Ðh,øÍd{u©»l¾`k,‘ÍǨ²C9è?dçÍ«‡*ˆÐ1zò<šÄÛįq]'£mÍÌ¢uÈö+TT^ΑI9d[»»Äv| 6±êxj!›•ícK(åí` Û¥,1+Âö›¶¦„fËwÔ›/ò¹rck å º\£ÓH  *4"+°l‚A¡Žo›ƒ$bh‚ë/ãúÅJì$±§ Œïq:…¢³òÁp¨G¸„-+Hë…e¹NJ‰õ8†8¥Üï#{ûòØ.]›µ«5Tõk‰õj…ÎÔn*þ7ˆ 7U…h]ωh¥·é,”Êä7G>ð·ð $ 8¾d½ÊûìÜ6ÝÙuRŸ’‹0æT©ˆüêhvr@} gòÄ_¯k` |ÀúÏ:eUm×s0æG&t¶§t¶}Šø"§_´CI}ª$×Õ•Ô-‹*=ÅFnšžÎÞâ¡|iÄ*F°Š|‹Û]¨[âŒm çÔ‡N….ºx𾩚·™¨y°[(qLIŒoBOTaO•÷+ŠV‚ +ÅÙSö”¨ˆ¡ä^ϸÉ.„„îmŸ+. ÷%¸]QC¢¨Î®0]çˆÝ$¶Â—Ô6[Â’"”x÷·IZTò›WhgÓz6§‡‡öqTpx?Å;y¤±¾âb”oÍx%ŠðÁÅÂ"FÊhkµkG󠔘Ҍkíá¡ß{M©{¹d +ø‹~Ö‹I—DÞ!“1#¤qE&S§Ð_[%a2šdYʃTA-‡>Ÿ½~SªW{j„Y³~eqUxõhA*úò:É>"Ž1Á?7¼üHç¸cÚ*W ò4ÿ!Ò¾7îºXim‰VŸ Iòÿ|MQGi/5_ÐN"aeZ&ìU‚ÕâdÑ¿]ZnØk]íûI=»¢ÖqR<Ûã.U6SIr¸Ô…?2÷j®ùlʹÝb*$É&ðE·³¯uº-T…äÝý5òþû¨3t’™SûY2‚îÚézêÜh:_#B‡„änûhS7(šW«Ù!»-Åf§@5ŠÁô¶JµO ’ë ®ÓC÷HË&¸} OZˆvd—®YîóÎ¥P·—y8a«àF>*ʱ%u}ñáI2:±ÏÄçv¯aг NÕ∑JøP°†M^žÊ•ÞžÃX3ÕÒ óg†•2«m×V¿¡X)a¥½ê Ñ +endstream +endobj +102 0 obj +<< +/Filter /FlateDecode +/Length 3417 +>> +stream +H‰ÄWioÜ8ýî_ÁM`ZI‘’Aǹv‘I9Ú;¸Vm¾Q›¯ö¾_Ü\«ÇŸ<ÝVO¥* ë<ü¯*§.76_ì–êøjcsaþ(•Q‹£²(ËZ-Ô\ÞݪPÔð üÕ…WƸÂ5¾QÖÞxælcfƒ^|Þx¶Øxö+ìô6‚%> áñÓ«Íçg¥zz±ñÛÆæî—½sÌðÕÞù±šžÏ_<Ñ›¿nÿó©2«úé*ÌêOÌÓpž‹˜fL±jpSMËËM—bm›¢mÛ€9þ>»Ös[AÍN´ià$³ ]NÍÎõÜã×{znLaÔìTá[Zr® üÿ¨º56à3÷ˆõE›PXùJÍ.áÅâ Ñð3¡h Úâ2øݵš]iøÖÿ¢.4„‚o.Õþ!†¯³G<>r„ÙR*Èž·øjÓdyඎÖ~’]iSa2…Úְ꽞â·ê@ÓÞºÅEgtX‡o §JÍnà S´t\[f;—¸|Ÿ¯ Îð®¡G~ÓvúFùÓã ý“(8³µtiêŒî¯¢:Z~¥ç•˜’åôŸÅ¿€ï†¨ïAÁg"ò¼DÖMÝCÞLåÍqwìÇ.JSõãwȆk«²GpÕ%£–çg$¸Í±æ-Ýj^£Zj–×ÃzZF°ƒÊ;|…+1mïfð*ÚŸ8†àJòºôºO˜^ÀðƦàL°úT#¤âöe×®£>Œ9 n=cQzbN}\†!— ü›ÝR~¾ÅÇ>jScr±ýd»wˆH÷ZÑq øzI§Þê +;}‡Ó¨‘­¯4?¿·L5~½¯‘N¨)òãõƒõ(©¢Äå€Ý ÷M;j˜C¸4‹áÖv}°!›ÊøÐ@im`7Yl¤m¸r”~3 ñ.¢m=Cü± ÷lŠ/gppl9]ã5Ñ*øÖÉ¥Xª#ÝÁ},¨Ð†ÁŽxø$…Ê%.ÄPè•kû•Ãƒ™vx0Š28¸ØÔº æîO&œâðÌÛ ™×/aÞ °š–@sš¨;‚LŒ¿‚^„tÒFgñç¬ëçÜY÷ÂZ" +j—ØiÔ©N€ÜãàoéÐãÀ€¥‘z +ÇÄêñkâ¬KJºÂF»M:Â6 ¹ºRÛð†‡÷€GU®¡9,î¡•é+FÙ,i§P[Àd„]Fj‡ 9M±x¯;×±ÔŸâU_2ÙÄ*^Þ°|‹,x«Ëë4&*‹K¿hJá ^@•­ªñ[!Û!ä+f=p°×Ú.ÇCQöé=퀛T™’‰­ŠÎ$¡lä:+`ÅEfVš)âŽu²¡¡tFæŠ8OêÃL“µÙÙ}£}‰Uú UN±å$›Ì4Þ§v€%³ K¾Î|5ò'¦ý•©6Ébçá,ɦà}ë–ºQíwS·Š†ãqZ”Ò–¤·P[zÞà#r‘è®—1Xç2ÑoÔ„Ö7Aö‘wçdV'ŠêܳJbír:‘ Ì;BxÉj¤ù'Ç¡õ¡ãô¦a v ¡Î¬§Nd½èŸ&—Šy.æíp±éVŒ+4º8*T×$]ï„;\þ±~ÐמȥìÈõ2cUqkãäΗÈ}E[¿|KíÛ”Æd¢”Œ©¤™…ÜDÔŒ0KT–²”J×^©#ÍôøC.)ôy',`Ci2ÇÝ‘|™GÅ%¹Üztu²6 éMfÝ3Ó~®ií Gÿ~†ÉõièÃ4Ód—ZíÉ'GžiG{6òeÜBš ÑÉZGeš:c|ÏÝ, +ÈSJêƽ1ž8N’6c$Ǽð3p.RmiÈíP:¼cøD¿íƒ5ŠÿAñªßNöà׊.šÚàäBb^Ýãh¶w´EÉ'+éPKJ]Aó—η|œm3ì¾… í 3„$žiê¶S.”¤°up}³wº8üëúÑógÏŸ—eÙ>~üXQ3E<‚)ÃÍÁ$ +û„ 2á … _é{8Oº.“íòQtИ<ãäc‡öbýRº¬”Se«¡Í¼‘²QOî@ÛxÜ{ëÁuÚšéT*7áÑ]&À +9$‹]U='´¨YTãCÀ(k±4ÍHiÜ‘.%Q]¿ªÕŠªz6r0ªÙ{ê“·?x ³d‹9¯eÿ:$ÅoÉ:×ñ)ÆE×ËuÄΉ_µ+Ù60â§ÇÀŠíÙ®õËêW”µó”Êú¡¥x£-õú“×vdÓc1o"y7_²ÆT8VÖ™%•¹„ãô“Ÿ£ö‘8›|–ˆcÕúe +ÊfÛ¦‰z ÷²Í=·xpÕ^jÄGBB7´%­c±Ôs4Éñ“ª#±QÖJ˶=‡‰;Tï…n„LâŒu0˜Õú­Jo=JÀ¹]¦ô`@“üÌ^þ†•Z§¦“Öq!³òþ„(´uHˆa|P'~dý5V+âå .H-]-“Ã.A@׌²õ‹1°ÞwHpYfZòqæþéÅ– ™|v-ÖV<¯û?ër{wÏ:q§ ™ ‡[·&æÛÔŽRƒÔGÙ~p…w´ç¦b+ÿ™¤ÓdTòêùh|M‚Í?ÃíÛ6OuEµƒÄkLü­æÙâP“µge +2T‘Qø[•Ûˆ¾ìÍYl²[1ô Θ|‹¬úë_M(W\ ŒQ…f;»ÛëöúW{E@5“ꀟi¥¿ôjdÃp¡[U?ÿcõ3+êCQ'G»˜œå)Ú HäŃѻ+ {CU3ä"  :Øfpd9®„HwˆZöÑL™¬ÎŠ²3 TŸùÐtRna&8*sÂh¢j©š†† ízùœÞ£ÈvE‘ÁwãÐî ôH=’#€¼p•;ŸÙ“„å&#ÖLÿG³tL>&VÆfbrøn.³¥qgÄϳ'[­ãd¹¡x8¸G•WLOœU§xï0QØ÷µ¶¤¿?Ía½Ó–€{Žm›÷j¤8©Çkü¡žôC”ùŠ‰ÁçöJ¦‡«yÁ ++æ'‡é%ô¦ºb’±ÞÅô,ê¶8œh÷á´ñ7™Òæù¶b‡Áq£mÅ“§Œf»šjÜ9(­ÐUrÇÒb€¦È,Äû]›8(9ð)¿Te#Ä„,Ô554,ú¤¢Lÿc¾üU†0þ*];MÒ4]E¨“‹>€ƒˆ‚ƒ¯ïýIšK‰Ä7©hÒû¾»ïw*½+O£- úì#D€–:Šmã%¿G°[0$ û¤i”Ø'£Í¤¾ÁQ?´Ô‡§Ðõ3ÎÑ©:—<ÿÍ rrÕ¥˜+“1ájR/þìs1 +[ªîÀ‚8K½úñ…†Ö耣¦ ’ëŠe Òù.í–ƒÙAI;Œ»•ãT3v«jÀ¡im’ á ôµ¡Eñ?_fØÉì䌠#´ñÉK•Ü•Œ“˜çîYRlT|Iv’mmpÒsÔÂç"/A÷ºå + {X´ã‘ D4~€®{ŽŠ1™'>}§Å#A±žÂ‚·xŸ±ø8h³ö X’j¼eÆŠ” +endstream +endobj +103 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +104 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +105 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 1266 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 104 0 R +/GS1 183 0 R +>> +/Font << +/C2_0 184 0 R +/T1_0 185 0 R +/T1_1 186 0 R +/T1_2 187 0 R +/T1_3 188 0 R +/T1_4 189 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬WÛn7}×WÌãÈR¼.¹aÀq #E“¶ú”…lÉ—Ô–Œ•ÃùúÎ!©ÕÅn 7†-µœË™™3CJÉ<)Ù*‡oKÝå`x|ªèr1PR)Ku”ž7ce£[ŠZÉ Zꦃ‹bc¡ï\RNFëH+Û`ÉéF6lÔ42:uV"FKëÛ^Ä[¹²Z$ÚV*ï×6¼tÛ¡‘Áëç†Ýòúb|¾¤½½ágþ>~œß/iÿÝûC¼xúü5ŽôŸŠ4.¯æÅ9ÕeõÀ£iÅŸXw¤µ4>©æ•VArj,éh¤ó.Ðèvð¥ú$ê 5UŸG¢¶ÒRu$¾~GÁâ*]P‘d¾øN+øöZEÒ’Úó"ù> ##Uç‚Å UWôWT½VºüðT`§t+^ÌEí±?ÿ¾-¬Ü~7¥k¡9Pªt."ô°¨ê:¡=6¦üš3¡£l©ZÒ£àŵp[ŠãW4å[ÿªl`GЫ=°ÖFAIÀÁ¯:xÔÀeÅ-Á;¾ Þ”&Œ€5ÆÀR•7B[hÉy–{à0ÏŒŠÁÙ†A…HSˆ!Þ‰:É–D^f…)ö9I/«ånÙœe¦Ä¶ÊV‘}ÿÿ6×Tp ·ÕŠ +¢nsH»É%£ R¸MRl%#ôåí8#©j‘5e’—ò–y‡Ôµ0ƒR4x&2<Òš.©ý‘¹W4ñ2 R‰yÌ %Xg'oè^h—8X‚(©àåNÕZÓ7Ù`Ú3ض‰§Yµ•^¼ÁîòI¾~­ä–çaÓ³UžW+9óÉ÷%ÿ#×âí´;p(YK"‡íV²Bª®Býx4§¦?º…Ôno })©/X;C=\¦‰Ãûug^`¶˜ÞmGÅñˆds©Ÿké3¿¥«Gml–KÚwpËþÞŠZ³Ñ¡ˆi¤ 3X: –…ei‰Nhû̘©HÊ#EÖ çaCr@n ¿pó!`ó—8²®'ƶkÚ\ÏQiá§Sj’QÌË@V‚(#ýÉL^+ÏVÍ¢=@xîŒ[:+gW¤™$zÝHœÿz±Æ [gJ¨‡(wìÓ{—sÿÈåÊçÁæè¹D:\JKŠì«á›@Ï}ƒˆYJ ›˜“~óS±œiè@„­áDÿh{ųÏEž^a«‰ÜÆl¬Mj—B›,µ`/JÖ“K.f}E ý%àVЬR‹ÊFn„ÆÜ…šÆ—ËÈLuœx"uåRäc·ÆKd71<毜ÖY$@mRbž(OšÖµ†Îv1ë»Üç·xÏûã´0ùlG‚zǵNÇÀ›Þâ´ö+ùðèäCÉMy^Ã7'ù'@Å  uâýõœ Í¿i<›äʼnHvRœº`þ·„œƒb:>cúT´… –à©NýÁñó"M‹ ~ñâ‚£3p=>Õ¸y£âv÷ú·Uh‹!ÂV¥+zÙ‰²M´“ã†Æ9úÈN¾Ó—oŠ&ÔÿšÕEYã&–ÈH˜¶[€ì)ÝþK <x·3r͵xµ˜7þìÀ³ËžÑ[òž»¹çó‘ÿÝøí.Ó-·³øîïÓñ5Ç ðâ/b>|kïÒm–Ta¾û°ê—O•lÆ0ãÓØQÌ. F²‡M^ý-À|©÷L +endstream +endobj +106 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 172 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 104 0 R +>> +/Font << +/C2_0 190 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰TŽË +‚@…÷ÿSœ'˜ù›"¤‰›$¨ÙE„XJBjH=}ã²Íwà\àÈí8?º¦‘¦ò¹o>¯÷Œ,Ëw(÷Ä`¡´ 4FãX ‹5ÎÆ $«£ŸHêʈà»0ôm¨øeÅ„ˆƒ|×hD,´&Îhe…J8dOJ™“ùJOe>ü{²Ö µÙ¬#)¸Xh¥aEÄ +ã:ú 0“.ì +endstream +endobj +107 0 obj +<< +/K [191 0 R 192 0 R 193 0 R 194 0 R 195 0 R 196 0 R 197 0 R 198 0 R 199 0 R 200 0 R 201 0 R 202 0 R 203 0 R 204 0 R 205 0 R 206 0 R +207 0 R] +/P 36 0 R +/S /Article +>> +endobj +108 0 obj +[208 0 R 209 0 R 210 0 R 211 0 R 212 0 R 211 0 R 213 0 R 211 0 R 211 0 R 211 0 R 211 0 R 214 0 R 211 0 R 211 0 R 211 0 R 215 0 R +215 0 R 215 0 R 216 0 R 215 0 R 215 0 R 215 0 R 215 0 R 217 0 R 217 0 R 218 0 R 217 0 R 217 0 R 217 0 R 217 0 R 217 0 R 219 0 R +219 0 R 219 0 R 219 0 R 219 0 R 219 0 R 219 0 R 219 0 R 219 0 R 220 0 R 219 0 R 221 0 R 221 0 R 221 0 R 221 0 R 221 0 R] +endobj +109 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 221 0 R +221 0 R 221 0 R 221 0 R 222 0 R 221 0 R 223 0 R 221 0 R 221 0 R 221 0 R 224 0 R 225 0 R 225 0 R 226 0 R 225 0 R 227 0 R 228 0 R +228 0 R 229 0 R 228 0 R 230 0 R 230 0 R 230 0 R 231 0 R 230 0 R 232 0 R 233 0 R 234 0 R 233 0 R 235 0 R 236 0 R 237 0 R 236 0 R +238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 244 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 248 0 R 248 0 R 249 0 R +248 0 R 248 0 R 248 0 R] +endobj +110 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 250 0 R 251 0 R 252 0 R 253 0 R 253 0 R 253 0 R 253 0 R 253 0 R 253 0 R 253 0 R 254 0 R 255 0 R 256 0 R +255 0 R 255 0 R 255 0 R 255 0 R 257 0 R 258 0 R 258 0 R 258 0 R 258 0 R 258 0 R 258 0 R 259 0 R 260 0 R 259 0 R 259 0 R 261 0 R +259 0 R 262 0 R 263 0 R 264 0 R 264 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 268 0 R 270 0 R 271 0 R 272 0 R 271 0 R +271 0 R 273 0 R 274 0 R 274 0 R 275 0 R 276 0 R 277 0 R 276 0 R 278 0 R 279 0 R 279 0 R 279 0 R 280 0 R 281 0 R 282 0 R 281 0 R] +endobj +111 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +283 0 R 283 0 R 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R 293 0 R 294 0 R 295 0 R 296 0 R 297 0 R +298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 302 0 R 304 0 R 302 0 R 305 0 R 305 0 R 305 0 R 305 0 R 305 0 R 306 0 R 306 0 R +306 0 R 306 0 R 307 0 R 308 0 R 307 0 R 309 0 R 307 0 R 310 0 R 307 0 R 307 0 R 307 0 R 307 0 R 307 0 R 307 0 R 311 0 R 307 0 R +307 0 R 307 0 R 312 0 R 307 0 R 307 0 R 307 0 R 313 0 R 307 0 R 307 0 R 307 0 R 314 0 R 314 0 R 314 0 R 314 0 R 314 0 R 314 0 R +314 0 R 314 0 R 315 0 R 315 0 R 316 0 R 315 0 R 315 0 R 315 0 R 315 0 R] +endobj +112 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 314 0 R 314 0 R 314 0 R 317 0 R 318 0 R 317 0 R 317 0 R +317 0 R 317 0 R 319 0 R 319 0 R 320 0 R 319 0 R 319 0 R 319 0 R 321 0 R 319 0 R 319 0 R 319 0 R 322 0 R 323 0 R 323 0 R 324 0 R +325 0 R 326 0 R 327 0 R 328 0 R 327 0 R 327 0 R 329 0 R 327 0 R 330 0 R 327 0 R 331 0 R 327 0 R 327 0 R 327 0 R 332 0 R 327 0 R +333 0 R 327 0 R 334 0 R 327 0 R 327 0 R 327 0 R 335 0 R 327 0 R 327 0 R 327 0 R 336 0 R 327 0 R 327 0 R] +endobj +113 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 327 0 R 327 0 R 327 0 R +337 0 R 338 0 R 338 0 R 338 0 R 339 0 R 338 0 R 340 0 R 338 0 R 338 0 R 338 0 R 338 0 R 341 0 R 342 0 R 343 0 R 342 0 R 342 0 R +342 0 R 342 0 R 344 0 R 345 0 R 345 0 R 345 0 R 345 0 R 345 0 R 345 0 R 345 0 R 345 0 R 346 0 R 345 0 R 345 0 R 347 0 R 347 0 R +347 0 R 348 0 R 347 0 R 349 0 R 347 0 R 347 0 R 347 0 R 350 0 R 347 0 R 347 0 R 347 0 R 347 0 R 347 0 R 347 0 R 351 0 R 351 0 R +351 0 R] +endobj +114 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 352 0 R 352 0 R 352 0 R 352 0 R 353 0 R 352 0 R 352 0 R 354 0 R 354 0 R 355 0 R 354 0 R 354 0 R 354 0 R 356 0 R 354 0 R +357 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 359 0 R 358 0 R +358 0 R 360 0 R 358 0 R 358 0 R 358 0 R 358 0 R 358 0 R 361 0 R 362 0 R 362 0 R 362 0 R 362 0 R 362 0 R 363 0 R 364 0 R 364 0 R +365 0 R 364 0 R 366 0 R 366 0 R 366 0 R 366 0 R 366 0 R] +endobj +115 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R +367 0 R 367 0 R 367 0 R 368 0 R 367 0 R 367 0 R 367 0 R 369 0 R 367 0 R 367 0 R 370 0 R 367 0 R 371 0 R 367 0 R 367 0 R 367 0 R +372 0 R 372 0 R 372 0 R 372 0 R 373 0 R 372 0 R 372 0 R 372 0 R 374 0 R 372 0 R 375 0 R 372 0 R 372 0 R 372 0 R 376 0 R 376 0 R +376 0 R 377 0 R 376 0 R 376 0 R 376 0 R 378 0 R 379 0 R 379 0 R 379 0 R 379 0 R 379 0 R 379 0 R 380 0 R 379 0 R] +endobj +116 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 381 0 R 382 0 R +381 0 R 381 0 R 381 0 R 381 0 R 383 0 R 381 0 R 381 0 R 381 0 R 384 0 R 385 0 R 385 0 R 386 0 R 385 0 R 385 0 R 387 0 R 385 0 R +385 0 R 385 0 R 385 0 R 385 0 R 388 0 R 385 0 R 385 0 R 389 0 R 390 0 R 391 0 R 390 0 R 392 0 R 390 0 R 390 0 R 390 0 R 390 0 R +393 0 R 394 0 R 393 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 400 0 R 400 0 R 400 0 R 400 0 R 400 0 R 402 0 R +403 0 R 404 0 R 405 0 R 406 0 R 406 0 R 406 0 R 406 0 R 406 0 R] +endobj +117 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 406 0 R 406 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R +412 0 R 413 0 R 414 0 R 415 0 R 415 0 R 415 0 R 415 0 R 415 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R 420 0 R 420 0 R 420 0 R +421 0 R 420 0 R 420 0 R 420 0 R 422 0 R 423 0 R 423 0 R 424 0 R 425 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 429 0 R +431 0 R 429 0 R 432 0 R 433 0 R 434 0 R 435 0 R 434 0 R 436 0 R 437 0 R 438 0 R 439 0 R 438 0 R 440 0 R 441 0 R 442 0 R 443 0 R +444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 451 0 R 452 0 R 453 0 R 452 0 R 454 0 R 455 0 R 456 0 R 457 0 R +458 0 R 459 0 R 460 0 R] +endobj +118 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 461 0 R 461 0 R 461 0 R 462 0 R 461 0 R 461 0 R 461 0 R 461 0 R 461 0 R 463 0 R 463 0 R 463 0 R 463 0 R +463 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 474 0 R 475 0 R +476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R +492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 504 0 R 505 0 R +506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R +522 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R +537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R 543 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R +553 0 R 554 0 R 555 0 R] +endobj +119 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 556 0 R 556 0 R 556 0 R 556 0 R 556 0 R 556 0 R 556 0 R 556 0 R 557 0 R 557 0 R 557 0 R 558 0 R 559 0 R +558 0 R 560 0 R 558 0 R 558 0 R 558 0 R 558 0 R 558 0 R 561 0 R 558 0 R 558 0 R 558 0 R 558 0 R 562 0 R 558 0 R 558 0 R 563 0 R +558 0 R 558 0 R 558 0 R 558 0 R 564 0 R 565 0 R 564 0 R 566 0 R 564 0 R 564 0 R 564 0 R 564 0 R 564 0 R 564 0 R 567 0 R 568 0 R +568 0 R 568 0 R 569 0 R 568 0 R 570 0 R 570 0 R 571 0 R 570 0 R 570 0 R 572 0 R 572 0 R 572 0 R] +endobj +120 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 570 0 R 570 0 R 570 0 R 573 0 R +573 0 R 574 0 R 573 0 R 575 0 R 573 0 R 573 0 R 573 0 R 576 0 R 577 0 R 577 0 R 577 0 R 577 0 R 578 0 R 577 0 R 577 0 R 579 0 R +580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 585 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 593 0 R 594 0 R +595 0 R 596 0 R 597 0 R 598 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 604 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R 609 0 R +610 0 R 610 0 R 611 0 R 612 0 R 613 0 R 613 0 R 613 0 R 613 0 R 613 0 R 613 0 R 614 0 R 615 0 R 616 0 R 616 0 R 616 0 R 616 0 R +616 0 R 617 0 R 617 0 R 618 0 R 619 0 R 620 0 R 620 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 623 0 R 625 0 R 626 0 R 627 0 R +628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R +644 0 R 645 0 R 644 0 R 644 0 R] +endobj +121 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 646 0 R 647 0 R 646 0 R 648 0 R 646 0 R 646 0 R 646 0 R 646 0 R 649 0 R 646 0 R 646 0 R 646 0 R +646 0 R 646 0 R 646 0 R 646 0 R 646 0 R 646 0 R 646 0 R 646 0 R 650 0 R 651 0 R 652 0 R 653 0 R 652 0 R 654 0 R 655 0 R 654 0 R +656 0 R 657 0 R 656 0 R 656 0 R 658 0 R 656 0 R 659 0 R 660 0 R 661 0 R 661 0 R 661 0 R 661 0 R 661 0 R 661 0 R 662 0 R 663 0 R +664 0 R 664 0 R 664 0 R 664 0 R 665 0 R 666 0 R 667 0 R 667 0 R 667 0 R 667 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 670 0 R +670 0 R 672 0 R 670 0 R 670 0 R 670 0 R 673 0 R 674 0 R 675 0 R 675 0 R 676 0 R 675 0 R 677 0 R 678 0 R 679 0 R 679 0 R 679 0 R +680 0 R 681 0 R 682 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 691 0 R 693 0 R +694 0 R 695 0 R 696 0 R 695 0 R 697 0 R 698 0 R 699 0 R 700 0 R 699 0 R 699 0 R 699 0 R 701 0 R 699 0 R 699 0 R 699 0 R 699 0 R +702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R +716 0 R 717 0 R 716 0 R 718 0 R 719 0 R 720 0 R 721 0 R 720 0 R 722 0 R 723 0 R 724 0 R 725 0 R 724 0 R 726 0 R 727 0 R 728 0 R +728 0 R 729 0 R 730 0 R 731 0 R 732 0 R 731 0 R] +endobj +122 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 733 0 R 733 0 R 733 0 R 733 0 R 733 0 R 734 0 R 733 0 R 733 0 R 733 0 R 733 0 R +733 0 R 735 0 R 736 0 R 737 0 R 736 0 R 736 0 R 736 0 R 738 0 R 736 0 R 736 0 R 736 0 R 736 0 R 736 0 R 736 0 R 739 0 R 740 0 R +739 0 R 739 0 R 739 0 R 739 0 R 739 0 R 739 0 R 739 0 R 739 0 R 741 0 R 739 0 R 742 0 R 743 0 R 743 0 R 743 0 R 744 0 R 743 0 R +743 0 R 745 0 R 745 0 R 745 0 R 745 0 R 745 0 R 746 0 R 745 0 R 745 0 R] +endobj +123 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 747 0 R 748 0 R 747 0 R 747 0 R 749 0 R 747 0 R 747 0 R +747 0 R 747 0 R 750 0 R 747 0 R 747 0 R 751 0 R 747 0 R 747 0 R 747 0 R 752 0 R 753 0 R 752 0 R 754 0 R 752 0 R 752 0 R 755 0 R +752 0 R 756 0 R 752 0 R 752 0 R 752 0 R 757 0 R 752 0 R 752 0 R 752 0 R 758 0 R 752 0 R 752 0 R 759 0 R 759 0 R 760 0 R 759 0 R +759 0 R 759 0 R 759 0 R 761 0 R 762 0 R 763 0 R 764 0 R 764 0 R 765 0 R 764 0 R 764 0 R 766 0 R 764 0 R 764 0 R 767 0 R 768 0 R +769 0 R 768 0 R 768 0 R 768 0 R 768 0 R 768 0 R 768 0 R 768 0 R 768 0 R 770 0 R 770 0 R 770 0 R 771 0 R 770 0 R] +endobj +124 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 772 0 R 772 0 R +772 0 R 772 0 R 772 0 R 772 0 R 773 0 R 772 0 R 774 0 R 774 0 R 774 0 R 774 0 R 774 0 R 774 0 R 774 0 R 774 0 R 774 0 R 774 0 R +774 0 R 774 0 R 775 0 R 776 0 R 775 0 R 775 0 R 775 0 R 777 0 R 775 0 R 778 0 R 775 0 R 779 0 R 780 0 R 779 0 R 779 0 R 779 0 R +779 0 R 781 0 R 779 0 R 779 0 R 782 0 R 783 0 R 784 0 R 783 0 R 783 0 R 785 0 R 786 0 R 786 0 R 786 0 R] +endobj +125 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 787 0 R +788 0 R 787 0 R 787 0 R 789 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 790 0 R 790 0 R +790 0 R 791 0 R 790 0 R 790 0 R 792 0 R 790 0 R 790 0 R 790 0 R 793 0 R 794 0 R 793 0 R 795 0 R 793 0 R 793 0 R 793 0 R 793 0 R +793 0 R 796 0 R 793 0 R 793 0 R 793 0 R 793 0 R 793 0 R 797 0 R 797 0 R 797 0 R 798 0 R 797 0 R 797 0 R 797 0 R 797 0 R 797 0 R +799 0 R 799 0 R 799 0 R 799 0 R 799 0 R 799 0 R 799 0 R] +endobj +126 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 800 0 R 801 0 R 802 0 R 801 0 R 801 0 R 801 0 R 801 0 R 801 0 R 801 0 R +801 0 R 801 0 R 801 0 R 803 0 R 801 0 R 801 0 R 801 0 R 804 0 R 805 0 R 804 0 R 804 0 R 804 0 R 804 0 R 804 0 R 806 0 R 806 0 R +806 0 R 806 0 R 806 0 R 807 0 R 808 0 R 809 0 R 808 0 R 810 0 R 811 0 R 812 0 R 812 0 R 813 0 R 814 0 R 814 0 R 815 0 R 814 0 R +816 0 R 814 0 R 814 0 R 817 0 R 814 0 R 814 0 R 818 0 R 819 0 R 820 0 R 821 0 R 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 825 0 R +825 0 R 826 0 R 826 0 R] +endobj +127 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 826 0 R 826 0 R 826 0 R 826 0 R 826 0 R 827 0 R 826 0 R 826 0 R 826 0 R 828 0 R 829 0 R 829 0 R 829 0 R +829 0 R 830 0 R 831 0 R 832 0 R 832 0 R 833 0 R 834 0 R 835 0 R 835 0 R 835 0 R 835 0 R 835 0 R 835 0 R 835 0 R 836 0 R 836 0 R +836 0 R 836 0 R 836 0 R 836 0 R 837 0 R 836 0 R 838 0 R 839 0 R 840 0 R 840 0 R 841 0 R 842 0 R 842 0 R 843 0 R 844 0 R 845 0 R +846 0 R 846 0 R 847 0 R 848 0 R 848 0 R 849 0 R 850 0 R 851 0 R 851 0 R 851 0 R] +endobj +128 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 851 0 R 851 0 R 851 0 R 851 0 R 852 0 R 851 0 R +851 0 R 853 0 R 854 0 R 854 0 R 854 0 R 854 0 R 854 0 R 854 0 R 854 0 R 855 0 R 854 0 R 854 0 R 854 0 R 856 0 R 856 0 R 857 0 R +856 0 R 856 0 R 858 0 R 856 0 R 856 0 R 859 0 R 856 0 R 856 0 R 856 0 R 860 0 R 856 0 R 861 0 R 862 0 R 861 0 R 861 0 R 863 0 R +861 0 R 864 0 R 861 0 R 861 0 R 861 0 R 865 0 R 861 0 R 861 0 R 861 0 R 861 0 R 866 0 R 861 0 R 861 0 R 861 0 R 867 0 R 868 0 R +867 0 R 867 0 R] +endobj +129 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 867 0 R 869 0 R 867 0 R 867 0 R 867 0 R 870 0 R 871 0 R 872 0 R 871 0 R 873 0 R 874 0 R 875 0 R 876 0 R 877 0 R +878 0 R 879 0 R 880 0 R 881 0 R 882 0 R 883 0 R 884 0 R 885 0 R 886 0 R 887 0 R 888 0 R 889 0 R 890 0 R 891 0 R 892 0 R 893 0 R +894 0 R 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R 906 0 R 907 0 R 908 0 R 909 0 R +910 0 R 911 0 R 912 0 R 913 0 R 913 0 R 914 0 R 915 0 R 916 0 R 917 0 R 918 0 R 919 0 R 919 0 R 919 0 R 920 0 R 919 0 R 921 0 R +922 0 R 923 0 R 923 0 R 923 0 R 923 0 R 924 0 R 925 0 R 926 0 R 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 932 0 R 933 0 R 934 0 R +935 0 R 936 0 R 936 0 R 936 0 R 937 0 R 938 0 R 939 0 R 940 0 R 941 0 R 942 0 R 943 0 R 944 0 R 945 0 R 946 0 R 947 0 R 948 0 R +949 0 R 950 0 R 951 0 R 952 0 R 953 0 R 954 0 R 955 0 R 956 0 R 957 0 R 958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R +965 0 R] +endobj +130 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 867 0 R 867 0 R 867 0 R 966 0 R 867 0 R 867 0 R 967 0 R 968 0 R 968 0 R 968 0 R 969 0 R 968 0 R 968 0 R 968 0 R 970 0 R +968 0 R 968 0 R 968 0 R 971 0 R 971 0 R 972 0 R 971 0 R 971 0 R 973 0 R 971 0 R 971 0 R 971 0 R 971 0 R 974 0 R 971 0 R 971 0 R +975 0 R 976 0 R 975 0 R 975 0 R 977 0 R 975 0 R 975 0 R 975 0 R 978 0 R 975 0 R 979 0 R 975 0 R 975 0 R 975 0 R 980 0 R 981 0 R +980 0 R 982 0 R 980 0 R 980 0 R 980 0 R 980 0 R 983 0 R 980 0 R 980 0 R 980 0 R 980 0 R] +endobj +131 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 984 0 R 985 0 R 985 0 R 986 0 R 985 0 R +985 0 R 985 0 R 985 0 R 985 0 R 985 0 R 985 0 R 985 0 R 985 0 R 985 0 R 985 0 R 987 0 R 985 0 R 988 0 R 988 0 R 989 0 R 988 0 R +988 0 R 988 0 R 988 0 R 990 0 R 988 0 R 988 0 R 988 0 R 988 0 R 988 0 R 991 0 R 988 0 R 988 0 R 988 0 R 992 0 R 993 0 R 993 0 R +993 0 R 993 0 R 993 0 R 993 0 R 993 0 R 994 0 R 993 0 R 995 0 R 993 0 R 993 0 R 993 0 R 993 0 R 996 0 R 993 0 R 993 0 R 993 0 R +993 0 R 993 0 R 997 0 R 993 0 R 998 0 R 998 0 R 998 0 R 998 0 R 998 0 R 999 0 R] +endobj +132 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 998 0 R 998 0 R 998 0 R 1000 0 R 998 0 R 1001 0 R +1002 0 R 1001 0 R 1001 0 R 1001 0 R 1001 0 R 1001 0 R 1001 0 R 1001 0 R 1003 0 R 1001 0 R 1001 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R +1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R] +endobj +133 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 1021 0 R 1022 0 R 1023 0 R +1024 0 R 1025 0 R 1024 0 R 1026 0 R 1026 0 R 1026 0 R 1026 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R +1033 0 R 1034 0 R 1035 0 R 1036 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R +1046 0 R 1045 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R 1053 0 R 1052 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R +1060 0 R 1061 0 R 1062 0 R 1062 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1065 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R 1068 0 R 1068 0 R +1070 0 R 1071 0 R 1072 0 R 1072 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R 1075 0 R 1077 0 R 1078 0 R 1079 0 R 1080 0 R 1079 0 R 1081 0 R 1082 0 R +1083 0 R 1084 0 R 1083 0 R 1083 0 R 1085 0 R 1086 0 R 1087 0 R 1087 0 R 1087 0 R 1087 0 R 1087 0 R 1088 0 R 1087 0 R 1087 0 R 1089 0 R 1090 0 R +1089 0 R 1091 0 R 1089 0 R 1092 0 R 1089 0 R 1089 0 R 1093 0 R 1094 0 R 1095 0 R 1096 0 R 1097 0 R 1096 0 R 1096 0 R 1096 0 R 1098 0 R 1099 0 R +1100 0 R 1100 0 R 1100 0 R 1100 0 R 1101 0 R 1102 0 R 1103 0 R 1103 0 R 1104 0 R 1105 0 R 1106 0 R 1107 0 R 1106 0 R 1106 0 R 1108 0 R 1109 0 R +1110 0 R 1110 0 R 1110 0 R 1111 0 R 1112 0 R 1113 0 R 1113 0 R 1113 0 R 1113 0 R 1113 0 R 1114 0 R 1115 0 R 1116 0 R 1116 0 R 1117 0 R 1116 0 R +1118 0 R 1119 0 R 1120 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1126 0 R 1128 0 R 1129 0 R 1130 0 R 1131 0 R +1130 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1137 0 R 1138 0 R 1139 0 R 1138 0 R 1140 0 R 1138 0 R 1138 0 R 1141 0 R 1138 0 R +1142 0 R 1143 0 R 1142 0 R 1142 0 R 1144 0 R 1145 0 R 1146 0 R 1146 0 R 1147 0 R 1148 0 R 1149 0 R 1150 0 R 1149 0 R 1149 0 R 1149 0 R 1149 0 R +1151 0 R 1152 0 R 1153 0 R 1153 0 R 1154 0 R 1155 0 R 1156 0 R 1157 0 R 1156 0 R 1158 0 R 1159 0 R 1160 0 R 1160 0 R 1160 0 R 1160 0 R] +endobj +134 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1161 0 R +/FontName /XTMLAT+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +135 0 obj +<< +/Filter /FlateDecode +/Length 446 +>> +stream +H‰\“ËjÃ0E÷þ +-ÛEqbK3 ˜@HZÈ¢šö[I lg‘¿¯®oi¡†ÄÇXs}òõv³ Ýhò×Ø7;?šCÚèÏý%6Þìý± Ù¼0m׌?OÓsª‡,OÅ»ëyô§m8ôYU™ü-½<ñjnVm¿÷·Yþ[»p47ëÝ­Éw—aøò'F33Ë¥iý!=ÕÃs}ò&ŸÊî¶mzß×»Tó·âý:xSLÏsÊ4}ëÏCÝøX‡£ÏªYº–¦zL×2ó¡ý÷Þ.X¶?4Ÿu̪‹g³tK¼!oÀäð#9V%×—X_ÎÉspA.À%¹[²;² YÀJVð=ù¼ /[~Ëâ[–ùù–ùù–99–µvªe/½8ú;ø;:;8;æ8ä8z:x:z:x:æ;ä }>ÂAŽÐMà&Ìd +3™ÂLA¦0S¦Lö.è]è/ð—y^“×`î—`¿„= +zî—`¿”ý*úUz*<•ž +O¥§ÂSé©ðTz*<•ž +O¥§ÂSé™n¶Ÿ©ÂØ¥Óa~gº¹Ä˜Æy:BÓc‚»àOÙÐ&Uá—} 0N­ßÀ +endstream +endobj +136 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1162 0 R +/FontName /DKMVGH+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +137 0 obj +<< +/Filter /FlateDecode +/Length 434 +>> +stream +H‰\“ÝŽÚ0…ïó¾Ü½X‚=³+EHv%.ú£Ò>@H TœÈ„ Þ¾srÐVj¤Ï8sòÙ™”ÛýnŸúÉ•ßóÐâäN}êr¼·ÜFwŒç>ËÊu};=Fóo{iÆ¢´âÃý:ÅË>†¢®]ùÃ&¯S¾»§M7ãsQ~Ë]Ì}:»§_Ûó+·qü/1MnáÖk×Å“}iƯÍ%ºr.{Ùw6ßO÷«ùwÇÏû]5—”i‡.^Ǧ¹IçXÔ ;Ö®þ°c]ÄÔý7ï=ËŽ§öw“‹ºÂÍ‹…]Œ·ä-øýñ¿ï6^-ç±]Œ+r^‘W`Oöà@`! øüÞ7Æžùùž™™ž™™^É +fŽGŽß‘wÆnn9999>>Âç +ž+¬Ô +kµÂZA­p]‚u sdΡ›ÀM^ɯ`z +<…ë¬W¸×‚½ú ü…û.Øsù Û‹¬•ïIñž”ž +O¥§ÂSé©ðTz*<•ž +O¥§ÂSé©ðTzÚMóè´u¹ûìÍö–³µåü)ÌýˆNìSüüZÆatV…³ø+À=Ôå +endstream +endobj +138 0 obj +[1163 0 R] +endobj +139 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +140 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/P/R/S/a/b/c/comma/d/e/f/g/h/i/l/m/n/o/p/r/s/space/t/two/v/y/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1164 0 R +/FontName /RHQGUF+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +141 0 obj +<< +/Filter /FlateDecode +/Length 355 +>> +stream +H‰\’ËjÃ0E÷ú +-“E°ãXRÆPܼ胺ýǧ†ZŠ³ðßwFR¨@ž£Ç\_f”Tõsí†Y&ïaê˜e?8à:ÝBò —Á‰m&íÐÍ÷UüvcëE‚ÉÍra¬]?‰¢É^ç°ÈՓΰÉ[°w‘«¯ªYˤ¹yÿ#¸Y¦²,¥……^ZÿÚŽ “˜¶©-žó²Áœ¿Ÿ‹™Åõ–Ít“…«o;­»€(R¥,N8JÎþ;Ï §ûî» ¢Èèršb@®˜+ä]ƒ(ò]d È9sN|`>snN¹Š5i*ÖQ¤£XG‘ŽÞFÆ€Ìû:î³¾&}­˜±fÖĆÙï™÷ÄìG“Í~4ùÑGæ#ñ‰‹SöiȧaŸ†|öcÈa?†üö`ȃáa "ß«IåÆW!½ìn!`ãÓ‰ý£Î ¯ËO^bMñ+ÀŸE¬P +endstream +endobj +142 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space/three) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1165 0 R +/FontName /SLAMID+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +143 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PÁjÃ0 ½ë+tlÅi²ËÀFG!‡ncÙ>À±•Ô°ØÆqùûÉné`YOïñ,qê^;gŠèuO GëL¤Å¯Q4YÇÕé>•WÏ*€`r¿-‰æΤDñÉà’↻ãÚƒx†¢uî¾OýE¿†ðC3¹„¶-Yè¢Â›š E¡:øMÛ9_[ ¬Ë|¼™ÑÞД¦¨ÜD +Ž噣ræÞÜXè¯*‚¬ónUqÙ4¥çòé¹ô\²Æ};«ñ§ñaU¯1²Ër™b/³ŽÇ > ³r¯_sÔ +endstream +endobj +144 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space/C/R/V/c/d/e/i/l/m/n/o/t/u/y) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1166 0 R +/FontName /FXPMID+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +145 0 obj +<< +/Filter /FlateDecode +/Length 300 +>> +stream +H‰\‘ÏjÃ0 Æï~ +ÛCqš5 i 9ìËö‰­t†Å1Ž{ÈÛO¶K3$úéû%Þ´§ÖhüÝͲC£6Êá2ßœDðª Ûç ´ô÷[üË©·Œ“¸[SkÆ™ üƒ’‹w+lžÕ<à–ñ7§Ðis…ÍWÓmw7kpBã!ƒº…#½ôöµŸx”íZEyí×iþ*>W‹Çû>5#g…‹í%ºÞ\‘‰ŒN âB§fhÔ¿ü¾H²a”ß½c"ÅYF‰ÃSd +Lyd +Äeâ’¸L5e¨)‰‹ÄEàcâcà&qø”øøœøø’˜Uò¬‚g•<«àY%O +áQ÷îÃóh ð˜¼9Gc‹«Šó +“ÒÛ´³R…ý +0o#w +endstream +endobj +146 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/C/N/R/V/b/c/d/e/i/l/m/n/nine/o/one/r/space/t/two/u/v/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1167 0 R +/FontName /EYAGUF+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +147 0 obj +<< +/Filter /FlateDecode +/Length 300 +>> +stream +H‰\‘ÏjÃ0 Æï~ +ÛCqš5 i 9ìËö‰­t†Å1Ž{ÈÛO¶K3$úéû%Þ´§ÖhüÝͲC£6Êá2ßœDðª Ûç ´ô÷[üË©·Œ“¸[SkÆ™ üƒ’‹w+lžÕ<à–ñ7§Ðis…ÍWÓmw7kpBã!ƒº…#½ôöµŸx”íZEyí×iþ*>W‹Çû>5#g…‹í%ºÞ\‘‰ŒN âB§fhÔ¿ü¾H²a”ß½c"ÅYF‰ÃSd +Lyd +Äeâ’¸L5e¨)‰‹ÄEàcâcà&qø”øøœøø’˜Uò¬‚g•<«àY%O +áQ÷îÃóh ð˜¼9Gc‹«Šó +“ÒÛ´³R…ý +0o#w +endstream +endobj +148 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/two/three) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1168 0 R +/FontName /IMBZYX+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +149 0 obj +<< +/Filter /FlateDecode +/Length 250 +>> +stream +H‰\PMkÄ ½û+æ¸{XÌz“@Ùm!‡~д?Àè$cù÷uÙBtÞ0óžÏá—þÚ;›€¿G¯L0Yg"®~‹aÄÙ:v`¬N·ªÜzQq"ûšpéÝä™”À?¨¹¦¸ÃáÑøŒ¿EƒÑº_—á|ØBøÁ]‚º N$ô¢Â«Zx¡zC}›öqþ&>÷€ J}®f´7¸¥1*7#“ Eò™¢cèÌ¿þCe“þV‘IñD³MC‰É¶)˜aQ±È¸­¸í²º¨S”²úM'¿Cë€û'ô#ù/;+Ƴeëð¾Öà+ö+À1dxÖ +endstream +endobj +150 0 obj +<< +/BaseFont /JEAERV+Wingdings-Regular +/DescendantFonts 1169 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1170 0 R +/Type /Font +>> +endobj +151 0 obj +<< +/BaseFont /SLAMID+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 142 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 1171 0 R +/Type /Font +/Widths [285] +>> +endobj +152 0 obj +<< +/BaseFont /BGUYEL+Wingdings-Regular +/DescendantFonts 1172 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1173 0 R +/Type /Font +>> +endobj +153 0 obj +<< +/BaseFont /RHQGUF+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 140 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1174 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +154 0 obj +<< +/BaseFont /SLAMID+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 142 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1175 0 R +/Type /Font +/Widths [202] +>> +endobj +155 0 obj +<< +/BaseFont /EYAGUF+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 146 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1176 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +156 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1177 0 R +/FontName /JRGOYB+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +157 0 obj +<< +/Filter /FlateDecode +/Length 557 +>> +stream +H‰\”ÍŠ£@…÷>E-»QoÝÛ‚òÓ YÌ“™0ZÉcyû©ãiz`„Ä#Vù}©Jw‡ý¡ïf—~Ÿ†æfwîúv +·á>5ÁÂ¥ë“,wm×ÌWËs­Ç$“Û®‡þ<$UåÒñæmžîiÓ§ðœ¤ß¦6L]qO¿vÇg—ïãø'\C?»•[¯]ÎñA_êñk} .]¦½Úx¿›/qο?cpùrQ¦Úpë&Lu IµŠÇÚUïñX'¡oÿ»ožÓNçæw=%UŽÁ«U<Åì™=ò+ó+rÉ\"ï˜wÈ{æ=òóò;s¨ +>¿Àó‹Œ9CΙs䂹@fA¦OŸB™Ù˜ ™ž<‹ óy˼YÈp…\WÈp…\WÈp…\WÈp…\WØ ¡ƒÀAØ• +aW‚®„] ºv%èʳ+®<=œ==œ==œ==œ==œ==œ==œ==œ==œ•,KÉR°”,KÉR°”,KÉR°”,KÉR°”,]XìGÑò)¾‘²+EWÊ®])»Rt¥ìJÑ•±+CWFƒ¿Ñßàoô7øý þFƒ¿Ñßàoô7øý þFƒ¿Ñßà_‚›¯2Œ)sfŒ) f¼K)Ìx—R™á³¥Ow§q]œ…_òW€``1 +endstream +endobj +158 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/P/R/S/a/b/c/comma/d/e/eight/f/five/four/g/h/i/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/v/y/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1178 0 R +/FontName /KVQTWZ+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +159 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +160 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/two/three) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1179 0 R +/FontName /VJFNKD+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +161 0 obj +<< +/Filter /FlateDecode +/Length 250 +>> +stream +H‰\PMkÄ ½û+æ¸{XÌz“@Ùm!‡~д?Àè$cù÷uÙBtÞ0óžÏá—þÚ;›€¿G¯L0Yg"®~‹aÄÙ:v`¬N·ªÜzQq"ûšpéÝä™”À?¨¹¦¸ÃáÑøŒ¿EƒÑº_—á|ØBøÁ]‚º N$ô¢Â«Zx¡zC}›öqþ&>÷€ J}®f´7¸¥1*7#“ Eò™¢cèÌ¿þCe“þV‘IñD³MC‰É¶)˜aQ±È¸­¸í²º¨S”²úM'¿Cë€û'ô#ù/;+Ƴeëð¾Öà+ö+À1dxÖ +endstream +endobj +162 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/C/I/M/N/R/U/V/a/asterisk/c/comma/d/e/f/g/h/hyphen/i/k/l/m/n/o/one/p/period/r/s/six/space/t/two/u/v/w/x/y/z) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1180 0 R +/FontName /XHAOWZ+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +163 0 obj +<< +/Filter /FlateDecode +/Length 403 +>> +stream +H‰\’Ýn‚@…ïyŠ½l/aFbbµM¼èOjû«%© Yñ·ïNÓ&%ÑýÈ2‡ÙI×ÛÍ6´ƒK_cWïüàmh¢?w—X{·÷Ç6$ÓÌ5m=üÜÿõ©ê“ÔŠw×óàOÛpè’²té›mž‡xu7«¦ÛûÛ$}‰m8º›õîÖ¥»Kßù“ƒ›¸åÒ5þ`AOUÿ\¼KDz»mcûíp½³š¿'Þ¯½wÙx?¥LÝ5þÜWµU8ú¤œØµtå£]Ëćæßþlβý¡þ¬bRfxx2±ÅxE^×ä5xCÞ€ÈƳéȶgä ,d1Îg#Ûb¼ /ÀÌÌ‘™33GfÁœ9EA.ÀÌ,)|¯à½Â|A¾ääÌZA­°VÆZ%+xNžƒé&p“{ò=˜}ôAè,p: œå‘l /•ýTôSù-ŠoQz*<•ž +O¥§ÂSé©ðTz*<•ž +O¥§ÂSy^¶à NGn“é~穾Äh£4Žï8C˜ž6øß ï»ÞY~É·ÁJÆ° +endstream +endobj +164 0 obj +<< +/BaseFont /OBORAR+Wingdings-Regular +/DescendantFonts 1181 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1182 0 R +/Type /Font +>> +endobj +165 0 obj +<< +/BaseFont /KVQTWZ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 158 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1183 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 573 573 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +166 0 obj +<< +/BaseFont /XHAOWZ+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 162 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1184 0 R +/Type /Font +/Widths [212] +>> +endobj +167 0 obj +<< +/BaseFont /XHAOWZ+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 181 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1185 0 R +/Type /Font +/Widths [202] +>> +endobj +168 0 obj +<< +/BaseFont /VEBCUD+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1186 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1187 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 588 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 569 0 0 0 601 0 0 0 0 0 0 0 0 0 +0 0 0 449 581 516 0 0 0 256 0 0 257 848 572 564 +0 0 0 0 351 569 0 0 0 500] +>> +endobj +169 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1188 0 R +/FontName /DQHESN+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +170 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“Ájë0E÷ú +-ÛEqâØ3 ˜@›´EÛGóÞ8¶’Ù(Î"ß¹¾¥jHtŒ4£3Ã8[o7ÛØ>û“úfFèb›Â¹¿¤&ø}8vÑÍsßvÍøý6ý7§zp™ï®ç1œ¶ñлªòÙ»mžÇtõ7m¿·.{KmH]<ú›ëÝ­Ïv—aø §G?ó«•oÃÁ½ÔÃk} +>›ÂíwãõÎbþŸø{‚ϧ÷9eš¾ ç¡nBªã1¸jfÏÊWÏö¬\ˆí¯ý"gØþÐ|ÔÉU9Ïf¶ß“ïÁKò¼&¯ÁòüD~?“íÒjñ0±-®*æÛb¼ /À¹ YÀÌ_ Áüò—ô,áYæäÌœ%r–%¹4Þ+¸Wx^p^x^p^è pÆÊK(YÁì ?Âþú#¬WP¯<’Áì› oºu ëÔ%ì› oÊ5*ÎJg…³ÒYá¬tV8+ÎJg…³ÒYá¬t¶ƒñ=›dÿ3Í%%½iܧ™Ã´u1ü|C?x‹ÂÏ} 0¬Ð +endstream +endobj +171 0 obj +[1189 0 R] +endobj +172 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\PÁjÃ0 ½û+tlÅm¶ÃÁPZ +9¬ËöŽ­¤†Æ6ŠsÈßOvKØâñÞO’‡æØx—@~R0-&è·„S˜É t88/vXgҕߌ: +Éæv™Žïƒ¨k_LN‰Xímèp-ä…,’ó¬~íd;ÇxÃ}‚-({ô¡ãY²Ø6eÞ¥eÞ?Å÷ª‚w÷0&Xœ¢6HÚ(ê-—‚úÄ¥zû¯î®®7WMEýÂjnï*£·×‚¸eïC•§ð²ðŒhf"NW.Rbå@Îãóh1D`W~âW€(¬rO +endstream +endobj +173 0 obj +<< +/BaseFont /SIKAEJ+Wingdings-Regular +/DescendantFonts 1190 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1191 0 R +/Type /Font +>> +endobj +174 0 obj +<< +/BaseFont /KVQTWZ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 158 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1192 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 573 573 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +175 0 obj +<< +/BaseFont /XHAOWZ+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 162 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1193 0 R +/Type /Font +/Widths [212] +>> +endobj +176 0 obj +<< +/BaseFont /VEBCUD+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1186 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1194 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +177 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [29 /f_f_i /f_i /f_f] +/Type /Encoding +>> +endobj +178 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_f_i/f_i/f_f/space/parenleft/parenright/asterisk/comma/hyphen/period/slash/one/two/six/colon/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/Y/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/quoteleft/quoteright/endash) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1195 0 R +/FontName /KGRPMZ+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +179 0 obj +<< +/Filter /FlateDecode +/Length 533 +>> +stream +H‰\”Ín£@„ï<Å“C†™îXB–g#ù°?ZgÃØ‹´„ñÁo¿]JV‹„§zz¾jO“îö¯û®\úcìëCœÜ©íš1^ûÛXGwŒç¶KV¹kÚzZfóo}©†$µÅ‡ûuŠ—}wꓲtéO{yÆ»{Ø6ý1>&é÷±‰cÛÝïÝáÑ¥‡Û0ü‰—ØM.s›kâÉ}­†oÕ%ºt^ö´oì};ÝŸlÍgÄû}ˆ.Ÿç+ÂÔ}¯CUDZêÎ1)3»6®|³k“Ä®ùï½.;žêßÕ˜”«W Î2‘å^oìÙ—ÏgóüퟛçÙ<·Áô3õ3ôškò-õzG½ƒæ~6˜æ>6˜æ6$e±šµ ¦sêZ¨ÁP0üžññžññ¾ . =µ‡Ôš9=rz¥VhúòðåéËק/ž^<¼xzñðâéÅÃK`­jÈÀÈÀÈÀÈÀÈÀÈÀÈÀ#ô.ð.Ì/È/Ì/È/Ì/È/Ì/È/²ü¯ÐÌ/È/ô.ð.Ük>š j./Ô/Ь‰ &²œ'ÔD–s„šÈr†PeM5Qò+ø•ü +~%¿‚_ɯàWò+ø•ü +~%¿‚_ɯàWò+ø•ü +þ5öͳbÖ95bÖB]Ìͳt ÚȺÝ}ôh}GkÏù“0÷%:²íâÇWcèg«p'ñ 2 +endstream +endobj +180 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [27 /parenright.cap /parenleft.cap /hyphen.cap /f_i /f_l] +/Type /Encoding +>> +endobj +181 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/R/S/T/U/V/W/X/Y/a/b/c/colon/comma/d/e/eight/f/f_i/f_l/five/four/g/h/hyphen/hyphen.cap/i/j/l/m/n/nine/o/one/p/parenleft.cap/parenright.cap/period/r/s/seven/six/slash/space/t/three/two/u/v/w/x/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1196 0 R +/FontName /XHAOWZ+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +182 0 obj +<< +/Filter /FlateDecode +/Length 531 +>> +stream +H‰\”Ín›@…÷<Å,“EÄß;‰„»‘¼èêö0Œ¤Æ ¿}çÌAIU$ÌÁ0|G3¤Ûýn?ô‹IÌc{ð‹9õC7ûëx›[oŽþÜI^˜®o—õ,þ¶—fJÒ0øp¿.þ²NcRU&ý.^—ùn6ÝxôIú}îüÜgóð{{x4éá6MüÅ‹ÉL]›ÎŸÂƒ¾6Ó·æâM‡=í»p½_îOaÌç¿î“7E<Ï)ÓŽ¿NMëçf8û¤ÊÂV›ê-luâ‡î¿ëê8ìxjß›9©ò×ps–/uÈ[ægäóùK̪a÷½}žoÃy‘ñÞ y}FüÿŸg|F8„ÌñáT%Ç–[æÌ9rÁ\ —Ì%²0 ²e¶ÈʬȎÙ!?3ãÊf¼C¹aÞ„,ä +¸B®€+ä +¸B®€+ä +¸B®€+ä +¸B®€+ä +¸B®D.»t%ìJЕ°+AW®]YveÑ•¥§…§¥§…§¥§…§¥§…§¥§…§¥§…§¥§…§¥§…§²E'J–‚¥d)XJ–‚¥d)Xªëü@&KÁR²,%+Î'e'ŠN”Äy¥ìDщ®sè:ÿЉc'8z:x:z:x:z:x:z:x:z:x:z:x:z:x:z†Óºj°¬Âê7k¶½ÍsX®ñ×)Vh?ø¯È4N&ŒÂžü`b&  +endstream +endobj +183 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +184 0 obj +<< +/BaseFont /ELSCMV+Wingdings-Regular +/DescendantFonts 1197 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1198 0 R +/Type /Font +>> +endobj +185 0 obj +<< +/BaseFont /EFZRMV+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 1199 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 1200 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +186 0 obj +<< +/BaseFont /UQZJCP+MyriadPro-Light +/Encoding 1201 0 R +/FirstChar 31 +/FontDescriptor 1202 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 1203 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +187 0 obj +<< +/BaseFont /ZXSXUF+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1204 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1205 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +188 0 obj +<< +/BaseFont /GAAIOR+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1206 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1207 0 R +/Type /Font +/Widths [212] +>> +endobj +189 0 obj +<< +/BaseFont /SXECAT+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1208 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1209 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +190 0 obj +<< +/BaseFont /KCSMSJ+Wingdings-Regular +/DescendantFonts 1210 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1211 0 R +/Type /Font +>> +endobj +191 0 obj +<< +/K [209 0 R 210 0 R 211 0 R 215 0 R 217 0 R 219 0 R 221 0 R 224 0 R 225 0 R 227 0 R 228 0 R 230 0 R 1212 0 R 1213 0 R 244 0 R 1214 0 R +254 0 R 255 0 R 257 0 R 258 0 R 259 0 R 1215 0 R 266 0 R 268 0 R 271 0 R 274 0 R 276 0 R 279 0 R 281 0 R 1216 0 R 283 0 R 1217 0 R +288 0 R 290 0 R 292 0 R 294 0 R 296 0 R 298 0 R 300 0 R 302 0 R 305 0 R 306 0 R 307 0 R 314 0 R 317 0 R 319 0 R 322 0 R 323 0 R +324 0 R 325 0 R 326 0 R 327 0 R 337 0 R 338 0 R 341 0 R 342 0 R 344 0 R 345 0 R 347 0 R 352 0 R 354 0 R 357 0 R 358 0 R 361 0 R +362 0 R 363 0 R 364 0 R 367 0 R 372 0 R 376 0 R 378 0 R 379 0 R 381 0 R 384 0 R 385 0 R 389 0 R 390 0 R 393 0 R 1218 0 R 406 0 R +415 0 R 420 0 R 422 0 R 423 0 R 461 0 R 463 0 R 556 0 R 557 0 R 558 0 R 564 0 R 567 0 R 568 0 R 570 0 R 573 0 R 576 0 R 577 0 R +646 0 R 733 0 R 735 0 R 736 0 R 739 0 R 742 0 R 743 0 R 745 0 R 747 0 R 752 0 R 759 0 R 761 0 R 1219 0 R 768 0 R 772 0 R 774 0 R +775 0 R 779 0 R 782 0 R 783 0 R 785 0 R 786 0 R 787 0 R 790 0 R 793 0 R 797 0 R 799 0 R 800 0 R 801 0 R 804 0 R 806 0 R 807 0 R +808 0 R 1220 0 R 814 0 R 819 0 R 821 0 R 823 0 R 825 0 R 826 0 R 828 0 R 829 0 R 1221 0 R 834 0 R 835 0 R 836 0 R 1222 0 R 842 0 R +844 0 R 846 0 R 848 0 R 850 0 R 851 0 R 853 0 R 854 0 R 856 0 R 861 0 R 867 0 R 967 0 R 968 0 R 971 0 R 975 0 R 980 0 R 984 0 R +985 0 R 988 0 R 992 0 R 993 0 R 998 0 R 1001 0 R 1004 0 R 1223 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R +1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R] +/P 107 0 R +/S /Story +>> +endobj +192 0 obj +<< +/K 315 0 R +/P 107 0 R +/S /Story +>> +endobj +193 0 obj +<< +/K 366 0 R +/P 107 0 R +/S /Story +>> +endobj +194 0 obj +<< +/K 460 0 R +/P 107 0 R +/S /Story +>> +endobj +195 0 obj +<< +/K 1224 0 R +/P 107 0 R +/S /Story +>> +endobj +196 0 obj +<< +/K 1225 0 R +/P 107 0 R +/S /Story +>> +endobj +197 0 obj +<< +/K 572 0 R +/P 107 0 R +/S /Story +>> +endobj +198 0 obj +<< +/K 579 0 R +/P 107 0 R +/S /Story +>> +endobj +199 0 obj +<< +/K 1226 0 R +/P 107 0 R +/S /Story +>> +endobj +200 0 obj +<< +/K 650 0 R +/P 107 0 R +/S /Story +>> +endobj +201 0 obj +<< +/K 1227 0 R +/P 107 0 R +/S /Story +>> +endobj +202 0 obj +<< +/K 770 0 R +/P 107 0 R +/S /Story +>> +endobj +203 0 obj +<< +/K 1021 0 R +/P 107 0 R +/S /Story +>> +endobj +204 0 obj +<< +/K 1228 0 R +/P 107 0 R +/S /Story +>> +endobj +205 0 obj +<< +/K 870 0 R +/P 107 0 R +/S /Story +>> +endobj +206 0 obj +<< +/K 1229 0 R +/P 107 0 R +/S /Story +>> +endobj +207 0 obj +<< +/K 965 0 R +/P 107 0 R +/S /Story +>> +endobj +208 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 209 0 R +/Pg 8 0 R +/S /Span +>> +endobj +209 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [208 0 R 1] +/P 191 0 R +/Pg 8 0 R +/S /Kapitel-Head +>> +endobj +210 0 obj +<< +/C /Pa1 +/K 2 +/P 191 0 R +/Pg 8 0 R +/S /Zwischenhead_1 +>> +endobj +211 0 obj +<< +/C /Pa2 +/K [3 212 0 R 5 213 0 R 7 8 9 10 214 0 R 12 13 14] +/P 191 0 R +/Pg 8 0 R +/S /Lauftext_1._Abs +>> +endobj +212 0 obj +<< +/ActualText +/K 4 +/P 211 0 R +/Pg 8 0 R +/S /Span +>> +endobj +213 0 obj +<< +/ActualText +/K 6 +/P 211 0 R +/Pg 8 0 R +/S /Span +>> +endobj +214 0 obj +<< +/ActualText +/K 11 +/P 211 0 R +/Pg 8 0 R +/S /Span +>> +endobj +215 0 obj +<< +/C /Pa3 +/K [15 16 17 216 0 R 19 20 21 22] +/P 191 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +216 0 obj +<< +/ActualText +/K 18 +/P 215 0 R +/Pg 8 0 R +/S /Span +>> +endobj +217 0 obj +<< +/C /Pa3 +/K [23 24 218 0 R 26 27 28 29 30] +/P 191 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +218 0 obj +<< +/ActualText +/K 25 +/P 217 0 R +/Pg 8 0 R +/S /Span +>> +endobj +219 0 obj +<< +/C /Pa3 +/K [31 32 33 34 35 36 37 38 39 220 0 R 41] +/P 191 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +220 0 obj +<< +/ActualText +/K 40 +/P 219 0 R +/Pg 8 0 R +/S /Span +>> +endobj +221 0 obj +<< +/C /Pa3 +/K [42 43 44 45 46 << +/MCID 47 +/Pg 9 0 R +/Type /MCR +>> << +/MCID 48 +/Pg 9 0 R +/Type /MCR +>> << +/MCID 49 +/Pg 9 0 R +/Type /MCR +>> << +/MCID 50 +/Pg 9 0 R +/Type /MCR +>> 222 0 R << +/MCID 52 +/Pg 9 0 R +/Type /MCR +>> 223 0 R << +/MCID 54 +/Pg 9 0 R +/Type /MCR +>> << +/MCID 55 +/Pg 9 0 R +/Type /MCR +>> << +/MCID 56 +/Pg 9 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +222 0 obj +<< +/ActualText +/K 51 +/P 221 0 R +/Pg 9 0 R +/S /Span +>> +endobj +223 0 obj +<< +/ActualText +/K 53 +/P 221 0 R +/Pg 9 0 R +/S /Span +>> +endobj +224 0 obj +<< +/C /Pa1 +/K 57 +/P 191 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +225 0 obj +<< +/C /Pa2 +/K [58 59 226 0 R 61] +/P 191 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +226 0 obj +<< +/ActualText +/K 60 +/P 225 0 R +/Pg 9 0 R +/S /Span +>> +endobj +227 0 obj +<< +/C /Pa1 +/K 62 +/P 191 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +228 0 obj +<< +/C /Pa2 +/K [63 64 229 0 R 66] +/P 191 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +229 0 obj +<< +/ActualText +/K 65 +/P 228 0 R +/Pg 9 0 R +/S /Span +>> +endobj +230 0 obj +<< +/C /Pa3 +/K [67 68 69 231 0 R 71] +/P 191 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +231 0 obj +<< +/ActualText +/K 70 +/P 230 0 R +/Pg 9 0 R +/S /Span +>> +endobj +232 0 obj +<< +/C /A4 +/K 72 +/P 1230 0 R +/Pg 9 0 R +/S /Span +>> +endobj +233 0 obj +<< +/K [73 234 0 R 75] +/P 1231 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +234 0 obj +<< +/ActualText +/K 74 +/P 233 0 R +/Pg 9 0 R +/S /Span +>> +endobj +235 0 obj +<< +/C /A4 +/K 76 +/P 1232 0 R +/Pg 9 0 R +/S /Span +>> +endobj +236 0 obj +<< +/K [77 237 0 R 79] +/P 1233 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +237 0 obj +<< +/ActualText +/K 78 +/P 236 0 R +/Pg 9 0 R +/S /Span +>> +endobj +238 0 obj +<< +/C /A4 +/K 80 +/P 1234 0 R +/Pg 9 0 R +/S /Span +>> +endobj +239 0 obj +<< +/K 81 +/P 1235 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +240 0 obj +<< +/C /A4 +/K 82 +/P 1236 0 R +/Pg 9 0 R +/S /Span +>> +endobj +241 0 obj +<< +/K 83 +/P 1237 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +242 0 obj +<< +/C /A4 +/K 84 +/P 1238 0 R +/Pg 9 0 R +/S /Span +>> +endobj +243 0 obj +<< +/K 85 +/P 1239 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +244 0 obj +<< +/C /Pa2 +/K [86 87 88] +/P 191 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +245 0 obj +<< +/C /A4 +/K 89 +/P 1240 0 R +/Pg 9 0 R +/S /Span +>> +endobj +246 0 obj +<< +/C /A4 +/K 90 +/P 1240 0 R +/Pg 9 0 R +/S /Span +>> +endobj +247 0 obj +<< +/C /A5 +/K 91 +/P 248 0 R +/Pg 9 0 R +/S /Span +>> +endobj +248 0 obj +<< +/K [247 0 R 92 93 94 249 0 R 96 97 98] +/P 1241 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +249 0 obj +<< +/ActualText +/K 95 +/P 248 0 R +/Pg 9 0 R +/S /Span +>> +endobj +250 0 obj +<< +/C /A4 +/K 99 +/P 1242 0 R +/Pg 10 0 R +/S /Span +>> +endobj +251 0 obj +<< +/C /A4 +/K 100 +/P 1242 0 R +/Pg 10 0 R +/S /Span +>> +endobj +252 0 obj +<< +/C /A5 +/K 101 +/P 253 0 R +/Pg 10 0 R +/S /Span +>> +endobj +253 0 obj +<< +/K [252 0 R 102 103 104 105 106 107 108] +/P 1243 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +254 0 obj +<< +/C /Pa1 +/K 109 +/P 191 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +255 0 obj +<< +/C /Pa2 +/K [110 256 0 R 112 113 114 115] +/P 191 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +256 0 obj +<< +/ActualText +/K 111 +/P 255 0 R +/Pg 10 0 R +/S /Span +>> +endobj +257 0 obj +<< +/C /Pa3 +/K 116 +/P 191 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +258 0 obj +<< +/C /Pa3 +/K [117 118 119 120 121 122] +/P 191 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +259 0 obj +<< +/C /Pa3 +/K [123 260 0 R 125 126 261 0 R 128] +/P 191 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +260 0 obj +<< +/ActualText +/K 124 +/P 259 0 R +/Pg 10 0 R +/S /Span +>> +endobj +261 0 obj +<< +/ActualText +/K 127 +/P 259 0 R +/Pg 10 0 R +/S /Span +>> +endobj +262 0 obj +<< +/C /A4 +/K 129 +/P 1244 0 R +/Pg 10 0 R +/S /Span +>> +endobj +263 0 obj +<< +/C /A4 +/K 130 +/P 1244 0 R +/Pg 10 0 R +/S /Span +>> +endobj +264 0 obj +<< +/K [131 132 133] +/P 1245 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +265 0 obj +<< +/C /A6 +/K 134 +/P 266 0 R +/Pg 10 0 R +/S /Span +>> +endobj +266 0 obj +<< +/C /Pa7 +/K [265 0 R 135] +/P 191 0 R +/Pg 10 0 R +/S /Einzug_mit_Klotz +>> +endobj +267 0 obj +<< +/C /A6 +/K 136 +/P 268 0 R +/Pg 10 0 R +/S /Span +>> +endobj +268 0 obj +<< +/C /Pa7 +/K [267 0 R 137 269 0 R 139] +/P 191 0 R +/Pg 10 0 R +/S /Einzug_mit_Klotz +>> +endobj +269 0 obj +<< +/ActualText +/K 138 +/P 268 0 R +/Pg 10 0 R +/S /Span +>> +endobj +270 0 obj +<< +/C /A6 +/K 140 +/P 271 0 R +/Pg 10 0 R +/S /Span +>> +endobj +271 0 obj +<< +/C /Pa7 +/K [270 0 R 141 272 0 R 143 144] +/P 191 0 R +/Pg 10 0 R +/S /Einzug_mit_Klotz +>> +endobj +272 0 obj +<< +/ActualText +/K 142 +/P 271 0 R +/Pg 10 0 R +/S /Span +>> +endobj +273 0 obj +<< +/C /A6 +/K 145 +/P 274 0 R +/Pg 10 0 R +/S /Span +>> +endobj +274 0 obj +<< +/C /Pa7 +/K [273 0 R 146 147] +/P 191 0 R +/Pg 10 0 R +/S /Einzug_mit_Klotz +>> +endobj +275 0 obj +<< +/C /A6 +/K 148 +/P 276 0 R +/Pg 10 0 R +/S /Span +>> +endobj +276 0 obj +<< +/C /Pa7 +/K [275 0 R 149 277 0 R 151] +/P 191 0 R +/Pg 10 0 R +/S /Einzug_mit_Klotz +>> +endobj +277 0 obj +<< +/ActualText +/K 150 +/P 276 0 R +/Pg 10 0 R +/S /Span +>> +endobj +278 0 obj +<< +/C /A6 +/K 152 +/P 279 0 R +/Pg 10 0 R +/S /Span +>> +endobj +279 0 obj +<< +/C /Pa7 +/K [278 0 R 153 154 155] +/P 191 0 R +/Pg 10 0 R +/S /Einzug_mit_Klotz +>> +endobj +280 0 obj +<< +/C /A6 +/K 156 +/P 281 0 R +/Pg 10 0 R +/S /Span +>> +endobj +281 0 obj +<< +/C /Pa8 +/K [280 0 R 157 282 0 R 159] +/P 191 0 R +/Pg 10 0 R +/S /Einzug_mit_Klotz__le +>> +endobj +282 0 obj +<< +/ActualText +/K 158 +/P 281 0 R +/Pg 10 0 R +/S /Span +>> +endobj +283 0 obj +<< +/C /Pa3 +/K [160 161] +/P 191 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +284 0 obj +<< +/C /A4 +/K 162 +/P 1246 0 R +/Pg 11 0 R +/S /Span +>> +endobj +285 0 obj +<< +/C /A4 +/K 163 +/P 1246 0 R +/Pg 11 0 R +/S /Span +>> +endobj +286 0 obj +<< +/K 164 +/P 1247 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +287 0 obj +<< +/C /A6 +/K 165 +/P 288 0 R +/Pg 11 0 R +/S /Span +>> +endobj +288 0 obj +<< +/C /Pa7 +/K [287 0 R 166] +/P 191 0 R +/Pg 11 0 R +/S /Einzug_mit_Klotz +>> +endobj +289 0 obj +<< +/C /A6 +/K 167 +/P 290 0 R +/Pg 11 0 R +/S /Span +>> +endobj +290 0 obj +<< +/C /Pa7 +/K [289 0 R 168] +/P 191 0 R +/Pg 11 0 R +/S /Einzug_mit_Klotz +>> +endobj +291 0 obj +<< +/C /A6 +/K 169 +/P 292 0 R +/Pg 11 0 R +/S /Span +>> +endobj +292 0 obj +<< +/C /Pa7 +/K [291 0 R 170] +/P 191 0 R +/Pg 11 0 R +/S /Einzug_mit_Klotz +>> +endobj +293 0 obj +<< +/C /A6 +/K 171 +/P 294 0 R +/Pg 11 0 R +/S /Span +>> +endobj +294 0 obj +<< +/C /Pa7 +/K [293 0 R 172] +/P 191 0 R +/Pg 11 0 R +/S /Einzug_mit_Klotz +>> +endobj +295 0 obj +<< +/C /A6 +/K 173 +/P 296 0 R +/Pg 11 0 R +/S /Span +>> +endobj +296 0 obj +<< +/C /Pa7 +/K [295 0 R 174] +/P 191 0 R +/Pg 11 0 R +/S /Einzug_mit_Klotz +>> +endobj +297 0 obj +<< +/C /A6 +/K 175 +/P 298 0 R +/Pg 11 0 R +/S /Span +>> +endobj +298 0 obj +<< +/C /Pa7 +/K [297 0 R 176] +/P 191 0 R +/Pg 11 0 R +/S /Einzug_mit_Klotz +>> +endobj +299 0 obj +<< +/C /A6 +/K 177 +/P 300 0 R +/Pg 11 0 R +/S /Span +>> +endobj +300 0 obj +<< +/C /Pa7 +/K [299 0 R 178] +/P 191 0 R +/Pg 11 0 R +/S /Einzug_mit_Klotz +>> +endobj +301 0 obj +<< +/C /A6 +/K 179 +/P 302 0 R +/Pg 11 0 R +/S /Span +>> +endobj +302 0 obj +<< +/C /Pa8 +/K [301 0 R 180 303 0 R 182 304 0 R 184] +/P 191 0 R +/Pg 11 0 R +/S /Einzug_mit_Klotz__le +>> +endobj +303 0 obj +<< +/ActualText +/K 181 +/P 302 0 R +/Pg 11 0 R +/S /Span +>> +endobj +304 0 obj +<< +/ActualText +/K 183 +/P 302 0 R +/Pg 11 0 R +/S /Span +>> +endobj +305 0 obj +<< +/C /Pa3 +/K [185 186 187 188 189] +/P 191 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +306 0 obj +<< +/C /Pa3 +/K [190 191 192 193] +/P 191 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +307 0 obj +<< +/C /Pa3 +/K [194 308 0 R 196 309 0 R 198 310 0 R 200 201 202 203 204 205 311 0 R 207 208 209 +312 0 R 211 212 213 313 0 R 215 216 217] +/P 191 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +308 0 obj +<< +/ActualText +/K 195 +/P 307 0 R +/Pg 11 0 R +/S /Span +>> +endobj +309 0 obj +<< +/ActualText +/K 197 +/P 307 0 R +/Pg 11 0 R +/S /Span +>> +endobj +310 0 obj +<< +/ActualText +/K 199 +/P 307 0 R +/Pg 11 0 R +/S /Span +>> +endobj +311 0 obj +<< +/ActualText +/K 206 +/P 307 0 R +/Pg 11 0 R +/S /Span +>> +endobj +312 0 obj +<< +/ActualText +/K 210 +/P 307 0 R +/Pg 11 0 R +/S /Span +>> +endobj +313 0 obj +<< +/ActualText +/K 214 +/P 307 0 R +/Pg 11 0 R +/S /Span +>> +endobj +314 0 obj +<< +/C /Pa3 +/K [218 219 220 221 222 223 224 225 << +/MCID 233 +/Pg 12 0 R +/Type /MCR +>> << +/MCID 234 +/Pg 12 0 R +/Type /MCR +>> << +/MCID 235 +/Pg 12 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +315 0 obj +<< +/C /Pa9 +/K [226 227 316 0 R 229 230 231 232] +/P 192 0 R +/Pg 11 0 R +/S /Einklinker-Text__rec +>> +endobj +316 0 obj +<< +/ActualText +/K 228 +/P 315 0 R +/Pg 11 0 R +/S /Span +>> +endobj +317 0 obj +<< +/C /Pa3 +/K [236 318 0 R 238 239 240 241] +/P 191 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +318 0 obj +<< +/ActualText +/K 237 +/P 317 0 R +/Pg 12 0 R +/S /Span +>> +endobj +319 0 obj +<< +/C /Pa3 +/K [242 243 320 0 R 245 246 247 321 0 R 249 250 251] +/P 191 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +320 0 obj +<< +/ActualText +/K 244 +/P 319 0 R +/Pg 12 0 R +/S /Span +>> +endobj +321 0 obj +<< +/ActualText +/K 248 +/P 319 0 R +/Pg 12 0 R +/S /Span +>> +endobj +322 0 obj +<< +/C /Pa1 +/K 252 +/P 191 0 R +/Pg 12 0 R +/S /Zwischenhead_1 +>> +endobj +323 0 obj +<< +/C /Pa2 +/K [253 254] +/P 191 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +324 0 obj +<< +/C /Pa10 +/K 255 +/P 191 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +325 0 obj +<< +/C /Pa2 +/K 256 +/P 191 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +326 0 obj +<< +/C /Pa10 +/K 257 +/P 191 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +327 0 obj +<< +/C /Pa2 +/K [258 328 0 R 260 261 329 0 R 263 330 0 R 265 331 0 R 267 268 269 332 0 R 271 333 0 R 273 +334 0 R 275 276 277 335 0 R 279 280 281 336 0 R 283 284 << +/MCID 285 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 286 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 287 +/Pg 13 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +328 0 obj +<< +/ActualText +/K 259 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +329 0 obj +<< +/ActualText +/K 262 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +330 0 obj +<< +/ActualText +/K 264 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +331 0 obj +<< +/ActualText +/K 266 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +332 0 obj +<< +/ActualText +/K 270 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +333 0 obj +<< +/ActualText +/K 272 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +334 0 obj +<< +/ActualText +/K 274 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +335 0 obj +<< +/ActualText +/K 278 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +336 0 obj +<< +/ActualText +/K 282 +/P 327 0 R +/Pg 12 0 R +/S /Span +>> +endobj +337 0 obj +<< +/C /Pa10 +/K 288 +/P 191 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +338 0 obj +<< +/C /Pa2 +/K [289 290 291 339 0 R 293 340 0 R 295 296 297 298] +/P 191 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +339 0 obj +<< +/ActualText +/K 292 +/P 338 0 R +/Pg 13 0 R +/S /Span +>> +endobj +340 0 obj +<< +/ActualText +/K 294 +/P 338 0 R +/Pg 13 0 R +/S /Span +>> +endobj +341 0 obj +<< +/C /Pa10 +/K 299 +/P 191 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +342 0 obj +<< +/C /Pa2 +/K [300 343 0 R 302 303 304 305] +/P 191 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +343 0 obj +<< +/ActualText +/K 301 +/P 342 0 R +/Pg 13 0 R +/S /Span +>> +endobj +344 0 obj +<< +/C /Pa10 +/K 306 +/P 191 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +345 0 obj +<< +/C /Pa2 +/K [307 308 309 310 311 312 313 314 346 0 R 316 317] +/P 191 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +346 0 obj +<< +/ActualText +/K 315 +/P 345 0 R +/Pg 13 0 R +/S /Span +>> +endobj +347 0 obj +<< +/C /Pa3 +/K [318 319 320 1248 0 R 1249 0 R 322 349 0 R 324 325 326 350 0 R 328 329 330 331 332 +333] +/P 191 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +348 0 obj +<< +/A << +/O /Layout +/LineHeight 11.0 +/BaselineShift 3.66299 +>> +/K 321 +/P 1248 0 R +/Pg 13 0 R +/S /Span +>> +endobj +349 0 obj +<< +/ActualText +/K 323 +/P 347 0 R +/Pg 13 0 R +/S /Span +>> +endobj +350 0 obj +<< +/ActualText +/K 327 +/P 347 0 R +/Pg 13 0 R +/S /Span +>> +endobj +351 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/K [334 335 336] +/P 1249 0 R +/Pg 13 0 R +/S /Endnote_1._Abs +>> +endobj +352 0 obj +<< +/C /Pa3 +/K [337 338 339 340 353 0 R 342 343] +/P 191 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +353 0 obj +<< +/ActualText +/K 341 +/P 352 0 R +/Pg 14 0 R +/S /Span +>> +endobj +354 0 obj +<< +/C /Pa3 +/K [344 345 355 0 R 347 348 349 356 0 R 351] +/P 191 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +355 0 obj +<< +/ActualText +/K 346 +/P 354 0 R +/Pg 14 0 R +/S /Span +>> +endobj +356 0 obj +<< +/ActualText +/K 350 +/P 354 0 R +/Pg 14 0 R +/S /Span +>> +endobj +357 0 obj +<< +/C /Pa10 +/K 352 +/P 191 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +358 0 obj +<< +/C /Pa2 +/K [353 354 355 356 357 358 359 360 361 362 363 364 365 359 0 R 367 368 +360 0 R 370 371 372 373 374] +/P 191 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +359 0 obj +<< +/ActualText +/K 366 +/P 358 0 R +/Pg 14 0 R +/S /Span +>> +endobj +360 0 obj +<< +/ActualText +/K 369 +/P 358 0 R +/Pg 14 0 R +/S /Span +>> +endobj +361 0 obj +<< +/C /Pa10 +/K 375 +/P 191 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +362 0 obj +<< +/C /Pa2 +/K [376 377 378 379 380] +/P 191 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +363 0 obj +<< +/C /Pa10 +/K 381 +/P 191 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +364 0 obj +<< +/C /Pa2 +/K [382 383 365 0 R 385 << +/MCID 391 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 392 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 393 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 394 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 395 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 396 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 397 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 398 +/Pg 15 0 R +/Type /MCR +>> << +/MCID 399 +/Pg 15 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +365 0 obj +<< +/ActualText +/K 384 +/P 364 0 R +/Pg 14 0 R +/S /Span +>> +endobj +366 0 obj +<< +/C /Pa9 +/K [386 387 388 389 390] +/P 193 0 R +/Pg 14 0 R +/S /Einklinker-Text +>> +endobj +367 0 obj +<< +/C /Pa3 +/K [400 401 402 368 0 R 404 405 406 369 0 R 408 409 370 0 R 411 371 0 R 413 414 415] +/P 191 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +368 0 obj +<< +/ActualText +/K 403 +/P 367 0 R +/Pg 15 0 R +/S /Span +>> +endobj +369 0 obj +<< +/ActualText +/K 407 +/P 367 0 R +/Pg 15 0 R +/S /Span +>> +endobj +370 0 obj +<< +/ActualText +/K 410 +/P 367 0 R +/Pg 15 0 R +/S /Span +>> +endobj +371 0 obj +<< +/ActualText +/K 412 +/P 367 0 R +/Pg 15 0 R +/S /Span +>> +endobj +372 0 obj +<< +/C /Pa3 +/K [416 417 418 419 373 0 R 421 422 423 374 0 R 425 375 0 R 427 428 429] +/P 191 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +373 0 obj +<< +/ActualText +/K 420 +/P 372 0 R +/Pg 15 0 R +/S /Span +>> +endobj +374 0 obj +<< +/ActualText +/K 424 +/P 372 0 R +/Pg 15 0 R +/S /Span +>> +endobj +375 0 obj +<< +/ActualText +/K 426 +/P 372 0 R +/Pg 15 0 R +/S /Span +>> +endobj +376 0 obj +<< +/C /Pa3 +/K [430 431 432 377 0 R 434 435 436] +/P 191 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +377 0 obj +<< +/ActualText +/K 433 +/P 376 0 R +/Pg 15 0 R +/S /Span +>> +endobj +378 0 obj +<< +/C /Pa10 +/K 437 +/P 191 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +379 0 obj +<< +/C /Pa2 +/K [438 439 440 441 442 443 380 0 R 445] +/P 191 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +380 0 obj +<< +/ActualText +/K 444 +/P 379 0 R +/Pg 15 0 R +/S /Span +>> +endobj +381 0 obj +<< +/C /Pa3 +/K [446 382 0 R 448 449 450 451 383 0 R 453 454 455] +/P 191 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +382 0 obj +<< +/ActualText +/K 447 +/P 381 0 R +/Pg 16 0 R +/S /Span +>> +endobj +383 0 obj +<< +/ActualText +/K 452 +/P 381 0 R +/Pg 16 0 R +/S /Span +>> +endobj +384 0 obj +<< +/C /Pa10 +/K 456 +/P 191 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +385 0 obj +<< +/C /Pa2 +/K [457 458 386 0 R 460 461 387 0 R 463 464 465 466 467 388 0 R 469 470] +/P 191 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +386 0 obj +<< +/ActualText +/K 459 +/P 385 0 R +/Pg 16 0 R +/S /Span +>> +endobj +387 0 obj +<< +/ActualText +/K 462 +/P 385 0 R +/Pg 16 0 R +/S /Span +>> +endobj +388 0 obj +<< +/ActualText +/K 468 +/P 385 0 R +/Pg 16 0 R +/S /Span +>> +endobj +389 0 obj +<< +/C /Pa1 +/K 471 +/P 191 0 R +/Pg 16 0 R +/S /Zwischenhead_1 +>> +endobj +390 0 obj +<< +/C /Pa2 +/K [472 391 0 R 474 392 0 R 476 477 478 479] +/P 191 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +391 0 obj +<< +/ActualText +/K 473 +/P 390 0 R +/Pg 16 0 R +/S /Span +>> +endobj +392 0 obj +<< +/ActualText +/K 475 +/P 390 0 R +/Pg 16 0 R +/S /Span +>> +endobj +393 0 obj +<< +/C /Pa3 +/K [480 394 0 R 482] +/P 191 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +394 0 obj +<< +/ActualText +/K 481 +/P 393 0 R +/Pg 16 0 R +/S /Span +>> +endobj +395 0 obj +<< +/C /A4 +/K 483 +/P 1250 0 R +/Pg 16 0 R +/S /Span +>> +endobj +396 0 obj +<< +/C /A4 +/K 484 +/P 1250 0 R +/Pg 16 0 R +/S /Span +>> +endobj +397 0 obj +<< +/C /A5 +/K 485 +/P 400 0 R +/Pg 16 0 R +/S /Span +>> +endobj +398 0 obj +<< +/ActualText +/C /A5 +/K 486 +/P 400 0 R +/Pg 16 0 R +/S /Span +>> +endobj +399 0 obj +<< +/C /A5 +/K 487 +/P 400 0 R +/Pg 16 0 R +/S /Span +>> +endobj +400 0 obj +<< +/K [397 0 R 398 0 R 399 0 R 488 401 0 R 490 491 492 493 494] +/P 1251 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +401 0 obj +<< +/ActualText +/K 489 +/P 400 0 R +/Pg 16 0 R +/S /Span +>> +endobj +402 0 obj +<< +/C /A6 +/K 495 +/P 406 0 R +/Pg 16 0 R +/S /Span +>> +endobj +403 0 obj +<< +/C /A6 +/K 496 +/P 406 0 R +/Pg 16 0 R +/S /Span +>> +endobj +404 0 obj +<< +/C /A5 +/K 497 +/P 406 0 R +/Pg 16 0 R +/S /Span +>> +endobj +405 0 obj +<< +/C /A5 +/K 498 +/P 406 0 R +/Pg 16 0 R +/S /Span +>> +endobj +406 0 obj +<< +/C /Pa7 +/K [402 0 R 403 0 R 404 0 R 405 0 R 499 500 501 502 503 << +/MCID 504 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 505 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 506 +/Pg 17 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 16 0 R +/S /Einzug_mit_Klotz +>> +endobj +407 0 obj +<< +/C /A6 +/K 507 +/P 415 0 R +/Pg 17 0 R +/S /Span +>> +endobj +408 0 obj +<< +/C /A10 +/K 508 +/P 415 0 R +/Pg 17 0 R +/S /Span +>> +endobj +409 0 obj +<< +/ActualText +/C /A10 +/K 509 +/P 415 0 R +/Pg 17 0 R +/S /Span +>> +endobj +410 0 obj +<< +/C /A10 +/K 510 +/P 415 0 R +/Pg 17 0 R +/S /Span +>> +endobj +411 0 obj +<< +/ActualText +/C /A10 +/K 511 +/P 415 0 R +/Pg 17 0 R +/S /Span +>> +endobj +412 0 obj +<< +/C /A10 +/K 512 +/P 415 0 R +/Pg 17 0 R +/S /Span +>> +endobj +413 0 obj +<< +/C /A10 +/K 513 +/P 415 0 R +/Pg 17 0 R +/S /Span +>> +endobj +414 0 obj +<< +/C /A5 +/K 514 +/P 415 0 R +/Pg 17 0 R +/S /Span +>> +endobj +415 0 obj +<< +/C /Pa7 +/K [407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 515 516 517 518 519 520] +/P 191 0 R +/Pg 17 0 R +/S /Einzug_mit_Klotz +>> +endobj +416 0 obj +<< +/C /A6 +/K 521 +/P 420 0 R +/Pg 17 0 R +/S /Span +>> +endobj +417 0 obj +<< +/C /A5 +/K 522 +/P 420 0 R +/Pg 17 0 R +/S /Span +>> +endobj +418 0 obj +<< +/ActualText +/C /A5 +/K 523 +/P 420 0 R +/Pg 17 0 R +/S /Span +>> +endobj +419 0 obj +<< +/C /A5 +/K 524 +/P 420 0 R +/Pg 17 0 R +/S /Span +>> +endobj +420 0 obj +<< +/C /Pa7 +/K [416 0 R 417 0 R 418 0 R 419 0 R 525 526 527 421 0 R 529 530 531] +/P 191 0 R +/Pg 17 0 R +/S /Einzug_mit_Klotz +>> +endobj +421 0 obj +<< +/ActualText +/K 528 +/P 420 0 R +/Pg 17 0 R +/S /Span +>> +endobj +422 0 obj +<< +/C /Pa10 +/K 532 +/P 191 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +423 0 obj +<< +/C /Pa2 +/K [533 534] +/P 191 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +424 0 obj +<< +/C /Pa13 +/K 535 +/P 1252 0 R +/Pg 17 0 R +/S /Tab._Versal_bold_wei +>> +endobj +425 0 obj +<< +/C /Pa13 +/K [536 537] +/P 1253 0 R +/Pg 17 0 R +/S /Tab._Versal_bold_sch +>> +endobj +426 0 obj +<< +/C /A4 +/K 538 +/P 1254 0 R +/Pg 17 0 R +/S /Span +>> +endobj +427 0 obj +<< +/C /A4 +/K 539 +/P 1254 0 R +/Pg 17 0 R +/S /Span +>> +endobj +428 0 obj +<< +/K 540 +/P 1255 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +429 0 obj +<< +/C /Pa13 +/K [541 430 0 R 543 431 0 R 545] +/P 1256 0 R +/Pg 17 0 R +/S /Tab._Versal_bold_sch +>> +endobj +430 0 obj +<< +/ActualText +/K 542 +/P 429 0 R +/Pg 17 0 R +/S /Span +>> +endobj +431 0 obj +<< +/ActualText +/K 544 +/P 429 0 R +/Pg 17 0 R +/S /Span +>> +endobj +432 0 obj +<< +/C /A4 +/K 546 +/P 1257 0 R +/Pg 17 0 R +/S /Span +>> +endobj +433 0 obj +<< +/C /A4 +/K 547 +/P 1257 0 R +/Pg 17 0 R +/S /Span +>> +endobj +434 0 obj +<< +/K [548 435 0 R 550] +/P 1258 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +435 0 obj +<< +/ActualText +/K 549 +/P 434 0 R +/Pg 17 0 R +/S /Span +>> +endobj +436 0 obj +<< +/C /A4 +/K 551 +/P 1259 0 R +/Pg 17 0 R +/S /Span +>> +endobj +437 0 obj +<< +/C /A4 +/K 552 +/P 1259 0 R +/Pg 17 0 R +/S /Span +>> +endobj +438 0 obj +<< +/K [553 439 0 R 555] +/P 1260 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +439 0 obj +<< +/ActualText +/K 554 +/P 438 0 R +/Pg 17 0 R +/S /Span +>> +endobj +440 0 obj +<< +/C /A4 +/K 556 +/P 1261 0 R +/Pg 17 0 R +/S /Span +>> +endobj +441 0 obj +<< +/C /A4 +/K 557 +/P 1261 0 R +/Pg 17 0 R +/S /Span +>> +endobj +442 0 obj +<< +/K 558 +/P 1262 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +443 0 obj +<< +/C /A4 +/K 559 +/P 1263 0 R +/Pg 17 0 R +/S /Span +>> +endobj +444 0 obj +<< +/C /A4 +/K 560 +/P 1263 0 R +/Pg 17 0 R +/S /Span +>> +endobj +445 0 obj +<< +/K 561 +/P 1264 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +446 0 obj +<< +/C /A4 +/K 562 +/P 1265 0 R +/Pg 17 0 R +/S /Span +>> +endobj +447 0 obj +<< +/C /A4 +/K 563 +/P 1265 0 R +/Pg 17 0 R +/S /Span +>> +endobj +448 0 obj +<< +/K 564 +/P 1266 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +449 0 obj +<< +/C /A4 +/K 565 +/P 1267 0 R +/Pg 17 0 R +/S /Span +>> +endobj +450 0 obj +<< +/C /A4 +/K 566 +/P 1267 0 R +/Pg 17 0 R +/S /Span +>> +endobj +451 0 obj +<< +/K [567 568] +/P 1268 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +452 0 obj +<< +/C /Pa13 +/K [569 453 0 R 571] +/P 1269 0 R +/Pg 17 0 R +/S /Tab._Versal_bold_sch +>> +endobj +453 0 obj +<< +/ActualText +/K 570 +/P 452 0 R +/Pg 17 0 R +/S /Span +>> +endobj +454 0 obj +<< +/C /A4 +/K 572 +/P 1270 0 R +/Pg 17 0 R +/S /Span +>> +endobj +455 0 obj +<< +/C /A4 +/K 573 +/P 1270 0 R +/Pg 17 0 R +/S /Span +>> +endobj +456 0 obj +<< +/K 574 +/P 1271 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +457 0 obj +<< +/C /A4 +/K 575 +/P 1272 0 R +/Pg 17 0 R +/S /Span +>> +endobj +458 0 obj +<< +/C /A4 +/K 576 +/P 1272 0 R +/Pg 17 0 R +/S /Span +>> +endobj +459 0 obj +<< +/K 577 +/P 1273 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +460 0 obj +<< +/C /Pa10 +/K 578 +/P 194 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +461 0 obj +<< +/C /Pa3 +/K [579 580 581 462 0 R 583 584 585 586 587] +/P 191 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +462 0 obj +<< +/ActualText +/K 582 +/P 461 0 R +/Pg 18 0 R +/S /Span +>> +endobj +463 0 obj +<< +/C /Pa3 +/K [588 589 590 591 592 593] +/P 191 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +464 0 obj +<< +/C /Pa13 +/K 594 +/P 1274 0 R +/Pg 18 0 R +/S /Tab._Versal_bold_wei +>> +endobj +465 0 obj +<< +/C /Pa13 +/K 595 +/P 1275 0 R +/Pg 18 0 R +/S /Tab._Versal_bold_wei +>> +endobj +466 0 obj +<< +/C /A4 +/K 596 +/P 1276 0 R +/Pg 18 0 R +/S /Span +>> +endobj +467 0 obj +<< +/C /A4 +/K 597 +/P 1276 0 R +/Pg 18 0 R +/S /Span +>> +endobj +468 0 obj +<< +/K [598 599] +/P 1277 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +469 0 obj +<< +/C /A4 +/K 600 +/P 1278 0 R +/Pg 18 0 R +/S /Span +>> +endobj +470 0 obj +<< +/C /A4 +/K 601 +/P 1278 0 R +/Pg 18 0 R +/S /Span +>> +endobj +471 0 obj +<< +/K 602 +/P 1279 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +472 0 obj +<< +/C /A4 +/K 603 +/P 1280 0 R +/Pg 18 0 R +/S /Span +>> +endobj +473 0 obj +<< +/C /A4 +/K 604 +/P 1280 0 R +/Pg 18 0 R +/S /Span +>> +endobj +474 0 obj +<< +/K [605 606] +/P 1281 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +475 0 obj +<< +/C /A4 +/K 607 +/P 1282 0 R +/Pg 18 0 R +/S /Span +>> +endobj +476 0 obj +<< +/C /A4 +/K 608 +/P 1282 0 R +/Pg 18 0 R +/S /Span +>> +endobj +477 0 obj +<< +/K 609 +/P 1283 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +478 0 obj +<< +/C /A4 +/K 610 +/P 1284 0 R +/Pg 18 0 R +/S /Span +>> +endobj +479 0 obj +<< +/C /A4 +/K 611 +/P 1284 0 R +/Pg 18 0 R +/S /Span +>> +endobj +480 0 obj +<< +/K 612 +/P 1285 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +481 0 obj +<< +/C /A4 +/K 613 +/P 1286 0 R +/Pg 18 0 R +/S /Span +>> +endobj +482 0 obj +<< +/C /A4 +/K 614 +/P 1286 0 R +/Pg 18 0 R +/S /Span +>> +endobj +483 0 obj +<< +/K 615 +/P 1287 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +484 0 obj +<< +/C /A4 +/K 616 +/P 1288 0 R +/Pg 18 0 R +/S /Span +>> +endobj +485 0 obj +<< +/C /A4 +/K 617 +/P 1288 0 R +/Pg 18 0 R +/S /Span +>> +endobj +486 0 obj +<< +/K 618 +/P 1289 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +487 0 obj +<< +/C /A4 +/K 619 +/P 1290 0 R +/Pg 18 0 R +/S /Span +>> +endobj +488 0 obj +<< +/C /A4 +/K 620 +/P 1290 0 R +/Pg 18 0 R +/S /Span +>> +endobj +489 0 obj +<< +/K 621 +/P 1291 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +490 0 obj +<< +/C /A4 +/K 622 +/P 1292 0 R +/Pg 18 0 R +/S /Span +>> +endobj +491 0 obj +<< +/C /A4 +/K 623 +/P 1292 0 R +/Pg 18 0 R +/S /Span +>> +endobj +492 0 obj +<< +/K 624 +/P 1293 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +493 0 obj +<< +/C /A4 +/K 625 +/P 1294 0 R +/Pg 18 0 R +/S /Span +>> +endobj +494 0 obj +<< +/C /A4 +/K 626 +/P 1294 0 R +/Pg 18 0 R +/S /Span +>> +endobj +495 0 obj +<< +/K 627 +/P 1295 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +496 0 obj +<< +/C /A4 +/K 628 +/P 1296 0 R +/Pg 18 0 R +/S /Span +>> +endobj +497 0 obj +<< +/C /A4 +/K 629 +/P 1296 0 R +/Pg 18 0 R +/S /Span +>> +endobj +498 0 obj +<< +/K [630 631] +/P 1297 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +499 0 obj +<< +/C /A4 +/K 632 +/P 1298 0 R +/Pg 18 0 R +/S /Span +>> +endobj +500 0 obj +<< +/C /A4 +/K 633 +/P 1298 0 R +/Pg 18 0 R +/S /Span +>> +endobj +501 0 obj +<< +/K 634 +/P 1299 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +502 0 obj +<< +/C /A4 +/K 635 +/P 1300 0 R +/Pg 18 0 R +/S /Span +>> +endobj +503 0 obj +<< +/C /A4 +/K 636 +/P 1300 0 R +/Pg 18 0 R +/S /Span +>> +endobj +504 0 obj +<< +/K [637 638] +/P 1301 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +505 0 obj +<< +/C /A4 +/K 639 +/P 1302 0 R +/Pg 18 0 R +/S /Span +>> +endobj +506 0 obj +<< +/C /A4 +/K 640 +/P 1302 0 R +/Pg 18 0 R +/S /Span +>> +endobj +507 0 obj +<< +/K 641 +/P 1303 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +508 0 obj +<< +/C /A4 +/K 642 +/P 1304 0 R +/Pg 18 0 R +/S /Span +>> +endobj +509 0 obj +<< +/C /A4 +/K 643 +/P 1304 0 R +/Pg 18 0 R +/S /Span +>> +endobj +510 0 obj +<< +/K 644 +/P 1305 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +511 0 obj +<< +/C /A4 +/K 645 +/P 1306 0 R +/Pg 18 0 R +/S /Span +>> +endobj +512 0 obj +<< +/C /A4 +/K 646 +/P 1306 0 R +/Pg 18 0 R +/S /Span +>> +endobj +513 0 obj +<< +/K 647 +/P 1307 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +514 0 obj +<< +/C /A4 +/K 648 +/P 1308 0 R +/Pg 18 0 R +/S /Span +>> +endobj +515 0 obj +<< +/C /A4 +/K 649 +/P 1308 0 R +/Pg 18 0 R +/S /Span +>> +endobj +516 0 obj +<< +/K 650 +/P 1309 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +517 0 obj +<< +/C /A4 +/K 651 +/P 1310 0 R +/Pg 18 0 R +/S /Span +>> +endobj +518 0 obj +<< +/C /A4 +/K 652 +/P 1310 0 R +/Pg 18 0 R +/S /Span +>> +endobj +519 0 obj +<< +/K 653 +/P 1311 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +520 0 obj +<< +/C /A4 +/K 654 +/P 1312 0 R +/Pg 18 0 R +/S /Span +>> +endobj +521 0 obj +<< +/C /A4 +/K 655 +/P 1312 0 R +/Pg 18 0 R +/S /Span +>> +endobj +522 0 obj +<< +/K [656 657] +/P 1313 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +523 0 obj +<< +/C /A4 +/K 658 +/P 1314 0 R +/Pg 18 0 R +/S /Span +>> +endobj +524 0 obj +<< +/C /A4 +/K 659 +/P 1314 0 R +/Pg 18 0 R +/S /Span +>> +endobj +525 0 obj +<< +/K 660 +/P 1315 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +526 0 obj +<< +/C /A4 +/K 661 +/P 1316 0 R +/Pg 18 0 R +/S /Span +>> +endobj +527 0 obj +<< +/C /A4 +/K 662 +/P 1316 0 R +/Pg 18 0 R +/S /Span +>> +endobj +528 0 obj +<< +/K 663 +/P 1317 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +529 0 obj +<< +/C /A4 +/K 664 +/P 1318 0 R +/Pg 18 0 R +/S /Span +>> +endobj +530 0 obj +<< +/C /A4 +/K 665 +/P 1318 0 R +/Pg 18 0 R +/S /Span +>> +endobj +531 0 obj +<< +/K 666 +/P 1319 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +532 0 obj +<< +/C /A4 +/K 667 +/P 1320 0 R +/Pg 18 0 R +/S /Span +>> +endobj +533 0 obj +<< +/C /A4 +/K 668 +/P 1320 0 R +/Pg 18 0 R +/S /Span +>> +endobj +534 0 obj +<< +/K 669 +/P 1321 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +535 0 obj +<< +/C /A4 +/K 670 +/P 1322 0 R +/Pg 18 0 R +/S /Span +>> +endobj +536 0 obj +<< +/C /A4 +/K 671 +/P 1322 0 R +/Pg 18 0 R +/S /Span +>> +endobj +537 0 obj +<< +/K 672 +/P 1323 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +538 0 obj +<< +/C /A4 +/K 673 +/P 1324 0 R +/Pg 18 0 R +/S /Span +>> +endobj +539 0 obj +<< +/C /A4 +/K 674 +/P 1324 0 R +/Pg 18 0 R +/S /Span +>> +endobj +540 0 obj +<< +/K 675 +/P 1325 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +541 0 obj +<< +/C /A4 +/K 676 +/P 1326 0 R +/Pg 18 0 R +/S /Span +>> +endobj +542 0 obj +<< +/C /A4 +/K 677 +/P 1326 0 R +/Pg 18 0 R +/S /Span +>> +endobj +543 0 obj +<< +/K 678 +/P 1327 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +544 0 obj +<< +/C /A4 +/K 679 +/P 1328 0 R +/Pg 18 0 R +/S /Span +>> +endobj +545 0 obj +<< +/C /A4 +/K 680 +/P 1328 0 R +/Pg 18 0 R +/S /Span +>> +endobj +546 0 obj +<< +/K 681 +/P 1329 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +547 0 obj +<< +/C /A4 +/K 682 +/P 1330 0 R +/Pg 18 0 R +/S /Span +>> +endobj +548 0 obj +<< +/C /A4 +/K 683 +/P 1330 0 R +/Pg 18 0 R +/S /Span +>> +endobj +549 0 obj +<< +/K 684 +/P 1331 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +550 0 obj +<< +/C /A4 +/K 685 +/P 1332 0 R +/Pg 18 0 R +/S /Span +>> +endobj +551 0 obj +<< +/C /A4 +/K 686 +/P 1332 0 R +/Pg 18 0 R +/S /Span +>> +endobj +552 0 obj +<< +/K 687 +/P 1333 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +553 0 obj +<< +/C /A4 +/K 688 +/P 1334 0 R +/Pg 18 0 R +/S /Span +>> +endobj +554 0 obj +<< +/C /A4 +/K 689 +/P 1334 0 R +/Pg 18 0 R +/S /Span +>> +endobj +555 0 obj +<< +/K 690 +/P 1335 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +556 0 obj +<< +/C /Pa3 +/K [691 692 693 694 695 696 697 698] +/P 191 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +557 0 obj +<< +/C /Pa3 +/K [699 700 701] +/P 191 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +558 0 obj +<< +/C /Pa3 +/K [702 559 0 R 704 560 0 R 706 707 708 709 710 561 0 R 712 713 714 715 562 0 R 717 +718 563 0 R 720 721 722 723] +/P 191 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +559 0 obj +<< +/ActualText +/K 703 +/P 558 0 R +/Pg 19 0 R +/S /Span +>> +endobj +560 0 obj +<< +/ActualText +/K 705 +/P 558 0 R +/Pg 19 0 R +/S /Span +>> +endobj +561 0 obj +<< +/ActualText +/K 711 +/P 558 0 R +/Pg 19 0 R +/S /Span +>> +endobj +562 0 obj +<< +/ActualText +/K 716 +/P 558 0 R +/Pg 19 0 R +/S /Span +>> +endobj +563 0 obj +<< +/ActualText +/K 719 +/P 558 0 R +/Pg 19 0 R +/S /Span +>> +endobj +564 0 obj +<< +/C /Pa3 +/K [724 565 0 R 726 566 0 R 728 729 730 731 732 733] +/P 191 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +565 0 obj +<< +/ActualText +/K 725 +/P 564 0 R +/Pg 19 0 R +/S /Span +>> +endobj +566 0 obj +<< +/ActualText +/K 727 +/P 564 0 R +/Pg 19 0 R +/S /Span +>> +endobj +567 0 obj +<< +/C /Pa10 +/K 734 +/P 191 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +568 0 obj +<< +/C /Pa3 +/K [735 736 737 569 0 R 739] +/P 191 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +569 0 obj +<< +/ActualText +/K 738 +/P 568 0 R +/Pg 19 0 R +/S /Span +>> +endobj +570 0 obj +<< +/C /Pa3 +/K [740 741 571 0 R 743 744 << +/MCID 748 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 749 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 750 +/Pg 20 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +571 0 obj +<< +/ActualText +/K 742 +/P 570 0 R +/Pg 19 0 R +/S /Span +>> +endobj +572 0 obj +<< +/C /Pa9 +/K [745 746 747] +/P 197 0 R +/Pg 19 0 R +/S /Einklinker-Text__rec +>> +endobj +573 0 obj +<< +/C /Pa3 +/K [751 752 574 0 R 754 575 0 R 756 757 758] +/P 191 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +574 0 obj +<< +/ActualText +/K 753 +/P 573 0 R +/Pg 20 0 R +/S /Span +>> +endobj +575 0 obj +<< +/ActualText +/K 755 +/P 573 0 R +/Pg 20 0 R +/S /Span +>> +endobj +576 0 obj +<< +/C /Pa10 +/K 759 +/P 191 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +577 0 obj +<< +/C /Pa2 +/K [760 761 762 763 578 0 R 765 766] +/P 191 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +578 0 obj +<< +/ActualText +/K 764 +/P 577 0 R +/Pg 20 0 R +/S /Span +>> +endobj +579 0 obj +<< +/C /Pa10 +/K 767 +/P 198 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +580 0 obj +<< +/C /Pa13 +/K 768 +/P 1336 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_wei +>> +endobj +581 0 obj +<< +/C /Pa13 +/K 769 +/P 1337 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_wei +>> +endobj +582 0 obj +<< +/C /Pa13 +/K 770 +/P 1338 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_sch +>> +endobj +583 0 obj +<< +/C /A4 +/K 771 +/P 1339 0 R +/Pg 20 0 R +/S /Span +>> +endobj +584 0 obj +<< +/C /A4 +/K 772 +/P 1339 0 R +/Pg 20 0 R +/S /Span +>> +endobj +585 0 obj +<< +/K [773 586 0 R 775] +/P 1340 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +586 0 obj +<< +/ActualText +/K 774 +/P 585 0 R +/Pg 20 0 R +/S /Span +>> +endobj +587 0 obj +<< +/C /A4 +/K 776 +/P 1341 0 R +/Pg 20 0 R +/S /Span +>> +endobj +588 0 obj +<< +/C /A4 +/K 777 +/P 1341 0 R +/Pg 20 0 R +/S /Span +>> +endobj +589 0 obj +<< +/K 778 +/P 1342 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +590 0 obj +<< +/C /A4 +/K 779 +/P 1343 0 R +/Pg 20 0 R +/S /Span +>> +endobj +591 0 obj +<< +/C /A4 +/K 780 +/P 1343 0 R +/Pg 20 0 R +/S /Span +>> +endobj +592 0 obj +<< +/K 781 +/P 1344 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +593 0 obj +<< +/C /A4 +/K 782 +/P 1345 0 R +/Pg 20 0 R +/S /Span +>> +endobj +594 0 obj +<< +/C /A4 +/K 783 +/P 1345 0 R +/Pg 20 0 R +/S /Span +>> +endobj +595 0 obj +<< +/K 784 +/P 1346 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +596 0 obj +<< +/C /A4 +/K 785 +/P 1347 0 R +/Pg 20 0 R +/S /Span +>> +endobj +597 0 obj +<< +/C /A4 +/K 786 +/P 1347 0 R +/Pg 20 0 R +/S /Span +>> +endobj +598 0 obj +<< +/K 787 +/P 1348 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +599 0 obj +<< +/C /A4 +/K 788 +/P 1349 0 R +/Pg 20 0 R +/S /Span +>> +endobj +600 0 obj +<< +/C /A4 +/K 789 +/P 1349 0 R +/Pg 20 0 R +/S /Span +>> +endobj +601 0 obj +<< +/K 790 +/P 1350 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +602 0 obj +<< +/C /A4 +/K 791 +/P 1351 0 R +/Pg 20 0 R +/S /Span +>> +endobj +603 0 obj +<< +/C /A4 +/K 792 +/P 1351 0 R +/Pg 20 0 R +/S /Span +>> +endobj +604 0 obj +<< +/K [793 794] +/P 1352 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +605 0 obj +<< +/C /A4 +/K 795 +/P 1353 0 R +/Pg 20 0 R +/S /Span +>> +endobj +606 0 obj +<< +/C /A4 +/K 796 +/P 1353 0 R +/Pg 20 0 R +/S /Span +>> +endobj +607 0 obj +<< +/K 797 +/P 1354 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +608 0 obj +<< +/C /A4 +/K 798 +/P 1355 0 R +/Pg 20 0 R +/S /Span +>> +endobj +609 0 obj +<< +/C /A4 +/K 799 +/P 1355 0 R +/Pg 20 0 R +/S /Span +>> +endobj +610 0 obj +<< +/K [800 801] +/P 1356 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +611 0 obj +<< +/C /A4 +/K 802 +/P 1357 0 R +/Pg 20 0 R +/S /Span +>> +endobj +612 0 obj +<< +/C /A4 +/K 803 +/P 1357 0 R +/Pg 20 0 R +/S /Span +>> +endobj +613 0 obj +<< +/K [804 805 806 807 808 809] +/P 1358 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +614 0 obj +<< +/C /A4 +/K 810 +/P 1359 0 R +/Pg 20 0 R +/S /Span +>> +endobj +615 0 obj +<< +/C /A4 +/K 811 +/P 1359 0 R +/Pg 20 0 R +/S /Span +>> +endobj +616 0 obj +<< +/K [812 813 814 815 816] +/P 1360 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +617 0 obj +<< +/C /Pa13 +/K [817 818] +/P 1361 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_sch +>> +endobj +618 0 obj +<< +/C /A4 +/K 819 +/P 1362 0 R +/Pg 20 0 R +/S /Span +>> +endobj +619 0 obj +<< +/C /A4 +/K 820 +/P 1362 0 R +/Pg 20 0 R +/S /Span +>> +endobj +620 0 obj +<< +/K [821 822 823] +/P 1363 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +621 0 obj +<< +/C /A4 +/K 824 +/P 1364 0 R +/Pg 20 0 R +/S /Span +>> +endobj +622 0 obj +<< +/C /A4 +/K 825 +/P 1364 0 R +/Pg 20 0 R +/S /Span +>> +endobj +623 0 obj +<< +/K [826 624 0 R 828] +/P 1365 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +624 0 obj +<< +/ActualText +/K 827 +/P 623 0 R +/Pg 20 0 R +/S /Span +>> +endobj +625 0 obj +<< +/C /A4 +/K 829 +/P 1366 0 R +/Pg 20 0 R +/S /Span +>> +endobj +626 0 obj +<< +/C /A4 +/K 830 +/P 1366 0 R +/Pg 20 0 R +/S /Span +>> +endobj +627 0 obj +<< +/C /A11 +/K 831 +/P 1367 0 R +/Pg 20 0 R +/S /Span +>> +endobj +628 0 obj +<< +/C /A4 +/K 832 +/P 1368 0 R +/Pg 20 0 R +/S /Span +>> +endobj +629 0 obj +<< +/C /A4 +/K 833 +/P 1368 0 R +/Pg 20 0 R +/S /Span +>> +endobj +630 0 obj +<< +/C /A11 +/K 834 +/P 1369 0 R +/Pg 20 0 R +/S /Span +>> +endobj +631 0 obj +<< +/C /Pa13 +/K 835 +/P 1370 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_sch +>> +endobj +632 0 obj +<< +/C /A4 +/K 836 +/P 1371 0 R +/Pg 20 0 R +/S /Span +>> +endobj +633 0 obj +<< +/C /A4 +/K 837 +/P 1371 0 R +/Pg 20 0 R +/S /Span +>> +endobj +634 0 obj +<< +/K 838 +/P 1372 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +635 0 obj +<< +/C /A4 +/K 839 +/P 1373 0 R +/Pg 20 0 R +/S /Span +>> +endobj +636 0 obj +<< +/C /A4 +/K 840 +/P 1373 0 R +/Pg 20 0 R +/S /Span +>> +endobj +637 0 obj +<< +/K 841 +/P 1374 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +638 0 obj +<< +/C /Pa13 +/K 842 +/P 1375 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_sch +>> +endobj +639 0 obj +<< +/C /A4 +/K 843 +/P 1376 0 R +/Pg 20 0 R +/S /Span +>> +endobj +640 0 obj +<< +/C /A4 +/K 844 +/P 1376 0 R +/Pg 20 0 R +/S /Span +>> +endobj +641 0 obj +<< +/K 845 +/P 1377 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +642 0 obj +<< +/C /A4 +/K 846 +/P 1378 0 R +/Pg 20 0 R +/S /Span +>> +endobj +643 0 obj +<< +/C /A4 +/K 847 +/P 1378 0 R +/Pg 20 0 R +/S /Span +>> +endobj +644 0 obj +<< +/K [848 645 0 R 850 851] +/P 1379 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +645 0 obj +<< +/ActualText +/K 849 +/P 644 0 R +/Pg 20 0 R +/S /Span +>> +endobj +646 0 obj +<< +/C /Pa3 +/K [852 647 0 R 854 648 0 R 856 857 858 859 649 0 R 861 862 863 864 865 866 867 +868 869 870 871] +/P 191 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +647 0 obj +<< +/ActualText +/K 853 +/P 646 0 R +/Pg 21 0 R +/S /Span +>> +endobj +648 0 obj +<< +/ActualText +/K 855 +/P 646 0 R +/Pg 21 0 R +/S /Span +>> +endobj +649 0 obj +<< +/ActualText +/K 860 +/P 646 0 R +/Pg 21 0 R +/S /Span +>> +endobj +650 0 obj +<< +/C /Pa10 +/K 872 +/P 200 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +651 0 obj +<< +/C /Pa13 +/K 873 +/P 1380 0 R +/Pg 21 0 R +/S /Tab._Versal_bold_wei +>> +endobj +652 0 obj +<< +/C /Pa13 +/K [874 653 0 R 876] +/P 1381 0 R +/Pg 21 0 R +/S /Tab._Versal_bold_wei +>> +endobj +653 0 obj +<< +/ActualText +/K 875 +/P 652 0 R +/Pg 21 0 R +/S /Span +>> +endobj +654 0 obj +<< +/C /Pa13 +/K [877 655 0 R 879] +/P 1382 0 R +/Pg 21 0 R +/S /Tab._Versal_bold_wei +>> +endobj +655 0 obj +<< +/ActualText +/K 878 +/P 654 0 R +/Pg 21 0 R +/S /Span +>> +endobj +656 0 obj +<< +/C /Pa13 +/K [880 657 0 R 882 883 658 0 R 885] +/P 1383 0 R +/Pg 21 0 R +/S /Tab._Versal_bold_sch +>> +endobj +657 0 obj +<< +/ActualText +/K 881 +/P 656 0 R +/Pg 21 0 R +/S /Span +>> +endobj +658 0 obj +<< +/ActualText +/K 884 +/P 656 0 R +/Pg 21 0 R +/S /Span +>> +endobj +659 0 obj +<< +/C /A4 +/K 886 +/P 1384 0 R +/Pg 21 0 R +/S /Span +>> +endobj +660 0 obj +<< +/C /A4 +/K 887 +/P 1384 0 R +/Pg 21 0 R +/S /Span +>> +endobj +661 0 obj +<< +/K [888 889 890 891 892 893] +/P 1385 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +662 0 obj +<< +/C /A4 +/K 894 +/P 1386 0 R +/Pg 21 0 R +/S /Span +>> +endobj +663 0 obj +<< +/C /A4 +/K 895 +/P 1386 0 R +/Pg 21 0 R +/S /Span +>> +endobj +664 0 obj +<< +/K [896 897 898 899] +/P 1387 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +665 0 obj +<< +/C /A4 +/K 900 +/P 1388 0 R +/Pg 21 0 R +/S /Span +>> +endobj +666 0 obj +<< +/C /A4 +/K 901 +/P 1388 0 R +/Pg 21 0 R +/S /Span +>> +endobj +667 0 obj +<< +/K [902 903 904 905 906] +/P 1389 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +668 0 obj +<< +/C /A4 +/K 907 +/P 1390 0 R +/Pg 21 0 R +/S /Span +>> +endobj +669 0 obj +<< +/C /A4 +/K 908 +/P 1390 0 R +/Pg 21 0 R +/S /Span +>> +endobj +670 0 obj +<< +/K [909 671 0 R 911 912 672 0 R 914 915 916] +/P 1391 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +671 0 obj +<< +/ActualText +/K 910 +/P 670 0 R +/Pg 21 0 R +/S /Span +>> +endobj +672 0 obj +<< +/ActualText +/K 913 +/P 670 0 R +/Pg 21 0 R +/S /Span +>> +endobj +673 0 obj +<< +/C /A4 +/K 917 +/P 1392 0 R +/Pg 21 0 R +/S /Span +>> +endobj +674 0 obj +<< +/C /A4 +/K 918 +/P 1392 0 R +/Pg 21 0 R +/S /Span +>> +endobj +675 0 obj +<< +/K [919 920 676 0 R 922] +/P 1393 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +676 0 obj +<< +/ActualText +/K 921 +/P 675 0 R +/Pg 21 0 R +/S /Span +>> +endobj +677 0 obj +<< +/C /A4 +/K 923 +/P 1394 0 R +/Pg 21 0 R +/S /Span +>> +endobj +678 0 obj +<< +/C /A4 +/K 924 +/P 1394 0 R +/Pg 21 0 R +/S /Span +>> +endobj +679 0 obj +<< +/K [925 926 927] +/P 1395 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +680 0 obj +<< +/C /A4 +/K 928 +/P 1396 0 R +/Pg 21 0 R +/S /Span +>> +endobj +681 0 obj +<< +/C /A4 +/K 929 +/P 1396 0 R +/Pg 21 0 R +/S /Span +>> +endobj +682 0 obj +<< +/K [930 931] +/P 1397 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +683 0 obj +<< +/C /A4 +/K 932 +/P 1398 0 R +/Pg 21 0 R +/S /Span +>> +endobj +684 0 obj +<< +/C /A4 +/K 933 +/P 1398 0 R +/Pg 21 0 R +/S /Span +>> +endobj +685 0 obj +<< +/K 934 +/P 1399 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +686 0 obj +<< +/C /A4 +/K 935 +/P 1400 0 R +/Pg 21 0 R +/S /Span +>> +endobj +687 0 obj +<< +/C /A4 +/K 936 +/P 1400 0 R +/Pg 21 0 R +/S /Span +>> +endobj +688 0 obj +<< +/K 937 +/P 1401 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +689 0 obj +<< +/C /A4 +/K 938 +/P 1402 0 R +/Pg 21 0 R +/S /Span +>> +endobj +690 0 obj +<< +/C /A4 +/K 939 +/P 1402 0 R +/Pg 21 0 R +/S /Span +>> +endobj +691 0 obj +<< +/K [940 692 0 R 942] +/P 1403 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +692 0 obj +<< +/ActualText +/K 941 +/P 691 0 R +/Pg 21 0 R +/S /Span +>> +endobj +693 0 obj +<< +/C /A4 +/K 943 +/P 1404 0 R +/Pg 21 0 R +/S /Span +>> +endobj +694 0 obj +<< +/C /A4 +/K 944 +/P 1404 0 R +/Pg 21 0 R +/S /Span +>> +endobj +695 0 obj +<< +/K [945 696 0 R 947] +/P 1405 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +696 0 obj +<< +/ActualText +/K 946 +/P 695 0 R +/Pg 21 0 R +/S /Span +>> +endobj +697 0 obj +<< +/C /A4 +/K 948 +/P 1406 0 R +/Pg 21 0 R +/S /Span +>> +endobj +698 0 obj +<< +/C /A4 +/K 949 +/P 1406 0 R +/Pg 21 0 R +/S /Span +>> +endobj +699 0 obj +<< +/K [950 700 0 R 952 953 954 701 0 R 956 957 958 959] +/P 1407 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +700 0 obj +<< +/ActualText +/K 951 +/P 699 0 R +/Pg 21 0 R +/S /Span +>> +endobj +701 0 obj +<< +/ActualText +/K 955 +/P 699 0 R +/Pg 21 0 R +/S /Span +>> +endobj +702 0 obj +<< +/C /A4 +/K 960 +/P 1408 0 R +/Pg 21 0 R +/S /Span +>> +endobj +703 0 obj +<< +/C /A4 +/K 961 +/P 1408 0 R +/Pg 21 0 R +/S /Span +>> +endobj +704 0 obj +<< +/K 962 +/P 1409 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +705 0 obj +<< +/C /A4 +/K 963 +/P 1410 0 R +/Pg 21 0 R +/S /Span +>> +endobj +706 0 obj +<< +/C /A4 +/K 964 +/P 1410 0 R +/Pg 21 0 R +/S /Span +>> +endobj +707 0 obj +<< +/K 965 +/P 1411 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +708 0 obj +<< +/C /A4 +/K 966 +/P 1412 0 R +/Pg 21 0 R +/S /Span +>> +endobj +709 0 obj +<< +/C /A4 +/K 967 +/P 1412 0 R +/Pg 21 0 R +/S /Span +>> +endobj +710 0 obj +<< +/K [968 969] +/P 1413 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +711 0 obj +<< +/C /A4 +/K 970 +/P 1414 0 R +/Pg 21 0 R +/S /Span +>> +endobj +712 0 obj +<< +/C /A4 +/K 971 +/P 1414 0 R +/Pg 21 0 R +/S /Span +>> +endobj +713 0 obj +<< +/K 972 +/P 1415 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +714 0 obj +<< +/C /A4 +/K 973 +/P 1416 0 R +/Pg 21 0 R +/S /Span +>> +endobj +715 0 obj +<< +/C /A4 +/K 974 +/P 1416 0 R +/Pg 21 0 R +/S /Span +>> +endobj +716 0 obj +<< +/K [975 976 717 0 R 978] +/P 1417 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +717 0 obj +<< +/ActualText +/K 977 +/P 716 0 R +/Pg 21 0 R +/S /Span +>> +endobj +718 0 obj +<< +/C /A4 +/K 979 +/P 1418 0 R +/Pg 21 0 R +/S /Span +>> +endobj +719 0 obj +<< +/C /A4 +/K 980 +/P 1418 0 R +/Pg 21 0 R +/S /Span +>> +endobj +720 0 obj +<< +/K [981 721 0 R 983] +/P 1419 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +721 0 obj +<< +/ActualText +/K 982 +/P 720 0 R +/Pg 21 0 R +/S /Span +>> +endobj +722 0 obj +<< +/C /A4 +/K 984 +/P 1420 0 R +/Pg 21 0 R +/S /Span +>> +endobj +723 0 obj +<< +/C /A4 +/K 985 +/P 1420 0 R +/Pg 21 0 R +/S /Span +>> +endobj +724 0 obj +<< +/K [986 725 0 R 988] +/P 1421 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +725 0 obj +<< +/ActualText +/K 987 +/P 724 0 R +/Pg 21 0 R +/S /Span +>> +endobj +726 0 obj +<< +/C /A4 +/K 989 +/P 1422 0 R +/Pg 21 0 R +/S /Span +>> +endobj +727 0 obj +<< +/C /A4 +/K 990 +/P 1422 0 R +/Pg 21 0 R +/S /Span +>> +endobj +728 0 obj +<< +/K [991 992] +/P 1423 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +729 0 obj +<< +/C /A4 +/K 993 +/P 1424 0 R +/Pg 21 0 R +/S /Span +>> +endobj +730 0 obj +<< +/C /A4 +/K 994 +/P 1424 0 R +/Pg 21 0 R +/S /Span +>> +endobj +731 0 obj +<< +/K [995 732 0 R 997] +/P 1425 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +732 0 obj +<< +/ActualText +/K 996 +/P 731 0 R +/Pg 21 0 R +/S /Span +>> +endobj +733 0 obj +<< +/C /Pa3 +/K [998 999 1000 1001 1002 734 0 R 1004 1005 1006 1007 1008] +/P 191 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +734 0 obj +<< +/ActualText +/K 1003 +/P 733 0 R +/Pg 22 0 R +/S /Span +>> +endobj +735 0 obj +<< +/C /Pa1 +/K 1009 +/P 191 0 R +/Pg 22 0 R +/S /Zwischenhead_1 +>> +endobj +736 0 obj +<< +/C /Pa2 +/K [1010 737 0 R 1012 1013 1014 738 0 R 1016 1017 1018 1019 1020 1021] +/P 191 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +737 0 obj +<< +/ActualText +/K 1011 +/P 736 0 R +/Pg 22 0 R +/S /Span +>> +endobj +738 0 obj +<< +/ActualText +/K 1015 +/P 736 0 R +/Pg 22 0 R +/S /Span +>> +endobj +739 0 obj +<< +/C /Pa3 +/K [1022 740 0 R 1024 1025 1026 1027 1028 1029 1030 1031 741 0 R 1033] +/P 191 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +740 0 obj +<< +/ActualText +/K 1023 +/P 739 0 R +/Pg 22 0 R +/S /Span +>> +endobj +741 0 obj +<< +/ActualText +/K 1032 +/P 739 0 R +/Pg 22 0 R +/S /Span +>> +endobj +742 0 obj +<< +/C /Pa10 +/K 1034 +/P 191 0 R +/Pg 22 0 R +/S /Zwischenhead_2 +>> +endobj +743 0 obj +<< +/C /Pa2 +/K [1035 1036 1037 744 0 R 1039 1040] +/P 191 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +744 0 obj +<< +/ActualText +/K 1038 +/P 743 0 R +/Pg 22 0 R +/S /Span +>> +endobj +745 0 obj +<< +/C /Pa3 +/K [1041 1042 1043 1044 1045 746 0 R 1047 1048] +/P 191 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +746 0 obj +<< +/ActualText +/K 1046 +/P 745 0 R +/Pg 22 0 R +/S /Span +>> +endobj +747 0 obj +<< +/C /Pa3 +/K [1049 748 0 R 1051 1052 749 0 R 1054 1055 1056 1057 750 0 R 1059 1060 751 0 R 1062 1063 1064] +/P 191 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +748 0 obj +<< +/ActualText +/K 1050 +/P 747 0 R +/Pg 23 0 R +/S /Span +>> +endobj +749 0 obj +<< +/ActualText +/K 1053 +/P 747 0 R +/Pg 23 0 R +/S /Span +>> +endobj +750 0 obj +<< +/ActualText +/K 1058 +/P 747 0 R +/Pg 23 0 R +/S /Span +>> +endobj +751 0 obj +<< +/ActualText +/K 1061 +/P 747 0 R +/Pg 23 0 R +/S /Span +>> +endobj +752 0 obj +<< +/C /Pa3 +/K [1065 753 0 R 1067 754 0 R 1069 1070 755 0 R 1072 756 0 R 1074 1075 1076 757 0 R 1078 1079 1080 +758 0 R 1082 1083] +/P 191 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +753 0 obj +<< +/ActualText +/K 1066 +/P 752 0 R +/Pg 23 0 R +/S /Span +>> +endobj +754 0 obj +<< +/ActualText +/K 1068 +/P 752 0 R +/Pg 23 0 R +/S /Span +>> +endobj +755 0 obj +<< +/ActualText +/K 1071 +/P 752 0 R +/Pg 23 0 R +/S /Span +>> +endobj +756 0 obj +<< +/ActualText +/K 1073 +/P 752 0 R +/Pg 23 0 R +/S /Span +>> +endobj +757 0 obj +<< +/ActualText +/K 1077 +/P 752 0 R +/Pg 23 0 R +/S /Span +>> +endobj +758 0 obj +<< +/ActualText +/K 1081 +/P 752 0 R +/Pg 23 0 R +/S /Span +>> +endobj +759 0 obj +<< +/C /Pa3 +/K [1084 1085 760 0 R 1087 1088 1089 1090] +/P 191 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +760 0 obj +<< +/ActualText +/K 1086 +/P 759 0 R +/Pg 23 0 R +/S /Span +>> +endobj +761 0 obj +<< +/C /Pa3 +/K 1091 +/P 191 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +762 0 obj +<< +/C /A4 +/K 1092 +/P 1426 0 R +/Pg 23 0 R +/S /Span +>> +endobj +763 0 obj +<< +/C /A4 +/K 1093 +/P 1426 0 R +/Pg 23 0 R +/S /Span +>> +endobj +764 0 obj +<< +/K [1094 1095 765 0 R 1097 1098 766 0 R 1100 1101] +/P 1427 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +765 0 obj +<< +/ActualText +/K 1096 +/P 764 0 R +/Pg 23 0 R +/S /Span +>> +endobj +766 0 obj +<< +/ActualText +/K 1099 +/P 764 0 R +/Pg 23 0 R +/S /Span +>> +endobj +767 0 obj +<< +/C /A6 +/K 1102 +/P 768 0 R +/Pg 23 0 R +/S /Span +>> +endobj +768 0 obj +<< +/C /Pa8 +/K [767 0 R 1103 769 0 R 1105 1106 1107 1108 1109 1110 1111 1112] +/P 191 0 R +/Pg 23 0 R +/S /Einzug_mit_Klotz__le +>> +endobj +769 0 obj +<< +/ActualText +/K 1104 +/P 768 0 R +/Pg 23 0 R +/S /Span +>> +endobj +770 0 obj +<< +/C /Pa9 +/K [1113 1114 1115 771 0 R 1117] +/P 202 0 R +/Pg 23 0 R +/S /Einklinker-Text__rec +>> +endobj +771 0 obj +<< +/ActualText +/K 1116 +/P 770 0 R +/Pg 23 0 R +/S /Span +>> +endobj +772 0 obj +<< +/C /Pa3 +/K [1118 1119 1120 1121 1122 1123 773 0 R 1125] +/P 191 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +773 0 obj +<< +/ActualText +/K 1124 +/P 772 0 R +/Pg 24 0 R +/S /Span +>> +endobj +774 0 obj +<< +/C /Pa3 +/K [1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137] +/P 191 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +775 0 obj +<< +/C /Pa3 +/K [1138 776 0 R 1140 1141 1142 777 0 R 1144 778 0 R 1146] +/P 191 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +776 0 obj +<< +/ActualText +/K 1139 +/P 775 0 R +/Pg 24 0 R +/S /Span +>> +endobj +777 0 obj +<< +/ActualText +/K 1143 +/P 775 0 R +/Pg 24 0 R +/S /Span +>> +endobj +778 0 obj +<< +/ActualText +/K 1145 +/P 775 0 R +/Pg 24 0 R +/S /Span +>> +endobj +779 0 obj +<< +/C /Pa3 +/K [1147 780 0 R 1149 1150 1151 1152 781 0 R 1154 1155] +/P 191 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +780 0 obj +<< +/ActualText +/K 1148 +/P 779 0 R +/Pg 24 0 R +/S /Span +>> +endobj +781 0 obj +<< +/ActualText +/K 1153 +/P 779 0 R +/Pg 24 0 R +/S /Span +>> +endobj +782 0 obj +<< +/C /Pa10 +/K 1156 +/P 191 0 R +/Pg 24 0 R +/S /Zwischenhead_2 +>> +endobj +783 0 obj +<< +/C /Pa2 +/K [1157 784 0 R 1159 1160] +/P 191 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +784 0 obj +<< +/ActualText +/K 1158 +/P 783 0 R +/Pg 24 0 R +/S /Span +>> +endobj +785 0 obj +<< +/C /Pa15 +/K 1161 +/P 191 0 R +/Pg 24 0 R +/S /Zwischenhead_3 +>> +endobj +786 0 obj +<< +/C /Pa2 +/K [1162 1163 1164] +/P 191 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +787 0 obj +<< +/C /Pa3 +/K [1375 788 0 R 1377 1378 789 0 R 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389] +/P 191 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +788 0 obj +<< +/ActualText +/K 1376 +/P 787 0 R +/Pg 26 0 R +/S /Span +>> +endobj +789 0 obj +<< +/ActualText +/K 1379 +/P 787 0 R +/Pg 26 0 R +/S /Span +>> +endobj +790 0 obj +<< +/C /Pa3 +/K [1390 1391 1392 791 0 R 1394 1395 792 0 R 1397 1398 1399] +/P 191 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +791 0 obj +<< +/ActualText +/K 1393 +/P 790 0 R +/Pg 26 0 R +/S /Span +>> +endobj +792 0 obj +<< +/ActualText +/K 1396 +/P 790 0 R +/Pg 26 0 R +/S /Span +>> +endobj +793 0 obj +<< +/C /Pa3 +/K [1400 794 0 R 1402 795 0 R 1404 1405 1406 1407 1408 796 0 R 1410 1411 1412 1413 1414] +/P 191 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +794 0 obj +<< +/ActualText +/K 1401 +/P 793 0 R +/Pg 26 0 R +/S /Span +>> +endobj +795 0 obj +<< +/ActualText +/K 1403 +/P 793 0 R +/Pg 26 0 R +/S /Span +>> +endobj +796 0 obj +<< +/ActualText +/K 1409 +/P 793 0 R +/Pg 26 0 R +/S /Span +>> +endobj +797 0 obj +<< +/C /Pa3 +/K [1415 1416 1417 798 0 R 1419 1420 1421 1422 1423] +/P 191 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +798 0 obj +<< +/ActualText +/K 1418 +/P 797 0 R +/Pg 26 0 R +/S /Span +>> +endobj +799 0 obj +<< +/C /Pa3 +/K [1424 1425 1426 1427 1428 1429 1430] +/P 191 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +800 0 obj +<< +/C /Pa15 +/K 1431 +/P 191 0 R +/Pg 27 0 R +/S /Zwischenhead_3 +>> +endobj +801 0 obj +<< +/C /Pa2 +/K [1432 802 0 R 1434 1435 1436 1437 1438 1439 1440 1441 1442 803 0 R 1444 1445 1446] +/P 191 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +802 0 obj +<< +/ActualText +/K 1433 +/P 801 0 R +/Pg 27 0 R +/S /Span +>> +endobj +803 0 obj +<< +/ActualText +/K 1443 +/P 801 0 R +/Pg 27 0 R +/S /Span +>> +endobj +804 0 obj +<< +/C /Pa3 +/K [1447 805 0 R 1449 1450 1451 1452 1453] +/P 191 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +805 0 obj +<< +/ActualText +/K 1448 +/P 804 0 R +/Pg 27 0 R +/S /Span +>> +endobj +806 0 obj +<< +/C /Pa3 +/K [1454 1455 1456 1457 1458] +/P 191 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +807 0 obj +<< +/C /Pa10 +/K 1459 +/P 191 0 R +/Pg 27 0 R +/S /Zwischenhead_2 +>> +endobj +808 0 obj +<< +/C /Pa2 +/K [1460 809 0 R 1462] +/P 191 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +809 0 obj +<< +/ActualText +/K 1461 +/P 808 0 R +/Pg 27 0 R +/S /Span +>> +endobj +810 0 obj +<< +/C /A4 +/K 1463 +/P 1428 0 R +/Pg 27 0 R +/S /Span +>> +endobj +811 0 obj +<< +/C /A4 +/K 1464 +/P 1428 0 R +/Pg 27 0 R +/S /Span +>> +endobj +812 0 obj +<< +/K [1465 1466] +/P 1429 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +813 0 obj +<< +/C /A6 +/K 1467 +/P 814 0 R +/Pg 27 0 R +/S /Span +>> +endobj +814 0 obj +<< +/C /Pa7 +/K [813 0 R 1468 1469 815 0 R 1471 816 0 R 1473 1474 817 0 R 1476 1477] +/P 191 0 R +/Pg 27 0 R +/S /Einzug_mit_Klotz +>> +endobj +815 0 obj +<< +/ActualText +/K 1470 +/P 814 0 R +/Pg 27 0 R +/S /Span +>> +endobj +816 0 obj +<< +/ActualText +/K 1472 +/P 814 0 R +/Pg 27 0 R +/S /Span +>> +endobj +817 0 obj +<< +/ActualText +/K 1475 +/P 814 0 R +/Pg 27 0 R +/S /Span +>> +endobj +818 0 obj +<< +/C /A6 +/K 1478 +/P 819 0 R +/Pg 27 0 R +/S /Span +>> +endobj +819 0 obj +<< +/C /Pa7 +/K [818 0 R 1479] +/P 191 0 R +/Pg 27 0 R +/S /Einzug_mit_Klotz +>> +endobj +820 0 obj +<< +/C /A6 +/K 1480 +/P 821 0 R +/Pg 27 0 R +/S /Span +>> +endobj +821 0 obj +<< +/C /Pa7 +/K [820 0 R 1481 1482] +/P 191 0 R +/Pg 27 0 R +/S /Einzug_mit_Klotz +>> +endobj +822 0 obj +<< +/C /A6 +/K 1483 +/P 823 0 R +/Pg 27 0 R +/S /Span +>> +endobj +823 0 obj +<< +/C /Pa7 +/K [822 0 R 1484] +/P 191 0 R +/Pg 27 0 R +/S /Einzug_mit_Klotz +>> +endobj +824 0 obj +<< +/C /A6 +/K 1485 +/P 825 0 R +/Pg 27 0 R +/S /Span +>> +endobj +825 0 obj +<< +/C /Pa8 +/K [824 0 R 1486 1487 1488] +/P 191 0 R +/Pg 27 0 R +/S /Einzug_mit_Klotz__le +>> +endobj +826 0 obj +<< +/C /Pa3 +/K [1489 1490 << +/MCID 1491 +/Pg 28 0 R +/Type /MCR +>> << +/MCID 1492 +/Pg 28 0 R +/Type /MCR +>> << +/MCID 1493 +/Pg 28 0 R +/Type /MCR +>> << +/MCID 1494 +/Pg 28 0 R +/Type /MCR +>> << +/MCID 1495 +/Pg 28 0 R +/Type /MCR +>> 827 0 R << +/MCID 1497 +/Pg 28 0 R +/Type /MCR +>> << +/MCID 1498 +/Pg 28 0 R +/Type /MCR +>> << +/MCID 1499 +/Pg 28 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +827 0 obj +<< +/ActualText +/K 1496 +/P 826 0 R +/Pg 28 0 R +/S /Span +>> +endobj +828 0 obj +<< +/C /Pa10 +/K 1500 +/P 191 0 R +/Pg 28 0 R +/S /Zwischenhead_2 +>> +endobj +829 0 obj +<< +/C /Pa2 +/K [1501 1502 1503 1504] +/P 191 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +830 0 obj +<< +/C /A4 +/K 1505 +/P 1430 0 R +/Pg 28 0 R +/S /Span +>> +endobj +831 0 obj +<< +/C /A4 +/K 1506 +/P 1430 0 R +/Pg 28 0 R +/S /Span +>> +endobj +832 0 obj +<< +/K [1507 1508] +/P 1431 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +833 0 obj +<< +/C /A6 +/K 1509 +/P 834 0 R +/Pg 28 0 R +/S /Span +>> +endobj +834 0 obj +<< +/C /Pa8 +/K [833 0 R 1510] +/P 191 0 R +/Pg 28 0 R +/S /Einzug_mit_Klotz__le +>> +endobj +835 0 obj +<< +/C /Pa3 +/K [1511 1512 1513 1514 1515 1516 1517] +/P 191 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +836 0 obj +<< +/C /Pa3 +/K [1518 1519 1520 1521 1522 1523 837 0 R 1525] +/P 191 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +837 0 obj +<< +/ActualText +/K 1524 +/P 836 0 R +/Pg 28 0 R +/S /Span +>> +endobj +838 0 obj +<< +/C /A4 +/K 1526 +/P 1432 0 R +/Pg 28 0 R +/S /Span +>> +endobj +839 0 obj +<< +/C /A4 +/K 1527 +/P 1432 0 R +/Pg 28 0 R +/S /Span +>> +endobj +840 0 obj +<< +/K [1528 1529] +/P 1433 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +841 0 obj +<< +/C /A6 +/K 1530 +/P 842 0 R +/Pg 28 0 R +/S /Span +>> +endobj +842 0 obj +<< +/C /Pa7 +/K [841 0 R 1531 1532] +/P 191 0 R +/Pg 28 0 R +/S /Einzug_mit_Klotz +>> +endobj +843 0 obj +<< +/C /A6 +/K 1533 +/P 844 0 R +/Pg 28 0 R +/S /Span +>> +endobj +844 0 obj +<< +/C /Pa7 +/K [843 0 R 1534] +/P 191 0 R +/Pg 28 0 R +/S /Einzug_mit_Klotz +>> +endobj +845 0 obj +<< +/C /A6 +/K 1535 +/P 846 0 R +/Pg 28 0 R +/S /Span +>> +endobj +846 0 obj +<< +/C /Pa7 +/K [845 0 R 1536 1537] +/P 191 0 R +/Pg 28 0 R +/S /Einzug_mit_Klotz +>> +endobj +847 0 obj +<< +/C /A6 +/K 1538 +/P 848 0 R +/Pg 28 0 R +/S /Span +>> +endobj +848 0 obj +<< +/C /Pa7 +/K [847 0 R 1539 1540] +/P 191 0 R +/Pg 28 0 R +/S /Einzug_mit_Klotz +>> +endobj +849 0 obj +<< +/C /A6 +/K 1541 +/P 850 0 R +/Pg 28 0 R +/S /Span +>> +endobj +850 0 obj +<< +/C /Pa8 +/K [849 0 R 1542] +/P 191 0 R +/Pg 28 0 R +/S /Einzug_mit_Klotz__le +>> +endobj +851 0 obj +<< +/C /Pa3 +/K [1543 1544 1545 << +/MCID 1546 +/Pg 29 0 R +/Type /MCR +>> << +/MCID 1547 +/Pg 29 0 R +/Type /MCR +>> << +/MCID 1548 +/Pg 29 0 R +/Type /MCR +>> << +/MCID 1549 +/Pg 29 0 R +/Type /MCR +>> 852 0 R << +/MCID 1551 +/Pg 29 0 R +/Type /MCR +>> << +/MCID 1552 +/Pg 29 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +852 0 obj +<< +/ActualText +/K 1550 +/P 851 0 R +/Pg 29 0 R +/S /Span +>> +endobj +853 0 obj +<< +/C /Pa10 +/K 1553 +/P 191 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +854 0 obj +<< +/C /Pa2 +/K [1554 1555 1556 1557 1558 1559 1560 855 0 R 1562 1563 1564] +/P 191 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +855 0 obj +<< +/ActualText +/K 1561 +/P 854 0 R +/Pg 29 0 R +/S /Span +>> +endobj +856 0 obj +<< +/C /Pa3 +/K [1565 1566 857 0 R 1568 1569 858 0 R 1571 1572 859 0 R 1574 1575 1576 860 0 R 1578] +/P 191 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +857 0 obj +<< +/ActualText +/K 1567 +/P 856 0 R +/Pg 29 0 R +/S /Span +>> +endobj +858 0 obj +<< +/ActualText +/K 1570 +/P 856 0 R +/Pg 29 0 R +/S /Span +>> +endobj +859 0 obj +<< +/ActualText +/K 1573 +/P 856 0 R +/Pg 29 0 R +/S /Span +>> +endobj +860 0 obj +<< +/ActualText +/K 1577 +/P 856 0 R +/Pg 29 0 R +/S /Span +>> +endobj +861 0 obj +<< +/C /Pa3 +/K [1579 862 0 R 1581 1582 863 0 R 1584 864 0 R 1586 1587 1588 865 0 R 1590 1591 1592 1593 866 0 R +1595 1596 1597] +/P 191 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +862 0 obj +<< +/ActualText +/K 1580 +/P 861 0 R +/Pg 29 0 R +/S /Span +>> +endobj +863 0 obj +<< +/ActualText +/K 1583 +/P 861 0 R +/Pg 29 0 R +/S /Span +>> +endobj +864 0 obj +<< +/ActualText +/K 1585 +/P 861 0 R +/Pg 29 0 R +/S /Span +>> +endobj +865 0 obj +<< +/ActualText +/K 1589 +/P 861 0 R +/Pg 29 0 R +/S /Span +>> +endobj +866 0 obj +<< +/ActualText +/K 1594 +/P 861 0 R +/Pg 29 0 R +/S /Span +>> +endobj +867 0 obj +<< +/C /Pa3 +/K [1598 868 0 R 1600 1601 << +/MCID 1602 +/Pg 30 0 R +/Type /MCR +>> 869 0 R << +/MCID 1604 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1605 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1606 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1713 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1714 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1715 +/Pg 31 0 R +/Type /MCR +>> 966 0 R << +/MCID 1717 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1718 +/Pg 31 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +868 0 obj +<< +/ActualText +/K 1599 +/P 867 0 R +/Pg 29 0 R +/S /Span +>> +endobj +869 0 obj +<< +/ActualText +/K 1603 +/P 867 0 R +/Pg 30 0 R +/S /Span +>> +endobj +870 0 obj +<< +/C /Pa10 +/K 1607 +/P 205 0 R +/Pg 30 0 R +/S /Zwischenhead_2 +>> +endobj +871 0 obj +<< +/C /Pa13 +/K [1608 872 0 R 1610] +/P 1434 0 R +/Pg 30 0 R +/S /Tab._Versal_bold_sch +>> +endobj +872 0 obj +<< +/ActualText +/K 1609 +/P 871 0 R +/Pg 30 0 R +/S /Span +>> +endobj +873 0 obj +<< +/C /A4 +/K 1611 +/P 1435 0 R +/Pg 30 0 R +/S /Span +>> +endobj +874 0 obj +<< +/C /A4 +/K 1612 +/P 1435 0 R +/Pg 30 0 R +/S /Span +>> +endobj +875 0 obj +<< +/K 1613 +/P 1436 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +876 0 obj +<< +/C /A4 +/K 1614 +/P 1437 0 R +/Pg 30 0 R +/S /Span +>> +endobj +877 0 obj +<< +/C /A4 +/K 1615 +/P 1437 0 R +/Pg 30 0 R +/S /Span +>> +endobj +878 0 obj +<< +/K 1616 +/P 1438 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +879 0 obj +<< +/C /A4 +/K 1617 +/P 1439 0 R +/Pg 30 0 R +/S /Span +>> +endobj +880 0 obj +<< +/C /A4 +/K 1618 +/P 1439 0 R +/Pg 30 0 R +/S /Span +>> +endobj +881 0 obj +<< +/K 1619 +/P 1440 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +882 0 obj +<< +/C /A4 +/K 1620 +/P 1441 0 R +/Pg 30 0 R +/S /Span +>> +endobj +883 0 obj +<< +/C /A4 +/K 1621 +/P 1441 0 R +/Pg 30 0 R +/S /Span +>> +endobj +884 0 obj +<< +/K 1622 +/P 1442 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +885 0 obj +<< +/C /A4 +/K 1623 +/P 1443 0 R +/Pg 30 0 R +/S /Span +>> +endobj +886 0 obj +<< +/C /A4 +/K 1624 +/P 1443 0 R +/Pg 30 0 R +/S /Span +>> +endobj +887 0 obj +<< +/K 1625 +/P 1444 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +888 0 obj +<< +/C /A4 +/K 1626 +/P 1445 0 R +/Pg 30 0 R +/S /Span +>> +endobj +889 0 obj +<< +/C /A4 +/K 1627 +/P 1445 0 R +/Pg 30 0 R +/S /Span +>> +endobj +890 0 obj +<< +/K 1628 +/P 1446 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +891 0 obj +<< +/C /A4 +/K 1629 +/P 1447 0 R +/Pg 30 0 R +/S /Span +>> +endobj +892 0 obj +<< +/C /A4 +/K 1630 +/P 1447 0 R +/Pg 30 0 R +/S /Span +>> +endobj +893 0 obj +<< +/K 1631 +/P 1448 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +894 0 obj +<< +/C /Pa13 +/K 1632 +/P 1449 0 R +/Pg 30 0 R +/S /Tab._Versal_bold_sch +>> +endobj +895 0 obj +<< +/C /A4 +/K 1633 +/P 1450 0 R +/Pg 30 0 R +/S /Span +>> +endobj +896 0 obj +<< +/C /A4 +/K 1634 +/P 1450 0 R +/Pg 30 0 R +/S /Span +>> +endobj +897 0 obj +<< +/K 1635 +/P 1451 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +898 0 obj +<< +/C /A4 +/K 1636 +/P 1452 0 R +/Pg 30 0 R +/S /Span +>> +endobj +899 0 obj +<< +/C /A4 +/K 1637 +/P 1452 0 R +/Pg 30 0 R +/S /Span +>> +endobj +900 0 obj +<< +/K 1638 +/P 1453 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +901 0 obj +<< +/C /A4 +/K 1639 +/P 1454 0 R +/Pg 30 0 R +/S /Span +>> +endobj +902 0 obj +<< +/C /A4 +/K 1640 +/P 1454 0 R +/Pg 30 0 R +/S /Span +>> +endobj +903 0 obj +<< +/K 1641 +/P 1455 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +904 0 obj +<< +/C /A4 +/K 1642 +/P 1456 0 R +/Pg 30 0 R +/S /Span +>> +endobj +905 0 obj +<< +/C /A4 +/K 1643 +/P 1456 0 R +/Pg 30 0 R +/S /Span +>> +endobj +906 0 obj +<< +/K 1644 +/P 1457 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +907 0 obj +<< +/C /Pa13 +/K 1645 +/P 1458 0 R +/Pg 30 0 R +/S /Tab._Versal_bold_sch +>> +endobj +908 0 obj +<< +/C /A4 +/K 1646 +/P 1459 0 R +/Pg 30 0 R +/S /Span +>> +endobj +909 0 obj +<< +/C /A4 +/K 1647 +/P 1459 0 R +/Pg 30 0 R +/S /Span +>> +endobj +910 0 obj +<< +/K 1648 +/P 1460 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +911 0 obj +<< +/C /A4 +/K 1649 +/P 1461 0 R +/Pg 30 0 R +/S /Span +>> +endobj +912 0 obj +<< +/C /A4 +/K 1650 +/P 1461 0 R +/Pg 30 0 R +/S /Span +>> +endobj +913 0 obj +<< +/K [1651 1652] +/P 1462 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +914 0 obj +<< +/C /A4 +/K 1653 +/P 1463 0 R +/Pg 30 0 R +/S /Span +>> +endobj +915 0 obj +<< +/C /A4 +/K 1654 +/P 1463 0 R +/Pg 30 0 R +/S /Span +>> +endobj +916 0 obj +<< +/K 1655 +/P 1464 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +917 0 obj +<< +/C /A4 +/K 1656 +/P 1465 0 R +/Pg 30 0 R +/S /Span +>> +endobj +918 0 obj +<< +/C /A4 +/K 1657 +/P 1465 0 R +/Pg 30 0 R +/S /Span +>> +endobj +919 0 obj +<< +/K [1658 1659 1660 920 0 R 1662] +/P 1466 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +920 0 obj +<< +/ActualText +/K 1661 +/P 919 0 R +/Pg 30 0 R +/S /Span +>> +endobj +921 0 obj +<< +/C /A4 +/K 1663 +/P 1467 0 R +/Pg 30 0 R +/S /Span +>> +endobj +922 0 obj +<< +/C /A4 +/K 1664 +/P 1467 0 R +/Pg 30 0 R +/S /Span +>> +endobj +923 0 obj +<< +/K [1665 1666 1667 1668] +/P 1468 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +924 0 obj +<< +/C /A4 +/K 1669 +/P 1469 0 R +/Pg 30 0 R +/S /Span +>> +endobj +925 0 obj +<< +/C /A4 +/K 1670 +/P 1469 0 R +/Pg 30 0 R +/S /Span +>> +endobj +926 0 obj +<< +/C /A11 +/K 1671 +/P 1470 0 R +/Pg 30 0 R +/S /Span +>> +endobj +927 0 obj +<< +/C /A4 +/K 1672 +/P 1471 0 R +/Pg 30 0 R +/S /Span +>> +endobj +928 0 obj +<< +/C /A4 +/K 1673 +/P 1471 0 R +/Pg 30 0 R +/S /Span +>> +endobj +929 0 obj +<< +/K 1674 +/P 1472 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +930 0 obj +<< +/C /Pa13 +/K 1675 +/P 1473 0 R +/Pg 30 0 R +/S /Tab._Versal_bold_sch +>> +endobj +931 0 obj +<< +/C /A4 +/K 1676 +/P 1474 0 R +/Pg 30 0 R +/S /Span +>> +endobj +932 0 obj +<< +/C /A4 +/K 1677 +/P 1474 0 R +/Pg 30 0 R +/S /Span +>> +endobj +933 0 obj +<< +/K 1678 +/P 1475 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +934 0 obj +<< +/C /A4 +/K 1679 +/P 1476 0 R +/Pg 30 0 R +/S /Span +>> +endobj +935 0 obj +<< +/C /A4 +/K 1680 +/P 1476 0 R +/Pg 30 0 R +/S /Span +>> +endobj +936 0 obj +<< +/K [1681 1682 1683] +/P 1477 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +937 0 obj +<< +/C /A4 +/K 1684 +/P 1478 0 R +/Pg 30 0 R +/S /Span +>> +endobj +938 0 obj +<< +/C /A4 +/K 1685 +/P 1478 0 R +/Pg 30 0 R +/S /Span +>> +endobj +939 0 obj +<< +/K 1686 +/P 1479 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +940 0 obj +<< +/C /A4 +/K 1687 +/P 1480 0 R +/Pg 30 0 R +/S /Span +>> +endobj +941 0 obj +<< +/C /A4 +/K 1688 +/P 1480 0 R +/Pg 30 0 R +/S /Span +>> +endobj +942 0 obj +<< +/K 1689 +/P 1481 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +943 0 obj +<< +/C /A4 +/K 1690 +/P 1482 0 R +/Pg 30 0 R +/S /Span +>> +endobj +944 0 obj +<< +/C /A4 +/K 1691 +/P 1482 0 R +/Pg 30 0 R +/S /Span +>> +endobj +945 0 obj +<< +/K 1692 +/P 1483 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +946 0 obj +<< +/C /A4 +/K 1693 +/P 1484 0 R +/Pg 30 0 R +/S /Span +>> +endobj +947 0 obj +<< +/C /A4 +/K 1694 +/P 1484 0 R +/Pg 30 0 R +/S /Span +>> +endobj +948 0 obj +<< +/K 1695 +/P 1485 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +949 0 obj +<< +/C /Pa13 +/K 1696 +/P 1486 0 R +/Pg 30 0 R +/S /Tab._Versal_bold_sch +>> +endobj +950 0 obj +<< +/C /A4 +/K 1697 +/P 1487 0 R +/Pg 30 0 R +/S /Span +>> +endobj +951 0 obj +<< +/C /A4 +/K 1698 +/P 1487 0 R +/Pg 30 0 R +/S /Span +>> +endobj +952 0 obj +<< +/K 1699 +/P 1488 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +953 0 obj +<< +/C /A4 +/K 1700 +/P 1489 0 R +/Pg 30 0 R +/S /Span +>> +endobj +954 0 obj +<< +/C /A4 +/K 1701 +/P 1489 0 R +/Pg 30 0 R +/S /Span +>> +endobj +955 0 obj +<< +/K 1702 +/P 1490 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +956 0 obj +<< +/C /A4 +/K 1703 +/P 1491 0 R +/Pg 30 0 R +/S /Span +>> +endobj +957 0 obj +<< +/C /A4 +/K 1704 +/P 1491 0 R +/Pg 30 0 R +/S /Span +>> +endobj +958 0 obj +<< +/K 1705 +/P 1492 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +959 0 obj +<< +/C /A4 +/K 1706 +/P 1493 0 R +/Pg 30 0 R +/S /Span +>> +endobj +960 0 obj +<< +/C /A4 +/K 1707 +/P 1493 0 R +/Pg 30 0 R +/S /Span +>> +endobj +961 0 obj +<< +/K 1708 +/P 1494 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +962 0 obj +<< +/C /A4 +/K 1709 +/P 1495 0 R +/Pg 30 0 R +/S /Span +>> +endobj +963 0 obj +<< +/C /A4 +/K 1710 +/P 1495 0 R +/Pg 30 0 R +/S /Span +>> +endobj +964 0 obj +<< +/K 1711 +/P 1496 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +965 0 obj +<< +/A << +/O /Layout +/LineHeight 7.5 +>> +/K 1712 +/P 207 0 R +/Pg 30 0 R +/S /Fu#C3#9Fzeile +>> +endobj +966 0 obj +<< +/ActualText +/K 1716 +/P 867 0 R +/Pg 31 0 R +/S /Span +>> +endobj +967 0 obj +<< +/C /Pa10 +/K 1719 +/P 191 0 R +/Pg 31 0 R +/S /Zwischenhead_2 +>> +endobj +968 0 obj +<< +/C /Pa2 +/K [1720 1721 1722 969 0 R 1724 1725 1726 970 0 R 1728 1729 1730] +/P 191 0 R +/Pg 31 0 R +/S /Lauftext_1._Abs +>> +endobj +969 0 obj +<< +/ActualText +/K 1723 +/P 968 0 R +/Pg 31 0 R +/S /Span +>> +endobj +970 0 obj +<< +/ActualText +/K 1727 +/P 968 0 R +/Pg 31 0 R +/S /Span +>> +endobj +971 0 obj +<< +/C /Pa3 +/K [1731 1732 972 0 R 1734 1735 973 0 R 1737 1738 1739 1740 974 0 R 1742 1743] +/P 191 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +972 0 obj +<< +/ActualText +/K 1733 +/P 971 0 R +/Pg 31 0 R +/S /Span +>> +endobj +973 0 obj +<< +/ActualText +/K 1736 +/P 971 0 R +/Pg 31 0 R +/S /Span +>> +endobj +974 0 obj +<< +/ActualText +/K 1741 +/P 971 0 R +/Pg 31 0 R +/S /Span +>> +endobj +975 0 obj +<< +/C /Pa3 +/K [1744 976 0 R 1746 1747 977 0 R 1749 1750 1751 978 0 R 1753 979 0 R 1755 1756 1757] +/P 191 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +976 0 obj +<< +/ActualText +/K 1745 +/P 975 0 R +/Pg 31 0 R +/S /Span +>> +endobj +977 0 obj +<< +/ActualText +/K 1748 +/P 975 0 R +/Pg 31 0 R +/S /Span +>> +endobj +978 0 obj +<< +/ActualText +/K 1752 +/P 975 0 R +/Pg 31 0 R +/S /Span +>> +endobj +979 0 obj +<< +/ActualText +/K 1754 +/P 975 0 R +/Pg 31 0 R +/S /Span +>> +endobj +980 0 obj +<< +/C /Pa3 +/K [1758 981 0 R 1760 982 0 R 1762 1763 1764 1765 983 0 R 1767 1768 1769 1770] +/P 191 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +981 0 obj +<< +/ActualText +/K 1759 +/P 980 0 R +/Pg 31 0 R +/S /Span +>> +endobj +982 0 obj +<< +/ActualText +/K 1761 +/P 980 0 R +/Pg 31 0 R +/S /Span +>> +endobj +983 0 obj +<< +/ActualText +/K 1766 +/P 980 0 R +/Pg 31 0 R +/S /Span +>> +endobj +984 0 obj +<< +/C /Pa10 +/K 1771 +/P 191 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +985 0 obj +<< +/C /Pa2 +/K [1772 1773 986 0 R 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 987 0 R 1787] +/P 191 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +986 0 obj +<< +/ActualText +/K 1774 +/P 985 0 R +/Pg 32 0 R +/S /Span +>> +endobj +987 0 obj +<< +/ActualText +/K 1786 +/P 985 0 R +/Pg 32 0 R +/S /Span +>> +endobj +988 0 obj +<< +/C /Pa3 +/K [1788 1789 989 0 R 1791 1792 1793 1794 990 0 R 1796 1797 1798 1799 1800 991 0 R 1802 1803 +1804] +/P 191 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +989 0 obj +<< +/ActualText +/K 1790 +/P 988 0 R +/Pg 32 0 R +/S /Span +>> +endobj +990 0 obj +<< +/ActualText +/K 1795 +/P 988 0 R +/Pg 32 0 R +/S /Span +>> +endobj +991 0 obj +<< +/ActualText +/K 1801 +/P 988 0 R +/Pg 32 0 R +/S /Span +>> +endobj +992 0 obj +<< +/C /Pa10 +/K 1805 +/P 191 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +993 0 obj +<< +/C /Pa2 +/K [1806 1807 1808 1809 1810 1811 1812 994 0 R 1814 995 0 R 1816 1817 1818 1819 996 0 R 1821 +1822 1823 1824 1825 997 0 R 1827] +/P 191 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +994 0 obj +<< +/ActualText +/K 1813 +/P 993 0 R +/Pg 32 0 R +/S /Span +>> +endobj +995 0 obj +<< +/ActualText +/K 1815 +/P 993 0 R +/Pg 32 0 R +/S /Span +>> +endobj +996 0 obj +<< +/ActualText +/K 1820 +/P 993 0 R +/Pg 32 0 R +/S /Span +>> +endobj +997 0 obj +<< +/ActualText +/K 1826 +/P 993 0 R +/Pg 32 0 R +/S /Span +>> +endobj +998 0 obj +<< +/C /Pa3 +/K [1828 1829 1830 1831 1832 999 0 R << +/MCID 1834 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1835 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1836 +/Pg 33 0 R +/Type /MCR +>> 1000 0 R << +/MCID 1838 +/Pg 33 0 R +/Type /MCR +>>] +/P 191 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +999 0 obj +<< +/ActualText +/K 1833 +/P 998 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1000 0 obj +<< +/ActualText +/K 1837 +/P 998 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1001 0 obj +<< +/C /Pa3 +/K [1839 1002 0 R 1841 1842 1843 1844 1845 1846 1847 1003 0 R 1849 1850] +/P 191 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +1002 0 obj +<< +/ActualText +/K 1840 +/P 1001 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1003 0 obj +<< +/ActualText +/K 1848 +/P 1001 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1004 0 obj +<< +/C /Pa10 +/K 1851 +/P 191 0 R +/Pg 33 0 R +/S /Zwischenhead_2 +>> +endobj +1005 0 obj +<< +/C /Pa2 +/K 1852 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1006 0 obj +<< +/C /Pa2 +/K 1853 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1007 0 obj +<< +/C /Pa2 +/K 1854 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1008 0 obj +<< +/C /Pa2 +/K 1855 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1009 0 obj +<< +/C /Pa2 +/K 1856 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1010 0 obj +<< +/C /Pa2 +/K 1857 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1011 0 obj +<< +/C /Pa2 +/K 1858 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1012 0 obj +<< +/C /Pa2 +/K 1859 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1013 0 obj +<< +/C /Pa2 +/K 1860 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1014 0 obj +<< +/C /Pa2 +/K 1861 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1015 0 obj +<< +/C /Pa2 +/K 1862 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1016 0 obj +<< +/C /Pa2 +/K 1863 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1017 0 obj +<< +/C /Pa2 +/K 1864 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1018 0 obj +<< +/C /Pa2 +/K 1865 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1019 0 obj +<< +/C /Pa2 +/K 1866 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1020 0 obj +<< +/C /Pa2 +/K 1867 +/P 191 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1021 0 obj +<< +/C /Pa10 +/K 1165 +/P 203 0 R +/Pg 25 0 R +/S /Zwischenhead_2 +>> +endobj +1022 0 obj +<< +/C /Pa13 +/K 1166 +/P 1497 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1023 0 obj +<< +/C /Pa13 +/K 1167 +/P 1498 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1024 0 obj +<< +/C /Pa13 +/K [1168 1025 0 R 1170] +/P 1499 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1025 0 obj +<< +/ActualText +/K 1169 +/P 1024 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1026 0 obj +<< +/C /Pa13 +/K [1171 1172 1173 1174 1175] +/P 1500 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1027 0 obj +<< +/C /Pa16 +/K 1176 +/P 1501 0 R +/Pg 25 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1028 0 obj +<< +/C /A4 +/K 1177 +/P 1502 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1029 0 obj +<< +/C /A4 +/K 1178 +/P 1502 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1030 0 obj +<< +/K [1179 1180] +/P 1503 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1031 0 obj +<< +/C /A4 +/K 1181 +/P 1504 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1032 0 obj +<< +/C /A4 +/K 1182 +/P 1504 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1033 0 obj +<< +/K [1183 1184] +/P 1505 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1034 0 obj +<< +/C /A4 +/K 1185 +/P 1506 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1035 0 obj +<< +/C /A4 +/K 1186 +/P 1506 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1036 0 obj +<< +/K [1187 1188] +/P 1507 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1037 0 obj +<< +/C /A4 +/K 1189 +/P 1508 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1038 0 obj +<< +/C /A4 +/K 1190 +/P 1508 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1039 0 obj +<< +/K [1191 1192] +/P 1509 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1040 0 obj +<< +/C /A4 +/K 1193 +/P 1510 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1041 0 obj +<< +/C /A4 +/K 1194 +/P 1510 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1042 0 obj +<< +/K [1195 1196] +/P 1511 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1043 0 obj +<< +/C /A4 +/K 1197 +/P 1512 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1044 0 obj +<< +/C /A4 +/K 1198 +/P 1512 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1045 0 obj +<< +/K [1199 1046 0 R 1201] +/P 1513 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1046 0 obj +<< +/ActualText +/K 1200 +/P 1045 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1047 0 obj +<< +/C /A4 +/K 1202 +/P 1514 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1048 0 obj +<< +/C /A4 +/K 1203 +/P 1514 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1049 0 obj +<< +/K 1204 +/P 1515 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1050 0 obj +<< +/C /A4 +/K 1205 +/P 1516 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1051 0 obj +<< +/C /A4 +/K 1206 +/P 1516 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1052 0 obj +<< +/K [1207 1053 0 R 1209] +/P 1517 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1053 0 obj +<< +/ActualText +/K 1208 +/P 1052 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1054 0 obj +<< +/C /A4 +/K 1210 +/P 1518 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1055 0 obj +<< +/C /A4 +/K 1211 +/P 1518 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1056 0 obj +<< +/K 1212 +/P 1519 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1057 0 obj +<< +/C /A4 +/K 1213 +/P 1520 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1058 0 obj +<< +/C /A4 +/K 1214 +/P 1520 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1059 0 obj +<< +/K 1215 +/P 1521 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1060 0 obj +<< +/C /A4 +/K 1216 +/P 1522 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1061 0 obj +<< +/C /A4 +/K 1217 +/P 1522 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1062 0 obj +<< +/K [1218 1219 1220] +/P 1523 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1063 0 obj +<< +/C /A4 +/K 1221 +/P 1524 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1064 0 obj +<< +/C /A4 +/K 1222 +/P 1524 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1065 0 obj +<< +/K [1223 1224 1225] +/P 1525 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1066 0 obj +<< +/C /A4 +/K 1226 +/P 1526 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1067 0 obj +<< +/C /A4 +/K 1227 +/P 1526 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1068 0 obj +<< +/K [1228 1069 0 R 1230 1231] +/P 1527 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1069 0 obj +<< +/ActualText +/K 1229 +/P 1068 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1070 0 obj +<< +/C /A4 +/K 1232 +/P 1528 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1071 0 obj +<< +/C /A4 +/K 1233 +/P 1528 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1072 0 obj +<< +/K [1234 1235] +/P 1529 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1073 0 obj +<< +/C /A4 +/K 1236 +/P 1530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1074 0 obj +<< +/C /A4 +/K 1237 +/P 1530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1075 0 obj +<< +/K [1238 1076 0 R 1240] +/P 1531 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1076 0 obj +<< +/ActualText +/K 1239 +/P 1075 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1077 0 obj +<< +/C /A4 +/K 1241 +/P 1532 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1078 0 obj +<< +/C /A4 +/K 1242 +/P 1532 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1079 0 obj +<< +/K [1243 1080 0 R 1245] +/P 1533 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1080 0 obj +<< +/ActualText +/K 1244 +/P 1079 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1081 0 obj +<< +/C /A4 +/K 1246 +/P 1534 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1082 0 obj +<< +/C /A4 +/K 1247 +/P 1534 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1083 0 obj +<< +/K [1248 1084 0 R 1250 1251] +/P 1535 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1084 0 obj +<< +/ActualText +/K 1249 +/P 1083 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1085 0 obj +<< +/C /A4 +/K 1252 +/P 1536 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1086 0 obj +<< +/C /A4 +/K 1253 +/P 1536 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1087 0 obj +<< +/K [1254 1255 1256 1257 1258 1088 0 R 1260 1261] +/P 1537 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1088 0 obj +<< +/ActualText +/K 1259 +/P 1087 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1089 0 obj +<< +/C /Pa13 +/K [1262 1090 0 R 1264 1091 0 R 1266 1092 0 R 1268 1269] +/P 1538 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1090 0 obj +<< +/ActualText +/K 1263 +/P 1089 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1091 0 obj +<< +/ActualText +/K 1265 +/P 1089 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1092 0 obj +<< +/ActualText +/K 1267 +/P 1089 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1093 0 obj +<< +/C /Pa16 +/K 1270 +/P 1539 0 R +/Pg 25 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1094 0 obj +<< +/C /A4 +/K 1271 +/P 1540 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1095 0 obj +<< +/C /A4 +/K 1272 +/P 1540 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1096 0 obj +<< +/K [1273 1097 0 R 1275 1276 1277] +/P 1541 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1097 0 obj +<< +/ActualText +/K 1274 +/P 1096 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1098 0 obj +<< +/C /A4 +/K 1278 +/P 1542 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1099 0 obj +<< +/C /A4 +/K 1279 +/P 1542 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1100 0 obj +<< +/K [1280 1281 1282 1283] +/P 1543 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1101 0 obj +<< +/C /A4 +/K 1284 +/P 1544 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1102 0 obj +<< +/C /A4 +/K 1285 +/P 1544 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1103 0 obj +<< +/K [1286 1287] +/P 1545 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1104 0 obj +<< +/C /A4 +/K 1288 +/P 1546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1105 0 obj +<< +/C /A4 +/K 1289 +/P 1546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1106 0 obj +<< +/K [1290 1107 0 R 1292 1293] +/P 1547 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1107 0 obj +<< +/ActualText +/K 1291 +/P 1106 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1108 0 obj +<< +/C /A4 +/K 1294 +/P 1548 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1109 0 obj +<< +/C /A4 +/K 1295 +/P 1548 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1110 0 obj +<< +/K [1296 1297 1298] +/P 1549 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1111 0 obj +<< +/C /A4 +/K 1299 +/P 1550 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1112 0 obj +<< +/C /A4 +/K 1300 +/P 1550 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1113 0 obj +<< +/K [1301 1302 1303 1304 1305] +/P 1551 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1114 0 obj +<< +/C /A4 +/K 1306 +/P 1552 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1115 0 obj +<< +/C /A4 +/K 1307 +/P 1552 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1116 0 obj +<< +/K [1308 1309 1117 0 R 1311] +/P 1553 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1117 0 obj +<< +/ActualText +/K 1310 +/P 1116 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1118 0 obj +<< +/C /A4 +/K 1312 +/P 1554 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1119 0 obj +<< +/C /A4 +/K 1313 +/P 1554 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1120 0 obj +<< +/K [1314 1315] +/P 1555 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1121 0 obj +<< +/C /A4 +/K 1316 +/P 1556 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1122 0 obj +<< +/C /A4 +/K 1317 +/P 1556 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1123 0 obj +<< +/K 1318 +/P 1557 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1124 0 obj +<< +/C /A4 +/K 1319 +/P 1558 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1125 0 obj +<< +/C /A4 +/K 1320 +/P 1558 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1126 0 obj +<< +/K [1321 1127 0 R 1323] +/P 1559 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1127 0 obj +<< +/ActualText +/K 1322 +/P 1126 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1128 0 obj +<< +/C /A4 +/K 1324 +/P 1560 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1129 0 obj +<< +/C /A4 +/K 1325 +/P 1560 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1130 0 obj +<< +/K [1326 1131 0 R 1328] +/P 1561 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1131 0 obj +<< +/ActualText +/K 1327 +/P 1130 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1132 0 obj +<< +/C /A4 +/K 1329 +/P 1562 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1133 0 obj +<< +/C /A4 +/K 1330 +/P 1562 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1134 0 obj +<< +/K 1331 +/P 1563 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1135 0 obj +<< +/C /A4 +/K 1332 +/P 1564 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1136 0 obj +<< +/C /A4 +/K 1333 +/P 1564 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1137 0 obj +<< +/K [1334 1335] +/P 1565 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1138 0 obj +<< +/C /Pa13 +/K [1336 1139 0 R 1338 1140 0 R 1340 1341 1141 0 R 1343] +/P 1566 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1139 0 obj +<< +/ActualText +/K 1337 +/P 1138 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1140 0 obj +<< +/ActualText +/K 1339 +/P 1138 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1141 0 obj +<< +/ActualText +/K 1342 +/P 1138 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1142 0 obj +<< +/C /Pa13 +/K [1344 1143 0 R 1346 1347] +/P 1566 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1143 0 obj +<< +/ActualText +/K 1345 +/P 1142 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1144 0 obj +<< +/C /A4 +/K 1348 +/P 1567 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1145 0 obj +<< +/C /A4 +/K 1349 +/P 1567 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1146 0 obj +<< +/K [1350 1351] +/P 1568 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1147 0 obj +<< +/C /A4 +/K 1352 +/P 1569 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1148 0 obj +<< +/C /A4 +/K 1353 +/P 1569 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1149 0 obj +<< +/K [1354 1150 0 R 1356 1357 1358 1359] +/P 1570 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1150 0 obj +<< +/ActualText +/K 1355 +/P 1149 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1151 0 obj +<< +/C /A4 +/K 1360 +/P 1571 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1152 0 obj +<< +/C /A4 +/K 1361 +/P 1571 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1153 0 obj +<< +/K [1362 1363] +/P 1572 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1154 0 obj +<< +/C /A4 +/K 1364 +/P 1573 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1155 0 obj +<< +/C /A4 +/K 1365 +/P 1573 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1156 0 obj +<< +/K [1366 1157 0 R 1368] +/P 1574 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1157 0 obj +<< +/ActualText +/K 1367 +/P 1156 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1158 0 obj +<< +/C /A4 +/K 1369 +/P 1575 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1159 0 obj +<< +/C /A4 +/K 1370 +/P 1575 0 R +/Pg 25 0 R +/S /Span +>> +endobj +1160 0 obj +<< +/K [1371 1372 1373 1374] +/P 1576 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +1161 0 obj +<< +/Filter /FlateDecode +/Length 10226 +/Length1 16195 +>> +stream +H‰œVyTT×ÿ}o™aQ@„¼af6A@d|#¸ ›8ƒÃ&(ˆ Fq¯˜ÔTSk­Q’›66yR›P£iÐÆ&ƈiLÓ,í9­Í9Æfiké7£æ´ö䟾oîÜõûîýÝûû½û@Fàaˆ(›]iO™š›Æ-W8U×·y;¶½üÁE€Ò9³~Õ +ecãúC€®‰ÛÖ5u,nL§½€þ®¿·¸uMS܇¦ý€áPØÜèm¨ûóŒs€ý6ÇËjæÃÓúh 5“ëãšÛVtï^øÌ®»9æÖöz/²:Ãyè—\ïmóvw7) ÈœÇ+˼m®[{Nsý8ÏWÒÑÞµbøÌk™2äëïXÞØ!½tü,PÃõEAí§N`èä\zMG÷ãö€;…€ošP–Ê—†N2ž0¡P‘2Þß#€üy8ï—h 'î6r.øÇü÷â$ëôc`ЈàPSØÈðQ£#"£ÆD‰}@1ÇYÆÅ'$ŽŸ”lµ¥ØSÓÒ32'feOÊÉÍ›œ?¥À‘©N,,rM+.™>cæ¬ÒÙeå•Usªçº=5óæ/ÈÈúl^¶>À>¾Ì㮩ý—·þë†%KÛZ—]ÏÉˬ~î*J±u-XØ”4ungóW‹a˜‰¿7þÕµ” ®ph~;$àæôÀ#·u‰æÊdkÔ„ˆH'Òÿ‰EJÓä QÁØá˜1¼øØøŒ+= Á¶å`š/Š$ñN  +‡ƒx Ã$’‰&PU’—Z¨›vÓ“¤ g…+¢(D‹¨ÆÞPR•4%WyÎu=uxØw–xO@¡4ž}+¨–šý¾½ô‚ß~_Gl¯2’}sîúêü¾ÿï“‹[<ãYzÎÑy¶ t‘ÞöÛ;ô®ß®øí#a·pžíÂã˜dè gö`D ‚XSÁA(LÃHfÊ(ŒF"Å;±ˆA,`œfÄÁ‚qˆg¾&b<& ɰ†Ø‘Š4¤#™˜ˆ,dcrxy˜Œ|LAst*T8Qˆ"¸øŠQ‚阙˜…RÌFÊQJTaª1nxPƒy˜XˆE¨…u¨G:Љåèâ7ÁFlÂflÁVlÃv|;Ѓx„Oä»ØÅgú=ìÆ<Žïc/~€}ø!öãG8€'p‡Ð‹'ñžÆa<ƒ#ø1žÅOðS<‡£øžÇ Ðp }ø9Žãx/¡¿Ä ¼Œ“8…Wð+¼ŠœÆü¯á,~ƒ×ñÎáMœÇ[¸€A\Äoñ6.áüïâ2ÞÃïñ¼Ïo¬ðG|ˆð1>ÁWøŸáÅQ #jÇ´a=Y)‘±51ï¯ã |Ž¥XKÑz¶‡im¥M´‘¶L ·iUÓ|šK ÈM ÉC‹¨†Êi&³q³¹”ªh6Í¡2 +!#  +&52S›˜é‹©Ž[ÏŒo 3% ÅR…S…Q;-¡ZJÔJË©ºhåÓ$šB9T@¹ä <šJ“ÉÆÜO¦šF*““J¨¦SÍ e’²)&R*eQÖàAf¡ÏV`%9_…ÕXÌy – ûn_3óó~kåöex×°û©‡6â/´†VÐNÚ„¿Òƒ´’¡Í¸Jki=Ê»³…ÖÑj¿mÁßxÏîY÷ØV|êoñçÄZб*B™©h:940|™ß†GÄy³|T”/Ñ õò +þÄç÷Ÿu?³äyfÏS̵̨]̽ÌÃíÌÉÍÌÏ XµŒy5cíbÞ¶óé.atMÌã:æôBæw s½šy_Á(e=Lgm¸X'*«&Ÿ”ÍŠÊ`uÙYq‰¬@sôƒº%ò5y¯&Ý’ +%U +t’ A¼&Šoˆ½â~q«¸^\)v‰¢]œ Ü>„ÃÂAaƒ0_¨JUÈr»`t‚DoÒ¦ƒ|ë죽´‹ÙÕEµ~œï3ƒ}HÏ0çO2ÿûY ÇY>ÜGY/Ï2úÃŒÿkkël«îþ]¸³÷ðûPû0WøÑ3N>;ÌŽÑ£ÂG†™BC‚G z,‰ÁÚÇÊp*=u=µ©ÚfíKœUÝ’Ý96ÙŸiÆ$FÎÐûšlÖdþiB’Ízçê4XÔc$Æ«ŠKiö6hb<çŠ&9-^¥á˜ÃÑSå6ós 汞2·¯ Å+®fM_äÕPî6Gk²s’'ÚÛà©t[ì–ÑvËUž;ùÛ£{¾u¤¯\ýç‚þ&SXDŽÍ:À°ùfv*¾Eöi¢ÓÛR[X«Ú¬EŠ&ZÔ>dç*§ÅÙcáM²¨‘Z +G‹,jÑ^Å¿nmj4—}EÍ­{<šlQ9YÔM°¨ZPR¤Íª5Ú¬'øJ‡_Uy}&¾\QŽ bjÑÈ«ºxÃUnÍQëñÍg³r—Óääå¦ÁfM±Y_³Y ´ð$ß÷†ÌÆ +Ö#Î].è “Êù +Ò Ò)‘»Né :Á"&§!9Õl2›9_Wæ[ªŒ›0K¯ÜTy,ÔÏžÉÁ"¡±{‘Ô) Iי̉ÙæAúÔ˜-D©?p‡Ñ÷U³cø´šˆH‡I曜¤m‘]GÜuˆK˜˜™•‘ÎDÔݶ»\öÔ’bc±=¥xšÝ^ì‹Ñ7$%ʃŒ#Ü$ ¸ ¾™e¿{AJª_ŸRân­ðµ×÷—)ÔV3Bi¬Îß«¶ôÞ|À;†† ‹±^Ç9£vÌ0CºÌë¸X4É%â¸Ý»}ó +²¶œ¨¼þ›«=‡/÷”®ò³¶³ ‘Ï4ýzç%éÀSzÖ éûsÒ¤ÃÇ‘âíPüm˜¿ãéC²îÍNb)$òµXÍò¤Æ F$G¢½”:Ež£´²4 ç{Ѥ7˜ŒÄ±Û•‡ 1)&ú¸›Þœ‡ÔïZõóZfW—•Õ´Î[Zï°¥Ô’†¦9ªGÕ“LfŠIãì+ÍPfãËäU+äStÂçáDĈLÊÈÉê[˜¯AÊ´ vš<, gðcËÛò’ó¸d_¥£QHž^aj(—Çb´È]DàM>2E…¤ÈðÓÐÐNÔôÎ&Ïȹ•m«lÖ”*O½ö³…oÎo-m]†¬¿8HQóö·¶¶ÿ`Vµ_x0·b~}éó3›«×4ô•Ïï™0qç–Òr%ÃTØ퀑ò^í^OŠQ›I³ r¯›7ŽÌr‘¬ Õk¼á‚r-‹$å†MœëU[ šEû%ƒcY@%áü,Ä”ÞÀPnW±·Ø+Ú00ÀTüøµXþ¦hHu^o?ÞôJ Jß÷Å÷¥ž!Oíé9’êx-XÏ3ÛÚÕ{_o­?Ä äcis}oó¯¥:îöñ›ø=Û/o›Ò=ÚhÒ´aêÄ¢ÖM“£í W +Øù;hÄ ›^]&­jX0ò( cCVÄÕX$XMØÀò”ÆShPcš£a³x¯’°ÒÈ;$¤¬%‘hbÌ(*òÅpJv$+ + )ª'Ìð?œ~ò™ ×¾aÖî“9dŽ†g¾ønr”wKݺX¨€’êQ{ˆ<#ªšŸ|+Ýev²ûk+$è‹6@^†ªdÃWž$€+0s˜I£2U.NOÚlЇC¥8Žbð³WcW:Bö"RE+µÈ8\“%ÇëqéÍÅc‘PÞ£Í æäFä;yxˆ“ÌEV‚9ndPA|Š"Dqou®úÓ¼§>Zéò¸«"Í…;k—öO¨ß9ã…?ÉRªò«WÓ*ŠRI_R·¤I-ÓNw,ýðÀ$‹©m p08lò[ Ú&—WiB(þ³¿ŒQ‘ +©JZ +“*9[ª©ì$;x)’ñéŸwPŒ·6.,À*X5Úm)A´õ ´ŽÁYA\AÒ¸‚8çÑÄç‘Š +ò™äÐQcNlÅè»%¿š9‹ª¯Õo¸ºóUmé豓£¯t7Ež_{|ÜؾB]çŽ?¾Úß°ÿBÛØɈ¤['¬<öI¯«,P0|ÎŽ†Ö³]£ð_¬ +Ìxóß7ú÷5Ë)Ð:{³ D8ã-ÈÇ<ì”…Ó˜•ˆR E¸åUHÈ“z†™#iTœ È ìý¤èñÈÆÇ2^fDarÈóíè‡åóŸ| ”y˜D`[þÁ‡íH1NÚüe'ðŠ Òýîç|²¶=8ņêÂ*•‚L?i–z¥K¹ä’;+ §üLZ7‘¨Î” ³ÛŒJ:*°Ñ¸@)…mö¼í6L°Ô>‚V¢*H1FôË„YÇô;ó¡ïÊr/«)'%¤È}¸]AÐQR̾'ó½y({ö²¸ŠIÓ3ûÃ3ÌM?:kt˸=ý›>]·äÜ‚Ã+–/¾pl`áìþ­Ö^suñ¹Ô±K7.¢»ª»gÕu4ĪlYûqGã`ûÚ"cvÍY~âµÇ·Ç¤Û{&÷Þƒüâ¢Á1K2‹Æ¯’õ䤃€Ô w¼aÁY›ðÈgQƒp(‚U ]F;u‹w ZÄ`_®ù 9½‰ +RT<ÃR6à ¾ˆü +wÒ{uëïi¢úì³KWo\~³ûʽƒÒ™ðøU™5[w¯ßáwëì¿ÿ¼kE}Áù¥þ¹NúøÑMi¿t/š´ý…}ß’Ûµõ†<¥ãéCFCï‡ûf‚ˆf|é¸YÞþb—NC³,Ohñ˜«Èf.à9½úe¶dÈÈò¤ ®8¦ŸD BNEvÌ¡¶c²ÏåšáfDÖ¢ÿÐ¥œA°Œ¬9ŠŽh3M—6?9=Â)^_=>ZâëIÊ8Ô6²Ñ&}…I¢÷?Z¦žêtÉEHe{óœeî7›c[M6£"[”_b ™>p}Âã^Iøˆ`ÆËØŠXYSZ¨Hò ¢ØG`®§ˆ…¤d(§< +¹:„bÙ×bR€U²È x¡3òÀÝv,ÝT6Qz0ëŒtíΊ®•í(tªëq£73eâÌ Û?y£~úïïYøÕ¨“-±ò– ¨àø)dš>µ%æ<ݽ˛²¹§ºÛµûá©©u ™°éÍ ‘¨Ì$”HÁàdZ«a•V$ ’2w¶ÌÝleyµF‹">¶Ç!hA‰·ù4`Ù³@cëãÞ Ü¹p£”ìÌÈÂúÿ’¯—“IÌZÞãXŸç¥—k'—ï*ïGú¿Î_öþÚ)W·%Û]étº)S»X58e`Üâ×GÎüí7{/’—;íÚçž•Ç+ý_÷‘nߊ{¹œ9-ÔÅGiIˆŸørÛ¿[bä&0’Œoj•n'J„-Bþ” x‰¤ Ù€‹ +°Ej o×"=ÝybñGó{€ @D“,8½\)9Æ~Â|q” 5I½çð|iÒ 2¥S4]>]sRºy·ó_hëý£7ºý•_wö¼tÓTzuñV}éšPDjÓãSP:f Û¦üYþÇwµÇ6u_á{~÷a_çÆo'vâGlÇ×±ãgìØyÚ΋8¥!¡Ð¦¼ +t”R¢…ÁF¡!vIƒŠ´¬&+l+ƒR¤íU ÕÄV¦mÒ4±Šj¯?¦i4Áì\;±]Y²º²ôûÎw¾ï|ç£?@ÏO|ïoli¶¹¦2_^¾•ùø‚Ï\šë¹¯È^äç~ª´€'2Þ`J£`‘£@FA«gÁ™“Q%³É/: ÝydN¸¢Ó´­9>rèÝ5môû±‘ãÒoæàÌ7†-f¤€Ãm¶ Ӈ祤ÿà·ï“¢ÚS1Ÿº>N"¼ÁÃ[…R¼“R(äBØ[¤d4~Þc#F¸(jôlää‚ôižm«Ü#åÙyÝ‹CdþÙ€làØÓè‹ŠÝà|BîýBj´¾¥ÃNM\¤osÙSÏVgÅöÞ>ÑÍëXry¦Ñ*Ó} OUÇÂÕ‹c}i¥ö?ôá¹ncÈtš¾úȱªlÛ§'µn9?Ó½Ãj”= Í2£u–æ=¬DŒêH%(¨ðF(."ÕIŠÌ•ÐðhПó¤UÚXº +ø‘ò*ŠõÍ‘Ç‘š9¡ýör‘Kˆ=ùIätÌçÓ`hYÞwÚÞÕxf°{b{ÇÂý¬mLè“éžý_;w|뜾ý8ïZ¬,‚£!öÎmKV|o¨Iè4tX:õV%Û‡(Û¨¶T½ Œ˜“vL$XYÀ³Í"4ÖÛY&|%¸!!#å)W'#¦<Ävõœ—<aŽn’3iÍ“AQqždÌ e‰ªx>×=ÖÁ¼è^’>èîöNuÿåÊ_O¯}å¡2›Í(Ó ™ý†úRa(±ùí¾ñeO¬À°%G= h<öL}j¿"(›åÛTW +_Ùšl&¹þXÿ‹;£X2k¤"),ÀDA%1òÞ +"ò`ˆVÄ8PFXç×7tlÏ®Gè'9"v„AÁ28íR§Ï/ÑÊ3×}NZžâäá³gÃà Ÿ;V%å´ÃŸùX®Õ¶®}çõ7$cW¯ÙÖkqŸXrìŸ7/Ÿ­½ÛfŽí°>œí]ªX‹ê¨D*dtÇÐ#ñ¢à +… ì*bÖãˆvÂÅYÏJëÛ¨žB*ÕoeH—ïÏY­rY©æ¢ÿ¡c© ÞÕ"‡‘Oª¿Œ¬mÕjW_»ö¥.§ÝrÏ«¨]W¶iäG÷Þë€È†Yyš­;î§FOµ^ý;˳—.¾zÿÔ ›>D¤êÿdO"R/LÙÁ%8›`äsFåq‹rŽJ¾TeÃ0âË»¨ôB<‰IñãÑëã&%sŠn˜‡Ø ‡Ý0Cºô†ô€èz9(ó–g¦*’–uîîÌ®²ºÎ¾ýÁ྾-M,7ý/úW>K 3wÝDï̉ågVºNÿpñÆ¥ÊÝ\ö'ÌSÍT}ª²Â´.ÁG…°@ zAƒfËòŸ§Âa·˜Š ŠÞj%bh}C2éEœÌ‰ò¡£W!]DÓÆ#VRŒûWt>‹ $ø7"2÷P™©*ã:Î.ÿ·2ì®[ú-ŸoÏ’¥.Q~ƒ™‰¿`iâf5$*b= ^]ÒM uæ‚N#_§‹c0N.Í íî±*g¬ î9èL‰×\>3@v‚ì¹Ò]þ™}ô]ÑÄæßs±é‹‰6gã榱ìNuþýSÊGÕS‹RÍ¿P˜Þ㼘JÁÈ`2’¸Oä58îVR‚‰ —€NrDE¬  &äÆüÜGCŠK&Š}«7ê-»OΟ2q‡Û¥´€†Ë–.W§ܺ±ó;-µzÎRëܶ{¬QÆù»Q‡Ã錖dŒíý£§ õãoFÛýioå3ÍNâqíܯ)‘7$•{›tÿàíÌë5efš™5›óïkvõ¿Ö”ù(Mý`mt¡'*¡Èƒ??¸Ç¨ÙÏ(æëtª±DI‚nž@ÐÉ!v-˜ôÄ6d3CY„/|¯„q…Ør(+"ƒžž¤J 9Í 8kÆ‘¸´äH‹‚[æN@4Q±ªcq&»ôì¨á8ˆ0ý£­ƒß_V™Üò=]7ùâb;†e¹Þ¶åæ öBGbsOhìàÂíìµûu›¼á«C-o ;&lÊÎÎB½hýýQ¥§Ö˜9i/ëŠ<dÕøÖ’'Uã–Ó… »)JÔáÔ¼ËN¸°Sr¨ÃF^è\z¢ýnõg6\'y4FË.o1‰ÑbŽ£Ãµ*EÇ +Wíúg«^몬4T*O¯ßö»]ë;­Ù´l߀RE†‡‹¼fkמկœÛu˜lMúª—?ßûóh­'”Žï‘ruy8<¸Ñ;¦RðGy +üÕ.¼¥ TJŽúÌÙ4ꉚ7È•€¯#G<`’“IŠÙñz襹É?[ðâ'4V?–ÄÉZU„~‹SâaâH¤aí?ݬS±•5unì½H¹ânQÿgw6õühÑ¢ÆÁöU#5G':Þüzã+á2½ †² h¦u}–:Ÿk®^Ó€ìö·oyW¹äútœ½ôáó—·,¨w?Dä?“È‚òS R^ X h„÷ÕZ€ðÕÐÂj3ƒ1ä@®hÆ2š·˜ÕôJ°^¥E_pV|Þ88ƒ”K£"NBœûˆÕ®ŸÍÈ"ɯ­Ù1È ÞpdëKáÕ‰³¿gO’ù­ååÁÞ§ü¥~ãDròó~Gk #¶•>RàV¾û\ëÍ3uf˳ýµ&_©¡M÷oýÍÁÕ“Ž:c ö[“õö6Nñ–T=£@ÕPÀ8JÍÄ®rž.)29aJ‹‰Ž7(€huÀC¹™¸`²Ðaå ¬Î6!ògI»†—ìI)µZƒß–$HŠ#WŒ©d1ÊŒ¢°zeÕºŠTªb]Õʘ 8xP+Z‡\/½ìÕ£ÿ%¼Ú‚›8¯ðþÿ^¤]ɲdY7dy%­¥•-É’lI¶|“|‘À±1²âØ`\c `nB;„$È—’¤.©Mš¤„–)P&íCÚ!MxJ˜ MéL¦Ó–>ô¡Óf†ö!C3 ƒDÏ®$߀ÔÏ®4sÎù.ç;%M¡g§.(÷d?*€%‡ØkløSéO vîŽz½Itd/QÀP”è"ˆ‰Q7âʨ7‰ÙæÎG(Ã(!ãQãÎ1e|/,þdʪ 4ådûÔp±Q4oìÖÒa„çÈø2r;ñJ«tŒ͵ù³îÒƒEÙ$¸D‰™FH4FCy¾8rK‘Z`±ì6F“Ë„ä ÇhL³¬BR±‘?2u'üÛ¶ùJ+lí›:ÑÚOõž¸v`æʾØGùS5O Î'Î&’GHPæfBý['ZvvnÞuòÜØÌ™#|¦ù,ÉÔµoxÑÇ×)K‹­Î~j÷ÔrádÿTKëpM®ï^Ö½  /Ý@ð„—¨I8Œv7Á ªT%]2<'(p5¨šGs„²­?Ÿ9–…û•Ä‡„=ƒŠI9Ûçw)zAò«å´×”5õfηwyÚ⢻­•ü0k¹—òèê³±I²¢ým±µÍ-ÆÁ•ï^È^Bƒô „™pބâçÕ Ä)ÍœB¡Deª0Â1:‡tP¯(gñ¸”Å¡`i£ ¢±`¦E|D¹ÈüfdPª©>rdÈ‹qƒ¹’oéùéBŸ/•ôÛ"|’üðŽcæÓö®Á>&èñ^?ŽÏíô7i»þ–òù’|ÄæOJ ÊÏó ÂFØæâbÐ"K$P_ârŠÜ;Ì/óX=ºE¨-}šˆpܽÍÜ_'F ‹µ*Üäõè¹R˜ÒÈƶ¦¨((y°8.\‡Å`&Ý‘ ’fc³¨¥£`[Z4L˜Ô‡¾Ã`Íq@nrÔ]³‚Ü’wäµ+§)¼ŠËº°ûA |ý?ç›{3[õ³±™ÏúZ¦â»Ó~ÁxM«(ºA[·ä5ƒÛ‹ƒ©ÙØ&=UG}Ûªí®‰àh¤„»†®F@"ö¡ðǯ…}LoÈ /.CY“s÷Ç0Ú›œN=@8E¯€YÇa«ÄxX#¨ÅãæJ`Î õR +²sNšoehÎÓ ¥ÈŽ*´fŒàíK~ñe2|‹‹@X[í m‹¤±›>tßž‹ªƒ=ÐJ9¥ÿ‰²A÷:ÂN‰Š².¶Îš.Ö ¦f56‚ž5Ð|œ2Û½AÚ)m9‚‚ñCL“W‚”â`¸15þ³™ø³ÿ~wË/ž_ûêÍO¾$l82rèè†7«×þåöù‡SÏŸ{ë›—É3¿wèü››¯/þûKRÚìejêíD:ÑŸ%—B œp-‚Ш@‘ÐAU¢ +ƒŠs”`“Š¡×ËM˜P û˜Cs*ÉÂ;‹Ôz 7ïE—(E`mâ}Óë¤%WØpðùí" §›ìùäÉg¾ +oúAZ¥ŠŽ'\2y·DUܹÆã#ýÇ>=ŸÚ“Ò«r')¦ˆÂ'? O|üÌh¶ê¤#œ;0b]‰—•òåƱ]¿™|ërpm•¾à?9˜G-K9d(Á +†$MfLÌjv°=§âôò‚Õ;§Q0o–yy¯â]I!HWÁýäúeÁÎ˨ɪÍþ8_æõ¥örªžÝë6·-׳¾8ì­6}3zh4÷Îr%=¬Ò§:‰X•U«B4OÃÂ廌=ýˆNxe8«´*Ré`­kÌäÛ¢Ñ~„üžCO38T<ú‚úz)¥È$kIQ>¤3A!ÈÁKSþ$@£ÑÖ÷vl;V°u®ç3#×ßæ8C5}Ë•]ûwöàö¿>«a‘k`hhW]·Z©ÕW¨ì»†~|"Ü;è9ÓÑcà÷=ùø|¨ñ°äþ»ÿijÔ-ÂJ´$ÂFDèY‡—šÄd „P0¤w[äSGi,Áe,RCdÆJ +Ïi­€‡MjBf¡œ'EØŒ”9ò©H¹²ðŽr¢ËlDæ²ÜíP<ÒeÝjÞû©Qz×ßÔíð›Þn½z2û¯u)ѹÇò©*Ü5gäìØ™hÔ! Êã)‡C¦¸ö£œ“ À*P})ö£(l‰–,nN°ÀxW–+HeÔ—6„®¼ Š%VQ ØÕ€³Çà=UÊW6Û>Ul_ILõHµ:|é¦G@ ¾ž==4ÑÐóÝê+ÐKv毩4yM á0‹\çàtœXO³Þf6ôeÊM V1Ñäÿjƒˆ„T‹(’?» €S¹I/e‘ðò§ ùö׆º’Çr?)YcN¥§<ÕûÒÛëËnŽñƒbh 1f·ÃÑÁÿÈÞœàɘ]@T SŽQ¤ÇÈ~ðÇõDÈŇ½ùÊ™§›f¢9áÙiRâj9/çby¶\îs@`š£1Á ¼ÐCëòâqˆéúz#”Ü _Y2´Fj0´'ý#+š”Ò<ü$Š3wÿ¾òštªã1‡óÑŽˆÐXýšÍ^W9šûŠoÖ^»æjò4e¦=5ÓéŒÇ­<§ó£œ +<½ðiªtWv.õÔ¿%w9¹ùøRÇw®_œN/½´T”[²Ÿ;wAßÕwo“· ïj¢.áJÕ,¦Yƒ‹³såKªÝU‚Ó^i³˜IB=FHy‹-{kkƒ,*Q¸ERêSˆ€BÔ"n€—àpqà>¨¬©¯ˆj­Æn»®ê¯'ùåEÁQBÿÕ6Ù¼ÜF*r?·Õé±2·Ã«øûå×…áÿœ³çÌhÆKÕ«3;LtbÔcL†ŠUce*!‰mcäÒæfA|­äÒZ(¥>„‚+ƒ„’Bñ¡ä!¡4´„R)B‹„z!ÍS +!Nfúï}Žf2#‰‡¾xàc­½Ï¾¬½Öš³g©œzFÖ|ÝÆ]ëÑzµ½y« QãÛUùÖS—OË T%6:lܲ¶¸sËwf¤³¢L¯¥%>oqáÊ‚,§Ã@VW¦ Y}bÈ^©,K”¦Š¬Ú*vmÖYX•©I™§ï¹ïî¬Þòöª’Ý¡º²–±=e-‡wl¨ +憖×î¨ñTxÛfòÖ{K[?(÷õ·¶n[þaà+½Ó“SéšÂ{CÑ­;ö7xÎæ‰7ö5 v_ÕWÔ¬}¥ªÒµ±ñžT~;žÉúhwÖ¦a¸üÌŽ>úÖåOË¡jòf¶g8n=ÒÊgGc]~Õ›ðh_š ]º¤cúô ÀEÌI´™uk ê Q„˜F/Ç—°í¥<ÍöeŽ¯'¤„xˆ …$DºäzÄÇñ'å\Î9&×!oÃ;"Ƚ<⪘A¨Äê…dý2‰Äoó?¾zçü %æ¼fÛSCéS¯BPü2®WàøÙôW¶£E$‡xh÷(÷£Ü©lg QÙz ~›öTsý׌)T³¿‚6„Ä8ÜzüÚLüÛ~©;³yö‹]|Ùb€s|ðï A?G;n¡L ÁmNpL |œW ,¿õ‹i½Š²Kî¯l:ÙÎg ÒÒK»g(·Kä»´rDåÙô1œtF•ÜìÏÕ:c”Õœ»S"ç*¦5·\ËeO8§Ð®lã|ó›?¢ ¸°üðüm±Šk”V»É=ÀËs—^ʺ€5Û–Xb‰%–xš¬ pN»|r³òÊcß|Î?ï²°rc䉚ËÒYˆÎë‚z–­›ÔŠm]®àHM¤©öœ®qÄœ®#¯ÛºÁþ7m]Pï·u“ú¶.×ü:ÜÑÒ¼µÃßÖ½¿û较‡žÞDhA3¶Rúцnì'G±qíØ‹wqLõ~ÆØçykXÞ‹ŸÃú”º—Ï–—r¶-«_Q™‘'êG²3ÖˆOŒ3µ§ÄÈH{FÓƦ¡"¿ÿ?Çß+b +endstream +endobj +1162 0 obj +<< +/Filter /FlateDecode +/Length 9623 +/Length1 13410 +>> +stream +H‰ÄVkTSWþÎ}ä!$$¼$@Âå E>°ÈK +ÔZ"¡ÊC±ˆµS|ÔÁb­­¶ÖúÄjk­½ UkÕŠÖNmk­v¦N;Ó5kÖLøcfÍruÍZÕÌNtµÎ8¿s’›sö>çìóí½¿œ}Á„a5xTέÉvb –“æôT4wú{J+ëÊføïšû–›{«ºÍ€˜@º¬¶žEœþ‚PÌ!ùw‹–¬lÛ]ê9 ¨’ÉØÞêoi{yÖb s2ÙËo'…f/GrÉÉíËû7$ÌÈ&y ÙoZÒÝìGäã& ëÉ-þþöOÜœu´ÞÜåïl½ü±†ä>:ïPOwïò‰¡ÈKÌ÷,kíÁüþ+$ì“ßsg ÒÚl)0žq·ÒÐÆE§Âÿhf˜S‹‰ãä_»A,8c¤hшM¢G{Jê¹àšo4É ¢B©R‡„j´á:}„Á;)Οh¶$IÉ)©iéÖL›=+;ÇáÌÍså»'O)˜:­°¨ØSâõM/-›1sÖìò9UÌ­¬ª®©W÷p}Cã#ó]ðX“áÎ]{†½uìÔÉwß;}æÜù÷Ç.|pñÒ‡}|ù“+Ÿ^ûüú‹W>ù46X¿ºwãv¿ ÀSÏÑ­yg¯në_‡`í–¶¯ì8²¤oé²îžÎ®Ïðå +¬ZüÐþ|skÇ«û¶¿¶÷Àë÷~oŒŒÊ´ù—ôlX¸¯ƒQÑQ\x `‚ùY?Û"Ì5X’’b'&‚ÑfÕA­ÎløQû`3â:{eG9a·²)PPB5B + qV‹p:QhW$¢Äbâ`B<H§Z‰¸‚T¤!°"6Ø‘…läÀ'r‘òáÆdLA¦b +Q„bxP/|˜ŽR”afbf£sð*0•¨B5jP‹y¨ÃèGñæãQ,Àch‚ qýX‰'± +Oáxš"´k°ëð ÖS)#Ïbñ6ƒú^ÄlÅKxÛð +¶ãUìÀNìÂnìÁ^ c^Ã~Àë8ˆ_áÞÀa¼‰#x Gñ6dŒ`ÇpïàNâÞÅi¼‡38‹sxç1† ¸ˆp â×ø—ñ1>Á§¸‚ÏpŸã®ã ü¿Å—X‚¾Ÿý—<ŽåXAôYŠe÷4èB3õÝèA+õ‹Ðþãê¶ÿb¡ãÍb<^N¨ÒaB¿²¹™2š×ò!<ÇscÜ ·Žàz¹F.ƒÓ±«ì;Dz=,E03ÝWã„ü¸…›øö>®ÜçƒL>üäÁOøïG^A˜]°x¢"†½.\¦ Q«” +Qà9Û(ñÝgZ8$yÛêì¶Qª&¾Ú~™õÑS‚Ý´`'‡XdæÓý‡Ênˤ¯ÌYí¶»?l¡ É;Âø¯¹ÌÜîo‘ùêͲà“üæ–g¨¶ÞBmSCe}` ¤˜ËÚeeJ©_FU½%N}“âü- 5õR¶ô}\¶t“ÎÎüyëþ–Ÿ])¦x‹o>°¹øû J=Ån#·©øÌC¥2ïów4MoòÚm¥f™—¼£Œ}}>É7$Ñ„,HÞ94à+Y‹)í=~s·\GãÀP.‹“g64È¢ä%LòvÈœä•5Ö»Í\Ú>Ýn;M—£8qÞK Fõ"½Ù<ÂñC^If~oÌS[/{šçÙm4åÓû®v[–ÝvÉn+–V;¸@……”§;Xò˜¸…J¡„nc%'lãin›’AÁ©ÃùL2s,z‹>F7·å¯HEÜ"œ»ã ÔCËø1‘£½O¨’u¨8ˆ,4¸1++Ç L+bî|w47Ül*-7v>£ÿ6Ùøì_6†ZãÇXœøŽm"îjãÑó5¡`BUb‘iïpçåç:‰ +))5u°Ú᪨p%¥®Ê®¥quj1YqQ±Þ%j©^$yâb£ ÚP) P‡³ˆIŒ±nƒÊ(2ÙË,¶æäºX®3ߥÏK“’„‘së¤pGv+âtéªÈV1^ùõîªnMŒXÍ)|õÜm»0•+–Ö:î\ܨà*î¾(ðk„ã:ãq¤µjA“©ŽbSŒ†©œŒc™¦|µžbšÇ˜:2^4"œ¬/A©YA µG®«ˆwå¥e1)I©å•R¾›|M`Ñän@Ö2¥3*×é&ˆ¹ŠÈd)I¨(8¶¿'#ª:§8;.Ù¨UF(6¿S¾uQ¸0;²hš5ÝÜëÔš:œ«ñã·'ÿu¡ûðÙË5y))±aVg±içK]…]åFGooÒœÂôTK¯Ke sNýãUà çg +2ÕË,O*˜:×£f”•l)Ò ˆkˆ5Š|qÇs¹låT­(2ßÝÀR¦(ݹôhæ»òRÓRɯ´|÷]1-‹£€KäùYD9º©P&p‘F-MU¨"Bíʪ9Öô‚ÖØ{†·1ǪÑè;Í1ºüÂx>JU>Cﵫܻ*O–;LöUõ½îÙCçº6Xûê×Æhr²Š+§´›2ÂÔöFS~꿘®ÖئÎ3ì÷œÏÇçØljÏñ9¾Ä8øÛ‰o¹Ç ćÄÄ nJÃZ@\ +¬0hèc¬e‚¡¦Ik™Ôòc i“ViTc“ªÂŸMbý3†V~ gïç6Ë?|Ž-ù{Þçò>ga6`÷[ˆ©RúS._×úJGÛXÎ2´57pñH‰ö» í¦ˆ´[C)ßÄ(ìÛÄ‘ jtró +ñ&Út‚ ¹LHQÐ jʬu7Øe½Šá›ðKìOÚ­‡lÙæfäÖ›Iæ  ê@ÃŒ $5ÙªpªbS}!?ýP›”¦â”\À1/ø7,rô:U0çŽ_99h7fq½æ ¼i“©¡üÉÃÕÊê ­hjn߸Š'Aãn‡¤TŸU¿ûR_Ÿ«æ Ÿ—»’R$Ì=Xz¾úÕeÊëøô#äõ +*¶”/¨Ë‰æ60Ñ “u»Ã§@<-’žÓ¯µ"é,áÀ‚¾¹ìÞ”ôNUÇÆöLԮ瘚ŒÑ¡H|6Óú¼S9£±(å­T¿ÁYÐÔÁ~N­I)Ç_Kšqp8ÑXÚ#ó ¶öhëc^žD’Gü[@OȼO£Ñ›qþÍ·Wœ?ÿôàn÷ïÊ|e§‹_³´CY¼}¾/ÀOÜÿíº¤ Õå-–ÅVB>ß”í9±ñÐ×ûÛ×QÅG‘[‰vÀ|Ú ŠGPÁJV9ÞM8 ضæИRxVv;ë3’ºjªFp@ã‚RY“/›Ý@…ͱԗ/íÊ(>y&†ÍÂr~`¸³Ü¤”ç xÏÛ«æåÂïyÓ«ƒ¡9±å%W»CÞ¹X+´Ohí½n¡þµ«ß@ëÆsÅíÎüîÒ¡•¦»ÍÑ¡(ñ£Õ_–„‰Móì/-ìÛ1$YÜžøÁ÷JM«>¼¹ÑŽ!Ú5ˆ6€ '›oÑ™E%Ç2N #“ÀƒfÔ)‚õ ›ÐÁØî@é™4JtÃlÔpHS¨£u–,] +A2‹c ìºÁf; tDÆ+ùá~劜òzï:Þ8´w°+»ëêȲ«O?ªKC¾4È•ËEÊ.I-$Ï\^ûªËÜ»êz 9øÃõ²øÖ×G§ªÿþãŒïÔr­rñG‚•w©3/O?ƒ›ìbº°4Xe³QÇe¶¶¥l:f‹Å€Go˜]Aºš!SÛì‹e—p}$íí +'Ó#‡³Ã£©æáÒìpSΗa>I'ÇÆ’©Qü¿"nœ5ä>Gà3D>’Òœ:HÒ_ÏZƒ^‰5£tĤ–ðÎq:ìªl,˜C³“ÓtÝQŒ>HA#cG)à›úÙÁ “n¯óò^ŽÅÜ“eÖË2§÷A}}[À#ùì–D²|íëûsâxucŸ×Îví{¿OK»‚õ…å›'>€å¿ ž¿í?6ZlZh¬Ó)X‚ÎÀ“[Ë|vÇÐkNñ/÷_ù3è@~¾>¥~ß=ýW½‘<Áî™ÈGì +âáe! |:„¢°äWmC…팼ÅìÅÕø›YÞ=¾LM ¯¼¾@ˆJC¦ÂÐsä~/S[9ØãþøÛ°zdï{¢ßwÈÑkÕ'«ÿù¢iÎo>ûðÆÀÍaߨäcfá×WÆʪï/xÍiKãüM¯Ü9»vòd‡{Ëׇ +òð!¹Ïw­ºž|V52)ÍŠÇÕA6žô +,ØKC›©¨B",|Ï•ÐéMÀl s„cÚgR©›Z7•¡y$a 5eh8ÕÞv$ªfX (’(ø8Àp¯u’%@m­^li”ÌÀ‘þúùõñô|u¨òþZ³yÇðãêw?QÇ”Šç8$È`ñ_ Mëïhç#sm|ìÜùš¤/ò„w;&.­êï}|sç¾0!òñ˜A˜ÿ"T4Ê̾éGúKÈLN7ïÎq°>]‹À´kŒàK«¢ŽïÄ´aÚuí§eD”¼n=ȮµÛk‡àiŽ·6#žC›Œç@ºõ3 Ÿ,M´Œ¼Ó_Z–oˆt½¹bÏ”)fZuýͽ‘ÊÊ~§Vàgús‘ÜÓ5êÚò ÎÇÔ.ŠF¾\ঠjûÖE»Sˆ¢vIŒ“69Ï‹d¦õ‰©Ñë§ZU„§J/ì6Ù—³H‹§J[.ÊKˆ`õç·Š Ç[ÙE])kç ÁþÂó¦žEQ(ÊŠnú÷OTÖ­ÍfìPFc—SìÌi€ôuÚY+½‰‡ê|¢GlUÑ*Jô€v•íì4?F Þwªú!D5ÕgR8f´æ«î™Í <úLØZÿÇ@«lÅ…÷jXjJ””Z|¤f#%Ɉd†˜Óä·Îô‡Ú—ܸ–SÄ:=CÖÑHáì™þ{_&·uÇz’=ÇŽ÷DrŠƒX»Tnýj|°Ýv÷Ææ\rÏÒ ¢¨ÊiÞg8Ù£þ´¨Ô8=®]ðy1Qª¦êÉÊßN¬:99€ñâß~>å,Š±ˆT$¤(&{غê®êŸnr–ìî?ít"ȳú:œã]_¾Ã 9¨O*È,–~-F‡g£Ë@ÇB!!ܸ“ÞUߟf0ö…öÌÀh•šUÖ id›¶È—fîÄU±ôã©8—ªzÈE5§m­7 žwÊkVÖ^çþ¬’fq(%ÊHÿ¢ÎÀú³XªÙ/D-È ìh`À„üïdé¶d‚Œ×Aÿ¤3”àè>ia¥8ëx z.ÀÃCh_šHœï~øVŸu0T¯ŽüeDeAâ¾iÀ½"·.]ìØC}V>Ügë¬ì>hÄÏOƒ «Ôp€‹Z3h|›ÿðtÀ(£'€¢¶ázèæ?ù1"¬•Ç#N;!a)X¢û9F9&cc¢n’pXaÃpþÙŒO @IóÜFnº‡4¨V*\(*¶¢%}â`¢‹o6Ÿ _=®¼]ôi:Pk×AµûSòzzÛÔiรd[ÉØ »ÅÈ[Ʀ‡v¼ ›¥x×11µ965sÏ1ÁóUß¼L†-‰ª1¥úSýöRuø`÷hI²Qð,a˜l~O¹{¬Ÿ‘–&“dó0.&íÀÍ€ÉáëE3 b°±D/.yâ3À ñÚ&/h‡ãþ?¾: ka†Ó­r$Hr:Jh –/‰ª?γ¥j¼²rt(~ò€?'sFc¶Ì\¿Ã’¤g(1äL6ZIu)å‘Ö¿†ïé~|«Ç²<5SŸù’èTµÖùåøµ¥€™!@Ë<ÆÝýÇW<6²,ðµ¾çòâ±Í$×O,@J’›¡( 1<’Æ!ÊÒë²›$wàL²¬é†\TBÑ}A£úž1h‚!_@rºiï¾záµÕñ‰h-3ºoñ9 ×"¢»Ëéh&²óÅ™9ÎÌŠÜŸ>¹8¸¤ºÃÒüO–›‚±];1{;»,ñ|*²þø©ôé4ËVP ºOÔÇ0°È$!Ãlƒ¦22ŠÏ ¸à `}8如àŒ1 ž’F[Zð0 së‰L¨øB©—»þožMÑ!+l@!ÿ6rtØ58^á\«-y& Êë§ËäÍàDqYÚ1êÒˆGY³gÇnßòZ‡&ðó©šQ¸´¨Nî?P‡º÷Hr)uÑ%ø”ï® ¯æKGv:ŒÒŸ« ^÷Ô¹/^{ø‹¶‚¦j*sˆØ…™°ViæCP3eœ¡L0 +19±œd¡^™ˆGmf#Ž?âá»)=ÐÀF ÃþëÅMÄlŸh‡òX>ý[AcìÀì‰[,^ãå·Þ9ÒR;ÑÏ]Û²pu¡5/vo›fç«ùã{ÁùÐ6ö0¡îUoÑÞ™ÊpôcÕùôØåÃLñø5‘oa=.û5Tn«7•D™4DQ¢á>·É@;“ˆÊœ¶(SdÄá áúgÖ~ +du8|Bgp+¥(šÛ®«¨1(ô?ƒøÄš§¶(N÷ábvõØÇþÝ)2òå˜õCÛÈÂÜ{ïupk¶>"åÚ¹×Omżï“‰•oGVŒäZwn±ÊAóÃlª+Áù¨À\·;Ü\ÌxuœAilŸ!`ñxµIÊÈ€ÂxÐ$dIÚ›³fJ90$Æ€s +æ¾­`xÝñù„ÓM5à FŽXÍ4‰ÓS%ŽÆ—zM +E£´hZÒ NÌ• ¢Ž(ššn¡n¼ ªŠžAYã°o‹ÎˆSrňŭÏ5'ê‘ 0m½^÷Jßé¬?uìß/¼úò(»aQFï¾èÊY<œ:r%ÌúRÁÉßœn×O¼FøGž¹?©†ÛÙíӆɟÛþòÒJ2^-ÿ€´2Á~‡³%øgã‹7Uf=1´ÜÙQËðf‡Dæ¶IÊÀüDprÖÒ÷ü¡F4Z%5Ѹþr½?Õ3«wÎÕÁ„¾uc  ŸðÅ‘¸ªìtg—\:㑼Få}i_ûB4oaûÏUñÈy5Ý^Ü6(ÉI¢'QÂÛ¾m¤Zíf_\W§º³ƒªB% hRܪÁ:µŠŒŒœžÍy !ä#ûëT ]B!õœV*£ ×’‘4¸ vâg­ž– —fÀè”:VðÿˆàqÙd +¸“°¬W,Ôá€îhi”Ò|x£í•Ûºëaq¶\‰PJK§p2çyªŒÏ½ÿÕ|ðÖ7ï¸O”Ø·s9ÝswôvpÛ-GoJ}¿½ t ñ“¨ŒFÄ‚Àb1ΠSMõ%AyÐ WF)"”‹Á<¢!攓°¨ ^@FÐǃkKŒ†’º%–¦º¤µäZwzO–&„<êd½"tUZ. N“Áo2;¨ø÷6D®Eô·Æ•Üq馕˜lê ÍÄùÊl¹L´\39q6ë-ŒÅf&Ûu¡‡‘±F(8ÍqrÊ]SçùD3.Æ…½Çª¿¹4jÕY¯Eãû^­–nµÖôË}rhã-â ;¥Ûd(:ì<×ÃúqPF:0 H cZa@nî´ŒkM:ÆbO°õð$wZFÞ³u˜5Å´Ö[öÞ9í4”*~ƒÕÕ»#7®ÏN´nÕf‡ð á_T_ç·”<ì'êZ£Ö~okF)YJˆ|~õño@S‰b¡/â³4fŒÒ Mè·s4[Ào%†À#aŸ»×iá …‘f:]ù¸±#\Y“yM%ƒßÒQøIÝ/Éh ‚² …ó'+j«ww:´­ÏÝë<æ)ÕÞ› gô°eJoÍ‹SÅÈÓaO|ïdmIèÁþ1·Ç—q»ú5FÞÕã|z(Ÿn #_j|dgº`×»^çîÌPèéýV~ò,¯þ“8M-"7ʈQ ¶b>æÍ‹F­$ÁƒZ5„ƒ`(ÍÄ‚Þ ›á•6ˆÓØ‘“aqkúD0/%9Þ曦SÊÖ)«î̦žwuýkc|fj÷$O\¡‚[nµœýÃ#ìÁö½/|©¤ Æꇦ!¢ÆêC*}’C£â@&‰H›Ÿ„*cÊïÉâ”’qŽV°Ë¬L…‰,F€ Å¨ËB-š8j–$K~ÝIʽ”» ÔñR·tÝHßCù×J‡Ä™Q£¨çN\nô/)Æúê#úC@•ÄhÆa†i­ qÎÇÙ`Ôª8–ÃJ_¯Ãf5ó­r$ÌBÌÂ㘥 +Üß \¢P]6P£Á˜5 Ÿ ^z¯n9·U0f†ƒoDÃWÂ#Y#1ûݧš[ß:A7"åÅÅr)¬9’_î?44ü õwÜwAà))xƒC]S¶/á*fßoŸÃ£ÏPrN¤)õZûêÏ–±éÌ™Õ.#‘_…Ìr(-3Iž4¦qLÉ;8p Ê°ßí´óz-²ªCT~-)p@<.Ô= ŽBæ؈ +Ù/m +" šWúã%FfHFÁÔM¹ÞÜ©àÜDÌÓ½úådµä³â~æŽ>àrŒìŠôG½ZsÐyÔY÷þ`I`ëò÷S×_±ª«¼Ç÷ù÷p¥¨Ù Ûögÿ!Öü*Š®RŽýx8'eRl'ȇ€#õ‹É ×HúqÈc"5%-g—t/+Ãx]v›Å¤å©v†²R'%è_KVnWh¼Ž/™ˆXšwþîöÒÁ²?Êççxk5hUf6‡¼í¬¯Ö +}ºkW¬I±80¯1YÕöˆ»ýñæ«'F&´†O<^Šo4ˆwëQ u°O}íQ|±ìrê¥ "(Ve˜ûôÜþŒŒwví_–vÌh>F$‹>»Ú渢Ï)`®vß Ým!æM„-1Ç;;ýÄú“â‰[¤^ùúqÍã? 9ò2ÚN_E·,Z›Ñ<Ü_&ªpß‚ÓSXÏz‰e$àwÐiâ.òÂó-8 äá[ÇÐv¸à< ×àX„ë&ùjâÑ8lôf &øŽtfû†â.Z¡Ï¡Qꚣ³h‘þjQ£p@lðÿó44!|f'¼{5þË~Õ…DEáogfgµveýIÓmsÓ b Z*rÈ ÑEs‘!öAbi5ÔÕ‘]eÉ éw“(¨ $BzŸ¢g‰^„ÊÇ¢zì¡ BzŸ|©ïÞ´?Ĩ·ÚåÛ9sï9ç~ç|÷:£–„å)ãÜŠœ·´œ¼æÜ1¾ã¸®-‘ÿYCÜsQí=ÇWah™c³ÌT"HºW\·Ô×Ø«Ìâ 9öi~ÖÒ…$ó ÎiUgœqÞ‹8(AT“#”I¾•÷qŽëªËŒ3è“c ýÕ0û5cŒ1{X¯F«è‹Öƒ=wè3eÀ5Ãëù-±—”Ï̹DŸ¤@ž¼»%·)®i°0𣹘N^‹œ&µ¦Ýµ0•"W@]„IÜw?&Ÿe©µÉ>Ç…žìÙ~j\ ‘;-jf|‚ëZägíí"/óõ°§y?Íyj-z®-Àt´ìzJ cÔ€zz¦C_©Û +º…–Â÷[-ÅUêÉ} tº±‡q¡¡Œ™CÒ3ƺ ÷âú'®SàøAôyNSSÖ)´”µ‰Z§È¯QÑ3ÆGÕÜý‘X÷}/µãÔÓÙ"Ö`¯ÒRÂôKèQ˜ºI[Ôú‚{{‘8‹Ir³óÖŽÖ‰?ÀM/×ÁÓ¥Žªx‰U2úÀ®¼Z‡>Ç3_¹>Ú(šŠ/¯cË5¾‡7ý3|@ÉUþMjµá/ú °†Ò§@OO9OUEˆxTžªXsÕß>c£š»¢æàx`ØñÖFð°ó"P[AÐ?Ĺ+ Ô5õÿñA<ÂÞ` šê‹àƼÚt%`:³›Ø +endstream +endobj +1163 0 obj +<< +/BaseFont /VOBDDX+Wingdings-Regular +/CIDSystemInfo 1577 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1578 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1164 0 obj +<< +/Filter /FlateDecode +/Length 2681 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜îÁǘulÄiìnu ¬ ˆDI¡†D®òEa˜Á†—:À€‚ät%¢#*ˆ +béÖ_ac­1ºÙÕµ*Vå4¹¤vïàî&¿¶nõ­{î=÷;_çœKŽI’3ÃÕa-Ñ £è&¢$è²Ò2õZa‘W@DdvºFX!$jv‰1• ¡"‰± ¼ b)I¬‘!ŽD„±‰ ¢I‚Ǻ!ÄBOØHŠL$?#ob.J|$§%ow8öIåÒfé[j.µŒê¥'Óáô ÌEf’]“ýËi³SE~éeñÕeϪ˒RGqÿ؆ñý”£AùA•þF!]eÀnŒWÒãTÜÄü¶)ñ +c_!»%G#rdBNp‡Ü G$@ ÌÀ‹Þ¿æ»ìqOW%½/“—‚»( OA-Á™¬ôí>飡¯Ÿ¾UÂŒ%A‹V¦&Eq6ÄHOž±µ\cï´§Äò%jµ¹ Ú{• "iùË|ø½8ÜÉN—ˆga)cÖEleÑ{kÂ4྿õöÚóòÚø.˜+­Ñ׬fÑ´ME($ÈŒ×=ÅË!¶Ñ8r‚ "%CLq×àÞg,¸€ÃÉÁ¯ù;}WžÃl%¼óÔ¿ëUû6!†ýÐooAAhc=Tgmex‚f"Ï>ANV>/§ÔZÀËQ|“ql™ÉŽ-[Æü² ‚Æ–ÑòúRðÿ³ï,ƒ:*6¢ Jþ²É&à \ñi ,†ìÙTÉ‘Ú’:öÅ“&[?¾ûøÍ»Ê{©7·trgbê°ªuÅ…Ñ<¢é˜P½µ…½Û© +Ûš´nw^YY>/ÿ VÀ¬ àE8À[©“9¾õ|㊺M‡M2¡rOe½6ÞË4ôÄ5È*è« Ã7Ÿ*ï.mëàº7ûS±Þ~Å…›íÁ¦Mëdo–tè6+£µ\,%ïËljVÙ ëÁB$çÚS÷ã( Q/þ ²"GÐÔ¯øe§“Žu*ÛÚûï^ÞÛÊuƒJÚ^ãË"?7/4ÙíA0P üÃŒ¶Ý)Jí.cˆZÝÔ´“w—5ÏxÚYàÐ òé-°hX«ð-ÎÅ'-½6%øÒ0mÃhõüu{vr§-m8Ý_…©É2ñûhôa š†\”Š¸•CkÞ\µÕœíâÊ)…ßámREƒB˜‚ÒK!—^¨ËÎ`wkÛ{Î7ÝçåoÌ0‘F‘ÄJ0M5øÀzÅg°ÍYa«–Z©ÈŽþÝWX Àñ9ðàaýàȉ Ž6ìÐñhBêñ>JñY¨%ز“ƒ`è`ªÊðຶêbo¶D©y…mµ6áIº/Ú‹¸’Ê’C‡”ò°|À ³Év–ˆÞ0—)ÈÊØŸÊGtó狽wÏœ(.ªãOÁ,éÑäm’XéK]@Þ?zÂòþ¾Êê¶ êó ®é\˜mçÞŽSãj…Mœ4Í J ÝžW»‘E²¹žhe¼þîÔõÍœS®TKÁ‡²tX†n)Å>Zaÿ’ØKò,ù\J±.#‰ÚqîÁH˵›Ý-iÚJ¾¬°´°H)oÍ—[ ÿ&aò«Á |%b9¬gÊVœjSNh) +òGnˆF‹_{‚ÿ­Û•'np™0EúùÖ­{cÙàðæ³ÅX;9Ó^Þd»Ê^¯Þ¤Ãå†ëy\¾ƒ9¦VÓôG¤#Î0þ¸xÓŠç'è3Í_œ­¯±ì«æ÷+€“*Fff”kÙ-¹ší|\ÂnõFeN0rFã´ü¯H³ÃLجù:ïcuFÅY¢™Q¼*Þ$µPç2¶ÿ”EÓÜTÈ Í{æSl_Õu·ñÖ,꣨äõ u»8-r•zïåÞe>¨¾t¿q¥nô™šhÅèkOy‡BP3c.ݳ?ŸK/6d¥°Q».Þæ¯y¾§ã¸1¹Š++*+ÀÒ=Çø3Ì/5é]©)ìép5¥…ºª¬º¢Šk¨ªmìd/4$‡ñ¨;uÓÀ‡>A’ ]±ÙÈeæežc’Yà8RSò&£h6ý >"1šÌ΢'ÑL?¶…‰HJŠŽéÒ \?Ó}‰·•$Ÿ‰`±ûX´iÂ×t,Ú¿`VTf;¥µà„¿I¸õì´ÖÚiuÑGK«áê*kNt°çê’"yÔ„:éÃeµ‡¹ãUõ ­ì¹úäPÕâý\CÍII+ÊÕs¹Y&“^f¡lÆèÖ`vù¶C6¿RØŠnI‘e³†ò?]Ì¿Šrá(à4]]v¬â]”]lOcJ¸=ºÚ… yŒè•±1ÙF¼P8,E^ÿE|bÆ0Õ À% +^*~±”A«TóÐbäÔB\·Ìø¿–îóߢE|1R0ךCW¥oŽ‰0\¿?Ò8r·úØŸâöÂíjþõu@Ñ ^çZ)}}OÖû8} ¸Ñ_Û •:RÿoE§Éu¯ù$ØM±½Á^R@I(ÑÉÝ“{' ‡U+ÖKYéæ’š^°lu‹|ç”®©Ó¤ø€añä»uCùòòE`…{ aqä{;ûôž©½Sä6OY¿ð€ô¼™3ä…§|·eîé«ké®–Nô)r(ï’Ö'¬¿õØz“zcl¥ø¿ |Ÿ÷Ÿqëw‡õß™W.-ßt¢ö¼ôw+_Êw]JÛ«µš#p^õÔÙRóçN^µyguÃ"¹ßùXge‡Îð“þ-já¢)ß´!à;C&ǪiÍ•R•5M©qÞóçäËñýnü®ö[°ìÛw `®u.¸ñ㉨ºßo‰¿ØfG­Ì•+\º½ò€ôÎÍ'-Þð]–½³±¶³B:¡vñ1ùK¨~W`çÛÒýÝú·(I Mþ±Z¸`20§~wþÓÀúÝ“í»ûÖßlQ¿SY…74&µf´&st°µnjÙظ)ì{ªß: >Æ ?Ö3OióøÂ:¡®·¹Uª¥½¹µE®¡¦¸¬¤©´©¬¥²sÃo‰ý'çÞsp÷î«W¿'ù~Fâw[ÜïÂÖÂÖôÖ"Év¶ÖÅÍë[–|/”à+îþ®ü=ù»ãâÞÌ‹Å~xËÝì^¶U+–¯Y±˜YT$¾ý1ú­ô=´ƒ=7§¤(7ã·Ðo] ¾úé?¦W›>}úâél¿Ó¦Ÿ™Îª˜þ],ĺ1SnAR<g7÷w ®ïÜßy¦Ïâáù¾CäÇ$Q€t·X +endstream +endobj +1165 0 obj +<< +/Filter /FlateDecode +/Length 527 +/Subtype /Type1C +>> +stream +H‰|ŽAhA†wÒÍÆÚ%bÓõ`B3 5Ic(‰ˆŠXm$’ÄCe›¶‹énœÝÖæ z {Pd-^Šb!ÞC+¥‚–J ¢‡zÌÁC=½ÁÝxñä~Þÿý¼ÿ âx‡:PÉæ†ÏËU¨*+yªGOé%ÅMÂvÙ}¼%–b !¾ùëºÖöÁ»ýëör/çAèó÷ÓzÙYœš6ññt:qu°£©NÄãñŽ⬢O\¨&™1ð°VÔiY§²I”ΖJ¸Sa`J Bç\ø÷;X50QÍiB±ì„Sª³O‰‚M*+dF¦×°î&ÿØÉÿœÂª†.<¦©®+˜4°¬)N‹Þ¹RÔg5“ªÄˆ œ-ŒVÊŸÀ +™äœ‡¸>î(Ç#tñRcÛ®Öörôp£«ÆÛÕV¾]`­K,÷½Ðf«¸¦}Ï×Æ;3d˜ã{Er'æ:?Œûí•Û Â9@pÄ^؆ A"Ь¿”Œú‡Ù ¤wwÀ÷uäÍÐbø®/°ûåÙ«×[¿e>²pjÈ Jÿsæñ>Z^{¼Üx¡)£çç/ß çz+šï7´ WŠäd.÷t±öC}i®•¼6!ÚµÙJJ¿“m%}þ[–}Ó‚#–e=±6imY>Í[ë =údu÷/M\»kbð{!ÒóóÁCQü#À«Çõ +endstream +endobj +1166 0 obj +<< +/Filter /FlateDecode +/Length 1455 +/Subtype /Type1C +>> +stream +H‰|T{LSg¿—Ò[¬s­eØkz¯Ã)¬ +"ÊF|â|0Ôb‹T Å¶” +(EʳÆ+ E +( À›ö™5kÖ¨÷£Cäêh¾K«S$héPÕ6µ&Q­‘ér)ORhiB«ÐèÉ:¢•ZZ¡ÔÅ*4´Œ-nW²ï5 +9­ÓÈ䊙&ŽV;*ÿ1ÿ#E+U4ËEG¨”®c“ZZ¦’ÏdYÔ£*ÛÔI*F©ÐJg. _»+QAÏ¥åŠ ÃYæb˜/†`Ø"'l9†­ä`8‰aØab+±UX)öˆ§à¯œ8iœ2>ps²9w':ǯÍkf^7㬟ÚÌÉsfLÃa#& +Ñ- +†o¸0H ]Œä›GcF,&˜‘#BÄçŸÌ°2—­ É‚ ÂÌ©~QJl„q‰æz¿ƒ@XüÇøܼ’žZI «Ë:¹Âݺ£$R wÖ¶£àŽ\`M÷¥¥?¥Lmp°Ô™=œG®=ÐØMt™.Ä“~Pòõ!Ø>b÷©Ô{I¯R;⯮?:¦×Y~óv¯¸ÅpYyVR#[}DJ®^‘µw Õ³Jd.>k®#r[~âà° R‰Á/Ìë[¢öO˜™ÂD°ºBæ°?WJ Ù¸Âê_µ¿aÁ˜bW—¦[Õÿ¼t›A@â.ŸÎè`°¼¦—ÃL!2jvìÙHz-|ÎCwºsµÒ˜^F»Ïµh£¯'‘ÏçCžÈã˜vïZ©åÅ/2vÊõLðˆKÔô»°‰™>)Bu9¼Ú¤çCH4nºš“O¡é}0¶ëö¥§%„0ÍÀí"L•¹Mõb¦›ç;bíÎM7¥K„M¡©ò0Ò{Ó³7ÞxÚßv5*ü0UhÌO3Šù÷a~+¸·â5/àÐK zQ~QAñQq¯ (䃦ÌA<4 MëõÏÇ×K‹ÏIÒZ¹»w(Œ+Hß/š`|•ß*úá`mw/ù[¹_x.ÅG?•éCòï€ îîiÂWÆà;bà ‡†Dq:m|Âqí¹óÇËÏæRçôå;$|ô°L?™Œ[í««}8Ò—àCËôИ,°Ú Áñ6á3«« ‰’‚’‡% ž#۫ƒ)Toƒ^ia©Ù"©/©­n&;«Â¥:mƒÌ÷®û**.=I%IN3èÓÙÍ}¯ßx1” Ú¼5*‘2¦ì'Ü`¢p[~ôF1?•guÈÚÁh>fû‡¦ù¤©¤ñÒ-òù™å (Ta‡:Ìs¿¸,(|s”V’C³žrüË“ilcƵ±·Wú8pŽÙ'Bâ)ÞÈÍò‚Oa,LxKÁcÆ¢¨œPÑÛKî_1?`Ϊ§ï}ËNR—ñ ´q™×"4æËe?£#¼5E[Oî”hË*÷\"«N8x„Ên㚌)&™Ru‡‚b´#P<~¶ÑíX† Ãiva#£a "_ÔL¤šR³öHä©ÑÑadúîe¾è÷ËÙ®]«=á¸)ÃùÜ'„©&·¡YÌ`ið"f§ˆ¥€¥#k¸fcÁþ,q–iö^Iòæ¥Ö°3Iµ;iÿñ·ãæú’úš;-õ/[a¸Á7)á…ªÓc3böª&åûΤ×+¦@­?ÝÂ, µX,åÅX[x’²è-.có\Æ·³·›]>‚؉ì—ò·VÉÍ +endstream +endobj +1167 0 obj +<< +/Filter /FlateDecode +/Length 2092 +/Subtype /Type1C +>> +stream +H‰|T{TÙŸfBd6ˆvfj} +âVXT@ݺuE±<A‚¢`‚á- *$Ä×B‚•µ*ˆˆ/T(>_«]¬mW…ªv]sj¿¡—=§öô´õÌ™ïÜïwçþ¾ßýîo®³·ÃD"‘,2."z}”Ïê|UFJÚ•r~Œ<+#U™™f›åxZÄËìyOg)ZˆÌžöMÿÚ„Ã=x?õ¾§Cƒf'=\¦ÌVoÙšÃ- ˜g‹A“1dàïï?ƒ¸ˆ4eªœ‹ÉWçȳÔÜJÅf¥*[©JÉ‘§ùr™™Ü$…šSÉÕr•Æþ¬‰ËPsòŒœ­r—"LnÉÖ«äi\Ž*%Mž•¢ÚÎ)m3ÿ“¦ÿŸR\†‚¸¸õŠ [“#€j.E‘æ'°('«lVîTä¨2äj_¿¨˜uùÙrn—&OÇ0‘ð`Sí0†ÍÄ0? Ä° [&ÆVaØj1ƒaëí°x óZ‹­ÆÖ`DZN‘½¨Dt׎³+·»-ˆ´°Ï·ß‡»à‰øq|” J‰N‰,¦¢ƒ×!âÌq…=¯_3¡'ÀŒîHQÂaˆ@º![2qP2A$MŽ! 9ÁwJm#dËH4Fj‡ù¼aÑ9p…à"†“ã^R4o!òDI,Š¯|<Á›¿>˜rX·8´€ÕÏ—þ¹9ù yà²èä>¨d!Äxµ÷MÖjÆ™\hÁI Zwpgf(`I­/8ÝÅMY1Æ'Š`D¨Å繡ã&IW;ø?ú}ˆ|‹f†.WÈ™æ üdc{}ýªáw_°Æ…Ë– ùhFØrO%dé|ü¼5 Jp•Jë*êÌýžéºáðøáÕ`e°œ¬Â+r~ +øƒ«µ-ŒÉXò¹">%cúEBABy–>Ϙgr€p^#}Ñhd ôºòÝLfÞ–œ8:ZÞùØÈ>o»uŸ!ÏêÆø’1Q3HÅ|8J‹¶oÐÅÑhnÐ÷0‚G^ÃÇ·¯”ŸeOÿˆ[U_]L£Tä‹dH…RÀÉ`[ïÃÇëYœ+ 1þ̪Èu{8Ü‚J„߸Ã^ • bã@Y?c®l o[t9b:,GB›¨ñ`D ‚::Óthc 2Ÿ¦=Kú Z +—<÷S0AZk5pæ (‡DO„æ¤)~â. ÎÜ'z g•_~rd]U®PDñ©ügš—ß(®%s0Kœèîî—ui®¥70ç“Vñ¦—Gíݽ‘2Xj¶œ4·Ò/:3"VlH^Ä.%ȶ + gkƃsÝòT6oçÅãÁ8šFx¡{8Õ’ªÍÿÄÁ@ä÷í|¾ã•t{ ŠŸ‚q²^ûn•†ŸýlÍu{.‚Y¦REð‰;Õ~à©à‘ß6ÝV? ÁÄý°Œ…¹•Á#ȉ^›™˜Åà2r™è!¨¢8ÃzÃ6(h”ZLÕ¦/™›5mÍtßÅÈ…,Õ:,vSKû.Æ𥱪JFrºwðÇø‰yŸR:«t²ªk”0Þþv˜¾R¯+=Î~=ˆ[•«’h>Ghôlä3â óîýÁj9Å’'µ#+4üœïm²›`* ÕÎ{ŽÇKQ½AÒ¼3¡ngy£Jy·'ÝçnÖ3&Aíþ0ìC£áf‡Œï‘{(—Rí»Œ%z-[’œG/Iþfàí•žç·[ÓªY“®²D'#7ë†Àí58½„Omà æÕ — +û=vBöÏ ‚£(¢¼†¼! çŽõè%&ÿ^œžº{-½$êüßõìkûŽýg¿ý+Ýw<"ÉÈ’èF­†/Ì}ÓݺAÓÀ•‚µî|!r(”PïïGIS• +yúiÅÅ˧ë[ØóÆõ)4‰:…;>Wô\ÅÜÁu<¹$´ l3Fµ¶“t†èŸß<©^ág¸HÔ˜jö[˜sÕ ÍWé®Ó Ñ,jð6Iù°ÙÂ4YÎ\¢»ë³èk¿ ÿÐ[‹7gêò²™œâÜÜ‚lÁB75qÍŸÑ¡ÉIr5«'¨ö²?á¿$Ì)•‰12òÈË»B¬p"ßÙ´A+QSyx_5Ób=×ÔN?>É¢:Áj—$àx+xqìF¹†¸Úö>Åö²CÚøÛ¡×ìJ ø2)š3à !ÿó€ˆÝ^œë=†f±úҗ炽â£"?Ýød¸·ée¿ÐÝDAmnݤ¹)« ÇöÔ½“ÕTÍܪ¾p¾›>\m0T±”$Ô=“nOe ½aíÖ(5[NPõåC8G˜“+WÊH”¢…;ƒ¢~p÷óÃRdé׃ò%ŸY’O)Õ‰óEmtëÙý±†a\¯-ÔkèĆn¶ƒã rVBZµ£Ñ¶w{(Y'Hjã|¡¹ kD±~W¹–Éܵ}k<½jGg/ ǼU‚{cú¯w4ÕÚì›w Œ0\0\¿##*`Š÷$a5_DeW \°r¢‡_ð9_ˆ#w" UwÀ®d­¼t³ƒž(½ k-¾ük¨ð c|4üû\Ñ!¾P|ȶ0j"?PR¹§L¶W¿§¬”)Ø–­È)RåïÐjÊê~åÑ°¯ãÈõËw:ÚzÃ*á{å<ˆpd-Ý^ºe·rºžØS§kÑ „²ÄÂZÀÇb±üÞB tËS‹D€ò,à; 9ÐwG¦65ÙÙ±ÂÙip +¸8 V9;óý[?ˆ vì +endstream +endobj +1168 0 obj +<< +/Filter /FlateDecode +/Length 682 +/Subtype /Type1C +>> +stream +H‰|P]HSa>ÇýiŽù3Š‹/©È¿i*¨†Ã?œZfi›çÌÚvæÙ25´‹A˜C¡¢NHÂPVv±DÒþ «‹2ºˆ¨ GYD„ïÑO¢sÖMW½ïó<¼Ïûò’„: I2§¾±öx籂Æ!³3-_TË»+ïe×,™H)C-íÖS8Onwo·jàY +¼L{¾u8H É÷ëVÞ'Ïö¹è`UUi¡‚åq¬(D¥%%%q,G5 ï`‘mÈ`=~Tïíå/Ø,cA5n7ŠGø‘ÀúYa@ÿ^„8?b¹€‹]6û8y^`ì ë± §¯8ÿPçV!΋ä,Ôîåf È¢Ù½L±œÂÇ·ôòg¼cý–â:[ÛE•ˆa„\)Da$2ü9¢‰ðˆß¤ÊCKÒÆ)ãÞ%UH-mµìŒia?¥p5\Ñ@L‹^¦@!;—u;ÚîxÕXæZé!¥tXa„ZrŠT¤¢·n/¯póö^§³³ã·@‚ –š@MÎ@6$B¶ +¼[û)ljÆy¸ZÄûëãObXq>}«©û׫0óF¬ŽžÁWP8ACÁxøõ‚ÉT$ €RI©™ Ã]º{QÍÛOkßÀ;ùç¶Ø=æ™}š©ÙùéÓJÄyÔRWZè#•š2!¸ _¡l3ú!k Ë› Sç"ÑÑeìYÛøþ¹ëqC˜žÐ<™»»ò"çCë¬mïö™oC#×"¦èMþDCãÙ®qz´`ZkŒ­>r[Û\Lƒ«ïêT?m8/J#"䉢xIÔâS⪨“¥A,²4+&b§øNL2‡=ú¤>y}d%¯OëõRuĨ? uò;õ +endstream +endobj +1169 0 obj +[1163 0 R] +endobj +1170 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1171 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +1172 0 obj +[1163 0 R] +endobj +1173 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1174 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1176 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +1177 0 obj +<< +/Filter /FlateDecode +/Length 13408 +/Length1 20751 +>> +stream +H‰œVkTT×þö}Ì0ˆ¼DAr‡‘÷ŒÃû­ wå8Š3¼AAŨñ­ &ÑšÖª5JcÓj“«µ‰µšJÒØhŒ¦1icÚ$íZ­éª±I³Zëƒî5+µ+z7‡sÎÞ÷œ³¿s¾ïž‹µQ]UgM—œ›Âž+\Z{Ü}›}ø)@©€œÞºl@Y×¾z? ë`ߪŽ¾ù=BЫn@ÿ ÷ߟ߽¢ãj^B `8dv¶»ÛZþ4ãPÈ™ì0<«TîbrgÏÀàŽæçVp2Ϲ·»·Õª¿íJOs¸Ç=Ø'ܤ` ÊÅï+‹Ü=í¶Î…Ü_Ëë•õõöŒî—9—곞xß’ö>éåcg¸•û± )œ¶Cöí¡ÅÀí“wké%t<« ȸÿønñ¹ÛðùÊeƒ»P¾tû$ã Š)ñÞˆòÖ!¼kÜ¢‰\t¸çäZð¾óßEIÖé} ¾cüÆú ?!4,|bD䤨‡c´irLl\|Bb’Ù2Åšœ’š–ž‘™•“›—?uZ-]Í(*.™^ZV>cfEeUuMm]ý¬†ÙgcÓœ¹i™Ÿ5eé}|#Bâ«ŽF׿ܭÿn[°°§{Ñõœ¼Ü|õó’â)V¿þ¹Í‰…³w~Y0†™ø;pÃæÍ®« -E·çôBn–9xGg¬K2‡'„†Ù‘úOÌSj™&_ˆr"G'Mää£bb1¹²ªþ–%<ÁtÏ,’Ä;\(<ÍD¬ÃvŒ’HA”@)TGnê¢AÚAO“&œ®ˆ¢hM¢uCIVR”\å1::üzòè¨ç,ñ8ž")žÇÖ’‹:½c‡éEïXxÇÚ¢†•q<6çÞXwìÿûäâ¯x†Þ stží½Mïxí]zÏkW¼ö‘°C8ÏvᮉÑÌ 2tÐ3{ ðÅø±¦ü€@!ã˜)ã1¡C8ïL"1 Qxˆq &#†ù‡x$ I0Â)°")HEÒ‘Ld!9œgò1ÓPÀ-d1ÙQ„b”ð!”¢ 嘙¨@%ªPÔ¢õ˜…̆N4¢ s0͘ÜhA+ÚЇÅX‚~þ¬ÃzlÀFlÂflÁ·ð(†°ñ‰Y˜ûIKÓI¥R²SQ9Ó *¡t²R¥R%S&¥`fzlKÑÎõ2,Ç|®»°ƒ÷bÌÏ­›ý‹ð®aöЭßi ÐVZ¿Ðô”£ ¸J+i=병VÑr¯mħ¼g÷mðk¶ õz<ïsa-èXÌÔZtß>y{dô2 Š#òù°|Q¾Di˜3ø#Ÿß[|ÖÇ™%/0{žaFíe®mcîmenaNn`~®Áj¬dÌËk?ó¶—Ow£ë`·0§›™ßÌõæ}-k ’õPÎÚ(a¨¬š©¬ ,VT«ËÊŠ‹c} ¿¨[ _“wÊÁÒ-©HR%I' ÄkâEñ¬8,î7‰«Å¥b¿˜&ZÅáŽð±0"ö k„9B£P)¨Bž#X“ $z“Fèíã[gí¤mÌ®~ryq~À ö }9’ùœµpŒuáÁ}˜õò<£?Àø÷²¶v±ÎždÕ=¸ wwà>~jæZ/ÚRÆéÁg…Ñ6a|ȸà Àÿ±~c| >z,‰Á|”•aW†Z†LjGƒÅ|4°×jHr„æ8½U¾·Ò|ÙpYÌIü§ ‰óÝÔ¢Á¤!1FUJ”Nw›&Æp­h’ÝäVÚŽØlCõ#?G`ŒtV;< )F)éÔô1Ån 5c„&Û³î6gÃd5݈°š®òÚIß<»»íß”cÔ‚«ÿ3¸à†×šc10l¾™íŠ'É¡bM´»»\E.Õb.V4Ѥ%A¶/³›ìC&h’I ÓÆx°òlaÅ]šÍ­xóÖ +#¸íij%Z©Ó©É&•§ “Ú¥ &UóK ³˜•âÎ"‹ù_ òèi•“8$ÃS+ÊARM¹ÕÞ0[½C³¹œžõ,fÙƒìœn +,æ)óës’hàù½!³±‚õˆ¶EÔ:褾‚ô‚tJäÐ)=A'Ĥ$%ƒŒAq\ˆ¯+ã-UÆM¥Wnª¹¡ÞçkPc\šÖ3^ìM™bzBVQêÉlòul `¼SÜyÈÞúO”{WuÔӟЗÙ謲©ü˜=-Îé)­9>Cø1bÇ2h$|N* ÖCŒé¢3à j{é<ŽHé"ÒO ‰¾üô£!«çØòâªÛ¿Úò¼{û‰ ý"'‰s‘¬"íŠXŒ&‹9$çÁšP$ ‡ŒÁ|vȺßÙ³ršÖ¬Z//¯éZ³©)ÇfV0[ÚW ßÆY¬ %ÉO”c¬æÅôÕ[Ô.:1‹«Ø‘bjN,€ÄÉ·gèA[ŒÎ‡8-nžÆÞ7/e(Ztç;é‘L&Ÿš~üP§NM‹KƒüJˆ njË0I¸ÂœLK*i'´¿¹Û=¯»ªgkvV…`Ð ~¾þå•þ²®•Ê¾Íõóc ³æHWWWÙû>è»ö »rmSQý³ñZFæ®ÝÓüýѽë”~-ÇU:•X Ðê]*q½„U”Pµ±(ÂæÍ—LtN&á‹òh=ѺÐÉÕxsLœ™sÓxÐÐL>Þ¾Äa]ÅòpXSÈp¤4YP¡?#Yª‹†1š8ÆëÁƒ¤ðȨ8œæñOúKÓR±ývßÙö/ bBùf$x¸bÖœˆ|þОW*–ÈuAƒÕQœöüØOºšŽ‹.zRjîxõY¹?pw8W—ýø÷ûŸÙ™0[ô=„9×Ûµ»5Ї|e÷#Nt÷u±¨€EèÐ*pk©.²@¬5ñäʲ/1z·Ý¤#¬È¢›Ä É˜–ÊbÁ›"Rr$U²B "y°KP)FU’ß#Ñ©Ï-¤ögÖ´ƒ±ãÖ€ÿÙ§Þ7x÷Ö½XêËd”&èóѯG„Ž©(w¹QþHm•™F~1ˆÒËT]Ùäé"“…ȼ†È„¨†Xužh¤f^žM|E$ˆªDeyõ­¹´ÀjÓÀ\¦O‚ãu烥%>™=¤Q‡!2C7?Ð)t’{AEÆ¢b‘¤à 6ê|¦ÂR‘|š\`ÄSÛ·þfÍŠówzKv¸ó«K:죵›N67®øÞºXÍ3ÂÜ›mm7£ÃÊ_™O”E«–]Øtýè"›¥gÜ>!?Ñzj]ÏxëÜj½‚ÛÞih†Â6{XPµ%Ž•ª“äÀY*‰ÍN‡)‡á¼µ3âÂcY….^m…À¦Ãˆ‹MçˆofÑU¡ÒäÉ$©ˆE2КJúÑ©¢£á/=ÜÛøËî’7 ~«é¥›£O§%æ·~°³½¤~ðì‚ù#öôívý°ìù‚–#×zþŒ>œ +移ž;ó§á¼òâ̲ÕZºÞØÑ@þõTuñŠ—¿þÃHÛáUÚg1wåy33ˆ„w Æ&ê­Z`W.±ó’.ƒ*Ð+¬"Í‚gF euöÃ'’G|¢"à`®®ˆ„NÍ|Üï_;õY‰ß¤5Tpl¥×û@³@º±Ùä”°¼\“‰Îû/R¸¶O~Ææ—}u~AÐÐÑ©eXù`F¹TŸÅ.¿‰™Úñ–¡â±ò'Ùf-pñ +ÅÜU“–ì·#›È!þ¨n6Åjaœ‘Î ¿YÑf83Ða”§Æc‹šGnBF…#É¿á oÊp$]my4þøŒˆËOw&V-8tr÷g/n¼²îÄö-ý®_¿òä¾æ%^¸¹áJÅúù›võ²;â;;ëZJ«îüx m¢oðý’ÆŸ®î?·dòÓÆèDßðxëÈüå{  Ò;Ѹ1¶½÷É­*ŸvãŽì§O㎴¨ÞL/Š¥Ù•„‘°ß¸/¬ÿg_Òßù>é««—qw–ÈõêÿîÐ℺Cɵ„,'êýrB=Í©¼Wñ4=•©î£Ybž Gj8*ê.sºÄ‚-e°mB%„¿{\Ò/l¨Vý‚«zAËÌâN…ÖáÔB/Z‡´&+¼ÓXìkHMP»rzö@ÄfGƒVÕG„ +WUœ@×Â?Ù"Ñä²Í«9î Ìik\æòuL]šc.),kŠ?(œ½§b¾«\„žymÙÊߧ(ì‘o7ë–:órÕUÊ$7)‘D[÷߇J÷Y²Íšä‚eTŒÒÑ£·›'‡É +•³¡é‡Ì1vo‰A*F5Çê´ØÓª¨AÏk͉—•ç›U¸pÙÒŒËI¼¤Ó ¢€²ú(Ö ûŒ FÝ'û @ÏÑñGÊh zeðÁ ¯Öà&®3ª{µ»òâµ%­¬‡­·W–,K~ +IvdYëÆ€±‰<6œ %'¶ UÀ1¦œJqu”¼J2(-!u[š ™’)4L’Î$Mc³î½»’ñ‹Ô#ÿØ»ÍýÎùÎùÎç— Ó€`ÐÆR²D”4jÝ]“”«uãÃìK–ÎΪݰÏøcï‘—j:õu¸ïöËÅ[²œÏûsÏ—¯Ùx¬¥íÌÖHmmMÿ{ cKל—_ê²(SDË'à–––¤ä¡ÁúÃ}Íø$?…{ïtª\ûÓå°LH%žÛ¹ì7ršÜ±kd+Ú²ey¼K+ƒF@³ÀR¢À‘ ²È'hêo…è˜F.'îúY +<ˆNì’Á€urv©Ò…&p*òJ ÄÕ“­%Â÷ýV¸rýg[6mùC[F[\|[cû³½Ÿ Ô-?9ºgÝWÑ+}¥+ÏÃñ! _¾l¥Ï~z[¿+d溹e÷CËæø±&rQgBÄ›9M„÷#Ö(+mFà9%œ8+4b¶” 0›Ž¥ÊH")i–܃$Ô„EæR¨I¹»yNä(Æ™ixîRÕ’ÒþÒÃ@ýÁšÇþðTÛåžÀÆÌp8ÜÊG|çËÛŽÎ_¿«ºý7ßìœÈ ÅM‡¿ÞùŠðéµÙ.»äºùö âüHX¥wÌ~ýVÏÛÿzºPdä¢U¹HÖÌ/ÈL×ɶp, +BZ¥€É€"¡± O'È![QU̇ÁP•Ø«uQXEky:ìu;Y’õƒù +Øc ¥Èâ®Ý‰K‡><ØôH—ˆ8—Óž©Àõ൪ç\"ø؆åŠqO¼ßkÔÕ+êÜ ªtGËvu°Ê(»A¸±º¢}ÇGŠYQœ€w/ÌÀ»˜CÛ{µ¢Z­I€äuÔDú$þ3#Fð ð€…>r“¹{0òÃ%®æa¤f?Ò +ɳ’(’HrÒ6à™‘¦ Ciâ¼¢ri[2"ö*šŒå"›‡Áñ1œ…”ŒêÅ¥é±q«q¸“Ô>EëÒ:K`™ˆ V×ñÁ†ÅƒI!•¢õÒéÊÂðÍ®`Ç·Ç®nsG›WŸy_øöçûçòúWèä¯8lre˜ |ZJŸ'¼j,0·ï}Þöfí_[YaÍ: Ü~çcáÜ)¯Éç—êDüÖËñ%a-žM™6K2M"rç1Qfãc +™|¦ÊoJ!X]§€sÈIJŽœm÷|öÜ& +6Äí@üóÌȺ“â¸G3`p´ +Q Ø‹‚wÒ9yó~øù¾C¸r6 ¶Í9S»âðÎíâÛ¢p££H|Û—wчˆF™Ø +ÖNp‘$…â™Û#ñ,ì&°¶Ó*žáñ‡ãÈÁm9´»ðFI &&‰Á¬€’ +ÒHÀIƒÁqo Œ—=½ÅÅL½ù´[ÊÀØÂFØîÃÉrx;pžMR#6-Œ‘Ig’kE¡·G¦A·ÊJh] +eìÑ™ù (êÎ? upº`aÉK¬*Y_¶¨\¯žŠi{ óâƒ5mÄþWeèaâdüb ¨$9‰n–#+æ½: òŠÚ +@Ð:¦ÒÚ,†cì CÓ€u»AgD—ôÆ/)mu¢cJ¦  &æ "S<àVÓËU,-ü{Û“»–ÝïM¯vð¾ÉˆŽ «\©¯ìÑOIž—o7.•_š +º½}ì–bºý|Y_Á›4rÇÅIú¨aª˜r&”2%LÍGìH!f:ª€U€åX"’%^X +N™‹t\8Q!4:fh +ŽR ÝVÁ.þnâtðOÎB8J<¡/PÔAVìŸ_>>§FÉ֠Я‰jÜw>$ØÔhKéB Ð¿(ÐMeñÜmáWØ2—óÐ |»ÍÞZÞätÑ,î´.K…ÁÒ%?R¼~ô¿î“âÑ¥]ƒ”Åx(¾˜•Fz‰ ¢÷Rò¥£Ç]£žAèñ²>àU…‚ÐGkÝ4nJ“Ê$3ILaŽ.•PçÒn+4€ÓNué¥IðT.H£`ÅdÄòò¦ÆAà›ü,A¡U£ÉášÂ[bñMÝœ:è”SâSC—ÝÙØ‚ÐðÑÒi€}7¹Ì¨üì„G±ZkçÈ^Ö¥±C£õÓP’ÒÖ5ÊŒf‰R–‰6“*”„Ö¹Œ´ïÄ«ŒŒi 43ñ…‡ÌtħÁ¢$EÈÅÈŠù +½€N9qExãwgÁ²/¯ƒÅï_vÿiëùÍ‘Ê×ûº?xŠïs¿¾ø4ÿþˆpáïŸ +»ÿL>Ý|pøÙç…‘¿v.}훾ˠðÕ¸:"†²¹|™ øóhÐë ?bEAÐ < :Ï­¦ ‘°8•”z»£HFzÇ­Ž‚ÅãaðÿÌ{á-PÌîÈt»çÔ¯ÕV¶¶ Ú„_¬~wçÜy±7ÛÃei‘hClþ¯­#¹‘á©~ø„ÙBŠC€öÚ'·½¼©œ©ÕÖïh:°£/¼(¢ï‘•¡Y>Û’aô5jy ”Iˆ³–¦Ñà3›Rg)B…4F4Œ¥…h2VèB¬ðñêÄ4#1Bh h7Ócëqº²PJ€MÊÏIÜúi¤åc²½,Œìñýd«¦}ÇÜâЉ  Ÿ¬ +e˜:ˆã~ó7áÍ3k>æ^‘ÎÞÏû6_è +u‘'0û„\ï¢ÊV¢pp€ñlÐÚ–ZÕåå[UIÄpÿ?÷åGëš$žGÿÒÙvüö/îòL¶ ž«eÕ|(ô°*bG—ï‘üÌÌ„Cv’àí.ðÁí^Kݧ€é ’kTã‰FŽ%!BiÐáÙtú„üòТÿ`Q0±¦M™x´Óµ8:W_Ÿs þæ»_W¹GÍjµæÙÔyZ!¦ ™Me¾ÔÒßHugß(w¤DÉ~Q]¢E¨d(à9(¾Gë‚J1šJÄxR ¹lfúóËý!„iˆÍ&Ø#0hìÜØÙð?ÚYt‡}òѺGop¾¼ÛÝ8gùDbÿò­­,wçŸô'QÇLfê¹ÅEc'xkÕ¡‹ôOL`üÚÊËUaPmx!Fê@‹BO†8b0‰z yVˆGCu’Ça­6«e5ˆ¡ãÛZZˆ‚Syq‡èÿ¢Âlª1¦9C>[iÈLg4ÿ˜›”|´ÞÒËyøiRÁÆž§£Ñ½‹{üþ3f,¿ÎÑÊIvër gm +ø7v¶uòoE£žïÕjr0BÎ îYè9äcœÍÁ)èŒ-l÷õ“ÝC ZQûHwll?}#`eï~Ïåîü¤®xŸ·°¥u§á@—Mà4ÒT})è‚t2&ò,+˜=Xx°7Jn´›Õb2j4KcU8‰ìä$”jãWˆƒŠàRi,x8âÇŒ ]æV©|J£Á?âTôWò)¿Ë"ÿÒVÔ[´±ê¬Åç¬6Ã3òíT¯ÿA<î&pðäÕŶæœü1lH椂o©Å¶Ô!m™¨OÖ­²À±f§ËNÔðÞ‚u4—©ëŠÉ³H¨ ‚Ö.¹gü✶É([i@ŒMì *NKN°Ö³`ã2†xb0ƒ ÍdHëF3IV|5 +Æ"ÉãYª®ìÖÿ'H,fFM5\ßµÚ5%éµ%¿{3äø¶qäôÚÅöæ[®ˆ;Ïü~ük莼¶­Õùüµ|{YË +ùßÓd'xÓN8ß³­‰æšS¾ºvìm7éé_QQª‰šWj‹Çð2¢8&/¨IjÕ ï«…ä£AÎ/9‰M0SiÁĽäˆªYQM§C˜…» €WJ úŠ‚ˆ*ŽižÞ>ó*!›Éå@Ï•¥]Ñq.öÔ³í &ÎaËõ ìØ3\Pq±ùRF’¼ÞŒo†l™Ý7ÔJïmËÌŽu†#ËÚ¼$äê€ÞÆ7·höµÍšÿÎåçgºí43ugÞÕïì{®Uþ4Ö¸i !37OÚ(2ñåÄMFÇ^ÅZOu– +6 I /‡Ø `5‘`ÊŒÇb×TãQJÐÀˆ: +¬ÜÕD2›èQª¶Š#™»[®é¼jJêi@ Ê=Taôµ€>ˆ@6—7b!¯t eJ¤™¾º¡Ž7—F:ã—£KG7,ð†ð&×ÖK†³]Å- “Ãç>ÙÅ~4Þ¸9œê¿0ØþÊ.é°K3gN•)àüýa$ÔàŒ’g»»ÓkŽ¬ù¬ãAEÙ‰ët72¤b¥€ §üÂ¥¼jà KY¢ó›ˆáû3ì !Èd†+D%À^jT +Ž8ÆvNQiº¾†ãèTƒVÝõ ¿aýýõÍýÏu×DÌÍ©õ;þ¸{}×¼‡6/Ý߯ђ]»ªÃvg÷ÞÕ½½5#Y]­¦úG¿Ù÷›LC(ٙ߫\Èà ä!ˆÙ6·T’ –(ˆeýøJ+h5"‰ÚË´˜ˆN0ó )èÀ‘Xy2*@ ;’tQ÷²®Ò¼'^óâÃéc;E$Õ˜‡è ÷4ˆå„ž‡³¿²Å¨s+g6Q{iŸúFußÕë›þlÞ¼ÂÀìU/ÌXô½XmHxäpËè}RG¼+·Þuæ ‘[ùã—Þj´;î?Ü×`ÖšïÓæcÛ??¸z´_j´ÌD½%&n“ØkزÚKMŒ·†Æ×°h&ø}=#©V«xÂÔÖ£`V1AŸøa´JrrÒ•Eˆüá%¡æ¿ê»®×¬+XZ@Ù8ò¥0§ÔR¢FVWeWÖ÷Ö•Ju½õ+s¢úàACÀ9è_—³ŽU5¦vn?Ã÷8IV¹"£MÚËI;+õ´oêñîD(šj¿À,G†rÔ¯ÖئÎ3|¾ï\ìsì8¾Ä·$îñ%ñqb;v_âĉOnNBBHÒ4!—…„@PÈh) ¤”¶Pè:RíAó¦-B8EFᇑۉ_¢c(ÕàCÌB`—Èa®è’ ƒt.AB¦ §ÉX;_¹¥/a)AG3ºÔŒäÁdaL溤Bb±‰>6wˆþÉI_~±­q¨µ|¶ë䃳W÷Æ>8ÆŸ-ß30/^[K™ž­œêÝ<ßÞ<²ïÚôÅñÙóGù¾º $SÕ¸áe_a¢¬q[•ýìDßÙCëç†÷TM”<á/›¡pxvâç“寵¦ïö}üÕ©fï)ûŽ÷N *ÉØxÝ ¯Iʤ†<þp¾hX…J=’ß ª&´Ó‰ã>igY JéìZ:ˆÊQŒÁJ\·18±Dó`t™å²òÚ­hTdvK]d ý"#±Ôig[=êãT‘~g‡É-˜“öº©¶ø¾u£Ñà6w#À(8 +0ºA•fx¾Øuø1Sz>ýìJáÖÞ™xýpyºû!\×½À /%xÂK”‹“ÝM0ˆÊWa(›<çRà2`5R„ â‚?“„VTËÕÀ‡;‹I¹Yf¼½$éÕJØkôµ]}—[< ÁÝPO~¸h}òèÚ6‹©VYY„ö5x„ú·U¾yñWh€~‰°¥„WtX ¼š€ qJ §P(‘Þ…ŠM®ƒt0¯‰7RW‚%Gw ¦¬˜æî#ÈCfœ‘AÉÚêðÑA+/'Œ–Çøxçº}ÉV¿-Ì·’ÞsÌþ¾±e › z¼·Nà‹ÛýµÚ–$}¾V>ló·Jò‚klˆˆèÕ¶åsÒtE\¹;Yc!«ÔXµXï4àbäÍá&×é2¥np`LHdNm2#d˵ýf+©ž3ë®m:”¾[6Œðæ®ß.~>\±µléÑ—@roh¦ñÔºú‰ë•Ã÷‰Í8¦Ó_<Œ ”EÆuÂFØEKÎâ´Èšž—ÏÂaåÌœðA,ͳdN«þºãþ×ÌP¸ bTìÓ°X«Â“½—/:º±¿¡6"¸”<ˆ5ªÂB°¯§I¤Z9ÌZ-‚–Ž€kQ*ØjdúQ7úƒY”…ä$Ì]¾Š¦’ å!çBü+u!÷£¸þ&"ÿ¯ëêûY½a.6ûYïB|&±³Çtž(¯7Ðyó¦ ›áa„ÆÜÔol>UG|“ebcéTp,œÇÝ@×m@öòáÐ'ß ùž8°!=¼dë2ϧSkÓ|ín=|„äTÞ:þãÁ‹QÜãæòà£Õ| Z`çœ4 .ÁPÊÕÒ +dGÅZ oL |ËÊ÷¤Álü=„Ø9þ ºi´qI--‡øðš;çôì‘¢HÈ}㯔 ¶×vÂ%ë[Xàla †‰©9 çŒ4d8§ŒvovJþ&‡i°0œ²¹IyŒÍ©‰ŸÌ&žÿÏ;›Þ±íµ;/Ÿ~ŵáèèácÞ,k?òÓ-ó·$_¼4~æ«WÉó|gðÒ›#·Ž|þŠ4‡vñ +5 s‰F¢GlaHCçɃ¾wiáÅ(\YÈ"˜Jð"—¨âyجbcèTÓ.TeÃ>4Ä”J2£æÜI*à(†ÕÈé]>‘Ö8˜A'ÙuÖ«áC棥3œ«;ºëÓgžþ;4ô½•*2œ*•Á»)¢â.Öœí=ñø¹ù䮤A•>M1¹+|úýÐÔ'ûÇKN;B郣E«ïUDùÒblÇ/§Ï\ ¶•¤ü ï1+·H9b4y0 ‘48Q¡Â¨ã´Å–PÐŽØBv¡2¨6©)vp²š\‚ð"R§\ä„mŽš™µHkE²gK„,½)týåÊΑ‹âð¯oœ*š²†¡¦çŸCï·Û˜˜ÛSõôºôiôßcVõâå“¿«›vµ$LcßË)ή +4•WÅaSraf÷oö×´Y¥MæDL rȘ‡ Iš-:™‚e¥ØÁ œŠ3 ÈxE¨ö£$6™–Ä<å²Ò+¨ð°BGÂÒX jË^¨+ÈÒUÂÜïì4ºSg‰ò;CÇ·ÌFÔYƒsŠ3]YP=˜çž^w¨§vëSýhcÖÁÏ NE;¿]‰º³ð’=èKª‡¼)4 :,WÂ98§ÔÓ¬ƒ·YÌFƒ^9ä`åRhæ_E‘°ƒ U  +Ë”áNfƒDóphå§ ù֗ƪ¼'Ó?Ê+´${fÙd2éMXâ÷8í9¶T½N¤ÔÖž²šÕ)+.÷®ÍK?…¼Ÿ*¶[üZ[”V¡ýK¥¥²nž{_´ÊûTu¬ÝûÔÑ+‚öŒ¨%²3ì*ó4ݲ†<' ý½Û-§K¯-®ôrÃr^<3ÿØÎCµ®óéiwwý@ÇûBv¸d%K%±ñ~í+Z¼*N"G›ë*ôÌ&ýnÁɈ٢>S¦Á„hŠz0§§&c¦ÛéÈ–é÷ë-l)aFæáiª@Åù +´m,qçãÂÞ ©@ñÂÂË8õ ½·VgŒ}V?v|/¬¼¼™µ5Fb?Ò(Ûj9øúøÉ}‡ŸOÌßÌp•_­Ò +ÿà“l²³Å’¶Oø©šG~öµ‰CìSÝ%2QFb`ÊiÁH:¦hÙÀãÉ‚9ªEì@«kûN£wwƒ½C×Ìè¹Ók̵ÙçW¯bä«0½rÚ `•¤¥U,Ü!~òÉÓ­®¡Ô’>wN»x=”9{Çä7ñê‡Ä·Ô,TP—“¦OR˜’ž–’dÒã„LÝ0NÇ2ãU²AµLÖ ó.kìH«óÔüýQ{§°›ï5§;{ÇgµÇ> füã.×Ø3 ÿ»Ø3™Y£bµ¤$+&£Ì÷Ì°gÎÊžðc‹ 9¢ƒ*jêl««ü±€¤zÅäV§{S‘]DËÞÉ}¬mT½üs(3ôâÑï‡yc1#öžDB„Dʪ3DF2“ö›.þ-ÌÜ•n‰æIÂЗ0cTR„]re©K©_¦åTqãøg—ŸzÝ(ËÙVœç)-ˆÍH +³o+r¹Š3Ã÷äÌx~ù—}©›¿"Ñ@‰×ÜØÂ5CÀ˜U†-ñº› ãDƹ±ØC@í]u±wäU]§Š. +÷¨G"2€ZyŠšä*ÚÃ&h@˜ ~•f¨ ãÝh{ _E{ãk@?€óä°ƒ(håë?Æ¿ÂçbÎ ¾èÏÑÝ} +b/—t›*‘ÛR9H¥ÐK¥cÐí`œJ…I0±8«»¡ÝÓ‘[¾H¹íiŒÔí^AAé3òb=›î2#^f] 9@:pÁî1ì{²Mµû>A[U[/ΞJ¬ÿ„8M•è/ƒ QiœaØ­ÅËh¸®7Ãô#ÿQ陥~ÌñS@<@µÂì¸I^é )ò%Œq“ól’·^iF¨€låû«6¢³hg!¥ÜлoAîàð{ÆBšç¾ éý¼ý¬%v ²sÛ8|®Ê SøZÍ?I?Mͪm˜/¿MQ¡ÜéS*ãùG{Øâù2q;!y<ÈQdíƒñÜuÅû8¯ªuq{$íQî¿N¦&^#hÿý[Å +ÌÅ|™×ê„ÃóÏs¿ús‹ŸózPkaj-¬õâXª…D`ׄ<ýP«QýžFîŽ!ÇZ®A6S-¯^ «Aìü<~BÃâ=0¯ÖÀR-$Âcu µÂëa5¼n`.¤°kñ6ât^4‘,ý¹@üÀap4àþ5Ç<þ¨Mî/_[nF]ÝÔj]µ·J}öTÉíTãÅÇÕ«uµÖ¿ubžèëò:‰¬ãëzñ×â´¯/ø³“˜?ΚøÄýJD[ñgûÖµñJäkïû5ã÷MÅ™h!H4ÿ%d;äÈÃàcè×!OAÞ&Š ký±­hÿìÀûã.dä$îÍ_†~YÓçf0~z/d=ÚA’Ÿ¯Ê59÷yœ±¸œÒäü» Lir.>þ]Äféª8lû*Þ÷W¶€“àø‘ø2NUI8Ý”£DÉN¢¤55ŠWKQZ>Qz€¯–kdÀ¦ÌY‰² +ˆ²±®M!ÊÉ1¼K”‹¸:9±¦«…(/ýá¸9Èoþy"Ïψ +0×&ò½NTø¢¢rð'¼fq¿8›(›K`C)öÞCê1Wö{¢ò7ˆ‚>¢|½OTq•hãqó{‰ÂùÿGº|Ž ~‘‘8üfØd~Ä#ñˆÿ +þ'ø½Dzâ—@ +þ¼¬èóÑ›üÏ} + ?ðÏ¥é"¥.ëôÔ¸.CsÆu¾f)F2ɨ¶—t†Kº@)ôd\ÑÿL\— ÷ÆuúÏã:_óWõÍ?ýL4ÐÔq¨ãx÷ó/<¼‰l3=NOcé(¨‰:è8NÝô<½€{ÏÒstBí;úÆþ/wE-z‹#¢u®ºÜôíI5ÙåÉV©fØœ¼aX_‹üDnNÒ¹)qóG ðo´µ +endstream +endobj +1178 0 obj +<< +/Filter /FlateDecode +/Length 3456 +/Subtype /Type1C +>> +stream +H‰|UyPiï&IÃHl„4v7 +Šâ… +3REDι<@AD W €ŽJaH :Þ‚ŒÃ! **¢ ⪸«î8ŽU–ëQ»³N;¾f>vk;ìþ±m}]¯¾÷Þ÷ýÞõ½×8&´ÁpŸ±%:nk‚·rN£J‹Òi—ʳT©™VËQ8'rn$òG‡ÝDî¿—ˆ`Ä~™ußMRæ„Ùàøó·´¹üÕôÝù¬ŸßÊ%Vºzš®]®\±bÅ4]ͦiSÔlì}¾:[φå¤ju¹Z*_¶Œ ÌÊb§!ô¬N­Wë Váb5zV­Éß­Ö±*^™®áïëÔil¾N•¦ÎVé2Y­Uó?ì®ÿcŠÕä°<»9Gcåbóy¡žUå¤-çQ´ÓVRµ9ù:Z¿lyplÜž\5»ŽMSïÂ0œ_ØL sÄ°Yv˜Ž-Æ°¥æƒa«pLn‹)…X¬ ¶ÃplŸZL‰Ea:ìö +âJüþ/›x›q›ß¿ ƒ„ç„7„ODKE5"ŽÐïÅKÅMâ)[…í„]Š]‘š¡œqÜ^lŸ`ßç pt¨uøcIÕMîo7qžzÜT ¹Êɨ©J¡À1¼#‹†H°2SGÅSDÒôÏÜ iÝ!+'A÷%¨ÙÁ¼N +€`ÉÛoú~½8 +)qùÒ+×#}-»ð~HÀ#y·÷Ú]æžYÕ»‰Ú”œ¬ŒìÝy—‘â<Á o‡Pð†P\™\D"…­AA(àòƒHØð@,ø‡ÃzÍ 7áš‹XmdâöìQp¯fÀ½íû´¤Ñ0Iâ`¹ŒÎ Ÿ¤‘”~­H³ïˆ,„¤ +¼8xà0ÁÛâœÁ ZÄ={:ñ‘?µò%ò^æ—•O÷#RÔÔÝßr‹zО±ƒ1‡††"$öùÂábÞïy°fîN0áÈ6Iß]ì"u—Ÿ^S°ð`?¡ 8ÍXÄÒ_~ú¶gè‘ìÝÚÇÈÃg]~^ +ÝÉÃ×4œ»EÝi/ÈHŠÙŸÄD Ù é»ÑaÝ–DU~„2¼©&—áƒâ£w… + qƒ§w†Áu'Fþ›r![èB ÄhtÕ–aÀÏ_?ÛÛxÍõ0aJ¬LN‘!¡ÕaÁå,Äá=(\Ù$MN9*ô›èPËyKä`F”2¼(.:²ît6“d¢¢Kã{_Ró‚ýýÐön¦{ûÆ3¡Tqq•i?süO"8FðÐs`38½o…`XN;¹€Ü_½×’cB6¦•Y•¶ò°žÈA†½D4DÁüOù¨˜ÅOÙ¸”Ú ú+¢~ìÖ0ÈŽœ«>S]g²E!Sžä¦¼áÁJ¦¾úäáctËÉ–Ænjä›øÄÍyÉ;­yáÌà…_ç +×ùP\5‰QíT¥â¨áºD0¶„“ƒƒSD _¾*ÎðZ +ékè4’°öà px5Ûh-Ò³‘öö¡Û²oÑ:ä6_Žˆ˜¶­ßgÒ&±ôuhvòÖ™ï“EL ™˜}éÒåóm='˜ïŠ/fî©srT´ôY''û4é™y9yåLrÍîæ.Ù…ÆÖ«´¤˜w0 àŒ7C,æKðªŒÝî9}¾™>d2îÊMOÖ»f%“ÌÙæýU…[ˆá<ÉÑúÈmf¦Ðl¬(¥÷ ûvS›ó¯_gî˜;.^¡$oK`7OV'ĸK°Š4jJwRè3ùàô_î~¼u¥¸¸é‚y¢Z­¢v=…‘ÍD¥(Ⱦ~q¯öT3#å–ð•ƒ0(‡8ÁØa²¼k¤â.`Ó4ò”y00øæÊà³ít_¨#"©Ï*J£C³IËñ:K+ØJ4-YŽì,LñÞ*K)#A*¾ƒ} ­Ø‚±I_òŸ¾6é+–œ­o®á¿rgNÞè×€ÂÉ[¾; +æ_¯ ÌŸà7{óÉ3æ:êÍóÆþa¦·çÜè¸ìQÖhb'ݽ#¸n1åT^–À@râ:ki¡Æ;5ñÑ;ÓƒŠŠ««KÉ'ø°\§—ñóbøH+q»i¯ÿY¦a]ÝÖ…¶ $4ülx´wD5©Þö°x¨þÞè„ìþ»ä t϶ÀÊ' ¼l›Õ˜ã´±NjÔ|A»MŸ¦ ¡w’~*yðÙ|£)—ÛÉžç†Ä¿ù;ؾ»f^c|;Òk:emm Ãã7‹´Ò=à!jHŠ©õ§PÀÂåÈ~áŸ@¤2?äµeÈ4Ùehhcc +-é©b¾¡Ã`Ó§1lp&çò&S_¿ üÅàõ­÷ܨý2“î@bQ}ÇðÙAê~mA!ó•}nF3¢‘‹Lšä7&ÿ0Ô_{©‹>DHN$‹¤õP’¥U¥¦2:·L»'Ê6œi¿ÚÛø„‘|0‚; ÎW(µÐé6?ãWC„t$;KûÞãrÜ…á¢AŠŸ¢Â×Ì€·eÍ_‘¥HÐïÒ2&hD¡S„t_¤IaʤùÞ¹@«æÝu¤­¹‹m‰e¤ýë5©[ҵ߶¤ÍGÍÇË$Ñ%ü¬3Â\þ§¢p>0,-È«Ì¢±=?=¾Ñ7Þ}¾ü`Ó ®¢S»“¿N§Pœ7ÿÔYäó뿉¬ú˜¦®(>Bú ©›Ï’򤕩 èDq‰sjÄèfDåcŽ‚è |:„òU©¯´oPÚ¶@+ßÐ åCÊÇDC! •Ä¹¨CGL¦lÉ÷DzÅóØeÉn!›¼äåÜ{îùÝß9¿sn0ì¼}Ólë^‚¦Õ°Î½§&ä”KðYPHYOö$6ÆÒÈkc0ÚedQÈo›˜œjŸècL²Y.‚PBߧ¿3-n’” _¥XÂU^Ôk˜L>[™FÇ¥?žé¼õí`ç¹ 3kÔ´:™Ø¡é4ˆ ~/ž0x +U.©²V_é–}¼Ñ{èð~„H´ã÷`Ø?}ÏlŸbòÁWTzúôç tDTû¹KzªÚ\ãô¤íd6VV®çE¾€ e*‡jÕ,¦f Þ_€ôÜß줳½k¨¹A_nc¨‡ÕÀˆ¨™Kùʪ úT´:%‰ML>/•G é]´HŠB)°î îû%@sËìbvæ„5'¡^ò'EzbX™ÔqŒF+ƒPò¾|]×›»YS±/.=<:º¥)‹É@kEy7¾Sߧxl›d§¾iš{.ƒ6’š{j©êfÐQÔ.á %&‡Ï+Ȥ㲾ºÇR/Ÿ \éë(L·0F± S7oø7l2¨@µ\j”;]~ '¨9!-Fž"-–ÆÖ«ôhK:~H4ãMƒ$°‘O‘§2›ç +™ü‹E¥Å*/=t 9!FçðŒáT`ŸÇ„ûiÂù N#Gþ¼pJ–¦ˆïO™˜tŽ±®Êtg4½ä° P-ív^P¸02œÖðÆŸ–ŸÚ7´~Òj°ÕÔ3Mæ{=Ü”â6¼é*Ygl¬®c:,Í-z¸9=’EØ>BÂÚÈÙ ™çtê\F©.P©r½ô„«Pሠwž‰Ï+bË Ê¥›¡­„)Ñuän¸×ÄŒ.3 ½¤Íx¹ºÖMŒ½ŸiÍŒrG—»£ÐGŸ rWB¼²OgjT{W„Bþ;ñ)‡±…Ë4B Òn  Úàv P ¶áÚe`õ3Ü17oúmgyDInµ=´'ç“øè¼É‡3­3SXfèÃB8†%†%˽îsH!Áÿj‘ÛN·\ÖWØXªö’”±J­3”ПFä†)Ýô~ÁÏ‹Ðv”dJØ+×À›Ð+=®A˜ö{vÛ%ª¡éÒû4?|ð+[ù}ê×o÷zh)©k”µ6[z†o”pŒÄ¢†³±¶HIÞ?¸…­Œ8odx×k‹dEÊRÃ[›²1¢4ˆÞ*bå¤rf…yIP$’N£02¬QÑÅ(¯\/§o _2·±Ô¬#õšRýyúL©} +¿Žÿé&XOŠ¿4Ànè.êU¡—ʱ`µÂEN‡ 8$p"t‚P 5 IâÓùd¯ +‚Ò j†>†©¸ûyÔNÏ·›|1FT£6iy™®\ËëîB^a~YAY¡®H?€‚¥£Õwš'\·ÆÆ=‚ä¿`FŠbˆD¤ä•|Ÿ»¦œàíZ§®ó8(¥â<øC2lô° ážv?!÷Þ³&¢ÇÑÕ縊Å }µø.Ú±dÖgù¹YéhÚ&_´ +œ­V«ÝJ T댕ĦóVؾdò¦Y«7Ó–tÚ×Û໤> _¾Ö__áÁjÁ,ùW€Œ%S +endstream +endobj +1179 0 obj +<< +/Filter /FlateDecode +/Length 682 +/Subtype /Type1C +>> +stream +H‰|P_HSq¾×ýÓKWÅÅî/©ÈÓTP ] 2ÿáÔKÛ¼wîÒ¶;ï–©¡=  +uC†B¬°‚°‡%’ö‚°z(£‡ˆzp”EDx®þ$ºw½ôÔyø8ß÷q¾s8$¡N"H’Ìí¨·5=\Ø8$p¦Eà‹ëxcå}Œâš%)eª¥]z +àÉ­î­V <Û /ÓŸoÊ ’Hòýš•÷˳}î :P]]V¤`E+‹PYiii+P-Ã;Yd +Yoñõò‚ŸA–± Z%"H`¬0 ˆ/B\±\ÐÍ +È!›}œ¦DNá[zùÓ¾ À±K‰ÍÞ6ägQbX!×N"0™„FþÑDx‰ÄoÒ áEi}‘”qÏ¢*¬–Æ6[¶Ç´0‰ŸR¸.k ®Å/Q íKºmmw¢‡,s­ôR:¬0 +A¹Å*H Q±[·—–¹9G¯ËÕÙq‡›§ !PKM &g ’!G¾Í}65ã|ÜŒ.àJÈûõñ'Œ@‰¬¸€¾€ÕÔýkÕ˜Æù#VgÏà+(š ¡p<òzÞdƒN²IÂy TRZèpׄî^LóöÓê70äÆO|Áy-öA¯yf¯fjvnzÞ´u³ØÊ*]_¥)×BÐùÊ72 ²°²ñÙu6]2ÁîÕõ7Dè ñÇ“w—_ä~h}ƒµíÃÃ~óõýrhôjÔ»Éoh<Ó5NNkñ•Gk››ip÷]™ê§ çDiD„|Q/ŠZ|R\u²4(‚E–fÅdì߉)戳GŸÖ§®í€ìÔµi½^ªÉ„8õG€­;Õ +endstream +endobj +1180 0 obj +<< +/Filter /FlateDecode +/Length 3096 +/Subtype /Type1C +>> +stream +H‰|TiPY®¢©ªFÙÚj›…n§ªXåQtFApÆc9Zî«DÐÆšS™U@9aOtÙV'z@NÏa&˜˜]³Ú‡[°ö×Æ‹ÈÈ|™ùå—ï%Ž™š`8Ž[ïðõ Üê°y¿*&,2H•´äkeTZ|˜jÆÉ +\°2æ™Ë3*úøñ£?Ý„ß>kg~Õ3ÁqÛuIÉblTt*ïìååâ8#Ýf¥§#ï²lÙ²YéÆûD&…+ùàýêTe‚š÷KŒHR%'©ÂR•‘N¼O|U©LSÅñI3žÿ1÷ýŸR|L"/æâCcf¬àTñR͇%F.³$ÍV‰HJKLUÅ(ÕNK×oÝŸ¬ä—ó‘Ê}†‹›‹a0Á,pì϶Ãþ‚aN8æŠa8¶þ$1 –b¶"·Øf,kĺ1&àóðpü¹‰‰—I³—(%U’¦MóM?D1É‘‘d9©'ßP{©sÔ;éViµôw3w3­YÇœEsÒçôÍ5ÍÍ¿)LÞÄE¹ð¦$ßTÈ5Mç’P„îË7|GÀ[ñè– fŒéjšÜ3«ƒ7mRè’ÍhhÆ¢QíjäÒo¥×¤[40—¡Öè# @<¡#™þÍÀD¿C4¡£m5±»jQwDô½¨^˜O’ßsÉ̉B +ö}rHõ÷ðA;hð +p‘™ì\GHêFìs¬´k“ù´ )vÀá^¼ò%pW¶ò{)Z xÌ•€D+»\×pé²últ´*e_T}r3GŸ¨Ñ½Cùé qj-GŒì$Z°ºÒˆ‡"úD¾^(Õã ŒK„¿ZêQ{!Õuƒ€ÏÁjlÌåoƒ~FüšMIÊ=ì¹ÍÄ™ÆÎÆnÅä…?.Ï~'Z\ÖûZ…Pô mÜ Ë^àMcP7!ÜŒv²iyߦp^9ëbC¶I7mÚ½ýIŽV½Fp ˜ ÌŠ—ˆZÏæ’§>觀­;S\WP•'EŽÓçdKC t\EqÙñlG}çÅ[ŠÁ[ÁNN;üWsô9zá}BºÅ¥7L¿pöµ,3:D»M–;þ¼à«MËÝŽC.rÌåš‚é/MÝVå©@Jd#ž(”6ȾzTQq£QeÆè‘Ž¿“¼0zÈ>yŒ=(nƒ™­F³¸oü’I6Ú[ŽaFIHdŽ s9ÁC퓹AšKf>M}–$v+ÑË$ïúäA¼$« õøÔ1 +‡­ Éê• n¥â(pôŒxLŠüÔôöÜpÁºˆÌó<ŽˆcK¤4,ÍÒI#<ú Nîżbv‹%\£˜x0Õ a‹ +šÖ¶{w¬±†Xôž7zx¡f’©\Pèõ3«Ë‹ëØi°FñðŽpüäAÒÍ5h %OÄþàˆØ¢å´‘†ÜKѧª=Om9™!}EfŸ=ЛöîÀÓøÛ«¤EÔ@ýÝî yWÆ1lKX`¥“"Ðÿèá½ÜX€¬¸¼±¸Uñ&¯Gé&÷Úáĺ4,ÔÓñçãðl\ò\$qz>…”¿,,|"Xás×i +Ùoò³uö}¬`CÑwò_­Ÿ¡Þ¢X¸Í$ƒÞŽˆ;‘ˆD£3üº&yd¬’êÈýÕPâë0bµ„„d‘\Z£íÕ@þC {-šÇ!l„ɼ,\Ô]k•ƒ55…ì¶d¦D°§·µMåíŠ_O®‹àr(X`³ ™É™Î¯n®ÿ¥¿«©¥-"™¬’â xʘÎúœÜÃlxvD„¿b²áÞ;À+ÖqôÖœ§öo_¸í°L«Š=¸Sá°®L§ äÆEí¡îtQªÞ]¶]\! Ù#»÷v°¸÷ï¥uýP;©¼û!.Ý¢e¾g:[c¨ µê¨+i;›}hŽ­r/àí+;03t_»ÝÀŠØŠ= ™{1¯óº\¢\§‹eÙy‡r±L§ßÈ …ã7ƒ¿|¸ýÓëÇ7v—qEÚ‚,­œÖåôÁ=`Óƒ· ÃɉYÁß +Ë«äaÀ!4ßQh1Z4&U–‚;˜=Afg©gÕŸŸ©:z¤Œ-í#J2“Kâá{ÆÅrá‘Y›7ÈS7øöM»Sô]¤ì‡OÀد%áÌ3(8 2fò۵⽪ÙÝ&~T ï„–#ùè"0Þu©½+ !í·Ë9pgÕé86Í—H¹ò(û¾âa_y[×ÑZÛ94QÌ`wá•Âfv:/ËÒeÍbƒ3BcBD‚ ï9fL ?º¶£‚->Tp0KNw‰ý¬Ð‹Áõã —è-Ç¡¬,(;VÊÞ¨h¿zOñò{¿U:?.þAXisucl|NV +›œ•––­’êàŽ+I£Z1KFúo€[üpûqæ-¸[ +®Ó3Õfô”Å¥ªãjÕç›këó¸óšúX–Ž™<±²È¤›øÜ>…ŽÁF²ý&¬DYÄÅ@ Â7Ä|-@+³335‡2­ub½Óâ +<ƒ×*B€a1ÝÊŠ¤êG!aâG™A½å¨ØË©ÂSÇÊضò«mwOš‚½9t}ô?4VmL[eNÓÜ·cÃC­^Ûì^Œ¸ust“™9Ø@‡%ÛR`­™3l… +J „Jaц ´Ý`T¬"òýá¤0s+†:‚á«Ñ¡C]B–sÍËï]²¿oržçœ'ïsž2Oƒ§‘£‡[û{ƒª¹îô8w®BŸ Ô1C)Ú¼ +“.)3—îû¾8cà¨*!;W[À8|̾@D úz]ÆcýDZQ>ù]Q¿‘³±‰kœô;&è׆!ìHNHÏÖÒB^ŽÖ,ã|m ñÛC‚¹àÚïRø‚¯R`å®ü:Ž}°žxr’à¥Ø˜aj*6£ßÀ’TõÞ×Þ]|xoôþ&C†ðÛÅpü'^:+v³=aùÆ<ÎT¬Ç…²7òo©=\…·àÅøp„Zs6íCFhã7û¡F.­+ãåšVÁ5474Ñò÷Æð”j}|ßËXzâ͸ԓCÓ,SÛTË5+I|X˜zÏ’µä3‘I>=/¬Ô&aèG‡¸‘k7Uœ»®ÖÍÈ›—dòiWUu½M•vRwÌÄØ‘<àøK”/»>S£$Ÿ³ÝǾ¾ ÊiÿUEI÷˜åº +d¡©•;¹C{»˜Ôƒo@Ùø|bô+¶â2Ý~‹ðä¶dª¢SS¼7˜µvŽ¹]è/:­ÔŸÏKÉÑú¼FšÄ‰¶;3’õUé:¿¡ÀÛ“Á^™Æë7Ò…m_ZUÝ—>ö2öá°–:ŠT™¥ÝS ´@Ô ŽFF~c׉¿3j6 eaù(Aph<"ÖÁÖXèX.M•ómñ¸G†þqú×Õññþ«âº2_R ÈÑW7T’&g8ùT3Ÿ-/hp uËL,#Ððfâ‹ý¦gsÊõV½¤¶Ë;~Š„rç2ü𧄾ÿÒå½>±ô¡t-@©éÞ‰Ö 7¹Í…8MK–÷ÄϘ¥ìP_EG°ÕXÞ¯Ê|Ö¬cåã'¡†:„ÔØÉžbOYÅ÷Ê %Xþm +ÔQ¤þ‘%ŸðÇ¥‘f¶áDì$6Ð,H|吏€á^ƒ§àrþ–Pÿ"átl. ƒ’žgìÖ @²eþ‹G6)2OÄsóYR·ˆ—´¥!­®êe£Ú^I—dŸÿ¨Ðl4ÊMÕ퇨öÆáÖᾩ‰á•a?Pð7‡vãÞŠ³¶3•ÁðUŠ>k×.è§ÈDç,ÜŸ“øøRßÓüÎYÜãBíþ+W:átSõß[Äah­E&cIQ±çã>Š¬àx3qÇupŸáîr2ºM—áŒÜ1³=¼#ÜùèŸâŠÿDN +endstream +endobj +1181 0 obj +[1189 0 R] +endobj +1182 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1183 0 obj +<< +/Filter /FlateDecode +/Length 367 +>> +stream +H‰\’Mnƒ0…÷>…—É"‚¶ !U4‘XôG¥=ÁCŠT 2dÁí;ã‰R©–Œ?Û3g£²z®\¿ÈèÝm ‹ìzg=ÌãÍ· /píØ'ÒöírŸ…o;4“ˆ0¹^ç†Êu£Ès}àæ¼øUnžìx­ˆÞ¼ß»«Ü|•õVFõmš~`·ÈX…´Ð¡ÐK3½6È(¤í*‹ûý²î0ç/âs@&a¾g3íhažš|ã® ò[!ó3¶B€³ÿöÓ˜Ó.]ûÝx‘'Ç8 —Ì%ñ‰ù„œrLJ1iÂœ§Ì)rÆœΘ3â#ó‘˜õ3ÒW¬©HS±¦"MÅ:Štô>0ȼ®Ã:ëkÒ׊YkfMl˜ ñù@Ì~4ùÑìG“ÍçÕt^}fÆ Ì û4äÓ°OC> û1äÇ°C~ {0äÁð¿p BÜoœJ‚/G>êÝÞ¼ÇR‡çjLÕí<^à4N³¨‹_•{³D +endstream +endobj +1184 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1185 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1186 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/C/N/R/V/b/c/d/e/i/l/m/n/nine/o/one/r/space/t/two/u/v/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1579 0 R +/FontName /VEBCUD+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1187 0 obj +<< +/Filter /FlateDecode +/Length 300 +>> +stream +H‰\‘ÏjÃ0 Æï~ +ÛCqš5 i 9ìËö‰­t†Å1Ž{ÈÛO¶K3$úéû%Þ´§ÖhüÝͲC£6Êá2ßœDðª Ûç ´ô÷[üË©·Œ“¸[SkÆ™ üƒ’‹w+lžÕ<à–ñ7§Ðis…ÍWÓmw7kpBã!ƒº…#½ôöµŸx”íZEyí×iþ*>W‹Çû>5#g…‹í%ºÞ\‘‰ŒN âB§fhÔ¿ü¾H²a”ß½c"ÅYF‰ÃSd +Lyd +Äeâ’¸L5e¨)‰‹ÄEàcâcà&qø”øøœøø’˜Uò¬‚g•<«àY%O +áQ÷îÃóh ð˜¼9Gc‹«Šó +“ÒÛ´³R…ý +0o#w +endstream +endobj +1188 0 obj +<< +/Filter /FlateDecode +/Length 8958 +/Length1 12686 +>> +stream +H‰ÄVkTSWþÎ}$ä„—˜   V!&&¾Qž«–ÈCPTª(¶ø¨C‹ZZ[­¥­Rk´Ö^°U«VEk§V­ÕÎÔéLý1«Ó™åZ³fÖruÍòQÃìiëŒãü›{²ÏÙçœo{Ÿ}ι`B±èÕc+áóµM¾¶vwÌõ4Þ¸Ä×T'å)S{7Ùëki^Þ:Ô!ö©r˲ºÌi»Dí…2>aü‘;‘Æö°¥€?õ¾RPÏéŽ ÂÿxŒ0&/GúSÉ?/»F,ÐAÑ¢‹¥¢À°’$óïuò‚¨P«BÔ¡aá­NeˆŽ‰‹‘0ÒhJ4'Y’SF¥¦¥[m™Yöìœ\G^þè1c7¾ Ð9ÁåžèñNšÝŽô,“Ö¤M¡Âèä6ýèé7 'ïºäû°Û?Ÿs7éÔ68ÃY°Z®5\Ј,20¹0#‹)“9Gn—oã##Xç°9“U½y®ÍYdQ%ÍðwÛzØñ´ýåÛÁb{ù©S—ÚW_8}\F¯'t ¡ketm°:ˆÐCAdúŸÐõžÁRò£bYd„Š)ë+Ê£¢Ê+²×ô••ík÷w/½sûЇwï,µ/ôßò_Þ·ÏÕ«NÆ6ùiqäµÞ¢dADÀÍ \eJËÏË7p½5ñžiMÏuø¿OŠxþÏ›BÒFø”¬›ÇÉq485ñTQ0¡†„ÈÄáÈéóMJ‡‹ýÕà +iFçÐl íS5¢Z^LgÂ…<%lxJ~n^N6í=…919¹³Äî(*rŒ,HnÏ,£zIr¡Ì|h×+N&»ÄœCõ&‰¹å0_sï»=âßîDÐ7LïÐ-vŸ,[¥}«×…ª¤ÒñõŽ·X£d"‹&`‘Mg0G€ÿj²ý¥¹¦ñ–âìÜÒ yÅe9Å3;òŠS +sÊJ¹m¥¹ÙÙ9ed¾ßÄjá:ÝÈt;Ssì1rd²Íá¼ÞbÒò¡Á‘LmÏ2ÅÇD"u*oh2™Ï½¿¢éiéYä@gH`ò™lNT:²ó¹™Ì¤TÈ 4¬+àó ˜NÇ›x®»…‡N2j š¬ì’¾‹5S +Ôóüõӈܼñí¯xì¹q–poeã¢m¬R®ß{ÚÜY65eVRB˜è¯Æ“tóhy¢!JÁÉíq]mÁMœgTßÞ´+­d­´« –dï꺶$붒m],ÙXÆ‹-Œ—q P \mp +´ÔI¦!L’Rri›R&-}I/ig`ÒRúNi'íSéd’:%™é´™i'SËýÉÐI5zÐîÿòŸós¾#F l¼ùG0€}é$üÏúèò‡´ )Q5$+ªKDxX;6æu‚ì}œ€øŒºû~‹Œ&Ò‹¡O 2‚®ÌàëÛ]ÎLë +=ÉJ0AÌÚóˆjš¡Þ&:bLV}ßù8*-|íè¥Éc½_qÛ{¯5ÿq¥ùŸï¯~öÒõÀxÉCkg*1 ÷ó7§—›¯É–¬Í_Üýè­KÛfoAnýpãšÃ šÃKÔû¨)å ÕJN2™”]×!ÈxZæHta œ„2ž— åt& ´ˆ¹(C1Ć€¦2„`dPÍi6›†0äZ_RˆÑ +I/( ˆN [M‰‘®ô­âDmíÂxG±#þ·êïÏ̼¸Íb™_¿ù¯oKÓâL÷YHR“ú?AX6ÜŸ`Õ.çN…ì*¦Zg)ÖçÞ÷Ú–ñáû?züx”¢ Ó½ÐmÜ`ù7“Z©ëä¨;¨Ím¬LDWÞÐ M”‚;7HV›x‰C´PIdF`Æ€èÎl$©QNÊ$ã’¶B:`Na½4èíáõ$S  $ˆò`ÆÅH0©Qd$!ÙÈ£€Ë '„> ” ‹Ž{Að“ÀjmØf$ŸÇÚ“çïÜ _ÚìákFîÀéí)Ê´FÌïê²ñ áéï©î>H°ÞlIÚ}çǺÍó 1¿(™9j,ë9}z‡æ¥„º£ùeæ¸Ä×õt@>£ðžØ€ÉÖ¼TÍyYÂœ,ÿ›ù3â¤aØVY?™K’u-ENé² ¨Ñ‚‹tà—ý§ðݼŸ—x/ðHó~—DF¹T€ÈA E ]Gœ_5‹ ±±EÌPûƒÝÚ&ÁwhY S”·;Pz¢wø·ÔÒ ¶Ì›Y1t4¥u L„‰HÀ!ºZ’‡ÌÖTYä­4A¹ÕÚ¥çÇï¼—žŠUÓþê3g«jYtSŽÒÈÌ;?Ù:9à¼}}O9}lêrç%{–UŒç«Ò÷tÑúì…xkú²"#Z›ææù™žÝr~v-2·;zsé¢Gçcª #Êùt•´64_ÿt¨ë0qr)pÁã¦t–nñøwú&âqµaMe`dÐM:ªX/I.Ìy…wò"oÇŒå²NÒ3È%#„Ï%<"]Eµì ‡øª}ž¯‡zZaK Z„@øÜs›4F²9ê˜ D“Ô–Óvy½ä¡ÜBUQ>~¼ëà9·¤©Kœ«‹—<"Ïwj©._To¾ýé:Z´ÕåÚâ3ºÍ÷ Q‹Ÿô‹æeª™'^9aå)$®š[úÖG÷šŸ5›Épüà4,BbçÒÅ$’TÛgÔ0â¢j˜ªÔÔh( ÓLuT?Ó7ϱEdŸÊŠ±ªŒ‰j‘SVC2Ïs}qÅ˳ˆ˜‘618!ÿÏcé‡ñâ'$Ñ +F´€"xÇgðHm==ô–VèðIæž’%w·_lHž#òš“û*O5ñb„3Ѽ¼sA)lê‹ø¶³v¼ûK]ô|FlÚÉ›‘ñXŠò îX³áÊa·Ífsš…“³ôû¹M%eÅRmü´áŸ0ŒV}8*Ò"obZÛ7žŠa#91Z Ws1C +fåA‰Ï"X`nµQbˆú +æDâ!hdq…y.wœ+¡jÄ‹PR°e É#›– 2I;jÅN³ñ!«ˆVµÈ_Üàœq©×Ô™ê¥xpÏF°;SZÌÿ¤¿oÞŽð‹ëa>{SêX±2ÔøþmÝ­B/Üb;\~ç)ÉbjÂê#;·ÖúÇ{›[ƒõ( §À½\£»x,•p¿BÖ–”RÕ×ffqùCŠE»qØ°¶2\HGC’`¢‹9b™.´qª`Ô†8@²HÇeíã +ÑPP¡ XyE¢Qµ<Úç¦bu{ã Q82x·`F0?aLn%ù2‰z ZŸ¤ˆº¹õ>§«U0gH‘Ü£”ÉÓyø<£Ð•Ç4]OÞx<90h‘¦O½°aËÛ£vf˜¶ó…ø¦Y}2þëCýýi¶óõ»Oüî ¾¬NÕVMSÜØmx¿ËæW”øÙÉ|²~@WÔй…iÝ«tqO­ú¢Ó*ûá¯O††~s¼q3Q_¾GoF1ŒT4)–oõ»àežæIxOt +\dˆÃ7RÍ@ÕJÌ e$Ñ붕IG; Å‚±µZ±µkZNyµhÃ[ SìY c¢„,òJ¸þâøÁ»Kzu›D]|kç«rÐí®©çÊcgÌñ.³ËNqjl¾ùމߎ¥ƒTŽZÄI@‰Ò¢¯N5wüàõúøoàê/~$c²™”·0Í}â”ö|ª–½ö²ªÑQRQßصü1yˆœB=S3ôV”@—`2ÐŽ^“ÈY¹ ‹"í4,Á@|5Ùé¤!Á"œ=I`VŠ†CËèâÆvå æÛj72ÆȃÁ;[ºwÚwsn–a|¥Ñ2›ïR/'Æëó`¿¡¥†cá×0§Ž¬ï[· ÈæP®Ú'z‚~ÁoܱOHû¼{õ+/ûºçb2ß[dãº7ÞÕ‘/öïhî͇¬4Â"/ß#ÿB»Ð?‚¡XIªNC9’¦Õ͉\ÂN˜LGsf Ã BÀC„ÜNòx} Qúß8¡ O-Û* gÑüCm õÙv¡B*F„À ²·’Wï—lùb¤°ko_dn›7­ +ÿåºÊbÛ¸®è¼™á6Üf8.â"î4Åââ*j!mSmS²¤¨mÓ‚ê%•9² +»ŽÓ +›Xìƈ]'MœBü! дi·M‘Ÿ.) @|¤@PÔ( +£E?ZØlïRŽÓ?ÍÝåœsÏQ*“9Õõ;,M[âá8Ô[Q‹ý&¹Ðùñø‹¦Ýh–›Ï{í‹Ú²àÒ|¾A^k9°‡Uqýëª1ès+YV8öB½¼°¹x +#·ýöSóàC—Ñ鉑`hm5ê?Gh´æÀ9!$í +˜¿«Ë˜“¤T{—”ÒÂ0'ñ:Ír9Ùyñ¹++ã“Qai51rxñi 7Jùfv9Ú1_³ÿÙæ,§f™Zêý¯sq U7»ýs¿lWLÊjéôôv²í„ldý¿÷i±·‘Z%§E§‘²øl*¡LÈ ÒºfŠ*U¢L™H A¦ÑúPÔ,s¢5¥=¶I‚Q A­˜< ƒØ“ \|:+áOj-³Ó›”2ñªä ÉÏ<'‡Œãθ2j&Ñ|nýLŽÞrNfÚþ}“ÐüS—óqqLŸÛ¾mÕÆ'É‹Ñ’Òty±>uäh¸ï|BÓ­è%£É&¾³<´2˜=±ß ôQ ÃE·”¹ï^{ðûªH@ßmØÌ5C0D˜(T]°5ò†H•L´AŽ‘—c EXØE‡ƒ>¬òk.~íÆ:¢ð—6ƒÝTiwpg‘Þ¼îÑ4,øf™>£ÙqÀ ØŽ¹R¢ÿN؈­xû  ³Ï‚ ¢g,HC<«WÐ+vئ°ÄnP3©%)U¥±)Êö„ª×2v*&ŒÉÔ¬¦X>4h¤ßzSéÒ¥[[È{ •lú‹oÑWW§j臑Så šúõN;Ÿ5ÿk§Î&=ÃÁ`×ií$Ñ}¨ÓLø‰ÁÊ€š!mHe3xpµEBAÀjôŒŽAÈ F¬NN­Xœ2 +vo>vwAiþXSÜf°.$HÒWë ±GØuÑ­[‡ºÈµ=ÇÑk3ñÁþ‚ÏU +t’9zßÅ6¹µ7®“¨ÝNöá¡Ö+¯=7•‹ÉY©Ô@¥‡¤ePŸ‘¯Ä‡ažæ3ѱ2&F¯ y&2,™D(gy…C† +=ƒÒKmÝáb×… †áf²ÁnRà† +[u èIØ‘ …á8Ž½ëÚÇ'?#óÊŸ\`Òì¹;lLÃü­w±¦5:Qš…ü#JÄxeÈ`1›H»ßʨA‚S±ÿ±_í±M]gü;÷ák;Žã×MœØŽíøEâ¼ÛIœ‘Ä1qB0"ËLBD³&PB hE£ +¶º-ƒJ+ZcB¨ClÝÖª`mÕj]Ŧj¦NÚª­Û„ªj¢Ó„˜Ùï\;[Õ©ý{»ÉçûÝsÏ9÷{ŸßT%+j£¡AÚÉ0j'2·¸…*“PÍ’Ø¿wYbŽ/e˜ÔËŽX8ŽÔl]Ì= v Ú1®a±d &šÑÁ*ì²-¶Yj|vUýÅzkÐkö4o~úy§~õÖ|çÀÁѦ§z&»3¡¦¼g{"=÷wnŒnßZH–+Z¬ hÓŽˆÓ-Þ¬©]mmL7&'gn<Ñ5ä´8/64î<•éÚ³>š_Æfïˆ÷÷¯K÷:™K0˜YµŠ®ÕX®° ¢Lè,†aW˜*a ¶ tãqw°‚WËúåÒý÷bÉwnÀišÏVÂl4ÝZáïö_]tÛºV÷ÕUNOíæÄ&k|$ÿÒSCñ>öÅ‘HVM™.©ëº|úÛ¦l.[xk}ÌÀK$Ÿ½ûžð7DSŠÒéζúº*›Ybú bð")‚5FYßÉÞÁë#uÞZw•j3—IŒÌã­¬Xà\qGår€ =Y³{{µ4<5˜Ž´í19ýÛZÃÚ¼µþ­‡}©”ÉÿüÁ/Ï”ë»%«3±)=–ªf<⫳†Þ:š]H–³Àê^_]S¿×Óa¶«žr÷î¾æÆñ|²ÿ+ɬZ¿¥µ³ÆêqùÝÛb}áÝÓNu;ôì¾û°(Í“—bé†*ædjÔ¥5ff“A$Ùî4 6#¡Hh „ƒV/œáçÎ@á´¡rD‹¸el €¯r ãuÔqÌ?æ´œX[~ÝÒÑéÌmÚ>¶m«*œ“Bë^Ê»{¬7÷ë÷Þøüº,¡ÞèÀ¾qH”»{SŠ!O4”^k&±: ÂÊL +øâ¬Å †6£l2O¥¡%"Ä!‚æäðo!©v§åÒל¦Œê«ûÜLwMÏ@0[mÛ0ÿs:(“äŒ$±è×$¸&©B“xq”¤ŽtsÈo,ìsˆæ® +c Çô0VLñ{jª«F£²-á8Tê(ª„ü­ŠkéŠd`+ñ¥"ãç] ä"LëýÚÛ§Tg&ä4ÄÃþÂzÏ!Ö:Û,Ï9›Ó©Ù=íf‡ÓTSï-|8xáÑþ‘ +ÛmŸ_R6årÂõuðS[aˆ}£Ûã¶r ’¾Ì¶uã?Nþà·¡úME¾ô‹ÂÒöŠÕ’¨§^…zåˆnót8WK+doA%R.ÝYPŽ=}Ïõ¶îž!Ñ…%§k Ͳ_Ò”x–†å tE§§6H³_2¯¢9yŒé0×/,Q’ý˜…×ÈùyÜ“â÷±×aÆs÷q<Ï€æñ<*§Qö.U˃(L؇ßQÙžÔ½Fçå“4$¦)9Nóò›”—†@ ü#2’ûãìÄÚ“”“ÆiV±áÝ-íý¬4§ÝçäA`¼=!Ý€üi: +Ÿ¡ŒôŒß¦”t {ÌÐyìåb4.ßb'Å_Q½pž®@Æ)É]Fhûs™'EÖYhÏ| ª†Œ$,•Oá¾+ÞĺæÌa æ‹QØëEêÆšÖ&uÕ4Àí"…("ôea†Åýä»{þŠ=ÿ q;iü(ÍCî¼&Ûq|3;\¦™ÿœYr¥}g!Ó‚´H§e/å=s‰¯RtFþ乩ù:;sÂfMðñ"äç{Or±~ß…¼ÃÐ}ˆï‹ýáúÀ¦óÚúÓx_s›K×(WòežûSóá |*DZs5¿Ý¢<÷%Ÿ{¯/ù]ó'â€û‘û 6æ>ÔÖ\ qåôÉÒ°î}|gãqšR&àSèÉ}©éÆu=ùB”á6ÃúŒ¸“žäöшË‚ÞŸ5_òqø³|m +¶šÔ|¸¨ÍÕe(§Ë纾‰Ø~t˜ [q×Jjmøô,²Pw!šÙàŸ‚>øä$L|<‰‰ý Úü¼Hòï?ž”"}{‘ %2Ž•å‹dûtT$2;@/U 6YöY!í<‘ý ‘£ô>‘ú:QeQÕãDÎCDÕN¢S‰^!ra­;Mäñ®Õž%ò>@äKÿŸþ‡ˆaoÓ’ˆ_™pV‚»MG0Æßšèë+•Jˆ‡D²ã©ÈKàƒ%^¾£Ä+ !Ìd’\Ý +Ï(L»K¼@f:UâEŒŸ+ñøWJ¼üÍ=™­ïáÌ]Ó¾½ûóÅR©XÿæÁì–áèÈŽÝ;öOï™ÍÌîÞùɆ¨¦ ôßEÓ䣽´î§9üù(†N-…ß~ÚLƒ”¥-4LQ¡}ýS%@õy ù@½ù@~ +CP_:Ð\‘z¨©ŠAÿk€¡Œ8HñX°˜ˆð +±X” ð*—³åëä0——;ñ2ôî`¶i•ÕÖ0²jC© +endstream +endobj +1189 0 obj +<< +/BaseFont /OBORAR+Wingdings-Regular +/CIDSystemInfo 1580 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1581 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1190 0 obj +[1189 0 R] +endobj +1191 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1192 0 obj +<< +/Filter /FlateDecode +/Length 342 +>> +stream +H‰\’ÏŠƒ0ÆïyŠÛC±ÕšP¡Ø<ìÖÝ°ÉØÖ¢=øö;“)]Ø€æòÍÌÇL’ª>Õ®ŸeòFÓÀ,»ÞÙÓxän½»TÚÞÌSü›¡õ"Áàf™fj×¢(dò—Ó¹:Úñ +k‘¼ ¡w7¹úªšµLš»÷?0€›åV–¥´Ða¢—Ö¿¶È$†mj‹÷ý¼l0æOñ¹xi<ïØŒ-L¾5ZwQlq•²¸à*8ûï>Ýsص3ßmEJâí7䊹">3Ÿ‘3Öd¤ÉRæ”8cÎ÷ûȸ!˜È9ësÒç¬ÏI¯v‘qCf"â<Šò¨œ9'ÖÌš˜ó+ʯس"ÏêÄ|"fÿŠü« 36¤Ð\KS-Í~4ùÑ\WS]}d>Æ>:E­Ä‰ËçœÌ=Q|q64•ÞÁóåøÑKŒ¢Oü +0ŸÇ¥s +endstream +endobj +1193 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1194 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +1195 0 obj +<< +/Filter /FlateDecode +/Length 4703 +/Subtype /Type1C +>> +stream +H‰|T{TgŸ!™IP˜@â&=™ÑíRTÅWµ Šõ…òîŠ ¦&h|&‘ˆ®±EÞ²º>x)+‚¢ÈA„êëëøªëª§X­ÅjÛªk½/Ú`÷œþ±gÏ7çÎw¿{¿ß½÷÷Ýï# ©A’¤ÿìãcc’>ˆÉ6uúXSƈ9Æ¥Ë,n'hIÁO*p^,ŽÀ’ׇ_O¢à†^ûž}oP¸’ H’öôê}‘–š–jìÿÒ¦fdŠ8â~~ô„ a!n9¦_Ž áÃBCCûå>RŸñ©OÈ6[ «ÌüÌô%¦Ì “ÎbÐä#W®äû!̼É`6˜²Ü‹ï²ãfÞ`´,3˜xh\j÷› zÞbÒé «t¦|†Ûò5íÿ„â鼈Å'¦ÝZ‚E\4óºtý(%£?Ê’Œ5é“Ñ`9jzÂüìL?ž×Ò‚!—ÞBIþ¡!ˆ@91BJ„SÄD‚ˆT¹ÕƒˆI&bˆXÂBÔ·ÉÑdi sÈJò„íñg»Ç[‰YÒ)UJ'J“¤Ò‡R¥ 6PWé ÚJß‘…Ébd¹²Sò‘r£8S³æ¢rR– û…Dñ h#ÈzøF{\‘ìô§òé™à—jz€^T¾ ‡ì¢’e0´ŒÊ“…£WËêk@ÓÑ¿£6P%2¶‘rÈpø&ªXöbJ0‘µ “\Boö×’ælpJ¬×‰ÅÍ‚íÇÄ9’zp²:È9&cl½ä©¯%OlìŠêšÚõ{ÍæukWsæ‚ʬ ƒ¬+ÒJÚ‰¤q ÿp©$o¼1RÌŽê,áÇÎB«lUØü.m*­º†Š¨Ý†Ÿ/Š‰2; +[…[ÇHÁÃ)¢ýZñf±¬ÃAÁ8ûø RßNyŽšñ™vïrªæ`ç‘ ð8‰ÒCq&Fsób¨U2f‡Í¯Z!ñ8ÙÔ ×E,µë÷ì:K~®‰‹Þ0˘œ$Ÿ7'e8ú«qú“ð„€@‰Ã;ò!z}»xá*m>½} ÞÀ’—Ö(Ú«A¾ï>ËÇ>ÿ²Ò=ÙÅ=t®é¼¦÷JÒHÆD…q"-ÐøŽx#R³O¤fŸHµŸk¦O.ý_„½¬Î1ߧ§Dfê…zÕm!lì}´QN·º"¨óÞDˆÚ=°QåvöX)Õ㲶];[äÅôNÃ_É=¸&€9k‡³-PfWö8`§ÓâT½ì)bók[¶žÐüp³ªã8wøÈÞc§Õà1Ö™°G[,S WjœÝ×ÔŽ Ï<¨m2̯§Y°07's,g·•×–´k~ºa ùÃÜø`î}Z/½O«^¾z”2eÁiAË2Š¶Y9¦ws«àj%›Eš«/°k ›â48#Àlø$âÖYç¦uG¹ +;µ+kÁÞ±\†,†`2nС0®çrEÕQŽI¹vá™ìqÓœ1ïÜNgÁ ø=k¾ü%wþJ]ïêç«n%žÑžKÙ€ +Íœ¸Ï·ü‰s,eKµ–ŠŽ+@Oü¨€Ã?òè+uú¢mZfC¡:í°Û ,† +YÜ»¡ÅŽÞDÀs;ž†NØO3Ùâ1ܵCu¿_ŸîB¹Ë¡ºß•f è³V(ksîR…©"Öø–ÅÅz9ôFSÊæh NG©ØGñbå4xÁÜKí›Ö5råvj÷긪( f#ƒá8ɦѧ¹™W{,ßi¾¿¾¿Ì]}°¿·œV7r1Wû&½‚{®ˆdtöÉÁ)cðoÕY®kšï|\2fE¡Ýż[ôƒgv<åb’Ť¿(¼’’%¼=£¼è +TeºÂütŠØRñ4÷ ¦TMÆÑæ™Ù1ò|zíeóÕ•p˜0ŸNÛÍAWÃÅ -Ï¢»ƒKè}‘‡&6Â`|Ð@C  iþéàš›¢¥ júl.g ¬ðÒâ,áÕ%±“{:¥C• ƒüà‰Lµ¤7sïi‹‹§wLëš<vö½Gµ»«zH«*‡MÙªÍ/X~Y1ñ›ÁX!R‹ÞDˆù'ØìBŸÝÍøçN <=œŒƒQ«1 ¡?L„P&^á0 p +—'>;“ï`â¤0†cpL8|!0ú®èûLjüAƒ¾rŸ4éì?ìVú³šƒõšž›µ]m\}Ce[·ú¬õøŠÃÚ¦´¹û&iâænÑsŽe춪†mÇ5¯n'á£bÑkyzÉv3Ç!/´@{Ëo /¼¤¿Ûz,u_pUDyìN«¼‹ÞP·±Ëòrý-㉕òbÙºSÝÔŽìötñêéçï פÄåæ|Ê9Œì¶Ê£¥šŸÿ© +û8n(ÇÓÌúÍvíä—¨pHŽ5²«¯®íÖ@Ðõoÿõ,¶ %í\póâæ[ê“M×ìn[»±J[e§Ê- +çhž0õýQ—€4pO -©©ÇÇÄÿ.þ“ÿ0]íAMYŒ¹¡V¯–k0ænï]µŠV×êŠUDëc+eEÜ"¯ðP@+ò6B®\±ÁRYVž&°âƒŠcØb×VG‘Ñ­õ\æ‹3û‡igîwÎï|ç|¿óûÏTÏJÌ&²Ùâmؾy:t±­©†Ñ”ò¤/_ Ë…”ý°&¯0‘(¢Â}è°Èsƒ Æø²%o;³r¡H‘¹[á¿6J Ó=(»î6W?s_âý\ïÃFX¸æ9šñáÎøíY Ü–8ž`üýš=šL4 +ËuzÝiæÇš¯í·hp½²Ma);z'`%š²i»í›LFsZsºTLÀÒ¿¦ÅµÅ†…õ²P¶/{xëïâm†?0‹MJÕ¶ÜÂ×Ë#ÊwÒè½ °î/|ä ì`geiK^ÿÉ[l𣕲s^ãáBÔ«´d„´­¥Ñ´ÅžÈë8‹<\ ÓöÙ/Ö2Z|ZÝ +~¡iÔ´žsO‡^¨ÔäªÊî“éå‹I<.ðÎÀ//ïôû—³:•6K%&Oäµ@‚6X\[¬ðU'Û¡¶¤¨D/L‚Åh%šõNˆæxsÏ^ùy“kæ«R÷çl¥¯¹ËYYømÉ…'¿ÑàöÅB¿c,‰’ñf³Ã ‘Í®÷0“æx`L¡ Ï +™î>¬79¢g f~INjI"½/V•œÌÆÅån§ùÆ:vÈë(¾64s+,êÉ6 s>œTHjÖá¯Y&é^FÏCSV!4çþ|˜1ÒÛn¯eµŸhþ–EÛ%Õ Œ"ŽŸz¾?§‡¾tÃÐÚÎ6›kûa¦,j¸SkÖžgBQ£PQ˜u4›ñ=çO#þ®ÇàÂR£@ݺ÷âNWHP%Sœ£U*Äd/®hw ¾WÌ£&+o š•0iËN”1W*ûì7égë½XÔd…6ø¢5Qûò©L²Bš–“ê¦Al?è †‘ÊÀí'÷¡íVê1¶N*qHÔó3ãžÂ …,#à ¯®5˜ªk”&)n¥ Å[Æ™‰Û!1(^ØpüŠ¾ÑìÖÚqê«1÷‰c•Qêøô$&#}¿jÆz«Ço ¥/Ó «®+«¬ªVVf°ä®7Ð9ëàÁlÌ,Éëp+H{7„¢üËJƒF¼§Dðƒl-¾ÊlYF®=‰ª°:„OâêÇÃvúh¢-ê‰éÒ;¿Ù¢†½±F]ù =Ó[ÑÙ}ƒj À½¹h…~Ay±·¬«ÂÖ~…þ©Õ¹°èœÎ `r­“„&ä¤%2YJEfN26á~Yh»½>rï§I¬† ì÷ùÑ„6^›=y#oR7Y©!gÖN 3Ÿf®šúl7é±Éi€¾‘ÈõÑÁix•¥: +üÔ-ճ߯°äWq¹Bô6rY‰¼ÑûO߇Y¯`æ÷àž+ÇÐ\öXœÜ;¹ +Í\¿ÒsÉG?Ãôÿõ ±Ö ­™è„ROŠÍè0 +Z¡^Ký»?qÏÇ‹° æ­}f®ÙïÀYÔpÁ/ü(B¥[£…úbƒNÏP£?TÝœ4;à¯hÊfÛ·2+^/&¯þ1Û› 弜é¸.b’ßø11ªñÆóbËéXK/BÓ7£hþCO˜v¿¯Ã^ÃꈗS•Yù9Ì–´qÛ°¶„=î_?|y§'8K&¿RL¢í¸×A&ꢮ ŒZ£¶ŒÒ[ûèS'‹4'Ù ‚ãG?Jÿ=,"0ÓYY“fÔÙåHmX„˜ü3ökïf×ËVøØÊk¯ÊÚTVúÙõž»ßDZ6|Én;{ ºSÜÞ`é·Sä“…_ž¾OMÿ%x‡oP[ÌIì`JCÊnqØþ½câÊiøÙ¸ƒ®0»ŽÙxcÜs!šµ.~õ ÂKb«ÓiE½ú?t}õ‰Ù£Mü‚ܬ‚t:Tnégá¼kFï+ »Ô­yÎpÂkŠ•êàvc‘‘ nBž/ÏW2²Ðð­ô²„ï~e¡F‚hÛ‹¤þ‘žîö3NÍ•ë>ä·š&¹UL¦]J˜€2p¨TÆ)¿•€NÊ#𳨠{}V¤bON,涪YÙ"·âý¸KDB~Q7ÍŽM¾f|ÕTã öœ~ +&ìõ•=Ëú°×ëƒ!UA?£JÆõ¸áÄjT›¤ŒÈ‹Â3ªêPÚå—?€3¢(b)ª“}šší\.äؽ>P'"C'Àµ”{WåL³墑†‰¸dMƒélŹ¹Z¢2Ñ”\•4‚HÑ%m†cà*þn½%OÍJ“'ã\YõÙµ™_xÃ["2ö â^©Ñ×Ä/ÎÓÍçkò ÔÌ¡]cISR*6ÄŠN7–ý_WŸ:´åÉÑïšßU¾ÿ’¶ƒ8Ÿ®I©OkÌÜ´ªncÝÚßBßÏIðÙuoú¡¶‰qöæÙb?86ý>ÝË6gÑœs}Ÿöý…DÏjÖߟR¾ï6׋+K+K~OûýR‚oþ÷úŒ+ø0¯ü¾T4õ‡ÏFv¾ïë!5RÐæ¼ÍÀd|×÷šÝßKv Ÿÿ©öÓETøúÜÒ˜Y‰Ò¿…M~óËçü®YÀ.üüÀÔ+WËÍŸ³xÚé¥ËæÊÏÛÈ:µ2cf–tljUA¡|rRM€¯T1¸ÎÚ¬âjþøíR% ^ÉïÅËÙ…¯¿XvûÃæõ55 äøú‘êÄï%»¡Õb HOÉï%ËÙ_,¿ý~󆚚ùr 7°‚Ü“$ý[8ìh­xÓÂ×~背Ùø[X»Î½ûtÅÜ––™àÚµ¦X»¦¦Ôååʧ¦Ô€j×ß5KØ…Ÿ=_tåÞâ…ÍÍ3å„ÏÍÞÀ*ülJmÁÔ\鸌ÚÂ"ùôôª©rd?±óÕOÿQ2ý»ÑôéÓOgû6ýÞtv PÅôïz`! Ðéœr ’ây8»y¸7qíâþî$L Òþî +endstream +endobj +1196 0 obj +<< +/Filter /FlateDecode +/Length 5164 +/Subtype /Type1C +>> +stream +H‰|VkTWîf¦{x6Î MtÚnEW^AÄ +;Ä *+‚JD…™a" AÀU„l\CÜ€ŠÈSQ1QAN|DIáKR¤Â”bÖ͆ôŒ<mŠi +eéÓ¦@F¡)Co´¯Ò¶Ò¶e½—c*œ²Þ]º4È×.ƒ§äb_!(00pJ ]Nª^ˆ/ÌÍÓgç +«Ú³)Çœ’§×ù š¬,aÊE®`ÖçêÍ»ìÊ_ó ¹‚Þ—¡7 )x3݀ϛõ:!Ïœ¢Óg§˜w9öÿiÿç*Á`°/!Áh°£ø<¬ÌRŒºì%gêm·Æ<³AŸë¿¡Ð¤–:}+D„CÌv"ü¤ÄBáDÄH‰xyPJ¬´W0†ˆ#vˆfâ*© ƒÉ"ò™ƒŸÃA‡7’Ù’6é\©NÚCQEÔ´3H¢éQ#ó‘UËF}÷;¾tZçdt:åô£sªó—Î.—Ç®þ®Í®6·(·‡Œ7“Ê\`n»Çº7º?›öÁ´“rùjùQùCE´âs…Mé«Ü¦ÌUözÈ„Ê>ñ}$–sú$•R±Ü7YNC5úŠEapˆ‚q è* v0ù‰l’Þ:µ†0„1-ö³ö²#fr>ƒ^"¸DZ!_ò3r`/ÿåDÇ¿P@éô¢@“WV#ƒº!ãÙ +G$­0ÌzÑW2|¨bÈ>X%¾„8}öê`zwbbš.!ñŒ®ŸgÐ)›&Ÿ¬‡o%à¤e!Óf ¼i”ùÆ@1% ׌l?ˆ_ tØæ³hy(šâx]u-€å,ûÔ ‘« EðHÆÞh GsÏM\\ú]˜_ÅÃK÷Ý!ŽiÜeSç“Pó$Pâ ólj¤ ÑïBO ¦]£¬4S r1žá ÅJO£ +«ìzõüñèS Uà¼ìohÞÂðì´$õDRͽ-CÜýö”D¾"<2ÍFÊÅáÓd8xWˆ¼ÀU÷ÀÍ„ åxw›Û}÷ÃÇ,}õdO¢¯­¨ã­2嫇-gî¨Æ¾Cüâ¹fº 9Põ'‡Ž]ånµuÖl²ðqˆ¼I+Ç¿¹e\›¤Õ/‰i®3ñ8)Ž‚# ·`ŽDüÀ¾z…(GëdÈ2)P>pÈ74±VÙS˜Ýt¾¡»±gF ]žR¡Õ©Ð{¼. é?AN ”ˆ&›šE¿ÐÛÑsªæä ëi<¯¦FEFeGÇÅ­3ò&DS§‡ G9xïõÀm${ ©ƒïHŽ®‹áöWVñu/)ø˜Æž¥ÄkpÁ­±À_"&Ûæ±UVæTÌ-[¼cMœãûk¶ÎEŒ +(uìÐ1­65kGF)¿±^Ûò…êüÉÎ~5³ŸŒ Á5ò…hü¸m°4[š­¯jž´Ýr¼{û àTà» Ž½èÊ|Eƒˆ”Ä`аýHCÁém!ÚB£Ô7!Ñ—AC5Íž/J9þéÙÃWŸs´Ò‡µµ›kµ=Èk:S¾(Ø€‰³$ŠaÜ/ðC¿`åÄp5[Ö9TvŸÕ£¦³½|OgËåª§ë¿ +kTc +‰#-]C×U7 ·œPŸJZÿ'.|Ù?h1ù½Yëg¶vpwΚ6mÞžÊo¦)í§•#7L«V®Û¹³°ÒúÏ—‚BŒÙÁ± Ôlqö¦ÒdÍ }üöùwà6p¡xoßnT)¶~9‡¶£%ÈíFÀÍ…¢G_©ká™±ýà"&‚9Œ§W'„Hìáw•aºL¢åÚ]þöà¥1`Uà²í¯ï÷«{×,9†<¸°ˆ²}ñžØ!ù¿ÆüÖ΂õ›J@)âQždÿ.$A5;[k\›múø“]êÝÈ*m½x ‹ŸgßÀ^ü/ÏUÅ™…ƒ8ݰʘ²™qœ®tc<</À APÉ +È:ÜH#3FŽ…g FD‚rÉ¥ ""è.•àA Š†5ÇQãZšÊkêwk÷͸¦º¦ª§»ÿwýß÷½÷¯#Ki±ýq°ÚÿoK*¬FUíÄC6ŠEðfקÒ̧äR°£¢°ÝKy’ä” É·×ÎÍ£Ò+'”¶AŠŒ(¨P#œçQÅPøÕDþÛ‚ÍÕS¥ËÏÚWº? %2˜A=…Òêǵ/*žÍͧìòíòÝ8ñ÷R±z°1‡p)(h˜¦yžû—¯kt¿ârÉs., §Dà‚5°!AÔ¢|Gƒ3J_ÂhÄDÄ}bÇedóV`ÄÓÔ`%ƒn“+<WsøïÔF ÙK$ÄžìC(Zbo ã•;ˆ5.‚Ï%V’ßúæ+2ÇßnÁBßIÄâœo}Ëqc²À¢°ßYç öF”ØÃQJSR¦=ÃþtàfhwaßÖ2vÙ¶£Ù!È1I~QE~=;Úí»9(Ü-%UgÄi:Ú-ƒi°D&»Û>Ø-»J jë’ËVžYUPtØ©ŒjåÊÑ#ƒ‰!åùt_Å@ÿ3ù`JgDײwÓi[ÖÍãhv0úš/Ñ£¯‹ì=íåx_¹ÿ¾¨õœ%Þš‰½{§QóÒ °…]ª—([FUc,øþðDÏw’Wx—ƨòvysÃù¡¡k‡3j¸&˜%*‹Ø]ºž%Ëí—ÚnĦGòO4 +“+¢lòö©¨çÄþ’v°6ƒ@"ƒð¯X¿;M¬a²G bá[•Ù„²Qyñún&Mâþí€3•×o¯ ’Ädé;Mf(v¯Y«è NÑâºã°˜0FtÌ.œ2c +¶RP¸‚r%m"æbò:åš#nyTê„r,y|5´ÈÈ +â„bh:®ÄV‘ùJáx¡ +ŸžzÍ,…çÒÛÐ.b\J‡‹n¢Èž\WäsjK/i—Áj +<ŒþL:㓾&Í=sƒ…†Ê|¨~öø3¸(C绌ïtGV¥º©=ðz8ý‡´ñ@¨—‘•¸ŸxéRá‘¹ð‹”„À¯° žŠˆ®u$2#!5t®†JmIkTµùÃ,ñ¤ÀŸ<#{p¨ê&ˆ+:¿i.iEú”G–î¯ + b™8÷½UH2Ž`’B IÂ'"²žÚBV¨ö¦F¦…¡Õ#WÒ/(»6à +ºƒØwŸŠH-vWÿ¾A ©Ïï½]KàSX̤ ¥Çj4rXG½çYé¼õÐáX®ÖNt¦áïßt³K¢ùšlÔjaäL×Ú~ÏW}Ý­ \>Ť‹˜®/a³$K›¥Éæâ3ã“¢ØØÄòÖþÁòq-/ÎÂao¹R`?ѪÙØÀƒpŒHƒR¦ëÄ0Ž•;›{”½,ÎAÓ/–è\_KvKàÁ°¼è&@㯉ãÀ%]¡¾»bh©ocï7ù­ç™®åAÞŠýõm™œæ¤¶Ð ÇLÔê°Ä-oGæ®° >–d%q4†Ýè×ù3?®½Ñ;Î^ªÉÉ.㙋ç@$bîÇ)¾Ž`‰·±$óɲ×öàÜwÝP\ËÕ()ÎJÁ,ŒI4"‡a)™ +–2 Ý”RáÇËKÉjÆC–N.‹[ýµ=õœ£ÿÚS,¥iÔôõÈ…sRK˜® ­:OÍ…fíOP°>á7¾»0x·³16¼×eëÔÙr±{&ˆ&ß¾zmÖ a Ì32!ù¶ZV~0‹8“uëÈ'äcâðÜ܆ gº9ÕQFxXÎÖË÷ü­c¼ö­¤­ ºï6{¯Ô7ÏåÈU+c¹af¦jö#p`Æ U*X½„év43YE_«hí>Sš—{ +Dz`‰³È ebA,«øKFL¯ˆøÒÛ_~x;™~û-N!Q`K¡hõûÒàq„y"Øéæå±" u))¬n+Kf.´%NdÞ3;°ºÙy¶­Ž×ÇQN‘ž»>+/‹ç-Jº2œq›}0Rrõ|OWùØ/r¨¦™'#ú6}=GÉ9I†65WÍÅdÆ'F²ÛczGxæåOÝ=—ëFqúl]f¦\¬4%8 wÊÌ7dÊ€oÚ©"Ý©WSTU}‰í­TlçI%>o¥ÁvãwK¾8ó·îP†*5Uia%&ÏÐVºjf÷¢’8af“+ÒqÓñd2:µK÷¹BLJib¯±Ý M—ù+ÚøÆ`ïåÔÓâQÓbf2‰DIFî—]îà;.Ÿ»ó»\p'(zK²#S’¹Ãªø¬ˆ< æ5M5J‚â?W„ÕÇ^»^o²™`²ùO¤°)/SNSÁÆ(¥FƒXmä×b°Å^L~±˜bž@ ]¬+ùª˜«*<{¾•½VæË“ü¤•.Ö—qu†ªsÍl×Ùp/ž”ãó6y 9Ä$d§ä’ÓST_&¡Ä]W5ø°+Cÿ¯äó(¦+gHD¬)}¨~ÏŽ?j®~Ïp,9ÓaŒBl5Ó%úÓ…\­¡ªî2ÛSêÓsÆí aÁ†![· xöq¦#ç;‘}0˜ Æ1·>Bè;¡b8™C§'!Nó!æašžIæóiakû†,Áöý‘äníFåQþþÞûoM<¨y8‚êC6)Áµ§f¨?ÈÏ2æÉ –à}®žŠ«¼z¨ŸEg¢ ØŒpGûI¯Ý÷Äp,^ΰ)¨}ú€íx¼Ø‹.Ôô'¹CKC;;Üì¿vUdÀ6“öðšBmQ1j +û:yïý1MàÓQ¨/ºb½ë4´œ¿ÉþêªiâŒãiÚÞÕQoÉXÃÙ[îD&–7ØŒfÈ\»b¤¨lJ²ȼ2¹¨×ké ¶È"®ò”‚Â,/MDD¡®Š¼DL4Ë6—Žøef3Û‡…ešÿ‘‡ûYöõÿä÷{’'ÿç÷Ò“ˆF;%X˶‡ô6UðWÖo‘¥V&{¤åW;ÍaÚkÛýï ÕÛág0ùÔ2ëîcÞ¼”r5̪÷Xýà«ß¤Øƒý7 +.:*ûrÞÝß—¹ví¨ö…8øÔž¬ß•x_ +‹Ë7J±£Þù³JR“ݲr´fÏÎÞž‘£zSo7Ø, ÏúÈxâÊÝNm÷©Ÿ-ïòåÔØ‘Œpýò©Ï{¥°öhèXTjÔÁ;”á{Ù¨V³\ Ïo4?É wÐÜÍ%WŒsø÷1Nß>gÚˆrºÜ<‹NÞsso¶aÛä–HãF<û“8òAù¢jÇ‚í†j§¯2ïÒ&tÿPm¤.òº¿>Ú<ªmƒ&žƒ|L³(ЛQû;gtšð5&|-“TúDúÌDü®Y®*ã{Iuš–ðx¯˜ÔyL-õ…?>¾¹P +:ÏÑtÑBÆ/A–r‹\·œƒœ“àsÀ®ã{(æ23t-sÓ²*x Ä!s&¢t¡ÞõAñ{”Ñ*õÎÑUSÅâ3Æóû,.[Ü°uܳOr®Î[†!i6x×:HγœòŸñXÐv0†b=1^^\ ù(ª7{Ø©¡±Ÿ¾Õ‚)ñîÜÙú +R%ÐõkÞ¢‚txÙs–‰²07ÿè°ö²Óãw‡Î¶'ââ(‘Eìàîm]¥BñŽ#ü’ÿ@C…×ýé2•F •@!$EZG¾&,ŽK#Ž’b߇{+ÚœY`{ò³þ:“p:É¿]ÿ0 ¹®á +endstream +endobj +1197 0 obj +[1582 0 R] +endobj +1198 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1199 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 1583 0 R +/FontName /EFZRMV+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1200 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +1202 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1584 0 R +/FontName /UQZJCP+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +1203 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +1205 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +1207 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1208 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/N/b/e/m/nine/o/one/r/space/two/v/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1587 0 R +/FontName /SXECAT+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1209 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +1210 0 obj +[1582 0 R] +endobj +1211 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1212 0 obj +<< +/K [1231 0 R 1233 0 R 1235 0 R 1237 0 R 1239 0 R] +/P 191 0 R +/S /L +>> +endobj +1213 0 obj +<< +/C /Pa2 +/P 191 0 R +/S /Lauftext_1._Abs +>> +endobj +1214 0 obj +<< +/K [1241 0 R 1243 0 R] +/P 191 0 R +/S /L +>> +endobj +1215 0 obj +<< +/K 1245 0 R +/P 191 0 R +/S /L +>> +endobj +1216 0 obj +<< +/C /Pa3 +/P 191 0 R +/S /Lauftext +>> +endobj +1217 0 obj +<< +/K 1247 0 R +/P 191 0 R +/S /L +>> +endobj +1218 0 obj +<< +/K 1251 0 R +/P 191 0 R +/S /L +>> +endobj +1219 0 obj +<< +/K 1427 0 R +/P 191 0 R +/S /L +>> +endobj +1220 0 obj +<< +/K 1429 0 R +/P 191 0 R +/S /L +>> +endobj +1221 0 obj +<< +/K 1431 0 R +/P 191 0 R +/S /L +>> +endobj +1222 0 obj +<< +/K 1433 0 R +/P 191 0 R +/S /L +>> +endobj +1223 0 obj +<< +/C /Pa3 +/P 191 0 R +/S /Lauftext +>> +endobj +1224 0 obj +<< +/C /Pa12 +/K 1588 0 R +/P 195 0 R +/S /NormalParagraphStyle +>> +endobj +1225 0 obj +<< +/C /Pa12 +/K 1589 0 R +/P 196 0 R +/S /NormalParagraphStyle +>> +endobj +1226 0 obj +<< +/C /Pa12 +/K 1590 0 R +/P 199 0 R +/S /NormalParagraphStyle +>> +endobj +1227 0 obj +<< +/C /Pa12 +/K 1591 0 R +/P 201 0 R +/S /NormalParagraphStyle +>> +endobj +1228 0 obj +<< +/C /Pa12 +/K 1592 0 R +/P 204 0 R +/S /NormalParagraphStyle +>> +endobj +1229 0 obj +<< +/C /Pa12 +/K 1593 0 R +/P 206 0 R +/S /NormalParagraphStyle +>> +endobj +1230 0 obj +<< +/K 232 0 R +/P 1231 0 R +/S /Lbl +>> +endobj +1231 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 34.0 +>> +/K [1230 0 R 233 0 R] +/P 1212 0 R +/S /LI +>> +endobj +1232 0 obj +<< +/K 235 0 R +/P 1233 0 R +/S /Lbl +>> +endobj +1233 0 obj +<< +/C /Pa5 +/K [1232 0 R 236 0 R] +/P 1212 0 R +/S /LI +>> +endobj +1234 0 obj +<< +/K 238 0 R +/P 1235 0 R +/S /Lbl +>> +endobj +1235 0 obj +<< +/C /Pa5 +/K [1234 0 R 239 0 R] +/P 1212 0 R +/S /LI +>> +endobj +1236 0 obj +<< +/K 240 0 R +/P 1237 0 R +/S /Lbl +>> +endobj +1237 0 obj +<< +/C /Pa5 +/K [1236 0 R 241 0 R] +/P 1212 0 R +/S /LI +>> +endobj +1238 0 obj +<< +/K 242 0 R +/P 1239 0 R +/S /Lbl +>> +endobj +1239 0 obj +<< +/C /Pa5 +/K [1238 0 R 243 0 R] +/P 1212 0 R +/S /LI +>> +endobj +1240 0 obj +<< +/K [246 0 R 245 0 R] +/P 1241 0 R +/S /Lbl +>> +endobj +1241 0 obj +<< +/C /Pa6 +/K [1240 0 R 248 0 R] +/P 1214 0 R +/S /LI +>> +endobj +1242 0 obj +<< +/K [251 0 R 250 0 R] +/P 1243 0 R +/S /Lbl +>> +endobj +1243 0 obj +<< +/C /Pa6 +/K [1242 0 R 253 0 R] +/P 1214 0 R +/S /LI +>> +endobj +1244 0 obj +<< +/K [263 0 R 262 0 R] +/P 1245 0 R +/S /Lbl +>> +endobj +1245 0 obj +<< +/C /Pa6 +/K [1244 0 R 264 0 R] +/P 1215 0 R +/S /LI +>> +endobj +1246 0 obj +<< +/K [285 0 R 284 0 R] +/P 1247 0 R +/S /Lbl +>> +endobj +1247 0 obj +<< +/C /Pa6 +/K [1246 0 R 286 0 R] +/P 1217 0 R +/S /LI +>> +endobj +1248 0 obj +<< +/K 348 0 R +/P 347 0 R +/S /Reference +>> +endobj +1249 0 obj +<< +/K 351 0 R +/P 347 0 R +/S /Note +>> +endobj +1250 0 obj +<< +/K [396 0 R 395 0 R] +/P 1251 0 R +/S /Lbl +>> +endobj +1251 0 obj +<< +/C /Pa6 +/K [1250 0 R 400 0 R] +/P 1218 0 R +/S /LI +>> +endobj +1252 0 obj +<< +/K 424 0 R +/P 1594 0 R +/S /TD +>> +endobj +1253 0 obj +<< +/K 425 0 R +/P 1595 0 R +/S /TD +>> +endobj +1254 0 obj +<< +/K [427 0 R 426 0 R] +/P 1255 0 R +/S /Lbl +>> +endobj +1255 0 obj +<< +/C /Pa14 +/K [1254 0 R 428 0 R] +/P 1596 0 R +/S /LI +>> +endobj +1256 0 obj +<< +/K 429 0 R +/P 1597 0 R +/S /TD +>> +endobj +1257 0 obj +<< +/K [433 0 R 432 0 R] +/P 1258 0 R +/S /Lbl +>> +endobj +1258 0 obj +<< +/C /Pa14 +/K [1257 0 R 434 0 R] +/P 1598 0 R +/S /LI +>> +endobj +1259 0 obj +<< +/K [437 0 R 436 0 R] +/P 1260 0 R +/S /Lbl +>> +endobj +1260 0 obj +<< +/C /Pa14 +/K [1259 0 R 438 0 R] +/P 1598 0 R +/S /LI +>> +endobj +1261 0 obj +<< +/K [441 0 R 440 0 R] +/P 1262 0 R +/S /Lbl +>> +endobj +1262 0 obj +<< +/C /Pa14 +/K [1261 0 R 442 0 R] +/P 1598 0 R +/S /LI +>> +endobj +1263 0 obj +<< +/K [444 0 R 443 0 R] +/P 1264 0 R +/S /Lbl +>> +endobj +1264 0 obj +<< +/C /Pa14 +/K [1263 0 R 445 0 R] +/P 1598 0 R +/S /LI +>> +endobj +1265 0 obj +<< +/K [447 0 R 446 0 R] +/P 1266 0 R +/S /Lbl +>> +endobj +1266 0 obj +<< +/C /Pa14 +/K [1265 0 R 448 0 R] +/P 1598 0 R +/S /LI +>> +endobj +1267 0 obj +<< +/K [450 0 R 449 0 R] +/P 1268 0 R +/S /Lbl +>> +endobj +1268 0 obj +<< +/C /Pa14 +/K [1267 0 R 451 0 R] +/P 1598 0 R +/S /LI +>> +endobj +1269 0 obj +<< +/K 452 0 R +/P 1599 0 R +/S /TD +>> +endobj +1270 0 obj +<< +/K [455 0 R 454 0 R] +/P 1271 0 R +/S /Lbl +>> +endobj +1271 0 obj +<< +/C /Pa14 +/K [1270 0 R 456 0 R] +/P 1600 0 R +/S /LI +>> +endobj +1272 0 obj +<< +/K [458 0 R 457 0 R] +/P 1273 0 R +/S /Lbl +>> +endobj +1273 0 obj +<< +/C /Pa14 +/K [1272 0 R 459 0 R] +/P 1600 0 R +/S /LI +>> +endobj +1274 0 obj +<< +/K 464 0 R +/P 1601 0 R +/S /TD +>> +endobj +1275 0 obj +<< +/K 465 0 R +/P 1601 0 R +/S /TD +>> +endobj +1276 0 obj +<< +/K [467 0 R 466 0 R] +/P 1277 0 R +/S /Lbl +>> +endobj +1277 0 obj +<< +/C /Pa14 +/K [1276 0 R 468 0 R] +/P 1602 0 R +/S /LI +>> +endobj +1278 0 obj +<< +/K [470 0 R 469 0 R] +/P 1279 0 R +/S /Lbl +>> +endobj +1279 0 obj +<< +/C /Pa14 +/K [1278 0 R 471 0 R] +/P 1602 0 R +/S /LI +>> +endobj +1280 0 obj +<< +/K [473 0 R 472 0 R] +/P 1281 0 R +/S /Lbl +>> +endobj +1281 0 obj +<< +/C /Pa14 +/K [1280 0 R 474 0 R] +/P 1602 0 R +/S /LI +>> +endobj +1282 0 obj +<< +/K [476 0 R 475 0 R] +/P 1283 0 R +/S /Lbl +>> +endobj +1283 0 obj +<< +/C /Pa14 +/K [1282 0 R 477 0 R] +/P 1603 0 R +/S /LI +>> +endobj +1284 0 obj +<< +/K [479 0 R 478 0 R] +/P 1285 0 R +/S /Lbl +>> +endobj +1285 0 obj +<< +/C /Pa14 +/K [1284 0 R 480 0 R] +/P 1603 0 R +/S /LI +>> +endobj +1286 0 obj +<< +/K [482 0 R 481 0 R] +/P 1287 0 R +/S /Lbl +>> +endobj +1287 0 obj +<< +/C /Pa14 +/K [1286 0 R 483 0 R] +/P 1603 0 R +/S /LI +>> +endobj +1288 0 obj +<< +/K [485 0 R 484 0 R] +/P 1289 0 R +/S /Lbl +>> +endobj +1289 0 obj +<< +/C /Pa14 +/K [1288 0 R 486 0 R] +/P 1603 0 R +/S /LI +>> +endobj +1290 0 obj +<< +/K [488 0 R 487 0 R] +/P 1291 0 R +/S /Lbl +>> +endobj +1291 0 obj +<< +/C /Pa14 +/K [1290 0 R 489 0 R] +/P 1603 0 R +/S /LI +>> +endobj +1292 0 obj +<< +/K [491 0 R 490 0 R] +/P 1293 0 R +/S /Lbl +>> +endobj +1293 0 obj +<< +/C /Pa14 +/K [1292 0 R 492 0 R] +/P 1603 0 R +/S /LI +>> +endobj +1294 0 obj +<< +/K [494 0 R 493 0 R] +/P 1295 0 R +/S /Lbl +>> +endobj +1295 0 obj +<< +/C /Pa14 +/K [1294 0 R 495 0 R] +/P 1603 0 R +/S /LI +>> +endobj +1296 0 obj +<< +/K [497 0 R 496 0 R] +/P 1297 0 R +/S /Lbl +>> +endobj +1297 0 obj +<< +/C /Pa14 +/K [1296 0 R 498 0 R] +/P 1604 0 R +/S /LI +>> +endobj +1298 0 obj +<< +/K [500 0 R 499 0 R] +/P 1299 0 R +/S /Lbl +>> +endobj +1299 0 obj +<< +/C /Pa14 +/K [1298 0 R 501 0 R] +/P 1604 0 R +/S /LI +>> +endobj +1300 0 obj +<< +/K [503 0 R 502 0 R] +/P 1301 0 R +/S /Lbl +>> +endobj +1301 0 obj +<< +/C /Pa14 +/K [1300 0 R 504 0 R] +/P 1604 0 R +/S /LI +>> +endobj +1302 0 obj +<< +/K [506 0 R 505 0 R] +/P 1303 0 R +/S /Lbl +>> +endobj +1303 0 obj +<< +/C /Pa14 +/K [1302 0 R 507 0 R] +/P 1605 0 R +/S /LI +>> +endobj +1304 0 obj +<< +/K [509 0 R 508 0 R] +/P 1305 0 R +/S /Lbl +>> +endobj +1305 0 obj +<< +/C /Pa14 +/K [1304 0 R 510 0 R] +/P 1605 0 R +/S /LI +>> +endobj +1306 0 obj +<< +/K [512 0 R 511 0 R] +/P 1307 0 R +/S /Lbl +>> +endobj +1307 0 obj +<< +/C /Pa14 +/K [1306 0 R 513 0 R] +/P 1605 0 R +/S /LI +>> +endobj +1308 0 obj +<< +/K [515 0 R 514 0 R] +/P 1309 0 R +/S /Lbl +>> +endobj +1309 0 obj +<< +/C /Pa14 +/K [1308 0 R 516 0 R] +/P 1605 0 R +/S /LI +>> +endobj +1310 0 obj +<< +/K [518 0 R 517 0 R] +/P 1311 0 R +/S /Lbl +>> +endobj +1311 0 obj +<< +/C /Pa14 +/K [1310 0 R 519 0 R] +/P 1605 0 R +/S /LI +>> +endobj +1312 0 obj +<< +/K [521 0 R 520 0 R] +/P 1313 0 R +/S /Lbl +>> +endobj +1313 0 obj +<< +/C /Pa14 +/K [1312 0 R 522 0 R] +/P 1605 0 R +/S /LI +>> +endobj +1314 0 obj +<< +/K [524 0 R 523 0 R] +/P 1315 0 R +/S /Lbl +>> +endobj +1315 0 obj +<< +/C /Pa14 +/K [1314 0 R 525 0 R] +/P 1606 0 R +/S /LI +>> +endobj +1316 0 obj +<< +/K [527 0 R 526 0 R] +/P 1317 0 R +/S /Lbl +>> +endobj +1317 0 obj +<< +/C /Pa14 +/K [1316 0 R 528 0 R] +/P 1606 0 R +/S /LI +>> +endobj +1318 0 obj +<< +/K [530 0 R 529 0 R] +/P 1319 0 R +/S /Lbl +>> +endobj +1319 0 obj +<< +/C /Pa14 +/K [1318 0 R 531 0 R] +/P 1606 0 R +/S /LI +>> +endobj +1320 0 obj +<< +/K [533 0 R 532 0 R] +/P 1321 0 R +/S /Lbl +>> +endobj +1321 0 obj +<< +/C /Pa14 +/K [1320 0 R 534 0 R] +/P 1607 0 R +/S /LI +>> +endobj +1322 0 obj +<< +/K [536 0 R 535 0 R] +/P 1323 0 R +/S /Lbl +>> +endobj +1323 0 obj +<< +/C /Pa14 +/K [1322 0 R 537 0 R] +/P 1607 0 R +/S /LI +>> +endobj +1324 0 obj +<< +/K [539 0 R 538 0 R] +/P 1325 0 R +/S /Lbl +>> +endobj +1325 0 obj +<< +/C /Pa14 +/K [1324 0 R 540 0 R] +/P 1607 0 R +/S /LI +>> +endobj +1326 0 obj +<< +/K [542 0 R 541 0 R] +/P 1327 0 R +/S /Lbl +>> +endobj +1327 0 obj +<< +/C /Pa14 +/K [1326 0 R 543 0 R] +/P 1607 0 R +/S /LI +>> +endobj +1328 0 obj +<< +/K [545 0 R 544 0 R] +/P 1329 0 R +/S /Lbl +>> +endobj +1329 0 obj +<< +/C /Pa14 +/K [1328 0 R 546 0 R] +/P 1607 0 R +/S /LI +>> +endobj +1330 0 obj +<< +/K [548 0 R 547 0 R] +/P 1331 0 R +/S /Lbl +>> +endobj +1331 0 obj +<< +/C /Pa14 +/K [1330 0 R 549 0 R] +/P 1607 0 R +/S /LI +>> +endobj +1332 0 obj +<< +/K [551 0 R 550 0 R] +/P 1333 0 R +/S /Lbl +>> +endobj +1333 0 obj +<< +/C /Pa14 +/K [1332 0 R 552 0 R] +/P 1607 0 R +/S /LI +>> +endobj +1334 0 obj +<< +/K [554 0 R 553 0 R] +/P 1335 0 R +/S /Lbl +>> +endobj +1335 0 obj +<< +/C /Pa14 +/K [1334 0 R 555 0 R] +/P 1607 0 R +/S /LI +>> +endobj +1336 0 obj +<< +/K 580 0 R +/P 1608 0 R +/S /TD +>> +endobj +1337 0 obj +<< +/K 581 0 R +/P 1608 0 R +/S /TD +>> +endobj +1338 0 obj +<< +/K 582 0 R +/P 1609 0 R +/S /TD +>> +endobj +1339 0 obj +<< +/K [584 0 R 583 0 R] +/P 1340 0 R +/S /Lbl +>> +endobj +1340 0 obj +<< +/C /Pa14 +/K [1339 0 R 585 0 R] +/P 1610 0 R +/S /LI +>> +endobj +1341 0 obj +<< +/K [588 0 R 587 0 R] +/P 1342 0 R +/S /Lbl +>> +endobj +1342 0 obj +<< +/C /Pa14 +/K [1341 0 R 589 0 R] +/P 1610 0 R +/S /LI +>> +endobj +1343 0 obj +<< +/K [591 0 R 590 0 R] +/P 1344 0 R +/S /Lbl +>> +endobj +1344 0 obj +<< +/C /Pa14 +/K [1343 0 R 592 0 R] +/P 1610 0 R +/S /LI +>> +endobj +1345 0 obj +<< +/K [594 0 R 593 0 R] +/P 1346 0 R +/S /Lbl +>> +endobj +1346 0 obj +<< +/C /Pa14 +/K [1345 0 R 595 0 R] +/P 1610 0 R +/S /LI +>> +endobj +1347 0 obj +<< +/K [597 0 R 596 0 R] +/P 1348 0 R +/S /Lbl +>> +endobj +1348 0 obj +<< +/C /Pa14 +/K [1347 0 R 598 0 R] +/P 1610 0 R +/S /LI +>> +endobj +1349 0 obj +<< +/K [600 0 R 599 0 R] +/P 1350 0 R +/S /Lbl +>> +endobj +1350 0 obj +<< +/C /Pa14 +/K [1349 0 R 601 0 R] +/P 1610 0 R +/S /LI +>> +endobj +1351 0 obj +<< +/K [603 0 R 602 0 R] +/P 1352 0 R +/S /Lbl +>> +endobj +1352 0 obj +<< +/C /Pa14 +/K [1351 0 R 604 0 R] +/P 1610 0 R +/S /LI +>> +endobj +1353 0 obj +<< +/K [606 0 R 605 0 R] +/P 1354 0 R +/S /Lbl +>> +endobj +1354 0 obj +<< +/C /Pa14 +/K [1353 0 R 607 0 R] +/P 1610 0 R +/S /LI +>> +endobj +1355 0 obj +<< +/K [609 0 R 608 0 R] +/P 1356 0 R +/S /Lbl +>> +endobj +1356 0 obj +<< +/C /Pa14 +/K [1355 0 R 610 0 R] +/P 1611 0 R +/S /LI +>> +endobj +1357 0 obj +<< +/K [612 0 R 611 0 R] +/P 1358 0 R +/S /Lbl +>> +endobj +1358 0 obj +<< +/C /Pa14 +/K [1357 0 R 613 0 R] +/P 1611 0 R +/S /LI +>> +endobj +1359 0 obj +<< +/K [615 0 R 614 0 R] +/P 1360 0 R +/S /Lbl +>> +endobj +1360 0 obj +<< +/C /Pa14 +/K [1359 0 R 616 0 R] +/P 1611 0 R +/S /LI +>> +endobj +1361 0 obj +<< +/K 617 0 R +/P 1612 0 R +/S /TD +>> +endobj +1362 0 obj +<< +/K [619 0 R 618 0 R] +/P 1363 0 R +/S /Lbl +>> +endobj +1363 0 obj +<< +/C /Pa14 +/K [1362 0 R 620 0 R] +/P 1613 0 R +/S /LI +>> +endobj +1364 0 obj +<< +/K [622 0 R 621 0 R] +/P 1365 0 R +/S /Lbl +>> +endobj +1365 0 obj +<< +/C /Pa14 +/K [1364 0 R 623 0 R] +/P 1614 0 R +/S /LI +>> +endobj +1366 0 obj +<< +/K [626 0 R 625 0 R] +/P 1615 0 R +/S /Lbl +>> +endobj +1367 0 obj +<< +/K 627 0 R +/P 1615 0 R +/S /LBody +>> +endobj +1368 0 obj +<< +/K [629 0 R 628 0 R] +/P 1616 0 R +/S /Lbl +>> +endobj +1369 0 obj +<< +/K 630 0 R +/P 1616 0 R +/S /LBody +>> +endobj +1370 0 obj +<< +/K 631 0 R +/P 1617 0 R +/S /TD +>> +endobj +1371 0 obj +<< +/K [633 0 R 632 0 R] +/P 1372 0 R +/S /Lbl +>> +endobj +1372 0 obj +<< +/C /Pa14 +/K [1371 0 R 634 0 R] +/P 1618 0 R +/S /LI +>> +endobj +1373 0 obj +<< +/K [636 0 R 635 0 R] +/P 1374 0 R +/S /Lbl +>> +endobj +1374 0 obj +<< +/C /Pa14 +/K [1373 0 R 637 0 R] +/P 1619 0 R +/S /LI +>> +endobj +1375 0 obj +<< +/K 638 0 R +/P 1620 0 R +/S /TD +>> +endobj +1376 0 obj +<< +/K [640 0 R 639 0 R] +/P 1377 0 R +/S /Lbl +>> +endobj +1377 0 obj +<< +/C /Pa14 +/K [1376 0 R 641 0 R] +/P 1621 0 R +/S /LI +>> +endobj +1378 0 obj +<< +/K [643 0 R 642 0 R] +/P 1379 0 R +/S /Lbl +>> +endobj +1379 0 obj +<< +/C /Pa14 +/K [1378 0 R 644 0 R] +/P 1622 0 R +/S /LI +>> +endobj +1380 0 obj +<< +/K 651 0 R +/P 1623 0 R +/S /TD +>> +endobj +1381 0 obj +<< +/K 652 0 R +/P 1623 0 R +/S /TD +>> +endobj +1382 0 obj +<< +/K 654 0 R +/P 1623 0 R +/S /TD +>> +endobj +1383 0 obj +<< +/K 656 0 R +/P 1624 0 R +/S /TD +>> +endobj +1384 0 obj +<< +/K [660 0 R 659 0 R] +/P 1385 0 R +/S /Lbl +>> +endobj +1385 0 obj +<< +/C /Pa14 +/K [1384 0 R 661 0 R] +/P 1625 0 R +/S /LI +>> +endobj +1386 0 obj +<< +/K [663 0 R 662 0 R] +/P 1387 0 R +/S /Lbl +>> +endobj +1387 0 obj +<< +/C /Pa14 +/K [1386 0 R 664 0 R] +/P 1625 0 R +/S /LI +>> +endobj +1388 0 obj +<< +/K [666 0 R 665 0 R] +/P 1389 0 R +/S /Lbl +>> +endobj +1389 0 obj +<< +/C /Pa14 +/K [1388 0 R 667 0 R] +/P 1625 0 R +/S /LI +>> +endobj +1390 0 obj +<< +/K [669 0 R 668 0 R] +/P 1391 0 R +/S /Lbl +>> +endobj +1391 0 obj +<< +/C /Pa14 +/K [1390 0 R 670 0 R] +/P 1625 0 R +/S /LI +>> +endobj +1392 0 obj +<< +/K [674 0 R 673 0 R] +/P 1393 0 R +/S /Lbl +>> +endobj +1393 0 obj +<< +/C /Pa14 +/K [1392 0 R 675 0 R] +/P 1625 0 R +/S /LI +>> +endobj +1394 0 obj +<< +/K [678 0 R 677 0 R] +/P 1395 0 R +/S /Lbl +>> +endobj +1395 0 obj +<< +/C /Pa14 +/K [1394 0 R 679 0 R] +/P 1626 0 R +/S /LI +>> +endobj +1396 0 obj +<< +/K [681 0 R 680 0 R] +/P 1397 0 R +/S /Lbl +>> +endobj +1397 0 obj +<< +/C /Pa14 +/K [1396 0 R 682 0 R] +/P 1626 0 R +/S /LI +>> +endobj +1398 0 obj +<< +/K [684 0 R 683 0 R] +/P 1399 0 R +/S /Lbl +>> +endobj +1399 0 obj +<< +/C /Pa14 +/K [1398 0 R 685 0 R] +/P 1626 0 R +/S /LI +>> +endobj +1400 0 obj +<< +/K [687 0 R 686 0 R] +/P 1401 0 R +/S /Lbl +>> +endobj +1401 0 obj +<< +/C /Pa14 +/K [1400 0 R 688 0 R] +/P 1626 0 R +/S /LI +>> +endobj +1402 0 obj +<< +/K [690 0 R 689 0 R] +/P 1403 0 R +/S /Lbl +>> +endobj +1403 0 obj +<< +/C /Pa14 +/K [1402 0 R 691 0 R] +/P 1626 0 R +/S /LI +>> +endobj +1404 0 obj +<< +/K [694 0 R 693 0 R] +/P 1405 0 R +/S /Lbl +>> +endobj +1405 0 obj +<< +/C /Pa14 +/K [1404 0 R 695 0 R] +/P 1626 0 R +/S /LI +>> +endobj +1406 0 obj +<< +/K [698 0 R 697 0 R] +/P 1407 0 R +/S /Lbl +>> +endobj +1407 0 obj +<< +/C /Pa14 +/K [1406 0 R 699 0 R] +/P 1626 0 R +/S /LI +>> +endobj +1408 0 obj +<< +/K [703 0 R 702 0 R] +/P 1409 0 R +/S /Lbl +>> +endobj +1409 0 obj +<< +/C /Pa14 +/K [1408 0 R 704 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1410 0 obj +<< +/K [706 0 R 705 0 R] +/P 1411 0 R +/S /Lbl +>> +endobj +1411 0 obj +<< +/C /Pa14 +/K [1410 0 R 707 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1412 0 obj +<< +/K [709 0 R 708 0 R] +/P 1413 0 R +/S /Lbl +>> +endobj +1413 0 obj +<< +/C /Pa14 +/K [1412 0 R 710 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1414 0 obj +<< +/K [712 0 R 711 0 R] +/P 1415 0 R +/S /Lbl +>> +endobj +1415 0 obj +<< +/C /Pa14 +/K [1414 0 R 713 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1416 0 obj +<< +/K [715 0 R 714 0 R] +/P 1417 0 R +/S /Lbl +>> +endobj +1417 0 obj +<< +/C /Pa14 +/K [1416 0 R 716 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1418 0 obj +<< +/K [719 0 R 718 0 R] +/P 1419 0 R +/S /Lbl +>> +endobj +1419 0 obj +<< +/C /Pa14 +/K [1418 0 R 720 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1420 0 obj +<< +/K [723 0 R 722 0 R] +/P 1421 0 R +/S /Lbl +>> +endobj +1421 0 obj +<< +/C /Pa14 +/K [1420 0 R 724 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1422 0 obj +<< +/K [727 0 R 726 0 R] +/P 1423 0 R +/S /Lbl +>> +endobj +1423 0 obj +<< +/C /Pa14 +/K [1422 0 R 728 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1424 0 obj +<< +/K [730 0 R 729 0 R] +/P 1425 0 R +/S /Lbl +>> +endobj +1425 0 obj +<< +/C /Pa14 +/K [1424 0 R 731 0 R] +/P 1627 0 R +/S /LI +>> +endobj +1426 0 obj +<< +/K [763 0 R 762 0 R] +/P 1427 0 R +/S /Lbl +>> +endobj +1427 0 obj +<< +/C /Pa6 +/K [1426 0 R 764 0 R] +/P 1219 0 R +/S /LI +>> +endobj +1428 0 obj +<< +/K [811 0 R 810 0 R] +/P 1429 0 R +/S /Lbl +>> +endobj +1429 0 obj +<< +/C /Pa6 +/K [1428 0 R 812 0 R] +/P 1220 0 R +/S /LI +>> +endobj +1430 0 obj +<< +/K [831 0 R 830 0 R] +/P 1431 0 R +/S /Lbl +>> +endobj +1431 0 obj +<< +/C /Pa6 +/K [1430 0 R 832 0 R] +/P 1221 0 R +/S /LI +>> +endobj +1432 0 obj +<< +/K [839 0 R 838 0 R] +/P 1433 0 R +/S /Lbl +>> +endobj +1433 0 obj +<< +/C /Pa6 +/K [1432 0 R 840 0 R] +/P 1222 0 R +/S /LI +>> +endobj +1434 0 obj +<< +/K 871 0 R +/P 1628 0 R +/S /TD +>> +endobj +1435 0 obj +<< +/K [874 0 R 873 0 R] +/P 1436 0 R +/S /Lbl +>> +endobj +1436 0 obj +<< +/C /Pa14 +/K [1435 0 R 875 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1437 0 obj +<< +/K [877 0 R 876 0 R] +/P 1438 0 R +/S /Lbl +>> +endobj +1438 0 obj +<< +/C /Pa14 +/K [1437 0 R 878 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1439 0 obj +<< +/K [880 0 R 879 0 R] +/P 1440 0 R +/S /Lbl +>> +endobj +1440 0 obj +<< +/C /Pa14 +/K [1439 0 R 881 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1441 0 obj +<< +/K [883 0 R 882 0 R] +/P 1442 0 R +/S /Lbl +>> +endobj +1442 0 obj +<< +/C /Pa14 +/K [1441 0 R 884 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1443 0 obj +<< +/K [886 0 R 885 0 R] +/P 1444 0 R +/S /Lbl +>> +endobj +1444 0 obj +<< +/C /Pa14 +/K [1443 0 R 887 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1445 0 obj +<< +/K [889 0 R 888 0 R] +/P 1446 0 R +/S /Lbl +>> +endobj +1446 0 obj +<< +/C /Pa14 +/K [1445 0 R 890 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1447 0 obj +<< +/K [892 0 R 891 0 R] +/P 1448 0 R +/S /Lbl +>> +endobj +1448 0 obj +<< +/C /Pa14 +/K [1447 0 R 893 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1449 0 obj +<< +/K 894 0 R +/P 1630 0 R +/S /TD +>> +endobj +1450 0 obj +<< +/K [896 0 R 895 0 R] +/P 1451 0 R +/S /Lbl +>> +endobj +1451 0 obj +<< +/C /Pa14 +/K [1450 0 R 897 0 R] +/P 1631 0 R +/S /LI +>> +endobj +1452 0 obj +<< +/K [899 0 R 898 0 R] +/P 1453 0 R +/S /Lbl +>> +endobj +1453 0 obj +<< +/C /Pa14 +/K [1452 0 R 900 0 R] +/P 1631 0 R +/S /LI +>> +endobj +1454 0 obj +<< +/K [902 0 R 901 0 R] +/P 1455 0 R +/S /Lbl +>> +endobj +1455 0 obj +<< +/C /Pa14 +/K [1454 0 R 903 0 R] +/P 1631 0 R +/S /LI +>> +endobj +1456 0 obj +<< +/K [905 0 R 904 0 R] +/P 1457 0 R +/S /Lbl +>> +endobj +1457 0 obj +<< +/C /Pa14 +/K [1456 0 R 906 0 R] +/P 1631 0 R +/S /LI +>> +endobj +1458 0 obj +<< +/K 907 0 R +/P 1632 0 R +/S /TD +>> +endobj +1459 0 obj +<< +/K [909 0 R 908 0 R] +/P 1460 0 R +/S /Lbl +>> +endobj +1460 0 obj +<< +/C /Pa14 +/K [1459 0 R 910 0 R] +/P 1633 0 R +/S /LI +>> +endobj +1461 0 obj +<< +/K [912 0 R 911 0 R] +/P 1462 0 R +/S /Lbl +>> +endobj +1462 0 obj +<< +/C /Pa14 +/K [1461 0 R 913 0 R] +/P 1633 0 R +/S /LI +>> +endobj +1463 0 obj +<< +/K [915 0 R 914 0 R] +/P 1464 0 R +/S /Lbl +>> +endobj +1464 0 obj +<< +/C /Pa14 +/K [1463 0 R 916 0 R] +/P 1633 0 R +/S /LI +>> +endobj +1465 0 obj +<< +/K [918 0 R 917 0 R] +/P 1466 0 R +/S /Lbl +>> +endobj +1466 0 obj +<< +/C /Pa14 +/K [1465 0 R 919 0 R] +/P 1633 0 R +/S /LI +>> +endobj +1467 0 obj +<< +/K [922 0 R 921 0 R] +/P 1468 0 R +/S /Lbl +>> +endobj +1468 0 obj +<< +/C /Pa14 +/K [1467 0 R 923 0 R] +/P 1633 0 R +/S /LI +>> +endobj +1469 0 obj +<< +/K [925 0 R 924 0 R] +/P 1634 0 R +/S /Lbl +>> +endobj +1470 0 obj +<< +/K 926 0 R +/P 1634 0 R +/S /LBody +>> +endobj +1471 0 obj +<< +/K [928 0 R 927 0 R] +/P 1472 0 R +/S /Lbl +>> +endobj +1472 0 obj +<< +/C /Pa14 +/K [1471 0 R 929 0 R] +/P 1633 0 R +/S /LI +>> +endobj +1473 0 obj +<< +/K 930 0 R +/P 1635 0 R +/S /TD +>> +endobj +1474 0 obj +<< +/K [932 0 R 931 0 R] +/P 1475 0 R +/S /Lbl +>> +endobj +1475 0 obj +<< +/C /Pa14 +/K [1474 0 R 933 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1476 0 obj +<< +/K [935 0 R 934 0 R] +/P 1477 0 R +/S /Lbl +>> +endobj +1477 0 obj +<< +/C /Pa14 +/K [1476 0 R 936 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1478 0 obj +<< +/K [938 0 R 937 0 R] +/P 1479 0 R +/S /Lbl +>> +endobj +1479 0 obj +<< +/C /Pa14 +/K [1478 0 R 939 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1480 0 obj +<< +/K [941 0 R 940 0 R] +/P 1481 0 R +/S /Lbl +>> +endobj +1481 0 obj +<< +/C /Pa14 +/K [1480 0 R 942 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1482 0 obj +<< +/K [944 0 R 943 0 R] +/P 1483 0 R +/S /Lbl +>> +endobj +1483 0 obj +<< +/C /Pa14 +/K [1482 0 R 945 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1484 0 obj +<< +/K [947 0 R 946 0 R] +/P 1485 0 R +/S /Lbl +>> +endobj +1485 0 obj +<< +/C /Pa14 +/K [1484 0 R 948 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1486 0 obj +<< +/K 949 0 R +/P 1637 0 R +/S /TD +>> +endobj +1487 0 obj +<< +/K [951 0 R 950 0 R] +/P 1488 0 R +/S /Lbl +>> +endobj +1488 0 obj +<< +/C /Pa14 +/K [1487 0 R 952 0 R] +/P 1638 0 R +/S /LI +>> +endobj +1489 0 obj +<< +/K [954 0 R 953 0 R] +/P 1490 0 R +/S /Lbl +>> +endobj +1490 0 obj +<< +/C /Pa14 +/K [1489 0 R 955 0 R] +/P 1638 0 R +/S /LI +>> +endobj +1491 0 obj +<< +/K [957 0 R 956 0 R] +/P 1492 0 R +/S /Lbl +>> +endobj +1492 0 obj +<< +/C /Pa14 +/K [1491 0 R 958 0 R] +/P 1638 0 R +/S /LI +>> +endobj +1493 0 obj +<< +/K [960 0 R 959 0 R] +/P 1494 0 R +/S /Lbl +>> +endobj +1494 0 obj +<< +/C /Pa14 +/K [1493 0 R 961 0 R] +/P 1638 0 R +/S /LI +>> +endobj +1495 0 obj +<< +/K [963 0 R 962 0 R] +/P 1496 0 R +/S /Lbl +>> +endobj +1496 0 obj +<< +/C /Pa14 +/K [1495 0 R 964 0 R] +/P 1638 0 R +/S /LI +>> +endobj +1497 0 obj +<< +/K 1022 0 R +/P 1639 0 R +/S /TD +>> +endobj +1498 0 obj +<< +/K 1023 0 R +/P 1639 0 R +/S /TD +>> +endobj +1499 0 obj +<< +/K 1024 0 R +/P 1639 0 R +/S /TD +>> +endobj +1500 0 obj +<< +/K 1026 0 R +/P 1640 0 R +/S /TD +>> +endobj +1501 0 obj +<< +/K [1027 0 R 1641 0 R] +/P 1640 0 R +/S /TD +>> +endobj +1502 0 obj +<< +/K [1029 0 R 1028 0 R] +/P 1503 0 R +/S /Lbl +>> +endobj +1503 0 obj +<< +/C /Pa14 +/K [1502 0 R 1030 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1504 0 obj +<< +/K [1032 0 R 1031 0 R] +/P 1505 0 R +/S /Lbl +>> +endobj +1505 0 obj +<< +/C /Pa14 +/K [1504 0 R 1033 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1506 0 obj +<< +/K [1035 0 R 1034 0 R] +/P 1507 0 R +/S /Lbl +>> +endobj +1507 0 obj +<< +/C /Pa14 +/K [1506 0 R 1036 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1508 0 obj +<< +/K [1038 0 R 1037 0 R] +/P 1509 0 R +/S /Lbl +>> +endobj +1509 0 obj +<< +/C /Pa14 +/K [1508 0 R 1039 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1510 0 obj +<< +/K [1041 0 R 1040 0 R] +/P 1511 0 R +/S /Lbl +>> +endobj +1511 0 obj +<< +/C /Pa14 +/K [1510 0 R 1042 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1512 0 obj +<< +/K [1044 0 R 1043 0 R] +/P 1513 0 R +/S /Lbl +>> +endobj +1513 0 obj +<< +/C /Pa14 +/K [1512 0 R 1045 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1514 0 obj +<< +/K [1048 0 R 1047 0 R] +/P 1515 0 R +/S /Lbl +>> +endobj +1515 0 obj +<< +/C /Pa14 +/K [1514 0 R 1049 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1516 0 obj +<< +/K [1051 0 R 1050 0 R] +/P 1517 0 R +/S /Lbl +>> +endobj +1517 0 obj +<< +/C /Pa14 +/K [1516 0 R 1052 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1518 0 obj +<< +/K [1055 0 R 1054 0 R] +/P 1519 0 R +/S /Lbl +>> +endobj +1519 0 obj +<< +/C /Pa14 +/K [1518 0 R 1056 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1520 0 obj +<< +/K [1058 0 R 1057 0 R] +/P 1521 0 R +/S /Lbl +>> +endobj +1521 0 obj +<< +/C /Pa14 +/K [1520 0 R 1059 0 R] +/P 1641 0 R +/S /LI +>> +endobj +1522 0 obj +<< +/K [1061 0 R 1060 0 R] +/P 1523 0 R +/S /Lbl +>> +endobj +1523 0 obj +<< +/C /Pa14 +/K [1522 0 R 1062 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1524 0 obj +<< +/K [1064 0 R 1063 0 R] +/P 1525 0 R +/S /Lbl +>> +endobj +1525 0 obj +<< +/C /Pa14 +/K [1524 0 R 1065 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1526 0 obj +<< +/K [1067 0 R 1066 0 R] +/P 1527 0 R +/S /Lbl +>> +endobj +1527 0 obj +<< +/C /Pa14 +/K [1526 0 R 1068 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1528 0 obj +<< +/K [1071 0 R 1070 0 R] +/P 1529 0 R +/S /Lbl +>> +endobj +1529 0 obj +<< +/C /Pa14 +/K [1528 0 R 1072 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1530 0 obj +<< +/K [1074 0 R 1073 0 R] +/P 1531 0 R +/S /Lbl +>> +endobj +1531 0 obj +<< +/C /Pa14 +/K [1530 0 R 1075 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1532 0 obj +<< +/K [1078 0 R 1077 0 R] +/P 1533 0 R +/S /Lbl +>> +endobj +1533 0 obj +<< +/C /Pa14 +/K [1532 0 R 1079 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1534 0 obj +<< +/K [1082 0 R 1081 0 R] +/P 1535 0 R +/S /Lbl +>> +endobj +1535 0 obj +<< +/C /Pa14 +/K [1534 0 R 1083 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1536 0 obj +<< +/K [1086 0 R 1085 0 R] +/P 1537 0 R +/S /Lbl +>> +endobj +1537 0 obj +<< +/C /Pa14 +/K [1536 0 R 1087 0 R] +/P 1643 0 R +/S /LI +>> +endobj +1538 0 obj +<< +/K 1089 0 R +/P 1644 0 R +/S /TD +>> +endobj +1539 0 obj +<< +/K [1093 0 R 1645 0 R] +/P 1644 0 R +/S /TD +>> +endobj +1540 0 obj +<< +/K [1095 0 R 1094 0 R] +/P 1541 0 R +/S /Lbl +>> +endobj +1541 0 obj +<< +/C /Pa14 +/K [1540 0 R 1096 0 R] +/P 1645 0 R +/S /LI +>> +endobj +1542 0 obj +<< +/K [1099 0 R 1098 0 R] +/P 1543 0 R +/S /Lbl +>> +endobj +1543 0 obj +<< +/C /Pa14 +/K [1542 0 R 1100 0 R] +/P 1645 0 R +/S /LI +>> +endobj +1544 0 obj +<< +/K [1102 0 R 1101 0 R] +/P 1545 0 R +/S /Lbl +>> +endobj +1545 0 obj +<< +/C /Pa14 +/K [1544 0 R 1103 0 R] +/P 1645 0 R +/S /LI +>> +endobj +1546 0 obj +<< +/K [1105 0 R 1104 0 R] +/P 1547 0 R +/S /Lbl +>> +endobj +1547 0 obj +<< +/C /Pa14 +/K [1546 0 R 1106 0 R] +/P 1645 0 R +/S /LI +>> +endobj +1548 0 obj +<< +/K [1109 0 R 1108 0 R] +/P 1549 0 R +/S /Lbl +>> +endobj +1549 0 obj +<< +/C /Pa14 +/K [1548 0 R 1110 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1550 0 obj +<< +/K [1112 0 R 1111 0 R] +/P 1551 0 R +/S /Lbl +>> +endobj +1551 0 obj +<< +/C /Pa14 +/K [1550 0 R 1113 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1552 0 obj +<< +/K [1115 0 R 1114 0 R] +/P 1553 0 R +/S /Lbl +>> +endobj +1553 0 obj +<< +/C /Pa14 +/K [1552 0 R 1116 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1554 0 obj +<< +/K [1119 0 R 1118 0 R] +/P 1555 0 R +/S /Lbl +>> +endobj +1555 0 obj +<< +/C /Pa14 +/K [1554 0 R 1120 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1556 0 obj +<< +/K [1122 0 R 1121 0 R] +/P 1557 0 R +/S /Lbl +>> +endobj +1557 0 obj +<< +/C /Pa14 +/K [1556 0 R 1123 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1558 0 obj +<< +/K [1125 0 R 1124 0 R] +/P 1559 0 R +/S /Lbl +>> +endobj +1559 0 obj +<< +/C /Pa14 +/K [1558 0 R 1126 0 R] +/P 1647 0 R +/S /LI +>> +endobj +1560 0 obj +<< +/K [1129 0 R 1128 0 R] +/P 1561 0 R +/S /Lbl +>> +endobj +1561 0 obj +<< +/C /Pa14 +/K [1560 0 R 1130 0 R] +/P 1647 0 R +/S /LI +>> +endobj +1562 0 obj +<< +/K [1133 0 R 1132 0 R] +/P 1563 0 R +/S /Lbl +>> +endobj +1563 0 obj +<< +/C /Pa14 +/K [1562 0 R 1134 0 R] +/P 1647 0 R +/S /LI +>> +endobj +1564 0 obj +<< +/K [1136 0 R 1135 0 R] +/P 1565 0 R +/S /Lbl +>> +endobj +1565 0 obj +<< +/C /Pa14 +/K [1564 0 R 1137 0 R] +/P 1647 0 R +/S /LI +>> +endobj +1566 0 obj +<< +/K [1138 0 R 1142 0 R] +/P 1648 0 R +/S /TD +>> +endobj +1567 0 obj +<< +/K [1145 0 R 1144 0 R] +/P 1568 0 R +/S /Lbl +>> +endobj +1568 0 obj +<< +/C /Pa14 +/K [1567 0 R 1146 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1569 0 obj +<< +/K [1148 0 R 1147 0 R] +/P 1570 0 R +/S /Lbl +>> +endobj +1570 0 obj +<< +/C /Pa14 +/K [1569 0 R 1149 0 R] +/P 1650 0 R +/S /LI +>> +endobj +1571 0 obj +<< +/K [1152 0 R 1151 0 R] +/P 1572 0 R +/S /Lbl +>> +endobj +1572 0 obj +<< +/C /Pa14 +/K [1571 0 R 1153 0 R] +/P 1650 0 R +/S /LI +>> +endobj +1573 0 obj +<< +/K [1155 0 R 1154 0 R] +/P 1574 0 R +/S /Lbl +>> +endobj +1574 0 obj +<< +/C /Pa14 +/K [1573 0 R 1156 0 R] +/P 1650 0 R +/S /LI +>> +endobj +1575 0 obj +<< +/K [1159 0 R 1158 0 R] +/P 1576 0 R +/S /Lbl +>> +endobj +1576 0 obj +<< +/C /Pa14 +/K [1575 0 R 1160 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1577 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1578 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1652 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1653 0 R +/FontName /VOBDDX+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1579 0 obj +<< +/Filter /FlateDecode +/Length 2092 +/Subtype /Type1C +>> +stream +H‰|T{TÙŸfBd6ˆvfj} +âVXDð±uëŠbA‚¢`‚á- "$Ä×B‚•µ*ˆˆ/T(>_«]¬mW…ªv]sj¿¡—=§öô´õÌ™ïÜïwçþ¾ßýîo®³·ÃD"‘,6jiäúe>«óTéÉ©kTÊù1òÌôeFªm–ãi/³ç=¥h!2{Ú7ýk3÷\àýÔûž n˜Hô|0R™%¬Þº-›[0σ&cÈ<.Àßß2q©Ê9“§Î–gª¹•Š-JU–R•œ-Oõå"22¸I +5§’«å* üY—®æäéÙÛä*.Y˜Üš.¬WÉS¹lUrª<3YµƒSÚfþ'Mû?¥¸t'pqëé¶,&[Õ\²"ÕO`QNV٢ܥÈV¥ËÕ¾~Ñ1ëò²äÜ".Už†a"áÁ¦Úa2 ›‰a~ˆa!)ÆVaØj1ƒaëí°8 óZ‹­ÆÖ`DZN‘½¨Xt׎³+·»-ç‹´°Ï³ß‡»à øq|” JˆN‰,¦¢ƒ×!âÌq…=¯_3¡'ÀŒîHQÂaˆ@º![2qP2A$NŽ! 9ÁwJm#dËH4Fj‡ùÜaÑ9p…à"†“ã^R4o!òD‰,Š«|<Á›¿>˜rX·8´€ÕÏ—þ¹9ù y`äò¤>¨d!Äxµ÷MÖjÆ™hÁI Zwpgf(`I­/8ÝÅMY1Æ'Š`D¨Å纡ã&IW;ø?ú}ˆz‹f†.SȘæ üdc{}ýªáw_°Æ…‘KÐ|4#l™Ç§²d>~ÞŠš€%¸‰‡J¤ÇŒuuæþÏÎtÝpxüðê°2X N‚NÖaÈ9¿ üÁÕÚ–FÆd,þ\—œ>}«">?¾CžÕñÅc¢fŠùp”îØ ÛH£¹AßÃ\y ß¾R\t–=ý#nU}qt1R/’!Jw$ƒí½®gIp®€@ÄhøS0«"Çí àp*~ã{%TˆeýŒ¹²1¼mÑåˆé° m¢ÆƒŠ êèLsСŒÈxšú,ñ/h)\ò@ÜOÁi­ÕÀ™7 =š“ +¤ø‰»08sŸè1œU~øUÈ‘uU9@E§òži^棸ÌÁ,yp¢»»_Ö¥¹–ÖÀœO\yÄ›^½wÏ&È`©ÙrÒÜJ¿èLX±!i»” Û*€œ­Îq;ÈPY¼;ãhá…îáTKV¨:4ï‘×·ëùÎW~Ðíd(~ +ÆÉzí»U~ö°-Çí¸f™JÂ'îTû§‚G~Ût[ý€;÷C$ s+ƒG½46#!“5Àeä2ÑCP… ë Û  Qj1U›¾dnÖ´5wÐ}£²T»WÂê°ØÍ-í»×ƪ*ÉéÞÁ ã&æ}>HuêÌ’ÍtȪ®QvÀxûÛaúJ½®ä8ûõ nUnªJ¤Qø¡Ñ³‘ψ7Ì»÷«åKžÔŽ¬Ððs¾·Én‚©P.T;ï9'EõIó®øº4rœåB*Yä=8žtŸ»YϘµûÃp°# †›2¾G"ì¡\Jµï6ëµLlqRúFzIÒ7o¯ô<¿Ýš_Íšt•Å:¹E7n¯Áé¥ | +l1¯¹TØï±²n€üC…hä5ä =w¬G/1y¯ð¢´”=ké%Ñçÿ®g_Ûwì?ûí_é¾ã‰F–D7j5|AΘîÖ š®Ô¬uç ëD„z]ßž7î¬O¦IÔ)üÛq9¢Gà*~ä®ãqÈ• ¡M`›1ªµ¤3,ÿùýÈ“ê>q†‹D©f¿…9WÝÐ|•î:¿œEMÞ&©16[˜&kÙKtw]üb}-à$àzkñ– ]n“]”““Ÿ%Xè¦fcógthR¢\Íê ª½ìOø/ sreBŒŒ<òßò®+œÈw6mÐJÔTÞWÍ´XÏ5µÓOÅF±¨N°Ú% øÞ +^»I®a®¶½Oq„ý‡ìvþöFè5¥@‰á_&Esfx¡ äÿa0±Û aƒs½ÇÐ,V¿@úò\P¸W\tÔ§›ž ÷6½ìº› ¢@¢Í©›47eô¸À~‚ºWc²šª™[ÕÎwÓ‡« †*–²‚ƒ„ºgÒ•VÓÖn‹V³åU_>„s„9©2a¥ŒDɺQ¸3(êgq??,EvQ~=(Oò™%é”’Q8_ØF·žÝðkÆõÚ½†N(hèfa8"G`%¤U;ºÜvân!ëIm¼‘/"t(Òï.×2»wl‹£Wíììeᘀ·JP`oì@ÿõŽ¦Z›}sDà€† †ëwdd|Lñž$¬æ ©¬j VNàð >ç päN„¡ +áؤ•—lqÐ%t­E— dŒ†Ÿ#:ĈÙFOÄàŠ+KËd{õ¥e%Lþö,Ev¡*o§VSV÷+†}G®_¾ÓÑÖûV ×Ø+äA„#kÉŽ’­{”ÓõDi®Ew&j<Èb _`‹Åò{ Ò,O-ʵ€ï$ä @ßY™Ú”$gÇ +g§Á)àâ4XåìÌ7~ôoý8 +`Y¦ä +endstream +endobj +1580 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1581 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1654 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1655 0 R +/FontName /OBORAR+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1582 0 obj +<< +/BaseFont /CUCKKZ+Wingdings-Regular +/CIDSystemInfo 1656 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1657 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1583 0 obj +<< +/Filter /FlateDecode +/Length 603 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaC,Ë`KÜêÐA[QÇtGfƵ¥C!-I#æ%xÏÕI¤%á!=˜Çš$ "öÍúVè›íÒ©ïðãý~ïûýÞ㮸ˆ#„øϵ_ïŠ]«¥5%!ujjc\QzÕa©MMJ…v±}ÅöA¯ˆ‡qz§{ç‚>ìƒÕýosEå\!_ÛÔQæ4艖–¦Ã<Ù@›B¡PôUR{eOë†<¢ÓŽdŸªªZÂ¥m¦…j².k)Gü»Ut*+Æ ¬Ñk(̯É5´„$$´›Tu:ÿÐþÿŒ¢J’²,z5©8,n0Q§‰¤d)jaJŸ:–44EÖÁöø•ô¨LOQIîçØ;¹×̹Ùõ¸gp‹ÄCjžd–ìïK„á¡%W¦ØžÊuæ§x˜Æw"Fá‘,)¾Á!ùYOžï.ÔEÆyûµèTè0!cÁÐ&Ä,²œuÁ†ME C ¢.ìFà•…a¼ðx.•‹Œ“å-¸ôÍ +èôÜšüìÀ?=»pz><¾¨ü‘‹4be3u›ý÷øÔGå‹ñÝð²òØn„Ò–}ß"ÏÁ—Á傉\TĪ3X‹Ýس‚uàƒÒÍŸ0 qbmõÝ€¸ú ËQÀª1,k?¯þ†£PÃì+ÕÂ\Ê^Û&àc{û*²öÛøë8”ñÂÓ¾mB½iš3&7ÌO¦‡I·L0iÞ܃ýæºYâŸëíñ–d¼¥ë{³¥¶÷€=.þ`O& +endstream +endobj +1584 0 obj +<< +/Filter /FlateDecode +/Length 3278 +/Subtype /Type1C +>> +stream +H‰|T{TgŸÉd&‘ʸ’ÚŒ;E_ˆ‚‹VÔ + +"jH‚Æ"Þ¯ V ôhQäiµµ ’¨!Q¬ZuÕª»Öê|T´ÊZwqï¤_س={NÿسgιóÝïñ»÷÷»ßwqL*ÁpóшIáÙ:mœ:B—<%L»e«~`‰Fá‚·TøýPMAe¿œü%˜„«ÃÀ=üÒ(Ï/ŒÀqiWOÂÆ„…É)âiñ”jÚìÙÓ'Ø™ƒ6h²jz@@À © +Q'oÖ¨¢²Óôšíiª¥Iñɺ”d]œ^£öW…$&ª!ÒT:MšF—10ùkN*mšJ£ÕoÕèTqââ­x^§Q«ôº8µf{œîUòÀÊoÜ„ÿJ¥MR‰Xªè$퀥'ÓTqIê©"Jò`”øäô$½N«IóŸµ*;E£š¥Rk0 ?ÌÆI0†±6ÃÆJ°‰6ÃfØ9.Å¢H,Ã’1ì$†ïÁ°‰¢ÌX8¥`&ìÖ‡ã:Ü)!%ë$;%G$=DqŒè i’ô!©"ϨñÔêß²ÙBÙy¹\¾Bî‚Y=¤bÈSޣģÛÞÙ3‹-u +¯œ¸hÇ:‰R©PìŠpSP†.3h$á…T¨ƒÇ}@æ¦6 Ža}J8Ï ŒÐ€G£Ny?2â:òdªN´Us/¬häŽð„åÆÉiÃ3üB'ñÒÀ4Vm8–[›––“•Ê§•Tg4°4Zë +ÉÄ A4Ç3ðKKÆPèÏýZ’Ž0X…gÜ쀛Nö¹&0÷‡ŠxTPöÒ¯—ïG …|Hzƒdü.5’³h˜˜Õ¢ñ‡M –ª[€wótD©M¸×Š !,ò¶¡»&ÙY; Aðþ‹À»Êûëß vÉÊMW»l8ÑþÕ5$'„ 霴-âW„“Ûe"hþ• ô‹têD:u"ÌA:™ ¬[.ý_$ÍG3À`…WJ3½¾¾TÜBÀÀ‹¶"MF±h'ø@Pתš&žþûn«ÐkŻ쇢k/³»ÝQr^Ô´×|ã +õÛãÏ^+ßl¿}‘û&Êÿhùéε¼} ³ÿ Û~qcb‚æ—ðh +y¢Ä8õÞ}ÉýA©Ú­px˜|„wT‡ÁbEOúá} íPOѨûh†+0s`W—+é´»eôóÒë›2„]Uê:+xÙ±ð®7¼”)AZrw÷Cδ·9ôì‡Î¹ïA¹{yÆ‹žRŠêÑ{çàŒ%Ûn¨ÿýè=T%Œ!7ôRtœ¨û5 œ±ˆà«v¢ËÛ×ú¨î=­ë&ÖVF”gÊTþñ§¾/÷žö\tµÜ${püÂåçJ{ö™¤\‹zUí v}äî›y»–ÙWÝ´ÿ,ûöû¸±ÓGúð*ŠžUd¿b‡*;ÑṲ́6ßʺÌÂØ;?þÜáDÄ~¢y“ùž²£åà—Û² +j¸+Y©_WÆ"jöB¿©7¢×ð¯4–ó•³ÂWú®\]{LÃѳEh+šv4Þí.R¬îÜxH¦è¿l®‘Ú ÒöAùÜþ2´ùm¨X{H¿‡xN¿Î=I†fÏ[ˆßà›0Ÿ&Éhƒug”[Áßêeq»"OðöÞÝb´˜•°Bö$õŸˆß]˜´‰«ÜJ66>Ôʵ÷³Éë”…2´Æ4a "” +Dz3‹ÿv¿£­¥ž+£yBIø3 +ÇcQq›³!&˜ýxýÉÛ ®ª¯˜§÷DÖZ 9Ó«ÓOÛy0Ô[á(û‘4QKÌ—ï³}€?†ù0.¨yFhÂ?áð—Xwˆ¿ÅgÔrç ‰©.«(;ÌýPÿ­ã ø• HÂ+hxØ4$ùCxûÝ ÎxØxø’/> nkïßeÆš»’EÄœ.äÍ×Àt´ä4ðÕ²"k]u‹Æúøˆ¯cÜO¾ÀßvÖ:ÊÓÅ¿ÉØÖ?Øa¦+†A2[úš¶Y,òðóE3÷òȧÛ<º/9:9“˜mYÙF›Œ­§”B,Ö]Áä ‹ 8…#8cÙ†P±âѯƒá7Ÿ÷=¸½¬š/+0e(éð"l3Ã\ n³Ã7NBXFÆt°ô`…òövðCÓÐ力Ñè'¾À=rÔ•×p…f² eKþ"Ö/è +øóef滃g{Þ² ?1nI O#±çËÍ°ÞŠ?²0Â[Äd̈9.û©¶«û‹Ú]»*¸J3y0?å`"›_”Ä«Õù+B”©¡šÛîå2ºi¬0×*X ÿ•¡SôŒâ•ñÒHY3cÏOfG#É ŒF<žO.žv4ò¦Å³`ÍøðؚϷq9j2åÔÕü¯Ù 7*[OóVsãU¦‹LÑé4™M§¸µ¨‰É)Îþ4— M[¡^Æ"rå ÀxÅ+PÜyôæÁ¹5‘uܾ|S^Ž’6ˆŒVÛĪàâ=j±âk¶Sµ¦#ûpWê.9n±?7͙ɣ;´É yÖoHØV”“Â%åèSóSäF¸+¶žç"Œ>ä½nÞ·+^ˆ=FÐǺõ2EoƒË—IÏÉLO¯Ìú¼ñ?DVmLSgáÞªj¸Ô•^½wK6 ÎME7çÇÜ4NÉ°FÊG(N‘H[ +(­œsô‹"YÀªk X¹?øÈØtÊ爷¹É–àÈt‰çº×{o YrsßäMÞç9çä9Ï9ö–6×RŠKùîE•È*R>Wa8Œ¥:(i«øE-¡&Ä€úIGCó)+3ä¸v‹ïMÄ]çaTÒÜèÀq^uüßÒzw 9,:ÏÃ7ØŽB:ÒSòtE‡˜r®â¨îð<9Z–âßFoÌÈÚ]ÀšHªßø ¡&Ísžz¶ /©=<5.²öG£…ù®e8p‡ž™-C¶á2dlLR'1èŠñáÿ@°°äð ›L« —¡p4g5Z–O/‡EÏ`áO° bVÏ hös<^#t Z¸quLì¦Gñtæ‚78Úr’D¨êÙªôã!ìzOy\âã˜àãih!¨±³ƒÎë¶a¼•X“{[•ÐY9Æ]‹qUä;è\¹’K«ÉŒÆ˜W¸~íÈJh—g’o¢Ž²Ý•)zuô ²¦O¨Úré«8Ä&a]h“H²õ…’h¬1דÁXÍ”ìÊÏ.)-,̯(©µgË-m^÷÷ƒ=¿@,¼ÿÊSH¼ƒÜärô¹5˜°ö|•·ê"ÞFoË¥é ÷†t ‰¡]Ð!Ó‰^‰w¹§.À Óî_÷tÙ +>_‚w^ô +bð?ð‰ÝxX Öë&„OÏæ‡Á2ChZƒÂp“,C±¸Vá°Öâ4bYP ©¬I·ßžLÇÄmFIJÛ@Òßn¿ÄÖt•%šê,ú ÕØädߧ—*ÙX©á¥Aïê>ÜÕü3\€º'¬:Ê‹¢°Q;'u:·š+ÂF­É©:\Àjr8ѨwNBMýáºû ½íØ1CÝvxjêŒîÈWtægº¢böÀŠ Š² ¥ó˜]oJ-g±XÚ-$ʵ<°Hð•Öo¯æá«qË|¦5K1¿>"Ü·€‡ÍQ‚_öŸûa³æ +endstream +endobj +1585 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nPÒ&´“iìnÅDcÐ(F"jd†EÁÈÃEf`FDqx©Ã0°òpç(>x‰"%Ê:*T0Xš-× kmj-6³fS»[•Ó䚪íÁÚªýµu«OÝó¸ç|çôw/Ž¹»a8ŽÏKŒß±e™ºP¯MI‹Ñë–oÜŸ’šår "‹‹´»èëÅ Tã+_ðK‰îÎÞ›ðõðõÆÜpüùß6ér¥£™ùÂGk×® pÉàùI€°rÅŠ32XKÓíÕ±…†|M¶AˆÈIÕésuú”|MZ ¶¿0“ è5Þè2¾$h ‚F›Ÿ©Ñ )’3C+×kÒ„|}Jš&;EŸ%è\žÿQÓÿO)A›#H¹„9Z—›/ BJNZ”E7S%UW“¯×j A[bã +s5Â!M“Ža¸´°w0l1†}ˆaãØFûÇT¶ÃÔ2,Ö KÂ0F*¦Æb0=öûÃÜ–»•±2ƒ;á¾Ê=Â}BÎÉ5òëÄ<"…h,±Þ_ßÄ%éwSfuOǼ9N@5ºË P¨“Ã÷Ð0.åM-ù†HžÙC(’tB¼Í¸vÈ¥Qh‚B&ä ñ£pR„ÀŒ|7ô¯Ë€£ðEÑÒ\¿Œ%ì*A ‡¨€8Ùx SÑw÷èKàvöîù‡·nOÁ|%¼›ômØ-nHâ@ ».ôhé6"Ð\ÆVßbëd{¦FóPÀª­ÈÓÆ9hµ•òJq§W›\¹eãÓ«™_WCÄôj’úÙa„ÀÀx_ò…C ¨dã>ÒæD'1rö`H+ß¾¦egƒÉÔDñ¹‚Þ5 &·yÔÃmî«|h¸±§—ë;åÇ~ZQÏC8š#Aiµ]dïWöêâ• iÚpnAÝ*¥¢øãC î – t3¦þçÆ,$|÷ðx7޹ƯîÉ8uQÙÕÕ~çÑÍÅ\?øÉÛ“·7…°(Ô?ÍöD*ÿM^×}Jm¶Q­R9{9ªß +Ä"c +Àm(ïó°HØD‡ŠŸŠ³–!§BH˜ó +­_ü¹®(‹ëA¤¼­çNëmv¢©ÀÄ#ѺJ4kR(éäµãv6]é㪠:´aœn3‚š)µ–ZʸÜ2]a›mlî¼êxÂS?™aÂ"¤š¼G@ÁI‚=>´³öÜFÄõÞ9p›ܧ` Ël«þŽ<Ù¨DCºŽ·€©ÞÜ"èCÑ–(KQÐËÔUI‹ë;Ñu®½>AÅÓÎõÚÔ/2tºË¹ÊÚÊúz¥«ì"¤ÈQ ó]u»¥±ƒŠvŠ³¦Tk!» ’›w°ÈcaZ[Å£ –1zïôH/g“ÊÕªäLXz-ãcJñI;%såK ·¯B——Á&¤<8ÿåýþó9ÚZ¾ªÌZV®¤:K@1ÔŸ`Þ ëÁBdb5D2Õöšs]J`ÃÁ}Œ"Â?"ÑŠ lì«ÚŽ{\>xÉïÞ}tµýô• +©oŠé®v8‡ÙÑÆ:žú ÒÀüg0Š€5¿íf‰ÔÍ ñ}ÑÌЯ+vÊ-Ä@ÞÞ3¿aÑ?„½\^Îk-ý]¼­€ø,!326¶­%›Ó"_¹aèqñ#ö›§7Fù{·[^¼T‚ƒ¤_<· VwqHN3fkÑñ.·ÂP°MÈþýW<ýúÙ嫃½gŒ™u\UyU©ÔªÃ(šM_Ãg¸ôKe`öÍÒˆÌä_§ËÄfd$&õiFF/õßà•™—bY)|:Ñ4;âªéD¤"(øUºaüÌ.^lOé›%‘Ò)El"èÐGÚ­¿;ɵÔ6uô²-qH‚oôä‚}9åÅz.¯¸ÀdÒ{X§1±3ŠýdO’¡?FÐÎò19ZFØ’mÛ·*©) Á/°Øü–™´4Óë.|= =dcÕ©šz®­®¹£lß·ÝU]åªÂªŸ!rí®¤¼BNÊx½ìý7ãs³”¦h‰ÑÑ2¸#Zô©ß"´±\bsÿ,½#Kÿòˆf¾<­ÿ47>)Ö0úd¢}âO °)Xg6]0™GW½6 +ÇH{Uƒ­ž¨¿tz˜m;e9ÞÈÓõ°ž¤«ª‹Ë­ElJ”~Cž«×³SrHØöÚv­WR1%ð.´Áü*l¸a²®Æteìð#ž|ýŠ¯üCúÍ{<¶µ54+Û[뺆ŠÌg¸N äMY;£YĬÙü_¹ýr `Záƒ'Ë +•…‡J5É‘í-:ŽBt ,AïEÞ“°™Î§ÿh¤CÈ Í‰]Ù\Þ¹k…ÃìÐÀ‰ZO_†ù¤¥ä°å»çpÇ=ü‹A )ƒA*,Ä;ÄHY‡)Ýå,ÑÝy¡·ó¢D?ÅÏoV¢…°ã8™½?_Ÿ‰¼ÑruÄ.ší°Än·wØ ”nŸ°“’é€gL’iÒîÉ9öîöò´zÍÅ,PÍ/{“—\Ÿ+Ö2ÿ`rÐ +endstream +endobj +1586 0 obj +<< +/Filter /FlateDecode +/Length 360 +/Subtype /Type1C +>> +stream +H‰|OKQÅgLGJ + #î¢]¦&B¹† úcZÛbtž:¤óä͹j+µ˜mÐèH´mm]Ô¢ý¼|.zoÚ´js¸¿{¸çÞ+KÁ€$ËòÒ®¦Ëkû=bêF‰àõ2jt[:f‚&dÒå¨Ê6Øp2™ì…¼ç…_”²üþ±;|®Ñt`#ŸÏ&…æ|ÝLB6“ÉøšÍÀU•ží ¶ E«†IÝAF +´V ü²¹ÍßkÀ´™NйÙ0ùª¢b‚b^3våÒK×K¹®{ï*¬î¾¹á•»êYtv¼Î#ãëèü}8¤` +endstream +endobj +1587 0 obj +<< +/Filter /FlateDecode +/Length 1318 +/Subtype /Type1C +>> +stream +H‰|RkPWÞ%ì ͪYº»u°•‡"¨ØŠ"c­ÖŠO ` Ć„&1€h ø ’jŽ´µE-‚Š:0ã£øì訵µ>(JUpêà8­=K/éÿôWïÌ=s¾ïÌ9ç;ç^ ÀpWe¬KMI^µ¬Ü¬×êV˜M33øb}žÉ óG9ÆU ¬D ÈØö÷.‡À£IWˆL€ã÷SL%bva‘•‹KLÔDûmü˜ÍiÔjõ˜ç’u¦<žË(·Xùb ·Ä˜o2—˜ÌZ+¯‹á’ n¬„…3óÞló“¯5qz Çë­E¼™ÓŠÁB½˜oæuœÕ¬ÕñÅZó'œÉù,øŸVœÞȉµ¸ÕF½eXEÒÂiºX±Ši¬K¾i“ÑjÖó–˜Ø´ŒUå%<7—Óñ˜xpl¦À(L…Åb)X¶[e`k± â.±e"hÂÎàx%~'`i@“„•äINH^pîáy.Úð‰;PpŒ¬uàE”( ö0D"U‚Œ~!%sÆ|HB"&…3J¿‡üH>.·?ÊžáGa"| +!88¡DÑ ( å°(³ö> +ƒHbûà àaÕ"àP똩ü©]ƒ¢šŸ•’žÛšZ渺\£åͶ¦;È$`ÙN"Íüæ]"<¤ÜýRÈ}ðØK( }‰š<ÒÞnˆ?ûT½J}ŠÂùl¦=ž8ØÚ}¨—~xdÝG¬+!e>š‰¦%-ž²P*¯†7ŸÀî§xÈÁ +ÉPµò€«ÅÝâØ}÷pïÙ ë?t «Í<‰:Ù(„¡‰(¸?ˆ«]ÍÇZ«r¹1S«ŸZhÌÚœUSì(s•y‚``SÞo]0ËÅnvTÕlc e…Öõt:溋½×yþ +#¿á†Yˆ± ßÀtw©âp H*>…RÊ×㌷¶uAçÜÓÉSa1§£Ff#U’Ôþpoüž8ÆInëîæüŒÁ©)ˆûg6)ßdþ¾Mxûw(*U\ƒq“¨-ðn(Õ½û¶¸·Û¾·\¥!$ÂÂŒÚÙÃHF/ZcÈ.fp…ŒÞ$©-ë«  UéóÔ{ö2ç;Û{输© ,Õ‘½,i͆cÝŸ1ν®º:•\]5ŠG ë÷86BD°¯3|¥úk-„" R'" +Ñ(b(47/4ì?Å”?$¶äm[IÏO;þ›ƒ}سë»w辦ä+‡Í6aÚ »Š`H}'‡Q®…ŠþI²ÑÓ¸ËÇ­?ÒÞE÷~›•Î¢6‘ï”6z÷y}L[Ñçè‹-YóXô¥ÈwHAx~^¾¡ª¬„±n--Ý\ä$ÏÙÖ·/¥ssx ë ©î?o‘^mmv†J¾Áþ~}"DÁv $Ð!ìT¢w¦E x¤~ ŒøÏ÷EM3"_¢é¬#NÙ4~ADfZêÂo={ÐÖ?ÀÊÑçâHí¥-coA5ˆÚC`I]nô4xê™óõÇ/ÒûêÎ:–j€ )uÙSµ½¶’^»²(ÍÂÖÔ¡š!‚#½¹µÙKTòni*Jõª¤^¨PÂ’Ñ +&°\¨ P(™„Üuì³\;_ä «;ªNl=ý¸§È+}B…¢|>ß×>ønû¤"U惘1*H¤~ñcšórƒÇ¹ƒeƒã!D6X,´NþPþ+À­`€X +endstream +endobj +1588 0 obj +<< +/A << +/BBox [113.386 113.744 529.579 374.882] +/O /Layout +>> +/K [1594 0 R 1658 0 R 1595 0 R 1597 0 R 1599 0 R] +/P 1224 0 R +/S /Table +>> +endobj +1589 0 obj +<< +/A << +/BBox [85.0394 122.292 501.232 533.491] +/O /Layout +>> +/K [1601 0 R 1659 0 R 1660 0 R 1661 0 R 1662 0 R] +/P 1225 0 R +/S /Table +>> +endobj +1590 0 obj +<< +/A << +/BBox [85.622 342.358 501.815 709.871] +/O /Layout +>> +/K [1608 0 R 1663 0 R 1609 0 R 1612 0 R 1617 0 R 1620 0 R] +/P 1226 0 R +/S /Table +>> +endobj +1591 0 obj +<< +/A << +/BBox [113.567 314.295 529.76 710.429] +/O /Layout +>> +/K [1623 0 R 1664 0 R 1624 0 R] +/P 1227 0 R +/S /Table +>> +endobj +1592 0 obj +<< +/A << +/BBox [113.547 68.248 529.74 710.23] +/O /Layout +>> +/K [1639 0 R 1665 0 R 1640 0 R 1644 0 R 1648 0 R] +/P 1228 0 R +/S /Table +>> +endobj +1593 0 obj +<< +/A << +/BBox [85.0394 158.957 501.232 726.587] +/O /Layout +>> +/K [1666 0 R 1628 0 R 1630 0 R 1632 0 R 1635 0 R 1637 0 R] +/P 1229 0 R +/S /Table +>> +endobj +1594 0 obj +<< +/K [1667 0 R 1252 0 R] +/P 1588 0 R +/S /TR +>> +endobj +1595 0 obj +<< +/K [1253 0 R 1668 0 R] +/P 1588 0 R +/S /TR +>> +endobj +1596 0 obj +<< +/K 1255 0 R +/P 1668 0 R +/S /L +>> +endobj +1597 0 obj +<< +/K [1256 0 R 1669 0 R] +/P 1588 0 R +/S /TR +>> +endobj +1598 0 obj +<< +/K [1258 0 R 1260 0 R 1262 0 R 1264 0 R 1266 0 R 1268 0 R] +/P 1669 0 R +/S /L +>> +endobj +1599 0 obj +<< +/K [1269 0 R 1670 0 R] +/P 1588 0 R +/S /TR +>> +endobj +1600 0 obj +<< +/K [1271 0 R 1273 0 R] +/P 1670 0 R +/S /L +>> +endobj +1601 0 obj +<< +/K [1274 0 R 1275 0 R] +/P 1589 0 R +/S /TR +>> +endobj +1602 0 obj +<< +/K [1277 0 R 1279 0 R 1281 0 R] +/P 1671 0 R +/S /L +>> +endobj +1603 0 obj +<< +/K [1283 0 R 1285 0 R 1287 0 R 1289 0 R 1291 0 R 1293 0 R 1295 0 R] +/P 1672 0 R +/S /L +>> +endobj +1604 0 obj +<< +/K [1297 0 R 1299 0 R 1301 0 R] +/P 1673 0 R +/S /L +>> +endobj +1605 0 obj +<< +/K [1303 0 R 1305 0 R 1307 0 R 1309 0 R 1311 0 R 1313 0 R] +/P 1674 0 R +/S /L +>> +endobj +1606 0 obj +<< +/K [1315 0 R 1317 0 R 1319 0 R] +/P 1675 0 R +/S /L +>> +endobj +1607 0 obj +<< +/K [1321 0 R 1323 0 R 1325 0 R 1327 0 R 1329 0 R 1331 0 R 1333 0 R 1335 0 R] +/P 1676 0 R +/S /L +>> +endobj +1608 0 obj +<< +/K [1677 0 R 1336 0 R 1337 0 R] +/P 1590 0 R +/S /TR +>> +endobj +1609 0 obj +<< +/K [1338 0 R 1678 0 R 1679 0 R] +/P 1590 0 R +/S /TR +>> +endobj +1610 0 obj +<< +/K [1340 0 R 1342 0 R 1344 0 R 1346 0 R 1348 0 R 1350 0 R 1352 0 R 1354 0 R] +/P 1678 0 R +/S /L +>> +endobj +1611 0 obj +<< +/K [1356 0 R 1358 0 R 1360 0 R] +/P 1679 0 R +/S /L +>> +endobj +1612 0 obj +<< +/K [1361 0 R 1680 0 R 1681 0 R] +/P 1590 0 R +/S /TR +>> +endobj +1613 0 obj +<< +/K 1363 0 R +/P 1680 0 R +/S /L +>> +endobj +1614 0 obj +<< +/K [1365 0 R 1615 0 R 1616 0 R] +/P 1681 0 R +/S /L +>> +endobj +1615 0 obj +<< +/C /Pa14 +/K [1366 0 R 1367 0 R] +/P 1614 0 R +/S /LI +>> +endobj +1616 0 obj +<< +/C /Pa14 +/K [1368 0 R 1369 0 R] +/P 1614 0 R +/S /LI +>> +endobj +1617 0 obj +<< +/K [1370 0 R 1682 0 R 1683 0 R] +/P 1590 0 R +/S /TR +>> +endobj +1618 0 obj +<< +/K 1372 0 R +/P 1682 0 R +/S /L +>> +endobj +1619 0 obj +<< +/K 1374 0 R +/P 1683 0 R +/S /L +>> +endobj +1620 0 obj +<< +/K [1375 0 R 1684 0 R 1685 0 R] +/P 1590 0 R +/S /TR +>> +endobj +1621 0 obj +<< +/K 1377 0 R +/P 1684 0 R +/S /L +>> +endobj +1622 0 obj +<< +/K 1379 0 R +/P 1685 0 R +/S /L +>> +endobj +1623 0 obj +<< +/K [1686 0 R 1380 0 R 1381 0 R 1382 0 R] +/P 1591 0 R +/S /TR +>> +endobj +1624 0 obj +<< +/K [1383 0 R 1687 0 R 1688 0 R 1689 0 R] +/P 1591 0 R +/S /TR +>> +endobj +1625 0 obj +<< +/K [1385 0 R 1387 0 R 1389 0 R 1391 0 R 1393 0 R] +/P 1687 0 R +/S /L +>> +endobj +1626 0 obj +<< +/K [1395 0 R 1397 0 R 1399 0 R 1401 0 R 1403 0 R 1405 0 R 1407 0 R] +/P 1688 0 R +/S /L +>> +endobj +1627 0 obj +<< +/K [1409 0 R 1411 0 R 1413 0 R 1415 0 R 1417 0 R 1419 0 R 1421 0 R 1423 0 R 1425 0 R] +/P 1689 0 R +/S /L +>> +endobj +1628 0 obj +<< +/K [1434 0 R 1690 0 R] +/P 1593 0 R +/S /TR +>> +endobj +1629 0 obj +<< +/K [1436 0 R 1438 0 R 1440 0 R 1442 0 R 1444 0 R 1446 0 R 1448 0 R] +/P 1690 0 R +/S /L +>> +endobj +1630 0 obj +<< +/K [1449 0 R 1691 0 R] +/P 1593 0 R +/S /TR +>> +endobj +1631 0 obj +<< +/K [1451 0 R 1453 0 R 1455 0 R 1457 0 R] +/P 1691 0 R +/S /L +>> +endobj +1632 0 obj +<< +/K [1458 0 R 1692 0 R] +/P 1593 0 R +/S /TR +>> +endobj +1633 0 obj +<< +/K [1460 0 R 1462 0 R 1464 0 R 1466 0 R 1468 0 R 1634 0 R 1472 0 R] +/P 1692 0 R +/S /L +>> +endobj +1634 0 obj +<< +/C /Pa14 +/K [1469 0 R 1470 0 R] +/P 1633 0 R +/S /LI +>> +endobj +1635 0 obj +<< +/K [1473 0 R 1693 0 R] +/P 1593 0 R +/S /TR +>> +endobj +1636 0 obj +<< +/K [1475 0 R 1477 0 R 1479 0 R 1481 0 R 1483 0 R 1485 0 R] +/P 1693 0 R +/S /L +>> +endobj +1637 0 obj +<< +/K [1486 0 R 1694 0 R] +/P 1593 0 R +/S /TR +>> +endobj +1638 0 obj +<< +/K [1488 0 R 1490 0 R 1492 0 R 1494 0 R 1496 0 R] +/P 1694 0 R +/S /L +>> +endobj +1639 0 obj +<< +/K [1695 0 R 1497 0 R 1498 0 R 1499 0 R] +/P 1592 0 R +/S /TR +>> +endobj +1640 0 obj +<< +/K [1500 0 R 1501 0 R 1696 0 R 1697 0 R] +/P 1592 0 R +/S /TR +>> +endobj +1641 0 obj +<< +/K [1503 0 R 1505 0 R 1507 0 R 1509 0 R 1511 0 R 1513 0 R 1515 0 R 1517 0 R 1519 0 R 1521 0 R] +/P 1501 0 R +/S /L +>> +endobj +1642 0 obj +<< +/K [1523 0 R 1525 0 R 1527 0 R 1529 0 R 1531 0 R 1533 0 R 1535 0 R] +/P 1696 0 R +/S /L +>> +endobj +1643 0 obj +<< +/K 1537 0 R +/P 1697 0 R +/S /L +>> +endobj +1644 0 obj +<< +/K [1538 0 R 1539 0 R 1698 0 R 1699 0 R] +/P 1592 0 R +/S /TR +>> +endobj +1645 0 obj +<< +/K [1541 0 R 1543 0 R 1545 0 R 1547 0 R] +/P 1539 0 R +/S /L +>> +endobj +1646 0 obj +<< +/K [1549 0 R 1551 0 R 1553 0 R 1555 0 R 1557 0 R] +/P 1698 0 R +/S /L +>> +endobj +1647 0 obj +<< +/K [1559 0 R 1561 0 R 1563 0 R 1565 0 R] +/P 1699 0 R +/S /L +>> +endobj +1648 0 obj +<< +/K [1566 0 R 1700 0 R 1701 0 R 1702 0 R] +/P 1592 0 R +/S /TR +>> +endobj +1649 0 obj +<< +/K 1568 0 R +/P 1700 0 R +/S /L +>> +endobj +1650 0 obj +<< +/K [1570 0 R 1572 0 R 1574 0 R] +/P 1701 0 R +/S /L +>> +endobj +1651 0 obj +<< +/K 1576 0 R +/P 1702 0 R +/S /L +>> +endobj +1652 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1653 0 obj +<< +/Filter /FlateDecode +/Length 3259 +/Length1 6160 +>> +stream +H‰ìVklTÇ>3s~¶1…YnL^¿xÇ0x×ÁF°y¬I »ö®íÛëì.™B +¬IÔ*.R(4N" ]Ǥ…ˆV) ÔRRR¤DJDJ[ÉQŠ#¢B©’&î7׋iøÁªªÔûùÞûÇœ9çÌÜY#¢tj'AEË« §_èKoA»¦®-._-4· VIWð»9Túôžú;B?t4ó©öZxŸÃ{lux3'F'Û缟¤]ˆý9ïágùYǺq+•Ç xÞ ½Š·“^¥ËìMøfý|´LÍ8›à݉|MÒßX[Àì |²ù'—ÁÙÚás¸èDQXÆšX„EÙ^Äìã‚ÏBÔßû¸ÍÏŠmÞkdsÌ&DÁ‹³7 ªhßÃn¬Š:ˆ?0ÎV²U¬‘íg]Èáë®ó|¾]Wø‰ðkÚ'ú&ýE ×XmJ1[Çù>û4—f¢*/æX‰œƒ´¿ +O —? ç©‹^À ØMoÐoÔœt‰.ÓMtg êšÃdk ʶ³]èGÇmxšd=ì ä÷6{ŸOBÕƒhBõƒYîäøIþ6‡ÿ‰÷ñOùç‚DªØ jELÇÄ»â]m‰Ö¥½ }¤}¤3Ýv:•mäë`Ÿ™jn2w™?6™¿H+ 1¨Ëº*qÕÑVTòí¡„³jÝÀIzè¥OUÀ@²…™‡•³Õ@ [Çü¬™ÅØ–¡Š^b/³#ì$jyø€]baeŸ9¸É >šç Õ·‚Wóµ|ßÏŸãù+Ø‘=ü ÿ€_F}üjLÙb”˜(¼¢X%[ÄNqBœ—D?Ö-C{H[ ­ÖÖ£öóZŸö V’ëBÏÕgé%@£Þ¢o×;ôŸaG÷ëýF†Ó•lc¤1ÏØmËæ¹sÕ#4—usᆫ†¡£aôÏŸÈ,Q ¡çfZ2qƒ°¬þ«wjI‘›yƒUÛehËÁ~‹Ûyyö´ij§˜eXZd¶À‘gå»Ûì¥Vk¦´—¢e´Â‡A5%…h¹Ë¥V¹ãT)ÕB°ÿÅzùÅ6UÅqüwÛÛžÓnneÿÒxU:ª‹±YÌ6•!°tÅýíƒ%SÓN’u#áIC0d Ûô*3>É Š Ü•» ±ftJâƒ!QŒb$A}ÕÄW¿çþÚJ'N¼Ù§Ÿs¿sϽçÜ{wÏÛžäýeŒŠ>IÙ®´Ê,3õO«ÌX1S:<Æã|ÞYÚÔÛ²©ôWh¨íÚý¸­5¬‘å<^Ÿ®Ð¼îy ›H6 g'Œ¦tv2…[ÓW1›í‡º³éìp.?– ‡áì|<žÝו.v)—_š0ìèdj·†AµÛx4ìÚmI·áJqÉe¸SͼJó¸^‹||tp¨zË/ÒοÒSÖ±å¯~ø#B´’ðß-¤ÖxÅ,ZVD“Dù/ý7K™âvK'|ûI-õˆT«²ƒú}Ò´X¢~ÑDÓ¾Ëd¹ÏÒ²œ#Kl ËW]`ˆ©8 &É’Ëdù¯åy‹Quõ½àr˜ùˆ7©_ž@›¯ ÜÈyUîAè‹dy“8~”G}'£ê{¯Ð3Eä¨×‹Ø8Çä PØ#ˆ½ ×Ó´·¦‹çòüVà*À5{ŸE¼¾pñµø¢h ×-О¼£âEð:öÛà繯rÇo…wÑ¢?BGtŒ¢x.Œgÿ*ÚË8€:VÅÿ 掖û ÷Ù9Ïjf˜«§«z?Ý^G r×P®¾cÛZfUìð?×ýoÈÌ*°&üü¶¬…ß‹çÓË÷ܹïåí~S*_/PØ÷>ZŽÌ2¥üïå”â/ѲBÝc§Ü ߆û¸ëiDö`†¬ÞÌ[Z%Ö‚ST…™t¥Mx…Ö‡Ô¼=ZIÝݨR³NF{C9×c ½­Ð!GÚë}ÖÖ,ë4ëÖIÖ «ÕËêaÅXQVk kËËÒYn–}þÜßëàp|Î ÌYpÌ€ãàm0 0ä´yŽ›¶XgYï±N±Þeg=Áêdmeµ³ËÃr±(…¿_ƒ«àsðXó`|N€7À~°³·µÎWçÛhæ´¢}Â<)ÌcÂœæ^a>'Ì]Âæa +3%̤¸_n!yŸ¼GÞ-ƒ²AÖÉU²Rú¥”^©K—Ä3l׺ã®ø@L‹ÛK#Ï„ì_Â9Í¿}Ðö„cš]§øS± Ý±]GœMNËÏkګ㆚Ì\$MËO§RÔùû,Û‹'ö_¦õÚFøm[ë?*:€¨éDM5hP[HPk|x"}/Ý¡á¿6mÍlYÍ®=ª»‰ä¼¤XjÛö¢«Âþ¤ÆT¬!°¯ÃéÜæÆàAã’NÚ,Uà›^‰Iâ]@¥š;›;U +_4•ªRóÇB*xps£qI›-¤¯ÃPþ)ÀÅo¶ +endstream +endobj +1654 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1655 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVklTÇ>3s~¶1…YnL^¿x‡§Á»Q° aMJصwm/Ø^gw±€d-°&Q«¸H¡Ð8iˆ€@t“"Z¥4PKII‘))m%GD)Žˆ +¥JÜo® ÒðƒUU©÷xîýÎ9ßœ9çÌÜ»&FDéÔF‚ŠVTN-¾Ð› 2Þ†õÑÚÖ¸|­ðèQ"s‘>§®¥¾éíësm¢ ‘¶¾¾qK]畧V‚{ckC(¼zèò¢ÌSÐg6À=<íYè× ?ÐÐß¼tqb/QV‘ØÓ© äôçô±Ùç››[ģƢœƒàËæ@SèЭùÝàBg[¢¡–¿{p=üXO¬"Ž¼I´é= ˜d• 3ßgÚûìçH®Ÿô~qš}BTx«/³~Ž{qÑ´,WV®+ËÕ&èë6N·Hïùrv›ÖƒåéuèËõ鈕ó+b|ŸZ“}…}ø+.š…©'´Î­ó+?©kÒÿÅ‘ùÿâ® ÚOŒ®©DI,h4´¬—'±\“Ä&ÎßVu8µThAú2‰±Ç“˜ÓPölãc“X~7‰ à&±Éˆ»Ê©EE3åòpm4‹ÔÅei$Ú‰âáHs\ÔØ(+Ãõ ñ˜¬ ÅBÑÖP°`Åâ•‹*óÖ„›ëƒ±üÊPý¦Æ@ô~탎ÉP8ÞŠÊ€Œ†êñx( +Êx4 5¢eDyîPë¾=_n–#W7‡ã˜_ÄC1h"@ÄY 6²©9 ‡b’Ž’Dß‹ 3–S˜j)JŠaÔQ¶R (µ8÷,a f*€g5B$UÂVO ðÅ-„gìV܃`® Å•àWR­»ü`ò£|gN=mB´æÝ­Ýïìÿ4ÿßHÝCxÆÑU»Wâ©f*oܱª~H`ÕÉ ´&'âFØ"ƒs¾Ý[w_»#Üd2I«¡…ÔúU@G‹9k6ÃZ˜Ì rGµÐ6Á«2 +;lµëxcÍñìG¤SŠvA»€Wwäí'…Ì€ã^×ò*)©äš¼Öoä±—©Ø,fvÛ=Ùÿõëâ==ÅZæã;øZ Ÿâ UL0‚ÏSuðîMðÊé +~7§¢“Ê>¶áî¡°#ôCÇ2jà¯ûž à«Å“91:Ø>çùíBì/x7?ËÏ:Þ…ˆ[®»õØU¼ô]foó$=ßiº¨f!r~yo²Évö ëã+aej}ÄÙvòý5}Dc9lK°3àdóN.«µsrщ¢d9kde{³— >Q#|ïä6?+ªµz‘mÌ2\|{³P¡Šö=œÆȃQ䌳 +¶Š5°ý¬9œc}ë<Ÿ/DוüDøµ íS}£þ¤ÇXmJ1[Ç÷} Îi.MGU^¬Qœƒ´¿Jž„lC/Ÿ¦¨“^Ä°‹Þ¤ß¨5é]¦›èÎ0ˆªk{˜­TC¢l;Û…~´ß!Ï°ƒ¬›½‰üÞað ¨z@Qý@–;ù~’¿Ãßåâ½ü3þ… ‘*Ö‹‡Å1ñžxO[¢uj/jkëL·Ne9Æ:£²ÏL57š»Ì›‡Ì_¤Ð(ÔåF]åøÕÒT²öPÂÙµ.ÈIzÒCŸ©: ýÉJ”<Ì<¬Œ­†T³µÌÏšXŒm¬èeö +;ÂN¢– ²Kì/ì¯ìsGnrƒäyƒõ­äU| ßÈ÷óçùAþ*Nd7?Ã?ä—Qc/¿ÓE¶!Æ ¯(ƒ¬‰Íb§8!ΊK¢û–¡Í×h«µu¨ý¼Ö«}ŠäºÐsõúHƒÞ¬o×ÛõŸáD÷é}F†Ó•lc¸1×Øm¼`t_›#Ì‘æDHYlV™f«yÌì5¯¤O]”N¦¹é~Ù~ù·÷ œîßòuF!a—pžÃÀRß»s<ÃlL ón•YÅ&c§þH7E*-ÓÎÓñ5ê5"ݼJGXLÛÁ^etœ›­ìŒð‹>qXÏ5æô“ÇÌ-¦ß¼‚L¯‹çô³€-ÒÛÙ¾ot”UÐßÙ z+Çù:O{ik¥êH9Άà];Ç'°vý%ñºÖ)¼úvövp¬Þ#~@3hþ‹šLqÖuÊQÜ’Y³gMŸ6µ¸¨° ß7å¡ÉNÊ}Àšè’ÆwÜØ1ß=j䈜áÙY™Ã†ÉHOKM1 ]œ‘Ûk•ù¥=Éok“¬%Kò•n`ÜaðÛø×Ã.»›cK¿C“w3KÀ¬û³d€Y2Èd™rÍËwK¯%íß{,yŠ­­ð?㱪¥ÝçàåÖ&9Ê(.fHïè´™_zí²Ö†„×ïA¼®ô´R«4”–瑩´tÀt »Ìjébe ˜x™wN§”!ÈÊ.·<^{©åQ)Ø"×Ú++|^ÏX—«:ßm³ÒZ«Æ&k±=,Ï¡P©³Œm”Ú¦³Œ «r¨]v¹ßJì;•I5þ¼Œ  |ßg‹@µZ#+Ï~ÄòØlíï>Å^Yå³SKO1Zå;Måým]KÛ<žjµZv©o·Cú¨­½cEÂ;:,•šHì–vg…ïN¯KÝ««4ß½¬ÒçBÖ–wŸTeTúœ +”.D’ʦÊ(8dy•Å¿AÚ©Öb«!±ÁÍ“°©r‹ëõ1å%§ûÿLå^™Xå³\ö±VuÀ3®+‡•[º—–È¥w{òÝ]™Yî:, 2†Ü Bƒ>9t…õíV3•‘µGÄ–µ™ø,›çÎV·ÐlJÔÎ W5CGÃèŸ?‘9Gm„ž›iÉÄ ÂA°ú®Þm $-Fnæ RP—Á#ÿmlçåÙS¦¨“b–bk‘ÙGŸ‘ïnµ—Y-™Ò^†–ÑJ&UÏ)DË].µËí§J¨ŠÝVñ/ÖË-¶" +Ãgìµgì„ÄÍM Ô©!BDJ4½EŽK®~À(€ìR)NÒT©@´O ª¨**Q‹“ÀBƒx¢•Ò´dé&)Å­*5*ñ€*AQ©ðÈ+H‘ðÏÛÔ¡Xåó7{ÎììÎìnv&Åû2ç(öpcÚñdtf¡©}Zg2ÅÃ3Q<ÎçÝ¥M­£Š•¡ºêÎÑŽ¨[%=Ây¼>‘YÃ÷@6™jÌŽ› ™ìD·¦ ¯b6Ûte3ÙÁÜò¡h$ÍÎ&Ù=™B—rË ã¦›H + ªÓÊ£áToMyMOšKÓ›nâUšÏóÆès—*7ÿ¢Låþ+=eYÒþê‡?‰–’Á›²™ô¯°ÂƒeóR’¨l‚hùËàÍb¦°Ý2ß~ÒK="ݪj§¾Àƒ4ܨO6ÐTà2ÙÞ³´¨fÈ–ëÈTæ`Ê ²Õ"ÙÁ+dûÞat]c7¸†f>òmêSÇÑæ«(×sÞE—»Æ<ÙþŽaäkŒ±ƒÑõýWè™êGÔëAì œãò&(CìÄ^kiÊßKS…sù~ËsàšýÏ"^›¿Ž‡øZ1´…ë–hO]„Ñ?ùxû­ð ÜW5†ã·À;i>ØH‡ Œ¦p.Œgß +ÚJ؇:ûVŒÅÿ 掶÷ ÷Ù=ÏJŽ1ÿVÏÐõ~º½Žås×P®¼cÛ.bhEìÐ?×ýo¨¡`M øùm^ ϧŸï¹{ßKÛý¦X¾ž'¿ï´•eŠùßK)Æ_¦E¾Çn¹¾ ï öÖÒ°êÆ Y¿™·D9Ö‚“T™t¥ x…6ô¼=VN]]¨RµFÅz"9Ïcs=-ÐAWb†õë kšušu’u‚uŒÕËêau³â¬«µ™µåg,/KÄž€¿7Àwà:ø\sÀ3`œÇÀQð.˜Á0pÛ<ÇMÛ¬³¬÷Y§Xﱎ²gu°¶°ÚX’åcyX‹Áß‚¯ÁUð9ø ,‚Áy0>ÇÁ[`/ØÑÓR¨ ¬·râÅX¯´NH눴&¥µ[ZÏKk§´F¤µ]ZÛ¤•–VJÞ¯Ö©ˆºOÝ£îVaU§jT• +© +U®‚J)¿2”Gávª½ O¢?.ÎÂ0%†"ίýÑœ>¹ÍñEã©JPâ©xØikt<‡ÝMN,Ï +ñú˜©'3Iˆå±I3ïtšêÿ¾…Köɽ—i­XO¿­órí§RGûµÜ¨¥£– ‹¹$µ$Ç3÷Òþk«fKjvîÒÝM¦fÅÓ[·³ç=eAô'cÖ§ãu¡=ínç6Õ‡÷›— ÓT†oz9&‰wjêhêÐ)|ÑtªBÏó©ðþMõæ%1O…^ƒ¡üS€½ÁpÕ +endstream +endobj +1656 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1657 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1703 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1704 0 R +/FontName /CUCKKZ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1658 0 obj +<< +/K 1705 0 R +/P 1588 0 R +/S /TR +>> +endobj +1659 0 obj +<< +/K 1706 0 R +/P 1589 0 R +/S /TR +>> +endobj +1660 0 obj +<< +/K [1671 0 R 1672 0 R] +/P 1589 0 R +/S /TR +>> +endobj +1661 0 obj +<< +/K [1673 0 R 1674 0 R] +/P 1589 0 R +/S /TR +>> +endobj +1662 0 obj +<< +/K [1675 0 R 1676 0 R] +/P 1589 0 R +/S /TR +>> +endobj +1663 0 obj +<< +/K 1707 0 R +/P 1590 0 R +/S /TR +>> +endobj +1664 0 obj +<< +/K 1708 0 R +/P 1591 0 R +/S /TR +>> +endobj +1665 0 obj +<< +/K 1709 0 R +/P 1592 0 R +/S /TR +>> +endobj +1666 0 obj +<< +/K 1710 0 R +/P 1593 0 R +/S /TR +>> +endobj +1667 0 obj +<< +/P 1594 0 R +/S /TD +>> +endobj +1668 0 obj +<< +/K 1596 0 R +/P 1595 0 R +/S /TD +>> +endobj +1669 0 obj +<< +/K 1598 0 R +/P 1597 0 R +/S /TD +>> +endobj +1670 0 obj +<< +/K 1600 0 R +/P 1599 0 R +/S /TD +>> +endobj +1671 0 obj +<< +/K 1602 0 R +/P 1660 0 R +/S /TD +>> +endobj +1672 0 obj +<< +/K 1603 0 R +/P 1660 0 R +/S /TD +>> +endobj +1673 0 obj +<< +/K 1604 0 R +/P 1661 0 R +/S /TD +>> +endobj +1674 0 obj +<< +/K 1605 0 R +/P 1661 0 R +/S /TD +>> +endobj +1675 0 obj +<< +/K 1606 0 R +/P 1662 0 R +/S /TD +>> +endobj +1676 0 obj +<< +/K 1607 0 R +/P 1662 0 R +/S /TD +>> +endobj +1677 0 obj +<< +/P 1608 0 R +/S /TD +>> +endobj +1678 0 obj +<< +/K 1610 0 R +/P 1609 0 R +/S /TD +>> +endobj +1679 0 obj +<< +/K 1611 0 R +/P 1609 0 R +/S /TD +>> +endobj +1680 0 obj +<< +/K 1613 0 R +/P 1612 0 R +/S /TD +>> +endobj +1681 0 obj +<< +/K 1614 0 R +/P 1612 0 R +/S /TD +>> +endobj +1682 0 obj +<< +/K 1618 0 R +/P 1617 0 R +/S /TD +>> +endobj +1683 0 obj +<< +/K 1619 0 R +/P 1617 0 R +/S /TD +>> +endobj +1684 0 obj +<< +/K 1621 0 R +/P 1620 0 R +/S /TD +>> +endobj +1685 0 obj +<< +/K 1622 0 R +/P 1620 0 R +/S /TD +>> +endobj +1686 0 obj +<< +/P 1623 0 R +/S /TD +>> +endobj +1687 0 obj +<< +/K 1625 0 R +/P 1624 0 R +/S /TD +>> +endobj +1688 0 obj +<< +/K 1626 0 R +/P 1624 0 R +/S /TD +>> +endobj +1689 0 obj +<< +/K 1627 0 R +/P 1624 0 R +/S /TD +>> +endobj +1690 0 obj +<< +/K 1629 0 R +/P 1628 0 R +/S /TD +>> +endobj +1691 0 obj +<< +/K 1631 0 R +/P 1630 0 R +/S /TD +>> +endobj +1692 0 obj +<< +/K 1633 0 R +/P 1632 0 R +/S /TD +>> +endobj +1693 0 obj +<< +/K 1636 0 R +/P 1635 0 R +/S /TD +>> +endobj +1694 0 obj +<< +/K 1638 0 R +/P 1637 0 R +/S /TD +>> +endobj +1695 0 obj +<< +/P 1639 0 R +/S /TD +>> +endobj +1696 0 obj +<< +/K 1642 0 R +/P 1640 0 R +/S /TD +>> +endobj +1697 0 obj +<< +/K 1643 0 R +/P 1640 0 R +/S /TD +>> +endobj +1698 0 obj +<< +/K 1646 0 R +/P 1644 0 R +/S /TD +>> +endobj +1699 0 obj +<< +/K 1647 0 R +/P 1644 0 R +/S /TD +>> +endobj +1700 0 obj +<< +/K 1649 0 R +/P 1648 0 R +/S /TD +>> +endobj +1701 0 obj +<< +/K 1650 0 R +/P 1648 0 R +/S /TD +>> +endobj +1702 0 obj +<< +/K 1651 0 R +/P 1648 0 R +/S /TD +>> +endobj +1703 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1704 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVkl×>÷ÞyøØÆ€î21!xýâé1†ÝuÀ ¶!¬I »ö®íÅuv  'ÐkµŠ‹ +“†D㘴Ñ*¥ZJJŠ”H‰Hi+9"JqDT(UÒÄýfv± ?øQU•:ŸïÌw÷Üsν3kbD”N]$¨øáÚ¢Y%çãDÚ[Ð>ÒГ¯9B¤O&R4v4µ½um¡I”á%RÖ7µnnì½¼m%|OcliúW^Z@”yò¼f(²Ç¦=ù*ä{›Ûb›–/ï!ÊÊ!»[à þœáœa"VŠq®Í¿©C<¢Í$Ê9Ùîo þdÛ=»á Qœéˆ;þÝ}ëaÇzbqäM¢K€ƒNFùý=¦¼Ç~Žä†I§ØÇDE_eÑâÏp/)žåÈÊsd9º}ÕÅékR¾(íR°<§u…:±r~EŒïµÖd_"ÀþJŠçcêq¥·GéýÒGÖ5ýÿ°ñàÿ0¬+ƒö£Ä5‹(ÉåBJp¼2É5ðú$×qþ¶X‡SI… /’œQ1{,É9fÏ$9Þ1v Éðw’\ÿg’댸óˆœU\ÖÆ¢lÓHE/±—Ùavµ¼|À.²¿°¿²ÏlÜàÏóGê[ÉkùÞÂ÷ñçøþ +Nd??Í?à—Pã ¿ŽÓE¶'¦¨V‰GÅ&±CgÄE1„}ËPTÊ”ÕÊ:Ô~NT>ÁNrU¨yê\uЬ¶«ÛÕnõg8ÑCê–aw%[«-ÔviÏkýÚ‡ÚWú8}¼> (ÔKôZ½UïÔêƒúå”c©KRC©‘4'Å/Û/¿ñö¾ŽÓý[¾N+¢‰ì"NÃãb ¼¬ïÝYž¡·¦†x¿•^Ëf`§þH7D*U)çhx”ZÕz‘®_¡Ã,ª<É^tŒéì´ð‰!qHÍÓ&úÉ÷‹£úfݧ_F¦×ijj³^È–¨Ýì0_Œ7:ªéïì:=†•c|&£=´›uR +õ¤c£ð®åSY·ú¢xMéu;»;8Iߧ¹4ÿEÍ i8ë*åXÜòù¥óçÌžUR\TXàÌŸyÿŒû¦çÝkLsÈ©S¾3yÒÄ{r'Œ—36;+sÌèQéi©)º¦*‚3rzŒ +Ÿ4§ûLeº±lY%~(ü·(|&þõ0+n÷1¥Ïv“·{–óñžå ÏòO–)Ñ¢§ôÒü½Û'ÙÚj/øÓn£NšC6_aseº-Œ‚àp`†ôä6»¥É|ÒcVt6Ç=>7âõ¥§¹ W0­ÀI}ié é`f…ÑÑÇ*ʘMx…gA§”QÈʬ4Üs¹á¶R0EžÇ0WV{=îIG]Ód®£Þ$c©9&ßv!—½Œ©¹LÝ^F†¬r¨[ö9ߌï=™Iõ¾üŒ€ðÏk +µFV¾ùá6Ú2˜[à<É^^å5S]'­òž¢Êᮾå]nwµZ¶Ë»ËvŸ÷ ['‰¸'7$-1ß%ÍÞjï­V‡u¯«CÐgU׬ Ï^i•Qãµ+@P–[„$-Uf¢à á±4¾ ÒL5–Íñ >lÖĸI5›¯M¬,?5ügªôÈø*¯á0O2êüîÉ}9¯ÙÜ¿¼\.¿ÝRàìËÌJtºoô˜$Éu+ ŽØlf»[ Yßl5³22–㈘²A"¯aò¼Rë,¥xC)ÜpÕ1t4„þùâ™ ¬Pó2 ¿N8ÆЕÛ5þ¤FË˼NµŽËÈ‘ƒý&7óóÍ™3­“¢»°µÈ¬Ì–ç8;Í*£#SšUh­ôbRÝ‚"´Üá°v¹ûd9ÕC0»ª½ ù_¬—_lEÇs·w3w­íѹ¸*WcÓ˜¶*E ¹öï=x¤hzHÒkK $*$&‚!˜Ú€×VW©ñI +Q¤`W¶-âAHh¢U ‰b# úè«&ÆØúýÝ\Åꃛ~î3ûûÍÎîÌîvg"4hÎQì¡ú”ãIëÌB>Sý¤ÎÎg +‡§£xœÏ»K›jGÕþÊC5•í{sDÍ*éaÎãõi̾û3ɾºÌ˜Y—ÎŒ§pk:ð*f2ÑHG&È.ŒFBÑÌl"‘ÙßžÎw)»¼0f:±ñÔAušy4œÊ­}^Ó“â’Çô¦x•æó¼þü³#ÛûË7ÿ¢Låþ+=e[Òþê‡?ꉖ’Á›²‘ô/¿ÂƒeãR’¨dœhùËàÍB&¿Ý2ß~ÒK="ݪj¥žÀ4Ü ¨GÖÑdà2ÙÞ³´¨fÈ–ëÈ”çègJŽ€q²Õ"ÙÁ+dûÞft]c¸†f>ò-êQ'Ðæ+(×rÞE—;Æ<Ùþ>?ÌÈWc£ëû¯ÐSyԨׅØ8ÇäMP‚ØȽ WÓ¤¿›&óçòý–ã*À5ûŸF¼:wòµbh ×-Ñžº£òEðö›á縯jÇowÓ|°žŽ;Mþ\Ïž´qu®‹ÿÌmïî³{ž•L1ÿVÏÐõ~º½Žår×P.¿cÛ.bpEìÈ?×ýo¨Á`M øùm\ ϧŸï¹{ß‹Ûý¦P¾ž#·ï¤•a +ùß‹)Ä_¢E¾Çn¹ ¾ ï òVÓêÄ Y¿™·D)Ö‚T†™t¥x…6úõ¼=VJ¨R±Fź"YÏ£s]MЈ+1Ãú€u†5Í:Íz—u’5Åêfu±:YqVŒÕÊÚÌÚÈò³ –—%bOÀ߃à;p|.€À9`ƒ0 Nƒ)p¼ÆÁýn›ç¸i›u–õ>ëë=ÖqÖã¬6ÖV K²|,‹b1ø[ð5¸ +>ŸEð18æÁ‡àx»ºšªU VV¼ë–ÖIi“Ö„´öIëií–Ö°´vJk‡´RÒê“ëÕ:Q÷©{ÔÝ*¬jT•ªP!U¦JUP)åW†ò(<ÃN¥7áIôÆEÂY¢Ä`Äùµ7šÁm;_4.œŠ%¶ÇÃNK½ã9êÎh²byVˆ×FM=™¹HB,N˜9§RTSÿ÷-\´—H¸LkÅ’ømž—k?•:Ú‹¨åF-µÜhXÌ%©)10–¾—îÐð_›X5[T³}¯în²oVQ<µu'{ÞSDÒfm*^ÚßêvnSmøyÉ 1M%ø¦—b’xЩ†¶†6ÂM§Êôü1— +ÚTk^Ó¹Tá5Ê?ÑoÖ +endstream +endobj +1705 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1658 0 R +/S /TD +>> +endobj +1706 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1659 0 R +/S /TD +>> +endobj +1707 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/P 1663 0 R +/S /TD +>> +endobj +1708 0 obj +<< +/A << +/O /Table +/ColSpan 4 +>> +/P 1664 0 R +/S /TD +>> +endobj +1709 0 obj +<< +/A << +/O /Table +/ColSpan 4 +>> +/P 1665 0 R +/S /TD +>> +endobj +1710 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1666 0 R +/S /TD +>> +endobj +xref +0 1711 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000376 00000 n +0000004658 00000 n +0000004909 00000 n +0000005036 00000 n +0000006144 00000 n +0000007145 00000 n +0000008228 00000 n +0000009259 00000 n +0000010291 00000 n +0000011325 00000 n +0000012346 00000 n +0000013367 00000 n +0000014401 00000 n +0000015422 00000 n +0000016468 00000 n +0000017551 00000 n +0000018623 00000 n +0000019658 00000 n +0000020730 00000 n +0000021801 00000 n +0000022822 00000 n +0000023857 00000 n +0000024892 00000 n +0000025952 00000 n +0000026961 00000 n +0000028009 00000 n +0000029044 00000 n +0000030066 00000 n +0000031151 00000 n +0000032174 00000 n +0000033197 00000 n +0000034220 00000 n +0000035156 00000 n +0000036373 00000 n +0000036442 00000 n +0000036748 00000 n +0000037132 00000 n +0000041240 00000 n +0000041419 00000 n +0000041546 00000 n +0000041671 00000 n +0000042138 00000 n +0000042598 00000 n +0000042750 00000 n +0000043176 00000 n +0000043456 00000 n +0000043860 00000 n +0000044265 00000 n +0000044479 00000 n +0000056795 00000 n +0000057303 00000 n +0000058437 00000 n +0000058732 00000 n +0000059635 00000 n +0000060787 00000 n +0000061850 00000 n +0000062928 00000 n +0000063989 00000 n +0000065004 00000 n +0000065969 00000 n +0000067066 00000 n +0000067655 00000 n +0000067782 00000 n +0000067907 00000 n +0000068544 00000 n +0000068775 00000 n +0000068989 00000 n +0000069441 00000 n +0000070385 00000 n +0000075365 00000 n +0000075821 00000 n +0000075973 00000 n +0000076832 00000 n +0000082253 00000 n +0000088450 00000 n +0000089007 00000 n +0000094607 00000 n +0000095113 00000 n +0000101499 00000 n +0000107110 00000 n +0000113115 00000 n +0000119274 00000 n +0000125035 00000 n +0000125161 00000 n +0000125289 00000 n +0000130507 00000 n +0000136463 00000 n +0000142695 00000 n +0000149515 00000 n +0000155363 00000 n +0000161733 00000 n +0000167189 00000 n +0000174499 00000 n +0000180760 00000 n +0000187292 00000 n +0000193056 00000 n +0000199551 00000 n +0000206291 00000 n +0000212530 00000 n +0000218736 00000 n +0000222228 00000 n +0000222341 00000 n +0000222469 00000 n +0000224069 00000 n +0000224491 00000 n +0000224677 00000 n +0000225072 00000 n +0000225742 00000 n +0000226744 00000 n +0000228147 00000 n +0000229747 00000 n +0000231607 00000 n +0000233743 00000 n +0000236157 00000 n +0000238870 00000 n +0000242009 00000 n +0000245819 00000 n +0000249749 00000 n +0000254340 00000 n +0000259787 00000 n +0000265204 00000 n +0000271020 00000 n +0000277005 00000 n +0000284347 00000 n +0000292001 00000 n +0000299915 00000 n +0000308112 00000 n +0000317029 00000 n +0000326077 00000 n +0000335455 00000 n +0000344946 00000 n +0000352680 00000 n +0000352954 00000 n +0000353474 00000 n +0000353747 00000 n +0000354255 00000 n +0000354283 00000 n +0000354588 00000 n +0000354960 00000 n +0000355389 00000 n +0000355696 00000 n +0000356011 00000 n +0000356340 00000 n +0000356714 00000 n +0000357077 00000 n +0000357451 00000 n +0000357777 00000 n +0000358101 00000 n +0000358256 00000 n +0000358452 00000 n +0000358607 00000 n +0000359023 00000 n +0000359219 00000 n +0000359614 00000 n +0000359888 00000 n +0000360519 00000 n +0000360944 00000 n +0000361294 00000 n +0000361620 00000 n +0000361944 00000 n +0000362346 00000 n +0000362823 00000 n +0000362978 00000 n +0000363412 00000 n +0000363611 00000 n +0000363807 00000 n +0000364215 00000 n +0000364488 00000 n +0000364985 00000 n +0000365013 00000 n +0000365323 00000 n +0000365478 00000 n +0000365902 00000 n +0000366101 00000 n +0000366497 00000 n +0000366602 00000 n +0000367117 00000 n +0000367724 00000 n +0000367865 00000 n +0000368386 00000 n +0000368991 00000 n +0000369117 00000 n +0000369272 00000 n +0000369513 00000 n +0000370060 00000 n +0000370477 00000 n +0000370677 00000 n +0000371073 00000 n +0000371228 00000 n +0000372779 00000 n +0000372834 00000 n +0000372889 00000 n +0000372944 00000 n +0000373000 00000 n +0000373056 00000 n +0000373111 00000 n +0000373166 00000 n +0000373222 00000 n +0000373277 00000 n +0000373333 00000 n +0000373388 00000 n +0000373444 00000 n +0000373500 00000 n +0000373555 00000 n +0000373611 00000 n +0000373666 00000 n +0000373761 00000 n +0000373891 00000 n +0000373967 00000 n +0000374090 00000 n +0000374171 00000 n +0000374252 00000 n +0000374334 00000 n +0000374433 00000 n +0000374515 00000 n +0000374614 00000 n +0000374696 00000 n +0000374804 00000 n +0000374886 00000 n +0000375275 00000 n +0000375357 00000 n +0000375439 00000 n +0000375516 00000 n +0000375610 00000 n +0000375692 00000 n +0000375769 00000 n +0000375863 00000 n +0000375945 00000 n +0000376035 00000 n +0000376117 00000 n +0000376184 00000 n +0000376258 00000 n +0000376340 00000 n +0000376407 00000 n +0000376481 00000 n +0000376563 00000 n +0000376630 00000 n +0000376691 00000 n +0000376758 00000 n +0000376819 00000 n +0000376886 00000 n +0000376947 00000 n +0000377033 00000 n +0000377100 00000 n +0000377167 00000 n +0000377233 00000 n +0000377327 00000 n +0000377409 00000 n +0000377477 00000 n +0000377546 00000 n +0000377614 00000 n +0000377711 00000 n +0000377790 00000 n +0000377896 00000 n +0000377980 00000 n +0000378053 00000 n +0000378148 00000 n +0000378251 00000 n +0000378335 00000 n +0000378419 00000 n +0000378488 00000 n +0000378557 00000 n +0000378630 00000 n +0000378698 00000 n +0000378789 00000 n +0000378857 00000 n +0000378960 00000 n +0000379044 00000 n +0000379112 00000 n +0000379219 00000 n +0000379303 00000 n +0000379371 00000 n +0000379466 00000 n +0000379534 00000 n +0000379637 00000 n +0000379721 00000 n +0000379789 00000 n +0000379888 00000 n +0000379956 00000 n +0000380063 00000 n +0000380147 00000 n +0000380226 00000 n +0000380295 00000 n +0000380364 00000 n +0000380427 00000 n +0000380495 00000 n +0000380586 00000 n +0000380654 00000 n +0000380745 00000 n +0000380813 00000 n +0000380904 00000 n +0000380972 00000 n +0000381063 00000 n +0000381131 00000 n +0000381222 00000 n +0000381290 00000 n +0000381381 00000 n +0000381449 00000 n +0000381540 00000 n +0000381608 00000 n +0000381727 00000 n +0000381811 00000 n +0000381895 00000 n +0000381986 00000 n +0000382073 00000 n +0000382264 00000 n +0000382348 00000 n +0000382432 00000 n +0000382516 00000 n +0000382600 00000 n +0000382684 00000 n +0000382768 00000 n +0000382985 00000 n +0000383100 00000 n +0000383184 00000 n +0000383283 00000 n +0000383367 00000 n +0000383486 00000 n +0000383570 00000 n +0000383654 00000 n +0000383733 00000 n +0000383819 00000 n +0000383899 00000 n +0000383979 00000 n +0000384059 00000 n +0000384395 00000 n +0000384479 00000 n +0000384563 00000 n +0000384647 00000 n +0000384731 00000 n +0000384815 00000 n +0000384899 00000 n +0000384983 00000 n +0000385067 00000 n +0000385151 00000 n +0000385231 00000 n +0000385357 00000 n +0000385441 00000 n +0000385525 00000 n +0000385605 00000 n +0000385711 00000 n +0000385795 00000 n +0000385875 00000 n +0000386001 00000 n +0000386085 00000 n +0000386242 00000 n +0000386364 00000 n +0000386448 00000 n +0000386532 00000 n +0000386707 00000 n +0000386810 00000 n +0000386894 00000 n +0000387005 00000 n +0000387089 00000 n +0000387173 00000 n +0000387253 00000 n +0000387427 00000 n +0000387511 00000 n +0000387595 00000 n +0000387675 00000 n +0000387773 00000 n +0000387853 00000 n +0000388293 00000 n +0000388377 00000 n +0000388475 00000 n +0000388626 00000 n +0000388710 00000 n +0000388794 00000 n +0000388878 00000 n +0000388962 00000 n +0000389101 00000 n +0000389185 00000 n +0000389269 00000 n +0000389353 00000 n +0000389456 00000 n +0000389540 00000 n +0000389620 00000 n +0000389734 00000 n +0000389818 00000 n +0000389937 00000 n +0000390021 00000 n +0000390105 00000 n +0000390185 00000 n +0000390331 00000 n +0000390415 00000 n +0000390499 00000 n +0000390583 00000 n +0000390662 00000 n +0000390780 00000 n +0000390864 00000 n +0000390948 00000 n +0000391035 00000 n +0000391119 00000 n +0000391188 00000 n +0000391257 00000 n +0000391325 00000 n +0000391416 00000 n +0000391484 00000 n +0000391601 00000 n +0000391685 00000 n +0000391753 00000 n +0000391821 00000 n +0000391889 00000 n +0000391957 00000 n +0000392202 00000 n +0000392270 00000 n +0000392339 00000 n +0000392431 00000 n +0000392500 00000 n +0000392592 00000 n +0000392661 00000 n +0000392730 00000 n +0000392798 00000 n +0000392965 00000 n +0000393033 00000 n +0000393101 00000 n +0000393192 00000 n +0000393260 00000 n +0000393403 00000 n +0000393487 00000 n +0000393567 00000 n +0000393653 00000 n +0000393740 00000 n +0000393833 00000 n +0000393902 00000 n +0000393971 00000 n +0000394034 00000 n +0000394147 00000 n +0000394231 00000 n +0000394315 00000 n +0000394384 00000 n +0000394453 00000 n +0000394530 00000 n +0000394614 00000 n +0000394683 00000 n +0000394752 00000 n +0000394829 00000 n +0000394913 00000 n +0000394982 00000 n +0000395051 00000 n +0000395114 00000 n +0000395183 00000 n +0000395252 00000 n +0000395315 00000 n +0000395384 00000 n +0000395453 00000 n +0000395516 00000 n +0000395585 00000 n +0000395654 00000 n +0000395723 00000 n +0000395824 00000 n +0000395908 00000 n +0000395977 00000 n +0000396046 00000 n +0000396109 00000 n +0000396178 00000 n +0000396247 00000 n +0000396310 00000 n +0000396390 00000 n +0000396501 00000 n +0000396585 00000 n +0000396680 00000 n +0000396767 00000 n +0000396854 00000 n +0000396923 00000 n +0000396992 00000 n +0000397061 00000 n +0000397130 00000 n +0000397199 00000 n +0000397262 00000 n +0000397331 00000 n +0000397400 00000 n +0000397469 00000 n +0000397538 00000 n +0000397607 00000 n +0000397670 00000 n +0000397739 00000 n +0000397808 00000 n +0000397871 00000 n +0000397940 00000 n +0000398009 00000 n +0000398072 00000 n +0000398141 00000 n +0000398210 00000 n +0000398273 00000 n +0000398342 00000 n +0000398411 00000 n +0000398474 00000 n +0000398543 00000 n +0000398612 00000 n +0000398675 00000 n +0000398744 00000 n +0000398813 00000 n +0000398876 00000 n +0000398945 00000 n +0000399014 00000 n +0000399083 00000 n +0000399152 00000 n +0000399221 00000 n +0000399284 00000 n +0000399353 00000 n +0000399422 00000 n +0000399491 00000 n +0000399560 00000 n +0000399629 00000 n +0000399692 00000 n +0000399761 00000 n +0000399830 00000 n +0000399893 00000 n +0000399962 00000 n +0000400031 00000 n +0000400094 00000 n +0000400163 00000 n +0000400232 00000 n +0000400295 00000 n +0000400364 00000 n +0000400433 00000 n +0000400496 00000 n +0000400565 00000 n +0000400634 00000 n +0000400703 00000 n +0000400772 00000 n +0000400841 00000 n +0000400904 00000 n +0000400973 00000 n +0000401042 00000 n +0000401105 00000 n +0000401174 00000 n +0000401243 00000 n +0000401306 00000 n +0000401375 00000 n +0000401444 00000 n +0000401507 00000 n +0000401576 00000 n +0000401645 00000 n +0000401708 00000 n +0000401777 00000 n +0000401846 00000 n +0000401909 00000 n +0000401978 00000 n +0000402047 00000 n +0000402110 00000 n +0000402179 00000 n +0000402248 00000 n +0000402311 00000 n +0000402380 00000 n +0000402449 00000 n +0000402512 00000 n +0000402581 00000 n +0000402650 00000 n +0000402713 00000 n +0000402782 00000 n +0000402851 00000 n +0000402914 00000 n +0000403017 00000 n +0000403100 00000 n +0000403279 00000 n +0000403363 00000 n +0000403447 00000 n +0000403531 00000 n +0000403615 00000 n +0000403699 00000 n +0000403818 00000 n +0000403902 00000 n +0000403986 00000 n +0000404066 00000 n +0000404161 00000 n +0000404245 00000 n +0000404454 00000 n +0000404538 00000 n +0000404633 00000 n +0000404744 00000 n +0000404828 00000 n +0000404912 00000 n +0000404992 00000 n +0000405102 00000 n +0000405186 00000 n +0000405266 00000 n +0000405353 00000 n +0000405440 00000 n +0000405527 00000 n +0000405596 00000 n +0000405665 00000 n +0000405742 00000 n +0000405826 00000 n +0000405895 00000 n +0000405964 00000 n +0000406027 00000 n +0000406096 00000 n +0000406165 00000 n +0000406228 00000 n +0000406297 00000 n +0000406366 00000 n +0000406429 00000 n +0000406498 00000 n +0000406567 00000 n +0000406630 00000 n +0000406699 00000 n +0000406768 00000 n +0000406831 00000 n +0000406900 00000 n +0000406969 00000 n +0000407038 00000 n +0000407107 00000 n +0000407176 00000 n +0000407239 00000 n +0000407308 00000 n +0000407377 00000 n +0000407446 00000 n +0000407515 00000 n +0000407584 00000 n +0000407669 00000 n +0000407738 00000 n +0000407807 00000 n +0000407888 00000 n +0000407981 00000 n +0000408050 00000 n +0000408119 00000 n +0000408192 00000 n +0000408261 00000 n +0000408330 00000 n +0000408407 00000 n +0000408491 00000 n +0000408560 00000 n +0000408629 00000 n +0000408699 00000 n +0000408768 00000 n +0000408837 00000 n +0000408907 00000 n +0000408994 00000 n +0000409063 00000 n +0000409132 00000 n +0000409195 00000 n +0000409264 00000 n +0000409333 00000 n +0000409396 00000 n +0000409483 00000 n +0000409552 00000 n +0000409621 00000 n +0000409684 00000 n +0000409753 00000 n +0000409822 00000 n +0000409903 00000 n +0000409987 00000 n +0000410150 00000 n +0000410234 00000 n +0000410318 00000 n +0000410402 00000 n +0000410482 00000 n +0000410569 00000 n +0000410670 00000 n +0000410754 00000 n +0000410855 00000 n +0000410939 00000 n +0000411056 00000 n +0000411140 00000 n +0000411224 00000 n +0000411293 00000 n +0000411362 00000 n +0000411447 00000 n +0000411516 00000 n +0000411585 00000 n +0000411662 00000 n +0000411731 00000 n +0000411800 00000 n +0000411881 00000 n +0000411950 00000 n +0000412019 00000 n +0000412120 00000 n +0000412204 00000 n +0000412288 00000 n +0000412357 00000 n +0000412426 00000 n +0000412507 00000 n +0000412591 00000 n +0000412660 00000 n +0000412729 00000 n +0000412802 00000 n +0000412871 00000 n +0000412940 00000 n +0000413009 00000 n +0000413078 00000 n +0000413147 00000 n +0000413210 00000 n +0000413279 00000 n +0000413348 00000 n +0000413411 00000 n +0000413480 00000 n +0000413549 00000 n +0000413626 00000 n +0000413710 00000 n +0000413779 00000 n +0000413848 00000 n +0000413925 00000 n +0000414009 00000 n +0000414078 00000 n +0000414147 00000 n +0000414256 00000 n +0000414340 00000 n +0000414424 00000 n +0000414493 00000 n +0000414562 00000 n +0000414625 00000 n +0000414694 00000 n +0000414763 00000 n +0000414826 00000 n +0000414895 00000 n +0000414964 00000 n +0000415033 00000 n +0000415102 00000 n +0000415171 00000 n +0000415234 00000 n +0000415303 00000 n +0000415372 00000 n +0000415453 00000 n +0000415537 00000 n +0000415606 00000 n +0000415675 00000 n +0000415752 00000 n +0000415836 00000 n +0000415905 00000 n +0000415974 00000 n +0000416051 00000 n +0000416135 00000 n +0000416204 00000 n +0000416273 00000 n +0000416342 00000 n +0000416411 00000 n +0000416480 00000 n +0000416557 00000 n +0000416641 00000 n +0000416768 00000 n +0000416853 00000 n +0000416933 00000 n +0000417077 00000 n +0000417162 00000 n +0000417247 00000 n +0000417384 00000 n +0000417469 00000 n +0000417554 00000 n +0000417635 00000 n +0000417746 00000 n +0000417831 00000 n +0000417945 00000 n +0000418030 00000 n +0000418193 00000 n +0000418278 00000 n +0000418363 00000 n +0000418448 00000 n +0000418533 00000 n +0000418717 00000 n +0000418802 00000 n +0000418887 00000 n +0000418972 00000 n +0000419057 00000 n +0000419142 00000 n +0000419227 00000 n +0000419336 00000 n +0000419421 00000 n +0000419495 00000 n +0000419565 00000 n +0000419635 00000 n +0000419742 00000 n +0000419827 00000 n +0000419912 00000 n +0000419981 00000 n +0000420125 00000 n +0000420210 00000 n +0000420321 00000 n +0000420406 00000 n +0000420520 00000 n +0000420605 00000 n +0000420736 00000 n +0000420861 00000 n +0000420946 00000 n +0000421031 00000 n +0000421116 00000 n +0000421238 00000 n +0000421323 00000 n +0000421408 00000 n +0000421489 00000 n +0000421590 00000 n +0000421675 00000 n +0000421756 00000 n +0000421849 00000 n +0000422001 00000 n +0000422086 00000 n +0000422171 00000 n +0000422298 00000 n +0000422383 00000 n +0000422468 00000 n +0000422623 00000 n +0000422708 00000 n +0000422793 00000 n +0000422878 00000 n +0000422997 00000 n +0000423082 00000 n +0000423188 00000 n +0000423269 00000 n +0000423428 00000 n +0000423513 00000 n +0000423598 00000 n +0000423707 00000 n +0000423792 00000 n +0000423888 00000 n +0000423969 00000 n +0000424065 00000 n +0000424150 00000 n +0000424220 00000 n +0000424290 00000 n +0000424361 00000 n +0000424430 00000 n +0000424576 00000 n +0000424661 00000 n +0000424746 00000 n +0000424831 00000 n +0000424900 00000 n +0000424992 00000 n +0000425061 00000 n +0000425158 00000 n +0000425227 00000 n +0000425319 00000 n +0000425388 00000 n +0000425494 00000 n +0000425895 00000 n +0000425980 00000 n +0000426061 00000 n +0000426159 00000 n +0000426229 00000 n +0000426299 00000 n +0000426370 00000 n +0000426439 00000 n +0000426535 00000 n +0000426641 00000 n +0000426755 00000 n +0000426840 00000 n +0000426910 00000 n +0000426980 00000 n +0000427051 00000 n +0000427120 00000 n +0000427217 00000 n +0000427286 00000 n +0000427378 00000 n +0000427447 00000 n +0000427544 00000 n +0000427613 00000 n +0000427710 00000 n +0000427779 00000 n +0000427875 00000 n +0000428203 00000 n +0000428288 00000 n +0000428369 00000 n +0000428505 00000 n +0000428590 00000 n +0000428743 00000 n +0000428828 00000 n +0000428913 00000 n +0000428998 00000 n +0000429083 00000 n +0000429264 00000 n +0000429349 00000 n +0000429434 00000 n +0000429519 00000 n +0000429604 00000 n +0000429689 00000 n +0000430150 00000 n +0000430235 00000 n +0000430320 00000 n +0000430401 00000 n +0000430504 00000 n +0000430589 00000 n +0000430659 00000 n +0000430729 00000 n +0000430793 00000 n +0000430863 00000 n +0000430933 00000 n +0000430997 00000 n +0000431067 00000 n +0000431137 00000 n +0000431201 00000 n +0000431271 00000 n +0000431341 00000 n +0000431405 00000 n +0000431475 00000 n +0000431545 00000 n +0000431609 00000 n +0000431679 00000 n +0000431749 00000 n +0000431813 00000 n +0000431883 00000 n +0000431953 00000 n +0000432017 00000 n +0000432105 00000 n +0000432175 00000 n +0000432245 00000 n +0000432309 00000 n +0000432379 00000 n +0000432449 00000 n +0000432513 00000 n +0000432583 00000 n +0000432653 00000 n +0000432717 00000 n +0000432787 00000 n +0000432857 00000 n +0000432921 00000 n +0000433009 00000 n +0000433079 00000 n +0000433149 00000 n +0000433213 00000 n +0000433283 00000 n +0000433353 00000 n +0000433424 00000 n +0000433494 00000 n +0000433564 00000 n +0000433628 00000 n +0000433698 00000 n +0000433768 00000 n +0000433857 00000 n +0000433942 00000 n +0000434012 00000 n +0000434082 00000 n +0000434163 00000 n +0000434233 00000 n +0000434303 00000 n +0000434374 00000 n +0000434444 00000 n +0000434514 00000 n +0000434578 00000 n +0000434666 00000 n +0000434736 00000 n +0000434806 00000 n +0000434870 00000 n +0000434940 00000 n +0000435010 00000 n +0000435086 00000 n +0000435156 00000 n +0000435226 00000 n +0000435290 00000 n +0000435360 00000 n +0000435430 00000 n +0000435494 00000 n +0000435564 00000 n +0000435634 00000 n +0000435698 00000 n +0000435768 00000 n +0000435838 00000 n +0000435902 00000 n +0000435990 00000 n +0000436060 00000 n +0000436130 00000 n +0000436194 00000 n +0000436264 00000 n +0000436334 00000 n +0000436398 00000 n +0000436468 00000 n +0000436538 00000 n +0000436602 00000 n +0000436672 00000 n +0000436742 00000 n +0000436806 00000 n +0000436876 00000 n +0000436946 00000 n +0000437010 00000 n +0000437117 00000 n +0000437202 00000 n +0000437283 00000 n +0000437422 00000 n +0000437507 00000 n +0000437592 00000 n +0000437737 00000 n +0000437822 00000 n +0000437907 00000 n +0000437992 00000 n +0000438145 00000 n +0000438230 00000 n +0000438315 00000 n +0000438400 00000 n +0000438485 00000 n +0000438630 00000 n +0000438715 00000 n +0000438800 00000 n +0000438885 00000 n +0000438966 00000 n +0000439130 00000 n +0000439215 00000 n +0000439300 00000 n +0000439465 00000 n +0000439550 00000 n +0000439635 00000 n +0000439720 00000 n +0000439801 00000 n +0000440001 00000 n +0000440086 00000 n +0000440171 00000 n +0000440256 00000 n +0000440341 00000 n +0000440610 00000 n +0000440695 00000 n +0000440781 00000 n +0000440921 00000 n +0000441008 00000 n +0000441095 00000 n +0000441177 00000 n +0000441259 00000 n +0000441341 00000 n +0000441423 00000 n +0000441505 00000 n +0000441587 00000 n +0000441669 00000 n +0000441751 00000 n +0000441833 00000 n +0000441915 00000 n +0000441997 00000 n +0000442079 00000 n +0000442161 00000 n +0000442243 00000 n +0000442325 00000 n +0000442407 00000 n +0000442489 00000 n +0000442571 00000 n +0000442660 00000 n +0000442749 00000 n +0000442854 00000 n +0000442941 00000 n +0000443052 00000 n +0000443141 00000 n +0000443212 00000 n +0000443283 00000 n +0000443355 00000 n +0000443426 00000 n +0000443497 00000 n +0000443569 00000 n +0000443640 00000 n +0000443711 00000 n +0000443783 00000 n +0000443854 00000 n +0000443925 00000 n +0000443997 00000 n +0000444068 00000 n +0000444139 00000 n +0000444211 00000 n +0000444282 00000 n +0000444353 00000 n +0000444434 00000 n +0000444521 00000 n +0000444592 00000 n +0000444663 00000 n +0000444728 00000 n +0000444799 00000 n +0000444870 00000 n +0000444951 00000 n +0000445038 00000 n +0000445109 00000 n +0000445180 00000 n +0000445245 00000 n +0000445316 00000 n +0000445387 00000 n +0000445452 00000 n +0000445523 00000 n +0000445594 00000 n +0000445671 00000 n +0000445742 00000 n +0000445813 00000 n +0000445890 00000 n +0000445961 00000 n +0000446032 00000 n +0000446118 00000 n +0000446205 00000 n +0000446276 00000 n +0000446347 00000 n +0000446419 00000 n +0000446490 00000 n +0000446561 00000 n +0000446642 00000 n +0000446729 00000 n +0000446800 00000 n +0000446871 00000 n +0000446952 00000 n +0000447039 00000 n +0000447110 00000 n +0000447181 00000 n +0000447267 00000 n +0000447354 00000 n +0000447425 00000 n +0000447496 00000 n +0000447602 00000 n +0000447689 00000 n +0000447827 00000 n +0000447914 00000 n +0000448001 00000 n +0000448088 00000 n +0000448177 00000 n +0000448248 00000 n +0000448319 00000 n +0000448410 00000 n +0000448497 00000 n +0000448568 00000 n +0000448639 00000 n +0000448721 00000 n +0000448792 00000 n +0000448863 00000 n +0000448935 00000 n +0000449006 00000 n +0000449077 00000 n +0000449163 00000 n +0000449250 00000 n +0000449321 00000 n +0000449392 00000 n +0000449469 00000 n +0000449540 00000 n +0000449611 00000 n +0000449698 00000 n +0000449769 00000 n +0000449840 00000 n +0000449926 00000 n +0000450013 00000 n +0000450084 00000 n +0000450155 00000 n +0000450227 00000 n +0000450298 00000 n +0000450369 00000 n +0000450434 00000 n +0000450505 00000 n +0000450576 00000 n +0000450657 00000 n +0000450744 00000 n +0000450815 00000 n +0000450886 00000 n +0000450967 00000 n +0000451054 00000 n +0000451125 00000 n +0000451196 00000 n +0000451261 00000 n +0000451332 00000 n +0000451403 00000 n +0000451475 00000 n +0000451613 00000 n +0000451700 00000 n +0000451787 00000 n +0000451874 00000 n +0000451984 00000 n +0000452071 00000 n +0000452142 00000 n +0000452213 00000 n +0000452285 00000 n +0000452356 00000 n +0000452427 00000 n +0000452523 00000 n +0000452610 00000 n +0000452681 00000 n +0000452752 00000 n +0000452824 00000 n +0000452895 00000 n +0000452966 00000 n +0000453047 00000 n +0000453134 00000 n +0000453205 00000 n +0000453276 00000 n +0000453358 00000 n +0000463676 00000 n +0000473390 00000 n +0000473581 00000 n +0000476355 00000 n +0000476974 00000 n +0000478522 00000 n +0000480707 00000 n +0000481481 00000 n +0000481510 00000 n +0000481816 00000 n +0000482127 00000 n +0000482156 00000 n +0000482462 00000 n +0000482860 00000 n +0000483161 00000 n +0000483521 00000 n +0000497021 00000 n +0000500570 00000 n +0000501344 00000 n +0000504533 00000 n +0000504562 00000 n +0000504868 00000 n +0000505310 00000 n +0000505611 00000 n +0000505912 00000 n +0000506276 00000 n +0000506651 00000 n +0000515700 00000 n +0000515891 00000 n +0000515920 00000 n +0000516226 00000 n +0000516643 00000 n +0000516944 00000 n +0000517304 00000 n +0000522100 00000 n +0000527357 00000 n +0000527386 00000 n +0000527692 00000 n +0000528015 00000 n +0000528341 00000 n +0000528435 00000 n +0000528858 00000 n +0000529356 00000 n +0000529707 00000 n +0000530105 00000 n +0000530407 00000 n +0000530708 00000 n +0000531050 00000 n +0000531410 00000 n +0000531439 00000 n +0000531745 00000 n +0000531836 00000 n +0000531899 00000 n +0000531963 00000 n +0000532016 00000 n +0000532072 00000 n +0000532125 00000 n +0000532178 00000 n +0000532231 00000 n +0000532284 00000 n +0000532337 00000 n +0000532390 00000 n +0000532446 00000 n +0000532527 00000 n +0000532608 00000 n +0000532689 00000 n +0000532770 00000 n +0000532851 00000 n +0000532932 00000 n +0000532987 00000 n +0000533162 00000 n +0000533217 00000 n +0000533290 00000 n +0000533345 00000 n +0000533418 00000 n +0000533473 00000 n +0000533546 00000 n +0000533601 00000 n +0000533674 00000 n +0000533739 00000 n +0000533812 00000 n +0000533877 00000 n +0000533950 00000 n +0000534015 00000 n +0000534088 00000 n +0000534153 00000 n +0000534226 00000 n +0000534286 00000 n +0000534341 00000 n +0000534406 00000 n +0000534479 00000 n +0000534533 00000 n +0000534587 00000 n +0000534652 00000 n +0000534726 00000 n +0000534780 00000 n +0000534845 00000 n +0000534919 00000 n +0000534984 00000 n +0000535058 00000 n +0000535123 00000 n +0000535197 00000 n +0000535262 00000 n +0000535336 00000 n +0000535401 00000 n +0000535475 00000 n +0000535540 00000 n +0000535614 00000 n +0000535668 00000 n +0000535733 00000 n +0000535807 00000 n +0000535872 00000 n +0000535946 00000 n +0000536000 00000 n +0000536054 00000 n +0000536119 00000 n +0000536193 00000 n +0000536258 00000 n +0000536332 00000 n +0000536397 00000 n +0000536471 00000 n +0000536536 00000 n +0000536610 00000 n +0000536675 00000 n +0000536749 00000 n +0000536814 00000 n +0000536888 00000 n +0000536953 00000 n +0000537027 00000 n +0000537092 00000 n +0000537166 00000 n +0000537231 00000 n +0000537305 00000 n +0000537370 00000 n +0000537444 00000 n +0000537509 00000 n +0000537583 00000 n +0000537648 00000 n +0000537722 00000 n +0000537787 00000 n +0000537861 00000 n +0000537926 00000 n +0000538000 00000 n +0000538065 00000 n +0000538139 00000 n +0000538204 00000 n +0000538278 00000 n +0000538343 00000 n +0000538417 00000 n +0000538482 00000 n +0000538556 00000 n +0000538621 00000 n +0000538695 00000 n +0000538760 00000 n +0000538834 00000 n +0000538899 00000 n +0000538973 00000 n +0000539038 00000 n +0000539112 00000 n +0000539177 00000 n +0000539251 00000 n +0000539316 00000 n +0000539390 00000 n +0000539455 00000 n +0000539529 00000 n +0000539594 00000 n +0000539668 00000 n +0000539733 00000 n +0000539807 00000 n +0000539872 00000 n +0000539946 00000 n +0000540011 00000 n +0000540085 00000 n +0000540150 00000 n +0000540224 00000 n +0000540278 00000 n +0000540332 00000 n +0000540386 00000 n +0000540451 00000 n +0000540525 00000 n +0000540590 00000 n +0000540664 00000 n +0000540729 00000 n +0000540803 00000 n +0000540868 00000 n +0000540942 00000 n +0000541007 00000 n +0000541081 00000 n +0000541146 00000 n +0000541220 00000 n +0000541285 00000 n +0000541359 00000 n +0000541424 00000 n +0000541498 00000 n +0000541563 00000 n +0000541637 00000 n +0000541702 00000 n +0000541776 00000 n +0000541841 00000 n +0000541915 00000 n +0000541969 00000 n +0000542034 00000 n +0000542108 00000 n +0000542173 00000 n +0000542247 00000 n +0000542312 00000 n +0000542369 00000 n +0000542434 00000 n +0000542491 00000 n +0000542545 00000 n +0000542610 00000 n +0000542684 00000 n +0000542749 00000 n +0000542823 00000 n +0000542877 00000 n +0000542942 00000 n +0000543016 00000 n +0000543081 00000 n +0000543155 00000 n +0000543209 00000 n +0000543263 00000 n +0000543317 00000 n +0000543371 00000 n +0000543436 00000 n +0000543510 00000 n +0000543575 00000 n +0000543649 00000 n +0000543714 00000 n +0000543788 00000 n +0000543853 00000 n +0000543927 00000 n +0000543992 00000 n +0000544066 00000 n +0000544131 00000 n +0000544205 00000 n +0000544270 00000 n +0000544344 00000 n +0000544409 00000 n +0000544483 00000 n +0000544548 00000 n +0000544622 00000 n +0000544687 00000 n +0000544761 00000 n +0000544826 00000 n +0000544900 00000 n +0000544965 00000 n +0000545039 00000 n +0000545104 00000 n +0000545178 00000 n +0000545243 00000 n +0000545317 00000 n +0000545382 00000 n +0000545456 00000 n +0000545521 00000 n +0000545595 00000 n +0000545660 00000 n +0000545734 00000 n +0000545799 00000 n +0000545873 00000 n +0000545938 00000 n +0000546012 00000 n +0000546077 00000 n +0000546151 00000 n +0000546216 00000 n +0000546290 00000 n +0000546355 00000 n +0000546428 00000 n +0000546493 00000 n +0000546566 00000 n +0000546631 00000 n +0000546704 00000 n +0000546769 00000 n +0000546842 00000 n +0000546896 00000 n +0000546961 00000 n +0000547035 00000 n +0000547100 00000 n +0000547174 00000 n +0000547239 00000 n +0000547313 00000 n +0000547378 00000 n +0000547452 00000 n +0000547517 00000 n +0000547591 00000 n +0000547656 00000 n +0000547730 00000 n +0000547795 00000 n +0000547869 00000 n +0000547923 00000 n +0000547988 00000 n +0000548062 00000 n +0000548127 00000 n +0000548201 00000 n +0000548266 00000 n +0000548340 00000 n +0000548405 00000 n +0000548479 00000 n +0000548533 00000 n +0000548598 00000 n +0000548672 00000 n +0000548737 00000 n +0000548811 00000 n +0000548876 00000 n +0000548950 00000 n +0000549015 00000 n +0000549089 00000 n +0000549154 00000 n +0000549228 00000 n +0000549293 00000 n +0000549350 00000 n +0000549415 00000 n +0000549489 00000 n +0000549543 00000 n +0000549608 00000 n +0000549682 00000 n +0000549747 00000 n +0000549821 00000 n +0000549886 00000 n +0000549960 00000 n +0000550025 00000 n +0000550099 00000 n +0000550164 00000 n +0000550238 00000 n +0000550303 00000 n +0000550377 00000 n +0000550431 00000 n +0000550496 00000 n +0000550570 00000 n +0000550635 00000 n +0000550709 00000 n +0000550774 00000 n +0000550848 00000 n +0000550913 00000 n +0000550987 00000 n +0000551052 00000 n +0000551126 00000 n +0000551181 00000 n +0000551236 00000 n +0000551291 00000 n +0000551346 00000 n +0000551412 00000 n +0000551479 00000 n +0000551554 00000 n +0000551621 00000 n +0000551696 00000 n +0000551763 00000 n +0000551838 00000 n +0000551905 00000 n +0000551980 00000 n +0000552047 00000 n +0000552122 00000 n +0000552189 00000 n +0000552264 00000 n +0000552331 00000 n +0000552406 00000 n +0000552473 00000 n +0000552548 00000 n +0000552615 00000 n +0000552690 00000 n +0000552757 00000 n +0000552832 00000 n +0000552899 00000 n +0000552974 00000 n +0000553041 00000 n +0000553116 00000 n +0000553183 00000 n +0000553258 00000 n +0000553325 00000 n +0000553400 00000 n +0000553467 00000 n +0000553542 00000 n +0000553609 00000 n +0000553684 00000 n +0000553751 00000 n +0000553826 00000 n +0000553893 00000 n +0000553968 00000 n +0000554023 00000 n +0000554089 00000 n +0000554156 00000 n +0000554231 00000 n +0000554298 00000 n +0000554373 00000 n +0000554440 00000 n +0000554515 00000 n +0000554582 00000 n +0000554657 00000 n +0000554724 00000 n +0000554799 00000 n +0000554866 00000 n +0000554941 00000 n +0000555008 00000 n +0000555083 00000 n +0000555150 00000 n +0000555225 00000 n +0000555292 00000 n +0000555367 00000 n +0000555434 00000 n +0000555509 00000 n +0000555576 00000 n +0000555651 00000 n +0000555718 00000 n +0000555793 00000 n +0000555860 00000 n +0000555935 00000 n +0000556001 00000 n +0000556068 00000 n +0000556143 00000 n +0000556210 00000 n +0000556285 00000 n +0000556352 00000 n +0000556427 00000 n +0000556494 00000 n +0000556569 00000 n +0000556636 00000 n +0000556711 00000 n +0000556788 00000 n +0000557085 00000 n +0000559270 00000 n +0000559347 00000 n +0000559644 00000 n +0000559835 00000 n +0000560530 00000 n +0000563901 00000 n +0000565944 00000 n +0000566396 00000 n +0000567807 00000 n +0000567963 00000 n +0000568119 00000 n +0000568283 00000 n +0000568420 00000 n +0000568573 00000 n +0000568738 00000 n +0000568804 00000 n +0000568870 00000 n +0000568924 00000 n +0000568990 00000 n +0000569091 00000 n +0000569157 00000 n +0000569222 00000 n +0000569288 00000 n +0000569362 00000 n +0000569472 00000 n +0000569546 00000 n +0000569647 00000 n +0000569721 00000 n +0000569840 00000 n +0000569915 00000 n +0000569990 00000 n +0000570109 00000 n +0000570183 00000 n +0000570258 00000 n +0000570312 00000 n +0000570386 00000 n +0000570461 00000 n +0000570536 00000 n +0000570611 00000 n +0000570665 00000 n +0000570719 00000 n +0000570794 00000 n +0000570848 00000 n +0000570902 00000 n +0000570986 00000 n +0000571070 00000 n +0000571162 00000 n +0000571272 00000 n +0000571400 00000 n +0000571466 00000 n +0000571576 00000 n +0000571642 00000 n +0000571725 00000 n +0000571791 00000 n +0000571901 00000 n +0000571976 00000 n +0000572042 00000 n +0000572143 00000 n +0000572209 00000 n +0000572301 00000 n +0000572385 00000 n +0000572469 00000 n +0000572606 00000 n +0000572716 00000 n +0000572770 00000 n +0000572854 00000 n +0000572937 00000 n +0000573029 00000 n +0000573112 00000 n +0000573196 00000 n +0000573250 00000 n +0000573324 00000 n +0000573378 00000 n +0000573467 00000 n +0000576816 00000 n +0000576905 00000 n +0000580255 00000 n +0000580332 00000 n +0000580629 00000 n +0000580684 00000 n +0000580739 00000 n +0000580805 00000 n +0000580871 00000 n +0000580937 00000 n +0000580992 00000 n +0000581047 00000 n +0000581102 00000 n +0000581157 00000 n +0000581200 00000 n +0000581255 00000 n +0000581310 00000 n +0000581365 00000 n +0000581420 00000 n +0000581475 00000 n +0000581530 00000 n +0000581585 00000 n +0000581640 00000 n +0000581695 00000 n +0000581738 00000 n +0000581793 00000 n +0000581848 00000 n +0000581903 00000 n +0000581958 00000 n +0000582013 00000 n +0000582068 00000 n +0000582123 00000 n +0000582178 00000 n +0000582221 00000 n +0000582276 00000 n +0000582331 00000 n +0000582386 00000 n +0000582441 00000 n +0000582496 00000 n +0000582551 00000 n +0000582606 00000 n +0000582661 00000 n +0000582704 00000 n +0000582759 00000 n +0000582814 00000 n +0000582869 00000 n +0000582924 00000 n +0000582979 00000 n +0000583034 00000 n +0000583089 00000 n +0000583178 00000 n +0000586528 00000 n +0000586601 00000 n +0000586674 00000 n +0000586747 00000 n +0000586820 00000 n +0000586893 00000 n +trailer +<< +/ID [<439517FD6D4EDD40B985B8030E1AE646> <734D9F9FD686024B992DFC9CBA84379F>] +/Info 1 0 R +/Root 2 0 R +/Size 1711 +>> +startxref +586966 +%%EOF diff --git a/src/Static/data/Standards/2/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.docx b/src/Static/data/Standards/2/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.docx new file mode 100644 index 0000000..86365e7 Binary files /dev/null and b/src/Static/data/Standards/2/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.docx differ diff --git a/src/Static/data/Standards/2/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.pdf b/src/Static/data/Standards/2/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.pdf new file mode 100644 index 0000000..6c83c60 --- /dev/null +++ b/src/Static/data/Standards/2/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.pdf @@ -0,0 +1,12669 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210503154656+02'00') +/Creator (Adobe InDesign 16.1 \(Windows\)) +/ModDate (D:20210503155036+02'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Pages 4 0 R +/StructTreeRoot 5 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-05-03T15:46:56+02:00 + 2021-05-03T15:46:58+02:00 + Adobe InDesign 16.1 (Windows) + 2021-05-03T15:50:36+02:00 + uuid:2a953496-05c6-4ca4-ab9d-9fb7d0e72802 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:9f575b50-9b1f-c94a-b3b1-96744d343697 + proof:pdf + + xmp.iid:2c096960-9124-a748-8296-699b0b899033 + xmp.did:e47b0817-6315-8e47-9b9b-dac20b54f073 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 16.1 (Windows) + / + 2021-05-03T15:46:56+02:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Count 23 +/Kids [6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R +22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R] +/Type /Pages +>> +endobj +5 0 obj +<< +/ClassMap 29 0 R +/K 30 0 R +/ParentTree 31 0 R +/ParentTreeNextKey 21 +/RoleMap 32 0 R +/Type /StructTreeRoot +>> +endobj +6 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 33 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ColorSpace << +/CS0 34 0 R +>> +/ExtGState << +/GS0 35 0 R +/GS1 36 0 R +>> +/Font << +/TT0 37 0 R +/TT1 38 0 R +/C2_0 39 0 R +/T1_0 40 0 R +/T1_1 41 0 R +/T1_2 42 0 R +/T1_3 43 0 R +/T1_4 44 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 45 0 R +/Fm1 46 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +7 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [255.0 1.0 2.0 85.0394 -340.157 501.732 302.362 1.0 0.0 0.0 1.0 293.386 -7.08661] +/1 [349.0 3.0 4.0 0.0 371.339 615.118 371.339 1.0 0.0 0.0 1.0 0.0 371.339] +/2 [423.0 14.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [469.0 12.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [492.0 10.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/5 [500.0 13.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/6 [525.0 11.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/7 [3554.0 9.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 8.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 7.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 6.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [6021.0 5.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/12 [6051.0 4.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +/T1_1 59 0 R +/T1_2 60 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 62 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 26.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 24.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 22.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 25.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 23.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [630.0 4.0 4.0 -85.0394 -396.85 -85.0394 396.85 1.0 0.0 0.0 1.0 -85.0394 0.0] +/6 [671.0 2.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -293.386 -7.08661] +/7 [1344.0 3.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 86.0118] +/8 [3554.0 21.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 20.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 19.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 18.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [6021.0 17.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/13 [6051.0 16.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 65 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/TT1 66 0 R +/T1_0 58 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 2 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 67 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [1395.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -288.634] +/6 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [4370.0 1.0 2.0 650.268 -281.197 1066.96 122.74 1.0 0.0 0.0 1.0 858.614 39.8169] +/11 [4692.0 2.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +/12 [6021.0 15.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/13 [6051.0 14.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/TT1 66 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 69 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +/T1_1 60 0 R +/T1_2 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 70 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [1489.0 0.0 2.0 85.0394 -340.157 501.732 328.819 1.0 0.0 0.0 1.0 85.5394 160.657] +/6 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [4435.0 1.0 2.0 -1074.33 -382.677 -657.638 283.465 1.0 0.0 0.0 1.0 -1073.83 -382.177] +/11 [4441.0 2.0 2.0 -501.732 -340.157 -85.0394 316.63 1.0 0.0 0.0 1.0 -501.232 177.098] +/12 [6021.0 15.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/13 [6051.0 14.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 71 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 72 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 23.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 21.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 19.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 22.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 20.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [1516.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -202.65] +/6 [1583.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 78.9252] +/7 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [6021.0 14.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/12 [6051.0 13.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 73 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 74 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 20 +/PageItemUIDToLocationDataMap << +/0 [423.0 30.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 28.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 26.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 29.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 27.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [1622.0 0.0 2.0 -501.732 -340.299 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -303.657] +/6 [1635.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 236.484] +/7 [3459.0 2.0 2.0 619.748 340.455 959.192 486.156 1.0 0.0 0.0 1.0 783.024 413.306] +/8 [3554.0 25.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 24.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 23.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 22.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [4834.0 3.0 2.0 -1137.83 -127.276 -721.134 295.838 1.0 0.0 0.0 1.0 -929.48 172.252] +/13 [4997.0 4.0 2.0 713.197 -133.228 1129.89 289.885 1.0 0.0 0.0 1.0 921.543 166.299] +/14 [5253.0 5.0 2.0 -1177.51 -185.102 -761.071 -158.283 1.0 0.0 0.0 1.0 -993.795 -177.073] +/15 [5762.0 6.0 2.0 -490.394 49.748 -293.386 315.071 1.0 0.0 0.0 1.0 -371.339 89.4331] +/16 [5825.0 7.0 2.0 290.268 18.2835 616.252 122.126 1.0 0.0 0.0 1.0 453.543 31.3228] +/17 [5850.0 8.0 2.0 -995.102 313.701 -697.465 462.047 1.0 0.0 0.0 1.0 -966.472 376.733] +/18 [6021.0 21.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/19 [6051.0 20.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +/T1_1 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 76 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +/T1_1 68 0 R +/T1_2 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 77 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 18 +/PageItemUIDToLocationDataMap << +/0 [423.0 28.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 26.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 24.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 27.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 25.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [1664.0 0.0 2.0 -501.732 -340.157 -85.0394 333.354 1.0 0.0 0.0 1.0 -501.232 -339.657] +/6 [1699.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +/7 [3483.0 2.0 2.0 634.961 -314.646 974.405 -168.945 1.0 0.0 0.0 1.0 798.236 -241.795] +/8 [3554.0 23.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 22.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 21.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 20.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [5037.0 3.0 2.0 -1069.23 -53.2913 -652.535 287.575 1.0 0.0 0.0 1.0 -860.882 246.236] +/13 [5282.0 4.0 2.0 -1047.69 -121.323 -631.244 -94.5039 1.0 0.0 0.0 1.0 -863.969 -113.294] +/14 [5307.0 5.0 2.0 677.48 -78.3494 1094.17 328.819 1.0 0.0 0.0 1.0 885.827 221.178] +/15 [5344.0 6.0 2.0 833.638 -125.858 1250.08 -99.0394 1.0 0.0 0.0 1.0 1017.35 -117.829] +/16 [6021.0 19.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/17 [6051.0 18.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 78 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 79 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [1708.0 1.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/6 [1714.0 2.0 2.0 85.0394 -340.157 501.732 320.315 1.0 0.0 0.0 1.0 85.5394 -332.571] +/7 [3554.0 20.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 19.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 18.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 17.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [5150.0 3.0 2.0 643.465 -343.843 1060.16 287.612 1.0 0.0 0.0 1.0 851.811 -44.315] +/12 [6021.0 16.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/13 [6051.0 15.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 80 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 81 0 R +/CropBox [0.0 0.0 615.118 793.701] +/Group 82 0 R +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1899 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 18 +/PageItemUIDToLocationDataMap << +/0 [423.0 27.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 25.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 23.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 26.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 24.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [2999.0 0.0 2.0 642.756 -344.409 1059.45 321.732 1.0 0.0 0.0 1.0 851.102 -44.8819] +/6 [3526.0 1.0 2.0 -501.732 -340.157 -85.0394 -211.465 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [3554.0 22.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 21.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 20.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 19.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [5380.0 2.0 2.0 -501.732 -204.569 -85.2913 -177.75 1.0 0.0 0.0 1.0 -318.016 -196.54] +/12 [5793.0 3.0 0.0 -532.677 -181.293 -56.4567 203.15 1.0 0.0 0.0 1.0 -549.016 -303.449] +/13 [5794.0 5.0 2.0 -501.732 226.772 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 227.205] +/14 [5814.0 6.0 2.0 85.0394 -340.157 501.732 308.976 1.0 0.0 0.0 1.0 85.5394 -339.657] +/15 [6021.0 18.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/16 [6051.0 28.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +/17 [6084.0 4.0 4.0 -505.146 -181.293 -83.9875 218.268 1.79982 0.0 0.0 1.79982 -505.146 -181.293] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 64 0 R +/Im0 83 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 84 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1870 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 16 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 85 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1813 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 17 +/PageItemUIDToLocationDataMap << +/0 [423.0 27.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 25.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 23.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 26.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 24.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [1820.0 0.0 2.0 -1148.03 -415.276 -731.339 250.866 1.0 0.0 0.0 1.0 -939.685 -115.748] +/6 [3046.0 1.0 2.0 743.386 -328.819 1160.08 337.323 1.0 0.0 0.0 1.0 951.732 -29.2913] +/7 [3554.0 22.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 21.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 20.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 19.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [3778.0 2.0 2.0 -501.732 -340.141 -85.0394 289.606 1.0 0.0 0.0 1.0 -501.232 -339.641] +/12 [3817.0 3.0 2.0 85.0394 -340.141 501.732 299.055 1.0 0.0 0.0 1.0 85.5394 -339.641] +/13 [5878.0 4.0 2.0 -615.118 -11.4803 -317.48 112.346 1.0 0.0 0.0 1.0 -586.488 27.0325] +/14 [5903.0 5.0 2.0 288.535 -167.244 614.52 -53.3287 1.0 0.0 0.0 1.0 451.811 -144.132] +/15 [6021.0 18.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/16 [6051.0 17.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +/T1_1 60 0 R +/T1_2 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 17 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 86 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1814 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/T1_0 58 0 R +/T1_1 60 0 R +/T1_2 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 18 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3119 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3123.0 0.0 2.0 -501.732 -340.157 -85.0394 270.992 1.0 0.0 0.0 1.0 -501.232 -339.657] +/6 [3132.0 1.0 2.0 85.0394 -340.157 501.732 320.882 1.0 0.0 0.0 1.0 85.5394 89.7913] +/7 [3250.0 2.0 2.0 398.551 425.764 696.189 571.465 1.0 0.0 0.0 1.0 427.181 498.614] +/8 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [6021.0 15.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/13 [6051.0 14.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 88 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3120 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 694.488 367.37 761.811 372.472 1.0 0.0 0.0 1.0 138.189 1.98425] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/6 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/7 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/8 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/9 [6021.0 12.0 3.0 557.254 365.722 625.577 371.825 1.0 0.0 0.0 1.0 1.45473 0.836609] +/10 [6051.0 11.0 3.0 -623.913 365.154 -555.591 371.257 1.0 0.0 0.0 1.0 -1179.71 0.268509] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/TT0 57 0 R +/C2_0 63 0 R +/T1_0 58 0 R +/T1_1 68 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +>> +>> +/Rotate 0 +/StructParents 20 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 89 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1845 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 90 0 R +>> +/XObject << +/Fm0 91 0 R +/Fm1 92 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/A4 << +/O /Layout +/LineHeight 0.0 +>> +/A5 << +/O /Layout +/LineHeight 12.5 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa4 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa5 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa6 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa8 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa9 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa10 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa11 << +/O /Layout +/EndIndent 22.0 +/LineHeight 10.75 +/StartIndent 22.0 +>> +/Pa12 << +/O /Layout +/LineHeight 16.0 +>> +/Pa14 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -19.0 +/StartIndent 42.0 +>> +>> +endobj +30 0 obj +<< +/K 93 0 R +/Lang (de-DE) +/P 5 0 R +/S /Document +>> +endobj +31 0 obj +<< +/Nums [0 94 0 R 1 95 0 R 2 96 0 R 3 97 0 R 4 98 0 R 5 99 0 R 6 100 0 R 7 101 0 R +8 102 0 R 9 103 0 R 10 104 0 R 11 105 0 R 12 106 0 R 13 107 0 R 14 108 0 R 15 109 0 R +16 110 0 R 17 111 0 R 18 112 0 R 19 113 0 R 20 114 0 R] +>> +endobj +32 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Box_Header_2 /P +/Kapitel-Head /P +/Kastenlauftext /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Einklinker-Text /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +>> +endobj +33 0 obj +<< +/Filter /FlateDecode +/Length 4306 +>> +stream +H‰ì—Ûn9†ïõ¼lÛmž@``âÅd0 »ÁbáزãYGv$M2yû­*²%¶"9l;‡Á®ÀÝêYMþ_Õ_ï'Ï»XN›þ|ðì`O®'¿MÞo_—éúÁñÍÉœ=ztðóÉü‚5³yûü1?xyôâ “ìððñ“#6y<Á˧K¸Æ–§óõXSùo§ç“VtBÀÙ)Ë'™ë¼eþûÎ2%C'´wLÙÎ|àÝäuó3oẂ‰yk;ÍšpOÀ•+¸Å¦ø¿¦Ÿ¬päÕ&ã^À‰À'>±ë~®s†ï;œÿm?ÉŒ½€k§yBÁ•'¯hý¸v©u© €Lì·¶¦“–¸Xê†1>ý½fÓÏð~‚: ë!ó>ÆZÌ&ÿdó´Ó¢S¦íŒÑìÕ󉀹?Âû/aü#Õ«þ,X à„‹b=…¦rh„æ°.8Û÷[Ž€á,ÿA*dO…Úµ$£¢¿Û’¸¾Ë¯^\ €Ô;§¢Ü¢ïé*Ñ'm’©Ìúw¨¥U¦rF²w$¸ôHS +”ÖÉF´§1l¢@á s{Äg–ˆˆêbR4½¾H@¬H¿§8GŽð å‰1I‚^QžÞ›ÙRÄß./Hšê&UxeF3Ø49…xŠÀ¼S)|_îAçp¼Vð7KÛËo6ù›ò!ž€(í‡u,XÈ…Ñ0áDø˜¶rDf0hQQ¸%IodHÁØ>‹ÁИ0äO§«?N®¦³?Wž=}öL iÁPÈ +>Ê4Î cn’x1FÈ žž%aù.%*ƒ }9çôY+¾–%\”SVíï ×)͉¼¹&+ÉâqžT +r’9óÒÏ_¹OïÂWú¤(•&K÷¯sv?Ï¿¹Nêâ’Ä´Iš—s·µ): +¦¶—P½N +x¨ÖO$ÎiQ:•Ï»ƒ'JY¥ +d|í\–ÊÑfi$­ô|Egiq¼¤%^ZRAÀ© TŠa¶ù,ÃMeQöM_ö ÅŽ•’ÞÀ“>~ ©ÛzÐÅÌÄ°qà3Þ¡ŽñÉ‚ÃÂÃɧêxå€L­ˆ¼6ŸmÇ$5TÜ.ƒjºÑÿPü{9RbÍQÓ­1©ù–Ï ”+Y íðSMÁ††ŸºÁ¶‘•åG–Ew]¯=Öž wdøM(o_ª§ƒ/€]“6¥’¦Û„ +™Âë>üäÉ7^sÊàg\e¨Ñ:Y´^É°Í r)’»£sƒé€îœ ˜Và]2ÖÊæ —T0~Ç')‹)ª¬úºrÉ“WüE;KÃ/ë3c4«,ð/t®ë’¨ý\¢^ûûJ´ü²B¢ªV¢n¬D †M¨¾ ÑBžhº²<7Q²[ß/¾¾)%-ͺhNyp¹h:*cõôŽëT¦Àiì2Îøºcr¨¿sn²ñQT\ç}÷pÉ¡~«¤XMzXPäÔw(+1üR"è .ÅLõo¸Áh²Æ©ê|ȱÁ”®9ÖÕÛ¦©FÂïAB¢ß¸E\J ¶h XkD§ÜïB`ߟŸ°ƒWíËöñ³çót-?q‹ŸTØÉž¸[(eF'M«G&ú¨zùw„¨Ö%ãmÿ97”o³e¸ä†º×³Ëäãæ\Sâ¿è‡¹Á¼lQºJ&@È‚%OÖ-â°&Xc_q“ &ËX-\%FùMŒr¸t?Øv(¹C“æÞ9½üÂB“¦R“JíµÌè…OxwM+,ÓìàK…¹AÌ&úNDHJd95$-êB;j`w%ínÕÇuJõ)󯛀ÿö¤›ÖTµ¬©ût¤Vì*¦eêxId < @µ½Uz /³ºTMV|8þ¸ãFAy†ÐÅy³”çøæcÚC§)TGh3$Çx ’ÓVhw06õ|Ûíšãr3™Kά=toJõTkÌæÀ´"¤Æ0 ¦b›iÙYëú’s¤Ò¨€¬FË4C1¡Ñ‚] +›;d£"« FEÚŠ„ oÙGJXì=‘>§Ž©Y¦é^l CjÍOCæ69ÚÜi!ºé> È17`Ó…¢0®0ˆ@ä[œnÉ®qœˆ#ØÖÞoWì^Ü6ˆ… ½ë¬‚:Sî^Þ/¬‡îºŠ¾ïqK%ÚñÓÌÝI J'‘¼åÐùt_äëÞqIÿ$u +àÅDG clÚ ˜–ÝãUXvZ³lÒò0oƒò Ô¸ä)ƒ/Q‹Ÿ©9Ð"ín/¿«bÚ ¥S­\^-<Þ÷Ê¿ÊÁº:ô`…Žê<ؘL¬Õ¨Lì·Â¹K*¶µÈéšTŒÆÔ¹•Š5™ sïTü¼ÏI}>”ž’*`¬L˜¬Åkè³Öé+%Þ8HÌÕôkNæŪ"!š’õ®)—ÏÙ”²ÃK ´Hé-9%0’!ur”UCêbÈj°ÍØ£ ’€še¢H𠀎"ÓŽ%sÇ]Ètµdº2…îŒ4ê3“DTØ{“y”Q,ø"ÃÐ*ß·Ô™àßÓÜŸ¬Àï£jc5v`¹öHJtn§ÕPù¨þÇ]Õ2¨So¡Òºêz’ÃX’A}S’ã04é068fÖ:èÎ×XÛ„uò¡®kè:œI,ËÎzY®‰ð9¢‘I"ÆËY„-o°é2ÄóºÃÈ`+SBPD1ݬd׈vÿRÇ] c€áR’c±‘#!Fuˆ}%ÄfËËbÓ2ìƒØéÎyëzˆ^]êý†møŒá×Í3`N"¹W€%Uã?©,SymÉ¢¾áÒ!žWÕåÔè$ÿ'Ž;P–ÞwR Ê…0G¡|¢ÍX¢Á}S¢m…ÁÖFwA8½m°É׆{ûëŸ8«°f:ð”üu …ž:O<¢}NG(ȱ>á+ô®¨ø^AÕEüwö¶k‡½À§¾¼~fmÊÉÛß`²Pé‰ã.6ö½Ÿ¿6‹¸‡,òÕ +p0@ R[(ñËÔŽbÔetÊ] µŒ†F•î"4‚[ˆƒTÄ{3ú 6«DÍvÓjWhŽ¸¸ +"ŒN xóÓ€P‹|^­ÇhsNüö å×\‘aÿ7"^šCîdÎò{VMiÜMi24”Ž£ÔA_±Ðbþ&¤VŒ…´ˆä›2jåèöN„ó~»½µ +ù‘ܹb„EvÁîhsåšáW\ +D¸¹X÷ª†À›cUÍØÚž¸HeÕq¼5ÈÃ:é±,§ÚzÃáí›kNŽ{ï8nÅ)5Ìç10Zµ§d:ÿ@ãw£ØØN«ý2Æw¡Y¥¹ŒèN8ÇZœ·;@D8‡¸‡ft(2³¦Ùdše¦9 Fÿe¿\z7‚ |ϯàqy3ïGnFCnAb ‡œ¯íÝ ~@²É¿OW÷HÒ”LJ»ŒøDj¨!gȪþªõ"7OšyçæŸ9k¦hàdzÕü†·-g×v‹l VÒõU\æGÿaßäqªñMd¢DºVêòÆw‘¿ÃB—öMýgDj(Òš¬Ÿµ½Agúç¥>®öM}ê†àûósros~ýIYY&6¯Ðt^Öˆ“äéê M]Ì*ð"ÝÁEšŸv‹T3®€¹‰²ô…›$xÛgsƒÅqfF._Q;Àm­QÈÓÚà‡kà]áÚS4Ê‚dñG*'”ê9Ì#–ÓÏ»æ‚ò8l¨¢h[b¾ V‰ç6÷­ÅM¯)ásÑ¡„§mZωžg F'ƒß‡zĪl„'ÒâtI½‡ Ï,QaØPY“Jâ³ñGµô +¢±yøU‰ÿ@ë?Ö"›„º{af .®ªuììÊ%M$‚¡ê]õ +úƒ ´âVKÍ~­vh%†Ùºz/ +é+f£­ ÐAF©Fá©<ÚšŸ +Ϛߊ¦Ÿh\A?›VsØ}D£j„…<š¢HEþ+ñÒ4 Ê_Zç°`$džLMn‚(¸WÍYkxà¡åžV³t×-óÆ°õœ•\þ4û•»iØ*ÿÎÚY—C炳¾ÄºE¦õl£Jåã>¶Õ 9†m0m°ËºÁjúœ=…£¡¨3‰=™È»óó¡h³ùjPÌþU Î9Tࣰy„/áò7â#Ó‘1fÄýIÀ™¥8¢$ðŠ‡YTÍEŒQè…® Ðb¸Ùžm×ÔJ«ÖÜùT^È_ “ÛÙE(.©÷]ˆ*õðj M#šâJG¡à4öSåMmçÎ|?u´×Ö ?}kd³ãgs2@’¥ôè7Vd q3)‡Ï hêÿÅ„Ô «§7ÍŸ­fî•‘ê†LÕMs»yÈ—Žtiݬ `+(“»XÒNŒñ¸¡ýºÌ¿€ºëÞð­?·ÒçÞ·NºÜ™"jO[›ÿ'¤ ¨¥BJ{%Á½Éx<£µÐ3ïë ‡‹˜Ëú‚±à¥ö¬ŸéÙh¦¿Ï©ž:$çôØ©Ló5ºÔ)¡8Åp +S-r÷–J ª•([ŒÊ€A[7ááË–)µóR5ͽ¦GFüƒK‰$o””KÔ¾çf øJ:È/­å[öÅf»ÃSmn§m®cz£>Ÿò-eD£|r2ù.r¬9Ö9±lpfŸeëçŸjÙ0ײ“±|Ÿe­íbtilÙ•…íéž=Û2ï–sk9ÔåîÔˆ´=4þ/H*ê¾c›|lî[æè#‡¾×•:°&ç2ƒZUL„Ì«\Ú\ßõ½7È…âõ*¶ów ¸ß–*RÉdÈÅ®¸ —žõnWÍÇÖ*üµ¿& ·ªZòbn—T'ºh̶|x%²O8ÑYj!­ÖÙ‡cÌ7ÌàªtcwiÒ{iôÄÓ¼gÔ\ï¥%ÞÍ”÷cïY–…;Ý{?¶:â–÷D²(Tø} x¸Š|—Ì%c‘|Cm•mž¿Ðîh|Óôònvæ §å—yÚ;ï™AŽÈƳˆ?Ï£þ<š÷xÔ›#M:eFŸ; ÀJxŒÅ%NLj™ãðq¯åĤ‡Í¦–fܶ½)nòtÒ~J Ô¬²-‰_ÆáßO¬<el!óOsÖjÖÄ8cРû“#K}MÂgt8Lü«8VŠ@‰fK²£Edç¿ß“¦3+‡Í\%¥a`·&)ñÙxË”’:OmN½ç Îóðt@™}yZ¦/;ŠY6ŠÀ\°½Pig¸I—¨F%b½É^SªKº”ÌF×òúO€ˆžb +endstream +endobj +34 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +35 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +36 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +37 0 obj +<< +/BaseFont /VRWEND+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 115 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 116 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 0 333 250 606 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 778 0 709 0 0 556 763 0 337 0 0 0 0 831 0 +604 0 668 525 613 0 722 1000 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 0 291 883 582 546 +601 0 395 424 326 603 565 834 516 556] +>> +endobj +38 0 obj +<< +/BaseFont /BIWOTR+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 117 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 118 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 0 218 0 +452 348 462 434 452 434 0 0 0 0 236 0 0 0 0 0 +0 696 0 0 0 0 0 726 0 0 0 0 0 884 0 0 +0 0 660 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 0 312 800 556 490 +528 0 378 396 340 546 508 0 462 518] +>> +endobj +39 0 obj +<< +/BaseFont /RVXLJL+Wingdings-Regular +/DescendantFonts 119 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 120 0 R +/Type /Font +>> +endobj +40 0 obj +<< +/BaseFont /WJVJBB+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 121 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 122 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 573 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +41 0 obj +<< +/BaseFont /JOAUBB+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 123 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 124 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +42 0 obj +<< +/BaseFont /NKZNFT+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 125 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 126 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +532 0 538 493 0 0 0 0 0 0 0 0 0 0 0 0 +0 482 0 448 0 501 292 559 0 234 0 0 0 0 555 549 +0 0 327 396 331 551] +>> +endobj +43 0 obj +<< +/BaseFont /LHVBDX+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 127 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 128 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +559 0 569 519 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 0 449 0 516 319 573 0 256 0 0 0 0 572 564 +0 0 356 417 351 569] +>> +endobj +44 0 obj +<< +/BaseFont /FGWMXJ+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 129 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 130 0 R +/Type /Font +/Widths [233 0 426 0 426 0 426] +>> +endobj +45 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12084 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 34 0 R +>> +/ExtGState << +/GS0 35 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—Ir%¹D÷Ê]J»>÷=J¿fm÷Œsí(÷*çúß??þÅŠš[þ{ÅUø‹k´y÷ÆQuì»–6¯¿>ôé×GÄÝâú¬qoˆ~Êp0l׺cíës±y®ëÇÇ'G¯~}F÷`æ³ö{õÃDë÷Ùü3Ú];[¢ÏûŒª={Ü­ ¦f½çjZ\îúcÖÐêqî>óF׶8‡Ë¸#°°à+&rkcÕìwñí¥=ÛÖ½êÎ]ó®í:÷:UóçêÕÖ=¶Æ®Qî6‡W·JXÚ5Ö½C&rÃëšq¯Ígsó&Ê7Fh K©š(cùÞÝ}üá@Å“5gºzé3~y"Ö¹wíyiØØD€&‡j8q¦såŠg¿'ê]su¡Ñ<ãzÕÛ]–3rúÝcjbø´v¯9µ|ãao[Ãö˜‰†UÜ6F÷w9ÒKfM»A;„£=Ëõ‰UdL½®±óVOnW‰«nàÆæXˆT]ΨVãKíWU%`¼¬î,§€®ÇçZÈŠ}a¢¤À%-'ÇûŠ}Ÿz<”‡ÒV\(¢!Üaq› ;µ&àrÔ’%=ì7ÿ©È°€ÊoL;¸Àϖ铬…`(  +º NÏœïít€°²2+›ù¾!ßà'—ÀjÏT° §ÕÊŽ¦<ËP"x\³Ü½w%n„oŒ)\t6UîœìÌ%…@íâ:-7PÑÜÿÌüÔ nì¡ LqPdº´Šã¦8€¨Ì¸3Á Î`†h3qæöÀ¶ã8ïŠST[xkf +<]òƒ3}¢ÇÕ5gšÁLæÂן¿O¼RÑlD7%‡¡Ãéa¸ø‰ã’l&VGûª1¨f¿ŠÆ5Øï(ßjÙšÃá2ìiãQ°íÄRÉ’í.z€€áëÏͯî&Ç­>5Vó{ïÓܼúÐ÷E©}BxJû—1_+À†©¢]ÄL}„ðƒJáÏ¡H6:¤ ~ä1Ù¬)$Œá¬0¡Všû9o†bóMoTÎWtfq]• +±í,ç;ý܇éE–øR‡Â@Wèa”‰AÞu8 R ¦N {ѶFQ‰ÜéWuòN£lÍžé³Î‚Na†•úa8ŸÍê³Ï×<{Ãr\]݃pû7éâw.¾ƒ™‘ßIzd èð5»†IS qê°¶ÔDÁ3wD¸àE“Ð^vH±¦*;dY¼(â]ÔñÌàÀúP ¨ƒ$&ú±JaÁËá¯rž”È&¾×Y‡Zl‹ÁP+ûI™6Õ»VÉœêÎ"ÊÐ'݇RW>ð}+x&Q2ép[~j ÕRéRb<ÆG 4:Õ½ñôPý–ZuµŸäuÍÐÔy^Õ!¯“Ë›<:/¾’ŒhÓ',) Ì-ÞªI6ŒûÔwÕf}è~Z¸0ƒÍ:aÊv(ÚŸîñÝßÇÉ;ªl!Åì8ݪÈ4w7°û4ß÷ Üѵ’qíï®òú¬ ÔjžYh\<Æ8a–qJ$žÔS–Ÿ0c=Ù©°*Ñ¡;hGro[”iGÏ\ÑVëi_w41çö µ(ä>U3¡Pi¥ÚôÓ)mÿ\ËæG[OúÎÌ/egÇ8J…Høw…^ûðo¨RXW_ÑÎÌ‹Ùt«çŽÅ­??Þ)ã¬Ö2¼Í1ØVѲ÷í`›®¢'ué+8Mmd=óË¡‘@ÉðN9Bß;Ѥ#ra\Ÿ ¥ZøÚq;¹ våÿÂ'£ê|Y#¥Q,T$ÞVCD.A¼’ðAá@ôíœKÑœœAc[Ê×ÈØ7gQøÎï%U²ó8vee[\î*²§š ª‰] q‘dþZ×S¢yë«‹á¦Ö­‰á#p¾¤½«!Uaj ‚  žûÛÒGáqŸ¹C"k0cz” +uÛЦÓÖm…\*j­$»ÝMH‘ì¤%05TWòS5,&DR©ˆ’õq`ÒýÃ…Vl§ J•J–+þ¨œJ¤ÂÆ4ž!-rˆ¢O×%)žšWV+ÜD2uÐEí[z\2M2§¹[w! ZÏ eù-GËFVˆI³à;;¾ü—\|½^jËFñÒïýd‡|DŠì¼Aîo Tó!6¯ëý.üKÜD3ÉmàWBê×›Pü¾ýàÜò¢°ÜÔj}ÕÒ›z,ÜÛÀZ±ª=Q(ëõT¢6c$ãŸßH@u1UõUJÅ~1„Q¼I•&™/¿ ëè°pØFª+†æ$ŸýdŒ†+—+Ž7ðß×»ÉXÞ¶?µXv'˜%›ýbºÇ{üé\Ì-Ù¸~õiªsec9ÐÓÏø¶/ ϶S®Uú-êW»M«(ºD!øjböŠ!“ê8×_r$;Ë)3f$þÿêÅ4¸M=ãÐ +Ô7†¥à™¤ºO2 ºÆO—”‹ãò„›®Þ‹ê#šX+{çÉ7Fœ™@z0ˆÉhß&6‹Ÿ +mâU×”"±áe…•UM=Ê9VËÕ[gõ qQ &¼+®³¨vÛ&s>:qJy~+¿™ô/‘›1šùÞˆá&cá¥^¯æKj KÅhÇïYoCø$¼­PqâÎÏ2ýPuK]çu? ])ªqD„‡¯;aḨqº„P+WÄT5Æ6H9¾Rš¡ÒÙ|<ÕªÓˆŽÌgÊl&Zþã{é[VÛþI‹H2 ¿#¸îb·}©·‡¬®! >jz‘@2/vQ4>õàÌ —ÇîÃ-9Z‰‘¿„N­Œû›»°”Ë/OTf&ê§'ܦ|¾Æ˜¶}ÿ +OKŽÞ—ܱˆ‚ÂBtüh=Ùß¹a®|Jò038@M˜ŽÍjã+ØO¦¾z?îõ–Bï·âÀ¯ŽÌt¥Sã2­³;1rªJº{Å.‘„Ãz äk”öÌ0RjÉf¿¡z5þ9<îGbÁþhž_9!…$•—:uŠ¤¾ÚŽ®ÜP3Zã2j'™4ÌKY¯o +û‘§<¯ U¬Ïmé5]·´úºª´|Žµ,Ù«þŸì*Ç’$E¢zŸ"/0ﱟ§”²î¯Î_ ¥² [þò€›0¢˜èÃä3q‹·GÖŽÑVµµmsìz¢›LA_Ôš"i¦ ÿJú~EÄJ­òè@·'&:KÔ]–ÒÕ"M¯;»çq¨¶ˆTF®™þ‘ú‰- ‰×å8äqˆ´Zòözá÷\b2ÚFàáåL»X aÐôä<*Z†a=„ ©ŠÁ)Ó®–‘BƒÛð;•,% =)£e>n°3a7Š¾Ay¿„´­ûÅ6haµ@Z” CÕM”–ÄtˆSY9—hrÓ;Z‰t AjêýsÕÇ£îG-²L»/…2škJoˆNÈAKÞ’œÇñðšj¿óµÁFµ ÙÞ°¯’¹³å<U®ØV0CµŽ"Ó Cç¹Rã#Ô¾`j(fŽqQJ(Ÿ™AøªHSk½ßË~ßaS QÕwlÊå­% +š>›Hu¨½UL\HEz\\ÃÏF&ºQÉNã˜$eÕx i,÷ä§l${rT l° †_•2w,éõ¯{TÆ ‡.ê² +ÿË%¥Re‘RëẑP¶L`ˆÑh¹d0ÚÊÂpk«lr´ eDø`X¦Ð€Tµ_Ú—_ç|Ù pÚˆÃàUOœp¹b´‡ÜœRì¨*÷(lQóýROd×&$…qa½ˆ®û±A¤$–rÁDãUPm:–[TÇ¢.^µL8B!}×dbŵ%,D^XÒxz͢Х·²5¹¸nÉ/¡}Žú«Zç‡e'cÉâ-.ƶ¼ÉYËõhHÂó‡Îò¶x}Q׆^úǦg‰²)ž~振YÈWõm*ºö!Mè´bÎ\\¸*ž(2Ø°¨I×Ãb¿š‘¼À E;8¦½ ¨a1+¦ÄiE¤oñc«Ë2jÂEQʵ#wìÄ" J„ÞÅêbM)ˆdåÔIVaµG@ ²@Ê%r~ר8Šðavg´Ä^ÍPU!ó]\ IHr®äý’ü®æ =¡äÇÊe¯¬PE ÇÕð¦à‚7ÊSêy3 9:†3|îÈÍï aS~(Ä7×”aBª‰ç®æ‰ÚÂúc7$R¸€€±º&å†lHHm<ú£ šTRH¥i¨û}9B¨/·"7ûÏx¡üÌT& aÜ–ÄX×àÌmµ×Å(e[©àñskÓ4nᡉó…÷ÕŠÒz®˜hÑ‚Mˆûh<§Ê€EV ­QôõA‚ZJJãG·¥}z +–jyJµvñ§óá‰:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½[¤ŸO[y¹î=;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re§zó1Åñ–÷¸çjA-¾Z-‰„Mð3¿™û×–L¼¤uý¹?#íýĭתr¸œ˜¥gH™_5fZUǨ™õ½¤³æqhó]ÆÀ¡”IÀª­€¤S]ðpó&‰ïëjuƸ ¸Ù0ƒþj½×Ð:lG(˜iŠëõõ|‡ñßá‰MäCèœqwX=õ›Slyž[óœAŠ¦ô¯‰á“z J¿žv¯[¹˜·ëù¤2lkw$@ËÀÈçÞ¸P‚óÕM¤tqþ)Ћò¯ o{“z!«Ó´SA‡Û…3L˜ :ÉcÈ®ô®˜8[,h\d)ÁañEU%ž×¤î iþ(&=MN)N £’X +ÉyðXÅx\ |îDYÖmBÌj¢º‰íR p‰È7{ªŠÂ8s Tãq¦µÆÓ yÈšC3ƒYƒ¼ AmÞ¤°‹vRRa#!jFhS&ó +ìYÜÙ{ mù +L«ÝÛ2©¹Ëqüxô¦ÜÊ}±S»Ú•þìøÄWÒ ÿh¨ßÙ‘„Õ°xñ¢æ!q&hÆyëiøê0‡Çñ¦#dF ãú +ÛKs ¿àÂB4øŒ„nTù#ß!‡DÿY,3;3÷µ‰ 7Î7rßNÝÙùñvl,1žœF6 Ñ0³Ëé«Lá´VæêPî`<ØÉÈ6ýj½ª@pA/K²;lj°sý”KÚÔÔ*åV_ÊŠ ¶×ú $«·Î% #Ĉ‡¾d?¦â g%„ ÙÑÿÒÄCG L}'(J±FPÔ—‰«"•æ`ÄsfÈ€§} ÕУ?u‚‰#CKx˜)²ñßRÜÝ£âø+£„ò õ7@òkŽ¤ ¡`*KBŠ·³â8åšâ6‘Ðâ„Éòƒ‹„o Í5ù^PÿA÷-‰ÏÎ*rÿÚòQA¼KïÖ’ÃnXàK–IEˆ$Í™ʛ*„ðJ÷$­ÄSXÅå~á6}DAíÁ媻]ÊÀ gº;Bq þq·MA4pÆV3])BE$1 Ã#׿6N•0ÒDÙö¼}»éNôiÀ#á—lpU”Î…íâ¡F¢§D¤å_v~©KßAMÇåªFVÞªï-8¬Í7³Õœ£[Z0om›3‰ˆU+À=óCwJŸÆ˜(c h[H°&b êØŒwÑö+ó´¦ ‰’98±Úø²¼ _D+Òò*?Ä8?ÿ‡yØ„%B">v;UïÔDg­b‹j—gÅõ0Çc… ¶'*[‹Ï=ð_çs9‹¡=bô¯°¢ª¿ŸK ^së›ø¨îuéÏ­A_ÅSkVVj½^2Ý42Gì6ú#c°AbDůîw,=ÑŽIÌ)ÜDÇiWÛÊ5ªõšÅµŒ¥½½XçÉ…a¹†ã_a‰7â@:ªnF¢1¸ûWKÆø˜#)c“̓,Ë„°)¨ð7–Ééœk{ƒJ`¤öc½ƒv-Z\ÑlwyRúuAQ+B‰áE ¨jDd†!sǤñâW¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bpöÆ¥ ªIö¯f¦Øñ截¦|¡1¶²ÇV¾J †’ zûÕL'ôÌpéc<‰m@iy]|¢±È&AÏÄ¡¤bÎ, +‡ìXNV_k‚–I‰éoN»ÛE]Û-ÃøŒ…ÀÉÕeaoäÂHpK“`¬%eY¨·cQß<¦N iêíwÝv:C&L:4¬êh‚Y•[ý‚Âqk»´ ø8|ƽ­,öñ?®«$Ën†]¥/<Í¢ÎÓÛäþÛÆ@ÙîZU™ß’%@ÊßP]ðÌ„à‡žíD¾„kžòûÞ9í³î ¤ ‘íf{&bš‡I:€òw~ ØZ%xÅJVV$€Æ©æÑéB$³"­(éňäMšbÓ±r(ùŽõv1"5oíg“¿•y-ŸÜdP •ÃQ×%—¢!þ.äÐ.XÞI#9⸹îžÑ°f5-ÁæqKÿ,@‹çú¾¬“;žšPYÞ@ïÔö™fÑ-JÝ×›%ÉTç½[9»*ô#\Ô€þå.Z¦»KÉÌ£CiÊÚg96D +h.ÉH„aU*+Íã4H|úuI“è”I­›žŸ£j…Ê)1m¦£g-\dà 0c‘©lüqcýñ{ó„wÁ&¸y é²—ˆ,ÏRdÐSsÿðPÄØÐÈ%Õx¶5gÏoà¶-5/ìWU™'ÎP[Ç…›.¼iªYá5µ|}Þ¹Hæa=%U̧ žåhÅvlie¶Æs¡ÇûÒ;”Ž#&©:ù&Û7ö4 ‚ŒØ=$ž8ãñÞTQtÁZ„œòXG +g†k,áÓDr2ý ¨Aÿôúñ}å³FN4É@‹ðÛö¾±Âðч}›4GЗA}ɧØ:_Ådà0÷l:‚zØ,ÖÔUr8©¨CÍ +Þ[TûÀBËé&ä£tû@Ò/ç.äµ4m©á®,]Xt¹L¤`Êž§ÁÈ@ˆlš½ütc-€Ùþw:`Ð<Érec‰yGñuÜ<žœÀ嶷æñ+! +C ‹m«*‘ _L8ßQa1Ñœê%ëØžì–hXæ"tÌ)YÙQÌKGx/Œl/@¨…¨YôN³âø9·q·ugüÍ5Pñí MÓ ·ÙL{zM*dÅá4T’‡È(ÙK³ÑÛJ8øÓÓbž3@®Ziݹ#KÛj.zÏOMÆŠº¾”ŠS—:¾”J–)ûaT5¾ ?­toîÏÚ_ªÆ?ö¯x]*XUþG!úÆ¡LiŸM&Y*@ThjÃÈA_5*ª,šN’¨Úùì6MÈùnLA8@QÅó›Å7hí]Ú$øÅñ¦zÍœ¾À’£’šköHÐã|å•¢#¿¾ðác¢Ÿ¥‡ŠJã&7€ðŒ¢h(¥æŠP èœy ‰Zsøû¶®WàǦ‡™ç•åšŽýµÍ¹±Øpá½ûÒ2XI‘…LFŸ˜~Ç>ÕŸ¦£ÍÖºRƒ½<õSŒ!ÿùV­¡ÓD¹Ï½lÿŒ­̨È8¹(IhqÚùÎqgMÝÒ  m¶ÀƲªiŸýNØå‡Ä*z8åáÄèé›ôNջݽNËc'´Ÿd6¯)×.ÄÖûá»m×ä©E®[™;I>-GË!õL\¢#ãŒí7Îô ÙÅÕæ|}aˆÈN`N¿ Þá#éŒ%lÞ²$Ç"2•H‡ò'‘P¶â¹€º!X¶?á4§½£Ôî'丨réºaŸÕ(l{ñD$v­*a5@£×öŒÃ¹DwćǤ5øã}æx'!}kÕóÉ.¼ûéNwÓ  +ç-]<ÂPàÙ$nâŽå'å(ãèGúZpÅñ•!})biê65`±ºôboQVÀ^oàÙY¬åÝV ‘nµô£·¤Óû’˜kš¿Y»_‚UÒÐ$Ê«ökM`s¯ó¡D²ýN#‘,É‘gâteŠ¬¬£¸ªîêÍkç1dXAF8‘u1IÔQ7÷Ó´ÉÀïÓ™b]š#§9ÇÓh>û$gÒÑ!ªv\T Æe?é}.Ý'`›rEI˜cn(+Yk£õä +ßbس̰‡@„I—ÂÅkå8lVkû™Y‘µ—ËáôvdÕc“Û(‰•; oèø Ê‘ññÔJÍ6Ë÷ À`ƒQ×u磈ú™p¥J!ƒçÜ‚ EÏ#Dôþ¸›ûì2È<Þñ€¶dÛèËÚLS8;ü_Ñ‘ÈŠ‹Žîì ü‡G‡eúIº‰eÁtêK&C"{Æsh +*KSo-«A¬“¸hÙ™ºí%9-ñ§ +dJÈñ=W¨ï(mû;)!2‰œ¢KÈ +ý½úè0eðËu>ªÎ92èU+’®d~}õh-ÝÎÖÅŠõ_ž´ëaG*Ìâ‹j18K„¦³úe1Ú`x3#ئno”ßÉXÉ“ø]»Œ5ºÝ ™•óƒ%yïúò$ õû<óŠ´ŒDƒ2¶2lY,<>“öž˜öàü%mÃE·‡ÃI?\ ToÌ/,j鶡Ü|§Q9µ°Mø†êmë±y(ÈþtÏHZj¤é<˜ÚÇÕ""Y…;¸Éð™/ù‘²_|‰2ÎÝ€ ºeÀ°02Ä5ŸÛ9(4ÎeóàUî\™$‚RÞØ)rtÑXæå™ÞY/¼QôLòÊÖ}ª7Â=þ8Òtþ¶Ì[23x–ÝA¯‡®¸Eü77¿.8Æ{ÌÓÌŒT8S;"ACd’NO9ÁJºt"K»<øµô•b‡@ÒÜJÏI°•L(gHlº—ŠRò\èö3³yÜë* KÛˆ¶ëUkR.>¾sòhU¶Fp)Ã*Óܹq<\/©Ú!“¿te}=>P>ñ†þ(´Îth”á gmF¯¶Á1w®Ù«¥ýÔ@ÄP!/ ü5ô‡w{ý·Ø„} [Ú8íe‘þ:4dN èG÷ú¾5Q¨?ZÚé7.O·<‡škt"[|Õö’'†9ÛóØIb›uÿkøîrIŽ$7‚螧¨ –ø%€cè m¦UÏB÷ßÈŸ;ªŠÝ¢lÓ•ÌÄ'Â1± ”º1z —!þlýK¸á²½õƒ2¤DÚ0ÔÜfÝýýß©ÂûG¸šbÃÀÁQÔÊšyÀ¤Âgã¸) v .#Þ–>˜£Ì–õïí®'x¶ÝCÀ.ÿcF]¸ù˜#ô\½=#hüªnëÔï·uñÞU×ŸÏ +Éý9ç·wMÝ@i*¹9oãÀ„p¦åÍÕ +®û ±Î÷>¦ «—-æu¦Òú¼K[‘˜å­tß^^ôìÏJPáT÷<+é\?‚fº­~Š¾W¾­ýË¥àÈö‡ÎXÖ¿«¸Ú&1Ðbi ß®Õ«7 6÷^uÃJÍZ®OÖø÷ ’ˆ€)¸–BzqÌ»QààÀUɺõCä;È!¶™ÒzÔ<‘¤zX„ž¡‘K18fà¨ûÐìºI48xŠÞW{ó×G2çÑ´]û ©¾õ +Ö®ãûœç£’ÊH%{È`îBŠ«2ê|WîP!sî8Dtœ‚ïÙÿÓ_ÿþø×Çåqé¿òø™\¢âJ—Ìá×?üåŸE_Ꙭ¬ŽŽEuo—]¹«öUvç$™ýU|(ùûƒ<¥š ^$Ý€ž¨}ˆ²«Vs^×P%«’D!óG™hÖƒü¸ûû U®wyT…ºq­o7ød>F‹Ã.ß•œXˆ¬ÓW+L#FcÐö~N7þhÔåˆ+ +¶›?+L8ûµ£Ûj*F&v‰1Ÿó½TC•R•â´*ñÓ…†tiT«Î†!ö÷…„â ë™gZŸ&“ò(A([œvÅAPÓ°8gÔ¯‚H +¤{æú‰ª"t„L¥˜aî'wÖÙÚåöÕ>±¡̼%ªžÎ>±1§×/SS/×ÒÎW5»%Éà[]2Wdöôä #ç˜Z‹T€j}:ÈTCšÇ]¿>$ö2‡¡Ôîû4ITŸ6`Ð.·êQ'wªQÂ_kI#|7QÔ‘«3WM~DòS¡ôªß°ÇPñ¥4ç°×]!lp‘V¬é9瀰Е¾ôɺž3›úƒ`(Íš›O<„oÚðÍÑ9Å´îÞMKâo¸…oKk)‚¦"±™;C +¾*%…»O÷°Ú;=a=¥1,¨;ߟ劚éuãQγRž©®SøŽBª«ž‰UóÆd$S¥ž*ÿº07÷d:»—ÌP~Ç°$Ÿ«¹ÃÛ“›á…ˆªßgÆÕ¹ù^˳¬ÊŠw?òpªšÌwuJ1È ¯æfMzx Èx6KéÒ „B,·ñתS=ß©L‚0˜P[€âò '¾ï’ùÔ²øyÏÓñc;]°èЭ’i¤ùÈ£ TÓ·éæ{N”6{îÐÿW&Y˜‰ˆOUku·ßÈ9…ŸO™kË\§ûì—.O—ö{ˆVD~9/i†©bíç}Q¶x$k¸fÞQ)*0“…ÌÌœwá¹ßy`9kþ9s^?k#s=©#g‘yìž[rÑjñ£ÚÓM¾å-mWÂ!Nõ@‚‚!±´ªi˳k«cåÿxÍÅn’ÿ*l\ÈÔ›ïtÀÓqE©<‚©uý‘a6`·£bˆƒ°ŽQÞløösážåôÏI~@œ&€kôÀì-ª%÷ˆæÄ f=ù)LÒ÷®Å Ó(…ÔÇTNà|T†ýx’Jd¼TB¿­ ÑßïëO¬‚ÃÖÍí÷ +Éh¿ôGB&[†D3þ‡‡R[º(”v¯ +gd§ûrøŽ¢è,Šë—óV“!óî¢ +·+Î@R‹Š??  ‘žC…©óX×”Ãþ(Š† E.JšÊ{ãœáоΠ«º; Ö©ÕÚ!Ñ’ ‰rIoI 1²f{ßás;3GwÙ†l„Ó¾©§V Aì$Å‹Öƒ-ñZý¶-xî89ÙÌB¨Ž“D“ E{­®ù° ¼Ý"\ºãy®i‰¨`¸Ë‡ïb­'…ä¬e'Þk|t íåºbPJ«Z› µNK˜‹Ð)y´äWõ"ÞMH¹$f£xÔ.‰ ÌòÖ— Âôý™¸„>»l&Âû[󞪤“ Šð +XýqôöзþêÖ½Éã~ÛôQ}âqÒSæròi…$U2“”ud–p08kËFSÚ"Ô2B!©Ý8N@•W—ú¯W»Ì¾°ÔÎTwyWùÅ%)2¢K9AyÐHå¶<<• µÇŠ 3yé& +H³"ÃóÝIô»nšË x² ¬ãdÛ[5LèZ,9õ—óIU‡ +eYÆ‘ÓŸø¯HåàšÑ$õº)áûmXzlj©/'ýduÛ5.çË¢9„xiçÏA[+X¥0o}3úro¡ÂdEwCþº[.=³³²åj¯¿ã>)1I«ǮÓËc¡Ú$:LWW‘µ=NúR“ç8Å ÷úÇÖ€­‘……YUFu9ç¡‘DÙzŠZ‡áWáÏ2Ýi ¨G…4æùDJ#ÍqÆn="6ÝÑØcŽµ€ûj¹ëng’j9õã7º½äv¤³Em"®“èÏÂJ„nHCiè ãÄ››…Qà–8“+ƒëCÔ9ŽjÕ«½TF9H»Ðba¦Ã¤ÀkÑ‘åLm:ð“ŒÔu1ʪŸE•Tµ^+à,í"±‰“1npÆa ËžÙuž“tUyå !iÜÌNp):²0Î<é”Í‹m%^"j륰¹ŽâíG§å· +.5½@¯EÉffd—+3ïm‘æŠ ÷L"TUmè2£oÈÊÏ"ªÞÀ%EÖ#ø}LŸ QçÛÎE=P'Ão§P-ÁUû­œ=FáJéàW5ç¨ý³¡Èî ¡[ìÌ0AÆ‚!Jö.—i °ûqDEQ‹Z„ +å*žÚÀ°æYæt/2Po,@%ìý¥ëÃ¥q +É<–ȃ(9†£Ô5¶¾€@÷Y Ë%žÞE…Ô:Q[eܹ™²×(b«:$D‹ ¸ìÍ:æUât«óDÉË¢½TgB|Ezq!hfˆÐéΈð"MßN(Éb¥Ð6õ¾rŠâ¶!Q5Ýšw aá²% Ntó¶Âª#Sxÿ®Å.Qáûz¸ –‹t«è@õ§ñͬæ¡DQº$àMK-£IÝô¤©'­øs9ªªÓ*°‹u"[ù™-Si»™r‚°ýóÙ1’L£¢o:ݤ?8“­Ë| Uä*íåFBT=)s)ä‘ròŠŸã­ÕõL‚ôÀ…Žuùy5ØP¯’8…%|±èvQ +/[%¿]ÞÖ¿vÈez×̶ý$9¡º&…÷“SKj_q}ùÖê‹˸݂ºîˆµ»„ ¹ù¬Ù«ÁËI£ ›?×ÿ²]®· Ã0^% l=7êþô»#UEA‹"÷(#c#¾Ù¬³õc>ÚÚžmÅS{Wˆÿ&Æå$Œ°(IÉçµ ½íìËk+œ´‹¸½X€,¬Dkž¦b'¨®¶Ñô=ÖýgVÍOEÔ,(²ü(8ú n²a†®Ìc2×FääQP<¤éžñY g çзÓQ„êWªãÂ|¬™ÃNI-O×2‰š 3Ylåõ‚¨ÅÇÌ`¸ùOXooMÿUõÉ<§Ò+Y·CIÌ_‹h¼€¶œšQq ^³äÌôÓÑÔ)Ý(o˜¬ÔÁ™÷ym=£Žù„'Pê}|¥Ç±q-»¼„Ð<é‡Ô=ÚÀQ½¨Gw$…)õ¬Ÿc—ĶETž+iIôE2V?Uín™sÎ7ì.zÖZŸž#JŠö'SЯhš_æ þ*pû þ‹\ê9—CtüŠ^ÒpÛjt±•ëY¡ïZrKâ¼o… Òýk Õ•+hixc 'œà½â­Ò+´ÅÖ–Â:lYû +ÙÓ–Úˆøò¾} 0œ¢Ü& +endstream +endobj +46 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 216 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 34 0 R +>> +/ExtGState << +/GS0 35 0 R +>> +/Font << +/C2_0 131 0 R +/T1_0 132 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒMKÃ@†ïó+Þ£^vg7û‘@ØmÁê!{‘X°…$¥è¯wôæe¾˜yßgôÕ0½õ»nB]ë{èÛÝÇñ4¡iVëZeÒ©et# 0vÒ×Ò¾Ž¤³ybæž¹ƒ„ód‘%}Îõ€ ¢—Š•‡«*b`½ò>Èí;]Ü\æ=m2m¶b§ÿ“Ú¦MwÄ¢z†ÃVöxxd<‹H²?dff(€ÞEÜ·½-y±¯™K×ü&øû­`*[U ±±Q¶€W†-†êéK€xI¨ +endstream +endobj +47 0 obj +<< +/Filter /FlateDecode +/Length 1074 +>> +stream +H‰ŒUïoÛ6ý®¿â>šÀ$‘IY@` i’¢CŠu‹¾Å (²ãÍ–3ÿX›ÿ~wGÊ¢¦ Š†²HÞ½{ïÝ)·Ý/çM»‡‹‹ü7Èo›çÍa³ÙåÕ{H.ëD‚Ìtañ¯1lIþáNÂb—äµúS‚‚zž¸¬Äø¯Ì,˜ªÌ¦Î8Ð6³Öáu2Q¢þ+¹®“ëOõ ºÀÿõm~³–pµI~OòÏà¶é0éúôÃ¥È?½ÿx…1#(™#e¡ñïTZFƒ(”G‘ÊLª)Ô-„‡o`4ò¦6“EeÀUø ËŠP}™è̈T™¬‚‰_ë__ƒ£~Ê bÑ;`±„%¿{jz ú®ÝšUÝ}ß_Ü\ßÜH)«ÙlUc,F¬ (ãGw +yL$A”YQÒáú ùC¤eæ«H j0Yö‚«Ú ›üZa­0YàC¦a²©£ß(h/P¼noDjiíñ4.ÐEÛ»ðó³(ý]¬²äX…öÉü>^çdóðû“àzÀ$ÎGQ´Ç+ºÖ,{„›ZŽac +e3åSjÌÅ1Z1¥¥{“X:+¯k9J£ƒ2š„QŽ)W‘I4²â\0ÉÝ“+‚µÆKpðAUDâÒŽˆ†þü&hÅ©(=üM­¥¨µ$Ácœ†*B%æ"[¾Á ¦Gá(ÛNhÒÕÔ¬C/4“¸GO°GJ¢–ÈžÒÃV Žjñ¥ .š•Z +5õv0ô¾Ga—?‡_aŠïÂT"%¥é +é£éFEÎXß ÅΈBW´ßpnCK9ÐÐ$öä€wÄCØxì¹Pâ–œVzOÑ: e8v 7§¹¥‚eÉ™ëðó Qâº"PÈÛ3ÛÄÇ7ƒwiÝ„÷m€½ ­0Öi¼MS<€ÿÆÖgf|`™øâ‘R)QÈÛiŒ—¥t¼õ‚tÔ¹%þš“é*§Åíf+¬n°[,%\‘‘Œ_iêv|Y‘`lË GÊh`uf-á·¢àÑ’’ÑtÄã 6«O´m¢„ƒ§ ¢ÁÏxÿIé®"Wà´ê/h~<ª¼ÙU\Cáyïs +Ã]Dƒ ^ðö„÷øºgo5(¿üAòè;„Õ2VUžX† 臮ܽåˆ>¶ 5®|±›läšW²zÅ@¥Ëì` 5é¢øÛS^ÏpßA4¬h´*þzè’Çv4´h˜qyXÕ‰õÇFÁî²Çáç~à5azµ$Õ(ª³™ ù+~Äì;ä É2Œ³Ö+µ«ô#øÌ#þ5KÏ_AÍÑÿÎ}ŽU¯9‡Çëyžqû¡±ÆíÑYÞÄÿF$i»”è¦ÖŠ{»É#nñÚ&Äß &ì‘`¸¸FÓ¡Ùà?°£8l +endstream +endobj +48 0 obj +<< +/Filter /FlateDecode +/Length 963 +>> +stream +H‰œ–ÉnÛ0†ï~ +M VDR ‡, Z´@QøVä ¤ÎÒzƒ7õÛwþ!%Q–¨…²Hj8óÏ7CN?®§£ë/—btúUœ~.—b<[Nn.äé—ËW"ççW´àb:Š£8Ubú*”1ýèQ¤Qll"ÒLGF%VL£ïãR,eY²$m¤ÄøUÌåD¥büLDŒh6ì¡—ñB£žüWb#'i¤±b’ÁÀ=­ ÇŸGd§¢?æt†ed@§ørG_ª8Êý”qS¶·e0cäYÒ®dl%Œ/EÉ~ÐÈRÒ6dî‡XËØyª±O%ó†? 献¥}Ã*ÇûF¬$ý+(úaáa"Œ‚lï(8VîD<È Êzå‚}OœÄdb.µÂë®UŠ˜6’ÅÞÂQëÝ_K…\TP°j/œÉ‚]5NêÛéûÔä!5]b[Dqfu™ñDN¾kµØcÑa1)"E¡2Š¯Ò¤¤Ì)ú‹"¤×Ôäì‰ÔgríþlH©©0Æ%.…ÌO’Òà¶) ¾ËÅŠ”¦Ü<“‘ò'1 `G…Ù¹ •£Œ“0¯3¨Xñ )/Æw@‘ÏÎQæíQÀ`æ vBXøg -Ç8!áPµ0xPé0o'Úúr¦Ÿˆ½·dÂ5>a)2ÈA¯¨ôiÓÅT¼Wr³·w6pJ£L¤bƒ¶KKq¬sÙ–DÎU¬cÚ[ªÜUº+±×¼ÁÍù¦vÑ,1Ó-_ן¤å‚Ä7‰Fè I­Õà>0sEîù©¤óíýF¶–ŽÊª®jj3¹ë[ºåaƒþ•ñ3Å6͸h¨€½Ê:P¸Þ¢7´0ôsÔjÇã¿÷¯]Î1ºë „<‚l y»cÉÉp=K;éu'§ ¼µÜ!½†ôƒèQñ^³ÑGð!ëyÏiøð)½—÷€Z=Ù‚ûµÐË'pH¯Þ"…eÍÿƒøÅ3›~=ò3É'Õl&¾52sC]*µ‡‹éKÇRŸ˜ª“ýÙ¤¤Í Ï—úË[ +󱀺ÄCÄiÖ5Mò†$±X@(<Ñyp7€!®ýA|©!Gd ×°’*¡CmvŒÚ˜¤¬©=Xt…çS kÉ ˜¯D@p›5–ÑévïnLôVêÛ+ܤ2wfÃÔ‰ÛuMï×¾§ê“Î厚w˜ø¤iHÇOíâ°ð¨Gé 3¦Ø·Ã7€]}èýåË|iJ'¼Î¥G[LÊ׈[ñW€Æ=‰ +endstream +endobj +49 0 obj +<< +/Filter /FlateDecode +/Length 1041 +>> +stream +H‰”VÛnA }ÏWøq-±ÓÛ^$„D/â"*”7à¡ i $iI …¿ÇöÌÎÎæ"‚*u7³žñ±}Ž=Ó·“‹éäâýLN.áùó“wWë[(æëòÕ)ž¼?{sÚ‹§çdq:T0}­¡¢?z´^U¶sà:­¬ö0]M>tÊ@q‡º…b‰Z+zÎa¥vJCq›9½³Í¬U ÅOÔ†Ò²W ¼‰~?ÒI^–åóÔrP(ÀÏÓ#€» xYR7F¯«F5º®Á5Ò=ü lÓ –]x'áH ‚nøÃ#P8ðˆüƒl>…Ó²é=ŠÁ=JØr@Ó@ö´±$K:ë+å¡ã$ÑŠ©xeÃÖô¼²^Ó‹çJNÅç,ÐÔÊ +Ž°eÁòŽüÑúÈ£g70%ùN•r1#ÀRªŽ­®‘ŠM.ÓÁ²#F3Lù`8òìÕ–>}{ts”’m¸t-ƒ.%œ[ +$¿~œÏ Wq!P-Õã;¯[JÇg>Âú,ˆˆ'†¸Ä<±êH6ù\ªêì)ÔFu=—ž’µI9—ÜiÆ'çñö¸vSc9*É`’ʨž·Ýòd24‘’sQˆöÀj4†ó(EmY$ñ6ÚB¿§—<²ƒexHVÛœ0|!é‘pDÛsøÊP…ʶbD¿Ðêð…©K/è!B¿ÇÀŠEdÓ,U.¦jÙCè9ÐS1Y|G[†¤gM|4"ÊeÂDÑçq ™êztX&ÕAKDZ¥±E›æ[ëÙ’a7y´¾×li6)IÊEýÊ4ªÍêÃÿg7+8 <ç*ýl»Œ(-¯ {BðC²AÜh숩}»–ò)rÊñSz½´B c"G¥WÝþžˆÆG4=·Ëž¶ c{,ÃË×þ¦Ê,#+lêOKM>™"ÍRÚÙD–'“ãˆÓŒÛŒîÇ€ž8³*ž¸I%á%_N‰ŽlðÛ#cV"Oú¢„}žÉŒã)ËmMnh^z®“Öa†QG±ì•I îV×ù4hFéÜσC2Ìpû¼Á‡{lÜXm>ª÷ ¬ëT¡8„QÔwx·íi'øÈï”è¨ÓrÖþ··ì^o«ãÈÓ¾ª¹®UUÝ™œ9ÔT¦ßþ}j·u2(ÉÝaèeFIÜêè21¾uüó:sg¨›p+ 7ÊnÜ@ȇt,Îb›»Ü¹B‘ éÏØà [L¨Ö0,¤#¼Œ¨‡.9öp€ð©@/“ï Em—déÙïKô²÷¢a(x4 +ŒDD&OI™’΄´T­ƒ>Ÿ0ôÃí÷P*OSl ±}ĉòþ +0ÆVˆ +endstream +endobj +50 0 obj +<< +/Filter /FlateDecode +/Length 1018 +>> +stream +H‰ŒVßoÓ0~ï_q±´d±8Ž4MbB @Êâ¡[Û1D»©+Lã¯ç¾³“8[WªIsjŸïÇwßÝyúnòz:yýáœ&ÇŸèääøýl}MÙb¿9SÇÎß^)éôôì‚%Φ“’¦¤5•üÇKÕú¢t­¡Ê”…Õ5MW“,WÓŸÿתS­EYÙ±f_¥m+ªJWè ø[6Wy[Ô”Ý(ã +CÙVålW6´Çz«ªÂR¶V¹® GÙ=-•Öá„׆² Íè×+Ê.”-)ûLwŠ¥Yf÷5D=”_³ß\ee3Þ°ØX‰Y‹p² œi^ÐZ±˜˜t8ÜÒ Ë\³)ãáÆ/•—Xg0í)»bÓls¡,‹Ñf¡ ~‡›5"2ºhq…Ÿ ÕÀ˜¸˜:ÈqÙ÷ºWbý7öYÛ’1êë“[º‚“>.z €¥ÌÈC-ñÈ2PîZ‹ ´8hQߧðÎ$ ae¥õ»)b[†¦£üi$3nOhà‘Mëà¥MH_ñ‚/zäwHÄ€a®Kˆ&´X{*$ÉËu õ”ô®/ùˆùNé`e×ÂVAÓéL©þMbÍ¥ºé«Ê´|òîY R]\¦‚Ào¬ÍAu¤Ê‘¶]2{ŒÒÂÉ’)Œ­*©‘zOˆñ¸u &Ò*¸»Zå +Ê>…¯|‡1ÉŽ{ d7‘š¦h:" <¼ŸjDÜg³+·X“Œzt‘dì­KÂâÞÀ Øþˆö€x ˜jqù#k pDoºÜ­#Ä¿´ ï~Ñ+•W‰¼:YkÁvu‰j 8j÷x#ü¾ÒpÓÄFÉžJ‚•« Ûp® Ø)k௡¤¼Ðæô53B*@< „;îï5t=Ú »s–YñÚȽP·Bˆ ±¥ÚѾp¥ˆâOuÀLÈsà¬Ç¬4/L@ëxšt¬|9/ÆþôhFò!¬iÒG@7íOZØ÷—€Ï"-ô¼ Z(aÙ˜;¬Z8¶»Ûj4‘-“û{¨}ÖCãèz½ÐFžLàX1]رÕôTèÊÄ •¤ƒÇÒh0¬Âa;èíGœ8«Ó†¯%¬ë¾”£ºN.é*¼)nƒ'¸ gšÂ÷ªo¤L¤àÝ€|z4ÿÃHꞌK÷Ÿª¶{ª}Ëú¹’0  ó¬ÿÄeÛèTõ0nîÆÃ36ñ>,]…4(ŽSP¹ˆb ¸Š<¤0ñ†£Ø› Fë˜öˆÿ²{E·Zl¯v /„è#aF±õŒÅî6WF¦À<²~óŒUÔÏ.:íÒºØ1ÅF ¬Ã³>z¢¾Ó?§rx +endstream +endobj +51 0 obj +<< +/Filter /FlateDecode +/Length 964 +>> +stream +H‰Œ–ÉnÛ@ †ï~ +5@¥hf´AYP¤h|+rpgi½¶›4o_þœEãÄNŒ‘¥™¡~’I¿.Æ£‹g4:úIÇÇGß'‹{ʦ‹üë©:úqvyN¦¥““ÓsÞq:•EY64~!­©ä?¾tuQÚ¾"këBëšÆóѯìFu…¦l©ªÂR¶P¹î)»S¹i‹Ž²ß×”=*ü¿QyS4”mTÞãÌšTYÔr¯;,<¨¼Æu¢Lkšð’ÆÞÕ”–l6Ù¸nqªÂá)Îðí‚ž°^ñV^0P^fJüX)¶$ÆQS§v ŽÝzQUÃ%h£»=lÌa‹ý}R¦ƒˆÞјHø§´…]²µ”xÛàlp`+š’üÒ²bñ'$`Ñ—Gþaà+‹“÷¼÷ká_(Ýýˆ¹ËDIÏXy`J,Û¯úŽÌ‰é¥¹Ê+,L”U¯½ä;U!mêj|nÝܺ=¸±Ï}Àm‘5é»Sα¥_Y)‹ý7NlŒ6½K0bØ%øhÄáê`9#a²xœk¡*lÈGäÓkb ̘O#ÊÀxJ‹¤'"ésÏÁ¦Ù.Eìÿ V܂ѱóÿAÎõâ”[ZƒYÊ_ùR©'%^&5ù /"ÜQ+‘9Œ’>¥d!%2òY›¸žRš®·µQ…Úh¶jÃnÕÆ{x8œ¥OjH˜´9K²˜DH¡á…Œ‘(íqöÎu¬©’|®¢dpÓ#’‚¶MÑö$0„ر»úKI¶äŸ³× Ô-¶%2ÞtzVÜã]…ƒ­`ï¤DIo]\ <•ï;qXúú\¹˜µÒî+2g’ïš´Æ8 Ö!z1¶Üê+†)Ø¢F—-ÓÒ4ŒC°I:ô^©Ï[„˸¼XèÞ(qqI® +Öªsz9ñ½÷â)6‘˜(qjóžœ`Äu‹a\ éZ|ë§Àβc´øÖ-ÜTCO‹Ytô qæ3Æé í$µ•¶W‚ÿª½+ÚÃa8’² °ÅåÚc+Ó³ƒìÐ_\% [”L•­Àø&DÞʱÃðÐûJ]²OÖØŒÔø÷çVÍtºÛ3ÌLËã70·ò&h$hZâëòÞ¥Ÿ/ŸåiGO®dä¡ã è‘¸ùµÒvËpL›5ˆ +Ÿm“ÀY`x;_+L$7ØDr2¤©¬wÌèa¤¥vœ¢HOIFfåª&—óKÿœ;Š\eDºÚñ…—L¤è³/œÆ쎌„Í0ÃÕý`õàf +endstream +endobj +52 0 obj +<< +/Filter /FlateDecode +/Length 911 +>> +stream +H‰ŒVMOÛ@½çWÌÑ+aãÝõ§„8@PEÕJUå[ÕC I%´ˆßy³Þõš$mÄÁŽ=ž÷Þ¾¡û<¹é&7_¯irþ..οÌ6”,6é§+uþõúvJÖÒååÕ”#®ºIžå…¦î´¦œÿøÒ”YnÛ‚LUdZ—Ô=M~$3•ê&+)Ù(~”ÜÓP²UDɳ҆’ߊcZJ^T…ËŽv|SS²RÚâ[•ê?•É‘jƒ×^W¸¼Ò3'µ(•ê‰8Pg%ït·àœ rJ­µ¤`‘ɯñnËTxURh¡Rƒ÷÷„1r4¼ä›: +÷[Æ”[Pd+qóÔ§Ò͹™~èWR›­=âCJÖ‚Ø\¥ýt+•–¸›áI ˜xRl•®‘.”QŒÿÎè–V(¸‘–8v§\˜£ +sÌXä»WFp9#õ³;AE,Œ±(ÊœG·ÆƪHHu¿þŸµËÍš#r+˜k/·m?Éš10 ~ 4Ñ <^ c xš +8½ò79¬•ãÒÓ#Ò©b™“ŽðtšxY‘P©@øen„…µ‹ ¬:©Åšìû$×+ç‘¢YD¯‘E1;eDg¬!™í²ÚÔKŠ‘MKÔÊÐW¬ñûNÈ•ŠÌ#5ÊQ™;„|,y0|I3š¢iþhª¬}?QbU$†”ÕÛ#j°ÜƒWà +Îlh™9¦¿”ãÄDÉ1f6ËX\3ê€"&_!Æ¡*ðîF¶kC²R©|Æ¥$b¦¬EgïÚ½´q”òYl¤@ÝŸj§‡¬ìÍË)p›ºQ‡¶•>¬ôˆ*ï2hu¤Ê!‡FnCl&vúܱ߷ÙJ‰¸_ïÛ, ˆÞ”c Dônû2ƸSØŸ¤­ðÕ¢íÓ4TŸh(쥗º/ÐÈ‹ÊGNépòW2ÈÒ©c8ëÑ2zó Þ'rßÂ~híYYl˜Iª¬×´_W-2/ÝŠ\ XGKÅ»"{Šõ‹ÉDžÅP´±‰q½\Þ™k)F{›>@÷êß –xø"ŠøH|éa­FÄŸNíéA½ˆ Ó”Ó_pA59K¯š°ßùÜ»zÆô0¶Ñ¢ŒVˆxƒ9C bçh¼÷°µÇFþjAÃ?m{ÿi"5.{_ µÃJuæÂ¥MéÐ_Jq[­Û}¶®Û]Y#Î!3FŸþ +0]­3ö +endstream +endobj +53 0 obj +<< +/Filter /FlateDecode +/Length 963 +>> +stream +H‰œVKO1¾çWÌ1–êem¯½»âÀCU«"õ©‡ŠC ¢B‚’¿ó°w½yZU"©3žùæ›of<ù>ºšŒ®®/`tòNOO~L—0ž/õ×sur}ñí\ ggç—hq>•Ei`òÆ@‰ÿðÔuQ›À´®0ÆãÏÏ£ßã_J›¦0~T¡hÑ£Ò¾¨a¼„õ\ÙÂÂx¡´µE…GÊ2ÙªªðdYÆ쿬•1ähªl(™i[’áB¡Þ_á=rÕPˆW:G/ŠÿTädENjr¦¥Ë[Àø¦¤³ ¼(ãépÆ–ŒXã7´àÐ eKÏ”© ¦bés3åJúöŠ†•8ÐÆQ¼,9 ‚.€`ºxà)?½ Þ ¸Ã|¬äǵiÉ÷=ZÖ„ï O„ü{§t @[¢ ­¾`‚‘0$&PˆG…à‡´ t 7œL9]oÐü¶ªeˆ n& ¥*‡Biw”Òø¢tm¦Æò dÖɆҷ©ªˆfÝ)¥#ŠÑl +J±Ywo_;=I†8x7D—|N^Xdȱ£ LbNIªŽ­0pCìR䆎4 ¤(AœëVDá3¾™Y‹ÏQ=¶Ø\vp+:šÎ:öÄ*„G³VW‘ªÿ Ô»blÌâ›rû1‰i9ÄLYNt†IìÂŽ ¶^Ÿ^(LÐ"’{J¢«Çšº§ÎøSÎÓ§&€và^T˜Èù¤Í@„Ƹ#" Ž­(ÂAÁdæd%óÿR2%3¥€‰jK)ÉM´MÅ|¤%A)]$ªoØ?%2|§šÝjÜüˆßJ ¢nRY;=|Ðq!vœÔæXϽ“H*NÅ‹ûY³ã~؇OxÕñ•<^Å $ŲMš_ùD”ê4¢y[QR¯Ôo6WèÞÐÍ8ÜþŸT‘ÍT¤iéù#2òXž\Fý♎ӄº6퉬70™Øɲl^hpé°ÄM/ÅCm7˜d¸§“´Jð—5.46›¶wÉ:‡¬®©gSùº›Ú‰Âj™¶‘UcšL´®xÕ¶K•ð:úbyMc3I,“ü?LŒ ëó'€cÎÞ»eš‰ŽNŽÎß*qßcíWëÁÅÊ©ñjõysNDn8Šl}DCyHšÈ°L ý˜Œ¯Yøü~ì†Íþƒ$±ñ\XªÍŽTÝIµw•ä·s¸Å ažÑÜ?šw¿´¨Áûzï7ôÞãl¸Ïú×"Íry>ÉšÎÊ[fر—1¶Çv÷¬ªø+ÀE¶_î +endstream +endobj +54 0 obj +<< +/Filter /FlateDecode +/Length 438 +>> +stream +H‰ŒR¹N1í÷+¦´%Öñøص¥ˆ"€$Ší"Š„K ’ñ÷ÌØÎÁ%Ð^ÏñÞ›çéΫ“®:¹<‚ªwý~ïb4»1Õ§Ù»<:;çàðppLƒ®ÒЭ4}t¸”n¢´²è¡{®D-»Ç¿Qýj­•6ø:x¥mt€Æ(D = Y£j@Ì¥SÄŒ®žï XK£9t/-ªÄ;ìj#ž%¦ÄdM ŽÛI²˜È:r݃ÄÀÑ7êCåS ªÈ6A¯F)ƒ žèGgÞ‰4Ô3²™­ác Òró¼ÐîHa óÊò‹2ê™R‰2Äw”œw\F]±<|!:ÒN$¸ÀzË8Ù +W¬h¶V´?X1–7ñÄHš†£K6Æð}K`P…’@žþ‰‘K7¹’œ2l¡-òºûÇŠ5¿¯Øvt«bÞ°¡øÑÁö«ƒ-ûÄšò ñ»‹Å=»so¹y¨eM$´éáh<¢Y³É(kün +î=Y64Áë¬ã¥yÝ\Ù?Ÿ¤^±³µç’§AŒóÞ“Ý–ƒê“½ð!À3=Î +endstream +endobj +55 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +56 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +57 0 obj +<< +/BaseFont /IFMWED+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 133 0 R +/LastChar 224 +/Subtype /TrueType +/ToUnicode 134 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 444 +0 778 611 709 774 611 556 763 832 337 333 0 611 946 831 786 +604 0 668 525 613 778 722 1000 0 667 0 333 0 333 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +500] +>> +endobj +58 0 obj +<< +/BaseFont /YBMWZX+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 135 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 136 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +59 0 obj +<< +/BaseFont /XEEIGZ+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 137 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 138 0 R +/Type /Font +/Widths [233 0 426 0 426 0 426] +>> +endobj +60 0 obj +<< +/BaseFont /JEBCSB+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 139 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 140 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 307 207 0 +0 513 513 513 0 513 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 492 0 0 0 0 0 0 0 0 0 0 +532 0 538 493 0 647 0 0 0 0 0 0 0 0 0 0 +0 482 0 448 564 501 292 559 555 234 0 469 236 834 555 549 +569 0 327 396 331 551 481 0 0 471] +>> +endobj +61 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 660 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/C2_0 141 0 R +/T1_0 142 0 R +/T1_1 143 0 R +/T1_2 144 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TÛjÛ@}×WÌ£Õjwö&A4BÓ”–Xo!”àØnÒ4)²Ò~}gf}‘ÚBãƒ4^íÌ93{ÎVo»þf~5íao¯úÕÙÕóÃcûûG‡´™†ôûÊ‘Bëé霅ó“L+Oàà}¾…‹K ×U' ‹eVâg Ú9%¶SÚÒ>ñc FÓë' ´ÔR»ï¢ +Î@¯°Ö”ö-ÛÓºvûímvÜfLjMõ®†Ý"«Z³!¡4:&R®"aÓAPÑ ‰HÝx4*×¥£9%*„\ñ»†Üéâ²=}9-Fä–h)x£šÐ(£]dT´¡N¨gEij†¥Wòðx ¿£OîFc{ ^À7F§ý>‡b—ÁÛihZÞá¸Cžƒü¸GEôï)<Î)Ò&"¥çߥqÚÑË +íXRà8xŸŠÒñ0¸LÃõî¤^„üfPÏÒ‡g¸Z¯ÜËʺ†IQÆTÙ3DW”Å[‘wô[2–«.(мãÖHsàüÀè_Ö3xGk†OçH¨ ƒs)BÕ'»Ë×$ùŽ&l‘xÔa|`»X2µ![“a vŒ`ÉÜ›Whâ/ZÞZ£ê[¾YAü—å¥÷›>¶õ£ªÙÊ£òÚ¾òFYwEGƒ›ëí·kÄ:Ÿ ‡8‰%?ŸôjVF*‰R|>ýÑ^Ê •Í*#™Æ•3"ÿO5|²r‘{V}Ã{–ìTM·¤wɽHÙ2Äœ ¸Â£”Šb6#Úî…G”üf‹–7œ=\0µ Pä•™ ø.§ì\Ç_†øcÀÞ“¶½¨Âc€@¾EK7–ÑÝ,›NÜß᧰9úäN²_ #Ü„ò +endstream +endobj +62 0 obj +<< +/Filter /FlateDecode +/Length 5161 +>> +stream +H‰´WÛnÜF}Ÿ¯èÇ!á°»É&¹1 ØVÖÈÂÞ‹=‹}ð.‚±¤9¶,e$Eëýú­[ßHŽD%‚XÙ¬®Ë©S§Ö/·ŸvÛÓ[õìÙúojýfûíêîV=þòä•Z¼Ü,*U•Æ6ðo][uØ/Ö¯ßWj³XoôO•Òj³[¸²…ð_[6Jk[Ú®é”iʦqpàr±4ÅæçÅ›ÅoÁê/`tÿoÞ¬ÿ|Y©“«Å?ë¿£o¶_÷jyþuõúe±~ûêÇU·¹/ +¯üŒNhvb#>T¥6­ÚÜÃý¥Ö|P+m]Y9«ZÓ•}ß;tæÃrS¬t§–…+{¸®0¥QËùº‡çºtjù ~iÔò‹üPÏÕ¶0UÙªåYqÕøsÕC´pÔ¸Òªåm±‚ô­îðÅUQãó¯ÅªÁÇ[²­ÑÚ)šÅ#£wþ^ø³CÏà}‹64™Þžß€Çp©MB‘ÔMÑáwè ¼¸.蟽B+pè—<Ä®S,+c08ºìÕA²“¼2äÃ-sxc‹Žï1£øË¡à nK‹:+,¹~Ÿ’)ôÇÀ¨~Cþ³ùK@ÑQÄtb†ˆhЯ¶Ï±\¥ðÜ]ëÒ×îÜQ‰"05€bén± „=|•‚:HÖë«h)ÕûÌõ‚©Ž0…ÇUzˆ*üPÝÔ!Ws@$z +€¶è!uÁu¡élè£mÀDvw±%VºÁ› ÝÐg_'nÂÝ“ˆ¼.*vœâÚʧìÚ9¼"Û¿”DÆxˆå;xKÓÚŒ Ipë7ÌÎ\ý‰¼wøå<Àè0¥®ëVN+èø¾o+1k·äŸ‹£ò*ö\Å&c«ùQ·˜xJ9:K#e ©;4%PÄ'¿Õ4¸k0˦ÆS·à©ÆjÜ{|x)øŒ™¿.˜…±òÁŠ|_jĵ¦ÆL^`âÿö®‰‘‹ÁÌ7•ñ6Ò(;´ËƇ>…¨“OJü7xäòybÑê%¥•å´ž–:è»™1Z³C:ñqèd›d\BƒÆì +‹iÙúNÜajþt’R_¡ A¦“|ý:˜Û?è¼kœÖK¡–QºñzC=FtTª©ñ Î(ðäòhˆôä[Þ‡h*å­Fx«N¼ÉDÆ4äÂ8`ÚÎû/ù°ÃÓž‘lX +ï +Û¤'5AüŠ¸hÓ<&(·yŒX’iLÌuã™ÈSS;AÐóàg3‚ªpGÐךRôE‚úã +ŒvBCMO»›‚¦ÑE;:aâÿR0Ã%œ¨ÌŽ«:1š2pÐ-䫱ó½kE7`œÞ3ÎT ¤Xˆq?F¹J +"m¬IPþË +M¥•+ó¡C”< õXÏ¥b®ÖËÀ1OÍ5ÍwÇ`×´Éæp=æÆôVaÕQõƒ«€nxvï +n¢€#HúJ3n K]F«*ˆwÊó—ðê1‘òÝ-5ôIàyÊdá0…«þmà|èøʤ,0ÕV)ýL ÀŠm2-5D~PâîAˆÊ3€'48Æ{=ùêûS¶¯õ²¨-šoÍLsƒZ·ÇЄ¦š†múÅààNšqÇô5ž7†²ô‘òçƒÜ‹ †âXBù¸¼ö €f[©~,¬e±œrX3Áa¨†YÈɲ*@ «>²ôÍåW'ôËWGM ÌFÿ'¨ŠS)E¾@‚„‰)—F‘Å)¸ïs"üÏ${i¶ÎOŠ&ÕóG± ÁGHÐý)È$>4mN@•9†Ó'ʱnÍÁ›«æ¨øjóT¼Ó‰Ù ð6KÔ{˜Xq#Âif¨÷Œ¹tÎ\òvÂ7Qæé¶s>&µ$#ì e/Z®ð螶"yªÐz&i½h=Íñã¤ÎíaÓíÐê="M»˜×’‚£-ç 3 a|Øþ­k«ûÅúõûJíop/AÊ%²p}c5CJ …]ª·è4ªªáY"-j!ê^ݹº9Å*±N3LNMÜ‹,kdÖDg +ÓØ‘HÂ.)™FÈ¥Üê+M¨`ªÞhå­¥7óòaó|`Ôê3&Bc"pDXwdD4@9U˜£”l¸æ‰" +º¨„²:ÙN(¬3™Þ `E£©D­Φô¡4m6þ¶Ñü¥nqkšhºÅaØòJW/€Û¯S–@|'Ø?å‹Z‡=ˆ÷G|O„kNÐxÿŽRŸ¾W¦ p”8þàFÀ! "µo°ÙC~%œb_€Ñ¿ª¸Þñ¸£‘7¤ÏaÌ +u<’†y5³“ê\‡B ,©]¥¥s†KšB˜ølkJÿƒìE;Fö3)5*ˆ>¤ô˜~Â#nC=O_Ls«–ú‰#.\mæEP ¢ ðx›šRÞ©¼Š$¸¢ø’ Oša'œ:ß$ÃÉÛa¢šÜ"ºÚTûøù)º¨SuãcòãÅ÷Â,,5,RÝ›Ò(Ý ¸L‚‰Ž“Ì´X®šb«¶ÈÃ,YJ“©‚˜uë¯ñEa#kÒx<Œ½¥^¥aåhXQßÌücqåÕ\ÍUŠ`Η¥ÇàÌix¨Ùµ¸Ñ$ø¨GëБ väÇsÙ‚´Û#…<âO=¥]%Ú¼8™ø÷LL¹ SUulŒÕ-ÆXà§]ºDß%[&é/Yéÿ±mqQ!šÝ×LH³ayîéÁ%ôÚ¶—%Ë´œlÙ;ñß „&û–æQ!“õþ'Af‰†b•áh@Uø>uáf‰äÐbOÂj‹€¹Ç‘[Ç!‘8 1íñe%¢ÅA€‚Æ›cB%±€_B_ó s¥“úˆ2i¹]³Ð`b6²44Â|Æ3@3f€8 ¶$6z4œH•I«._­Ô.øÓ¼ vsÔõú•ù eæf·è)¿½Ò཮­êPßR3>«ªÊ>Ÿ³öɵÁd¨Xn²«ç˜l«uñz³‘€YúḂ a^œècÊ V¼åæ¦ÊCMœ'~RôDzÙª¯bÇíX['pðUõ[î`<'ÂK'TšØkÇ®b0ÎG²eXš×ÄЩ½’‚Ëðî£IAy¢3dÈK‘c“–[5Ù“1¼EPÉkSÎï +³ÐÞê#¸)á 9UòË$"€ÖM@¤ÉóÙ4”îËsYî…m¯(À×ÏDypDí®ˆþà·ywR0É¿ãâ{y=/óĆ­(BŒnܺÐpÕS[·µ¶nnrfëÖ3[w¢>É}رM—hæ;"P-Ã\Ç•»V'Áqè[~=«Ö¹æ úÛö\ÝYem~/Ûtë“‹é*æÀäÌb¶¿¹˜é}–ÿ*jÊÿ'?‘ãÁ)lKMÙÄ^(²±C.žª¼v\ódýÅ•ºÎÌÒ.‰-Ÿ³QÏ,™®1, †‹ ª›KÉ…¤óû«åý•¹4ÈÂñ<ðô,Þ¦Êa E¶|Ÿ ‡8›‡Ùß­l•y2fÔ“ó0ÛÍÕ˜Mîû°|¡.)—a5lr} [D‚¡} Ù‰ªz©ötÊu—‡UiR™§AðÜM4F²¦‰cx}…p´"Be ÿg¾jzì¨à_™ã)ïilÏ'œP‚¢\BË…]XE²Q6!ÙüzÜn·í™Y¿lœöe2c·ÛUÕUwí‚è?Õ Ù¤9mÚ˜nô/έ»)ïƒ4ëÉù‘Õ18%.ÿÇòK|Ó|ÕZ<2gL–]ªÞGúïȸC)·Ìd¥™(ËìÞ#¬ð +ÔQŒ -õ%JÒ(ùÇÆ“e•íº"……hʾ*·t=£eVh™VÓ]„Aи$‹TâÁ殪߈b®ŸN“ BGºL¨q3:6—ÍÙ±„çf±#jM°ÞeëhÃÐe^>¿Œêt·×јîZôÝ‘ïa?¿ 9IZÀCE*NëpB6ãë9ñÂáyã J\PTÝ<2ïQÆ:;Øx‹rëõçUèr©ÚØy \ΗPJ%$öe†oFäÆ×h³ "‘¦¤Å®àÖ] Ä#ð ¸,¢å¥Ìãuª.{TtÜ¢j¼8…wß|爩P„•ãø ô01›y5´šRzŒ–t+õ8™ÃAÙ¾æâ# +(5ÌE8mäð¬vzú=0èñàv‚ž5©™¡Ë—Ò…ìh{éÁ’% ÎìHéïLÕ9.A„G™  +2ñŠÁpbF²‘#Ûñ4í`ÿœ`xòMÄð•«~š>m-BîÎK¶ØøDHŸ+ã¸f×ã<¾!®ì Gnž‹Ôå«JÑͬzVÒ ¶“ÎSHp"ââåxO¼ïV¢üx†y]^‚ïCÂû:fÖòržTdĽevÌ22¸tÈ­ ¿\TÐ î·ÿ¬Oˆá7GøÉþ/W’Bƒºº°·±l:7,')'¡ê®!e±,Gógߣô¥ ¸mi¿SÝ]ëà[ZW»t;Ö,&j»'„ðMJåº÷*^ ¤â0i6ùÍÝ0>s1M^p{ú‘»>/±Sö¿ :K—¥ùáªá«úS'ºÅFûýÞ½†_Ј#ݹg7&9/–Îð¸›áÁ †\sh* 4g¸Ãú¡ö’Ên9ÍçRy±»TN—¬£òâê©Žô•$ì{¢Ì‰†”®­°9hTéØoDjÒåÉUøabb‚©ãN¿ãþŽ|‡GÁÑ®¡“™>A‰>‡¶é5emE¡¥A³(HFìéµ·Á–Ê(ÙN8H”«vNì¿„˜pÒØ&¾ƒ¿61Ä„„: · v+¾3ýÙ7îJ\ºd¥ÄMÕçëÞ€¦Úøâð˜Õ«° +Ðá Ah•cÓÍ—>Ð¥£«Ìi)ñ3³é’¢y ºCaä]ëÁë40VçÅDßáÁ`‰ù¨`¢(©Z6ŠEòÏ—ûXÙÄý‹³eõà +èÚ-C!Ò¢?x‘ö¸VÁæûÌ,“2µ¥[kÓŒœÃŠCÁCTw*NžknVtrOàc¿ÓQšÃó¦0…óÆ•ù8 þÂM]_o)aß^É¥HÆ74 •>õ¬ NSµ%ãÔÙ ššÉØyè©ÿºp&Ý…p\1Å*TVõžøYD½Ñ™É÷¸ZDÎFeUD*ÇNmÿ*ʶÅIñ©oõüL›Ä…b¨‹¬0SÍHÞBšfÈV6Ò[ °E î{8ô«TuŽcJÁZƒÓuÛÄ!fäŽmÅX1IA9Ž(ÃÔ2c?zQ…Ï¢†ï•£·Å7Ò<õ ]´ùvFÅG-úÖ–WÞb¡([à)"'At›Y÷ÏÖ1Ðœ  "=’l“KñÒ“m +#¡.ƒ'PLŒ}î¤dzsû!\ rñBÍ3Xci™¨â$öK_7@LgSÀ˜\Å0½˜z4cXÅž¹ºk8ÏáØþóy´“=P’®9¥ÄùrK{‹g ãìH‚düg×ar{3H¡r‘kv×ÝË…sH8cjÐRKK1ûZ§ Ìsš´†½u'æ‚?pxKw´Òm„]Aï:иõR€©U¯$Ìä¶Àèµc0nëÑ¿æAOÍ·x·–eqß «š•Ï'mÚLj™L|*‰ùµ^,áÊÿÅ?+$n‘—èéIV‰VàÔ̬|Ÿ'•øòa"Ú0‘p‰J°tû z¬×-ç¿¡ð.¾¹ü]_ÖF£­]×½?´»vj¬Ñ´î®tø§vD«·@ãË©J"ý¨yª 9ÉJäF„Ô¿ú%TíšÒèbÕ.­ÚÀ–÷REW^츓~äN;§ì÷cÐí45U8O˜òm#E!jFrî>ø-1pnç^yõû„ý ì÷æèÏí<Ã/åÀçÄW­ßÌ ;\KSÍ? òœ$§ +endstream +endobj +63 0 obj +<< +/BaseFont /HJALQF+Wingdings-Regular +/DescendantFonts 145 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 146 0 R +/Type /Font +>> +endobj +64 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 603 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 55 0 R +/GS1 56 0 R +>> +/Font << +/C2_0 147 0 R +/T1_0 148 0 R +/T1_1 149 0 R +/T1_2 150 0 R +/T1_3 151 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TÛjÛ@}×WÌ£ªÕÎ^´+0†æBhÚ¤ë-„¢Æ±qÒØ « Í×wf¥8²kBÜ"FÚ9gvÎQþ±i³ú¶…Ñ(ÿ +ù—ú÷êg ãñÑÉ1$GU¢ »8’Ú8º[kàê,QÒÁX¸ å{¸¾Q0…$?›(˜¯“üXS€PÍ(±º¥-ÕßÖ€ŠÏ ¡j ÄÚ +”Naí¤Š²“‘RÁŽ«ûä´JN/ˆLþª‚Í<É+Üp +=óÈú(’i ÞEžšAë¥UX€.¤RÎ0ëô“ÈŒÔ.…•ÒV ¤w"£LHç"Ó2@Úˆ KHkÚâ_·xN› +ô’ÞáDd–@Ò…ÈsÖ\—ꆲèý‘¿Óz+8iÀjFù°©w¸>•2Vß™F ÅL~ôÏc>3©0 šFX¬–T“*ÖËi\‰X'ö‰=ç·ÎÀwgЗ{JODÉä[¦L•‰j–± +<ŸTG~-nªó÷§Œ»JÛš«ñZ´[sMÄâÖÒ+£Â Ww¸;hN*‹ní °=&¡]Œ/¤õÚ²_|ñO~‰-}Þ´´©4yÈáN}eþÓ/mÑÉ™®-¶£)ãغ`Ÿ/M©z:C_bI"ýÀ%IʱºWü•ô‹‚ÀBeƒX–9Ä!‹‹âü‹»âRÓ—Ñä‘‚©H†5L+ñõCãéÿ7íHÒ+‰ŽÞ逃)‹®#Í F²ÿ«Xµ…ÿ×y’ÃtÙ鬴Pxi´'Qihî’Ù`À|®ç°™ôÛ©“ä- V9 +endstream +endobj +65 0 obj +<< +/Filter /FlateDecode +/Length 6029 +>> +stream +H‰¬WÛnÜ8}÷Wð± Œdñ&‰;A€dœ f‘Avã~K‹ŽÝîd7¾ŒÛ¹x¿~ëBR¤Zm«=ƒ QG"‹ÅªS§N¿¸½û|±:»Ïž¿ÇoV÷×_ïÄóç/O~G/—Ghjmük­·›£ã_O±Ù/Õ¿¡Äò⨭;XºÚ 뻺om+´«kaÁåÑÂÈåŽ^-^ýVÿ£ø»|süú²'×Gÿ<:þ:ðfuµ‹õUõëKyüû/¿Õt¥3Ïü/z¡Ø‹ep¢© ¬]~Jñ*…›ëNµNtº¯½÷-úò~ñZª¾VbñYVZ×V,®dåêV,V²R +¿|Zá÷{©š®¶øIÀ¸­XlÅíZêZV`µ‹;iqíZvhj¦è´[ ¶éÝÖ—UºÁŸÑØp ûàý•ØÊøŠïÁÞ¤,¹F#«”ÆMwâRVôi%AîEîYú&Ã'ìîñV`×Ò[rh-Vâ#ØE«á2Ž6¸ë\¤¸à±&¿J<,»l_ˆüeó5üå ××~$²ÅÛ‡(ÃÉšã.ÿµü{‚Ò~Øôl +X¸bh´)`±9D÷Ûõ™Ýª©«J㽫ã­è”­»¹ i{¼U–ÕPT(#ÚbŒ ã„™sYyŒD±C´Dy\Çëï|03® äp+ˆ×%ÁÏæáè¬(®çâNzü~->h­$eà$¬=‘¦A[ï8«.dÕ…¬ú¿.«’ƒ o+>HéèÝOâ;~…½ŸâÞŠÐ|¸„ðôT!èæ=‹Æ¯¡Ûü-aâB¨^ãa,žuGñjñ°Jy<Ù0ô.Cå\Çàa| 棂l·TZ +Z#;8\rÁ‰y"Š"Šë¦m÷€­ijç½c°¥ŒîÉãáÕéBí£Õ¹¢ø9‚¬Åç"b3~Á4ö[¡­. ØàÃÆ<}ìÜX÷œš˜÷ä`¥;¾Êé¬Ür·bÖOŤPÑbHöe åLl=ÝØ"}„ñ'¢6Ðzú42j?ñY߆¼.ð²¨fŸÒ™Ý]¶=\1ÑÀŠ ¸y0DØ+¹s´Ø9¦jÏ%ÚþÙ†ÚN4T=ÕP%W{=3ÜfŽVØP¼Ú!^¦¯{gÇKÃÕÀ§Z,¥7\Í[âK4îñÅ;.Aò†4Á³å² 9QdëòG¶)ä«üDîFšX}çÌ™Q¶Š@`ÆÆM3c ± €—âü‚#À¥o3#,ü/„¤Â?“= ¡ÀuQØq’Ê$‡z ¬DC÷@ é„xÒJ+îP%'™žpáõãBÏêÇHw͵â,E7¾Òé +O¯¨ m_6¥ÂØ¥ÎPªi« +¨œ×Ƭ%-»™ä"iåó`a+¹KÖEœ5£¢-èµËèUV&6jR«¼ƒ .ÍW´b‹ßÛ $x‡:u&Ü\Ñv•îö€ ¦À•çu4GLô¥¤;bÄ…¨Ö,É!ÂV¹""Hj¢R}‰;ÝÌ] žf…j»l;`°DŸÊÑ÷`Ëþ —ù JöàÅ©,¦ð‘¶KqIS°rÞŠMŒ"!žÉˆ &Ù' Í\˜´3fŒ#3g Õf mõL„S@t^F bü¨ÑœHKa3ÄÙ§ðžT»PHÇX‰ð†jF‘k涽ÑxEÞÙÒ9Õtu§Z'\×Õ}î÷„¿0õLÆ£ä§"Ú=æ;*Ë6ïþQ!^Ã,ˆ» ó€+X%Ö6¶JGgðÀ©ÝÊ„uœÂfo×z¢ +ò™)Â+ŠÏ ç4õæï±Ã^É c) +Ÿ²É*ÒðnSÈIzRÀ‰’  p¶ßA‹õ™Ì„Í{Uýƒ'Iê™;[X¿<”^± 4~ÿ¥¨Ñb椖þµ¡²‡HºÜ…ü~ â1â#±ê&ÌnÖœU0¤FÙý•U‡ß²ÐØȶ€b†‘ßü/\èñ¹ŽÍ_HV(‰ÌÃûSÉá r5PÈ¡ÍD¯š!rØΔ @ÌƒÝ Ú„–7ˆÕ ©tñÓ·Ò¦>ȃ8#ĬÍ9ƒ×›\`n(Å}ì{mâ‘$niü(0È°ñÂ]òo3£lÆÑ™‚? +01½ë…ƒQ×úÎPÌW5ýøôfu¼8»ûºú²\ÿ¸{öúÕë×MÓøçÏŸ ²ß`ÆÀÔòñ’¶¡Ž.ÕŽOjçI|"ž?ÏLÍx:³]œº=Äb{[7CTc4|áy3ÆuO`˜‰!ÍY½‡aJ'ÿijŸfÔ£4ã +’¡¬í–$«” ƒRÛ’ú&N»`ÏóI‘¥yp¡ ª¶èOU0¦˜¨öÓTµŒ¦tIS3qçgPBžÄ™”`Æbº±Ïøc*-´ó•í ^ÚÒå9ÙgéÏ‘[/0ÃÌôц|êH±!茨ë«8Ml¥¡`ý [ÄbfœŒ:¸ñ[Ä£vv@ão»öð²4z§,÷Å9ó+”¤£aóc¨0††àv1,ŠÏ¦âÛWzíÃ¥·§¿Sá­ Ð,svsHé0F¡~ ]üK,Žº9—‡ÇòH3[Á;8žð™A¿à‡;. i)ªÖ3ìøî¡.Î|1“ùÍŽ¤ôY~²¬ZôùÈêí$¥Ù•”û•ùõ~!Zž uV ¦Ô= =3t¹€.šÛevs0³3ÀÔ`íÀTGG—É’A»Ážû0’´É q:ð nTËŠÔÄSd4SÒ¹YÂÙ½Ô`Ç°£#Ëê1Ë&ìè.i±Åúq¤qOÀN;;™_#VÒ4ùeM?͒ʦÇjB‡Ì |Åš±ôƒdIh‚ÐÕÎü4ðÎHñ—bR¹ÅùÖŒUƒZ`6CÖ‚_†1¹1Ji2¾‘íxøp¶læŠêññ´æjõx¹„<Šå!Й€@ü™Öµã\ãÞÕñV†Vÿ3äÃmâb‚êæbD@jjKHÜb’<ˆ¥“a‰epÿ5ÅU£¡yêË 5|¡&ÞeÌÄŽk»ÑErú€ŽLm®åvBÿZ0‘’€d6Ô†ÅwüehTž©)À”óû‰Ð¨ ÇŠ¾´¸$ Í£íKà S Áצ eMÝ1Î:[îy=ÚQ:JZ—õË$i‘ýB +Uß·nŠñ"?§ZÊÀ ª£„æÚ»ó—ðÞ©“¹ÒÎ0s'P€ OÀ%“n +Û ´]“ɲhÈŒhŸ@>ç6“*Ùò~x͈¾‘MK‘µ›JutÅÅ<0àýŸù*inãÆÂG£J¤º±u÷Ü\IUjãÃØ>s ljeIEzç×ÞàÝMµ&IÍ\DŠlbyï{ßRƒ;zÏ‚9sä•R`a<ˆ*XH¦Ã?ÆS%vÃú¢Êì%´%¤ +‰Rí(툨ѳ8d‚ð}anŠÎ“ +Óè§Â«[–yJc…¾j‹cõ¹ƒa¡þ 2Àĸ£¶M· =VRÖüο4ºgAM^«ñIwêFGxØú”ƒ<%Û,eÄEBóÙFL€³Ô˜ºÛÕ1YÓïs¢9¨"O%E\íXæɉfæ&yÁ”húÅÁþq[-¶ÀM‹>s—E=I-&¢bnLOÿ”0š¬P\±Ñå³:;é\ÏŠ8¤¤Ãwȵ |ùWÞèÛcÎjãØÞt¶1·Ý°úà•‘L¸tžn)”¨#û*žŽŽ'ýÓWM´JTd¬ã·Å¹ õÜúznÝ#”=¬ ë¹)?þE6§Æ_gÍ[baM8mÄ‚_w%.Æš( ¦‚@<ú&W*eé_apVÂJÏm»y¸Tn ¡êFÑÈaHSØÕAÇ'À +vû¤hô‘‡ªçɳÂÏEèxKL[аÃçšïp°oEãç`3ðø«„/¾xuÏêó@¤•n§2Žý¤IŠS‚–LQfŽé$ç¤Gçpë„FÎaE5»ÒÖχš ê}Ï”`ëü&žup#(‡-VY g«UѲý2*Í4 ¯\ÚËj›ø0¾z9“çšÏf·Ž‚C5â …œX8ј–ÕßÂÎñÝ+•ý6ñ÷•™Çaø¨m>61%~Œ®zf=í”Í|XpZOÚv!êÝ íñ‘—Ú£Ó»ÔÞñ¾ÔžeÝÇÿ ÜèR¯Òh|`ŠƒŒØºÔžÕ1Øë›ðNó 5Ÿˆñp,Å *®F"áM7"wjæ×ßG}1¯“Ç€CRX‚Æ<1p^+=[`Ý"ö‰´ Cò®ÄãøƒëBä¢ÿ¥3\Æßrâ$I_ê„/Þ=÷Õà ¾3QôR¶Ô¿´u]„¤q=®ÿ³Ê6ƒ¨ê ûÄÕã ;äqà ÷<È}3È•ëmƘ¿%îd•5!¥»l Þ6œ·æÔ"uTY FŦx¸ý5Eņγ§YE€?‹€çLâ#Ÿä˜Ð=® X»G‘#qú4K45Q¢]\‹û,Cµ›J°¨"Ì#ááD$šTK> Ïý!kpÒþkaÂgÃX·fã64ý©Šuµ²†µh߈1×ÄŽh.Öa˜á,²LL¦ÑÖxŽ ˜e¢pÒ·áÄ/U:Á“Qĸ]Ü¥.\ÛøJslõè‡*6ɨä‰W³}¢;™uHìŒù `f¥ìKû›vûŸÈ¼Ï +8Kw¢€™Î£aKNÖÑú,‚ò14f)•5ÏÅ´_ «T–'æà‰·i¾EšSo®$ÐZë:LÚ×sÛõ-žˆkdy°ðEätÏÆœþÿM£ÄQº@FsÚÊŽë ~—zÄd‘¿?³ãSt=‘ƒônR\Vc¨Ó=ñ{IvåD}½Ÿ>Tì4!éf<­Xà’ô¼º\bÒ_™y9²Î6‡ <¡ðÿユ3ßaúöúrK·t÷G6ÓLJ¤ëKœ8»òç=úˆ=­ðRä€à‡å D±t’t™m Roœ52Ý4î»0™ +šÑ7¿ùmÃâC%æ½q˨ïã›±ó^0æ_ú{¬ vúBF!aÇä°CRX¥cuy-ÀÙéCv1É-öÞ(•ñ¿ýIå•Ö‰>B¾p°øÓY2 +¶Õìû¹ƒFuøŸ õ<•c[´Ã;ݨ+(„Ã77š!9Ö¨W,`?ô"„¼‹m„¬¦‚qMÓù^Á[*š£˜’b)0©ª‡¿ÞQõ`Š-׋òiwRØR¤{‰$>Ž)L.ÎAg1jïŽè,¶©“ àH"A?]®Cb·Áh̯Qξ\ˆTH´ÍÜ\Y %SÙöz‰ØÛˆ##ptùæM¯¢6¾'DQ°ðñ@hb ÞdtÅ +ŸõZDz’µG¹û| ŒÃ¼ù”S}õ?ŽÝ/qœw8·>PEŽ·s<Î=ú-øc)WLÔ€ÁVß|ØX[W¡£*{Ý[®@ž-{e‡®o®ÿ7õ`ûñJýTZ$“ì‘»˜ˆ— Þ{ýüŒ{>‚lWw‰?Y +€Úãà÷…_×Åw‹t±¤ÈO—: 0àâ‚A[[3G,^n„Ëm,ªÛ¢¦¢‚[ÕÔ7ÔçÖÔ4^1poP" + $Ø2FžæÕιYýÀó?÷^Pa4ç¼EÆÜãÛQ À0*—}4_å¤éÒõDÄYÛؼ­#5W@–!s¦œé®ù¸qa›”XøAe¤ãD~ƒa5ä1ðƒ™1°õ¾lŽ?¨÷<#9œ9*’ò64†u4æD*³1‘†&‘Úe,ŽA»+È?ÙŽç\GR“<ˆl˜Gû…õÙ«7äçR*p#ÚÀ@úVüK²ðJãb5HóAšœúI‘âf1ûÄÖiy —F¬8Ï äZ|9+më¯v´ã¯mÜYÕJJ $À¹rmÖöךâlqŸ­¯fóIWÿ¬QᶒbE»¸ F˜¶yñ„Ãap`t^ºÂÆ: Pm×jþV¤•ÚµJïŸ2 è+ø:E‘|`?¬:ѯ®çÏQðj¢†™?“uxàdŽW奫j10+_9žÄêi”IÉ8ês'ÏuÌd”³ ±Ò/„[Že.¯sDÉÑ!~0r±Ü¹a‹x ç Áßš¾ŒjMÛy&óf^p¬iñ? ~£'å +endstream +endobj +66 0 obj +<< +/BaseFont /EHMTAL+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 152 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 153 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 0 320 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 744 0 0 0 0 0 0 0 +0 0 660 528 0 0 706 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 0 508 546 302 0 0 312 800 556 490 +528 0 378 396 340 546 508 0 462 518] +>> +endobj +67 0 obj +<< +/Filter /FlateDecode +/Length 5294 +>> +stream +H‰œWÙnÜV}×WÜGpS¼+É 0Ž³ ÌŒÝo™` Ýk‹$ÛÑ|ýÔv7.2cq·Ød±nÕ©sNýíþñýÅñé£úöÛ£¨£×ÇO·Õwß½|õ½:x¹?èT×ëá_笺¿<8úém§.Žöú?ÒjqÚn€ÿúÖ+­mk?(ã[ïÜp}pèšý~Øüð+Dý‚^Âÿû×G?^wêÕíÁ¿Žþ‰ ¼>¾¹T‡ç7»Ÿ^6G¿~ÿË+¥û®NFá;?`š³ØK]«­UûÏߥs*½ÚqæòÛáÇãÆ„ÖªÃÇfgº6¨Ã÷ õÃÛÆáõuÜìøÊM£áß3uÞìB«Õá)ü¢ñËGøâð–{øá¾íé‘ï£Pçê"´ƒ:¼P¿5Þ´F~¢¾|­†®¸ +Ïç8F·#fé!Ðïê´ðé˜#1 8DßÒó;ÍA=¥ðdxý·1~ññÅü|ð³mF‡¿Bu:|ÿYƒÄÏÝH猉=4;‡±Ô#…¯ïš€ž«{ÈŽ’ÜY¼õ¶á, ù…à=Þ€ÕëðËÕùÔóÜŽñ,å{¡Àø÷{ŠÁ4ÆzTÍïû¿'œ­cJ˜‚¼:cÖ€-îpîð=ÇØzƒ©–HÒXî|œÇflTâ+ú‡óó¾¨,ïÈ’Ð×MQ…œ Lqç ¯SmŒÃ„)Æ`C[õ¶Ñ„ +n˜–×hŠ3VÅ€×ÁCŽŽfºêonÓ¥ºk:F¸á'š§Œ™sõÐPŸóÁ´)æìªÁ¨gêä\}ÄЩîiÔ8*ôÄ`Ô\®_BäŽn+`¥¦“+}ñÚõFH™Š¦*4y(¼Ó>Th:Ü•”¸×–qÛÎkHíºÖ£Ÿ!umtŠÞxìÍ V=#[u¤úk¼ðõ"À] ~2Ý +•SA)†à{ÎdBÄñ©±Ë¤‡ŒK°¸ÊÌA}½cªI¼¡ø,¾$Ìbât=q_æKC4ÿB4„z˜‰ÓI0¿Ê¬³ÓT°¯9ÝüT½œÉä39ybà3a‰·2œ[‡c‚L€¹}M±ŠÚ‹ô…\à•DC4—}ÁP-3ð`ÇZÔ|КØvã‘}qd°šmÒ{çÔþŒ•3¦b˜Ò¯ß&áç´Ò"h>®CX?†1Á#¹ÀÈh9¾Ç6§B¹ø6KuÜ €Î'‡²ï†øw.7`ñ-u*3â;ÝÀÒˆÄwÓ8Ïèa‡-Ýk9`ÍaùM§ ø÷9Ê8<îâ÷'>F6Æ kƒ¶l«r¨«ÍØfÎu㤸ß(®êϘ£eŽ'D]#OiñÂ>…|øYi°%” ˆ²{°Xùò®,“Ñ–ÁL±Ô¿;‘ ë%O–ø ¾‡òL±¸¡Æ…E#;¸±Ìý3rêú¡¯jz¨¶ÉÉ0q>Þ­‘ƒ³…óÉÇ[²æœÉn†hã¸AçÒâ©Sàî~h¨ÜçQœq*Ú=ÜÑãÈ*°ãªóŸÜ½?›]µÏ&Eq2½ŽÔTQ“Gµu‡vüó;”¸P´2˜ÄΔÜII&^¸tF­„<˜7~²pT¦«œvrNT_âóKðÆ¡“™éJÄ®3gÊ%¸Ÿ4Vn!»—ÏzOòu·ŒíQ=NÌÌší@¶ÙÌätQ_†Ü•ªVºp“\ÜÙ6Á—SÌc]cG!†$,­b‹ó?>ÇB¹bPÀ§f$¶Žã9@=T?Ј± "Ç2 m%LÀ4P”‰ñà «üš”_þ'cO'aœ•šü´f~Í›”ίÎl½iC7á9½†48½-hÎPqÎPG|-[ÞDÓþ3Q]âFU¬}yÈgJÚX5P—ì*+‹øi+YÈ.³"ÂR¢A‡;ÃT±Šþì|5ÞóÖ ö•ô¢’ BoSÙ*Æ A÷a+P̆ÊÃN•}î’•Ñ+xcXš!"ì¡"ì Ôùdd“Qr'[3ÓÈIœ†-=kÁxž]òŽöœTÜ<:®«+h'©-j·l…”òH)ÓPd[– /Ód@¨LíŒþâþ‰P^7vЮ®ˆÞòC_VWDïô%ÒÝ7çqmyˆâÐrTaÈ׶c‚AÃsà„ô(0\ß–¸{nëê tÆ +m!Í:ßoÔ1l¹¹l©Þ'W(E®€ƒóUl0äŽ-»c¿ìŽ [P«9­sQ2Ù¨®¶/#“Þþs#' †–ô“ÁIˆØ¬1Ú2 aê ‰gL1Ggµ]ýæ.é{˜ÚÇ°'òÞ†ÿÌrõsÚ×­?ÜmZ‡P+aè×HÎ94M=ê^9°>¥ÏÛÑổ‘¿WY7>‘âUÛ%ï.s\–Ž¿±û:±¹‰cUåó†Â^N°,;Ô •Ù™U’ÂÐk?Àiiý_¡K37WÓ;KåÜó6Aãs7¨† ü)E›‡ýEÈ畤ÿ + D{CÉB˜·P±Ömß߆¾ˆ^[ß<¾'ÑÎçÜÍTFÉ\aµ ÄMÊ0ƒd!cÒG¾H5ºJºdñq‹sÖË#­.H¥uå^šÍXõ î’`zÉ–4;©¹ÊÕª,Ž’ ü”Õ^:ªËëÑï¤j1á&Ü°@¸ª-!ðW¨¶ÜXâAÙÅÀ{œ)ö¸m¶pU—­\5Ö\å†5,BòÙA!lÕÄq}½3Ù2^×— S l°F…!;õP`2î Týì÷$Ž ¼Zñ.E&—Jxºð¶µÙ ^d‡RÝ +ƒRùP¿Äo¶¨nž­ªÛq—ðkmÞ¦n¹·ì§nÙ¯¹åYù¥*ø‚ÛIûk‡—îÏUíß™fè5•µ,/­&íyw1È°_^KËN=»”úEP..X¾Èúý¶­=ÍŒ±x¹ÝˆŽ¡èâÑ~ Tû‹ÿ“^-ÍmÛ@øÞ_Á+R€ÉÜ:ÍL&—N§qÓcG¶eW_c;ÉäßûÀb‘Óž,K|,v¿ýÈ4ÝÐ\\5ü!¢b>ä1wVyªOíرÐcª¸{h{Ghpsãxj¹C"º„á“1¶Ð‰»Ü€KiÐb®;ÅTž¢£St|€aª8s˜¢d{_ÿ¶ù€´@,Çžþ”?½ƒ¡õð×aãGÅÚ?¶®'¹øŠŒ”‹¾ËÌË Æ$‘v…û2þ[N¼dI°bM¦ßf§á2V/äÛ”q:ŽŽ•­›jÛH®Ì¾¬ÕìÚ!Ï;ԉњ3Ék†m»®ô^£_PD7ŽÊ|å6|A;8‰Ïµá‘Pㄱ°N3 +—ö?¹<0¡t¥r$;͇„!5&Ñ]RoÑô²¤uY³èo +Gâ).v‰µqDì¨F6&£’hef!rt"|jiy +“½‚ó(…oÕ[“ŒéétÌâK“¸{-˜L &ï–À³ã²½Â¢öKnÃc‡‘ÌÜ!<  O$¢=ÉL÷)Øqü£·ÿùØå&½d:ˆ¥†ϼºeó½Æw†ï´‚öÆ’öÂyÚcs†hú~Ü ~ؾEúºa.ÙÞ7ù§P:3ÖsŠ32ü¯¼&íeâGÞ¬µØ²•wïí¸bLÌ^i£&W2ä¥à”÷—œeòN&0ì˜LòÙ2dydLÿ|nYÐuž’÷`Ï°Ê ÚG1='ª]ê'e¯-#^Œ0q§­+òÉœýÃW2Ñ7iQ+‹sdr):mÎLóŠÑ¨®RŽ7ùÄ¡ô‰^ûÄ•0sÌÜ"‡Eïåf§¢m‚Xæ£sK…x€ã6¹Â‘&!j%ÀS¡‡Üæ„37$B#Œô‰>=AU®)ãŽË¾Ü«úõ7‰ x@²n½Šc]‚n˜ç×lØ“î@­w3V\é²C/H¥èhÉ–!CÊbæ¡AT¤ï+@¸7ÈÙR:|Ì·”CøŽ’ÿÇL,kñÖWx‹å‘φóÀ‹A-ûì8龧õÃ…ŸDª¼÷„£õÇ;úž¹ƒ2ßÍL+.5\Fî*fÄЦÇoŠŸ&–“>P›X¢ðI&]Ý^‘ìÚe;¯MDì„u1*mûÞ5Ï·?½yÿ±kn_¨U>µŠLk V…Ü*;Æ#xg©UŽi{ ‰¥½o{6HÜáF1±·dj‰oñ솄ˆŒGvè¯Êk‰,Þtxj'¢² ášð²²¡ì­ù 0ЉcKüdCVgøìsy+¥­8›Œ{ÉÆA‡<î²iý%wŒöDêüﱌx)úö ‚øõ¯üÿÏ­õdì&BdeÀØÜ1¹hŸi³Úãw¼Ç’¹ð¶{J˺e˜å†Lmý댤×ÝÃxbë¼à|E®?…¸l +Th™he,¾¤æ¶TÕ ÄuÊüá#'X.,…fÞ^¯¡ôêaÉNYo¶Vp”Å‘ @i€×®!;f<šÜ‰(¦•.Ë~ÅZj̶J"K™ Q7U"¥í·F¶ÊH2¼Ã¦¤{vÍi ÙßZ\¡o3{ÃûŸÜá)(iyN95Nú²d¡D”ÎÇ–uà n*€ãaÌƇ8ц^ü³â¹Ó«¡uöxf5ÌzDuA¤üa ù Šñ—·ëη;×öæÂü‹h.n°ÌÁ$66X&+,ÔæBÍaíû1iÑ& F·&Âò)†›ý_@…sa€á€˜w즃eüŽ×?Œ,ÓØ«•‡1Åa.:: Š +†«%U1C„–<â·Ö1m)ok™lG®öæÉ&í‹[^ØGÅ¿»lÿ΀­xàdáνêˆFy |2-ù=>É)+Ÿ³ +|>çQƒ5¦ƒUâ¬Ç+3ŸiÒÍФ"^õ7ÿ<#¥½ÿ +£²'¡ü’le‘]u é÷v +ä®Ö!Ð.¯Sgy:»¼N±Ü1"ž·i„¶6fföäòç1zxݳG€/`þ;ºêæ·kžvð1I6ðv/Ú¼ä—LJ ä ´ŽD·cÕá)¨Ñ%çÕCúå•€¹vUÝòª‚nû¥MØ´ƒã˜ðçœ ²LyúE—ëyß(Ý556ÿÿ²p¤ÛÓD`é±¼¼‡è1<ST"“¼ÑdNc^XÉ*ÌG´‹j 7©àeçüú Š÷‰kÇAÀ’z¨½œ¢Â‚pŠ2a5š¼!}iåÌ’•3]€À0$NLP³æ2Ù]ƒÕ™4#m`L_Ò +Ý3kÂ!ÉqÏE™˜Bë K€¿îc$Ö÷7 +f\;™¶ø%úœ 6Ÿ +äÆÑ ˆ ²[‡C;‰¦(pdpÂ(‘ùk¢´µ÷ÄÜYg†ZIÔ´rgÊÐÔChºŠSĆ`½_ ¿ÂÎið¬´s&TvÎ/‘Õý¬& ¯IIX‚Ùé…Í„:¼ýgÖ²˜/ßb§ u:¾ò>R”+v~Jº•aÙ£NF$ÓêÀÍ5-¹Š6¸ˆ4Þ‡Mb¼ÖüÎ$2ñõ² ìÂ6™‚ ±À”çr„mÏÄgñAŸáÖg|îO¢Mz†Ð tvOW¢´L¬Æ˜0 Ñè‹ð]ÉYպʹðŽ'oIönãv;£æSV Ð ´—æhšs@²èUÀYYº™%äŒZ4gÝ ³ù£nœð )çî¡Eìý“®½?"aƒÝQGhä YF¨å³µøô¨-¸¨ùµçÚ#·@Ó¿ 4ÐçU +endstream +endobj +68 0 obj +<< +/BaseFont /AZMDBT+MyriadPro-Bold +/Encoding 154 0 R +/FirstChar 30 +/FontDescriptor 155 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 156 0 R +/Type /Font +/Widths [588 588 202 0 0 0 0 0 0 0 0 0 0 0 0 322 +260 331 555 555 555 555 555 555 555 555 555 555 260 0 0 0 +0 0 0 656 0 595 0 534 527 682 0 285 0 0 0 0 +690 0 581 0 593 540 548 682 636 888 0 0 0 0 0 0 +0 0 0 528 598 451 596 528 341 585 586 274 291 0 275 860 +586 577 598 0 380 434 367 583 530 759 519 523] +>> +endobj +69 0 obj +<< +/Filter /FlateDecode +/Length 5562 +>> +stream +H‰¼WÛnÇ}çWô#Ðgú2À0`‰’‘@vgƒ<ARäŠör—á’’™¯OÝú6îX + ÃâîlOwuÕ©sN}÷ðx{sqõ¨¾ùæì/êìýÅóþéQ}ûíëó7êäõú¤RU©ƒ­5êasröýß+µ9œœ­ëŸ+U«õÍIS¶°þkK§lß–]c¥]é\ îNN]±þåäíúäí°ë`Ó ü¿~öî®Rçû“¿œýx±Û¨ÓëÝêû×ÅÙoþt®tÝåÁ(<óWŒ¢æ(ÖĪ*«Ú©õgU×¼¬V++Ó[Õê®ìû¾ÁXþuúX¬ê®lÔéÇ¢){8¯X¹²U§ü[Ãwµ¡ðñ¡°¥V§û¢†Ÿ +xëïùµC¡iÍ+uËkü¸…þ¨=,ø$Ç'ux’ÆíÔS±Òða‡'º°ÁopWÀ×–"£>¨[|¡´øJmñôŪÇo1(xþ‰¶hð®ðgS•bÎb«pÁA]ßÊâ’ž‰[ +^àw¨[üÙÇc ÑÝ]úñ7Ì \ö‚›ÞPRèî;uüz7øÄQ¢é—‡Âàú+Nÿµ +ÏUñïõŸ’æQÓ§¨)«¾ž$³ À ²sÑëQÑÕjØb)5£¢ÓUTx‰û¢n0sÙµµàAWR5ªâT‘¾õXCzQã‹š6x„@^¿—<ä•ós' ØCÚà˜KÈ-'0òü†íyú_Iz<cjI.Ý»”³~‚ˆ4êË‘6ø3$(d‘ñxô9àPPOÆ&£|ûÑVœGXûHÅ ®éƾV«š2¶eãΘŽëX‡Q‡®†Kt¾uœÔ¡O¡ïñ¹ uph†:gfPWA8}ïu»pæ •ô%…³Å$ÃgõXNörŸk¾Ço…íf+bƒ¨êÀ=öà`²:ôÜŸ¸}/?è”×.±O…¶¸Í£P 3&Æ4ˆï¾¨¸Í#ItÉKCú‘·Æ\0 Ù¯Cɱ˜¯‘ ŒtN‹ûðsßk+ +jØc±Ô„™Ï ú´‰h, 3Þc‚Ô˜ÒL¢9K¡U'ÐB©3Í4¶š Œ–#ýð{•-•ŠRØQÊ-òI臤¨ÉX…d£>Æq­Š1Stû¨Dªk N+nÓ¾“ùödé{È·!ňL(àò‘ý+DF7Œß 7Û•†(£fe_9wj +ÒÔcÒ4þðÈ ÷ˆ¾ÂšT¨·±Õ2 èÌ/e±}WVM¯3m$Þl~_“sÀf­.뀿xÉÖLó‹™ z†¬™?š-’HËUJé«úª±£F '• F„ˆá h)mÀ”$Q?hBÚ4âÆ]„¢&‰F5søà™íP3i‡Ó jè?gзãRQÎÞ » Ü®q|ÏSñÀ®#:Rê_‡‹žƒ]_JF6ÇBÓÎ`Áµ‰íá¹ã¾ŠnÁqY¥‘C-„3Þ½V#Ñ »; ÇãD7Ü¡ÁVŒ[ÒW'¤þË”4 9¡G(ÁŸqAß‚—kÑË1¡l=ÑD0ã3]ŽÇÊÇ[ÎûLp"#Ã02ðÝÅØp96ìŒón¬Iœ÷×b#ÔܳïDrmØ0¤6ØädxK;ªÁþ÷Íä îÇ’´v©FÜŠw‰ø$HObƒýLÒgœHÀû&¬*tÂ>( yzl].±!j¼ýCȤO5±Õ'±]cì«]†¹ežš–ªY"h š– +Z;í PuŸ˜õ˜á±ÌlÃý‚á¬òª ÄS¾ƒ©ö{D‰Ø‹1b¢ßÈÿ’cMa•ÎV“ *öÇlJv±ò»µxb|*;%ü¤ìÆà毠ɤÕmªÇ2dìŽ`)^ýKÿê,ó–†–FæVgŠé aÙÍÃÒURŽ)ÅΩZË>ƒe]Íù,Èpôù™Èõ^Ž(ÎMèÖÙÉdä¹MVP^;Ìë…hÉf°9î„eæúÿÅøYÊqƒ«Ù½éÄ0Ë“'sèÉÞ²u8ª¿ËEÂþ1"±  `èò‰Ñ:BÌ8ýLØhÚ[¤ž!¾H¥ƒ\2[ ’æì@JÖ6q.]qµ¶¬V*8ßÍ”¶½Jí­ùµ0C[< {D1mW…0¶Ø=9œáã…MÚâ·Â’*¯èzé[_a“Ï`ž»÷ö ÓØ-²Ç´â|^ˆ¤z Õ%ZHuFç +ìf¨ÎÁ´LjB6 ÍT·aÒô>‡åÒeH±Ê u–Fÿö8߆IÏŠ›T³~M˜Hšß¦ÀóG93Áq YÀNtô&Ù šç'/@²6ÈñŽ1$#oΧ4W‘"ƒÆCÌh ,žµ¢f@v¦ŸÁR«“±ƒì¯¡ÛSþCÛ…drXïâ–7pä1ØJ“ìÔ„²áHI,oñƒ&›‚¬CÛcw÷e?¡5¡fw—#‚ðâöFLÎG–Â[‘r1ýxC¶ÊϹ“MÕHSu‹›*ªß$!±’¿LIJfÓ’PÚt˜ÁM˜d–!Ç£gVç:ôr‚œ—ÜöqúHºª÷©ƒþS^˜Žh#óÇgÌ)I¸ltŸì ƒáزu¢ñéöÑ—Œ _62¢¦¢Bg×d:Ìf¡ñ–FÌVZIÞ™^Ô㊦ã\†ÊóÂPÌ?©Íx˜Xél7¶ ÝÄt¼TÏ…@r¹šÁ ×Wj%Ÿ&e-Zø–µC`çC婉_¶·xWÆ‹;HÆT;¢øÝÖ>äËÌ$¤¶˜7qφG ¿Ðqç„÷WÅñ°dYv °å¤è˜äÞIRLA)‰!71þ¥ Ì%-qæ•à~÷Áåä¡–>“ÝïÐøuË;<ÌdĽ[PnO@ü#.¼`ÒƒhX§{x•Û’ª+YÌ\Å€œ¿¢Ê]jü{Ã_ÔãTÇ‘Qc}(H‘ñrÌ+Ͳb´Y1Ö×¢òÐ4Ý 4+ˆ í,WĤ#1ñ’ô²œA° c%£¥÷ +¸¼‰“bˆ@<·s*s‰»kÑŠ#L»€cïðvuB“ ÞLØxðä“>ŽÈh©að2\z»ÌFT)!Ih„J›Mž¨ï»4É–ÐáR!ÍjÚŽpØí€x1+K;·HaÓÎNŒ¶‡Œ€¤ȱý™ËàÓV‚º1~Å;·œæ²+µ+Éi“ɼ ’ä|ªÔ;Q‘DÀ¢üˆÃ÷{…ª1v:a?v,Þ^ù1ë+àÿ ÷°ß;1òâ ÇêPÍG°Þ{•‹¶JnÐ$,¾kr†i²&ÎeØéØFŽqù³] ïR{ºÌb±U>•’®À :Ég¶mKŽJH¡žºæh¡€Sªp4Â(s¾¦*8WqHhíuœ*üèÁ „= UŒÛPÑ»øA0Ì«–ÍŒÙÄNb¤û\±~ÜÉÄ“tnwpcFï3‡†Å­VP"K9é]¡MÙ$³álNäóôÚB°Ô¹9›™m¥žgµgôC‰ŒhP"­pãi|ªü<^&T¶d +[8ú˜8_|ñŒ’ì1žãIè„$du¬ñÆ«ÖXy“& €Ž‘ù扇»×âÈøT:5ùØÒÄ©h!>tŽ=Û—UÌP¡Á¤ j]öÌÜbØzøvy/¹‰Æ’ÖШŽ2@E›´ÌÖs~â,d…)tn–mëF͈¤´!Ê’ ¨®[oR¸ƒWÒ`÷œe¨S飿ٱ£ÁãòKŒ5eú“`]Ô³Ây”´7¥°Ó Á´Þ¼—ÎîbéT˜m¢Éähªf@klâ²ç»=ØI"CHñÇ+i¾Àøk –;T +Ó¥†ëhàìÈt¹ÞÍ”§!%PÈvhÔý‹šê´ ²9…u“èhÊ&D¬>ëT¨{1vuyP%r‰z“׎Ȗ¤1Þ4æ5¡Êi/Å/#=Yœœ3þ,ùz?Ÿn),m˦ž%æ'À2iV“Q¬µ²¢w6cþŠÎñIHŠ›n%z{ñ3´õêqÀC$V“•L¥äW·i1Ùîï™eŽúm¼©˜ºZ`ŽŠs;³l|Q¸ˆÏ8—0ç^«{áø`UáÐ;&*{•zIÇ@~{næQ†¼ë\ˆ—!§žRtÙK¼œË¼\ŠË9 ËUg–«ËTdÔF) bëþõ*éÛ†Â÷ü +- 3I‘’Š¢—¤-Z´=4ÓSv2vœÅ1™ ‡‰h›–¡ì2Üò€Èß±‰XðJð‹1Q}ܸ-ü`Næ4¦•8ðeæZMæ¡€dD"'lm¶oÓ©¹Ee°/¾àdº» *{Œ1ãÍ=¤`¢^ø}x˜1MFÐ]±K“!³|6R±G&#`ý¦ó¾Bñ»ÜéûÊ‹ï‹‹â¶þvàtn/Ÿœþò¼U—‡'§OÍ+À‚Ú]< £¡ nðÊz(¨ï?´mkܽ«Øvȶ KF •K]Ý’cY ‚W½Ç4•°ÛI F­7ÝöÛ^{Wìýâä)NèðˆÐ „Ãè¤Ä£g:µÆ:‘ì1°:Z™Å豄‹0²ÈWbì\9ÏÇ=gÛ~’mûÇdÛ¾t»Ëɶ¨•9,ø}ïÌ´¦> º¶ôI½^Cƒ)îA s·f™á:ÎKÈâ÷*†Á#nçVã…¤[Ž¼#Q÷60Û—ÔX„Ìb˜‰‡ïX¾Ä犓›X¡Á¨uÙš+v#&¹¨Y>Š|JLyh¸À­šJ^Ä`>IýÒ$eO¸±w¸‰%ÔRœº¶f®z]6:Ø52ÌœÃͲ•Ø“ܹ%[âÓT/ÊÅ2¿ áo+k1ßJìñÑÄîì1b/—¬$v×U;L4T·rkÙÖ/N~…6{¼Ÿ‚)™äî¹nžl¬ _MËD·âý²áô/#F»-º;x‰[;O^#`ã¸É.±ˆ‘Oænù , Ó:AÖBøN©´¯DJ%Œ/ß0½ÎñÖÍõ ÓštÊÉ©äåÅiû¢àª@å¯&¶„üÕ‚ëwŒ¶›¦ð*{îlAÍ1#â9¤i^È3_­™òµ¦®¢¹ÛFjFµ{­äÃ"¨ 7RÒƒ&‚N~G€¯¨‚@Y–:Neôõj1²ôÿN#® zÐ=\|ø·éžº&”20½S·?wŠ73rÞÆÌ¢ã%žUk>IŽå‹'®Ägú€G [Mîˆ×îÊ=øy r ¸]¦Zöº£ÆzÑ(®Z‚Ž*šîò3…·éø.×GË ¯~¯0ëS%‹”³Õ½_ÆŒàZ[?0f¢é6¹¨Sz;dµíñŽ‰½Î¸*ðȱ.åôƒsvËÅÇ}½ŒóÀ-õ¢¹ÑOÞ ’ÂëäÃðÕr–YÒøY–™]G– ¾!?Möìçù©?’Ÿ¦‡ÂY…NB©cµàñ“ü¡×ÐÓC<ˇۘ8˸yÒ8‹Ï’4nH©÷h¾ þè™\î3$RøÅ_´Ôó\™†ÞÝ6ŽÞÑ·ˆ­¢qÝñð½åp°W¿#=™üÚ‹~üŒÓe³mÉÄØwuÌnhøŒïç¤þÆŠ Ž?Õ¬’Zèô¥V™“¤=t9"g6UÇj±¡ø;J´n„‰Ú¼¡nàŠ¿ŽbNºÅ¡ü “Ô8…£)ÉÄe`œÕ8¯­s¸À˦éHû¶ê,ªû +{°)ŒÆ²?;‹g²ÌFsÈ;Ïéž—8H:%ó刭 %/BQ»Jì v ´i;Ï ö\ åJcÚãûÞ‘5{>MSs:ëäuž¤L‘K|ŸRd9–ø^\߉v¹Lц•åâ”ãz¶°b¸‚øüQ÷ ©ï—ƯQ9*vhðt⋘‘÷äÈw Ÿ þN¶J³D~´•—÷æÖ1²áÎäNad†ŸX¯J<ë~ܵP½5¶Ó‰ªòã}[z+³Sk2;^Æ£®ˆG«¶`1q×B’ÿ¶t‘ IW${^ +åÁÈfyàR}ÆGô T“Ìác-6hÆSwKÎh4Áw‹R ‰ü®UJ»†zñí +À¬ø8MúN%ÈÊnlÒö¹»Ä½ï/ ÔŒíp¯:özâµZ»'$‚èÔ³ uøÁ kýNçðÁ}cI[ ÑA-!¿ÅdNbE÷‘à©YÃýÉ2Nȯ¨vúRAèú©Ð¡ÌÅP»ÑTÏ ¶Íã±ÄíU¼zJ!‰“Â×—eÄ›2úó¦Oê&–ž8'kÇ i2ø +5'-ø³¸ÆyC6„u-fœJô™uŠŒÀkmaò夀ö§7È +yø«¾õÄis+ú%åF¶Qìµ3~ÜhVÝ‘¡ÙÛeÿ'ÀàoŸ +endstream +endobj +70 0 obj +<< +/Filter /FlateDecode +/Length 6091 +>> +stream +H‰ÄWÛnÇ}çWôãÀ]NwOÏ0 D–#8°Ä¦‘‡(HŠ¤(ó&.)™Ÿºuwõ\–+ù!°ÌÝékÕ©sNýåáñêâäìÑ|óÍÑßÍÑ'ÏwOæÛo_½þμ:>¨M½q>Àߦñæáòàèͯµ¹ÜÛÿÖƚ㋃vÓÁø¯Ûc­ßø>ôÆ…M- ¸9XµÕñ‡ƒï¾ÿ Vý‹^ÂÿÇ?ýõ¦6¯ïþypô<À'·—fu~»~óª:úé»^×ùò0÷üOaã),Ÿb]oê¾ùòÙØzÓó—ÏÕ¹Þwìß+_ ›Æ¬6Õº3«¦Z[³2oàÇ~žWëfãÌ궪áb«wð¡ž>T0o]­{üJàÃÏí=~çw<ã¶rø±½ª`Ú§Êö¸ã9ïuRÙb zx->„?g°Y]ãÔ'z;^æ?ÇK¡]c£Âxt|,™«%\ŽÃe9XV˺ê–ƒõså<žö®’¸ôO1€Q ~À[\Áºø¶Z‡ ßaÀ(­­ç·>½/txâh[ßšÕIåZ\ù^Ôøà +oxcx~k8\'´B Haô Çû¢¢õñ-Åw¤s<à€¶œ×l†<“‚7ûXµ8Þðþé@¾?àñiåzÌ lŸç²z:õÃ9$Þ•×!€Üà Þ.@h…G¹×\_ÈïûÊÒéFò´Å#€æ[‚5MtÅ…a§!_d+_ˆäi>aKW¬κÀÑzOŠqZ(ÑËY8<²l¹dƒ®|À¨[Àh;ô›0špnΠW7<¹ÇÈEÎ\»ŽH-lÑ©ã%ú·œ©ÇÁ÷*ÉÝoÕš~ÿLXy뜫úBß臽z,mOUk3º¨Hà)c†ÀÓŽÀƒ)5y%¡§—Ä7LUT"—thÊ/ºoåm!²T ðvÀ0ÑŸ—º“P)Œ¯6æ5+ŸÊ6£\pµÉ‘òÅbNhk…Ÿš‡ ýAÅÝFÖiñl €Ç}Ö* ‘Š,"­÷›¡@šg"ãÅU|ŽK‰#£ed ÷ñk!UâB\;bý¹‚„x\6EtHŠ¸D­*Qɧ¹È©nx»gÝÿ_€ÑåI€Á€(“vrï5”$1 sö%Nú^Fª£ÛšÞSù¸ÃÓÞá'¡ÉÃÈC™zŠÇy¡n¯9„Üƨ3T÷†V7‚pû’¶›¢«…Œ$t]ãõD- ­tÄ蘖V,‡CÂ~d#awx¯(½©J,iõ!x™õ¦Z=AÖbo¸¦¥ý™…V¼Ž¢z%”z™D¡È?®Ç‰´á yK´7e„Ëß÷/FD—¡–±?Ÿ!í”C3‘³{œëEÌ¢Ï\,ÛŠJR²xyN?q/~¹,r0¤fY×[Q“VÀ>Í,}B8}®¼×ØÆðQ4×,hP‡œŸñ½ÞŸ}©±èŠç™/@Ž æ»…V×íq¸³ôÈ‘OÎ6…Õ4NŒPÏgì$h_b YÎ…öR]öRs|bÄQ¾áK.VN¤°åäß'ïHÇM·‰“¢`ÎÊl+Wà*IÒ)5#gÉEG[BÝFð ¢cH¥óç¸;Hí6_ÏÝ_ŒÈýbl¬jB¶ë½Ädš÷‰Þ&_!æƇž¿Êz¡½¾¼Ðk +ÉÔç©ý¢HÄ ÄQóf[ÊÁ€³Þ³mô 6’0®Y²¶±¹ÈÖ3q|CÞuÚ_›•>^Qµ2~gk0Ó&%ÏÂ!Åðtš•~‘Ì$Ø|ìae>Ó5.ù¼'ˆúz"1£ˆm‚"וmÂHàvsW šT„ÅgB_©ES´Be×'³§ÑñcÃÛçD4:¢¶cˆõL§+¶H!_Îê­2Ω^òˆ™ ŒøgÝð' ól[ hW{´¯Z$¡Ìª*]]6!£<%¦u¾óᾈ²… Z×. "Ð]nrëÓ«’:ãh2J9œÈéY|ÇÒCÎ"/æ²(MæJ^ËÍ9–?øÄ9U3âÁ†Ò¼¬˜“äÊ™ž ']¶a§L͉TYzhÖ}iÍL®#BÔÄY¦+¡¢u;ÚײÙ:nÜFs|fD~+…¡W¦?ÙØF9°Óy +Ì‚¹1_·EG µ›=Ã0Ê팗5„ŽÇšóÁѽÃÙ”uø¤±Æמ°£Œ¯™o5{ÕÓ|m«©ÓÚ¿hT^4y^EEŸšD"ï¦à/+%[Sà Å =Dh1EÃÈ¿Í%µƼ¦'‚×Z¢ÔôýP@ LÁñ‡=ÖoÆ‚Ú1†éË"†ûF5wh ˆŠ÷»S˜Ü‰k§à]©÷.Œö2ûô†&/½b|Vµz¡B+]E ¦$0Á +€yxÈOMªÃÏØ %ª©ä8‰óˆâuÕø™E'UC¨jsϳËxL 0 ™—‰t2''uº}«Û¦]îÒîÒáf…¿tc9çT™&5RN\Ó²¹ 4?|µ%¾4¬‚Ǧ·ï +X­Ì~µÒjüÖ¼W]­ú—]–¸+-±Ó–xÖ±¶¥•ØíY9ìιò;ü«S®QFOl?V²œŠázõXbz/Üó0e¬Qf»¯°{Ô6Ê®öÉ5rQfx #àJÍ4™Û}œàé9l舯•æJb×ÀÞöD"ÑòF—‡G&ƒ•:EÏS|±Z.(†m_ ù± +5K êƒ2©M„kzH]GË8I&aDMçýü$¶DEØS>-vIŠƒN +S¡÷ú^UÒ«˜TÙ@{”“¨7~ngÄ.»Øì«ÕTö-ˆ7 žûN\íE©ÌN¢¤E|Öe ‡å÷ÇGSpŒk—ô§éjew3!“sZG}?ãJŒÔyZY_ÔsÒ¹Jä6`Q°°›ëŠnn—1Ô'ê‰Ë“é™cœ»§¤`¤byÛ˜ß*GçV<*ìoÕQ²Ûß>õHíØÒ´+3Çû¼C•or¥XZ:±ÄÇ“E/GöxA¾BACˆº¦C4¸îú®À¬~üaÅÛ…¾Ì.Úét½+œR,BÓgL'åÁSé?s‘nMUÇXÒû\‘ɳ\q“”c-¨cíUæV”´ÀµLÐ6Ö>š¸7[Ç}ÅY:*®CYç:02§w«ßïÔ!ÍCŠgΈ±tŸü~Ê96É 8®IñlnÖ H7?‡@éR_îÛ„ bИ)©7 coР¼LÛ¦å…u³=+oÉëTÈV³Õ—¹¹®`Úºí—ð >m‡ÓÏÞgäš½‘(q|üR”ø¼Ô͉ÏRƒ4ûïñ%Ñ‘mÿ<Ùd©ÄL’$yÍÔ©iñr£ò äõÏزÐã¾¼(Å.°o$1ñ¸ì©" è –,ÎÌëÉG>E×8dÁ +`kVû ½Z?BˆýóUÖ7r„ÿ +CÀš°»É&‰<kd±/A°QeKZïúH$ÛYï¯O×Õ]}PÓ’±@ž4š!û¨úê;ŽΛüþßØ«?æM£{;`„[¸ú¢ä5M|þëYœ÷9 OëƒÒû†ÒÛФôÃÈ<èss§;Ó¬/HlÓãÌì\Üø†ß»¶óBñö{™Ü)=U]H‹‰ì‘Õ‚MœN«Zº„A¾ñëTÏXନ…O¦­ßŒ3é8t²+¯ž¤å{!·†ÔvZImÃF¾†#ØâÇÐO “Ç|xŽ«‚{ý·àJx4t­høº¨H@Ò“[ª¢rvŒ7oÔ’ú@'N&Ôy]ìú}³áÁg 1çʼn†V0ÏyšÁÍá©ã}i¢ž Àñ;ÆS3õÂÍMÓ‘»[ì÷¹}W9äX‡®GGW·xèòúÁ!úà {—œ—8þKêH”­h»‘SnM|¶RpŸCÆÉ€ óg@šÑÙÂÍ¢² ßpt—ðϦñnˆ=o*m +'–U[앧?³ÆwŒE˜¶¡!6”#,¾ù†‡|ÊOdƒ£û£ꃇ9—,B£f(I£"ÐmG²p“=ÀÞ´îGØÛ•,^gã‚Ò2Üo)·*ÆW)Ôj2{Ìf+<_Û!+žØ¤*ˆX¾ŒŽ§W¿2£_ó,Vü›£8OO"ýÑXyîi+GVÂyHR±’53&O4§±€;E¹sª Ô~KN£Cô¥ØÈ<È8ÅÎt…{Öî£[fÝäÎÛ·5ƒ\X½ ØsØ-<¯F%/éúR*VNm³mÎH¯‚¹[ÙÜmhîཨIì»’½‹)44ĈS tFÓF ìðÌ{tTÁ 9¶×œÓjY‹x¤>üøÍÁ(ž°Y«˜!B *DýX%|dkç¬i5ÂÓ[åz<(;ÍÝD*.Ô: +"}°\*Xž¦­TbçC4qƒ[VB~[£ù úœ6 skZê‚öÎÒZFq8,AÄÎpe­·)ß1Ú,zTÙtVÛ÷±»®`£C­Zõƒ÷m °CJV×Êðu"«@(`3ßÉΟb”*×ð’‘üŠú±——|ž@§õH g§,¥RÉs³ã^ú÷5Ûù?çÜßb~žé{Œ¸hµT1Òn™’¨¢·Ê­Ñpõ‡qqù8qã†à¡ +\'0,ö÷af+z ‰V P%çwœe$`¼Nf¦‚e ù4kH«CQ×ÒªÙÍ+«v9îØȘt •§-â´>eÀØFý~Ùõ/ÈÀÑ°ŽîòðÝžUÑÎsÆJÙÝ`ÑÅU'×Fü®:؃øåYˆ?}Q(OÂñàð鯭Dôýˆ®!Ë7kæS@h/³”x,¼Ã+ñ]i¾nFÜò ˆÃ,ü†ð·3€äóy|{(n"øH +ÉÒ‘@Ýó%~ªLØ˓˱³MˆT°éE¤Ïs˜Ù\³µ»rÍ£áÎU÷TM¶mMvR?‚]–Írî Ü´ÑÜpž¤8QÏ3¯xúw€»-^‡}šE1v¤S~›rnºõ±õxNFŒD9e­y#æ—q­ülî¯ÐÍ<ô¢x-ÕÞÁ-ÐVJ%!Ý¢¿àõNÃàve{Î'e¿!äAãÐGÒÔpö;1œœÎBÈzó,,Ü™p*I‰ÏJ€3ÛÈÝŠ$c5’ëÉl!ìÒПùºÖNç ©T'Ö¶cÆL0›Œ +4z¸-tmyO„bðÀT¿êQª‡çÿHÒ¶ôK[kÈA»6Ö.—¤Ò.ôE‘MOª5ÒÖ¤:5Hdw×c»»ž¼þVT¹è)™ìäã oškÈOôzµ]õ÷—æ_¡­Ãå-eX‹Þ> cûfSëÍìÁ<[j½Ñ,œ°7á¬K€a1ßÁÅ 7®&·†ÃåÝìºÃ3x‹dîĽýÄ$ 3è|oúnfEßîr¢Ë¡'…ÎÛ¢Íü¸õ]ëÏÁ¨oäŒöìzÚ"¹¼eœ¥<á–ß-5õe¦¥`‹ ó%Mž¾ØFUpåB\é5Wjÿ˜ÙW66±5/Q急z$úF‰tCÅ-Çôú‘ëp;Ô.*Œ«$‡yap/€VøAÂaU¿vÒ¥5…4Ïë |Dرär4«Ì^‡Þ9 rWåL»áñUR<‘Ñ_•‰4¿â^ú¡¤Â? ’¥úi„äôb¨ôD¶0¸eš¶¤…%D‚ˆpžÑŠ*:0€Þ">0Þú±x“# n=DfãSô¥c(ü·2Äú¾\¹Ï“\¡µ%ôŽ\¡ -™#ôªò¾%1J¦ê.‘ÒËáßÔÍLïO`»ºL®Ùv.Sšx•g |Er±ãå†ü`¬â‡^AXôXYô‘/‚ÛÑóDC*Uc'èTè’9B® +h“6qÿä]ÕÛ‘G‡ÿ^YkÇmyæ\–{;ÔÓi:Ù¹»h›ÞôO¸bFúsi‹ˆ)úž\û%í9Ÿ–Œ¦ì›V`J""llö™p +À£ï,Â;áAÞ]1…˜^>-¢zŠ\¹‘šâÒ¢®¹AFwjà_Ký—½lBÅØväÉ5Ã'ŸñÿÄÓ›ËÍú€7Ç’%l9›Åg  G¾ü¹cÝE­ÛÀñæO“õ;Á¸Ç€I|#%zÞ€Á€ªé‹‚?#‹"Ü{ª=ÔþOá ãȧ;­åˆ€4@Ìo}ñLÛ:`[]ÙÖ…Ûê˶f1³á<@÷Že.è=q ÁªÐ;_G»Ó#|\Ò£O"7‰¹šur¶úŸ¶ÌL­ +endstream +endobj +71 0 obj +<< +/Filter /FlateDecode +/Length 5634 +>> +stream +H‰¬WYoÝÆ~ׯ˜G `Rœ…C²1 $v’&pд½@’"ä«¥¶–\Iq”_ß³ÍÂåÊTÖÝÈáÌ9ßvŽ¾ÜÝ_žŸÞ«—/þ¡ŽÞ?Þ<Ü«W¯¾zóZ|µ9hTS[×Â_ïÚ}ûïFßmÌ/2jsvê.€]Ý*?tu|P¶­Û6ÀW‡ÞüïàëÍÁ×?Àª¿Â¢çðóö蛫F½¹9øçÁѸ·Ç×çêp{]}û•>úáõwo”³a¼…Ï|»0¼‹lÂþѨ¾­7xÕÙ¾†!à~:Üè¡íÞ¨wÚz|½ÖÆÕß]èªÅߎueLmÔáÞÀç+…ßôµS‡p±¯uøNÝëïºÓ}Ý«Ã WÀ/·šþx¼ÿFÃ:¯cqå{õAóB7º +øÓ©®|MÏü è«¿²_oµ µÅϦÅÏð;<âRÛ€ ÝëÊ6¸“K|ü¼ÅSÀŠwê ¿ ² øe§n5]ºÕv¼ Ç[µƒ{ ¾ýUÜî|ôøæ’ ±KkkK¯ÓÿÝ|Ÿ:º¿{Ý*(½¶J5qP”¯íƒê¨ÀÐvØ×MÓ¸Wö?¶/—L°/ÙûuK+q-lœU›*#Ò4]ݙЎžýÓá—P\hÊ5 Ì>jk°µ‡±î×З¡h±®<·úFZy¦N4¡+`Ÿï ¶Ð¸ Åoá» YBAO_µ{€AÈ‹'¨kÓánà{BÍ;aCK—´øà–ð‹Ê 5¡óÏ.~ +t²xÏ|àáwx£¡ Çb¹Ñº ^!¸ ´ô·8ð[¼§ÃÎé$Ì¢ãÂQâVÕ:2¸¦€Âj¸9Uòf/a°u3´"a·('¤$"íÕ9’'úeiëWðE‹{Ã7Ï +‡v ãù˜¤U_¬Ü½y&•:lJêÐEÈ©Ö“HµŸÔ“%W’j·žÔÖìkRñìLj`–wÔýQ ©â7wJ³;%´Îy;'È€ ŸAÓ;¼çkõ%qó‚J0»mBK¢Ëïl[÷s†ó¶æ›¹Å¢3DÃëwJæT`±ŒG ŽÇ7lŒ[íàÓ •ž_%á‹7ð> +²ÎÆÐæÎÁ¿Åɵu¸ÌÇgq]öÛ +Óý_Àt?ÂÕØØs‚ †‰NÂY?õvœàƒ……ƒÑ¹sRtˆÆ0àïwê#ÓòÄØ3ºÏÆž†*Âå_¬-[û™i!ø¡öÏ–ð”°Œ—\+,ÝJaÏÚ—Ê'ƒ¬HÃBÊdTrV©}É‹@à¶a9:â`¥@|Œ}êГ=KVŒŸ+@‡Aªbú”L"!2â†NÛáÂr2¨yFŽ/m}$5 ,¡ë‚ÛxAÜ;'Û !‚ÃÂ4<àïÜ-\"Ç6tFD¨Ø$YL.Ÿ/e1j`Ai²X ÷~J€Û„,LG¦BóQv¬¡7Ҷߴ£oÕ¯ +¤ä@C5x¤‰h5M‡Ï¥)(Vólšúæ)šŽ—\ISoVÓ´`O‡ŠGÿtøZO&É-|aY)›b°ú Ê_DCÓ8Ê&Ížs‰Ý¨›}¼Óüd’zñÔ†3 LÏ䲩¢G:’ìáDŽKÉ k +ÂŽ5‡¶^\LÇ&Üâç?„žãL½p6$U(ã“l;;â‚ë>]æ2Æ‘µg‹Y&²´&8Úmç!(nN±ÖÖQÉ—™½Çœ1O¶ø­ì„$Úf‘û'™\À_Š³ãPéØP,_È(–¾“'ŒÅ¤™K9a#–ˆŠ1&R’{ + ù+õHê­*’μ'ùÁ¼Ì9^Üç+²WШy¯tÅ',)eGG‰´ñ¸Nf=,H†Zµ¼*û€e/6šÐ”wE0¶l'+!äž=U¶0UæäyL#"æÁv–Ø°#b‹¬? !„-õ‡Ã„¸BuèR;îWÅv{¯ÄÑ4l+‚måή&Oã¹´^yìIÄ>Uxvö9@‰“DšÃAgÃ,Uƒ4°hàTžÒtGHÊicÂ_`Fay]¼ˆqGâö^]Å‹/!Сýc +¢ŪÀÏ’y#©\Š1w Þ‹ù9wª“­eÄ[TØ®H¤…sSé±ê½vÌWöÇÆ´È!2õ8_QøÄdÒìRNfÍ‹Iy<$ ŒêÙ‰i¹š™Tĸ[vr•ÈX¯-ž¹mÙÌz–|¥YçáÓZ ®0‘aD×éº<4t€OèºÅ#a†OŠyº• v‡b˯ƒ gH“LX/”å(z´1¿‰´äÄÔvÚ¥M»ôC_÷¾µ¼K‡$m®¨àA‘‚r¾`D÷œl´üø;¼šHrÔ[8¥ƒ#hBᆟNW§'ôÒøŒ5r,°¸Iõ}Ô°]ÏçúO1ê£IåØÚÅy5f•”–lgš¹™`)‘£å@ÇT9ãsøÖ1¬ä„ß.òÞ±hÏ]wCêÃJ÷ ‹pÚq ‰ÆN$§q'¢èA=o÷SLßÇ,ž¢/¿kO`®H“B1†°úŸ@^ÅrKO×TüŒõ6F{:Ö.&*_X +“³N®Äâ0Í Í xH$kÚn„<8þšñ´möD;#ÖµˆpH:íFøÄýwRVŠ+Ž}$æÊ‹ÄßãTEÈh8àfm¥¶$Ô­Lâ­*R1™Ë•À'ß}&*˜ëï˜Ô¨œLfd H²ïÙ<ìÀ5䌳4ÓíI3€:WF£d×¼?ô ++¶ihg3Ã2”—Ïð´Älöòå¦PgzÀCL]£ŽyÛ+]©5£Èc`ÞÜ‹›F˜„¤¥aZöt\š^RÎÈóç$™•Á¦›èT=' åèÄY|FÖ¹¬•­OÓêL–³æÌ'ÀI º›ÑàöA¥“Kg'™'ªƒd‡µúî§^—a/Íyƒ Q%§{FÎyNcp‰›Áf;w–ôK1b\c¾CîªSÞç,óÇ­ESBò\2¢°§ÏA–‡iðå½Èò°¿„¬Y#=)ÿp—Š™Ýt¬â9Ͳ( ¥ÂlKD#¼#«^11P1<¿Xôéµöä&æä¦æ4HÞ™À7[%e#öoäø °­$uÆiËB c„øâ +õ³µF÷ Ôàæ=ö™ÃŠpG”³\'‘1ÇÉÀ˜„‡4ËTœôþbn‘·px¬Å9ÕssýÕ´ ø:(¹çØh¦µ6ê÷Øh3¸ý …~ùB«qfJÄŠÎÖÃjõja·@á”ý&œŒJéðeΰ°4²½½ÑŽrß¿©±/ãXš÷¦©ò9-oÕ +œ­SdEì@U@8£ù»V.ûæç½WqpS¹€9i§LÀ³Cµ²ïx\ï§9ÊLüÏEnÇàIuÖ f;A¡|°—<¥•adšwØCȪ/ +—Ô¬€“ 1^Ô$ÈSùä{Uµ¨ö1uZð+¹³Jvê,F¶Ú©ä*ï^Liz©Õß1•ux ÆÑ ’*éði‚Š ôë‹U 4)ë°è±\œû§hž¢µÏF´ä#ã öëÆŽmöÂÏØæâYT +Ë&™&¸°@$p¨Ž[šiËr¤ðT¸¥÷‚¢U1%ßR°zäê.{ÇÁ^6» R褣NæÔ1rÅKˆV¹í›¡°iX^¨œ UÆ=áiš’³².doòÖé0ƒ¶LAñ¼;Y±¥ëÐÔ=ôK@­5í~Ñ´—ñÚ»btIQ½K}*»ô +TwÜ#š"iä¡?Qo¥'¤ˆý¬ Ý¢2”À¡‰ +Üc÷$´(3)ŒEPæÖ–ƒÂhæ‰CÕd!G°{¸"[Yõâˆ%™¢4Íw§ ÇÕñ…šªê«“éÄVÚ@iïíÈ:ä©/c'#"ÜjVPêc½C—£ùÅ(¸3‚J彤y=CÈfyS7=D‚ãÔšëÛÁ^Af¿Á¢èÐh×¢VR:ë‰~_µåÐŒ¶¼ixÇlÖ ´Ùÿó^&½qAþ+]{õÂæŸdKd³»úÕ«ï…Jí}¢¾8Úê§Ãz¢pÀŸ¯6ì±²*]&=b–{xz†‹f©ÑËjäøŽõèÜ*¹¿ŸF&6]ãHXj^c㮸!ï”7S&ÃŽòß릌à|Ýùä«™hn±iïm|£¨Õ*ÝÏÎ\˜Hnö—l„Ö¯ÍVyCðv2Ѹä*;Z6 ½ …‹ž¶DcVEeÓFÁQN‰Ž–êÑO”ð"ß$·õÃŒÞÏ où]/D’¢ÇÚ)+jW[«+¬0%¼±D>s£jEù£7б8=”nØÑÓ+¡¤ Ÿ›"PÄaS×¼ú_—ëë¬E~°¦¼fg.ðè ÌKxÂþ9ÒµtɲOp}Ž^k€§¸ö™Øvâ@rx퇶ŽûuNßûá?G4‡ø¯Bò銲ù¬…r¥çÄàKKQêDÂS“Äe\v¤¥LÊJß#lf.¦ê7ÀŽÒ=î( €™™.ÂŒ_˜®·gò}R:© +¢ÏdèÃã\‹{Oçe 1>:7…††¬y +í“ã¸CŽ^3{å8årܲÕ~I†£r¤©ó©ù™úô†l²Él×ÁõŽ¯6’Ð?=lðN;° ¼ Ó@S¥+·‘ âÌŸ‰WøþWñQý†ˆ•u¾Nø ±8 «¶Xq@™>x´£ÞËÕyý˜™$›uºõ•Ý|ö'bG’ÁànFÏLz,I®ÌD;U3—L7d3.(ÔµAÜÑ]¶E3I-dI ‡ +Þ¦PÝ +ÏZ5æ¬çÍhônT¾r ¿JGäFáw+-«¾3Ê ‘VÔp»^oH¾È#&u›þ*Aô¯p›”ýFZÅØpÚ{P0_—˜òâù†lrì=ßN¡-™=…dˆm'—¬v÷°¡É“•`=Ò…ÒÉ+²é~OY}å†P¸@ äÂç7 ©c©qwéfŠb¤Š[܈ µªSÑWu©úuvZI2#h!+Ž@¶4ÕÒLšºòñËè` +pÞÒó†…@«»?•làúœ;¥å'‰+¹Zù-÷v*kÍ_ØRVª„ѼKB༖úºû?ƒaÙüõ<<&–Œ¹„¾ÉÓØ_ïÅÌ[À˜Õ5ûp®lˆ=’ë.¹9G9’º>Ò÷ ]Œ¸¨ÞÝ7‡Ò~þ£»å„é}‹øøh2ƒrr› +r›jróå$+Ù‚ãÕ>]̧m\WM€ ÝT³„—óœ|ù%¾rÁ–acÞÀÆ ÔtŽ?wåQVž&¬÷õó£$Í 0:^dg[ò¹k,‚ú•t&¢|#?~„ +ì~>P"¸Q©Cå¹×F4[m@Ò»Þyé!3kaá4_Ï!%®ršað'ª¥Þ¥)9f›©¡0ýæØÏ× ÛÝâB%Ô›d€‚È>g=1<ÂÕ#V|´9ôíCg’™ôÔ2xzÀÕÞš>c"O®:üåå'(¸sæ¬ÀÌÌãC +Ógw¤[GÚ+r)—„·…ÿÞiBSdSå™=_à÷£ÉÜçd\Ûf–Á!06ÑP¹ÿCËÔõ$bÂ|![ó€xŸê]–0sÉG¨F, öîU—U ‰µ¥{ü><¿øÒ‘û÷åS2Ò¤l”PLNN¸ÓLfŸ©Ñ·Ú/ÏEgT;sóŽØ”Ï® +÷¬ƒ[Ú¦9µB'ùh¬#&<ºãîÓÐiÚS\ç6s*íÅ Oˆð9FX& |ž¿'Xþ Öí‘g˜ï*_x8`JÑkbðÑ j]ú)­:éï#ÿ¾/,}¸¢ü +?çÌ +NÉI1õQ®ÑÇ”·%Ë <ª©9h€[dÜÁä·arÍ<¹¦Æä Å;5l–šÈÄfšä5ëiA¿¯-b§¸ÆËH¦Éa®²÷¦é?Ám,ž/]³,¹Ïrò º1ïa4¹ÙÈÉ‘žÉ…äsÉ/ [—xÍÑÔ m®Åf#Û›á¯/péã9ÃÀíCÞÌ7G,ŒÀüЙn5]<Ô(àEbëKÕÂ> n£> +stream +H‰´WÛnÜF}×Wô£„#6»Ù$ @ly,œlÖž}Z/‚‘4’ë–‘d­öë·n}ãE¢bA¢ ÙÍ®®:uΩƒww秛ã;õý÷ÿPï6×÷wê‡^¾V{¯Ö{•ªVµià¿Öµ;Û;xû¡Rg·{ký[¥´ZŸî¹U àŸvÕ(­ÍÊtM§êfÕ4\îíwÅú÷½7ë½7?ÃWÿ€žÁ¿ëw»¬ÔáõÞ?÷~ÅÞm®ÎÔþöª|ûª8øùõO‡ÊtuŒÂ3?cÚG¡9Š²ZUü:VòãAéjÕñ–:ÆÕÖ¼o{ ìßû¦èWVí¯ŠR»•Qi©Õ¾ú±ÐvÕªýゞʟëû«¢ÅåwEià®û›B¯jµT”5®¾Øòny|UT¸è„‡‹vE6^´ïö¦ÐáÙŽwÁ§,/‘ÿ³þ{Há|ºL’®ƒõZ*TIZjN‹æ¤è$)º^™¾rœ”÷<ï1†C8‡ëÕ„«ñù]a9ÄvqŸÁý:Œ[kÎIMÉ‚ûÖt“óBwø÷ºà ©Û¢Ã[ßãsØx%ÐøÇâŸkü ¥©„˜`Û¬w+§ö?eƒ7ðFãÒ ø .ÔÑVAÈôŠr|‹KkJ"ÝàDáá¿ÃhùsŽî¨ ù ÞO4Ùmu…¥/{ºá䦨ióFÙÑ ÀWàÉ)VŸ~!hB†ïk¼sÉ)¤Tv”¥_o —‘˜¥óøjüçßÚ ,P?”¶nAV'NžŒ°NuÇ;† £ˆQÉ ´ÿ šž¿Sð8bJ| (YÜiwŸYà½4s’'§idvŒL÷5ÈŒ¬¹c±²Æà“À ™tUœÒ’¸~–¬%L%<}ê(›ZEJëÐy]j—qÁä]µt{HZÃ/Ž\ˆÈ¾ RÏš­ºMŒûCa€Á‘¡H?Öu]tÍX ÅpMî³q_-d'yiYô—2ŽFÈ /G|©"Á*ÌIQÓ«`(õ"ÈbŸ DD˜Ù)í¸f)8 £[5°<2)Z1F‰Pz¥÷I¢ ¥$õã~ÑÉJ8‚Ôd«~ÂÅ°ùPæCXñž [>(‹ +Ç­ÐËÀÇÇUQuÂHÏ•AЕѮ/˜ëàšrô×·`ðæÀü‰™‹b|·O†Z“aFÃvIÀ‘=1P‹ÅZ¦Èì—Ô¡œ`©µ>…­I¶V¹Îí5Ü$¯´qà¹jú.±×ï1¿}b6Ÿ7*/áÀçlJç“â0)‘püXƳWÑ1½½Vk$õ[þøé£5÷s;aÜÄ“pˆD,‡]ÈHç†[žŠ>ᆡHá&üœ—#`æ.sµO’@ê37áV²ý˜z¥e0óß íèÆex6\ÿ¾à»6·ÚÚÌJÓY´Ú‚5Ï×aØõ}ì–š+Â{­OôX룃­Iæ 2=é#/.k÷N°ÓatXø¤4u#¤<˜K]Þ þž““éÜ­ý‰3Ó–ÕÑ%M»S~èbð_„“ÚL?!ïÁdz«™cÌÜ–û˜»É<ÑMeϹx‚‚¨»å3]ß 8MÏ­­Ð‘733]âžë”Û$ÌdD5x¿#¤©û¢¶Þ7é8ŠùlȨ#(Zb*Ô•]J4—ÖÏ72LÍ MÆsSM²ëmu"ÆÁóóT«H½Í;ƒQÓZÌ‹ üV§ÝÆ_gMãkjüä×ÄÉä ßO˜vUT™/˜09ÊÃôò§MãB|¹_Õœ¿n‡þZ𕈅˜Fë ¡<Ì‚ªZÚO¤@ *`Çlà?ÅŒ6Kf’ïd~B¥jE©Ú)¥š°Z°à5‰—ýà^ƒZEaÏ3À¦â;$¦!£YÍl‚ß‹dÅ'ÜESKM–ïAÆs ºÀ}rÔ ±B?Ãm i¶f +•DÌ¥uHÚ%*šd©ŠvÉw§0guâÈ׳eÙú̘Oßé*àCa;ìkÂMÁ}µóŸôƒŽ!;}/¯¹¶qbø,5°ý`ڭ쌃œr°,o´ˆL¿v©éýÊàÓe¬2–1ñ¥¥ÈÙ÷íû}˜ü k°ú"Þý¢àÇ#¿‰Í‚r©Òþ9IúÕL]€f‘ +6$ŸŠÍ\m„¢¼ëðš?ê•0zÉÌER»Ê‚òÑØŠ¯*›Ø1‘·MºÐ×d¤¾ D—¿£;ôKM­­ª%í˜@dY;ÚJçZдsZ€Ýàw™b#EÓx6Ip% ˜Z× C`¬Ùx_ò¬&HÙ… Îe`Úñ0s]âF ˜»ä› ÿHŽý37ŸÝ r\îAƒêÃ~n~Ìx-éÊÝ æYNƒÖÜ‚ÏL´AÙ‚µžk”íûļŽ;5!îÌÛáÏ×nÒÖóe¢’çÑI]µå*£ØÖìࢰFãvƒÛɘp?ÐãÑ? %mhtòþe¾†6Øþ5©É>-S[¥3ïÁZÿ‰VëS°wÇ*ú<û¨uR rg-× „ÓÃÔ¾úEÔuîþNRp~}µa— D:ôÈë7W'üãBLÌ5ý/ =~fjÓµ4Ò&SB™6˜´eI°YÖç âëkkæ–£ª];TÖŽ”*Ñ3ôÂÞ& b“aË‹IÉ맘LŠÈ£‚Qý8§ÔýW+5ê4˜$Æ.H§N# Í°QO÷¸¸Kr"‰Æ8üˆÄëf)5eÝ |]€ÂC’f_VIæD^¯ÂÀñì¼6H'²CË$TÎÜóÕÀ¿Hƒ,ˆ¥ðÒÆo0ò.&[%*Ü{n¢?FÏàû$¨Žš˜ŠAkGˆ`Z]©5·JÈWĶ7õºÅ¡e`üvTu"ò%h#¨K&PÍþQGvOèðÓã¡t\à…`sCC¯çÀàwlÓâÝq?RöÛœnFÂ=55rVã­:ݱ,{#Ýx⺋]ºLÚðÙ§õ»dÊ}@÷ë’qE$®¡’˜Ò¥c–cƒæ§-ABiÅA¼Î)¹Ñ(?ßAgµx]Ç*Û1rúaNÜ,{©~zƒ2a¦Îøà’Rn’ÏƾÀDµCÍ‘–é;SùÔpQ;k®Bêaë” +Td¥¯c¯6#m²¦úö$´ BiNƒúµ@êxh /þâÁ£`Ä­2õΞžû0Œ, ‚>~ŠB¯Ë‡Ânx\%oäUºIƒ4ß¾øÏÚŽ$/Þ4—¯àbÝ£Õ¢IÈj[44`/8ü; ûĉȔª…ŠùeHe>Å->½™ BbGå!;}P˜9ûE]‘Mz¥ËÇÌhXõˆhâ™Â`þO{µ4ÇQá¿2G¦ŠÝš‘Fš™;UŠŽ¹dmBl“r€`~=ê‡Z-ifW'';ήÔêþú{xb@£.à2b@Éî>%Óu±¾Ft­ éÐ΃òäšvÝŸ]ö·qñ;È\—÷.…ß^®A1Ô©ýƒ¿¿tréã©Œ­ˆpÏì9ÑqqʉVÌüˆô°*ç$Áv¢ÿéíf|xÜC÷ aŸ[ FûuâÈŠ2i™à»¸¤‰pÎ¥ÜyÃÁeÓ_Ì°ŸzšfáÅo»$RžŠb`ߘìßxþ±+ÝB¡[°1%õ1lÂ}/½ác‡þ`!©ŽD;ž-Ï.‚µD¾ [Ú AÑ<*¿ö×°`Þȇ¥ä%]§ÿþ=lkFΚå2Þ€:×>»«ªj¯z"5´6ïj^ +Ô×ÿǽÌ\¨Ìš¬å¶TCjXiCÇhSrB×miµÎSÁö %*–Èp¥ ­]Úe[Ú«ùŒ·‚`3:Ÿ!*€ºÉ[-9çU¦]ÐêfåÚµø¸r„.™¬½ë 'í íLŒÉ}¯“ejîk„­1…úz9e ”ý±VE²íéö"”¦e4½n æ7( dÊJÙ±6žtõ ,“¿Ʋ¼6è­-ÐSðh„ž +¦ /ÝÁÞd”¯—9½ÁNKµ´bE,þ™7‚IaSþ”]Y‰­ÌN;eœ~œ[£ò? Ö,G€ÅÚ!vFþ5Uç m 6ÓZÁ™­ ;o¹ÅR/ ÁûÞæVN6SZËBð.…(fÖD}''M\{ËF >”N¤ ¼vÜoÂøWÁWâwqCØ6p{”,ãÙd’‘ó¼âç,»çöCˆMfÿIŠåwâ¾zò‹@YÈQd0°óù1ëáìJ½J +J™.kŸ˜ögk±ðx¥f·À"Äob|¤SYlÅÊûV}M9Q¬âš[žm(  =@ýøäj¤<í=6c›fïȘÈúÑb±ðº,?™ìÐÄt1’Ða·Õ%ß·ˆTåþ¾fß –£ëë +endstream +endobj +73 0 obj +<< +/Filter /FlateDecode +/Length 5325 +>> +stream +H‰ÄWioÇýÎ_ÑÙ€f8}LÏ d°$Çp 9Ž¼F>ı¼qIf—²ÌŸ:úœC)ÃÚåìtu¯^½:ùnÿxs¹={ß|sò7qòzûtÿþQ|ûí‹W/ÅÑ‹ÍQ#šZ›þµÖˆýÕÑÉ¿4âêpt²Q¿7B‰Íå‘«;xþëêVØ¡«{gÐmݶ^Øróï£ï7Gß¿«ÿ£WðÿæõÉ_vxuô÷£“ŸÑ×Û»+q|qWýðBž¼yùã+aMW:#ðÎwè…b/6Þ‰¦n'6„Rü–}[7f°¢Ó}= ƒCWþyüBê¦Äñ{©†ºÇOÒ ßÇ•T>¿‘•ÖµÇwâRVªÇ{ik-Žï%½¿ï¤ÁR©Ú±ÃoðÓÅîôBêÚà‘J×pô î¥jñۥ؂5U+úQÁùx +ßûçpC¿®ñrSQ‘À¸åiF°Ì:âŒ]†J÷ɸ¬¾´Ãó§ Ú—Vž—ãÊgç9í<´øUE.]‹ô•±|!î0Ô5v')?Hƒ?kêP +—’KÑîÉÌ€çVÒ6k™Áf% ­Êìα„ CË@̘„b¥Þ‚Ø=T\•{nÉIF}üSv;HNœ0£1“ñÍÊàÑk ¸u ˆ­s$U]d—)Œ1¥±î„Ëqéž}‰Bö9T³ç»ô›ÄŒÅί²"Ã?qÿ™ŒÂ"©†‰"T¡Ÿ?HM6nc‡” lò¼î0 CébËŽw9L-£­¢^<àqø»^‰6¡'°âáWáôÓbs&ü€aö 5:¢Æµ0›[£5F;ÕÒQY•´DN dE‹·RåŽ^a“ãt¼¿ÛJb7H +Öïö‰ß?@…ÎœJ¡µüléÓ`ü÷˜s‡O/°3³.fSÄç½ÖuóTí¬FáÒs¬?Òí +áv@Ï\ç¡w·yÞHó‰ò@”ý'qtÜóPž§L¥•G~F×E®Læô€ÆÈH–UWºÖ7ÕJ<µË3¾mF›MÇbÝŒwNµ^PàÒ›v` îãŠD¦/41ÐÉÚÐû¡åûhË,Ø¥Maz§v&é÷¹yÂZäùZv%©5j,  +kÁ2!„Ùͬ¢:r¾÷Kz߇ä&*ýOiùɽó³¦ÏæëšY3wU*À¥_Ä"ˆâ\—«°ªÞ‰4Î ¢U˜ž¨tÒ§RïƒöS_,ÐÄ?rBZP{¯ò Ȧ2“,½V-|Èâ^  ~‹åèYËbCÌƸ`™ËS ¦ ˆ"N µØðhˆ¨MÌÈPxC¡Ö)QÛ ÛJžÏჇXäº~ÖŒï£Ù±¹ø<0á]O„_Ý·ËRS¯NÑŸ 6šÞ1WqEË9v–">W®®ÃdÛŒ°³ ÕÚNeb>­c£‰D¹¿Í›*×ð ÑTŸD䟪(ªdÔlÓ´‹| +ðò­²Ðû#ÛF)æA£ï³ªÂ‹= á;¤5MÑŒ*ØI‡Òs—mƽóñQµŠ×ÅûD‚I¶á ÿZƒFh˜+jGG¯ +ظ4úû +¯·øihÀ¾¥Ó(E+ yPãOpÈJx¯±+1¤–y-âß&rÏK Ï®&ÈL/üÌ›S&:뚟q”ÐVС‘¯ñ£²º]=;ß ø K¬Ácú—ÅŒ?ÒÁ1PÜVãÏõÊüé,'õ» -.ÀݦÑbs&üHlþPjuJ-„§{øB©5’ –Ž’¡ä@ÿVà"B±ÛˆÇ L‘Uð彤ôØð#¥é|e¦bÓp »uœ……ßVìû[,Y1¨3¥òÑÑ~¢Ë4–5*\jÄ*9`ó>6G€B!®£xlrEAÎLMh>´ëÌÂå¼–¢ÚááiE™8ß5{‚=qDm£6ÈzÏáf îÒ‹*Äü‘ÐÏ`†6ÅÊS;n1”½S°š¯:SíÆ*Ý¡JŸ°ãJXÙrCëD·íµHÄDЋ&ǧUdâ.)£™™êð¹J­`“œÜ‘Ú¼>JÜGt6RN…á9{E!Lôا¤0=–øÿ ¿Êe¢`fº +!Ö…fðƒ4”‹TöîÝZLµ+tx¨•:¼uå‚ ã˜ö¬¯û;ˆœ¹Ðàï×Ø—\ý>ñNI‚H›Ýhœ“¥èör3ñžWë×IùMUí¼Ì—§7×YàɧµàìJÂ3K“³uu3¢†{gD + C‹9¡Ža †’ø a2µrå +Xp#ÿ5HA’~ðg ‚_1.¸å§ÑÅ=_ì2üÐŒ«x€BÆú1ÌI€XâX€j—)Ñ& ^õ9œú¥#³_Co|ÖÒÛP®ŠZ/ ÓBJ§È )áÚ3Ó¤½-)°v]v¸¦Uù&Üe[‹¯ðž® úÄ<}‰ ÂøUáV‚8œ×d(Ü;­ ÕÕm‘Šê®Éµ¸ÌEäÏ­f…„•N~Vi(æ©]“KºafÓDÒ)·+úfÀ¾™¤”Ùß_øž´«ÎVMÿý'ÌËhÀFM«Z*‘î¼&BÖŽ Ù”s~%Î]“áw%µ¤ áÖ´d,ªpJ%,¶¹xLTB«Ç¨$áEó@îm™Øü&± %ßS)YTr-ÐæâÙ”²}Góý ÑÉø?û„bò÷!¸i¸¡Œ;¯îú!iç)•~¹™èçª·Ó 1ERÜsâ¾dŒÄ=S¥“8i'Cn-jÔ5íj i£XžÝ‚mQ˜‡½oŠí»o ÔäÚeÚ’1¯AÐoEjÃ/ù­wÙ~ŒrÀåGþ€¸\j6(qtõÖóKT¢#®™‚P½¯"ƒ]L¾GoÛrp0§TÜ´™œ ›ôV®árÄ:X7‡Øâ‰7^Q´÷kA§ËÍ éç1g†!Û öIÙLÝ +¿c0*DUæ5HxêåØM¤ÝTeŸUdlÓÀŒôMÙ#°¬ÜWAàW\@"Ó¤i‰Ñg PÏEÞ€#}2Ó›eûQðëPb–…›úºqƒ.  +upsv´— èÃ/}ÿc¥ù¾ÿSÚ-U!ͨ 5cþÚJUJ ¢ÁLÊgZIÏn™ÎΗÀЫùøkÑÀì4fÔ°xKìÓ-º`Qço±1Ù¶|@“žŸŸ¡“ MÖæãîQ‹+&«GSFñLD„ýéi¦ ‹õ/\$\»ŒÇˆ™®ÉÄþÕˆ ¢N"¡ö8ä13ÁfÊàÀC‚*X|SBˆ% â¹ÿ²^6½qÛ@¾÷WèöF"EQ:öÒ^sÐK€Â©³pj'Þ:_È¿/烜!Eí2qNi×»5óÎ;Ïû–Á)m™íËÓOSÂÒ^ÿžíEp¡pU¡•ç?a¿Ž¯¶ð±Ÿ…¨+ÈÒœv6»){­‰¸ï~ä39ÇuIºù”8p\øÆ¡Q#³ÒÈË×ãßc´pü —?jňV 5Æͤ €0Áƒ<ÀØψ ¦û«·C cpU‹ØîNƒüpCåûØ[î~ uÛxkŸÝúõ@—4è‰CüFê°ó†ÅÒõ_Ab\ë• yƒ”ID®´E¢ä<ŽòÂyH(Ÿ<’óŸ4‰ã&0†W£d¥ô‡ã¶²?‹-Š­/€ºýûºýW©°jÿ<'Ê£µ07/€Ëöߨ±eß=Ý`Í4õ¢kÛæk±Í=}Øš³ Ð`“b«K+·‹µye¹ç¬¬©º²ìÙ•¥V‹Ù]-BÿÝ Ù¡öP¾ÞzøøôiÔ FÑàÅ·¤‹”_4ÕÒ„Ë]éÌ&²#ÇRàLêZÅ´ÅYï|fŽøÔ&9?4HN‹¢Qr~Tçy ƒ«Ó€Y&76d±´ïq›ºÒ9âµ#ãXhó°çUö½7N¹ž–†!Eø,höÿ¡E\’Rêf°åpñ#šÛ˜93#K$A˜–9ó)’«Ê2cε S<ªðMx!ƒ|‰³ô¼ Î#Y½NO5ßG2–ÛHAó˜hª1±Q¿&³¶Áî¨lÛQÙZ¾Ûfue­R4øZ_ öÙ¢–¥6ÃK&ŠT¢œÓ>€LÂÏÝşX'#ÂË5/šsø í€ 1ö«&™<û‰èb9oÜmI;žfHÆ-*!–.ÚXB˜(Û¥çãRO‹E$/—îsÓª[8QxíºF\¸UÒH²Ü*'3Cfð„Ãb„‰ø•*¸Êc•9u_b>H,f+ ²Í1Ú/àã¹JŠ‚Q[yŽ1å{ø‰F¤~–ïä<Þ6É +k–ƒã_†=<Dð/»ó +øæEïÐaƒˆà{ôj¸@$Ú(Ž¢ éõ®°Ê™ +å˜iG9Ó¨0_w$kãW!FvÎ._Ô¦z+~Q’h2ÜŽÞà߯*OÇãBšŽÇïT0‰¸$ýKCÀa"©åÃÛ¨gjD:nÄ…{:»d¶ l¤Æº>m©O§ÕÙ& WHÚi€G'iHÉ.¿€rÖ*¿nÇÂÀÞô½Ã]uÉD÷VúƶÄ"½ÄúTH©TEM[Ù2–nñ\9ìÞ¦eŸä±.6í-|ÀN63 ÍuaCˆ¾Š÷;tôã|0ÙdDú(§('}žäÔÍw½ àÚ™ó4föÈ^C˜å/Œ/xæ…%®)òÂD¼°^æ0üΪob÷,f€M‹{ð?²ŽÔ¬÷ôþOC‡ÆYéÉÕÐÌ‘ÙÄuó” UÃÇ[œß¿S7‹=#Æ’ÎOCU[Üœe,•³M&~?™M! ój2 4%³%'æÉ×å7†g2ßÌ0šŽTãõº¥m}å±·V(sý‹]@gÿºRM“FèØ蕈bÄHá+I3Ô§ é«=qÙ²£q ËKqÑ E$[6íKRä¾R9ê=2¨ÓT—”­ÎNù2|²ÕÆÖ\G󺣣eRX­v=z=è=ÔñL±óWÿÄ%»:7÷pPˆ+.NϨ4@¡VN½µi}BFÁàJd r*ä>í{HRqöF»ôñ]o,ÜŽÆ1ÚÂÅy¥ô‘+DZ_0Ür£îT‚8ýJLÎ0ƒó•sç~7|ԚĴSm¸x},^›š–aßí’’ü 0[¼ÇÁ Ždê´Ã\eËÁÚœ€G e^ñ¶ƒízcž‰[РïWô­CëŽ2Nsþšãà~œ]7ºY1ã+xÏ•ºÏ”ºÀy™Å@i3€¤æc$á ²$¤rÉÌÒA ç]+qYâMÔùý&=Ç¥Ïñ_Ÿ[êÞ<)“/;š‚D‹’œhÄFìdІc¡œ#J*xQÎÉI{j;*"I¼××Ø"¡åŸec0@+¦— 9î„Ûq2 +C«mYŠjl´Æ^@#¹m|ôåÉ|x°´ +füŠg]6®'!*‰Ûê³PÀ{b7SŽGWâ™é‰²Ñ#\Îh6°€ž§,=^ÔyV›3tã’ßË6ú¥C™ÊÛ(î©`»£Áð®Â¢5üSÆå&³î 0¡ò;±RðÓS?p 0=†š“õŽ“ÚBDRÕòš¢¼óùò.\Þ‘£«ƒ•óšž#TÄçk¤<TëXƒ {ѤµôayÝ;½I*˜|Ë(¥˜v JiV$‹°‹°¯æEu%&+’®DÞw—Rf£Ö\ix{Àj*À*y!á—ÒÚ”kÍ=Ck|>$KjSOýª|‚í#œmh}CûrL3„±tìŸ÷g¸îZ7/‚\Âá—F ½î[.~Í“,AæF^‘ä¶êìø¸mRb§¾§ÁgÀ‰°ÍPÏ¥ »Þ¢SÕQé¤×$ì2]>½kÕÞœùÜ8íøܺ*À=Ã77yâõeâ5Ú3Â÷ÈÄ,äÌó¨÷}!C¡UËkåZ'%bÚ¨çF.ºå6_ÙÄe—G„íõL6Äwþ^7ëkÒÁ÷kkNFÖÖ궷üZÅ®ýRl-´Q6>_nDZ¿’N`øón^ ®ÂT.z‚Þ˜l2r¡ìÅC±–åJWI 8·Gæ\®J^¢{Þ£ä¾ ½sz­ZLB9µK«8ƒ]MMN\G.«6RŒ;qÍ’QDR23IB¢Rþ³Yk¼6¢²èÇž|]Q—˜Û¥LF¬Œ’›Drߪµe?gDùQ%é0ÝÌ“¼ÁÛ»Øl¡Ãd7–Ì„¸áÝð€ß¥< +endstream +endobj +74 0 obj +<< +/Filter /FlateDecode +/Length 7080 +>> +stream +H‰´WÛnÜF}Ÿ¯èG0)ö•$°#ÇÈÂA²¶Þ6‹…FÉZ[’=#Eñ~ýv]úFrfhc<#N³»ºêœS§N_no¯/.Å?œþ&Nß^|}xz?þøêì'±zu¾jEÛ(mýÿÆh±½Y¾yߊ›Ýêô\þ«Rœ_¯ê¶i•ç—‚¿< ×tþÿ¯k¬R7º·½P¶±ÖùwîV'²­Îÿ½z}¾zý«?é‹?Þ‡wýöð×ÛÓŸïZqö°úûêôwïíÅý8ÙÜ×o^U§¿þôË™0ýP†* ¢£¤Ï9Ä–£ëz8AJZ*…Ô®ii¤†ÐþqòRT}Ü(ߦöWðÏïp _è—ØùXý%>Tµ K%Ý:\_øg¸fWÕíÖ*¼Ÿ-ž‹,Ò@ +ðê~U«0äÏ!Pº€V=V^ËD9)™ŽRÅIå v¢úçùß"¨öÂfhsØ4­•#TÀvy„Åä×G-n¡ +k1À v{|s¶õ_Ü#¯—ÿóÒ¿‚ߨ}þ'˃aàÕ8˜ŸuÈuÌ^þ:¦<'á2†¥q ã›Ë–'»ö± Œü=üçÜ~@< ˆq›ô¼‰Ë +]I„>}ëq8eü{.«}Ë%t°{ W¾J¼ˆ8B2¤Çœ‘Jâþ7•¶ðw#~‡¨†ïÜEÀK¼ãÍ0ø±€2 ȧîö!°õÁF®7âªR&£ #E,|&{*¦Fà©ÿ½‡/¾¬}Š®×Ã}:¸ÖºÒ\yÉrzÆ|Xø%„–|ò-åü‡Ý ,HéÊ*±p[zkFÌ,‹Y2ÃRVÀšP6£EtJVéXûÉ%Çñæ·÷¯þ{E@‰7jÄK_ +n|5pÌ××âÖ§QjœªõBœ©RèZ½f®w0‹%aþ"F]Ž–i³›e·‰CØ$lýÅã×ÂõkJÙ-µM®ðú/D,KѤº9 + ƒœL^‰¹VÎx׌¯Èq!PÕTÙŸ)TêE"µ‡ḵAüöQŒHökHÎ00G _ûUüqRY I,³þ'Š'$£øË~ŠêJa…è<þ‰«Œ„Ï?ªÊ(ªYªaz¤a†ÀåÉÒOñÕ©FG|Sîn¤Q²”3€\³´Tq+™ÇÚ‘éàkæ“4«öÓú—®­hÔÌ•nÖlSÌ]…”z‚ç¨ÞÙ¢ ¿ÁI6hígÈS—¿K:ü1ÏLÊ„8`B\f$ØwàùÔAóËB² X¦0õ…`Y&¾+u"òQbÿ¾vXŸ²=jhûl ¦æ +b²Œs)u}ÑóÚiŽ»ÔÎ+öNIC!ùnäë,vÂXŠÜÚGÇÈ ºJj”ѺÝ1Å*MŽ@JÖ© oð7 x'ÿa,Çû¸íŠ„T„öØ;¦i úE¾ Ki$·í†ÏØUO7|‘Z3‚@NjH!çƒghlÝØú´i],ßÄÁ¶+z¸ÔÃ>Ô +;O7ëgFÎ"&R"õq¯ø”Užm¾ÚïD2c!7ÔêfÚM~š9ÍQ? ÎB‘M;ÚÔï#³è@™-ýX¡¥ÚP°6sŽh©îB9s…ÞÉfqU¼¤#3rpÜ.Êæð­jº¤5ôØ šýÍa!Lûý0MPò!MW€8æ²!r’‰+6°¥PÐ T\>6ÆÖ},U]’*ÔDJ“H°Sß,R™ž‡FÜç%è÷ÔÁ½n„Ð5ÏŒ‘DÍê9v1DŠÔX}éËš3‡Ð¾-«öPT»m”¶þã½Úöfuúæ}+nv+é.!Àö~0LO0U ïبlH])¹– kòHlÛÀ`£ ôšÈ(õ=Ͷ©–¤?Ê“7ßwÐ1ƒcî=p:„÷élö2> .-Ùc +k –ðæ-1”ÎA“ŒÝøÃ,•‚Ä¥ +p¶(׶mË\CFÅGH²„$ƒãPfá¬ó6jùcrOKô%šOâØRI3KQ B®máÒ«P¦¢k(ìPl=Œ¼_­ÆvÜ_sÃa`‡+þásÕæè-pк”MÛMzYp‰íï'ÊÀ,…˜ ý ë“ddžÏ/9ìÛ85ì1½Æ!o8•<9šVö]EÓ(ghÜ Ýi! +eaÚV태/´5Š¾Çfâf*U>­8âjÕ&Ñﲚóç§èÁ¸˜Ü.*Â\U–ã€ÌG’,êeHY9KPÖ.…t¨>s¥ç³A—ºÿñ_e‹eF µßŽ¼* \á4Ϧ=R ï³f0¥*¾š†W2Dûœ{æf8@ŒÚ³Ó9;´É¹6¼ ujùÍ·ÌüÚV—hK2f?÷êˆæd~yÝ_*­Ç†Ò?QšõFâZžÎ€«Ðí±lÊÀç7º”/Ùæ¨d¦¯+…Vú«¸&­ž:èa$gшúw„ðC’²éÊ}#-ŽÞ„¶à*¹S(µ+ ˆÄðA?JÝ6» +çÉ’LyNê=¹‘´¹Ó©&…ô[·‚ì(¨P1% –Š¤É`5‡&ß.dDÓ#Ù€œRJWÈ™`Ÿw!î9õäÕŸEæA  ÇQ»ÖÔà10ùOEI¬¾‰ÄÎû*æÆ=¯<7E  +B<êGøÉãÈñ±2ó³ÕÄ Ú½*å/çHA#}âØuvÔéË[“\Þ¼–AÅ.Q¶ /K•Íeû‚7ôöH›¿ûÁ¸þ»gUµ¦nZ+¤Ïs¥mNþ-'÷#Ú`°h•Âÿbš³©¦„ž_¡ü}õbDÉ:Óçm¿ö´hl}ÑØž¡M:š’7Fb·Ä yKêÏZO½p>Ð.éÄÌ´ê‘eÕcË:$/»[’‡ÜY (…83i¢á åi!úº%è˲}}ÙWõ>ð™AÁ`ÂàÃ.Ø LP•+P5 ¥qBÔ¤ÿ§™å`Òî>É—š¥ ãKôȩ̂§iõS¹ñùŸcè†;¶®žz+Æ]vÔE9íšÖd¥´l±&ÏüÏÐ]Ù‘YC—,&Ó O¸3˳üº ®Ã¸æZWï©J±ôÝt^»>›jþ÷à»MVcÒ¾™ú› +{ød¬ÛdÈå.Ç–;Ï ƒº(\èiS nÞ1Âز.lEfˆ5|¬áÏ!kš“g„%¸^ß[蔣 ŠÖ(ÊúŸ–YBªtù”§$¾GøÞË‘Ym6ðÓŒ:GékmšB£½àMør&›32|¥ÉBalGƒ'MO09tßö )¡-šb§ØúQÆí"ÈO+z´µEͪ¡5θÕϼôSoyæ +a¢@hßlnßB»›!wDË*“šLD0èÈ',à—Êñqªl+¡¾èWã„W‘7 ¡¦Šö+{9‚›vMë´0¶Íæ÷ øI +fý`ªçÄ(q›ú«2èáë€8(¬*lR·0NjlœzþAŽ'H[L]š“¹AKòŒãÁÞšè(±: ïF†¤ðÿ.Ççt¹_àîØ–ÂVÖ•ƒ8ÄÀtç¨Þ–F“(eÅ^Ó æ+ö) ¡¤K(™1”¢rù) “e½0pJåP#×ïåqþ¦)臲¾è®1¹F²’ +Z{ Èëµ5ŒCV’c=›TNÌlÀ1_2Noy0ùc´eä˜!K"ÿ ¥Âg$A1ߺ¬‰%0–®õú.ŽI5‡˜É‰ÐJ4“ +µ‹¹¼.f±“òÉë²±óûŒòTÇ_î ¼©íÝ!ûžÃ?°6+§XS(õ)“>…5å0#Úÿ`|FFnB€û8»²õðQ³º ËËÜbõx¿šƒÚèn@áxù×tGèƒ}t®-äy*ÌË@cËiÑ ˆŸ†n +›¶Ë xˆÝr¦Š˜Õ÷R?“Âë£ +ïJ…/Ù\*貆,R÷R×çTý€žëïÐs—å:ÑRÿ—öjéGÂ÷ü +#ÀÝI‰¢ŽÁl0°˜]$ž[€Ói;^¿‚n{¼™_¿õ"Y”Ô³‹½ØÝjJ"«¾úh˜z7Î껦´ƒ¤¦rSú!sÖãË¥éRZ¤œG÷'¶Ë¡×iƒ'yÅÆ–t›òÇÜ©`{ÝòTãÚjŽ%rÇA¦rÝ䔵Ït dƒ‘èLSDSÝ—á°h4©„QVWðù$ôºÃ!b­äÈ(|Ðë,…º>ÖzL ME»q1õÐ.Ÿ[7°ÙŠ·°=»áÈ›y‘ôbNš3Bí¸ +(øw'*ûïBŽtц‘Ð\âðû¬Ó¸Øè²Ìü{œÂéˆ88ÄW ½nÚóUÞ7ÙSÅ ÂÒƒ][R'`e“³B(aÄ^àó5²¡¶ì¥ õ¦ +iP.$—šHwCóå›×3rûܧóââi2&|\é$µÕ•Éu%èzwªL3²,b÷½î¾imIX¿X­.[vö:5ÊAħñ±iÜôB´Š¤ÇË{^ðr±lež“M<+ÙåžT´O[7zo?ç¾)i»?UV?(Ñ[È­yŒ%WnJ®RBBØ?šÙ~®xÌ °+ b8ábŸF䨈äIG6l·N8ÁÉ.[#ÂÑq‚©{‘[ëèJÊ_5“¡¬z¥›t¥é:ÏáÆšÙF ò=‘$!ÕYñX쾯‘^Ñ›¡¨½XÀ;á>]hÉà±¥ˆ´6 ›ÕÓÉ“ÛÈºÚ ?˺ØM®8T¥´9_š@3JÍ ñél§íͬfK¤ÇÊDkÌnãÀ*l‰Ù¸!Zá´c8jòuÎhu5Wð–ÏDxÃR”¬oaž^z}˜½(ÎÊì(8<\Ýq¦’áÌÔÒ5øÐÏÞ¥}¶8%Cr$ƒ`¡9ÍÝŠwF,O9H#”r¦U„<Ë9è0ËØ%*¼ <–rËΚÕqLžœÉ(9õªªõݦ@€|Q¬Jô¥„tã)ChaÿÙÁ<‹l*-#‘ÌNŒ‘®ØXì·øÄÔGH”œoˆ´r²}ÉÄØÂÄX¼±°1vnc‚ü vvbæÚ¸Á2ÖÄd[Ù-;Ÿ«1ÎÕxª¾`¸³õÙµ†Å=Ï=G°¯®ûŠ9ôº ŸïîÆBÁ $Þ£8vCGºÜGû¬îØŠ÷âý¾`{à F©A,ŠÅ+í@ ¦)øv„É‚Û·•ÅpË·P¡² Z3õÊ|hR~5vqÅ}ÑQ“‘`Èé©îƒGŽIdÀêf³A¢ Iî‘÷±YfGH¥Q—=Û[?Î}Å8ëZÔŽóPj`*˜Ð)ÔcJr¶ŒbœÄ"iÉ× te4ö–è÷‹ÄÃCr‘ÑLË qÎ}¿'yÊ +ÚÅÙlp‹]A ³JÐó)'óÕ ²/31¢Cã}©K%]4‡B¶n?ã ¶Ó$ @Iþœp€º–›»b²8ÀðTØ8ÑöÔÓ{ìÔ!MÞïð@³1÷3ðKkÏà¸ãÀ„p‘UŽúIoŽ~ÉsâÔOÐhÞð‹XrGTY0³ËIJ›L³EuRëÀ'e%;¶4¾;D:m•¡ü°gç»CY!²V„ÂxÙ2W n´¸œ¨¨ö+^¨›fŽ¸{î€ØÊ}ï¢åùŠ#à•ß²ÏI³’FDœÇìú±I&u 㘿Z’ï-dys«ŒcVuØ¡ÆÂèCVrÞPZð÷§fìѨ¿1ÜÈ 5r'Ôq4?êz¢˜zF}ÏFW\|Ì¡ðÈÖC{ÐÊÊh»0 ,€-ÓÙÙÞ×Ù%0»øRYÆaŒhI\óÑÐìmó)aªÆÊCºrXÍ Ã@N4ÔSGž÷MvÎhØNdüUQ¶äb”ÌÙNDÎ*‘«<ˆÖn5§°ycF?Û|“­“k'f9¾_ÌeÄ;:)“Ê¢a4õW­çpgU©íÅÌ&tóø•ÑMÊ&(W êÎMȦ›dà32Í”—ðY}Üä_Rî2Dá™rd3ƒŒ¤L–D¥=+"$aœ'¼Rq2CåÑm@Ô¼¯N{Ju¥ô5¬¦ÊXËjcÑ"Ór"Ó ´~™C7P-+ù|à›ERMM¶Y ‡ I^_‚O§9Ýâó ûû3‘ž¥Õ©YèÚºÊï‡×°}Ä9ÆCüokáf®ÊL'Š .9K®*æ†<Á^1½b$NºAزcAåÄ߃(JYu2ƃ:$`™¹ŽãòŽ"©ERÅb‚$X¼î÷ߣ”וhª€µªN‰j€ÚV&@á¯7ÍáêÕ›_?vÍÕñ•dŽ ÑüSRÎ~-@Í·ÞÂÊý«Ë´ ­UKlßå5'·îKŸA›nnðýßÿæÜüaàÊù%·~Ûe¢ctßC‡0= ­ƒV87m;‡®¡ðQúù{Ë€ÿH‡jŸ·.¿EVÿïW‰ˆ°E ?ü'N¬ßÉY¿…äÕ¼þ…çâ¬ú ž¿;\ïŸÿÑnFìåß[vÕ¿Ó@ÐÛåÃ{\aóÊß8é~¬k¾7 [*Åumlð[;N¡¨ Xßzóv>‚>öÁ¯½+÷ì¹M}x‹eõx>à=¨Ìß ðµ‘2¿Ó×-.|÷¡²®ªy[Ü$Lq.Ó cϲ|@žcFFD˜Õ³þØœgiÒµK`CÒÙtû7h#®3Qôñ!;ð/Q]\üÄâZ´ò¶%'÷E] È!_|UÉ—¾/ýéSò¤KP‹‚á…§ÚZŸZ~G H”Hý;äW"94’xÀžm0KRzVŸGÈzŽKDOž4»–¦P««dä!\ÃE[% Jwµõô3ðwNÀ^@á6$”}²Ö´–u>z£$sƒÚÀ€ñ\œÀÇõ·+¢„‹Û…7íZö {xmGªÁ/¾bí¹þéÍ/ž%_ïxÕ7žÅ=SÔŒ{6ŠwTÖmœ×mŠu›^®ÛØ)ò~„’œ„)Hp÷÷È•Ø×C,ÅÅ-¯y5ÊLjŒ+±ïwŸ_ÈáÒ`~çåbï÷ɦnFö¼ÖaQŸÄÝP‹›aüÿ€×©Iô¨Êº,üÌLÓNTeðŠJÇÖÒÎ:–Š74:V¼ŸuÂ3X¦ *–Cbá %ìÉ‹MìÁñ9O\IΓMœØ‘á‘°@¶ë½|ØÁ2ƒñÂC+ ºqqXX(ð»\ÕºzMuú69õÓXªÒ¾]³õV©Ò‹MªðÀ}ßØ6`á-; äc#šO¯‘}FêQÀ•];@CLë H,üÔ¢ÿÐc#s²A%ˆïhn°o.qÝ,·<·ÔLŽ î««ôhþ[¦ƒh—9ÿÿJo¼ÔÀ2¾h +Žòl€—Å’Q}zähxÍ­y¸—¨t”aØò£ÞòªûŸ¡¶Ñþœß°0e!Õ'*Ö·ï[bÚ'L %úâö"&jyøée³Û6 áWÑU@\ˆ¦$2O[o½å’4M ب_¿»;Kr-ÿdӜْH¹óÍòuO¯”e…ʲ÷^*wíÑ‹¥%œPÕ¥'úJ}¦x5oDÊèó±Þª¼dš¶C8¢Å¹ªìƒT×®;@€Ë…Ò„A)Qƒï^zÉþ‹z`M/g}à¢ôNQ]Y+äd˜ðŸçJþ­ñ´Mü€à¥¯›#–ôˆÑ­„˜!®žÈ{…8 AæÚ Ì[þ ’È>¼¢¬“X!ç'è )ã>¡!܆%!¢jÀ¿2¿€7Y>?*‹›X…õS…Š‹~˜™hnk]ÙÇXœû!ΑÌt8º%pèg¤àr:¥Qý‹½bŒó‡§ŒÉ TÊ6SHGòyKwq¼$ Ó­!ɉƒÏ¼Ì›SD7äUeÐòô9nd£ùÛÒ®ÍhÌ2²N@·VÂÄZ~|‰'¾ˆÓT'Ó; ´ÕþåP¬*¯#ÏrÃ'l2íTIP8 ºµ%ÓnŠÎrÒP=¹aäu€¤{X·k{öPÞ—îQ ÉëÙ•ÊBÜÿoÝ Ú:Ά´cm6bá²:¼fb—d˜·î‰~í­ëG`ÎÚèh€Tú¦Kü)ž\w¥zrÂk!¨½šNµñÜ©[péÆ9ÔTÚVfÛVš2²Û$c7häΨ\ܪþbÖÙh-e*}°†»hä²®«çÓ+ÅÖ%Å0®‚½ö3¾5m•C+xfPP–¶Ž ö§—¶”ÜæÓ9#56§ÿ黎×àKÏ9^5šÛÁ¸ñ/vO¸)ÚÇ=œñ“á„ÔN’éý¤y‹—(Â4ðo’B‡fÙÉ{’Äí*þ 0# ¥ß +endstream +endobj +75 0 obj +<< +/BaseFont /OEKBKR+MyriadPro-Light +/Encoding 157 0 R +/FirstChar 30 +/FontDescriptor 158 0 R +/LastChar 146 +/Subtype /Type1 +/ToUnicode 159 0 R +/Type /Font +/Widths [542 484 219 0 0 0 0 0 0 0 265 265 0 0 174 298 +174 351 488 488 488 0 0 0 488 488 488 0 0 0 0 0 +0 0 0 585 0 570 647 466 0 624 0 211 0 0 448 0 +638 671 502 0 505 464 465 626 0 0 0 0 0 0 0 0 +0 0 0 454 552 446 544 485 262 544 536 209 214 423 212 819 +536 532 552 0 295 373 309 531 452 722 429 440 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 174 174] +>> +endobj +76 0 obj +<< +/Filter /FlateDecode +/Length 6444 +>> +stream +H‰¬WkoÜÆý®_1E@Kqž$ €m¥F +'Míí§¢ôXÉj$YÝ•£¨¿¾÷13¼Cr%Ê X»\rxçžsîñ›íÃõåéùƒúî»ã¿©ã§O_¾>¨ï¿{òN¼]4ª©õð¿sVm¯ŽßjÔÕîàx­m”Vë˃US7Áªõ¹ŠU¨[xþµµW®wµ3Ú)ãkïÜÊÃÆ;ö•Ž€\‡áGñ…ôZÊËäð™-|°e¶©C­ÞàÙTçX<‹ßΪ#ùJ1k|k0´ê_ë¿fäîǦ—ج›®ß=²ÍЛ¤½0 šß)+ê‹iàz¥[Ìe¨›n0u/Ò«je1Lþ«ÓÕ2˜ÍÂŒßø¹¢;à1D­ÙR÷ âO +.y¼åri ‚(²„1‘%ðÀ×¥z ÓÓ…0*´Ó´ Emšm¸D0IØ„¬!â¥Qµip@ãî˜V×wí(š]E3;Ì´6h7ÜÆwqΆvQÑsIï+æˆÕ±ÛnÔ9 €úAÍÍ2°CD·ÅÈ2j qQ¾ &¾ãˆùîe½Üƨ8/_AYmªs5÷eÅîÊbË»¾½èMQc@­Ð…ýçö#hY½g¼ÀJß{îßþzì p-NSï+úèUNèºDýûYiÚ´/HÉ=έ¥råÎdÉ„‹4†¼»ÍYº-EBØ8ÇÉõ/¶’Æ2»åcoãë†ig¦l’ÎbÁ€«Ý>VQ¤\í€z=>ò9÷ ¾ëI}Šè/)TS*=Þ’ÃÐ[y®OË º¬E`ê3!þŠ´h£~uß`:Ø~ü~Fûf FŽb´×¥4v¢¡]Ê3+‰8Êê}EB}2…fë*@Ò‚ªÕšGuFw#^‡þ3ü +K\ÆÒG„‹§?J†Ò6:™älXÕÕce=ÿ’&‡¥÷7"ÆPȸ¦ˆ®T†sÉGNTî 0·3l$ÎKó݉ù6só]¡A8‚jð`±EÛ&6ÈÙ:YS2NìP´‹þˆœÔ%p‚`€©ÕYˆR3Ó=†"´0!ÂËN S42C­†âQþ¤mé‹j棦6M@+ŸýEá-ݲð“LfƒÖÉóþŽÛ;I]š¤m„FnĬÞFB‡6"}:§'Ë Ò-!5“¥¤Ö—‚jüBêÃŽ1ƒi¤x,þé3…‹ÒGxkçñoÔ‡è«Ç€CÆuïê­aÕ #WS§Nò‰Y8ùë-y-§&HÓ7»3H„Õ°O4¤yÒÂðœ)áÇÛ§ûð\•iî.’÷\V14M ˜v`-¶Éïƒ)¶žä;ûOÃÓÛê¼%{-«‰wîÇåŠ`vÎ_ß7ü®K?Í—š2EÀ͘P£)ËÂY n^aPFd"½ºÅj$Ðv¥<&¾Ì÷÷¼)L ÁÀXä+†'+c +µÅ«÷˜ÝŒ}å: +ð»)§Öç*~˜C”ï‚ðô÷ø~ìÕR]l êø/Wµ^‘¯õ¯Ziµ¾D¶…¸(¦*KQ™!*UòV'i^Y|aK..rÓ>WX^õ©"~ÝU†aÈtIþØ`ï*'>té¿ÄòCršYÆb¯[Ì}£Þ°1¿g&Šð„¾|:’QM6}Y!lQˆuëPkߧ2ô“îÀ2¬ï¸ß`@F2ÔowÀ~“|)&ÝÐ 7øSGe"­‘Ó¡ò¥Ã3Ç#èl:\Ú|•i“»I£-dÎ#íC»QyhZçRWÈ‹3ë\Þœ¢¨¤.r—uÈM÷‡W=V¬±Ÿ³ï?œ.gWè‚ŽS< P&—¡’µw7 +.§Ä[ #›¨Í›Y¢ºÎù{Ç”ì…xªŒœN}GWΩç ‚T*³qÍàLJ¶§t´Bœ‰Z³9A}¹mX²”s üAYgÝÀ·:Ìhúfwÿ¬¶B«tÔ" ¸ë®Ø~æŒÌKàÅìuîÀ—(ˆvr ({FÁT"MT¥ ‹Wtå¡^=$¼3$„l®Y+£-ŒËíÌ k"/Tƒ‡KC—x)uxp‹ÌÆð:‘¼×;'./ Iâ{|øÞÞòæò~@rÜ)ýpt@o¢ ,œ¢ùö yMS®šÕ~ ºçla‹ÌctC 8®eg¢o •5¯)œõìb!jÂd¹‘ˆñ`%[kl™Cµd¿ M;²6ìE¤ƒÑdD~J¤,úÌ ÞV‰‹• XówѮ罄EÆõ‘Ô —ÿŒÁ£ácWâ3ƒDUáµ\¶0Ö;²…=ÇÒâ™ÿEj#פ=$ñiÌd„ðvgé2 +÷¼8"PUÞ™¾Aò^x1·âìNö,’Âĺ›äâÄ {œ²\Þ®\ˆŒÞ0°…]Ø0Ð T =”mоÄ1 5ìS¹­™¹{jŒië.}MNXkY†&ò 'wwÔÕd"Dg†Ž^aÓ&Á'Í´}‰c« âdQXáAØ”™(„1—07ÈÒÝEcz4³”‰„ãØšaMuYãís“8)ÚRõ%ŠžqÚηÂiódFódÄKžÆ™„gŒdP_ÒW7_¾maöý³–”tÀzÜHÿ¨ñç*Ù”<´þj[, zV"§ ÐJ/½E¶è$; —äñ€9ô´9hQÉmŒhçìP‘— +þçë¨ æ2ˆéf$…æŒ9+,º0›¹¦±ù*ãKæÜÊè¦Å±sÔ<í!…Ù9-RFRán¬‡0ÙAL/ktt}Ó@2&4tålóJºµã4iÛ%/xƒ@\1 š­bÛ”üÞÇð>ï@­Ü‚D—Q*$JMÛ”’êYgñº®òR“…&ïO.¸“¨ãY¢*“&g²q&‡µ~ +Ò•&»ùÒAsUZq·+ŒýSeî4º'òl™Q´ƒéÍ]à¾eµ3™/Hýª’–+Ý“µáb/„S±!r|ì†}7]LýÀÏ„Ç +ALÇ\[ûBùÎíá3ûÞ—½Ÿ[n%¶ýõÕ²ì׉k[öü8`\ÐIqp3„¿qš +^5ûDo.Eoʳ•§Ã`Â×QlIÜ¥²,_¾çÿ|§DUx÷ô¡¼ë™Ž +qŶiýµg²ŒQ)rv,RYØ,}û×€NqP(<9¦@â3-GbXŠzyûF|éSSÐîRDIÍAd˜ÿ`?ï€× ++NL(¸¿n¢BK ÖUrÅ*<¯¤K2óÀöBZÖHæ H¨ìÊú¼×8ÿˆ¦•ä+×YuÌõVÇUÐèhêF‹\M)šN±IGVtXIЉ¹ ™wº„Í"JíÆÉ•Ô›·pêzã9'“fSé”ÿ÷fèÉêÂ÷{Ñüߥ3 +Z&ã“îìÈY9Jéâ1ñ(Ÿ¸S,Ò¬JÅX"ÇŽ®7´0þ¼§;_q^'ãFû´åM'U¥¤r@+¸ä¿âž´Ÿ¾ÈWÍÖŠZÚJš@{P5ptèS›²µ±RZ‰r« %ÃD“/ÜÄHSɯ:Ÿæ`Œ×¿ÝÈ=6'#­ŸúkÛQ^jUaÕÃ/1¦:¬n9¨¿Á¿(3æIÅLíñ@‚ø‰)þy/²u9q)Á_jp!dgÉúïè%9ÔØ ®K`=$ ìºHô+¢ä×BÍŽpqkF´ê Ɉ„{þQáþ‰ élV·¹ +&6÷ /cêb®?ÚãšGŒ­$‚Þ3Õ@–AþDóŠø’‘É›¥D¬)GÛc~”/~܉Ǵ6‡9BJœ] +ÔÏ=aÓÙ ´ì ¬ë¤Íìä—p™µ…grân€ØZ¾õíè&êvü-$$Š„ôgÉ. +ü§(Iýý\5’EEö áвåi¤nòø½OÅTi–Qq—úŽÞýucž•ï™Þƒ€‰‡àCŦéý«Hdܵxôf%›¦Ôô%@h¾Ò[{Xž"Þsç=<6\ÛÉcßU<î6B¾óIZ›‘’Ê!¼¬ðö®u>ñcäì•T"aÚäŸzÂŒ_¹ÓTÆÂüܺhíð§˜LNö­õ‚ˆJ==Ùι6’Dî XÞ&}¸]œU‹#8¾ëBéîwO†ð/G1zÝó–<¤D¸T\­cb—i´iÊ•{X"ÈáçöÈÆ–3Ù4‰A~4JfpËl¨n±Y\„¾@-²{¡ Ä}Çë*s*~À hrGÔɲ>šxw2ÀÅÔf—ÕBežCv?J s¦d]‡ÜcÈD—£ÐœpT»ÄMm>ÔPð!±£ôuG œIawnX%¾À¦9Væ,[‰OìñGÂ}®‘1xª°È-×áEGŒ'«à³R•˜Û‰¢Úïþ¿¨î•—Pé¶ßÊ3ýÄò¬´Ð=ŸZ4Τٖs‚ÅÁ0k-œjï1p"ì1fŒCg»¼aÔz/åæ.Vªñõ&´V©AR±i.QY;•B°væsµMÏî¢äÔ´6œoñ¨YËà +¡ÎˆÀR9eäõ5 N–Ôûë-¥ïfø†Þvp¡€ZÕÛ÷;ŽvU?éÜâ|å7Dè\QVÀù å¿Ø1iô™Í• _ ÑEMÚ@‹ñzeJK{gÿý"¼ÓØ—¶µi¨b­‹|<Ñëçâ ó+;ü [1üïͫ滑·Ë¤RäÑ“=”ÎrVKã)Ô3H$/a(9ØN±ÙűçjMª¸ùým>=/ð/ȸÌ~'pCMø¸¡æÀÝhÔœâ<…vŽ.¢%¢æòf™æÊ°$,®½l,$©ù¨÷”öQ´•ÙÖF™ kñŽ+Û·1ÆUsw澨IxŸžÚ6Ezﯭïy£SF®&~fÛ~Š·ïÌ:>4Æs½nažÆ¸Vq°/ DC:do‰BYbºqƒF3%æ-ˉ,©Êü-ãL‘Ë£|!]iú0"îJZ¹Æ––Z¯LŒaíÁý¸l{^òQÚZàNl×\ºÌ:©w”‚I…-Vu v°‡ ';•¡sÜ78-घí£È¸°íÞzv7ήàÇ^Ïž* sý:÷b4­ç‰>V[NÌËÕÔSÄÿÞäk¥‘Hö/fz‘Pp¥Ü3à""•D_”ÄÌxH[s:{ßzürêgFôñhz²Ñò‡¢_1°b±RÇ3’™Fiýº2Fc0FcZ£ªm‰Ùº3sEo <9ÿçô)¬ò”c¿ÊöÖ“!nÓ,1aL®^qªAœ¨ bÏ­¬„Qàó¾ÏiVê'l¯<;O;ø ¤¼çÜ~kgÖgDéøŽŸcãI™qƒ]ä>Á^%ÔØG +…[ø^ßÞü]ñ-ê_ƒ+À¿D°Ó»_~ýÇï]óîù—_ßöÿ†mnÞÞÒJö`WüA‚ÓLÆÆw|¹›À×^€Sù‰w M„Ï^¡Ü1oöõ½”į¬{4¹H¥ýr| —L_Ô0ÿ|—! 3-ÝÇòEÇ“ÜáQ¨zC³œhßé +Hç¼  +u'@ÑíéÉ|ûü G}ùàÝ©ì׿<‰Ülgßb ¡+ 8ׇÈm!~Õl©kyº-[ësÞv:·k$KŒ€A•3ññc;³'ÿ|y#Ž¬4j°'©.çÌ)Œ¦p‹GÈ-ÈöSp¤uº=r3¯ÝW¿÷G秶—âgNd‡=‡1¸×ȵ¨'ͽãÑÜ€(Oæp½Çg¼®è¶8•hº 4C€—Ñhî‘qDHE1[¬ÏyÖ$Æï‰z ™¯I%Ô D÷CÚ|õòM:7ˆêŒTäè›åP\'ÔëD¨Îìcp'ÏÂ*ª¸åƒÏÌ£Éò(=m¢\æ3 5¤̸dÓðC¾ÛǽÃ^ÂÝ͇)¸ë,éuH/ñ‘fKúÀƒà¸BŸFI¡p´ÍþÛÖ®6Oi|.¥|§wº+͆}”e{l9“ß\4%ÿ`cæ¦ +endstream +endobj +77 0 obj +<< +/Filter /FlateDecode +/Length 6560 +>> +stream +H‰´WYoÝ6~÷¯à£ äÊ"%ŠPh–´Íó4 lÇvÒر㥩ûëçlÜDéZ 0Û÷J\Îùη}w÷ðþâäìA}óÍÑ_ÕÑO'O7êÛo_¾~¥^´ªmlçàÿ¾ïÔÝåÁÑÿlÕåýÁѱùo«Œ:¾8صMÛuêøLÉ/ŸÕÐxxþùÆ)cº¦ݨ¬kœàëƒÝÂw‡Vÿçø/oŽÞü ;~‚ q\¶Á¿~:úþºU¯oþ~pô7<æO'/ÕáùÇÝ/õÑϯ~|­çÊ#+<Ù<«á³gGm]8jÛ˜¶<¿b”醦:åíØLÓ4ðQÔ;34F~Ôð4ü<Ó»^iÛ7£:|„è‹{|`P‡ïµñv7ºo:xO½§'<<¡NàWÃoïøé{øÞÐwô"¿Ï_kßÜÂ:—ƒ7áÃ;øÎâcz7áé=mM3Áê^l,EÛ¥—¬ãðÜêî\[| +v³¶é³`Gxö\{|÷’Ö§E õDÛ7†Øåßë?ÄÏ'¼Á´çxñ˳íÜt Xÿð“sÚÏ—­0¸N^"Z/»*œ½ø›Û—uø¦* ¹¾¡` QfhRYa¼é¡u«iKé‰Üxe£±zð­Ã‚ôøðîÊwvüõ;|¶Qo 0°òúÓ=Y/ ì¹XŒ ‹Ž k¾U|Øk½ëc‡ð88ä ‘²º×-àîèC/ü Oò2Ï@ICé`ûªìÔâÂÒ°ä[ì¹›·©.Vœ/‡¯v±wùfƒ¼@xúÂJõ½êk‚¦ìt¯íˆ·HÀ>W ‡Ô~žª§­ó9äãÌØZ¸ö49[( NTÇ£À=ÿ]w4áòØÆ4p¿Ó©‹î`»¯f—$úqVÏôȳ.MÜ(â¬ì›QŠ&GpÔÈùŒÁبWÒ=5Dƒ;Æñ5Tüˆí‘u±=yù±’º#í誮c;üþ3½àò¶ZüüíÞwxˆ©¸%èíÂ`öû³OTð$6ÑÄ1 ›m,,ìdpú}¼Mc&Ô¿e4 #”8RW$\Ø”+g\§øŒ²3HËŠ‘à¸rÈç¼ekÞ" Lš©‘›U–uä²[Ä«¯N¶ÓºL’É&‰;Ù~7ÈÍõyó»hð(@«¯O‚ÓÓl1Ë@µxSáè8nWX™æ…Áã ,É‘À-ˆ|µëÙ„BWdº_S†/ÔÆ~`ªVh<Ö^¥™¤Vèž;ç«Ïºsä©a¸Ø?•'m'A¬Ex1̲½Ãƒ¡@ï3Ûf.œ"3™%²Xĸ¾ÄÔˆ ð>‘t>7ÖË£l\¨ÓêšèËu¼tšÂn‹Dí€ø ­|ÜËJâÞ6·*²—$ȃv߆§¡-ùJ|üœœÏ\<ѵ«#ÉCEÖ EÈÛA<¤måÒ3²™Ùôà]#õÁ¹ +%Ÿ0fØ1Ó'j’­î‚P=!Nà‰_­µz Ó|3‡ŠU;/ˆbRòp¦¡:†‰m­!‘Ðå(ƒÝZü~ƒòº?àñ|/–4D4|U£w\LéÏs¨8TP>‡ +˜†ãß6¬kK¶~ †}—9þTùRdx,?ë¶ò‡P™xø"öرÇ´eDCÜŠ›u؈§Œ[Ÿ -yNá¡¢Ÿñ kyá™KŸú¼‘ ¾a­&K37÷­Á×Î#ªÅ„—¯A̸,Ϫt²L‰|.·Ù8vå8òÁžeà îfš +ÕYAÈ[ŠÛ²ž{RJ[(¥ò„ÀÌ´b®·(l^˹¬UÍ«Ž’lWM(§ˆ’ÀöcÛ;Iæ0ŸsÙÆxª*û?.šu’`Î1}]ïûŠ6ÃÙdÛ¨á>~º&ýî˲•ûÜL‚Ç5ôAiRdHîJ +^%!r¥£¸Ò>¹/q¥Q`“þ`aŸQ ·J,’‰}Á2âßا‘óÂs>Io@ÉÎ •ˆi/»ÌRH¹Áɱµ«€¿à¶ÜB +ɪ2'©Â'M—}Œª°@÷˼$æöÅ +-ì1Ð[m˜1š]ƒTk²ìèŽAzbŠ +…ÉÜ|`¼H5â…:,ofœú>–êXE¶w^ÿ(û°9Æ*¦Ò†¡ódà +®RóO*;;/u†v©)O3´S: ñÕ×xŸ¾Î ˆHÇÓÝa ##s›}Ä#Æb’øvt•'VüÍÒê nƒö,ãÐC–.ª1§©n9#Bxfß°»ÕSæqRv#T2<‡"3 µMË9ef+"î6TÈ-ȇJõì÷ª'ÇÜ­ú-,·ï™"pPHy' #/Sô<öô@–#’‘Wù„É{g_õ9µÅº3óó%ó‹ý,w¸Ú +½q\Cèjýè ܪmr=¶íšYtÞfQ%jcø]Ô’ä¹üB?sZb|FgÄe4dÍ.±Z¸¬ºJZê(n:Öofl¤™Ü‚%šY‹&ŸŽSøµ Dg¡h1ˆn9ëFcW@#`W¨f!)D[¤`JŽÐ½#ºì|¦·IòYe©áB!çÛ™ì¶Àwg +s¬À°¹¯âFôŒ”4‹ ò™§²ús\ òÒH¶¡åi}üà¥D®‰`9±1?@§R‚C‡Ä ˜´Phä9‰%U?BÕ—.v€Î #¯ŸXËö¤O?‘  üÆ2DùéÅpNV‚ŒZ'¦=ÞèT”ÑX²8-wÓùå“ê0ÏkIµg3®²7 +öÅÌÇØ +7PTu¸䦌+½ÛØÝдC§\ßc^ñŒëcõw<Õçê_Øøàêä¯ÖZ=²Ü“ˆ±63šî±\\¦‰Íˆ´­ÆUU¾gÈîDB‰ VÜוoÛ«êÑ æsÇ;ß« ‘ÿŽœÌ¥§ð2[Àñ©c…Jd7r˜ 2:„€vÑt|©{VY 4.š@—1Cœß¨Y3¿?¶´„¶ÆO$Fé”N~ƒfL©œ¥wƒ{ ØŸGƒ XS²›¶%ÿõ;®@µìðãS™øXÜ:xmØse°=Sm>ÝìÇq*Àw¸Ûpý°šbúnæýè³³ÕH%úç¡Èó®+((9èGâ·AÈ…‚IâEéˆT£¾×¶Ë'™ÓRë&ÜåB‡`º‘‘g„ê²9\%ÔÊ•¹4fÌ*E™±ð¥B…)gðÌ©Ä'{&“É£ øóÖÄÓ]†*G*ùV†õ3ö{T¾÷& Á^&%½óO‘ƒŒp§Å mqÈx º»‰I9¨cGÏ~Ž¾ŒcÏG:ô$_òdM·Á¸ å+q’‚ÏåoÆ™§çrÄ'm§‚+×Y5æ1€ÕêI{‡aTc«¯U|Êi†R.`uR“)Êr…(û (¹üÅÈŒÝÂÚÐÙùÐa»Tt]‚6Kb`‚Úäcî’ü‰ƒaÑ:Ü* ôžÿSºâœÕö¹jóÒóL€hìðvŒXpNŒréY *fk,pül6[6Á¡#w¬àéB>UAÈÿG{•ôFr[á»E§—\Üj ‚\ì ð%{rò!F££eб<ùõá[H>’UÝì1r‘Z­*.ï}ï[lé=I>üâFÂF~=U˜GÛ’÷e² ìŒTׄ±e¼ÀJ5ºÀEíºÀ“l +’á\ÑÃ[OmóZ34A€‰ÈI-ÀBÕ²¤gxn#{™s÷"Ræ–¬"1™MbRLLN“l?ÇPPZ…û_u?ûpî(¥Ù"¥-œÒ̹”6Gœ–þ%-]($œµx’éÎÓÆ€ë|qè ½hÙe;)Ó7ªõ¢sºtö¾|¥²”ñ at¦0:•aÔBÓðéc#oz¦ÀJZ‘—'äÌ•Þáxìû-PÝ«ª±,—pe?Z»îÍKOáÒ'd½íViƒ0’§ëè(ØábÑÂP:bµséNšòb˜ƒ%œ­í839eîblÔyšH ¡A"gÖàôÅÝ©ÛÕ«+ŒA‚úƒ£æµtT3²2ÒÅiÒú8QÝ*XTn'™D¶›¡ˆµ ÕY"•òn6÷Ú¢èÒ9%\‘Φ[Kñ WzIž"ÆÉ̾„9xàsÎin+¡e+5¾RŽtRE€™éjœLg–E$ŽÄþ]t„$‘…IdÍ#TmP®Ivnˆ¢“r2†ûµòÚÒ ÿ_ªÛÅÁ9Å-â¾qõ`$¦hÍÞ–d·ZèHWM¿$QËHrÊIr–¹ ®¢œç­Ò8/s†ÏeMîl*Ü™_A‡2ÐV3³A㎠é+;Ú(“ +:„†RƒŠ¿r¯ ¢P‚¿4Þ}Îî>^iãüOkMw¸ÿî‡ü:v÷Çï~øQÿÛ´{'\슧_;屦F§:ã<ÌhàðÇÑü­©J‹8A\3$_s±mk®ù­ ÊÝ'¸ŽÂë¼Ï·Ù˜{±áoïÞ}ÅùMêÇ&ðaß·Rw%ÍÍsóä— ²¦± ÓP<àÙ¸tÇÛåzzm.`Ðu¼-#ã4zŒoå.ÆȪNb$_³#«nÄH‘«Ö½‡¨qs ‘jǨ­'ýSâÕk@È‚áE ËHt +ÞQ„_læ‹`¢ÏiÄžÆ;iúö4Þµ¨P`km¡&ÿé'˜…d=y96JZ_˜¡ ®ñnᶹô¢ùy¨/$èÜžÁ˜êltë­”è¢êµ‰©ŒF¡*~}«Üœ¡æÝФ*«-T%aÓ‡šmlj_ÈÍGaöùÞ Ôa@I·Ò&¬ ºd,×Sì&ƒØ¡­–,‹Aß<0:Îèz Eø÷ý0ŽB#JȪç¸Y‹þ²«tÂ(ëÒj¸d”¥MC㢄tž€àøjîÐädp¨3ÙùmÐ#Rï€xN‰"-\ãñºŠ¼"Ê€^çèn?˜p\ìÍ[l™_r’M\s[OØ¢ˆ,hjDV•n®CzÐØÖµ—c <ÄKÄ°ôHü)þ*Â+TnAû‰j·é[¬På‚ôê›kF{¡Âͧ®X³Uá–F…m.)7XîüÛ»¿ÓÌß/âo_pËfc ¡`bâ„qõÝ\ñ‰Nx™‰ê`ebšñå¡òµ»ñ«# t–!>IYò ’Éš¬j¢¥â™ã:{²%œà h‘ñ^P…YÅ;qtôœ„úCÏËÓºW壻Rtúž†fŸC;§ÑÕ,7Ñzž4ôb„Å.É1ðhd^O!p>ô©7`™6:U•p§wl`¤± ÕB&9ê|ÈÉ•pã7ÜbRdTc¡³H;_ai»)žÞò œèpÎõ\v›ÊOO7 4ÉúRõ·û‰ÝÑO½AÅü…XÓ £ @!'@š®•4çñÏ$âËi¹<ÌãÉDP¬ÙÆ—óØš<_šh‹7S +“7þКÏÀ“ _ù’õ¬Ý©_w÷Edü€•Ó /ÝSõX:ŽŒ#ª ǼV-»“‚)°R;DV\áèáÏ¿r$úìÿ©ä,ª 1ò3àÏ~Õ•…mÞ¯âðP š°#;‡Äeh#ÁyÌü¿wè{âê¬ðåg×üfzÚ I/àÅW ¥2ž¯½F€|í1BUëņ±‚ø¢O±QÂbé<¯hA„’Ë6.ÙƒIXýœ«Öœ¾ À¤(ò”9ãBg¯™ÛŽÄmùâí¶ªÛBI0 aaœÉ_å VSž_†<7FøeÓvlP•ñ,¦Hú° %;æF\kn´ÂB!.:æü× n * *wÓ#y…ƒÂZ¾öäj³FaDs=ØÖH1î[,6ÚˆZ7 Ö—úìyœNêF¾f«nÌͺ¡œÞéŸØ¹ŽèÉ»ìÑ£;Óe)l¤ø‰°þ(ôí°#@Ó¹ E[Vù,éøÌ çuHŽB…ñi­ yHMtBóéÄ (·r¼U³,[ˆÒ´!JzO”f¥ŸýWì¤7ÐbÛh,ûÆÙù[å¦ % œk®EvÝ ¿ŽŠü’j³B °+¾8_2s58²Ç¿¢g…‚ø ±Æ¾«Ô¢ s”9¸ÇfEÃMÙÏ7þTh¨è—…¦Ì6øõ!ÇË®*ðãOQ¶ Fˆ¯]5,|æ;F^:4—€ ßmoY[Ι—`ÕèbYÂ$o—OàÜ2‚$hhÛЫÆe¾~›(Së þ˜Q†,¤eßê4BŸ:XõîHQë¼Ï$ãÍ€¸ùDn€ÇæM_4Ûi%¢èt™ÖúK-1”ù’X±«É ÅSVd×£ô:…Xuã\ÕàXrK=ÃÚÿg8£qnÆÌy8ݽÿÐñ‡M”ø£%Ïì/eà ¯=ÉŸ†áÿˆ÷aÝY¨ƒÑÔØ *ô;ä8¢P-C…fZm@mñvЀQô×ÕŽXÖ1ôa„WüͽPX¢Ø +â’†g»Wo4‹FÁpÔ–øˆE£Po^5–l½PiF¬(T³ÖÀùbÍÑãIÍÉ×lÔ­š5Gù&oCCì\kÎ…þ]É­T!XP0‹Ç‘OH_4‰Ø%'g„«õHTM-ÏøñDÖ mÃó‹ÓÓ0åœasB°1=Â]—ÚiwÞJR(“+Ë2Jð}»ÄSçU‹EæÔ½/­ RŒ|òCÐñÅŸJô¬‹0³Ç~!`'›ŒHð |LÙüPøJðO+—wš6nze +Ù% /Ý&qyëõHm#ŒÇº7`°pžX=îç@à +n$FÃ< ;¬A[½Ÿ ¯ƒz7ƒç3â|¦ÐÐϙܮ¤ƒá†Pv¨•Ð‘ª%´µz÷hDY–®F­Èt!]ÎWzr³DػǗ¾‰óXˆ\¬íGÌ*f¹øж¶+ÆÄíHîb…•÷8qÔî*Ø@æHÌC@?„ÒD´ôv¥î£“ˆ® õø9 A$Ž8ml˜…}×Ô1hð÷8b3¡W1)f¡°ÂÌ%·î$Ì™\ÉÚ?Á¾`Æ—cj#X§¬Lx®t#Ër‚Sv{ÚrJ.Ì8¡¾…!ßÃÌžLoo;ÁÖìÁ }~®B5g!OŒ›(šGáî«D×æ™\béæSÔ˜kd rbô> +stream +H‰¬WÙnÇ}çWôã@s9½Ît,°%/ ddã4-Ò´¸™‹åëSK¯³M;@‘3=ÝÕU§Î9uøåÝÃÅÙÉéƒxýúð¯âðýÉç›ÇñæÍWïÞŠƒ¯Ž1앶ðÓ-îοýç Îïäƒâèì ö,9:á—OÂíGøþ{+Œ7°‡³BÙ½µ¾¹:8ÞÉn€w;Ýýûè/_|ý=œø+ˆûàp þõþð›«A¼»9øûÁáß0Ì÷'×çb÷áºÿö«îðû·~'F5!¾U1²¼™§h¼ð"›|2í½÷cy= ƒ~sôKŠbûœ©8'n9Y¸µ7ó-'Ó¶¥¯³-0ô˜fÉi>ŠwÙÖx)y•r÷£„Ä–G^Nb÷sçöNºÞîG±»îä°wbwÞÁ“Nú½Á?¤¤eWø ¼È«½x7´{ØðL<àθ(í}‹ï`›;x£Å÷ðçoø±ÁS”ÛÃó‡Î`±?ˆ{Ü]Ò)ÿ?Åÿ.ð¸àƒ€ÃïÄE×+…[\¯œ +_yüúîC§öª<¦WtEŠƒö3øüº¸C>yÂOãŠNjüðâ€ó¯èHKÁÏSø~Ä׷dž¿ ±ÂZ…k(dXõˆ¿àž=äØã&Ëð$Fs}ßA!¦W¢ê†MÐè¡ ¶ßÛÏ{‚œ2.Q"Í~L(9Ã(EƒÂào•KÅ™MuÅ«ÙCXƒc‡Ü+¼ Áq-8ÓX£pu¯nÃÕÇâêEi.SÕ D#m1à›Bb~.?#fêcø°ø~±¸à$Vîš*÷“¸ÊÒ~BìP Êàs(nqO€lÕãG Åê%ÒØC¹“¨zeâÜ9ÎäÜQ-š¤ç‹fH0@œ„ûß‹OMI×-oéðÀû¢OC¶ž¶Œd$ËÔmÀ’Eö¬ðd<`uô²Âd­…í´šWº\üe¸@Ç{ËÀ…kM7>o¼”^\j?8=ãRÈ¢×ÒÏ«òË|8ïÀµ§f§´?KEi]Ïývù$‡êšC™Ÿi¿ SîߊQ-3ªYgÔŒ”Šñ3„f¿šõj–„‚#o'jİΩ/©+XgêDÙ|oL”aή9W>ǹ2⬋íö©ƒ÷:ËK¨ì‡V265¼JTÙÂÕJW¨Ú‰¶^±ó^‰$/í†pÜ81ü 䈹§,R’ïˆ{â$]áè(ÜØjÚ”ºâèãÝweîÕÄç©ÕÅ Õ¸ªK ö»ÌiÞ¤fí$uwI3ÓL"TE_ÎE%X¤ƒÜ›Kš‰Ÿ•æU‡Œ+d—÷«êQjEa’†TG_‚—;…±sbqŒndMÒ:En'ŒHa9nI¬hëæÑ*Hùü²H×µb jhH' ,§CLÀGfÞ{qÆÞf.Ï ?¢‹%qý{D,lÔ‘žø‚ù1;=&d]¦ +k ƒt- +üýŸ¬¿k“ E5æ®)ãÇð<Þ—·^Çw”ߕ¹Sôij¯æÁ¢(fîðUtø›™@ < "8ü^œ$M…æ8àB½&“¡kÍS‘z¬i\†Äd|@x…aˆhã‹ÆÐí Ùœ½?Þ +´Dejw +èÔ:ˆîåÔ^ÎÅ®‘Ýg»¶²ûØÈîX0XŒuƒ5-KU¼{h9·fè½àM“¿t\À ùu‡M¸¢ôs6¼Ð¿ÑjS]el±ØÔKêW3a:Ï4…ÑmM‹3£ÃæãˆÊ ^ãñIcHŽ¨¢%ì0-€éV|Êt¶hì3Œ8FŽ>lUÀ¢^Ò¶Y¸‚,ÄÓFüêyÐ,ç¾L|mÝó„7µ쬕®ð³MÞÔ¬{Ó I Ñ&Hf).Ì3Ú’©„N¥"øœB”Nf5ŽYaˆÕì6ҰůÓ,“ cÖ è)N0¾´,°,Ε`$b“kãWX(’ïPuˆaî]i“t +uÕÔ§ç\ (šR“4ݱ‘díµÌÖH4™ãËxÕ>e™g[6’ªmµÌHªZo‰_qöñîË®.×=õ=j‰ž(È!ñLèÿ*KhyŽ +F`Þä’HùÕKC4ØÝã>²2ºp»<¯%^Í”ˆcl'‰ÏKp¹Ò¹—BÃÓ%rÀ=gäži8|k NŒùÄx¾Äv7²Ýº[1è!„¨Cl:gCJ[?èmÚ4à¥çU’]ßD›Öžeï°ÐW„¥dú´û-°ØõC‡‚EóŸ;åñ~ðD!Ù;T^4ÂÂ.Z<ÿ ñž×ãQ4½ üwp½ÑgBBu™m®ÂOXÕ>ôÙ'¼_‚²Yž^nT@jè·JjörMj±Ü¶·¯ÿƒík`˜_<ö¹á‰ömÙؾN¶·ïä·jV}¼ûaC˜ ðHŽÕµd¹dhO刕6VÏ1½–C’.†QNCž±À¦fÞð‘9x¾ccq+~Dâ–h6òÀÓÓR2ßÕt‰nŸÈ„q¬60˜ ­µnh¢ÆÈÚý/ÓMo\{´˜¶5æ¢ð>ÂÀA“JOƒGåwn>d‘›’Ê8°l~.HÉ]{›;Õ0â•iñ\åö暘q@”LKA²‘ì¢hc%"™÷Û`± ¡ë¹‰Ü¶Lµ’]Š¬XTÿ„t“ΈooñfͱG{uÛ©8,¤¸C°É­ýK.§‚ÚRyna[µÖÀJ;MÕ­†/kÊué²É3‡¹£gu…A"m¥8T'-&„FHšå±®ðº¥Ó¨BŽâºÌ«¦¾ûL6…2ÜèS²3 Xfn`>9”xÉd• aÅ–ˆ#d¹ŸØŒG!] rásY•ÃJ¶y–ˆÄh Ï’Ÿ‚]ç…(Þ&P:›¥êÙ,±b§É|ÑZÞ?ê¦Q¿ÃM»§ÜôlËV9~›Þ–ãâèãÝ[¬‡Y«=÷rò|s3ËÏ/ç|ðÑéwí±ªj!îD-’+Üe"šr|x‚SöžÜê+²=•² 7¯&Ç:òÇ•m`ƒ˜ðÔ›ð¿ªÇÚÖ`Ó.Ìq¸{VMù-Z(ŽyÑTOúÙ²®¸5ð@9H*›úŸ—önì'LyVëQ­j]ZäåzÚ‚+xªìø³EÉêç~¿úåQjUǧP@$®ª€D£ *+åG1Ã'#¸T¼uyÏç*U·FC¿"t€ bÍWèAž¾L½Ÿ» SÚäÛŽÅ>A‰4åQS“;ywbÊlÏ;­(D‰ÓÚ씦±`u*aÒÁ &”ŽÃ6JqbœW€˜ZP:–ãÏ6!cá äÀ²ZdÁ © ¹ 91&‡î;sR”ŒÿpQ:¬õ«5}W„™Ü=ó׎@ñ¸àôŸq(š˜¶hÉR *Ýßò”3x0fâ25|çÚÒ››á¢Þ=aï¼—KsÕF…÷ü +-Q×Ñ<%UV®°J*dÇƼlƒ Îu¿O¿f¦g$] ÙÄÁ–43=§Ïù:¹VJùÞ%‹¶Ú¢ ÈÙN=T3|oÝZçΆi”$<ïíÌc‰DÞâ!Âú”všÑS¼ÝàmúÔžéî"ÏT'2OÙÒÒ·[Á@Àƒ°·ñlRk_Ó­eš* ¾˜OÜ:åÚsÇñº’Wtwt“¯Ñyòõ^«Ú ºÆ ¸½(¿Dó™õFeõÚàžt‰`Ô·ö‰Åí0-•½æákÚ±þvBA7‚dæÎ[â þÔ%Ý F“¦4kÚéà9Átù÷]*p¶X7gÌ—Ö½~× ß+ˆùØ;Nd€)‡ßæÌã9¾ëŠQy5+\Û°öëÌx)uj÷JQ/½Õ}¥ªãWz¦; NpÁ׸\˜4.,ª»HÉP¥ä>ý…=úS"Ù«¿Ø –ƒœzÓÉÿ¬*1ÿf%B&/Ù„Ál—èëdÇøÖã,9ÖÓ ïÅpW€LÙŸÁÍ`Ûýü†¡e”ŽZ$ ëøÝ$Sò&ž±´W‹Š'†žÐѱ‰ ݹˆà2´ÙŽB1#ž¼ž^ˆ_}߈ ‰Bº|Ý[rvY¸{Š­ejQª™– ÜŠ:ùýT%C5ê?ª­†Š-Ä*.:8EÍ4 ú¨qmm¢͒{ï”ÐÔh*Ã:²ÓBGYÖöTd »ö–gW&¸?ñIÑç&[÷íf^t;ÈÀ'‡ÉµÛèHFd 9 ”|îàð÷ÊŠ§›,Ò\Þh/nA*XíØ x¡ÏpÙ:¢ ¡ +"k5ïªéšR.‘e>íª£ÜÎ'FDWÚq…uS`XJ|Ô¢µ×H…øønÖü£ûkŸzw›{ÍÕ5m¢#i·´šnxêSÓûß øoøy¶SšS5ƒ€ì†ÉÂgm–ÁKÎŽl?çÒ–QOW_Ü$`å™íù\E+éðpB¢ÿîtÂ_±5Ù´&éc$×wT©½¸Qöµ9IÐÀüI½zÜ;Úô ܼL6 ï<ëé üñUOm´Ï¥&«2nHïØ_O¼g¹q0$çDýÛò½ Ágìšy’ÖwjËl#B`κJXÉ{ajæ¤à64 Y¥ËàÛPCœ±˜O¬ +’›½w$¼/’Ao𾧠‹Â¡ÜÀΙÔ’…±`Á7í0zLðAîx-¢óò¡ÀC5 +…4Eµ‹2a+¨ûOnú=Îaã—ääós!®ºÅ6yXO +× žÜ;<)â5“âmYr–±~syÊbuÍÜ3mˆjjî¹C'¡À*·4¥Á‚Ù®ãiS(¡QBQøYTz‰ä‚›¶¤™i¨‰ÿ /ØØ·‰ÉúAöê+Ú’oz.ÉU>!o9¯ØòÔòbä× %¢ó¸aÝ $ïP!Y#¢á¹ÇŠä¤‘Ô\9®_U\¹*^t·°|-¬–´’°ìlÔØ(ì›L"òî¨ÈŵŠ+™™£¿ç+œA&~‡0éOlô•TmÙݧœ±‹‰‘(fÜÎ-½çó%” ‚âêpVàU¼Œ[ZQ¾H·]/žPJ¶^ÀðDÇáY:ÃqÞ×Ä/÷ =ß:,!mòï>&G¥Ú^ó“ÇÚ]j¶Û©‚ÐŽó† ÆQñö&ÚìÅmWO3ž!©Éy‹ ^ àc©¿2Þ›œrQe®×|^›ˆ_1/¨¾Ãê+ªÍdÇó€6.QR@VBf Õ{¼ælw‚³sJ$¢µx²,íõ†á­Xì&×1öý¼W?±æt6äâô¯$—X1M‹¥’ÕæS‹§tZô¥ +/™ èŸ⤞ÞØ öó÷¨§Äßäüžßjø=0Ñ\'G%„UnÖRœeæÛbQLÎœÅIš=R™Â2c»’‡5ÙHjö^8#Jdí“ϸâY:~V¸\”’R6“ãÐЀõäéuä»R§pld>CŠCUpî¸BXø©¥ÚÔµv¥QÉ‚²F‹¦®«ò™ñ6ÉLA¦Qeé'yú`i@GMÁB³|C£VXi”4XbˆÃϳò˜*yÀpãü×{×/ýôìÅÐ]Þ?‚'ÉÄ"˜â‚‡p%Éô´ä¹t žÇRhoò;ò€4ó® ©Ïï¸_Mäâ:¾ +2 âDŽÀ9ah¬Ç÷î𸖃%Êí9æûäϳC‘R?ßßÓõÒ‡®p'äpw}`Ž,6Kùû†û ^p¼¯„deê£Ò_pB=Ó™nw^É\_ ¾ûˆwað.!àØÈÊsÛËfrÐ˳\̯܋ﱃè§1l§¬%ö±(-fR¢»L› ÚÖci—¨Úee\LHÒ¥×u”"HÑû¿½§ è[‘QÕ6Mà—?œ=J¶`“ÌH7+Ãã-C!/ÆŠOeØ[«-egCó µ +„¾?xná´ÿ¾L¼iÔléåtÎRèïÓÞ<4#˶Î"ˆ;ëìa®§ò­Ç†ç1Wc6m9ÝÃ%4m &Ò;*ÒµJ(—Ò%ÍJdËÓDªlžŠÊ_ŒÇƉŒyW9Ü€ûÉ6Lz¸ø7øŸ§P¯f•¼Æb!>úS IKµ¹ÉßJ”ÊU,RB‰94«V-½”©¦Ø`8ÀÎÚ§³à -—91:ë*½<îú—v|ÚÖä{J:'«1{gQìœ!Ÿb×xvpû|É’SÙÚ×7:Ú—[âiÎäïYB»(L|W.i1ä|ê^Ykúyät“JUÓ^·È-*ªÀիỂïZ=Ó©©B‘“_ ©%š¡%i¿í-U&ú±óà¿€AEEëâññ²êø³ø¼Ô]KÊL&{âOZX– TÄN`J$“ežIQt‚ ø—Ó*ƒrŒ$bJ§ZíJ©v8Üž\Ö“ý¢ •zÖ[‰•% 23 E¼NK£ÕMÚÈ­ìu1åDÔ€¨,(Y¼Zý¢û¥§¿ý  øÖy^Dÿ 0Gˆ5] +endstream +endobj +79 0 obj +<< +/Filter /FlateDecode +/Length 6432 +>> +stream +H‰ÄWÛn¹}×WðqxZMv“Ý ,°­ÍÂlv•õC²¬ÛZ’)Šòõ©*Éb_¤ö"@`À3šf“ŪSçœ:|¹»»:?9½Sß}wøguøöäñËýúþûWG¯ÕÁ«ãƒZÕ•mü߶Ú]þøK­.ö‡Çæµ2êøü`[W5,9>UüåAùªƒwà_W9eLS5½ë•u•sÞ¹9ؘVÿvðÃñÁïà¤ÂAø>¾ Ûã_oÿpS«£/98ü Ã{{r{¡6g·Û_éÃw¯ß©npe¨ +#úŒ1šã1‡Xstuƒ'–e_Õ¾Qí«a<†ö·Í½5¾2js«MŸ§z;àçîLÛʪ͉Þ ÕfÏáóJo­…›†¼Ú\ÀU£6×Úü|„ß=>x¡î`ó¿^j_ p!õWÜ­W›?)Ø'¼¿Wp$m Gƒg_þÀ°ü Ï€`>©{ ;ÂV_u‹ ¾Àœy G U «mi³OK€ŸpO÷Ùºp‘mÎÝã/†v÷¸û)ž¯6÷ðÑâ«;øÒà-=†ÛÀ–pö#F ¶x±°iz8=ÏÉ*ßËÁO·‚ãàØ;•6MÄ”ÅÀÕ9¾ ZŒð $6½QúïÇL€[†”—ªŒkGˆ‰`î ]‚LFJˆ€°îOÄ/èVËå2QÚ(÷X¦6 ƒòAõÝAj{ym<;dkØàFO)»¸¯“ …saÝ¿tcðï3•ð‚éâ"]Í„ë#8J¤4ü†‡ Øç²Þà—NFféÁwÕ^õL]ãI=žá÷t2üÿÂ1!Ll+ÐCo÷Ü}-¦àÈåT*J— éò¡§9§\~c¢4¬CKWP‰lóR6[I{Ëûöb_äWc—`Xו€ †Oƒ ÁÝ©¦'¡*;uÄ%?Ò ±ÝÏ9Y =~\ľ2&ô$4 þ~C‡¶Ì¢Ðea!Å ¾÷EÞ)‰àÈBQ# ‚D¥ÞÉ3®Tãrq+àÛUÞŒf÷»“Œ›‘Y‰²ó4ž6øç uˆæß±‘7ugJ$sQÁb®ÈsúJü [Õð÷T2[üñDH¡Ýr¨çºÃU§£îI¯),€&ƒmÆ +«E<¼×aÓhãâí^Èq¥VDƒ×QqêÅæ‘t3‚GöÛ\P7¹)Û#·­’)ÔôK@rðÙ{àìŽÊB: ¤J»L)9À¾c9²”§äM¯Ç&e·*Óo‚= Rg)ËÍ•ièóAIÏ5 ¯<¹å¬"¾ÜJBÁN6‰Ö@€œÎ5#LFy~A“fBý£u¤?ƒ¥³BêQfsV´6à}c"cÊ’ñ{X »Â+I€¬óJ=ÌtøZ·¾¶ŽýL¬«@_L¼™Ìi‚Ñ 3:Öq™¨’ÄIËà¢WýŸP× NlD=MƒËà ̔2<å›4ÜåÉzŽ~Ô¦™øðxŒØ?B‡‡Íñ°² jqèÁIС óÇh4ÖNèM²ßZÚjGÈi–ca²—H?:LÖé< ”¹êC®È,ˆ@5‘ûœ èbžœÄðTžÌ}apzÜ(•-ùÂÂC?mgïù̧€º‹X´•®&úµŒýT;{ñ–(k=ù”ÚéúÉ™°å–Å’÷](7ÒÁ¥©ÍCTÙŽK«K½úüTÉÚ)‹ÆÔ$2C“Á÷Ë~Ed¹ 2å!ü~ÊTŸU&f(’Yꉖü}šä±£ @ .–_f}ÝØjÓ®}¶ãvÑb×A?Xk´#"Û–ŒŠ$vF<÷ø(<,øˆ H8ì 6°¥] _¨÷Kªpä3[ô©^|£QËÚÐÀ. =p‰à/#Á¾ËJá´ Ý¿$p°Ö/õÆŒ]")×{aÖDó1”„x¢-…¤µ +þR}e“ŸZ·OÛªt‚x ³,ªRºå=»NÿUКÚªà„ÓD*^³é›& uû²|üŠ¬m ÿ»F=èƒÿ·ŠÈ„W$¤eÇViGp2Ú““5®tðÿ˜aägšEfqƒ°´ïµ·¿WaXe_FòP˜/ê@7™n$2Ã’ÈÐðáˆk>hÝZ|P©÷Ò÷Ò+çû4¦ºÀJ|ù8¼º‚«¶dü¥cóÙøe¾b³ÊË®1ºÁŸœŸK?#–Hí¶¤o/ƧѬ° +,¶^ž6‚q¾À øÖãßVìkFSÕ"a¾ÌžZn¬a3È7kóiªYX œLü¨Véœòd7Ÿf³ã uÄ6Üa:øjºô %Ý»‹îÝ•î=O™ «ÿ¹ö¢‡wSÛ™>ˆf¾êZBNB ñH¨sNìOK W"Ì®A˜@ÁZ„5%Âl·„0àñ죹bªšx:)z¨Z² ij O¹–—(žç³ž>£;#'²ç]%n‡D: ¨ÕX±J3Mþ—õréŽ7¢ð_áÒ<Ç­A°Ï,3o²OvÞ¸eÉrÆ–ÉÙþõA=Q‰nÈ“gŽº›Â­{¿{1lGµçTäbø˜áœ7ZÁ µÖˆh# QmŽ rÄ¥L}÷€K·gèYŠË»—7þwd1,÷9­FæÒºThÇ'æhüÓTÚ© ’9¯;eµ)ynQ²Q[«’}®ä¥ê•qð¶ Tç¬%A'…´qx$qŠÂÌïaBŒ÷¿ä\ïBÓŠaQ¸v'^…o„»øÊ`VËæNýèØЧ”hf犨‹‡šß ›x«jÝz¼ž¾Œïöw>ËÕtM0vG2Á·J"ÀǸî>Â̼é¡Øô‰,šðØ<—vò{î8÷¼pÚWáüÀi‰/ÚC& áXÐ0™r`ç„ö˜ñ6=!xÍÆäkÝW9Á©.iŒ’*¹ƒÔRÅÙkÊÌKqñÄÉ9ßÒ ìÔbÑIº— +wLLýâd…Jê_bÛäçØf¶XÃÜz4 ï+Ös¨Gri¾¬y‡Ú"7ª-dj‡µ¢6·®¦^(h0Kxà@2ü&‚+ðÊå¿R"ú„/Ž“¼×ìEúڙ΂>ŸÈû½Ìñ¾ËÏv5_;[p6n +å9v´ì»%ÇÜÆ’\ßôÎÑ+§§“*¦ ÙÝò•À—Žji†ëÜæ™ ð v¡¥µK¬ ùhEÑšÇ\p®¦·àL•¸–IØ(£Ú––Hؼæëâ5üèÈãÂ>BL¢µã gþd¥ ã¾tï^õ÷îm¼:ü;á6þÖÏþú®ïž{:Mµ»T@ŠòÔâX0ÈùíèyQFÂÓç;þœ sµ¡æÓẽÜt:3RìGp•—+ãZÌ: ë<´}xW¼ã/Ó.*r“à\Kyµªhœ³åõíµÖ-œ?¶t ÎÀ'òg¼ 2ŒçÀ+ù˜j§¥h•óÆBrœ¼ó-y•œÅ8ç¼Jj¯¥'ñŠ¯mÖ°jÇ'¼äb‘îô’ ò‚ó~çÓ<93ø‰Óh¯“!Òîýb6à“Îdk»R•´VQäøš†ÛŠi7&¤;WyãÁa ™t^umº,*ï<×dÝÆW’÷‘73š†¤§9mm¦ð#¾I3 U>ŸÃœß!¡ ƒàÊÒžw¤ýŒç±dFÍ&Öà‘š¢|Æ,Õ•Ø"T¹<ä\¾XyVv0m~$ÏL StäCÖR:[Çp¥0…Ló^qO~ðäésRÖõð|²=Óo“´b×Jâa6ÁáoÉôŸý„Þ¦øõIË– òðÁÚ€ÍI£oÁUŽYfšõK=ëÿgo„¡ aŒ@‹°\5Ïç2/ÅÝr5,®sñþ Š'µêÌr(S}zÜx 2 ±š«-×%ùMæ¸Ϲ¦aÈAÓ“ŸoO qbSøŒ¤áΔE9÷C`´áS^éðXñ„¼í¤¾¿å:ÇI4âåÍ“–Ù7}dˆ‘_O’´Q KA±ÕÚ4Lc¿èR<“ÛÆcVNýÙrú’jša…«ÅBÿÈÙ«—qÏ1ùÚ£ MYÒÜ°—±‘çìÄféªé¬¹ÛÝ >‹2æÜÒ5‚¦¬´öœ]3Ýu‹£ò±e¡<vûelTOÈ£¬©gŠý*˜è¿„ WÜ?Œ™«1¯‰™t6QuÛWép·v—•Äú²Âªv†aD òJcÑìàg¡c†…qŽøÅê°<}¿~DÐd¯„p•ÁðœÀl|&-ÚgdžÐÑS÷îU¿Lp ê„ïé ÉÂZU6Y˪ ,¾]Ø$)•·ˆCA©Â©Ô3ã ÞõfÌf‚™ •ýæ‘]ò 5Bɱ÷⥲v§íÙyò’ó±2ë—â˜æÎüsO[³­JycÏ6Öœ¬^ÒYWô9ø}ÝéâhG«Á.U ÜÖâçŽ 5|÷ L£¾\Iá#Š,¾KP¹åjX\7 Îpø[&”F‡ ‚±¼hÒÅœ £Èçü$‰]kÉTd#e¹ž Hkdi,iûk»OÀö;Þ +Û ÚŠýáݼ$¼vZˆ®BÓ ðˆèñ7v5èÝŽ‰S,ÈÖ§-HEñ!R“ljÑ\7)‹îÖ©çU×ÿþ¯†ëú‚×BÅÇõò‹@7!YžàK†ÑvÒ/pÆ\ŽðÃTŸR‚çÄ:JÝR>69xÌ9¬ˆÿ8fžyX.´YgñÅ—á"~®—Pî½ÞT¤˜9’8+»mã 熋ÿ¢K{ºËÀ9U…É%O«é ¶äUÑ-5o¨ßL ›˜eIKKÛÞ››I`µ£“E YÀ …©Ç‘þÚ;|ûß n‰éŽZ2ó»·TO¢‘ýM¤F‚ÇÍ~”qûÙ©ë^g²lh—4&,n uÍø ‚5òÛº‚gŒq¿ºfؘx€]î¦i|~?oV#§Z²·©+œñ>8àÑ/™²¢ê›¼o-‚9®UE¶Ë`êEˆ\Îë§Ó4?Y×gð™c:ÍM ëd(a&z3 m„˜îÆtÝ¥5R—» Ÿ[ÅçŸKÀ5»FoŠÿs‡&6šõ)bYx¶| Û”XRøC>†T9&\§oÒõÖ—À³¶¿²Ê5jõXjÊÕ45/¦Qh™âW„ c2â²*þÛ&”ºón>ßÔYÞ 79àYü- + SCéX†R¨„“mîÝ{¨J[ŒKœboØÖ¨º,ÕNÙ)6Üï÷.ƒO‘zè{6ñ§T&ã+âïAöÇw%õ=’`¾l + ÄAþ}ßÒnccZ¨sÉ Ûä⇿êjq“)¿ñ„ãAa’vöª{ßq}š•…Æá’q¤YÁî.;î5•îµPÛÐü¢£‹“ðiþ‹÷ö¨žùjÌLˆáPOVMŠ•¢çßa;àÝgk~ø© ñbÈncQý7ý¼%ÇdAJ´ðÐ3–zÏPâ‹}ë¡h8ÓJ:øùL¼Ôv•5HV{(¹ +ö‰øÜײ)úÜâC:3ÛĪQ™Á +‡ÅGøi Ÿo{í3i‰®ÂúЕA²W:’âO=éŽßÕq/v÷äÌhò¬g¯‚ +–~rÔôY²tg²}Ó;G{hçâw(‚æÒ(šÉˆfO+Ãlð=cZfE±âÓMgúØš,š6µ˜«#‡8<ê~Éc »J:±Vv<=DèU&ïú‡ÁÕàSǤM#F& 3!ÑRPèù!eCÔ7ŠrÉ2I¢ä!Ô5â/·è›Þ>TIP;5жG®›öØ^jcºqyŒ…¹b6ëÑpôsOûq—¤ÀA,v×éî$ -NZ¿ “×áÕ}É—¾Z|Éì{^ôÜtÆÌa¶Z<ö©hlðc”îëÌ1fªxË´IpG]ÍB)Ðü­L½´Q)s½Ë©J"¦ã2n€‡Œ!ïíÉ}Ò~ôU U]`¦‡9¯²èäþŸhot}Òyǯ|ç‹[Br÷YÓ}ylß;”+‚ÃLùŽÜ,ß’š/²MÜÙ.ó¥3áÚcÞö }Q¬–ó#Š.ía=LáœR#ýB“çÿrÐ+ +endstream +endobj +80 0 obj +<< +/Filter /FlateDecode +/Length 5886 +>> +stream +H‰¼WÛnG}çWô#0‡ÓÝsÝb+kdá Ù˜oÆ" $RŽ­‹­Kí×oݺ§š3¤†°0 “ÃéªêªS§N-¼½ÿs»>»7/_.5ËwëÇ›‡{óêÕë“7föz5+L‘;_Áß²ôæöb¶|û¾0w³åÊþQkVÛÙ¢È _šÕ™‘ßL7pþ5yeʮ̫j㪼ªj8s5›Û*[}šý´šýô xú +Žð<žóøíÝòŸW…9¹™ý{¶ü Ã{·¾¾0óÍõâíëlùË›ŸOL[Ui¨#úŒ1ZŽq¥B,*Ñ» +ÝØ"oZ>báK“7¶®LãÚ¼ëºcü0?É.·à4[ÀÌüKVä5}­òÆ̯3[™ùy¶èðéŸð²ËKz\Àµçæ&+sÌ}¶°->û˜Õy ÌYÖ¢ÅðFæ,>¿‡¯ä€Üýµ{³‡ÅµêìÂvf¾÷M.á{…áàß³lQãÑÄ +DNðE;—è<=BlpþÃoè>–®{gÎ3Û « 8†eÞª0/36|“5ø´O’Ã_Ï3Ga¾0'™«ÑÏIæ ôû»ù1âÉÛ "©0$øÞª¨ÁFÁ¹…£>y|J8­¹¼E× ÞÊMöŸÕ¿"Öö£©Öh‚wQÒV€ï®4-ó&‚dPž¦¦X-¥ë#çU×bV0tP×R^ W7˜îN[J¾•RÓcÍ Ü@VÁ\C@(Ь®¼k"dðåÌ®ƒ8kW™¥â:rv‰ÃŒ_á‡F÷€©£ÛwèjýTå ]\ô­¹ÅÙ$ª`¬Ä#ü|jÐ<åáŽaû€Ï;¼ý)¹‡8|¨ŠuÜ(Wˆ‹v½Çl?âÍÜt5 'VK€TàÔ;Ÿ (FÜo¿Uö5¯¥ÛتÛu#¶oç…çÌ ë€BA,V|ÁøSõˆ)Ð2‘"˜µù´Û@j§ðцjOõ(e:2èo¥;xˆ<\âcu/é“]–Å›ÕD •ðºÅß¿fD7'çƒÝɈoP¿a£Ö=|ûÏàØî™ßè~•p™ ü€3Áô|ßaX Š³A×~‡ß®N3›v”tXlؘZ2s—ô²dè8FìŽÁ²ÂØD,×Å>,·{¡\·pûH¾qØì¿åúìÔÝl…4tßWDn6±Ã)Ž“3YÇ‘RküüLrNhnt‘R‘ ƒt¤I+™Øªíó/à{ˆ +nÇ +oˆ5Ù¸´§ušyö5õ‡¢³Ýp–ÈÇÿ¢sŠÈמYL㟤5È£%áA·WÔÀÁÇT&¸'â4§žìE±Ÿ)ëîá…“£‘,µ49Ðëèì¨SNÛmÅ˜Ö rh¬D.hÀi¯Þ0t–Zay!|·‚â½àû«ç fv¸B«†¹â½PY—F&JfADxJ…”v$<’É­ˆå-Ü`ûX|õHħè‡ðˆÎ’{'.@å´cB¸ïF£eí¢šŽ0·Ãdõ~„UZ1†*‘kø¨Ø`£¥bœ·ÔŠjäYüÿ+_åa‡L™\ÉÑ[OJ¢6u½'—„ÂܬXˆ}TsšW‡;°O´HP®z²YXª/ÄQPu7pK^”öµ¼}Ð+x=§—‰àûW¢ÈVi’¸~t‡´ â·¸Fñt¥#?8êæËæ"ÝA°@™Çå‡5<GNØaßñ'KF½u€7Õœ +öˆ‚Š‹ÚâÅm1¢7‰,à{6Ž HfŠ4@™òïYrÅë8_D@Óⶻ=ƒ÷êÂëT@4F‰8¨ üw>Á mõi‚ÝvG©—MjºË¬0ER*)™TÂá%S‚Òâïˬ!ìîjs¯ñ»vePq¡9ĤÉj.˜[¥a^qG#Ò"úðä˜:ž +ìú¹À†6­vsØ©É©ÀnŸlåqìÁJ-Â#0C-̯ˆ¬kd´õS\¶RóR¬ ß)µ¾³H®¾Às‰¯žã#RR½Ò'À°~èˆ +ûÀ ŒÚV¾ <ÈÌ¡I’;ÜežÚm*&»çbêZɶ8„ÉÔäDL¶ö˜T‡˜ìU¹³a +µº.cÍ,Úif“ßlÅïö\Â#•é¬F:E½Œ´NàÓe싼6à„¨¹è–"ý° rMp ]X&®XÛᜰŠ¦EV¨Ž"Q¤ô ƒ×˜(¢[÷LÔ•È‹®jŽD?€º“SQW~?ê´Ç!êZ_$yà“0åêÀã‹Ô,‚[Óô‘æVoþpr³ÁX„ñ» Â?Ö oc{—G} ¢:jÔ™u|¹Ø4¬yµT1µSÄŽ OtœOD^"Éò¢èÒ®/NôÚY)ÎÏ%üÚìN& f^7‰×/¹íC—È¥åWÐŶKÊ仈ÜéÐþÝPêô/›LvFÿÝí´£5W¢ñ€M)æ”@^óCa djZ¯Îm“ƒç%â£Dóª&®ÄâaàâBFzÚ 1T§jv0¥‚ˆ"„ΰÊìÔô?–bäž5ÅÎé7!±@ýž(ùðÐ×aˆô¼’’%ÀÑÝUŽ£Ö<ÏJ‘1Nä +Úá(HãƒÐ¹Ù¥­gêðú»t¸éÑÀÕKFiA• É—ÑŠóhæ@ÆZ¾ž '³cŠ : #M2|”]›uç€@¿Nš7‰òÎmáÉ6Ô¬À¯t¹ð‹ƒ£Ùmÿz¼ÉÓßmP ÙVáa¯€81ÄÓZ4}Ψ.Øû®eˆ‡¹˜„µ…és>V¼þY¨‘RCt×!8õváöož^zAUG‘¬Hg=øE¿y«ç\Ty¢Öd%áBëp¼O]7âΖ®J1w]±37Y™…|Ú‡@àß.øÙœOs”Êxp>JŸvP¢ÃÚ:qðaÌè +®Ü} Â¬O6¦¯5•íï¡›`|ỽèðÜüŽ˜êt%E0 ›0ïê=u¯û°ò†¹ìèèÿh¯’åÈq#ú+<#T2‚dñ|vÌôÝ!µ¤™žÖ6%»Ûý÷F®H` ª¶OµKæË·\ »×Î`í¬ýÖ0ðL\ëb­Î|W«Íh¨î¿Ù´»î$¡¶ÑX}Žßõ¸£Ù±m‹!Mf±ÄM³P¹9|Uu<ÇÚeT/Öˆúî£Òq®Áú€ËêfÃV„„ýЭÒ^¥/©6™m§¾ßqŽ-•Ž2Ù£Øi™xZ»Óâóiab;kŒ•³ùŒ¥Û¥ù7(ãË+_‘l[Ó™JI.ÚØ[‡ñC”Ça¡îû1À:Ps(…P‡Ò¸®&A”l‚±æ­§Á3#´u?<"àÝÍOx¬Ôqsò¢_“½,:ÐmðWc"¿å!³i¿ÎdSˆª CçÞOe¾ð~k-#ÏFñ”Ø£KÒ‘u4mÀ + žÑ¢ªU»óÌë&¿Øøf,¸¯r@r8U‘Y1±Š½Ù))ÎMe‡¼§5‰¬8gt8ÎÈÖI–A˜2(H5ÅWö„Y^)úË{kd¥ þèWÀç?z¤Û“˜Z4k4S#;µ +&fê~!hA…‘q† + z4ÚÖ!¸ÉÜDh„dð‰‘jgy¼0ã®yÆu³ÛÁÌâLÈx ta +Œmà³ë­nÕª”6éïbÜ”Ž;·;^âIæ÷sŠA”º)Rçr®Y*Ùq1oÙ™Dø €Å-h*¬ZI–"ÛZ¹\ÓÎ0Z>.[>c«XÉ<Ñú•nCϲÏdÓwý˜A痮Ɏ7í ršM.ø-Iûw¡°ç0K{QïÝšDšæ (»íÞ”bÀ~÷»p·*—ØVûôÞ¦–37!î-BlA²>Âj¯ýz¦Èå ‰¯‰æ¦bn@t<°–¹Û ¥é¸´ˆÅŠçG›òG+TW©C%k*¦‚Ï’Á¶¾¯¬Vz.4MM^Bbš)<&£Ô©NöWOòó–8^u©ßq¶å?0žÍ'dkL]5]%Ë!Ùéºd.»Ÿ<¥ó}sª‘tu!]µª*æv&$$ÐITŸÔXäùu€Ÿ5¯>vâI²B!¿6ál†sg0ÖfîÖÁå”è÷àýDJ#±XÙß YûnìŽ Œ‘nSÕ$žDbÄ6Å”ÎÆd¯³cÑc/~ð¦a0FD±£ ,öÿWBEY¶«hdW²ž|NB¯7³Jª'A2ÃYÁ2~ëG¶jx®G=7–xž°Sœ‰7^.ÄIö7J Ì ›k4ÂÕ·(¸ÁT›‚¯Ã˜Ãu ;p?e‘W"Ù·>TÆQb/û÷X´ÙòÚ‹—ô“ó#vÌŒuaŽwágXŸÕÈéóʱù˜BF„ã%(]¥6»1W>‡…K$“H¢þ„_-L‚‘é=x )3©s&Ì•®ÝÏ` ?v«g©Öa”Upü¿÷ãD­“Gh›¯ 8g­€ 9°†½À2 &°x¡ªòÞ£É@ç'cËÄÉCqR×°KçÕ!}\wŸˆ±Ôgl4ÕãþÚ¤\¿ÞáHÕz3ÈÂ¥qL|F×èÐZØUŽðr`F=C»ïÙ å©áR].¹U«šó™êKJö™˜ä´ƒÃ‰xìI¶ïZq5帚wôÕÇ7)rÄÌ„cÆv$À8ÓÔ™±v(g[~/ÓFAJ%o¥1Bó[Ò˜¸ÁÔNlÞk?Ði33j•( ] òÆ.b•Ã&S°aÖJ‚Ɉ­ „±c{cV“Õ#G¤CiG™ ‚2>TCÃ6é˜`ªÊR6ÂbÞƲ8xktÏ%‡t5lrð“ié8ïٽ’µ8`¡uø +¢$ÄŠýßu÷kä»ZiÜ ƒOM nkhø¶w=ø…Þˆ‰’f½d0,Åm~0’§àžíøX¬¦¯Ž¦ŽÕÓ­asªsj–WeáÒꪎ9IÁÃU’š–,l oEmb§º§ª¸KrVkÎáC9Iƒ…v§2Ñü8ž ň pÌõ‘[ÀÎ5þ0\Ñ©Í?â­S!§ÄQgªFrJÍL9É8ÄŠ"½Y’‚àCªŽG.j­ ¶kç& *ËþJ€ìzIiöÖ†jÒ@ ¶È…ÑùçDÄj>¨Cò©‘h²Û&¸-ŸùŒŸN¸p¼œèÍ ·(hÄ­þ…K©î×–!äJ~yy¦Ç+泊}¨`ÕÊ_çYoü²R¥~ëÉêjÛO–$à‹ßE+÷˜ÍÎÍ– rbZªÄ$^p.ˆé‹eõ ŒŒ· æXÀJ(²/ÜNÍ”OÈÙSBa$«=çHÈf0OLGXá†{µëQg»@®F)“1“»©4a­¨ïŒx~ÆÒµhi%ÝMÚ ;8\âÐ)UIõr6š˜‚a£; ÎQ¬öl¬¶­à7aGípm©yå‰Â:lÖZÁci¹éñkà™1ϧü&´ÔtY„ų®#‚7îOc¤äËŠ%¸!ñ¾[”S·I#ºÌ dŸìL #»± +ÿöˆñ+8rÆm?šK qatq›D;¸ðL± +ð:‰MLb]™oÔvCk‡üC›Çߣ>“CËî< +ß0;hÃ]XCÀ[:DÞyÈôc€¥pkfètÿÄLwo:íªß4l²ƒ ×ÏRá þÿ£œÒÒSèÄ­™Ýßa7Kwæ 8a M0ÎÌ6ôÌ-Œf ÓÊhË&ÂŒ;¨ ±áŠÊ8zcÆdhErMY­V3£ê²é‰ÄšmÎ|`ö´j2¡Ø±Êò:t¢G8ÀÈ­œ7v'8æ5¥¤~>ÞmR‹·ž¡ËìðÄ",껫\`¬íöLªòYªBþÂËù#Œ†²Ÿµ§”#‹Nö„@• C­|vÌã kT‘ã£à(r~žÍñˆß…l3¤ä4dNWu<\ØÞcí¯êVŽc’ø«Á/¬ H/‚Ü×|ÈKw!Ö€¢¦%55˜СTû5daîQŠ/Óè5yŒàLP=ž`¬\=bhÅÒj°±Èï9«xÕäðï{lyê‘Œ~ Ë$* ê·ö!n7Ž}SñÑRÁ[ògÓŽ?C¥Ì™¡Æ +”¤ºgÝ46ÂߣC,´^ÝÝûc¬ª;3@rä’sd .åL¬a"ø–Hï¡&—õ>«É¨*+¼aš¢ÛÉ4í8×Á´®Æ¥c­‚ñWI1°,©Ù†,ðhŠÃÿÀgƒ8dju¡]F‚ùœˆŸ-¯›‰Å¡‰¦f#ôa¾õU7@à(©ÿ5OG?`þìC-êt7­8q9Nv,¾&?ÞèC¿çĶ£í±@¯]2“ý@f]$?þÙ£Á­”€~¿éž… °Ãßåû–Ã-|8ú_ÓñTx¶Q„‹’ßb("b]@2}&æ1Þ{!s뇌×è-U y›ÊJ3©•BSCNb|ƒ 7xÉMø ‘z +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 2786 +>> +stream +H‰´WÛŽ7}×WðQ¬V“ìfwA€õ^8ص£`Ö‹`.šñÄ3’-iìýúÔ7©5£,$°z$’]¬:uΩùß6»›«³‹úñÇù?ÔüÝÙÃú~§~úéùËjò|1©U]Y׿MãÔæz2óK­®·“ùÂüV+£W“Y]ÕÖ«Å…’‡ïÊWìÿºªUƸÊõm¯l[µ­‡=w“©ñzñûäÕbòêgxÓWxîǽp<þõnþú®V/ד÷“ù?1¼wg«k5]®fožëùÏ/Þ¾Tƒue¨ +#úŒ1Žq!!Ö]CÑÃKM +­³}5 ƒÇØþ=ýŸžÙʪ陶¾rjºƒ¿ëÊ«é6=ÜhºÖ ~¿ÒƒšVê…6þ¹ÖCÕ©é­vø§Âç=|aª×ÏÌ€7ÙÁpìƒÚ,õ¬ÅÍ[mjü¼¥meÔôèͦêáþ²n…ëàç ˆ"]ª =£g°žb\)|4á Š ø¹VçK•ŽšÙ®jÔô~áó#ö^"i¹TºÆŸÏµ¥Ÿ)|ú¢¶Zi¾ñv¶¸³Ã…×x°šnð.í~zÛÃôª­î1Â{ü6~ühðcÇtxÜÌXܶӘÌg´ËÓ®¿¾ Tâý0#ž²¬ôð;°&â¼nŽÈ4Uô]3>iYˆ™V;J­§\(̸âÛâ¶Ýö‘»rùüSåãâ¹Ã6£cìôTËy6T˜3Ì`O¤ÄÀv- ®àˆP´@#-Ð<Õ¡· +„c ¡ÊÖáŠsÝ„»<#­sÈô¿º¡XgTuÁ÷œAŽì\W@oà›Æœà£ÈÓÙøOƒN[pÓÔÔ€ûah5_4%BziƒÝÖe=8GîµUW’‚-æœÿŒçðUoñf«F]ÐÓÉMd:‡»ËMÀB ©’V$ðè¥)J)Àê±#1…݇Á»¬ròéÚÐ`nDéðqÇlÞ4„é-.‡Hª‹åóbU´®,˜óUíò=\4vù‚é,¶QjC—ü +?´„}Ó0½E6ù'ô%k°.Þ~‘Õ+º:<}¦–ó"%QH2-°ÔÏÔò_ÛàÙ9.w‰`äe—(}$ TøoÚI™©4·q?õ/ЊcRˆ` +=ÇüÑN@ }Æ—Ý*yx¥‹|‡P=^!甞§ ?‰àDÔt%jÌ‘.÷­LDMDhƒ‘=hçXbg¬VŸ0ITgÄVÊ`åS.9;ã{¸^Ⱦ´DˆPÃóC¥6¤½×š4ÕsFÆ#;–]ÉÙ3ê¾&ëQÍžèÁ‡·|`”†‚–K—?\« >å$([ámJõ$4wl¹(ÚÖÎß@d(O]h¹a iÊ¥øºDGcºÞcŸ^± +% †é4@õ êÆCTÛev•‰Øq*Ü6sšÂþE®„d7©¢žš!ë ¨QÌEåŠ1-³Þªôædû¨‘‰ ï0“ìÇ3U‚ƒ¡Ð³“µÔ6÷B—(Óm@S›£)DZA_0ëÈ]e ó ã)M—øÉø(×0IÉ1›ei´±åñ0fä5A°éÂÛŒç!ó§ae8î/Z€AcZ_àZ7›¸Žžëê’Ô\w ƒËo1·H"Ø2>>·hëðëJ}@š"²ÊI¢g~ñå$Áhcè?9ªýÙYÖ“ÊøØ-÷ÄåÀLKc,u‹¯%—Ódç/fv®-p$¸ÌÚâ‡:äߘ3¬ŒaåO(Ùæd<@q=‘AìNܶå\´.aŽSµG¥–—Î…àÉòø'|Ž¡vÄÁ¥>Nuë8 8ÄfVO½Æ·Xv¦ì%ñõ&kà=£{rµnÇ'Îf ·©ó…ù Ê W°¿u Dp¡ä +NÖs­lªU;âÌà¸V¯±Ù!Ö·o~ʼn +rÿïß¼‚¨Õâl©U~à??°/†Ë†ËÌäÍ­&û}³”l¬.˜ñ—¼íluÉhNåsÖo4Úsü¾ËŽÛ±ÇàÍWšÚ9ŸvšìúšØ€•ÈÚ׋kÃ2å$Ë…,Õ0.ðXÚ-»°eÂÏÁÐ^Ë-9Hvö;L†º^•…{}s}õ…êIÁÚP°¯SÞ;(Ƥ_Õ@#˜vP®oª¦qÀä_j ço~©Õõv úÁxK…„ +Vë]MÁ‡™ÎÎ,jÝ:ø_]ÜMæoïjõr=yÿ˜|ˆí=ÂÉ`Ò÷ñb¼©ê®ï/­ÌGUp˜v'%°)HGl6*øŒŽü‚Pë¹ÄF„ ,›@m½úX»Žðu“ზ„Ã6 ÙÜæX·Ú‘ NlÊ®hÊEÍ=YK;¶GhÓ40Ïyð”ÚG-ß”I‰Š)"Ó¡¶¤:»oøÈ Ù=H`fÌÂË’ìŠèM7ôÚl ×Pa ‘Ws6!‡afš/³®J³LöF&¤’™8…¹" ÙkµÂ Ó~*2zÁ ¨®Q#ÕGk‰÷C–u/£™OÒSèµ „€¸š…Ö÷ŸoèÅð{*Äú bDöîª Q¯ð¨¦ž‹–•ã.ø¢›ìPòóÛ>1LìIñ¡=:Àî˜õÜ*MÛ)ès„I”ðrªdƦÆYD±pÕHL¿pž3 8„t“&Óyª›­›+ë¿XDÆ3yû¹f‘Gïb©ö—ÚRƒ©‹£ÞðBX9T=BuŠóI µÚÄ+ш¸Ö2ÏP§ö”ê®’™Œ!cbö’Ëý*ЉÈö‘×Cpj‘ ¶a긞@K€^J±£]Œà@Ã\§ÏÆü7Mq ÑÜg…·&D1æM°Æ2DÛ)sŸÌ{¡8õîQçΩ¼ÀѤZDCÊÝe4)måሥáû}U iž[‰zê ĸ0ÝvŸç( =×°·ñqù@¿ܡ½5ÚÜ)­§á¯©÷ðgü1üÕaÄ_>ÿE:¡)›)F=Q¦D<†ú·R¿jK——²¡©°¹Ùˆ(› °¡ƒCd¤œ•1C©ÌßñFoäH-³a_·œ‹ß`÷}Ã@«ýþn&J…È5%%‘~—bW!s#}ÄòD4™ãól ¹h ÌL9¦3½øý„sm~nUkŽƒ´‡ø3Œ„…n U;VbïÙ{”_½ð«A\aæíãÌ*í¸•,0h/ *©`ßP ¾ˆ5•,)ó© l©`¦KQÎáœ.“ •ë°ü#΃’q/°ˆŠAñzîö†gè€ÈÕ©Õ¢@ì[f %Í›µ-©-°â&’k2BéÑꎣ5"ªk²)"¹ñ+vµ¼Í´fÌZÇœñÿ9ˆËk౧Šu#ÒÀR”¹!y’±ñ"¨ÌÈÓðeŠ¤©D@y9Ô˜¢ÂÂ÷¥jšÌ†["ª(Æ ŸÎÉ +endstream +endobj +82 0 obj +<< +/CS /DeviceCMYK +/S /Transparency +/Type /Group +>> +endobj +83 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Filter /DCTDecode +/Height 893 +/Intent /RelativeColorimetric +/Length 154497 +/Name /X +/SMask 160 0 R +/Subtype /Image +/Type /XObject +/Width 975 +>> +stream +ÿØÿîAdobedÿÛÅ + + + + +                ÿÝzÿÀ}ÏÿÄ¢  +  +   +_!1"AQ28Raq‘³´#36SUVr“”¡ÁÑÒ5BTbsƒ²á$W’•± &4CEFc„¢ +%'()*79:DGHIJXYZdefghijtuvwxyz‚…†‡ˆ‰Š–—˜™š£¤¥¦§¨©ªµ¶·¸¹ºÂÃÄÅÆÇÈÉÊÓÔÕÖ×ØÙÚâãäåæçèéêðñòóôõö÷øùú i !1AQaq‘"3R±24Sr’¡#5B²ÁÑbáðCc +$%&'()*6789:DEFGHIJTUVWXYZdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š“”•–—˜™š¢£¤¥¦§¨©ª³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖ×ØÙÚâãäåæçèéêñòóôõö÷øùúÿÚ ?uã  ?ÿÐuã  ?ÿÑuã  Š=`4‰ ’Ö²ÔEsîÁðß -¿ŠCçÏGŠï/æ¥Á÷û¶Ò÷Ëãç£Åw¡ÍKƒî ùõ'á/Œ9èñ]èsRàûŽŠ˜wë}ÿºôx®ô9©p}Çìû_îŠóÑâ»Ðæ¥Á÷û>×ßû¡ÏGŠïCš—Üìû_î‡=+½j\po³í}ÿºôx®ô9©p}Á¾Ïµ÷þèsÑâ»Ðæ¥Á÷û>×ßû¡ÏGŠïCš—Üìû_î‡=+½j\po³í}ÿºôx®ô9©p}Á¾Ïµ÷þèsÑâ»Ðæ¥Á÷û>×ßû¡ÏGŠïCš—Üìû_î‡=+½j\po³í}ÿºôx®ô9©p}Á¾Ïµ÷þèsÑâ»Ðæ¥Á÷û>×ßû¡ÏGŠïCš—Üv)‡n·ßû¢œôx®ô9©p}Ç;öÚÍ&EËÄ/Œ“ØZâÖÓ݇aqB ‹QkräÿÒuã   ãÔ¦µNaér\Ðe”Ö®á <~:ZR«QÙE]™8<$±8mnÄCÆb¬W^q¨8„fIKz–¢åR¶Žrå„ ^6mRy!¹-­u³Ú´?$0øX§5š[ÛÙÜc5WªJ33œñ™þlWÆ4ç¤ë¿³—ÎfÊ°t—Ø®äuèåGéç½±_§²Uüù|æW¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w èåGéç½±_{%_Ï—Îc¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w èåGéç½±_{%_Ï—Îc¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w èåGéç½±_{%_Ï—Îc¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w èåGéç½±_{%_Ï—Îc¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w èåGéç½±_{%_Ï—Îc¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w èåGéç½±_{%_Ï—Îc¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w èåGéç½±_{%_Ï—Îc¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w èåGéç½±_{%_Ï—Îc¢SóWrŽT~ž{Ûñ‡²Uüù|æ:%?5w"à¡å»@u.19kI ·M +.C#º3•XÌÔ©Íö7tÈüvÃbc–p]©Y’†ƒš¯@f¢Ï™Ü÷7›Û¹¹ÜîèîJòŽV‚¨µIj’àÏå„–­‘ëOZ}FF¦Ô +BwA{dd`@ÿÓuã  “ŠÐ#>àe²ª¶pòA™o™)mVäBt¬<»Â®1ÓÁÆšû9ú•Í÷ÁöO)¿±­Øˆƒžd(äÖ¢¦:1K‚¸ªx‹‹I£#¿€Ç¨x,Ƹc+ê”^®´hœ¿Â©á•Mñ’úI„k[å´kâ!Ð猙r:´ÒF*¸ÿÔuã   +Y'd+¼ÙjV•îu~,y…߃ÒùoíOEðsåª|…ë#ðS× Ê†™«ÒkµRWOmµ¡$Ee•mc`ÀèˆÖÁÕÄ6Ó¦â’ÜîEcqò¥Z$µM´ú¬Š +-58ÓÜÜŸZÙJM’HÒFgnžÂØÏÒœ’“jÖ²YnݵŸl^)ÒœUÒN÷»×è+'؈”ti3$—Œö³äÎ5~2—qñZo ñ‘ï>‘0„¢:„y¥"S A¥ AXGbÓ¹ê#â°úa´I)ÂpšœZI$¬¯Ä¥])P”\e}wáÀõ1FM*t°á²Ã’%”¸’Jué]E«eiŽJWÃWTiÅÎñOgV¾ãGiúUéʤšŠŒšûÅ°xJ²SJÐç·Ñ§KrÑáhòòXDGBâ]NeS–d¯kk·CÙ:9ÜË/ê=¬eƒO Ǥ©ÃpŸ”ɸën‚ˆíb°Ïå„Z?›Zï8)4÷>&ŠÒ.Sµ­Y5½3xB´ì=þŠkÇD׺uh—-† Ðx¥Oæå–×½µ[‰”ô¥>mÍf½­}çTa:ÃΠšsÇ‹KuÑàÛ—–ÂBâU>yÂYm{ÛUŠ½%EO›Ì³p¸/ Ö†USž(ÆZ[®ÇÇË`«¡q4é󲄔xÛPŽ’¢çÍ©,Ü.pö«Ç†™îSžLeZÎukÙá +ºN +¤¡%k;qØ!¤¨Ê|Ú’ÍÂçi˜J³Oa¹R)Ï6ÊÍ$•šu«g„1E)Nœ’m%«{´ +’qŒÓkuΕ<-V£2‰iî°Ò̉+ZlW=eÞã4F# +”ªÁÅ=íÃé5¥–œ“kr.XdÜ9&¾„¨ÒÓ©A ˆ¬¤kVÞ!-LÔ–¥¤ýõ­ÕÄÁ«¦¡ RûkW¿_ߟ…jô¸È™.žëL.ÖqI±kÙÞ¸‰Åè|F9êÂQO{ZŒê:JYd„“krg4êJ&SçÊ6ßRØ4M´‘¶ZGní.àúa° +¦U“jI+/_²•ñ.c «;Þï^®_I•X«†©Ð^ŽÄ‡A8¤êá™ÓXûÓÐãR­ F3’Wk‹>^ÊÑ’—7%'ݯÀõ±žOêb\‚n+놅¥(}HÔ£Q¶¾›äÝlYEFN­5·¸ÇÑZnž* +òJV»öåK Uèì"LÚ{¬4»V´Ø®z˼#qš#†Š•X8§½£;¤hÖ–ZrM­Èðiš^ØZ*gÉO•ø„7ÿŸ\£ògê4þ\üü¨ú̽“Ù&¦ÛáqéƒÃ‰#OV’ ¼*HÿÕuã   +9}b»ÀÙ–oœ¿s«ñcÈ|.ü—Ëjz/ƒŸ-Sä/YÇ‚ž¸f<œ@~«CÅ⤖û¬2HF‘¨É|W2÷'pÓÄhüE*zäå +¥ë5];^4±g=IJW~ƒÜÁT9˜j%uŠ“DÃŽ7IJ”eº—!‰.Nàª`èÕ…e•¹RvmlÌŒ=/‹†&tåIÝ'-ÏÍeÕ^­>•ã½ ª-#nvpõk.·_â =#Ž–\]¦ü¤-ãnê#ðXXþY¯ò¾¯Yô­ËBâÕÜ݈֪4–³Qwo´}t½u’»O_7C~»–àé5*jÚ¹ê›]§ ¢[³…»oŠ*·m5’KM)Uõ†tåõj¯ß9ІEš×²WIßQŠ×Ô”V¬µÛ–«Ù_S±B¹nÉ'iÉi¸Õ¤­¶OéºW]ôT³>ºÝÑ‹^´ªÆ¥Ú5yˆ¤”¯-».÷ŸhÒQµVÜ¡Ï]¼¶[6¥ÀÆUnKðË3\ÓÜCKœ2Q‘él3¹ë-T“¡ŽòT¢›½õ›&Üe:²‚´\õj¶ã.a˜…+ F”¤;J_Þ§-R’~d„^Ú»ÃyÂQÉNQ^2x~ç{»{ÔºcW4Û~+U—Š£ºþù²Ô®@=P§Ã©oJkԥŅ£¤’²š4ßj¸"4®¥Jœüjd¤©C~§k'X:Ц¥NpÍQÕvÕ¯^É\ùb˜3g>åQŠž÷¥äVp·£}¼ÂÍ/‡©*ÒÄs™hå§e{©-^-‹´uhB*‹…ês’Ý­~ +åã]¨“%>DxÍ&#°ã!]fÚµ&Ä–ËUÈÄÞ‘Å8ʤ¢¢£,–œ§tõ«Z=D^…òÆM¹)ɸ¨ëßµ”U½Õø’¤Éu0Þ'":OiÅ’dec$Ü­Çaòƹ4ç&©Ë†Ùf§7Å-¨û`í¨ÅfVž«Zqôï<<£6·èuGåÅxä²z){tfQÛ¯lŒÌÒ!yYá%)øœ^.lÑ—à–ôfh(ׄaã,^[J=O‰n`e©Ü)-:zHb¥×Q§k4VÒ;ìNÔ¾ ½PÄ'%}‘ìàfé…lbâéI'mû‹›¦DHøÖTçÉP¦¥¢‚Fá(”fdiÐ+ê± 1ÒÃâwu9Ç›×{õ£G8ÎxxÓ^4/ŸU­Æ孒ǘG¬»&Û’dÂ5ße´Æ7"êžR©±W§~ã?”p”«ÁCk„íÜ^ó"â7ªO’˜™21»„¢W Œ”‚¾¢"©NŠ©Ò¿ÄAÂîú³m]DM7œÔi-p§,ú­m[éU·å:f$•>R +4“Š˜ŠqÂSf²Q&稸ÆeiU¡R¼ªÉZuaÍæwW¾Ûp>|•!JâóEK5•¬÷–îQ[\Š%UùFq^7Ù;%íщGn½²33H†åd\°“”üIs‹ÅÍš3üÞŒíÔkÂ0ñ–Wö6”:Ÿ1'=¼pgžÕ?tù_ˆCðiõÊ?&~£OåÏÀ_ʬÊY:ëïétxq(i¾vBàz`ÿÖuã  \€¸¸¸¸¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ € €9 +9}b»ÀÙ–oœ¿s«ñcÈ|.ü—Ëjz/ƒŸ-Sä/YÇ‚ž¸}Zë6œR/·EF_ˆ>«(ûÖ×c±l ¥µ\î©o¯ZžYñkYŸÂ*ëMío½–ªQ[î*æÄ›T”8ÙHA-&£>8n²|M +´]ª&³$õï[™ó¥VKä³Êí«s+WC¬% +Zã=¡¸“Æg{nÃãeìš÷Öôðí”J³Q…Üž¥g­–Ï$#®É.ãÙ^­¾²Bá¾µn†É®gº\Ó¬öŒ×¢qSjð“m´·ë[QŠ±ô"®¤–«ú8ž2Þ“Í•8â ³24éh™mÕqêÎ:®õu³)B2×dïÔ|·Ã¦ƒouVý‘ÛÀ-udÕ®íÂú‹²+ÞÀr4fâ´ ètŽÞudÕ›ví+‘^öÖWoYîB9F—N"VHӹ踋nÑ‘*5.qß%í}×à|yÊjy5fµí¾Å +ä¼âI +ujIl#Q™0Ç•Y=M¾ö}U4µ¤»»%*¤ãQ›7ZŒ’„iÜùŒÇÖ”*â$¡ɽ‹idÜ)''d–Ött¤A[±ÖkiI3JÑs-eÄd>rÏM¸;®(º.3JJσ>kë‰$-Õ)%°Fd\Â’«)jm¿IUµ¤\ñ1bàÑ%Q™ˆÚJRÒ§_¹é¨“¬“mš„ÄtÛŽá#“’r–»»l#êhÕ:꼤üUd·.²Ø\—œ$’Z‰;Ôgnð‡•Y=­÷²ASŠØ—qË’^t´VêÔEÄj3/|%VRÚÛô±q[î8rC®‘%n©D[ÔfEá U”¶¶ûXŒ؈ù——Ž óÚ§îŸ+ñoþ >¹GäÏÔiü¹ø ùQõ™K']c}â.% 7ÎÈ\Ld@àä|`ä@ààä.@ä.@ä.@ä.@ä.@ä.@ä.@ä..àÔE´ÀÜŒÈÿ×uã  ê C=`’Ý-^‘$“´ÌìEß3T©+ÉÙu—BNÑWe“;PiëÜß­GJˈ”jüA¬âyg£èK,ªÆýZýDåLc*«Æ›õE”Ü8•¶>ø†?·Ýñ«é>þÔqßþƒž©øwÕ¶?>øƒÛîøÕôj8ï‹AÁå;™|ûcÀ¯ˆ=¾èß_Hö£Žø·ô:¦aßVØð+âoÚ7ãWÒ=¨ã¾-ýÕ3ú¶Ç_{~Ñ¿¾‘íGño詘wÕ¶< +øƒÛöøÕôj8ï‹@uLþ­±àWÄß´oƯ¤{QÇ|[úªfõm¾ öý£~5}#ÚŽ;âßÐS0ï«lxñ·íñ«éÔqßþ€ê™‡}[cÀ¯ˆ=¿hß_Hö£Žø·ôTÌ;êÛ|AíûFüjúGµwÅ¿ :¦aßVØð+âoÚ7ãWÒ=¨ã¾-ýÕ3ú¶Ç_{~Ñ¿¾‘íGño詘wÕ¶< +øƒÛöøÕôj8ï‹@uLþ­±àWÄß´oƯ¤{QÇ|[úªfõm¾ öý£~5}#ÚŽ;âßÐS0ï«lxñ·íñ«éÔqßþƒ’Êfõm¾ öý£~5}#ÚŽ;âßÐUÅÊ rɶ+1Ô³ØF£Mü$>ø~ZèúÒ˱¿qñ­É|e5yS~²êDó"I¨ÊÊÖFGr2îÙéÔSW‹ºâˆ)ÁÅÙ«2¹©±yiT{ï;Wx2Ëó’îu~,y…߃ÒùoíOEðuåª|…ë1®NèqªÛùÉ4íôM%6[,7sÖkVÞñ8侧ˆ„¥Ržk5ãJY ¿ Þôæ2t²¨Ë-ï©G4Ÿb2,ì‡è³1¯C9 C…KM%Ó±)Ã+‘+Œ†Ç‰Ð8<#ÄNPÌ©äqW·¾ë èélMxRJY\ç(·m˨ùÌÁtG"°p”¨¨§³(¢î‡çŽ­¥¶ÂÜ^€Âa³âŠ§NJß.²´t¶"¥¨æñIG5·.¢ÔÊÛÑät¼äV¦U³J ï¢W=Wœ¹”eZ›‚²t¡dIòf2Šª¦îùÇvd•.$øí;)+RcÑp‰+4‘ðŠävÛ¨mÚCJ®iÕ»Q¡Gci[~ ˆ9e…¼jò[/¸¡™“JC;éâhÉ™ŽBj év±¨û¶µy†ŒškUJ°Tõì‹WgÚ–Ÿ­++ë„fç«ÍÔŠ¹˜*‘KË‘Ùj;ðçÇCf™âžN‘š“ÄwzZ F¼'M(Ê5’IO6eÅðgÊž–­V-I¹)S“w’vÜ÷žäZTt×P=3tëo¶|3ÑÑ&ïÖì¿tf`°p†"µÝÖ¬ž·k$÷•q2xwOU¹ˆ½šï~%²œCÆ +nSÕʤëYÃVè„‘¨Ï^ÃÔ!èh &=B´bàJŠJ÷ºŽ¿¤–”Ä`ï K7ÔÓZ­fõdDÅÍ°ü(j„–§œW’K5i¶DfG¯aêø.Oát‚…Zqp\ä£%{ÝE\È­¥kàÛŒåšôó'kYŸjf +¡býƨi<£:[¡«tnÆw×°õ ðŸÂi°‹‚IFJ÷ºJå˜-ˆÁꜳf§™jµŸÞ=;P*tˆÜEBˆŠºx´ÍwJnZWâ½µŒ¸G ‰ÂS†\”úCM]½‹‰|E,Fw,òænµ[Ð[¸ÃP¨h‰-ÊRÓwR ÈÏ“ºÝ¸<#Ø®RúkFa0™*N›QnIä–hµ¹ßgè¼v"»”Öl©ÚQ³O~®/Âq¨â YDò $D«(g«YqØk<›ÃB¾6wÊäö;;kÞƒIÕ•<4¥½GÑs6' áÈ{Ä¥ÓW%ÉÕ914Í劫÷L†÷ ‚‹¥ ÁÉÖœã|ÏU›ÖjOHâg™ÂyT)BV²ÖÚ8§`* "K Ä߯7&Cn£vÐyMôM´Ÿ\,ÃrséÙG;Nj^5¦¬Ý­åÕôÎ"êNYŒZv¼[{n÷ÑrqGD*~üŽƒ9Äú”óÒ ¥²”™¥6G—»É\,)B5R¼á&äçi'¹(ï)ŠÓµIdoÄqI(ÝK{Ö[* ƧƓMrsÓZuÃy§ ”›(É:%°ö\ÄF?Ga0Q…S”å*nY¢õ§»WC‹Äb¥)Æj +JÍjzµÜ­‹‚)Ô°ìsŽ­Î]=çÝ#QÜÖ’;peC“¸g^Ë©áÜÞ¿²µî|ªizÊ•Y_\j(­[µ +Ât# SQ[ê¨W[æáÙJ;Ø»¤CíìU(a”CØd=?Á÷+*a«¬5WxOR¾æh¼°äô+Òu©«J:Ý·¢ER+Fò +)&de~2/¦\ÝqPTÀ +)Þt®ð6e—ç$/ÜêüXò Ÿ¥òßÚž‹àëËTù ÖaÌ1ŒU‡c͆ä¦G• kmÓ2á îGt'Ñ< xJR¢áÆM;;«5±ê=Hh¥ˆ”f¤ã(ÞÍ[cí=ê¾T$U‘QIÓÙhæÆn2Í +V¤¶w#"?ÎÒ¯ž&5"áÎ(§fþÄÃÂòz4\fòIÉ^Ûöƒ9Q”•6— 2ôrˆˆn0³V‹ˆN²3=¤bÿnSmç„eÁÅ·g—cäì-âɧÉ5k¦÷î/ÅëÅ®ÄZ¡·š&[m£3I$¶múoMKHTU%±QIl²3´^ŒXH´¤å™Ý·¶ç´öRå¼ÃŒFÈ—0o¤wÐIßK¾$ñ®©VƒŠñ©Æ^Èï1!ÉøFJYžªŽ{¶½ÇYùM©N§Ñ`h!KY-µ‘ž’̶iw…1\°¯V4U’æmgÆÜJÑäý*u*TÖùÅf¸iÙK\•¥Öi1£¸§ÛòÑsS«Aßap}'ÊçN(FÓÎíöî,¥ U¥9IeqIÛR~²¥Xš‡‰íäÕÊbæÛI]rÓ££ÞÓå¥X´òGÅœåµí’µ‹& ã—3÷Š¶'{žm;)©l“QØm&SNf‘™ŸõmÈ1°|¬«‡„a¯r–ýy¶®Ãï_@Ó«+É¿y“ðʹYP“x¥O§± È9JCf¥ŽžÓUø»ƒë.XT‹‡3ÁBNYUÚmí½Ï>OCÆç$æÜrÝÛRôßÊœ¤)ƒ§ÓØ‚H‘¾œKf£'\ú«ñwÏ–U ãÌÂ0Q““Š»Romî[NA§ÎIÎñʯmH¨••wVʉG‹%(¥«CID·8îJâ1|ùg$£t¡¹Y]¦ÞÛܲŸ&Ò“”ç)^9uÙYz³FQz$I4¸ñ©äùÈÚMJ'e·^ÎñµTS­8Ó«N1¥)8«»¶ºË' §N2œ')O*Šz•‘ Ö +‘WEF3DdËæëh=Em#2/Ö4~’xLJ¯|²m'³y9_ ÏQt¤öÆÍú ªNR%ITFËzLvjl£á)ù¤û„&%ÊÚŽT¥•}JNK[×wr:RYŸ ÛóÓ•‡šw|;IŒëèyǘtÍD¦”æÒÕ×wFM.ZN-IÓ‹’rq–´Ön;“|š‹YTä“I5ªÎÞ¢™œ¨ÈÜZ)tØòä0n›¹}&÷C¹–‰j;Ë”ya7žœe8¦£7{¤ú¶Iòv9žIÊ1•¯±Û¬ë *cEe§)ñÞ‘¶Ä•ßM´¹{‘õõ>XT5¹¨8)»æQ}[ +Õäô%6Ô¤£&›ŠØÚë+i¹[~ Q ÊLgäÅeƳQ,»Ü¬Z¸ÆE[NW§% ÷wÊÏ~LÆnVœ”e%'k]ì¬}1÷¨Ï¡¤6ºaY³#3Òáë¿|FTå=WV•d’t¢’àÒâgÓÐÐQ©ÛU¾­G“z:£3K .;»¼m\Ô㜷VÂîùi]=Ò¡ÍÆœ`³9<·m·ÖÆDôyf”å+++ìKÐRàï<ªþéÒ¿„ÿƒO®Qù3õü¹ø ùQõ™;'c]â.%-3ÎÓÞÔÑG¨À>ňÁ´·gßYîl$ö̶ó K–<¢ö/ ç}-Q]|M‹“:§×ÊýêÖÈ=V¬Í®H\™²ó‹335íÞ.!Ìí!W7R¬œ›â{¶ N„T)¤’àyc É®§Ô¤ÒŸD˜)§dd¤¶ œ..¦jtÛMoGƾ¢ã5tø’¿ãW©Ñjd¸jÜdj-Ћm¸´ˆtÿ"ùCìžN^ú:¥ÛÄðŽSèn_,}ëÖ¾ñ–©S ô–±¸ÙïÜÈÿÑuã  ê­†¶*òÔËtNÆL¼eøÚZn8yµæKÔfèØ©V‚~rõ‹ÕÓ5-f{LÏñGÍݾӤ¢µ1aqݾ¹=òZ>ùv¯YIl$ö;•-†"%œVÔ&úÅᨔ¾½…nõ~UÕ©hâ7©ë»ñ{7ž{¡iÂRw¢äùÉxú¬µ–[x +Œæ,Jr\Ü7-ÌÚ¿ å™ÚÞÇŒBÔäÖ8EÌòÉ$–ü÷³ô¯L×Xž‹e{Þû²[Öz2y@59NŠìþ˜)˜JQ–å}#M¶ŒŒ_%°Î….rÔõÛ+Ô®9ˆÕVj9L¶[vÚçÁ¬œÑÍMÒóåTrûÝ.[‰Ž–¶ìãK’¸lÏ œ¹ØÒSoV]—h½éÚÖç’\ß9–ße¶×;U2qHMKÄ© +Y²ÚÓ%6[ +Z„‹'ZmÝc¹)†¥NéËì--N»WZ¶ÃiêÕ*åñmv²ì’Kc×´£““š{U +ìRuÍ0Z’ÙßY­z7#îk +¼•£•áwjJ-zZûçÖž¨éÓ—7Ø®zîdÖ„ýZ5*å)âa2d(Í6ÐÐÒ4§»~1›.Iá%ŠxjyÛ„sKfµkÙ±ÓøˆÑuç–ÎYc·mívYxûÅìSæEK­"NšTËÊI¸ƒAíºxŒk|¤ÐtðJœát¦µÆM9&» } ¥'‰”¡;7kW³¿iº_¥bJ„ÓN4·–ñ›—+’Q­wåî ®ŠÃãha©¤ãâIßVÅ­þ±µ°ØŠõNÙukÚö÷áŠJi*«QÔñ!™*Œê233âQrCKèœRžˆ¹Dþ’I„ªÆ¢A‘ëÖC§"iF“O2Ÿ7Ÿ5ÖKíËm§Ùòš|æ«eSQ˯7 Ÿdï+{ÁÝ$ïשûóJ幤ȯ£mºÅ•9-ƒMÒNyÕ%Rú²ì»EÏNbUêZ9L–×}¶¹åå¶ðÎÞÌ-›k²ŒËYµé[n½ƒ •Ê‚Âáù´ÓæõlÙ}ýfFƒu^*¶fšÌ½F~mÀ­¦º¦%Æqe%ÔwC# 7‘kj’õŸDT ÓÞŸ¨“1ªæÕjc$z‰Eá2#øGc`çšœ[ßê9¯µ$–æýfw¤>N´F|ƒ(øÐQNó¥w€³,¿9!~çWâÇø\ø=/–þÔô_^Z§È^²4=p¼ðþªbFLRe iîiSΓzkÛ¢›í1°hîMb1tùÈeI»,ÒI¶·.$N7LÒÃK$îÝ®ì¯eÅ•´ìšVª-¸á%–I.©’'ÞKf·µ)#Ú>ØnIâªÃ=¢µ´”¤¢Û[lžÓå_OЦí­êOÅMÙ=)y6­UšS­¡–ÈœSI'^JâÓµ(#ë…0œ”ÅW†x¨«¶’rI¶¶Ùo+ˆÓÔ);;½I»&ÒO²™’šíQ†ä6–KŽ¸ÊëéB”ãgcIñ¾‘˜ºÐSYVkÙ9$Û[Už#”xzRqy’nÑmYìw)iÙ4­Ôµ¥ 5¢êÙJ^t§FÔ iŽ’xªÑÌ”UÛI9$Û[l·—×Óô)»6Þ¤õ&ÒO{àTÒ²W]«²‡ÚK ¥n¸ÂI×Ò…ê4‘ úáy‹¯8åY›I9$Û[U‹1<£ÃÑ“‹»²OT[V{ϲòeX¤¹éL0ók’ˆëm‘šVg©+·[qõ§É,Eu#)O-”ÖÞ ­…‹”j©(6š‹’n;¸® ¼šUª/Ëq†cÅi/­”!Ù’5§jPg×X|ý©âj·8¨Åf’IÍ&íµ+í*´ýqJNRySmFúž÷m…‹.\äÓZkJI¸m/ôDvÚ 0º>¥zÊ„äݬLTÅBùÖü[^ýEäîKkˆ‘:Rç%ji +mä©âušTe°Äç´ü^xÁeyïf¤œn¶«ñ"£Ê,;Œ¤î²¤ÚqiÙï±öw$Õæ×QÜÝ”âh•$–Ù\Òf[¸/—#1i¤²»©4ÔÓ^*»]½E‘å.¦üekm‹NÏR}‡wÔTi/Bmö_9Ck{s3S$zG³a{âíɺÍ*“‚’”fÒr³ñv²¸í3M^“N9[j7÷ÏR>+ÉozƘH`‘(ËpFìÑw;jNÝ\cæù‹ËZ>=²¬Ë3¿W¬¹r††w wŽ×•ÙzN“2cZ†äf̘s|á–ÎQ!G’N8JÕ*ÙNœ’K6Î7û†~Q'Z’¦›ŒïñzL4ec2ä!µ~ óÚ¯îŸ+ñzƒ?®Qùõ.~þT}fQÉÁƒ]â,%7Siï 連’½,Àƒ/STâ(lý ¥÷9ÉZ?ˆ<3Âígž•=Ö“úlz¯ƒšk%Iu¥ô\ŽcÆL(`YêL®&üW Ùiš{‚:ïž« ÙSôÞÇ›øE¦¹ºrß™¯ Ø6ªr‹Ÿ ÷sÉŒ¶ÊôÈT`ÿÒuã  ê­†±k®ç ¿4½ö†#4ÏÁª|‰zŒýåáò—¬€îuÊï˜ãÉm:F;‚Ò§)=#ä1|%•§Á”hË•¼e†ql¹6(å5 Ñ ’‹¡6#Ñ°Ü´¦Ác^z”§Ÿ*WSVÔ­°Ö°z+†mBqÊäÝœuë|O³YKŠTÔÐJœ}Ü ¢ÓÝï}Öýÿxd>VS©K¢sSËuu$ýõË% 'ÎôŒÞ>kÞÚ²ù¥Ùq•2ˆòN$3r í5–7Â]#l’¤ëà—Ñ–å&Ÿ£†«%F7©*q‹žkÆÖ[¸‘š#EU¯V‚©)e¶»§Çk5•ˆCsULRªÈ‰½ ýÓÌ´m£¤iå°Š—,i목ýVTÔ¯âÛeìH¾Nͼ™þ§Ÿ6[x×Ûke>xr˜¶¥Ha,¸[­ãܶ¬›å0—,)Æœ•*mJj)ÞW‚¶ô·kӔӜӌdÚÕãv_Y+*”ÇÛžêi¦lèÆuÍØ¡miO0ûb9eBj£6§UEIæºÕm‹Ð|érr¬\SšË ¹%mzúϲ”I¯•]1¹.:c8Ö”iÐÑ;(¶ À+ÆO•åœ2¸ÞÎÖ¶Ó+ØË?3›Z–díª÷¾ÂÜÅxŽacÀˆã ±¤zO8n8µ(ï¬ù ˆCi)O–4¢ã+ky¤úÛ$4nt\¥RI¹[b²V.Z>R¥Óé .M9Å© Ó²‡5)&\¶¸>VÂ:QÈÜ©&¯}N2Ú¬Gb´ ªÔ©,ÖDµ[Zkc<ÌIŒ Ï§t.•qX[ê’îèæš”³â+qÒÚrj BRrwwm³'¢êS«ÏV’“Ê¢¬¬¬T`ü¢¯ Qêô½înœÂó%ÞÛ’Œ¬gÎCRð˜:˜\·r½Ÿ «3ç¤ôÅW…kÛ.ÕÇz+¨ÙME22á­GnC2 JÛ¢ÛnC!™…å|iÓ…A¸Æ›„µíMÞèùb¹>êÎu¬äâã«c‰TÎS¡Ó•<sÂCHmN–kx¬j3î £ËS´)Á¨F”¡{»Ë{gÎ\žKʤ“”¥ÚVVŽãæöRáËŠÒ¤SœrsQŽ*W»3m„£GlD-Är¶•Xf•6êdP¾oV«Û‰Xh ÂmFIAÏ5²øÝ—àS·”¦‘>4Ýæ£&içÓ¤W3Ñ4é +b뺹º<ݯÕkŸG ¦á›mLû:ïc­âÈ•š%2œ¨‹L˜:iKºe hQÞÆžQ¥4Õ<^•,­JœrÞúš½ö˜=:çQIeµ[]ûKk„È*!ùûÍŠCí‡÷ñí^³çWÞ¾Æf½ó¡‰j >Ýh‘ظ%’½G5ã|¬¾Sõ’K¹º2’.B¦1x'a;(§yÒ»ÀÙ–_œ¿s«ñcÈ|.|—Ëjz/ƒ¯-Sä/Y‚ž¸HŒˆ£¹p£¿Zw}£HÉZ”ÝøÈz¶ƒÒÐ蔣Ó‹§)fήÖû£FÒøt‰MÆrR‚K+¶¾¨ûT&Òñ¼Hˆ‘Yj>ó›%ÇÔ~f§^²Sd\z…¸ªøm' +r©UES”ó}Œš½ÓK¬¶…*ØÉÆ›–xE-é5¹ŸlÊMR5rª·™n­dú¬µ·¥¤J.S2Áâ°õ• +Š¢Š¢åtߌÕîŸ]˱«R•DàäêÁ[*Ô¬ÑU?S'¹‡nR–êÒžq7¶ƒjQYJï­M5B¥l,Ô’QœÜµìM»\ùÒѵiª±i»Ñ‚]m-h¬™T¥×߀ò*¬G*l÷Ýp–«i Õ¤JG-ÇÑãpøŠ”«s‘Š£9æMëjí¦¸ÜùSÃUÃÆqpoœ§¬¶;Z̤•‹i“Ž†ò%!šÄ‡Ö“;[3+(û†,zj„êa§™$ªÔo^Ä۵Ϭ4eX*±i»ÑŠ]oÖ#¦¤ªšS[óJäwÓumh•­EÜ!nÒ´#káN[~Ç^¾Âµ°5[¢õaä½6Ø}kr(øÁ¦˜Ua¨¨‡P’ë¦k²–Ó‡rR9L[Ž«…Ò1†jª*œêf×i4Ûi®ÒÜ$+àÛ’ƒ“8%«Rks1n «A¡â¸ÒÔáœFÞY%nk=¹•ðS’øúX\zœŸ‹ã$ÞëêM›—ÂÔ¯„pKÆqZ—ÒŒÑǃ6œÔª¤ ÌåºöŒVÉ)JtNÊZ¹Oo8}1N•HF¥JvN£´QWZø³T©£¥Rp„ï’+Æwo^Ä‹6›ŠâÒ鑉I7[­8ñ¢ú÷%‘«¼db¦©P£EæWUæä¿õ\•ÄhÙÕ«$Ö§A+õ­ÅßSÅtf±E9ˆs[Þ¢H=Òü ÕôšŒ»÷; lNšÃ,vJr\Ü(Î)ßSrM‘˜}]á%)Åç”ã«}¢Ò-wñM:-GÈ9)[qZ4½c¾æjR‹_†â5éšÅáæäœcK+~ki¢B::¬©W¬å+®½‡¯L©S0΃ÕXrêÍÉ%6«“m&ü%ëz7‡Àä¥*‘“uÜÛNê1³1±4*â¯%´\u­¯‚>TLGMeUSrseºV™yVÖÉGup[¡4µ +qñ¦—å©ËoØëÖ]ÀU–KEê ×¦ËQâM¯A]:¼Úf Öíe§ZZÔÙµpFËIQèùs+ô¬Ö¿Øßoa—OQU¦ò»* >Þÿ3S窫Ø;¡ÈŽòW(´›R Fiî‘’¾š£UÎ4§M5[5殚²ÖºÈZZ6¥5 N3¶I+GSNþ¢ÍÄ8¢%B›RIÔuÕÕb¬ ÐÒBDj$—]%¦)U¢¼tßIMîÕ«]¸¸:ucâ´•-zìÛÙsЫÕéµuãíTYIÊf1²¥*ÉY ŠäGÊ/Ò8ÚˆbáÆòœ\nõ4–ãá…ÂÕ£ÌIÅø®W²Ö®ÈÖec2äToÅáƒ|ö©û§ÊüBàÏë”~DýFŸËŸ€¿•Y”rqÖ5Þ!ÒÈðâQÓ¼í=áp= m@ìÒùÀW.'s¡}jGŒ áwËÒùûcÖ¼ù*Ÿ)zŒ +[Hy6£ÑÌ™”˜LCU ˜e-îR´JÚJ=¦}Ѷòà +uà ’½(lâѯè +²š©™ÞÕ$½t|–›Ì´Úªm¦{‘·Úbšû¯×l½µØd®FêËÎ.qAMÂÏR}}‡Æ|¢´›Èò)eÍ}ý…S9•!uDÔbÄnRU¢~i¦W$—t}!jZ«RO›ŒZÕﮯ¨ùK•0Š…âüi¸íÙm呈ðº°Ë´ÖÝ|œrK-¾¤[sÓ=I1¥4GA­ +rwmFOªúìL`tJŒšVQ“Iñ¶ó*blÍZ ãÉq¡Å‡N--š®·[¦cpÓ˜Ž#9¦©Â*šÕõÉ-È×4~š•j6s”§;+ÛR|YkÔ²Q*$)Òêšz: $“#RëWÜïœG"jSÔ¤›U# Yì–É9I +^6¼döïŽÔT§$Û›Ó"¨–ÙaôF' ¥/MÕ̬[¸Ì}!ȯ©TI)äO+w{ölGÍò–ñŽX]¸¹ZéYñ6NÂîG}¤¦*KiN‘k4èܵò +i­°˜FIgUg÷»ÑúC¤bóE¼®’vôžÀ«B‹2eIÊcÆÄd©£qeÞØCGrYW¥ ΢ƒªÚ‚i»ØÌÆé·J¤¡9dW“½¬‹Øðô,9ƒ«³â’qÖjgIDeô)Qì¾Û‰¬FŽ¥ƒÑr»YÜÜ[q»ºû÷v‘KSúC“S•JóŒ#u&äµ+/¤ûátÒŒT)FR”¥-N\·~!d ˜UAÉ•fÙ :—´¢qu¦DCò/›S•jŠ1ƒŠ½›º’ºg×Û&lªnRrVºVqÚ[ÕìT'æ´åI“&XmöŒî“}+ØI.Q¤¹;Ñ%8Êq¼io’zõØ-1ÏÆ-Aë“Oð-q1ðÖI²÷ÃKÜé8„þ¢'µà“á5~Bûcμ"ù)úŒã€º>ð÷ÓÈÉ +æ“1PWÿÓuã  ê½†ÇõζGÖ^ûCšgàÕ>D½F~‹òðùKÖ@×:åwÌqä¶#‡AiSï3³m†PkqÅR’Úfzˆ‡Û‡iªpWmÙ.,²¥E¹KR[KÜòa‰ÓkÒ.Ðê>CרO{QÇ|[ú>ù¹C„f¾“ÌcW$Ë‘ºs†ü{n¨;ö\Ìì1(òRr„`ï«‘=/B0U•¥±ñ>Ñ0 ¨9!¶i®­Q–MºGbÐQì#¹¥Mã+_-6ò»>§ÃYe]5†¦“”׌®ºÑqÓ2[R“O­É’ÂÙ~žI³G¢ZGÇ{Ÿ •ÃòB´°ÕjÍ5(4”uzLG(©F­8E¦§}zËUì[bD§¸QôIZzºÓãµïna [“øªtùÙA¨ê×Û°’†–¡)ójK7«©Þ"ÑŽ¾…»gôM½œ"Q\Œµò»ä¶5Yso^Íœ.|½œÃkYÖ­½G[Õ:¶Û¨ÅS +p´‘¥c%pÊä#qú6¶J5¢âÚº¾ôeá1Ô± ºnöÚz105vt2žÅ9ÅÇ4©d²¶´§i‘^æC2<ÅÊŸ< òÚ÷êãc¦˜ÃÂ|ܤ¯{[¯ö“ìA*2f5LqL©âTVÖ’ÚdW¹‹×&±Žâ¦òÚ÷Õ³‰lôÞ3Èæ¯{[¬÷06MçâYQ\“Ô@pÖJy6.´eõ휟ä¥\\”ªÅªn2y»£Liêxhµ'5m]¥˜ÅUFd¸°YSÆÁº£"ÚHlÎçàíR¼¤©',—o©-ä´ñ§Ê£µíÞÏr‰„eHI?*!Æaç6$fm–µkúãx-QÁÎ¥94àå­»{¾ã¤á–ŠjQN÷ß»´¡gVß…Ñéî*>‰¯NÅ­%´È¯{s o`1\×=‘åµïÕÄûKKPNmÉf½­Ö\U¬êNŠÕ)—$=6d¸\¹‘÷ˆKéNLJ5!O œ³SŒßUу„ÓIª’¬ÔTfâ ¬_zSÐÑMpÞeâÓ«R¨Ž÷µ„]>Mã'9ASw®¸_a—-3‡ŒÜÕ›²í.œ=’Š¥JEB<èîG\xÊy$z<#·¶ì11£y^ªªªÅÅÂKV·ÀŽÇr’•8ÆTÚ’”­¿W<Ê㸶œ+)i2ä2l¢âì÷d¤®·Ÿ!iqQÏØöhüRl?¿jõŸ:¾õö3/¹è¢£ìÓö‰‹€òQù+Ôs^3ÊËå?Y&0ϧ¼C1ÅîB äE3Z]ÀrÊû +~‚ÚÓ±‰„¥w–÷Ç”øYùa!5²3×éV=ÁåUDâ÷ÇÔÈÄ9ôö/<­>}ctù£î®Ä^øô_\´‚’ÙJþ“LåÝD°mq”L¥“”!¾ñ‘Gˆ’‚çiï éó*>r¾pUË~ÚÖ¤xÁàÞ|½/‘/¶=kÁÏ’©ò—¨À¤<Š.Ìôs5×êSǦºý^Dyb6ɶQMI5 »k÷Lc4~5Ư9(Ê0Š·7ux®&§‚¡ŒÂÊQŒ"ã)·|öv}Gªœw‡ÒëU­Ùþˆ5á”}Ë€¥hè´ù-®Ã:§)0y¥Š‹—9*92åÕ{Z÷1}†Ä[˜²ÈêfÍ}v½ícѧåj™›AeÍÓ|6êS8Éce$dDGÇ·`ÎÃòßQNú¼®­ÉYvŸ +üš«*µ$­f¼M{Û»1>>Äqñ%~Tèº[×I`”V2mDZ¸†…§tœqxÉW½rVù+a³hl °ØeN~úÎý¬Ë%• +[§:2'? ±“!¶t”—+('Ä|£zŸ+ðõ9È)Ê +N IFïÅVjƳíz¬rÉÆ2q”ï++7tîRÐrJ…^¨?5é ºÃhBÝN’ÔëEt¨È¶üá£9a‡£ˆ«:ŽN-'ÕÞh­Mð>˜ÞOVž‚Šš“ºZ•žÔPP2‘PæÅ™Q‘Ç'*Z]e¢pÖ•´öwÆ6ŒåM.c›«9Ój¬§x«æOwQ÷Æè)ª‘œ!¥MFÍÚÍo<,] ×i"4ãËysÔùn¥s6ôtHÍ\½Á§tí^S‹y¹ÙË_³_3Fhš”+)´¬©¨êã{ì*0ö(¡½L¤E«>óÒ¤)änmi“©=z7â;ŒÍ¦ðŽ•}ÉJƒm%©oZ÷,vŽÄ*µ%E&ªE'wk>%&"ÆÐëtŠ£$È•Pß)NŽ¢oFů”`ém=O„tõçu¥;[UŸY÷Àè™Ð­ }Œiå¿]Êœ bRiéRg¿K}¡ö' ȵL¸¯Ê2ô()QÂôz“•6§šñî·®£å¦4LêÖU¡?¦›·c=‡±½ +¾Üøu)r›g}µ%‡£‹$’­k_Þ¯”XLT\+ÊiF¶x»fmjÔûŒXèŒFÆt£ò8µ{%}èô*Xç ׯùRŽûñ_eij¤£ÜRDi2¾®øÉÅr“ŠÏ +’”W;ŨÞénê>4>*†IÅEµŬÖ^3Ú|«8ëâ*ð_ûPäœe´ñ3u]¤‘oÆ>XîQ`±Ž¥:ŽJ©Åå»vVi¢ì.‡ÄáÔ*E'(©&¯«[¾Ó¥'ašsscÂqújwÃ.!ÖšÓqÖÐZÒgµ7=bü)04¢ãMÊ’U3x±»”Væ÷ÄèŒUGM*ž+M7d›ßÖt­cL=Vé½øòSP[²³dÌôÐZÒ¢¾®øÇÇiìxW†ixõãâð[:‹°š+G™yWˆ¥³n{Ï¥CP+¬J¦J}æc>ÄK<–F—X+o¬”dcùI‚ÆÆTjJQ‹æÚ’Ýâ¬Õ‹pú‡”jÁ'%)ê½µIñ(±PiUh1Ô抚†ÄcR5­,uÊW%Æ.˜åFF¥8ß\©åÕ¶0V»>Ø Z•HT•µ9¹kØå±f!z•dæä­žÁ ”‹œM’i;ûÃLˤ¹ÜL$ÖHSI5k»YŸ|+`²Ói<õ%}{Ö™‡„mEç‡þsâcƘõ¯Ÿ «òÛuáÈÓùOÔfÌŸyÛ|ÃßO#$\.°T ?ÿÔuã  ê½†ÇõζGÖ^ûCšgàÕ>D½F~‹òðùKÖ@×:åwÌqä¶#‡AiRáÂkKušZ”dDR33;pˆNòfJ8ÚMêñѤÕèM/5úŒéX¬(áãMºÕPcBÎë4ßèuìï æ¶7êüÑTmãnïØj\/CÅüe+ê/µÒÕY¦&IZiëÜ×#r%%(+ž‘»Ò+ +Ž¬)¨Î\äœòê¶Û§®Ä]‚§)7®q]FöwàËc×7j^"2}–Þß0eÓ2=Øìfw;q˜‡ÒšC= +J)ôŠwÊõjJ䆖µ-M¬“÷Ë‹=J«è¨/°Ä–Ե€¢-Õ%¥¢’5Xï¬Æf6ªªñ1Œ“ñ©;fZÒÛ¼ÆÃAÓTe$ì§Qlz®ÝŠy‹KRªu•Ëlé®ÒɦÒN‘Ýz$’F…ö‘÷Ë% ×ÄJIÓ(¨¬ÉÝê²·Qô£Â^uVíÙì½ïr†Uaîš(‰‰9”’i­¥(uwiFmëAØõì¿øÖÆÉé+SœmÌEZOÅ—‹®7OS>´ð±è“Ïå^´¼eãmë,¬«2Ãq¨æ“Ü_4»ºD'Éä5¯jU®Ä|ƒYåœ`•+;<®ðÍ™G^æKònrr©}jêÓË•½\ ¥ÙbJJÙS/!è%ÉI-&ÜQHA‹À7N饥AøòŸ™¯z•õæ–œ§9©]5R6ŠŽ¦¯ï›<øÕǪá6U))Cpd¥Äî…¢Jáj=vt±*8ŠQrVXi'ã+^ϬûÔ åF³¶·R6Õ¯q]B%Ï—…çÚÓpâ0ûRRo%6]Õ¨ÒfW¸ÉÁ>r­*ðšTÕ E¬ÉYÙêµÏŽ2ÔáZœâÜ¥(¸ø­êÕ¼ÁØ2¬ŠV+C«YN¾ëNõh8f“üQ编Ū8ëIÚ3ÍÂÒº6ý/†up-ª)®ÕffÉUPqÔ˜òqiô™ %D²ÑRÖ“QØïc=c{­§UZ1k-,>U­Y½®Æ§N„ç†U¤žiÖ‹zµÙ;œJäÒëH–ÙS¥›N§u"²ÉF Þæ}ÁNqs+2æº>[f[rÚÖí>•bÔ%AÅóŽµÓ¶ëÞ÷=hu8N2Ã&_}ê2PÓKx›%èfh5ê; éb©ÉJË):í,·¶ÕtcTÃÍIÉÝ%]ݨÞÚ¶Øó'VM1ëm-Qã<Õ%¶É beªžÊe#uv€¶ËIÒ+¹s±™íVUe(FJòÂE/mïÚ[Z“‚”œ]–"û7ZCKa×s¯BŒ•®ú˺<^qqm=ÌôxII&ˆ°¸¨‡çì{4~)¶ßǵzÏ_zû—ÜôQQöiûDŽÅÀy(ü•ê9¯åeòŸ¬“gÎÓÞ!˜Œb÷!Pr¥’$«¼Ä¸’2™“ +^¦d£@ÕÚ¨ŽéW1ˆm=¢c¤0ò¡-ëWSÜIè"ðuãUnzû] KÃÒUSf\h]¸+O¤öåM+¢+`*ºUSV{w>³ 4~§‹¦ªSwOèJ§Ê^£ =ÎÁÈÄk€Ësw7d¸´MµY$’3¾–ÿ ÙtW'Ö7*Œìä¤ÚqvYUöï!ñúUᔤãu·­wvØVÔ0 SoÎ/½,<ò4ZRµ¶­·/(úã95ÑÒrŸ¾§™Z-ïµµ*gmF>öI;´¶«Üñk˜:u +=2CÍ©IžÖè‚$*å®Ú'«hÁÒš +®&dß9%d÷îí2°zRyN)ûÇg­w–ú©ÒÐá4¨®“†W$j%[–Ö¸Šèµ/—+¿ ;÷ʼ½Õ¸ÝXîšTÕš’˜o§Y‘4£2ïê,Wö2Õø÷‹^&š×™w£æÌ 24÷(î9¡×h¡JÑïص !†œõÆ-Û‚lºu£­+ñh뼤]¸9w:Îð»Úµ‡Gž¥•ëÙ©ë+ÎÇ^µ«nµ¨ù-¥µ× ÓŬŒµ‹%ªÅÊIì/˜˜%/S©µ¦“mÌ[ȱ6¥šM¢ä-·y<•*ug;*‘“ÕÚË»QSKZ¤éF7pQÞ•ïÚZ] –­%7Õ ¯Â&Õc"=»D¨õ¨ÊÜr¿¼Iôˆ-M¤ø]tú2äKb<²r*½–¦–z­}IµÏ˜dá4{E +—…Ówqoè>Uñj0r…¥m×^³Õ«`É´ªl:¢’¥3%ÇŽˆËDìFw-WâxýW FžµRöÔî¬ìcá´¬*Õ•%¶)7­o-— ÉŽh'c¸ƒ_ZJB“¥Þ¹kÃÎ.Ò‹MìM4Ù!іƸ4\Ïàù1hGZxÍ¿½Æâ´)*ÖWÒ×Ä%±t°‹-W›ŽVšz·ë#á¥#jNÖ/²:‹J—žùψ}ŒOcÖ¼|&¯È_lyׄ_#Oå¿Qšò|~fß0÷ÓÈÉ ¬hÿÕuã  ê½†ÇõζGÖ^ûCšgàÕ>D½F~‹òðùKÖ@×:åwÌqä¶#‡AiPØ*ÚG¯Yë ”°i¨ŽúG~ø®f,q¤|§¬RâÇ:jíÂ+™‹¤Ö³$™ÜìEÝ1X§'•o(쵞¨$£Te¤â –ö–£BOaë1=^9›‹Y-›ªæ2ÆÒyl׌ìºÙâš[LϾ#Û¹”‘É-E¨”~\ÌYš»cðŠ]‹-E±F\⹘²:ߌP©ÛHï{ûár– %Z×;r\.ŃMZµž®èfbÁ¤g}g¯º 5Ñ®èfbÇ]¢…@QÏØöhüRl?¿jõŸ:¾õö3/¹è¢£ìÓö‰‹€òQù+Ôs^3ÊËå?Y&0ϧ¼C1ÅîB äÑIÒ#î€,\IN)R{†( Zz¥LB™JQ!‹™î/ œIw¯¬¹Œ`ctmTrÖŠ’ëF^WïNN=ŒÆ³1Ú3ü‡!÷”_ˆ5érG?Æh™+q«ìÏ(ñƒ…ùŒÃð¬[íG|Z.ößóþƒŽœ\õ³°ö‡£¾-møß?èœ\õ³°ö‡£¾-møß?èœ\õ³°ö‡£¾-møß?èœ\õ³°ö‡£¾-møß?èœ\õ³°ö‡£¾-møß?èœ\õ³°ö‡£¾-møß?èœ\õ³°ö‡£¾-møß?è#.Tóšªà|ƒ0¤l)MTzמ©{¦šxz<bš;â×Ò=·ã|ÿ “]8¹ëf…b¾ÐôwÅ¡í¿çýÓ‹ž¶aøVÐôwÅ¡í¿çýÓ‹ž¶aøVÐôwÅ¡í¿çýÓ‹ž¶aøVÐôwÅ¡í¿çýÓ‹ž¶aøVÐôwÅ¡í¿çýÓ‹ž¶aøVÐôwÅ¡í¿çýÓ‹ž¶aøVÐôwÅ¡í¿çýÓ‹ž¶aøVÐôwÅ¡í¿çýdc íÒÔ/ÏÅW!4rüfƒåv7Ïú£Ø¦½)'lÓÚ^¥oVÉ+2?«Ú&p „ò0ŒzÒ×ÞEbô¶#å&ߧQîa\"µ,œQ”gs3Öf}Óö#‰M…é;Õ´pm¨T1„h‘ +‚ •Uó•÷€[-ß–/­Hñ„<Âï—¥ò%öÇ­x9òU>Rõyèà”99"èf;kß²¾ÐDzòi~Yðý•ýGéß+[äCÖ{i;&–Ò¤T »‡º̬íÖì+ûcí—íý?µ;Òd?=ìäÕ¸ë%N}i¾²7ÒG£kêÒäj5%R­)T»]¸õÊÛºË108×P²|ìSù:¯è>ôÊ’•HyQ¤%öÚžiz^†ê¢$܈ÒE{츳 ŠnpžY)*5|iÛ3íH·‡J3ŠqiÊž¨ß*×Äð0=F¥2;)’äIßosŽ”‘ðN×uVëH¸†'&«Ö© +ujÊRÏVJÑJÚ¼çÀÌÓ)BN”#å§{ÊÿBâVWÙªÃiMáÄ›R¬>™„•ˆ­ÀÓÕÖû˜êxˆBÁx­Ö©›V¯OQóÁÎŒÝñ:Ò£·}öë;ácßž=M*F~ZÜ4[G†“µ»šCë£*)až&£NXeV.Û5ì-Ò+%ENí]B×Û©ëúé\¨Õ*âª[Z1ÇVÂô´Gup¸Ç•éF"¥8sÊÑוÚ׻ׯy½`èR§9d~5’jû-³Qž²~Dt¼+r¿šT~Ðǧè5õ ?íÕoQ¦i¯+[ø Ö{z¼¸rpŒ6]Ñaæ%©ÄX¬³%*ÚZµØeàñ•!R…4üW‡“ksjöf.+ ƼÚÖ¥ >žžýe~LÅî΢¥-´­DW$NÉïùèŠòÄB…JŽò½uw¶Éj.ÇÑVÔ¹¸;ußiÖ—êð²%8·"ôBQ:G­J@‹nÁv¬ët^q·Ô¿ ¦òúx +Ð9VpIK›…¸ëJå{r˜›2žÜزB¤æäìͲ‰'d$­}ÚÜC뇬ªÔ§ÎFWS©–U2ÞöÔ’á}‡ÆTåIÂQ×M]Bû/µ¾%‡eV%`éX'4ÓUY6n&Ç¡®ÖÕ³j¼¢«ˆžŒƒÄß7=-»lMhštc\Í­Í+Û‰S“B#£PÈýXþÐb[’kò͇ý½©ê>ZËTý¹û§©Ñ^¦A&B·ºëÏ4´™ðM²;èŸp}0ø—:XxT~+¯4ÓØÒnÈø: +5g(/aâ×ÛiK”‰¤õ&´ÊâÊ4¢R §$h·DE{rþUâ3áf¥j«ªS¶®¤¸MJÕ©µ(냺îûzÈÄ<¤ô^xç>!ö1D½F~‹òðùKÖ@×:åwÌqä¶#‡AiP ã'p Ôë‘aT'Klˆø–i=æ1³rS K‰æj«æŒ’ùVÔCéÚÕ)Ps¦ìãgè¾³<3’ú;Q©©v)ð֥ϹŸ µ%JI€zµ,a 8¯©§Îõø­£M—(k¹NÏTÒPêwIžfÂTj«,7&’Ã(–™+BÝt÷u‘\Òm$¶wFŒÐxjÔÒ8Ç59É7'Î;]¦–ädi'^”›Œäò¸¦’ñVËÝñ-Ê›TL-hQ‘&f’–óŠV¢Cº%¨¸Ä~*8\GŒiFRš‹rmùÖ3èJ¾*¥[Ôj0Ô’K|n]ø¶$ÕG­ÈHBâÃŽ¤©¢35už½zµ }+…£‰­‰r‚¼%M]7®í^äfŒ«R…:)Iµ)ËmºÏ”ª.Šõj/Kí+¡ÐÙ’•îŠ#ZÔEr>àùb°8nºT#õÅ­o]ø—RÅb¦©ËTœ£k-I&°=S½LZhéÊ(Î8i`Z´u«m…ÒäÞJuÔb’¥ (ɵåÖVZ^¼W3™·Î¸æJò²×³‰‰ò‘J¦S¦ÃU7rJ_a+q¶Tjml2IŸÑùO‚¡GBÙe¶“ºOzFÍ q5jÓ—;{©4›Vm]Xg¾éQÓGm.’R÷É-Zdé#KQl°Ýq9Ï I8ÐŒÔÓw»HÖ£¤11<æÚç²å²µ¯cÍN¢o„á㦧u:vùßšGºnº:}ë ièl#©,¦“<÷wnÉ¿A÷öF¾^“ŸW9—%•­{wŸy4L>Åo ÐÓEl÷Ël;!ãZ´•t™™l±´ôv c©á%g);»¿ö,§‹Ä¼=\G8üW%ee¬ú”L5¼‘0°Û:ER8;¢ôMvÒ>è¥6 +téÔæ#ãÖtíwk'·´£«ŠÎáο$§±m¶Îª&ÃÑ¥Ôaµ™/¢j›&d8hVã¢FDÉì5kl6Á§*q‚œ•I¦¤Ú–U³.æ|êéLL¡¹8§ïšÍø.¢8Ö⦠ùŒ%¥4–ÝZI ë’D{ yF.Ÿ7RQJÖmYíZÍï S=8É»Ý-kc<±ŒdTCóö=š?‡ÛïãÚ½gί½}ŒËîz(¨û4ý¢Gbà<”~Jõ׌ò²ùOÖIŒ3çiïÌF1{¨9 + 1’ÿͪá¦e‘ðHPú^ij?3/X:²xÕÏÌËÀ^§zYxÀ:ž5éeà êx×¥—€,©ã^–^°§zYxÀ:ž5éeà êx×¥—€,g–D áò! “b~÷/³ Ð4ΧzYxöÔñ¯K/XSƽ,¼`Oô²ð€uí⊻Kyh¨¾•=ç†NÕŬ_/ˆW´åãmÖõ–KGQi'«f­…Ã1L Ï¦GaÝõ<Ȥ<¥Ý’;Ø“Ê|bVv°RÃS‹Í6œäÝÓ·aUÑr«ˆY5–õ%®ý§‡:³*}. 2e"—¢½fF¥í×°»Â?¤*W£N›V4Òzõß^Ó.ŽêÊiøÒ¶­[M£Ti¶Š3Ï“m(ÉVJ—´ŠÜf>TqX„–G++¥kÛ^Ô}*ФÛÌ•ÞÛÛqÊê5XÆË‹yöÍ$6¥iúâ#?|…%‹ÄBÒnJɤõ­[ÐT(Êé$ïfökàσ5¹ñÉ j[ˆ$(Ö’%YJÚeÝ1ó§¤+A%5kÛ^Ëí/žœ¯x§ug«qÙ5ÚŠÞé˜é5§ºhÎÚw½íÊ.Ž’¬¢ ¦ìÒ¾¤ø”x:nYœUíkÛw´¼ARž¦—"s®)£º K34Ÿ)]'^¤”¥96¶;½E)`©SMF)_n­§5 ESª¶MLœëè##ÑZÍErãÖ%ZºµI¹.·qCJ“¼"“êEX*Xÿ×uã  ê½†ÇõζGÖ^ûCšgàÕ>D½F~‹òðùKÖ@×:åwÌqä¶#‡AiP +êl÷iR£ÌgÏZ\O}'q™€ÆË V5¡¶.èøâ(*°p–Ƭdy]¬È~°ù¥²:›IiÂ"; “ªéä1±Õåž&jªvúµ¯Õ»QLЊ¦µýM¶ºûN”ŒªN¤³½ãç!¡M4ó‰3Y6«Ý>ø¿ Ë:Ô£’ Æ9š×—\O')Õ”ži%7v“Õ~%µ^ÅòkÅOK!²‚J&‰T½=|â'HiÚ˜©S“IsjÊÝ·3ðz243Y·ž×¿e‹†vT&Î߆pØBå°†ZHî¢A‘‘÷õ säý7v›MÏ:kje±ˆ±ØŠCo8Ël¥´%¶Ûi6JR[„&’Ò“ÅÔç$’²I$¬’[#ÀÇ ©·wvÞÖˈ²P)…0™oL¡ï+Xí¹èèß¾%eʺΤªÙ^tÔbV¿iì <™.íŸ?¦÷>å”éå™Þ¬o‚c{o½6ܹ/ÞYò¾´ ã–9œT\íã8­Åž×©çÍw—6l·ñnyîcéÎUiµsi½Ú m¶ÙkÑ2AX®1ß)ët¥Š²Í¨Ûu’±÷Zš£*7v›mñÖî|‹Ì(¥rFLß·ãÝ/{w‡ÎŸ(ê‚JШê.Ö\ôD3ç»× ž‚àFUç¯<üÏ©Oœ†ôÒ~dá‘ÒeÞPå¥dóJmIÊ-­qoƒ.MÓ²Œe%âåv{WYŽ*UªÒŸ™!ZN¼³ZϺcR¯^Ufç-²m¿I?BŒiAB;²(GÄú€TCóö=š?‡ÛïãÚ½gί½}ŒËîz(¨û4ý¢Gbà<”~Jõ׌ò²ùOÖIŒ3çiïÌF1{¨9p`‰I•îè–¶ÜòTD™ì  Ä^¼‘È^¼‘È^¼‘È^¼‘È^¼‘È^¼‘È^¼‘È^vÏJ:Qo‰-‡bÉm‰ÞHä/¼òG!xòG!xòG!xòG!xòG!xòG!xòG!xN +xˆ¼Ȇ”í"T¥²O•&àÄVrʪùÊûÀ­–ïËÖ¤x áwËÒùûcÖ¼ù*Ÿ)zŒ <€ôpW`¸Ž$ÙRç–ÂÐ’ÒNh«jì{H»ƒväç'èã(Ê­LÒjIe®—¬ÖôÖ–©†œa $Óñ¥{_“© ºÍ¡LˆâÎ3"qÇÒQsÔ|cjÃrvŒ5òB´Û•µåK‡_Äé—G³K4©Y+ê»e³„éQµÈ…!ôÆj­´2»YE~¹EÊ0y9ƒ…¡Rœ¥•bRQ{6=o¬ÏÒx‰_,ÒÌèɶ½H¼ñE6!(d¼L¶å^uÔV#;&ä’3ã1+¤´]Âðpîô8¨ÊÜÓ'ZËDõ(”ZŒŒyÿ)4M,7™6µÆ[W§y¶h]!S›>V•¬ã÷Œp5‚tç‡þsâcƘõ¯Ÿ «òÛuáÈÓùoÔfœžõó}G‘’>X*XÿÐuã  ê½†ÇõζGÖ^ûCšgàÕ>D½F~‹òðùKÖ@×:åwÌqä¶#‡AiP.Ü9ƒåâ6¤Hm棰Á¥+uåh§I[ ¾b{Eè +˜È:‰Æ1M+ÉÙ]î#1úVf¢ÓmßRWv[ÌŸ@Éãšv#‘VDgdDm$Ò\pÉ)Òؽ\¼CkÁòfl%j˜…8´•Û²Õ·V÷¸×±šrUªÒÊ2nöZÝ·}óS°¼º´Õæƒn"—~ ìFEÈ4ì.…«^‹¯ 5(µ¾ïa²WÒ0¥R4¥{É;=Ú‹Áì:™¤Ó±yæÕÍ gº6në$¤‹QߌNUäÕjTgÊJ¤#™7™9-‰zȸiªujBJRI©j¶§m¬ù¯&s©«içÜaô4û(”ÓkÒ[[¡–¥C’U(Ô‹›Œ¢ªF3QwµÞÆUr‚SQM78¶¬–ãÕ®äÕs*õ2‚¦aÃeä2ƒyz)5¨ŠÉO)¾;’S«^§5–Uc™Úï‚1ðz}BŒ9ËÊN-»+»-ç‘ %UI)}N¿13#z«vsFîqrÜaáùˆ©Ò”cã¸xÎÏ2ÜeVå%(´’”¯Ú•õù/ª-r“!æ"¥‡·¾›Îh¥nr$øÇΗ$+Êîn0´ÜVgkµÀº|¡¤’Ê¥+Ç5’»K¬ùÓ²iRœoi?‚CÇ&ã„D㜈2Ú)„ä•zÊ÷ŠñœUß¾ku}?J¬¤ïÎËbë,ið^¦I~$„èºÊÍ .C!­W£*Rp–¦™1Fª©8ìjè£#êD??cÙ£ñH}°þþ=«Ö|êû×Ø̾碊³OÚ$v.ÉGä¯QÍxÏ+/”ýd˜Ã>vžñ Äc¹ +ƒ'õ{(ózçòƒKhp¼òª¾r¾ð+e»òÅõ©0‡ƒx]òô¾D¾Øõ¯>J§Ê^£ =@® —X› Ç ÜC­½ÍÍÔšx¯ÈcjÐzvŽjA¶¤¤¥e–­Ï¨„Òš6¥y)BIji©+­{ûKÂVYŸY>¨Ñ”ËŽLnMÉ\B GA\¦e´LO—rÛÙó®o^¦ž¬¤e>JÅYIÝ(8ì×vïrªT'zÓVÚšÌÃNšl“Fµ$»ç°|èòºõ:m.yTµ× hú{RVÏ4Ú§(^Ï~Æ}feJ$ÕÆÝifãmÌ‘!hZ‹Z^+XŒ¶(¹B§,)MÁNÔ\ï¯ÎáÖ‹irvpNÓ³pŒSK|~ánck¿ + :g[b*–²T‡7G ×Å~BâOGR§£M=ry¤ïÖgè­,<åRm7+jŠ²ÕÕÄÇ#X'@^xç>!ö1A¼h|E +Ø'†©QSj¢•å{5¿fóZÒtjSÄF¼"沸´¶«—n!ƙб,ve¥F¶!°Áë#xÚÔ£!+¦4î½ Da%yJž^2Q›#p.µ:”e(ìsrê¾ÄZ™#¯Óé5Qªï%¨RÙ4¸¥l% ÉI÷ÈFr#JÐÃÎtñ.ДS×çEÝ<¦ÁT­N3¢¯8ËU¸=LºâcØX†[Ò¤ìøβÙí[M«‹¼BWÊZ*5*T–·ˆŒ’Þâ·‘Õ´-KÓ„V¥NI¾ •²+ÔJ[•¹­UÚ’ugØRMôšI(”£]ËU‡Þ:K …u%±Ÿ;ZÕ)ݶ|¡‚¯USƒƒ5&ݬݚV=×qÍ.wD#ƪ΢œ—Òì–ôÐãz$G¡«®!#.QaêÞ0«å­)^Q½â÷®³:¬2ÊP”¾§–ÑvißQg×1}>£_{Òã‡XCæf6’DZv-…¨Bãtå +°¦ó¦Ö!ÉîynµØ”Âhº”çïl¹‡*úõÎ"­aüb‰]¬5 Ïßµ^䤑‰‘m+ Í)Ái%’uTT+J[üh¾f& ‰Áµ5Mɺym«SOyÅÒ§¦ +œxˆ‰5n%SݶŽÖR5uÚ…ø 9‡TaN•HÓTêKßÇ4œw5Ö1š6³¨êT„¤å¼GdŸÔ`lOPMV«:Z]7RëªQ,Ó¢j.[ÁæF¿=ZsN÷“wânx +<Õ(Á«Y-[Oa€zTx«›:# •Ô·PEá!™£è:µ¡ír^³US§)=‰?Q”b¸‰Ø†¢ójºMÝ?bDŸ€vžHF<õÙˆžy¹ql”q«0|D2O‰y§Q'õ{(ózçòƒKhp¼ó*ZÙ_83e’ʧS央q]q•Ÿ"\á¾27ËžAOQâ°ªíûèñ|Q霔åtiAPÄjKd¾áˆeaÚ¤5h=O}'õµxH¬:u©ožŠ­õ(ÚgÌ6} È|f6KÅpŽ÷-D“åN |¤ø-g2ª(ÄăMmH§Ã;5¥©N¬úçÝ>.B ´-=AQ§»kâøž-¥ô¤ñÕ]YúI MS EËM",ÍÑŠÄ* + ÿÓuã  àäUÝPdD˜¯ ›ä¥!Û°RÀÂòâ× š“|„$¯bÝLË߸ùÊœ^Ô»‹”ÚØËUéx°”vªÉüÜó໑w=./¼ùoÜ[ê´ŸÁýÀæ!Áw!ÏK‹ï û‹}V“ø?¸Ä8.ä9éq}á¿qoªÒ÷˜‡܇=./¼7î-õZOàþàsà»ç¥Å÷†ýž«IüÜbrô¸¾ð߸·Õi?ƒûÌC‚îCž—Þ÷ú­'ðp9ˆp]ÈsÒâûÃ~âßU¤þî1 ¹z\_xoÜ[ê´ŸÁýÀæ!Áw!ÏK‹ï û‹}V“ø?¸Ä8.ä9éq}á¿qoªÒ÷˜‡܇=./¼7î-õZOàþàsà»ç¥Å÷†ýž«IüÜbrô¸¾ð߸·Õi?ƒûÌC‚îCž—Þ÷ú­'ðp9ˆp]ÈsÒâûÏ>ªX¾¥LT×%²§[RãnYH3-J#¶Òèðà»ç¥Å÷‘Ë"ùQÇ‘«Ulžb¬A)ušq›±^uv9‘T|¤í¬ËŒQP‡܇=./¼“’iØ‚¦›JŸ!Ò=¤§Uo‡ÑSKb-roipá¼ +´©*S7>Qyi#ð®ÞÉOÚˆTjFÚmÄ*D8ç«ÙG›×?”²[@ã…àU$”FF±q 4¥%e£}Z… róŠÈö©b9ɲ›0Ûk4­çÕ© ¤ˆÊæf-’âU3ä>.SJ†ªÞ(Ä—6¬³’˜Î8f˜­/ZIjÕ´|¹ˆïK¹ó²[ßy—Žf-õZOàþà¯G‡܇=./¼7î-õZOàþàsà»ç¥Å÷†ýž«IüÜbrô¸¾ð߸·Õi?ƒûÌC‚îCž—Þ÷ú­'ðp9ˆp]ÈsÒâûÃ~âßU¤þî1 ¹z\_xoÜ[ê´ŸÁýÀæ!Áw!ÏK‹ï û‹}V“ø?¸Ä8.ä9éq}á¿qoªÒ÷˜‡܇=./¼7î-õZOàþàsà»ç¥Å÷†ýž«IüÜbrô¸¾ð߸·Õi?ƒûÌC‚îCž—Þ÷ú­'ðp9ˆp]ÈsÒâûÃ~âßU¤þî1 ¹z\_xoÜ[ê´ŸÁýÀæ!Áw!ÏK‹ï û‹}V“ø?¸Ä8.ä9éq}á¿qoªÒ÷˜‡܇=./¼ +F,véUZMêíø€¨En]È:²{ßyLΨT_Jå¸ãçÊâÔ£÷Ì}±ó¹š°® 6M¹l°$-™½VðBtHôÿÔuã  ‚YXÀLÊzN€Œœ,Û¦fi/ {¯/ú’߶(=Öë|Zïçt|ö^_õ%¿lP{­ÖøµÞ=Îèùì:¼¿êK~Ø ÷[­ñk¼{ÑóØuyÔ–ý±Aî·[â×x÷;£ç°êòÿ©-ûbƒÝn·Å®ñîwGÏaÕåÿR[öźÝo‹]ãÜîžÃ«Ëþ¤·íŠuºß»Ç¹Ý=‡W—ýIoÛëu¾-wsº>{¯/ú’߶(=Öë|Zïçt|ö^_õ%¿lP{­ÖøµÞ=Îèùì:¼¿êK~Ø ÷[­ñk¼{ÑóØuyÔ–ý±Aî·[â×x÷;£ç°êòÿ©-ûbƒÝn·Å®ñîwGÏg%—§ËòÒ߶(=Öë|Zïçt|ö{̺Ã}Ä¢u=l¤ÏZÛ^•¹ŒI`<-FRµzv\S¹ƒ‹ðxÒ½)ÝðhÍk‘¦´Ìˆ¯“̼WC‰=½Ãä2ä±£´•,e5V‹Íyæ7S 7N¢³EÉòYÏ1 +Õk°¸o<•Õ”Ý'*Ø“N)ÂkÝÔ–µ*lÖó +åÕs!l$~Eò¯IËN¤âšC¤¦å¶[³wá2úu8ÚˉIUõ +§peQP Ç=^Ê<Þ¹ü Å’Ú/ÕkKiRÖ¢JRFffv""ã0Í‘§žVWI’Òw'øM×·q©U{9†Ïßm1m´²„¡ $¥$D’"±Â!x;€ÐÊ×02ÝÑ3¾¢"¹™ˆˆ¸Ì[9¨«½IŒ\–ÓbŒ³Ñ(î®{8êòÿ©-ûbƒÝn·Å®ñîwGÏaÕåÿR[öźÝo‹]ãÜîžÃ«Ëþ¤·íŠuºß»Ç¹Ý=‡W—ýIoÛëu¾-wsº>{¯/ú’߶(=Öë|Zïçt|ö^_õ%¿lP{­ÖøµÞ=Îèùì:¼¿êK~Ø ÷[­ñk¼{ÑóØuyÔ–ý±Aî·[â×x÷;£ç°êòÿ©-ûbƒÝn·Å®ñîwGÏaÕåÿR[öźÝo‹]ãÜîžÃ«Ëþ¤·íŠuºß»Ç¹Ý=‡W—ýIoÛëu¾-wsº>{¯/ú’߶(=Öë|Zïçt|ö^_õ%¿lP{­ÖøµÞ=Îèùì윽=}t”[¸â® ÂÝmô×yGàî—žËÏ åŽ“Yu KB º£²T¥i6gÅsÚCfОèbd¡]do~ØZSuhÅ΋ΖíæZf}Ö¤Ò·«Ã!ê0š’ºÖ™¡J..Ì÷™t–Bâ‡Ø¶€;?ÿÐuã  ÕGb¸ÕÅuÄÐisêWTv”¤û3ÔŸ|Ar—Iô$ë-ª:»wÚÒñ0¤ö7¯°_Óf½Q}Ù2kqÕ”£;™™ŽKÄb%Znswmݳ¡èÒ8¨ÅY$Rôƒ%5×[~M!K= ©Æµõ® ¯«¾CÔ<é©QÅtvüY­K­'.´\jáùä¼hz‰†ë;å)ºîc¡Ï2CFkIÅAPGK©R’RTFJ#+‘‘ê20Í3^fy[V£FÇ’Hù¦Õ~¡Ãl`fHZ\JV…’¢###¹Ã!x;€'õ{(ózçòƒKhp¼Ï+5H­R²W‚–kÅ8µFÁ)³¹Â„z}vÙªöÉ‚FdS$Ô¬ŠáN¤¶Z[#}Ó.ï«[Ž,øÍJ¹Š¥`eqP|Ö¢NÐ Ëf'rIfUh9=J%(ŽÆM#m»æ<³Â†›–vu¿¨ß¹¢ã^«­=j;Y‡=Æ“ÁéÔF”맺Bp™R¯¬ÛQpoÞØ:/Áž›–+ éMÝÓvônÜh¾¾¶Ïµzͳ‘?cõðs î Íy%ÑÈõÊ&ÝòÓn$¾©µ—À=#‘z]*¸^¸Iz¿ Ô¹MS˜•:þkk½Þ¶ão›µÄ‘hÑâK‡rí‰$„çJUŒ”ñ«ì)Κí¾SNÁÅÆØw¶¬á?FÖcH86—>— äÓŽöñT”©oiIRöéè–¢Iñ ZZ<<Ü©¨J4”—z—âÖĉúºV¬+,³r\æWhÚ p¿ÞÄøn’h¥R`CLˆIrcïJöÖ’¾­b;NhŒ>há¨F0—7 9ÊV½Òº3tv>·Z¤¥(©¸¨F7ô”Ô ;J¡Ò±ʤFjNÂ[)hÛt÷3Óú¤Œ|ŽÃápujÖŒjJŒSRñu®(úã1µ«Ö§ +RpSM»­zº™w£PYƒ¹,GlåB\“yO™<‡F¤¥(ãIlÕù;ƒ§O›’Šn–lÙ¼|Í]+pÜEû1ˆ•FâäòÍFÙ|V–¦Ûâ}§ÑãÏ] äSÓ- Rd§]ÜÙo…m%žßûcp­8ʤ”hS×)e„{K(b¥MMFN7¬õ%y=[ìE¦Ò°ÄÊÃq 4¤?Hße¨Ñ¬µ¥'Ú˜Êè˜| ÄS§Ó¡mvwÝØcT¯[ +nrwU²ìWíí<¸„ÜH”ÄtÈŽHSÊ|ÉÖÖdf’B8ȶéòw +JQMÒÍ›3Ï™«¥ndôÆ!Ô“ƒ“Ë5eñZßwĮ”úF¨RéíÀ%Ê“NyõKÓ=-%$õlµ†^ÂáðUº:FµlU9Ôr´cUG-µY?YŽ²E)¨ø¡Âr2]5"EF|U¹F­ÈJц&iÅ?©Ïnë'ë'yQMË +¬í®>´zÇ¡µB*šèizLÙÏ0„¥Å!?SÊ|ƒ"T0±ÂS«Ì©N­I-M«+î1áR»Ä:J¥£EìZˆ¡‚i ¥ÍYÓYˆüSŠiB^5½e¨ˆ÷RØW®Oa'.n1”jAYK3³Ú¥Ö`ÐÒÕ•X¬îJJzÜmJêÇ7ÒZ›‹šLR$Be…0W>¨ÓÅï@á³âV_'8(õ&Õ̺ZV³…ß¿rÍ×dˆ] Dvµ )QÓ¢3$—º¨jQÈùgâ´~›®•õ¼gã_‰ƒKŠš§.qýRR¬µ$yëÂTƒ–ÌÆ(ÈS/ÓÛ’huíì)Gc5(õ™r²¦€ÃB«”i'Nñ¥hEËo_aöŽ“­‘ÂUÕG¨ÞrK‚1ÖTè0hV€„¡§£2ñ¥ +5 ”¢×¢gÄ4îWèêXLVJJÑq‹¶íhžäæ2¦"‹u5µ)-{uÌjÄø.Ü óú›õÃûE “’\(ü´Bòàu>C2}{áâ¿åE}±Ž²G<ªŽ{£I¿! pÎë&ujLŠ>XðCFX‹ ž”¶[-séß•ZQÓ"ÖBÙ-à”™%Êm++øV“Šhî’ãÎh”¤ß„Ó…©m¨¸'¨ÈU;ƒ$ +€Žz½”y½sùA‹%´8^àÌ’Ffv"Öf`_îxÙ[jƒÍxI'g¬¯¹ÔjH> D{”ÑfÖZà Æm 4‚B’JR’±H¬DD/Ô<ºš(;r"¦[TjUÏÒÞûqà¾<½/’ýg­ø:òSùKÔ`qä'£} ¥©á!F‚Ôj±ØºbüŽÙ­«ŽâÜÊö>bÂà>ÅÓ$6«,ì“Ñ=gÜåEJNÚž½šž²ÌëŽÃ«­-…B¢ÚJ##.cÊ.ÍYõ•Œ”•Ö³æ-.&“NÒ2µ´¢w8*½FŒ=]2ôè^0DZø$ò•{æÞ|>×ê3vOŸZ›o_tG“’]|vpÿÓuã  ð‘Öe+Ðýkìn4_ß[gÚ½fÙÈŸ‡G±úˆ|9„÷P]x7JÁU&êPЕ¸”©:+ëL–Âs@éÚš2««M&Úk^Ídn•ÑÆÒ槩um=ƒÊMHé5JA¥•Aó}ÅëÒ#3¹‘wT¹S]áe…ÕiO5÷Þ÷±‹ì .zµÞÊ–í–=v2³)¤.3mè·”JÓ[DV"îXg¾ZÔiÞœ”2JZîÒVF4¹5õNIfÌ–«&YX—?‰œŠãÍ%½îÊI"ýjvm_KOQTšJÑQÕÁ+Ú?GÇ +š‹nòo_YÖ%~*}% ¤Ú˜¤)j>¸,)GKNžXT•§%&÷Ý+ +ØÔ­ÍëŠipÖ\­e&R!´ÂàGrC,få-&n%³ÕnNq/.VÔ•<®Í“&{xÙL !ÉJJ.Yœw\©c*S„2ô`¢¦*Ú]ôV”ÈÎÜweË*­8Δ\#{x»óŸ'`Þhɧ™É5µ6T/+2Ü’RMŒe½N›á×s §ËJ“œ§*qñ  Ö»4¶.MAC*œ½þdõ]2‰9LQ›iTØÊy––Ë2Fkmµ} q¸‡Â\­©(epŽl¹Tíã(ð>¾×㙼ҳi¸îmo*©yW™Nb:NŒóñÙ\vä¬t&”FZ:µq½ZU„Rp‹’†Lîù²ÚÇÏɸT“jRIÉIÅlºÞY˜w¿†êh©²Ú´šî…õ¦K½Èü"Diyàjó±Iêi§±§´•Çà#‰¥ÍI´µk[u­GH›˜­Ej;lÊT¦Éà©\Zø†]~QNq„#NnQ·ïc†ˆŒ$æÛ“qQwà\2ò³&S3[è\T.bQ»º’Vš–‹UÍm‚R·-*N2Jœv¤Ú½Ü–Æ`ÒäÔc(¼òj²ÕdžÔ²³*tyt2+nÌm ¾úHôסkøËZ•#$©Á9¸¹5{¶·Š<š…9Eç“PmÅ;Y\ò$ål§ª)†Èê ";„Wà¥DF]ÝC¿)êÔu[KêÉ'ÕnU=N* 7õ96½%||©Lm¤Fz Ç(¨Š¦—}¥r3·ÍöçU§Â2‹Œc•ÞÞ.Æ|'ÉØ7š2jYÜ®¶¦ö£îæ=‹^슭9„îpW¤¡&erë ¹ …Óå%<[œñŠn–XÙ7­l}E‘ÐÓÃÅFŒžºŠNï¼Äæ4£eÛ>S~¸h¡²rCë…–ˆ^Qü§Èeõ?&^úâ¾ØÇY#ž _Dó¤÷ˆ\ „>O2‰ ­§PKBÒiRTW##+…÷³6ÊÓ”wÔmà s(܆³ÔÍ:¦áð›ú”¬ö 6™¥D¢##¹²2ƒ8ç«ÙG›×?”²[@ã…àUþXjxz 7'x0ÍÜ[‹Tqc%½j‹\d.Ýi$Œì|¢Ù0g ƒdz™üKÃ4ä¸Ò ÉŸ_"RõºâÏi™¨U+2Š€&©Öx2׶õ·¾Üx/…Ï/Kä¿Yë~¼”þRõ$y èÀZŠ’< _UŠå2.»kØcu¤—°Ò£ê5ÌSü¼)ü‰žvÃÙ4¹5Š»®¦;o!„%’-#Z¸õñÇÑZ„°ý'ä“š„Tm·{Ö}´†«ª®âäÛÙd_d‚&’Ŗil¡gbÕäé»åÆ67ÈJy£'å2Éð‹WL†*'kÉ%â6¾RvhñqŽMáaxõ‰%%kC/2ÜC;YĬ´ŒÌDiÞKÓÀRK½UaÖ­{™z+NÔÅJ²W‹rêiØùàÜN­ÒJ£)ÉžSJLb% "ëÖ[mÞ]ÉŠŒ4kMÉæm<¶jÞÖÒºSMU£[š‚Š´SYµfêG±‡òQ|V}R\)re•²’$6”‰niqÍÑüŠ§Vœ%7&êf³IeI^Í߉‹å$éÍÆ9VXÅ´Þ¶ÞåbôÃÔ¸”äáH“Rk6fKBMZÔ†wâ‰ÃÓ¦ðШ®ãÎZÖÚ›ÚEcñ©ÏN¯=|‡ñvª×ª5J´HrˆN¸Fòôuheµxyæ–ÑXŒEIâ!89?Û§Fã¨Ð§ +3”T¬µ+ï.óÉt@áªBeo=÷º™'{ÞÚZ·°Øñˆ§ +O\”£,ÎÙö¢*<§“©«.\ùm¯7 ”ÓòsG¥Ó›–ëÒV{ƒOîèI)…©]sde{wE˜¾KapÐÏ'=J/2IÆWÚ“_túPÓµêÔpJ+Æk+º’¶Æ]˜Rñ=b3q›y Ǧ¶û©m)ÒZtKD’]±ñ‰}/ÉúÜ\œT’§J-¨¥wt¬—Ý#pZ®ƒri¹Ui^öZõú {© š…§|ïC†r£$ï‚QŽ…¶^â1ò +£~3‚¦¥•[=Þ«¾Ùå’Ï.lùo¯/䮘ė×%é EL˜H2Nì“#±¥\BÉò?JS•IIB4£4µfÖìÓ*¹GVQJ +.N¦[ëËÚ}:›a¹+†ÌyrÉÉðÜ•H“dh™’ûöâJœ’Á·’žiRu#{ZÖ½™o³Ø¨©JQ¡5ZúïÀµh"¢6ô’§\4žî•#D²=„|cAÇR£ ¼Ìœ¯êÖ| ³ R¤›Î¬¯«]îG™`­#ÐíwëÐ|acðIå*ö#ͼ"ù:}¯Ôf¬žyÛ}âèy9"àùÙ +‚´ÿÔuã  ð‘Öe+Ðýkìn4_ß[gÚ½fÙÈŸ‡G±úˆ|9„÷PgÊ"“‰‡_z‚SÞ¨Iq—W¤²RRFDFZ:µ\z~ѸeG ¥G;­u)]ÝkÛ¨Òñ¸ªÒ¯UF¦EN)¥ªÏWYêRhØv-rµCzŠÔ¤ÂnKèyN+H÷2Ò$µjØ.Àà°j­z¤¥ÌÆMK3»³ØÌ|V+*ëÆ£ŽwÕ•µê¹ááze'ƬÕØ¡!ç£îijœ‡k\¾Sz+‡ÄЩŠ…))$©¦ì•µ¾&f‘ÄVÃÎTiJ÷¨ÒÛ¹p>´:^©Õª¢”²j==o®#ÚI$>¤G¶ÂìV­j‘¦ÜaIK$®­+ë]…¸¼F&(EÍ^URVw‹-ÜMK¥TðäÊS‡tÔÕ¯«[G£GÉD”Õ)ìÏ“q‘¸ºm¼FiQmAò‘Ñ\‹—H„k8¸I´í-ëjí1ñ|¤3'MIIFêñÝÇ°óåäÎCÕ*‹&EC >m!KxŠæ£à¤¸ÌùDsäJ•$©ÊSqW’Öï©4ôücN2œew»G½”ñ2UW’swGc°QLw뤒ÓQ\­ËqJ<ŒÄÍ6Üciäñ¥oº¯(èÇ-”žhæVWÔŠv²gVT™ñÞS1Ê’‡uÂKwWZD|w\’ÄJSRqŽIenR²¿}%Ê +9c(ÝçM¤•Ý–Ó¬LšÕ%=-¥;¤FZS®:DÚ–¾´’®;†’xŠŽJñYe–îI&ø'¼UÓô ¢í'™7dµÙmº,ú½&Ecðe£EæU¢¢Ú\ÝÁ‹ÂÏQÒš³‹³%pׂؘ© j<ÑŒ}Ë·|þ¦ýpþÑCdä‡× +?-¼£øOËë~L½õÅ}±Ž²G<¾‰çIï¸ =—\Òòáƒê˜b¤<ƒ\Wȸq䣄ۉ>#%XQ«ƒf– +¥v-O&øÐͼ[„”Q¤iž¹q“ÁjBo´Œ­qH°Mp Ç=^Ê<Þ¹ü Å’Ú/ÃÊfPé9*Ã5|QZ|š‰OeNªçcZˆ¸(O*”zˆ…=Í#'ÕlmU¬eÃÇ2¬b&3©×˜^v’#Ø¥–³ŠÞ ü.ɪu‡ÞELµí£}mï· ásËÒù/Öz߃¯%?”½F Bz0H¸®‘M£Ô(õhR$5)ÖÝ#aÄ ÈÐ_T6ͦ°Ô𠈄¤œÔ¯%³´Ò:6µJÑ­FQN1kÆMíì=(¸ÇF*—ÐÉJ§8ão!&òwTººöXÆ]P`áMÐtæé©©ÇÆY“[nø +š+)*¹ã&ŸŠò´ÏfŸ–"‰2µ!pT¦æ0†£¶J/16ËE*;íÔ2èréÅÖr•¶[?zÒ²ú JÜ–Ï +qR× 7'm·ÖÑmâü¡ôÑF¤Ó7º›r)y³†ddê‹RO˜„_(yOìtÔZȵ»í{.gè½ÑkN­î¥±pG×ãªn2 ¾r#ºn¡Øî“{¡иG´†F„å58©BY Þ¸ÊÊWÝ%¼³Jhz¸‰7,²VjJöëG´ÞTáLe´Ô`>¥°ûÏ2˜ïnm™8wÑYq‘Ê,)T„yèIÊYrÊÑwwI®£\œœ$ù©+J1O4nõoGŸ)lGè1®ïC晴¢²‰ÛØŠüÑðÃr¶Ýàþ¥žúÖ¼×Ø}êè Kœ´—¥«eŒu:µ"L‰.4ó­´ë‹^纸G{Øju1Órm6“mÚîÛo°¥„Œb“I´’½¸.nR ÎŠ•»õN(¥[ÿyõ´ôï{ ¿ÊÊ5¢äá.qÁEÞ^&­éýRœì¥™ó{ß²çtå.Ÿ%˜´ç›~LdÇq©b2Ú²FÛ˜º¯+hª3…*rNqI§+Á[zE=€©*ŠSšj2rNÞ?eøe•J~îÓÇAnŠ¢K¤“2IpTÙ–Ã.èûÏ–T%9IÂv8Âv’NñµšgËÚåL¹sGTóÆëŽÔÊ(ùKƒJÛj ‚‚äSŒ»¿y +¹ßONö½Æ=>VÑŒ¥ ’TåRñõk½Ï´ôIE7(çS̼_²Çê,9à¼L½â ÜwMÍ#;é¬Ïà +œ¨¥–¤!”é¨+ÊïS½Û/Z +£Êå%uS3²²ìA)1âÉ¢¾pÜ2ØŠ"QpÔ²2Ò.æ±õ+ ªÆ¦GâÑtö­¶µÅM)B¤s/¢žÇªÛ‹?³LDzcHÉçZ5È#V•–g«½¨@éšt"©ó;\–»øĦ•W)ª›­VÔZ"“½i‡k¿^ƒã {‚O)W±máÉÓí~£5dóÎÛï÷CÉÉÎÈT ÿÕuã  ð‘Öe+Ðýkìn4_ß[gÚ½fÙÈŸ‡G±úˆ|9„÷PfW1Ôš6¡Ã¤Õ ™vA¾†í¤D®¶÷#·0ßq|£  +xj–j2Ì–Õ¯°Õc¡£[Ru¡xµ­ìëSÓ8h¤ÜÕíè>q0=zvîlRÞ^à³mÛ$¸ +-¤w1ó£Éü]Tå +ri6ž­mEjé|=;fšWW]h¸qM*TX´WÃŽ9=6ȈÍ._RJÇÈ%ô·$«a¹¥¹:‘NÚµKƒÓô«J¢m%·Šâ[2°mn–!½My/¿çHѹ¯½c°†ž‚ÅF¢¤éË4¶+m$)éZƒšš²Úø$À®áª:tÆÜf\‡mm,ŠÉJ6[”IižO¼•IÝNy³Eî±…€Ó ^tág¤Ó]e·LÂuŠÃ • +žëÌ¢÷ZKV­g´õó¼>„ÄקÎÓ„œx¥«QŸˆÒthË$ä“{ŽÍá˦É&œéîÍ©ÔjÔ¤#®;߈\´)þ3–¸æýûÄ£Òtï%©¤û^ÄT«×Ó~)ínš%m]»Ò§'q‡9*rQµïmÜK˜Ã¹äί{[¯MÖgCTö)ι$£7 :¬§Êv(hLTésÊpµïmVâ_SIЄù¹I)p;ÇÁµ¹Q7ûT×—Æ{¡'U‹mì.ŽÅJŸ:©Ë-¯{nâRzV„g͹¬Ü š¹“:•.C,8ë•\ÐDFi]õ$¬|d&4§$kaÕ.n.N¤omZŸ?Ê +UgR2i(=¼WçDÉfuV:l'c‹ž™‘jJvžÛjè¾Hâ+â#F¬eÓwÕ³¼®3”4)Ñ•HIK.íe=[?LiöŽ•ID½î•$ÛQq£¾‘Œ|V€8$¡<üãŽÅ•ÛbVÞ}pÚZ5$žhåÉ›}ÿõ<¼\€ìv¦<‡$+E¤™ \…cÚ0ªh \'r§%)l\Lšz[8¹Fi¨íê;NÀõêfã¾io·»/sné¾’ù5ë­Éü]&”©É9;-[YJ:_Rùf•Þ½ÜJ:ΪáòmU.G'/¢k"±Ûn²3Øí_ nz7Ùsí…Òq椥m¶<f­#ÐíwëÐ|acðIå*ö#ͼ"ù:}¯Ôf¬žyÛ}âèy9"àùÙ +‚´ÿÖuã  ð‘Öe+Ðýkìn4_ß[gÚ½fÙÈŸ‡G±úˆ|9„÷PÝ^”ŠSuƒÑÞëxØ-|-2+ìäUt]Jxxâ]²É´µëº0㎃¬èý’ú¬xB4Ì»p'Ïêo×í6NH}p£òÑ Ê?Ôù ¾°'äËß\WÛë$sÁ+èžtžñ p€ QššË¬>‚q§R¤-*+’’¢±‘—t¶0t—³<Ê«˜>c†XÈSô‡T~g áÝlž¢JÏ`·`iõ¸€qÏW²7®(1d¶Ç À7Î÷-5I§à¼"[¶.Å‹8TæÓ¬Øm|$*ÚÉ(#ÛÊ-“VÍë"ð2ƒiØz1·z„£Ö¹Ýá:µÓáÛ¸*•œ…@MS¬>ð*e¯mëo}¸ð_ ž^—É~³Öüy)ü¥ê0HòÑŒëƒ Ù˜JC,ºZMT⺤›„FM–Ó±žÁꟽL_½Ä&õÚ˼Ӵ«PÆ&ÖÚRIÛyxTëjDÌr³•¤–÷ºš#råÀ4Ÿ¯ø‚B®’p–*nWËV kàÖÂ3„¼0êÛT¯«ö™3©r^‰NT†‰ºÛj˜ñé’´’lGÈw#[ÄaE‡ºµHº¯ZµÓLƒækF2«gzMAj{Ë—)i:“v”²©!$¤nm´Ú,Dá•Êúˆkº6²¯'ˆ^3uÝÓ£Ÿ¾¶òcMÑŒi?sOZÛoìzŠL£Î\:F!&$’ ê›J-ͺhú“Ø#¹U]ÓÂÍFV¾"OSÚ­Ô}t :Ôó+Ú“Ú¶;õ•ØzB°lÇJÚL ÝN‘Yõ_D]ÈÏ”L`ê¬ôj6šxwy}—¦|1°W„UŸ9³ìu]•0ª[ÕúT)l1 ÓLÒe;àÝq+ZlF¥؈Ï`·Š³…¨ÂN•Uɦö]¾;‹+aóFu å%x_Ųi=z‘Ž1ôi”ü)E‹P|—!¤™§t%©)=—23*iΞ N«¼–{ë»ZõÚ¤*bêNš´\cºÊåëƒç' xup¢²ò¢©ãynH6‰•mº’G¬Œ†Ó¢ñK£Ð•(ŨÆY¤æÒ‹ßt¶‘NÕꩶ³e²Q½×S{ +è²MXj¡M9­"¡;}HŠ”¨¬†4®¤Œõiq¬¦Þx|ë’”Òº÷—¾[Ÿ*”íŠ\¯$2Æ]r¶§n£ì˜³!;C©¾ù&œÍ!Iu*pˆ®i2¶õ™Ÿpdb©ÎU^£úŸFµ¯½ÇR±g9 Æ¥(¯ÖºÕ׶çhF·\¬-†a>—rI¡-éi%M‘ë3âÔ(±©BiF. +ƒNNm%«\r­å+aß9R“u"ÒQ»{,îËVµMqºuFQ0à3NR\ZÔ•¦÷Fïuw„6–ÃÏlE:™)* cÞ—½±%„«TªC4Ý]I­ÜoÔVA‡ÑV°Kªœha¶BÖ‡‰*7.fH=z´¹Fl(óóÃÍÏÅTZÕ+^^oUÏ•j¼ÓÄEFíÎ-'«qô2Ý6S…m7ržòV‚LÒJ#"5(ÏŒIBn3Ã6”-)¦”¯k§k»‘ê7ç¬Ü¯Ùåµí¶ÊÅ ö¨ä¤T]BUѧ K#¶šE[OPÆÑU#Bœ#U¥.z¶Öµ6µ3팃¬ïM;s+sÜõ¢ŽŽ—¨­ÂU“õcvfî’Ì›+ÝW¹ØŒ|4^l2£O%ŸŸœ—Œ£g¾çÓÕw)Q^*£gªÚõj>tj««f ¢žÚ^Mm&Ò¤/IV>îÃî tV2N’jqÍÒ'lÎêÖz½%øÌ4T¢²»sò«=ů•QÐxî¸Gó–áœRuB¯µÄk3"1Ë.üYf—‰›2_‚O¬‘äìŸ<Òñ–EãeÊþK0óƒt/ZG¡Úï× øÃÇà“ÊUìG›xEòtû_¨ÍY<ó¶ûÄ=ÐòrEÁó²hÿ×uã  ð‘Öe+Ðýkìn4_ß[gÚ½fÙÈŸ‡G±úˆ|9„÷P#%±ÑùHŽÛ2¦“D¥1»:ñ–ÔkÔ”÷G¬rF„aF—:¢•J/4¥ÔÛØ”Sr«(Ã3q…ýöXǯ­—TÉŠÃp$1N6ªâÚÑ[D´¥ +µÈˆö^âJuž:p‚q–"qiÆöWÙÔGÓ¤±5ªI¦¨'tìÛ<ŒO@ƒ#É‹«m'‚‚3$¨ˆÍ=í{.;FR¦¡E[¥IlÝu«°ÉÑøÚ“æß{÷ëÖ\«f…B2"3×gãщl¼ZæWú%TcVTÔ#*²K4ŒÕ½ê{Œ:“§¹9%Ní)ZQ×ï­¼ó)4Ê~ˆoHi†“Su§Q½÷ÅПÊiíoq‹ÂPÁÒ‚šŠs«5%“;vvÊžã#ˆ©‰¢ÛQ¥žlºßÙ>$tÅÌÆY©7†òô¢Ñ4—!—ò}+Ã8ÁY);'µ+›Öœ¥BzÞUrÝæp]¸çõ7ë‡öŠ'$>¸Qùh…åÀê|†_Xòeï®+íŒu’9à•ôO:Ox…À¸@„s‚Ƚ7.˜:£‡fç'Gv(‹Í#Ko„Û‰>+(ˆQ«ƒf…–jž2¥T0F1=ÇáEï)í¬ì·ÚG¹ .2Ykå‹Ë'õ{(ózçòƒKhp¼ÎÊ8¥äÛU±-fBX…Nao8¥¯¢Z’\¦g¨ˆ +3RÀÕ\§â +¶]±´e&uZìP":G÷†šGÁ2IìS›L[ aàòja÷€S-{hß[{íÇ‚ø\òô¾Kõž·àëÉOå/Q‚GžŒwK«A%fD{lfBõ6¶2×öº³½Ö|-ºÏ_|S;+•îÎj=5jÔZÏP¯8ø¾ò™P%ç}¨¯¶ÆepSkc)í:µ•”µwLÌÛÚŠ[žYš¬ZÈ®v ÎøŒ¨ó‹2R–£2Øfgpsw½ÂŠZo-νjW|ÌÅ%6ö°¢–ÀK«ARµÒ#2!U6•“)í Ùw#ÓUËQk=D +£½î2¢â¯â™80’é ++a$“;))ã>è”ÒÚb¦6JSÕh¨Ù^ÚŒŽ†5µæ“–¾²Ý'œJtIj$ò\íàyÝ­s;*ÚêÉ:µhò\íà îָʯp'œ""%¨ˆµ‘\õ8ø¾ñ•œ‡UµÅ»ëQíç%Å÷Œ‹Âžq}rÔzï¬Ïh£¨ÞöR9Sî(ÈÍÅ–Ã3=@êIë»ï + n:î‹íÏmöñŠg|JåG+unÛMf«r™˜Jn[YE¶1iqzÒ=×~½Æö?žR¯b<ÛÂ/“§ÚýFjÉç·Þ!’.¨+@ÿÐuã  ð¬0ÊQ~Cõ¯°}¸Ñ|"ýmŸjõ›g"~Çê!ðæÝ@]´LqXÃñÎ,): iî„F’VŠùS}†'p<£Åa ©Ò•’wZ“³ê#1z†"Yæ®ím¶º=v²§ˆ™7M3æ«ÝVFÚLv¶–²Ú2£Ë lU”ö¶ö-¯y.NᯊÛ^ΟLÊ v“¾w Ÿ“n®i¤—uöÅ}†1ðœ¦ÅáÓP–ÙfÖ“×ÇYöÄhL=kf½VVvÕÀ©g)x—$:S4”ú÷Ué!*-;[H®ZŒ})ò¯ µ=­½i=ozàY=‡’K.ÅefÖ®-;×)dù32û³†ê´ÒKáŸÑöùayKŠ¡KkoZO[ÚÕöJú…[fŽÅmNÚ¸œ™.KuÇÞY­ÇjRi™í1 RnmÊZÛwd”  ”VÄ|…àvàOŸÔß®+í6NH}p£òÑ Ê?Ôù ¾°'äËß\_Ûë$sÁ+¨§f“~Bâ_9×à:®Mk´¬»`– U +5š®Äh­¿©¦|32-ªFÒˈ&–O1Ý+)˜v“‰hÏ¥èuójIÞÚE­'ÝIê1r`½ Ç=^Ê<Þ¹ü Å’Ú/Z9R™';œ¨ÇÉ­1Åt›…n^"ƒàK”ƒ»qHËiõÄ,zØ>z\f!Åi-0ÂÛhIX’„•ˆˆ»„/`•T/3>ð*e°µÑ¾¶÷Ûð¹åé|—ë=oÁ×’ŸÊ^£!= Ö‘èv»õè?ncØüyJ½ˆóo¾NŸkõ«'½c}âè'$TàwA\ÿÑuã  ò{¬0)Åz'u=ZŠ[JBOêËZ}ñÊmÓp•(­®.ݨ—ÐX…G±=}„*“ÈŽ¸Ë©4­µTG´Œ‡%V¥*rp’³NÌèzuÒ”v3à>Eà㤹.‹±ˆcG'œ§EyQ›Q蓲”“Kh#î™Cðq¢%ˆÆªÖñië¿^ãN宑 +§}sÕn­æ$ÈntI5èÖ+˜b¶£"&çƒ(ÏknŸî}ÑÒIž4ú"Û“§Yq.6¤‘¥H2RL­´Œ¶‹ÁpROƒ§ø’šK¬>…6ãj+¥IQXÈ˺@¹“Ir3EʤŒœÔQ`¬Xòåá÷œ3ÜáËYÝÈ·=DJ=„-Z€ËEÀäMiNÓ"çm"©ËasÈ.úˆ¾óuඵދÕ=‰÷2™Uˆ+ªk%ßu?øËF:Üâ¿/¾}V«Ù|×÷…žÒ˜{ùH|èýòî[Ì—Íxn©­S×ÖÎ`ûΤþö†‘¡-“‹ýü¾ùkÁU[c/šþñP‰ñ\ëd6}å¤þöXšod—z,xy­©÷3îN¡[GÞ1ôSOc>N-Aq@GÎ×-sroB‡‡pÁnø³¹¼iL$î´ø+|ˉ(#½Å÷›ŽDáä7C£¡[½JGÞª¤ÅkrLÇxN)G´õ‹¸ XôTxËvqx#£Õt*jÈÉŠ|6–ò¸’–‘s×ÝnÀTLkˆòφfW*xFE¸2t¡5(üÝøn–·©²¸‡”øRÑ2Äaã^ ]7¯±žÈ"©V•}šÕÚ‹Psñì _º=ÃíÇwSÕ9p{I¦v+œÇ¿x,Ñ2£BUæ­êìGòÿHÆ¥XÑØíífpÀ %½\D=exgø¨ÑIwˆT`ÿÒuã  ѺL€&ŠjEÑ×Ü­´ŒPÁ¥ÕÜ5ÔIpåì9-£M ¶Í4–»÷Hy×)¼QÒ2ui¼“{uj}¨Ý4,ªà£ÍÍfŠïF8{S?DpíÝ%‘ø,<þ^ +1‰êœ>“p„5µÆE!Ò©ù“Að¯â÷)ÆyÐúK½Ð0¼%ÜqкG®h>üAîSŒó¡ôt / wBé¹ øWñ¹N3·Ò=Ð0¼%Ü ¤zæƒá_Äå8Ï:H÷@Âð—pt.‘ëš…{”ã<è}#Ý Â]ÁкG®h>üAîSŒó¡ôt / wBé¹ øWñ¹N3·Ò=Ð0¼%Ü ¤zæƒá_Äå8Ï:H÷@Âð—pt.‘ëš…{”ã<è}#Ý Â]ÁкG®h>üAîSŒó¡ôt / wBé¹ øWñ¹N3·Ò=Ð0¼%Ü ¤zæƒá_Äå8Ï:H÷@Âð—pt.‘ëš…{”ã<è}#Ý Â]ÁкG®h>üAîSŒó¡ôt / wBé¹ øWñ¹N3·Ò=Ð0¼%Ü ¤zæƒá_Äå8Ï:H÷@Âð—pt.‘ëš…{”ã<è}#Ý Â]Ç%J¤æM¿ˆ=Êqžt>‘î…á.ã±µ†éži*²s9†ÚŒÔ|†µj"Z;Á5L×ÄTVáïÞÌg„8%j0mñ{›õ9X­q£1¢SÙ;µ7;Ÿl³ú%_Ñ:"Ž’¥EY.öy¶‘ÒU1•J®ïèFA™ì/”êYÓ15™Œ©6%-$N ùP²ÖGÎ%,`©Ëläs²a[bÖ5 o…ÊQÕF›}rv]ÆɆðu7®¬ÒêJå?/é7&e‚î&çá1«â¼*cgïcè¹;‡äù¹zlZ2¡‰fßN¦´ß´²F½ˆåÖ‘«¶£]š‰š<•ÁÓÙéÖ[²1M^U÷Z“êû!ü"®ŸÅÔ÷Õ$ÿ2FžŠÃÃÞÂ+Ð1U K뤺}÷Áxʯl¥óŸß2– dWr> +uk+)j2ùJ¬¥µ¾ö}ؘù—’µ#­Q—xì/ŒÜv;qOi÷LÙë_p»Ë2øGÕbª-’}ïïŸ7Bj]È®cTâùÔ÷“Þq_Ê£¦14½íI/ßÌøTÑÔgï¡èG½(¸ŠÕ?dz_Š%pü²Ò}íYzu‘õ¹7„©¶šôj.È9nÄq,N8ÛÄ[tѬü{ á;Oß8˵5ù ƒžÄãØËÚœ2ÓbK%+K±ø lØ? ¿K濾Ab|'äªw¯¼d*^[0å@É.:¸Ê>'«ÂCnÀøIÑõõJNðKîšö+øÊZÒRìfF§â +mT‰Q&´íûU•üpÂiZ•zSŒ»5¬NŽ­AÚ¤ZôÏSp§ˆ*òÄ*{ }å¨ìD”íß=„3Ì2 +f¹ƒêyhÅUL¼ã '/J.„áÞJzNÛ­bœÛÞLj¸1NTrÙƒr9sñUmˆdEt2j%>éñ.™ñjnÀ†R2¥–lèPòsH^ +ÃK=×jˆûØógÇ¥rØf-»`͹&Íd¹îŒÌC˜‡¹Â~­S=Ýå/ŒÐJ¹ ¯°‹`ªˆ2¶!C°œ7˜AˆÈÒet©&ZÈËYZ”jEÆJé­h¾G¥Mò¹B¡LuNµ-TÇTfjiÔÙ¿Ô©:È»†<Mø+Y¹ád£wïZÕè±é/—îQÄFöÞ‹UÊ1®»B/ÁüC]÷)ÆyÐúI¿t / w…Ò=sAð¯ârœg¤{ axK¸:HõÍ¿ˆ=Êqžt>‘î…á.àè]#×4 +þ ÷)ÆyÐúGº„»ƒ¡t\Ð|+øƒÜ§çCéè^î…Ò=sAð¯ârœg¤{ axK¸:HõÍ¿ˆ=Êqžt>‘î…á.àè]#×4 +þ ÷)ÆyÐúGº„»ƒ¡t\Ð|+øƒÜ§çCéè^î…Ò=sAð¯ârœg¤{ axK¸:HõÍ¿ˆ=Êqžt>‘î…á.àè]#×4 +þ ÷)ÆyÐúGº„»ƒ¡t\Ð|+øƒÜ§çCéè^î…Ò=sAð¯ârœg¤{ axK¸:HõÍ¿ˆ=Êqžt>‘î…á.àè]#×4 +þ ÷)ÆyÐúGº„»ƒ¡t\Ð|+øƒÜ§çCéè^î…Ò=sAð¯ârœg¤{ axK¸ìTšAþdп?øƒÜ§çCéè^î9*Ž¡¨µ¹X’]jƒn9‘žµwˆlúÁe:2SÄË=¾Å+"JrþUåë{JŠLyø’z§O=%ªÄ”‘Y(IlJKˆˆzÕ1§«$¬’<ê¥G99IݲV`úYEB.VÔCêXe–ȉ%aP}ÿÓuã  ÀƨDÝ€£á=öJ;m¿ 0ÅK'šwà€RÀµ“C3>øzšh~ÔÐûCð¦‡Ú€u4>Ðü©¡ö‡àM´?êh}¡øSCíÀ:šh~ÔÐûCð¦‡Ú€u4>Ðü©¡ö‡àM´?êh}¡øSCíÀ쌙úÃð=xù5;§€~°2^ÀÛØz;;‚ Í”jAFA¨.æH+ +åw7l –È»Ž$¢¶¹(¹³92–ʸ”‡Qe\…¸"S”ºæ±¤º$¥å°wÞRôUŒÉq6¿£Ñ.#Ö%r3FËJN->¡¼*í¤R§–÷–Ò¶h.ÚZùS¸$ˆ¨¦•1ˆ(7d<†[Tµ¾>5±¤³M¤¸·céJŒª;A6ú•ÌGˆrÙC¤›Šj˜ávš‘~øÐt¿„œñ¦ùÇÕ³¼Ü4w!ñ5õÏÄ]{{ˆsU\G±ÌŒ R£2¯"6ô}ÈîRówÔn'b”\£Ì´¯„Ìn!Ú•©®­o¼Þt!°´uÔñß^Îãí:³:¦£\©n:g·IfcFÅi:ø‡z³”»[6ª*TU¡»æŒ(*”ôU™uM™q¥F_ˆ>Ôq¤ï×chùÔ¥«I'ÚŠ 6öSèˆÃ˜†l™4Â}—מ4»’´‰ 2Öi>2ãvåö? eŸ2[¥¯é5Üw$°xn9_ê%N Ë5›-Ú~ñb3he¢d®Ú‚"""—¢|*Щââ"àø­hÒ4‡ƒú°×BJ]OS3Ý'S«“°f6òOµQ\»å´zNJÐÅÇ5©.§¯¸Ññz:¶å«»Qì‰ ÉÇYFÃY3¦?WÄÕ˜ÔØŒ¤Ô¥¾á$ÎÜINÕpˆœŽRóƒyÊfEpÚàRÌÍbj³FÛ$šQÛ=j>21mï°'%ù—aÌ;QF)Ç3ßÆXG¦©Õ5n4³âe“ऋ‹P(‚g2ËqЖÚBP„•’”‘r¸Ì®F@ Z¥LÝÉeÊÂØ—ï…*É÷…ŠªY95™ðÀ)`x}LÏ´?êh}¡øSCíÀ:šh~ÔÐûCð¦‡Ú€u4>Ðü©¡ö‡àM´?êh}¡øSCíÀ:šh~ÔÐûCð¦‡Ú€u4>Ðü©¡ö‡àM´?îÎLÌŽúà{Ðro¢²=ââ /Ð0qEÑÕï +Ø‚²„ÞAXˆTÀÿÔuã  82#P?/\¬ó]¢6¿¡yêÃß­÷€t¸ßkï—í}àÒã}¯¼:\oµ÷€Kö¾ðéq¾×Þ.7ÚûÀ¥Æû_xt¸ßkï—í}àÒã}¯¼:\oµ÷€Kö¾ðéq¾×Þ.7ÚûÀ¥Æû_xÉaæÓÅï*›¡6VÔôš§%«¹-hj bAì§,Ùª`l³gL„tÚË\(õZyî›_é"Ú\â\¹£.Y«,ÚÄP×”, ÑžŒø…j¤f‹ÓQôv-¦[E5 K¼‘ç ò×wÃU–Ý}:†ï™Ji\i[J²ˆÈU;ƒ6 +€ ¨Õ"ÒYSòßC-§j”v¸¼m<43Õ’Š[Û>øl,ëË-4Ûê#þ,ËÃ,‘è¬nŠ-[»o1'ÓÞáNðÁÇ3óžÏB=DrR´ñ.ß[{Èñ\ÅULFá®|µ¹õ7²K˜y”Óøœ|¯Zmõ_Wqè¸ C­J)uïï-á I[¥*˜ê^ŠúÙYk#BŒ†VW ,ô¤âú†# +ÑË4šëFq¹uOÑf®ÖúkQn‰Ô²øǨh/ +U¨Ú¥yËT—ß4M-È*U|l;Êø=„’Ãؾ•Š' JJÎÚÐge—|‡²èŽPa´„sP’}[× óM#¡ëàåj±k¯wys‰’,<GŠ)8B Õ*ÕEˆ1I©n¾á!$E¯i˜bîñ.Uç;‡2…ܬ9}«óRmS#뱚LÊîmÕ¨[›€=¼ ™cUj‹8£+õ÷±•pŒœK.™¦W¾‹LÞÆEÊd +Œ4+G,ÒiîdÀùq34D¯!„—ÛöNLxN½©c~zû¨ó];È]µ0¿5ýÂID˜ÄöüwRãk+¥I;‘öZáV*pi§±­hó:ÔeNN3Vks*GÔù€QT*Q)1Ü•6Kq˜hKuÕ’’-¦jQ‘ cŒô½R{ dk½Œ+)3B嶓M62¯k¸õ¬d]ÁnnòðÖhXƒ*XÄyvÄî×d·FèQVlÒãžÒI¡'÷wheâ ݇ðÕ+ +CjŸG§±+I$¡¦Kh"-E©$.¸rÿÖuª; ‚‡R;mu[š:ø€Ýg±}â0¸;Êãm^¸9ÝÏ´W€Âàê§ÒÕà0¸:îÇéjð­ÀnÇéjð\ì~–¯…ÀnÇéjð\ì~–¯…ÀnÇéjð\ì~–¯…ÀnÇéjð\ì~–¯…ÀnÇéjð\ì~–¯…ÀnÇéjð\ì~–¯…ÀnÇéjð\ìgùM^ ƒª¥:â2ï‘€;"JÆ©JÉ\`ǨØâû Êmm<Ú\mdiRD¤¨i£B\£æUERwäÞªö +ÄFf³z™E}[ló%Á23ä!kˆ,šft8ó!Z¢åË ,á’‰¶±5)ì5§‰O µ£º|B™­´§cºP©ÌÕpíZ=F#©%%Æ%•”‹Y|^ ŽlÖ)ì¹"C‰m´š”£±øâ1£9´’ÚÙõ£BUd¡v÷"&e,/ÖMÈ4…)˜ÚÉN¥9Þä!àœ¯ð‰Ñ^ ƒ¢ž;ùÚ¼±úZ¼+p±úZ¼»¥«Àap±úZ¼»¥«Àap±úZ¼»¥«Àap±úZ¼»¥«Àap±úZ¼»¥«Àap±úZ¼»¥«Àap±úZ¼º™þSW€Âàùœ´Øî]ý@ºIì0AÃqpÿ×uÆW +go¨ˆ¶ˆ°#öPrȪ#îS¨¤‡lÍ.HQi%*ã$—¹Gò»Â<¨MÐÂZëS–ÞãÓ99ȨՂ«‰½žÈìï0$ì b*‚ÍoUŸ¿Ô¯D¼aå8žSãk»Î¬»íê7ú: IZ4ãÝr‡¦úߪ²}µ_Åöoñ“ùÌûû‡ó#óPtß[õVO¶«ãfñ_?œÊ{‡ó#óPtß[õVO¶«ãfñ_?œÇ±X2?5Mõ¿Udûj¾0öoñ“ùÌ{‡ó#óPtß[õVO¶«ãfñ_?œÇ±X2?5Mõ¿Udûj¾0öoñ“ùÌ{‡ó#óPtß[õVO¶«ãfñ_?œÇ±X2?5Mõ¿Udûj¾0öoñ“ùÌ{‡ó#óPtß[õVO¶«ãfñ_?œÇ±X2?5Mõ¿Udûj¾0öoñ“ùÌ{‡ó#óPtß[õVO¶«ãfñ_?œÇ±X2?5Mõ¿Udûj¾0öoñ“ùÌ{‡ó#óPtß[õVO¶«ãfñ_?œÇ±X2?5Mõ¿Udûj¾0öoñ“ùÌ{‡ó#óPtß[õVO¶«ãfñ_?œÇ±X2?5Mõ¿Udûj¾0öoñ“ùÌ{‡ó#óPtß[õVO¶«ãfñ_?œÇ±X2?5Mõ¿Udûj¾0öoñ“ùÌ{‡ó#óQëSr‘ˆékJš©º²#Ö—M'Ü21!‚åv; Ó…IjÜÝ×Òbây;„¬­(/B³ú ƒ2†Þ+Œµ)̶,o6]j“Û§á!îÜ‹åœt¬\*j©«s\Qäü§äËÑòÏ pGQ”)õäh¬ŒoÆ {ÚD¢# Ô:«H…\Šì*ŒF¥Gu&•´ò hQ£###  +ÊhE“éqŽGq;¸6 ‹ºô#Y®—&ÚôTÊŽÉ¿pbâñ0ÃÁÔ›²Jí³ï‡ÃÊ´Ô ®Ùð”|SŠéTøØ…Ö +KM‘I(„ieÇKjˆ]»ƒ›9_ËJºN|Ü +ËÈMh=;[FÕUi>Õ¹¢3JhªXÚnEØ÷£ÏVMr‘5Nybühš6eãB)Ur%5ù½Óáptß'9AKJÑU`ìþÊ;Ó<+Mèj˜ +¹%³sÜÑ4òa‘Œ‘ÚstÜ)CbI.Ò'œ>5-Ãá(ÏŽæ6$¬CDTLåT&5Neé2\&™eµ¨øˆ¾‰ŽÆà Mը좮̌.uæ©Á]·dELY— +¥AųG´8äfD²"7V\¦g³¼9ÿOxKÅb$ã‡y#Çì™ì'‘(E:Ë<¾ƒ=k¯¨Öº´ƒ3ätËñ•W”¹»Ê¬þs6xhŒÆCrƒ +«ágæ·ÜI 9X$>óó·À‡Y¦s»Fh†²u²1p+@굓i5(ìDFfgÄD))$®Ê¥wdCL­e X’R©ÐÜ2†ÂŒŒÈüñEÇÞäéËþW¼uG‡¢þ§¯ðOïÓÉN,$9ê‹Ç’îFfnà׃±\¬!Pjdu¢äN¢ú–ž2'4ýM]U†Ï²[š"4Έ†>“§-»ŸOJn6!„Äè«ÒmÔ‘÷HøÈûêtf‘§£ÔÔ—âG€ãð3ÂÔt§µ3ØæñuZpËelÑŽ…o—ôUÝJ +öSá[éá£I;g–¾´Að}…S¯*ìW¬ˆãŸO`.äÖª¦¢Uá©\¥\ŠAØÏœ‡¯ø&Ò5§Bú¤®—Z<çÂ:Q«½;z"pµ\¥!øˆ{Áä†KÓ"EÅAÿÑunu¦2 +ïôG­'öJ¿Å!«òÏë}_ÉîL|2ŸÊ Øäó À2µ'°gSis¦ÖJ*ê-¦[6E¤“¶³.Q»`ù)N¥:R\²­ïVVõöšÞ+NT…YÓ…<ÊšM»ÛS(k¹5ŸD†©¤ó©–äe4ÓjQ–_KQ£ZK’Õp´•Mrnr‹I7l»õlž§^yv,ŠWm-»‹àJ#AgÖfH-pŒ¶‘jÖ5Þ‹RéezöjzÉžzV­ºÖ£¹RæáD{A%+sUŠÛnvÔ+Ñ*[6Y[ŽWnûé½³+¾´z(ÛšaCrCµ¦¤*#Ißaját†^'GåqT¯&â›ñZkïöŸ +X»æÏh¤í|Ëñ#Î*lµ:lWMÒÖmîjÓü ®1£–U]n³¿u»ÄA,×Vãunòã¢aê­ÕTê•P#›æ… ÉJ±ì±ÚÂW å^•Z’y](§fÝÙƒ‹Òq¤à—žVºgL¦µ9©‹[ªB™oM Kj^™ÞÖ3.·¾c „Jr“nñµ’‹wô­†V"»„¢’½Ýž´­÷ÊgisYAºäG‚Ú¥4¢O„ÊÃã<%X+Ê2K‹‹KÔ}#ˆ„”“|.®tv-†Òó‘Cjµ–¦ÔI;ò•…³ÂÔ‚¼¢Ò{ÚixIÙ4ß «œ=O• uØÎ! +ëT¦ÔI>ñ™X¦¤å¯Å4#^vM7ÔÑÝt¹­¥ +TG’•ØfÒˆ”g²Úµ‹¥ƒª­xË^Ïëú +,DÉ-[u£äP¤—˜9ÁQ%\Ô£â=Z¸,Xy½‘{m±íáÚ]ÎÇŠïGµ¸öøßhz9¡µ-²6zj/¡Ù«¾3ðú1ÉIÔÍ•ÒÉ-nû6j1+cR¶KJîÏÆZ—º¿‚j4AqÆVáJ`Ÿ-ÕÀ#â=\C#Kh +Ø'Óy ¥tž«î>8/Oä“K,­µk-EÇu¤!Å´¤¡}j&D«r†•)E&ÓWÙu´’SMÙ=‡Ä|ËÀïá_ŸÏÜÃ_lBSBü*ŸË¬ÂÒ^B%úŒ¹†åŸEg––É/}¹ŽÀ†Ã›e´“T—ŒÚG0ú—ƒ²ÑN‡©‘\´‰Dd£#Ö–øü#Ìü#ò•àètzoǨµñQÞo\‰Ð&¯=5âÃg[!ÈçCÙÀP9ä[ª‹?¡r\ûÍ(øØ—8¼#Ô¼ò•áktZĞΩ~¢rßB,E.~ Ɔ޴LAÐÇŒ€s:ÀfË‚´©ô¿ÜÃßj<[Â÷½¥Û#Ó|ûꈣÄTøÁ‹6Û¬¨¸¡¯ñHz_‚χ¿Í—ÿ_)·'ÒÍHk_Œ<\Ï÷™¾APÿÒuOu†2 +Ÿüë­~å\üR¿,þ·Õù žäÇÃ)ü¢ŽO: Aµ^ƒ@Â8ZLªbf8‡ä­£RÍ$…$ÈÈì[G©VÒ´ðX<-ISS’‹qmµgsHx*˜ŒehÂySQNÊ÷V=¸§&Iž‰Ó“«JÝt5]&EÁï .˜­*8y©[œ¯,Öß}Æ%}J5ªSjê¯ë/hÊ9ꜗtHðüÉ2¾¥Ä\¿>êÂQw· *«ÐýéQJ +_áéO_Ðx”³jôØm-.ÅSÌIZoEÈ®®g»»ã V­|:Œ¯èÉÝZT¤¶ëá#+JjÉ«JÒŠiÝMZËWQØ’ë4Øç ï=en‚á_u=#GvÃéŠÍ2t|¢ÃÃ-¶ÚúìSSªùÏyÏø×Ùïu\·hPëÍÉ™2«1j}ºz¦ã%;éhR¬I¾Ò>SÛaÃâ¡*•+͹(Bñ¦—8ï±_wYŒ«‡qŒ(ÅYÔjò¾Dí­öF&A©Ê³æÊÛÝh-™îšÔfGôGÆ|¢CNBË+Zøz{vÿë#ôtµSÓ¶!ìØaü–þIâÜ¢Õrv«Jf‘ÉÃ7˜{EqT’4‘ â3äÄë¦êÞ)T§š2³†ïxøaš¥5’ÒmNÒWS[}ò:âYŒ+¢1¤C’¨…"!%o©Â”VÜ‹i‘–Û 1µã)Ja,ª´5ÍÇ*×ö+\),²Œ£›$õE<ÏVóÈžX…UéK}òE!©ñI¤;mI™hn_paÒXÇŒr­+RUÒJ[øeê2©te‡J*õ9]¯¦ç*¦J‚Ö"rC +m.Öc)³Q[H´ËYw0XIÑ„³¦¯‹‹WÞ‡H…ISQwµ _«QÄšìé؇²ô…)¸±K)âE­°b=#V­lfi?-G«ÆÜV:tðøw®SߧÙÚÜÄTp’%:ââM§ïušŒÍ·Ó޸ϫŒ©,U*up«AG^ÌÎ>³ç$9ªÎ )B¦eÆÉÜÅù^IR¤Sh(=Tæ4Umšk331¤rÞjha£²”};Y±rcê°ž!þ4•ýÃÃI6€{øWçÅ3÷0×Û”п +§òãë0´—ŸÉ~£!aÏŸÜÓßnc°a°æÙm%fó¢–—PøÈ}ZqçÉm&£>áÇέEN.RØ“l¾79(­­Ø_Ò¾¼KX›9Ff•,ÉÈ„ê"•Êm-,~.užÆ캒ԎˆÐš=a0ñ¤·-}¯ijˆXèÓªehqe$ÉDeÄd/§QÂJKjw-œT•žÆOüˆ“‰¨åßÍ $‡K‘iÔc¬ù+¥ÖÁ®ûYö­Lç¾PèÞ‡‰•=׺ìeè6"CÎ̲Óóº™û˜{íG‹x^÷´»dzoƒŸ}S±Ðxê€^XSÎ+¹5þ)KðYð÷ò$hÜ¿ø"ùHÊù:>}âøF.H…ùÁs +ƒÿÓuOu†2 +Ÿüë­~å\üR¿,þ·Uù žäÇÃ)ü¢ŽO: ¥ÉºÓl-Õ)¦ÌÍ3à¤Ïmˆ}§^sŠŒ›ilWÔœiE7$µ½¯‰Ý -¶ÛI}d†Õ¦„’ŽÉW)(¹bê$’“´]Ö½¨£¡Ûi]«>Âõ…“Q„Û.ªmBÉ‘!n\w±(ŸŽŸPÂJ„ÍQ¬òr½íÔDÕÑ.¥xÔme‡½Š[ûKbZªM8²_ÜÌŽí6¥[QqŠXÌC7 JÖØ›µ»!W Fùæ£~.ÇźÔöÒÑ-Ô­”è ÉfF”ò! #¤kE©)É4¬ÞÎòÂS’iÅY»½[YÙê‹o®RgÓ¥ÙÉ'm‡ÝUyªS«9NI!g¦wRKˆû‚÷ªÛyŸ·[ÖX°ÔÒJËVµ«aõ‘]¨Êe1ÞšòÚM¬…,Í%mš»‚úºFµE–s“Ksl¶:p–hÅ'ÆÚβ«u ­!™q´[E*Y™¶j­¤+UINM¥²í²´ð”àóF)7½#™ÚŒ¤6ÓÓ]Z24%K3$™l°­]#Z¥³NNÛ.Þ¢ÁÓƒn1Jûui’«-$‡ª¸’22%8fDiÙÇÄ/©¥q÷Ó“³¾×´¶ +P×¥èEEfn;¾\ÓxŒœV‘Ýd|F|cbê]¼ÏÆÛ¯oiõèð²VV[5l=ê$(rb*¦oÊD¶™Kº$•Ü­}„%ôV™æjÆuóMC\Vk$÷z ,n<$©Z2–¦í}GŸ‰k®âZœÊ“Å¢© 5hÞú%Ä\Ä#tŽ:XºÒ­-²mŸ| a©F”~ÅXð†˜ +üø¦~æûbšáTþ\}f’òù/Ôd9óâ¡ûš{íÌv 6Û-¤­ÃþtBòÒêÏ+U“£aÉŠIÙoY¤ÿÚ4Î^é.‰€›[eâ¯I³òGÒ1‘Odu÷PrÑï@/²ÕÒ*4i°X\–IF•©²5šV½öê1†Ò8)Pœ"ç«Ù^Ïc<¿–r­„¯ГQ{®ítGINB1*¨$ƒÝ7ÖâEn#Vßòü.…LrÂ[_9gØž¿ Þ£¤£ÑzFì—ú M•ì?ŸM¤aŠ-9ƒ¨Í4 ”HI/E¬ô»¦=[–Ú6›<ç'Ô“²\O;ä¾6¤êO^RÉ ïv»ê"V(Âu,, Õ&ž4’ôID® ìÖCÆô¦Š­€«ÌÖV•“µï´ô½¤©c!ÎRwW·Ö›“ºÝ6ÍvDbLt4W¦Fg¦zµ ,G&1XZqÄU¡';ñØcQÓ”*Öxx¿_U¸+x~l@v$&›}ãa&´ ‰J5$¶Ÿ|z7/te(a(óPJRqZ’Wº4žLcjKUNM¥›SwZ™„¤dsÆr+gL5ªI] +%­{™ñ §!´„f¡Íë|×y¶C•89&óûÝ·ÔPâ<–âL+}Ô)êK%µi2Q'¿mƒJrS†zвⵣï€å,”寃ÔxØsÖqbÔš\$õÊ"²K¾g¨ch¾Ob±þB ®;y•ÒÔ0Šõd—VþâéªdgÒXT‡©jRWVæ¢Y‘wˆIc9ÃÁÎTõ.äv•X:ÒËë|uÖÀõ|dôˆô¸äãŒ'IÄ©Z6+ÛŒGèžNât†nb7Ë·]Œý#¥èàâ¥UÙKfóÛ‰’lO5‰RQN2j>žšÔd’àu־љGc¥MÕÉhÆ÷mÛfÓ¯)p°’ƒ–¹ZÉkÛ°§ÃÙ/Ę’‘œ¥2z‰ÅŠO¼f)£ùŽÅÃœ§ Ocz®_Žå ,µ%¯‚ÖÊêÆG±]…È‘LR›A]FÚ‰v"ãÔ/Çr/†ƒœá©m³¹òÂò£ ^Yc=oŽ£7dGAªa:Ú߀Ûï¤Ü$›%,GQÇ¡ò;FR­¢§')xÖv»Øj<¬ÆÔ¥¦£&–«ë²ÚaÒȦ.Ê¥"”­º‰&¢%[ØÚ‘ËŸ›Õ¶×Wî6Ÿm¸8Ë#ž¾Í]åNéó ☱\¤o¹5‘Äzɹ‘qér +rKR쎖y(Êð•—¬úéÚОÉO*vñ–¿Qž0µ)ª†Q¤1Q¡³·©õ²V‚Õ·Q[XôOà¡[JÕjQ‰ï54;Ib]=R¨åãûíi”TÈbV aÖj(A™VŠÙr‘XaèÜ;Ž;T#Q)lvJ=çÛ[6ŒªUpo~¶ÙI“›/â*…F©Hk¡Û£Í›F¢2C„}ir#¹-Ïâ'_Mso2Ië³¾ÃéÊ-<°øxÒ¥7žÑw⸖¶Qò?U‹^téÐ[f§É¸¥º™–Í{¿ÊEbV-ªPJ3“PWKvÂKAr¢Œ°ëœ“rŒo-F%ÅX:«ƒ$·«qqÄé¦Çr2ïÓô¶†¯£êsuÕ›Wã¨Ù4v”¥Žz.é;¤¬›×`ÑÓ^~2[„¤¥IZ–DfJÙbÛ¬gbù-‹ÃÐXš‘´VwW׳QKOaêVèñw’Ýne†5Òd$Æoµ“ÒŸLRµXA{Æ=³Á.’T÷ÂKîža᪗c$øöÃË@PT<ìÀ‹-?;©Ÿ¹‡¾Ôx·…ï{K¶G¦ø9÷Õ;ˆ¨+z,ÚÝ÷«»–ÝÓsV‡à­aðµs8ÊÜlíßcãÒ!|·Wáu~âˆcŸ`}\aÆIãjA,®“RL´‹”¯´_:r‡¾M_Š±lf¥±ì˜uí#mµ/D®­™Ø¹NÛ#NRM¤Ý¶ÙlšŽ×kŸ!ap×pssÝw5nw¶ž‰èß’û./tä–k;q¶®òÜêö¾¾Ï°¸ú4Ë’Hi +ZbRFgà!|)ÊnÑMö+–Êj*íØèddfFV2— +/,)ç¿Üšÿ‡¥ø,ø{ù4n_ü|¤e|u÷‹àx¹"çÌ*ÿÔuOu†2 +Ÿüë­~å\üR¿,þ·Uù žäÇÃ)ü¢ŽO: |¤äÚ—U¤¹! KCˆ†¹áÃJRÒWÑJY—tzU>IáêáåR*iÆš–iY&÷¬»mÖix=Z•eâÓšŽUvì÷ßa÷NN°ó›„\’šõ;~’ô‹sI’MV¶Ó¸º¯%°wtbçQU/u—eìYìæ%^£Ë‘UÉmûmsÚÁxr†¦ÄejyU)çŸÒ¹nDJAðm¶öãZEá°5%Mfu^RoìuÆö14®:¾&JÙ#V1·Ùj{LEð¢1maøΚ·&’ë«$[ID›ê+ñ˜Ò95¡#«%;å„\š[_Q³é$ð”T•®ÚJû5ï/i¹9¥ÆŸK»RÒ̶QÆN‹’Ñ°ŒÈìD|¼B~¯%pð­iµ87‘YÉ5¹½‰u‘4´íYSž¸Þ-,Îê6{ÏYü”ÒQ6œJ[¬·&3®ïe:ƒqN ìH%칌ʜŒÃƬSr´©9(fY›½­}†49IYÓ•¬Üf–k;Yï±åIÉÍ*Bª1â–¥·¤4ÃÛID«)&DV×r•y)‡š©Y”ãÉF[UÝšë2)éÚ±É)åqsqmp¶§ÔX8×CÃÕ8ôøëYÙ– ó>“‹"5rãZÓš2–ÌA»,©½®ïi5¢q³ÄQuem²¶íKa“%d²&•"T6¥0ã[†ŠäKuÝ ˆÏCjvê¸ÛqŒ£:NtÔâÔà–fµ©o¶ã_¥Ê:±ª£7žmQ¾«uï-Šîñe9EŠä¤Ôu–‰j"SN)FD­m¯¨Dâ´. Öè´œÕE5½q|_Q#„Ò8™CŸšŽGìµ5m§zÎÃÎ]²“Piö˜ÓYšpÎÄ£ÕÖÛˆV¾…ÁT¯Ñh9©ªŠ:õŭ嘆 ¤q<ßH¨£‘ÅÊËS\;K¦©’j[ RI×¢oy 2㯭&—R£±©$GªÆ&+ò3 u®PJ¢‹rkZâ¸Ø~RÖ–å,Ñm(§tÖæQV2oE.Ÿ•"]“¸©o)7mKJËQ_câ9)…U©Á¹C4šyši¥±§³YöÃiÚò„¥âÊѺKSOƒE­”,#OÃŒÇ\F¤²âœZ‡ì¤©%±iZukä\¦Ð´pj.š”[m8Ë^Í5¨‘КN¦%µ7¬Ö­{ÓLÅcQ60 +üø¦~æûbšáTþ\}f’òù/ÔCéùÿR0v%®ÂsÖdœYòÙ5´IÑQ¶ê“ràì;¾ŒµÛ-¦O¥þ5kÃA$ò_ˆ•Þ$|‘~rÓÙù­8{ï¬Äž|Îæ´áï¾³xòC8šÓ‡¾úÌIàGÉ à>kNûë1'$3€ù­8{ï¬Äž|Îæ´áï¾³xòC8šÓ‡¾úÌIàGÉ à>kNûë1'$3€ù­8{ï¬Äž|Îæ´áï¾³xòC8šÓ‡¾úÌIàGÉ à>kNûë1'$3€ù­8{ï¬Äž|Îæ´áï¾³xòC8šÓ‡¾úÌIàGÉ à»h™ßÁÎnñéøV¥CM9ԩΈhù®šuhØ‹`ñÿ xÆ©R¤·É·èG¥x:ÃÞu*pI£ÂW •’lT¬%‰ Ê5Y§¹:\F•ê÷†éÈM1Ðq±»ñgâ¿NÃ_å6éxYGzÖ»Q4œÉãOcvñA%;Üãi™þm"±€{U.NÆž’–;s‡Ó½÷R´ÛX‰öY­èà`Ž5åJÉ]ØaýÅ­z¬›•ùÌyæŒÒý;O*—Ô›K±#t–Œèš&QÞãwé:çCŸ3°ëÝuGm)Rj#2âÔ1<"èÚÕt…áÓŒmerîCc)ÃÔ¤“R{YòênKiñ¤ Ðë{Ô”“ÚG}ƒpå'OER„¶©RLƒÐ£SJÎQÖžs啯AX[ë±?…¼¸ø>öòŸÜ+ÉŸ†ÖìŸÝ=œ¸ãJž¡ÑŠ–öàä‚JTá’”؇ÛÂ.ž¯€§Aårnï~£‘ú&–.¼ùÕu‹vÓã± Üc“ºÃÕgwÈD„i(µ™$®W žÐ“©_Ævš¿fÂí-‚†IÂ4VUx»vžÞ *m/'±CΰҚ»ÎÄN“¤£=g«X”Áó4tTrŒr+¸/¯a‡¤ùÚºJI¤Ýõ)?Û b¬;c‹T¬O3#ÓiÖ–â{ö1Éý'…„Ÿ5R­MZÔ¢Ú34¾ŽÄÎ T…(pi¤Îrbä±Ö(vžÒšil¶£BÑ d£>ˆ9#ÍôÌK¤­§k[·På +¨°UGv›Öõ[V³å+8‚uR£J+zÄC«d›h‰7+Øî}ÑæÜ å~3^XxË,seIjßcpÐ\šÃS¥²Y¤Òw}æS^N Ãp¤âK,ÖŠ¾ý†5Ë!¬ÄÅ“H俽ãHCŒ¤Ìôec+ ;•[GHI¹K,*^)ÞË°Ÿä΄ðqÔ¯(´ø™æ¿‡šËUU#[viÄܤ[¡MÒz"~ L74åÙ½wš^ ô-z´e±§nÝÆ8Î/¶ÏCð¼5Y¨ˆJIl¹’\Ä4¿ ºaN¤pÙ¯·q?È]Ú–*{dݾéÇ”ŠÕ•Ö²n-‘L‘Rf*Ó‹Û³„£"àÜ`ÞüâÝ#ºI£Så¥s'æÙ–ÍiÃß}f$ð#䎚ÎxP|Öœ=÷ÖbO>HgóZp÷ßY‰<ù!œÍiÃß}f$ð#ä†p5§}õ˜“À’À|Öœ=÷ÖbO>HgóZp÷ßY‰<ù!œÍiÃß}f$ð#ä†p5§}õ˜“À’À|Öœ=÷ÖbO>HgóZp÷ßY‰<ù!œÍiÃß}f$ð#ä†p5§}õ˜“À’À|Öœ=÷ÖbO>HgóZp÷ßY‰<ù!œÍiÃß}f$ð#ä†pSJük&y6ê[ˆË¾Hù!œV‡—x™Á`¸8Še%¨Hcp›mÐÍ).¢-CÆ<.»Æ—lNðsïªv#Í"z˜d’fW+–¡ô¤Ò’o^µ«ÒR[ JýRuu¤;†ç²ãH„M=Hx´VE”¢I•”|eÆ={Š­ŠRž +q”9»:2Ôâ­­Û¨óªxzt±Qi¹ÝUZÓש_qdÒði£Â¨)ôÔ*͸ãFƒ"m«’IEǬ„’øféШåÎÔ¦æš÷«zV%ñj·R²Ri;í|YCRÂ8 ÇŠÅ]É'.KN8N2DhA‘™$;Nöxý ƒÁF4ë¹ó’†k­qOr±öÃé/‰âÕ²I?&+rŸ%l¸óË^šIM¸®e¬aby[Nît)圧É·}kràŒ¬6œmÎðŠ’I+mâ}jYK„â—“¸Í’ó/Èuk%–“v3Ð.+žÑunWSŒ³Ð§–R¨§&Ýõ­Ë‚)C@M% +“¼c¤­©ñâ ¤ÓÞpäG¤ºóèyýð鸃ÑÚ”¥^UÐRÍN–Ùæ–ifô.QÐ5Ë)êQj9UŸk*$åB m1)G¤ï—[îè^Å©kIr”Ta +mÁIÉ©Ë3×¹=ÝGΞ¨Û”çãeÊœU½/‰àâÌs³Mb•Œ°‡”ù›Îîª%+èR|I.A¦ùA UÐ¥£ß,Ò»Ý~nÑ£UÖ©$ÛIjVZ·ö˜ÐjÄø¿…~|S?s }± M ðª.>³ Iy ü—ê.Úœíf¢k§ÇQœ§ÌÍL ïæ‡ÊC°!°æÙm%5 ÑÍ¢½&!þs7òEå¥ÑÒ½Ô˜žæo䊀é^êLOs7ò@JôoRb{™¿’:W£z“ÜÍüÒ½Ô˜žæo䀕èÞ¤Ä÷3$t¯Fõ&'¹›ù ¥z7©1=ÌßÉ+ѽI‰îfþHé^êLOs7ò@JôoRb{™¿’:W£z“ÜÍüÒ½Ô˜žæo䀕èÞ¤Ä÷3$t¯Fõ&'¹›ù ã—º\:qÒ·¤F˜%š[“iEûú$W)áyj¥ûøõ;*zæFzj4öl:c—5ô…B¤V¦žk»¶‰É:8:üý6ö5mVÖRâl®ÎÄÔšu%èM6Ü%4¤­*Q©[­{‹4Ç-ªã¡N„W7(µfõØúhþLSÂÕhÉ·4îµ\§ÇùU›”°"Ê†Ó ‰Ö›jQšµ[]Æ?)y[SK¨ª‘QË}ýÓé¡y9 )Jo7L/•©ØZƒ2€Ì&œjNé¤â”¢Qi•ŽÄZ‡×GòήðQŠqyµÝßYfäÕU*8*¡>¤–Q1ù‰³†òŒµÞ÷Ô!ô,khÙNI)º›\›%t¿')ciÆ›n*,‘`Õêk«Î“9i$-÷á’v¨ï¨k8ŒK«QÕØÛ¿¦÷&°Ô*jšÖ’Hͬ¿Ö!Óš¦Í ÛI$¤ßIÞŨ¯Ëa¿Pð“ˆT•:°…K-²ê5é‘ XøQÅ(ÙB­ï·÷óäR¾i[;£SòVˆ›Ä²2å#JÉY™"ÆV±[aÖ°¬ÄPÆtÙZs³Zõ-}„í~OÑž¢ÇÅVÒák-±3¸˜ 2o¸Ñ4mi+@ˆ¸ï´HáùwZ–2XÅÞjÖ»±ƒ>JS–as;'{Ù\â‹–Š…½T¯7•»<ˆ–Ù©Z)·!íÑܺ­„­V¼aê»´Û²+‹ä¥:øxaÜšPØì®ËZ”*…=ˆb! yÕ­Jlõ É{HEh¾SVÁb¥Š¦•å{§³Y#‹Ð”ñu‡ì’³ß¨»1žVge%–)¯ScGRÝAîßHÏa\ψJéžUÕÓYh8F-Ék[nõº+“tôcuT¥+'©ì$¦MhrrE‡jr+Sš6ÏÍ›m*Ô\…Ý3­ p³Ð ô™§fÚWÔµl4;‹Ž—ÄÂ4"ï±»uwÖžÄ5)µÕ¤¹)}â3Ô\Ä9ï‹–&¬ªÏl›g¯`p±ÃÒ8ìŠHñ!–þL#5/Óy¤ºÚ–zHZII2±í#¹ Ï òò§ÚýF·ÊßTìû¤Ûé^êLOs7òGRž+ѽI‰îfþHé^êLOs7ò@JôoRb{™¿’:W£z“ÜÍüÒ½Ô˜žæo䀕èÞ¤Ä÷3$t¯Fõ&'¹›ù ¥z7©1=ÌßÉ+ѽI‰îfþHé^êLOs7ò@JôoRb{™¿’:W£z“ÜÍüÒ½Ô˜žæo䀕èÞ¤Ä÷3$t¯Fõ&'¹›ù +øbŽMŸè“ÜÍüuÊü(ðitÖã0Û(ß/‹h$ôK‰$Cż/{Ú]²=7ÁϾ©Øˆú<@õ@ÈQ¡IQm##.a}9¸IIni÷jêÆgk)”¶d"¬Š2“UK‰:NÙ›èèéhm°Þý¶ÐŒÞ"š«(8·›ÄÖ¬ÞST—'êÊ<Ë©õ<×µ¼m·µÏ…;)ÑYnŸ"m5OT)éqžKš("Y™–’xìf-¡ËEF¤é·VqR½£g½¢úüŸœœ£ ÚiÉZïWtFRâ>ÃÎ¥oŠ„fi§Me¹ÙÃ3º‘Æe}BÇÊÚs‚”éÞªƒ‚•ü[=öâUè ÆMS¡&›V׫¬ª‹•HäËdÓÖ¦JÄsssAgÂÒÒIñºå9G%H<®œ`í+=[î|êrrYœã%~s2ººÙk3™ÙR„ú\K×Ò§œ#wJÅ{’¯ø¢Üo,iÕŒÔiµž’†ÛÚÏS9;8´å4íS>Ëv¢ÌÁر¼9¿˜’ÂÞ1½ÍÔ¶½•ŽäiWƒÐšn8HN•H¹B¢W³ÊÓ[É])£^', Ò”ÕÕ×qtÆÊlzT—¦SiÆËéa1ã-kÓ6Ó~”gµF&irÂ4'*”iå“QŒ]ïh­¾–GTäüªÅB¬î³9I%k½Ë±e.—8å56ŽµÆëRM´8I2‚²Œ¾¥\‚ùr·Rñ©I¸çSIJÖ–ÿCe‘Сg +‰IEÆí_Å{=(èÞV £eH§%œã–II‘'CGG@»¶ã +|¶Êàò{Ú’•–¥i+X¬¹5tÓ–ÚynöÞ÷¹ô•”ÊSl"<*’Þüßn%çwBYŸ\]ÎàK•¸xÆ4éÒñc7&¥+ß6ßÂ-§ÉúÎNU*kÉ•YZÜ +¶rµžq…Mt˜e×^R]{MZN$ÓdìI_`ûC–Ôée8<±S÷Ò»¼•¶ðGÎ\™LÎrWj+Tlµ;Ýõžm;)ÙDåÒÔôÚq:Q'4RD³3-4ñØÌcÐå}8¨T6êÓ‹Œe}V{.½~OÎNQ„í +–Ì­¯WS5”ÂLª §"•NÝvQy¡¸fgnM£åK•Ê5)Tqòp”^½­ß_Ò}%Éÿ¤¼¥­«e­÷Œa:NüûäVÝ¥Û“Hî4ʳÍ'.-³a¥ ‘Qà’)GÌú^XSÎ+¹5þ)KðYð÷ò$hÜ¿ø"ùHÊù:ëïÀ:0ñrD/Î ˜TÿÖuOu†2 +Ÿüë­~å\üR¿,þ·Uù žäÇÃ)ü¢ŽO: U'Õrk6Qeµ8äã4›ddv3> ¬|cpÒ<’«F•)ÓNR¨µ­Zžã^Ãiús­RœšJõúKF·…*¸u-ª¡L¥Ë’Tv23-¥r3Ö 1ú"¾Üô\o³‡ÐIá4•,MÕ9^ÇÒ¬O8)nÒQǵ¸z;mÞj:UÅB ¹ÅÊ=imeµt¥yœ¤–Kfê¾Ã³X6²ù$ÑÅi<¨åbÚâv§˜)h TÒqƒy›KµmÒ´#¶KTT½c*Àµæ%³éînÏ$Ô„•Œ”IÚw#¶¡ô|ŪŠ–G™«Û«ö8éŒ;ƒ©™Y;3º²_L¶át9Ã}ÔˆI’ i‘‘ÛP¯µ¬g9Ídy²æ¶­œJ-7‡ÈêfVNÏ´¦—‚«P¥Ç„ô ùt’±éwŒŽÃç>Oâ£UQpy¤®—})éjƒ¨¤­¯P毵)˜GNsvy*Si+‘'mŒŽÚ‡ÓÚÖ3œæ¹·™«¥«aóZkàç™Y5IÒV®Â~,giβo¹$¬zVÛ¬ŽÚ…*rs +Š“ƒÍ$Ú\m´­=3‡œ\Ô•£·¨ó«˜j¥‡ÒjTɺFh3±’ˆ¶ØÊä0ñú.¶ ¨Ö‹Õ×Y‘ƒÇÒĦé»Ûiáó0 +üø¦~æûbšáTþ\}f’òù/Ôd9óâ¡ûš{íÌv 6Û-¤­ÃþtBòÒêç8HFå:›$‹SO)*ï(µ{ãÉ<-ᜰÔê/±›¿¥‹àNbŸs"pð#×9J&FGc-†B©´îŠ5rµú¤ÙHÜÞ–óˆíVê”^1÷©‹©QZR“í“~¶|¡‡„ã»EÇ>À2îDá¬JÖà²ÚÖ~ ô?xgSH)y±oî.+äÁµç4‰´:Tðà;0bËOÎêgîaïµ-á{ÞÒí‘é¾}õNÄGAâªyaO8­þä×ø¤=/ÁgÃßÈ‘£rÿà‹å#+äë¬o¼_èÃÅÉ¿8.aPÿ×uOu†2 +Ÿüë­~å\üR¿,þ·Uù žäÇÃ)ü¢ŽO: '°´¦QMÂÝÞårpÔá] räƒ4ÞûxDzèÊÑɆ¨ä¬©ÎrZ¤öj<÷HS“©^ ;¼­jÚ–Ýe¡‹Yr†|”;)ú‚ßi)tœ4µmgr3µÆ³§¢ðøP«$çÎÎZ¤¥h¾´Jhɪؾršj*šNêÚ˳&ØŠ$ 4ºƒÏ ¤Òé2…(‰FO¢=ga²rgKR£€UäÖzMÁ+«ÚMš{:˜®n)媕Þï¼eWitúÍ&O4´HbL¯<"Ní!:’¥Ï€KVÒ)b£B-sSkƲrž»_qOV¥ Ô’i©F;5å‹ÛcÄ`Ú“"™Oš˜ÑTÓ2Ün;2ÌÍj2Ô…¸g¨•ÉqMƤ£N¦H¸Ó›PGfïï\¯ô“ÍΤ3I9A98lëQê.h95Ê2ÞñÝD ­) ºJKK2;Ìùħ7*²ŠŽTú4ãâÉ5}—¹RJ +mækƒ»Vmq-:<¦¨EC¥Te´sw)ÄKÝIdÙºVEÕsµÌDá+Æ‚§†©%Îs5ó'fö+’xªr¯ÎV§“5=VjöÛ¨¨ÃN=*ŸP–ÑÌOD^¹<•h!H2O +üg°®>º:ªÂÑ…²\äiÕoÆNÉ­J÷>xøô‰N¥8¼¯š[»O^£ÅÃ5E•; ©¹Ì¢BdLü˜UÈÉEÖ«]ËKeƊžg–qÍ–ª´žÛýU̽!‡\í[ÅåËz¾ŸAieU˜íä™1 Ôñ¹“ͶWë’w;ir s–q‚+;;;Ã6e{™)ÉÉIÎ{Ö«MÇ+}O°ÂcC6À=ü+óâ™û˜kíˆJh_…Sùqõ˜ZKÈOä¿QpçÏŠ‡îiï·1Ø0Øsl¶’·ùÑ ËK¨cì§Ñz9‡§2”Ým§uG}Æ©Ë]Ó0 ¶¥uÚ‡’ØÞ‹„žÆìý$ +2±Øø‡)µc ”y¿Q N©­=y“H>ák1îž ´fXO÷¼«Ñ´ò¿xëÊVíl’ƒÙ2APó³F,´üî¦~æûQâÞ½í.Ù›àçßTìDt z –óŠßîMŠCÒü|=ü‰7/þ¾R2¾NºÆûÅðŒ<\‘ ó‚æÿÐun•Òc ¡‹1“*vXmu*#¶.[XƵÊúnx +ª;r2o“sQÆSoÎD˜t0›žËŠÜ¥€ÌÏiÜ Ÿ(\¨\ùBå,G{ÜÂâÅÁ‡q$œ6û¯Ç$©N4¶OYh¬¬bOFij˜7' <ÑqwàÌ,v8˜¨ËsOWQà)F£¹ž±s5##>3 ‹Ï”.,f{Nár§€ ‡ ¤×Y¦mß {Ê#º.Xªiyñõ˜NV¡6ü×ê2#UZz‹aÊz߃1ØØst¶’®ƒt´žayBêrÑÄ%Ô© ++¥DdeÜ1l¢¤¬÷•Œœ]Öâe / VåÇѳKQ¸ÑñU¯Þ§Ë +ô~2pûóG±ÉÍ&±˜hÏzV}¨±†ªOTDŠä皎ÊMKqD”‘rž¡÷ÃaåZjœ5¹4—¤ùÖª©ÅÎ[¸Â0}j‘ +K[h#Yò¬õ™Ž¸äþ‹X ,(-É_·yÎÚkH<^"U^÷«³qs‰’, ò»fŒùfdÜ¥Bq;’²Wð$ê9ár‹téÏrmwž•àê¢Sœx¤FááG«€yaR2‹\_ДC#>+šŠÃÓ|Á¼s{”¢òþK¢¥ø$eœ É ÷‹à$BÒ{xTÿÑuŽÒc ¡ëfqÜ'T$kJË• ++(¼ã^’©±¦Ÿ¤úR¨á%%µ4È{0³¸nb´HÕã5Çt¶OŠü¥°Èr—*9=SFWp’ñ[n/sGAh-3 u(½ik[Ó,Ñ­`û¡0Xb:«Ó‹AZ*D&•©Nº¢¶‘ÝòUðuÉZ•«,UUhGe÷³A妟…*OyKm·"çÉë.º¢qeu-ZF}ÓÖ:8Kj3Ve7î ²µ‚ºh¦)öyQHÖ‹mRxÒ4>^òoÙ3” k­oFÝÉ 7Ыe—½ž§Ô÷2©&ƒ4¨¬dv2>#Ë(¸»=¨÷$ï­E¥@"ò!ÎSÇ\–ß™·©‚2ë•Æ®aì~ y2ç.›UjZ¡}ï‰æüºÓ¹#Ñ©½oßu.¬êy0G0®ƒ Å”„V#ʦ:¢FîZM(ö%ÔëMûûµÊÍ ì–T–ݱíDç'´¯AÄ*fÇØDJ:E*C‘¥4¦ÝlÌ”•å\^xyºuM=ižÿCÑSƒºeÆ>ÀFš[ëKm Öµ‰)+™Ÿp…ð¦æòÅ]½È¶RQWz‘zÏ4áÊwAÈÉU ªC’RZ÷“­(?ª3ÖeÄ:'Á×&¥€¢ëUVœí«‚àxÇ-4äqu:nñ†þ,Í>Œ¤¡«§ˆ‡¥£G$ +šóÕÈ*ÿÒuÇÈ2 +­v6êÚ’Á5íùJ'[Jû +Ö¦^N’½È}áƒÑô±QÉZ*K­XLmL<³S“O¨Ä“*”ÖMF¼8Z\z(‹À4Úž ô|ÔZô›5>[ã"¬Ú~ƒÁ^)¥¤íÒÁû¡Cçîi£ø>òÿoXÎ+¸ëÓ]+ÖÁû¡Aîi£ø>ñíëÅwMt¯[î…¹¦àûÇ·¬gÜ5Ò½lºæš?ƒïÞ±œWpt×Jõ°~èP{šhþ¼{zÆq]ÁÓ]+ÖÁû¡Aîi£ø>ñíëÅwMt¯[î…¹¦àûÇ·¬gÜ5Ò½lºæš?ƒïÞ±œWpt×Jõ°~èP{šhþ¼{zÆq]ÁÓ]+ÖÁû¡Aîi£ø>ñíëÅwMt¯[î…¹¦àûÇ·¬gÜ5Ò½lºæš?ƒïÞ±œWpt×Jõ°~èP{šhþ¼{zÆq]ÁÓ]+ÖÁû¡Aîi£ø>ñíëÅwMt¯[î…¹¦àûÇ·¬gÜ5Ò½lºæš?ƒïÞ±œWpt×Jõ°~èP{šhþ¼{zÆq]Ç%ŠéGùŒºæš?ƒïÞ±œWqö,Z˜öU;0ÓœKxÔî‰ò‘¡ŸäÃË2…ß൘x¾Wã+,®V]Z‚6£‰%¦eIõ¼çúÔ—"Kaxné¨+EYuÔæäîõ²J`Ú GBOGe‡Ð´Î8Ñ"°¨=82¸)å‹&ê„âëTæ®ÊÎï¡%ÖlEÈcÂ|"r5Ó“ÆaÖ§ïÒÜøžµÈÎRª‘XjÏZ÷­ïê#¨ñÓÑÀ ƒ“Ü #OB4M1[27œâ·!wLnäµM+]&­N/Æp×yE§¡£é7¶OÞ¯ºNš|)‘Ú‹†ÚI%$\„:ƒ …† +5edÄb%ZnswmÝ•£ ø€7¤“cœKOßD¢.CÄ3_e$ÔØ-Nm’nœIrËX‚Ò¼œÂãü´|v>ò[Gé¼FÉI¥Ãj1ĺÝ*=ÿ!³?³¨kOÁ¦àûÉÕËœgÜy5Ò‹ó?t(SÜÓGð}ãÛÖ3Šî8鮕ë`ýР÷4ÑüxöõŒâ»ƒ¦ºW­ƒ÷BƒÜÓGð}ãÛÖ3Šîšé^¶Ý +sMÁ÷oXÎ+¸:k¥zØ?t(=Í4Þ=½c8®à鮕ë`ýР÷4ÑüxöõŒâ»ƒ¦ºW­ƒ÷BƒÜÓGð}ãÛÖ3Šîšé^¶Ý +sMÁ÷oXÎ+¸:k¥zØ?t(=Í4Þ=½c8®à鮕ë`ýР÷4ÑüxöõŒâ»ƒ¦ºW­ƒ÷BƒÜÓGð}ãÛÖ3Šîšé^¶Ý +sMÁ÷oXÎ+¸:k¥zØ?t(=Í4Þ=½c8®à鮕ë`ýР÷4ÑüxöõŒâ»ƒ¦ºW­ƒ÷BƒÜÓGð}ãÛÖ3Šîšé^¶Ý +sMÁ÷oXÎ+¸:k¥zØ?t(=Í4Þ=½c8®ã²1U-Gn–Ý +sMÁ÷oXÎ+¸ú+TJf‘Nf§«uBtÞ">E«g0žÑ|”Áà]éA_‹Öþ’ÊV)Z¤¸-Höp¶u×÷Ô§YÝJUÌÌÏ”Ìl–! Q†)…´¸ˆT!Jó"ÕÈ*ÿÓuà ¡K&9O2‰Sn$”…’ˆÊädbÊ”ÔÓŒ•ÓÜ] ¸;­M)ù*v„·jTÄ)ÈŠ3RÐEsjÿçþ\rXFñ8ex=moáÅÉnVG•ÎÓ[Ã0Hò£} ëàI¸ÒQ6ÒMÐeº¼e¨‹¹Lm|—ä­m-VÑÕ糧ÿY§tõ= Ë\žÈ“‡aøxjP¡¶IBˆÏGÆf:oDèªX +*%d—¥õž¤tLeGR£Öû—Qî #Ë—ž¾ >­áF¥_€( {;'­¹3 Ä<›7: Ž¦ÍúPXSfý(,©³~”ÔÙ¿J êlߥ€u6oÒ‚À:›7éA`M›ô °¦ÍúPXSfý(,©³~”ÔÙ¿J êlߥ€u6oÒ‚À:›7éA`M›ô °>ÍdÝ¢?: ד¶‰D{˜X—„Û‹£d/ø±ÊHˆ­aPz7M¬ÿÔuã ¡Àæ¦ÉG¬€ÃB‹`àtÖÏèHÇCíHt1¾Ô€CíHt1¾Ô€CíHt1¾Ô€CíHt1¾Ô€CíHt1¾Ô€CíHt1¾Ô€CíHt1¾Ô€CíHt1¾Ô€C[âI;¢ èHRQÒ›X€MÌ€æ@ tq´º•!i%%Ec#+‘¶QRVzÑXÉÅÝ·(™ÝÚ… JÖ¥Çâ>ê~!㜯ðqÎ^¾ YípãØzg'9k–Ô±]Š_|Œ’c; Ųûjmi;)*+ñ*ô'JNM5µ=§¨R«‹4]ÓÞ€øŸ@*•ÁðrS,ÛMÔ¦üª"mˆ¯äá'Ø™‹[JŸ¿’^“ÇÓc‘™É%j²u˜Ø°¼€Ò5µä·ÊiùS„§öWìW<·±ÌÎÈKŽ)¿Oáüb¥ïçÞȪ¼¸ ½ìdþƒÍs •æqLÓÝV±1GÁ2û:½È©ËÏ6ì£{>¯;Ž”÷ÎâF +°Ëlåô“åÍmÑGÁ8öame³ðŒÊ~ 01ZÜŸ¤Ç—-±/t{ŽÝ?Kô†ýñ¹–ð]å¾Ý1=]ÀxúaþPoß~ p-}—x\µÄõwxòQ ”w5 Iø+Â=“—Ð}ãËšûâŠâÊËÄïð† ôß¼¨×j2©òî_eÞW·!«D”ˉå=F"q ++¯'R/µ4gÒåÕ'ï¢×a곋ioŠFui4‚Äø8ÒöEK²_p“£Êü$ö¶»Që±Q‹$’m¾…_e”C\År{CÊS’ô}âb†•¡WÞÍ?IXFG¬µˆ‰AÇSV3Ô“Ør,*¯¨…ReÀ$›‰VܹéTxddzÊËp»…ÉÝÉ?õ±íU¯xSúdi| å}<p¥ãOèD¿¤QâPã7)i¤ˆˆ¶÷Oº:€¥„¦©RJ1\ÆcjbfêTwlôÆaŠÀ|M‚VÒ| +â Ç¡­ö¤:ßj@¡ö¤:ßj@¡ö¤:ßj@¡ö¤:ßj@¡ö¤:ßj@¡ö¤:ßj@¡ö¤:ßj@¡ö¤:ßj@¡ö¤ã¡¨#Ô’}Ñ â BYJx€´ndÿÕuã  ã›Ò±‚§[Üd[‚ò +Ç~ï(ÔùEÈü6”æ²Ït–ßÃ6- ÊZøh»Ç|^Â%âì›UðšÔ§Y7£ñ<Ù\­ÝäÊEâ´knK4<å­zx»¡ùM‡Ç+EÚ^kÚcá¨:©D‚ºŒˆ¹LìCëF„ê¼°M¾ \²uäìºË~n)§Â¹ºj.$k¦Œð}ŽÅkqȸËïî7•Xj“Ìú‹Jf=qW(ÑÉ?T³¹øÿ£¼Іºór|¤j¸¾\Ô–ªQK­ëeµ+T%Ÿ +Bˆ¯{'Q ×ÉLÞSkWI­âtö&·¾›ôjáŠ8§´ªvØzq«Sb[r’²¶Â½ËßX½…ÄyJq~„gaô­z>òmzKŽ:˜Í‰öÒéj×°Æ›¤<à«k¦ÜVµÜÍ‹ ËLE=SJK¹—\,iM‰Í&êµ—„hzOÁŽ.Ý&¦»™´`ùg‡©ªw‹ïEÒÄ–¤§I§²åIÜhXÝ[ +òÕ‹j6Œ>.ezrO±Ÿa‚d€ߠ኎%y,@Œ§ ÎÆ«pSß1/¢t#HO%·×¹zHý!¥(á#š¬’êÞý¦Á…CЕS2•$¬d‹yš½Æ=Ó“>(àíWãχد¾yNåµLMáCÅìÎB[I%$DE¨ˆ¶ôÈÅ%dh®M»³°©@ÿÖuã  |Üi$Ðâ I=FJ+‘ó¶pRVj묺3qwZˆ½– +.Ãl=:uMºcæFdÚ ”k>ãe¬hZgÁ–H7*+$Ÿ{Ün/—U°‰F¯½¤—”È’´S¸V3"S…¢f\º#_Ñþ›,Ë„vw“˜Ÿ±ª­AYñ‘iάL¨Þ}F]©‹À=Gh<6 e£ºí¯¼Õ±zN¶%Þ¤›ôê<Ñ*`œLiÄQ-—Tƒ.CØœ:ñËR*K­&}¨âgIÞ §ÔË®.PWˆ§h­%DZCBÒ~ (bõá¯ýÚ0|»žU{I}$—ÈÔÌ Žœ"™Z$Ê#ÕÒÜŒûÆ{y‡ÃDøXwŸóuGaM#áÕñpÊÝoi;i”¸t¦Ì&ÓdEbA_œ¶LÂ`©a¢¡J*)nJƇ‰ÅÔ¯,Õmñg¢2Œpÿ×uã  Þĸª•ƒá9P«Ín+#3RÔDgn".3›“²-”’ÖÅé•|ò¦Ô·j~g{3­'1»Š/¨..þÑ/‡Ñ©kŸqƒWº$!«Öç×ä.]F[’^YÜÖâGï‰HÁEYnMí<²3-d*Põ#V$Ʊô‹‘ZÆ%l :›Wq•K8lg½´»¨4)k!WD5ï]É*ZU?|i™¬H+¡ÔŸ=ŒGTÂNQ!O ìePÇ>çT@'mkY'¾cë +2žÄ|§Z1ÚÏ!úüfºÓ5ŸpgÒÑS–ÝF ])ìÖxRkò¹"Í—so„IÑÑ”á·YWHÎ{5#Ž)ÓºÔj>é‰Å-HÁ”›ÚrÓ«aiqµš“¹)'c#î +Ø¡'²[F'Àkj-AêSÊÄm¼~h„ýBþ5𞵩™ñ.;uŒ£&¹bÙPŒNÒ¦>Ew#8d—QÍÆ]Òµ°ò¦õ’ê©ì2¨øPÿÐuã  ×-ÄQ2VÂⴴͪ¨B:äŽë†[;ÛFf*HøU® *Ì e:¿”™Ë›Xš· +ç¹²FdÓeÈ”ìÔhFš²#*TrÚcÑö>`rFe°P©ZÍFKcʶ­FwÙߘhOjGÚ‰Çcg¦Þ#ž½)V½¶°ÂžŠ¦öj2á¤æ¶ë=ñ+Fg¦Ñ‘qXî1g¡ÞæeCK-è¬Ez’FkQ&Â1墪-–2#¤é½·*ú'Ä{áø¯¬|ªÜ}–:›ÞU!öÜ"R\I‘ýQ“ÃMngÑb`÷£®ùgfêŸ y‰p}ÅÜôx®ðß-zb|$)Ì˃î+ÎÇŠ’Ñ~TO„ƒ™—Ü9ØñGruµÉÄÛÙ¹aæ÷2׈‚ÞŠ^‰E#Ñ9.ù¢ÁT{™óxÚkyðUni7on4•È}££*½ÇÆZJš(\ÄŒƒj3¾«ìÐòÞÏ„´´w"…ÜHâŒ÷6‰%n3¾±• µÜÆž•“Ø1êÄ·îFé‘XÉ:†e<8lF%LeImgž¥©gu(Ìû§q”’[ fÛ: +”Õ£VçáéMM§Jr3í).6£I‘—x[()+2å&µ¡Žä;;XõÅG¢âõ¥‰J²™±·aù ùD.+G¸ë‡qŸG}R'KN¡ô%ÆÖKBˆ*IÜŒŒŒE™§ÐÿÑuª; ‚‡R;m0G4ë ÄÞpµè…. +R‹j Vàç}ŸhapuT³í .›ìûC €ßgÚ\û>ÐÂà7Ùö†¾Ï´0¸ ö}¡…Ào³í .}ŸhapìûC €ßgÚ\û>ÐÂà7Ùö†¾Ï´0¸ ö}¡…ÁÎú3ú ƒ“”i-#líËmApvD´+ŒR‡R½†åDú+Î#9¦°a?‡ðÛ‰v¤diyò;¥‹í"åWâ , ?-†%|F]HX5 +„š¬‡eKyO<êKZÎê3>é‰Õµ"5»”B¥ç`¡P¹ò……ÂæaasR€rFdddv2¤ÍÍó9ÉX5ÆhXÕH¦,É-<£ºã™êÛÆŸÄ˜Ì +Ÿ¦] F]LhÐgG©ÇfTWRë/$–…¤îJIì21Õµ2E;•b…@ÑWØ D[LñSŠ#±Ìò7ÜIØÒb—;èËè Và7Ùö†EK;õ†]ö}¡…Ào³í .}ŸhapìûC €ßgÚ\û>ÐÂà7Ùö†¾Ï´0¸ ö}¡…Ào³í .}ŸhapìûC €ßgÚ\û>ÐÂàä¥ý…Á¦h[I›ò•€dÉB­cU%D­€ ÀÿÒuÆ2 +¯Ü‹¸^9tξtÒ¨89Òm,)M½:Ä¥)e©DÝõñ‰|&MfŸq[ïh¦¡”MTyR%Wç8⶙Ép½â2!)1[î0ÝF÷”]8W½Z›î§~P¯5 ¸¦wÄ:p¯zµ7ÝNü æ£Áw ïˆtá^õjoºùAÍG‚îßé½êÔßu;òƒšÜ3¾!Ó…{Õ©¾êwå5 ¸g|C§ +÷«S}ÔïÊj<pÎø‡NïV¦û©ß”Ôx.áñœ+Þ­M÷S¿(9¨ð]Ã;â8W½Z›î§~PsQໆwÄ:p¯zµ7ÝNü æ£Áw ïˆtá^õjoºùAÍG‚îßé½êÔßu;òƒšÜ3¾!Ó…{Õ©¾êwå5 ¸g|C§ +÷«S}ÔïÊj<pÎø‡NïV¦û©ß”Ôx.áñœ+Þ­M÷S¿(9¨ð]Ã;â8W½Z›î§~PsQໆwÄ:p¯zµ7ÝNü æ£Áw ï‰íв¥‹pä„Ɉ&!i;ÙO­i>úTfF-žÔÒ.I-ãÈV_º¦ErH’Í^"tס©-ªIq(¸ÈAã0|Öµ°‘Ã×Ï©í%%.¢‰$F•\`™%ÊG¤@Àyœæ_“!¯Ñ^#ªÉI“‹IþK¶ÚˆHàp™Þg°ÄÄWË©mL‰Jqo<³[‹3R”£¹™žÓ3ÉX>"¥M ØssËc Wd©²IaÕ÷ºÕ°®B~ðŒÇa3,ÑÚfa«ÛScn%ä¥hQ)*"22;‘‘ñˆ"HîêvZاÁÂ4é•z›Û”X­›‹WÛbK”ÌõºrvE²–Uv*ü¦çSŠñ”—™¤Ë]*Ÿs$!ƒÑuIâ5¯n¾àŸ¡£á¯[#*be-šŒ¼g_qF¥V晞³=ôïÊ|Ôx.ããñ:ôá^õjoºùAÍG‚î)ñœ+Þ­M÷S¿(9¨ð]Ã;â8W½Z›î§~PsQໆwÄ:p¯zµ7ÝNü æ£Áw ïˆtá^õjoºùAÍG‚îßé½êÔßu;òƒšÜ3¾!Ó…{Õ©¾êwå5 ¸g|C§ +÷«S}ÔïÊj<pÎø‡NïV¦û©ß”Ôx.áñœ+Þ­M÷S¿(9¨ð]Ã;â8W½Z›î§~PsQໆwÄ:p¯zµ7ÝNü æ£Áw ïˆtá^õjoºùAÍG‚îßé½êÔßu;òƒšÜ3¾!Ó…{Õ©¾êwå5 ¸g|C§ +÷«S}ÔïÊj<pÎø‡NïV¦û©ß”Ôx.áñœ+Þ­M÷S¿(9¨ð]Ã;âd\ —Ìcä´¶jïJŒJ#\i+7[Yq— +æ\Æ>5ppšØ}!^QæO2¡ÑâÖ¢«Ay›Í^æËŵÜã.Rýz.œ²²R•E5s1A˜—H'{‰ô=PÿÓu«;È(bìªbh8OÎ`ìë^4"”Z7÷ÇÖ„sM.³çUÚ-ˆÕkSŠRÔwRŒÌÌö™˜Úˆc¨©@”23\zŒ¨RU‰rÊË•ðL½ñ‹†h5Ô}hÊÒCTÃuËHy‹ùÛŠG€ì5tL™ºÛ«db ­å—)‘r[‡%Õ2T…·³=ktËW1m1‘† êJÇÊ­LŠâO¯W&bIòªSÞ7dHZ–µ(ï¬ÏñÍ(«""R»»´|Ý+u¶Y‘«M&¤Hr,uªI>ê8‘«]øãÕg{^ÖÜ9®êÉÚå k7ÜCGi—7Ì)RÓÒfAàú¶%Ã;Bž22ikÖ›Ov¢éáåß ]oÖ{ÔŒ„J£ÕhjaÔ©’*MÂ|⽺Vg­ +2ø8Å'mi¸¶¯Ô‹*Ðq‹|¿¥˜ËáEHÆ•?F­SÜ¢âáØ‹˜_„¨åMJ\.Ëñ‘P›Hºj¹Ä4÷ ·è³·Ô­åx®é“R8гⰶž22vÙ©µ}éß“[ÕöEÜß7¶n:…*³*²Ü&¤°öšF“ÒmGÄd{GÁã3N6ºYdß]¤(eŒœ·eô\ÂÐr9_©1%øÉmͤšY —Â7ÔfW/©Õ´d¬T^_Á&×bÖ|ªQqrOìmNÃÓ«ä6±Kz Ô)ò•"NôVã)'¸»ÆN^Ö"åØ)OqØÝíªÈN‹Šìi[~²ï fõ%zD*pdS&MÞ®<Ã÷Nš5©»‘uÇÄ-XÄî¬ï•µÖ'A¥}ZšOªç×ä‘T´bx”ˆ1&¶ÅUˆ¬ICêSí·Ñh“°þ¨Ï`øáñ.jºnýŽÇÞ½%+lI>ÂÖªæýˆ)‰lÑ*“ßLÃ},=¦qž{RRé[V½CïO4–ûÙîv>2 Òo…›[Ê|iŠæ +§M©?2¤Ay,JDg‰kejÙ¤\WÓÇFM-zö=Å^«õ+Û}‹{äºv9Žô¦gÆÓn¡’T§‰·±)NÓð½Zªß~Æ*÷ê/ +~o†Zªå"d(I¦Knëþ‚wG I:'mdcãÓ#hµöôWA¦×›ì:Ó³~¯ª¥R‰9葦<ËO>ûÄ––§L)B¸ô‹`¬1‘i=zÛVß«iIPiµÁ^û¬ön_0œ ‹dÒ©Ì%–Zb9è î% FGÝ1f³©ߜϦ&š†[oŠfÆ).³VÄNDwRÍFm92’\D¶Ž×N•†¥#7-vv«ï¤#_BDÉæ²$i +ƒÿÔunu¦2 +.+üƒ1Y_õ@çâûá|¢í>UýëÞ¦7Y«S :£J$¾ÓJ4í"ZˆŽÃiD$åerOâ{QÚŠñ·º›Gך¬«i$b¬bN ´ó^öú …‡»•µY'¬Ç¸Ë&uZDƒzk”ë1ÐrI&½ÝÄ‘’Döªú»ƒíFº–¦ÕÛv·|çNÊërMúJX¹Æs˜Ã8zJœ†­Ód–‚­}g¬íÄW1WŠ‚W¾¢œÔ¯kpúK2£T¨µH‹Ç'8æ↸fæÍû)&³nµýÎK+³/SÈÞ4)ÅL<=$¥îfîäd’2AG±kå1ñX¨5{êGÑÑ’ÔÖÒâ¢d•î†ckŒ?}†]mƒ"+›Š¶¾R¶Ë\R´\5ÞV>”¨^MKWŠÙeÕòeŠh4ÔUêY B^“ËIhðõ¦äGr¿ȇۤC6[ë>J›k2ZŠL-€16) +¡ÒžšQôwSlŠÈÒÔW32Ú/©QC\µ\²*îÈ÷ê™ÆÔX²æÍÃ’™b!]å©%d)‘íÝØ>+MïZϯ1.œþK±\ZQVÝ¡ÈLA9»šJÚ±V½íÝ°½â ¥•½e±¦ä®Œ‘€ò U¬À«U«”ùPá3MzdW¬’'’ºHÊ÷±÷‡Ã‹TÖ§®é[µ—á躒\zû\ÉŽ)f”UÅÑ$&Ÿ Nnæ’¶ìU¯{wl29ø)eo]Ïœi¹+£#c<†TãÕc@ÂðdÔtø’ÞW€§ÐJ2¹™ÓÔ1éâ½ömV“HúÊ—‹¶µ¤ÂuB‘9ÊdÈŽ31µ“jeIá’ÏQ†U9©«ÇYñ© RÔ^U\‘c É@ËN¸ÛHR‰={jNÆv3⽇Î8˜7•=x¹Ò’Y­¨â½’,c†"*uSÉ+Jâ’FD¥l#"32¿G <©ëe]%{l/Ú~Bjð¦%Ä‚˜*ƒ—¢‰$—4ÔEÂ+™–£î|b‹Œbîܬ˨Ðr»{[1nO=Ð?s±¾Ü†Ezû=¨e˜^Mê“‹KõRïÕ˜Ô‰²ORœ3iÂà\Däƒ;k0‚Χ)ŠÇ±ø5@¥™°ÙðTáuêðê†H]ídV&¦gn^æ0Û±l¼[§Öa¬ÒägR£">¹7á9Zjq³/„²»K +âøª‘O«DQ)©l¡Ô™}Qk.cµHevdÌeur֮ࣙzŠÒ¦a¯ÜÌŸµ!-¢¶³¸^Âh3¾F1d<+)ú‰C‘&–ãQTJ4­NšŠÄ“N»Œ\là’×ã'è>ØV£Q7²ÏÔzY*ƬTÅT\I^SX€QØ™1Ÿ†Ö…é‘(ÌÌÈŒ[‹¡x,‹Z’vâV…\³¼¶Y®Ë™vvPpÅ2ƒ7 Ç®1%P°áÁD”i$H[šf†ÌÊça‰Z”êIÎÖ¼á«}’Ú}¨ÉS´oö3׺ïb,Œ)èph:ŠýM¤=O¬;"R Îí4v²•«`Ê6ê¹næÚôð1Sú“[ó§è±uÐñÖu8…Š½E§"ËÄÌÊÜîgºF+Ý{:Ý—ñ£5vZÔeè{ŒÊÕS”Ýö¨úuë/ú†Pðæð…ìYJszW˜˜ÓQ6›DB;¬’ÒQ\>TèË4dÓ÷²M¾-zŠU”\d“Vn-.ÆF:>6¥Ñr­ÓÝK´ôÔÜwuI\·5(È–EÈW¸ÎÃÒ|ÆG©¸µé>Ù)T̵¤Óî$$¼®R¨é‡#ÓçGr¬©*n›KL¨”D㪱™ik!…K åªÍx]½W| Šµ–¶ï(»oÔﬢ£âŒ!€bDBqlZ’œÄTVQôÏsŽdes¹m+ë¨Nn1jÖ„£~¶[RQñå|âÒß©•ðq®ÀŸq¼S¦¹8‰DbQš#¬Õs;‘kN–±ó)Ï$ZjÐ’o­­EÕªFóš{\]YQ':ôõ BÕTæUVû›¬Øf)ÜËu#"×sÖEÄ2(º™r%kA«¾;¬|«¸É¹ßl–¥¶ÛÌŸ^Ê¡Ô6ŸÅTÉ+§âK&¡6m¡¸†vN‰Jæ’ëhøÑ¥,éÙûÆ›|l}*Í8N)­n-.¤ýgˆyAÃ8MÌDûuȳ÷|E +¤ÒX5­f«‘kO­*2jœZjÊIúw•¯Q76žØ«wìø» á«’YÄñj¬C”„5¥xÌ!ÍÑJvå¨Ë`R¥;B [&k½ÛB­H·:—÷Ѳ[÷%Æô9”Œ§°ÕM¥¹R©2ô4‘Þm&wRul!Zt$£M[cwêÔ*U‹œÝöÁ%Ú|òˆpõ‡-kªÀ¦ÖS5…›ÓÚÝ/:ÔL•Œ´½ñ•‹Œœ£kµ®émê1(ÛƾÛ+_gYzeKáÊŒTˆUØò×>·N˜Ñ6gu4†È–«X­¢{F.Œ¢éÝ[+ý/Q—Z¢jzöÁ%Úzø»á<|šõ±4X$©4ÙŒÊwKrt™l’âȯ¤VÔ-£Fpq¶Jz·Ù½L¶UNé$dâFĵr‘QK‘úR`*|²m&ekØÕïˆÙÃÄž¯Æ«ÖdS–º"~¦S̘õ:Ö)~{+ò( 0Ê +BL”½Ì’M“w¹(¸.jÉÁûçQ?¦÷ñ²J;}¶g´¢}ê–!ÄH©³Ðxm¦˜o|¦Æ¤¶’4zZ&GÄ>uVXJ^78Ÿ£6Ò´¼iAÇbƒO¶Å+ÄM7MRO€t÷¨ Ç)®Î]ÕÀ"6’ÂNIJ>à¹Áæq“wu/dºöÜ­ j‹[£ÝÅ”º““‘&ò©ÆvFÝàœ­ÁóÑl¼Õ§IDWG®_Þëê’³à[xªÞfÎ:ö/)° uK&¬-Èë‘—)NÖÍôt‹Lµ£eÆ~mÃ_Õ~³«g«mº‰VŒˆ”jü$3¦›ªÒÞeõN'ß–ÒN“ËÒQÛ¼B6œ¯(7ÆWVÔŒ»$¦–»ÃS¾ÒÈ‘‰£tO)®Nž—£"e1hJ%$Ò‡S}3×bä\<- +|sËÔÏWyÉ/‹_pïŽbT#R2±Q“SeÚ}Q¸îSÐRR½4]6ÑF‘™XµZÃã Q§¼eS^®Óë{ÎROÅtõ}ˆI“ÏDôÜìo·!5_Þ¾Â>žÔ1Œ+óÞ¡û™wíÌjDÙ+h^vžap.€r½‹ áÕWJËm…%¿f²Ñ/Ål=<òHùÕ–XÜF2d.[ξ괖┵ñšŽæ6”¬C3à*P4ŒÊñªªøvmåÝtçtš#?Ênk·1ˆ-'JÒÍÄ’ÂNêÄ׆` + +‡˜ygó¯ þæ¤ý¡ mµ˜8ÝÂüDxä¸V¡Œ§•6˜Ù8ù¶ã–3±h¶%{ÂÊ“P‹“ØŠÅ]¨­îÇIøytú|ië–Âç]hØJîófÙØÍiâ#âU.íÔ÷eÔßbÞBÀ]87 MÇhÔzy ¤?¦iÝE<šŽçÞ!eIä‹“Ü®Ukiqv8¡a +Ž#¬&…äµ-m’ob3EﯘQÔJ9÷ZåÒƒR˾öô–ô¨Ë†óÌ8V[KR_T“2?|…Ñ–eu¼¤£•Ùî>I-#"Ùs°¹+–¶{X‚ˆt [Ôå1'Ìн8ëÓG ¯kò—²ÍßbùFÖëG4úÔ ÏœRØh¢ ÚqvqÍ#·;ÒâÇ«V4ÚTkYé V«™ȶYb%(Êkìcú[ÖÉ.i&“Ù9·èKR<Ì +&1¥ÑqUb“¢ì±WSm&2[KçM™¶DDz'ÜLKts(=±ŽûÚîÍŸ:?U¶uömz-{ÿ"ÅÕZMn©@¦ÃKP¦:SŠV[MmpØIYJFÄêÖ>Õ2RŒ’oduvýòÕš£JËß>­›ŒéH©± àê…% )U*MCw|á!…˜‰:WÉñPú^¶(®sT·ÕBØqS+â*Å&"j?SeÄd6‡ši£RMM‘Xìz¯au©gQz¹«íßsçg¶e²ª^‹l>f]Ê 7 Ö•MßìUjlšÕ(e1ØI™‚áKYí0ŸÔ¥µÙÓMïÖ}}újËTÒEãªeF£“ê¼MŸqú“.JL4ÅÝ ªÅ ’-EÄ>Nñζ'Jö½÷¡+5*ª[>‚0æýW‘KÊ‹IcCÍß”…é •«„z®Z¹„…e|;ùú zº«¯–½fFĸ¶\,s¦Ár¡S¯MˆãÎÄoKs¹‘%:µ_”cR¢¥8C]¹´öï¹õu,ªIíS²ì±~W)Pæ“Pj#“)°b:LF€–ÛŠ£4ìzÚKQ‘ëÖ>yÛœeùD®ÞÝ{,]h´÷ÓnÞ·;b¹°\ [T§ÒᆇÒÑ»µ¥«E¤d“+\ÅUäãÞº• º1YoÂ’~“á^ ÒÎN+}4ØÈS­a÷Ì’ÊI)[ËN™¤­«KŒˆ_Aµ•_eY¯E›yøÑOÓsí‰÷Ž+‘”*Ú\¡Ò¤À(ªf2kI(Íi"3¹±ñ¡us»»›[wkÔ}*»fŽîi?N­g™Š%°r•F]#pèÑ£ ZJä^xEuimÚ ·ÔmÝÔׯè±XÅ)8-œÛõm æ0«®·Pß+¥µN=ɤn  Ðž +H´¬|jÚbb”2ß]õ¿ýF åtµl]ýe¬>§Ì7¯ž5ïÝ5ßÅ!¥=ç¤ËÁûïA;ruÖ7Þ/€@’dˆ_œ0¨?ÿ×uOu†2 +ó-¾ƒñWîAÏÅ!÷ÂùEÚ|«ûÖ&´ÀÏù ¡PêLc õºZj¥ÓJK-)f‚Ý vÖiÖ11Õ œv¹%Þ}ð°SŸô"A+`Z´ºe1œ&ÔuVhOT÷d¾³82&ÈõZå®ã­J‘Sñ½ã¦çÚŽYdm{û®ËPòC„i´Zl:“’äÚS’×5ÉF™h|È͆ËQ§U…ØŒLóK-üV¬’ÔøÜP¥E½ííá°ú±€0QȤáÃÃm©éÔg®~ê²q/6…()Ù®ÚÅ*ן$í‘ÇWm…EdM_3’îektº6<¢dÎ.ŽËL3_Z›R‰z®jB~¸e¬V¬œ*NwÙíÛ³¸¥5zjj5ºxø#àÜ¡³Òò ²ÝF\1[qF‡Ú HUÕ¬•«X­ZÓ¤µ»Þ ö4R1ŒÛIZÓŠíLñðM#âçkN1†¡³-‰MÆ +L—ËŒ¥FKR\=FéÛQ\])TQ‹»wÖíµjÕ`ÔsÉZÖÙ}^óå +˯ÒD“r&$㛎–‹,ÛZ ¸î{}ðÒ”ã_úø­5mÊÅ÷’ìGOgÕh5ã›L6c.5Wˆ‹’FÆܱ‘™ +âé¹J.6º½“ØÏžYs_cJímEù‰rróŒb©¸’j++E‹"•97N“:Z)3-·"Ôwn¾U⬯œJK´É;µwxä“^ƒÑ“ì!G§9U™AD†#ÔM£Z’K§4MFe¯_úâkÉ9$ÿ(®Æ‹0´”ã ïRoÐ}£`¹+/!QdaõT“OÝU Ûès@ì­º&>ujΞh^íN)>©"”c™ek]Në°¡“\)QL\^Ttµ  oT\¥¥ÅnjyµhiuÚ&zÌV­yÒÍÝÞ)?”]Jš«•ì¾kþý= ?“ìW=‡’ˆ’h³e¹OKªÐKñ•b4¨õ‘W­:Y¡{´ágÛ´­ +q«•ÚÞ4“ô+žmQêÙ3«îb,V]­DhšCŽ'LìJ#3½ÓÄ.s´Ó“û#ç‰F£Kb‰îÍÈåT«Ôˆ0´fÀ¨ÓU§¦¥(Ẅî„w3Õqe,KŠŒÞËÍ?FÂùÓNñ[\"×nò®&L0Ki“SE2 +âJ«; —)M1Ùà)MÛ®YÌYDÚŠmë‹–¥¯«Ð]:QNVû—VÍl„øò‘ +…ˆ*Ð)ϱX´²²;ÝÕ¬Iaj9Á9m>˜(ɨì-c—–O=Ð?s±¾Ü‡Ê¿½}…ôö¢ñsñ 96Á˜Š·{ur4éL¯B5ËI·T“¶¾R†blËTÏÆ®är" +f¯Å²ÝÎî|ÖÜ‹zM_Ü_t3 5·"Þ“W÷Ý èÍmÈ·¤ÕýÅ÷C:ó[r-é5q}Ð΀|ÖÜ‹zM_Ü_t3 5·"Þ“W÷Ý èÍmÈ·¤ÕýÅ÷C:ó[r-é5q}Ð΀|ÖÜ‹zM_Ü_t3 5·"Þ“W÷Ý èÍmÈ·¤ÕýÅ÷C:ó[r-é5q}Ð΀|ÖÜ‹zM_Ü_t3 5·"Þ“W÷Ý èÍmÈ·¤ÕýÅ÷C:ÊþvØ;9ö©ý(¦Z[¥©{¹Jgrá8Z´uõ ­®ìÀÆî0h™0 Õƒ3|ÇY@¦·V¡Ñ•&"Ô¤¥ÂZJ溌cÖÅB›´™ô§MÏaužhÙQ/Ìq^ØŒ|}‘¥Äútið0¾1ÀµÌ7xW©ÎC~×$¸Z”\¤{ dQÄF¢¼]Ë*Q”6–û ”(™Ř‹ÉÅP)†í*6éº?¤DIÜúí[u…lLi5;7kzO­*2©ïNzâΖOô0úIÒ9Ek^Û6íž&’ƒzßÝ)N›šr[þ€¬äoP0ü|Q:˜mÒß$oé‘’öjÚ>núÊ”¥Ëa‹†Aò©Òò/\‹Œ+DéÀ§i.A27 Và§hÃÇù6}ðÏÇD¢ù­¹ôš¿¸¾èÖ3¢\>knE½&¯î/ºÐšÛ‘oI«û‹î†tæ¶ä[Òjþâû¡ù­¹ôš¿¸¾èg@>knE½&¯î/ºÐšÛ‘oI«û‹î†tæ¶ä[Òjþâû¡ù­¹ôš¿¸¾èg@>knE½&¯î/ºÐšÛ‘oI«û‹î†tæ¶ä[Òjþâû¡ù­¹ôš¿¸¾èg@>knE½&¯î/ºÐšÛ‘oI«û‹î†tæ¶ä[Òjþâû¡–WãYò0òtRÍ_Ü_t3 YYËÆÎaüG†S!1Q–Á”†÷5é¥}WØ&4K»f7qÄÙ´wÜŠëo4£JÛQ)*-¤dw#ì¹~OÊž'©W#â9WRŽÚmýW$ ´I6ÙkxGÆ#ÒZžÓé*ŽV¾í…ḏbÉÕUG*ªLˆD¢`Д¡%uÅ¢DE¯V±l0Ðì¶í+:²•¯¹ßÒ}Ë6.v¨Å`êª),´¦Qd$M«jt´l|z‚8X$Õ¶í­'n­…SÙsÆoɧËUX÷X³ŒdÚ sÓ+(ˆˆ­cäØ(°WÕµYö UoÐïé<Ões)Èn¦¦¤*#îÉgA)I%Ǻ󱬮2Ø.Ž+vëzª·ßIõ™–©™%Á$X£î|€!3zùã^ýÓ]üRšSÞzL¼¾ô·']c}âø &H…ùÁs +ƒÿÐuOu†2 +ó-¾ƒñWîAÏÅ!÷ÂùEÚ|«ûÖ&´À½ð–9—„"×"Fe&­z:k½Ò-+¦Ücã^Š¨’{š}ÇÒ•G f\ï/X¹q«Å›Jœ˜ŒéÔÇ)‘ÞÊii4š»¬|ç…RÏø6¯è©—/à/oIPÆ]ª-ÓXˆå&Ó#Å\6* Ôûl/èJúµÃ©„RmÝ«Úë‹á]Ǯ͵ÕsàÖ\ªíT©ÕMèÁ» +šºbïe6¤šMGõZÂXHµ%çµAHÖk/à/oIÞ“—J­C„ÌÆíÕ®4•›ššÛ2ØiUõ‹§†R““ß5¹¢Š«J߂̺™êpÕ8’iÎShð G†ãïV DÛ>“J–«ë¾½CåГM6Ýã—±¼CܾÉ7ÖÑla ®IÂìNˆý"%J4™%,š’“ó7ÈîJJ“cæiáÓQ³³Š²gÏœÖÛû-¨­ÄF‰‹¨õ÷êÑZ]f|Ö]iÔ¶dm4„ØÒJív‡Î8l™Tv+ß®çן͙˂KªÇ•‚r¨þ¦Ë¢Ê¤Ä«S¤8—Ž4Ä™¥§bÒi221õ­EM§±­sË~j.ÔgYUNdÉTØr!Ɉˆ'NZL£¡„kJRDwÔ>= +9ZmÝ»ß}ϧ>îšÔ’jÛ¬ö™3åþ5E8šmf>9·DDPM*Ü_$¹rnÝáñÄ`ü]WmÍ7ÇfÓíBºÎ“Ô’—ÒQà<ºG“'O¬13MÑŽ +q‘ïu÷$–Ý{LW„ñ,®Ûœ[{ÿ>t«xërŒenÖcCËå]5vgµOŠÜ6¡ªSR“ÞÇ[Pe·Yë¸ût8´Ôµæiß~­…®³ºqÕ–ÿNЗ—º«ËqéÑbÄè{´Öb4J&™iÓºQGƒM;¶Ûiß³atq.-YZ×ÕÖËo +eNV¡Ï :<ÈÒŸnIÄzM:ÙÝ*M¸ÇÚ­î2½œvK-ÿµ—U8jýÕñ,h씊”mìëg}- QwKiŒ°QtÝ=Íßé>ª»SSßcÉÂùg›@‚tùt¨•FÑ)S#œ¤™›«Y©6Û¯ˆÇÒ¦JÍ;4­uÀ²5u»ëMÝ®³Öj¯×gJ¨I¶ë!Å8½±]G}DCëNš‚Q[ŠT››»<Áô>eå“ÏDôÜìo·!ò¯ï_a}=¨œX'XVuj¦¹rœê•)óR— ¥™¸fffiã’DÙ&è¹"Àëm:X>{6ÓØù¶ÐYÀž³hÿ…Ñþ@XQÜ ë6ø]ä€uÀž³hÿ…Ñþ@XQÜ ë6ø]ä€uÀž³hÿ…Ñþ@XQÜ ë6ø]ä€uÀž³hÿ…Ñþ@XQÜ ë6ø]ä€uÀž³hÿ…Ñþ@XQÜ ë6ø]ä€uÀž³hÿ…Ñþ@XQÜ ë6ø]ä€uÀž³hÿ…Ñþ@XQÜ ë6ø]ä€uÀž³hÿ…Ñþ@X‡<ÜD°ðìº-%=.ºóNoXí²K2N‘ih$¯Î%ôSÖу[ &ˆðÆfÇÑ>¢¯ôKèËÞÚÒÝ~†×ã¸×tÏ”]ˆ‘Ñv×~&%ÀˆÎH±/¢{óynèßçsÜ·+ð¯m{WåšÛ¶*œ÷Øñ=|öØë? +ÒR‡ënº¢4§®JV"Qò_XÄÐñyå-ÉXùZšOmÌyPÍo'ù9b+XïºÌ÷ÐKÜc4jÑ¿1ê.Q—쌪6©«ØÆX\ªó{K*™®E¢a£Æ8.µÑŠR5ºF›8„ñ«alãRÒSP¨­}åz2œ[ƒ½·Ö Ìúˆ¬+ bªÜ”·)´:MAdÝ4%zËa˜b´‹„òEw–aðùã™–VPr“Š]%ù´Lp¦e6•)ª,­¥8eô%ÀÔgÄ) e[ëû§1¾Ý¥å’ŒŸÌªdR½ZoÔ"²Îý¼Tìæ•îFWáqŠiJÊ"šNê;wÑÔó6“·ga“ ±…﬌!ðÇ|*±)£¼”ÿß)¹<#TJ±âzŒ¶ßL])'&½„’"¾®!öUÒrYmÛ¿aJ½+ÛVÍÛO&ƒše áøxƒ(¸‘T´ËJTÜvQ¤²Ò+‘l;‡Ò¾ñòSWgÎŽ4sËR>µ Ô°Î3¢Îªäã.¢ì4šœ!+;í°¬gÄ>rÒ)4ê-Oõ†5Eë<œæ»KÊάT§Î~$ø»+d¤Ñß^£Ú>øük£•ÇcW>Xjäã-ÆGàäóî´˜øì¥ÖZIîÇR ’¢ÛÁã"1SHÔ¶hÇW}c†Šydõ‘®››M~©”)˜—¥ôÝ”eÀKK·)ñ(Í¥ŽŒ©s¯VïOá_á5®û; ?6\á™h¢×2‡¸ÕNÉ6´’VYì#+¹ÌaÃV¦¸FèûK {öa­f»UÀuš<D´Õ"ÕÝ&b:‹iÕ¬‰D]Íw8<:Üd¬Ò¿ ³‡ÉñÖŒµ;5œ“˜Ñ1ƒ¬N‚^ã£U¼z‹”|=‘•I5M^ÅË •^n×,¬§æ·•†WŒ°Eh붋IÔ©6q -§°¶qºBQš…Ukï*°ªi¸;Ûq ı‚g¬ÚðäLQi0§Ãj\b'\q—›'RRŸ¢JˆÈ˾0±îÔÙ‘†^0×zŽàOY´Âèÿ kv%ƒ¨îõ›Gü.òÀ:ŽàOY´Âèÿ ,¨îõ›Gü.òÀ:ŽàOY´Âèÿ ,¨îõ›Gü.òÀ:ŽàOY´Âèÿ ,¨îõ›Gü.òÀ:ŽàOY´Âèÿ ,¨îõ›Gü.òÀ:ŽàOY´Âèÿ ,¨îõ›Gü.òÀ:ŽàOY´Âèÿ ,¨îõ›Gü.òÀ:ŽàOY´Âèÿ ,¨îõ›Gü.òÀ¡Ÿ‘ü +M°u ¿‚èÿ ,E¦¦aº&J§Ç‚ÉË’£n3(i4½ľŠÚÌnâ ‰¢<Kš.N‹à|OˆÛl¿&|ãzA6F²i´i™‘\ì[GÖ«’³ob§¤ûRW§m‚ß©ä'¨ÒK)º\ç$2§äE[n¡Ö6¥-ØÍZ_CÊ+ cwMkÊš³½î_*®žû>®³ÓVmÍ9WÃ0Ú¬ºÜ:ÓrKÒ#N5¸™é õØÅ7ß]{ØßS¸• Qk|²”²%…%C¨Õ¬ DšÌ Ô¢’Þpµ’S}„|b½*~*Ë®W¶¾ÑJúýê»>­æß¼æÖÓS«8ÜŒÓÑã)å¼·È' [ˆõŸ¤qÙ¢¬µ¶Õ¯«VÝbT,ß“¿nÂœ±D—]sÖ÷ŒT–#¥ä²k7–ñ‘Áâ+mäÓÆæQi]ɵnÍ¥*a¬ÚÜ£{õ3¦]©P©¹H‰mrnšE¹ ’…‘¥<+}ÐÑrrNþ|½cFÞb2æ2ÁäÔq<ÄJSuŠ[.²ÜD)Ã5¶“ਬi#Ød[F6§¼¾¶Üí¯ƒ>õá©ÛWÔãsã•,˜Sñ¦+®­©»Ò•Bf;+(ÐKM+Y% B ‡Êj1óÂWq†g­ÊM-ŠÅkÓNÑ[¡vE¼¢äñ̈FvQ-·Pí>´š.ÓÄF•)'¬­ÆBK _Ou›OÐbW§’Íkºº2k 0£Ð&VéUÇ&&‘Pò•M2½ÜÈŒÚZ­¤Df>+ó¨µlÎÛu÷HÑN-§²7êì+qnôús5–)ø“}ÔéqØ’ôc`Òmb%ñ™\YkvvÔå–ýey„¶½ysz ë 䢇‚©XÞ3õVçUÙ¡¥×¢ª>¨êsEDhYí2½ŽÃã‹Å9ÇÅZ¹Ä¯ØÏ®ŠSŽm®-ÛªÄ晽|ñ¯~é®þ)Í)ï=&^ßz Û“®±¾ñ|“$BüๅAÿÑuOu†2 +ó-¾ƒñWîAÏÅ!÷ÂùEÚ|«ûÖ&´À¸°•‚±N§8òD‡›B–â´RDfW¹Š¢Ù»"KeO"ñÅé4SiÑ)±›7\»š­­Í/£3â.!…Å7)_\¬•½F}j)eŠónÙ`3›Î%r£T§­ømt:;R}ÇÉ,›.’´¨ËY¿MŽ\Úýö[o¹ñæì·«úB¥›N'¦µ%×Õ³æ%¦ä’œz9Íĵ³Ù­©êvz¶,3vµµ­]eï%PäSq ΣƉ)ª,ÓÊZIo8IÝTg°ÎúËa jÖw´_ãTŸe¯b” ›Y¶sm÷=¦ªäf½F,B©FÊDK*­ÓR‰ëhhÑ^ãî±qi>2kÒŠsöüoAñÁ™"«cjEB¹THР¸–ÞrKÄÝ”¢¹Zûn/¯ˆT¬žûÚÝGΔFÒÝkúOãb髨±MiŽr÷¡<[àã‘ùá#ö÷‡ÎXÈÅÙßjMîMŸHaܶo½ºì_xÓ"O™LEq)Ì&“T—e>M Ýt¸¯¬Ìψ‡Î–¥+ë´ì— (^ââÛï*0no?zq\C.+oÓéÛæ9îöIšËIÞÚÑam|oÔóFþúÏî£éGzŠ/cË^^G*µÂ¡± (hU=r˜Rs[HQ¤ÝtÕ©&|DCèñ*2“m궮¶¶sM¤’Ú寰¡›Æ$“=ØI~æˆe8¥å½ÖÅìjJøíÆ*ñ±I·}M&·Ýì-æ[i-wM¯FÓä¼ß1"jh§“ÑÒ¡œíø—ÈãrÕ¤k·(¯L›wVi[}Þ½궻ßèÚd[7ŠàÖÇÚ¦µ. ²|·ºIj¶ž™qX|+ãá¤ñJQÞ­$ž­}…)Ñy–Æšo«R(+9»bZ47äªD7f;r—§ÉO“./BÛ5‹ºlom{m}×,TWâ¯è<ÌEºþ¥HªJ~"Ž3L½"2#ÊÖ“R9Åzdseëµ÷_€Õú¯mö0°Ë>¼²yèžûöä>Uýëì/§µ [ |÷¨~æ]ûs’&É]A"6Ò.Ò"Æw¸iUìü†Ñ¤å=äH-W2NÅ{Ã;GÏ,ûLlToCˆŠþn•YT<†N¨Bss‘¹Ž4²ú'Y×tÏ”]‹ÖIh¥{ö¿Qrs†Qdâz,j…päÅ~[M:ÒÐ’#JÔI=d]Ñ*´m)+[sõUñsŽ´ö?ºK¬äª4ÜòuŒ%G$´—–Ô‡I?B{ Ϲq¢®Üéñ‰#W§p—Ðdl¤Tq– rWF¢V`¾Òo¾PÛŽ¤ý‘ßWsˆ|(ÁA¸Ôºì/”óÅ8k1W1~*ÁXkx’¯CŠìÖ”ÑÓbG»†kÔdZ'k—-‡Ú4áRj1»Öµ”„¥ä출䶑éø/ãf*üióA“Wë‘{ܬ|£#(ó–©J1pŠð¼]Ÿ³/›’j.®æV)”¨Ž¥§tw3Aš‹Dìzõ’¯²Â?¢šæ[¹›‡roǵŒ‘íÇñß±v÷ó­Ò©¹û2·¼3tµùÊwÛh=lò¶Ë¿S)˱…﬌!~;áP퉣¼”ÿÙU–P2 …$št‰“§¹n]­ï +MÛ»~áv_ %Õ÷LÛQÆÕ¤aES'ÇJŸ%-·»Dœ”,ÓÁ"2"Uìd~‹V‡5Uç½õ£éB¢;-ªÚ™jƯeѧUñ<Ì=‡É´™î(Ž“[„E³mgÄAYS~,sJåÔ”ïweÖXY¶Uœ¨äÓ(5¨’·äT% ´JêBŽä\Cï¥éä8ðKÖS<õ¤ø²%fzêÕ•*jGuúG}·.11Š_P—b#'åWÊd̦哃rù‰bUŸDtÔ¢Gi§–vI8dFg²âEÔ´¶©6Hâå’¬döe±ˆ²™ž'Ÿºub™VŠõ6{æù¾·xm¥GsÕÇn-cí‚Ò¥«X¦2‹«,ÑÞtÆP°†@qn[XŠ]VLYH\Ä;'ui–ôtLÉ72#¹óúá+J»’²I¦¯mzÏŽ"Š§¯]Ö®ÂXe§‹ñÁªäú=³ æ“¥¾PÛŽ¤û†wÕÜâti¨IÆ­×a™)çŠpÖblªâüYð-@±Z… 錭£¦Ewk+X´LŠýÛ¯7 +“QÞµ¬¥9J 3²që9Π É™TºõV²¤ð"°M$íôK=v>ðŠÒ“´R3pq×qˆBDCÎ̼³Îù׆ÿsR~Є¶ŠÚÌná~ ¢<JìeÆ•ƒ)8VÒù»ù»èÐijJ4 H3Ú¢Ú0qWRMîp·¦÷>´ªdZžoE¬\p²ß†)U:a9P©Õh¦æÊAi²·Òdƒm­—G/ø¼$¥µGÅI[é>î²M=¾5ìøÇ—,'ü*ïDª3—ILæÞzK<7JBNÊ+«ÚÂ×…›Í©,ж®(¯<¬“mÚj^ƒÓr…L‰„ª4E“›åúÓY<Ån|½Ášé<ôßššgÇœVšó–£8JÎÖ®CUF¡K*DI,JŠÑ¦m ¶Ô“ØGmF0£‚’³ÔÚ”µniŸN}k\c~ oUŒ)‰šÄ´Šë“Ù6dy‘_IÏé0,¶/úÇ(¨IZñoVíbUÓmnqJûõo1ÞU1Õ#ã6+T¢t ²˜HNê›9¢Á$ŽåÌ>ør¦žmòo¼ùb¤§ŠrÙ‡ë ×Û`Ÿ¼Úµ:kZMÛÌ£¥$»ò­CáC (¸7ö.Wôì>Ó®škŒô£Òk.ô95lhƒ›: +¶äg˜™²7Û[$EcAñ(Y”"µ^2nÛše^!fºßÇÄÁØóSñ+V¾%CŒq“yjÒuä²e¤jäÒäâ˜:nšñ­­·«q‰–edö++åËU鸎+u:’ú'½\b;Œ1p4žä‚#Ù«hÁ†qqz¼Y^ûÙ“ÏÇ^ëÃ-·"Ï™–Ê"«8ΤÉ=£Tƒˆ·o^êÖ]ÈW!ôŽJ +<'›Ñsç*©É?Çn>›ÍO+Øcxž°Û“Š¯]¥"ã©’Üu)I’ïs#·0ùÏ 4²FÖÏšûöÞÇÒ•xæŒåµFßE®C1,`€ ›×Ï÷îšïâŒÒžóÒeàý÷ ¹:ëïÀ I2D/Î ˜TÿÒuOu†2 +ó-¾ƒñWîAÏÅ!÷ÂùEÚ|«ûÖ&´Àö0ûíÆ©ÓÞuD”7!¥)G°ˆ”Ff.ƒÖYQ^,™bì);cŠ‹Uz{rßLs¦Kš“r6¤¤–dV25jÕrð¥8ÒŠ³÷ÎémµÉÎ.i¿1%Âö=Œ¡å TƳˆâKv¡B…­Êé7ie¦’MŠÜ¤\ƒç +VV~U?E‹áQfM½”ÚôÜòÊ&N %U†7aMä¥éŠFæe¹ìë®/­BN5,¶Í5Ö®*‰sWû×ê¾ÃœE”l:ý+µ°Âž{Sâ²”™ÝRYZºâ•^öüjŸ¢ÛKpóK-þ.KÓ}‡Ï,ø®4Œ™áÉm¦v Lr–FV3(HÜî}óJ؇±^^™RŸÔ3=¾÷ÐÌ%DÄ´è™/®Ò1 œõRÈŽfzkmzJ"ä!™Z Õ§%±f¿Ü1¨»F¢{ÔlHª¶V)r©i©CÄTÈÍô¸gz’ê&ñ#AHÒ2ë”`UÃ<ÒVnòº×ªÛu™Xz‰(ë¶TÓ¾ßAÙ8ßÏVîÍjœÝQš==˜²&¤Üa¥£ÏS¢deºl¹ çJi¶“³©wm­[qó§(åŠ{ ×RwÞv¯c\3YÅ5×A6ê˜q¸i”f¤´RV4¨‰<žÁò*rI?)™.(û*‰TƒodZ}§•aytH¸]ÚüfU+œK3Q´Ëíºj"Y‘\‰D>µèÊr”’û(ÉuêÖ‹hÕ5þ ?NÆ|¤cÜ3I¡¿‡®Ç’¸8qØE%zÈqÍ=ÌË]ˆRµ9Trš¼á«}–ÖRŒ•<±¾é¶ûv#ç@ÇôT5…[ŠX*=Q”o#tŒoi™›2Rd|!ô¯JNSvºn>•ÕÖ[JiF)»YËÑ}‡ßcŒÜLNÌ +Œ4Ê•De—w©¬£=(œ¹“­…m¥¨†?36¶;g‹WÛkk>Ñ©ÕÚ¾Y^Û.ö¡e œ1ц7SÂÌÁ$Üï¾IÒ=Ïg]a÷ÄQ”¥+-µ"ý m>XZŠ1…÷)ßÓ{.;™BÀõšµz^ eR%УDE=:G$–ãi+ÚÖÑ"ÖGqð§y)SKmKßr³>‰¥’ot6qÔìZXçᚦ¬"v!ƒVup㢚¤ Û©!Ò"ºÑ"%%;5Ü^éMMY4óëóZãÚR”ãmoV]mødL¼²yèžûöä>Uýëì/§µ [ |÷¨~æ]ûs’&É_Aó´‹t PÙÄ´ª…-ò#nS+hïõEb÷ÅЖWrÙ+«‡áÙN³R¤JA¡È-³#."=GÎCj§<ÑM³‹l} @{±±=bUAT’Ôe‘²‡––ÌmÒGmbÉSRÚ‹£&¶+n-•¥Ä(Ò´™)*#±‘–²21yk=š¦&«ÖІê92ƒºRóËp’|¤J3°²4âÒ.sv±ÞŸŠ«4”npª²££µiõ ¼ 2 A=¨¢ml(*YµUî“e»!}³®)gáQ˜¬`–®Mí*)¸†©F#(ˆöî/-jdŠ{J'm‡Ö£‰ë„èNªI’žG_ZËÀ£1j§±"ç7ÄéUaÄ\*RŠ»é0‡––Õ}·IŽýáYAK[E#&¶ôÉVÞ}è”èemï»/r·°½½àpMÝ­aI­H$bJ´¸¨‚ýJC‘QmVòÔÙ[e’g`ȯ{k +M+mv£G3T ïÆ3Úlº¤}©¬¢žÒ‰ØúT±V²DSê2$‘l'žZþØÌR4â¶"®mœÁÄuZdw"Ä©Ha‡/¦Óo-UõÒFDa()mW“[ +8)t§“&—#¼›ÙÆ–hY_º“#5}E:ÎgU&Tß9Rå:ûçkºâÔµ¶pŒî)¨ì+)7´ö™Æø†;dËUɨlŠÄ„Ép“nöµÒ‹Ú—pRkanÈ’ì·ëî©Å«Y©j5÷ÌÅé%°£wÚzôìSY¤#sƒU•«O­àI¶POj µ°¡¨U¦Õ—ºM–ì…öθ¥Ÿ…Fb±‚ŽÄUɽ§ž.-Éõ†kØ X#Â[íèJ¨ýêtŒµ‘+­#æÞ:®yö¸xe‰#†‚¡çf^Yç|ëù©?hB[Emf7p¿Ñz´ÚF²k(_“¡m-Å¥.×Ù}1l¤–Ò©\¨k ÖyèíÒä­æmº6–jEöiÈSœ¯r¹]ìrœ/X[.ÈM.Q´Ñ¨œY0½v‘¬VãR+z+‘ì/ºöJ*Ê ¹ ·¦"¤Ã8M2¥…[„dF>/”Ü«%¯´¬ å%½µnÂ’µ“wé¸{ Ö˜ur­)ô¦:3R £µŠÚÎâ¼ÿÕ8E;ö”Œ/ ÿ‚k¸³—†+ É(j¥É)“Y2l/t4–Óѵì>ª¢j÷(âÑT¬ˆj#¢L#JtÏï3š“ËÖìçcÅw•ÈøÉ‘¤ÌŒ¬eªÂòÓÙUbÆLÇ©²Ž«h¼¦VH;첌¬-ίkë*¢Ú¹VΪiÃT˜#±%ÆÛKÎ2´ ô̈ŒŒÊÆ.Œ“yo¬¶WQÌ\YCÉÌÌY“LB]’ÓkChM(’âÔ’V‰jµõìølG8¯³n®Æ}«RÉÜŸyBæ u4Ö]KR΢¹*`âoE‘o©VÖ¯©Ú>œî½Vµ¯{–¨jwê-ùøv©KÜ·å:D}ÔìÞêÊѦ|‰¹ÅÑšnÉ–¸´®Îõ 3W¥5»Í¦IŽÖ¢Óu•¡7=šÔDZÁT‹vLe{O?U*͸ô*t‰ ·×­¦V´§Y¤ŽÂ²šŽÝB)½…íUÉ´ˆ8Öc­r«®B +23Z “·³'[êŽ"ûO¢¥xfü¬{X%LãiQkñ¥K\¤º•ÆQ6Ù0ƒQYg©FvÖ\BÚõò&Ö´£}¥)SÍ©êy’(ñ^JeP`Ð$Ã[“ª¡õ“-4jR7%šv&æ{)âsIÅîQ}åeJÊÿ‚’î1„útºSÇdg#ºZ͠Т¿qDF2#%-‡ÍÅ­¥¸´™½|ñ¯~é®þ)Í)ï=&^ßz Û“®±¾ñ|“$BüๅAÿÓun•Òc ¡òÅ s°¶'ŽÉ]ÅÓÞ4—.Œýâl3´Óë>U•âĸ6¢ôiÕ0´8ž¹J+•õ–°A¢éÅXÞ±UY[©Elše’B‚â$¦Ä>TèÆ µµí>Ž£iGr-!õ>`;¶³mIZNÆ“#.ù=ÌI‰ê8²YNªH7ß&ÐÖ‘‘¢’ÕÈCçN’…í½ßÒ_)·kîV<ô,½òjÂäb¬>Ú +ê9¬Dgøƒã]Ú°úSÚ†!…HÕUž¢Ør2üMD«¡)DÚy…À»€מnJWº3Œà5t™SI%Æ]jÏñ LhÜGØ?A‹¥öH^‚`ÀÏ™»ä¹Ü¥â˜Èq³Þ0”—äªÚ¬“¹'œÆ&2¿7¶}ðôó1Ï2Ê#¶†›I%I%$[ˆ¬CZ%Ϩ3Êí˜g‘oÐh²“ÖǘêUü :„¦‹—Œ×Q…ŒZ“hœ#‰c"®žÊK›¦ÿÜâhn>ym=z=у¤-h_f¸dá=ô¾K3Å~½;Ò1Œæ6+-aúaLq6Ýù®Æj>ÚÛxÄ}HÅê^õÖÕÂÙOµ ¦œ½ò¤þÛQK†%V¦ÈÉûðœqÌ>í*B꫹*tÉ[©½Å¥ßÖ>¸˜Å:ª\^íVô–P”œi¸íÏãwïô•x1òrtÓ $s÷æ‡n:jóÞ+h츲¦\Òç6óqï±X_*Éñ²õ•˜G¡fÖq(5¥(¯ªZ4’Ô½#ÑÜÍZ´­Ö\Ë7nûϤlÚáÎϳaME¬¼ª½ÅӦÖÅ"²¤;Py·%©$‹–™$®V=—ª­ ´ÖÈlÙ´º›»Šiûýý‡›…1µrc9&ÝêN¯ʜԣR®o6“2$¯”‹}jQŽi«~1OÓÄÇç‚wül×£ê³0KjÑŸ¤NU`§I&ÞL„&)ìz7A•ì\c6‚¨ã­hí윪rÍÅì&e2kt¹}Kô¶ã±M9 ¸hz™%¤©8êúm·t`ÆÊ¢{|w«ì“ûÅé· ~jÙo¾yÕ΋@oO _xzº[qÓݹî]o P¶Xyüæ¾;î]Sk·½æý=eßJn.-Äxª=e¡C›´‚WhÓ%¦Eß±–gNšª·9ǽê.”sË›ó££ð‹;'¸…ÜFœ=WZ®¹¦ ésqV½aö©O›YxP~²Üùó¿Ç‘ûÅ­+S¨rqôLâ×ZBß±è'^Šn{{j ™\rmt¥Þ[^WΞÅRÛËc*GŠúœb‚ÄÄö¬@êomÜ´•m©µ¬-£“=,»rÊýÇÒy¾©}—¸m+òýAÜ-D‚˜ò˜eÚ‹æÔúzÒ²mfZÊcGµ—âB)Ëw¼Øö5÷Ìl,¬ŸÊ[6¯Â2]4ÈxrŸHT´•~[µ¸ô©©In)wt33Iqö¶ :ù§®+VH6·´·±´ͳ>Þ¶µ2ÐÉŒ9p)˜<òQIj¥]KÚ}v™4w½û£ïŒ’““ŽÎezφ-]Ko’ºRJ;è(Ëa§f±²a1J¤zÈšÔœ„Æað씚̒’33ØDW3¤É{ +M¦M—tšle•œqj+n¦¤”–Ã=¦!ôŽ-[$}&n‹¾fJÌEuK%¬Žê;Ÿ|Ä*$ cFoE´ß¸.Æ“\¢ÄÄP%Óg4NÇ’Ú›q*+‘’ŠÂèÉÅÝ’º°–rÕ’iÙ(®½ Ô)Pž3\G­ÁZ ö_”¸ÆË…Ä*±¾ò"µ,ŒÃƒ$ø€Î NÅ´ºs +zL•¥BJúϼ\bÉÍE]—F7vC¦È®K"d§±Om$©n‘9)Ûk[†[/È[kXšî¤®Kѧ‘XÌú€s¤ƒ }Êž)5 +$¥e%eÓØÛéÖƒ>áì1õ¡[›’‘ó«O2°¤1>©àùÏSê‘ÃÍ(Ë„Z”\JIì2>!³Ó¨¦®ˆyEÅÙ—n ÊTŒCÄ4¨¨Z]ª$™ ¸hS[š¯ªÚõ‹+Ñç2þßè/£S#oŠh±]®Ô_9&äç–rlOé8£ÝH¶iÜõó¢‚Ùm…™î}cb:¬8«„ÅFCq—}&PòÒÙßmÒGma()mB2kaõcVcGÞŒÕe7DÓ¹%õ’4Oih‘ÚÁ*iëhFMl)Z®TX(äÜ瑽ŒÍ[™žÓN½Wî +å[J\û½‰ªÒßNÔä­ýotSË5è+Q¦æw±ò +*qJÖ*æÊvëuw¹"sÉÞÆjfÎ(·3=¦z¯Üʾ‹z +_×Iç8âÝZœZJQšFw33Öff*•ƒwÚ{1-ZTdÂz¥!Èé±Jyf‚¶Ë$ÎÂÜŠ÷¶²ªM+ÉÄÕiŒ5úœ—hÈÐÚÞZ’“NËŠÀ ¯{k)wkn>iÄ54:ûé¨>N¾VN«Iiµ¬£½Ì»áÍ«ZÚŠæw¹Ò5r£ ·sÍ%µ›ˆJRI+2±¨ˆQÛŒUÅ=½…±èÐñ3ô¹qG232!q]Z·'G¬ÌˆöŸ.Ðʾ‹v 6ý&WÊYÙÅt>€ÓiïČ䒔öø”© +5Y)A«­IqÃ¥ƒjJMÞÉÛU¶™2®²´–Û}§b:­!µ³£"3nuÈiå!*âÖI2’‚–Ýf<[[V§‘0E5ë0£[^h¯3QÌÓ¯QŸp2¢î*OUÍIYÔäé%JZOv]ÉKÔ£-{O”S›¯A\ìêÎ$ªÆ[.5R…2FMš^Q [I6=WÈŠ]”u +œº³ÆüÙ.HtÊÆ·VkU‹ºff‚ŽÂ®Mí9¦ÒåÖ$7e¾ó†IJI¨Ìϼ’ZÙD¯°™x; ¤Ô•Õg­Ï4É–ÓÖ3rã¾µ s‰çe«b%pô²-d²ÉüE¥-\¹2 ü¦¼Ä¹…AÿÕuÇÈ2 +½n6ì…'—Œ±E>DD¾Ú .²¾½—PKm]ô˜¢mkE¾Ò<Õ0ÆqŸþˆ¥ñš4Û#æ#+Qo>/¸¶•DÃi3.“#ûk‚½>¯Ñ¡ÀëÐ\7ë2?¶¸>¯Ñ¡À: †ýfGöקÕâ:48Ap߬ÈþÚàtú¼GF‡è.õ™Û\ŸWˆèÐàÃ~³#ûkÓêñ ¸oÖdmp:}^#£C€t úÌí®O«Äthp‚á¿Y‘ýµÀéõxŽÐ\7ë2?¶¸>¯Ñ¡À: †ýfGöקÕâ:48Ap߬ÈþÚàtú¼GF‡è.õ™Û\ŸWˆèÐàÃ~³#ûkÓêñ ¸oÖdmp:}^#£C€t úÌí®O«Äthp‚á¿Y‘ýµÀéõxŽT\7ë2?¶¸>¯Ñ¡Àõ 7˜­*N… Bæ庭'ÊF»œñS–Ö]1[vRè3*ÒŠT×Vóªú%ëæ.Bîõ$Ö  d¤Í<‚ ÍÛÑ"!Pz`ƒ2"¹ê"E¯ç‚²_$è°”î"Ä+à³I¥–îò–zˆ–i¹ ¯´ÌQȬ“e9©1ë9B— ÑYÒr;dô£5’o¸{;¤C퇯*rº>u)©«2$å#&õl™UÞ¥U2Ñ36"à:Ž%$ÆËF²¨®ˆš”Ü™‡Øù€u6›*±)˜pÙSϼ¢B‚¹¨Ì[)$®Ê¥roÀÌ÷Щt¼K„±ziª-Þ(ï4NDq*/9sŒ»ä5ün-ÔÔ¶˜z5½¥ß…óÊ©`ìa¬¸a‡pÌõ(›j¬Ñ´¹G³H–EÀ¿tGæâd“º‹\§â(ŒÏ¥Íj\g’JmÖVKBˆù &bàz tq:I0;Ä”íöJ-šŒPÇÀSíî ±=”ßE2%š{ÊÚ^|*ÊõضPRÚa)¸_ ²fgƒ£÷p‹Áq÷éõ8Ÿ.•Ð\7ë2?¶¸>¯Ñ¡À: †ýfGöקÕâ:48Ap߬ÈþÚàtú¼GF‡è.õ™Û\ŸWˆèÐàÃ~³#ûkÓêñ ¸oÖdmp:}^#£C€t úÌí®O«Äthp‚á¿Y‘ýµÀéõxŽÐ\7ë2?¶¸>¯Ñ¡À: †ýfGöקÕâ:48Ap߬ÈþÚàtú¼GF‡è.õ™Û\ŸWˆèÐàÃ~³#ûkÓêñ ¸oÖdmp:}^#£C€t úÌí®O«Äthp‚á¿Y‘ýµÀéõxŽÐ\7ë2?¶¸>¯Ñ¡ÀîŠ&QêÁ‘¯Ýuà éõxŽà éQ½é0#Ó­F¨Ì’\2äÓ;˜øT­)ûæ}#MGa~á<$¤¹º,ÍJV³3Öf}ÑóEä¦ÃTÍêÚÛ…AÍG¹–¡PÿÖuà ¡O!‚x€­V‚ܤ™5˜ 1ÔìÓº^f¶ÉÓWó °>]Nšô°§MzHXS¦½$,©Ó^’Ôé¯I êtפ…€u:kÒBÀ:5é!`Nšô°§MzHXS¦½$,©Ó^’Ôé¯I êtפ…€u:kÒBÀ:5é!`sÔí¢ü¤{9%+ò™ u°J¬ŽæÙ€ò#GÑÐs\±È¨Éói¯Kuw;ŸrÂä¬ ô* u”œ˜ÑrŸLrVŽF«âñš4®#IüíF»¦îJjjÌQ9ZÈ­w%”ÜÖTô%¨÷ hIš\‡È}Á°áñQªµmàEÕ¢àa±’|@¹°¦«cjƒ4Ê<5É}Ó"²KRK•G°ˆ‡Î¥Ev_9;!¯ä'7ZfK£¢|ô"]aÄ–“¦WK?R‹þ(€ÅcGe°“£AC´“CÈ-œWƒhxæÔºý*=F#É4­™ ’Òd}ýœÀ)ZÍOdbkÕÜ…â‡!3¤n;†ê)ê{¥´ÒÞ•Í»ñr mm€º2sžœ‰' +eVˆþ +ÄdÚwáB’­—iþ¶ÇÅs N“žËr#<‡šp‰Hqµ’¢>22ÔbàT€:L2vçm  "³…Ú–GÀ¸ ,¹?iËùX*²tÕÏÌBÀëÔé¯I êtפ…€u:kÒBÀ:5é!`Nšô°§MzHXS¦½$,©Ó^’Ôé¯I êtפ…€u:kÒBÀ:5é!`Nšô°§MzHXS¦½$,©Ó^’Õ¬´GçA`zñò~ÒTG¹}Sp³q´l€ñ2YI¬* +âYZÀÿ×uã ¡Á\ò[zFù**Oˆó8(?¡ Á© àŽÔ€ðGj@x#µ ¼ÚÞíHov¤7‚;RÁ© àŽÔ€ðGj@x#µ ¼ÚÞíHov¤7‚;Ru]=Z’@¡BI¬ú7(â}’Ù$Oˆô0ÞV2÷‚r- åbzÓQÜ2ó(¨=ÒKªâJMÔf|Z…°!é㜷gR¥±„iËÉþYÙUIéÒ¨ÊløÙoè.[.-ÖÁ!ò;šnÉDUV+®pŸ«Ôw”âøÌwÑæØ.QŸÆ®Ð)øš°*qQ&;¤d¤-7.ùrº3qwE%õ1på—4)ÔE?UÂ&r¢kZ¢ž·ÇÁ?¢/|Lá´Šz§ÞGÕÂÛ\HA.#ð[ZSN ì¤-&•—)”Nû 6¬S +”9"¾¢¤ŒÉ&m¸)Ž7%æΟM¹¤:“%(¾¡'·ñ#z¶³ïKä4Œœdª“(‡HŠD»èúˆ×”ÏàU«Ê£»$©ÓQZŒ”>'Ðcü¡ä· eVšå+ÑcÔc¨ŒˆlH¿Uµ'Þ0h~n@r­›“êªd*·ClôÝÃ5g fM‘ÜÓãÙ«a¶ÍlZÉNy¸WN,;Š"¿„q"EÊuP·"Z‹näáÙ+.M`¤ †…¥Ô¥hQ)*"22;‘‘ñ‘‹ÜàÀàlém|Õ*â|÷Š;RÁ© àŽÔ€ðGj@x#µ ¼ÚÞíHov¤7‚;RÁ© àŽÔ€ðGj@x#µ ¼ÚÞíHov¤7‚;RÁD@ª"!<@²ZJx€´neÈÿÐuã  ÇÙCʦÉU5ê®)­Ç§Gm&¯5p‰kî!rŒù…™—Œ­gê©ù!ÃëÃô%™¡ÌKVhÐ¥£f”f•¬ÏÌRíƒ0dŸ3l'æ§âgžÅ¸g¦åNª­ØÒ³Û¹6«¥ÉbKöÛKIJ’JRV""±w…Àî0žS2…ršÒ•2c̱èÊ`‰._ê­©Eß41r§°øÔ¢¤.œ¥æ±‹02‘9Õ ¦æN0WZSõHÛà41ñžÝLÀ©†qÙ¬Œï2äu©·[RF•‘‘÷HÆjf9ò($WØËx"·(Î'¡´Å¢9™¤¼F†‹œöó jبSÚÏ´(Ê[’ÌÒðæ 6'VHª“Óe8^b…wÇÎ"+é ORÔŒêXUºÉbË ÇB[i BV$¤¬D]Â!eP‡ò­|–ˆGÐÙ”¢¹µ!)Ðʸ”‡e—|Q«‚ô–üÖÍNàÚ›˜ó ²z] ž¿ÑF;Eµ,º}u‹a¦´ ‘¬íp>Wœ:aI]¼Ö§é2ÞòP­†I%ÛL¯È*¥pJ;ë!PrÿÑuã  ÕG`| šÝÐ|w×pÀŠQq‘øûOwÀê©i.#ð:ïÂä0¿ Àü.Cð¹ oÂä0¿ Àü.Cð¹ oÂä0¿ Àü.Cð¹ oÂä0¿ À”²>#1zÎÀª$!\`¹(•°À¶/Æ´Lê­~ªÅ>#I5)×Ü$‹’ç¬û„ƒŒêñ®[%;BÈ^rC:ZâJš ¨ ÃSI2ºÌ¼Ûß`.¬fSMn¤Þ*Ê…iìiˆ[¦”³=å{l˨ˆ¸ŒÊࢠÃ+0šCÚKM ‰)BIJH¸ˆ‹Q ÷ ¯¨À{d'å+:…- ¾«ù»M¹~[–Ñ‘K8lgÊtc-¤'Çù•Õ© ~f©·.: K6Ÿó7’Ö|.´Ä-&Ÿ¾FðoqâÃzsÊŠÒŸŽÃÎ0·šI­²q³²“¤EmF$)׌ö3TÜv”ÃêZP§O¢Ïªéo8O?¢F¥nm©V"Ö{Y)¨í.Qoa›ò'›íO-PJ±O©Ffœ—VÊÝ5i¸KAÙIÐ-deÝUtŒ#³Y‘ ,žÝCÀª`Üm?%ƒ©ÊMt‘­7î#`Œ«œúŒÈa£JÆŒÌ6ÒË %¶ÒVJP’JH»„C »Ÿsî(T;å›6 –Ô%êÅ4£TÙק ÷ l«i8›ØùE¸#IË®j§iVQð{7²ÑÀ«Åh»b=NX¼"šÐ%>G3–À™o`ÎU$MoSôùE¸Ëe|iSk±êî +§pg£3¸¨ +àošx€5I>CwßiîøûOwÀès +û Æü.Cð¹ oÂä0¿ Àü.Cð¹ oÂä0¿ Àü.Cð¹ oÂä0¿ Àü.Cð¹ ئ&ÛÀå3P£µÀ u*Ø` € ÿÒuã  ÁõèÌìE´ÏQå—;×(²äQðƒMº¶ ÐäçKM:E¨÷4ì;r˜•ÃhìÊóî0kb­ª$HŸœ&Pê.Žâ‰Es¹%IIwˆ„ŠÁS[ŒW^OyAÕÏúè›íŸpW¢SàŠsÒâ\ñﮉžÙ÷¢Sà‡=.!ÕÏúè™íŸp:%>sÒâqÕËúè™íŸp:%>sÒâ\±ï®‰žÙ÷¢Sà‡=.!ÕËúè™íŸp:%>sÒâ\±ï®‰žÙ÷¢Sà‡=.!ÕËúè™íŸp:%>sÒâ\±ï®‰žÙ÷¢Sà‡=.!ÕËúè™íŸp:%>sÒâ\±ï®‰žÙ÷¢Sà‡=.!ÕËúè™íŸp:%>sÒâ\±ï®‰žÙ÷¢Sà‡=.!ÕËúè™íŸp:%>sÒâ\±ï®‰žÙ÷¢Sà‡=.!ÕËúè™íŸp:%>sÒâ\±ï®‰žÙ÷¢Sà‡=.'=\ñﮉžÙ÷¢Sà‡=.%߆³¡ÇôзêçPdŒ´™””­&]Ã"#.øùÔÀS–ëvÇ$0 ŸåÖ‰h.W\Ý=1 ïrp’–Ýv‘Û‚|F ñ8wIÙ’j©£bòêÚ¢öȦwÔSt;Sq*n™ïm#põ.Ü„1sp>Ç¥…36* â|¸bG±M@•º7JBºTcÚIKI2Ò·tW/NÚ=ŠÔ*l6¢Gh‰(i”’.BI¸ Îÿ*•wܤd‡¾}3b³&žq»š ÓÌìëÊ2ën›‘ d÷Hä¯#x{%xF—„ið›r,F‰.)ÄçL®·rÖj;˜º.Û +5rÞÅy´àXkqÚ2b¼­®Å3hïÝ"Ô2éãgçÆXx²8â\Æš=5ÐëÆ[tQ!÷Ò3!¥<ä|%ƒàÌ_ÍÑ´ˆmMAq²á\ùŒeÃHAõ adŒ7XɆ, ™¦~šÍ¹XR‹Â’1‘ð–Æ“§%µsФFQ¥ÖmE´”ƒ#÷È}SL²Å6ÁPpT2ã–ÑmJ¿!Š\©qÓpN «­(‡E–ñ«fŒuÛÃk %V+kEÊ î2Í6,¡W´L¨ŠŠƒã¢F®ö±±ÃI™Ë æ;T‘¢ºÍm¦ ¤Ö~³Ò‹r>ÑÁ½ìøW4L‡ô—Ê“©¶¹ àûêu4„å³Q÷Ž(´œ)F¡3¸Sé‘ã·mÚI\¶Xõ 9MËi÷QK`ºêhs3L­¦ ÂTÞÇo’e$®mSªŠ;ù—/Þ-…Ã0iÔ>„8Ú‰HY’¢;‘‘ë#!x>€àÈ”FFW#ÚFŠ¹`Í åMþŒEiÌ?ˆZá1W¥«{ÈJ‹YièX–Wå!kˆ0r¥–¬ØL\ Ò0³G¢UÚsfslµÈi:ÕbÚdh³ +ç1Æ—‹(õæ_:RŽÏ4£ØÚÛ=d£=DCéN.nȶRQWd%Êxøšµ!æpÑ"—ŒÉh’ßQršQs º:6+ßkõÕ1mì0‹¹xÇï(Ö¼S0ÌöðÈ¿†WC§Á.~\OŸW<{ë¢g¶}Àè”ø"œô¸‡W<{ë¢g¶}Àè”ø!ÏK‰ÇW,{ë¢g¶}Àè”ø!ÏKˆurǾº&{g܉O‚ô¸‡W,{ë¢g¶}Àè”ø!ÏKˆurǾº&{g܉O‚ô¸‡W,{ë¢g¶}Àè”ø!ÏKˆurǾº&{g܉O‚ô¸‡W,{ë¢g¶}Àè”ø!ÏKˆurǾº&{g܉O‚ô¸‡W,{ë¢g¶}Àè”ø!ÏKˆurǾº&{g܉O‚ô¸‡W,{ë¢g¶}Àè”ø!ÏKˆurǾº&{g܉O‚ô¸‡W,{ë¢g¶}Àè”ø!ÏKˆurǾº&{g܉O‚ô¸‡W,{ë¢g¶}Àè”ø!ÏK‰ÝvÇͨ”œS0Œ¶pËâ‰O‚ü¸™ƒ'ÙÝbŠ$†™Äk*¬32%­i$¾‚å%¯nCÕ´ld¼]Oè>ÔñMmÖ1j.‡\‰¡J]-ãK.2>#ä2=F çg¸‘Œ®®ŒA:’Ö-.+ÀÿÓuã  Ññ€0v_qKØkâ)‘•¢ñ2L¡E´ãÑ¿‚ã# Õ>5åh±*©F£33¹ž³1´Pf,ŠÇ§â +Û˜R´Îø¥â\…%ƒ3$¯Vš íÈiF–jmð2p³´†e’ÊuÀf•D§13$I&˜lZµk¶Óî˜×Q*HHînˆ#Üe*4œŽaJ®)¬8IffhEøNºzÚKŒÔz…°#hY+ªI]_+øÙ¬K‹n´Û…sƒO¿˜²›ì=gaD·‚u €ê¤’ÈÉDFG´Œ®@v¢Ô¯¾©1]¾ÓS3ðØ^ª5±–¸¦YS²jfî‰sÚioDýáôX™­ì±ÑÒ—šöN¦™ÐÉõ(‡Ñcª-富æi=Z®T÷SÜ'NÂïd*q)Ñb.lå0…7&yoÉ6£2h¥b_ÉÔ¬ô—禎 +¸µÒU¢#,Ñr|VûÄñý”ÃÙ +œJôXž¤|ÕrtÁÜèƽsªxúœGF‰tÂȃm 7VíÓ¥ø£æñs{ËÕð/H ÒÈŠ-d[,ÂÞ1óudö¶\ –âéf;QËE¦ÒÙr%$’÷‡ÎåçØÆy]Éu#,xV­…«-˜šÒ’•Û„Ó¶à8žCIëjà‹™ åJ­Ov«‘Ìpé–$¦mGyöÿ§‘Ù—Pg×Y6#‹Ü Þ.K+AM­$”•*+‘‘ñeçeB `FáAÔ˜ôåW\ê‰Æl›'Ö×D\—¸•ÑTÕÜŒd¶" ²<’øW'xR„)¸£1>jj2׊ +É)ˆ„m[‡c¿xa×­.qS—‹{¿Qö¥âæõÙÚÈÇêÉŒ¬KY«EÁÄu:|Uð$™’ ®·HÕb¿¾œ`MLN ÊÐתý…%7#ø¶«2|)nÐM)K4¡(RºÒÒQ‘\ø¹EÝ&T¯©–ºR¾^«úM¼™T‘KšË´ ‡Tj{pÉd´îIZÊû™£i¨ö‘ì°·ŸRqqjÍ?M‹¹§æ[úJ¨¹¯RjÔ61 =qáÏšÜU8…¥VQ™]7I•nQXba=Ië³eµ)J*ö-œU‚—Ô0Õ—$)×:6­V;¦³©MMð»/ÅSTç•uÕLbê;ð#ɤ¨—9Ób>ŠÒ²[¥µI™÷a‰„Ý“ÝAdé8«¾6ôkùÅøeܨQÜB_x££EI_šž¢Aè™ØûáO »&VteÛÜ_UŒ†ÌÂX­_¯Er4ö&Æa”n‰4#ÒÒ$™ë!ñ–19Æ0×|×ôJXvÔœ·$ÑŒp–Mq8mç¨ôõ>Û*$-f¤¡$¥lIŒ®gÈ2jÕŒ=öóá¹;#Ò¤dwW1¸´w Q6%šQgKè HÊçÜ!d±0IJûvó2¾^Þ…‘\cˆÛqè4e­ ¾¸Ê5)(³ÈÚŽ–°–* +ͽªè¢¤î× §|‹cvåM£8Óky邏2ugd¥DGr¹ì¸C 4“ÚVTeÛÝ´ö›Î=l®ªȉD•]Äp öip¸7î‹ze>%y‰p-:®L1-ªŠ™L[ELÜ÷Ñ™•›ÝzÃÛ¬ŠÂøâa+Yív]¥-\ýOZEqIçXbŽµ-¦’»©$Iiþ±Ffv±„±ZÛßoJÜQRnÖÞ®»f“’*«×)µZ£›–V…6êۢȉn\øI;ê°±â#$œ_ÙYýîÒª“R³_bßážÆSrWÁÕX§2©QØ‚ÔÇW¦ƒRÒF³2#ØF>T1ÊWͪҷÞ>’ýVßýó Öð­O³O‘PŠl¢{DüsQ— ³;iXeª‰ÉÅm[O†We-Ì·Gдù°âÇU‡j”÷–fTù-8ÕõÙj2ðƒÒ”í%.$ŽZ¬Nü3V)HN¾Af—ò¥¬TÀÿÔuã  ò{­0WÎyWÉö!.EÄñƒ/å‰÷‚)]˜ tç^¦QIýÃ~<–·C+èߎÂÙ;&ø&ÊIÛ½kdR:“Y©Ðq TÕF},MdØSKA¨ôHÓ}¥qƒOÞ[«)lf[ëÊ)늽ºŒ,¼1Xks%Òe§t¹¢ñÜ-""¾®½C7œ\Q•”mR'<”-¸O­+Y¶•%¥)eµ$dZϹ´W2)c àL—T1}YúL–Þ€ëpäËI:ÂÉKÜ¥¢I2#×°|«WPƒš×k}.ÇÒ7)(½We‹&S†ûqž§Èmç<íµ°´­eõ)2¹ó¤fžÂÙÁÅ] Ô˜ˆŽSä"BúÖ”ÊÉÅw’esð +©§±”i­ å¦Ô”Ã]:Bd(®–M…“†]ÄÚþð)§­0âÖÐ:H¤”#§Èß&W&wî–ö¿¼ +i«Ü8µ´÷)˜TÝMQ5-ñ èŒn¨hâ¸f¥_bµp ºz…“«ªñ×®ÛJÆìõjgŽ¼;Te¦ä=N’Ó 4‘<¶–ø[HÊÞø½M^×-³µËŸ)Y?©±NT¢nÅ'H“£mÙ:V·p|¨Vç/Õ&»‹ç $ø¤ËNM +¥ „I‘OÓ+¶‹‹eiB¯²Ê2";®u{_Ym®vzSŒ†v%´€㞯eo\þPbÉmŽ€Aœï2WThé9\Á ™bŒ&­ÙhoQ΂^|­×pnd-’Þ +‘̪RrË…)X¢é)©m–êÝøL¼Z–Ú‹ˆÒw!TÁ”E@Ξvi`£ž¢´§áƒý“?ãΊØûHünÔAñ.`“$P«Qh¹˜OÆ^ë%H«Ó*2–‚2²‰ž²2¾²8§ö¨¼[jkm÷­GÚŠy[‹´¯³sEí^b‰‰˜Æx{L‰õTaÉ$“éa§ )"wsRŒˆÒ•kµÆ,ÉBs½“—m·3*£W’V»„{/¼÷q¼¨yC¥Ö0Õ +¯º”YTÅHt䥢y-6HqIY™´º)N.2G|¹§»eöj){EÃ~XýQoáˆÔHôùÔi¸Ÿ|2XŠW7|]ZRÝD«Þ×Õ¤>²nNQ·‹=^¢ÛeRWÝ^¾â÷®)˜ÔŠLe"›¡âfÜ£ÍC«6 ìN¸£Y™š¶™ÜâÝýä“Õd¶J©dš_¶½nÏiÝ.¯–96¡¸Bv¤é›í½ FZìDá¢Qê½Æf 5‡Ôµåz†9Þ¯Uã¯Ðµ’ŽS­E‡„›u4Èǭųb42´™!ŨÖff­¦c›¼ï­Þ›[-¯ö¨¼I/ÁA­zÚ¾ÒÆÂ8º‰5)í­´bæáºJ=Ï„ZdF}i\µ–¡ôTÛ4¶ä’ôØ¥Ik©èõžR)R¨8¢¡X(çד¶¥¡å&j=;ŒÈ¬d-¢ï*Q¶¸©'¨úÉÞU$¶I+vNéç2|š2¤Ä)Ñë“#t–¸n„j2¾‡ ÌÄøµ#7±FKŽ³‡½œw¼­u™5=ªý.•L¡bFd9E¯8ôÙÊK+u­V{„e¤ZŒ¸ÇÂ3Ë5RJÉÁ«[c¹ô;ÂTÓ×tþ¸WâÌ_NŸ3Ôê‹imx½.!ÒIšh#Y•ÈôLÈõìàé5(]}„þ›Ø®*WKq‡ÐµŸY†,‰yFÝ*M-+ÄÕ³¤úL”„¬®h¹ë"å-BÊjµo•þ“툗?Û¿¼xx¿¶¶2¸MÕfì˜[†Œ‚á‘_BÊÖ]á\=?•×Ù»‡/ªOöí}ÂòćÃÅ4X5(‡6U.Š¶ÉÙ-¡+Ü’Z|3;\¸Ëh·+Œ”­©UoÐ[ ,©otšôÜ¡Ê5R5:›Œc3TaN¦‡Dd™ =5£R‰&“×n;o+;m­'³u­%•$÷SkÓs­z½tÌ@®ˆ2k^¥ ŒžI©KK‰ºK]ÍEÆ[EóƒÍ³ñ²î±‡z£Š—­Ÿ sÒÞS(k\¶^¦â*Kí&ÞKšÖÎéè™+”V,Щ·3—Ór’©—›¨¶$“õ2;ç!QiÌ\í&2ÉQ¨¬3»ló$‘+ßmÜâê=²mýÂì\T-M}Šõë0‘0‰Q›Ã¦Í/(ŽÜ(0Ä>–ØŒìÖOœ$ÔÚü‚rˆ­$˜¨+ÿÕuã  O'¬0PÎcÐ"öQ|aŒ¼”F>'Þ±K”‰2ÖBŒ‹a“2¹o´jð‹*û×ØýE³ÝÚ½fh¯e]¦±ü5‡°äXG2°…Kq×”¢’¦à¥F­IIžÑƒÃ¹F“ºJéz ÜeU4¶½Mõ\ÏõüG6œh®È\¸‹ZŒÜ˜3´VÙ¨â:Vó;ÂÕa‡BšmGnhÍ_ì½'Ú«v“Øã•þW™Qb`¼CAÂ1ñFªÕ+—äÄ’3f×ú+l§)Æróc÷=eÒ´\xNn^‹júL{“g1¼ +Ä:†&œj{¡5¥ECÅ÷©­m]õÚû.2q.Ÿ75½¶mõ–QRsŽm™ö>«IÄt—_6ÌÈ·ßž•—OGžÂüBYžO{š¶Î²Ì5ü^soký•‡abrg§ÎmÙÏÐ4šˆ·F§H’O}Qm×Ä>•rl‡ÆG²ýGΞk§/2vâd\M +b0®7¥ILùËO„¤ÊD¢­Dh?¼Í¤¬DEÆCà䜣%eõ_O¤úÓ‹I­·¤û;;H­œ—NT]¥JÞ»ÎÉ3ÑN¥w9D–÷Óùr11ò?!›¦F ;¢dý5¨ÎÒÎTY:Àu¤G +Ö¹qÀ¥hÎ-k¼åò“×ôWn lúžïz×ß>øºª“‘V†ªUAQSR§wåºÑFnÎ'Dã$ŠæF\‚˜HÝÁ¶¯š_+c½Ëq-(É-™fÔYQ±}GåSàš¬å9 +¨ÜˆÚYù›k$¥H±wL…hPO mMJýŒº½g +ÉnÙÞŠš•M‰òƒJ5Ä£Ò©Ð5uº-:’_¿qXxÑGöUo÷‹ÜrISói˾×<Œ¡EÅs*Õ‚)ic´Í8Én0z&x´¶ÞÚÅøgÖ}rçoþ£ãRù|MœÞ¾~“!ã¡6ªô6(Ó$EIÓÊ2æ¾Ê)È2Rt ’2¾½‡añ¢›i¶¯ü­çÒVJÛ²z {—C›ZÂuér\69;i%ÆMfV#†é[Ü.!\=£8Û]ókû/IY]©-–Kä¾Â Ò4Êyôs†ÿs?Ú1±žN]‡Ú‡¾CÀæîýqlcVDÁ+ivŽñ ï€g•Ú¥>=3%Ø%Fæ,ŪÞÍ›g®EjvBù“{ dÁ!2!’*NDp+ RFQ›#}ëpß}ZÜqGÆjUöŠ¥`e±P㞯eo\þPbÉmŽ€|Üm/!M­$¤¨*#+‘‘ê20ÑiÇs3ÊÒ™]Ó€1ì$_s¦ÕzÈø’—.,ØÀËÛq.¥+B‰IQ‘–Ã#Øbðw—Ró¥ó€†yÿ“Ø_÷,ÿŒ:+cí#ñ»QĹ‚´v”ël´“RÜRP”–ÓRŽÄ^Èþ +¬ÅEMoCSeM4”¢Y’TÙ«f£;Ÿ0ùsѲwÚì»Kù·{pWô:žýZSã#MçÖHBnEu¹êRÆì{’0]f2^[”HjIDZõ óØ+Úãå +±•­¿a| ã{îÛé<ªÍ]cÐ'7¹¾É‘-:D«•ö•È] +ŠjèJ;O,^XµF‡:’Ì7åÆ[MÌouaJ+ˆ½®]Ë‹TÓn;ÖÒì®×ÜÏ$\ZztzDªôÆ Bot}õh¡7$ÜûçbnÊüë– +¬™Æû¢)2¥™‘!o ìi%^Ú…Šª}×ôÊ;w;zOW bY¹0­9$ GzlU) ) Ý §ôI±ÚåÄ)+U†§·~ðã–Z÷n- +­NEjd©òצü—ëŠ>5(îb´é¨EElEjTsyžóÏCæIì‚|çÅ^Οã CémˆÎÁmdîÉñù“|Â$4.°T ÿÖuã  O'¬0PÎcÐ"öQ|aŒ¼”F>'Þ±K”‰*bK~È‘Õ4ëgt­iRO”Œ…ÕÉ.ºêŸ[ŠSªV‘¬Ï„jÛ{ò„U¶nûKêŠgÖ*­9>¯:Éʇ–¥™#_m­Ëm‚ÌŠ7’²|J¹7âý^Q23b5×Z%ÂSii¨èJÏM¦Ú-––Ûùa¨sqkmÛoÒ}+TÍdµ$’E¨þ,­J‘¾ÞªI[ú +ktSÊ5h+Q¦÷Ø|d>ª”Rµ¶–g|vÌâ +œrŒ–§¼‚Šf¦ .(·3VÓN½Wî ²­½V-¾î»úJ‡±efD¶§»T’¹Mñ¼£ZK¸«Ü…#N+R[J¹7´åÜ[Z~Z'¹U’©H-¼o(Ö’ä%^à©Å+%´97´àñ]eSJ¢uI',ŠÄþì­Ð‹“J÷M%dƒ“{AÌAZ”©RW:KŠy$‡Ü7zIâ%Ÿ'|QSŠV±\Í»•+Çmn*­K6ô7=}fÖ×Ø”^äÚ<9µ)U'ì¹<´¥)%-F£$§a\øˆ\¢–ÂÖîz²ñ]j¥¸R*’^a: -Õ)%m–#>.!EM^öÖW3µ·zž#Ä'¸Å¨O˜[ÜÒ¦Ûyk#A—Zd•lî +F1½Õ»CnÖ{)™éšUÌt¦iiîä³Ý4¹t¶Ü\¢’²ØQ»ëgÑʵM…ËÝ%>…Ë/½JQ¤zøwÛÎ( ­nÎN÷>²qE^dFà?Räfí ÊQ¡6Ùd™ÛPsjù­¯‰E&•·¥âªÌøíÄ‘T’ë ØÐÚÞQ¥6Ùb3âm^öÖ3;[qÅKÖ+,·uND†›¶ŠuJI[V¢3N)Ý-c;µ^Ze<‰z9ùŸí +ØÏ'.ÃíCß"àɇ~¸¿¶1«"`•Ô;Gx…À÷À w•l¥R2G…êئ´ù7*]Œõ¸»p’ã5¢Á3Dɵ[Í«å«°®âeÀaÝ{šGæM¤­5³Åo÷㞯eo\þPbÉmŽ€ M–Ì’RrÙ„j¸Z¬ÙhÊl͇~‰‡Ó­·{HÒ« +5pG|Ðr·V”ÝS%xÝFŒU„•½KÔsa'S/¦ýuÓk™ +Eîá<º—/œ´3ÏüžÂÿ¹gü`™Ñ[iÚˆ}†¡tF­N‹½•'vÒ7ž‰¹uh‘ñ_”L">nÈž•l“aZõ8Úè]: ¸Õ˜1E=Å©m´ï\ÛÊQØ×Þ°ÄIJ.í¦¥Øì·.’Ë$ÕšKµkÞb™µzÆÞoZ"65*E(§QÚ¢;¡sÚN¸íôY¿£O)rñŒì;sQ•î­¯­ñ>5â£)+oVê3¢aÜ?…píR¥@b¯"»TT5›æ¯0e6.$ÊÊ;ŠVrUM;x·¿]Ï”9Tjö•’úL›WÁØ?'PšC¸Z5Qr1 ÇÍwDušlDi=©ÒÔ0èÕgÞ׋nÜSfUX()É-Ž6]ªçJÎÂ9†öé…ãUTî!\-ó]ÛŽ¢#ÑàžÒ¾¡Z5gYÂ7µâîúÓ±ZÔã)¥³+K´òk¸ dÉš½Et*Äíi¸ 3!J40Â’•´L¸\+­ +Ò«’µÔ®÷êv,­Ã<í±F˵\ôq¾Â/ â +’pÌz‹¥Ri¨¥%J³-¾Ñ/DôO^õœ+Nn0½½úoŽV}2Ef•·AÛ´¸d•IÉe2~†QäRd¼iJUÁ$iY ×ÖܯßT‹„ê´ÝÒ^¢ÊRR¥M[líô–FM2w†ª°°Ûó© >oקÇ{JþhÃM©IAëØFCëV´–ÿÆ9½:µ–Æšyºª$».{Ô%„ñ‰áº‹Xf5>Õ÷éζ—¢ó(#¶Î÷ÕÄ>|äãµÞô¤û+V1ñ’^öq^†z³¦OÃø:Šå +!GwJ‹¨”JJPá‘™ö¨µ¥4åQJÿŒ¯ôl+^Є’_-øgj~L°m£™S‡LR*5™±•¿q*j3JÑ"`“{¯]õ‹yùÉF)¿xž­·eó‚NRá$’{:Ïà<ó A¦CªK9Óhšµ´ó±Ó}Ïz)VI¨¸øÅjV¨â›ºñuÛj|_QE)´¼åkì·Wb +ŒèÄÊ™&žqÚúäYFV>é J2Íöê1kFÒkf²Ddç>*ötÿb3KlFN k'vO¼é¾a HX* +Ðÿ×uã  O'¬0PÎcÐ"öQ|aŒ¼”F>'Þ±K”‰&M!xz½†dÍj-E™ Ò×4¦>´¶ÛŽ ®hC'Â4ýPŒÅbåM»[T’¶û?Q•…¤§d÷§¯v¯YQ "Ø&B)¥œþŠÔ¨«©%âq;ƒkB Z&§{s +WÅM9¸ÚÐkÓr´iŨfû;ýÑ’l…ð%b€Ìƒ–ºåB“*b]%'{¤–ÚˆiÛs.1n2¬§Š;"¬øîb…8©BRß-^‹¢6ä»ÒñÖ*—OªÈ6ÚIIu-¡imo­&fM¥JÔFc2u)fJîÈø´K=I¶eZ†Dðîù¬¥¦§Ã8”wgoi'Ãmô*ÖÓ-KI÷$±’PrÔüh«öíÔdÆ„\£jê_BÔvÃYÂÒ!QjG%n2(Rj’ ¥‘(Üez$”ßa®'(9¥ö. zO–Š©¾._A]Fȶ ­¹²Úç7E•K™7qS‰7Ðì]©ÒØdbʸ©ÓRN×Ymûù•§N5m±¹'èW<ø™Ã8‰t:å5ÙlPåC—*C.©*“‹×%*-\/xVx©Ŗ­¤š·^¢°¢ª[.ù8¿B½ÏG äSâçixËšÅ\ZŠÞekJŸmØiÒÔ¢Ôdd)W:JJVm(µév£ÚÞvVs@w«'xýTêTÝÅ·ã%*}ä†{ddZŠûHY‰ç/Ník—Ü/¢ ¥5¯Tu÷Ù´¥Ç“=©DW>"3Ú%’0Y/ñD°½.ŠÔ˜ûùÅ)˜Ž7PBÒìg–é‘-”ëE¯´ÄjÅIÔË©xÖ¶ûq¹•K&oÀ·~çÈÈÍZÆ‘ÚqãE +Iq®­fµ©Òå-bêX¹8Æ\jåôa9¨ñ§›Óc!ågá\sXÄMÇ\¶«TêlY‹uJIÇRRÚ I$íÔ\cRPY•²óuë{O´Ò–X½¹.½ +ö-jþG0†¥³QÜgÈCMÃ}3Zq.G”nÛ"M÷3+í1‘ TÝLº—k=¶â|áÀÞý|,\GÂX[ãÕÄ*MAfÍ2;†ÄCOš¬Ð¯Q6D[Lö˜øá§8ÂNëß½½ºÏ­e‘~ójYÂt:•MÙç10#PÑUÜy +u+ÓÑ6ôËQ÷ÅÝ6Y^ÆÔÔ{ÐŽIÅlÌ›î•"Í)|ÞÒÑ&ÐéðLmÇÒ­iÒ‹r³¼’O·¨¶Œä¢µjmú -Y;…€'ÓJžn%‰ñS ˜yĸë +½”…)'c°» ˆsr‹Üöîw+ZšQRZ¯}]Œòr'èç þæ´(_Œòrì,¡ï‘?r~zúâþØÆ®‰‚VÑÌ÷4ó qê¥HÌÎÄZÌψ€ KºæxùWcFR•04‚~¢áîu +’O€Ñ[R’ƒÚ-ÚS†â´Û, Ûi$¡$V"Iˆˆ\°㞯eo\þPbÉmŽ€3»É^‡2‘–œÉôÁ…Jk –¹ôëù«fE×&æBÙ-à•™&Êm#+øZ“Šh®’ãÎi+4߄Ӗᶢâ4ž£NàÈâ y5]M*Ü€¥žäîýË?ãΉØûHünÔCj5ZE +tJŒEh¿Ô:Ùò)ræ£uc9Ts®Î2;tØ·Ô†¥¸¶YÑYÈlîN^ûFpQ‹Zß‹{v=ÆOHzúÕŸYâbl¹Öñ#-³½bÄ-ôÜÇŽ;ZûíØÉnrìÒÂFMn½–år“®äš{íw¿QÛåγ‰Y­´ì(Œta &R™oDÔlÉ[vŸ¶(ÆÖ¾©f]¡×oæåô*Þ\ñ  ¿/r5aä ¢‘'R±¯”õ¤0ÑŒå5¶[Oœ¦Ü7±™Ë…aêñž‡öê3J ¢q»îo‘Ü”z…‘ÂE(Úþ%íé/•fÜ›û+_ÐWµœläÔß™Æç>Ü¥0ûZM¶ódIJÐWÔz`â’Jê׳߬«®Û»Þ’k°æŸœ~1¼©páÎ5J9Œï†H÷Œ­víkw…:l­uekïû»¾Çm[µþ$Ç‘±&6%²—+Ô]–ô‚kEZ .´Õǯaq +Ã’Q˱E¢®¶e'-­£¾ +ËSSÓMD8³c´þùŽ™MiîZÚhä1ô­ATwØÒµ×åNyn·=Æa…—´Ó0Lsq0ê§jò&:Ô¦´÷=+\O%`ĞNJÒQjèÈk©9mn:»ñ¦åÜ©x+IÔĨVdV^˜ë2šÓÐ#MÒây `­L'IB×[nVî¦åµ¸êÜc*6\ë”×*J—-E¥Å·)½4!ôìZKŠÃïÑ#d–¬·³ß¬øºÍÉ·¿jÜxØ—+uÌYML¨kndÒœâÉ6Q8E¢D\‰"âa#¾Å?§iYWnývú6Õ?.•Êkm¶£EÝhDhŒù·w ¥^í¬øÒwO ¥)Iý’³[‹#Q¨¨­Î멞܌ãk«U3{S`Dn—e´Û è¤Üu&•µë½ÇÉ`£¯[×¾ƒèñÖâÓô¢Ù eª·‡YˆÄfØ4ƨ.¤$\÷e‘‘‘÷5¤°±~ˆ¸údª¶Ûã$ý(¬—:ÌMC8q&'ª¢Ë‹nëiå«ID“¾Ãèªé­ÑËè+*ÎY¯öNþ’®œr>OA…/J[³˜7ÙÓÞï»×)¾Mb׃’M«+_}Šºí¶Þö·]:_k´†Û±"Lq§Ý“é i8îÜÔh2Ù¬Vx8½—Z­«€çÝÛzîïé0ÍJ ýZT‰²W¦óëSŽ+•J;˜È§¢·9ÍÉÝï$ŽA>sâ¯gOñ†"´¶Äe඲väûÎÛæ¤"!õ„.`ÿÐuã  O'¬0PÎcÐ"öQ|aŒ¼”F>'Þ±LØî6TÈ’ZFÎ.¹“Òpëëšå(éN¸™Vh›ÐÑ%!½„gÆ#«`œ³$õJIì×tdÑ®£–ë\SK±–Ówf=bSM)z4êK”ÂA¸WVšM$»÷./žÉM_ßµè±ljÛ'àôÝžÖÎ +‘OM*mG ®UZ Ø,ÉLn+#"3Eµ¨¯´[[å›+²’W.§Y+]_,›FÀ¸Ò¬JP¥¦tiHy·ÒÑZIþ’ô*.#3¥š/mšû’§›¯ašÓœlÊb2¨o;GE9ÚrÚvN”¥¡Ã½ÍÞáì²À¹)fzÛORÕ¨ûF¾W»¯·¬¿ðV°î#’ó=ÞtÚF™1ž’F§Ò¥¬K;p¾òÅaä¡)7w)CbÙc醪³FÔ““×ÖŠ\—åN‰Y«HˆšiB¢RèUšŠô‚ÓtÖWQ‡k©\A‹ÃÉS”¤îۆΠŸ:59ÇRYߥ£#/‘)“i R¨jf‡,ˆŠ„ãÚn:‰xf¾^A÷x7<ÙÝÛIv[aN-²+ZMö·¨¨‡—ê} p¢QèN1L‰{eoi¸§f'DÖ¥w9*`ÜÔ³=mEv$î] BƒV[%™˜óåâ\?Q¦¹)š¶æ´-·w3iÆúÓ>Rî½jylìâï÷•:¹e)=’Vúny9D,?§ðëdL&,e<3q;ãDesîíaÜ®óyÎÝ…&–XÛmµ™aÌ¿S¢S'5K .,éÑÙaÿ7¼BÜ­ÃC; GaŽðÉkÔ¥~¾Ë—²Kf¼­ukÞzulᨓã×]g ºÕN³ˆÒ¤$]“N´¢Úˆì)M$õ)æ±|q kk^\¾‹¸—8*ME9”¼6¨µjŒVa¿!oé¶m6DGd[j­¬R8&µ_ÅÍšÅu©ÛZŽTÊ9ùz¦ô§™@\Yu8ìG“æúQ›23SlìJŽÛEÏÜ–½JYºû/À¤+åW¶¼¶êí±é;œLùrÞÃÏèÔi­ÀžMÊÑZ«TÒ­ÁÔZËŒZðNÍ_ì³.Ò±Ä[+¶´­è>ÜàéµS"D »w£t!:Oé’PK%%zõ™òƒÁIÞïl”¶pV.¥ˆPq²÷ªK¼òéÙ{f1R"Ȥ)èQéNR¥µºh©ä-ZZI?¡2âJ˜LîNþùÅ®¦:¹mö9½)ŸX™w¦@ì(ØyLÐœ§t9q›{FJ“¥¥¦n‘u÷ãä–É7'¯2k‚·Qtk(µ•lNýw1FP±„<].*©Ôã…+)e¤-ÃqÅmRÖ{LÇÚ…'¹;¶ýµ&šI-祑?G8o÷3ý¡BÜg“—`¡ï‘?2}ù0ï×öÆ5tL¶çiæã s¾Ë5O SéÙ?Ážm‹±j·œD#Z£0¾ ²\D”™ØŲ`ÍYÈÝ7!¸>™† y£­£t™$úùW­Ç|ff*•š@N9êöQæõÏå,–Ð8áx 7)§u¶ÜI¥I2¹L¬d`­‡Ýw3l«9@}FœŽd©è.+ÎéÕ5Ÿ «ìJ\âl`e©Q,‰I;‘•ÈËŒ…àìÉ«yÒ»À¥žäîýË?ãΉØûHünÔB1.`€HÜpM#âu5YS ;ÏïwÍD—)3"àñÓî lmWN›’Ûêë/¥ÓQ{ßâEzò;ÈvtI´Ø-Ï‘!ؤµ$¤nWÔÉ«ÇÂ8¬‘Iݵ¾)yÓR“jÉ^ÝW-jŽEj4l8Þ#¨ÔáÅmÓy-GuÃ'Üq•h©)O(ú¼ZÍ•&î“ÕÁï-Xg®ú¬ÚôžNÉ|ŒqéEV‡¤:†¾\²œq{ )+™÷íaõ«W%µ^ü”#šýEåGÍþ®u‹5I°àǦKf3®ÈpÒÛ®,ÈÉ>32(cbÔZMæ¾­ú¶—΃M® ;î×°»2çaVå½@i†á&dJy0Ñ™šy ²½‰™ÞãŠr²–ÖånŸûbh¨«­Ñ‹}wÞZñsv©¿6Lk”æ_nQÂm +vêyâ+™%)¹‘q\õ²Æ§$›ºoЛ Ó³vµ¾“¥7j½N2¤É«A€[ùÚrJC†F¹ ´Sb×sØ*ñ‹U“wW]…ï«+IúJHY¬/}J¥ +˜LÌ\Õ)Ýyôm$'tõM‹I¤ÝÕí¾Å^¦ÓÝm{µ”Øs!UjòuÚŒ8M¢Z ²·àÈ_BÙ¦ä}ý‚²Å¤•“m«Û}‘o3fÓØ­w»^ÃÚ£æÝ\¨´Ó’jp`-éoBi©V·Ú;RD\|B׎«&ïêàUÐj÷Õgcϯfû\£°Û±æĨ/~¢­FsILÈ^įP­DDTZƒ1L¸g¸8¥z¸ËQX)cTšVzÓk®ÅÕ0Î)õmêë-<¼`ªnÅÕ +e%öדJ£Qµr. +ŒøŸ +ò© Ë‹/ÅRPµ·¤a¡œbIì‚|çÅ^Οã CémˆÎÁmdìÉï·Ì!IDÃë\ +ÀÿÑuã  O'¬0PÎcÐ"öQ|aŒ¼”F>'Þ±K”‰·‡ðíGNjKŠ©2]¾‹hÚvÖgÜ"ÊJ*ïbFoÀy©ÎÄÑ(˜Ž ÑÑ.,§˜6Ö“ÝÒ.DJ#2Û´bÕŬ’pÛ}ãE©G6Ç+ES#X¶™PbžåÒvJ^q‚#J‰hjæ£##¶¢-d.†.-ßbMúDè4û]‘áSòuˆª­A~%1ÇQ5õÇŽi±éºŽ¹%ÞWZ)Úû¯èâ|œs·§éÔrG‹)S ÓdQÝ)´·ºRd¢^ŽÛ)&e«^¡l10•ìöm.•'o{·¤ðñ^­à‡Yj±Q”òMM™™)*"ÔvRLÈÅiWŒýëØ'IÅ]žË™'ÅMÒ£ÖÕIp È$©—nŸ4%ž‰h•îzû€ëÅK%õð)9G2Ø]Œ‰W¢Ö(Qñ5ØЧËj:œJ’fF¾#±ž‰Û”[L$ÚO]›î)RŒsu¯¥œcü‡â<'Q’–iO* +¦ª,W.•šÌÎÈ#Ñ323î–ª%w­«Ÿzô2¶ÖÄw¥dB¿ +±Dˆi®Æ…:cqVâT“±«jn“;|}c‰„µ'®Í÷#áVœ£ÖÞ¾–Ubü‰Vp…r~‘!ÊRêÕ•!i5¸F«%7¿F[.>XLZ©}­\ûbh8]­ˆº‹#ÔÍéQS'©÷+nSÎ:ßsKzD.·O»°X±/V´ïï»S±w4¼mÙ\U»O&¯:ƒ8QœC3ÛáꋱSKB”–È쇭WÔd*±~ Êyôs†ÿs?Ú1qžN]‡Ú‡¾DýÉùZC¿\_ÛÕÑ0Jú2KsOx…À¸ÆÊNPi9-Ãu\O[|™‡OeN¬Ììj2. +Êj=D(Ø!Æi¹>«cÊÍ_.xÚ9¦©_º(ñ]+œa™‘õªYk1HñŽz½”y½sùA‹%´8^ÃYyÈí7.8>§†'ðu¤I×Ç’m¸“ÚVU¶ +5p`üÐrÅTÄ0ªY:Æ—káï9D½G*:55!ÚJM®b‘`š¢àäÕ¼é]àÒÏ?òw þåŸñ‚gDì}¤~7j!—0@36B±%; bEͪILv¶ôÕ{i­³$–®SØÈ9Ò”VÖ¾éô¢íR-ìLÍ[aZ´\Q¨b©ïaw$±V…ä'IKAµmWUí¬cT„¡)I+æ‚]ŽÖ>±jqÈݼvïÔcܳãê^4¢a¢„úMö¨8û%µ¢yÓRHûä+…ús׳,UúÖÓí^ºœ·Í¿E¬{™Äø~C—ºU¢Rªå9‡ND¦7STDØÔ†µ”cí‹‹n6»Zî–Ûî1hµã_mµ=ÆQÆx×ãÅW)ŠÅQâ6º¤Z£–…šBRD´\–V8z3§–V÷®JÝ»“V¢–hßßF:úÑëPòɃ¢ã,V©µD=K[Q¤ÂzǢ䨭Ù$Em¦bׇŸ3©xÙ¥eÕ"®qç"›ñrE?F²ÒɆR°ìXÌU­Ä¥T×WvUIr#›¯¿JºRÒ¬v·ûÔÃÊ6¯ Yjñ¸Ÿ'UIÉïrÔßƒå ºÍ9˜Õ†dx¡Ê‚±GZÒ¢^² FPmZÐiö—ãj)Ævû'½ Yéã,Y‚ržOˆš„ÄÔ‰—RUiQIyÙ‘uÚ¸ÇÊ…ÒQ•¯â5méÞ躭HÎñ¾Öš{¶YŸ<”¬;µF¦×£Q›§U¤IAÍ»-Ø«24›gc²ÊÃëV”Ü£9+ø–ijÖ|ã8¬ÑŽö¬ÞβŠ£•jQxIõÕwEƯȗ!N'EieFVZˆŠÚíÄ0òŒ¶~2kÓ¯Qn"¢”ZÛã§èKiôÙZô×%.j\5âfg´Ù™¹®F²ÕÅpŽYiÇ„dŸUÑõ­U9M­ê6ë³.J¦UèñgÄ7qlY‘äVY™¹ÄŠM!¦f­'•kšÊö:y+&¶FJ÷ÞÕµÄURM§µÇVýª÷1ŠòBM#3¿ÒnIÄ‘ç2‚#ºã¡w5—0ûÒ£%Í]{ÔïÔR¥DÝOÁ-]zÌu—Ê…*·‹fÕ©F§ÇœHt¢Qg¢DhUøÈ]€„¡+Y¿N²˜™©Y¯5.äaQžbIì‚|çÅ^Οã CémˆÎÁmdìÉï·Ì!IDÃë\ +ÀÿÒuã  O'¬0PÎcÐ"öQ|aŒ¼”F>'Þ±K”‰kÈVËU FÂ7Í Ý÷yÂI趧.V%£Ö>¦Õ94®øS¶xßR¾ÒpÓ-ñ‚‰×)´ÇXŽ¶ãËB›Ž·À%(ÔgsåõóÚîð[¸=d”I_Uª'·u¶–n’Î,'‡ëµX˨¹*®êVRPê[nCf–ÉN™‘ñ\}+.w6E²š[-®÷±d%Íë–ú‰®Å¼£¢À•©¸2ëèõU* ²ßCÍYÄŠ\4+Q/eø…Òš©'dÚæ­Ã~Ãç8åM·kÕº|:Ë¢Ú%©BTÓ¡%š›eM*= ZOEiYîdá÷GÊQ”””u¬±Ö՞݇Òé5)jñÞÍVÒ5eî¢âir’üXŽrQ¡ÉT•6•«èÖfeÂÚEq—…W¨ä›z’»V,ªí j×+—MSÃ3#&rU +,fÕ% p=ÛèÒG¨ûãí^­^´­óLFíB ®Wï3ZºTÙí¶û¸qçbÒ[S÷_BTfNëQ¥c×{ 4=ê×xÆz­©j31rº“V³É¯Žµ»¨´hµ*}aÊ-N´L²ö*ŠdéH"Y7®êAÞä]ÒÔBøA¨Ò²Ö£/VµgãTì^³"»¸Ä§ÆŒh§BD\GäSó‹`ŽÄóŠRÌÌÏi•6ÜàÝýì“Õd›[ +b"²M/À[^·f®ZÒ!)Ó¬Õ£H*Æ#†ôD¤;æh]ÔáÙG¢DZµØ_‡ñ•8¥®*WÕÔ1[jJúšIvÜô­Sʯ[þ=‹HpÏvE´ “--½ow`¶ŒHþÝOÖ_U«ÏåCÔ‹.Ÿ&%ÃÑYr®Û EÅr\”´ÊKn6ÊÕd©:ïcå-ƒëPvüfקJÎüâ^t{·—F66áai1ÒÜi‹^ŠúÄÔ¼ó‘ÉvÝœQ¨ÌÍ[NÃçA·R›wØÓÕd›ÜR²ñ*%ÁYß[±Ú§6%¯ª ‘Ü‹/¡Rч4ÚK‰½ˆ”{8È]CÞÂ;ÕI_WËj+ɵ±ÒõX¤–¤Pfãj½F­è5ÙPz”ÊC†«º…´ÏGD‹]Ȭ)E<°§o3mökÞV£»”Óñ];.ÝZ‹Oט–YdBªq."àFñ(•eXW×nàSƒæéêühýEÙ¾ªÿn×Ü °›#€”ò%èç þæ´(cc<œ»µ|‰ý€?&úâþØƬ‰‚XQ¼í=ár¼àÎÅs,ü}1üð²¨Î§¸£Á5ôJ­¾ƒ=ÎtäÑûI=fBÍ eá³Oa˜ÑÛ&Úe B’±%)+w^ +'õ{(ózçòƒKhp¼ v™=«àŠµ'.X…*¯‡¬š´VÈþ÷Ó üÑ&’Ú¤²µ¼&™B¤åO Rq=òv%A”:›´¨Ë„•rOQŠ¦ ìTÉ«yÒ»À¥žäîýË?ãΉØûHünÔB1.`€ú +"¾‰Û–Â…@ÛQÍ'n[/<gãB©œ5!Oˆä· Ë•ÐÞÒ.èù׬©Ç3â—y}*nrQ[ïôY$Õ°ŒûÃê|Îw5ø'«n¡B§…(®I3.á +€$(Êä“2.; +’B”W$™÷ˆT6³Ø“>a@_´<žËÄŠ¤1N—ùU%¸„Ç%èÖÝz¬W¶¡ó\·¾Ä¯}ÅÊ7Wëµ&¡…—L‚䧦±»7%q—”{±6ªÖ¶ˆ¤jæµ·«Ü¬©¸Ý=ÎÅ°m¨ŒˆÒdgÜRÃ…!IÚ“.ù:Š”{ Ÿ9ñW³§øÃú[b3°[Y;2{çmóR@‘0ú°ÿÓuã  ñ}:H0SÎQ•;€±"PW4ïeŸ±KšÌeà_ÕðÄûÆ)!²‘ç`Ò>P*>P(>P*>Pfg´\ +Ï” +…Ï” +‘òP¹Ÿ¹ò€ Ÿ( #å¡så>P(>P*p•²ÚœÇ8p’W´ƒQ÷£3¸Çõ7Ø}¨{äOœŸ™©÷E¨Ö£/ÁÕÑ0Jê2üÍn"âCìíòÓ?Ò!`ü&“b¥ïkHÖl¥Î +ßU¶%fw¶ ››ÎE ä/Á 0­Úb¯"¡(õ®D·8N-FzÏY…R°3 ¨'õ{(ózçòƒKhp¼)åÅjs.Ç}²q§R¤- ++’’¢±‘÷ȵp+ïæu•Gp\嫤|júäQž?;ƒ=Gu°fz’•q³c1##"2;‘‹ÁÈʪ“J-|ó˜^øÂÏèù™³!_TK½„Ɖz™Úˆ:&  +ˆ©çÙm$F¥­)"=†fdZÅc´¤¶ ~§MÒÎ)£T’Óó)ô¸Ž“LSÒÔxê3I–ƒ¶ÒZŒ^±)^jQøÔ®Þ½ºÕ¸U–W¾›v·Ó~![˜Íb¥Šp̘1N‡âHA&3iZ]ÐEצE{‹Zñ\õÝU¶ÝÙ¬V.ÙßNMö¤}WR—L“‹0ÜJs-Ñãa„-‡)3R›#5n„W=#î‹k¬ð”å··¢ü ð¾,ࣱÁ·ÛfFÜÜf&–ŒoPÞ¬¾ìJBhŸi.%+%ê;(ŒHéù½^tL<"½U~õÔéMáü%PŸeȯH–äæcÒ“#|ž´îzDVoD¶ZÃNÓp[#mv·Yõ£;Ç;Úçmœ7X³åœÜ3IÃ0ðU<’ªÊ¨“è‘ 5šViKkRˆôtSÝ÷òµG©B/SïgÒIE9Ekç-øG¿‡™vŠþO¨Qèñ•´‰j«Z:\#pÔ¤¬·C#4’µkÔ-7;·hÁe×m×¹b¼"¤–·Q§ß°öðÛ(•LC£R£Ê¥Ôwú¥-Qé­IZÈ®³#¶‰[XùÊN¢“›µ¡·nÚ_(¨[.»Ôi÷ì(0õc Q° ÐbUZÕJ<£r3kRÚÝ ´ni¹¿'9&õQ‹Û¼²RÉ5ñ­z_š0µc¢˜ÃLîÕ:à 2ifÙ)V+™_WùFNjWø¤ý'Þ¼T[·Æ¯¥#ÏÁô踵†$Ö¢2ëçˆç«„ÊRn)¦Ôm Èˆ®FdZ¸Åe'N1pø©?¤²k<䥳œ‚ôAÃÅèÕjý::&±ˆ^ŠÑod4N0IQš $’%mÈ>Äk+ÛM·¯}µ2ÙøÊIýŒãnûã*USÅX³6dHÉ~Ÿˆ:Ùa Y±ðx$W-\b´#–TÚû(;ë.›¿95«ØLÀQd µªÚÈ~îèga ¥·Ø-äèÉíô]áH*&¤¨*ÀÿÔuã  ñ|®ƒboGf³m:_œMiÆîËQóŒ] åjKql£ua9ãŒPÀ•yTªƒJJšQîk·Æþ…I=†FCi£UTWD4àâìË@}K¥ÈÆ{ °ö*¨¶m<ûN1Miee­N”í^ŠKaòˆ}%‰VȽ&v–¼Ì–¹6Œ¢J.\‚©¥7d'¼Bà{€Z8óRòu@ªb:Ì„±žÂÞuJ2-I+‘øÌõ6Gš® +«e_UrñR$Õt˜ÃÐœ-P©©;!dG±N»‹c¯XP¸qÏW²7®(1d¶Ç À`üà²/OËž@”{”¤–ïO”K)½m­'ůh£W(Í-3ñÅ&¡‚ño˜âì&æ𨶭J} ð[’=¤´ØîZ®) Ž.›PA©µ"v_rxæPpó°£&óá8r¢oªËG9l#›ž½ŒÇÄS̵ +ªTWa:㶦ÜmF•¡EcI–£##"w"š>¥Ù*4)'c#¹q*ž[ñ²£EWž6TÎङ$ô›µ‰*;\ùÆ<°°nößIõiEY3Às)‘Ù3%®¨é½22b>½W[ ""AêÙbsµ­¾þ·)Î;§ÁYvÂrÏŒÑM:AW^ÞfÉÇ6ø'vL­ gk™s‹g…„ÝÚ+N´¡ï^ÂÌ£bZ–nsTùjaY6$mæ™ßDûƒëRšš³ãrÈIÅÝmûåLJò£Š0¼S)•wcÅ3Qîi±’MeeLÈÍ7îXYV„j{år´æá°æ‰•úã#23#>;L<'µl+®.ëyô¤ecP .™´óQ—º]dvÝ:ë‘™_ŽÆ)S ûä!VQw]¾“:äÓ.”ŒG‚Ú¦ÔÓ&)>kˆF‡#>âÈìzJ-$½dG¬cbðΣvKZ·Z>˜zŠ;o¶ý¦‘”šûÂuº‚ÛL .ʆ’µ˜qÕ”iÔ2¡AG·* ²¥L×àÛ~““Êv'SÐ_:»»¤œ‘Z®Û®Ö¢ÕÆaŽÅºÞŽ'VRÛÆþ“í7*تz’·«š“'~¦É´‹[O‚E¬RxFÖ[^‡´N¬¥{ï·Ñ°ûÔr½‹ª²àÍ“ZuoÂQ®:ˆ’’BÕ¨ÔDDEsåa¡ÙmVô•YIY½÷-¹8±2 škÓV¸²$o§Z;YOvç«h¹QŠ¶¯z¬ºŠs_à¶õ–ÈúŸ0 +ˆ±^šëlGiNºá’P„©J3ØDD(ݶ•H›x3ž¢F¢.ÇP–êeN";îV+!³î‘k1­ã±äµlD®–U¬–Ø2’„\¹g¸¥dŠ‚¬ÿÕuã  ÕE¤VYXŠøA¤‹X5cš$z“'­Mf¡Ð'JÎ#Ø,µ—{`¾iS÷¬²tÔ¶‘Æ~MpZT¥"j/ô(•Á.õÈe­'Qp> Å< ‚KòÕ?ÝEñ +û)S¨t8œt‰‚}JŸî¢øƒÙJC¡Ä:DÁ>¥O÷Q|Aì¥N¡Ðâ"`ŸR§û¨¾ öR§Pèq‘0O©SýÔ_{)S¨t8‡H˜'Ô©þê/ˆ=”©Ô:C¤LêTÿuÄÊTê!Ò& õ*º‹âe*u‡éú•?ÝEñ²•:‡Cˆt‰‚}JŸî¢øƒÙJC¡Ä:DÁ>¥O÷Q|Aì¥N¡Ðâ"`ŸR§û¨¾ öR§Pèq‘0O©SýÔ_{)S¨t8‡H˜'Ô©þê/ˆ=”©Ô:C¤LêTÿuÄÊTê!Ò& õ*º‹âe*u‡éú•?ÝEñ²•:‡C‰É`L–ª‡º‹âe*u‡Þ¤ÑpíÄ®—†’·“Ö»1ÃzÇË£°|jcêO}» ㆊ22—>·1çºn¸ebÕd¤¸‰%°ˆ¹brNàºömiäâ@ÌÐÑ¢’"¢8-L«O“ÎScäÆâºP¯7/IAð%HIݸ¤e´ˆúâ=`côê|zLXð¢4–˜ŽÚZm´•’” ¬DD\„/hN9êöQæõÏå,–Ð8áx½³®Àµl˜b +^^0[©tm«ñ¿ÞÚi–f’Ú¤±l–ðMŒŽ)YH RñB_…Pe6¢;ÛH®i>é£& ăÈÓIâ¸+ZMmžŠ“¬Œ¶‘÷ñÞ£bõf„Ô‡ŒµÈhÍ—UÝQ§QŸtdRÅΞ¤ÏŒèF[L&þN°KJ2è\óüéûƒ#ÙJGˡĤéú•?ÝEñ²•:Šô8œt‰‚}JŸî¢øƒÙJC¡Ä:DÁ>¥O÷Q|Aì¥N¡Ðâ"`ŸR§û¨¾ öR§Pèq‘0O©SýÔ_{)S¨t8‡H˜'Ô©þê/ˆ=”©Ô:C¤LêTÿuÄÊTê!Ò& õ*º‹âe*u‡éú•?ÝEñ²•:‡Cˆt‰‚}JŸî¢øƒÙJC¡Ä:DÁ>¥O÷Q|Aì¥N¡Ðâ"`ŸR§û¨¾ öR§Pèq‘0O©SýÔ_{)S¨t8‡H˜'Ô©þê/ˆ=”©Ô:C¤LêTÿuÄÊTê!Ò& õ*º‹âe*u‡éú•?ÝEñ²•:‡C‰Ù¼ ‚t¾tO;q­Gﲕ:‡C‰yÑSˆfŒ=DfžâŠÇ!Wuòö*W[Ì1jâ§Sk>°£ì2^Âî)âuÓ5­g¤¥+Y™Ÿ™õ%V¦”T'W'¨2+)Ñ!P}€ÿÖuã  À‚\BxcVð»RÒ|ó +ÎÉëN_Ìýà°-¥äÕ»Ÿ™ûÁ`têlߥûÁ`M›ô¿x,©³~—ï€u6oÒýà°¦Íú_¼ÔÙ¿K÷‚À:›7é~ðXSfý/Þ êlߥûÁ`M›ô¿x,©³~—ï€u6oÒýà°¦Íú_¼ÔÙ¿K÷‚À:›7é~ðXSfý/Þ ²rlÝúÏx,J6NA‘î~ð /ê6 j6‰èlî +ƒ)Sií°‚"-‚ õ‚EÈ€P3¶Ët̘áø´2óŠñ3…N¤°jBà©ã"âAî-“ë›fCâd+E¤é£ßUYŠÖä‰nð–¥+iØÎÄ*• …@㞯eo\þPbÉmŽ€uê±dC–Ò]aô)·¢ºT…ŒŒ»¤[Ù.#4l¨¿“J£ªé;ºä¼;!fz%(îäSQê"=©!bÔY´^@x³©É“r2ÔÇU¬Ô’>¼( o''-©Gæ~ð¥äžM›ô¿xVÀ㩳~—ï€u6oÒýà°¦Íú_¼ÔÙ¿K÷‚À:›7é~ðXSfý/Þ êlߥûÁ`M›ô¿x,©³~—ï€u6oÒýà°¦Íú_¼ÔÙ¿K÷‚À:›7é~ðXSfý/Þ êlߥûÁ`M›ô¿x,«Y5n÷ÜýáK؃“¦ÛYçï +ƒ&Ñ°ÃQtx<œA`d(ñRÙ +ƒÒ"°ÿ×uã  8S­­3;€> +„“â|˜ÙíHè[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨¢©H;Y ±SÐE°÷n)$­`B[$ìrddú[8ÇÓp-¥^«ÈLxP[ï8£±PW·|ö +æÅ„ªYlÅ•,¼bÖ”J5ÆÃÝ#ûÍ'bwDö)Í·ä­zÀÄÀN9êöQæõÏå,–Ð8áx0r9‡—l2Šµn ¥S%–¥Ç–× µ%E¬®ecjà±3HË\¼£P$a¼N[ßᇟVŽ­JYµÁCÉ#Ú•‘Ü"Á.…@p`ºÌŒN¨ú{HNºzˆóè[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨è[}¨Ž† R@dÀBv¡¸ä’Ö@¦çm€¢oÆ@ÀÿÐuã  µòÛU—NR!ä~… Ë ÐVÜìS)£º]RNíÄÒ-ZÏ®!cר ZH‰@ƒ›„±+He–ÐVJP‚±¼8ç«ÙG›×?”²[@ã…à »:<'QÈ®(¦åç°¥o#n>&†Ñj•FI7L‹j›ÛqkÕ¬«búf=¢Skôy)‘ +{(}—w#JŠö;q–ÃçÿÑuã  àÎÄêJp· ÊIq9)H=§`môßl^UJl¾ˆ¼ »ñ°ßˆí€üGl7â;`¿Û øŽØoÄvÀ~#¶ñ°ßˆí€üGl7â;`¿Û"Æu¹zVIðÊiô2ß8¢¾²§Ñâ£ZÍç¸;¡—j‹ÜÌRNÀö³aÈÄl‡á&aIt¤Vª*9µyŠ±­ùnð—um2Iˆ°$†ûo”TBu*-Få&£wØä8ç«ÙG›×?”²[@ã…àuQ™l`’Ÿ$ñ>{í Ûé¾Ø¼ wÓ}±x@m^4*Ô9Tù­¥èò[[N¶¢#J²222>àsäR¶þj™H’jãêé_8äÜ/)Ã3C.(îäCQê+ZBÅ«P6üGl/¿Û øŽØoÄvÀ~#¶ñ°ßˆí€üGl7â;`¿Û øŽØoÄvÀ~#¶ñ°ßˆí€Ó)³.¸€ŠBŒßtO(¾Ð}`@ÿÒuã  àÊà +w”h-@ÿ–<ਹ$l£8ûSq:HŠ…[@a¸|EÜÚ2°ØIU×±q>«¨r±žF:¨<¥DL8m_‚Ú%™uJ;˜•ŽŒ‚Ûva<\ó¶Êþ«£û™"ïc©þ&S¥Hãñír…ôìs$=Ž§ø˜éRǵÊÓ±ýÌö6Ÿâc¥H?Ó(_NÇ÷2CØÚ‰Ž• ü{L¡};ÜÉciþ&:Tƒñí2…ôìs$=§ø˜éRÇ´ÊÓ±ýÌö6Ÿâc¥H?Ó(_NÇ÷2CØÚ‰Ž• ü{L¡};ÜÉciþ&:Tƒñí2…ôìs$=§ø˜éRÇ´ÊÓ±ýÌö6Ÿâc¥H?Ó(_NÇ÷2CØÚ‰Ž• ü{L¡};ÜÉciþ&:Tƒñí2…ôìs$=§ø˜éRÇ´ÊÓ±ýÌö6Ÿâc¥H?Ó(_NÇ÷2CØÚ‰Ž•"Û¨ç Š*õUy¬À~t+ïiBBœjût ös +{Lt©'ãÚe éØþæH¯±´ÿ*G«JÏÂy*”Pæ5~kŽI3.â’w!l´dË•X¹w$™v¥eN+ŠŠë>:IOÄR®z°Æ?²'­+Å«2Ĩ’ôwЗu'©i?‡”CÊ..ÌÏNúÑwÅ{L‹X¡R°¶€;ÿÓuã  è® Vª·L&Kk 8é—.‚MV÷…R»±Fì",eˆåbÚÝN­5Å8ì§ÜYšŽö#QØ‹¸E¨mt ¡‘ 9]ܶаd,–b§ðv'¤ÔYY¤‰ä6éÑ6á訹c E<ðhúR–Wq¶PëjS¬’µµkâ=eïÕI£/À{uI¨= 㞯eo\þPbÉmŽ€óZ´n`¡–5 à—ˆá¶íEôÅ5$ìzÒYsÎÑôóO^ã;DS ¶o¸Ûw±­D›Ÿtì64®ìE7bUâ\–`\$I£U'MR]=‘=vÞKuhÓ&Ȉ®wÙ~QÒg,ÎñekofT)E(æû%{­ˆÂ4¼•bšÝ9uxwŸ„’Z‰Ô‘YIG\i#;™p†]LDaªNÇÆÜý(Å•:aÕãQ_r%k݈®”uÆI3¹‘w*b!fÄ)9l=Ù9,ªÕº Í…4Þ‘¥:o4VZFFâäDŽþ±GYFR»VM.µ¨FŠâïÙ¨öpÖG$þE,b8Ï•K¦œÖQráìFfW##î•lZPÍ ~2]çÒæ£-ño¸°°~EzuÓ*JáÅÝP¸æ’CJ5i;¥µ=á‘ZYR¶ù%¯Ô|©,Ò·S}g§UÈÎ3¢@v§6‚ûQZB\[‡¢z(Y\”dG{-…*µõÞÞ’åFM]-×:µ’,TˆQêÒ(Ï¢žææµ;«SKQ(Ó{‘wl/çá›#zïbÎnN9’ÜÙîå?$ò0J T¨ï=M†q[ë±è»!¢I÷ï¨|0øœÞûkrK®ÌûT£dšóS}G#øÂ|É¡¼§ã¡µº“Ñ-ºWEÌÌ‹YlÖ>¯¯}ízQóæÝíÅ_ÑÄ©““¹Ðh¯*Er*-Ô Öz;‰)Eçz=v™ñq Uu)G+Viö»æÜT³n·¢å5C#Ø”ì&dÐßBæºL°\Òpõ’uØû‡atq0“²e%JI]ì:ײE‹ðËqÝ©Pßa¼L6fDwtö#‚gcïŠC ;'ºåeFQWkadÈ£N‹9TÇc-ÉÂhÙ2á鞢M¹u´$¦®µŸ9¬»L¥"˜’P¤¦½I~$)rÙŒ·n“Ñ7 µŒìvå(âa'dõÙýÓ§%ÖØz9AÈ•gVžIÒ¤®‘¿Q—®“RÒ¥j=JWì>8¸ÏPªÆxñ‹ß߬«£ªOešÚa¹˜¿š¬‰Ç[j–êX˜¥X‰—±'¯i÷J¯“¿¾ÙÖ|Ý&Õ¶+¾Ã Ñò1:¯€æã’³S2PÚ#M”Ñ— [or=V*ø•Nq‡ø‘u +\â“áø™gWr[ŠpÕ=5J•æ"+GÍc$é•Ó¤Dfe~é¢ÄÁË-õ–*RjöÔcñ÷>dóÍ{»&ƒS¤¾é¨éŽ´ûW=B¥ ׄ²%?Ñ¢Öú/ ŸTfJSº +[‰â-C®!BYlÛjú‹éÃ2obNlj²C]ÂTêF M¡f¦ ‰%]FⓤJO*L¸Å°ÅÆN)}’FÒ÷E¬ß·Ó°Åƒ(ø€=ÙÔB…Oƒ?~°îú5–â…ÝÖ´OèËŠüBÌÞ6^­»Š¥u~³Â–—Ž +Á3±ÔÉ ) qˆÏÊVèv-S¤«wl>uªªps{¾—bêqÍ%µ–y•ŒÈ^Q«; +”*‘(ù7Ÿˆ]§G¦J%ù‘“¹!ÎIhŒÔNr‹`øÔ¬¡vöFÚËãO5­½ÚÆ>qÒ”…mI™|µªwW-”lì΂¥ ©yLÁ áÈÅ#zL’ìVÒGÃ%¶ZGrä'U)äßkú6B¢ä·;hú–ÔÏÉÈŸ]oíˆ[-…PÔiTUg‘}E¹ý¢F£-¤ävV€þ“I¹ñRëN9êöQæõÏå,–Ð8áx²NÈ_xsÒY«áÝ—üP”Ñ^ùöX݈]ÑÒ…:Ñ8£J I%(¶‘_Y‰Õ´{C§Jˆ…îU Ö°gCÍmÉ–ã'%£Ü®”·cÓ%µXBb$š“³SOU¯¯^£?šË•Þ/j{¸”ØeMN'•úmM†h”XRž…HJ ;’›3#3QqkÖ–WS:»”Uµu-E ³(¨n›¿eöž>1§ákÊS½¿¯¶2[×¾*^¢ÝÇ”Wk“ŸÅLbVâQUL€–Ü„™¼´’Rld«•n¡õ¡.nN-]ºúÛsç%žiÙ(kêi}ÒóűŒãc*M2lUÊ9´Y$•Èmm6ÒIj#3±ÛŒ|©ø®{çKÔ}›M8ït’G¯T˜ãÕüK +2éõHÊM,ž†©Dˇ ÙêËÄ¢+ ø…”ÕãwuõIÙðôKS²·“Š·ã*±@ ØÕWL¶ıV¥¼ò\Z<ÊÇs.¸z´‚œe'_cSu»[%.Úw]›Qça¤¯ÈyÚ›.¥‰‘ïJó"5(ܾ‘è•Œ¶Ø_B)kŒe}]V)Ukœ¯ªYmÞcºÅFEkcH±ªD©Žâ˜ûÔÔùiÌÈ”“3Ô]ÒÔ.£ *:¾Æw/©%ž­öZ$tj‘.8bŸˆ§)©žÒ%É'.¤ž‘]Z’ÃN2á²ÎßIƒ‰RÓÖõ}Â|Ni¨tÊŒ4µ;L×iϲ²œ—ŸÂc}ÃRY÷=97(7·Æº¶¥u°i%4·ÅYß[-HNáÉÆUb¨Ä†+zyÓÉ2î–ƒÉ3Q(ôI%ÞáuªqKZroVë2µ¶Î[œ,»uôúÄŸ,Êk<[Ëî¨ë vÝÝ‚Ê~/ɪ|«½Rþ1N6šìœR—O˜Ú×MÄÒd­$út‰²]Òd›ÜÊüƒíCÄ6üËzK«¬Üê\SôX¬ÎB±>£¹ÄæêrI;|ɲEøÅ0ôÚ­“t/oßÌg½,ûådÿ~–vIÞKÙ=¨ ä7hu¸2ßio%*Þè2Ó2I™\»„31.ÕiÉþ z^¼gµÅzõ—î;Ò¤DÊ}Z¡Raú}q¶KBd%ÃZD¢4 ŒÍ:)îÀ‚ñ!NÞ2›o³‰˜¤œÜþÇ%¿"pŒ$þmn›'‹TGkBcƈ-ïWi›‚ÚÆe5s„‰ã/IÞ@?ÿÕuã  è¾ /Çf} ªþå$ø³S÷˵Ï`ŽóÇ=‘þ(ÛQ|…J+NÃ4Ì—a¹X‘‰o!š³î2ˆŠJLÖ’#²\]á]ÉWY6äßÚ}¨Å:rRÙ™z‹î.WæU°¥SD†Ân$„Â[}¤¼Hg@‘k,Œ¯n1ñXL³§ oSo¾çÕWº¨Öì‰zxž¤bêívŒÜí³¢¢KHOÞe¶Jt¶u·-›=*®œ#Q½K<~ñö© íÁm”`ý;Ï7 +Ö©õôQ©ÑéïÔêSwH§¡Øµõ¥-î‰#6ôy‚t䢖ÛBí^Ío¸Î”›üIÚëVâ› áˆ1)”WߦFTè WÞi­É+JŸeG¢ZˆIâ#¸»Y¤Ü_ØSú^¶)Rñ²Ëã%ô+¤XX5ÌK‰&ÄÄ5šE:lÓ$»¿Nµ4•XÖL$¬k#ÔW!‘UBš’MýŽ«ñÙ¯¬øÅÊ£Z–Ù} Y”ÌGF©BjÇ; Ô\qÓŽ˜êuD…)M¤ˆˆÌbÔº…X½Ò†«ÞÚÑ‘NÍҗयkn"ÆoraÁ«Ö%ͧ­öچ夢:dï5Ø6•× <]ù»'mkÿQ…õ^;u}ÒR'Óáʬb‰Ê„JM‡¢Mœ%’—¢oS+øŒ¬#e7ா¨“WêÙs*0ÌÔž´£.­iðòËAE»g’}Û +SnI¹/ÆnÝûL[Î §bÚ”ZT=õ‹GSDôVÔHqzZ&££rÕ}µšÛºÅ´šouúsLžÖ߇+HŽÌvݨÐj/H4Glnšˆõ'—ÞÔ.ÅÂÜìw%Ñ•Ô$öºOš‰Ž¨Ð±=B$s ʨœÿ0BtФšÓI$ˆø\¢˜—Ìë['M%òŠÁs²qcQ?GâDhÈìi“ïˆÌÅ3-÷)[å­Ñ¦Ð’5‰²ë%°„O©ÑwÜ—i‡'ž¢¶ùlÜL¦¤U&àZËQš˜·ª’ÞzlÛ’ Ó¤Ñ&Ö#Ù}b*NPζ}M=·Þf4¥—ööÛ-»amá$CÇÑpn¯M†¹I¬ ¸èmdšB’’"U”}k^Žl­ë¦ŸwÖÊBÕ5Kg8—£‰2½‰*X£&8neRqŸ*ÌäY¦ ”¨‰E$EÜZTÔk«;Þšß}áɺs\&D*G•ÔÏÉÈŸ]oíˆ[-…PÍ©ª>È×ÆßÚ$j2ÚNGa)pÞ¶ÑÞT½HÈŽz½”y½sùA‹%´8^òÞ/ìóNø~êø‘)¢½óì0±»»„á}7UÛGLíÉs°¡S‚qDZ$£"ä¾ N(‹D”vä¾ N,­e[VÐ&êÏjÏÂ`¤£MìfW:j×Â=z¶ŠÝm#·%õ9'VFfK;ŸtÀ:²;’Îü·0]5­#åÚìn¬íu™Ûf³Ô¨…=ê|†d´®KK‰ÒÖZI;‘™qŠ”jçÖ«U“[™"|Ç7GßY­jåQ‹)ÁAYÎnNì¢Ýœ?£W„ÅÖ-ujµÖgnSqº/¶>]  +ˆr·³Í:¤©JÒ¥6£=Øïcî©G¬¼ñîPfãçá®Dv¢± ”±;dÛh."¿(øQ  ÛÚÞÖϬêÝ(ìH°ÉjIŒˆöØÇØù•ÎAš˜­Ë[.ïe¨Ð‡Ls5³"=—!K«ÛxJêçž.(IlÝÌɺßI1ã„N•÷«´ÍÁmdíÀ+Væγˆ‘$t»eÞp?ÿÖuã  è°.Ç_;j¿¹I>,ÅÔýòíE³Ø#—¼ñÏdŠ6ÔB!R‡¾þ'©I¥G¢9%J‚êy¶uY+V£>qc¦œ³oµ½ÊM+qw>±quV7¡ ËRaï”KÜŠÖÝ‘Ö¯¾@àœ”·«ÛÓ´¢vM-ö¿ Í˜/,mÐcâªÕB|©5ú¼EÃJIL訴tÔ®R-„0ñ8\ÑTâµ^ï¾æE +ÖžynV]Æ5ÙYÅ8RÓé•U³Ô¥’4R­(¬f“Q¤Ï¸2jáãSß-Öô(Tqw[Ýý'Â&T1<S–ÅYÔªž·WõpTñÝ}ý.;Šóáµ%èE9ÇôßÓÄô,ØÀêI«taÍò–‚=èG¬Ó¡mxX°°IÆÛv—:²m>iyhÆœiç« RÚeèèVŠHÒÓÅe ¬[ …:$,Õ¶Úþ…yùjêwE¥…ñ…_ËTÚDÅFyI4(ȈÉI=¤dw#!öœ–W°ù§¯6òç,°âäÔÕW*»›éMnvN†åÚh[FÝËšÃA'mwô—º²m>Î>WqdZ£õ†êîo·Û&œQ’M*l¶'DËFÅÄV‡‚Ž[j½ý%VÝøH9bÅÔê„ê›5‡7ÌâJd)D•É; DÈËW­BrÛUï鬛ÍÕoAMYʶ(¯¦ ‰õW)í´Ô’2/4CGtظ‚8X-‹c¿§‰WVW¿U½l|iùNÄ´§iE©­µÒZS0̈¼Éµ^é-ZÈïÆ/•¶Û^ûoYj›I.ë´ÉT̬E£áOä¿YÄjAJ#m(a´¤îjI–Ó=ƒ¶3ŒW½‹¿_aö¥^ÎS{Z·á˜SbZ–žÕJ•)Q¤µ}Èec##ÚF3%%g±˜ûïÀ¿¤eËÊÜwJÊÌ™7 ²$ ‰¢tU£bÔFC¡ÓáºÞƒëÏË鿤¶ eÓ§±¤ãH€úäÇ$Ø´s®QwÇÙÒ‹wku½ 3»[‹¿¤«ÅÙQĸê3ëU%Ia‡ëmè¥)JÔV3"IÑ󧆄Ò×kz åZMY˜ødº™ù9ë­ý± e°ª­7çÜŽûh‘¨Ëi8¶› yÚ;ÀŠ—©9 € € € € €–z½”Y½óùA‹%´6âð@QLëÞ/ìó}áïÝAÿ%4W¾}†7bpœ#Œñ‘lHÅý]N—.yÇÜôË唎ƧVÎáqŒ|LÜR³µÝ¿.¦®ße̱‹2-„2|ö&ªTÚ—2p›©•éIN‘ÝÂ-dž.QƒK9¥îRW¶èõr “orŒ_¥–Œ<€!Qª˜¶TZŒªfþfH»®âò4Ó¤µ)V×£ÅÊ>ò«Q8ÃUå™ß©u8Æ2Í%²)jë}g¹€²;†1,JÍy&M§"sqbG\„DuQ]KqJµÍ%ÅÆ-«^pQ‹²n÷{V®¡q“n;ZºßYuÒòƒÙ“Y`Íú˱楤Ƌ1u˜ÊF–èDWÝL¶X¹Åã'•=—½Ý·­š£¡'Ù+ñÛ¬òð¾E0}BŸ!Ýï:¤òeËeä²ù5"MßAJ`øK3ã«‹šIê^-ïµ7ÀF„s5ÂV¶Çcd§R±V5f‰TÝŽ”=ÜÝÑi*2ï¡R«Tœ÷¨ÜÇ”<|«Œç‡2?ñ´Š Úty±©îÔd@˜Ë’4ÜVæ…)+B­ªöØ1%ˆœÍmtÜ—SGÖTâÝ£ºj/­2×kdù0±%]6 ªU2S4æ£o¢']yFzNȵ‹Q £V¥¡ÕçÕ±tâå$¾Ákëw.¾E°† M^¹VDÉ”¢ÞɆž&Ý"˜’_ v× ^lqS“TõfÍ%}Ú·‡E5lʺöXõ«¹ÉîgÕ$Æžü*kPŒÒ$h¸£’#%ùtª–KUÜÜzµHуwÝ‘Ké)°>Dð®0£"GB§Ç[ðeÊD·å¥6ÉJJ[gjÓb±¨_‹ÄΕõ­VÕm¼{ 0ÔãQ­[[[vpí;áŒ` ”ú”Yë›Z€ü¥>Ô‚JS7؃-w°º¶&iÏ-­ŸmËaN+.o²“sµÎØ#8*P‰tx2WRfK+‘¤áª ÉiUµ^Ûµ1S§{ÛÞ).ý‡ÑPŒµ-ÓQí¸Sòk“*Œl/-4ÊšJ»-êzrËÌ–×åS;k¿j*ëUÌãuï3lú %%šÏTòþöÂùºÐ +#oU~QL¨Ëˆ‡“-¸éŠÓ*4Š%iõØ[—xTàÿ×uã  è½€ YŽNôê·îRO‹1u?|»Kg°L8K–+Äê9½¸”Ù)dܵôt•kØm»½Ô@ÎYUû=fxê F•\«S`båF¢´µÔ^n!šÐá/E(i%×ß”GÃÜ3µk´–½¦lðÖ–Dõë¿b/Ì=’–°D|fÁ­2Ú•F*ïÇ$¸‚[É+š\¶¦!ÍEljªNÏVÁJ’R͵8Iëê-j¾I!×±Mf-b¸¤È`â6ÛP`é8îê„ð·4ŠR›ë1u*ö…â¶Ê[^¥fR¤5«¿±O¯°¼£d¢‰…0Þ8¡b +™0Ü:Œ¢jcÞ2Y])"ÚW¾²¸øËêºrŽÛÉZú‹£G#š{2Åö\L“ÃØâ„Ñ·1×_¥ï)&Ù¹t™\®›‘ë°ºUÝG Ö›OЋT3=©ÓMzYñö@ÛÂtj¥FIùR]i™¨v2šnîq´³ëÈUÇÒž;4–­Rm-zõu躟®ø²qD‡XÉÆ'D…2—U§µ¾œA´…Üïc;w}1ŽÓ§ûø³²'î—ón¦Hj›.%zFô‘=숆Éi-&i[z]rLõšÆ»Ù­m6•õêÜÊÊ‚Qnû-~Ê&³b˜å%‰çP2}Ê©À645¥Ósݻ«›ŠÜãvø;^Åe‡²•¾Åêë18US¦Kݯ1QQ Ók’:åX¹,c"|ÔùÉjÔÙòÄSæå•kÖ—¥™y´F•*’P+/œIS]‚û²"›+iÆÒjÒJO®IÛQŒXãø¯±rZøYa¬µmRIúNÔ¬ŒáŠuCÕ¯»:žutÓä’¢èžî…ˆˆÏZU°Ì})bäÝšÛÖ²ÊÔRŒ¬ýëIúO)Ù?¡âlA‰+•ÑÓé0&5Mkp„”«v? $"Å¢’Ú­¦1pUeEZòÚ×Ãy‘‰‚Ì÷(E_ÒYòsy¦Ðbצױ£G§>ËL©¦7C—Ѧّq_}úsvIkm«phù¬:»×©$ïÔË{dƒá¨çV)Üë*ŠÜ¦â¸Á“K'5¡²_nde¨}#‰”ŸŠ®“³×ÞYÍÅ$äítÚì. +¦mý¥Lq5'•S… ™Ò8Ê(û›–3JØj"=d,xï«6[ß]øغž2\\n¸Êóqìªtg±sˆ•5Þ†iK$ŒÈŒZŠû²Ç5wmJY}"{Ù_\•× ñK7Xòj—²ãôgiß)Žfþå}h¶¨Ïa Þ1ÅIIYÅ¥nÒ‘ §•Åê•ý*Ñ›„&¥Ìr]uØôÆ©…SmõÆ2xÑ¥¢¤©³ÖJ!cÇÙ;­jIjzµì.X|Î6ØÓú Ï'yÂÔLDÉ˨ª£¥C•:—ˆôIJ5$ÏR“k³‰Ÿ75k8¸ß_F”\¡%­I¾ôC}Î35t"ªu„ÉA6µ§EJN™X̸„„[q׶ÇÆ¢JNÜFGNQôrIw[ûDR[Y0¶§ ÚOxRö  ŠäpJ$€>&â“}@ +EÎJuˆ#î­%ðKœQ’-kGàÓñ……Îz(ÏnÁ§ã ShÏRÑø4ü`.qÑ&»t~ ? ‡DšíÑø4ü`.k·GàÓñ€¸tI®ÝƒOÆáÑ&»t~ ? ŠË;,ˆ±VqĪC²©´»ïÉ-lù±Ÿ ï«P²IÜ­Æ›Ñ&»t~ ?¼¥Ã¢Mvèü~0‰5Û£ðiøÀ\:$×nÁ§ãpè“]º?ŸŒâMvèü~0‰5Û£ðiøÀ\:$×nÁ§ãs’©µÛ£ðiøÂÂçÕ3’zí«—‹ÂJ”IB€dzÈE<ìÚ»ÀÿžYßaïÝAÿ%4W¾}†7bxœ#ŒÃ“¼§ÆÁôª½¡I*„:ƒŒ¼i'M¥%ÆzÝe´¹H|+ÑÏ•§gt_NY[àÕ™‘êÙůȨ&£†Rì ÍÄ'#ê-b•´«‹V£! Ž´õ©6ŸnÓìëõjÊ¢ûÃËk/Ñ殩³‡—O“%‰LEB÷"aÆ’›²±kå,#I4üe}}»J:ÛUµ4•»6±rìÌì1[ ·.鈚Üvœ6I—V"-¥b±—,”lõÆúûJʽÛàÒVì*©Yy€Ãν; ²µ70¦DTg:Ù2""A©:Ô[ :#IYëI§½;õº©Ý5©Û·WYè@Î5”Ë*¬ì8Óµ&e?&<†]6lný „ž¼‹º-è6ŽX¿±³Þ^ñ›mo¿_ynä3²¬£Æ¬ÔÖÓhuRžwLÉ ÝhQèÜö_`úÖ¥–„ ¼Û7Q΢“ß$\Nåú- +§NM€ˆ°iòäÉ[$ñ«wyÒR4´a¢a¢ó=°Êº®}kTJZ¼õ'×bÁÂSE\¦Uèé¨Ój’)Ln†Úòf“%~Æ2'‡ºœ63äªøÒ{¤¬Ñž0^PU”óÄH¨Æ§¹ ÕCÜi²%ïcmì”)·Qè–Òã³Ãój/]ó6åkíÛ¨úF®fâµ,©[³î–Þ[r»ùxªƒLa·£ÏL÷f×t6¨È"4§¶+ê¸ùápÎIIî›—mÏ­Zª—˜£Ù®ç—‡³Š‰Jf¹Xm2fÓà9M'Éõ!&ÂÈÒvAj%XöŒšø77+;)Úý¨Ç£W"Šó^£À—mëQÓZ¤‘"DD Ü>^ÒÖgܸ«Â]Nïߤ»ƒ­®?“}îç|%—Åáh4èEJK»ÍÚƒºFá––üI¦ßÀnð|æÿ°Qî.†#+¿àÔ»™–UÓ¢aHÅN%t +{ÓHôü÷uúä°¿£øÎ\a—ðÏ”çt×æü"ã—¸’&êøuŽ4Ù3a]å%-)ó5VE©i#.†Õ²»5¾ƒë*êMÝjnöë:aŒ½E¢"3ò0ãNO†óïFÆÁìfz.%=zKˆŒV¦ µdþÆÎúý%tÝÚû+ð,L •°Ž#^ze&r$·!’= ¦Eô´T[^¡õžJ—7Ô¾‚ÇUóœæû·ÞegT¦ a¢aèób´G!J3nRlzF{LXÇž Ï3oß$¶p>ÐÄ(¤’Ù,Å©‡ré'DÃQX§¥EH~c‹ÒQÙöåjZ ¸µq½L*›mï‚vóã +®*ËÏÌQe*´ÜS‡àáÚNM.4Yn˹’®²´—¾w}¦¦1%swë1wîI"t¯½]¦n kì'fó¶y„"$IÎ˼* +ðÿÐuã  ê­€ SŽ>wU¿r’|Y‹©ûåÚ[=‚lÀõØøgRª²‰FÌIhuÂI]Z)UÎÄ6×±ö?QR7^•ë3FË 2•^Æ®¾ü¸±¯BLd‘¾Ééé¤É'nŒa¾->£5×\ëšØïôžâ²Ù@auöPäé ɦ± —äž›Ž¸‡ jZŠü;l Xi;=KêŠV\(ª¤÷¿KÒÏtòï…çHÄf·§ÀßÒ!>Ô¨­§vZ#¶IS*¾Ä¨ÈX°’J;¥'mÎïQWY?L¿ ‹,y>ÅéÄqjÔ[bªü)q ¥N6¨é"223±ÞÂÊxJÊÕ¯I÷••h¶úá÷o¡M§Ôb®CTáL$HЦØëˆïÇÈ2ñ4\ÜZÝ›éF59åRëVúndœW–ü76‘64•JTµÔØ©0r["CdÚ¯¹$ˆõÁ‰G 8Ê ¥âÝ>.ûÌš•£%%ç%n +Åæ¼êpïL¦"ûÁt²e¶ô5”î¿NÜšg´|ž–I+ërÕÙ³ÔUbVh7¹<Ýl‰8ÆPq;ÈS¤Ü•¼é\irúVîëœÒæÝ>1±‡VY§Ÿ„®Hˆ¦Ui2¨Uj-51éO¹/V敤É-¡²;Œöˆõ„“M4—ŠÖ­íï2§Z;uë’và‘bÒò±G‡K‰ h{tkôQVN­ÃJöö]Á“ + J/̓‹ígÆ¥DÔ×$סžÛ¹V˜£¦jepæ1mY5HGl”áv¡i>RãâxiAA«^ ®§sëV¬e)-ÓKÐÑñÊ[éx¾]‚ô¹a®!(µxÈ$™öÇ`£„”e=ÎMö±*ѳŠÙ–1^ƒšöSðUm£¯H…"Età11œAovÝhˆ·b^Ý…°\¨Nj;¯}ýh²5#(¬Û¢×SàÏoå·_ƒ2ZgUl¸LF8Јˈ"%,”ZÔFE°Y#ŒµZÙï}öÛcé +êɽª6²Ø÷\ój9j¡JªbIˆmýΣCfœÕѬžBHŒÏ¹¨NrÂJQ{åeÁHVŒdž·e/¤ï‡²×‡ ÍÂJ”‰Å>‡"—-HA‰oi’ö‘\}káœùË}›½Ê\‘‡à[oÒFsLTUÒP\[‘ŠJ7%¸©ec2-†2£|¾6Ûͧ+®#!§|ü“ßoí5ImdÂØJœ3çIï*^ääÔÀæ"®DÃp%Õ*îQb6§\Wp¸‹º{]¹;-岕•Øªò§>(Æ’Ÿb‘%TºjLÒÛlœZ{e¯m϶ ì>Œ½lŒ«‰rØGy¢±)fãµYJQí3}ÍTÒÜ|™ð邩ꔟoså +ä\f0U=R“íî| È¸ Ì:`ªz¥'ÛÜùA‘p˜tÁTõJO·¹òƒ"à30邩ꔟosåEÀfaÓSÕ)>ÞçÊ ‹€Ìæ +§ªR}½Ï”™‡LOT¤û{Ÿ(2.3˜*ž©Iö÷>Pd\f0U=R“íî| È¸ Ì:`ªz¥'ÛÜùA‘p˜tÁTõJO·¹òƒ"à30邩ꔟosåEÀfaÓSÕ)>ÞçÊ ‹€Ìæ +§ªR}½Ï”™‡LOT¤û{Ÿ(2.3˜*ž©Iö÷>Pd\fsÓSÕ)>ÞçÊ ‹€ÌËÿe³`¹-¿ +²óˆI–“/¬ÜmeÈd«…L,&µ¢øV”Fy“L¬ÃÊ=ŠÃ¸ºFMJb÷Ü·ÔžÒþ&ƒ¥+2R•\êæq¦ÍKÉ##êVTÌ•Þ/ìòýaßÝAÿ%4W¾}†7bÄH®Îy¨ì6n:ê’„$µš”£± ËÍØÊu\‡ã9F7©zG!äGI4â\4º½d•’O‚}ñT$쟣iõ•%~ϤíQÈn/¦=‡iéRçHÞ¬îo!e»Zú +4ž£ï„1P“²á@•E]õ}'g²‹Ø©%tô”´o8[º4ZA®µ^É×Ê)\$³'©[é+*‹Iï¿Ð[µ|™bJêh—MZJœ„;%Dd¤%µõªÒ-FGÄd.Ž& ^û]½<£$íÕAGƒð%g<û4ˆÄé°ÑÕ­d„!7µÔ¥j!õ©QA]Ÿ8¬Îȸ˜ÈÎ,‘U—G*nŒˆ­¥×n%-% +ëUºèØø¹GÉb ãšûí×~·AQ !øÂ|ê9ªež€–Ü‘¦âR„¡Ã²U¤gc#åéPËšú›·§€tòõ_ÐWU3~Æôxó$É¥"*7W /!JÜût¤Žæžé V:Ÿöô—,<¾‹Ÿf3vÇ2XD†éI4©´ÑkÆ%9EìI~r¡x)orkïB¡ƒ*ÔªTj̨ۜI/:ÃK3+©m”VÛ¨dó«6]ö¿ ùsnÍðv}¦C’j¦'‰‡ÑC¢§O¤¹MÒ‘=ä}ÍÄ­µ¥=qé‘ÚÅÇÈÅBW׳h•'u»zKçä2R+/ÀÅT†UM™.:Øx”…­„ܬ´ÜŽÇ´‡Æ¶1dnU¶õ³éOóEKcv1Ó¹(Ĉžå8 ùºaôCGL¿%Œ´‰~!öé1Qr{Ÿic¢î’û+ÛÐU«#8­ºOF•MûÊMƒ-Ñ;©2g×è_JÝÑYbae|Rô–Æ“’ºàþƒÓÆ™+©ÓÛ*„*#Ñ!¶Ô"t}.¯t›¥Z¶ø‹ˆYNºÍ•½nM/FâçOÅR^mßß>rŒeÊ•4Ô¥ÈÛ–èku(I)ÒÒJHÌìj2âÚ*ñpJ÷Þ×vÒŠ“úô=†/ªRåQeȃ5“jC 48…mJ‹iµ:Šk2ØËgfH\ÝúÌ]û’cÇÍ+ïWi•‚Úû Ù€|íža‰GÀó²ï +‚¼ÿÑuã  ê­€ SŽ>wU¿r’|Y‹©ûåÚ[=‚={ÏöGø£mD!ò(ôŒ/X‰3ߦHn*¬iyL¨›;ìá[X³œWµõ—(¶®0µb,v¥½LÛšI)•jØDfV;ñu{__•ÚûŠ—ðU~2·hÒД¤Ô£S "$§iËa +sÑ⊪mî= +9ÍÈz ‰qÚÞ®?mÆS„飻ĞUl!Jµ2­[n·ñã™®õž3¸^®Ì2¨.™!1 ®O›*&ÌJÖ:‰;_YEõ£«øj­"g½MˆªµžSJ&Îû8FVq^×Ö[WG†/- +êgääO®·öÄ-–¨f4Ôþ‹’{íý¢F£-¬œ[ U†SæIï +/QPrù8­3î!–y8…Ø8&,F”dSç%¥™Ô´;pĆŒ…ç~ÄÆJÑ°¾²AL‹YƘr èé‘ù¡Ö–WJÒwÔbznÑ“áê"å÷W¬•8Sñu'0ö‹‡ßƒRf52Sm-¢tsCDÉGÂÕ¯P‡¥VK›jM¹m]VÚIU‚Rœm©+§ÖG’ÈL߯±¿X½\xŽ•ÃSë$§¸FzÄ…œc楕4ÓIõ\¾• ÔÝÓ¿¦ÛŒS#"óªõjQfÅ$b$È‘ÛJ‰¶ÐÚŒ­c×mZ‡Þ8ŒŠIÞðŠoºå'Jö’Øç”ç)ØVÂX5Ö"¶‰ooÔIycuM9¢F~ B”ê¹U|2ÅÛµnÔµíS’¿aÓ ä§ˆéP§ôN,ižz 't·Yj÷22+íªûEØŒZ¦Úµì“}E”hçײîË­žÞͶ¡]IqX‚I5FÝ\XÉÕ›Fd¢ÔV+[h¶¦5E»&ì“o©•…­z¯'J9c6ª”ù¶àWàKbs’Y9 š·6^Ž%¡w+êå-B9+Ý5hæíEÏ ÷q³êlõ0†EY¤b|(쩰딊„§c­li{«iV“j#±ê‹Í+4ò6¾ùl¨[]ïã$Ï(ò*µ!o"« +žº„™i¦AxÔNHKJ2àÛQ«Å‘ÅåŠÔÛQMõ#ëRŠs{–k.ÓÆc7úËò©q·ë Lèr¥›¦JÑd£_tBû¤d>²ÆÅ)?5'Û}‡ÉaÛ²ã&»,\¼Ù§U§èâZsRgÅ\ÈÑœ5’ÖÒ/¤­–"+ jc”[Ôü[_ªåaC5µím.¶-ÜݪŽÉ¤¢X…>$ôÈ^ühÕ¹2Qü÷Nå~shªÆ¥|É«$õïO`xwªÚîíé;3›µJeR—%fñj1ßÄâ%“6c¯%•ÈÈ:jJM«eIÛ©”tյݵØÑ{à ß)éÄXxê•ØU +MC|Ξ‹®4G¤ß)»ìUÆ<²I4Ôn»8•æ5§}Y¬þññ}.5³R…R$°Ëî!6FI2%¢¾½[NnpMð)ˆ‚ŒÚDƒÍj¾¸UZÝ0Öz ­ô§ˆ–Á’¯à1…¥!x_ƒ>¸9xÖÆ­o¤£…ÄB’2\µé²gÜÏ/ÐöýÔñ"SE{çØacv"äÚ­‡Šh3æأǖÊÜ3ØI#Ö|ÛDãWMu?QQ]wzÉI7QãbGjµÌ\„Æ©ÖPävbLº\a\-ÑÍà[QkÖ"pó”` £v£+ÝoÝÞHb“s¾¦×oâF`nt8èl¸õ&aâ4¾MÄ”•™G4©)uÅŒÍG´Ì|#w$õûÉ'«R|¬­–i[lZ×­¤ö˜{'¸–š¦S ©PåK¨¬Î"g? ËéC¦fÒüšËXû:O˜§ÔÓ|vJiW“¾ÔÒárÔÊäZ®.z¥&F3D¦ÆDÖa<¢hÓ{e¯Í4O`º„”/&Ÿ;&Öûm-šm(«+E».Ø[Ù[5Œ5pÓSX‰P¨7q”û¤Ò\&×u#Lõ(ÉÆEø’ÝÝöZÆ>ÚNûáeÛ{™&i˜¿Sñ3RªO3i‘"I%µ©­n²‡Tv2O» yÍÏ-KjS{µÛ½4 Ü[Öán¤øF-ÅÆèx¾œÕQ—%E¡Ó!­ÆÝ#Ý^m|2Aß…nàùårjIju¯è¶ÓéE¨µµSKØV)§¯­jª4mtž†no§uÜ‹¶ÚWâÚ-«Må©«mHúÑm)/©uFwîe,œS±Qiª5¹žK)2x´w]̸¯®îm©M¸OVÚ«ºå(JÒ§ÕUáõ6u ÒÕTŒ‰R°Ä؉Ý^JI/)fiJÔgÁ3î†2”¥*–[àû¶—áê(¨·çOéZŠÈR!a8lŠ¼5H‹†ê̸lIJÒ—V­H%í0Ä>sœi=nžîp±æÔ·¿—¨òð&%¦µFÁÉ~¢É8Õ´Û„·S¤•-*ÑIÜõñ®6›nv[cOÖ|°Ò³þ2}Ö-âÒé9)®ÅšËÓ\\imÉ7Rn»kw½ŒhÉÉzÓ‹û8¤¸l>r—ÔµmŒÛúO:É)5*6§¸J:¤«Gfé-Fçâøhääå'ºÑ_¿LŒSJ*ßdܻ̃±%6- ¥U[q¬9XmEº¤”—|ž½F|D+ƒn¥·óe¸%_Ï—¨ú`\YJf‹‚ É©²Ü‰Ú´D¸·KÌ^zä3¿ü¦-ÅÑ”å52›;²Úr·º¤þ•dËcQ!dò¦Ôz†$jL·(õ=Ù¢’N1JM”*öº¶Ø…õêó–U«Ä×mo^²êPÉ(¶þÉöZÛLš‚*¤î*EjAs o4ÉAõ“SvNîkVؾ³ã‡³Š¾ÅÚº‹ŠŠ0ý[½D©TØ*tª%)ÝÐÜNæOÃI/F÷µõZÂÙBJ2šZãRMv=ET•¡:_yäQ1ôloO¬oTÓ^˜Šúå) ŠS¸(qrÒѶÁEEÓÉ'zîÖ·w¬¾uœâ¿’ÜÒÔCl­Ö^ÅÕ¹Éy§‰×ÏÍ#&Õb"ºoŨgàa–š^¾Óንåè[ ›¿Y‹¿rLxብ}êí>˜-¯°˜ÎÙ我$|;.ð¨+ÀÿÒuã  ê­€ SŽ>wU¿r’|Y‹©ûåÚ[=‚={ÏöGø£mD!ò(ûžìÍ­}4ÛKfÒÛÜŽÒ“Ø2ºûR«TJŠª‰~–†!Óò5%ê\¶’¤n}b̹;¢ Z5Zþ©±ûäþñŸÜ-³ê{VËuõ•XæzXèó)¤ÎT5,?&C{̬´hdm¿-…0ɹFí_;Ýãoú£i-[2z6üw=üµM Tg-t鄺a2¥y›i}’"2-›Eø|:©‡—wéN嘊Μà÷%úU™rÌqŠF'¬ád,•†žŠ«lÒ3%,Å‘—9NU_ÙT‡rv.qÉ8AnS~–‹W(tìS2\Ùj× ¢“\3-ìëVI)´Í;ßf±õ¢â¤ùÅys¾ž§ØY,Î1æõ,ž‹ï¹xå*{qiX¡¦i3\§.•->ô†ÊŠtM„v×äÖ1¬ÛÖìùÎ6ßQõ¤ì•¶dôl ØÀ®¦~NDúëlBÙl*†gMùù'¾ßÚ$j2ÚÉÈì%Vó¤÷… +— ¨,“²UÞ@¼ó•¥…¨_º›¾$Iè¯|û ,nÄB ”Öâa¼]‡êsÝÜ£E”ÛŽ®×ÑI_X›š¼Zâ™%~õë.ÚîU'Õ±‚gL«H—LSß-6¥™¤›'.FIï \B +ë]¬Ìœm\òyv3?U±Þ €œO6&#)OVªùid™RM¤4êT²QžÓ+ l=)Ç$ZÕ-}©ŸiÔ‹rýô-n²ŸUi×(¹EšÜí +tÊdå‚IžŠ %¶ÝCç:N\¯j”~ØsŠXˆ5濵))¹P˜m4l$ÝTäÓš¦MˆýE-]”w#$ž½ñ¥\<ëf“VvŠKäë-¥R4rÛ_&ý*Ç4L áL3ƒ‡"bwPp–²ª2Ù“DûÇ© A•Ô‹m!Z”§QÊvÝg¾ÏYHÊ0I^þ3w[µYrÍ…¢Ô$ÅTa‰S)%EY¨¶Ž©I^‘äe²ÚVÑòxYI;+,ɤ޻-¥ê²M_[´“}» I9W£7ˆ$¹.¾¹í7@—2TÑ!µHu:’ÚHŠÉ¿(¾XféÉ%få-öLFªS…Ýíšü5£ÐÀXï|R©b…#F“ئʔ§ Ã3J’¢ÕmbüU9曊¾x¥ÙªÅ”§ž¬µ3z 3•LcJÄX Â'uz“Ôòle¢N¼jO„‡Ö…Fw~d¥-e%Q85ø9?C3NË(°ö¾&:Z鞌ü6ãŸyzÍÛ†Gb;ë^¹É¥|É[^ÍVÖ0³QŒbݲɾÕ{÷ž5#*¸yºžOe¿<É4Ö&¦ašNè[¦³Mí¶÷âK/ª%¾ .Ô‹yÅhõTmö\½2‹hµfé4"—i>µ%Ô’NéŽëJ²üå¢òæÜ©¥é¹‘JªÌí¾¤Z-jN;ÂxF£F­èðê’gÊ”M))l–•!(±ë3.1~IÔ¼š·Ôò®¶Ë*5 «ësO²Ì¬”\[›…«Ók{Ñì4쿼»’Œå$ÜSš µïc¸µR5++ç‚]ŽÖ+9Æ~+vJmߨõ©@mì–âÚÛì­©h•*,©&^gPY©D“=¶.AóÄaí*pâ’¿uŸJóJráv»Z±iÒ²¥‡#Õðl—'Ù¸ 0¤+Dø­*"O¾2+P“çmöYmè1hÍ%NÿbÝý,ôòi–l?…é~ ó÷‰5V^ssÓÞûçÎÖeÆ\¤)ŠÃJ£vócÞì})ÕQwü~†­sèÎV¨°jÔ¦æbuT›O¨!ÇÒÁ4Â]}”%´ëã1òžRŒí]$¸»;²ª¢RŽ»ÚMú-cÀÀ9Oôh˜™“´:s’¸{š#$«»´dW¡)JVßO/¤ùF¢QþOÐF,bÜFëU-ã13#©÷ÛÈI¤–JQžÃ×Æ2p×È“Vv)‰i͵¼Ê¹º+CM>JTÿµHÆÒ~OÒ‹°žü`Y=jJ8\D5äJ’פÉûÏ/ÐöýÔñ"WE{çØacv!x Â8zЫ“iÑfCŽñ¡™d”¾’ú4¤îDgÉqd ¥kîw.ŒšÙÂÇ’/-îaÊë˜j¡¢Ôv_[ +ÒJ$7º6gÅtñŠ5uabêÊab)•6ë8‘²LŠ³(”ѦēhÊÉÑ"ØDE¨†>0…á±zû^³íVniMìkWbÔc‘’|NH®v æY?®ëŒäMÉÄÅßš.­(»¾‘\õܶÑòu¢“|Ÿi|`ÛKŽÂÍ$šŒˆ¶™Ø}Qk/)¹?®A)Š\M4Ca©­µ¥im·zÓ3Iñ=¦Þ’õM½œ/èvÏ0„D‰#àyÙw…A^ÿÓuã  è½€ [¥@ª¤Šæq$Ø‹ëf.§ï—ilöéýN9ì•ø£mD!ò(»Ø‚©&2a»Q¸éµ™SË6ÊÛ,“;{ÂÜŠ÷¶²å&•üAT’ÓqÞ¨Èq¦Ì ©å©)2Ùb3±X2+ßx»µŠG*‘¾×%ÅH¹+u5¨ÜÒ-‡¥{ßœU$¶nûO±Ög©×Ÿ9¯¯¥×7Ui,i(ïs.ø¦Ek[Q\Î÷;¹]©;0—>B£'c&òͲï$ÎÞðdW¾ð¤Ö£—ëÕ)1Ó ê„‡#¦Ú,©å©²·"LíïE{ÛXRkQä‹‹@¾–Fs"m7›ûbËaT3:iW$êú&þÑ#Q–ÖNGa*°Áy’{Â…KÌTŽ_X®ðç•èZ…û©»âDžŠ÷ϳî˜X݈\BtŽö(ø‚£@T…S¥®9ÈiL:h;i¶¾¹'Ü1lबö}â±vw[~ùã‹P¨¡â™Y ö(Òd^ +\ªèI­L,’_Dh;xl/L“ùøåé­FQ2Qb?0ÖâU¢¤²W2#.3*õ•8¹=Í}.ÅÔ¡žJ+}þƒç‚p$¼påM¸¯¶ÑÀˆìµšïÂC{H­Æë*qÌø¥Þ]N›œò-÷ú+aôÑU™šÜÔ8ÒRÙJ´[RþF¢-d.ŒîÚ¶ÇÞXã©>?Aâ&ëVŠXYª×± ïn[X_r†A¡äÚMf„¼@¹ÌÆŠ‰ÌÁ^êJºçѸ‹Œ|§YFJ>ro¸¬bÚoÍ·Ò{ ÁõÌ N‹Š¨õRZ^•. nEJ´Ì›+-ZË­Q ùºÊO›’Ûõú²¤Õ䟽k¼ÄÄÃòMjKKY‘™¨É&v>;؆N¤|[mZŒóú[›K^ŽÝ™Û¿`l¡|Óê˜"•†=åÃKÈi–L¼É¥,ôHÌ’\WãsqÍŸ}¶•ÎҶ°Óø>±>%ĸì7 µ-Ñ3.2¸¶…eV9–òúÔ7f[cì|€wÍçÑ$ïÝ*Ú¤Gé?'éFNß“×'^vŽñ y¤h¯ÝÏ€3Èanaº‰+¥ªƒºgɤՈJh§ã>à µ":dF!|oW©Ñª.™Gmò3JVk"¹ØËW(’ÇIÆ1³µæ•ú¬aa–j=Š ØÏQð¦ˆÌüNæˆê]ÃÍTD­Å§÷M4•îDc­YÃ4z§}öhÊ¥Ï,šÛÝv •†T¼ ì) Þ›wgd8IV”rYšR–Nü \}¦¥šPÌüHÞü^۳椔UK-sµ·[aèáü…°\œG•†ãUú;:bù)KBpЄ ÈìVµÌYÎÊ­õÛ-4û]®}*RTÓ{~©—Ð[˜¾›‡°¾€ÜL'TÚ¥Z£ .¬”KCh{E EQ–Â>!u'*“Š»÷‘o­—ÖŒ`§+l•—qwâL†Ýõ´»H¥Æ¨S§yŒ-5<Á8´¥I}Ã;(Õ}dBØV“œZm§6ºž£ä ²É5f¡~¾Ò¶¿Ҝnj7‚iÊ,=,ˆê2]ÜZÉ7%ëÖ{Ê&Ôe™ë¨ãè>™"ž[~3Íé(ê˜c +Q#bY¸Æ7~RQë²3¹¸·Çj]W<êÖ ÂøzV'ĨÃÑžDJ4 lÓÖJ8ézI‘)Z7½‹ˆ]ÎÉ,—ük–ûíkŸ8ÅM§oÆy­ÅÞÆ,ÎJcUix*Dxe·èÑ1Ñ}\úÔß‹d` ÕZ‰ëñ—¨ùTšt öj—¬Ì.dóÊÃuÈ3hôÈU”¨ò[j9­sZRŒ¼ÑçƒÂ¾ÁV´³^-ûôº»­++­±o­Ù^åƒÚ£a jÃP0²²r^db“ôk}çÁÆ ­5Ä„qØsS¦l’d¥$WN²+ž» ¨Þ𻾪¾¢ÊïTßU/YÞN%™†£ÐbA&ÌÌ]Pa䩤(³Y¤ˆÈìGÜ +4ÕIEKâ¾ùõÄË$g%çDó+ =„^§·† 6iŸˆå3<“.]²"mZE63äÃ>s,g³›oézÊb|\òŽÜëÔ…Y•`¦¡ô¡ ·7ö&~<íí›%$‰³ÔvMŒÅøªJ1©³›oµë-®²©Ê;oF£Û¨¡XTÁð›Zeâg˜m°—l’4ùìz)+Ÿ ùáŸ9•OfGn÷¬®!(©J;oõj!f]LÏbc2±ï·.\ƒ;Fy%ø·–cü§¡zŒJ3Ì óyôI;÷JŸö©úOÉúQ“„÷äõÉ×£¼C^D©$£•Øþð +‚<å³+aº•%²¼’"“¹]o^9jJÜÜÓ>5éæ‰2?#äΟښM¦{ñ †#ÉkM:•–’“îr‰Üe7V1KÏMöXŒÃ¼•Ÿš×¤µª9nÄU7*«spJ*m!¢Km°ƒ¹%´—Z6¶¿}~»—t‡tø&ºµŸL3—C…©±©±‘ÒˆNGž`–ô}Ь{šÏ`º¶5Þõgm貕G œoé3¾GòµJÃôª[õLBÁ» +Kò2êòMw?¼Î–Í#Ûq‹‹ ÛñWØÛS·yõ£R÷ÌþÊúõ®ÞÒ;⼩ÔëêŽÂ Æ…>LØ–M–•<æŸøø†V’ÒÞ¢—p¯_>e¹»—dìãq-B<èîD§‘N&·Ê“‰N­£#JÔwëŠÂÅ‚Ši«êwZöô‡ô[ÐZõ±×ªŽb'Üt«­6Ô»7n v¶&Átp‘I.Íé(ë;ßð9}Ö¡–œAR2œöá¸Ê…–jǸÇ;¢Ç}¼¦.xh·ÁfôÚÂœRKtZô7s·V¼C¿:ìnª¦•(üËV÷$èì¿]n1l°‘jKÎi¾Ô#Y¬¿M/IPî]1´²¦©t÷±Cß{o­À¾ƒtä ab囋½·\B³Š· Û¨ûLËÖ$›Kvš´EJÞŠ˜NËKR–Âuç%…%ƒŒúïm×+N¼¢•·+.(¶°>Sê¸5B6£È;@ÝfSDê4ÛÖ•Ã!ö­ETµ÷;®'Îœ²»­êÏ°¸±>]ñ,b£b"¤§·§Í¶ ¢Ž| ‡ªÃã ck_T¯égפKú_@E˾#P\õ&+»¤& :ì™q–ºÒRi—(¹ábÓ\eIdjµk}Š· µñîRªÙD™ +mI,¶ä6PÃ$ÃdÚR„ÒV.Au :¤Û[[»*9¥±ë™ÆbgcHŽ¸ÐTr¢”9œbÝ^i%déª÷3.!ò– +/ŽÛíßĺ‡u+z8Lü»âJ…%t§ +1n‘ÑÉIdŠJØFÄ)ͦD.xH¹fë½·_‰HWqV\]IŸg²÷ˆŸC$¦bnÀ]4Ý&œ\u”wÖd[ RX8Êû|f›íZÅ:Î9mö7·¤¶äeZ½' +DÁËuMŠùÈl´xzFw±«¹ÖT"ê*›Ò±l*¸ÅÅl“».òñˆŠEJCÅxªš€ûn0JmM2VF«õÅÊ>rÂE«~ 7¤º5ÜZ|½f²õˆÑ+|8ÜWpÚ‚¸î0JelµÖé&ú̹Aá"ïÖïé +³V¶äסcåãµ:|·ˆûSm‡";*ŒMµÖQÅ£Ä6¶½·¾ûŽyÞýV¶ë3ÆU,{SUN¤¤›ÊBBNŠ„’„¤¶Áô£ESV[ÝÙJ•\íÔ¬‰=“\:î ûœ´'ÖiÕ4ee7­h¿&‘ëïM%]NV[Œì%<ªïy0ðFMµÁèË$44Ù²X?ÿÕuã  ê® ¹Yº!Z¶Š4ãÊ *Ôg)õŠr&ŹšÏEÆŒøÛ^ÒïlJU¥MÞ%“¦¥´‰µ|‹á$¸£j£>!_¬ShwÀbB:V[ÑŠðKs<d‹ +§mzo¹Sñ‹½–| zYש&õzo¹SñŠû,ø…ÖI0§«Ó}ÊŸŒ=–|B뤘SÕé¾åOÆË>¡u‡RL)êôßr§ãeŸкé&õzo¹Sñ‡²Ï€è]aÔ“ +z½7Ü©øÃÙgÀt.°êI…=^›îTüaì³à:Xu$ž¯M÷*~0öYð ¬:’aOW¦û•?{,ø…ÖI0§«Ó}ÊŸŒ=–|B뤘SÕé¾åOÆË>¡u‡RL)êôßr§ãeŸкé&õzo¹Sñ‡²Ï€è]aÔ“ +z½7Ü©øÃÙgÀt.°êI…=^›îTüaì³à:Xu$ž¯M÷*~0öYð ¬ã©.õ~o¹SñŠ{-Ô:YêCÉŽ §šVóÓêZÉK(>áž³OJÉìV/Ž o2l\œË4è[§ÓzEŸ£Wlⶨûâ:¥YMÞFT £©aíê”]V1aq#ilnHIq í€ï;WxsÉô+BýÔÝñ"OE{çØaãv!q‰Ò4rFi22;k#d¥å¹z+ÊS–àh5‘·khž­e߆ƒwk}ϤjÉjOaâ¯(‰É/LU]ó}èÅ Ç4‹IQȬMž®¶ÂçB6µµ7Oª4Óà¬UŒ¬ã(tôҚđ šS$Αhîj+u•íܸ¶xxMÝ«ˆU”6;•Ô°ú¤*1ÈêÒ™tÐvÓm[R}ÃIÁIYì-Œšw[O~&P±C5Õ8Õy%63Ý—|43kh‹e…®ŒlÓ^ûoXRzº¶uaüŠ0ÓÒ\¤Õ¤Çrb´žÜÎû¢¯{™Ϻ£²µ©Îï›{>-åÇ'š¼‚Ó’™kº®g!;;—\@¨ÅZËbiv=¢Sn÷ßkú6?ñïºÕŸ^÷’¹]EÀ³ºœ-]q„hÆ.én·£€•G$Óß·Ðz4ì«bêJæ®%~KJ˜³uóJ‹†µmQÜŽÇÝ+ ^ (ÛRØW•ó_[)è9KÅ`¤¦—[“¤¬Üx»é¬þˆôˆõ÷KX¬èFJÍl(ª4⦅JS±f)L®JŠRWº»¢¾½g¯K„G¯º¡ $šÙ°)´ÛâZµ*ŒìA-ù³\™/(ÖãŠÖ¥…ð‚‚²Ô„æäîõžzS‡¢„šŠæ.-:lóyôI;÷JŸö©úOÉúQ“„÷äòÉÏXŽñ u¤€&ˆ»Ÿ¸V(„¥'I½KI‘‘ë#!@Dl¢`;ŠÝ\šµ1mK>º\C$-vãZOQŸteÐÆΞ¥­ +˜xËYdäk 6£µrjKµ8É3.{Œ¿eŸáкÊ3É&/Ëüßr§ãeŸ ¬:’aOW¦û•?¯²Ï€è]aÔ“ +z½7Ü©øÃÙgÀt.°êI…=^›îTüaì³à:Xu$ž¯M÷*~0öYð ¬:’aOW¦û•?{,ø…ÖI0§«Ó}ÊŸŒ=–|B뤘SÕé¾åOÆË>¡u‡RL)êôßr§ãeŸкé&õzo¹Sñ‡²Ï€è]aÔ“ +z½7Ü©øÃÙgÀt.°êI…=^›îTüaì³à:Xu$ž¯M÷*~0öYð ¬:’aOW¦û•?{,ø…ÖI0§«Ó}ÊŸŒ=–|B뤘SÕé¾åOÆË>¡u‡RL)êôßr§ãeŸкé&õzo¹Sñ‡²Ï€è]aÔ“ +z½7Ü©øÃÙgÀt.³”d— é본Q’W÷Å–| +ô.²ò¡aÌ3†K´ª:æËN´?<ÉIm\FM–£2îŒZÚBsÕ°ûC ™OPfUfɪ7]pÈÔ¥ârr # •x^“½[oƒk +ƒ*F+$ˆTÿÖuã  àÀ²™'Sk,*¾D¢Qšu˜ 0ýg'h}J=x, Mü™$íæeà Ÿ©Š;Bð¦(í À:˜£´/êbŽÐ¼©Š;Bð¦(í À:˜£´/êbŽÐ¼©Š;Bð¦(í À:˜£´/êbŽÐ¼©Š;Bð¦(í À:˜£´/êbŽÐ¼©Š;Bð^ÖMS¨·2ð +XÍ¢9 Í«¸+`eúE ¸©+& »XlZ€E;ΕÞ@œò} +пu7|H“Ñ^ùöx݈\bt™Â™¢TàáÆêÕÉj¸‰·\€ËL¥l’SrNè£ÖZF\C +¾"Q””ò+¿Yö¥M8©KRr²ûç»7ü8LPbÔ± ¦*õò†CS)u•xJ3½ŒË¾>sÆI·‘&”Tµõ«—ª)+ÍÛÆqúv”ô\ƒá£§P×\ÄâÔ*ó%Ae–XBÛK¬«@J3¾‰žÑYbäåh$üE-}{Š*I')½“qÔ|!d +‘MÞ1q%nDIÕ9’!ÂC ¥mÝ¥hœ5ÈŒí°1ÏÉ«ø¹ýEÒ ¡w'©JÚŠyÃX_ ôk×%³$êà"n¤”ªßbŠÕ~ ¢²C‹©kúK…›cUèÑäM8¦U˜q”ÄT®:I¥*Æòþ‡HË‹`¾xÜŠÑKTSw|VÄR4s6ߜ֮ݧšîo4ªmª…B³)2ž!ä¸Ìr\&ÖÑ™N,¸D£°º¦9ÞÑ[-·k¿ 7Å­[­ÄŽÕúU2œÍ5p*…1ÇÙ%ÈA Ó¸9~²ç·¾3£&äÓZ·>&;K-÷ëÔH. ´Hxr^ujb]“ ~­GJá‘ßι’í˪ã®1Æn)lkµßz>Ôh©ÅIï¿¢ÜK³(xÕæ`(åˈRiHZÔÜT©n¤ˆÌ¬”íqG«^¡e:“S¨Þç²ý^¢¹cÍC­½~’ëÁ¥à\IF”rd*V›QRÑ>:óš ŒÍ)¹lÖ\cå[ç ÅÛR‹ºí.… N^sV}‡…“Œ™ÐéX‚_¡Ïv£MžÝI•¶…!æ›Uø%r· ±‰dœ$¬ò]X¤iEÊ2OeDŸÒ[˜w6æq(råKšÜʶûz)1—´¶¥h“Ë=i5[ˆ]Wé«+x±MÝõnè©»½ŽM+ví"LØ«ƒ!øÎu츶ÕßA™â K2MoF<㕵Á”¢òÃ;æóè’wî•?íR#ôŸ“ô£' ïÉå“ž±âê%IEM/3OxUž¡¤\­Äb Æ5ÜÜ„«ƒ·¸( U7&ÉRŒ÷2ð +X"²d‹Ÿ¼ ëÔÅ¡xSv…àLQÚ€u1Gh^ÔÅ¡xSv…àLQÚ€u1Gh^ÔÅ¡xSv…àLQÚ€u1Gh^ÔÅ¡xSv…àLQÚ€u1Gh^ÔÅ¡xSv…à}ÉŠ.G ^°=È™5BG¹—€”è˜Atx`ePRʈ¶ +ƒÕAXÜÿ×uã  N÷ØøºÞ™ìQ.ž…íH•TfÕµëÐ6»Bk´ Ð6»Bk´ Ð6»Bk´ Ð6»Bk´ Ð6»Bk´ Ð6»Bk´ Ð6»Bk´ Ð6»Bk´ tFø@4„Ð=à%¨€ihV d‘èS¼é]à Ï'Э ÷Swĉ=ïŸa‡Ø…Æ'HÐJL)–L7•X§Êr­†šu¨fÒ“¸¸GsFõ–‰Ÿ¯BnRp~ýYߺçÞ”ÒŠ„¶)][Ôe*¾>Ãt:ÄuxÒª¶ÜÙ1É…'sÓ[Š2'/®Äf1]*’„<È­}‡Öà¥?>OéØS#áªv ÀøƒFüƪ5qÓI"Ý4ô‰._^ÅgJQ«–¯¸¶S¦Üö:­õî,8ysÃõ¾†MÄÐ%.}&l‰q:“¹¯uV™!wרí°}VTü›û®þ²³®§u-ŽWÕê1ö<Ê«ÏC¦*:Ñ-º¤éî+V¦A‘’KŽä>”°¹&¤¶((÷ â3FIý“O¸Éñré…Žu:lˆOJŠª<ä¤Ñ©&[]ÞøùÔÂJYÖéIIv£çJªŽG¾7]Vgs˶¦F§SéP&hT©´ô›Æ“Z• ¹E•ps©™¶¯,¿C>Ô«ÆKt›ïV<+—U +Œô7Ôªu>§ÃM¬¥Ë+$˸\cë‰ÂºŽVû%Ü|ðõ”OtÜŠªF[0ìE`yÏ׿( =Ĥӹ¸Û†£#.;ë +˜i7;lœm鵊FªÊ“ûæô^åDl»PæSé詵R'é§(™f4ƒn;èuJR7]#Õ}v9`äµÆÚâ–½Í+\º5–dz3zºÝìs‡2ç†èTýѨY–¨’#½ éA·og•™ž‘_ˆV¾SºV³¶ÝªÜ +Ò®“R{›Ù¿´Áøê“E§ÄÃïÓQÈ—v˜Ù¬• á¨õ¶¸†]9K<“Ø­nãå+8©om™§e· áú*™crWN\'a„¨¸¢¶ìiUÌ•Ç«Œbâp²¨Úº³i«í]…øzªoj¾Í÷âURr醢IÃÞ/|À¥»Lh4Y)ZL‰ÆLö(¯Æ.«…”œÒz§g×tRUÅy­öYžü,àp„# ¶¨•)-ÓYÅ>´©Ç‘(Œ´ŒÏŒ®>3ÁJY¶,ÑKVë;ŸE]+mÕ7.õbÝ¥åË ay(tx2úO)®/v4›ËzJ é{t¤+è@¢4@@:×h@ mv„:×h@ mv„:×h@ mv„:×h@ mv„:×h@ mv„:×h@ mv„:×h@ mv„:×h@ mv„:×h@ mv„ìTVÓ±¨E-²úSqIVU,ìE` ÿÐuã   +)Þt®ðç“èV…û©»âDžŠ÷Ï°ÃÆìBã¤hÙɺ”!n©IAY)RŒÉ%Ü#Ø)b¦MÉŽ ,¡ÊO“=Ö… +L´xE¤Òt­eŠüv U^jkj·Òì_F9æ¡Æþ«–ÇH¸€éÇW*D“‚E¥¾73ÐÑÙ{òwEò­»7¬¤`å­£b)½MIÁÑ5o‚lô4KŽüЕhÅÙ½b0rÖ«™=Äl@MQÚ,”B2J·shô4U°ïÈ+ÎÇ6VõÜ¢ƒjéÎTp#£—!2`E˜jZI&J}:F’· +ÙÜ—›&»‹åNÑŒ¼årÞ×ãSSWv‘%TDe Û2nÇ°ïÈcèêÅ<­ëà[6®ŽïàLCœš³´y(„¢%æÙèXöùh§–úøÁµts/b(0š©H£In#º:)£$Ÿ[¯»Ä+ÎÇ6[ëàWÜ}êY9ÄôxkŸ6‡)ˆ¨¶“«hÉ}—>è·Ÿ…íurªœš½Šgð&!OEUÚ<”BY$ÉóhÉJØwä1s«òß_Š «­‡¨œ•bõ´—Ó‡f›jѲ‰“2=-žk¯ít6ÕÑçT°#£¦JæѤ°˜ÉJž5¶dHJúÓ>áŠÆ¼^ǵÛÒUӒݺþƒÄªQgQÓsâ¹n¶—P—cR¬”]ÃÆiìÜZâí~'–.-ß7ŸD“¿t©ÿj‘¤üŸ¥8O~O,œõˆï×Q*J*o§¼.¨ÿÑuã   +)šÐ¢î ¶wð\—ƒà>‚ºbT´œî­è¾$t\­6¸£¼Qk ò4H¼Û\CuªÙ­D’èDâÖvü¦c HùÛZ>Ø_+O©’Q¢–UXõ‚wòNSk=з¾žåm ÛOO¹qƒVÉMKß9«qۨȡ¯›Ë¹;ý7¹icZM~¸¨UJhé¸q¼>ÊMä¸[šSe´h½´”}Ë‹âÔe%Q]¹«u­V+0ɹJý[LšÅ!øtlA Û“=.áöº‹ò‰M<­«se¢;‡zãሕïºÕ«kÛ¶åØel»ï v-[™œ:Û)ƧHØZÌѹ“I¿\]Â*~õGìùßNݽ‡Ö/ÆR^õS×Ãgß(quÉ•œ¥E™5NÃj• A¥9vÒDH¾Šok÷…)Ád‹ßÎýÒ“o2Kâ_}ŠÚ‘Mf«‰jÒÞ¾z€ÃqLÜ#Ž§ $% ½´‰]ËŠKÞ¸¿Îêã·ï…Ûƒ½TÝûrýó¥SÎ\Å,µRq 5„㩤%Ó$¥{™kI^į|%á'øûè¹Z.Ó¦¿ý« +ÔŠúRÃ5;¡b¥€fd;ÍLº¦ÌÈÈÍ +4™‘í-\B\©÷è”ÍÃ{o§wJÝ¡øÛÞqOXNÁÑdÆößN+Cð7·¼)ë Øû&µPBR„Ï|’’4¥$òìD{HŠúˆS Ø£~KÒ”JyÕ¸¢""5¨Ôv-…¬U+ ŸeÔ¥¸ÉF\§TÉllÜQ »É½ƒ*½Â`ºŒ·LeJuL§cfâÞMìUî9]Nc­!…ËyM"Æ–ÍÅnB3±U{‹î:BRÅ—LÜ-™¸«¨¹^²ïŠeBçeTæ-”ÆT·M”ìlÜQ »É½…r«Ü\êu FjQÉtÍIÐQ§õë.à¦T.dåðÞ‰=3å²…&ÞydQ”de¤”–£Û³`ù×¥ž.)Úû{ ©ÊÒMë¶î³ΘíFKòžV“-N,ùT£¹‹á’Ü*Mɶ÷”‚òÀ +êu6U]öâÂŽ·ÞpÈ’†ÒjQ™÷[)%­•JäÇÁXLò{Irœâ’ºµHÛT²Aßpe:ÒÑ™}ž³ö?Î;-ˆ”ÃQÈ®ÉU“ø+BQ¤\D0L’GÁNŠR]¢ÿÓuã  šÓ{—(ÃÄ”ò} +OpÅ14ÔʣȊÄØÚüÆSDêyŒõ—1‹¡7ŽÅ²Š{L2ƒBmgùSù·B/ÇÛ¦Ôâ|ú0éµ8ŽÐ꬚…ÏŒ:mN#£Ã€t:‡ë&Ÿásã›Sˆèðà¡úɧø\øæÔâ:<8C¨~²iþ>0éµ8ŽÐ꬚…ÏŒ:mN#£Ã€t:‡ë&Ÿásã›Sˆèðà¡úɧø\øæÔâ:<8C¨~²iþ>0éµ8ŽÐ꬚…ÏŒ:mN#£Ã€t:‡ë&Ÿásã›Sˆèðà¡úɧø\øæÔâ:<8C¨~²iþ>0éµ8ŽÐ꬚…ÏŒ:mN#£ÃÉShfd]$Óü.|aÓjq<v™‘ãÒ)±i-/R·£$•Ÿ}gu{ä>3­)ûæÙ|i¨ìEù…°Š÷Bqi5)Gs3Öfcæ^J,3HÞˆGˆ…A“XF‰÷APÿÔuã  2b÷Ô³*˜i©$|ð +KÀ -F{™xÀñד¶ôÌËÀéÔí¿K/êvߥ—€u;oÒËÀ:·éeàNÛô²ð§múYxS¶ý,¼©Û~–^Ôí¿K/êvߥ—€u;oÒËÀ:·éeàNÛô²ð§múYxS¶ý,¼©Û~–^tdí¢?;/Xœ|Ÿ´…îeà û¥á¦âÛ€^P_Q㥠""z)± `?ÿÕuã  ÔˆõÜò6o´òTD«ˆÓx£€ñGj@x£µ ¼QÚÞ(íHov¤7Š;RÅ© âŽÔ€ñGj@x£µ ¼QÚÞ(íHov¤7Š;RÅ© âŽÔ€orºa ¸€T0IâwÜù’F@àÿÖuã  ?ÿÙ +endstream +endobj +84 0 obj +<< +/Filter /FlateDecode +/Length 6114 +>> +stream +H‰´WÛn¹}Ÿ¯àã4à5Ù$»;0 ¬í]c/’Àó¶,dY#_tËŒdEùú°.$‹}‘ÛFÍ¥‹ÅªSçœ:ùép÷izv§ž??ù›:y{úxs§^¼xùú•Z½Ü­jUoMãÂÿÖ6êp±:yó®VÇÕÉNÿY+­vûÕ¦ÞÖ6üu¦øå·mx&ük·NÙÞnMë¼2nëœ?¸Z­u[í>¯~Þ­~þ-œô¯p<φððîíÉ/Wµz}³úÇêäïÞÛÓë µ>¿Þ¼yYüöê×ת·¶LUAF_ GM9î8Åš³3NК~ª•®Ûm«½S­é¶}ß{Èí÷õ/•i¶Z­o*­·^­êSµ1&Üe}]m´ƒ?ŽðQë»jÓoµ> _tô ]ÃÃg•…ïϫƪõ3õ¾25¼T§UˆÐÁ<½t|–×{8 ¢½í1|x.ä@XŽ>¸P{HÁrš¤’¥‡äðìÛª†wçð)f^=§¾>ªÃ9ýð²Úà/O+ãá2wác‡øúƒº«zøàF]ÁYÓÁ«È3•AÃa—êc¸_¿Äù‹t,¤óQÉÚ98î–…k„{=VMƒÙSå?Vºçn ¸Fø‚ßãåÏ ãK¥”ªîþš@7+'`è®»6ÛÖMoU«í¶M¨9†F¶ÐÀp—ŠY܆;D(…o!Ò](àâÀõýå´ðü–HCÂdnUÕð&<>¿E õ²ðöø†p†8Œ£â Ö¯0N”>ª3(d'!.€¶±pø@Ùâ-8!ìÊ 3Ð#À5Þ ~ëuè94mæwñØ40çê:"+âoœ†œèÕP¥¸ÿPûb?Rmd€--!?c¨ +òÐVÌF¥[>ge!ȼä®@œÍ ÆêzëúÞÆöܶ'FÚȯ£+g ¼8%±CS¸ EùZ5ÔwäáÅøFÒâZk| çE,d¤è¹\rŒŽá˜p"X[øô¶rÈ™[>û×jÓBÌ=¿Ï\‘š[m‹9 øE Ä™4D8çÜæá’¹ô¼ÂªíÃàn +hÇòBÐüaˆ•Á)C;ˆ$aè9G#c°tÏrÎ ñNBlˆZþ‰ç¤A¹|ïÌ—º‚ƒ5dØ4¤8 Ùho¨–’¾ J´w‡ù{1Ø„ÔŠ± ¡,ÏMdfó”mÀ¥‰¸t\zî±zÉÈ!’›à AdQþ¢€Ä&Ùbè#~°y-q!°#*‘ÆfF€¾btG²…ˆÓz.‰V>ÁS= /ÀXaoŒìÍD£žñ…3$yxs×Rq»Éâν(.žÝ–Z:­¤ÌÚsNIÓQõ@¼2y ´ôNKÙ …ØÍ ² ÞI"2²EšUJOú¸èÒà‚‡lR|É+cñIZÁÚñ¥j +bãÎó9¬4\Ø(59òê^=`q}ô¤+®°tTƒDƒÏñø>€[Ê°eq§~‹1É3àçJyðŸÑ›!˜?œ,+ó5ß@»ÂnšÄÎmL&¾‡?þÃE)aêJO¦Xår%{mÕÀ‡ +û±t}!Ìzs®+C²UÑív‚=ôÌ—²£O‰™)üMœáoM0ÊöãbRüª49œ)©$1RIÊ:[óùyûŠŒ+Õä2IûDáƒQÞ‡·¥›À2ÐË‘ägг‡;8šVݱI‘%^ W[iÛwÛÚ÷¦@ÏzSí>/ˆ«K`š™­ÄÛFl%“ [70æ…EvÅÀl%öÞ&¦>ÞänªÈGàQ ‚±–ñ•zœj$Í“7–)Ò%»¡°eŤ×D¶6Â^pl0âÄÚTËR}.8ÚDV/§Fb7ïøMÜ\ +æ+ômÔÏy8¹6WJ,ôþ\ý/–‰eÐiæ¹)¡&”1Ûû)ïè®áè«Ñ2àyq9q4-¯“—Á)NNAÄpã42Hì ֬㚉Åi¢f„æÒûabXÎ&™·óÚ)–«)ÿs(ÈÉÓÚíO"d +µ©™ÐºOâ+[ðU'}:¨&ÐÒ9è'· ûn”ámÙ|]‡›kµ°ÒïÐZr!o_–ÛC5I0|€®4ÈÉy¥râ2*s@&A´ ш>XôÄNØ!vZQÿ§Œ‘Ë«Y8°#C§)ç69µDld #w 8.·¯Cˆ$1Éô‘i&±Ó=ÖÐpNy~,×=Ûú38¼›sÂV,œ´—>ShYÊm@¥3uá´åN· Jn¸”µÓ<â:/ 2º_ ëR°ŸÌ«eæT)ãÜâ‘—èš& +Aâ Æî¡Ô €Àkf–Áǽœ>–yžïYôØï†jÀ¡Î QÇ;Âïþ(.8ncÁ +G°®0ZÈ8ÇÇ ƒŸl/­ûm¶îHÙve+¨¦‘°¢¥#¸$Ón;aÆÓNHS¶ l¾ð¼µq:®5ÂóF£¦ÆÛ-Yà ½èjäbjþCÞdó.EþuŒ¯Ä‰_ž`—ùõ-ÛÄ‘YViɱb±©{U?$ Iƒ‚Z ¼âºˆºDçf/ö-Äq‘r‡¬Vˆ ¦Ð~|4­bÉ÷“|\ª-ƒ¦F…o†É9N®•ã@´¼] +°vÈfÁ-Ÿ)ø£A¨2íFhsøꤑ4Ã27üà^ÚY'Qö¾Jf˜;Œ/©?H ÎN¸VÒãëÕS³Å¢×HãžÃiÞ `­ô5™¼$S\P%;±Ø$!o` °ey¡¯†dÊó^UZ³hH€÷€õ2œq옵"Í6eè b¿èD{¥±Oz*ãB²]iÏK¾sÁµi +®Uµû¼ x_r©îg¸ÔZðÿmÔíÌnÝ÷t¬Ð†|„ÚJíŽ:뎰ÀŒnÌ‘EsŠƒt™Ö§1[î©I¢í¬9bbv|ŽJB”E “Ë#{ò„/+\•vdc2„BBËJ„ÍNöS\\¥G×aH)³¶ŽKù„PáUß…Ó>gòæ:-ê¯çWIÛwaÅèM¥0øK`êu Sïg`œs^T2·Ž-L$ÖÀ] +˜xštÏdÝ@À ƒíM?ko2miÌ È®ö1°/‰íxÇ‹BŠ,·ÚѤ@ØÄ4QH›=ïk^hÿà(°µÑm¡´êcÉ`ÅÈ {X#—ö÷—@˜<æÆx˜öÑ€&_Š2ÖEóÓ2åp(ÍP +ä,e3ð¡Í (–òÎóª×9l¤áþéb‡Äîäd"€bVMKÛ‹FX’B‰Ë°P‰Â•”z'‘öcR?¸ú%_q«~âm$0:Göm]”wL0£n÷ìÿ'Ìê{.c4.SÅêÓËXZ[‚ËÍ 3ˆ×- ®ç·2Ÿ «@Cˆ¦=³È¾Š¤ß?)³‡T‡N +”·¢ÇÉõÒOÂh¦mm +ÒËuÙ-û±Ë[D‘&ï7yjaK"ðúžéh/ °öW ²6GƒpºÌÄÎÁ Âsð©8*…°–BÇÍó]öŠ7 ½bÝr- +í§mÈ·CXÚ®ÛÐ)ô¥Å £‰&&}ƒ.L Z¹ j/}”AW³áYk§„’é+ªžì=¼ßª¹/¹J¥Å^¿s˜q3Ž} +º#cÒM†A©¸Â(D{ åŠÔžÆ='R6Z¡Û O$çnHßLèÄXC–4ØÝÜ`/Dm»µVKQ+ק1Ú¶3Ê@gm¤=†Ú´“qD¹sFÛO*[$‚M.î´R^4¡¿,¬_±É©à¿þ·Á•.V'oÞÕêâ¸:yeþ ÷W»ýªÇRôª§¹Î+ë2{‡¶üy]×Í‹%åm¥ã!SqË]R—7†©/pWØíø¹›º+šÄ'Oü}Æ™—À+æ¡íÏü@„0½ÑÙ©…êi/Ä/²5pœ“±7ä>‚I«áë¥ê^˜¡ ±ÕGôCóNzÍþü¢Š«¢Â!•÷4Â1.x—ˆ7f­S8ÕiU… u¥ü—ùré#·¢ðÞ¿¢–*@-É"«*d$ «‰€,l pÇí™A;Ór,ë߇÷Aò’¬j±Õ%Yj¾î¹ç~‡§xác°&p@#´o³À¯¾k“ê¤/•ªñnz¾TÍ)©æK¶Jul”ª÷=榖4+¶®5ëmtÉŸÚŽd%uÇÐÁ“£ ‘14‘9t©kÁúb'Þ‚˜e˜[Ö3é;ãóÆ?c óÆb£‡õˆ¥¦Ä[rÔçÄV 'ÑŸÃôƒWœé#¸‹™ÂþJXûYZ:µ_ô}-Á:¤Mú'Ø,fQ)ˆÆ,:¹<.èyKlþtÛú!§]N{€\@^z%‰ú†ÁȾñréL’1z\.2•ÔwŒ¾·s9ïÁ†r!]Zôßâ&øÑÄ^˜q÷þG­¼“Nì@àßp`y0ŠÞxQ¶1;%.…:”@Ÿ¬´ødÙE†ѦÆÌ•3xYFÅD" 0Ì‚šî¾.Ð'B ª/ù‰Ï0¹ÐahvûÂïÂŒÛQåÒðfò¢z{ü®õ±æ §–Y<Ï?µ–S«X²qjÍÃóKîøæê¯7>qÉøÁõI¾àr«ñÕÒI,&‰å@}þ5¤89!‚ g}HDhAÑÄ'Ê‘aùÅf9—j—É&2ifšY]ªŽiy~Ïú”:ò%[ÕaÕáz0fÃ5äÞ5ÔT•<&ÇãJ’Ôé*üYš6 ?%0XZ5•½Ä¢00p¬‡P'ߎèQ¸Gܵyè9ï‚ÓI‹Ë&J)F?ÐýÇ#Æ,7ä·ü7¬?RªÔë=%r~·Ê°{Ž=ðVžºÓšæ©ȶÆwÊN56 )ã¬`h˜¿`øø^YpvÚéDåÂéYfÞŽ4*ç}¯ ¼aœÍ¼â2³ŸžrJOÃÜCHå®+Ï1+Ô…4Ø‘êŒ|WF‰‚’°MzÅR%{Õxáû‹L7³”"á<Ú÷gÏ/)™œïÀt'‰nLxGã]Žñ#uÆœA˜l`ü›V•H°glwûOïÀj ‹ò¥ŸjÙŒ¾˜‹ +Ó,Ó;v#ZÕ£rÌ nL=ô¼1ÒU % F«à¾‹­æÖ •,–’WØDQ&îd•Õ¢ÝpG¿ïÞ»«Ÿê^ Û-Uñ¬Ѧ—»‰—H%bÊË"“Gc›§<ˆ +öØñwÅFqP{û¶‹oc”áá#šûÆ+Í啤Az—b‡nÄy›½ÁBH‰U>P['ï¬4´©|Î,Ö±úx-4Ÿn¢v üxÓýß-ò^/Ñ¡Vä œ3ÏêÐ{ºë/=åÑ"¥Ü[¤>Îz J:÷+%yo‘ Å´lO[;ø£m25]uM}±d™Ã·—Ë׎­à¯m¢P£8,Ä©†¯/{¤£»À6 /ûðMMû^©LÜaVõ<ʪqY¬¶ åÂz©Š‰eb-F£+¶ó?Ÿ"ÚW'¨…S1{·4Këz|Êüñ=1IºÇNi”»F˜*LðÃo¶#{20Û|ÝïðL;ÿzP·E(ý×Àè,ùú%CÆkSò¢¶•ÕæíQEµ¥'Æ~ÇC +e +Í &Ë®¬’=O®8é ­¨Ò¿cwåQá ž °ŽÎ0cK(Ö!þ5Á÷“¾†ƒ€Ç³¸=M÷=úØÞ·*ZV²UVòÔ?·ÂÜ¢s³Ø +™Ú×q‰åûSÌ—_žú½{÷Üq…n³C]&Mïˆf×2@zí˜ñ3ÎXØä1+?Ò-úXoFh»øYH¤´á=~‹ Pa®a—”-lWSDtµ8U>Âô±Õà• PøXXâå(8öÿÿnÙ¦³Ýövƒóê’Âi»eÌÁnc~éI‰D±Y®%³nhal2z“!pªyAŒøB̹úi=aôlÆ6ö¦•â!%è€i¨ÎÀsÍ‘ßï +‚ã¡¥ñc×™ü-NäšÍÒ%+âÎD©AlDðÙѥ¶)Ð3$ÔðÜ)¶H-p…åD/uq¯ã¡ÕÆl.­64c'ç—ȼ7’6ð€ñ)²ºfOëZñ€Èf–åãr('Ô¾®?*E|ˆi˜lKã)JÃ{ï3ã 2°zC.Ä6uM¤Ÿ_1%½¶š¢ñXœ )[»!e½d¯ÇPð”›ÒOÊVhHw¬°ÇnMê*§¿î7b#´¥ÌŠ¶)A&öWõjØ«´@õ•Æˆ¦FÖ›ü'p§/{Nhwaty~Éá@^Ç­‘%~ª`Jåò¨8õÂ<ŸÉ­Ú¤l€•)ñrÙ(é¥ ;½¡]?!„Ïá§FvÑ‘aìh‰Ó(oD6#ï–Äe/öMÌVÃk¼š´ Vr¹!ß÷øÌ¿ÃÚt¾£ÜÔí4,[]˜yGðkÆ’6KGmOÔ 5;HS™vFªöžIŒâµÓL 3U(”O=Ç´dØ…Ô«2ÛŽXVƒKjÀÑ;KŒŠrÙé‰YI-7a-ÑH&0’“FWŒƒs¬î¼´·‡[¸r7‰}Š­Q£þ®µÚ:«¶]cý¿ãhºãϯ^ÿùoC÷óý«×Ôÿðèn?¼ZP K·øÚÙuÊ™›yžp +ýÞûŽùC^ù}Ø7¬啯9kŽù]@³Ý¿à +/q{ËwH‚VÃt3)g³-ß\ýþgÖ…ûmðÀæŠÐç+íÊHúN±0x€#ÉÐÿŒGOc<`é‰HˆÀjØêûf±—ªÊÇ5÷ U¹SªÊ×lVÕtªÄ–o®þÞØ›y2¼[!°s4Æ +³O˜ä%ž“‚BIö1­áŸ3Ñah 1BÚ/%§ÃžF6D{Q×Î/RÕÀÈàˆ vaj0¿=ñqàz8„…¾o•õ|©¬§ÛgÈz9%ë|ÍVY«¡QÖþ–ã˜c@Ò·ØûÍÕ_ :N‚•$®IÞ’(@6ÝÛ«ÞZøTwQl·VlŽtü§Þ÷#ªömÿ¢ÍãVšG—ͧCAù~U:øêVï±ÒþR°%±ëB&Z ¯ZÖÃfu&ýšºµ +N½ N`bÒ‡xõ!"" eê¼P¶ð/t +F¢ß…(ÆÜ7 +c#„1äÛ¥ˆKŽãÒ|f\â|³˜¦ÖÀdòÀ4ÁŽqhøŠŸEdb›lÖÆÅPé4œï“ê$Tæk6ûd+T~u³Õboà€Øð;›u«(÷¡‹ÞýÎ +˜K]P&¥ÀvUÄBßÁ½ôŠÏ}é¢iè-üÅSÆ¿V¹wüd%ñ±7†?òT÷c|©÷pÿ«GŒ¡.žK¨ç8ŽB> +stream +H‰¼WÛnÜÈ}×Wôã4à¡ØÝì& ÖöÆÙÀ›lÉS#itYdg4ZÅùúTUߪy‘(ï&0à Éf]Nsêô»Ãñær{~¯_ŸþYœ~Ü~ýüpoÞ¼}ÿNœ¼ÝœÔ¢®´±ðÓq¸:9ýð×Z\ÝŸœnÔ?k¡Äæòd]Wµ6bs.—G᪞me…R¦2턶•µž¹=Y©Nn~>ù~sòýð¦Á‹ðy|ŽÇ¿>žþþ¶ï?Ÿüåäô' ïãöîJ¬vwëoåéï~x/T­‹õôŽ!åÓz +£Jוª­­îª¾3Ä뺮ÍÆ/jÙ‹Ò™1±òÌ®YxfWZ`ðŸ°ÂÊWx³©”R˜ üOw)¡Œ«jgø›ÿ¾úƒÔMÕŠÕg©!0±zçšÓ‰ÕV®U­X݉l*-Vÿ†_4~ù"k|f'×®RbuŽŸN¬ŽrÝã[©~ÂßPA8áFÂI ¾¤Áßïà‹¿ß 8ÈñWIÕT½X]ȦÇN%ö€ÂS +?â–îmðе¢§ï¥ÿ„´Æ+x>r‰ÏXö,¾V¬à€£.£t!J›£„Jt˜ígŸý¾†²¥Ë;I¥8ÐÓ=½T×E>ª+q·²KZavG8ÉáIܦ…ÇA¬nIp÷<÷€¿÷Øú2ã k|è(ä?6\¯žÃ &ÓÍ@ÚÔFíD®ijäÚú•tDŠR†;ÄOH;ÄM¦¥^`ö”4²†¤¦Õ¡ + &…4¿â„® Íï~iè 5ðŠ Ey@²#꟩§-opþÂé¢@›B¯Aæº^Sa¬ïÐö¾0ßá«5jÓá7l±Â®{< €‰ÏZÈó2ó+ÖKD~f‘ O—²ãÊ5À¢|ñBøhÞrî&Nö´PôyR Iª” +»dFóÙMc§¯3ä=TÄá—k ¶™p ýøç^"]¢­ÿŽó™lÄ°‰ÒÀ+fb–!ƒåF<à )æ!Ø”(™t:ŠÅ gˆp´ê~6úkÛÎÃæ« |Åâl¸:Ù‘ÀJÚW‹©Z|$ôIpè(d¼œMjU’<3£S8pT×µT-Fx`v¬°¶¬C7€G°‡×¬JÏŠ•ØxŒdaŽÉÖ+ðfœI9ÿ–PM Õ΄ڗ›ä´¡3×ä2¾$ -ÈËBÀ4ó’h!ºFYW`^¸ÈÂk[x,eæp«J8<“ªtÖý´ Är#“L{²DX¶{4nÊšÏÚç؉pŽÕhÐÎáÜû q^ZׇJ|‘ÿ=¶~ʸ` Æ=a›Ã°^‚$˜Lâ8Gi’‚g&€Þ‹lÉFàMŒŒ/@Ë–-¹{9k &§6'ç´˜¿\éÌ[=”÷>`&Û¡’v%^£’îE©µ JÎô¥AnZ{ħÕ!2?ˆkîÚH £7- +|Ò»¾Áï;¾…™(² +·»µnñ ½ïMâ_,åjŒúßd`åZð_…3®¹~­ÍÒ9¬TëÃŒ¯KO¨“uÓš¶LÍÏøŸØþv Šs ²=ÌlUf„–Í@öËÉ)2•ÿ š˜sñ«Ò“ÑN{3TvÅkò­@G9·tfí†mĸÖ?CB%PÔå»0®ÛB}Ó¥C’É!ozkªÊÀ¤áýäKUƒ­y§Û›Õs›góFtgÇêí(Vùm¦^cÑò®Jú\بƳ[ÔV@Á(Àk Û˜âØ>«Ù¡b!]e{}½x&äc@yàï±q|Ò™³¾Åã^{L¸l¼õƒÁîXS%qVmÃüùÈ*ÄyYûb@£kÔ*¯YÐVl|6‰ $á+þYJ¬$ýÄdÌVXnO#ýÃf4ÓcgŸ6‚ápÌLÍZèÔÊM{é©÷"{õÄYQî4‘ÏãÒõí·Y„\¹µ3‹{ rÔ€vš9àÀÒ˜ú·®Y¿f¿*Ìéã„;Ђ k~ÁQéŠ.4 —3\÷ðè´ˆo“ßT!¿¸JeÂ90ï Íf·oÅó5KC@Ì­3®&=bíå`)`t ˜y¦Ñ–¹ïm|Ñ¥ŸáÔаHí“ËÐ>PSã'c¢‘ic»…c¦­÷yH:é0°1NÑáþ¾è½õØhxý‹Æ‚{†Éð¥ÂÓ­&¼„‚X]À¾‹Åx@t4ÔÐ:dØø¸¡íÄŸÖQÄ¿âLžÎÌ)—n›‰i1¼ ‡×´°a Zl8ÙÚÒk$¢H¤1Úº€°¹÷…, ~7ehLP0©,:÷‰é2–‰º³FeGüåºeŸk™$Þ&?Ʊa +>@SúG6.¬ÊPFïÃmpoôÚ=÷wxØ䩨‹ì¬'½ø3¦`ÓÌÎ'%l1„¯¢M\w‰°’°ÙRCdg}üåÚ¥?bôÁ*?°Dv¢ºŸ™¡¦3Ì–H€0 +´¼‡Ìª©—e¼AÝ’*FOÏçÃæ +'Bø O:dM¢ÎèÒ’›Ð±?ôP¿hüBݳìD¦ÌÁò6ã1XâÛ=éÂ_˜r¢#3¨z°Ìz‚žhËrÝtßf\ůÑÌ4(Å›Ѓ¥+.mjûø‘âgå¢RÆg~ò㯽¿>HG‡½šðgqeƒ§> åÄSSCFôŽbg´ænj›z j°–¢¶Q%j›9ÐbOhÇ<²g­ðÜe¹rLæ<ò«ÚÏ°N—ÄgMŽ—Ø{îàGbžv¦(áWÅø—ws63ø€”.\†™mQAt3~/éË5È`9]V¯öÚ8p~’Œÿˆ#wâl7òüy$á7ÒG}(5üÌ8 ¬zKá¨N ô n€4ò*0vZavØj£Žêæw¤»rÇd‹ƒ}rq˜[&ðMêðÝYÅŸ¤Ah%Þa +^»À8‡9† çÌ5"ÒBÁÊXn/õõ"Àçb°Cœœ¢ÕO"g&ß)é^ë¶* Q{¨wH“ʼ[ 2SR“¬›º‡P @ËÀ—þ ŒÝ¥¡ ÒáÇ: Ó¬`ÃŒ\7ÄNXÔ it©á¶dŒ)äpG­¿>nO3Õf}CÉ4¾Üqy®´!Ì8^â"ÌÌnŽpô“‡ù)Cæ±6i€æ*Jõš„Ä7aÍftÙ¹f]ûA%v<^˜"öÕ!‡Ëµq.)ožöŠ§Ì:“׫IÁÏYZ©v¬¼Ë:6ÇžÒÔŠ« +T¢”ïz AYÐm-e…ÆhØ%4à|í.—Bñ%‰#f‘k®üRTÞ†q¯òÀ퓪|tÕ—¦š\•i£ VµGÜR4¡‰•ÎE¿yà’2%=Ú²0ê=0 pÚUºhV¢‘å݉¤Ù_2Eca¦ÝNÉì2+AY%TŠA$¶%&+¹ÄÅP§löX["Ãd³³Ià¼g²–kHm;«õö®c«³Rçæ0£¦™úð¶.«&6pŸë?ì‹ù½î' ]û·¦»øܲð*Rí5vöJÿƒ +-yåòøé§ç„fÀÝïÆvtÞ³Ž”ÏŠuèç› n_âçv~Á+Uœ¹ßh+÷Cl³÷r+î=ï<¹¬]ç-g¦ú¥k_q œ®Bm󜸲œÃ<î$T;õJ³ÿãý©Œ£ç¤ ×ÎÈ›9zþ»bï£ðyß üy¿Á…|.²\±U§I( H²yv‡ÕÖV ð+€2ùM,ÂbQMb +P÷q;zÏ$_O¬§ÕŠ•X¡6z_:Ç\ ¥½°`(3Ü&¿µBÊ·Œ¾BSóèõèû=¬‚+Î$KÕ&V3¯e¡;p9ŸÅ\¼3©Ù\`,«G=gd(Ey£Ýý© ûbØ9+_bzl® +½ð÷‹b†4.[§u$9õÌŒtá€Á±„-¸‡oô”O<o!u2ÆÊ°”©À°vOUöt¹†R»ÿUà1Å¦É ¤ªGoÁçÓ!¿{‡.@žg4öqÚ’ƒÈƒCx‹½&æŒR ßí¯c(Ý®[ö°‘aZ»Ý%ÐV¶wª{) ÒI"`k¸Šš¸Ö© JAñÖ^(8.òA'ÝLÄA¦å3öf,›Eï]é[ID1ïšsºoˆÎ1ðµî˜¨§I9A›Ý–Ð}JR÷Å—B#¡òeƒ™÷Š›†¸ò€7ëZa3•°™†=Ø@0Ⱦó.Wß²ÿJ ë±—G?.³ç¥Y‚þ¬ÛåÑ¥(#_!xhÊ’F)Ôp>–cëmâA‡ÿY4çJzð/× eŽ5wJ2ÁòeÍŸn4 <©ºkæ{ÊàŽ‚ÉÎo•e¢6†|Cå'Vù°£òj€ÓÛi±æ +-+9ÖÅÉ€ÄRqj*‰h7Ú€L¹èÐ6¦¯ðdDþȇFÇèH„b­ÈI -©_;øxæØwTòÏ::åVb_²ª{œ\æÌ»¸éîàÄQQjý(“X¾·70ôe¯ yŸEZ¦ÔJÎúàÌ°,Ê©ÿE,JöܘoX?_J<:sM­#þþÓ(:Ž,OŸà!²„m¯ŸÖ +L½b:qI}D2aÄíºO¼!e¤)¦fgáiŠ=A9!>êx\H5z‰â)I“efÃdí Â^î"õð¢2êÔü¬P²ïé« ýO£2g< ‚¦äËEHe*”G°5Âjh°éJ­6=ØŠ’w­Ó0{eÓ_7P#LÑûVªÝ¹5u¥äh…ÆÅœRcwP’¬lõbÉÛqÔ¢Àk…Ì4‚)¨µS  ´Sj¶’o +z¶ò(*}ºÌT-¾Ãó¨•õ{4}­t5R¦=¤@\Ì&û‹@Ò‘iÉ´´KJã)á<mP¹#Ñ´JO4íÇ‘•'S)¯°™1Ä@f·¼&ÉøÃNóSîrNILŠ<—ñ¿ÁšN,ú°eˇY×7µ+»Y½‰ñuu;Mq€òG8 –òÄ:%x§µÍt{HzÌ%ÆA­4EMݬª!`«Ç9[÷Šõe¾l¨ºa=V0¢È\r›«†?|É,pĸ+ßà·}Cìv9XÝBÓyfþÖÁ ¸™Òpæíÿ&é°]D0ÌáÈÄ)Ç©òↀT(&²–íVh† +AÞï!È[eÄ7]ÁTº‚mO0jÞ~-ØÏFqÿ°¸–vð„¼ XñòïÖþk'.ÜG†~ÂœÊÃq§h–YB ßÀÓ‰ÖsÖLµâËyR£€ÄÚ*0 +Bà$’Ak>—céÉ8i/[©(kÔ¨Ç]J|c3Ê&M€Ç@†O Ó%¬ÞÏ*sšŠ”T§øô!—¯l¹TË橘ÿWòI8‘N +¢<‘MàD‡w¦P-š°™ºíñ<ß1N º—+]Ã+TðšÂËËÛÔž[ú„©És,/HÇÁ$ƒ÷ˆ y5Œ°š[tUAªYWµðLÑè%˜*²0„l¤%™›ÉšãAO˜s©â¼É2È1—0á°ÀöXŒX¦#)7®ARy¼‰šÊ„q¹¢pKFÿˆ©þxsxÿ×TÒ©/zÕŸY7Â_ïyº}óÛßïÍíó›ß.†Y3˜‹Oo(PPᡇ€ªÉ9ãf!þ¿=‰……qøŒ +lµÑL„=¥A£ï4Ï·`@>᥅Gœ|bÀ|‹¥†fX.2´Ç«ë¤Aı¨#ñ¢uj­ïò󣉋Ú`t¡Ú`(7xƒ­¥4ZUÙì°°S(êöÖìÍ@µªÝY55#8`òØŒ‡n’²‘V¼Æƒ?t䣾I9F4WHK4‚ŒÂ1QÏXK/Ed–§ß_hM‹)ãE¢Ö¼U­aň D;qèÞåF< +ÿ¤w– ‹Ø<Œ÷iöôˆ>7ŸYp¹ÖÞ¸SU[•!}){ºîx†ó©­ +xÓ^sA~08aæ£âÓ*îý«¤T~v¯_)Æ@ŠšäÈRZã!Ñ—”j=oU„»Í°äiÿ½•8J<,×x㘆½>÷¡w.JQeû8®½4ÚŸ*4œ¦×…¦Ú€94i›–²á¡ãÐøœk\àÒS“(ûØ·n‰Ÿë²Ê@ç¦åWЙ?µ™x Mi«*·¬6PòøÎP¸Y±XsÁê쵺¸6òHéV ûA<ÿ$žðÜ5‘!Ø÷%ªìÄÎFZ#…a­¼‰ÏÜ>Qú#‡n‡(NŽùò Õâõ.ðÖUúá?¹‡™ÑídÏN§\ðZnK;”mßñÊž¤/pÍÉžÉ}Eaÿ+ÀÆ > +stream +H‰¬WÛnÜÈ}×WôãðPì/Èbßb8ØÝlÖJ^â`!˺­e#ÉVô÷©[7«É¡L;kfØì®®:uΩç7w—gÇ'wæ‡ÿj:~Ø}¾3?þøìÅssðìè 1Mí|„ÿCðææüàð՛ƜßÙßcÍÑÙÁ¶©Íщ‘÷¦­;xþuu4aµmaë[xçãÁÆÕÑ/^þ 'ýÂ÷ñ]Ø¿ýtøçy±;øÛÁá¯ÞOÇ×çfsz½}õ¬:üùùëÆ6][Æj0¤¤å $ÆFÂkz<ÂZ^jq‹º³m4ëë¡÷Û?7GÕÖöfsQµõGš«ÊÚ~8­¶ÿ^W¶©[³9‡uÙÜárü~av•¥g~t´è’}Ä=:Ü혖GØÆÀ3çê@;Âï«í€.+XàÍæ ¬´üƒkð±oðçÏÇô»5›+s!Á)ðS‹ÛßšÛ*à¢ON!wx€³x™;u¦Ž$oy¢ +V×Î6ç´˜Vü® +ÿÆPaßOæžv ÃWògÜi(Hø€+w:[ ÛœÁ÷xU¹€Ka‡×ï[À^'Ä©©þuô—Œ£GÒi¤ÔMô%úX7~¦³plÂÁ…·»¤È[LïNsc<*JРܳÃ%ï`Á4 P¿o €%€*ô^r”’÷•Å^Ùü÷‹xï-_ôÏsX8|'à;'+0 LÊC¡3{‚FªòøÄLvKQ8`šÑ©(>L8\Ò2òaë›S„í‘ot7òøêA{I[žàÁëEN›ÊämEØÍOTºsR]Ï’N³±} €., ü'¼«.E(€MÍh2Š¥õƲl©¤ªK¯T¶žj ©¡|ßW>ò’ +ÁÉä ªþ¼6œsjžûúýš:‡>´ÂU² +þF<“{¯6¯aGzt =­ˆ­ãw¤+nhÕÀ +,{² ô,ªpEZ›¶´Ü%²_»Ö™ý\É~_ã:ÅI¹U¯ÅÍPâ&,GÛý· œogVÍ«}fÖª¸Ó¾¤”Teüœš±Ó$ýFÕBšQEÌzÁo. ?1"ì'Âù¤6rtä]¸N#‡pbÎF–l2¦Ì'”רR•:Å@n˜=‘(ê‹Ø`÷9å¯0¾Pðò;¸ƒç~Y ”¾Q@AOZB +¤«Ÿ¥ƒnH$óJ¨uĽOáIá£âÔ|­”ëi•§Š¥l5Š"£¨ÏÜîuþ¸Æ—’ísÞãZ¹›²ÄQõd4Îdâû Ü/ ek=þð‘vòEWñ 7™¨=JúîÔ€J{åšð-«{2G4²¼íuvîÜÄn¹—~3*DºB¶°³ÏÄîç×ØÙm¢Ùוf(,v£Vº“fB”Ú#¦ +¬(Éž*VK/Á,ÁF F[ú´ç0KòžjZßoÍ'Úu$¦}‚Ýœ0–’mEMWb^’ë¦80¢=Ñ1ui.­Yi(81E™“38°xÑC×ã5PÉ:ïNQêHÚe·ßþñÏÂЩ#³c8OŒz"IÉ1öãJ úe †¡¯›vpN›íJ µï€?šó;ºN‹•á +-²Ê À¦ÓÎ’YH!Cµ+ü˜ˆHÚ“4ú‹t‰‚v9µbdÊï½äq² )R"×ö»È5µéœ¿±ÉH\Ã$a’B´²Ž¡Zz(Ô†Ôº^‹½¨0rxd·øììÀâ°C€q#` ̾ĔŊ{¥Niwuf,Sún^ŠÐAæZ¶ÎŒ zëÉ2±«hV½¬Ø§¦Õ[Ç4È“ÜuE×DlÙÍBv[aÎYÐ’¨÷âÓé1WOpLVééö®ÖY™¶¶HÛQÃY®k’Oi»YÃ5±v-åO J0ÓDciøahÄië°‹ †¸U6B ´öWÔ9ßcdñ„z;à ‹³–gá~šMQ"ðd@ø䤓\}Ê^2â_2…°‘ Ü7€Ž¦LŒ¶£èï¾Íò‹&á_²ü=Y~DÆ­ÒGOi~ ‰Çá +G$Dž˜ö‰™©2ù£PHáJ$u3ò×ØAþ·Øs<« Ÿ˜èÀybäÃJã`AqJ±.¶evÚvôúµ%цtuD6Ðó°ãfµ¹Ê;cHÖ¥òY$º'ñ¼-ßA/w + ª f–|d¸ËÖ"ŠW¤1ÒCä2¢læòäö#Y +r#­RIŽ7M[fdôtô©´Ü#vm;P—í3lãx*ù‘öL½ÉSÃÍ{¨sÏx8R~Ÿ;ú›'¹¡)ì²mürtõ¹Î¿!¯ñ-7äl2ŠSe¥¼;f\jø‘"ˆn?eI^Ó’Å»'YM¢ØøXähÚÜr2ÓT¾Á?¥PåX3–°¹È¶ÃSÎóìjÄý‡ªÓŽ&0¦¶ä +Þ›kÜLnJQöøÞVÂ\šEó¹iשçfh>üÿ:g-xl 7,€§_×ÚŽÁ3é;5Ñ•šˆ×ùŠ*B⥟Ҭ! Ò¹5)©æÝ)œ±mXäR:ç]G…½Jmì,`mÞÊÕ-d-hsËåYl´’ T–yU®ŒßÿôøhÊ ’MƒjMÙ½Ýo‰ _>Þc좎m©b93M¢Â·k3éKKôA™»\lš÷‹Ÿàà“f× 6¤Õ³BÑåê$Yî ÌGËkÞ:gaSJ…£³¯÷Ë´}‘9¼ëàÚi4`Š²ƒ«3ŠŒ5ýB n£®¿CŽK•Ês\ÏÚXª›q0ôÔPÇ°ÝËÎKâ}!ò…Ðéoª³™M«Ç|bK*:üµI‰eRâ’ +‚ÍUP™†@HE&mö9NÃ'A<RÐÌààÔ37&ï·vìÀ™Äÿ&9ìØNqÞdïG¹^®v’®ýÙ +à Ûœ­›‘¹ˆ-²œg&ÌJÉVÄ@o7Uô4K‰cß% ^#ìÄÑOÄsðâYè`ºçui6µU$wÑÈãLbüõˆa—\ªüúw<¾ÿbžV.rÖWæl>I䄹>Ô}ç|‘±µcÄ0#ü‚ž„®Sz2Š/}op&Ëy‚ämUǦóg«ÀºÕþ#'yÅlË£^Öñ˜¦M˜ gf“½Tvtk 5”’º…t¶^IÊLùxœ()ikêÉxe¦¹©/CŒ)fÛÓë¥M¢½ˆ*Ÿ%C†e¥‡PÚ¢èœæQßW¥Ì6Íl«|­Ä¶mìÛ1,# J® Ê|ªmMDÌÉÏ.†m=]¡ƒ i­Æ4’q«ÇÇTD.Œ–«ýÃfOÛ¬¬•›¤Ô¶ )Ë4jÝ=¹Õ³MR¨µcǸ«Ž ¸4ЛìéZn‘߸0ã(¨-ÿÜ2w”fþÊd‡,Ói:X~Çק"¹ª„Âþ,^ÚµÔóI‡V¬ÓQ4Z( W ‚=rÈÊâk»Œ0ëRÕƒœÅà'e„ØŽ|Ùƒ‹¼bâ“K)·…”¯Œb^-;}‘ _Œ"ßcŸIHÁ¡E@s€žµ"qÒÅÍ(XÊûUJ5Çàt~¢ì Óì$Ÿg{ìïô¬ð69ð- ¸¯È«ÀŸËà¸ï +Û쨂ŸQ=D‚ë¡,d‹ú¨ó^ãžo\–7Ltêú‚Æ ¨è‰‘š–B€¦u¨#Ea!Þ +–BÇãòvÇd ‹Vº°ÒÛ®å»luÖ5¸È5gÎÞ¬¾A[jï–dªi•›BjtçbYfó¾v’MMZ;ÿW)ÑzK=ŒYaŒÅt?Q˜Î +YègÖÙÜõ>à{0æ,M+ Ç%2Í=• žQö2ä‘ATúw;±ZQû%œè,¸Ç;|‘Ct/*XKäs³·+Ì "~p[)öv":RYÑM £{¼ƒÇ;x¢„‡j Ö«ÃìKìËHáugÛh|×+Ó5'´oð™_“Ø™oë¥#º²V›l©¿¢½™”«¤÷ÉE»ž±à£ØÁ^ +@‚ççþ½Õ{aÜÉ!rƒž3³*ÆÅW£®êNzóF9ÿÙä“úØ}c€¹‘»þ—õ*YŽ#7¢÷ùŠ:º#Ô=…¥¶£#<áðUæÑ.MJÖâ4%Qô×;7  ª Òsj²» +KæË·è»ÑðG!H왡Üp)ÜlG3–‚Ýûaô ´é(çÛ„Eb4"³ #]M+›kâ“c£³WSwØd¿"K]"¢a•4XÁï;®ÐÁr¢©î°@Ok2•ÇV€]U<iþ¡EÒ…ù°Ä¨ 3à +Þ³Å6‚g>ž±Á.·‚Çô%xìxÀˆ%C æPñ¿¸ÀȘ³·Æ¾û¼ž%åb^p©–+•C4Y@€ÜÂsÓA{E±†BRH ’„²Y»Â5—lá°À>gƒY +J¬ÙDÑÙ~\!ãñtÈm] +‘²é‰/ª.é¼ãCÊéþ21½5¿ÍÙÛêÊô&-ErÆ2¶bÌäyÂ/%H¾-Yß4LÀÕ Èº% +Å„ñ%+“ª™`e­¨É\ÐÞš¼–ëŒWy“g\hŒ Å:~é®Sª¤-ñ6;çJ€ I½?Ôîm^¢.ŽÿÃèÙ¦“&EùFVÊÁBÝTbè(æ¼ =«çÑ/ßâ¿#}â9>˪XtS/’Ð-éè×fÐØÜùi4p­ääîãPÁ`p¹Â„§û¯˜“#úÒ ½ÛG”°ä^Þ¡èÕˆjR~or +“YõRPGu¯»äm-;ÌŠæn¹²ãŽ˜êVNëÈ­6Sîô7œUA’Úñwq<õµ‚µâuž¸,i ¢àWY©4®P3Ǹm©€;ùêj •¢ùûI§×Yãñ±ù…í´æ°G*̇(¡5 ǽC‹ßXváÛ`gú\@Â>Ï{q@#[ƳºJd則­¬D<Ð+Þˆþ@†²™_¯•*C¦ 9öÆ“ó؇Õ:ï²1-}mò=-óÔŠ:¿8‡®ë¬Ëàö—nwñŸ–…µpM}Bì¼àÇ]Ïå"jˆA,xîd›x»[TÝ¢A“ –«—€C|Ѷ'ìÀÎüZʹ ÄÜdùu“ÉAjÔoß«/j8….gd~<´¶vÌU(o®žNf:;ÍÊÿN2âYºhš*kyÖRÖÙ$>©yat>,®HãÔsíB‚Å ^c©âc÷™ÕŒ¯®€®wùnÓÖîVÍØëWTA,µd+û§)¹pË­€˜¶gÝ/3Œøb38µÍúœ#ÍÎë~ÇŽ^™ä—]Ðç1 ®ÌÄgÍ#xÕr¸-Ë1ŠåÓx%£G†C¥AQ ÚøK‚( cajH3±_ +_Ï wFLónrV¸w­ä£»ï*G,Ú‰ä&®~HO™RÛ&¸6A:±(ž-oÌìae½O™ñ$ 6âriÁ¥ÂN+.¡­.»Ë¡W>üuŸìË~)Ÿ¼£":E¤ñ'û˜ãªf^xM©—¼F‹¶L?'É%À¨Â¨ÕV;¸gFkBôw0z›4‡Êøçao)îÌz¼Ów1ùq A@‘ƒ»ód,¨%Úþ”[V­iÁªÂS3VóÌØ/ÃVݨ¬ÿuô%A :EDIƒ|=ï8“ŠyäÑuÙè¾–Ç23®ÌB—X½£të2dáìT²…/;·iñ‰ƒ]‘÷»æ»\óó‰ºÅZ!b甋^ïøIÉ{p43hd95:Jš_q.1éʤ¶bÍ5xs‡Von}΋~ÚÀRHfÒi«pµeJù~;Ÿ»Û+„Å&ÞÓ<úØle1U®±…¢Æ¿¤D¦‹ÝŒÅ«¨o¢|¡!šý +'iáëø N[_‘»³ÊãOº +=‡¤ððò¬g$ØÀyh0 +Êß&C»KîŸ\ì/´âQG:àÞlù<Èà!§ÀQ¢K†Â\E÷ñ +¡£ÂþÉ¥“ÞÇÚ…ùFLè"ò ù/j4ou{QÝ>S H>Ê=%!þ=ŠÍÞón¡ÏC÷'?í‘+â¬FeÚR«WöMÞ­vÔ,†?Tšë3s+ÐÕ Þ¥œOŽ9Í( Ù Wf°Š‘}Ô¨ñ=‚d°1(À~ܤS¦7úyç†3™ MœTrp,juR¼Bü/ºt+^ü–:MSÂVçAfT';©yØíý!„¨) Qu*•ì˜³‹N•xÁ›.K¹±ï•Ä3ÅÜqO:Ó§.ZM¬±eÖœÖd",¬Ažñ£bîá-<5åVÊ›eûëf¼Fj^ÃÄY=‹ôô“†Â~ÈÆõÇåÎQ„}¯è=÷1DAX”îêØ)q‰p‚J2ô.øžx†Zûì5¨ŸtEÙËÀá)÷¦àÈ$ê?ÒüˆëçÁ‰j«è,tÚi¦% àoløÜ`Êu·›MùR*žï.®;ùcSãÛó«ðûìÐì­P+¸š2šCãE]Ÿ_ôºÃCùB† Èïé ääßþº³´'xbRÀ¢íÖI`3ÆŸ›ëÉ;­ +æÙ<240‰ +¹\šUiH»w±Ìuw(ƒnõrò@Š¸‘ÄÒ#;æŒ>Í œ8TŒ@žæý’u×eºÛˆ˜–¼ªqÒ:ΣQ¢0N”d5È$†åž°È³Á–Ù3Î: 4R³0‡^‡ìkU Á9ÇﯔeÓ8;ÒY¥cô.†;Kùð9LÀ´í99«”wâGŽšðl‰/”ÉŸEçÇ̈¦Ø VU/0© “òµ¹s¥&‹é{«‹ÜŠ7—GËiØ@Þ\GËÊàËñ]f5Ä„+&,ÖæÿeñäÞü êøÄÖvf ‡ó4Ḩ ûMGy›óß^q%E©ÐZQvÍöÁné-ˆ7Ië'•\gÞ!¼dÁd̹Á×å|ÿÞ ,Ÿ›ºÁm«Ÿ•©K]’ êå|2³$ˆ÷T}O¥¡’iXs@g"Üæõ3£Éä[Xí“lœàSp" †ä¾%môB²ÔFT¥›¸úÄjÃá*ê˜Í¤‰V2ÍÆ+ÁöÏ€wUç…ö†œó=­ä2ynìæ¸ÿÛo `C¦”@§ðMðÞu§»_~ýû?ûîîé—_/Ì¿A0»‹[öƒcðƒœ1™cçz¨Y?OÝàá +£D~Üí #G°] ¬…­.³Ð‘Zç¾;Q°"ŒøÂ7¡âÏhúŒ”ç…J@ÅøÿÔœ-gµÐý½C4Oï>¥ÎË9-ü}× V¨—7òì~Š:Ñ7ò|Z4°5óîolÔÕÂJ±üokŸÆÒ÷eé‡ º×û!+=l°alŠõ§Òó·ôÄŠ=¾”}3—:ð°#ÁzO(%áûÓ.”°ÇFDP¼­2óze`´}<ñ4`iêáã¦ûWï&añ#àÎüÿu4ª4ÔW€3O*@0!501†µàA‹ŸÃ~vXŒ‘^ø@nÜ!éÐBÄA“Zpgð×3Σ¸½ÎjÙLÙÏsvçV8ø¾„C@C]Ûˆ†Þ©‰—ù}|< i~}D@ð,f_Ë Gi|AxŒŒ 4þ÷•Û ¡pÔ©+ÿþçN­M=¹Bò -µXp±GÆ ® 8ËäMþ}7òxN’¥øŒÄ8ºŸ”à,ËáIYgù,­ó¦¨± #gÇí*ûÙ*É;ÃUîaêz„•hüžáxO¹½ˆ‡ …³+Yð‹äZñÉ7°¯’’[ M‹÷Ź»jô‘òÁ™ô,# -=ôn„ðé|zÆÛŽq ò 6a§|‰¯xÒó‘û'KžGþzL²N;…±ôoKïÞA§~´j€žÅÈ|–pBJhH®ˆ=¡o–Z¼¬*Í]E–6D½äCã]ç Ê£¢Ç +endstream +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 5368 +>> +stream +H‰´W]oÛ8}ϯ࣠ԊHŠ”„ Ð6¢‹ìl›·íbá&Ž“Nìtw2Ù_¿÷ƒŸ’œ(³Xhl‹¼"ï=÷œsO_ï7W«‹ƒøá‡Ó¿‰ÓŸWwßâÇßœ½'oÎOjQWÚXø¿iŒØoNNߪÅæþäô\ý«Jœ_ÔU­àÃ…XúOÂU-ìme…R¦2턶•µlOº–ç_OÞŸ¼ûÞôox¨q/„Ço?Ÿþ´­ÅÙÝÉßONÅãý¼ÚmÄb½[¾#Oyûá 7MyVGú ©øçጾRp x’–ªt¶VwUß÷÷Ž„ˆÅµ„ÇV,î¤Òbñ].Uƒ_o¥®ÅâR\È®Rø´©ŒXìà±ÅÇ÷RÕ¸ûFª¾êa¡T-.XK]A˜½¸•ªã°KWubq!—´aF¼…Ð>ص\ÚÊñ3ƒÏ¶RÁ×o7ôjx _‰ßä.ÖáØîp¡6¸òVö¸r'®àcG¡hë¶Ôᶰc¿Æ#ÀñîÅAöøÒ;q7oq¢àßàw…ÎÜžî!‚ƈ‡l=šo®ÅZZL +œ¡ÇW¸×NÅÀệ—i\Hû¶eR[ŸÔ®Hªüçù_#äž•ÍAU©þd ?m„ÌêBÉ‘Zãû—†nªŽYE4@‰´Â[¼¢ÃœÞäßR;,Ýv8ÎÁú\öE⾕F,r ^ ¨Sÿ`rUQP_ß®sÍ ÅXô0Ò`²9¹tƒL mÖšÑF¿#ãs<2ø‹¡ðTþò+h 4ìXŽ«b·ÅpŠpöM:BÉ«âˆøÍßmÚ‚n×`Ú!‹ ½Ò‰Zv=uË/²‰PyÛÂåx¡ÃuþrIýp?G® §DÖW¶][€h!rN|"p›FÒm4E‡ãwc”ÖueûÞ2JW˜7¦ÇmÅÚMó]™é*qNiSXa6d˜Øy!ENs\ ñe E»öÝð(8ÿ >Þà}Þ"þ >Ì« }5þUPQm/5÷šÇc82uÌZ\"»ØEKŽ=æðpÂ!~õeluUŸiÆ ve”| mòƒB Ì7vH0t˜ð fú•üW ºÛS7AìǹpíæÀ5CÓl¸öYà u”/òhA{¶ìOºØÁ'Û¥d£¼t^Žz’£§Äˆ4Æd|Ò]¹úU†z`šaïÑš©r¤HhŸèºš™}[¢S«f :ÆUµ3µ)$ë'|K¸%æLl=‚ãåÜ»/CRj2¨lŠà"D¡I]ÖZû`Å Á–ãrÍmÉ°Gº ð*Šˆ”¬åtâ3H;\š5ï:ÜI ^¦O2{ q”@B}>^êw.¥!qíŸn<<ò\|¨ãÝ™:ɶ™‰-¨ÀæÐ\R’XæMaé^à°t‹÷¼å7T¶ÄïìO¢àïÈ­ü‹Î©*ìð-=t«¢È1_‰O±8ÃZ4ø×P×$ŒÀƒO¢A ÛcK1Ž$ì× ¶ýŠ  ìæçE^©fWLgÃqIñ(‚‚]kžGè)·n£­Q\LëS“dàb!^KJñvGÝÎÿÀà~äç«Ý%¸ƒßYXÖ¾L Œ„u«Ö¢óÚŠNx¾YÉšçŠôU*¶€ü2òn7àã™cpÉC[O9ÔÂDàºâD¿ûxbÞsÉK2x7» ?ö/¸Û}®M kè~Ú9Ì-‰)J2aÎî+P¼Êø@¥ *Â÷nB8V€-‡.½ñI¦¡Î%<ÿê ‡b¼Ë"5O }—õõä 1MŠ·ƒûÚ¡ Åçu—HÑ IÑ ÐÐÅ–ó<§«‘Ú"E2Ó/"3‡§š ¦ÔgÓÃJÆ!be‹öŒÀg=ŠlÂí²a-¯ èpþQx‹Òþëç =ï1x²4w¬•#€zëœMhAj3¡½-üU“Ó óp$Ƈ\ù:õʼûèlŠ,& *Vºß=—9vMTšÓ áïóÕÃdì&3ͧ±0vÜmŒbèïƒH~e6jìpRkŽOj¶…ëGäd'¥~O·‰£Mº˜'M'¼”šZ„ˆš1 +^P|ÎebÌI¾{T´-.§‚À>~ KÝÖc”í؇2Îè™Ç¢õºÂx”,ѾGÂE|+ϹÒ¨‚%:朲õ-—)wžTÝKdCnÉãDOñ[¶qºñ‡ÝEsåf²wcÆTQQ ↬÷_æâÇ͘ÉrÜÌÉl;¦éñxÊ:¢[ AÁ #…ŠG&ì}ýv÷ÄêÀ|ŸºÜ³—56ë¿#6Z?¼¹bÀÁÁûƒOô+ãbO+×X(ç›^cÐ%/aÁ±¹D}•>ÚH’­ù¦{ވǤɛ0 4%¨9JÝ+‘^8áC.¼§[yƒÝúlêêf ¶þ‹àHvÙA%v v0tñr®ºðl „m‘ß5šÂ‘•ñ)‹^‚`&ŸQ’¦ .]9¸üçÒ’åFn{f²úÒÔ6XJÇ™«´ŽÉ3®ª.¦²åÜ3®‡’ªöÍ_4B„™ñé8u¬Mx£vbvñ^ù^'Ñ9ß=磄Ö]ûŽÀLMÊ„="H{@ËÞ·O€£ +n‡€@á6š €ƒI}ÒÅ"§zˆÿ™~¢Ú'ŸZ€*O­m—cÕ)¯¤óáê²{ ÇØ;ƒÁ\övêÜàÁ‘F…B5lŽv|¥4-ð4E +Y¼BÖ=ƒ~ ÊéIv.¢LAVQG`j:‡NÓƒéÅPœmœ3y_…&¯)‡z1¢$’ç{êy‹á'©H“ºq8‚þ7ëXByŠÕá€È®²c·T€ÍÌá;ZÑp†©ôil nhÈ8Ñê3ŒbÑLZ}¨E‹AWÞ^xüf¨)Õ®96ª40u@9‹Û‚|ƌǑ/)‹Þˆ{^±ŸÈ¡8HTÄ]4=Ð þ²%ÜäñÇ)sQà0fqÕf(ÙOLTÿÇè&å:5à:^yíëºNXÀßœ_e3œ”l’Ú¼¾ ¨[ö³!b‡ãì1#ÔÀ8›\w„f*·_n˜ Ÿµ0/pI™(éc>©Ã—|^Hk0J,kLòÄD9óÍ{†¬øHe…-ŸDdLçh¡ZÄÎ?óÀ]'·k0<èÙ”‚ýðá?¸)Kó”˜7ÿ~–²!-«Ä¹ìkö”©Ï¢EêJ#ºOt𠡺çj.’\I6ÚRc2GØ?6[`ëÁX%7TÓ£‰µ?o«˜0à:&Ï0禀Ü“+vàœDç笇œã”w/é¨×ÂŽF;¬šÄ~LüDå-i0äwÄ—ò\ECÜ>µsئ áÑKІLsgÚÄb^èh^ÀýùÄІ‰Á2ãûYFþ2d)ãÍý½ÿ»ö 3K›FÉ6FRóæšhQçB®--÷4ÜtŸ9íÚæÞø³Ö +Ü Õòu øBvº'ºä­çˆ1‹ù÷dª¡7­†Ž£=Wš$f E?¨Õxœ˜UDLpà¥?gÛT:ꎙ@·ì‡4õV–‘èX23ÁܵKîjnùºö§ hådp_KMYGÔq‰~ÍNp4#ºbFüUZž?=FÙ_yÈ#u<±0€±e£||H­1vnïs74Q †‹ÉŽ¦;ö&øñ¡%}nìK[xÚMÇÖ¯%¢PÔüž³¿ø$YÂÈ•O1¹µMן`¡áø6ÓÇ©§Ð5›ú¡¥9:7Õuf{G“N„d '%›£´'Æxn›Ï‚œgÚ8k¦È<Þ˜cÿKz•ô¶mDá{~ÅMÀRÈÙH¦E/ Ú¢(zhÔSq*©nlÉ•³Ôÿ¾ó–™yÃÅ¢ÓKãRä,ï}ï[Æq¢ðç”",¤÷ÃÛ½ ˜:ròØM¢«iÞ]ŒŒ‰Üs>Šî‘`&O2 +‡.²ñð–îHÍcx\ˆ¡¶.ÌLcº™Î Wü5G„œwˆT)å½(6­—,µ€ÍÚ‚Íþª´!qO we£Mç[è~h$û +LþRÝÀ#ÜÐà¿_«ÞÀ}Ö¡`JYFâ£cŸ†ž.®¨tÄmÉ*I…âýf¬ë7qH®H8²Däú ÆÁ8ª-½À³œsÚR85¥7¶zN­Þ8…,šÂÌ)3Sß— CN1pVMsÅc#ƒ­R ÙQO%)ÌLSÝ8/H´mfS\à-%&Ýqu©WšîØ»§ÑŸ¾ØŠÙj C>\$¯U?•T—^±Ðÿ̶éCg`¢t³Ô›B;*¿^žAq7Éòߨ„­.a×Ï¡ÎuÂ"/‹5‡ô3E]m—d"˜ãÇ¢û^5’‘T~榦eÁÜÁ@ºTCS“ÏqDýÇ›°oßVÆ·ô›Ü‰z5ØKe‰“ŽR|œƒØMbçî©ìL¼ù ÄK˜Fê˜bXœ‰…1%FæAb­ðà_ðÆŽ‡Ã&{<9CÅk³4…ÝÍ”IR”ÚÓ8¶=A–³ ãåž³èÛ‹ÊáŒbHm°žÈ1ºùWp` ÿ¤ˆßQ Â'¯y ]á +ëÊá—MåQü•ŒÛ†’òä¯|îÀ¬“Øjë«ñ¬˜kx‰À+® R.íljÙùƒíÝoJÞ'Üf Ÿ¥ð°sÐy,ûè©’Æ‚j(¨ãP¡)Ó—G玂çÐÙÂ(x¡11&Q:“œL•Í>†×¡3å™ Þaá´ (U`c1¥vRjH1ë6¢-å:ùò<â»ü\¦\‘N‡•‹_ïX.s‰ ÍJ:ŠÝ´Yœ÷¦^ØP2vá­È ‡ä¾Òh…_,-ü7;k×uP¬Æ›µ{2ÿô“¾.v¥X²ó —\jë€~ô0¬ºàœkçäÞo²¸ž¶£IJMÓéáõlLã¡’ÊÐÐì"˜úÁr½ªÂ—š¦òNò’Er‘'PÉœÝ^âí‘óÂnRSŠ"¿v"Ôº³Ä D(š©£ü"•g6Î󢇗qLÂED +ý늇d´ú}aã‚$µs˜<Ü>òx®™£š 9ww•åAe»•Q¡dÇà­=¬.x—šP&V7ôS\o~Tžº«† ¡àö0D45¬K‰> +stream +H‰¬WÙnÜÈ}×WÔc`¶XÉJ ^&ƒ l$AôfIÖÛj§»mþ>w©•d·(c @ÝMÖzï¹çžsúr»¿»>¿Ü‹çÏOÿ!Nßž?l¾íÅ‹¯Þ¼'¯ÎNZÑ®µqðßZ#¶7'§¿þ»7»“Ó3õ{+”8»>iÚu«8»áËÑ­{˜ýÚ ëíZ¹V íÖÎu0çËÉJ+yöß“_ÎN~y;ý6Âù8–Ç_oOÿö¥o6'ÿ:9ý'ïíùýX]Ý7¿¾’§ï^ÿöF(åmqÖÓ×:)¯æéƺuo:'z=¬½÷žâyÛ¶æEqŽ#;¹b§´hÛ¯{5]tè.ÚÕ¡xüOcÅ1>+B¬¼RB¶éjBýÑ–ý1QDÁÜíU×y¨Âo’™=—qÙ¢ô!­”ÊSåjÌ‘ÚÐ…4a×ÜÒþµÙðЂ²B ‚tqcjª„‹™9§$Ö/z¤_Æêe$‹fôËPwÚ°’ç‰#ŠEn†çÏ–ž«…K(ªL` ÀZ”˜ƒº^ýJdCu#VJ€v}¡£'Ò(qg‘¸ºo\¯Îâ–šCêh_þ¶9^QaAP’àbªÓJùåB%q’I‹'Ñ“2fq^*¸‘f²\…ìà Ù‘Æ3R†ŽX4Ÿ²ªÇDî´yÔ®tÖ“&710çs¦ôZ•y¤åv©GUí‡dþ¿%Éì‹#³*»W¼ìÒšè'Rú=žéË? ,–IGC-ZøEÑ\¸a]IºüwºsÕ#¼F;dSRRZ±Â_ + ;j<à¹ñ´‡ä +0d¡€/B¸ú,Ù)lPÛRøû$q5պÈ.¦s÷§Ñ¹?õÕSè¼;Bç£5Óy¿Î!ö`Š½§lΘP…a(äÈeèÃ瘕ÒTä’ Ù¾ðw¸CQoÁh2vûR#•§ÒvÑË+î°d»Ç-*Û’L.™Z]¦Öª+P­ãh’ß‚’MŠV$V+ZAî25n‡]Õ3?¼\¯Ãm¯ƒÊÙ´¾´ Æ~¢c|@>ý"n(ÄáöŠÃ_Ð/g”3G)*uá¡îÂÝ‘®ýa%í€o’!ÌŠ²Z‘ÝI ë>ÀŽŠ‡· e ýºËL sp‘gU¶@EÆS¸#%çÛWŸu à˜¤t4øÙØ’õ(ÝiŒòÐxÊe>˜ˆ‡¶5Ûh] vOÇo\(˜°tia¨`ªS»d¹frC÷]ˆ1_ÑSE?´Ao´©°µrïéRœÏQšµ…@Í|5Ë5~Fo~H€%Xã‹©¤H¤w8 Üì-‡²q\²Dšh…ˆˆLnòÙ-jÂ%z$ÅV+á2 Më á4^/%:­žØù'ý¤µzz¿×úX¿¯×\ÚïµYÞï!Mú}±÷ûÕo¨þ»Q»MŒ«º#Þ¤(šZ} +L]PÁ)€…qÁ¯…58§ŸâÈØ]#™®2m…~Õè1…?!ÍLbAûšÀaQ&ÿ¬ +ÆÅÇ…ú˜·ˆÃ¬E|šAŒ­¦l.Lµ-h–A-.±f‡fz9P YªKÂF²»-I¦i["DyÌËв©¥×ö¨¿Žëž‚X{L•,¢Q5^Ì!)a/DhvhIK‘ÄÐMãèª8^‡”1r¥ÿa´eIæ«'²±éàïMxçðG§ÔpL¡¦¨*ž-‹i uHRXYxΩJv™……aÝxŽŸ¸0’µ]N¬ËŸ.ï&Or Äúº¨²©)˜©Ñ)‰rÎ&àS6àË/Ö§«?×'¯¸&@<‰ìR] M~TÓ{,…9Üô2rÀìf1ú µOêÆãy¡0†‘¸zCQ\P…·ý$érKõ©) Öé™ú]±pCÈ·:Èiü7À£;è¤M¤g¡Ó^Ê.0žèþ +ù ~ÿMýRBÿ‚\æé½»eÿC渇|¿;g5²Œw· kî–^ËU×:›ˆëœŽt %bþÏzÕô$ ƒá¿²£=LݺÒ51Kˆ +Mˆ3rð4Ñx!ÄD¾ïGÛµqŒ&pã´}Þ÷ù* ?åV?0 …xNéà«ö«ÛÀ‘ÓÕnß­Ÿ?~w7³û٠¸iš&£/2Š/x?˜Hœ÷NÿÄ•aë™DëŸÓ<½l¸UDËáñ³\\ó¼ÏH³ÒH[CuPC§–A½.{¥9¸ø©(‡åfQHÜ*@Î~¡A? f ku”·JB¸ÎÞô™§'ýM–ë®N©»˜ß^…$!ÝÛ`¸²˜ÌÕ©êqH±ƒxH[V“›ÁƒÐ$úË“ÑÝ +Í&‘“¤Ä®J +’é +К´×Ú5¢ó‰Ú\ãº[yÇ~FVm ¤®Ä/ø˜Éjï²l²Ôãp‚œÀP8óg W™Ÿ dkØ“JDcW®|cuuÀµ8^¼Žü 7ºö2£ÛÔÑ `*EÄÛj6¼)[Êè>ëÞW‘6£H—¦¼4Òì-^£<‡ lñaE”ù!ÞöÉ2„€~)£_r²¹Ë[?p_áeÆú4 ªëq tØÐRPZ@’ç”r!¡õ +p岪ˆY6»0tªRº¹’˜7ÄïŽÚŸ‰æ%æÎÔÃ?œçBÕ±Å"WœDAÊ%j¤Dûú`8G +endstream +endobj +89 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +90 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +91 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 538 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 90 0 R +/GS1 161 0 R +>> +/Font << +/C2_0 162 0 R +/T1_0 163 0 R +/T1_1 164 0 R +/T1_2 165 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TmkÛ0þî_q%˜•;ɲ$õ…²±®Ðú[)ÃkšnMÀÉVÖ_¿;Ù휮ì…b°Î’îyéž3š< IXÉÛA·,&'ËmQFãyzjëLM "¡ ˜ »)Åäm·[-ÚëL§“3˜|hl¾í`6;8:„â )Q­†ªêÁú„@Ð, +4Hšk(‡èš-òð qµyüãl0D5õÆEo¡¹+.Õ;]:cA­ue¨&P7ºäLPK]ZAu:šªå-á×– isMŒ + +ŽtY1‰Zé’$g+¸¼ÐvœÅßw2ÏëmlFð¦—d…åÍbÞá‡TÎØ|=”9P”|Æ•p× DT åËg†Õf͘ŒØ®ç}p®3N>' šÿt¡¿ƒ:¾}¡“ˆß‰dF&ÆLùü¹©^üV_5ï‹ã¦8>å"ÿÕRq*.ÕF)ô^]·mÚ««ÝÜþ; f0‚/â^÷ +­íiŸ‘9SÙÚ½Žldêóv²‡{¨à”9náò +aOm49´Ž'±tÌR" áBø`EB¦ˆ±šý–Žû{ã¸M´)îŸù5‡ý&Fõ•Fv)¹žºæHb»í50%î46|dïyiƒLˆå¾sÅÑÒI•ø’[É“¸[ɇÇ6ÌKÝc¹™jq.²q˜Æ–ý)ÀSX” +endstream +endobj +92 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 957 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 90 0 R +>> +/Font << +/C2_0 166 0 R +/T1_0 167 0 R +/T1_1 168 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬VmoÔ0 þÞ_áDÓ8/MŠ¦IcLCå 4¶»mÀnSïÆiüzì$×ön @ ImšØŽý<}«úÕÕüôl{{õk¨_žÞßÜ­`ÿÉÓC(žt…%µqô´ÖÀɳBIk°ð +|†wœCQ?{£àbYÔ‡ú£„nNŽÝ™tk~,½¾óQ¶=”Naí¤ŠŽ®‹=¥‚Ýï>G]qôŠRؾ¿¿(ª@N–}jh¼4Ú€“¨4ô³b^ ÙèÐ齋lZº‘ÁâŽF‰ 6ÎHÕn›´AçÇ(NÚ ßHçÌÏ,ê?7þ})êà¤Bd𪼊ö€(µ‹æi…¦‘U4}»–ñ{W‹ÊK„òu'*# ”GâC÷bÀó·9q&¸K!*éóÝqÅwe4 keëtºúèTh <d¥¡¼„ç´‚ò©0Ò¦—ƒò$çõ®‹©¼•ãósA…Ñ÷h9ÊWA{3¸èeåÎD`?>öPö½@Ç3Ú¦×B`-”+XS´¸–íVÂsðK˜Ñ‚¢¿WÆÓEìW9εҊýW0ç> +endobj +94 0 obj +[176 0 R 177 0 R 178 0 R 179 0 R 179 0 R 179 0 R 179 0 R 180 0 R 179 0 R 179 0 R 179 0 R 181 0 R 179 0 R 179 0 R 182 0 R 182 0 R +182 0 R 182 0 R 183 0 R 182 0 R 184 0 R 182 0 R 182 0 R 182 0 R 185 0 R 182 0 R 182 0 R 182 0 R 182 0 R 182 0 R 186 0 R 187 0 R +186 0 R 186 0 R 188 0 R 186 0 R 186 0 R 186 0 R 186 0 R 189 0 R 189 0 R 189 0 R 189 0 R 189 0 R 190 0 R 189 0 R 189 0 R] +endobj +95 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 191 0 R +192 0 R 191 0 R 191 0 R 191 0 R 191 0 R 191 0 R 193 0 R 191 0 R 191 0 R 191 0 R 191 0 R 191 0 R 194 0 R 191 0 R 195 0 R 196 0 R +196 0 R 196 0 R 196 0 R 196 0 R 197 0 R 198 0 R 199 0 R 199 0 R 200 0 R 201 0 R 202 0 R 203 0 R 204 0 R 205 0 R 206 0 R 207 0 R +208 0 R 209 0 R 209 0 R 209 0 R 209 0 R 209 0 R 210 0 R 211 0 R 212 0 R 213 0 R 213 0 R 214 0 R 215 0 R 216 0 R 216 0 R 217 0 R +218 0 R 219 0 R 219 0 R 220 0 R 221 0 R 220 0 R 220 0 R 222 0 R 220 0 R 220 0 R 220 0 R] +endobj +96 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 223 0 R 224 0 R 223 0 R 223 0 R 225 0 R +223 0 R 226 0 R 227 0 R 227 0 R 228 0 R 227 0 R 229 0 R 229 0 R 229 0 R 229 0 R 229 0 R 230 0 R 231 0 R 232 0 R 231 0 R 233 0 R +234 0 R 235 0 R 234 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 243 0 R 243 0 R 243 0 R 243 0 R 243 0 R +244 0 R 245 0 R 244 0 R 246 0 R 244 0 R 244 0 R 244 0 R 244 0 R 244 0 R 244 0 R 244 0 R 244 0 R 247 0 R 244 0 R 244 0 R 248 0 R +244 0 R 244 0 R 249 0 R 250 0 R 251 0 R 250 0 R 252 0 R 250 0 R 250 0 R 253 0 R] +endobj +97 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 250 0 R 250 0 R 254 0 R 250 0 R 250 0 R 255 0 R +256 0 R 257 0 R 256 0 R 256 0 R 256 0 R 256 0 R 256 0 R 258 0 R 259 0 R 260 0 R 259 0 R 259 0 R 261 0 R 259 0 R 259 0 R 259 0 R +262 0 R 259 0 R 259 0 R 259 0 R 263 0 R 259 0 R 264 0 R 265 0 R 265 0 R 265 0 R 265 0 R 265 0 R 265 0 R 266 0 R 267 0 R 267 0 R +268 0 R 267 0 R 269 0 R 270 0 R 271 0 R 272 0 R 272 0 R 273 0 R 272 0 R 272 0 R] +endobj +98 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 272 0 R 272 0 R 272 0 R 272 0 R 274 0 R 272 0 R +272 0 R 272 0 R 275 0 R 272 0 R 276 0 R 272 0 R 272 0 R 272 0 R 272 0 R 272 0 R 272 0 R 272 0 R 277 0 R 278 0 R 278 0 R 278 0 R +278 0 R 278 0 R 278 0 R 278 0 R 278 0 R 278 0 R 278 0 R 279 0 R 280 0 R 281 0 R 281 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R +284 0 R 284 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 290 0 R 290 0 R 290 0 R 290 0 R 290 0 R 292 0 R 290 0 R 290 0 R +290 0 R] +endobj +99 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 293 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R 295 0 R 294 0 R 294 0 R 296 0 R 294 0 R +294 0 R 297 0 R 297 0 R 297 0 R 297 0 R 297 0 R 297 0 R 298 0 R 297 0 R 297 0 R 297 0 R 297 0 R 297 0 R 299 0 R 297 0 R 300 0 R +297 0 R 301 0 R 301 0 R 301 0 R 301 0 R 301 0 R 302 0 R 302 0 R 302 0 R 302 0 R 303 0 R 304 0 R 303 0 R 303 0 R 303 0 R 305 0 R +306 0 R 306 0 R 306 0 R 306 0 R 307 0 R 306 0 R] +endobj +100 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 308 0 R 309 0 R 310 0 R 311 0 R 311 0 R 312 0 R 313 0 R 314 0 R 314 0 R 315 0 R +316 0 R 317 0 R 317 0 R 318 0 R 319 0 R 320 0 R 320 0 R 320 0 R 321 0 R 321 0 R 321 0 R 322 0 R 323 0 R 324 0 R 323 0 R 323 0 R +323 0 R 325 0 R 323 0 R 323 0 R 323 0 R 326 0 R 323 0 R 327 0 R 328 0 R 328 0 R 329 0 R 328 0 R 330 0 R 328 0 R 328 0 R 328 0 R +328 0 R 328 0 R 328 0 R 331 0 R 331 0 R 331 0 R 331 0 R 332 0 R 332 0 R 333 0 R 332 0 R 332 0 R 332 0 R 332 0 R] +endobj +101 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 334 0 R 335 0 R +336 0 R 335 0 R 335 0 R 335 0 R 335 0 R 335 0 R 335 0 R 335 0 R 337 0 R 338 0 R 337 0 R 337 0 R 337 0 R 339 0 R 337 0 R 340 0 R +341 0 R 340 0 R 340 0 R 342 0 R 343 0 R 343 0 R 343 0 R 343 0 R 343 0 R 343 0 R 344 0 R 345 0 R 344 0 R 344 0 R 344 0 R 344 0 R +344 0 R 344 0 R 344 0 R 344 0 R 344 0 R 346 0 R 347 0 R 346 0 R 346 0 R 346 0 R 346 0 R 348 0 R 346 0 R 349 0 R 346 0 R 346 0 R +350 0 R 351 0 R 350 0 R 350 0 R 350 0 R] +endobj +102 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 350 0 R 352 0 R 350 0 R 353 0 R 350 0 R 354 0 R 355 0 R 355 0 R 356 0 R 355 0 R 355 0 R +357 0 R 355 0 R 355 0 R 355 0 R 358 0 R 359 0 R 359 0 R 360 0 R 359 0 R 359 0 R 361 0 R 359 0 R 359 0 R 359 0 R 359 0 R 362 0 R +359 0 R 359 0 R 363 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 364 0 R 365 0 R 364 0 R 364 0 R +364 0 R 366 0 R 367 0 R 366 0 R 366 0 R 366 0 R 366 0 R 366 0 R 366 0 R] +endobj +103 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 368 0 R 368 0 R 368 0 R 368 0 R 368 0 R 368 0 R 368 0 R +369 0 R 368 0 R 368 0 R 370 0 R 371 0 R 371 0 R 372 0 R 371 0 R 371 0 R 373 0 R 371 0 R 374 0 R 371 0 R 375 0 R 371 0 R 371 0 R +376 0 R 376 0 R 376 0 R 376 0 R 376 0 R 376 0 R 376 0 R 376 0 R 376 0 R 376 0 R 377 0 R 376 0 R 376 0 R 376 0 R 376 0 R 378 0 R +376 0 R 376 0 R 376 0 R 376 0 R 376 0 R 379 0 R 376 0 R 376 0 R 376 0 R 380 0 R 376 0 R 376 0 R 381 0 R 376 0 R 376 0 R 382 0 R +383 0 R 382 0 R 382 0 R 382 0 R 382 0 R 382 0 R 384 0 R 382 0 R 382 0 R 382 0 R 382 0 R 382 0 R 385 0 R 382 0 R 382 0 R 386 0 R +387 0 R 387 0 R 387 0 R 388 0 R 389 0 R 388 0 R 388 0 R 388 0 R 388 0 R 390 0 R 388 0 R 388 0 R 388 0 R 391 0 R 388 0 R 388 0 R +388 0 R 392 0 R 388 0 R 388 0 R 388 0 R 388 0 R 388 0 R 388 0 R] +endobj +104 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 382 0 R 382 0 R 382 0 R 382 0 R 393 0 R 382 0 R 394 0 R 382 0 R +382 0 R 395 0 R 382 0 R 396 0 R 382 0 R 382 0 R 397 0 R 382 0 R 382 0 R 382 0 R 398 0 R 399 0 R 399 0 R 399 0 R 400 0 R 399 0 R +399 0 R 399 0 R 399 0 R 399 0 R 399 0 R 399 0 R 401 0 R 399 0 R 399 0 R 402 0 R 403 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R +402 0 R 402 0 R 402 0 R 404 0 R 402 0 R 405 0 R 402 0 R 402 0 R 406 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R +402 0 R 407 0 R 402 0 R 402 0 R 402 0 R 402 0 R 408 0 R 402 0 R 402 0 R 409 0 R 410 0 R 409 0 R 411 0 R 409 0 R 409 0 R] +endobj +105 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 412 0 R +412 0 R 412 0 R 412 0 R 412 0 R 412 0 R 413 0 R 412 0 R 412 0 R 414 0 R 412 0 R 412 0 R 412 0 R 415 0 R 412 0 R 412 0 R 416 0 R +416 0 R 416 0 R 416 0 R 417 0 R 416 0 R 416 0 R 416 0 R 416 0 R 418 0 R 416 0 R 416 0 R 416 0 R 419 0 R 420 0 R 419 0 R 421 0 R +422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 426 0 R 426 0 R 428 0 R 429 0 R 430 0 R 430 0 R 431 0 R 432 0 R 433 0 R 433 0 R +433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 436 0 R 436 0 R 438 0 R 436 0 R 436 0 R 439 0 R 440 0 R 441 0 R 441 0 R 441 0 R 442 0 R +443 0 R 444 0 R 444 0 R 444 0 R 445 0 R 444 0 R 444 0 R] +endobj +106 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 446 0 R 447 0 R 448 0 R 448 0 R 449 0 R 448 0 R 448 0 R 450 0 R 448 0 R +451 0 R 451 0 R 452 0 R 451 0 R 453 0 R 454 0 R 455 0 R 455 0 R 455 0 R 456 0 R 457 0 R 458 0 R 458 0 R 458 0 R 459 0 R 460 0 R +461 0 R 462 0 R 461 0 R 463 0 R 464 0 R 465 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 468 0 R 468 0 R 470 0 R 471 0 R 472 0 R +473 0 R 472 0 R 474 0 R 472 0 R 475 0 R 476 0 R 475 0 R 477 0 R 475 0 R 475 0 R 475 0 R 475 0 R 475 0 R 478 0 R 475 0 R 475 0 R +475 0 R 475 0 R 475 0 R 475 0 R 479 0 R 480 0 R 480 0 R 481 0 R 480 0 R 480 0 R 480 0 R] +endobj +107 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 482 0 R 482 0 R 483 0 R 482 0 R 482 0 R +482 0 R 482 0 R 484 0 R 482 0 R 482 0 R 482 0 R 482 0 R 485 0 R 482 0 R 486 0 R 482 0 R 487 0 R 482 0 R 482 0 R 488 0 R 488 0 R +488 0 R 488 0 R 488 0 R 488 0 R 489 0 R 488 0 R 490 0 R 488 0 R 491 0 R 488 0 R 488 0 R 488 0 R 492 0 R 488 0 R 493 0 R 488 0 R +494 0 R 488 0 R 488 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 495 0 R 496 0 R 496 0 R 496 0 R 496 0 R 497 0 R +496 0 R 496 0 R 496 0 R 496 0 R 496 0 R 496 0 R 496 0 R] +endobj +108 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 498 0 R 498 0 R 499 0 R 498 0 R 500 0 R 498 0 R 498 0 R 498 0 R 498 0 R +498 0 R 498 0 R 501 0 R 502 0 R 501 0 R 501 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R +513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 518 0 R 519 0 R 518 0 R 520 0 R 518 0 R 518 0 R 518 0 R 518 0 R 521 0 R 518 0 R +518 0 R 522 0 R 518 0 R 518 0 R 523 0 R 518 0 R 524 0 R 518 0 R 518 0 R 518 0 R 518 0 R 518 0 R 518 0 R 525 0 R 518 0 R 526 0 R +527 0 R 528 0 R 527 0 R 527 0 R 529 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 530 0 R] +endobj +109 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 527 0 R 527 0 R 527 0 R 531 0 R 531 0 R +531 0 R 532 0 R 531 0 R 533 0 R 531 0 R 531 0 R 534 0 R 173 0 R 535 0 R 536 0 R 536 0 R 536 0 R 536 0 R 537 0 R 536 0 R 536 0 R] +endobj +110 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +538 0 R 538 0 R 538 0 R 538 0 R 538 0 R 538 0 R 539 0 R 538 0 R 538 0 R 538 0 R 540 0 R 540 0 R 540 0 R 540 0 R 540 0 R 540 0 R +541 0 R 540 0 R 542 0 R 540 0 R 540 0 R 543 0 R 540 0 R 540 0 R 540 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R +549 0 R 549 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 556 0 R 557 0 R 558 0 R 557 0 R 557 0 R 559 0 R 557 0 R 557 0 R +560 0 R 561 0 R 560 0 R 560 0 R 560 0 R 562 0 R 560 0 R 560 0 R 560 0 R 560 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R +569 0 R 570 0 R 571 0 R 571 0 R 572 0 R 573 0 R 574 0 R 574 0 R] +endobj +111 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 575 0 R 576 0 R 577 0 R 577 0 R 577 0 R 578 0 R 579 0 R 579 0 R +580 0 R 579 0 R 579 0 R 579 0 R 579 0 R 579 0 R 579 0 R 579 0 R 579 0 R 579 0 R 581 0 R 581 0 R 581 0 R 581 0 R 582 0 R 581 0 R +583 0 R 581 0 R 581 0 R 581 0 R 581 0 R 581 0 R 584 0 R 584 0 R 584 0 R 584 0 R 584 0 R 585 0 R 584 0 R 584 0 R 586 0 R 584 0 R +584 0 R 584 0 R 584 0 R 584 0 R 587 0 R 587 0 R 587 0 R 587 0 R 588 0 R 587 0 R 587 0 R 587 0 R 589 0 R 587 0 R 590 0 R 591 0 R +590 0 R 590 0 R 590 0 R 590 0 R] +endobj +112 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 592 0 R 592 0 R 592 0 R 592 0 R 592 0 R 592 0 R 592 0 R 593 0 R 592 0 R 594 0 R 595 0 R 596 0 R +595 0 R 595 0 R 595 0 R 595 0 R 595 0 R 595 0 R 595 0 R 595 0 R 595 0 R 597 0 R 595 0 R 595 0 R 598 0 R 595 0 R 595 0 R 595 0 R +595 0 R 595 0 R 595 0 R 595 0 R 599 0 R 599 0 R 599 0 R 599 0 R 599 0 R 599 0 R 599 0 R 599 0 R 600 0 R 601 0 R 600 0 R 602 0 R +600 0 R 603 0 R 600 0 R 604 0 R 600 0 R 600 0 R 600 0 R 600 0 R 605 0 R 600 0 R 606 0 R 607 0 R 606 0 R 606 0 R 606 0 R 608 0 R +609 0 R 608 0 R 608 0 R 610 0 R 608 0 R 608 0 R 608 0 R 608 0 R] +endobj +113 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 606 0 R 606 0 R 611 0 R 606 0 R 606 0 R 606 0 R 612 0 R 612 0 R +613 0 R 614 0 R 614 0 R 614 0 R 614 0 R 614 0 R 614 0 R 615 0 R 615 0 R 615 0 R 615 0 R 615 0 R 615 0 R 615 0 R 615 0 R 615 0 R +616 0 R 616 0 R 616 0 R 616 0 R 616 0 R 616 0 R 616 0 R 617 0 R 618 0 R 618 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 621 0 R +623 0 R 624 0 R 625 0 R 626 0 R 625 0 R 627 0 R 628 0 R 629 0 R 629 0 R 629 0 R] +endobj +114 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 630 0 R 631 0 R 632 0 R 632 0 R 633 0 R 634 0 R +635 0 R 635 0 R 636 0 R 637 0 R 638 0 R 638 0 R 638 0 R 639 0 R 638 0 R 638 0 R 640 0 R 641 0 R 642 0 R 642 0 R 642 0 R 643 0 R +644 0 R 645 0 R 645 0 R 645 0 R 645 0 R 646 0 R 647 0 R 648 0 R 648 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 651 0 R 651 0 R +651 0 R 651 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R 659 0 R] +endobj +115 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 660 0 R +/FontName /VRWEND+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +116 0 obj +<< +/Filter /FlateDecode +/Length 447 +>> +stream +H‰\“ËjÃ0E÷þ +-ÛEqbK3 ˜@HZÈ¢šö[I lg‘¿¯®oi¡†ÄÇXs}òõv³ Ýhò×Ø7;?šCÚèÏý%6Þìý± Ù¼0m׌?OÓsª‡,OÅ»ëyô§m8ôYU™ü-½<ñjnVm¿÷·Yþ[»p47ëÝ­Éw—aøò'F33Ë¥iý!=ÕÃs}ò&ŸÊî¶mzß×»Tó·âý:xSLÏsÊ4}ëÏCÝøX‡£ÏªYº–¦zL×2ó¡ý÷Þ.X¶?4Ÿu̪‹g³tK¼!oÀäð#9V%×—X_ÎÉspA.À%¹[²;² YÀJVð=ù¼ /[~Ëâ[–ùù–99–99–µvªe/½8ú;ø;:;8;f:d::;8;æ;ä;æ;ä }>ÂAŽ0G#Ìä{ô.Ìd +3eÊdï‚Þ…þY‘Wà5y æ~ öKØ£ Gá~ öKÙ¯¢_¥§ÂSé©ðTz*<•ž +O¥§ÂSé©ðTz*<•žé†aû™*Œ]:æw¦›KŒiœ§#4Í1&¸ þ÷” ý`R~Ù·OåßÀ +endstream +endobj +117 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 661 0 R +/FontName /BIWOTR+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +118 0 obj +<< +/Filter /FlateDecode +/Length 405 +>> +stream +H‰\’Ýjê@…ïósÙ^”h~öV‚h ^ô´ÔÓˆÉhuÆxáÛŸ½²¤…ˆùÆÙ³øسÓÍn» ÝèÒ÷Ø7{?ºcÚè/ý56Þü© É©fö¬\õbÏ*ñ¡ýo?_ðØáØ|Õ1©2Ïfö1Þ7àçûÿö>Û:g]Žº|Nžƒ3rÎÉ9¸ à’\‚×äµqÁœ9…’¼%oKæ—È/™_"¿d~‰|aŽ GX/¨Ö ê…õ2ÕÓGà#B0² /ÀKòL¿°_‚~ ÎÂÞ ú&/d»ŒJÙCE•ž +O¥§ÂSé©ðTz*<•ž +O¥›ÂMéf\öýVqí6îg¦škŒ6NÓOs„ ê‚ÿ™ò¡œÂ›ü`ÎÞÆæ +endstream +endobj +119 0 obj +[662 0 R] +endobj +120 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +121 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/P/R/S/a/c/comma/d/e/f/g/h/i/l/n/o/p/r/s/space/t/two/v/y) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 663 0 R +/FontName /WJVJBB+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +122 0 obj +<< +/Filter /FlateDecode +/Length 355 +>> +stream +H‰\’ËjÃ0E÷ú +-“E°ãXRÆPܼ胺ýǧ†ZŠ³ðßwFR¨@ž£Ç\_f”Tõsí†Y&ïaê˜e?8à:ÝBò —Á‰m&íÐÍ÷UüvcëE‚ÉÍra¬]?‰¢É^ç°ÈՓΰÉ[°w‘«¯ªYˤ¹yÿ#¸Y¦²,¥……^ZÿÚŽ “˜¶©-žó²Áœ¿Ÿ‹™Åõ–Ít“…«o;­»€(R¥,N8JÎþ;Ï §ûî» ¢Èèršb@®˜+ä]ƒ(ò]d È9sN|`>snN¹Š5i*ÖQ¤£XG‘ŽÞFÆ€Ìû:î³¾&}­˜±fÖĆÙï™÷ÄìG“Í~4ùÑGæ#ñ‰‹SöiȧaŸ†|öcÈa?†üö`ȃáa "ß«IåÆW!½ìn!`ãÓ‰ý£Î ¯ËO^bMñ+ÀŸE¬P +endstream +endobj +123 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/space/I) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 664 0 R +/FontName /JOAUBB+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +124 0 obj +<< +/Filter /FlateDecode +/Length 235 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqv)˜@iä°v,Ý8¶’Û(Î!o?Ù-T`ËBÿ'~KžÚsë]ùIÁt˜`pÞÎa!ƒÐãè¼Ø×`IªÜfÒQH†»uN8µ~B)_Üœ­°9ÚÐãVÈ+Y$çGØ|Ÿº-Èn‰ñ'ô *h°8ð /zBÛµ–û.­;fþ·5"Ô¥Þß͘`qŽÚ i?¢PGê£èíK¿¾Sý`~4 UgmUqêíPÞœ2÷Pä üQxÚ3 ;+Û(–²çñ¹°"0•ø`Ðq‰ +endstream +endobj +125 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space/P/R/S/a/c/e/f/g/i/n/o/r/s/t/u) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 665 0 R +/FontName /NKZNFT+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +126 0 obj +<< +/Filter /FlateDecode +/Length 301 +>> +stream +H‰\‘Ínƒ0 Çïy +ÛC T !M]+q؇Æö˜.ÒQ Þ~N\uÒ"‰ó·c[žšçÆš仟T‹ Æjótó +¡Ç«±"Í@µÜwñ¯ÆÎ Iâv;L¢ª@~s^ü +›'=õ¸òÍkôÆ^aóuj· Û›s?8¢] ºzéÜk7"È(Û5šüfYw¤ù»ñ¹:„,îS~Œš4ήSè;{EQ%´j¨.´jVÿó§ËúA}w^TY¸œ$dD•3ç‘3æ,ðžyO\¤‘ÉóyÏsæ&ë&¤ +Ÿø`€Œ’x +endstream +endobj +127 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/space/P/R/S/a/c/e/f/g/i/n/o/r/s/t/u) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 666 0 R +/FontName /LHVBDX+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +128 0 obj +<< +/Filter /FlateDecode +/Length 301 +>> +stream +H‰\‘Ínƒ0 Çïy +ÛC T !M]+q؇Æö˜.ÒQ Þ~N\uÒ"‰ó·c[žšçÆš仟T‹ Æjótó +¡Ç«±"Í@µÜwñ¯ÆÎ Iâv;L¢ª@~s^ü +›'=õ¸òÍkôÆ^aóuj· Û›s?8¢] ºzéÜk7"È(Û5šüfYw¤ù»ñ¹:„,îS~Œš4ήSè;{EQ%´j¨.´jVÿó§ËúA}w^TY¸œ$dD•3ç‘3æ,ðžyO\¤‘ÉóyÏsæ&ë&¤ +Ÿø`€Œ’x +endstream +endobj +129 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/two/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 667 0 R +/FontName /FGWMXJ+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +130 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡Š”v7iê6)‡uÓ²}'CZrÈßÏ@ÕI³~–ýóK÷Ô9›€¿G¯{L0Zg".~aÀÉ:v`¬N·ªÜzVq"÷Û’pîÜè™”À?¨¹¤¸ÁîÑø÷Œ¿EƒÑº v_—~¼_CøÁ]‚Ú Ž$ôªÂUͼС¾MÛ8Ÿ[@¥>V3Ú\‚Ò•›É†¢ùBÑ2tæ_ÿ¡²†Q«È¤x¦Ù¦¡Ää©)˜aQ±Èø\ñ¹Íê¢NQÊê7ü­îŸÐkŒä¿ì¬Ï–­ÃûZƒ@¬|د2xØ +endstream +endobj +131 0 obj +<< +/BaseFont /KMWPPZ+Wingdings-Regular +/DescendantFonts 668 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 669 0 R +/Type /Font +>> +endobj +132 0 obj +<< +/BaseFont /WJVJBB+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 121 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 670 0 R +/Type /Font +/Widths [305] +>> +endobj +133 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 671 0 R +/FontName /IFMWED+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +134 0 obj +<< +/Filter /FlateDecode +/Length 564 +>> +stream +H‰\ÔÍŠ£@à½OQËîEcÔ[÷¶ t’†,æ‡ÉÌ­d„‰Š1‹¼ýÔñ4=0Ä´¼Ÿ¬t{Øúnvé÷ihŽavç®o§pîSÜ)\º>Ér×vÍüñoùm®õ˜¤qññq›ÃõП‡¤ª\ú#ž¼ÍÓÃ=mÚáž“ôÛÔ†©ë/îé×öøìÒã}ÿ„kèg·rëµkÃ9ÞèK=~­¯Á¥Ë²—CÏwóã%®ùwÅÏÇ\¾üψi†6Üƺ SÝ_BR­âgíª÷øY'¡oÿ;oÆe§s󻞒*ÇÅ«U<ÄüÊüŠ\2—È[æ-òŽy‡¼gÞ#¿3Ç¡UÁ{¸g‘1gÈ9sŽ\0ÈÂ,ÈžÙ#+³"³!ÓYÀYÐYÀYl˜7ÈoÌoÈ´° =Ð#ð=Ð#ð=Ð#ð=Ð#ð=Ð#ð;t(ìPС°CA‡B§ÀéÙ¡G‡žN§§ÓÃééôpz:=œžN§§ÓÃéió°yöãѧÇãìGÑr®b®r®b®r®b®r®b®r®b®r®b®²E?JƒÂ ìGÑÒ£ð(»Rt¥´ébcWŠ®”])º2veèÊè7ø~ƒßè7ø~ƒßè7ø~ƒßè7ø~ƒßè7ø~ƒÿ÷ÉW9Ö–Ù’3\_æ̸¾,˜ñ\¥0ã¹Je†mÏg‰¼¼o)^ã¸Û¸Ï=¢¹OSÜ–-iÙ°#t}øܵÆatq¾É_‰": +endstream +endobj +135 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/P/R/S/a/b/c/comma/d/e/eight/f/five/four/g/h/i/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/v/y/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 672 0 R +/FontName /YBMWZX+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +136 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +137 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/two/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 673 0 R +/FontName /XEEIGZ+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +138 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡Š”v7iê6)‡uÓ²}'CZrÈßÏ@ÕI³~–ýóK÷Ô9›€¿G¯{L0Zg".~aÀÉ:v`¬N·ªÜzVq"÷Û’pîÜè™”À?¨¹¤¸ÁîÑø÷Œ¿EƒÑº v_—~¼_CøÁ]‚Ú Ž$ôªÂUͼС¾MÛ8Ÿ[@¥>V3Ú\‚Ò•›É†¢ùBÑ2tæ_ÿ¡²†Q«È¤x¦Ù¦¡Ää©)˜aQ±Èø\ñ¹Íê¢NQÊê7ü­îŸÐkŒä¿ì¬Ï–­ÃûZƒ@¬|د2xØ +endstream +endobj +139 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/E/P/R/S/U/a/c/d/e/f/five/g/h/hyphen/i/k/l/m/n/o/one/p/period/r/s/space/t/three/two/u/v/y) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 674 0 R +/FontName /JEBCSB+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +140 0 obj +<< +/Filter /FlateDecode +/Length 375 +>> +stream +H‰\’Mnƒ0…÷>…—Í"‚¶ !5$‘XôGM{b)R1È·ï ¥R‘Àò{æ 3QY*ßN2z½=Ã$›Ö»c ä®­›DºÖN÷·åi»zšÏó8AWù¦y.£Ü§0˧g×_`%¢·à ´þ*Ÿ¾ÊóJFçÛ0ü@~’±, +é Áƒ^êáµî@F‹m]9Üo§yž?Åç<€L–÷ ‡±½ƒq¨-„Ú_Aä1^…ÌOx¼û·Ÿ&l»4ö»"OHǸ ˜ÄGæ#rºYä„9!N™SbŬ3æŒXñùŠÎWìUäUìUäU¬W¤×ü-MßҬѤÑsFÌz½è5³&6̆x˼%Þ1ïˆ÷Ì{â’¹$æÚ5Õ®¹vMµë3þÌÜp-†j1\‹¡Z ç4”ÓpNC9 ç4”ÓpNC9 çÁ…tïµ +'J>æÀÞBÀXÆné=u½õð˜Ì¡$ºè¿ Œ¸ +endstream +endobj +141 0 obj +<< +/BaseFont /GNNSHH+Wingdings-Regular +/DescendantFonts 675 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 676 0 R +/Type /Font +>> +endobj +142 0 obj +<< +/BaseFont /YBMWZX+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 135 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 677 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 573 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 452 610 539 363 596 599 292 0 0 292 0 599 589 +610 0 403 451 383 0 551 0 0 545] +>> +endobj +143 0 obj +<< +/BaseFont /AZMDBT+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 155 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 678 0 R +/Type /Font +/Widths [202] +>> +endobj +144 0 obj +<< +/BaseFont /YRIRZX+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 679 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 680 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +559 0 569 519 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 0 449 0 516 319 573 0 256 0 0 0 0 572 564 +0 0 356 417 351 569] +>> +endobj +145 0 obj +[681 0 R] +endobj +146 0 obj +<< +/Filter /FlateDecode +/Length 240 +>> +stream +H‰\PËjÄ0 ¼û+tÜ=,ÞGYZ†²¥C4í8¶’Û(Î!_EY¶P-†Ñ #éKýTÇP@¿Sr èBô„cšÈ!´Ø‡¨GðÁ•+’ß 6+Íâf uì’ª*ÐLŽ…fØ<úÔâVé7òH!ö°ùº4[ÐÍ”ó ìÁðرыͯv@Ð"ÛÕžùPækþ&>çŒp|XøäqÌÖ!ÙØ£ªö\ªg.£0úüiUµû¶$Ó'žæö`t'ˆ› óŠÎâtÕ,ž¼:Ü»‰ˆ³Ê}$ä/D¼0§ ¬Zžú`Öƒu + +endstream +endobj +147 0 obj +<< +/BaseFont /FFNSTJ+Wingdings-Regular +/DescendantFonts 682 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 683 0 R +/Type /Font +>> +endobj +148 0 obj +<< +/BaseFont /YBMWZX+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 135 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 684 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 573 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +149 0 obj +<< +/BaseFont /AZMDBT+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 155 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 685 0 R +/Type /Font +/Widths [202] +>> +endobj +150 0 obj +<< +/BaseFont /JEBCSB+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 139 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 686 0 R +/Type /Font +/Widths [212] +>> +endobj +151 0 obj +<< +/BaseFont /YRIRZX+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 679 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 687 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +152 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 688 0 R +/FontName /EHMTAL+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +153 0 obj +<< +/Filter /FlateDecode +/Length 350 +>> +stream +H‰\’Ínƒ0 €ïyŠÛCEKÛx•ÒD[‰Ã~4¶ ‰éFˆ=ðö³qÕICQlò9IR”ÇÒ·£NÞco+uÓzqèoÑ¢¾àµõj“j×Úñ>š¿¶«ƒJ¨¸š†»Ò7½Ê2|Ðä0ÆI/ž]Á¥JÞ¢ÃØú«^|ÕR'Õ-„ìÐz­ó\;lèG/ux­;ÔÉ\¶*Í·ã´¢š¿ŒÏ) NçñFdlïpµÅXû+ªlMO®³3=¹BïþͧFÊ.ý®£ÊRN^¯)…Ä»§™)¨lŸÎLx+¼e6†Ølf¦@,ù†óäÎ7;áó^xÏ ÂÀ,ë^ׄ̅pÁ,ž†=ÍIøÄ|¦Æ3¾€ûñöñöñöñöé ¸/` +¼±÷ä-¦› çgo1ÒÑÍ×e>3>­ÖããF…>hªâWý +0Yª) +endstream +endobj +154 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [30 /f_i /f_l] +/Type /Encoding +>> +endobj +155 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/C/E/F/G/I/N/P/R/S/T/U/V/W/a/b/c/colon/d/e/eight/f/f_i/f_l/five/four/g/h/hyphen/i/j/l/m/n/nine/o/one/p/period/r/s/seven/six/slash/space/t/three/two/u/v/w/x/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 689 0 R +/FontName /AZMDBT+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +156 0 obj +<< +/Filter /FlateDecode +/Length 482 +>> +stream +H‰\S]kã0|÷¯ÐcûPü%­Z0†\!×–æî8¶’3\l£8ù÷·ã1-œÁÖ,ÖÎÎhµév¿ÛýlÒ8¶‡0›S?t1\Ç[lƒ9†s?$yaº¾×hù¶—fJRM>ܯs¸ì‡Ó˜T•I?õçuŽwó°éÆcxLÒ÷Ø…Øgóð{{x4éá6MÃ% ³ÉL]›.œ”èg3½5—`Ò%íißéÿ~¾?iÎ÷Ž_÷)˜b‰sŠiÇ.\§¦ ±Î!©2}jS½êS'aèþûï,ÓŽ§öO“*ÿ¡›³LDß—Zã×ïx«q‘-±.ŠwÄ;`æ题9º$UÉý%ö—9q\À%q l‰-°#vÀB,ÀžØ??¿Cw¹!Þ(¶¬kQײ–E-K~ ~K~ ~K~ ~KN NK}9ørôâàÅ‘ßßÑ‹ƒÇZµk9Ôr¬åPK¨S SÈ)àr +8…œN!§€Sdí09eáäùÎGèeé«ð|ç£]0ú+ì© §²Þø•õ §žÞ=¼{êôÐé©ÓC§§Nž:=tzêôÐé©ÓC§§Nž:uÁ…]o&®®N˜ùš‹ö£ŽÄ2†Ë,` +ú!|Mê4NF³ð&ÿÏGí- +endstream +endobj +157 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [30 /f_f /f_l] +/Type /Encoding +>> +endobj +158 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_f/f_l/space/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/six/seven/eight/A/C/D/E/G/I/L/N/O/P/R/S/T/U/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y/quoteleft/quoteright) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 690 0 R +/FontName /OEKBKR+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +159 0 obj +<< +/Filter /FlateDecode +/Length 483 +>> +stream +H‰\“ÍŽ›0…÷<…—3‹ö½ƒ„2IGÊ¢?jÚ à¤H ‡,òöõáD3R‘ŸÇþ.æ¦Ûýn?‹I„©;øÅœ†±þ:ÝBçÍÑŸ‡1É ÓÝò­¿Ý¥“4†÷ëâ/ûñ4%umÒŸñæu wó´é§£NÒï¡÷aÏæé÷öðlÒÃmžÿú‹“™¦1½?ʼn¾¶ó·öâMºÆ^ö}¼?,÷—˜ù|â×}ö¦XÇ9eº©÷×¹í|hdzOê,©ßãÑ$~ìÿ»ïcÇS÷§ I‰g™Î&Žß?ÇÛ8.²u/‘_ɯàŠ\·äõùyæÜñ™óÆKR—œ³ÄœeNÎÁ¹ N¥’L‡–Y‹¬-É%Ø’-Ø‘˜óXÌcéoáoéoáoéláléláìèìàìèéà鸮úŽë:¬ë¸®ÃºBO§0+È +³‚¬0+È +³²få±`ú ü…ïAð„µj‘ y~#¿Y㺧Â=ì‘<öõÊcïQ¯²^E½Jg…³ÒYá¬tV8+ÎJg…³ÒYá¬tV8+ÎÞO‘åø¿*ÈÕúñ>¾R|ƱÛÌGt·b{¬-¹ö:býG×ÎÓlb +gòO€¦ïß +endstream +endobj +160 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceGray +/Filter /DCTDecode +/Height 893 +/Intent /RelativeColorimetric +/Length 5256 +/Name /X +/Subtype /Image +/Type /XObject +/Width 975 +>> +stream +ÿØÿîAdobedÿÛC + + + + +  ÿÝzÿÀ }ÏÿÄÒ  + ^C +!"#$%&'()*123456789:ABCDEFGHIJQRSTUVWXYZabcdefghijqrstuvwxyz‚ƒ„…†‡ˆ‰Š‘’“”•–—˜™š¡¢£¤¥¦§¨©ª±²³´µ¶·¸¹ºÁÂÃÄÅÆÇÈÉÊÑÒÓÔÕÖ×ØÙÚáâãäåæçèéêðñòóôõö÷øùúÿÚ?¿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿ׿€Ÿ…¦‰pu¤ù¼ +ÿп€Ÿ…¦‰pu¤ù¼ +ÿÑ¿€Ÿ…¦‰pu¤ù¼ +ÿÒ¿€Ÿ…¦‰pu¤ù¼ +ÿÓ¿€Ÿ…¦‰pu¤ù¼ +ÿÔ¿€Ÿ…¦‰pu¤ù¼ +ÿÕ¿€Ÿ…¦‰pu¤ù¼ +ÿÖ¿€Ÿ…¦‰pu¤ù¼ +ÿÙ +endstream +endobj +161 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +162 0 obj +<< +/BaseFont /CUCKKZ+Wingdings-Regular +/DescendantFonts 691 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 692 0 R +/Type /Font +>> +endobj +163 0 obj +<< +/BaseFont /ZXSXUF+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 693 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 694 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +164 0 obj +<< +/BaseFont /SXECAT+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 695 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 696 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 536 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 676 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 564 +0 0 356 0 0 0 508] +>> +endobj +165 0 obj +<< +/BaseFont /GAAIOR+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 697 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 698 0 R +/Type /Font +/Widths [212] +>> +endobj +166 0 obj +<< +/BaseFont /HMNJCP+Wingdings-Regular +/DescendantFonts 699 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 700 0 R +/Type /Font +>> +endobj +167 0 obj +<< +/BaseFont /EFZRMV+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 701 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 702 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +168 0 obj +<< +/BaseFont /UQZJCP+MyriadPro-Light +/Encoding 703 0 R +/FirstChar 31 +/FontDescriptor 704 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 705 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +169 0 obj +<< +/K [177 0 R 178 0 R 179 0 R 182 0 R 186 0 R 189 0 R 191 0 R 195 0 R 196 0 R 706 0 R 209 0 R 210 0 R 707 0 R 220 0 R 708 0 R 223 0 R +226 0 R 227 0 R 229 0 R 709 0 R 710 0 R 243 0 R 244 0 R 711 0 R 250 0 R 712 0 R 256 0 R 713 0 R 259 0 R 714 0 R 265 0 R 266 0 R +267 0 R 269 0 R 270 0 R 271 0 R 272 0 R 277 0 R 278 0 R 715 0 R 289 0 R 290 0 R 293 0 R 294 0 R 297 0 R 301 0 R 302 0 R 303 0 R +305 0 R 306 0 R 308 0 R 716 0 R 321 0 R 322 0 R 323 0 R 327 0 R 328 0 R 331 0 R 332 0 R 334 0 R 335 0 R 337 0 R 340 0 R 342 0 R +343 0 R 344 0 R 346 0 R 350 0 R 354 0 R 355 0 R 358 0 R 359 0 R 363 0 R 364 0 R 366 0 R 368 0 R 370 0 R 371 0 R 376 0 R 382 0 R +398 0 R 399 0 R 402 0 R 412 0 R 416 0 R 419 0 R 717 0 R 451 0 R 718 0 R 475 0 R 479 0 R 480 0 R 482 0 R 488 0 R 495 0 R 496 0 R +498 0 R 501 0 R 719 0 R 518 0 R 526 0 R 527 0 R 531 0 R 535 0 R 536 0 R 538 0 R 540 0 R 720 0 R 557 0 R 560 0 R 721 0 R 578 0 R +579 0 R 581 0 R 584 0 R 587 0 R 592 0 R 594 0 R 595 0 R 599 0 R 600 0 R 606 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R +618 0 R 722 0 R 653 0 R 723 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R 659 0 R] +/P 93 0 R +/S /Story +>> +endobj +170 0 obj +<< +/K [387 0 R 388 0 R] +/P 93 0 R +/S /Story +>> +endobj +171 0 obj +<< +/K 409 0 R +/P 93 0 R +/S /Story +>> +endobj +172 0 obj +<< +/K 534 0 R +/P 93 0 R +/S /Story +>> +endobj +173 0 obj +<< +/A << +/BBox [109.972 192.405 531.131 578.144] +/O /Layout +/Placement /Block +>> +/K 935 +/P 93 0 R +/Pg 22 0 R +/S /Figure +>> +endobj +174 0 obj +<< +/K 590 0 R +/P 93 0 R +/S /Story +>> +endobj +175 0 obj +<< +/K 608 0 R +/P 93 0 R +/S /Story +>> +endobj +176 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 177 0 R +/Pg 7 0 R +/S /Span +>> +endobj +177 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [176 0 R 1] +/P 169 0 R +/Pg 7 0 R +/S /Kapitel-Head +>> +endobj +178 0 obj +<< +/C /Pa1 +/K 2 +/P 169 0 R +/Pg 7 0 R +/S /Zwischenhead_1 +>> +endobj +179 0 obj +<< +/C /Pa2 +/K [3 4 5 6 180 0 R 8 9 10 181 0 R 12 13] +/P 169 0 R +/Pg 7 0 R +/S /Lauftext_1._Abs +>> +endobj +180 0 obj +<< +/ActualText +/K 7 +/P 179 0 R +/Pg 7 0 R +/S /Span +>> +endobj +181 0 obj +<< +/ActualText +/K 11 +/P 179 0 R +/Pg 7 0 R +/S /Span +>> +endobj +182 0 obj +<< +/C /Pa3 +/K [14 15 16 17 183 0 R 19 184 0 R 21 22 23 185 0 R 25 26 27 28 29] +/P 169 0 R +/Pg 7 0 R +/S /Lauftext +>> +endobj +183 0 obj +<< +/ActualText +/K 18 +/P 182 0 R +/Pg 7 0 R +/S /Span +>> +endobj +184 0 obj +<< +/ActualText +/K 20 +/P 182 0 R +/Pg 7 0 R +/S /Span +>> +endobj +185 0 obj +<< +/ActualText +/K 24 +/P 182 0 R +/Pg 7 0 R +/S /Span +>> +endobj +186 0 obj +<< +/C /Pa3 +/K [30 187 0 R 32 33 188 0 R 35 36 37 38] +/P 169 0 R +/Pg 7 0 R +/S /Lauftext +>> +endobj +187 0 obj +<< +/ActualText +/K 31 +/P 186 0 R +/Pg 7 0 R +/S /Span +>> +endobj +188 0 obj +<< +/ActualText +/K 34 +/P 186 0 R +/Pg 7 0 R +/S /Span +>> +endobj +189 0 obj +<< +/C /Pa3 +/K [39 40 41 42 43 190 0 R 45 46] +/P 169 0 R +/Pg 7 0 R +/S /Lauftext +>> +endobj +190 0 obj +<< +/ActualText +/K 44 +/P 189 0 R +/Pg 7 0 R +/S /Span +>> +endobj +191 0 obj +<< +/C /Pa3 +/K [47 192 0 R 49 50 51 52 53 193 0 R 55 56 57 58 59 194 0 R 61] +/P 169 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +192 0 obj +<< +/ActualText +/K 48 +/P 191 0 R +/Pg 8 0 R +/S /Span +>> +endobj +193 0 obj +<< +/ActualText +/K 54 +/P 191 0 R +/Pg 8 0 R +/S /Span +>> +endobj +194 0 obj +<< +/ActualText +/K 60 +/P 191 0 R +/Pg 8 0 R +/S /Span +>> +endobj +195 0 obj +<< +/C /Pa1 +/K 62 +/P 169 0 R +/Pg 8 0 R +/S /Zwischenhead_1 +>> +endobj +196 0 obj +<< +/C /Pa2 +/K [63 64 65 66 67] +/P 169 0 R +/Pg 8 0 R +/S /Lauftext_1._Abs +>> +endobj +197 0 obj +<< +/C /A4 +/K 68 +/P 724 0 R +/Pg 8 0 R +/S /Span +>> +endobj +198 0 obj +<< +/C /A4 +/K 69 +/P 724 0 R +/Pg 8 0 R +/S /Span +>> +endobj +199 0 obj +<< +/K [70 71] +/P 725 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +200 0 obj +<< +/C /A4 +/K 72 +/P 726 0 R +/Pg 8 0 R +/S /Span +>> +endobj +201 0 obj +<< +/C /A4 +/K 73 +/P 726 0 R +/Pg 8 0 R +/S /Span +>> +endobj +202 0 obj +<< +/K 74 +/P 727 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +203 0 obj +<< +/C /A4 +/K 75 +/P 728 0 R +/Pg 8 0 R +/S /Span +>> +endobj +204 0 obj +<< +/C /A4 +/K 76 +/P 728 0 R +/Pg 8 0 R +/S /Span +>> +endobj +205 0 obj +<< +/K 77 +/P 729 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +206 0 obj +<< +/C /A4 +/K 78 +/P 730 0 R +/Pg 8 0 R +/S /Span +>> +endobj +207 0 obj +<< +/C /A4 +/K 79 +/P 730 0 R +/Pg 8 0 R +/S /Span +>> +endobj +208 0 obj +<< +/K 80 +/P 731 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +209 0 obj +<< +/C /Pa3 +/K [81 82 83 84 85] +/P 169 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +210 0 obj +<< +/C /Pa3 +/K 86 +/P 169 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +211 0 obj +<< +/C /A4 +/K 87 +/P 732 0 R +/Pg 8 0 R +/S /Span +>> +endobj +212 0 obj +<< +/C /A4 +/K 88 +/P 732 0 R +/Pg 8 0 R +/S /Span +>> +endobj +213 0 obj +<< +/K [89 90] +/P 733 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +214 0 obj +<< +/C /A4 +/K 91 +/P 734 0 R +/Pg 8 0 R +/S /Span +>> +endobj +215 0 obj +<< +/C /A4 +/K 92 +/P 734 0 R +/Pg 8 0 R +/S /Span +>> +endobj +216 0 obj +<< +/K [93 94] +/P 735 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +217 0 obj +<< +/C /A4 +/K 95 +/P 736 0 R +/Pg 8 0 R +/S /Span +>> +endobj +218 0 obj +<< +/C /A4 +/K 96 +/P 736 0 R +/Pg 8 0 R +/S /Span +>> +endobj +219 0 obj +<< +/K [97 98] +/P 737 0 R +/Pg 8 0 R +/S /LBody +>> +endobj +220 0 obj +<< +/C /Pa3 +/K [99 221 0 R 101 102 222 0 R 104 105 106] +/P 169 0 R +/Pg 8 0 R +/S /Lauftext +>> +endobj +221 0 obj +<< +/ActualText +/K 100 +/P 220 0 R +/Pg 8 0 R +/S /Span +>> +endobj +222 0 obj +<< +/ActualText +/K 103 +/P 220 0 R +/Pg 8 0 R +/S /Span +>> +endobj +223 0 obj +<< +/C /Pa3 +/K [107 224 0 R 109 110 225 0 R 112] +/P 169 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +224 0 obj +<< +/ActualText +/K 108 +/P 223 0 R +/Pg 9 0 R +/S /Span +>> +endobj +225 0 obj +<< +/ActualText +/K 111 +/P 223 0 R +/Pg 9 0 R +/S /Span +>> +endobj +226 0 obj +<< +/C /Pa1 +/K 113 +/P 169 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +227 0 obj +<< +/C /Pa2 +/K [114 115 228 0 R 117] +/P 169 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +228 0 obj +<< +/ActualText +/K 116 +/P 227 0 R +/Pg 9 0 R +/S /Span +>> +endobj +229 0 obj +<< +/C /Pa3 +/K [118 119 120 121 122] +/P 169 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +230 0 obj +<< +/C /A4 +/K 123 +/P 738 0 R +/Pg 9 0 R +/S /Span +>> +endobj +231 0 obj +<< +/K [124 232 0 R 126] +/P 739 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +232 0 obj +<< +/ActualText +/K 125 +/P 231 0 R +/Pg 9 0 R +/S /Span +>> +endobj +233 0 obj +<< +/C /A4 +/K 127 +/P 740 0 R +/Pg 9 0 R +/S /Span +>> +endobj +234 0 obj +<< +/K [128 235 0 R 130] +/P 741 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +235 0 obj +<< +/ActualText +/K 129 +/P 234 0 R +/Pg 9 0 R +/S /Span +>> +endobj +236 0 obj +<< +/C /A4 +/K 131 +/P 742 0 R +/Pg 9 0 R +/S /Span +>> +endobj +237 0 obj +<< +/K 132 +/P 743 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +238 0 obj +<< +/C /A4 +/K 133 +/P 744 0 R +/Pg 9 0 R +/S /Span +>> +endobj +239 0 obj +<< +/K 134 +/P 745 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +240 0 obj +<< +/C /A4 +/K 135 +/P 746 0 R +/Pg 9 0 R +/S /Span +>> +endobj +241 0 obj +<< +/K 136 +/P 747 0 R +/Pg 9 0 R +/S /LBody +>> +endobj +242 0 obj +<< +/C /A5 +/K 137 +/P 243 0 R +/Pg 9 0 R +/S /Span +>> +endobj +243 0 obj +<< +/C /Pa2 +/K [242 0 R 138 139 140 141 142 143] +/P 169 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +244 0 obj +<< +/C /Pa3 +/K [144 245 0 R 146 246 0 R 148 149 150 151 152 153 154 155 247 0 R 157 158 248 0 R +160 161] +/P 169 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +245 0 obj +<< +/ActualText +/K 145 +/P 244 0 R +/Pg 9 0 R +/S /Span +>> +endobj +246 0 obj +<< +/ActualText +/K 147 +/P 244 0 R +/Pg 9 0 R +/S /Span +>> +endobj +247 0 obj +<< +/ActualText +/K 156 +/P 244 0 R +/Pg 9 0 R +/S /Span +>> +endobj +248 0 obj +<< +/ActualText +/K 159 +/P 244 0 R +/Pg 9 0 R +/S /Span +>> +endobj +249 0 obj +<< +/C /A5 +/K 162 +/P 250 0 R +/Pg 9 0 R +/S /Span +>> +endobj +250 0 obj +<< +/C /Pa2 +/K [249 0 R 163 251 0 R 165 252 0 R 167 168 253 0 R << +/MCID 170 +/Pg 10 0 R +/Type /MCR +>> << +/MCID 171 +/Pg 10 0 R +/Type /MCR +>> 254 0 R << +/MCID 173 +/Pg 10 0 R +/Type /MCR +>> << +/MCID 174 +/Pg 10 0 R +/Type /MCR +>>] +/P 169 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +251 0 obj +<< +/ActualText +/K 164 +/P 250 0 R +/Pg 9 0 R +/S /Span +>> +endobj +252 0 obj +<< +/ActualText +/K 166 +/P 250 0 R +/Pg 9 0 R +/S /Span +>> +endobj +253 0 obj +<< +/ActualText +/K 169 +/P 250 0 R +/Pg 9 0 R +/S /Span +>> +endobj +254 0 obj +<< +/ActualText +/K 172 +/P 250 0 R +/Pg 10 0 R +/S /Span +>> +endobj +255 0 obj +<< +/C /A5 +/K 175 +/P 256 0 R +/Pg 10 0 R +/S /Span +>> +endobj +256 0 obj +<< +/C /Pa2 +/K [255 0 R 176 257 0 R 178 179 180 181 182] +/P 169 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +257 0 obj +<< +/ActualText +/K 177 +/P 256 0 R +/Pg 10 0 R +/S /Span +>> +endobj +258 0 obj +<< +/C /A5 +/K 183 +/P 259 0 R +/Pg 10 0 R +/S /Span +>> +endobj +259 0 obj +<< +/C /Pa2 +/K [258 0 R 184 260 0 R 186 187 261 0 R 189 190 191 262 0 R 193 194 195 263 0 R 197] +/P 169 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +260 0 obj +<< +/ActualText +/K 185 +/P 259 0 R +/Pg 10 0 R +/S /Span +>> +endobj +261 0 obj +<< +/ActualText +/K 188 +/P 259 0 R +/Pg 10 0 R +/S /Span +>> +endobj +262 0 obj +<< +/ActualText +/K 192 +/P 259 0 R +/Pg 10 0 R +/S /Span +>> +endobj +263 0 obj +<< +/ActualText +/K 196 +/P 259 0 R +/Pg 10 0 R +/S /Span +>> +endobj +264 0 obj +<< +/C /A5 +/K 198 +/P 265 0 R +/Pg 10 0 R +/S /Span +>> +endobj +265 0 obj +<< +/C /Pa2 +/K [264 0 R 199 200 201 202 203 204] +/P 169 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +266 0 obj +<< +/C /Pa1 +/K 205 +/P 169 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +267 0 obj +<< +/C /Pa2 +/K [206 207 268 0 R 209] +/P 169 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +268 0 obj +<< +/ActualText +/K 208 +/P 267 0 R +/Pg 10 0 R +/S /Span +>> +endobj +269 0 obj +<< +/C /Pa9 +/K 210 +/P 169 0 R +/Pg 10 0 R +/S /Zwischenhead_2 +>> +endobj +270 0 obj +<< +/C /Pa2 +/K 211 +/P 169 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +271 0 obj +<< +/C /Pa9 +/K 212 +/P 169 0 R +/Pg 10 0 R +/S /Zwischenhead_2 +>> +endobj +272 0 obj +<< +/C /Pa2 +/K [213 214 273 0 R 216 217 << +/MCID 218 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 219 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 220 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 221 +/Pg 11 0 R +/Type /MCR +>> 274 0 R << +/MCID 223 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 224 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 225 +/Pg 11 0 R +/Type /MCR +>> 275 0 R << +/MCID 227 +/Pg 11 0 R +/Type /MCR +>> 276 0 R +<< +/MCID 229 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 230 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 231 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 232 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 233 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 234 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 235 +/Pg 11 0 R +/Type /MCR +>>] +/P 169 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +273 0 obj +<< +/ActualText +/K 215 +/P 272 0 R +/Pg 10 0 R +/S /Span +>> +endobj +274 0 obj +<< +/ActualText +/K 222 +/P 272 0 R +/Pg 11 0 R +/S /Span +>> +endobj +275 0 obj +<< +/ActualText +/K 226 +/P 272 0 R +/Pg 11 0 R +/S /Span +>> +endobj +276 0 obj +<< +/ActualText +/K 228 +/P 272 0 R +/Pg 11 0 R +/S /Span +>> +endobj +277 0 obj +<< +/C /Pa10 +/K 236 +/P 169 0 R +/Pg 11 0 R +/S /Zwischenhead_3 +>> +endobj +278 0 obj +<< +/C /Pa2 +/K [237 238 239 240 241 242 243 244 245 246] +/P 169 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +279 0 obj +<< +/C /A4 +/K 247 +/P 748 0 R +/Pg 11 0 R +/S /Span +>> +endobj +280 0 obj +<< +/C /A4 +/K 248 +/P 748 0 R +/Pg 11 0 R +/S /Span +>> +endobj +281 0 obj +<< +/K [249 250 251] +/P 749 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +282 0 obj +<< +/C /A4 +/K 252 +/P 750 0 R +/Pg 11 0 R +/S /Span +>> +endobj +283 0 obj +<< +/C /A4 +/K 253 +/P 750 0 R +/Pg 11 0 R +/S /Span +>> +endobj +284 0 obj +<< +/K [254 285 0 R 256 257] +/P 751 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +285 0 obj +<< +/ActualText +/K 255 +/P 284 0 R +/Pg 11 0 R +/S /Span +>> +endobj +286 0 obj +<< +/C /A4 +/K 258 +/P 752 0 R +/Pg 11 0 R +/S /Span +>> +endobj +287 0 obj +<< +/C /A4 +/K 259 +/P 752 0 R +/Pg 11 0 R +/S /Span +>> +endobj +288 0 obj +<< +/K 260 +/P 753 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +289 0 obj +<< +/C /Pa9 +/K 261 +/P 169 0 R +/Pg 11 0 R +/S /Zwischenhead_2 +>> +endobj +290 0 obj +<< +/C /Pa2 +/K [262 291 0 R 264 265 266 267 268 292 0 R 270 271 272] +/P 169 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +291 0 obj +<< +/ActualText +/K 263 +/P 290 0 R +/Pg 11 0 R +/S /Span +>> +endobj +292 0 obj +<< +/ActualText +/K 269 +/P 290 0 R +/Pg 11 0 R +/S /Span +>> +endobj +293 0 obj +<< +/C /Pa9 +/K 273 +/P 169 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +294 0 obj +<< +/C /Pa2 +/K [274 275 276 277 278 279 280 281 282 295 0 R 284 285 296 0 R 287 288] +/P 169 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +295 0 obj +<< +/ActualText +/K 283 +/P 294 0 R +/Pg 12 0 R +/S /Span +>> +endobj +296 0 obj +<< +/ActualText +/K 286 +/P 294 0 R +/Pg 12 0 R +/S /Span +>> +endobj +297 0 obj +<< +/C /Pa3 +/K [289 290 291 292 293 294 298 0 R 296 297 298 299 300 299 0 R 302 300 0 R 304] +/P 169 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +298 0 obj +<< +/ActualText +/K 295 +/P 297 0 R +/Pg 12 0 R +/S /Span +>> +endobj +299 0 obj +<< +/ActualText +/K 301 +/P 297 0 R +/Pg 12 0 R +/S /Span +>> +endobj +300 0 obj +<< +/ActualText +/K 303 +/P 297 0 R +/Pg 12 0 R +/S /Span +>> +endobj +301 0 obj +<< +/C /Pa3 +/K [305 306 307 308 309] +/P 169 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +302 0 obj +<< +/C /Pa3 +/K [310 311 312 313] +/P 169 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +303 0 obj +<< +/C /Pa3 +/K [314 304 0 R 316 317 318] +/P 169 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +304 0 obj +<< +/ActualText +/K 315 +/P 303 0 R +/Pg 12 0 R +/S /Span +>> +endobj +305 0 obj +<< +/C /Pa9 +/K 319 +/P 169 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +306 0 obj +<< +/C /Pa2 +/K [320 321 322 323 307 0 R 325] +/P 169 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +307 0 obj +<< +/ActualText +/K 324 +/P 306 0 R +/Pg 12 0 R +/S /Span +>> +endobj +308 0 obj +<< +/C /Pa2 +/K 326 +/P 169 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +309 0 obj +<< +/C /A4 +/K 327 +/P 754 0 R +/Pg 13 0 R +/S /Span +>> +endobj +310 0 obj +<< +/C /A4 +/K 328 +/P 754 0 R +/Pg 13 0 R +/S /Span +>> +endobj +311 0 obj +<< +/K [329 330] +/P 755 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +312 0 obj +<< +/C /A4 +/K 331 +/P 756 0 R +/Pg 13 0 R +/S /Span +>> +endobj +313 0 obj +<< +/C /A4 +/K 332 +/P 756 0 R +/Pg 13 0 R +/S /Span +>> +endobj +314 0 obj +<< +/K [333 334] +/P 757 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +315 0 obj +<< +/C /A4 +/K 335 +/P 758 0 R +/Pg 13 0 R +/S /Span +>> +endobj +316 0 obj +<< +/C /A4 +/K 336 +/P 758 0 R +/Pg 13 0 R +/S /Span +>> +endobj +317 0 obj +<< +/K [337 338] +/P 759 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +318 0 obj +<< +/C /A4 +/K 339 +/P 760 0 R +/Pg 13 0 R +/S /Span +>> +endobj +319 0 obj +<< +/C /A4 +/K 340 +/P 760 0 R +/Pg 13 0 R +/S /Span +>> +endobj +320 0 obj +<< +/K [341 342 343] +/P 761 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +321 0 obj +<< +/C /Pa3 +/K [344 345 346] +/P 169 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +322 0 obj +<< +/C /Pa9 +/K 347 +/P 169 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +323 0 obj +<< +/C /Pa2 +/K [348 324 0 R 350 351 352 325 0 R 354 355 356 326 0 R 358] +/P 169 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +324 0 obj +<< +/ActualText +/K 349 +/P 323 0 R +/Pg 13 0 R +/S /Span +>> +endobj +325 0 obj +<< +/ActualText +/K 353 +/P 323 0 R +/Pg 13 0 R +/S /Span +>> +endobj +326 0 obj +<< +/ActualText +/K 357 +/P 323 0 R +/Pg 13 0 R +/S /Span +>> +endobj +327 0 obj +<< +/C /Pa9 +/K 359 +/P 169 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +328 0 obj +<< +/C /Pa2 +/K [360 361 329 0 R 363 330 0 R 365 366 367 368 369 370] +/P 169 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +329 0 obj +<< +/ActualText +/K 362 +/P 328 0 R +/Pg 13 0 R +/S /Span +>> +endobj +330 0 obj +<< +/ActualText +/K 364 +/P 328 0 R +/Pg 13 0 R +/S /Span +>> +endobj +331 0 obj +<< +/C /Pa3 +/K [371 372 373 374] +/P 169 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +332 0 obj +<< +/C /Pa3 +/K [375 376 333 0 R 378 379 380 381] +/P 169 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +333 0 obj +<< +/ActualText +/K 377 +/P 332 0 R +/Pg 13 0 R +/S /Span +>> +endobj +334 0 obj +<< +/C /Pa9 +/K 382 +/P 169 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +335 0 obj +<< +/C /Pa2 +/K [383 336 0 R 385 386 387 388 389 390 391] +/P 169 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +336 0 obj +<< +/ActualText +/K 384 +/P 335 0 R +/Pg 14 0 R +/S /Span +>> +endobj +337 0 obj +<< +/C /Pa3 +/K [392 338 0 R 394 395 396 339 0 R 398] +/P 169 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +338 0 obj +<< +/ActualText +/K 393 +/P 337 0 R +/Pg 14 0 R +/S /Span +>> +endobj +339 0 obj +<< +/ActualText +/K 397 +/P 337 0 R +/Pg 14 0 R +/S /Span +>> +endobj +340 0 obj +<< +/C /Pa3 +/K [399 341 0 R 401 402] +/P 169 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +341 0 obj +<< +/ActualText +/K 400 +/P 340 0 R +/Pg 14 0 R +/S /Span +>> +endobj +342 0 obj +<< +/C /Pa9 +/K 403 +/P 169 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +343 0 obj +<< +/C /Pa2 +/K [404 405 406 407 408 409] +/P 169 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +344 0 obj +<< +/C /Pa3 +/K [410 345 0 R 412 413 414 415 416 417 418 419 420] +/P 169 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +345 0 obj +<< +/ActualText +/K 411 +/P 344 0 R +/Pg 14 0 R +/S /Span +>> +endobj +346 0 obj +<< +/C /Pa3 +/K [421 347 0 R 423 424 425 426 348 0 R 428 349 0 R 430 431] +/P 169 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +347 0 obj +<< +/ActualText +/K 422 +/P 346 0 R +/Pg 14 0 R +/S /Span +>> +endobj +348 0 obj +<< +/ActualText +/K 427 +/P 346 0 R +/Pg 14 0 R +/S /Span +>> +endobj +349 0 obj +<< +/ActualText +/K 429 +/P 346 0 R +/Pg 14 0 R +/S /Span +>> +endobj +350 0 obj +<< +/C /Pa3 +/K [432 351 0 R 434 435 436 << +/MCID 437 +/Pg 15 0 R +/Type /MCR +>> 352 0 R << +/MCID 439 +/Pg 15 0 R +/Type /MCR +>> 353 0 R << +/MCID 441 +/Pg 15 0 R +/Type /MCR +>>] +/P 169 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +351 0 obj +<< +/ActualText +/K 433 +/P 350 0 R +/Pg 14 0 R +/S /Span +>> +endobj +352 0 obj +<< +/ActualText +/K 438 +/P 350 0 R +/Pg 15 0 R +/S /Span +>> +endobj +353 0 obj +<< +/ActualText +/K 440 +/P 350 0 R +/Pg 15 0 R +/S /Span +>> +endobj +354 0 obj +<< +/C /Pa9 +/K 442 +/P 169 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +355 0 obj +<< +/C /Pa2 +/K [443 444 356 0 R 446 447 357 0 R 449 450 451] +/P 169 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +356 0 obj +<< +/ActualText +/K 445 +/P 355 0 R +/Pg 15 0 R +/S /Span +>> +endobj +357 0 obj +<< +/ActualText +/K 448 +/P 355 0 R +/Pg 15 0 R +/S /Span +>> +endobj +358 0 obj +<< +/C /Pa9 +/K 452 +/P 169 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +359 0 obj +<< +/C /Pa2 +/K [453 454 360 0 R 456 457 361 0 R 459 460 461 462 362 0 R 464 465] +/P 169 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +360 0 obj +<< +/ActualText +/K 455 +/P 359 0 R +/Pg 15 0 R +/S /Span +>> +endobj +361 0 obj +<< +/ActualText +/K 458 +/P 359 0 R +/Pg 15 0 R +/S /Span +>> +endobj +362 0 obj +<< +/ActualText +/K 463 +/P 359 0 R +/Pg 15 0 R +/S /Span +>> +endobj +363 0 obj +<< +/C /Pa9 +/K 466 +/P 169 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +364 0 obj +<< +/C /Pa2 +/K [467 468 469 470 471 472 473 474 475 476 365 0 R 478 479 480] +/P 169 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +365 0 obj +<< +/ActualText +/K 477 +/P 364 0 R +/Pg 15 0 R +/S /Span +>> +endobj +366 0 obj +<< +/C /Pa3 +/K [481 367 0 R 483 484 485 486 487 488] +/P 169 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +367 0 obj +<< +/ActualText +/K 482 +/P 366 0 R +/Pg 15 0 R +/S /Span +>> +endobj +368 0 obj +<< +/C /Pa3 +/K [489 490 491 492 493 494 495 369 0 R 497 498] +/P 169 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +369 0 obj +<< +/ActualText +/K 496 +/P 368 0 R +/Pg 16 0 R +/S /Span +>> +endobj +370 0 obj +<< +/C /Pa1 +/K 499 +/P 169 0 R +/Pg 16 0 R +/S /Zwischenhead_1 +>> +endobj +371 0 obj +<< +/C /Pa2 +/K [500 501 372 0 R 503 504 373 0 R 506 374 0 R 508 375 0 R 510 511] +/P 169 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +372 0 obj +<< +/ActualText +/K 502 +/P 371 0 R +/Pg 16 0 R +/S /Span +>> +endobj +373 0 obj +<< +/ActualText +/K 505 +/P 371 0 R +/Pg 16 0 R +/S /Span +>> +endobj +374 0 obj +<< +/ActualText +/K 507 +/P 371 0 R +/Pg 16 0 R +/S /Span +>> +endobj +375 0 obj +<< +/ActualText +/K 509 +/P 371 0 R +/Pg 16 0 R +/S /Span +>> +endobj +376 0 obj +<< +/C /Pa3 +/K [512 513 514 515 516 517 518 519 520 521 377 0 R 523 524 525 526 378 0 R +528 529 530 531 532 379 0 R 534 535 536 380 0 R 538 539 381 0 R 541 542] +/P 169 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +377 0 obj +<< +/ActualText +/K 522 +/P 376 0 R +/Pg 16 0 R +/S /Span +>> +endobj +378 0 obj +<< +/ActualText +/K 527 +/P 376 0 R +/Pg 16 0 R +/S /Span +>> +endobj +379 0 obj +<< +/ActualText +/K 533 +/P 376 0 R +/Pg 16 0 R +/S /Span +>> +endobj +380 0 obj +<< +/ActualText +/K 537 +/P 376 0 R +/Pg 16 0 R +/S /Span +>> +endobj +381 0 obj +<< +/ActualText +/K 540 +/P 376 0 R +/Pg 16 0 R +/S /Span +>> +endobj +382 0 obj +<< +/C /Pa3 +/K [543 383 0 R 545 546 547 548 549 384 0 R 551 552 553 554 555 385 0 R 557 558 +386 0 R << +/MCID 584 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 585 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 586 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 587 +/Pg 17 0 R +/Type /MCR +>> 393 0 R << +/MCID 589 +/Pg 17 0 R +/Type /MCR +>> 394 0 R << +/MCID 591 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 592 +/Pg 17 0 R +/Type /MCR +>> 395 0 R << +/MCID 594 +/Pg 17 0 R +/Type /MCR +>> 396 0 R << +/MCID 596 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 597 +/Pg 17 0 R +/Type /MCR +>> 397 0 R +<< +/MCID 599 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 600 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 601 +/Pg 17 0 R +/Type /MCR +>>] +/P 169 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +383 0 obj +<< +/ActualText +/K 544 +/P 382 0 R +/Pg 16 0 R +/S /Span +>> +endobj +384 0 obj +<< +/ActualText +/K 550 +/P 382 0 R +/Pg 16 0 R +/S /Span +>> +endobj +385 0 obj +<< +/ActualText +/K 556 +/P 382 0 R +/Pg 16 0 R +/S /Span +>> +endobj +386 0 obj +<< +/ActualText +/K 559 +/P 382 0 R +/Pg 16 0 R +/S /Span +>> +endobj +387 0 obj +<< +/C /Pa11 +/K [560 561 562] +/P 170 0 R +/Pg 16 0 R +/S /Box_Header_2 +>> +endobj +388 0 obj +<< +/C /Pa11 +/K [563 389 0 R 565 566 567 568 390 0 R 570 571 572 391 0 R 574 575 576 392 0 R 578 +579 580 581 582 583] +/P 170 0 R +/Pg 16 0 R +/S /Kastenlauftext +>> +endobj +389 0 obj +<< +/ActualText +/K 564 +/P 388 0 R +/Pg 16 0 R +/S /Span +>> +endobj +390 0 obj +<< +/ActualText +/K 569 +/P 388 0 R +/Pg 16 0 R +/S /Span +>> +endobj +391 0 obj +<< +/ActualText +/K 573 +/P 388 0 R +/Pg 16 0 R +/S /Span +>> +endobj +392 0 obj +<< +/ActualText +/K 577 +/P 388 0 R +/Pg 16 0 R +/S /Span +>> +endobj +393 0 obj +<< +/ActualText +/K 588 +/P 382 0 R +/Pg 17 0 R +/S /Span +>> +endobj +394 0 obj +<< +/ActualText +/K 590 +/P 382 0 R +/Pg 17 0 R +/S /Span +>> +endobj +395 0 obj +<< +/ActualText +/K 593 +/P 382 0 R +/Pg 17 0 R +/S /Span +>> +endobj +396 0 obj +<< +/ActualText +/K 595 +/P 382 0 R +/Pg 17 0 R +/S /Span +>> +endobj +397 0 obj +<< +/ActualText +/K 598 +/P 382 0 R +/Pg 17 0 R +/S /Span +>> +endobj +398 0 obj +<< +/C /Pa9 +/K 602 +/P 169 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +399 0 obj +<< +/C /Pa2 +/K [603 604 605 400 0 R 607 608 609 610 611 612 613 401 0 R 615 616] +/P 169 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +400 0 obj +<< +/ActualText +/K 606 +/P 399 0 R +/Pg 17 0 R +/S /Span +>> +endobj +401 0 obj +<< +/ActualText +/K 614 +/P 399 0 R +/Pg 17 0 R +/S /Span +>> +endobj +402 0 obj +<< +/C /Pa3 +/K [617 403 0 R 619 620 621 622 623 624 625 626 404 0 R 628 405 0 R 630 631 406 0 R +633 634 635 636 637 638 639 640 407 0 R 642 643 644 645 408 0 R 647 648] +/P 169 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +403 0 obj +<< +/ActualText +/K 618 +/P 402 0 R +/Pg 17 0 R +/S /Span +>> +endobj +404 0 obj +<< +/ActualText +/K 627 +/P 402 0 R +/Pg 17 0 R +/S /Span +>> +endobj +405 0 obj +<< +/ActualText +/K 629 +/P 402 0 R +/Pg 17 0 R +/S /Span +>> +endobj +406 0 obj +<< +/ActualText +/K 632 +/P 402 0 R +/Pg 17 0 R +/S /Span +>> +endobj +407 0 obj +<< +/ActualText +/K 641 +/P 402 0 R +/Pg 17 0 R +/S /Span +>> +endobj +408 0 obj +<< +/ActualText +/K 646 +/P 402 0 R +/Pg 17 0 R +/S /Span +>> +endobj +409 0 obj +<< +/C /Pa12 +/K [649 410 0 R 651 411 0 R 653 654] +/P 171 0 R +/Pg 17 0 R +/S /Einklinker-Text +>> +endobj +410 0 obj +<< +/ActualText +/K 650 +/P 409 0 R +/Pg 17 0 R +/S /Span +>> +endobj +411 0 obj +<< +/ActualText +/K 652 +/P 409 0 R +/Pg 17 0 R +/S /Span +>> +endobj +412 0 obj +<< +/C /Pa3 +/K [655 656 657 658 659 660 413 0 R 662 663 414 0 R 665 666 667 415 0 R 669 670] +/P 169 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +413 0 obj +<< +/ActualText +/K 661 +/P 412 0 R +/Pg 18 0 R +/S /Span +>> +endobj +414 0 obj +<< +/ActualText +/K 664 +/P 412 0 R +/Pg 18 0 R +/S /Span +>> +endobj +415 0 obj +<< +/ActualText +/K 668 +/P 412 0 R +/Pg 18 0 R +/S /Span +>> +endobj +416 0 obj +<< +/C /Pa3 +/K [671 672 673 674 417 0 R 676 677 678 679 418 0 R 681 682 683] +/P 169 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +417 0 obj +<< +/ActualText +/K 675 +/P 416 0 R +/Pg 18 0 R +/S /Span +>> +endobj +418 0 obj +<< +/ActualText +/K 680 +/P 416 0 R +/Pg 18 0 R +/S /Span +>> +endobj +419 0 obj +<< +/C /Pa3 +/K [684 420 0 R 686] +/P 169 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +420 0 obj +<< +/ActualText +/K 685 +/P 419 0 R +/Pg 18 0 R +/S /Span +>> +endobj +421 0 obj +<< +/C /A4 +/K 687 +/P 762 0 R +/Pg 18 0 R +/S /Span +>> +endobj +422 0 obj +<< +/C /A4 +/K 688 +/P 762 0 R +/Pg 18 0 R +/S /Span +>> +endobj +423 0 obj +<< +/K 689 +/P 763 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +424 0 obj +<< +/C /A4 +/K 690 +/P 764 0 R +/Pg 18 0 R +/S /Span +>> +endobj +425 0 obj +<< +/C /A4 +/K 691 +/P 764 0 R +/Pg 18 0 R +/S /Span +>> +endobj +426 0 obj +<< +/K [692 427 0 R 694 695] +/P 765 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +427 0 obj +<< +/ActualText +/K 693 +/P 426 0 R +/Pg 18 0 R +/S /Span +>> +endobj +428 0 obj +<< +/C /A4 +/K 696 +/P 766 0 R +/Pg 18 0 R +/S /Span +>> +endobj +429 0 obj +<< +/C /A4 +/K 697 +/P 766 0 R +/Pg 18 0 R +/S /Span +>> +endobj +430 0 obj +<< +/K [698 699] +/P 767 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +431 0 obj +<< +/C /A4 +/K 700 +/P 768 0 R +/Pg 18 0 R +/S /Span +>> +endobj +432 0 obj +<< +/C /A4 +/K 701 +/P 768 0 R +/Pg 18 0 R +/S /Span +>> +endobj +433 0 obj +<< +/K [702 703 704] +/P 769 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +434 0 obj +<< +/C /A4 +/K 705 +/P 770 0 R +/Pg 18 0 R +/S /Span +>> +endobj +435 0 obj +<< +/C /A4 +/K 706 +/P 770 0 R +/Pg 18 0 R +/S /Span +>> +endobj +436 0 obj +<< +/K [707 437 0 R 709 710 438 0 R 712 713] +/P 771 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +437 0 obj +<< +/ActualText +/K 708 +/P 436 0 R +/Pg 18 0 R +/S /Span +>> +endobj +438 0 obj +<< +/ActualText +/K 711 +/P 436 0 R +/Pg 18 0 R +/S /Span +>> +endobj +439 0 obj +<< +/C /A4 +/K 714 +/P 772 0 R +/Pg 18 0 R +/S /Span +>> +endobj +440 0 obj +<< +/C /A4 +/K 715 +/P 772 0 R +/Pg 18 0 R +/S /Span +>> +endobj +441 0 obj +<< +/K [716 717 718] +/P 773 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +442 0 obj +<< +/C /A4 +/K 719 +/P 774 0 R +/Pg 18 0 R +/S /Span +>> +endobj +443 0 obj +<< +/C /A4 +/K 720 +/P 774 0 R +/Pg 18 0 R +/S /Span +>> +endobj +444 0 obj +<< +/K [721 722 723 445 0 R 725 726] +/P 775 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +445 0 obj +<< +/ActualText +/K 724 +/P 444 0 R +/Pg 18 0 R +/S /Span +>> +endobj +446 0 obj +<< +/C /A4 +/K 727 +/P 776 0 R +/Pg 19 0 R +/S /Span +>> +endobj +447 0 obj +<< +/C /A4 +/K 728 +/P 776 0 R +/Pg 19 0 R +/S /Span +>> +endobj +448 0 obj +<< +/K [729 730 449 0 R 732 733 450 0 R 735] +/P 777 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +449 0 obj +<< +/ActualText +/K 731 +/P 448 0 R +/Pg 19 0 R +/S /Span +>> +endobj +450 0 obj +<< +/ActualText +/K 734 +/P 448 0 R +/Pg 19 0 R +/S /Span +>> +endobj +451 0 obj +<< +/C /Pa3 +/K [736 737 452 0 R 739] +/P 169 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +452 0 obj +<< +/ActualText +/K 738 +/P 451 0 R +/Pg 19 0 R +/S /Span +>> +endobj +453 0 obj +<< +/C /A4 +/K 740 +/P 778 0 R +/Pg 19 0 R +/S /Span +>> +endobj +454 0 obj +<< +/C /A4 +/K 741 +/P 778 0 R +/Pg 19 0 R +/S /Span +>> +endobj +455 0 obj +<< +/K [742 743 744] +/P 779 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +456 0 obj +<< +/C /A4 +/K 745 +/P 780 0 R +/Pg 19 0 R +/S /Span +>> +endobj +457 0 obj +<< +/C /A4 +/K 746 +/P 780 0 R +/Pg 19 0 R +/S /Span +>> +endobj +458 0 obj +<< +/K [747 748 749] +/P 781 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +459 0 obj +<< +/C /A4 +/K 750 +/P 782 0 R +/Pg 19 0 R +/S /Span +>> +endobj +460 0 obj +<< +/C /A4 +/K 751 +/P 782 0 R +/Pg 19 0 R +/S /Span +>> +endobj +461 0 obj +<< +/K [752 462 0 R 754] +/P 783 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +462 0 obj +<< +/ActualText +/K 753 +/P 461 0 R +/Pg 19 0 R +/S /Span +>> +endobj +463 0 obj +<< +/C /A4 +/K 755 +/P 784 0 R +/Pg 19 0 R +/S /Span +>> +endobj +464 0 obj +<< +/C /A4 +/K 756 +/P 784 0 R +/Pg 19 0 R +/S /Span +>> +endobj +465 0 obj +<< +/K [757 758] +/P 785 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +466 0 obj +<< +/C /A4 +/K 759 +/P 786 0 R +/Pg 19 0 R +/S /Span +>> +endobj +467 0 obj +<< +/C /A4 +/K 760 +/P 786 0 R +/Pg 19 0 R +/S /Span +>> +endobj +468 0 obj +<< +/K [761 469 0 R 763 764] +/P 787 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +469 0 obj +<< +/ActualText +/K 762 +/P 468 0 R +/Pg 19 0 R +/S /Span +>> +endobj +470 0 obj +<< +/C /A4 +/K 765 +/P 788 0 R +/Pg 19 0 R +/S /Span +>> +endobj +471 0 obj +<< +/C /A4 +/K 766 +/P 788 0 R +/Pg 19 0 R +/S /Span +>> +endobj +472 0 obj +<< +/K [767 473 0 R 769 474 0 R 771] +/P 789 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +473 0 obj +<< +/ActualText +/K 768 +/P 472 0 R +/Pg 19 0 R +/S /Span +>> +endobj +474 0 obj +<< +/ActualText +/K 770 +/P 472 0 R +/Pg 19 0 R +/S /Span +>> +endobj +475 0 obj +<< +/C /Pa3 +/K [772 476 0 R 774 477 0 R 776 777 778 779 780 478 0 R 782 783 784 785 786 787] +/P 169 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +476 0 obj +<< +/ActualText +/K 773 +/P 475 0 R +/Pg 19 0 R +/S /Span +>> +endobj +477 0 obj +<< +/ActualText +/K 775 +/P 475 0 R +/Pg 19 0 R +/S /Span +>> +endobj +478 0 obj +<< +/ActualText +/K 781 +/P 475 0 R +/Pg 19 0 R +/S /Span +>> +endobj +479 0 obj +<< +/C /Pa1 +/K 788 +/P 169 0 R +/Pg 19 0 R +/S /Zwischenhead_1 +>> +endobj +480 0 obj +<< +/C /Pa2 +/K [789 790 481 0 R 792 793 794] +/P 169 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +481 0 obj +<< +/ActualText +/K 791 +/P 480 0 R +/Pg 19 0 R +/S /Span +>> +endobj +482 0 obj +<< +/C /Pa3 +/K [795 796 483 0 R 798 799 800 801 484 0 R 803 804 805 806 485 0 R 808 486 0 R 810 +487 0 R 812 813] +/P 169 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +483 0 obj +<< +/ActualText +/K 797 +/P 482 0 R +/Pg 20 0 R +/S /Span +>> +endobj +484 0 obj +<< +/ActualText +/K 802 +/P 482 0 R +/Pg 20 0 R +/S /Span +>> +endobj +485 0 obj +<< +/ActualText +/K 807 +/P 482 0 R +/Pg 20 0 R +/S /Span +>> +endobj +486 0 obj +<< +/ActualText +/K 809 +/P 482 0 R +/Pg 20 0 R +/S /Span +>> +endobj +487 0 obj +<< +/ActualText +/K 811 +/P 482 0 R +/Pg 20 0 R +/S /Span +>> +endobj +488 0 obj +<< +/C /Pa3 +/K [814 815 816 817 818 819 489 0 R 821 490 0 R 823 491 0 R 825 826 827 492 0 R 829 +493 0 R 831 494 0 R 833 834] +/P 169 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +489 0 obj +<< +/ActualText +/K 820 +/P 488 0 R +/Pg 20 0 R +/S /Span +>> +endobj +490 0 obj +<< +/ActualText +/K 822 +/P 488 0 R +/Pg 20 0 R +/S /Span +>> +endobj +491 0 obj +<< +/ActualText +/K 824 +/P 488 0 R +/Pg 20 0 R +/S /Span +>> +endobj +492 0 obj +<< +/ActualText +/K 828 +/P 488 0 R +/Pg 20 0 R +/S /Span +>> +endobj +493 0 obj +<< +/ActualText +/K 830 +/P 488 0 R +/Pg 20 0 R +/S /Span +>> +endobj +494 0 obj +<< +/ActualText +/K 832 +/P 488 0 R +/Pg 20 0 R +/S /Span +>> +endobj +495 0 obj +<< +/C /Pa3 +/K [835 836 837 838 839 840 841 842] +/P 169 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +496 0 obj +<< +/C /Pa3 +/K [843 844 845 846 497 0 R 848 849 850 851 852 853 854] +/P 169 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +497 0 obj +<< +/ActualText +/K 847 +/P 496 0 R +/Pg 20 0 R +/S /Span +>> +endobj +498 0 obj +<< +/C /Pa3 +/K [855 856 499 0 R 858 500 0 R 860 861 862 863 864 865] +/P 169 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +499 0 obj +<< +/ActualText +/K 857 +/P 498 0 R +/Pg 21 0 R +/S /Span +>> +endobj +500 0 obj +<< +/ActualText +/K 859 +/P 498 0 R +/Pg 21 0 R +/S /Span +>> +endobj +501 0 obj +<< +/C /Pa3 +/K [866 502 0 R 868 869] +/P 169 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +502 0 obj +<< +/ActualText +/K 867 +/P 501 0 R +/Pg 21 0 R +/S /Span +>> +endobj +503 0 obj +<< +/C /A4 +/K 870 +/P 790 0 R +/Pg 21 0 R +/S /Span +>> +endobj +504 0 obj +<< +/C /A4 +/K 871 +/P 790 0 R +/Pg 21 0 R +/S /Span +>> +endobj +505 0 obj +<< +/K 872 +/P 791 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +506 0 obj +<< +/C /A4 +/K 873 +/P 792 0 R +/Pg 21 0 R +/S /Span +>> +endobj +507 0 obj +<< +/C /A4 +/K 874 +/P 792 0 R +/Pg 21 0 R +/S /Span +>> +endobj +508 0 obj +<< +/K 875 +/P 793 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +509 0 obj +<< +/C /A4 +/K 876 +/P 794 0 R +/Pg 21 0 R +/S /Span +>> +endobj +510 0 obj +<< +/C /A4 +/K 877 +/P 794 0 R +/Pg 21 0 R +/S /Span +>> +endobj +511 0 obj +<< +/K 878 +/P 795 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +512 0 obj +<< +/C /A4 +/K 879 +/P 796 0 R +/Pg 21 0 R +/S /Span +>> +endobj +513 0 obj +<< +/C /A4 +/K 880 +/P 796 0 R +/Pg 21 0 R +/S /Span +>> +endobj +514 0 obj +<< +/K 881 +/P 797 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +515 0 obj +<< +/C /A4 +/K 882 +/P 798 0 R +/Pg 21 0 R +/S /Span +>> +endobj +516 0 obj +<< +/C /A4 +/K 883 +/P 798 0 R +/Pg 21 0 R +/S /Span +>> +endobj +517 0 obj +<< +/K 884 +/P 799 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +518 0 obj +<< +/C /Pa3 +/K [885 886 519 0 R 888 520 0 R 890 891 892 893 521 0 R 895 896 522 0 R 898 899 523 0 R +901 524 0 R 903 904 905 906 907 908 525 0 R 910] +/P 169 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +519 0 obj +<< +/ActualText +/K 887 +/P 518 0 R +/Pg 21 0 R +/S /Span +>> +endobj +520 0 obj +<< +/ActualText +/K 889 +/P 518 0 R +/Pg 21 0 R +/S /Span +>> +endobj +521 0 obj +<< +/ActualText +/K 894 +/P 518 0 R +/Pg 21 0 R +/S /Span +>> +endobj +522 0 obj +<< +/ActualText +/K 897 +/P 518 0 R +/Pg 21 0 R +/S /Span +>> +endobj +523 0 obj +<< +/ActualText +/K 900 +/P 518 0 R +/Pg 21 0 R +/S /Span +>> +endobj +524 0 obj +<< +/ActualText +/K 902 +/P 518 0 R +/Pg 21 0 R +/S /Span +>> +endobj +525 0 obj +<< +/ActualText +/K 909 +/P 518 0 R +/Pg 21 0 R +/S /Span +>> +endobj +526 0 obj +<< +/C /Pa9 +/K 911 +/P 169 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +527 0 obj +<< +/C /Pa2 +/K [912 528 0 R 914 915 529 0 R 917 918 919 920 921 530 0 R << +/MCID 923 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 924 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 925 +/Pg 22 0 R +/Type /MCR +>>] +/P 169 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +528 0 obj +<< +/ActualText +/K 913 +/P 527 0 R +/Pg 21 0 R +/S /Span +>> +endobj +529 0 obj +<< +/ActualText +/K 916 +/P 527 0 R +/Pg 21 0 R +/S /Span +>> +endobj +530 0 obj +<< +/ActualText +/K 922 +/P 527 0 R +/Pg 21 0 R +/S /Span +>> +endobj +531 0 obj +<< +/C /Pa3 +/K [926 927 928 532 0 R 930 533 0 R 932 933] +/P 169 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +532 0 obj +<< +/ActualText +/K 929 +/P 531 0 R +/Pg 22 0 R +/S /Span +>> +endobj +533 0 obj +<< +/ActualText +/K 931 +/P 531 0 R +/Pg 22 0 R +/S /Span +>> +endobj +534 0 obj +<< +/C /Pa9 +/K 934 +/P 172 0 R +/Pg 22 0 R +/S /Zwischenhead_2 +>> +endobj +535 0 obj +<< +/C /Pa9 +/K 936 +/P 169 0 R +/Pg 22 0 R +/S /Zwischenhead_2 +>> +endobj +536 0 obj +<< +/C /Pa2 +/K [937 938 939 940 537 0 R 942 943] +/P 169 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +537 0 obj +<< +/ActualText +/K 941 +/P 536 0 R +/Pg 22 0 R +/S /Span +>> +endobj +538 0 obj +<< +/C /Pa3 +/K [944 945 946 947 948 949 539 0 R 951 952 953] +/P 169 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +539 0 obj +<< +/ActualText +/K 950 +/P 538 0 R +/Pg 23 0 R +/S /Span +>> +endobj +540 0 obj +<< +/C /Pa3 +/K [954 955 956 957 958 959 541 0 R 961 542 0 R 963 964 543 0 R 966 967 968] +/P 169 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +541 0 obj +<< +/ActualText +/K 960 +/P 540 0 R +/Pg 23 0 R +/S /Span +>> +endobj +542 0 obj +<< +/ActualText +/K 962 +/P 540 0 R +/Pg 23 0 R +/S /Span +>> +endobj +543 0 obj +<< +/ActualText +/K 965 +/P 540 0 R +/Pg 23 0 R +/S /Span +>> +endobj +544 0 obj +<< +/C /A4 +/K 969 +/P 800 0 R +/Pg 23 0 R +/S /Span +>> +endobj +545 0 obj +<< +/C /A4 +/K 970 +/P 800 0 R +/Pg 23 0 R +/S /Span +>> +endobj +546 0 obj +<< +/K 971 +/P 801 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +547 0 obj +<< +/C /A4 +/K 972 +/P 802 0 R +/Pg 23 0 R +/S /Span +>> +endobj +548 0 obj +<< +/C /A4 +/K 973 +/P 802 0 R +/Pg 23 0 R +/S /Span +>> +endobj +549 0 obj +<< +/K [974 550 0 R 976 977] +/P 803 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +550 0 obj +<< +/ActualText +/K 975 +/P 549 0 R +/Pg 23 0 R +/S /Span +>> +endobj +551 0 obj +<< +/C /A4 +/K 978 +/P 804 0 R +/Pg 23 0 R +/S /Span +>> +endobj +552 0 obj +<< +/C /A4 +/K 979 +/P 804 0 R +/Pg 23 0 R +/S /Span +>> +endobj +553 0 obj +<< +/K 980 +/P 805 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +554 0 obj +<< +/C /A4 +/K 981 +/P 806 0 R +/Pg 23 0 R +/S /Span +>> +endobj +555 0 obj +<< +/C /A4 +/K 982 +/P 806 0 R +/Pg 23 0 R +/S /Span +>> +endobj +556 0 obj +<< +/K [983 984] +/P 807 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +557 0 obj +<< +/C /Pa3 +/K [985 558 0 R 987 988 559 0 R 990 991] +/P 169 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +558 0 obj +<< +/ActualText +/K 986 +/P 557 0 R +/Pg 23 0 R +/S /Span +>> +endobj +559 0 obj +<< +/ActualText +/K 989 +/P 557 0 R +/Pg 23 0 R +/S /Span +>> +endobj +560 0 obj +<< +/C /Pa3 +/K [992 561 0 R 994 995 996 562 0 R 998 999 1000 1001] +/P 169 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +561 0 obj +<< +/ActualText +/K 993 +/P 560 0 R +/Pg 23 0 R +/S /Span +>> +endobj +562 0 obj +<< +/ActualText +/K 997 +/P 560 0 R +/Pg 23 0 R +/S /Span +>> +endobj +563 0 obj +<< +/C /A4 +/K 1002 +/P 808 0 R +/Pg 23 0 R +/S /Span +>> +endobj +564 0 obj +<< +/C /A4 +/K 1003 +/P 808 0 R +/Pg 23 0 R +/S /Span +>> +endobj +565 0 obj +<< +/K 1004 +/P 809 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +566 0 obj +<< +/C /A4 +/K 1005 +/P 810 0 R +/Pg 23 0 R +/S /Span +>> +endobj +567 0 obj +<< +/C /A4 +/K 1006 +/P 810 0 R +/Pg 23 0 R +/S /Span +>> +endobj +568 0 obj +<< +/K 1007 +/P 811 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +569 0 obj +<< +/C /A4 +/K 1008 +/P 812 0 R +/Pg 23 0 R +/S /Span +>> +endobj +570 0 obj +<< +/C /A4 +/K 1009 +/P 812 0 R +/Pg 23 0 R +/S /Span +>> +endobj +571 0 obj +<< +/K [1010 1011] +/P 813 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +572 0 obj +<< +/C /A4 +/K 1012 +/P 814 0 R +/Pg 23 0 R +/S /Span +>> +endobj +573 0 obj +<< +/C /A4 +/K 1013 +/P 814 0 R +/Pg 23 0 R +/S /Span +>> +endobj +574 0 obj +<< +/K [1014 1015] +/P 815 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +575 0 obj +<< +/C /A4 +/K 1016 +/P 816 0 R +/Pg 24 0 R +/S /Span +>> +endobj +576 0 obj +<< +/C /A4 +/K 1017 +/P 816 0 R +/Pg 24 0 R +/S /Span +>> +endobj +577 0 obj +<< +/K [1018 1019 1020] +/P 817 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +578 0 obj +<< +/C /Pa10 +/K 1021 +/P 169 0 R +/Pg 24 0 R +/S /Zwischenhead_3 +>> +endobj +579 0 obj +<< +/C /Pa2 +/K [1022 1023 580 0 R 1025 1026 1027 1028 1029 1030 1031 1032 1033] +/P 169 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +580 0 obj +<< +/ActualText +/K 1024 +/P 579 0 R +/Pg 24 0 R +/S /Span +>> +endobj +581 0 obj +<< +/C /Pa3 +/K [1034 1035 1036 1037 582 0 R 1039 583 0 R 1041 1042 1043 1044 1045] +/P 169 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +582 0 obj +<< +/ActualText +/K 1038 +/P 581 0 R +/Pg 24 0 R +/S /Span +>> +endobj +583 0 obj +<< +/ActualText +/K 1040 +/P 581 0 R +/Pg 24 0 R +/S /Span +>> +endobj +584 0 obj +<< +/C /Pa3 +/K [1046 1047 1048 1049 1050 585 0 R 1052 1053 586 0 R 1055 1056 1057 1058 1059] +/P 169 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +585 0 obj +<< +/ActualText +/K 1051 +/P 584 0 R +/Pg 24 0 R +/S /Span +>> +endobj +586 0 obj +<< +/ActualText +/K 1054 +/P 584 0 R +/Pg 24 0 R +/S /Span +>> +endobj +587 0 obj +<< +/C /Pa3 +/K [1060 1061 1062 1063 588 0 R 1065 1066 1067 589 0 R 1069] +/P 169 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +588 0 obj +<< +/ActualText +/K 1064 +/P 587 0 R +/Pg 24 0 R +/S /Span +>> +endobj +589 0 obj +<< +/ActualText +/K 1068 +/P 587 0 R +/Pg 24 0 R +/S /Span +>> +endobj +590 0 obj +<< +/C /Pa12 +/K [1070 591 0 R 1072 1073 1074 1075] +/P 174 0 R +/Pg 24 0 R +/S /Einklinker-Text__rec +>> +endobj +591 0 obj +<< +/ActualText +/K 1071 +/P 590 0 R +/Pg 24 0 R +/S /Span +>> +endobj +592 0 obj +<< +/C /Pa3 +/K [1076 1077 1078 1079 1080 1081 1082 593 0 R 1084] +/P 169 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +593 0 obj +<< +/ActualText +/K 1083 +/P 592 0 R +/Pg 25 0 R +/S /Span +>> +endobj +594 0 obj +<< +/C /Pa10 +/K 1085 +/P 169 0 R +/Pg 25 0 R +/S /Zwischenhead_3 +>> +endobj +595 0 obj +<< +/C /Pa2 +/K [1086 596 0 R 1088 1089 1090 1091 1092 1093 1094 1095 1096 597 0 R 1098 1099 598 0 R 1101 +1102 1103 1104 1105 1106 1107] +/P 169 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +596 0 obj +<< +/ActualText +/K 1087 +/P 595 0 R +/Pg 25 0 R +/S /Span +>> +endobj +597 0 obj +<< +/ActualText +/K 1097 +/P 595 0 R +/Pg 25 0 R +/S /Span +>> +endobj +598 0 obj +<< +/ActualText +/K 1100 +/P 595 0 R +/Pg 25 0 R +/S /Span +>> +endobj +599 0 obj +<< +/C /Pa3 +/K [1108 1109 1110 1111 1112 1113 1114 1115] +/P 169 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +600 0 obj +<< +/C /Pa3 +/K [1116 601 0 R 1118 602 0 R 1120 603 0 R 1122 604 0 R 1124 1125 1126 1127 605 0 R 1129] +/P 169 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +601 0 obj +<< +/ActualText +/K 1117 +/P 600 0 R +/Pg 25 0 R +/S /Span +>> +endobj +602 0 obj +<< +/ActualText +/K 1119 +/P 600 0 R +/Pg 25 0 R +/S /Span +>> +endobj +603 0 obj +<< +/ActualText +/K 1121 +/P 600 0 R +/Pg 25 0 R +/S /Span +>> +endobj +604 0 obj +<< +/ActualText +/K 1123 +/P 600 0 R +/Pg 25 0 R +/S /Span +>> +endobj +605 0 obj +<< +/ActualText +/K 1128 +/P 600 0 R +/Pg 25 0 R +/S /Span +>> +endobj +606 0 obj +<< +/C /Pa3 +/K [1130 607 0 R 1132 1133 1134 << +/MCID 1144 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1145 +/Pg 26 0 R +/Type /MCR +>> 611 0 R << +/MCID 1147 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1148 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1149 +/Pg 26 0 R +/Type /MCR +>>] +/P 169 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +607 0 obj +<< +/ActualText +/K 1131 +/P 606 0 R +/Pg 25 0 R +/S /Span +>> +endobj +608 0 obj +<< +/C /Pa12 +/K [1135 609 0 R 1137 1138 610 0 R 1140 1141 1142 1143] +/P 175 0 R +/Pg 25 0 R +/S /Einklinker-Text__rec +>> +endobj +609 0 obj +<< +/ActualText +/K 1136 +/P 608 0 R +/Pg 25 0 R +/S /Span +>> +endobj +610 0 obj +<< +/ActualText +/K 1139 +/P 608 0 R +/Pg 25 0 R +/S /Span +>> +endobj +611 0 obj +<< +/ActualText +/K 1146 +/P 606 0 R +/Pg 26 0 R +/S /Span +>> +endobj +612 0 obj +<< +/C /Pa3 +/K [1150 1151] +/P 169 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +613 0 obj +<< +/C /Pa9 +/K 1152 +/P 169 0 R +/Pg 26 0 R +/S /Zwischenhead_2 +>> +endobj +614 0 obj +<< +/C /Pa2 +/K [1153 1154 1155 1156 1157 1158] +/P 169 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +615 0 obj +<< +/C /Pa3 +/K [1159 1160 1161 1162 1163 1164 1165 1166 1167] +/P 169 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +616 0 obj +<< +/C /Pa2 +/K [1168 1169 1170 1171 1172 1173 1174] +/P 169 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +617 0 obj +<< +/C /Pa9 +/K 1175 +/P 169 0 R +/Pg 26 0 R +/S /Zwischenhead_2 +>> +endobj +618 0 obj +<< +/C /Pa2 +/K [1176 1177 1178] +/P 169 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +619 0 obj +<< +/C /A4 +/K 1179 +/P 818 0 R +/Pg 26 0 R +/S /Span +>> +endobj +620 0 obj +<< +/C /A4 +/K 1180 +/P 818 0 R +/Pg 26 0 R +/S /Span +>> +endobj +621 0 obj +<< +/K [1181 622 0 R 1183] +/P 819 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +622 0 obj +<< +/ActualText +/K 1182 +/P 621 0 R +/Pg 26 0 R +/S /Span +>> +endobj +623 0 obj +<< +/C /A4 +/K 1184 +/P 820 0 R +/Pg 26 0 R +/S /Span +>> +endobj +624 0 obj +<< +/C /A4 +/K 1185 +/P 820 0 R +/Pg 26 0 R +/S /Span +>> +endobj +625 0 obj +<< +/K [1186 626 0 R 1188] +/P 821 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +626 0 obj +<< +/ActualText +/K 1187 +/P 625 0 R +/Pg 26 0 R +/S /Span +>> +endobj +627 0 obj +<< +/C /A4 +/K 1189 +/P 822 0 R +/Pg 26 0 R +/S /Span +>> +endobj +628 0 obj +<< +/C /A4 +/K 1190 +/P 822 0 R +/Pg 26 0 R +/S /Span +>> +endobj +629 0 obj +<< +/K [1191 1192 1193] +/P 823 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +630 0 obj +<< +/C /A4 +/K 1194 +/P 824 0 R +/Pg 27 0 R +/S /Span +>> +endobj +631 0 obj +<< +/C /A4 +/K 1195 +/P 824 0 R +/Pg 27 0 R +/S /Span +>> +endobj +632 0 obj +<< +/K [1196 1197] +/P 825 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +633 0 obj +<< +/C /A4 +/K 1198 +/P 826 0 R +/Pg 27 0 R +/S /Span +>> +endobj +634 0 obj +<< +/C /A4 +/K 1199 +/P 826 0 R +/Pg 27 0 R +/S /Span +>> +endobj +635 0 obj +<< +/K [1200 1201] +/P 827 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +636 0 obj +<< +/C /A4 +/K 1202 +/P 828 0 R +/Pg 27 0 R +/S /Span +>> +endobj +637 0 obj +<< +/C /A4 +/K 1203 +/P 828 0 R +/Pg 27 0 R +/S /Span +>> +endobj +638 0 obj +<< +/K [1204 1205 1206 639 0 R 1208 1209] +/P 829 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +639 0 obj +<< +/ActualText +/K 1207 +/P 638 0 R +/Pg 27 0 R +/S /Span +>> +endobj +640 0 obj +<< +/C /A4 +/K 1210 +/P 830 0 R +/Pg 27 0 R +/S /Span +>> +endobj +641 0 obj +<< +/C /A4 +/K 1211 +/P 830 0 R +/Pg 27 0 R +/S /Span +>> +endobj +642 0 obj +<< +/K [1212 1213 1214] +/P 831 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +643 0 obj +<< +/C /A4 +/K 1215 +/P 832 0 R +/Pg 27 0 R +/S /Span +>> +endobj +644 0 obj +<< +/C /A4 +/K 1216 +/P 832 0 R +/Pg 27 0 R +/S /Span +>> +endobj +645 0 obj +<< +/K [1217 1218 1219 1220] +/P 833 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +646 0 obj +<< +/C /A4 +/K 1221 +/P 834 0 R +/Pg 27 0 R +/S /Span +>> +endobj +647 0 obj +<< +/C /A4 +/K 1222 +/P 834 0 R +/Pg 27 0 R +/S /Span +>> +endobj +648 0 obj +<< +/K [1223 1224 1225] +/P 835 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +649 0 obj +<< +/C /A4 +/K 1226 +/P 836 0 R +/Pg 27 0 R +/S /Span +>> +endobj +650 0 obj +<< +/C /A4 +/K 1227 +/P 836 0 R +/Pg 27 0 R +/S /Span +>> +endobj +651 0 obj +<< +/K [1228 652 0 R 1230 1231 1232 1233] +/P 837 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +652 0 obj +<< +/ActualText +/K 1229 +/P 651 0 R +/Pg 27 0 R +/S /Span +>> +endobj +653 0 obj +<< +/C /Pa9 +/K 1234 +/P 169 0 R +/Pg 27 0 R +/S /Zwischenhead_2 +>> +endobj +654 0 obj +<< +/C /Pa2 +/K 1235 +/P 169 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +655 0 obj +<< +/C /Pa2 +/K 1236 +/P 169 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +656 0 obj +<< +/C /Pa2 +/K 1237 +/P 169 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +657 0 obj +<< +/C /Pa2 +/K 1238 +/P 169 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +658 0 obj +<< +/C /Pa2 +/K 1239 +/P 169 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +659 0 obj +<< +/C /Pa2 +/K 1240 +/P 169 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +660 0 obj +<< +/Filter /FlateDecode +/Length 10239 +/Length1 16207 +>> +stream +H‰œVkTT×þö}Ì0ƒ(à ¹ÃÌ0¼‘ñ ø@^"ƒ/†—  (>ð£ø¨˜ÄD[k­Q’›V›\©M¨ÕDbccÄÆ4¦icÚµZ›µŒMš¶F‘µ+z÷Ü9çìs÷>ç;çûî¹ #ðD”Ϊp¤ŽLÎNaÏU¾«êÛ<ÛŽ~|  T@N¯_µBÙÔ¸á kbßú¦ŽEm‚é  ÿ”Û.j]ÓôzY?k8 Ä–67zêþ8ý!#sbVvΤÜÉyÎtuB~AáÔ¢âiÓgÌ,™UZV^Q9»jNµ»fî¼ùiŸÏÍÔûÍ¡ãKÝÕ5µÿôÔÝ°xI[ëÒ›Y9Ù“Ô/ + ’ó4%L™³¬ù«¼E0ÌÀ_[NßìZŠQ—?4¯p{šÿ‘»º8KE¢-">,Ü…Ô`¡RÎ4ùR”ƒ9*&ãJfÍD }9'˜êÍ"I¼ȆÂiÆ`žÂ0‰d¢xJ¡ +òP uÑnz–4áœpUEƒhÕ¨[J²’¢d+G-ÑÑ7“‡‡½{‰'ð Lã9¶œj©ÙÛK/ûbá‹uFõ*#96ë~¬Îûÿ^Ù¸Ã#ž£·è<]`»H—è=Ÿ½OøìªÏ>v Ø.Þ31šY A†zfFø#€5ˆ ÄŒd¦ŒÂh„!¼2fDb,¢ðã´ VŒC ó5ã$Â;’à@2RŠ4¤c2X‘ÅóÌÁ$äb2ò˜£S Â…| 7¡Ř†é˜™(Á,”¢ å¨@%f£ +sP 7j0ó0 °µð õh@–a9:ùM° ›Ñ-ØŠmØŽoaz°óŽ<‰]¼§Oc7öàÛøöâ»Ø‡ïa?¾xq½xÏáyÆ 8‚àEü?ÂQÃñ^††ãèÃOp?Å+xýøNâç8…Óx ¯ã ðÎâxçðK¼…·qïàÞÅE â~…÷pïã×øWð!~ƒßâ#~c}Œßá÷ø×ð)¾Âßð9nP4eDí؈6l Å1¶&æýM|‰/°ëèQÚÀöm¤­´™6Ñ’ $â.Í¥*šGsh>UÓrÓBª¡2šÁlœÉl.¡JšE³©”‚ÈH#ÈÉ@ÌÔ&fú"ªcÆÖ3ãÈB‘d¥(Š P +£j§ÅÔAKhµÒrj£NZJ¹4‘&SåQ69)‡¦Ð$²3÷)–¦’JEä¢bʧiT@Ó©ÒÉA™”J(™2(k°–YèµX‰F.Wa5qÙ‚Åèºß×Ìü|ØZÙ¿âÖc?õÐ&ü‰ÖÐ +ÚI›ñgZK+éqêÆuZG«è ^-´žVûl þÂköÀºþöâ3ŸÇû<߬«"˜™ZŽÖ¡SCÃWømxD»åcò |™©—gðÞ¿wy¯û™%/1{žcF`®íbîídngNv3?7bÖ1æÕŒµ“yÛλ»˜Ñ51ë˜Ó ˜ß5Ìõ*æ}9k „õ0µQÈ:QY5¹¬ LVT«ËÁŠ‹cZü Ô-–oÈ{å鎔/©’Ÿ¤“ â qP|[ì÷‹[Å âJ±SLb¼pW¸& ‡…ƒÂFažP#”ª#d Á*è‰Þ¡:LùÔÙG{i³«“j}8?b{‘žeΟbþ÷³N°.¼¸±^^dô‡ÿÖÖ>ÖÙVÝëpoà÷¢öb.÷¡-bœ^|Xœ£G…Ž 1Žð7üô:Y‚­•áRzêz¬jS•ÝÖ—¸*»4$V‡e¹}Å$_¡Ü¹‚rÙm‰üÓ„»íÞÕi°ªÇIŒQ•B¥ÙÓ ‰1\*šä²z”†ãNgOeµ…¯ã°DºK«½)F)lÖô1 eÕ³&»&ºÍžwEµÕa½evX¯ó؉ߜÝÓðOÊ1jÞõÿ λås™B²ì¶†Í'³KñN²§@]ž–ÚüZÕn+P4Ѫö‘ »V¹¬®+wh’U ×ü½X9[xA‹æô(¾ykSÌ\÷VµB³Vävk²UådU[4Áªj áv›RÐœo·ä#A>£ò$úL2¼¥¢ÄÕª‘G-äsVVkÎZ·w<»»\&O7v[’Ýö¦Ý–§…&Ø!x¿7d6V°ÑNs™ ƒN*ã#H/H§Eî:­'èC˜˜‚Äd‹ÉbŠã›ø¸²ÜQe܆Ezí¶Ê+`¥~æð Næ Ž’8Š¤e²™ô÷ƒÉ—i Ô¡ÏŒ™‚ÙHýþ;ŒÞ¯šÃ§ÕÌh„;Mºïà$m3ˆ:â~hXtì„ôŒ´T&¢î®£°Ð‘\\d,r$Mu8Š¼9ú†¤8yq„:6Á;²ì ÏKJ6ðëSŠÒ­¾–oåêÎz¿®r†¯ˆýr7Ÿ²cauF©º€q]íAMÝY8¿ß}å&‘$—Ü„@È‹¼ ¹` „‡ˆ€Ö®v‹QAQDA” +j•¡‚qñ¹àú袲è2[WÛ±3uvœín­]ã´nµÝθәîvw§]g•ëž›Dÿh†×M†™óï;ßwŽL®/ƒ?¢L•QG’ Ÿž(‚ÊÄZ g X0¯Ã4a£1¯áò!.˜3Ñ·_ܽÒÚŽ¯Ê-¾ýÛ­Û½'7u9sºÝ,¸m8ò¥ú³ÿ½.Ž?£šÎ‹?\ßON!æOQþ;PϳÇD-5«$Õ$KVc%Ë*Ž©)R9Å9/Ùå ZAŸŽx¶Û’BB(¨Í·SƒIHù'SZzMkóšÒ²–ÖŽšôT½øˆÜ\[¿Vñ¤t©ÁHÒ{EhÒ¨…ø¦d«ÔE+Tq:’+› @YY-bMÉ*$Ï…ÄVƒ“% 7¹nìdys’Œàœv+1’Bj(䕪ƒ—O€ +æKeÑjd/Bð&µ ŠDGH y!Q´Õ¿»×9o]q[·9-¬HRîüjãé5¾‚–5âДöËã$Ù:ÖÒÒRðQ“u^{´®h}MÎüÕ ¥;jGæ®X¼dtß±KNÓEK A„´W§¯…_V° r—×é)˜ÍEÈF¨°Ü©^æJ×ÑJ™«fCvØĹaešŒbÑ1&›¤q^ P¶/9ñ:†ÔêhÒnËteº æ&˜Ì‹ÇL鉩 ÷Þÿ…'ÅFò…gÍ<Ó‡΄{^óTä'-¹êíG~ÑRs‚sOÅÁšá†ßœñˆ?ö<Îà'øÃû?~kyÿ½AÕ†Éóí-{—:A¯$°ógЈ6½ŠhD ”°6`ä”ËÒi3JC\¹ŽUAŽ4Ö±<©rštJLql0>"—¥QÈ•Rl$‘` ( ð™Ð% ’…Š*ÂA#üŽÌ|eÀåGêCUÑÆ€oõË„*]û*våySH±uz‰K‚¢aæ{ñ=ÊŽ•ë Ð l€¼t%eÈŒoÌ™4`æ0”UFKlœ–°èYOöæà|”»T¹!dÉ ”\ôª9.§M‹(.?ÏïõP‡i„¸Ü|ˆH°“„Ì$.bŒs#Íg‚ € +âc2ɽÝÛý~kãô§íþ>§½Äß`-ï8µ¸f´ñ¥ Q7Á’Š¹7ëênF$©ÿN~..m^y±§ã“ñ¥©†¶ Ó¤gö²·7´M,›[¢ò¢ü×ÿP¥ †P„RM!…ä-¥€Tš$ Ì’?š¥An>¤]åqsaV¶ƒU¢C©ÙˆÒ ¥¡ql‚À®ÀilÌçd‚O"˜"âùI¦Ã}\l™è?›½Î•ÞªÙssôUu΂êeŸ÷×ûçïœZX=bÒôxó‚íîÚ±km÷`'“…ìǶs_Û +sS +Ö¨m¹ÜW‰ÿûrInãéÝ©;Ö ¹@èì1Ôîù¢®”dÌÃÞI¦r*£‘ +G6±¼9’$ƒn4r…2ãé‘f?$XA<Òàc‰—µ:a"1óèÇ®õ3÷ý><©Æ–ôI'bŠƒÙ¢³ò/C§#ì|͇Ê;=ËS}o…O¡`ˆÈLƒ8,^;—”Yèò»P© .AV-œm1ëåTÀÁÊà€’;ÊÔ±~[ÌØdÇ•Y2JŽ&HIëѯ‚F }Êš yWo¼¤¦¸”ÿe·y@G!!ö3”ìJB±ÞKâÊ$ ÏÇÞÃܪ³M š>µ÷þ®ÍW6œìÝÚµéÚ¹‰kN -Þ½`ÇÍMW«;Þl§úJû›*zjóJÆ÷íü¬§n²sçGþªƒk»Î¿öô‹ªÈdçðIJ‘êUÈ-´OVmŽö¶/ê–ô䤓€Ô7Þì¨ÃZž 𔕪á2–Aõâr¨³âÉÉé +óKŒñ%KŽ£°Ç }X±ûÞ™zrIJ&gÛT]×Ýþß/ùuGw Ú}Àm×Xz~ÿußÖˆ«{þºKüìÉ]qL|ˆÛ—îéØ÷ÄÝ‘ªLö˜VQcpoehV$ß(mAw¦M£¢X–—©‚ùy¶ ³1…ç´ÊWØìÄ K•‚zX8q ?± (Ò‹¬L¬ÌDÚѱ÷¥˜à2"ÊÑ¿©NçHWv˜SWµÒáËi˜¹8GïÏ.¨)]ÈÎW; +9Ô6¯Î,~‡iQ¤ÆžlQ®°Ú2¤ $c9ˆy.uÝ?ó† f=‹GR²/!›ˆŒß^üt7J³‘ûìsªžº Ë’y¢.^†ÓË¡´°"2 9ò’l +Ž“an ƒ…$;áSNFŠG¦4×BÈ« x‘pAf$Át[°dPT}áñQÓ%ñÖ½­}Û:‘wºïi+º|Éê=û¿äó@²$Ki©PŒ”šd$Ë¥Ž{v½Ìÿͤ„L/Cgùo¢^?zð5é33:ýÕù©˜}—ÀÌ]nž'Iµ&£^U]Œ„x½›7 %x&¥'È… §Pɨ}¼ÛB ð¶¨Ö±!¨—“Ë>Ðq¤iÖÿ²”scx@?H³–qo=ü®G6ÐÕ8iN°Ï“‡ÿ¤á]ŽÞ¥;íê˜Hßá2o][í®íݽ¢“ײäêt=£Q¦zë‹Dƒ‘%ÑÞ”Ró/úÄsA~&Â0d*E_à±æX¶OMhœZ+siºs‡Ù »¦esnóÞÀ›ˆRmÉ +"~ÞE…$’°¼Ü °ÀïV£nçH«°°tðË«(Ö;GGªs‰ âÿìa4–Mˆ=9‡ztñôúæ½ç¬ñóCãÛÛüäéxƒ.‘êùÊÅ×6±ö©;2ü¢ÉÌf–!Ööm=+¿7Ü(´ë;-<žEÉö"ÊÔ‚d ˜VL(P‘dzÍ$Äë¬,“¾œ ‘ƒåI=W+#ÆÄVUâü³tKR±Lý“AaQŽdÌ eŒªX.ï=2Á¼èìIðwvz&;ÿxí/gà×öÞòÊ2‹Åâ/Sûõé}]‰0Ü°ùÕÞ±eóÞÀNS–zPp.ï¼mýòt@6Ë·±¶þmi´åºSÏî +ãgî2ªN”Š'Ã5Ðr;y]¶Ž°×0ÏF Ä)ðŠLèœÀZÌ%ô„à‡9¾¥»°#rgÖ%o(’I¶| ÔÐ\ÆRR”\uˆkزˆk¨¥íÈòòŽk?ÿâ­ô§“ϼÓÄsjÙíWŸ]wåò©z¿ý÷—6í31‘¼2£¡edU´§Á#ÆÞ|ó‹–ø·ÖH®]tlÍþa¦gtÃñû+ňÎs}P¡¤[&`‚ @ ¼ÇED^¯ôш8á‡Êh= Á\iEE:­™RˆÇÆ ²"„ª§„Ó*íñÃô<}Ãk§åIN¼p!îàÅ Á‚„œ¶ùÒïË5š–§_?pL’'ÜÙ§¶u›œ§{N-§ñyåêiÑܽmúÔó}:3›©šù{x¨@Ò +Á&XŸ'·S”s Pò¥ &ÞœrJ¿’'Q)Š<(=تdvÑ âÿÆ4{` †µ©õ©AÑñ\ª¡ÌSžžt%LýÎÎôî²ÚöÞ‘@`ï–F–›úý×TÍÌiKC÷ôéçW¹AÿpÉœâ0Ž‚ìÉeÀlÕ„n^á2­màÃBPð# Fey¿×í²YMÆB½¢;¢D -bH$<ˆ‚“Ùq²èGdk‘6¤jb!œ5ìbá‡0!R‚?#"so†JOVú9«üŸÊ ³véK^ïÞž¥Q~“™Ž­55r¶R40 ¸¢] 7ˆŽõ©ÆUú—‚V-ïW‰EQ#W¦‡÷tY”3æzçt¦ØSZ>=HvÙ“%;|ÓûéÏD#›ûž‹N½íjX`on<šéW÷èŸÓ?£¼Tµ8Ùä÷ y€I>Æ+€©,P0r; $æy5î›ÍLŠ1}„øb°ßNNj¡d<äƽ‹çö/& 'za8q +3Ýòag‰É8\C©€šË\]öž¢pëæ®o4×è8Sqt`hÛž£qçë´…m6»=\ž—6´< É-ÜêKy*–7Ù‰Û±kD],¯O(÷5-ì|ëÕôê²Rš™˜K?Pïx¹1ý9(~ÝPMx‘Û_YL‘™Ogî1*ö#ʆY;•Œ+IÀÉØ9Ä®£Ž8ƒzž–°+ ñ /Å+aLá¶Ê +‰M¯£'¨’|Ž„s¦›àPL’’lù)©48e(8 P‡Å +ˆDcZu¦‘Œ½p„˜×á–¡ï/«Hùoy¯xv‰ƒ³\gÙòáær[Ãæ®Ê££‹¶·±ï}Y»É¼>Ü||§mÜ¢loÏ׉æ¿ÒïV¸kÌþéséÖ²ŽÐš“«Æn¶¬”65‚§vR¾¤¨©x‡•pA»äZP ¼ +Ñ9tDóͼR ÚîÙ -)'y0RÉÄhÇÑÁšEÛJGͺ'ªê_ÐW(Ï­ÛöÛÝëÚ?µiÙþAeÙ¹³ÐSjîØ»úù‹[Â6£¥QWõÜ'cû~®qW¦b{¥Æ“BN#Nª–Z”LÚÀæ)ðExJ#(:ì-ÍÌ AGT¼^®´Tò*0pÄ F9™à¡ˆ«´`â¬Èíg/¼hžáÃÛÇŒH +µjÉõîÏ Z½ïþöf­BˆöU×:qöBåŠÏ +>º»©ëG‹LJZW¬þÎxÛ+ÏÄŸ–iéÝ0œa@=¥í5Ó¹,sý=5Èî|ý–g•Ó–A®KÅØ+?]suËÂ:çã D.ñ3ü((µ0÷Åš@c ¼¨–<„¯‚fV\)*mÈÍxAFó¦R}L)Ö£%‡i—/0»|žJ°qz)‹†EôôzÄjÕÍz?²Hr6cÜð‰õ'·n®n¸ð;öܯҿñõZè~ÌWâæ7Ž'&>°µøÛ¢[é—Î\ßwŸlùð|m©é‰ñ£·D¿  æÛúñèê‰A[­¡ç-€iú{½­9YÀ(pk(`ì~%‹bbG9OçU*29aJŠˆ–×+€h´ÀCy)qÀD¾ÍÌAP•BäO/“zZ¤C6_2¨ñ¯„%ÒÆ‘k†x{2Q‚2­ÈôUõ»’IWU_TPŒŽjDó°cmÀó«-¸‰óŒîÿïEÚ•lK–uÖWÒÚZÉ’,É–dË7É #+Ž F56&LÀMCˆc‡¹àR’T%µI“”Ð2ʤ}H;¤ O “¡)ÉtÚÒ‡>tÚÌÐ>dh†aè·+É.©4ž]i滜s¾sè‹'KZÏÎœWîÎ~TX–lLàr¬±Œân¥76ܽkX8âv$Ñ•½H†‡ˆ±1âÊm¨?ŽÙÖîG(ƒÈ"ãTãî.1å|?¢x¢RA(hÊΨ!±a´`èÕÐA„3d|9ìøGe5ZƆ2Ä,¦»ôp»°EA¶iÒºD9Â7佩´¾(rH!É·4åK­Éæ)À˜,úW…Äb%~dìy''=eU–ÎMÝhíþ§ú_Ý?wyoäƒ#üɺ'†bgbñÃ>$(ss©Á­Sm;º7ï»2}v|îôþ4Ÿj=C2 ^ôðõÊÜfi°žœH<з~~ô‰†‰šG¼® +‡æ&~5Yçs{XsîfòðÃ/Omœí˜»­LœQ’‘ñÖç^•”I .è à|;$Ë +Õ:¥{ƒ¨æ ßZE›$Ž×{T¤•ÓŸÑZ5´Õ¡ƒ•¸napt‰æR¾)²\V^«­‚ŠÌnÉÞA¿ÎK,u¾¶¥8UxÈÞkpˆÆ„µujmÛ¾‡FiÿvG'ÀÈŸ]¥jó<Ïö¬6ärO­DŽδµÖåîÁpÝ ÜpÓMO¸‰º˜Í`u ¢ÊTRzá9A]Àje8>oÞs¬0ô«©z“²ŸÏßRô‚¤W+a_ZÞÒŸ:×Ùã숊ŽŽvòìù^È£+ÛM†e íëpŠí1 +ª|ç|ö"¦_ LD-áŽÙÌ:^MÀ†8¥‰S(”¨\@U ¤…zEÙ¡F%‡ +K] 1-îG”‹Ì_F%ZC‡G̼XÕ›ªù¶¾Ÿ.xq¯%ÄÇÉoÛæ>íì`üN÷µcøìo‹¦ço '·,Þ¸„ ü<¿ ,„5f* 2@Eñ…!®„ȽÃü2»G·´ê%I_±MDØîÜbn€.LéXª”ÅîE r;u\L)½q¨£%, +J$Ž 6`ÑŸJvŨ8‡YرIÔÐa- Êøãzf  ï0˜EÀMNBÝu«À-i·^>»²›ÂwaYt<á¡oƒÿç|kêB»n>2÷ÙàbÛLtWÒ $˜¨kE`ë–<`0bgq0u;¤§êð°gÒë¬ò…J¸«è +ì@Äž?üøµ ç‘Ù ¹Ñ¥c(³c:srŒ¢=ñÙĈSÔ +˜u®J„‡3R…Úœ®æÜÔè+SÑÀ +g§IÐVÖ‡2Î& ­@VT¥Á0kd½è\Ö‹ÿC(£þ[TÌÚøÝšPªi“8ö`ÁïÛs‘u0°J !»ô?Qè^KX !VUÞÃÂÕYÓCÀ™ÁÔ|©… çõ48»Œv·Ÿ¶Ó,à¤lš|$çÀ©‰ŸÍEŸý÷»[~ñüÚWo¼xâ%aÃáôÁ#Þt­;ôËm ×%ž?7þÖ7/“§ÿîȹ77_[<ô÷—¤:4ÙKÔ4Ôá':‰d¬‡!q[’B D¸6AÛ¨B¡ÀAU¢ +½Š³•`£Š ×+Œ˜Pƒ{˜C•$áÝÅ•ÔÃRt«PT‰2Ò&Þga:­tä +2¿]ZéÖû?yòÙ¦¯‚›~T©Âcþ©Z¼[Â*îló±ôేO-$v'tªÜ Š)nᓧ>~f,[sÂÌíOW®ÞW%åÉMÄ";3ýÖ%ÿÚ]Ar0z"ósH_‚ IMZ˜®Zlcõ:NÅéø…JTWìœFþ¼Xæé}îŒ +AJ÷£ë—9/§¦k6{£|¹Û3žØéúv­Ûܱ,\ËÈúâÛeüfìàXî•L,jX;¸Otà#ºb‘šJ +Ñ< —ï1€õô":æ–×Y£Q‘J[¹ÆD¾-*íEˆÀïÙt4ƒÅÐç×5J.E™XOŠrTb‚Bw/ùH ‡‡ÚßÛ>y´Ñgé^?Á§Ò×ÞæCµ|Ëåû~wæÀö½>_Ê¢Ú¡‘‘ƒ ½j¥FW¥²îùññ`ÿ‚¯?}º«OÏï}òñ…Á@ó!I!¼wþ‰ç©›D%Ñ ¡c/5‰I_ ¡`ôHç0ËQGi(Áå,RƒeÆJ +g4•°‹Ô„ŒBÙOŠp'ÉsÚ䜮@º¼øŽrªÇd@¦òÜ­@4ÔS¹Õ´ç3²Té^wlS¯Ík|ÿ¹õêéì¿Ö%Dûnó_¤ªj!ל–½cw¬Y‹(§³‚Lñì‡9;çCZU Æ2ìEa¸þZ#-I\F0Ãx›WËUˆ‡¤²€êËB[Q Å2ª(äjÈÞ§wˆ†¾å+›Žn› « ²/Œ§c3ýPÝí ¾÷ÐdË£¡]Ïž™jêûn à%+ó×T’< ŽÆ³™D®†³qZ®PO³6Þb2êuåÊMNVÑÑäÿêýˆ„T|(”]zØS…Q'…²PpåS†|ûk}CÉc¹Ÿ”¬1%’3N×Þä¶Æòãü°Š[­CøÙë¾ã<± +ˆŠ`ŠÂŠtVú²üqýŸÇB!réa¾ræiØM+ÑsG¬4© põœ›«ey¶BîsÍàR5Gc‚Ò»¡‡ö•=D£`Óu(¹I·ºdh,ÅОô@®jRróð“0NÝö•z¯Tl/M&º³Ùí + Í®×,Ö†ê±ÜW|«æòøÕÚgKjÖY7›L9ʳZ/šÃ ßÓÙóŸ6¡jGu÷rOƒ[r—â›ß؈/víwä\øÂlrù¥¹ªÂœýܾúvݹEÞ„¾]DCÌ!”©YL³úZÎÊU€/q9j»µÚb6‘„zœÖ“4r[v××ûYT £pˆ¤Ô§† ©EÜ/A qàä«®k¬ +k* ½VmÍ_OðCÊ ‚­ +þ«i±¸¹ÿ¤«s?·4è°2·Ý­1Gá’ðÿØ/›Ð¨®(ŽÿßǼ™ÄÉGcšÓdŒc Óq4cLBŒ©qˆRÒ†hÇTDM[Ó(F[cL!¸°Eüh]”Ò,DJ ’†!H±¥ÌB\T¤B6-¡¥`K¶ˆ3ýŸû^â8 *¸è&~œs¿Ï=ç¼wßÕÚ®O{ë}Z¶§h©aÖvVÿ©u7ÓòuCÖ6¯(/ÅtÄŠÝ9Ù¼Qf×Ó’€¿¼tqIžÛe o{®„¬1=d/WWÎŽ”¦.Yõ5¬zEçŪʘ”Eúî{ÞXmó[K*vE*7¯Ú]¹ùЖ55áÒÂÈÂú-u¾Uþè­¢ÕþeíïWÚÛ[~úJù +ª=3Qx÷xrÖýM¾³eæë{[v}§/ª[ñ(J5ËVLr§òí@¢ÿêÊ]yëþáAæ39üð’'˜U@ÕâÉìŒpÝ|8 +dUMO÷UmÚ£}i¥UéBFôûØgÒd%µЩÅqTcDŒ2DÌ ô°Ë~ÊS,_dÿF2H*ˆ˜¤”DÈv™Øÿ„Œå˜~™‡¼iœA§ëÂ\ËgÞA­k !+ŒõÙG½”Œ"¤_$ñÔmþã«6÷'¨°Fà·ZYgJW'õ„ÍßQÉùJ\ß#ŸþÊwÅPF +ˆvsÝÊÊÙ{ë•­½©Û´§–ó¿jŒ£–õ«hCÄ…Wߊ v+uå èî|îƒõæN¶ß@¾9È1·Ñ¤Ÿ£7Qi‡×cŸ +8®Ä´ý6`Nè5”Ûe}eÓ1|Är1c{Hí¾E¹I¶¬*$eoúN¸“Ê^Öj±©1ÊZŽÝ!ÈXń敹<öþL÷8:”mo}ŽˆÞ† Ø#~1Å*‰?ËGI‰¯l±“RüàgŒŠ)Ã,w;±ëqê„S*/º¹V7t–¿ý»,D%GX¾ÊúõF Çr¼%ùÅ<$þû¹pŸIÝ•|P¹†Ê…4˜/eÓ¹ íŠ[q®Ç|HGí{œ±ëcŒí<…•&ÉÉ…t軀øOoKÝ'I•Ó¹‰øª¹"ùŽäà Ž¥Ô·¦îÐOglXæÏŒýGzÉÒÆö÷TŒÅÿÌMÙ¯Ìmu0¯nÚ¹®ìmPïž’b§ò—ôkUy5{sø£ÿþ/?Ã@òånÊó”½ä:õ+”Ç(ïSCvýÔz–¿%›x~üA¹2Aɶäêl}r‚ýãÔ([Yþ62^É붜¼ë0ìÈ„-“—3HØr2陾™~ZŸ^pM äyw’_¦\ò#À¿˜xBvòÀ,$\ÛͳÒÓþd²ª~yD6í\²ñ¶Í&'f“»Î&/Êãh%ùÛæú¶ ñl,$…g›¢µ@q6¡ %k€ÅËÉO> +stream +H‰ÄV{PÓWþîï‘Ä/˜ €¢@Hߨˆ +h-áÍ*…*Ö¶h­Åb­­¶Ö·T­µjõZ«V­hu«­µÚݺíîÎNg·;ãÎìÎN§³³j7ìItÚîZ÷ß½Éͽ÷Ü{Ïùι_î¹`F`%x̘>+Ó¥Íï"É猪յú;JŒG J11 “1S1 e˜Ž˜‰rÌBfcæ¢U¨Æ<ÌÇcX€ÇQ?jq ÝXŽ'±OáiÁ5|Šëø 7pŸãWø5¾À",}ä¿äèÂ2¢Ïb,y iEê¨mG¨mBó«FCËC’…xx‰zÿoÏeÄ6 1Ä‹Ù´€søôoÎãç W„oÅhq—Æ,LÍÂp_ã÷ø’öÜ }—ÈƲ|œP ¤ý„~ æ:á^:õbÂ2ò°¢×HüX@œ™C<*#n•’­b¡›šF¬5Ëu²!q—˜"F ¾$aŸ°IØ ¬œB¼ à/ò'øA~¿†_ÅWòѼšã9.À q½Üj®‡ë䪹4Nî³KìÛÏv±¦ bf2º¯„üø·ñÍO<¸ö$òáG~ÄÿSäe„Ù ³'*Ò ×i5êªð0¥B.žc°ß}¦¾Ú>‹·qŽÃ>HÙÄWÑ-!½2zLU¨j¤0[•Ä|šÿ9ìéô•8›Ã~ÿ‡ÕJ°xŸì5•ššýõŸL­I|¿©~Àã髨4S€9®jFe°#$›J›%yr‰_ÂÌJ³Q}£«ŒþúªY•–LËc¦å6ÙN´vý#WŠÉÞ¢Ûm.ºiuÑcö!r›rÏÙW"ñ>KÍø¯Ã^b’x‹wq¢o©Ïâë³Ð„$X¼1RxÐWÒSÒ"yü¦n©ØHý`W*5J«ª$Ñâ%Ìâm‘8‹WRÙbvSIóx‡ý4]Žâðy/ÔŠ¶&ÓÇ÷y-ó{K)`žŠJÉSS´ç°Ó”Oë#¸N8ìû%‡½H2Øà‚N &Ržî`‹'Ž+–© Šé6–sÂfžæ6Ëdœ2‚Ow"=ˬ5kS¨2º¹Íß{EJâfáÜ=o0šCÄDŽöê=árÖ¢à ²ðÐÆŒŒ,½<¥ååæEsýuq%S ­Ï)zß$^øÓºp[|àû †ÞáïØzâ® +1-¯W +&´Q&™ú€¼œÜlñQfI´Z{Ëî²2÷¨BëŠÌ +ê—[‹(OWÿ¯ŽSæ làIV²¨<¹Š)LyšWJf5*»UVˆ1l¹‘=—AºCÊõ„°ËvEGé" ™ÈàÜL¦5=]tT¶+7/·€åd°«µZÈ®0W×g™¼‡ê<§tlœ6’=}XÐ[SçÚ‹4i‚:Bçã&ýg•%+Z‘¸úõáÀŸÏÖî»Ð•ˆ­ºü°·ÃóëìÖywœµÏoðL¨úï¦gÆQM™.ÑcŒÒ«Ã&×CÁt#cíz…AdqA´E¶¬lw#HnmNŠ%QFÑåò´† ÆÈv™Q“šŸ¦ˆlãå_íœÙ®ŠË9™¯’»ëÆrÅÂâ +罋ëd\Ùý'¿Š¢EÒãL5¨•‚*]ÅTq13ãXz\®RKqËaL™JO$‹-MkD–DB%Ë™í.äÝ9)Ì’(Wór *Û•À¢)pÁ±šÉ]>Šm^¶,2É’(”åÛÛ‘UžU”iL2¨e:Ù†w§ljŠ&GŽ³¥š:]š“cûScb5¢3>p·wt௵yÏ^©ž•“œ;Âæ*ŠÛþj[AÛƒ³³3qjAªÕÜéVF¸ÆÇþa›"ø4Dñ`¢ Q¦ÏðXÿÍu•Å8qŸq3ÿÏØc¯ÇöøØ]{mí]¯õ5öî_»¬agïƒlèB@\YÂrD% rd#Z¤ˆÐ’¦5¨RÕ„J jUúP¤Rµ}¨JúÐJ¼ä¥Ry(Þ~c/iUË3ã‘f¾ß÷»¬>SáùÔ#K6Âغ Ýœ%ï¡2p¬`fl‹Cd´·ol\Ɇ;Ã8Wg.ß<íLP¸ŒCáœ%Ðè‚c²z/%ÙÍøÓ8g5ÆõS£Ý]ý;Ü¡xd`>Ù-–ùW;|.K®è¡ÜÈ:q Îå¯M~6’jßx(¯ž¿·ï¬?õƒMOº„d¢<Ù·»=bâãóí¹ðÚ\Ð)[ˆq~â¥P|[þ[ý½s%Ëø¾ÒȵÓZ3U´V“&°ïLT†B¼²àóY’ n¶¢鸞WÇq—I1 +:^ʶF=­N+#al$e‘>êËzÈ56›HànýJºE0S@kSÀ¢”ÎÛY eËÚA©”„(µ¡œô~w¬s ½ûnÍT:{}fyÌ"ìTiÛí"œq—±uúæ—[ì[~8½ª1Ñw0×ÔeàÁpÄ%ÚëÏêÿzÈ´”Ì|·pk1í#*¡ÁäÕúnh{]Xy‚{ý;Q©I,M‘ã;Z©hÈM{<]"k‡8øzD†Õ—ÊãÒi‚)ʇô·3&`Ü’ŽŽ·Úé÷¢N†¥úWå‹Ï)ùÿÙ»Fg–¶ò¼ÆßÐêК÷ȬԠ8®ïZS†±©¤w⨕ÜWMmù9IŸ–÷CH÷§Ñè8wìMW®>}ëˆç·ÓÜükmÜÖÉ~ûúƒkAnñO÷·¥yÑ\±XÖÛù|W®znçÉ¿ÇÝÞXywèõš'b·Ú¬&ƒŽ3X醗9tÔ^‹h]µÇfŒ P.I¿0J<…Û3Y14•ÎÎœÊMÍfS'rS¥@fv†º4“MÏÍ¥3³ø<Ýv+yŒûs%’I¹u,´ÜBÛB~‘6ñéTÒßîv9%«¡f +ãã³Ç—£(È€—r"ŠøÕ¡WУ²=à×#xß\+Ѩ«•öÓÔ…ãÐÒÒô‰§%™ž¾õ»íÃ%a¡¾sÈïÉæŠÇ¿7”ʶ…Zj÷,^‚?#Ÿ¿!Ÿ™U;'ƒ^3S#¤f ¹ƒ_ßÝp:XJ;gíòFù£?ƒ¬Ïß„O5Æ_yÂ\'_có© DÛ]t@×ÃS})Šd%AÇàTŸ®gSŠ€ÀÒ$/PJÏU€ö6}U$f±Ë‚IXYeKw$´€#ˆ_)%gÍv§æ ”/î@H4Ô¨Ž‚‚ÇÌõpˆæ¸ú_ë+ãŸÕ¿º ¯?áÊá.bÒ©bµ¶´é¥ÛgÂ9ÂGœÚ¶#¦S©{/ÃÓgkU#¾“Þ]†+ Þý ›“Éž™ï Ol¨´FŠÇ6½hŒ7ß>ŸˆÌ¿4ìNÕ8ÍçWž±É#l£/W¦ÆrIz\IÑ“j†¦z=ÈPÁIÛ´‹hóe> ø¯ 6AI¯S¢ C|J¦rƒ]‰.í,5Ûp‹ró£qó éö¶ÿΛ·6Ó5¯KÈVí JdViRE4 ta*Luʶ¦«4~dR%»`f(â²ÍFjß}oøÑÃôþr¬šöVÏœ­FJv±çïþba¬Ïñà“=¥ôÑÉ +‚ Y³\@¿\•~¤ÚÍç.tÃí¹~dIÝX_žÿǹÍËK#HW×½çݪ‹ˆ*!ª®Òæúáú‡O÷ùFß|._p»ˆŠ±ÒÈKÆŒ8Žê†*ý(AKÚ.8 #=阞CLþµ| ‚%¿Ä g);˜`ÿZ½„¹ÛL3ØU¬rnÈ–¨F¶t*¹Ó¹8šŠ©…üÑÌ6 ‡0zjGVK! ÅU—âe³„m7GÖgóÎÈ­ÈüOÕb<¸g¬Ž”ó¾åŽ×…w&ä°½'õŠœ½RžþñÕÁŒø ×âô:NH&G§îX¨õGë Áñ.@tàInÚ7.oM%\W˜ƒÊó@±êQ‰¦²wVþN8TÙ€¦²Bº+$‰ø˜ž@,Óu¢ +z¥Œ~L‘tL4s_è +Ìá>30U¬•Gz\èÉk¿ñd[¦©\FÃ'¬¤ù[¾DkRcõ2 +-onF+v8Ö£a†9Ü™»1D Ël€©lUT5ùÅkɾ~“4wâý™Í?²²ŒI–â–Ô±øý½½i®íÃ/_ÿýûìŽLÖZç¿n2°×iññ³cùäø«j :zNmtðoO”·8Ì~o8tj,4°ïêðôÇæ¡Ó‘[È‘˜®Zéó`²ñNÕj¡|À'%ÁÁu†õ‹0ŽhQŒ7X#ØñXX +rDâE·ò+8w£ãáPz÷îðûò¬$7¥eo a«°µV±’…›é•{—`ò–E åï¨D,.|þK•ãº\òٙʔyàû¸ÏûÛ#M––’øï_ +WIév®|E '1s]´;DƒŽ±E vÞÌ„¶šnQGK¶9È7zS+)°«&¯iœñgsŠ¾?Á|“¯Ø’:_¬ÎÑ|qJ¹™sq,ë)•`MýWärbxüX¿PR±p·s€¬œê™8ðCyøØ:ÚlñŠ–øô#먴ØþŠzí²Ç·?æ¢k¸¸ÚïhɯéÝ^%238‹ÛÂß'þe*èÖT’‡…%¶¤!dvñv>a¥ŒÀ÷§©#9#0a\‹ì¦B.}Ú=,Ul²°ÜNüÿJhÃá:Al +ËÒ³ åëÔêà¨.×ضÎ2ŽŸ÷=ÇwÇ>¾;¾Äw×ñÝñ±ãkœ‹ÝÖIÜÆI,4ÉêE¡7²-]ÔÒu#šÊÖLjYEJ »H™T¡ˆm…ÁV@h_ iÕ> iBTõ @áytýVŸVêó>Ïÿù?¿?¼WŠ.Ñ¡‚Ï5v–c3…@~åt,ðÜ [2¨“ËYÅö=–a̱PÌ ×#fßÆ-<ßþÙØ!³ºUo”¯zl_zJœSýÅ&¾±hW)h4¢Õ}òïëÆ€×%gYî™×j¥ù­…3{tÔGÏQ*XvzŒR Ž ÃD6þ÷º©–³=(ï0Òf¯U¡€"ô é\JÓ¯<€"r… ÇI6S8…6#¼ÄÖå.ôµÑˆ&Š:É6Ÿ'¡ì‘âSQâÓÒ{o#\'ŽŠlŽiî>=hìË댫#ÁFÍe7Îe™ÇDºå;2þjÎ,,Œj£»w,=± |9R”›®.Ô&Ÿ>ªÅÚŸ1ÌbäŠÑd>X\Èœ:ª—û¾,„”¸d.é¾{ãÑ+$ØQ-˜Ì2=C)©•/8a*ä b…D°Ó ÈCI‰Ã,Ì‹fB¯F%Ç”üNþm¤ƒx Dè¼&ƒ_<žR;|ó¸º;ˆ¡¡ÑÓ V«-ò­·Þ=5R«z/Ü88÷ÆÜȬ§½«œž- œ=Ž—_ÞœW8ÛoXÒÚj}à£Ó·Ïf££['íñôÙn„êÜ>üg˜\Œ*•…€@°©C^W/¯”I a’ /¶>ŒðB8^è¼KÝ'A Qp]@ ®÷KȤ¥íLQä%°{™gßØê?oº’X=«—™«¸<|„qßßó©&7×|ÿý*îI ¡ûL°xñæóãN¿åCÆìcƒ»î9³Ön.t@‡MÕÛAú>ìGH÷8u²¼hRá˜9|94Þ ¡x\ȇÈ(5æ@R.ªÏ7âL¡F&)C2†¡)d¨ BsÈ›èC^Rv)(&ב K7ë/vE +C“€c¡LçD‰ÉŒÌÓ9ðâ4yS‘¹‘H!~ƒ±@·iƒ[jGäÊ'ÓEä÷Ó¢ÎE'êrRôX,üJï9H“gþséõï ³›jaø“—ŒIµùoõS×]¬5â˜üë¹JéÙk´-÷ԃɚ«’Ÿ’Mþ.]±eßά„ùáì]¦'wôé #&ÛôÐØBõG5ÅF(Öª)Æ9•ÞÇ$û„³ŽÉiuïw–‡¼Þm^«Û“ÍÁ‹“\}íуËB` e1;¾%Œ{íÍÀ¶÷Qj¦|ØÊá¸× ÍÍøq6 óAÜfÈOOJ&kÂQN€é¶âuG”“è‘@‡ÏsŸJû»¿¯¤œBà#q­íˆt×$‚À×ðHFlš:Øú<"_ªÅ¤Ñ'è0‹ñŽQ}'0·åÃ}8›½¸Qd·SÍ^!¸xïJ+Ã9z}ÈÊŒX²ºwÿ±ÉôÞÍYÏŒ±ýß°W @¹UA¦Ï„H»9æ™Á¶“])2ÿ¢¬TŠ”=}z? ÄôšÉ‚h•f¤¦°ÕʘU›î}¨› :D(²pŠ`M¦kTÝG nž# c25*IÖ02ï½ËI4©âÔÎòL% _Áí)xkªdý8TV yum»ÝÊeLpñ[ÉcÍ„{((“:-ízuò”ò^¿J‰­HaÕ»IµJFR¦V©Q"¤W!V#¥W͉:7ŸðY@ì?ñT7¯3¥H=OÖdOUp+å)[»}Ôj›Y܃´hÝ@¸ÉÞñ˜¨( º# áÉ6ýÃf¹«üå[:Ô¸³SC´!Z¢çÊŽ*ŸQLÞ|t $$þŸÒ¸Å48ÅñziÐÏ-‚R%|Þ³¾ƒIže ïPS¯Òý‚º²(*-áQ-µlGç ežÃÂ(’ÖœzC+ë‘ÒÇ èþÐãð—ŠtT”3'Z…‰ß×4¼?´x¤É넨+v¾9PGæÁz"•_¿fÜqe¹Sý;–JhŽ«†å|<\ÙZØ–Î9ŸŽmì^­fb=-m)«öEtó\éGtk,¬*Úvë²5¼ð"§Q¹^]nßìOórÐþ…4¶mgÛCðœ8’C?40óíf2ÌV™îí`F “ƒÔ±ò¸±jö”:yÊ…¿›Îx÷­€ü„Fê”ZÒFA§¥ƒqÈ~dCëæ '—ALÈu“ç“Fð¸m¢ïÄü~Çüèž–F.Îò–k³»r«X +2 +>+mœÏÉ˳©F¯MÈ-~  Ž¦Ñ­j¤bd¯l²>ïÅY˲éËhÜ(ÃÝí_Z#ë)È! ýwúWð^ å¥be¿.M÷§Õ +²Qe¯»Šsr7%áÑš‘¤ñï]‹¸!µW<9~Ô¹ö"Š%Á÷á¯VüÞY{çÏüáæŸ~‹þâä–&™±©M¶Í1Etýþ?åš/Þ»ñééÏqNþóKÊ{ណAVeÿö]²÷õv„añ£T‘+:A,¼ Û|¥ +l*òȸ°¢ŸÁiJ±áKS¨9fü[ÐyÊ|<´W1a0 ´´˜0¹ê„µÄ^wvODÜɲ„W„.¥¥¢˜dÚŸêSLø' ¯ê¼}{têö]³¼pl~°z¾Ù.µŠ#¾È¼})Un ¸'CKÇÚU¡G&j K•šKô©X_Eæ"Íÿ³_õ1m]WüÜ÷žýlcÀ6~Øø›€ù2Æ€)Æ Ð˜ÓF:(!ƒP…$4í2T%ͺ6M"mQUE´ŠP¤EÕºuS:%“"õCVUÙV­“ÖIÛ´U«P5Mé4±ÎìwŸ Š–¨ª¶ý·99¼óî½ç¾sÎïœ{Ï©MÖÆ'N¦n?Ó>`7Ù¯ÖÔ¸jŸ(2¶Y¿|(>‚Ú¸?ÙmgNA_Â*ÔPt:C±.À‚ˆ2¡-†A~ÂØ„6,AØÆãîD©ìÞ,»#‘»NëÍÀãÝ j³­0I6–ú:}7—]–öŽ® ²Íî®üRó96<öú·Jc=ì©áª´’0^SúÛ½ºuc:“νÿPTÏ2hžÝøHø+¢)AÉd[Sµßf)‘˜.(ë=HŠ`«Ã Ñµ1„·žñ†²Êï©tÙKI‘Ĩd¼± åãùòÁ³–oVÉècзä«GvwÝÏË$ Aµ Wµœî2Ú}ûÃ;›<•¾='½‰„Ñ÷ƒßœ-ÖuJf{óPr4Qýòx•×o½:½/fŽ]¯¿n»ÇÝZR¦¸‹]s=õµãcñíÏÆÓJõîÆ6‡Ùíô¹öE{Âs3ve?ììÜø³°,-’‡¢É³3%âT›—£^Dj/,!K(›…fÀðq0pp–åËÉ*5â6ëGÁ +76ÞPF¬gôcgì¦oì(~ÃÔÚfÏ íÝ·GV¤Pÿëc®.óÚ1Ý|îݯj7…º#½GÇ¡QfcMŠ"Oši Ù­'±" ÂËL +xc¬A¯„ ƒFdîr}C•c„Z¬qÛ4eˆ‹Fx¬œ—,-[¤š+!5 Â…;žgK¡iÚ<¡[Jþ—[„ÏF' ¡_möÅ +“.:™v µ¦sï%c¨ç驨nyÉeÝö*›H5YÓryX6žéÉ]~db˜Ea©•@öW¹7»;?»Q¥„“«ßà5TŠ ¤¯tXMFÍîï Å ÿÕ£’åS‡®1%àw3Ä ¯D[ãÍ0¥<ïpY+È쇉çvXkâW¢?iôíÒìuE’eUE#ÖøüB\jY÷ú$y(“Þè­áØXœÆ¦Ü{¡Óí2shIWdÙ³ëç¿ÿ›PõP!Сɋß_Úñ)‰:º÷—«–Oi{±N‹Û§ ¡ñä"ù¢Ï–äSy¤ïú} ½kHtBäotK˜¥,û9M‹—iP³J7´:Zb}”Åø9!…q-hF™k}Â9Š³Ó²ðù°~ ϸø=ìu’ñÇsï³ E¼ˆgi„ýžV@š>¤/öáOäÿEí;tEsž¤K4­‰Ñ¢æ=“@Ð ü„*öÇ Ùó”‘Æ)+[0wGÏJ êsAÓ‡J(AÏH·¡ÿ“ª ƒò”’þ€ñuJH×°Ç,]Á^n!Jãš;ì¼øKª®Ð è8-™`Ë0c®ó”¨…œ‰ñÎåHpSt$a µë4æð]q r ¬Y€ Ö‹øë:uB&Ù¸¶‚z¹_¤%àB„¾)̲ËxÞ‚~·áÓÂ_°çç÷“ÊÐ"ôSu;‹o&à‡Whö_×A—Laß,tZ’–éúÄŒ cNñmÊ€^Ôüú¬©XgàçAŽ'|VŒ—¡?ß{ŠÛ ù|7 }aûßû=ÁíOUùK˜ÖÜçÒ-Ê°ãxªöà)Ÿ… Öª¸Ý¡1Ž%_{7–ü©â‰8à8rÜàÃAŽ¡*³JãòqØ Òƒ|J<@¹Tâ:†`÷£ùwK>< qÀeðÕ”Šá²ºnD›¢Œ6žÛúbûmÐIZ‚nù}œ[©µó? ç +ô‹<1ð‚ú5Py Ú¼¼|/i-ŸC¼?ÉߟôM÷’ºËÿ úQñψJŽ•Î™êAˆXËQ.M+ì³^Ë“â%*GÚ0n['²’§Š«DŽç‰œ~"Ö»Vóä>BTÙ÷ú"~…}@ÇIRsM #n@D­Ó)ŒñY#}kë¢3S¡â!‘Êð–ç%ðÁ¯ßZàeÐV2IοÅ3 +Ó\Ѓ^(ð"ÆW +¼þ­¯¿Và±'³ô<ž:~xÆ{äèÁ…o4‘ˆ¦ú÷=œ‰ OÎM›™Ï¦²s¾ØõÐ㔂ý‡i†¼t„ŽÒAZÀ?/EÑÏ$ð7Eý´—†èaÊP„†iºOÒ1¬Ÿ§,f³x?€¹ƒtûð¹£_P濹JÌ´ñ5xù>¿¤ÃØ&5+Å©mÑTXÔfkçÄÅÅTq”ž½.v<åŽDþ)ÀÙÑõ +endstream +endobj +662 0 obj +<< +/BaseFont /ITWIND+Wingdings-Regular +/CIDSystemInfo 838 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 839 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +663 0 obj +<< +/Filter /FlateDecode +/Length 2402 +/Subtype /Type1C +>> +stream +H‰|TyPgïf˜ntu0´8ÝÅ@9”5‚J!2(¨0ºÊ!Š0 00ÀŒ€ÂpŒ: P¹Uä]‰(âŠ(f×x6Ö£ë–Y«bUÞ­ÚLÕî_[]õÕ»¾ßûõï½n³¶Âp_°}ß6¸†f«•±ñ[Ôªåɱqû,)ÞÌàfÊÚì8‡F¾¨ÜQüñob¸m ï?sœ5e‡YáøÄë/UiÂÕ„ÄLÞËÇg…›åôž9?sãWxzzΜ޼¼j‚—ggd*R2øàÔ8•:M¥ŽÍTÄ»óþÉÉü D¯Vd(ÔKð!^™Á+”™‰ +5+$”Â}µ"žÏTÇÆ+RbÕûx•%ó?îÞÿÓŠW¦ò¿-Uiñä™B0ƒM÷PT3]âTY©™j¥"ÃÝc½|kvš‚_ÍÇ+öb.<Ø\ £0Ì Ç–aØr ó°•8€aŠa›­0¹¶Ã"1ÌQPWˆmÁÔØNàñøü8þÎ*ÊêŠÈ[´_ôÎ:ȺZ¼L|@Ü)¾N|Dì î“,y±Ûį™ß^Ã…ÓéšÈhm>2µeúeè6ü R ÿ nÐ`q¦+Èi"fÆ?$ø„ù:m±Å“ 1 Ò¢Yð?ÇE@ðôЫþ_ÎŽ‚ +r]Òœ>±‘Ü3‚‹Y N8<™ÈÜh.Hk"Ž~÷ü½æ¯øru÷INˆ`->Ý3Ðz“yБÍ•Èd2ä€H¯µ'%¯ àSóbpÁ» \d¾+i*²pƒæ<[`ºûþæŸóóÛ¹nX,®U…Ô®cÐN€æ¢B"ä_OÞ«­>ÃI ºx³°ø(ƒ¶ŠFËi}÷íC/p«Ó·¿ã ^ ‹¤0/ê¹ÿ Û/ómB4³ÆïPaÁh>mªª3µ1€= E Û7 Y&.?Çh*ä$(¶I3µJkÁN­¢ÿ½ +‚§V‘’z#¸šÛ›CÀU›Q0!yݤ-°°…lxÂz¡B0²‰’ã'Kê˜WM·¸K½-#ãÒ‡É#;»Øžèõu˧@}Q$AÈN TojeÆ»”a»÷ç—–p’_à£@ÃjX8ì.Œ`øh1t:Ç·žk\]·ý˜ÖB‰¼3Y?kæÜÎè‹i°)'o4Üy.}qu÷9¶w‡ÿ 'ÆËO_´ÃÒÌv¦Y3RrNµC¯ b£ É`0h'pÆûa#XC¨èb­íÐL2ñê_`ófëšû ·ª3áD—´½½ñÖøµýyml/8‰cÂk}äçìþàü8ˆ8îIzûþ$©2E*“55ía%½F –h:5Vý ±k…@ áKÊÏl°×Ÿ6ôHÁ—Û-oк¥_©r÷±ˆ7tÞª¿ÎŒÕfi¹Ã$ZS‚f‡!)ã3ðîÆ@í…n¶Œ üŽíS ¥ …†"6­H•Î¤hNvô]jzÄI +€,Â; Ddö‚ÅtaVú‘d&DÞûý_¯ô÷œÒ×qg`¡¸:q÷× Úê*ì¼~qƒÏn VÔ´s’w:X‚„åʃE§µë4ò5`ž=I£ +Ù‘srƒl»!ŸRyüÓˆá;ÍCçXA¨‰Á›0œ3ŒÞ•šIjɦsh]I¾¡€MÒ«Ò˜ˆ½µÞémMUVp¥EÆ¢b©¤­î‚ä{˜-_Îà+2—ÁFº¬ºüL»˜ ˜…V¢`äŒHäù³øß½_qê› sÄwí:Í„„7_ÐsÐeM7˜áší*aÅ…Åš‡áãBm›Öî)Scpܦ/’zyŠìi>{¡¾Öp¸†¥•+¦ÆŽf¦—)™ò<Å.&n¿l›4'9ÜCÓ¤äïH‹žÁÈF÷AOu&Í Í:šz«ß.6Ó÷´lf­³ò@K^¸ÂœoêzÛ9SñyDâF¹¼¡.…U"GqFÿüqæÉãš«ÃÜëu“/¤ÐDR“¦¾²v…¢fZgÌ=RÀ¦é3²’˜ˆ”+÷9êí³ó—úεh+ÙÒâÒBAº—ÂþKZÐjí†@”e\Cö #¨Iè#+KkÊ+نʓ]Ìå†Ä0Õ E½$p›&(]¥×iØÌüìƒ9Z´ !iÒ˜uÚoás\@ÎÞ¬†¨#šÚIË"£ºCÃ=½W¹’Ä9#”OEjgj-M§"-¿“Òý—Ñ匞B'YSz¢¼ÊÂèT7ÓטΡ&¡¨&ô"}¢£Ò³ÙÃu¹èžy¦Sø©dB'ÀÔ%ìÇ&ð€M"¸e6Òh­Ó䉼X., óþ.Kß#wN(úfshÐÚ´QòŒáGccw„ýF_i`³°Û·ò;;oØHM¡HZ°óL„º¾/kˆùfý2Aoðv~å$ÛªŽÚËA‹Fg8í4É7H…¤,’®4Vš*Øî£m=ÌðÙˆõIÑÛÒZ;‹9CUɱãR /hñÖè´gµ-3©ÒZ Ãa²ºô˜©Š½XÕÓ|ƒi8a8RÃQU°Ž¤JËòŠ¹Llˆú‹tNã´þ¥¹¦=¦èuRÉ–˜ `‹_‚/zÀ_Ô~ŠÖ^¸{pœ·Gß¾áJþ²÷Ú²N›°†Üc'¥õ•ûsu-lHĵû¶Õlb½:ðS®$üü8ÇþP÷iÀz–ƒyy|‚e^KŸœoû÷&ûvø÷Ø÷DpØøä'NûÈû@@›Z©mq¥·yÀ¹³‘’ °÷‰}‰x`}£Æ÷!ñ÷%÷ ´‹÷;û&vø€w“ø«p“ø€÷Cü€÷I÷Gø€ûQZûe°b…h…cˆ…²„±²V÷e®ø€wø¯ø€÷HüT~ƒ…„‡ƒ…„€|svt‚u‚v„y‰°û,¸ÉüÁ»»ÕÕ÷cô÷ÌûT^ûq…q…g…r‡…£ƒ¯„¦P÷q—ø€—÷&———£—ûf—Ì——øx—÷.———£—ûf—Ø—  b_ ‹ ÷ +÷H ÷ —š ÷¸ø’ wùÁ¾ +endstream +endobj +664 0 obj +<< +/Filter /FlateDecode +/Length 410 +/Subtype /Type1C +>> +stream +H‰|Ž?K#AÆw̺ñÏQ\å|‹k<“˜“h#$‚pwzD[eu'º\܉³k4…ØŠŒ¥à'ðÁF¸RüZØXÍä&‚³kcåïó{xŸw¦wi¡‘ï‹…•bqòGº¶³DIªH*N˜Œ‹Q$†u1fZ2/ÆôÇÿ;Ýüù!­ ¡û‡yRU‹›[|N†š4Ÿ„éL&i +YÇPªûÞöá›·Ah•P;ÀN +• +D>PìcZ áÛwÀõ»Á¦`«pÓUû;PÛÁÛ6ý $LÞÙò§Àõ@uÁŠç†®(èƒí9Sª…DW6È®Pûé©…Òr½Ša\ÖÔCÚ-†ÐÏ_®h4[â©…”~nÅšºh´—: ƒÉkKÎñ“nþhH,šÎq¼c¬F3Ÿ“ÊâÊ +'º_MðËóZ;·‡ny*vÛÎY/9žjçâ‰C&Ÿ`Œ]0C–Ù?WhŸñt„zºc½ŸÎ××ÌÞ¦ÙÏõ>žì>=3ÍWl©¼¨ +endstream +endobj +665 0 obj +<< +/Filter /FlateDecode +/Length 1645 +/Subtype /Type1C +>> +stream +H‰|SkPWîf˜‰ìdCoãnwª»#£%žK4Â&1⃑§®Jâc^Âðff€fLÄ`Àb-F^‚."a^bÅUyË"1>pƒQÖbËÚº­—ÛÃþɯ­[uê|çÔùÎwî¹EœEÿ²ó¾“j•T¡NÙ¥ŒMO”ªI†£Pî÷Î܇®ôÅïÞ½“Á÷탮±J7Ä E.îHIåkcã´¬ÏÖ­¾žë¿j=Y_ooïUëÏ~©H‘)Ùè“­2IÃîI–§¨SSÔR­RáÅ~™˜È®RhXµR£Tg8‚ÿSĪ4¬R¥SªY)ŸŒUñõj¥‚Õª¥ +e’TÀ¦82¿‚'þO+V•Ìò\ìd•Ekù †•&+>åYRV»ÈSÒ“µj•RãõiHôþ“©Jö3V¡< (ñC‘¯äk qBö"H8ŠD øËDö!aH-êŒÊÑY§uN NÍ‚í‚4A:ït®p~$üÄX8À-  ¼ý〠Й3¾X1b Þ&`0ø«¼À oÀVJE+ØÑUCcÜ áð ‰Åµ j +4N¢làŒMðÀÝ.aù5õ—©ùÙ†þ¦¥µºo˜Jï?qn“Kj¨ûÏ|/el¢¤¢±¸z5rÜ×+ôÐúdùœŽ·òŒÖ1P:þ+Fëc족-®Æëb`Ed™nÍsìÔåìÑô_²§ûV¯)M×ߺ³@êzTWévix•.É?}Œ±…%åWKº¨Å‚¥?qÈ‹öÅÄÃ}®ï~|¦Û-;HZÀ纚 MÛ´n”~sÏß¼ŽübÝŒW›¬i„ìiýaqØš™WGãÖúi!>W•t¸2„‚ëüƒÖ{ND'ós\[¬„Üuð[ßð¨šz-ÎÐÆg€Âa ukµé<žÃmu?Ólêì"ÁÑRì2Ü™•&§k"…u-½åVêuÙ9cÁð"PèBâý;Bþ59ØÒ~….ÆðœÒ0a.$ðþÓ&ƒñ4-;%—K¨£Ê+ÿø U¯LŒx¿aŠC¦Ðö÷ÉSB¯ŽÏ=LmÞ1 œ—‡A_³>¯–©™Z4G.¤ ïÇ›àÆ—Á†Ñ•–KŒØd˜ÛG€ÇÚþ”Í 8È ŠÎ›Ë«É)` /ü(Šà¸aaØ4w³²¼‰ÎžŠWê%”ߟûÁZS4B —v<^ ^×ûG0b[›ÁŒƒmÓèc›¹sÀeº\ýóâØlCuþ™ ´eBXš•ZšHÉŽå&Ä32Eξ]¤v×‘øTN‚õãàí¤>Ó­}4ØðGœ§#ð¥³_ MØõŒ#Ý°^ð3H>û¸Î¶Y¯0æïùÖ'üpuM¾[˜ÖqïÔmjx¢¼»—éíª›´ˆðGwÌæVÚ69¦¬ü:Z£:@y~óð%ƒ/ç¡é§÷þ.=TI—äåæbXǤËü7@Ýît“Ü9ߊN„/w¿ $´šÄ¤:MSk]ýÕ¦)£>žò5Ûføfì@oÇçfÜí «0W””ÑýÖÎÛԓƽA ¼f]"°ÍãúîÏ£ÑÐ& ·æÿ$ ŠåE²Ã¤¸G?ƽ7Ưô>€&î;’yÂ?Á-Ë›Á:à~û#Ø6nY† cÚC¼éôØ +QÉöÀ€°Ÿþ³h}õ†ßÇ×¼ï'úÌ¿ñbløð ÿµÊx%åf =féî½KYΘÎ3ø…'"|ØüÝ÷E*â/²½éÌY o4¾cÅG‹b¢H1kuh¹ùó‚ŽKDfKîM +ˆÆ†æïï +¼ÆHê“«¯“mW­­Ùyéº{ÂÊÔãå1”‡$4(²ó["3ªiÐJIyRBè±#ÕUi´~a¸À8úâ™à·DÀ5_ìž…U¢¨óÇÒhMmsn'Õrå\isvLhÔgµTLVËÊÛ8tŒHܧŸ‘9ä6e9vÜÊ©ù·â°lcv~.­È–É"¨ÏSî.2 Ö¶‰`ðÏÒÏnÜè¸D›1\wn»ðGÌØ^Ð=@Šó,œÎ¼,K½ƒ',s]+;æêRèºvü=ûZ{‰ëo@Üï¸Bâ¿ í9 ¹ +endstream +endobj +666 0 obj +<< +/Filter /FlateDecode +/Length 1674 +/Subtype /Type1C +>> +stream +H‰|RmPSé¾—PöF¹½tšëÜ{Çv×-¢«Ö­.,²`±2 °cH€ÈG$‰AäC«&Ѻ•Dˆ°"ˆ€À"Tùpì‚€Å*u§neU@PVÝô\ûò£7lôWç9sÎsæ<ç<ç=8æî†á8®ˆ ý|Ýî<½V¥ŽÒë~£ÉÒ&ë2Õ®,/0¸ pVyÑh²­roý÷~) ËáùÊ‘UD¿7æ†ãÿœùTwP¬NK7ò[·nXï²—ìæõü†€€€%»‘Vë’5|LžÁ¨É2ðÙ):ýA^eÔ¨ýøàÌL~‰ÂÀë5Þ䚉×xÖ˜®Ñó*1™¦ëõ5oÔ«Ôš,•>ƒ×¹2ÿ¦þŸV¼6›¹øØl­+Š1Š We«ýEÝR—Ý¡l£^«1øù‡ÅìÍ;¨á·ðjM*†áâÃ1,ÇB0,ÃÂÜ°]¶Çb$ØJqØn, +kÀ½ðt|Âs3¸uJB%’Q÷÷ÜÜ»ÝßIûNö ó}¸hÕ'9é.XÞE-Z°¡Am‡/¥0K Ý¢Á,ž‘-IK>lGbL´ËC®ˆD§È·NØ^Aé>$¨A.÷3„å¼³¬Ž™zT×Û˵·ÕÞº«͹•r•mÛQÈlùý±R%ä&Ú樷µ0ÏR>ù8&É_Ÿ[~ª€#EÒ¦ ›ý/)ùiÓñÀÚ¬« ªÙ|~ïÙ\ ˆÂKyß™žùkö?T{Ød£uCCSŠoL7R¯°íIç}™Ð°c¥‰b£h›ý+[óx@¯ÜÂ…ä°ù­`~‹À +ƒ•’¯›éC×¾Íg äû9À棇g7ت®Pt´t}7zãpQ=ÛôZZ{>„AøoFn¾ãQ Iá&3[²>WìU¦~¹§¶.…%ûŠ§cLPòxvÊ»Y}È©!Þçx“õz·Be I¯QÀöHÓ¡4¶~›Ôyµ¯ê&3éˆËàJe(¼ố\Aõßýa´¿¡½‰µTÁ—±Rª7vÐ¥efK ›^œ–±Qg^¼ùí“š)+G–˜çáo¯ðVð–ëh³!«d?³y×7o¸çe¹?Çt7šKj¹‹3R‡.ñlƒv¬Aú­{í ë‡ûöK9hžïIXþTdYÀC"@CWTVT×)þ>h +ØŠ(Ä µ³¾°áÁ ãB›÷LZ˜š\Íü6¬}ÚÂMº÷n¾ÿæûÚà¤2ŽDœÓ$p3°êü±x ô¸…þ+ÙgÿðÅ 'Ž;Ø?½”žÉÍ9}€Qí+Ò¦qª”#‘‘ +S„ÿØ"'#A†4/ÁsFæŠs½[a%ÅmN +ù45|—ÔJt•mÁ òü¥/ÚˆØÉ5ðÞݾÆë—¹ +±zj[T|Mu&{ÐOšÓ5V4ÂÜ{p®§Ÿëÿ³óá +h”Q÷*:+®²¢ªºÐzÄRÄ* S²™íª{O8jþuÿû­Ú$k3—-V(I”Ÿû~á=,ú9¬ f!ÚGÈG+óeÔÛ‘wat².[“Úýõõ†Æk\{YN£Š!ëV¿EŒ‰''Šx4æ#zĹòªS•ì5GKk/sïRÜN]9tÉÀ/èöG¿‰KÔ˜X Aõ{(EaS•'Ä(È…âçðä…øO|”:…ã4Z³z­¸€…õÀŠÄÞá3øÐ÷Gô>g ¤Ÿ¶lܱv_ØÎOÇç&ZŸNqäûâ<ÈŠs/»F’Sq9œ&¨ásŽŠJövegûSUiµžå(xȨá +óåG™øèô0w‚ OÌJy¦,OˆPÉæix6÷²W°\ÒVOç¶Ý*b€¾wš+û{rOP³Çî‹Æª+Š¦zg÷õŽü£N¶~JZ¥K8Ë ihø&®,º3þå;¦Ú#†C±Ê¸ê :–äÍo`pŸ/É”0G#·þPžìwvå%«¯k/èa:šOŸ©æ¬sRKq¾ÅÄ$ä_â C¼ä â¿ùÌõiÞwE…{E­=B™x?HŽn…–¢ÅlfQFú>fWÎÀÕ"Þ!CAqϧnöµ:Ù +‚:üÇ`)`„µÓzsPAµ ùvXg·ÛëíJµ?´ËDè°ü– zd÷dÉJ/Ï“^Ëg–|ùÌY//aìgBýÉ;3ß +endstream +endobj +667 0 obj +<< +/Filter /FlateDecode +/Length 650 +/Subtype /Type1C +>> +stream +H‰|POHqžŸ;³³æ²þ³ÝrHEëŸ]5A%ta#Ã?´•E¤Î¬;äÎÈÌdzFY‹FH‚èEÂÂ&’ +‚¨¼TD‡è¢„]Dx£¿%šÙ.z‡÷}ï{‡(:ƒBy#';Z.4—µ ©/´«JE“Ò'„Y°ÝbÓ‡ÌÚ<èæH)ßëÜ;ÃÀ›løûv÷X•Ð×°ÒoÍöÆu\U__]ncMkËqueeekp£ t‹8:¤ébBçäEíWT^… nìëÃé «¢&ª¶ø÷",iX”ô¸¨bÞ2{%k^¬«¼ &xõ*VlçûÏ*,ÉØÊÂçdÉfQÝ5ÌËBÈJQÒ[z”k²®J¢ E¢g‡úE\‡1FY•MåRùG1Öç¨V*A½¤~£ÓP“\1·V…‡WIÚÝmO:aœ¼æH> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +670 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +671 0 obj +<< +/Filter /FlateDecode +/Length 13673 +/Length1 21117 +>> +stream +H‰œVkTT×þö½sg`T`ÉF@˜†§Á§ø +Çç¸AQ4…µaZ°,ËØ™÷7ñ%¾À*ôÒFÚÀöm¢í´…6Ó6’$b”–P-¥Å´Œ*©šœ´œª¨„æ30›‹¨œÒ"*&ÒÓò!?ò¥fj#3}Õ2cë˜ñõd¤2Q$…Q0…P µÑJj§U´šš©ƒZ¨“Zi&eÐ,ʤÊ";Í Ù”MVæ¾™bh)T@šK¹THy4ò)•l”NÉ”F‰4’Ѓ‡™…ëÂ4p½ë°‚ë&¬D÷½17óóAkf+6âÖcõÑfü‘z¨‹vÒü‰¦5´‹¶â:õÒZzŒ³³ÖÓ:¯mß9g÷­û?l;þâõxÞçÂZв*˜©¥h9;24öŸ†‡Å!i«tD–®Ð0 ò +þÀûw‰÷ú4³ä(³çifÔ~æZ?so'ópsr+ós6 —1¯c¬ÌÛ6ÞÝ•Œ®‘y\Ëœ®f~W1×+˜÷¥¬"ÖC!k#Ÿu¢°jf²‚ÒYQ)¬.+.–hônX»Rº!í‘5w4¹Eã£Ñj Äâ°ø¦8(î·‹Ä5b§˜"ÚÄ8aTøD „MÂR¡J(a†)Ø“ 4ô Ñ!:À·Î^ÚCýÌ®Nªñâü€ìAú*sþ,óÿ4ká$ëƒûëå9Fˆñïgmíe=Áª{0 w3p¿µs©mãôà³ÁhŸ418(Ðàï7aü8½¯N+iD`9ÁÊpÈ}µ}&¥±Âj9Ï÷py· +seH¦Ó[e{+UïTÉð€Ëj1óŸ*Ä[-wÿQ­ +“rœÄhEΗݮzUŒæZV5“K®?n·÷•Wù9c„³¸ÒÓÐDËùnUçRQRi W%G†3ÜUï,«4ÙL·Âm¦ëümó7GwÕã›R´’sý&çÜòº !™VËÃæ›Ù!{Ù—§ŠWSMnbµäɪhRN 9Ö:LŽ>¨“ªŽó`åh¡yMªÝ%{×­Î綧©æ‡«N§*™A&¥ILŠ:>>Ôj‘óܹV˾¤±—^Ä ƒO-ËDZO1©äRò9aöòJÕ^ãô|Ïjá!‡ÁÁËM‚Õ’`µ¼nµä¨ÁñVžß+X‡({x‰ …VSÂWNÐœy蜎 |ýEs̉FƒÑË…øº2ÞQ$܆QóÒm…3Ð;Z ¸¥a¾±Bìä맇¸Û#'›sI£§´ÔÉ”¢ÕÓÄÁ³çR}ÃÅ=1ýÙ£æ|r-íŸq½i=£Ÿ^:6r”#+ÙÆ‘ žÈðñÓGž rä {‘ƒbaHÕSlz¤81XÐjÝ143»¿#¦íHWFfë±Ñ3U ¥Ç(…"zÒ–\½9¶kàßlWyp÷Þ÷ÛK+ Y^ë°dY¶K–V²,imŒmùÀ†@kÛqÜ@ æ2ŒbŽ†ÃPÇÄ¡†¡\h3JRèL˜ i›¤¤$)“dÒæ˜Ì¤C§iÚLh3ðºo%;Ãtª?tÍìþÞ÷¾ï½ï[åë;·ñÞ.åu¸F=ÀÝ’‘ÐqÔvàñ¶ú$ZI +çY $ ü¢‡3ŽÜŽ55-Žó镲ÛÆO/òY ãij*óÀœÞfl#Öçd°_À¬c ÞˆŸj¸ü²ËJª'¾ÔÊ$K WtƒZõÊÁÉoaβŽÊL¤s¢Úv`ö*´S—ZݾX4^Áä”P]](ÜØ mI õ¡PƒzK“zÆÝ¡)SBO(Ã2J=™M^Ž­Ð8ÿ7@î±ïü§œ{]Í•e“ÒWØ]˜/²)O‘VÍé)¥:EûQbfÐH{ÎT¬¤EWÄIÔöÒnŽ˜bq$.Ƣķ?ºu²zN,V¾û‹[ò¶žZÛŸW¸9  Ït¡]î8÷åÈ[ÊñI¶ë¢òÍUåWÊ© À¿ô>D_Ru3yne‡’•ØTFÑ fZoÒ-Òp”±£›æ$y.”T¦½²5Ýdµä€Y"·ø˜—ã±ô¨‡4€îwŽ¬œæ•Ë–V—–Öt¯\ßœc·(w™u­˵÷«[¬6†+'ÉW9ÇØ,‹èÏ«6ª]ta×°#AjV"‚6ìÒApdèADÿ'.kž@co‚’'˜³ -æy\ôp&cd!¤V‡¯°Œ‹ªeqià©yS[†EBÄ—9³É:U´ :^Ù›7gEeÏæì¬2­A·ýÓ5/, —t/Ul€¬Ÿ`˜•£ÝÝÝ%ov… ïúÝ«š ëŸê¬ÞÖ:<{Õ¾ßÙ¿Zé×p\…ÓYh€VŸ(r×Kˆ¢ˆªM” 8Þ~ÙDçd!à¦õDãŃˆCº,Šà_Àp¤8 ¨ œ‘fϤ›8Æãöù}8c€Ì#L@˜üw?}ê/¾µlë»}:>‡²qå›áè±²³déÅ#ûΖ <.ÕE 6g0mËÑ纛OŠ^ú2Ø<Ôù³³’rgà‹¡\óà˜ùȳ¿ÿÑ»-V}a.övïm‹ô¡^dç Ôˆ 3n]¢\‹ t˜äi¨.²@¬5 Z$È›e%&ÁÌèó&aE3MŽj¨,üSBJŽ¤º‡l‘Í>ì’TEÁ”¢*H̆בò‰O­¤öy[Úá¦ÄI[$üÔÂWã þýu;ŠC™ŒÒ }!ú²¬íœøJù‚Fk+-4ê‹A6P^¦ªÈ&7&bÈL2ósd&F5$ªÜb:í´R> ’(n%*˯wj\àÌ¥µ¬& ,%ú$9þѾ֤¥yžÖÆ편VÝ-ÕˆT$'ÎRQ"ßsÃùkSËE@X^A‡íÀaØË9’œ \W¸i܉EEJ¶š 4_AOºtx„`I‰Í_¯û銢—¡úægnŽ<–VØ8·-òèúíæÍv·ÜótÉ–@ëèõž1RqÑ»éüŸ‡Ü¥ÁÌ’å[»_ÞÕ@þµ°*¸ä…¼7Ü~¬SÝí¨³{X»— +'ü™ÄŒ‰›±‹z›­7—8³¼uA/±‰4 ¾Ô‚”ÔÙË.:øDeÀ/c­^Ù „žšù>¸Ó¿jâ“¢°Ic¨ 4àØšï¾ÝüÑ© )o¥6—êÖåØåW°R>ëÉTu¢t¦3Û¢a#^!RƒŽoMZ²ßÎl"Å„ãº|ŠÕÀ#1œ~³¹Ó® túÒTãU5¥¤|êÃã–PGq9ùÏð Ù{U\>Ú:=þøŸëj\6ïÈ齟ìXwuõ©­û×^??¶féé v6n»¹öjÙš¹ë÷ô²»ªwwÕ ´Wß¿ýƒöñ¾ío5ZÞññ5•÷ µ Ï]¼rïxÓºÄÖÞù›U=é8"µáÓíÌ„×U›ðxÈ·ëP8 %ðpÈâdÐnÉaop$?å|èœþX-óÓX*p D´/*#…“„ôÛºŸí`†K 7]h￵ûÆíÊåðü͉mï<ð¿ül×ÆLçêkëŸùÓåƒû·”Qåߤ·åÙGŽ}EÿæÐ÷Ô*÷¢“÷ÓçÐÉ­jŽÒ‹¢–Ò¤0fTºº–Ûÿquú¡ïBuõ:|‘T¯~6¢ÓU§'×%©±>,5ª§¹”7àž¦§2Uל!fàiÀp ÓàÞßc1šY°OÅ$w:ÇT@üáã’©fm•šj¼UóZSñ¢( 8g¾çÇ€sKc²ÁkMÁPCòhBµN~Kp»)‰šˆ)’ܸ¸r<´žÕ¤C@ôFÄL83ÝHg„!­Å— &´–ð´W~ç-(9• +Ÿ"IžÞ_<UÚ:ÿÆîK+KÛ+¶<, Ä+æ-¨\[û¼7t²i uLç_뛞ëªÚÐ%¯Y\,qX‹jæ´l««ì.{tÉýqµ› ’š›zå=NÏŽRÜÉ‘D~yÔ¦æ¶XÀç6êYA0SúX´Ø›mË4‹éºEBÁÔêUµ…-À Öÿ1 ¬<®$œé|Â%ÿWƒ . káŸl¡hòÚçÔœ Efµ7=é vN\še)*(i®ž)ÈßW6×[*BÏœölåo„SvôþÝ\î\5º0ÉäBÌ¢}Åß‹X³-|2Ð0ªáÈÿ%¼Zƒ›¸ÎèÞ»i£µ,­­‡-ëå•%Ë K–d#ËZ¿…1`lj g(J)$ʼnmB ¤ ˜1ÁMpBœ„º@Jó(ÉL i 3PwÊdB§d&™$?:Išb#÷Þ]ÉØÆ´ùÇÞÕhîw¾ós>2räÓƉ}p5ÖˆÀä]j˜ÞvÓbB$ÅZ%bG4¢æX¥^+Kü€±gÌ;P¸!)‡ZXŠSƒ°›Ýá%h=Ø« SLù,ìwŽ!+“JO[ìò/ȃۄ`Ð%I¶ ”ÍÒ´úû¦DjõSááKžÍÍ©ßü²)øçý'>Yu¬åì7‘¯^)Ù™ã|®$Px©bý–SmçŸÖ×× ¾¿¤oÅúKä•KjŠd±Ü9Ô¶o¹š¢4hÅ'Þt¾×­YvtÃO÷VÀò¸šzáÀÊ'ÜHÙ 'oÐíôi"—ðˆ.M€å)œŠ^.ÈÀK±FÄZ--}6輄Ëæ(pðq8±+…‚ÄFä¤ÒJÔ°êÌÄ‹¿Ž^ã/[s߆U+×øíçv ºÂfá±ÑÛ;Ý]YÀÌ,DÌ„¨oN¤ìQ1€ºÆÀ`$µÍ ¯T¢¨`…&Ü­TP”Ëö¥´5)©,}H“ }îd°,ÞÏÏR‚!ɸ`¢3M/\©^^6Xvh?\ÿ䟶u\ínÉŽD"íbÔ©b¤ãä¢Mk:ûíá‘é}Aѧåø7^v£Øe—]ÎkϤ.G4Gñ›wúßùç³ERGîRƒ¨Ê¥D«¸8;COšl‘yЂX>T€¡¡©;¯‚°Í—Î4€Å‹`(\-qµ!«YÈF +ÜNžæ`‘ö[Gƒf9â¡øŠkwâÒ¡ šKÔ8—Óž­Àõ†‚Qà—fÕ ¸¤vâcW|Œ9ê¸j®‚‹re\)—ÉŠQ;š3SÀjÀ +<"Z¥° œ5ûô \2}B¢È:æ …À(ªMBâÝtwÌÌB8Ê}B_`˜£¼ÄŸ_=U[—ÊSÖP|0-–æ¾÷1Å«cmeKÁ¢ÀÒ`[LÍcßmWÛ²W‰Ð b§ÍÞ^Ñât±õÖÄŠ‹QÎR<”^M‹Jãû©Í’ö2dJª£'LÞ`žCè‰D,ЄCÐÏêÜ,&¥‘Ss*NÉåéÕ”¶u[¡œsjÓi?(S³… •3óxfÇAàŸù,C¡Ó"çpÍ á©ø–^Ar’cŒôÔÔ%äv7·!ÒhøîDÙ€}?³ÌyaÚ£T­µ{ü0ïJ³S£ $§­ŒyI*Úi1KV¢ý23,on}œ• ûtò Gbu£³ w ð:I‘R +ä¥|…^@'I]‹¿õ‡ `å—7Á²®ÇýåùKÛ£Unô~¸Mì™t¿ š¾ø´þñDü£|?ôWúÙÖ£c;vÇÇÿÖ½âõo®‚¢×Óyu(H,Ë ð°F`ÐÃ@ÔŠ‚`È5·–TRâò­4é쇠 ¦¤Ž%Saðÿø=Šð(ew$:‰Ìþ€ÁëtUím#öÅ‘7Ÿl<Ô½`aßï;#åéÑXSߢßÛH ãc³õði³…–L‚öúg–u¼²µ‚«×5îm~Q®’nCUÖ5b8 °:jGÊïÍ—§ÙÌEÂvš›\ è‡{¢Ž™¯€Éë4SywÎ +eB9ãmRô†$ù<èGÑÈ7µyÎÒ{ÖéZò46æ 7Þ~ïëSàºÐæ˜g³Z­›Ö£‹÷éÂ&nkùÏ^jl^³LIøHxvÇðUû½^E‚‡óMவš¡L?ú“µÛŠ&E“7(12HDÄb«J eØÇA´¥F jjtql€€‡Ó]€¶ZLäaÎó_º«=¶©ûŒÞïw¾×¹ñÛ±ØI|ýŠŸ±ãyÙÎH Ëx„ ¯* I)iC” ¡m í’¦/i©Z¨Ji»uc-iCÛÔí&º2M“¦ŠN¬*›´iš¦’8û®G³uù'²,KçüÎ÷s>˜Ó[~ 2÷äÏSùN1ÉÕ_¾fܤ5åO¹Þ„ppSë;ôhƒÈ–Ç+š[O¬u¶ïïùòÞ›ÙÏN?ô³FkÐ*>zbÓ¹í—Þ>ûAש¿?Õw®ÛÆÄ T–[ÌÍÇ6&:R>Ñ<úÊ+÷«,«ÿ~Ï3™žåÏo4è:Žï|ñ“ma÷KÈÎ…s} ¯¤¢¯lÀÄDQ‰‚›_q F­h &Žž+§,Dò•^n¬.”Ó.qjp ì*d`G +Qli2O»ì/ å':>{-à ù ÇG.\ˆ€7òÆ…ˆ:ÍÓR0û ^§kÞ:Ó[ÐK¶ì[móLtœ]Kãß ïN¸KWï›<;o»´5çt 2¨¡R™°Ù“@§Æ+º1. E¥¨íjb5>p`D[ , (ÔºM,¬ŸÝ>˜ u$ûÿ?î)ogÜwäD‰~X…i¿µY§Ûtiäê_ôyÇtzŸ@Çtèžý㙣7FZá§ävžÃŒ)ZK÷Oe†Ï5_¹GFfgs.öO½uîÏcKB}—‘©fúo쫹†P™±ƒK”Ä2Ñ,äãÁëqóß©.ƒ|-˜ËƒPX ‰xl!ü\zº=°€±Ñ‡`õ-;ZúÝ®GZRå>götEڶͳ"{°¼fY×±ÊÊ¡®= ,wÿôÛ"fnjõäĆ×7ž¸Fÿxå Æ¥Î#Wü‰=I5â}䯰­O 1,Ì!ä`µq¬ +x+$»ÍRdT®Ž«Có×9¤Ó>dÁ)¸CôIa4˜ôQ}B—ŒâVAb UÁŸ7swšÊž®2oãìü?UOMçSÀáŽN—›¿ÎL&{l œdÕ@Š±"±jÉN·kGKCJ“ýµ¨×òÛ4nSFÉ¥ÉÁC«ì'œLigŽ:Sì³:'ûÉÁaP¬/ÙÕœ¢ï¸-ìì÷\âþ*R‹õ»Fð5tè²µì¢<™R°˜ˆQ0úpP½<Ñ¡mX]Ž‹Îw;?êúIâÁ¢ÌÏÝÿš*"HýÔT×Ày«dsFzyÍo^óÚ¾¾Tºltk‡µî^™¿<Éüvê h÷¿üxCé–ìÙ¯Ö¦×gÿ½`»öƒ#Z +—;¯¥¹ºˆ³¢ ±Od‡H;û1å¡j2Q +TÅB‚Š-4ªD­B*%ôÛÆârÃÐVHtŽH@ÆQ¼2!´Â¤6D{rEÚdT8¤ü¢¡Ö~–iyR$ñQ(tÇÒMGD¾=ÓÆð<³¢®4¥é +6Æ]×·ÃTÂ0bBétöœ½ÿùÙ§S™¦Ä¼³o­ì1ˆ]yÄ–BÁn#’µ„.k´ b%GÄ–n,äeÄVô:‰%vDÌÌ,xfƒG+-žÌ]yKÀ Œç‰¨€ƒ +³ˆëVÒx±`¤¢B1Hr“z(bE%‹z1êgó9$å­–A'¢è×Æ…Í/©à0Žâ±D´\n±ò[”€›×Ÿ<ÒTmàlʼnÞ}‡Fê\p…“$‡#æ,Èš—ö÷ŸƒÌO- ¶øükÄëzò˜¶˜¯K«Ž6.Yñæ²Ï,*·ÒÌLÐ^|K{h°÷é†ì— ²„ Õ±åÞP¸˜"ÓŸMße4¨—DUQ-™úb©ô*r×Å@<#FÈ]U„_(A£Ê°N(/"’Ñ@S%…‰ÍÚ{N¿hRŽT9sU ù–óà˜A´1·≤Ëp¾4ʯÄA”é­nxíKèf`MÍøÃ+í„!¼¡lÏÝÛ­©Ý«Â#Ç—§•½:UÓç‹ô_lzñ€4V¦Z¶¬Ðà.ý+ý¾ß[]š<Ÿ]ZÞÝ|rãèõæ剌OߦÛQa̸ @8à².âP¯MÄ,hË@tß+°Rók#7Y("×YSî& aiHÈ>­2q©V+[tUo_WU×ÿt{Õ€ßèWß¾ï÷··¶mé{`¨_¥&ù¬¥í‡7=úÆž˜d)k0T=òéèÑ_Ū½á–äay[P‡‰ü¦SË3 ‚1‚`Ü…(- V‰t,`ÍÍ Ù@4‚‘WIaAfŽxÁ“qLìh¸ŒšOÚü*Í<¸é†_ÏWdR„iŒb~±ÑmøöíÖ+ÅD÷¢Î^Ô©¼SÔûñí¾Uï´µÕ,Ýøì¢3c­/1uˆþÉI_~±­q¨µíºëøµý³—wÇ><Ÿ.ß50/ž[K™ž­œêÝ4¼ydÏ•éóã³g÷ò}uçH¦ªqý‹>¾ÂHYâ¶*û鉾Ó:×Í ïªš(yÔ_6CáðìÄ/&Ë^kIßî9üÈËSö5ÌÞQöíT’±ñºç^‘”I màuà|=‘Ã*Tê‘üQ5¡ ½˜6K¯ð©H;ËšQJg×ÒATŽb V"àºÁ‰%šƒÅ/±\V^»­€ŠÌn© ­‚ _f$–:él«G}œ*Òïì0ºSÒ^7Õß³`4ÜênGF×¨Ò Ï»®1¦çÓO/Gní‰×—§»ÀpÝ ÜðÒQ‚'¼D¹è0Ú݃¨|†ªËs..Vó(E!ù3‰tY±] |è°3°˜”{mÆKÑ ’^-‡½¦ ¶«ïBc‹§!!¸êÉ-B]Ùj6Ö*+­hOƒG¨op På»è3ä¯è°èy5â”fN¡P¢*6b¸Ò²éò…<°äè.Á˜ÓÜ}yÈŒ32(Y[>'MgåÊÝØÉŠX¥Æ¢…„¥ÇÅÈ›ÃM®Qf*å2àÀ˜y +ÚhBÆjƒbµG¿žÁJªçÔÚ+¤o— #¼©ëw‹_À£Wl)[zô%Üši<±¶~âjåð]bS Žéô—"e‘q•°vÑœ³8-²ddžçå³pX>óC'¼Kó,™ÓŠ¿î¸û-s n‚û4,Öªp$L¯GÏåËŽnèo¨.%bÍ…ª°ìëi©V³€V³ ¥# ÀZ” +¶˜~Ô¾Ç`¥8 )9 s—¯ ©äB9@ȹßÇJ]Èý0®†¿‹Èäëºú~^¯Ÿ‹Í~Þ»ŸIlïñ'ÊëÁ tÞ´1Ãfx¡1÷0å¤OÕ‘ßd™ØX: çq×Ð@нx0ôé«!ߣûÖ§‡—l]æùtjuš£­û’‘€œêÁ['Àc<b1Š{Ü\¼s´:¯¢A 윓&Á%ØJy¢ZZì¨X‹á­‘”¯ñžòýi0¾C!vŽß¯nm\R‹‡Ë!>¸êÎ9ý€{¨(fúÆß(l¯#ì„K,.ha³E-&¦æ46‚ž3Ðáœ2Ú½AÚ)ù›¦Á pÊæ&åQ067¦&ÞŸM<ûŸ·7~ð|Û+·^<ù’kýáуGÖ¿QÖ~èg›çoJ>aüÔ7/“gÿôöà…7Fn,úâ%iíâ%jæDØÂ8†Î“‡(îÒÂ5ŠQ¸²ˆE0•àE.…AÅ9ò°IÅÆЉB¦]¨Ê†} +Ì¡”J2£æÜI*à(ú•Èé]>‘V9˜^'ÙuÖ«áCæã¥3œ©;¼ã³§ž~úaJ N•ÊàÝQqçkŽö{äÌ|rGR¯JŸ¤˜Ü>ûQhêÓ½c‹%'¡ôþQëÊ{Y)_zBŒmûÕô©KÁ¶½”¿á=få–)GŒæ#/Ð&«× RïDE +ƒŽÓr[BA;b‹tØ…Ê Ú¤ +¥ØPÀÉjr ‹LHrY¶)jbV#­eÈž ,²ôºÐõ×KÛG΋￶YpªhFȆšž|}Ð~dCbnWÕ“kÓ'ÑXÔ‹ÿ¾nÚÕ’0Ž}r'o¤8»*ÐT^ŒýÉ…™¿Ý[ÓNd•6 ›V11È!CV0$i2ëd +–•bkÐs*N ãYQyîÆ4 +fC²ûVeR¸¤&·ÚŽ×³\@M—Œø|×7žÜÉ©:··4Ü“è{ºzÈ[fúfìàXú­åš“Sëzh Ø @4‰±«V…hž†Ä·ád~D‹^¸%Z©t°Ö"3ù¦ D´!¿ãÐÓ ®ÌvÀjµ”,e: ¤ _Lªv +—ŒFø¦)Scº‘Hý;['VlÍë&ø¾Ñïí=ÆPµ¯m¼¼mÏoÎøóžs•önë­êP+µúb•}ÛàOŽ‡ºæ]£g›: ü˜ï­¬9$ÝÂ÷_xŽºMX‰¸2"BÏ"¤Aj““Kve&gžÛÔu¢7f§I}%WÁy¹R–g å0WÖ¨9\¿Á ;Ô/ß!‘€j¥¯6ÂÈQýÊ‘a5Rƒa=é?.rÅ’’FÁ¯Dp߀Ƴ»p«¦'Ùô˜Ã¹¥)ìª){Õf¯Z3–þŠ¯Ó^ÿûåÛÔuÅñsß{~¶_^~;?l'vlÇIŒã؉›@RŒ !ˆ²)ËP ÐÒÀH)?S%ƒ1ètk‡CS¡Eˆ!öC¡J-ª: 1Ô"´¡µbÒ Z×¿Ú +ãì{ßsBpØFµ?¶?xÒGçÜûîsÎ=ïÞû>ôΫš×5X5g°³«ªÂt67À†„ÖàÀĹ¢ÌQáXôȧo¬K¾»ø[o®.Ç÷V$}ÂùÁÎG/­%ëÄU÷føí›| Þ‡ß>ª‹Ux²U³`0x•2Å‚˜¯¢Üã.s”Z‹ER{ ¢ù§\Æ57dfS (+*E_ã. +Q¼Ä.€¿D¡ƒsÂ%‘{áÒ²Üò¿œp®2÷¸JXí—9óJýÊçk§’£¥uù‚)ù²ß¨åœ$dFØò?ø¤F¬½T襈ï…Ð?ئÆ"Xn¸,õ ×i^¬Úa§©+2f*ŠbT¢°ÄçqØmÖl£A¤ìž,¾dóg.ÙœwöJ±,øSÅù~NXÀà×ì¤,z¿P»bË\ëâÞó’½Þ;VÖ‡kí–x~teÄôtÞ.¬ó”w¼VéèèhÉ?8/t;óB¦éUxõ`báÊ­ÍΓy¥ÒêÍí{׿'Gª­R¸¼:9:¤ß¢ÅKâ¬QS,ldVÁìs F̯P +LùLˆgis^– ˜ \ŽÒb™‘q£1ŸM-˜†™¹êð5…‘qåú…[‹D]n\!<‘úhvŠŠ§'ö2Ëþ_½ÍëÑäÝö£‘ÒoGÔï4±µÑäÇÛ;dk³*×þxôµuåýmâîÄ ‹s8t©Qß(|G—± ºóÝG…ŸiëH$ÒíɯŒ.ºCTDªŠ¹yB±*ÈydV°ÿrÙÉpÈ,’|¨ ›dÑ;}MÓÿëø¨ë_èb2ØÚ -m›ð¦ƒ'غ¤ŠÒ¬i[ ¶=’¥\"ªkÅcìÃYRÈSML= ˜ÉÀT=?°!E‹ -FìÅgËJ³wõrûzÃP­e˽s‰Õž £˜ù(̨0 %cj”|b¾Ë7{œÇ²«]¶^ñJ]Áø=ŧðê‰'´ò©g&+TÍja~V¦ª˜e>g‘€9mæ„Ï º#¨¢®Ž÷8C ý’æ“{®¹Uv%ûîcû±·;4/?ª+¨{uÇw#¼0˜{W"!Š¬(ŠåøEF2“^ 7CjÙ™«Á%Q‚$4݃vñÉ»âû†^ªÆþÜJݱe55ý¤¨¹‰)L +e+“‡Y‹…huTAZäv6sÁâ&YØlà ZãZÙÉ|\+cLU„·Â¾\YhKÝWøiÏ¢üb"ñ1T6¤.ן±Q~ÄòÄ‹°\Ù8}»ÄEÛ;u¿)b×®îûÁ¢F‹\j‹ôïÜÿ“f£èt×»ÝO}yF²xIÿÑmgXìw{ê—Úæø×Ä=j2Q^î(q5'Ÿwßsm¦¦Yã­¿þEòðܲQâ5<çÎçîè?´0ùw–e­±ìj¬_æ« ÙÄ•£…n[‰g~’g¤ÆøùÔºì¦/I4Qúópxâ²Éo΃*#ꩆ£DæʇÃÉÓ&¿V;ãagäU§‘F„û´E"2fù"uÊ´†Ñ^aŒ†@\,¥¸t‹úÐÞ…²ò0ÊÐ~>Xfr ØAôðñ€í_ç}Ñg7lß 5†T‹¹œÒj@äZ +@H;¡ÛÁ(„ `lrÜp]gâÒ(©Â*ò³Û“çPösݘ?PLK×)GBùÅ©Y8;nW:Hª|m\äC?«¤Çm@º%„!{øüšMûéÊEXƒ·ôÁîÛ­þÎ\I î›0B¯Z TÔ[Xwò,dú®åð¾·˜ÊÇ2éþIƛԥنþò¯(.,'?·‡ÇEú„‚|ýQÞ ¬©õR¸<¬Qd-Ê›Rk×—ªãÖòbæÚDÊosÿ 2uòAù}Ô/Ãè‹þ2Ï/ä ‡¯?_û'a|cò3žZ.Ì@Ë… _J§r!Ø5&a>äÃL4¿obívbõ<…œCÍ<x.̱óñø Ë'–S¹ÕNä +χ™ð|¸Ž¾ÂªÉ;ˆÓIQÁø'¬âúÁ°ï·kkÌãÜäþò±å.äÕ =×5{µoO“ÜN-^¼]»–W³ý{BÌÓ}''øú¤øëqšŽ×çüÛI_?άø¤üJG‹[©oû1žhâ•ÎSÏû”ñû_Å™h¢–(ñd/äiÈ~p úÈýwˆ’Çõúä”Zq~| +¹ò"$Þ%ÎA?§ëo¡ýôÈv”¯B’ï¯Ékº|øYŠá”¼¨ËÄ;i\ÔåÃtxûw›©§ýkpzú¨ÔiûÀ{à+ìJß'íèÿˆÝu§cË."cÀ¼&ØlnðI ¥ñ@'ãc"õQæ[DYƒDÙè—ƒö¹'ˆò>"Êß:–KD÷ [#8ITü=+úÚvàh¬'*q€?•þMÇ1¬ã\¥S&=?Z]hç>Jä9DTÞMä­"ªÀ¸•³Ê à¯ïç(Dþ=DÕ»ì©Qâ„Í!Ä¢¶À§ºß…ÏÕcçnè$ŠX¾#_äB´Àǹe)ºžñ44î{Æ3žñÿç=C{Șú}RñçUˆº +z“ÿã¢N¥ãýséºHÙÓº=;¥ËÐ)@K&™µò”ÎÐbJ(‹–¥tõßLéô”.CÿyJçcþfiëŠç·ø;×o]¿kó+Ûþ}‘–R+­ çi1µŸ:i=m»h3½BÛ¨‹^¢—i·V·ã?´ýoÞŠzô&OQݬÿ^<±’¼–ŒùÅ¡ÌBiþñœÌJoKs—yË´iA¼† ½;˜mZeµµ ã9Hß +endstream +endobj +672 0 obj +<< +/Filter /FlateDecode +/Length 3456 +/Subtype /Type1C +>> +stream +H‰|UkPYî&IÃHl„4v7 +Šâ (ÌH!@‚¼ ‘g €Ì(„!èøD`¢¢â Ê ®Š»êŽãhQe¹>jwÖ©qÇÓÌe·¶Ãîýµu»NÝsνßyÝsÇ„6ŽãóâäªmñÛ½U{uéêÔHv¹-ÕŠ8BG¼/7‹§m•¶“v>vÉvEvh–jÖ1{±}¼}¿ƒÀ!СÎá¥Õ7¸¿ÝÀyêqCP-䪦"§«8ˆFIGEð–@,&ÁÊLO‰3{@Ÿ¹ \Ìû½Ã\ ÀÝ & ùÃéÛ Ý¤îÒÃ+ +6þì'U£§‹XúËOßö?”½]ÿyølÈÏK¦»xøږѳ7©Û‰Ñû™p4÷!};6¢ûE“ÓŽ„ý&:ØzÎÒM9”© ++ŠŠ¨?•Íd#™¨èâDñ +¢ÿB°¬ÞÑÃôìØ|ZA•”T›ö1Çþ$‚£=¶‚Ó  ñ6†5.à´S‹È}5Å–²1­ÎÚ¬²•‡îòD2´ä¢!~üÀGÅ,}ÂÆ&ï×fÐ_ ã7G@vølÍéšz“- +™ö$·ä U1 5'¥[O´6õP£ßÄ%lÍKÚeÍ g/üW ¸Æ‡‚¼àŠIŒê¦«DK@-×-‚™°%œœÚ!ùòUq†ÏÐjPJ_A—‘„õÃËÈÁ˜&k‘žŽvt ß’ý¨|ƒ6 ·…rDD·oû>“6‰¥¯ÙIÛd¾—@0}$dBöÅ‹—ε÷g¾+¹¹S¦ÉÉQÓÒ§•œœìoLOËÌËÉ«`’j÷´tËÎ7µ]¡%¥À¼…9 g¼B`)_‚—åäis³él ˆ-oÚŒÙ>ypùgp‘gÌGaÈ‹uG$r}ôñVï©s-ôA“qwnZ’Þ5£(Á˜hÎ6ï«.´ØB4çIŽ5Dl73…fce]l4|¹‡ÚšísÛÜyá2%yS +K¸|²º ZÀ]„5¤Q_¶‹BŸÈG ÿrçÃÍË%%íL7,Õi•u)”€äh6*C! @>ðõó»u'[ ì<,·Œ¯ô8„BÄ +Æ‘Ý£•/)p›æÑ'ÌýÁ¡W0_Ÿì˜ ¤ûþMˆ¤> ¨,‹b Í%-Çê-m`?ªÐ<´l]²³0%ÅÕ–2F‚Ô|ûZ±ãS¾ä?}!tÊW,9S Þ\ãåÎœ¼ÑI®…’7|wÍ¿:7^« ˜?Áoöæ§ÍõÔëgM#L_ïÙ± Ù채.ºggpýRÊ#¨¢<žäÄ;tÆÒJMt¥ÇEíJ **©©)e$yàÃ@Âp^ÁÏ‹àÃmÄ­æbÿ3Lã†úmÇ mAEìo)øÙð°xT%±Áöx¸áîؤì¾þ»¤ótïöÀZÊ' ¢|»Õ˜ãŒ±.jÌ|^»]—šBï$$ƒ¥üTòà³ÂùFS .u…½Ï Ï)ˆ{ýw°}{;Êøv¦ÕvÉÚÛG&nío£{ÁCÔ˜]çO¡€Å+‘ýâ?+Ha~Èk/Ê¥gT +ESS2-é­b¡¡Ó`Ó§V1l’p&çŠfSÿ€ üÅàùmôܬý"“îDbQCçÈ™!ê^]A!ó•}jF³¢‹Lšè7.?HHŽ'‰¤ P‘eÕe¦r:·\»7Ê6œî¸Ò×ô˜‘¼7‚; ÎW(¥Ðé?ã×B¸ôKHr–¹ËäØó#EC?E…¯ ˜o˺¿";J¯ß­eLЄÓƒ„ôË“Ò”Ió½sžOÓ~Ûq€61;&“D•ò³ÎóùŸŠRÀùÀ²¬ ¯*‹RÆôþôèzÿDϹŠõL ¸ŠNîIú:B±ÞüSg‘ϯÿ&²êcšº¢øé{€¤n>KjŸ¾§‚ Åm$Ω£›U•9 +¢ƒðéÊW¤¾Ò¾Ai Ø­|C'”)qt…0Tç¢1™²%[ÜËÏc—%»…lþñ’—sï¹çwçüιÁ°óöM³­{ º?’âšVÃ:7öœšPS.ÁgA!Af=ÙSØK#¯Áh—‘E!¿mbrª}¢1aÈf¹B }ŸþδL¸IR.|•b WyQ¯a2ùle—:üx¦óÖ·ƒç2̬QkÐêdb‡¤Ó þ|0ø½xÂ|à)TA¸¤ÊZ}¥[ô!ðFï¡ÃûQ"ю߃aÿô=³}ŠÉ_QééÓŸ'ÐQíC<æN,é©jsÓ“¶“ÙXYA¸žAú6”©ªU³p˜šz?X|Òwp³“Îö®¡æ}¹¡V#¢f.å+«2èSÑê”$61ù¼¯ “ŽËúêK½|2pm¤¯£0ÝÂuÆ2LÝ<¾áß°É Õr©QîtMøœ æ`„´mxŠ´X[¯Ò£-éø!ÑŒ7 ’ÀF>EžÊlž+dò/•«¼ôÐä„Ã3†S=€}î§ ç'p8ùóÂ)ItZš"¾?ebÒ98ƺ*ÓÑô’ÂBµ´ÛxAá>þÁÈpnXÀ>X~nhÜÐúI«ÁVSÏ4™ì}ôpSZ ‹Úð¦«d±±ºŽé°4·8èáæôH5bû k#g7džÓ©s¥º@¥ÊõÒ®B…#‚Þy&>¯ˆ-'(—nZ„¶¦DSÔ‘ÿ¹á^3ºLÌ,ô’6ãåêZ71ö~z¤53Ê]îŽB}‚È] ñÊ"<©Qí] +ùïħ>Æ.ÓHHO¸-$hO€?ÚB؆k—ÕÏpÇܼéO´å%¹Õ~ôОœOâ£ó&δÎLa™¡ á––,÷ºCÌM …ÿ«MDnóHÁý +¼ŸûK ú%@“ŸÊè1yÚ;K˜N™¢Èð¢\!±,&3n='=Ù÷ÑÁÌ„Ø´œÎ^«¯­¬«—‰×c.æa7§êRu,E¤ŒË\LB9i5Ö™j™áZgû8ÝrY_ac©ZØKRÆ*µÎPB‘¦tÓû?/BÛ S’)a¯L|\oB ¬ô¸aNØïÙm—¨†¦KïÓüðÁ¯lå÷©_¿Ýëu¢¥¤®QÖÚlé¾QÂu0‹ÎÆÚ"i$yÿà¶2jà8¼‘á5^\¯-’](KI omÊfĈÒ@ z«P @Š•{Ê™æ%A‘H:ÂÈ°FEw£¼r½hœ¾1|ÉÜÆR°ŽÔkJõçé3¥ö)ü:þ¤›`=)þÒ»Q »¨WY„^*Ç‚Õ +9&àÀ‰Ð BRDÔ€&‰O瓽*~H7¨úR¤â~ìçQ#8=kÜnòÅQÚ¤åeºr-¯c¸ y…ùee…º"ý +–ŽVßižpÝ{ô’ÿ‚)Š!‘’Wòi|îšr‚·kºÎã ”Šó àÉ°ÑÃ.„{Úý„pÜ{ÏšˆGWŸã*K€ôÕâ»h#ÄVYŸåçf¥£Uh›T|Ñ*pV´Z­v+R­3V›Î[aû’É ›f­ÞL[Òi_oƒï +ú€|øZ|}…«³ä_3ÔM +endstream +endobj +673 0 obj +<< +/Filter /FlateDecode +/Length 650 +/Subtype /Type1C +>> +stream +H‰|POHqžŸ;³³æ²þ³ÝrHEëŸ]5A%tÑÐH¥í¤Î¬;äÎÈÌdzFY‹FH‚èEÂÂ&’ +‚¨¼TD‡è¢„]Dx£¿%šÙ.z‡÷}ï{‡(:ByÏ766¿XrrP•x¡]UÊ”^!¬È‚íš>dæÑæ~7GŠÉØnÇî)Þd‡ì·;Gr¨4„¾®‡•>k¶'¦ãŠÚÚÊR«RX]Š+ËËËSX…ë¥KÄ‘AMãn–»µOQy]‚¸¾·§"4¬Šš¨öÛâß‹°¤aQÒc¢ŠyË쑬yU°®ò‚çÕ«X±hô?«°$c+ Ÿ‘%›EtKÔ0/ !+EIméV®Éº*‰Z0Ô9=Ø'â,ˆQʪL*›Ê¥8Š±>GµRqê%õ€ªÄ²¹¹Œ,<¸ìHÐæÈN{rÄ cä5Gêà!N‚É +6I>`“ÎŽTuÄâNógwÄf< h Ê5Ì->yº²*ÍñÝÑ腳Ϥ¿gh³h4 à‚È;‡9âk#ÒFŽ-‘j(Úþ¾CŠA˜ûïš{1^Kü$0îêø¥£~(¹;µ¶àó$€5›!¸œÃÌÊ–\eŸ/2Ÿ~|þïÆ埤¨=Ò?/œ>ÄLÌÌM.øVg£ç‚M•ÕØßRÃe=SýÚ†›Pœ¸žó@ƒ+÷låCèÝv‹é%9,‘’¦4b ãÜ(»˜ÜÍÇóã³ó®{Îé¶ó’}¬ç†a0 ã¾á$WŒ÷kI-iÆp‘¨ñÅH/œêêt§'Üë{`oÆú¤ÛmÖåÁ÷G€G^/¬ +endstream +endobj +674 0 obj +<< +/Filter /FlateDecode +/Length 2696 +/Subtype /Type1C +>> +stream +H‰|TiPgîfè0Öd—Ù!fÚtbJDNQQ5*—"«`˜†ÛPܨ §Å¦@ƒ" ‡ˆÈ(Ã’ˆ‹\"AX¹D£ÄeËÚ¼©Ú¶R•_©®zë{¾·ßçy¿ç;pÌÔÃqücïÛ¶m[³ûˆR!•(Öî‘G&ÇJ•Æ$ÃR8»Ì”]¾T„QÞû÷ï} ¸û!¼ýsëò%ï-0y¹=!‘«ŒJ’8nÜèdgŒ.‹ÑÍNâäàà°]$[e árIÐU’àO+ºr¡ºéŠêbT”òð¡ÈÊÄFFp^ÍöŽe§X€v\x´–ãóôç¤p­ø¬Ìˆn"—d³EÃ8°S<ö å0Òçò;Û ø–MÎÂRñ«€7Hò¹O‚ü}i7QUk¨½KÍ^öób²l?wC›ÓNÏeÁ|v¾íÙLN{Í_µÖ‹Ô—ï' Sà0:ónÆûž{)“ËÎ=«i¹Ý/ |‚þ²ÃK©TÐ|ˆòK:©Ñú°}›¢}˜P/)|5>&sÈa‚s¢¶#‚ò ¬*U2F‘æp{„Ãü4Ý1O‹Ð}RŠz‰¼Êšü+Xvù»å0._oøkyi"ìI¤ÔÝK¢Àjî5Ǥ]ûk˜ÊˆÂJ•¦Ói˜*p' ‡h³‡áôCP ãO&yìv™•€j‡°_׳r¦Ài(!5çÕPöj¹ÿàä$ï‰å$\ O•Wf]¤ÆWn0 çÚ»Å÷’ ‡.ÓM¾å®ÔŽ½'¿‘2“¾¢ü’š¼fêMÏA'{Ÿý+âU¹gRA#Ǩþß1êÇȑ̦¨rûïÜJ SÍ^iõ&ÿtìAlû¾sfyü¡Ê®»ÓâÎÔŠZºYê_fOùûž:ñ53é'Ê/®Ío¥^fõÈ]Äûíi'R‘ñmbÑ5qÓ§ÜÞ¨š†R{)p~úâÝÛÀ[ˆlcì›ÂëzÄ7o½ìÖ§¤WÐB}å!|ZRº“B¹lYa7°LdÌLTS¤¯x×¾¯œü÷”WÊh¬Ô±ïSðÇSðhŠ÷x~½hÁŠäï6 «‡šýÄyÁšl}¼V;zÞ‡54kͨµ½ÑjÈîA¯EãHÇ…v£åÉzݵV1xñg#ç_àÑÃty QÑp³XO½-ÜÁd𑎵2 ;:vþ<ØÙÐ\Mç‘BMqÜDBà ]Fæ :<-"—: ¯¾ýàeotŒ`oÆ{€7s§gõs‘V}<„Z³}Lç^›~ž) ŠTag÷QÈéS„![dóÚVõþ£´è#èÖÉÔ¬Ç Ä¤X4OCÍ”ÐÀ®ž¡VÿjrHãV +-Ymƒ\s´ú… ˜Ü½öC5Ëõ–ïFŒ™õY†ëbvŒï¼/JËJÏL§…¯cÁ²ÊîËÑŸùáÙL_{XÐY&O›£ÑŠºŒØÜÖ=xós(ç±á å|›[|N<-9!+WÄG«Ðªi[°}ú}iq­é!Ò¢åZ_Êù3| crzDÝWǦ©·•.AYŒEro‚k?lÂÇ&y°Å’uó~d~‘ÿ軾ÇUçN<Ú)Þ°åèɲœ³gŠèöR}Ëmê_5^[T7×øànÝ⛡9L'j’“Ó”f:¸åL +PÇ’šòÀ-þ ¸í”ð¸Z²©Î ©Ü£Õ6ï&ŠIRÅÆU¨ê+*k³˜:ue4-P,Ö@§Ì9é—_C'Á›Ôw€;Ò¿HÍà_V$ZÜÓŽU§ýXÇé•ŸWχ[6ö;ʵÏ9:÷‡œ©Ã7±ÂÑaË n-%¹%gÎÒmÅ-m·¨þ† ]Ÿ€N~i^i~}½äê•j¨!ÈžAÕÐ̇Ív­>a1éÉñtŠ&U­I4Ó‘·Õ!-^”ûƒa‰L&)4œþ‘ð ó"rÂC~óÏ(k´OøÔè_›Q3¿6”è¯Ýáüóæü»<­|ØdÝâét LEëH¡þÔ3bËo<7´}ì’>îrÁÍ<¨cÿ&Bb+;´­[9üéGØ6kçÃè¼Dï®YoD¸ïf7W¿gÿ}©ó?V©ýóÍûEv÷OÐøÑ€wÔâ÷¯ãìÔûZâ÷›[¨ÃoË÷õá÷B÷'3îû Ž^ŒZR Ìø +ÍÀß÷ಢw­¼~À÷ÍÇàÓ`µ7«L£n³¯¨©¿¸®{ž¡Ë›p`™Z#LK=Q´[âlÌs¤tacmkK_]œqû@Ó÷÷Îèáèøìû@HÖûœR”`¤qs ¬~´­¦’œ‡Íˆ€zˆtZz­Ç÷™÷Îû÷»€ÔbvøxwÑã÷|ã¸ørøx3û½{ˆ{†~d{bbP;oÉç÷ 3û¯û>æa×á¾¾²¢x<Ùˆ±Š·½u‹ãHvøxw˜ø^p˜øx÷Lüxß÷Røx/-û¤°{_}c€cˆ³~³{·,÷¤køxw”ø[”øx÷GüR€„††ˆ„‡‚w^misxqun}u„¡A¡¶š¶±Ç¿¶àÊ÷:÷÷í.+û°hf‚n‰ƒ¨±€«!÷²—øx—÷.———£—ûf—Ø— b_ ‹ Î +ã ã ø•ø‹ —bMR +endstream +endobj +675 0 obj +[681 0 R] +endobj +676 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +677 0 obj +<< +/Filter /FlateDecode +/Length 368 +>> +stream +H‰\’Ïnƒ0 ÆïyŠÛC’´BšX+qØí(˜i„(Ðo?;®:i‘À¿$öÇœ¨¬ž+;,2z÷S[Ã"ûÁvæéæ[¸VìÙ írŸ…w;6NDX\¯óceûI乌>ps^ü*7OÝt­ˆÞ|~°W¹ù*ë­Œê›s?0‚]d,‹BvУÐKã^›dÊvU‡ûòî°æ/ãsu “0ß³™vê`vM ¾±WyŒ£ùG!ÀvÿöÓ˜Ë.}ûÝx‘'”ÇKæ’øÄ|BN9'¥œ4aNˆ3æ 9Kc@æõ,¬™Ä¬Ÿ‘¾bMEšŠ5i*ÖQ¤£÷1 óº묯I_+fE¬™5±a6Äæ1ûÑäG³M~4ŸWÓyõ™`nا!Ÿ†}òiØ!?†ýòc؃!†¿…qÿãÔ¼9òÑïöæ=¶:\¯Ðcêî`áqÝä$VÑ#~˜X³F +endstream +endobj +678 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +679 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/N/P/R/S/a/b/c/e/f/g/i/m/n/nine/o/one/r/s/space/t/two/u/v/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 840 0 R +/FontName /YRIRZX+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +680 0 obj +<< +/Filter /FlateDecode +/Length 301 +>> +stream +H‰\‘Ínƒ0 Çïy +ÛC T !M]+q؇Æö˜.ÒQ Þ~N\uÒ"‰ó·c[žšçÆš仟T‹ Æjótó +¡Ç«±"Í@µÜwñ¯ÆÎ Iâv;L¢ª@~s^ü +›'=õ¸òÍkôÆ^aóuj· Û›s?8¢] ºzéÜk7"È(Û5šüfYw¤ù»ñ¹:„,îS~Œš4ήSè;{EQ%´j¨.´jVÿó§ËúA}w^TY¸œ$dD•3ç‘3æ,ðžyO\¤‘ÉóyÏsæ&ë&¤ +Ÿø`€Œ’x +endstream +endobj +681 0 obj +<< +/BaseFont /GNNSHH+Wingdings-Regular +/CIDSystemInfo 841 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 842 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747] 134 [891]] +>> +endobj +682 0 obj +[681 0 R] +endobj +683 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +684 0 obj +<< +/Filter /FlateDecode +/Length 341 +>> +stream +H‰\’ÛŠƒ0†ïó¹l/ŠÖCBA„b[ðb¬»`“±+¬1D{áÛïŒSº°ÍòÏÌÏL¢ª>Õ®ŸeôFÓÀ,»ÞÙÓxän½ûDÚÞÌÓú7CëE„ÁÍ2Í0Ô®EQÈè/§9,rs´ã¶"z BïnróU5[5wï`7ËX–¥´Ða¢—Ö¿¶Èh ÛÕïûyÙaÌŸâsñ “õ¼g3f´0ùÖ@hÝ Dã*eqÁU +pöß}’qص3ßmEBâ8Æ ¹b®ˆÏÌgä”5)iÒ„9!Θ3äŒ9[ùÀ|@ÎYŸ“>O™Sdµ_7dÖ(Ò(Σ(Ê™sbͬ‰9¿¢üŠ=+ò¬NÌ'bö¯È¿º0cC +͵4ÕÒìG“Íu5ÕÕGæãÚÀG§¨•8qùœ“¹‡€#ZŸÅ:šJïàùrüè%FÑ'~¢¥u +endstream +endobj +685 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +686 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +687 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +688 0 obj +<< +/Filter /FlateDecode +/Length 6733 +/Length1 9876 +>> +stream +H‰ÄV{p“UÿÝû}_mH›¶I +}%M¤IZúHŸÐ¤IhÁ¥Ô¶`iú¢JËC(àZeq‹ˆâŠˆ +¨ˆU¿VDÄZ)PWTäᮬû˜gÇafgÿ`vvÆíž/°Â.«ÿî—Üœ{ν÷œóûÝóÝ0S°Ì_”•=µxYþH­ºµ;Ø[#×å,þѺ~eí %’-³£wy77œ ªy¤ÿnùÊm›Ž~hRc ³=ØÖñTå + á~ò—ßIÝA!ŽôC¤§tv¯ë{$qvéçÈóÊžÖ Âÿv °Òz¡­;Ø×Ënà;šúÍ·¬ +v·þyeéƒo°·gíºÉ~±H[ Œ÷®iïÅÒ¾ ¤÷*þÉÇø$š»Ÿ­&ì7¥˜Žp®ÁO<XÒVHIvÂ`WÉÂÁB#1ÄõØ4j*Ü2’ä¡9ÿùР J*µF®›¢ˆ4DEÇMæØ©Óââ“,Öd[JjZút{†ÃéÊÌš‘“›çÎ/(,*.™9«Ôã-óùË+³çTVÍwOõü kÕ.®»·¾¡qÉÒûš–5[ž}îÀ¡Á7Þ:ùλï=ýÁØ™sgÇ?üèãóŸ\øôò¥+Ÿ/ß±qÓCØubû–µ;ûñü› 6|4”ÝÖ'ðþŽ}ÛÐ<¼§ãêÓû®\¿zMOo÷ªÏðÅl^ñÐùXk{×3/ì{ñàá—¼ôÚëxuhX¦Å¿ ¶[ñ"ò߇X‰$^ôc’YÛ#η[““§NN†Ø<ÄjBÖHKôÖ»Ÿ\a³cìÙQö­ò!Ÿ"í¢ +jh E¡£šÕ#‚"…hZe„ fÄb*¦!ñH@"’(ªÉ°Q-¤" é˜;2à€.d" 3ä"n䣅(B1J0³P +¼(ƒ~”£ÌÆT¢ +s1÷ ó± QƒE¨ÅbÔá^Ô£X‚¥¸MX†fÑ‚«èÃFlÂf<ˆŸá!bh ¶âalÃϱhÜA;òK `'Å®©ã ìÁ“øžÂ^<}xûñ,žÃó8€ƒ8„ð"^Âa¼Œ#xƒx¯áuÅ8†7!cÃx Çñ6NàœÄ»8…÷0‚÷1Špc8ƒ³8‡q|ˆ_ã#œÇÇøŸâ>ÃE\Âe\Áçø ~‹/°ëô-¹ë°Êg5ÖܲtcZIö í$—£ó‡ÙÿÃC×]–xkñõþßÈUTm‘T!>,ž°OdO~Eos°TÚÍÝ´Ã;h×û©6Âb¯ƒê£‰j¦Žê¨šj+@±fQº©BíTµVu”jL: ¥Kfñïâ—¢,Ÿw‹›Ål1AÔg…°°_Ø.lê³ ÂÎ'øßÁ·ñ~¾–7r;dÙ8eGØ–΢”œ™ŠÎ« ÊüŸ¸Žkøë.ÜA& ·ÜÎÿÎÌ«)g7¬^“1&:Ê¡Ÿ¢ ÓjÔ*I8ƒs˜êÝoh°ù:ê\ÎaºMüµ}2õ梆˜rXFƒÌü‘ÿer9ô•y†Ëyó‡µÈ°ù†˜ê³,Á6YH%i‘E¿-hiòzjë­ô Áß° ^鈩–@§¬N­ÊXXo“%aC\°­aQ½-ËöM\–íÅvü¸÷`ÛΔR}žkw-ö|2¢ÌE.çÁ¦»ÀoQ’¨°«¹¼ÙçrVXdÁæf\ò¯÷Ûü6E›/VW°’·ØŠ.Ù´„ò–Ë⨯tå@œ<§¡A–l>rÁl¾.™Û|².#Öå´Tt–»œ§èp”&Oû(‰aƒEZ,C\ðÙdôˆ0om½ìmnP⹜4ä7ø)Ýl¸œ™.ç¸Ëé‘c2\àÊ ')©@g°ÍÏËT:¨Å2:Õ\Ü+ÐØ^5ƒŠk#G63¬«!£“Ûú½O¢KÜ*Ž~çSîC7óð&®ø2{#ã©£bb+ ‰I·VGXÕnûº‚yÆÆn^¯Ò¨x™Îá6o£ŠsmŠ%RHM2áE:]˜ÆÄbYÖ´b­Ê“—)xs³_6ç…L®DEeZc²N¯‹ÊJåy^ÄVgÄ™$¯—0ë5©ãU¼‚b;<‡Ã1#;×]Ê y™,ÝmÊÍ)0ê¹Ñ t“í¶)&‘™i¶d5MwØëuZí Ô ^h©ðDŒ´,9gðÎ]vòdS¹Ï`ð•7<Þ4Ûyã¬Áãoy»J2æ· a3s¢y@,Í_5q]£a%eyQ!ƒ}ŽïFzY¥U‰b7䔲]‡Ëæd~ëχ¤'væ¡Â[œÀJYDN ‘ÂĹY•ÙN¼IîfÅåZ'KcÙ¬ÇZl”*óx ›ÂzËÕF¯VÐ;<ŽÌÌ|B˜?•å¬¼ôLb!Ÿ¾%Ìd¦w\­gj–ÈÍÆd–™h?ú·z 4ή +A½_ïÕ›ôà=b¼.·°T#¤Ej”Q,Xí_É”:€Âø©x?Å[mÈRÁe”¡ÇVÐ(Šˆmô>wgÀ0ö´nþZh±(ö@»Ç¶­_»Ò4y ¼oÀØ\=tŒÆ3è²Û`$ÑsACê +ïsŸqÓQEõjŠ6ŽV¼;ÿúÕçrª^}ôwâ<1 ÉOTÅjþÀ §U©-1­•12AI˜ @8§Â_K³‘Ôwsu(…( Ô Î”kUû²9QCüa1”úŠÕPšÈãæ }Scñ»9;MQîr£‚J½Ÿ“ÛÉ}í‹È|W©ÇÃC¶:Ý;>3|à ¿O’ÐÇæÉ¡ Éñ‰Î}ó$Êu²õÁ¶Û{.îÓÇJt¢åJ š¤Òè±ÞI)dTߣ¿PÛ`#ÅÝŽ4ky*z¬„=èd(2NÈÌðYãvJÐŒhÆiÛU8‹ÖG6µ­Ñ>ôLk”1Š`Wø5ò€¡-"¹ø¬¤èO–{ŒMTv ´JžBÿÎrÔ:4Qä¬gêÑÎZȯ_Ì“;žÉ\7t`ÀŸ¿V°‹K㦑ñ;·†áI¼‘(Óµ¥ÖÔóGc­áÞ}’\N\± +Nñ“ÕÑ3éÄ´™ý¹Ó⊽Â}ãæÃ_6DÙU]èÌ +qRnLU¬e¼Ð +D1£Z-¢€Š’'Y4ÎB¿2 u4VÑ_öòðl¢¿°Aˆ>Ð_@ž<­y¦w™´¹á,àÛõ zUÇÎN’X¯wÐ[·>:Qo5ƒ/ÝÜ»pc¡>èÝÑÎΗ2§£Ï¢+_ß\d¼½Žœ©ÙÎ|zò›§JóÉñ­ãîTîôÍ_—3D»%~ Ú*Bv>¬:^[t¸4A!O¨€öw†·à’ÄiÍ ì„Q$ì£Ph?46‹:RZƒ4$©b²ÈÒfx(m9lñZÌbS×|ŒŠ,t‰©Í¶ÄQxy·ÁX n“ñ!©ÿCîbZÒúëQaÂ&‘Œ™·#òPžç,~Êä™Î•Q8L(Q\¼»E‘voÀá°­\q%NýçÕ·ßc7õâؽ׭i½ýOí×}¬3á™úÍÅFåì;„«ð¥S-_cdÿŒf깆+ÿ¡´Çò?$ Ù”gÐl© ®ÙêÄRóƒ³î6”S¼Î"ÓûBâžùIÏÔ¬~à••j0X"ìÚîôÜèËS|ûÂÃ{VÄH¦ë°{^÷Ýý´NT•Tkûœ”à?ÙA%DôþD\Wv‹ìÖ†›µ\z7ê|o­ôÞÊÙhPÔKu4±í&—{ë“U9à`C¢€&ß³‹½¹tœm>Îòd˜Uªí7"V¯#âA‹–£³>,†ý„|b0ùˆä´&™F‘3ÑäÚ0r¡5{”W+Ä¥4] ÿc¿Úc›¼®ø¹ßßí8Žíø‹ßñÛ&qìØñ#¶ÉÃqcRòÀ”™.ŒfM qEJÂc4ê`ÊX·RèTCˆNUbë6P[AU¤vÛX…¦ªLÓª©B«¢išèT¡ÎìÜÏNˆ:iBš´6ÃÉw|¿{¯Ï9¿ó¬4÷_ +¯f“‹f$Æ°b1_%²ªM!ýkM/^Ñ\ðg&:»š8…¡¥µk~.-Ïl‰ÌÖxzì +†•*” §òÁ\CR³xHãõØbÚÑðI(¬˜jLï¦A(pAêêî°o¡¾jð@kƧM°Xul •4WòJ3ϸôŠY¹ xÙ­,²¾å®- O“«TêÔ´a6Å×X“&?½îèåå¯ýêäoÞ!9Äñ®÷1™U8!räØï—äêüýÓ·™´üòAeL³ÿª–#å aï%õƒå §Á®3ЛI:ÐY ŒÕkRÖ`ð·…°ò‚Ø¢hæ˜(æ½ àQæV+cP1&2õرu/KL»Mj§© '%êÁ[WbO*–Le¾¢4^íb!†ÎYu‘\Ëkkp†Òzìj[hã.囋ÉüÜHðD×DgÖ,ÚÆc™‰¨39ß\ÎÇkÉ×™R}jµçT 18Ò’i‰oÛ—½ù|ºß¨1¾Úܲãx6=óh ¸œAn³c·¶>Óm$F¡&&É-fQY+wz“¬¸¡‡f:¡u£~7W'Ø–›9t»U9pÙñh¿m¨«`¶âf#™p³ÓyuѪKwtyÄ5F[ãÆØ6:\|óD]´‡|kØŸSª âú´C~O•+äÊ>Q0•y¯tÿówô¦d2ɶ&—A§æˆÜ#(ìžv³’—' º·4ð5ù]öF«AÔ©k8ê±pšµ•††ytv«ÚÕŒGVw¢´È¯ÌwÔý‰C]*£skØ·¡ÍÞèܼϑJ©œ—æ¾;]+ïä´ÆØPf4ÕôÃ1¿Ã¥õ~x(·¯%ÃìµÛÚÕõ¢­Öº«'Ô2VŒ÷~/ž›6…“f­Íâ´nôøvMÅqÔ³óþ_™EnìÉ4ˆ‘ˆ‹ÔN«U +§"£šÑ)ÃFŽ™ÓÚ 'g=u¼ö˜_ò¸DTpKŸŽq¨êxEÑV5ßYWû®¦=i, nÝ,2g9ïú7‹Ö.íÒ3ò™ò¯~=­ñvò»ÇP¢Âý%.‚qƒþLG$¬ÉÍ¢• çvDI«Bô)uJ^á!¶E«Ÿ‰@šo¶øzôÏìm @be¶‘bÅ+E¯Z9i´Tûã¶å å^é™+I\H0·ºG·µÎ*½­Î–Òi“Fé/LÚ<ÊÍÑ*Îöö|{""_\°ê×¼N¶eÛô9¡Á'¨÷”ß~|Û0 ¤|\Ö×ÒïÊïuw`ðH1¿ÿ{‡íÆÚï˘õ.¥CÙ¨¬Q‚¢Ñ¬×¨øMn:»TK>ý„°?¤㣬QÑí²ôÚßáЉª4T .È\N½°Nß?ùeØ9À¯µ2õþš}|f6mÖÍnç^!Sçƒl—ór-WÝ=özlgDÌq\Niž)z··ìsèý1g¼‘ÈÖ‡I@!Z”Øý*ün»Õ,jë0mÕŒÅM,‹‹Ý,†'J„Òù±›•"ÅÅ™‘Š.¨]œþiÞXœ óúXcì°wr8`hŽ?ʦ]æd‹[¸ªõØ,½[‡ÜÍκ¯u¯5ïüÉB\ž÷tþ¨õ‹FUVt¸¾2Ýe¤+ïÉ™t¦¢ÎäÜ5Ÿå8øù#1ªIªd—ÐÚqhÏ„¼ÎzÖM|=«N×)Í´çâ°‰N›ÙdÀùQF f“/Š*µWTB/7D%§F—!+(Háj!´*¸«04Õ©7O$&EcÖkTDú|ÎòÇÆ5Ýg‘d›æÕ³ÆP&UšI¨õF•¹É^þ¬ïü³½Ãuº{''  +Ì»ùfŠÎ¢j+÷“S6«–BÃpòÝæûÙ¼MC„¾ñöÌúñºŽÏ€•Ã¿~ÊMÂAY÷É°úTOðö² \øbA8XAzÕç–lÕkÁ#ŸÃ5fJä·0ÉžAþ<\‘ÉaôA ×2Y\7À,?Jd¸×É…8y™ëàÄýE|ÆÙŸâ]û`¿Çñ9†ß§‘æñû{FÈŸà,’‰ïÃðÅ{èãÿ%Ùu8ǃ~î$LòQ˜ç?€"ׄ²!€GWÅû±ÂàÙcPàÆ $èðÝ]é}‰›•ž³|vB)xž»‰ò?'é0(¬…,÷ ®ßƒwsx—‰À—c?‚&æ\A'9 ê2 cx?•y‚•á9 âwz˜PF`°wÄwø»ìžKážY<ƒûÙÚë èÄ3<—™ OíÂy!…6ôÐ÷˜irŸ×P¾›hCÌßðÎCÔN?ó(wQ’íþf +íp¦¿¼e)Tï-¡L Ü"œÄé«Àȉ…} +H§ù·Pž% ëÚyâ‰6 "Æ‹(?½{‚êŒçGðwK(ï êÞOïÅûP}ЦóÒù“ø±¦6ç®A¡Še‘â)a؇ žÂ<ƒ{%ÜîB‘bI÷®Æ’>%<Ñ(Ž7´á ÅP:sÆ„=¨7ÿ Êþ‚¿³ˆëQ˜¶!¦¨'ÅRÒêzåóB–Ú ÏgÙðµDTF/êýT廄%]G<«~@ϦÐV†‹Ò¾Y +²òT×зßGÚ ([åËJhmøéÙÿ‘ÓGÌeôŠw÷͇'~#§ 阛nÈOUH©¨a^{@ªF€Ú'Ô£HŸÔ-UHs@û€ÎP¢×Ÿ«~@ÌÿŸþ‡ˆ–°[°8)ÖPal@îÄ5úV/¯:-T;`Ñq´UžCÞSåeÈ·Wy©wNœk…'àƒ]UžÁôx•gqýl•çÿE•—!¿TåñN¢ëٟݳsÊñôî'fg‘T*’ëx¬gC`xû®íÏLÍ”²¥];n z`?dQÿ0xvÃ0‹ÿÁy&…sÐ÷O1ø2„Uú0h30$ÝžÈPTŸÇÔ›ä§0õ¥ÍÉ©‡šª˜!ô¿ÊX€ƒ‹‰¨¯‹E¹¯r9[¾Nsy¹¯!Cïf›VYmm€ÿ¸ +endstream +endobj +689 0 obj +<< +/Filter /FlateDecode +/Length 4333 +/Subtype /Type1C +>> +stream +H‰|UkTWîf¦»A y MtÚgÁÊ‚Aˆ Aafx 38  ®€Æ w7«./…(*/Q\ˆÈ‰†(×U!Æ,jÈYŒãFw«Ç‹çìLÎɯ=}N[uï­ª¯nÕ×$!·!H’tHT¹Ê[½Å”™¢Ó˜Œ¾‘ÆluG”~CJnrIåÀ¡PT=U>öz·œà•ËÍ©®u®„œ$åÌ£ÒÖg¦­Ï^dÌÅÒ3òÅ÷çÎ ô±Êà ê#LÈ`1BgLÕ‹q[òòõ9ybŒAk4åM)ùzŸ‘-N¸ÈMú<½©Àj|›—˜™'ê3ó3ô&1o¦gâû&½NÌ7¥èô9)¦¢Ñºó+5íÿ„3 "ö%Æ2­Z\>6æ‰)?öbœˆ¢5n6ä›2õy~þQq«¶äêÅ9¢NŸF$þÖ‘˜FžáeC¼Gþñ>AQD¤¡–q ¹—$Bqy 5¡!tÄ.â0ñoRA®#¯Û8ؤÙ<”‘²r¹\¾Hþ'ùåHQ¨“Ôkz%ÝÃLe˜¦Ë6À¶ÙŽ·Ë²{2h·ÌâPØ|4 i[yyCó‚ +’ j ø£H¡1Üç­áÈÍܡѤßY•x›;ïôólcEUHB)ÌA©;Ì°¨+~;ÿ(¢Áù:UE³à"KÂ?q@©Â\Pys£‡z:òà J˜4ï1šž“–¨êF$ÕÜqùx?¿-%A(ŠDÓ"4|²?ƒ“w€h Á\áø¡©¨ë<ÉåuÞÙ<ÂÃÜ#À<Š½¾ F¨b/¾>~¦ï¶rtá]$„.È3éT­È†ª;ÖÿéUþf›A·jiѳ Aä­ûëMòD­>L­n®É0(ðÀ–„›à)“>rÿ¯€^ ¹ å 2‹ÔL8‹üäM\ó¦5­ïl<7e]–R®Õ)‘§5_{Ђüp!á9Ȥ\‹ŠC¯é è)µïØѪS<¸_MŽŠÎ‰Õhj B.¢©¢Sƒ[ð°èåÁq(§/±]hOŠ­QóÛJ*Ê· 5?Rð{{–C!/Á·†7ăŸLJ²Ìà~W¹¥ÂX>}OèÆ¥ÛÅK“§#V‰ü!"àÝçÿxÿaD.O.ÊÚ¨*£ë‡nÜþÀ‘ª†Êz³- +WsQY·Ë„†ªƒû>Qµ×v=Ëßj[½"&31ÞZ© c¹,­—]¶"q+å j?LÁl¥+Ô3 ú•¤ûɵ 7ÎüPàpé£Ð\Ê÷ó0i$®/öˆPÍ(†o¶µ\ëW>ˆýù ÷™‘ÈfekÂ8/F1úAvrüeÐÌUýá·2ýüÅJáâ‰S=5ªÛÎe®T&edÄ«Ãe’ŽëÿT«MÍÞ˜±CX]§=~^yöXG¯ŠÝ‰‹Oáù@,ø˾ÛÉÕ››ÍÍU/ö=jè·½s«û9ðJð 74yL‘¹Ž-›ëçê[N¨ªÍ%‰Æ”ÔŒ¼uÅIe9å[+Šªl!FŠån7/‰**Û±g§¿ÝP˜Ê«s.õ _š;/ôòó¹ DXöóŒÂ-ëö +×̧ø„4}üj뜢!ù„¹ÏœÑi5ë&ÌìeÜ}8÷f + +]ë%¤–‚!‚ëEÌ¡‘ÞB¡u4J}BA } "¨& ¹.ð cÎ쿲¿Ë¶ŠÞ¯=¸ö öò˜Ì–ìWi¸’'!X&W’³fG¦Î<¼÷ô.8öu—· +­àHÕ䮨 ãÑ4¹¡­h8 é°ý›/jkŽ l$fgŒÎ…_™”.ùr¨ëuà2ü&DŠÄóÝ‚ÏTÒì|Œä>ì÷óáAwL;G`8£=Øxß Ùû»À 7±=,x›"ta.±ØIîÚ‡ì_¢wéÝ%ƽÐXÝÊu§©£Ö¦ÎÛ¼­²ºX`·c¿ `q@MøùÅoÃzÀ|"¿!ôðœºUŠl!€.n.ø¶`hëÀ¦¿¬;d[Í|ÖøùõÇÊ͵mªÎ×ÎàçEîþ8Çòàªp¬ÓüßÌç²ÕJM²>\µ‚f£w`ªþÐ:âøu<1cuµrC…Ã<¨Ÿ<êû¸d^n×êVžlk¼TT|LÕNTƒ6®.œGAÞAˆ™uW rðÐЖ—¢\ŸfX¼4¶±1UÅj0tƒ kð3ÀÜ X·ñZä1¸J•nüʪ jêÌÂe!÷â(±Ã54æÎÞëWE,ˆÖ/¤~P¬‚BE‹¨TP ˜ $&*šùF@ Z*~ë¨]tÝÖí®ë:®SÝž0/?ö$Ž»³“ÉÌûÞ÷9ï{ÎyžçÈnb—èÑ+nb¥Æ'Ñd÷¿|Ñ!ƒß¿dÎ&$>ãbšLLˆZ¶´úÍõþÓ-ÜŠÉ5Å ëåëóu.M&MaS÷Uv ýX9ªç…ùè¤2ƒÝºCî>Œê‹ ë=kñôì çdƒ,šŒË æÁÛ°ð5™À®Ùœ‘¸‡×A –`ÃDë"u»9ðƒV‘Ù`2š¸‹æöæNöþÙˆ¯xÆš°«¹SÍéNèMf‰ø©‘ä 0Ü +~Ì]Û<øT”Ÿµ÷ÐNveD߯ü¨þÊà({¡A«©à™¶Z˜»–Ý Ç“XêE&™dÞÛ¹0ÿúe³¥ªTà6_f›®öK´bÇnL3'":úìþøÓ,™0ˇ,1àyˆÏË9àzc¨q ™3âé¯KéZu×$¶aï¤1V¥^U¤â¶åïJO`ö_ùó“ó?ÞíkMÝnâ ƒJ#ªAðòÝ›·N­ð9¬éÎ65lF6©©—€[L&óIPù#ù”ø¾š Ko ›«ú9ùoåöDm ~æF¯'ê÷$þdúÏ^àv­¯¦³‰7î¦ü£“Woü¶²"K'´@zñŽr„}ð°¬÷*?`­|ò ÔÓÌÓ‡ÆNc3GüH­H©Ï)Tq;Õiû’Ùu;òÌë¿öôt5e$•pFA­–eŽ NÆJ9ÙÛm²{غ©CéQ3×PRW¬NXÇ“j|ßAƒçÊÛÞ{÷hóös™JyNŽÌÕÑx”üŒX +ù(øº"oýñf/!ÕæÀ +*pì{<¶Q·ûûŸ¨oI½Äö·œíâ/êÓZãЙï’HÙØzÇæǎ;ÌK)I=¼_ÑÕÃ÷tÕÞü]b $¾(1ÞšäýY\¶<-?©È•y ±c­¢Ø´ï›S/]nv`¦;0ÿ‚&縗ãNcqöSB1žRB•_sÀÿøc¬øÅŠy +í´ÅPvÌÂÕ™jÎt°—ªÃyÒ€ŸtÐcùÑ®É\W{ŽµÖlæI%¾ï¤avð-ßéšœ .K±_~@Š‚rYÛÆ.Ú¶5MÆQŒU{K@¦PÆmƘõÿ͹êÃ1åLý|öÖ9ºÌxò¨‰k4×5u±ÕÛÂxRk/ ³VÜò\Ÿ&Gcz´·Dü0]…Ãw|‚­ïŠáï }¶"ñŸ9{~>üÁ¾Ï€y†´ðôüxó…äÑÝÆ•«R"#CwÝxþ áÑCTòµ "P{a¢ê£üÌcž“8>©ÝÕ½™C,<‡l'ð›ûrZpTFÌNN‡ÉÓÞqê;cô:œÝ¶`K› fã ®ÇÜÞÒÍÞ9¹|qrôZ‡öð:“¾Ä‚Ú#G%0ýC<¦ÍÑ| +õÅ`1š¹>sû™kì©R®„‡™´Q¥=¬`ã#Òƒ¥|!Å´ü* ŸQÆDcüj„Z©þ7\yïÔ³oâ ÒZ+’· *FX˜öàößxýƒä¾y-®§³-5’ºÓ'Ûººròª¹†÷‚“é›K7²Ämyˆ¯ßÐý6Õu0ûdžT"ÍÎÙú݆ªS{9!Ѫq\*§gàåüÌöwÑôPâr“ÄÓ!eñ{8imçA+Û}þ؉*^´@§ÊÕe³[ C<|ùr!N0fª`²Ÿ$îCh¥ö&϶U"÷‰/–”\¤óôy…ù\¦:sO"»)«û>åÄ—\ É܇áo^ôöŸ©´ÛHöñˆ)]§îʈDtGy¡Ôd31&ăq…; +Bm +Y@…9z­*Q³C“„^«íÈïÈë\ r±|Ãè%¨ý%c2¦­Ä¾}†}ûLÊ ++PéK{Í=¦aûäaJ°lé%+ĸÞvh/*‘lRE©£µQSÑb¯)”q#&“¨²5o‹"Jm_Ð\S_U_N†x±0À!NGl&çãöP_-YJŒXFõ¾°Ô–ÖZꧡ,R‹´,Ó †Y&Xm µ-P™™'UîCLe²NQ·å©X¸ÈXl+q.¶®ç4m‘¦@ËåJ¥™YyYŠÌüì¢"·»VþCï§{° §ùGvÏ Zí^Íí¾©EÔ¡zõyMÓ*Њ…Ùÿ“'½|œú³ÆÝÀ¥­ÿ}µ±sôRGž²–kÂÊW¤‡[bX2wÆW„åe•ÿ#ÐDœÿèp ¨¢ê/7V²pã¯P¨醸µe«Øåë¦Äóñ){ã%û?BåYl + xýGÓ§O_<íwÚô ÓÙBÓ¿ë…8€B7¦sÊ-HŠçáìæáþÎÂõ]‡ûãÔ<> +stream +H‰|UyXgŸÉd&ˆ0(q“nf¼/T¼¢–ª ˆŠrH½@ˆ&hT$UãQPAa­ÊÊU×Ń" l½°âQ×£Šû«U«vµ¶ê;ñÅÝh÷yú×>ßó¼ó½×ï{¯ï’P*’$»Ï›2=vpäJ«Ù`Œ¶Z†D˜-Ît«xéO¤ä§”t^Áío¼ ¢á²@×suçK(IR©º÷<%)%%iY¨%]F=…áãÆpÓQïé˜aD``à{:J6Z˜„¸•¶LSªMO[h±¦[¬†L“q¨¼l™ðÂ&XM6“5Ë-ü—`¶ &sæb“U0ÈÊEfÙßj2 +™VƒÑ”j°.,nÍØ”ÿs”`Nd,!>Íìæâ2e¡M0¤‡É(–÷§,´,OË´šM¶¡Ã&ÇÍ\™nÆ +FS +Aò"<„7CtW½¢‚@ƒbA S#)"¸ §"sIb¬\a"’ˆ&2‰ +¢H/r J’"ùV‘®ø‚êF%Q‡¨+û)7)‹•Õ´‚žEa¼cg˜ÛªHU³ê?ç:ÑŠ:µ{úx&y{ï<°³µs£W¯¥^§¼Þ‘Þ[¼_±SÙ}>ZŸ©yÍÒ³fR¦}š©<¥´Ùݱ™íØÂáø‚†' +xŠ7Ó±CÕÁÌ¿‡ (óŒô5çÞ¡›cñë›}8ÛW…zïc×XnCd:’« Ç +ýÕÉ%‡ê)»åÁbú¸.W(0¹"¹°‘“ÐçjpÎuìzm´® ú- +|`ª¦·€úÿy@@#u}¸kn@W˜£¹¡àv_7Ÿiï}»`¸§E¡oPÙìäAPQ—ЛûýäˆõþîxˆÕ9†Ï`GY ¨Jhâ °¡NÅÚ‘§¿§žÚ¹%{÷\]n³­Z‘ÁÛ¶–fíײ8ÅœMÚ%ŠªZÈÁw.3=—ÁëïÌ4k°‹Ò£òD\i¦ À5C²w_\ÏãÚíO¼Ð‚ß „5°|ÌKTñ›Œ(ÑG®XØ\ùC ‰ +ÂaæU ò¬ao–ô‹3/Ûìu5Øý.]£þú„™^_¤·1¬!¯VºUGJŠ&J +ó«Å›ÛTÆÀè'¿B7M[âKÔNM7tåKèý‡œG[µ 8ŒÊO1Ãø‘tªÊ6¼©…ø“dµ®ÉX9òU™[r¬|Øši愹3"ûaw N~Àÿ:Ðòò~€^ŸD'ÏKÕmaŠ Û÷à ÂaŠùåZ:îqBôOÐ}Oá_ÿ²›?wø|õí£ocA22dćüÞˆd«Ô…ju鸅pw‹ +ë;^Ñ%¤«T¿×Ó·¶É性թ~¹vÈŸ¿Å­Ä _ñ*uÛñ`ëM{ÄM${}ÛC»KϽÓ;\z;.Ot±„~ðBÄÓ.6aÈ»”,Ð%¹7í’¯CÝüà©J½ ”[oæÜÕm˯šÜ8©y|ØÕñÝàÒ'àF]Ú3ÂŽ@Ý–­K./ÆÿÐK¤^ôüwz±§ÝŒT?èDò‰[šSÕ×€l©_±¶LW&ÒÅ™óJ#´ÈŒ 0ìr&þ™©&i¢fldlÿØOËštì4¹¿¬H‚É)¿ø~N ébÇê…`aØÙk]þî.KJçûîw Uá‚ד囡åmX¨“úÍë¬ÂqB‘êt&ê¤Á*ÖýËê¹”Êíl­¢¤nIŽÿjK22+ÿìÁN´‹³`—CEßšfÈu¨?“üürª·ÔœÐÀ ÕýŒßOŽ_—–¬+^L8~rw˜üó4ëT8kÛÀ©HiþËt¹5ugq\`î ¾¢õr[ÌÝÞ»V-ÚíªT[ªÈªJ]×ðP ¬(` !æŠâU¬XÂ[eeY“ðô& +Vvë·Ú¥->×GG-£»nOØÙ_bu&Ý™ß÷üÎùóùžPϞ õvØëY#IiŽFE0¦Ü{øâŬTœÎÄ'°Ö8q7ª'Î 9ÊiÃüÓEi`Ò›”Ûxs{•£çóüîÀ2˜ö Mþh,zÇÃ×Ò±ÇX?ƒßÂogÏB ]e4Mì÷õWÜ×ð»8ùs”½±&ù/v]/`yoªˆÃ0]ÂÚüÚ\xv/ÐEòôÝë°ô&6Gâòнv®«rfUbÕ:Íš9£eö£à»k*j9qåk7nsÁ÷åö,M Q/jËßÜñ1ƒ&Ì A‹shæý90á~¿»·‘5àÛ$ß·Ÿ–x‹¤cfZÃëèXÊ^•‰b㌃7.?|ñmßƨ*Ψ3ê$âäâ6Èt@„Ó¯M€/»[wÏ%f¨} ®M¯¢ª2+.ÙY›«ó"s«= +ãÐ)N‹`5ò;.ËÔÊw²…u6;'”q«˜¥I[7dq·rûìD©¾°4‰S98¸o;ÐÛÀ‰Ä‡‹Ú‹½M:mÛª@uy6áÁ—¢Rµ_µ_Ã&*ãV2ïg~óoꥨY„V?ϸ{¾§³ÁËA•ñ#¢“äí¼£]"Ž8t.Ó'eñDP¹¬ëÆD; ›= +"žÄ[ðY‚²&©·h·á~ÓµjÚTޛ΋aá~Ï7^kêG#({½÷pˆïð¨&¨Ášó¶ÞÊ~¼]š7Z7×Æ>@5ÁXwÖM ?D…±šÄâd<7º.[ua>4'“¿AÇ•vÇéS¦ ‹Ïh]ê¾p8,~×7”~žYµÞ0K}ŠxâyÄõÍÕ'l§¦ÈšÕÙµYw‘8ø‰VÀA±‰\ŒÆ«r åªl«°iwcÁÉÅ0>XúR1, Â«9K”öí—ìç÷—±»ÖïضK‘“³C½ke[°©¬¥ÒÑü·óm÷/À\˜ÿ Ž#ñzú•&MŸ^œ……÷œÒ9t-ø?Ü•`±é%Ü×·f·âö»-€ÆE}ã™ï…|aÈÛn>h²•”Tú ¯‘cÈËÒtÙYœ,Mã…<Ò4Š¨‡ê¯ßj¨Û»·’¥®Xíõð˜6÷‹,&ùZy—‘¡^·\¢ôÙ€…5^WHzÍU ÿuc9)zØrü%{mìÏó„Ñ(‘%;µ"‰‰NUçìàR·Ä.“üb.z“Ga‚L&Sƒ‰Dé¦[&þ¤2Á<ߧ@üiÈ4ž­Ýš2iü¡I„‰ðIçý?"ƒpq +endstream +endobj +691 0 obj +[843 0 R] +endobj +692 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +693 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/R/S/a/b/comma/d/e/g/i/l/m/n/o/r/s/space/t/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 844 0 R +/FontName /ZXSXUF+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +694 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +696 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘_kƒ0Åßó)îcûP¢vU +A(í +>ìsûš\»ÀŒ!Æ¿ýn’ÒÁš_¸çÈñ„Ÿ›Kc´þî&Ù¢‡Aåpž'z¼iÃò”–þ~Šo9v–q2·ëìqlÌ01!€Ðpön…ÍIM=ns +67Ø|Û-ðv±öG42¨kP8Ї^:ûÚ<Úv¢¹öëŽ<ŠÏÕ"ñœ§0rR8ÛN¢ëÌ ™ÈhÕ ®´j†Fý›ÓD[?ÈïÎ1Qq–ÑÆÄ>ñ>rž8\$.‰Ÿž#ÓÆD™4eД‡Ä‡À—Ä—À×ÄLTI_}U&.cà{²†G/rqŽ*‰×»-hƒ›²“r…‡ý +0+š‰, +endstream +endobj +697 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 846 0 R +/FontName /GAAIOR+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +698 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +699 0 obj +[843 0 R] +endobj +700 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +701 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 847 0 R +/FontName /EFZRMV+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +702 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +704 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 848 0 R +/FontName /UQZJCP+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +705 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +707 0 obj +<< +/K [733 0 R 735 0 R 737 0 R] +/P 169 0 R +/S /L +>> +endobj +708 0 obj +<< +/C /Pa3 +/P 169 0 R +/S /Lauftext +>> +endobj +709 0 obj +<< +/K [739 0 R 741 0 R 743 0 R 745 0 R 747 0 R] +/P 169 0 R +/S /L +>> +endobj +710 0 obj +<< +/C /Pa2 +/P 169 0 R +/S /Lauftext_1._Abs +>> +endobj +711 0 obj +<< +/C /Pa2 +/P 169 0 R +/S /Lauftext_1._Abs +>> +endobj +712 0 obj +<< +/C /Pa2 +/P 169 0 R +/S /Lauftext_1._Abs +>> +endobj +713 0 obj +<< +/C /Pa2 +/P 169 0 R +/S /Lauftext_1._Abs +>> +endobj +714 0 obj +<< +/C /Pa2 +/P 169 0 R +/S /Lauftext_1._Abs +>> +endobj +715 0 obj +<< +/K [749 0 R 751 0 R 753 0 R] +/P 169 0 R +/S /L +>> +endobj +716 0 obj +<< +/K [755 0 R 757 0 R 759 0 R 761 0 R] +/P 169 0 R +/S /L +>> +endobj +717 0 obj +<< +/K [763 0 R 765 0 R 767 0 R 769 0 R 771 0 R 773 0 R 775 0 R 777 0 R] +/P 169 0 R +/S /L +>> +endobj +718 0 obj +<< +/K [779 0 R 781 0 R 783 0 R 785 0 R 787 0 R 789 0 R] +/P 169 0 R +/S /L +>> +endobj +719 0 obj +<< +/K [791 0 R 793 0 R 795 0 R 797 0 R 799 0 R] +/P 169 0 R +/S /L +>> +endobj +720 0 obj +<< +/K [801 0 R 803 0 R 805 0 R 807 0 R] +/P 169 0 R +/S /L +>> +endobj +721 0 obj +<< +/K [809 0 R 811 0 R 813 0 R 815 0 R 817 0 R] +/P 169 0 R +/S /L +>> +endobj +722 0 obj +<< +/K [819 0 R 821 0 R 829 0 R 831 0 R 833 0 R 835 0 R 837 0 R] +/P 169 0 R +/S /L +>> +endobj +723 0 obj +<< +/C /Pa3 +/P 169 0 R +/S /Lauftext +>> +endobj +724 0 obj +<< +/K [198 0 R 197 0 R] +/P 725 0 R +/S /Lbl +>> +endobj +725 0 obj +<< +/C /Pa4 +/K [724 0 R 199 0 R] +/P 706 0 R +/S /LI +>> +endobj +726 0 obj +<< +/K [201 0 R 200 0 R] +/P 727 0 R +/S /Lbl +>> +endobj +727 0 obj +<< +/C /Pa5 +/K [726 0 R 202 0 R] +/P 706 0 R +/S /LI +>> +endobj +728 0 obj +<< +/K [204 0 R 203 0 R] +/P 729 0 R +/S /Lbl +>> +endobj +729 0 obj +<< +/C /Pa5 +/K [728 0 R 205 0 R] +/P 706 0 R +/S /LI +>> +endobj +730 0 obj +<< +/K [207 0 R 206 0 R] +/P 731 0 R +/S /Lbl +>> +endobj +731 0 obj +<< +/C /Pa6 +/K [730 0 R 208 0 R] +/P 706 0 R +/S /LI +>> +endobj +732 0 obj +<< +/K [212 0 R 211 0 R] +/P 733 0 R +/S /Lbl +>> +endobj +733 0 obj +<< +/C /Pa4 +/K [732 0 R 213 0 R] +/P 707 0 R +/S /LI +>> +endobj +734 0 obj +<< +/K [215 0 R 214 0 R] +/P 735 0 R +/S /Lbl +>> +endobj +735 0 obj +<< +/C /Pa5 +/K [734 0 R 216 0 R] +/P 707 0 R +/S /LI +>> +endobj +736 0 obj +<< +/K [218 0 R 217 0 R] +/P 737 0 R +/S /Lbl +>> +endobj +737 0 obj +<< +/C /Pa6 +/K [736 0 R 219 0 R] +/P 707 0 R +/S /LI +>> +endobj +738 0 obj +<< +/K 230 0 R +/P 739 0 R +/S /Lbl +>> +endobj +739 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 39.0 +>> +/K [738 0 R 231 0 R] +/P 709 0 R +/S /LI +>> +endobj +740 0 obj +<< +/K 233 0 R +/P 741 0 R +/S /Lbl +>> +endobj +741 0 obj +<< +/C /Pa8 +/K [740 0 R 234 0 R] +/P 709 0 R +/S /LI +>> +endobj +742 0 obj +<< +/K 236 0 R +/P 743 0 R +/S /Lbl +>> +endobj +743 0 obj +<< +/C /Pa8 +/K [742 0 R 237 0 R] +/P 709 0 R +/S /LI +>> +endobj +744 0 obj +<< +/K 238 0 R +/P 745 0 R +/S /Lbl +>> +endobj +745 0 obj +<< +/C /Pa8 +/K [744 0 R 239 0 R] +/P 709 0 R +/S /LI +>> +endobj +746 0 obj +<< +/K 240 0 R +/P 747 0 R +/S /Lbl +>> +endobj +747 0 obj +<< +/C /Pa8 +/K [746 0 R 241 0 R] +/P 709 0 R +/S /LI +>> +endobj +748 0 obj +<< +/K [280 0 R 279 0 R] +/P 749 0 R +/S /Lbl +>> +endobj +749 0 obj +<< +/C /Pa4 +/K [748 0 R 281 0 R] +/P 715 0 R +/S /LI +>> +endobj +750 0 obj +<< +/K [283 0 R 282 0 R] +/P 751 0 R +/S /Lbl +>> +endobj +751 0 obj +<< +/C /Pa5 +/K [750 0 R 284 0 R] +/P 715 0 R +/S /LI +>> +endobj +752 0 obj +<< +/K [287 0 R 286 0 R] +/P 753 0 R +/S /Lbl +>> +endobj +753 0 obj +<< +/C /Pa6 +/K [752 0 R 288 0 R] +/P 715 0 R +/S /LI +>> +endobj +754 0 obj +<< +/K [310 0 R 309 0 R] +/P 755 0 R +/S /Lbl +>> +endobj +755 0 obj +<< +/C /Pa4 +/K [754 0 R 311 0 R] +/P 716 0 R +/S /LI +>> +endobj +756 0 obj +<< +/K [313 0 R 312 0 R] +/P 757 0 R +/S /Lbl +>> +endobj +757 0 obj +<< +/C /Pa5 +/K [756 0 R 314 0 R] +/P 716 0 R +/S /LI +>> +endobj +758 0 obj +<< +/K [316 0 R 315 0 R] +/P 759 0 R +/S /Lbl +>> +endobj +759 0 obj +<< +/C /Pa5 +/K [758 0 R 317 0 R] +/P 716 0 R +/S /LI +>> +endobj +760 0 obj +<< +/K [319 0 R 318 0 R] +/P 761 0 R +/S /Lbl +>> +endobj +761 0 obj +<< +/C /Pa6 +/K [760 0 R 320 0 R] +/P 716 0 R +/S /LI +>> +endobj +762 0 obj +<< +/K [422 0 R 421 0 R] +/P 763 0 R +/S /Lbl +>> +endobj +763 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 5.0 +/StartIndent 22.0 +>> +/K [762 0 R 423 0 R] +/P 717 0 R +/S /LI +>> +endobj +764 0 obj +<< +/K [425 0 R 424 0 R] +/P 765 0 R +/S /Lbl +>> +endobj +765 0 obj +<< +/C /Pa5 +/K [764 0 R 426 0 R] +/P 717 0 R +/S /LI +>> +endobj +766 0 obj +<< +/K [429 0 R 428 0 R] +/P 767 0 R +/S /Lbl +>> +endobj +767 0 obj +<< +/C /Pa5 +/K [766 0 R 430 0 R] +/P 717 0 R +/S /LI +>> +endobj +768 0 obj +<< +/K [432 0 R 431 0 R] +/P 769 0 R +/S /Lbl +>> +endobj +769 0 obj +<< +/C /Pa5 +/K [768 0 R 433 0 R] +/P 717 0 R +/S /LI +>> +endobj +770 0 obj +<< +/K [435 0 R 434 0 R] +/P 771 0 R +/S /Lbl +>> +endobj +771 0 obj +<< +/C /Pa5 +/K [770 0 R 436 0 R] +/P 717 0 R +/S /LI +>> +endobj +772 0 obj +<< +/K [440 0 R 439 0 R] +/P 773 0 R +/S /Lbl +>> +endobj +773 0 obj +<< +/C /Pa5 +/K [772 0 R 441 0 R] +/P 717 0 R +/S /LI +>> +endobj +774 0 obj +<< +/K [443 0 R 442 0 R] +/P 775 0 R +/S /Lbl +>> +endobj +775 0 obj +<< +/C /Pa5 +/K [774 0 R 444 0 R] +/P 717 0 R +/S /LI +>> +endobj +776 0 obj +<< +/K [447 0 R 446 0 R] +/P 777 0 R +/S /Lbl +>> +endobj +777 0 obj +<< +/C /Pa6 +/K [776 0 R 448 0 R] +/P 717 0 R +/S /LI +>> +endobj +778 0 obj +<< +/K [454 0 R 453 0 R] +/P 779 0 R +/S /Lbl +>> +endobj +779 0 obj +<< +/C /Pa4 +/K [778 0 R 455 0 R] +/P 718 0 R +/S /LI +>> +endobj +780 0 obj +<< +/K [457 0 R 456 0 R] +/P 781 0 R +/S /Lbl +>> +endobj +781 0 obj +<< +/C /Pa5 +/K [780 0 R 458 0 R] +/P 718 0 R +/S /LI +>> +endobj +782 0 obj +<< +/K [460 0 R 459 0 R] +/P 783 0 R +/S /Lbl +>> +endobj +783 0 obj +<< +/C /Pa5 +/K [782 0 R 461 0 R] +/P 718 0 R +/S /LI +>> +endobj +784 0 obj +<< +/K [464 0 R 463 0 R] +/P 785 0 R +/S /Lbl +>> +endobj +785 0 obj +<< +/C /Pa5 +/K [784 0 R 465 0 R] +/P 718 0 R +/S /LI +>> +endobj +786 0 obj +<< +/K [467 0 R 466 0 R] +/P 787 0 R +/S /Lbl +>> +endobj +787 0 obj +<< +/C /Pa5 +/K [786 0 R 468 0 R] +/P 718 0 R +/S /LI +>> +endobj +788 0 obj +<< +/K [471 0 R 470 0 R] +/P 789 0 R +/S /Lbl +>> +endobj +789 0 obj +<< +/C /Pa6 +/K [788 0 R 472 0 R] +/P 718 0 R +/S /LI +>> +endobj +790 0 obj +<< +/K [504 0 R 503 0 R] +/P 791 0 R +/S /Lbl +>> +endobj +791 0 obj +<< +/C /Pa4 +/K [790 0 R 505 0 R] +/P 719 0 R +/S /LI +>> +endobj +792 0 obj +<< +/K [507 0 R 506 0 R] +/P 793 0 R +/S /Lbl +>> +endobj +793 0 obj +<< +/C /Pa5 +/K [792 0 R 508 0 R] +/P 719 0 R +/S /LI +>> +endobj +794 0 obj +<< +/K [510 0 R 509 0 R] +/P 795 0 R +/S /Lbl +>> +endobj +795 0 obj +<< +/C /Pa5 +/K [794 0 R 511 0 R] +/P 719 0 R +/S /LI +>> +endobj +796 0 obj +<< +/K [513 0 R 512 0 R] +/P 797 0 R +/S /Lbl +>> +endobj +797 0 obj +<< +/C /Pa5 +/K [796 0 R 514 0 R] +/P 719 0 R +/S /LI +>> +endobj +798 0 obj +<< +/K [516 0 R 515 0 R] +/P 799 0 R +/S /Lbl +>> +endobj +799 0 obj +<< +/C /Pa6 +/K [798 0 R 517 0 R] +/P 719 0 R +/S /LI +>> +endobj +800 0 obj +<< +/K [545 0 R 544 0 R] +/P 801 0 R +/S /Lbl +>> +endobj +801 0 obj +<< +/C /Pa4 +/K [800 0 R 546 0 R] +/P 720 0 R +/S /LI +>> +endobj +802 0 obj +<< +/K [548 0 R 547 0 R] +/P 803 0 R +/S /Lbl +>> +endobj +803 0 obj +<< +/C /Pa5 +/K [802 0 R 549 0 R] +/P 720 0 R +/S /LI +>> +endobj +804 0 obj +<< +/K [552 0 R 551 0 R] +/P 805 0 R +/S /Lbl +>> +endobj +805 0 obj +<< +/C /Pa5 +/K [804 0 R 553 0 R] +/P 720 0 R +/S /LI +>> +endobj +806 0 obj +<< +/K [555 0 R 554 0 R] +/P 807 0 R +/S /Lbl +>> +endobj +807 0 obj +<< +/C /Pa6 +/K [806 0 R 556 0 R] +/P 720 0 R +/S /LI +>> +endobj +808 0 obj +<< +/K [564 0 R 563 0 R] +/P 809 0 R +/S /Lbl +>> +endobj +809 0 obj +<< +/C /Pa4 +/K [808 0 R 565 0 R] +/P 721 0 R +/S /LI +>> +endobj +810 0 obj +<< +/K [567 0 R 566 0 R] +/P 811 0 R +/S /Lbl +>> +endobj +811 0 obj +<< +/C /Pa5 +/K [810 0 R 568 0 R] +/P 721 0 R +/S /LI +>> +endobj +812 0 obj +<< +/K [570 0 R 569 0 R] +/P 813 0 R +/S /Lbl +>> +endobj +813 0 obj +<< +/C /Pa5 +/K [812 0 R 571 0 R] +/P 721 0 R +/S /LI +>> +endobj +814 0 obj +<< +/K [573 0 R 572 0 R] +/P 815 0 R +/S /Lbl +>> +endobj +815 0 obj +<< +/C /Pa5 +/K [814 0 R 574 0 R] +/P 721 0 R +/S /LI +>> +endobj +816 0 obj +<< +/K [576 0 R 575 0 R] +/P 817 0 R +/S /Lbl +>> +endobj +817 0 obj +<< +/C /Pa6 +/K [816 0 R 577 0 R] +/P 721 0 R +/S /LI +>> +endobj +818 0 obj +<< +/K [620 0 R 619 0 R] +/P 819 0 R +/S /Lbl +>> +endobj +819 0 obj +<< +/C /Pa4 +/K [818 0 R 621 0 R] +/P 722 0 R +/S /LI +>> +endobj +820 0 obj +<< +/K [624 0 R 623 0 R] +/P 821 0 R +/S /Lbl +>> +endobj +821 0 obj +<< +/C /Pa5 +/K [820 0 R 625 0 R 849 0 R] +/P 722 0 R +/S /LI +>> +endobj +822 0 obj +<< +/K [628 0 R 627 0 R] +/P 823 0 R +/S /Lbl +>> +endobj +823 0 obj +<< +/C /Pa14 +/K [822 0 R 629 0 R] +/P 849 0 R +/S /LI +>> +endobj +824 0 obj +<< +/K [631 0 R 630 0 R] +/P 825 0 R +/S /Lbl +>> +endobj +825 0 obj +<< +/C /Pa14 +/K [824 0 R 632 0 R] +/P 849 0 R +/S /LI +>> +endobj +826 0 obj +<< +/K [634 0 R 633 0 R] +/P 827 0 R +/S /Lbl +>> +endobj +827 0 obj +<< +/C /Pa14 +/K [826 0 R 635 0 R] +/P 849 0 R +/S /LI +>> +endobj +828 0 obj +<< +/K [637 0 R 636 0 R] +/P 829 0 R +/S /Lbl +>> +endobj +829 0 obj +<< +/C /Pa5 +/K [828 0 R 638 0 R] +/P 722 0 R +/S /LI +>> +endobj +830 0 obj +<< +/K [641 0 R 640 0 R] +/P 831 0 R +/S /Lbl +>> +endobj +831 0 obj +<< +/C /Pa5 +/K [830 0 R 642 0 R] +/P 722 0 R +/S /LI +>> +endobj +832 0 obj +<< +/K [644 0 R 643 0 R] +/P 833 0 R +/S /Lbl +>> +endobj +833 0 obj +<< +/C /Pa5 +/K [832 0 R 645 0 R] +/P 722 0 R +/S /LI +>> +endobj +834 0 obj +<< +/K [647 0 R 646 0 R] +/P 835 0 R +/S /Lbl +>> +endobj +835 0 obj +<< +/C /Pa5 +/K [834 0 R 648 0 R] +/P 722 0 R +/S /LI +>> +endobj +836 0 obj +<< +/K [650 0 R 649 0 R] +/P 837 0 R +/S /Lbl +>> +endobj +837 0 obj +<< +/C /Pa6 +/K [836 0 R 651 0 R] +/P 722 0 R +/S /LI +>> +endobj +838 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +839 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 850 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 851 0 R +/FontName /ITWIND+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +840 0 obj +<< +/Filter /FlateDecode +/Length 2344 +/Subtype /Type1C +>> +stream +H‰|U{TéŸ2ÁÅdvÍЙ©u} òFÅŠë«  ˆ`„ðP H0á¡B`Å$øä©Š +(OD ຈ€• +«­.âueQÏ©½¡=§¶§ý«gÎÜsïýÎýýîý¾ß7ÃÁŒ0‡#Úîçë¼mÑÆ”ÄqÄ–DébI\ÌnilÄÔ*c 9‘±Áj¦¹ •qí?vñ Ë ÞÍ궚qÔ3âp~^#M`«£¢“WWG›)ë•üÒ#c$1IÑ’DFÌ.FÅ°õ‰’&)Q!‰'îe¤S+ÿFþ*&&ža±˜€ø˜©È?‰MÊq|„‹"f —îOJŒ‘Èlí|ü·¦$H˜eL„$Ã8ìƒÍ2ÂDf‡aæÄÁ<0#l=†m2Âü±Ùì¦b±-X)ÖÎ1æ¤sžÙå}âJ¸O­ŒŒëy«yÉ<î«ð'|'¾œßi•å´ÆZ9¬ÛÊÍ16¨&¶LªpС»Bä'y0‚#ÝÂT0y‚?‰‡Nûà†Ø7´ §<4 PŸ cÔ<Ê©sØf\¸0±Pˆl\ +¥Qpî²kìákÀVO`­Z,|\çˆ!{‰Óšµaƒà˜KÃRÍgHA™|‚Rp L¹a ¦Ô\9®*³Ó{<-.ÈùdûÀq–Ëlù •jùzðþ68 ¸è³÷/h®«W¼$„ªsæ]¨ÖWv//oû#­qY³ +-Fsܼ¾YÍdŽÃïÞÂñ_8µ )XpG2…%šŠœ +ÝÐñ§U·MzïßZŽËÁ”í“^„0dŽf¾p^ϲújJ«Iß,Ž™¿#uÇ‘8U²&Ykî¹p ÚÝIC§ª”G²¨Ø䨤íäZI{¯†þ¹åN7%›pB”Üp¾ÍQXôîN„ÀK8Ì'b«y“=Dér«Ý[–5{Ì/ÄŽGL,A8Jlj3suÎ'(5û(âiè_'4}ƒ˜.Áµer퇬QN?;T»?ý–¬sW.Óœ'‡žœ×ë醺ÒÛ÷E=ûn‡WSu»|Ï:Ë6Î +£Aà"Ô–ëjÈ—íá«Wú‡Ú%*r -,jÕ[ŽüUðµªïS_‘žu:»ôôÖ<… øÁ‹)Oå/RÿsG‰‰Žßs¾³sHÔ!¿y™jõ=mMzùÎÚÉ2-ê +.è®’í1ë‚–ў¸ [ùÑ üÈigU䳸׮÷×?Vô“à98 +ؘ_'šqv¨(o]­izÚs3ùP9U5Î+‰8íI¢yvK‘‘uÿà†Ó¯bkⶉ¶†E®Ü°¹ô|8%HËxí/‡Ì‘!‹+lë+ÀŒ8`²Ì®R7_ÿsè8²wÛ ßE•¯à•U·ß"_øh].âlDf"BïqÇëמ¶K U”'œ àú4pfi”ªL*:#jo0{îÖãçg‡Ô´ +cl½Ü0ï=D+,€+çYÄXaIè?bU¼¹öGY FÀ‚54,È]2ŽLIÏÀØ8Z ÍÈl²%Ù®Pï¡€€ja6_{Šú¡¨¥®•¼æíBú…!ÝwÕëQêSš¼<‘`µr þüž•´×°è³P)‹ËÜE.]ßñ~£ùñá(y½R™YJŸæJwæ…’È}>+©yhѸ5Øtµ\¤YÊ°x¦/X”¯`˜p 2Yò’ó¢¿%rDö®ˆ@$Z8b Ž}w Ï4Q)/y#wgù‘«|^«èWÆ­Ç®<ü+9XꪡH\&7ÐÃ`õ+g`êfi ?3ø÷ÊÚºÎ9’]HzÇ;¡Øwl)>E‹ÃS7lÉ}íLÒ|IÞÁŒaèÍPXÔÂ,Hbð™a!MHŒe¯ç©ñƤ°:Íøƒ5rFÔ«ùð›û­•Í´VŒÏÙ,^±%èlI,•`ËÛ×ôàP7ÙÛWÔÒF·Ý({ôI•|âY¯¶Q[M±C]T§ªQaÃãv’nâÞç416Þvïa{mLh!¥Sæ¦gˆ¨Œ'Mñf[t…¾sbü, iÈ|2O|ìžðî–ÆK"/Å_k¾TYO7höUŠIØ»ÞY«LN ’*© &jüùöºïH×°P‰ŒVá„>û'Þïq87Ä_$¸õ_zsd÷ð KlWñ¢Üâ£ùT}aM­žì½èM£ +V±M|°uº³dyàN‰œb±Z?â!ì?`oàù[V%| ÙB4ÎBöì?ÛÅ[ °.°þ„¾¥UÂ5Îî ƒ}¼Wïì}VûbˆÕÅJ¶!øŠŠé;B²ý˜Á1œè*Òjó©;ù dq¾ZG…`Â'º´ÊïsÓÉ ¿h}'*Œð\–â+0Ê×ðò5G_½gÿuåBEÝíƒ$ÞMk~ÚÝâtÅd㹤âË¢ªò²ëÍWÓÒ˨ò!^±4¤(€D<¯u.´Æ¯1èÝ“{òÒÔ=¢½²ýa%g¤”y(?ÀÝaÎÌäF…ÈÈÛ®¥ð¿+û—–æË-ÚX³CzÓê “æÊw¾díh¨î(“Ž©^uLþ{60áþæüLÅ;Þ»ƒ’Ði C€¾Ýñ£ ˜‚óÿÞÅVÛQ×Þ —S—%íU¸ÿŽü÷¹@ñMì¿ï„=y´{ïºr½lÂY¿3°unîÜ}TŠ¯ºû;—ØÀi?j„ ¦Íúîù§šõ;/Ûw¿Õ¬¿ÅØì~w³ +o¨‹oHmJæè`kÚܸ©v›Í÷n ¾úé?ª§מ>}úâél¿Ó¦_™Îª˜þ],ĺ1SnAR<g7÷s®ïüÜϧòðüX#òc(@€9ÀÔ +endstream +endobj +841 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +842 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 852 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 853 0 R +/FontName /GNNSHH+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +843 0 obj +<< +/BaseFont /CUCKKZ+Wingdings-Regular +/CIDSystemInfo 854 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 855 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +844 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nPÒ&´“iìnÅDcÐ(F"jd†EÁÈÃEf`FDqx©Ã0°òpç(>x‰"%Ê:*T0Xš-× kmj-6³fS»[•Ó䚪íÁÚªýµu«OÝó¸ç|çôw/Ž¹»a8ŽÏKŒß±e™ºP¯MI‹Ñë–oÜŸ’šår "‹‹´»èëÅ Tã+_ðK‰îÎÞ›ðõðõÆÜpüùß6ér¥£™ùÂGk×® pÉàùI€°rÅŠ32XKÓíÕ±…†|M¶AˆÈIÕésuú”|MZ ¶¿0“ è5Þè2¾$h ‚F›Ÿ©Ñ )’3C+×kÒ„|}Jš&;EŸ%è\žÿQÓÿO)A›#H¹„9Z—›/ BJNZ”E7S%UW“¯×j A[bã +s5Â!M“Ža¸´°w0l1†}ˆaãØFûÇT¶ÃÔ2,Ö KÂ0F*¦Æb0=öûÃÜ–»•±2ƒ;á¾Ê=Â}BÎÉ5òëÄ<"…h,±Þ_ßÄ%éwSfuOǼ9N@5ºË P¨“Ã÷Ð0.åM-ù†HžÙC(’tB¼Í¸vÈ¥Qh‚B&ä ñ£pR„ÀŒ|7ô¯Ë€£ðEÑÒ\¿Œ%ì*A ‡¨€8Ùx SÑw÷èKàvöîù‡·nOÁ|%¼›ômØ-nHâ@ ».ôhé6"Ð\ÆVßbëd{¦FóPÀª­ÈÓÆ9hµ•òJq§W›\¹eãÓ«™_WCÄôj’úÙa„ÀÀx_ò…C ¨dã>ÒæD'1rö`H+ß¾¦egƒÉÔDñ¹‚Þ5 &·yÔÃmî«|h¸±§—ë;åÇ~ZQÏC8š#Aiµ]dïWöêâ• iÚpnAÝ*¥¢øãC î – t3¦þçÆ,$|÷ðx7޹ƯîÉ8uQÙÕÕ~çÑÍÅ\?øÉÛ“·7…°(Ô?ÍöD*ÿM^×}Jm¶Q­R9{9ªß +Ä"c +Àm(ïó°HØD‡ŠŸŠ³–!§BH˜ó +­_ü¹®(‹ëA¤¼­çNëmv¢©ÀÄ#ѺJ4kR(éäµãv6]é㪠:´aœn3‚š)µ–ZʸÜ2]a›mlî¼êxÂS?™aÂ"¤š¼G@ÁI‚=>´³öÜFÄõÞ9p›ܧ` Ël«þŽ<Ù¨DCºŽ·€©ÞÜ"èCÑ–(KQÐËÔUI‹ë;Ñu®½>AÅÓÎõÚÔ/2tºË¹ÊÚÊúz¥«ì"¤ÈQ ó]u»¥±ƒŠvŠ³¦Tk!» ’›w°ÈcaZ[Å£ –1zïôH/g“ÊÕªäLXz-ãcJñI;%såK ·¯B——Á&¤<8ÿåýþó9ÚZ¾ªÌZV®¤:K@1ÔŸ`Þ ëÁBdb5D2Õöšs]J`ÃÁ}Œ"Â?"ÑŠ lì«ÚŽ{\>xÉïÞ}tµýô• +©oŠé®v8‡ÙÑÆ:žú ÒÀüg0Š€5¿íf‰ÔÍ ñ}ÑÌЯ+vÊ-Ä@ÞÞ3¿aÑ?„½\^Îk-ý]¼­€ø,!326¶­%›Ó"_¹aèqñ#ö›§7Fù{·[^¼T‚ƒ¤_<· VwqHN3fkÑñ.·ÂP°MÈþýW<ýúÙ嫃½gŒ™u\UyU©ÔªÃ(šM_Ãg¸ôKe`öÍÒˆÌä_§ËÄfd$&õiFF/õßà•™—bY)|:Ñ4;âªéD¤"(øUºaüÌ.^lOé›%‘Ò)El"èÐGÚ­¿;ɵÔ6uô²-qH‚oôä‚}9åÅz.¯¸ÀdÒ{X§1±3ŠýdO’¡?FÐÎò19ZFØ’mÛ·*©) Á/°Øü–™´4Óë.|= =dcÕ©šz®­®¹£lß·ÝU]åªÂªŸ!rí®¤¼BNÊx½ìý7ãs³”¦h‰ÑÑ2¸#Zô©ß"´±\bsÿ,½#Kÿòˆf¾<­ÿ47>)Ö0úd¢}âO °)Xg6]0™GW½6 +ÇH{Uƒ­ž¨¿tz˜m;e9ÞÈÓõ°ž¤«ª‹Ë­ElJ”~Cž«×³SrHØöÚv­WR1%ð.´Áü*l¸a²®Æteìð#ž|ýŠ¯üCúÍ{<¶µ54+Û[뺆ŠÌg¸N äMY;£YĬÙü_¹ýr `Záƒ'Ë +•…‡J5É‘í-:ŽBt ,AïEÞ“°™Î§ÿh¤CÈ Í‰]Ù\Þ¹k…ÃìÐÀ‰ZO_†ù¤¥ä°å»çpÇ=ü‹A )ƒA*,Ä;ÄHY‡)Ýå,ÑÝy¡·ó¢D?ÅÏoV¢…°ã8™½?_Ÿ‰¼ÑruÄ.ší°Än·wØ ”nŸ°“’é€gL’iÒîÉ9öîöò´zÍÅ,PÍ/{“—\Ÿ+Ö2ÿ`rÐ +endstream +endobj +845 0 obj +<< +/Filter /FlateDecode +/Length 1318 +/Subtype /Type1C +>> +stream +H‰|RkPWÞ%ì ͪYº»u°•‡"¨ØŠ"c­ÖŠO ` Ć„&1€h ø ’jŽ´µE-‚Š:0ã£øì訵µ>(JUpêà8­=K/éÿôWïÌ=s¾ïÌ9ç;ç^ ÀpWe¬KMI^µ¬Ü¬×êV˜M33øb}žÉ óG9ÆU ¬D ÈØö÷.‡À£IWˆL€ã÷SL%bva‘•‹KLÔDûmü˜ÍiÔjõ˜ç’u¦<žË(·Xùb ·Ä˜o2—˜ÌZ+¯‹á’ n¬„…3óÞló“¯5qz Çë­E¼™ÓŠÁB½˜oæuœÕ¬ÕñÅZó'œÉù,øŸVœÞȉµ¸ÕF½eXEÒÂiºX±Ši¬K¾i“ÑjÖó–˜Ø´ŒUå%<7—Óñ˜xpl¦À(L…Åb)X¶[e`k± â.±e"hÂÎàx%~'`i@“„•äINH^pîáy.Úð‰;PpŒ¬uàE”( ö0D"U‚Œ~!%sÆ|HB"&…3J¿‡üH>.·?ÊžáGa"| +!88¡DÑ ( å°(³ö> +ƒHbûà àaÕ"àP똩ü©]ƒ¢šŸ•’žÛšZ渺\£åͶ¦;È$`ÙN"Íüæ]"<¤ÜýRÈ}ðØK( }‰š<ÒÞnˆ?ûT½J}ŠÂùl¦=ž8ØÚ}¨—~xdÝG¬+!e>š‰¦%-ž²P*¯†7ŸÀî§xÈÁ +ÉPµò€«ÅÝâØ}÷pïÙ ë?t «Í<‰:Ù(„¡‰(¸?ˆ«]ÍÇZ«r¹1S«ŸZhÌÚœUSì(s•y‚``SÞo]0ËÅnvTÕlc e…Öõt:溋½×yþ +#¿á†Yˆ± ßÀtw©âp H*>…RÊ×㌷¶uAçÜÓÉSa1§£Ff#U’Ôþpoüž8ÆInëîæüŒÁ©)ˆûg6)ßdþ¾Mxûw(*U\ƒq“¨-ðn(Õ½û¶¸·Û¾·\¥!$ÂÂŒÚÙÃHF/ZcÈ.fp…ŒÞ$©-ë«  UéóÔ{ö2ç;Û{输© ,Õ‘½,i͆cÝŸ1ν®º:•\]5ŠG ë÷86BD°¯3|¥úk-„" R'" +Ñ(b(47/4ì?Å”?$¶äm[IÏO;þ›ƒ}سë»w辦ä+‡Í6aÚ »Š`H}'‡Q®…ŠþI²ÑÓ¸ËÇ­?ÒÞE÷~›•Î¢6‘ï”6z÷y}L[Ñçè‹-YóXô¥ÈwHAx~^¾¡ª¬„±n--Ý\ä$ÏÙÖ·/¥ssx ë ©î?o‘^mmv†J¾Áþ~}"DÁv $Ð!ìT¢w¦E x¤~ ŒøÏ÷EM3"_¢é¬#NÙ4~ADfZêÂo={ÐÖ?ÀÊÑçâHí¥-coA5ˆÚC`I]nô4xê™óõÇ/ÒûêÎ:–j€ )uÙSµ½¶’^»²(ÍÂÖÔ¡š!‚#½¹µÙKTòni*Jõª¤^¨PÂ’Ñ +&°\¨ P(™„Üuì³\;_ä «;ªNl=ý¸§È+}B…¢|>ß×>ønû¤"U惘1*H¤~ñcšórƒÇ¹ƒeƒã!D6X,´NþPþ+À­`€X +endstream +endobj +846 0 obj +<< +/Filter /FlateDecode +/Length 360 +/Subtype /Type1C +>> +stream +H‰|OKQÅgLGJ + #î¢]¦&B¹† úcZÛbtž:¤óä͹j+µ˜mÐèH´mm]Ô¢ý¼|.zoÚ´js¸¿{¸çÞ+KÁ€$ËòÒ®¦Ëkû=bêF‰àõ2jt[:f‚&dÒå¨Ê6Øp2™ì…¼ç…_”²üþ±;|®Ñt`#ŸÏ&…æ|ÝLB6“ÉøšÍÀU•ží ¶ E«†IÝAF +´V ü²¹ÍßkÀ´™NйÙ0ùª¢b‚b^3våÒK×K¹®{ï*¬î¾¹á•»êYtv¼Î#ãëèü}8¤` +endstream +endobj +847 0 obj +<< +/Filter /FlateDecode +/Length 603 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaC,Ë`KÜêÐA[QÇtGfƵ¥C!-I#æ%xÏÕI¤%á!=˜Çš$ "öÍúVè›íÒ©ïðãý~ïûýÞ㮸ˆ#„øϵ_ïŠ]«¥5%!ujjc\QzÕa©MMJ…v±}ÅöA¯ˆ‡qz§{ç‚>ìƒÕýosEå\!_ÛÔQæ4艖–¦Ã<Ù@›B¡PôUR{eOë†<¢ÓŽdŸªªZÂ¥m¦…j².k)Gü»Ut*+Æ ¬Ñk(̯É5´„$$´›Tu:ÿÐþÿŒ¢J’²,z5©8,n0Q§‰¤d)jaJŸ:–44EÖÁöø•ô¨LOQIîçØ;¹×̹Ùõ¸gp‹ÄCjžd–ìïK„á¡%W¦ØžÊuæ§x˜Æw"Fá‘,)¾Á!ùYOžï.ÔEÆyûµèTè0!cÁÐ&Ä,²œuÁ†ME C ¢.ìFà•…a¼ðx.•‹Œ“å-¸ôÍ +èôÜšüìÀ?=»pz><¾¨ü‘‹4be3u›ý÷øÔGå‹ñÝð²òØn„Ò–}ß"ÏÁ—Á傉\TĪ3X‹Ýس‚uàƒÒÍŸ0 qbmõÝ€¸ú ËQÀª1,k?¯þ†£PÃì+ÕÂ\Ê^Û&àc{û*²öÛøë8”ñÂÓ¾mB½iš3&7ÌO¦‡I·L0iÞ܃ýæºYâŸëíñ–d¼¥ë{³¥¶÷€=.þ`O& +endstream +endobj +848 0 obj +<< +/Filter /FlateDecode +/Length 3278 +/Subtype /Type1C +>> +stream +H‰|T{TgŸÉd&‘ʸ’ÚŒ;E_ˆ‚‹VÔ + +"jH‚Æ"Þ¯ V ôhQäiµµ ’¨!Q¬ZuÕª»Öê|T´ÊZwqï¤_س={NÿسgιóÝïñ»÷÷»ßwqL*ÁpóшIáÙ:mœ:B—<%L»e«~`‰Fá‚·TøýPMAe¿œü%˜„«ÃÀ=üÒ(Ï/ŒÀqiWOÂÆ„…É)âiñ”jÚìÙÓ'Ø™ƒ6h²jz@@À © +Q'oÖ¨¢²Óôšíiª¥Iñɺ”d]œ^£öW…$&ª!ÒT:MšF—10ùkN*mšJ£ÕoÕèTqââ­x^§Q«ôº8µf{œîUòÀÊoÜ„ÿJ¥MR‰Xªè$퀥'ÓTqIê©"Jò`”øäô$½N«IóŸµ*;E£š¥Rk0 ?ÌÆI0†±6ÃÆJ°‰6ÃfØ9.Å¢H,Ã’1ì$†ïÁ°‰¢ÌX8¥`&ìÖ‡ã:Ü)!%ë$;%G$=DqŒè i’ô!©"ϨñÔêß²ÙBÙy¹\¾Bî‚Y=¤bÈSޣģÛÞÙ3‹-u +¯œ¸hÇ:‰R©PìŠpSP†.3h$á…T¨ƒÇ}@æ¦6 Ža}J8Ï ŒÐ€G£Ny?2â:òdªN´Us/¬häŽð„åÆÉiÃ3üB'ñÒÀ4Vm8–[›––“•Ê§•Tg4°4Zë +ÉÄ A4Ç3ðKKÆPèÏýZ’Ž0X…gÜ쀛Nö¹&0÷‡ŠxTPöÒ¯—ïG …|Hzƒdü.5’³h˜˜Õ¢ñ‡M –ª[€wótD©M¸×Š !,ò¶¡»&ÙY; Aðþ‹À»Êûëß vÉÊMW»l8ÑþÕ5$'„ 霴-âW„“Ûe"hþ• ô‹têD:u"ÌA:™ ¬[.ý_$ÍG3À`…WJ3½¾¾TÜBÀÀ‹¶"MF±h'ø@Pתš&žþûn«ÐkŻ쇢k/³»ÝQr^Ô´×|ã +õÛãÏ^+ßl¿}‘û&Êÿhùéε¼} ³ÿ Û~qcb‚æ—ðh +y¢Ä8õÞ}ÉýA©Ú­px˜|„wT‡ÁbEOúá} íPOѨûh†+0s`W—+é´»eôóÒë›2„]Uê:+xÙ±ð®7¼”)AZrw÷Cδ·9ôì‡Î¹ïA¹{yÆ‹žRŠêÑ{çàŒ%Ûn¨ÿýè=T%Œ!7ôRtœ¨û5 œ±ˆà«v¢ËÛ×ú¨î=­ë&ÖVF”gÊTþñ§¾/÷žö\tµÜ${püÂåçJ{ö™¤\‹zUí v}äî›y»–ÙWÝ´ÿ,ûöû¸±ÓGúð*ŠžUd¿b‡*;ÑṲ́6ßʺÌÂØ;?þÜáDÄ~¢y“ùž²£åà—Û² +j¸+Y©_WÆ"jöB¿©7¢×ð¯4–ó•³ÂWú®\]{LÃѳEh+šv4Þí.R¬îÜxH¦è¿l®‘Ú ÒöAùÜþ2´ùm¨X{H¿‡xN¿Î=I†fÏ[ˆßà›0Ÿ&Éhƒug”[Áßêeq»"OðöÞÝb´˜•°Bö$õŸˆß]˜´‰«ÜJ66>Ôʵ÷³Éë”…2´Æ4a "” +Dz3‹ÿv¿£­¥ž+£yBIø3 +ÇcQq›³!&˜ýxýÉÛ ®ª¯˜§÷DÖZ 9Ó«ÓOÛy0Ô[á(û‘4QKÌ—ï³}€?†ù0.¨yFhÂ?áð—Xwˆ¿ÅgÔrç ‰©.«(;ÌýPÿ­ã ø• HÂ+hxØ4$ùCxûÝ ÎxØxø’/> nkïßeÆš»’EÄœ.äÍ×Àt´ä4ðÕ²"k]u‹Æúøˆ¯cÜO¾ÀßvÖ:ÊÓÅ¿ÉØÖ?Øa¦+†A2[úš¶Y,òðóE3÷òȧÛ<º/9:9“˜mYÙF›Œ­§”B,Ö]Áä ‹ 8…#8cÙ†P±âѯƒá7Ÿ÷=¸½¬š/+0e(éð"l3Ã\ n³Ã7NBXFÆt°ô`…òövðCÓÐ力Ñè'¾À=rÔ•×p…f² eKþ"Ö/è +øóef滃g{Þ² ?1nI O#±çËÍ°ÞŠ?²0Â[Äd̈9.û©¶«û‹Ú]»*¸J3y0?å`"›_”Ä«Õù+B”©¡šÛîå2ºi¬0×*X ÿ•¡SôŒâ•ñÒHY3cÏOfG#É ŒF<žO.žv4ò¦Å³`ÍøðؚϷq9j2åÔÕü¯Ù 7*[OóVsãU¦‹LÑé4™M§¸µ¨‰É)Îþ4— M[¡^Æ"rå ÀxÅ+PÜyôæÁ¹5‘uܾ|S^Ž’6ˆŒVÛĪàâ=j±âk¶Sµ¦#ûpWê.9n±?7͙ɣ;´É yÖoHØV”“Â%åèSóSäF¸+¶žç"Œ>ä½nÞ·+^ˆ=FÐǺõ2EoƒË—IÏÉLO¯Ìú¼ñ?DVmLSgáÞªj¸Ô•^½wK6 ÎME7çÇÜ4NÉ°FÊG(N‘H[ +(­œsô‹"YÀªk X¹?øÈØtÊ爷¹É–àÈt‰çº×{o YrsßäMÞç9çä9Ï9ö–6×RŠKùîE•È*R>Wa8Œ¥:(i«øE-¡&Ä€úIGCó)+3ä¸v‹ïMÄ]çaTÒÜèÀq^uüßÒzw 9,:ÏÃ7ØŽB:ÒSòtE‡˜r®â¨îð<9Z–âßFoÌÈÚ]ÀšHªßø ¡&Ísžz¶ /©=<5.²öG£…ù®e8p‡ž™-C¶á2dlLR'1èŠñáÿ@°°äð ›L« —¡p4g5Z–O/‡EÏ`áO° bVÏ hös<^#t Z¸quLì¦Gñtæ‚78Úr’D¨êÙªôã!ìzOy\âã˜àãih!¨±³ƒÎë¶a¼•X“{[•ÐY9Æ]‹qUä;è\¹’K«ÉŒÆ˜W¸~íÈJh—g’o¢Ž²Ý•)zuô ²¦O¨Úré«8Ä&a]h“H²õ…’h¬1דÁXÍ”ìÊÏ.)-,̯(©µgË-m^÷÷ƒ=¿@,¼ÿÊSH¼ƒÜärô¹5˜°ö|•·ê"ÞFoË¥é ÷†t ‰¡]Ð!Ó‰^‰w¹§.À Óî_÷tÙ +>_‚w^ô +bð?ð‰ÝxX Öë&„OÏæ‡Á2ChZƒÂp“,C±¸Vá°Öâ4bYP ©¬I·ßžLÇÄmFIJÛ@Òßn¿ÄÖt•%šê,ú ÕØädߧ—*ÙX©á¥Aïê>ÜÕü3\€º'¬:Ê‹¢°Q;'u:·š+ÂF­É©:\Àjr8ѨwNBMýáºû ½íØ1CÝvxjêŒîÈWtægº¢böÀŠ Š² ¥ó˜]oJ-g±XÚ-$ʵ<°Hð•Öo¯æá«qË|¦5K1¿>"Ü·€‡ÍQ‚_öŸûa³æ +endstream +endobj +849 0 obj +<< +/K [823 0 R 825 0 R 827 0 R] +/P 821 0 R +/S /L +>> +endobj +850 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +851 0 obj +<< +/Filter /FlateDecode +/Length 3259 +/Length1 6160 +>> +stream +H‰ìV}pTÕ?÷Þ÷‘/ R p—gÉæ äCÀÈn$a@H‚l´Èn²›d!ÉÆÝ%¨L(´âvL™‘BV@p^ ¶àÐŽ¥B3£Õ:£3:XÚÎÄÁ±ÆÁ)”ŽVÓß}»dÀÊüÑét¦ï—÷Þï|ÜsÏ9÷¾»!FD™ÔM‚Jï­+™SöÖP‚ÈxÚûšºâò¥’#GˆÌ©Dú¢æΖö×//¶‰²|DÚÆ–¶mÍ}]ßÓ¸··†ÁO^XD”}òüV(rÇg< ùäÛZÛã[«—''ÊÉ#{Ú"M¼‘¼"¶÷¹öÀÖNqŸ1›(ïüeG =4±î5øBg:£¡Î{wûFØ1Ÿ¨'Ž¼Itëƒp0ɪg¾Ë´wÙÏ‘Üé#âûˆ¨äëáìaZúže¥ss\9®W· ¯º9}Múà »µALOÇ©W_¥ß‰Xy¿"Æ÷ª9Ù—0Œ¿²Òz\ëëÕú¾ô“ºfþîþ†º²h1J^sˆR\P>¤$×ÀkRÜoLqûo»ÚœZ:¤ }‘âŒJÙƒ)Îi,{2Åñ±)®¿™âø?SÜdÄÝGäœÒÒùrU¸)‰Ešã²2íŒDñp¤£X.kk“µá–ÖxLÖ†b¡hW(X\]¿¾zµ§p}¸£%ˆ;VTjÙÒˆÞª~T!Ã1 +Ç[CQÑPK8ECA‚¡ö@t³Œ(Ëubó·ç+Ãa于pãëâx(&Áˆ84E¶tÄ£áP¬XÒ’è{)0l…©‰¢¡îfŠCW ¥Nç€& ÖAÅ°,£6@R-t-Ô +[Ì‘Bx‡àÝ…gžÕTOëñ\M* c| ,ÉwŒŠœ1-´Ñw£t«£ÿÓþÿî!ÁÔ3„w}PµKøJ¼ÕHe;ZÕ ®:„ÔîDÜ ]dtÌ·[›oiu¤“›Le#i¤°“ƒš¿,àH1gÎhKRD®«  ÒXUFaÇ[­:¾Xsû锦½¥½…Owâµ7…Ì‚áfת:)©â’¼4b²ç©Ì,cv÷M½ÿë×;7µ”MÌÇwòûÁ~ŠªŒöãâ~šz©—$}h.n¬†.âws:©ôsé<=ôv˜~èh–P#ìð>‹w9lMx3'F/Û뼥݈ý9àgøǺqk”G|@„^ÅÛE/Ñö|¦§`;Eï¨QˆÜ‹_Þ«lÐÃ>bÃ| ´LÍ8›áÝ‹|MÐßX+g v>¹|§“Kr¶nøœÞq¢(¬bm,¢ìqÄâ‚ÏCÔßÃû¸Íψ­\4rf¢àÀÅÙ›ƒ +U´ÕØÀC£Q“øãl-«g­lëCgÙ0p™ñ¥èºÂO„_ËÒ>Ö7ëσÆ:ó`šØ:Î÷Éاt'ªòbŽµÈ9H›ðÛ¡ð0ðzù}z†úèYœ€ýô*ýFÍIçé]Ewƪ®ì.¶h¢lÛ~ô\‡'Ø6À^E~o°÷øtTDªOf¹‹ïç'øüMþ'>Ä?០éb£h1qHo‹·µZŸö¬ö¡ö¡ÎtÛéT®‘gl0z€½fº¹ÙÜmþØQu#©JîbVÅÖ ì~ægí,ƶŽVô<{f'PË{Àûì<û û+ûÌÁUnð‰¼p´¾5¼Ž¯ç›ù>þ4?À_ÄŽà§ùûüjâWPc¦ÈÄ4áU@½x@l»ÄqqFœÃX·,ín­\[§m@íç´!íc¬$×…^ ÏÓ­z‡¾Cïц=¬YNWrñÆbã1ãcÀøÀøÊœ`N4gÅf™Yg¶™]æQsȼ˜v,}Yz8=šá¦£øeûå7¾ÞW°»Ë7%4™ÇnxHŒƒ—:ïÎò,³-=ÌTvf›…•ú#]é´R;GëÅÔ¦7ŠLóS:ÌbÚNö¢¨¢ctÈìb§…_ ‹Cz±8ÙO¾_5·™~ó"2½,žÒ[Íb¶Lïa‡ùR|ÑQ¶–þήЃ˜9ÎgÓ9zœö°.J£Þ´cl ¾µ³|:ëÑŸ/k}«ï`w`§èƒâ4&࿨Y4{]§¶ô;nòFÏ +x6ó"éY1êɲåZRä–^KÚ¿÷Xò$»­ü Õ ía‡¯r¸6ÓÆ@p¹0Bzó[=Òf~鵫ºZ^¿ñú33*­ÊPF‘›ú32A3Áì*«³ŸU•3‡ð*ï¢~Nic•]cy¼vµåQ)Ø¢ÀÚkÖú¼ž).WC‘Ûf•MV£MÖr{\¡ãB•Î4¶Qi›Î42¬Ê¡Ùï~-±÷d65ú ³‚V0ð=Ÿ- jŽœBûËcß³}(¿È}’½Pï³Ó+O2ª÷¢š‘îþên§AÍ–[é{ÌqŸ÷IÛ‡¦ˆ„7?,•˜H<&í¾µ¾ë­.õlh@Ð"÷ÊZŸ Y[Þ½R•Qës*@P–_‚$•N•™,8dy•Æ¿IÚéÖr«5±ÉÅšœ°©v›ëåÉ5§FþL5^™¨÷Y.{é«!à™ÚŸG‰ÚmÕ²úFK‘»?;'Ùéþ±ãR$kÌõ$4js˜ã®²¾Öj¦2²ª±ElÙ$‘‰Ï²yÁBõ-¤DÓB¸áj`èhýó'²©…Ð ²-™¸BØÖð§7j)Q}…UÛetËÁ~Û……öìÙj§˜•XZdVîÈóŠÜ]öJ«3[Ú+Ñ2Zãà†E%h¹Ë¥V¹çd5B°»ÿÅzùÅFQÄqü7w{7s×Úý—‹«rå´16i«RšëaÿÞƒGªæIzm)ÄO‚!lÀk««Ôø$…R°+Ûñ $4Ñ*‰†D1Š‘yôUclýÎþîN®bõÁM?÷™ýýfgwfw»3[S¼¡!sŽb6¦OFg +™Úguæ`!S<<Åã|Þ]ÚÔ:ª¡øWª«îÜõ¤#êVIp¯OgdÖð=”M¦³cfC&;žÆ­é«˜ÍvE#]ÙLv0·|p( E³³‰Dvog¦Ð¥Üò˜éÄÆÓ»ÕiåÑpª·¤¼¦'Í%éM7ñ*Íçy³½?x{ rÓ/ÊTî¿ÒSöÑ%í¯ü£‘h)¼)›I¯ñ ++um¾†r=ç]t¹q`Ì“íOáøF¾Î;]ß…ž+ ~B½ľÄ9. o‚2ÄCìU¸–&ý½4Y8—ï·ÇÁÛ`ØÑÓR¨ ¬·râ¥X¯´NH먴&¤µGZ/Hk§´F¤µ]ZÛ¤•–VJ>¨Ö©ˆz@ݧîUaU§jT• +© +U®‚J)¿2”Gávª½ O¢?.ÎÂ0%†"ίýÑœnÝæø¢qáT%(ñL<ì´5:ž#îŒ&'–g…xcÔÔ“™‹$Äòè„™w:MußÂ%{‰ä¾Ë´V¬'‰ßÖy¹ö3©£ýˆZnÔÒQˆÅ\’Zƒc™ûé. ÿµ‰U³%5;wëî&S³Šâé-ÛÙóž² ú“1ëÓñºÐÞv·sëÃÌK‰i*Ã7½“Ä{€N5u4uè¾h:U¡çùTøÀÆzó’˜Î§B¯ÁPþ)ÀoÖ +endstream +endobj +852 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +¸ «› +endstream +endobj +853 0 obj +<< +/Filter /FlateDecode +/Length 3315 +/Length1 6244 +>> +stream +H‰ìVklTÇ>3s~¶1à…17&¿yˆ1x×€#Ø&ؤ„]{×ÞÛëì.ŠL Ö$j)'Dט´Ò*¥…ZJJ‚”H‰Hi+9"J1%*” +Jè7׋iøÁªªÔûíÜ{ΙoÎcfîÜ%FDÉÔF‚ +Ÿ¨,˜Tt¶7FdfÂúd]kT¾Upð ô"}f}KCÓo¯Î²‰Ri«×ןSõWpO¢}ð{}—ö^˜I”–}Z†ô¡I/@wA(Ð]·p^lô‘ØÞªóŽ>1úÛ‰v¦É»®E*KCá–PØ †šóåÜÆFYlD#²Âñ‡[ý¾üù‹W.X³<ØÜàC‹äUøÖ6zÃj0È`DúƒÑ€?,½2ìoF¢þ°ß'£a¯Ïßä ¯‘!Õs—ZÿíùÊ`³„¹¬9Åøʨ7êHo³¯BN€ºÐÚæh8èäK:Hó^Lƒ´ˆ‚TGa +Q­ž¢°•B +S‹s÷„ÔLùè™K€¤ +Ø°ºQŒRšO?Ø­¸ûÀœO‹JZäÐr°›Á÷ÅŸÊsÆ4ÐZxóbܽڃŽþOóÿ!!©»Ï(æAÕ.Á•xª‘ª7êXÕ|HÈj&}Кk` ŒùöÞúZéä&ãÙHZ-èä âWBò:Zĉ٠kA<ƒÐ]ÔA[‹^•QÐa«UÇkŽa?‘ž ÕÎâÕ~çI>!SÔYŸkQ¥”TrE^¹mäà£Pd1»í¾ìÿúuî¾=E@«æ›ù +H/ã„*¢Ýh>´—¨ƒ:xw?‡&£ÙÊé"¾ˆ“0“Ê>™6âôCÇ2›jÑ_ 6¾{TŒ¾:<™ã£ÿÔóû´¾¿âÝü?åôÎßrÅèïÖ{`Wþ¶Ð[t½ γô"úNÐ95 +ž;ð}¾Î&íìsÖÇ—ÀÊT|øYvòý}Jc¬˜ÅØIpÒùf'—þhmàœÎ9^±Fba¶>{¹àSá5Ä·óNnóS¢F+Ö{ŒtcºÙ/8pqö¦¡BåM½yµÀ3^ûñ!ãl)«b¶‹u"‡Ó¬¸Êóø̺ÂO„GKѾÐ×è¯=Æ2so‚ß:Î÷‘اÙ4U¹c)röÑj|;ž6b.Ÿ£W¨“^Å ØEïЯUL:Oè:fg êšÎeË Ì6±­˜ö»ð<ÛúÙ;Èï=ö1‹ªûшêû³ÜÂwócü=þ>ÿ#ïå_ò¯‰D±JÔŠˆØ/‰ÄÚ­S{UûLûLgºíÌTº‘a¬4Úf¢¹ÆÜjþØÜkþ,)ŸF ®\ÔUŽs¨ŽÖ£’´bΪuÇèm ‡¾Tu·ã•(<Ê\¬Œ-jØ +æaM,ÂÖ T´½Á°c¨åcàvžý™ý…]vp|8Ϩo ¯äËù¾‹¿Ä÷ð7±#»ùIþ ¿€{ù5Ô˜,ÒÅ01F¸EP%žëÄqDœçEÖ-E{L+Ö–i+Qû­Wû+Éu¡gëSõ™@@oÖ7éíúO±£ûô>#Å™•tc¨1ËØf¼btŸ·Ìaæpso™•f£Ùj2{Í‹ ‡ç&ÃI¹t_¶Ÿãí}»û7|¥Q@#Ùyì†gÄ°Ôywš§˜‰AÞ­²3+Ù¬ÔèºH¤Çµ3´\‘ÎÐÚÎZ):³Ax×Nó±¬]MÕ:…[ßÄÁ +ŽÒ{Äh* ÿ¨ 4{]§ uà–LŸ1}ÊäIE…ùy¹9™ððø쇬qYrì˜ïŽ5ò;™#†Ëšž–:dð ”ä¤ÄÓÐ5Á庭2´Ç{lm¼µ`AžÒ-/ Þ» =ì²{9¶ô84y/³Ìúo0Kú™%L–*gÓì¼\鶤ý{—%³K«!?ï²j¤ÝçÈ‹Yï(ƒ dea„tg\Òfé¶ËZ1·Ç]ÉI¥V©?)/—º’’!&C²Ë¬–.VVÌ—¹gvqJ„¬ìrËå¶Z.•‚-²Ý^Ÿ½diµÛ5*+«&/×f¥uV­MÖ<{HŽC¡R'Œm”Ú¦FU9Ô.»rßí<žJµžœŸåó~¯ÚÞ#-Çžo¹ìùz3ór³7ªªíÄÒ㌪ªOPùí¶®…m.WŠ–^Z½Í¡}ĆÞQ"æÎ J¥Æbۤݹ´úîÞ,u¯©Ó¼ÜÇ+ª³µåÞ)UÕNpÊ2 ¤²©2û ö[neñ¬–v¢5Ï +ÄV{°X#c6U¬Ï::²¼äÄí?Q¹[ƪª­,{Î(«ÆëÝ•A±ŠõÝ KäÂ{{òr»RÓúgºkð¸2ènÁ?ÐçH]IÈúÎT3•‘µ[Ä–u™T[6Ïž¡nþ«›®† bþ<±Ô™j!ôìTKÆ®6‚Õwé^‹7n1²S¯‘ÕvØrè¿#Û9ÿb½ìb£¨¢8~f¿îÝmm—~eãªì²Ú˜® i+R¾šéÖ~΃KªfIºl)ÄH}Á ©Áܶ:JORˆ"»2mBB­’ø`H£IÐG_51jëÿÎÙ]ÙŠÕ'ýíïÎ9wî̽3Ó¹7j54¨'EtàÖâÊÚìý °ŒÈ°?d2Š'pPróz y8¬îòXN§4v¬‘í ÞQ:8GúúhÒr¤Tf¡©}JeF +™âá©ç öÒ¦Ö’õÅ¿J]uçÞÍ–V·Jzˆóx}:C³.÷C™x¢~Wf,XŸÊŒ'qkºð*f2]‘PW&•Ù•[IGBþHfÖ02éB—rË cAKOîÕ0¨V †UÝ‘pI.9‚Îd#¯ÒÜŽ×úŸ×¨Üú³ Jû_ééìñ%å/¿ÿ#J´÷ÝM¤Öx…,š–âDeãDË_øn3…í¶‹ðí'µÔ#R­Ê6êó>L“¾}`úD=Mz¯PÖyŽå eÅ:Êz+ó 0eGÁ8eå"e}W)ë~‹Qu]ûÁuä0óoRŸ<‰6_F9ÌyUîF¸æ)ëIàø!F¼Â¸v3ª¾ç*=]@þ€z=ˆ}Žs\D>Ê{±—àZšôôÒdá\î_ó\¸fÏ3ˆ×毣¯Å«£-\·@{òŒþ‰ÀëØoŸã¾ÊQ¿ ÞCó¾(saì…sa<ûVÐZÂ!Ô9´b,þg0wÌ:ÏrŸíó¬dŠù·z.UïÇ;ëhþ|î:Ê•wmÛFK¯ˆýçºÿ ™^Ö’Ÿß¦Õðyð|zøžÛ÷½´Ý¯‹åyòûž ¥È SÌÿVJ1þ"-*Ô=¶Ëíð8oÒ ³–e7fÈêͼ­•c-8A˜IûQÚ„Wø'×€š·ëåÔÕ…*Uk¤ÞÊ9›ëi†ŽØÒfXï³Î²¦YgXï°N±¦X½¬V7+ÆÒYm¬­¬M,ËÅr²4ý ø;p| n€ÁEð!8²`Lƒ3` +œoƒqp ‚»ÍóÜt–uŽõë4ë]Ö Öã¬vÖ6V+K°Ü,‹tþ|®ÏÀ§`|.€yð8 ÞÁîžæow£™Óè½Â<%ÌãÂœæ~a>+Ì=ÂæNaîfR˜ ñ \'CòyŸ¼Wd¬‘UÒ/+d¹ôI)=Ò%Ï°Uí4FL3¬…A2Ò!ë—þHNómßa¹#1ͪ2Èx2°Z£–ã˜=£Éi˳šöêhPMf.‘¦-NóN&©.ú÷-P²gÄ^¡µÚFøm™k?*Ú¨iGM5íh@›‹S³±k,u?Ý¥á¿6mÕlIÍÎ}ª»ñĬ¤X²c'{ÞQæCRÁp2Vçn³;·%8¼ì"mšÊðM/Ç$ñ Ríí*…/šJU¨ùc>8¼%¼¬MçS~„×`(ÿ`b— +endstream +endobj +854 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +855 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 856 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 857 0 R +/FontName /CUCKKZ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +856 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +857 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVkl×>÷ÞyøØÆ€î21!xýâé1†ÝuÀ ¶!¬I »ö®íÅuv  'ÐkµŠ‹ +“†D㘴Ñ*¥ZJJŠ”H‰Hi+9"JqDT(UÒÄýfv± ?øQU•:ŸïÌw÷Üsν3kbD”N]$¨øáÚ¢Y%çãDÚ[Ð>ÒГ¯9B¤O&R4v4µ½um¡I”á%RÖ7µnnì½¼m%|OcliúW^Z@”yò¼f(²Ç¦=ù*ä{›Ûb›–/ï!ÊÊ!»[à þœáœa"VŠq®Í¿©C<¢Í$Ê9Ùîo þdÛ=»á Qœéˆ;þÝ}ëaÇzbqäM¢K€ƒNFùý=¦¼Ç~Žä†I§ØÇDE_eÑâÏp/)žåÈÊsd9º}ÕÅékR¾(íR°<§u…:±r~EŒïµÖd_"ÀþJŠçcêq¥·GéýÒGÖ5ýÿ°ñàÿ0¬+ƒö£Ä5‹(ÉåBJp¼2É5ðú$×qþ¶X‡SI… /’œQ1{,É9fÏ$9Þ1v Éðw’\ÿg’댸óˆœU\ÖÆ¢lÓHE/±—Ùavµ¼|À.²¿°¿²ÏlÜàÏóGê[ÉkùÞÂ÷ñçøþ +Nd??Í?à—Pã ¿ŽÓE¶'¦¨V‰GÅ&±CgÄE1„}ËPTÊ”ÕÊ:Ô~NT>ÁNrU¨yê\uЬ¶«ÛÕnõg8ÑCê–aw%[«-ÔviÏkýÚ‡ÚWú8}¼> (ÔKôZ½UïÔêƒúå”c©KRC©‘4'Å/Û/¿ñö¾ŽÓý[¾N+¢‰ì"NÃãb ¼¬ïÝYž¡·¦†x¿•^Ëf`§þH7D*U)çhx”ZÕz‘®_¡Ã,ª<É^tŒéì´ð‰!qHÍÓ&úÉ÷‹£úfݧ_F¦×ijj³^È–¨Ýì0_Œ7:ªéïì:=†•c|&£=´›uR +õ¤c£ð®åSY·ú¢xMéu;»;8Iߧ¹4ÿEÍ i8ë*åXÜòù¥óçÌžUR\TXàÌŸyÿŒû¦çÝkLsÈ©S¾3yÒÄ{r'Œ—36;+sÌèQéi©)º¦*‚3rzŒ +Ÿ4§ûLeº±lY%~(ü·(|&þõ0+n÷1¥Ïv“·{–óñžå ÏòO–)Ñ¢§ôÒü½Û'ÙÚj/øÓn£NšC6_aseº-Œ‚àp`†ôä6»¥É|ÒcVt6Ç=>7âõ¥§¹ W0­ÀI}ié é`f…ÑÑÇ*ʘMx…gA§”QÈʬ4Üs¹á¶R0EžÇ0WV{=îIG]Ód®£Þ$c©9&ßv!—½Œ©¹LÝ^F†¬r¨[ö9ߌï=™Iõ¾üŒ€ðÏk +µFV¾ùá6Ú2˜[à<É^^å5S]'­òž¢Êᮾå]nwµZ¶Ë»ËvŸ÷ ['‰¸'7$-1ß%ÍÞjï­V‡u¯«CÐgU׬ Ï^i•Qãµ+@P–[„$-Uf¢à á±4¾ ÒL5–Íñ >lÖĸI5›¯M¬,?5ügªôÈø*¯á0O2êüîÉ}9¯ÙÜ¿¼\.¿ÝRàìËÌJtºoô˜$Éu+ ŽØlf»[ Yßl5³22–㈘²A"¯aò¼Rë,¥xC)ÜpÕ1t4„þùâ™ ¬Pó2 ¿N8ÆЕÛ5þ¤FË˼NµŽËÈ‘ƒý&7óóÍ™3­“¢»°µÈ¬Ì–ç8;Í*£#SšUh­ôbRÝ‚"´Üá°v¹ûd9ÕC0»ª½ ù_¬—_lEÇs·w3w­íѹ¸*WcÓ˜¶*E ¹öï=x¤hzHÒkK $*$&‚!˜Ú€×VW©ñI +Q¤`W¶-âAHh¢U ‰b# úè«&ÆØúýÝ\Åꃛ~î3ûûÍÎîÌîvg"4hÎQì¡ú”ãIëÌB>Sý¤ÎÎg +‡§£xœÏ»K›jGÕþÊC5•í{sDÍ*éaÎãõi̾û3ɾºÌ˜Y—ÎŒ§pk:ð*f2ÑHG&È.ŒFBÑÌl"‘ÙßžÎw)»¼0f:±ñÔAušy4œÊ­}^Ó“â’Çô¦x•æó¼þü³#ÛûË7ÿ¢Låþ+=e[Òþê‡?ꉖ’Á›²‘ô/¿ÂƒeãR’¨dœhùËàÍB&¿Ý2ß~ÒK="ݪj¥žÀ4Ü ¨GÖÑdà2ÙÞ³´¨fÈ–ëÈ”çègJŽ€q²Õ"ÙÁ+dûÞft]c¸†f>ò-êQ'Ðæ+(×rÞE—;Æ<Ùþ>?ÌÈWc£ëû¯ÐSyԨׅØ8ÇäMP‚ØȽ WÓ¤¿›&óçòý–ã*À5ûŸF¼:wòµbh ×-Ñžº£òEðö›á縯jÇowÓ|°žŽ;Mþ\Ïž´qu®‹ÿÌmïî³{ž•L1ÿVÏÐõ~º½Žår×P.¿cÛ.bpEìÈ?×ýo¨Á`M øùm\ ϧŸï¹{ß‹Ûý¦P¾ž#·ï¤•a +ùß‹)Ä_¢E¾Çn¹ ¾ ï òVÓêÄ Y¿™·D)Ö‚T†™t¥x…6úõ¼=VJ¨R±Fź"YÏ£s]MЈ+1Ãú€u†5Í:Íz—u’5Åêfu±:YqVŒÕÊÚÌÚÈò³ –—%bOÀ߃à;p|.€À9`ƒ0 Nƒ)p¼ÆÁýn›ç¸i›u–õ>ëë=ÖqÖã¬6ÖV K²|,‹b1ø[ð5¸ +>ŸEð18æÁ‡àx»ºšªU VV¼ë–ÖIi“Ö„´öIëií–Ö°´vJk‡´RÒê“ëÕ:Q÷©{ÔÝ*¬jT•ªP!U¦JUP)åW†ò(<ÃN¥7áIôÆEÂY¢Ä`Äùµ7šÁm;_4.œŠ%¶ÇÃNK½ã9êÎh²byVˆ×FM=™¹HB,N˜9§RTSÿ÷-\´—H¸LkÅ’ømž—k?•:Ú‹¨åF-µÜhXÌ%©)10–¾—îÐð_›X5[T³}¯în²oVQ<µu'{ÞSDÒfm*^ÚßêvnSmøyÉ 1M%ø¦—b’xЩ†¶†6ÂM§Êôü1— +ÚTk^Ó¹Tá5Ê?ÑoÖ +endstream +endobj +xref +0 858 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000376 00000 n +0000004658 00000 n +0000004867 00000 n +0000004994 00000 n +0000006102 00000 n +0000008415 00000 n +0000010770 00000 n +0000012862 00000 n +0000015236 00000 n +0000017357 00000 n +0000019721 00000 n +0000021829 00000 n +0000024104 00000 n +0000026199 00000 n +0000029085 00000 n +0000031194 00000 n +0000033913 00000 n +0000036009 00000 n +0000038359 00000 n +0000040467 00000 n +0000043231 00000 n +0000045327 00000 n +0000047983 00000 n +0000050092 00000 n +0000052467 00000 n +0000054576 00000 n +0000055508 00000 n +0000056583 00000 n +0000056651 00000 n +0000056896 00000 n +0000057133 00000 n +0000061513 00000 n +0000061692 00000 n +0000061819 00000 n +0000061944 00000 n +0000062411 00000 n +0000062859 00000 n +0000063011 00000 n +0000063437 00000 n +0000063715 00000 n +0000064113 00000 n +0000064512 00000 n +0000064728 00000 n +0000077044 00000 n +0000077552 00000 n +0000078700 00000 n +0000079736 00000 n +0000080851 00000 n +0000081943 00000 n +0000082980 00000 n +0000083964 00000 n +0000085000 00000 n +0000085511 00000 n +0000085638 00000 n +0000085763 00000 n +0000086493 00000 n +0000086724 00000 n +0000086940 00000 n +0000087378 00000 n +0000088340 00000 n +0000093575 00000 n +0000093727 00000 n +0000094646 00000 n +0000100749 00000 n +0000101173 00000 n +0000106541 00000 n +0000107015 00000 n +0000112651 00000 n +0000118816 00000 n +0000124524 00000 n +0000130423 00000 n +0000135822 00000 n +0000142976 00000 n +0000143503 00000 n +0000150021 00000 n +0000156655 00000 n +0000162285 00000 n +0000168791 00000 n +0000174751 00000 n +0000177611 00000 n +0000177679 00000 n +0000332401 00000 n +0000338589 00000 n +0000344459 00000 n +0000350608 00000 n +0000356050 00000 n +0000359784 00000 n +0000359896 00000 n +0000360023 00000 n +0000360864 00000 n +0000362097 00000 n +0000362202 00000 n +0000362596 00000 n +0000363329 00000 n +0000364386 00000 n +0000365638 00000 n +0000367186 00000 n +0000368993 00000 n +0000371090 00000 n +0000373459 00000 n +0000376079 00000 n +0000379303 00000 n +0000382810 00000 n +0000386680 00000 n +0000390878 00000 n +0000395352 00000 n +0000400190 00000 n +0000404992 00000 n +0000410307 00000 n +0000415886 00000 n +0000421829 00000 n +0000427968 00000 n +0000434333 00000 n +0000434606 00000 n +0000435127 00000 n +0000435399 00000 n +0000435878 00000 n +0000435905 00000 n +0000436210 00000 n +0000436575 00000 n +0000437004 00000 n +0000437304 00000 n +0000437613 00000 n +0000437943 00000 n +0000438318 00000 n +0000438656 00000 n +0000439031 00000 n +0000439355 00000 n +0000439680 00000 n +0000439833 00000 n +0000440029 00000 n +0000440302 00000 n +0000440940 00000 n +0000441364 00000 n +0000441714 00000 n +0000442038 00000 n +0000442363 00000 n +0000442746 00000 n +0000443195 00000 n +0000443348 00000 n +0000443781 00000 n +0000443976 00000 n +0000444376 00000 n +0000444403 00000 n +0000444717 00000 n +0000444870 00000 n +0000445293 00000 n +0000445488 00000 n +0000445686 00000 n +0000446080 00000 n +0000446352 00000 n +0000446776 00000 n +0000446874 00000 n +0000447330 00000 n +0000447886 00000 n +0000447984 00000 n +0000448469 00000 n +0000449026 00000 n +0000454492 00000 n +0000454618 00000 n +0000454771 00000 n +0000455186 00000 n +0000455580 00000 n +0000455778 00000 n +0000455931 00000 n +0000456170 00000 n +0000456714 00000 n +0000457866 00000 n +0000457930 00000 n +0000457984 00000 n +0000458038 00000 n +0000458178 00000 n +0000458232 00000 n +0000458286 00000 n +0000458381 00000 n +0000458511 00000 n +0000458587 00000 n +0000458701 00000 n +0000458782 00000 n +0000458864 00000 n +0000458997 00000 n +0000459079 00000 n +0000459161 00000 n +0000459243 00000 n +0000459350 00000 n +0000459432 00000 n +0000459514 00000 n +0000459613 00000 n +0000459695 00000 n +0000459825 00000 n +0000459907 00000 n +0000459989 00000 n +0000460071 00000 n +0000460148 00000 n +0000460240 00000 n +0000460306 00000 n +0000460372 00000 n +0000460437 00000 n +0000460503 00000 n +0000460569 00000 n +0000460629 00000 n +0000460695 00000 n +0000460761 00000 n +0000460821 00000 n +0000460887 00000 n +0000460953 00000 n +0000461013 00000 n +0000461098 00000 n +0000461169 00000 n +0000461235 00000 n +0000461301 00000 n +0000461366 00000 n +0000461432 00000 n +0000461498 00000 n +0000461563 00000 n +0000461629 00000 n +0000461695 00000 n +0000461760 00000 n +0000461869 00000 n +0000461952 00000 n +0000462035 00000 n +0000462137 00000 n +0000462220 00000 n +0000462303 00000 n +0000462381 00000 n +0000462478 00000 n +0000462561 00000 n +0000462651 00000 n +0000462718 00000 n +0000462793 00000 n +0000462876 00000 n +0000462943 00000 n +0000463018 00000 n +0000463101 00000 n +0000463168 00000 n +0000463229 00000 n +0000463296 00000 n +0000463357 00000 n +0000463424 00000 n +0000463485 00000 n +0000463552 00000 n +0000463661 00000 n +0000463819 00000 n +0000463902 00000 n +0000463985 00000 n +0000464068 00000 n +0000464151 00000 n +0000464218 00000 n +0000464503 00000 n +0000464586 00000 n +0000464669 00000 n +0000464752 00000 n +0000464836 00000 n +0000464904 00000 n +0000465022 00000 n +0000465106 00000 n +0000465174 00000 n +0000465332 00000 n +0000465416 00000 n +0000465500 00000 n +0000465584 00000 n +0000465668 00000 n +0000465736 00000 n +0000465846 00000 n +0000465925 00000 n +0000466023 00000 n +0000466107 00000 n +0000466186 00000 n +0000466266 00000 n +0000466345 00000 n +0000467041 00000 n +0000467125 00000 n +0000467209 00000 n +0000467293 00000 n +0000467377 00000 n +0000467457 00000 n +0000467575 00000 n +0000467643 00000 n +0000467711 00000 n +0000467783 00000 n +0000467851 00000 n +0000467919 00000 n +0000467999 00000 n +0000468083 00000 n +0000468151 00000 n +0000468219 00000 n +0000468281 00000 n +0000468360 00000 n +0000468490 00000 n +0000468574 00000 n +0000468658 00000 n +0000468737 00000 n +0000468883 00000 n +0000468967 00000 n +0000469051 00000 n +0000469198 00000 n +0000469282 00000 n +0000469366 00000 n +0000469450 00000 n +0000469541 00000 n +0000469628 00000 n +0000469723 00000 n +0000469807 00000 n +0000469886 00000 n +0000469992 00000 n +0000470076 00000 n +0000470156 00000 n +0000470224 00000 n +0000470292 00000 n +0000470360 00000 n +0000470428 00000 n +0000470496 00000 n +0000470564 00000 n +0000470632 00000 n +0000470700 00000 n +0000470768 00000 n +0000470836 00000 n +0000470904 00000 n +0000470976 00000 n +0000471059 00000 n +0000471138 00000 n +0000471272 00000 n +0000471356 00000 n +0000471440 00000 n +0000471524 00000 n +0000471603 00000 n +0000471733 00000 n +0000471817 00000 n +0000471901 00000 n +0000471988 00000 n +0000472091 00000 n +0000472175 00000 n +0000472254 00000 n +0000472372 00000 n +0000472456 00000 n +0000472563 00000 n +0000472647 00000 n +0000472731 00000 n +0000472822 00000 n +0000472906 00000 n +0000472985 00000 n +0000473087 00000 n +0000473206 00000 n +0000473290 00000 n +0000473417 00000 n +0000473501 00000 n +0000473585 00000 n +0000473669 00000 n +0000473894 00000 n +0000473978 00000 n +0000474062 00000 n +0000474146 00000 n +0000474225 00000 n +0000474347 00000 n +0000474431 00000 n +0000474515 00000 n +0000474594 00000 n +0000474736 00000 n +0000474820 00000 n +0000474904 00000 n +0000474988 00000 n +0000475067 00000 n +0000475205 00000 n +0000475289 00000 n +0000475396 00000 n +0000475480 00000 n +0000475595 00000 n +0000475679 00000 n +0000475758 00000 n +0000475900 00000 n +0000475984 00000 n +0000476068 00000 n +0000476152 00000 n +0000476236 00000 n +0000476451 00000 n +0000476535 00000 n +0000476619 00000 n +0000476703 00000 n +0000476787 00000 n +0000476871 00000 n +0000477560 00000 n +0000477644 00000 n +0000477728 00000 n +0000477812 00000 n +0000477896 00000 n +0000477984 00000 n +0000478162 00000 n +0000478246 00000 n +0000478330 00000 n +0000478414 00000 n +0000478498 00000 n +0000478582 00000 n +0000478666 00000 n +0000478750 00000 n +0000478834 00000 n +0000478918 00000 n +0000478997 00000 n +0000479139 00000 n +0000479223 00000 n +0000479307 00000 n +0000479530 00000 n +0000479614 00000 n +0000479698 00000 n +0000479782 00000 n +0000479866 00000 n +0000479950 00000 n +0000480034 00000 n +0000480145 00000 n +0000480229 00000 n +0000480313 00000 n +0000480460 00000 n +0000480544 00000 n +0000480628 00000 n +0000480712 00000 n +0000480843 00000 n +0000480927 00000 n +0000481011 00000 n +0000481098 00000 n +0000481182 00000 n +0000481250 00000 n +0000481318 00000 n +0000481380 00000 n +0000481448 00000 n +0000481516 00000 n +0000481596 00000 n +0000481680 00000 n +0000481748 00000 n +0000481816 00000 n +0000481884 00000 n +0000481952 00000 n +0000482020 00000 n +0000482092 00000 n +0000482160 00000 n +0000482228 00000 n +0000482324 00000 n +0000482408 00000 n +0000482492 00000 n +0000482560 00000 n +0000482628 00000 n +0000482700 00000 n +0000482768 00000 n +0000482836 00000 n +0000482924 00000 n +0000483008 00000 n +0000483076 00000 n +0000483144 00000 n +0000483240 00000 n +0000483324 00000 n +0000483408 00000 n +0000483499 00000 n +0000483583 00000 n +0000483651 00000 n +0000483719 00000 n +0000483791 00000 n +0000483859 00000 n +0000483927 00000 n +0000483999 00000 n +0000484067 00000 n +0000484135 00000 n +0000484211 00000 n +0000484295 00000 n +0000484363 00000 n +0000484431 00000 n +0000484499 00000 n +0000484567 00000 n +0000484635 00000 n +0000484715 00000 n +0000484799 00000 n +0000484867 00000 n +0000484935 00000 n +0000485023 00000 n +0000485107 00000 n +0000485191 00000 n +0000485338 00000 n +0000485422 00000 n +0000485506 00000 n +0000485590 00000 n +0000485669 00000 n +0000485775 00000 n +0000485859 00000 n +0000486026 00000 n +0000486110 00000 n +0000486194 00000 n +0000486278 00000 n +0000486362 00000 n +0000486446 00000 n +0000486625 00000 n +0000486709 00000 n +0000486793 00000 n +0000486877 00000 n +0000486961 00000 n +0000487045 00000 n +0000487129 00000 n +0000487232 00000 n +0000487355 00000 n +0000487439 00000 n +0000487562 00000 n +0000487646 00000 n +0000487730 00000 n +0000487821 00000 n +0000487905 00000 n +0000487973 00000 n +0000488041 00000 n +0000488103 00000 n +0000488171 00000 n +0000488239 00000 n +0000488301 00000 n +0000488369 00000 n +0000488437 00000 n +0000488499 00000 n +0000488567 00000 n +0000488635 00000 n +0000488697 00000 n +0000488765 00000 n +0000488833 00000 n +0000488895 00000 n +0000489098 00000 n +0000489182 00000 n +0000489266 00000 n +0000489350 00000 n +0000489434 00000 n +0000489518 00000 n +0000489602 00000 n +0000489686 00000 n +0000489765 00000 n +0000490013 00000 n +0000490097 00000 n +0000490181 00000 n +0000490265 00000 n +0000490376 00000 n +0000490460 00000 n +0000490544 00000 n +0000490623 00000 n +0000490702 00000 n +0000490812 00000 n +0000490896 00000 n +0000491011 00000 n +0000491095 00000 n +0000491238 00000 n +0000491322 00000 n +0000491406 00000 n +0000491490 00000 n +0000491558 00000 n +0000491626 00000 n +0000491688 00000 n +0000491756 00000 n +0000491824 00000 n +0000491904 00000 n +0000491988 00000 n +0000492056 00000 n +0000492124 00000 n +0000492186 00000 n +0000492254 00000 n +0000492322 00000 n +0000492390 00000 n +0000492497 00000 n +0000492581 00000 n +0000492665 00000 n +0000492786 00000 n +0000492870 00000 n +0000492954 00000 n +0000493023 00000 n +0000493092 00000 n +0000493155 00000 n +0000493224 00000 n +0000493293 00000 n +0000493356 00000 n +0000493425 00000 n +0000493494 00000 n +0000493564 00000 n +0000493633 00000 n +0000493702 00000 n +0000493772 00000 n +0000493841 00000 n +0000493910 00000 n +0000493985 00000 n +0000494066 00000 n +0000494207 00000 n +0000494292 00000 n +0000494429 00000 n +0000494514 00000 n +0000494599 00000 n +0000494746 00000 n +0000494831 00000 n +0000494916 00000 n +0000495043 00000 n +0000495128 00000 n +0000495213 00000 n +0000495330 00000 n +0000495415 00000 n +0000495534 00000 n +0000495619 00000 n +0000495700 00000 n +0000495897 00000 n +0000495982 00000 n +0000496067 00000 n +0000496152 00000 n +0000496263 00000 n +0000496419 00000 n +0000496504 00000 n +0000496589 00000 n +0000496674 00000 n +0000496759 00000 n +0000496844 00000 n +0000497146 00000 n +0000497231 00000 n +0000497366 00000 n +0000497451 00000 n +0000497536 00000 n +0000497621 00000 n +0000497702 00000 n +0000497782 00000 n +0000497890 00000 n +0000498006 00000 n +0000498119 00000 n +0000498199 00000 n +0000498292 00000 n +0000498361 00000 n +0000498430 00000 n +0000498508 00000 n +0000498593 00000 n +0000498662 00000 n +0000498731 00000 n +0000498809 00000 n +0000498894 00000 n +0000498963 00000 n +0000499032 00000 n +0000499107 00000 n +0000499176 00000 n +0000499245 00000 n +0000499315 00000 n +0000499384 00000 n +0000499453 00000 n +0000499523 00000 n +0000499592 00000 n +0000499661 00000 n +0000499754 00000 n +0000499839 00000 n +0000499908 00000 n +0000499977 00000 n +0000500052 00000 n +0000500121 00000 n +0000500190 00000 n +0000500270 00000 n +0000500339 00000 n +0000500408 00000 n +0000500483 00000 n +0000500552 00000 n +0000500621 00000 n +0000500714 00000 n +0000500799 00000 n +0000500879 00000 n +0000500960 00000 n +0000501041 00000 n +0000501122 00000 n +0000501203 00000 n +0000501284 00000 n +0000501365 00000 n +0000511695 00000 n +0000520429 00000 n +0000520617 00000 n +0000523111 00000 n +0000523612 00000 n +0000525349 00000 n +0000527115 00000 n +0000527856 00000 n +0000527883 00000 n +0000528188 00000 n +0000528498 00000 n +0000542262 00000 n +0000545810 00000 n +0000546551 00000 n +0000549339 00000 n +0000549366 00000 n +0000549678 00000 n +0000550120 00000 n +0000550420 00000 n +0000550784 00000 n +0000551159 00000 n +0000551357 00000 n +0000551384 00000 n +0000551696 00000 n +0000552111 00000 n +0000552411 00000 n +0000552711 00000 n +0000553070 00000 n +0000559892 00000 n +0000564317 00000 n +0000568456 00000 n +0000568483 00000 n +0000568788 00000 n +0000569137 00000 n +0000569534 00000 n +0000569874 00000 n +0000570233 00000 n +0000570533 00000 n +0000570833 00000 n +0000570860 00000 n +0000571165 00000 n +0000571486 00000 n +0000571811 00000 n +0000571904 00000 n +0000572325 00000 n +0000572822 00000 n +0000572899 00000 n +0000572968 00000 n +0000573023 00000 n +0000573108 00000 n +0000573170 00000 n +0000573232 00000 n +0000573294 00000 n +0000573356 00000 n +0000573418 00000 n +0000573487 00000 n +0000573564 00000 n +0000573673 00000 n +0000573766 00000 n +0000573851 00000 n +0000573928 00000 n +0000574013 00000 n +0000574114 00000 n +0000574169 00000 n +0000574232 00000 n +0000574302 00000 n +0000574365 00000 n +0000574435 00000 n +0000574498 00000 n +0000574568 00000 n +0000574631 00000 n +0000574701 00000 n +0000574764 00000 n +0000574834 00000 n +0000574897 00000 n +0000574967 00000 n +0000575030 00000 n +0000575100 00000 n +0000575153 00000 n +0000575325 00000 n +0000575378 00000 n +0000575448 00000 n +0000575501 00000 n +0000575571 00000 n +0000575624 00000 n +0000575694 00000 n +0000575747 00000 n +0000575817 00000 n +0000575880 00000 n +0000575950 00000 n +0000576013 00000 n +0000576083 00000 n +0000576146 00000 n +0000576216 00000 n +0000576279 00000 n +0000576349 00000 n +0000576412 00000 n +0000576482 00000 n +0000576545 00000 n +0000576615 00000 n +0000576678 00000 n +0000576748 00000 n +0000576811 00000 n +0000576983 00000 n +0000577046 00000 n +0000577116 00000 n +0000577179 00000 n +0000577249 00000 n +0000577312 00000 n +0000577382 00000 n +0000577445 00000 n +0000577515 00000 n +0000577578 00000 n +0000577648 00000 n +0000577711 00000 n +0000577781 00000 n +0000577844 00000 n +0000577914 00000 n +0000577977 00000 n +0000578047 00000 n +0000578110 00000 n +0000578180 00000 n +0000578243 00000 n +0000578313 00000 n +0000578376 00000 n +0000578446 00000 n +0000578509 00000 n +0000578579 00000 n +0000578642 00000 n +0000578712 00000 n +0000578775 00000 n +0000578845 00000 n +0000578908 00000 n +0000578978 00000 n +0000579041 00000 n +0000579111 00000 n +0000579174 00000 n +0000579244 00000 n +0000579307 00000 n +0000579377 00000 n +0000579440 00000 n +0000579510 00000 n +0000579573 00000 n +0000579643 00000 n +0000579706 00000 n +0000579776 00000 n +0000579839 00000 n +0000579909 00000 n +0000579972 00000 n +0000580042 00000 n +0000580105 00000 n +0000580175 00000 n +0000580238 00000 n +0000580308 00000 n +0000580371 00000 n +0000580441 00000 n +0000580504 00000 n +0000580574 00000 n +0000580637 00000 n +0000580707 00000 n +0000580770 00000 n +0000580848 00000 n +0000580911 00000 n +0000580982 00000 n +0000581045 00000 n +0000581116 00000 n +0000581179 00000 n +0000581250 00000 n +0000581313 00000 n +0000581383 00000 n +0000581446 00000 n +0000581516 00000 n +0000581579 00000 n +0000581649 00000 n +0000581712 00000 n +0000581782 00000 n +0000581845 00000 n +0000581915 00000 n +0000581991 00000 n +0000582285 00000 n +0000584721 00000 n +0000584797 00000 n +0000585091 00000 n +0000585279 00000 n +0000587321 00000 n +0000588731 00000 n +0000589182 00000 n +0000589876 00000 n +0000593246 00000 n +0000593315 00000 n +0000593403 00000 n +0000596751 00000 n +0000596839 00000 n +0000600243 00000 n +0000600319 00000 n +0000600613 00000 n +0000600701 00000 n +trailer +<< +/ID [<0CCEBAD5A7964743A0E97CF8E5A56404> <8DC226902AE8F64FA780EDF231293036>] +/Info 1 0 R +/Root 2 0 R +/Size 858 +>> +startxref +604050 +%%EOF diff --git a/src/Static/data/Standards/3/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.docx b/src/Static/data/Standards/3/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.docx new file mode 100644 index 0000000..62e338d Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.docx differ diff --git a/src/Static/data/Standards/3/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.pdf b/src/Static/data/Standards/3/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.pdf new file mode 100644 index 0000000..0a1f17d Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.pdf differ diff --git a/src/Static/data/Standards/3/IDDRS-3.20-DDR-Programme-Design.docx b/src/Static/data/Standards/3/IDDRS-3.20-DDR-Programme-Design.docx new file mode 100644 index 0000000..1cd81cc Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.20-DDR-Programme-Design.docx differ diff --git a/src/Static/data/Standards/3/IDDRS-3.20-DDR-Programme-Design.pdf b/src/Static/data/Standards/3/IDDRS-3.20-DDR-Programme-Design.pdf new file mode 100644 index 0000000..67967db Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.20-DDR-Programme-Design.pdf differ diff --git a/src/Static/data/Standards/3/IDDRS-3.30-National-Institutions-for-DDR.docx b/src/Static/data/Standards/3/IDDRS-3.30-National-Institutions-for-DDR.docx new file mode 100644 index 0000000..87d633d Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.30-National-Institutions-for-DDR.docx differ diff --git a/src/Static/data/Standards/3/IDDRS-3.30-National-Institutions-for-DDR.pdf b/src/Static/data/Standards/3/IDDRS-3.30-National-Institutions-for-DDR.pdf new file mode 100644 index 0000000..64969db Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.30-National-Institutions-for-DDR.pdf differ diff --git a/src/Static/data/Standards/3/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.docx b/src/Static/data/Standards/3/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.docx new file mode 100644 index 0000000..9d54089 Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.docx differ diff --git a/src/Static/data/Standards/3/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.pdf b/src/Static/data/Standards/3/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.pdf new file mode 100644 index 0000000..aff4564 Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.pdf differ diff --git a/src/Static/data/Standards/3/IDDRS-3.41-Finance-and-Budgeting.docx b/src/Static/data/Standards/3/IDDRS-3.41-Finance-and-Budgeting.docx new file mode 100644 index 0000000..e998c71 Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.41-Finance-and-Budgeting.docx differ diff --git a/src/Static/data/Standards/3/IDDRS-3.41-Finance-and-Budgeting.pdf b/src/Static/data/Standards/3/IDDRS-3.41-Finance-and-Budgeting.pdf new file mode 100644 index 0000000..7bacaf5 Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.41-Finance-and-Budgeting.pdf differ diff --git a/src/Static/data/Standards/3/IDDRS-3.42-Personnel-and-Staffing.docx b/src/Static/data/Standards/3/IDDRS-3.42-Personnel-and-Staffing.docx new file mode 100644 index 0000000..bd342e2 Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.42-Personnel-and-Staffing.docx differ diff --git a/src/Static/data/Standards/3/IDDRS-3.42-Personnel-and-Staffing.pdf b/src/Static/data/Standards/3/IDDRS-3.42-Personnel-and-Staffing.pdf new file mode 100644 index 0000000..3bed916 Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.42-Personnel-and-Staffing.pdf differ diff --git a/src/Static/data/Standards/3/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.docx b/src/Static/data/Standards/3/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.docx new file mode 100644 index 0000000..476b48d Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.docx differ diff --git a/src/Static/data/Standards/3/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.pdf b/src/Static/data/Standards/3/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.pdf new file mode 100644 index 0000000..efd1317 Binary files /dev/null and b/src/Static/data/Standards/3/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.pdf differ diff --git a/src/Static/data/Standards/4/IDDRS-4.10-Disarmament.pdf.docx b/src/Static/data/Standards/4/IDDRS-4.10-Disarmament.pdf.docx new file mode 100644 index 0000000..d1369fc Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.10-Disarmament.pdf.docx differ diff --git a/src/Static/data/Standards/4/IDDRS-4.10-Disarmament.pdf.pdf b/src/Static/data/Standards/4/IDDRS-4.10-Disarmament.pdf.pdf new file mode 100644 index 0000000..77e9892 --- /dev/null +++ b/src/Static/data/Standards/4/IDDRS-4.10-Disarmament.pdf.pdf @@ -0,0 +1,32406 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210108153233+01'00') +/Creator (Adobe InDesign 15.0 \(Windows\)) +/ModDate (D:20210428131638+02'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Names 4 0 R +/Pages 5 0 R +/StructTreeRoot 6 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4198 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-01-08T15:32:39+01:00 + 2021-01-08T16:32:33+02:00 + Adobe InDesign 15.0 (Windows) + 2021-04-28T13:16:38+02:00 + uuid:d57bbe44-6e7a-440a-b0db-3a73ecbc13a4 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + uuid:3752e781-1631-4230-b850-7a2ca34a4a92 + proof:pdf + + xmp.iid:6aa3da44-a7ef-684e-aa92-fdb673e22097 + xmp.did:292f6962-bb23-ef4a-9415-41c53ea174c7 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 15.0 (Windows) + / + 2021-01-08T15:32:34+01:00 + + + + application/pdf + False + Adobe PDF Library 15.0 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Dests 7 0 R +>> +endobj +5 0 obj +<< +/Count 43 +/Kids [8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R +24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R +40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R] +/Type /Pages +>> +endobj +6 0 obj +<< +/ClassMap 51 0 R +/K 52 0 R +/ParentTree 53 0 R +/ParentTreeNextKey 59 +/RoleMap 54 0 R +/Type /StructTreeRoot +>> +endobj +7 0 obj +<< +/Names [(BICC_UN_DDR-Module _4.10_final.indd:7912) [43 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7913) [null /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7914) [42 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7915) [null /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7916) [39 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7917) [null /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7918) [37 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7919) [null /Fit] +(BICC_UN_DDR-Module _4.10_final.indd:7920) [29 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7921) [null /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7922) [22 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7923) [null /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7924) [14 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7925) [null /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7926) [10 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7927) [null /Fit] +(BICC_UN_DDR-Module _4.10_final.indd:7928) [10 0 R /Fit] (BICC_UN_DDR-Module _4.10_final.indd:7929) [null /Fit]] +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 55 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ColorSpace << +/CS0 56 0 R +>> +/ExtGState << +/GS0 57 0 R +/GS1 58 0 R +>> +/Font << +/TT0 59 0 R +/TT1 60 0 R +/C2_0 61 0 R +/T1_0 62 0 R +/T1_1 63 0 R +/T1_2 64 0 R +/T1_3 65 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 66 0 R +/Fm1 67 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 68 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1730 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 57 0 R +/GS1 58 0 R +>> +/Font << +/TT0 60 0 R +/TT1 59 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 69 0 R +/Fm1 70 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/Annots 71 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [72 0 R 73 0 R 74 0 R 75 0 R 76 0 R 77 0 R 78 0 R 79 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 84 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/TT1 88 0 R +/T1_0 83 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 90 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 88 0 R +/TT1 82 0 R +/T1_0 83 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 88 0 R +/TT1 82 0 R +/T1_0 83 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/Annots 92 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 93 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 94 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 95 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 96 0 R +/GS1 97 0 R +/GS2 98 0 R +>> +/Font << +/F0 83 0 R +/F1 82 0 R +/F2 99 0 R +/F3 100 0 R +/F4 94 0 R +>> +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 101 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 99 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 102 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 99 0 R +/T1_2 94 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 103 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 99 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 104 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 105 0 R +/GS1 106 0 R +/GS2 107 0 R +>> +/Font << +/F0 83 0 R +/F1 100 0 R +/F2 82 0 R +/F3 99 0 R +/F4 94 0 R +>> +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 108 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 85 0 R +/T1_2 99 0 R +/T1_3 94 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 109 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 110 0 R +/GS1 111 0 R +/GS2 112 0 R +>> +/Font << +/F0 83 0 R +/F1 100 0 R +/F2 82 0 R +/F3 99 0 R +/F4 94 0 R +>> +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/Annots 113 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 114 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/TT1 88 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 115 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 85 0 R +/T1_2 99 0 R +/T1_3 94 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 17 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 116 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 99 0 R +/T1_2 94 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 18 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 117 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1899 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 17 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 20.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [2999.0 0.0 2.0 642.756 -344.409 1059.45 321.732 1.0 0.0 0.0 1.0 851.102 -44.8819] +/7 [3526.0 1.0 2.0 -501.732 -340.157 -85.0394 -222.236 1.0 0.0 0.0 1.0 -501.232 -339.657] +/8 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 26.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [5814.0 2.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +/13 [6811.0 3.0 2.0 -501.72 -222.19 -85.0276 23.811 1.0 0.0 0.0 1.0 -501.22 -221.69] +/14 [6890.0 4.0 2.0 -501.732 31.4646 -85.0394 48.7559 1.0 0.0 0.0 1.0 -460.346 61.5118] +/15 [8287.0 5.0 0.0 -527.953 46.063 -65.1969 341.575 1.0 0.0 0.0 1.0 -103.524 356.188] +/16 [8290.0 6.0 4.0 -485.96 46.063 -107.19 341.575 0.47644 0.0 0.0 0.47644 -485.96 46.063] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 118 0 R +/GS1 119 0 R +/GS2 120 0 R +>> +/Font << +/F0 121 0 R +/F1 122 0 R +/F2 123 0 R +/F3 124 0 R +>> +/XObject << +/Fm0 125 0 R +/Im0 126 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 127 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1870 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 20 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 128 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1813 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 129 0 R +/GS1 130 0 R +/GS2 131 0 R +>> +/Font << +/F0 83 0 R +/F1 99 0 R +/F2 94 0 R +/F3 100 0 R +>> +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 42 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 132 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1814 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 21 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/Annots 133 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 134 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3119 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 135 0 R +/GS1 136 0 R +/GS2 137 0 R +>> +/Font << +/F0 83 0 R +/F1 99 0 R +/F2 82 0 R +/F3 100 0 R +/F4 94 0 R +>> +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 22 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 138 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3120 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 24 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 139 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 6174 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 25 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +32 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 140 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 6175 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 141 0 R +/GS1 142 0 R +/GS2 143 0 R +>> +/Font << +/F0 83 0 R +/F1 85 0 R +/F2 82 0 R +/F3 99 0 R +/F4 100 0 R +/F5 94 0 R +>> +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 26 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +33 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 144 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 6320 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 88 0 R +/TT1 82 0 R +/T1_0 83 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 27 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +34 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 145 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 6333 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 28 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +35 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 146 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7080 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 29 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +36 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 147 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7093 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 148 0 R +/GS1 149 0 R +/GS2 150 0 R +>> +/Font << +/F0 83 0 R +/F1 99 0 R +/F2 94 0 R +/F3 82 0 R +>> +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 30 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +37 0 obj +<< +/Annots 151 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 152 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7154 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 31 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +38 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 153 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7167 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 154 0 R +/GS1 155 0 R +/GS2 156 0 R +>> +/Font << +/F0 83 0 R +/F1 99 0 R +/F2 94 0 R +/F3 82 0 R +>> +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 33 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +39 0 obj +<< +/Annots 157 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 158 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7177 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 34 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +40 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 159 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7187 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 36 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +41 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 160 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7197 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 99 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 37 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +42 0 obj +<< +/Annots 161 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 162 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7207 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 85 0 R +/T1_2 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 38 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +43 0 obj +<< +/Annots 163 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 164 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7372 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 40 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +44 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 165 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7389 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 43 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +45 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 166 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7399 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 99 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 44 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +46 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 167 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7409 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 45 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +47 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 168 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7703 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/T1_0 83 0 R +/T1_1 99 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 89 0 R +/Im0 169 0 R +>> +>> +/Rotate 0 +/StructParents 46 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +48 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 170 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7717 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 171 0 R +/GS1 172 0 R +/GS2 173 0 R +>> +/Font << +/F0 83 0 R +/F1 99 0 R +/F2 82 0 R +/F3 94 0 R +/F4 100 0 R +>> +/XObject << +/Fm0 86 0 R +>> +>> +/Rotate 0 +/StructParents 47 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +49 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 174 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7803 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/TT0 82 0 R +/C2_0 100 0 R +/T1_0 83 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 89 0 R +>> +>> +/Rotate 0 +/StructParents 48 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +50 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 175 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1846 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 176 0 R +>> +/XObject << +/Fm0 177 0 R +/Fm1 178 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +51 0 obj +<< +/A2 << +/O /Layout +/LineHeight 16.0 +>> +/A3 << +/O /Layout +/LineHeight 11.0 +>> +/A4 << +/O /Layout +/LineHeight 11.0 +/BaselineShift 3.66299 +>> +/A5 << +/O /Layout +/LineHeight 0.0 +>> +/A6 << +/O /Layout +/LineHeight 12.5 +>> +/A7 << +/O /Layout +/LineHeight 12.0 +>> +/A8 << +/O /Layout +/LineHeight 10.75 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa5 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa7 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 2.0 +/StartIndent 34.0 +>> +/Pa9 << +/O /Layout +/LineHeight 16.0 +>> +/Pa10 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa11 << +/O /Layout +/LineHeight 12.0 +>> +/Pa12 << +/O /Layout +/LineHeight 11.0 +>> +/Pa13 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa14 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa15 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa16 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa17 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa18 << +/O /Layout +/EndIndent 22.0 +/LineHeight 10.75 +/TextIndent -14.0 +/StartIndent 39.0 +>> +/Pa19 << +/O /Layout +/EndIndent 22.0 +/LineHeight 10.75 +/StartIndent 22.0 +>> +/Pa20 << +/O /Layout +/LineHeight 10.75 +>> +/Pa21 << +/O /Layout +/TextAlign /Justify +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +>> +endobj +52 0 obj +<< +/K 179 0 R +/Lang (de-DE) +/P 6 0 R +/S /Document +>> +endobj +53 0 obj +<< +/Nums [0 180 0 R 1 181 0 R 2 182 0 R 3 183 0 R 4 184 0 R 5 185 0 R 6 186 0 R 7 187 0 R +8 188 0 R 9 189 0 R 10 190 0 R 11 191 0 R 12 192 0 R 13 193 0 R 14 194 0 R 15 195 0 R +16 196 0 R 17 197 0 R 18 198 0 R 19 199 0 R 20 200 0 R 21 201 0 R 22 202 0 R 23 203 0 R +24 204 0 R 25 205 0 R 26 206 0 R 27 207 0 R 28 208 0 R 29 209 0 R 30 210 0 R 31 211 0 R +32 212 0 R 33 213 0 R 34 214 0 R 35 215 0 R 36 216 0 R 37 217 0 R 38 218 0 R 39 219 0 R +40 220 0 R 41 221 0 R 42 222 0 R 43 223 0 R 44 224 0 R 45 225 0 R 46 226 0 R 47 227 0 R +48 228 0 R 49 229 0 R] +>> +endobj +54 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Kapitel-Head /P +/Endnote_1._Abs /P +/Kastenlauftext /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +/NormalParagraphStyle /P +/Tab._Lauftext_light_ /P +/Tab._Versal_bold_sch /P +/Tab._Versal_bold_wei /P +>> +endobj +55 0 obj +<< +/Filter /FlateDecode +/Length 4057 +>> +stream +H‰ì—Ûn9†ïõ¼í6Ï °‰“ ‹™ÝÙ‰°7ÁbáH¶áŒ-{$'™¼ýV)‰-«e¶5N‚“‹nwSd‘ýõWý>:zóN°óåH°ÉOG¯¯;¾ý{ôûös™ž½»9™³gÏŽ~:™Ÿ³ñé¼yó‚ýüòí1³ìùóÇ/ÙèÅdtô~<]2ÑjËØr:_Ow4‘ÿL²ÉÙ¨­l2eéú…Åü·ŽÛja%sѶRi6¹½ÞX×:6n%o´Æ;Áÿ;ùÇèÕdôêgXxOp®Næˆ ¹‰DšŠc¡¹`ª¿Oo?\NNÿ¸}öúÕë×BˆøüùsFs)M+äQ­q6–!Ÿ|L¡½Cô­fã ®áWã%o¤h-Ÿ,x;¹‚¿á¸¸ÖCì°Ã6²ñœ[¼ÜÖîÓ—a2)NZù|Ôxó…IG‘Ë⬔L‡ý’7û†¸<õü–î4Ŧ<‰´ÄGËÚøBŸH°ßP2‰cR|‘¿ˆH_D*ˆ‡~7«¨m!DiSÔ︑ì'Ng{ÅUKg«"^ᨥÁ›¯µáÆ2ÜV+’k“ï¶C’Ú·Öj߉iÜþ‡¢é•ŸkùÛµ¼*¶"Eçèéd`¥Ö»[´ÒZÛÝêFîcI·QÉ"*üèš"Ûó½]€•^rÿI½êl>šÄù&38¸M¤²U^§ÇïÇ?sZ…¢7ÈèŒÕÔ(‹7—\a,ãSH \"ý0Ôá冤7'p‡¸àoqvÍ=¾ùÀa€øGé"XhŠIÁ!ß ¼˜€1õ9Kö4M¿dµŠ•jˆd•… BÆêë÷¨¾+P¯ý¡-6VèSÕêÓ Õ'ø€“ÆЂêâ4F¯Ä¹‰’íý}±ùq)h\= zƒK2BY Ú æC2Ï%—“÷ßØ,뇡úÎ8¥É Ò½F1ãÄ'ày*镼LF4”x Í£T‰=ÏüÌàQÌ hÿŒ&+œ|æsŽ ¦¤TÍÖ½ËTa{€>îÕ–O´NŒÑu¿w!°o{|z¶WÍßâGú|ü¾l?E…·–Õõé¨îP_:„üôa@ V@½EE¢Nç\S¾]€' 4!b² í’e@ad1ÁÓãÛ îpDu]­|C|díËW:°°ŠÎ9ש÷›é9îгۿç +=÷lØVêY‰-=§"• +lׯgA Ú+ZÖ +[ŒZ§ó–Cbµåj §{·®_ÞpCÕC./¸‰8|vSM¢©Œ9_MsƒU†ÅT¬dJø‚êzn ŠtÊCžÄa…cÎ}ÉM Jm$b%Ó1´ÑëÐ=ºï¬I¥#ÇvvXhÒÕjR÷6}.bXO-”LËC“%ÀÏwÌxøò­û'ÃoQ-tvôy%}ުݵ+¡vúÞÿ@éI7385TÓRRuÐ8R+¸<|l¦ßHA"[à]Àõ«[5e:òRq'+ÒäÓõû]7Ú¨3@Þ²˜7 u3¥U¨F»[& +•Àz ã#ÔHm'´Ôõ|—•ö«}([ 5ip+”¡P H²DŽT5ÇzA+ÔèV¥œÌ@¼^r)ók2…¸¥†v +U½¦ç69Š¢q€º"kZÀEÞTÍ·âû‡¼îàWô„D~ I/*«Ù CÙí„õv}-»[Uìnp¡Wˆ*šmprš=]Õm×uá†Ci‘9¨‚‰NBpÁ#’ ÏB“†.Á7p‘È=ý5'¾-¾•T*^pI6ýûàþ”¡‰S.€µ¨Šœ± `]¥¦I +Ì MÀÔ¡(³`9@žß™Rç)=FY™!´xÊCIÕŠP"µÐà=¤ASË¡hvâxL4µªAJuá„ÜFSSCeGóef± ˜9bÇKŽ˜°ŽÃeoÙ!U¥¿ÞáZ<½2\·ê ªôU?Äu—Ïb +Ho!Ó!>;e3åNPŠ²­@YGHuQ„;.KgGùŸÈœÃ6®f›=[2nÓ¸ªg™!O7ŠŠõ¯EÇf—ë9 xÊzw’rŠk®4.÷SJr_—kõa•·v»3€ O`0±ÁµP®–Z³?•R?ÒN(Ki¸—Rñ«V+PòvKvæ†ô8áɪê<ãÄ쪿EfÝNÉr%tx"x©|5ÔÑÂÆ¥õZ,€¿VƒŸ¬ö‡UCšõ`­¥ ë­u²F E¶ÒC •Èš²|?šLT69&…0Y€Á8UkS¤xl«žžc (`Õî ?E®h!3­¨m‘)À3™4E ¦×TÿµÉ¹“9` ^’\xÎ5•È竹`!cœáÈfܘTVk•ªi(–©üÖÄþ9·i¦žYiàßã›%W”@N<•W>¸â&¤T"cŠÒ`U¿ŠëW‡°nðµÅ«Äbhyx¯ÓÏ`¡ˆ UæÓéx@Ba•`TE‚Ù@ÒùÒ@Aøî§.´Ö‡Çžå6š’îÌ”A‰düÞ½ŠëîËðE‹´õì«š!ÓeH$†!•b©’Úå† ‰(¡#7´Ù¡ý (Y톲UÐV,Ådë¤[!ô‚òŠlA]R[C‹‚¿A+"n”Âa'µæ–Œ–O’ȯ/Ó—8_j]•ÉFªLÒù¾©®j¥Û''ýæŽiá+b3ZŠ¶Ò1Qî†Úe'ž‡Øe¬EÝ×T¸Â·Â@®ÊLk“˜¦¶M\àþ Íéöx@ßÇ¢Z%šSOjsO +ë~F‹ó„£ÅëìšQøíØaÓX,–ÉÒ`Ú²é\¤¦’‚I9!×ÀW\vfcW +IඞàÐC0 ý„ð¡¨zТÍ”Z¼¿ÈiÙÍ`ˆË Ý¹Ý ºn4Õ ‚&ükKYɬÝU}÷±«‚o¥·Ûè¦ÞQÌî¯D§ì'‰¬ß: ©A–zZÒöNSÚmIWÝ­#Úܶͦl»Ï}«÷à\K³•»iò‰æáôÓÅU¡Æûá‚®U[è¦fŒÃ©“-c9]U‹®‚®óØ’úmv5qff÷Í´Ä—„Î)WÖ‚. ú©Ï´É'pÑÔoõ¾Ë«H1°o²[Ãߧ=ÞìêͽùšSãz“:ÛuäR¦ywÅDe:d±‰Ú¤`þâEúvµ‰­ÓÀW)Çž"y±v‹X›‰uýÄv"8YS‹ì®â½Yã[£±\ز[´e3ûŠSQ|™H¹À ;Oë§æóè?afóÈdÐ,ZáWjtw8.ùðš¥ü²!ÌOØÂE %&àÌ©úžr2èi‚ëŽ/³[Nø_³ã¼Ò1f2ˆìWv“÷±€ß*œ;àsÚUÊ + × ‰ÞaóËêjÝú”á{ÿ˜,ïb3„V„ :º»c¬ƒ¨ [Tªl£±¯Wí,}(”¶Ê8Jå¡ ðòNûJ*t3ùŽ'UÞ¢Áé$ÓUÝK¾jÂ刓Yi^¾Æ¼¥’9Oöy~›f‹@šq†˜éU‰ ?\lج„ʼn¿¸ï="£*:,3eG†=þù dÜFÖg#¡ÙN(2+™uj³؈>n3«(ÝûÃô˜7éèV£>sškÑì5Õ(¶– ­sS†n~m/üD0çJ÷SxŠäÚôžJâĪ%VkÕOŒþ™ýªŠÈl!Ãû˜Hm·•Bg£5½Ðvb9 Z%j¡µ[aƦ€Èv“+ƒÿ?ûÕÒ· „ïù:V@Wæ›ô’=´E[Ø@9†_5à¬ÝÐüý~3Cí’²×a¢´ÈÁ—•V«%‡3ó=fH&…¹Æf ìéš]ëñ{F³œà×$eQ)±ë5¢™ÖŠfnX"ñ»Ù–öx†V‰Ÿåv9¾KFªL«Fg~Ð6@*A›|˜™‚~pÂs0²+61D3–ÃÓXÖÖ¾€y5¸£R„ƒ,;õ‘i^ ï¸e=ÎFúéé6Ôá¬Å·nÅwé÷OÎÎäîìš#¶}6ƒ—pé&È +ܨƒáÎD´áÙhÍOE´h•pù|÷]÷¶Jê up¿Œ˜@ˆðKVyd ÑeÂä +Dñs`2ãÝÒŘ<¼²¨z.Dqe=Òƒy1òÏÌ `%˜+Y¡ªõ$bq<Á*ß-sg`êMÔ±LÞ§/÷Þ3°?ÐåguiTË.ÕÒ¥fLÏMÑ€õ]5z¨UqÀ²/Mc_F]÷¥’¾ü”mÔ#„RÄ'äoè} ÂëoÓ6Þõ2.æ·’%€ó‹ì†·¼—'<´vk4G„%ÅaùχºÏ×ÍÙ¢7Ÿ)9Ñ>5_ ^Û#†²Š§Yp¾ ΕÛ=^"o¯Ý¼¬f=vÿè½Ì^lhc0]Žq½ì­¢k9 `'XEÕWèÆŽlâ(È,é d:ô~Òk£ƒDtÐŒeÿ2ð}õ¯ìÁ¯;ðÅ°ÐZ•µÖÃûhÌJGZ¡Ÿ¢‘cUèödô²K³«!{Ú„Á‡žÁ³×½¬œ>+˜J2å±»ÊÛ¦F€¬èß“ ÕÏhkÑÊâ=o‚É/å -,ÜÂǧèÈCo{zïúp—äšÁïÙŒ´ííÞ äøîx½vŠH5í^5´'Ñ ‹²†¹ +׶WYÙ‡-dÕ+6N]Bö­‚”p%¦ž+wŽÄ;Js ¬žSY8ëÆHÖ½ÔÝ©;’‹\Qåîa_Í…ßÑÿ¸¬6f•YÚŒâŸt^pÃ?µæ3©Êýß(¡·Þ”}Ó>+µ²rÒuHÙ!å*œ•œÑ–JÛ~òæTu¢nºØ¾:ù_o& Iú½‘)©T¾ùØÁêÈ”i +A^t + +c6\¿2šLr€Ç?ä‰<=¹ÃOÀ›kƉ]ò ì—9DaᯔEQ4óOruÝtÜóO|t^K#>êóþNÇtÄ`›”M†”Ä$äˆSÀÌP·÷Û‰f?<útŽlL,ÌÑ÷´ ^¼ÉËÍË@Ktuήe 5η—rsÚ3ã‘XÑ¿2αÝïXXaZkPÙCt‚!Yœ³Ýî¦(J•)gý0jL _T“ðL—¢;­tçbÃ8·l‚æ÷^åo:b¨ÐÑ8Ú!¢ñwW¯ÞvÛœÂq÷ šÅw;×ýÖt4Cçy¯$8|ìºÄ/'7ctœÏÁ½V*¹ÃÛËä@Ë6„ËY<ønY‡:8LMUÇvݤXÔ½¥Ë”íÆy¯¤s7b^”¨?ü@m]¸¢mÏ]^÷Ñ¿ â ¶ +endstream +endobj +56 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +57 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +58 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +59 0 obj +<< +/BaseFont /XEFNHE+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 230 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 231 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 0 333 250 0 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 778 0 709 774 611 0 763 0 337 0 0 0 0 831 786 +604 0 668 525 613 0 722 0 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 0 395 424 326 603 565 834 0 556] +>> +endobj +60 0 obj +<< +/BaseFont /EZUYBQ+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 232 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 233 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 0 218 0 +0 348 462 434 452 434 462 462 452 442 236 0 0 0 0 0 +0 696 574 650 726 536 0 726 0 348 0 0 0 884 744 0 +556 0 0 528 602 0 0 904 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 574 312 800 556 490 +528 0 378 396 340 546 508 0 462 518] +>> +endobj +61 0 obj +<< +/BaseFont /CBURZU+Wingdings-Regular +/DescendantFonts 234 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 235 0 R +/Type /Font +>> +endobj +62 0 obj +<< +/BaseFont /IXUBFI+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 236 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 237 0 R +/Type /Font +/Widths [233 0 426 426 0 0 426] +>> +endobj +63 0 obj +<< +/BaseFont /DFJXNS+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 238 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 239 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 666 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 482 0 0 0 501 0 0 0 234 0 0 0 834 555 0 +0 0 327 396 331] +>> +endobj +64 0 obj +<< +/BaseFont /NMLKXY+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 240 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 241 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 528 0 0 730 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +610 0 403 451 383 598 551 0 0 0 486] +>> +endobj +65 0 obj +<< +/BaseFont /PPKWZU+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 242 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 243 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 555 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +66 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12093 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 56 0 R +>> +/ExtGState << +/GS0 57 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—IŽ\ÉD÷uŠüó°ÖBЩ{Q%@Íûzf™Y$°2âÇàƒ¹¹Eº×ìWºwjú¿^ÿùñÇ?ÿ•®?~¤;¥z=ÖÝù8J½GÞ×Êéži_ÿûã?üƒ•?~²³\×Ïÿýøß•¯Ä¿|õ:îVK¿J_wIu\?¾>ôéë#ç»æëQò½8(·»†a½æ纓Íc^?>=ÛõÈ©ß™Gi÷l›‰Úî½øÑë][r÷îE{V¿kíLrYµß²~`ÌìZÝ÷ݳÏÁ¼Þ´-ïÍeÜ‘±0á3&rkeÕhwòí©žmóžeÅ®q—zí{î¢ù†såªóîKãÆ«§»ŽîÕµ–zõy¯,¹a÷y|ÏÅ{qó"Ú7Fh S*šH}úÞÕ|üæ@Å“5»ºrõá3¾<‘ç¾:w­qiXÙD€‡j8p¦qåÌg¿'Ê]buëY£±ûõ<«Õ;Mgd·»å¡‰îÓê=ÇÐòÕ·‡­. k¶ÇLT¬â¶Þ›¿Ë‘–"kÚ ê&õ,×w&f’1垸Æò¼›‡™Ìž!Ëç&Ã^^†ò´îŒí‡äʉrá°@Æ™©”ë“ Vnöç/ÛÀMIÊÚÖ÷Òòhlœ¿µºËxr;S¾Ênln€…H•éŒj5¾”vUÆËêÆr +Ià:>—DVì $e\Òrr¼®¼î]¶òPú·ÃŠ‹EÔ…;,®ƒa£Ö\Žš²¤eûÍ/–Pùiø³dú k`á  +¨€n‚Ó"çk9 ,ÍÈJÇf¾Ï@È7ø ä)cµg +X§'ÕÊŽªÒöŸàZ0ßë<éÛ#¾¤à(A"ÙgrÀkëþ›U)¬+ÏhGæÅl:‰ÙbÇäÖÏWÊ8«Öou `{_¶Þp=©KŸÁ©j#óÌO‡F%Â;ä}oçæ m‘ ãr‚já½âvrAìŒþ _숪óeF±P‘xY ¹ñJjÀe¢-ç\ŠfÇ ÛR¾äˆ]rs…¯øžB%‹1·c—f´Åé®"{’  ¢ªØIÆ_ëzJ4n}öq1Ü0š51|$Ž§´w5„ê1,²ˆ ¨Çúv€ôQö¸Ø! 51ÝÊ…ºlhÕióŽ¶B.5‚–ŠMƒf&$n!´½”cqã8|fz0Ù%MJ†ÉNâî®W©)ñ¹ê5¤— °N‘&¨N ³XÌkqŒÕij¿.B¾BÈùá1¾µ (·B«b5™qy™“Dì ¦Y÷ãð¾JBòz*eŽ2J +ÆAzŽÅb3‘ëòŒR©#u«Ñ=Rˆtéñ®iVÁ `è8úQÖ·}D?’Öã®–DEíʯ¥ùR»´ºÜ@NÑóÙÉ5Ãás;).Œñjù®,›~Ô–+$ž(õ«BI!o¿é [¼¶r|4>†;“Ÿh$DôMßZzR47¢hdœ£Û{}&Žª‚éQ“Ô‰¢>É%.Ñ7žÊGõš¸~Eb@H̪Úâ{o~ÝHhµ•gÞMòDB°“–ÀÔ¬ºúÅOÕ°˜H¥J JÖKÄI÷Z².(U*Y.ø£rJ96¦ñ„àiÉ,‡(Ú~ºŽÈ˜(Iñ”¸²(XÙA¤!S—Ô¾¥Ç%Ó$sª»ur yNHÓo9X4²DLªß^ù­àßrñùz)5ÅS¿ô>Ç#Rdç rY5ŸÅæe¾Þ…¿ÅM4Ü~%¤¾^„ +à§ðíç’I€å¦Zʳ–^Ôc¡àÞÖˆUí‰BY¯§µ™{0þnù ¨.†ª¾H©Ø/ †0Ê/R¥IÆËïIÃ::[8l=ÔCs’Ï>£áŠÆåŠã ü×õj2–·õ—ÖË®³d³_LwÎu?`®ÁÆåݧ©ÎeCOŸÍ[ñm›žu…\+ô[Ô¯Cš¡ÒÙ¼=U‹ÓˆΑÏÙLÔøá{é›VËþI‹H2t¿#¸nb·}©·ÃGVWGˆª^$Ì“]‡œ±àòØ=Ü£ù-tjeÜ_Ý…¥\¾¢ØÂ-¬&H‹tˆ`£º‰Ò’x¶q +ã!+çòMÎbZ@bE+‘®Á HM½®ºã÷¨ûQ‹,ÓîK¡ŒæšÒ¢rÐ’·$çñ{øMµÆßùZÈ`#ƒZ†loØWÉÜÙrƒ*gl+˜¡ZG‘i‡!ó\©ñj_0µ#GŠ¸(%”ÏÌ |U¤©µÞÀïe¿ïŒ°)¨Îê;6åòÖ…M‹M¤:ÔÞ*&N¤"=.®ág#](‰d§qL’²ê{ i,÷ä§l${rT l° >¿:*eîYÒë_÷¨Œ6]Ôeþ+–KJ¥Ê"¥ÖÃu#¡l™À£ÑrÊ`´•…áÖVÙ&ähʈðÁ°L¡©j¿´.¿Îù³Aá´‡À«*(,ž8 àrÅh ¹9¥Ø9>¨*÷(lQó=©'²k’¸°^D×ýØ RK¹` ñ*¨ˆ6Ë-ªcQOZ&¡‡NƵ™˜qm ‘–4žž³(té­lMî®[ò$´ÏQUëü°ŒâÀa,Y¼ÅÅØ–× 9k¹ IxþоCÞ¯/êÚÐKÿØô,Q6ÅÓ¿› •Lq3Û§ SþìmXº +Ž9ö?Àܼì«ä,‚[ŠÒø!~«.‘3\NÔb,üÎ6ÿ|Ž….e€)Š†”@²/§t£ÏÙÝf5 ô4:¶P­²8£SÖorÓ|fð»²;iðÂ|Ì… Iäw¯ëÉ·Á+[·Ä©MÆ]@K‚K.9•¾êð…›~×H䌘¯ 2ðË`>S„ 9…ÿSb„G–þR›NĨUÎÈg¨ˆ‚ÍûCó1g|EÈB¾ªoSѵiB§sæâÄ…0PñD‘áÀ‚EMºûÕˆäF(Ú¹Å1í X@}³bšA,VDú[]”ÙP.ŠÚPö¨¹b'U"ô.VkJ9@$+W N² +«= +‘êT¶(‘ó»F%ÀQ„³8£%öj„ª +™ïâZHB’s%ï—äw5í %?f.#xe…*ZØ®†¯¼QîRÏ›Y¸ÍÑ6lœá}Gæh~4„MyPˆo®)ÀT÷]͵=„õÇnH¤pßêš”²!!µñè +$hRIY •¦¡î÷塾܊\î?ã…Vð3Su˜,„ﶦaÇ3d_©—¾ì59pxq°ú1X³¶™”Šr¦,jJfì°.k©˜ß¥)dª_·Y‘l^ÐBq ¸gÐñ'…u%¶+-’ßxõ<b'Ìf ¸ªÏf=ö|”jíâOçá:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½K¤Ÿw[y¹î5;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re‡zó6Åñ–÷¸ûjB-¾Z-‰„Mð#¿™û×’L¼¤uý¹?#íýĭתr¸œ˜¥ç“2¿ê›iU£fÖ÷”ΚǦeÌw‡R&«¶’vLuMÀÃÍ›$Î Ö ÔêŒqAq³aýÕzÏ¡uØŽP0Ó×ë+ êù!â¿Ã›È7†Ð9ãî°zè7‡ØòÜ·æ>ƒMé_Ã'õ”~=í^·r2o×óIeØÖîH€–‘Ͻq¡ç«›HéâüS å_5 @ÞÚ÷&õBV§i#¦‚· g˜,0"2t’Ç]é]1p¶˜Ð¸È20R‚Ãâ‹ «J<¯IÝÒüQLzšœRœF%±4’óà±.Šïqtð¹eY· IH0«‰êb$&´K-À%"ßì©* +ãÌ9PMŒÇ™Ö>øžnÈCÖÌäMh jó&…]´’ + Q3B›2™W`ÏâÎÞKhË—P`ZíÞ”áHÍ]ŽãÇ­75àVî‹ÚÕ®ôgÇ;¾’öHøDCý†Ìˆ$¬†Å‹5‰3A3Î[OƒÄW‡9Ô'qo:Bf2®¯°½4—ð¢ÁðÍ t£Êù9$úÏb™Ù™y¸¯MLÀwãx#÷íÔ‡·cc‰ïIÀidƒ 3k±œ¾ÊNke®å¾;٦ߢQ­W.èeIvç8v®ŸrI›š@¥ÜêK™@Ôöš”dõÖ¹Äd„ñЗìÇTô¬„0¢!;ú_šØaèÈàQB£ƒ©ï%B)æŠú2qU¤ÒŒx.à ð´Ä£zô§N0pdh 3E6þ[Š»{TCe”Pž¡þHž`Α$ CeIˆCñvVܧœSÜ&Z0Y~p‘ðÍ ¡¹&àõtß’øì¬"÷¯} ÄÛ¹ônM9솾d™T„HÒ|!œ©¼©B¯tOÒJÜ…U\î9ï´é# +j .WÝ­èRÉ8ÓÝŠõ»m +¢‘€3¶šéJ*"‰Y¹.æ°qª„‘ʶçíëÜEw0 £„O\f°ÁaTQzØ´‹‡‰ž’ò…_ ¡x5Ë”û Û +ëiâ [@ ³6&²# †"ýæ 3ÂyüæÐŽWv‰Ä~dwJ–a@Ê°ØÓÊ È}‰t—åZÃK‡Ž¡Èä)SXVÎ+S/°¨—‰d{šx™€·@±×^ìƒ]g’tsþ—€ðq^d÷ßÔ1›U=—ehzö ’›ÉEJ/J;\Òù ”ÙyR—¾ƒšþŽËU¬¼UßK°Y›o +f-ª9G·´`ÞÚ6g„ «V€{æAwHGã›(c h[H°&b êØŒwÑò+ó4§ ‰’98°Úø²¼ _D+Òò*?Ä8?ÿ‡yX„)B">v;UïÔ@g­b‰j—{Åõ0Çß + +'lT¶ž»á¿öçtC{Äè_m`EU%~?—¼æÖ™ø¨îuéÏ­A_Å]kVVj½^2Ý42Gì6ú#c°AbDůî ÷[z¢“ 6˜S¸‰&ŽÓ®¶•kTë5‹kK{{±Î? +;Ãr Ç¿Â nÄÝ€tTÝŒDcp÷¯¦Œñ1GRÆ&›Y– aSPáo,“Ó9×ö•ÀHíÇzíZ´"¸¢Ùîò¤ôë‚¢V„Ë4PÕˆÈ CæŽIãÅS¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bðìKT“ì_L±ãÍUMø BãÛÊoXù*1J‚êíW#Ð3Ã¥ïIlJËëâˆÆ"›=›’Š9²(°cés²úZ´LJLŸ9ínum· ã3'W—…½‘ #Á-ýM‚±–”e¡rÜŽQD}ó˜:-¤©·ßuÛé ™05êÐgUG̪„Üêîˆ[›Ø¥ÿÇu•dÙð«ô’§YÔyz›ÜÛ(Û]«*ó[²D‚¨€>ï‡çÑw‚}Rø†ê‚g&ß8ôÔh'ò%ŒX󔇀Ø÷Î9hŸu!Mˆl7ÛC0éÓ48LÒ”¿ócÀÖ¢(Áƒ,V²°"4N5N"™¹hE9H/F$oÒ›Ž•CÉw¬·‹i©yk?›üu¨ÌkùäÞ ƒb¨Έº.¹ ñw!‡vÁòNÉÇÍu—˜pðŒ€5«i 6÷ˆ[úgZ<×÷eÜñ,ðЄÊòz§¶Ï4‹nQê¾Þ(I¦:÷èÝÊÙU¡ùàš ô/wÑ2Ý]JfJSŽÐ>Ë!°!R@sIþÀè@ ü «RYi¤AâÓ§¨KšD§LjÝôüU+TN‰Ùh»0E8Ûhá"_€‹Leãã{ìß›'¼{~0ÁÍcH—½Ddy–"ƒžšû‡‡"ƆÎ@.©Æ³­9{~›Ç°mAè¨ya¼ªÊ•Xð,G+¶cK+ƒ´5ž =Þ—Þ¡t1IÕÉ7Ù¾)°§dÄî!ñð|Ä÷F Š  Ö"ä”ÇzÌ8JX93DXc Ÿ&’“éO@ úŸ ×ï+Ÿ5r¢IZ„߶÷†æ8ìÛ¤y<‚¾ êK†8ÅÖù*&‡¹G`ÓÔÃf±¦®’‹ÀIÅ@jVðÞ¢Ú~ZN7± ¥Û’~9w!¯¥é4hK teè˜À¢Ëe"“°Pö< FBdÓìå§kìÌö¿ÓƒæI–«˜(KÌ;Š—¨ãæ¡ðä.·Å¸5_ Q]l[U‰LøbÂùŽ +‹ñˆæ”P/XÇöd·DÃ2¡cNÉÊŽbXê8ƒxA`d{B-<@Í¢wšmÇϹ»­;ão®Šo_hšn¸ÍfBØÓkúS!+§¡’Û”+JÂsCYÉZCè­'WøÞe†="Lº.^+Ça³ZÛ×È̊䨽l\§·#«›üØFI ¨Ü}CwGMÅç`PŽŒ§Vh¶Y¾O䈺öx¬;EÔÏÌ€+U +<çl(z!¢÷ÇÝÜg—AæñŽ´%ÛF_ÖfzœÂØáÿŠ~¨€ŒDV\ttgå?<:,ÓOÒM,;¦S‡X2Ù3žCóPPYšxkY bÄEËÎ4Ð=hG(Éi‰?Í`X!SBŽï¹B}GiÛßI ‘I4à]jDVèï½ÐG‡)ƒ_®óé¼PuΑiD¯êX‘t%óë«Gkév¶.V¬ÿò¤]o ;RaßXT‹ÁY"40Õ/‹ÑÛÀÞ0ux£üNÆJžÄï‚Üe¬ÑíɬԘ¬(Éx×—'­ßç™W¤e$”±•aËbáñ™´ðÄ´ç/i.º=NúáZ zc~aQK· ½àæ;zÌ©…mÂ7Tol[ÍCAö§{FÒR MçÁÀÔ.8®É*ÜÁM†×È|á¹K¦0ðÔ÷÷lK}%G 45a×¥†XÖJ¾¡ -×\TÕCÓ=ÄE5{¢ïïÙ@‹k·»H租'þp˜Èa7äî°&GÎ<Ú݃1V[¼rŽf¼òž©.õ»'naÆ_ìøJ õõ»*iP4¶ÌI·—GoÊ¡þÀ –µ¦¿®’PÈšE%jFr¸(¸ÏÐWÜQ¡5M*òJ`ΈñÈŸ5¼n6Œ¸åXõè8ØÅÏtýŸŸgú÷5TXIBCµÓÕ8šӮs/¥ŸhÞ*ì Gá‰÷É”ýâK”qî\Ð ¼(†…‘ ®ù¼ØÎA¡q.›¨rçÊ$”Òð®ÀN!£‹Æ2/Ï$ðÎzá¢g’W¶îS½îñÇ‘¦ó·eÞ’™Á³ìŽz=tÅ-B࿹ùupÁ1Þcžff¤Â™Ú "“|pzÊ VÒ¥ãYZˆçá9ãŒR‚SˆA–¶óTj»]Ùï¼Æ~ïçJƒ“"öëÀŒI6±²Ìd5’V?íŽ+·®iYª­–N*R¿ñs¾ï„æ õö.V¥êºª›Sˆ„ð‡›@ýÊ âSÃS®+È°…˜/h åé~?u|5’7‹ Þ•afòhE°E$‰!ñ¤‰w[W1nµÓ‰ê~'D6_¥52Ñþê¡WˆÉ¡:—éÑÊ™#©Z›²Ïùf ölÉþ 0½ÈQµëù"™›ƒ=5]kcˆ×±q4õ:u²gèÁF¼JS–¹ ¾%¹KÚ=S¨(ƃn@›k­ÞGsì- «ÛûL&¦ü8u’\=Ç4ÙÙWôØþµHìÒ:F ·D71`÷#,ÀÉ؉maûï M®2ç½óN¨Œ›¯_œó[+ÒÄ¥…µ¹†„b3îÌŒË]u<‰©u*fx‘e”üýAžRM/‡n@OÔ>DÙU «9¯k¨’UI¢ù£ÆL4ëAŠ?~܃ý}†*×»<ªBݸַ|² +ŸG£Åa—ïJN,DÖé+¦£1h{ ?§4êrÄ• ÛÍŸ&œýˆÚÑm5#»Ä˜bÜù^ª¡J©‡‡JqZ•øéBCº4ª€UgÃûûBÂq†õÌ3­O€Iy” G”-N»â ¨iXœ3êWA$Ò=sýDU: B¦RÌ0 ÷Ç‹“;ëlírûjŸXP fÞÆUOgŸØ˜Óë—©©—Œké¿ ç«šÝ’dð­.™+2{úr†‘sL­Å *@µ>dª!Ícƒ®_’@{™ÃPj÷}šŠ$ªO0h—[õ¨Œ“;Õ¨᯵¤¾›Š(êÈՎΫ&?¢ù©ÐzÕoØc¨áØRšsØë.‡68‹H+Öôœs@ØFèJ_úä ]Ï™MýA0”ÎfÍÍ‚'ž@Â7møæèœbZwï¦%ñ‹Ž7Ü·¥µAS‘Ø̉!_•’Âݧ{X +í‚Èž°žÒÔoŠÏrEÍôºñ(g‹Y)ÏT×)|G!ÕŽUÏĪyc2’©R O•]˜›{2ÝKf(¿cX’ÏÕÜáíÉÍðBDÕï3ãêÜ|¯åYVeÅ;Žy8UMæ»:¥d†Ws³&=¼d<›¥t é B!–ÛøëÕ©žïT&AL(„-@qyßwÉ|jYü¼çi„ø±¿. XtèÖÉ4Ò|äѪéÛtó='J›=wèÿ+“¬ ÌDħªµºÛoäœÂϧ̵e®Ó}öK—§K{=D+"¿œ—´ÃT±öó¾([<’5\3礼ÉBffÎ;ðÜï<°œ5ÿŽ9¯Ÿ5‡¹žÔ‘³È*Ã~ºÀ†ör ]1(¥U­M†Z§%ÌEè”ñ8é‰)ó 9ù´B’*™IÊ:²GK¸ œ¿µe£)mj¡Ôî' Ê«Ký׫]f_Xêgª;¼«üâ’Q‚¥œ <èG¤r[žÊŽÚcÅ…™¼t…¤Y‘áùî¤@ú]7Íe¼ ÙÖq²m„­&t-–œúËù¤ªC…²,ã¿ÈéÏ ü×F¤rpM„h’zÝ¿”ð}ˆ6 ,=6µÔ—“~²ºí—óeÑB¼´óç ­¬ˆR˜·¾}¹ „·Pa²¢;ˆ!Ý-—žÙYÙrµ×ƒßqŸ”˜¤Õ Šc×áÉå±Pm¦+‚«ÈÚ'}©ÉsœbÐ{ýckÀVÈBH¬*£ºœóŒÐH¢l=E­Ãð«Çðg™î´Ô£Bó|"¥‘æ8c·›îhl1ÇZÀ}µÜu·3 +IµœúñÝ^r;ÒÙ¢6×Iôga%B7¤¡4tqâÍÍÂ(€pËNœÉ•Áõ!êGµêÕ^*£‹¤]h±0ÓaR`‹µèÈr¦6øIFêºeÕÏ¢J*‰Z¯p–v‘ØDÈÉ78ã°†eÏì:ÏIºª¼rˆ´nf'8YgžtÊfÈŶ/µõRX€\Gñvˆ£ÓòÛ—š^ ×¢d³3²KŒ•™÷¶Hsņ{&ªŒª‚6t™Ñ7dågUoà’Ž"ëü¾ ¦O†¨óm碞 ¨“á·S¨–àªýVΣp¥tð«šsÔþÙPdwÐ-vf˜ cÁ%{€Ë4Øý8¢¢¨E- B…rOm`Xó,s:Š¨7 öþÒõáÒ8…dKäA”ÃQê[_ÀÀ û¬„åOïÀ¿¢Bj¨­2îÜLY‚k±U¢E… \öfó*q«ŠjvøTæØfáÒð†Ÿg›ä -³'mÔ…@žU‡|g¡— ØÀ°µ‰® ed8E½ž—%Š\Q€ž£ªlX*ÀÕJ¶WËp+¢Ñw¿½L?E]Zn»ž{H¯Œ–Ž¯hå3öÄÃH˜+Jßö”âð›LòûCào!%bRвfÍ´û>7å‰Â¨C¯ùȱ–Rv"ñg<žêØ<@ÑðŸ[2.ˆ¡zl-gs{çxCõúŸó9Û ;4b_3gYGºUŒy +¢äeQ‰^ª‹3!¾"½¸@43DètgDx‘¦o'”ä1ˆRhŒz_9EqÛ¨šnÍ;°pÙŒ'ºy[aÕ‰€)¼×b—¨ð}=\ËEºUt úÓøfVóP¢(]𦥖ѤƒnzÒÔ“Vü¹UÕéØÅ:‘­üÌ–©´ÝL9AØþùìI¦QÑ7nÒœÉÖe¾…*r•ör#!ªž‰¹òH9yʼnÏqÈÖêz&Azà‚BǺü¼l¨WIœÂ>‡Xt»‡(…—­’ß. +oë_;ä2½kfÛ~’œP]“ÂûÉ©¥?µ¯¸¾| kõÅŒeÜnA]wÄÚ]„Ü|Öìÿe»Ìn#†a ÚÊ6`@²uv”þ+È›!A¾ŒÅú Èá·Á«;ÂMôf€ný}‹ƒ‘±ßlVƒÙú1mm ϶bŽ©½+HÄãpFX”¤äóÚÞvöåµNÚEÜ^,@ V¢5OS±TWÛèaÚëþ3«æ«"êNY~}7YŒ0CWæ1™k #rò(¨@ÒtÏø­†³…sèßé(Bu ‡+Õqa>ÖÌa +§¤–§ë?™DÍ„™,¶òzAÔâcf0Üü'¬··¦ÿªúdžS镬ۡ$æ¯E4^@[Nͨ¸¯Yrfºu4µCJgw#Ê&+upAæýÇG^[רc>á ”zéql\Ë®/!4Oú!u6ð©^Ô£;’”zÖÏ1Kâ‰Û"*Ï•´$ú"«Ÿˆªv·Ì9çv=k-ÈOW‡%Eû“)èW4MŽ/s† +Ü~ƒ`‘K=ßå# :~E/i8Ûjt±•ëY¡ïZrKâ> +/ExtGState << +/GS0 57 0 R +>> +/Font << +/C2_0 244 0 R +/T1_0 245 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒMKÃ@†ïó+Þ£^vg7û‘@ØmÁê!{‘X°…$¥è¯wôæe¾˜yßgôÕ0½õ»nB]ë{èÛÝÇñ4¡iVëZeÒ©et# 0vÒ×Ò¾Ž¤³ybæž¹ƒ„ód‘%}Îõ€ ¢—Š•‡«*b`½ò>Èí;]Ü\æ=m2m¶b§ÿ“Ú¦MwÄ¢z†ÃVöxxd<‹H²?dff(€ÞEÜ·½-y±¯™K×ü&øû­`*[U ±±Q¶€W†-†êéK€xI¨ +endstream +endobj +68 0 obj +<< +/Filter /FlateDecode +/Length 2002 +>> +stream +H‰ì—Ûn7†ïõ¼/–æù’Ø)Z$ŠèEÐ ÕVœ´±äÆΡoß™!Wæn$‹Šl §ð®v¹Ë!÷ÿæŸùcrôÝ+É.®'’Í^=¿”ìd5ùiòÇøºÊ×^]Í—ìñã£óå›.–ÝwOùÑËgߟ°˜ØññÓ“glòtOáÅ~Ç÷(|ÏÑl†fo&Ò°ÙSZ¸<O”2"çYF˜”Øìr2 |ö[žæ|rvóqþ~¶øróøùéóçRêS)e:>>f4¯ÆjxÝì|2 Ÿ<} —•ÐÖç˯§¯xšMo¸RlºâžMÏà\ø++,›^qƒ×ßñN;üýžk qº`—ùÎîx|bÉ5þJ"±éW¯-xC.ñ™ò«Œ”01»âʋȦo¹ÄWÎ9Ü»Îç Æ™ý09åÀïØì$ëÍFGÜPØYí5›}fÛ·Lⶭ·lø t4B%ø8õ'¸ÝÈ©Øñïî%׳NÅú-kUÕZQ<ÚábaÕÆݹÖJÃu:%…×~Û2u¤ó†Èt\ecˆ!F:£yáž騨˜‡mv:œ÷5H\úú‚;ÚRY-˪¢Ö"׫ü ×e~ƽxˆøkÅüýÒU(W$oà‚ìå®QîK®(¢ ö8Á³áMØgnˆ™ׂ¤D$Æ +"ÊætÊá¨k6'¶½þžÓƒc/i^C¤D|ªŠ¬SDÔ;”™Aˆùe8Á­¼˜/:õ¸¤Zþ Ç[¥¯õfä4 µÖÛ†÷âÑöRªL£3v¨w'ƒð_MgŽ$sJ.ÿ&4Ý(HŸ£”Òn£ÒÉÇÛ…JQÙiTžæHôp4gÜY"‰‡ÞHtÆ5'×W+¸E#:E!Ü1¦ÀVp°xçúâOŒ@ßðÎ AÀ«™×ŽnÌ‘ vu;#Ž…K¬ +íñ¼"zdmAÖöȺ‚¬6Ù*F?ˆ±Vÿ/ƒuœ\D:*Ùm„s/4ÃPõk6ÞÂæ`öÙL­lÆQ”±°©ô66-Ô† ®ôlfd3àBNô}ÐùŠ+ÔùM~õa,‚Î/ÍâM›Å«`ÕÿLõþ×èÕR £ “å2~W™¼ rRW#åJÊ‘¹…‚ù6Ê«(¥ÜÈFÊ•TÃêxÜþåòxsÔ í DLjãŽ&°ŠØªØ7€·!³ÖOë¦Q…>)œ€’¡+_ó€ÕnWÊbª—¯¹Î­4…Ð,ÞO‹§¤ÞÒãÑÙxë4n]rf¸uûHðAš7%ͨ{³Å“ àsP÷6Xh­PݬPûMý›K¢7&C9´&±jß6¡tE%›Ë’ƒšNW]V†‹/p?‡í]G3oí’°*tT²ËR(Îו­º¹}oö®”‘ ¸ ×ß·‹ÖýËj·¿Ûq“Aƒ%1Ï×ÂlD?–ýˆå¾rsa³ñ :ÐxÚ±UÁwÃeÇ,+Ìëú>º½˜{9à)·{Í%•®Ô|q6DE jBŸÝpêÑVlY²Á-¹H»+´ÛL»¥7—q¢bö=ôoÐjLÐ’ÅÜPF ç-NŽu.†WZN²ºz +_§ƒ>#5烸¥¶áÿ„°³I„Ï }C‘6U™{”iTPº¾ ´[À¾ è`®M+×j\öúÒ7J» n Ï[”Z¦;—eÐ6†Ü5¶â ö›ôW¡C hueÚ¾˜6¡2/È€9+ú^“-0¨Ÿ¸ +HЩ{ÚlšŽ+@ƱUyÕ›üó3Òì3E<^áx•rRiåS©Í|’þçó¾:A[¶Öå”Ý»O+½É…“i Íu8Í8W$¼–:²Û®<óíí¡À¡Q™ë'N$ëÓä­àZ–!$¿°'H öÏ$:دè|t´ÙoSFª 6g×-ߟNÙ65žÀõ”m3àÏ% K{Ag÷êì Ôà>ÆÁª›;»j딕‚*”¶n‡±ïl뫬}Â6ûĸLÝ­'Áùà[õôS·B=ýXJ+”B¤Š”sÉM.÷TÎü¹ªR4ô×”¤ì|ݧuTž•Æï#΋7.Ѳ©xÒYÊ:¤—_³vÁ…½µK­7e·ÜJgqô-³CAäñîŽr·ÎêåÕ:sÍ:KûêÌâÎâ +Údö¬ÿ#ö3÷µ³à¤‹9%\¡pìW‰ˆ]sÒÕZGT×ã-Ò%:Èk6ëG˽ôc!ekµÜ=ÚÑP‘V¿”0Þ&¢z…·‡Ñ}¹h|«œôÀµïR‘óÂ&i[et²ÎVP¤æDDùƒë¬¥òuæ‚«øЖs¹V…Ùæ$U†5kÊì¥)gE°°EõâÛDõPš²ãÌÔ; ?ÐK¬3Sl–ÒØwg& ÅA¶mÔÔ)ÖD>kŠ„°à>wNÜZ^/ªÅèÎð÷ÀXÅ<—¬›Ëª*×ÛµSRvΩ¥ÚõßKmÁ ­FÛÒ ¶‡’ZΘ¥fZ½ºZh©Yhc{v6GF'ÛÕ&AÊ謶Sè ~VP›DQÃ秼¤ŽwE¹Hg9Ã> ¥ù}jnö€rЩ¥‘6×ܯ#ÇŠ(ûnN>õ‚+MXUkâ/{sM’ +endstream +endobj +69 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 66 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 56 0 R +>> +/ExtGState << +/GS0 57 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥séZ虘(@)3#c=3CK C=sK…¢T®4.€¸á † +endstream +endobj +70 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 578 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 56 0 R +>> +/ExtGState << +/GS0 57 0 R +/GS1 58 0 R +>> +/Font << +/C2_0 246 0 R +/T1_0 247 0 R +/T1_1 248 0 R +/T1_2 249 0 R +/T1_3 250 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”TËnÛ0¼ë+ö(Å—D +0$Ž8mZ Ö- +Õ/8HäB–á6_ß]ZñCM“ú¤%ÅîÎ2¾¨›å¼œ4ÐëÅß þRþ^mÈóË«>—E÷Ç&këIÄ׸\¬ƒ¸ßnó@p¡0˜@ÔF[P`†ÀÏ Å5¤Ü& °<)5×.q n•tP<áhÄŠÇ`Pƒ[$Ž?”…ü²å'nA´ñøgYaÂŤٔOÅìWÓ†C!D–ç9øÜŽËScí‰ðBHÅ«A<®4ârc4Ô‹Ny¤}-EÛN5LöW5îË4WVÌp aÃ$„3a&„ )î ¬™ã„%±‡#–Ò¦ o†k¸b‘A’pÉ"I9kÂÅeY¸~¦}ü_ú@y„„›#âH*bù´Gô'’63V?Hô‚”<µß%q§¾(w$4rÄ°\Uˆ‰ˆe5ÝwÌãø{ÊVó{5°»´Ðî è1ËH|C’‰˜3ó÷ÇÀR¥vâ×졸9ñÀ~«®OÚ¬­á*sÙ©Õà,ÓŸÚìÀ Ü"É#Ü?˜"L_½zOÒì9¯Á¡l`*¼ÙM« '„3ù™€Ð?ÓS é)Øã;t–Ö¦ƒ/ôYøÇŒÞW´ó‚èLî©3#™VdÌn°¹š¬·Á@RPÑÚ™ ˜¥ö–ç·¿?¦öû_ÿYògKH?ÚÊ ùvÅO„N„¿X"¤–k¥!áR(¨gÁ<ø#ÀóAGg +endstream +endobj +71 0 obj +[251 0 R 252 0 R] +endobj +72 0 obj +<< +/Filter /FlateDecode +/Length 972 +>> +stream +H‰¬UÛnÓ@}÷WÌ£W"ë½Û–ªH”´T„ ~«2!MæB.@þž™Y'Þ¤U骯½»³gÎ93[¼\m¾Ý¶ã œjw‹í†ÃóÑ+ÈΛL’ÆzüuÎÂjš¯¯L×YÑèÏ +44·Y%.À¿Rzpu)«à/½¸`–åZ4ß³‹&»x‡QbÐ)þ7WÅåLÁh‘}ÈŠëe;' Wí| +ùd>x}.Šw¯ÞŒ0l‚F‚RZƒ¿•ò èd ¤ª C|þg—Py©lí Ô8PeM°nr'>ȹÔb`-”øÔ¼=`}—~’%ezPÚETN9‚ÅQ1èËñfÛÞ7“?›³Ë‹ËK¥T=£\ÍàíŒ4J™#ô90©„ò&a"ÒBþMXÜ–¯Å@+#oWb€IÍð_ðZa˜¬¬!Ÿ OÍsS6IÊEÓ¨>AÓ±n(=¸NX7VÚ:Ö¯·x¾¦“õ²ŠkJ h€À­£5»ç¢³Ç‚øA~ÕäWjÏuœ×=B…‡Ñä,²YJClù4D¢ÓZjF‡‹ ¶£Wúni08öôœ £)¿ ô±`ƒÃŠÔ¹&'Ð +Í4ŒI @ËÝ—[XMèpDóUXEÌliÊñâš1C¯sãOi/ƒXÁD8ÚyÑ„2¢$îh3â ”Hd!ŽöHø,›iŒgØ>ã5QRÆ4kJr¿ªh çgÚ¿Œàqÿœ0F®µã’„7KÒŸ·å¡¦u³=hÒeyO”#à<×8.1™ûJôŠ l<¹<õ‹¯± íý‚1¯SŽ<Âü|šÍt Œeø˜nù‹Žby6š‰´bPC\FÈ›ç°Lãz© … ‰ã™Ã}„%ÉÆÙ² QEÈx}Ä þÈÈd›:k¸$Yš¸åŽK¶N«~ Ë¢+VÂQV(™Ñ±ßÄ'¦½/ö¾œØ,;¸;8±£ç‰EÃ-kÑ™çyªK +È-ûhÃŽW¤0Gtâ!i4iWh!±clS2YÉ>%¤}[X våŽ!S’_„Έ¦íz%ýŽéÌI™­ ŠNœ–v¢®ˆO»g,ùK¾¦’ïïŠHPïä‡×ÍávéZÉ«8í¡Ÿà¯…Ø +endstream +endobj +73 0 obj +<< +/Filter /FlateDecode +/Length 863 +>> +stream +H‰ŒVÉnÛ0½û+æ(%ÍU äE‹æTßÒÜXMÚz §iûõÒå%5 X29œåÍ›GO>Ž®'£ë›K??M—pv6þ4]>@Ñ.åû 1¾¹üp5œŸ_\¡ÍÅd¤aò +Æ€Æ>|S+]6BUª`L£BŠÉSü6™_©•6ÕÐy”v‡PZåŒoÈùmñMH[©Š¹°ø.èû^ÈR•Pl„Åïw 4ýš¢I­p{)ŒW 3Ú¨è´VyÜ€{Q+ ÅJxåØP+ÃþjzÎ…õìE˜ŠÌfB6ä¹w@páú`$ mB~ÍpõÚ›hg5m;M^¦¼ck2üb­.=§ü§è‘Òⲕ-­:w†~·)—5–ÇUFÔý攼T™÷´ÞAÓÐêâ«0ŽŒmIHm¨7ÀØÂxCˆ ½J^®„dèŽÕ3&»íº¦NÒËBHOOÚqq-ÐW+d gzo$l}Æ`ânrÓÞ¡¤+™’ZÕÍ+=$2þ¶Ëï™ +ˆ¡Õ¼—wß'¹“5lfOÙΈkŽ×dÚµ2¶p."Ü+QÑê1Áÿ‡‘ÃËA³C]~]Sw-$±ôPàj W[¦á‰§_ðÅ3ýZÈ ¨‰|ýyŽ‰¡&›C3z“˜ +ÏÛ+M +žzDW ív¢€ààËcÄ”²H²ŽÒGN›.…NQ$ãË_"ªM”·Ûî…4e!KöT~™ãR4Öé¬Ë‰UÀ‰Rjlæø€‚:§š-W÷h±n…MºËn^‹LCø«1q~;%ÈÄ'ƒµY^o5‚å–æ3†ýŒhቈQrv4Ž½µp@Í9À@è¸Áⱺ?é|IF±ÅQ`xˆ÷"×Hl’Õ#H×}9\+x4i›KœJlNÕFj®ó)?ÄócàŠ†%öT湜yÈ +?dŸÑ•ªLYBÀª¶T9,ÝÕ®tŸ*Ü5×é–Ž¢ÆÔcJ…D)ÿVÕ4Ñ[ÕÜ!9úý%{¢t÷\º¡†SÜR˜9eë‰3{DArU©åU”“#mK£d¶÷—€ÿwäz·sŽµþwä%ÓÐöE÷ºFQ‡7év4³ÿet›£º4Tºjïü`¦V³ +endstream +endobj +74 0 obj +<< +/Filter /FlateDecode +/Length 912 +>> +stream +H‰ŒVÉnÛ0½û+æ(CJ%A‰ƒ¢E{iu+rp¼µ…7ØÎö÷’eÙ¨áƒ,r4Ë{o†l¾Ž›Ñã÷ÝüÜM6p{{óm²YB2ߤŸïÅÍ÷‡/cÐîîîÇhtߌR%•†æ ´…?|T…Tym P…,tÍzô+y™’$0º$S‘j-5$/"3´pF +-üÎÿôg-p¡Ä=‘fäe¯lƒæ„®è¹Å'$+2¬Ø° 6B+ +edN‹¹äLEEN¶¢&ôm!Ù‰¬’6v`Èæ“áèªp‘3MÞzYæœHísì×q®Š…pElýÎ^äQ¶®„Ã0…%/°cã*Ñላ5•béq Š4Õ;øþÈ Xíog:‡‘‚{û¹`K.ÒP‘OÍu¢("Q¨¾ L]Ieë,VD’ŠæïUŽmäx(2S#AdçØ'¦¦9l½ö07fÇqjd&téŒö­ǰ)ZX÷‘Ÿ7‘³ñ\dNYF;Œ¨‰¦rƒ„+'ƒšPýð”Xömˆ‚âpïwX‘"½À±¨ŒxÅlJ/|CT… ¼^È#¾K¸š»2æNªÂôùÓª”¥¶LYJÀn¨’US>©ƒékŸÚ6]äÜü/hÂ=ÞÕ /(Ùá÷z†œ^O %¼t ·1Îk&xºôÙŒE±ñDjãõΔá Ó@ªBpWÄ°© ÿËã,š=¾50V}¼^%ÕÉØÏ.Ì}c3Y•ÌŠ"¨£ô8Úy8¦Ü2´žŸÌü.c:&°ûJÉ5*·ÏÛûQŠhI*»^tŠ;€`¹Æs |¤ÕIeÉ°½Ñ˜$Yþp +6‘‚yê.]wtYñ±æ¤Ì°¸L̪Ÿ ‚«h%æ^ù»*®Ö‘ú÷ó¸EÐØFÐ »§{&e‹±íclO1¶ñ!<ÀøZuÕ'êÊó ê2XhP×Ô݆õšiµ'sNÅ=‹úÌeƒ€%uœ™(ÑDÕTþ‘´ÌCž±yöìÊ ¸›®ëu—ÎåÖ‹Ž£®±#3¦4ºépœýàhùO”öºã?ðÂ"ç|k`ª¦Tœ>3“ºéæÚÀt·ª”o\Ð.ÿÒùTºYï3w75ÚPJ.¦6O‰D¬Îç'ø'ÀßþCò +endstream +endobj +75 0 obj +<< +/Filter /FlateDecode +/Length 920 +>> +stream +H‰¤VMO1½çWÌq-±Æß»[!Tµ*—voÀ!@HhI@ õßwfìý +¡¬Tå°Y¯=ž÷æͳ믓³zrv~ +“ÃO³5~›­Í×ùçqx~úe +FÁññÉ'Ôõ+h +øpU)U¨ 8WÊB{¨W“,õÏQu/p³ôRÙʳNúò"Û +­dÙ½0AZÈžEn” 4 Ké!{ŽÆ×09Žà—µÀÅÙ-lE)KÈ^p\I JKÃ!*ZB 4}¸Ç˜F:Z™{Š0=®…Áõ´ Ÿsx¼ó\ +3Ãmhü&&€£–• ®êqüš>¿Ò8=äX«© "¶ !5Á„l)‚¬(©[BãDdj‹h"ˆoƒpÂJäŽ^iÜÒŸ+(sD]zÃ@Ÿá™ÓDmEï+Š{=!PÓŽ ”;‹+Zü˜x¹ƒL©jHìTX.Áwä¿:J*ãÔ†2 +ƒ©Ú®—+t8!VÖä’F^ZÈ9þÁ´pý¸Æ½mi»_Âs-äÒ8úˆ•D„¯„©]/©”T—vXÒVâ*HÝT´'¿TÁÛ>¡fk…ìèu\K³WÂÈ°a™/[1ç!éÂÓxw+ ×é\fÂs`-Ê@Ñ.V‘[`(ù®>4c·uªeÅ5ÂÊ(Ú5v«ç¹¦H‹îjÐŽX^Oê`(QÇ¥1"ð&ú*¬t%®-£Xu?!Ôƒ'Ѷ[<ÄÖh[œ¨ÒÔÒø ÿ2›ÿ¥'eÃs0^^î}Gö +Ä¢{ÚÊ`¬#û^`,Rå~áÚ +»¼.•£ à6éËÁ&«£†¹—¢øQn¸¼ŒÅ‰øïw臾G5êHJÒoÑLÝk^ä?È=QÚ‹€MSÑy€éö,'|àd‡Þ¨ ÜV­ÓÅŽaG-rîL®õÊQzrQ.9ë嶇·QŒ‹Ž”ô„6ÈêIÑ8+ néUB{t“```Dù[‘ÛÆCÂðTÛqäØ@¿,“ƒ  ‹{Œmx¢²ïx¢-Šæ&qÑÑ“\²[¸[ã7=[I%zsøøèñéè<»êzšö… ôˆmèr;.§UwUè;«xo.É"–ÑÏ펟—ÉÏ5EkÏ‹®huèÆöä É‰–.^B³tÐï·?7ÔÄ6tÿ:°…îú1Ǽ8¸œg_Á_˜›6þ +endstream +endobj +76 0 obj +<< +/Filter /FlateDecode +/Length 901 +>> +stream +H‰ŒVKOÛ@¾çWÌÑ+áÅûðÚ+!¤òPEUÔ¾• –”PèÏïÌ쮽4rp¼;;ïûvÆÝ—Éy79¿<…ÉáÕótGG‡_§«óUùùD^ž^œnàøøä NºIÝ(þða}++ç5˜¦‘ª¡[NŠRt?÷rÜfŽŸm-+ã-gd\~/fB5ÒàyQÖ²b%TÅ­°q±•5`àßn„ÒÒC1¥#Ó Ql¥¥t¥ùÔÜŠ–6žÐ—tPÜ Gçæ‚ÍÖC(­d Å‹ÐŽÌ`.j²¸¥'ƒ;<çØ?ïßÒ³&ûR³ß¡Zi¡xF‘ý\KnB±ã¬¦B¥zHCx* ×|–Ó ÇÍçðx +0¬D©jŠ¼‰½ ˆ‰b¨0–%3˜Æt7°!€jÏ«¡0è¡„çê‰òÐŒ­%ŽØPDC¯7B3²}…Úжñ£ÛOt>T­ OU¤7çÀX/MRIGå DÂ=¥éBE㲉ºš, ó¬\R$+Z_Š¢¦ÔïàÐs=!S¦mÀ^ìmž‘¥0Ö†þ.Y†þhæã7.(JcE;•e’bê¸Dìˆ7Òˆ*¤ÄüÿÁ]ô€ãÎÖM‰\7¹£œ¢¿þB°®—ÄÞVoN}õy+Ž{Y$–âKrO#ÒÊòÕ!¢¸¼0!šàyÙ[.¦É¥jÆjé[ŠÁNIJ&~BFUÔ0fö _›ðB‹¶4Õ7‡Ø :@µNw{€$iqÁä*f}3ËDþ 9lRñv»³á… @®ÓUê{Í8¨ ošž3ØARÆET=|¸ae¯ÆÔ@ ˹/ä1 ²S؆͎& ½¶ßCu;ôŽ€ƒb¹]ï¯5VŠý—T,Ÿ¤rê’ÚÊâÆþðM/…Å·O4Ž°Àj>„»ž094õ ;ê> +stream +H‰ÌVMSÛ0½çWìÑ;S K²d{†a&†¡SNõ­p$„âd(ýùÝ]ÙŽÌWÓž:¬X«ÝÕ{oŸ©?NëÑéÅ1Œ¾®§ |™6 HæMz6Áƒ‹ãó°9MN(hR2•i õ3h ýÑ£t*³U6óªÐêåè[2ÆTgÊC²ÄÔdÊò”ü|¢ZU4Rñâ;Ï;êù….•ƒd…9¿o Æ² ¦0õJCrCÊ!¹£…DðI9çd;S>¥0Íñp†&çÕÖy¨Àñ3Ôr|Nu ÅI^Í»©1\ AÏ RaÇ·p™ ô~έÐÉ1zÇÖ”#ÎÐZUBr‰˜~¡ðªÞe£Ì{•Ô rX™Ê¨Ìç%XBÖ%¬ì•ÞL¢©œ2…6CÆh*l†F.:ôâ§pf:ÎÜkÎZÈ"(EÎû„\Hlñ|n‰Wì°nTRJŠÏoáK®ØˆöMT("¯Eÿ;(r´²¼Zµ57L¼HUSÜ–…J‰>ÁÞÜ/¹{=ÌžëpÝraÓ6oCó‚^# +žÑcì6$ÃB°wŠŸ÷ñ°z…»ÂÍPáé{ÓjAwN˜P?ìaŸa†áå+Z´{w»¹n=` Ë^©áü3´Yk¡Ý‡Ž~ˆÇ7Ô‚ë9Üò¾$ Æîn$^1EéÀëí-åj¿`‚ô¾ú›Ù,#~©»Ìù!É:+hh¼SÇu,Ÿ`*àïpàÛ‰í„'öÄï-/ÞXaÁ™Ö( ç(hn8Üóù?©œcB0 CgDFOÒ!K«&ÄÒ”^ïÑò‘yL´LòœUSpÈBvôÛfàf+>g2f€-F¢¸§@Öµ4FER2…ýC)ö =ô V.Šî:Q ðÑhtqÿ\µˆ½L¶¯‚ª÷"¯JòõÊÄâ¡ûîçëy6ôõò³ñtÁÈ~dÄ^zÄ_Š‰´Z±MNÙÒÅ>žÑê ËØn¢Êj˜Ï5Š«¯Y€>2¦þ^r¢õëÖ{O‚;µZ~ËÚˆ/òjª¤65ë†_pá{Š/Úa{JÜ&˺Ï` ”ÑöÿÅh¿=Ô¢n¼‚ß ‰Äz +endstream +endobj +78 0 obj +<< +/Filter /FlateDecode +/Length 783 +>> +stream +H‰¬•MoÛ0 †ïù<š«ú°d( +¬M1tX/«ÖÒe7H³ý÷#%Ù–—5†¡«Žü’|õj>ÍΛÙùåÌŽ®Ö‹Ž>/Ú%dmþñ.Ï.æP(899Ó¦Óf&…²šWP +$ýÑ£²Bšº]Ô¢Vôãjö5[`®”P=ÑB +Ù -øù ·pª†â`nEÉ?†M¨¬°-1×VÔµèDå÷i¡!»®xK‹ªà÷ðH¯Hc…ŠÖ¨+VzBŠÏ_®xáb(Çßiÿà –”IFkQÐŽ$H|âI.èóŠåuÁ*¿|y:VPú +*ù&„el9Ð’3ª‡âûJzS|FØ öüfÏáÑ’®7ëpèæ眤k£÷5„BëXA~k¦A¡S(Æ@X©Di´I‰È›Ÿ“„͘6W Í3msÌK®ã1MsA=†6‹ 1¼ðt”éYD:€ÎYîH˜~áíVc6ŸQiF" ±…Wÿ©ÇZ;v}ÛÃúFú|{ä`Λh=GãAûëØ ›îÜ+~¿ô"> žCª§¯ +G€±1éVímxï<”Ì«ë 3 Œíã"þŽÿßrµ–ëü·.ÉÒðcÚÛç¡Ö Ô“ +F Hé€@uØ„¿=]"»j¶ä.8Ú; }_n½.©HqÇ“T(¸·Àï³±ñ 7Dz£óÖÝ\ëX ½oŽ †Ns¥Ók±GÙË §k;&Âü üú÷MZDÕìz?ØwCE‹7 Cߧȓ˜ [ÁM†Öp*/ü¡ŠÔùQ6;e0 ÌLL.¦Ñ ËpJQÕ;LJ²“<j±IdvÇHçÁÓ—§0«ÐÞ¨úÖ„mÅ[Ò–ïŽ ¹Ü~ôÞä-®cçj>#¾mR8º@»Ú‡nÈ$Hû«ˆ®ÇÀTÛ ¼w²ƒKZ”ÿ̘§×’î b¡Ã•61÷ÏU5ž«“¦j+fþ0éUù{ +endstream +endobj +79 0 obj +<< +/Filter /FlateDecode +/Length 498 +>> +stream +H‰ŒSÁNã0½ç+æè9ØõØqbKˆC­vµœ67Ä!´Ý.R”vñ÷;ã¤4‘@ªrpâ¼yÏóæYm:ým‰‹Û«ï×PÖpy¹¼¾‚bÙš7 Ë/Á’©½óàlm<h^ +Ø<7MqsË5‹_¯m‹Ÿm·5#Žbmµåœ=c}*’7D„ýNí±25¨?HÞP;$ê/j*åóµ†oDS ®2‰…ÑÆõ ²þF¢±š„­ßÀÃÖH܆€uÝ=’•õ)˜Ôµ ÂÖIµüЊÖ“ÀvÐr p²ÕñqÒ([Ž²‘e‘«WXfQØ‹,eÚJÖ‘¼|t×ó‹ZWI 7éXö:©ä·vò#ŸˆO‡>³F‡.Éú–™óÿl—ôíäm¶-’Óس;¯è²£Ï¨³+¬võÐåÉwª=¹+Œòg‡Ú Ňýxßü8+3éë0–)[%7Ë‹Òg¦1Ø ó'¬£ICÀïØ/N œç?L?BÇ ÂWSÁ²ž9ÇlµÊ8Ä'£¼DåÓ$/|@Ê‘¯ÅìÜy`”'´_MߟreÙ!±à?ôyhÇ+%ѲwàË%g‘ê“+ƸlÖA.ß®R€fÓ‡ÿ 3ó· +endstream +endobj +80 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +81 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +82 0 obj +<< +/BaseFont /HPSCSJ+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 253 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 254 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 444 +0 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 +604 786 668 525 613 778 722 1000 0 667 0 333 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500] +>> +endobj +83 0 obj +<< +/BaseFont /FKMSFN+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 255 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 256 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +84 0 obj +<< +/BaseFont /ULBHSJ+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 257 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 258 0 R +/Type /Font +/Widths [233 0 426 426 0 0 426] +>> +endobj +85 0 obj +<< +/BaseFont /PSCQPT+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 259 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 260 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 307 207 0 +0 513 513 513 513 513 513 513 513 0 0 0 0 0 0 406 +0 0 0 0 666 0 0 0 0 239 0 0 0 804 0 689 +0 0 0 493 497 647 0 846 0 0 0 0 0 0 0 0 +0 482 569 448 564 501 292 559 555 234 0 469 236 834 555 549 +569 0 327 396 331 551 481 736 463 471 428] +>> +endobj +86 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 508 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/C2_0 261 0 R +/T1_0 262 0 R +/T1_1 263 0 R +/T1_2 264 0 R +/T1_3 265 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤“ÛjÛ@†ï÷)ærªÑΞÆД„”Dw!‘ØÆicÙ©iŸ¾³’âFñ…[z³íìüÿÌ~*?¶Ûå¼yØÂdR^CyÙü\¿la:=9;qR õ<:gáæBhô°W á îî5<‚(/n5,6¢<5_4Ôs¾X?pH½ËÃHóô+µø“æÑ»ˆÁÙÆ£IšÏžÅDëä¦õ“8¯Åù{hÂû€¦ªò%OBDk,x$m ‰¹(ÕTÖôê²Ð¨=uVûEg·…€Ñw.#—ëA\PGê|ÞI§Šè1€DR…I˜@ju_Ú;?êƒ%)fíbXíƺ&†hª¬klH½îåL‘Áò‡¢„rÆFЀü¦8‡×Op­ +äwv—ÍÍòÞƒlU +d£\N²UEBr¹^mrüÐ'ø¬|ÞµŠÝñ~ÓpàbH÷šæY”]t³édlÞoú,Íê±_Ü*“?¿ä°4¸¢?îÖ¬CÝɶÿÇVvM#øšQ¤E~dz⨽ŽÛçª8j/ë¾aï8I‡ÜwTa +ä2¬Õ q@øߨìK2û’ÞAêX"Y÷ÅüiûêX׺ *푥ÞF1ø1±g™<~ÙeG?nÓæW74®§Èô¸<¯˜N›YxKÁo² +endstream +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 5505 +>> +stream +H‰´WÙnG}×WÔ# ©®¥«»ÀÛAñq‡x0 %ŠV¢-¤dÇóõs·ª®^H5†E²»–»œ{gÛÇë«ÕÅ£zñâô'uúãêËýÓ£zùòÕëïÔÉ«åI¡Š…u%üõÞ©íæäôûóBmv'§KóßBµ¼: ‹ +À¿jQ*cÜÂÕe­l¹(Ë nOfV/;y³ãCÇuÌ–Ëb@'€¦J,<öRbí…F¢¥¹=R¶ÍÙ‚b²¢b xEÚr­yeÊú¼Œ'† +`“]C±;|c)“}´Ä‹$ËÛÇ}g¡gjð˳¶vŠ%ú+æÃCmèÌõ(¬£(¢×ü!ªðÝ®wï4Uú{­=y¼`Êœ-ŸóÖ¢¨ÍdU`Q {/!ÛHÄ2—ÁSOôd™L\!á3Cpƒžbá2ú|VüÖ2cj©8ùôÄG‰Êö£ÏÆØ¿–ä•S(!š¬ß +-ìeÉ*KÅýsú1+£g/G¬]HƒÉ0¼ÃVØË Ñ©}gÃVÓ¹—Âñ;u¥Ù¸{ÑV±y“Ä•–ÜàõU”¶âÆÐæ3k°g3¨t4´>lelöؤ"Ñ‚+ëÑ AÑ^>N‘Ìó]vóm±H[šÆìïèûZ›´G¿¿µ©œÑ'„$6gKŸçó¬™_ðö¼c“fò̵¼?ù¦Ôs¡JøÄÝ*ZËL¡×ô@ÝîGK þ'´Œá^²Ær$ÝÓÕ" Ï“è!õ‘aÍíààŠtqÑ­õ‰!rª;²Ñ&ækq—ñg¦ý:š¯­n® •ˆ[Ò“í³Jþ‹cuœö$SV*QqÅÁ2å?©¬ìÒ© ª:2y1U‰5UZ×ÕlžH‡n¨{°M²ÿ ~AZ·º¿å+/Ã0—ꂃ*%•ÄfJ9eðŠó{M‘g” [ ÷)LQÏ]¾ºˆ:ÊJkÚùBµš…Q»–îÖ¥às…% }C…X84å +2s¥-Rëb‘Ó’_bp¡\š©ýi.‰GI¯1(ØÊÖ½:sol¼ªø½S#ã•­Ù7A‚Ní5û`‹Ê¬“ƒ’edKòA¦O$,i6=ôÍš tÕê0iîaR#í‘Ó£&€Ü«V‰“#£aÚÌ2q0!‚¡€4©³p +RXWµ7¶”Ã<¦²óþ6쟃‘`…žålF`™æ­:ãD =S˜bHÜSæs>öø‘nÊX[g >ãr!b8,“ÑÛØ,r&`}9zÆ E9Î@ !eBL'¥Ãë;ö¢O2Pý€ nº£'…›¬„çŠiÇj:g¡KÚotYc$ +yf*þÙkdrÙ¿ñrxüOù}¦-…óA7ø§×ƒ]—æ¤Y}”½-ìeòsh¿/y¼ÓW²¬$ð̬úý³Ÿu«ÎœÀW 'A12ƒ7?hI½hRÄáýTزç^"r%· …Ÿâ9mæ˜>œ¡mrv_>D‰e㲩cŒ÷G$I ZÉYg²†ºm¹®í +jB}x &Öyi‡KJE1tÕ$ÑVÆt¿è`£À{ ÓTDTFŠäv)¦§2Fd/é&CTdçľ/LçE>ÞT]?Û'”/¡›m¿²ÆŸõ½ªÓ÷BTK·mž +ôƒH±;çi(ã~qD|*Ù§:µnÛ•0yöóÆmG +á&³F¤A•¨h;K]úsì¶wZ4­Œ¸2Éf|<ì9[O‹íñ$TÏSU= ȾV f*Ïç}K³bkIºGdoÄÀCÄÌ¡ŒðŠ!ÖøùM§RÁôbÃíý „8ÕÐ-É6£ïrrhðó–Žû ôj ™+„ÿžUOZ”@|ÑOz^áÅ[:hÌ`Rá“ÿ‰CÏÞ'Ç ÀT»)"îd Qùìä1úÄy/UÃû™¶ˆòþü']°Þ룸Crîàõ.WœÊs[`H|’Ô. d-Š.ëO&Ü0¿ê²ÏµHüÒi1Ðã¬S®18]Z +üj‘§ àü³‹Ç§ÕÍrýçã‹·oÞ¾-Š¢yùò¥¢ó Ü G-/cºÐ´)&†AUõ­+<,šŽu¿Î¾N­¨½”<ÞÅó6+•3o¤5Zl„„£?À¶2S?×lÓv}+5; X©ÙVÊe+]Ô%Âj€iž Ùî„–v\ º6'Þ»…w¼ŒY¢&£O“G³2ªï¦ŠséšbJ»§â·š@ÄN¦Šzœ*Ð*è hÖà€ Æ(6#Ò%IðδG4=ÐÚÿ§½|šã¶‘(þUxœ% 7§Tù’ë–o›‹-œTIŠJZ%«o¿è@$G9{ÒXòÆë׿'oÑè£CÙ½¥>Vc8å1ÜÂpywö=Žà—4r98‹š¯µä+´×¯<&÷2$Wlw“Æ$‡¹Ê ·Ð;™gàèFwi…ѧ[ i«“sÞó +3Qײ§.;–¥ýí +uÍÓ‡0s^c枺Teÿ¾éP^ Êë¶J­¸OþT +ó¬0 uïú¼»ÚçId¦YØ™%Wz*…çÒwÞ8ª„\FwË¹àŽ Ä˜^¿¢_áC]ëÇzxë[o¯ÒOlôcÅomë·Y?£Ï|vs¾&¦ŒþCú™ëGUÖ¸“ÅT¨0 çL³4éä}§ZÉèšlR$ÜIOÿ¥"´L eô¸ÊUÅš$PEæò ¿Ð_UîÊü@®î•>9Ò™x¤6>ü{Ž„’EˆòÈÅj†MŠs­â\8Áu6FµàIuaŠz¬ùB€îŒ>%÷žvDj7œÍùœ*ýîSïPÿëSx¥ÌaD’ ƒPñ;…‚¼þkâvòe· …´<ŠÀÖ\YöÎœïç¾ É–ø\º"¿µaü88Åðÿ#Qžèûë/šâŽˆ!½i7µñê >–ñe•*qÜ )s1-e¶(–Jw³Ÿ;œ5YŒxÝ:æmIO¿Þ!¶™î"Ì—óª¸\}·!Cê9äè<éÑà_R厭pÂk +&º]êErù6ó ¥ûOŒ¨D|r9š¬EúýŸ½3¤xÒÓK×rti.Â~<ù ÿIýœad6šN7 ÉúSmáõ kØÝ_¹þ²p§M[=ŒúK^œÙ“Õ´(Ò)7NGÏó²@ŸÒæ¯Çm¡ªóñ›,O‰òBÕ×Ø•—¥?Gµuxȹ„¢Ge}†ºÜ½¶+9Ì°h ´“Z:T;ԑïè D8)æ¾_ÁÚžzg¨éĵêäÎxÔ×ÍŽ)Î"GÕ±Øt,Êö%ÁJ2E#·˜U^{ƒE}ƒŸ®™“¸ÙࣺtûFZ$™¢]§R¾²ÌîD$Ý­®eé±<çc5~¨†n‹©Up›£ÊM±Å±ù¥T7à'5#ôÒ”Ãp»~ç,wÞ/ù J¶Êê±€ïøDS³Uë°õ#_zÒêéø}M5ù½+­ç+û ¥)udêÀà6ñ ›1jpýÛ¦·Šc¬Î> "ÐY÷õÜ)Àæ'˜eØP VxƱ$ñÝ%rê~éìºu\¬~•ÏäèJâm…)ƒD‘Æ‘á Xmà/·±?Ã|égxv1)¥4‚©Œ ] ¡zäOâ½G%åÛœg÷D5EÛ¿åôQ¶¨ø·D Ú߯^«w=ò¹zWÖE3öIWîè&–ÛL/:ˆ–¾…öúÖ}éX-ùç.דt“þÒTýÌ‚¼ƒkÕ›&95½6z®ÞÒá'®ä ã‚€4ÖCÒæEÝI@Nzu9á8Íä¼ÅÍŽª"!l%ˆã„k ›âŽÜÌb°Ml´žWÄÏYPjÃúmd•,Ä›sÅ@?â7Éõýײj¿ñÚ^ÔlL-ÁÉ}ízbôÍH¯j¬—e=²L•a¬õDö”›,*ÇgÀ¢••‰ëåùÌÓê «3õG²_—4ŒEʃvT¤ó‘jéÒòúžHã¬pý1{âtê¤ÓµG^§4JÞtã·¢Êß”@pa;JZ²ËZØ›@Ɇ•|›[´Ýñ¾{¼˜¬Ú:X€gOOìš¾©zñÃûáë™öÖÛ¥ÚÌ’÷^q0kÊX›)sGS¹Ãý¿²ŸÇm‚S½çåÜÂ<÷†RÂí„“%•8PMᱤ /Ì%2¹E7)¨nq®ßà§Që’Çû8šÑ¨“þãóçt¾îó êmÇR î`àCé‚ó +1~NC¥½GÎz}ü½Ÿ^F7èÇd -FÊÜÝÆÕ6JeÝ8iì;÷…ÿkß‘ñMâÎìQ M‚[¦½ãjpÛû]»OƒX˜ä¯²oó ySs´ÉØ5KÀ×ÎÞàÉ¥ÔžÖ{bô\€IA<ÂÉ5IÀJˆUâÍn²Ð»ÛgÛ@ÞJk]üÑ–£cÚ=F¯#ÌDlË A¼ø–#cû¥%äé •Háë?´ $ûåß)äÂÛ¿£ÆžVÔYvýûfqæ<áùf=X5>ƒ‚=?-@nIU,ú¥4(ò/<•ê`¾AßãÒž. R +ncœc¥ê›î "™ÑW oÂ.ÈQ1RÛO%!¢[å6䆂4åôøŲã¶!2!‹QóíUÄdd0 +VJ-n/0 ¢g;ÌSà‹û†G~ß?2ìFøj°¦Š3’·’ÍÆÜã l|½|™½|[õ +=¨äÜÐõ·Ó™–øö“‹¸ +£'gÛõ,JK¨?+7Žè€/ ¯n”UžI5FŸN›„/Æ\n¾^B÷]ßÁLΘ§WFTM0FhOÝ8SœÅNœ"aÙ°Uzí‚*(ÊÑÕ+-'ÇÐÔ€FëÀÔ‘ðóØ +‰_ú‰H2PXH¯°e0KŠèvùvojK¶Ê*Ç—Q<à…JBWXáÜD²o"Iø°)Õ”C–ê;3#(¸‘@.õ^†f°Žo2¢7þ W wÉ(A&2!.º-ÿ`ëSìQ +endstream +endobj +88 0 obj +<< +/BaseFont /GTBWEL+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 266 0 R +/LastChar 122 +/Subtype /TrueType +/ToUnicode 267 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 302 282 0 0 0 320 0 0 +0 0 0 0 0 0 0 0 0 0 236 0 0 0 0 0 +0 696 0 0 726 536 500 0 0 0 0 0 546 884 744 726 +556 0 660 528 602 688 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 0 574 312 800 556 490 +528 0 378 396 340 546 508 762 462 518 442] +>> +endobj +89 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 549 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 80 0 R +/GS1 81 0 R +>> +/Font << +/C2_0 268 0 R +/T1_0 269 0 R +/T1_1 270 0 R +/T1_2 271 0 R +/T1_3 272 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”SÛjÛ@}×WÌ£ªÕÌ^´Cs!44½…PÔ86Nd…Ð|}gVBµœRã—ÝÙËÌ9³çlþ¹íÖË汃Ù,ÿù×æ÷öµƒùüìâ’³:A@m¬çÑ9 ·W joààžáþaI~u‡°Ú%ù¹ùŽ@P/9±~ä+õ› ; äé]ŽZ(y y,H{¤Œ×¦D>zIfˆ¥›×ÏÉe\Þ0…)~»J²’“œäx2Pm¯ ´OÉ2Éu”×4rÔHAxfCɶPèà#ÇÀÍ’ Ú!` +è­Ð¼O¿¨ÌjéF9m!íAú¤2΄t¥2£KH[Uê +Ò†¯„¿W‚¤-Ík¸P™ct­2’œÔ僦å,^¿È>Ÿ710±‚×n8##(ŸÆŠñ†R9cûCøPÄ@aòk˜×‚]@ú.¤Ê=¢üÆŒ°Þn¸&Wl6‹>¸U±Nì“Îÿ{ƒÐ¿ÁPºüGé;U ùN(s%AâšU쟃 /Õ“ß©‡úz´ÅQ•1êGðS¼IÑ›¬;zs¢´ F[r¥SµgÇãîúø&ž·ÁktäÅÀaÀˆ¦GD;?iìËŒ}˜×–;Û™iK'uôáŽ-2°í§˜•\õ4ý0¤¬WpÍÊZñÝ+$ÁFvØ;`ĉ¬>ª ÚK8Mü½/.?›©ˆÞ}p y@M>D9J[=WǸ^ˆib÷Eã„Áz&¸ +endstream +endobj +90 0 obj +<< +/Filter /FlateDecode +/Length 5694 +>> +stream +H‰¤WÛnG}×Wô#0©éëÌA€8ò»p²X˜oëÅ‚’(ù"Š +¥ØQ¾~ëÖ==Ê#/G$§§»ªúÔ©sN:<~¼Þ\>ª~8ý§:}»yÚÿñ¨~üñõùÏêäõú¤RÕʺÿ÷Þ©ÃÍÉé/ï*uóprº6ÿ­”Që듸ªaüW¯‚òm½j¢Ê†UìNN¯?¼YŸ¼ùvý6½ë·§ÛUê|ò¯“Ów÷›;ŒáíæîF-¶wË_^ëÓ_þû¹2UÛGᱟ1ì%Žeµª\TëKˆÖÙF­¿*cW}h,h½ªm³jÛ6blÿ^œo7µ¸ÔKc`Ýâ>´jñQÃW«_´©WQ-6ÞçWoµS‹+½ ø›úªm\yø6óø˽^ÖøÃ^üz§ÿ³þG®ÁsùšªÈ²3œ]ʼn٪¦Ä §(xSÇAVgê'ˆÉŒ{«-¦±ÑÖ®ŒÌã×=ü îfÛຘ å ¹À£G¥¡¦½K¸lµxP[üH{ã·9äÚ¬ ÍåÃñ)}¸Rá“ÅÒÀŠª^ák]x&r¸Tô yA¹oñ2àñVAE~ºV[ÎäOH€ö¾×ÇD?ßÂÏ!ÿ銫nRv{Ü8¨ùwdJL®ªû—’‘X¨óÜv™Öà’€C +‰y*·iWmŠ9”1oä¿ÆuÉw™HW."g{^ãaÂÿÜ(’Å(¸ö†áÂüp+ý¬©/‡èbðã4T)¤ÙÐp½AÙƒ…o`©Ööp±X–sùÙ­}±õl±œ3Í}A|øÝÚ÷KAKÚÀ4x÷-eÌ_xb'ß»CܼÁkÈ¥:µ¸×ð0Õ‘¬õôB „xá+xà°Î6òyKK#ýI·DG+õ‚î EP„0˜ÖU½ªM *Ö 9rÉ~Ãv°Ü…¡ËYí[üýLcõÌ4\úNìÃMÚÕe‚ú\šÛÔ¼¿óáy\H»ç¹þ MH– •ù=¿½Bó„î!Ÿƒ h×%\9µ­¤˜[ +.?LŒp€×­ jÉ”`>ü n &ÕQÿæ9ÅTìˆ9q‰ÊO3v u¡ßrd¦âÙœÙFh¨K®‘äZÆ:Ýþ­´âSy?ƒ®<.ÏT¾)¨P( +•*Ì9žÂ™ÉUÇr™ð¿¡'FøÌ»(DôPøªèj1¥ú¸Äõ5ö÷šé¾”]¢|&´jC%ô|$aÊdR£ÌGG}œ³30¼+Dä.÷¯\X1œ©2Ýð +=q]Ð@â‰Pt ^mLW†Ên,ô.ˆrûIؽ Ëœáh ¯šn6² +ºL}ÿ„7j'ú!tV$4¼˜qžù5[ÉjËb å"0…%Š/ù# Iõõf<9¹+$aØìl"³Sº‡N³–¢'뢋âœSÝÖx€yÀíØ]1Ïí’ÐM§¦ï+öŽ‰vÐ@&þAáC@ÃjX µs Ÿ9¢Â¨,§bõKUó±s›RBà%ö_8IóøŠY)Ѹ\F瘵f§×öÓ3œ^%™ùf0l#H©ºiiu /T3=E²Ì¸%åµ%¼0ªðAÛwªC³#yÉÝ7žl)†“wÒ:|‹Yçñ(õ?ùJÛ$.`DÆðtÿê‚p3_~ƒ\æó!­goêp„+Sȧ‘,ÿÿ=[*+!/‘ß)žúV‚+Ð1鸀 —¤eªÒˆ±“êá¼st-jÙ]Ù$=¤î¬jóº´/÷ÑM$F 1µx:m_"0M¬§y0€¬ L®0òŸFÒ±=ÚÎ(9‘,k ž·ÆÔ÷ ”ìÔhKŒ›áž¼ÜžuúÐù¤Úΰᳲ#¤­ÚÞ‘ƒÍÄr)^1³Ø8”žÔÎ}›¥tw1eá5V(ä/ôrœôºcäÏÇ”;n3ŒÒÚÁŠK€×õ§y[ûbë €¸¥ Ð×¥)ׯ١C +©X: (HóUlÃQUl“*¶IÛ Y\U¨sþV3;<Èw¸"º.bHDÅ#ö‹¤Àƒ ZûÕ ÜsTõ.;Ù àk²òõfU™zùXùN‰Gñ1N/êeˆÆôùƒ6,uÏûÝô¸6ŠŒ–ó’hÁ›wcaÃÔ ³ÿYb ‡2¢²\ÿÝË#nd{“§|yÃBÜȘž°å^™{Æ¢€ «QYd«Ù(©ç´x‡´xÓå6!ÏJPÒN*íñ¨1ÐEn(áÝNûd'x,‘™dZVuBðÐIIiµ/êûöhß»ZúÞÕÒ÷mà®s8„ƒ€a>ÜËÜw¦Í³Ý]:ÇPœ¨«žóµÆø¯µ58£Æœêîѽ ÿ‹tYA¸´ê!š{˜¹êˆ)tÓ¦ÐVs,á„ÄHýýÞ͉֮K!©IÍÈÌÉò„[QÛ°¦3¬é‚È—&‰ÕÏxÇu§q²Ýaá·= éYd­mÌŸÎnÚà'#ÔúoÐd¾v+—ï> ò®Þ1Kþ³³^v† *¡F¸)FC0K—“Y]Œ4ö•ôÈÀé‰*Ø–gºæÌÕ{ Ðà·ï5'õAÞzbê,dÄÿH¯’å¶ ú+8U¢LÌ 6ßR§*—ø¢¼)‰d+ôçëÓëL÷ AçDJÄÒÓýú-ŒÛ#>ÚR!yÎ+yŠÑ1Æï#-PÚ`~6mKpÛ’UѨ`¿’ôäµ…¾Ôú× +P¬ý«ÖgO9Ñ4¥¤…„}«Šzýä¶ã ”¤6Qè|jE ,ïÆP:z_º¶Ð‡Eˆ ÂD| †Rì+©rÀа8feVùutÊOy«‰ê‘FñK˜„âù6ƒ‹ïåR!í“š®Pd?Ù/JMLó®õÞ%›Èå9;=8eÈk0³"j=e<äÅ A~aÜÏqÀ°ÿã N‡l˜è`ÿ`ÂHÆ ¼‘™là DŽKJ†3“!Á|wÝa›âÀtŒ]Íp` Çn®ê}Þü n€dè3O÷®MŽ!fž¼^.a5e±,óëæç}"L®:½1F_>ðËÃ¥/Ï&Õ°Ï¡÷DÔ»e@Ïô ÎˆYª‘¬•KN,L‹øØWf¼"ÙŽŒañhàt~‚ Öªà!øο( ~¼€©â6SõGO ÑÍý§¦½ùsߣ“wÐÝFþŠÀÒ1£êUöБ\äÀ“ñhwrÚÕÉûAº‡_Z8´= FÌ;'`áeY·NˆÍºXôÏMË`n +8oIjI³vL؈S™úÄîÛä;‰"‘Ižd蛤ÁÐ'YfòÖ"B±jTÈL(¢¡<©Ñ†;»ÅêÎ")†ºEÄÊØw<¡ØŽ’{ö xA<ÿM&(éAîÜRNŽ¨U8,ú7h(ýÁ×}°:\w½_Yz‘ë3“Ñá¼æ¯1¸‰@$:­u#½u#d g ¬}íüV§{mNM\¬ßSŒªÀnhŒ{B‰AÄþPÒOÕfÄi}!ºiF/2fÞßP.åfÉù||ƒŒÙ1z˜,C"<)<üÍØΓ ++ðm +gW®¢ˆ5iÒ;N¯œ—ìB¨ê%¿ýÒ˜ý8O´º=š +nø5yá²I#4–¥:QAŠ¤0Øfm“Õž i®±!®`šè{ã%ïÞ˜m—¾ÂN÷± :{eQµ;ô;”ZÖ¬€xFkòk¾G3¥»ËsžÎ$¥Â/;ß#bùCi"Y`èÈE²«eåL(º Œ°Ñ#l\E˜³¯„š l_Ó÷ìko/”ÑìEØpÜ‘‚,¶öKþ`Ö +A´*6ÖÆcDñF'Þ1tcd„ a›LæÈ°WWîF§t 0 ÿPœnN¦ˆøÎðÙZK6î^,b}<\rµ+^ûQäñzÿHmú|vs]onÞ®š.l¿äÁÄ`ŒÍ¯mŠ¼fTÆ©=¯F$r»=µ¼†˜'H³w×}שÆk®|W@ßUùòž7?CÇ(Ѿ—eûÖdn.Y xòËBǼ¬éòê\ŽHBÅ \æ%tù5SE` ÕäÔÁ‚ïл &’êI-e/„ª|ÕsÄ-Mí.ŸZ‚߇†<ÖŠ(\Z’”nhÌþY»xqÝ¥yÃã@—ŠÇ9•®RO¬At!®&˜ëhÙ7sjPsî4MA +m\6[à í<‘Ç=Ð= àJ®ºƒúfãœr +Íp¢ž~â~ãšÉÖαïOrLÓóýÜ#BnåVj1z%.l[RùzŸ>˜Îä§%ˆyY—Î(-(&j×n@õ{tË éÝr1ðŒ?&ã¸2\X! §Â-ÿ&=˽2ÿJü1h†VÝI^þfl}F–½oÞ²Áͳ,Ì"0:g$3.¬ò2èx“·MôKVVËAȇ }m YRXÁ:8{ŠPŸb×6ÌÂÞ£Œr|øÆah«]«%¸ØÃcåáÓž ÞÍÞÀ+½ÓêP—¸ä:Ö)•_ÚíO&ÖFR‘N÷ºMµ992¹$žŒÉ0 WF)™Ê 4Ž:ë1êäŽL*Øip]Ðzk¤Ï¯í±æëæ· œæ=²))Ô«|¹âLS3Fá]('âãT«Œ'0ПW…¶·|nÆýÖ2î‚ñ~MÛd§è‹>fôˆèD·èHRÈÕ'¬ý%kvØþO¬q4·`²ºJdD°￈á©Ÿvd¨‹HÔtmOQiñ˜aô1’zz‡üŸ:ã` +endstream +endobj +91 0 obj +<< +/Filter /FlateDecode +/Length 4324 +>> +stream +H‰´WioÜÈý®_ч€‡bŸ$ÅöÚYl`g“x¾EA0²¤±ÖºV—­Ÿºú çGq°ð’âÝÕU¯Þ{uøæöþülùù^ýôÓáïêðÃòéúá^ýüóÛw¿¨ƒ·‹ƒF5µ±þïœU·«ƒÃ_?5juwp¸Ðÿi”V‹³ƒP·ðü×Ö^imkÛùN_{à…˃™«¼_¼ÿ«þ ‹®àßâÃá_.õîúà‡Ÿn–WÇåÕJÍN¯æ¿¾­?þòÛ;¥C?ŒGá¶_1Í,$ŽyS7ÁªÅgŒ¹sjñMiSsht“bkMW÷}0¸Í>Ts¯ë^ÍΫ¹±x³‚'¶vjö¥šë f÷ÕÜšºS3õ­‚]àÉ)¼ŠÇ-á Sk5»w~s ?ùÚ¨ÙUõïÅ_Ó±w±mŠ#Â4¨á³hÌ"œEóIàÇÎÕ>ôvtŽ×ê ‡{UYA>©Ëjî0Œ²ÃபÿžWZcô7•ÃدñÏVÍné0žÜ׿kq¡ã +6‚÷.ð=HéJwpj\ðž6”1WÜQÓ73K«ŸV†c1”Ë´·Ã®ÔI¥[¼;Åàõ»J7x=¯´Ç˜ (†°DX\íDÉYÒ!ÔìÝàÚw¸”Áxá Þ=)ˆÔP* ,ŠôZå/ùžŽaxÛª·š^L=Àë rÞFÛ®Tn¦Êöع´)–F¸k?BFB¸vu›qS h)e·˜:Jðœ`+RBîåM>0˜²G*jàN1Œ'MK¯Ô3…«ª¥úŒðÑ”>º~SG³*¬[ÆEen[ ‚§p4ìùP!’W¸`å‹ÊÁö¸ËeÅœ2Ä5.l-Wøøhð»´"ۦ˹<ƒh òø`ˆ!]¾›±´T¤ã„àë®l™‰Ep¯GÕ€³%àv(š¦ö}ïZV*¢N+bïDFeüÐã J %wÎf¼¥EÚšê77Dª˜5ûLà"Fí+Mn 9¯Ô9­IðÙÉŽ3ëyåÌ sØ@"Æo9þ6Ç?»“°-‡m¤Š:†íœ=Fš¿Ýˆ¼ÛÌr´ç "˜;¨×xˆ'€hWÒ2l‡ÆÔQ Ùá%ƒÏŠb³LÜv^J @ ñÆ38x¦üóH=CD‘ûö¾BvÝÕÓç@`±æ‹.ŠrÃ[{ÜúFpqËQ]ÿAœÍ›3Ó j[r  +š +ñ ŒËvWa¦HÂuoÂÎ +ÙÐB¦ãůYš +tw¸ÜcK‹×zûè®Ù2H¡Ã’jü7ÜÈphÄ«ºr=>­~CW -ª)vÀ8LÑv,¢R®esã{ÔÞ‘ å>n#0W…,PÎ3žÈ,¼RX˜®0–*÷H±õÉëP;¦ÂÅÞë>ú;‰BŠ¼b™/È*j` +ý‹f¬X¯–œTÛHxB‘¸,©ˆ´/ÓC¤t Ðãs‹KÛ r•:mMŸ¦£" Paº°­õ}[˜ÉËŠ cTã” Qý"÷®(@Ö|NØU–aBáõýµ"+fW–æÅîµÈf<67áÒ¡±*6º{*ˆPÇme¥züƒ)h­ÂÜ´HN`õƒbï‡ÄdÅÜ{ñä²TúBá딧#¬`xKtíax»¡µiÇ“P¯³…ß½ÍЕYN0¡«¹c[“l"¨•pÚ>ø1Hœ¤›® —¡ydíé‡Ú³j".ãˆxžì]̇XÚ5ù,IÉá*@KÔEQŠe$ˆzñµ²B"âwðüþT±ÍÓŒZv:Y®hoâ¢eŽƒäØ r\9Æýx¸Ú +6Ó>úl¦×JØ­—ðe´Äkóp´NL[Š¹.ïà| RìÈëÂrŪ–)))†ˆ†àOÆ`({é&—†7ùœqá cΆ}\*ñâ1—‹2€M¶{l•n8D¥ èè XñèXO/-Js¸X@aÔâŒ4 qjñYÉ t/‚•*‡7©×’¤‰×Ub»¾S_ ¤0îÀ<™}<Ãþ¼C¶ß$“'l¯ð»0 ãèéØœ`­|H`%rQø¸ñÜÄ…$æéµ^†G/HB¿NE8ñ¦‚m°²šó(>JØ Æ©³ ¥éy>™Ó(‰ê¸ÄM(È0<Ê¥ù–¡ñHGöÑCoPêÎ*~žR_Î,¥äEGæF4f£U¦NÒÔ’»¥¯Pä3&b$fSVwdKæºx™O%ø;Ia¶ckv>žeøŒÆ ñ f³V_ïf]i¶©ðꟙº¶ X!v' +gÿÌæÁ×g†C桦£¡Æs-‡öc³9Jc Â1$8òÔFx~Lîfì«òøH% ľ²øâ„ÿ¥ÂÅÎ˪Å/Ži4¼ÀRwÌI&¥û²ÔiŸª†½Ù®†Èøxü5t-ܤº|ª™¥üX`ûÆR_ø¾°C%~¢Ïú’DäH¡L¸/ØD¤,P½*Ø¿kñ[7XZƒ˜Ìžø‡Â×l©µ$QÆ{6/ûŒeü)èÖâ)zžE„µ–qa¸¼C@dæCî—Ì M_括¡]—‹;µÖƒqòéX.çI R» nÎf.J‡ª™6âYÙÄ>­;0áù+YQ/*&ÝÎ&û2¹èÛb ¿Z”ÎQ*Ï0q,”ÕÖ­\ŽúÿQm/[gœVñ0磜AuÑMç iÐudŒ®:ñýÙá7¬’G‹²nÛòÌRIç‚5ÍPjPjôX–@³³Õ*|u´²yâjD]8áMÆÖï‘µÖ +.n÷IæÌ$æPǃ$‚šh…wÌãÆ^õ:|ó‰TnåŒ ªÍƒ:šUŽÚû\¯qû®@yå †Ãxh‡»ßQÐ oïÔp²Ë<¡rJצ²bMVj-52lJ¾7(ê“Õ⫆Áãj(EÚò{#²IÓŠ4ÂhK°Åó_ìõ9d*ÙáÓž³¸}Z»Å§M‡K¿ÝŽe¨4¦°ä{›Ê½ÝÔI/—å&‚ŠþÊ,™*†šé—ÇÙQlX?à„"E°‹@0ðùèÕÝÒ<È8ì\NÜÝ’®®Ž¼ªtí8x ¶Ì/0§ÿ;·œºª²œZ‡þ$u ªnÆDëÌrV¢Ó(.›§â·ÿ˜ü—Ý<²›»g¸ù%k¦ëûÕ5³y_ƒµ¾gzàõ½Ú3}À¨O²<Ž­§m>7‡-§ô´ý}ëdšè6ÅW}JÓg]5¯!­IƒV•Fy2ˆ7Ä:±k$¯A"I\@f7rÛK7ÇÚé^ô”=ƒ§$é Õô»èAl3¯’AóþÒ”Í ½Ü""ûf²£Fx„¶Ý(K„Á¨ŽÍÐK9ãn"aÑÆF˜ôè•dϱN}¤#‘cžáf®w“ 0¬!¹‡ °bTúŽæŒ?½±8îØ£ü%æ2?ûù%*fñDŠTf¶?e+•ßVÕ{gi ¹U‡2Uó†YöA¸'àfós´þÆ>^[&­ vSÐNèÁ ¤ „ã7ŒA¢"¦ðiÂg”ÉÔŠ)»Ä¢¸AæÍ*˜Y‚ +lº÷ÝÃÆðíaMeEîÀA£%ðZÚÄ*Ý(ªøÿ=,#ùæjË°3ƒ÷ Þ7.¨\òïq\‡X3´aß_5oÑÿ1K¥;FRrÀ˜ÏØ·ƒ°¦é_ÕäÙ03$Š˜…UÀ/ Õq÷A_Qî 7t¸`¥Î˜iÇ ì ZÉpãšDéœñCØ×s¿µ~¥™§Üý &Uý¬åˆ°Mc}o7ô67ØàÞ¢®£…Lé=®s«H–7¥v‡Ó'£zcµ^sóvUÅÉpða­ÑQ EW-µÓ™!à†b)ÉdãÕFK—Uî"hî¨ÿãÖ…÷é䀭Êd¸ ™0‹åeWÉãUWà²üµò»ïPä¢ržNBÜÛý$³ +r,A*oVrÝJˆŠ}Š˜ÑÛÔÌv-n2È:SÞ7ECÒ†šZœWä$pyR€·YKi}^D¨Hb22¹|¼ßvôN½$NXÆ*ÔNÚ‚œiTAKµ+åÑN„Ë«Õ kâ'r¬{jѸ ÇåØÄÏÝ8*([ós×\5oø»?²ntrI†7yÊ¡Z¿ó‡ãìc»ã ÕAü±1z£­†ÚÏ\Åy7{çh5Œ +†ÑÐ;_K[R„ycàþ¿`¨îW·¼èp•’´äùÝÒšçR¯æí'q îé `‰ÞÈß¾¶-F9t6ìðñíyrn}ýЯï€ðp7ÐÃ!Eû"ªéOvöÕš¤&±ÖdN³vÐ ‘~*\ºÆF¸®aKj^¼/´=3®&˸r19Ø ëOõ™58c€ÊÀu`âoî +ÖaDj¹å +)ò$ò!,¤" ?ÁtâÇ@DÑåƒá–¯*«‹ìæJ3kÕe%wΖu»»Ó X“%Ô‡¹„ŠðCR@ðý‘¦Ùæ¨üä^à(¾?X¸í_…úÏ^Š†âíÎÄ1äŸw,7 tø-9Ût7&zGvöå +”мCžk¨œžåHkœîƒŒnj}½PŽçpÿW€†ÚGu +endstream +endobj +92 0 obj +[273 0 R] +endobj +93 0 obj +<< +/Filter /FlateDecode +/Length 5070 +>> +stream +H‰´WkOÉýί¨ÓÓt=»[Z­d›åÈ›(ë‘ü!EÌÚ2€þ}ýzÐF–¡éGÕ­{Ï=÷œ“W»‡ëËíùƒø駓¿‹“÷Û§ÛÇñóϯO߈£×›£F4µÒ~£Åîêèäí‡F\Ýlä¿!ÅæòÈÕ-¼ÿÚÚ +Ó·uçŒÊÖÖ:xáæhe«ÍG¿lŽ~ùVý,zÿ7ïOþrÓˆÓÛ£|¸Û~ÃÞo¿]‰ÕÅ·õÛ×ÕɯoÞ +%MÏÉfãw]7uÓôbs.üÅ!…¿:[7º7¢…(´… ˆâŸ+])WK±ª«u/Vâ]µVMÝŠÕ·Jvµ«¸aÅjw[­þý©R-¾ÿXIYwbu^­eƒô">¹®¤©a­ÛoÕ¿6GÜ{[¦_0¯óÚð‰$GòcÏãzW÷ñ<§Õº­Fq9±º‡¸ð@[¸!1¾\À‰nªµÁ?ñ¾Æ‹<¼xQ­-g@Ñ ¯·îEÕ@=WWþðéU‡'¾¨n½Ã§.Ûñ+îÈ°¤«'ñQIüòl1«²Åìâ +"Å|+)ÌmŸA 4Þ¾ÅÇpû“'<gÊ…ƒÝ?û˜Ävð•røàAÜú;—bw–ªtƒ<â#K/÷\̵R¸8ÄIé¼Â¯)O;qQü6óÔRf!S| y¢Œ(@E«•ËcfEY'. V¨§ô/F”Ë…m¡;B”±¨ƒdÛÞ2€¶½M•QtÈcŸë-f1ƒÂ}EÙÎòÓ1w黄Ǹœ^¸«zü¡h™¯ŒÍkÚÖ¢ÎÚV->;ÃwD|Ãê—xƒ_âG¥ ‰˜iK:Ò-üÒTi9²{¸ÏŸª€=‰ËZ«`ð6G‘å#´ÖÔà…¢êg_Ë/®ÇåçT‡H²5ó ýîÓA(]-¥¢óañþ}Å}zíïÇóg-Á%Ià£twÔ¢”ƒGìHj h„R©–ƒ±Íé­nd?ÃdN™ øGûHQ!¾@=¾¤±[•úX0mb€¬™™ XmAPðeæ O×ç•‘NQí¯pÁ1JG‹%"ä™’r¹hñ™XÅçðeŽgÇ°øÄçýôù÷²b?P"üì"ñÆ + ÖbÃÁNˆ]“°:`\è+\ïk˜?ж' [tôrÌu%挚Áœ5™¸¬xã[Ïrç!t‰ÉhƒÎHCMãP‹mü+ÈB“B³ÐÚœÐ&Ë7FÔ€Õô³¬¦Â1lbŸ˜Žl&æ`6íht+‡Á®ExçgÊž¶eTDU:>ÌeÕHXŒ™¾aÓx1ƒˆ—3ìl…[Gõtse1¬7zÔc5—W4—ž3¢Ê¨¨çœËHä¾d&• y£Å]vaºIEäÙÕ4`¹…)-3æϯ±$Ü}mQXFÇgAM«²¦Ý L̇Sÿý)~¯ü&BEw¯9ãå²q8Qå`Œy¾Y\YBª¬«ÔTW¾2N׺Q=ÔŽRT[0™?Ù»¶ÌÖN€1ÎÕ¶U•#f%¯ª®±ìT'½’smØK6mÝJ{I^àãP â±Wwžð2äµÄÑ¢ +˜’Ê–¹ðfÜ©=pÎàÈÙ>„ÇmÝåB1Pƒc-¨H|¨B8qu.¼YÌÅ6J.Hkndðß ®˜Mñl.S ²3 +5jÓáDÀœÉÉóØÌ©xY·œÁ”. 3‹m ÓÞÌÁr0Í 0u£G{EÖÄêF‹±KÆÉK§0ƨ¹ùЕ6XJà 7Pz¨‚m‰H;˜Õ¡jåÀØyFJãšUý¥øRiF÷ÃÓ +&HãbôÍ¢óÙ_Î/ȹw¬ïÉb×ÓòXŽGínóf{v;Ó­É'B7¼r™žHlðœQvr>ÒØ'DvZw˜í!`Îv˜Ý˜Ûv̶o3›²_*©Cì’Vðg%Qb'ŸãıÞÃ¥=lé4‘xp»4:×Ä€©Ë‚—ÄTµ_÷ìèpÇio¸¸„íó%TWÛ5m‘×Õzq »™JÓÏ—°Ó™êO£nЬ>#yÌõ¹¨(…—˜ã6k¥µóì†,E°ø4¼_¦l ¤ Ì9€‘Ÿ ñWôw°Ÿ{ƒO^484DBÎâ*÷‡T9Kýò*ëfPeé¸Êt1We×gZý&¤wKƒòÜxÍ!iª[|b-g@×XYú©Pýf+ƒyY+ÿ¹#Î…ÓLñ•…Y¶îúzšˆ¬÷W]á7£~‰£ä¢¢3ée»—H ]H`§¦—µÕŠM¬[ z—˜L ?úˆƒsÚï½tœ/ùSÆ/”IæwuCnq/Ÿ’º|ˆµ™ü I,öžë™|"ýðö,XЀFʲg7Ÿ*Vn‘Ó¢¼áqò4NP²² Hô¥—„a$’¢¾Ã‘8á n}Òû[ +Œ·ÃÒgJøY=“>h›+ØÀý1ÀûS›&[“µýCHÍgo*„ò*¯©èÔº"aшWþ¸WÁXÄ40f Q€¸ôò-}ù£GâI®ŽlW2F#eá×Þ.OáŒN“9÷›¶éŠ$Àýs"-pÿ¸X€W‹5¶e§Xùga°À8¥ûÓ„ÿJADF*w“äì°ƒÞ (Œ¯*×’7μBïK(y$؃: Ðhµ’3lúØ¿Myá-E*¯°Iõ@‹bbnR¥¼?ƒ£ŠÕïJ©ª£~»Ï[„R-+/:Á +—W£25$+ÿžÔÞ^¤“b~ƒ ¨23 å“&X´RÈÀmhQµ°Eƒ£¹@ž*wA¡*ÖlÖÎù¬pWãŽAëÿ 績h2b)Ó ›´€ût«eÝ*c¥übäyT¡[öÙͬjä ­ÍdØPVab鬵Ÿ’Ç+*ÃÕPï<Ã~â!Ï#:48Êñ”ÈßabûëÖc§h"˜c¸Ã–c(=†',΋ˆøs 5—´Äª$Ñ8ô¨Qv¡[ï½8>"Mi#¥ž±AÆÈLf( §Ð 5ä$d˜X¯@ÔÁ>«Wxh8ÜûªmñTEœ#)ß}–¥·iÈ÷ï«Êj¯ˆl”ˆdߊÅêgð·&"ÿH|¡«Ô•¥O@‘Z•"–`SÙŽ¡8.±ôš‰‰ûúpð±rª¨/ˆêð]`Ͷ^…ásC›ÒxQ„÷L讑F—Dwdô3ì1œœ”ï¯,xÞp=7lé(¨Úª2Š§å!ܪiˈe”Î +$’´æ`‹éá:ü¡K ×·ˆËg4¤Î»-hÈÅhkKH¨vÉÔX&t¢ÞàÀ:eìºØ—îSXÅ3̶ʴϼå¥F[Ó2k/©rV£¡Y‡¼õÁ9¢süóXDm@a–Ζ±’×D}IçuÄ„lÜ%àú\2ò¿{^ŒÆe-{f•h¬`ç –R–ø‚¢©OF¶†]S2—AÊÛb(u ˆ+ÇÑÄÕ—(Õn¥m“I¾ÉFE1ÌÕþó*émÛˆÂ÷üŠ9š€¥p8Ù +$)zê!rp€ –;ˆb»–¥¿¾o›á ™ò%J"qøæ½ï}‹lq ,,tåW$ïæIõ„¶²²žÑ½ ( ù•~UÅ>•N0:‡<3Œ šÁ'ß!ȧ~!Æ)œ'À©Âkù=êV¢å:Ì%þ0æWãóT¬Í×±XÑP–øë^,¿¡Ý3ø& +vx™.•!"ûe12]½™v–#Óé™ÎÎ <{o,ÿ¢~:‰N´Fxˆ Ë3 É!‰?rÃ9y‘Í^´‰‹¡íke8«Œ©¤H•Â8/q°ç—<ö²T»AA‰“MÀ7Ù-%"W„ƒŒ]ðµŸ\Ÿ=v°)]´œ±¥–_ØQ&ûUu´jëåJìòX m­u7%ȵ½áPâå³%HÂëÞ/`ì«æ¢­L€^÷“)á¡BCuªFñ¡Bý»î¥*-(tŸ9‰Ò#è‘L2‡\H¦ñ¹#ô¹ZŽXŸØˆ97(£Y ôÍ¿p‚Ãw@MÑÃ:÷â±~ôìØx¯Ù½û1Rf•ú¶Òq·$¸,ŠYÂfHŽ`³(xwTó¥%Ònvru³nmÓ–hƒ–Hg#µÇŠA"b_Q<Ó‚FN¼ÒEà×3¾³Oº¬ü['nÖDÓCÊÀïêÜ8í'Ç,ÆÄ&ñò’ç/´áM$5\ǘÓðö&CÁWN[Õç†UÍ8‰w >mó$ºâð—ZÈ/ÔžœZ·nÇÅ@óÖ:Š³x›63#“öÉ¡}:äq–ƒÈ—¾ÚÚi{¥[¨2a¨°Pþ€…R½¯Fóm¹‘iÄ—‰m“] S»6„dN!x’¢M>ÚûØÜ›¬×!ƒºêSWßÒdléÐÜLÓ9•ÀgóÀGÉÒ¶¹c';Ðñ×’´"3LìO&ž¼­4߇WÜÉV>>™+"›÷•u©¢&n•£Éâš< RC æbSÁ®m”ÐcFœ|®Õ“h›Ø"¦Úm¿"àÄôGó¾…ì‰ÌP"!Æ4{É„á¾Çc™ù°Ív*$ÒÀÐ QƒÜóî˜Ì2³ÑÕ´ÙŸ™ª¿ÐZÇLÏ¢¦‹Ù©qÈ”MÛ«'•3BïqS=óÝY { øç’_®xJW-•ø¡ª,éæú .·«×o ÚBÈëucüi­Q÷W/^þõ®VWû/ÏôG-uöY"ò%!Æ+SCˆ¨ƒV®…(PI#C ¢ "eÒt}(š®û(ñuŸ´Ì´}ßñk‹wú„X~^óZ¡þP›P±õ”cŒ¢vš ôìQ÷0–†C?ØÃКŽ÷Žj¼‘Pù€%Éhˆ¶nÙãí¤äÓqm—ûÃ/¸âäåqùƒ;Y#Ïx$0ò¦—\ærvyrš‰‡Q¦‘Dš¹­uLM±>d’.o¡nØ3]¢^²Þê0¸XÍ ›n®â3÷U+Gi6Zã©©D)èµ'ì5ÔFÀæ¹áØñ3sÔ¯Ñ4²Gi¡ñÚ9AbC]˜À…,(Õ{¹|¡~r¦ËVc;v°m_±_ë›±=¾å¸Ït­x‹ñ±Á{„µ“¡Z¤)*ã½T—ªê11ìg_>¼±OŸ$}û5®ayOõLOƒa9’yO%½,9w%c¶šç5¼^Þ%†£\ºáˆ@{p{bc˜»8‚7±<ôJ•ø_€6$ÏÌ +endstream +endobj +94 0 obj +<< +/BaseFont /PRPTAT+MyriadPro-Light +/Encoding 274 0 R +/FirstChar 28 +/FontDescriptor 275 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 276 0 R +/Type /Font +/Widths [763 484 484 542 219 0 0 0 0 0 0 0 265 265 0 0 +174 298 174 351 488 488 488 488 488 488 488 0 488 0 174 174 +0 0 0 0 0 585 505 570 647 466 462 624 630 211 0 0 +448 778 638 671 502 671 505 464 465 626 509 820 0 503 0 0 +0 0 0 0 0 454 552 446 544 485 262 544 536 209 214 423 +212 819 536 532 552 542 295 373 309 531 452 722 429 440 403 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 174 0 0 0 500] +>> +endobj +95 0 obj +<< +/Filter /FlateDecode +/Length 4915 +>> +stream +xÚå\Ks㸾ûWðHT…2ñ H¦¶¶Ê;öìN2cOÆNr˜ÍAcËg-É‘ìuœ_Ÿ~€ @½ —rJMÕÈ¢Àfýu÷× HÇ'‹§ûÛñõÓ?_¿ÎŸŸ~ü1ûéôÝÑñÏ—ev·Ì~º:*³‘ÒU62Fg‹»ã÷e&³«ÛÌŽê*+á_=ª2)õH7USêLU£ª²²„Aӣ܊«]}z‚®>Âø»ì_GÇï§ev:?úËÑñåãxÏÿ8žÝeùdVüü“8þôîÃi¦jí”YQ"+ÊQ©ªìê:ã×— …¿—¬›´¤¼ŠicFmU–R¡f_s# +;ÒùHªÊ³Ÿ…™üYFå÷7pµÕù½(Œ‚ 3Q´0ødž=Âux¿€ñÕù5Ý­óûG/¢hò ÝÚäKñ«?uK²mö¦7…ô¦ ie¿áta¹KÉ×e4]eG¦­ÛÆòt?ÀóAÃS×áE—ùQÈr¤òËL MKQÙ‘Í¥¨P´Ìæç8Ë®`\“îŸdÅukòóìDÀ„êç(áYÜÜ¢ò9ˆSù/5¸ðZåß³'iòy&à]¤G¶.+¬Þø„«¨ò% œ ©à£g¡ <ì „€2 e§Î-!áa…”ð +–P +Ï2¯Q!uYÀŒ%êÔÒ`‰= +…H Cá´øéü4Pž/ŽQk Z JR«>¿ªÌo„¬áÓI–jâ*xdÈJÂëÆÖf`È<  Ùò‡lŒæ†å Ã> +øs‚Wh -ÞXs6÷m›v vMoº…FÚ¼‡_¤eyì`©ÍöƒÁŒéBÖRø1ص!è0~¢ j7Á§Îö߬JPè/CÔyÍIåÍP# í€`JnäÆ( w¼’Ë€YCF}*Âê Cvیʶ‘ÒAàMZ¹Å¦i*ЩÆ‚Ö-p; ¯SœTÝMj†ê7à&×¢çƒ" ±0?CÈ0áZÒ--ÜB0²ëaTy¡Ø;ZTžmUz R¨Ô…kB÷5‚p‹Iÿz9~¯\ž)G ¯§ŠS`5Ò•¬Zí2ÍHÔ8a)tžýM Ÿ€, Xjš¿D‹?aÐ „6®3.ÐkªÊmdkLèÓ/}V\k{ ¶ÑFµ­O=Š¼×o!Ðc»ÐZƒf–‚° + Ó€Òc÷k6û ×ny†ÞÁKpÖÈ6Ah%ëUC¦›)N/ûÄ,›Ð‚Ý"l9ÃÒ–À`òß…FÄL†™nøB×Ak´Åš!èÚü&„@\‘gr*‰x”]ªÓ«Ù A‹©áÿo$Çî .«.ÍrLEi“ÿ!5<4e”$ìæ¬N]ªCGˆ%Á˧×8÷|›d`*\ 0|ƒQÑÀMId‹ep +Žº½ŠÖÂåQöc¸ôК`á.àMvÈ€W”n" M?3L‹€‡6gý0 Ô„-K¢XÅ*j磨´Á¢DìùZªõehýVm¶>æK´~ÅÖï¢:qŽÛ£ë„–õß㟘b-³ž‘u¾½`gæE"°SÈ_ +Zýû5Ëà¦å¾Êçâ@@Ä(vÂHÅ!Ñ‘ìD´¨-ÒÊh‘-@3ŠË~Žõ;&…pÑkqr!µÌf1ËSñp‘ÑE +2Gú”1˧hÒѽrø„Œµ5ú<cKRc Ãʦt1™vªƒ½på‚rÇ +^^œ»xNƒc¦Ä%Ôr˜]0sÓDá“…#·ÄŸ»DF<ŒX™—j~½¹VÁü)«ªi¶Ï‹´Z¥1a ª6§!Ù@ ‹â]Mû V:°e—IÙ\\ê«f¯ôã<…{üh¸Ô¾ð)L7Èö ÑzG|Üó ÓN)/dë*ð[æïÙ0«t~Ì·õ$ ó Ø×çu_-DŽÞ³6°Ä`WZÀ¥Hæ‹—Ú$Âê7Ê%ËŒæ±ð¸‹!=é8¨Òµ¢‰t%ðJœª¼&‡—*Ä€äö†j +£õh°MD]ïb‹o;P͇a發Ùöë×'j—^¤<a û{Êž<¸0Ž÷N]&‹#M·kÙ 3…¦÷v—ÑkòaxN»*-Š7Q ù"ˆ„öe2ÜÒ÷]š=PC/iAím½¦ŒÈ4Ô8·Tôqk•´Ä.tÎÎ=wä' ÅwÜ›þžõ¥§#©<Ò' öq7n«. +‘^ÿƒº8ý̦^Ü þÆT¤+¥UýxÅ®†4Ÿq7>aî‹e‰ìiMTWºæß* +µ h–ª‰Xi㢻ٌ˜%)G£{çà(5dœk¸¶EÐEPµk´5=T¾a´Pž2Òœ×pc;îÉw;"Vå°ç:-œ„|ÐHæ œÐ,¨²ãºjw¼¨d ‚©FÏu}Ïq¥ý\‘Ý×ë×aëP5l@½±!ÛÊ] Y²<<¤Åál[kß6èJ¡®dè&¹®­îÈì0çDAw9B¤ê×\TšždáàVÇjºê€êÐÇàteV´jnË1Þê;âe±YåX­³Þê6Ã<¦*HoPs€Ï*ãhðe]™`ÄíѨ©Ab[ø/’jAœ ¥H(¶Ñ‹õC@.ŠmÊþƒŠ8[iˆ>ª— ÷ØHl7À‹õ#¶hkZXÑ@[ܧ‹¤v¼T?b‹®FémRÝ€uRÁjŠ­Æÿþœ9@wwkàYuYŽŒÒJ6Ùõ”v1§8¤B•²Ë£î÷U·ðvëÈ ŸoâIìËWýh7‹2NlÈrñi L'Zôc‚&ºDð@f1mÛÄ+WËÄ¥Xú¿[‹’`)«²J€6MÝÕ‘ÿSm˜´-m¨CU#ZS´]ùÿ®mœÊn&Åé™OejpVÄkx~¡ëz¤j-á!×Óþ C™ý†ûS­ßWkÃ}5 |}V6 ÁJ´ºÔ£–£eÅÏ¿ˆ»§'D,l~éáÙæ\O@‡DLÙNE ¨@U›jUµF‡wØ4ùpNâæâg©öâü O3Tù9QÜ+Yô2Uµ­‡?F¥¬;ee=P6X0[Ë.ì’²¢hH?ÜU:#.lñeóQ!'¾úÀÇbh¬ÍÏO¨«øØF–ª{•¸¬¡¦à + +4-]cï³ vÍGbÙ-è&qõÎÏ?d_çÂä?§.»ëDSæÛÇïµÃ©ØÒÆGkj[ÊÁZþ^«Ì’ÚmÐ…ð‚K hªÁÎÀŠàƤ +n¶„¼Êð>°Q4;3ÜVX5”²GbåÕ¤X9(¢¬Ô\gO³<2ÉÂ{:ï3Znr(édËR…d=âAðF /ׄ·zx'>çtÿ½ÀÓG³kQÓ9Ö5Ï7ÂR¡IŸÜÑ°׶¢ò~LΣÛh™Ï¸Â]ÒÀ%Ám!Ë Æ~¹H¢ñðÖ+úi›g,dvCwÝMhš³~] %®ò‚Kž… יЩ)"Ó*|x"2Û0(u¤ã 1’ØV×e7%:4Щ€ (€œúá’ÛÑ÷Ýr…öaéIPé?ÁhaòSÁI{Ư'µXÆTª<¼v±6HnêRȉ‘<)JFû918êv' +Nub(ñv91÷Âñe— GJP¸Ç6Ù·ò©º ¦Iw4‘OAñùÆŠšxºëpO£Ì3Úê F +¾»ÎùsE]bÚ¢ <1¥7S|h £OO|cª‰ÍL¬ FÀ"4roWÛM<œnb»ÓÄŒ©ñÓ·%;ÖdM[;œo†áÖà~%¥PlÊ4ì©nocâYF¹­F÷}u"ФË%˜ŽfÖøÖzi0ê3aK(ÑÎõ쌔"ÕþžÜl7ó@nº•ÛDG¶ É8Tâ+pl¿Jô«Â²M±Q3Yð–t!:gì?Gϳ߹ÑØi |ryÉ–‘Ü,ª¸‘ëNn¬ k£€Iˆؾ…¬Îç£éµÒ&˜‹[ÊÅô·MÐ?]Ñ1¹¢¢û\K •ø5šwVyʱ +Lø”ÏŸ™Á:]ƒAw|?ŽÅ½2l£áçÈOhâ7´Y@Y~È%ßfû~ˆ;s0Wb9óg&Hß­(ˆù.y:®i7G¢dh"2ÿµÔÍîÚqšÓÓ/$ôqÁ¿s¾C:—®©A‡ÖêèQDl°ï“ÿ*Râ@Yºjl@Böñm¹=K¯Nvn¹;K;«K³Ó»c5¾B%†û ÷|¬þŽ‹F‚?änônÑ#¾GÏbzUº8M„Œšº w6ÚrÄ̸“É®©M;4‰=PN®jõFÚ%·çäÁé=dNŽÕø +U>í9<±!|&/ˆ +ßpv%zÕ’+×]"]¸Ƙ:OLÇî)PÍxøßüÈïT¤Í]JïöféH-FXHïU—ºm2Ù–ÊÐö§ÞÄÄäö½"8Ýêí!­©ñ5?e°9íCNÙÀc"N&&NdÑ'>Ÿ8á-)_\Râ§1†¶TÉÒƒ0Ä— Ã\Îï„I›9Cß=¢ðÃ^ExsÇPšpˆéY£¿ˆ°TÆ¥EMç‘;”È,¡Æw(·œˆCØûJÎ ª<ô°íür¨ävä ä&O©ÀÓxz7ðB-¾æWXÑå÷SwàlÂðÏfÜÏ(îWþœhZ DG-<ßÁÛÝ£­pùöºýýŒ¨Ô ‘‹Ï¼ yθ¹ÛIV¬‘Y×, u°kuS£•B¶ê‰Ÿ?ó_ø {lš,Rª:l#¾ f\ç?žá„+¸^(ÌÂWè©Š¾bQr‹•Æ§zÇZ™ÑúìåÛ;™C¹éÞÑ2,Çäâ8±ÚŒ +fxë*\—¥¿u±]rµ`™|ãÀ›ý~¢¹Û™;¤õ:×Z—Ûí=œlp-iðH Ü;¨÷!F>Þ7žwÌj«q×q²k®œ€)çSÊ•=ì䬟ÞÿÔê0P0mƒÇÞPYi½ ++‚Ó¡`…X t~¤MD±–z mHÍû¦ØœüY˜)ÞöÁ¨ðJKi:Ê8ûm…š˜ +'JÚ®.h+´ÆŒƒ[6v§Ã? "ipC Û˜•“S¯¶»R/îNH*b½Rs¯®#ºá÷6Õ–½Mcaლë}Ÿò„÷zÎ%ØüîXMí3˜ûÙ§3ÞÀ:´V©¾×È÷¢¥ÙË÷Úí¾7œì{¦<¤ï ‰ÇT ßıñÙ¹à¦êv]$~q•ÑŠ3×\Máãé;+ð4n¡¸wú½4(˜5¸ pÕêMý³½Áµ"8 +úPˆÔÀ +¥j;KrÔe£i×Ê ì‰=á†U ¡´i7™ÌmkÌÑäšv©öB‰f”Œöà HE˺g¦2#Íbµ7Z¶wÏV§£Å¦ž<(w·Cc5 fÄc½rÍξÛ××~_¿h¨7"[:›@Çýï&©Ö9P—Ë`'±Þîmí]®ÁéÖiiH ëèJSêdNé ïÌào.Úu‡Bö6VDªrKq¾‹*)ðຟÀ)UÝT…×t"«ÀQ..é\ûÉÇD U‡Ê‘Šû`¨Ú‘†‚“1TéCbh`‚T¿éö¡vÿânŒ§[ï ñ9RãÍ`£1íAŒy p®[(“ÞT!WÛÃùŠàtcrÓ"Vc35CúdòÛ`_ŠÁÀ±®'üjÔœéÐl]S­cL~À(‘¼{áYÝw.À{öG $úfM ì¶t#»óË{ÂnßKXœ «èݱ”yߘcóÐ3á£ßÁ|üs­ÃÎoýñ̆ŨÇ3·™ò¯—~¾zå«áåƼ¯G¦1 ¬o­šQ]ÕMm:¤›†z†¡Ÿ¨¡ƒ›éWñÎ2ÜŒ ¾kó?ÒÆÄ'×J¡ 5í±‡ž}Æ•_øŒÉ‰Û»tS;s¿-v™]¸5y¿`†äâׂ9ËNé¯n Æ5²Vì }CWåÁãiÐ'ºÞÐZ:UNôå*{G'd/Ã>»Ÿöc5hÏ…vùvÛßÞ xŸbš~#_¿à\kT©vЮ‚‡=¿Ðþ£‰4D·í5 Ìû_ï¤ +endstream +endobj +96 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +97 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +98 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +99 0 obj +<< +/BaseFont /RVGCRP+MyriadPro-Bold +/Encoding 277 0 R +/FirstChar 27 +/FontDescriptor 278 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 279 0 R +/Type /Font +/Widths [899 314 314 588 322 202 0 0 0 0 0 0 0 314 314 0 +0 260 322 260 331 0 555 555 555 555 555 555 555 555 0 260 +0 0 0 0 0 0 656 604 595 696 534 527 682 689 285 0 +614 511 846 690 717 581 717 593 540 548 682 636 888 613 603 0 +0 0 0 0 0 0 528 598 451 596 528 341 585 586 274 291 +542 275 860 586 577 598 0 380 434 367 583 530 759 519 523] +>> +endobj +100 0 obj +<< +/BaseFont /PUJOAT+Wingdings-Regular +/DescendantFonts 280 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 281 0 R +/Type /Font +>> +endobj +101 0 obj +<< +/Filter /FlateDecode +/Length 5405 +>> +stream +H‰¼WÛnÇ}çWôã6 YNwO÷Ì †ITrœXÌC/KŠµKïRr”¯O]ú:—ÕP1Cæì\º««NsêôùþñîæâêQ|÷ÝéOâôÍŗݧGñý÷/Î^Š“ç'µ¨×ÚXøÓ±¿=9}ý¶·‡“Ósõ¯Z(q~sâÖ-¼ÿµk+š¾]w®qBÛµµ^øx²jåù/'¯ÎO^ý«þ +‹Þ¿ó7§üX‹³ÝÉ_ONß>\l1†7Û[±Úl«×/äé/8Æ5e<·ý€¨ˆâ@êu­q~%*¸ªáê7¡êuÇŸhÑÙumúF´ºƒÇm¡ýcÕH¥Äj-+ѯ´„Vâ/²Ã_¯d…߯~’U·†·ð¶«7’Ÿ)‹7ßÕ¦••iÅꥬýW°ÛêÏçðÞþ~ÖkïŸÉžÿ)fãèÉmvr<§æsÒñÔ_Ìœ³†øà*œÓ`pP­ø¤•Yk¼á°n+€“ÿM¶ë^¬¶W¼½Û^Kº¸“ÿý ö¹”ºã<þ­ DÔòƒ—ûDÙRô=ãK\ÐŽ„1L×µXµ6ç<¦µIhµr„Ö†òo:1U]Óï%‡‘¥Ìaš±ÐÔ¿ñ·öGxÜí°|p蛘ç;†B@#‡ËÖÑÁ©åž‰XH^ò;2$­E}M8#>‰ÐV¸å(®RùI¸xŠntþ‹â|ñ<–6IËÓº"­C¹ÐøOzå›rj¶Xã)þλ—òô‡ fãZjJ³Ô•L9ƒRáÿ ‰ÇÎ{Öº ksj]Gˆ á>u& øër”Q_n&ò"¾…®81vȉ#:dDEʶ÷]r+Y†¨h>€›¸Bƒg6¸Ð%òB¾‹Ç\¥HGÿãøzSèa?VM\ƒ±Q·´^7¦²:·Íê5‰ª‰õÚŒ½"ðÞ­¤%ë=b½zÆú c¤•3|Ö¸uÁö¦²GÇgl𯩃Ÿ‚“¼Vš†M ñƒÆŠÁƒ: æKŠýâ6ŠÝh‚ð†1Ô|nËàKÓ•RhKIÌ°Þóì"Þ2ù·Þàñ>á¡w¹ÆU¶pVœ© U(ÛÉ/:²¸;ß{±á9g3¹Å÷AµøRBYZŽã3u°+Ä>‚¹È¢·é8¢º”ÄÒ°~µ' úrPÙTµ™¨OA§9M’ùZ—aƒ\6Tdò!,›ÊBÀõ„ÅU”ǵxRw|*îEF½/OÏhVŠÓr²ó…»YdŽðïÐñõÞWГé.馻$l‹÷<)vœDÏ^sLŠ}z/2:ŒãÓÃQi¤ +¦8ÐQî_!W@¨¶Ý „зFž0Žh{gÇR–ÿaåc „©0‚_ŸjŸ³ I]Z‹¤ÃjEŸÝ…Ù5n6r.Xžmu.XXEbàßˤ4¤#?Cžõn¦ÒXTê$¦dbˆ^)¶<ôó†1Áöwu)¯í 5]ŸÙþQ*Æ…IýíMqª=Ï/¹øPµoø…dnEƒÌí ¡™CœÜôÙ”a™.>ÑWËôå&èk ‚ãäãØA‡“|[°ÏQïÙù)Â9NöSIŠ8Øú† î¸.ËdJ93f?Ë 5š*Œ¢ ‘­ýèØ©õ³Ë°%ÉünÌÃÁwkò´Tà8cn< ~‘hd(ë->¿ôpDI¤€¬÷Á=ö>Þc¸Ê‘Ä9ø°°sP˜à×GKĤy~™K•ú^&ÛÍSf24ž“0ƒ fðˆ¶m$=HäÊÓÎÝ2y_Ž£¦Ä‘S;£3ß=²ŽU‹ûæT8A¾{µÙ“I•¬ f€ÚSÝÜ`*óñ3í˜Iä ícÛ?*†>›ž„y©¸á¾TWßäI¾²žÐ,@*'f|xË~ݬydÀóÍ[6šM“è¨wê¬Éf +PÑ—L‘Ÿ¼ØSÖÜäÀ´ƒ.'3„_]²™­!ûF›w+!ÏY¶~; æD·6Ùh0fz*¥ÂY}q>ÐÄ7œ‹è«Kȱ ÜÓqD…pQ)ÚY(’õ,Lšllý œ^²OM¡  Erˆ¾·…\ï}WDªò¡Ódk$ð׿¿y ¬Ýü/æq9l»u=+ÓõÙ0@ªÐ,T…R¨f4!–6×[jƒMÚÏܪ4z-Ú›T“0ŽÉ.Xá†É1·@aóI»#_ÌMÚ®/¥a\…éÔ“Ã?DèÑ;fï›ÿò^-½qÛ@ø¯èXYW¤$J:)äPhœ[b“ì:Û$¶»Žãº¿¾ó"9¤¨µœ´=ym¯¨áÌ7߃ŸÞxæ n|:¯>û§ ‡°=¹‘õE°a$O€Ã”Á4­ ‡¡WÞþ¦n’åWgcXÞýîÙ×\úÊ9DQt)Ý +Òüu¶W'w³ +,©’‡õ˜úƒ°«ÃǺio%@r_7U&ÒJÝŸƒCl9ef'5I?m/ßBõ â첩&\6*÷œâØa¡Œ°Dj&‚ °c1{@s\\Ž«a45©juÓxÖ¸É&‚n¯ÔÁɤ¡ÁM uF…M•=ÍyÀ´HæÆñæÌx5·«sm¶Ý·g³¼Ö¤vïD;פª{Ïíëä­f¦ƒˆ~vlñ)`þHÊͺܰÿ³´d1?.Th•¸:áPEʽObK4ý–X8嬼ÑL„̺E¥±¤qô/¯‡§†@^Jq /èÖøCJÝ ‚ÂÑ»¤Ï<Ðvb_Zƒê½¡›^ eÐ^kÒo6Wxܨº¦#áÃ% béòa“ÞqÜâ@;Jk›Kçéc,‡Ü^ì_§ðo3äòþÄ?ô¬˜·meŽvÂlu9áÀ'nפUùñÂün*=9?›ÆJŽ“gãt¨dpO§ƒÊñåÈãð¯ùB}õ[Ó:(ª}çå çv'I6=HÜïðEL,\±gHÀvëïÖ%w»højÜj(ÎŽ°²=0x­ íåA­¶oÖÐkZèÏËÕÛÛÓ’ËÌi€¬t-ey5î“êðK¯PW]tN•ÒQÓ!MÄOzIŒØÉ9súå¿¥Û»4fxwÞ\$D“Í oe©ÈÇü²wls¯¥†ÄÕrHºÃÝÇâŠÉ¦—d3¤bŒ>“óÉ?󈽥±Ê’ðÍoŸ@~ý²0ô е€¾A*­†”u€M’ð±a“/Œ,|}W€ÈêE#SF¯‘þe +SÅÂÄHþÅR¸þÀ $˜SžÚŠœ"©Uåeœ4É8+Öq¢uÜÈY3¿ï¢ÜmPáê03¸ë"ÔbΩ‰ ÷’ÙBŸŸ*'—š´¶]€šƒu P{‹©Ê´…•Ç[¬9£­.ߊš­Š£N‘ò}Ð.wæY,éèƒ,UÍ<Z-ÿœ{T©ÞT!pÓÅùµBA±ŠS³-H<«Ž>8…¹S)_¥~uCÏö[)œü&Q'¯_h˜Ä©yøâÿð!¡NaÉ£dÒNñæjˆ +"‚ÆÇ"˜¢ÚVF_£ +è;èo³…¦~á´‚U÷í#Ò‚„œ™œô]iaË.×Í]n.' ê,Ê·Bï¢v2ÐxãõÝc¥ÁS Á;æet™UDd€ £Å/c ÈÏøÁAíoH/‹b3KdØ;¤©jÏxŽzÉ)Ñ=Ϧ² ùl +h +ì©>3¡•h¦lb¦¨8äêxºevŸæÑéBsz}ñoáËb·°C\è0f"ÊôNqË¢f…-yÄ%*ÖÜV©ÓŒ¸ ì§&eFŸP¯Â•ªànž­e×4ß•6̆À £$iÃÐzç(üt?Ùè‡ë«-»:è.ø{õž? eð¼ñW"› )=ä×ìg[HÍj «[aN†“q!˜\ÅÔ·Ü‚s€·(Ýɸłê%§Ók!SàÇ(¯.ÂïÅZ;DÆòÕh…LØ©¯|ÞaÚZ´¨ßY.[`´s¦^ág„JV£Ñ­A£ÌÐ8¤úÜ›8“ I—']þ¼/[B Lb/Ú×Nh)¨WÔËéå}õºfÍÃF' iÙýçû[Sw8è)™`Hâ)¥CW4ya¡š¬ÌIÄlœË¤Z aå +hÊŽSöhñ’bxuoÊ¬í¢¸ˆêpáTy'‘q‘»”EŽþ™Œv°}ÞÔb¶3̬Ë›i‘M´(u±ãi».™ü?.Ör±kaâq™T(Z¯’p@8ìF‡Nå“(Äœ +°­~xVÑÍFg¾L³¼[¶ï—¼©Ì)ìì>'Ï_[uÛa=é~³â‰³·T€~` +,¤è‘Û{Í <Þ3s«Ð+ix…ûŸ~B€vø³¥J~%¾|½†ZϨÚäáQ&T?¯íæÊ)Üûå¼O?×~þ"ä ‡Žø؆(ÿUÍ&ø…°ÜYJiÿ0NzZ +endstream +endobj +102 0 obj +<< +/Filter /FlateDecode +/Length 5826 +>> +stream +H‰¬W]o¹}÷¯à£Dã!9$g€ÅÉz›n‘tÓØEºE¡øCq“ØŽd¯ëßûArÈ™‘4ö‹¬‡¼¼÷ÜsÏ9~½¹¿¾Zß‹~8þU¿[=Ý>Ü‹|sò“8zsvT‹ºÒÆ¿McÄf}tüö´ëíÑñ™úw-”8»:r•‡🯬PÊT¦µ­Ð¶²ÖÁ‚oG‹Vžýçèç³£ŸßîßaÓ5üöîøOßjqr{ô·£ãÓ»Õ Æðnu³‹Ë›åÛ7òøýO¿œˆFé2Ç~Á@r⨫Ï{„x•ê£ñº­º®sÎ?§ž+±¸—K]WN,6²©´X܇‹©èéZÜÈ¥­¼X¬¤vøKzáZªnÛ¿ë®[*…;·Rüéu¸ôFºªƒ»IGm`'Üy Oáã3nLÛvU#wâ^£“¶ô',ù&|½ƒž çxÚFiÜ"ëð8Œ åã´Âóî!t±x…»h{Óí`‹s¹l)T©›ª‹©„Ø-çžpõb7T3ºÕeÀÑ6+€ Vçjñc‰'u´d©¡û$ÈeÃá|1é…Sf0Ê{‚ž*`;¬),Áï°gƒß+ñkÜa‘–üÏ·“:€cº(E¯4zŽ’º_Ó+KjÀjhÊÞÉ"€øpñVòorú®Õ <†ú¬Ð&›³¦ÀYÝé]8«!Ö®³Œ³{ÄR]èQÆòƒ·í°>×ÑDbè×AãO]‡hX!°Zz…@‘g‡÷$ðM—#N$à"öƒbôœX¦-»uн$N» ,a™%Zd‰Ki1´«@9WðÜ·w*PÔ#¿KÚÊ4ÈmÈ+žx…’uÎÛŸs¯Ž¯ ˆ˜¯˜rÎ sm±Ý’™2VâXÅ)ì1øßãÇ'©µ*Å=‡-ó¹yÜ—05ðìƒ ×óê ´Å(¤káàD|YÃÇÁ•º óÃ7L¯*H°ä¾•¢«ÌÃ\Æ•s$L1qšBÚ¢Ä6ebs8nÒ¸lŠ#¼1qOOSÓâü»,Ǩ’«h‹º8áH>v +¥_géoLå¬Qœþ’ÇcnáÓÁµÄBœ"iã¼¹’uè¢Æk>ñªÕÍÿ±¥ +PCP +ט¬$Ì^§×f_ÑWLú‹/§Ô.æ +jÐÕþ,mÄK †€¸¯\é‰Ió˜Ú_ó° Ë¤Qäre¹ß¹_‰©ù¬ >xHA®‡ºo4.™mþKÒn­ð(³Rýôn—¹\"œ³¸¸ÚôSâ‘zÁQ^Ÿóñ€Û¯1›(0E"#a=‡6LU‰ó{bÁ~0…Q´ø‹¤s+qÆÐIªo>„ÚR†A3ïÀ üÑ&ÌäQÙÖõsº%Lë¦Ïd6o.ùîmTïÕæ^eŸ+÷>\Dzl“Xd ͵be‘j†}8ávTÛ"ß5¶-üÛ4FlÖGÇoOk±ÞX£¸¬5ô\Û®•¦ã“?ÀìÀˆ›¡ ùÕT‚›8QIòO æè†q™.“ìÝ.ÃœÝâb.SŸëØÇ;öõ¸ï²½Ä>‚sìsq¸‡ÆYÞòWåÒÙ´!K2š5•åzÞG9~ß„j,• úˆ’pËôuÃm;¿F®¬VB|Áâ(,(…Fí蔦SÐ)>Té—µf +Ç?ö>$©ÐMà½B.s¹ +‹i‚ +Ûç`0?3 ÀPƶ˜ó±/™ËIè—ˆåsè0Í•Ê‚,ÇRÅ ÀžìVâ$è‡;bñ,Sæ&nÕâÇš%C/:†#=Fih ÍÇ‹ÏðØ­! ;àá± YZLAüIë2Ï>PŸÚÀp¬Ü4?&½²E îóêNÇRM[æ7x;`Ã%•õ»$Ì¥0¢g¸Äúk39¯*X’á%–Äi®9+·‹Ð;À§&eì|§æ§%é>ÙË%ÆLvª^K}Ø HB¿fþøe¨¶ýP£Ïc»Çå`—(ë +.–³]NWÈѺÛÉ‚J“Á<ÒÁ!Ñ”Ø@µ½“éEzÏ€#m6%ð¹‰xÈÄÓïËX¬ÉùêÝijG—Ùˆþ^)7 ŠävÓ>6=§OÏâh@%nïqÍÎf€Ÿ~mÊGã#¸#&’0h§ R§É™ÔtQFÒ÷4S¨ ¸'«ÿp„Á@>aw‰ÒÚAj ”n"q Sš³HlVžÁÇ0J>…´¨ ´têÔÈ‹éBДf3¦/ðlÛì'œ˜ØLëwiI”MPF‘Ûó9e¹’²Üdƒøõ.To=Cõœ›§gtSW:£üMOX¿-P{ÂâÓ_¥¦½>àÜ!ÁíàñoRZ‚Í« Ï“¡Ø„ µ/Aq3Ïí1å™ +5‡Y3DÍgV£KfU;k l °“³ï ð +ò.ï¹þF¦ÊH‚öf2ö¡4‚s”°tê +;ŸDXÏçéd¾Bñù‡ 4dåªÄ+=‡gÑöÒIPòbJk…Æ£†ú„Σ£ ü¹`r!N‡bé5fÄõƒn +›#3¬fX34=¬M¶õF!õÄô?ˆIL°}¹M$˜ôØ–Ùæ3à†à¡?ħK+šR_Ìhf@û"uŠu¯@BÀLёÂƒë)’Ú˜^ â¸a:rü‡Á&OÒ‡ |D‰Ï5v0 k0,ç(?[ðC6ÖÕ4]¥衦¶™y9cnÞG¬X Ïs‡íÔ«™›I〙 1_|e ßž!.\IÕu;Îö—ƒï¦S™£4ßØOaÂ|à4¤¨ •F‹¤Wd©á¨Ëgí¨ÁrJ$¶'¡©NpÞCV?ŽõÑ"i=®aìÆT<Ü´P±4B;=#¯¾Ì«éöäÕûL¶†ÍsEÒGl4­Ü|™ +L> +û/4ä.BÊ­LŠM.U–¨‘2gC®‡Í`ð\±ÒµÙ“jg2ÁñHIqC™ÿU|NY3„b5W²šèG1«eÇ4ÀNªB$·ðy”ÅO’|]FÔÔß%½âD'IY0ÁÁ& +lK4j‘FŸ™ÍnÜ +MÙ.íGã‰\ 2$í¡ÌÑ u»-㈠B\J‹Ÿ#mƒM‹û¾½ÊöŒg8›^"/r3thG³V°ŒPò}7ððzá¿${3?ÇM]äXuvOŽá*ý˜ê-È'e®ß†£ÑÜO ‘®5òTš0™ˆT¾Ï“œGƒ,<ä`u³Ó4p(0ÒGyBñg»¶-ò4_ü5z‡thü>ÜcFSMÖ1Q:˜%c;‘Ûü0ÔýŽqkû?Ϋ¥7Ž ßý+ú¸ DÊl²»÷¶@Aì"°½7 ½f¬¬,+#+‰þýÖ‹d‘ìõäbY­~«¾úƒ¬ ±Söo¨l O× 2„óu«Ò†—óAîªÖ‚ÕXïè.( ld‰:3¶‹mXæK–±ØJCÁåÐe>êþ×;î+÷ñµûô·Þ;ìu*Š"1ýOØÕ¹«‹¡—Á:×[úäeïéÓû [´Ë”ï`Yh»¹‹Ã9; ºxÆ,ÛgüŸo¥4å";[%¥Íd„zCt7Ù¢ý‚¤;ËpW¨zu¸=…Ž¿ÃKHô—ñÜð¯-úÓ¬ùúÜ»=o1ó§ñÂ+/¢I⩪€¸`ÍU„i'¢fçÿ¼À»À¦†—Ñž¸áå™=“`_\ÕŸš5Ff w"ñ¢#1x[ “}êûÀ¹d5æ •ì M¢ —»à:;NÊ„üÔ;Çz®g{ò€y;s¤HD#®ù[O6ë+›¶fŽ˜ô\|y´8† ÉõÙ4,æÃôOÖÇ&ÐEN>¥¹ÙçÀ×&±£ä);\ÃÈÄåÒi¸È{eˆ ³± 2`FH>± &5Cû«dñÿ [^±l‹»a©õ -ÐAJЙ 5Š›±2–XÑA^ŒDÎàÅ2WìÀì—LL‹™-Ú²»]ÚèÞ¤­— qI’ºâDªU³a…WlÄGihž‡¶ôÙ˜_â +¤fŽ;ÅÙ)¢ˆ‰˜tñQÖ!/P„\yŠ1Éž"§vÁ3U%Ö1yÝ:tÞÚc4SÇ!Û}ÛŽÁ22™Ý°ÈKÙ7Þd§N4™w6EÈ™ÏZ­)¥R‹©JuUW¼¶I²ü,B1!výŽuK–¸§Næ-'6zˆdA¹aÀ¯91¼%WÇ&ëR®¿GýœË`$Ø–+ÇY‹Àêé5M¦“×î/q€hE…+ÜeÎ8H´ Ë€œcSãb‘S‰f"²”ž¸úxüа +øýßò»–‰„窾*µmF¥¯B&DT:¯¼wQ’/µBÍ© |aú†‹X‰Ñ$žòëhÛË–n£ÃiQ· ð€ÁŸå¶š„ä{×w]&kKO¦%¨a#g©ií(èÀJbò£:{ÎlAx]î!‘Œë;šíCZÚedQD +!"ŒHÛAeJMè 9´ËŘ9¤ã–AÌTAÌ•>™‚mŒC§Ìp&t›ŽN5ôC‘Åh÷&ܽ)ÿá—ÜÐ\°ªBø{ÜÆ)cYªÇ’§ ’¥=(ÑóŠúk„_pºhò–ƒ‹taô†,•$‡ÿPÄ·©½¼1ž3†jðvÙJ/§5íFeíóéQM)t²®çŽ‡5.k-ô#yDnyDáÔˆ +ùÔ#òÕˆ&"+§Ã’Ju`È ¥™ôå \ A˜£zø5õ³v§©írÑ´Í9æ†%v@t–=žÒô(¥F®UóÂüLÚfó³`}¶cÌUDµ†13[eÞ³ "6%Ï”'Šb<²°ÁK†ƒO²pëŸí:ÚRŒò«^¸£‰dL9™V»ì¾[¶)ÌIZ ¥«ŽpöÚØê‚=[îÀgdªÿÖ“'_ˆ™Ç<Ù«®êZ<ˆrZ›!3(È\`àÇtÓÉ–ÁÁ2zôÛ(j¸#÷õÂÒñXº^{êH£ßïùFšœßaµÀŽ]ôöª½:Œ¥ïLU1|q'f…áæ<>n‡‡ªÐ?NNeHZѼ܉[¿·8MW¥·èÀ¾ÅÆ~‹Û=±LŽ3òb´Ì›J&\sl ˜ÛcLQ¤ò‰¦_{YÔ,‘Å‘+„'OyAe;˜Ä Ûý‚8µ:¢ÆçG»Ö“Ëô¬`ô¾c2•‹ø˜§höJËVÔöôìeO¼d¥ne’>rlLS^±2íÒx&¶._ û®­e *?±)cE€ÃHXÆ.È( .éX9cÈÒ,¸ÙµdfÙ“©5ˆÙMZÑe‡ vßJ&Zs¿Wƒ·ø^µå’Yz"¥Ö“s… ·Ê"¨oiD9^P©C`1ÿ³Ît4‡‰Jêe>¶b#V]ƒ—3-Z9œe÷0®pë›îvg;Ò¦2ÀwÖ†oW[ ´,—ëKrUk“ˆ@ÄË‘É4ÊvßuY€2ëM¾)ˆÛÎFE|ÊŸ4oÛ©±•¸Üåwð¦b_H›"$ZÉøÒÂý©gÞ=ÆÃnûwjÚÂ;¯rËf<â*”=n™$©¶À©SçÜ „¹t/<,£· `°MÝôö°«‰ŽÎœ¤ÎlêžyV¼evææÒ&ç:Š‡ÍǦ6mJ=Èâ0ÚªŽ®ß‰9¢ì·—ß[Õãëz½¡¶½PÂîçñ.€y“gë…4#f?N;™(þ!Ñ+½þZ²döóÖ‰XQõ ´†¢Á£\xF +–BAòçµ=3+;9¤Pjuœ=ÑÈ …¨âXKC5ë¤È Ç5ɸàÏ”·]É>>Åõlú»Q¶tyv^±y³S`ϲx››ÜJìÄié•à@pû*¨Oâ°£g,Ù*6 + [ òÿQs±*ͦQæ¢F-}(ƒÈ 8Ou(£Õêšrd&Õƒœ  ê?XR=蹘,ÂÑ9 ì”üÆyö\²É6ˆ[êç :Þ±6Òõê‘^@š—×eyv”._ÏÀŒkÈ·ÅË8«Tp]ž*:4Á0µ)ë !JØ®:þìð‰+ñ®iOy~ÌJžqÂèpVÛâÆàœ zâèÓä÷‚…¬üíÃ÷qFˆ;Qçå¡hœÁ¸1„cy†{ÛXÒ‹DåMŒ)¢îƒ®IÙlêvÀ/Üò¢Ê¦¤5•ÀF²ñÚÏÄ«§SÁíÝÅÿL( +”`Hôðï0¸îxx÷ývÝáùÝ÷ÍA²ºûw´ö£ÐI?úÎMÓån!iÁ1ŒÜÛÛžéþ»@‹B¤z…—>ßD뙆øò—˜Qù24س½éY¨q÷Óvå q7§ËòõæñTE‡wZRO;±¢Ø‘¡ +Ï8{Ít”O;ç +#—Aò[&bâ¹Ðû\ÀÝCðj‹ PXjp¬»-¯9-Þ0ÏŒLŽ¼>w,©‡òã=`kæCEá#N>¤y>` +FômÄåŽ7<ÂÛ BV†gëKïãrT™–wNF…ÉÐŽ=œÑÑ°ÖѾơh)دuÏY¾w|kRèVáV ÀݼÁóÌňªŽm Â3/á-¾«K]Ãù8}3ŠÜ°×ù«Û½¸}`\rÿ{c§-üï½™'i¢]Ôª8ü§Þ³¤oÜOL€|Œ3¦5½ÕUL +©«ÏÒÔ›j»†6|ÃLÜm¸ú›Ôù’fPÁB—ˆÐå—‘í¸ìºòÿ`òX“ +endstream +endobj +103 0 obj +<< +/Filter /FlateDecode +/Length 5947 +>> +stream +H‰¬WioÇýÎ_Ñ·ípº{¦g0 H¦c(ÄÚ|ŠƒÇ.E‰—y„æ¿O]}ÍA.ƒÀ°vwØÝSýêÕ«W‡ïï.vǧê‡ÿ®??ß<>¨üpô“:ø°9¨U]Y׿MãÔÝùÁá/Ÿku~p¸1¿×ʨÍîÀW,€ÿºªUÍÐU½o¼²mÕ¶\¬½ùvðóæàç_áÔ?àÐsøóéð/Wµ:º9øÇÁáçÛãkŒáÓñõ¹Zm¯×¿|Ї¿þôñH5~(ãQøÚïˆ d]WumÕæTÉ—'eêªç-VõmU»¡QíáÏÝ€¡ýkÕjXÓªU¥ýP9µ2zmÕJ}Ôk[W×»›;ípÁ•<9ÖMÕ¨Õƒ^ÃÅÕêâæšwœê÷ßÀ¯Ê«Õ¥6•Å5}nõºÅݧð»ÅãòýÿÞü5Âó]Aq¸ÙHj¼2^Þ9º³á›tcc+7ÔžoŒWó•»Á—¡ m= 1YãB¯k¾ëÚ\z©n5ÀF÷‚?uü§×âõ;¼9~©i¯µˆÐ5" ;ÎÕ½¦«~Õ†¼ÑÕ#ÐàÏKÛÎÔÉVÀ +:šÖß#f†°³Þ™ºìñMêàÎBT«»-ÀkvD:\ÁZwttGÊ3žÐãéMÏy¢X %y‹!J—Ç;dÈð­S$ <à,áw9ˆÚæYÓå ápñ—{ºâ¦èˆyÌÏVÅ3î8Î+Œ³Ë¡ÙŸD&#²Æ4ó¬ñàY³Ã7ròèÍXPéM—ÐÓ~|Né´-0Â5où¶áŒ= 7HŒ3ÌZÐòÄ *³ü2F[JÕ»Ñ!]~ˆ¡Wkzœ¢Üê?ÏµÏ Ôàž yŠöXŒkŸU¢-ÝñÏ‚" Þð,¢Þ !cžµk0ÐX²îI;Ãïl‚¦µÇëÒ‹F,ôcºeîO$› sU·ÃzW CÝ2 å$„»–Ÿ!ƶ†ö1”%ä8¹¸§¡:l©ëYOšyE&‡¤hM†ä^>³>U†‰¥JZã’w,)º#ßEJeÉáDÏs¡¹f)Ä®;…m :8²ä «w)…ÌÝDF&ÎQZÄaäU渄#†s»d1{ÈØC²×MÃüþδ%gj³À™ÆdNù³fшžqd¤Û\tR[èdN2’®e%ú=ÃÅ]¦k…sË›dVE¾Ãin9ÑMa­“`P*Vhæϳ³$%i +pôù¤‡qTê³ca«/¤ýïÞ8ÓWèHj¦œ“/.Üù2+bŸa_LC|ƒuxäãþìòňZ0«]ûÁÔZ­õæÛ~Gw%qí’Y-Hf=MXTíÁâ(ÔÍB#ƒ;òe\vIæGn:E7êI¶ôºË^p.=ïðüqCŽ RÉôËÉÓDc§ -æ¶.é–·ÑÄ!bî™6ŸÆ÷V8ˆ ÕTb­#Nq¿eÅm¹éÏ +S£›Â—ÖpJE×jŽÝº”ã¬õeåg‰¡¿ˆˆïÏã~™Çm 9ë +¦­ÔÞ<ÆS'(ð©’/³Œ66î‚eeÐòÒ€¢²|‰oØ—xˆ+ä‚»‘ñ¬¥l^ŸÓ7Αxá#VotVÆ ÌX+–o„ÙS5¹oDî€β¹ªE€âuâ"ò¾ Þ´wrú:Cðpc~· +Û1˜>€é ÌB#8m„œPU÷^¢ÕÔO*Ýv†Ñ ÕGú½F“ª>Ê-¯Ò­:âCÀ0#YqW¹èL΀¿:â:ÿ˳ŃÛì±c X¢ð•©¥÷ò!û£d +”65ƒT#>„Ô<ÙÚøäÇè¼ç)ÆåSLÞJÛÒÅyƒ½SèÌI +ÿž&‡uU`AÝ f]ݳ\%Ã4¿ábà–K†Ä$s_XqbôC +IM ß"ͧiímðÃÑè6åDD]ôg“\¿rå(#ZV Gpé À¢ ÄBC“æ¦ÊžûWFÖ7°Êî×…[%i4™L¹ÜÕç`ýXÊQ¬#jå°å³b±pÚ¢D´ÕhOZlTʽì# ªÉ¬ª´×·ÖƒùQw¯˜“®¬Â9s"Uµ«¾hÝPIUô†Ýú× ìèdöæžuÎfaÞmNSÈWÈÌŒGš“™ñû 3~^fx8"I=’{~Ä“Œ&R´ay¨+ì47Ñ´;ÆM"æÝk¹sôìò9!¼Í| ”¶f·åÅRÉÉqv•çbÏ0Ë>O²ÉÄ”ÃhBG¤É±€µÏÕ;ŸËbÁóœû¬2¼›ÓàÍÉ|¹0NŽå¨×Œ©ç¨÷9õƨ²þ•,*%ÍŽ*K]Læä¶/‰}ƒÆÍľW)¼­"rbP¥Èü~L{YÊâŽË$5PÿZ3ì^m†§!ÒXnR?wÓ2]*+황–0?•¹`Ù³Ý;UJ=<ók2Ód;Ng;s4Ë{°b…êF7LRôžü®Y%æ,ÒôU÷ç “t[ÂVXôäËþО™"¢Ä*IwNdTÇë¨uï¤í85Tõ€ø <™ó7oàI·\Àm §;ë +ŽÀT·ù¶ßÑ}i¿qÿœ>4ý€ö[x—alĺХ25uLº”’á‹$Á»n„”Oت26ëÁF=»‡É,Z×#Òw@Ñ!“Ô°Ï_0½™²¯q.L–ÌŠÒ9¾¥Ÿ=Ûpƒ™¸#uɼ» 0 òJZ`¬exŽC£vŽ~ö£Ö)…|¬ò1†„7n(™á³¦kÑÛ…Á¬#„ôü¶ðp(…G¶ÔÍ+• %Ë$g4Óž’Ix¡ÜBÇ'´2ÄÊó€à"] •PΞY{ïqM¤ÈìØ̬9a°[šš€6²{êwbi”Æ…Å n~ñH(äóÙþ”êe–ÄÄ×èi…2'[µ MÞöüâp3Û2Ú6·Ý.JÀ€×¸š)¤”!;7Ðd€Ô Î,‘¤‹ý–µš@ÝÌ0”ÙxmXàn-ƒÞ„RðDµr@1*©˜¹ Gô\9•\#ÃÄN0ɽï?1vXù7•ÏvqüÝ4ó$ÛŸ f4ဠ! õÄG÷)„HΟ›mr2ÂkKVâLþœ®Ã¿‹jò"6uÏi¹„K}Yé¦Ç/E«&¼Å¾h9úÿ$Jžôx£û®”wl)˜#'/êóúê +ª‰Ý@Nƒ Y +–zÄ&†•Í:vÍ­*q–ÍY%N)3˜TDü4ŽAÑf.˜Lÿ’Hq$©CñïEiä?ßÉ”u¹<’æ&‘ZîÞ<µ{˜«œ û›+§ +=„Ùp^Íì}´HOaªŠ¼·RTÑ•àŸæZN&ˆ@a¤¿oá›Ì£Yiíøc Â™ +í•J®ã^^3ãò²QÒÎ\a”ÌØjˆ"¦c/„/›c´ßiß,) +ˆðÌÿ²^-½‘ÛHø>¿BG ˜v$R$¥M`±‡½,ö²¾M€Àn{=Fœx`{&ñþúe=H)ªMur™ötK|T}õ=è®sððl¢üDåe’·¡Wv nÚFÝ´Ìä¨$..ͨ39êܸ:ádé‘Ñ.—Ìs|Å)Á œ$.¸ˆ¡Œ!#ã„EhŠÀ¦ÿnˆíÄbk ±µXjèÉÅv®ˆmˆáx…PÒÛÓŸ;L;.÷IyÖ(Àj—^o"T”x#KÐAþ ?Û*Ë·Œ£Ri AQGp$ÄQ¹Oie ó|[È'ÈüÁÐᥚm[€- ·Ø®pÊm {˜D$IY*°ƒ£æ‚ͪ»Á{›*ä>“À`V5Ô4±vèêu@+‡L•Þí¤‚Á¬”Éã,±ïËG›ñ\²~†»ž] Q¿HÝ„ñEÛ@&4w±Á„ztä2l¶Öì6ÈI‡ûÜ0³âjœ6Ëæj©Ï›–}L>¾­ó6Zšô¼ˆ´"C$VBœ\¡Z =a2XÝ–*î’¢ +ö¥ à +·7²tÂÑ'Š4°ç[¿`é/wTgÉ”d´s^¡qp—n´¦ÓÎÿ.\2ëCh> Ž8Jšß Ã”`C(‰üfâ÷ø‰Î œ´=5„&ÝÖó®˜tѯ˜pÞšÔ¯À‰£0$h矉“°ÉÛŽ·¨Qœ»uÎKQ1±U-¦–vÉ+«ÔŠ3 †Z"¦ÙPû· 晵£pÔçë"”…£º[À;õUû5¼³rëà’î@+OVØãÒÚ¤D• „ÉÆ‚1S^‡A Y3 …NÃÐ`ª!1Í7HÛ@:  å8j[‡Yn]ü. kâÊi\X[‚÷ «&¨§_¢Õ*l8¶ï·f¦3ƒÊ™Î»×:®&'<ó]ýü†§)FzOQ%Qà‘ేþàºé¡¿‚êT,q ¤£¡P×°ø—#9«,ô&>ø¥Ø}¨OOŽ~Ž}]‡!±t8÷”߇A·ð¶ÕpTKz+(dI/`]Ä‚õÊi`4êå‡)|òÒ`EUø¥ð¼g°£ Ë‚ïRA ÍàÓ –Y"¯Ù2›AÆÌ +œµFùžàñÌê%%Ç +Dþ%² > åØ4ʱÎå5J +²Ê`ŠàøÛŽù7Y ¼ÔÆÿ;Mº{¾ÿðÝ?ÿ3t÷/¾û‡úÙׯ»úï‡K¹t‹¿š™m§ýÑ´5*ùÃ0 úÇÖɼVýÉW§æU]~h{÷ \dÄ‹\]ñ=PD—-['¶ÿtñw }"ýÈÔÑäB¢ áHæºëy*ƒXÕD‘áòëM)r!§Eí?‘ò\méœ< +¶`%¤wÖ~MçtÍ£¯ {?°èÐôpì!,û'gyBÿàOý4ÀùœÎ„xqc‹õ±“Rg +GLžœ*ëéZ&ôß·Â\H¡Þ@‡‚<Ñ‘H€ÝЈãcõHSA;åÕŸí²w +>ê¹4µÒºFHŠl”^ýVQKsi2¡ W‰K‡­1& •PE•çÔÑÕŒ|°å *N‚‘Ž˜©„<®"ÁU‘°³2i#Å¡SbпÕÐã¿ç®ÒßJl9@l©a;¨–¸{ô^;þ£¯Ùã7ÂËß_¡ô̲2À§¯™^hœÚ/̬êz¦ž 4Ý`Ø¢à€"´e&C³u `vwøì 8>èjò¥'¨<ÆÅÚƒ Eçá«ØþB† ¦½ïµÿù{ØöŠÃNE° PÌR›”õ%=G›Æñ„6«¶kÓ¨µÉ“U[è»oJ“Ý%M§DÉwßòdÇèivæ(*S;ÌJ±ìÎ)ëâĬÉVUì–å+ULl'Ý2:ïÂH¹ºµE râÏlˆ10dl?x†*°2WŠ8ÖÅ£.YÃÖ0[¸0úÒD\Ü`÷$¼jýÆÖñ¥§Š|¤Ã"hÄÍ-ÚOà€7H?(夙M+>Ðø¾ýÓ_7Êžê♣95Êùª;FÙ¶òä¶Z&v÷£ÌÊ&–§dA6£ïAÌßw™¤Ùme|ŒÓA!æAq.³ ÙÈ‚Á+̹"#`‚&_óIŽ¤ñ¥‹ ÓÊO~‘͆xõ„ñ7MHà"vŒ˜¶Ø—=žö‘r,Õ0$¿<¸¥b)ˆdùd©¨¡P¼I¸PŒæÊM†$3øéÐJgHòRÛ +â¹`™ab–?êUFX_ï-–ß¹AE¤Ÿ{E8L`-þx¥øÿ/Ì¡h:^¡¾EÝ—'ø…¼Å,‚Ïà ÀµÌÑ‚Æ‘}î'ßï ¤ålJš/—1±’]<»)?„Ë9¬¤¤É GbÊn'&56ªŠÅ6{Ä.ëN‹ŸáM§Ièyø¡‰:31? M Ž®I~ˆŒ6Õmâœz«©Wþý¹Ã˜‚’Ó ÈÈÃ$•2TÃîŠ!ÄQÙ2Ñ+ètž¿ˆy”MÙÉ09¹GºõYæH±9RæÈ1« ÔnF”Úf —q±Â–Þ¤Ô{Ps´6£ÖîØÏtQöYP3L9 +Ï+Îsi)ot¸‡”ÞÉ +¥=gÝ×>"˜NØ“bÕ,`Úí‰Þê¨Ø|3h¸jÐpÒ“7ÅŒ¯øØÈ0†qܦ̦ˆáZïpS5¸h>ćÁ$ÓE:`š½Â€ð äp`]Øî3×L_Yx"ù™PÛ.­ÚzÏ’ù¹§a´ú²cŒmƒ‘Mo7ÊFBo¥×ÑÎÂò~CèINÞ“ª®9Ó©FŠOLÏŸºw®yªm’1î–²°»Æ~}ô»t^Qà÷CiñÌÚâ@ˆ¹Ð¿Â±ú .è:!Tdm¤×Asà‹¥°H¢ï’ºÎTGËëÀW +þ̯Þt¾§dÁótPH¢Å£ òƒF#½šÚÅ5úOe@úY\sÒ(ç«îàšv£¬¶²ØýÓÅôXàÒ7mXO9ó6ž <|èíÆDZj…jÏÜ(NZòL2šÂ®^y”™= +!#}`_ü9$þHê]ShµU»uC1¾ø rïƒ~µø2 OìúÖN^ÃÇ lˆ#µy +š¬´@E»•Ö¥•ö=¼:vüG~‹–ÚWI#?_#¡)…€ðh,(‹û‹ÿJ³’éHÁœ8Fì-DõyB²sØ Ü¡wÁÂ*”Œ<2ïä‘«(eÖÑî#”å¡ä‹¶óÉ44òI¥bÏOÿÌÊÄ1†»Œ@ãEŒdR¡.8{tH2dwxP0\þ*õ‰ÔúÍÏ’#l挺[Τ˜²èl*ˆv!€1‰èÜëd˜ìu÷¾_ȯìñà1A‰E¯„w8§=«Âräìôiñ=ÅÍ“HŽ±‡Þ”®Æäÿ ýóú` +endstream +endobj +104 0 obj +<< +/Filter /FlateDecode +/Length 5594 +>> +stream +xÚ­\[oÜÆ’~ׯèGðŒúÂ&Ù‹ @lÇg½'±±¶ƒ³€³².#¯­‘Ž,Gq~ýÖ¥¯$g¦%tö½¾ªúªª©ãŸnï>^œœÞýðÃñëã_N¾]½ûñGñôù³£ã¼•bóE<}w$ÅZ+Ö]gÄíF¬äZj-Þ +þyüB +%Þ]ˆ~=X!ákX[¡”Y›ÑŽÒm×ÖöJB£«£FÉöÝÿýüîèç_ŸÁØ0|»Ço¿À·ø÷Ññ‹+)ž_ý÷ÑñÛ›“-,î—“íF4çÛÕ?ž¶Ç¿>{ù\ØNù•ÎWˆC¿P¼(G+rBi¹VÒ*XϠǵsÎôƒ”Òü(ÒšöMªÓ¤qà´ÑÙÀcW;°Iç®â¹ã—Ÿ`wJÑAkÞüE`‹¦_ËÞHÙM&ßüÔ®TßlE»¶Í×v¥u³m•mÎZ5¬MsÞêµnnáóõØ|i•‚¿îÚ•ƒG'Ðq„N¾9|f›8&×}³×ðz^ÐðwÔ£o.Û~íšsúì>Sðô„a>gßy¬ŽÇ²Íþ´Ðm GX×Ê®XѪƒÎ_`¨¡)æ*WGÏó›Ó¶£íÑ0ÛV+è ëÓ’v]»æÖàÊÂT4ÆÅ©üu§Rk…§s]µÊ÷“;[êÕh],ïgkþßwÿUƒ‰.G8¨È²ØU·œëQQìœ –ÒÁR`]ds»æ†dóEܵŽàZÜ´ª‡_ò=jXjvT¶ÂWø;ö¡zè6x3Xu<|ñtÍóÖÈæM‹ƒ­«·j™½ú,aÅÎuãð`}î÷ëótàz}öê³êºÃú\Lžô$Ög‚8ÓSµiQů•UHš{çQyÉŠ‡ˆ° ¿Û4V62)kwdAG†¤#‡À£ÒŸ¡—°Ô‚-QO-|G0Õå ¢]bôBLöFLtnf¢*9îÔA Éa쇩¨ÑÖaÄ¥±а#°èÎ#àÆŸ#É%Šä‚&ÐÀðÜž•"‰¢íP(}R^’Û)bì¶?–1K&yýI|$Üú. ’¹—<Ä ŠA³¸ âf;ÃTj„A'\õ´ØÜ Æm£ùYWŠÑÊtÔÈ_¤EÞ¿GRùõKèáXp—‘%ð+:Ï×bØ_úÍ(C8ePzùDK»½ªd6‹`/,Î`‹cÖ„Ý°FßüDþUpÅBÖØç+®H³›îK׊núŒÇÃSˆ Ob¦ãš°T™ÝØŠDA›s° oðI2a( `Ób¸%*3‰Ú 8Si„AùФÓ)øAÑçÜã`œâ‰?0¯Ç`ÚT‚±Gbo…Ÿ©Oȇ^«–à½ÜË6µfÀfd°¡ç˜IN£ï@ì€Äb&ÙÄž-—‡Ž–S“üÂzüD|iÑÔG|‘þ­*ˆ_Âq|8‡ÒhBCÍ a8lo+§:È` W¢˜m…iPÍ”ÐDÕ&þiž$ skÔšv¼—¸–œñD½ùé˜éÎt­É)õ£* º  J¤ûæÛ>7Þ°TŠ]ÖßG*…à-Ìf{mÔ0<@¯Ê X³dšv‚ <¢vÖ:Oò£Ž{fP1wcQ°|>ƒ©É{°vÚˆgò'9—;v'kñÙ|°…Ÿˆ¥)Óeo¿ê +Ëf“ ÷ F°ÀÈŽA¼µßòÔq'!ˆ·Í_ˆîŒqLÜ>-Qgœ~„v­÷ý€š¤4™ÝÔÁºÚɹæ,8ŒO‰@>Apàt†3ËÈ'_ Í®„¢€\wÖ#´³Kî f’€žQ1z^“ŠÀ †ú‚BBk~ÁŽå‚ˆ\ +’­.¦{2[·¹VÄS–mBâo³Çƒ,²o\>$kKë«ðÁQÔ—þ$ª qO¬›Z7“dy˱a±ÈY¸ â×#™n “äh=™ÊT{'»h¦S…á­Üh'h@ó*­T(Aô¢&áhf $p0‚Þ>y͉*lpƒ÷dS0düÊîù&©ÞÔà¿Â#ö‹? +_¡’a¨xÆéŽkð'È„±;FF+’ Éž¯czÄ\ºÀÖ@â7vY¯fT¤ãÄÊkfïR©@.€Ä|•`vG,x0 +„?–bªvUãÄ挜ÄŸ;à`.4œ4Šãã5™Üxå®Ü¢¹C783wÀ¯œRr˜M.B`“è»[fb=31äŸ1#ôXdö™È°I©G§ôúetÒ²;r¦‘n1¥gn˜Pš»>7 îÙ1C´šæ÷¦íFVaëÁŸkèù{›au¼;oq¿bÄ?ŽÜÁ¼’ ‰y¹qTýDеpîÕ¦ŒÑsLe€Æ‚Ý/ÛŒ ¹Ê¡f¦¤_xvDqÝaÆÌR¦+âLÓ°¡Èåì »‚´³4°g.ŸÃJæ2÷g¶E SOD÷´÷Ž|úWÌ1ÿ›è` €5`Èy¾¬r c(=ÍΦ¬tÐ=À­3´4ªÙ5B¿Sëi{}–)-Tb¥6-Ô›%XÊ°ì»".¸&ŽrÓâ`{'C™I4DŸSPEŒàãJ25„"Ñ>‹?KÜç5&è’ÂŒD7yð2Ÿ‘ÃÈ–0JÎ×$8‚ÌHUÈSúŽ¿•:'R%᪟ÕjpÁç“©fœˆÌpbÎw5ùI,ñä–¨ø”ËzàNÂÓ{Tõ{Qee/\{k~C%ʃi³i-&`]Ï|FLQð½ê”Ï0 W-ƒŸò/óýG¼ °íàÏ!H†£o Kµ ˆ‹£õ8@‘ÍÚ•$ÐܼS‡ZÙkî3jž‘¿þ)çT‘¾Cœºætaé1dk0*]‹7~2îp`âËÖ1†%åú®ÉŒc4O!#nêàü!ˆzec¿¯ä°¶4ôá„Ÿ0ø:ÌÖÂF쟸ºí«¥fƒª“nj Ðvã¥KÌ8€Ú5¿kéGÀ=³Í;¬£w€6G45š¬°´íԒ‚ˆˆ·ìqÃn½ +ùNÒeI¢ +Ú™ 3aÆ+g4Æ‚\aôÏd!¾ ¥Á+¢Ø[E°•QÔg‚…Z3LV˜˜$vEcÝÓEâ¼j˜Â +Ê#:©–³^Œë”'à;åÞóE“á“XÏ9³í¼Á Á5(žNŸí$Æ)›[¶œ\]a«Ž¤«®0 æàUÀ: ~p³ŽtÀC·ßO®vÀƒý^\Lý8(K¶²Ç$šœ ÛqOPûØrjmá¥ØìîrLü˜ ú\”å×Ö>\o§p!¯)SÆC-¥:ýè4ú¢ä pÑŸ *Õšj­iÔó–ã`J/Ý +ŠnMógkÈ—{{™ bòÆ‚ÍÀ–v&xuÞµ3YÃHº‚L¬8+όƫVÀ¾ÎÐb†-#WÀ`Œ¡\©bõÁÊ‹uÈ°žÙ15ìæ-Ž1B‚êøKk»æ_H78%æ8ª×¨Ð .ôÛâ¶[,=Ï[âsÂÅ›} ·4A%Üâ^V–ðL©"Œ³J}édo£ ”;Jg®Á2aZ-ß0êoDäVn؆JsȈʾ F·ì&ñæò +ÊÝrûŒe°OÓˆë úqGù±KL=ñå•‘øÆ.ë8Ö0ÝãU¬ð)6þ„(IA::qŒ<·öt¸˜þŠ>ú‚ÅU›ÃõpžisãD'§^r#©‰— i=Ï\ÅÖK™zÄïXo÷Ç¿Çî§3Âò »ïöÚýÙÀÕv”ßi÷Ë©3»ï‘]h2k™Õ®¹,Sdà2U[Ýd(5#V²‡­]“ØõìÕyÂoÐ(YúH…h©O¾wPr4J¡`Ð5N´õ„œYpmgó`ˆd&ç·)Ž#”¡ “i-†'Õ÷†Gõð{ÃB‡1£VAè¨÷#t:p=B÷¾@6_¹¨Àj±ˆ÷ÍËÖú+ô1róvšÉ³»0o ÑżxŸÅ8&§í½=Á0ª ¢ZÆÅ2·ÆôwŠš¹5yÉ'tƒþ¾åËfb²ãQN £ÉÄ!iHì}"©Ì·[‹þ}ð÷˜ñþ[Ð%6¸^©ÐAßã"×Ï\ñ8©Åöìúÿ4¯àƵԣ›Hº6«0Ú*:dú® ºU¬÷åS"(3OÂë,Îç¡ßmÉ?)£miLtó™Ó\aÂQ¤’X$ó`­'ô¸@L9_®z®v®L‘ÓudM#1I±Cü<÷ŸbÈJÕ‚¥ŽÛ+ n‹õ¨¡ù†e.ëstyÊ,ú¨Y¬Ìg˜v†®êkž-É“]SJú`2±e2U•§ž^á–bïN£KÊÓT;´ì[o›‚Ašx>56¢ïÈD|ÖŠpxT~À Í©íßeÊ3þ=V툥PáðdËWqÎøÏûs’ÀÉ Ý«T¡Ï¶í| + }¶¡vG“Ôæ‘Lr<À$§Wûi÷ÝL²˜ú}óz_Œ¼õ^ 9³É+!Ž¯D@»ó/…`–š—œÔÛßa›+3îÑK=¡|¸žDW£nŒ1EÀÆ7wÁaj¶3šnå³åôÄ“RÐQ­ î“|;½q-@]]êÕHW0©hÚëïâþ6¸ dûÞ¤¦Îû#Ÿ +º žªOvôÒ[›[oˆVåPJã¹àGKµñ&ƒKÿ†˜$-©Ì’î>óOí]é™É)‡Ÿ‹Û[ðŽÞd‰yÚ{Y|ÊAP|Ü·Ï(Õ +SW S;[ð™’ ôÞ=Ø©ëE8äwÈsñ.K!ØÞ.ÃÃÞ³-ÿR$äökt*K ±,!˜u{'ʪ¨ÎCòÁÎ|O¬¥GõÈ2¬ÛŸž \oÿ7 \N"¬Rzeznbºb,é ‹±3Š‘{ëŠUŒ$·«h‘Vó’Å=¡ LFÏ0‡YÎ`7pÑË5ØhÈObå6¦‡c•-!®Z—ëè¬îÇ‚û\ç+ùéE¢m²´'™a_”ÁÙÄÌȘBŠ¼b:É’ÝšÕ·À‹`Ém* ¼€<Á1ƒ„ñ„KsœE¶>±ÄéžyLSò”C>]”žc~o ž²× +v¨¬í Ò_<[Bì5çÞpcB:BqNñ‹¸%Q’ŽÞ¾¨H¸Í¥Gdh˜’³p,A.4Hª‚–åŠÁD¢SÞ!s.Ñd¬©ôA3²àY`p+" t¯›ÞÏ }TêÝu‚ëdA•bòoñµ€ŒŒ;iÁR m‚ÈBD¼…`£(©0ÕzÊÐ +¯ôöAºZ B9ÿ^\µjFÆ-)PgkÏ`§jžVËvúr…¿ªú±§Æ7 @Ú±¬rŽ¦—î‡ò…‹s ?’¹øRº¿{MŽ;<<ŸîøÚ÷ÅÛÈ\X¡—"Öôß*wÔKù÷Dž–‚"åCÿ³D/Õ~Ö2¸–µôR/k)¦¦ |}…´#$5,å|‚ºÿ¾õÚå«^ZÑ[Ú,²@¡»æSdñZ —08—¡)õ2¿ÜU‘s*;jÅ&ÝçZòÁ&TšCë%¹;-iEwƇfâqéØ;E×…ÍT£×TÙZå\Á~J‹1ÝP烶TñA>Vö¹ Ó²óÓ¶“+y±äm'7ÆŠ„~qqhðJ“×·ç.)ã¯ñ|‡yµy·ÿ«–k%ÒÕId´m9èý¨hŒ×2èu– ¦"\yË#PLÞ*ŸŠÏ4Gïáÿ)3ã}? +¶>s¾äI§Ùw*ÛÏ.Râ}K¯M° Ê^¿‘×{%®Búª$4)M’Jü3$]çÙÙJùì©etoS+£ôD>•…’^Ö#jPËY"¦‰Kúøx»"Ýsa}¤øó"_Òk~–_u^Ž;}2”üóáàѳo¬›æw­uk0í´áwx¾z[m½ÝN,‰­»æAWô².®Pv(K¹p +¹¯Ù蟕ÅqÖ·«¢6ì†ñB‘!«,éã!v_› +\ÀÆSx;Ûfá#úHñípË´{Ÿàý/ñÛÛts·V<ã÷äŽTgËÂöçÿgW³0õ½ùÿrê÷ͯ9AYÄBVàŠãxC6¯}rPÉqO~ß9¿ÌÌÆ“±aÜ}¦À;·;ÀÙ—{ ©¿±m ÐÌî6ÖÙµËt“%g,®Þp(õ¨ª›Â¸‹ eÙÐÿôÀ3Ø\¶ž÷©žý<–Ø®Ã]:¿“mËAÊæ/ÿbÝIkýÿàãg†¢²Wï¨ wÝrL¯Á^òÿC:ç7Øý{‚§ùÂðá G¾fIϾ„‹jX,<õÓžó`0¦Aòú›nb]×ô5+)r}°òÐõ#Â38Q•Û5:´ ªÏ\úClƒÊXv>vf¦c×›‡®Ò<ôÞ…°bò÷ÍÛvzµ²|+"£ ÀË¿+—·ÈB¯ÜŸïr]šsÚ‹/žˆÂ“…€ˆâŠ­]¼b[sÉC¼h-¿^T9ø1ñÙUïa¦Oá…ùvj1\w}FI]°ÂÁËXÁå&’yÐÞ`øéß6fq^Æ»048Ä>Áø;¥3ÿÿÿ(PŽý +endstream +endobj +105 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +106 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +107 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +108 0 obj +<< +/Filter /FlateDecode +/Length 5740 +>> +stream +H‰¼WÛnÜÈ}×WôãXRl²»I‹䕳pàMµ‚ºÃ7¶p?Lá(ü~î÷¼ðæ-îØÓ{”®ê©h5g‚œcb{L¨átJ6a5¾õ™ì«.‹±„”QبÃ8èg…gÖ¼ +γøã–‡ÿZªŸ<ßÆÂCÜ -µ5þ.p«ÅP . —sizZz÷I=Øæ´ÿ•¼z)¦K–7»Ä¿6;¹„›Mñ¦ÌqD5nâ÷TëáÓ§½S馛NjúJ¼Ü aõ6I‰D†U±˜_è‹AB,VMS)ö3|‚` Ö'/'¹ezOÛ‡;,–æ_Z~ ¥Ä£ª©K@…ƃ|ï9†N ÄL–~–.¸Rçêe8ÅŠÂÚ_Ô}ÁWÜûÍèœk¼V +€ Ö³•HÕ-Wc¸fçz„ó$£ÚG»™A;_ϯ‹É| <† µ5 ðèÛjjËðˆ’T”búL8­‡€ƒ(Óæ\!¸òµ™wLšût¼&œÞÖJ›Ì¦É¶ðn_"#)’ÉÈhÒ¤sHh¨³¡„|«þ²":•ÂßßPÖÄDמL—û"R|Id1C8%§x.OÕLê×MIy‡ý:`¬Å\7•ì S¨¦vC“jS¦^áÅ­uÙv‰ÑC€lhoB,\úƒ2Ô”ÞR¢4:ÈV¡g…í¸³È³‚<÷UÈKé¡}™\Þæ‹òQ~8ñ½È84ó8 køsaÆÄÿJ BVÕæ×¢0 ³á‰÷‘úÅŠPvô™õ†ú P;ý¦N6íÝ!®>µ'B$±fë1ÚäÒX÷ @²Pé SyÛ!á÷|1ÒÝ…É~ʲ•²wÙ›¹g;¹eUP•þ˜“2á€2«Íw_MD6Rƒ§»iÜ[6gÿ%o;„ŽÜ§$÷û!q7]J)I=¤$ô²æêúÓÕÅ6?º‰ ›+vªÁf®B›3J¿£O¼!„¸Áˆ)áŠÅÛ3(¸Ö«†WkÄ|pAX-®«<õ¥H\8²¨“×B…¼´›xéÔ†/;ÚשÃ?·Û‰TL#6:62c35ûE?YxCÍü ‘®11A´yÓØÖƒÃ,+™­¡º-À'EÆF­V2;òæ2ËU3ÐkºÄž‡Ž "Gà/Úܯöäk9qsâêO\š–þ†qtž¢‚q´ÂT2 PXùD¿»¬ØÞõŒ1|iJi:>Ce²ÛK¹Á&¦AT÷i¤þÖ/Œs©‚N(ôŠƒy,’ÖƒŸbcC¼–.Á\¿ÖžK%–P]üƒ°íA*ÿyŽÚ¾]F—wÇ¥ÂXÆC¦†ÕÆÚQÓÅÎVÁ¬7I–SŠ4kª€”K[ü^¸˜lËÀGþ{ÁÀšA±C¶=c" +8¹ èD~åY¦J¡ÏÄ—„×[¾w+b Mʉ‚ü@Í"|%·M‚NitÑ ŽgÙv­GJ?,¢`Ne-ŒÑ·Cý: áºÈ¹‰ÒK$f}Û´¿§]ýÀ˜º‡ašUvª—Sá.„”È›‚S8Æm‚¡Òü/žÞ«ÔSî‘möæ„ ‹–ocB½Ì ÝìÌpÍ‘ìYI`›†ºªgóÐÉZ‡_ÀÔ6£ØšqÓev…'ZØf˜ ¹HØØbµâ£±=IuÍn¨ÏÍjÜ +&Ñsë'ѶÎ}£]Btop€D_‘8Ee Ù£ÙáÙB¥ÌðKi€¡¢l… õȾŒs:æí´7…¾”ž¤ÊQû“ï{IÿŽa§¿¨`Sƒ Yî[öqñÜ'ʈë]òø-ež?ÆqcBc¡‘©+VùŒ ')LfÞû݃ïÀYÂ1-½x‹Ùà'áÖ²sõŽ)wV¯Èç£Ò™…|‚¥ŽÒÛ®mÙ¨\lÕä¶Y²þ¾“Ünï.Æv!1ŸÓf—UžZ¹*~Ãã•Œ¾îÄTŽœ{(µ«³bÆSi·0‰Q³&8xŸÕ4_»0{2æ²×C‹“§áVæˆg• 0==G#8$M ·¡Ÿ —HØ0=¼-€¢R-\-½BžÒT­—'3vëK…0ͬ:Eò­>…Qµt<Í"2¤à1«0ŒÁ‚'jD;êôÑ´ -ïщ"é¼kGc8‡vf¤È˜uÈ\Ýê‚ä~Vë%’„ƈRïÔÒôñÅãH$âb+ÐŒ4'\r…W,"Yà» PÏ +œûÑS¼ºÁ¿-ù«_äy˜Y|S³³ºä¯዆‹Ÿ‹ûͪ‹ße÷D9©”aº µš–=rrÔÏ.ƒ;d3·mB‡¤z÷ø¦KâÓæï+ÊxŸÜæ‡b|C'E±MUÇÉI«¡”»÷Z P‚ËF½Jˆ™†ÎƒÄ^©“;ƧT„¿¥­¤ÞÌ(qÀ <Þf&Ð%1YM‘#šQŒØ¦_mÓ©Aà9mÖ©XêÙ¦JÃÙÂ>Ô؇£Y ¹‡Ì½·É73 ´Ö„¼Ôë-š±£‘fŒYÌ´àt£§Xš½ ú@¡¯ˆj€I#ØÂ4ÕõP˜DÑaèÌÉÇ⇠‹¿OÆB#zaoÅm9s/¡$£A$¹H;@“››ˆ†>!‰£'ª‘Ëj9e)Oì¥& )Z?ô6ß¾Á„MÖ#Âìëæ– G|ˆÖ,6DNþÐ"/ˆ;ÿÔ'l1Ò¡ý!) MR;†Yç9D®Î”ô¬ˆŠÜ„ŠB*[Fvð†¼û§” ` "Ãaf¹Œ¼þi‰Žcx8žñšè.Éx˜„ ö°]-4Kˤ.ëI"oÕúrv#“×ç%×WuÚYÕv:qy'ìt»ÕNWaÑ;_tÇ”Ðd{êÅÊàžaéÿX¯’ݸ zÏWôQ<6ÉfsI‚†ä˜Ct‹C…ØIÖb[ùúÔÖÕÕMŽÄqr±53d/U¯ÞÍö9¥Ú†CX¿ ê³l†õçUsª•N¯£uçF¥Ö¤gõ®r`ÉE8z|î\¦/Y™;°ñ5]"ÉàvÓÑm#;^1ÆcÞ÷ƒ:cS$»¹ƒœMÝ›( +¿dŠ;ãAØwVÉ=9†Ÿ\ê{Ì1SQa¾äÀ»­zúõ…S.vHüäy>CUƒaš¿™€“™qÆÑ)wôyE`ðF©Ç¥¸àŒMÚ4[KuK®ÄÐsä5ÝÙs‚¯ÄÚ¥ÿNFT¯5÷ɘõÇÙÑ)·£ý;ê;oìèLr8ï’¦[t"%Ý°@„çöR¼l lD²óÓ0ÓÓ,þÁ;‰K©#síô=ÆH#³î{â¬rà}ˆˆ¡Á1È¡T< Mø«§‰Ž&Û?ý>ÎŽ ‡W9󧊘2K‚¥H^¸™|¦ÁD:0i½µ"Rm/Uæëü=3@UÉMâÙ´œqt±ô@æ•‘x ÑBô$tÍfë!êB½º|$· p©ñîªtÙ˜«còœ–6+ê!FekVÔb‹¼¨™Kã]˜®>9]¦ÍT³½ ~ë¶3ÙpiXdÙƒ‰ ÙˆuNõ‚<~`ô²´0‚OqæFJd].‰ÒQºåè5÷µëÔä¤ÖB4YZû=u)­ñ´8pí—îµPÞÌöf¨Æ™£ÿáe/$ûÜÊÛg¨ÇðòWû +b~L…bË }KhEL®Yš"o-–Ø8­²S‘b¢C³$§? $ŸÃ’|.æ¢*.Òg>*dJ¶…âz ´(0cµ¤lü±™º6ŽyCÉ5Um"Ðw“Œ¹ïdhᒖη{?¹“#Žéóx¶uxÖ–ÝàbTc’Uí0;æÈž–j/¼CBj)"Û¬súª²ÉdŒ/þoo,p|ŒYÅ’f —HûY~voOª@’“&œ×°VŸùg!Ñ7÷& J&ûdÇ—Ñ|vKÄ…·MÊpKÏ>š!K®v]~Z€®jï¨øG‚ˆÕvìÍÇÒþ0xà im ÌU8·¸RNDð‘àÝÛŠÚãÉŸ!˜Ó¾:mÞµ®q§ïºµœWŽÛ¦ã‚Å컎O*öt/£]i݈›Õ‰ÙíCÕaxqJܼ{|Ž”ÎãÕØPx š_‹ sÀxCDX+¾Š‘Z´—{~)æª"¿}Dû¬$§5W[ ©m‘jZaò rÊ3§¾lÍ’SÒ„HëÖKä1ÓjFr(Qã °ç‘–JÒW-ºÒ;ãŽýil8ŒùFŒv².l‰+œðrvdÌËW…X°wst„u|CÍh¤0%-JTŒL¦Þžˆã” Řãð2Û‹‡ö3 @]GÊŒÂQù…Í|ÍÀ`ˆQÔ-´ ¶+Ì«ôNÈ`¿uY˜\=Gê ù"²6¹{ÞŽì 5 ±¿P ß{‹ýèb²ã£§JÙ @P‰Ï„H=µœPû*Áò|WÑIHÚ:‘¶‘¤S-õOG¿y6ÓpèIÕR\1Íîñ4çù´²Dcé·t#\dô%fœ ©«÷™r—ÝNË<ÖL`eu«õ&Ž÷6³¨UäÎÎÙ/5(yÖ‰¤ÑÔü‰ Xî†M¨ê9“Œ¾{#“¤ó¾éYŠr+‹ ØÛy2N ÀÁ®{b ¦®¼Ï̺[‘Næ™”rÇ’dÿøì;Ž0å0%n=# +‰N©mg‡ð}rú:GÎ í‰"g‰|»¼éàG3bøïV,ã}Ež¢ÛTD¶e +%!s”w>ÉêsS +ų"øÉ) lH¯?˜öbWÌRYrŒ¬¶.9¦=U°Ðô`NÞJüTÑS»…*ã=òÛ‹rÌAt&Æ*ʨZs›†Èô¥+œ‹¡8$GÀ¦)Ô\ +›`üc@XDŠWÃV’OK.—ÙÒO‚&:&%;, e·‡‹]Eoü¸þ°mÆ ?>À¿]çÝíå¯~ÿ³v—w?¼zÓ¾«Ks<Ñ5&7AƒÂØ»¦ƒÊƒÄ[ü\×µÿåôú3ØÜWÕÚä«ŽÝêU»üfXr÷¯ÔЕ2s HÍ:ÓÔPЦÙö¼~Ê¥,͉uF¼æ 4FñÇ…ÖÙŸ«ÖÁmpk‚[¿ÂqÊbóðÖ(ü¿ÆHo_ˆ’¤ªRH•L§€z(ØŠýŃrG² UP@¨M€¢xÚø ê‘7Ôš ÝýŒ™ë\z£¯Ž¢êÚزÜìj‘«¾²OVÅ3awj#F¬)·Ë§v]ŸLÖÿQ7äan’w•'3ùÓúòõGRÉŒ@ uÍwÈðä«A ãJYB‰Ù4ц/h#Ó}œ¶äu‰6’±K/‘'|0Bþ ía} +5¬î[Ÿ¡áÄUkè ÏZwâYñEØáH)ê¶Q·‰9ö$(7×pGñÒ“$Z +>÷âkŸœû‹Ýæ×ßôxݪ¹?mÞùÒ¥6kèì½ó5¤Ã& öaêB¤ç¯x¢Ž@O'>“Ï7‚¸kÐæžzF£صŽhœÄxÙq*â¼±ƒà£`Ž‚+¹õ™|>#м ªñ…;@œyBБ/8«H‡·\ Àídwl7¼À©-Po |ý¶öç(v!νÛô™ïú$.óîXßdëz¨Eͳõ~”ùºýuSõµöñš+õÞTpà±ÝUÔÆoÑ i•´7-U*­Ñ™.°ÜÄ-Ñ€©(v¡àé1}½a² lÀâ6÷ÕÈ]kwˆøá#±’Xv–ËOSYÄÉ5. ¯~­(·F ¿â®]¢+¤#Kohãð\¹»±6cs£l)_m†³ü„‡Û´­Ú‰ï(+ÃÕóÁ+o©HÃÈMG™°˜h•©ÿÕ$üÓä#ij³sw S»8ZtÞKþr7_}}…Ç‚e!Ùæ Su}m~±cF½CF%Ø°ßx<âÖhˆ®(•á Ȃ)s·X)ªä†¸àsE”ôP ¶V°†ËQ–Aɼ~¸zOúÇIŒVÎjð¯³yZÙ +endstream +endobj +109 0 obj +<< +/Filter /FlateDecode +/Length 5409 +>> +stream +xÚ½\[Ü6–~ï_ÁG H•Å«Ä™ €;gãc÷î`ÏCßÝã¾¥ªÛ=½¿~Ï…¤HU•Ší®®’Džëwyôâåêþòüèäþûï_¼{ñëÑÓíÃý?ˆ_ýtðâ—¸X‹:±TÚŠ¥1Z¬.Ä¢[vZ‹ÃÁŸ/~çÂ-{+:ø×/­R/õ`‡N e—Ö:ÙÁM×Ù.m£ÚþíàõáÁë·?Á 0ü÷ˆÿý +ÿ]ˆß^ü|݉W·?xñáîèHüõèæB4g7‹_~l_¼ýéÍ+ázèݤ‡zñ³dÒ<Ñå…TÝRvVU½–Þ{Ûk$ëû®ëôâð_‘¦™I‡nœ4 <.wcàÁÔ,GîËÄ}ü'Åb|ç‰áŠW%%_„Ej·ìœî:3™þcó²]H×܈Køì›ë¾ÜµÒ.M³jÍR5·­RË¡ùÚj¹ì›3¸>Û……›VI¸xOÃmÆAéÝÃXÃÒ5Ÿ[·ôÍýv×Âg­‚!W­^Êæ†×8Îr×z| +ØïšË¶01^ço‘¢¡9§/Ÿ[¥aî$¾^ã²9¢9#k¤Oáè&ZÍ’0pmŸfQîÀI-ùD·@‚/´L7.Äç›ïèžÇV[¸tÛú%ñ«`Gvß1­؇”?'Ö-0_†ëD°lñH£›+ø‚ëç êÄTÆP—/úŸ²$òF•,¾b z„˜´oȉ`PÙç8’«,Îí†pÁ¤b˜ššø+|À4¯€¥Í{‘ù š²ÚøLi|Ú‡ôÐï6>¤9„£S1ÎÉ´7ô`wð‰.rzE6ÊžMÓЃ< jâs†œÏÂb*°®6Lû'&HdŒÖÏ2L7o˜Óë ³Ÿ1Ì=YLŠ@“PÏaÀO&YÍnõ‹q1G‘_“.&zÙbNxŒ_üV$ë韅™>½…¾1÷39¥I‰ +ÄcÕÇ„ád8®“߈·¼ŸW¸éÀµ +ÙÉl$Â÷G‚bòQñ‚÷W…âíÌ[òäÜp¬ ,$ñ†­wÀ®iræW=ÜtßÖXNSÚÑÇ‘ò¤YtcÙ`Mr\}~F¿ìYGÄœ“K,¾hŽãЋG§ÎˆtætW”V6-¨ª"výw»è± £ÂUe8è;Y†9p8ÀÏáÀB’“c1pŠý:Šó +×ÙfçŽ Bþh›$«¿ÖR§þOo!%ø&ÖwzÖð6®7<óÍž¾œôOOp†˜à g¦*¥×2a¯k¦§œ]¢ä/Z—— ØŽ£ËÆ'ÁЂ¿é¼,XÌSZ4w/Y—(¼¨&ª¼x~y1¥k–…Þ*ê¥+Ö‚”;'Œb¼Xà\¼:çË¡‡<Èbéˇ@ç†ü! ršƒÏÈÿþKñ +~Þ‚ŸÒ–ÎÚ~pRœ\“N\Óx€Úáï+ñá >ÕE¢öÜÇÔ(¯ $2>½C)™?µÈ¨°k–RÉOϯ^'%Ÿ"µ4v¶`pß f£•Ç)F;è8¡ä\“#+×ÁÊ—>™¦RûN kd`›ÆÞaš´¸ F.iTKØô/àZñ¶èÔ¼ûí Ý}ØRÌy÷t~~Ó¢†ýÖšæ¬Ç‹—­D-ûí}{7ÉæZ‹`*\ûµU¶ùï–¼âËÖa8lQ÷ß´„ßýF¾û™>^µt+äpæ4Êû·-Îÿ’ˆ{Ë¡à5÷3ÓfÜÏÕóð(©$Ì(­0`! »éÌr°F ð³’¬ñÝÁŠ³{$ÆíéMÊëb P¤T™€ué)ïÌqØwüØe÷€àÌ0LîŸ`wÐ3çxÝâɉ .¸‹[eü—3^u¬½–=(nÔ¶CLX1ÑD„žØ3ÀîyDS2„˜euMÞù(¼›~¸á¬ý¯¦â0îü«µÁCcUœ•¢‹G˜­ÁÅSvuÖ"FX‹+üšÏŠ÷¾%¬Oû;˜Y‡*ÿ €ÉÛæØ.’œYÞŠY’GÖpCNžÉ| e\µˆ:êÂ:ÑᎠ3i›¿›X1š:û5j`ˆ¹Gí.yŽ»¼´í–©MF Éþ•¸nÓüzâ =jõd»«•ìêD¸Ú‚AvATç¢ìT¤0Hë#ý0.ЀãÚÎË}’Žî´ðRë¾›ØJ¼I›$‡9õübê'aŒQAP§T7™”ÇþLˆr›.‡YANÒ%næxÐÒé‰Ðw…KÖ“Skå(ëä¨}~îH aé}·„SCtŸ<Áßè8o¢CÏ£›B£z‚{´Hßt"êã.wIÎ:ÌÑ^cíeÓú©¿ÜÌGj PK–û©m©æ½¬f²ªc2–(Glòh€8™<Ì +\ÒLÏÂOˆ‡æÿX6ðß7Š?´ÅéøùàÄ¡ô#fŠ:7ºKž!6™ûw¿i“µ’Õu’6ä¸äy°“$9osGA¾á +þÇýåòq³ÅMšqØñNzþwrbIïü”^V +VÔByÒR­‰Á¶%êâLò‘„uJÓ„p3$ îlF]É¢V¾¦J¾Ú"IÒ´&I*$´È5òÞõˆìÇ÷|æ´*™èÈR2B™§É`Žý·æ=‘›ªƒ•¨ª>_;Ù0;2™4SEÍQ{X[còà‚ œtpaBX.ÆN#÷¡v‘PjûM+Ç°t]+b»[ÄÆwK°]Õɉˆ›E[Uø•®NSÀ¤ã"ƒL±ˆáQáRì-¼\é’W\$ÎáJ4AOš<°ì3'Þ3\&3Ql»QkˆŠK&ã¢ÜKX7‘ –Ñvð"¢1/»Æ‰x­Ø•„Ù3ÿ‘¢¥Žnu$¤V]êê ºï +À”G´MT7P’Ë,’ÈhsᚘÛGãìh73Öóó…l/£dœƘßÀYv¨Œó.Eâ•kO*(‰‘­ŒM#Ewäµ÷ƒö7c ê‰~ÎTƒ{°“èS)ÅaÎèqÇE;9bµÍ×e±Úºí='`êÝÐíšä˶y$48Y”…‹µÉÅ’ÒMäÓ œÝ2Ç“Ýع‡Ã*ƇqãT—>.!,qºçY]’öBõ{¦¸/@Ëh(‡ÒÁ\;ëùPö¨ºäÂEúŽÆØçF/Žp4ÚIí0O*ÞÈëhwx'À½¥BÛyYìèDHÈS‰Ó9£^Läµ—[Eì3Âpq‹˜¯”å'¤œ§Èj“Á_lË!¢3[ž²UÃÇ¿3Ÿ:Ôc>U—k<¹Ÿa¾œüœß°•ÝPm?ËÛõ˜ãìäQUHíIšùc(‹€±gÓŽ‘/Ô¦"Ø+YsT-ÈõIÊš?9§§ÍäßÐ.pÅ„Ê7 ÆÙ¤Üóè”ýV­€Uy ¢ MSøù8·¤µf0íÏ ®Ñ ñ¾ô€® ÁñÑ݈5;©[þL IH>?§ ã}ç|ˆdE_.Ù#ssÃÇï)¸„)LG­-´?xI0éæ‚ûÂaþŒtì)ŒD×O[GáƒñõÁ:9T0s&e2ŽˆL¸¿àÆòšô¢g(Ïm@Ž5€‘aFÄÝŠ•ì†~Z·".’ Å]£‚éÉFýŒÜtÑq:ÓæäÕÉ„ýKï¹>ï­*§á|¬,ŠI‘˜ ÓäDð¨3?yëbv:ùô—Z†šçp³rÙ×uV¨¡ÌsŽÙ(»å˜”§\ïûq«OÙ(7{Êfׯ{-'ýØüÂçËcmFMª5«V#v_lì“å!`AÁmÑšh2²²Ð´C£Ô)àáEÙd…¹¼PžÈ&]óN¾”4ýS‚˜Ç\D[äC„s¤¼ +ÛüNnñ\ª²¨ÐãÏ]«ƒýäLZ8’¶Õ´YT½)`Õ-úýá’ ݳÓÁE`œÇx¾ðŠÙþ„'‹Ð¿-zJÉùœ®Ú€1Ч­×ì¾Ï¨cÑóM¶ÞC ßp„ ¸n’uÁ:{À—N(×eðâYæ•åùØ™…MÇ®61Ýím„U“óZmJ°˜ÿcó¿xzFV©óx)l+SN‘ÀÍè|“yQ#ܼ#K˜ì¾«iE.b–€¡¶ç9c±o³d"1—ì¾ß'¥Ü$ù§gbFÇÅNô³|‰2ƒ,é.‹æ~{m6ÏžUÑòYŠen\°¸½¡ˆ +Káž¡Ÿ+ÏEIΈ¥_ñï#:Nò¶;zK×”C}Nç®Ušð +k?L×ñÙ¤¿ @“­>E¿‚¬HägµÃq´éQïí¯¨}†ãÀ{L; +2™C н·ÑiÜa…Û¢Xb3|ñ²ÞèºÏ„o´ .Ôr<ŸžŽ°Ç÷TèØ_ⶴùf-Oü²ŒØ;ˆ6;Y¶5´[ÚsGéÅÃùÅDi3õˆ`àIL[Wé˜{˜Ý‡ €¥9Ó/÷½“7‰pŽiU‘±¡†õsÃ.*¥?l"‚]ò‡ !AþÞŽÒq…Šv!Sgâ:r¨¯l¾%Áç½=í ý8c+„ŒÝŸãÕ{òò·È$ÞµµE•MK©O”BQv?³(J”)Ÿ°îxÒÜm¹‹RŒ}:é}¤!Ô Æ¨ÐÏ ÊÞÜ÷¸ÌyM|ÞÕö‘ù—û}­Ú§þ×øx¥Fø¯G±¨ªÒÚa˜(Cí‹éò0³ñŠ†L×0tÂðq‹eŸé1cƒz¤—L ¹C°éÕÔoc[ 3d>5­ë7<êLL"¯vB‚Ùò–ž°_8úvzkŽ¤ºw0‘?JÞb|½K|Gˆ£jì½;Qó˜û=cß[]Pu&»Ðè{¬½+Ê-¢6†8Rš¢EQ‡Õ)’‘UŠ”IºZT²¤Ü­F†´BVh‚[MM‰Þ¤¢Ç&&~“ÏŸiK&é4³(òï¦Î"ï[o‚hë4Æ=µßÔÒ»M™ÇøÉ»""H°Å f&Â:µ’‰ä;8á-P„ŒR£fz‹…_/1qGÑÙ¢Ù!' –©M>(rÞåê»$Û51‹aѳ›#ε5i‡6 ¾À¬{ ”E~k?šýê,C(“¶ºmà爠SÙ'iª°XÄý*qgp9a£ +qÆ?PšáeBaˆã-oò™q|¡CGI™ ’ fa°þ±¤$§›p“–¹;ûd3§áQ­Ì§ïG/'Ñn§ô{[ ×G|?‚£ »PÑaKÎK¨Vû¾ ¡:s4ÓÌ‘ ¹¨2Œ=pfÔ¶ëú)9ô>1Å°Þ—o³êð=›öÅÝ™d>„§“‡›ú©¨R…bÝ[S¨ømÁE8F8ì¡8ÔPå“Í—æ2¯1f. fÖ"¾ª-ê3”ð2®ÁíB1–öSŠwK]IKq|6 r“T2Çð´ÄDù­êó¿ÆMCX.M‹íoýàzSJ”f cÿh¬2¸ +endstream +endobj +110 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +111 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +112 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +113 0 obj +[282 0 R] +endobj +114 0 obj +<< +/Filter /FlateDecode +/Length 7132 +>> +stream +H‰¼WÛnÉ}çWô#0‡Ó=Ý3Óa ¶6ÎÞ5sŸÖAÉ’ìˆ"’¶Öûõ©[ßÈ¡–Â’šKu]N:5ÿëvÿùfyµWÏŸÏߪù›å÷Í×½zñâåÅ+5y¹˜4ª©MëàÓÚVmo'ó×ïu»›ÌúC£´ZÜLfMÝÀ#‹+%?TW÷ðüõµSÖ[°Ñ9e\í\ïÜO~êª{Ó¶ú÷â““~‚ÿ ¢´Çàoæ»oÔÅfòÏÉüÝ—å=}³\ߪéõzöúe5ÿéÕª·}éµBçîÐ]Íî.2oM'Þ⥛zðüŠVƒƒ ¼U½jï}ÇÞ¾­f2¡¦_ª„aátøÑÖƒšn«™¶xe¹‡‡ººSÓÏÕ Ÿnà]÷jº®f­Æ;KøÑ£U÷£‘ Ed츧4ƒ»âµ¶¦v¾íÜVpžЕu¥áó£ÚWÿï»Z«éܧp>«=þWµ¯=oÀ F‰†4¾±RpKABâ ¦]ñÃ;¸Ðãœâ)~uy.t˜ƒd‡Ÿ9|꿇Ñë3ôQ=T¦©[ô­C‡èL¦ºª|r±´ì±ÃãÀ‘Ï)‚øÓâ‹d0ùm Gª ‚·ÙA‡±³áO¼3`ù=~ðå-œoп–xu(ÞÂ4XLÃùÅöy±k ¥-êÑ )ïc™xýEº— ¥×êžêo9" +0T@&IJWX`xv{ÍѬðÿm™m"`ÈT fO6»Tª%Âã›÷—•nsÉ9¢7 ÃEn¡EpîÝnñ™ +qŽ£ùVq;Hì*CˆxÆhC4AQÃ3!.¬é*áñ±ˆà +pÃô;|Qo©šâ<µ‘jßdç† …@bÇ1jôólD¸¦lÿQ44dœ€hXRòàlÈ"ãúÓQ|%>òäŽi±D¦aââ:¯ þ°ÔS +ó ¶~ƒ;†ÑPîVñ]È‘)ºq¼f@œ2îH'ÙaG¢Ð’Rá*€öP0:à3°Fe¨ÜÏƨÏã“Š Å¨B‘I@*8EŽû _SJß6•È`cOÀÇ–“£ =ˆ‡«tp¡FªÕZæ– ´@® Ùc +8^?C¦˜=1;ºÞÔ:"è*ò½8°ÆP¤Ô,KÌee©äghLhµ“Èß¡‘ÔidÌhRFrÕ ]6F39 [KÕ›Qçfo1Ö¿3-{¤åb¦§geæÈYÏ@;æÅ@>Â]GºHÔEˆ@ÏL–+h×–¸ù+ÉG'o¢¥‘–›1ÃéóÌ´¼£í и>Ó•Q€iú^…Æ%i÷Ø€‰|ÔdñmÑLWëøë)âÔQ-éôHj© +YWˆ Q- ?&Zù|cb<ÒJ®T°3-4#Twü½”»VG”ô9Ï„òP»aäušÛh}Ø*§óæBƒÊlƒWhz¤fŽÞ D?[ö´r±~¨›Î›WÓYµøÏy¦])“Í)ª³m&“ÿ¸­£Œäå4ëD£Åu…VÐy6Ÿœu>&¥–zá¶ê +n˦0m•¿ ¼žÐUFñ™"⦋\^ðkƾÁ£C6B99öäŒûGFðÁ†òÿŽýýôgl&ˆà5´Xx‹L3­C±R‰?¥20¹28øÝKöÎøL²Ç0¶±ÅQ·“¥Ì´´Xf|&øM¼ »ÚÁBõ½Z „û¥¢ ,ÉùÀ„AÖ·øuIûLä}µ:áRZÂDIBá;œÓg‹O¥>¿ +}V…ùB­74å`„+%? <8Ê©@&µ‰wBNtIM !øÓBuÈŽp«MjªÞʺú•#iñFF;5ɲ"lí«Žç<)ˆÍš! “‹µ$YÚê9éŽe(Uèì E ' ÁØ1 m?ŽMçuÝôCË¡/Kcº”LúkO›Úgþº«Ú¢ò@mÀ56ª¸ –v´‘!WH‚H V:’ñ˜ùä£ÇCÚ¸fcô$p±,ö™]r£:nW>e–ì9&çR«³-Ötì[)uZc’^g·É³ñìH›<üü¡¢¤×ôpn=áv#’qhj!;«MåXÍLH¤md:ôè61äû/ Ôó]íš‚§î[ŸÖ¶j{;™¿~רÛÝdþÊ|È;‡’c)¯ Yìà墷ÃxÞ4MûâL1ÓéÌÌpÌOix°g6e|˜vu‡i +l±È(±•*Y^Œð!$Z7}ÝëÎŽ/x™F¦c–óŒKÇÄÀŒ¹g€9a$þôÜSô(FySžXã`·¨gvÜ6ו–yI‚vfœ°•å®‘ÁB.šÛTdæ&üQ¡ºãÏÑ8¤í¹!x`ÊâEcd!å.„ •}º—;×Áèw6mH¨{ˆZ4“SÄÍ‘5úêÒÓ+õ~J*`ÀÉ+^Ï ±×'õ ^€û?ŸJ5’R£n‰mèév8–N‰hnA&[Ï ¸Ð«¿É¢—ØÄØùÞØÓc­‘qs[XF[Ø4ø™û\qn•›F”T˜vc`þשºÀî`øi+ð“é’‘­Kd›³ÆÌa%‘ÄÓ–gì½Lž%¿—áw¤¾½†dݧ4öÂ~ËCõÁêfÄŸ .{{{ž%Ü[žO4_n™i‹2hC34u›/­ÅIµ*ØK®2 ÈñߨÇå…+åsÃÙ0êÊÊ6æ ²ÈЋ}¬l”å \R1U6æÑ»mèØ+g{• óvl1âôÓóÈŠêB'D)#CYã ®]¤‚>*Àå³^“ýF„ ñvKœø5É¡½ z +責x’¨ˆNÞ_fÛ#¾¼ËÐwYѶمÑÀH”ˆÍ#Ÿ_ø¾,<˜;QxLQ,üà:m¬-ØŠäý)ÓŲÃòü(7¨K¸tÒ<šh.z¤·HzBjõ®â&J89êØ`ñäOø¤K…wV\`„ë÷iRÀ¼ îdi¹B‹:WÊÁ"[Çs¨™=š+©9%”…ÚîÔ6ž–Q”,ž3-®'wgd )~+#3ƒÜ~¬Î‡ÎP@G·öt¬ïë6B'cÝPk$j;¸¥õf‰zb@œØñR†fc_C­‚H•Ñùß”Tî6r‰Òý”[‹Þ€éÃoòTÙIï'Ö ;4Kt÷²"ø6Ù«1"šÑË›?«ôr–MzŽÆ“÷Ù€ð…Ä.À`=(Λ ÓٹʣoJš²§hÊm&ËÓ bˆÅ ¤Ç„]JêWÈf4ä”A@ ÅC!›‡ÄÀÊ&µªZªm*.U&'"ÆÙ£õË ã„.aüúŒ^>“Af@ÔŸ ”W‘"Vf(ÅÙ¡o±£D9|e~‘21YOdQ å2)tw0I¿õ'ô›.´’.:$Eq6${}’ 3Ý©ÕB|¸C*ˆr¡' In˜WiíJ¨[|ÈËCFÅÕ*€mxÎaìF¤» )`¢áU'ß_VºÍ­¤YBæÆNx-i$µaÁ{„Jñ³¬b[gR4ônyPé!Î_‘G¹ðéó9~yMQ^èÐÖÁ§µ­ÚÞNæ¯ß5êv7™¿2d/òT|¯<Ë ²ÎF9û¼išöŹ„”oÁêà`'òöÐê`϶jËx¨êÑÈb¡9Ž´wÂ/ý?Þ«­7n ¿çWðÑ2ŽHŠ”Ò,°-Š‹>$@a7c7µ¤vÇýõ=7’‡’f¬Éûâ±=/ç|终iÃÄ9žú0¯Žž5Ñ"„¹§ï‰Y,i/%Oè*iíGñ5¤dÅxˆßã¬FñêŽ ‡÷‚C¡(^èÕ«ëAŽ•VBø¾“PpKÖDoÓ±"ÓF÷ë~¡²³&27X¢a˜+YÊVcE‡W¨¤ ¢•"¶ýXÓƒºã6t㤀OÍÏxp8ÚY½¿J>„f)Û‘d7Ô¹›&I.ýÿœ'•÷&¶C\\W¶(D¦(›2©´„¡†q’!ݸ‹o»VE ÅQvÌ„âªÈò÷»R½©5œ±¢³PÅQIrFöåÂПĨ«å0G¾nkrÚ=ЇV– ôIÞÍŒœ/Ò[”cG-µçÈšÁwÊ©j!wî ó·´»e^¯­Š˜Èu±ëÀâ^ Âz L2g;ì +"#\õ¾Ôðúlª!ªxs‘'Dp!År†õzŽfŽ?Ïâ™5 –ýÒDwVβþ–dü¾ñ=þXÐ#2…ªÁ€Ÿ—fcðõ<æŒ=Áp>|t|ÝNû7´Š&•Oµ–`$DA6™‹O˜‘Y1,Þü¿¦òó^ày¹QÅ! ü œmš0'Êzçx²8wå#OeíÉ‹)çM²eqéÚ£×Ó؃C¨u’ÎÈdŒˆúìŽ2 RŒòõë+Q”¶:’é íñ0΀à!&O>g-Fé½)¢šÈ‰ +—{tŽWP$.9Ǽ›æ”êªAOæD7ç]j쫉[·Æ$ûÀl"qЉÉú\eIs?ïГuwN«ÑcQßÔl +ÐD0>âå´hóØhþH +ú® @1É–œŸ`ðF:BŒõ·òv5<†vwT -ÀÎÈ5,ŽL³ÒV¶owм²zóŠÕ–¤£Ê#¼ÊH×óz-8º¸R«Õê8l¬ ·«Ps“4ú­²­½æñ…m(„á’pLìjd?±oУV…¤Ó™sý + +ïQ/¿CL"ÃZ ”{Ò9‚:Çjð¹ÝàëÆḣ«ÐçY >_ƒlòðÅQÙâ/0ü ó[Ùý+êÅ{S"ABî(( wµè‡‘©($[Âä°òn’™P+\¶çWEà&þ÷sô¦ÅÏ?a2£¦÷â—œ\ÉkIædŠ•œ•Ñ*ƒf=߃|Ù5U¸S„K˜…+É÷ëErèv± %å‹A~ÈWÜán~/7OÓ\²Ü fË‹ :²Ú9›]—-ÆØ«H`D_?c{¼ÓŽ»&–„äRíW ð,ÜmÙ,¦~ÅŠ#ù¦ürX|ùbFŽªêH N® žÿ8ííÛR§´umën×÷ܱ;¼@š‰TÞ“Ñ”ZÎ/eÆqfIJáì{ŸÆßÃþm†IaŸ=ßÙ=è¡]áº%÷P}kjËeÉïüÏõ)Öµ×¥_øÃz…³ˆ¬¸¾VãnR -ÚÿꪭµlC«ƒÂ×[µ2™Ç6Ä]LÞY=βٙ–ΨØÚ)ÑBÚöHÜñß°ÑHDº'[©õ¼¦Gy€ó™ÝgÑu^å”äÃbÌÝèÏ›˜µÝÊ!"/ç‡8Ãø`Qón.åB¯@;‘òl6{qº-ßïa:¥f*pö_jGG¶£"L-_@ΗçUJ9èv^õµˆÚ:IØÖïëU’˜/åä ¾¬ïèýÈøüÙ¼²RKŠz˜‡Ò*Êü?ÏΖLÕ­¸ $¸j• .&sIü~oth +${¡>ÆÜG +ñ&bh*C­ˆžQ;òIh:³e¨È@’ÜÈD(›.Xáúš_êœ9z†C1~8¾ÆD¿€ï$rS7ÖqB¨Q½!ÕÖp.ƒ$ iZ~‚Ô÷=þÙ×óDÅøLÀ—ø¨h'ãËhne2掛wÚÝÎ+bmý 5ÑY®˜W² "Tð=ÅäÈ1ðAÉ>öBYžœ+]ùX–ÿ^Ú™´ü¿n¢>Va²â 'ÄåXˆá>ÂlI%>’kæq#ž…Í϶@«Jà2ìhÙqTÉãëÐcºñšr·Üš[3ïrÅ'1Ý!*>y8cfYj@Ǭ–ãI +B"=91¼l˜üi!¯Ù<‰•x’)‡ ûY ãð²àq/CqÒ,ŽzŽ1ÈëÌH7B‰g3•¯EJÄm¥×ìl;üïGüÖIÐj„~Ü¡SîÓqO½ ¡ÇÏ€RiG©ÔIük1j£ÿ?࣊`sæu8œ†QÊ…CãhêÝÞ5IuÆ&@MVe¯´¯ÚЦ.4l‹_;çšATÂÉ´ñ@ÓC¢h'™µa9æ$Íjñ/ s•~ÊÌâÓaÑøýÔ„jõ@ ÓÔ$·HL`Iƒ+#?)†Bhrw«¡¢c(&Âà%µ„]’dûVù\­'‚lé\Ps;ÀYá4¢Ž¬¼?ÓÐߘOŒÞY[õ ža”¤6¹À‘’ûZø† ˆhŽ y®«8d2udA ’«8ÛÞ™jü0}‰mPü˘©’Á ­àËáóM9jöf(d–!ƒ\hFÞ„ìiɃ¥õ?44 ³(Ù×z—vHg«ÝN¢Ø°X†+³G(-N3éz° Ä‚à1bð—)d2h‘L*oí“ÊQ‡/·8;Ü‚î ìŽSìâ™Ü0Ô:ÄÉ1NeØ¡˜ª”ªÉ ÉV«n'ã0‘Is‡¬åÕæ„å%G·¿£-ã®Pm;"N‹Ÿ÷ +¢Âf é +=M3Ä1?ѶR¦À;çJ¯4y_²Œª`™ÕU3WJ%á;oÕÀ–±éªxUšAG:^ `÷ +"w&yÂÿÖ0!.³E )ðûˆÐÌ“?Öm`« p‰?»Î››‹GO^¼lÍÅí£'ÏݯFsrþˆçc4#T/ ,;—SÆ7mÛúo×mZ,‡Ÿ®:t«Wõõ}p†Ì%^ÄÒENN,ßGMôʬW€èü¥Œ¿:Ê«£ÿ4^°;$çý¾4ïÙ¤œ¤ß€ôk¹ãÔø¿N1ª¤ ÂøÿÐ^%»mÃ@ôWx¬€$)kaÏ>÷ÐåìÂF $(Ú&ú÷ålä )5*О’ ¶(μƒà=wùÏ€R8+pDEÿøµ4:Ƨóæؽ¯&@j÷éKö¦oݱ»Çx¥«` …ñ%WÒp ÓÛÈí.[‡mŸR˜^ëE9ÐæD´¯YŠ3ĪKÜ’ƒ0èT—&BÁEÑž%JA›Añ‚ÅÏ仸·Ÿû÷5Ö$/Ëz÷S f9oîwÓ{2qÞ¦­d–dÞk“³3ÒÆÂQ÷xî¼De“RÊ'p€œ|ÜWëmîkµŽ7Å`­“xâ& +}‰¿ÇL*ç`>Lª&»E“Ü%Ù¼r2¿PìÊË,œB¹Äp +}RbMÁ}îðœoî3Ä«¥Â-[$£Ý¸Ù¶¼%lÁ²k†…\…k§SKó=/$Èÿ^ –)ríµ˜”Có_¹·]Iß¿"òJ3´ªPÔí(Ñ:Áë.Úãë*† ¾2"E˜#}¼$tª"7È0?M†¬?ˆØÇ*† puÊÚ˜:97)U£êWšäØSŠ^M,òìtûsyzᢅÅ`¬÷~à9 N†´¡' +b¸—¯JMÉýã?à¸#»¿s'Ül?„º›¥—ŠT™çí™ù^ ŒÑ¦ËˆH 35غQßµ°k}ìÚÍVø= 9_Þü¢D}?Œâ¶Óe¥ hë·– uq ëÔb=½Ù‘¡¶¤K¼oëñ´¶ˆL[?ÜGâ>üú€_ƒrdµ`…©é©ó¾ 7+u`i ˆ6”V¸·ŠÔIm#¬ÚGêQeAŸà­Ó ¾sOøøƒ uri~} •TåŸú-M̪×Åú½"¡¯”¦8™½J«¢ÍL%‘)¿Ê?å[F¸ô¶)‚HÔd]-TF`RÈ£4Tw¾$üË£žÐçÌ[‘éTü `¸ÁÛ +½‰<és3à÷ 9šyÐ/_\æÍJô)ÂÜWúší"æ˜ +³72X¤ñïÝDM‰VøkÀò[€å®Ú= +endstream +endobj +115 0 obj +<< +/Filter /FlateDecode +/Length 6054 +>> +stream +H‰´WÛn7}×WðqdFM²¯‹ €okx;»ñø)^£«/²¤Œd;Ê×oÝH{¦¥Öb¬™ž&Y¬:uΩÃ'ÛÛg›ã[óㇿ˜ÃŸ7wW_oÍO?=}þÌ<]T¦ZùÐÀÿuÌöüàðåÛʜ߮Ýï•qf}v°¬V¼²>6òá»iW¬ݪ1Î…Uè›ÞøfÕ4-¬ùr°pµ]:x±>xñNúÂõ¸¶Ço?þýKež_üëàðíõæ#üysyn§—Ë—Oíáëg¯ž›Þ»2ZƒA}Æ0‡¹VQV%}ð(W­ºž×8ãB»ªÚ`:߯†ah1Ìßì²Yµf±±K×Ãe—ÖÕ«Á,NìrÀïíÒûUM?TøàÜ\YxÒ›Å7®=µ~åÍbk¶§¸[g7¶^³¸†?Î,®øÛ%AgÝàNnðÏ‘…èðø>\àüî[\u çÚ;sk ãÊ\Ê!|£æ7*Ü÷£å+äóä½¥s´³%†úÕúopK·†¥,‘–«°f ?„2ˆx„Ã…é¢&­Èª][Lå©ygý€` +|”7®ñXØŽRxbÞà­\.Ü{9HWƒ<³®ÃGÉ€—[zúpiùoÚcKÇCŒwößë$tÞ‹?_à/‚*&°jÀ­ë»W £ÑïþAï! Z>úrÀÐ.xmáìA,uÀD1ï˜SHÐ;»l±do°öðý™…÷×ï­­=Öme^Ù0;·1H‰º¡ðëëZ…ã Úú{$Í#'0`µLDJ.˜%l@•Õ~{º ˜ÔFKj‰SµË¨¤3š[JåUÛʹ껤«î¡j˜Í·†_¬õ‹³¡Uφ–ªø# Õ¨ý‘K'I±n††1ul—•0 aäPÀu†BŽ±î®L~ƒ—W,u e&Ì +…#Oe¾È5 +X̦*ˆfŽçBrϱx°ß¯æƒ¨…5®½âsÎi¥ÃÇÎEBçV dŠà‹h¢C]†Ê%U“Ž9cøÇÀ"ÁïÆ÷ȵb¢ÔFd¤ÕaJíwr(ÈùJ²{f¨eaû7ˆG†WnMDh!"üò"Áp6üÚ~û‘§pñäu#Rk“.·åAmÉKœ¶µTS‘QHLO„A¹µ„½c¼¿§—¸ñWóoÞ«ðÐè¸l!œÐoléŸ]NÛ@Ÿ€ +µÁ0<}ÉØ»çïDw gfm[ÏXZ: +?D„:¸À¸z ;ïB–m±Eö +\u³ø Ï!^ÙØŠ™jIÙ:‘ÇZ¶¿Póg'þœXê¿›ù)Š”EÓUE±FeMÉ + h%ëÄÒ’ȶ©£€HÃU§ Ð/ž)ûe¢õÎMR,2©•ˆôQ3ØãUÌîT› “´Œ5Ñ.ßEû!F†i?SfŠO1¼¼M2&,ßÀ-qTVÅhÀÐ}6â>[tŸ…h!‰eUGøȪ-{J­n®dÀ¤ßHß^Ó7ñûuä\ñ`­VÚ¼x6¬BUE3¦‡„#h&—p”™ò¹dr–< 7÷ŠC²žþ`´ÀÖÉÖfä‘FÚ6Û¼£ÙÈ(qm)»£Ð»U«ŸFDTÉýk'R ~ÿðÑhO•îŽ¬Cìñí0\³•zQ›Éùxp%Úz +Ⱥ —É6J»ÖÌÉEÖ»]áâ8ÐDÛÒ0Ýìô¿¬ÉbÔ’øKlݶXJÜöÁe£ƒ*Ñ üÇÑqÙÔdr™ÓùTÇÏ6&‹Dê!–Ôâ/™§ÔU…f—¤N´)j¦ž¤Ñs?$[áß] Ši‚rE ÂçwsÎרȜO1q‹rzkÍ.2ÎG‘/Qä§PÔ UBÑkAÃ{ïƒ'Lb¼$$Íž–ÎÃÇŽ + JãOÀY^dkC„*¦@™¿kq†"w¶+ÜޔܨÄN>á’f$)÷¤¾&Í5™E" ðy¤³¬È»?زè;–˜¯9ð5+~(ÈnZ)ÚØ ïš †¥çßƺ¢‚ÜL‘AßM»Ž²ºPë\Bp¿°MÀo96‘]óÊÒª·¿@ú)ÎC`Äë+Ü{!°~öÜ4šO¦ c¤Kyi!Ì\лzäè§ÌY ƒkvôq\ùˆY¨ Ã=5 ub¯ßžPV:®%y€%ÍHq&É£K-Fªa¨>-ñ]Š‘³º0Ûè©ÇŽ›-±ŠDàmΙ@+ySæ‚ìœe;‘U¿ˆ~!‰Gµl ý«ªB‰ÓŠVªu+Ýðxù}rKåÕm.ø6æè”uÀ)w’ ™D06ÎxŽ˜ÕfDwn +Pu¥ÜþFnsBM?(ñe5ËIÂÞÅ^ÖÙJŠÆ™È¥)Lýž›3˜=3þ’'7`Á]OB6^‡x"K\ˆÜL!ëNv¹—iòâ˜d2€­M™»f¯WÚH‹ìé‰íF¹œ¡—Ó¦‚•[bÝ£ chÏFC;‡¹Á\]4çû) ¡@& ‘³ÓtX¨”ÉØ2²ÛµØíú¿²Ûv`óCB.×”T?’Mš+j¶e»ž¼â[Et9Ÿ‡Ý4’vj<4YìL¤óÄ»Aïà,Ï +óã÷OuCQ—M€'Öd]/êáJÜÓ$ý¾&‰ÞMðÍ =“烷ŸoF$:;ø‘hÎÈ’ïë?–C™“hýgºDB+-®æF¸3D_xÔ| ŒhR„vÊ:] õC í•çl|ÆrS@–ÝQ…îbl~ÙU¶ÃµûÝР³ƒÿ°^%ËqYð#Ánµ¸sÆáÃ\lÎM\Z”ÂIwKäðï]o«z……ÃöÁbwµ¼—™/3-ܶÖ\Þþ#õöÂŽÚÒQÓ°°ýH ¬ûä3Ì™O2gæ0""èPwX÷[üÂÁm°w;þþtàê¤~gÕ‡Û~gMOÕ‚R%òSXMnáeè. +>˜(X5 "$WøGàcX⃧ñ /šÇ' CyàØ }=?E[?æCm­ph« +_¶Tà–kÛ­%Òiº6Pe“¡éaßÏi^9ÔâÇEp椫òÙͱ²X™úE;ƒh§Sxc?'ÖF;Éü`[Þ‰Z•ÜYÖ‹Ëö-/Ķã‚!I%-õ[:Ê*9Ê y/Þ‰]óTêÒœ€…ésÍk² 2ÔU¦).¦µœ$mµÛZ’yL%‰ÀýÍHé6Ì ‹íó?Xµô®Pzv."Ã.ëÍ´›«ó_YÖm'e›ÔÊX|š¾ai~ÒÙmÞO'j2°xªs^;§ËÜ +™‡K£Á·3i‡(”a»ŠjïIí£2tÑ¢ýô»ÂIÔN¯UÍÙ©‹ÔcŠír€/^—˜#uRb €„£<˜!ÃÀlÒÓüq™upšq‘MTÔÜŒ&¿EX’> ¬¡ê8®Ä&uqj oŽIse¶ +ĤO4|ù‘è %M÷ÊÆ „ +¯Bo,‚|ESÜmœâµcXãF‡*:Hâ ï ЀõÚ.ªbb¾òS-î X„!þ!Ë2Ç°$Ãý»œàKªfíhŒ’’û¤z—ªÕlÊæ Æ­c“òƒ¯¥kÒf%w:gäf,Iû‰"͘mg|Ãv*¤–Q"ÅÉ'Ðnm•µ\½—ÏV•Êä«2±þZ‡ª«\œ@½qsJï4œ³Xß2V¦EI£dTôz×ì0K2ÍvÁÒVOœLb߃ämO_éM׺ €\Ü·Ñ;X•.@QíÔÞö+ö¶{ÏÞ‚P‡Š‹JúÉ€9æ»×NèD"ãšxÝ@ªU&‚RI +ÐØ´Í'km3 ¼ò”, ü/ç—©Ëâ‰fŠo{Æ+‡Ú›ÉãµÊ‰PqÏ;Jž¢2¼Um+šÝ·çõƒÊbéZœG±~…¶ÌKÃ?€›aÐŽh:É0W¡8¨00ðTA|"9ÉVßBD6‘Á¢^}áÉòÚôÌ{mûk“Os#жòå>7Ú*6¯&“t§FÓ‹h_ê&"nñ$—¢— S(r(h!_R¬5k ¶Cþ%£êiøN⌠ÅZq +ö‘w§ôÊ@E*±Æñ,qÄpíw¼åvõäJø™˜©4ëÛ~è+àœ™­f*¶µ™Z ©6xåúç1c’ïDG +%­½Eñhˆð{ópR^7nîuYSþ½r”{U͈Ø×™nÒHÓ;‰[’Ñ”qþÚ–2ù¥ûLÂrŽ?ü{±+¶ÐÁIJÓŽj Ÿq)®tl+2c·ÁákÔlwøÑÖ ôP:@Õèæ}«>¡,Ön‚QößÆ¢1áÛOÝ;HùßYˆå9$ÕT¨fë`ˆfYXš€ÙχM/P@&Ž™Yj°ß#9de -›{çjK“:µRàô‡öÄ: Dàjñ¯"íèPnq^‚1œgÑóœP-%è\0ݦ"}Ÿµ£eUþ|n0ÅÀ‹·Ø\½-ÙVWîȯ³­ÖúU¯€¿ìÛ5ë)·NTP»ÃÉ|\™\¬+‚ȉboþÞWSöÝ0“ÍÂö6T¡nï×jÕ¥\WÕÒõ­ä?çËUcÖ Ex&úÚ¯Ìóí”ṉùú@Í&Y¦׊685îÀ¯´ÓŸ :¾SQšZï%ܳº‘例¬Ÿd2«ÒqÒc½\p凾âY¬¦¹ž;ÂíešZ÷T‘©c/¥Š£BwMœ¥Ö¥9¢º½_äå°#U¡ý_tIh™â/'Ž¡¸a®µ|O`Ÿ DÑ˫ʦÛÚ¦wÊÕo.âø†LŠkÕÅÛîZ{íZ—Јo¤–¼ÀPrŠŠ972½ÌWñ§Z1M­ à6~æoJœpâ9¡ ¦à.ÜÍ;=À‘žšÐ‚ln®n_Ù¯}p~Âd?¦ +·£é’G*£â¸”ðx|I‡ùm>Ÿñê´2³ S=<%ë‹–­hT£LØ=eÕ3ox ]°W¥<| ÇVRL—n_fÁ (¸SrÒˆ“Ç<ȆŒò¬L2ÆøÌ$^œN% ™,šô,M•DÓCÔqIŒá_U×îáã+I$ Ê"ÉmŽ$½r\(v}´¯(omCr†#÷±8@|õj꫼!c*ªŠFÒE3d¡ö3­um¬ó¸¥yÅ%®hT¿h\S>€67A›]ƒ[ºWöy¨„T,c‚YáÙb\9™Yn{£IÅSËTpWÁÎäÑË:OøÈš…Iܤ‡–îhݯÄ`pVû ŠTyOŽ\—dÀ+Õe`.¦kØ×zUžt× Þ8ë‡B7Mt²¸”fæªÓiÃä—æßöþûºÿm¿ÒÿqPÎH;0iQH¯iVq~ÈÓqO›ˆÏ ¦­joÞz025×Æ¿.S€2ý‘Ø B¾@©Um Ø$à˜+W‡[Cò’žT.âh´ÁƵJ¶s„ÎuÓ8SÝJfµuœÈFår` T° ™Š“fñ’J‹´ñ:ý>ò˜ÅO¬âvèÔ¯k»è ^9˜BäYh –¾Þ¬Ÿ<Ña‰#M$3Ýá¤Ëic5Ü%‡X” òØžð̧3öÿ ðóõïyè¼Á–No<‚Åì•žïr‰s9ó4‘õY˜QæbZâSc +L-ãZ´dµ!\bÍ·C+NBKbÕåá?A–Ìw±†xWÙYdØ\dÎ;S=ÝßGVÜžgíèÄ;ß‘9Û¦‡÷oýö°»øW>zKÓ‘­ éÿÞ;s¼ûéç_~oÍÝ駟/»ÿ9“óâDºÞ +¬&Þ+štØvˆé_E[,/O3ëéx–0ÔER–¿·-à3ç5úúMÌM¢˜/¯?›Ú憵ëØ,ðïˆ/ô´}O0¼JKY2Dôæ7Öºë&)¥¾7Cµ¡œ$Õüd­m<¾yi׎ žxEàGÔê³ö [°µ…‘³½UÃe‰-„2R²tÙy?ÚÔÑÜgv +?šH¤éH;<ê¡ Ð-ËKßSÍÞøééCd¤|4¢ópt +‚²"•÷NÞ‚&"„Ó+ +y—7»É(Í6ëZ’YO"ä ïyB#k%gGqNùöM+þ½Å­®·^2Þ2Ê#K*õ£4ײ™Ò192Ó…ÒWË7eâ!LF4„BÐ ª¿ñ\Ñ›G2+–ÖˆX&‘CÁ<å² "Áå‘(Y‚ŒÎG93´ª¼‹E £"ÈSÞ·‹äÿ2©‰¦\S­9廉ht8>~ð`L¸C~˜ô_uì¿·É +endstream +endobj +116 0 obj +<< +/Filter /FlateDecode +/Length 5919 +>> +stream +H‰´WÛnÜF}×Wô£x(v³»IAÛrŒ,ì 6`6‹`$deu³FŽã¿ßºõŽ(/43¼tWWsêÔɡǫ‹Íù£úᇓ_Ôɻͷ»/êÇ_¾VG¯ÖGjjÓ:øom«.NÞ~hÔåîèd­o”Vë‹£US7­Uës%_¾*_wðüuµSv°µ1Î+ãjç<¼sst¬]µþãèÍúèÍ{Øé3l„ïã»°<þzwòÓM£NïŽþqtòá~s‹¾ÛÜ^ªãííêí«êäýëŸOUßë2Z…AýÃÔæZ¢¤ 0TãqÝÔýÀkøÑÕöNu¦¯‡aðâ¿ŽªôPw°áMµ‚#¨ãMµÒºÖêøº‚Ïî¨óªÇ;w=ysViSø¤ñu«Ž«ÕÞì!Ç·•¡7鬴SÙ- ÿ?ª¯UëjŸÖĽ0ŠjåðóvúÆ%]€Õ®à \yݯágƒKÑ.ßÞáQ<}jÞ„¯ŸK<°Bƒ¿Ó,î›<F‡9ðød<"l>©˜ŸŽ# ]Þ¾À+·å;U‹ÏŸÃ.m:➤Ä#>T–®áÿ— +.Bºï+;Uý{ý·ˆªƒ¸19nz‚ŠÞœ«:më.‚"‘‹¯³B­LƒÇ¸Á¨,^§SÝ*Hª1xåv”"ü2MR\–_‡álp»Cä\sn¯(1çX>_ –í¹ Y¶ ±&«¾z þ©#$'Ø…Ò™¢B.À jµ®††J¨""é(—' |ß„HQB>ì3`©À~’ +iÕ¶ÁþYµÎí3ÐHÐí$4pòapŒ„-Röü „h¿$uPXÜ–éÄ™¹Äút˜…1ý+Ê뺯´/D1øò#Ëg5ªrIèÅvJY¦3/1e«  ]Á¹JÇ=$bÐëaoYPf¸ŽÙ²Ù‰*²^Žê„§äÔE¤x0sɘ;AñÄ ï8–¶F”ËpÉ1O&À¶æëíˆXe°z‡î+Zp[^†um³9¶è=cÔØhܸ¾€Íñ*ï{Ww¥BÙYXú²*GKÏZuDXjH_^¨ Ȫ¦œPŽúXáˆ É <±Âk=ÕA´ CÚ½"U2sú…ʤO]*mbæN´4ŠÕVؼcÕºâ•Åï¯ ¡õø"¡·™¶Ì®(|û“ÚUž© °ñ©³ˆ†]#Ë ól²A€}ä‘Ž'©Û²0R¤]–×3øÄÀXN~ï\F£‘±Ÿþ >]Á´¦-ðs¬ã³ËV_¡p@hgj·Ð±¡N@˜®wÒN§<& …ôŽ+ª‡§zˆ…‰8ÃÖZ)3)£¨ä†¥’Àù|]©Å|@¡x¹¼íc" mH»MÁºD6¢å·,Ÿ¢Ém÷Ø­AõÆìăÉbù–ñÌ›GhÂlaqÐ=µµbM;‘«e£²þ¡_F´ñiã…1k³V—¬ÂbŽ[Ì‚~! 2Œ>ƒCÉ‚¦éçYàºlºxû‡ 8ÁÄ'7\¨t—Õp¤Ó 3¤u‘s0ÜáJ½1âM“šj—SX ÀŒº“vÜÓr)>,Á‡ðôMœyÔìØÅCš:Ñ8Sédw¯ç¼t?öFÇ2ÁL‡“ìXòO+µ‡á…î†O¬(wsû‘.÷#áMºœ–-È˜Æ ¾ôh>ï‹á<4á±fÛlhùX—‹©´MÌ{1íÉSØTÏŒ&ÚBTƒö°…äb_°t¥žª’g-Ìn‰ÍY³»Dc³ú?9EäÚ̺„¬C·£=”zš¼SÙáç8ίjbO¸'žóÏäÊC+ÔôY/ljÎpR@D7à~µwÊ›!gÞ&®/ÞÃÕ¸ð¨ãNÐvm\î4±—Ô@V˜Ø±(§Ë0¡ìkHmf¯f††n„·ç ~~hxªå󪪦 díËÌÍäZãÄÈ‘œ…nb_K°-ÞáŠ’à ¥)©‡nót&f?C§Ú‰NéiÏÍp±¼çÅÜM»+— m3×i(ó+Cpú(éxØÃ5ÉÃÄKM‰=rŠAœ¢|p“:¨ W¡Ãåcõ •®°I¨Z©!œ[¶°ÀO©äDøoè‚-¸Ó§ÉÎdåSu"±:£E²tââFhÞô9ù™+Ìî')Ø•+7^ŽBW@¥ÕÛ@dP²[òè!îÝÆi‘É£J´PMz>{2èÒÁly}¬ Ô"aÖ^WŽÖÕ•ëñ‰F…é@ý³òzo…Þã±lÙ•gF– …–ÃÁ/¥ Ï¥n<øýPs½Ï¦€·‡‹›D:úß%#bS¢·zÈÈQ®¼Í‰=g±Q/Ñßvy?ä‚ì̦ðùõ‰4õ¨ÃRÂê#ÖÛƒ>V¾¨l»Ïa¡~~þBl¢wfPXEœãÜò9®<4Íuuo)†¦É€p²Ö¿Ãœ¥Ö4ã1 Lòɵšá*Mœ­Ñ³â§ÞˆµÀÓCɱ°ÀLqøq&W³g ³Æ£¢ ÷¬I3:f¬Ü6ÒÍ[.C¼‰dU ä¢ã$ãÀsFª*¤lŽŒeÏh¸ø§§¿Ó奜KØ ·²0ŠûÞð†7a +K.N¶.’½n8×ØÞû6`’[×sÊßTFFŠ‘Ò,yV™>süQêòBfÎhcÔf®¡Øÿ¥¡¨”ç¶eJ¥-§÷Ø$õaXTä"áÞg¾ÂZáãù¶åtB†áKgð·oŒÒŽ.k¸¥*!§{ˆs³S¢‘N]Ç¥ÙïlêGÖÁÎø\k†Ìç¦f¶Q_Ë l#ƒ%G'ŠSÙr.³»‡ƒi1‘-å>šÙÙ¡µL–s@Å#gÉ¡'ï'dƒªW¤ïØÄ£Lë}θŒ›†ÑVzmø'äQ0P«5ÍeC¶LcËí|ÜôX7Øcd!Ž¬ï\22"AÍ{Å–8… =Ë‚nƾv˜§v™¯$™ncrÄ"}ßıcHóƸ1ƒá€ØžúH_“÷ùï‡ÒxjJ¶¢q!æ¨v$ eÜõ÷¶¢°ŸÐôœ#Œ«ÏêðîE”¨eÕZ¤ãɨNg9H*Ǫ·\ΠðecÓ3€9+yË•±¹e‘‚¢ÒûÚhÌ‚Ÿ*Õ‚ƒ^|¤ÅGÿË{µôFn#áûü +G@º#‘¢Ç òØÜ›öb ;m{Ûctãñþú­É"E©ÕÙ —ñØÝ¢ŠU_}Ùì°á¨+#Ë%l<]úÖÏ´‰–“LïGŸÈLÊ…¸ +}fû ýW›äØýR‡-dƒhÁ¢FhÖyP÷q0âeÒU +4T|Ã’½¼ +½÷›ÙŽe¬/J +Ÿ–y{ëlÆg¶_hÞ`”íRàò¸ë¸™Ã‚ÊxL’>؇U[A]nŒW°ŸiCZ$2¡Ųé„LuëÓ˜ +ºÔ)‡¹¹Õ+ùÕ@›­ëû¤Í¨’ËU ìMEó¤h†ÙDݨì“R(¥e‹Üý-¹” %¤Cu—¥Hoà€É"ÿ·& p7Õl>0÷4$M{_mžÏoÙ‚k°]§\à +͉¼Ð![écîqÉ+ →W˜Å òŸ)™ó‚ÌÌ +˜Ç³fÐD²XóÛg7.¯Uh+x½QC=qB¾uþvh(z +yªUVƒþ6•Ìz†AGoÙo¿Ob^÷nìÒ;µÍ°ÚÞU•3`å_µM½Å`Kµh¸8´Or9ØÕ^ÜR¦î+Á»Þñ®ŸÙtÙs'{î·¼›³øRoš¤;¦Y’«¦Urõˆ*Òb!–BÌÛŸqGú‘,—ù¥ ®Ê„-qÚK²b _Xµ4x 8…B*u=dU\˜f²Ñ\ÇíKͨ±C¹}f”6DF·1bGvÞ»Ýðp\¿^ÊÙ¢y ˜A¬8û’hå›ÞAO’˜F)®+Ø‘íÌ,g³à9Í`¡¿*„dž¤J7uøRÜL{kËÈ•Ðã÷Ñpˆ’^ßs#›kdˆ¢¿`;‚4¨àw´Ò¦ ½K±• ½‘Äo}¤; ²)ĹY>ÞÍcäç íá?&ºûµˆ§/å²u·~Ý]²îf¾î½ ÷Py/?}D¡|.M‹ìhI™%†½U/X˜–Õ3ÈÁ¡œëÜ3ߪ9CÒÒ;eÀv…|°SN˜vóZP:Å-ÊBÉQlFËŠ‹î¦qßô“I ²ÝE›ÜE·ÝÁ¥Eå·ß·2¸ÛBh¡ÌdzÞ·kç‹ìÖ—ê5"+µã~¦<Öu‹/Ù6ñ*¢`ŸýËYì¾ê¿‚+EñåT:7ŸÇÉt~œŸËø*¥¹ø*RÑ«÷µ³ø• {v™?c½z–,§ú š_*[â}M-2µ%-n£CÝÐ>¥³ƒb †îïpo€„ØwB|„Âz$ ·~…ÓwdD|~.ÕÅY¿ÑÈ>BJ§ S"þíᳫºîè×}õO,Ç$d!I°žR9ôÕ9!Ñq…DA§z¬æØ6®Ôû—|[á Nï=#&t®×Q&“³¢¬£^F_{¥(}ÚŒ´a *œ]@…c +âvI“±ø É¬ +R­ 51†¼ñ"³.¤ ½¡kù"å‡Àµ;Öc"cÌŽ†’©OsR—©«òæ$·yö¶Ig?-˜¤"än¦ÊŒ…ß¡uíB€žû¦N5îXhÈ÷’ïGΰÈ"‡tšCŒe-úþ§§0æÄ" F o+Hºfƒ VYõÀ¿vßÿNn““ô¹ðo×Ùêx÷îÛŸ~iª»Ó»o?´¿‚Ë®>ܾ#•¤W÷•m€J&pÍv€®ŽÁùŸÚöLË,¾Ñ-í7æ'’ðûz ÷ŠrÐ3sq[°¡€;ö­“˜:jâ ô‘-E·Qœ®™Øf8¶«þdì8­:”?Æoð S<Ÿë5†3 ø`Ÿ€y©zùñïÕEO;mT§u]7íG«.¾¯6Ð.‡ãÀµùá<óPŽXÊ-6ê.4*éÛ£¤…Çšv¶5ìe”Ц¹î©É@7l¯q÷D+ ÑÐkMK94B9¿¢ÁLy±ŸËñHL2`bBõõ–'º3tã7 O-²T~›ííÎv!¬ElËo<º’Ij”+È¥°0” ”¡#Ä+oТ¯þîÁ¶„±í©I—ãËñPax+ç3±}”­õ£÷ÝáÙ=å§PmÇšXöTÉÓǼ«Û›ê–¶¤·{Ó ƒnê[ÒŸ&ܵY9¶~²>#£ŒtàÑÐÓUX[ ëWië¡f‚òm~–¤ŸO¸\«3\~r•£æ)¼Ž»‚°)hû«›1óö) çÚi&¡âý—þ°tøù{½³‚{1Ot×»pÇxCÆW!Ÿ»Ð©äÜ|žìºÙyc@k´O»ò?B£ z +endstream +endobj +117 0 obj +<< +/Filter /FlateDecode +/Length 3790 +>> +stream +xÚÝZÛrÇ}çWÌãN•±Ø¹íθ\®Š.t)‘-Û¤ËqEyAbL JV¾>}™™]ä*ÉSJU„°;—žîÓݧ{0ÿÓîpsµX¾ùfþnþvñy{øö[ñâÕË“ùwg¸Þ‹ç'¨µq¢¶ÖˆÝµ˜5u£[q¾üùi~Ú%ίD[wN4ð¯«PÊÔÆ;ß¡]í\«´>©T+Ïÿqòúüäõ÷/amXþ|Â?oáϵøçÉüt݈WÛ“ŸNæ?‚do›kQ­6³ï^Èù÷/ß¼M/¤ÊBâ?%~µ2&-8?U,šRü^•ruÚ×!×ìoÕRÎB­ªÝJêZW 9ƒU{9sðp%r¦|íª²­}Åcnà™«vâNZø¶•ª«CuKo¤nkSÁ,ÝÔ-|…g°AKÂÊJÁš·â“4 +^¦Å(ªºF)¢O0ÿR¸2Ü(­ÁkLS(‹öÕW”k†Á¡MÆÇ©Hy„µ>+©AÒ-81ÀÓzNÓ½KPpõd}maÎ=«$G¤b(„)`p%Lw ¸7€Á;dGù-Àyz½²wÔØ{­µôˆÊýjCsƒ âÛ!b¾· 31Œxò⾈’d6ÀÆØ^éITâ¶Ø`ìù6ÀÊ3æG»ž1 €U„£müš“E´1ç4BÊHÖEO©ú@©·Ç¸ÑVÃÔ†ÓPJÒ'fŠ%êÌåÀšƒ¶„sÇaàºí¼Cñ,l_À±2G¸ád¹,²':©ªÆNÇŽ9³Ä2ž +…º( 3ßÐ%Å Â&)áY±‰\ïXÀ}°S9NªÅ“¶Ì¬ &}joÝôqf%JÞÒÙ%'>_ +Å0JЋT3…Øqf=‰†Ž‹xø–Øõ®äúèSŠÒ™ˆõ$úypt8ÔØ°fÀû˜©ð0Sÿ2ùíP…#d9«gq3ùÈ4L¶Ýƒò¥Ï8Þ”Þ ÎÒ㱉d8 +_ª$S û4Å襑`èÁ@éZŠ=Áø‘Å=‰2ö78åsúãÄ’¦ómgGƬÄóFè—}: ¨$(AaÝöX\ðX§_0žqÌìKÌ!3á`ÝT1ê‘rZ2¦öáfÄYûB&ÕÄþáz\aàòœû O³Ù LdÓb˜ é™àÀÖ±ç1lxœþƒ-ÝX%,ª<ª×N€¯]Ô¾ƒ ¡±ðg0Étå$Ý@*l Oƒ5ïÈÿþ"¢ÕÙè¡s¸o’†¦Sb¹¦>ÇšVkaµFÜŠ³“4§I"=3ŽeÑ¡ó(„¾V;¥ûYÀ§(d9kVNƒÈ{l—Ú—«Ù«×©$oF¥¼nqԙ逋u^Áÿ—뾯Ó`_ûGËù©æŽ¨w@Aë h›6êŠüãF S½cÐüU@Z«ŒÔ õ5sA,¿ ÆÔß(òuÕ±JyGÎÓUo%Æ­wžºê;t%,ÒëSqúšœ0TßSþèª?aê10q†Í—×n|zø3m+ØIçZÖT/QNO_- µŸ¡«p¤Ç äg"®ô P¼ W°¹U›ß¤ï§L˜{ÑWt„B®vN¼&mÀv¥`{¯öM€?­bƒG´pN×F°P³³Â@|…¯ñ4Æ:PW1FªÂR¹Ô‚ ã1ì&?Çøs~—Š;rñÄNçÒRë(èz¹TZQݹÇ˦€4Ï´Ô5pXý_ 3xA1¦ —ñ}, Å¿„ñ V“ +im¾¬ÆN—ózp€ÿ5mMä'&ãÇXl¦#+îåüÁäiF}?N ‘ÏÞÜ0ô´+:"f¼{ŠŒÏ K`œ [{Ü#0ÐiÝh5†Â¤ßá¸gÊóÖêc¸ 4è /ÑÖbi f,·ÏãmH½¢ ù™^¥b›h>×õ\Ïó‹XšKtï[ž±ç [¢‰8BQ[ð(þÙÆm¹<¾@Ôr2Ðjmj<»¸ŒcEýNþ¶‰OûÞu¶›øŸ–½˜ÞéõŒºï(íÔ°€ˆšÏ‚Ò™xƒ`²öï¯eG?#š€©ÇÊÌ~êA6ß >åFO«‘,¨¤ädjvºÓHæÃ*ú:S2‘*“>(ãï—(œ»Ì)‘Ò}†‰Åë¸ô¹ú¤#R×KzŽßuÔªxÀî°>ô©f–˜‰ðàŸ(pÄvlNâq‘¨~È´Œë«D<ºc€ÀœFÄü(v„;Â3ýÛø5[£ð•c Ñ ÍYíð¦t]nŽ¿3áÖBƒY +ÃýLjC±÷ÛõxÁ‰žîw…yoµ^Üâ#òÅ€qÃ1‘‚µ.0x 'Ñ/×Èçføcô#÷ìJQòÕú"^fyéõ–/M®hÑÁèÙ*^ünÌëÀœÎC/ùÒ|E÷ üS?„OIç_K²©æìŽ|–t7DwOS_Î’!Ãàט}î~ì‚`ìmùÁ8ðEC—©‘wäËM /d—¿è6ÞŠ„ê5])éP?xqT¹õÑ|ëƒ3ÒíK|Ðo€Ä•¯YTõ"Þɤk—~0:%_M™ê7ñ’³QqKƒŠŽ—Hi§â-ßì:ÄUß\ßïV JþñbªG~ê/ä¾8/œƒtì„é ¶t fWãíàn%~Xˆž·¡u†ÔËï•Wi>Û¸DÛà-ÞÉüMú97Jòo5C £ +endstream +endobj +118 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +119 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +120 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +121 0 obj +<< +/BaseFont /MBQABU+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 49 +/FontDescriptor 283 0 R +/LastChar 54 +/Subtype /Type1 +/ToUnicode 284 0 R +/Type /Font +/Widths [573 0 0 0 0 573] +>> +endobj +122 0 obj +<< +/BaseFont /JRKZLA+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 285 0 R +/LastChar 146 +/Subtype /TrueType +/ToUnicode 286 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 0 +500 0 500 0 500 0 500 0 0 0 0 0 0 0 0 0 +0 0 0 709 774 0 0 0 0 337 0 0 0 0 0 0 +604 0 668 525 613 0 0 0 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 0 0 291 883 582 546 +601 0 395 424 326 603 565 834 0 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 278] +>> +endobj +123 0 obj +<< +/BaseFont /AMPGPS+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 287 0 R +/LastChar 119 +/Subtype /Type1 +/ToUnicode 288 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 314 314 0 0 0 0 0 331 +0 555 0 555 0 0 0 0 0 0 260 0 0 0 0 0 +0 656 604 595 696 534 527 682 0 285 0 0 511 846 690 717 +581 0 593 540 548 682 0 888 613 603 0 0 0 0 0 0 +0 528 598 451 596 528 341 585 586 274 0 0 275 860 586 577 +598 0 380 434 367 583 0 759] +>> +endobj +124 0 obj +<< +/BaseFont /SPTBHI+MyriadPro-Light +/Encoding 289 0 R +/FirstChar 29 +/FontDescriptor 290 0 R +/LastChar 146 +/Subtype /Type1 +/ToUnicode 291 0 R +/Type /Font +/Widths [484 763 484 219 0 0 0 0 0 0 0 265 265 0 0 174 +298 174 351 0 0 0 0 0 0 0 0 0 0 174 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 505 0 465 0 0 820 0 0 0 0 0 +0 0 0 0 454 552 446 544 485 262 544 536 209 0 423 212 +819 536 532 552 0 295 373 309 531 452 722 429 440 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 174] +>> +endobj +125 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 549 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 292 0 R +/GS1 293 0 R +>> +/Font << +/C2_0 294 0 R +/T1_0 295 0 R +/T1_1 296 0 R +/T1_2 297 0 R +/T1_3 298 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”SÛjÛ@}×WÌ£ªÕÌ^´Cs!44½…PÔ86Nd…Ð|}gVBµœRã—ÝÙËÌ9³çlþ¹íÖË汃Ù,ÿù×æ÷öµƒùüìâ’³:A@m¬çÑ9 ·W joààžáþaI~u‡°Ú%ù¹ùŽ@P/9±~ä+õ› ; äé]ŽZ(y y,H{¤Œ×¦D>zIfˆ¥›×ÏÉe\Þ0…)~»J²’“œäx2Pm¯ ´OÉ2Éu”×4rÔHAxfCɶPèà#ÇÀÍ’ Ú!` +è­Ð¼O¿¨ÌjéF9m!íAú¤2΄t¥2£KH[Uê +Ò†¯„¿W‚¤-Ík¸P™ct­2’œÔ僦å,^¿È>Ÿ710±‚×n8##(ŸÆŠñ†R9cûCøPÄ@aòk˜×‚]@ú.¤Ê=¢üÆŒ°Þn¸&Wl6‹>¸U±Nì“Îÿ{ƒÐ¿ÁPºüGé;U ùN(s%AâšU쟃 /Õ“ß©‡úz´ÅQ•1êGðS¼IÑ›¬;zs¢´ F[r¥SµgÇãîúø&ž·ÁktäÅÀaÀˆ¦GD;?iìËŒ}˜×–;Û™iK'uôáŽ-2°í§˜•\õ4ý0¤¬WpÍÊZñÝ+$ÁFvØ;`ĉ¬>ª ÚK8Mü½/.?›©ˆÞ}p y@M>D9J[=WǸ^ˆib÷Eã„Áz&¸ +endstream +endobj +126 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Filter /DCTDecode +/Height 827 +/Intent /RelativeColorimetric +/Length 139102 +/Name /X +/Subtype /Image +/Type /XObject +/Width 1060 +>> +stream +ÿØÿîAdobedÿÛÅ + + + + +                ÿÝ…ÿÀ;$ÿÄ¢  +  +  + U"2#3BU’”Ó!RSTbrÒÔ$4CVa‚“•6Wcstuv¢¥²´DQdƒ£¤³µÂð +&57Gg†‘Åäòó%'()*189:AEFHIJXYZefhijqwxyz„…‡ˆ‰Š–—˜™š¡¦§¨©ª±¶·¸¹ºÁÃÄÆÇÈÉÊÑÕÖ×ØÙÚáâãåæçèéêñôõö÷øùú + +u!QÑð1¡"ARaq‚±Ááñ2‘¢#3BSbr’²ÂÒâò$ +%&'()*456789:CDEFGHIJTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š“”•–—˜™š£¤¥¦§¨©ª³´µ¶·¸¹ºÃÄÅÆÇÈÉÊÓÔÕÖ×ØÙÚãäåæçèéêóôõö÷øùúÿÚ ?¿€?ÿп€?ÿÑ¿€<>ØSO©ëKoÙw#fíÈu–UU +Dˆ‘ |Ç9¢R~Ó«ûGì?°iBñS¬Ç{{Ù¿ÇŸøeŸJ.h˜üò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¹ù·½›êõöÀ§þgÒtvy.2[{÷5«\¡çÎdc«(g‡)o­äÛ*mBöYŠj„ÔÞÐÄB1nšÀqãv—Ž(´Wt¦Í`8ñ;KÇ DÒ›5€ãÆ<í/-JlÖó´¼p´M)³X"Ð䤩§Ú¦JNA’ÚȾ5ÔµÁ<ò$·WWS1{¦/‡tkyf¤a$¾(ÆþF^ +MV}t}•+VÕuJk_«\cb›ëÌ©Áð! e=ÄãóÔ–Þ?›±v†,׋1ב¶)fókSÏéiÇŽ› Ìë.„™ +‘Ží¢.µnB|”`Ò†+NÆm¿a—m¶ÃfÆN"ž^¸vÌÙ­3A*¦¯¦cd\Á¶“F:&!'D"ê*¹¾®RâæaBé“Ldbkã+U–œÑïG½-º¡}Z½+Ta…Ž»vÌÙvŸORh3€¨è×+&ÎWQÑWŒxàŠº`áùNdô‘RñL™¼!sV1š2Í× kïFùc±Š’Ì86•”ÚG±ëyÞrOÌÃñE'ó¼ÿƒ 5\«ÔÚrO[œ#E2IÖ ´å{¥°(–Y¡*š3Ë> [ÃO4"¹–Z:øõ‚êœÀTa5E¨V–˜-F¬h®Â¬ +´SAFšX¿Cº3Jü䊾ïÂì€<¼Ð{¢›Âì€)Ëe¼×êqŒÐ3KYŒf‰i` +á Ïc ¹ :Ôq¦zUsŒàI%Ìö¶šš¹&–p-5By¥TŒÔÍ$µ§ªIiy¢ö¤’À ñ$` ‘–h-¼²ÜoØK-P2Í*Šu¥˜ $Äð”jᬦ–&à³.¥Ùµ‚í(ÞW¹²jºP´Ë7´n +­eÝ µÎæPSÖµZ=Ð;®ÕŸP*£­n¹a qè³OêS,e†°Q Ó/FIdØS™j8‰` YfŠ¸Í- 4qYŒÐª +aÙ5ä$¹=Kœ“S{%Ig$Õ êK ~2¬=[À*ËÜ­K®`[î »ybuòÀ ‘‚‰'– F3ÂP)Õšª¹éËJ®n:€žI¥$«,õsqÕ`$šjŠªÂZf¨O4ÔÖ¥„µUimÊU!@­ñV©|`W+ÈT”£ «°§ €R^ÁÍ%ø•‹þ×Ù +Þ3ãGälèu2X²ºÿÔ¿€1…±üDU=N/uõš£+“æ„Õ!åac¥Œ$oÊ:e9$É'ŒfÏcî’õJþ¹£“‹¼Í?|£“‹™§âÀhäâæiø°98¹š~,ŽN.fŸ‹£“‹™§âÀhäâæiø°98¹š~,ŽN.fŸ‹£“‹™§âÀhäâæiø°98¹š~,ŽN.fŸ‹£“‹™§âÀhäâæiø°98¹š~,ŽN.ó4Ðâe–Dî£ÄRû¢ä]C.Ø.Ñ«–k99æ©«™“€dƒT˜³R1¬Ú¨!~áä%ŠGN?~¡ÏsÜ/"at’M6Í_$/hu¶\£‰É-øïx™.Ü­^š§kÑÏìÒ*]Â-"u|éWUkñÍŸ†¥ÌÂç¹\™É•qaRYí z²ÃlvÆ îQÅË/\½±ÜÃ4My?AÆNU éøÇ””ì©Øº†xžTÔ®&TŠW4ÊrÛ™ûÞÁ›ˆÂÇZZrÍÝBvñ_ªð‡y„ÆC¯.¯/±òZÄ]-?NBWt¬*DzõìcØÓ+Ž‘\ DWÅncçÝPªûƒ‡'Oåš7µ£{[®ûžce…®ãØßEª—QûHö=gyÉ?3ÅŸÎóþ €Õr¯SiÉ=nq +I+Z3Ù*¶«ˆ c¤œF £ËJ9hk® Ù3à"ˆ}ðgЕ¬ÅÕ³eV”–Ðí[UỖұfáÌG¹t³¤7prê“Adïéþ£Rý:²Æ 8Êsaç··ÑmÓuqÆ•šdcÞZª9*Þ˜;…‰˜B' Šw÷KûåÑw $±Š×)Tši.ä#ú•PçjèêH&º‰®š7›§““v?ÖÆ¡º»qƒÛ¸™g,m¨¯Ö”’“&G-€‰ZH,Ü…& ÐLmcVZm4(MQ¹é)çÖi7RÒ²òN$ØÇÅëì{—*^vV‰ßMdŽ~ɹ‹Q„µ—e„ÔZ=f;köª« I]K'•·A³ã·nÅ7’"Døw.çœUS*št&cZ¾za„%CCÌÌ8]x9ˆDÓ’Æ98Ž=ò_?f™38ÊÃBY˜¸˜Í+/5±º« dªi©ˆK¥×ãšñü A.&fM‚’þÈïm©BÁÖõÍOZÏ8bf&jœL~¸‚J7Q)”k÷¾V2¥Œ±bÍJX}‹²,ßfÔüå(ÚF.ZHò-tsE¹]LW"„ÌIcðΙïg~&[6¸i®ßïL²M×2 ßT©œÉ§{Hý€Å¥­—SS†6}LÂÚ„)dYH³P«™cHíÜ3wØd|S940÷±ºÄFX#¸i¦‹|+=![Ð¥ª¤‘l¾°¾+ãeMp™ÉŸëd¨ÆX²ªBf«iƒó¶vÞ"q̤á +²mבÁ>™S@S‡Ã®b1 HAÖµe~j‚yëS5”"mÓJPíHR`‘M Av´2­ÑŽg!,ò…¤xXY'“p¡1 »ã¼ºtûð4Æ»V톓eù¡ñKµDŽC(–‹@Ê ¡Ò=Å"gÏLe`¤ÌÆå ò1ͧPhØì +õU9QK! Åf¸(9Yvï1"y9ÑSO‚å +²ÖXÅSš‡öçJ9kn¨j4äd¶§àÜkjlZ8ÀʦLG'XéçÜNùIp+Õ–‰„§5~=Ï‚7VÅSì8…¨›¾È[=puNÍó2cÜ!Ôõ•;Ø*§k-W’j-‘gÔÔ-¨CHõ”k5 +¹–1dŽÝÃ7}†GÀE3“C{ ã-„“UnkA’|Gu0x¨÷W×Gmdé:|Ü„¸‘ÜîxH©œ~ÒiÆUXŠ“7ýD8£æJµ=0wÔ»ÆgÄl»Ì«'v™óØû¦b„¼E ˆ1q3 ¬)¦ak7 éÚÉ„œ„õHù'Zé"Â̹ +DÖ=ÌÌAŠ©,8Z3Ug7‘Û^PsÊR.|ª-_9j¢®2Ãã\àM<;šJÐŒYÕ%=ìCOÐÑ5D”-líz ¨‘Î:²‡WmðéØLõ>F,MF˱Äf™ÈMJõÛžñJ²j&k¦¸}ÐcM5›ˆÓÍ+‡mEÄVtyi‚´˜×Œ¨¦”Zù²6Ä9.ž6¸:òÏNèö3 4•!朧¶‡“…©˜>|¼ +†Öù¤]ºY|8>âëtÐÃ>bŸ#¸9åž{2q”f’œ"Õeº´jŽiãwN“jéð”9HòQDs÷½2!ø È£VëO4[JÎlv. £agTSlÞ8bG*9JYbàŸ³±™e\ÃàæŸkaÀÈ©jlìµTäâ&St–PvnpTçù!3ªË,ú3M^<{“¢,Ò•§¥S}8õã”Ó>䬱Ý⛞† ÖTÅB Å$dãÚÍ#H]›ªb¼´ÚÑå"Y'La Ùµs%‘-„áÓ—›ÊWÓÏ!.øÏ’F³RÍ¿)¥„ÍÓ!$©1 „Kè÷nŽ¹YÆòáM Ð_¡RZÌlT“PãÞÙÖs@Óõ«Iy Ê‚A'zñ(†s@…"kæf W©- $Õø÷9gI@³¥â™Æ°p²í“)Ìš«¸:ç6!ñ4ÔÓÓyþ3uB[JÇ$UÄ5©ácä“w“LÊæW¶}Âho*”gO/rÀÓÚf+¡§¤¶É^aw‹+S8›f‘Œ|$σpä'É0—Õá,T#4[fÐ^º™i]LA –ª"áÑÃpt°ÑgqŽNÃç7$(BX•ã4M­Ðå]%SHø„º]~9¯ÀÄ510lpøYŸ-¼b¨IÓïlñ6r3K.ÒdÃlOEô£' –f.2•è´Ú µÍ›Ó’Í\*ežC•C ¡Ò9q"kú~è‚Üa-=ê¡4Õ¨æã¯ähv›A£c° ÕTåE,„ƒšà æAg Þb,Dòs¢¦ž!MåªÆ«,Ô©gã­½*<²Ô«”™dGÃB³jæH­ÀpáÃÍѯé—4óKE™,&¬Ðå T°©ºqä,ƒµ f$‰}íÑ×"+8Þ\#‰¡¡º“KYj¤&¢ÚÖ[ÊDK9…puXÏ<”^%u9ðÜ3XäY®éÞ§OýøÈå 5¢±ÉظÆne +5ì¢óö²‹¯¹EÓR±*ê 5²\ð |bMBðgI_[Õ´BÖeP%4õZÅG‘É™C>YRI8p±1›àâ\Á¸szß\§>e©ðñƒ˜ƒ~œb KàEìѲ_‰X¿á]} ã>4~F·S%‹+ ÿÕ¿€1±üDU?;Ý}f¨Êäÿ®CËêbc¾$]oŠ:…?‰#žÍñþWgˆOP²ù¬Ô¢gI¦Õ…¸.Eú=:1b‹rëÙ½}ó‚kì5…Ü©áöèzXØØw?'©× u\óqg:Ë/<ÜXË/óD¡Ro +Ò´{\ºdîA;6 ã“*9dš%‚CŸE3îQ„§4·Ž1ùãúÞâ*Âfp{æ¥*¦¢Ò6{E?_U4“3‡°gpáB B—ÔQçTù…(ÑIȵ#SF}ïÁ6srŒ»8ù›FÞ¥ Î.J~X©­RܬoEéè$q7#“²Äuù*i¥†½p‡_Í}WïÙå>P„8ö6ݤڬ¤=%cØÅGÇäeß«|N®©Ís³=Òâ½ð<Ÿzúã·åòøØø¼\'ÕÇ¡ŒFÎxÆ ##Â+“M  äŸ™‡âŠOçyÿ@jùV¬cÓ‘¥…Üá†is­ß£gÖ‘ VJ +"J$ð®›zjá5±Ñ:ÝÐÔ&jñÖÚVÉj5»w–slY9gQÍ‘Tª"«s7Pä\êã&¢›ÝÃæø/à°ù$²Þ7¤žìoD*TüAKšRÎB¼ä‚Þ +'ºæ6ž’K2ó‰–-^³]âDvð§3t lõˆžÂ|Œ`¶™Ú¨Üh k(j¥´´åçÇI„ÌTݺE¹ÌL˜™û¢ƒg<šV–]Jd’6ÍUÖÒQKbE'Nžšnô»ÒÎ\ë¬r‡‡šAä“è8÷®M ?æë²;NƒoKGÄÍÈ7Š“nHÙ\Q;r`_Ý4È¥Ë÷È)Ÿ»€ÇFYmǡǪñVõ£j²²U;°² ª®inÌøk+à(sŒì,ð•§Åæšk³›ŽpƒÆ®)Ä—n¡MBÈ6Í:gÄ!÷ñ‡>—‹6´å¡Ægœ¤õ\ÊOSµûÖ¯¢Ý6¥|¦Öb¡1ª+)‡¾gbŠnwBM/*KCŒÏe`²wXÅÂH*ú˜bñªq*(¦)>#”‘[†Šg»ø÷AN:{¨äúv‹=K.é“Ë2oŽå4W2)×1L™„åŒ +1³sQŇî,†Õ`õúyHøÉ<G†MÆK ÕÚdÏÌÜÎs¦{ØwÓ>%ѳÃÉ•¢© +5ášn¿—ÕfÔ¤¢Í^LÙ’u›Rɨµ?(¢…xüB&çq9ȧè»V¬øi)ÕŽYº¾_S~Z MÒU ›¸„ƒiª“ÄME"DŽb`Ÿ0X§ˆ»/‡¥ÜyÛ|M« gr•…¢³4VRYb¾¸:"GÁÁ&†"‰‹³FìZrÒ—?›µÈû;oE°nñ´i*„QÂqîâéÔ&|5¹¡ô£]‹Žfï6VÄóG5Mý(ͪ·®-1™®šáî(äƒ+“çÊÅå>é©CyŸh˜gí¤‹³•Ú©ˆ‰¼Yr&~ÎâŠ\IŽ¿¯#Bž¸qÚÛ,ë6ªë:fyÑ뤢󱫹P‰$é„&1~Í3’åÁìðε.*j:¡Çc᪪4í¶ƒ-+rU:U¼Œ‹…RRûs;Q6Íñ“áßìX-b1”êÍïÜÑ߸²Tƒ×éå#âäðq7,ƒWi“?3s9ΙïaßLø—FL±{^… +²þ¥í=c£¡í-«sÇÌF®¡d% ˜£„Ö> ÄÌ!Ômt÷Φø-MRãç_ÃÔµ;VãæyÒ±tí/i lò@¦bù«Õ'4q•2L‰“ÒÊïŠ\>6gÊû_®]Äǹú·3JÓÆ4¸ùÛJËàl­ü|ªÕY¡uÇ]¥12Lj¤­Ì¤÷3P]ÅÍš ~N§J¯Çõúœ„Vn¢¤ßP-YH¶‹)Ì›f.ªWïâ,KéâgÜ=ñ¬–Væ¬iQøž¿]ØBÐв9È•d$“(ù„Ñ;˜õâÜ`=Êîf&O>ýû¸„:x™Ü›‡Õ+]ˆš”f÷²4µnÍ®Åàm=¡XÌC‘E¾/¥õÑ2#â'q,Ø÷Æ<5ÌÉÍJûÛF•‹§i{Hˆcg’3Í_)8É£Œ©’dLž–W|Ráñ³>WÚýrþ&¢Æ¢å°ÓÍ®-ìš â¼¼mAhÖ‹*êžž$Bt»TU‘épówZáQ;™˜dXÏ¢hêf­Ç¹Š*Ö²VxÞÓi™¹BH)=¯­×M¹‘G ­€ä˜8šjfŸÜŒªUt¬ åš“1Zœ[ª]¤¡D£ª¢±¬HÒY$ôÜE¸&¼Ñ0ÏÛI=g+µS;x²äLýŸ0+âíDZ´Ãòl&ë㵶Ï.ÖÍ-2qÄÚÅiV5Ž3Wªšãr»!Ð;sŸ€u{ùá?ÕžÒŸAǽ鴺Ž>Ñ¥éZFÒRJ–Q¬”‚”"©5hÏtÏ:y—Ô=Ò\ >¢·ˆ©§ãÜÛejæÍœ·f¦›9©W±nxh»nðêÿˆ÷Bî"¥ç„V°4£ +QƒXó8ÔkU²쳦¦hågÌJá{r›l5‰Ë!ƒ•jg’Ç"QÉV1ñod2SÍæmÌ£ç&5ز*—Õfw>3ƒ£ÀÄÍ"gïFÓ3¤•˜†,ÌùJ! üaú-«-€2Ü1{4l—âV/øW_d(#xÏ‘³¡ÔÉbÊèÿÖ¿€1±üDU?;Ý}f¨Êäÿ®CËêbc¾$]oŠ:…?‰#žÍñþWgˆOP²ù¬Ô¢gI¦Õ…¸.Eú=^¸KÔ£¾Øv‘O-WRu4S‘5äã$$uzä)Ü7Q˜ÝNTÝqV6˨^T ô;í#Ž 9Û¿!O…2ìb%ðnm¼|ç¡ßiqÎÝù|)—d{ƒsmãç~zÇí߇¨G½Í˽qí= HãˆvïÈCáT!Þfã c=¦§ä<-#Wö¸€çNü„Sð¢ïG³r‰?ôcǵû«ù HÔý® 9Û¿!ü(¿z=›‰ÿôx÷¼}GãˆvïÈERþ*xlfå1äñïbÙ2¥OéÃE¤£1PXè©qEŒKéžçs.V…H_BÄy2ñí|>v‡Œ£ýñnŒ{W•!~7òü]…{J³%ÍïÞÜ’ÐÑóÍÌÎIŠ/8É9DŠ¤op ÆÃ׼̚øJ0—ß½¦ÓÔ”-$‘‘„‰mE7Ì™¹ÄððôÅU*Ýb•+7¨·.¶L_ †1frflÑlgKwIe4Õ>™ûñ~yô…²>šf ÕLÒ‘-œ©™Ër+†E4ÈLNØ<’®‰k$µª­QU5:$2O ɹ†'as°ä©esÒ»ÑÖ%ºLØ5I«dKu4L‰$™;Â&Íw’I”‹g–NÁš-R¼u0ÐL‰ú›¡Ïq1oS4ÅY`û…ɺžÑ×Ââ-›§,Þ.Í\³¿“®tÈeQÄ&îˆ@Œùce2I›$~ÜúÕI5ÈdÕLªBÝ1L[Ä1±Ž]k’Ã6x}µò5‹fÉ¡X·jŠMSO ¨&™‘IØ\иÏŸZÖL´­Ç[̓±mÒfɺM›"[©¤’dI$É؉! ú—rÂZ7ã­£ÍÑ°5AÒRf Œ‚ˆ–êfvÍÎRw˜‰Š¤ÄV‡cTÀÒÞøbìò•ƒv“èÚf1›´ïá®Ú=•.!.áÓO° êÖ›ˆ`éÈïojY“6­M*Z> lfrŒQxØÚI9DŠ“ » +¶[› m|z_-=JBÒIh–ÑäP׌VÈ‘+Þö8¥ÂqÄZŒt[8„΋hµ"ŠC&‚dH†:šgÜøbÌa™v^á÷f•r4éH†3m•g$Í”¹ˆ‚è‘T†|Bf)ß‹”ëåcV£™æþ5¬£eY½j“–Ëê‰*™IBv"‚˜Fոت¼Œr>Y*z.]‘c_Ƶvȸw[.ÜŠ¤\= Å3Øb-[…|,#.VØÚž‡ö ð[nŒ#^¬~7«Ô±“uz÷·Œ\CFågÍ­Še TD‰$\Cß>b}øµ©GãzýLª5g¡ñ}^Öšþ”…–rWaÙ9rR‘2®»TUT¤Lø„%õõ³çü°U%{“Â^÷­¸º²Ü’”cÔÒ¥á#êÇg(Ť“”H©9 + ´ëèÔWÂç|”ý+ I$da¢[G‘C^1["D¯xxcÉëéèár5(ضq)dì¢Ñ+ÇS È‘/©º÷Â¥õ«¥JгÖÂ>-W‹3b‹e^)ˆàé"BcögÃÓ8òsêUJ–HÝìJ!‹wkÈ$Íݸ)Yr¢B*¡Ð!ϦqNg•÷ä" +^4ãqº¥³…g:uRÀt® +i”ÇÅ)µ/üäfüæ²½³n ‡€¶29Igm˜¢b”î"e2šÔb*åzú§áW§Ÿ¹ŽrbT0ï†ÍÐÄüXaëfÖ4\H9§då»JÅýÝø1Äoñ¢ÙÐêd‘etÿ׿€ +߃F±Ÿ?'¡³¡ÔÈÂÊèÿп€<5u?hÌK©=|Õ~jŠ²Äj¶00 ¢Ü7q‹ÝS>EŠ•U9O­†ºY›‘C«û@ßòW$G Qµ¾^ôŸ0î#Þ>Mív"n}ÝìãÄãÛÏ ½ÞÖóG#“” ¢>ó3`IE²d楔mÔpW„Té3b¡Èr#qÓÝ”1J|ýí2“³|n +ln«ÚÑã¿ÓVM|zÙOWò!Ö•«ûTSüÍß—|œðûd>üË⥄{Ü}Åãè†ZWÓüÍß—Š~ Íáv~ ïOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wå⟃1ð»?tÿJ÷µüˆ5¤8YõbiýME)5ur7}n¯ò<> GÂìüΟã‰VpD“†¨¦=o&p"±ü¿N|Üëðc‰.âCÉ«ÖÛ¢ú€U/×8ØòŒÍ˜ÒŸù¸ÿ^èjåüÌGŽó>§Åaq²`€8½æŒ¥ödöƒ…ÊØî¤5ÓÓMdÛä?,…\ ;Á¥å¹²U„!ÇSnUµ£ŠÊÌÌYBáLÅËE°”C±vÝâ9þšbì)Z/1ÓÚ”"ßmc›×–£Pë²$rÚ•gƒ4-ôŠâ@˜çVçgp… Ú:M4ü{ž‹aˆkIKQÕ”J$jù9†±Ï ‘nå ^ng!û>»N:e¼E=÷$±¶nš'â‚æ´>¼câþ³ÆÕê-bÔþ*¥ÿ…CðëØy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢}Ñr®¡6|Éc 庄Q55Ô♵«—S'ìÆÊõÛb/5Êö>»6Ö¼§OÔšÛÿ¬ãï{ž Á› è +ò€e¸Àxܪs”ÌS0LÀñPìõSo–'õà;BJê ]P– +&‹‡åúoæç_ƒH°6Ë#_S­·zƒ"ëV:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË™#iHüfg›üÆ´ÿͧú÷#UJ?Ux‰»–v ÚL[Çõ5œ¸nÍeRk$éW +3˜ˆ“&:wÎ~Ì£VÐk±TóOv%óAYÜƹ¶œ¦™ªå)gͦ ‰Õ9²5ˆ¢.®'ÚÈKŠ°ø,L!/+à´’[K}ÕMå¬æ°sXGC¸•Š˜jƒifÌSÅvŠÍ÷—' — ràÇË-UÞê“NtþJÛ&iôу}ø’N—’o“ªéË}å$Qӹþ–ZEæªä°Ö6À ÓE~_àþkCëÆ67\#äUJ ^Ô¾*e¿…Cð0´g‘ÆTcACšÖUñ-à­ø1Äo®h³¨GS# +àÿÒ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢{ÚµYâÅE²'UU4SL·ŽaOR¾¶»°Úƒˆßs5º1î–Æ¡™ªÉ$’ÇDåIkøj¹ŠaéÜ8¥@“U—"¦I¨TKyC·ðÉÙœº:!ôÊåkÍgK›E$:§7¸L¥vn®fë¢t—)®™% på?€îBž”tªíÐtª¨ïɦÜæ:~8Í(ù0u¦ Æê ~Öªg!þô (õºj³5 ‹„N’…ÒMBÜ9@jL©Éi±™Åº].Ø“sœŸy€ôÉCHDáeìVm‰½ã¢t¯{à¸4âÊœ¥!Lc×JRð€n-‡TFû™­Ñ‹zUz6ŒƒO+VíÕUséRM3œü€Òš7²F9äCƒ5~ÕV‹§¤’é#—Ü(SFÔKIN˜……zbݽ{%[£ )£h-Ý[¦Í0¸¡øìõSo–'õà;BJꮦ¨ö:ˆÊØnìÖœz²ÎW*Š¬s¨¡µTWªcŸö]1rž22õG™n4 ôíSJñI}ùn{Ï&ÛÙ Ï406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡ƒÇjº[«ùi/¿-Òa‹š0ëì†åQ…Û×£ZÂRñìÙ¥¨š$|K¤ÔÕ½vù>¯ôâþlÓüŠq2w.1ãK-¥W-;ÂെžÑy M¨ÂY©–¨fª^Z@)nš+òÿób^1±°´±ò/P†·.¤ìþYÂŽÞÇ•UÔÔÏRùË{ôâã#a£»âÕ²ª[ŠKïËt‚¾y4{ýžÅQƒwÆF5†j“6‰á¢ŸX„ÔÕêê¯{íõEŽeÊrY«Š?ÿÓ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢gŸ2ÿWRÕhž§ì:àO¬8Öò¼—ÃÇ6ȳy.«÷<|ìñ=!æœ`¼ƒ‹óäl‰—RÿP—JŠ}{ܨÃað1§ÝFòÍ·ÅωůsÕæìñÁ‡«¿Ì=eŸ7Õƒ6ØhÆ|LþI}lZ°…<<žw¥áaŸ– [úSì¶Âç*ÞJ´ü³}Õo“á +”§ó}-ãSV2ö#IP´å äѯê”ç¥_¶)2Ç®Î}VÈb锩šì¿C…F„15c¦×FÝþ¸CÅ2*TÑRúüm¥WÚµyKêU‘N=%†Y…‘ÂÔ]’—* nyç!ïa›°7ð£/CC^:5Fÿë8¹´´>­Æ¿•ššµ6ÌüÑ{ Ç×»ÑyM¾ú¬—î{‹ÃO$”g§CMÕõKõøö|ŒóÕÒVÑ~½ìÙãùXŽÖ­Ò³'$µ«æ—<«]ZUÖ¢9iS¸l»9?ZêaéðÿŽx8Q§Z«Fý~+ußƵŠž®Ž:oÏSù«º»cH|ï„ü-j39*Zz +~YöøQaò¼µ#<ÞnÍfš'VÓu,‚ŽÚ×/Å×Yœ· Ô'VïU—þ˜`r…:3bfÍÕi{ñ‡{ÊÏ¥°§%¶GcŽ–ÐòÓV^- H3ýUS#…þ¦‰OsÄä—’7<ŸC tþ÷½¬ÇW­êõ1µñAós_Áˆ3+Ú‰‡ÑGãzýN|Û §š •WU¸…4á!xéFÇD»ZýRíÁÀÑÂhäÒZ3Í›¿5áhêÕìò7Øú˜‰¦ú—Åó}l(έ’² 6„‚sª…C[»”QÔÒeh²`±ÕI#ð/ªsç'Û 2§^¼Ú_‹$!·ìPñFXŽ"zRýKã|ž½O©­W!nVmW·ª×šH­dã¤UÔ&VfŠ+€áŸLäνòÏpÁÑÀâ!-êŒ#«^ÈÆúãˆã+ס“ÁÛäfWun$¨™’‰ÔžÖk†ÉòŽf·²q3ô4ïuF¯K +Pk_^«Í~½’Å°ÆÇ%hÛÅà샞jíD6`Äêj7$É¡¢ÍPê6¹p³TÊw¼Ëú8ƒqÈTï/Šñ·’í_+Vîœd¸j‹]×èð}‘¾ªmòÄþ¼hAÉ]@§>`Ö@…#ÆÉ®Bêõu +© +rÞþà4͈ÂñC>l—ˆ+η£6# Å ù²^ g4fÄ¡x¡Ÿ5KÄçU,þ½}E¢ÙBÓŒÜcåê`¦^§ÒjŒª£?TxùÖêÍf‡BÔ‘5ƒã³50ͽÔï^ÂLßàz‚å|j—ˆ0ôŒ˜ÉwîÄax¡Ÿ6KÄ êtfÄax¡Ÿ6KÄ æîFœ‰DäU8ÆÄ95oT¨¦/ñúš‚…ƼÿÔ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢gŸ2ÿWVÕhž§ì:àO¬8Öò¼öÃÇ6ȳy.O«÷<|ì¯1æo·çnßj2ADQk¥×Æ×LMSüÖ5¸lf­7_·ÄÙbp¸¸Õ¼¿xÙã}¥±jÎÔl–Ï›SÆ|¬\BW…Ê›%‡ˆ²7=P¢wô  =­Êáñ3ß¿ =H¨—Øy<ïO•¡Ð¶}?fŒmv¥a½Ø–>2*æ(톾‚Š]­—Vœa¶oºÇż>4iÏæú|±}ŠÑÒ¾h*^‰–£EÕCKÇ'þ3(Ez‰4Tçfáu!‰pܾÌY¥ZjÑ…mPŒo–ÙuSI¦¥ {ŽÍåjŒ OÚ\ùÔNêçm£ÌáÝ7bš+Ç[0·ÎagfÄþ#ÃU£ßòx^Eì]8ÓÃý[ioG´Üý]Vy£â)„Τ«ƒEdÄIr m\7dPùê"4†á‹4êÒ§N„jþ¾mñìòÁvy*é+h¿^ölñü¬[5LÕÖifU¬]¦;¸yCÇjBG9’EâùRuN³„JšŠa‰f)Ôù_Ûur0óÑ«Z]Žý}V…núÖ&Jº8é¼[6Ãc^·3m£Ú%\¼õ?N꽎rÂ#Q%òÆhõpØ¢™³p™ôŠaï'r¶d„cÕ›Âð£nòžRÀWŒó[í>Èxß$M–Z-WeT´}ÍÆ«Èɹԟ‘ ZážúDÏ:‹§<†ÐÔå +æi£Õi|-žEʸ*ð’O—ÁñxÜqµk+´;?,{ªí£„ŠèÇM©×|‹«ØzdÜÜ)sLn0XŒ$Ú¤ûß­¬ÆЫêõ1íñAós_Áˆ2«Ú?‹‡ÑCãzýLÅoõŒó[C­Ù%:ø‰(ñ"¤W‹"’ñónb _%RÃÔ¡N5>4™ü.üÑØÍåJ˜Šs}Oâù¾½mËMSKÛAÓNRV¤¤Èµ"J½qs±Ôþt)³;^©»Â1©0Ø™´¿xCoØaâ¼Wpôg¯/Ôþ7«×h>åég–@ÕMªMTÚÔujm˜6Œ"äUÃvI­Œ²ë=K¥" RÆL~&£Þ„oײÖ×eSËR…ü›6ÃÊ×mj×*‹3´¦£ejµgsÆêºSU“„ucÛb¤tº·.)Àëiên‚×'à)ÖÃ婪=Õ£®:ï_TWqøú‘¯“fÈx˜ƒÍA°¥æ™MÀ_5=S6$¬aµ}lªoÈöô ›ûZù5w#â3BÑïj`ò­ EÆÚâ×õAú<doª›|±?¯ÚrWP~,\ xõz¢™ág¬nþ¤ùaÿ²ÔnN‹¼[.Ä/jü ÿÙŒ¾SŽ¥¬4¶‹–}N¨KÖØ¿EVyp,]ú=ÿÕ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢™b÷Gš0y–Ù%Ê· ® Uiæ]…K=©*£sDŒdÔ.‰Šk—EYnó=ž³ÆÕ1ŒkÆ6‘Œlg»ð#xë{ a. {5xÇSÉe„±¸)Í^:îZ\ÜuX ÑÑeã®å¡¥ÍÇUT³Æ•M,#¬BxÉ­nya<,[=Íé dÎS&cÅ5☼Ës4^ÅUQÁÌ¢¦2ŠHÆ5ûÃÙ)*=CÊ’Ùä“•VkÔ÷¬<}‘¾ªmòÄþ¼hAÉ]@áÕÔ¼ÌàI[JÕ$M9Hr¤lÛ©ƒ€¡ 0+Îøiú•õ0àRÅ»œ[âýjzXZ+Tªks€™sPÀ²~ôÚš««ª¶¡µJ[º›š§'âDs cΜ׃{‹j€ÿÖ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢jp‘fœ‘"…MGŽlSƒˆ|0Ÿæ]nŒ¢ð í.ZmTo,²¨*£„ýh‡9._¿™phèrü-xÂ6Û©¶Äòdaǵ†© ,“ªªg´¢¦,söiÈÁW.övœçKsðn ê¼¥,!'la ž6%.OŒcÆö¹AY*hujIºš>œˆÊr4WxUUQË—ÎDQCWPæ¹x·Ïß ÎPÉ°×_Uº¾UÚ8;¶í£Ù«»7vÈŠ>m&ÆE±0’b{ÍÝ7ÔÜó;¦r\P‡Ð°Ý,/²1‚Ö' •«UÖ9/GR4Í`édŽÖo©«‚žú×—Ûc|½éø# Ê0šhËß‚í|%¡vá¥lM„Õ1SËÖñ°Mß®å»tÝ¢àÇPè\¿ E;"†#”#,mF:¡Vïßm¶0—hvdhslæ˜ÏBH¨tÈG¨{…pžšKLò†/rw+¤‘Û6-c¹>2Oqé}6Íaò¶2¬^í7ˆK´ÕtÝTŠr½M4·N/—”Ê2Õž0ÙÀÇò|d’ãÒù&,rFÏ!-ÃIJYY²A¥Óâîxû¯és +ºN]>Ž££ã¡ÏÇ_•ã´Ô¹ìôÖ†U’ÈÊó&3o]ɯàe^6ãòÀé9tú?ûŽ‡7~WÛGX|­mDÕ£‰á@W¡Š|U ¨DÔ9Éò²^?¹âyRY*B]¼lUC“ãq—ÍbV5#mó«AƽI™fwj®¹Nbê3ž·ß˜¢®VåS’üzù/ç·–䣬)ALGÕõÄ\ w«¹nÝ7É­yC!rþ‡„QˆåË°„cªïwï¶ÛPÁ={FÇÈT”½7\ÆL«4³„L«R«ªV˜D"„žM]ó;’¹B6ŒÑ„ahF=ïSÞdØKÙ¤¬}l• !ªV¯Í&„a”Õ)îÎ!¯~LòŸåc.èB\ðêµýlHáuÙ¼é댒žŒ–®â¡\ÅÉ/TÝ•_L3ܼK„Ô̾1k㣨F7Ùo]™TpmJÔì)…—!(’õìSÙHó‘5#MRº1Ô9;2\ÜÈ{ãÌ>5#ÕmÕ½V3 ã¨ÜLÕ˨<}‘¾ªmòÄþ¼hAÉ]@ãÔF/2¸¥kt>¬Jæ—fžà¹·B”»ÙþÜnð›j`W‘±hzMZ¶E45/ó–?bA“‹«¡‚Õ*zÜØbÍæé6nMB$‘u +B—‚Qž}$[:rÙ¨‚ ÿ׿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢~je{3wÙïÅE9óÉ—àĪ®Óo{1’´ÊèÄ1ŠbÍȦ/v8Ãäê’ó9dñM÷h³kI?º].§šQCêúezmujjíAà:‡ÔüWºy¥‡3–jþüeáãVù>òãÍ YÑÒ”£::ÑÉ6hÙÓ—‘±…!Ž‰—ºEŠªJi%}>Tÿ‚ ÜE©ÕŒØmðêÕn»Í-*ùõVññªmed’ +¼³øXZ µ9:àíà]†Oê9&R‘ÛŸ=#æ)Ïý–¦è)Àc$…9áW®¿ÍâyS 4ßYãçrÎÐ춬ŸokñÏiåZÁ¤ÅƒŠycªEJ–lj€B¢DÔ¾C¸o‰Àá ^,aG4×´g„an¬Ñ“¾Ùb¤ÍüÞÆ‹£§ì–„J®ª–‚M9IÝVçJ<ï¯õÛ_¿†|Ë™¼¡²…yéÏVå¼# 5æ„-kíÚ³5(BY/ö¯SI·ä"ì¾™†³]WoZ¨í:‘Ig:¤*/qÛ`$veME7Ÿz +y&1žyªõF]Vùûÿ#•#tão¦ «æ’AJÚ:£EWt³Úmʼ<’b!³SŸÂ¹MPÆäjPÂÂHwªç¿™Ûnß;–oˆž0‡‹Ñò4ksͳU©Æz¸ÉS•dd +O:ò¬áËpuî…8i²Íí„cóåöÂìÞÚÅk%Q¢Ï +bÒÛ Øñžj¨Ž«}qP™v[ƒ‰1Önö1+b¡FkÃã_ï>ˆ/Ó¢Áþg©„éš,ŒäɪVòU³x9Í™ÕEüS–§Ô?PþälyNhOR‡zÍbÄÁ^Zq„vïk~eØW6k0Í“½[¦jwQ/dÚšçsî2•Q÷±c•g–ymô/óõz"¹É—–{¶f,£ +b³d‹R›KQˆŸW‘Ô ÄÌÔú£Ífgè^/nâ\ ĸ‰wçWPWe9ÏØ—²¸Fï0xÿп€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢~je{3^¥å„™ˆ\§2LÞ5]B§¦b&r)˜-U]¦åLõ Ø\ÅI'W+U¿|íÚÏÌÉÒŒbu”=û§ÉÔQMB_þFp˜jÙ¥§B]Q·TÝï+oŠÅÉ +¼lò1ý'm×mZº©USH¡&™“jR ÎÚJLEÌNñIàl±\›4(É,6ú&‡‰K”!¦ãg‘åHWÔDí-HZ=DáÖYH©c#”$G‡¾³u’q«pÄ¿ŸÙþ-ˆÃÔÒÍ>¾­Z¶uÞh”+K¯qó7Äu¼Ñô“úyz.M(ša”²‘™N +®ÝLH%p®ÜQ4ÈDõ.è_¹t`QäÙãJ1©×Ëõj…õõE—Ò2Ëõ®>x0U“Ú +ÖqX@Tš§Té2rC.Bg˜íÔÌT¤ÄÕÔÏ:F0Þcù>5ä´³^Þ+zá±­£¼Óù¼u7 ×Ôüå1 MÀ·xŠ’Ó®ÑÔvš%ê4xtrruSQLôÈ]Ð`r^çŒjË|Їح®¿T|k˜üVXIçzŸ’6•RYÄ})4ƒ•& Þ¨¬3Ò†K"_©ŠÕc¨¥òõMžÂö'˜2°ØI°ø¨Íö™a«¿÷ã±î+-lš¯,ÆN„¥+djMGOdHb0ÔHÙ]Í<±N¾k14qâ#Íá}Pï˳íQñ¬Ñ©F8xi¼{vøŠzµ²«;¬i*Ž”J§U(×j,ø’‰°9ŽŽ2|D³ü1íZ8™°ó´;зÅׯÅjQ…xh|{vxÛJÂíƒVÈ«æ×@ëÆ8¾‹ö¤)Nc·Pø„9}]B_Lä)É×àŒŽWÂézºáÕÅàÆäìNŽncÚ¶£o=VLÏ7LúžJ:z™T)1JŠŽN¡/÷ùã7 &Š^=«UgÒL×m’´gh•¥AQÇ¢²M¤\j,’nJBªRᦞ~Š'÷ §“0Ù0ÚøÖóW<Ìb3eú×V*IxöFú©·Ëúð¡%u†®¯X!“8ITTÓ ¦e‘F]âi¤íÉJ™],BšŠŸäƒw„ÁKã qeÞyÈíƒØÊ_ 3ò€éÜÞÉ÷ˆã.óÎGlÆRøIŸ”NàööO¸èGwžr;`ö2—ÂLü :w·²}Ç@â8˼ó‘Û±”¾gåÓ¸=½“î:Æ]眎Ø=Œ¥ð“?(ÁíìŸqÐ8Ž2ï<ävÁìe/„™ù@tîodûŽÄq—yç#¶c)|$Ïʧp{{'Üt#Œ»Ï9°{Ká&~P;ƒÛÙ>ã qeÞyÈíƒØÊ_ 3ò€éÜÞÉ÷ˆã.óÎGlÆRøIŸ”NàööO¸èGwžr;`ö2—ÂLü :w·²}Ç@â8˼ó‘Û±”¾gåÓ¸=½“î:Æ]眎Ø=Œ¥ð“?(ÁíìŸqÐ8Ž2ï<ävÁìe/„™ù@tîodûŽÄq—yç#¶c)|$Ïʧp{{'Üt#Œ»Ï9°{Ká&~P;ƒÛÙ>ã qeÞyÈíƒØÊ_ 3ò€éÜÞÉ÷ˆã.óÎGlÆRøIŸ”NàööO¸èGwžr;`ö2—ÂLü :w·²}Ç@â8˼ó‘Û±”¾gåÓ¸=½“î:Æ]ïß9%¯ûKá&~P)éÌÞÉ÷=èG~ü÷³óÚê.PÔÊWJ¡ oÕÉŸN9ƒÛÙ>ã qeûòí~<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ?r=rÆÂ,.þmSðD”~7ÈØÐêfÁ„¾ÿÓ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ©µª†¦À¯-›«‡Ï¤ÀbÅ¡o¸p~¸O×.ÓÃ]‹W•·){Z×I„)ùê}í?$é3¨Í7f"©:"zx+'™}=;‚õ\'×Ç¥f–:2jãÐù*kFÜÂléÙ)6pªaÊ>h™0›žæ!ɺ)|ødß.ocÙpPŽ®=/&ÇF¿†_Ž‘o2ͳæKj*ÙÒ$] ë„P˜„8Ú–‰•>#MÜ­ëh†I9nuP3Æ­–2fÞHál _ùÊ.Ó§¦1X 5}i¬lùÕ<ÕëuUׇ„lS' ‰/‘ +Éæ_O× ß Š¸Xqï[—ÇÍãWÏ<§#òÆP®¥ÕÄ!rf—1|=ÐZ—N.¼c+ Ç[Ô¤£·Ì[Ù䋱P‰ºLª#¸BbþéØ ¬O&Ë$uqÚÁÂr´óâf¾ÈlÙäeê^°F¨u<Õ&çHÐï²% co‡¸E/“–119¥†¥ÞN­Ï5üO…½|ÝÄ…_V§Ä¦Ój¢Æ¼K‹e ±ó¦êtüïL°ü£K=]^~;#âc(»sšœfÚA•›Í.ÙÂdQJdn(E8{àËž—Õ#òz8l},Õ·¿¾F~ˆx¤‹&n—jvŠ¸DŠ(‚ºhBb\?~˜À«%æmiT´­¿KÖÕgÚ¤ÜéñØ(c|=Â)|œ±v­ån•[ÌôÄVe&êX\¤h‡U ˜¦XŽ>gÊÇ•0Ö¥/ËéSOz•<ßCÍ\Ÿ^‹HËœ½.TÉsýÌ£‡µŒº˜kÔ‡ËèbSÅZœ>_KsVV°jfN2&6Ÿw8¼ƒ3½O"17”Ïrþéá”QG=ïkc#úÇÏ¥EW’ÕCÕZ¿£d¡’MªUÝ™†=ò'ssáçý(µˆÃAwŠè/3zT3Ìixç’ÒŽ5jÍQ4UIMŸ L ñ¥™­­’¾hÍ¿T!±¿+{KkI9cÖ=Ô¼«âFìY‡>m9ÔÌ!;ñj8>8‹/ÊÒSÍ !³¿Ø>J.ÔѪ$W’‰u4ݤÌ^Ü>#køx¨¬žaÉ|&Á÷3y¾Ÿ*ª8ËK—o]›Ú„]¦·YN’±îŽÑ +˜—Êtôà)ø“†"†Y¦ó} ˜,T#Û}O|]¤F½©eíZ@¾zÑÒŠg^ÈôÎL0†ÅVž·ˆøeåLx·I¬¢ñ&H¦%ó3;þ`Γ vøì¼{AíVÅ•>½I‰ˆÅ6')‹ÂGë,Ôï,ß'¥•.&ÔãäbM¾‘qJÍ0§^¼V YÒ Ù$bb”íÎ{ÿXa•>óMæñÖÁ—j¿>íäk”Õ¯–Reœ Í7%ñòg3<µ2a8ÃÝB54î6ºî ³KŸí^ˆìƒÂn×ÔJMôM9L¾¨W5×Ê41n‰ûV2škw„ ‰ñ±¥,¹>ÕéñÁõ¥lðî©9z©»w,IŽ›Æ*— Ûu“>zG'á $8÷©*ÉÝ÷>~;›qÕ¸HC7× šaŒjw ³½ÅR"NÌäMK÷È`áǽf<«'q«ÂïÇsxÕ¶†òŸÔf´M.úy£¦ùNRÈĸR}ÙÞg‹0ÁÃ7ÙUq‘·šŸZûëAV<ÉQ²M#Þ&uTȽˇí~Ásƒ…¸Þ·ÉøÈæãs_ÛB4•®ÂL™ò“5Ç*þµs'ððsþV,T¥uSO fyÏZ„]7UÁÒ¯ŠtטDæn½âa_OA#ü°$Ã]sŽ´¼nk³5‚0Ó´ô ÛEfŠû B›1<Œ„P÷ùaO “y¾•êµãžO;ÐÄ–í)å³WV{,S:u’55ä}0¶~†éØeSÁBiæó}V¾§(FY$ó½>F^£j7•C:êR¬tògw/˜— Ÿ¹ð3þ”a×–ìÜ6"-ÐíÔá[¡ +êU̢ˠ݆%ûé’ÿ®wB…Ö±xÈÃcG¦­|²“,àfi¹(“9™å©“ Æèr驧pU=¬>>mw…²ÚÚáßëï5Š¢Ô#iZ’ž¦Ý&s+-ë¥Ðo‰¹£åçÌL$Ã.ÕÅÞ׳uêÙÕÞyÚ ¡š†<+t!\J¹”Xè7A±ˆSßL˜ž¹Þ +pò]^#4‹b1åcâj +^JòF:lÕw‚fë-Ú¯¦¦aÅÚØ[­QåÃcM­í±õ»Ì¢‡“U›uˆ^¦dp”:‡¸KŸ,9ÅRa¡¬V>9¸ÜÈE_%Uj<42ö'¹†W¦&í‰CµÜúaj¦gSÄÆi_•å ± Û³2íÜGë‡I…¼nb1Z¬Û4å®åó ©ú‚Ÿ{ ð§3»1IÑÓ!O2ýνR†}LZ5òFí)ý´ÈV^..‰“•,[Œ™eÛ—îO\ðÅPÃYLyB1ãØÊ”óªŽ<¯øŠTÆ9rg71Kßîc¶¦U±‹åŽ«Ñ’¨åéÒ·9UnÕÉ–1³#‹þ ¯Az”’ÄA‹·x&IE”ÐIl57#©Ø]­GI,ûw©j‡(FI¯÷¯än¶ö¡­hæ‡9N“äÚ¦í b\Xœ2¿OO–(Žê9þ‘"‹U%Éõ? Õ­w“*óÙ¯àúþmŒ]Wô̳›Mtêq&²é¸jÒ<3˜éžøä9‡stsxgIFÒ°j×Ø8µXN¤¦¤‘—D¤”Ês’6"8k$¶‡s0`É=¦l¡O4­:œ­%©áb+êU2æMÖ´É4S(h±îzd„á¤{„Ð?cà +kÓŠÕ +°ŒÎBŒ±okFX>Í>,­?ç„wØÕ&škk0SÉLÖÙ »Ö—u^!QÚiF1.[káñ ²É«dÈhað. š•å„ºØeŽy­µõÐÊÍ+)l†¨Qj”ŽKŒ›#ÍËéܸu3ô.*ÃêtüïLp•*g©«ÁïÃd_-–ÏZszBœN6—Š]™X Vê«$tŽ¢73raækGê‘ù= 8HÔÉ [{ðÚå“S,t3”Êš¦M”r™»$[¬Fˆý"B™iEzlDû;`ÈP• ª8ò«IÄ•µÔ +e ${÷;;˜bÕI"»J´û;`Û¶µ]Sl+ÊV.¤I´|kWR‹TΩpà™"$¸š}Ô8¿‚§x-ò¶:ÏǪ[ßåµ»Ìx¦o9aõ|kw™Q`Ìê55ûstÖ!ÛÀÁ9IîCGh±ç­ÜBXõË{ü±ÔßD¥uitú´»z XÄäA¤¾lt‘G2ùî'žqM²kbgÄSš2CÁïÃoŽÍãgq¥kh5ùNSÌYÓ¬š™N |˜êf|°ä7$ZÄb2²¹>yä©4'‡ƒß†ÏÎÔVµ•˜>CÕZàù·„ÝFÇÆúÀ¡ˆÍ,Þk‡ÉV”6çì„B½gléêñ,Ø÷O¥"g»¢¤’ù3¿º˜¡ûY†V6ÔÞo©ƒ‡ž0¥J;súYB‹§ÚÕôõ¨C¼q€„…I6•)·¼K—˺1jÔ³; $±‡Õ>754Ùz–°¡˜£Sì§)¨‚kK16zd¾L\¶S<ù÷t?R]ÃÔ»i&„ßTø¿'«[•…5ýKÅi$ÖßƦ§ -.²¤e+Z¢.¦˜Eš `OÔª&u}1!ž²¤ÃMMì„Lƒ}…—R;›[Þþ¦NÑ,ÎÏž:ÝÔRj£Â©ˆ³w8 _ùeËþèy%=^6|ªêUÓRãoÈÐ*×KRemgoÔ1£1*(l÷£sÃ:ÌSÜp³ikñ±k  ñÖç8ÓQ…¢’b)êps%Må&ѺåÄIkFÃP½‘’8ÜQžÐGqu·ls…Q´êW%žØãŒÝ&‘ësŸÀÈÒ/(Zž¥›Íô®Ë5éÅ`åCSö:ñ„iä\§)Qa´IBëgºá¨2§šÓMòz2ÓŒhRóþìÍ 5«-.¨¥ä%is@F@¬»»ËºEWP˜d!žԪݲ¯4*Í.OµzI’ßùêaµ«Jh9Öi™ÆÔ)$mµg’×Z—tå‹’›yp›ÄNŠ¤?‡÷˜Æ„ögW£š[½•ª•½Ke.ž'$ßdL¤á¢ù»b&±?ò³ UpÑ–IüßJít'žO;Ñäd_üºÙ·Ñ"c.{ç›Íô.W§Ó“Îô³ˆ×ORíµ(ËíºQä5Ag/FžIÊoŸa´IBëzLü5Ï ÔÓr…XAà“j²ÒêŠ^BV—4d +Ë»¼»¤Upáe †B‰è1TW¡‰ÄFÚH[-ï®^ÿWS×õ5.æÓ¹›M¬ºn´…&ÎtÍ|r‡Ã¹º9¼2iK£>1Žxün­SG«¯©–m­y<{$¨)øò>rñÂî[´;Œ"ïëp0ó¹#%› F&|)JTÖ«XÄSõ[J{c®šÎ™¶Q•8y‡}4N‰ðî`ß6è.ÖžËTg„YÍñ¯Ï³Ñü4±‹?”)BY™¼ZÅË3p“C+ºK*µöxå¼›Z]uÚÞÐ*Ê?¸±ÉßܺOt68YïNíf"NîÏ—ÍR¥O>OÕlêu›‡‡ss \Ÿ[<ö9V–I/:›œ—­£j[B-3O²‘li«Ê(åöÊ|™˘büj0éÏ ¹C¼ƒ¨öjK5#g†Nó„’S‰Ÿ°!øcWˆ×÷ Vq¦EÅ\ÞÓj݉3Žr¡£aòpYd®“w¹sÝ txÚÓ׫q±õQ ÔÎ-Uɪ¦¬[<ع0Ë¡ÕK/áâpïÞ +Ú¨ñ´¡ÖãckY4Í¡2…]:~zIJR˜k9|t•7§3³béIÿd^rulD{ݲ·m¦ÈÔ‰=³…‡n¬Ö\øÆbWWR1ò3ß&7€-a©IÿdWyB¾&^÷l­)JšÕk(Š~£‹iOluÓYÓ6Ê2§0黎Ñ>ÌæÝDaܬËñœ™ª?,ò¿1ºúÃe»¦â¤½ËÖG;h¨Ó«v´¬zѹR¦äÒW3{šw0ôîpÃJ7ky*iæ–XÛÂïÃlY–üÉõÇÎØOðÐÆÄÉ2p¸™óÏ x=øxÞüÌ*ý “ðÈãØGGN/¥NM-h|¾† oYã:z¼K6=ÓéH™îÀ¨©$¶Lïîƒæ(~Öa°­ -H|¾†« |¾–£Pª¦ÖöÀfæ1oTÒ%1“í*9kô—†,ô£+"á1ÏÌì2"L +îåƒsçp`ÏZ0lðôa< X²…#xÒ¤ViµºÜ©oEFæeÎð0ñŠåhC+Xæ,ùÚÅ‹µ¦‹fb*±½‚7\·›`Ì/tÚpݵô}Þ‘ýÈØbf´³Çí­v0ŒÔa¶3ö3gšª.¬ò¨ÇÍÁoŽ™»“9'ÓŒN­žiaöï[?”©ÂIjÇf¶Ì9NIUY1[µ <}5(Ǿpš+c7ð%â\ðeóQãkYRki¸ê³#QUS:ÞÑÎ06äò"—xiŸ\}#÷éžñ¬DŸQãk? ?ÕtÜuYÉ!­‘¶rÆÂ,.þmSðD”~7ÈØÐêfÁ„¾ÿÕ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ?B¢©u±5¡Ð²“"ª*eò,ç¢o•9)ÎÑÓe4Û­‡Ÿs¿&ö2°Øœ­^/ ›k 7³ËFV}I8V’ ZÉé`‘XÄEe †wÂ~·~þ÷¦3³JÄÑWã+XkDZ”5GPÔ ¶.åy%·5_(üê¢Ñ=å¹0ÓÌ'ø f”ÑWã+8F’¬3ˆS?4iPÉO®…Cùæ\ɱ=gKOt3LÚÉ+y¥T‡)Ëx¦-ÓbÌÊ•‡,ZÌY¤t“Wî’t»§W“Q3÷Z7Dˆ6!ñõ²gc±Yç»YÀä’Üz_-•Y¤¥›CÔ-ò†®_:p¹˜©xøElš$AšGÜó0înšv:¦y,`0ù'»xÙµ°Šb"ÁˆºíÑôÂ…Ï"Ž9ÔXû§~s UjÝ•Éøl´ìÄ ,b¢„ŒfœD£&©ùi0&5õ[š9áñÕæç²Ðï^½š¹0Q…HÇKuAÒ•G?5Z¸ŒI(|u²‹Æ1p¡0ñV;Žðæà ¢yÙT°ögAgIˆjåÃY @¨Ê«€–e‚”l\:ñeBññKˆt.\Üô.%Û$Ø‹³%ÂÙ”,ÚÙRÂÍi´«ªÒ›‹`±xlÙª¡ŽB&åºÄ\‡Üûò øj–ZÄËš–N:Ûqýš8Úé +=ƒ„’|Õ›R¢¹¯áÛs‘r+½öâ_ÞÆUZ÷cRÂýK/wÚôJY£¥lÌÔK5‘+­kA¦2†>–̾{øwôïzØ£]ç4·ÖŽÕ+jj’H”´iŠ™HRçI{š+7¥GÈEÌUS“&jw3Á*9ˆ›Fhá¢MÑ4óôî…ªµn½K fÀ¯¬‚byíf¤2Ì’iRDµl±WPå>¸³[1]Í530s;f ËÃW³ƒ¿×!Z¤fè ™´“L…0À©Rí̺؂µ¢'‰8]F¼j”žO’ù›µÊ7åo©žu”&`¹5{©—Õ(‹9Öº=zV{Ên”‘Æ*F9Èd^9\þ¸šy÷ïƒj¬©iY±è‹ qCÏQ³rEW\.º.Ð1Ìr“pÁTøœ;é÷>ôU±wãØ჌8ö½Tm¨Vû¨ä¡KµÄÞ=dW9k†Ü2\S0‡S׆.Ü{ +Ø8Çk’‰$Vä*i–éJ[¥/b0hU³a^ØæÍ(×”« K™d¤¤žÉ:29Ò¾àù„!ÔM3îd!HªÜ¡NÌjþǦ²étÙ8dHÇU$]BÝ3(¶)NÅ_Üîn‡!pÆÂ8»ËÆæ²¾õ/Ç¥¬[µ-jL£Íá&ÒlVÜÔTÇ*J6PäÆHøi©Øþä[Áâí7—ySžKqÞñ³ØÂ’6m*wN;·²9„¡ÚG™ÃLTjâO˜Ø‡¹“å˜÷7½úçÝ$Rb¬ÕÔÂfãÚÜQ¶bé ÈUGt‘£VG»B˜÷Ó|¢( ²»ßin_\á]ç|q|׎"Û”½‘ÌA·³´WpÐƧ_L9u†¡÷B<ƹƒ¹ü”ºwñÄkÇr$k©Ôl*HãîÂëjìžÂŒu$àîòLd² +iྚ*>ç­òÆ}:úšÊ¸{½ ØÜ£ŠJ±fêIUL[ϨS¤Ü§OsE"o‡ÁL‚Šõ®£ ƒ·ÖJ®¨dkš]å>èÅ*Š7!QW´¹OyTŸ+8P­f]\-Ú­8Ê`”û6³Ê"y2µÀpª +é(}îþèšgÝ4÷±kLª4Xæ6ϧ¡¬À´{W +­çeŽe“—L÷ðïèÞ·¾™j8vFJ%8•2tu ̱ù‹wI¬ =K2jR¼¬Wg6iQS’Ãé—L•4L +ðêdÊ,{Þ™!Ñ91OÖH\O’ µ«]ƒ…Ãëyº²’´ÈÊჄ“i‚¾\ØÆ=ó8Q EQ&ÍЗq44xb©kÞUª˜+Ô„xô·­yH<ªÒn¨‰ ,Gî1Lr^E4NÂnzyâŒ5{LÏå6jpƒ# )gfRcšÂy=PQÒÔD¨Bºt³‚¨cß1lt ssìÎ2e¬ÅÄá³7Ä–U’9È®ex'Éñq,k™—ûËâÝÙUjwlë6£vLDB¸1]º>˜P¹äQ‡:‹tïÎ`¯”)Ù‹©{ š§œSHå µ¶raÛ4ÓQlRÇçëb歘ؚm†]]YLÄJW+G Òl­œli–1wÀUc©Úýl„U1 ZXfù¢)'”Ô…XñÒ‰’Ò™krǾR`‘<ýÏO0cbf»; †ÊÈC–¦UF9†¤0¬ê:‰U3Y&qÍ‘L¦>)NÞýûûŸ~2tÌ=JAæÏTb#‘š ‘xw‹–{÷0î\¹ò@Ó$¥é+Z¢/¥*«<©Ó”ÌíGø¾˜Xëçá§s†3+b.×a¤š øjNªžyDÊO)›Øw—xV&s„dTDè;÷óˉ|cB­™U%‹í´šB {NOSê7BbÕâ™s©8h¦æ³s4Ô>è«w*¹Gž¤"ÈÓ,Í%ùªWJw ×L·´/¨L1j•]lê’}NhyO¸¤©˜WŠë±fƒe ‘Žr铈)©Rëz-[ѵBUeá‘_ž@ù¤•üÂ)Ÿ‡!ÓÏ"Éß7ãÓÉÃVÊÅÆaîúìú‹œg++UUnš­0ù&7òF­Ý.<ø‡Ïf®K‡{¨‹9Öº=zV{É)#ŒTŒsȼr¹ýq4óîß,ÕYRÒm›4±•©š:z‘¨]òRNŸ#ù›¸!!ψžbÙ—øc&¾/7Æ ^=­Ô•«+±=Yh]oÁÉ5ÞëpÉ.aï:×8xƒÚ +øfx‰§ÛÀ¶…`[¨5jFÈÞì&xÅÓ3«Ò»jYå ò’¢ã)׊"wmYHÇ2F>lNÿ µ†˜¡JÍÞÇ_ˆ¥áuÈŒç)óË7È$Ü'¶&ôT!î(A•§as8ñï|hªúѵYÆÖËD´†n² ºB,ËòLø„!òo“å§9œx÷²T$ò:°ª*THͥŠŠe1ñJvx×ïî}ø·§^¥„ÕÆöÇ£lj6Ð'ªf®Ö©&§*m¯*,EÖ¸L;—/Çß8[Øi–¨á;®7³ÈѵrÆÂ,.þmSðD”~7ÈØÐêfÁ„¾ÿÖ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔε]OÑîŒÍwàhæWš§G1š§:™FP +wÖö5­¨K=õ…µƒÛ<\š€½•Gh*Œï-`[ŒLö¶RžfzÕæ¸ÍÁLñ%˜ +s­TS®æ°®ýåÊ^ïÀÌd0‚Œ×pŒ óEeyÀ-pU–Æ_ªåãªàu™­W/W,f¸ìhîlgö/p2@ó¨Íp{u6Ï.[«½€Ëb÷-”f¸nf°*¥-å{$o¬éKi—%›> Uu 2\Ìýê†UyŽ¨e3?0–Ê3Ü Yú(ëW{?½Fpye‰ÕÙvÈËg´£yAn+Taiî\«º£ ‚ܺ¦YÒæ^E}@XÒ{(Íp/s5L#uw°.BpS{®îf°±Öý Ü„¶~kš@³¨ØSO©ëKoÙw#fíÈu–UU +Dˆ‘ |Ç9¢R~Ó«ûGì?°iBñS¬Ç{{Ù¿ÇŸøeŸJ.h˜üò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍËù°)ÿ†Yô£ÉiYäعx¾ç ê›G¤ÜLË,•Qr(ñÑŠrÈ69 LcüI°XY²ÃÉÇ}««‹–1ãsAÛ +—öIÏ‘é\´&$ÄK—ÞÔbêˆyÅŒ|³G‡)o4S”žæ µVI¥0µ%ŒZ৾ɣTãcUñgªî"Œ©Â¶RÓÕ Ø¤5㦱õÏ gPhëÂø—Ôúé÷õ5TÆSuá§#çth÷j7"N¹fLC¤|<ÑB^=þô!®Œþo¥WÖkIçzŽÍ¦ßKIWH¼tuHÆpí›”Þ¶ŽL‚—>œÃ´¶£'égЛKV7ÐÐÙÔÒŠÏÚ³S<9’‹of)ö“¨Àêç»Ïup’ËN•¾Õ釧­=J·ƒÞ†ÆÊ£èÚº¦¥"§‰iRh:yƒ²•DÛºk(LLýÏ@]«4ÒÕ¼^ˆ1(aæšœ/½èm{ÞZtÄå–AÕ )‘È:ušÆK…éü®wŠ\7({‡ÃÂ8ˆ|¿u‹Ê¸˜Ë‡—åô’–›)KÚ£˜×«ÔêÉÇ25í®Þê"C¤b)á +a€„pðù}1ñª«8©æ}×ÈÉZøûlÃCåGÈv6Gx §/ÿÈ•$µ8|¾–Â5tu#òzþ%*šÙ˜Bªu‹ÅÚF¥™1\dçÃ;…–S¶š.¤mR/¡¯£ 58üž–õ¦XVcªvrITœµX‰±Aî¨LBæ†2yÄPZ¯?tΡC¤ëì—c5¥jåë'Ô¹­"W ¼Zʶ +7Ìu:w7¾ðdéu0y¦*5úûû%Ùåe +6RQ*Ö£y$«ÆÑñpæOærÊdί†¥Ñ‹?ÔxÚ½O¡­ÆÇÜIçÛg©•!ØÙàp2Œ¼éßä q¡õ.6®MˆÓVãcYõ5VZ bó´I6wŸH TM¤näé“|O¼µ¡NXuvŇƒ¥<Ðë샒t¼K¨ÆÌ^Ê-&º7ï;\¤*ªbêgáøw=ÈÓÖ­Ogl[œ{õöC{ÔÒ“ÕÕZ摃˜/O‘ U“Ó1vVÍ@ê9y WŽÐ) ©½!ëùÚpËŸÍcW©£­N?oô7Qhº‚g/(溒“Á|dÐ]4HBŸ0ûŸkÞëM÷fRŽ¦i +^AêÆ]˨Ö+¬¡´Ô:ˆ’ùÆxYŸB{ÁŠÍin©}[V’‘XÎ[A¸k‘ mâ6%ľìXãgÂB¥çúümN'é|Î:Ÿ)¨kFÖlÙÑgÊŽS­eEl¿§’\úKâÝ ²Â,œM8Ïô¨éÊŠ²Œ”J¢}L®V$Qà +Š·V¹ˆrêv½jJšÙRú”¾w¥Žl¡…`þš¬U>—r´{¥ÓˆT¨‘ºË\:d%ÿèÉÅ×îX›Cê2ùÞ˜½î’«¨©Yé©ÓçÒ’̤¢Ü•Úà|3‘±O0è|³tº=„ýÉ÷NP<>3{Ÿ¹Hû.F hÖ£àfŠ­ÍG3DÑÀ Ñ4p4MÍG3DÑÀ Ñ4p~†hÁnMØNdêR奆üO¯óbßX˜òÆlhu3@Äd?ÿп€<5G’õ=ƒ[–¯RÎkÿœ_a¬/a!y¡å‡¥‹ˆšÎ¹#ªèäâîwš~,ŽN.fŸ‹£“‹™§âÀhäâæiø°98¹š~,ŽN.fŸ‹ÉéK"òM 9¥‡2Í]¥”„f³’~fŠ)?çü§å +’Á´ä™&š.p /} –?TãcHþe¨o¡·¿f"3¨5²ÂøŽ6>Ñú3¶‰@D²Xª«i'˜f¿“£“`ÿaˆs†]üßJŒOÕ+Içz]–8MQi*¨R»×b=Ãá™»†È\?ÒqRÚŒžw¥w6Ž´þo¡·)÷ ÉMÛLƒcb61Z¶*…Ð2ÌãpÖ'ÝgÍJiiÓ¿Ú½0cQêU×à÷£²,@[YÅšAÏFËK™:„Vâœ}=íAˆªÊÏÁCGJ?'¥õY+ùD*º¾ íT­@„{xã&ª…GsYLkäÜü†*MkxHF5zûÌwæZšúcöbÃÉ¥îW©ÒŽŸ¯³ÄØ’Vs h6›V'2šÆ+XØs'€éd7ÌnÖ¦~€»¿QãjÄÔ´•¸Øú¨Š&µW,bT¨)K‘sb¸;ƒßËðôÔð¨Õú—W)ÒÑÖãcjÙ5ÂÖ‹Ê<}&’«IJÅm ³t·7‡OA1—ŒÆT·Wl70ù3“¤·_dw¹e 9Î5ºŠ&éá”Ë©Š©¼3ðÆšªM®Ø74°’K¾ÈïbiÂpv£Y±pl3Î1‡~Î÷®™ÑkŸK˜3#J:6°¨V…:ÜloýœµV«-&‚'YÊlNõ©›1¹/‘2ýú‚Ôpqš|¬þu ªñ³ÈØg‡Hµ¥¶6e?W +}ãæ6™O”BÀP‡ÓðÕäŒgšmôA‰ÈóBjrI¸f¿ËÅ…­Âu.¥²N21Nż\tIW.‚Î>"×;<;å ÚS¡rIZ¬UXW«<Ðê†[üÖñln;kn¥Ÿë­PÙ3:¤‡^X…à»ÉŽ›7à>ècÒ«›'œ»Ê”9´‘‡“ŽûÙT@£TEX¤[¥–I'@¦Q²ÇIRþ­X™‡O@]šÍU^]$ô£öïD3kHÚªY“é&qè¦+×ÇtBî'ÐÄÐxhݱÄÒ³rXïÄ-ó¦;ð X¸Yw %Üy«âÖ™·Ví˪¢©¼ŽrR”ºY(¯þ6˜jqŽ‹Ïiqq„º_1ÉãWPéS[*3¢kvG•â^Ò%ÌKžçlihÍE½— O|Lɪ:y´¡š¦XÏ]4ñ ~áÅìšÔfú”¾w¥°üÏ¿˜ê“ùñgcº–ù/ë2ùßv‹ëØ«ª‚»s-.ö0­Ú–,B™C‹ùKƒ“L‡O4‰ßiÏÜ­MKºe±ƒ'Ælæ’Ò€¤ µ<„[Æ"‚ž›j›Ö,1PRõÓã"[×5zššj 9ñp—W…Ùej»SÕœS÷á·H<éx÷+æ‘ãÞmOVqOß†Ý tŒ¼{Ži=æÔõgýømÒHËǸæ‘ãÞmOVqOß†Ý tŒ¼{Ži=æÔõgýømÒHËǸæ‘ãÞmOVqOß†Ý tŒ¼{Ži=æÔõgýømÒHËǸæ‘ãÞmOVqOß†Ý tŒ¼{Ži=ïª*¾*ûðÛ¤ÔeïñØFƒdIF9ˆp£WIj&²Z·NMSuµ5d•á2ÔÒ> “©K––ñ>¿Í‹}bcAÊ?±¡ÔÍÿÑ¿€6ÝI:Ö•‰•š~mR´j»Ç¤-ãa C(~¡|4Y沌Ù%»‰¾+,ÕÕë¸ÕÔù€ÿçœ9¬Ðø½°ÞÕtIJÆÛ÷7ŸNÆý™}K’òAw ñÒ—zïLáü.É·};öeõ.KÉ ñÒ—yÓ8 ²mÇŸNÆý™}K’ò@èv&óéßïÇ‘ªI†³T††gO0iŽVh‘S¼sÝ"z¾¦xµÙRêm$,²™k¬ +Q·cŒó-ɲ…®Åò)|›¦a/’ýÂnc*5˜°ÂC{qµ§#ØIÈL ÞëéÐM¸‡ÝÞýÌÍi˜ZEØa`ù¤!ÚÎ9©bTäÝ7#Eœ”ÇÝOsC€\ýðZ«ŠŠªxX6µic4~ì²1%;–îR’Ë ©‰Øé¨ÿv2ðÜ¥xö1q<› ¸ö·U%EAЬu¾5&-¯^1SÓ1û3Lóû±¤dP¥gÔ•9”ºóÄovAfäh¢¸‡ÎE3â—44ÎBµ+i¸ÖR¦muóäÐA¸‡ÝÞýÂ\Ðá˜4†ŒØÜn¼lƒ&ý\²<ƒþ§¿r憟 4†‰yšlÝâë¸V1•YC¨¡µÁù/O»Åú\¥®= ù.ãÚÊ”¥%DG% +×&f™Žb¥Œunâùê(¡Æ6'™ø\4%iÕ­žSö‚ŠÎG•ÎNkÍÕ*‡ITOÙéç\¡‹Œ8ö)Å`a[l +*Ï)û>At`ãÊÛ(6#… ¡ÕUc÷ë)ˆs…|\cDZæ +<{bÐêû¤ë—¥’–‹¼òî—AeUBv;u¿îž:0ãØ·_ñíkû_S»R—$ZIÄ(ž›$c¤CÃO?Ý„øèÇcÊCkVž¦ãjXÇ0òJå‹„ðÖHÆ>q<=1F‘•¡ͩé?Ëå¿t>ã¸àvÌüÌÌûãÝ"Ôi5ÇìÑ’n»7%¾“„Κ…½rñ&ÅbcE\4&a6¾f{7fªK!N˜‡LÄ1M®óOÎT¼§qìjêr\#7²Ü]3 îUó6÷”P‹¼SæÄ:dÃ&ù¡™Ø Y11ƒ2l$#ǵŒüïT_—k 7ì|›l“³É±.{Œ<1•/)Æ{Órd&ãÚ̆Hªé˜¹¦-Óc3'–í*ž§£éHæq1mðµ.)b×Iá©ž’Ùàš‹“•˜nÞãÉBµ+Åq|Lœ‡MÍaæÐ0•®äCÐU/×8ØòŒÎoŸºŽ³¨™¹U¹ÌíBD”:G¹ªw=¯øA©šHO^0› þ+l¶wŽßsÕºA‘̤ÙéÞÅÓDÙlï¾ç«t̤ÙéÞi¢jU³šŸ°M¾ç‹t‚çGÉ6¸z÷½…Lº¢üÙdæ§ívûž-ÒpuoÞò[Y²ÉÎ;}ÏVé¸`¥{¶;ÞÆ{,œã·Üõn#‚–îØï!=ß»-ã·Üõn9”›=;Þi¢l¶wŽßsÕº@æRlôï4Ñn +B¥—s9‚ÒÏš®Q!ˆ£¥ŽCTÿ,+ᥖžhC_µ]Ÿ¶§ñU/ü*€dá>³Æו˜øeÉ԰奆üO¯óbßX˜òÆlhu3@Äd?ÿÒ¿€15¹êõ,Þ¿ùÁ5öÂþ\ðòÃÒÅÇFÒGÉêuÈR”ЄsiïþVPÚBÑþ7õÀ¯:1Ò˜o³!÷·3y†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.÷æÒV‹ìàg¯¤ðÑý‡ÜfÜ÷£çð>—µò>±úî1²îÝÑ3›·Lë,ª±O +’i&LC˜çQ<Â&Çá£ÕRq˜èÙãö¥íc±–Ä{RUFêdŒb(™¯Åàœ{ +|â3Ce¸ï¯–XGËérwÍUSÈTS”Ñ]¨K¥€Œw†DÈ‘r‰ˆéÊ· ÃPæÝ4ŸŠ~—s4vG×z›nTŸ$òÂÿc+Ûš¡¡kðL#¡ÖlÙ¤NŽâ’p±±c›)žu5s´Æ/'òm,ET›To6«Æ?bŽ Œ~>zã$Ð׫¿ ñE†hꎺ£¢&­N›‘I]KŒ³$›ÞH¸åÊu‘P—0ªc>×½ðÆ]y)bkB”ÒÚ×ך1ï_ÄÆ¥V­ +©45FÝøm·íµ÷Œ«šFš®Ô§ÚAË=r›µRjüˆ#åDK«›ž©ˆ§fqç'B2ÍcÃTa¶Œu^úúžcuÂî3êÜÍT½gí#Øõ½ï9'æaø¢“ùÞÁ®Uêm9'­Î¡ëI!¨èס5ÁUá©åŒà^$–2Ü in ’ï:ÁncJ ¹ V£$@Ï •äŒ òÐ/y•îk”ÍwïT2½ÌuC)™ø*Ë„bx-FHÀ $ ®HF@4‰<#8Æ2Æ IDËQNWžàe]„AVxENHPË–ˆá:8À B&¸ÕTáp á`F@¢ +€©~¹ÆÇ“üfh›üÆ”ÿÍÇú÷CW/æb+ •Ø@¹•-ºÔ$¬ÅZ]ÃFårÙÃ¥õÁ,;ÇÉ£ˆ±ÉߦKÇ÷#cɸHÏNüzZÎRÄdžÜw›ž¹­V‰BŽu²J¡15ÐÊ]¾E—±«³Ão6 ­³I6éUš…"I‘4Ë­‘¦ºDúÝÈ0~ч}ùX­Æ]Í“o5Ô A)S³›1$es_›¹“r_Ø3ÛÜÁúA\y…­÷Û·­ô­n2îmšúÒê[O|›ú–PïE<4Kp‰¤‰;$L2]Á`4][o·Ó­b±ŸcbŒÚ°‹”Ð1ŒÒÇܪy¡4“ó0üQIüï?àÈ _*Õš0÷6œ,.çÒkIt€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€¿=>åo=æfy¿ÌkOüÚ¯t4eú¬xØϯ ÊÃnÃ`ûMA7U}š"ºe:J<•*‰˜·Èbd æ †mMv2Nî_;Ñxáj6J—³—ªjŸZ꨷°ê(lõ¢k„ðÐ>g eR—4Z¸FÒIòúYÞ9XZe µXÅ*ïšÂ=nSi¨Ý4Nîw‰­õý<Ù|Y»[*5t5ªøô}ù_-¦ŸQåifQíÍyÒož½5ß[l›cß9þYzàP¥—?ŽÝ—+UÓV¥âÏÛng¡¯lÀ¦Šü¿Áüև׌loT|‹˜v¯jRþ€y€–òÀÄT³Œ¹/, å‡|O¯óbßXA壚í¦mLÒ1ÿÔ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šðêõÂ^¥öôŠyjº“© šœ‰¯' É#«×!NẈ”Æêpz¦ëŠ°óZ?2ŒT/*Uz•÷Â{ó¯%…PÙÍÈÇÁøñï=Êûa=ù×’‡Â¨lfãàüx÷¿=Ú÷a=ý×’ŠþCd{7)èñï=Ú÷a=ý×’‡Â¨lfã cǼô;«î<„÷ç^J<⨧°Åä9®ßF÷ç¡ß^ñì'¿:òQj?ŠŽœ~ÃÈrM¾ï/C¶½ãØOuä£ß„þ(önQðoŽ"ðÕü‡u j~×p\áß’Šcø©aô{7ã=§¡Ýh\yÎù(¹SñUÂ1êfåRþ)øÛì³c¾bêÆÏå]¾‘–ŠQ5š•œ÷µNCðÐO°Ø¿ÅC,ðê#+É1’;76Ôé¥cǸæ­JÅIý›íIs)ªÝR)sî¡°ÍÕý¡MQn®23BÜzɇ³®¦³O[nÆ°ZQÂM[¦eP×JRð…Ú³èà·J]nqÒP{ˆe~ù‘ÔÎ7|sêœÿÓ˜Fñ1ÒF1léË©ºÅµÀÿÑ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šñÔÔJò:4.©ù× Q¬ë†Hθd¬ë†Hθd¬ë†Hθd¬ë†HÍ@Õ¹lýê{CÌ/ïXzôëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°ØaM,Æ YR-ªöY*ÆÃ9uo&©K{Tš¿ÇŒŒ=l‘QwmºÌP¤UÑÝj;\źCj¥‡‡©öÛáÅìN3Iâãȱ&e^§[¬0áL!g—Xx`°Xà^züê†H1ëÀÿÒ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šñê‹q‹ÖÖ«ê$)Ii×DPí♹z¶¢E)•ÕIºGP÷5 «©Õ7P¢õ=jc8Sè‰YßÔÝ—— Ÿ@Öð{eÞÓôõ./÷Óѳ¾!¨9»/.­àö˼éê\_梨%g|CPsv^\[Áí—yÓÔ¸¿ßODJÎø† æ켸:·ƒÛ.ó§©q¾žˆ•ñ AÍÙypt o¶]çORâÿ}=+;⃛²òàèÞl»Îž¥Åþúz"VwÄ57eåÁÐ5¼Ùw=K‹ýôôD¬ïˆjnË˃ kx=²ï:z—ûëóWò"v{ûDAÍ™yp®OÅ;_½/Ò—ïÊ'å©8¾æú <Úte¡ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¼p¾ä!Ó‡1ž=îØoS L»{Aw îB=8ttû;a½\+Áù·´p¾ä#ÓŠz6}°ÞóœÀÛÚ¸ŸréÅpäúïvÃy¦6õƒî'Ü„zqçGϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í+óRÝ`õ>Ñ>ä!Ó„¼Ÿ?z°Þ¦Z÷d^©kW33Ö‰ªšePéêê-¨Bžþ§€}^Ècסch²%žíà)TÿÓ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šõjÚ¦Æ/Ý]MMQLd„^Ú/Þ¸÷$k:á’³® k:á’³® k:á’³® k:á’³öä$„EŠ-˯fõ÷Î ¯°Öð°„&‡––>2ÏÉêuÉUÍÀBLœ.’ë$‰Î’71”)o‘’Hõè6ºJ>xú—‹øÅùnŒ\ÓS›ë‘õj\9åúÜ;Ÿ,=zÚcXi®õ½» +º½w4Nuoö4ǺL¿]säÝ­j4ó}j×—~§ÊéªÌU»„N’©šé“P·_p)†'2¸á²¾qvÖÚG±ë;ÎIù˜~(¤þwŸðd«•z›NIës„h’0$괰߉õþl[ëQøͦhŒ€ÿÔ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šõjõÿiþ˜yæ{šqVÒ¼×4•MÉSÒšÕa¨Ž*-›jSW.[†QDÉ«š}OÚFv‘jV…ä…áå„=mn+•%§×ëÜžˆ•ñ AÍÙypÈèÞl»Øý=K‹ýôôD¬ïˆjnË˃ kx=²ï:z—ûéè‰YßÔÝ——@Öð{eÞtõ./÷Óѳ¾!¨9»/.­àö˼éê\_梨%g|CPsv^\[Áí—yÓÔ¸¿ßODJÎø† æ켸:·ƒÛ.ó§©q¾žˆ•ñ AÍÙypt o¶]çORâÿ}=+;⃛²òàèÞl»Îž¥ÅþúñôDìûˆª§Ì̼¸\ø?^߶_¿-ôÔ—ëôîlÛFóvP•…'S@³†MÄœd‹$L³fz‰G ŽB_¸óGªa^+f†®ü;ðêû’œg,K—ß¹)ùf[¬™R•I58â%Óûˆ¾ç‹á k¦¿Þ+É¥„’üic~>H³°¿[*T´Ó3+QE;1u**Òщ¨][—`YŸ=Á;Çf)Iò²Œ +a^hTû ºþ[z™uieg›YRßõ*7; Ô˜Ö’'#É +L¦BÛçÝ·º£[€“4#¦Ž»ÇÃÛš™¸éñrýjͶÉâÛ­Œ¬jÚn"ÑXÓOL•£¯&–«íUVEë2O7lu4EnK‡þû«“‹§BXÂǸ´mªoºµíZÁÔ¯7ÖáÝyeõêa[lª* ¤©èºÚËZš!7H»|è˜k¾h¡ï¶½™Ÿ‡ºÿ®^>NÃÂ7—½ß¶Ýwkñ•Xm§Ô×IÝ´cÖwœ“ó0üQIüï?àÈ W*õ6œ“ÖçÑ$`IÔ9ia¿ëüØ·Ö&4£ñ›LÐ1ÿÕ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌÉXÿ ø\ØtŽEüÊÉç}Ú(+~fcÇyìöÀ+ÛV^V–‚×i8;EË¡udÈE.Ü]tÏ ©FEnTÃPîc~vè¬a0¸Š’þ¿õ<ÆÇ«ûõN7ÊÆ,œ½†–?†ûêõ>HÄ_ð»Ï9±ûú§åb¾ÂøFmʺ'Æ]çœÆØý‡}Sò°éÜ/‡ôfÜtN#Œ»Ï9±ûú§åaÓ¸_è͸èœGwžscöõN7Êçp¾Ñ›qÑ8Ž2ï<æ6Çì;êœo•‡Ná|?£6ã¢qeÞyÌmØwÕ8ß+ÂøFmÇDâ8˼ó˜[§íŽú§åbŠ\¹…„:û&ܦ·$b#Âïi3žd«V¦c_ÊÈÒØ Ø7]Û•uɵI¹/œ×S^ùó=£Ë8hÍkýÛsÊÜ•ˆ„¿…ÞãÛ5Àò¼/*ºq´ÎBy£Ö:Ó”ÝãêŸò—§uzæý§U‘uuF¯’äëòÍ÷h¶Éï›Ñ$íŠÄ­’¬ªJҌޞ!ÃX­V¦FYä5ÈöÄ>bŽ¹žSzß\ið¥Jœ5Ç¿ô{ñŒv68®O«7{¶Ø:Á¦*&sÑlŠbÚ$ž¢Îc”|‰Y’ˆø¨ŸáÖ"ÙçÏÐ7lÓίÊôóuêŒ:õõüÌZ\™RîØo}ví«PCÑô”zû*ªÚ¼[PŠ¸#§LãT"8)9Y»úžcª^' zšH´cÖ«¼äŸ™‡âŠOçyÿ@j¹W©´äž·8FŠd“¬iÊ÷K`Z©4ÊiË,§4Ë“e2ÝYo0k•µ@ M±§N^°4³Af3[¨ æ2œ%¨“MPžÓqž*ï(,Í¢i%°‚Ž \„t–0¼n®Yí çÔ¦Än p–h½Œ%”!ÀÒB F9µ½‡s¨Æ9¡e2÷:Áä{½j¡I¨Ç^¥2ÆÚÁåóÚtrI¿X<©NËP©˜åšË°”~$,¢hgÖ m½šÔ ÔäËR3m· „ù£—`-RŒe§vÛÒB»­€ö¬fÌöXB:Ár´³e{V¤³j%Í&” –2dó@„eˆš$c,Ÿ4TÉ`<Ðy]@·J1º˜BÁD*Í1›h/B{£’n¿X(«Ìò”ö”*ÆÒ¨£&ynóJö–`4ó/B„ ¹INHqZŒlO.ÀS5i¦U,’Ê ´¡2ÕI¥©&™vÒÀÏ4Å¥ˆ*Ëe9®~Ào:€xC––ñ>¿Í‹}bcAÊ?±¡ÔÍÿÖ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌÉXÿ ø\ØtŽEüÊÉç}Ú(+~fcÇyÏÈwêêíu3©«û¿:û Š~*JrS«hl†Öÿgžiuúœõêjö A¡šœ,ßÆ1sÚÞ;{gŽÂç´ŽÞÃÕm‡ tïè“KYj¤&¢÷J2¨+zòz-…`ö!›1˦›B¢bî/ßß<žih”á5fä~ÖrÉizªiÅDî¡]xíÊõ2\Déßí| òâx"ˆO*üÔ¦m†´ýmÂ*¨‡­Tj¨fª:b¢m²GMÔ>Ø8xxGNýÿr.Ã+i&rhk$ƒwSSŸ«å¦ÔõS«PhA¸A³vlJ‰Sq"‡p¶"yäPçúQŸ$]J\õIX@ÒúîàÉI£Q1QÚE!Hù¦S‡‹sŽN¹Ky#5q6žoËsž}MQRòQnŽÙÒ&c†ªzeÄx‚gúC˜crm,õ#O)WÉNm[A$äõs NÆÔÎáÛ-éÚ†lRñÓX„õÏ ]£V j™¾(ºj™z«©ÉôÒFDé•i¢R÷ÉŸ¹ðó>˜ZÄb%ƒ+ †ŒÏ†¾ž}RÐ Zº:HHH:MÒeõâ&Ìê\?» Ò\ÇVË=‹Wž}z3 tt2Ê’9£‹¾¸ÙB-|ŸHY§±Ž­–K´Ûk›šnÊ*˜tfÓN°ªžšh·D묤)=лÉT3Éu®UÄdžÜwš=K\ÊNYƒÒ l7mÑk$á4ôÉÏéÆçï3'¹ = Ïcˆ´‹zZmdhj-ôÄJ—œ¼n‚q¦.™œ<¸š79wŬ5+®âñêbÍfª*ZÂVŸ%q!H˜¸sÈã,¡™Î|Dýråñ“VZÉp³ÏÕêfZ"’”¥2írªÎeyZd.û÷0ûeÿ¥5f»o‡•½_¼F-³—Ž †“t΢†ìH™1-IJëµjeqÚÃ+yé‡r jW•’jÖ¡LÚi±xs§…à'p¼¡ŸÊtrOn;ÍW%ã3Éñè|45§JÐjZ~mc9Ôƒ¦Ñ*›Ö\³DŠ¿Ý„T§OÁ+á­$"añ‘ŒöãÐÝ­]LTÕ§Á£,«\8²Ç¨_´«8g‰|žìZ«-©Âm·ô²°³þ$Ï.ÈCÐÐÛ3ÂPF|²7ª†î5ˆÌ®çšfýÂ{æýò±z¦ê—mýV&m<Û#/§ÈΔ”[èhxöro ñI”9SME¸g׆fÊ £Nî5Ùõ3VZ bó´I6wŸH TM¤näé“|O¼ÓÕ—+W‚’iêF ñZ5©¬úžˆ˜g4î\ð.´¢j”—ä¨}Û3³@‡¾Ÿ‚-Ð’ìªÕ4<{ß\]^êѪԧ߰è‘wÎRÐxåÁ1o°L‡¾§½…y,PÅéxö1ÍŸSU…¬ámIšª:‘I4ŠÝRO'rtɾi茚ñ– š--*Þ¦¯"¨¥œV)ô„¤¤kçlJK‹dd>y8¥Ï¯ +–%hÍl¥ìæzM³çµä”šß¼ÑtQ*JbéçáøwýÈÆ’¼±eÏJh1•ŸSUE¬Â¶…,ÌÊ<‘L©$VÆI27rt ¾'Þ'¯, )MÛ_O=³jáÓÇÅ4½>¤£ ¹˜ÇfLÇ&‡ ]æ–ãÚ±%i¢O+QUU! +ʨwGTù߸Q±Hs¨²gC¶xa£³ÙóE½YRÔS9É'U´„½Ø×Xi9M‘5®b]χ™ôÂÕézžy$¼}[Ú™âѤ+(=oŸ5é†)µ]E ö¡£Âc¶qÈ=Å<ízyyí‡ i³¶Y1‰®ÒŽ5µž?®;pðè#åd'Ò‹õå–UŒ<óLû¤hÛ@¤%=W=¨$2yºh‘£Â_݈Žç¹>úgïB…IWjÒ™÷Z 'ªâŸ© ´K§j±Hs˜é¬DýséՖ/*Bfø¢èYªeꮤk'ÓI¦T¦‰HSß&~çÃÌúa‹‰¯2°Øi¦kõåZ OËÏ8-ôØ·:— ë‡àîÃÝ 4e]Å×ÍÔÃÅ íüv½ºY´ñ“ÇN<­ÑÖÄÏs'90¾2ªÕ–V®\$óõz·¶ü¥u1hÑvn¤l£ˆæž:løÍŠKé¬Ýï’âúBì%– +t³LËt…9NHeëi t°Î\™Êh—û=ÌbÕ­,Ô(ÆgºÙæ^SôEG!ãU³¶íN¢*§¦Sß(CS#RÓ5:ÞEÔu= ÝcËxw˦©tʲmŽ¡Ë°òkYkÁŠêZÊ`”ÝœµB`±®j,…7RÇL‡Áôž9îbf_Pùƒ"XÊÄ«<ÍÍLÀÕ”m@ÙšóN§àß7_W¥G(bá=Йéáß"—î\ïEª³ÁwJi˜vn¹«6ñä\‘Í+²åãZ¨k™ÄËB%àh]æÿUËÇUصq±æÙ¸øÞFB«í9i›,^¬„Xìݬo]Ón¶X‚ %õÄóªåãªë•q±æy¸øÖØÜPN<™…£i—„bòAݼ|dñNÍ‹{‰ß!Ó:‡=ÁBxE•ˆ–h>åe@Ë™ çµ,SÇ4‚OSDʵÄ&c²,žbgß ßiáº2Æ-Ám32Í.¼Ôsƒ x×L\©‡ë²’b¼¸s XYoþPŸG< Øç\ËSOàõ‘áÒ$zzñ(TýyŠnZ¡sîÌSrF~xñ½‰ÊÌ’_C!NN>^¼¥áÙ81&ÆEûâ—ABf ÿv{þäcáá*ö'›©ˆlú™«-1y…-MçÒ(“Dä)¹:dßïÚÕa+–z^­ìË/$âËè‰å•sÕÒ™K’Š¬µóàø}ùÊA‡ +W™ˆŸ$­¿b3ÓNÊÀÔÎŒæfÑ +²†ÓQˆ‘tN~Y‰îEÜeJ·É˜«Å¬úš¬+øug hÒLÕQÔŠI¤V誒y;“¦MóO@d׌¬<>gÕkU$õ-N1fdKSÍH:‰+¼;íÓÈÎ|gD&ðÈK÷;`P£,˵kÍ+ïªU–6Ù*£eŽêöë!¯ Ÿ"©”>Õm‡ tïè p’ësá'¥®>­ïý©ÊS–¢»N zqÂ1m/p»xC¨Š¾‡HÄ÷Daƒ¿×´ùK&¨ñØÉÚ“¶Ì4>T|‡cdwÀÊrü;üJdTšf.§Õ®œÔÓZéÔBíä¶kÙpšäç:dÊH¢wÎu.ßf«,«RÓšfñzzòªŽ£˜˜ªÁªð«šyÛlV¹93Ž&%ÌsðóðÅ©&•v¶h=ôÌ„ Í_NÊLUœ*,]¢ñ{™BdpEÔ:K<;çO +ýþÖ`žiJ¢Þ¶^áóÚZä’ÇUËärÕ ¡¯¹añÈOºÈr“Ü‹8™lËÃMvû´µ²ªêHuZXoÄúÿ6-õ‰(üfƇS4 F@ÿ׿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPóSS¨)„¶ÕUO¶«a¥àÞ˜Ú¤Ú:d¶ªfº}Dœ$tÍsít¸EDaw +=û:ã¹þrÏȆçá_ÌÓ|§Å÷ž‡}qÜÿ9gäAðŠ¯‹æ>ÓâûÏC¾Î¸îœ³ò øEWÅóéñ}ç¡ßg\w?ÎYù|"«âùƒôø¾óÐï³®;Ÿç,üˆ>Uñ|ÇÁú|_yèwÙ×Ïó–~Dªø¾càý>/½ùèwÙßOó–~D*ŸñPUŒuÛæQ7!Ë=®8My–)(™))¼“9¸YêÂ7ÌDÏs´ õ.UŒÒB>.;ÌYù.ãÚÒüí4¯tH{ò>N=§Ê‘ãܵS‘áǽ½h["…³ç«¾YÒ‡Yur\¾E=m4û‹‰ÅÆn=Œ¬6ñíec­“Y%'LÚÜcǦ*HNAëkUÂvÝÎ>ÿ’ÿv ê®Öb'³CµZ¶.²{GƬeeKQ1Ê›3‘TQf|u•Ý8 ¦/ÐÁÕ„¾íêqµhO<#÷æ³_0¦mj +i櫃¤½2´Šiª¢‡H_3!¾rh™…Óõ±í*Â>åÌl(O$!÷æC³É“T´å5- ™ ò=Ô¼R÷Ô!/œâšc_4š™Y­ÔóA~cª³æ?Å^äØZ+\³ÝA¬ÚJÆ—¢¥^=pB~­§*ePÛâÊ#†Bœ<ñU,6R¾'; *Ëkä¬RJdÆAÔOñE4­ À„%þÃ<—/‹³0rÝ‘|ÐRȵ¢ecËuW“#-‹¦áÑ2\'Ó‹9#$YعèMÄÌf•—ÇÕ¶<ÆIÓÒkl<"e3'‡BöaÉŸ‡§ 6sW‹Y.Œx™•†…±Jjqõ×Ò,÷5$åÁÝâ‡"ß8}A….š¬3M×'©°ÍFŒrKÕòúØŽ¹ !ì¾Íu@Í+dÌG)´IÑ׌Ä97,'­ÜýG ŠÄUŽYº¼ßSB…8f“¯Îõ¹z‘̪iÅ1 bÞ1MÁˆJÝÇ4Ýn=¿£è»i“˜YVî#ç Þ(ÁGmdïK‡ ®ç¦E ½œé¦¬¯‡„ÝlA8éõCF9™’<ºQµ„tJr®Ó|dtÏÙ§|ľ/IA‰<ºj\mk6ÓaÔ­%GÊËG"ì®[¨Ç ÊÈ9T›£ÄÐQKœ1îh¼Äá#N‡|­éhÔƒ:ÞÒéø÷ë:I"Á¾RóGA[é¹' ? báëF ®PÂÓŒßéE•(‹2‹ ×rჩÌá2&b½|uÈ_cc'ŒYØL=)eø¿J,snû:®rÎb_”ælâIÑT*j#úŒêi§ž2y>µ Äå >š-]Y7@ÈPRº*êUhâÎ qLe4S¼Râo$Ø] åFjª¥´‡n©Tc-2ÄŒ®Š,DŠâCw9ÑÉÓÓÁ!Iî†=-Jñæ}v&ÝóÖt-J‹|T\éR@Ç3C4”!Ô9Äϸ™ñ9BÞ#['ܶ£ŠÍC¼6*´›É$ ]k9ð{æ*g÷#2¥)eê`á*M¿SY’³èúúÓêÄä\=C%‡2y£¡{OO@Y–¼eê^Äá¡?[;Ñ}ƒ–ì=\®Ä6Zèî_`â*Í7[e€§->¦Æó@’]nY-ÂÕð‹Ê<}&’«IJÅm ³t·7‡OA1³Äã'„º½[š:#6¿^öi­åÓ²úQ´\YNñó«‘q(.¦*«8q¹’þ&™ÓPcÐ…› kä“?…êÔØv&Ák%’sfòJøÉë¤[²–æQ˜DÜ¥á¦r{ØW…ØÜ“ ú8ý‹ÕÇÆÚVKe着p΋[MF¶Yô¡LÑ‹‚$‘}8²y›Ÿ® ¬UM‡ŒírѬÞš¶[Hµ*Í£Ë ù;É,r¸õ1ϳ¾JšEÜe--ÒVAEHI“é5U*gNë¹—Ktï!V0_›$:½{Ül¤¬uÅeFIÉETR¬äÔy0fí“:L”:oÌ:)èKšxœ,AvèÃcl<{ÍøƒøWö#9¬qúÜ“x×È8ežc·v™7b<ç¿ÙöDÅv¤ô´Pùví|34ƒ:Þ¯¡c߬é$‹KKͺ·Ó:4ü1“Fe¼Tiieö²‚VcAÃÔ®:\Î#]&b½|uÈ\Ãèb kM7[2j2ËÔÅ Ú©GÒÖshÌ“1Ť²D.zÑnKþð}Û–2ä¥,Ý~¶,Õ&—«ÔÛñÇ+[#³¹Ã^3hYƲN RߺÝ7ë¦sýê<­Ê0‘ËK®TVõä}¼òþ™%Òdé$l÷GS@ˆöxƒšæm&ÆZ|Œ-h4“:òÑ©¦2*:lMa|¿¥œJ|d3/§á‹øzу†¥°ý(²ÝfQtî\0u ¹œ&DÌW¯Žà…ð162xÅ•ÉøzPûÒ‹F·¸·4J‹TÌ¢©¢G%L¼,b/sï!æUÌ\¶oVU¬+ø$ªdŸ%­Š7ÊqÌl“¿ïø;`»[ ™o ÉDZÃHºSdöh‹ü¡¢S“ÓÊT”ÀU4\"ºˆÜ:z—Oî†Æ¦& 4pñ‹•ôEšFÐj¹Y“é&pRÅzøîˆ_@k*Õ»s‚ÂÙðÛ‹%Ðb(ñõ½u.ü¯t?Ö +hÂïyFKÍv•^Uî,ºjXŽˆfÏ ×**ÚGpÚá áß=Á“=Øóã--¸ô4§‡§ö?AQµ|iUBaŠ ŠeóEËvĸKúd:™ÄNàS%†ž‰}Æ͹NÇ«:ViÛ˜©Ì©5¡Ý­’‘º'PŽv͹ø÷;“1hÃC7â?r»a¡ñ*Ûøqü2â"¦„ºGËo)fÄ©X‘3k5`£WhÝÐo.ÝÊ*9'Ýä%ÿ–e`§„¸Êq‘šj7ˆÒö«)"¡k-ê%TÌ!\¦äŽÈKü BîÁ®›ºn§ŽVßµ-|¤¦"$š× +œ”Ôsdâ Tn"kœ3‹´¨0gªÏu”!jh ˜“–ö\ÍÓo|!Ó̶ղ[…«á”xúM%V’”)ŠÚAfénož‚b™ñ–]Kx~NÃÏ$Ñ‹ÂÞÞ6µ ñ&TeNÜr»§™MÙ'2J6‹ÝÎG'O>â‡ÃäÔ¹Š†Ÿsá†qVR–“ú«F5$ªfgŽýZÔXée ÷tN¶PžËÄL'Öaa ãÞÛ–Ke着pε+i¨æË>”)š1pD’/§O3sõÁWFµ‚ÂÆvñªàaìžRË\ \š-ÔŒrŠ(kÄLòæ*±þ\MÐýñÆ5)ô¬¬E wy ¥‘kEJÇ–ê¯& +F [M×"d¸O§ $ÒùÞˆ©å +úJu!·'d`Øl¨VµEAh”¼‰¯$´-:ØÊ‚tȽÅIò³§yÍ¥“åô“á³Ô«¹; Ò¬Š¦¨mv³%1eái³ÅÈÞ¸³wûé>XC”þèUˆÂË/SŒšn¿V清FÛ ek(•ÓÒæ2éºvÅÖ†ë7>y‘<Î õ=qDýpZ£ŠšŸRõZÔ×ü²Ú®b£ P”pb<‘M7É&¶bI<;u–M{ÌK…ªCêÜl^¡ªej6ÍÜ·9Œiê­P|äÊʬúPä@ùéænx»Ÿ­á”)ÃêÜl+ë£Æ×#ÚµM‚7@·SE2&™{&5í£ÞuZXoÄúÿ6-õ‰(üfƇS4 F@ÿп€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPóSWª!WW¨)ŒUeM¤UÛšòfU×Oà8QB õ1|q5,%øö²¤´KækÇÉ5IÛWº²J–ñ AjZù—fÃYŽiK£hשIFÄúeÝn¢î_''`ŽP¢—þ„8ö-tu>/½ùVØ\ÉZv+xdÈ™•Ë¥˜ž†bk¦@çÐǼ”8Žö¥HY'AåÚÉT +ù<7EQÂË‘Bv(§faåzõjÇ4½_'­\˜JTa’n¿—Õ‡` ‚RLàJš¨©Ž‰LáeRMn̈¨¥Á_HT« ’õüž¸,IÉTéÇ<Ý_/ª,Ä5ñ©f|'–n¦/«ìn‘¯–J^&û”‰c¤²ÈÄ쓨ÿv2¨×bÖÀÆn®;Zá,æ$S2E‘ì\ åº ˜ä"k&|BsS??³½åS4)SãkX¨éÈÚ¶=x™VùK71Ä9/aœŠ=<ý2caê^,ªô´”8ÚÚµ½’ÒvŒá³ª†/,UªgMeNRºOä:‰ŒªxÈCcÉô/ñ~”Ûß-bÔmÿ] bLÕÞÑÄË«˜§x¢Š€10Šä04a/ÅúSooIJr6eÜcçñ‹Pë³SäÃ:„Ã9÷=<ÃðŪ: È­ IÊr6£Öýqo‹­ï~×t90Ü'~á÷==3f{FkÅåy4!©¨Ú}I5˜7ÂRIÑݺ1”9΢Êp÷E;Í ìUÖSO w¯bñz÷²<—õsÈò |Cúžþ=˘—4Ũֹ=¯Du/+8͉R”*x¹L}Ó ˜dÌÐ'¸ßSFizÉe–=^¶Î«lF‹®dM-; •<2dLÊåŽRÌOC15Ó ½K zøìZ«€Œý\vµj"Ê©{9Qâ”ôi™™ÑHU½4å[Øz¨QNÌ+b囫ŽÂŽi:øíniJf6eìT“Æø®bÔ]FfÄ=ÄΡ0Î{˜—™ÙŒHfW©•½÷…QKÅÖQŽaæZå,Ü\ÄK但r™éçé¢í:š%©èé^pÔä}>y7Â4ƒƒ»tlCŸeDïîá +ÔÒ’QÑ>HjBœ{/%Ĩ9–P‹¾P¦>ìtøw4 ¦mî+š—L.,3ñé}{×dÿ«–GcâÔ÷ñî\ÐÓáïƒÉ§ú‡I)wYšà·4ù&Ö¿,šIu0C¯3M›¼]w +Ó¦2«(u6¸?%ã©÷xÙÍÊRB]~½Íd¼—„²ëã±G“¤Œ‘·‹nöõ¥ì²—£Wlâ"7í[®ÙÕpÑp¶9ɺ(¦ø~ø-ÏZÌšx|ÅPRñuF·k£\}oxƒö»¡É†å¾÷5;ð’µÞÔÃç{)êr6•dXø¶ø Š¢êaâùîˆ}ó¿8¢µ]*ä’hx÷¾©x†3Ì×’j“¶® ud•-âB}<4¬uJØF½JJ2'Ó(–ës®áeòrvå +)peK‹î¥ó¸êX—}[}_+}µ§#ØIÈL ÞëéÐM¸‡ÝÞýÌÍi˜`K6ieó½,©e¶½¾§Ê…ÖqÍH“§&é¹,ä¦>èŠ| šçï‚ü³ÍßXŽ^÷­±ê +¡ê‰5å¤`Êgn yÁ’p²D[Ã"j&C‹ÐÅB^µ¨àc7W¬Šjz<ñF…ÉHXó7;LóIƒsæ硘-T«õn6/èmG¯‡a±9 ,i[˜­!Ôj£4±¹ädÃGÃÃïÂ_«q°ÐÞ[œX]N¡ËK øŸ_æž±1 åŒØÐêfˆÈÿÑ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@*›Z¨jlº¢Ñ©š-TÎM7bªÅÄLªšíâ ´ð×bÖÄåj4å[ W¢£ˆIF² &kª²ÄVéûþÀ'¥Ùë)c4¿/«äx:¬ Ù%*²òH¦H“¯ŒczŸ˜™ü°’‡o©vlL)üž¶ß„µÊ.£v“Ú™ŠîT5ÔÑ+‚_Pýá8b©°ëRãïDZ‘†4ðÊÊ–lìy7jô}3!­r•#&/]2J-žŸ‡Ø{±~L&^=¬IùC$rKÕÆØ7s©èö Ç·]áV@Ç+R˜ÛñÓ&&g¸ é«žhR†yzÉI¶0ÙZèˆeŽhßÛã•4Nÿ0Q]‘5K6­Gj´$ðÑó3Í™º)S1’UK‡¸ » =ØÓb¡¥J×”ýo”ë ²2-Ìl_ÃÄ¿së -O-•IVùüÖ°öeŒk†,Ý:"K¾QDÚ¦m5Ž™1B{€’[“Õ¶O8”œc ‘守†Xàâ|r¦ ßæ:wWVµž´*×.aÒx‘Ÿ7L‹¬ÚöêTTÐ=À©†ŒV¥ÅAì×–:ã­9Q2ìŸ+À½Ÿƒÿ|{ +—iÕËR?'¡°mÔ3sÕ‘äT¦ºb¨µË§û°]†Ž"ħúœ~OO‘¿äfãâ#Õ”xñ$˜¦ž!—1·"“³¾,Ó„Óu¯U¯F^¯½1Îßv{챇¾ ³`a7_«Rò¤’õz÷5ÊŽÕiIá£æg›3vRÆIU.â‚™0÷]ŸVãc\¦«ZɹBÊ7I3]1RýÓö쪘{ëÞ·UWi”½ªHÎÎ5fª™ÅIE7[Í;ø«šeãÚª|^_®ñóA¹¢%˜Ï5AôkÄ4X·“Urݦ2JºO­qó¶Zö¿Eµ“Öuêf$y{ É™Á3OØú?x/G Ç[Ž>ü{Z<¬š3ghó5m?‘ë“ä›eŽѾ!®b9S@„ÐÃ÷+Rây¯Ôöñã'*Úqº”x“DPˆEMp—ÔÐ ªŽ[ÈVæ¿TÛÇç32ÆŸf¬„“¢6lÌET6aq†O§8¢H-ã+䡾½/§£×’sG„3æé‘u^ÝJŠšð|>f]\FŠ¼ixVì…ߎ§£ÙÈ3‹]á +ñáN£t/g¨DôÎ+Ëe¹g»Nª+x-4œ”EŠn u3.k·Ž­T«fÙ¶š]Ûf,ªfK¹p¡E$ÔÏPêh_ŸRX[võ¸â¨Í®·ÎâÜ(ªªŠµS"(™®˜¦SDâÍ<Yc}ÛÞÍÊÒuC×¹“˜Hµ—lƒÆNå²Å¼š©ñ'fC‹xšÒü³K6·ÀΣ‘!ÕòJ¼ÀÊ)³ÑÄ&!/‹³QÔª¬òÍ©à­GÝÛÆ'x‘\³o•¸Jözmû?0ÂÔ˜uâøâª"Yœó4$#ËW¼ŠÉù @ž\¥:¹šQ+H3E¡4YDu½Â„M77·#Càœ¼Áw›Ú´~OBÜÕ%Ž?'Ý û¨#W‘s“ÄŒùºd]f×·R¢¦î9½èÇäô³#ZXb#òz ökËrÖœ¨™vO•à^ÏÁ¿‡À¾-ÍJë1©fܪí2—¢IÉƬÕS8©(¦ës³¹§s¿ia–£‰nh‰f3Í}ñ'MV-äÕAB†÷iŠg¥eÚuó<$§Ä*Ånˆ‚ÀnS›|Zæ%ÂrJW*WÊð¨cfW|Õ“Ä—^=LI¦lôOØyV•Ö!‰µI¼ßCͬËïG·tE±ÀÊ’)³ÑÄ&!/ü°‚Ô²Y•Vµñy¾ˆ6ýQhÔͪ ç&›±Ubâ&UMrñD”nµWn=.&ب¹ç,uHÑÊøgRâjgÜL˜‡úB'ÃYjLmøö7Ü\‹Y–Ÿ2X‹¶p™ET͘¡áŠ'–1­ÆÆE9õË7Û·6âöƒNµ‡J ^a¹#5ÔݘۑëÈa¯[‹TñYd–o·zZ k¡e¶bÒ¨d«— +HU3Ô:‡¸B ˜a! xÞµO•$›T}{›úZYœ 5ä$³Vå¼²ªh&AC ÍÆöM:”e×[ØòI¬sEß9X¤lÝ®¢ÆÐ*)’ùÏÈÂU¬ø^U1±ešy$‚æLŠÊŠ]Jâš¿òKÂì0·ZŽ.Ü{U)_SµÑ4 ÃwÙ>øT”ÏOÃ&˜UÁUÍîÞò–:½û›a{s Zªª*ÕL“:f9LS)¢qr® +¥½ÛÖéc©f÷îoøèú¡’Q/íš×ðÕHÙ†Ã>þœ†‘…µ/Ëõ]oMGUCÒ 2é¹$X¡zéT]K—س(ám­U\^ŽãÐùéZÖ·nwP2ß$™®©„¥ã§á“LžìWÍn¦Z˜y:¾ôÙî-Âjª¨¯U2Lé˜åP¦SD醆Ë51´û޽̋,Îyš ËgÅETô £­~z÷z#ª8Ùv”fðŠ³.=åJlÂäçÃ?½Ü0hžÓ«g¦6¨‰–Š×ÆR /†u2’r¸ûçû®á‚|:‰q ¿3jT<œrÒSÍ[A9je ¿"§ ‚í* U10{é›K¥ë'j±ƒœjùÊiã™4xå%ò'éÊ-Õ–Ó.ÐÆÆhhcÇc_Ùnºë\–¸äù^M{uɯܿË*Ó¼¯hO,c¡¯ÊÑ*‹F¦h¥Po94ÝŠ«2ªk—ˆ)ÑÜž½¾½ÇÌû©ªÒ²MU åšÈ]SbÃ'4/)⡬ñó´9ëX£éwÚÛ)Q2hîõÓ$¢Ùéø}‡»gn=«5±2Ï5ÛšR¨‰„h„ƒùPhàÈ&šê)¹êhgü4 ºØ™c-žù™–4û5$$³dîb*¡³ ˆ{„úsŠ'…ÖëUú”>_Kå©jØz5¦]7$ƒ k¥Qu.^?`NÌ)á3-X|¾#×LÕðµ“C>…’Eò5Ó(’—®Ÿ°?`+æ¶YçTcÄZ45©Ru ¢°±ÕG/‹pMk÷°ôîv~à9­ÎuFE¿†@uZXoÄúÿ6-õ‰(üfƇS4 F@ÿÒ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@*êUl <Á¬¬B¦ñºK“c¯uTÈr_Ëíƒ>…[5˜Šw‹ä¨`ãè‹A£$¢¤Ç_2èÙÐL‰ÁGœ‰ðÓ94Ç‘›ë¾-k݇EãÒv{ؾµü³Û×Í ~Æ@eR‡Ö¼zNƾ´ñŸKâÑö³eyg4üõ ù3EµItXvîRnB*ÝÊhâä:yúdtêægÔÂdãÚÞ¶s<µKJS’Î yw‘íWXÝ’Ê"KÿN1q0dᦳu -–kå?h4ÊɤúAòæ™3©“Âú½ÄmŸ7²%¸u3ÅÓ¬VÉåNG#=Ë„OO0åû¬¡%<Ê'š4#šn®<¯ÊæÔ˜Öòð³ ÌQ¾#èóµK×Ó¹}Nx¦{/MŠ¿Çœõ[OÒ–›Tz5W…Z6/ +<ï.áãßðÈBÌiçŒYÒÏ*Š~«AãˆÓ³*j5±XäG7aëyã-›\,/ŸÍm›Hø¯³žR?`,Ynb¡lžw©ë¶½;>ú,ˆúÅ…¬<Êñ0´f¹Ë©ûEª+HÛê)N·„QãdþÔG8"ÄrO ;…?¹HK´óO2üsöò–ªƒÆ«TQè.‰Ë ¡ˆCŒZ,ý%êÇäô4{ ¥!fèÏÕÆ%£¬gÓS¹¼L±~Ø-b19Tà°™éM'lxóõk³;T¦È¡ŒÚ óæŒÊc_Ãh¦ä'ÝwÌAŸ-ifêõ±¦)zýmã j¶~è±ív6ëB •ã@žåý <1f®3u/RÇaåëûÖæ›7]RôE¤ÕŠTÅÌZ6ÙÝ]ÃÆ¿½¦¥Í2ŠðкÎ"{VãcU²× jÚêj¬§#Ugâ%†TíòR>všØ˜¤' ™—Ŭ\,ÊÁë­ÆDzǯMÈZòmò™‡Oºvä¤> tÖ:Jÿ‰šºó)Â˦ú÷3nLÏS´Õ%hÒ@Šùaš¨VŒL&.raèbiüŽèP§˜ÅTÐ}gžìæÊÉiv´ÞÅÍŠŒLßKÉ“CÜÏVÿnáß´q9—qLœ{Z™þQÓú9›W«uâÜ:‹2¦õÂ3Xé“é.‹X‰™89¬ØµO©ju „1‹OÀ®í;¼G‡ô·½‘+þègЖX8ïªÏ™òÚl£[U³š9Ò¦º”Ô¤"n0½E°Ö!>V{Ä÷#Ê0Öó6–L­¦©ž?²Ê²Ÿ›RôÕ6዆7¯,C&qà.âÇ“áò­VŽ’„ix6ôÝ•-‘ƒŠeÔ=¢F&c¯¹É$ž›ˆ…7â}Ñ¿'îÂœxØ篾 »ag¾ÉÚ­UHKÚÔÌ]tô´JjzÌZgÌ?yŽ|þ@ÇÄË•V|ÌÊþ-œ¦¡Jñš.J]ª™ wß5*ìêø{°EƒÁÆš>ycG·ÅF¢˜*j`’úxns. Ìt+¤!÷Ö³“pÔ²F1õ±EœÚÕHÁ/P'yád%/[Nãâ× áÆv#[Gý÷{–?$öÞ·3†3Z—¥¥Þ?f¬TzÒR2,Ú.[§g¦yrp4 {ðÁÄüfV”ÓS»Ð8Ôä½Z=)’5l´£g؆ÑË•Æ“•Ït.MñX¸i&K7ÜçÅÕyô"‡×º ,3/b¥ÊÚ¾gWëQ´»Õ ªÆz%¬Ä9Ôà­‚L±¯/vùYŽª«@oùƒ©ŸžLêðµhüžˆ0å’háã処}s—Sö‹TV‘·Î¥:ÞW“ûQà‹¦äžw +r)¡ ÑÉéU‹„ÐÄGäôA—£_·”µT5Xª âAtT.‚„Qþ!(–™µj¶å¡ +â›´)äÛå3Ÿ;tíÉH|é¬t•þ!4ª•2®áéæo(؉T¦¤'vÙㄨű‰„Íe †s“å—/û‘F*69;ºz-sòófÿD ýŒ°÷ œ£Ü°\Kõ¨Ò¨­1 ­‹T‹ÃÌ€š*"‚}ֱ͉òÁ¡»]RkT›Íô3½ ùm?€û `W’Í¥=x‰¼ßD:z>Eºên6-a±1ŽY¾Ý÷h¶A¢ÎÄ(w1ÐNY’ª&TïÄNI{ä¹Ã %µn6,Ïœö`Ï+\¢*&Ñ*–sÊ+9ÕÒ£Õk’¸Q3' ùùŠp‚­ù¿ +¢•z9 ÅehÔm=匼‡.“’”¼ªpçtCb9=ÍÛ \«F¾_­үG7áœÀ¦±”Šbò5¹›4Y®¹4ÑÐf^Ä•ËžúnHÚS§v³[#átm†ÑÖ›Fµ1“Q¬1){Læ ÂßT  òYšÍ%A×t™eÓôû¦‰¤“<¨åÃY™žà]¥š³²½Ö´½Víá`bUfª)ÞQE¢ÎÊñ>…ü<ñŠ–Ó6xjÒÏ.šw˜WW$k¦Üª2 æ6f³\ÖÓ«ïÙã:;ÊÖU§6m48ï7ŤTí9inª…›¤ÏX_&S9O˜ÙI.zß„,a¤»'}w™´‰Uº«ç*Ê2d0ô¼‰¤ ß ¢ÎSÝÑK{NùÓ¹åc*¥+1°óý•ÇÎ̶K@ij£¢²Èô]9–jƒÙ%WDŠÓ—„Ç=󩧧p`ÔÄ3ð¼›Ë~=.6LÃ&jnVUCš>6´Ž`×:ñÓbðäP‰_ùó œ435sÓšY»ªj•ãû,«)ùµ/MSn°xczñ2Ä2gèþ,Q= 3![5)~_K$ÚÓw•%9WŸ^z2=»æË6hžPáªÎOLa.|Œ{$,÷ªËò½ti(»HwRÊRòŠµVJ?Zäš žJª'ϸàäQ=úáÌKûÞh¦¼ö\¡%(ñÅY@ƲV€ àÚß}ò9ùTL·NÍ‹3îΓè|‘C(Or¼”¡Ä\–¦Ø :‡-,7â}›úÄƃ”~3cC©š# ÿÓ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@*»É\p´—”• ÂÏ–•fXWM h–'ttÖQÉÏä úµ˜Êw{¡ 5j„-@òŸ{ O¦èÍË ž·NÞyà2^F”°y +“GEâÒv¶u_MK:Š¶´Ò‹v¢’™™JÜæ;¯K#¼ö~àdÑ©,µ©Í/GØÖg-"z²„^§è9æÏ$äYL³‰£r(L3ªsâvÅ:RÁzl|õ#hú·9 KÁ§KÃÅC kÉǵA±MÙa“ÿÒ T Úa%ÍÖÀ¬-"zjæ«)©§È™tÓzʼn4’EK÷/Ÿ@‡¹˜¡;Ñ°Ñ˲5&‹oÓ”,Å>…“7^<å3Y)GnA3ª“<"Ê#Ÿ‡|¤ù`÷4°Z)¢Ê–¿òPô>FÕg9=Qål$Î|4S"÷Õ>;ñ‹†ÊØâ¡ש^Pv‰RÈ+JÎÉ´‹MbãNè—Ûß¿|ûŸf2ªS–f:“A—(‹AÙºØÜÜFNRô´~JE1; Ó<`Ö•´Ãâãǹ¶í†.S +ž¨¡˜žAÕ? GfhžúẄ: þáïû‘s_+4fl·ëf›¥[²§ec#áä ,ù̳<—=¹š)˜™ç¾qv^åb­HÌßô3Ÿ×N1>FñŒ:i¨¢'Â[ ‹ß! }=ÐZ©Yw,ÌeeT,ÕhÒìÜ7YHVq'B%Ù“>N£Â.FøÝšwÌO•”gÍ<±k©á¦‘§Yµ¡ÉPpjÁ«gõ3§ˆ¼‘P¦J,än¦Päç&짇ÚÆ,Ô¡}±bIRòôœ„¼Ž/î5žXLÁΦNåÓ9ÍòÁ~¤t¬93R|0ÖvúÑWö4Ö bÕ¤{eÊD•)ÙßPŠ¬Šiægœ¹›æhIˆÐqï*Pš·ææBÙê&¬ ò…˜=Lšx8iµ½²Ý´Žt0x#ÞþH(¥‡–Øéçëõndë*£Ö¡i¨ø·‹W™ë¼P¼'uÖúsÜ÷#N ¦úØr’±Ø{D<åQVû+éI'FE5\YîÆVUCMQ.ÍÃu +Î$èD»2gÂÉÔxEÈß³Nù‰ò²ŒÊÓË<Ò½ñ2ï¬X’t¼½'!/£§KÆ»g–&ps©“¹G€tÎs|°cB”±eF¼Òên{ ˆ|êr¥ª¦ÍO³’E‹fl•)pb7¿}S¢ž†%ýk=×p8|­~Ô"Þ?—³åµYr5œ"î ’g1G&_<ý =Œv3M¢© t%¥ÆÍǪVr“N®•TÎLfê6E;äÄúþôSV­ç„^Ñ£jvmo3í5QSRõÃzŒtÔ‹hÝ∜¤x‹4N!øy—qO)â3Ó³“0Ùj]É7ä1Û9)KxÆL÷Kî¿ 6¸˜]…¬Ò%ó *ŽtÍd%Òfl¢'"¥>~eÍ;ã*¤÷bÒ’ÍÛd GQT«WÎÙtcÚ¦¢J¦r3ÜÐ9ÐTšï)Ѷ/î;–b*ÈhäM «ÈùF®Vb“3™ÙH›ó¨}ÇO@eaªY‹‰Ã_ —v^an|å³]Õ¨c(šXªÂœ‰'ˆ}3Ÿ0ƒ¾ ´ùRyæ´}[›þÐé£VTÄäF*j¾fº ˜ÚZæeÿwt(I,¬ìU ,·‹R–PUTºôi(™¦ÕÆzÖ²‹µ¹ž!0q”â\¹rñÅÞm,Èb&‹%U TT}&âºÒ¬áÑÉ$£ÛÓ‘Á"dUpΙÉ~ç|e‚ì#4[Q«÷§YÒ³ ©y(¤ òå\>”g’ª¦"'C$!8yç¾ ª…)h­W©5fÙ³{FygÑK¿ ê¥ÕNBELf§U#Óœ—¢‰ðéKX¡Rj.MRµÊã’’Ö×Ѹ†9ri&ø †~ bؼÕX’¨4µ›U¯ªÆ°î¥aæµBHŒSÅvÕÃ;ø*àðÉp×÷Á•Fv-Z±¤ù"Õ’µŠ²pðïc iò®£}pG'pñó‚aßÁÓ!%ìñU*–Zžž•º¬F9äE6«w­Ul®¹J)†ºgH÷xº„=Å;Á‰šìì$º=ì¾1)j_Œ—q¢¯£åžZlÙªh‡Ù ×Ë•3$ÜCåJ"CŸ@˜‡U>HÚS¨Öb(]ì­))'ö“O(ÝŠ¦Š}»\©œé&´>T¢7ÏòCªŸ$)V¼V–hc3qñl÷Ú$³ÊJÐ g‹NËJµ,;æŠkKº:k(±%þ@·K\Ï+TšœÜ|W¾RÙKDN'DÕ &Ås53¸s¤C-½„ÃQLûç¿ò²œ\ÐËO\c‹š®¨ñØÐÒó-R'¦ vj–LÑøf_.sp®ðwÜK›ö}Ì1çKFž¨qصE…]qãµè ÛÌTÕ )=í#§LºhðÏYœ—]¦ä„ÏÄO0ê\1Óù‡µçQ„£•É7ðÍd£ÞF2¦ƒ„N‰Š™x + ãúÛI ã½/h“ViÚ•¨)gÒh‘£71lò†‘OsDä?÷.âÿ,ùÙÖ¥+SByš3Šy¬{é'R^b®Ž˜|‚ÅÉQÊI™¹ðD…Ä8PšYJôæ˜óJYô³ô’œ¦šªåwEA„£d:§pÛ‹¢­Äøiœžöak[QÊtæš{ñÞeJò¡¨¨¹Ö3 âÞÌÀ¬Ôí2OÛwñàˆðÉs1MÐ[u3*­Y´pƒlQYEk]©Y!O»‡bŒNAˆù¾‡Ë(±Ðì!4ÅSÔQ%6C§˜7%aWºÔbù5ÔF-%¹L™"ÄL‹\#3áúÝýÓä—,ÑeK+#  UJ=ËÉúÙþ-ÄE5FDJ¹lýU×Qb¦KÝ[ëpÎE;¢©Í<`ØOñZ>ÙÐ~Á˜þ…'yŒÛxùÔi`mìèQòpæ3mãç4°~mìèQòqWGGogµO;ãlè?`ìB“‡GGog´çqãÜmŸìèQòqçGF=þÏjªxˆÎmŸìèQòpèèÿÙí{S»gAûcú|œyÌfÛÇÎóKlè?`ÌB“‡1›o9¥ƒR…® æ²e°¶)êºXˆân'»ˆo¶ÀVÂFMq:ºs]m›xêŽI»dH’E2wHBÜ)w Üu11M2¤ê[rÒÃ~'×ù±o¬Lh9Gã64:™ b2ÿÔ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@)š6x ´ª=ÑæÆhª§,°ù=`I$Ñ'šX|¾ U¦QšHõzÁj4#1—`+Ï4HK,ØG4Wa4 hf•LkK0æZŒ’‚ìjf\§,²‚Ô^Ï4" •+¨„²‚ܽÒô*K)Ô “(Ibæ‚ÔÔ¥ˆ)„&‚ìg– ¹ +‘ZŽX‚œêòœÈ +¤¯‘UL³§±—&°y{=µÏØC;Ü€«5Ôý§ i,e¿r +sÆb¶HM«ÖI—*ë—PY¢µ +2À ³Ev–®óTZÉ-0/53$µäñW$aL ''„µAN’ËP¥£™®» t€÷©M9Áæ–Ï'…Áv–¨+¯RX͘éV´Ï+IÃ8<î»ëp–^ð=Íu®Âýà]©:˜Ò„ µ,^X ÓL¯$²£˜Ï(.Rîe{,òÔ…Án•~é䰄ѱÔgS`fy”½1¥y?[3ÍþcZæãý{‘«ÃÂõcäÜØTø¬1׌Ð`Øë†hm:šº‡¤Â³”q€¤³Œ‘©®ænÀçà +ôXçP}Õ PÆ™Ö̼Ç.¸>Aƒ{¥¿yË÷>°49Ô-khpt k³ƒâ¼6VÈ"w¼E<ñ] 4b£Ž…=‘|´E§@×ÆrÞ9eRxÔ·œ2v‰Û»D™È§À +ØhÀÂã¡_d ®,æƒ*Ç\3@³tÑ?5¡õã”*jW‡™«ÚŸÅT¿ð¨~Aç'Âð+±øÉ“©mËK øŸ_æž±1 åŒØÐêfˆÈÿÕ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@*—ëœly?Æf‰¿ÌiOüܯt5rþf#ÇyŸSâ°¸Ù0@i·ºQ½o/AAº1ˆGŽ%Ä.šgÈ¡÷YîŸÜ®mMn.=ܾw¢ ªê°uTBPMå÷9¨zÊ.6Q?¹ Ⱦëà(K§¿ß °§š-|µòÉ'ËédšUËÚ…tùÖz±-aÙ3½ë(¸Dë­så‡úÑ‹_¸£'élð²ÂzÓù¾‡¢Ò,Eug3M‹uˇN¢Üºk7QžáûÄÎKáC»£?›é1RÂJÒyÞ†~öxtÑ?5¡õãõž6¯Qk§ñU/ü*€0ŸYãkÚÌ|2dêXrÒÃ~'×ù±o¬LGùGã64:™ b2ÿÖ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8W ¡çfú‰êú¹×äÇ\7ÖáäƒW‰ëmìN׫ÉÖÌN׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼‘\¿\ãcÉþ32N—T¶oO—W­éãý{¡«—ó1;ÌúŸ…Å‚ÅÕ­9!-SÐR [â6‹tùGŠb˜dQ™Ó&g<ü—Bl°cU£šy|ïCÚ]”JIVô­Mä5ÁŠ³Ib¾£>âãtÓ:d9‰È¨bu°*àû‰<ïO•¹êø:š—©MXR¬I*›Æ¨4”‰3ŒTÉÎ|LËéß1.v¿ yCêôdó½?"ìøxÑ­?›èù_%?RW5DuQSD–œ:k–64κ¦rà˜gp±ÓÌÐÞȾ¡F7Óò’aãZ´žw£äØÏc^Ù€7MñAóZ^1ñYãjõ»j)(z¦Rêf6r0ŸYãkÚ̓“©Úõy#&N¥‡+ìD¦,ú†-ßN-õ¤þQøͦeŒ€ÿ׿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPéÖÌòV·Rêš Òõ}:OÀVØ9²Íòncâe»Šy:¯W’7¹å`÷FN§kÕä†yNèÉÔíz¼‘æ’X˜ÉÔíz¼ÓK<Ð2u;^¯$4’’]û“©Úõy!žX¼žIŸ™:¯W’=Ï+ÞèÉÔíz¼Ï)Ý7Mš„Ÿ†Üõ}X‡¿˜ÊׂåV‹½N°ÑE²•æ‘ˆž´ 9´YJµú­¹HTïîD9Oý9õEÌ^G7”«B,çÖûq®…Ù ²ðYxAäf±•ä‹×èôÿÑ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃWSª(š/`ÀVóê8ß–ñkÉÝqùX¨¶]ˆ~^–ùA¿³\¥5à·†¢åPheÔØÂ/1SÀÿÒ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÇWW¨<–W“FÎ TUœNDÓ~±LTôJRÜLƒxÝðÀTOi·rÅK‡1nšñEUhBxkZ–kEÌK?™^zƒ×F¼²¸Ú†Õêu7µNOÄ"žY£6Tcx7Ȳ¬ÿÓ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPðy‡-~ˆÖÇ—fžààÛ©KÀWþmð8›j`ב°¨ZPõtPÔ¼TÎXý‰^7 -Q¥­Í¶b‚mÐOP‰¦]B¥ý€¥Ùõ¶Rj}Ã× ÿÔ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÄy H>GMQz™’Y"(Ciå¼]_Њá-Ï+æ‰eS›$[jKQŠîGPy=H÷ÕåƒU˽~@ÿÕ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÇSöä:žG­Š-Ëó×ß8&¾ÃX^Â|hyaécã~/ÉêuÈUÎîW¹€½€Q¥¥÷l^^Àf¥³¶&{‚¼·S Àê]„n~Ò=ZŽó’~fŠ)?çüªå^¦Ó’zÜᤗ­ú=Ò7ài,d¸K™,K`\Ñ™]8¤y<€in§EgïP.òÏÁTf»Ýn/2Ü^Ïr\ ÜÉ`Q ®£(.À9žÞ f/¨<Ϋ)Ô æS¨̧P3™Aî{©ÍžÆhÄæ²«Æ f¹xÀ3\Ë`3XËpSÖd°FKžÄjF gºÜf‰Ôg\Êu9•ú2s#ðS˜µÁîc .RrK&]@·J:ÞKG,n +ž¥¹xÀ ÜÒÄf{kP{¡¸(É6ˆ Z ÷=ÌÑ€ìfŒAD&Uk‚ô*f¸.Ã[ËØén®4àÖ£/uz;{;¤S¥Œ@Ì^1=Õe°ìe¹ÖgSž'X3™â×#L ­F=Ïuz+c-Àžkš, IRÀMcGp'Öe°*2˜Ñœ÷4XË” æŒ @Ìhìê-žB5žèn[æ| <N¡ËK øŸ_æž±1 åŒØÐêfˆÈÿÖ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÇSöä:žG­Š-Ëó×ß8&¾ÃX^Â|hyaécã~/ÉêuÈUÎJË,ùµ¥¯3›Ã¥0œzîâ)oë†ùçoá¨KØ~ÂÄb´p¼z¯ Çeûÿ:ô”¯<è‹?o=UTòî”i +‰“.¡ŒæAÁ®6@¸š¾”êod(Æ«‹ËCo‹*J ÍVÙ5’P²F…›­fHýZ¨±‹MB(nEÉŸ‰Ø*Q‡åjÑê–þt°ñle×ÁBqãçlzbÌéͪJ¢^¡xÞ”ŒzF,ÕEé œ_P©%p‡Â-õ/ŒªÜ©V†]q…íxx¯®Þ6-,$#ܵ 9Œ¥ÁNÓs'–‚›MÖJºÍð"«3‘5YÌ—‹Ÿë—‡˜ tjFÑ…¢£…É® >6ókkä‰ûHö=j»ÎIù˜~(¤þwŸðd«•z›NIësˆhª$´˜þ¼´FtlJv®>S‹…¾áÁø~á?\8ÉÃa³1q8Œ­¹KÚÖºL!OÏSï`$&u‘ÙˆªNˆžž +Éæ_ONàö¾ËT1Wn;A´HÛ9dÙãò˜æt鈤ËêCÿé… 5Êø«7øÅ©;>“j×5R4, œó„NºLSÅ2i›<Ùã+ K3‰ÊÅ·ƒG`8¨hÙˆhõ B™ò©‘Vèâhc¦¦aLØN8‹Ž3Ž Ê-dÞšuO5U«¯²$Ì™·³Ü:—Ïȳá™QÅ1³«ly®“Qñ´L¬™"Ý(ÑÖ˜'%ôɉ¡‰ßŒªX8ŠÅLwA’hjæ>¿Ž4„qVHɬvÎ9O ÃW 餱8¸šYY8jÙžŠæ¹kB´l²Í\öLÈËt˜Š‘Â)Ÿ ø+'™}?\'|.Õ£f-,]øö7= W£]Eë£fç@™C¦Øj†Ýc¡øMzV]¡Š»j¯kLÛÀU“Ù +ÆJ|ù’É^%õŽÌä!ÎNXP¥r¶*͸•²TJªÌfÌSñMy·H/σ·ÕŠx¼Ü{ø`O©´¥Ý8æÂÞä%]ÔuŸÍv[®ÌÄ'xr)ëg×ÂÙå |#DZ²Ù[¬£Èä¦ gsJG¨ŽRUÒ3eo#sù ‰|ùƒÚøKqíX¡ÊÆæ¬-¦—¤ÖMÑVB=á*%K4û¥þÙà %øö•ùRãØßoj¶,©õêLLF)±;­Q´:z: nÜí’yuMž\5Ž‡â½;*ݶk›SZ˜cÊ›{0éãS»*m LÒ&{‡ßB[|¥á‘Â6É™¹øwýÈW£b†*í”4r}z-#,jröt¹S%ÌøyF&>ÿk×ÂÙkÊ0Æû¬­-½.x¦¬£ÜLÈJê3hÊåõL˜‡TçS0„Ï.|0·]­„8ö>jÕSœNiðîâ¤áÛå.#Ýܾdnbè<Ó0ÄsU¾uÇl¸»sšœfÚA•›Í.ÙÂdQJdn(E8{àsSqÄÑÅ­GÅÎÒôü£5˜»žg”§Šbn+w9ûþË­ +ï:n©š½iÚzí΢³E}†r›1<Œ„P÷ùa¡9ÓÎ[¬¤ –Í]Yì±LéÖHÔבôÂÙú§`AšqÄX²ã8â âÖÔ–»®”ÛØÅå¥5µ4˜—˸ãâî| ËÍ8â,™qOºÑ­B6Í5" "™Ô,ƒ¬ÏÖQõçï¾^P·Jrc1YjB r²«Ñ£PŒYÃsªWÒ cK†m¼>ñj•-l¬e|´áñ½jªTˆek¥)oÆà€ãñíü¹>½‘–59{:\©’æ ü<£‡µœØqíjäåHGc(ìÑ©ªú|‰˜æy¼’k”Û– +g"‹³Q³&\d&ãØ󙬆Ÿ§ NÜçVh¯Œš…6by¡ïòÅ2ÒW5[1««k|iIxغNT±nŽÑeÛ—îbzâøÊ–‹lu¸ö=ëÛ¬nÆv@Ö%êê–H‘+F˜¤IÚ.ÔÜðŽE=ȧ£ãǽs¥!ǸamfJB1CHÊÁ§ à¹rR¹œ) ‘Κ™˜ÑñãÞó¥!ǹ®U¶ªXI]ÃA»ž•Muip¤nE41–S0˜ž¶Aå -×kcá=e/j¬jV“†3QòP©Þ}ì·\#™ˆNðäSÖÎ=¯…³ÊøGce³·iG‘ÉLÎæ¢9IWHÍ•¼ÌKä&%óæcƒãˆ±$ÆqÄÒFÓLhh‰Êrí@ÚH·‹’\!Ó'‰Èã†dËŠmZ>Û¤*÷I"Þ…•M ³"päÆG ¹Ó>ï.â°™xö±°˜Ìü{ÂIácš9tbÞ+tN¡‹Ùa“`É©³š7`»sš›fÚA•›Í.ÙÂdQŠdn(E8{àØM·Ö¦NP¿ÆW†­™œ“ÈÕAxö¬\¨e Oµ—ó>ë¸1¦¥fÂ[½›0GeF¥rsã–,’˜·³.c`\ðÂ…½¯ˆ³F³{P‹´Öò+0)ÒV=ÑÚ8ASùNžü?p¯FÅ MÚ•?^1žmP¼9LÕYÌ(©³='¦¯€a”M‹„8ö1yüÐÉõè´l±©Í#K]&óÛrlKø<;ý¬d˄㈱¦åHCc{Õ¶ŒòQŠÑ»Ù掛å%rÄÈᜠó¼Ï¨an®¾.Ü{vˆ¶g•¾Là”l“H×®¹_*dr{‰ê}éràWÂØ¡‹¿ƾK\‡JcY:Md›M©¢¡ŒK‹†BwééòÅ­ +ì1MsV¯Ge¥òsãënºbÞ̹sà +ì1 m#m‹yCQòs1ñ«.ƒ§Í°JKí÷ì(¥õpÅÚxVºlA— g™Ô±Ìe£–Åhñ.Š—nÞ"ƒ ­ž¦vumo5Òf>2‰•“N-ÑÚ8rÓľ™141;ñ %øöµ•1üqû¦­"6­‚w8Å5“ÈñÊé¢éá8n³rb%‰À8Å«†ÊÊÃVÌ×é*…:¶*iL’r PrR)¦R(LK‚Üi.SÄÝ•¶–» Š¬‡p¹dœ²,Šbbã(±Ð'y¦A“F…ØØœ]¸ö>ºÜD®Ïd´l¬+7 &Û._V鬦†6™„ïÅsQy./Ž ÈÒ5z1ÕE6vç2²MÝ9Mb›0¹=Ëäúq‹56T˜–fö¡i­äV`S¤´{£´p‚¦%ò=ø +~$âüØ[-a±¹¸ö5Zr¹gP7žtb™¢Pò˜8QSç¤ôÕð,г*­F/-½,ée£¨™§)ß1¤ˆ™ ˆDýuTRùÉߌ©°¶jécïDZšYO5–ˆJb/Óˆ8o”·ÃÓX—1 îÆ,гiJ¥àÁkÛÔ³WìâÕ³™„Þ¿Í‹}bcAÊ?±¡ÔÍÿ׿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPA¨?-r_3/õš¢å®CËRÝO‰#¬ÃÿT¹ùaþ¼uJ?ZƒœUúì|£Í2ü­1T&–^"£º›ˆ>@Í,ÜDî¥â)ktå@ö••˜W ÛÈá#ý±ˆ{â×(ˤ’0^ÂM–k¹-木٤xZv †·Æ»D•3„o^Å‘—&7WW©Ö¸ T“ëvzƒQÈòG5ãã‡Í«ÔÏå)áfH¶ùÛ&cX?F§¦&_J•¤NP»9$ŠŸ«sk— s°»þçì“9;¥Rм~Á,{ñÛ­—ŽŸú Oº·‡7«S PõË +R:q9z)YªbOTˆ¢»“¤«Wh_Q úòi)ºv¡øº5&éÔî¡öˆuGË«½ØÀ¡ˆ§/×)÷?o«[HµZB—N"«¡ž¾<÷NY,ÊG`õçJú}RŠR3ß<‰ŒÑŒ³uÃæŒ5Ú=ýŠ±”a^ 7ñàÕK ´‹qëUÞrOÌÃñE'ó¼ÿƒ 5\«ÔÚrO[œ#I{¤Á‚.eVÇuÆvKKâ5/cˆÿ cý!H3èQ»zÙK{Jë*IâY¯Ôù)»õÃ9<qo +ñu!°¥Õõ«:Ž ^Y¥Ö.££aÚÁ1pS’k–:¹§ºžöŸ~6!Å«ÅÏAËm,¼œdã9…ŒÕ6ë”­ZóGš +Ÿ³Ãõ±©Ž¸7t§´[ÍùŽªÏ˜ÿA•É“Z,NVàÝÕj ÝQÒèº)L¢]b݆Lq‹C4±eâ-65€r…AXBÎ/bäuã…éçŒý$Z¸Ò‡qç25~]m'葱¼¥Ï<"ÊÁÂÆx}·Öð£uJÞÒ­  ˜£XEÖ»Á[dþô%ÞHó™xxÝw }k³©ÊÒQZž¾¥Qc.dÝkL“E2†‹ç¦HNG¸Mö>»Vظz¶ú÷3Ù+ÛHJ rÓ‘°«Ç딦9*·òÃßÌO¿ñŸ_ãc“cÜMò4d øÖWkf’M"<4ÔÞPT s¤U¯¡~æ'ø¹/×8صJÄi¾O»2ôCj‡N8ªÒq%mu™BÉýÎÎæ©¡âí>wö/¼zœ‚4<]³§ÕÝñó8kdÕÍS N™Œ5æU2¾”ÁvWÍ›¤¡òÅ»f€Ûcä´Í +m,”üïOÈÓ_Ò•Ÿ4³&¨7jêyI‰Gj e°›ã8EuKÿ#!ÅÊSÚ uièêSó½NDRS5óɧPÓ±ìXážò­ŸSßàfaŒZT¨G‰›\>"¾–/ƒ±Ç>ÐëJ|ù…Œ„C7²Šæ¸]9I–-|çlšwî'ÞzÙqÉ°´#ÄÍF _EÀînÉejzÇë7ŽŸ7xîp¯¦œ*ÓÔ÷Þ\>ãÞ\!G’Õšn¶]:ËCWÙž´g +Å#%JǶ1HUœ¥%Šr’æÌ1n¦Yº×0•æ––®5–,•çvˆñRúiJ¢E m<äA4Ià\=ÿt©ã2¬,•µm¥gheQ¾›ÊNa7WxH¦|DOË ,ñ”ÅI ˜æÔ+ª*ƒ¦ŒZM’¦fÉ¢2ËÈ^IB4UrŠiß!4Ful<²ÖÕëØ×᱓F–¾5ùÆ« Ñ¢¨J—]b»"5:k(Ræ(w¢×;Ëç0ņ&ikjãS*¥g£¯oDs…Q´êW%žØãŒÝ&‘ësŸÀÈÒ/(eQ“-\Üu(š¶i$—ÊÉ^g_Ì òÉ³Ý ^:?VÍÇS;“füG–_·}Ú-£hÏ*V—O)MG·|óXßÉ9['&RKç¿ÉXYhå÷±1Q­›ê>¯[$ÓOjÉÄäÚÖ¬£™¨Üå*bÞÄÓ¿Øf ”éf÷³©Ï[/Õ½^¦ü®¬–H·ðí*ÊM«| FÊa=MÌ3ã"¦b¹œ{ça™Rzux‹Nµ­ü_“×­¼j:}õC±ªºÎ¤$ñ¬nvJ|Äs‹Š‡"yäÐ(Sž."»ZœÕ~·ñ¾O[NŽ¬–™qQÆÔÔ¹ajt`ݪ•B.“¦9ûÊÉð/ŸC¾ðÅÚj2ñªØšÓqزÙëNoHS‰ÆÒñK³+ +ÝUdŽ‘ÔFæaÎL<À¯-.Pš·}vFšÐk61kÝlùJUÒíÕLÞ¥|›Æ§Dä?ÈÏ÷˜£7ÔxÚb~=??Ðð„­­ê[)tñ< &û"e$‡ ÍÛ5‰ø¿•˜]­O56­Ó¯—OÏû«!ZÿåÖ;‰ûqƒ—»›äeãcÜCå-sòófÿD ýŒ°³„—¸›ä{Œw/ÊÄ6—YR2•­QSL"Í0'‰jU:¾˜ÏYRa¦¦öB&AŸ„“$¶bâ+gšï©Åa³{:³Y#©}}~€làÆ5ã™fîp»._÷AJ•¦¹_ylæ ÔO+}NH>zÕËw&º‚ˆ5 zæb„ÏHözPqoòº²Xebßô«)6­ð1)„õ670ÏŒŠ™Šæp ï¯gÑ‹IFZ’Q„<»6Å»cžGÈÚ ê.îBâ•tf·KsqÆj¡>[⽚¤•¡ìØÕkÌ‘f+¨¾Æ@y†«6†{ý§Ò¯$°­%¾ÕècjV²¨)Ê‚Ð[ÄQΦ“Ryst"܉ŸÍÐeT£,ôd¿Ú½, 1“IZ{}§ÑämŠ®žž¦iµç¦cÊYYŠº.K[PX‡Ã"g& {úó4ÅTêé¥[©šŒÍÿPlÊ×T…‰uF«ÞA«×ŽÝ¼ES˜Ï 'Ÿ}NÌcS©¡™“S5i[ÆÅ’¼îÐÞ*_M)TH ¡§‚܈&‰< ‡¿î…8©ã2öHJÚ¶‚R³´2¨ßMå'0›«¼$S>"'å†xÊb¤„Ìs jÕAÓFÔ¤Ù!flZ#,¼…ä‘Ä!Š®QM;ä&ˆÉ­NÕøØÀ¥Z4¨å—ª;ünRÙ}µõ/”É™¦|EJ\ÃCsÜï/œÃU‡ÈÝàä…*9¥ëöøÛ&Áÿ-UÑ$ßÙ"î:aòllÊ•GåžWæ7_XqBK6˜©îãm‘ÏZ2T½*Ý­+¬nFÔ©¹4•ÅLÞæÌ=;œ¹ÆÑ–Xêõ´œ—^l–‹!Rß™>¸ùÛ þúÓÍmL¼ 9ežñxó0«ô&OÃ#‹òKjrü¾’3f¯—ÐÀ´ ël<,œéœé+Ÿ#=á¬ÄI­¸ÃO-H}Oãqµ²lƒòíiD‹ýŒ€¿ˆŒc3“á aVmõ¶êR¬-uåÌR&9uŠ^èÉ—'Þ„»Éf©JÄÃQ„#V?mõ²5‹ýH|ëcø 5¦Œkq±›Éµ%— ,Ÿnû´\ej«„,^‚Qš%]Éf˜™Œk¤Púä{„¿ÀÄ0õ# +Üljæ§i,ân=mˆêÉå—¤í®å5¤‹Ö¦Ä>h¼9LmÏO3|]…oªq±&ño“Ò5JÚš¤’%-b¦R¹ÒCÚš.®Ÿ;ûÞ=Lú–&x·q.ç]о0*hx»gO«»ãæcÛ*£ÞP´ùbߨ‰×+§ËÞ@Ç1.8ruɾ&Ÿâþ?y˜x.†J~¦>6‡j´…IP;¦$©u#ÊòÒînÉb$lDp>Ó§†.Òžò­Ö§¤©OÎôæÚšâÛ_‹LëmïLd&”\¹ÀÄÌÓ iS‡^ÁMRj°ùvl‹\³J5Å!OšHÈ®c:‘PØyÉŽK›¢}Ūµ)È­r^¤hÃåÙ¶,jÖȧQ•ƒÆ§bèËë”YkíÛ8=ü%·?[? —ô…þy,Ý\v(¡‚šZø×årƒs5n‚&ÒM2×|ƒ^MÔØ`²ËK[ NQuU9?!QQœ²× %%|©dɆG=Üß ëœ&&5Óác+ÙNYÌÑÍPÏTš¹ž–bv •±NVŒÛçÜH˜™çÏÏPá>&’ac3uS”mè˜úFl©9*q¤`ë ׈mÇ ÷1,jM +Úý[áåÐêõíl¶eS–¥àd_2]x9¨ç%sˆ¶ìÅš×Ésß®f\ÞówÁ—G.›_˜“`æš–®5ù[‚6Ì]3´ +¨î’4jÈâ7hSúo”EW{í-Ëëœ#!Šú–n:ì¿. êòËåû¯•¸¬ª’yCRñð¯ÔIEÛ¨èÆ29’ôÕ×&øš|ŒjÑÍK7v]ÃRË<²ý»ÑvÒ¯¨úÉz¦*¦¤”‰Äk»%–3›†Ä9™“§Þ œZ9}ëÊUs}GÕë}ÐÑv9—FÖ…§Íñší”,Yže¡0þÔf\¹x[ŒÔoï]„•²ý[Õêl¤¨ÛVajU¼Ä*±…G$FITÜë‚m÷²_E<Ìk‚ôøš¸™ .&§Ö¾/›ëÖ×eì²bœ==!B¾jƒè˜ÒD¨„‘Nvï'ºùÓÏ!ïçß'dbhUâeØajÓúßÆù=qyÄP5DËÙ9ê±ÓpR-x¶-ãdíÈãt9Îu3ÎuByÝ./¹gšUâÛÛr•§­’’‡Œ…jjED#Û‘²fTÒWÌDû=Ìy¤¥74ueâ …IO+TÂÔÒÊ2)ÛÁ®Áâm µÌ¡Eˆ¥ôqÞs8{ ³ ²Òãk*j§§çzqÕ,•¦FW $F˜+åÍŒcß3…:UaÜÝ wCG†.Cõ6­M‚üH§çý×ÊÞµå ò¨{I¸j¢$,L²oÜb˜ä¼Šh;„Üôóż%^î?"þ6—q”®i•4… 骈ò„zઘä9‘Á:y›žžx³„«ÜMòÚ=Ü>W®Í(×”« K™dd¤ŸI:29’¾àù„!ÔM3îd!H.âqY&·…¼<·ãÒÅÔÆ=BZ}ÄaqPGT1é»Ql×)“Ó8Øiè(rç~2¦¯inÄŽó[K$Ò[fkŠ[&-9­÷O‰­¦y”_àz£0cV•™FI™Z-¼ÛÑ®‹yˆ®Ùb—°P˜g°eF”\yJŽµff¥[ÌB«TrDd–Mθ&ß{%ôSÌƸ6q­4•ðõá$°òø;[‚£²É(Ö”›Š-ãvÒtËs´nWÅ9Ûºn¡™È¶§¾Aj8ØCccŽäêðžXù|ï}%FÕ•Uj³¹bÜí£ÙFã$rùSN—.عcF{}§ÓäcSÂͦ’ÿjô7UG¼¥ÞÕŽ(Š…––;öøF9$Ná÷=<Á‹>iéIoµzYòaå…YïöŸAit{ÊÉŒCvJ"C3–Ž~¦)ŽKÈ·[ä&jgŠ°•4r¼ÅÂZ“20Çž®’fT¹iÊÁs”]UNOÈTTC†',µÃIFÉ_*FY2a‘Â'O@÷7Âzç l$ÄÂfª|,e{)Ë9š9ªê‘óW3ÒÌNÁ2¶)ÊÑ›|û‰<ùùê'ÄÂRL,fnªrƒM +&>‘›*NJœi:Ã5òqÃ=ÌAn¦*õøؽ‡¡ +xË7^¿OŠïe–SÓ”­<ÎyÒ.×bc Ýt sâ4Oy¿ˆšws3‡£¾ X¸Þ¯`$ +y¦êãeÞ»4£ÞQ¬eÛ½Q òZEúxF9®¢álBø‰§žjÝî›Òa™¤cß5JéNáºé–ö…õ pZ’{2ªÈÐ,òžqHÓ0¯!×bÍÊ#ä1Ó'1±šYµ±èÆ^¨6=oFÕ TU”[†E|fyæ’Wòw¦|B‡O<‹'|ßO;Š—.¶6; 45ÃŽ×ÕgÔTã9YZª«tÕY‡È Ð©1¿’5hžép˜™çÄ>x¢½KS‡Ëé^ÂS½x|¿u‹ßDYεÑëÒ³Ø.HéIb¤cœ†Eã•ÔõÄÓϸ|Ö¯z²ü¾…8L7Ô!òúbÛ6ic+S4tõ#Pº#ä¤>6*F=ó6pB&CŸ<ų/ðÅÉñÐãÜÇ¡ÉÑ…6ùZ1©VV+bf–…Öü“]î¹× ’æó¡s‡ˆ=’xLW£(ñµž"iöð0Í¡Xê Z‘²7»ɇž0f«õ~66TiÞ”žHú[VÎ锕N¼QµftQ#Éùý±;ü>Ö.bj}Uƒ¥j2ùßv‹c7±çÆ¢ix]r#9Ê|ÄrÍòÅI7 ß퉧}{ŠdÇîmã©fŸ'Æ×Ùëù_+Ú*¾´mVqµªÑ-a›¬‚î‹2Æ<Ó>!|£Aäù`ö5á&Hý¹LØ8Ï«o«åd˜JIämaSÔ +¨‘›J5‹AÊcâ”ìñ¯ßÜûñb­{Sãk"–5N66Ed Q¶=S5p–µI59Smxø¨¹Qb.µÂaܹ|†>ùÂÞÅʵoC«T°Wãg•¥GQv‘A‘xZQô+˜\EÌÄÒErGlH¦ésÒù‡"g>檧E5O­ü^6²ÕžR¡ ™ÄårªwÔp¹‹¿8ps¨±ùgÕggP’Z_[øÜmÔÄ-é L¦f*u©Å©Ü†b@ïJgæxw â‰úÚw82¦"k&¡g©¶²œÐ.)vò®¦ßF^iliÊÔ™†DˆNÁ2 8¼\!72©`ã *Gí¾Ÿ+0¡­:’V•§ä¡Ô…."lß»ÊuÁ«e8Ì9Ó¿¹Œˆâ!¼laɆŒµ$“íÞ‹·¤½“™*Z—¦a–!S‡}äÊ91ˈFk_[{MLõ3…¨âá +Ülò2ªr|tRCíÞŸ+YµŠ jò$ã\¤¼{„Å»SA Ÿ‡‡ÀP™‚Æ4µf¿©{”)Ë%°ê’”’ªéZ‰s5!cãÞ ñ$Ô9·gÎçžLÃiÜ)âå…(ßÅéòžOŒg…¼~+ÑDÙÖ¶QëÒ³Ø.HéIb¤c˜†Eã•ë‰§Ÿpþø=­Š½~6,ÒÂýBJ?nôÆ-·eö6µ/HNRu¢>JIÓãTŒ{ælà„L—ñÌ[0y[jœl(a/Jz?môßo‰£³§­‚œlX8Ùh'ŒÑ.Y'©¹+ÔÑOBùÌ9î¿4âÇæ³VeË<£K@A3‡Ëðé™u]BÝÄYÁιÏsžqŠ¨Î¡„.=¯‚ny#XÓUJ"V‘mdPY3ø¦;‹—.n}à¹J¯Ô8ÚW§õZ~w¢ÊAãªâ2¦*ˆä­bÝ2Q3ø¦YEˆ¡=nåÌÎØ-Ò¯õ>6½¯GêôüÿAQÒ&jÊ:y+hrÊÁT1ñM–"BæçÞ +¨Ö¥¡ŸÍÛµEj5tÒyÛ61²T}¦Róu;ªiJpìf$2Ò–@Ïò‚æ?´éÜà ˜Ô¥¡“ÎÛµ +utÓù»62ղ̙}—kVS‰¸ëIœá`Üáå;ã«6ƒz‹r²¦ +@“¨rÒÃ~'×ù±o¬Lh9Gã64:™ b2ÿÑ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPA¨?-r_3/õš¢å®CËRÝO‰#¬ÃÿT¹ùaþ¼uJ?Zùâ¯×cåvó>~cJç,àË•¿3ò§Ü™ªŒ†Õ!Ô´][ž+·ñm’ñIyg Ι ªcu‹Õ1µ?„ðóÂZŒvÁr´·§"-yÌmØwÕ8ß+þÂøFmÈgDâ8˼ó˜Û°ïªq¾V;…ðþŒÛŽ‰Äq—yç1¶?aßTã|¬:w áý·ˆã.óÎcl~þ©ÆùXtîÃú3n:'Æ]çœÆØý‡}Sò°éÜ/‡ôfÜtN#Œ»Ï9±ûú§åaÓ¸_è͸èœGw¿<æVÅì;êœo•„ü½†›¿÷o¾­Ã’±0â]íŽëÌñ^1YtB”Š¢¡ÓP™ccÝ:g¹ëj ô±Øyµýûržaˆ‡ïzv‚­¸¤œé·H+“”á=„Ü™=ì×a–iQQs/žK±* (Ìé”ÅYçãO[S¼Ì^#3g„Ãdr”kº›Ž·èiL¶~µRS” dôå9n·NÀê*IC2ª”%€.ÂxÄ’Y` +oeT»©@½Öéw3«.ä”ê…Þh¥7Œ÷1KG‚«Ý^ŠÏ2KS<朆–À«)%@:ŠšÁnQ’À¹ žêù¼°%ËKSšäô€ÑÝí9²šï-`2ÜÎÀy¢»Ý-Ž¨÷)NœµËzrÓ¶42À ÌæhÄ´°4`ZX‚›Íy*Gˆy¢d© +§§u™*Êp±?tˆJn» `ú± ®üêš&Ši&2Jý ª'‹ð,I3YU¯K/w5ÈB¥—Ž°UïZ¨G& {¯©L°¶°Q–Ïs\ý€:ÞuÔ®”¹¥­nŒ¹f6šUÌòÌ–cG(*Ïu9lŒÀ§I2¼“ñ`4“'âÀª×YË`-c-ÁD!uqšÀ»Øë6[Œ¿SËÇ]À²æ&_¨eã­û×é&U’S®IŒ’¿ZI‰2Ìi¢ONPS¤š*aF¤¼@ $Ð>©ÅVk­B¬cÖŽë°–Xõ‚˜BÆŒ!âƒË%ÆIAF–i²ƒËL^»NI%x’R” ÖQÖ®÷5ŸƒÙ¹ia¦¿¾§Û;SëþRøÍ…¦iL€ÿÒ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPA¨?-r_3/õš¢å®CËRÝO‰#¬ÃÿT¹ùaþ¼uJ?Zùâ¯×cåvó>u¬Î‚ùËø2å=uãåõ'ø T`Ì_°õ5û¦T!yKžÐòñÛØ«@ÊÃa³5x¼^N= ¬µyDLD7¨\7žŠ”q’Ë6'náŠÊ‡9ÄÜ{ÿ[úûš2O3Îf­ª*ú†N¢ÖhÅ(›…”vžQue ‰„Š<3§ë—Ã@O4Í5…}TR²/)z¿%]âÑîžÃÉ4Dé$ë'!ÎtŽNÉéæzØȧ†[Äc4<{"Ô¬ +ÖZl"ºì™P˜gs*L¥ºEqº"© Ø(O­¸šdà±Z~=Í'k!(¹Yfª7NAˆñ(¨do$TrÌ_'€/ÆŒ°aƼÑoȸ;RIë5ÔÐêµ*Ä3‚'rDoç‡ÄÓ¸-Fy`Ê£,bÖì‚­­iýr’¹–=Gs-Ò\näé“é,×£eþL­šÚŽ«}ZÒ(™£yE^.}öä"„¸v<¡FëxŠÙbØíjŠÚӞ̔xÊ=ÑÚ&õËSºUòÍôîs!à_“aØ’Ô™¸éz‚°ž¨aߢŒ}C¡MîNsGº"„¾GìþHO[³R³*XÍ5×kVÙnÄvE­:í­ç¹s)À¹¾iŒÚ‘•‡K4\–§’’oÍ9w®ø¥ô¨'u#¼ ÕÔ«6”©ÍÕœ©\l¢›ŽP¥:ˆ¯# k·î´Os!>ìXåû¬§ð´®±‰ŒÐaªBZÔ+æϤ£ª–­“|ù¢i«sãu°ýmA•W1iT™Ÿ¨öµ8ü:•óW1lVˆá%s€Kƒ_]°§3OUõU[QÈS4Z¥T5ÊQÚg^êÊn„nŠ<3ÜÏPdÑ‘‰«gÝHOUÑ5ÆjÒ·|W N팣$N‘ ‡q3¤±4|û♥0õY¤bÌÙÃXAEIìã»Z¢¶´×³¥2†‡t£DÞ¹jwJ¾Y¾Ând"< ã:Iʸ‹5úrѤ¢âªSV¬ÊÑÝ7ê…ÐLähñ˜„U©ÃS°õµ.vcÞke:i¢Û,×µª¡‚U'‘1…pžRÖ!v§Vò*n„#—<ø’Ŧ‹Ý·©žÒì^2‹½P¾ÖRŪ¥Ü÷âý‚z|W4·Òž?7ÇÅ7-iÖr×d’Ï#g#[î’LZ3;u[¶áªØø™øzyýøh¬OˆorÒõÚ§¨ÛÒÊÎ&.Iºæ-ˤpC¨sœý…À› n=¤¸ËñìyYå[9h/ßN2µ¦.áŦ¢~˜yÙº?`NÖA4¶eI=Ù“PbÌÍ•í¡«¶[MÒò ™åŒ];QGmñýNrñcg„¥v³VÏ’:µ«¨ºŽ"µZ5Ó9„_«æI¢³4qÎEˆ¢—.\ ÜóME§DOZ%¨6<å<ú>!C[ÓrÔîœ:"gÃÅ[°"àh &š³C™¶š‹cR äí㪈¹f1o’2gU¿§˜©13ðT&zb½ôóE¬ÕRV¥gÑŽjR²ícËŽé¡Y¬ÕS#ø|M0Ð@î¢Ö+Ézà‘*ªjb=¤âòò¶rÌê¸68çÏÄPšX®V„Ðz(‡ö„êµI35»Q9iPA™ÒT§Q¶93þFæ–MEºµŠÒ2q’ß"EÊš‘ç1Ë÷ ª¶X)¡R¼x•¸«š†´§¢b[Ê2×yg‡héÙšßo u/˜C,Jóׇ´ª‚¨´+/ÖùjôT¼Bhð¨5;W‘ÁðÈ©7K‡ü,!%×!UÉq‹Vm0úÛ:ÐæÝST½C,ÊîRÆ=Ó”q |—ÓDê)ÂëUjeƒUvã%FÊÐFx™%ƒ¹e +Žz8—Åï™Õ(ÚRÁßkO[”£/Æ[¯ê×Ôä…‹# +ZX^-ûȨ‰ÔÌäŒ 5+¶8šöc”¦í­¨êö03QŒYü#dÊå™Õ9±!ôÓPeTñib[‚f®ª,þeÖe5PÊH”ZM“;TˆBi÷‰çCøÔ¶]ž34 ÉkN³–›$•y9ßt’bÑ™ÐU»n­‰Ÿ‡§ŸßŒ©d•4ó<ÝVueV<‹¤¦˜µN.:I5³ÇÄ#Ï»´ ÓâÍ5WÕ5kZF¯3…’f»¸÷¬S:G¾ßM%ˆ§â?Q´˜†“EZ¼Ä•¤T4¬‘QÖôÌé8Õ +Óã3ÀPäïó¿îB¾Ü{TÐÆ^®^:¼®Ó­BRš¬hÊ~/È>t‚rFQ;×Hñl4HNÀû’œ¡„¿Ò¶2Õrù=GÝn5E£ÖœE%äëÕT·ý#‰×[ß3H˜§“hg’1]å ¦þ.Õ¼±ÛØuøúi–;{¡ÿP/âí2ÇoaÔ?ãêü]¦Xíìak~´7ÖOAÎU1ˆ áÔ~K†“Cj¤lwh k÷OØ +§WöN¾ ÉÂaáVxR‡Þµ‰©¢’1AûP´'¶­RÉUH"ÝÛü T›øZš¨"DKªLEý„©“ÃÆ…8Pëâþ?Kžbñ1«<\Žó)y¡§,õüÆ=šÌfçšê8Yb+”+;f¦¹qKb—­˜5½ÉzKÕ„z¡Õmž;¶Ü‰Œcoå¼ëjõD I £•4Œ/çPÿ¨*¿‹µNXíì:‡ü}@¿‹´Ë½‡Pÿ¨ñv™c·°êñõþ.Ó,vö8kæµó@JXrûhØÖîË6I4ÕÕ\ç.NDn\¹öø£sÈø jͲчm?+cf§7""ªâ¨e ¤c^”40ÕÇ¥ šhUŽµ=ó)y©fª ª.ÍUˆl›DÚ¬Ó))q›E”!®jý¾PC¹o‘åÃÞkìÕÄb“ò7(ƼmÇ¢ +—©«Õ<°Jfƒ×ž)¼vv¼Ë½†x^;;L±ÛØúo@¢˜õ¼™ÀŠÇòý9ós¯ÁŽ$¸o‰$¬O[n‹êWZ¨ê`B…±Áºpb•9 +uó&·¸N[¹"ç¹î3èR»Wˆ©h²¥QYFÒZ±E‘På<“Ä5M2ß9–SC3°ïÆ>f^2¬&b»T¬åí.-Á®¾N¤tôÉÞÏÉÞ‡l~AÚ´X˜y¡+n[‰“‘ªhÆmyÓV³ïV»¦›|ïCæ œ<°cò…lóËçz ÙQ-V¢)K<´ˆäÌmo‹jÊi$Ë¿E©ÃðÐ>éƒÝ%¢³…—¸—Îô¶ËÅK)fê4qtŽ+#™ÓÎß’áÈ/Æ[1kÔÍN/¥ÉÚfÎê(96Ïž×Òh'¢íÑ"Jf=4ù~äjñko¨P½H|¾†ærø7ÏIO³/㤌kGäôA‰ÉÂJ‡—Óeù“ìçæ9ÿÀQ0sÆJ1ù=+õ)B8ˆGËè|¾f”YÌ\ª.BQ£ÎÌ«&ðçÏ÷(»ÊÔt“Þu,ò^m%¸õ²¤Ee9/5 +ÑC¨æ®³w"Á1Ký˜·‰¥ÜB ü=}$ñ‹þnÏ?ôd/Ë7rÅšn醲_ŒÙÍS¹`ÊTùE¨×FTÙÍãáGå*c(§Kõ8|¾–XIZxíËèbK#³ùÊŠ*Mã +âB!LJ­›&‰Ò/¦OŸº úÚªCåô4¼‡„´g†Ü½‘r®•†uƒ²ËJ®™”¼íÉHUTÄ>'­-z³MRHhK iÙˆ,aR°¨-6%{¥xY㽺m37x‰0}Æ`ÎÇF5)  ð§=ß Z‚¾¦«:B¡”ŒxÎhÒ%1Z5:J—#luýqNÎèWÃYN»’GfÎAM8÷Ex^Vó6¬è¤¢Ô1r¨¹ F;2¬›Ã©ŸîQŠ£šV +¶IšU»Tmjª>Ñ bLu^B·b«Ë¥Ì)/‘s’ÿÊHaM*±3B.@ÃHµ–fù’…Q£„Hº*ÚDP™‚Ö#uÜYepVœU4«¸Š›¥…uYTH"­íÈÎ\3"ŸîÃÃq,ÿS·‰µª_Ææ©È³‹£êWÌR¡­®ŠkÜ,DN™ ÷eûƒO€ÂZ¥øô¤8ÜuéÂz'¥ì²ZºsN«0xä¥à ð¥.z‹dÇÉ’?ÈS>ùàogÄ]æñ„\µ±ºÕJ¢Ñò(‘´ÄšÛ$Ø¥ºDÖOs!ÈNÁBú~ï°|Mño°5²2øÁÄR´ÌØU½|¾—m-„ä¥RèÓ²ˆG<Öyc®ß—1‰|—⎩Zœd/^wžÉ›#©%—š¨êBÍI·‡”i‚ ÈÕ&ëyü4óFÖ”ÝËKŠŽž<{¶Òéz‚ŸV!:Ò´}/I>pFÒIYäçPûŽ6yí”ÐS@[¥6·“áãNGÚstÚÐõR)©‘8Y”¥à“&8×P–Õ¾Cwˆšô~oKJ¤ÿ1”/ÐÛ_°ä½n6-RÕGçô°½‘Ù¥E/FÓÚ›–jC&Ù$Q¸‰;b ¼^*H÷»b×a°“ËNö÷¡·Ê×í†@ëÙ„Z‹ñd°Ë$dHuo¦Øû­Í âÖ$;ݱeòŽyªË¯²Ûb^™–‹­)¨ºþ¦{5 ñb)¦-[ë£}îQM<üO[ÝDcv&‡Õ!2²¼—H¦ÄýNckbø„¬~tÈþqVK19VlÔ¥aVq-jš…~‰Ulò‰]“7Š`&3çkc/Õaòú!)g‘3=2±”§j$ +ÕS}ª‹Qòe~ë&bž¹,¶Ïæ­Mi<ïCvÓôlÕMXÚ2‘us¸R§(TM²(ªE=,LýÐ[©RÙ<åÚt´Õ§ó} ~«uGÔvH´Ì²H7}0ÑgÎJDŽ£‰}-3² aãõ8ÁUz9jI1õ3©É3‹£êWÌR¡­®ŠkÜ,DNBîË÷ –¥Ùøìwq46åìŒvµúÁŠ–,¾OžeAƒ%XËæ¤!8cd¶hú¨Š“|Ú´šŠLÒÒ…É™,B¤\7'ÏÞÆûˆÑÌ‹`èi!'ëmóÄ©MÛ«dH(ŠˆÎ]šòªzXšbä³i¥[›êQŸÍãµ–àlž¦q¡-2Y"¨Ý2¢Úás47±¯I¦ëlåÁÆN©»=­*ºžš{h±HÂSç¨ K±:îMâ-pÝÈ ‡>Qòý0Ê£FXõ­T…XuG² Nò^B:—µÚff$ñ ¨]}fÉUˆ©ÊÝâ۵ç™q5‰ôÃ"l4°ê`C4c¯Õ¹Î¸OËlÌè}`ÓbsC©#ÀU–0ÖÃÕÿæK²Ï‹ì2 ´!–”ðûo¥…‹×Œ’>)¾êÑ­î-I¹[;b“嘨´±ÊW-qTý,|ò ¸e«<~ÛèZånîCíÞ¦<¶4}LÁ ùzÚjL‰ÉE—&zà‡HØŽIò1~…xFUŒ^Ó9¤4õ¤¼Í¾l²° ‹±Ó›©‹•–¢]é‹ÃÉž"EüPØâa™¯ÂË Y*JÐabåÞB¸pb¹g¤³‹¥ÌE²gþsð1iáYóâeƒ†(£YÔô,æ åej‡ŸNI)&×Ê{ä]±ÈŽžæB—â´²ÝÂמxeðüímæöIõªÔös) 8hw/©÷˙ʑ|3ß&2WÌÓ¼OréËeÊsicš?cõjj´¼æVÚ.¼œw.ñº'{N®¥Äš,K˜kn)§ê”þY½î‚Å×å£VjÚãÙ E3ELUm£-W=…M9bÉ4MCäÄÏ> YvÖ×7g‹Êä…LÈRío!P:šQE± +»²‡L— ™¹v6[ÌØ`êw,%il'$m&—F”B9æ³È›vø乌Kä¸3¨j•­ÄC4ÍKjù¬¡ÍMWÔŘwù(ô’fF­ÛåžùûóÜÌÒÄ<­ƒ·Ö§)Zù•™ÄM@ÖNÔI6d_ZQjÙ#äü2"ç Cß¹½îbì؆40ñƒqÔh@ÅÙÝ-O¨sÁµ¨!å.º—•11ŒuÙãtðE©êÆ,ºrÂW0?nͲ¯X© ŠgUE l“|¾0g£¶”ñ0ƒ„t»5)Ë>¡ëD“Â,,Òïn˜»ÜDƒ“ ±9)ÆÚ´ÚX´”d(i¸ØÎô[%­k:˜ùÉ32 MÞ7Ýý쥸ϩAŸ‚Ž’:n60C¯ˆù¿áÄ?Ùäñ2]-8hïÇ[“ÖÉ(Þ"†«:1JCE¾C;„wîÃœ£•+3ñuá\´sâ¨Õ9L¤ÅEdØg‹´jÅk„ž=þÈof*fÎjI6ÏžWÒrH"cÞhº(‘%30óðżDñ^Âa§‡² 5ITÕQijSõ‚°xr„)’+4W"‡É‰pçÄãl e¼ÇÌô‚*ž£u,³¥êÄ\”Ñž¬EN\=ç 4î6SM1g Á“Éú¢Ü “Úüº(h8¦X®ãåɼ]2} ·?ÖxÚ»$4u¸Ø÷Ô°/«ÊͬlŠk'OB¢ÕýÜ3‘)×Ïp‡? ˆ\¿s¶<)Ïõ6“É¥­ÆÆk’6NXØOå…ßͪ~ˆòÆùLØ0—ÀÿÔ¿€l±Ž¨ù7Åg‰“ Ðïy}Ž ‰$>§ ñh­¤ŽH9ÍfÖ“æEÔL®iÝyª$Ú¦wÄÊò]nn¥ÅßxS<újx$¬V|_²àÜáëC ǽ—}}_ßÕ¿Ò‡ðNxwû!÷æl?±ãð//D§óœý\ý |‡ô£á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÜ©|ݶꛩh%&R íbJâ"_ÔÝHL‘;Æ!õ/“¨ØKÕËø§'ÂÍ +÷ïý¿EWLÃ-¸ôAÁ*ú‹qA̯²…]+¤]«’oN©žŠ¤ï –SÄwXñÞh£4%™–lgV2ËÒoi•v¸•³¬(8ì\ ©Úzn/á©pˆißí—¯”sF]#kø¡ü hRÜ´ôIµ~7VÿHš?ŠJiažý~/Á73~*KÇà^~‰Oç9ú¹ú@+ø/èþ ká$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥ø<¯-úÍb“jVJ˜Ô’OHwæ¨è™Oh?¥Ó¸Eîu/öe »„ä‰ð“fŒ}â£ʲbahz÷AÀ™ç.ܱx‰rÝC ²J=3¦|3IiVÍ híJYcx9ed•4W™©šÖb]g¥R9ãXꯨÛ$b¡0ò£ŸU5s×ÐO¼1Æ“…Ÿª·É ðnp“à ñërÑ'7íwÔþNÿHºŠRxwû!÷ælߊŽ~ìôJ9ÏÕÏÒïÁµýÁ*øIé~íCò$Xꤞחq RÞ׿·þ@~ ý¯èþøIé~QDI(xjŠcÖòg+ËôçÍο8’á¾$jS•™åR5ÄÓ:$M4óûñ~5l·O¸öµÖÊ#êÙ&} *Šx}¶ª#Ø-¹Ü9¨â ù:2ñíxRöEM%*c:{!!(‰Û:’|ãÚˆöø)â{“™^y<ïG•» i(ú~¥6B™ËírK®nê#s?€1©Õ¼Ë¼Û,’ùÞ–<°ª~.˜-&ƒ§¹ +o“~SDqJ²g"—/áèf Š¸¾8ƒl©ÃåôùY¤bË6fÖnâ¤>_CM|άã±Ë[ULRQc¯€ÒP‰$S¨|CÜ"mÆ|Ü¡ ëGäôyZœŸtá/§ÊÈÉYó2?¦¤—|õ˸«¶EUÖ!ÎàŽDÎw'ÃÏ>fž`±T!F?'¥±«ƒŒ*B>_G•·j c)(òj*jNŸxð¾œ4[Œ$wç"‰©ŸßUC¤…â±>]›¶† âìú<Ìc +©Ì²‡]ÕÔÅpáe4ÕXü3‹5±ì½% .÷l5žÊ6Yˆ¶Y­º×rñ0°q±ïÜÿ~ÿÉtæî^T¥Ý7pƧñ™UdîXvm©©šö"zï¥gë+ƒ»Û„ÎuÛÿ,Ý ÈsTú”>_KU‰ÃÆI¯µ·ó<3dw9mTG¤áÂîLƒIB$‘N¡ñp‰·±þ©—л>2Km¼moX»,,[xæçª'^drD’*®ä1US3'9ðóÛpîvÁb5aÖ¹ 30|•„±UóçÕÄr +cºmó º‹pÏs0êwƒ*Zì ðãÞ×Oc”îÇÛSmÓY£6ï{y%7U¦|Kç:‰©æè-ÒÄw*ùžŽn7·QN1«âd!d“Äjñ¦¡K§á“¿OL[¥‰î™UðùåiÅ£[ìdÔªï.ÙF'`eÕP™Y‘P˜zxw/Üù¯KjÜlQ +W£ÆÖ¥LµmO¤¢¦l݉C˜¸)£ø[Öãbä´-G¬-ævoÙl«êµ³dKu4R˜!™;'•9Bx÷»a¹ª©ÉÒKNö÷£·ÊßiY{<*\®¥¤ß+Oº]Ûw.ÜW KûñðóÉŸÞhZ—”g‡{¶™U9:IªC^ÞôvyZåyCFÚ$Qâd̪dÄ"鬮¸EdψCü‹W»"z¡všÂœ|Ö¬^HΨ×ZPiuU‰„¢Ø×ï‘ôp›¡ûâ\ çY§O4lÜõ, z¢*NÑŽD$®ÙC$k‡)%ÃÜB¥—14³R‡ËémövwÂRX‹82ñ1ºÖ‰Lb\29™çÜôóØVº©ðßU‡Ëèzj[2‡ªçiê‘Ö*rª^n¢F!q Ø-¹ç“Æ8K‹¾7Ž¥™°zJÒyÞ+U§èÖtÔ„ô“U:³Nrà§1.é“3sêÔ¾O9v• iüßCêªéHºÞ-Ì<»}EÚ8.qtSðCð<“–6WVŒ&„ñÙ—µŠÙX,yœ64ÍE38Ñ™ˆ£v2O1[”éèäM4ïá÷âõLVH]¯†Ia·7gÊÉLèÖlê9˜Š,gOš ÑDÌbaô.nwïçöÁR½æfá°Òq³Êù&hù™øZË8m!S¦šˆ„"È©¦’؉©|ƒ&¤×•jZ9kñ±ðžÌbNάbu*™EÔyxÄÜ΢$CqÜó48w÷AO;ãˆ=æpúׇ÷{^²YT:Q¼9tT)×^µ6!/¨³{ûö矉|ÇRåÀç|q™Ãë^Þµík”]Æ…V=’Ë/Œéwk*äÄ:ª,à÷Îsᦘ®¦*Ë”éK|ÛZs‹9VfrsQgI+1FMBa(D÷2+s~L™¯ÖÅ©qW'£,ÎÖ5aævoÝl«ê¹³dKu4’˜!H™;'51p›c‡'Æ^=®B·RÞ1®—HÜ!ƒ=X3´mZ6gC1^=‚‹%:vc.b÷ÜûÚiæ +ñ“i"§CG <ï[n?²ˆ—èUíÎáÙKT†yuBnxdÃÜw<Íñr\F†U¸à´ÑŸÍã­³Òó?•4­°!-Ò”³DÍ'¼ ˆb埫ŽÆ¿¡¡/\ÝžÖB¡lí®j ù샙Q÷ËW +a¢D žšið ôöhõ604¡×ÈïhÕýBÚ²¼zéëerØ(fŠ˜Í”>%Ãâ&¦ö|ôÅTªM³†–=^¶‡aúÒᛄëê­RµPŠeˆt”Ã>ÉžNð]›,:øìY£€š=\v²4ÍÎrrŸž]EŠæ.ÉÓLÄÂ6XŽïî}‡€1q5²Ë4>ÚÍ âdÛ¾ëíGF³©žÀÈ:QdÕ‡twmÊ‘‰pǹ‡Ÿ¹èg‹ÓUË4Ñòz#G<òCÊü­(Öuävµ¿Qb%” æò!}¹ñ ¾&§`(Áǹ\ÄËy›¸[Œú×&§Ü±]aeõDšSdB˦žžÆ­„u‘ì&„9í+8ñïiL¬>¬4ôYä$s8\9 E\Y‰Ø_Q;—.focÞue¨òlcǵ—˜2F5³fmËq&é‘$ËØ‘2abÔ«6fÎ:9eÍ°y{ú˜²”±h:6Q´£OM’ëŽN‚ªÍÑ$ñ‘7;÷97=Ó„}ðdÔšl¬<ŸÝeð=zö·5e@GÖçˆYÒÎ9‰tGlÜ´1 +ªgì7DÔÌS×)“®¦”kjdvy[RÁÙ¿••˜kVTqŠÉ-Œá(ù"7HǹsC'2ÕkêrD#[TÝž/+zQÂ2ïÊŠjc*Àü»>Ê°pïï;šw1/îž &¥æl°²jj®©o*ú™E+¦mWhše10ŒG"‡¿¹ß¿™ÛÙ«ÚRL=ænì‹$ÙËUoŽ:f»§qBa‹¢»V”ËÌÿ•¶u/PNÏ•ª„]ÒÒXíʲz¹†ðçY¡É‘ž¸ëò· Ù£;F,fU%!¬kŒ¥ºñ®‚¥=Ì=5Py‡ÆCríNM’=þÈïmˆ‹4[Öo¶}U¹ÉÖ"øf1[­†|K‡&OžE=p]­Š‚Ô¸ %ïöG{ S”k:eìôƒUQY‡Dvઘ— +{˜y›ž†`눴̚8kÁòJ©5\‚Îx³\‘ÂI˜™;‚' u‰‡~ú}ž »V­å{F…¢Ú¶rÏ^ç*ªÀéÝNAb0c{„Ò>úx¿v-xÿ+)ÚÐúV¨ÃK[þÖœ+9™ ¢¾vsØy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢}ñrŽ¡6d±ÐrÝB(Š©šáÊtź´óB˲T³’Ú–íDåûµCm’ßÊuË^äúáÔ¿‘aàÜ¿Ÿ… 4U9.xÇãjÙnöËÞÿ+e&:‡W32’ŽfÞ9z±×ráC¨²ŠùÌu‚í©¨|€+Ê”=Ñ L÷HZÕ<Þ¬=mCªN<Ê9cK¹ŽUª*i¥¸'žKûßk\fyãyco’ôŶÃbá/_‡hµÞϤ³vEŒŒfŠm£cSXê‘›tô }M3öÃúàÌÁá£$!v+™°Æx±i@e3”ÌS0LÏbJ™#•BÅ1Mx¦/SV…×džÎK¥m´\¹½¬,½)馚n$‹8ñžQ†L2œíÓ%Ë÷[ý˜ÑWäùãË5¡²ÐlbØÓÄÂ× ¬ªÙ +êaôÔ¢˜Ž])xÅ.i'„'‰ök…£‘‡‰«™¶UIش䊟doª›|±?¯ÚrWPxjŠcÖòg+ËôçÍο8’á¾$ÃCjŠ¯Š¾ü6é¤!á}a¡‰µEWÅ_~tÒð¾°ÐÄÚ¢«â¯¿ º@éx_GØhbmQUñWß†Ý t„Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢} Z¬ñR¢Ùªªš)¦[ç0·ì%»\ØuAÄo¹šÝö5W!E£.ÁÓREÛª‘Lc”¦Q3–ñÓÓ «:ÓÖÝ›‡ZŠ™N©Q."˜e½†NÌáœ}Ño%—+v Wv¹´RA3ªs{„Å þ-äZæjõªÍ—.’J¦tÈP™`ärf$bàÎK¤Q>)}ÀóJ<Ä>ˆÕ!^³Y±£Š‰Ò½ï¥ƒ5Y$“ptNT”1Êš†.a°ôî]§©ìð{°u(® 6ê¹Víë‰&sŸï1ìóJÖOGÏRö¬â—æ5º1 +Ê´M´.ÃYk>öo¥ÎtÙ3YÉŠ[Æ*I[¾ö)Òš7Ôòš˜`‘Ü:‰v‚EÒQVç! îÃJhȺjZpŠš6-Û§¾çVf”Ѿ&lJ+‚ͺ®U»{ $ÎsýæSFûžÓòÑ©ãôéîFK4Qæk­F ®ïlK¼ÒeŠŸdoª›|±?¯ÚrWPxjŠcÖòg+ËôçÍο8’á¾$” ñ𾉥<|/¢i@Ï èšP3ÇÂú&” ñ𾉥<|/¢i@Ï èšV袾( þlCëÆ2ŽX*¡RíbÔþ*¥ü$? ¹€Ž¢½K1øÊ“©iËK øŸ_æž±1 åŒØÐêfˆÈÿ׿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢g?3GWm*©û¸¢5¼¯'âÿøA^5¯.‡íY¾m]wìy^m5«q¯Äå~_ç´k¿—kL–KsO(ÈP¹sÝ\ÒIÌå¿UõõøZÙòÏ?;šÝvñx-Š¶²…3^Ø +äÔÖ²=Ã,ž¢'>¹õS#<òî±sO iy§Æ¿Ú¾õ©g Sy¹×Åó~ó­ÇêÏó YÇÏyßð³Á^|Lßm—Ñ.“,}-KÌy¨óV¾_R>þY¬Òù=Í,lœ÷.{±G.Þ\<~OLr=¦¯—Ññ˜óL²bõÄç“h‹uÔ\çÔ%Ò¤™:§1ýÀ³ >42F<ÛÕóœ\eîþóꃄbG’—¹ãçi¡=æî¸ùœÂó'š|­-;V—Æ×`&E“uÅÊ  #ü»-Ï%ú¯5úöA¸ä¨Ö´þnÏÕR£nU¤M=[¸˜o=%«–êGYuˆbéuMîEª4ð’ÂhËk¶¹£âÚª¼µã<±Ùâ~Úõ¹T´=O#IÐÒŠÀÁÓN`Õ³‰b¦æ²«aï§Pä1óÅÌ%IŠ–J•uÍ>m½èÇdaÞSå)°ÓO%>©2ìïÂa®EÙÉ YKÑ–›×Q¼ìüNÒDKsM‚w¹ Ù­¥ú«Äf—=*Ÿœe·’1ñkgáä–0’¥?Rvy}¡cNíÕz•‘+¥MQMIIÔn²È®þPNÃøá{K /Ö£ ÛU£¾÷}åÛZÔy»Êë^s©|—æ{ç¹ô‚QB­xKÜ}ç֎מÓ4QyhöFú©·Ëúð¡%u†¨¦=o&p"±ü¿N|Üëðc‰.âCÉ«ÖÛ¢ú€U/×8ØòŒÍ˜ÒŸù¸ÿ^èjåüÌGŽó>§Åaq²`€8á悬*JHôšÔÑŽuÔ|¹–l_µH·GéraŸÉô»‰üß[YÊs觓Îõ5[F´= £êjqñ’+ÇfMRܾR8rDÎCý1á¨^y<ïA[žI¼ßKέ™ž«ê“Q´ä‘¢bÔŽå¤GRåËtq3u Ÿ|U…ú…6üªqUc^¿>F†g5ŽÎÀ·“¨OSó ˆø¤ÊÙ¾SyÏOLŠ\û¯ðOdú½>6ü'«5xö¹&5°tÑ?5¡õãõž6¯Qk§ñU/ü*€0ŸYãkÚÌ|2dêXrÒÃ~'×ù±o¬LGùGã64:™ b2ÿп€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢g?3GWm*©û¸¢5¼¯?âÄeMÊ2á±3F;%Û²>(íX“øxycéòÁí°(¬lÚÒµ’n3V>Mí=.£4µ"{؉2új(Bg—¶ +1ü¡-|<|°û´¿Í‹}bb?Ê?±¡ÔÍÿÑ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢¹Tçº3H2YTg¸ºÜc¥Ší ã™ ý)Ì™ÊbÅ1Mx¦/y;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãšš¶N:76Ôé°å(Æ·2¹0Özmc4l\aVÆÉÞéõ.Þ¾UÏø¡o Ó­Õ–Î:ÖF‡)MFÎ;Š|õ¾*ñkvjb˜gP˜g>秙يæ´K ¾Z®‹…­Û¶k4Ä®’nàŽQ)”90ÖO@÷ÓP\¥ZËUh]óÖT ~Ñ&sÑätšfÄL׎S¦~̇O<ƒÜ&*¬8‚î/ +ü{`Ò¨»*¦lùEÖ†*N\oŽUPë¸1; ê(¡î ˜šµgâ 8l(ñí‹!Œ<Œ2 ÓE|PAü؇׌\l–‡È½†‹µ5¦’w$i=T²Rnzˆ_Ô.OØq5;­£ŒÑÂ̺´s4 ‰ÇFæÚ ½RŽÎ>e™p¶eJ&”-ÀìrUï,eoê“P¿°”šŸ´x#]Š©ž7eÉ-›àP¬ÿÒ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢jÐ1ž’‹"…!Þ:A±T7øwþœ[«RÊéSÌäÛ¿2ÑW~ö +Ð`d§›du¯UeP]Gi¤Kä¹4ÃI7+ê½£G¿z®ÛSäë¶bˆÕÐoç¥ê¶4ëfËmpMlçGQ{›ŸxSrFn3’0„!ÞýVï[m¶±pØKµt,>V ¦à í*]yuWHÇhUuJ× KǾM->Q£Â0¶¾÷©~® cÌYüœ=\â‹1u~”Ž¤azšB¨®ªØ9;Å3FßËa6Ø]¯—ÛK,¼ó4˱«j*mÌËÌ©äZ/%0àÆI“r8D‹“¿9Ï~âd}7,eÍG_{¿±—MW–ׯloV˜†F¦¨TF_%Yã#µqrþÈ©žLO[?üRåˆMª:£ÆÈ.GÇdy/2ÊLŸêA¥h°ør¡‡åEPPÇpB(ŠWî\¾r¸}n¢~Z„;ѶÝVÕÛØs=ž?F›¨©¨†¬Tš1N(]×äXÿyáeÕÆk·Š=–Þ±J…ß5¥PÎ,Þ¡}NºtG*µMª†U2Ü!²†Ä_üeá'Ï ù{#oSJϽ­œjž–œu,Ý«I¹5£ŒuJJà`ßTýæëÜ‹16Œaß„!žû™RáîÎ0fŠ­Â­aíJâ颫…’kîi [ç1ós ©øú£US•c/z?E—/'Bf³›!”´¨ÚžEƒ„Q,#c8¸­ûËj7G¿ÂAC{‘›ŽÆä©qÞcàèf’1i–uDÆVÎ#)V°§ÊÝ4Ì™ß÷VïIpec±Q’œ#_æõ±ptóT³%ZeÇY³GÆsh1ä[¢ÙbÇ$š¥]b/ªC’åò\ë÷Æ–3ÆÖ—ScŠäèJÙ696•YGÇÜ~ýú Ü#sRán;nGYøšd6éàŒ©ùBXÃ7—²6õ1©áìßr~gr¬®¥5[ETr°éÃØÆ8¥WQ$÷ã¶9ÉqÆyþðbSå¨F0¼# õ^Þ«²&äÈñïlI •a@ÄZ"ñÏ®ÍDÈSâ·2g:d9ûÃÜ7ã8Ì“•¥ŒÙ{ö¿«cnOŒ5ñém™j-xšj©Žà‡FeyäH¥ÎLÌ0oßùf ®L^i²ø¡žû”M†Ë ¶`Ì“[m@ñPìõSo–'õà;BJê^ òÏ3?:žØjUs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹¿5:ãÉ%Ëší­UÒ¬êæ©4yª¡Hš¸ÅÂ5Ã^¸r~ÃîõEÜ=hËÁn¤·l=£iþÞó߉ьŽ›ˆ-è £iþÞó߉чHMÄ ÷hØÞó߉ÑfÆÍ\< Ú•ŸQ”®ª’OÞ%¨k×®]½½£ß +éâ'RÕIaªŠ¡êwk$ñUSOÅê]êC×ï…uj֧׫æ{NŽFíÕ°úS×Þj}ÜNŒZ—”*íôn\Ÿå´m?ÛÞ{ñ:1OHMÄ ´m?ÛÞ{ñ:0é ¸ }±v? í³äsª£u©o(MRßOöµÁäø¹§ë%£•–ÿasKvD"üë%³ÌÏÝQíž¿G ÿÓ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢o+8ø¬¥þzG}’A‹©šŽ¾5²ð´òÖÕƦû´7®˜ÚõJ鉌WHÕr +·1{rr'¹ôã“èI6ð|oq•ç…}[|N]Z¼]§!TLƬ™Ê°¢mMÒ¦Y2ÖÌÌó +þ2„x¡ÎLNaÞ øO,ÓÓ·VY¶ì•‹4‘„“ùeô¶?š§ó&ÏüÏøTØlù*0„’ùfû´XøMšo7ÑåQù‡(?Ÿ“ßXÈZ¡Rå +“x¤û¤«^­*^w¦ rwTö'A%ML*’²A7R°_g«×E¯ì=[ëi)ûgU?¶hI F"w¡žÑñ÷•Ö©Çn¯DÖŨΑ³IZ~ WÈ>¨Vš•Õ"„%ÆI“!"WW?¸?KÛ¾PÄ­H뵡m7‰°ÁQÉ#…v³F©gµINœ¦)X=Y4o~Òß|DÞí”âGÉÕ³Ó„a߃K‰§’•‘<Óß‹üëü+l19¥¨Kç}Ú+ü£Nõfó}rDÙ%e^;CSWQÛ[3EVÆ.šgÖæd9È~ñ#(4òÆô¤Ùšo»F0í³k$¶­7’_D`ó9H:Œ´êVfÕ*‡•l‰º†ÒIÁðúC˜H9nŒ¥ÈßU6ùb^´ ä® ðÔÔKÔAÇ+~ý† øG¿à#gÉe™…‹‹lØV¯RyßÌ*~ +ˆ¿ÊpºÖ6rÐi%–Í”"òÿÔ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢nJYÈY'9’fñ«• +ž™ˆšÄP÷9ŒL™¨êãZæ|µµñ©Êg¶£c *™å„O#4«å¥Pk"v Æ껜”Ÿ—V¾YÛõ”TçýYîju³MLM12w£S‡Ž"ŒŒ%…µë¼7³ñSIV¤uìÛ² =kµã*Öa‰¡å¨ÈÈø¦ º*i-‚Ñó‰DïS¨m>Ûr'æ“4Ýqúý»üF>ÓZv<ínºŽ´E©é6ȸ$Š1,ØJ™R’ã‡m ƒ”øŠ_¾‘K§sDdr}É˱·’:ý1[ÇT¼°‘ò[lÆÐêefcR]$ Ò-½×!}›DP>ö¢œ4Œ+ä¼5¨Ëç}Ú+xÜMêÍæú ßò6äÝ­x¬‹:ÌSŒgõ‹Â¹[r1#'  E3tØ~ãsX\zë\Öû”cõ²ªã-^o7î°ñ7 m¢Y]š*ꢡãg–¨TEt£É*fÙ,aÜ êÍóÕ:z†6ÿÁLyá4&Õ Zõk׫¿©~yešXÃí^#UU³9ê6‡§RMbºƒR\ΔP¤ÂS\EB\>%þé~àÞI†„³Ï}’úülã¡–_;ÓäoËg·-j™ ˜®ÙrLÃ&ô²n R`»:„l‚JßÄÄ9î \Kä ÅäÌ7«WgsèŒvÅ{”1ZzTáöïL<Ž9 ­>î”>_Ky2UÉèªdoª›|±?¯ÚrWPzÍ«ÔÆ:ÔÍ'ôÛé7*äò®œ*væ9n®±Ï†~ø$ô(BIoû]R7|¬dƨc²r«s˜º…1’Péçc¹…ZpžŠÔ#h¹Ÿg&x­=yQÁõ1Œ©Žc˜ºªžçVÿytGñåŒlÚPàÈÒàÿÕ¿€cGÑÓlãç6†´Ÿ`³8ñ¦©í‡Ïì::mœ|æÐÖ“ìoàÇ tÕ=°ùý‡GM³œÚÒ}‚ÍüãÄš§¶?°èé¶qó›CZO°Y¿ƒxÓTöÃçö6Î>shkIö 7ðc:jžØ|þã¦ÙÇÎm i>Áfþ qâMSÛŸØttÛ8ùÍ¡­'Ø,ßÁŽ<@éª{aóûŽ›g9´5¤û›ø1Lj5Ol>aÑÓlãç6†´Ÿ`³8ñ¦©í‡Ïì::mœ|æÐÖ“ìoàÇ tÕ=°ùý‡GM³œÚÒ}‚ÍüãÄš§¶?°èé¶qó›CZO°Y¿ƒxÓTöÃçö6Î>shkIö 7ðc:jžØ|þã¦ÙÇÎm i>Áfþ qâMSÛŸØttÛ8ùÍ¡­'Ø,ßÁŽ<@éª{aóûŽ›g9´5¤û›ø1Lj5Ol>aÑÓlãç6†´Ÿ`³8ñ¦©í‡Ïì::mœ|æÐÖ“ìoàÇ tÕ=°ùý‡GM³œÚÒ}‚ÍüãÄš§¶?°èé¶qó›CZO°Y¿ƒxÓTöÃçö6Î>shkIö 7ðc:jžØ|þã¦ÙÇÎm i>Áfþ qâMSÛŸØttÛ8ùÍ¡­'Ø,ßÁŽ<@éª{aóûŽ›g9´-¤û›ø5Lj5Ol>b®›{ée`öŽ“„ jh¥*„1¿VÇŸ€5Ol>cÎŽ›{±h殆ñêõ‚Èêaé f‡Œváš­jN‰õJDµK|‡¹«×Äûq•.iº¸ícMˆ³âÛÖ¸ŸréãçÙÛ ït¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¯Ý½ û…÷!œ9ŒñïvÃ{ÎqæÞÐz¿hŸréØO÷l7½Ó]ù©n°Âû‡N=æSÇ½Û ëp¯–ÞÐ}ÂûN<æ3Ã½Û ëÄAù·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í+óRÝ`õ>Ñ>ä!Ó„¼Ÿ?z°Þ¦Z÷d^©kW33Ö‰ªšePéêê-¨Bžþ§€}^Ècסch²%žíà)Tÿ׿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ'P奆üO¯óbßX˜ÐrÆlhu3@Äd?ÿп€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ'P奆üO¯óbßX˜ÐrÆlhu3@Äd?ÿÑ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ3Þ°]§+Ý-nó-BYjx®Â2ÒºK)«-æ÷\­ªµy¢¦ÒÀ猦HDi&‰’3MÒÄb:ÞR×(.ÍÔ·GTÀ§$Ï!4³š+°–«[ÙéËL e:rԱ̢KT£ReØI-0]à·JiAj5¦‚äÔe˜-4z€ºÝ)» Q3kU ò걆mO!ºÀÏusÀ DG»Öö„šìuêS,m¬f\Œæ2ÔkXä&–XÄ «˜ŠpŒ §4ÐZ–yf:¡šh®Âœ fš’Ô–¨šj¤ð–n®”ö”u-Ò×0=ÒL¹’].~:¬I¦4’ËW7V³K}jóBTÑÍ©fÙcpQ=Y¦)M´ !2ôÔ䛯ÖajYšÖ +a šÞÆ9á`W{*ë÷:Mî¢ÖÏn +aR/hF1†°]„ÓEíF:ý`£K4UFI@´ÑZŒÒ‚‰3)š0ˆÆeÚRK]Œ#šYAj3Ì» e¨*Í2²æñåìèB&y{nÐQ¥š*£$ Zh­FiAr—RæxS©í°-ÑëX–\´ã ¶ô¿EQ–h«„òÁø-Æ1‚ì2Ä)ÓS<%¤ôÊp–¨)«ÝD°Í¬*ù{V{ê»æ{ñ@¾Sãå8ÞW°Œ$Ô jpî‰cm`¿/s©Dc}`òη±Ž}@ªXåÔ®ZPš70¡®ïjÔ–Ö³Ó²S$ °:iã×ê'’HõzÀË~·”án 2Ùn\ØjHuZXoÄúÿ6-õ‰(üfƇS4 F@ÿÒ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ?Gea+AŸœ–¨"¨šqö·.éªïä2*«v)Ÿq"œ5™|gЕ¬ÅÕ³nÕMÀeõ#‰è§„PÏŠL¡›·ÉÈtôȦ‚„õ±•Ü­ÆXÒi¯å&ªª®¥jÞÑ O6fñ Ú`³1Ü-“ ¢×2Œý3‡rµÕYݬãX‡ûù,yW oÆFáÜdä&2»ža<©©%›hÔ¼ZU«Ê:ƒ£ªY j å¼{¥Tºi2iŒ¬5+­c«Ú _RÔr4M.Ú <)e#NõÓäÊL¡ÁÓ" äèLÂ<Ç4£,Xu!3zPÑuU5/!-$´ÌVNƒ–2NJB¸Mkøk7>Ÿ÷ðøC<°ea¤Œ^ûdªŸRÒ®£–#g.5dWj–òMr…ˆ™ÜådajB&&HÁ¶SU…!+ ñ¥L|ãAeGqEBf;DéáÜ"g&‡k0Ê©4°bÒ„ÍÁf“Ï¥å+¤^::¤c4vÍJo[G&AKŸN,bhwLœkÊљԲŠÏÚ³]W‡2QmãŒÅ>ÒuCÜ÷yâìÔ5-Ƶ¢Ùt WUôä,Òö™,‘ä äÉ•× ˆM ì_«RXA‹‚§4bäÔK%2hÕwGtª(‘5SMc¦M3÷ê ]LL ÜGº“–SÕLR¬A¡áÍÙ1*$UMć;…±Ï"‡?ÒŒÍ Y$óVjO+zªŠ£ ¯-Hê¡× gRíĤQl6Î.' E Ÿs½ <óQhÓÔ•}EÅ/R3®KȱG)uåº%dè‰î‹$‰NúY—°Â¡q¥5«P×’UãšV}­æš×‡pÈeZÇf0Šf_Pæ¹ò1v˨Ï5F«OÀÖ-C×VaÝG šåp£Ò“(Y2b÷ÓÓ"š=lZhErjSJÕhçÒ•%~ÍÓ£ª„|ƒTÚ¦oY"ˆsžìZ¢½J31åœÚĵfäÏÝ^„¨ "X4ÍÁ<:عòÂ^[ÜŒ©°ì,.748ÜÈtÔóç•ík»£¨Í›Xu¤mÎà‹_÷˃jVgáf¼Jêyôm]gÌZº:M¤H¦é2è,DÙB_÷b¬™¤ºŒdùg„ý¥°œ{OHliáÛJ·.RÖï®=Óäá‘Mt1°pÍ<`ÉÆG-;±|å¬-UÒÔæÅÔ™ª’7.‘Ù?V*”g} É› f¾Ëñìr’dÝæXê™4È™•>š˜|3÷ãhY³ÃÆì;mssMÙE@ÓŒÚbiÖuSÓMèuô…'º¼•C<—`ò®#$öã¼Òª‹Cu)dnjè·3Å#H¾"^²âùXŸužñBóØÄb-$"öAÚ$…AguÇÉ'¡Xȶ|Ré¦ùš'ÝIòÌÓ¦*¯„ËǵEfn=¹TKÔl¬¥‹:Ìjó‰úqÚ!•7¤1ýs¿ +Ö±bÕoUVU1®•2³ð²Ï ¦RÔ‰8fåÆò©ž™>b—ÅÓ^Ë6ft¨×Q¬DªÉ DÚ®dÌ^ îcMuzqÊã}CUÕ}9 4½¦K$y¨92eEµÂâC{•æ– fœÍÛXJT‘§,þ`é>YŽW%*¢d3„Ú7¸†) ¡Œ¹ýì(M,WkO4¯®Ÿ¬(ZŠ=©¦Ôpr ®W +=)2ˆõ“&!}=2)¡sÖÃ4µ^S–jM)Ê‚Õj æ1uˆ885²d™2·®b-ž¦¾_–iiË5WËST”“ê–œ”4‚¨Ã¯-(dÈ’ª"™0ÎE°ó/¦{¿‚ ´°×S M ú¼Ï6!YAë|ù¯L±Mªê(oµ ³ŽAî)àŒ\M .àkÞ-Ó¥£¬¶hæ×É%²x¾¼íÃàþñ2}hɯ,²±hTšjY¸ë{'©*úŠŠ^¤g\8—‘bŽRê=ËtJÉÑÝI&ô³/ahT•íi&Ñfã®Í±ZÚÔ¢Ue)ðä}Õëä ¡“Nöar{÷Õ'x¡ Ý j´­RÌúUo%Ø¢Ã+yé—r jW•’jÖ¡LÚi±xs“ ÀNáyC'”ðù)ÝɸŒóÙ¾l¾yôËÊá7®Ž¹XÔ›7)½mséÌ,V£eú®üu<ù+K‡+£ä*S–Má!ù +nW­g±=œ‡J¢XæRb;xкý©K‘Ÿ½a©fU‰­fUVëU¯)Z~“1 0™%=KM¼B{¥þðëŸ3–2ªaØ´±gq‡%I[l×—S‹PÐÕUy9Y¨…u!”lÂì› ’(ª‘I‚E=sÃÒM 4\ÞxÍ«ÔÝÔ•Uø OVe©4%BÕÕ…9 4½¦K$y¨92eEµÂâC{ +µeŠ¬8Õz-¾œ³*®’DÏ–}Ö&ôÕâ’úˆã¡Ýxiœå>g~.áéË2Þ:¬Ø~=ì©TTÖ–|śÜ’spšfÌ[ ±Dbáá+3÷8GÔÆ°ÐÕUy9Y¨…u!”lÂì› ’(ª‘I‚E=sÃkU–V59&›7‹/kwRUTñ#ë:~yÑ™§Q¼WÉ'„GMÜ6:œ\à0Øž¦Ð‚¨O4[:ƒ¡jꆚ^Ó%’<ƒT™2¢Úáq ¡½†–X.B”Ñz-¾œ³*®“DÏ–}Ö&ôÕâ’úˆã¡Ýxiœå>g~¨w+©ŠÑÂXí¿«ÄÊ•E@ñ­ig¬Y¼1YÉ'0g ¦lÅ°ÛDEª45³ñµrÆÛSWôÕYNHÓ‰·´I3jXŒŒ\4w(C©™¹÷‚ü•e‹zsAÈŠ6ž}L°3Yç +™c¨W.JB¤¸LÍÏÀúaƒ‹¯3°´f‹Tò“Õ¥V½#OË!¤[tË>I2ÁŽâþ tq3 ˜SøÉ’F$ðš«å„QYÍYLÌÍ+58ŠúÞíÊdÊÛ»nLC¤±ÓÓ"„ÞÎÈI ©6ýZt¥BæN£Xʹ2ŽžÅ®§¯4MÉÐ9<4ÎO{0ÈÅ`í7¨ä¼fy/Ç¡’l¢qôÞ¥_—º:ùI(ѽï[l™Épƒ A“‚©ž{>»\¨ÞSôÚúÚ¡“‘Y¬kL®^,D/“åd¼rY•c«åxYFò §,¢Ø²qnEÈîC3áß?Ë tþè1Ô²˜ù›cÍ39 L³Øãõu(Å¢j'§éƒ;‚îà·Ê¸Œ“ÛŽóR{h‹:³BÕLýXê,†D¥à¾pLßp{Í툴‹lPÖƒ!d{(™tgš·‘1•S×–MÊÉ¢O­ ÷G,ð‚š‹Év¿b3ÓK±•©ÌÌ+¢e ¦¢/"èœü³ÜqÔ2Éwœ•ˆÏ=¼MJÄgŸTt“WÒNŽåÉH¦eÓ¸›ÅÓ'ÒZå:Y'²ï$Æiä»cÌ°¨«*ö¡‰eX>†kÆ9tÓlš'!ŽâýýóÀ5a–HE,“MR0eJ"’”¥rírªÎeyZd.û÷0ûeÿ¥8‰› &1m‹s”’‹€c­2 +Ç®êZ9¦:Ze#…®e`èæccæšG¦&ËêF™º^Ñ¥]¤ŠÄQDE‹3èsÐPUÏdŸ«×¸§ÉóÉ×êÞÒ]W‹Y}K<Ψ:‘›¯-å_[ÉÉé–]ùôN™;Yƒ›gê'ÆhµGŽÆõ²ÓÏ?Š4ÅB¡ÊæYc»M¡´·SyoáÜÏSä†Ø™l¹…žìš1ikgÎ$괰߉õþl[ëQøͦhŒ€ÿÓ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔÖò0³Ê:N™µ¸ÇLTœƒÖÖ«„í»œ|+ÿ$!þìÔ)]¬ÄOf…jµl]dúXÊÊ–¢c•62g"¨¢Ìøë+ºp.LWNyx•o‰¡<߆{¡¬Î¨Ž®¤2N©]H–IÛ’úa«¶äϸu7¬=<ÁrjµøÊòz4#/á™ÉWYý!Iº”ºi#PÝßLKš}ž…ÑŠ…Ù¼Ÿ¯]µü@Õÿ:Ý}`aac”#™²äšÒ5É)ʨ*ª8‡Aû5TS +ñÓÜÎDNš—ïðîv±“…ÔÅ«õÇÍg¢ƒfòÏ«•hö³Î¥bœEùQz¶Pâ=dÖ"w1»J—´?Ø­e/¨|N>{²U¥Ô°‘ˆ'P³+˜É'ˆ0q‰s 8õÕ±8ɦ0èJÍå £K¸—«¬3D7± +rB–vƒI f¬„UÁÜ4p‹ƒáœè‘Lò=;øŸïóÚ©¥…f—¯·z){(§ëêŽÐ^L&àÊ£8tÂx³r\É‘SA5p«¢ž_;Ðò–Kžcê¡i–4|¥²DÆ”ålݬvUXêŸt`u4ÔÏá‹5§ÓI'é]ÁÐЧ›ëÞùl¶Â`férAy b*éŠ +(T¥I"Bp ÀëF0YÀaéßâý(¹dÕ¹Y ƒrj˜ÅM2&S×¹y¦ŒR(aiFéEÇçô}m2rë*ÝÄ|ôÅ(í£ŒépôÜôÈ¡7³1¸¥©¥Åõ±sÉ™-Ô´‘åÚÑ5£ÒWoÃ÷9ÏÙ<£O½gf¤ºœš´¶.’•š]ÒGjfg2&)ˆb8:„Ì!;fV‘Žm¼ZÐlõ"Â7;eê§ÚÎÇ×/EŽ™Õ>DHcû¡r•hñïZ«Œ~=m¹BV”UICÔU8vÑÍVÖ55¥g'ºÝææŽ6PžòšÄ)ÆTiËU æ¤Ê67ùp´o¢g_c 0ëÓ–?bú1lhQ·{´{ù—¢¾†_}˜ˆP§,>ÅôbV£~÷k8¥6¡ŠbÞ)´Š1¤¥–fL+Þœló;Òñð‡®j‰Šdj ÔoþFgÄE"w›©†N.~åÉT²T»’cH÷MYm+ÙÊY;H1t¥¨—Î7ÌÈŒìUÒµ¸lfI¸ÜÛ0Γ¨ê [šd¡UbV-cS]<ô–Y»eÔ[?‡‡|£#T½K4!Jyæ¿‹k@²Û ›¤iÉä%“UÓP¨Ê,’E:„à€<ç³ËÕêÜÆÁ`°ñ’kø¼-íVº¤–ž´zr-”ãØ£#Nººå¢„Ê DÜ¢Ã@ÃÏ–Uü]=<Ü{Á­•3£ÙÔsKËHLʸtØÏdÅ:hÜ:˜DÜó |cCÝ2dÂh¥ã{Ùm„ÀÍÒ4ä‚òÄUÓP©J,’E:„à€3ñU«Ç‰X8\%8}‡éG{|ËÂ5yiñ.“Çjµ#"ÑDÔ5üDr”=ÿp0)Ô¯%gφ¥°ý(±=$éä5 Pô<¡Ž«šlÓi·\ÅõDs†dÈÏá¦BžälgšùüÖºJykRñgô3-‘¥“´ƒ×JZ‰|ã|Ì€ÀŸ |žs>LFZµ|y; Û0Γ¨ê [šd¡UbV-cS]<ô–Y»eÔ[?‡‡|£#T½K4!Jyæ¿‹k@²Û ›¤iÉä%“UÓP¨Ê,’E:„à€<ç³ËÕêÜÆÁ`°ñ’kø¼-íñ/Õå¤GĺOªÔŒ‹EP×ñÊPL÷ýÀµKU6³ëkÄK䡉é'O!­‡¡å u\Óf›Mºæ/ª#œ3&F 2Ä÷#.3B4~O[-ªIòú¦×ÿ.¶môH‡ØËŒ ,Ö•³ÅGºg…S\ÌêsÚV §£jŒ{Å0ÕžgýŽ'¯š'Ab¿NéOsÃóÒÓ5´'Ðbç›l!÷_•óÚ +éÏW”3G1îK<»ö²há’ÿaˆs%- ^}>.I¶B?uùºž§:³ØŠ¢;Ó4̤܃R—íB9bÙK»úÒ Ù¦´XTä™+Ìç6Þ¥Šª¥š^À}RJ9FöÅ0 ÄÇëƒ?“ãh¾R<õG[SôÒlU^çNAEŠÞúž”mê|ûéßPép½ËR5«}³×‘è³%j +^¼¨áêdÚ$­@Ü“ Ë¡ÎÓ¿¥™F}õ73©à†+º0U&£[íþ¨|­ßn>£¤>Š ~ÉøY—ŽÖÅ°d½>ÚÎõ.Ü‹©ŸK"—F92I·¸Ê]žäg×àÁ¡%›24ÒS´ÒpÉ·Q䔤‹Õvc‘¹›Å¿]s‘l<ûŠ _Í£©“Ðã<Õ°’Òð³lïM²D+Š²”´˜×ÕZ1©%S3ýþÏÖÆ,ÔlÉçLÊôö»ks=|ÉuÇÓüžÿy‰ž1¦™ô*LÖE¥Ð$괰߉õþl[ëQøͦhŒ€ÿÔ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ6¥ÈBí¹UQðõ¼y¢ç#Èñ©{ L˧ìÈtóÈ]¥‰³®ìjÂÀ)ƒ ê17läXŠ&ù7ËÙpøÔQLÅ4&ö2êr…N-¹ƒH§ ½ûÚìõŒÒ5,¢³âñ­s()\,’N0ô1‘MK‡÷bԸʓq ÌœF +œ²û÷·Š´¼ZòlfÔ¹cWlÝB˜åÃEM2\ÐàcOVëòRÊú¦á™Ôqï"äQÅhñ3 ²wŽKÄSL—ÓÏ *Øž–fܪ,Ú›¬£™ÄÌÅ‘ËVw2r™C”èá“1dÔ¿÷ »%{-b(s‰ÇÏb‹³švÏ“]88ò¶3‹˜Ê™Cªª˜z΢—Âz÷{‡¡ øü|×nih–sÌ]GÈ5#–®ÃY% |† ¦•Eéf„É?\xï1Õ+b4]ù)(˜|'(ßÁQG /ƒ‰Øe +)p\š»\Š9æêè·ÜM9¼›† ð•’q•º6!ψµÂ'tÐÌ!t™ëi'—Îô/á¤ÑƧ›ëz¤¢Rs8ðn¯4T lCîÄMzæfgapW$ù)ÉçzV¤—<*y¬H_2ý™“F›7Âúq‘66ãØÅ“’¨Kö¥6öi„†gM°gŽV©‘S¼s]"}ú™ãlD"Γ FaúS6%actxô²Rñ7Þ¤O%–@æ'`|Dïû±vZË8š™¼!©H˜²Â°A(ò¦¢y5ÛéŠißÄÓÄïŪ¸•É°Ú˜ö"À¨Xi¤šÁ—1IG *ÝödEE.]ç\q‰°º)¬ß•m ]Gš.z<×°Ô¾[§ìÈtóÈ4Ù™Xœ-å»C¢ìª™ ]ÔDyˆíÁpÖrªË.àÄì/¨¢— à +gÄ1äÂß'œúžYµ6ýw.¾wšÉ-é…®(í™0Ñ9ɉssì7°§Š*`oŸÍã­º¥¢ÚͲyõVÏQ“½rò* ä¨Ï2&£›7‹/kKùž,þmD{eTn݉›.xK¨·& ¹¯ØdÇn=ŒY°ÉãÍÙò½î, +ƒuÎX;ÌY¬»”RËf¬¦™ïãßà rbTÔähG^_¥ík”U‘Òvxá˪z,ÌÕpž†Êœ«x›çÚ… ë.a°0Ž¬¿KÚÝL)ÈعYf­ðÞJ`eŠâø™90ÑÌÐ&g`-i.¿ +yZà.Á¡ÃS1´ú’k0o„¤“£»tc(sE”áîŠwšØb#5Jpù}*p”e’¬ß#C¨lÚª¹y)Ž»¦:Ú²˜Ë%ˆÓ sS³Ï¿¾ ³O5:ù} Y°òÔ§“Ò×'©ÈÚ–5Ì<£R¹bá<5’1œOLQF¦X+­O4gó[V¥²ZV¯ŽŠ‰—‹ÊYÅ”…fžPå,2&L=4ÔLçÌ' {C¯Ål&©<î:Ê6Éiu@¤Ñu tÊ™Cª­ÎÂû…8¹ +ýÉC ›\[ýÓTß »u‹y%“:jö‘Øx晑nóÌ¿fdѦÍðƒþœgTÆÔâÛš©y”röÇ{#IY¥3/Ú™{Eâ›”…E¨sááè\[ýþÿZ—W‹neˆÃî_¥3ä¢ìª™ U]ÔDy“và¸k9Ue—pbvÔQK„ð3ײÞ ‘ì­l¾›´¶Zn?Ë}åÊJ»„ÉØc&¢g¹Þ•î½WŸkúŸ¥"—…‹#fn +r¬R˜÷ÖÄ&ïŸLç +˜¥°º6ªÎœa” K­éµÉ +Œs&¹ræ駘-I[2ìÔ³½4”M5” {54Ι[(cªKŠ_¾Câb_Ò6˜» EÈàíG¾VÀˆ°*A)&°e¾Š˜ˆ¤£…•n‰û2"¢—.ËŠ²Ôp7£Æß+#œ<ºsÆoú¸&Ô슮!ýL¡È¡ÉsCL…ðª»y>©·Õ©·Ëf4É!d)òE—R6Ac¹tVX˜‹(r(sßľLò@]†3/Ÿò}¾§ázµín©ÈÖòëν٠ÈÑEqœŠgÄ!.hpŨWÊ¿6ìs7`”=G ¼“È]Ýѯ:*Nn“ƒök5!ÅØbøâ I°œqü^‡tâÁئ…¿­åLÇ"Mñ ‡˜Šyš÷Àªf¨Ê§‡–›ßTRñu”c˜y–¹K71Ä9/aœŠ=<ý2)Í52zrÎÆÓ>g›?¨dÉÈ@™WN”ÄXùsÂbîµÅþ4~Åôa¹¯èl,;ݳo{¥¬ƒ›oÕì*Q¨äÍK–<.7ñ.nkç矆þh}‹èûr6=ï»onª"Í©Û9EÊ4ô~FGF!–.P²·ŽŸÍ +(1«b5³d£mMrœ§5Ã[›àkƒÅ߸ÝlG4Ϻhhhoa^|Ò¯T¥£…Úà·è-GRCrä9>ƒô¦Þ÷¼£áßÍÇÔK±)¤ãÓ: ÜÞ9NR)¦NÀúfÓÃñüÕøá~­äõÁ°'<Ï´ G"òZBã¥1S,xLCø ¯p]†/âyÜu-Gõo/ªVE‹¥"`ⵄzM£ðΞY¤¸¦ŸéãZÑ—­—ƒ¡Fyæù<&!'™~ÌË£M›áý8Ê“•$—¯×¹ª¥ÉrFI­âÛ·ÊÊ4 ˆ÷L˜á+Ç[Z›ca´¾E.nŠgç¹çÝ-Jö£ÆÖ|”/ˆ—Îû¬_CÊBüÜ}D»šN=3 ÝÍã”å"šdì¦m0“õ6­SÃÚy|ïCꙧ#g•ŒYû|U#\ÛSb˜k\:w÷==3i…­Ú´o3\ékŠåY-+gVT  ´I¬ôy•b¢{ÇITOÙ‘dóÈ/I‰Ñ­WÂ猓mÍØôQVsOÙòk–<¨Á¯,ªŠUVðÖS<'ÄéÐÂäŒÓlËÛ©®SÔä}*ȱñmðEÔ)1|÷9Ïž§~s +kâm2ªXXe|´½!E7rΉY áÁݨ™LsM3îšܵ{Ê·J•¦}L©˜Ö’H7ºúA4p©”9ï¾.(¥Â{íJùW2K%o·ýæ\•-/'0é®#èœ|\C“(&Ù‰©pø„ìÂ|ÆIg­öϽA윧#ê2³NE¾9YºAê;¡ËuÃsâû˜¢[+«FïB”KY·5LÊY7 ÈÑeï9Ï|„¹ .͈ºÔ˜k4¨7§iw ÝFÇá*ͺí˜ÎW  cœ—S×}=ðW.'KR?'¡E2ÐÕà}ëçÚÖ*^.¨Öýtk­ï~×t9pÜ·Ð>æ§~,á«è©Gäô¯WÃË3ïLRãÌÏfîQe)ÝSæ:†6¸?%ã©÷xÊ›•kT…ó}w5‘äL-=Vû¶ö±PX- U9Iä¤:é·A±O–<-Ô[“ „Ü×Òå +ÓFÙ¾Œ»—z uvϽ­ÑUKÙʧ£LÌΊB­é§*ÞÃÐõBŠvcz™™40Ñ•®Öl=yh™æy[3(E –!ÒÏOC=58I_)_ ¸ö±«3uŹlñ­>b.ÝB.™µÁáî3â×ÆT9FHqÌxòT±ø¾½ì›NR‘t’nS‹k€WNíÁŒ¡Õ:‹)¦sE9Æ-ZÑ«ÔË£N¥.¯Q IDÓŽå_G5ÀVQl¥åÕqE»;˜—~Ùs|ዳWººT¥n14n»5Iel :‡-,7â}›úÄƃ”~3cC©š# ÿÕ¿€?5zƒÈÂåìñë3EæX`Í,°f‰–X3Dˬ¢eÖ Ñ2ÁùûöY‰¥ƒ5åúoæç_ƒH°1ŽXy궃nŒœÑŠÖŠÏÑá•ø=š{’÷-6Ze>ÑWÒojÙñUÔ!_v.Ò¥uª˜¼¼{f•´º^·UT`ç¼U2Þ2I›u¹ÙÜS>à¹RÖ©âôœ{uU[ÀÑ$âzY»)½â©ž§€N·.˳ct|{Þ¨VR&Y»ÆˆßÆQ%/aáödÓ ª8KñíZ›n=ºž©bê¶E‡|“Ʀ1ÊUR5â_LZ<‹ÔªçiOí‹s&ÍÔÃt—DŽ^&cg¢Š—3ÏË/(]æ±Xçtx¾æ• kô]@å&qÕCܨk©¥”‡Pý14ÎÖ';£Å÷7ÛLjƷ]Ó¥ +’ Ó:‹(mÈžèsŠ$–ëõ+åú· +‚6R8³ Þ$»:…]3^!ˆž™ÂylS¯›êÜlcݾì÷Ùc|ê`ï¯KŸ÷¸ô7õ9RÅÕ¬Ë! ù'Œc—#^%ôÆ5JWÔÉ¡5µ”õKU4Ë¢$ñ¶!ÓÅH׉}=2 +ëQæódÛÇŒ¡qÏÇ©ûQÅ̺bÉòK¹P‰ºI3g¢u4/+at2çÛÇŒ¡VZÑÉÇ©ø­G“·,Tx‘\µo•¬•ìôÛv~`®~£ÆÕ1¯®y~ÚØ;}Ùï²Æø.Ú|«QÆ匒ý»~Æâ%¥Òç†5A¯Íu°ªaex›•þÃÃïºØ]k²b»ž75*V´ƒ­Ûä ¢/’L×T2FÞÏß“LƒÊô­ [4[˜X]N¡ËK øŸ_æž±1 åŒØÐêfˆÈÿÖ¿€<:½aäÏ%l;J¨œR4¥K:Ì„3˜Øɨ•]Cj¦e[·:„¿s¯wWT½kÛ¨Ëx ‰¬“~ˆe¥qM?ÌÝùx•|›Âìü/Óüq)è†ZWÓüÍß—‡Áy¼.ÏÁ?Çžˆe¥qM?ÌÝùx|›ÂìüÓüq)è†ZWÓüÍß—‡Áy¼.ÏÁ?Çžˆe¥qM?ÌÝùx|›ÂìüÓüq)è†ZWÓüÍß—‡Áy¼.ÏÁ?Çš¿‘ ´­_Ú¦Ÿænü¼yÅ1}‹³ðDÜ¿~?Å2jš²MÛ—jÇÅî:Æ)Qsrú‡¿Ýu†ä¸I qéaMÊ‘›_‡Ë盪;†3ÞVéÅÉy:ãÚònVŒxö2ÝŽÚüŠʼc"Õ¢DE©×)Lå=ûäO×S³¼e ‘m0˜¼Ü{Œ99œs­#[Ú…9Nɧ¼Ñ›zYÆ6HKäááŒêš|L¬›PYÌ\ä¤Ò]V2.1Ó]±HC¨Ë‡n~ͪuîÊ«†Ð±•›Åµ­jºâ¨”nG+±–<+T1ä%ûÔ9ÅÙªÙjZVܵ¶ô-a%‰Z¥Q1˜a(’E¸’ÇM±×l­ÎÎÿ f`æÎÁådiÞeó–—næU5“踺…©Ln„pŸß’/(ZÇS²ç&Õ»Nj¨ÿVº¨ß* +]yK½Š*L`6ûÅ$ÆvH5úZ\]¿í¼¤*Z]6Tú¬äÞd(5|î7 I«›äÝNåMÉKK‹¹m®yK·Zóš‘óX¼NO¾9WÞHnPÕae»uÊ=ÏÔxÚù,ž”¬ès¥J-öZÅ;¹™ ¦ïtâg¼@ÅKc“»¯¨ñµ¥W”äJV‹eÈ’-©R[dX‰•¹.)†Ì—/‹ø:ùé­bp¹*q½½mbQ:"‹—4Kr åÁrFi$™ yËÃàç.ÿ¹Ø8ç©fV>m‰eðÉÙm^ú‰!½)!ÊQ®nfRÜ„hçÝ©p« ø¸iæϳ $Ô%É· »ª´¬kä s±k=­³H?Ò.Bã‹Ÿ [ë†Tç2äãÔÅžI°ÓgÛÇœâ‹ÛXœ1LERR›Ž1L\òŠ98«6Zà`*K ,¯”)Má­QÚ$…kK<¥cìî£3ÇÌr"šB7%h™Ô&)ÖQO[Ó¸jR¤bÉÄÔš4áÔk/5oQÄBÔìÝ9ˆ¥àZ UÌg(Ô‹‹—ÎE“Q;ù‰ œïEÇ°Ÿ¦ãÚúÍf쪴¥f©X—fc!•DË5¼Ã"—E]ÑEB_&è}ìyÎô¼{ 0z=­é[E¼uhdñk*Ùž¿å ¦™Î’8ŒÈ™/Ÿˆqc_,–_ÇSÏ=ÚU©RêZ5KJÓo#Ü+Ü®¥$)VI#2`6K<<ûç1îbb¶Yîó„Ï%¸ô¶_döl末(Øwj»‹’C,A%œ¼UF.t¸ŠŠ({ùü•KÇcUäþ8‹|Yõ4¢ïí-¬´z¥g),{¥]”Ž(؉žçfM!‹‰©™•†¡•°,Z‹¨¨Úâ¡c,ŠÊ±A”kõ=Åš&±ÔD—ôtÈ{žäecñ9–0l¹üß[%VñoZ™…ÂøJmì•Äq—såóç[³©‘¾H …ð>”ÛΖÄq—qçζ?f?S#|\è,/ô¦Þt¶#Œ»>u±û1ú™äÐX_éM¼élGw|ëcöcõ27É °¾Ò›yÒØŽ2î<ùÖÇìÇêdo’Aa|¥6ó¥±eÜyó­ÙÔÈß$‚ÂøJmçKb8˸óç[³©‘¾H…ð>”ÛΖÄq—qç϶=_Ûcõ27ɹ u}ÛzšÜ¯ˆ„ ¹¤Îy­-Z¦#Tã³~ÝvŽQÖÖÔQ'¸rÞM äÌ8ö#a¡7WÝ·¼­Ê¸ˆËø]Î9 ³\È6[^-fÕ4dú$Ä" +]rŽ®ŠíÌY#õ{2ÆÒÉ{==p^Âb²O¤ð½Z™æÛˆ²83PÔÃÌ¡*‰Ñ'8-ûæŒ?TñmO‰§†MÕO’ƒQÉrÇ6–o°êùmG¾ÚrŒ!B]>ÅêŒ"ßöãdTõMX?’iñ\4‰Ä`ì«c#r9±3ðÉûÝ <›‹«,-$¹¡xë¼°ïÇk'”(ÑŒo<Öº­4} E@½¤^BTömRTºÖ‚²©>a8ƒS®ÕeZdn*Rgà¨M[ÉöÇ ºÓÏ$Оœ/F…á»G®:»ÌJQ’xe©Cm£C@¶*B£¡¢©ˆw’ìf©ÄõÁx9ó‘TÇ95\þûú…Ä £’ëBy£uõGä÷Åk”$ËúU-gí!µ]ç$üÌ?R;Ïø2UʽM§$õ¹Â4PI:vYîŠàµRiªK-0)Í52ye¨XÄî`†hšI`%’i#e3M,úÁUHÍ&·”å–}@«.•ì‘Ñ—DOT¸÷:•KJð¸*›¹ÖòY¯¨ZÏsÝúËAø³)Ë sù |Sãd󀽞Zà^å¬Ð$괰߉õþl[ëQøͦhŒ€ÿÑ¿€=_n)›â©‡Æ@ï5ÿæV©ü4þ°tžFüËCäA9Kó1+g2M%l´K:†fFU&ríŒÜ6*WS?Û(ÝA¦åÎWš\F­ôyKä©f—ìñèwÙßOó–~D5³~*:¹µÚþFAË~7¿}û:ã¹þrÏÈ…?ªø¾e_éñ}ç¡ßg\w?ÎYù|"«âùƒôø¾óÐï³®;Ÿç,üˆ>Uñ|ÇÁú|_yèwÙ×Ïó–~Dªø¾càý>/¼ô;ìëŽçùË?"„U|_1ð~ŸÞzöuÇsü埑Â*¾/˜ø?O‹ï~zöyÇSýOšYù¹ð’µ»ß2ßBK~7¶U¢ù…(:B“©§™ÌN(â22Eê%YËMTŒ£vÇ9/ê¦T¢¬⢫›½×óÌg#ËxÞ”Bt‡€Î"^¡2ý´Õ1µt¬˜·9Bmàá™,l3–ë„”Š—tO€bŒ\(Ë GlݳF0{‰šýž†x´ˆ{$´é綾X³ºmš63$ãè4E®ý¹ßÞ†·&.H}k¿ýrNüoëm15pÓ~‚ÿ=ÌØÐ$³IÙÊN¨Ôn‹y?†ªKµÕ· vîoÄK„Ÿ`}ÓÿRÈÍ›GªÖ¶’OJl45ižæm»M™¥áiÈZ”™<ëv^ɽ“3S5IG+¢ŠMŸp„KtìÔ0«“éMš3M uBÚ£Õ}z£ãU©ÃSêÔÍLšÚG±ëUÞrOÌÃñE'ó¼ÿƒ 5\«ÔÚrO[œ#D‘€'P奆üO¯óbßX˜ÐrÆlhu3@Äd?ÿÒ¿€=_n)›â©‡Æ@ï5ÿæV©ü4þ°tŽFüËCäA9Kó1(ó +~b¶?6¾üE¿$°†#䇡$äKås#«Ôêôd¼×n'šÏ>¸¯<k:áž³®àk:áž³®àk:áž³öä'„UEŠ-Ë­fõ÷Î ¯°Öð±„f‡––>2=ÏÉêuÉUÍÀL!röèH^ࣩ^’XƒÌ×3K{¢Êµ¤ÌŸ´Š£Ö÷¼äŸ™‡âŠOçyÿ@j¹W©´äž·8F‰#N¡ËK øŸ_æž±1 åŒØÐêfˆÈÿÓ¿€=?çjŠcñHu wš÷ó*ÔÞX:O#þe r§Ç•J¼ÂŸ˜©‡ÍÏþ¿PD¿æg䇡$ä/Ì¿ËK˜åý€i#ñ›Y~+Ü=\i2 Ë6]›Ä廂’U2#¤¡n‡)ôŠÚu?iýƒöïhË9öð3>Œ\ç3mÎÆæ’›FYÏ°™ôaÎfۜ撛FYÏ°™ôaÎfۜ撛FYÏ°™ôaÎfۜ撛FYÏ°™ôaÎfۜ撛FYÏ°™ôaÎfۜ撿v³¯`03èÜͶ?;Þk+Ù´­Ÿj~ÁBÀüÓ£s6Øüç5•å´µŸ{ø!§F<ç3mÎsX5Ë.£¡2Ñô¤SE [¦;xæéT½T„Ôêê9›oiÍ ×ö% Å ù²^ g\Ñ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£ylNŠód¼AæeÆ¢Î=´q0Ú·Mú·º‰¤/è50ÔE ÿÔ¿€>×M±5TYB…Ôë˜Æº_éÅ3|RüÖË&æÔêc¢¡N]C§œS^à“Èÿ™h \§ñâ¤^ay©Y{Tt™TÕ~ü¥&ª„¿§öÂ%ø¨ÿ3?$= '!~eþXú\Ö/ìIŒÚËñ^áêàÇ«í3Aå¢u}°ÍÑ:¾Øfh_l3@´N¯¶ Z'WÛ Ð-øðÍÑ? Ð-ï\{rÑ:árÑ–{p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ X~@ÿÕ¿€<@ë~jûa\½ž»þØ¢ÑÙÚdŽÒÿ¶ŽÎÓ$v—ý°´vv™#´¿í…£³´É¥ÿl-¦Hí/ûahìí2GiÛ Ggi’;KþØZ;;L‘Ú_öÂÑÙÚdŽÒÿ¶ŽÎÓ$v—ý°´vv™#´¿í…£³´É®=ù©iYÖËêȘ”ñ]¨“UÓO«ÔÕ>£G)99Kßj•#u=¾ ÍäÊÒIVïCÊÄÇIžœ`ëör˜š·MšbŽ§ÑÅIoö9ÌçŒxõ³§™ª’‘¬-*N9½ýFR,d\WA6í"Ç7ÒûàÓòõZRÉCdv¶\‹G4ß+°¦¦§SS¨9¼Ùgëõ§òK `_öÂÑÙÚdŽÒÿ¶ŽÎÓ$v—ý°´vv™#´¿í…£³´É¥ÿl-¦Hí/ûahìí2GiÛ Ggi’;KþØZ;;L‘Ú^öÇ™c³´É6Ò÷¶c³´É6×¼\ÿÖ¿€<G[ÉSÍ“æ¯,®µŒ‰¥§²jÄ éD²F‹ÞXî§zúè(}‹Öý€Jy“%ÄCº‡T|~]¨ç+r„iGWŽ(yó­ÙÔÈß$‚ÂøJmí?Kb8˸óç[³©‘¾H…ð>”ÛΖÄq—qçζ?f?S#|: à})·-ˆã.ãÏl~Ì~¦Fù tÀúSo:[Æ]ÇŸ:Øý˜ýLò@è,/ô¦Þt¶#Œ»>u±û1ú™äÐX_éM¼élGw|ëcöcõ27É °¾Ò›yÒØŽ2î<ùÖÇìÇêdo’Aa|¥6ó¥±eÜyó­ÙÔÈß$‚ÂøJmçKb8˸óç[³©‘¾H…ð>”ÛΖÄq—qçζ?f?S#|: à})·-ˆã.ãÏl~Ì~¦Fù tÀúSo:[Æ]ÏÔüÙ¶ÂCÆ«uÔ.¯TÄ4duÓwTÐêŠaø§¨B[ýûïÅ^ZŒ&ËÇ¡»ªë “·LŽ¹³´Ý#(SšR<®›!>ë_.î¢y‡êß%Á…åxh国å×Ù]\8—48íƒÎb¨‘ó'Ä2§)×I6¬Ÿáº›tT›ºÈÒà2%ò(NýC +¨ÉO6¾®÷_Ï×"Š³sMpãÒÙž|ëbÕý†±ú™äƒ:?Šv„ºþý÷å™y~3êãî¯ß>u±û1ú™äƒÞ‚ÂøJmêz[Æ]ÇŸ:Øý˜ýLò@è,/ô¦Þt¶#Œ»>u±û1ú™äÐX_éM¼élGw|ëcöcõ27É °¾Ò›yÒØŽ2î<ùÖÇìÇêdo’Aa|¥6ó¥±eÜyó­ÙÔÈß$‚ÂøJmçKb8˸óç[³©‘¾H…ð>”ÛΖÄq—qçζ?f?S#|: à})·-ˆã.ãÏl~Ì~¦Fù ·ÐØ_éM¼élGw=ìüÙV«„=aÕ)”!Mú¶FþÓü„…ÂøJmï:WÆ]ËÌ9êzÿ׿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢™ã$"ãЀ*„.òö0±{‚™&Œïr˜Íå…@-<ÉhÄɨɑì&ÎÜôýuRR%Y8†F,‹‡T¬_,Ôª>¶~‰ß•¹:\OÆ…íåõF ²â£G©£Hɼ˜t»×Εtésb,ºêUT?fs©¦.ËG$!uAkœæ|"­,Ð:Á]:‘å¡ <žò™!PÕ½Í@¹VùM@¦ñW¨g‰hŲ7ÕM¾XŸ×€í9+¨?ÿп€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢n:F•\MGÁFš¯$Áo¨¡®ÇðÅ8Ü\´á~=pxY§ÔÏfó&Vi˜Ú‡]]M^¡Ši¶ù¿N4²òõ8wû#÷ÖÖnHš<{Xv£³©Š^)¤ËÒ¢fo=`‰ÒXŠÞY™ðÖ÷øÙPÄB1·‹Óî`×£gÃLQ2urSkF¦MRDG¯"ïK·[¦r÷;="†"¾[x÷_ÔP£vè³»©­1ocA憺»÷ÎÕ’gý‚î*œ>¾‰¼g)K‡Õÿ"®‡'Æ·Ò¿±ššÍµ#Õ•A™?5Ö² ÜÓ%ûÜdø}mÄuqÙ¿'ÆؾæUÉV/èT‘lYV ™WŠ9!)B(}×C@âÍ~X–æï|»—hrtÑÕÇ¥©U~g*Ö‘Œy2£f˜³%÷JÆ¿nó''dr÷îw×8n[’hÚ×òî{_“f‡Ö6EIÅÓñ2ÄO[äÜ:nʦy•Båûä÷C>…xU¶Bù﹉Z–‰÷YÕËÚ„¹a! +‰–ÝÖ"D¸™/Ÿ=Ao†‘]Ãa4ü{`Ë.¼Ê•ƒdÔTò0=Bæ5ÙÆþ8Á§ËÒO_Ó÷Ö]^LÉ ñéq¬niU„íU^æ,™fÖO;jî$Âdט!¨áÁº"*WðôÔ¸ül¸^¾ÿ—tWp¸ÖãÛç¬<Ïu5îjAìBÛjUB¶•nº¦Ä9Ì*g¾}!‡†å©+G/åÝU^Mš—××Lù›êú–=„’†ˆFGSªÇ]_¤ÍWš¿"DùæÄ G-I,Ö¯sØrTcǵ·b¬:°’ªÝQJGœËdκˆ:X‰¤L—ïãh—8zõ^X“&n÷'®=-â·™n¸ÕAucu#%”E3®t#¥Z:^â}ŠIžù½ÈÅ¥ËÔæ¯éÜ®§$Í/×Î[º·Mšaº¥‰„ÍU\4e~>ÈßU6ùb^´ ä® ÿÑ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢g?3?^Ô¨ož(+Òž\4o¯Tv3¹6ZQ¯ÜúÙ¤°úUÜĪÊZå>‰”xèÆLÅq}<óæh~Ð5˜~VÑÒ´d¿46³ñX¦«ÜÏo7ÄÐ+b\±k;)Mx¥™¨s‹ÂÞFN9q3ëïIÞò¬âaVl<š¼.ü6½gή·ZÇÐdÙ …ÎTŽj´õ÷æï}¥o“!VZSêð{ðÚÔ­áu èû$¦XŸT‘§€BiB¦lÅ_H*{æ?ftî\ùág“kÒŒõ*Õ…ãxC®0ï[¼»‹–­ZRhãoÞ„{þ7ß)dö‹APòíÞ)½<“Ø÷îʃÖΕEÆ©õ¤ba©|¸˜·’ã°óW–zP´ÐÍßš=ëwán§“Ò­K6–7ø½èC¿ Œôƒ2=óDZƒeÜê7IhYdÔprÞ"$;3Ïà d+ÆIanþßµ¶1ÃB8¹µ÷¶}¦ gVq DFW2tÍpƬ”Ržd”L~®¢F2K—PŠ®|}]Ôˆ>ᱸÈÏ,°Œ¶×ߌ;Öµy°xHBi£~ÈøØ’´êí'gm®ó¿à#eƒîñ3kû ½ïX8¨V“ G¿ô6¾¯2#mG•Ó¶ê®DH´$ÒFTú)‘FçÏ8rÏqB:ûðï}ªy#M5x^;{ÐÙ‹-b”¼s®Ðµˆj·Iun’kâ¬tÉ™šjh)ò•HýƒéAäü›^_=üØ8ì6Ô«M7‰¯žŒ%øÚܲó1Ä7ž‹µ&¤QŒIz GŽ/a#»¥ž{ƒSËQË=8ÃlÞˆmm9.„±’˜ÅËÍ +“Çí¾ˆ9¹dÕ­`ìÆ^IÑ #« YC,ñ}]ñ¢ÜNsö×DoNªT¶ÙcÚßajF­9<‘b+0±øë-oiO- +&B.œXŠ¸Ö,¡úú¦P‡Ô"GÂ&äEô/38fã¹FjÑÉkŒ<]ý]æ¿FÒßÆá}A(YÉY9""T +ñÒîJ‘}oø—› †–yo§ñš(õhöFú©·Ëúð¡%uÿÒ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢ek ©#húú•˜—q“1dô‹8W êá“ÀOクÍãk¼#àÿåda*QÓ÷Z¾}Œ±3gV=- ùöÝåO*p²ø{’=ÜCâvÁG§JГéI·ÈÌ©C=^êo£>Ƽ–Ö= HIÚ~¤Qà¥æÔE}¾u•·\ú¤E[‰ïX„-û˜—ó…™á‹–¼óhõÆ}ŽMžÕêZ¨I '…öímÚ}Ý f&®ÙEÖåBf’|É»H—Œý<£‚\oqL^oßÐÖ—R¥;ÓêŒcñäÙí[¥¡–œö©àý‚;^¨*®‰µ:R“­¦V§äà1ÐŒ˜+3¼j«E'rDóËpûÙ·¼1vZð•ç«J\Òê¾¹aÞ†ØÇ¿u½-´¤ÒÆÝ}èÇ¿â}’•žÙQÒtÄûššB£Z/UÛüŒì5J=ÁáÏ1Ô=ÿÆLû©VÅbe«V\²÷]ùcöì·}‘^z4°ó裋ތ;ðÚÞMmJˆ}m5Å@â{Q¬ ÌköH?É©Ô2íBþ¢xýcÞìªØ|L0rÂÝQÛ/zeÊU0±Åͯ½²o ˆwe–)²è«@qUI³n謡å‚YC„N…õ•]M þ£KVXK4º¾Ý'Š+4gÂË4Ö›²oN€ug•­šÓÕE_ìuüCù7&¤3Ç÷ÈïT·:¦C0š=°eÍ..†"hèúá|y6|»^I +5èC^Þôvü+1ug¶W^ÈÚ¤¤;ÈiëI–ã|Ó'ÝN~ ï÷ÃÌ\1uèGê}ø}ŽO +EXXQ¡^ö÷£²>Vƒ«evA©ù¼Ë«ùèÈô‚üœ£ÊQúäŸJŸª Yù:„>,ÿFmî1 ¥*°›ëœ|Ì +”£/Åg (¬")¸+Ge"óyx]V¬‰†sc8Ç)îniæf—†5XÚJwÛ7¡°äëÂHñßa¦ÜE»lñª†IvêtN^ Ó>!6µa$$žþ-¬ 1Bw,jtìÆÚä5jç•ž­!$ðºŠKG«áêFwÔÏY¡ÐÕÑSW:á÷A§¥Ãe–ׄ/hÂо¯cn¶òy¥¯ ãöݾÍÅntœtô\c+KÀSÓ1Œr‰Î»—r ÁÊßî:£Éù:zÒÏ4zã5jÕ®?š|¡-É·qÔÁVi(YÝC«®ÉãÀK¢xù¦ÆÔÕ1d¾as²&—gËVÃÂ?®áåùþF''âo |v1­RÆ26^I´,Ž¸Gs•›­TΖª©p r‰œ‡÷:„“FXw¾f-ms4}döFú©·Ëúð¡%uÿÓ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢Z\¯tyä”jKÄ ñLúN,SŒÀö^ãRÜÝÞ°y,°†·±šú€ÑÔ‡UNj|\ µ#Ä ô|\ªqg¹âÕ8±ž/Á\fg赞XÕË.Q³ë›.·±—6 4ð™æ‹(^çºaÕëyžhõƒÈOu=ÐÂ=`X¸38Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢:ƒÙIœ³ê~ˆaA?«ê臲g$êQH¤ÍîMtª32ú‡>b«é†—^hM e´5G®ê·Ž(M mqýÐu„e;TQéɳf¥@ÊZ:Ab*rj8ꪢ²| ¥13øzcLj͖o,>/Šûv®KB[>ú¹k¤'f ×¤g—R1ë–**œ¢W;uN…ýô(M‰©,&¼5Âê†÷µ2Kqèzì®È)jÀ¶r³ÄœáÎÍO3wÔZï¥Ú6*èÜì œ=åNPšJ‘–!yuî{ɘONþ>;í¹ bíXÚüm .s¸Œrô…EÂJ]ÊX®Lvê”ú™nýÙ|dVÇÇCžvÏkŽõ,ÝMdµse£å)éYè—Ò$‰J’Ù +fXä!5 ™‰t[ÆÔÄÉ®…¯ô;ñ„6ªÃÆ„x™ûNÄYûJ¶¥-92œD ½S´4‰2…<{ªÖþ¡îh\1y#Zø˜Z†¸Ûª#¾&U°ñâf1¬ŸY¼ë$єԻ)Uœ TÎñú+¤bïwn\ÕÏѲÃߌ>hC×,g•’¦ ìrÍ$6'P1˜š‘kªDedØ»" 6sÔÝJÙ+š˜¸}ø³-LLòæ–Öµáª]z¯ü,«4°¢Ñé(§X×5„4Ú晈ˆ“•IV.0Ìå&íÓt–~étç!÷BpÏŒd¼5Fð†ÛFð„vu)†}QÔ½˜Ú„uDÚ–Ž˜…›ŒŽu*Ü®]$ñ«”šPê¤|Ò§Pºooö‹š¶fÅÏ,a{FÙ [ªÝq‹Þmõ6§™îÍ «ùy*¥VF’-RUT¸l¦Aâ,[gøjßùYFg,c£$ð„½~Ë©ä¼&’ñmêm­)EMOE×ðÏä Íc´)#Ü‘±“UºÇL÷ïê÷£*¼Ñ(M,aó^‘ƒŒ¿T´YBÜal®‡<„4 ¹%òf»UñTn\­$]g’ç`kƒS‚¯<Úãuǽ²6ÚØbèÁ¦¿±8ÉAiM²xfE‡g- íM\l•¾¤y¹Wé³>ÚñFLü¡e¼vÆJ0ƒžñãÊÖa©{(µ—NiZE”¤4É“XÑdD¤UL—ðKT›‘pØw?àÅ™ªÔ£i§µµ_U­–+°žZš¡ëi{b íÌjª¶©õ'ã«’#‹šå»vÚ‹ª•Îîb?],èãwµß˪ÝçäÈÏ ÃŽÖ5mI°RÎTÚ¤>^„ó8òžönN»G Ÿ3³¾™Fl1Ï vÂ1ù£.ö4Ô5]ŠÆt³±&<}‘¾ªmòÄþ¼hAÉ]@ÿÕ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢0"å½Ô”Íɹž¦Q¨[ž¬h™Z®åVÄMmmTø×ÐÏÐ)‰î„”iFiá cmSw¯ß•»ÀÕË™¾ëidÝ%dªÒMbè™9–NÊÙ±Ng Ë&±U'‹(¢—ÎMKØg̾ChjáŒ:TªÏ4sG\5uCª:áÔ½Ô¥†¨vÅ·­NÙ)XÚ¯b½”C ±_¢:£ì…¾Q—K°Û +}‘ö2°pÐÍJ;3öÃÚû¼Íúš–¬­Ÿ<Ó› äh㯜â Åü˜ß°çä‹çÈÓ0rÄУ5HCª|¿>¨Çn×¼— $”üYý1qãÌùù{¬~…*± 6\¯á©Ë²0ôÁ®äø}Rn6· €Ï4¦¨ëY‘†o0Ý&—عÕ9QWD¤Ï¹Ÿ¹œ×ýȳË7ž¼‘–6Ž½v¿{c'“ãS™¤³µZjj¡£LÞ‚Œ€M”ìS·Z*©Ž£tÖÏHøê\¹Ã÷"¨à«B¼÷ÕൈbéÇì=±Üùj¶ôý3jUº5ìlƒæÚ²2g)Y¬FÎ5UQÎ"*çêè(Cßý‡„A{ ŸGËj‡zöÕå‚ÝXÉ4z»bÎ4½7NYÕ UZ‘q‹¹‡5òLÌ/ž².#ÓXÈRhb_»˜58ªÑ¯F[íûÕ›5 Xù!èhíªÈ©Ë7«å,â‘cOIµ.£iâeº4S½]õš«©šKä1%Íbb&)©V–Z‘¼:áªÚáä[„ЫJhÁ£ÐôÜ 'n”ýbZ]j¢g-Es°pôÎÄ„ê!×'Q†>Û ¼Ei¥¯á ÂHm‡Ø¡ ¶õ¼ÁÒ„a—ÃûÍÛ3ÍUÑJ½½QèTÌI&á"4”WSpq«uLòuUHÇ¹ß ÎG©£¥4±û®ñ†Ö'(ˤî¼?U Ó¼Óÿ«üëü+j*äZ¹hK·}Ú+¸ýx›Ðä;ÒÝk[Æ!©ªg’VjŠ,Ê]5Hæk™†s‘# 4š©I4|)¾ízÙt¦„*üž§<ÎŒIÚeFº†Õ2RMœ)«Ø¤ÜØëÀ¸S Ï*ba=8ù#èjppŒ‘eØZùÅD¯VÁ”©j¶´R;n‘Mšdr·/BçÊÌ5±ÁÂxÛl#êñ³fÅF{Õ²Q¬)›8”‘‚/R~¦Š—ˆÕêomÜG;¾‡SSWVáÐ>¡’Ô'íH-àêF5!~¸B7ùå_ÇIÁÁñ*«®T¨²7ÕM¾XŸ×€í9+¨?ÿÖ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢5G‘{ð-jô´²Ô‰QC"<š2¦RéòŒ Œ…Ëø—.\PÞ¶1æ¡šhM²‡Ïm˲Ռ°³_¥mnb’ƒZŸA®˜êÊ2˜D®S9ÎÕÛ3飆¢{á qK÷÷>Ö1«òm)§„КڣꎾÕú8Ú²õö™I÷š‘Ü“—.ÞY• +áÂê(²Ê­c¬¢ªùŒsê»êœç?ñã_/⟌zª}Á3#Ë1‡\½¾ÆÊ·yÊuX#²ŽŽL°Ò2’mQÁ[ @š¤9n&ãy! ¹Ÿz üV -HÄ!ó_Çã`SÆç…özþFܲ»Sœ±Ùäj8 Tu\‘5ÐQ'%9ÛªŠœ‘5?b}ó|)þRäÞq%öú¾X=Âct1¶Ï_É•GרwRNØ"‰Ï Áìr…\§1 +‹´°Nra¨–}Ãnb¼^=¤ÙvFõ(ÁVµIšýšÚä…˜'4ƒXh™d&A7-æÓs¹ï“0Š'ÃìûÁƬ°Œ#hÂ=}›`÷‰´“wúšÅilúµœR‘f¡)8œC§«•ÄCj4v]Tø$>¢êf l7#¼Õ#^ ~üÈ©ÊSCì=°ÜÝQ^j ÖìX·—§)êìy›I9x¼¡êH“@˜Ø‰ÞÃï¾ôÖäIs^Yíü-ß]ü-_"í.VŸª2öÃsaÙêW3uBýÁ¾žŽyéG%>©ní,à‘5¹p›ßäc.§%Âa ·úWÚÇ“”4µfã½mÏ­ +Rͤœ?ŒI»G-±vÕÙvî›®L3¤±Q#ö&ß4ÊQs”0:iå„#hõÂ=v¶¾«Ág ‰ÑÓ™óÕ•Ä…\ÚŸfé4PB#š‘œ„¹|ç:§ÄQMÙC˜Ø‚枤ÒÇì~¨y|G>ÉÝx¿‘ç1_ÈNÓ0³¤[™¤Uh¹J| ¤x{çHçĹrþ~ö)¡†´“OáÛèÆ0ãÈiþÃàzõ½ÕjöÐe3"‚¬d7ºÜ§!.´nDK¾(§"pø\’K}«Ó˜ª÷¯ózä­T4mZŠäa&Áh·Q©NR$Hˆ1EÓ!wO[S\ aø£Ûo‰b8¨E«¸µ9Ç´SZ}TOÖCVI¾©Š|¡µJbaø˜x;¡s|6ø1¦äèIW<6Zß,5õ½›¡n= t6“ꕉ6°x>ÈßU6ùb^´ ä® ÿ׿€=zºQFxÝì5#/äCuz¶ó¯ÙDãñLB6—Õ'ñP״Ή.i¸³Iœ Óqc8¦âÆp3MÅŒàf›‹ÀÍ73šn,g4ÜXÎi¸±œ Óqc8¦âÆp3MÅŒàf›‹ÀÍ73šn,g4ÜXÎi¸±œ Óqc8¦âÆp3MÅŒàf›‹ÀÍ73šn,g4ÜXÎi¸±öFú©·ËúðÍ73»BJêÿп€=zš½QäÓÂW’Æéÿæ¥ó*Ô¶ßU2ž…“Žl‚ˆ³2oT‡1ÒpåkÛš*fî¥ÞJåxaán½{¶´|£ÉšXßKþ‡e}Ç°žüëÉFßáT6G³s_ð~<{ÏC²¾ãØO~uä¡ðª#Ù¸ø?=ç¡Ù_qì'¿:òPøU ‘ìÜ|óÐ쯸ößy(|*†Èön>ÇyèvWÜ{ ïμ”>Cd{7ãǼô;+î=„÷ç^J +¡²=›ƒñãÞz•÷Â{ó¯%…PÙÍÇÁøñï=Êûa=ù×’‡Â¨lfãàüx÷ž‡e}Ç°žüëÉCáT6G³qð~<{ÏC²¾ãØO~uä¡ðª#Ù¸ø?=ç¡Ù_qì'¿:òPøU ‘ìÜ|óÐ쯸ößy(|*†Èön>ÇyèvWÜ{ ïμ”>Cd{7ãǼô;+î=„÷ç^J +¡²=›ƒñãÞz•÷Â{ó¯%…PÙÍÇÁøñï=Êûa=ù×’‡Â¨lfãàüx÷ž‡e}Ç°žüëÉCáT6G³qð~<{ÏC²¾ãØO~uä¡ðª#Ù¸ø?=ç¡Ù_qì'¿:òPøU ‘ìÜ|óÐ쯸ößy(|*†Èön>ÇyèvWÜ{ ïμ”>Cd{7ãǼô;+î=„÷ç^J +¡²=›ƒñãÞz•÷Â{ó¯%…PÙÍÇÁøñï=Êûa=ù×’‡Â¨lfãàüx÷ž‡e}Ç°žüëÉCáT6G³qð~<{Þæ¿ò¯PU%5gaM†buûGò>Cd{7ãǽc„1-ÿÑ¿€?ÿÒ¿€?ÿÓ¿€?ÿÔ¿€?ÿÕ¿€?ÿÖ¿€?ÿÙ +endstream +endobj +127 0 obj +<< +/Filter /FlateDecode +/Length 6297 +>> +stream +H‰´Wio7ý®_ÁC Ój²Ùˆ¯ ›äÃzŒä‘­]]™‘ì(¿~ë"»Ø‡4Ú<ši’]¬zõÞ«ãïw÷—›ó{óí·Ç5Çï7·÷æ»ï^½ymŽ^•¦,|UÃÿ!Tf÷éèø‡“Ò|ÚŸºßJãÌéÅѺ,Êùã«iŠöÀ¿¶¨MèCáÛº1¾.êº×G+×ÚÓ½==zû¼éwxîǽp<~{üîº4onþvt|r·¹Áßon>™ÕöfýÃ+{üÓëߘ¾íóh õ/ Óq˜§e)z|‡s¼ÒW¶EëšÚ´¾+ú¾o0º¿¯ÞÚ¦hÌêÊ®]]8³º´ðY›Õ'ø¡Ã¯UÑšÕ™ueÑãWX&«ñ›oŠÊ¬îíÚÃæÜ®{’çéúÆþãô/ VO§+5pŠ²ks`tuQV}0­ E›pq‹É‚<^¨@#FRX)Ç–3q+OvXx…×5£³:\(5³,t´Ý#` Ôá²Ñ㮋a‘ÇE=åö6¸‰ãóY¹Ö®¸¦–„ˆ€ïu›Ûi„v¸` 5oÄð×(¯YýÂ(ªUÈ~¤{8‚ÆTqªÖ\øky¢ðKo*Ì)oýÌ·Ý0×… 7P¤w¶”cÎ0|Ö™ƒñàr<Ô p(!c}_OàecøeòΓYA$ 2¸T‹?5*5¼­.¬à¾YK5™·Œ (âõlèy>ÚRŽ/"é%^ë)õHlr`įf“„êŽ)¨]“‡” á1†£Ç~:ltVÂå5æÀé„Î_ŸAÁ5Ý<šò‘¨aŽ¡ÅÑ"wáSĈٱ ÞYG€FÜ_kç Úc 2R‚ˆŒólmA|3¢­iU[&¡ãuÞYºiþ,%IØ29ïŠ|‹Ír…¨édi`¨±òB`éÎ<Áû¬Ÿ†s„‡;ÐOR $J˜ÑŒžÃRe®#CG]B•¯2x¬Œ¶;Orjˆ¨i}áfÁW +²çÛ*ŽàvœòÈ(ÛwI|ºYk“õg¬(€ ƒ®G!g&7ÒDê±oÏ™#ºäWìLzÍŽ +°‹S±v"®#‡Fú‹}ɾŒ¶î”<ôªÒ{ÓõȲ{·™½1ý‘HBY3!¥kD¢*vqS"ß³ú&7”lö<: ÃZ/4ôÀª÷„VëƒÚäua u« õ…mWâR +¯ðªýHï;Ε+±SéêŸ53 š™©UX45Ôÿ—ƒ!e³í3ÙR†™*š0KÇ ìÆÉÝ#äÊ7(F“â/·&MÑ{í®_"#t³çÀ§¸4˜²•°­6qäq³ߊ‡—hm;²áÍšB¥lø•°Ž›™¨&v|ÆwÌdc„eÙ£Ö}#!üOÝ߇•­+üI¡‘ëh~D\öø¾‘ë¤âÖ°· ´…%þó8*B ¥‰È… ÜÛkA×­%â™Yì#œ¿ü)Û6™(¦Ö”Ö’Ú¼æ è*-Œ.>ªÒáÀéràôn8¾W†=õîšÐ| ¬ÔªéAÊ+3»Žñ#ùû:èBZ*}=ÃîWxî`k6H -60×eÆÒ´cKƒ“ŽYšAÿ_hîþHi)>ß¡¡|F) #­°p£‡‘˜D‰žl:€>t£Á5yšŽÑãn}Ì 9™k‡SŸÃ©jà¹;º۞fõ\Ü”´ÍÓKˆÈ’É R$ ûK‘Y¿´™_ÓŠ* ©¶‚.:IÇ'‚bÄt%bþô¹»‚{ÕBÝ2³Üýrg`îŸÃ…«!Çy7-¨pœÎWH<íÇirOÔðì +[n "1‚“‘hZ‘(ñ›„5¯å j鱎öðÏž{:õHdGˆg‹sÂaðÖ”àé{þ¤'+bj"™ð­%¥³%+`(‡×Ÿ®š^"§«¦φªé3)Ó¦Ñ Ú4V´† US ”v6ʶû” …qé#®*”=ÓùUöøDDsS´=¿î¬Ì%ØÀ\ÔÉ̘E”æ?!B-å?Þ<å 95ÂË+ÑGyTA|í‚ÀŽ)îV{ÒèjD±'≆Vº%º°,aÿl‹{™B! ½Òø£Ií¢"ÏÐŽò†¶Y ÄO´]¸ä2‡¥äPÁ ý ™?÷°—ïI#[âé£MÔË­I~ÇÖÞ¿jW,ÐQ°…Àÿ;9%+‰6D|ttoðÆ¢º¥‘Åu3Ų™rÙæ´…O[D3.[VÌ0‰JpˆÁÏgôw'é(ÎõðÊ#ŸÒÈSS0mFéTB”½ï.^· +Ãê~¸ùÜÉbcªìS}埸é':þ4 ªí•.06c‰©Kg±D/i +]-¨ +ÏêoøË +UQ=ÜpžVœ§?¨a°Ýù¡ó?ŒTø†³ýXùƒ”³žµÀêßqjÉHua¤¨ù8Zf†ÍH0£fL‹ÚE¥³Qúî-Þc—Ÿ&àÖÂ`ª·=:fH’Û`Üüé<ùý‡¿ßËdsoYµZÎEé#,Ç…ÿê‹_¦•âDúg>!(oØ?m¥%x2³-êq…zŒ­D\ÁGˆ€à*ñv',~Ïàu!ÿcAèR'áÆ š"á{O›t“ ™x˜ßöÆ"úª<ú».ølÐnÈûŠ1%|cóÙ‹ÞõŽ=¶™\‘×ýDGŸB$VÍL|É1£=šœÉl0ž” A¼­ðšà¿^²ê”ÞÓ¢"Ý9ißYH¥±Al(q þß3ùm’›š\ÛTœÚþÑaP„)†ÃÊQS9t ŒÒ›.Öý¥¬G{n‹¸,,ìê¹Qï|¯=ÍhŠÖ ¥5¤¾…îó,N#d½{DPe¹ºåØÃft 8Jt ì3‘2]DÅK-Ü8ÄSÅ{ѨHìc®<ºHmžpHl‘ɾp¦ñˆNì 7Iåå$ü±ØÍ@¼ ž[ìû†Ðð^³ŠãòŠãDŹ…u°°tÍ´kq¨Ñ¤îÖV¦ßFœ¡åÈW »èuÐ+ç) +Ž«šeNa$•ª€ ›“¶Ï»¨òïéå^0U‚„ ™6¿ÅZæ’…æeÍ'÷œ–[dMHòŘB¸¶ +ÈWñJ¨ƒ‰xg9ð!ƒ¨°ãŸzZ /ýÒÖF7æ§ +NÓf«GˆUE[ÁÕsó™½9;ßXaºL…ùW¨$Š½.ÞõEöÄÛŠž‰öù;ÌÌ_ðý¬¿ì¿ñÛþ·Ó‘ŸDUúˆœüë$ A{P0:´æi]ìŽàqU¶÷†¬¢M³;…Ñÿ?VƧ“5b´ðïE߸ëgÝ?áýK[’#9-;ÚòœlDÓÌ3mc[¢gâs8¹‚ðήˆKøU†ô¥á ×¥.ùÜ°jE(n\õåÕV÷ѪP˲X| K$ Çåý¯¿·Ï°³Qp?ÍæØpR9-§P‚yfà +G'N p€óR Úˆ½%RíªÂA_HÕ†ó1úi<—o@ú·¸3,?ÿz½h©—îüàER*fœ½©vÎ$ónןÿ¹ò¦LD 7ŸԢ>Õlw i¡oÕÙ숑uôÀ ECóOÓ›ÉêG]¥ëJŒ]åçµ0w"ž:J* ÍâçR¤³½Áy,{{Ûi3ŸuÁg![ë¢÷Ù.Ý~ÄvŽmhJ¥w³[¹[ÙqYÓ,ðz«ñS[-k“…¹Ä’0€v} "Âæ$‡miÌV˜.§NîcàJ5iKvµiú·ì›ßÒŠ3¯ÁÈý¼HZS¨ì'8(G?%‚¸ò,[åÚ4ãÚ¦3áÆpËÌ_[ÅC?ˆs¨kAƒ 4¨-rkh¢â=AIo‰>›[Ù’œÌQíãí³³ƒa#ïi ׸êÑ*0ä º§l ‚è—ÊCð’¤·»]tWtRÐc´1!çfm¬¹œK +Sþ‚Ž+}”t€aÑI¡ñmŠ«2ÏKƒ’H¹(Ÿu“×J§ì  ú¼Ÿ±|~õkhÐ%üÉã$pwÁ*¢»<¸••!ô Ä:¸jC*?¾á‚g%/p +²–ðœúÁû.2G'*ç_Ô®øj¯ò8ÃÒ†¯5dÔôE¥êRQà\†2e…?rí’]¥±SÄwá»äÇFb$q»A8Så0JBÒàfée $íó(œ +=Fû2N`»àb¦›ÂžЙŸé"1hÂw°Ã#€ÔvÕÏšÍ×1UÅxæ$oJŸÔ°pWžà’JÞ-šIÜçûËtÌš,MdYXeùÖ‘‡=v²r¢§z»j³’Å‘‰ÛN°·„~"(°õrš×ÈIœ÷9™¡èzANö´ñK5 ±‰MYÄÝ¢ØI_™s™¶sù{«Ol½.}fÚ–´3ì’'ˆQàPÒÖÍÄæ:¹&Ië½¢rô8Û?Tý0a”ŽN-À’fbŠÅ Õ©¬ˆÉ¯`j=C´£Þ°*XZ0÷,øìTðíÀô‡æò•¯æaŒžz»csúþÀ‰j~Q|„]~óºÎø4é)/´Ï`zŠjCä]à;²"8yÏðÔf´Ø :«Î-à< +|?Â$ôÏaQÁÖ_é÷‚Únõ;ÆeP¼lX3\àÕW”Ó ÅÀ%hüï6æMk¤ÕÂZ> +stream +xÚí=ksÛ8’ßý+ð‘¬Òă ¹;5U™$žš»d÷6ñ>ª&÷A±e%›ø±²ï×_? (‰Š{fו*)2A°Ñot7šûÏ–WOfGWß¿ÿçýW³Ûóë«~?¾x¾·ÿÓÛJ,.Ň{•(•®EiŒË…(ª²RZ þ¾Ù?¨„‡'–M-*ø×”µR—º­ÛJ U—umeƒN÷2Ùæ‡ÿÜ{y¸÷òõs˜æüx ñ¯½ýƒÓJ¼8ßûËàÑ{4g#mËÎ4ÂH[ÊN‹¾U-–sq²W¶CÙU>’{*³D÷Ô]]Z«ø.X­ÄÕVîßÂð[ò2šJVJ4ª*mgÛ®G§{xù”¦³0]%>‹·{þ¦Êƒ´e£ÚÖ2<Ò*Óµý]•¨;CPÆwñmU¹ö)ûo/fg@ÙW³³…ÈŽçÅ‹—ùþëç?¿²Òf@ç0y´àBVmÙ´ÆåŽN™øß' ½t¤{µ ™þ]Ùñ,ˆ¶®”ºU°šF6 ÿ/ÙyaKý9—¦l³ˆ\V™É¥Ìþ€ÿ/òBÖ¥Ê~†ï +¼ÍeYgÏòÀÊÞä„Øì5|ìøgÔÐo ƒ_ÂwÿS^4ðóP<ËNö÷\鲋giàg4É¿%ŒÆGvÙ[¸Y¶0Ëó¼PMi²CœT#` ú V '.§¿€7•†Iòÿ=ü/Ïí(e[uða%3gWVºVÁƒT+ pi[ÑÔ [’yÓ©["cðçpŒ­KÓ5aŒ®JÕ6ƒ1P³m `Umcl›ÌcLY­Œ1rû<ˆÜh Ò ÇèÖ–Õ–gi ÌáþÜñ£ÏÉœh8HÕU<!Z„údÍÓRÁ›Ÿ?ýØ ^Ý ž + +–eïŠÓÑþbqBÎf}Êÿ“€ÌFÚºj„í(W£½LäÀÀuvžkàÈ¥¸Éšlž“¬ÌèÇò§t#ÎPödv)®r¥²sñž/ÎÅ%ÞÒd×4ê…Æà—„¯yŽl*ú*P"Nò{MOøœƒæ°ð¥³[±D€,ÜøÎNs‚Äå ~5p¡0 cÇpg}pàtHÔç‚—ðe®àÒgøì`^ü[ðãǯ?ôyž£¸u·º "üìô“œdÜ¡êlàI-B7ÛpýL0þ±0o¤²uTên"cÓ–5èW©˜Œ€]Â4"ÍÓ¿4…èòjéÿò¢…Á@?' OÜ–Dw‘¢!WՀ΃…/àWãdnº¦?]ä¨h/Å;¥,ÜCÚø’°ƒ©jbæ‹þꌀ}WéÕ>€TÃà ´®°ú +`PH~~âiÞ7Á4µ{üYNFÑÓ´C‚_ÁåØœ¯{.›LËf-­![© Óò"—¸t™@%ºz:´ñe/@fˆ“UÚ^8º9zÐè1EÖg þƒ7½ø&|ÖF¬E܆#<6+Åÿ 0vNÆß3˜ +¦dxŽ¶ —Ý&\½4oæþv ÷ëÁÜG¹GüédJ·ë)m@T[Óê¶P:+"wvãìÝ4>ª«²Õu|Tø…ðžñY…ßf$*4½¬} Q™!më sÅ p\ÔDíFìÓÛ„²DÅ2jáfg–ó±øn†¿Q÷à|ÜýPÎG +ètƒ5¬äqE€}ÉÊ".yxO ïÞ’©¨h‚KXøä2_qÆÉé ž€3¿Q0Kaùö±ûâT÷ŒêH꤬HM)+j|YQjÐ÷s ìǼ¦T;'46ÐMULÙTù@‡dÕ:¹ò¡©ïìû<±Òì7e¥s½°à'nN¨„s©Ä88‰”»¡òŒÒ• å£ +E=,O U´1‰Ùå,Hú²VW÷Ó†èdJBÁ¥Ã>ÖY4€v<ÀÒf‘`ØqÁìÿôûГ='Iœw¿‰ÉÓ•rIäÐPÍX«W•øÛfšU“]­fª›ùDçß7ï5 ^¹c‰ø½=n™ÄeÏ×:ÏQöÙù)Å0Oó†ðdi3Ûð¦›-Š®0 +wàQ0í0LÕøTTç¨uv„¬C˜Ä}¼xÃÕ9òÄaë5îº5ñˆq<¢ «X±ä}rÜ´] Tðòˆ’G%›ºÁx—×=\û ¡ä-€nöÑBÉ+€ï¶“jï#”|WîJ×{“œòtvÊ59å䓓ȶä™Z’ñ–sE Ý,ÊæŒ,8Köƒ¥™²ªp³tA T£AT«’Mþ?XL\i? ¨Š¦ä)Lv} “Ö’ càøi˜5#ã«ùˆb—<"üî:_º›JL5UÒtb…3n…¡£“–apêÊM@˺§@¸áÅuZZ+ñŒ?)Iî6&gP.}×>ˆ*Vâ ;{îÁ›¾Ì¤KŽþ S/©cÌÆã¾²·­ì]Û@¥ý&g¨]ÕÂDµ$«»Èz"ëo¬vËT* öFFVÛ+ÌFúmlÉfvi¿ñl¦4nY²® \-ÚhŸ~!Cß +‡&q¿ð@ ;M!|S º©-A'K«;³B©UY驉²'j?µÍ7¥výPÊA·m7lP“»mx¢‰¶¦øcä|pHʺv5lòºÚÁ»—•(@ÿ9iN6gû~ÚÊd÷Œvl!zBC:uVé¶güŒ#È´dŽÿ.攳>;æï%F«Œ°.y£ç§•UØFdzÊBÑ<ŠŸóÜ[RÞ¾ ¨2_¼€Ã +Ôy¢°µ$Bú$æ‹oÜÌC¼7é¹²ƒ±^ M7!íâ6™›rg]Ä9W}HC"ŒÓÝ‹vR‡#mšÄ3ä}ô:pC€Í1VgÜaŸ:Á§˜¶h wî+‘pºQûÄs4½ƒƒñ)¹¥EóObò2…8#íéÓä]ҢῌPX… ++%®rk?ç¬ÀgrJ™}Þ÷aݯõl%íÙ¥ wN&Z—4¥YZŽÈ§ub콞ôc Þz ×êËõXQ8õWô*”ñ¶·øZÅ ,›®À£©‚d?‰¹$ÈÄX~ywD#¼«tw¨U“Ü‚\Æâ™(tzV$³‘¸ Qæâ2ήâ8X‚Þ´Äz3Ñü©ŒEþ"-R  Õ1r#RÜú&tZ»9]ÕI¢hŠ +³© +› ”ì¼hCáÎHj”C¤¬9Ñ# Ú“4TÚÃyRM¾Œ•ibê+R%Þuèv|éó°MoCqXbP/–\ê;§ÍJH±~ÝFZ¸‰ŽW2™ÈjGå­:•¸QÃ]LÔ ‡[i®wӲ⵭DÞýGŸ®ò ¸õÎ-?&)štDuòˆ…ÁmVNysÛ¶&{§”Ê5ÆN¶õ à\ü£³hf?u ŒOœM%•ÞTü {+U7U; ÐäÍ›4“¤]5mâz-ÆÚ6ðõ›íªåÄmÊ¡NÝÇì`ৰéó¡ˆÜ€á*::k•˜ÈEhÛ„Ó¾AìR$Uécõ³ÃÓ€>¸6Ö2É÷’Žz‚63§³_Á)pÁÉÑrxê‹“±§àN œÑ¥…øš:ÿ&‰)Læ¥zµ­I<µP¿ìݤ.œë¸K@B£A÷ë!>S¹ …Íž'l Ø"¡Õ*ECßàäÔC߬4LMç,Øò„Ó|ì”QM)^·§*9ò—nˆo'º{$ÝŠ'ꊞ7c(8¼ˆk38 2•àvsä§ê¨{tJðéÊcZr[ý4HÑwÝåZ׺,>*<èL^óæ¬ëûˆmŠ4†M½ÚzcÏø…÷½ãXÆu¨;|Ëì"åã¨Ò}å Ê{/lÓº¼­m;³9ýÌÜt2m¯®°GäÒ†¤(ɸrˆ›4æðXQrôлaoçì~ÐÇ -/˜GzN|£vk7k7Ö,ÊšŽÂiM×ø²Q¨|+$\ÏUß>ÿ“¯B‡ëVônOt&Фȋ[Ò®pû † +Šº!Íæ¸/ûc3î%;¶)F}â+2¾ªÿQB惃Ûiãðµò2•ˆjZ«uUu‰ãä$yœXéG §mÒp kyi‚Ñ÷š¸žØÉYGÔ_¡/óöã:6=®sìX„nÑáø‹r8óèÖæܨԛL¸ÔûKîÝ.þè½¾b3]Õ´Í®ìj´qw¢XS.ÝËDòƒ¡aØö”Hí6ŒÚÒ³X9©ºúRölP+ºùú»{Âñæ–¸Ó bˆ5ô¸iiJ–Gn|ÿÆÚקةÚg2qUšÚØ+"v+wå=½™K2&.‡ro® Vh&îËìÌõ°âTW(~Ü#«Êݾä\T@™ýItÃO?æ¬è¨MU?G´ ÉC$0†¨¨ŒÊßÏÆgYVšÔ>kLÎ1wà)iáEm±.ÝQ©†VpÚÛ°$g„qôYî69´+4m  Ž˜9_Éu×¢›rgHqÀ Óh]ÙÝ"»Í bØ5 mÄŠ†óI[01™ôŽÑi›Ä{™h°x÷Uv‡Ü¯PØUSñ:x¿#/Ûd¿]ï’dâÚ¼wnÿYfd¶c§Oˆõ>ÇvúÿÌyÖ‘°úÈÙÑñ÷§Ü¡ŸádJ›¯ùÚ$®ÖH»Å’Þž¤< ­åˆ /s +ö¶œKÂÛ®?£1^ÚHøÑÇNÈ£†v€¡Ó ®]´2VÝ,ĨN¼2¡:åÎ/"£ó:É5¾#i¶Ü/Ï)+;Ö!,ÏŸri3~Ä9žSé4®ŒªsÄ%S#§DST;-·ëSä;ó/ÍSj²è»Éu½«\›jA\ã…õL{oÕNãsÚ~7á™Ý)ƒ°ƒŒß‡ã7ml|£WáÅÑ£Aß >‚Úïùø},Q"·CÙ¬czk@OBQþ>tÂ\çÖâ=¨p¾Äx›¬—äˆêÔ²^Ñ6p2Íí@•qµöÊ&>ñš“‡•‡õ ÅU +Ùœ¢aVÕÜWReF$íEαøH à 3Ùñ….õÉÆ6h¯ÚaµÃÿ‰¶ô +endstream +endobj +129 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +130 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +131 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +132 0 obj +<< +/Filter /FlateDecode +/Length 5566 +>> +stream +H‰´WioÜFý®_ѧsÄ&ÙMøÈz½°ãݵù°Z,tˉ®hd+Ú_¿uõÅc4tÐÌìfuÕ«÷^í¿¼ø|~tò ¾ûnÿ£ÚôtûåA}ÿý«7¯ÕÞ«ƒ½R•ëª¶ð¿iju±·ÿöS©.6{ûæ¿¥2êà|¯(×eeÕÁ‰’/Ê­[XíÚª¦oÖÆÁ&•][ë`ÍõÞÊôúàç½ö~øoú^„ëq-l¿ÞïÿåºTon÷þ±·ÿéîè#|ts¡Vg7ÅÛWzÿÃëwo”1U›‡«0ª_0Nãã4g|…)×?Y©Î®ËºoT[µë¾75F÷ï•Õ¦‚ÐWk]ЧSŸ´iÖ­Z=È•#]­kµºÑfݨÕ)þ¬ÔêþTÝÂxîNÞ²:ÓEMwt‹> {Ð^Ÿa‘Á=àþ…ºÓ%n|¯áÒí‰nqû3|>OáI§V_à‘–Á'Ïðð¹Qú? ÉÜž®.I×þÁAZÖrc83&fRQ· 'ÒPcÌp„;‚: a1ÎW ŸÚaÀ˜•€gt9gKÃSŽrép3Ì-Ýÿ _*ÌìJ0;Æâ•{x,½Õ…Ã7èFòD;žêºÄß_ €ÞË!lÔáJ×ó§ _þ®«Wm´ƒ_‡ZqÜ—©#µÁ¥&–ðAé‚¢¹ÅXàåçêëcæÓàÏÕcè·x\*_aè“ßp£9]°ÎJÕ+ÂP‡· @­Ž5$®>éºÅÕ–ÀÊbË]„ÌJ²X@ÀÙ{$ÑŠÅtÁ}‹Ù„¬:ßb!øX·œæ¸ÑÈõi‡®Ë²šÆ™ë»µñ8;ÕÆ7—O€ðY"½€íºÇœ´@a²1b…” +|–W„­Lyr]ó4Ð[S€ú¼4I^î` ±ä OùœÐK.–ðá8\Q_ˆl’@ —‰g»B µéRõF^ù[®üsÜB^¿ Lš…‚{üšÞZãî™@ +q®ø(‡W'ºã}%'ZŸ¶äc*¶Ñî`ªËL]3¦®^÷LÜ)½)MEå2méÄ¡%rr!P5±úÃbB›í£Ò’ò‡b-Ø@F[LìX7ºÅDþðù«v¬ ¦’Ë1Ðý :§ÅK/ñÄþ!¼s +í ¸¿N 7Ç‹›ïNâžµ:Àƒ$˜ f£¸+_u-ù¤]…6’dBÖíö¬{Èä5u“5ÝU&3¢ ¥ÒõU +)àÞĽlߺÊ[ÏàÕõëÖãu YËšDËÔ%>ĉpLC\ïã3¼`°àÔï·@”mÚÜ¡åzìþ?=v·Óæ[Q­ÏÓÉÓ=—É ºe-.š´3Æ4ÆÛü~2 ØO´z¡†é + ®àŠÚÖn©«ŸyDà6qí9¾Ã&Š¿„áê 0¦ìgcN=bBI™ß.½(2+Eؘ’ ÙJçQ‚¥Wåð‘|/{Õ󮆺´Å.ÝÅSÑ_¨xœ‚%%Ф7}XôIñ!QG¦çÅgQ)›PÎΙgƒ„ûÏ:bîÄ5J· Å:„OL[%%(تpàÂÚÆ©A/—€ª™'¸¨ÆDŸ„f;„BxØRÁ~%^3™šÔ$³‚‰³>Ï3€Áñqõ?±SÑâÁÛ[éöÌá‘ ê†ò»ÍÆÝZJ›õgÕ¹<¤¶ÆYå`¢ ~öå‡=œ8©t5NÉsaî.Uho _´Ýc–Rÿ›nÂ`f"­MĆ}‰¤å"º¤y®4æô¸>ƒ~|E2ª™Û£¨jîþ1“®Nz¢g*‰à¦QŒ,º$3P“=´¼OUÇ6Þ΢ޅSC‘XsFúL¸ùö²%°d]Õ)VjwÿÐæþ¡3¼àÿ‚áýŠUjþ¶ämÓ¢SûnÔ¿°4pìG6À¸qdܸ½tòÐu¤V°Ö­S ñ½HÒ.O +¾›c"Ü2nÖ +ìpÇx'¬\1aùJÇ°_tÍ}ÆÔŸôMÚ%´É`L{Íæ½fc¯i–ÎTžØ”Ÿ©@ àØ 03c:-XÛ`:§ç¹-¬34†­”n•°PM-y¸Ò–¬$jm©Ä/2AeS5åP*bI6n™ÐºÙ9ƒ Ëƒ¨ðÆ¡Þ±`ÇDT2Òlö"¹P<"´] +m6®Ç¨¬Õ4QR·ÅëVU¥;ËMÅY¸ +o Lûáj Hú$v#]mf(±hô9O{ŸäWý.mAÝYQÞO ~vÍú¹bŸ˜Ù1ßNScf—{U‚ÎÔ˜ió1³ÙÊòéH]ŤÆT]3]]ešt”Mb;Q-!¸¢fyœ°ÏòÖPhÊ +ffä°mâø|Á†âü;îƒp…B‰“,ÿ¤É5©ÕK<'\ú†EoCÁ]ôÙ¸0t TºtZ˜0èÁe‘•¸`ÿ3-¥]mkÝ܇¸åÛ¸1*ï3ÎÐMÙ>HY;”²÷–)ÆŸe:LŽŽjÖE¿+ÌøÎMñ¼ÿè¦úöH¤`£"ûÆá3Ÿ˜I»r!‰¥dÒ]敺4ÖÀ>×ÇCìŽ1›\`f{xº¨Šv4 -)p•ص3†1XL Q—¹¤„»‹J=9úȈ'zâ NZ5d —pÁRºp1ð‡íœ?ÜÕvŒ nÔñ_ùYgrÿìp¼_ˆ2íÑ6âœu< mŒ~´õGî·“Ü?î³û¨…¥¸—8)À<@ÇÒ§Ù­—`«žŸŒ®`0 +64Qöo6¡nF¹7Ü"—2aNÖÍ>»6?i[Â*¼è2Kdp è#wÌNp,5Ï rÔ$9‚2—å€aI³Ê¢)õ™zG6×àhpFÉAµ,?#+­€»‰ëŸË:¥æ7æ9?.EÅQÄç3>î™\ÏÒÊTLØMV_ÀëËé‘Æ°@2âÆ—X û‰ +Ÿ/™žÂKÝ` œi‹›Å9IîNÒ:!.M’’ÌÏœŽ÷Ìf¯¢gì é³µT.·e=ƒ)L=¦†„A¶-]MBOF;[m³Ã¹ª;Qu/Ÿ¢é¢”;¨:þÛç¬Q¨)­¥ÞëôÞoMˆº u9óEªõeèZîDõ Kïišà½Â2ï +騬{i°qœŸQ“ ;EOµíóŠÞÀ œâ±0önjø\0|íkøn,†SJØ«úJ=K(\ñ¼EÔ´ØQ]¶ûÀd'r‚í„t²¬&œàØt«àÉiÓÀÜàK¥ ÊѨ §D@æþX ’¡6–ŠøBEy8R‰ð×x7¥ Êg +º&ÆÒeœ*+š£PÒQ£3ê ã2 9è¨ÈùP9$⮆¹‹Þ]ÐìrÂ?gJcp À +és,T3gÓTÑîFØzüŒ·g5tè ;ô? ør—-Qr—*ùÎc"Àñ†Å±GuÑ£S$e/LÏæcàXü±Â)FvTÎ1f‡dw¡HÝ0–ˆŸ&Äl¦ G‚ š5ÚÌÛpŠBþ~KÊwÆ•-vØÌYèÄ`‡S«e@äÜHP¹ØiƒÙf3õx]‚W¾.!uqqb·•2b’ùùB3Ÿ¤«KG´Ê!š&üc`•ÌUb3˜üŸZRyˆ/ÍcCT³¨Lê²»ñ zÔ$üò™q&O,‰I@™}Û¨QQ Èäþ4iD¡‰&‡Åý9§V#Péf@<ŽGIÁ +V¿ÃjÃê—ÚÈLøv|ž *jõQ Ð']w¸¬ Áx§yð}­9ñ‡Z[úò"v%º5CŸž˜·¿£È‘Àkú|”Io¢h:àn5‘í1¶Aj±vK5¾ôôUŠ”U¡~ÞqëzG6«û>ºm0ý’‰æ9ߊä»u c“HSL¤ÙüžtH؃¿Ô Ñ~6±ùÈpt3ú29,µ¢U"ì ‹ ‰±A¤§&OTxv2ðHcyŠjküšiÿ™z‡õÈñ®ÿ?ñUÒ·‘…ïþ@böø%­‚^wy$- +åž®`6ý0ÅèKå +å¥2Ñrá¹WžàÐ;Œ å §ÖÉææMé&7›ÌòŸs#6ø„À@l¬\iÙ“0ºùùÄÒûÕÉ#®=i¦Ã°xÑ2_ÛèO”uI¶ A†A_‡A_ÂàJO0XLŽJèwˆÄʦÇ÷`ÐcW‡ô¡N‡¡N‡KÚÏô DÖú”oxVj@¶ Úðÿà´FÄ +'B\rEDË¡Û2Šv6@$̺>Á_KD•Ó8Ô gÇz[ +ž³h‘"ÅËød—oèmBÖÔoÎS $ó4îOG:‘Ùf¸ú‰Ä–­u–øõ,ñÇÊ\g/³E˜ìÓ­Ò ¡¤R‘û†Ò1&úL‚%[Ò÷4?»IÍ,’ÚõHÚpKWÝ2!*õ—þÂ9Û=Ü¿xõ¯·}wÿøâÕ/æßéâÝåÝ‹ô:¾†±St!t&¤Å^Ãkøgß÷öÇÍ<“Q¬<½ßzåÁm_9Ô÷‚¹u¿Ã…4^èò’O½ôC?y‹ƒN G$sµ+ تT¹88JáãZŠU‰ƒ‘ì›\8£ŠG²ñ8øÊõ”o,ÔÂeºx˜yñ”G>>…H©ÏVBx½Âþ Dø$)vÙTÓcºùKø ;Y8…ßÃr\ÖDO?aP,£¸ì±G ”é89Ù|Q¢ÆBÍè‡DÍw5eÂ缬—má帑—‰Œ&œˆ‚rû«Ý/œ_JÌ €8®4Ïž²XoŸi âºÚÛ- }°?®t'éjF‚·-%º:4"ª÷p÷=€ÓZºçÀôp² +²ã—çèµÐ‘ïñ >È,Ñ‚#ülQ{~Mö»E°(gæMKîè®wÊ{ÒJƒ»](‹ÿß+‹)àBùbÁEïèã¼â4ø[ìO»xÁSÚ×Lx*ÜÇ|a—&<Õ¶‘”8'hºñ<`U)ÎîMhCÙÊæÁø¨ý ‘ M$ŒžÄ¡§tøvR¿v­àݤ@Q7*Бî$0÷géN4kºS/Û ;Ñ6ä”5APé‡eĈƒ@õ=Íe?ûtOƒÙGøÿÀÿ·#KùÀ£ç†‡>sx€é'„Üß‚—¦' ätm{R“½ŽDˆò(.÷ùÿ„ö3’û æ[áŠùôáb8~ õ²- Ø +—&.v½Úýœ5bk´Z“rö‰P|TÚmS‘W´Kq +sn>r7¡tÄ]å ¿cA’Á†½‹Ö:zôd½eÙn]kâ™CM‰=ñ  ­¥œjјmÍ8 0+{È’ZpîÉ<È‚€Y~ëºd± P,ï%otð;4BBƒ%™gÉ1=¿,Cÿ­`‰Ã™¡xÐkp©—mÌ`Zʪcs‚ÍIäjw©¼#ʳg<|Ö'0£ÿT¤'Ài`ÞÓ Ø4îDôPðµÔ\ð$˜ÀZ¢Ô³D ÆÓ]ïT00öJ ,w\ ÓŠ]Ys„(8>äÈŠW>ÅxšÙSwÉE£–3uËHÏXL” \Üõ·Ü´ÄUÓg#'mbÙ#Ýnºk.g$­À@|ÑŸ:Qª(FO_á›Óñd¡ëhÏ×™Vl`‡Là^³cÀËèI?” ™ŒÝ{®†‘ô€Ñ +¢áFKR°w=ÕŽÁ x­Z¨ü|¶>Ú3߸æêõª-´Þjê ó›~o:c¿Ëq¹ÔðRŠ7t¼'É.Màï&»f²‡o¢º²xk¥œ½/°ßš’‡Ûz¯­ëâx^”5½ÌDbáŒûzáí¸7ýÖT„EÇá'ãQ›zp±9ÄY®v¿*—¥‘6G’@jQ‡ô°˜Uæ#e§š´w¤:4­Ë8Ý[ +8ÚÇ hˆ_afo*ÙFf"µëiæš®rbÀ,àï/»êøÈèÀ–Tx@žc˜ßµ|Cºü¦R- ,_Ò£zŠûHº[R‡ˆêÐÝÁQ}Eó•LåP¯™Ž¯•ÅåÞtGlN²Ë>“ží½=j‡5ƒþ/À¿¥ ( +endstream +endobj +133 0 obj +[299 0 R] +endobj +134 0 obj +<< +/Filter /FlateDecode +/Length 5180 +>> +stream +xÚ­\[oÜÖ~ׯ8$à¥xîd°#Ûpk'hì6’>¬u³ZÝ¢•âª¿¾s97’»× h%.y.3ßÌ|3sèÃçw÷gëãûï¾;üéðíúñæáþûïÅ‹£_¿oÅùF¼øpЊFi+c´¸;M+¥øp,V-ÿöùðU+àóL¸Æ[ÑÂ?ßX!¥ntg»V eklᦫƒJµõ‡¼üpðòÝ06Œ?>ã·ðã\ü~pøêªG7;8|»¾†Å½]_Ÿ‹êôzõúE}øî‡7GBªVå¥Ê´Tü'Åhu­ÂÑù“'8|%y©²m:¾W•+õªƒÛ}ç .õ×ÊÖp£­þðõJUâ¨^éFV›zeS­ïj ß]Õ+ÙtÕš>muZ¯l£ªëÚÁ-÷ôÜ}Í×ña¾­¯Ä¾ó¯îjß>Ãe>ƒ>à]ºº;¥ê}øK”Û¬`t „%`IO*l^òÖå`ëR5ºo²¼õ0wW}‚ ôÕ©8©W}㪠¸ØÂ'ì]ÁÇþ”°;\6ŠÀÀžñ¢†?àÇrð …Û½!ºªâðô•HÊ»ðÀîÓÕ-ü”Õ ý~D³©éÖ º¯>Ö 0Y]âd,ó ±ð|€Pi`SÔÒÁhp³ç›}uz>‡+„ñð+¥@u×<Û¹ˆ[½¤­^Š›Ú78dÚÍox]+«ÍãÈŽ¶` ©]ŠÛ¶dHù +îYUÇôj>Nj݃ˆÄG’Îd£‹±a26i ÆV8¸ pšá@°~2ëu*àã«o`ãð‡ti¼ã±öY­0XΑåôßÍÃãRLuF0>6£Ðˆ¼«ÎÄdé0h’ÅëøÀ5y"òfp8Ä5€È F/×xæ˜S: üŒ í`¤ãº#m³æjÔy¶®!èÒb“dÃ<¦€]”›¡çÐÁœ‹aa X´Úî†E›é[ã{†Eá }tðó¡aK;&Hçí À¼‰ßLèO²PQÖ,EOΣ‡/îq*Sx´´Ãö:¸'Sìq£á—¨20ËW&úwD-ùŸgbƒËSðe³$Ý ñâ9þÕ—R˜*Õ–Je•ú±JGø¼§?]á¨Ááé¼>’(oÎÉ>°×9FÉÙ]v²9nlvÁÆõï[«<Ã&É °#i‡‘s»¤ÏY¡¢g{cÖ +Çr;¥Ëÿ%í+ Ž…ŒPð&—äyS‘r…`ïÍb1ù,& àUQHü›BWkŒìp^7Æêàu~d¦4;z—GÏò×-Ûú¶É¿béÀ}éœ)X;¸¨ÛÖg!6ÃÞ±‚Ù!¯yŽâêªw ~Õ’§Sè ÿ S„ êMèWä~«j Êß® /Ð ;P“B¨ÿWXT¼«~«Á Ù€Å!ÈT +—0?¨ý#ZÈ ¦^¢+1Õ£(½ïØI¯È„#Z÷Ð+PÔì?b\ÙÉ[j¢#´™ Ïí*ƒºˆ bB6éž8Tv.H€–âQ¶%ð» ×È+Ì›àåÅ-’¤c㲺‘”}ÞX®•ÈYAÍ\âqÛÉ#­‡áÝî ïãÉاøKæ.‘̹€‘–6â9sá ܉ËoðaFâÙ~`yͲx6æxµ.Béb=ËRÏœmW4 ®ä{h’°Û¯kJùdOãb1&Ë5ŽüôŠœç¹÷Èž³£îC CÐëÉ£ñ‘Ý0<Ê<€d7"•IÀ@ëU….à…TµgžîGlK¬gÂQúËã‰(HPù0Tv\ØcÂ7£yDS +V³ ªåó;+™ßS™šËû]’©ÍÅ—³ƒ AÎÁ½ÌÎ0ÕØ6s¦ø‘³Å›2±0[èýþÔ‚s¯„C½“ eH8ĘDÂzÇTR¢¶œ…¸"z'ų +)Œµ]7ÂGµZÈ0¤ÙF] +ÜY`G%uÚÊ@‚¨ÒaÐñ”'Ç„B©˜w >>|¡?ö¿˜7`]à¼vÁ¡1RB2FêHæÁ‰ˆ#|ØVGÈdõ3¨›lp6¹n b8= êejc'Ôâ†Ä%eÀÞŽÐ$ÞæøF¡Csè0:ºêµhkÁVÖgSR_£PÚÚ Ñù­®¢µXÿv«Š2ùÓ€nP½mƒkxÎÑÖü9å"3)m(¦owòd®'Ì©œn ‡ðì19‹Ó“C-BÚQ˜^ipdôªð8±V1Íx#Ä€fr@CW~k>ÉŒ0c#¢ÆÔ†RÌo–kÏ=UÑ=|¥¹.Ø“n{äýÀ¬ëÓ­kTçlOµÛïÚ¶Õß‹…–]¤§OÕ«¦íœéüÞúTí¬>'#/ק’sú-š'µ8œ]òC±—k¬‰®D‡ûDjá‘Ù—…›qn‘êº K¿ + +“ƒJæÛ¾¨rdö<(²É-$"Š‹Ž)x"rb"R3Gp-ŠWÓ’÷ êÊT*fÇñùA¸æ˜/OÜ—É”:–t—_•ü´•.užÜÎZ„ò¾éТ}ªQ:ZÅ[å™=Ú2„BZ1nî¡6-%á;mH¼¤Šð°ï1~:¤‹MWé?Ét„»Î9i÷7]3oºã‘÷0];kºÒ>m¹ƒÉ­ˆ© A¬gb'ìwBáèèÂõÑÔD«±óãªÿ1ÿM¡8YW¹§ôiRt‰í„®€l(n#¬1~çNÔ%’EI¿3iÙVZ‹MÍ>Š—ÖÔswcj¼);ÙÔßñÑ®úQŒÊA‰ÎD‰’ÈýºFÊ•FèínÓÚiÀ ÷¡ øcMQïuêú©FUC2Hãä~Œ~½C¼1± —3vT"pÊõ°Ænô²úä \TÔ'Ñתê ^ë«w𑈣šÞ‹—èvq¯ +Ÿ?ÊëBì¤>–!@éÚâVÀ£Ø–sOìÀTŸkm)õø³Â°+CmmŠ.W¥Ÿmª„%/r­K^4(-f÷œ÷Ë1bÐ ¡pU\†>hSL#÷`@hÒË¥0 ~¹p].‡R2ìB踴vFQt{{Æ$RË5á»Äž}5æo³Þ™Rq­qšÅPÖêk ,!/rõþPÖ³PžŒ¼”ÍCy8+ ]©™I½ü€ÇåšÓ"¼žÎØ„Þ{òÍèýIzªÎÜhçô^g6­p„h÷ ¥ðKè\õ3Ss²KÁB›pt ¬¿i4–Ç`y>ös¨rH%¨Ç¨â„RÒ­[NmÈÑI\út¸m$;rŸôIۯ¿ïºö ðïæñ?yüû/Çÿ`Ö\çÐUôW__çg*.yG¼ã\iÂ*—èð€åB*_w\Y'ö‡uÝèà]êÊÁ‰ÕØ]Ö32IQär±q.Sׄã¾Ð™süùv1¹ÒÝW!Ö™‚wï‡Ø~±ã‘—#Ö´óº6ÕeÚ§+®Ãu`Æê×ëZ‡j 9â ̉gRfÍ€¾¬]…Îø)‚S6EºøzÃÜ2?çukËÌ&ô¡ !³žTH„öâ=Fþ9e ¹_&Ù{éÛ¨y}GÞCßúË=Ô`VôP€íÌÁ 5=ûX«>,á$©y—RÏAàä°Ù=6ÉA-×òð¼ìÎTIbý¨S¶-°#äº2{¸²·E¡s×O¦ã +3VG‡…) žž£Êþ×NkÜ.ã<¶f;8R!(¶ u¡õPdGo1Ô¤zIÜ‘@t@øâ„2m¡HãC•fÌ…+ +=±ºÃõOR…º„GØËb Ž¾¶»OD㯲S.{iÕ¿¤žãªÿ.Ò+u¡•Ž†#Å| ±Ûa`zÃ4©›û­ÛNïyÛÎ3ÒqB®:ž4 Ï€qqÔÑYêăµNL3šf` ’ê\)ßÚÊÆm—/Ðð z9zye»®{ØZ³‡ßÉÈ6ÔÆ]ÃÒð ˆãf‹"‚¯¸k™ï(Ò¾c‚¯}õbÃOÈÉñÑG†AäWe¼Ö«Ñ½0x>Ò²@ÿÄÙAÓyx ðÂ-ƒ‡ ð¬ÁC=ø§ø1˜QñŒüï¯"ÈB„ç `ÝR}¾ÇVêñ+Îõx†õR¼?ˆµqMOÜÇ‹Q}ÛãzÀ‚²Êä§à¸Š«,ŸZ•AÙ5Ë '§«£— ~³ÓàņW”ÞC“0GŽ|-1™czx•Ô’AËÛw 6ÅFzÁç5~B—ÕUÿxÈÔ¢uÛê.ƒ‹_ ÎQûýæ;< +‚-â#ü¶¯þŽ½ ß¿ÅÊ—Dwö«%ú÷³À²š$ÖtN20 Á4Nh^] ÓÂj,¦G%éHØLq¸õxˬ¹Ív瑾2é-¬ðÆÿ& dŠJô4X¨ JïMM]÷kñ«íä15Å/ô^ŸÀÏ„®/i>¡Ù§#ç¤éñ5g_‰¥~ &\£Ñìª=ð ŒïZ0\¤4Ƈڃ¦Âó;’fÂÏѵáH†jü´fšÏÀJ>gFÞû,QÌi(¾Kv,9|ò#¡dÚQ(¼¡­œ‰¿×Ø-ù0dpúçÔЀyÐsÁ¸y/iˆ»ˆ‹\îI‹c·î`+LÉûxd¸Üðm-ã1@ ¬ +×ì0‡’i,|yEYiÊì–í~ÍÉ_TL©@¿Âͦ %BÏ|wE®ÃAXâ/# hbx„Ë Z krf^Ä’¤šQ¹¹¬»¸ŠãÆS=ÃïO…Ñ4ðá>ýtÛ.Q!öÆ@…]U¨`í#ènÕB¾¦ó0Ô«9æ.ì)-/ZNé=JF‚æ×æØ Wxþ¶§í6XÓAîT4hðL“4=|dTfÄ‘&fÍîß?[)b§+>æÁ«]6Ž¯‹rÇÑþ«BÅ'“zÊžWL•‘ó.ïÚX¹@w¦×1z…71öðx, „ÓÄ“¡¢S»ŸH7kf·q‚ȧÁs®ÊPM©]²ByM§‚äâƒgœŽ±V +C(ßB$¡>í &Öð¿Õ‹íŠßZmCÍÔÒ‘]Î0h£ø¾&z;0v•âBÜx°2…åÚ-²yª¤èðî®&šºSßÐз4±OÛ‘œœ†-ôø»Otm±†í~–­»·Ñ :„1ˆN™3¹ej‘(¨M+,³‘]6|.)r_Ü è± ãÉ)ÐÝ"Æ\š÷QÜ1Yæ ÂÛF)Ïá’ÈnSˆá›N-Yêɬ¸g6C¦$†ÉZ"X,={ôRœm%¦ìðœžè–ôÄ„";3DDõ^/GY·„põ) ×ä­^×(‰Ÿ"$q7øÀ¯EDw´5ÛÍÌ¢³/2”êOgæ»UüŽÞG צ¼*yk:W´k}†ø2ƒdD‘dpªžd LA‹_jðE ANnÑ—`)3¤!³b¨l= +†âÇåjõKÔŠÜ¢àUQV¬ÎìDNRèxSK «g.»jš(l¯Dì+»Â%à;¸lº"%®I "dnÁkP)A ~t–"KiA!{ŽB6AÈèÖ¡lrZK—Ò4 Èx<ˆ¾GŠ³ºÌÊ9 +f¼K$i§|¥]{Ðçnh%ÇY9ëŒuï4 Ò’ø?±Ð»@,ÅÃ5Eµ æ vD±Sþn}EÛƒ[HÙÔ*Aüò_šPÐX×Ïøc¦_ñ*GG./?ð5lWrÂI±3ûå•ä×üÀŠI9]¼ãFé*¾K´e·qGž·GMÉvµŠ/;áÒl:”çáá¼Ø$¦1[Äá–ˆ錫‚PÖy[øçb÷{^Ýé¥ÊdP—‰«Çtt˜u†rÇظ’·rdã’K!¸/HxYÁs2ÅÕHjdü¸VŒ—Âá›*seb\˜œÖV¶Vfêòu‡†oþçÕÉ€ +endstream +endobj +135 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +136 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +137 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +138 0 obj +<< +/Filter /FlateDecode +/Length 5383 +>> +stream +H‰¼WkoÜÆý®_1w/—3ä É6G®‘ÂÖÞ ê"XË’,[¯hå8ê¯ï}Ìã—´wS·0`­VäÌ}œ{ι«îî/Î6'÷ê»ïV/ÕêÙæáæÓ½úþûÇÇ?ª£Çë£ZÕ•mü߶º;?Z=}]«óíÑjm~©•Që³£e]Õ¶Që>|V¾êàø×UNµC[We]圇w®ŽÖèõ‡£'ë£'Ïá¦_á"|ß…ãñ·g«¿\ÕêøæèïG«×·›kŒðÙæú\-N¯—OëÕó:VÆúº WaT1NÃq®C˜|CÕÔ=Þb ?j”©»ª3Þ©ÎöÕ0 ãûçâX/»ÊªÅ…^šºòj±ÕK[uj±/LeÔâ>8µ¸ÒËÅïüp¥áïðà©^:üy­­©zµ¸W÷º…zÀ,ž,^À\¡¶Úã+ï5|OÞh~‚¿Ó‹—ÚÖjñNÝÁÑß<›tà…6=þú›n8¸pik|ócò"xHËÚªÅè–x¨øÓ=W7|ø5ž{ Ëc˜§ê^øEYhqúPœ‹óú¥€@ÓЋÕx³Ð®Á¶ø´¡·<^sªô¿ÖMðù2@L¢÷€Êªk³²÷ %¡ùå³­<»ª[_žß»ªn†Vuп.A«È†ºÈY¥nQ#[lè€Ó }ª´ñø¯[ƒ%z£µ«±œ&št‚-À§ßã}©9V6šl¨gêVóÓwp©Å»—Åþõ ?ßé¦ÆH&ï"Ì·J`ÊÙéOpIè嬞^)^„ {¾3×"º“æ"t“õ’àu^B¨ûfãK½Ñžt«kþ»åcâdY!sP>4щT–ý‹c°e`¸)q6438«!ý„³ +úÁü›X;'ÿ<× øsS4˜)MS‘o&иè0ÍsüKìÂD3Sö. ÅÕâ"¥¶¼®Ä«7¸yÊš«½¡9Ñ|75^¿?ÀªUê5³ÕVÌË"‹O\%ÉÞÒ]!Zš$k>{ñÕ:€›¶ÄM7ÃO¾‡+‡¡cÜì”%tèAä|ª.9í þñQ7Œ-b‹KÄG‹o BÉ y¦c"IâG']ªÏôÑ™‡ûç›æ8º^ˆÅq§¤ÕxÙš!y0JôÂb–)!²ü^©µvÄk_TÓØÅJ’ÚîKm÷YÛßžr©šÌ@[Í£sF +”rÀ³C"‘¾…C0ž‡C0â +Œ˜„tÀv‰Yvç{±W«Å+¥kfj¢ºAGÌJôÙ š8&ÛT`ßw!µ¥Æ|ÂQðŽ/¢Ë™ÏqL‰èîyˆâh²jñC˜ð纥XW¨¸ÏÄÜþë0?l0|±ŒÂò+ÃëSF41=£Â´ˆ¿À€Æ„TC·4½†ß;g“Y=ªW’猊ä"J'éºà7a“p¿Ÿáñ®^:¥¦6ЩN$Öh†P²ºPiÁ2¸K,þdeƒDY‰°vè«Ú¶€ýúÃ~gwõÈmÏy)(cvÛ§šp“U9¬•ž’D05ìöЗÙGDЦÖ;ö#nÇ|Ñ4Çɯ[úɇ +Q±Í…‘;X2ÛKòOg™þFès¨®1 ˜òç ^<Ô‰ÔA¼"6Â6ai\ÇÞr4‡|CáÈd'çfâÃ-= 6u3'¤µV|—¡„ âõ¨ÁP*õBG °ã;O'Tä2Éž¥í-sfÙƒ9nšÉ|Éd~ÌdSæ(ö ûakèã.°hU¢öɖ'¾ ûéïáû\µ>*º4ØSJ^™éÝ-»x²«çšXV#KM#ˆjïŠ5;}¨lIIM3)×{á×wqp˜:W:'íå¼™¸E͵ xÀ}¹Â4-uzì€Gœ¹ˆbÛs×K Áð<‰6æ}:M0Y#xê£n‚ú4{Ôœ Q3Si”ÐvAÜÉaØ »>å0r ðk?®ªÇª¾g=Èt‡å8Clb/BLò ”z¨š‘ÎÍ`ª³ÂðïôV,²a#œæî4ûDcoµae¢¥›•È*#‘äI­Ôšõ/E]EG'œ<ðd'o>í†­Ü OtÏð#í»ÒÆ H–K_tÓ {8Šõ4-]0gVÒìê±K!¤å?ãðê UÈA€©óãb%ê7m—€M;⢃ï\/ ~Ñ'’·^®[ÅÞH?Ä•ò5§K©ä_nr‚ý/øgb„ÑaY“ð=¶J Í2ÒÜزáš¼F(&Õ 4‘ÝƼ$œ,0g R¦àƸëŽ+ÝH‚Š¿³:M`"é4—Úöœ\@ÙUà§ÝY_0縲×8}n´^‚9?QËði‡m+l:ô•º‡êÅÛ@9[L‘RÞ`mÉMÚ0‰ŽqÕXÎÌjbà={#ì«i¸7ð cÓ¥ZSævŽ#¸lY´öÏÛ— ç Þ¾ÈÙÔ]Õï”CJKÃ÷4’ Ì5»u=(üXb`ƒ +SêÆ,êG,*­XØ{\Sô}¬yÿVÔ.öpÚ¥ŒÄ ".¥¬þ'H~äÙ™âD\>z\“ížcŠiJÑñ8Å–BµS5l\mM9ª[é‹–ˆ‹Ñh| S¸Qt!Í|CU?hCéFŠ™ÙP‚"è.˜îKL¦åB…A¾NËáŒ;'àŠò]þmÚY|¢ûl9Áð÷!?.P›3V˜´Rj-rŸ²‰K[€M@ ‹«¡¸¶».ë»@vë\Yv$¦ˆYO2¶Ö’9Ýg}IÕ~ni©0˜Ÿ)_4ƒ½ìã“÷)én™mæQáoç&ÀŒ'/ Ê,ÖÏLi,eçÚˆO(·{˜L¸A’9{tÍÈ[ìêÂŒ<íEŸû³7óÀLÀé´¢>ZÑå½V÷wa +ј°Þ=·ëk*ƒ[ú?•7œ@^M83R[( u’Ç—‘:Þ:JÖ=VRJ+J¹Z›_ÀتõyœÉ>@1&ª²ÍU讥Xe‡À€D*$ÖC`àáך™KD¥Ã´)É‹k²³Ž{OŸÝ`/°‚h +k‚Þ6¸ø :nua#Žt˜;Nl˜`xÿB4E!Ö5×!Ùÿ9Em ~pW`Û‡ #)Á?Ž–—²´˜§o²)öÙTH £»ÿc”¶ày;J>!°…—ª,=~ v£Ž15 §cX\Ôâò;9–ä(ÈqžSRFnyp£ ±ŸvJªðë*RÚ +R·§“äágÉ#™O‹ï €¤ÈäZÑ«ð™ÞC稜 +lö ÊùvÛà}ÂQÊ#‹EWPo“z(‹(±|€ÍÖýÚˆœ0(Ò&êÇOç·(ü?ÐIWt²®lãàÿ¶mÔÝùÑêéëZoVÿa½Zvã6‚à¯Ì1 xr8’pK|Ì)g$ –á•lHvý}¦ŸÓCW¤äÓ®Vä<º«ª«þôÿ°DLØçÉMéý]7¤u-*ÂïMÓtl6EÑl-Ë +zfËŽaû²Cy#@¥û +Wiñ**v²m3\ mì‹]AÞJµ Í« +4Û¬§·Èé-ÖE Íœá +7Æä ±o[ëbHÆ*ÖVS­ÌõÈJ×Ãê7œ3œVПӦåALjùj¦µÞïçøVpÆäM^Îé8Ëew€sj6‚3Íài6ƒ3JÍöK”^¦uÆÌhC‘MW¨M(¡óäE ¶^ åçÙ%Ko rž‡Mp=OsÑÉd³W3 ûç‰jxÏ” +f€ë5:«‹>òušÜÁ{]9‹ƒ²õL5óPLM”Ÿ®yò?‚Iï¿s…äã8'h㟰mZD}äd†!ÿþ«e¶íL™Îd„Œ›L‡â&˜ÍÔ¡ p1•÷4Ÿ½„óÄRNù‚eJ8Þ­Z­¥£R-C]úD9Z¨`ÃU¾Ž¬¬TF*u/~Æ“LF¶ "Rã,½\Í_P°Å^¿Q›¬Å„pÙˆ™ü¥Þ}]ÚýÓÆÊ7Éa×0F–í@íÜnzòžçYŸLzoˆaôöà9cá¿¿ÐÅ­/†ôµz%ñm,m9q°b—¼¯jÖ°O³îÔýtïÆs¼ÊÖ†@Û¶*]}ëôØõÖX:µcÛÑ•þdL3Éè&– øRO¤ÆÃyÑïÁ Ф;väBÓ©ïïÓOé`ÛÏÕ5Í/£°OQsx …»¦=CáÙ²Û)Ü5~#…¡ &+m0û/9ll<˜2‹§rž ¶¯ î½!.Ã,áßýŒïè5ì*‹éý['nü×GüO„GFŠ¬t—ˆWÒGÏ˼È«Qp2KÓÖDÏgbWË\¯&"K*Ù´ó 6 +,7±5YXÕ½ƒñI!358OXòX(‰=4±Æ2¡%Žˆ–´õ´L Æèå¾Íy\|ô\´V-¸¿â`/›Í– SЫuS8ËU!»îû,Óà ]G<soÒ Ô t¹öðùS ÜÐyN”Mšp¾È¼çÔ¡±W»Êtìżïüï ‹˜i›¦T¢¦‹¦&m– ¹S =Ë~èÏ ¨oŒYDF~@ÊÝ<dRÅ.vÜ´4kép?Ÿ>>¡dçgpsÝ3CdÏc Ž¶º•¨v$7ÃMdì§rl÷ÄClv ôá䌴j2(eߊë'@Ù¦ŽÌ£‹÷er2ö‰â»ß&­¤~$”¦užŒ¢+©Ý²ŒŒ‹ú‚ü¿x úa¢:dÊOU‹Sºjgµ2{7&o +ÊŽžh;&†ú }“öì|W !Y‹Íзº6W»h¼qÖ"ü<‰SªOpˆ4)×Ðt)’'65Ež£L £¾%¥Éó\´HšIˆJÄQ‡p`úÚ€§Œº‡§s§ÖÒ…O0 ~¤~EhÉ ÂITųb1à˜± ´~fdØœç9%®?ÜKÿC˜#ÃÁiɨèEÒ¬H©tTê²W—/Ç·êàâ„y +‘Y´žTŽ” NËíÐq UÇ1˜VŸò ö¥¶ûæ/iëq•wîr‡1i›Ò˜4c qÑí”ð)XA=‰F"%n¡Ù„|‡E+äZè›QDõ/‹få +Jëb§A<É€~(Úm™ùÕøŦ ÚÝ7fwòÅö`b0˜8ž“4ÕRßB îiz®_4]us9­±x;)‹ôþ«K•¦‚䤤ٓIuªè‡bK'žœQƒîkÌË/ŽHtµþIRs¨Òˆ€(> +stream +H‰´Wi·ý>¿‚‡€§·Ùì&»Ã@äu–ƒXäC{hh/Ï®%¯}ê"›ìcv:Š @ÛÓɪzõÞ«£?ïž®/NΞԷßýMýxò|ÿÛ“úî»WÇß«Õ«íªTeQÙþ¯k«v—«£×ïJuù¸:Úš_JeÔöbUeéÕöLmäê³r…‡oàŸ/eŒ-lÛ´ªjŠ¦qðÍíê_ëJ—ð þü{û×ÕÛÕoaÇ_aCX¨Ä5`üõãÑ_nKu|¿úûêèÝÃÉžôÇ“»Kµþp·yýJ½ýþͱ2Ö´ù±žî#ž×ðy·á¸´Ca*‹»ïXÂ¥³ÊWmÑuãcnõV^_iWt°¥ºÅßE­Ö×zSUxqw:|wŒWë[ Xµþ ~: ñV=躨Ôú^oüû¨7uáð¯)ñﵶ|xŠµ¾ÑÆ-nö{Ȳ4<ñøäÎãðX[‡+›Šw¬qÇ]•j}®Ni‰OsÏ ®þQÓð,°Ô¼Ña÷°æ¦ÂGøj‰¯^ð&øô°¨Á•ž!Óà6;x`(,‡KÁOÛ¯£Tgºå÷: ëö»T_§V¼k‹«Þá>­<0ø}òâë0² 5ûqÑ¥¸(ªº”= ÓÃÚ>ÖýA—{…‡Ûaj8&Ãù¦P±ô Çx"I ¨³7Cr8¨d‰¿ûðk)mt®>S¡¨æ1A=[Å"îpãñë ¼Ó (‰;mÇ…ÉÚàg—Œò]À)£ Þd?0ôU€øáû Þ¼ÄH=7ù@ºçŸ5Œç’[€;ŽlCØÂû/’P·ˆXóIaB]†Žépˆ@³¤Ô‘Á£±@j¾õ<ÖJoÿsàÚ&Y›²Ã_ „Øu ãï\OE»Å2XL2õ-4£ÈPŸÓb ýÁAÒ[?87·Ð¾ŠJÙHö|‰¢ú&fNúfŒæïQñ÷mnè7àþÿ¨Ú”ú£y£bÞ òÃ`lF°¼DÂÀ}ܰгî.P¨Èâ$Æ}D‰Ÿ%­DŠüG¬‹«µ|ä>Ä´Õe•Ñ²ýûsxÆÝ2âÇ© œhÂqzÕœý|N“ ™§‚ä§É©ë•j‚?—ªÅ¾ƒúd>)ïR<ØïTÝ |U˜ˆLÇœÄàs›V±æ+©˜ÿrkQÅ<'>¾’@íZÜâ·OÔ‚†/ »,žÉ|wûeÂi*$br¸©lÂàœLuúYÌh/x._êOÅ. ~ÓIŸÓ²\•z^þz”4>qÅc֧ʉ,,cî:gn&ä±^±Ž\iÅ’°šŒ +¯ø}WÛÄ÷# ”ÏØÙkjÈn Qa÷È™°A`iÚîwFÌ“Fýú&UKq¾Ñ@1Jú yQ‚Ò!vC¢DØï=U€Nœ4´Ø†¨2f¼Üª9ÇQ§&éä¼iÇ'ãv¸ŒPÒZ *ïrËßš9PW]b¹¹0±ie©Bw›FŽÙ&øV7lRÕq@ªdŒì¥#ÚŒD–ã•àV(㚪1žLtÔ1ö%$ÿw~îµ8Ô›ú<‚ ç7‰û¹N׉Yî« ‡ƒÅ`þS ,1ÿí@„í!«½)»×¾pj4‚†ä¾àíI¨ÐÔª÷kÝX¼—¸zGKªìyÓ;?318Ð#¼*ðV7D\ïµ®©Z…RoÈÎ|ýáe(¬i}¾¸R \c l Í¥SÉ>„†|ÅdáK»¥Ò=œß1­+FYŸÒq#~¹‡d(GHȆ¥l‡½PQ&Î)mÝPMw @Üí1fÈ4.Ùzs0ˆm™O`f@\šÄHfŸL?jjà‹ó[œ ¾)¨¡cE sN-üØäãP`ž¿cƒ Yà‡Ýžù%a¢ñé¡ë¹$¤é¹É 75³ÜtŠ^tÓ +öRÿ'ÃÎxð\lèÅYìŸ#,@NuÀ°ÒÀHë“‘¶"G”ø¦À;‘Âe>´äÒÐ æ‘6…A¬ÑíiªøÚ.4[ºhùÛ7»2^ê /|#ŽŸ‡ã€xA9Ù’2F†LTœ‰o<ëŽ~É$fmV30ȶÿëÚªÝåêèõ»R]>® WTG—Ôö¬ ª£C4V¸õ?µk¹žqËÇÐ'¯ã,!IÐüqû8¶C]/ÓžÁD Ÿˆp-þ +BÓWÒ`€lÑ +ªõ‡%é¨ót`Ðê#æÁ`Ž¶æÀ²Ú^¬ nBÏ«>)µ‡1²©½$¥ÐžŽnÀ mŒ Wt§Â !;ø|§I¨nOøé­.¥‰Ëï4eð FB +ìR†Ÿ’¹zò“…œL¡–IgAäMùÑv[r˜`*Ì܈V; xëkŽv˃FÄûVÞSAc=„R7Ðô6Cr$MC¡_&Ò×Ö¾ØÅ»EœÎ6ÃîÍwy‘ãƒÔÅdÇHljJÄסIOÒHh;÷ì–÷œàÅ1f¾\n+Ê9«Z×÷ˆ*ò…Ujx õûe`}àU&Ê«\pï&²ULÚþ70 ‰p@4_Ô––s˜˜‰Ür% cÉX Ë F9øJx¡I„o¦FΊ/ª“w”ÃŽèË©6™!ùÉÄhVCKTã£s5ìÃëü¢ÅçƒM=gBk Õ‹h‰F?ZÂp”à7Ý–JuH@IM%}hF5Ô6³&]¦¤ô’Yt\¿!Ôônñj&'LçäšG\ßôútg‚Çò iM3‘²©•þi‚«Ÿ2bsÄÆvïÇ÷ç£!(Î,½w#ò{R˜y—ÙZ½g®hÇÂî"=U‹í7NÄ2¯{¨E +aë ãOâQ¤ð=ù¶é§·F aïs?ÍÕ)«Iû$ ¾ì/¦Ðä )Ñ0Ö‚ÀÁš ¹‘-E᣶¹a]€Ÿj`¬»9ü8›ëH4QghšÕèppx.þƒ¾Ü~°{7$æ í’½¡gµÏM§ìºû)··ð‘€¨ òãÔ¨ž^ìz‚>.bËbRf-ñà—ñä5Gí$Æï׺±xImÃk­zƒ/uØr}ëAãQ³À‹ïTDo¯ CV ”=9.€Š(8ƒí™’‹iÐÔ]b¹)kÂ:ždížÒS#^6T͵„üƒ¿š€—’\+x±„†ë{ê/nnë¼×2Õì\–ÄW§­À¡A0ydÖé³Ê˜ÙÛ»dn"yéù-¸­'l Q$vLŠÒ“êX»þW'Z©oˆ—px F&§Uû½'Ë}n4c‘czÿ.Ìø‘9æÃÄX:Ût pÐä8˜F6æ"RgòVI ÜSUO[‘„§Ú„ó *êüÏ=…ù0ØM/þiI|ÿ%½Zzã¶ðÝ¿BG ¨7")RRS(Š6·\êž|(âÀvS¯ãÀvíì¿ï¼HµÚ­¤½x]iø˜o¾G(ÎLá<üma¾ŸîÎÞ}ø£©îžÏÞýjÿ‚#W—·g~¨ NoãMe‡n3ÀàájšÆý|ùÏ̵;µvª/uT·oç×íË3a·ª{<Œ¡Ã\^ÊYˆ·ÜôPëå¯ÎÇŒaüÞjg˜:-+\”AédÙ‡\Va |ŸxBýÃFèŒí+þRñèio˜ë‚°º‹±+`èzL{f?הIJ»oH.|!üÚ“ágAÁ¬+à篬»~a=üÔ¢û,¨l‘ò‚!{ÁWR\? ‚h'ESYò,9"êçkí¼˜ôžü§”Œ¸‚§‘)ŒKN¸ÍhO4%:¼Gœ¢û;ñ=»W®îú¦ÊxCwz_»r/løµ‹ès…„zð÷ý¼#Û¼›ÝÉØ„ùòë°ÙÅfYw 6‡õØT‹îc3çºv‚M—Ó §“ÓÉŸØVxçc•ô ˜Fò%F +iã— /Ž’¢ÕŽs“+B >¡B¦d=”v!¤òꆹñ; édPâ«™¯¿–æÖ)þçÙxŘѪ¬´•³)ð÷ŸB…¬ +endstream +endobj +140 0 obj +<< +/Filter /FlateDecode +/Length 6699 +>> +stream +xÚÍ=[sÛ¸zïù|$g"™¸’ìììL'Û´›l»ñœóôA¾»±d¯d¯Oúëû] D +òº—ÉŒ%‘ ˆï~rôfýps¹8{ø駣ߎ~]ü¸{|øùçâíñ»WG¿|©‹«MñöäU]Ì¥2Å\kU¬¯Šy]·ÅÉY1«ùÛÓчºÅÉeaç)jø×ÌM¡;5ïtÝt¶fnŒ5 Z¾*¥ªNþóÕû“Wï?½ƒ¹a&øó„~…?WůŽ>,ëâøîÕ¿¿:úr¿XÁâ~]¬®Šòb5ûåmuôéÝÇãB¨¶î—*ÂRñŸ(¾ÓtG/LÔó–ïÈ¢5óZuªk Ñuó¦¾Âº¾–¶‚—óªQsSŠÊ8üË–¢øRmùP ¸¹¨„†ø!Ë›ª…ëgÅyo1ðSàã›þ´åºÂ˪›«rÁ#–ÎxQYø¾ª„-Šê?NþÅcddá@Pç¢3„|é` ¡ˆ!lõ\-»†!ü‚‹°î¯GZø€_— ++7Ç]%¾.6¸Ü.»QÈE5kácVÍTy +“Á3 àoª™‰á¶œËò¼øVV¦›ëò¬šá0J´®€â‡ +ïÝÁŒ +.ÍèÚ_‹h‰š~ ±å· +p FÜÎhI|¥Y¼u ŸˆÖKÆ%ƒÏÔ+i +-ooX\Ì}ÅK°p –ÞÑqÖKÀa¨ _~‹/§Oxƒ. 4€?³G" 2å,ÜÂb,Àp•g¸f ¸\F‘=£tõÜ¡»v^ÛN +=` j/—““«˜ k™ÎqŸíæ¥A¼7B.cªT$dˆ;úN¸oÜ(úÛêïP+©áá‡â˜Î–׌nƳMñ¼“‰äSÂ{x˜o!×8ΤEª øTKqB|tí€9„9±XÓýwmùHœÇl÷×ÌY +ŸS0,1¯ŸÆ +Dkà-DÚ}%[xÏm;Å™lXþ{ÄéRÂjW¬¤®òu’î¹M‚2£ü`^à‡ÚqD¿XùyqŠTöZfÃZ¸£.ø Æ‘§¡ÀF7¯*í…¹Lù_Œ§mEˆƒÝJŠÁ2LÈ"AÞý°!»!8&b5eXÚ”^àƉv1/BÂìw¨@Úò²Xk֔Ѳj³žGÈ–YÀífëýsÁDj¡6z” 4PØÀ›Ý{X¡“9/ˆ’ä~&[Z Stã†Íï@œŠ^åŠX>A!é5€%zEh[ÖÔ¬Œc(C´ t5‰ßž2Ùšh¯9›Ôžâ¶kvHœnd¥rKòTœ^LÚ=°z¹¤·Yæ&!|¾¹ib¾Â‡Gø +õªÁ|Õ[ë6µÖ½ì&¼N 3—€iYdÈ{{Î*5<³%ñ‹¬QˆÔg„Ý‹"ð²ëšm›l¹<…óŽŠpU!r jqOA0ýë2—¬ƒÊanrìCRT<á»Ô;ª¶ÅÿHôͬ“ÍmMéuv.™.p¾*iS›"FiŽÂ9¸i " JÊrFÃhìÕptÝ’E%Zý(Â0˜N–VŠðŠj9¨–(MÚ§1C‹Þso´Y+ýïytj‰!ñ<ÈäÛÁxÍ6ãÉãÅ”ÑPžõîqMÁ Zäê7¥›ÀKƒ"›²],ÌjÔH€Öè]GÏú´¨3¦.¯'•Z âJ~>®Þë9šë5qÏô`KF=0Ááš[ŽÙ•`’’ÀôuA¦¤ó¾ÞùŠÞ€5·hÛÑÜ]׆¢¸Šœ£0©†;è Zv7e¤ì Y©Ø FqËÇ‘ä«g,¸¢›Þ±è`† ›à×Ù¬ÒÕ1«ØQV &ö*½ßÕn–.Fõy‡9‰EyuŶÿ~&9ÊEÄo«; ÒÝöƒ(0öÖ´Ž=<Ǩ,AO„5¡e»H¸*qøÁ¡žWDOÍ*09 ääš<Ñ¡Ãp6ÀÛq qZPvQÄjœNl,­5l°±Ùä?Jð¦NüG¯‚^.I0©X‡4ÉÐN qf +o'·\voÒcS̵ó~·R4Èr›^§Û±OꬂۗÄ>M¬Éƒ„Q)‹àL3¨ko¼sÕ–ß+Ó‚/'«hÐÛå}‘À4¦œŸ0ˆË:¦)ÇW@{mš¢(êEÛÌÛF3  ØÝB4j®”ð÷…l¢û +3u¿œŠ.pù +f„×uµ†?ñ+m+qŒ¥¬AÄ…Œ_êFø—F#ükýÿÚh¼ßÛÖü±"z±n€€ªíßlàw­ÞFø‡áÍaÈ%¢Z2ªùß¿NÔÜãu[ÛÂv]q¶¤´êïa_Ü_^ù±(®À#ÞÔvàPJ@)šZ0Flf?‘“Ø–ïÉB‰ò ¢*ÿ™~6åodRmyüeÜà`‰ÓÈ5p´_–BÃ-G4Æý@âx=oŽÙWþ[¥ÐÔ½ùŒ¦½…e!ŠË7lËqÁÂ{ŒìU™¿¶(©­DAЧmW·6^É1¡@–«0¼ÝÀdyÆ-¯I–׸å©Ã—g¦J_/;\PÙSÖ6uO×Ú=œ·DH…Ðt3~E¡+ßÙ‹K“A®¼ÓS=k)оð*Êb44˜;ÉɧœëxÀ;m¨…®ÍÇ/àÛ ÀQjÊß9*úÄÙÚ7ŸØ&²Øòs…ø8ÉvdÛ½%Ô€–£ÚI-¼+D >˜0Y{ÜüT×µú¹ÈË•uQxÝO ’ 40l4e«3§µ6ÅkÄdDþˆÌ°): ônй +\÷¡Â`õ–C‡ '¥ÿàŸ7¼žbà„÷é®(‹Å=Þç’?Ö”–ºsÞýEO–g×™DÒµx!"aM#p×!´Òµœ¦ÕpæH¦¦HúLà^J%¯ÿ +jÀR`#0\b€„õPCþ¼ iJ» TQz >0(¤ ßáï+L@cFÅí²È¦Ú Öë‰í"d fÆú!ÆikŽ—øÁemÌ¡Â¦Ô õWçT¤¿ù“C<8Ça‚=Rn}AñÕ-0¨¤¬Kʱ°Ä+Ow÷„ª £Ô™F—œ.Ŭ%ç,eŒÑÍ:½©¸ASë¹HTùHL ÌÇåNkCßšqlbv227”«Ãš&Ý‘M6Îΰ!Zy³C¨ÝFì|ˆZT–;Ð{FÂwMi¿uEMKð\..M>.øòq9°?ˆA´?S˜Ç=¶?7gàä¡‘1Ä, ýµlp(C»!åÒðÙæB¼¹0Z>×\ˆis±5s¾¹Ý_wÓ×ÿ?qe=ÚryKéÒ³½%)ö–ŒtêdždT1ù˜¹ôQÌ^oÇyEÙ²+å_`_¥ “{F¸©¥Úæ[¥Ð»Ðm­žnJ½7Ü$Z´Íˆ£"3W ¨{ÑG›¿cxHµ¡Ë?*ªT°1"§4T´É0¡EßàÎÙ¥*?²îÚ¿Å-:÷‘?&‰Ú[`Ú`I?‚ßrB~<˜MZ³“ Å°"y¶=pÇ‚–d†F49ßÊŠÒO^0¡‡‹ÎȪ§T(rµsícõ»'|¦+¿UŽ¡Wˆ*tœèç†L’cå+Ï嘘ûV+Ã54¬‰âj°%òËƈó?µ ÙŒcdÿÝRæ´¶k¢ ¤ðâ5”f½&˳lû!›À$Þ:LÛi9Î|€8N‡R´û¥pG~©\‹*ör`‘ó‘Ë­XÁÖÁÌ$rÛ(ú}X*@»^{4DÀXšœ¬h¶ŽM--mx[# Ç& W+kWqPw’Vqc‚ÔÝ8ë ­Kd-å)ŽiÕü÷÷"ØNáú­j¶®lLLùº¸_øcë.F!-¹–”ùª¨êîÂ-?’m+.Ԕŗ0Kžl¦)ŒÀñW¤A7º¶¾óÁÄúà†P°X£&1¬<\ë‹ÍúÕ ÙÁ4X8H Õ´9Üš9_ Õ^«è=9æÏÅô|Ÿ8÷æ´Ì‡käg§ßÊņ¼m…ÆÝ­èƒÃ—÷ºp!Í“ìH¾}|G™µ«l²î Mt'çu#m-žæ©Ø¦ˆfÜ’ C;.—õP!ëüØ3´*ÖÉú’º‘N¨iô’;c"Ú½÷ÙñŽb:¸³©H{°S¸A"‹Iݤ‘ã0‚®·4‡¤ŽË„èHáÞÚä ‹è½MŠZÒX¥£¶º.‚´*ŠRõˆS N-Yäg+±vÛA„TŒ ©FXµubF©¨$/yÏ°ßfƒ•ìÊœU/Ä„`¾{=vêi&Î|îiAîö7ƒ¦o?´0pÁ{bû·ñ>YòHöæþ›Þ: RóÙ$>¼­N5mÅ1ït¿ûæ¹´l·+d¼÷½¯Ø-ÒòÖ»(¼>»q>ò¡§%7-¼jPØ,Äa<ݱ5óÜe66«v?+'Ëø +!é®ÕЉTÃŒ‰òÔ<(_r@øß Úç¸f:{3ÀevåÉu´5d(Á|¢ ÕÊN@á:¿m˜“ÓHãP%»ÛíbÐÑkl[‡•¥ g{܉g_™ÃsÝ%–Ç%³!öÀÁdƒÜ¾DÌv¦íÌÖ˾ýw.‡³¶¼g>> lÒçCqäk—ç¿fUœ$½¯óaIuv¼/L‚Ë› XÐBGø…M„¤ŽšTAÃbúd$M¼H+ÃÎ~ðü¸—µáæ¶úšò G3híЭË÷iJðRbÃñwP25§ì—Ú—QçÒÚçªó¦™Tç[3ç«ó¦tHÊó-ž¾ýkù‘9 S!4\†X†ÙÉ©DË G›4q¾¯Ø؇qŽÆunz¶+‚²áÇ\Êv9q +_¶jkã~#'$ÓHTm½³ß¡â|xT©hO|Ççëm·žcÍàSÅAˆ—IÌmžWÂgKßQžL̵»û¤÷à$x[±E²7e’ÁwFýôÇó7z4 Šã:Ží¹“À‡‡ªoª÷mvt|η*7 ݪ—éîÀT¨iŒÌ +èKГuÏ­™§T×`æéXJti«cíYåoq'Y%zkò[ö;QTJÆpUGJ*Ý`ÂHQpKÐE¢®éÆ™;ÊODë¸o²+–âóµÖŒ+>âÁiºä&Q_g×Úa׸³’NS¥Æ0Q`¢ÏIqë=ð£o´Ÿ¡›Úp'3Ÿ å6s¹m3UO¡£…Û^ðÚwåsFù»K‘„¶á~p£$ Z&àúâ éA2CG–ð&²0.)͈;›p…î€x¦Öµà"»NÂ5Åsút``¼[ÂvÍz¾Xy}ÏJŸöÏÑYCØ)#©°¾Á3zîY§\°Q=«(ÅI›E”3·ÅU*ÖìÔ1»>Ò¥ûªá´s®üK=ÛE:ò~ºéÖ‰­™ó½Ÿ.3'(õÞVŠt¸U·)/–‹Ûpb.eã8vãŽÞ`uêÛ£+ŽÎf 'Cç³õ¹¾ÊwJS"Ü5 ðå¿W +Û¥ß8Óÿæå~~9,ØÉ­°¨ooÐÅJsIÎǂ˘g¢öçP³GTòêóR}ÊÉÇ\ /|Ä‘—ТÃ}šhÿ\C‡R|í*2} %ƒšš«²÷)T ÍÞ·9sgŽ-øОÕu ÍHc­¸µ}éâ„Æ1¹«Ó/cÔ9öðig&%rkæ$ÒNõŒ¦¦ôí¸÷’y>ÑåwWMSt®h5ô —lÌÒ¶§¾SMÅY˜.ê9ÖòNÃ>}ä䤱1—ÔMN3S +pv€Òµ»› ¾Ä¥ð&›ÿ™¤ŠÏ!‰ÿ›9ÝBlW›¦“Ò$¼úß:W¸F +endstream +endobj +141 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +142 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +143 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +144 0 obj +<< +/Filter /FlateDecode +/Length 5370 +>> +stream +H‰¬Wio7ý®_ÁC Ýj}A‰‘…íõ®ì‡x±I£#¶dY#G«ýõ[U¼ŠìniÆ1 XÝœ&YÇ«W¯ŸÝÞ]ž­OîÄ?þ]¾^?|þz'~úéùËâàùÑA#šZ›þ·ÖˆÛóƒÃWïq¾=8HÜ@†TªÁ£é„O)Úþ÷98,¦ìZª×èe#«w0[4q‹ÖÂßµ„ôürºñ°÷]ƒ»ü+p…Þ!¦øý’ìÄSoúû}!ÐhE¥É1øÿF*—v\翳øNßw„·C))NtGé^¢É„Ý‘gx¡A ©%¬5``ãêü÷Õ=ØE†]¦€A`áB¬é7EN+0ëÊg€ÌShÞ®´ I·Òà'°!•[1ÜsòÛEÍê¿ ™b-¶x­ÏTƒ›Îà34G|Â}Ö·§àaõº”ÎŒ<ƒýà*È:O ÿÎû%À¸v Þ;c‚Ó¬Z)rŸü9)±<"-.láÔž‡ DÅáÏ”. ‚V‹æ|flŽ™Î.`¦ºÚF~ºŠá£4Ê8ïD,óS©z^Í[éøàÒDz¯‰‰¯ý¼ºÌ"ŒS¬ÖÂ톣 +× ‹ ´9¯ˆdSY|Ád2¥Ϥ&j9¥»Ü%.yŒ9+5Öcf ³Ëá¢ã/JëÃHxžç¢6÷:+$dí΄×†gÆPya&r +¢ŽHìx#{\÷µÊ«À ÷A[›£ pµ€¶rÑ–)ôì Ô–lƒµ(Z§¯ž £² Ë{¥z‘Êeà2Tk †-“QdÌœëÅ‘èŽy&(…÷!«˜ŽÃ§sä*@š/£Ÿ·œV½A≠a¯žRÎ]X¸@$ºƒ“5à &¦¡H<àË59®aOxt ¨Í">@×$˜¨c¶ÅÚty.q‘ ¥ |Òѵ¤¬¾ çô©žç|†‚ê2v7žÚ’ÚÄ ‘ºKaß:–#öÎŽÆ–dˆ¯ð¿À}®BuMcg‘¦Ük¤+_—œ“É F¥<™uá•l™¯HÜèYrw´õÚüÈ1ƒ6k˜6¿Ž&'wPñA­€\Ö3’˜zëk+Š'4Ú g½Á^ AÚ\—"“iüY1$…I¡ÚU’¹<ÍÅ»„Ÿ¤Lgg lU›u6™¥­7ñoL¥´‹TSªbª402ýá”Õqæ½Æ<ì‘ý¡È~³¨| õ'µ¼¨|b¢Z ª¶ä²¯<ÉËšE3¹d,ÒÁ½â°”_Œ^ 6–²ã’ñéÃz‚˜°XÐI«\!–¸éQ#r1ÃQUãh¹'Zn‚”ʬÿN„œÎ˜¹|Y‚ Òi$‹"ž¥ÃܺòãM†ßó;WÆð·wÄëè;‹ÈGiÜmÓÊ¡áÌ»Â$¬¥!ó@Gš(扠X¢òþ­w¢ +þçM{zCá¶{LSÊ„¾È…é`’1¢kS‘ŽÁªÃlš×§hÛ¾ƒdèÌpœý„£wlR~,YD¹¢nÜ¡IÔþó‘ºáL½_ÓÂÃLIÅ¢‘! þð0–¥>3ìÑgÈú];̤·,v•‘u•= ŠyB/e;ôL/>&ƒ]eˆß0cðôVd£Aà[L´ò-^XúÒˆ Cfc¤ IJÐÀyEÔ‰=ÔË R³y㋤ìÌ™Ž@ŽcŠ(ˆJEBË,s̾…Ñ×zNæ0HMàɨ‡ "·5«&¨Í>ë®ÞWß_.÷‰^fm9j«Ú.Ȫ’Gìx¶Éhm’ɼ }gB1„i6Í¡©ñq´Å°<ø’ë¶×> '5‹º>`ù^O—œ&,LÝéNÿ±Gq<ƒ)äåÇ‚q/´NL.n§ÒºI5ê±ë~½ALud›nŒgSN ÖOda©îU6ÞìܦñÚÄ6Z3.­P­N€6+ÜGMhA¡¿ RË qŒÊë;KÙGFOã¿DÅÖM\‹3 +^d(²G΃6 l EEk/¹.¶×’”+§¹¯¼¡`Õy%`k:凙nýmØMf´™Þý´ˆÚ]gžÖZ&b_¢QÀ—ÒP<þéëâ…×3aá-s–fŠ–97…ö†"PK¶Äþ1ß6ÍrÛäÌõ öÇé Å¥v†¸Àh®¬2ø7oñÖn +"¿<Õ&ÎȤP–”ža’£9Ï^ïœn—Ê0³O íÙÙsP„<'ªý¹¢÷a%-M$Ó6ÒiÌïÉ|¹Ãc‚PSáaã$ñ]‘ø™r|*ñ]H¼-o}£ëö}†BoÌ>-^’»e™Bs7ӌŔzü ³ÑÀµÝÄ“G‰n§àdš‰…5M$í²¯ÏŠáÀY+|_aêÇéYF³CÛ°ÏЩyR…©äyýªÔ¦ÄLpª5(nýÈ(µGîÇ,÷ÊKä coÒšßoV#TL¦µ{r±+Õâ'Vj®íŠ ש[3q/²áÔYEQûâ¶~-;tR‚ Þú˜R²;öÇL~êÎeüz¤‰P ºô± ƒÞè½ÞhÓ # ozÖò˜w€èà”r„.iþÈ'{ Ã69+´KmÝ”“Äa¬Î¬Ë¦Fâz+b ƒ‰SoŸ¨.Ot»ÄºÔ7aDœD>«ü!›JçãÎzAÒá×™ßIÑb–Fï—EÀÎB=éÈ€Á4Ý♎]é +t”&Û¯ÒÅæ$éB¬={m…»¨Í/òјöô‘7== ¦÷ÀŽÊYE•-%b§7LìHmн{êz6ä¼óª¦Ï†¯Óª±]ÓØ‹| $иï%Í7îXê5Š—rt±×ráØ[cI€OM%¡ôŠo—YÃ}{¼)Eèÿ¾>h—oÇa: lª$øfÆÄ&!ÅRà9îP7žÝ¦®ìv%‡ƒ©”s(¶Ê"€ …ã\elóç¹cÐétF/®™ø›Žše7ýkÍÎÚživ™&>”Ñ–ªÎ…%bNƒ§A³-UÔÖ“mUâWôrn3l"­ +Ÿ¾­4„¼Z’ÀÔ¾6"ÊÕƒa u³cÙdü’–Ìü ¥¥!·Þ&‡Á" +àŽ$g_¥†lŠšÁ•“IÏ÷ªTÕÎÿr \ŧ:Ë…ÉgéÛ°1hWÆÏÍÜ +x¼Á!_e+MV«Øén#oIñè>p™üÆbpnØÇÜȈ «Ý1â²NT'L4LGŒ%ÎôÍ!²6l®išv Ĥv¹§š³œ32ª€ˆàÌÑü†kxŸ?NŠHê»OOƒÿAÍrÍ¿ n=žõ ­³ô—òñ &ö¼ÂT÷ØÇ3!²¨Z)_ýç¡n§ƒæ\¹*4÷Þ‰~ˆ×ÞŠlðåÊfêe¤?ê÷¨}•ŸwÇ žè®3\/Î(‚*EPªŽ•b!{¿a0²mN#Í¢„Q“¿qªë‰ÿÿM3¯(5ÖíT:07V0ü ¢º\]ÆÑå Íl¹*DRÎÐÍ 2â^šÖUaˆz±ó1a¸ +=mH¡9A|»RŒIh'åÆuˆli_ÀrðµÃ?wÁ›‹¥¥¡÷Ã=àÑðXd’F3…ê<m}çX‚Éo"‰”íb„$¨|§$¸ñÙÈëjmà¥ý„Nàj ‘Ð5àïGmÙJB"“M†ó‡jý5dJ:,^ ¬~ƒÐªÔÿ™/—æ(n( +ÿ-é*ÆIý\¦ŠE²!¨¬1Ø0œÿ>º]]=º§›ª¬ì²{¦õ8÷œï8¼Á¸Ô{éŽ/Y„Î\‹(º.`þ·pæêÁuTËÚëBŽ-ŸìK—£&é€~&­ŸíøyV *)tÓ¡CCž°¶{¾÷<.86úSò£ºÞÀÕ6ΛqåÕô¡ ôd3›€Û‚7mÁ›ži³/iÓ mö@›~Ävà oQ¸ù{7nXpšÖHG&Qt¤–ÍáÊÆ…¢³ºäóÆk¿YŠ“ñ£\»¯Î£7~ê˜>ëN8€…¤;—±žô–hÕ½ˆ*þ Uëå°!l»˜9}nÕÙàg ™É:„®ÃÈÄ0â4D©ÿÜ4¦øD\%î UUïY/OŽ +!ËÞ‰ßå6) ²QyÃu™'GT¶*s¶Ö–XÊ°(°­5¤L×y éµ%sôäèÛ¥·ø'«°™äý}õËÖI¡¢Gö… +×o7ðRôk¹Â¬.¶ëÑÊ~ +K<Ó½óv +ÙéY¶¥ALÑŽ¹¸4g lóµÞUÁ ™âBf½„^l öý2œË0[Ö´2õªk±õLl#Ü0†ö#+A´ú!Þ ùˆ§Ûoxµx˜XÀBÜÎßPÝOb˜ ²y}g²9zBfž:“1ÖÈL¸Â€—)§óø‰§¶ø…*×|U§ÍmÏ3ÔÈD‡ ÿX¨×©™œÉǽÚÿÃED~ "KË< È¥Pd?¬)r<«†Ñ2£©'r¡Íg/u¸ü"Zغ#ÁPZzdTy•ðèå!¢ð_©úp²²‚´;l¼žµ·š¡kýžýßɶã·Ðv„¨~Á g7Ήô÷Ž†ˆƒð1.ÑXƒíq2_r9z¾§èù[ó±_Uã9Äs¿&ª~TÀ~M€e“¤Óˆˆð(bî5¥#}ܨ\®P!3|á >¹˜¾ ùÉh®hÀS'0]>ð™œg½¨ç)Šøx]ò_@ï°þ®å²Žb>†¿÷ì3"YÈVK ýc'œÅ*{ÁPÆ®óY‹w +Ñ÷ˆ…Låâ[rù´G%ˆ!œ›…=$ä›ð S<Þ±ñš£Ó;øù«â~¥Ž(ˆ/R\ñª‹M-Ÿ-„ÒQ_¹— ²õå s{rá„ÚþÜyôç³*Ö´%k:¤)Üî¿-ZÝ9]D©ó ”,µËóØͺL‚J_—Ê×Ô._;ª}ÙV+C_hY&žüe왼¥ÀL“GZÏþ~ñø<¦ÕbŠW‚ÝÄÞSY౩ŠEÅSeØ”n:;ÂÒ>.EABœ/7ŒSÜÓï&™ÒŠå +L½‹/H°¯’¸]"“ÿt…j^,Å*¤þ„;Li§€Ü"h¦Ð ï”Úd²…Fú0dŽ}.„PJÛB°óòÿcÌ_Ãw`?¹oØÙ ûÌÃNx\Ö*q±6_§ðˆ2ÃO ¶÷5Ž¥4 öo‰ËÂN†É|·±auœ¸¼òæÒ¶yæ‹H¼¨AuH=üâP:Y )!üBQéÐQ®Øæ„áißGt5åÅ®9ŒÅ™::ûìØ,æÁ¯£Ã_5Å›70Ôk$,ðt*,Ê&†ƒNùÊÀš0t?ÿÈšã­o¸@: L¸¸^®xbôdŒ£°UâÄšÉ÷_ý¸ŒŒbx$»õ€þ/Þïüî©h/nMU£U@ºj1pf<ôˆýTù/ÿçÆ$d%­âf0.<¶P9Tܤ›Õͧ‹»š˜à¹€¨øAaá +z/ uДäêÉá¿ÒìHäÑÉÔngR8Ç9Ã×êAÉH-Vh9v¡0Åý-ûŠÓ8¹ œöËrÞÑcl(½ –«ºsÁ%µì`h<nn†F¸Ô°èqÇuÉsQ\`AaƒCºU_.ÉÃÇÄ8Q¿"òíÍkÖ¤oí•]¼u„=ï<Ö¡¢Ÿü#À×ÇN¨ +endstream +endobj +145 0 obj +<< +/Filter /FlateDecode +/Length 5477 +>> +stream +H‰¼WkoÝÆý®_±/]Š»ä.ÉÆ0PÛiÂnFùä…ÞRl=*ÉqÜ_ßyìc–kRv‹ñ¹œÝ9sΙƒ?ß?^<ªgÏþ®^}¾ýø¨ž?ñê¥Ú{q¸W©ª4µ…ÿ7M­î/ö~ø¹R{‡ú_•Òêð|¯*«ªS‡'jë}R®láø¯-­júºì›J+cKk|s½·1¶8ümïûýïßÀNÿ† @…ßBxüëõÁ_®+õêv什ƒŸïŽnð„¯n.ÔæìfûËâàÍË_)m]ŸWá©Þã95Ÿó03î 5/ÓJWmÙjgUkº²ï{‡g{·9,¶ºS›Ë•=ì§Î ­á"›Û€·¶ÔøCwüØÔe­6Ÿà­»*¶Æà›BW¥S› uTÀ7ì¤Ø:|òKèÕiÔæ÷ô±qM®Ð%ì{Vlm٪̓z€ƒÑùt àXFm>B€À±zÜêTÝâf7¥õ'´…Kïá\~7õˆ—.åµßâÑ ò/ŶÆ'o‹ºÁ£þ©øçá_cívV§­é¥ `ê©4½ê5@¨sª­\izÛbažUUU?°Ù½µ[‡°-«ºo†a»fyX³oØ º™Ã›ØÿÝæM¡[LìÙõñYa0å÷P|¬ÅÔ€¿Î}œ(Ði±í=Þg ü V…Jß#VÕæºØ6ø'>¯ñÇ5bªM˜º) a a@ÈðçH(ñ !ø Qað““¢Ã%·Eﯖøe„q_֩㞀­zÿÂàÅ+<쩺+*Þ)Ï,c¸7ð†ÚÐúÎ_¿Ái%?à÷”¥ +㤓5þ´Í©âþuY úŒ«¯@¦'@/·#¸Þ”Uo=ïŒËSî(˜ˆÞÜTNIbˆQJ/è…n0Tà x©¹cDÚè±i0•Hc>µg"SA0D+î6ÈŒ2 ×oÁ@:O›žÏ"Äü¥yåtÃg%a›-y׶yéà›Z¬œ`Qää&çä6Åã¨&Ì~GHt9Û)$š–Cs8ÅV`¦ÉH%ã [A¥kSgXÙ¨b1aY{‚Š\Û–]„`,n¸ƒ×º$Sµ–½©ŽÆ2¡€<ˆk)_W³¶Ž%² `ï+ܾþÖÑwhsKGñí»Õ: °e½›¨0À¢Â`—ØN´¾ïu>ˆ¶þ¢ðK‰uî +êÏ–;e“º¥õ4’g¸9 ÖÞr<ÜWª¨s`|Wªh»CEaרh·Ôµ¶3"*··ù É +êð1¶µ¯)V¸À‹nÊsÇŽo¹Ç›ùGVƒi¸þ—G¢ä-üõ^r¤À a ÖZìœ×°œNÈ\à+Åág©TØ¡ùH…5þ0Ô˱a²;Oopù(cYI móD†»€óxDÞDcþ½m¨lóèÏ>P ›ÃCÓ—MÄC²6!Õ!™ßÀO’6,ÒÆc¸æ¥‘Ú=]rÖ m¹d¬à‹ÿxX zòx ÒÌh“µ,hÛû³kϱ·‰k=TqÎhQ–ø ô]†}—{Šïb—%kÚðÜÀG\ëÂâÅÆ^¬ôbmîÅ2Aç`b¢ +\*³@]5pdºŸCPmÑ– ;f5·y¦“)›²dÄí°ç0SKïmK´âêk“zê÷},ª·jàߤ÷ïs«ä Ó¦?K #ç–Ô<‰)És™äÿžØí\p 3Nlž£ètHÀÕ“8jPtÎ4à œ©LCõË‹#vöG É +Æ@x©¡3€¿KuÈÀ¸ÜÑÉdËâNŽmÃÌ~ZÔ”Õ\)+——–aèYòC¡Ži_݆*5‘Òéöö¦2ü/0žBìb +'fÐÔ9h–JÛ +”˜y³žR9áªÇ“†(¡”¶JäÑWI¨iNIiBò¹ˆÉ››m©°¥,*+ìhW¥µ0É<ÍŽvÍ;:»ÂŽvv¡Eõ¨º™šËý¿Â&õ}òä) ‚t’Ì@¬3–×€† HÀ$M¥o âi`å e‡ž“.½–$x%"°Lò™¿¾?r両£ ÊêíÆ¥p¸I]ešÑšGÔ²?2xüÌ!™¡Cêü {µ§*J6¹•Zd;m'¼ëÒâkË>iº\nº¼ôŽxÙIÃÀ†Ëe„ %Ø3Ï€jVÚ¡åF¨ÇF h?5Uë;5¢8¯‘f+Ëàâ¾AÕk½êÙ Õ#§„š·¢Øía°®sÜØé|¢ñ3ú»a¿¡Ýàk.â—ä÷˜nì];cïhœ£në±Û2!îâ¨ç¦DH¥ûy‹ Ì:±é¾Vll½ÚJ±éw‰Mv…ØôÕB± Ú¹YWnÿnóÒ[zAuëFÁ‰ÚÁAíÔø÷¿æ 9¨|2 ÕKYH3#à¿i cÚy¾ØbþtW^e/‚Ø“×:FŸJJúdy?ôƒÅÍ* +`r Ÿâ¬á‰† ÷]¸ëD5óäHZ¡{!×ð­]¸ ²LjlC†já(Íä¹.'Æ…@EˆC2â['‡/qÈÉñt`ßwÌ%|;ëi؆¾k¤bó}cöPq€$/¶&wóx€b¸‰GÄ>h^A‰Êúûâlb^‹ƒ¦Lž2„K½=û?9­DšW>?ä¨CnÄX¬_ðëoÉp̱/pÙ£ðÊë!80dñ3í>¢¨5¯ç]†­ \mê¬ØU,–¦&“iæÀ?’]•=ÄüQPKD;……¬gP2„Å]Á¦'¶·ŸB|!¡\ZL-³L2"°;‰ÁjÊùçà+C­4OC#U_E”¶Ö:Ü͉»%nshªÒ|Ç°¯çì*‹Çƒyi&_Ž:;º¦ï@‡€ˆ$*6Ûå¨ IfÎô4}-¼óCaÖŠ…vb±™àÀ;† Áºòb)ZÅ_k¨C#­a\ñÑï'èÙ‹þµÆ„y>:&ƒtB×ÞbtX”Yctø»©ðU©~„ÅÔ7kˆ¬ÍË›){Û ¯{gs:ÔÖÏ'×Ak¥ª49)‡$y¦H3Ê–†“Gr:KT7+J TcLC’™±%ë&ʈ´<6ßž-Á@näyVÎßkT½í«ßà}Ÿ– ¼p`c9ŒÐIh$Ÿ7™êvj;ÅHIø’B‡6¸I]s‹¬@T—{ãYùj\“{cˈâõø¡0v2“í7T6Dc0n¹£¢¥½¹’Y[3GQzö'lQ7ƒ=:±g‘@u|S¡H^54Ù¯÷p<â:^¶‹U“›?¡Ô4d®Lë“…É¢;쟤ًrÞ/Ÿ§ÑM’Ø +èôóú–`c+a¡ïã°ÇþøŒMÏï˜õIAG³Ù¢Õ<*4eø¿ìeÁp´:!6èP49_7ECÕUÜ)àÜþæ×¢°T‘}E£W#¸âÃxâb7;¡™V8 +®¬(ÈHߎ ~õÔ€bÒKl‚§óã’T¹ds¸=ËÅÅuU•óB£ç + èì{í g… 8l#?+)јl—ÚLLGÄ$(õH0ÙhÁÄ …I5nÎÀ0?+R<›¬°fXV® +‰ ¥2aÑñæ«!E¿è¬’¼r /h·rñ1Âk…EïÂh˜˜tF$@óžtq¯ÆZ†É±Ò¾Â£À»W˜^ØûË»ÞUZŽ\UuŽŒÎ–U SQ÷j#0F# +üEà ¾±”² ˜A¸’ YsÂc%½x…dEo÷%§OÞRûRvΙÄí ³m´’CÓI¨¶AåyŠ0Y3ÏZg¾À: +CYÛ˜ÏúÍS¦oXèÖ»nƒÿR¤Úû¯€¡D4~Ï8’æš-%„Do9hÌ‚QHfù(ä9 ™dÝCQ" SÊ -ªsP¡š¨áóœD.@Ï”ÏGî=åÙ!幌òê@yðZ&¼yû +M„{^¸›pA'ªœo½/‚à¾9BÏ°qŠþahG±Ûý¼„—U—­gj8žÌ‚B­›7O™ŽØbµÇ= 9èGL +¹ô¸lØ1sØuÄŽè*ß!U>*æÒ6â‡8GíÖ–…‘úAÖ¯Õú3a3üK¸}çËÞ³/ÚRåS7¤)Òkêñ™Êt™ëîÇPâ{* *tÊ.˜µœ_ǹËÖUa–MÔ6£+xÎûthlf´ig0ÓBfzŽÜÁn†Æh=O ¬«È—$3´(Ôñ¿¬WÉrÜ6ýÍ*Ï„ÁíèJrt%U|Li·SVäÌH^þ>èÈdœ“¤K÷ë·HÉVÄœ«—æpÄ®©Ü"€äA>µKæ§UŸ·æŒÿ·ƒ{ßQÆQw$T½YeÛ 8Ú +£ªðÈ!ﮀ%Unnȶ¹³³²{@3¾ì§4èìô6Rnb¥3Û Eãá«2ê0ÒJŽ±šÛº¿¦ ®gÜEç¹àŠ-k£îØÄZpÎí’BéДRÄŸzMµSsèHd#Z/›RBSÖ}Oû§LhLMhœU®ùÆ8—"“Öï­sœn{zÝü™vÔ@ýïYiÚ•\A­ò ­©UðÆ›ôª’–*ÂÑÿ¿Â‘ÙP $W»Hb®Ûdˆomt±!äµfŽgÆfÓ”㹉֤yddH9C`ZÍ…,qÖ ­æ “ -9‹tÃs¦hä ³n ~•‡>¿5¬§†™b~¬·kÔsng2‰B<1fwæŠIgëŠwˆ³w¼_´y踩#8ŸÏÀÄFkºö„ 3ÍÏ-:º?`Ö¢-f¬]¾dQèùéÂüi/2wD7ÍÅuC?=¨Àê!¬l„UçdžØ¬ŒLõÇvDp›ÖðŽ£¿7Ê¢Nn^5oÑa>{öP›ƒãtqÄ×û?ß-V@wr@‰¹'_rÁçJÇXÿç©XÖl„Bù¹Exæ®þ—÷fÞ…\òr‚E@bp¥A|åN¤'¶Ó¡CO´É[ë÷Ú?*è=ÈV=áÚhîH1¯‚ßTŸI´ÄÄ$”h#ؖפ¶Žæ¥# ”Ô.â×â«ÒÀFVÁÀÒo;¸Þ·5õ“ýPËè§GàrM²)-:Pȉ“$Å¡>1“QÕeÌ‘ññ]€i*v†í‚¢Ò~b ñl*dãžC^î¦ù,iˆü¨J)\óL™˜Mž‹(0i,øSÎe£ü™Û¤6c $t/ ‹¥À(Ö³¥& XÐ焸’—âcKgåUuj;fÜöRxÙÃ^ƒÚ»€B7 X`T}ë’IüØLY eOøËVlVÄîq‹¾±d¿jõµº¾ƒvJ¢aï+ŽÆHfeÍ*Ń—à2'9¼eÏt:hùæóa {œø-h5qË +¸'&£(^´ñ‡–&á†FÏRY‘d“ß° /ñÛ:5`‰;ÿ$¼>\!ù “µ *òq8ÇTþF›ÔtÓq2ãÐXh½@éÍ ôŸpA+†Œ¶NæØëÀŒï}ðèt2‘ S<רq"½mb@Qm£¯cb;E妹2OùSÜL@JÕ=úÏžX'‹î»J=û ÛJ1‹†q¦LàLÍyàG¿¾M.\Ÿ«’¡g£œ÷Ñ|À‚¾öEÔ‡9%´’¤Z5Ñ¡2Ýâ˜ëEDQœ'r[Áä¨0“º¶pS4.›3í&hÕ2£õ–Äi·¹BÙÓõ¢È$çóC­ÉU×ÁÏ«·§Õz]¬/<6æ”+æ +2:§œrœJºÉg¼â óZK8¿í2³riR¬PÚ‘ò_Ö–Âx„p 2óB½j* D›Ç¶(|tý°úZäÒ#È‘Ž.dëB@N‹w-x¸Š„gÉ!)¸z¡(ˆÈ*ÕVžÚö!½*ÈŒÙ,At‚0>yGÓ ”w5‰w]á؆3Œ:qø·Ÿ#udë«ÛfmeñÏhi9˜ðuT`d…5íÕˆéïiŽqB—Ø©$ÅfšqIÍ‘kËÖ™]Ypý±¹ K«¹–(ÖbXSÒ¹C8×1G H÷øÒú±pñÄŒ–Í’’_›y§²_›V~m3ª|ƒ¿ï‘5¢vxdk2Úê+€Fe–ó¶ñÌÐÀ;ò|«q+Ä1­/­%“ÑØš/{¦†’_œÖ›B’èŸ{Zˆ^j7ÕçQkIlVÎ+Ÿf™@ñà•“*Q,¯¤ÏE:YÛ*eúe$¸­PùdfmîvL£Uî÷‡ˆØ¾HÄy2è—Aóýè¬vƒ&(Å^ÚÀŽŠáxbO9>&{øÅ"*=¹"þ†ÿ¤ä¢ek6ÖDÂÇæ-¤Êþû)~Èýï´ÕÿU\ÊvFú”>Œ­@ÄÍ™!îèØ,¯cŠTÎsj6¼€êÉ!ƒù6Ø’P¾'ß9ØX‰)·2/¹£× i‡C%¢ž2{£ê²ÂžÖß+7 +ëD¶sâßx6‚¸Eä3>¶ìì2 ",!­ã‡à௽v4~gÉËttR°{#›uº¼ÌFA¼~]¤¶4„‚ëHr ’L7TäA ô;9£QȆñT®úhM{£eQ|â'bŒð¶ÑE¶K:»ˆ:2[ý€>ŽAÇÒô£>. @_65qòþ®qG¼mÔË È{p7ÖȆ+¤N˜Ë=XRÖ±5Öñ—ˆ.[8&è@ÖaÄbõ^ÂÉ;?0Ôð ÔÒôv-T¿Âžþy¿A™ýV¿4*ö°m5£xTÊ« µ:sVÊøX0íþã1(Š@¢ÉÚ’×¹iÍ”2-õsPZl±p߈MBrD5êxY:˜Z¹cÝKó»A9ÖÕË B(8ê)4#j)û÷3]ý“ø¶-caÝ[Ë^Sá:˜˜>üòð|Ï?$ÃÛŒ}Á¥K¢œò$ƒŸKtólJҢΞ|‹yV$ÿ¯Â +endstream +endobj +146 0 obj +<< +/Filter /FlateDecode +/Length 5753 +>> +stream +H‰´W]oÛ8}ϯàcÔ²(J”4( +´M·˜E»íN¼Ø‡v1pÒ|MÛ8㤓ͿßûEêҖݨ³ƒ-‹äå½çžsîüùúîê|yzgž>¿3ó7ˇշ;óìÙ‹£—æàÅâ 4eQùþ¯koÖó×Ç¥¹¸=˜/ܯ¥qfq~Peٚũ™É§{ŠÖÀ¿¶hŒs¾ð]Ó™ª)š&Àš¯‡U°‹ß^-^½…“~‡ƒ`ƒ×ÂöøíÍüo_Ks´:øçÁüøfy¾Y^_˜Ã³ëÙëvþöåÏGÆ…ªÍÃ5ÕgŒÓÅ8Ä™ŽpeÑñ›Õ][u~á}8 …U%DX™÷ÖѧµuæpujÛ¢†(ì¬.¼9üd«"˜Ão¶,Zzß„éï­9ç+øƒ?›Oðv¹‚U°øÁŸ—ðµÂÕ ~û*_¿ÚR6óøõÚvxðýÏâï)sûsÓ©ÜÌ‹¡`mGypœ§²à °¾ œ…çï¬Çû]ÁJü@! yæè*kø€Ac>?÷½£;Cø þ½¶•+zˆß¿³¸Ê{skþvia §©Â\Î\_¿Øª„ Ã[°U…W‡`<¥+àß;[c(g~p~¼„ýz|BKÜð +F;Üؽ7ƒœšÃØŸ>XO5Ée‡ój)/67ÖQàkKVvFáŸZ‚¦¦BHxÚ6Ýcs@xˆ€DàC=åMϸøWÖQ¹ÿ <7TªÂ'×Ç so½ãÛÑHKÀ†KR%VÕ5Ö‡Á89½î*ÀKØ—Ðw…KxYRŠ±ÁÊ1ÁríñCE÷ú†×áèz,ÙUª)¾$ºlï=1y"(q³ŽÀRcF¿Y×r ˜ãy»b\á‹~ ]Œ€W:Xwß x»…àË%›KÜ”Û$påX¢`HU‰±GLre=þ9œp$Ôô‡RÅí}9yUÂlÛQŽº—f'ºuõjÜ÷“aÚn¯Ç#É—9’\» IÔ·/FÒÙKqº¨T2áË›žuºÉ8£»º å®ä±¿<ÓÔvss7éä¥ÙÍh£•±í)Ó¿CÚ‚â*'qç@Ðpva 2Ìt‡Qí'KÜ„· ]ò鉠¿(ꦫ®Æ[ˆß…&êtIÂÍRK])1_:H œ‹ÒÀM/¡¬„ç#D=I.GR½I¡/Ú„$ű|Q0·CÁ äZb?ŠÖÐ ?Ú†„Êühe>oˆñ婌˲¯¢+à…@¼P2m +38ÇxIH¡îPÐm„A e­­+üPÈú—‚ƒ•íññW8>ßEvM"Z?TÒmö‚b˜›µTB¶Æ +µØ0‘ÃvAÞ«ÀƒÖe8Þiľ¡Qz-ÛÝ ÂXI¦À´Êaê]04™tæhLà“ ·8ÞúÌ6D‹1’dÕ¢Âmì³àaÉ'ÀñJŽa„ «£O2O„6D›j&}N^Ë¡Vá/5ÿÒQÉ=#í½¥âî.ÍÅíÁüeõ«Ìˆ=¦7»¶lœ %tm¨0O˲ôÏ¿=òì ÎNû¦NÈ÷íêÇïÛæwB ™ÏxG—Ióî mçæñ¦Žÿp¨ÌaB‡©4DOg,¥b§¡ÕÌU²_ûæŽ>Óâ8wð¸±)ilÅ)wŽ°-‘ö·l·­D"šñÉ3Y#Zobq¹Çå[ãÝ žSá9l¢DIƒL¦ +Ðí£ŸÓèœS¼³ ]égö¨ê‰O8¡ÙÇäÝœ—i á9LŠ9¡ˆu™qsäŒE„±©KEÜ7îjS‘›3€M ,õèôî-Ótb{émÉOÞ+ê8Õ+CãWFfò”4V±fÓ(!™Ab=K5€šˆ´h­Ät ç¼þlϪŒÌ‚Ö?Ú㔾9"Ê•t>;öˆ”ÅÁñM(ºË‹^ïðMÝ!Uý_B{ÿÀÌðõsX+þî…'_IƒÇ –(vŽ]ÞlÑúIdžpØ‚Z4åLY‰£ÎüA×’f‰±òPsœ8O ÍåædÃK#øêÍÁ“ˆ„0hL›äç¦÷’²¨@U,¶tQ²ZiUM¢¦3N£“4VßKãàT +8ä:k³85òaBÞ£ýlB×+<¿¬ÃÌ’3„BúJ +YÕb¸o±P”†šš6@ ‰iäú!E´’'ïåò>*ª\Ñ™HòGÕ*&dÀOœ3JJ&gkâh òJr3mâ¨ë}Çƾ&Žº™0qT»XCO‚ßbAÇ´B·Z³1{øŒµÓìQíœ=N7Ý›ô“Oƒ}#t»%Š[±=~¨ˆX yv¹ŽÒôF7ƒ=K27sÄè7¸g A%Q¶Ó0!#—·EMÍŽ[S`rç=»#º`†á_•¨'ŸÏÌRIÜÕZi™x¨"Âz2…7B>ˆ@]Æ¡S6è:·€“Vù£¶L£ŸžaGMÃㄤ:ˆ"Ô#ƒÖO+“d:Þ6:)†I<Œ%FÚŠlhäXUFÊ[£F€©ô ›G+/¬, ´“Ã[5ÞØŠBo>Ñ|¾4 +b”ÂaBÕðmÌ!|iíVô›Q2‰ ŒCˆŽ`«q÷£âýž‡»á0 ˜ ›&wY¿%cZNŽKÆ&Å̉cC1âz 5ø ù´ ϼ$Êq:ˆÀ&eÖL(· 9 S¼L!?œ›Æm!žŒ0Ñþéxálxvcxc><• >Ø߀#95ß^ UË”+°á’Ö=ǯތ_0H—ÊÌQµf€Kææ¹Õü6:rwl<¨8JN}ûPSÖì²6L“`ÔØÂd€`´â»S²Z‘¬)L¢3þ˜É´0Ë‹¯UÜï|£ @§,î¶ùÛßš}ÿ›EKã±Ó‚ð*á”Æ̠þP4zåÒwz$ï¡%$ºípFbNÙd¨ðŠŽe_ݱ;¼¨ínÇÊÖ­ j[Ó±ô°![qû·.…A¶Ôžú¸ÿ…ûÓçœ?vsDú4Bu–Nã­ FºUÓ’ƒ|>œÜ`³Ò0~)‰Æ[‡–iñÀÏúGú +Oà`Ê‹)b‘§u""kLʤÑæ†\žø8 hÞ£””MR2Ñ9™¨™¨j2Y"™ +¿ ñV"Ú ñfòx3Lü’Jô•¢{€I"Efȉ¾x13L +3f¨P=mÃ(ð¹À#šydùËx„*¯ÃÝÓ|­;K¬ôŒ!¢ëzT vò”›T²ˆ8 UÅ̦W‡™ûc|Y˜Í»a–®[fËÁ0sÎænTÖ©¸ûÛ+$Õé8©&ö¤ä¡Ñ±ê°Éª-Ž5!+/}Eâl…ñ µ3$—ˆ‡$宋M,ú÷×â'ÔÙho@iÅEÊÃh)xäºw-í@4Æs‹¾ø žH•82ÉÃOâiá-²rµ¸ =˜ýŒ8ŽŸéhÍë­€ö÷D´¡yðapG@iŽ®©‡çûD×”°l„MˆDãX; P Žñ±R÷ ò·µx5{½ß)†²Ã©÷ y*±YLÓÓåÑ•´TCY¸ÄÂæK˜ˆì9µéÔ™çü«Ý‘yöovA-©è·w^ñ'Üz„+ŒŒçmÈ2hÜÍÏÿnø’Jô¢#ß‘<žZClC¤.ㆀü¤™lÜBPMbœ.7)=.‚PS`Jp ¶v¤­µI‡¬ÚZÀZíEØÃÊ÷«d }ª£=/uAbN™ ¢Œ ï1Ô]RTøcµñ ›³«vK¨MÎm4œ„Íq¾ÁWÃ[FŠŠé‰‰yà6ºw,ÁSÅàç×Ö1wAÀÐÊì]v³7]·"{çþpSÆlˆ]Ü}½¯s,`Sl1Ù§(PD› «eºÒÕ{aw##{¤«ñâ,—ÇÜVªÙ#¯Õl>ÜÀpAVçßåL¾t©j±òòßy¹<}Vd!‹)ˆãÊŸs”V[Rp z3øÑ<‚5ðÊÙç »'g’uò+†*LòÔärMæ?lÍOÔÅÄeÜô³_»ág1H~A¦Q1ļ;¾ÌÐeóW0QÅI1AéZ?T…Bt®yC!½œ9êZåR¹¢ñæ«R¹~?¸ÆýÿÙý“Æ°kÅ 0qUL\¼9%°ƒ!HF„97¿^µf€'8ÃhU’H: ‰FÎM‹mòÔMS"RHƒo†;ÂhcP¸¿¶¼}6²héMò‡¢ +”#‡»‹à#x3 ·ût )*³B)C¦”~IJJ”$£ ämI2´Õø*šÝí¥ã=ñS$ ÷Â`6Ÿ[TЉ~Wñ ceÜ÷øð«àWÓx°.øg³üÙº5Áoÿ 7#îþöê—ÖêËnŸ&¢b<ˆ |‹ÊPôŽ±ýð8È?÷)èÖGS|p ÕM² ˜ ‡$Àu8Ññ„KkŠÐ½Ëx6¦çZWò’ˆÌÁټዠ@ÏÁøeÇ›!u +®(âŠ_Ý?šä» +¹ïÔãö`TÆ&¿êÚÃb“ä\Б@~l‡Ð…hБ«„Nc Ó—8üŸ¼è”çRP}` øïšôisÅ"œ­1J;ŬÖi†0Ò@ìsa¶ivË.µ CfìýDygXA¨F%*ˆ1Çeì¾ô ¼eþ&xO|üÔÜ Õa˜È€”cf«ëMngñÑNDîª9‘Úï|ª±ßåµmK™>Àhé.ý®é¦ëV˜î¢›n? ¦+îþ2Ó•=áP£j?Ã79P@+qô-›ŒV.渥wð«KM-˜T}­üܳXY¢ Nh­Í×W„N!4üOF|¸;¾÷ÿûÔÝÇÇëÑöfÇÎ?E§ cÈ]h&§d‘Üí„1l35Ýb´¾5ø¾Èd·Fá»áuýˆÃΠ~a§¾èQ–ÔNWâ¤ßãõŠt$åQ—½ù«zßÜtZœnš_Ü—üü[ûð‡pSê˜ï€sOåÁM§5¿¿Ü5Mº:sMkêRÌS/¹fá\C‰s‹ÿT#”vo)Å)#ÒvaÛþÑšì8y !0ݶYO‡µÁÍÀ]õ±yÓê>‡OA£Z;€° +qñ­ŸÁ®;‰õž?aøŽdB&LVr:*VÂP„˜NCþ‘zg~&Ð̱¬Ž‚&cïòÉ­Ü×Y¸ßˆ¶(kmu¯5ŒÛ°„à?–,öÛ½ôl„œ#zæ ø g"°Vž©-ìÙxVÂ[t‹iŽÐÜþ&7Š‡¼²)ög›ü ÿ*¹4u> +stream +xÚ­\YsGr~ǯ¨Çîu£ëìn{c#DR’ië —\aúapÃ$Ð ÄýõΣΞIÁ À™©®#/¿Ì¬áñ·›‡ë‹ÕéÃ_þrüËñ«¯·ý«xõæõÑñïqy/^}8D¯´½1Zl.E7ôàćSÁ¿ŸŽ¿„.„ëG+ø3öV˜ÙÀ糓Z(Û[ëäƒnŽ5¶þïè»Gßýôæ†yàÇþø~\Š_Ž¿¿ěۣ_,}4Ù~гõSOÂH×ËY‹~++6çâ⨟`ý<øQ<3˜ÞæϘAõÆ)~ +N+ñ´ƒÿóop ü-?®çI‰Q pÀq8½9Âoh:Ó â³x–žÇ›Q3ˆö#ûÙ)ãtzjø.î2ªËú½«¿¿[­A³?®Ö—¢9;ïÞ|×ÿôúí!ÝlzŽ“gî4Èh0ÖHXéô†mÿ|åK¯»¿—ls?ó4RÌC? £Pl&ˆ Ôÿ?Í«¶s½n~i¥é§æ¿D+‡ÆµR÷¶ù'øw/ñ®í]ó·¶{ã:øll^ãKÝ|/%ü~ß‚¸à'¾2Í[ømà÷Ïð[5?ˆß^Ãh…3~Ûj ¿þ£1÷ªùoñŸm7äéóNäïà1üüz|¤édó^ø¦·çæø€›QM¹LÚÆßð ˜É5?ÑE¿q¡¿Óilœê- ÃÏ÷–>Õi}Ñþï‡ ¾‚ÞBᇓhÚ ã^Z;÷Ó4ƒ­€@­Ò€ç)É–ÆÀg.ãd¯C48¬Ê§c2Ë1(ílÌ4õSRšÛùºûáU27—ÌMEXa‹û„6tzü½b’C@þ—D‰Lv´p3¸¬±:XÒ·- +m-®[ØÖÔ¬[ /OÛ $¸iA€®9oÑ›ÚÕØÜ£Éé¦~)ÖøÒ6-Ä <=6'¨ OO0ÇFܶ +Æ_ˆ ™šÍM ÃÏÁ”@gâ’žƒõð‰[šó‘ÆÝÁî¦æ>î.<žíLÆÑ#¬qÚ*8¤ŸhM»ù8hð]·ŽNˆÖ暘7OÌ;˜`È=N«aÚ‡æªÅž‹'ÚϽiqÏ-ŸâEãð9˜›ÝA½Ž^¯ ÏCŠA ¸É±â>ãq¬?Î%îÕà'Øʉi†££<΄ßz”Ö¯¾€;j8ÈW ø)>xǺ „cI8–i¾Yš y:íÄ€Æh5˜À.Í7àön è´Søþ$M0âÔžD GS‚綾 +¯ƒÂ¤’ñŒÉJ:É36`a¢-i¥ÓŽ¿à™FxÖÁ›W8~Ž–C ¶„Ès+覯WùT§r•Ï«ü ®csUI¾ òÂíkØþõu‹÷æ[as>õ´Û +Ä·|×p~Œ¬žu*`ò ÃOÂ$Ùa/ =x«³Íe0 ;(GÕáeŽ™™´]ƽÉäá°»žö¦z/]’œ&K['ÝÓÏ…bßòãëz Ïu¶Éš¼†¹’(“G ½³N"z”!y‚°ºÉ.KF…Zï¼™¨ +Øg¯¶Àéô÷ã„8Ábö ž«ÛóÖ2 +äPç-X]€EnáT솀ZÇOÔ@b`óÔVâgRMDñþeüi‘Tj†:íW@ •bíG×b¡{÷@ ëdÔɱt8ÉŠåOÜ—"ćQÙ¶/}ë6†ËˆŸ—Çxú… ”q4Fõl¶d—K·¯±‘`ÈPK¥Ü¶î­¶‹´l #ä/þCo© T«MÖ© œ-§P‡ÉÏèÉ“‚Wðæ“HaÊ6¿>=ÒOoây›I»Š•‡'½+ÖA3Q¬1JTDfžÃ8ˆø¡éq^Ø¿Ý"Åò´*'„ +@È3•Þ`6ÒCNAÜ fF‚£-»¤UdÕÄæ|¥LL ^¥ªN¥Ã\+’Î m' ·¡ÜYJ×ódŠ2iZ&]uPº%í!FMòe†f(Ò–IŠ_Eá)>à‰Hý1n.‡vˆ‹}ié¸þ«â1¥"ùã1ŽNøïožáÕ +ÕU +µ³-¨S•«mI{Ï…m:JfÒëä"Möù‘Í‚ë¦ôãe=ÓvÖ36wÏHSï‡|"ÎCD0`‰¨ÿU°¥&–pø¥â™©gŽQ­7S§·I„è,ÇÖ¬s¦Œ40H<\tÒàÀS˜9E% Õ9†f´/K gàщ>¢" +D]„È´å`–L'óC»ŒÁVãy+—¶Rž÷žžcIÄÃU+ÕÖ)ÕMÏÙ¶î9ÈÌG!¦cád”©G‹Û•ÛlU0ß+ÉÌ’è5‘û…\ö»#!^˜äƒ«Ž5›øÐ:¦gÑX=¬8ØJ™Ø.mÍ%KÏ\J_sÛ7\Û`”bËãè+ÎÉØNWšwºR)ʈî4ñ-uDÄ-‚ßañï7Ø–(¯Ž°†Ù®÷ùcäV1¥ ÌH2y€Çný¼!©ÃhT­ÅºêŒ5CA ¢“Ü‹­€Ø>ŽäYv¼mý{!¨,ò”r]À´cŽZR’ƒe×g!Ì%¯|tÙ&ügde!|=Çóé &d±›Z­(°€–°©¢çy¡µ¦Ëš*g¯Kî­rÈAÔèÉ=YÙ¢¿"0Å—–œ,B’`–P²Vêß»mY™)j3ÙÐV¸,ËDÄꊠÛU¬*IÖðâLiÄqk5ù<§ðµ#³”ºsÎwç6ÖiþY–p:DÍŽÅa¨èÄe;Ê@âÔ¹ 7TÎZ‘„ðP”Ôû*'JíüsO«!ËcH>…|æfž1Bk>»yæõ )0{ÓÅ]݃晈‘ð; 2—Øœi@¯ÝD‡`ÍyµR+xÂÏ@ç Ð€0Ž¦á0GcVknTa‡ins@Ãaòë–òbzC6û¸n I:lÑpz¥)Ýô ð\›ÖóW8Ö¯~*ÿÎÏΓ&º¼â÷>ã*˜CÁ*˜qêÚjЈ[ÞþEܾô>‹¢¼jÉÓ¼§x,ŒqTØðST+Üq´øóê>ßKŒ3­S³“ …¨ß!ømÁQv—]lQvCp‹á|IUøE{ÉmŠ,£V»úP›zøk»Ðiu“u9™%FI5{†i +Ÿ•9MŒCÛ´Õ-iëVî4‚´îÙ ž5f=q®@LÁ™§ êj~ÀgòN_(å`$Tživ²|8$KB[²B²[¨lŠ7-5²Ãêr(˜%£]” ªmÅ."˜öL?‡v¤ZÉ‹_#æoA|ŽÅ‡Ç× +—C·…Ÿw(i„.Ç<ÃõGEõG²s´{Ä|ö‚|ÃÆq{Co>P0¹ +Óâ[0-êgb\Q;…ÚÄÆì-6FHªú|O¼Æåì×gtOcOÄ€\Ö—4t…ÏÍÅÂ'åM=^zþ‰CŸè`ç¨[éOyço!Ü®™—Ý{©i<’¼0xã +_¼ñ¡EõKS(biT+Ö½âñòBFI eœlÑ#5ÃÞaplñ¥ÌÀ8WðåçX{|ÞË™f­}‘)–žC+þ`b+Ì솞¸á%h"—²öÙ˜„ãObœðaíFDwþw + ?/²¤EÀ©UålÒ8Ûã¼­Àz<¯k+=ddoŽ·s{$š"¦k^ú¾zÃ\0G°6'c'?ˆ:P˜=ö)M•È¼pö +(àâ‹ÓÏè>~â šê\Á¯yÊõ?Ó"Ãö)+RßxÉ-‹%æ¼Ô¡\zƒoa›w ­ÖìKS]=Ú‚U5æ¢!0(ÅÚ¤*¢Лx ?ØW_ŸëZU»Úýu­*¿™eQ^Å¢üc …1Õ*­ëæj¼jKL£<÷„õãõ.™5€Ru +¡…÷ê»ôÓÕƒq—äCíùxð¢;T¡È]´¿ÚuU€lWÓ4’oS,,äÝ=Õ“ÓeJ5€F¶Í¡ìÉç¥Í@UWMÐf,ˆIfóaa./û™ïÚ\³ò97 «'ñò¤Kõ¬ m#‹ ”ƒ!CWô€î× ÊÊʓǤB5—e¡¼¬ÓÊÅe,Ï£«.Z‚™›—(»®ó«A69Gv®,÷{ÏõÎc¶p˜ø‰©Uxš-NášU˜”ÿSÞV°ÈKJø=Ôò‚à˜™@y‡4K}w¸¦}©ohEB¼ Õ-ú†Ãö +™XÂõüÞC~¯1ØdéáÙmÜz{¬Öy]C[˹`R1ç*Kq§$ˆvq¹$¸Î3‘åíFE’L”þSMy»"¿aV( Ï|ûjYŒ‹bÛX|™KÆïaXÇRRé[PB øI³d 9,HáâD•i¬~ÆBÃïa¬[Gå°՚*%—/qø==sÆ-„ë{îFïÒL»P«›Xb³t`?£¢~Ï“Ö 2ÝÙyÑc=пPˆ;šYï)?x½j™F.7by#¶f#þ¼þ# ß`¹†?ÆÊÚ5Vݘh/ ŽSI¿×^?2|Õ*SŽXwz’þ² +~Ÿ=hÍ•OG=¤ +TIbü@—2ÔDQ’HGDåß‚ê"Z¨‰Z¦¥¾è4‹OЊ5U[ù¦º·\cÐ'T ëHE;ênø6Þ +;ºiîà<­.ÅL›z°ˆu_è _è€Hà‡ÈœWô¦äö“OÚyýÏ쿼­ÿÒjºÂ ÂcJ‘‚P¸3† º“‹&ÔÐÊäDHÄ´ê ɺ³ ZéúnGÄ*¼M©¯„«¬HÒ“—=íVµ¥ªN…“¯¹q œA!¢¾ÁCKºA_UÛfoIñáˆ$Ñ}÷LReå¡1ÿ_Á#Üzùà´š9øfüH}+‚@ÅXɺíˆkºdFH<–LHlÎÑG¤o:ó[FLã2/Yô ÂçŠüÀ]Á´²7ìnöM˜|G ß% CP>&_a·è8—Çç}Z©I=ž›«ÑÌS?¸YIS豺Xªe¥‘ îaòAÇNrÊŽ}x7&á±ÿ{/x"é£ûѲqW;Oôxï:#Õº;Cq]kºÜyr€âž ±×ÕŠlê€Ç;·åí²©S»âŠ|‘Ö¥òߪàr¢îWDƒsä KX8·)jeãcd*|ïôŒ{§¶Á©…‡yã”ôg`s•cŽœhÓT„)Ítñš¹¸·¶jœÐ*7¼€·Çðk¦hžÑÜ" PK¬ƒì´¿w€ûxÂoÊŽÑ3q¯Šx‰lé©Ô6»#¸çDwBqÂ$ñÂ)YÅXè¦ AÕ©ÿvíUt½-P Ûb\YHÛ$åÜÇh%2ˆZñÓa$nó±:£K§£m䀼>pJbC8O\5 +ó £Zçjö{úë8=†d%Ù&Ÿ@M\¾dÅ(Ë5:úîsòÝhÆ\µñÀ¯¹á4x—²Mˆ®"ÆèàšòÐ!‚# {_”×®u‘ÊQ_Ãûn‚tõâwÔÁ øâÑÌë;†§ŒgD3h‰2rнł|&·¦A'ÌŽT¤L!**Îm:ÚnÚfðï)R—±¥Š³1ÒîjÀTE’ÂêcÉ¢õ¾Iä4"¹ç1\¥&ÍŒ# h7S[@™8’g’Aÿ7'0pôM–·m@;¢ }^Æ™9R´E¬_za݆öžÂnkß°öÍíÇÓ:JoøV–#ó,˜ŸŒ²Œt8ṋgt½œ=iôLÖæLºÖf\Í”:­·™1G%9î5™Qg$5€;‹a“øgF“¤ïXq³ ‹;)ÇBÕ÷ÜAˆbë(;â]˜gG9ø?Ø㔼I7?EñŠýÝ/g™åâoù–E+£éT7ï…A™ g–¸ GÆ8D³y×òm ÄÊœûx1©Û'šjÿª1í5¥LÕv.¨æB"ïùŠQØIL +¨CNc8_1„wž<%±ïù!‰°=˜y*ê4ÞryçBdJ•,Ã~l[ƒ†S]Ñs‰¹ª”ªÆ~”ÎÌ3ý_9}KýËâÁ=Ž°Éî¡;ÊgøŒîXÙèqVr¢[²âèp4'¡eÙ ~µŒ”‘ìåTÓSý<ÕT;©æ´E5—”~ᬠü¯T¬©ÊùJ¥V£®)²>·uá9 œÓYÏù ÎõQ)—9EȬ©B–•yFNàC.n =îu¶½)äÒ‚o赉ä’1o™ÒB€TêkY`kè°ÓÖaŸá'X뙳3Éy¹|„ãü˜»ùBd¼Y ¤¨”U[V‘ïMû•×’2–Fª}–ñVæ³p– º/dèK¹Œ1ÙQCA!¤¾Æc” +…‡œ}Þå·Ûu›}v”²|o¾û‘‘¾Í°‰UAûÒ–öZíŸPvzÙµ)£·¿Ý±G÷ƒÊèVQ‹ÛWØrya«3ù X#â +ѾÄæTˆq÷ê…ZN†[1¸U˜Õs•‡Ü7\î.øÆ •ÔêÕ6®¦té;gÆYÒȧhsÕª7Eo¯â§©à^W–K‹cìŽIû+sx@=ý©P²¿Sé–ú^ey~L!8y:‘SnL¸,Þdµß "&¸cÜe‘xîÀß-®ã£ïJüEJW¦ ü5÷F¾¨¨¾93JÅ ü³/hÙ…1ï÷ j3±¹™X»ÏL ›14ÌáÿÐv«'Ú ëXqi5É?; ·ý©–·Œ-¹Á ‹…Î9k½ä,´/RæÅ8Úò&Y^†üfyÜÃ.Œ5œÍ2] nC<8TÑ•ÿO¾X£15õEî9KÜÊ’àÿXª‘ +endstream +endobj +148 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +149 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +150 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +151 0 obj +[300 0 R] +endobj +152 0 obj +<< +/Filter /FlateDecode +/Length 5637 +>> +stream +H‰ÄWkoÛÈýî_15ÀŠæ<8$ÅIœ)6›v­ šbáø7–ì•œd³¿¾÷1ORtÄ&EaÀ¢¨yž{î¹ç?Ù>Ü\?ˆ<~-Ž>ûr÷ñAüôÓÓ“gâèéê¨u¥Mÿ­5b{}tüâ´×»£ã•ú­J¬®ŽêªVV¬ÎÅÒ?}®jaüµU#”2•éšNè¦jsÖG ÝÉÕ¿ž¯Žž¿‚~‡`çÂòøíç㿬kqrwô÷£ãÓû³ žðç³ÍµX\n–/žÊãWÏ^žÕZWWà©>à9ŸsŽŽhn£Ué|­îª¾ï🋵\ÚJ‰Å™Ô®2bñ -\fq)u¥Åb+— +^ÞH¥ªßZ|{+>Ê¥VU/ÉŸð¢®]ª‡œà‚V,N¤©qƒ_ŽT ¾Ùâj·„ï°ê¹\:üÎk4¸LÕÅ ÕáçìopSǧ gÔU+;ã{|sgP¸çiè2âNjS>IC[ǩé•x#5MÝàñqÄWu¼ÿJÒ!/ÅM†¾X#FˆÁNì$-÷^*ÃÇU°$`¥Ó[©k±¸ï.a nØ#"wø&n/qWƒG82ÌÚˆ3F®áß ˆ¥T-nyÃKâ7ƒ·Z6¸ÌFþkõ×ȺÇyÕ¼*Ó`Uã +ÆÀÖ£_»Ë×®ênŠO Y0É"îKÕå Ýym›‘vL[ö^¹ïMAmð{‚q °½“}678DY›{Úø _8&$MOR>ñü"µ§QØÑûΧ/œ!&ÏHU·¸àœ·}5k‹A:¤;Nè{I{\âÅ%dŸ0ŒÞÇ|ºåy8%oñ§ß+Ýî .ÿEÌà`_òÄMñ¤1èû†yêA!¾NÄðäç|=§€Z¯çJ€:€Œ¢²ÔmP—>Óº˜œâ +Ÿš,]A^h'y)žKEO¯oøýäðõ¡å÷~ÂNHÒÃsœØñÄ΋D %êyI¼&¾oý,¶0Õ¡XñuŤâA’°Þ-¡´õèWî+1^æfPH2yäçCK¼ì…½MèÌœ¦>D½2ÚÌP¯FekSÍo¨xóÃ^‚ºn…ŒD€L|ð2Í9½¹ Ž¾?ï¦KÃ*V#r°1ó©Ûùôåø?840ÒÒÒˆ),Wûʪ•¶i8ó}e ”-¸aå§Í@^bŸ’ÝQŽÑrZ¦«ºÆ(F« ï0W*qŠÕžŠ£"Êâaým ¾ÿTF4Ý‘“…D /Ö2f‡aý é¢-~¿Æ‘˜±’ªÂZ*Ÿñ< ä²E0@8€D ’;åIÇå ¤Ì£Î ™e¦ø7´5xBhÅ…0&ÚØ©Á·µx«µ’]Í9ä£÷A'‰8ÇêGî>[D’}Y¬|^PEò†1cYL +íí)ÉY“kZã +10N¥Åy¦w^¶À ]”шõýÍä8”˜T~£-ŠUÞßφ4£X^Mî¢&Š‘ž´)J& ´¡þN˜Ô¢í²› 椻ñ羆©nÏ gË¥Sõ“ÒTÃa#•‚í)^K>ÒN%2¬öHüΗý±7ᙕ¡PúÐLåë'È}ô(ù£wÎ,LW ùÁé\ÄĈõ¡XsÜFÜ•Æâ´éÔž$Ö‡ž€ˆMeXx©´çŠo?B̹“µ/c˜Þ#Ln\qE—û‚ìÎðþ:«Ä3HÓ *[=Õ*6½Æ_up\Þ¦­‰•]bUúA°à*úE×\ò4eMÇ%v,7³ "ѾÞ‘ýAx“«Ò£æ—¯)k +qÚIîÇ*1”Ô—ÈR‹öÛQ6¬¼ù~1ŽØ+©tzK +ý©4¹v ½”l”ž¥†0…77z·âšñȺ¢¡+“DyØìe·¢B»ï¡Ù Ž¸RX¦)Ò‚q‰¡Î€+jÆGªÄ‰³×xb‰és׌u[á‚îÁ7,Èœó#€~—¤ú÷9òA/Z´=eãÖcãY£¼YóRÈ´½eŠdD ˆå.õ-ºßÞ‹múÁ—)úýBe åñÍⶴE1“tq¦r‘.§¯1S`÷¿IC‰÷v!Ã9ìÐ5HÁoL»¥/6{j‹ófw‚> ÄŸ*t|ðé¤%ÿüVJKØ%ª‰±d~åĸÝ›ˆ=Z¸ÇZ¨äF\Ôè^¾ŽMJ­Çe\sAô)7»ÒÍ U÷Hs–®n»¶àô/7w})oí$_mŸYðY¨T —[ÃÔóRØ‚î„÷4Bw$ø1”üð~âõ£ÉÝ47K¤­&+=C†&×Y³‰ñ]Eòko4ÉM|&cîêY3ErØ Ø=V$?8ʱËá;Ïm f&¢ÊúDäö/L~Ôc‘®þy8]ý!¬‚‚™se±<˜‹N\¬ÕT;ؘ&óð™s\g<÷Dúåý…êø™«Lª±E÷XÔÓWÈ•œfâs$tXT#™&ã¬é { +î#òêŵ›טMa@Æ»X,†Z*n‡|Ýr‰ŒB IYM§PæÜ+E÷†nµ'!8ì”ä‡òVÑã§c.Q3h«‘ÐŒV3$êsYóuOÀÕ»1uþÔH< þ/ +Ìwë +óÞî3ïï.¿Þ¸ U6Ë ºá­÷__Ä;4Œ +Ÿ²\]~f/˜€ÑMF„ü1–͈¢nKï°´^Žu¼(;ˆ¯„²¾|Mnë&ø?ƒ²v@+¨Ìç‚?÷«bí²†€ß­%u K’•K’|ÎÔÆ—7ÅY†¸˜ùà«X¸E`ªXÌ9“ÿx¥~ƒ£ŠÕ]¥Öþ.ø@©â3E§ëXg«º±-_§•=)`%Uq8Ãqž /H&ITðÃK{ 9ꯨ7›kž{u·å‡Ï˜Æ;t¨÷ø€ØmŒ;Û\ø‡5¤i¾|¹‰ëßmxÔ ¨\Õªf¤j’qƒˆC‹PƒêX ùjZË ýú6‘”Ä:Ö¬X%‰Ó¤‰6‡™í +ûuȧ3«pæ)~jPüšañ›öÕTŸbýeïB:›QßJ˜€‰Í1y§@ø©Ý —7¹º(x¾1Y{ÄÏfð¥=À„åì˜cº҄µjc¡Ô‘|{[¶mÆ=>™¢x¸hyQ{ó~Kœ`¼Ù„0ú59šà¨J ²•¬þû(å$RÐ~ô{³Ÿ^ûu;ز=‘¾”t‘+ð+éb‰Ð¾ßl† Îù&"•C-U´kt>{a&7—@¤ÕÔ¤¿  ÑΔ¦æ öºu«QÃS"éQ:ü[?0íc°Æƾìnâ:$ @PõM@f(¹v[6 ¼±c8ñ0~OF¦./J5‰f©¡µƒ^3Dµ/‘3‡Gø66JqÄ ‰j(€áÁiisrÌP©V Ì‘ÑSì«–Ⱦ¡È'Jz=,!o¨¶QÕhÇuHöؼܨær¼ªÓ4Uß$úE’NÕ·4ò¿Ìñ…9š5†5ohe^â0þÕ)b/ÞJñ‘44wÞÑÈ“]טGcõFïA9Òã‰ÖÈ¢ž ‚ΰse»çÑ{Ù8ƒƒEßW);UÎL¹i’º•`l(è°3iÏÌ18â/b„¼gU¹ÈàÕÊ…„ºlö$G‡H£ :”A¸3a•–HD^"ªaiI´$‰'_¡Ø¨«ó·„‰mE6W[‰±2CNOӮȚ+ä 'Ы¶…ˆf®©$ë ŠÌi4»=î¼~'q\5¡†\ã~ ãLɸÚN1®m3÷žäÛñGðìº0Å^­ ûÜÜ¥ïÒÛqbõ$´ã!‹²Îªò­D_~1®‚ìýó*ƒã¤j©µYu§e“]¢¶%¯žÃ?L§ e_íjq6©Sõ·„O¨œd_¦”äX¤SÊ°ª§CúyO4f0É–ËN,ãLfÅc`RÔÔ‰°„‹A†E1£™²y¨È­$—<»G‹C“YŠî…Âú(ÿµþsìÖ’m +tüíåÒÇqEá¿ÒK5 !º«ú¹ "°9A”ì¼ͱdÄOÑ%ÿúÔ}ߪêÖtÇÉŠäp¦¦ºêÜs¾Ã)¾_Pþr^Œœ>Jº½yŸ²Ù­!ÞÔ½€¬Žkf<À\^/g˜k*˜k¹â°:à·,U9NEvê2_cÕµô ÝÔçgX\§êž‹¯Aô¬bÊò/…ô Ø¡R„`+êà—¤Õß4gÚÁ]‹FØ’ºFçá»Óåa/–OiÅs:ª§À_3œÁü¡Ûy>Œwˆí€Fï±´ÙõKÒ¸ý) 9ãj³SÑ–xâàxýÚâYXÐ5|VJÑýí¼¸¬Û6Ó¢ý¼lÀ‘¼³«hFÎ|ýw>»ãª=ï{Ød¤’(µ RíÄê-·H6°4‘z‚=ñ!p#´:êý•üÐ>{¡B—Çý”Çýdqm’hP˜täÛ Ku³§à¬¶N¡ô^›äfÈ|? )-ûfgz‚!Q=ýY³†&ɬ$‘á°”±©­f Ö—‰¢Ij!ŠÐÖ¯ß8ŠÕØ|ă ßÂ8ß-CŸŒ?|ì:2þé°ñ/ÝæȆ©OP²ôÙ¿hšãëö9àô%*Çé®K­(v“#egf-r‹]e…cùul$Báýè“~E›¾©ÙÒ_Ò&¬N;dcw«{Éz^/4&ãõü–^yý¦y¯åî2Qµú¹pƒæS$»Ð`~O3,1¦K:ã7ÕÄZ“Œ#?v•ÃB]Â@q~P–XÊ^÷ +kpÄü;šÿä¼ùÊ BÆš£] ¿ã-Ýÿ}iÒwNö®Í2æQú™RP*'=Ë +ÅÛàŸîBѲ’ÝNRyYá,0â{úù¾“™Q÷(î°P°Añ›Ú¡(|$=¢’jTk‡|Õ‘žIsuo_)ÀR8.´ŽW>”R[”­ö7ZÒ;'öq9äìÕvFÎc!çaÚ“ó¼8àN¡‹Ï÷NoëYÔ(©,cËéTxÇÑËÆÙß…<é'ø߀׫îø‡ó¯ì#BdÈDV Vo+þÊÉÄ˲dÞ¿Ù:†LpVù˺ÞõÜöd~$ ¶&¢œXíO˜5¾K& 4o“KáìÄL„½Ÿ0^ÆÖã +Ž(Ô èŒBç<ÀÇ~O ©qÔç•föú¥×GŽÀïè¿[1µ‘l: šÌ²ƒÓ~PÉ°³P^YêEÔh#"(ïRS-#BȪöäQk†µiÄP;øœ£ ÃË<ஞ%ï>4–S8ø8Ìö³¸˜ñ½Ã³ÔùêÚÀ µ.…çÅ]I «ãz˜“¥H"œ¦´éÆûÇÝ«6vðXÿ`óWïXï\Üå¾(*ÊÉÃò7zù_p%iß4ŽîùüPmúyçÚÙ÷õ)m€‚CMÿöE;`ÕµŠÂvØ&b~ñm{°×Ñ—cªFo‹Ê=žÑÎ`Iœ¬<šè'UƒX^åZµ³à{ŠK_îÕ­)ªÿŸ×šV·›¨išˆ õ@žä‘´þÀmbÞÐT’‚¡}x]ïêÄ)]òšª¹÷ˆ€¹ðÊ´Qè:;ìf“„/ "kSÍî +Æ-¬†2l‰jW5ËínË-EMeÈò~ g펤¨͉]û’óvkKº9«-Ι¹ÌNôôºà}•Ù]¾MB‘^Á©sµãGOÔÈ¥¦ø¾´EI3ÇAtQ_³â9] =Î×þ ‰Õ|¯¤ß^¿q Íï¥a<Óë!‘ê‚Èœ‰ªúZá¼úô:½¼\ðîûžÖ½‹zN'lk ¹mínvEàŸ‘ËÜhhœ.ø²0ƒä‘¤gBñ#¡Àq_&TBÑšnˆ|äkÄ\½v¶ˆw]c¨èJïà“yû‰2Ë°¥²6Ãxžxö)7ïtyùóÇé®KÌÞOƒCÎWôµú½Æ 1Ö')Tʲê+£¼ÌÂ0\4…Ò +ÜÅtœ³É¾_7ÆQ9жDã樿¦ ÆBóÀ÷ïo›ïz"ÞsaÊ€¡†³$³ÁC–eëó 0ÐüÐÄœk"ìz?vŽøŒcéÄ™¤%Îÿ ?gk[û¥çP©¸‡ A'›k,Ÿ·Å¹šþh1;ZÓ½×чޛ8ÚëG¼5nOÄõ±›±7Κ·Þ4[ÚÙ÷<åf½î ‹ÇBJgù©=Û +MòŠ;µMwbtHR5½UÅM:¢SÿqY-‚ÞKêLЯ™dû´äŽdÁÏT²JPÌ\6ìÜ̪îe£µ°!®6[MÑêeLàò*ûƒ&ë€=M<;†-æggoæU®#êèO|5èKgg&¦ÝêQçeÞL øLÐÈ|$‹® Ã×ý"÷϶âñbHf›£½sJù7®ÆñÄÅ¥k£>¬Ã¥ë +{‹{ZN¥Z©æ²®fÌajßÙ`ÍÆ;ÕXÙ¬»´Ëò œÔGðÐÞµG¨ñ³Èô,évÏ-e¦ÿKÏ8ÙÈÚ7›<ÄF€¹}¤ÕTÛ9w¦‰\øæø+ØöC¤oû–›=wœY_4aWe©ÚXb’,6I2‰QcX`-xDê±i®•ÿÞF-œìŒš0&§/hŠ?"Äwæ\áåÑ3Š ¸ækI°á¢=eû>8I¼¡'^öFνBAGÝjJššøPyn‚Í_fÐóº;X|d^ü©ðÎiJ›SžJ9•œ.rZ£ãô,H0ÓoºØ­±Ü"K4;},=3ò„Ü Ç36ÕÙ‚÷Iê©%EmX >Ó£A¾Ýõç¨n¨±*GcâìQ›­™Èa½pj¡ŸBŽQºG$è›é z4“ƒ¼mìÀ8fpŒL†[¸‡î¾¢ÏãbŒl­;ZœWWlÜI/ZùŠ’â¶CÃâÒ®ôú÷Gfþ„³Ü³Vz*%¸L²ò˜y_':Ñ•tk‹þFŸÍÈ–ý‚.8…t ÚZ·¬B}#¥åø +5 +ÀÛs}ø½ÌÅ7À¯×ž Ä*†½è¥2!òÝñÿ$ZÔ»•É`ÎÎE÷c£Ø3 +endstream +endobj +153 0 obj +<< +/Filter /FlateDecode +/Length 5188 +>> +stream +xÚÕ\[s¹•~ׯÀc£Êl5€º;•J•ÇöLœµœd¤Édkg(‰’ëâ¥$+Þ_¿ç‚;I©åx*³å*R$Aàà\¾óÐû/×wgË“»ßÿ~ÿÏûï–_nîïþðñÝëW{û?vâüV|w´×‰V+Ú¾7b}.ÚN)qt"ÿõ°ÿ}'àùL¸v°¢ƒCkE?™vÒFƒÐ¶µÖ©]í5z’GÿØ{s´÷æàÌ 3ÁÃ>¼ƒ‡sñ?{ûß_uâõÍÞ_÷ö?-¯A¸wËësѬ®?|'÷^½}-ÔØõITEÅJ|¤éö¿W,˜êZ7òGZŒ¶Õ“ÒÓ(=¶]7ŒC‚ýWs$i^Jm›ïÞI¥ZÕ¼Fª¡í›ß‰å¢oMóFÂÍ+© û³\hå?z-ªuÍ[ º›÷RÁãâP*P@˜øì'xúY|z!^JÓð÷¤ÇŸÞãœf5¢LðøÖ¯ó^øYh ,(ÞÈÅÐüýEªžPI¦PˆCÉsá',ȯa;‡Bþ÷ÑŸ‚Õ³õzýâ”AfP­&Ó™J‘È ü¨t¢=0‚s“PµF Ý í0j±P®ÕV¬WBƒûôVU#T6âl¯ÁßÚ©ëá!ŸÕ=¼‘ͪ-8€3ù¼åUŒ9C©5KÍÿþüˆ=Ëv +6¢aÏð‡•VFœ\‘ã]á‹1p)÷Â=Zߙķ°it¯+Æ{l7ÁËlìØêQUcÙ`¯˜o8{ÇJQN;=æ›ÔàÁ¨ª-÷SŸO¼}쯡’ÒƒOW‹×o’» +Ô’þÈ:B™¾Õn´#Ê“À¤0A¨ÝTñóƒ˜Ú‰çPbRà `ô¡³­b‡ 49” c(î$mÞý¼;â*y‡q€±&¢­©–ÖÓÔj5N ôzuX”FÈ‚Àq€/Uó¼ôðoOˆT`äá Q?5jðé€æoöc +À ¡Ü_¦ÞÉQv‰ÏðUýM.@"€xÓ€ænx| Êië=kŸ!áèˆë>ãð_` +cF'Ü ÛÑCPÆÊ£›¥\X€¾^Í–mJÆ@IÀUH|~Ø-Ú$Ð.J`o@“à.Í)Â÷ج.çJ¡ºR +å¥PKÑ[ti7 ,Å+XÞ²"Xÿ­o› ”Í6Çdõ±YÏVR•j&¯šéQ¡ h„L q‚ÆY­Q¨¤±à:KmjÄ5ä*ÛÜKë +åsàŽ0p®|:É—ˆÆN¹ÐÇ!þ‡)(Kwd2ÒÝË d»–j½Ý‘ˆ /ìdj¾ˆ‰z;W”;Á«k¤(:9c}/iÜ ØRŸ…'^#Eš•ø¥‘“_u SÂ$7t “4w‚†:ðß……©4zÓ +>O‰ \6[M¦Hð…rô`ÚqÔ†~šEžä›½ß={T}gŠxýÄhå•úBˆÁ!X‰;‰„ì±™•x }¯$9+¿øþµ8FŽT Xß +o¦¤-ÈSôÅes³®‰<}D{ªæ9[Ŷ +_½ù£ºBþSZÚ°¤m¬i!Bnp«=Lu ˆº@‡X^Kv>ˆ,EŸ9}‰C5úŸaÿ4šûµdš»÷5AoW òY"(á +f `GWKIŠ;Ô´ÂTrA¡sÍ(zNÌø–FÏ{xX§ Œz/Gï+qC®¸o%æ»9¡Ž!}E1y̎Ⱥ& À!nÑØÑâHtNŠí;ˆ# 9s÷9>n¶ ¤{)Ñ/Ö¼5ôŠ©9ç˜R$ñÎ>Åm„@Ñd 0pƒ_„B!uh)Å54ð,a>^JD®~®¶ªôŸ\u†6Þ#Í£&º—cÎ;^â‰!¡ÉHx7à€¦èÀpº>¥§Ò:øÁj`%Â'7gôt‚õæ¼DF…[GŸð ™ÍEfn\w3l "G‘Cv=’Ì nw¾ª$‘£ø]¬é E~J7sÅV3ÄÊïÉ8‰ýúõ$!JL¯®‰ƒÞKG‡ÐpLVy›Í´~>>cƒ1bœB÷ÀN´æ‚€Á¨Û[âÎÐ+†æ5õ-Ã5ÄuN—Óÿ×ö¨wxEùþ¼f–½âÎÀ¿yÂèyë8šÑqì¡2ÝÓ ‰„DÁÌ3BJ›ç e?`7:åm…^ʼnÊxÖ„éž@3ñŸœq#dj¦? ÊÆ5«…øØ pÅž÷ˆ(Íé$zó áq ­pGÌpxKµ¢,1ˆ'ˆ(&ö{šutÿ5ÐÔ;[@Óô4IœE)ày€=ø&R}&ø‘â ”VÇtÆ‚Jtö], ¸8'Ú;By$Eðíû¸ežîÕõâ§Ã¤ûñ„ÒV鮇jîGÁä1 °Âüõe¶ q¾Ìwv›…r©ª +ïè x:J‚RÍa˜>¹Uq÷W†í{ˆv4˜TÚÏ2Ã3t2Vi/‘~J¤ª´{EXHõ¦¦z“¸ùò1J‹4Ïp1£4Á!—£HˆÎø=€N l°Ç‚ud†¢›Ïôù’}áZ:ŠZ˜ëî7}Þ«:ñÜóð¼œÛ.§²g'L&¾¼úä);£>Öx Ǥqí’©âÆö3ŠG?"pýåAÙýµ ¦U™¡ ÷xÊ'ñ¾T…éæEbU§½“–` !ûŽï£*ã”_b>F­xZ‹¡yòÁoÇ)T³ÊÜÌ•}žœ+ºš%z]M°}U¥ôLõsr@.rU3½B¤3߹ƴ—ᲇ½ŒxÞD7DÍ×Hþ1Wv3O¹U¹$½>õ‹*Ê£óÈb%A?‡‰ä²TÅÍo¹t«¶:/օ˯U½ÍÛÍ»*D^#ÙíkŽ{iQÏ +«%ëE"}» äl¡‡¯ ʪ0yFÙø+ÔƒÕ¦ÆY–¨ —KIXIþu©¸*<þW`¥FúW ;«0¢dŸß`%Ö»J¬Ò§úÊ€ï­FÜr“ý cæcÙ1_–´é°ÍøÃ6ŽG ŸMf…=9e|ÚGt&f¢UË%HG„_;2xxI鎷Äf> Æ£R&ª]d¸7ƒTv¼‚l†]`…ßEú,â¢ÀR›qÉTè„f:¡€ Ó3s»wä[7â¿ŠŽ+H­é´€½¿wMq‹Íe ¾€¹ ™‚TâxÖTeQÿG#•ÝÜâH›¡i +|Œ ö³¢åþI§m×È!.yg7\¯Ý" Û¶‹{9¡ã P +TŠ%È wÎï”<^ÖBÌö +S†áóÆm®öÊ £w†¥GáKêÈ1<ÂÓ &ªøÕlIhÔ÷GœÊsÌÄ3­é‹d +…õžáPô‡Ò‹ŠÍ 4 ¼›LIoß Œ2ºœƒÀüž+Ê#~õQÛà5Å'Üþ\#.aŠÇe~ÑZË%¸ò¸`³±þññ5{‚µŠá×|‰£91ÙLü%ýU0’*EÌÍQ¹àå2ë1¿ ®¶ÆáŸ)OÙþ)—‹*FÓäFQu +cuuÅËV<ßMúüÆ‚Q;dS^t±m0 |‘›I·½ÂÔóÉ_FxÉ…î>›bTh8qJÉa‰*§VÇD>ƒŽAÁ|ØMP` U5¦öVÿ„i¼º 9ÐÙiËáÑ”pïň ˆÙRÑ Óf޳ѧNEr4Ê7¯á„*q’âžna0™ù ¶¼˜Ðd¡ý¹%ŒÉ!$BûÛ ÷vÏö“œ +iTÊ—ùvÏJH˜f§Ýí€×W†Éß´K°°ä¾ᛡ«GÁvmø>·üÏX'@8 T`¼âÆRkJ˜Þ’º÷5ªMÉÃçþ¢MæàA¤m‘ã­Ñ±3jÒôƒ¤¬‘܈ÅâÍãq-‘m¤ZÔ €UdQÄCÉ ΉB¸P~3‹]NŒªPÌT<¤,¨T‰Þ¾ó 94­J‹1‡ðNg;…«¯/ípŠÀÛŠ|êO”9ZeL:U=lÆ%Y‚åŸN».xÍEÕ6Ofy ËÎÅúj×òŽå6Ñc®o©Q@‡|W,>ÚÆgÇ‘ëa çÏ9oÉ?yÞ%ôˆyÿÿ¨Ùo‹td6(E–ר‡ŠÓѵVªß#h&ac–XßOPz™ï%UÎ÷ê¶ú „a"™EË•ÀÐÅ™„å ]‡YIM†DM"‘òì?<Ü1Ce´f¥CÏ2’/2ÚW^jf£—öI…be‘ò_|Çs€)‚—­3T¤Qœe˜#Û@8#Š`7Žä1elŽ÷CQyx« yLí°ÛÙéP°SûDS,w“±(Kré§*³I«¾p‘Gn&USO9N=’¼ ˆsf9õìb¢Î`ŸbÝÌ÷ºúE."<¥žà‘B¤ôˆÙä#¡†©¹—E ß‹|E6››9Ðt¦aÉ H·ô)Ö¸ÿŽãã2Ÿ'/JNvÆÎü@!׎ìcâ'¾I÷^ƃþàVJy>–’e”È=ƒÓØn§Çe>Ñu‘¥Ž·©“(I3 £ô:•¦¨_(Ä>" yL…BÄÄç¡ðÉ6‘eìhC7¤Ó…oŽ0ja'WN¨™ÈötÆ;"ÂëF—3©l&ŒîIZÇGl=vÚÙ*U›·Ws½*¼à­\?MB®`Šoý­OÈçxÔšð-×\f²+}‰[. ¨ŸÇ×Í&fÖmÉÛÜœSú³yáí'Jÿ”ƒ$eƒÔúpäëã£ow~KNöcKG,’9ÁÝ?Ž»,®d¼"aZ(KÊhR.›km=²KCÏmkrЧ]ª¡ÒÌÉe†ÖWäiÀbüáDVA›¸Z¤¾P=l¼¤ôŒibûê28u•ìS=Z0¥šÅ„î)»7¼VȲ ÜïÉœ£c)2?32ÒÌf}ÉÌÛWÏcìsœp#³.‰8£ÁRS“ЀºÊ}QiŽ;í•f"‹/½.Š6yÏèß=Ù¡Äk`fÉ—R¹ËÀd§`v~>%ð×7*~¦œqJ®=Do ±¬„hbúÚI¨D·ÚB%KÐúu{K.°Š!4[ÇØl-JG]—Èô£5§ªÍHÀl°3³†ìÕcb6¡\ˆâŽÛ[leşlê!ï„Qñ–»‡/¥³ô=ª~õÞÔèT-'K%-}]ìôÄŒ†¾˜UveïœOÝ" +O”H­Ðf'os>‚†g„[}ËÛ_Âç‡üw•ùÏ*ƒ :ü%Ý 'oan´õŒÆÓBq$vHÖt ƒ(QÇ·÷é.Ëšeùún»§SJþ•ž©¢sáxEî…³>pã–ò=LfŠÓk¼ rÊÏWÉÜli.Š©›ùªªo–£¾zýÔщÂ?m×G="°Õ\ц(¹7C=úÒö¢µÙZu2¤é¼zÛâþ.š&k’1ç¾çˆB&Ëhš¯üp·šû$á‹t¥"Ï(þ4@·®lí7±N¼k›'ûT“]‰¨6žö`å‹ò"šBÇ<šØHgnÞñÔl7‹®ØÎs5@  _øÊâ–·á]ÙÈ×ù.óÈmÙDdXç˜3šØÏË“ÌMÚoÉ„E£)¦Êb£Šì›ÉÍVä Å™—k-Ú<óz¤€f$i?¾5’ºà.ï‚;ºà‘.1yI“ý,© +AÊ€<ìÞbˆ Ïä#6wb¤ð¬þ¨fä1…É +¢P=é‡Y‹ûù…&4©'±Ó(¼Š–Ì;Žß°ðO.ƒ»ØÔ“¸m"ôºòƒ¿¹ßˆxòWð•opJ›)¸8ÝqÙ9ô–“‡„ÊÈÔfz€Ë¯[n+ŽJëÏ.Ž\]gï¤É + +øBï}k*)xê󉨷¥/c+›]…HO î!U<±ßùüZ$X2¹L”+)r¶œsŽœ2¶»ï–ÀÏ=2ÚTÕåΚ·¶âè?uˆÇ>9uö8ÐWžØ‰f¦m‘ʹ’4Sg0ZÓêÙ.XÝJíwz +¬§m¡à±çÖªD[»nU>õöÇÛ£’nÑûàê|»:ÌÈêœZ;ˆe)GY |Ï#v´C{ˆìï5½EÈ“ì´ol6: S¥ŒèuòœßH––œ·Ÿ$÷ @2sZ6Éæ#Rq1ÀíÆ#𠜠Ïã§;e0&@¡%¶uõRE#.±š¬W´’ñÍœ”ˆc”@S@ÔÀ£½:D1¼ñóà\Da+ ¾Dú ÛßìB'ñ6{ËÅQšØÀöp:9ÛŸŠ{½ÞeöijGÌB¾]óK#­e†J—4ðÀnbP POw;Ç’ÚìæþʇvÔ°=!ó#kM‰§<4aæXp`éPõx!BõY“„os„‘Õ¸Ù?¯Ž«3cfSdgw™i ´SE""‘L™ÕÄûL›™Õ53¨ÏTóð ]Cfmû×›àáÒÉlß)®t;åð?ûAÄð ÞŒ—²ø$¾…|ì$¥Š¥Hv#·xŠtLžt¸’tôL:úfÇåªhþ²™—-UÖÍðENèáPªðE²Ø[–|,Ouà?Vb\¹+AÆv––Ý+ܼ}2EW,îçÕ+·Þ•Æ6Õó}a˜w•dP›šý¶uÁÎû©)~ë³HºÄ¸ý +fQ=¦6m8"âïT)ÀKæwˆ@,¤Mvma ôà©Ee^ž`˜ìê6‰DÜqõÞ3™Ëò¶o`عýÿ¶ZP+ +endstream +endobj +154 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +155 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +156 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +157 0 obj +[301 0 R] +endobj +158 0 obj +<< +/Filter /FlateDecode +/Length 5799 +>> +stream +H‰¬WÛn7}×WðQ<£&ÙdwAÛJ /âx7š`‹`¬›4òH²¢¿ßºðÚ©Çð´fšd±êÔ9§Ž^ïî¯.Ö§÷⇎>Š£_ÖOÛ‡{ñãoŽßŠƒ7«ƒJTKm,ü_×Fì.ŽÞTâòîàh¥þ¨„«‹ƒjYUXŠ…znÙÀø×,­PÊ,Mk[¡íÒZk®M%Wü´:øéœô‚ *\ Ûã_¿ý|]‰ãíÁ¿ŽNn×7á/ë›Kqx~³x÷F}xûþX¨Öµe¸£ú‚q*Žs¤–Ê8jŽÌß%\t¡î ‘X¼Ü…xénÆ%.B׸’¼Ñ–×ß@´÷û,¡¤ŽvÒ!Vxm·Ërp.äWÿˆ|d]²?ª^5mSàçPäð~vï¦Ê÷|¶Sø„k4ŸçX™¦€B‹—Ž×Ý¥ª§z߇ä†T!øÄïXYxúQËG R¾pgUT·Ãm°‚„},Q‡»=‰S8Š×aPÐ,.+(—NìD·Vø÷=â^k<÷¦ {[©¡v«ðs¤æ¡ƒ»§˜T“°?î_\Â+¸øND¬e)ºÁ ]nnx´¿HÌÆf¼[–*/ÊD¿Ì‡b£¦¡˜ RÁE»Î2T.ð–6ï,ÃÑñ„‚ølt1 +;“ª)Þ’*$Ãú\­wy:ç9O=AH•ì¾'9D&ðtøãOÕr´MG5®Åkæ§ Á‡.ÅÕו䅼€-~,p÷1û}ØÓ=숙Bždú\îSx]ðDem¯øÆ-+g„k!{‘&ÞÉ”îßûŽ{ !Ö²Á¿?Éš.°ëûSUŒƒ¯&BÿÊ$ûpÏti«óâxu $t+)‰I5þ~‡qySé¦` GÌ|ƒ‚Ô?uCßž¯)í4U€ÅsCœÐ•Ðíi‘©“"¸½ð‘üEª¤‘Ü4%swˆ¾ òñMåÁ·ï·å4Ù§'gêÄ3Ù> 1%hL3Á®ÑKQs'Ndð1yÒ™ë +°Ü>vWäÐbÓ> ¢Ó YŸSab§xl"±T\C +ó·•yÖ}º¯,…ùã'GtÖÖB¸œÓ¬ÿÍ|ý·Ï—È€Sx¥,‘ ·Ó<ãv8gí1âXŸ(Žÿ‡++­%W#£eŒƒ–¤Á˜`Ç:”>ƒ]XTÔŽ)62©—M~âÕ>Xw¥‘RÝÖm“ý“RSTÿÄ3ÉñÏó‘·^wÌ [©‰Ñ¾Qcèè=P¢Ð3/_Þ^í2!t…Ý _‘agýئÁ„½ÆÄÁé™ø†L¼IñØR×<Õ—T<Q ô{: Ñ›¹hÕc£{–ë™{I¾q›ï£}g‰ò³š²§ M' P›ÌSg,›r§‹QŒ‚yðµß£v,QhR’5Í^^ÆV>J¦½ ÞPFÝŸ’šºñþªyÑ_eržÙBæàM°rÔµuèZ“O{lq†üĵ¨'uƲÎhÖí‹ìr„.„ˆ?Ž%ý> ¤LDô”íÂ`w Ë`Ö’a Ÿ°ùêý z[•úãú^+t¸w2è¿KC!DõüÀò “çº^y½•„t^‰‰Lý;4,xÕ¾dMîöŒP˜‰øæ4, Aôr®7Þz¾H©ŸzvíC¹”nš•Jò A÷$Ž;ö…;Æ,Â&¿‰GôÛiÎX{Uî¥÷IÝ£àêv€xª¦mŠjŠÙìÐö¦=5%`•ÊLá<ÒÆÚ½< ÁCK /zi÷ä LϾ‘£05’´ª&üñaÊöoh4(¶1|=`\«15yLõ[ÞwÐþÑ\ïêØE–‰žCD.èï'Ù'øžìË«!JÖ‚æ27&ØR×¹,ðè©Ë e“,q¬eÎG¤™£WdöЫ¶~^¯lë2W=«ÙÌ’È™ Ëã2åʳ'Sç#×ÑJý׫‹(@Ui±:þòWAéª:»j âbâ«6²k±ÒË@¶B‡ân†ñß³0ow’ª •½<ç7öˆØ¯*¸âX•›` Íï zÓ•ÈÓ“$WA ò¢½ SË^m6V@ Ë3T’*—¤*CXúø'¯WÂðe~fŠ2@Z@DÄê5ˆ hžÇ¨ÎcˆƒH ýw̉Á'-ˆëq´ò—â^êp.Ì#¥£  +FÍ;QL ì®› {'Í^WÍ°Þ90ö°ÞêYo;¼O·åAç¦ Rûg¡V.Ôh”G'¦æ†,µ) %®™W[Fî\ØËá̆ÃÌÍ›bšôÕ‡RãçÇí¾·áø¾˜õÝ7xê4Gô±-­"s¶˜c]\{ìѳ£z¦e>õ òË1²ùu¹‘G[ª§ÀºDŽX-J@¦ÂÞ*(R¢/’@³œ‚ÍáãÁ3: BòøVº±Lïó]Ø É ó×8µ6Œ¸àêh6L¡’Åk𥡩ʖ‡Çi áõ%ƒ.^†p×Ï‹óYV‡UpÂAÆñæÔ ñ!ŽA;º!Ç9$N¥ïÂÝ>´Y÷`凜XÙ&›2u +ø!¹ˆž:ôöB%‰m‘CF:ð:êldΖÈ1uyÀ +-ºÀE6«Ú¹@¥¢¾2DÁ KKŽ‹Å'„QÌ~ä7ø—ò¿•Ú`6¶QEY¶ƒìú4õ‘54ÁûAÆæSVÔ‘8Ñ ’³Tl*õ$Õ&sþ™ÛÂœdÁ™ˆÞË›\–˜Ìˆ6‡4Þ°Óç”p²’Võ§ +vÍ÷h“• ;/ÖXæž’¼o% &ßžhŽ‹4>Ff ­" +8X"UH]‡$:ðNï”z:˜`dšäÅÔ>{ É•fyLºËÌ|lr¶œIÞç:«žž ò(ƒY™ð½õ _#¤º/M’ßÉìñ3“‡™ÆÈV²m¾§70dØαj{€¦vó 00Q&³=`“R6>"ŸÀ7'Ò´˜&žßã¯Æ·ÂB"1˜žÚ§G…ë]“í$bˆM;|fw0Ž}`kËñÕy×õ +ZØõ Z-Ì*¼Ü']Iñ}gi`rFˆ’±\±qŽSî@sÒÍý½Ûgî bX3sÆÂécôâH[0öhŠ ÁË^O>ÄÑP1oP;ã*Ïq é¬WËrÝ6ý.*]åà³²JIÕd첓ÊÆi$%NäX#[q)_?èÐxðŠ”³¢ÄK‚@÷éóÈ€{°ˆ”ÏôƜ޸“Ø­uORe™Õ=,pÉ^/ù)ç©queøÉ° §+m檵HÈù%†l†Âr<æÊÒž'?9eA†ˆæXÏüpJ÷¥1âG¾¨¬‰æN2"Ó‹H ™Å§m•oÛ*²ŸO™*bòü4žÈOxM'úÈà¦{÷ ˜2ÔC£X†fÓµö6›÷óΘŸ8ãÆ +1—×Ê"s?¯D°$Ùê*½Û#¤·CÇæ,2®iw@2Šyp+ÖÌXw&/Ã…¥RÞƒízî)g/dê†aÔ7·Š±V=U\3vJ(Ì"™xŒßÂv{|Ñ™ÑRK ¬Vù0"»{áÂt²¸•2èpÏnˆJ3#´GÞ_¹®OíÙ½Ì⃜;1µÃàömý6œ …ÍsKÂÙ.ºÛF‡xÖCëveÔåèÖ5{ðx¦`24P^tæ§ß7®íÕÚ-üõ½òŽŠ°ÿ3HMZ¬Q÷¤8­€ì¾µ”(Y‚uEb=à +©ÃnÊ (y»º7’‰á/«j÷i¾ƒª†äÏ]p¾ºÆ\€ûc¢¸ˆÀ ‡â‹_ ™´Àñ¾Z`P€¦Ÿ•J°¦­hûÌ.\؃ƒnŨ …Xaʨrpãoæ7‰—ôX’‰xÀž0^=Ïv rÜ"# +‰{ddÊ­°_ÖüÌÑ*+œ½ÏìqöMMóëDÄv•éÑW¬dŸLÅFYbT*–H jÅʸ2uÔ0ˆã‘Tç´…=¡‹,yN/ª^ãÓh'ØدôÍ{¦Ü"6´²mu >–KµJ÷'Jk¢žÛuñžÓNªœsð kfØÍ“2çóÀÀ#Ó+~ÂèÁ_çfÀ'“w6½kçÉ·¯ŒC“ðº«Ã­Sð»%çÙ! —–•†Åuˆ×ÇF»/ +Iõ:Pdr²Li|²L\EŒ¤äár ª.És"ÐbÝJ])TŒ*T”xVš^lz݈Èîl JÚíÙh-¹_sv Z“W>·"‹fÐÝüqz˜F¾?åÃÔä¥-F¬Œ?Ä)³Éƒ¡.§A(Æþ’CL|].à Èð38µ½KýiÁ??*~´Ã_ÜWèîæî‡Ô—Ëz÷CxJv½žÃ¡uR—Œ^8¿údY¡]ÝóE“À'v­qÜ9T7?yd)íÐûƦÄÐŹƒ©ËGœ¨€éÃõðÂ75nÖ šB;STj¤Ö{Št±ÈrW®¨¡ˆÉɘ°gî «ƒëJrãèV®cŽûăõ¹ÕÕê°ŠvƒùÒ0Üa¾‚åQï' ×÷*i<Ç”Ô5 uM§¨+»#\bÉ­K9©ê·âãàPR]lÒ;&Â!ñ)ù-À×ô¶ÊRH•Úµ©"ÖŠ9äŸgœ"?v©¾Ž…»3'›Êþ”7Iõòº¢ïDZ°‹$¦$; ë·@Wájt{µv‹˜Ãú).¨@[ÇL ˆ-°ÆŸˆ +ÁvðÁ°è±Ö¾ä=ìÀ„=gœž0ÅΪ؆müŠa†%º—|¨— çá—7…FÏ Ñß›¡¤¬žìæm½ Æww@ƒ@9ƒEùÙ¸…ä½i„^g͈XMUQNx@†Bf‡Bfýx~}çì¨ì{É¥àl´e-òMi–Ò¼aÝz]·Üyfü6­Z3vÙ‘Ï"(ðd„Þ”)¬hb÷£RÑ 64qeÊHTe½PƒpúŒFý6 +©ÌF•ní1×É=s §5«ut™Ñ–Vè©UN#ê(‡$®òÜž›/PÅQñ¨˜Žv(êj»uwHðaQújH('!0¦S¦.¾p m ù94ÁÁ:J‹‰NqE#•)â´æõ¤_Sè5þrÜ^ñ *çfÀW­™q)EvB_ÃQ©œ(ÑD˜Â Óæ±bÁ¡–œ=pšr8Ù’RNvž”sWÆ{ ý±éh‡ÉGW02ø yúÏO<ô0öôh2Ú—²ä5\»qئ gÑb¹è¥Ç¶ •g"Q{¬¡?#p˜OÌxÞ‰åÕ„"/Àa½‡j)²£ç1ròŒ,ëö7ácX”Oý7ÛÇŒ†&N #x–_Ìèö+”×Vá;$á^¸£ÿ:J3Ù½6ÁËÏjo2ÚØÂëî: +§hŸ½Š¸«'¾•4}|®ã Æ&›Û¾m8m?(Ãù¼šW®Ànw®d]qõ®Eß‚# I Ì$š¯„'¹G2Â{Á{jËÇ@  #Á®¹ßkt‰Nme£Ù¸„ìèà/hjf@±HÁ–Tªä&úƒÕ“Æ;Ì;æ·0€”·v4Õr•Œ§h )~ˆÇ!<‡§TÞúH¶sa¬'øåo8©Þ¤IWa5¸b0U…Î9@l‘a"7‹ƒ+'„>‘Ö©‹¹¨b6òA%Œ´ò{âU’#%ù†˜ˆxéR›‰5ZøD17¶3xU‰¸$Œ+Àë{ú“ù¸Šké§sLm_¶ÃÇåœàÆ5ø„:+ø(ÈÌ ë¡2çMùïŠ +j‡„NQf!û×!±}ˆn8é/Äôù¶d•Êô¼ò†e†”j³‡ÛKÅvÑã;8݈Dw£Ôç³k1¢Þ‰«Š~ ó›(®ERáTzS‰bóˆÒLÿ`r°[à +endstream +endobj +159 0 obj +<< +/Filter /FlateDecode +/Length 5603 +>> +stream +H‰¤WÛn¹}×WðQÜ£&›dw‹|‹wƒu‚Ä“§ tÉŽ¥‘<#[«|}X’Åž‹f²0àQÏ4ÉbÕ©sN½^=~¹>¿|T?ýtöWuöÛùóý÷GõóÏoÞ½U'oæ'­jg¶óñç:µº99ûð©U7듳¹ùw«Œš_Ÿ4í¬µAÍ/ÿñ¤Â¬kâ¿~æ•ÝÌô¦WÖϼqÍÝÉigôü?'ïç'ï?Æ“¾Åƒ`=¬ÛÃÓogºkÕ»û“¿œ}z8_B„¿/oÔébÙ|x£Ï>¾ýõ2£õu¸ +¢ú +qš§)q¶)Îã4íl %V ~Öv£S½fÆ=„ùÏÓ^›¶›uêt¦ëfAvzœx=<ÝÄÿÕ'mƸ×é£6ñÇû•nãÍO¿hËzéI°d¡;øö\;øxÐÍ0³qÍ2þêÔéZÿkþ眙ýwâîgó9¤MwôxGC74å†ÆÎ|g;ºá\7&þY‡ÙPù:Þ¢zŒ·AÝÃc¯NWð vƒßßÀ³Xßó†k~~Ò¡+[Øí\[ ??īÕãGLí2Fàá­5¬ mM¬L_¾¸…cئñø½n\þ½‡(Ò¨Í%nèáRíÓ#úEŸñ\y0°æ–#~„tðZŸÞÀ/–»ß°yTÕõ­í`÷»H »Ó«ü=~™‘ñ.øjÀPÊ)e‰/ñðU®8I Jêïñw ਓÇûÄp-–¶ìCù5êer¡Ôé«\ÆŠ."4äÏê¬ö²Og­é¶ƒ3ŒÃ¬Ëà,G%x>@Š 1¦– Òc~Ĝ˹´Æ÷žÕ*`0øöWX ¬Õ#4¾!ê0»øîºå<•ü5ŽÐ*Ká¡áj\qÎyTWºk!‡ßµÁó*u˜‚¦0xLeÈ-§äåp÷%D²­ ï¸=üÂR[ì„hŸ©×À6@ki+0›Ž;ØbxpwÝŒ°ìs6’݃÷4uÝZ]C^Þá  (¨-vR†˜•Œ”5\ÙÔ€Hˆfh3bJŸÀÇ™9*n€m€ÝCË㋫ܪ lQZ>×8s¾½Tß"¼ˆ£€‹°Æx eJ«|6Ķ¾R£›€S×Dç_2c")Är·q©¶øôJnQ¨¯}¥ 2&gc%ñÉ· û‘¹oª‰ÑË–ªìÆa$Öí:x~~¹c DF‡#h¬¨Æta€B$Þ  K=Pû1˜ù2ÐV e{ž¦Ê¢†2ðXƒó×EÌWÝœ”˜Éôð)bEiÍãÓ@g`öÖ‚É6(%‰p ÐV´Ê¿Âñè×: (ÎYu?¨VwVíðŠ3F„×èØZ•sñØ#ž÷õžpùp÷‹ö‡t`Ì'š®GŸiûˆ‘ŽÃÁá-Œcx«{oâÍÇíÇl‹Ëýa[j˜”Q.Â'Ý! _Ð ¦,W( ‘Lµ!td,%¡`cuDú†ª·¬™0³iûYo‚W~päSð²s=’O-šô‹Éú^Û>ŸâD_Ä© +öÙˆ&YM>>Q¦HàÊËÜ’&¥8kÄtÖ>¸h'”+ÔôĺPè>yX1uT¬d+øòÑÙÚ$æ©‘ î#ÇWGAµW ‚¨RèE;¤ˆ’Ÿ‹2&ðµ¡Ûñ·*áp„[uõpÕ~;•û¾v5›M3d¤U6N"ÇËY‰ItMC­û´¾øý„£TD“i¹ÃÆßgꣶŽÄ%Ó%¡G½ãÑâT'÷w2v^HÞæ댄I&â<)ö6@ÇsQª&Ž3ßÓ0—½¡*0)€FU¸‚˜äÐÔfeLä%f +ÌS6ÏÅ»WpOMr ¨‚¨?i,¬{ƺ#PéLkv Ça!7lOµÅROMR–)f5^°:4ˆ¥»‹láèͼð¿°‘MUoêå¦:`©^ñÚ'MHøŒµ‘}š•Ðƒ• H}*Ô>ŒÁ,ÇS +ºÊÎê¤ÈÉîÊ¢„8œšåŠ¦ ᫸¥x‹~c¬Œ@ªÚ®ïý €¨gé ‡CÅ` $NŽ°®›Œ2ÑnÇ¡³ÂŒ.4æ/3t̹‘U.fš¬t)– +Öß]±Y*œXµÌ?’–þqÍÝ‹‡¢ú,c,~J€Œû `®¶“T©¸Ë[¥9 Ü §JÃó‘R‚Ät _8pV¦Å†zµ…†AM¬¦ +'î¡=Å1ˆäõ1´å&´5ì€Kœ|‹—,\.”=ìPv҂ʪO=Hº±¬y+$'nžô+µcƒõixZBÇE¶ϸâ¡*F¤tB+•ÕZ˜T|sS\¬V‘“­fÒK` Û"%h3}m3Ó¤»Ã%ðÀ—õ8[°D±ÍKÀŸ­/OM´ÛìտСì]„6bv‡’?„ÖŽŽ¡µ°Ò‰è)æKòEaŠ© ŠPçÑ~õdcŠkç†O¦l¹h5+¹-7äPiÄáYë«4­ß1à¸q–óµ*¡>)”&cn!2ኼ–ù¡/øªH´±gK˜0bCY„̳Úg:6æÌ!„ÙXìð’ñ…º‡Ž»\«*ñ ’fMpÈ=皊ø"T9óg¢z&ðÊw6¹EQ&^<­‹¸8¢Šõ˜Ú¶v;ºøGqeäJœ‰NÚg¹è Óä92•±3ÉtJ¬áµ!µ½Ç©ªêvΉ.Îns f¨løÅÐ:{uMþMl;R4^P¤h8‹L-´oÓ˜úâÆlŒ‡©1lŒûí¶Á wͦ•Œ5þý¶ÏÎБ™Ùx:épèFûNhù9µ@mÔ/ &â8ŽعxìpGwâ¶Y•Ä‰;1ÙÿlX‚›¯ºcøs串Šˆ£ÃŽAαPø²ï kmqV¥ß’\"¦æŠƒ^oqøNbw¨Î¨v`ëbm%Ïø-IO2 L0rqrþJƒH7C¬”˜÷ºë…ó*Ý€|>-¾­Ékô;ÀG’1ƒEÒO¼ÕïÂs‹ùMmÁ‰-~JaKÄ]Z,õ½1íŠýp¼fý³Dv®Ö¿ õK˜µõ³àoùä»@‰E~CJ@¨˜O°¡CtÐt(J?%¼¾"¼=Tw Ì„;ÜŽ‘ÀÅ ²pØèŠHžYÇ™ê&RíY¨íD¨ý¦PƒQµ/ªˆÍø¨¤m²ç‘iS¼ ™–Ôq+ˆ*âkLl$³Ã(•bÌÙú¤Œ`&bŒ â[& z?æñBñ™&\ù´'•xYÛsax4hÆŒr{œ@y;YêRñ[Ñ9£Ø߈<æwuŸÌÏåÂ!¦þG{™õXNQø¯äq,q/±“8Éc $@„†F¼ ¡Þ¦¦›fføõÔj—³4Éžz¹¹Ž]>uê;òs”¤8&\‚c¡\Õ«={mÌ^??õ¿”W§×¼í¨ÛŽ´m´Úxȯa`…¡å÷° ŠŠGj|ØOÃÅ?ôÁÎhö÷#Þ:™ ÚÖãG¡ž¸¿á‡Î¸'î¸î\Ç4Nƒ’o†;‡¦ÙàÃ=*~Ìß½¿ä¥ L=þýC/ùô,zûàH¡ôáo!w“æníUl‹*žÖ\Äšëçà +07#×Ã?¨z§¨LC„»Û³$œõANæ?Ù2Èg sÅDñò#µf!eDŠíäQEÿÿK&ͺÁNJ¸…EÊQ >ç~`o°3„gùíKüw¦oÒÃÒ*~/:ø‚B ßå·ë¦+à`Umœi¥‡÷'­Üðí,ªûå•ëZÆñ–œáˆÔV?¡Oþ¯¾v()ýo;¦0t!—€™²Ã|‡É]5—Ù[6ºq-͈_œëèýŸU8­HÐÊ:²Sö¨Þ¨8ùX7âr©æ9;¾ã>Oo×l1ÅQOåY 0®DbÒÛªçIÙ +ÃT0WË°FBñ`«9¡?jr©ëÛb@‰·K%Z©ÌdÒŽÐKu7:yup§¿o\¾ŸÌ¬ æâºQÒä-‚ QÛŸd2Â3ÓíʃÒ&š ¦ù,'öãd •zea©OåLS«ù }• ªšáK7¶ÞL‹?ógç8”²]kÒ±ä<;¥[Çþs¬NÝÐD¥¤…BlŒk'ú/)9û‚oùU„¦°Í¡DŸš×çð‘ËƃøN,¢iªb¯O´òwòž[l…I#`Ü°Kí5ŠËŽÜ:Ûe3ÎúÃÛæ¨ã +µìhŽ8ÉÝÚO3ZW& $Œ^š¬×¸BÄŸ‘M,ÉE稼Àhž¦oáxŒAËBØ’LS$l´E\TïIr±àé7tµ_ãâd¤ô|FÑ5Œg¾±<‰E¥çI”7Sªi—©FuúI\”kš ×Ð77‹1ú-b4jÙ#ÆiºÀÕØ4ÇÔ¸Hc1«“ÄCU¢m¨“_º÷/Dõó‹è#£Åì>Ê{”DàéµùÙˆ +ýJBÙ#ßFHxñˆoˆÌnˆ>”>žðH^¤ŒG¬¾Áßà“ÉOOÁñí_UµkHÒ—x4t¬áÚµž1f®—³­‰ í ³Û6¶àÿ¶áV6ÜÙ ' KòW&ïÓµdÃÇ›uµv54%&S«&˜›ÕÚ–ÖDZBÛæ(t¢%-óKói~á‘Í “¡«L˜Ý³30 ¨x‰ݘ¡ºèPÊP‡d‘ðœ\!m†r29ŸãRo0Ø•é÷|’(Ted+ | )}‰Ç€O_Ã÷™*R; l׸woæht}¿"»Åj +®%qy¦Y#+ªR‘ì:ÖÈ£Uò¤ò.êR±&4šOV ßvÙvq}¦©‘Åži:Í=u§¹'HîG& cmBǪñP!;uúŽÍ?4—Ë2©ˆ½ ¿é nqà/Gñ`e}zùm.õÑAˆÄIi(V JE6TÕ°x|éA¦ˆ×,#—èßl¿|Æ{©«@Ë­T'vójÊ¥%|ЙSÙàXÕ«=^·r=d¿EË }4¹b-Mqv3à-†‚bþŸ¾E•_Ÿ2ÙYÓÂKWó‰3yÍû’”Ù¢oðo¤× d9(j<éÌL/ßKfVï©â”óÄiÄLPñ,YPÎ|~v¨góº‘üÎÄâÚü +J kø³:G„£!1Kyò¶Ÿ#z|ø·|·GP㈳BÚq}]B\=¬è4“8΄Y/±»F0±d!ѦøXGíˆmHB蔡;YZn#ÐwŽÈíÙ<œf’ê Ä4è—㈉E„83ÞÇfñ<‹Ý "VÖ6]×ȶ¦¦#b’ +=þ¹ ©S,l¦¶;pÈ#Z‰e»ÃBaÙš†z…òVþX…æÐôYjÇͪíý†Ñneµc´÷Á¬½ Öv0‰ãŒùé-͆‹`EŠ\e,`ï:bªÚ…Ž½£"ÍHü¤ÙÈ#<°r„È ü kOÄ-~­NIBÈ!HŒ–vz ~aòÄb,,OžDÁ€Ú-#–<{~•j¡u&ÿ1P–Rèvµ[ºÎÈkOו!®Ýʬ€bg†N9%Ý°°§7{ýk*°Ÿðþã-t&"@JøùÚq0¢±ìQélZÏ‚ÖÇ,*”¢ùÁQó&î;Hµ‹>Z}‹¿Ñ'$ïdöüümås"dT’çnH³Z>5dË É/Åô@A‚&†Á:FØÒZëNžM.åñó ì]»–þpÏZªf>á{É/ êÚC•Mj ZÐí‚Ü’ð¬bö²/‰ , +²î dß8 T-‰Ãׂ×0Þ1êàÌÊ%|€G©ˆùêUx<¢Ÿ/¥Ø0“34¡LÖMHÃDÎ=ÅÊ6¨Ø)ˆ]àHx>VïG8çX|‘[§DâÛ9Îk³S‹ =Â^–Äëù±¢h™•å–½2á…ßfŽøM[¤½¬LT=ºÒ?Øh¯ö èa]«ª%?zÂYÿåLÛ6H(ÁˆíÈeK5Л%?lY9 ™Wx`ñßÃèyŸd%¦ÃŠ~Kù”ÈJ>BØ6ª€¬iïE£qCš2ò}Ï}ŽÕ?ÁYBûÇ“ö DCöTkäÅNÁI)—â›Ww©?ÑÂÀʽ’æî<³¶¢yTçýE1èàJŸ©Œ¾Àú>‰Y^H Ü{Uöt­ï+ø#‰ÒŠBº—Žöÿ}»@†zCkB˜ÈÔljÀŠ¾Ì}&u÷jÀœ¥‚f"º…k'3xfÌi‚ð ÀçÜbêföÓ~ª# ;Ƶ„9¹ ¹÷$WGB¹†¯Ý&WêÅ­{‹Ãÿ™ýÆ¿Nô–2f†Wä÷R 4ß…luâÿ0XbÈ +endstream +endobj +160 0 obj +<< +/Filter /FlateDecode +/Length 5570 +>> +stream +H‰´Wko·ý®_ÁK ³’ó‚v”¤)ìUäC]z¬%ÕÖ£+;®ûë{_$/gf¥]¤EàŒv8$ïãÜsÏ=~±ýtóþìâ“ùöÛã7æøÕÙ×ûÏŸÌwß½<ùÞ½<=ªM½ö¡…ÿ7M0Û«£ãŸÞÖæêñèøÔýVgNßuë>€ÿúukœ ë0´ƒñíºm;øàöh¼=ýçѧG?¼†cÿ§^Á¿ÓWÇ?ÞÖæäþè¯GÇoÎîЈWgwWfµ¹«~zi_ÿó‰qãà”Eǧ§r¯ëèVx¤K{¸5´cƒ·þ}5Xø9˜ÕÚœØʯ;³º±½y´ãÚ›Õ<‚YÝ?Z?ÏlÕáïæÁzðʬ®mUã÷°âhßÆØœþ9¹ò´Ù¾ $Új>`F°^;çÍ鰞לò£îÖc a%?ÈzÇ£õ=Zïþþïkˆùj æµøæ³…'¼¸@OÚø9î|qoôðÎ<Úß_ã‘;Hg~Ä£0ç»y×5| Þo .p~nl‹{ϧl8~hF ÅŠ~_š[´´'˾áé^pµC{â§÷x4\òÞ\Új”d92þ‘~€‡£-t÷£ä4›®Î¸µ}|†‰ xq35—oÐ>ô –=žpaü$”ø„Õéð6øÈþ*ÿ ðxQ#ÇyJ¬\¡wpÖõ!H +IkçÃÜt£_÷ +7à`t¾Øà8n„drY1¯Wüàr!—˜Àâv&ñ¥’ì¦F7fïðù¬W*U¹ä€È hd뮫7ðJ¨ª. +ülÅ„æ¹Ò@0ezŽ4ÉRñM¸£q‰£y lsI ¥´Sm}UÁ¦mJ„¾?ÌÚ¢½kÑQ×vÂà2¥ž>»Sg/·ƒ€%žK5§Ø¹S푯Íq¶ìß!¯ øiÅ9»‰= QyLÀ +R :aøá6Ðå£hŠ²±âz`®K[¨WÜHeÄ÷>Ö¤¤/„’ûͱRB¨Ak\ùr…º†ÂêUXÁ6Ðl.ʧŠè}m;’I 3+ÔRŽ z:Â\íÑ-Úç‹XŸ„nîïxë=nme9ѱ¾j¨06Ò­¥nàwO¡ÃÝÄaXŒ5GÀý.>¬!ðMèÿ²+k#ìÉ^om$¨B…s惨ù~Mº$ž*훩kDêJÔš"tؾÿ&4 œ[þü–tѸÈÄgQ3Ý’sÿðÄ°Ÿ±…2{+Ý<Ë´¹éšhÝ¿µŒt® »¨Áõ±mføt¬¶¹a~<3ãt¹ª{¨. ä¾t6Ö…~«ÛfÛȤ p»¹M.rú=5¦Ý0IJ"©g'|øÃJä\Ö‰©V÷Ü¢â‰~Q/¿[Ù– ü(…¿îÞ˜Ÿ^Ì‚„E¯`á­i°7=µ´ÅÙ.à§Î$@œÚv`fZ”m­ÈÊnÌÎæ$ó«íü"á(Ž®„KçvÁ¥ï×m‚ˬd_DpÉ6eÉ:î1{íkÛDÕc(!q$ú®"`["M Vï¬m<¾^£}’ž?È>Ñn£ÏÑ„ÒJÁ«u—xHM·â™VÊÑÌïÆÒí™çËcÊ*¶@|9»ðR?ËUZñ,¥•ã¤ ?¤ ï9yâKz×ér{¶¨bqèÀ«îq`¦y†™‚¥Ú]ÒÈq˜EHÓž¬u+R0S›ãLúfR}làg”Y⫹V|@_üGò~ÆÝkË’ô¦N­Þ‰Ã¹(ÌŸváRs< ¡H³Kñ´Í«!:ñØ +~·Dþ¨àLaÞš­ƒÄ5õ÷yâùˆ(£„rNR—1• ë^и5O6H‘YLNkèÜéé'êÎ+°J1Ún6U4‹ó㞺J4ÊSܶÆ›=¦1í¦±±ÝW¾„Féç²·øièto!– S–dá:SgæD ’Ty,mc÷¥™÷Šs®Ûÿ4ÐBl&“"œ-O3Ù¸&ôÈBf‚G¸V¾2+ÝžÛÀ¸!©pß&uÈÈg÷¨)K$¦oiS«ª*iÂ3™»Ð•X—slŒêPë&ä²SžÀYÍ^pN÷< „Z÷ÒÔak=Q8*Ò…çpب–Æ>²µHV&w²ÈÖ©i¯g@4XÌØÛ +-Ká=ÄÜî + “:¥°ÕBÁ猕‚›/Œ™¤2¸¨fIêS¨ ºÔ‹"yN¤®…c;Ò–µùQ6¥è…ùø>äС0Ÿ=Š€llh°Í¬¾–ßÉ3u§tï6y§èf»yÁåí3ªLOFõm‰êTtÂ8©vøbZçUÃg¥ä&`ò$t×B˜é¯Ž8MI1~ØHVV½ÔÚȘ½š/Ÿ£î¹×|Á®Ò)”DITÔvŠ”ô€èòëi:öQßKí‹ ½àă½ƒ/©z#_7.5àI/ÉA§ä`\œ0bœ^œŽJl¡_°dÂdØ “A«Õò•0å';üt‘MjH]¶•ùǶ}5qÜ;oí>VÝ+¯æW±*7œ éîb÷rD•$²19\ 0CWY£ª¬Pþc)qt·‡(YÜqŠ“,«ûX6IW=,UMRní!CÄ»+ë»™6š µY¿ • Þû"7Yz†bY)°ì¤*]/CCœcƒñI¯R¾84¹¸p½ÍrtR¨Ïéh[JCŸçìÍ;\σ¯ÔÀ¢¤!¥è:ͳ…6…]5iù…þDkcˆ°L0jJ„r“_”Áž„6%°ç—€~"2ÃŽª ý D欻sµ]š¿aÂ`á/¦Ð +Š`ÊnÖâä¹Oß­l3¬Ã„’ +:.Û%ÎkAIô¢ˆF_ò-µ( +§ô¤_ÁÀW_àý°éuê/â%6÷G¢Šé[Áƒ³’ÈFÓ7¦ ª\a $²”F²§ymâåm*ˆ4÷0 Ít^UA[†ºDýô +=@Hð;àÓ5Jyˆ×yÔˆª¬Y£Ô|&|âå“yã,¶4=JX7²qó_êË¥7nŠÂûþ +-# ã IQeÑdÑU‹Æ@7 +;¶§vêŽ »î¯/¤D„Yuåñ<(òòÜs¾Ë +Ú0ÿóy•æÓæ°Ìºm=®ù–ºÐ®ÅYðÓ§ˆF¸`šoñÖ PÎ"HÐÀ3hâç}ü©µØx?‡o¢fŽí0íA’j·'–¶}rñ…ªÂfÇ´þÿ^Ðâ¹<*…ü!N¹™ªÃ]$M‰e2ù̇!ѹ"³ÞœbÀë1âXÀ ?¨¶GŽ›áÈ}ƒ%ÖN‹s茓é‰s}sÈF&òf¡g§ŒFbbžTZç’ÍI–®Öj[ü•í’ê9 +¸'s=¾lKÌ'ƒÕ +~œ{™«j(PSÔy³DUÅ‹Ý65i¬ñ­nx{Mqü(¬~oIµró]œ†ZK3Ñ+r¶‹rÆ¿gÍ9@ª-7™3E¾¢µ’¶Ä²wxöäêÎ÷GÒ}RÔ°W6[ma]ÅY£­×“©Ï:XÐø>“Ò›]{þuåÚ6·;[¥6h»ÚºŠ?d¸qT_Õèõ¬/x'S˜Ma  /ôw„ï2X‘F®ŽL·ùŒšò6…òÌé(Œkú‰žÍêµpü ÞŽ󜬋#çºÅ®¾nFÄÁ.¹…¶™È$ +Îâý§skÃ8xÉèÊòä}JapG7¹»yÆ&CýŽ~uÛš™ã‚%ø©åúòÀÄžµ:ø âŸK NÉvìPi²°°òöˆ&18õ?ÒØ°@ö´Û'LãC þ‹½ÐjÏP5f¹zš•«SÀö Á©±'hìÄ^2ÉQÞoS·Æè””¶ϤjìT‘ªœš/渦tuñÓeÕ¢_št;3 \#Z”}1óæ-øª`ÔÆ÷¦íUmK£oÉbNKéÌ'%ÊxŒƒÇÜã—¼rî¨ g0Zcé°ÐÐöÜÒJÊèM~/ÄØ×ŘÄ2LjjÅúüÕb<ÅH¼‰ulh‡äÒžØu‡ÿÇ­ßÁø6°”¥d¤\m÷bðlZí^«,0dþ…©óŽ5Ù'MJv°ÉP€^ç~GxI^ +ZÇó€5¹hêºðƸS¸hú³ÔkRHeFe!Ÿm¸ÞA]ï»só»mLs~óšá5[uÍ>Ü€›ØF¨ § ®Î´¾§§XÓ¼¿¦tx„AyP ž‘4ñ7ë–ªþ'}ý1Š›fø‰Ã ý÷oW~ßr˜qëO>f'?ßÓÁC|w5•w¡(Öz:þá8›}SL[Ì xIÕô°’–@Îx 3%¯ñÚ¿ƒ¿­ð—91ápó™úàÀQ½ä/¹zÁo øÆgx®%¢¸·4” ðëËÖ±r3ÅâöMše +Çc‹Ö„ ÍŸÏv¿h´NzÑ£ÓW…YzUyø?žÞŸ{ªfvªÿzIM9v¶¦¤ðÔ>*é&lÍh0‹Ó,Žhâri§‘Ä‘¼jG +×iuUøÞyFO屫!HY 9ÚîQF“V ´0#½ 2½^É$ûÿS:0ÆgQOH¶®dìX#²¢¸²|5ioS’w+&¬˜¹Ùìë¬VMÈö㸧³÷¬Qkï`°j’ -ßEIêó29 r$·¢ÿ,º”Ö‰A8Oé¯{[yàt²¡íQÝh·9ŠKnM[¾n@ $q´ñÛrÀÍøÙÑ!G}ȸ„Öü]ÔŽ6êÒ¥ = +esPêxô]ÏëU«áõÚBG]MGf +ódÔÑ +€O3ÅþA*j‘*®Ù*¼²ŠOòôž‘½çXŽÊ£À/h@Á銈óé67k 3OkûdI~Ö¯Ž-Ox8uýEñ“ÚŒË8–+œ-üÖ0Ád¾i¾E'¤qD%B§Y7tdpeŽfÛSˆÇyƘ¬ÍCqñ“·[´äÖz’»ð©hiõ­KæÀ8ÑÌÆ99œDi-ódJÐQrûÂ=Jß/\Ÿ)Öµœ.¨ýÇ&²ÃP{i.ÃóÃæИv|ŸŠ"u±EE*˜Á!#!ªÌgqîÁŠ>¯Ð~'Ú—’ô ¾Z7ÑôºxI§"–írĪºé'ëÊ…3eãåQ°I¹6ÀÀ¶jžãð;hl•èâ!Eà7•×»å{x z.¼xÃ}i~iÔ#𠟉¿aÙ'Rm¾ËaÎ0å¡’Bð­’Ï9ÙmÈg‘(P­žJXN„q}†qyÜ1b5¿½m…ýGÊo¾‡i m±¶1 ^[æë8–Ôå½øØv¨ 8®Bñˆ¨ÉG}r‡AeM}†|lñ¢þTù¹R,V;ò#eÁ |ÜG:¶+éØg¹P¡c¸·v°p¿µî ÏºÜô®¸ןíÛ¦3 +Zm;*Ÿ,t æê3F`ºJ ƒÜ7D2ºãËV$ˆÃR,­¢ÌÊx‡/ã +–ü—oíb¡ ³Ú7—§˜!W°¨Ï ›D%ŠKÐ !—–­ -åªÑ¼`:âçðßQëiþ?äþ”RéÐàšC{ê6ã¨FÉÑ ¥÷p€ËëÚ\Ú­ŸKŠfðû;ü`ˆóâ]hBlã‡vzíRoØ@#ª-ì8]+íükËЗÑvñT’<{¶dôÆÎ4ÂýâçÉ'h`;þ€±àœògaÅ)Ø/®µEc®q¬i#¼H\9/)à°UÝšxäðÎnÞÆqkX¸ªh*}pÄD;z¢¶úB™Ê ¡žÕµW,y"‰µ÷Òè5W ·­Áݪ›ÚAS¨‡©——ÐéLÈÖv8³%—ZJ%Î9 V2ÙE†F&nÑLoò¦”9l½v¦zêûP±Îø>ÓM€ñó¯ëÖvû<Íöeš‰.§Q!kÝêóÈŒ*Á—Ø}Èùˇ£ðHVÌ}~·E¤K<ÀÈ$7߃ÑsX²ŒF£Ñÿ¢Ñæ]»"×KÑ™ÜÆz[‘ËØ)-Â×SøòGâ7yA\ñåK¢é8M€)ȈR/.ˆÄ+=1&õj1þÄ9a^i·2SX¸¢âK¯ÝÇ$î×ÞíTïÒ:üÿ]8ùž +e²ž2SuÐ…Ù쵌UfNÑØjg z ˜€g!ùŸ}i` +endstream +endobj +161 0 obj +[302 0 R] +endobj +162 0 obj +<< +/Filter /FlateDecode +/Length 6065 +>> +stream +H‰¬Wkoݸýî_Á—@®,R$%‹’u¤H°í®‹~hŠÂ︉±dÝ__΃äPW²ï ŠÑµÄÇpxæœ3û/ï.ÏNÔO?íÿªöß=Þ|}P?ÿüêàµ÷êp¯Umc;ÿw®Sw{ûo~oÕÅýÞþ¡ùw«Œ:<ß[·MÛ:ux¢øÇwš>ΉÿúÆ+7º¦µÁ+ëïCœsµ·ê:}øŸ½×‡{¯ßǾÄ`>ÌËÃ_ïöÿ|Õªƒ›½¿ííÿ~{t ¾;º¾P«³ëõ›Wzÿý/o”m;[‡« ªO§¡89Ì–#Œçˆ»CC|Óv£S½ßÃ׫½®îÎôÚ7½ZÝë_õÚ¸&¨ÕgmCÓ©Õƒ^ßÕ¥^[Û8µºV÷Ú´0úR›xVµºˆŸâœë8ylFxWQ«óøp”ƒ·'z³Žà5L»ÖÖÀ‡_â_t€÷_ëFa[xqY²8%.Ž#ò9Ô ßœÇ0ã;ƒ𼃱ˆ‰#nµoÕªQoõº‡¹çêH}AšÔÃœ‹´šr¬b*AÆ?ÓñJdã#m!·Gºkáù-®Ø‹ñßug –<,…í °›øè(éx xC'Þ«=»u|¦ô¿ÿ’!ø4È: ²Ætý†â…vC§ÚôIe._Ú] +Øâñáiq<žëT[ÏJcô6€7Ìo\7T¸‰Ç÷z9½³Ï°’‡LE°#˜7·¶}Ê^‚,£L«“XoÍÖ…As +;ô“iÑ€Cô+$ƨ’ ë!…0ø}€û@êä9ÊBV.P€$ ´àXÆÉ`ø{#`ÐÀ·„_¿Õà»+·Üì+Wq§3¢Š~¹¾m†ƈ¬!B¬wHžƒäΧwðO×õ‘›û8ªF.'€ÓÿVwfSÒ§ U í`Š§æÄ]§=ãd #ÞÀ•6ªžÐˆ_ïâ7Ëw?;L9IÀÁBWz˜7°Í›W#<³½o™ß`ïŽØ±àåƒÊb^š°â]>”ˆªp +ÎÔ÷ú…d=;a=¼¡úIÊ0'f‘DξfX«s.Ìp‘T+LlÓDx,OÜ SákqhI +ºÐò°ê§Å³ ©Œ½s©[ÇaÉD+©’)A €™^Q¾Ú FƒÈùD² +ì¬6è‹.ê’’q§6ö):°&îxd3$L«ÕêÈe¼ðgñ „2üF¡¸õ®ÒoúôIw|ßÞ¡:f•=Ó¨Fצ6ia'R÷"ÂÓˆˆ…'ã…8ƒô3(bƒ1"ÿ*ˆ˜ý^ïÂǃ€8\CÖ1^ù@вZ¡‹ÌÙ2´à&›õ˜M£} Íׄ9«Îã÷¨ˆwÓg9A Å1Ìê }¼ŽàïèÂX‚¯àÙáÓ° ¶¨´xûC½Ò VÚ!c•Šl¢ãè;¸¾q¾3”Cò* ÷@'ì4УœkÀÙMM]RŽÛ†LŠ @'¡gËòŒ†+ˆ¯ƒW¸<&9Â̡ѱ¶2F›Ž»ŽCú24ú§‘› HYiÄÒÜ5h$XlJU€þLf)ok/KPè 7*G +”«H )VZ¾Ke‹]ª­¡ãÚZïÛ°˜è*lL‘¾0.œèH]•xæ7¨JémO’ãÿ(ŒqöH‘uO”--¼%-*ö‹ê +=»ÛY_™ ð +nÌe9§ŸÇJIô6­Ö5s˜o,†«c€r*SVú!°9á<ÆmÉ<ö¯÷l {Hó_¨˜¿&»LZTй €ŒPLEk–Ñf©9‡ãá~ ­i),'ú¨)Žê®U0v+8‚ÅäU’-”ŽŒèœ§\ì©t‡7ê7\ÆLœ¨ZÞ{%W£V-a°pY]ÿbÊ<Ù.éôVd[@z¦p¶Ì>9ù¦Í;èg­zº²Ï‘0àíf—­£c£F[kµÞºãŠýKÕqù趱ÍÐ=¡l¢ uÐJv(=¹žî€`,²ÊºöY‘ + ú¢-º LÇ؈)U>ñÿcl&ÖSAMœ_U+ðl_ãÉ%;vd‚²}¢ì®¦lÀ“)³}VTš‚:hJA*Þn&ÒŒþ ™üž‰ùÃJûŽ8mTJõ-üŠ ¾Ôas¨-ÆòFE³†F²Õe£óÐÄñ{‡Yû µÇ|¼PuÓáRëØ’áE‚úæÀ=O2ß…]­¨Á̓Êqiªœì@]¶4_…*nª’©³º¡]Ó^6›õäžHKŧmæ£èxð€] áBbP&ó8'Æ9é‰C׶p²Í4‡M‘©â6›-!’è-ü²•·•íª$üN£<€JŽëþ¶ÉVC­)B5¦þ3…Ô9€Þ°ñu :êû ¬ûÓØTzúœ­) î°,U)ÜÀäÁΛ,EnwéÏã­ZKΨÅô?ÂÓ +2…¥Øë›)ßyBÍPäSe€Î+£?†4ÎÙÊD„ψæ­Æ¬ÜðÕ +P'¸E"òù+L[þœù€{<þ‹”÷w¿5ÊQnwWXÖÐŒ«`…Ã/î Ý;þ€gþ Õ±È ›2Û'À:*Õ–WQt~ 8EíIyü´ò«¾“«)]Á#ÐjåðÇük†Éé¢ûºŠ™6s1õØÞ&êªþðHQàfד†ÈH><›!™R#÷ ¦ËŒäËR#qNÖöˆ©+n2 +÷>Ó½@W¨Gl +š]ÐÒ× +f0ñÖÆ„ÓöMo‚WÞ ÂÔ¿Làž%#[yŒçÈh &)æ79ðÔŠUä§ PÕþMl•çÛ'NªU±k¾xÓYm ñI¥K¤ŽÁú ÿCcÞÁ­ïµaÒ~¬Xö58·¸á¯°h|üˆAB:B·˜dá!ö^ ä–öß.Ã2¹ø6bº³]”•ÚÞ UlûöŠ’U,z! +rš…;9ïIÉ+‹:J¥+ÙرÆùß5Áúcòñ¬|÷/-¿ÖFº¡hÝÚ"m—ô×ÞÂœ%øR/ÿî¨ ¸e¤K$2Âs°ëzÎ)b Ú“–æcÔÇ:0â³=4uŽx|!úhŸûJc`sEŽ†÷ÿeæ|ÖVòFÜwfÏ@MçqSðiÒ5Ÿ²ÞÄ×›Xéqs{3=ÞÖ%àÛ-zT ÑzToj6^*€H1¥ÉÉÜ#€BÜÙ͸§Pü—×q¥©«¸aX Ëê6Þ¨ÇÄm÷°dy›@”\F6$·1lN;ˆ)“^SÃÙ g’N®Pq6óš±?Ôk¹Gã#Û,ƒNÕç -bï“`—€~ÑË’ùáÛ¦v˜ + íÓ®†i;,à´õ¢}Yn, êՋͦóÓA~àßtÇןÊ눢” ¾ÌšgðZ?)!·.«a•üô¾¯Û»©ß³Ž°„¶c¦ñü’¡˜AË& æòi+!K¦ò@ê¼â!oê¶ä¾ƒì¤¸¾I¡¾ o‘DÕ £^ì`>½›˜ÏnGn4¢]Énw%ɉÓ'Gwæù\‰Æ +ràj“Š"¼ƒMÝNù϶)kf?‹>“Æ[Øê´`5bzƒÓU= ÈOºx!ñ\*ŒýÞˆðˆ&6‘™d߻ˌ@fÚÔ°¢X…ErÅð¥Uš‚@ÜG~êÍú^´0l9¸n¤Ú$øòÀ+)aq&ÔR̾št§T>W˜í±gÒ›ø Ç"ô²Ö²–²™¤÷È‚@LÀ;6Ùl4s›å1!ß¿(Àízt€ã<ž¯»à´žÃBÉœädÆIóEüsĉÊÝW…¾*Ñ[@*Ž'V”ŽE3YMý`‰lØ… ì츻X~s KÞ>Ã$K»˜ÑÄÄ8ñ4訄w»3ÂÑNt@b^®q¾WûîùV¥åVbQBa1ÿ.=Iq¶:Ý´6Á¢j#´ \_DÔ†º,¡btJ±kÒ}6¡©°·‡I¿…“Ùʼn µ‚Z·€@7ˆŽázZ™‹!Ýun›rÿHm%ÛƒK–¨ j+·X—üì=àÖa ºiwdµþörëÛH¢ð_á£ÐhÉ&Ù$ØäÁÖb_²<#+ºF¶ãõþúíºvu“Ô ×Ù—XáðÒ]}êÔwøö¤­b5WGzh»‚'å “k¡Cîà̃umÏDˆkIËžÀÐjÉ`B–°hî£æL›ÉÃN1 5È0!Ћ×ÈRp8Àž{Xî·Ôs’Ü çi]Î*·¶3àÿ3ì0ÕÁ¯þH}l¨÷Òõ8çC™GY?f=ç½€…ûà:üH¼II~ב,ÛÔrýç4} µÉïÆê”M&ÒåÇä£åoPq¥1•Þ9Ec Ÿrg=[ëìÙ:ëÊ çÄêr®‘WüFBøÜn€`DâbO±ÏÌŒœ òXU:eH(2&JónÎj<)ø>ª¿u˜öC#¢ïLiê•©ïuð=¤007>žd)çÈ;$õ›ö2_L… dX~S §h£0oü³ÍÑ}oQa“OÁa\aÄà„ÿ7+h7O£Vö¥Ëlrkw5ͦ@†:‡}M³±¨"52xÖr^Ê;š½øå‘ Œý\c&%º¨~ÿeÿÁÍñeÖQô£an^k"Õd²ÅÓMqHÝÕ9Rò®‰û“ôØxé‡'ªðlv‰kÜ'ó¸A@þD3êÙ€h¡ÍÅ oQœíÔ˜°êÒ¨\öQƒiiPškÑÓ£?úœ¾‰ÛÎ,] ;íé|/üÂÿa>½éÀn¬”-å‰6p¢Åäe§LÀÛ(( bÎ7–t®XŒÏö™áSƒ»­\ÿ©3ÑK! á4¤X2Á2Þ‚Ç'ÏæVùJ£}‚+ž¼&;\ÚÏËëŽSX; úgëÜK,š2H|Æ«ÆGp8Qô¢f"ÐÇ\šk¢M$¤ÚWN¯h&P<½"GEñ¬‚cè^Ö-‰œØ,Ù‘‚B·azSÉ¿]6¿ù*Vì€4Sûêòºâ?b‰ëX,²OEŽ¨;Õ!P‘GØiÜà9&®ÜÇ?ª7kc¾Ã#§™ë¥cªuþJþ@LJ??Ñ¿WT¦Ï\ÎÛ§x¥¦ñ‚7\¹–:wçù>ÒáӋép«OîeÓ6T+dÕº¬©X5Ô ùoÍÝ¢nü8µT¦_ #ÄÖºM” *>ˆòÚp¡Ðóüµ9KÚÿ”1>جÐb@ü¶CY…;úCsékYMz|¥¥3ÆCþ÷FÜØ›Ëîƒföžmû^VÍ#qièöùе[å¸JÏÂd÷9Þ§ªðôßñÌ-ÆŽƒN )c1'™mi 8Ez©Y åeG›"˜†5&ï<ß(¢oQíÏà(Èe•ÖñUé'J§FR+Hw+g™f©ÔVEˆ¶ùì:¢)¹N'¿6c¬ö$—0ñ=–³åµ +Y©Zù]pƃqú‘f+iýÖcÑhß:Ô*Xz:[(R RÞ7­EÈšFR¯Bá¼!cÁï%ÿe͉$gRÕ’]m̘ ¦i¦eÁø)6‚ +æ^!# O÷éÊ-«P“·PK +ê2nã¦ÕÍ+ˇâÜŒOýAˆL/ zzq+¡!2}¥²zëÀkÎ1JjPgUÆàèGéD ê‘’?²¥Ç:à(¼qAÚ½ÉO´ÒìÁ’Bˆ@«Ö"Êb29Á$O×Êd´3°[‰Ÿ~ˆ§£bQ@Ý;,¥£6ÈD§‰®‚M×XZ5|Ôž5"ÍízÊPøj |ÑåÀúJ6ËŠ œ|A$_ä½ÊÄŒ^TÎ3E"ûç‰!®L=¥yRz² žÕÂPâ8‹Ü?¼wM›M/Ô1ƒ«r;Íð¾;ŒLýâŒ<]rC}œþ}$În®6i=£øH2Œ—ýú¸µ#7uàdx0@üÂ;µƒ’E–°·&óa¿m¶©‡ó¡‰ï»Ñðåìn{‡È…#§3ÒÚ›œ§!LãQ¼Ö} ¦¿hÔ/I'¤´¨$mC7°Žþˆˆ×¼cÁá—erÍú1ë¼S–)A<¦{­©3³64„=r%ȹ16SìÙÂJ/øá @ÊxÏÛ-"ñ9Ýù~¥#bTKt§Óe‚5>@LDhÞÔ%Ø ¤^H'™lŒùÇ£È?Tÿä(øK,%ÑßMQäKÜ)ß`ñ³¿¾qæÛÛvøÙUŠ¦e>b\ƒ +Oçmf<-ª¸JÌÀ ¨ê3ñy\êgC.ó<Ñ;S:Áë·ìôq²Ÿ4N¸Û*ø¸Çªô-"O´fŠ¿$á"òÔ¤YhÚWV¾A@mN{uXP<ÇD{‰`àÓÍ)“Ò¬7Yþh"€˜M¬Úô]Óy1¿âoê/2“Á³Í­•)²òpZ +úÕW®`(‘Õ‘îЦ*è¤|µlI(Z÷`{iÕ]_É-μ^מétìùaE+1J†Qò¬°ÁÒSÑ» +*ă{ƒÝj7η¿ "{C<©‹çÖû€WºŒ£vóC|1-Z\ůÞ{7rMOuÄiæˆSîˆâ‡û¡/ýp\ðÃôM ¬ekEJæ³ÛÄ/ö8ü?±hôHª¿UO0©Š‰…/‹Þm‘S_È©õËrj¦ÆÐœw¸¸s×㢚X¨WS)\“é!ÿŽ´µÊ°ô¾úÉ‘‰YbB+ èèÚžc+7—á®BÊê-À§¶½à˜™ŠÕÑÉ:×y‚ÂX×SÊ‚D±o‚iaýê£U¦y—B1ÛùŸ :ü8D£'†¨è"ÍYʤ(oR”MiÜ43À7Ñæt…„ §CÀϲG)˜t´: 7P¼>¬-yöÚuvÇmzö¢‰Ú›%”5AÀSÌÙŠãÛé\ìé)>¬c\ =ÜóÒñ`Ï]‹ÿÞ€„;lŸhÔ ì>¨-ù +)ÕÞ3Ó©û…èÉFò?/? k²¸¸Vøß³8$°7¾°˜¯åÆU +›§«kX’Ý4ž×aò™²ÞìÜåï'¾{,•»"Üh^ Ë‹JÌ{'Ä@þ Ì¿a‰ßï«„¢u9"~¬G§ü þmL«ó:o Y¤¥.è³TÄŠÑeED’;]ÛÁš^Qh†+}’^l¢9±‘ +kÁ!ÓlýÈSŽX.`+uböD=U*+“úCÐÇå}¿FT‰û…ZÆ+ñ7žý"õ/t2‘-Æ7•£qE> ƹï5c¶´êè"øeÒ£F‡48¯Ä‡’5ÂÃñãæ+zI3É¡yud™F‹0ÐÍ÷µº7P½G{àÀq›ï]—åµüždÄgÃÏYWìW\gmÙìÉ$$ƒ9,Ÿ®½±.´W÷+âk;Cù×n$ñ•®-íæƒ2Á¢ +îÞdè" CTɦ”åÂâ¿b™QOÿ S]ÙÔÀ ÏíÃAìÔYŧ҆±5±µ÷–òmó]éö#Ïv“\K·ËF®_ íð$^I‡-ÏþZOÝ Ãf}:«c¥R0HœÝÉïµd\˜2{fÕÝë¶[v‘ 3êù–…z»Ðó&®/[lSG´oB_ó&Hý—ê7?0hýœgµI²Zx%« "Þ«‹á6ÞŒìHl5X%û÷¿q‚{€R’Ä>çÙÏAà)÷œ»¥ï¬;WŸ½cé@³•XÒxYÓfAJ”5ï¦"œÏÓyHÓGà ÏfÕ¦šG]¬R]JrãšK·ÖQ6H§Í¥S¯Ä›ÉH\5ZM7Hz8´…ƒ$pÛ5I!•¯ô­ÎÞË_LG‚šH¼Á×I­ N6³å ¾ç/¾ãík¹ii·•u*šªGžö#9Âíâ)v&@™5‹N–ú`Ôßô¼T µé0›Ç|¼ù.þ—¶Õôœº•J5ÞÂ̇þ+Àdþt7 +endstream +endobj +163 0 obj +[303 0 R] +endobj +164 0 obj +<< +/Filter /FlateDecode +/Length 5157 +>> +stream +H‰¬WÙn$Ç|çWÔã4Àv}Á‚I+6$†hèÁ0ž»\ñÒë5ýõΫª²ú g$A€8;Ó]•GdDäÉW»ç›ë³‹góÅ'7'ߟ½<|z6_~ùõ»oÌÑקGi¶Î·ðÿ¼Ù½?:ùóyÿttrjnŒ5§×GͶ±ðáÂÔòé³é¶=¼ÿõÛÖXë·~hãÚmÛvðÀÝÑƇêôãÑ·§Gßþ7ý +Á ¾ Ç㿾?ùî®1ïŽþqtòããÙ=FøýÙý{³¹º¯ÿüuuòÃ7yg\3„2\ƒQý‚qZŽó4†Cl)D”žµ9¾Þ Ûq; ð_›Óª¶ƒÙ|¨ºí—Vu»íÍæ ÿ:ø·¹¨†­5›‡*l½ÙÜÃÓžz¾À¿¿ÂûÙ|ª¬“¯éœûÊ6øú¿žŽ7ðƒÇø½g£.1’ÛÊÙm0›sSÕÎáÇ|XM1Á#a;Ð¥=^z‰ñóŒIá¹1-óÇÃÅ/pVc6wç•Ç»1ó[LÉln*üÿÅ<_×ó‡2Þªñë³Êuø÷ÏÅà˜ë3«$Ÿà¾kó ¾¤Dž0¡_ÒÂÓïÊi\S4³˜«Zjø¹ò?]UÔÎáÓÕ¿Oÿš@ø:ÌÚf€ZH5ض+´©5À_?»Ógoß­ÔB¯@çÈsÓ±9¯Fl½£¾>›3øÝ2*°ºAÔâo pÀò:,/£A(¦¶â¿é8jä=ÕøÚ×ã U£*¼Ã÷º½`@¸ÏAB’Ïü­Ó¿qsoñìa2Jˆ ü^ªN/%áäaXÁS7@4‰|ØÀ+!¡Ø÷‘¯©­QÂ~Á¿=5±Å”n–gÿ O#Yî¦QŒ¬Sˆ=l1üìù•„p)ˆ½QÄزŽŠÆ§ä~«çX«¬£”ñø–RîtŒ+½eï1Ò·;Ï7(þhØd‚ ˆpÁ "M/8|¦'Z9‰ F3²‹1¢‚2©Öim¾ú”’ôXÝýÁ7–àëÆ5ðõnkø„Ÿþ[a®Òî*:Ž…G«¤µ„*ñ?iZA+7Qw>ÚBÀVrüJ:šHÍö‹ÁúìH(fÙÆ¢ Óah Ÿ“Äœ2xä‹Ô ÑeíŒû½â¢…P̤>ý[pÜ–áºîSú‡„RðÊ6N^·4¿{#llJ„ «k{eþ?Vóˆc±@´ØA¯Ýø¬¹"ª3m¶0dѨC–øË‹[-ÎÃü»—ÿmn¢ãä©HãÓ0Õ¼¡L~Ýjx~U‘7¼ÆŒZÅWŘ‘oød¨uÿ)Á¸3Iµæv4ËÇ!yñdí«0BKl m”?,£%xåÄϸÔKÛ°Y¨½£<°Û G8²NÒðA¤'®…vd!£‰Ø½+7|ê +}ìêMçFe +¿Ã"Ú’~V,· $³u¼¾R‰½ãŸRJ ÂåÉŠšÆ#2™M¿~î· ^é·q=q™²8.«óÜ”t˜’Íj¢Gņ!„;–u;‘¸ÕÄJ1åúÅñH•™?ÙNW "´Ú«™ˆ›Â|ªUåÀxëõ+ ×Â~ÞeàR[®añ¤ø­NÜ·«ÊÄ슠Sãµíšh;•ç›]ð{Áðº2»¬Õ冉/,n#ÌìI»-SkáP!É ÄqÕF`›W P1Fù§ªs‡8Nm'\© àþ`ìÖÁ˜ÀÒÂJ›=ß9 / ™î˜ÍëªS–_ÕÊchÙ½ñìö<»Cr1€8õˆ81ŽÈ~“¼O)|ó™b芅’Li‡‡¢*bvìï’dª¶Í¦sÁ.„‰×&ø\¦‘dÜb£z˜“Sû3àÄœ^Ù Û­ÚA“GXr +Kh£õ–±4à€ €,€’7óNºáE¼ÔÞø,cuƒß cÆg©þéážOzÀ“HkÚH a–&ýˆ xÃò°î_Œ¡(Æiõwi×@ k`çáÕà›¶¨`B JRÛ)<€Mç›øQœ^,_­,©–v¹§¶ƒ˜ÊVØf@’‰÷úB¡ŸHÓ ±Ž^5­H~2DBÐwÂb‰ËãUøÙ~”[9’±ÒÈB$/ØŽèÉÊ`fDí2õª6«‹}œ>ý)ïíD8E ÀÑXzÇ®[CÌkHȹÍI +ù¡Žš—qºÂ=c­……0Ó1º¡˜o°jcaÍ¥‰:=s¿~éŽz +¨ƒX³†Ç¸<&­4±U—Ñ¡Ì^ÜqøùìEÙ˜|Ìsfñò…}¾p*MÚVò¯Ù[ÊñYHZ|32ó¾ÜÀâÇ5‘³”GÍÑøu˜ Ù{¶iJì¹q { T'a/˜Ä€|Û³NEoÂ52lâü6"@cÑ Gtÿ"¢w Ù_»éâ›öÛKÜ{Füô„TO·¶Î´œ¢+D÷çzŠËÛçÔ%^p7ǹ Kð°ü …Ë,fÁ½bp=›‡²9Æ ß.ƒ•BÚv]Ecÿ]Å‚I(V€À~6 xs¹ KeÉ"cpô¼a´X¶ˆ»^HLdI!ºÐn±œ¼¿ãg>˜Z0þ.Ï÷U$|Þ?™­R…]-Ì-kZf¼3ª’ã*õT¥NI_$öXjQyÉÑüX±²“õeoðýßeÏဗj$õÞ¢1t¼Iía¿†5ÆÁp(1 ±¯`¸‡¹OÞÏÓù}<"寥pAØåž¿"j×eB6IMÓûÈK¤ÞtFº j@ Q¤ãÈk&ðÔÑ™é[F\¹øŠÐ+À 3‹))GËV±{Ó*‚!¬û‚³Ù§„É5¿|dèRon…ˆ^ÛVáW&ÀÈ +`Ú^íª?Öã2û)ÞÃNõØ)îd¶ƒT¬0ï™H5{ÔϬ(I\µ³—Ųôö –iɺ÷ܧú¡L«£=ìùDKˆsLÈËž½ò4+*€Œ®xMSí œ\D÷1uf +s—\Tq·¤ém±ptÌ•ÚŒn[ŽìØtšqk¨ ^í©}óæœWÖƒ†t—äÃÒâw ÏyžÞü"øØà_DxÁÞúRKSÑ—6ÁÎâkÇ:íLµÌ|(Õ™ MóI±Êe•Ò?uWU ®9©,4gÐ;Æ.o A…JÝózÙ• b “jìñx qW±38‹«î]\1Û= +ØOUçÞf)ªcûiço<©xZAV?!$·¶z7*û¿`ògÖ8ö#.dUÏkZI¾œMÞr÷EG,÷ºT¾æ±³-‰GIZËfbjhΌھè¥÷ìDî5Ã@´x1÷ñÈ9I©¥¨+Í¿Ó—ñõ¢¶„ÈßÅ–u°½Òºè¡÷аî®2v ž¦³bå!Æ/Ú!a?%T\ õnÂ’g¨9!ÅSÃœ•€ïõJÄ &^:¯ð:±¤5#"o¦âB*&ÁíEUÑÐz*r#Wpìý8°'÷ö¤PÊ|xn†¡0¡‹flÌþÇÚRƒü0i¶Ýy`ÌN÷§Ein W‹kœKî]ÒP±hÊÉ,àZ»âì ÷s…™oŸ*š=µ—8evoY pØ暪,s‹w]W]¼¹Øˆî,q½š-EñÑœyV;œJÈM@[ÓÝäÊ9°äÍDŒ3Yì _(É•ÂÁ•õ%ÌBXá[§¬Î›²°†•´†äNwE§ÕÀ§#ÈX=JŸþÏz•í¶mDÑ_ác” +93’EaÀuãÀ@ݱڼ(YqŒØŠ!9Kûõ½Ûl%‘q^âȦÈá¹çž%úR‡¼(H{^²VÖ•ÄHÈ“nƒ¦iFÆQn˺‘â½ø^ c×ᾊ´zg‘"Á=ÀƵLBE8Ï.õÃ(&r‡ô9Ý+>ÔÌD1!G¹/¬èFE9xªÀõ5C°où㎃SgϲÓNü3®aGŸèoï ¸›ì·_nðWCc¡½¾ý$÷ÜNxµ.yµyÉoVÒKíá°j`‘Åos–Ãpþ¢“½¡ÇÒãài§ËÇÏ‹»ùêÛã/ç/ÎÏ˲ìNNN2z–ÔK<l*¤7xÔ5ÜÌûU‡‚rO¢oð?>/±P­Ci þ`‘·_ˆÉЫÔp™–‘Rn|LË5¥_j”uß "Ê}bè×ô¤)"¥qÔÙ×eTÝÌ”CúÒÎö +EÎôÛh¸AtÍGÈÃZ5C~õâF%…è“aVp5âФ6øËÙpæ´yת“ºé–>-åK×´íœe¹(mÂãù…K7w®vëÀ2+eô¬tH_À’WÌ‘^@›— 6t÷j°?úÂùú:çö(‚¸â¹áX¶^äZ ·œ[œ SšˆW%­àÜuO×kü6®fX^ÍKsìÆt¿yÞár,El?Ðòéä><ä%¸±¦IÉi(Ûe/q—ØÊZyŠEj@ ‡g‘-À©¢"+˜ aÐ6ã= \ #­Ÿ2žà¿Ì 2ÍÓœŒëêÉ*Y´ªxÀ¦gOn9jöÌ8äöDFËu6.Ù=9§I ô +µlotæÛ9[gS¯ã¸e’b³a €_wøó9ŒÐrãŒòžr#—/ÆÏZG³š02zgÂ?t¦h=”Êá]ê(3òÚ†<{¬¹ÄÉWÐrsv¹]LëP^'fýËù)̃ï½ÛÔ)›¾KõÎæeòÀ¥`~oþ÷Ü k)Ê&¿Ž…ž)«¤´¬½”ú„pË鎞1…‹•1L¸høŠŒ‹Žõ.gÏiðª^æ\Ž¨¿`=VŽªÖ{¿Ìá‹SA>y•ë%© 5¼€¿áϳ'óø¡Ñäêôþ!ðˆ„eZ +²+ñ§ªvÇ”¿ÃV÷*rC#?Á!,ÌÎ0ºÄIÜé£ßÆUȪec¯¤,ˆö€AÐFqnïfx%:¶…gR)1s6á9bÈ>-Ö¤VwËVluF/8žö°|U +1ä´JJ–sßS‡¿Î9nEEˆÆF؃ÚX6ºv°T9×bŒ±oS;»"$FPf¼Ém_ø\œ/8Ûþ'ô‘ƒŽ‡©;²²àÞýœl2½¯!6¿}2BÛ¼áD?¤À¼cQ¸êË./šŽòXvGP´´P5¯?lm‹1ße‹¯(Æa!ºðà4ÚeSþþ„ˆ¡Ë#ˆÂ½-^½Bï3?‚f‡bjÍ!µ©ÔmÛÈDYÒÆ'E¶Íf©d©î±T9–ÖÓXª«#˜–U0–·p²OpŠ'Ñ!gœËæï»û°òÔl5ÎVS¯@N[i­[”<ƒ#½°äæàP–&%IqZ†Û¥Ë|4Ô²*Úùö{ùMÈð: Õ­ñ<ÉnȦºh Í ®"µ¶3·V‡‡1±šÔ×0«Øé-úœø€Í‰œ¤JfŸ]\ÀÜPÊœžÐ‹´ô¢n_úkû&ø¿ÉyjC +endstream +endobj +165 0 obj +<< +/Filter /FlateDecode +/Length 4608 +>> +stream +H‰¬W[oÛÌ}÷¯ØG-`IÜ+I#à\š¦ÍÅ…Õ~vQ¸¾Å­eù³œ¤é¯ïÜv¹ÔÅÓÀ€)JäÌìÌ™3g¦‡7WgçêÅ‹ég5ýpöcñõQ½|ùêÍkµ÷j¶W©jb]€ÿÞ;õp½7}w\©ëåÞtfþQ)£fW{ãjRUðé\ɇï*NjxþêIP¾õð}ˆÊ†I˜ï\гí½í½ýž~Gø>¾ æñîÃôóJ½Yìýeoz|v‡~8»»V£Ë»ñ»Wzúñõû7Êçúá*ŒêߧIqŽ³saªIÃOZÕ„‰3AÕ¶žÔ1ÔÜÉèP7øèN»IÄ‹¯zlñ»ÿ¨W:NZ5:PŸôØLj5Zhº<è€ÌÏàw¯FzìñëíÔè›6-~y©.øáÅ9Ø6jôUc,£9\9q‹1A>—úï³?åd=_¤c:›I Š¦¦£>¸Im=i}ãùà38„ó…x©®´1¾¾…_^LÃ_Z7Ã}‡¯ &êâµø†Ã× +>91 I"sLÿLÛˆ&ð¤›0tôoÚÑó˜0ëñýqÄûsòE‰›HùË»€W¨–ÁàÁd‹¹\ªÓ‘ö z¹Á`৉65fýPã}¨Ôh“«ä(îâèÊfÑ€Go½ßžUB/Ò§Þ˜6È‹Åïu‹ÿlƒ_Kú᢫0Š3]ãoÿÄg ÕFò¶=󜄥¼±¯ +”Í6©¶aª´fL-1Ûσ´t¡=ŸC²ó )û˜eƒY]}^]X¤4~B)Á<^`Y©U=^rºrvÔR¾¥ŽïOõ¦º5]]Wꆨ{m>°«…”ë=ÊN¹”K)éMîñ±Qk«Çt¼/Xî‰m(€ðÀõx³%“b"}KñŽÏ”&ï] +  )H¸·Å÷ŠRIOÚ^ +n16¬¥*š>·°¡ŠD ÀVìùF\E8pÆUqê1°k[f]Í…GH¡±á*Œ2C†¥ä€!¡Ö;È×6È–ÒªÖN*ç­Š>NïäEUUîe1 ŸvÝ®“Ù”ž¾ÕÆïnµ}fˆvs¤²<éMôý™ +IkM/Œ“Ñ{Mls§½¡õ<é,ÕåiŒ~‡²xDšOh’¾qiÖHã¤ç|í–_jš®ó9½ç*“Õ›gÍÑû3èRbv¦FlnHj°âˆqðAéúöž¹ˆ¹Ô>BEBDÌCÐ0„<>Ê‚fs_0OD>†¢®©ñ#¶øÓkÑå KT0Õ-±ÎwVùbxÀx#¢€¬¶°4=i›…ÌÙmiŽ\ë@;…àèå $0Š¾å`™$ š'pÀ›³Ý;’Ôkö$Ì2š| ÛCbJ4ÆzWD{S8 …Z'…Zoí³“˜q;ç±”h,O{¨Æ×x?Õ5Q*&µc©ÇI.,q|DæÎËuu‰tÛ`Ò(£8ÆØ@8–òLD¢}¨é=g…p“º0—3Õñ Â%’¯Œ+ªÙ]>Ä’ÅÂd@¡ì@ªëŠ¹Fz´¯âpÒóî Òë[@zÞïNz!lMáÉ‹oJí—ØNÈÎ +Û­Œzú!tò·“ !aˆç¯:FŽ2?¯¦{ŸtÔ¿Òõ‘Õx¶•„©Á nô_™¢›åz)k˜@÷Õ{Mî?AZ¿Yª!zUnE°íé<êÔZ£ ù;æíèŒæ:¶¦ÖJk†Q bgY¢H¼ÜëJz—ÄÊ9^C!Ôµe"}"¶ÝeäÝàÃv‰“Z°ë+¡¡bcžV++#ë†Xë­ + rÒàø²X¢Ÿ¯)›¤MëuЩ¾Þlœg²µPPò9„zâ@ê6‰s ûb­Bí€{âÏPN)ñ +ÃÂ:+†‡°N³#ëàЂB#H  Úuœ!œŒ>Š Ù¬wyy¬úÅÂÚV¼ØŽ}jQùù[ìfiŽ%W.óê&Éõ#"®á­£Û§Ú‚4òÒ„8¾%ÀRh #b¹çˆ@Ÿ§•V:®°' ø )©×Â6 Ð0…ŸJ¸D¬2¢yhß½BÜ1—…jZvz™Ø’L•&䢛$Ò¸ƒA0XûNï…Þ‡VtškE½²‹;MJÍŠRH”½{#µÛiÇÛÀpv=8A¬»Â9ô„ Öàü˧ÍšI“ lKÔ»ÔÄAg.TòœÌ3D³Á[kRJ o ”œéúkÅQ½¿áã¥í±åJ5QÔ³ç6`¹´ÐTÀî·hPÙ â¯`~™t +ÝÊóX°Û¥ÓŠÕ$ÜîÒiëžXº?aEÒ”Š¤¯G ´íª"Ykþ°¡ù×'èq€$xBSp%œ#ȶIf¬Ž¿‚X@Ôx¥à³þ°L—Æ°ˆ{Ž§Š¹ûŽ…6ɤ™=y9œô +Ü¢]¢@RG:ð‰8 gØMOåX/¾¤ÊžF–æÂú˜é2‹£ÝÛÃ?ÅJ²ý•°ý…Ðg¥°mç H´ƒ„."‚Fx˜W¹ù.ª»YB±TÝB_‚ð“øYçU!¯¹¦‚ˆ1©®s¾½Ü(@b]o‰G:Oìd¥z#Ô+³œ¸ +b$k «„çP¾SWU×C|~ù kÂöoêt„x†0þ¦}`y+Z k¹ý ð×`+ `©/qb«!ó‡Ípu†‹…®§“T”=H–ià°§š8Æ õ/(¾²ÍÏ ŒfûÀX±:d`´»ŒÊnÉ~éþdô¬zÅ­°ItXF$ÅŠ M+9Ÿ) Ô‚ÈM¦í>íÓK8B"¾±h„Õb×EÀßܳ±GÇš:QZê:eÞú`ö: ‹zeXu7,`\¹BW§Æ.T½ëQ¹!>ºFÊ«‘LÒ¡6-‘VÄ?òÄN¬²{3Äj¥;­‘]¨nÖ‘QÊ”‘ÑMåö’þHk9Çè ¾…LáOpE‰í"åâµæ`€)}Ø':D›DˆV±FBì£5$´†Mh]B×"mÓ¬h$5š½¥bFZ^(‚}ÅkŽ`º-–W£¡þvãe» Oo7$Ø2^dt’æM, 'qëúã,oU»#ʬ +ÊÏ|63N€mÓ$Æ“€*°sÜ'*®‚q²¢ÒJñ7¸Ž ÔMÔ]xžaÊSF>Ø؃Š2&»€r؆Ëý í¯›!€m}3|†D÷Ä é[0C¢ßy†X˜7[*Z¸?ÙØ©¦èÔZú´Æ–èi’+ÝÃ/Ñ¥édï¾d¡F–Q“–aqáøÍjéÔÂî1C"emDœÃÝtKß'Þáf马×&&ç³ÍéwϦCÁ}Å2”ðÊÜ(63;LþÉÆ3ÉÑlùF¼EVÐaû^ÑÁú³Î0øMG˵L‘“˜ÌÙLB ,õµÕùÜÍ„L§VV'TŠt¡ÔEmâ@ãÀþ^íj×Ö0K«ö'ººÞÞÕ+V‡tu³sW›6n)géþdôWda¨ß'h„¶£Æ<‚*Ìö¡ÔrSíh¨!YÃ=,³¾öf½IÈbKé•Î¦%àüY‚ÆgðAc˜lûõß"T †™ni‚ìgEqƒQ ¶ñr©> +ž¸%Ӽᎄ…F# é ‡Þi¶Èú…ÇÐuÚOúâǨúN}{ žDì'q;€TÃø§)©ÀFžhŒÿ!ÍÚÛ  †ÛxÛÞhr…7È0#¬ÊäC¼÷ï¤ï² fí +l±¿¹}åYÜ:))ŸPmùR°¡!ÊÛRÃlͶAìiß²ê$Y¹Æš™zªWAÌÌÃGšÄN©óXEÝ'9—™=0a&õd‰JÖÇf(Ê€!ðت@YšB|š>gáìUkArq®¦Ï‘¦Cqª ‚†,)žÿ±^-»qAðWö˜²+΃3¤n†c ¢ÈÈÂÈ%YË,²œ×ק»º‡rÉiéDî,çÕ]]UÝoÙ–ïtq˜Rµ€ù}$ät@:¨ô³þxYY·a¿™ˆLp½ð‹5Î/QÙTâ„—_ɾ”îC½k¹ÌVÓ}rGè~¸ê +ºO~!ÝO¥®Øõå·(Ðsµ<{%q¤Hš§c4N¹õ<9ziźŠ![¨F˜ÓÁê+j·s4o€š„¶ÐaÉ/ ‹€Š–.ôžÿ™&†¡;âÓ¦Dè¶ÖIIÝ¢A».¸Ohîw]œÁ#îÖšv_ÇðR8² ]\Æú‹®c\î=¼#”~÷gAɨø[”‡©ûn„X¸ ?²4rp¸ðÖŠ’m‰½Ú’§ÔJ ‚Ê“(à¿| ÈÊZ‹|@¬ËJC<ŠÃeèxq,ÇpšW‰Ðcj Š¤þ°5‹ñTzÙ)¨Tí®ÊPY]Ç¿I÷i¹gê½gbgÛŠ}Jø=hÏ—þOÏãÀÏ-oÚˆ l%‰Óì!⧦A›xB_A÷OÈPy~¹¢„4%9ùšŸ;ã!§EŽ[uàÙ^쓸VïdQ‡áÛŽñ†Xb‰Ž Z œIÕ—–KY®žP>³þFXŠHœ=˜Ptfj Nòý}Zj_È”®¡-«Ö®§Ê¦š§ÊѪ+¸²± ¹’l]UÕ3dYîÿªlçØR»¯‚/Ý_¦tŒéJ¾ÜŸó‡Ž¡Óͯì`Û'§H~ÀÂߣM7áÑçh3ŽiÓÏÒæQOÑ÷+luSAd—Òw¹Ñ—é4'¢‰ì±ßký]S1!Tqi¼v0”™Í9b@¿ô³GíP/4UO¸®h68>/Š·€ÁŽ3ÈK_¢ÃA¨o˜[˜ײºWJtêΨŠ¾ØZ!O'E®ˆ—_YúÂÉ¡< éPÕßCá W]CõrÔæ°Qì^PÀåodìAÕùìGfhNÌP\s)Ì(fQïY›¢åK) EÇ°þ5&ŽëËFAù xÅ +¦’#8E-°s1(Å Ó—¼©¦4N‡;zâ Á67ª~7<ë‚·ò}67z‚N[9°0eKë²{ê"‹pnáæx|9_˜ƒåÅçÝV]Ì+RÊTi‹Ñ8pr;[·s#3â:Ƚáx¤2’e,>K,5F_9¾Ì*›wdRb9+C(½äg=æ^‚Ì_ÆK _ËBhZh·J ^Þ]–br±yËØi¦=›” ìd1M t9Àšv¾À +?ß L—00ŠIÕìuEi³l7@†NÂßdµ£À|¤™F‹®mká ÿÓiÓô$ÿ’± ¾¡'k&gW1Zä*Ÿ0Q&Þ÷“pH/ŽwBÝ[Ön_€½_5vdüÄ“‘~q·ùÙÔM@Ëß~4^Š‡ú˜”»Ù» ü`&ÜóÙÊÑûHÜ®VÈ|[-a¶+˜­µcËU³Gà· ¤ø¦CV¤¥ ã;¤e†!å~â Aì3ABG³öÙÎJ*¢Ydý˜X@l@´l¿t»ÃÖµFªC‹6ýw„ØÀ‹Õâò¢¤3/Íð±ÈnÖÚˆ-õ÷Ÿ”%Óȧnþ‡á'n¨^é,gúÇq`ÀREÛ9] ôã•Ê-Á£™Ê3'ê'_Ë ‘ËûÇ~ðpÁAØôJy}‡j ÌÝ«¹Y2¥ÔX·ÞͶ~ÞÍŽV]áfÛ°ØÍVi®Õ)·/íì™ú„‚Bö$ã.u–!£Ë=roµâÄTl¥?#ç™õèUa˜Ò!ÎXV=Ö–Øo¬‰p¹Ôñ´Ò(ÕØŸ*«á“U„VT84šcNÐ9 ðA×æ…w+uŸ§ÔÅ)÷FTîÉ´r©6º.ôÿŽŸi`®EÌT{íSuà]'•ÕoFhkÇ)~ó+×Mñ¢ÛìbPfRM‡òh.OMƒf䄾ƒ’œ˜dù¿1¡Î/i½TÖòšªÇôžP4ò2 ³HlÐÁŒ `×™à÷×jÀ.ˆÉ„•­Ï†4)TT…pï&˜­ áµàí ,Bk˜8èsŸi† å +}˜å‰0;nÔ¢„›µÖ¨ßsü[†å}Ê + +endstream +endobj +166 0 obj +<< +/Filter /FlateDecode +/Length 5698 +>> +stream +H‰´WÙnÇ}çWÔã nv-½†Itœ’ K#èÁ.CŠ·pF¡è¯Ï]jí…gºênçž{îáóûÝåùñéN|÷ÝáÏâðÕñãí—øþûG/ÅÁ‹õA%ªR›þ·Öˆû‹ƒÃßUâb{p¸V+¡Äúü *«ªëSQ¸O¢)[8ÿÚ²J™Òtu't]Öug®V¦‘ëß~Xüð,ý Áž…ëñéÕá?®+qt{ðËÁá»»ãôðÕñÍ…XmnŠ_ÈÃ×/ÿu$´ê›Ü]^}F?•÷S±Ÿäž%;üáA¨ªìøˆf7kø¾ÕmÙšF£Ÿ¿®žK 1¬nnd¡Á¶,|ü* +Vâ¥lÊF¬þÆO¤nJ~©.•XËBÁý«;|†¿·pEià®-¿¿ý" ƒîá×þWªº´xƒ‚óòßëŸBŽžÎB›dáp½®bȪu!ãYa¸ek5†œD­t©T×sÔïÀõ®lÁgðQSÈàdWöbu*‹£Ùìá]—ÕÈWš\©È [—Mß©Ì Hk‘§ ô‰ªsV†±Ú`<°òëJaÝ ëGÒTbõꨪƒŽ…ƒ_‹ÊPÑŽà •Å_Îd<‘†Êk(eÞ—?c1áù™x/u߆TÇ.Ñ"Ù %M‡¶Íâlêªe³T•dÔ×µéÀ©ësñ BÌn¤FÏ% 0jÑÃ[øcØÑãÜŠ­$ ”u0€±ê/Rô÷Q2°Ÿ’,‰,z¼¿RœC‡Ä5fÉR¶¸ßàË|îæ½Í.:øC'ŽãØ<â_CÏ,>ßBIàìµ»®ÁëL:Ð~s ?á;ÎöFÜoœÉ-ö,QgQôþ”M„—Eˆ ÜŸ¯0{ø‡¿EÎh©q\z\ñ™Y6È +pé™Øj€w=Wý¦/ëPý¾5ZŒE ªœí\z÷îy|õzÚ¦ï ×!”¾cøpî¥jRšÒ…Y&Â`¶KªàÄ ãöš(â„àj¬ !ö­Ä¤_RdãT£ÉÚ™´‰É[lRxó<…@Žø«x 5ûVŒòxOsÒ¥$³&š3éÃŽÝœÈLhGÉ.•b͘YÙ;:¥ ÊYæ¨ëÒìdYi†<ЦWš©.q‡’1GÛ˜ÓÖáÈ$5Ú'fÀ1µu;‡«’¹ +èo”›šm͉.:K1C„ ‡Zà¾ÜÃ3›‰õQ'¯ñ¯™x $ECUÈËÈJ8s¦Q”Izpìr%‰6Îø·KIa\ûÜTÀ«$_»ç ŸV<¹“*˜-–E$|÷ ;Æ)Ù?fxÞ¡ÊB¹‘T¹­÷ªçŽ²Üy½S‹š!Ý¢X¬éÀßùÀÙ¬'¥cåýìh©Àx߶!¾s‚Æqó#tæD{ ¥×ôÉ1Þäâº{ªC“TŽG½›k•W*!³óî=^¡¼kŠ*r»F#\u4‘5½“ §‰I'l¶nYH¼co¢öØ ÂÑ}JÖO ƒÝååáÆéÅx>…´…Êšk”äkV‰™° ¤XKÕ»®ÚÓ˜Ö÷n?‚]ÝÌû¶aØåIpÌÂÎE–জ”´rõèŚ͇Taù/«gî¾K·òíh(Qú©Ê0hTe±ŸLw¯Q2ø‘œBqâ.ÇNjÆ3è>k)`Ü]r+µÁçêË:i í|Ô…t¯"á~—(¤DŸódv&†)ü=Árƒ>íDHS3ów\¡›adó*ɽúy9¼»'àm’Ö˜ zÀ°‹áÝç‚«égµnè´£l¦tÄu‹’|%˜Ô΀8KÚT`˜èJíTVùµ„}†P,I:É>ÌrÚ‰ÆОtW…Õ„c©vtÔ¹u)Û+‡º]‘ß·qÄÃƘÄ1JÚåZmÄ«¹Áuwá¢íÐ/­ƒÕÏÉ:Ž,V¼ÅCáôåx‹Á ¥HrXVXÜ£§ä±E¾û0°2|;‡Ï¨!à3°Éúª 8gh°^S@öÏFKÕGz< 5iÄkrÜ‹rº ‚á—ï.Þ‡˜iwü3ü¢ØN€µ&l—ã¶Ûr7á.>AŒƒñ1cJR®é¢G + ™2 ±°pò‘B¶rÍo䃂)>L<ÅüÁ€íÑì§}à£2øZæàc¡>ãÔ¼Á +Ž*Y/©äK·'Mµ ©4 šQ1_Ç}54wŸ’yã ;¨‘¤ƒ×ï¤ì>w[Ù+Ù¶èÞð–Œ>£ÎéW¤7ÃÆ ’µ±_3=uº'žŸÉsûM“Êuüæí>8Ñ9ͨYšˆ‹E,­[ ÐY““‰O7´¨]SáôØO/ 1¸SAýQš¯)ÐNŸ"@\cr-7…»•œ^6ÂÎà­ÜŠ“Í"Q–ŠsîðÐŽ§¸ +î{EZ%$å€ +¶<üµ3›2CžQ¢ƒQýuÅi–GÁX\»xš=H.”²nÖmöŒ(§YjAŒjIæ¸/ƒÎ¸û^š¼“Sõ”Ô1°«C‹ÑoBuY§¤mƒp1ø¯ˆ%´=üâ„rb8+a—É®ù–æ°Õ¶zl?Kã ßaÇìDº[)Zlfç;?FhÇÝá ÛKçj¶j6`½-‰Õ–CÄ.ØKSxì±—BLñî)ÔU&ÑëIôNJkå*JIÛ2¹û’bÇO(½Çø™XS5ìÚx°’|ÆXjPqE™Ê”ÀBXéåuj²VÖ¶´²iÊJ·µ°°dE‘ùA6š!éõ3饷Ä/ÜfÄP¹ßû‰Ç5xdVÛÆ–f +pE}¨tWбxc‘Vø¼ ]¤n11†V½w¶µÞð®æíĶI)A`ÙQÅIÖ¢þ‹÷x¼ñ¢`®¹p:0‚Ô=꧘b´Jý1½Ú'Z˜µ²Æd0X‰å-Ûå0ƒF"˜a¯KõR@4±mÜHa.}B$aÖ»Jgx½i±Hª“»§`X™DÍï(ò&cÖ@•ƒ•wBý¢bͨc{q²xBtPv¯M)—ÚjÜß µ3¡{Ù#Ð+ü°GN„&{z©Ü§ï›$͇kõQ %ÖçD$÷T¸P[ôˆÊ c Äe×›–ËðÅ q”e´vn ï ipÞHÊÀ¹¤ÀoÿGzµôÆáûþ +E@Ô²_|ÄA‚…ì!ˆøàC ÇXbÙ%¯ÿ}ª¾ªnv“œñP{ÑØ3d?ª¾ú,xüÐcíŠWPWÔà +J×%¸óÚ_ž°Ÿj¤°;Yý†”øáûÚI§Y>¹¾;yó©–ç;É^Xæ®FEi þ]c¦ýó½†#Lî:þó±wÝÊ}?vé!qU.OÊC‰>é‹á8¥ø¶ô «¦ÓŠ3±ü#KˆŸG¦™D@²bS¥Qk¬—' +#œ{ÀlV;u·VeÐèL(ç8î_Úf}ÔÛøŠF]»›Øí]M¹òâÞ‹~ø­î{~ïý\ ¥S4Çrª æªM@šçÔ¸¢Ãõj„¦ÆÌå¾ð£¾`EJR9¿F±lݪl'Ÿ ¿–û]>R´ ŽV—Õ†HD/®ûºÌ’Å|× •ÊòÒ6«m~Ð6Ïm[¸êà_uEñ@¤t T£UJs^mP€Û )¡ ’jB|Æ°U,9ÈÏ¿UãÌiÚcNÓ9 + Vw\§¶ËÐqª1 ªÌÌïk‘Ø„Âè}¢‘ ôòü +kUx.ùc%rMRш|ƒ§Ø"|¤±°Ï‘q&B)7ž{›˜>fôw;’sNXÌp†'"?Ëj•ÏÃÐ"©óÜÕ@þ¢ ÷~„ÛyÊ\Q‡˜ ÏG–kgÈ2Ç€Å^1+Þ¬9óŒšÕØx¾jcB%µ(|)OZ °Ø_Ü–÷•€W;m ü}–z^êÓt4WØ}Q‡_±ïz‰š._rä—'¥˜n±Df© „3-¤·Ó·Îá®@푉͕ýüh5q稘ãÉe‚IK#ÓS8L®™,öÇ-#†áØ@V`¨û‹;(—Òƒž¼=9£ëÁ4Wƒæ­QŽÎ‘ÁÚ["€³³±¡««ï?ÆÌvô™s|ËÈr|æ2½'l'£¢«×92NU}ËQ]Ñ6ê‡ ô×{W=ÝÿôóßÞµÕý᧟ßÚçý¥ŽXÜc¤kPÃ\°•í©Š½Å5þܶ­û˹éÔùì ÅÒ±BåÒƒ?éPÞ‘K_ý—/gp¹äïѪ1šü”Ñzi„ +o-zF"ÚÚ>'Êz6µØÝý‡«ÎÞÇÔ{z @2‰ŸÕeÐZ̈ÒùCÝÉ€¨`Ô ýiCûrNå®&¿*IÜ58ïg·\8Df #ÜÝ_ ùh†Ì¨çZØ„xE£öÐÈ;¹¢ÌÛ¤µ±¿©2ã¥Ajä?b?V(0™ÿ……3ÊxÑm-£Å8£>ŒåÃì ÓûUÚ‡UŠJ×J»¬àá—K—_Š êç§Â:ÐÕå†Æ÷Ç :P³[O\7›häì ›ç“€5w ix)\‚ÕAGî~[Q5y¼&ˆŒ¨uƒÆ…©røö…K+.6ÔmŒ>Å8¹‚ÖJÏãÛV² &HöèenCuûÌl +Çîú茎±e׃we‹ê#75FƒAL04„À€ëÉžj¤Uš^ŒÂÕ†&Ž¯¦ë1*¥íÆ®²Þ]™WqµÏmḠêrÝ DíÍf¢¦DGñ'Bl¤³Ó|¸x_‡A]¡´=‹/ÂdAE”›yYí +ºíÕjÚ”—˜ªnjx‹ —_ãè{Bdy¡6ÚaÐOpgÔs|/ŒÇÛ<ÒnýšÚC +6P¾·sÊ窅r0]KÅ3,áEÁª¯b5¿Ç[íëVO¥¹.²óÿjäØçeà˜ÜØÒžI$K67.–ص 2)šùÿ&!~oÖýÞ 7Ų¥Í(?Zs´ù’\x´ŸÊ´¦ÈsŸ7¸)_¸©+ÓÚcìG>vLE^Å[è‰gó>9|.RkÌ H‰é:!ª¤Ä;Z%åÓeR i‡L0ßÕDé¿ðRôËou(¾¯G¼ñ¦JÇÉ?’æ…RðhŒF/[ä'²çóp˜Ÿâ[<º¤³I÷ýÌ‚€FÕ¢Ž×aù +~äáq +¹}–¡~R…7àÁŸE TŽ>a!]Nmˆ/°¨~/;ãÜVTŸÒ±˜Å³ÃÑTGê@ÇõÏ —¾ŠÆi;˜ý\>Äè㧢 ^rÜ­Jtæ²"¾;M41çb‡ ŠèÃFE\ê`Û¾2³øënÑÁ~ƒZ£Ù²ó'u0;͇‹¿#’0Ûí¯ocú`ƒÓqybayØé´2«ÃܼÔ’C®]y‹ K9jéËb:lKb×:;;7ˆGHºƒ÷ï„2óÎÙÄ! û,þUÝ +U©€¼Š‰saéJaYU ã¿¼€ÀBdÍ\sŽŽŽ£¨Ö5™ú ÝC,ÑѬ$ŠÞc2ƒbx!Ó—HRÀ,ž¹ÜÂs…-½²Öá:3t™ëÿ•y…®òkM(£-ÿYÝL%ÐÛÁÌäƒ/fÆ} BŠŠ²cKãÖ!\ÀG]Õ¾ç·ÞdúÔ¨koÆUj]a¶<¼Ùs›¤A2—¦ÙƒåƒH÷‰&jF7÷¼œ_CP’TdJ§ô‹ã_ž1Òœxo"P²ÙÀÜŒyè]:óAÚ3ÄŽœeæ.‹Ö…â‚8ìÀhé´$&Gö41­X Çp_iT¾PȨ"SR£­r22o¤(˜?*E&ôÉn“¢`OIÑlÝ RÜ+"™ '¥(?͇‹Ô¾ÕV¢¥O … l nŠœm8ß0íciHõ!-¸™¬}üÞIWjyŽˆõù@èþ0 Ûñ• ô'Y¸\w g²0Nrov†o¹Mî¥ÉDÒôVÓ™ˆ"ÃLêù7€=ìÔ*¨¹ Ûs¤V +å«ÎÏ.­%Ý¥$`Š%¡mÍìbû1#l€ªÓ…à ,ðÿÌWÑI‰¶~È…ia.«ÉŒ Ý.Œ!?Ðó£§ç.G{|.yËtàèø0^Q%&îxT§?9Ï)¡¤EÕü4ÌCŒ†è™L&Õs4ÀbÙ’>Ð8ö³¥µ"'ßÊ.7ˆð ^Ó_{4/ÐÕ¦¼pPŸ»‹B'w7Qþ%¨ò혵¤®EJI1fS=¡¹ h›'ì÷YȬ [Ù±´Çö£§«'þ‡ˆ:€xØÄ•kÂRÚ’ëþ/À·?À× +endstream +endobj +167 0 obj +<< +/Filter /FlateDecode +/Length 3829 +>> +stream +H‰äWÛnÛH}×Wô£ˆhv7Ù$Ágv0‹ƒÝû2Y _O|‹íÄã¿ßºõ¤V‹׋ZÕ•u-üß4NÝmG?¿«Õö~q´6¿×ʨõùbUWuÝ©õ‰’ÊW¬]Õªfhªºñ½²mÕ¶Ö\-–®Óë??­?½…“>ÃA¸×Âöø×›£¿_ÕêõÍ⟋£w·›kŒðÍæz«–g׫ŸÔGoy­¬…ýŠpFõ ã4!N“ÅéCœÏ2uÕó«ú¶ªÝШÎBнõæoË·zÕ‘zeà&ËíÕòã^ùªQËSø`ñÃ%~£–[z÷Iÿgýx³çc·YìGëµ$”sQÈ8Æh8B“"4¦|ë8Â5ÄÖCTÚW îu_A0_àëc¾ƒ )ʯÚüåLz>Á«P(\j~q£! iá¥6nyªtŸêÕ€¯ÝÉúv5.T7º©œZ^«úª­ÁÃ6°‹© oà· \ÔQ&]e1“+€Ã€QÀ±-”ay®îà×ߺǧÁ·-¾œmæðq·ÒGu%Ádûšž~ÂKµx©íq*[Þ«MxåÆëÝcu§÷‡5¸>†&Ù¸ ´â.xºÛ§óT›ŽWÐÁwêA˜’u2\Žêʸf +~èª.BáJoèô¼¤4ñªÔF[…z€+QΜüPqုANá×[ø¿LþÙ4u¸ÐâBü û3"/ÂñxûªÈ\“½n W*¤QÖ]éUƒÏöÊÖø…æ("îÞCÆäÛáú +¯Õ!¤Òm—Lu 3´ý§oÀ‚+fÎrÊ‹„úžŽò²Ð³~ìºA"Aü$t£lâ&”sØj JE%ÂËCÀÕ’9¬ØõYSø_²ú͇âB±F>çkT…êÑà=7ã•êýR7}å +¤˜š®NI¶´î –Óˆ,µ£—ñ‹­Â\E â® \b˜ú£î¦å¿L!×|7 +— –H/æ8Ç„åˆTEGa»j Ï&ècþ 0!FA–ï5 ׿˜Þ3áò*ÉÙ,H©!¬˜yIœ)]"÷‡`ª-«®‡¸òP䈫GŠ „OÈð'í8èЭJÝÀ@g•#×)Z©JAÃc«dV3½<|ƒ„ÍÔþ…Áï!Eñ=¼Â@%M‰Zù6ã³™v¦ëæemÊ> pq¸aËIðÒIÂýÒ¶ð%5M’ËÊgûBϤà5~°ÄÞ/XƒPa&êË%Á°E‹5é‰È9ƒyqÒ|†4ôtÖï€Z ù‰PC'bÞj.òŒè‡ Zïy)kGRæskT<Ètx3âœzÉ\ŹÔjÔþŽe$xørÀØÉäÝ"‘69·R"ѱ*ŒÀ#å]!93•ô»'m‡<.>(£í lo…_x%¶'Òà +àÞc}<µeJʳŠŽj^À‚HG×L‰Ð:à © ûÌþ)>|Ý­³©3{þ`¡K=–Xâ`˜4ùÝÙVD7)ž¼¡tçw߆>“ê0­Èȉnw/¤š[¦üu^ñ\ü¸oŒñI³Ý2âÐE„y¡Ë¡BHåÐóÃé(D$Äg/ +oGí׈¥CËwHIû²su}YVSƒÅQÎêvŽ]yÓ1â5„l;ìµAÐÍÛä„ +ð3 K¢Z>ðueCɾ.o¡²[>÷µ3sŸ­±Îf»Õu&ïÐKòN"ú:ñqÊ’àçgEñبIó;dª÷mnißå:WbÎïR'?d–:õ)ÅŒ§0ãÙˆ,«ÊªL×IˆL ÔÄýJž’ØG݉Dðž hôy~T·@Ó–s‘5òH¤’Ÿ×)‡ÍSPpÉ\ +âWLÁÉèX5ÇEϨ§ëä#³£ìS0íâ±rFP¶³ ùçÞ(¦"òþ~N‰Àc“á +Y7ý@¶m6 |—_š›m£_"¡÷"ô~§Ð_ÇŸyÀ FÒ ?iÇúJó蕦»¼•&ŽKcw,~µšsàéHÇ@ϺL% Ô«ñÒj‡ ïgqKoå a/¦p-øGªÞâŠsÞ7%.¿m™Zæ@ÓíÀ6Nbû£¨-' ·«“6&›$öné[ŠÜŒ¬n–òkL‹ç䇕,l›_J xL~ꜹ“s8xfé8SÇõíN'Ó.‰’€ò×6ê‰b:[i ¦Ãˆ-e=¯2ƒß¥)~¤¾ iè<}:16Ÿ>€‚ßmíÛ2ê¬+p°Tû[û.Û{]¨-ÑÑ¿Â,#O »:V4 v8 ¾Õ2ð+Z&x¾Óòò +ÿ‚¿Àoø’_Zƒ x‘c‹’½ØÞïfXmñ¤XÙÛlÛ‘’çYèžÝ< ]Mn£ÐÓIVÆóZhDÔ•O“ÈeV; qe Ërw"†Ýo†Lí` 4,W{S¼¯K´µÝ|'Ás’?Î¥±ïqr™|8'NLÂÉm\a?£èËjÂV$Üç”Ê¢›÷]…zð8sŽŸÓgçÄ!ãƒ2Ï¡ææ‘ñéfÜ5½øotò)2çyÛd¦Æ V9B3o–â½s{Ûí²·ÏMUê+Óàæ çko@öf@æˆ9vdWë%f¡Ù7™SïÒ6Lû†ç›ã0ÛRŠðC#ž°íƒ'¤TlÅÕVP9x¨d»weN äºÝtufÊ^4]eòãò‰ò/P"- q‹¨êõc”ËÈ=짭ö‘!ô?« ¡<šú8NH¾Ì»‰É»I¦óv¦!$ðÂÙ…Ê?áÎÔ¢3Ч“#êÅwR€¾ðÿ’WMÙþÛ!%nŠוu-üß4NÝmG?¿«Õö~qtl‡‚«õùb Új€´µ½WMÓU½7d˜^Öuí~Ø›¹áÛF”ÛöÍþۖ摪>áU ]e½–›ÌÁ8;õ·å±´îè°’®ðÈ\ã8MõŠ½Wœê’qŽ-se, mZÔ’£ÆI,ö2s7²»Dœœ6Ä:G£F}Î$#n2“¼ÄŠ¸Ó‘æ{=1­Úýiµ»Ä,‚ \]âŽDÝa$жLÉ+~7¥Í‡‹HGàÎÆR^˜õe¹ÀW:¶Éó§L?ÒÓа6¡=€+Ý÷rÅÁùm\éŸãJ¹í!\¾ƒ+Ù©ÿ\aÐuû€Žw$Grö¬ñ.ŽBëENìŒ;k +¿Ã|jÎÖêï%öÌo"À`ž#@¹í잀º]Þ';ýB6ÖwI” 7§¸p`!§ â›ðÆ—c!óf`+ W"RöMvC"‚«æ¿57t3N/Î,úÿ%½l’…0z–ö‚ÐHÀ æ3;/“©I*N¥*©ÜÔ?jµÀƒv.cK€^ýšÔ–î¡‘:L?PmÉĥϘ{>UÂ?Ú¤Íg ™åôjVÒ¥<-5SpG‰Àý1"Ó¸§N‰ M×ÉØÅ£þHZY]é‹IûæûøTðØ1v‚ÜÖN¢ Ûbõ"þ=ÓÓ$Åâ*q5ð›l²fŠ,À¾T(UHšc©°¦³e÷¤BBÚ]/§?®Žªô.àáرÿd#M+î5­º—l- 6'ît;s„ Þ¥âêÀ*®RJ~_gy§çn-½Þ‹®é¢ç·ÿø¥Òƒ?8àLkÒ6[vÒfwE:݈‡fã’d%YQN£í‚Âõxr1BD¨Ç yœ‚,?Z¯àùL!ð¡ˆÄ ø'ÞÉ€Ö°¢ßÑm»ÔŒoU궸â`3pqu³âò¸ãÛ¾Û]0äÝr¡)µ-ðݱqš5Ûš-û8¹ÐB˜ãáUž9N´b»š¶Òé“ñZÎ9¼H¥ø > +stream +H‰|RMoÛ0 ½ëWð(,‰úðGQHê¶ë`èb ‡¢¼Ì ²"Îê$h÷ïKÆv—^2)é‘ï=ÑLºýú©^îáüÜ|3«ÿn{¸¸˜–— ¦•°`µó‘ÖÚù¦ªì‰Öøá)"kÔYp¬óD*:í ›öR*¡‡¹Ud‡<£ Rr©‚öÌÜyæxFZ]Ê;¥òV#Èïp¯ÐfŒŸ°<Ò;‡/Šm Bùà!­¿TÁ÷’7Ƚ?ô$Ä3S>hÉ”Œ°I9wÜø ²Ïæ\¯W‡®a{FGptäEôBSpEÔ!B ÷öÄÁÈú¡kÄ=´toœê€HƒÓõcá §1ï›æ´‹Ñæ…êÙ€ÁÁr#Ìí8ªGNwâ]€îJ¸` +endstream +endobj +169 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/DecodeParms << +/BitsPerComponent 8 +/Colors 3 +/Columns 1715 +>> +/Filter /FlateDecode +/Height 1634 +/Intent /RelativeColorimetric +/Length 901349 +/Metadata 304 0 R +/Name /X +/Subtype /Image +/Type /XObject +/Width 1715 +>> +stream +H‰ìWyPSIéÇÍ{‚¨aA.‘$$ÈŽ ^:Ê‘Ë„pá’CÄA]gjdtw­š¶æŸ­Úª©š­UPw× F‘K9î°wtKœêžæ!Jö@Ä|êµßÓmýjœ0]†ç$yâ˜O T/:¥²ý,‘ ëª»xFíùëquÇ=,–[PÍù{=b2½Q>Š’ݦ"IqC¯ÛÉ&»93)zúŒ5öe?þ Y>(R§ÆT"̶«hÛ ÚÒþ[OëÏù¸lá IŸ/µ;>ôôôx|€i²=î•œ‚ƒÕÊ{…²iÉÞFtâ)Û¯ÂÞJió删£ïOµjøëvX*çÅS§eÎäÉ9ÓZÊÓxšÏ‹`Il×ßC¹4+#Šév 3î :Ì=Þñ˜v>âîL/d~gKË?¬ä%¬C#ô¸è•aóK!š6yÞ=åÔA?q#ÍB_OßÁÁ¡¦æöRËø+ð¤»{Ë– «ËÆñ ¸QNTª«ˆR\]K¼^B”áË&ëŠ2œ¸Aà ¨¢ ˆ×ÖÓc±X5·O ×`n  …B2™lgïøï¢Q¿xÙ1ø¼cpTÃ…àýáñgh“'dIû99®©¾U¹ÈŠOLLHbc6¶vgò¯ŒAØ5.kjD_ ÞëQÂ.™<:-ÝÁÑ¡¡¾n‘ Š™lcgêRÁ²ß¸L›FñùÖzhì¡tb›­;B´1ÌÛË»½½}‘>"ݺy ÓÓ»ªã¡Â#/Ú4Z/ÿóüe?„Uí¶‡„a ©££c‘ÿíˆ:|ØÆÀà[Ü°…0ºIà%“õáÅá4quqHÔáx.Žá„Žõj›ÂŸ —zzGFü‚µdòE€5¬ÊV +° ”€7©º^ªîc h7à€Õ';ît>ú°Ž= +ÔpõµOgS\¸ 4N<“°€äªæ§¢VœÎà%ÐVQp“•†œº8Õ›@çÄÓß=I< ¥1„© ¦·%ŠŸÐÑþV€?‰`æ„“Áj†ÌÂìÕ­ì*^À’ˆÂ !7ú¨öTÈ›òäM¹òæ|ysž¼9÷m”5]R´äÃášÇ· ÛQ|6õôöÍ«;4x/(•JÔ––Ý0^¾<+‘«ì,ÝeH;ÒqnјÆ\ùÝ8\ÝSaƒ»‹–ÙÔÜ`›Ð1bŸ+?É…#Q;-ž&H¢GgºmŠrÒ%ô’Ý)/¾çŸ#àä¥à);Íb6õ­ÁðÄNø#–Fõ}ó ÛŒÐYe¸5j­ÊùI¯$Zü䋨‚=ô¨L·õ;lõôu¾‘û× S˜ün"Gç'RE©.ÈóT32úöW•ç/òÕ윊gv†ªÍ /ða‘øö~΄ž‰í²à$zø^&ÊÇ0õJ¹“‘$ª.†ÅQW;-'“ÁkË’} Gn+î"Ûϱ¥ªmoÎS´ÀþÊ'5g7®sÜ´c`xd©=ò± »»;xg°––Öwz{Q6¨Rt\S2uŽ4å)Z à³ +iSž h=ʯÕ& _m‚Å‘ðOåáI‡gÿÏð¯§9!ð,^ ïü: hµ 0Õßé‘Áä%¾ó§r¦?7è0çïaPlWîˆv§3¹¿  Îÿg(~:éiâ}Œàh*ÅΘL&[YYUWßZjºººØ~~Zd²;ÀÎbØ]nPŒŠ„ÙJˆR ­®.T5F9õV°m@3˜Ì[·~O ×`n …††j‘H«®ŽBØ96Ñ> më—¢ÿ’Î#Ñ–"v =SÂÎqYlj†µuUÕÍEV|b|B.F‡ÿ*sËœK—Ç |üâe[ÿ}É·èÿ’ƒ£O•ðñK™(q…bYWW»ÈŠ pÃ8Hq3 ʉs¹Ã*ÅeêØ4ŠÏ'L¤õƒ‘ñA+ZÚ7l D{îêêÚÚÚºhZOþÍ‘ø³ÙN.®•mžCxxLsž/J'ú!¬l»¿9pRœÉd¶µµ-šâó…]™™f|@3À*0¬ø²pf•ˆTÖbØEü@UñJ³UW®^Yêu|Dè‘úñxö$Òy©‘D*'i]#‘ŠßÂ’i¢~‰TG"Õ“H^$’yPÐG>,€¬¬,’tÖÊ]©4~2-Tâ»64n"Qu„i´0‰“©™>n¢«ú¹—ç4yë=è¼+…&H¡ÑX+Qü@K+i=¥êKvÍ1¿Š?zU}î]›åÛpÔïÎ1ökü»á˜_Ý—ìêÏ}ÊzUeùÕþÙ'ƒmŒfˆ‹Øõ¢³ö\—7]’7^R4å*sUý·PÖxQÑœ‡ªWGµ1gùoíéí›_{hðþ()«À‰eGâBá£kðI©¢Y%¢¼i.U¼sQÑ’‡*{êÎù1‘ ŒWè +ìÄû\¸ Î!±j£JÖ¢~ä~æÖ¨5ÚËt|- +2ÜŽû—ö¾yاö»Ùì({¦ÓŽ©ìW}Ä·âr£OóW¿—0lõµ Ìõ#„iô°ø©\P™%êÇ:qœÅ ßmÖ˜ù¿ìWkP“W>Ÿx©/$!| T„ܾ Þ€„[•›à†«p”DÊÕ¥îìîìl-mwît÷_íLíþpF· XEG….ˆ•M¨80‚ +„äìû}A»ëZP‹dyç™3_’ïä¼ç<Ïûž÷•„rs+ƒ¾'NS áep&U#È*C +v°ÁUÅQÞm‡k?Œhü-£ùò;U°tÄá“pÝÇá·?”·þQÖø»Ö²ŽO¢þr`Û&ÂSäžúž8³DüÔf¿Xb3¹Pàíï må{ÖŸújí÷êfuÕ éÝj{×9<Ôll;%õ‹ŽMµ8[oŠƤ¤$ ,"XØ}å$6µØº/X磌ÉrºZ›þ<l´èjÒce0ÝÛ}íßT·ÿÕrBéôæòÛU9Ãï|äPד\ú‘üÆòk¿kþƒ¬ãÏÏû­_·žïŸ¨*—¤iD/|)àöI/‘>®p$æÒWÃKLõk¤®*§ó<}\aã$IjµZgÓøÖßß/“Ó”í@èK„ºè*ÍSE™ ª´“@ÿD¨kÚh` + Gíw¡ËÅ2™DBQÚÖÿ§¯Øüf6› +0Ë%y§/\šÀø‡gô&¦ÛYÁâi!aì6O ÚqïÔLAÉ1o¾Wkkó3>=5­R*q¶÷‹êsÀxÿ”Õ`£›ÜagŸÒr0þȆûg¬™ê£$lo¿¹ÄŒŒŒ¤(’q—üü«Z3Æ}4ãã@ºÓg9À4ÃÈ8pÝc™Ƹ©Ó ßGß™RJª×ë—†h;cð`  óK¯zÆ1¾7:©ZázñáÈ™÷ǧ‡0n6ôDÅÄãE †¥a|íàû•„>Cè."šñóÅáº8¼I_#"°q‡]WWçì}¼Aöxl,"##¡³ˆè@DãkÄüÄ9ÐŽ(ìCâ%ì¿óà‡Ws ªªŠi 4”›UNe–HR ¡SÒýÚ뇲œJU Øžë7º¯ƒE•ðQÈ4Œ ÎÀ›Y¥bÂEò¥x®ª]¤BÊ}7À=VÈŽs$û%œýôøœ1'NÄÙ+dEnÛ|@ÊÍÞÉݶi5BÄ1µrº¯4ÍÞ­ÕÕÐãü許užÃ£7úÚN‹|ɨ¸ÇC‹+{qkh¼¶a㦚TÜ[ßÚ:k­/BâjÛwç±YûèÖÙˆb„Íœuñ™þ9Ç‚ÒŠ“’½¥æßžXèÆ~‹½Ö%…â¦ï$÷ +X1V¼„@Òž‘™G‚Ø#VÄÙ'bE°c…œÜ=dÌ;î« ‚í·!© PY.MÓüª …EâœÊ ùþ-kÖ¸HB¹¹•A™ÅTºZ”ª& +S5|f)%ÜÉq„­ˆtÍÞE&Rœè@Vœ/y®æ=(n¼˜þ@h$I<í!wóÝ dü‚X%â̱ÃäBã,'R–Q°}ïm`•­|ÏúSŸ‚ÔqÏÅÙŽêYÝÏž§•‰{×y<Ôò°íLdÐ;ѱ‰¦Ñ1g«ãM1£Ñ˜”””E »¯œÄÃ-vÃ`Äö„2Ûs¹ÓÕÚôçñ`“EW›+‡éo¯u‰ `©vòâA3 ---:yJæ¤2EÅY{ì¨mîñBVÞ~”Ï&„<ü6(Ô‚ìr*Mó"™|Ye’ô"éãæ¶ymbN  +®†—™þ +Hf""KU!I:@úºÁÆI’ÔjµÎ¦ñ%¬ïa¿LNS¶¡/êBèBW<§äsTÑ€ˆ!t ¡ËŠe2‰„¢Z[[½›[43›Í +…˜õð$ÏÔ]šÀ¸wršÃð8Ýõ˜,ݦñüBhXº‡™ó4OÚqï”5¿¸Â‹Ïoii^bƧ§§UJ0Îöàþ£ú`¼oÊJ3Îøéô³Z~ø~dbÀŽûff³4EpqÜjÿ7ûÕÔÔ™†¿€‚¨€ Ѻ8ŠI .BÑ*rDÀK ‰#Š.ÛþÚÙ•ß»³3Ùé,ÊlÁÑâ⥔ ˆ¶ +ŒxBEÂ%Aq¤H AØÜ¿}OX[éN%*åwÎ0‡sò=ßû<ïwÞ§u×été|0D;uI5†ñ0Nv·ÁåÅyzç§kÏØd¯á?£7vjÙ;vBÍ ‚èîî^`Æ' †­±±!̈»šÞ Œ{õSšg†Åîžê!?7=ÃJ¸+yšq­V»ÀŒ¿}H + +¨#¤F”[Ýø•áð¥„Ç(-ˆRIA l"ò§R¯ÖÖºzïQŒ bÉ&„*IÖP#¢Ü˜…²ÿåM +9Õ·! ^&…ÓÞ×÷f + ¶[¥ùDF+Ýa—æÕ‘½Héþäaþ4/?OXTv”æ†9ùº0—)=Ldæ±X1A€ß{‰Û?ä‘ÖZ©õr†ùtªíÏ^šj‡k ç—yŠk/Kµ”¥O§Z*3lõYUy¡à eñT_j´vT[Õ*òúêlWÙ:¯`}Ë“– +Æ:z̶¤¡á‘¹•Çb8õ·n{ûøWql°uV[œ!ñA•½»뛟¶UÆG3AH«<“3C²Eˆ•LÁR¥B9C¢dìù}Tbv¨û +÷¼VëϧۯKÍgÒ¬¥ ³4{IªýŸÿ§´S\[iª ”Všf:/Ä {ú¾Hþ­ßrwªÇŽœY>K¤œ¡g< Z@|™]Éæ/õp#b‚r +¢@á"CH>¯H°2ò˜a›á¤GJñ^–ýºÌZ%1—ñ`Rí%€„; —Ô<ü œNµ~-²·»þq¡^K}×{§)ÒÃ,øqÁK]/T½ wÖ†øÂBÖÐêÊ?‡*ÙÕZÕU³”T­²w]Á£wl=Ÿ¹>qW§7¸ZïK òx< ,~sxÏ2¬k²õÔÎÞêj»¦ß2¨«Å»ØðzÌ:ß–?o·ßØm¹(2ŸrH«$ÕVµ•plÓŠ"ÿæÂ1k-ã™KSMHQuü5qûjo7ÿe;rB³Ž [RÕÎç l?=x¥·Ÿ'7gùiP0æûð¦¥ÎÝ +KÃÆéôÕÍÍÍ®¦ñ5b`` ŽMRЄºÈ)93EÀˆxßñd’c`DSS“«w³sããã|>˜ ¤Ñ+®~;…qÿ”ågŸ»˜sg!{ÀEê&zƧ†í¸ßhÞwèèÚ54Ý»³ÀŒ›Œ¦Ý20N :]uyã'F‹vÔ@bsu•ÞÉ|8>ùÔ†,Vi®’N§Ýÿ¡u×été|0D+½¤s0Þ3ØŸ›„îž>0ŽM>6˜t7viÙï„šGfŸÐ¶ÆÆ…0"îjz'0îÕOiÏóyËÇÏMÏ0¾£y”¸“œ’‚Ðjµ ÌøÛ‡¤ ìb1BŽáðæl“aƒc8lAè„6îO ¸Z{ÍÕûxbÄ`HK6!T‰šdâÌHy“BNõmÅ‚—Iá´÷õ½€ÂÂB‡-@Ä–@i>‘‘Ç"“|~íØ‹$™PæOóòñó„EeG a®³FR˜Ë”&2±X[‚¿ï÷sG>Âwöâºl|>Ÿããr>>ËÇgÒ~™gÓp¹Ÿ]ßÛö7ý1Ê!qºpòßõx¸ÑÚQmU«È뫳]e뼂õ-OZ*ëè1Û’††GæT‹ñQ붷ïq…÷×áÁ[gµÅTÙ»k°¾ùi[e|4„´*À393$ûX„XÉp(M.Q†ç|Ÿâ¾Üí3öo¬µRRiE¤¾à3¿"³¯ø¤Ìþ•Ž«3q›Üp&}ÕùylÏÞ(Ë'DÊzÈàÄÙ‘lNðR7"&(§ *3)Ðy8¼"=ÂÊÈc†EûTO +åìÁh|ïü]®€…¯Ò<€)whþš ·ìWÿeGÔÊe˃Wð”a²#,€—šKÁ€›°ýµ}a¡ khuåŸC•ìj­êªYJªVÙ»jðè½[Ï'D®OÜÅÕé ®VÇûƒƒƒ<(‹ßÞs£ ëšl=µ³7‚ºÚ®©£oB­’슃×Ùë}µ_$áï÷ášLRÃåi?ëêì‹ëO +QAG|¿èKnú*ò]º-kcöï"…¹ RÕÎç lñA&=x¥·Ÿ'7gùiP0æûð`X‹»'–†Óé«›››]MãkÄÀÀ@› È£º€P—cösfŠ€Ùï¾ãÉ$ÇÀ"ˆ¦¦&Wïf1æ,ÆÇÇù|>0H£W\ýv +ãþ)Ë´Õu¹áz—’¬çè„V7Ñ3>5lÇýFó¾CG×®ù éÞfÜd4í–É€qj`ÐéªË“?1Z´£›««ôNæÃñɧ6<`±Js•t:íþ­ ̸N§Kç €ñ€ Zé%Õ˜ƒñž1À¶ÈøÜ$t÷ôùplò±Á¤Ã¸±KËþx'Ô<‚ˆÐh4 Ìø„Þ°56.„qWÓ;q¯~J³xžÏ[>~nz†ñÍ£Ää”D„V«]`Æß>$T„Šêp ‡7g› Ãa Bß ”€(°qjÀÕÚk®ÞÇ{#C‚X² ¡J„Ô$kgFzÈ›rªoC(¼L +§½¯ïÍ:l"¶Jó‰Œ<é˜äókÇ^$éÈ„ò0š—Ÿ',*;Js5’Â\¦ô0‘qˆEl ü^KܾØËÂEörñDŠñd²ñ$Çt"Å|2Ù|2åå„›¦“)ÆI¦¢${iV‰ë?‹\†(¡p²¯5Z;ª­jy}u¶«lW°¾åIKc=f[ÒÐðÈÜÊc1œú[·½}|+„¸¿6Ø:«-Îø ÊÞ]ƒõÍOÛ*㣙 ¤UžÉ™!ÙÇ"ÄJ¦à€Ciòp‰2<çÓÈíÙ¡n+–|8VÂ¥™‹SÌEɦ\ó Ži¦Æ̤À’'8FÐ[Q’õKVe ÿ=ùCª—Õsûž²|–H1CÏy´€ø #» ’Í ^êáFÄåDeæ"úB )Ã¥GXyÌ°á¤Gîý-+ -²Ÿá›‹’È‹AíËL$–xLESQ²­Œ‡«Ä­ÚÊôñ\¾v9OÁ„6t€Ægü—ýªi2Ë· ƒ8 Ãg+' +B?Þ¢ìd$#´¥8-¥ e€5™RŒ(Ì6“ìŸÝHöÇþÜ5» ÕÁÌì"?ÖYt`Œ0®ˆ”€0™¶|$@EAJ?liíÇÝ{_4YÉf¨ +mœœ4^rϹÏsÎû<Ë•ˆdtÉ9j?&.´?šÚ}õº%÷x§SղʕªZÝ£íp¡ïÉàµôÄ}Y|½Ñäkvl–˜ÍÉÉA¥¢kï\z¥KÛ¹ú ¨ÚÜêv8wϤjg¥bÑ»'¨÷| +lÎwÔçØh—"žg#ž¯Ü¥_g£ek¿ÄqþM„hê/Ÿ~¶? û§IbK䉈á˜ÕžísDlñi&moPph¿$¿dŒõ~‘Tǯ!~ét4jœFÛÝßßïkß"t:]J*†, €ëŒ’ÚÏ´ßù$‡,‚P*•¾îf+Ö, ƒ@ @ÈFRi·­N[ËV×ç†k#%¾Ï³FoÖ¬sn8m{yêLULôe_¯—·ÛìE B<<2ª¡å¦Â›C³`µùú–6dŽ,O]Pçp–•ÓhÔ¡‡ƒ^F\¯×ç +„ñˆ(j}Së"‰¸vÕ¶…øÚ$šîå…9¶h™4ÙõöŒjRgbD°Õjµ—7MG“Sbìê 3„F«zkŸ¯[N¾°?‡°W=ž‘‰UAÆˈ¿äËåÈ.Ö0BŠÃ®Õ”á]Rp€t@A‡…GttÞòu›(æM¦tq~<ͨ0jO$=Ê. +VõÃ$#/ÃË~45õnTWW“¶G" +‰‚ +vLÒõµc¯;2‘4!Œ¸+4*©"DežIQ³ð,Qp†E¡¢úwøû×”0Ýßå†ϖjx–ZŽUÁ³Ör—.®L«'z`éï×e>lÊýÏï픂\‘eªÎõ8GÚœªVüùËù¨Õõøh˜hd|L;|Œóln~m鱞Ç÷îï +9/Áén8{×õ¸Íá ˆ?µ¸n‡Æþ§ÃÍiILD¤"¸'c‹¿d‹Ë™Â/H¦Iéùåô’¯f”ðûpû)V„¾ŽÿkSp—j8ÖZbÚÒEÞJšÕ"Žñ,ä3ÎK\x-o¾–›¹Ó/<àÓÒ8I%+OöŸ…Ò4âÓŒbybjöÞíø‡£JäOVy2š ¡”žWN/<Ç*¨`Ò‰Jõ௒ø½ÖŸ°Õd!J[œ%×öf1ø«U±Öp1ç¿åÃïóž?Ê +Ù½“_Æ,ªd/ ”2ÐTâ–ex6Qû1q!è ýÑÔî«Ð-¹Ç;ª–U®TÕêm‡ }O¯¥'îËÈâë&_³c³ÄììlNN‚,í]{ç +Ô+]ÚÎÕAÕæV·Ã¹{fU[~V +~Dõü>ñäå7|K â“\Á³­Ü¥äŽ­å8Ñ"ýN0óçã¸0¼-M[*gçaÒzºÏ±Å§™´½AÁ¡ü’xüj1Öû„Ê[¦:¿ô:5N£íîïï÷5Œo:.%5UžÀuFIí牊@Úoˆ|’C +A(•J_w³kƒA  d#©´ÆŽÛV§­Že«ësõ‘ßç‚Y£7k Ö97œ¶½ëqŽ´9U­øó—óQ«ëñÐ803ÐÈø˜vøçÙÜüÚÒc+<ïÝÞr^&‚ÓÝpö®ëq›ÃjqÿÜýO‡›Ó’˜h>ŠàžŒ-þ’-.g +¿ ™&¥ç—ÓK¾JÌ(ŽóûÐÿ±x96æÚ.ñ¬ +Ä(É4Ί´áO’ +®ókl.~“ókZ%ìƒÌ’¸¢Jv^ù|JЈO3Šå‰©Ù{·àGŽ*‘ͤí + à—ÄãWƒŒ±Þï TÞ2Õù¥ÐѨqmw¿¯a|‹Ðét)©²$®0Jj?OTÒ~Cä“R°B©Túº›­X³0 !I¥5vܶB8mu,[]Ÿ®”ø>̽Yk°Î¹á´íå©3U1Ñ{”}½^FÜn³I$ñðȨ†–›glÍ‚ ×æë[Ú9f°õbi鱞ÇýÖ¡ëÂÎ*¤p¬N´¸úž€ø¤Îý´š:'ßHŽg""­ÊȉÍ?Å–)qIb#Žø&S2 +ÏpRóãüƒŽ4C¥þKb«äS4[€i¼ùs•°Zbº(ú<:„¦l?|’¥ø%¥ÑÈJð‚Ó»¸‚Ï×ø³" Êw:ÎÊ*Æ¥ +\"ß™¥Äç•2{"æÇö›|¼ž/ í QýÎ;¾ÀkYš¯¿H bkÅø‘2öÛó%‘“Õw‚%)bÄÄ…¡U¶EÓ›«Ï¡.¹‡šœêºEZª®w4ÂéŽgݵ)œ­©éBƒÉìkv|,111!‰dÉ»º»W AåÒ5->ê·¦NµZúd<.)z7…>øŠ‹Îƹ‹ÂIþúGUüþ ù_þÇ(˜r$®ð41qÉû ÷KVÂÄ6‡„nì ¯ÅòÞDh ¨{GÃ(*؉m EÇ°¨ÎÎN_Ãø¡×듸$dñ\`€Ò~ž¨¤ýz¨7yÔIÂ"•Jåëݬƒ…Ñh‹ÅY«¹}Ç +á˜Õ1ou}n¸VR’ýœ¶h Ñ:å†c¶¹£ÇËb¢7©:Ú½Œ¸Ýf?œ—‡§E^­»9 á¸Í¡6“µùºK+2³“.¨w8s‹•FïyÔíeÄ C¦X‚ˆ¤_¾^?C!®›Aµ­"¾4‰¦{þÀœ™1Û ¶ h¹ÒHD°5—·˜Ìû“bqöCÍ°Âa“U³zž/[Ž¼²¿„°]3”šFª$‚ ´Z­—ÿðÈ./  +€>JÞ[L¶Pâ° €H~hãÃ#n7ýäë}|DñÂlN‘eïàj5?O$=Ê{~¤ª @"ò2|Aïèèï+ ¢¢‚²€ØKË=ÉÊ)eJ‹ñLÝÜ&éþäŒØ§ë6¡EóÊiñÎÅ?”¿6Œ¹_2sJYÄ^:ªÿþ +Yð±ûÊŸl•<ÊÌþ¦“}ËÒžçÙ‘Ÿ­•>ù[Rh€ŸL’i½§Úœ} Nu=ù\8{ë]ý· ©k¼«ß‚%ìç=Ÿz±´ôX Ïã~ëƒÐuagR8Ö 'Z\ý O@|Rç~ÚM“o$Ç3‘ÖGeäÄæŸbË”¸¤±.S2 +ÏpRóãüƒŽ4C%VKl•|Šf 0‡žèÛ¬›¿%D…€éÛŸdg)~Ei9#»„™_Îá +> \ãÏJˆ,(ç*ee)p©—Èwf)qÄùC¥L|m~l¿ÉgÁëYð’оÕßâüÞ\•q^óõ ´àl­@)cÿbÄÐrh6%EŒ˜¸0´Ê¶hzsõ9Ô%÷P“S]·HKÕõîF8Ýñ¬»6…³55]h0™}ÍŽ%&&&D"‚,y7Cw÷ +4¨\º¦ÅAÝàÖ4©VK_ƒŒÇ%Eï¦Ð¶¿$ÁÚ̹‹ÂIþú':H¿?h¾À/ÚBSŽÄžæ †K<¾JrO°d%LlsHè† aÁòjPàËzû zCu6Z‘¾9mâ:;;} ã{„^¯Oâ’Åp €Jûy¢"öë¡ÞäQ' ‹ T*•¯w³KF£Q,#dit¬æö+„cVǼÕõ¹áZIIösÚ¢5XtF딎ÙæŽ/‹‰Þ¤êh÷2âv›ýp^B<œyµîæ,„ã6‡vÚLÖæë.­È4ÎNº ÞáÌ-Vb½çQ·—7 ™b B<"’~ùzý …¸nÕ¶ŠøÒ$šîùspfvÄl7@Ø6 åH#5ÁÖh4^FÜb2ïKLŠÅÙ5ÇMVÍêy¾l9òÊþÂvÍPj©’‚Ðjµ^FüÃ#»¼<€*ú(qxo1eØB‰Ãÿ²_­1MfiøT¹H¤¨@éÇe% +B/_q2ÜIFJiÇ^Z +qV(¬(°ŒÿvIv7ñ§?Lu8:1` B0FшmpD +Øâ%" +CéehZZzö|_ÇÌ:ë@U¤‰ðæÍ—¶9_Ï{Îó¼ç$¥j†²—–%‡ÓCÂ6£Ièky²†Ž¨½^´ŸUXÅÆÓè¨þ€UÇKÙð‘çì—Žifßêd·´öc¹Îy°IòðßÔŠ\,±Ü‚Ýî[ßF<çÏþ¶¹Á«ÐÒû¼·‰¥îཚ˜\\z¬„ïqëÎ]jغCj)í‚ã·ç5._@|ØêyÔ-º—}-Y),D¤õ‘Áy… ªZŽ¼‚)Þ›,.C|cÈ+¥¹9ªÄUkþŠGMçÃF±£OÒl¦ñГÃçEÖÓÂÔèPJxàÎÒ-ŠjŽTÍ—½Áv4¼’©ªãfäÿ% h5žURÇÝ]Å–U°Ð`4@VÁDœß]Åbl‹ô¶íQ^’Á3ç|Tÿó¨’Ù“ù°YòèpN*mm`ô~9³¸†óf%£éبž¸Äuh–Í1ô®Æ#h—‹ÔÀlebiWJpÉ·»þûÙòJ¶1”º!XP’¤¬Æ½œÿø×SYÍA3¢©ÑÂ1,Z§ÓùÆwˆ±±±ŒÌLTy +"µŸ/*i¿äHy’°q\«Õú{5+±ha6›E"B–FÇš:®Û!µ»¼V×ï†ëSJb?§lF“mØlŸðÀQÇìž}5q1±Úž{KŒ¸ÓáT*ñZÔ¹Ö+3>w¸ŒSV¢6ïÒ'™Í3/çà˜Ë]T^aô?Ý_bÄM&“D$FˆGFÑ¿»Ô6M">w¸ŒSV¢6ïÒ'™Í3/çà˜Ë]T^aô?Ý_bÄM&“D$FˆGFÑ¿»Ô6M">±HDw„Jn^ˆ¯‚Îy€Íyt ÇG´;³v•Ùÿ»»⣵ÝGwÑU$TÄé²" +EQl " &&äqöÜhÕu•’å7ßÜINî½çwÎ÷ýN~ŸÂ~«]7jÂsóô.½•è3?t»#m¯’J¥´Ü½3ÇŒëõz‘@ˆ ¦œ½ 6ŒwPnóŒÏPu»Ì.ƒ¹ÇdÓCXß¡‹Ûžˆ÷HL–V«cÆǦ-1±áë–¶{Ân£E;žÿbèyl{aƒöÁ¶D¼Kb2™:nŽó©TdJh#šÃšé:Ã:¢9là €„@¼R}ÕÓëx‡bÄdJÊÖP€g4“–¡†„wõ÷ˆA^†Çoíí}½Ž?ܾ`SPúVZC”Iù5ìenîÕ!̉D>Qˆ¿–&TÐÄ{ir ¬ /õó_,RÐ2UL1ñ>µÏ?évšèƒ8Cæ15ŸŽ2€´ÔkAQ6–‰\ÛŒª¹˜k+âZ'­ë‹a+â9O'Ëâ¦c—- ÉDbs_-ªw´U:4jüúr´ªí—¡±¹¿¹ ¥nÞÊ™]yÌÇÌãú›~ËýåŠ!"q°ÎÙ^iŸ ‰÷+\ÿ­‚ƦÁ–‹ñÑ Tþä%‰©aH™Ò<ú¤ÞöÐdyXöQö–´Ò²…{XÁ†S|xNl-á=)âXеØgÔe%®–"®¥˜ë8Ƀç%†Rþ&Š)À;iW„üK¢¤ “ +*"‘þE + éY®bô«… Ð7faí, ‹‰bDu!QÒpÍ`ï¯ @©¢#ûÏ™4X.…g?´~Á5OMúB ŸP&Ö"ŽóL2ü·DóÇøhòRoʲä\L~ˆM”[¤;‚&ÛGÏ<ÌÜñ›ˆ0?4ÑšJí·Ÿ¡]r=¨vh*¦ÙRÚÕQGoÿxç\;l[R²Þhò´:Þ•LIIA”ů£u^ûêÕÓ‚¦Ò¥­‚Ã7Lm•RNÞô®ò½ùi,¼ ž8“üä îO +·s¬„–¬“bã xRÄuœNÿ=úKR&+ø.ŒÏßu4J’K›:®'ñÜa>yÂçàÂÎ<ÄçÒ‚Vùø®ðæËßÏ<ÄB'¼ûH8¥ÌYz3þZTæòÃ,^F85Ô-œJ]ÙÔôƒ§i|…ˆÃ)‹à<Dï7“.õ~-ÄwÀd666zz5ó1k166&³AjÙ•ï-öYìn«ëqÃõ6ßÏÑq~¼sÌ2ì‚}Ö‰ÝùW‡¬j¼Ý0nj۬¶ŒôtÄ89(ø›ŠïÌö[íºQž›§wé­Dטù¡Øi{•T*¥åî9f\¯×‹BÄx`0åìµ`¼Ó€r›g|v€ªÛ}`vÌ=&›Âú]ÜöD¼Gb²´Zí3>n4m‰‰ ÇX·´Ýãv-ÚùóüCÏcÛ#´¶%â]“ÉÔétsÌø›‡L¥"P +@ÑÖL×ÖÍa3—HÀ]& ^©¾êéu¼C1b2%Hek(@ƒ³FšIKPC»ú{Ä /Ãã·öö¾^………„-ôMAÙ阸]Ê™tdÈ!¿†@Œ¼&ˆÇinHæ`’<,û#¶`O¤_ÀbßåÞ¢=´¬#lä%Ÿöó³O÷’ ¹Š•ZÀÀ6@Zêµ (›ÏKà?ÖÜ´ÚK¸6⃵è) {K N”ðìÅ\×W;à%iÃ'ÑËI&?î«…CõŽ¶J‡F__ŽVµ³ý246÷7—a¡ÔÍ[9CÃ#³+ù˜y\¿qÓo¹ÿ±\1D$Ö9Û+í3 Ñ~¿ÂÙHlzx¯<>šŽ +ayÀ’ÄÔ°¬#,Ù>º(ÕMœƒí̧ïúíºYXì¥`S gøð‚d¢”g-æXKx¶Þ“bîsÀµWB|@2;Ň¥úÉ›ƒ|Á{‹’vGd©X%]¨˜Ô³pj¢´ý̬#Q›¶¯öò"a³°Ó +b¢dD +LªÄä‡Ù;÷Ó#Øï¡T𹃗dð¯;1‘Õ=iɳɃ(I”êJæìX.½ÿ‡xöŠ%ÞTŸ%–u8 +¯¸lª¸°Ô}Ì,ûÃÝ!¡¾h¢5!”Úo?C»äzPíÐTL³«µ«£ +ŽÞþñιvض¤d½Ñäiu¼+188˜’’‚(‹_Gë¼ö5Ô7:;«§/M¥K[‡ëÇ5jYRzœ½Ê÷æïãNì_¥LM‰¹„ƒ§SÀOpêìÅ<×—)ðœxèOI©ø.Œ—Gìþ(J’‹Ÿó?æ/:Æ'’æa™*6*À•K}ý½ùòµrú/ ÿ¬ÉàUÿƒp<û†H4žšÏ@ÇM_Cùõ2´p*ueSÓž¦ñb`` 6§,€ót½ßLºÔûµwrˆ€Ád666zz5ó1k166&³AjÙ•ï-öYìn«ëqÃõ6ßÏÑq~¼sÌ2ì‚}Ö‰ÝùW‡¬j¼Ý0nj۬¶ŒôtÄ89(ø›ŠïÌö[íºQž›§wé­Dטù¡Øi{•T*¥åî9f\¯×‹BÄx`0åìµ`¼Ó€r›g|v€ªÛ}`vÌ=&›Âú]ÜöD´ç,&K«ÕÎ1ããFÓ–˜ØpŒuKÛ=a·Ñ¢?Ï1ô<¶=‚°Aû`["Þ%1™LN7ÇŒ¿yÈT*2¥´ÍaÍtaÑ6p €@B  ^©¾êéu¼C1b2%Hek(@ƒ³FšIKPC»ú{Ä /Ãã·öö¾^………„-Ì‚³ŽFe’í£I”˜DIGWq.n Ð•öxæq‰’!QÒÒöÓs>Y̠ߊÅ>Ë!¸çãõ© Iº6uçÓOM~•äÑ‘‘LÛÏP|¼.ã Û„ò÷YäuRÁ‚—wÂr <͇'ùÎS|G)ß^Ê{Îhç,å¹Nò]§øðŸx-ã?¿cù ‹Ì½µp¸ÞÑVéШñëËѪv¶_†Ææþæ2,”ºy+ghxdvå13ë7nú-÷?–+†}µp°ÎÙ^iŸ‰öûÎDbÓÃ{åñÑt$$ÿÀ%Üôp$­´LTHiòÃ,ŧë7HBÁ"Rþ†Óß…°* ~™‚ éßYšüÿJs žÄ•ö?ö«<¨Ék‹ß(QË–€¢BÂ’ ›–-$$À@eQôU¥íkm§nm¯<œ:Ïמû2çŒZG±T*µ†âF¶VŒ(–B¡P ÷ï‹Ul§-%3Ê™ß|>î½ß9÷÷;÷œ RÄŸÄá/Ru{…\ªõ4[KaŽW6H}½÷/‰Fþ€å1!3ßöópBŠ÷R‡¬Í~éKÀ¤<ÂÙzox“º‘íæó2¸:Qöd°ñY>‘€÷=”´q/8ó¤'{„Æ=B jß'ÆûEøxþB~m{g¶åLg«„¿±²7û%ç›"eIÉäRläd¿ã/Éò¢¹@f 7gê…c»`—Œ-ê’1vUUjl,Ç]Wî^=ÁõqåñEºƒ¹Õñ¢XGG‡X,ÊÂ|½š*`r¤©bìDP•ÕåpôêK¥‚`˜îïbóm!ŸK5“€®0(™ó0œŸÿ!§èÞhBÞûD„´þ:ÔîHè¶ÈÆ"2Ó3÷Y¾7y˜"ÿ½Ò@¦˜7äZÖfÿÄÕL[«Ùs,ã2…iµÚàðÜ¡“5’½ßxºèý®“#dÀb³•J¥¹£™² 3½^/‘H€Y*íøÙ/û1nï2]uÍ~ázž@ìgW¯F×Û¤ïï4âöŸ3ò7,pž¯¼ry’L•Ëq;Ç£%Ÿõa|g`HÓe |3÷.=—hÖ÷ÝÁÚ¡á”5¹4õúµ«“̸N§KÄãöŽÔçJ»IÆ›ºÁ·)Æ'ݦ³¹»¯Í0¨Ã¸ºQ²< +öœÃæ¨ÕêIf¼·ÇLgr¾Q·öbÜÚÓ¯ž:Ïÿ2´ý8øÆ—Õ-¼(¢Kb³Ùf’ÿó–TP`‡Ð„êÉæðüXaÙÖ"t!.¢@à¶vög+Ι;ŽÈ \i’B§R¬QÆÓÒÎSˆ®þBAÑb„u·o?›Û·oÞ{Ÿ jæ[¾Ù›ýSÖ{ËÖy'ç³àÒ$ÍcJ×>üùÌøÕ"°xr>3m;oÛÒ9ÌÙs-Iy¬Ü­ò œdâ릑ÌÇsó;œOx¨ØÈÎÝ°òõ%Ì¥öÍŒi‡r}p¥—ËðÑ8|(á¿Á~Ó!>(ƇÅøt2¾œöÕ›ìÙI¥‰}·ÏãûÕÃõeêRâùǨ+iø÷ÔÞ©=Î\D[.¸ßù`bå1eã·‹—¾¶™3wkN"n¿€;ªFʆÆAâÐÍ’‘F ±æÞÓ\?oÈ…yŽ3Eiî ­´*( 2"ãïKÖnô_±Í l|eÁO'qeþ$žPÑC™‰ñ~1¡®G€7ð߃"|$ŸHÀ_­ÔG9ÛL·Ÿ›ç½v[Ø”&©ËÖ±RÖ³²6û®Ùá„(Î+Ž9ïúg¾é ïIx+6q GÒ_óq[b šiåÐj®LÅ%IÄWƒæÉŽvƒ€˜pü„Gcñ™$\•vó}.ÛÆræ|ké&Ÿµï¦¾ +‘>@¼²õ¬U¯û€‡ «=i ¬aOÜœ©Ží‚]2¶T «JÆØUU©±±w]¹{õ×Ç•Çéz æVÇ‹bb±( óõjª<‚uÊ‘¦Š±AUfT—ãÎjC}©T Ó—-¶©Û‰«Òñ§Ò‡º‚3s¿p”¼ÉSžpŠ‚öN­ÀÚb×yhîKü5ÌümŠWÙÉëX€$¢š°¤k‚ѵ$—^”æ0mfÙ̳ŒÏfænñWlà€ M•È4= f=Â3Õ ÑaeH«Œ7–äl §»ÓYAà4šSMÍ·æ¦ñ)L«Õ‡„€ç~D¨‘ìýÆÓE@ïwI´¼±Øl¥Riîh¦lÂL¯×K$`ÖJ;~öË~ŒÛû‡LW]³_¸ž'ûÙÕ«Ñõ6éû;¸}àçŒü œç+¯\ždÆSår`ÜÎÁñhÉg}ßÒtß̽KÏ%šõ}÷F°vh8eM.F½~íê$3®Óé$ñÀ¸½#õð©Òn’ñ¦nðmŠñ‰d·éÀlîîk3 ê0®nÔ„,‚=ç°9jµz’ïí1„Ó™œoÔ­½·öô«§Îó¿ m?þ€ñeu /Šè’Øl¶F£™dÆÿ¼%Ø!´¡z²9ËÚ"T´P’å)Hq‹’¹F§ÒEi>M|tÆ„9xÈH2½"¥nN‹mÀËéÓÞˆ^\¿3RóQ¤ê½ÐÆ°֢ðï‹#¾ûïI„WÞVÞ\ÈSíSïŒlþwÔ6>u:BÙi²ŸÚ/àûÕÃõeêRâùǨ+iø÷ÔÞ©=Î\D[.¸ßù`bå1eã·‹—¾¶™3wkN";ªFʆÆAâÐÍ’‘F ±æÞÍÓ\?ÉÊÆ" Â9v•gt +ƒŸìÆ—ÑùÉ ‘‚—é±0ÈM£ÄzØUo mÝͯ{?¬ánó‡£ÔUÄûž|š~´óš>äÁ˜úòÚ>œ{-Ð×Ñ +Y[]$îübqaª»Hᣠҟä&N…{¸2_OyÌ#sïùDVºEˉ”Y¾Â•êBhÞ‚By+ÚõÖGËoíŒgÔ…¼Ö"ÞoO¢þÅUÿƒ[ÿ^ح∶Ýü+™Î–3ìf†&ºÆYïÆO¡GCbBÔþr¸LÏe|ç9¶–ð!·ùÔ ÇvÁ.[*†U%c쪪ÔØXŽ»®Ü½z‚ëãÊã‹t=s«ãE±ŽŽ±X ”…ùz5UÁ:åHSÅ؉ *3ªËqç¥^UY?¦3쬮æ4ÿ'ª¡ˆšÑr U"~¡«Ö¢M! ઠ+y-»Ÿ®óõ±›…¬§Äex˜N”…©Ž€Ô££ÉÑù2F´œ—á,\hmcµ`™À%DFL‡ZCŽ_Í}ê2ôät¨)¹T:((±«<üxTëy3 p''§ššsÓø¦ÕjƒCBÀs?„N"ÔHö~ãé" ÷»NŽ ‹ÍV*•æŽfÊ&Ìôz½D"fÿÏ~µ?5y¥áó%@B®$_._¸ˆ¹r嶫ØÔU.BÚ¨@+îÍíŽàºU[ÖîZí¬[íÐ_wüeÇúKglÇQÀ +ŽSÔÁ,^j& Ìp)ŠB""„³ïùbÚÙ)¨˜Ì ïß&×F`\¡R=Ñ4Á2Þ;±-3¾8€ìŽ̾‰©@؇ñ¥oñú8s»ÍîñxbÌxp2°¦°Ho¶_õô1îŸ y–ëù+ÃÀ£ðCŒ¯xî®-!]’Ífóz½1füå­¦¡FèBÝlsØ6_gx‘m»:…Q°q9­hi=ï}¼Fö pT×:‰›°F-¤¥´Q¤«¿…P!Bê ·_,€C‡³Ï$NI4ØåY¹´Ö"7ØdÆyvmÊWdç˜òžüxyÀRÆ¥Þ*Ó[åæEº^Âåp¸ œ ƒ$;_¡³ÊY¹rpýÔ;™•ÿ#Èt9ÌÕ[iSBg‘ ÅI?‡¢ŠV¦ì/×~\±r÷o2>,ÍÜW©ýÄ©;ðÖÏÜ_©û{¹vϺŒ+uÿªÔ­Ö$à +»ÿ¼uzè¾ß>ÛÝ<ën"ã/ãvSäÎ7x²k¸ë¸9“YýfÙý±‹+e[¸]h¿,–HÖmÆCçñèÅÈæ™8ó]cä{ ±óÞ­“Ž| È !Ãd +y +ѨT¦³È³  +hIš!J+åïZ»â S¿{]Æ%™û6èö™é‰ºœÚ'£ó‰ö>ªÐÂ7+]yØe¨/NU —Ãè%Ùyr›ÆÚ”§4æÑ›œ8Ê¥¹ + ͇H$2^VŽÌh§ufY4ƒUf*PÂD«y +QÅ:é'º”kw­ÏÜ[¦Ý_òÖÿÍCxÚ½¥ ùðñg.CuŽR9Ãçf˜dà‘c£³r”Yà6nS˜ ”ézq" Žtiêó_~§4w·uÖÝ8Ï©º›æzÎà‡×~èúÊ‘£][Zé› Ä[¯‹ŽŽ:N ì^#{8ªkŒDÈMX£ÒÒÚ(ÒÕßB¨!õ†ŠÛƒƒ/Àáß±ÏÄ$(R…2O”’$’&‰¥dIÅ)I,x//ºŽ(º¬„@*ã©Ó…) +HÃ¥d +žR#”¤ð„RøæJ~œût¡„G"”ñ”©ÉŠTAŸËî€Ò+•Ú¡M±0"+#²h¬Ì3°hÄFlR Œj¡I%X£•¹Ìtª€Ó?¬ûíôðy|¿}¶»yÖÝDÆ_Æí¦Èoðd×p×qs&³úͲûcW˶p»Ð~Y,‘¬ÛŒ‡ÎãÑ‹‘;Í3 qæ»ÆÈ÷@bç½['‡Ã‘Èy +@"#*ÅòäÊdE†ˆ/I$ï¬ä„²,yI–Ì®™ Äæ§2ɱ#ûChR ³U"£Jð«t‘ˬe +¸\DQ)J¾R#mGÓ¸$ +Å ì$¹:Y.â''€ a¤5B™2Aé ᱚÂÜÄ$¢y +QZ…`ƒY^´RbV Á£Y#43ŸÉBÊf„ÙjI%4«E+¥U9ª<˜¡$p¤J¾B-€•ÙŒƒ)4 C¦äsȽ KSŸÿòs8¥¹»­³îÆyNÕÝ4×s?¼öC×WŽíÚÒJßd Þêx]lttÔéteoä™z¿ýû:"½­ó'‚»9â9ƒÇÚƒÝÍ5ek`z—S.všèU“M#¶Bå©3¢'ÐD•­'¯Z!zÛªX.åQâR"2ˆOø¤˜?½DølI'ÁHyš§‚Û‡æs(ŠâPyÍðÅä.`ï‹RüeìUÅs_Cü§¿Ù¤#‚H’dJž*M ‚gØ8ävvþ7Þ4>‡ŒŒCäù}PÛû-¤‹€Þï&ûe{}Zm¶ŽŽŽxïfÙÍü~¿Ëå"–š9Þr.„ñPèqô©÷×R9Ïñ ×ìõ‡ÆæðÐôãm;÷¤§¦u\»cÆÃÓá­µµÀ8­Tk<=…ñðôŒw<@b‹÷)-Iôù§îEðÈÌì–íõ £¾yãzŒ÷ù|›\q…J}ôDÓËxïĶÌøâ²;Z0û&¦aÆ—z¼ÅëKàÌí6»Çã‰1ãÁÉÀšÂ"½Ù~ÕÓĸ2äY®ç¯ Â1¾ìís”–ã6›ÍëõƘñ—·š†¡#u³ÍaÛ¼Í!EšÃëBÈHW,§-­gã½×ÈŽê#B'rÖ¨…´ô€6Štõ·*DH½¡âöàà‹ð駇Øg²¬Rþ®!ç{s«ÿb®Úa®Ùa­Ùa©ª3WÕÁhÙÌŽ/ŽzkU=Y­ºÞ\So©Þ°nÙeÛ~ ¿ò÷Yq¢Xšäú“ñ½ýùï¾ÿ2kø²¦°¨®XI0;ÌÕ$6ŒïþÕúÞ¾¼wÞ·èìr„(Q"çßÛìÓMï„NTùÿãüûÕÔä•ÅotÔ‚b¾V]‘$_ˆ‚ ±«¢jH yQ@AyùØîú˜jÛé?î»[åÑik×uE냠ˆÓ-è¢+ÄÔUD5ä! „»ç~Q;«3‚–ÂŒræ7ß|¯{ï¹÷÷;çžk, 6ˆŸæ‹Myÿü cA¡P¬/ë +ņ"©ùLä¡äßE(*BÞy·?¬´Ô•XÔ*r}=®«¬7NaCÍýš"ö4–ï¢eÛ ¬<†­ÿv¶ò‚£Ó¸mI2ÜT[ÎYo”ôôƒÄžkÅÖ›@â¥ÖÚã"o‚³«C bFÂad:BHáÈS81y ôáOAv(Õ×ãÑwóI…þëCA° 2+›lb{.9|Õç‡è +ÄíVtŸQü÷/pwd¸Ø/]å¹f³·bÝ3‘‡'sar¿–›%Tæò¹~LÄ`p|ÜVå +c³øò. Ž"»zëù:Îdö8pÕ~co·«8ÂT$kÏ†á …!àÏÓ¼—eoÌ'‚7?ùJl, +í9Y¾ÉoÖ;‡IcB×qr…rzšd›œ¨tjÍfap̬ îc` ÌŠƒ{`•zo•YÔÅ}¬ªZÕ[_ŠW=¨9,âOÿ00Xg0µ:Þkii Ê +½~ü몭 e}‚ºÄª)ÅmçMj•<Кϛêta—¨û”ÂøO ÈÆT(&ºÊ§åMÃHÃÔ^Ü^løÇ +s©âÊç EN gûÅJÏÕDá 'Hæ$iÛtöÒ“i@>OáÀ^°Åû#¥§£³ƒ£³=/~³4MÂ6”ìE’ÿóíàm·!îóâ tK‰ÞÈßä½$|šë$˜8‹åqéÒ塦ñ ¬¹¹Ù? <÷FèBõtíן*j¿«ôŸËè€KQÕÕÕC=›a0Óëõ‰˜uc²ŠNÿЉqSg·í¨;ä®w d=Ÿ˜´:Sƒ¾³­7uuǧfLö˜T]õÓ 3nî2G­\ Œ»ºMÜ_|²ãû]=Ú'FâÛP¯Ò;‰F}G«7÷X"“Y,æÕŸ¯ 2ã:N* Æ'Ld~sTÕN3Þо 3>0€è¶%ÌÆöŽ;F³ãóõÚ€%KaÍyO£Ñ 2ã&ƒqÁ|ÿ™lÞEÍmÆ· šá|þ›áÎSócŒ/hEËqŠ¢´Zí 3þëMž™éŠPButqXÞgqÈ Åá„N $B ˜¸‹ë„Óeg†zï‘=2EárO„Ž#¤&¬1úSÒʤª¯Eh>BÌ ñõ{÷ÞÎ;v’S Eîk·û¤îœ—ÃÍÄe b3ùÑxQx+Ó)‚ Þ[#*ƒôµŠÙHA·±Y¼¸l~ÂVá†Ï}ëØŽÎvŽãíaˆôÏ|6 É×,~l&/f#Ïæ@t4Τb趱Ð|³0}·ïê­ÞœyaN£F\âñbð±p|X†‹¤ø_R|0ôe…âÃRòñ0üï(\»úâŸ.…ËdOïVà‡•–º‹ZE®¯Çu•õÆ)l¨¹_SÄžÆò]´ìaÛ£•Ç°õßÎV^pt·-I†›*pË9ë’ž~Øs­ØzH¼ÔZ{L4‡CràÄÑ’Ïõ ŽAiÊ~|?ùÏsÒ¿ð÷‰˜Á°cä.œb)ÄU«ð Zf‡@f¡´Òlb{.9x_$ÃGdøû0|Zk:„O7ÂÍ~E:7}·ßªMÂ8 a\Ž4¯Ì¤ì˜—¶kîÜÅ“ˆáíïžö‰ïÚísãsá!x!“ñ™ßª-‚™B,=bÄÁT®JÀåÑø{qÆæÏ«š?D:†‚æ£ñ•Õu_,æ;Úž:6âh—_|®_™M|€àZóñœŒO})l÷©À@3<˜÷À*õÞ*³¨‹ûXUµª·¾?®zPsXÄŸþa`°Î`ju¼/ÖÒÒ”-z5üø-ÖU[Êúu‰USŠÛ*Mu%áÐ|ÁtgÍ_—áËñ¸,’Î¥´Â_Å¡P|DJ^ª€Ÿ[ Å’.h¼8•›ñ©¤hPõ/É|£mx±À{Zö9‚Õ[…ëAoë¹.n£\FE¤°×ï†æÞ¶¸€]ãÅF@¶’t‚7ÞƒÒ)[sè +†&^‘è$Ahïö“$ÌbM g±Ü/_¾<Ô4¾577ûʼ:‚P=]ûõ§Š€Úï*ýç2R .EUWWõl†mÀL¯×K$`ÖÉ*:ýC'ÆMݶ£î¸Þ%õ|bÒêL úζ^ÜÔÕŸš1ÙcRuÕOƒÌ¸¹Ëµr%0îê6qñÉŒïwõhŸ‰oC½Jï$õ­VÜÜc‰LLf±˜W¾2ÈŒët:©$Ÿ0‘ùÍQU;ÍxC;ø6ÌøÀ¢Û–0Û;îÍ:ŒÏ×k–,…5çQ;*ƒŠËÎYäÎ`08Þn±Y‚•é\qƒ…<•£Ìå+Ò¨é” ¸:1þÍÁ'Âñ ŒB»#¾ìI7-uˆˆ.r¿¼÷»\"¯Ù@9:ر‚“½”Y¼°$Žì—pcG¤qã²…+”³YSa ÌŠƒ{`•zo•YÔÅ}¬ªZÕ[_ŠW=¨ùûÕÓd–†OQD)´u]@¡—¯EÜÅ´šÅ–BÇ^h•R¼RDWÍf“ÝÄ°?öçf2Y‘õ2»‹üqÑQŠ#hÄKYÇ*ÓÂàèà ”^lméåìù¾Bœq B›oÞ|ùò]ßsžç¼çy.p9±[xÙF³%Ðì˜-188( +d›ÖÑ»oœƒF§»iâ… ­÷èàÐm«V-㥡×9+Âîçºîªmˆ<®S8Ïq’ÿ’çÎñtÿ[¿–öž±-vÞ¼smÁÖÉ‹˜D3ÿÙ^0ÞɉÄY-)Ä™//f !Þ—H¦,Z¼$$+?a÷Ñ$ùÁ·¿˜ãÛP>,‰ÍÅW•„øÚŽCŒÝÇ’øŠ8ʪP4pmy[[[ a|0 iéé¨òdjè"´ßdTÒ~Ä“|B°0L£Ñz4s1ea2™D"B6šJ«i¼n‡°ß>곺7\3)ñù¶êÖn“}È û£{ŠKVƬÐÜ¿ëgÄgžB'GSªë®Ú p¸ôü¶@ÏҌ̓í™\îÜÂ"Úù ÃψF‰HŒ¢P«.©GÄ»GPmsˆOM¢Õík˜=#¶§§ÂÖ.}zÆV4çlŒ­ÓéüŒ¸ÕlÙ˜šÏ`ßÓõZ!ì5Ûusý|ÚòéKç ïè{¸¼L„8†az½Þψ|ÈËÊÈœà1!›'‡$\vp. ¡G’£›®z³(ž[,\™<€ËhqÔH“‘ô(›I¸ª@*ò2‚¬G}}V@yy9a =%*÷¦8īĉîžÆR•øúüƒSEýM]Tˆ Z~çÓ]‰áKC–Ìí]«,e£¡[cÏ¿ñ®jì\Œ^ß—€¥¢„-;À¢¯G¬ çØÉ„_‰aõ6{ßv‚o?™‰òUå›é»Žßú;ßsV/æÜúcR È%R{_ ju?®wkÕøñÝùHíyò 4·´×0VÓ6læÿ4ô|jé1“›·ï„/‰8¾_ +û[àà-Ï“z×d@ü¶Îû]4·={xyS2)ÌñÁ¢Ì9ÈP–r„»i¿ +C?Š‹¡¶œÿÍ’÷û&·¶n‚)Õª½] ðÅýÛ/p9±[xÙF³%Ðì˜-188( +d›ÖÑ»oœƒF§»iâ… ­÷êPë³hÕ2^.bÂZÿ”†zãè—Bû þ«×¼ü²—¬«à»ñ!øÛïDñË@øë*xG:Nò=g³a­ä¿ÇSÉÅ[_ ju?®wkÕøñÝùHíyò 4·´×0VÓ6læÿ4ô|jé1“›·ï„/‰8¾_ +û[àà-Ï“z×d@ü¶Îû]4·={xyS2)‚¼€·#.¿Œ#;ÀBäÄS•(?Hßu,i£"ž¼£Ïdéã‚f‚w3ÍQ‘é:%€¤#g…¨a r>o×Ze)¢:}|Œíèˆ'}{1-ŠOø«‚ƒƒX)”]G“v|ÆB×Å…‰èáœ"†²„½½˜µ6uz¼e¡d¯e°êSÇÉLûØßIû“|ï—YðbΓ¿nù 94„¶0k?#¿”3¾èÐÊÂÇ›S”¨,ÁDûVĆ£ÅÅP[ÎŽfÉû}“[[7Á”jÕÞ®øâþí¸œØ-¼l£ÙhvÌ– +…²MëèÝ7ÎA£ÆÓÝ4ñBÐÖ{u ¨õY´j/½1á­NG<ýgö8ÉßJ­±+ž3Yð¼xø_ɦ€°`nÞšÝG“¤…LqÁDÍœHDì¼Ãli!²24liHVþZD?´LëN$&v:Ù¦²”-P®¡­C§Ñ–·µµÆ÷ƒÁ–ŽC– @-]„ö›ŒŠ@Ú¯“x’O†i4š@f.¦,L&“H$BÈFSi5×íöÛ]>«pÏ5“ŸÏa«Þhí6Ù‡¼°ß1º§¸deÌ +Íý»~FÜépæ)qr4¥ºîª ‡K?lÁk ô,ÍÈì1Ùžy ÁåÎ-,¢Ñ¨:üŒ¸Ñh”ˆÄñ( +µê’z„@¼{Õ6‡øÔ$Zݾ†Ù3b{jq!líÒ§glÅ5ÆÖét~FÜj¶lLM‹g°ïéz­öšíº¹~>MÐ_þðÒ9 á}Ïæ­¸JÂ0L¯×ûñyY²‹§xLˆÃ扔áMBvHWàâ.D’£›®z³(ž[,\™<€ËhqÔH“‘ô(›I¸ª@*ò2‚¬G}}V@yy9ðù‚ ÑŠÃìÜCLÜ4©¦Ë‹¥Š!. #ß—WŠ¡-‹Z¾tTEGMRÈ@w'áéð£â0¶½˜ÉÜ@€´(8¨r7ÏK`µÙUÂÌf¾Íɾ¶´ŽJ¾çl¬•<øË'aóþÇ~µÆ4•¦áû¸P\Ú⸊H/§q#7A&B[èn/€B¹¬n®Žv$þ›MÔd’Ýýgv’ÄqÖK2ë 8Ä¡(21ŠFTÚ ¨l‹:jåЋt[zùö;§¸q Ju€&È›''§''ýÞï{ž÷=ÏX(•N v§]®ûm.’¼¾÷”î¾óÐÜ3ÜÓÄZ…¥læ?}6»òX ßãʵë´È¥ûkdp¨¯ºûÚœ¾x·Õó šÕ#wÎf&³Q!,ËÝ–P¶—WTËA*EJ“T%î`Vìãe•&†oÇéÄÑ|Ø$³7)™!-ñß 4ò¡ã°ÀyD¿—š‰6ÆÒÀòÐÜŠÄRWVÃ’T½¢vòžYôvé^nº`epH'…^±ï“m»8Sš¯dÔ²ä¤æ9IÉQÞ²ýg¶Àã"ÇT*™7iž|Áýµž‘=ø[öÆèß„`ayÕ¬²Ïy¯ÕWA-S®àˆ+“â×D¢UÖÄ1:OB§äyØáÒ´Îp¤¥§¿>ï~ÒÓœÅ[›O˜-þVLJF£Q$!Ê2×3õ—NBBåÖwÌ\š6¶ŽvY4ÊÂÜ ÒôÆѺþš(pþ[ô²— +§ùÔg£ž›þ%øÓz DgÊ×VÔñdÕ¨ÏÏÜÌP- aÔ°+Ãi¿ Í+K”ïá Ÿsûš’:}wòÊcŽ6Ža±jµÚß4¾C †ô ’²dÎÐOy?_\ò~½Ô›|¯Àq•JåïÝ,Ƭ…Éd‹ÅˆÙÖtᢠÂ!›Ó;êú}æZH Ïs̪#¬z“mÔ‡ì“Ûw*âãV¨ºoÌ3ã»C^R‚Š¡Ÿj=7á°Ý©³¹ùû”$L#nhpºŠ«k1ŒÑ{ûÖ<3N„T,AŒGÓ'Z”ããúq”Û"ã³TÝÞ†90>ñØâ ìê×elÉ!=ÎÕjµó̸ÕlÙ”–žÀâÞÔ>²BøÈlÓ.öó9¢žxñó Ç„×u›sH—„ã¸N§›gÆ}ÕÕ¡q±€û”9¼<“3¼B™Ã[?ÐÆ—GE_èøÉßûø€â™Å’UX´€³hHÖ|±ô—HW€44Ëóî ¾_Þ¹ %¦d7gë.9.UQ˜»q¬Š-¡þ_®àʪ˜Qô%‘Ë>’V³ä +=”ø¶´¬š]üwÛ.žÊ@ù/ ¬/çÀÿˆá©?Øë…6rbå¿e’¥nø“Ø,½ûe*-(°@*ì„O»\÷Û\%y};î)Ý}硹g¸§‰µ +KÙÌ:úlv屾Ǖk×i‘K÷×ÈàP'4^u÷µ9}!ñn«çA;4«GîœÍLf#!-ãoK(ýœ[XË’T&IªHÕ²Ê÷ñ²ËƒÂƒ·ã1Dcü^êhÚ{å4­ÒÈçöz£^0Ù €ßIÌÇò7ÆE€¨Ðœòù®¬æR—PEW´ƒ]^ÇËÈ[ÈI¥£û­;Ù²‚´Š¼“EÊfnˆö–íWHó-ðx¾ƒÌaJÕÓe"x™¡ÀyTÏHuÿ45&<$6,¯ŠYªà¾Vž²vÉn\RÉŒ_‰VYÇè<}’ça‡KÓ:Ñj”žþvø¼ûIOsouvn>a¶ø[JF‘H„(Ë\ÏÔ_: •[ß1s!hÚ<Úv8ÚeÑ( s3HÓ»‚ÖõE:l–M~“O‰\ðËæùZ;LÀoÿh©TnÀ@Dð&ùZ$Ý‚Ÿš9ª/T Ho…;XØÇ´eaùåëä{pRós÷ z‰‚ZV©‚'ªHÄVE cX¬Z­ö7ïƒ!=ƒ¤,€3ôSÞϼ_/õ&ßkp\¥Rù{7‹1ka2™Äb1b6†5]¸hƒpÈæôŽº~Ÿ¹Èó³ê«ÞdõÀ!ûäöŠø¸ªîó̸Ãî—” Æ£bè§ZÏM@8lwêÆ,dnþ>¥‰ÓĈœ®âêZ côÞ¾5ÏŒ!KãÑtƉå8Ÿ~å¶ÈøìU··aŒO<¶8»úu[rH„sµZí<3n5[6¥¥'°¸7µ¬>2Û´‹ý|Ž¨'^üüÂ1áuÝÀæÒ%á8®Óéæ™ñ_EuuQ4pŸ2‡—gr†W(sx+ àG²@Úøò¨è ?ù{P<³X² +‹Öp ÉZ€/–áréêï†faÞ½ÁÁ÷KàÀÔXðÔ˜’Ýœ­»8ä¸T•$õa {T‘Ÿ¬šY¢ÀeUIQŒ%‘Ë?’V³ä +\ZäË,IUü¾mOc ü—ÖWpÐpê9)²7lõBÛaþt“ì«àOÂ&éÝ/SiAA©m°Žv¹î·¹4JòúvÜSºûÎCsÏpOk–²™ÿtôÙìÊc1|+×®Ó"—Á¡Nh¼êîksúBâÝVσvhVÜ9›™ÌFBZ&(^S¶—[XË’V&!¥!AÕ²Ê÷ñ²ËƒÂCþŒÓ‰F!üNâh@ó +lz™Ùêsÿ{˜ï8,œlÂÓó±üq4°<4§òçQ!üA¦ûǧ)1á!±aÂjf©‚ûZq¡…Jvã’JfüÚH´Êš8FçéCè”<;\šÖŽT£ôô·ÃçÝOzš³x«³só ³ÅßêøPÂh4ŠD"DYæz¦þÒIH¨ÜúŽ™ AÓæѶ£ÖgÕ(‹r3HÓ»‚ÖõE:l–N~“O‰üM:¼l¤ø­ØR/¨ü="‚3K×Vìý„Rx’$ìÂ,ìãÚ²°üòuò=8©ù¹û½"u¹‚+ªHd|6Ža±jµÚß4¾C †ô ’²dÎÐOy?_\ò~½Ô›|Êpp\¥Rù{7‹1ka2™Äb1b6†5]¸hƒpÈæôŽº~Ÿ¹Èó³ê«ÞdõÀ!ûäöŠø¸ªîó̸Ãî—” Æ£bè§ZÏM@8lwêÆ,dnþ>¥‰ÓĈœ®âêZ côÞ¾5ÏŒ!KãÑtƉå8Ÿ~å¶ÈøìU··aŒO<¶8»úu[rH„sµZí<3n5[6¥¥'°¸7µÿc¿Zƒš:Óð)D Ž…J.¼tåV.;B’–\1QÂÚ1$ˆ8ÿíEv§?ö§Óí4R\ÛU÷â.^ŠŠ8h  `RÄ(H ‰\¾ýÎÉ8SuWR2#¼óÎó¾ß÷<ï{žgÄáˆÅaXÝçK½yöþìÜ„ÆáÜ|\%af4—ñ7‰Z@-ý„8lYH¶â°‡Dº@a3£cÈך¯ú+(&­Ö±dõèqÔHþHz”-$\Õ÷¼ §°otôõ¨®®&lÀÒc¥G°â +&n—KnLj¤ãîO‘M [ŠŠÊª0aÙ‚F’.PÐ CG“ÆŠË™Ìt +ê?,8Hó&üW<÷òªö“,§†ã8Év¼df5ô'ÂÒ²ækÙð‚àΧÁAb¾À1Ú +':ÜýZ·¾¾:û=W¡¥ûAwý=jZ.ëñÄäâÒc5ü¶öΈõ‘Ç•B8Ö +M7=Z—? ÞiðÞm‚–®G½õÙ;ˆHȡ콉%GSÄ*ÿ N9¡‚&QÑäÇRóJ’Ö¬ ù„;]Ë…ÿÌÕ°šÙõ³DÜÃIˆÒUÃFÌ´œæíŽ E¯Ý#O’Ub"ÕsÄæ+’шÑKÔ©Y…›CÖaiqrõöâ +L¤d ¶ó4‘Š.­dJÊé´]dÔ*ZÙŸËð²~Íu¹õ°ûBNê–¼®Ùb 4;VJ˜L&‡ ËÞAºqšuž¡æ…A¯õšàD»M¯dá¢7!¼ó·°NàúŠ‹HN,LÎÓš—yÅò-X×—løÏ"ÛIŽâ +ˆÉÙŸTªÞ.R¬öïs€ˆ->Ä nˆ +åÊ·áŸ%}©¿A¨=TÕâ–¾J£ƒS©»ºº ã/ˆñññÌ,²\`Ð~þ¨¤ýno²ÀÄ0NèӬƢÅÌÌLQQB6–B­»öÂ1ǼÏêÜs½M‰ßç”Íh¶ Í8&¼pÌ9 ¼jS|‚îÖ÷ËŒøœsnŸL†‰;×ð­ÂN—qÊŠ÷è[z+sxÆþÈÇ]ni™ŠJ¥Üþ±g™7›Í‚">BœG9s¹qš@|hõ¶Šøâ$šnßž¶ÿd3CØ1hÌÚ“k$,Å`0,3â6‹õÃŒÌDzʆ„#‡auŸ/ôæÙû³sSv‡sóÙq ÃŒFã2#þæ!Q«c¨ Ÿ‡- )Ã6BöHWÈÁ]&ˆŽ!_k¾ès¬ ˜´ZsÄ’mÔ ÇQ#ù#éQ¶pUß @ò2œÂ¾ÑÑ×k ººš°K•ÁŠ+˜¸cR,­{–¸#*’£)aë£BQQY&,ó×H"C'=Œ—3±t +êÿ5¤/Jð<þýcädíÖS±Ï·´ôÔ°Ý-„—=ÜD ö±ø¸Ãݯuëñ竳¯Ñ3pZºt×Ñߣ¦å²OL..=VÃÿhkïŒXy\)„c­ÐtÓ3 uùâïÝ&hézÔ[Ÿ½“ˆ´ÊÞ›Xr4E¬bðLSÐ$*šüXj^IRкàÙŒhsAè¬aÛ¿(ph8N"_ ñ<'ÙîZzúw7e):$¿4IV‰‰TÏñ™¯HF# >D/Q§fnY„¥ÅÉÕÛ‹+0‘’.T¢hè_¤‡Å ú.²olÿ²Ÿ¿Ã3¼§–ý·ÿçñ԰ܧ¹ð’HÿiîŽè°Ðïr•ôýU)¾ø +:šJßpÉ*™èø›’"Q•­ñ”Öó'Ð-yï5»õ \©¾Ñ;ØŸÜzØ}!'uK^×l±š+%L&ÇCeï  Ý8 Í:ÏPóƒ ×z Mp¢Ý¦×JX™¸èMˆèø]&â‰ëkžߥ,“‰~žÃÑ"=Uÿ-0Ζ§Ä‚ðàì}‰¥êT‘’`µû\ZÉbP7‡GD…råÛðOƒ’¾Ôß Ôª‚jqKßG¥ÑÁ©Ô]]]†ñÄøøxfVê|'$´Ÿ?*i¿ÛÄ›,b“01L§Óú4«±h133STT„¥Pë®}ç€pÌ1ﳺ÷\oSâ÷9e3šmC3Ž /sÎ(¯ÚŸ »õý2#>çœÛ'“!ÄcbãÎ5|k‡ðÓeœ²â½ú–ÞÊž±?òÀq—[Z¦¢R)·ìYfÄÍf³ ˆ'ÇQÎ\nœ&šF½­"¾8‰¦Û·0‡§í?YçÌv ³öäã K1 ËŒ¸Íbý0#3‘žòƒaÄáˆÅaXÝçK½yöþìÜ„ÆáÜ|6BÃ0£Ñ¸Ìˆ¿yHÔêjè'ÄaËBÊ°‡=$Òr <:†|­ùz Ï±‚bÒjÍK¶P€Gä¤GÙBÂU}/ÈËp +ûFG_¯êêjÂ,=Vz+®`âŽI±´vìYâŽL¨HŽ¦„­ +EEeU˜°Ì_#‰ ô0V\ÎÄÒ)¨ÿ°5$M)™Sï?>~ªaÛ‘i­a¾•ýr:j8Ž“œ9 Ç{š / uøÕ»$’X °¶ÂÇî~­[߈?_}ž«ÐÒý »Žþ5-—õxbrqé±þG[{gÄúÈãJ!k…¦›ž­Ëï4xï6AK×£Þúì D¤ äPöÞÄ’£)bƒ`š‚&QÑäÇRóJ’‚Ö‚Åšm. +_²šÄ1'‘/ÑŒCÐŒíÔ°<§Øð’È\Ëý€²Ž½6¿4IV‰‰TÏñ™¯HF# >D/Q§fnY„¥ÅÉÕÛ‹+0‘’.T¢hè_¤‡Å Ú.2j­ìÏöÓà7bxö£§ªEpþeÚsž5ÃÁ›ùŠ/‹ïü);%*,4!Œ«¤¡1ô5ÀWÐÑTú†KVÉDÇß”‰ +m§´ž?nÉ{¯Ù­oXàJõÞÁ&øäÖÃî 9©[ò +¸f‹5ÐìX)a2™x<‚,{mèÆYhÖy†š½Ökh‚í6½VÂÊÄEoBxÇï3á%ñüßxœZ¬g¤b=Ÿ8µœŽût!¬L|–/eAxpö¾DùÙ¯Ú ¦Î,üEªÊg¢RÜ +In¨t»Ø$ëŽ\©à²ýÓ?+»¿ögìÌÅí¬»Ô:H@ÀÚ.¢„A˜@Ñå£ HÈaIî»ç^Š£Ý‰ +d9s&™›9ç¼ÏsÞû<…¡4ií½Ï¥§¸’–ÿf7AVõj³—ûíA¨%8ºJÃà,Ö¶ÖÖVGÃø122‡!t ¡^ZûÙ£"@ûuÐOÆÓ€KJ¥ÒÑӬŒ…N§‰D€¬“U^{{ã¡™¹y«ëpϵš’:ÏI£FkìÓÍŒ“xhvîØÉ¿í;”-÷Vqó¬9C&Ľ||¯TV›0žµh& ToŽ>¥U™ý:Ó˜ X¬Òœ\‹Ùñ }…×jµÉ¢$@ÜÛ—yéºbŠF¼o +z[C|i¶{þÂìŸ2=6˜µßíÕDˆ£4ÁS«Õ+Œ¸QoØÀæÝW1ÐϨ×îóe‚^;ýdÚ<‰q³¦?6.'B£Ñ¬0âo©……^• ÔM‹ÃúÅ”a#-ÛŒÅP.yzy×ÖÝrôïPL 1’Ô „*RQ¨1ì‘ôõ JÕw"^&‘ß58øf Ѷ{}¤ùDZ—rLÙËkÇ’rdâì`OæFw(*+ Ä9öIq[ú7=à ÷…þ7­wúêS‚¬€?µ•ð­g,%‰–bþ\q¢¹˜ÿ<á_kq¢ål¢õl¢ílþ‡פÿç‹=ï!”š,6 6âñ»Öî*«JA}¾:»¶ž›Xß6ÜVÎÞÉ +:>±´ôX û£±©ÙÍ}˹5àÑ;¶ž*‹= >¬$Õ`}ëXgEtˆ´ÕÛ%!= ó4O’ËI:N3-;$57$ëóÐý™Aë\sx¾S—á©–R¾µ˜¢ÙÜYàX‹4ƒ´Ð4³P4KÄ…¸:}¢˜ÿ±÷&†§Ë¬@`~Šü%>'eà +HN°3 C£øþÎœˆp߬ÂÓòàI¶X„¤ä†HOqÓò8Aù@«ëãïG8X‘†ÿ™D'Xð% Öÿëd¡X +> Í|}W§µýiwó{ßß$”³e§ˆŸx¾\Ô—\ß/p ÚµÙpõK8%òÇ:«ªr‘#U)ÈÞü¬å§¶obB?ØP ÕÍŽw%FGG…B!@½'¤ï‡ËX«´õÕ-¾ª*R]WŸQ¥Œ„ŸïñskùË>\•F^9lù +¨E‘gŽ¾?_LËYŠupß’ôF —à‰ÜœcŽdý!Xô"©^@lÉ Ë³›‡‹ +ˆz5ÈÙËý‚ö  +ÔÝ ¥apk[kk«£a|‰ŒŠ‚Îú†P/­ýìQ ý:è'ãiÀ%¥RéèiÖbÉB§Ó‰D"@Ö‡É*¯½=ƒñÐÌܼÕu¸çZMIç¤Q£5öéfÆI<4;wìdßöÊ–{+Œ¸yÖœ!“â^>¾W*«MÏZ4“ª7GŸÒªÌ~ĭG,ViN.‹ÅìxоˆkµÚdQ îí˼t]1E#Þ7½­!¾4 Û=aöO™ÌZŒïöj¢ÄÁ™óžZ­^aÄzþˆÈ6ï¾zÀˆñ€~F½vŸ/ôÚé'ÓæIŒ›5ý±q €8Af…ûH-,ôB¨¡nZÖ/¦ iqØÎ`Ü@(1`pO/ïÚº[ŽžãŠ ƒ!F’„PB* +5†=’²žA©úN„"ÀË$ò»߬¢¢"Ú b¯4ŸHËãRŽ){yíØBRŽLœìÉÜèîáEe„8Ç^#)–‡ÈNq¥ŸqÙ¿ñþ7¯w*ÍŵR\™Š/Âçùd™€®Nž~›˜‘ÏKÉ}‰ÏIÙÁ°’ìÌÂÐ(¾¿ó'"Ü7«ðô<"Eζ‹Ž‹åÁÒSÜ´ªÁúֱΊè0,ÂVo—„ô€ÌÓ@á$5<ˆM‡@›Ã™×Ï4@–,ÚgåMNR*o¶(ZыΧÝg…q›RÓ³µzÃZ«ãC±ÑÑÑœœ ,y;[}õÒÊÌêvçAÞbV¶¢ñƒ¼¥0=–ÇGúþçH2j£Æ=PK-PKmëÄFŠêŸ¹¨M¬ú]ª0Ìo]ugéÖÏkùùR—*¹ÕÅ5¼‚J.+Ê×/€š]C^Îj¿ƒ¬R‡XÙ¥[!4œÅ +ëêêZk—a&Q (ðs¦ {?WºèýzÉ'3È€‡ã2™l­OóÑVÌt:H$fC˜¬Æ¶+S O™¬£î +P/óÝÖ3FÒ,Y8‚U¯À] 4¹ýˆnœÀ€ê¦Æ-hxúõþƒµ‘á²Î;nf|fzf¯DŒ…„žnº8‰ÐÈ´IõÒ Ò:OÑ»er6ÿµhgÇ¿Ì—Á¢'—"t Ø ÚÔMŽ™‘Æ4+.¯`±˜½÷zÜ̸V«Ý#ÊƃC™'Ï7OŒ«‰.ïàKSíôI§é]D±+AmnëX«ÍòÛý'&‡ 3Z„n)T‚´]s>ÎW*•nfܨ7$%$náðï*z¬ŸRº||§eS5çË®®6xÑ•dU_X´ïi³88äâ¿ÞÙ‡^ͼ@è¶jP˜ž Œã8®R©ÜÌøû[a]Œ‹?bXÙ^sÖÞ ›Ã +å' b8x`Pp[ûåµ>ÇdÏ aAa †]À09ÁÅ•–ü…èêïcXÌ2»³>yònêëëɱÃ? ‹ªxÄÄT¶ºãØ'&²¼²Ø@¦‚Jjñ¼òXW——q$‡øâC<öÏC¿×:Ê×™•¿ÿlð;{ z¿Mê;*TKé?ž¢˜ïÇ’Ž û Iî© |ÿÙãR³3ØÃÊKŠþ7|=ë˜ík™•7ŸŽýa³¹ÿÒwt7r6²v¤d<¾²òøh®ÛŽÛ~þôÃÒ<$ŽÞ4÷·˜\!ñA“e é»Æî_HŽç‚ÁÔÌâ-û¾âTpr¿œScA»äWqé_Äxù{ïŠbÜý&ñ¿Lïý6¹·>©ïÈL¨8.T,TÚÀ±ÅѨ±ÿ¸ðÉŸÓ›ª?‰ñõò ¥e~#åKè9·,®@A%g_]œ +ÊËÛßZR·­¨ +Ï—ró¤†_ÁWãÅÕ\öv¨ôÅ«Kߨüa§òûԞà ¾Kî?j³‰ hþ;ðÀ÷©C iÉ ô\ÇääUòÄU¼ù` „“Ôð bd4mg^?ÓY²ÎW*•nfܨ7$%$náðï*z¬ŸR.Ÿ{Àí#Üγ·ÖÝJØjâ•MÖœþ¹”SEfõØz5ó¡ÛªAaz&0Žã¸J¥r3ãïo…uu0.þˆa}dsxÍYgxƒl{(”Ÿ0LˆQààAÁmí—×ú=7„…1vÃäkWZzðk¢«¿a 0ËìÎzøäÉ»¨¯¯'Ç ÿ4D|/ªâSÙêŽcoœ˜ÈòÊb™>þT*©ÅóÊc]™æHI ˜cãC(ä|¨ëÂÔH†OݾDÐ" ÷YèÖi Z˜¿w$ƒA÷ö¤`oªKMš›h¬c¶¯eVÞL|:ö‡ÍæþKHß=ÒÝÈÙÈÚ‘’ñlüùÊÊ㣹n7:nûùÓKóÐðu4zÓÜßbr…ÄM–V¤ï»!9ž *bS3‹·ìûŠ_PÁÉýrNùìÒ_ÇÁs=<ÃòõÚH³ÊlNQÄ—ÅJÛÀð†Ã'ƒö³Zm¬ fä‚Ôñò¤KT]Æ.¨äì«‹dEyy{à;BKê¶UáùRnžÀ0ÄÕxq57ö“`Rò/:Ä¢†ÑAðVyS—Èþæ|ÂéV´Þ~^°œý‹Ð¢*nqw'©áAÄÈh:„Ùμ~¦²dyÔ>+or’Ry³EÑŠ^t>í>+ŒÛ”šž­ÕÖZŠŽŽæääeÉÛÙꫧVfV·;¿ò³²wå-…BXF÷ñ„ò"gѽIySß +iž¢¨a„‰bÅ x{ÁÚ ± Plq oY¯q ¯ ’ËŠòõ  f—į)gµßAV©C¬ìÒ­š¸Ú¬°®®®µ¦q¦ÑheñvÃdïçJ½_/ùdYJx8.“ÉÖú4mÅL§Ó‰D"`6„Éjl»2…Ðð”i¨ùÚÒͦÛ]»h²³5!ÎWc|Ÿ<`•Ö¨ÖM[Ððôëýk#Ã#dwÜÌøÌôÌ^‰ + =Ýtq¡‘i“ê¥Àæ›6~×Úàw>ƒö6±É»ƒµK·'žE0mèxç•õAÝä˜iL³âò +‹Ù{¯ÇÍŒkµÚ=¢\`<8”yò|óɸz°-#Nï©SÖì­]´‰S=؈õr![êr ´÷÷·ÛNLf´ÝR¨i» ç|œ¯T*Ý̸QoHJø?ûÕÔTvÅoXÿ„$ëZYEÍ¿0."Y’ I¶àl‡èâ¤N¿ÊL?´ý\;» ~±EkPÄÙ +XdW$€I§ C ’%Éí}/B‚$„Îè™3on^î½çÜóûûÎ9Çæ=ÔMC8d¶j>õû‚¼ìî•\ïãÃÊãUExe¾-ûsÝáöÒ3¶I;tƒ‚´t„8†a:.Ȉ¯]òÔj +è#ŠÃ•aQ>&‘n À[@¦Pï4ßÝìs|D2a±¤y‡¨@ƒ£F +¤¤GÚB«ú’P/s2£wxø說"Ú€‰‘ŸÁòˈnN¹±íØ;Å;2‰’I¦o‹ŒGF•˜¤˜H7G8ÉVT`Èg6ŸJk•-!Ÿý©òôü«68Önïk´kðçÊÚÛàè¿ ÍÝ/»kÙ±ŒÄãÂ×ãëKO¸´µwDDî:¯’À‘Vh¸ïèoœħõÎgMÐÜ5ÖS—Âç &DQÃÓeqgyÒvv‘›¹%¬Â?ÄKJXTÆŽ52-–­dÉÏp%*V+YÒRv:>9cï–°,‘V¨NÈ/ÃrU‰ +9ƒ»!/Çdå&Ÿ ð{Ä'qiŠrŽ¬Œãå 2§¨à"‹{ìBóö醴^½€¢ä|Þl×Ôû ©¦Á9Ð'½ê¾&ˆßw"Md4[6›‹ ±XŒ K9ÌÒß» }³ÿDÐ4:´Mp¼}ºï–T˜¼F†É¡ä©8²r®d5ŸyWZÊaìÝ.*<„Tìþ¹¨Žl‰ND¦‘ó Æç]]]› ã*dttôh2€ë µ_ Uªýž3…j\ ëììÜìÓ|’u“É”••…¡3jïüh…pÄ:ïÙ÷­Q—mÓ¼6Ÿ-¯–Ó{•1¨ÝßÚã G~"ŸMÖq'™ûåÛï*÷ìþ¢óÑOAFÜ6gûF¡@ˆSbhWêoÍBørn^÷ƲOÿYOJ`áVd=Ñ÷ ±÷ÚE¬Wrc…7Ë2'È:hšsÀÑy»¼¸„Á ?ùùq79YÙq*~éFø~ +ù¶þ9þÁ«|o‰À ¹ˆ·x!xL^`ë¨ ûN;°ØŒ>Ð%ŠbÎÃxZ­6ȈO›-Ç’ŽÆ±yµCÓ™­Úµ1Á}¾ìÀo´}·ZG,VEžµë‹Û$„ºAAZ:BÃ0NdÄ×.yj5€‹ôÅa‹¿Ê°(“H7=&™B½Ó|w³ÏñÉ„Å"æ  Ž)’i ¯ê{HB½ÌÉŒÞáás ªªÊÕÍaGbäg°ü2.Þ1)7¶{§xG&Q2Éôm‘ÑáȨ¢“3]®d+ÎðÏÌ_S‘ÿ!€ÄaìÌK å`ÔTV´EMgS„+j*“’…Ñd‡iɡΕØFÛàëv{_£]Ó€?WÖÞGÿmhî~Ù]ËŽe$¾ŸX_z|’À¥­½#"r×y•Ž´BÃ}Gã| >­w>k‚æ®±žº>)Šž.‹+8Ë“–°³‹ÜlÌ-a>/.bí¤n¥m ÍäP¤ñ4!‹’Æ" 9·z ý…“0I±)r>ýxlTX‰òåŽÌß1ˆùª%|ÎV2Q +HKÙêø䌽[ÂB°DZ¡:!¿ ËUq$*ä “•s˜‡ÑM_Ù,úväÉ)ŒŠ¬¸í²|zÕ}M¿ïDšÈh¶l6;>1 b±A–r˜¥¿w;úfÿ‰ ith›àxût_£4--ßzlT>Ÿ.âà÷¤M}Ï-J²¢©Ä*ºHü*2Œèq‘YÅ,E97WØMN¨¼‚+-å0öÂ? *öFƒ\TG¶D§"Óèà Æç]]]› ã*dttôh2€ë µ_ Uªýž3…DÀÅ°ÎÎÎÍ>Í'Y71™LYYYÙ:£öÎVG¬ótv«ÕÁ©Y¤ ;»~ºÇÆÅ¿–Ø}ãžæ¹Ö=Á4«÷ØÐY׶žæ<×n®â~"çÓz“uÜ Gæ~ùö»Ê=»¿è|ôS·ÍÙ¾Q(â”Ú•ú[³¾œ›×½±à¾ù=È›¥ðMÍxª~ʲ /‹²'4ž/ñ÷û#¸u&ü98å9sÙ¯ƒevôY½°¿Óc 1^ÖÎæKÛ:""wWIàH+4Üwô7ÎâÓzç³&hîë©Kás‘¢¨á鲸‚³3mÍ{ó67PÝŽþs€`^±#Ï8gê´ô´’­óé§áI†?]…Ú± +Ö*yw–ÆÁÆ—ÛÛÛ'ã¯×[XD‘-æ¸Cw‡ÝýFs‹ÀÝï:ëYÌ.ù&S[[ÛDŸæ‡2f%—––‚lf¶±ùÄiž7/a&e Æl¡¸#&zD­O$½qÑæm‘¤WT}²æâewRîW‰OÆ+ÉæQÁT\‚Šl«——ðܯÒêÔžo %ì1¡_&¸BõÉÄ,¡8Ú>Y»§dgèéUWRÆä j­W"Ž˜` Æžizø;`i䶰F˜Ðp©öÆٳ^i»zyœ‰‹‚¸©¦Ägffí;r,AˆG­ƒQº·GŒ[C1ýmO$ጉ}ñk¤ŸBQœ É#(ý +Á¡Pav zUãS//ƒ&¸øP–mÁ„•IÂ+j½¤.þ_tóŠd@¥|ѱ7ô¡“ëp“*p£'D‚‡ØDb %ºÃ ]HX15–Wì‘$ ¹“jTL u 2æT¨Z4,¡°W±aLc.ì óÊJõ¶z£1ûúµÎq& ËKË@<#+{oKkˆ‡WÚ"þàÙ¡ØhOD€‰úe ¶ê£V•8ÕÏLíg|½IÐûd•Qé AOðu‰(P#„ø^&¸*´áá¼Iêïq±OÔt¾”” @<þaŽ* ØJ¢_'žP@œ¢ä™ðžN<&ôêÄi¸H0Å&u© ‚8D;DÜ‚h 0—´Ž…wë¦ë%Q1HÈÅ;Ö¢Õk`óSÅbgâ±HtÙÒ¹¹W,ö!öo…ª»Y .°˜O¡Äû©*Τ¦);Cɒ꯬úa|…Æ<\pwRóPâ‚•Ê>nAÓ‰=<¯\|j6?‹Ì˜ЩK2  'Ú"¼g†ã<6Aœgž«éq^sÆ%]B¥A&!ãëwÄST`è‹€mXƒQkŠõ{7NŠù¡®KÖî•kÖ‚¸Éd²Z­ãLü»—ÊÆF¤‹Mw‹]Ï>îfxž]; †/8ngÀÁgÌÌ8qòÔDŸã{TÑ芊Êùw˜ãº(5Ãh®ô¨g ôVƒã–"—Y·þ¦ËõtسgK 8Ó›™Õ™6î̧SݳMdž*ÍÈÌu93²§LOOâ5 &ó¶œQ7o§¹dÕîüü%™ØÿôÉÏØõ3rù=òÕò¹™4—äªËÈ2Ú×á?›ËÉgfò¯Íäúû—³hÇU˜Ëã½çÈÀEåÖQ¥«•¶ß^o¶ª·¿$‘OGsî«Æ%+‹ý±•ÇÈ¢áaÿSÒFc?†ëˆW÷üóþTš6ò­¦iÚ£Æ>rÂÿÏrþÂ¥iÓ_üív3qŸ#¾¯ÔÛGåÑ@üÏíîqiï¿qxùâ<饌´µUs·ü² ¢>¯ì¦´º•õ ¶þjáòͯOš2©qélùx5UZK•êÁòoÊ õSV!3Ô£ɵ÷cûÊVeN5¤O^½eî¦Ý¦wêÐsY]\ bGî–Æ…EëçLþÑs¦%Y[mÜizg{.Ô^V·CªvåUíÌŸÿF¶šf0ücû"r¥–œÞÌ2§4¯ëüŸ¥´¦6VšêpÈLNÕ¯qó?/˜šöÂœ¿]¿ fWþ۠Ε[³ÛTöAÎìקa¡×feŸ;ð1¬¤õœTºŽ<Ƥ]­ÚãäÞÕ¾ŽÏV,ü骷J‚‘èøé`HÇê°ÎG>yæ[Çâóù6lØdËßX`;ówlSm'ï]G5Ëq„¾hWkÅ[…^øÚ‹wÿRLÚkɉj¦œÿ!òƒå©@z¼Š\­õ5­{û'éÜK“Wm™·¹ +ÏýçÁ¼bGžqÎÔiéi%[çÓOÃö'þtjÇ*X«äÝyX7_nooŸhŒOP¼^oaQv¾˜ãqÜv÷Í-w¿ë¬g1»ä›Lmmm}šʘ•p8\ZZ +²™ÙÆæ§yBܼ¤§ºc•7u#ËKÈ^™ø$¤o’=!9xIM…¥,…Dög ‹L“&}b4…TðÄÅ«È#„„ô΄¾ âh¬²Ô¹[7MãúÑÆêtO`¬È2S[˜ Ç‘j?l˜=땶«—Ç™¸(ˆ›jj@|ffÖ¾#Ç„xÙ:¥{{ĶãÖPªÚB {4é…ý™Ñö)Ô¶ÌÈ!fóC9lÿëæSi·~…ødââeGTè‰%]¼úÖÁ að2´á5?«OåWSS OU8A\1Vg a8c’3.AÃÛ`Ð!$´>öÃíQÝ004¤–6¼'’|¦Âè'°¨WVª·ÕÙׯuŽ3ñ`0X^ZâYÙ{[ZCŒ¸ @"þðñ°˜F ãÓSH<7@R6üñ ¹ß¸QÝ"qÂòðܘèUêﬢAoB °Q©$5¹î¹XÚ•TqÑÉ+[@IÕ™1d‡¥2“éö T`uÄ…çeL‚Ù¢lZ&ÅIRIÇ ÷°rdQ[ºxÇZ´z l^`*°X,ãL<‰.[Z87·àŠÅ#Äá-£;iw±Z¸ I…eS€îÎ:‚þ.¯wë£Æg-ˆÇ¥îhÒMºEÅÇ\8Àü.vÀ¢ÖÏßc“Gô'*éM*Ø„á¿çe{Bt'©T"#´A}\Ñô(äJ(=LfŒDð§&$[˜~‰ xkhŒÓâã‚….Y»W®Y â&“ÉjµŽ3ñï^*gr\ÇÝb—ó»žg—ÃNƒá Ž[Ápð33Nœ<5Ñçø•@4º¢¢r>Çæ¸.JÍ0š+=êY½ÕßลÈeÖ­¿ér=ÝöìÙÃÒÎôffõG¦;óiÆT÷lÓ±¡J32s]ÎŒì)ÓÓÓ°hMƒÉ¼-g”ÃÍÛr«wåWíÌË_’…ý¿ðü¤¿Öæ“ÃHT¥¦uâ'kŦ©i=~¬2mñp½ðÉZ©©XÛ_JŽm¼ðëES8®²¼<á:Gü•[G•®VÚ~{½ÙªÞþ’D:<͹¯—¬,öÆV#‹F4M–Ig‡¶÷oäÌÂ'4<µÜ%û÷“_кmäÀòñŸÉ×x®) +éìÔZiør¹]Úç-äw¿×þø'­¥…xûþË~•5ymá Ï¢ÎÃg+kç­¸µA°";:}‚ ²V‹aP¡6eQ–$@Gvdd ;Ad1 ! äÞwÿPÚé{Ò'â›yïÌ™’ûÿÿ=çÜï;ç?{i[ „!! ¯ÛJ ¥ÅÀÿ" ³ H¹ _±£†…Aèâ `I)äó?\Œï#%e•2«V{[ëÃþbÈ*·Òfæb´Ó!·v¨1{ïN<"ÒYi-“­æNÛ mðz–¦Y©Ù¨X¸ì8ðö¥+þb¥®0žpRŒD±‡EQˆf©fÞ¦ÙÓÐ-Sp[æGiÿ]v¥Ô:éoÍ•Ì6oñYÏJ¥€á)Us¢ºÆaÅeŸ,!ì’³ î0±%X«¢¼Ð³RA¯˜ÚámñÊ_¢J[ŠÃ…›«Bª1LÑ›!K<‰9,”Ð[â’–DuOˆ)º«-NAœ7­óÝ£&#½|ÓJ]k, ßr…l­jfOгTÞ¤$ƒ }¶Q¾8õ::%À,˜ePÞq¤ *h£Ã‘ê—uûÔ·ÐÔáp'‰#6œ»@Ègv±’“{ƒžûùPh³<Ì ñÔ;=½—Dâäå¡­ÌLLŒæR{ýý™½£ùôɦ&vÚ½—.¢¦»;;9YÐ×?·-ൕÿFa±Xººº²½_¨t=N„œqWÁ»AtÈ®à1h†w£×¿øT¦Êw¤‹“¾FI(MÖÅü¾œbµ”¬=CÖ£ŒÈ1=xdËÜêeûP2wB¼o1Gjj¯fx +¯ øW™µÒ:ŸcŸkÕý Bl×—ð_çÇmÈ4 +\AáoµµµÆ?!ƒƒƒ»54ç;q¸û8\›¤÷›Oz¿É“‡$ €PSSó±£ù¿,˜Œ=z!»A^á^þ#ôÙîç‹æFÝ™›˜hBœÕ÷&fÓÂn'?nl›DC"Ÿ“y'­¤©^UëLŽ©î~*/ƒ5”D¡eµ UwõF$¦¸_¸H$ùÜHLiBØ5ÂEûغ¸…'ÝíC+ÌQn|F¶‰dåèäxŽŸRXÛp39Õñçó–öH¯ÅÄUvôôp=Üéî±)ÚBE÷'æGdÙåðºÆùlû¢ŸÎ8nÚøiMõ“EF\(73Cˆ¯ß —DÉ‚p@0Ó9:ùö‡žs&;$n?ŸõòDrjÚYO’û…K©ôGÕÏsŠ+‚£ìÜÎ! ‹LΡß{ø8ìVzÆÞýÜUrlykgûðXb-ðFd)£à(€­¯8©yC#Ân%>xX\ËìÃαɔÜB"ÉûG›Ó~!¡Oëé5uW£âÐV§œ\<¸Ù ÖèËPø´‘ìRÚÔÎEŒÌ¢•`r,òá4ÑírDTyk;k<ªk¼“JÈŸBv„³¹•O½.[;OØÚ;yz¥Ð +šYýñìy/'Ïó!±· +ªë+Z:³¨q÷²Z^#ŽõM +*Ú™ÙÅ‘Iiþ!¡É9´naËÐèj¾3ÉçglÂÂ)e•Š.\ ;íì~ÂÎÁÕÇ7»¤r@0ûrF\Pû Áí{%¤¸©uL‚x~í³kѱŽ?Ÿ!º_ŽŒ.c´±D ¨¡ùjtLZþC€/¦gr+j½._;épö„­Bü…Þ<8Òà \ +ñ7%•—çBWE[§ÆwÑ™o'lï@ãÕâ +;±çëÝ[U·Wuôð ìáò;æ&“Ëǟί©‰Céæœ[Yý´»7>#ËÅç‚ ÑÕÅëBtêƒÌÇeä»éžAÄó^ÞAWÐÝòÖ.TcogåĤ?hBFûy‚Êöžì’ŠÈä»þ¡7îP ˜ã“l+[»Ãã“lÝÜlÎCco?n`ä”Wy_³qr¶´spóõ§–W³Å°g‚?íÿË­¤ÕùÞ ^BÕÍ×ï´³«›_lúýún½–šgcb8,† ýìZ>)ð²õYg ›Ó.$ï¼'ODâiQ'VÍ&¸°s&{'…£(®Îîýµâ¡³³s‘1"ѸõHšÃ¢wu†%’æ°^J*‡Û‡“B¯[/›_Pø±ãø’቉}†FŸãpÙ8CMj>-=Ò")¬«oÄá¾F³Œöáæ¾¾ÿÌÉX€#|µÁÔ`l«†MLVv{­ØD¦o¥¼N~ŪµÒȨ™#Aÿä|gIý“ª¦vj&¶xµ¯äÿË—. ·Pƒéú0ù{AÄ!~ø!~¤ÿ¦Ö4¦ÚoT€þFb+üMA„¦8^f”{ì”ÆI;6Õ_Ù³-´Y»þ{m¦Š[ó ·n îžêf…]û½b/,=~+)Ã#à7ßBoøj[ÉÊššD‚wS€þ1€W—.¡"%“¡¥%ŒƒÐÌ ª¨€½û€«+hhØvÆÅC%% ¾äP°öpuŠ›Áúµ@QÚÙƒ'O@È5ˆÇ9y¸y3ÔØ nFçÃÅø>RRV)³jµ·µ>ì/†¬Rq+mf> 6Q@;rk‡³÷îÄ#"­‘•Ö2Ùjî´ÝЯg)aš•Š‘Š…‹ú7æÛ–®\öAn,VÞ7@Ôâ‡kò#ßLëwÊ¿‰Hx±Q­ 3 ‡#´wÊ®”Z·ü;s¥ãö›·ø¬g¥ŒRÀð”ª9Q]ã°â²O–vÉYw˜Ø ¬UQ^èY© WLìðƶx•/e‘«R8©Ðã*ð!H8"œóã<æ‰àµÎýžŽÔž»;¡9‹qÞ¨Þ[¿jùò+tO*£4üÕ +<ÊJ,dkU3{‚ž¥ò&%dè³òÅ©×Ñ)fÁ,ƒòŽ#ePAŽT¿¬Ëا¾å€¦‡;±H$XšHråŸìW TSW~8µŽ3(„ $d‘µl‚C@ÂÖAÙŒ"qÁcqC†VG«J+›¨UF@dQ´8Š (;"* KJˆ,ïÎ}Áv¦ž-âœ3ýÏ=ï¼ÜÜ÷þÿß÷o`R4Úœ\ggWe`Xe ßýêEÜkyúÐÓ³„Hj\:ÞƒíˆZZ׬¹KV-ST¬61~¶/¦3>¾ÖQ¦Lº§B.§Pšx=ãQïËÄŒ³–¶+¶îŽiì„ÜnF8´T›*+¿¯¤¤od¼ïБŠÖöÑdëðØ{‚þéÐè‹)Ð51éB àëjkæq@°ÊÇ)âO],” c³ù?ÿ)4àÍ3¡xUmí;bb-5i4+;û„´3Å•u;b¿¤â5)ÚLÖªõ‘[×El±¶g¨UÕÔ5lŽ»:™™îr·¡6BÍý‚Ôœ¼¨˜8WOºþ²u›ëÚ{(¸{ß?„G"“¥/¶utÞuà`ÐÆMm:|9‘D2ûÔ2áô¹®‰©¶‘ÑØ# ÚzzƦ)Ù¹0Q<LJ6·¶V$ â6NGSO=|Þ—tö¼µcÛÞýºû!âÍ‚áè¯iRud—Ȉ*Ë–ï9x¸²¥óÙèxˆxÓ,E÷ô§ƒé¥mä•ËcMvöXD×åóùsŒ¸pxäS3s ªî}~+ŒµÖaI¯}TÜ‚šöîqlNZ:t['ç„Œ3g .¯ZíMTQQ (ÁHçEFmßç°ÒMMCCM]SßÀÈÃ×/1ã»Ì«××EDz­ ºYS oy)HÏ)ˆŠý«Ûj®®‘/r[UkÇÓAá‰Óçœ]p +°à9Þ~ñé§7Gï¡Pirr8ãæ6¶Iç2a¼Ô¶wø‡*“Õ˜lÎÚzèÔÃŽOEM F®Î²e>gò/ÿ£¶>r×^s+›„ŒïÄ°œML]½_´ñs +EV^NV^~¹™yjVî‹I´wbŠÿ#L³™Ø°Æ½‚L.kzjmï§ÓéMMMsŒøoˆyùAIšÃ›oê oIšÃ)©<±‚S&‚ÈÉã®^ûþCûñ$ý##V +‚\B 5©™´ôpݔºú§8‚“3Œ¬w3`÷îÝ’±¡›*xm¤{®×Á&¦À÷;Žý¸°‰Œ¨%‡_¸xɨ”NgiÍðqvÍkÝ“§C7ÅCûþaÞñÏè “…žq…㪛dáÜêøk ›gE'ÅÇ“)L³ªzÏò?Ï“â°V‰:oÞÒÉG…“ Øõ¿¯‡S¯€áêçÕ¨ªkFo_ÿìÒã‚öö‚µkPA]\@[LÑàðaÚ9 QQ€DÄþ"“Ñ‹¹ ½ݹÕPN΀ËEi:(Ç$&‚ìø ö®®nÔÛ; 4‹Ñúz”JÃvпg¢·oO]¹ LL°ž«ÑÔ–ÊËÁØè{õñåÖ²E‹ev³Ag è¹=õ¸pb& Öç£E`¸òŃK–4H$YÜÇÕ¾›t9!4ÖZ Óµ=B´ý7ëÙø.•’þ(@'Hf‚,¶8 £™è„„fÇ_óê_ë5ýâ㎓ß8Áóƒ'Òˆü|{? îFš{ðÏøÌ +Ô‚!À ¥úFèY8“çYdÄg¦g\(¸’Ò2ù?ÁF­ošÝ>:Áóí·žÏûÜNÛËbPXþØÒÖ­µÁÉÃ3æÊÕ{OŸ]¼zMÇÀPZFÆÀÌ<ìLtÆ툳çuõñ +Šëm\¶ïðX¯‚Ú¨=“pÉkO œüša½S3=LVtRŠ‰¥•‚¢’œœ¼1‘t*>13ÿŽW@€Šºº…ý¾°ÈØôÌ˹y¦–¼sJM]3ðБ±q…å•#NYs;oç—-=ðmDÏäTëàðßÝ’Ò8C#_?]óÔœ[ßþJV’½CëÜuð¼«Û”´~¨­§ôÌ÷§ã’rî?j~=ÚývãH-(ôŒ©¡9ÐÏæ8ûø"‘²uÏkq:nK¶QKÉȦçŒÍ#Nƒ¾}éûÔ€ˆ°8,.eß””•URU 9Ÿqýamãõ‚"C‚L.}Ó°SgÒnåGDŸÇáUTÉNÏ]»Q­ÍÚÁ‡ÿ¢ob&ƒD^™OÒ’Úz÷$;Þz²«[Xñä~MÃöÞÊ(”µ#åб“Çcâ„G(*«Àf[­Ÿ»œZR×ݨhiÓ72…óËW®Øv´>Ñ24²Ó/@ZZk€w£úañFxsBBæ}a<­jiãÐÐÓ¯¦u­myˆãôŽž=w:>9ûÞƒ¦‘ÎÉiˆ mJÁû}ë›êš˜¡C‡[ÛõLÍ ]MŒf[[Û"#>9>¡¯‹SBkV¶uNÂz;Îlût˜Sý3lØ‚_½] ·FAQY9(äprVNqMãÉØDQQQ11—Þ1©éyˆ_&&&%-ãAݽÍÅ æ5Ä+9+ÛÙ͹juBF&Üù’ºFÊN_ [{œ¡1q]lÆíü¸´Ls’õ,Îêw(껓qIÇÎ]ب­˜X â1W2Õµô³Á­‡¿lÒÁÂy‘e¢1©i0¨òúF5u´?¿¹•µ›ÕØ”èì±3êÂEG>~¾Àálxœ±f’oÜÜ‚Õ_±RÂÜšõ]\âÏÕuýÓœ>§ –²Ñ‰.ìô·ÝogFxÜÞahF„c0˜öööEFü?Ûöî•D ’ˆæùæðѧ:ÃÒùæ°–ïG€U!!)u¯èç¯ÇÿО˜À;lSE n#M<Ôø>§¥‡×#>^W_@@‡´°lìéùc„‡‡¿kÞ0Xiç@Œãn žbòþ²rìïO‘Ùy«IÈ.]..R‚0vŸý¹ºóŒ£¿†Và[* à® nØ‚Œ­¬‹)žnµ˜N€bö%Ë›‰‡òÖ‚™ïÎ%¸iW©#&Àç`cËì)o*8Í…œ¦Þýß_s-wÀxM_Mz-RÇðúÍðÂÒã£Á~~s>àèzû`‰±Á!@¶åF„ƒuë¸X¾ìߊ‹Aô€Å‘»Õ +h`@HhnÐC&p¹ ºšëî$%  ×m;xùTUs1š\~pç¸sPZ +6ožÇ#AK£Æ8|õEcüã´ì±ØòßRí@o üe®¥ý9 6äs_ÜãÕCõ· 6©ÃDX)%DtRr ÖtðU·ñšgš7j›/Ê}ß#WþeÚ‰‘¦§X‚»™D f>±X,à¾{ð°rb™¸x_B««“=:_r&'S.UoѾ¿dI¹œÜPÚe¸r¢²ò±‚B™´Ì`z—ÉœeÐ;CC‹ùjñxFi ³£ƒÕÛÃe³ßýžû‘™ÿ²188heÅ\Q´‡W½jŽVôéDh*ä¶Ý…¥o¢©À€ã5½rbèAžÌ¦’˜ñDæ‡Üþ'vAÚó˜ÏN¶YdFÑcƒ BTÀÐEÉm¯–=Uýóç ‡]êHQ1q!’›*ïh ¢¿ô“Z¶Hî*Ð4 ‰\U]]ýµaü£¿¿§§=ß„@ÜD Zç{¿Ïé"`ïW7¿’0ßh`0UUU_;šÿ ƒL&Cd¥e‘9÷0èeξ“º ¢›^1Ù³ çþ#¬¾¡âzՋײ Ñî×æYù5GÏžsòð|×[bñFÉ7rÿú ÔË?ÀÑÍ3:1ÅÁÕU^A!4êTeGOÛðØØÜ\c2áZ¶ž¡‰°ðRY9ù˜ËéŠ**W¯U—”:›”Ú<8Ò00zâô!aeúJnÞƒÚ†ÒÆÖO¾ÑèSïB[¨è~‡~„¡]ú$Á|ýӳžþAòr««ž>YdÄg¦g\(¸á’Ò2ù?MÐ7Ínàùö¯<§¿íc±éäÞ/Ö36ÕØ°ñHÔ‰šîW¯ÙœÌ»8#UÚ'(8¿¬¢}t<3ÿŽ‘´EWïT|ÒåÜ<œ‘±‚âú1q'/&â |‚Ÿuõ=ï:Ivr!;Rþ¬«gnM>ýý±óL,-õŒMR~ÈiyÕß53.!¢\¦Ü×%’’’¶Ïé³]T8)›úè–ŠBH—¥\jšq'wf˜ £á÷î;Ô¶{v[“ôÇîóy?¿ùÌ;ï¼ïó}¿ßçù=OK»™µ@íN»‹×”Õ6<ëèé˜à·qy¿Â;£yd¬ot󧜼irrèÏk˜q‹E±%CÔÒ²è´Ü|ö ãMlèÛ¯‘ÎbëmošÀ™Ëi‹— +ã*3rèƒìI~nY¥‘IAi“§ðÍʇ¯‡F®çšZÙhÅ'\HÉÈ2&‘6)"ŽÆ;{xþAAñtÊe.rË*ˆ¦$G÷]ÞþA’Ò2ÚD컥)7rˆ[Mt·¤åä1»ûêÚ:ÓÂà K— +Dî/yú¢¢áuû(÷w?Ñ54]¡¢®/¯£×½éߊÁá!ïgÿzÍÎÕ]‹hø—”Ôñ'–Šˆ·»¼ê郌W3Ú,Év‹„m÷Øõó“§eÏjZ»`*håL?O\ÿ#¥4³ÇÚ8“0RÒ™ú&Û5A…Á`,0ãÜQŽ®ž"NåF+€ÖÑqÆ\H™¬±žI>\œ˜ž)**¦„Å^º‘Ó<<:À㟿’.&.¶N^þøÙóWËÈøÙKi2rrjß'_ÏŒ;uV ‹Óݲõ§‚ˆ˜#Š1ñg†§¦sËï›Z“\Ý=ý׬]«kHLH½â¾_Sèø§¢Gé]=O›ÛÌÊV×Ö]¾LÔ7,¢äéóGŒ––щ6îä•ÜÛ¦Ö6+VŠK£ÑðÎ4xÐðŠ ¦&%% Slj ‰T';×Ã?œ„2[µ2ä` ì9G&xÉYzÆ&JXåè˜üª_*è ÝCã0Æ'0Ë sæ9±³o–a1›¶‘ ãÉd.0ã_n!!R(ÔEêåLqX>WeX9SÖ + ÝB¡ ]&JRJº¨øî·Æñ?dƒŽ¡½Ã&ê& +Õ(`MèsJz8Ê…U} +¥ {s‹†ÎÎßç@llìlñFБq +$8úá¿v/ö¡#ÃR¼pΊ7F-ºRB„ +¿Þÿ4Çq/,ÕëäOpôÅãud¡ÿË/JÜI€Í)¸fÍK2‡ÍìlÇ:‘dþé1ÓÏfSêãôÄ/²·%u–ƒ‡S/ ¦óÏÿ>ò§_ý FŸ½y–…ûNNÛȬ`p~åñÏ_…ÈÐ0F–/C¼½‘þ~Ádj*")8» ‡cü°~=ÐÔD€ÇN ì@Tr,àñˆ’êëá>` DF*ÐhÀÊ +Ì@Â9¤¨XX ‹—€ ý:()‰„ „€Ž6 ÉÉ ·çëüB«¬z$¾rUŒtU€ÞûÓ¯ +øŸCbýmäu!­é«»ITW†B’!mWp Vµ§áÉžX²7êÍž†Û¦jìºqÑŠ%»ñ²ì‹à™—<+3óO+í½ùÉ$A½l¥µVLHRx››T¾2 ¤gŸ3¶§)»†ªê[È /&h£ÝBÕ¶û VR½áŒ ë€wôSÆhHÏD­Ð97ȵW,'çúGø)æ ‡ÊøóméÂrËͽ±;‚ÀÌøƒ ç@ {bÖo‡Ç(¬EWdœ†·„´O5ÞžãJóz!zÒó,ÛPõƦ–¬QΉùøÁkk¥»º>X.ZK4觊€µß‹™•f3©O TWWk4ÿ·y³‘‘[[[Ȭ Z.«¨t€®ñwÌáyë›:ÆøÝ|ð·²û†¦$uÍ´¼xh×À‰ê¨ˆÁ;•àêå#!)¡c@Ô1020Þyä¨oH¸XdfqYdÜñõòtˆÄcgÎ?mig# ³¸ÄÃÏâ¼ÅŒäáPÝÒUY׈WUYæt5ïvÞ½ªˆ£q+W­ZµzµÓn¯}GâÒïwMLöñÁü¶„¿­æ6 s™,nÓÈøºxï<|ƒÖ¯]Wýäñ3>É›tqv†ŒKÉÈ^»}g €7<>s˜#ðíßÜf°¸³óo'ðÞB ݧˆÁhëO&_¬miϹ{o«¹¥´4z³¦VèÁC·*ª.gå™ZÚ(ãU<öúDìWÓÐÔ50Ê«¸_ÿ¦wOp¨º¶ÞéÔ´ŒÂ{ÇÝ~3riî‹9ºƒ¥8ï9pÈÄÂÂœBÍ,*‰?sNBJÆÅ“ÖÅ…Öut‘·»À •UÕ|Ã#¡®ªèP‚à~dj^©oë›Ýü)'ošœúÅóÚfœÅbQlɵ´,:-7Ÿ=ÃxúöŸ‘2†¹ ÖÛÎ >¼²¼Š*-I)+;‡´Ü[lÎÝêZ3ÊêÕ’ªZ!Ñ1yå•©Ù¹æ6¼Êf7ošØ>M]=SK댢Òk· +¬(öî{öf—Vþ˜¢od| þÄ•ì< -]Ó3²ÂÅjê}#¢Ú‡f]­¬§o3B¡4õõCNJÏ|=Ènã¼=q!ÉÌÚÖe—×nÿÀ­–V±§N?f¶í;· §lëè}È̆lA¥^½Upâ\’´Œ¬«o샨m}Cqv…ر¿ðÈã ‰Ï_ +Ïøüßݳ²ifµq&YF +Sßd› F"¨0Œfœ;Ê1ÐÕSÄ©üý*jòÊÂ?Ž+" +¡¸!!äDe!$a‡È*$Ⱦ/.3j­[Ç P¶Z¬ "‹(xDAê‚ QL@PE-eÍëK8ŽÓÎÀ´ˆsNçžwrà?Éûï}ßwïû¾ûÜæšû‡¸S±š×ó¥> ++îé™HIcl² ŠZû2r.cd–Ï›?ßÌÊ:þð‘ÕuÇ2¿ST^¥¤¼r[D”«·^K›öðy[ÞÍ ++{GÆVæwEÅ_%§ÂÇN8uá’¡‰© ‰¼s߆D’¶žAznÁðÏ©–ÖrˆdK11± úúQ»Ùi¹ùœ×ïJ< ŒŽõb††‘¬¬Ü˜ÌÒGõå®1Ar©”—PHì +Ý–þõ©tŸ Š+w}ñ%ôýã§ròu7 ËÓ71ÝÎN̼”_Õüªuh¼e`XSï w7<·ïG ÕîòšLHˆ8Š¢<o–ÿãáAy"‡·¦R†å"qX#&– ÆlYD#S\rýS×ñ'Š.>ßØÁQAò„#DMl:’®[bBU_‡ úÐËXXÖ·¶þ¾Øl¶È ¨ž¬Kêˆÿ¨^ìƒå‹s Am™Xi¹E’Ò ¡‹t EmYØéüPdèÔ\‚P§<^Oæ¿hîœ(4§‚,Úð ‘™%ÿÚÉ~¸(£)pѶ>Q_rî:}°µ tÞreœS(üüÏ«¾pâéUÐ_ÝV}·R^ׄü¶³kféñ/!èƒó¯/èì>IOHKgg·] °˜,PQ::{;•• í4¸%EšHHý|d‹Ø°„…†+ÐÞÂÂÀåËp‚M-Àb‚¤$pîüÍZø«œœñ  ¥å£øG¢¼â.¼2v³ìÀ«2ðæöÄÓ+cÓñqàÙ5Ð_ÕQ—g¤­‰´LfÙe[˜†ƒŸ:ÝGÎÄÒ}q~8(M‚›ÊœÅs·¢Ë{“-ÁyúðÉIšYü{¦M’Ðbô$œµáŸ¦é(H ˜y$w×`Ôž¥>Éä_Xí‹sܦî©ih©4oÞ_P]9÷H-Èp;.Ø)ö~j.Áx§@uì˜*ÙGÝQk2¨#SPý—|ÆR-@Ž-w?AWF|žüB &n ì»[ ¾Ž¢ËWT‘„/Z£ WöýaxJ‚ç%㜂)Ž”S(h¸Þ=x]}ÑXs5ÁœÚÓÏŸ}>L ¾ÍÎæXR¨ªVëê¾I;=Òõ¶íØñÝgÞÞÏ#£ªõôë,,Ÿ=ni®ÒÙtAj‰Äæ];Û““yåâ‹+–Iqlè¼ Àž¢+‚±±ì,­ÿÍxóæ Fƒ­Wk¼™z*'K¦nÎ÷}œBGsC¡è]±äÎNpÁv4*"9ågþü¯†!©à Ͷ柤ølG$æ3T<"5í™8ºït¯×`<ì2y%‰%R ¨nªðjqþ#^@t_¬ˆêXF(JóX'§, ——ÿ¬ªªêSÃø_D{{»¡2mÉA‘ö›ŽŠ€Ú¯VôM²HàQ´²²òSWóÿ˜±èëë³±±ÈÊÊÉ_(¾1À«¡Q^÷Œù¦—ƒcm£ §ô¶±9]¿13¯¾´½ëÅÎqªÚÞ/9yy¯VYË + sv÷ÂâðÐWÚ:3£âÊ8 ye·žÚÚFDâÁã)Û;¾NË0$=˜~Ñ{ئ c2%çfEy]ÃF]¨p‚9%voüß3¾ Û!¹l©¸Ä+Ggh]S.\jêB×=ÃÆpºþ¾ÚҞƾ¡Nx5<ꪨ°¢òÁ½YF|dx„áê + #»üÛ‚¢AÚ†ÇxÝ|an¿J›Û30ù¼™ÿãë1·{ =¯ÐÁÝS]S‹æàt(5=)å´©UVî3ªév&¿èhV6‘BUTZ©c`dD$©âÔ=¼kšš{ÆÆcØ +Ê«¢c¥¦™Q©!q;.•Þf…F¨Vѱ o™¿ÿYÇ»ÉT{‡†ý£b„ä”—³we$&-«}zõn¥oH¸¹¥u`TŒ;ÓoN=06îÖã'Q{â×®]G¶²ˆ“¨4šƒCúÅܸ=ñˤ0þÁm"uQßÚnëì&Ô*XU7?ÿ¸ø}7*uŒÃoìþ'¤fú¦¾ÁŽ Ð>6îÂô“——«}T3ˈ÷ôôØÚÐaÕ2Ëå2s {Eˆ7öÂÜ~«R!K…¸¿é€êm{&ššañxgÏsÅ¥ç‹oXÚØ-•Â`ñ(+4<ërÁ±¬lsK+eåÕ›ô 6›šá44½ýî64U<åyn $É»>?°3ñÝÉùHzæ÷WJ´7éÌŽŸ9¶c—>{þNˆø8õ\’¥5LU}½–ohÄáSuí÷¸Ï"£ K¿ðHw–¿*Ï +/­y»7a­*–L³†ˆ“­é4{‡ä³çv$ìÃ`0^¡/»a¡ öe‡Ý!â*ë˜dD4S×Ðpcú¿^z09UFVnîüù°¢˜½‰ye?À®WX¡(!±½~“®Ö&}ß}Ñÿㆦ­þþ&pÇ'üuÿg7Ϥ”Ô3EúÆ#3R\ÂçðÃÍYWDyBÄË?5§Š×\q<‘}þas[Æ¥<fÏعëodº±¹yfnþÍGcY|‘„«·OpÌv"æìµ5!é8•V±¿: 7䎧åêl&,_¬µQ7 <úHZÖO[Ç_¼ÂÔ;Óƒ½ç=ܹ€»¼&‚¢(Ç›eÄÿx8FD`$AžˆÄá­©”a¹HÖˆ‰å#ˆ±Ðe"Ò™â’럺Ž?QtñùÆŽª’‡ !jbÓ‘ôpݪú:²IÞ²¾µõ÷%Àf³E¶Aõd]BðÎêvL,ýcÚ1Ñš4ŒX×P<üWZN\Rj¡ÇCmYj¶¾?±_PMfi4ôni¡(v ]z/!!H‚t¥+"èzuuP渖ufwAð8::º .CgÖ¥H‘2(%”PD@aˆI€„÷ö…Ììº ;¢î9»_¾¼ääÏÿÞ÷Þ½ïý÷¾Í†áEžÎ?–°e'`©Žê—“O !Àk^à2u&…¼`fI¯s²¿&‰ ³èÍIVJ’â>^tn©´æ X¹ÂöÍÙ’;ßV'7dâup¤§#£KK—Ìðà©Ó@B¸ºÁþ>€~9sJIÂÀ¸o/TR„ÞÞ° $ì…+”„8ظqþæMáè}!¨ªYYpî,(ë7@Iièë¼69y`l’ŽC77(%cb`q¬¬‚™™ÐÂHË€ƒae%¬ª£#à½Î𢼢Ziöh”Á¡»ómyüŀ؜: +áDýpS¶‰>"VE†ä·.(Þ€©OÓ£…ë"¾1£ðÁ{ ƒÖK(J…Õ8i˜IŸIÑŒüz¦‘D_æRÝáuÚäEª¹¦"f…”[ð†€ÝDF„hü‹Õh8Ÿ(|P‚¡ EGJJ‚h¡¼ÏpK ]B»ƒ¶CÏ;RÏ7ÑwAÏT•ŠŽìóAxÛ^ò˜Mq羉ê¢n +~:Þ¤³ÿàh®*/‰“¥Dàã þYÚY(½#ñ¨BÚ]íõX¡ôÒT/»þ%Z%ÐS,`å¼eIY¹ ½þ\û¤!ËÞp£›gAº¿÷"¢‹¾Ïƒ¹Yô9?ÃJN)_¶¬RC³7)©Õϯ#öÀƆQ»vmÅ2¥¡´´‰ªê:}B©œlWüž±¢9%¥ìè¨R ñövcù“5µÓíí€Ï‡/tÿ_CCCT*Afg¬×Urrê滊߾Xy€]ˆŽ¾IV.ÓÍF(zµ”ªYÃ,ÆÜE’»ÿÊŸWðj&™ÌO#Ãk›§RÈaf8Œ’”}Àúàƒ—þšD|c„ ‰ÍŒÒÇ­RTúD†¬+Ú ïù1´0t„n@Á#xNGM‡Ó¨¯¯ÿØ0þ188hm#„̃¹‰Á´/h¿Å¨¤ýþIZ"±®®îcÏæÿ±d1>>îåå…UUÇeÝáB8Àë[2ßôhznpÞ¹ßâÁðÑÐÐ:q>‘ÝO†,W­Y—xê¬'ÓGgÍÚ¯2¾½Qð77ª§œœ¼¼¢3$ô~w/*oh–þÒUœ†¦²ªÚ§ŸŸØ½SAAÁÒÎYHcS9y™ýÇ“®æëIII‡Çí¹œWt«¤"vÿiY¢±Éµü»ÍíåÍ]ãÓȾ }ò†cSKë åÑ hhÎT×8É£™¹m1qÚšZuµ÷>0â³3³þþq´¤Wrò§!|<Ãï›ÖöŠÊ§~)~|º+èã ú¸üÖaÎÙ´ ›llñ†F¶Î.f–Öv.®ûŽ|VTÓÐ1:qñV¶½‹Ûº z^L?f@°É& ÿíá­…h~—£µråÊÕ«ÝÝÝ<=S¿¿QÖܶ-j—•ãžƒ‡#ã÷šÛØ2üó«ë&œƒ°ëéè–m¨TOæ–¿–Üe=mz<ʃ°†ÝãAó–ÙYÒØRÒȪ8ðhj¶wræý£{|zxò~á‘8œzãƒûq‡C÷¢¡eTQSÿövî³Ä»žýîK,æ³ç(»'¸=“ܾé¹a¬íîKPVQu¦Pâv¥xšZÚì9øû¢šŸÚFÆ/ÝÎur#oÔÃS™Lz@™…ÕÖȘ–Þ~´à'“S>QVVVQ£Ð‰ü²ª£çÊùÚkV™ZZgde9yÆd“™—¯oqÝtòŒÎñÿR|]’S?xü»·õéXÇèøé”ttVl$·Fït¡Rå\IçÒ/…Åî163ß½ÿÀµÜ‚„CG,mm¶oG”––‰ˆny<„ú¬lí¤Ò}¤¤eÐÑQÚÈ*mj­íìCˆ?œà §ùjÎÿ–Ý-"O÷³éÞÉY„Uí6.®BD4`³Ùñ©‰I[+ëuxƒöÃ)NpÙ¯âö‹„G•wóz&xýÓüaꈊÿÖªÕ®›i~~X,ÖÈÌìÏ—¯Öõ °ž<“’¶BYE]CËwk¨3™leïp*%ý)of\ 8ù§T5uu5U#ñ‹¯ÊYˆrôôÌmlŽý‚âE×%è:q²q`˜ÀàÌì­¿—Y;9)a±û?;^×ùˆ5=LWèæaèÞÑ‘yGàã‰h,¬Š¬Òri4b`¼ÁÂ¥·Þ«GÛ ™Ç-1ú 5T¿¬¤xr^§Áï6#;#»€ubò’¡DUÎ +Ìb̤’¹É"‚½‰i(ßa–÷³ Š…ºæìW TSghÙ•$ IX$x’ÙdIQÂ"8"à6S«HgUž·øùe€#AFœ£w%Xê¡Ô?ƒL ˆ!°‚1læÎ +Åp#qÌ´žá,õ¹ÊT?Sn$vøßõ4áì0 w Žâgj°P&i}}ý§.ã`ÏŸ?·w•Ì +…ÊG¡šåÚo2*j¿»ò•¤ €ÃÕÕÕ}êlþoSf}}}žžž°²ºú¹eßIh—¼wOÝèÔ7üL:þhðu\â½yDg?¿øÐÉT‚µµ;Ë+-¿È+ PGÏàpjúÓᑃ'R4µua0dwzzAIYÍÍÒë7’³Ï;®qÑÔÒ&{2ÜLür«ÍÚ•QTe´h“ËÚ½ÇpáB¬…… ¢R +@‡D›˜¤¢6kÁBãý‰IüÜÂlaYmë8ù¶õIàuÊgÃIÍ݃­Ýƒ²É´OÒ…€vé›ÀðH£ù†uµ5Ó\ñéÇײ¶®Þé’ÒažIGÅݲØ~=þÇC#càò½¦¯Ó2Ss +SÒ˜Ž£+ÉÕÃÓn•Ó +¢pØÑÌlÁ•Êý‡“œHnn Vº@ ¬ªugy.2þš*†ögœõAŠ +ŠjjjÁ‘QõŸ^mlö ²'®ù2éxJN¾;ÛÛp‘—@BrFNù•,aÙƒ>Cqæ2%)í´àʵ´<³EEMÕg=/] Ü} ~•³+‘Dƒ+-lWrÖób¿:¼.lãjióŽLŽŸ’²’…õò/âψÊ2ŠDT&KYY™ÆdÏÊáç ++k:^=xÝÖ; k4áS[úú†ÏGÇ|‚C ôïÞ¹=ÍïééaxÒaÅuôô3 +…½òŠ·öÂØþ5Ó·'Ð;Ôdàõǹe—’³s3‹Jwîû‹ý*–¿ÿŽ½q$wº¹¥µo ïhFVÑåÊ/®q£B:§æWT1|8Æ&¦'o¸XSg‚1‡[/59]$„ +ïl±hþÂËíŠ*ªÕ$ú<£ùœ ^RÆ™”ó…_üÊœ`¡¬2+04"«DTr­:÷â%6×O]c6|íÉó…»"’HŽÎ®~¼P +ƒ½|¥ÄOlüá ÿc‹ÙÆâø+«¨¬–ÿù@|–¨<½°ˆÆZ«ª¢F¥³NžÍIË_­’U¼ÿu[ÿk˜é””û'ØÀöòh`¤€ªf±ƒ³‹L#áð---Ó\ñÁþUvöK1ø-xØ/iù¥4ßG{[¿äáôö“çðÀOžË=S,ú|ÿ_‰Î®Þ>AÚ:º‹M–mß›]Z.ªªßúE¬¾þ<²»§¨ª.=¿xÕê5+‰NßTVÁ­ËkjÍðÙ8`bš–WÔ= xŒ—,]áèéwäo¶+ x"b¶'ñ3Nåæ:‘â°z†Æœu¡áÙ¢²ÌâÒ}ñ .TGÞs"û|ĶË0æ: ´ÖÒÖ ÙžœJ÷öÅYZùóB=½9sçÎu¡P“s +øyÅûâ©,6–@€=!!™*· ²©åÙòX2 +[Ü”³[,ïÝT‹pr!ÃÄq8œX,žæŠÿv[ ÇÅdªI.¯|H^•‹ÃÛ + +Å(¥×ÒÖ)+¿ø©óø²—DöÚe(T +Õ(«šÂd$=ô+ +2Uÿ= +eg7JÃÓ§ÀÞ½{åc +³BÇw3Îg–Á3£ó0ŒÉ títž+ã÷ BÏÖRVŸó=ÈŒ…gLb–„ àb86r"ñ^áXŒ­LpªÌT<`r Ë°Ãp˜=Fz7º’ßs7É1ÙMÉq²ô8 áSA!óæ›YŠŠ^t¦äéÐU5Ö$kÊ®ÿÞ„ã÷¿ý·žÝÊÅ,2XáDzÑõrjáñ¾!AàupDE!ZZˆ“âïXÛ ^Þ ¦ÀÒ%ÀËQ*Šðz½§¨ )=±D–ŒôúùŸaF~‡=7øh,Ù ä³{RÜlõÕQšJ.&Ü-xà·Pç½C5íåFãm] gÌPÄØèúÇàáÙùSV(š»…àanj©C…-ûlá.=Jzl·ŸGò.N)Æø4PȾëh¡©ªd J AÃdå¬ÿÉÑì0,¼é±ÞÔÐXC¦æëWœK„§„´•5–|àH…Hóðª¶ãV‘°xµ+µ§`š@)".îÊÉmݼY¼iSktÔ=*å¶m‹Õ@§? +ê½ø­´³ãÅÙ¬ëÅáo,YÒÀ`JÞ~ô‘N>¿Fß ZG§Io^¿¡ýà¡¡û÷ÿd¯ŸðÿNëìì¤Ñh°dŽ–èÖË™ §n¼µüÃDh!-@×õÁ&ÑZ’ƒLôjTïv¬7|*ä8ùgô —B„CFœgüý*kêÊÂ/êØVqÙˆÖ­”„@µ +¸@¢H€„!°„°/ (DQ[pé¢BA¨ ê°¹ RÀ]VE”‘}ØA°C–wç&Ø™êLGÛAù¦ç;ßý^òî{÷Ü÷ÿçÜów¿ÎQGQ˜fÊXÂâ©ž?+æ¿XÕáYƒ£rqÌ`]8GEc¦Âìé뙟1å òN ‰‘æc†è’—`çÍ„WSÓ())ùÐ0þ +kkk36‘Af€ ç¤ZÞû½M{¿‡ò™–ò@‡@(..þлùÝ&Í„B!…BȪ`ÕÎ]½1@ˈ¨¦guÓà_‡E]R‘—o´ÊO :¹yÚ»°×‘7ì:øM~ù#¨ò´º‡Ož‚Úêbá­eƦs””è,öá”´}ßdžGx‡„BU¸ÂlµËáîÁòö>•}¹²¹3ñì+ÝÙ“ÃåñµuõH66E•OàŽúPiÜgæ/\¤8Gy#ÎööÛuàÛüòÇu}Ãcõ‘I׆oõà¢=ƒðkÔ +GºQÐ2&bûijÌ-~pï=#>>6Îpr‚ˆ+©¨¦f_ uL\Ó3 ‹í"‡Þ<"ê ëÖ]ï>ÓÓ›ååKc0¹Áü°m;왆ËW›š³¹¾Q{c‚¿Œ´vpòºtï~eûóà-[—àñQ{ö·5 EÇÔ˜«‰USÛ{°¡äöÓ¯  Tz\ÚYˆÑ—_ÅàõˆDCC:cËÎÝq©?0=¼TTÔu‰K]8>ü¨íÁ["LVˆÄý‚¤Ê–Žì›÷øQÑ4W'¶» ÝÑØl­ùZ•Á´¶§»ùú%žÉˆøzïü 5çÍß`K ‰Œ:˜xœÉáb±êº†Îî?^˜ ýlYS[Ó¨ANŒ Ÿ\èë„ÃRÐ&–8r¸jj؇åïñÞÞ^[Š D\Y{òbNŸñÚ>Ûë;}ùú†FÇÊ[œLó r÷ tbyl´£Eî‰;uÆ…Ãʼn_¬4eq}¢vÇð"¢lœ9<GESoëvx7*æ@ǘ¸´¡‰dc‡™2¯op©è¶æøõ‰ËHÖ6ùe•Í¡Û¢q¥FFtVÀ–ÈÍ;w®&“•UÍÖxGîÞ·çÈQ;ƒ¸tÙWß|WÚØšuóNØötX (N&kÖ˜­%Ñ™{G¶OdQÔž˜‹–hÎût½ ·5:Vp̕룦>— gàâÉõ Ý—vº¬©½ –‚þÑZápÍ$e÷mäEf¼€;Õ5&k×Éz$‚î3(‘Þ¯ ö¬\a¼§{ÿYà 0Ñžý+Vÿœíõý#C¢²¦Ö#©éžþq˜ vNŒmûb!”¢V]Ób£MPxÄcÇÂ#úî¾þ-]·«kiÎ.x=½¤³ÊêaYž:u*|$3¿h€ó7 +—¯\oKÍ,¼s¡à–“›‡ž°ÂÔœÁrß¼c×ÞÃqTG¦*VÝÄ|­/?Ì›êìáI¦Ø2Øž‰Kê›R.ä8°Ü\ÝB"¶™š©b5Ö‘­\½¼!åÜýöÇ%úò6ihÎÓúÏðð +Üñõn/.,#ËML© Wÿ°ð¬¢»íbXr¥ï"»!š†Æááu·¦Îl "N j^j„ÿ%³çñ”$AžÈ›Ã‚7u†Eòæ°ƒÉBS™ÊD•”¯æ]ûÐûø?²ç¦4{-ÉD*j˜·ié¡`d]ý#Yµ yýãææß@tt´\ øåªÌ`=g(Ç8x;N>ʪ¶¿_Oš{iÃ%ì}ñn›õ)îZ +š>sÖt[m×0"”i²»^òE=ä‘xýS2Áˆ£yã]C‰þ:Ú†*0þÓ¦u#€‹TpÎFœ@Å[ˆäñxÒXÜ+.Š'‰ã-Å’X`)X‚Sp™~s ñcok;Ô\ºïHžäJªrdã¿÷Ç9Ò§—AYkÙ9ܧj_˜Yvu?Ÿ\z¼n¨|hoÉ'ŸúHìGŸVËþîîFÓN¡ç/€>!ü‰653§AzzùATÊã()AËËÑÌLp-¼èyùÚ®NÙÏ´4 ’“Ñ®®‰ÅÐÑQ´àºg +‚ÁŽèõkèÀÀ»Ýãoµ¢[wgýqö6/;ÐR:nJŸæŠßÄÊlé_®€þ’ÎG™« ðH³•>¶pXÌÚ¤G÷Õ‘Ñ+c £¿;\mò†CÄö´Y4É1²DF3È(²²ëU² ,E fdi$o¹ôžx²‰ò Ìœé–ìÏYrªÛr~¢º,ãpTO#ˆÀÚD\ºZƒÁà U]Ãôœ vmª—, {<+”è ³˜ C†`Ž2ñ ‡Ò­%²H@†ËÁ`^£ý8¤}¼E’L“f rí˶¯ÔUøèê[ùàà;©0è\• ƒÑvðÃíÙZjóàB‹4°…§þR´>OR•ý†OZ•ƒV_/´—e˜ê-4·ØÐÛÿ¾8ƒN¤¼ŽÔÔ´'$Ö†ð"":SRû +‹„…E=×ò†žU£RÙ,T$ª¨èͻ֓“Ý‘t¼'÷Òø‹O¶4w¦¤4Fn­ãóëÂÂ:’“GÁOïþo¶ŽŽ+++Ù*}íÚS@o±´6ï͉P•+}vt߬ʥY˜ÀÇõ5gÝ6ÙöhêFqÓRÞèÅÅÅz7¿Û¤™P(¤P(Y¬Ú¹«7FhÕô¼ÔŒÿ¹Œ‚o¨ïm¡ ƒ£™·#wDz}üøáɳë…CUtçPRòõÒ‡Ý(h½p£è»¤ÔôËyy¥‚ôs>¼0_þ¦CÇOžÏ/Ì,¸5f~EUËð¨€Öá±¼åg®^OÍÊ9˜x")ãÏ¥ ­íbi›½_Óø퉿±_%PQ^Wø''5iµšÆ¢iÚÔžDa0b=mbÕ´M"`AEcÕ€²È."2 àR\ + R‚€BÄÙd—a_f–fa˜`6`˜õ½3&šÖZ¥ÚsÚwîùÏ;ÿ{ï÷Þï»÷¿÷šÿшý~žAñ)iMýƒù W9 Ϲm ŸÞlð§lŠ­Pƒ¥|nŸoà›ËWP:Úž3âZv—»; ¾xé²ì’;3àIž5©2éöÍY²éái-8¶…Á>ûeŠW`¨OÈѳÉ)5]4š@r»¾5.190<2àXÔÉøËW®çe•ÝºÛ@ጎªõýÌ+׿Î..ëóµxëàPÂÕÌ3_\Ç ˆ.•å׿*,nêg‰õˆ.™Ì £?÷ŠýË¥’ÆV3IWBˆÇÂ#GÅD9÷çË_æ”U²å +-B2„zøâ‚ÚúŒ‚¢¬Ò;É9yGcNù…;•XÑÖ%Öi‚±¤Ìá‘^Á¡qgo”UTןNH:îáLŒÎ.ºÓ3*žÒ)ÔsBøG…£˜3"¡Þ°ó€—••eϽî猸L&û£“3 ¾d™åµÂR¹q¶t{,â÷ƒ…9¡*ih‹Œ;çéDŒ÷R8#@•’ƶӗ“ ¾‰±’sr³n—’jÈíoFßÜÇJÍË¿^VNH¹*mI}ëñ³Ò®ÑE BݼÑä¬ÜôüÂñ8R4áDnpTìÀÐØ ñyåU9¥1çã9æz4ât\JN^f~Ñõ²ª>ñ$—ãèÞèXA]Cé6`—œ{Ú÷Hø©øÄ;­TÖÐ+”|‘• Tô #ž9ŸSRNª"Ÿ¹œ ˆ{úâǯÝ.îá™RRÍ’OÏ â˜~Vi–- Ö†?|>·%Ø2™ÌçŒø”RõÛ÷?X¹Ú¶ÉBˆ«T3cæCÍjî”/ml'Æ]ðð_ýõz.eˆ1ž~«8ôø @äpô‰¤Ìì¬Â¢ÄkÙ_—×p•S"‘TÛxòR"©–<¢Ö󦵳'/^JÈÈìˆgñá•œ›é¤¢^‘TlD 4úÅ”´CaáþaáçSRKšÚHÕu±üˆ:}.>57rËÈŒÍêêhùµõæi7 €AáQÁQÑI97:Ø<Þ”¦¶‹ùÇ78Ì+0$òì…¥¤jòéKIÞÁ¡{½üc®|ž¯1ÂùÎ?;ô²i0y¡VgóG[qÀb±ž3âÿþp YŒa©6`.ÉOª ÌÅa·…E1†mÂ,Àð×/©¬ª~Ñvüq•j“«Û;V„aý&Ô,ž¦¤![˜ªz†½aVö}££Ï¦@LLŒ¹-Àlc¹ïÈÚ}avÛ}lܼW»zÛ¸zÙlÞÍË4Ÿ ±6‹›Ï*Wokwÿ5£Ö¹x®Z°pÞü…ó¶\íI´ÛqÈÆn÷1ï<øðÈwÅÍT²ÞáOðˆX»;Èvõº¥ ÿü—_J=°•ï@ÅnÐ¥âé(ÝÁ˜æ`¼úw‚_u@Wíq ”aò]ywã±÷æc˜«‹óôh’¶Ê ý¥¦ç¿–¾R#½)»]ù«fõëÍŸH¤ãsKGŽÇq‘µµâä:œNÇuZÓ{½ 8_€ku°é H*A".•âÃ\ØŒês©gpµ Åh|7âß~ÇårœÏGƒLœËÅճ߼…ÛrÓ©öv¼¡§tàBÒéþÓ6>ÛhhjýñÂEÑ]¿‰ô2ýÓ€Ø[b¬@Jê­h£5éµ%¯Úïú¥qí®@0ÍÍ×$Ÿ…DÙ­w}›÷’ÏzKežªØ2Qº=žîˆ§9Sÿ‘i†4Xr€U’ë„êvËÓ·l¾ÅOæm9° +¨¾ÓÏDu¸b "Î ž>„?…¾÷9Ñn݇+0ÌÂfý²ýk÷^³ÝÇz»Y÷ü,Øv%2=ö ‹ô½T¹‘\PúV<Ã|(sõQÚ›—@¾rD·\P{׉¶ó_yå:ûÛx³3}ߤŒ)ü}¬!¬<ˆvÎïX¾µ.úÅrËú¼¤ìćª ý%Opi)Ψ@¢®[›Ö¼ýáÇŽ2¥ê9‘85̪gX,¹^ÑÜ2Ë6¨¦ +¥n|ܨ}°ŸÕOèÄb §‰ šÙo>£Ók¢iZ¯²¹EÑÔ4Í`L&à^øß6ÄbñÖ­[²kW±ë²ŒbdW=9úËŒÌ +$mžê/sýxÿÕOuÆmFÕîè¦3ÐO·Gi9MÔ2˜Å”ZÓ€ù&†glE¹Î°™Ÿ¸åÓŸ¿†-|ù÷ûßõŠü–áð+ñ’[oƒÄîõ]1½t3‰Í.s2ßvpÕëK_]°è•O÷¾ëa·ÓßDÅûÙÞü?²žCÙ +€n¾Ö{ÛBL9îYiõÖÀp+«7¨Tꋆñ{ ¡PøÁdvFÂ0†¹ö{š*j¿óÎOÌ€ @¡P^´5ÿs6 +…““ »ÔÒ*¿²V_­ƒê~ÃÈzL;ù=ú¦É)Ž|fxZ;¢50'•dÚÀÍêÚBrc׈ḧ$FÔ'oa°{Åã­Q¨Ãy翇/¡Kå-ƒRM]a-¹•ÁaHåô1M868®j 2£Q¬Ã¡¥ñÅ]Ãü6æeh”.Q Mkxj=[>Måòª)ÝwëókîÖtöЄPäVsÛ>ØàOhKj)ŽøÝ>ßÀ7—¯ t´=gĵí.ww@|ñÒeÙ%wfhô¬I•I·ª¶yÂQªy3:ºTq·»T]WP[Oî¥3e*§O(ÁÊvjIS[5õ`qoDÜ#ÒÇå#3:¶\MåðÛYÜ~‰lDcà(Ô0o`¾€øj¶‡?Fávr±‰ ªêè,¨%WQº`>8¡è`rj(Ô²¦æ²æÖªjCƒ&” +4†I½QjDpE¿x¢sXÐ#tó„5Ôî’Ææ»÷úRÔÙ–ª)]Å Måí”ο±_¥AQ]Yøa¢Fg@GpID !b*Žb`‚L‚ˆÅÖhLTÀ*ctÆÔd5šN9qj*?fªf&?ÆíO“(‹"¸t³6ˆt7½¯4 4½ïË{wÎ{ Ø(*Q­ÊÜ:uû½wÏ=÷Üó}çô½RoPÏâ‹jZZ/×ßþ¾Éâ‹ûu&ð +¸1#„\$&;P]ãõ•”ˆŒŒ¸ßÓ=ˈ †ü¼€xXxÄ…«5F +qÈñcˆF"5;zÔC7[;þSw«²¹…-”ˬîA@nö‹j[;ªï±ë:»Yi·rð¾Z Iªtø¤&{—\Õ.‘*; Û±øR©Ù®óR“ Ð.–KL6 ðP®ëà\m`Öwt÷¨û´ºžà«õZ#³¶µær¤½êa…Í£÷`Aióp‡ôròcbàvWO%³hÉÑ“ˆã…LU5³kÛº:$Jî Ž-Ô°Ú®âw™Í)[3 扴D¡P8ˈ[Í–-›6¯‰KlʬÉÌለ8À-5;!so´v]®»SÕÔÒ&”ÈmNÀèfän÷ƒš{­Õ-­M}ü.™²M,ãÈ4 +«sÈ5|´¡—Û.QÊÌ.µƒDœÝ/nˆ!€—Ødk)Ú%* ÀB +‹«]$¿Ájƒ”l¸ß•Ÿ7¤oá jÙm•MÍUͬۜÞN‰J 3kܸLJ¼`ÁÞ«ÕõjtPíY|!Ü€…Í Á>[(©eµ]khÄ9òžvôOXÍd}S{ëû;LpLnuɬ.ìwÆ »Ánèb‹$i™€8F‰D³Œø‹·Â£Gáºø5†ñ¨Ãaã³N†LêpØT…a©Xl|IhX]ý­—½QÓY,©…k1¬ø$jAÓ9Òƒ4‘§ú^ Ûw™¬ì>•êù8uê$æ¿l\úágIûþðvñÇñE¤$ÀÃÿ@üRt0~ׯiN&oßûÓyÁ?›Ÿ_¶®âÄÆa\ÖŠ&Ôž`¡è q$±ô$F'.ÿòúœsû’P=Õ£ ÛÑù\tdû£r!—“t­52j?Ž Æ0FaCÉDÃ,ïº[CöO—¾œ_‹ÌœΕ¸U‘ÓèÃ#º™¥Ç¤FˆÀágì-p„|#ˆ‡ŠSèýlÌ{ìàE'+v"uÒ6ãüëÞi€è}P ÄΡÞÊÔäx Ò¢°ù™Œè²c€Ÿ¹°çÓ¤òÏ7$íX‰ÍÃÿb¥órºÃ@—v sãó3jÓ(²§äÊNÔôÁè¿2é«Í —U T/=B›àùØB‡âöþ.qÿ““R–ÍÁÞ Ûûû·?ü R2®øPô¥ÀùãŠÐÞJ 9?ïõ9ÿÞ›„êŠQU:Ÿ3Îí\Rá<ô—rIÂÃóµÔÀèú|KlÈÜ+æ’Pv,¹øP|ÑÁ8*¿ OØýibʼnäÜ=1KW,„…V/húæ+dî"¤õ>nõ3¢Ê­!úo¢ÑöAη©I«ù«m³eV(@ðöyÉKPy6¥^ɦÕjsrr²÷Ö¯7\D†\\ÿìDà^Ç…7ÑËÊ­) o†éï¼Ü}&5ìBß s9$sÖϹH Œ~›î–Jÿšžþf¶x~ÆþØŠãÉŒOhPçýe¼ˆªù»Å_Ïãwý†Å¥I÷h´ŽŽŽ—½›ÿ·k&“)//]y¥îŽ!µÃ#Ò]EO¸Nþ{en§Ö‡LÙ‚B¯Å‘Ìî–X1‚#•Ó·?™Õ=èEp׃˦ƃt”&\láÚ5„£AR» ¥Ã+5Á=×"1;Õ.lã¤&(Èmn18l²+]ÞQj®êaTe÷H öÙÑsÆÖ%ãî9F¤vy>:xdåòí­³Œ¸Ûå.e0ñХᗪo.¯Ho!}›ÒyŠ B£Md´)즙Eã&(áÙD „Ý߀)í™Ù +$v^$³¹¥&§Úé¡tÔ.ŸÄh“[]4€¨px¤f‡ÂNŽš(ûD~‡¹†ñ/Ð)4ÁÐI0jƒK6¸14N¿àÏ€—[Ý°ŠŸ Êà†¨ ¥ƒnëcÆI"1Ùa¯¯¤ü@ddÄýžîYFÜ`0äçíÄÃÂ#.\­1RˆCèÄS!þpïz›Ôèpãúñp‘¼uâÀ­—ÂO?"ÀïCĵä~É|TXÝ X&À!4ÚAžÉô·¹%F»Êá›@ܯæ'˜uÜ8,êçÜâ4F;80†8Aòmq¨$°¢*q#ep„R3ŽË ‡š°A!imƲÛ7Ø‘Üâ^±úE)[3 扴D¡P8ˈ[Í–-›6¯‰KlÊ ’23Ì©)=‰ùF’«8†€à«œ¸ÚéÓM†Û@ \jv:ð:à&$f¨áäë(¥#CÜ y¹,·y¤ÈwB€š¿€›Æ!› , +΀o&>“¦ø2]yv«ò/ïO’³”|™.=“.:¦þŠ®ýGÆ™ìð¹¶oW‘SÍDÃ,ïº[CöO—¾œ_‹ÌœΕ¸U‘ÓèÃ#º™¥Ç¤F€¤Œ½ bb„üˆ“ãhbtB4€‡§Zaª‘)u_¹Æ¼ÇYt²b'R7!m3οîˆÞÕ¸@ìê­LMN"-žûîÖùûã€lÀÒLF½8*çƒèå±Qï…c¯a…ñáN§ ÿ3[|æ}ÉŸÒg)š=Æ4ÕÙt` ìÏÿe¿êc›º®øsbDZ;ŒÄq ´ÔäƒD8¶µ‚”ð’†´®l¤°ŽŠ²j´Jü·?ªi•¶•UHݤI«ø¯­ªU¢UÕ‘tÀTµÐQZBCéš6yÏΧã8_¶ŸŸýüõžßÛ9÷>á†IëÕÉËõ}çžwîýý~÷½³Ÿã;fO´üëXY¢³éê¼ïGGê€À­ ´ƒT2µ(Š.gç¡ÚÎCkkÖ-×égCéc‡j}º¶u¿³­Ëٶ߉œ?R¿ó'kì«mª¾@÷Âîï_ZÇÿÜÂý®yè¥í#ÇvŽý2Ù1óäèËÛG^ÚÉŒÿ©eúÕ¶7Ÿ^¿Ê¤/ª05ÿø=‡ëvAü®5 , t:žªyü™µ›ÛV•–áAÎçÞzE ® •ûO-²«ýÝÊÀiuîÒdßÛÍëÛv톅¥á€¢©Zúz¾kM=jV+ÊubÈ S?%G)JÖé[ ~¿¿££ Û²¡Þýáëj°7í>»¸ú{ÒìiuæB¤¿gß®&˜^c7ýí¦ÿÚ>v¼eð÷Ížc[5’¿¼ýzÛ1rl»ç[ÇŽïœyµ½çWßß`·0VûøƒÚ·ÉÁbµíkç¿ÖÃ|MûO«÷Ö¹\½½½÷z5ßµ¼5žç;;;Y»£òä™bªê¥ Œ¢#·@9yÒÊO‹I“RzVVfRÊxL‚*ÒÍG¡lœˆË£‘$¸ ññ±XÊ›¼1i,*M$åi9=-¥¡V…ân,&ŠžžÈÎ î³ 6„²q"!Ç¡êŒcÂ<§I˜¨NK +D€8#B"¿õà×ì'”¥| JZo"uè¹çW­¬ê½ôé#žL$ŸìêÄËìoœz_TÕ‰„ÄÌí¦iÃ,„; èøSi0_R¦`«Çc)_2=%)~‚ÔD" ˆ|#B@ŒÒx\ +Ǹ€&%ûRéÑH +¸1Ä‹cb +Àâ@†!!áMÈþ”2R&$º¿D,•žL"š@5FaâX†:ä†ñÑ'F˜ Ó„'S2¤ +sÁútp\” T.ÏóCûóðâTZõIòþ#ÏVV:®~qe‰ƒ{;÷âåŽ×Þíĉ0Dœí8sðœŽD“à6GObLI*ô!7|\,åO*4a˜ “Þ$¡(ª>=MhpçëùHv, ª9ÏÖ–6@Üårq·Äˆß}ÛwôhÃœ`˜¯ÉÇáG‹}ž'‡Wtº¿3L3£ƒ…//+?söŸ÷zÿGmVšŸØWÇ0ï1L?¢¦»Oz°tøUÿ%Ãlb˜ÊGÚ¿ÿïxñÅß’²€),ÔYJô›Ád5Bufµ•”‚­ËŒ¤“?£mhÖRƒÑTÔÓét&3ŽCä–:[Kóç’é«¡̦7[ô…z¤.ü-3ÖØÍug™¥Ún®uXÀÖ:Jæ8Ô9Jjg¹©Îa©³›‹ @Á ¿|Jš<¯N_¿î‘û»ñzkûª;ýÍ?ÔpßDßɆՕmmž™½;:(·ø©¨ŠBÿÑq%ë (7¹£dþåÆQrÃåüW®ý¿öƒv2‘NU¹!ï–óí¶óÿºhµ•þæç«Þsªÿãô7=Òb ‚ƒôïSéÁÓjøòÔ—ï5o\G¤ +2éJJ ›ÑlBÙ«–R£¡¸nõº–›ê+JÖ”›ªí& ²(îZ ˜Ö! 6‚ÝÔPi¹¿ÔXT€\7š „üdšAg4[zÐY§7 ܲRg"Ìeà`((,@Õ0Li±¾¦Ü v–›kíÂmà<Ò¾.“I†ó–š +Ë;¦?–¢B&SlÑCX3®Ñ@äf„gYáY¨M½®Åå\Yqî­WÔðçÊÐY¹ÿÔ"ºèïVN«s—&ûÞn^ïܶkw0,| €çôº±u(éêçú+šB2*ÉQCnˆŒ²Sox༔n¦”%m~¿¿££ Û²¡Þýáëj°7í>»¨äþž4{Z¹éï~¢µ OC]ÝZ´Ön®.GjaÈqj^«± fIÕPa©²àäb³dEê’sžé¶ßEôÌG!ØŒÅÀ7$¾ˆg!Ä¥†’eÚëÀrK»ó—‘ß#ä]SD^CЪªªúúúî-ˆwÔ|>ßæ&„l#üÃ0äÛïv¾"àÛï*ñl%§Þ:—«··÷^¯æ»–·Æó|gg' kwTž<óALU½± ¥n0r­l̹ºƒ7¯1.0”;$rtbH„òÐMj4þÔF

œ d†!’¤ä‹ ÛΓYƒ(ï¢ã¤¡ÄŠÕv;Ä‹º4±ýx&Åw<ÊWþ”¡jÂÏ6t¹î¬.‡©Þz4ÚuÍ$­VÜNÚaØàfTêx´È´¯9­vÍÓá}† ‘ßu§¡æÞ¥5kÿ  +Œ«T}OŸ>½ì#çLà„óõûï+?ä~þ‹Êï~Ëýø£ðä +®o8¸Šø•úâ·¼\‘É*CC•Ï¿¸Ü¤Î…r¹ìóùd2™F¯\ˆZ7ά–<áλÂ96œ~kÉÔ2²Ë„yFr,ºÎ5³a-lèŠäÙØ]6ó`:uÌ})_JÙA:^t [nX£¢Q©Ö3/,aVKî­Ç3þõIZ¯ã´F±Øø`&¾ç–Œ7»n"oY¨@¤©,Mñ`Y¸É€ñ÷§C»L¿™ì£å‹IÇÖ£kñ½jþŒٶ戻,ìÊñÅïP%VÚ–M”Ü™÷¦ýN£…Œ¿™Ø|8›¸ç‘êÉ{Ï35ůË$RíµPs1·6yæ¹âwÝ™ÞàŽË4B÷‘ò[«ö­G³±"SŠ®k&­ƒ®@Q1¾ç麳éÐûÀ8EËo'Ö?˜†‚Hñ¼ë<ÓÚµ4`©GMÒÍÃ&>Šä]±"õhÎe&ûÈÞ[ +ŒT#$™ÿÍ·²ÐÔÄ6ïTÝ!ì Þ0ê ½”v-W©TGGG—}äœèdå¾ûŽ›™áà\©|óíÉ Œ×œô•úÏq ïÂ,g4rŸ}v…>]ËåcŸÏ'“É4zå|x<}ß-²¬+¸døß31ÄSZUes$3Ë„sLòž÷Ζ³ßL¤|1ii¸È:ƒ;ÎöB§o~f]‘<“yà]J;h +ŒSONÃ}Þ¸óŒû‡¤ C‰5®åM‰1à1u8«ÌdÕ»·eLG +‚ô9LA| EMšw€;l`å-°É}ÏRÆa¡À8 ƃÖô{Ó±»|Ç·«ìPÀP]»Ûק:Ep‘u†s®ä=7d24ªî#å 1+‡›’ñSšþ°®‘< Óµœqè0NRò·WÆS÷½±2.M{g†NýÛŽü¨{B»N#tœ€Ž[3ïOGr|dzçãñ )Eó t|qÍf´ ã*•êèè貜³?Z¹¯¿æ¼^8W+.W嫯¸ê3 Œ×Ò'ê?T–—+ðkæþôÇKMé|(—}¾9™L¦1¨æ#©Ã©h d¬+¸s í2‰’TL’ {o§ì 7Aú¢D³ŒpÎ1©ûÞå §F¯ã”V~Œx#y¶6ì²ÖxLîO…w0®"å qkú>H_¤q)PYÝóø×'‡Æ)0Nkä7ƒÐñéX‘•:þê½W e_-¹¡¼ÃV5AÉß[¡ãá$æzõÃM¬éc8ǮݛZÙ˜4˜T`œ¤7Ðqu7*û…º Œ‡óŒqXè¸-ý`:”cÛ2l 5O”IÀ¸¸m\È7¤‡›·nDü`œeÙV«Õï#ç‚ØGëW_YÉ÷é¹zçŽõåç¯ ‚ ‚ ‚ È»ƒõâ…µºÒakjÒúôÓ~oç´Û§Éäû ÄFÙE}®ðXÖëD1xÕ ª)¸Zù)S%á?ô>؈åLUP wEÁ¨›òê–õñ@È›ÎÎãZ8 \6Nò I¯‹á›çIg£¥f¼›¹ËƒÁܾ¸ºÍOÍ©ñaOJ+6Ù]®Bò®†êÐqÍgBþ€÷^>Z:êeîrÁ˜Á`+;±±0í8Ì[J™ƒyƒ.Øw}k{b:>í÷qé\´|œ€-)•ÿƒq!w >ÜŠMFü`œeÙV«Õï#ç‚XôåÙ³ÎO~l1LçÎmë‹?õ{K‚ ‚ ‚ ò6–óû׿uÒiúûÞ{ßý¶ß›ºíöi2™d&4Ê.ê‘ÂcY¯ÕTÃ~u³rb¦JÂ3~.è}¸+4åLUP wEm_¤ØŒ¯nñ¡Q„¼éì|ñ0®Õˆbð΂륷}ý‘ä²f÷qž%}6ÓÍܵr6 Õ„ܾ¸ºÍOÍ©ñaOJõì®è$ãjøÐ\è8ŸYùÞ{ùhé2w¹ÝÔ;•^oHÊ6?ã\€M)‘¡¤×ãnï¬íKrxšóqË90ž€Ô7¦ÂÅÌW¶b“?gY¶Õjõûȹ ŸÿÑây8W-A°þðy¿wƒ ‚ ‚ ‚ oc9¯yÞI-ÒØ‘ë7¿îóž.C»}šL&† ²‹zdý±¬×‰j +ªATC o\«Ü¨UIxÆÏ=6b…¦œ© +JW”¸¡7W*pgRlÆW·„áŒBÞtv¾x×j"]Se׬®¼SŽµ|CvŒû8Ï’>_jÆõºèjÔŽ´Vrûâê6?5¤Æ‡=)e¢È×QÜì847w ñ™[!.བྷ–Ž sϼgªd½!+Û±±ðçlJ‰¥nì.Ï9t|m_†íŽ¤s¶ñ*Q+®KÛ™‹+[±ÉˆŒ³,Ûjµú}ä\ ‹ž¬ÖÓ§ÖÂœ«ßùýS«{©wì"‚ ‚ ‚ H?±ŸN-û öï/:ON¬±±Ît>û¬Ïûº íöi2y—a˜Ð¨/­G +M9»KCPMA5ˆjúÆ…ÊTÉzC‚×ðŒ(àyP¾U<Škµ7äƒwAšdªBé(¾º% °`<ò.e#Ŧ¬×$0þߢð͵ìD1yÇxáq\¯ áÎÇ ¤³óåcø(ªÝÌ]IÛ.^« ùiu‹ŸŠÀ¸?èM©sÅÚž˜ÝŠ ¸¨.hU!¿/iUqfaxÈïYÎE ãÐ 'Û·¤¯¸ÝÊî8eª"d®ìðcáA0Î=`¼xhÇn:sî¦q“äöåµ]:ꃖOlã·¥é¨çòÊfìFÄÆY–mµZý>r.„åÔ×_[ÅRg|ÜZ_·žý¹Ó=sAAAä€>¸vÿu¾û®ó«_vvv:¿ø9<Ìö{g— Ý>M&ï2 õ¥õHñ(žÝ%Š!¨¦+¥¼]B¦*¬7¤LU¼q30¸_¾U:ŠÃ—pÕYæÒ ´šP>N<Ú†GX0y—²‘bSÖk’j÷tËëe½.„g87ÎFË' ½ÞÍ\1¯Ùø¹$y­FòÒÊ&?ñSãÃÞEu®D;.ªʽ¾Û±“|CÒªÂÌ­à ß³œ‹”ŽZõ÷úzÀ g™ãj… ‚q.àI©sŦmœ.sqØ2`Ü$¹} þ¬&¦iÇ—× ã0êD©¸˜vþÄ*¢V%ëòÃØäí8˲­V«ßGÎÅ°èùÚyñ¢óÉ'V¥b}ü±õü¹óµ}Åê÷þAAA¤CR{¨Ö÷ÿ²^¾ìüãeçÕ¿û»©KÑnŸ&“w† °i=R:Žëuò¨"(† äZK¤e +PŠÁgªÂzC•ñiÿ ßóai¡t$×pÉY@ßtE®üP]¥ÒSïIk5¡|œXÙä‡G¼`<b—ÀøQ\«‰J…®±åxg}¯®ä†iv­Ç¡¬›âÄ”ßÇ ¤×¢Onk5òh§—¹ù†ëf¼÷+û>]GD¯ ùéÁfìÆl€ö¦ÔÙÒq"»'Ò”*âÙ&Ÿ\µÌ×;q:žoHªÁOEB>ΛÎFA:Sí5è¬ég™_Mýlà:^<’mÇF&|`|(àù©2[I§só[?»­×Á¦cœÐº‚ku‡¨o¸»^ ’Ý ‡òÃÍXø¦Œû‡=)u¶|’XÛ—”Š Vλ¾–Ì©¥»^'…Câ'gƒƒœwym~ãÉm{å}ïÖUÔanÍî 3Uè8)ŸÈ«[ #ã>0Î=)e®tœXÛ“èÊÞU:íN]ÙûÙðÀ¨Sãq­*À¨ €ñ­ ã„ +g Nï®®ëÜÓ‘†Q‡Žß/G'nþ‡ý2kj#»âxKH´„º[íK/BB «š±Çql„°1Æh5` ˜ÕÆ/I*ÞË_"y˜}™šO0Ž§*UâÅyÊäÅ“ª‰ã™šò¸&ÓʹÝ-@L„4!Lî¯Bjõ½ÿó?çèVµ Œ“$Y.—úÈùÏ Ó³vŒî^Ùù(£ƒÁ`0 ƒÁ`0ÿ_|óôê•ôÕ×ðøzŒ\+•Š(ŠAX¬†ó³=kOĹ»ý¹ÍHn#œ]—_×"u±n ÖÂ3{"»† s‘üfxö±åC3k‘.cÕ~ñZïÚcñÊýð-¨g7"p³»Ëב^…%9é¨l'R¸ƒ«OâS‹½–.§;Ét)°òhxö"ï›ÑšzEƒº²ô>ãréÀø 0Þ·üp$ìÊÄ´_X®=‰ÏÝîS×\Ã’Ý凭¹šÿF8¿‰Œ_½;°|xj)lóP`œ±´gŠ”ý꽸!Þ7éÞ²7çZ ¹ãQdü>ê¸ÃKuPº‰Y†möƒ¾üfl_Á•Æ5Zó&Fr±ÂØÜíÕGñéåÕnã”™Læø•‡ƒówú +7"ò´GÔZÉeoZ:RS‡²ÇÀøõÃ0óv/E1ä…ùàú“8\ÌË“†jŽÊÞ{ˆ ÿ',DÑ,ôÍØüÝ¥ß O.öØ}¨ã$I–Ëå£>rˆTUNÒ7_U¿øKõíÛÝ‹ ƒÁ`0 ƒÁüÏ <©JÀóçÒo'}ü‘ôí·ÇèñµRÙÅ‚ ÌVÃD©gýéÈÂ/‹[±âÍHáfÞ”¶úöF.<¶¢%ØJŽ’pE¾»Û·òhèòj¸Ëi4Qú‹ ¡µ§âì~å´äÖîÂâÎÚFÔÕ„ÕåµÌ·bó÷ÖŸˆ“ A‹ÕÆi ™* +kãp½°-(êjµhÈ5’® e´ó­èÜþ•GñìzÔæ1Ñ–ö ׂÏÄ«wûåUûuÕ¢5.]T_c;ù_¹»voðúÃøäµÞN +Œ3–ötßx*.þj°´ÙÉs§‡“ÞãZÙ!¢$3g`åáÐåµ°Ým‚ŽÏ ãs·û•þÔ9~jÒöG¬æ=¦t|í±8µê²Á¸‰!ÇrÂ꣡…{ý¥yÛM †–7)½[êøƒáìzØá£éNÃùùàúÓ8TÝykOÁå%͹Ž¢üo*¿”HéV ~ËË÷‡.,lî0N’d¹\>ê#ç@HÊËÛ·ÕO>©~ø¡ôâ…ôý÷µoŽÑùŠÁ`0 ƒÁ`0˜Ÿ,u¦_¼’²Ù*AT#aéù§G•Ò!¨T*¢(a4µ žvL”„±wnšMÎpéŸÊó©B]¤ a_$süXN½Ì^fÇKÂÉ´ÇĤA7|Î5> בôØ ŸÌq©++ +;!ïÐhjÀV ˜á‘µ,w~Vuš(=7tèûßwdJ±,|Ë%f¸džoFë_©Ãþ` + E>ñ1¤Á¨‹ŸuMÌ ‰¬0:Í%³¬Rð&µê>æ0Ò@ºÈÇ.ª³]6®ë;å/õ$s¹iÿ2.¤ÔPZßlRJ¨ã,$) +§Ò^0]û‘Ê£÷'fØL10|ÖAYШ“$Y.—úÈ9(pÀJ•?TOž”4šj&SýãKõÈ•¤¿ƒÁ`0 ƒÁ`0˜ÿ’ú‡þ}þ¹41Q%ˆªÓYýèãcôຽ½-Š"Am:ÍEû{;Ý,móÐÝ +w‡ÍmjUÀnÝ£Ýcrxh—æCNÕ¦Ójµšn7åYà¢ÃCÙ¼ Nu£%T}4™€Ñá1Ù½”‹£¹H§ÃGëtZ0ê'œ&0îä(»›²«Æ[æÂîê°yŒ6/êNŽfC]`\§×h4„M1Î2vHwÈe‡š÷DS-@FPÁAšvr Û‹ŒëÛ‘q]›¶ÛE±½(ˆÍ‹nõÚÂVÕ\¶¬Q.ÖŒŠŒ:®Ñ¶Ý.w²ŒCþvt ‡­C®9íãáN‡ß5G£wA®CG ãvÅ©«EÒÈ`HÍËøCf‡ŸÒ¡Q'lPs–¶Ë5ß³°%W¦™rxMn†þv» :2N’d¹\>ê#ç€ÈÇë‹ÒÀ€çj_õÓßËçªtŒNW ƒÁ`0 ƒÁü”‘Ô?Äë×ÕgϤPPššª~öÙQfÕ •Ê¶(Ž¡Ókœ~Fè³úŒ“… !~Ú¹/Xª‘¨[«ìæò3nÖ옞¨ÕÍÑ:ѦÕ:ü µzx³ ¤9³C•fê‚mP½>s—†Í]ãí±ú­°[›N‹Œë4v/%Ĭž€Œ»@ºÆë¤~ÊŸ£<ZˆZ],ºZ­á£7`AÆY“ƒ¥?ȼiňìs´7h¢]PI½^1®ux©@Ì +Q:î𫱧懗V›î“‹Æ3í‚4´:M›NãðAǻ܂bÕ¼…®U/¨à0N´· 6äCÆÛÚ4vIˆuúzÌ0r ä)§ÊÈÒÍÕvƒ@û˜@æ +Pi—uÜ@“†ÊîgêjÞ¤´²<Æðãò…,0Ø6¯ +ÆI’,—ËG}äI‰?ý¹ºyC +«+׫/_uR ƒÁ`0 ƒÁÔ!©òËwïª_¾–þöFúûwêÕãÀve[Œ‹A˜Ìí§Ržé¥P¦$ŒeùD–Kdù±-Rþâbè̤²èIƒîýqïÔr(™ç3ð­P‹–Šæ”7\¦¸´Ô{:ãí ô`^ßK¸.!ã冖›MÈõDïgøL!pi1xö‚6“FJÿ³óÞéåÞTAóÊ=­uÈ©ŽÀàäBJMw’È8£I¹§–Bã¥@bfÇ5W‹æÕ9ä%ip©¢pq!øóIÝi0u'ÓžK‹¡T^HüßãÕ3]⧖‚ÐqŠiã“>>ê‚ñ/ {îl¡q%ÔÍSy¿Èš­dÕŽF}©7)w¼æ½•ºÉœú +'¯ßK»é.Ôq’$ËåòQ9C’Ô3ôÝ»ê_¿”Þ| çªT•vÏ\ ƒÁ`0 ƒÁ`ŽxFUS•§Õcú°Z©l‹âAæ.2•ýöË®9môŠãº0oñ~Á Æ6Ò#@¶;ø*®ãø¥Žm! ƒÁ`ˆA€mlÇIÓý(íû:Ý»¾Ü4ýx7Ó‹¦7íU:Ùmovv&RI;›tÆ `Æ»ç7g°Œ¤çþç<œ™g:± +Hõ(´)äËõˆí±™³éG;÷€ÅJ™—““ÙgÓ±2‹ÇŠìÕ·>=™¦n±¡ž¨„rÏfW¶¦nw¸ÌVWB†º(³­Ú—ß‹£/ÎÆ÷‚Ù³™õl ×c¡œäÊÖdîÙÌæ^0ªß• +¬øþë-H7]ã‹D%˜>áV’S½›fÜM>|Ù§3[MãÍup¶¬-¶ž½HƒÙܦO¹µl Øf£L‹›ã¹§3›e¼Ù˜†t+~¿àZè+Yl<÷”[MNºû,Ø8å ?Ûß9›Æß‹ò·ä:ÚèµQy6VF™Óéõ=0l³»È¥øDöél¬lüÊñ¿­5IØøA(sÊ-%&ú†µŽ“¤¥V«u{ä\E¹¥CøéÐ8º¾}«~ù¥ZÙWó[õÛÿÜ¢ól½~‰Ìáêµ,nNä~5³u‹H*i!™öDÉmA©„Å+ìÎÓ騌ú‡mVªg53õøùL|Ÿ•´šêèâE=Z’ÖtõO„ >þõìZšvõ’ظÃe~׌„¤¢aYWÿdÅ+¢™«iËb¹g?åàÀ6nZIMádâ•‹šãϼþéÒ†#£žØxæ ·¶C{¼ö¦q\öäQHÏI?Ôjm”Œ5=¦Ï¸h 9lTÏrbâñóY\fz-5ºôžñ¦tm?ŸÞÈMÝ´bã”Ãü@ðeŸqÉà¡«"±m5¶~ÛgwΦq#Gl6;6î7¶úãí–6V.£ÄQ0s^MOzÆlØ8I’µZ­Û#çºhSô¿ßª_|¡Ÿ(¿ÿòý÷Šö¥¢Þ¢ñ +üØiR¿ûNýüsµ¯OÝàÕ¿¿êjFG½~‰Ìáê%Äñô)Ûc£y$ÈL´€ô`ÚÍÕTDÉjxc—馬TÏÊöd挓JˆÏk¢X]ÀåÛ(Ý¡€be”y2½º=å¼cÆÆí.ó‚àËœr›å ¯+êŸ0Ž°#±ˆÒ'œG#6+eZJLdΦ¥Û ³—¡U•‰í¡äQèQfÊ3f׌;Í°ñ'Üæ>‹-ë•×kÞÖLÍuÃxò8¸±KßuبžÅMÿÎl\“ÃÏí/¸±‹Æ3OÂk;“w-Ø8å0ýbãÞö)ßc…|£8íW×ÛÝ0^ ‹230BYm=K›~½ãˆßÕËí—nþ+áŽWƒ+©I—ÂÆI’¬ÕjÝ9×Vå_ÿTv2êаzx ¾~Ýø²Û‰À´sªòúßÊÒ¢Bê@¿òç?Ý¢£k½~‰Ìáê'Jã©ãp¬Œø<Ãçiã3Z@-Ež¹¼Ð®õÈ3‚Ìl„°Ä —²9L¿ÜžÄÒb?†Ï˜V¥¯æ¿\S,2én=C»z-ظÃE.H¾ÔqH*ù+^͜Ϸ˜LS]7~ÂN=^ÊB™ãþô)'Ñ¥t_Hëݤ¥“¨×vèŸS3î6=|ÛZÇYÞð˜¿Ò¯j£kØrâ ˆ%Fý.›Ý¼”˜Ü>áD™áw?Tóöy×;Ž’Õðz6Ðë±bã”Ã4ÏûRÕp¬Äèû¼•ÇxTF‰C¼»˜ÁQÊj3-mNàŽ ¸ã»ï>Öi£ÑÍÕ°qü+[MO ßµcã$IÖjµnœëaÌЯ¾RCaÏU„ÔúùÅ[4_€=ú)õõkeyQ!epPùãºÒGP¯ŸG"sA¸úɇÒxªŽ•Y>ÏD L4¯G¡=Áçi}Y¤¯Œm„ðµgÌF9M«é©T5$Ê,¾¥EÁxµOš6tqˆ2“>á6²´«Ï‚;\ä‚f<$ƒ é<º|ÅX¡@·”ƒ¶,­ÙÑ.ÐÖ!Öb‡ÆìVÊ´÷ãd¤’!ÝôÞ¾¸² XDñýàÚ=:îÆÆí.ó|Ô·}¬uüj­>xÝB—ê‰JPÈ#喇r˜—ÛÇœ(#~·‘äjÞãzU±4ÞØ|.ÐçÑ:ŽÕ?ãÇ“x«ke7ÚÝÖš7ÐW +L¼ÂÆJÌ —²Úz–6'Ò§œ Gïï´öªcãøWö(ñÙ±q’$kµZ·GÎõÐǪúòkuvV›« ƒGUã†Òͼ ‰¢^`¿y£n¬¿%ÕëU_üå\ëõóHdŽ W?¹ ù’‡!©„ø<-0 AfV”ÑÐE9Í«é@ò(,ȨӺzЩjh=K»û,ظÃm^ŒùSG!±xCêØx¬Äßµ[(óBÌŸ¬biãŠæ;˜6ßg×sô¨ß©w™æ£÷RÕp¬ÌÞLÇã• PDcSn›Ó´œð§ªœXdo æx_mùÇþ!+6N9Ló¼ïÜ…PÇßÓ:îñRVÊ´ŸHŸp¢Ìð»t´ÃeÇÆãöQ60 6îp›cþÔQX,þý²émܺÂ075¾ú`aÖØ–mÑ5éKŠÊ"ò¢ÝTð¨\ üCY´  HÈ–ô ²JþFù ²kv•´hwý@€Ê ˜èL‚4I'‚$²—ÖHðb +xWª›óà›#]ð½ï=Ǹ3roödëD¾¿–J¢Ä®%´%Ó…uW¦gMÚçr½#­™8x–­êëÎ@µNåTÜð¶ížbø¸°Å/dؽ¦à ʦO1ï k|x¡h1—¿G‚£4[Õ6H*ÌÀÈ>‹+¾´Šî!öçÍ Ëq³¹Û±('emq¹˜"Á9Ž ‚`Þ#çV„׊>ú(úÉO#†‰^{-zôhÞ›€ÿŸG¿Éve%úãÂyoçöŒFW•ÊÃ0Ù·ÛØh]–'Xs%½»MOšK~JvO6=œ/ ”Iì‹­¾jx˜ªïD’3(ÕÛ¿˜$ÁÓ|¢f N_5ý¹7{²u"ß_K%Qb×Zƒ’é¿Âº+Ó³&ís¹Þ‘V„L<ËVõug Z§2íŠÞ¶ÝS ¶ø… »×œAÙô)æ½a/­#æò÷Hp”f«ÚéR…¸ÙgqÅ—VÑ=ÄÖìÍ£áu³¹3±>—Úâr1E‚sÁ¼GΫðáÑ믓¹–ËÑÇ/>¼CãøðÙgÑÞ¹ÀFKùè½wç½›W`4ºªTv†Éæ¸ÝÆFë²Ô8Áš+éÝmJ"/×\ò Ù=Ùôp¾€P&±,¶úªáaz¾7$9ƒR½-ñ‹I<Í'j–àôUÓŸ‘{³'['òýµT%v-¡5(™þø+¬»2=kÐ>—ëiEÈÄÁ³lU_wªu*S­øX†·m÷ÃÇ…-~!Ãî5gP6}ŠyoXãà E눹ü=¥Ùª¶Az€TaîDöY\ñ¥Ut±5{óhxÝlîL¬Ï僶¸,¤IpŽã‚ ˜÷Èyþ=*©ñ\U”èoW/> çº%¸&ŒÂpü›ðÏ'áϪäò? +û›;ts®*•†a²¹än£ØºT'²Þݦ%OŸížbz8_@(“Ø?[}Õð0-߉4W2º’3(ÕÛ¿˜$ÁÓ|¢f N_5}<^@)õôÍÍ ¥áËùµt±¬¢Ó/™þx%Ö]Š‡OÚçr½#­™8x–­êëÎPµNiV|"Ë+nø¸°Å£4»×œAÙôgc/­#æòqʼn{UÛ =`Qmõ²Ïdâµ´Š[³7†e²%*ö’3—Úâr1E‚sÁ¼GÎíÏÖ¿þ%ÜÈ\¶ÄðÏ +¯§î¼w1äŠ:¾¼Æÿž~f|]-„ï½{‡î®£ÑU¥²Ã0L6—Üm[—JãDÖ»Û´äâé³ÝSLç eûÇb«¯¦å;‘æJFWr¥z[â“$xšOÔ,Áé«¦Ç (¥ž¾ùðB±N”üZ:‰ØVÑé—L¼ë.ÅÃ'ís¹Þ‘V„L<ËVõug¨Z§4+>‘áÅ7|\ØâQšÝk +Πlú³±Æä̵Ž˜ËÇ'îUmƒô€EµÕoÈ>“‰×Ò*Z@lÍÞ<–É–¨tÚKÎ\>h‹ËÅ Îq\ó9·äzºŽ®ÂJ%ž«;;Ñûï‡ãiÝ¡ù +üß¾øyýûÛo£ßÿ.|ëí(øeôô麸ŽFW•ÊÃ0Ù\r·Ql]*YïnÓ’‹§ÏvO1=œ/ ”Iì‹­¾jx˜–ïDš+]É”êm‰_L’ài>Q³§¯š>/ ”zúææ…ÒðåüZ:‰ØÄz@¬Ç+±îR<|Ð>—ëiEÈÄÁ³lU_w†ªuJ³â^\qÃÇ…-¥Ù½& ^6ýÙXãà E눹|\qâ^Õ6HXT[ý†ì3™x-­¢ÄÖìÍ£a™l‰J§½äÌ僶¸\L‘àÇA0ï‘sKÂxŠ~õuô«_Go¿½óNøù¿ÂëyFÏç½7˜^_WŸG_?‹>þGôôiøÝ÷á¼÷t{F£«Je‡a˜l.¹Û(¶.•Æ‰¬w·iÉÅÓg»§˜ÎÊ$öÅV_5®8q¯j¤,ª­~Cö™L¼–VÑbköæÑ°L¶D¥Ó^ræòA[\.¦HpŽã‚ ˜÷ȹáõd ŸGÿ~=~}úiøýwáõ` Ã;4_€ñ-ö‹/£‡ÂO? _üÞ{º£ÑU¥²Ã0L6—Üm[—JãDÖ»Û´äâé³ÝSLç eûÇb«¯¦å;‘æJFWr¥z[â“$xšOÔ,Áé«¦Ç (¥ž¾ùð"¾T@IÄ>°ŠN¿dúã•Xw)> hŸËõŽ´"dâàY¶ª¯;CÕ:¥Yñ‰ /®¸áãÂÒì^SpeÓŸ5&g®uÄ\>®8q¯j¤,ª­~Cö™L¼–VÑbköæÑ°L¶D¥Ó^ræòA[\.¦HpŽã‚ ˜÷ȹãù†á“'ᇄ_=›|Æ€ÿ â;j¬o¾ ß|3º?|ãèãÇwèâ:]U*; ÃdsÉÝF±u©4Nd½»MK.ž>Û=Åôp¾€P&±,¶úªáaZ¾i®dt%gPª·%~1I‚§ùDÍœ¾júx¼€ö/Hpy©J"v·A¬K¦?þ +ë.ÅÃ'ís¹Þ‘þÃ~ù¼¶r]q|6£|õcÀ ÛŠ­Q=ã;úA ò.¯Ua0óCÃØ›Ha4ãß’V-dÓþYϦï´”n›Ò.eÒ¤Y¤iÚB^[!ðš;½cEz~´{q%^9ŽäË\™ïùžs80ër:6žáƦ;®Úg,;> Ó;n¸°-¡¿w(»£š,FÓšë}%›;NÕú›é¨ß ç\£Z¹ ´‚ø–S:×hJ ˜´Ûšk=e­˜¤ÆAÃpÙ+ç^LW(ùüsòÚk䥗ÈB¾ü’ܹY^j0ƒÄ/¨qî8Uoè[tl¦£~'œsjå6Ð +â[Néx\£)-`Ònk®ô”µb’! Ãe¯œ{A(ôÏ|?Þ«¯ü(úøc²ì¬à¿óÉ'Ñî.}R)òÖ[/Ð ìdrS¯ïr—ÉŠÍN±{]îœjÆ`‡Uxx~v.Ë–ó„Ò‰ý¥;¬š>f¥; ÝSÍêŽ*íž*­ŠÔxJJ´lÙV­OÀ:‡£+j\Ë’"â›*]±‚é6<†Å§ ­ÝW×åtl<Ã7ŒMw\µÏXv|¦wÜ pa[B)~ïPvG5+XŒ4¦5×ûJ6wœª7ô-:6ÓQ¿ιFµrhñ-§t<®Ñ”0i·5×zÊZ1I ‚†á²WÎ ï¼­¯GG6_¢gºWoWë·ËÎ æܾª~ú)ùá#ÂqQF"¿üYvN÷g2¹©×w9ŽËdÅf§Ø½.wN5c°Ã*< Ó;n¸°-¡¿w(»£š,FÓšë}%›;NÕú›é¨ß ç\£Z¹ ´‚ø–S:×hJ ˜´Ûšk=e­˜¤ÆAÃpÙ+ç¾Ä[ôýß“Ò÷è^%ÛÛÑ»ï~÷0zö+ðÿÍw¯¨ä«¯È›oF/¿yùðËÍéAL&7õú.Çq™¬Øì»×åΩf vX…‡çgç²lù8_@(Ø?QºÃªécVº³Ð=Õ¨î¨Òî©ÒªH§¤DË–ÝaÕ +ðô¬s8º¢Æµ\!)"þU»äŽ¨ôô +ÃâSƒÎ…Öî«ër:6žáƦ;®Úg,;> Ó;n¸°-¡¿w(»£š,FÓšë}%›;NÕú›é¨ß ç\£Z¹ ´‚ø–S:×hJ ˜´Ûšk=e­˜¤ÆAÃpÙ+ç¿}A~ú3òèQôÆÑŸ>™=]jNð 2ý§OÉd=þ9ùõ¯È“¿/7§1™ÜÔë»Çe²b³Sì^—;§š1ØažŸË²åã|¡tbÿD髦YéÎB÷Ts º£J»§J«"5ž’-[v‡U+ÀÓ°ÎáèŠ×r…¤ˆøf‡JW¬`z… añ©AçBk÷Õu9Ïð cÓWí3–Ÿ…éÇ7\Ø–PŠß;”ÝQÍ +#iÍõ¾’Íǧê }‹Î€ÍtÔï„s®Q­ÜZA|Ë)k4¥LÚm͵ƒž²VLRã‚ „a¸ì•s/…~óMôÞ{äñcòöÛäŸÿ˜_-77˜C¾û<÷äzqLnêõ]Žã2Y±Ù)v¯ËSÍì° +ÏÏÎeÙòq¾€P:±¢t‡UÓǬtŸ ÕUÚ=UZ©ñ””hÙ²;¬ZA¬®{*뎮Ê[ã"â_µ‹î°bÓ+lx ‹O :Z»¯®ËéØx†o›´ö™»öØßô㎛.lK(ÅïÊî¨f,‡í™4¦5×ûJ6wœª7ô­Ø8ÓQ¿ιFµrhñ-§t<®Ñ”0iTŹÔzÊZ1I ‚†á²WÎ}!³ï»•ü瀥@æ_·|öçè7¿>ú|ûti)=œÉä¦^ßå8.“›b÷ºÜ9ÕŒÁ«ððüì\–-ç ¥û'JwX5}ÌJ÷¹PÝQ¥ÝS¥U‘OI‰–-»ÃªÄ꺧²NàèªÜ¹5."¾Ù¡Ò+˜^aÃcX|jйÐÚ}u]NÇÆ3|Ãؤ¥°Ï´ØµÇ¶ø¦wÜ pa[B)~ïPvG5+`9lϤ1­¹ÞW²ù¸ãT½¡oÅÆ™ŽúpÎ5ª•Û@+ˆo9¥ãq¦´€I£*Î¥vÐSÖŠIj\„0 —½rî™nÖ§ÿ"~@Þù]ô׿̞Óùÿ „L_U£¯¿&ãQ$ŠÑ+Íè£?Ξ¾L&7õú.Çq™¬Øì»×åΩf vX…‡çgç²lù8_@(Ø?QºÃªécVºÏ…êŽ*íž*­ŠÔxJJ´lÙV­ V×=•uGWåέqñÍ•®XÁô +ÃâSƒÎ…Öî«ër:6žáÆ&-…}¦Å®=¶Å7ý¸ãf€ ÛJñ{‡²;ªYËa{&iÍõ¾’Íǧê }+6ÎtÔï„s®Q­ÜZA|Ë)k4¥LUq.µƒž²VLRã‚ „a¸ì•óÈgŸE¶MR©èõ×£/¾˜?^fNðoöˬ©ìŠãý€ÔÚ$ƒ„Qï¢ "©©¸0Ë c¹¥î–„Lk„Àó™xüYä?ÍGH<ã|XxðCÆó˜T9e´rZ€‹gX¤¨œœ_ßj«ûÞÿùŸs¹UAAAäíxü×;mañß¡õ÷k/^|B×ju/œ!ÂqÃ|Wö&Jœœgú]¡2çØ&'e—‡$íÆå´?±-D²L»tO•,ó¡UÊÙgã6§qAñ%·)§«‹*ÕîV¶x9Ǻ+ŽéÆÛºÕ›"VdAkÐMZHÃBl<µ€”Ú¶ÓŽë *±MöÞªØkã&“©R©túȹ š~°î¿©MMÕ¢F3µê߯ŽÎ^AAAé0ZýþZ{ÿ^»‚ ¬ævk/ø„n­Õê^08C„³Ï<'%¶y¥Àˆ*-ªŒá ÎÐ×újz4~‰déØÉ2®›VÒn\NûAþÛ¹óC=^‡nÜnœ &˼Rd¡8‘u&Ü:³gk¨w|“•2¬gÂi±ã`\€Ž7ÊrM׿0Tâ%>üˆê2ƒqR7>–Üæå<§ÏjƒëSÞ£œ’gÝd·Å°½•Þ H`|ýŠÍýµ`êPóøZõxm`Üd2U*•N9—᧷µ;w48WA{óæ:WAAAÿ/>¼¯‰!ýëÑ^þÐél.Aµº Îáì3ß•Ç’e^)0¢J‡3燨R—ŠæYg#Y&^â`tyH‹Íðå +¤¥ó1Ý+K7MoHS©áþ*íè5q›Ó4¯xº:Î0g¯ þ . VJ¼’g]7­f²k>êKïä<[¯9ÕH²U®›CÎ3±M>´Føºq‡qV…RD‹\Xe ÄÌÙ¢µÌµßä`ôL8-6ãbÜÒR–>wn ]l¶•m>üˆê2ƒqÒÆÇeA.púÜ_›~MuˆØ§ä™A7ÙméZŒŽ§OBÄõÓ½n¹qøƒZÙâï=˜³‚q“ÉT©T:}ä\ ­>þü³vçwú¹*Úþ¾ÖáœAAAä#|x_C5‚¨¹Ýµ—/;Í%¨V÷‚Á‚ ½æ9Ù›Úä<#®Óá V™p†ÑZêá(®3‘,/ñ¢JºÉnk×rÚŸÜ À¢JÁ7±9®Ÿ@}ZÊ1éÝÀ½~{Œ[Æ»òXrGrl“ñS³®­kª,¨G²L¢$D2ìÀi¶tÍG}éÝI9ÇAMêZ--xËÊÀÊržŽorËüC£v0nsçÂÐñ€Ràtãë-)ï™~éÆAÒ;¾¥ {íÝVÃ|Ì—Ú…ŽÃ«–™mˆžj™”g ¿¡‡þžn0n±~/zá%ßFã= ã[¼”a ãÝÂ2ž>0¾~z§µ®æ‡¿Ëy6¾É/§n Ý´‚q³ÙüìÙ³N9C«oßÖ>ûLƒs5¨íÿØéœAAAä#|x_»‚ ¬ævk}Ùél.Aµº Îáè5ÏÉÞô® Yqgè°Ê„ÕúC«B=E•–rLrG€‡þaÒL–Óþô〔ƒW|Ó›ã²rg§ˆõ”ûð«É/Óö#·: sòXêq@γb=7ÝøÉu® ~Æ;Ö§Àxj'ɲÃV3ÙµóB2ºô:|Àˆ'¥¯Í F‹l¢Ä/?ðÞ´q›Ã8ƒ²G‹Üq1C5M¼´ëóû¥øÒ'¶yØZãön«a!æK5Yïx«œ‹žÈ!KËl†R½ƒ0NÚŒ{¡ã°ê½¾nÍÏoNFʳ‰² e˜a²›4,DÇ¡ãRžÑÿÊšºsåM~^Í7´¾HM¸nZuã$ùüùóN9—᧿×~ó[8Wk“Úþ¾ÖétAAAä4õ˪ö¤_`kßÿ ]`«Õ½`p† gŸyiåVöÉTz7 X9ÁD²'Bʱ—æ¹rž“ l´À&¶ùGßÜŽdÙþ!K7i¸·JôJI¨Ksués¯ }4‘–rÌX>øž½¶tc:­¯Y`@=Qâ׿™‚Lú‡H«ÃiäžN'ËB£æÍ+\¡Ú§ +^0®K§v…µ?Þ­Qý#¤nÜiZŒgŸN§ŽÚÍÖ{tEãg\×–=ì¸ðèëÛð™ËCZ¬]ËÉñÌ·Ó+%¾i³›ü…ÕsŒGÒM„•czÇ™'ÓáGþÞ3‡²/(ã™'S)ØêEÒ“®WöSÆ!ì@D‹ü +lõ¯oC ÜÒn\NOäžÎ@5äúVo^¤^±kî´CéFÇA:´êwy,`¼§§ç»ï¾ëô‘s!´ƒxýZã88W5ž×ªÕN'… ‚ ‚ ‚ Íhú?Mkÿü‡67[ƒ lo¯öç¿hNì¼zUšš&ÂÑkœWFÕ?M¦ÊœR •-²± 6ZäZ +¬\`þÃ~½?5™q—’+&Då’¼o® @¸8ºŠÊt¦VìÎhǽøCÝîvÿ„ö·vÚÂÝ:²?ït —„$ìZÝNµ:£«Ó®³î¢íTIÎésÞ7Q@Ö€³ß‡IÂû<ßsNÎÌ;òŽ|âû¡5ÛL…Eº¼ƒÇv}ä>+SéÁ3jé U<-•«ÑÅiH£ïÚ¨ÖÁc{ô%ÜP’ßÕ_}òC÷±÷íTzàŒhoèWöA™ +®V§‹Sð³ò/~ã<:V[j.*ÖçÿôØž·?v{O™%x†'ü4͹˜Õ3ÖÑ÷域wݽmG!×´}Uc¿u?gWg&Y=CÁióÐPV\\\¬øyÇ¡“5¥; +Št¹û«O~ä~GRV<éSÙe5ûè»ò؇ηŽïÙZ*‚oÑkG«é•ãçÄúÅnÏpCÊ*Á塳҉_;zÆö––n1hŒìýåÇnÚ„"¸2?-­~gÕï‘uô=ÍùÁÑÝÆ +-ß¾}û… ²}ä¬ +SNW‹±ÚZ¦Ñp‹•E£Yî `)åÞ•‰Ç}ÇGXNß½›öY–ÛZ‹X,&Ë6F“«Õìm(ì2¶õ}=Æ@oy×`Åþáªý#KÇð®—‘>¿tt íìè/÷1·õš:‡LRkq^&'Ocõ꺆MþÃÛé­öÞ²®ÁÊU]|ÕÍtWv–Ó•}‡Mí}æ®a³Å£ËËרö:‹¨z{/5`ôWtTv§ ž®“¥ïvUuììè+oë1µ1v ï°·ë´E4ékË–ý£eþ^“O”.§uU¦™ÆµÌ9§9ô•ûhbû̦º¦¢¼B +“›¯©qÒ*´÷š[éÝÎÁŠî¡k¨•~þ+i);ú+üGM´¯:‡Ì6qžV¯÷l¡Òþ#F9Ð[¶¼î+ì´¥ D©;Ô7¶÷ÅŠ{u¹ÊŠÓ~Ûã,ì0·5Ò~ˆýöBõ%W~y3+O;Mf ¿Ì„2šºMŽv½¶0G ^Ü=lö5ú©tõI~ö_éj¥êŠÒŠ—ќӖnë+­Ù§¥o1M/^T¿øL9·6,¦ž®×¯sŸŸÓ¹ê÷ñ/æÔŽ©ñ Ý:ü˜0qŸÊùü#þ»ßó&e»º‰î[çææl²M£(Ý¥±µK>Õ£“[ 6¿Áîßjo+Y2è•—Œen+±ù—Ùg°6ëåV½3P²Óš¯–®¬/pôrs±$Þ2Ø|ô¿é/ž®™­Kð¤ƒÅ«£\΀¡¢¶@“b®Î§W¨%«W'·Ò'·Òç—5¿ôâé:Y6 ¾qÙƒDÕ[t®Ž’]6­&G nÉwwn•Zt¢´Ï T7¬tÕµVœšRk³îh×—Õæ©¥IÙž=}`qðôKðÒùOM»R½EGûÊ0TÉɯ¨Ë£9§à4'Êf[¾OÖºÓ–•“I£¥D÷éÅŠ×å?[qSu®ƒb¶êë“[½DÝ-?0á/ofåiWÐSpŠïè«å‚œ\5x¾+@+®·ˆÍ¦OMµšÚ®Vš±xÎinie¥Öbã®Ô>7›/_¾œí#gUÔs•Ý¿Ç?8Ï=~î»u[¼¢ € †±…§ü»oùü#_`lÓܼÞûúëS'Ç*Ê+jkëš}­mû½§[v8­6g}&FÝâawÖ;\V—[jh’=­ÎFK’$«ÅJO¼>×¾&›Ómu¸­©Ìlõv—ÕÙ 5zì-~—§Ù)ËrME’%×Õìsïó8¨1»ËòÍ¿fTÝâh°64Ù½­®&¯“êJVÙãu+ÁÎ9ÓÁÕaQKSð&b6zÝßk‘$¹©ÙÕìw5Rð‰ªÛ–E ¿nvGê"TÝ-SFZqêA²J’En¢ou54ÙnÙî’^Ü*‰ïpI®­l³¯ÁÓâ²Ù¤Ú«îmðúiÅi¿ÙRÕ3?”ý&»mTšv¸,‹è^ +î¦àN—ä\R:S©é" +å¤à^GK[C³oŸl“ªªvõôô„B¡l9kÂø“ÿñ‡ß²GY<Áøæ9XàG)?Šû÷ÙL˜ÝºÅX"»=­ÉB|áÖíÛ¡p8‰Åb_„f¢S“áɉÐäç3“ë2‚teqñÐd0<3ÌÎΆ#3Ó³“Áx‘>óyhJ‹ºââ!Êž‰D£ss±¹h4š‰ˆÔJÁu z–=HO‚áé)Ê-Æ´*uƒÔÛzdªmLSðŠà‘X*xx*(V|}²?›ù™)±â‘ÙpT¬øT„u'֯zJL8­xŒ6ùœXðdðij`=·º˜Ò¿Š-G Ð7‹–;,‚ÏN%W|=6Û´úD]qeŸGc‘/c94síÚµùùùl9«BÇ*«,g7n²H„ýû›ÔëÊÙÆ”ÔäMj"Á.}ÂN½Íÿø>ÿ}VûZ3 +’ þÅ#‹Çi$Öw,<žˆ‹ÒdÙëo D<¡, S'VlàMO<+º ž+KÍ”ÜꊿÁi³ÁÏv<¹ÙRÁãÉÙX÷6ž§f©äop«+«¯~ËâñBO²}Þ¬ +SÖùyö§?óÓgø¥KüÉÓä÷5Ë­¼àÁ~ègL£a••lr·®¯ŒqF§(»ú%·ÉœÎÕ–Vö÷¯p®ÀÃ’¿wîrŸÑ lÉOøø§Ùî +`cʱʧ§YU•8WkjXh†©‡-Od·7€–üs÷.ëìâ /ÝÆÆÇYv›ØäÄ)žåuõŒÎÕº:>=펖aÉ¿°S§X¾–Ùm|"Èž¿k£¡ìÆMþÖA®Õ²ÙÕ«Ùn +`â6g7oðñ+|b‚÷}¶;ØÔ«üé¿v]¹Â"þø1S^fâ–íö’ØóGºgMˆÜ·¼*–â9ªñ8ýyþÀF°è•ýã&ûä/<2Ëž.àöàu=y¢6>Îný“)'*=â`€"uÊþûvö,Ój™ÏÏ¿ºŽ[W€×uç?|˜ò‘vïžx…©¿8b ûXêö”=|Èzs†WìdÁÿ³_m½q[GØyÏk€¼%/Zu¬üƒ^€MóÚÿ‘¸v_únkK¶lËv,ë71b£ñ¥iu±ìÖ@ÛHòM²¥J»º®ö¾+iµËå7!yÈsHJJ“ÉÃùÀ%ȳ3óÍ73ç|`?\-,,,¾6‚ósnàsµ£ƒŸ¿Ý”,,,,,,,,,,,,,,öŠ%üôgü‹W^¡»_‹þç-H»¹þ2¹†7RöP®ºÈwrUàÀQ­C½DŽÁj< ¢Gö‚#0„‘¹JGHãNÐõn°ÇU ö¢ñ‡bLïIcð’¼~TƒPe m=tNÉ<Ì1*oŠ6½ÀF3UÖ‘AB}¼)á)®.ªt¬¤IÇpp”_šT~£F¯ ©ª5‘y²û‰žÊ mjð“ÃO¦nC…¾ŒVªÂÇ…û‡Ìô’:í£Ö^“Z¨p¸n·ë”£bªÌõ¹ +Ë`Žüži‡Åçi(ˆ7657ßæ˜ÃÜFŒXQ“CCêXÃÓ'8ü9Wß|Ožè:-,,,,,,,,,,,,,¾PŸ¨å +½ó ù€}õUüu4Õú%·>sU$ÿÝ{£¿”¥ë{©r‹¢„â *³€”4oÁCDGá[˜-c.N’ eB½éП@¦½*~~a©Œ‚©ÿRQ„zyI[Ôž£Ð*s3¨=)@«vB¨jžòÝÐS5ÆÂÿ7]¸Fè†= 8£¿xÖš¢X±C%a[½x®A§âCdDQ}ô£Cϱ¿ôá€.T +“©‹EØùd©b’igl³80ÜÃÑÙ +DíÖÝ´ñ §ÆØZᨤä_P;9º#ÜR˜9EljQ™”.Ʋw):Rbe +9 Š‹ÆÇ»=›EÇÛ|®ÒáÃ4û,­ß"Ôwj¥Šwß•Ø×^ÇÇɯWø"¨Ë{ÅügýÕ[ +-¢Ð Z¼A£ðÉ¡ûjì1=&ƒæO1ö bRn:l8Cÿ'ÝÆ߈²ÕŠšî.RýU²åkoÉ2$3O3ÿ=›r£zC¯²š#5I©ÉÃà‚Æçú¯n¼‘ñ^¡Ò0^8f”hEªäˆ%­._¥ðUr!i›ÌI=¦Y$Q‰Ô2`º¸a¿\=‚omè{TŸ}?ÃÛ¡)e¢ŸŠ;Kââ ¢_ZYâfá–'½QÂqßD (OÄm£ÑMæHÏžâí9Wt¸ssÉ<-,,,,,,,,,,,,,¾(—ðÎÏåöµ×ñð¡ÿ労Þä+ÒMÒŒ½ˆ0’¾É@Þ +R“û$¡,CD¾û8¥DHp!&‘–»Î~¯²LÉ2ø î©ëE3RJ¤¯¤u Ú»ØÐröß÷žØu +"£•ûzÑÞ‘÷!ü&îÐ"¤4î@î½Ù±G@³AHl^Y‚Û10HØ 6ÃHñ¥=|É¥ÿº‚i¹Å©)!?MšÞŠ}swëÏŸ-ÚÏ𚙡·Þ">WÁ윲þºµ°°°°°°°°°°°°°°ø?a3O?þ ÂË/Sg'moS¹LëT(P±¾g²X^¦FC¾v]—Ö×izšæ±Ûà… Hc‡Ø&›ûjÕ*U*´±AK‹´™/߃G0;ëîlÃ[6[[§R‰jª×P«¡ZA.GKKL‡VK|wwie™^¼Àü<©V…Uª´”¡µ*•Q«R­Nµ³cs™,­®‘äIä´(“ÁÔ42òÂωõf—ie…Š%I›}9Bµ*yf³"jgGÌÜ6VV1=C ´ÓðµxY5huEÌX…¨®¢Rfá¬,¼Ý†_#¸\gÌ<ÂÜsÚÚ–5—…—ˆ…¬­Šp¡®£ZCY2§E¾¶ãQ4±¶†…BÍai~͹Â,|u>µç*äÙ \«fÓkY««45Ž*é ßÚ2„sæÒ÷uÊ,I@NØ+‘áå̇ÑÓÃÔžð:”p§ãÇ¥˜ÏŸËbÛ¡cGtŸ¥ +x½Ì/]’JÞ¸AÕªPlæñéu:ù!ñ½w’.MÒèÕ'ˆÆAãÔšÀÃ1úpÝ£˜#…;Fÿ˜ Ë|M’xiWï=\¸‡;T÷â8nLà̺&peœóâ»ãé[ÒEæ½Ïv~è»G&‰]òcâ^ÃQüvŒÆ)'+»»cÿçhϵ/î~v§tã:K–‘cáÜå 片P„ïÍmìàÖ-?&5YZòVý‹Ìä…”š¨aãQ?} +wïÐÖ¶X®­ah˜Nþ‡ý*ýê¾¢Oýµù)ù˜2cÔšÒ Šñ^Àc›”Z R«h«&$ Ti1Hš`H0$4@*†ÅËx¼ÎŒ ŒYÌb›½Ø€ ðï`¿szï›ghÿ‚|yW??®îùÝ휟älnÙ »ŒZ†9<ŒÇ‘“#“^îKŽlü~ñ%ýEìy¤ÙïßgA!³7ëÆwîâù B݆¬^è·}‡µ2/­ì"4îÙ£Ùsse¿ +ïíe~>ü›ùïoÑÖ†]䯡’h›rÕήïí°*ŒÁA»ñ¡Ç ‘µAšb³Õ¸Ì$|TD + öŽæpõ›1'‡Á z{~¯{½Ì®fc÷n\¿¦ps„gÏÊ‹A¡4š<ªoÛ†"?º»5²³‡ò˜ÍM›øõN\º¤D…‰KESرC"Ѧ%4z÷›¢ñ­_âP.[[µIÑK^ž¹n=´ñ§T—Æë)ZÎv•ª¬[.ý•TŽpv˜ˆ´¬œ²TV·nŠÇÙ•¬š×Ê«bÙ§غ••´·–V½ùÓO‘½>ûûP}Ê÷ª¼«÷ +jêþ÷ÉuÌ1ÇsÌ1ÇsÌ1Çs̱ïÛðìûðßy‡/½„±céñðÍ71o>32í3cc¢ù륬­“h<êÆÆ9n<æÌå±c‘+ô–êj.YÂÉј9³f!#ƒéœ6 Ø…–;YO·oçë9=™¡:‡±g7RR‡ÌL¦gГ’:) qq\³·nidãuþùmM1iæÌBnMSo-Ègfâ¦B°rÒ<—ìHØX¬ZÅ‹ÞÑ5køÊ8.]ÎsuvÙ¦‰ò-dL ¤`)@àiÏ8cc¹l)«OE*ÇÆøékœ;áð³Až9e¿QxÚLdÎÒÒÓ1}:â•Å–V{Ü}½øj‡6ž’Â’Ru=®]HMáÔX…dfjÞôtMœÂØ©x÷=Þ¾­©o4qÍL™‚èΛÇ}û02¬wæHËêO×Ê1Z9SSÍ+q劆uuàƒ´ñ%‹QwþYåÁ,4§Håi:y92·ÄD&%óóÏyÿM‘ÎN|ü 'üœsçÂÚx[ßТk“øÜ•¤¸t,g»˜æ¦Ç…47âÜŒs!Ë…{.Ò­gÀ.Œw›ÓÆ T<.>qs›É.ÄÐϤYG~$¸Ì7Þs±Q"£pÃÍ·Ý|=Š$Ì ¯‹#.šQôE!Ý…è1’gº#pš‹“Ý\éâ¥(IvÞwó'nüÒ â‰jm‹Z¼ìeã/¾úÂË!!¶,wÁ¸ -!‘Ó¹e »:mntwó³Ï8aæÍCU8²Dþó &Êrãm”Ì\w—ÁéÓÏõëتÇåË\õ+bcøÆðûu”Ožp÷.¥å”XU‡0<-ëGR²îñÝÕljÔHÙû_׊‡²GÚ>¯°EkòûU\±6a®d`F*b§`Å[¸xAá]üðï?"ÉššQ±“GsÑ"LŽÁÌ4Z\Eº‡Ó¦19Y;½ÿÀæê£lÎæĉœ¿€G(x`9ÛD³9["U¶ [<Òx’pëÖñîÅ^¹Ì•+=ÑS°p!Š‹A`d„û÷ë âãE×27x"§39 RÀêÕhjRxS#þò>e>“~ÁÙ³èõrhHk*)Ýqjœj\Ä>SW­¥¦ .¿‹uuÖÖÆuëùÚϸx±xì¶M°²‚¿Z,šÒ·%cT¤‰ ò¶·ÙóéíŦM˜8³gÓÒ8Ä“³]+ŒO Vž®bIÓ¹‰™äq»§‰êëùÇ?ÉÆUοû-Îœas3—/ÇsÏqÎ6\û¿w×1ÇsÌ1ÇsÌ1ÇsÌ1ǾCäßT óF#ÃGyì8† d¨•!V„ °¡ ÛÚ02‹—¸×K![î=»¬« á°D2PÎÊJVT"BI) +|Óäµ<À¼\ÞnFÄ{ãKKX\Ìf´¾RËÊ~ü8º»5°¯§OÑW€Ü<³áSüÍwX^Nl ý…8 +x¸’ZáãǨ9ƒ½ß±¬œíö%ûý”®+*¬ÞCzU @_¡:ïµhèÈ0/\à~/$òî]+ß®¢4.éBZ¶Îª´Rç©SZsd>戴‰C‡—‹[7 @Ç^V +‘ù´òÈ)/×I«â£Gš¢¿gÏ2¿yy(‘Æëiš:ÌæÛZähå6VZ°?Ì.«ñ'OX[ƒïö¢¬”ÏÖßÖ‰‘å–` \zGI |>ÖÕrhÐŽÆå‹8°ŸEElÕQ´vĦ.ýñóÆÙ]¯¬20ÒÃRƒ>§ ö¤uL7 4˜g°ÉõÈ–,²Q +¬°¾e +ç1‹>ƒ5Ö…‚-1Ø`À´ü-ƒý‚ +dä+7”,0xØ@—•å±Zƒ^ƒƒ÷x·Å˜¿Ð{ñGÏ{?ÊâÕÿðôiCÔÆK­ÆëØ?ˆ5„êW¯âÀÝxs³ÅõPF$\•9G¸*K—ßeeôùpò„½ñÞ^TŸD¾yùBc]´. hjDd¹º©JeZ…uƒ¬Làá*<|¨¹X[Ë‚Bäç¡Øú«1•D÷ZtGª²€¢,®²"È@P¸*4†EuUô¹sôî“m²­O7ÞÑÁ#Gáó#ŒÔ¯l/–ŠH1ÐÿT¤¸z…Jã¸s[á&ÐPoŠHåÂÐS¢Ú"•Êyâ$õ(¶§‡ÕÕ*[¡ki)oÚ©o7kÍ"ÛHÍ¢Jï"FŸ_ž>ÐÆÙßÇšZíE5^„«õÂ^½¶¥E!¢ñ@0Rä…‘d˜~a/Ú[-ª?æùóÜç5¥ÎöögTÿ/ûõÒ#¹UÅüÜá3@œ’"k$”*)H¦ê+ÀŠl¦ˆDB6DÎw@| X è ‹(Ò$Q2«H0€wÓ]ï*»{ì.—Ïá\?ª\¯žîH¨°ôÿéŒÇvßç¹÷ZªÑH>üPæ'%_/÷q‡ô÷ÙgŸËÕUù1ÌVüÅnÅu-òçUÆOÿÉï+þ7Wñ/Õ!}ÿÏîŒ?~,:euy)Ÿ~,ggòÛ3þà¯î¡iü×S=àòùgFëo.Àÿæâwªû?Mù:æ8–(äÙLæsY,x1g½ÑÇñ˜'I®ËzWWò윾NxýKW[XÌx<–éLëÊ|á™Ne8riÙ—£½\ äâBâ¤|•$2Èd*³¼G×{Ñõ”G#žÏ$]ºêY¦Ã}3ŠÆåe9‡dÉÚѨ¬¾­®…]ËËe>M–ËPΟñpäFÎë‘/]㉛é|QÖÍ'®Óq-'qÙÑÕë°Cp9q½¬V.W#W²êz–O|èZKW›Dk5iç?çrä×®äxÊ뉗#Ï3©×tÅåÈ#mP'® FÞ½Î"_‰.Wu]裛øT–IÙQtɺd£a‘Šjâ+·L:ñél3òÉÄÕ]Ì]¶×;åy>qWÝíÁ(ùÎwüͯÓߟID2/ÂðŒdH23’3±¸ÄÈ€ä‚øyõæšdjdB<¯ê.ò«V™’,ó’É%ÉصÉ#ÃW®Mí‘S-yOÆ®;.jå¸ÞGÚ2ñ2/ÉF«ó¹kÁU éG?$õÕ¯½ô›_ýZ2æXs˜'\—O7Æ"”UV-­Û«|1àÁP—¬L…¾™Lõ8¬÷I=ç.ºT–q4—ÑØmÍçóªºn<·â™Çd½WgncëB¤i^.ÓgW}àB—/N¦ÕÑ궬V¼<,Ó¼údÌËëbÅÝéxö¬Ø«{+^V/ûÕéhGú¸Zñº¤Î÷| ÛU7?ÉÐM«Ã«O|‘_§ù!Õ³VluwH£ÍįâjâK—äɤü¼_˜yžö‘ÛêùÖÒ3®[ýÒmþÁH†cÖ{Ηc™rþ!’²ºŽ_«/$¯î¾N××å)»Ò‘»¯“¾Yr8Ídòt²ž8—_§!ë*¸‰sqNó¯Ó…›øó¸Ì¤û:å+¾ØÒüã6sF\¥ÅŠ»§¾ÑÝ¢Ž]Þ4¥n!ôÀºäHí#pzú»wç‡ê±Ÿ®¼}»yäó~3»µ´@^l« .GÝ®kÞI^…¼¿o궵ö Þ¦b9ÍÍÔïЯ‡Ç«­|—·8sñoûm„w +ûlvýýïõ¿Õ¦FDƒXHo¸¼¡â†Ùl=e˜Š*Õu'ÖUô¦,°{ïšÝôU½§ªÍâO®£Zïe‹¹yóMR/¿òß=z´žïÞê˜÷±Œï¿çÚ–^ßpupöwoƒ…JŸ²#C¸Iµ‹ŠE?ºmj{5“ÚPë?x^ê‡zØ;‡÷æÞÿéMÔ>['%ÏÙÑïÃÖ§`gªë·w:lÛ-|oþ÷ÊŸ®¬Ü=ïýv囲|­ g|ìoQlÓóv].ßg‡*ïµ³®QïÌ5YŒýà^ØâöXŽÌýè‹Úünêëhy>Øo­L±*å·êÜØ-ï<1o¢\lÞ.ȵëº`¹-6r—ùbùúë?ùö«ôôß$rOÄä¡7”ßWÃÅ=›ê%U/õJ\Û ®*æe —7ÕYtAÕŸÖ}­£,_+PŒÂˆÞ~›ÔË­WÎþðÇr¸˜Ý…®/Yí¦ØŽú¶ŸÎúå½åãÝ>| nå±›ê˜ìl„ýVw}p²‡ÚÙ=àRÛß»ÞÆnªoy¨‹º¼ýÉ9Ø‘,ý~_ŒòpT[#/>¨U*¸|Q:€æ +Ãô÷ûí6ÿ!Óœ 86þ»†ˆ<¯e­=u"š$Œ–÷»ýv‡‚€DLs‚’ļç"ò¼–µöÔ‰h’0Jï÷´;$¢ašqB¾Oê%¯uvvvêD4I¥ÝÞƒv‡‚€DLƒ"IŒï“ò¼–µöÔ‰h’0J»½í‰˜EœÐ{¾!"ÏkYkOH€& £´Ûë·;$bqB¾oˆÈóZÖÚS' IÂ(íöú퉘Eœï"ò¼–µöÔ‰h’0J»½~»CA@"¦A'äû†ˆ<¯e­=u"š$ŒÒn¯ßîPˆiPÄ ù¾!"ÏkYkOH€& £´Ûë·;$bqB¾oˆÈóZÖÚS' IÂ(íöú퉘;åq×Z‡ƒyÓߢ|œï"ò¼–µöÔ‰h’0J»½~»CA@"æNÁ.´qw­~$òùÅ%ã„|ß‘絬µ§N$@“„QÚíõÛ +1' fÒ)âÅåã„|ß‘絬µ§N$@“„QÚíõÛ +1_*¾tÅ|q›qB¾oˆÈóZÖÚS' IÂ(íöú퉘;EÑhHf>7«Õí«ßÓ+¯yýžÒŸÓtz«vâ„|ß‘絬µ§N$@“„QÚíõÛ +17» qa†#óø±yô'zøÐ|ò©™ÎÊ÷²ULoê¾²õžË*z],ÈZúè#“e/ŒFœï"ò¼–µöÔ‰h’0J»½~»CA@"æ¦` Wf¹4™wNoýÌüô-óÎ;ôË_˜ÇÓÕ•£"XƒióÈÄÙ½¼ª…©ÞÜ+ÞoÓ§ÛÙ³­_R«Ë÷M’çœsí$'a—+ÕbIA 4µVÑÀ mÙb׎µ['kïïôô3và ºæ›;W÷ýP'jÚíÚ¾Í.ÔUWé®»ì…ìŽêì´ê|›0¡Ñ¬+ÕÕeK—زezè!=ñ„m|DëÖë7lhÈúúôËíªÎ×ý µ`Ý>Í6o¶0jù«Õåû&Éó +ιvÈ“0ŠË•j±¤ PšÚ'K£óÌ{vø°½óŽ9¢¿°³ç,IEvℽû®Žêé±(R’X_Ÿõœ°“=úç?t¦WÑYëíµŸ¶(ÌŽ4.ÌVŽ·£Guì¯ÊŠ÷ßS·~L­.ß7IžWpε{@ž„Q\®T‹%ÒÔ>Y4P­®ÁA ]ÚMÅC–­ _hY´áa%׎gmÃIã·ÙÇ60˜ÔðemYËgdŸö}“äyç\» äIÅåJµXR(M­U²%‰eiÖ#‹ÖSK>ÔyéÈe±×ö?+ÙúØÔêò}“äyç\» äIÅåJµXR(MíŠéø ht&Éź£¹ÒXLu1ÍÝ‹ur!Í• w&‰./F~uñWN­.ß7IžWpε{@ž„Q\®T‹%ÒÔZ%ëQ’h¤°$«±F}L祿ÍSüýÈbóªæµ–¤­S«Ë÷M’çœsí$'a—+ÕbIA 4µÿ7IÚ<¥$ÑHÝLs˲ÅôbÃHsr¡h¿¬¹qüò›[?¦V—ï›$Ï+8çÚ=H OÂ(.WªÅ’‚@ij9J­.ß7IžWpε{@ž„Q\®T‹%ÒÔr”Z]¾o’<¯àœk÷ €< £¸\©K +¥©å(µº|ß$y^Á9×îAyFq¹R-–JSËQjuù¾Iò¼‚s®Ýƒò$Œâr¥Z,)”¦–£Ôêò}“äyç\» äIÅåÊübIÁÙ¡›×¨®8ŒãÏAîÍbVj^îÌ,ƒ­ ÔôÈL4C|ÙiW +†š8“¶CB2Ô”îò/èVÁÌ1›Ô·ôOmŠ1î[œ23qïéM¨"ºTzçÀ÷ÃÃáwvÏŽœ3¥ÛUµªDå­µi ø¤ÙÚ/L}­çrÎøu»ªV•ˆ¢¼µ6í!Ÿ4[{ã…é±1½Ø‘sIŒ'Q§kªU#)ŠrÖÚ´‡|ÒlíOuF;Ïåœñ'êtÌ÷?IQ”³Ö¦=$à“fk¯PœÕö39giµ;.\9rDåzðЬյvÏllèñc=yÒ[yôHI±õuÝ_×Ưæ抆‡•èè¿s÷NÚC>iüÓœ˜(IÖÄY +*55¥‹uéRo%©4u^ç&5YR©¤‘AR\™LæÖí[i øäÕ«ÎâÂòÐP>“êëËÁ`ö÷…ÇÂðh z&apøǃàxô'…ó£§GÖî­¥=$à“7ûož>ýmii¥R©ÍÏÿ27÷S¹\›¯,W*K•ÿÞÉa™r­|£6ûÝòÜl­úãJ­öóâÂâêêêææfÚCþˆã´|6ñ¡´[ž‰Ó.ðiâ8þèþGÿ +0jM©Ç +endstream +endobj +170 0 obj +<< +/Filter /FlateDecode +/Length 5615 +>> +stream +xÚÕ\Ys·–~ׯÀc£*¤[¸I¥J–Ç3Š3×V&㺞Z+'"%S¢t=¿~΂^¹Šr«¦\·nôÙñà-¦—“³‡~8üõðdòívùðãâÕëãƒÃ·Kqu/^”b¬ckX\‰qYqz&F%¿{:ü©Jœ^Šjì(áŸ;a£Gobé…vcç*UÂE³ƒÂDyú?oNÞür cÃHðç ÿœÀŸ+ñõàð§Y)^ßüýàðãÝdÄLæW¢¸˜Þ¾’‡¿¿{-´Qº%U5¤â?%þ`ê4ŽÎ¯ü€ÃŸ“ªÊqàkµn\šhb^¸Úo‘ÒG²»b.Õ¸*ærdáÓ?åHâá—£¯ñƒ.àÜ?È‘ûb!ñòåüüð-ȧ˜ÞÎéžÞcë{àÇ/×·øŒPœã%÷ò¿Oÿ­–ÓVA˜$²­C£b<Ž#³ª:¬V!Ž«P¹XE˜•8ÐÄg*â@S ”ÀÄ-3~‰ï?J…œÉ÷œHë‹ß³°-eM»aÓÒI_j ÞŽË*j0:bᨠÅ5è,'¸øROðv†ÂU~H­UøM€´#|ž"›À |¨à¥‚¿õ(rä€)`YÁÐâ4{âPë×ÂsGÚMê-a0øó•Ìg)•†ïÓ ÷Åw)("¾€¥ Êw®‘DòŽW¡\ n‹oD½Bjµ†Ç‚q–@éÈß>ü¨Aü-ðw ¯®8/©+x̃xDVLÑ^# öM4Ê3è©šIUwRãP7H\R-<èŸÄ|…ìÒÀp7HHBÆ¿£14Œ× W"Û,\kc#`ÊkÍÀÅq¨¢ É Zý*Wœ‹E#T4Ì%Ù².j‚#“†_ŽÅi’n2"ðl¸Ì‚s˜¾ýÐ0Ô +ëÆ’æÙòàq¡5–V¢3Ü’¡¡ÎîÑñ…>M%Q†÷8LòHt‚‚j“¨V´ÏÁä^ xH‘P™ø M6ïÅ Û7XE Îán²‚+ü1Õ«²à`Qµ¨ÊÏ…´Ȝֶ$\™â³ìpœ­éªÁÔfe[07P¶7¬ì9FªQjg„4Æb›´=KÛfIÛ%i»ž´ Hû‰Ü‡´¡Ð¤è¯ørѱ9¾o#<4J7pÙô,Õx–F +&ýAæº*|D/mHO +{Vâ F íaVK¡ï }W!ßÖµ«L¤º‘â–ÞYmM =ò©ôš`p4²ó$-׉šò­Ä÷¦‰ AÝVÑjÅÒF@öèš7ø2€fP͵~XÚp=êú&7 +m—b²-à[R)L±hRdÑÖQ;—½ÄⱑÁˆÌ°±;šgD£ñ{Š®w’¥šž9ìã}Íøds8@®âQÔtKü7†ïÙ±ÍvÇŽø”q¶.B«‹µj(MonþH «4m4sHÍN¶­-÷\'­b?ÙŽM³3Ï]¦‘‹èÙ<Í®¥Á,ч4»â5Þþ·¾&ÜÛ½À™ ÂEðÝ`=ò€Ï# Á§ÒàïBžr:n»D"vÞo¹äÀDð.í¶ry0 Õq,-üégÀ\}{ *£2=Ú6^Ѷ銖²caHW(#ü©TK˜uêÊÐÞã4ö¥¶å’š´Í—4´me£ÔŒÏ°®½ÇO÷Ŷ咚¸Í—4Äme£ä ù®Ð==Ém¹¤!nã%-q›G¹D—ÐìüïßErøDDkÎ×éRk/Îf”‡Íà?˜­‚anÄǃæ~„V°¬kU€éþ%¯Y'ê*Ì5\{y-€r-ÍѪîØÛ/0¸õâ!Õøµ[¹x9ïXY˜Þ¢úe /Á›á±¸Œî +0XrñM<®¹ç¥Æ'±lß½ÔøåŽkÿRcš=L\•6±K|§·øÍê-/4: dýèî…F/w\ûW‹ÛQU—øÒn1ñ5÷¼Ôø$“ ã»—¿Üqí¿Fæ6Ú:ô™÷îy©ñ;2_ß½ÔøåŽkÿŸÍAýdàübôúM› ÄAѸ°¾éÊ"zÏ¥ÝSé°xpÄùûÛ”K¾Aš dI¹ª–À9².È¿T+伦¼V£X<<ø#eP=]¢Ñ÷hô‰F³?»ëóŽëóÊ Ä·Û`#$$XÎ`XIlSªQ£æ¡8GË"§ôÙ {:²èDz!^}ʦ٠*Ñå€2e!UÊ–Õ€´BtV5¶>Âöl«1}.p®¤²ž¤R2ýáW™ÔäHM 3§¤YâÜ‚€ÞJO unPçÇÙbpkÄpø“iÖNÒ:¿CßTC6H¤*½¯•uÊ…õk‰îyAÅS98¨¨P…I¿oëˆs‰ùø•¸•XƸÄ%´Õ#‰=‘ο‹l:%ÅÍ—².ï!ñ"‚:F©uq+–TísMn‰•bªÛ`mk"ðÀ`Ã;b`*+^ ÂræUžŠÊ³ÙÄû âm¬ÐjªD;QVq){E¢ñ×w&À +•¦©"•®OœÐ§'½¡RT6©aµt{&šîFâ#”|ªã.n›…0åÒ" › R<å圪@ž +°`ÝçhðŽ×£îÓ}gÙtÇ݉ìuTc”׶*aþšøGI•{ qv‡…ª˜iPõª,ÄdŽ\ÍÃT–³ÅçÒxI¥f.š2Õ¾˜O,Ø=J.ãe²bÊuAkÈÎ  …\aâ V.¿J\÷Bc§VâØœg’jmhéµcˆä|ÁÝTQ¹¨}<—tµÙÐm€g™±¸Ð#¸e†Z£·ŒÞÇ +,¸ð{!–Œ¿çÅEÎŽµú3‹œshÀý n”T.N"Ãêrã–X!ÄAPp¶““ÅÈ "|.¤©@}ìA5…eûiÆjf.fMØ5ÃHbÈ^Ææ{V—øAD¸£™žÈX°=a(]Ô¿ÞòŠÖG]ñY²ê¾Ç° Ô^¼ ÅÜ+¾49g67.Oô@O ¾ž¢¿.Áûcǯ/¡¤O† 1<• =·¼ä~ÉŸî¹lÕù´&¡j®÷¡}¸¬f’*Ì.]8‹þVE_Ï‹´Îëk±xÄU¬á¶x¼Hˆì<›*ߧª‡×aÿYvé|Uº 4! öIËFƒ&öÐ >d=ç`ßÊy“wü*iKÆÑüa‹OÒ!Ž?âtÌóΛ´(Ò0?‘áæ 0ÃH?c°OS'|¿Ò;_|ȶ0ÛK”0€Ò~µÊZ\1©”–üÇ ­¢!ÈùÈ´ÿ’HÁ¯ qŠ”áÌøS¼c¶½ŸéÇlZÕ³@-*ÖY§J·Ô¶° q^C¯ë@‹Pð +?Ø­+RõÀq«ä"ÕvP¥›B6|½ö™–-1/˜q|GÀ[Õß.R<¤É%§Í¸‚­ªWß|Z ÖŒSL¬÷+Q$³ —¡E]ñ=Ù\šÜÒrŸ#pcÍ]šf v`ŠT\óªú\¦ås‚å„KhÍ>ßjäÒÌñ¶´îY0yè4Ç•C{Ü.È%ê©l€‘yÃêØÔ„Äö›ýl•c^]¢îSÃ4²¡a b™2ŒWµùñ¶ÌfõäuP¤fE1ôâ-˜L’!SÖ€‰ûy>ƒþyºYñ#*ú4 ƒÓ°¤XÔo 8]±ø’çү˩$ÙÔ_qœ‰É„ižq.KÃlÒ&žì.Ä20¸“´eg‚ÈË"j׊á"ùÉy6ij-hÏy“%Z«Uüûz§Æ#oúÁ=l‰vKŒÏCÄ+Ἧ¨¹äÌbDƒ.û@ù–ýê²É=2G +ÃÄ.“r——Zz¬5tNAÙ™šSƒ(šj¹©Œy†ªDõ9žitd ÒО§ù9}øƒf,ÞŽE„§™æEð« º0[PzÏ|ýkà0À8]¡ÝÂDLÛZºyg“n:6åŸê‘²I7Ï”½Á3Ê>aÒÛ»f“ãˆÉÛmr°)4jÜ<œK›]ÇåÎ,ÁT~\F×”KïþÆ•oDÃ(ÉSN¸Þ¥ Pï)©y+^I*vÊß°VÚËæ¸ó½OTv~ઠ+ÕFˆ +‡ØZÖÏÌè'œ~=­€Ë ’¦íÊG¸5¬BáP-àä½Ñ 4ƒ{º©Øñ3y ­RX<úà`öZ€óÏÂÞ(4t“Uçbo]âNUÚÇš¦BE›ñFùÊ ûøFK7¨ÀÝäÏrˆ/Gøz“7`G¢£Í¹ò’¶Qw|Qßüj¿x4˜rê9gý¤ÓnðT€v픣Òd^ȉ±#EVŒšˆ$±SmßöÊƪr0'¦³Jï€/C›8áúÔtÆ“ø”MöA†B*ªM s‹t£ÞL8aX<¥I€_CÂ9zFTNä7Dª Z²#A5È ›d;¦çY½Qds\¤Ã b¾Jªú22¥ÃôÛŒí‹9áÔt¢ËjŒ%°Ö†X§QΨÐBù¡ªë]ˆ™ ™¶'È”+Ϭ¬ÐDÜæëcðîòåiwÈÓ™Mâ8É"M{ÉÙ™«k|˜ÖÐ/IpsIiò#'BSÉp-¤Ú9ÏèðÃÙÃà7´b{Ã[f¿eKÓåJ3Dk÷>sùÒ–kŒ»+1Ä…ÚcY~I0ÒbÉ|Ê«æiË=zê>1f{‚TY½ Ù¬Ì;.2¢ùóÈ›r©a’´GŠT…,¤ =ª +7ˆ>3ÜÄç¢Â•¹ï9¸'ôŠ=¦<_fUê‡Þ{Ƈ^n—²bä”A'LmùÌÐq{É/{ \:dðý~\¨}‰¾ÍRýˆJ õb^›3ÌÚD"БQµÿ +LE.ÍÝøº›»X S‚ôä:_„Y®÷zn2Á#5'õªÈ%|_1>÷†ö5Œª=fgož+ Ýy{àÓZ@»ÌŽÄ!DL%3^O@xtΖ]LøLñ]úù‘aÓO¡[å“óÍi}¹­v›XºÌ×’èZ6ü³)/Ùj›”W§âô¬©ž†z_šçrÖ_‘Îe%dÕßL +œ¶´!±ËC¶%õ¬RòÐ#¿ôWå—‹ÄõJÍØujÆõL¥k^Ëv‘üêšÔÝ0 +þ–Ì–ŸÞs `èYSIGëÚmU@ÓŽ/¢·§Šî 1hBò½-#|b/J4ûìÝJÁìHV6¢ƒ›~àLnkîǧ'À‘o¯"¯3’/¸ÂtÃsÉh¥Ø}Rÿ3CÅŒ1ÂùR&ŠU(Ú$ßšt^ðÂ%åsþXo¬#»IlyfËÄm™Uÿdp;;et‡M˜ˆ‹ˆ¼@` rü%ž~(`ÿ(69퀂ÎäTÜžÀ\Äž;°ß¹s7ÍTøº®Iƒ*ÁÊTeÁìút Šµ‡ž( ÷Á°Ÿ ˜:Á‡'©}½¬„ ƒOìÞÎÓ¶…{I›¾ÏÖWx}á>dÇ¸U_ÃóõË-úÚ¡ÞSÿÛå1œ-ÛFÜÆ é;Ðôypi±!’~ânMGMµußMÜGmQíRÛ6e•k‘;¿·²¢Þª¬áÀ{(Ë<_Y½§b{y»h·™GÓ€Šóq}¥º] +º'©W4yI L–)#ï_¤ +*Þu/°õC¬;˜Ø"yì‚«‚†ZžT©uíŒäãÔ €ÚTÅ › +ÐQ|'Ú^'”3uxI§¹ë3öƒŽ“t¼?5¼HEõž&)Sozº :©p— ST•ËµAû'lPܦutûÛ Ûfƒ+ïaƒÕ³m°ÿÔ½l°ßä¢iA‚ê{Äèáëîl‹0ˆß%=·¡•þ"ð +KmgxKÛ¤§îÛÐvH©Û~p‡ƒ³M¾ÊýŸQ¹‡¸‡2 +û«õrÔC 5LÕyʃHKRëº#ÞL2™R¬@k0šŠ/î¥+÷€›¶¬^F©0=xÚÒoUêpà=”ž?ôžJkî7Åê³ôn™ð¡2Ô-´¤æi#:yZÇiÓMŒôŽNB ;ð…¶©í5Ë£ÞmÙîí¸7aS#)UB¾i`%æùí%PÔÇmm׬aG¼$Þ×4nC;ì0w')MZÐ`0 ÑÒg`\\‘Œ1Îh83€Ô÷ ±¾ËOÆ:ªÒ©r¿µó™hØÃÆZD¸-Öi:4-š¶Tí©Av5ÁeÇ{ÈÑ>®Å¼þM,»i Uƒ}%e:XÖçC{Z:`Ó­ÈÖûÊÆfŸÊl?O8xî¦u»ÎóbÀ½àaÿy[Ê´ƒ‡èÕ£3ƒ‡´ sj…ˆM5;᧴¥;}Äš&ZÕèÌê·œnqšìžÞäX¡i…Æ˺=›¶ˆÝžqºè™DÕöŒk5 2[§ZÝK6@ê&Öͺme¬›<6v;lÐFÌ÷Ê¡Í'×ôGì5]ävÎ²è¤ š›odŠÕ:Ëæe›¢Ù°¦£ú±Îb÷&«bÔC[¡µîíG9´k­MX €Ál°Ø™¶ßž¯IðS|Yg «M;³‡#{¡hÑ7Ü:éF[-¸jKIDùP!MG½¦SKO~Ú—¦}Û”ÆŪ'7Ž{Âú?‘_‰ +endstream +endobj +171 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +172 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +173 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +174 0 obj +<< +/Filter /FlateDecode +/Length 4689 +>> +stream +H‰¼WÛnG}çWô#GÓ·¹8†ÛrŒ,ìx7曼¨¥µ%9¤dE¿uë™nÞ¤¡² ¦8œ®ª®:uêÔÁëÅíåùìäV½|yðI|˜=ÜÜݪW¯Þ¾U£7ÓQ©Êºÿ{ïÔb>:xÿ¹Tóåè`jþ(•QÓóQY”֫鉚È_÷ª*j8ÿê"(c\ášÐ(Š*8s5ûROÿ3z7½ûžþG` Ä³`¿}8øåªT‡7£>Ÿ]c„f×s5>»ž¼£>¾ýõPYoB®Â¨¾bœ†ãœÆ0ÉCa :ÿéM£Œ«Š²rª¶MѶm…Ñ?éIS4j|«'¦)*5¾ÐUÑ‚om «Æ u¥)j|0qø$y® Ÿ7zB¯žêIÀÏ¥ºÑ& Ísu¯ÁwÄÚL[‹?|×¾0xÒN¯Á"$ OžjSã£3´N—èÜS[â+ zžÜi>s¢'~òàêRCx!1QÂ}~R—ð†-<=*ÑÄ ^>¿ië1ª;tÎiÙRzÌÕ±nñ½‰ñŒ5‹>6ø2ÖÒv/¶j+ ¬Ï£úª]’¤n)­œNùŒ)¹Žõ© ~~ÑjF–¹õøìTéOÿÑan7ªªUEYV+¨‰˜®ÁvÝÁæsd¤œÊ颫Pý’”Þ F–L1_2ÂÀS?f F/úŠpFøÜ7´Ö¤èª,çP +ï'Ê%!nq¦ ó†ÞâÛ!"nbòßÙºJ²ÒÕP">—‹ÝÈ¡…ºULаqL„êRʸŸcúL† &úr1aӗ䛈>/!mðq¬­À^²‘(`tKM ñ@74xµ§ã©ÎX*ÃR€BU–Æ“”wÛnV°ZoÃj èiÛÀX=†{ÛÂåó’nz¢úÚUHK¦bšêÐ&Ü ,Ôk¤ŒŠÒ½‚Y¤®§%&©’©¾™7+¶¶ÖaqÆ\AÓùYï6!;({ßò~DdBŠÖ¡{u¢›œe µ¥>X±eÉ[æBHS‘Ìl‚¬¹®»·*ts«Î4>ò=ççgX#¥¨vÞÜy |RÛ4ù-hªHzÇ|3Œ„Ú[E q\dŸ±uÉ“¬á‘mªu+Y-®±Ê-æ®nL0üae,¶<”ÙÉ•žÅ™vTµÕW>¡³Ð5Ê7uLL(ü%Jh=ášÈ³žÇ·ä¢FƒÛ§êƒ³”æÍ•9;6}$jVèô É×ÚÎC§+äØÓOo Èv+¿õˆ©»{ÄÛI§ÂÊSeM“] +0½ ÐuùíºÑ£™%䇺æFõàˆˆXÕ©ï³Í*+…@7Õ9ˆÇ5V‹ä8 ‰&I"Ši`fÒ¬ôǽÂÙ½–SѾ ’ÓÃ8šp¤:Éu鹄stq+BÑzɹk´¥ð”q1eT©ëŸÀwÀ«3<ñ¬£ö,ª¾¤£®fÁÑAsÛ} ÍŠÉ~âˆ%¡(èìŒÞ[ÁÔßE=}ëŒY'ÒêxùC¤x’Œ§×Â怦2´[¹Ð2¨ËUøs¼Öamª-Í©÷qîh»(5¬Dð½Ð¡Êž«%óüB±J¬£Ÿ¥ŒuîÞU=#¯M-ìÆ©ž³“9\r㬠±õþö~I6¤U›¡/;aA.ñ{²_lÿ©Ý5!‚à/"'¢£NA7ÿ·ŒÕ(f Ê­v·Û†&¼F‡¦uÙµ6ë×W†îeo¨× 5åî‘Ô»Wƒkò¨w´¶ÀüŠ.àèGi¾×šÀò9Ç £+.ª›í,úì +ݯ·ÇX‹þûÀ Фa‘Áßl‘d›kbÂÂÿ±>G,ï*i™B_Èíx€2¿{†l‚[ ûGÝ8†ólóTžõ‘gëȳ þBœýb@Ø!£[ðëüï½S‹ùèàýçRÍ—£ƒ·öˆ]MÏ…’i*Ò…Zepò•ö©¢©=ÝçeY–îÕS7)ù}ݘ§»ºÝ|û£¨¯x-CךNåVT° V +ƒ±¬\ ¸8wžµÜz2)?“¸?”Ñžf` •M{ÃÇSÁÊ |õÅZƒS¾áÓ¢hÝŒ+– „ô¯q®~¿D¬P‹;Ĩ²pœÒüARŠ !—¨B$¤˨GLÔ#ÒÅNZ§Ô5²<‡P­nÁÒÏ`Öü0«Ú"ì³v'Ìr»`æÊ'Âl¦§„©ÍdntE¹Ü´Œ#ƒ¿[áÕRöŒ#Gêë¡x¤5ÆR\½ÑŒÜt€'ùlGP‡tÒ¤ä(›"¹ØààPë™à²›qûqõ˜~ø2Öž6ÉOšÿö«–¾Òd9Ô¦ÒÍ¡°¤`DŸñä|ÔW¿Ÿp»Ê ¨p÷ó€9àÌ@¤¯ã;„Âí…ogwâ;·;ßn|'Ná›ã4£;tئúÿ†Õ¬ŸTÕDÆ[ÏÿÄ–i‰2K6Ñ¡zbë…m=ðqØÆÎaéWâ¶õ 5œÈ¸ä<«¨Ný¤ÃóÅ|ùgã FÙ_a'¾r»CðUí¯ÄéÑxU]¿ÓÌ€_Ðââb×Ù£ðT¬¹›D̦  MjÝIý +±ÜIWÑi8WQw´ØÉlãâ¨ÇN--š«xÁ.[¡&øŸêI[„Õµ P‘q)é±y ¬~6 +ÛýÖìDXnwÂÚý–8E„™’fÂäÜÉðÛ4ÿäêÝ%?Ù¨í"aõ _x±©w,6._l"U=6JãVDzŽÙ•uÌ&§Œm؉®ðS´$ÁSóº1@úòÙ ‚ÎÜo»ðf'¨r»@åíþ JœÁ¬iêý@t¸8®LÊ=2«j¬Î1”+ç%~·‡Q‡`©B,!ƒ‘,÷# +Ü9óæeÏe´Ðœª {-M;:H$`ôxV‹DÃfl2 Ú1-zñe×¢¡!rÏEo›=ïw!hÅî…½”:=@„44@h2œÈ÷Ç%vÊZKÞã‡.$ GxjO½àIÄD?¼Q ¹;<á“©¸5Ž¥h¬ƾÛ)ÀååQFMâ·4I“4‰mèÓ®ÁcCW=qßSÊûz'âr»C×ì¸Äé¬^š!˜}*\6ç¨lOJ¸¦1Ä|WŠŽ»dUŒJ'îo†žÏñ{»eÜf¨l6ε•a_T†ö…ëÛgM¸ù|ÒN¼$‹ýRÓZ{Œ_ÛU­¹ª ˆ‹‡à·}6~ërÏU!”;ñ›Û€ß`öÇoâôhü –ÚdÚ¹ß;ÜŠ¢oåÍncäº2üê|ø…løÙ5ÿo. öÙXaOQÜN,äv‡`Áï…ÄéÑøw\¿Z*ñª¥*Ñ0)ÇIÛæt Ò“!À¥ÐÖwôàQ@u A¡Û„HêžHPk¥ܯì©n3&»Ps=EU>dáÙ ófO‘ª ËíYýDA2KS©é‰’?îÕÜ%qß‘®¦=öK5±5ãfâ¨V *+;†ð”«ñ‰qžvV~¡©ÇŽ ÖPa…Vqü>;!Ö«èez·På\Bð…¡7_ð_Ö¥ç Oyö_èŠgø’0M{ˆÂ&[è&•4 õMÛ8 Á^‹¦¾ ‘>¨;jC”„uyiUºä¦kA'âlV …˜¸åJPJ‹ÀœÑÒs(]yˆ-¾~W‰·Îj›)âdÐz0GÎpb?$ý¹@¥M=•wd u¬Ûl¼ mÂü±êÎ×å=ûÚf +2qµ^E|×z¥/š‰D“<‰Ü‹õ LIéÚÖ… ®]¨@õÓ˜‹¡ÒœÂ°¦n˜ÃË&¦›È”V¦$2ÁËL–©¥ºY¼`U‡„oEäV²ÿÈ`ˆä¹¢@Õ}ÇÂŽ.þ Å2ßÿ‘ªJ³%Ëÿ%½ZzÛ6‚ð_áÑ"A\’K½¶‡žrÉ­'[±ì VâJ0Pÿûî²[*äI“$D9¦Š«V3XÄG¹' +CÜŒÄøé…q\¢3zÑÂ1ö[þÛy§íæÞwÛ­¨_Í;Ùº¬¨¿5ïËvcÙÙíÿ¹ûŒàqëNçNC¡šÙ™*ƤêÉê ‡—ˆ˜e´cË•¦úe×XUÆAèí Ì!˜ØÊpSÜðYžfã7¢VªK¢Ç©“Âê}v9²dÁt6Ò2á}…ém›‘ïÃ'!6œÒ!§¸Úaˆéøö™éWHRàÓNû^á£2:Á­ÎP™ jÁ'Vqey´.ÄLó£T¥µâ¤ÙYö§¶w¦í¯Â/Y©¢]˜’ícw…ÑõY¨ª£AHñXË'êú|DÀn;Å«›®»…bÇ)6Ü iFÄì¾Æ°7D!ŸG¡ÂÔ¹’ sÿ“[ª1°@²3Æëží@ˆÜÌT^1¹ý>vt#‡´û¢'ÊÞøáÁž+±%°›Ê +lo³Ý­‘Éú ÌÅÈÔ¦‘I¦÷£Âo•ÉÂj¹¸€²ëL +¡Žý[còÈ­ßÅT¸zÉéíB}UiŽ!ˆ…´Æž| ¹Ä\R«ùEhºF’Šáq® šUÈM¶°'q†¼ +“sA磉ÌzÅ1ô¾úB >׉ÏF§b蓧P7 PÁÔ&ÎÃ|u{ë‡CÚz¿àËÜWâY”ÀålÁWÒÏ4O{¥b•¥”ÈÂhàÔÜ×-ä½ú•èc;ið\6x©½âÎ9Ô3QÅ-bG£è¶ bMéÓÇó{­«:e0¾P´»]€†åôUY o~†f„sþ¹&6 ‚þr¬ø"`FgŒüŠ÷ª?âé–÷þj’2¡NáÕOÈߟWw[›†«pN8q»„l°w¬‡:Š<ÂÔŒˆ?mb¸,©{ÛÄ̽ t+€s2ºUã8#âC¿E=Ø%)a•¸bJX‡·( ´ìc™è&!2!öVKŠ}5HæÃçÒ›3ðµ&‹ûoåuÔbúÊl³YpùˆÑs](·Bk%£1…+¸èñ‡ Uf1*áa¥¢máqWs¯/ EÑüd•ò,qægžùÇ 8ýˆbA­z’äYÀ'øˆ›$ˆ§|Š+´xµ}õ7ˆj†ÏûÊ1ÖÓ–>xmA:®Ô‹hŸÅDL¼w^a^ÜNéy»D³›C³„?˜'ƒ?R„c(×Hi˜?F¸S@¥'ƒ}« Í&ŸŠp°ÃkM«¦XGÇÿ›±¥lM>ìÓ®"9à sujÔ„TsÇGmíu§›†ú˜AÝØŽb1(²ôv<°X@AXõY€P«ñðÄ5ÁÛúð{Ýê…F4óXdgœÃ²e˜sá€õ9ÃåYRJÜ)ÂâpGÔ+ëHa‰~ò‘ œèpLØ¿A 7Ðg´?œH×»™~$ð”ð%V| ¼FIŒh9šQ¦‚6ÛªË5ÑÖ 7Y+£“p N"_ÑäŸö™3ðk>wÕ„Jzí™°”ŠAŒ‡>Õ>Ql=ˆó@ çSÏVFÛ!NÑvfÛ0sÅ$ha6Ï 'mæ¢N0‰íDõÂȧSÝCxÞA±0ªè`}c)!…u¼ýî'ïx©Î¬{óË´âüaþ`|zâ bWb¢µ¿³"«´<­ñþnܶôÍhZ +endstream +endobj +175 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +176 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +177 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 1240 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 176 0 R +/GS1 305 0 R +>> +/Font << +/C2_0 306 0 R +/T1_0 307 0 R +/T1_1 308 0 R +/T1_2 309 0 R +/T1_3 310 0 R +/T1_4 311 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬WÛnÛ8}÷WÌ£T4¯¢TÒ4Zl[ ñ>µÅ‰K7±Ùi~}ç´d9Ù]d[ˆ(q.gfÎ i%ëàIÉF9ü·Ô^ŽÆǧŠ.W#%•²TÖÒófe¬¬tCµV2¨†Úùèb¤XÇXè;Uk'këH+›`ÉéJVlÔT²v:élDŒ–Ö7ˆ·rc5K4TÞ÷6¼tCPÉàõsãƒv}}1=_ÓÞÞøÿ˜>.ï×´¿ÿæí!ÞL<þý=Oô_Š4M.¯æÅ9•yõÀ“iÅX·¤µ4>ª¦•VArj,éÚHç] ÉíèsñQ”Aj*>MDi¥¥âH|¼MFGÁâ*Q‘d>ûŽ+øöZÕ¤+%µçEô}4FÖTœ 3T\Ñ;^QñVXéÒÃSq’Ò­Pø°¥ÇþLpdü~/X¹ümN×Bs T¬è\ÔÐÃv ¢m…öؘóg~,„®eCÅš/®…ƒÜZ¿¢9/Øúe;‚^éµ4 +úkºþÔ£.‹(n &Øñ•ˆðæ4c¬1ÍÖ¨´±ÚB3K.“܇Éx” .¶ *DCôñN”Q6'ò2)̱Ï1HzY-wËæ,3¥aP¶‚ÄäÛÿ·ÙSÁUÜV*ˆ²I!í&”@Ž¶Há¶I1HFèÊÛrF,RU!#=e¢—ü•y‡Ô50ƒRTxF2lþGúzbl»ªIõœä~:¥f Å2ÐÈry¤?™É½òbÓ,:Ò„çþÀ¸¥³|vÅAšH¢ûFâ¼øßkdãLõå®»ôÞ¥Ü?r¹Òy°=z.‘Ó#ûbø&Ðqß b–RÂFæÄw~*–3ˆ0Nô¶7<«ð\¥éMä¶fcib»|Ú$©Í{Q²ž\ªp0ý%tW”€[AµI-*[s#TÎà.TU>_FÞaªãı+×"»0^"»‘áu:ñòiDÔfù æ‰ÂñÄi]jè¬`³¾M}~‹ï¼? “Îv$¨s\êx ¼ê,Îóa¿ÑXžŽ>Üäç5|s’T½´Œ¼¿^2¡ù¦‹YZœˆh'Æ©3æËAH9ȦëgLŸŠ&³ÁÃ<•±?8~^Äi‘À¯^\pt.£Ç§7oTÜî^ÿ…¶! *]ÐËN”!ÑNŽGäè;ùFŸ¿*šQ÷k`|h6e›p±ÔŒ„I`±ÈžRµÛ ”çowcæA®¹¿-æ­;ðì’ç¡S> ù§Œ¶”6¥ŠÞsímºA”|¸Åq›i>ç9Älm0‡âŦÝæÇOZÇë— +endstream +endobj +178 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 172 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 176 0 R +>> +/Font << +/C2_0 312 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰TŽË +‚@…÷ÿSœ'˜ù›"¤‰›$¨ÙE„XJBjH=}ã²Íwà\àÈí8?º¦‘¦ò¹o>¯÷Œ,Ëw(÷Ä`¡´ 4FãX ‹5ÎÆ $«£ŸHêʈà»0ôm¨øeÅ„ˆƒ|×hD,´&Îhe…J8dOJ™“ùJOe>ü{²Ö µÙ¬#)¸Xh¥aEÄ +ã:ú 0“.ì +endstream +endobj +179 0 obj +<< +/K [313 0 R 314 0 R 315 0 R 316 0 R 317 0 R 318 0 R 319 0 R 320 0 R 321 0 R 322 0 R 323 0 R 324 0 R 325 0 R 326 0 R 327 0 R 328 0 R +329 0 R 330 0 R 331 0 R 332 0 R 333 0 R 334 0 R 335 0 R] +/P 52 0 R +/S /Article +>> +endobj +180 0 obj +[336 0 R 337 0 R 338 0 R 339 0 R 339 0 R 339 0 R 340 0 R 339 0 R 341 0 R 339 0 R 339 0 R 339 0 R 339 0 R 342 0 R 342 0 R 343 0 R +342 0 R 344 0 R 344 0 R 344 0 R 345 0 R 344 0 R 346 0 R 346 0 R 347 0 R 346 0 R 346 0 R 348 0 R 346 0 R 349 0 R 349 0 R 349 0 R +350 0 R 349 0 R 349 0 R 351 0 R 349 0 R 349 0 R 352 0 R 353 0 R 352 0 R 352 0 R 354 0 R 352 0 R 352 0 R 355 0 R 352 0 R 352 0 R +352 0 R 356 0 R 352 0 R] +endobj +181 0 obj +<< +/K << +/Obj 251 0 R +/Pg 10 0 R +/Type /OBJR +>> +/P 357 0 R +/S /Link +>> +endobj +182 0 obj +<< +/K << +/Obj 252 0 R +/Pg 10 0 R +/Type /OBJR +>> +/P 358 0 R +/S /Link +>> +endobj +183 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 359 0 R 360 0 R 360 0 R 360 0 R 360 0 R 360 0 R 361 0 R 360 0 R 360 0 R 360 0 R 362 0 R 360 0 R 360 0 R +360 0 R 363 0 R 364 0 R 364 0 R 365 0 R 364 0 R 366 0 R 366 0 R 366 0 R 366 0 R 366 0 R 367 0 R 368 0 R 369 0 R 368 0 R 370 0 R +371 0 R 372 0 R 371 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 379 0 R 379 0 R 379 0 R 381 0 R 381 0 R +382 0 R 381 0 R 383 0 R 381 0 R 381 0 R 384 0 R 385 0 R 385 0 R 386 0 R 385 0 R 385 0 R 387 0 R 385 0 R] +endobj +184 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 388 0 R 389 0 R 389 0 R +389 0 R 390 0 R 389 0 R 391 0 R 391 0 R 391 0 R 392 0 R 393 0 R 393 0 R 393 0 R 393 0 R 394 0 R 393 0 R 395 0 R 396 0 R 396 0 R +396 0 R 397 0 R 398 0 R 398 0 R 399 0 R 398 0 R 398 0 R 398 0 R 398 0 R 398 0 R 400 0 R 401 0 R 401 0 R 402 0 R 403 0 R 404 0 R +403 0 R 403 0 R 405 0 R 406 0 R 407 0 R 406 0 R 408 0 R 409 0 R 408 0 R 408 0 R 408 0 R 408 0 R 410 0 R 411 0 R 410 0 R 410 0 R +410 0 R 410 0 R 412 0 R 413 0 R 413 0 R 414 0 R 413 0 R 413 0 R 413 0 R] +endobj +185 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 415 0 R 416 0 R 417 0 R 416 0 R 416 0 R 416 0 R 418 0 R +418 0 R 419 0 R 418 0 R 418 0 R 420 0 R 418 0 R 421 0 R 422 0 R 423 0 R 424 0 R 423 0 R 425 0 R 426 0 R 426 0 R 426 0 R 426 0 R +427 0 R 428 0 R 429 0 R 428 0 R 428 0 R 428 0 R 428 0 R 428 0 R 430 0 R 431 0 R 431 0 R 431 0 R 432 0 R 432 0 R 433 0 R 432 0 R +434 0 R 435 0 R 436 0 R 437 0 R 436 0 R 436 0 R] +endobj +186 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 438 0 R 439 0 R 439 0 R 439 0 R 439 0 R 439 0 R 440 0 R 439 0 R 441 0 R 442 0 R +441 0 R 443 0 R 441 0 R 444 0 R 441 0 R 445 0 R 441 0 R 441 0 R 441 0 R 441 0 R 441 0 R 446 0 R 441 0 R 441 0 R 441 0 R 441 0 R +447 0 R 441 0 R 441 0 R 441 0 R 448 0 R 449 0 R 448 0 R 448 0 R 450 0 R 448 0 R 451 0 R 448 0 R 448 0 R 452 0 R 448 0 R 453 0 R +453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 462 0 R 462 0 R 463 0 R 463 0 R 463 0 R 464 0 R +463 0 R] +endobj +187 0 obj +<< +/K << +/Obj 273 0 R +/Pg 14 0 R +/Type /OBJR +>> +/P 465 0 R +/S /Link +>> +endobj +188 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 466 0 R 467 0 R 468 0 R 467 0 R 467 0 R 469 0 R 470 0 R 470 0 R 470 0 R 470 0 R 471 0 R 470 0 R 470 0 R 470 0 R 472 0 R +470 0 R 470 0 R 470 0 R 470 0 R 473 0 R 474 0 R 475 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 478 0 R 480 0 R 481 0 R 482 0 R +483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R +498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 501 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R +513 0 R 512 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R +528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R] +endobj +189 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 540 0 R 541 0 R 542 0 R 542 0 R +542 0 R 542 0 R 543 0 R 542 0 R 544 0 R 545 0 R 545 0 R 545 0 R 545 0 R 546 0 R 545 0 R 545 0 R 545 0 R 545 0 R 545 0 R 545 0 R +545 0 R 545 0 R 545 0 R 545 0 R 545 0 R 545 0 R 547 0 R 545 0 R 545 0 R 548 0 R 549 0 R 549 0 R 549 0 R 550 0 R 549 0 R 549 0 R +551 0 R 552 0 R 552 0 R 552 0 R 553 0 R 552 0 R 554 0 R 552 0 R 552 0 R 552 0 R 555 0 R 552 0 R] +endobj +190 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 552 0 R 552 0 R 552 0 R 552 0 R +556 0 R 557 0 R 557 0 R 558 0 R 557 0 R 559 0 R 557 0 R 557 0 R 557 0 R 560 0 R 561 0 R 561 0 R 562 0 R 561 0 R 561 0 R 563 0 R +561 0 R 564 0 R 561 0 R 565 0 R 565 0 R 565 0 R 565 0 R 565 0 R 565 0 R 566 0 R 565 0 R 565 0 R 567 0 R 565 0 R 568 0 R 569 0 R +568 0 R 568 0 R 568 0 R 568 0 R 568 0 R 568 0 R 568 0 R 570 0 R 570 0 R 570 0 R 570 0 R 571 0 R 570 0 R 570 0 R 570 0 R 570 0 R +572 0 R 572 0 R 573 0 R 572 0 R 572 0 R] +endobj +191 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 574 0 R 575 0 R 575 0 R 575 0 R 575 0 R 575 0 R 575 0 R 576 0 R 575 0 R 577 0 R 575 0 R +578 0 R 579 0 R 579 0 R 579 0 R 579 0 R 579 0 R 580 0 R 581 0 R 580 0 R 580 0 R 580 0 R 580 0 R 580 0 R 580 0 R 582 0 R 580 0 R +583 0 R 580 0 R 580 0 R 584 0 R 585 0 R 584 0 R 584 0 R 586 0 R 584 0 R 587 0 R 588 0 R 589 0 R 589 0 R 589 0 R 590 0 R 591 0 R +592 0 R 592 0 R 593 0 R 594 0 R 595 0 R 596 0 R 595 0 R 597 0 R 598 0 R 599 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 602 0 R +602 0 R 604 0 R 605 0 R 606 0 R 606 0 R 607 0 R 608 0 R 609 0 R 610 0 R 609 0 R 611 0 R 612 0 R 613 0 R] +endobj +192 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 614 0 R 615 0 R 616 0 R +616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 619 0 R 621 0 R 621 0 R 622 0 R 621 0 R 623 0 R 623 0 R 623 0 R 624 0 R 623 0 R 623 0 R +625 0 R 623 0 R 626 0 R 623 0 R 623 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 630 0 R 630 0 R 630 0 R 632 0 R 633 0 R 634 0 R +634 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 640 0 R 640 0 R 640 0 R 642 0 R 643 0 R 644 0 R 644 0 R +644 0 R 645 0 R 646 0 R 647 0 R 647 0 R 647 0 R 647 0 R 647 0 R 648 0 R 649 0 R 650 0 R 650 0 R 650 0 R 651 0 R 650 0 R 650 0 R +652 0 R 653 0 R 654 0 R 654 0 R 655 0 R 656 0 R 657 0 R 657 0 R] +endobj +193 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 658 0 R 659 0 R 659 0 R 659 0 R 660 0 R 659 0 R 659 0 R 659 0 R +661 0 R 659 0 R 659 0 R 659 0 R 659 0 R 662 0 R 659 0 R 659 0 R 659 0 R 659 0 R 659 0 R 663 0 R 659 0 R 659 0 R 659 0 R 659 0 R +659 0 R 664 0 R 659 0 R 659 0 R 659 0 R 659 0 R 659 0 R 665 0 R 665 0 R 665 0 R 665 0 R 665 0 R 665 0 R 665 0 R 665 0 R 666 0 R +667 0 R 667 0 R 667 0 R 667 0 R 667 0 R 667 0 R 668 0 R 669 0 R 670 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R +677 0 R 676 0 R 678 0 R 679 0 R 678 0 R 678 0 R 678 0 R] +endobj +194 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 680 0 R 681 0 R 682 0 R 682 0 R 683 0 R 684 0 R 685 0 R 685 0 R 686 0 R +687 0 R 688 0 R 688 0 R 689 0 R 690 0 R 691 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 697 0 R 698 0 R 699 0 R +700 0 R 701 0 R 702 0 R 702 0 R 702 0 R 702 0 R 702 0 R 702 0 R 703 0 R 703 0 R 703 0 R 704 0 R 703 0 R 703 0 R 705 0 R 703 0 R +703 0 R 703 0 R 703 0 R 706 0 R 707 0 R 708 0 R 709 0 R 709 0 R 710 0 R 711 0 R 712 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R +717 0 R 717 0 R 717 0 R 718 0 R 717 0 R 719 0 R 717 0 R 717 0 R 717 0 R 717 0 R 720 0 R] +endobj +195 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 717 0 R 717 0 R 717 0 R 717 0 R 721 0 R +721 0 R 721 0 R 722 0 R 721 0 R 721 0 R 723 0 R 724 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 729 0 R 729 0 R 729 0 R +729 0 R 730 0 R 729 0 R 729 0 R 731 0 R 732 0 R 733 0 R 734 0 R 734 0 R 734 0 R 734 0 R 734 0 R 734 0 R 734 0 R 735 0 R 734 0 R +734 0 R 736 0 R 737 0 R 738 0 R 739 0 R 739 0 R 739 0 R 739 0 R 739 0 R 739 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R 743 0 R +744 0 R 743 0 R 743 0 R 743 0 R 743 0 R 743 0 R 743 0 R 743 0 R 743 0 R 743 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R +749 0 R 749 0 R 749 0 R 749 0 R 749 0 R] +endobj +196 0 obj +<< +/K << +/Obj 282 0 R +/Pg 22 0 R +/Type /OBJR +>> +/P 751 0 R +/S /Link +>> +endobj +197 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 749 0 R 749 0 R 749 0 R 749 0 R 749 0 R 749 0 R 749 0 R 752 0 R 753 0 R 753 0 R 753 0 R +753 0 R 753 0 R 753 0 R 753 0 R 754 0 R 754 0 R 754 0 R 755 0 R 754 0 R 754 0 R 754 0 R 756 0 R 754 0 R 754 0 R 757 0 R 754 0 R +754 0 R 758 0 R 759 0 R 760 0 R 759 0 R 759 0 R 761 0 R 759 0 R 759 0 R 762 0 R 762 0 R 762 0 R 762 0 R 763 0 R 762 0 R 762 0 R +764 0 R 762 0 R 762 0 R 762 0 R 762 0 R 762 0 R 762 0 R 765 0 R 765 0 R 765 0 R 765 0 R 765 0 R 765 0 R 766 0 R 766 0 R 766 0 R +766 0 R] +endobj +198 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 767 0 R 767 0 R 767 0 R 768 0 R 767 0 R 769 0 R 767 0 R 770 0 R 767 0 R 767 0 R 771 0 R 771 0 R 772 0 R 771 0 R 771 0 R +773 0 R 771 0 R 771 0 R 771 0 R 774 0 R 775 0 R 776 0 R 775 0 R 777 0 R 775 0 R 775 0 R 778 0 R 778 0 R 779 0 R 778 0 R 778 0 R +778 0 R 778 0 R 780 0 R 778 0 R 778 0 R 778 0 R 778 0 R 781 0 R 781 0 R 781 0 R 781 0 R 781 0 R 782 0 R 781 0 R 781 0 R 783 0 R +781 0 R 781 0 R 781 0 R 781 0 R 784 0 R 781 0 R 785 0 R 781 0 R 786 0 R 786 0 R 786 0 R 786 0 R 787 0 R 788 0 R 789 0 R 788 0 R +788 0 R 790 0 R 788 0 R 788 0 R] +endobj +199 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 786 0 R 786 0 R 786 0 R 786 0 R 786 0 R 786 0 R 786 0 R 786 0 R] +endobj +200 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 791 0 R 791 0 R 791 0 R 791 0 R 792 0 R 791 0 R 793 0 R 791 0 R 791 0 R 791 0 R 791 0 R 791 0 R 791 0 R +794 0 R 791 0 R 795 0 R 796 0 R 796 0 R 796 0 R 796 0 R 796 0 R 796 0 R 796 0 R 797 0 R 798 0 R 797 0 R 797 0 R 797 0 R 797 0 R +799 0 R 797 0 R 797 0 R 800 0 R 797 0 R 797 0 R 797 0 R 801 0 R 801 0 R 801 0 R 801 0 R 801 0 R 801 0 R 801 0 R 802 0 R 801 0 R +801 0 R 801 0 R 803 0 R 804 0 R 803 0 R 805 0 R 803 0 R 803 0 R 803 0 R 803 0 R] +endobj +201 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 806 0 R 807 0 R 807 0 R 807 0 R 808 0 R 807 0 R 807 0 R 807 0 R 809 0 R +810 0 R 809 0 R 809 0 R 809 0 R 809 0 R 809 0 R 809 0 R 809 0 R 811 0 R 811 0 R 811 0 R 811 0 R 812 0 R 812 0 R 812 0 R 812 0 R +813 0 R 812 0 R 812 0 R 814 0 R 814 0 R 814 0 R 815 0 R 814 0 R 816 0 R 817 0 R 816 0 R 816 0 R 818 0 R 819 0 R 820 0 R 821 0 R +822 0 R 823 0 R 823 0 R 824 0 R 825 0 R 826 0 R 827 0 R 828 0 R 829 0 R 830 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R +837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R +852 0 R 853 0 R] +endobj +202 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 854 0 R 855 0 R 855 0 R 855 0 R 855 0 R 856 0 R 855 0 R 857 0 R 857 0 R 857 0 R 857 0 R 858 0 R 857 0 R 859 0 R +860 0 R 861 0 R 862 0 R 863 0 R 864 0 R 865 0 R 865 0 R 866 0 R 867 0 R 868 0 R 868 0 R 868 0 R 868 0 R 869 0 R 870 0 R 871 0 R +872 0 R 873 0 R 874 0 R 875 0 R 876 0 R 877 0 R 878 0 R 879 0 R 880 0 R 881 0 R 882 0 R 883 0 R 884 0 R 884 0 R 884 0 R 885 0 R +886 0 R 886 0 R 886 0 R 886 0 R 886 0 R 886 0 R 886 0 R 886 0 R 886 0 R 886 0 R 886 0 R 886 0 R] +endobj +203 0 obj +<< +/K << +/Obj 299 0 R +/Pg 29 0 R +/Type /OBJR +>> +/P 887 0 R +/S /Link +>> +endobj +204 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 888 0 R 889 0 R 888 0 R 888 0 R +888 0 R 888 0 R 888 0 R 888 0 R 888 0 R 890 0 R 888 0 R 888 0 R 888 0 R 888 0 R 888 0 R 888 0 R 891 0 R 891 0 R 891 0 R 892 0 R +891 0 R 891 0 R 893 0 R 894 0 R 894 0 R 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 900 0 R 901 0 R 902 0 R 903 0 R 903 0 R +904 0 R 905 0 R 906 0 R 906 0 R 907 0 R 908 0 R 909 0 R 909 0 R 910 0 R 909 0 R 909 0 R 911 0 R 909 0 R 912 0 R 912 0 R 912 0 R +913 0 R 912 0 R 912 0 R 912 0 R 912 0 R 912 0 R] +endobj +205 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 914 0 R 914 0 R 915 0 R 914 0 R 914 0 R 914 0 R 914 0 R 916 0 R 916 0 R 917 0 R +916 0 R 918 0 R 916 0 R 916 0 R 916 0 R 919 0 R 920 0 R 921 0 R 921 0 R 921 0 R 921 0 R 921 0 R 921 0 R 921 0 R 921 0 R 921 0 R +922 0 R 922 0 R 923 0 R 924 0 R 925 0 R 925 0 R 926 0 R 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 932 0 R 933 0 R 934 0 R 935 0 R +936 0 R 937 0 R 938 0 R 939 0 R 940 0 R 941 0 R 941 0 R 941 0 R 942 0 R 943 0 R 944 0 R 945 0 R 946 0 R 947 0 R 948 0 R 949 0 R +950 0 R 951 0 R 952 0 R 953 0 R] +endobj +206 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 954 0 R 955 0 R 956 0 R 955 0 R 955 0 R 955 0 R 957 0 R 955 0 R 955 0 R 955 0 R 955 0 R 955 0 R +958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 961 0 R 963 0 R 964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 968 0 R 969 0 R 968 0 R 970 0 R +971 0 R 972 0 R 972 0 R 973 0 R 972 0 R 974 0 R 972 0 R 975 0 R 972 0 R 976 0 R 977 0 R 978 0 R 979 0 R 978 0 R 980 0 R 981 0 R +982 0 R 982 0 R 982 0 R 983 0 R 984 0 R 985 0 R 985 0 R 985 0 R 986 0 R 987 0 R 988 0 R 989 0 R 988 0 R 988 0 R 988 0 R 990 0 R +991 0 R 992 0 R 993 0 R 992 0 R 992 0 R 992 0 R 994 0 R 995 0 R 994 0 R 994 0 R 996 0 R 997 0 R 998 0 R 998 0 R 999 0 R 998 0 R +1000 0 R 998 0 R 998 0 R 1001 0 R 1002 0 R 1003 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1009 0 R 1010 0 R +1009 0 R 1009 0 R 1009 0 R 1009 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1013 0 R 1013 0 R 1013 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R +1020 0 R 1021 0 R 1022 0 R 1023 0 R 1023 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1026 0 R 1028 0 R 1026 0 R 1029 0 R 1030 0 R 1031 0 R +1032 0 R 1031 0 R 1031 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1035 0 R 1035 0 R 1035 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1039 0 R 1041 0 R +1041 0 R] +endobj +207 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 1042 0 R 1043 0 R 1043 0 R 1043 0 R 1043 0 R 1043 0 R 1043 0 R 1043 0 R 1043 0 R 1044 0 R 1044 0 R 1045 0 R 1044 0 R 1044 0 R 1044 0 R +1046 0 R 1044 0 R 1047 0 R 1047 0 R 1047 0 R 1047 0 R 1047 0 R 1047 0 R 1047 0 R 1047 0 R 1047 0 R 1047 0 R 1048 0 R 1048 0 R 1048 0 R 1049 0 R +1048 0 R 1050 0 R 1048 0 R 1051 0 R 1052 0 R 1051 0 R 1051 0 R 1051 0 R 1051 0 R 1051 0 R 1053 0 R 1053 0 R 1053 0 R 1053 0 R 1054 0 R 1053 0 R +1053 0 R] +endobj +208 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1058 0 R 1058 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1061 0 R 1061 0 R 1061 0 R 1061 0 R 1062 0 R +1063 0 R 1064 0 R 1064 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1067 0 R 1067 0 R 1068 0 R 1067 0 R 1069 0 R 1067 0 R 1067 0 R 1067 0 R 1067 0 R +1070 0 R 1070 0 R 1071 0 R 1070 0 R 1070 0 R 1070 0 R 1070 0 R 1070 0 R 1070 0 R 1072 0 R 1073 0 R 1074 0 R 1073 0 R 1073 0 R 1075 0 R 1073 0 R +1076 0 R 1076 0 R 1076 0 R 1076 0 R 1077 0 R 1076 0 R 1076 0 R 1076 0 R 1076 0 R 1076 0 R 1076 0 R] +endobj +209 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 1078 0 R 1079 0 R 1079 0 R 1079 0 R 1079 0 R +1079 0 R 1079 0 R 1080 0 R 1081 0 R 1082 0 R 1083 0 R 1083 0 R 1083 0 R 1083 0 R 1083 0 R 1083 0 R 1084 0 R 1085 0 R 1086 0 R 1086 0 R 1086 0 R +1087 0 R 1088 0 R 1089 0 R 1089 0 R 1090 0 R 1091 0 R 1092 0 R 1093 0 R 1094 0 R 1095 0 R 1095 0 R 1095 0 R 1095 0 R 1095 0 R 1096 0 R 1097 0 R +1098 0 R 1098 0 R 1098 0 R 1099 0 R 1100 0 R 1101 0 R 1101 0 R 1101 0 R 1102 0 R 1103 0 R 1104 0 R 1105 0 R 1104 0 R 1104 0 R 1106 0 R 1107 0 R +1108 0 R 1108 0 R 1108 0 R 1108 0 R 1109 0 R 1110 0 R 1111 0 R 1112 0 R 1111 0 R 1113 0 R 1114 0 R 1115 0 R 1115 0 R 1115 0 R 1115 0 R] +endobj +210 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 1116 0 R +1117 0 R 1117 0 R 1117 0 R 1117 0 R 1117 0 R 1117 0 R 1117 0 R 1117 0 R 1117 0 R 1117 0 R 1118 0 R 1118 0 R 1119 0 R 1118 0 R 1118 0 R 1120 0 R +1120 0 R 1121 0 R 1120 0 R 1120 0 R 1120 0 R 1122 0 R 1120 0 R 1120 0 R 1120 0 R 1123 0 R 1123 0 R 1123 0 R 1123 0 R 1123 0 R 1123 0 R 1124 0 R +1125 0 R 1125 0 R 1126 0 R 1125 0 R 1125 0 R 1125 0 R 1127 0 R 1125 0 R 1128 0 R 1125 0 R 1125 0 R 1129 0 R 1130 0 R 1129 0 R 1129 0 R 1129 0 R +1129 0 R 1129 0 R] +endobj +211 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 1129 0 R 1131 0 R 1129 0 R 1129 0 R 1132 0 R 1129 0 R 1133 0 R 1134 0 R 1134 0 R 1134 0 R 1134 0 R 1134 0 R 1135 0 R 1134 0 R +1136 0 R 1134 0 R 1137 0 R 1134 0 R 1134 0 R 1138 0 R 1139 0 R 1140 0 R 1139 0 R 1139 0 R 1141 0 R 1139 0 R 1139 0 R 1139 0 R 1139 0 R 1142 0 R +1139 0 R 1139 0 R 1139 0 R 1143 0 R 1139 0 R 1144 0 R 1145 0 R 1144 0 R 1146 0 R 1144 0 R 1147 0 R 1144 0 R 1144 0 R 1144 0 R 1148 0 R 1144 0 R +1144 0 R 1149 0 R 1144 0 R 1144 0 R 1150 0 R 1150 0 R 1151 0 R 1150 0 R 1150 0 R 1150 0 R 1150 0 R 1150 0 R] +endobj +212 0 obj +<< +/K << +/Obj 300 0 R +/Pg 37 0 R +/Type /OBJR +>> +/P 1152 0 R +/S /Link +>> +endobj +213 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 1153 0 R 1153 0 R 1154 0 R 1155 0 R +1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1160 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R 1166 0 R 1167 0 R 1168 0 R 1169 0 R 1170 0 R +1170 0 R 1171 0 R 1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R +1186 0 R 1186 0 R 1150 0 R 1150 0 R 1150 0 R 1150 0 R 1150 0 R 1150 0 R 1187 0 R 1150 0 R 1150 0 R 1188 0 R 1189 0 R 1188 0 R 1188 0 R 1188 0 R +1190 0 R 1191 0 R 1191 0 R 1191 0 R 1192 0 R 1191 0 R 1191 0 R 1193 0 R 1191 0 R 1191 0 R 1191 0 R 1191 0 R] +endobj +214 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 1191 0 R 1194 0 R 1191 0 R 1191 0 R +1195 0 R 1195 0 R 1196 0 R 1195 0 R 1195 0 R 1195 0 R 1197 0 R 1195 0 R 1198 0 R 1199 0 R 1198 0 R 1200 0 R 1198 0 R 1201 0 R 1202 0 R 1202 0 R +1203 0 R 1202 0 R 1204 0 R 1202 0 R 1205 0 R 1202 0 R 1202 0 R 1202 0 R 1202 0 R 1202 0 R 1202 0 R 1206 0 R 1206 0 R 1206 0 R 1207 0 R 1206 0 R +1208 0 R 1208 0 R 1208 0 R 1208 0 R 1208 0 R 1208 0 R 1208 0 R 1209 0 R 1208 0 R 1208 0 R 1208 0 R 1210 0 R 1210 0 R 1210 0 R 1210 0 R 1210 0 R +1211 0 R 1211 0 R 1211 0 R 1211 0 R 1211 0 R] +endobj +215 0 obj +<< +/K << +/Obj 301 0 R +/Pg 39 0 R +/Type /OBJR +>> +/P 1212 0 R +/S /Link +>> +endobj +216 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 1213 0 R 1214 0 R 1214 0 R 1214 0 R 1214 0 R 1214 0 R 1215 0 R 1214 0 R 1216 0 R 1214 0 R 1214 0 R +1217 0 R 1214 0 R 1218 0 R 1219 0 R 1218 0 R 1218 0 R 1220 0 R 1218 0 R 1218 0 R 1221 0 R 1218 0 R 1222 0 R 1222 0 R 1222 0 R 1222 0 R 1222 0 R +1222 0 R 1223 0 R 1224 0 R 1224 0 R 1225 0 R 1224 0 R 1224 0 R 1226 0 R 1224 0 R 1227 0 R 1224 0 R 1228 0 R 1224 0 R 1224 0 R 1229 0 R 1224 0 R +1224 0 R 1230 0 R 1224 0 R 1231 0 R 1224 0 R 1232 0 R 1233 0 R 1232 0 R 1234 0 R 1232 0 R 1232 0 R 1235 0 R 1235 0 R] +endobj +217 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 1236 0 R 1237 0 R 1237 0 R +1237 0 R 1238 0 R 1237 0 R 1239 0 R 1240 0 R 1241 0 R 1240 0 R 1240 0 R 1240 0 R 1240 0 R 1242 0 R 1240 0 R 1240 0 R 1240 0 R 1240 0 R 1243 0 R +1243 0 R 1244 0 R 1243 0 R 1243 0 R 1243 0 R 1243 0 R 1245 0 R 1245 0 R 1245 0 R 1245 0 R 1245 0 R 1246 0 R 1245 0 R 1245 0 R 1247 0 R 1245 0 R +1245 0 R 1248 0 R 1249 0 R 1249 0 R 1250 0 R 1249 0 R 1249 0 R 1249 0 R 1249 0 R 1249 0 R 1251 0 R 1251 0 R 1251 0 R 1252 0 R 1251 0 R 1251 0 R] +endobj +218 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +1251 0 R 1251 0 R 1253 0 R 1251 0 R 1251 0 R 1251 0 R 1254 0 R 1255 0 R 1255 0 R 1255 0 R 1256 0 R 1255 0 R 1255 0 R 1255 0 R 1255 0 R 1257 0 R +1257 0 R 1257 0 R 1258 0 R 1257 0 R 1259 0 R 1257 0 R 1257 0 R 1257 0 R 1257 0 R 1260 0 R 1257 0 R 1257 0 R 1261 0 R 1261 0 R 1262 0 R 1261 0 R +1261 0 R 1263 0 R 1264 0 R 1264 0 R 1264 0 R 1264 0 R 1264 0 R 1265 0 R 1265 0 R 1265 0 R 1265 0 R 1265 0 R 1265 0 R 1266 0 R 1265 0 R 1265 0 R +1265 0 R 1265 0 R 1267 0 R 1267 0 R] +endobj +219 0 obj +<< +/K << +/Obj 302 0 R +/Pg 42 0 R +/Type /OBJR +>> +/P 1268 0 R +/S /Link +>> +endobj +220 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 1267 0 R 1269 0 R 1267 0 R 1267 0 R 1267 0 R 1267 0 R 1267 0 R 1267 0 R 1270 0 R 1270 0 R 1271 0 R 1270 0 R +1270 0 R 1272 0 R 1273 0 R 1273 0 R 1273 0 R 1274 0 R 1273 0 R 1275 0 R 1273 0 R 1273 0 R 1273 0 R 1273 0 R 1273 0 R 1276 0 R 1273 0 R 1277 0 R +1278 0 R 1277 0 R 1277 0 R 1277 0 R 1277 0 R 1277 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R +1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R] +endobj +221 0 obj +<< +/K << +/Obj 303 0 R +/Pg 43 0 R +/Type /OBJR +>> +/P 1294 0 R +/S /Link +>> +endobj +222 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 1295 0 R 1296 0 R 1296 0 R 1296 0 R 1297 0 R 1296 0 R +1296 0 R 1298 0 R 1299 0 R 1298 0 R 1298 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1304 0 R 1304 0 R 1304 0 R 1305 0 R 1306 0 R 1307 0 R +1308 0 R 1309 0 R 1309 0 R 1309 0 R 1309 0 R 1310 0 R 1311 0 R 1312 0 R 1313 0 R 1314 0 R 1314 0 R 1314 0 R 1314 0 R 1315 0 R 1316 0 R 1317 0 R +1318 0 R 1319 0 R 1320 0 R 1319 0 R 1321 0 R 1319 0 R 1319 0 R 1319 0 R 1319 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1326 0 R 1326 0 R +1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1336 0 R 1336 0 R 1337 0 R 1336 0 R +1338 0 R 1336 0 R 1336 0 R 1339 0 R 1339 0 R 1339 0 R 1339 0 R 1339 0 R 1339 0 R 1340 0 R 1339 0 R 1339 0 R 1341 0 R 1339 0 R 1339 0 R 1342 0 R +1342 0 R 1342 0 R 1342 0 R 1342 0 R 1342 0 R 1342 0 R 1342 0 R] +endobj +223 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 1343 0 R 1344 0 R 1344 0 R 1344 0 R 1345 0 R 1346 0 R 1347 0 R 1348 0 R 1347 0 R 1349 0 R 1350 0 R +1351 0 R 1351 0 R 1352 0 R 1353 0 R 1354 0 R 1354 0 R 1354 0 R 1355 0 R 1356 0 R 1357 0 R 1358 0 R 1357 0 R 1357 0 R 1359 0 R 1360 0 R 1361 0 R +1361 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R 1367 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R +1373 0 R 1374 0 R 1373 0 R 1375 0 R 1376 0 R 1377 0 R 1377 0 R 1378 0 R 1379 0 R 1380 0 R 1381 0 R 1380 0 R 1382 0 R 1380 0 R 1383 0 R 1380 0 R +1384 0 R 1385 0 R 1386 0 R 1386 0 R] +endobj +224 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 1387 0 R 1388 0 R 1388 0 R 1388 0 R 1389 0 R 1389 0 R 1389 0 R 1389 0 R 1390 0 R 1391 0 R 1392 0 R 1391 0 R +1391 0 R 1391 0 R 1391 0 R 1391 0 R 1391 0 R 1391 0 R 1393 0 R 1391 0 R 1394 0 R 1395 0 R 1394 0 R 1396 0 R 1394 0 R 1394 0 R 1394 0 R 1394 0 R +1397 0 R 1394 0 R 1398 0 R 1399 0 R 1399 0 R 1399 0 R 1399 0 R 1399 0 R 1400 0 R 1401 0 R 1402 0 R 1403 0 R 1403 0 R 1403 0 R 1403 0 R 1404 0 R +1405 0 R 1406 0 R 1406 0 R 1406 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1409 0 R 1409 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1412 0 R 1412 0 R +1413 0 R 1414 0 R 1415 0 R 1415 0 R 1415 0 R] +endobj +225 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 1416 0 R 1417 0 R 1417 0 R 1417 0 R 1417 0 R 1417 0 R 1417 0 R 1418 0 R 1418 0 R 1419 0 R 1418 0 R +1418 0 R 1418 0 R 1418 0 R 1418 0 R 1420 0 R 1418 0 R 1421 0 R 1422 0 R 1421 0 R 1423 0 R 1421 0 R 1424 0 R 1425 0 R 1426 0 R 1427 0 R 1428 0 R +1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1433 0 R 1434 0 R 1435 0 R 1436 0 R 1437 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R 1442 0 R 1443 0 R +1444 0 R 1445 0 R 1446 0 R 1447 0 R 1448 0 R] +endobj +226 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 1449 0 R 1450 0 R 333 0 R] +endobj +227 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 1451 0 R 1452 0 R 1453 0 R 1453 0 R 1453 0 R 1453 0 R 1454 0 R 1455 0 R +1456 0 R 1457 0 R 1458 0 R 1459 0 R 1458 0 R 1460 0 R 1460 0 R 1460 0 R 1460 0 R 1461 0 R 1462 0 R 1463 0 R 1462 0 R 1462 0 R 1462 0 R 1462 0 R +1462 0 R 1464 0 R 1465 0 R 1464 0 R 1464 0 R 1466 0 R 1466 0 R 1466 0 R 1466 0 R 1467 0 R 1467 0 R 1467 0 R 1468 0 R 1468 0 R 1469 0 R 1468 0 R +1468 0 R 1468 0 R 1470 0 R 1471 0 R 1470 0 R 1472 0 R 1472 0 R 1472 0 R 1473 0 R 1474 0 R 1473 0 R 1473 0 R 1473 0 R 1473 0 R 1473 0 R 1475 0 R +1475 0 R 1475 0 R 1475 0 R 1475 0 R 1476 0 R 1477 0 R 1477 0 R 1477 0 R 1478 0 R 1477 0 R 1479 0 R 1479 0 R 1480 0 R 1479 0 R 1479 0 R 1481 0 R +1481 0 R 1482 0 R 1483 0 R 1484 0 R 1485 0 R 1486 0 R 1487 0 R 1488 0 R 1489 0 R 1490 0 R 1491 0 R 1492 0 R 1493 0 R 1494 0 R 1495 0 R 1496 0 R +1497 0 R 1498 0 R 1499 0 R 1500 0 R 1501 0 R 1502 0 R 1503 0 R 1504 0 R 1505 0 R 1506 0 R 1506 0 R 1507 0 R 1506 0 R 1506 0 R 1506 0 R] +endobj +228 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 1508 0 R +1508 0 R 1509 0 R 1508 0 R 1508 0 R 1508 0 R 1510 0 R 1511 0 R 1511 0 R 1511 0 R 1512 0 R 1513 0 R 1514 0 R 1515 0 R 1516 0 R 1517 0 R 1518 0 R +1519 0 R 1520 0 R 1521 0 R 1522 0 R 1523 0 R 1524 0 R 1525 0 R 1526 0 R 1527 0 R 1528 0 R 1529 0 R 1530 0 R 1531 0 R 1532 0 R 1533 0 R 1534 0 R +1535 0 R 1536 0 R 1537 0 R 1538 0 R 1539 0 R 1540 0 R 1541 0 R 1542 0 R 1543 0 R 1544 0 R 1545 0 R 1545 0 R 1545 0 R 1545 0 R 1546 0 R 1547 0 R +1548 0 R 1548 0 R 1549 0 R 1550 0 R 1551 0 R 1551 0 R 1551 0 R 1551 0 R 1552 0 R 1552 0 R 1552 0 R 1552 0 R 1552 0 R] +endobj +229 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null] +endobj +230 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1553 0 R +/FontName /XEFNHE+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +231 0 obj +<< +/Filter /FlateDecode +/Length 452 +>> +stream +H‰\“Aoê0„ïù>–CHÖë"EHZ‰CÛ§òÞ‰¡‘Š™pàßד©ú¤F‚|Q¼³3Î:ß춻Ð&ÿûfïGsìBý¥¿ÆÆ›ƒ?u![¦íšñûiúoÎõå©x»Œþ¼ Ç>«*“¿§——1ÞÌݺí~–åo±õ± 's÷o³Ÿ™|†Oöa4s³Z™Ö“ÐK=¼Ögoò©ì~צ÷Ýx»O5ÿWü½ ÞÓó‚fš¾õ—¡n|¬ÃÉgÕ<]+S=§k•ùÐþz/K–ŽÍG³ªÀâù<ÝoÉ[ðù)qÉ5%Ö” ò\ pI.ÁB°%[°’ìÈü@~/ÉËÄÂ^‚^B}¾P_ /Ôè 5šB™t˜EEžÉis*Ë\¹,³Xd±ìeÑ˲—E/Kÿþ•ÞÞ”µŠZe­¢VY«¨UúTøTêè¤CÏ +ÏÊ}PìƒÒ¿Â¿®Ékð#ù¼!oÀüvŠo§Ì«È«Ì«Èë˜×!¯£gÏŽž<;zvðìèÙÁ³£gÏŽž<;úL7 Û÷TaìÒé0?3Ý\cLã<¡iŽ1Á]ð?§l蓪ð˾;cßÌ +endstream +endobj +232 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1554 0 R +/FontName /EZUYBQ+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +233 0 obj +<< +/Filter /FlateDecode +/Length 458 +>> +stream +H‰\“Ánâ@DïþŠ9&‡È`zz‚d!H$›DËî{`--¶5˜¿].”HkÉÌÆÝUÝnç›Ýv×µ£Ë?S_ïãèŽmפx鯩ŽîOm—Í ×´õxßM¿õ¹²Ü‚÷·ËÏ»îØgeéòŸvxÓÍ=¬›þ³ü#51µÝÉ=üÞì]¾¿ÃßxŽÝèfnµrM> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +236 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/one/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1556 0 R +/FontName /IXUBFI+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +237 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PËnÄ ¼ó>îV$éö†ªm+åЇšö8)RˆCþ¾V[©–ÀcÙ3 æ—þ±w6^˜`²ÎD\ý5ˆ³u¬íÀX®U¹õ¢ãDö5áÒ»É3!€PsMq‡Ãƒñ#‹£u3¾.Ãø°…ðƒ º H 'zQáU-¼ÐN½¡¾Mû‰8Ÿ{@èJÝV3Ú\ƒÒ•›‘‰†B‚x¦ ù׿¯¬qÒß*2Ñ=ÑlÓPbâ®)˜á¶â6ãsÅg™Õ»:E)«_uò;´¸}Bo1’ÿ²³b<[¶ok >±òa¿ 1LxÖ +endstream +endobj +238 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/D/a/e/i/m/n/r/s/space/t) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1557 0 R +/FontName /DFJXNS+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +239 0 obj +<< +/Filter /FlateDecode +/Length 275 +>> +stream +H‰\‘ÏjÃ0 Æï~ +ÛCq’¶M9ìËöŽ­d†Å1Ž{ÈÛO¶KØßOÈŸ‘l~n›ÖšüÝϪñÚã2_½Bèq4–•h£Â-K»š¤cœÌݺœZ;ÌLàT\‚_aó¤ç·Œ¿yÞØ6_çn ¼»:÷ƒÚÔ5hè¢é^å„À“m×jª›°îÈówâsuUÊËÜŒš5.N*ôÒŽÈDAQƒx¦¨Zý¯^ÙÖê[z&ªx¸(H˜8“0ñP&&!>f>F>e>En27‘/™/ÄUbâ}æ}ä|?IlìÖAl‘^îó««÷4zzî4sœÖX¼ÿˆ›+.ö+À³ „† +endstream +endobj +240 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/L/O/P/R/S/a/b/comma/d/e/four/g/i/l/m/n/o/p/r/s/space/t/u/v/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1558 0 R +/FontName /NMLKXY+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +241 0 obj +<< +/Filter /FlateDecode +/Length 353 +>> +stream +H‰\’ÍŠƒ0€ïyŠÛC±µšP¡Ø<ìëîØdì +k Ñ|ûÉ”.l@ó…Ìd>2IªúT»~–É{M³ìzgLã=W¸õNìRi{3?Vño†Ö‹“›eša¨]7Š¢ÉnNsXäêhÇ+¬Eò,„ÞÝäê«jÖ2iîÞÿÀn–[Y–ÒB‡½´þµ@&1mS[Üïçeƒ9Ÿ‹™ÆõŽeÌhaò­Ðºˆb‹£”ÅG)ÀÙû©æ´kg¾Û Š”‚·[œ+æ +yŸEÆIsùÀ| æøŒâ³ 3-r>3§3ó”9%Þ3ï‘Õ.2NÈ£(Fq-EµTÎœkfMÌŠ;(rP'æñ™ùLÌnŠÜ4»irÓ\WS]ÍnšÜ4;hrÐì ÉA+fE|d>ÆK~Ü&]7¾ +ù쥹‡€mŒO'ö:×;x¾.?z‰Yô‰_ï—¬  +endstream +endobj +242 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space/three) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1559 0 R +/FontName /PPKWZU+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +243 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PÁjÃ0 ½ë+tlÅi²ËÀFG!‡ncÙ>À±•Ô°ØÆqùûÉné`YOïñ,qê^;gŠèuO GëL¤Å¯Q4YÇÕé>•WÏ*€`r¿-‰æΤDñÉà’↻ãÚƒx†¢uî¾OýE¿†ðC3¹„¶-Yè¢Â›š E¡:øMÛ9_[ ¬Ë|¼™ÑÞД¦¨ÜD +Ž噣ræÞÜXè¯*‚¬ónUqÙ4¥çòé¹ô\²Æ};«ñ§ñaU¯1²Ër™b/³ŽÇ > ³r¯_sÔ +endstream +endobj +244 0 obj +<< +/BaseFont /MJJYJA+Wingdings-Regular +/DescendantFonts 1560 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1561 0 R +/Type /Font +>> +endobj +245 0 obj +<< +/BaseFont /NMLKXY+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 240 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 1562 0 R +/Type /Font +/Widths [305] +>> +endobj +246 0 obj +<< +/BaseFont /ONBVLW+Wingdings-Regular +/DescendantFonts 1563 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1564 0 R +/Type /Font +>> +endobj +247 0 obj +<< +/BaseFont /NMLKXY+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 240 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1565 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +248 0 obj +<< +/BaseFont /PPKWZU+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 242 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1566 0 R +/Type /Font +/Widths [202] +>> +endobj +249 0 obj +<< +/BaseFont /DFJXNS+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 238 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1567 0 R +/Type /Font +/Widths [212] +>> +endobj +250 0 obj +<< +/BaseFont /ZZLZJA+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1568 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 1569 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 516 0 0 0 0 0 0 0 0 572 0 +0 0 0 0 0 569] +>> +endobj +251 0 obj +<< +/A 1570 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [388.29 328.186 391.497 319.099] +/StructParent 1 +/Subtype /Link +/Type /Annot +>> +endobj +252 0 obj +<< +/A 1571 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [292.065 313.986 295.271 304.899] +/StructParent 2 +/Subtype /Link +/Type /Annot +>> +endobj +253 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1572 0 R +/FontName /HPSCSJ+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +254 0 obj +<< +/Filter /FlateDecode +/Length 558 +>> +stream +H‰\ÔÍŠ£@à½OQËîEcbݺ· ¤“nÈb~˜Ì<€ÑJF˜¨{‘·Ÿ:ž¦&䈖÷ó€•ïûCßÍ.ÿ> Í1ÎîÜõíoÃûÔDwŠ—®ÏÖ…k»fþ8Z~›k=fyZ|¼ßæx=ôç!«*—ÿH'oótwÛv8ÅÇ,ÿ6µqêú‹{øµ;>ºüø>Žâ5ö³[¹ÍƵñœnô¥¿Ö×èòeÙÓ¡Mç»ùþ”Öü»âç}Œ®XŽ×Ä4CocÝÄ©î/1«Vé³qÕ[úl²Ø·ÿ7å²Ó¹ù]OYUàâÕ*ý¥üÌüŒ\2—È;æòžyüÊüŠüÆœ†Vž÷ô¸§_3¯‘ æÙ3{daäÀ•Y‘Ùéôpz:=œ~˼E~a~A¦ÍÃ&ô} +ûô)ìSЧÐ,0öÐg ?Àèðúüþ ?Àèðúüæs 3À©œ¥˜¥œ¥˜¥œ¥˜¥œ¥˜¥œ¥˜¥œ¥˜¥œ¥˜¥ìJÑ•r®b®²+EWJƒ.v¥èJÙ•¢+eWŠ®”])º2veèÊè7ø~ƒßè7ø~ƒßè7ø~ƒßè7ø~ƒßè7ø~ƒ¿ÄÜbµÆ5eÁŒkJÏŒg)…ÏR*³_^Ø7¯nÚaÜç¾Ð¼OSÚ–mhÙ ° t}üÜ©Æati¾Ù_ìµÀ +endstream +endobj +255 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/L/O/P/R/S/a/b/comma/d/e/eight/five/four/g/i/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/u/v/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1573 0 R +/FontName /FKMSFN+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +256 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +257 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/one/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1574 0 R +/FontName /ULBHSJ+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +258 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PËnÄ ¼ó>îV$éö†ªm+åЇšö8)RˆCþ¾V[©–ÀcÙ3 æ—þ±w6^˜`²ÎD\ý5ˆ³u¬íÀX®U¹õ¢ãDö5áÒ»É3!€PsMq‡Ãƒñ#‹£u3¾.Ãø°…ðƒ º H 'zQáU-¼ÐN½¡¾Mû‰8Ÿ{@èJÝV3Ú\ƒÒ•›‘‰†B‚x¦ ù׿¯¬qÒß*2Ñ=ÑlÓPbâ®)˜á¶â6ãsÅg™Õ»:E)«_uò;´¸}Bo1’ÿ²³b<[¶ok >±òa¿ 1LxÖ +endstream +endobj +259 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/D/I/M/O/S/T/U/W/a/b/c/d/e/eight/f/five/four/g/h/hyphen/i/k/l/m/n/o/one/p/period/question/r/s/seven/six/space/t/three/two/u/v/w/x/y/z) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1575 0 R +/FontName /PSCQPT+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +260 0 obj +<< +/Filter /FlateDecode +/Length 431 +>> +stream +H‰\“Ýn›@…ïyŠ½L."l¼;“HÈ’c'’/ú£º} c©^Ð_øí»‡¥R‘l>´;Ãw`(·ûÝ>ö“+¿§¡=ØäN}ì’]‡[jÍíÜÇbY¹®o§«ù¿½4cQæâÃý:ÙeOCQ×®ü‘¯Sº»‡M7í±(¿¥ÎRÏîá×öðèÊÃmÿØÅâän½vr£/Íøµ¹˜+粧}—×ûéþ”kþíøyÍUóõ’2íÐÙulZKM<[Q/ò±võ{>Ö…Åî¿uïYv<µ¿›TÔ6/ù”yGÞßÈo™WË™ó)sE®À+ò +ìÉÈ,d+YÁÏägð;9 מ}<úøò ˜nnžû=ö:8ÖÔ:8Þ7à¾Â,‚,Â,‚,Â>‚>Â>‚>Â>‚>Â,‚,ž2÷dA¡³ÀY^ɯà-y fAás> +endobj +262 0 obj +<< +/BaseFont /FKMSFN+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 255 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1578 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 573 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 528 0 0 730 +602 0 0 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 0 610 539 0 596 0 292 0 0 292 871 599 589 +610 0 403 451 383 598 551] +>> +endobj +263 0 obj +<< +/BaseFont /RVGCRP+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 278 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1579 0 R +/Type /Font +/Widths [202] +>> +endobj +264 0 obj +<< +/BaseFont /PSCQPT+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 259 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1580 0 R +/Type /Font +/Widths [212] +>> +endobj +265 0 obj +<< +/BaseFont /OTSKBV+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 68 +/FontDescriptor 1581 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 1582 0 R +/Type /Font +/Widths [683 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 508 0 0 +0 516 0 0 0 256 0 0 0 848 572 0 0 0 356 417 +351] +>> +endobj +266 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1583 0 R +/FontName /GTBWEL+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +267 0 obj +<< +/Filter /FlateDecode +/Length 422 +>> +stream +H‰\“ÁNë0E÷þ +/aÒ¦É •¢JЂÔðDßû€4qK$êDnºèß37ñ$"5>‘sí3Î4[o7ÛØ>û“úfFèb›Â¹¿¤&ø}8vÑÍsßvÍøý4Ý›S=¸Ì»ëy §m<ô®ª|ön“ç1]ýÍCÛïíËÞRRþæßzwë³Ýe>Ã)ÄÑÏüjåÛp°…^êáµ>ŸM±»mkóÝx½³Ìÿ7þ^‡àóéyN™¦oÃy¨›êx ®šÙµòÕ³]+bûk¾ÈÛš:¹*Ç˳™ Æ÷ä{ð’¼oÈãÅÃÄ6¸ª˜OlƒqA.À%¹ YÀkòÌ5 ¬Y<‘ŸÀÏd“¯Jº•p+sr^`î[bß’û–ØWè&pfYaVfYaV¦,΢dó|ç#<ÁùÈ#ùÌ5 +kÔ(¬QP£°FAÊ5*=žJO…§ÒSá©ôTx*=žJO…§ÒSá©ôTx*¿ hŒï@‹X'ûŸþk.)YëMí>õº­‹áç1ôƒ·~îK€_¹Ïó +endstream +endobj +268 0 obj +<< +/BaseFont /CAGRPT+Wingdings-Regular +/DescendantFonts 1584 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1585 0 R +/Type /Font +>> +endobj +269 0 obj +<< +/BaseFont /FKMSFN+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 255 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1586 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 573 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +270 0 obj +<< +/BaseFont /RVGCRP+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 278 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1587 0 R +/Type /Font +/Widths [202] +>> +endobj +271 0 obj +<< +/BaseFont /PSCQPT+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 259 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1588 0 R +/Type /Font +/Widths [212] +>> +endobj +272 0 obj +<< +/BaseFont /OTSKBV+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1581 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 1589 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 516 0 0 0 0 0 0 0 0 572 0 +0 0 0 0 0 569] +>> +endobj +273 0 obj +<< +/A 1590 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [463.303 647.43 466.509 638.343] +/StructParent 7 +/Subtype /Link +/Type /Annot +>> +endobj +274 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [28 /f_f_i /f_i /f_l /f_f] +/Type /Encoding +>> +endobj +275 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_f_i/f_i/f_l/f_f/space/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/eight/colon/semicolon/A/B/C/D/E/F/G/H/I/L/M/N/O/P/Q/R/S/T/U/V/W/Y/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/quoteright/endash) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1591 0 R +/FontName /PRPTAT+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +276 0 obj +<< +/Filter /FlateDecode +/Length 558 +>> +stream +H‰\”Ýn›@„ïyŠ½L." œ='–%Çi$_ôGuúÖ.R ã ¿}w”Tµ„™væÓ°KºÛ¿î»vr鱯ar§¶kÆpíocÜ1œÛ.Ér×´õ´ŒæÿúR I'î×)\öÝ©OÊÒ¥?ãÍë4ÞÝöéá1I¿MÛîì~í.=܆áO¸„nr+·Ù¸&œ¢Ñ×jøV]‚KçiOû&Þo§ûSœóùÄû}.ŸÇaê¾ ×¡ªÃXu甫øÛ¸ò-þ6IèšÿîÛ2íxªWcRf»øðj¥ºëM¼öúymùï0~ûgNç«yOQ?S?C¯©á‘3'Çüœþñ5½ã)júÆSRô,àYdÔtNCÔ´P ´§öÐJ ΂lØŠ-õú…ú%ja– K˜%Èf ²„Y‚,a– K˜%È£6hæ +r…:v"èD؉ a'‚N„:ñìÄ£ONNONNONNONNONNONNONNO66¥¿Â_é¯ðWú+ü•þ +¥¿Â_uYÐôWø+{Pô Ìš×—ò](Þ…ò](Þ….kýè²&Ñ.ëýè²ѱC?F~¿‘ßÀoä7ðù üF~¿‘ßÀoä7ðù üF~¿‘ßÀ¿FV¾Êp}­Ôż—‡-¿îc¿×·qŒ[}þ¼Ì{»»íÂÇhègáHþ +0Ç™Ý +endstream +endobj +277 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [27 /f_f_i /parenright.cap /parenleft.cap /f_l /hyphen.cap] +/Type /Encoding +>> +endobj +278 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/a/b/c/colon/comma/d/e/eight/f/f_f_i/f_l/five/four/g/h/hyphen/hyphen.cap/i/j/k/l/m/n/o/one/p/parenleft/parenleft.cap/parenright/parenright.cap/period/r/s/seven/six/slash/space/t/three/two/u/v/w/x/y) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1592 0 R +/FontName /RVGCRP+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +279 0 obj +<< +/Filter /FlateDecode +/Length 543 +>> +stream +H‰\”ÍŽ¢@…÷ŽîØ´õ/Ýu¨¢;ÄSÓ&‹ÜÕM5ÎWÓwu.û$µÁûÛeŒç]{ì’¢péO»y‡›{Z×Ý!>'é÷¡ŽCÓžÜÓïÍþÙ¥ûkßÿ‰çØŽ.s«•«ãÑ&úZößÊsté4ìeWÛýf¼½Ø˜Ç¿n}tùt½ LÕÕñÒ—UÊö“"³ÏÊöY%±­ÿ»¯ov8VŸå‹w{8ËTçãme¿m¦ßò)o™_‘¿<žÝàúƒ÷¶–óŒ9C~}Œ±Iîsåó¼›oÿËyídyžÓä‹åbÊv²œ3çÈKæ%²0 ²göÈʬÈ9 Óm ·åšymYÈ°„,KÈ°„,KÈ°„,KÈ°„,K؃ açv²ÌN;t"ìDЉ°A'ž={ôìéìáìéìáìéìáìéìáìéìáìéìáìéìáìéìáìéìá¬d)XJ–‚¥d)XJ–‚¥d)XªóºA&KÁR²,%kZÊÿEñ¿è¼>Ñ•²«ií)»Rt¥óºDWÊ®]vÐU s€s s€s s€s s€s s€s s€s s€s ³°Ñæ…-gowßÏÕul+O¯ic÷6m¼¿aú®w6 +GòW€ãG± +endstream +endobj +280 0 obj +[1593 0 R] +endobj +281 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\PÁjÃ0 ½û+tlÅm¶ÃÁPZ +9¬ËöŽ­¤†Æ6ŠsÈßOvKØâñÞO’‡æØx—@~R0-&è·„S˜É t88/vXgҕߌ: +Éæv™Žïƒ¨k_LN‰Xímèp-ä…,’ó¬~íd;ÇxÃ}‚-({ô¡ãY²Ø6eÞ¥eÞ?Å÷ª‚w÷0&Xœ¢6HÚ(ê-—‚úÄ¥zû¯î®®7WMEýÂjnï*£·×‚¸eïC•§ð²ðŒhf"NW.Rbå@Îãóh1D`W~âW€(¬rO +endstream +endobj +282 0 obj +<< +/A 1594 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [498.526 163.845 501.732 154.758] +/StructParent 16 +/Subtype /Link +/Type /Annot +>> +endobj +283 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/R/S/a/b/comma/d/e/four/g/i/l/m/n/o/one/period/r/s/six/space/t/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1595 0 R +/FontName /MBQABU+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +284 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PMkÃ0 ½ûWèØŠz2†Ñ2Èa,Ûpl%3,¶qœCþýd§t0, ½÷x¿v·Î» ü=Óc†Ñy›p k2Nγ¦ëL¾Oõ5³ŽŒ¹ß–ŒsçÇÀ¤þAË%§ O6 xdü-YLÎOpøºöGàýãÎè3P +,Ž$ô¢ã«žx¥:K{—·qþŸ[DhëÜìfL°¸Dm0i?!“‚B|¦P ½ý·?ï¬a4ß:1yn+ê/{QE¥u¢RTîø¢G߆‡Y³¦D>ëmªÁbÍy|œ/†Ä*É~+4t( +endstream +endobj +285 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1596 0 R +/FontName /JRKZLA+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +286 0 obj +<< +/Filter /FlateDecode +/Length 418 +>> +stream +H‰\’Ín£@„ï<Å“CÆLw,!K–H>ìâÍ`;HëñÁo¿]T”H‹ó¡©î)šÊ·ûÝ>ö“˧¡=„ÉúØ¥pn© îÎ}Ì¥ëúvú|›Ÿí¥³ÜŠ÷ë.ûx²ºvù›m^§tw›n8†Ç,ÿ•ºúxvïÛãË·qü.!N®pëµëÂÉýhÆŸÍ%¸|.{Úw¶ßO÷'«ùVü¹Á•óû‚fÚ¡ ×±iCjâ9dua×ÚÕ¯v­³»ÿö«‚eÇSûѤ¬.!. +[ŒŸÉÏàyÞ’·ày~!¿/Ùg‰>Ë’\‚+r²WË™m1¦¦‚¦â¹ÎõìéÑÓ³§GOÏZZÏZZYÌl‹1õ½P/Ð õ2ë=ÙƒéMàM”¬`ÎD0¡77áL3ÎD0áL3‘W²ýˆZù-ŠoQzSxSzSxSzSxSzSxSzSxSzSxSúQøÑ yc¼Bÿ²X¬æ|þiDÁë¾rÖÞR²ˆÍ±ž³…Tõ1|%FgU¸³ €ʾ +endstream +endobj +287 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/P/R/S/T/U/W/X/Y/a/b/c/colon/d/e/f/g/h/i/l/m/n/o/one/p/parenleft/parenright/r/s/slash/space/t/three/u/w) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1597 0 R +/FontName /AMPGPS+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +288 0 obj +<< +/Filter /FlateDecode +/Length 438 +>> +stream +H‰\“ÑjÛ@Eßõû˜<ÙòÎlÂ`ìü¶ÔíÈÒØÄ+±–ü÷Ý«R¨ÀÞ#4;{®•ÛýnûÉ•?ÒÐlr§>vÉ®Ã-µæŽvîc±¬\×·ÓçÝüß^š±(óæÃý:ÙeOCQ×®ü™^§tw›n8ÚcQ~O¥>žÝÃïíáÑ•‡Û8~ØÅâän½vr£÷füÖ\Ì•ó¶§}—Ÿ÷Óý)ïùWñë>š«æû%eÚ¡³ëØ´–šx¶¢^äkíê·|­ ‹ÝϽrÛñÔþiRQW(^,ò’ù™ü ~!¿€ßȹa½ZÎœ—Ì+ò +¼!o2{ÖxÔøŠ\YïQï=Ùƒ…,`%+8˜>>~KÞ‚wäø•ü +¦³‡³0£ £ÐGà#ôø}>BÐAà |?‚÷#ôø(ó*ò*û+ú+û+ú+û+ú+û+ú+ó*ò*ÏRœ¥> +endobj +290 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_i/f_f_i/f_l/space/parenleft/parenright/comma/hyphen/period/slash/colon/R/T/W/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y/quoteright) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1598 0 R +/FontName /SPTBHI+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +291 0 obj +<< +/Filter /FlateDecode +/Length 411 +>> +stream +H‰\’ÍŽ‚@ ÇïósÔƒáK§šÅ5á°Yw¡º$Ë@<ðöÛN‰&Ký•iË¿¥A^ ÛŒ:øp]uÆQ_[;º»«P_ðÖXźnªqöü³jË^”|ž†ÛÂ^;•¦:ø¤Ãat“^ìëî‚K¼»]cozñŸ—:8ßûþ[´£u–é¯TèµìßÊuàÓVEMçÍ8­(çñ5õ¨cïG"¦êjú²BWÚª4¤+Ó鉮L¡­ÿ'[I»\«ŸÒ©4:RpC÷.#ÿåé?ÞžïròãÐûdˆ·Â[æ0çĹ°—o!–údˆ¥.•&{ÏdTº‰=“!^ ¯™AˆM$š"f‰7oá„Yr çšð†ÙÌý0KMãkJ/†{1Ò‹ïß„ÌÒ—Ÿƒ™gÇ}™ynÜ—™çÅ}Ì +xV :u‚èÖ ¢X'ˆN` :u‚èÖ ¢X'ˆN`;®‡ÑÎÿøùó +ЦêÇ~Uwçhµü:ûâmj,>6¾ïzMY|«?îÉþ +endstream +endobj +292 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +293 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +294 0 obj +<< +/BaseFont /UNRBJE+Wingdings-Regular +/DescendantFonts 1599 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1600 0 R +/Type /Font +>> +endobj +295 0 obj +<< +/BaseFont /MBQABU+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 283 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1601 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 573 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +296 0 obj +<< +/BaseFont /AMPGPS+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 287 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1602 0 R +/Type /Font +/Widths [202] +>> +endobj +297 0 obj +<< +/BaseFont /YJLUNW+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1603 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1604 0 R +/Type /Font +/Widths [212] +>> +endobj +298 0 obj +<< +/BaseFont /XKBOZY+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1605 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 1606 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 516 0 0 0 0 0 0 0 0 572 0 +0 0 0 0 0 569] +>> +endobj +299 0 obj +<< +/A 1607 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [298.144 677.062 301.351 667.974] +/StructParent 23 +/Subtype /Link +/Type /Annot +>> +endobj +300 0 obj +<< +/A 1608 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [257.842 327.908 261.048 318.821] +/StructParent 32 +/Subtype /Link +/Type /Annot +>> +endobj +301 0 obj +<< +/A 1609 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [320.955 679.471 324.162 670.383] +/StructParent 35 +/Subtype /Link +/Type /Annot +>> +endobj +302 0 obj +<< +/A 1610 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [470.867 721.645 474.073 712.558] +/StructParent 39 +/Subtype /Link +/Type /Annot +>> +endobj +303 0 obj +<< +/A 1611 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [292.441 422.307 295.648 413.22] +/StructParent 41 +/Subtype /Link +/Type /Annot +>> +endobj +304 0 obj +<< +/Length 2896 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +305 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +306 0 obj +<< +/BaseFont /HDQTRP+Wingdings-Regular +/DescendantFonts 1612 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1613 0 R +/Type /Font +>> +endobj +307 0 obj +<< +/BaseFont /MZMROK+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 1614 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 1615 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +308 0 obj +<< +/BaseFont /YEJLAM+MyriadPro-Light +/Encoding 1616 0 R +/FirstChar 31 +/FontDescriptor 1617 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 1618 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +309 0 obj +<< +/BaseFont /MOPBOK+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1619 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1620 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +310 0 obj +<< +/BaseFont /CPLOEE+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1621 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1622 0 R +/Type /Font +/Widths [212] +>> +endobj +311 0 obj +<< +/BaseFont /UVMSWU+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1623 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 1624 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 516 0 0 0 0 0 0 0 0 572 0 +0 0 0 0 0 569] +>> +endobj +312 0 obj +<< +/BaseFont /FIKHPT+Wingdings-Regular +/DescendantFonts 1625 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1626 0 R +/Type /Font +>> +endobj +313 0 obj +<< +/K [337 0 R 338 0 R 339 0 R 342 0 R 344 0 R 346 0 R 349 0 R 352 0 R 1627 0 R 1628 0 R 359 0 R 360 0 R 363 0 R 364 0 R 366 0 R 1629 0 R +1630 0 R 379 0 R 381 0 R 1631 0 R 385 0 R 389 0 R 391 0 R 1632 0 R 393 0 R 1633 0 R 396 0 R 1634 0 R 398 0 R 1635 0 R 401 0 R 1636 0 R +403 0 R 1637 0 R 406 0 R 408 0 R 410 0 R 1638 0 R 413 0 R 416 0 R 418 0 R 421 0 R 1639 0 R 423 0 R 1640 0 R 426 0 R 1641 0 R 428 0 R +1642 0 R 431 0 R 432 0 R 434 0 R 1643 0 R 436 0 R 1644 0 R 1645 0 R 439 0 R 441 0 R 448 0 R 453 0 R 1646 0 R 462 0 R 466 0 R 467 0 R +469 0 R 470 0 R 1647 0 R 541 0 R 542 0 R 544 0 R 545 0 R 548 0 R 549 0 R 551 0 R 552 0 R 556 0 R 557 0 R 560 0 R 561 0 R 565 0 R +568 0 R 570 0 R 574 0 R 575 0 R 578 0 R 579 0 R 580 0 R 584 0 R 1648 0 R 621 0 R 623 0 R 658 0 R 659 0 R 665 0 R 666 0 R 667 0 R +1649 0 R 716 0 R 717 0 R 721 0 R 723 0 R 724 0 R 1650 0 R 752 0 R 753 0 R 754 0 R 758 0 R 759 0 R 762 0 R 765 0 R 767 0 R 771 0 R +774 0 R 775 0 R 778 0 R 781 0 R 786 0 R 791 0 R 795 0 R 796 0 R 797 0 R 801 0 R 803 0 R 806 0 R 807 0 R 809 0 R 811 0 R 812 0 R +814 0 R 816 0 R 1651 0 R 854 0 R 855 0 R 857 0 R 1652 0 R 1653 0 R 1654 0 R 1655 0 R 1656 0 R 1657 0 R 1658 0 R 1659 0 R 1660 0 R 1661 0 R +1662 0 R 1663 0 R 1664 0 R 1665 0 R 1666 0 R 1667 0 R 1668 0 R 1669 0 R 859 0 R 1670 0 R 884 0 R 1671 0 R 888 0 R 891 0 R 893 0 R 894 0 R +1672 0 R 912 0 R 1673 0 R 914 0 R 916 0 R 919 0 R 920 0 R 921 0 R 922 0 R 1674 0 R 941 0 R 1675 0 R 954 0 R 955 0 R 1676 0 R 1043 0 R +1044 0 R 1047 0 R 1048 0 R 1051 0 R 1053 0 R 1677 0 R 1055 0 R 1678 0 R 1070 0 R 1072 0 R 1073 0 R 1076 0 R 1078 0 R 1079 0 R 1080 0 R 1679 0 R +1124 0 R 1125 0 R 1129 0 R 1133 0 R 1134 0 R 1138 0 R 1139 0 R 1144 0 R 1150 0 R 1188 0 R 1190 0 R 1191 0 R 1195 0 R 1198 0 R 1201 0 R 1202 0 R +1206 0 R 1208 0 R 1210 0 R 1211 0 R 1213 0 R 1214 0 R 1218 0 R 1222 0 R 1223 0 R 1224 0 R 1232 0 R 1235 0 R 1236 0 R 1237 0 R 1239 0 R 1240 0 R +1243 0 R 1245 0 R 1248 0 R 1249 0 R 1251 0 R 1254 0 R 1255 0 R 1257 0 R 1261 0 R 1263 0 R 1264 0 R 1265 0 R 1267 0 R 1270 0 R 1272 0 R 1273 0 R +1277 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R] +/P 179 0 R +/S /Story +>> +endobj +314 0 obj +<< +/K 463 0 R +/P 179 0 R +/S /Story +>> +endobj +315 0 obj +<< +/K 539 0 R +/P 179 0 R +/S /Story +>> +endobj +316 0 obj +<< +/K 1680 0 R +/P 179 0 R +/S /Story +>> +endobj +317 0 obj +<< +/K 572 0 R +/P 179 0 R +/S /Story +>> +endobj +318 0 obj +<< +/K 1681 0 R +/P 179 0 R +/S /Story +>> +endobj +319 0 obj +<< +/K 678 0 R +/P 179 0 R +/S /Story +>> +endobj +320 0 obj +<< +/K 1682 0 R +/P 179 0 R +/S /Story +>> +endobj +321 0 obj +<< +/K 766 0 R +/P 179 0 R +/S /Story +>> +endobj +322 0 obj +<< +/K 788 0 R +/P 179 0 R +/S /Story +>> +endobj +323 0 obj +<< +/K 1683 0 R +/P 179 0 R +/S /Story +>> +endobj +324 0 obj +<< +/K 1684 0 R +/P 179 0 R +/S /Story +>> +endobj +325 0 obj +<< +/K 1685 0 R +/P 179 0 R +/S /Story +>> +endobj +326 0 obj +<< +/K 1041 0 R +/P 179 0 R +/S /Story +>> +endobj +327 0 obj +<< +/K 1686 0 R +/P 179 0 R +/S /Story +>> +endobj +328 0 obj +<< +/K 1687 0 R +/P 179 0 R +/S /Story +>> +endobj +329 0 obj +<< +/K 1153 0 R +/P 179 0 R +/S /Story +>> +endobj +330 0 obj +<< +/K 1688 0 R +/P 179 0 R +/S /Story +>> +endobj +331 0 obj +<< +/K [1343 0 R 1689 0 R 1344 0 R 1690 0 R] +/P 179 0 R +/S /Story +>> +endobj +332 0 obj +<< +/K [1387 0 R 1388 0 R 1691 0 R 1389 0 R 1390 0 R 1391 0 R 1394 0 R 1398 0 R 1399 0 R 1400 0 R 1692 0 R 1416 0 R 1417 0 R 1418 0 R 1421 0 R 1424 0 R +1693 0 R 1449 0 R 1450 0 R 1694 0 R 1451 0 R 1695 0 R 1696 0 R 1453 0 R 1697 0 R 1454 0 R 1698 0 R 1506 0 R 1508 0 R 1699 0 R 1511 0 R 1700 0 R +1545 0 R 1701 0 R 1552 0 R] +/P 179 0 R +/S /Story +>> +endobj +333 0 obj +<< +/A << +/BBox [112.255 295.45 523.701 687.605] +/O /Layout +/Placement /Block +>> +/K 2311 +/P 179 0 R +/Pg 47 0 R +/S /Figure +>> +endobj +334 0 obj +<< +/K 1702 0 R +/P 179 0 R +/S /Story +>> +endobj +335 0 obj +<< +/K [1703 0 R] +/P 179 0 R +/S /Story +>> +endobj +336 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 337 0 R +/Pg 10 0 R +/S /Span +>> +endobj +337 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [336 0 R 1] +/P 313 0 R +/Pg 10 0 R +/S /Kapitel-Head +>> +endobj +338 0 obj +<< +/C /Pa1 +/K 2 +/P 313 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +339 0 obj +<< +/C /Pa2 +/K [3 4 5 340 0 R 7 341 0 R 9 10 11 12] +/P 313 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +340 0 obj +<< +/ActualText +/K 6 +/P 339 0 R +/Pg 10 0 R +/S /Span +>> +endobj +341 0 obj +<< +/ActualText +/K 8 +/P 339 0 R +/Pg 10 0 R +/S /Span +>> +endobj +342 0 obj +<< +/C /Pa3 +/K [13 14 343 0 R 16] +/P 313 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +343 0 obj +<< +/ActualText +/K 15 +/P 342 0 R +/Pg 10 0 R +/S /Span +>> +endobj +344 0 obj +<< +/C /Pa3 +/K [17 18 19 345 0 R 21] +/P 313 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +345 0 obj +<< +/ActualText +/K 20 +/P 344 0 R +/Pg 10 0 R +/S /Span +>> +endobj +346 0 obj +<< +/C /Pa3 +/K [22 23 347 0 R 25 26 348 0 R 28] +/P 313 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +347 0 obj +<< +/ActualText +/K 24 +/P 346 0 R +/Pg 10 0 R +/S /Span +>> +endobj +348 0 obj +<< +/ActualText +/K 27 +/P 346 0 R +/Pg 10 0 R +/S /Span +>> +endobj +349 0 obj +<< +/C /Pa3 +/K [29 30 31 357 0 R 33 34 358 0 R 36 37] +/P 313 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +350 0 obj +<< +/C /A4 +/K 32 +/P 357 0 R +/Pg 10 0 R +/S /Span +>> +endobj +351 0 obj +<< +/C /A4 +/K 35 +/P 358 0 R +/Pg 10 0 R +/S /Span +>> +endobj +352 0 obj +<< +/C /Pa3 +/K [38 353 0 R 40 41 354 0 R 43 44 355 0 R 46 47 48 356 0 R 50] +/P 313 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +353 0 obj +<< +/ActualText +/K 39 +/P 352 0 R +/Pg 10 0 R +/S /Span +>> +endobj +354 0 obj +<< +/ActualText +/K 42 +/P 352 0 R +/Pg 10 0 R +/S /Span +>> +endobj +355 0 obj +<< +/ActualText +/K 45 +/P 352 0 R +/Pg 10 0 R +/S /Span +>> +endobj +356 0 obj +<< +/ActualText +/K 49 +/P 352 0 R +/Pg 10 0 R +/S /Span +>> +endobj +357 0 obj +<< +/K [181 0 R 350 0 R] +/P 349 0 R +/S /Reference +>> +endobj +358 0 obj +<< +/K [182 0 R 351 0 R] +/P 349 0 R +/S /Reference +>> +endobj +359 0 obj +<< +/C /Pa1 +/K 51 +/P 313 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +360 0 obj +<< +/C /Pa3 +/K [52 53 54 55 56 361 0 R 58 59 60 362 0 R 62 63 64] +/P 313 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +361 0 obj +<< +/ActualText +/K 57 +/P 360 0 R +/Pg 11 0 R +/S /Span +>> +endobj +362 0 obj +<< +/ActualText +/K 61 +/P 360 0 R +/Pg 11 0 R +/S /Span +>> +endobj +363 0 obj +<< +/C /Pa1 +/K 65 +/P 313 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +364 0 obj +<< +/C /Pa2 +/K [66 67 365 0 R 69] +/P 313 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +365 0 obj +<< +/ActualText +/K 68 +/P 364 0 R +/Pg 11 0 R +/S /Span +>> +endobj +366 0 obj +<< +/C /Pa3 +/K [70 71 72 73 74] +/P 313 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +367 0 obj +<< +/C /A5 +/K 75 +/P 1704 0 R +/Pg 11 0 R +/S /Span +>> +endobj +368 0 obj +<< +/K [76 369 0 R 78] +/P 1705 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +369 0 obj +<< +/ActualText +/K 77 +/P 368 0 R +/Pg 11 0 R +/S /Span +>> +endobj +370 0 obj +<< +/C /A5 +/K 79 +/P 1706 0 R +/Pg 11 0 R +/S /Span +>> +endobj +371 0 obj +<< +/K [80 372 0 R 82] +/P 1707 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +372 0 obj +<< +/ActualText +/K 81 +/P 371 0 R +/Pg 11 0 R +/S /Span +>> +endobj +373 0 obj +<< +/C /A5 +/K 83 +/P 1708 0 R +/Pg 11 0 R +/S /Span +>> +endobj +374 0 obj +<< +/K 84 +/P 1709 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +375 0 obj +<< +/C /A5 +/K 85 +/P 1710 0 R +/Pg 11 0 R +/S /Span +>> +endobj +376 0 obj +<< +/K 86 +/P 1711 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +377 0 obj +<< +/C /A5 +/K 87 +/P 1712 0 R +/Pg 11 0 R +/S /Span +>> +endobj +378 0 obj +<< +/K 88 +/P 1713 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +379 0 obj +<< +/C /Pa3 +/K [89 380 0 R 91 92 93] +/P 313 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +380 0 obj +<< +/ActualText +/K 90 +/P 379 0 R +/Pg 11 0 R +/S /Span +>> +endobj +381 0 obj +<< +/C /Pa2 +/K [94 95 382 0 R 97 383 0 R 99 100] +/P 313 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +382 0 obj +<< +/ActualText +/K 96 +/P 381 0 R +/Pg 11 0 R +/S /Span +>> +endobj +383 0 obj +<< +/ActualText +/K 98 +/P 381 0 R +/Pg 11 0 R +/S /Span +>> +endobj +384 0 obj +<< +/C /A6 +/K 101 +/P 385 0 R +/Pg 11 0 R +/S /Span +>> +endobj +385 0 obj +<< +/C /Pa2 +/K [384 0 R 102 103 386 0 R 105 106 387 0 R 108] +/P 313 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +386 0 obj +<< +/ActualText +/K 104 +/P 385 0 R +/Pg 11 0 R +/S /Span +>> +endobj +387 0 obj +<< +/ActualText +/K 107 +/P 385 0 R +/Pg 11 0 R +/S /Span +>> +endobj +388 0 obj +<< +/C /A6 +/K 109 +/P 389 0 R +/Pg 12 0 R +/S /Span +>> +endobj +389 0 obj +<< +/C /Pa2 +/K [388 0 R 110 111 112 390 0 R 114] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +390 0 obj +<< +/ActualText +/K 113 +/P 389 0 R +/Pg 12 0 R +/S /Span +>> +endobj +391 0 obj +<< +/C /Pa3 +/K [115 116 117] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +392 0 obj +<< +/C /A6 +/K 118 +/P 393 0 R +/Pg 12 0 R +/S /Span +>> +endobj +393 0 obj +<< +/C /Pa2 +/K [392 0 R 119 120 121 122 394 0 R 124] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +394 0 obj +<< +/ActualText +/K 123 +/P 393 0 R +/Pg 12 0 R +/S /Span +>> +endobj +395 0 obj +<< +/C /A6 +/K 125 +/P 396 0 R +/Pg 12 0 R +/S /Span +>> +endobj +396 0 obj +<< +/C /Pa2 +/K [395 0 R 126 127 128] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +397 0 obj +<< +/C /A6 +/K 129 +/P 398 0 R +/Pg 12 0 R +/S /Span +>> +endobj +398 0 obj +<< +/C /Pa2 +/K [397 0 R 130 131 399 0 R 133 134 135 136 137] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +399 0 obj +<< +/ActualText +/K 132 +/P 398 0 R +/Pg 12 0 R +/S /Span +>> +endobj +400 0 obj +<< +/C /A6 +/K 138 +/P 401 0 R +/Pg 12 0 R +/S /Span +>> +endobj +401 0 obj +<< +/C /Pa2 +/K [400 0 R 139 140] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +402 0 obj +<< +/C /A6 +/K 141 +/P 403 0 R +/Pg 12 0 R +/S /Span +>> +endobj +403 0 obj +<< +/C /Pa2 +/K [402 0 R 142 404 0 R 144 145] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +404 0 obj +<< +/ActualText +/K 143 +/P 403 0 R +/Pg 12 0 R +/S /Span +>> +endobj +405 0 obj +<< +/C /A6 +/K 146 +/P 406 0 R +/Pg 12 0 R +/S /Span +>> +endobj +406 0 obj +<< +/C /Pa2 +/K [405 0 R 147 407 0 R 149] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +407 0 obj +<< +/ActualText +/K 148 +/P 406 0 R +/Pg 12 0 R +/S /Span +>> +endobj +408 0 obj +<< +/C /Pa3 +/K [150 409 0 R 152 153 154 155] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +409 0 obj +<< +/ActualText +/K 151 +/P 408 0 R +/Pg 12 0 R +/S /Span +>> +endobj +410 0 obj +<< +/C /Pa3 +/K [156 411 0 R 158 159 160 161] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +411 0 obj +<< +/ActualText +/K 157 +/P 410 0 R +/Pg 12 0 R +/S /Span +>> +endobj +412 0 obj +<< +/C /A6 +/K 162 +/P 413 0 R +/Pg 12 0 R +/S /Span +>> +endobj +413 0 obj +<< +/C /Pa2 +/K [412 0 R 163 164 414 0 R 166 167 168] +/P 313 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +414 0 obj +<< +/ActualText +/K 165 +/P 413 0 R +/Pg 12 0 R +/S /Span +>> +endobj +415 0 obj +<< +/C /A6 +/K 169 +/P 416 0 R +/Pg 13 0 R +/S /Span +>> +endobj +416 0 obj +<< +/C /Pa2 +/K [415 0 R 170 417 0 R 172 173 174] +/P 313 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +417 0 obj +<< +/ActualText +/K 171 +/P 416 0 R +/Pg 13 0 R +/S /Span +>> +endobj +418 0 obj +<< +/C /Pa3 +/K [175 176 419 0 R 178 179 420 0 R 181] +/P 313 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +419 0 obj +<< +/ActualText +/K 177 +/P 418 0 R +/Pg 13 0 R +/S /Span +>> +endobj +420 0 obj +<< +/ActualText +/K 180 +/P 418 0 R +/Pg 13 0 R +/S /Span +>> +endobj +421 0 obj +<< +/C /Pa3 +/K 182 +/P 313 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +422 0 obj +<< +/C /A6 +/K 183 +/P 423 0 R +/Pg 13 0 R +/S /Span +>> +endobj +423 0 obj +<< +/C /Pa2 +/K [422 0 R 184 424 0 R 186] +/P 313 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +424 0 obj +<< +/ActualText +/K 185 +/P 423 0 R +/Pg 13 0 R +/S /Span +>> +endobj +425 0 obj +<< +/C /A6 +/K 187 +/P 426 0 R +/Pg 13 0 R +/S /Span +>> +endobj +426 0 obj +<< +/C /Pa2 +/K [425 0 R 188 189 190 191] +/P 313 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +427 0 obj +<< +/C /A6 +/K 192 +/P 428 0 R +/Pg 13 0 R +/S /Span +>> +endobj +428 0 obj +<< +/C /Pa2 +/K [427 0 R 193 429 0 R 195 196 197 198 199] +/P 313 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +429 0 obj +<< +/ActualText +/K 194 +/P 428 0 R +/Pg 13 0 R +/S /Span +>> +endobj +430 0 obj +<< +/C /A6 +/K 200 +/P 431 0 R +/Pg 13 0 R +/S /Span +>> +endobj +431 0 obj +<< +/C /Pa2 +/K [430 0 R 201 202 203] +/P 313 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +432 0 obj +<< +/C /Pa3 +/K [204 205 433 0 R 207] +/P 313 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +433 0 obj +<< +/ActualText +/K 206 +/P 432 0 R +/Pg 13 0 R +/S /Span +>> +endobj +434 0 obj +<< +/C /Pa3 +/K 208 +/P 313 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +435 0 obj +<< +/C /A6 +/K 209 +/P 436 0 R +/Pg 13 0 R +/S /Span +>> +endobj +436 0 obj +<< +/C /Pa2 +/K [435 0 R 210 437 0 R 212 213] +/P 313 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +437 0 obj +<< +/ActualText +/K 211 +/P 436 0 R +/Pg 13 0 R +/S /Span +>> +endobj +438 0 obj +<< +/C /A2 +/K 214 +/P 1644 0 R +/Pg 14 0 R +/S /Span +>> +endobj +439 0 obj +<< +/C /Pa2 +/K [215 216 217 218 219 465 0 R 221] +/P 313 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +440 0 obj +<< +/C /A4 +/K 220 +/P 465 0 R +/Pg 14 0 R +/S /Span +>> +endobj +441 0 obj +<< +/C /Pa3 +/K [222 442 0 R 224 443 0 R 226 444 0 R 228 445 0 R 230 231 232 233 234 446 0 R 236 237 +238 239 447 0 R 241 242 243] +/P 313 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +442 0 obj +<< +/ActualText +/K 223 +/P 441 0 R +/Pg 14 0 R +/S /Span +>> +endobj +443 0 obj +<< +/ActualText +/K 225 +/P 441 0 R +/Pg 14 0 R +/S /Span +>> +endobj +444 0 obj +<< +/ActualText +/K 227 +/P 441 0 R +/Pg 14 0 R +/S /Span +>> +endobj +445 0 obj +<< +/ActualText +/K 229 +/P 441 0 R +/Pg 14 0 R +/S /Span +>> +endobj +446 0 obj +<< +/ActualText +/K 235 +/P 441 0 R +/Pg 14 0 R +/S /Span +>> +endobj +447 0 obj +<< +/ActualText +/K 240 +/P 441 0 R +/Pg 14 0 R +/S /Span +>> +endobj +448 0 obj +<< +/C /Pa3 +/K [244 449 0 R 246 247 450 0 R 249 451 0 R 251 252 452 0 R 254] +/P 313 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +449 0 obj +<< +/ActualText +/K 245 +/P 448 0 R +/Pg 14 0 R +/S /Span +>> +endobj +450 0 obj +<< +/ActualText +/K 248 +/P 448 0 R +/Pg 14 0 R +/S /Span +>> +endobj +451 0 obj +<< +/ActualText +/K 250 +/P 448 0 R +/Pg 14 0 R +/S /Span +>> +endobj +452 0 obj +<< +/ActualText +/K 253 +/P 448 0 R +/Pg 14 0 R +/S /Span +>> +endobj +453 0 obj +<< +/C /Pa3 +/K [255 256] +/P 313 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +454 0 obj +<< +/C /A5 +/K 257 +/P 1714 0 R +/Pg 14 0 R +/S /Span +>> +endobj +455 0 obj +<< +/K 258 +/P 1715 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +456 0 obj +<< +/C /A5 +/K 259 +/P 1716 0 R +/Pg 14 0 R +/S /Span +>> +endobj +457 0 obj +<< +/K 260 +/P 1717 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +458 0 obj +<< +/C /A5 +/K 261 +/P 1718 0 R +/Pg 14 0 R +/S /Span +>> +endobj +459 0 obj +<< +/K 262 +/P 1719 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +460 0 obj +<< +/C /A5 +/K 263 +/P 1720 0 R +/Pg 14 0 R +/S /Span +>> +endobj +461 0 obj +<< +/K 264 +/P 1721 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +462 0 obj +<< +/C /Pa3 +/K [265 266 267] +/P 313 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +463 0 obj +<< +/C /Pa9 +/K [268 269 270 464 0 R 272] +/P 314 0 R +/Pg 14 0 R +/S /Einklinker-Text__rec +>> +endobj +464 0 obj +<< +/ActualText +/K 271 +/P 463 0 R +/Pg 14 0 R +/S /Span +>> +endobj +465 0 obj +<< +/K [187 0 R 440 0 R] +/P 439 0 R +/S /Reference +>> +endobj +466 0 obj +<< +/C /Pa1 +/K 273 +/P 313 0 R +/Pg 15 0 R +/S /Zwischenhead_1 +>> +endobj +467 0 obj +<< +/C /Pa2 +/K [274 468 0 R 276 277] +/P 313 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +468 0 obj +<< +/ActualText +/K 275 +/P 467 0 R +/Pg 15 0 R +/S /Span +>> +endobj +469 0 obj +<< +/C /Pa10 +/K 278 +/P 313 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +470 0 obj +<< +/C /Pa2 +/K [279 280 281 282 471 0 R 284 285 286 472 0 R 288 289 290 291] +/P 313 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +471 0 obj +<< +/ActualText +/K 283 +/P 470 0 R +/Pg 15 0 R +/S /Span +>> +endobj +472 0 obj +<< +/ActualText +/K 287 +/P 470 0 R +/Pg 15 0 R +/S /Span +>> +endobj +473 0 obj +<< +/C /Pa12 +/K 292 +/P 1722 0 R +/Pg 15 0 R +/S /Tab._Versal_bold_wei +>> +endobj +474 0 obj +<< +/C /Pa12 +/K 293 +/P 1723 0 R +/Pg 15 0 R +/S /Tab._Versal_bold_wei +>> +endobj +475 0 obj +<< +/C /Pa12 +/K [294 295] +/P 1724 0 R +/Pg 15 0 R +/S /Tab._Versal_bold_sch +>> +endobj +476 0 obj +<< +/C /A5 +/K 296 +/P 1725 0 R +/Pg 15 0 R +/S /Span +>> +endobj +477 0 obj +<< +/C /A5 +/K 297 +/P 1725 0 R +/Pg 15 0 R +/S /Span +>> +endobj +478 0 obj +<< +/K [298 479 0 R 300] +/P 1726 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +479 0 obj +<< +/ActualText +/K 299 +/P 478 0 R +/Pg 15 0 R +/S /Span +>> +endobj +480 0 obj +<< +/C /A5 +/K 301 +/P 1727 0 R +/Pg 15 0 R +/S /Span +>> +endobj +481 0 obj +<< +/C /A5 +/K 302 +/P 1727 0 R +/Pg 15 0 R +/S /Span +>> +endobj +482 0 obj +<< +/K 303 +/P 1728 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +483 0 obj +<< +/C /A5 +/K 304 +/P 1729 0 R +/Pg 15 0 R +/S /Span +>> +endobj +484 0 obj +<< +/C /A5 +/K 305 +/P 1729 0 R +/Pg 15 0 R +/S /Span +>> +endobj +485 0 obj +<< +/K 306 +/P 1730 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +486 0 obj +<< +/C /A5 +/K 307 +/P 1731 0 R +/Pg 15 0 R +/S /Span +>> +endobj +487 0 obj +<< +/C /A5 +/K 308 +/P 1731 0 R +/Pg 15 0 R +/S /Span +>> +endobj +488 0 obj +<< +/K [309 310] +/P 1732 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +489 0 obj +<< +/C /A5 +/K 311 +/P 1733 0 R +/Pg 15 0 R +/S /Span +>> +endobj +490 0 obj +<< +/C /A5 +/K 312 +/P 1733 0 R +/Pg 15 0 R +/S /Span +>> +endobj +491 0 obj +<< +/K 313 +/P 1734 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +492 0 obj +<< +/C /A5 +/K 314 +/P 1735 0 R +/Pg 15 0 R +/S /Span +>> +endobj +493 0 obj +<< +/C /A5 +/K 315 +/P 1735 0 R +/Pg 15 0 R +/S /Span +>> +endobj +494 0 obj +<< +/K 316 +/P 1736 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +495 0 obj +<< +/C /A5 +/K 317 +/P 1737 0 R +/Pg 15 0 R +/S /Span +>> +endobj +496 0 obj +<< +/C /A5 +/K 318 +/P 1737 0 R +/Pg 15 0 R +/S /Span +>> +endobj +497 0 obj +<< +/K 319 +/P 1738 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +498 0 obj +<< +/C /A5 +/K 320 +/P 1739 0 R +/Pg 15 0 R +/S /Span +>> +endobj +499 0 obj +<< +/C /A5 +/K 321 +/P 1739 0 R +/Pg 15 0 R +/S /Span +>> +endobj +500 0 obj +<< +/K 322 +/P 1740 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +501 0 obj +<< +/C /Pa12 +/K [323 502 0 R 325] +/P 1741 0 R +/Pg 15 0 R +/S /Tab._Versal_bold_sch +>> +endobj +502 0 obj +<< +/ActualText +/K 324 +/P 501 0 R +/Pg 15 0 R +/S /Span +>> +endobj +503 0 obj +<< +/C /A5 +/K 326 +/P 1742 0 R +/Pg 15 0 R +/S /Span +>> +endobj +504 0 obj +<< +/C /A5 +/K 327 +/P 1742 0 R +/Pg 15 0 R +/S /Span +>> +endobj +505 0 obj +<< +/K 328 +/P 1743 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +506 0 obj +<< +/C /A5 +/K 329 +/P 1744 0 R +/Pg 15 0 R +/S /Span +>> +endobj +507 0 obj +<< +/C /A5 +/K 330 +/P 1744 0 R +/Pg 15 0 R +/S /Span +>> +endobj +508 0 obj +<< +/K 331 +/P 1745 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +509 0 obj +<< +/C /A5 +/K 332 +/P 1746 0 R +/Pg 15 0 R +/S /Span +>> +endobj +510 0 obj +<< +/C /A5 +/K 333 +/P 1746 0 R +/Pg 15 0 R +/S /Span +>> +endobj +511 0 obj +<< +/K 334 +/P 1747 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +512 0 obj +<< +/C /Pa12 +/K [335 513 0 R 337] +/P 1748 0 R +/Pg 15 0 R +/S /Tab._Versal_bold_sch +>> +endobj +513 0 obj +<< +/ActualText +/K 336 +/P 512 0 R +/Pg 15 0 R +/S /Span +>> +endobj +514 0 obj +<< +/C /A5 +/K 338 +/P 1749 0 R +/Pg 15 0 R +/S /Span +>> +endobj +515 0 obj +<< +/C /A5 +/K 339 +/P 1749 0 R +/Pg 15 0 R +/S /Span +>> +endobj +516 0 obj +<< +/K 340 +/P 1750 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +517 0 obj +<< +/C /A5 +/K 341 +/P 1751 0 R +/Pg 15 0 R +/S /Span +>> +endobj +518 0 obj +<< +/C /A5 +/K 342 +/P 1751 0 R +/Pg 15 0 R +/S /Span +>> +endobj +519 0 obj +<< +/K 343 +/P 1752 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +520 0 obj +<< +/C /A5 +/K 344 +/P 1753 0 R +/Pg 15 0 R +/S /Span +>> +endobj +521 0 obj +<< +/C /A5 +/K 345 +/P 1753 0 R +/Pg 15 0 R +/S /Span +>> +endobj +522 0 obj +<< +/K 346 +/P 1754 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +523 0 obj +<< +/C /A5 +/K 347 +/P 1755 0 R +/Pg 15 0 R +/S /Span +>> +endobj +524 0 obj +<< +/C /A5 +/K 348 +/P 1755 0 R +/Pg 15 0 R +/S /Span +>> +endobj +525 0 obj +<< +/K 349 +/P 1756 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +526 0 obj +<< +/C /Pa12 +/K 350 +/P 1757 0 R +/Pg 15 0 R +/S /Tab._Versal_bold_sch +>> +endobj +527 0 obj +<< +/C /A5 +/K 351 +/P 1758 0 R +/Pg 15 0 R +/S /Span +>> +endobj +528 0 obj +<< +/C /A5 +/K 352 +/P 1758 0 R +/Pg 15 0 R +/S /Span +>> +endobj +529 0 obj +<< +/K 353 +/P 1759 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +530 0 obj +<< +/C /A5 +/K 354 +/P 1760 0 R +/Pg 15 0 R +/S /Span +>> +endobj +531 0 obj +<< +/C /A5 +/K 355 +/P 1760 0 R +/Pg 15 0 R +/S /Span +>> +endobj +532 0 obj +<< +/K 356 +/P 1761 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +533 0 obj +<< +/C /A5 +/K 357 +/P 1762 0 R +/Pg 15 0 R +/S /Span +>> +endobj +534 0 obj +<< +/C /A5 +/K 358 +/P 1762 0 R +/Pg 15 0 R +/S /Span +>> +endobj +535 0 obj +<< +/K 359 +/P 1763 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +536 0 obj +<< +/C /A5 +/K 360 +/P 1764 0 R +/Pg 15 0 R +/S /Span +>> +endobj +537 0 obj +<< +/C /A5 +/K 361 +/P 1764 0 R +/Pg 15 0 R +/S /Span +>> +endobj +538 0 obj +<< +/K 362 +/P 1765 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +539 0 obj +<< +/C /Pa12 +/K 363 +/P 315 0 R +/Pg 15 0 R +/S /Tab._Versal_bold_sch +>> +endobj +540 0 obj +<< +/C /A7 +/K 364 +/P 1647 0 R +/Pg 16 0 R +/S /Span +>> +endobj +541 0 obj +<< +/C /Pa14 +/K 365 +/P 313 0 R +/Pg 16 0 R +/S /Zwischenhead_3 +>> +endobj +542 0 obj +<< +/C /Pa2 +/K [366 367 368 369 543 0 R 371] +/P 313 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +543 0 obj +<< +/ActualText +/K 370 +/P 542 0 R +/Pg 16 0 R +/S /Span +>> +endobj +544 0 obj +<< +/C /Pa10 +/K 372 +/P 313 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +545 0 obj +<< +/C /Pa2 +/K [373 374 375 376 546 0 R 378 379 380 381 382 383 384 385 386 387 388 +389 547 0 R 391 392] +/P 313 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +546 0 obj +<< +/ActualText +/K 377 +/P 545 0 R +/Pg 16 0 R +/S /Span +>> +endobj +547 0 obj +<< +/ActualText +/K 390 +/P 545 0 R +/Pg 16 0 R +/S /Span +>> +endobj +548 0 obj +<< +/C /Pa10 +/K 393 +/P 313 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +549 0 obj +<< +/C /Pa2 +/K [394 395 396 550 0 R 398 399] +/P 313 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +550 0 obj +<< +/ActualText +/K 397 +/P 549 0 R +/Pg 16 0 R +/S /Span +>> +endobj +551 0 obj +<< +/C /Pa10 +/K 400 +/P 313 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +552 0 obj +<< +/C /Pa2 +/K [401 402 403 553 0 R 405 554 0 R 407 408 409 555 0 R 411 << +/MCID 412 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 413 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 414 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 415 +/Pg 17 0 R +/Type /MCR +>>] +/P 313 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +553 0 obj +<< +/ActualText +/K 404 +/P 552 0 R +/Pg 16 0 R +/S /Span +>> +endobj +554 0 obj +<< +/ActualText +/K 406 +/P 552 0 R +/Pg 16 0 R +/S /Span +>> +endobj +555 0 obj +<< +/ActualText +/K 410 +/P 552 0 R +/Pg 16 0 R +/S /Span +>> +endobj +556 0 obj +<< +/C /Pa10 +/K 416 +/P 313 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +557 0 obj +<< +/C /Pa2 +/K [417 418 558 0 R 420 559 0 R 422 423 424] +/P 313 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +558 0 obj +<< +/ActualText +/K 419 +/P 557 0 R +/Pg 17 0 R +/S /Span +>> +endobj +559 0 obj +<< +/ActualText +/K 421 +/P 557 0 R +/Pg 17 0 R +/S /Span +>> +endobj +560 0 obj +<< +/C /Pa1 +/K 425 +/P 313 0 R +/Pg 17 0 R +/S /Zwischenhead_1 +>> +endobj +561 0 obj +<< +/C /Pa2 +/K [426 427 562 0 R 429 430 563 0 R 432 564 0 R 434] +/P 313 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +562 0 obj +<< +/ActualText +/K 428 +/P 561 0 R +/Pg 17 0 R +/S /Span +>> +endobj +563 0 obj +<< +/ActualText +/K 431 +/P 561 0 R +/Pg 17 0 R +/S /Span +>> +endobj +564 0 obj +<< +/ActualText +/K 433 +/P 561 0 R +/Pg 17 0 R +/S /Span +>> +endobj +565 0 obj +<< +/C /Pa3 +/K [435 436 437 438 439 440 566 0 R 442 443 567 0 R 445] +/P 313 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +566 0 obj +<< +/ActualText +/K 441 +/P 565 0 R +/Pg 17 0 R +/S /Span +>> +endobj +567 0 obj +<< +/ActualText +/K 444 +/P 565 0 R +/Pg 17 0 R +/S /Span +>> +endobj +568 0 obj +<< +/C /Pa3 +/K [446 569 0 R 448 449 450 451 452 453 454] +/P 313 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +569 0 obj +<< +/ActualText +/K 447 +/P 568 0 R +/Pg 17 0 R +/S /Span +>> +endobj +570 0 obj +<< +/C /Pa3 +/K [455 456 457 458 571 0 R 460 461 462 463] +/P 313 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +571 0 obj +<< +/ActualText +/K 459 +/P 570 0 R +/Pg 17 0 R +/S /Span +>> +endobj +572 0 obj +<< +/C /Pa9 +/K [464 465 573 0 R 467 468] +/P 317 0 R +/Pg 17 0 R +/S /Einklinker-Text__rec +>> +endobj +573 0 obj +<< +/ActualText +/K 466 +/P 572 0 R +/Pg 17 0 R +/S /Span +>> +endobj +574 0 obj +<< +/C /Pa10 +/K 469 +/P 313 0 R +/Pg 18 0 R +/S /Zwischenhead_2 +>> +endobj +575 0 obj +<< +/C /Pa2 +/K [470 471 472 473 474 475 576 0 R 477 577 0 R 479] +/P 313 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +576 0 obj +<< +/ActualText +/K 476 +/P 575 0 R +/Pg 18 0 R +/S /Span +>> +endobj +577 0 obj +<< +/ActualText +/K 478 +/P 575 0 R +/Pg 18 0 R +/S /Span +>> +endobj +578 0 obj +<< +/C /Pa14 +/K 480 +/P 313 0 R +/Pg 18 0 R +/S /Zwischenhead_3 +>> +endobj +579 0 obj +<< +/C /Pa2 +/K [481 482 483 484 485] +/P 313 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +580 0 obj +<< +/C /Pa3 +/K [486 581 0 R 488 489 490 491 492 493 582 0 R 495 583 0 R 497 498] +/P 313 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +581 0 obj +<< +/ActualText +/K 487 +/P 580 0 R +/Pg 18 0 R +/S /Span +>> +endobj +582 0 obj +<< +/ActualText +/K 494 +/P 580 0 R +/Pg 18 0 R +/S /Span +>> +endobj +583 0 obj +<< +/ActualText +/K 496 +/P 580 0 R +/Pg 18 0 R +/S /Span +>> +endobj +584 0 obj +<< +/C /Pa3 +/K [499 585 0 R 501 502 586 0 R 504] +/P 313 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +585 0 obj +<< +/ActualText +/K 500 +/P 584 0 R +/Pg 18 0 R +/S /Span +>> +endobj +586 0 obj +<< +/ActualText +/K 503 +/P 584 0 R +/Pg 18 0 R +/S /Span +>> +endobj +587 0 obj +<< +/C /A5 +/K 505 +/P 1766 0 R +/Pg 18 0 R +/S /Span +>> +endobj +588 0 obj +<< +/C /A5 +/K 506 +/P 1766 0 R +/Pg 18 0 R +/S /Span +>> +endobj +589 0 obj +<< +/K [507 508 509] +/P 1767 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +590 0 obj +<< +/C /A5 +/K 510 +/P 1768 0 R +/Pg 18 0 R +/S /Span +>> +endobj +591 0 obj +<< +/C /A5 +/K 511 +/P 1768 0 R +/Pg 18 0 R +/S /Span +>> +endobj +592 0 obj +<< +/K [512 513] +/P 1769 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +593 0 obj +<< +/C /A5 +/K 514 +/P 1770 0 R +/Pg 18 0 R +/S /Span +>> +endobj +594 0 obj +<< +/C /A5 +/K 515 +/P 1770 0 R +/Pg 18 0 R +/S /Span +>> +endobj +595 0 obj +<< +/K [516 596 0 R 518] +/P 1771 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +596 0 obj +<< +/ActualText +/K 517 +/P 595 0 R +/Pg 18 0 R +/S /Span +>> +endobj +597 0 obj +<< +/C /A5 +/K 519 +/P 1772 0 R +/Pg 18 0 R +/S /Span +>> +endobj +598 0 obj +<< +/C /A5 +/K 520 +/P 1772 0 R +/Pg 18 0 R +/S /Span +>> +endobj +599 0 obj +<< +/K [521 522] +/P 1773 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +600 0 obj +<< +/C /A5 +/K 523 +/P 1774 0 R +/Pg 18 0 R +/S /Span +>> +endobj +601 0 obj +<< +/C /A5 +/K 524 +/P 1774 0 R +/Pg 18 0 R +/S /Span +>> +endobj +602 0 obj +<< +/K [525 603 0 R 527 528] +/P 1775 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +603 0 obj +<< +/ActualText +/K 526 +/P 602 0 R +/Pg 18 0 R +/S /Span +>> +endobj +604 0 obj +<< +/C /A5 +/K 529 +/P 1776 0 R +/Pg 18 0 R +/S /Span +>> +endobj +605 0 obj +<< +/C /A5 +/K 530 +/P 1776 0 R +/Pg 18 0 R +/S /Span +>> +endobj +606 0 obj +<< +/K [531 532] +/P 1777 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +607 0 obj +<< +/C /A5 +/K 533 +/P 1778 0 R +/Pg 18 0 R +/S /Span +>> +endobj +608 0 obj +<< +/C /A5 +/K 534 +/P 1778 0 R +/Pg 18 0 R +/S /Span +>> +endobj +609 0 obj +<< +/K [535 610 0 R 537] +/P 1779 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +610 0 obj +<< +/ActualText +/K 536 +/P 609 0 R +/Pg 18 0 R +/S /Span +>> +endobj +611 0 obj +<< +/C /A5 +/K 538 +/P 1780 0 R +/Pg 18 0 R +/S /Span +>> +endobj +612 0 obj +<< +/C /A5 +/K 539 +/P 1780 0 R +/Pg 18 0 R +/S /Span +>> +endobj +613 0 obj +<< +/K 540 +/P 1781 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +614 0 obj +<< +/C /A5 +/K 541 +/P 1782 0 R +/Pg 19 0 R +/S /Span +>> +endobj +615 0 obj +<< +/C /A5 +/K 542 +/P 1782 0 R +/Pg 19 0 R +/S /Span +>> +endobj +616 0 obj +<< +/K [543 544] +/P 1783 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +617 0 obj +<< +/C /A5 +/K 545 +/P 1784 0 R +/Pg 19 0 R +/S /Span +>> +endobj +618 0 obj +<< +/C /A5 +/K 546 +/P 1784 0 R +/Pg 19 0 R +/S /Span +>> +endobj +619 0 obj +<< +/K [547 620 0 R 549] +/P 1785 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +620 0 obj +<< +/ActualText +/K 548 +/P 619 0 R +/Pg 19 0 R +/S /Span +>> +endobj +621 0 obj +<< +/C /Pa3 +/K [550 551 622 0 R 553] +/P 313 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +622 0 obj +<< +/ActualText +/K 552 +/P 621 0 R +/Pg 19 0 R +/S /Span +>> +endobj +623 0 obj +<< +/C /Pa3 +/K [554 555 556 624 0 R 558 559 625 0 R 561 626 0 R 563 564] +/P 313 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +624 0 obj +<< +/ActualText +/K 557 +/P 623 0 R +/Pg 19 0 R +/S /Span +>> +endobj +625 0 obj +<< +/ActualText +/K 560 +/P 623 0 R +/Pg 19 0 R +/S /Span +>> +endobj +626 0 obj +<< +/ActualText +/K 562 +/P 623 0 R +/Pg 19 0 R +/S /Span +>> +endobj +627 0 obj +<< +/C /Pa12 +/K 565 +/P 1786 0 R +/Pg 19 0 R +/S /Tab._Versal_bold_wei +>> +endobj +628 0 obj +<< +/C /A5 +/K 566 +/P 1787 0 R +/Pg 19 0 R +/S /Span +>> +endobj +629 0 obj +<< +/C /A5 +/K 567 +/P 1787 0 R +/Pg 19 0 R +/S /Span +>> +endobj +630 0 obj +<< +/K [568 631 0 R 570 571 572] +/P 1788 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +631 0 obj +<< +/ActualText +/K 569 +/P 630 0 R +/Pg 19 0 R +/S /Span +>> +endobj +632 0 obj +<< +/C /A5 +/K 573 +/P 1789 0 R +/Pg 19 0 R +/S /Span +>> +endobj +633 0 obj +<< +/C /A5 +/K 574 +/P 1789 0 R +/Pg 19 0 R +/S /Span +>> +endobj +634 0 obj +<< +/K [575 576 577] +/P 1790 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +635 0 obj +<< +/C /A5 +/K 578 +/P 1791 0 R +/Pg 19 0 R +/S /Span +>> +endobj +636 0 obj +<< +/C /A5 +/K 579 +/P 1791 0 R +/Pg 19 0 R +/S /Span +>> +endobj +637 0 obj +<< +/K 580 +/P 1792 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +638 0 obj +<< +/C /A5 +/K 581 +/P 1793 0 R +/Pg 19 0 R +/S /Span +>> +endobj +639 0 obj +<< +/C /A5 +/K 582 +/P 1793 0 R +/Pg 19 0 R +/S /Span +>> +endobj +640 0 obj +<< +/K [583 641 0 R 585 586 587] +/P 1794 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +641 0 obj +<< +/ActualText +/K 584 +/P 640 0 R +/Pg 19 0 R +/S /Span +>> +endobj +642 0 obj +<< +/C /A5 +/K 588 +/P 1795 0 R +/Pg 19 0 R +/S /Span +>> +endobj +643 0 obj +<< +/C /A5 +/K 589 +/P 1795 0 R +/Pg 19 0 R +/S /Span +>> +endobj +644 0 obj +<< +/K [590 591 592] +/P 1796 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +645 0 obj +<< +/C /A5 +/K 593 +/P 1797 0 R +/Pg 19 0 R +/S /Span +>> +endobj +646 0 obj +<< +/C /A5 +/K 594 +/P 1797 0 R +/Pg 19 0 R +/S /Span +>> +endobj +647 0 obj +<< +/K [595 596 597 598 599] +/P 1798 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +648 0 obj +<< +/C /A5 +/K 600 +/P 1799 0 R +/Pg 19 0 R +/S /Span +>> +endobj +649 0 obj +<< +/C /A5 +/K 601 +/P 1799 0 R +/Pg 19 0 R +/S /Span +>> +endobj +650 0 obj +<< +/K [602 603 604 651 0 R 606 607] +/P 1800 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +651 0 obj +<< +/ActualText +/K 605 +/P 650 0 R +/Pg 19 0 R +/S /Span +>> +endobj +652 0 obj +<< +/C /A5 +/K 608 +/P 1801 0 R +/Pg 19 0 R +/S /Span +>> +endobj +653 0 obj +<< +/C /A5 +/K 609 +/P 1801 0 R +/Pg 19 0 R +/S /Span +>> +endobj +654 0 obj +<< +/K [610 611] +/P 1802 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +655 0 obj +<< +/C /A5 +/K 612 +/P 1803 0 R +/Pg 19 0 R +/S /Span +>> +endobj +656 0 obj +<< +/C /A5 +/K 613 +/P 1803 0 R +/Pg 19 0 R +/S /Span +>> +endobj +657 0 obj +<< +/K [614 615] +/P 1804 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +658 0 obj +<< +/C /Pa14 +/K 616 +/P 313 0 R +/Pg 20 0 R +/S /Zwischenhead_3 +>> +endobj +659 0 obj +<< +/C /Pa2 +/K [617 618 619 660 0 R 621 622 623 661 0 R 625 626 627 628 662 0 R 630 631 632 +633 634 663 0 R 636 637 638 639 640 664 0 R 642 643 644 645 646] +/P 313 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +660 0 obj +<< +/ActualText +/K 620 +/P 659 0 R +/Pg 20 0 R +/S /Span +>> +endobj +661 0 obj +<< +/ActualText +/K 624 +/P 659 0 R +/Pg 20 0 R +/S /Span +>> +endobj +662 0 obj +<< +/ActualText +/K 629 +/P 659 0 R +/Pg 20 0 R +/S /Span +>> +endobj +663 0 obj +<< +/ActualText +/K 635 +/P 659 0 R +/Pg 20 0 R +/S /Span +>> +endobj +664 0 obj +<< +/ActualText +/K 641 +/P 659 0 R +/Pg 20 0 R +/S /Span +>> +endobj +665 0 obj +<< +/C /Pa3 +/K [647 648 649 650 651 652 653 654] +/P 313 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +666 0 obj +<< +/C /Pa10 +/K 655 +/P 313 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +667 0 obj +<< +/C /Pa2 +/K [656 657 658 659 660 661] +/P 313 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +668 0 obj +<< +/C /A5 +/K 662 +/P 1805 0 R +/Pg 20 0 R +/S /Span +>> +endobj +669 0 obj +<< +/C /A5 +/K 663 +/P 1805 0 R +/Pg 20 0 R +/S /Span +>> +endobj +670 0 obj +<< +/K [664 665] +/P 1806 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +671 0 obj +<< +/C /A5 +/K 666 +/P 1807 0 R +/Pg 20 0 R +/S /Span +>> +endobj +672 0 obj +<< +/C /A5 +/K 667 +/P 1807 0 R +/Pg 20 0 R +/S /Span +>> +endobj +673 0 obj +<< +/K 668 +/P 1808 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +674 0 obj +<< +/C /A5 +/K 669 +/P 1809 0 R +/Pg 20 0 R +/S /Span +>> +endobj +675 0 obj +<< +/C /A5 +/K 670 +/P 1809 0 R +/Pg 20 0 R +/S /Span +>> +endobj +676 0 obj +<< +/K [671 677 0 R 673] +/P 1810 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +677 0 obj +<< +/ActualText +/K 672 +/P 676 0 R +/Pg 20 0 R +/S /Span +>> +endobj +678 0 obj +<< +/C /Pa9 +/K [674 679 0 R 676 677 678] +/P 319 0 R +/Pg 20 0 R +/S /Einklinker-Text__rec +>> +endobj +679 0 obj +<< +/ActualText +/K 675 +/P 678 0 R +/Pg 20 0 R +/S /Span +>> +endobj +680 0 obj +<< +/C /A5 +/K 679 +/P 1811 0 R +/Pg 21 0 R +/S /Span +>> +endobj +681 0 obj +<< +/C /A5 +/K 680 +/P 1811 0 R +/Pg 21 0 R +/S /Span +>> +endobj +682 0 obj +<< +/K [681 682] +/P 1812 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +683 0 obj +<< +/C /A5 +/K 683 +/P 1813 0 R +/Pg 21 0 R +/S /Span +>> +endobj +684 0 obj +<< +/C /A5 +/K 684 +/P 1813 0 R +/Pg 21 0 R +/S /Span +>> +endobj +685 0 obj +<< +/K [685 686] +/P 1814 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +686 0 obj +<< +/C /A5 +/K 687 +/P 1815 0 R +/Pg 21 0 R +/S /Span +>> +endobj +687 0 obj +<< +/C /A5 +/K 688 +/P 1815 0 R +/Pg 21 0 R +/S /Span +>> +endobj +688 0 obj +<< +/K [689 690] +/P 1816 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +689 0 obj +<< +/C /A5 +/K 691 +/P 1817 0 R +/Pg 21 0 R +/S /Span +>> +endobj +690 0 obj +<< +/C /A5 +/K 692 +/P 1817 0 R +/Pg 21 0 R +/S /Span +>> +endobj +691 0 obj +<< +/K [693 694] +/P 1818 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +692 0 obj +<< +/C /A5 +/K 695 +/P 1819 0 R +/Pg 21 0 R +/S /Span +>> +endobj +693 0 obj +<< +/C /A5 +/K 696 +/P 1819 0 R +/Pg 21 0 R +/S /Span +>> +endobj +694 0 obj +<< +/K 697 +/P 1820 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +695 0 obj +<< +/C /A5 +/K 698 +/P 1821 0 R +/Pg 21 0 R +/S /Span +>> +endobj +696 0 obj +<< +/C /A5 +/K 699 +/P 1821 0 R +/Pg 21 0 R +/S /Span +>> +endobj +697 0 obj +<< +/K [700 701] +/P 1822 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +698 0 obj +<< +/C /A5 +/K 702 +/P 1823 0 R +/Pg 21 0 R +/S /Span +>> +endobj +699 0 obj +<< +/C /A5 +/K 703 +/P 1823 0 R +/Pg 21 0 R +/S /Span +>> +endobj +700 0 obj +<< +/K 704 +/P 1824 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +701 0 obj +<< +/C /Pa12 +/K 705 +/P 1825 0 R +/Pg 21 0 R +/S /Tab._Versal_bold_wei +>> +endobj +702 0 obj +<< +/C /Pa19 +/K [706 707 708 709 710 711] +/P 1826 0 R +/Pg 21 0 R +/S /Kastenlauftext +>> +endobj +703 0 obj +<< +/C /Pa19 +/K [712 713 714 704 0 R 716 717 705 0 R 719 720 721 722] +/P 1826 0 R +/Pg 21 0 R +/S /Kastenlauftext +>> +endobj +704 0 obj +<< +/ActualText +/K 715 +/P 703 0 R +/Pg 21 0 R +/S /Span +>> +endobj +705 0 obj +<< +/ActualText +/K 718 +/P 703 0 R +/Pg 21 0 R +/S /Span +>> +endobj +706 0 obj +<< +/C /Pa19 +/K 723 +/P 1826 0 R +/Pg 21 0 R +/S /Kastenlauftext +>> +endobj +707 0 obj +<< +/C /A5 +/K 724 +/P 1827 0 R +/Pg 21 0 R +/S /Span +>> +endobj +708 0 obj +<< +/C /A5 +/K 725 +/P 1827 0 R +/Pg 21 0 R +/S /Span +>> +endobj +709 0 obj +<< +/K [726 727] +/P 1828 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +710 0 obj +<< +/C /A5 +/K 728 +/P 1829 0 R +/Pg 21 0 R +/S /Span +>> +endobj +711 0 obj +<< +/C /A5 +/K 729 +/P 1829 0 R +/Pg 21 0 R +/S /Span +>> +endobj +712 0 obj +<< +/K [730 731] +/P 1830 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +713 0 obj +<< +/C /A5 +/K 732 +/P 1831 0 R +/Pg 21 0 R +/S /Span +>> +endobj +714 0 obj +<< +/C /A5 +/K 733 +/P 1831 0 R +/Pg 21 0 R +/S /Span +>> +endobj +715 0 obj +<< +/K 734 +/P 1832 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +716 0 obj +<< +/C /Pa10 +/K 735 +/P 313 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +717 0 obj +<< +/C /Pa2 +/K [736 737 738 718 0 R 740 719 0 R 742 743 744 745 720 0 R << +/MCID 747 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 748 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 749 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 750 +/Pg 22 0 R +/Type /MCR +>>] +/P 313 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +718 0 obj +<< +/ActualText +/K 739 +/P 717 0 R +/Pg 21 0 R +/S /Span +>> +endobj +719 0 obj +<< +/ActualText +/K 741 +/P 717 0 R +/Pg 21 0 R +/S /Span +>> +endobj +720 0 obj +<< +/ActualText +/K 746 +/P 717 0 R +/Pg 21 0 R +/S /Span +>> +endobj +721 0 obj +<< +/C /Pa3 +/K [751 752 753 722 0 R 755 756] +/P 313 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +722 0 obj +<< +/ActualText +/K 754 +/P 721 0 R +/Pg 22 0 R +/S /Span +>> +endobj +723 0 obj +<< +/C /Pa14 +/K 757 +/P 313 0 R +/Pg 22 0 R +/S /Zwischenhead_3 +>> +endobj +724 0 obj +<< +/C /Pa2 +/K [758 759] +/P 313 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +725 0 obj +<< +/C /A5 +/K 760 +/P 1833 0 R +/Pg 22 0 R +/S /Span +>> +endobj +726 0 obj +<< +/C /A5 +/K 761 +/P 1833 0 R +/Pg 22 0 R +/S /Span +>> +endobj +727 0 obj +<< +/C /A6 +/K 762 +/P 729 0 R +/Pg 22 0 R +/S /Span +>> +endobj +728 0 obj +<< +/C /A6 +/K 763 +/P 729 0 R +/Pg 22 0 R +/S /Span +>> +endobj +729 0 obj +<< +/K [727 0 R 728 0 R 764 765 766 767 768 730 0 R 770 771] +/P 1834 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +730 0 obj +<< +/ActualText +/K 769 +/P 729 0 R +/Pg 22 0 R +/S /Span +>> +endobj +731 0 obj +<< +/C /A5 +/K 772 +/P 1835 0 R +/Pg 22 0 R +/S /Span +>> +endobj +732 0 obj +<< +/C /A5 +/K 773 +/P 1835 0 R +/Pg 22 0 R +/S /Span +>> +endobj +733 0 obj +<< +/C /A6 +/K 774 +/P 734 0 R +/Pg 22 0 R +/S /Span +>> +endobj +734 0 obj +<< +/K [733 0 R 775 776 777 778 779 780 781 735 0 R 783 784] +/P 1836 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +735 0 obj +<< +/ActualText +/K 782 +/P 734 0 R +/Pg 22 0 R +/S /Span +>> +endobj +736 0 obj +<< +/C /A5 +/K 785 +/P 1837 0 R +/Pg 22 0 R +/S /Span +>> +endobj +737 0 obj +<< +/C /A5 +/K 786 +/P 1837 0 R +/Pg 22 0 R +/S /Span +>> +endobj +738 0 obj +<< +/C /A6 +/K 787 +/P 739 0 R +/Pg 22 0 R +/S /Span +>> +endobj +739 0 obj +<< +/K [738 0 R 788 789 790 791 792 793 794] +/P 1838 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +740 0 obj +<< +/C /A5 +/K 795 +/P 1839 0 R +/Pg 22 0 R +/S /Span +>> +endobj +741 0 obj +<< +/C /A5 +/K 796 +/P 1839 0 R +/Pg 22 0 R +/S /Span +>> +endobj +742 0 obj +<< +/C /A6 +/K 797 +/P 743 0 R +/Pg 22 0 R +/S /Span +>> +endobj +743 0 obj +<< +/K [742 0 R 798 799 744 0 R 801 802 803 804 805 806 807 808 809 751 0 R] +/P 1840 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +744 0 obj +<< +/ActualText +/K 800 +/P 743 0 R +/Pg 22 0 R +/S /Span +>> +endobj +745 0 obj +<< +/C /A4 +/K 810 +/P 751 0 R +/Pg 22 0 R +/S /Span +>> +endobj +746 0 obj +<< +/C /A5 +/K 811 +/P 1841 0 R +/Pg 22 0 R +/S /Span +>> +endobj +747 0 obj +<< +/C /A5 +/K 812 +/P 1841 0 R +/Pg 22 0 R +/S /Span +>> +endobj +748 0 obj +<< +/C /A6 +/K 813 +/P 749 0 R +/Pg 22 0 R +/S /Span +>> +endobj +749 0 obj +<< +/K [748 0 R 814 750 0 R 816 817 818 819 820 << +/MCID 821 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 822 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 823 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 824 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 825 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 826 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 827 +/Pg 23 0 R +/Type /MCR +>>] +/P 1842 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +750 0 obj +<< +/ActualText +/K 815 +/P 749 0 R +/Pg 22 0 R +/S /Span +>> +endobj +751 0 obj +<< +/K [196 0 R 745 0 R] +/P 743 0 R +/S /Reference +>> +endobj +752 0 obj +<< +/C /Pa14 +/K 828 +/P 313 0 R +/Pg 23 0 R +/S /Zwischenhead_3 +>> +endobj +753 0 obj +<< +/C /Pa2 +/K [829 830 831 832 833 834 835] +/P 313 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +754 0 obj +<< +/C /Pa3 +/K [836 837 838 755 0 R 840 841 842 756 0 R 844 845 757 0 R 847 848] +/P 313 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +755 0 obj +<< +/ActualText +/K 839 +/P 754 0 R +/Pg 23 0 R +/S /Span +>> +endobj +756 0 obj +<< +/ActualText +/K 843 +/P 754 0 R +/Pg 23 0 R +/S /Span +>> +endobj +757 0 obj +<< +/ActualText +/K 846 +/P 754 0 R +/Pg 23 0 R +/S /Span +>> +endobj +758 0 obj +<< +/C /Pa10 +/K 849 +/P 313 0 R +/Pg 23 0 R +/S /Zwischenhead_2 +>> +endobj +759 0 obj +<< +/C /Pa2 +/K [850 760 0 R 852 853 761 0 R 855 856] +/P 313 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +760 0 obj +<< +/ActualText +/K 851 +/P 759 0 R +/Pg 23 0 R +/S /Span +>> +endobj +761 0 obj +<< +/ActualText +/K 854 +/P 759 0 R +/Pg 23 0 R +/S /Span +>> +endobj +762 0 obj +<< +/C /Pa3 +/K [857 858 859 860 763 0 R 862 863 764 0 R 865 866 867 868 869 870] +/P 313 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +763 0 obj +<< +/ActualText +/K 861 +/P 762 0 R +/Pg 23 0 R +/S /Span +>> +endobj +764 0 obj +<< +/ActualText +/K 864 +/P 762 0 R +/Pg 23 0 R +/S /Span +>> +endobj +765 0 obj +<< +/C /Pa3 +/K [871 872 873 874 875 876] +/P 313 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +766 0 obj +<< +/C /Pa9 +/K [877 878 879 880] +/P 321 0 R +/Pg 23 0 R +/S /Einklinker-Text__rec +>> +endobj +767 0 obj +<< +/C /Pa3 +/K [881 882 883 768 0 R 885 769 0 R 887 770 0 R 889 890] +/P 313 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +768 0 obj +<< +/ActualText +/K 884 +/P 767 0 R +/Pg 24 0 R +/S /Span +>> +endobj +769 0 obj +<< +/ActualText +/K 886 +/P 767 0 R +/Pg 24 0 R +/S /Span +>> +endobj +770 0 obj +<< +/ActualText +/K 888 +/P 767 0 R +/Pg 24 0 R +/S /Span +>> +endobj +771 0 obj +<< +/C /Pa3 +/K [891 892 772 0 R 894 895 773 0 R 897 898 899] +/P 313 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +772 0 obj +<< +/ActualText +/K 893 +/P 771 0 R +/Pg 24 0 R +/S /Span +>> +endobj +773 0 obj +<< +/ActualText +/K 896 +/P 771 0 R +/Pg 24 0 R +/S /Span +>> +endobj +774 0 obj +<< +/C /Pa10 +/K 900 +/P 313 0 R +/Pg 24 0 R +/S /Zwischenhead_2 +>> +endobj +775 0 obj +<< +/C /Pa2 +/K [901 776 0 R 903 777 0 R 905 906] +/P 313 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +776 0 obj +<< +/ActualText +/K 902 +/P 775 0 R +/Pg 24 0 R +/S /Span +>> +endobj +777 0 obj +<< +/ActualText +/K 904 +/P 775 0 R +/Pg 24 0 R +/S /Span +>> +endobj +778 0 obj +<< +/C /Pa3 +/K [907 908 779 0 R 910 911 912 913 780 0 R 915 916 917 918] +/P 313 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +779 0 obj +<< +/ActualText +/K 909 +/P 778 0 R +/Pg 24 0 R +/S /Span +>> +endobj +780 0 obj +<< +/ActualText +/K 914 +/P 778 0 R +/Pg 24 0 R +/S /Span +>> +endobj +781 0 obj +<< +/C /Pa3 +/K [919 920 921 922 923 782 0 R 925 926 783 0 R 928 929 930 931 784 0 R 933 785 0 R +935] +/P 313 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +782 0 obj +<< +/ActualText +/K 924 +/P 781 0 R +/Pg 24 0 R +/S /Span +>> +endobj +783 0 obj +<< +/ActualText +/K 927 +/P 781 0 R +/Pg 24 0 R +/S /Span +>> +endobj +784 0 obj +<< +/ActualText +/K 932 +/P 781 0 R +/Pg 24 0 R +/S /Span +>> +endobj +785 0 obj +<< +/ActualText +/K 934 +/P 781 0 R +/Pg 24 0 R +/S /Span +>> +endobj +786 0 obj +<< +/C /Pa3 +/K [936 937 938 939 787 0 R] +/P 313 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +787 0 obj +<< +/ActualText +/K 940 +/P 786 0 R +/Pg 24 0 R +/S /Span +>> +endobj +788 0 obj +<< +/C /Pa9 +/K [941 789 0 R 943 944 790 0 R 946 947] +/P 322 0 R +/Pg 24 0 R +/S /Einklinker-Text__rec +>> +endobj +789 0 obj +<< +/ActualText +/K 942 +/P 788 0 R +/Pg 24 0 R +/S /Span +>> +endobj +790 0 obj +<< +/ActualText +/K 945 +/P 788 0 R +/Pg 24 0 R +/S /Span +>> +endobj +791 0 obj +<< +/C /Pa3 +/K [979 980 981 982 792 0 R 984 793 0 R 986 987 988 989 990 991 794 0 R 993] +/P 313 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +792 0 obj +<< +/ActualText +/K 983 +/P 791 0 R +/Pg 26 0 R +/S /Span +>> +endobj +793 0 obj +<< +/ActualText +/K 985 +/P 791 0 R +/Pg 26 0 R +/S /Span +>> +endobj +794 0 obj +<< +/ActualText +/K 992 +/P 791 0 R +/Pg 26 0 R +/S /Span +>> +endobj +795 0 obj +<< +/C /Pa14 +/K 994 +/P 313 0 R +/Pg 26 0 R +/S /Zwischenhead_3 +>> +endobj +796 0 obj +<< +/C /Pa2 +/K [995 996 997 998 999 1000 1001] +/P 313 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +797 0 obj +<< +/C /Pa3 +/K [1002 798 0 R 1004 1005 1006 1007 799 0 R 1009 1010 800 0 R 1012 1013 1014] +/P 313 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +798 0 obj +<< +/ActualText +/K 1003 +/P 797 0 R +/Pg 26 0 R +/S /Span +>> +endobj +799 0 obj +<< +/ActualText +/K 1008 +/P 797 0 R +/Pg 26 0 R +/S /Span +>> +endobj +800 0 obj +<< +/ActualText +/K 1011 +/P 797 0 R +/Pg 26 0 R +/S /Span +>> +endobj +801 0 obj +<< +/C /Pa3 +/K [1015 1016 1017 1018 1019 1020 1021 802 0 R 1023 1024 1025] +/P 313 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +802 0 obj +<< +/ActualText +/K 1022 +/P 801 0 R +/Pg 26 0 R +/S /Span +>> +endobj +803 0 obj +<< +/C /Pa3 +/K [1026 804 0 R 1028 805 0 R 1030 1031 1032 1033] +/P 313 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +804 0 obj +<< +/ActualText +/K 1027 +/P 803 0 R +/Pg 26 0 R +/S /Span +>> +endobj +805 0 obj +<< +/ActualText +/K 1029 +/P 803 0 R +/Pg 26 0 R +/S /Span +>> +endobj +806 0 obj +<< +/C /Pa10 +/K 1127 +/P 313 0 R +/Pg 28 0 R +/S /Zwischenhead_2 +>> +endobj +807 0 obj +<< +/C /Pa2 +/K [1128 1129 1130 808 0 R 1132 1133 1134] +/P 313 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +808 0 obj +<< +/ActualText +/K 1131 +/P 807 0 R +/Pg 28 0 R +/S /Span +>> +endobj +809 0 obj +<< +/C /Pa3 +/K [1135 810 0 R 1137 1138 1139 1140 1141 1142 1143] +/P 313 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +810 0 obj +<< +/ActualText +/K 1136 +/P 809 0 R +/Pg 28 0 R +/S /Span +>> +endobj +811 0 obj +<< +/C /Pa3 +/K [1144 1145 1146 1147] +/P 313 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +812 0 obj +<< +/C /Pa3 +/K [1148 1149 1150 1151 813 0 R 1153 1154] +/P 313 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +813 0 obj +<< +/ActualText +/K 1152 +/P 812 0 R +/Pg 28 0 R +/S /Span +>> +endobj +814 0 obj +<< +/C /Pa3 +/K [1155 1156 1157 815 0 R 1159] +/P 313 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +815 0 obj +<< +/ActualText +/K 1158 +/P 814 0 R +/Pg 28 0 R +/S /Span +>> +endobj +816 0 obj +<< +/C /Pa3 +/K [1160 817 0 R 1162 1163] +/P 313 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +817 0 obj +<< +/ActualText +/K 1161 +/P 816 0 R +/Pg 28 0 R +/S /Span +>> +endobj +818 0 obj +<< +/C /A5 +/K 1164 +/P 1843 0 R +/Pg 28 0 R +/S /Span +>> +endobj +819 0 obj +<< +/C /A5 +/K 1165 +/P 1843 0 R +/Pg 28 0 R +/S /Span +>> +endobj +820 0 obj +<< +/K 1166 +/P 1844 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +821 0 obj +<< +/C /A5 +/K 1167 +/P 1845 0 R +/Pg 28 0 R +/S /Span +>> +endobj +822 0 obj +<< +/C /A5 +/K 1168 +/P 1845 0 R +/Pg 28 0 R +/S /Span +>> +endobj +823 0 obj +<< +/K [1169 1170] +/P 1846 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +824 0 obj +<< +/C /A5 +/K 1171 +/P 1847 0 R +/Pg 28 0 R +/S /Span +>> +endobj +825 0 obj +<< +/C /A5 +/K 1172 +/P 1847 0 R +/Pg 28 0 R +/S /Span +>> +endobj +826 0 obj +<< +/K 1173 +/P 1848 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +827 0 obj +<< +/C /A5 +/K 1174 +/P 1849 0 R +/Pg 28 0 R +/S /Span +>> +endobj +828 0 obj +<< +/C /A5 +/K 1175 +/P 1849 0 R +/Pg 28 0 R +/S /Span +>> +endobj +829 0 obj +<< +/K 1176 +/P 1850 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +830 0 obj +<< +/C /A5 +/K 1177 +/P 1851 0 R +/Pg 28 0 R +/S /Span +>> +endobj +831 0 obj +<< +/C /A5 +/K 1178 +/P 1851 0 R +/Pg 28 0 R +/S /Span +>> +endobj +832 0 obj +<< +/K 1179 +/P 1852 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +833 0 obj +<< +/C /A5 +/K 1180 +/P 1853 0 R +/Pg 28 0 R +/S /Span +>> +endobj +834 0 obj +<< +/C /A5 +/K 1181 +/P 1853 0 R +/Pg 28 0 R +/S /Span +>> +endobj +835 0 obj +<< +/K 1182 +/P 1854 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +836 0 obj +<< +/C /A5 +/K 1183 +/P 1855 0 R +/Pg 28 0 R +/S /Span +>> +endobj +837 0 obj +<< +/C /A5 +/K 1184 +/P 1855 0 R +/Pg 28 0 R +/S /Span +>> +endobj +838 0 obj +<< +/K 1185 +/P 1856 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +839 0 obj +<< +/C /A5 +/K 1186 +/P 1857 0 R +/Pg 28 0 R +/S /Span +>> +endobj +840 0 obj +<< +/C /A5 +/K 1187 +/P 1857 0 R +/Pg 28 0 R +/S /Span +>> +endobj +841 0 obj +<< +/K 1188 +/P 1858 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +842 0 obj +<< +/C /A5 +/K 1189 +/P 1859 0 R +/Pg 28 0 R +/S /Span +>> +endobj +843 0 obj +<< +/C /A5 +/K 1190 +/P 1859 0 R +/Pg 28 0 R +/S /Span +>> +endobj +844 0 obj +<< +/K 1191 +/P 1860 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +845 0 obj +<< +/C /A5 +/K 1192 +/P 1861 0 R +/Pg 28 0 R +/S /Span +>> +endobj +846 0 obj +<< +/C /A5 +/K 1193 +/P 1861 0 R +/Pg 28 0 R +/S /Span +>> +endobj +847 0 obj +<< +/K [1194 1195] +/P 1862 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +848 0 obj +<< +/C /A5 +/K 1196 +/P 1863 0 R +/Pg 28 0 R +/S /Span +>> +endobj +849 0 obj +<< +/C /A5 +/K 1197 +/P 1863 0 R +/Pg 28 0 R +/S /Span +>> +endobj +850 0 obj +<< +/K 1198 +/P 1864 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +851 0 obj +<< +/C /A5 +/K 1199 +/P 1865 0 R +/Pg 28 0 R +/S /Span +>> +endobj +852 0 obj +<< +/C /A5 +/K 1200 +/P 1865 0 R +/Pg 28 0 R +/S /Span +>> +endobj +853 0 obj +<< +/K 1201 +/P 1866 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +854 0 obj +<< +/C /Pa10 +/K 1202 +/P 313 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +855 0 obj +<< +/C /Pa2 +/K [1203 1204 1205 1206 887 0 R 1208] +/P 313 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +856 0 obj +<< +/C /A4 +/K 1207 +/P 887 0 R +/Pg 29 0 R +/S /Span +>> +endobj +857 0 obj +<< +/C /Pa3 +/K [1209 1210 1211 1212 858 0 R 1214] +/P 313 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +858 0 obj +<< +/ActualText +/K 1213 +/P 857 0 R +/Pg 29 0 R +/S /Span +>> +endobj +859 0 obj +<< +/C /Pa3 +/K 1215 +/P 313 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +860 0 obj +<< +/C /A5 +/K 1216 +/P 1867 0 R +/Pg 29 0 R +/S /Span +>> +endobj +861 0 obj +<< +/C /A5 +/K 1217 +/P 1867 0 R +/Pg 29 0 R +/S /Span +>> +endobj +862 0 obj +<< +/K 1218 +/P 1868 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +863 0 obj +<< +/C /A5 +/K 1219 +/P 1869 0 R +/Pg 29 0 R +/S /Span +>> +endobj +864 0 obj +<< +/C /A5 +/K 1220 +/P 1869 0 R +/Pg 29 0 R +/S /Span +>> +endobj +865 0 obj +<< +/K [1221 1222] +/P 1870 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +866 0 obj +<< +/C /A5 +/K 1223 +/P 1871 0 R +/Pg 29 0 R +/S /Span +>> +endobj +867 0 obj +<< +/C /A5 +/K 1224 +/P 1871 0 R +/Pg 29 0 R +/S /Span +>> +endobj +868 0 obj +<< +/K [1225 1226 1227 1228] +/P 1872 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +869 0 obj +<< +/C /A5 +/K 1229 +/P 1873 0 R +/Pg 29 0 R +/S /Span +>> +endobj +870 0 obj +<< +/C /A5 +/K 1230 +/P 1873 0 R +/Pg 29 0 R +/S /Span +>> +endobj +871 0 obj +<< +/K 1231 +/P 1874 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +872 0 obj +<< +/C /A5 +/K 1232 +/P 1875 0 R +/Pg 29 0 R +/S /Span +>> +endobj +873 0 obj +<< +/C /A5 +/K 1233 +/P 1875 0 R +/Pg 29 0 R +/S /Span +>> +endobj +874 0 obj +<< +/K 1234 +/P 1876 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +875 0 obj +<< +/C /A5 +/K 1235 +/P 1877 0 R +/Pg 29 0 R +/S /Span +>> +endobj +876 0 obj +<< +/C /A5 +/K 1236 +/P 1877 0 R +/Pg 29 0 R +/S /Span +>> +endobj +877 0 obj +<< +/K 1237 +/P 1878 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +878 0 obj +<< +/C /A5 +/K 1238 +/P 1879 0 R +/Pg 29 0 R +/S /Span +>> +endobj +879 0 obj +<< +/C /A5 +/K 1239 +/P 1879 0 R +/Pg 29 0 R +/S /Span +>> +endobj +880 0 obj +<< +/K 1240 +/P 1880 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +881 0 obj +<< +/C /A5 +/K 1241 +/P 1881 0 R +/Pg 29 0 R +/S /Span +>> +endobj +882 0 obj +<< +/C /A5 +/K 1242 +/P 1881 0 R +/Pg 29 0 R +/S /Span +>> +endobj +883 0 obj +<< +/K 1243 +/P 1882 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +884 0 obj +<< +/C /Pa3 +/K [1244 1245 1246] +/P 313 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +885 0 obj +<< +/C /Pa12 +/K 1247 +/P 1883 0 R +/Pg 29 0 R +/S /Tab._Versal_bold_wei +>> +endobj +886 0 obj +<< +/C /Pa19 +/K [1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259] +/P 1884 0 R +/Pg 29 0 R +/S /Kastenlauftext +>> +endobj +887 0 obj +<< +/K [203 0 R 856 0 R] +/P 855 0 R +/S /Reference +>> +endobj +888 0 obj +<< +/C /Pa3 +/K [1260 889 0 R 1262 1263 1264 1265 1266 1267 1268 890 0 R 1270 1271 1272 1273 1274 1275] +/P 313 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +889 0 obj +<< +/ActualText +/K 1261 +/P 888 0 R +/Pg 30 0 R +/S /Span +>> +endobj +890 0 obj +<< +/ActualText +/K 1269 +/P 888 0 R +/Pg 30 0 R +/S /Span +>> +endobj +891 0 obj +<< +/C /Pa3 +/K [1276 1277 1278 892 0 R 1280 1281] +/P 313 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +892 0 obj +<< +/ActualText +/K 1279 +/P 891 0 R +/Pg 30 0 R +/S /Span +>> +endobj +893 0 obj +<< +/C /Pa10 +/K 1282 +/P 313 0 R +/Pg 30 0 R +/S /Zwischenhead_2 +>> +endobj +894 0 obj +<< +/C /Pa2 +/K [1283 1284] +/P 313 0 R +/Pg 30 0 R +/S /Lauftext_1._Abs +>> +endobj +895 0 obj +<< +/C /A5 +/K 1285 +/P 1885 0 R +/Pg 30 0 R +/S /Span +>> +endobj +896 0 obj +<< +/C /A5 +/K 1286 +/P 1885 0 R +/Pg 30 0 R +/S /Span +>> +endobj +897 0 obj +<< +/K 1287 +/P 1886 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +898 0 obj +<< +/C /A5 +/K 1288 +/P 1887 0 R +/Pg 30 0 R +/S /Span +>> +endobj +899 0 obj +<< +/C /A5 +/K 1289 +/P 1887 0 R +/Pg 30 0 R +/S /Span +>> +endobj +900 0 obj +<< +/K [1290 1291] +/P 1888 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +901 0 obj +<< +/C /A5 +/K 1292 +/P 1889 0 R +/Pg 30 0 R +/S /Span +>> +endobj +902 0 obj +<< +/C /A5 +/K 1293 +/P 1889 0 R +/Pg 30 0 R +/S /Span +>> +endobj +903 0 obj +<< +/K [1294 1295] +/P 1890 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +904 0 obj +<< +/C /A5 +/K 1296 +/P 1891 0 R +/Pg 30 0 R +/S /Span +>> +endobj +905 0 obj +<< +/C /A5 +/K 1297 +/P 1891 0 R +/Pg 30 0 R +/S /Span +>> +endobj +906 0 obj +<< +/K [1298 1299] +/P 1892 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +907 0 obj +<< +/C /A5 +/K 1300 +/P 1893 0 R +/Pg 30 0 R +/S /Span +>> +endobj +908 0 obj +<< +/C /A5 +/K 1301 +/P 1893 0 R +/Pg 30 0 R +/S /Span +>> +endobj +909 0 obj +<< +/K [1302 1303 910 0 R 1305 1306 911 0 R 1308] +/P 1894 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +910 0 obj +<< +/ActualText +/K 1304 +/P 909 0 R +/Pg 30 0 R +/S /Span +>> +endobj +911 0 obj +<< +/ActualText +/K 1307 +/P 909 0 R +/Pg 30 0 R +/S /Span +>> +endobj +912 0 obj +<< +/C /Pa3 +/K [1309 1310 1311 913 0 R 1313 1314 1315 1316 1317] +/P 313 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +913 0 obj +<< +/ActualText +/K 1312 +/P 912 0 R +/Pg 30 0 R +/S /Span +>> +endobj +914 0 obj +<< +/C /Pa3 +/K [1318 1319 915 0 R 1321 1322 1323 1324] +/P 313 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +915 0 obj +<< +/ActualText +/K 1320 +/P 914 0 R +/Pg 31 0 R +/S /Span +>> +endobj +916 0 obj +<< +/C /Pa3 +/K [1325 1326 917 0 R 1328 918 0 R 1330 1331 1332] +/P 313 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +917 0 obj +<< +/ActualText +/K 1327 +/P 916 0 R +/Pg 31 0 R +/S /Span +>> +endobj +918 0 obj +<< +/ActualText +/K 1329 +/P 916 0 R +/Pg 31 0 R +/S /Span +>> +endobj +919 0 obj +<< +/C /Pa1 +/K 1333 +/P 313 0 R +/Pg 31 0 R +/S /Zwischenhead_1 +>> +endobj +920 0 obj +<< +/C /Pa10 +/K 1334 +/P 313 0 R +/Pg 31 0 R +/S /Zwischenhead_2 +>> +endobj +921 0 obj +<< +/C /Pa2 +/K [1335 1336 1337 1338 1339 1340 1341 1342 1343] +/P 313 0 R +/Pg 31 0 R +/S /Lauftext_1._Abs +>> +endobj +922 0 obj +<< +/C /Pa3 +/K [1344 1345] +/P 313 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +923 0 obj +<< +/C /A5 +/K 1346 +/P 1895 0 R +/Pg 31 0 R +/S /Span +>> +endobj +924 0 obj +<< +/C /A5 +/K 1347 +/P 1895 0 R +/Pg 31 0 R +/S /Span +>> +endobj +925 0 obj +<< +/K [1348 1349] +/P 1896 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +926 0 obj +<< +/C /A5 +/K 1350 +/P 1897 0 R +/Pg 31 0 R +/S /Span +>> +endobj +927 0 obj +<< +/C /A5 +/K 1351 +/P 1897 0 R +/Pg 31 0 R +/S /Span +>> +endobj +928 0 obj +<< +/K 1352 +/P 1898 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +929 0 obj +<< +/C /A5 +/K 1353 +/P 1899 0 R +/Pg 31 0 R +/S /Span +>> +endobj +930 0 obj +<< +/C /A5 +/K 1354 +/P 1899 0 R +/Pg 31 0 R +/S /Span +>> +endobj +931 0 obj +<< +/K 1355 +/P 1900 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +932 0 obj +<< +/C /A5 +/K 1356 +/P 1901 0 R +/Pg 31 0 R +/S /Span +>> +endobj +933 0 obj +<< +/C /A5 +/K 1357 +/P 1901 0 R +/Pg 31 0 R +/S /Span +>> +endobj +934 0 obj +<< +/K 1358 +/P 1902 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +935 0 obj +<< +/C /A5 +/K 1359 +/P 1903 0 R +/Pg 31 0 R +/S /Span +>> +endobj +936 0 obj +<< +/C /A5 +/K 1360 +/P 1903 0 R +/Pg 31 0 R +/S /Span +>> +endobj +937 0 obj +<< +/K 1361 +/P 1904 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +938 0 obj +<< +/C /A5 +/K 1362 +/P 1905 0 R +/Pg 31 0 R +/S /Span +>> +endobj +939 0 obj +<< +/C /A5 +/K 1363 +/P 1905 0 R +/Pg 31 0 R +/S /Span +>> +endobj +940 0 obj +<< +/K 1364 +/P 1906 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +941 0 obj +<< +/C /Pa3 +/K [1365 1366 1367] +/P 313 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +942 0 obj +<< +/C /A5 +/K 1368 +/P 1907 0 R +/Pg 31 0 R +/S /Span +>> +endobj +943 0 obj +<< +/C /A5 +/K 1369 +/P 1907 0 R +/Pg 31 0 R +/S /Span +>> +endobj +944 0 obj +<< +/K 1370 +/P 1908 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +945 0 obj +<< +/C /A5 +/K 1371 +/P 1909 0 R +/Pg 31 0 R +/S /Span +>> +endobj +946 0 obj +<< +/C /A5 +/K 1372 +/P 1909 0 R +/Pg 31 0 R +/S /Span +>> +endobj +947 0 obj +<< +/K 1373 +/P 1910 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +948 0 obj +<< +/C /A5 +/K 1374 +/P 1911 0 R +/Pg 31 0 R +/S /Span +>> +endobj +949 0 obj +<< +/C /A5 +/K 1375 +/P 1911 0 R +/Pg 31 0 R +/S /Span +>> +endobj +950 0 obj +<< +/K 1376 +/P 1912 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +951 0 obj +<< +/C /A5 +/K 1377 +/P 1913 0 R +/Pg 31 0 R +/S /Span +>> +endobj +952 0 obj +<< +/C /A5 +/K 1378 +/P 1913 0 R +/Pg 31 0 R +/S /Span +>> +endobj +953 0 obj +<< +/K 1379 +/P 1914 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +954 0 obj +<< +/C /Pa14 +/K 1380 +/P 313 0 R +/Pg 32 0 R +/S /Zwischenhead_3 +>> +endobj +955 0 obj +<< +/C /Pa2 +/K [1381 956 0 R 1383 1384 1385 957 0 R 1387 1388 1389 1390 1391] +/P 313 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +956 0 obj +<< +/ActualText +/K 1382 +/P 955 0 R +/Pg 32 0 R +/S /Span +>> +endobj +957 0 obj +<< +/ActualText +/K 1386 +/P 955 0 R +/Pg 32 0 R +/S /Span +>> +endobj +958 0 obj +<< +/C /Pa12 +/K 1392 +/P 1915 0 R +/Pg 32 0 R +/S /Tab._Versal_bold_wei +>> +endobj +959 0 obj +<< +/C /Pa12 +/K 1393 +/P 1916 0 R +/Pg 32 0 R +/S /Tab._Versal_bold_wei +>> +endobj +960 0 obj +<< +/C /Pa12 +/K 1394 +/P 1917 0 R +/Pg 32 0 R +/S /Tab._Versal_bold_wei +>> +endobj +961 0 obj +<< +/C /Pa12 +/K [1395 962 0 R 1397] +/P 1918 0 R +/Pg 32 0 R +/S /Tab._Versal_bold_sch +>> +endobj +962 0 obj +<< +/ActualText +/K 1396 +/P 961 0 R +/Pg 32 0 R +/S /Span +>> +endobj +963 0 obj +<< +/C /A5 +/K 1398 +/P 1919 0 R +/Pg 32 0 R +/S /Span +>> +endobj +964 0 obj +<< +/C /A5 +/K 1399 +/P 1919 0 R +/Pg 32 0 R +/S /Span +>> +endobj +965 0 obj +<< +/K 1400 +/P 1920 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +966 0 obj +<< +/C /A5 +/K 1401 +/P 1921 0 R +/Pg 32 0 R +/S /Span +>> +endobj +967 0 obj +<< +/C /A5 +/K 1402 +/P 1921 0 R +/Pg 32 0 R +/S /Span +>> +endobj +968 0 obj +<< +/K [1403 1404 969 0 R 1406] +/P 1922 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +969 0 obj +<< +/ActualText +/K 1405 +/P 968 0 R +/Pg 32 0 R +/S /Span +>> +endobj +970 0 obj +<< +/C /A5 +/K 1407 +/P 1923 0 R +/Pg 32 0 R +/S /Span +>> +endobj +971 0 obj +<< +/C /A5 +/K 1408 +/P 1923 0 R +/Pg 32 0 R +/S /Span +>> +endobj +972 0 obj +<< +/K [1409 1410 973 0 R 1412 974 0 R 1414 975 0 R 1416] +/P 1924 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +973 0 obj +<< +/ActualText +/K 1411 +/P 972 0 R +/Pg 32 0 R +/S /Span +>> +endobj +974 0 obj +<< +/ActualText +/K 1413 +/P 972 0 R +/Pg 32 0 R +/S /Span +>> +endobj +975 0 obj +<< +/ActualText +/K 1415 +/P 972 0 R +/Pg 32 0 R +/S /Span +>> +endobj +976 0 obj +<< +/C /A5 +/K 1417 +/P 1925 0 R +/Pg 32 0 R +/S /Span +>> +endobj +977 0 obj +<< +/C /A5 +/K 1418 +/P 1925 0 R +/Pg 32 0 R +/S /Span +>> +endobj +978 0 obj +<< +/K [1419 979 0 R 1421] +/P 1926 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +979 0 obj +<< +/ActualText +/K 1420 +/P 978 0 R +/Pg 32 0 R +/S /Span +>> +endobj +980 0 obj +<< +/C /A5 +/K 1422 +/P 1927 0 R +/Pg 32 0 R +/S /Span +>> +endobj +981 0 obj +<< +/C /A5 +/K 1423 +/P 1927 0 R +/Pg 32 0 R +/S /Span +>> +endobj +982 0 obj +<< +/K [1424 1425 1426] +/P 1928 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +983 0 obj +<< +/C /A5 +/K 1427 +/P 1929 0 R +/Pg 32 0 R +/S /Span +>> +endobj +984 0 obj +<< +/C /A5 +/K 1428 +/P 1929 0 R +/Pg 32 0 R +/S /Span +>> +endobj +985 0 obj +<< +/K [1429 1430 1431] +/P 1930 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +986 0 obj +<< +/C /A5 +/K 1432 +/P 1931 0 R +/Pg 32 0 R +/S /Span +>> +endobj +987 0 obj +<< +/C /A5 +/K 1433 +/P 1931 0 R +/Pg 32 0 R +/S /Span +>> +endobj +988 0 obj +<< +/K [1434 989 0 R 1436 1437 1438] +/P 1932 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +989 0 obj +<< +/ActualText +/K 1435 +/P 988 0 R +/Pg 32 0 R +/S /Span +>> +endobj +990 0 obj +<< +/C /A5 +/K 1439 +/P 1933 0 R +/Pg 32 0 R +/S /Span +>> +endobj +991 0 obj +<< +/C /A5 +/K 1440 +/P 1933 0 R +/Pg 32 0 R +/S /Span +>> +endobj +992 0 obj +<< +/K [1441 993 0 R 1443 1444 1445] +/P 1934 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +993 0 obj +<< +/ActualText +/K 1442 +/P 992 0 R +/Pg 32 0 R +/S /Span +>> +endobj +994 0 obj +<< +/C /Pa12 +/K [1446 995 0 R 1448 1449] +/P 1935 0 R +/Pg 32 0 R +/S /Tab._Versal_bold_sch +>> +endobj +995 0 obj +<< +/ActualText +/K 1447 +/P 994 0 R +/Pg 32 0 R +/S /Span +>> +endobj +996 0 obj +<< +/C /A5 +/K 1450 +/P 1936 0 R +/Pg 32 0 R +/S /Span +>> +endobj +997 0 obj +<< +/C /A5 +/K 1451 +/P 1936 0 R +/Pg 32 0 R +/S /Span +>> +endobj +998 0 obj +<< +/K [1452 1453 999 0 R 1455 1000 0 R 1457 1458] +/P 1937 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +999 0 obj +<< +/ActualText +/K 1454 +/P 998 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1000 0 obj +<< +/ActualText +/K 1456 +/P 998 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1001 0 obj +<< +/C /A5 +/K 1459 +/P 1938 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1002 0 obj +<< +/C /A5 +/K 1460 +/P 1938 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1003 0 obj +<< +/K [1461 1462] +/P 1939 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1004 0 obj +<< +/C /A5 +/K 1463 +/P 1940 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1005 0 obj +<< +/C /A5 +/K 1464 +/P 1940 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1006 0 obj +<< +/K [1465 1466] +/P 1941 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1007 0 obj +<< +/C /A5 +/K 1467 +/P 1942 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1008 0 obj +<< +/C /A5 +/K 1468 +/P 1942 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1009 0 obj +<< +/K [1469 1470 1010 0 R 1472 1473 1474 1475] +/P 1943 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1010 0 obj +<< +/ActualText +/K 1471 +/P 1009 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1011 0 obj +<< +/C /A5 +/K 1476 +/P 1944 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1012 0 obj +<< +/C /A5 +/K 1477 +/P 1944 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1013 0 obj +<< +/K [1478 1014 0 R 1480 1481 1482] +/P 1945 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1014 0 obj +<< +/ActualText +/K 1479 +/P 1013 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1015 0 obj +<< +/C /A5 +/K 1483 +/P 1946 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1016 0 obj +<< +/C /A5 +/K 1484 +/P 1946 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1017 0 obj +<< +/C /A8 +/K 1485 +/P 1947 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1018 0 obj +<< +/C /A8 +/K 1486 +/P 1947 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1019 0 obj +<< +/C /A8 +/K 1487 +/P 1947 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1020 0 obj +<< +/C /A8 +/K 1488 +/P 1947 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1021 0 obj +<< +/C /A5 +/K 1489 +/P 1948 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1022 0 obj +<< +/C /A5 +/K 1490 +/P 1948 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1023 0 obj +<< +/K [1491 1492 1493] +/P 1949 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1024 0 obj +<< +/C /A5 +/K 1494 +/P 1950 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1025 0 obj +<< +/C /A5 +/K 1495 +/P 1950 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1026 0 obj +<< +/K [1496 1027 0 R 1498 1028 0 R 1500] +/P 1951 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1027 0 obj +<< +/ActualText +/K 1497 +/P 1026 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1028 0 obj +<< +/ActualText +/K 1499 +/P 1026 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1029 0 obj +<< +/C /A5 +/K 1501 +/P 1952 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1030 0 obj +<< +/C /A5 +/K 1502 +/P 1952 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1031 0 obj +<< +/K [1503 1032 0 R 1505 1506] +/P 1953 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1032 0 obj +<< +/ActualText +/K 1504 +/P 1031 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1033 0 obj +<< +/C /A5 +/K 1507 +/P 1954 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1034 0 obj +<< +/C /A5 +/K 1508 +/P 1954 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1035 0 obj +<< +/K [1509 1036 0 R 1511 1512 1513] +/P 1955 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1036 0 obj +<< +/ActualText +/K 1510 +/P 1035 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1037 0 obj +<< +/C /A5 +/K 1514 +/P 1956 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1038 0 obj +<< +/C /A5 +/K 1515 +/P 1956 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1039 0 obj +<< +/K [1516 1040 0 R 1518] +/P 1957 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +1040 0 obj +<< +/ActualText +/K 1517 +/P 1039 0 R +/Pg 32 0 R +/S /Span +>> +endobj +1041 0 obj +<< +/C /Pa10 +/K [1519 1520] +/P 326 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +1042 0 obj +<< +/C /A6 +/K 1521 +/P 1676 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1043 0 obj +<< +/C /Pa2 +/K [1522 1523 1524 1525 1526 1527 1528 1529] +/P 313 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +1044 0 obj +<< +/C /Pa3 +/K [1530 1531 1045 0 R 1533 1534 1535 1046 0 R 1537] +/P 313 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +1045 0 obj +<< +/ActualText +/K 1532 +/P 1044 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1046 0 obj +<< +/ActualText +/K 1536 +/P 1044 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1047 0 obj +<< +/C /Pa3 +/K [1538 1539 1540 1541 1542 1543 1544 1545 1546 1547] +/P 313 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +1048 0 obj +<< +/C /Pa3 +/K [1548 1549 1550 1049 0 R 1552 1050 0 R 1554] +/P 313 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +1049 0 obj +<< +/ActualText +/K 1551 +/P 1048 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1050 0 obj +<< +/ActualText +/K 1553 +/P 1048 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1051 0 obj +<< +/C /Pa3 +/K [1555 1052 0 R 1557 1558 1559 1560 1561] +/P 313 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +1052 0 obj +<< +/ActualText +/K 1556 +/P 1051 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1053 0 obj +<< +/C /Pa3 +/K [1562 1563 1564 1565 1054 0 R 1567 1568] +/P 313 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +1054 0 obj +<< +/ActualText +/K 1566 +/P 1053 0 R +/Pg 33 0 R +/S /Span +>> +endobj +1055 0 obj +<< +/C /Pa3 +/K 1569 +/P 313 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +1056 0 obj +<< +/C /A5 +/K 1570 +/P 1958 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1057 0 obj +<< +/C /A5 +/K 1571 +/P 1958 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1058 0 obj +<< +/K [1572 1573 1574 1575] +/P 1959 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +1059 0 obj +<< +/C /A5 +/K 1576 +/P 1960 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1060 0 obj +<< +/C /A5 +/K 1577 +/P 1960 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1061 0 obj +<< +/K [1578 1579 1580 1581 1582] +/P 1961 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +1062 0 obj +<< +/C /A5 +/K 1583 +/P 1962 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1063 0 obj +<< +/C /A5 +/K 1584 +/P 1962 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1064 0 obj +<< +/K [1585 1586 1587] +/P 1963 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +1065 0 obj +<< +/C /A5 +/K 1588 +/P 1964 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1066 0 obj +<< +/C /A5 +/K 1589 +/P 1964 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1067 0 obj +<< +/K [1590 1591 1592 1068 0 R 1594 1069 0 R 1596 1597 1598 1599] +/P 1965 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +1068 0 obj +<< +/ActualText +/K 1593 +/P 1067 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1069 0 obj +<< +/ActualText +/K 1595 +/P 1067 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1070 0 obj +<< +/C /Pa3 +/K [1600 1601 1071 0 R 1603 1604 1605 1606 1607 1608] +/P 313 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +1071 0 obj +<< +/ActualText +/K 1602 +/P 1070 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1072 0 obj +<< +/C /Pa14 +/K 1609 +/P 313 0 R +/Pg 34 0 R +/S /Zwischenhead_3 +>> +endobj +1073 0 obj +<< +/C /Pa2 +/K [1610 1074 0 R 1612 1613 1075 0 R 1615] +/P 313 0 R +/Pg 34 0 R +/S /Lauftext_1._Abs +>> +endobj +1074 0 obj +<< +/ActualText +/K 1611 +/P 1073 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1075 0 obj +<< +/ActualText +/K 1614 +/P 1073 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1076 0 obj +<< +/C /Pa3 +/K [1616 1617 1618 1619 1077 0 R 1621 1622 1623 1624 1625 1626] +/P 313 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +1077 0 obj +<< +/ActualText +/K 1620 +/P 1076 0 R +/Pg 34 0 R +/S /Span +>> +endobj +1078 0 obj +<< +/C /Pa10 +/K 1627 +/P 313 0 R +/Pg 35 0 R +/S /Zwischenhead_2 +>> +endobj +1079 0 obj +<< +/C /Pa2 +/K [1628 1629 1630 1631 1632 1633] +/P 313 0 R +/Pg 35 0 R +/S /Lauftext_1._Abs +>> +endobj +1080 0 obj +<< +/C /Pa3 +/K 1634 +/P 313 0 R +/Pg 35 0 R +/S /Lauftext +>> +endobj +1081 0 obj +<< +/C /A5 +/K 1635 +/P 1966 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1082 0 obj +<< +/C /A5 +/K 1636 +/P 1966 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1083 0 obj +<< +/K [1637 1638 1639 1640 1641 1642] +/P 1967 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1084 0 obj +<< +/C /A5 +/K 1643 +/P 1968 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1085 0 obj +<< +/C /A5 +/K 1644 +/P 1968 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1086 0 obj +<< +/K [1645 1646 1647] +/P 1969 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1087 0 obj +<< +/C /A5 +/K 1648 +/P 1970 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1088 0 obj +<< +/C /A5 +/K 1649 +/P 1970 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1089 0 obj +<< +/K [1650 1651] +/P 1971 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1090 0 obj +<< +/C /A5 +/K 1652 +/P 1972 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1091 0 obj +<< +/C /A5 +/K 1653 +/P 1972 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1092 0 obj +<< +/K 1654 +/P 1973 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1093 0 obj +<< +/C /A5 +/K 1655 +/P 1974 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1094 0 obj +<< +/C /A5 +/K 1656 +/P 1974 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1095 0 obj +<< +/K [1657 1658 1659 1660 1661] +/P 1975 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1096 0 obj +<< +/C /A5 +/K 1662 +/P 1976 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1097 0 obj +<< +/C /A5 +/K 1663 +/P 1976 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1098 0 obj +<< +/K [1664 1665 1666] +/P 1977 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1099 0 obj +<< +/C /A5 +/K 1667 +/P 1978 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1100 0 obj +<< +/C /A5 +/K 1668 +/P 1978 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1101 0 obj +<< +/K [1669 1670 1671] +/P 1979 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1102 0 obj +<< +/C /A5 +/K 1672 +/P 1980 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1103 0 obj +<< +/C /A5 +/K 1673 +/P 1980 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1104 0 obj +<< +/K [1674 1105 0 R 1676 1677] +/P 1981 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1105 0 obj +<< +/ActualText +/K 1675 +/P 1104 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1106 0 obj +<< +/C /A5 +/K 1678 +/P 1982 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1107 0 obj +<< +/C /A5 +/K 1679 +/P 1982 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1108 0 obj +<< +/K [1680 1681 1682 1683] +/P 1983 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1109 0 obj +<< +/C /A5 +/K 1684 +/P 1984 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1110 0 obj +<< +/C /A5 +/K 1685 +/P 1984 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1111 0 obj +<< +/K [1686 1112 0 R 1688] +/P 1985 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1112 0 obj +<< +/ActualText +/K 1687 +/P 1111 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1113 0 obj +<< +/C /A5 +/K 1689 +/P 1986 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1114 0 obj +<< +/C /A5 +/K 1690 +/P 1986 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1115 0 obj +<< +/K [1691 1692 1693 1694] +/P 1987 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1116 0 obj +<< +/C /Pa12 +/K 1695 +/P 1988 0 R +/Pg 36 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1117 0 obj +<< +/C /Pa19 +/K [1696 1697 1698 1699 1700 1701 1702 1703 1704 1705] +/P 1989 0 R +/Pg 36 0 R +/S /Kastenlauftext +>> +endobj +1118 0 obj +<< +/C /Pa19 +/K [1706 1707 1119 0 R 1709 1710] +/P 1989 0 R +/Pg 36 0 R +/S /Kastenlauftext +>> +endobj +1119 0 obj +<< +/ActualText +/K 1708 +/P 1118 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1120 0 obj +<< +/C /Pa19 +/K [1711 1712 1121 0 R 1714 1715 1716 1122 0 R 1718 1719 1720] +/P 1989 0 R +/Pg 36 0 R +/S /Kastenlauftext +>> +endobj +1121 0 obj +<< +/ActualText +/K 1713 +/P 1120 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1122 0 obj +<< +/ActualText +/K 1717 +/P 1120 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1123 0 obj +<< +/C /Pa19 +/K [1721 1722 1723 1724 1725 1726] +/P 1989 0 R +/Pg 36 0 R +/S /Kastenlauftext +>> +endobj +1124 0 obj +<< +/C /Pa10 +/K 1727 +/P 313 0 R +/Pg 36 0 R +/S /Zwischenhead_2 +>> +endobj +1125 0 obj +<< +/C /Pa2 +/K [1728 1729 1126 0 R 1731 1732 1733 1127 0 R 1735 1128 0 R 1737 1738] +/P 313 0 R +/Pg 36 0 R +/S /Lauftext_1._Abs +>> +endobj +1126 0 obj +<< +/ActualText +/K 1730 +/P 1125 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1127 0 obj +<< +/ActualText +/K 1734 +/P 1125 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1128 0 obj +<< +/ActualText +/K 1736 +/P 1125 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1129 0 obj +<< +/C /Pa3 +/K [1739 1130 0 R 1741 1742 1743 1744 1745 << +/MCID 1746 +/Pg 37 0 R +/Type /MCR +>> 1131 0 R << +/MCID 1748 +/Pg 37 0 R +/Type /MCR +>> << +/MCID 1749 +/Pg 37 0 R +/Type /MCR +>> 1132 0 R << +/MCID 1751 +/Pg 37 0 R +/Type /MCR +>>] +/P 313 0 R +/Pg 36 0 R +/S /Lauftext +>> +endobj +1130 0 obj +<< +/ActualText +/K 1740 +/P 1129 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1131 0 obj +<< +/ActualText +/K 1747 +/P 1129 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1132 0 obj +<< +/ActualText +/K 1750 +/P 1129 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1133 0 obj +<< +/C /Pa1 +/K 1752 +/P 313 0 R +/Pg 37 0 R +/S /Zwischenhead_1 +>> +endobj +1134 0 obj +<< +/C /Pa2 +/K [1753 1754 1755 1756 1757 1135 0 R 1759 1136 0 R 1761 1137 0 R 1763 1764] +/P 313 0 R +/Pg 37 0 R +/S /Lauftext_1._Abs +>> +endobj +1135 0 obj +<< +/ActualText +/K 1758 +/P 1134 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1136 0 obj +<< +/ActualText +/K 1760 +/P 1134 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1137 0 obj +<< +/ActualText +/K 1762 +/P 1134 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1138 0 obj +<< +/C /Pa10 +/K 1765 +/P 313 0 R +/Pg 37 0 R +/S /Zwischenhead_2 +>> +endobj +1139 0 obj +<< +/C /Pa3 +/K [1766 1140 0 R 1768 1769 1141 0 R 1771 1772 1773 1774 1142 0 R 1776 1777 1778 1152 0 R 1780] +/P 313 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1140 0 obj +<< +/ActualText +/K 1767 +/P 1139 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1141 0 obj +<< +/ActualText +/K 1770 +/P 1139 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1142 0 obj +<< +/ActualText +/K 1775 +/P 1139 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1143 0 obj +<< +/C /A4 +/K 1779 +/P 1152 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1144 0 obj +<< +/C /Pa3 +/K [1781 1145 0 R 1783 1146 0 R 1785 1147 0 R 1787 1788 1789 1148 0 R 1791 1792 1149 0 R 1794 1795] +/P 313 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1145 0 obj +<< +/ActualText +/K 1782 +/P 1144 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1146 0 obj +<< +/ActualText +/K 1784 +/P 1144 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1147 0 obj +<< +/ActualText +/K 1786 +/P 1144 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1148 0 obj +<< +/ActualText +/K 1790 +/P 1144 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1149 0 obj +<< +/ActualText +/K 1793 +/P 1144 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1150 0 obj +<< +/C /Pa3 +/K [1796 1797 1151 0 R 1799 1800 1801 1802 1803 << +/MCID 1842 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1843 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1844 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1845 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1846 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1847 +/Pg 38 0 R +/Type /MCR +>> 1187 0 R << +/MCID 1849 +/Pg 38 0 R +/Type /MCR +>> +<< +/MCID 1850 +/Pg 38 0 R +/Type /MCR +>>] +/P 313 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1151 0 obj +<< +/ActualText +/K 1798 +/P 1150 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1152 0 obj +<< +/K [212 0 R 1143 0 R] +/P 1139 0 R +/S /Reference +>> +endobj +1153 0 obj +<< +/C /Pa10 +/K [1804 1805] +/P 329 0 R +/Pg 38 0 R +/S /Zwischenhead_2 +>> +endobj +1154 0 obj +<< +/C /Pa12 +/K 1806 +/P 1990 0 R +/Pg 38 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1155 0 obj +<< +/C /Pa12 +/K 1807 +/P 1991 0 R +/Pg 38 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1156 0 obj +<< +/C /Pa20 +/K 1808 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1157 0 obj +<< +/C /Pa20 +/K 1809 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1158 0 obj +<< +/C /Pa20 +/K 1810 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1159 0 obj +<< +/C /Pa20 +/K 1811 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1160 0 obj +<< +/C /Pa20 +/K [1812 1161 0 R 1814] +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1161 0 obj +<< +/ActualText +/K 1813 +/P 1160 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1162 0 obj +<< +/C /Pa20 +/K 1815 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1163 0 obj +<< +/C /Pa20 +/K 1816 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1164 0 obj +<< +/C /Pa20 +/K 1817 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1165 0 obj +<< +/C /Pa20 +/K 1818 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1166 0 obj +<< +/C /Pa20 +/K 1819 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1167 0 obj +<< +/C /Pa20 +/K 1820 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1168 0 obj +<< +/C /Pa20 +/K 1821 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1169 0 obj +<< +/C /Pa20 +/K 1822 +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1170 0 obj +<< +/C /Pa20 +/K [1823 1824] +/P 1992 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1171 0 obj +<< +/C /Pa20 +/K 1825 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1172 0 obj +<< +/C /Pa20 +/K 1826 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1173 0 obj +<< +/C /Pa20 +/K 1827 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1174 0 obj +<< +/C /Pa20 +/K 1828 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1175 0 obj +<< +/C /Pa20 +/K 1829 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1176 0 obj +<< +/C /Pa20 +/K 1830 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1177 0 obj +<< +/C /Pa20 +/K 1831 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1178 0 obj +<< +/C /Pa20 +/K 1832 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1179 0 obj +<< +/C /Pa20 +/K 1833 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1180 0 obj +<< +/C /Pa20 +/K 1834 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1181 0 obj +<< +/C /Pa20 +/K 1835 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1182 0 obj +<< +/C /Pa20 +/K 1836 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1183 0 obj +<< +/C /Pa20 +/K 1837 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1184 0 obj +<< +/C /Pa20 +/K 1838 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1185 0 obj +<< +/C /Pa20 +/K 1839 +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1186 0 obj +<< +/C /Pa20 +/K [1840 1841] +/P 1993 0 R +/Pg 38 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1187 0 obj +<< +/ActualText +/K 1848 +/P 1150 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1188 0 obj +<< +/C /Pa3 +/K [1851 1189 0 R 1853 1854 1855] +/P 313 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +1189 0 obj +<< +/ActualText +/K 1852 +/P 1188 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1190 0 obj +<< +/C /Pa10 +/K 1856 +/P 313 0 R +/Pg 38 0 R +/S /Zwischenhead_2 +>> +endobj +1191 0 obj +<< +/C /Pa2 +/K [1857 1858 1859 1192 0 R 1861 1862 1193 0 R 1864 1865 1866 1867 << +/MCID 1868 +/Pg 39 0 R +/Type /MCR +>> 1194 0 R << +/MCID 1870 +/Pg 39 0 R +/Type /MCR +>> << +/MCID 1871 +/Pg 39 0 R +/Type /MCR +>>] +/P 313 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1192 0 obj +<< +/ActualText +/K 1860 +/P 1191 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1193 0 obj +<< +/ActualText +/K 1863 +/P 1191 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1194 0 obj +<< +/ActualText +/K 1869 +/P 1191 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1195 0 obj +<< +/C /Pa3 +/K [1872 1873 1212 0 R 1875 1876 1877 1197 0 R 1879] +/P 313 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1196 0 obj +<< +/C /A4 +/K 1874 +/P 1212 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1197 0 obj +<< +/ActualText +/K 1878 +/P 1195 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1198 0 obj +<< +/C /Pa3 +/K [1880 1199 0 R 1882 1200 0 R 1884] +/P 313 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1199 0 obj +<< +/ActualText +/K 1881 +/P 1198 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1200 0 obj +<< +/ActualText +/K 1883 +/P 1198 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1201 0 obj +<< +/C /Pa10 +/K 1885 +/P 313 0 R +/Pg 39 0 R +/S /Zwischenhead_2 +>> +endobj +1202 0 obj +<< +/C /Pa2 +/K [1886 1887 1203 0 R 1889 1204 0 R 1891 1205 0 R 1893 1894 1895 1896 1897 1898] +/P 313 0 R +/Pg 39 0 R +/S /Lauftext_1._Abs +>> +endobj +1203 0 obj +<< +/ActualText +/K 1888 +/P 1202 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1204 0 obj +<< +/ActualText +/K 1890 +/P 1202 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1205 0 obj +<< +/ActualText +/K 1892 +/P 1202 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1206 0 obj +<< +/C /Pa3 +/K [1899 1900 1901 1207 0 R 1903] +/P 313 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1207 0 obj +<< +/ActualText +/K 1902 +/P 1206 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1208 0 obj +<< +/C /Pa3 +/K [1904 1905 1906 1907 1908 1909 1910 1209 0 R 1912 1913 1914] +/P 313 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1209 0 obj +<< +/ActualText +/K 1911 +/P 1208 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1210 0 obj +<< +/C /Pa3 +/K [1915 1916 1917 1918 1919] +/P 313 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1211 0 obj +<< +/C /Pa3 +/K [1920 1921 1922 1923 1924] +/P 313 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1212 0 obj +<< +/K [215 0 R 1196 0 R] +/P 1195 0 R +/S /Reference +>> +endobj +1213 0 obj +<< +/C /Pa14 +/K 1925 +/P 313 0 R +/Pg 40 0 R +/S /Zwischenhead_3 +>> +endobj +1214 0 obj +<< +/C /Pa2 +/K [1926 1927 1928 1929 1930 1215 0 R 1932 1216 0 R 1934 1935 1217 0 R 1937] +/P 313 0 R +/Pg 40 0 R +/S /Lauftext_1._Abs +>> +endobj +1215 0 obj +<< +/ActualText +/K 1931 +/P 1214 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1216 0 obj +<< +/ActualText +/K 1933 +/P 1214 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1217 0 obj +<< +/ActualText +/K 1936 +/P 1214 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1218 0 obj +<< +/C /Pa3 +/K [1938 1219 0 R 1940 1941 1220 0 R 1943 1944 1221 0 R 1946] +/P 313 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +1219 0 obj +<< +/ActualText +/K 1939 +/P 1218 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1220 0 obj +<< +/ActualText +/K 1942 +/P 1218 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1221 0 obj +<< +/ActualText +/K 1945 +/P 1218 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1222 0 obj +<< +/C /Pa3 +/K [1947 1948 1949 1950 1951 1952] +/P 313 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +1223 0 obj +<< +/C /Pa14 +/K 1953 +/P 313 0 R +/Pg 40 0 R +/S /Zwischenhead_3 +>> +endobj +1224 0 obj +<< +/C /Pa2 +/K [1954 1955 1225 0 R 1957 1958 1226 0 R 1960 1227 0 R 1962 1228 0 R 1964 1965 1229 0 R 1967 1968 1230 0 R +1970 1231 0 R 1972] +/P 313 0 R +/Pg 40 0 R +/S /Lauftext_1._Abs +>> +endobj +1225 0 obj +<< +/ActualText +/K 1956 +/P 1224 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1226 0 obj +<< +/ActualText +/K 1959 +/P 1224 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1227 0 obj +<< +/ActualText +/K 1961 +/P 1224 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1228 0 obj +<< +/ActualText +/K 1963 +/P 1224 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1229 0 obj +<< +/ActualText +/K 1966 +/P 1224 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1230 0 obj +<< +/ActualText +/K 1969 +/P 1224 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1231 0 obj +<< +/ActualText +/K 1971 +/P 1224 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1232 0 obj +<< +/C /Pa3 +/K [1973 1233 0 R 1975 1234 0 R 1977 1978] +/P 313 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +1233 0 obj +<< +/ActualText +/K 1974 +/P 1232 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1234 0 obj +<< +/ActualText +/K 1976 +/P 1232 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1235 0 obj +<< +/C /Pa3 +/K [1979 1980] +/P 313 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +1236 0 obj +<< +/C /Pa1 +/K 1981 +/P 313 0 R +/Pg 41 0 R +/S /Zwischenhead_1 +>> +endobj +1237 0 obj +<< +/C /Pa2 +/K [1982 1983 1984 1238 0 R 1986] +/P 313 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +1238 0 obj +<< +/ActualText +/K 1985 +/P 1237 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1239 0 obj +<< +/C /Pa10 +/K 1987 +/P 313 0 R +/Pg 41 0 R +/S /Zwischenhead_2 +>> +endobj +1240 0 obj +<< +/C /Pa2 +/K [1988 1241 0 R 1990 1991 1992 1993 1242 0 R 1995 1996 1997 1998] +/P 313 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +1241 0 obj +<< +/ActualText +/K 1989 +/P 1240 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1242 0 obj +<< +/ActualText +/K 1994 +/P 1240 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1243 0 obj +<< +/C /Pa3 +/K [1999 2000 1244 0 R 2002 2003 2004 2005] +/P 313 0 R +/Pg 41 0 R +/S /Lauftext +>> +endobj +1244 0 obj +<< +/ActualText +/K 2001 +/P 1243 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1245 0 obj +<< +/C /Pa3 +/K [2006 2007 2008 2009 2010 1246 0 R 2012 2013 1247 0 R 2015 2016] +/P 313 0 R +/Pg 41 0 R +/S /Lauftext +>> +endobj +1246 0 obj +<< +/ActualText +/K 2011 +/P 1245 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1247 0 obj +<< +/ActualText +/K 2014 +/P 1245 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1248 0 obj +<< +/C /Pa14 +/K 2017 +/P 313 0 R +/Pg 41 0 R +/S /Zwischenhead_3 +>> +endobj +1249 0 obj +<< +/C /Pa2 +/K [2018 2019 1250 0 R 2021 2022 2023 2024 2025] +/P 313 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +1250 0 obj +<< +/ActualText +/K 2020 +/P 1249 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1251 0 obj +<< +/C /Pa3 +/K [2026 2027 2028 1252 0 R 2030 2031 << +/MCID 2032 +/Pg 42 0 R +/Type /MCR +>> << +/MCID 2033 +/Pg 42 0 R +/Type /MCR +>> 1268 0 R << +/MCID 2035 +/Pg 42 0 R +/Type /MCR +>> << +/MCID 2036 +/Pg 42 0 R +/Type /MCR +>> << +/MCID 2037 +/Pg 42 0 R +/Type /MCR +>>] +/P 313 0 R +/Pg 41 0 R +/S /Lauftext +>> +endobj +1252 0 obj +<< +/ActualText +/K 2029 +/P 1251 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1253 0 obj +<< +/C /A4 +/K 2034 +/P 1268 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1254 0 obj +<< +/C /Pa14 +/K 2038 +/P 313 0 R +/Pg 42 0 R +/S /Zwischenhead_3 +>> +endobj +1255 0 obj +<< +/C /Pa2 +/K [2039 2040 2041 1256 0 R 2043 2044 2045 2046] +/P 313 0 R +/Pg 42 0 R +/S /Lauftext_1._Abs +>> +endobj +1256 0 obj +<< +/ActualText +/K 2042 +/P 1255 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1257 0 obj +<< +/C /Pa3 +/K [2047 2048 2049 1258 0 R 2051 1259 0 R 2053 2054 2055 2056 1260 0 R 2058 2059] +/P 313 0 R +/Pg 42 0 R +/S /Lauftext +>> +endobj +1258 0 obj +<< +/ActualText +/K 2050 +/P 1257 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1259 0 obj +<< +/ActualText +/K 2052 +/P 1257 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1260 0 obj +<< +/ActualText +/K 2057 +/P 1257 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1261 0 obj +<< +/C /Pa2 +/K [2060 2061 1262 0 R 2063 2064] +/P 313 0 R +/Pg 42 0 R +/S /Lauftext_1._Abs +>> +endobj +1262 0 obj +<< +/ActualText +/K 2062 +/P 1261 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1263 0 obj +<< +/C /Pa10 +/K 2065 +/P 313 0 R +/Pg 42 0 R +/S /Zwischenhead_2 +>> +endobj +1264 0 obj +<< +/C /Pa2 +/K [2066 2067 2068 2069 2070] +/P 313 0 R +/Pg 42 0 R +/S /Lauftext_1._Abs +>> +endobj +1265 0 obj +<< +/C /Pa3 +/K [2071 2072 2073 2074 2075 2076 1266 0 R 2078 2079 2080 2081] +/P 313 0 R +/Pg 42 0 R +/S /Lauftext +>> +endobj +1266 0 obj +<< +/ActualText +/K 2077 +/P 1265 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1267 0 obj +<< +/C /Pa3 +/K [2082 2083 << +/MCID 2084 +/Pg 43 0 R +/Type /MCR +>> 1269 0 R << +/MCID 2086 +/Pg 43 0 R +/Type /MCR +>> << +/MCID 2087 +/Pg 43 0 R +/Type /MCR +>> << +/MCID 2088 +/Pg 43 0 R +/Type /MCR +>> << +/MCID 2089 +/Pg 43 0 R +/Type /MCR +>> << +/MCID 2090 +/Pg 43 0 R +/Type /MCR +>> << +/MCID 2091 +/Pg 43 0 R +/Type /MCR +>>] +/P 313 0 R +/Pg 42 0 R +/S /Lauftext +>> +endobj +1268 0 obj +<< +/K [219 0 R 1253 0 R] +/P 1251 0 R +/S /Reference +>> +endobj +1269 0 obj +<< +/ActualText +/K 2085 +/P 1267 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1270 0 obj +<< +/C /Pa3 +/K [2092 2093 1271 0 R 2095 2096] +/P 313 0 R +/Pg 43 0 R +/S /Lauftext +>> +endobj +1271 0 obj +<< +/ActualText +/K 2094 +/P 1270 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1272 0 obj +<< +/C /Pa10 +/K 2097 +/P 313 0 R +/Pg 43 0 R +/S /Zwischenhead_2 +>> +endobj +1273 0 obj +<< +/C /Pa2 +/K [2098 2099 2100 1274 0 R 2102 1275 0 R 2104 2105 2106 2107 2108 1294 0 R 2110] +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1274 0 obj +<< +/ActualText +/K 2101 +/P 1273 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1275 0 obj +<< +/ActualText +/K 2103 +/P 1273 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1276 0 obj +<< +/C /A4 +/K 2109 +/P 1294 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1277 0 obj +<< +/C /Pa3 +/K [2111 1278 0 R 2113 2114 2115 2116 2117] +/P 313 0 R +/Pg 43 0 R +/S /Lauftext +>> +endobj +1278 0 obj +<< +/ActualText +/K 2112 +/P 1277 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1279 0 obj +<< +/C /Pa10 +/K 2118 +/P 313 0 R +/Pg 43 0 R +/S /Zwischenhead_2 +>> +endobj +1280 0 obj +<< +/C /Pa2 +/K 2119 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1281 0 obj +<< +/C /Pa2 +/K 2120 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1282 0 obj +<< +/C /Pa2 +/K 2121 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1283 0 obj +<< +/C /Pa2 +/K 2122 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1284 0 obj +<< +/C /Pa2 +/K 2123 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1285 0 obj +<< +/C /Pa2 +/K 2124 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1286 0 obj +<< +/C /Pa2 +/K 2125 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1287 0 obj +<< +/C /Pa2 +/K 2126 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1288 0 obj +<< +/C /Pa2 +/K 2127 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1289 0 obj +<< +/C /Pa2 +/K 2128 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1290 0 obj +<< +/C /Pa2 +/K 2129 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1291 0 obj +<< +/C /Pa2 +/K 2130 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1292 0 obj +<< +/C /Pa2 +/K 2131 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1293 0 obj +<< +/C /Pa2 +/K 2132 +/P 313 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1294 0 obj +<< +/K [221 0 R 1276 0 R] +/P 1273 0 R +/S /Reference +>> +endobj +1295 0 obj +<< +/C /Pa12 +/K 1034 +/P 1994 0 R +/Pg 27 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1296 0 obj +<< +/C /Pa19 +/K [1035 1036 1037 1297 0 R 1039 1040] +/P 1995 0 R +/Pg 27 0 R +/S /Kastenlauftext +>> +endobj +1297 0 obj +<< +/ActualText +/K 1038 +/P 1296 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1298 0 obj +<< +/C /Pa19 +/K [1041 1299 0 R 1043 1044] +/P 1995 0 R +/Pg 27 0 R +/S /Kastenlauftext +>> +endobj +1299 0 obj +<< +/ActualText +/K 1042 +/P 1298 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1300 0 obj +<< +/C /A5 +/K 1045 +/P 1996 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1301 0 obj +<< +/C /A5 +/K 1046 +/P 1996 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1302 0 obj +<< +/C /A5 +/K 1047 +/P 1996 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1303 0 obj +<< +/C /A5 +/K 1048 +/P 1996 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1304 0 obj +<< +/K [1049 1050 1051 1052] +/P 1997 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1305 0 obj +<< +/C /A5 +/K 1053 +/P 1998 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1306 0 obj +<< +/C /A5 +/K 1054 +/P 1998 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1307 0 obj +<< +/C /A5 +/K 1055 +/P 1998 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1308 0 obj +<< +/C /A5 +/K 1056 +/P 1998 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1309 0 obj +<< +/K [1057 1058 1059 1060] +/P 1999 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1310 0 obj +<< +/C /A5 +/K 1061 +/P 2000 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1311 0 obj +<< +/C /A5 +/K 1062 +/P 2000 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1312 0 obj +<< +/C /A5 +/K 1063 +/P 2000 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1313 0 obj +<< +/C /A5 +/K 1064 +/P 2000 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1314 0 obj +<< +/K [1065 1066 1067 1068] +/P 2001 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1315 0 obj +<< +/C /A5 +/K 1069 +/P 2002 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1316 0 obj +<< +/C /A5 +/K 1070 +/P 2002 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1317 0 obj +<< +/C /A5 +/K 1071 +/P 2002 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1318 0 obj +<< +/C /A5 +/K 1072 +/P 2002 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1319 0 obj +<< +/K [1073 1320 0 R 1075 1321 0 R 1077 1078 1079 1080] +/P 2003 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1320 0 obj +<< +/ActualText +/K 1074 +/P 1319 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1321 0 obj +<< +/ActualText +/K 1076 +/P 1319 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1322 0 obj +<< +/C /A5 +/K 1081 +/P 2004 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1323 0 obj +<< +/C /A5 +/K 1082 +/P 2004 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1324 0 obj +<< +/C /A5 +/K 1083 +/P 2004 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1325 0 obj +<< +/C /A5 +/K 1084 +/P 2004 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1326 0 obj +<< +/K [1085 1086 1087 1088] +/P 2005 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1327 0 obj +<< +/C /A5 +/K 1089 +/P 2006 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1328 0 obj +<< +/C /A5 +/K 1090 +/P 2006 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1329 0 obj +<< +/C /A5 +/K 1091 +/P 2006 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1330 0 obj +<< +/C /A5 +/K 1092 +/P 2006 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1331 0 obj +<< +/K [1093 1094] +/P 2007 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1332 0 obj +<< +/C /A5 +/K 1095 +/P 2008 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1333 0 obj +<< +/C /A5 +/K 1096 +/P 2008 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1334 0 obj +<< +/C /A5 +/K 1097 +/P 2008 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1335 0 obj +<< +/C /A5 +/K 1098 +/P 2008 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1336 0 obj +<< +/K [1099 1100 1101 1337 0 R 1103 1338 0 R 1105 1106] +/P 2009 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +1337 0 obj +<< +/ActualText +/K 1102 +/P 1336 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1338 0 obj +<< +/ActualText +/K 1104 +/P 1336 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1339 0 obj +<< +/C /Pa19 +/K [1107 1108 1109 1110 1111 1112 1340 0 R 1114 1115 1341 0 R 1117 1118] +/P 1995 0 R +/Pg 27 0 R +/S /Kastenlauftext +>> +endobj +1340 0 obj +<< +/ActualText +/K 1113 +/P 1339 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1341 0 obj +<< +/ActualText +/K 1116 +/P 1339 0 R +/Pg 27 0 R +/S /Span +>> +endobj +1342 0 obj +<< +/C /Pa19 +/K [1119 1120 1121 1122 1123 1124 1125 1126] +/P 1995 0 R +/Pg 27 0 R +/S /Kastenlauftext +>> +endobj +1343 0 obj +<< +/C /Pa10 +/K 2133 +/P 331 0 R +/Pg 44 0 R +/S /Zwischenhead_2 +>> +endobj +1344 0 obj +<< +/C /Pa2 +/K [2134 2135 2136] +/P 331 0 R +/Pg 44 0 R +/S /Lauftext_1._Abs +>> +endobj +1345 0 obj +<< +/C /A5 +/K 2137 +/P 2010 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1346 0 obj +<< +/C /A5 +/K 2138 +/P 2010 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1347 0 obj +<< +/K [2139 1348 0 R 2141] +/P 2011 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1348 0 obj +<< +/ActualText +/K 2140 +/P 1347 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1349 0 obj +<< +/C /A5 +/K 2142 +/P 2012 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1350 0 obj +<< +/C /A5 +/K 2143 +/P 2012 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1351 0 obj +<< +/K [2144 2145] +/P 2013 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1352 0 obj +<< +/C /A5 +/K 2146 +/P 2014 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1353 0 obj +<< +/C /A5 +/K 2147 +/P 2014 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1354 0 obj +<< +/K [2148 2149 2150] +/P 2015 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1355 0 obj +<< +/C /A5 +/K 2151 +/P 2016 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1356 0 obj +<< +/C /A5 +/K 2152 +/P 2016 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1357 0 obj +<< +/K [2153 1358 0 R 2155 2156] +/P 2017 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1358 0 obj +<< +/ActualText +/K 2154 +/P 1357 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1359 0 obj +<< +/C /A5 +/K 2157 +/P 2018 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1360 0 obj +<< +/C /A5 +/K 2158 +/P 2018 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1361 0 obj +<< +/K [2159 2160 2161] +/P 2019 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1362 0 obj +<< +/C /A5 +/K 2162 +/P 2020 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1363 0 obj +<< +/C /A5 +/K 2163 +/P 2020 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1364 0 obj +<< +/K [2164 2165] +/P 2021 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1365 0 obj +<< +/C /A5 +/K 2166 +/P 2022 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1366 0 obj +<< +/C /A5 +/K 2167 +/P 2022 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1367 0 obj +<< +/K [2168 2169 2170] +/P 2023 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1368 0 obj +<< +/C /A5 +/K 2171 +/P 2024 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1369 0 obj +<< +/C /A5 +/K 2172 +/P 2024 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1370 0 obj +<< +/K 2173 +/P 2025 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1371 0 obj +<< +/C /A5 +/K 2174 +/P 2026 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1372 0 obj +<< +/C /A5 +/K 2175 +/P 2026 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1373 0 obj +<< +/K [2176 1374 0 R 2178] +/P 2027 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1374 0 obj +<< +/ActualText +/K 2177 +/P 1373 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1375 0 obj +<< +/C /A5 +/K 2179 +/P 2028 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1376 0 obj +<< +/C /A5 +/K 2180 +/P 2028 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1377 0 obj +<< +/K [2181 2182] +/P 2029 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1378 0 obj +<< +/C /A5 +/K 2183 +/P 2030 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1379 0 obj +<< +/C /A5 +/K 2184 +/P 2030 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1380 0 obj +<< +/K [2185 1381 0 R 2187 1382 0 R 2189 1383 0 R 2191] +/P 2031 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1381 0 obj +<< +/ActualText +/K 2186 +/P 1380 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1382 0 obj +<< +/ActualText +/K 2188 +/P 1380 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1383 0 obj +<< +/ActualText +/K 2190 +/P 1380 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1384 0 obj +<< +/C /A5 +/K 2192 +/P 2032 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1385 0 obj +<< +/C /A5 +/K 2193 +/P 2032 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1386 0 obj +<< +/K [2194 2195] +/P 2033 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1387 0 obj +<< +/C /Pa10 +/K 2196 +/P 332 0 R +/Pg 45 0 R +/S /Zwischenhead_2 +>> +endobj +1388 0 obj +<< +/C /Pa2 +/K [2197 2198 2199] +/P 332 0 R +/Pg 45 0 R +/S /Lauftext_1._Abs +>> +endobj +1389 0 obj +<< +/C /Pa2 +/K [2200 2201 2202 2203] +/P 332 0 R +/Pg 45 0 R +/S /Lauftext_1._Abs +>> +endobj +1390 0 obj +<< +/C /Pa14 +/K 2204 +/P 332 0 R +/Pg 45 0 R +/S /Zwischenhead_3 +>> +endobj +1391 0 obj +<< +/C /Pa2 +/K [2205 1392 0 R 2207 2208 2209 2210 2211 2212 2213 1393 0 R 2215] +/P 332 0 R +/Pg 45 0 R +/S /Lauftext_1._Abs +>> +endobj +1392 0 obj +<< +/ActualText +/K 2206 +/P 1391 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1393 0 obj +<< +/ActualText +/K 2214 +/P 1391 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1394 0 obj +<< +/C /Pa3 +/K [2216 1395 0 R 2218 1396 0 R 2220 2221 2222 2223 1397 0 R 2225] +/P 332 0 R +/Pg 45 0 R +/S /Lauftext +>> +endobj +1395 0 obj +<< +/ActualText +/K 2217 +/P 1394 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1396 0 obj +<< +/ActualText +/K 2219 +/P 1394 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1397 0 obj +<< +/ActualText +/K 2224 +/P 1394 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1398 0 obj +<< +/C /Pa14 +/K 2226 +/P 332 0 R +/Pg 45 0 R +/S /Zwischenhead_3 +>> +endobj +1399 0 obj +<< +/C /Pa2 +/K [2227 2228 2229 2230 2231] +/P 332 0 R +/Pg 45 0 R +/S /Lauftext_1._Abs +>> +endobj +1400 0 obj +<< +/C /Pa2 +/K 2232 +/P 332 0 R +/Pg 45 0 R +/S /Lauftext_1._Abs +>> +endobj +1401 0 obj +<< +/C /A5 +/K 2233 +/P 2034 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1402 0 obj +<< +/C /A5 +/K 2234 +/P 2034 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1403 0 obj +<< +/K [2235 2236 2237 2238] +/P 2035 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1404 0 obj +<< +/C /A5 +/K 2239 +/P 2036 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1405 0 obj +<< +/C /A5 +/K 2240 +/P 2036 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1406 0 obj +<< +/K [2241 2242 2243 2244] +/P 2037 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1407 0 obj +<< +/C /A5 +/K 2245 +/P 2038 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1408 0 obj +<< +/C /A5 +/K 2246 +/P 2038 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1409 0 obj +<< +/K [2247 2248 2249 2250] +/P 2039 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1410 0 obj +<< +/C /A5 +/K 2251 +/P 2040 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1411 0 obj +<< +/C /A5 +/K 2252 +/P 2040 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1412 0 obj +<< +/K [2253 2254 2255] +/P 2041 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1413 0 obj +<< +/C /A5 +/K 2256 +/P 2042 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1414 0 obj +<< +/C /A5 +/K 2257 +/P 2042 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1415 0 obj +<< +/K [2258 2259 2260] +/P 2043 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1416 0 obj +<< +/C /Pa14 +/K 2261 +/P 332 0 R +/Pg 46 0 R +/S /Zwischenhead_3 +>> +endobj +1417 0 obj +<< +/C /Pa2 +/K [2262 2263 2264 2265 2266 2267] +/P 332 0 R +/Pg 46 0 R +/S /Lauftext_1._Abs +>> +endobj +1418 0 obj +<< +/C /Pa3 +/K [2268 2269 1419 0 R 2271 2272 2273 2274 2275 1420 0 R 2277] +/P 332 0 R +/Pg 46 0 R +/S /Lauftext +>> +endobj +1419 0 obj +<< +/ActualText +/K 2270 +/P 1418 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1420 0 obj +<< +/ActualText +/K 2276 +/P 1418 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1421 0 obj +<< +/C /Pa3 +/K [2278 1422 0 R 2280 1423 0 R 2282] +/P 332 0 R +/Pg 46 0 R +/S /Lauftext +>> +endobj +1422 0 obj +<< +/ActualText +/K 2279 +/P 1421 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1423 0 obj +<< +/ActualText +/K 2281 +/P 1421 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1424 0 obj +<< +/C /Pa3 +/K 2283 +/P 332 0 R +/Pg 46 0 R +/S /Lauftext +>> +endobj +1425 0 obj +<< +/C /A5 +/K 2284 +/P 2044 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1426 0 obj +<< +/C /A5 +/K 2285 +/P 2044 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1427 0 obj +<< +/K 2286 +/P 2045 0 R +/Pg 46 0 R +/S /LBody +>> +endobj +1428 0 obj +<< +/C /A5 +/K 2287 +/P 2046 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1429 0 obj +<< +/C /A5 +/K 2288 +/P 2046 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1430 0 obj +<< +/K 2289 +/P 2047 0 R +/Pg 46 0 R +/S /LBody +>> +endobj +1431 0 obj +<< +/C /A5 +/K 2290 +/P 2048 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1432 0 obj +<< +/C /A5 +/K 2291 +/P 2048 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1433 0 obj +<< +/K [2292 2293] +/P 2049 0 R +/Pg 46 0 R +/S /LBody +>> +endobj +1434 0 obj +<< +/C /A5 +/K 2294 +/P 2050 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1435 0 obj +<< +/C /A5 +/K 2295 +/P 2050 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1436 0 obj +<< +/K 2296 +/P 2051 0 R +/Pg 46 0 R +/S /LBody +>> +endobj +1437 0 obj +<< +/C /A5 +/K 2297 +/P 2052 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1438 0 obj +<< +/C /A5 +/K 2298 +/P 2052 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1439 0 obj +<< +/K 2299 +/P 2053 0 R +/Pg 46 0 R +/S /LBody +>> +endobj +1440 0 obj +<< +/C /A5 +/K 2300 +/P 2054 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1441 0 obj +<< +/C /A5 +/K 2301 +/P 2054 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1442 0 obj +<< +/K 2302 +/P 2055 0 R +/Pg 46 0 R +/S /LBody +>> +endobj +1443 0 obj +<< +/C /A5 +/K 2303 +/P 2056 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1444 0 obj +<< +/C /A5 +/K 2304 +/P 2056 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1445 0 obj +<< +/K 2305 +/P 2057 0 R +/Pg 46 0 R +/S /LBody +>> +endobj +1446 0 obj +<< +/C /A5 +/K 2306 +/P 2058 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1447 0 obj +<< +/C /A5 +/K 2307 +/P 2058 0 R +/Pg 46 0 R +/S /Span +>> +endobj +1448 0 obj +<< +/K 2308 +/P 2059 0 R +/Pg 46 0 R +/S /LBody +>> +endobj +1449 0 obj +<< +/C /Pa10 +/K 2309 +/P 332 0 R +/Pg 47 0 R +/S /Zwischenhead_2 +>> +endobj +1450 0 obj +<< +/C /Pa2 +/K 2310 +/P 332 0 R +/Pg 47 0 R +/S /Lauftext_1._Abs +>> +endobj +1451 0 obj +<< +/C /Pa10 +/K 2312 +/P 332 0 R +/Pg 48 0 R +/S /Zwischenhead_2 +>> +endobj +1452 0 obj +<< +/C /A3 +/K 2313 +/P 1696 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1453 0 obj +<< +/C /Pa2 +/K [2314 2315 2316 2317] +/P 332 0 R +/Pg 48 0 R +/S /Lauftext_1._Abs +>> +endobj +1454 0 obj +<< +/C /Pa2 +/K 2318 +/P 332 0 R +/Pg 48 0 R +/S /Lauftext_1._Abs +>> +endobj +1455 0 obj +<< +/C /Pa12 +/K 2319 +/P 2060 0 R +/Pg 48 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1456 0 obj +<< +/C /Pa12 +/K 2320 +/P 2061 0 R +/Pg 48 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1457 0 obj +<< +/C /Pa12 +/K 2321 +/P 2062 0 R +/Pg 48 0 R +/S /Tab._Versal_bold_wei +>> +endobj +1458 0 obj +<< +/C /Pa12 +/K [2322 1459 0 R 2324] +/P 2063 0 R +/Pg 48 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1459 0 obj +<< +/ActualText +/K 2323 +/P 1458 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1460 0 obj +<< +/C /Pa20 +/K [2325 2326 2327 2328] +/P 2064 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1461 0 obj +<< +/C /Pa20 +/K 2329 +/P 2065 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1462 0 obj +<< +/C /Pa20 +/K [2330 1463 0 R 2332 2333 2334 2335 2336] +/P 2066 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1463 0 obj +<< +/ActualText +/K 2331 +/P 1462 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1464 0 obj +<< +/C /Pa12 +/K [2337 1465 0 R 2339 2340] +/P 2067 0 R +/Pg 48 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1465 0 obj +<< +/ActualText +/K 2338 +/P 1464 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1466 0 obj +<< +/C /Pa20 +/K [2341 2342 2343 2344] +/P 2068 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1467 0 obj +<< +/C /Pa20 +/K [2345 2346 2347] +/P 2069 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1468 0 obj +<< +/C /Pa20 +/K [2348 2349 1469 0 R 2351 2352 2353] +/P 2070 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1469 0 obj +<< +/ActualText +/K 2350 +/P 1468 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1470 0 obj +<< +/C /Pa12 +/K [2354 1471 0 R 2356] +/P 2071 0 R +/Pg 48 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1471 0 obj +<< +/ActualText +/K 2355 +/P 1470 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1472 0 obj +<< +/C /Pa20 +/K [2357 2358 2359] +/P 2072 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1473 0 obj +<< +/C /Pa20 +/K [2360 1474 0 R 2362 2363 2364 2365 2366] +/P 2073 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1474 0 obj +<< +/ActualText +/K 2361 +/P 1473 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1475 0 obj +<< +/C /Pa20 +/K [2367 2368 2369 2370 2371] +/P 2074 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1476 0 obj +<< +/C /Pa12 +/K 2372 +/P 2075 0 R +/Pg 48 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1477 0 obj +<< +/C /Pa20 +/K [2373 2374 2375 1478 0 R 2377] +/P 2076 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1478 0 obj +<< +/ActualText +/K 2376 +/P 1477 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1479 0 obj +<< +/C /Pa20 +/K [2378 2379 1480 0 R 2381 2382] +/P 2077 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1480 0 obj +<< +/ActualText +/K 2380 +/P 1479 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1481 0 obj +<< +/C /Pa20 +/K [2383 2384] +/P 2078 0 R +/Pg 48 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1482 0 obj +<< +/C /A5 +/K 2385 +/P 2079 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1483 0 obj +<< +/C /A5 +/K 2386 +/P 2079 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1484 0 obj +<< +/K 2387 +/P 2080 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +1485 0 obj +<< +/C /A5 +/K 2388 +/P 2081 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1486 0 obj +<< +/C /A5 +/K 2389 +/P 2081 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1487 0 obj +<< +/K 2390 +/P 2082 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +1488 0 obj +<< +/C /A5 +/K 2391 +/P 2083 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1489 0 obj +<< +/C /A5 +/K 2392 +/P 2083 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1490 0 obj +<< +/K 2393 +/P 2084 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +1491 0 obj +<< +/C /A5 +/K 2394 +/P 2085 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1492 0 obj +<< +/C /A5 +/K 2395 +/P 2085 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1493 0 obj +<< +/K 2396 +/P 2086 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +1494 0 obj +<< +/C /A5 +/K 2397 +/P 2087 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1495 0 obj +<< +/C /A5 +/K 2398 +/P 2087 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1496 0 obj +<< +/K 2399 +/P 2088 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +1497 0 obj +<< +/C /A5 +/K 2400 +/P 2089 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1498 0 obj +<< +/C /A5 +/K 2401 +/P 2089 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1499 0 obj +<< +/K 2402 +/P 2090 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +1500 0 obj +<< +/C /A5 +/K 2403 +/P 2091 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1501 0 obj +<< +/C /A5 +/K 2404 +/P 2091 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1502 0 obj +<< +/K 2405 +/P 2092 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +1503 0 obj +<< +/C /A5 +/K 2406 +/P 2093 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1504 0 obj +<< +/C /A5 +/K 2407 +/P 2093 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1505 0 obj +<< +/K 2408 +/P 2094 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +1506 0 obj +<< +/C /Pa2 +/K [2409 2410 1507 0 R 2412 2413 2414] +/P 332 0 R +/Pg 48 0 R +/S /Lauftext_1._Abs +>> +endobj +1507 0 obj +<< +/ActualText +/K 2411 +/P 1506 0 R +/Pg 48 0 R +/S /Span +>> +endobj +1508 0 obj +<< +/C /Pa3 +/K [2415 2416 1509 0 R 2418 2419 2420] +/P 332 0 R +/Pg 49 0 R +/S /Lauftext +>> +endobj +1509 0 obj +<< +/ActualText +/K 2417 +/P 1508 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1510 0 obj +<< +/C /A3 +/K 2421 +/P 1699 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1511 0 obj +<< +/C /Pa2 +/K [2422 2423 2424] +/P 332 0 R +/Pg 49 0 R +/S /Lauftext_1._Abs +>> +endobj +1512 0 obj +<< +/C /A5 +/K 2425 +/P 2095 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1513 0 obj +<< +/C /A5 +/K 2426 +/P 2095 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1514 0 obj +<< +/K 2427 +/P 2096 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1515 0 obj +<< +/C /A5 +/K 2428 +/P 2097 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1516 0 obj +<< +/C /A5 +/K 2429 +/P 2097 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1517 0 obj +<< +/K 2430 +/P 2098 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1518 0 obj +<< +/C /A5 +/K 2431 +/P 2099 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1519 0 obj +<< +/C /A5 +/K 2432 +/P 2099 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1520 0 obj +<< +/K 2433 +/P 2100 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1521 0 obj +<< +/C /A5 +/K 2434 +/P 2101 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1522 0 obj +<< +/C /A5 +/K 2435 +/P 2101 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1523 0 obj +<< +/K 2436 +/P 2102 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1524 0 obj +<< +/C /A5 +/K 2437 +/P 2103 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1525 0 obj +<< +/C /A5 +/K 2438 +/P 2103 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1526 0 obj +<< +/K 2439 +/P 2104 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1527 0 obj +<< +/C /A5 +/K 2440 +/P 2105 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1528 0 obj +<< +/C /A5 +/K 2441 +/P 2105 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1529 0 obj +<< +/K 2442 +/P 2106 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1530 0 obj +<< +/C /A5 +/K 2443 +/P 2107 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1531 0 obj +<< +/C /A5 +/K 2444 +/P 2107 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1532 0 obj +<< +/K 2445 +/P 2108 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1533 0 obj +<< +/C /A5 +/K 2446 +/P 2109 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1534 0 obj +<< +/C /A5 +/K 2447 +/P 2109 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1535 0 obj +<< +/K 2448 +/P 2110 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1536 0 obj +<< +/C /A5 +/K 2449 +/P 2111 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1537 0 obj +<< +/C /A5 +/K 2450 +/P 2111 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1538 0 obj +<< +/K 2451 +/P 2112 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1539 0 obj +<< +/C /A5 +/K 2452 +/P 2113 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1540 0 obj +<< +/C /A5 +/K 2453 +/P 2113 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1541 0 obj +<< +/K 2454 +/P 2114 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1542 0 obj +<< +/C /A5 +/K 2455 +/P 2115 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1543 0 obj +<< +/C /A5 +/K 2456 +/P 2115 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1544 0 obj +<< +/K 2457 +/P 2116 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1545 0 obj +<< +/C /Pa3 +/K [2458 2459 2460 2461] +/P 332 0 R +/Pg 49 0 R +/S /Lauftext +>> +endobj +1546 0 obj +<< +/C /A5 +/K 2462 +/P 2117 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1547 0 obj +<< +/C /A5 +/K 2463 +/P 2117 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1548 0 obj +<< +/K [2464 2465] +/P 2118 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1549 0 obj +<< +/C /A5 +/K 2466 +/P 2119 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1550 0 obj +<< +/C /A5 +/K 2467 +/P 2119 0 R +/Pg 49 0 R +/S /Span +>> +endobj +1551 0 obj +<< +/K [2468 2469 2470 2471] +/P 2120 0 R +/Pg 49 0 R +/S /LBody +>> +endobj +1552 0 obj +<< +/C /Pa3 +/K [2472 2473 2474 2475 2476] +/P 332 0 R +/Pg 49 0 R +/S /Lauftext +>> +endobj +1553 0 obj +<< +/Filter /FlateDecode +/Length 10359 +/Length1 16347 +>> +stream +H‰œVkTT×þö¹÷ÎðR@A¼Ã(Ì0¼•ñ ("/‘ÁÃKP5ÆwESSÓPk’ÄØ´ÚäjMB­¦!ilbŒÚ˜jš˜æÑ®ÕÚ¬elÒ´µŠtÏ€]­]ùÓ»çÎyݽÏùöù¾{.À< ¥s*ì©!ÉÙ)Üsïªú6wÇŽc](PÒë׬R77n< š¸oCSÇ’6azÍ ?ãöûKZ×5]Y¶ÿÀ÷4w½¹ÑÝP÷‡Yç䎗Ñ̾Ï#¹}Ûã›ÛVuí[ôì:nßâ˜[ÛëÝÈl:dîávo›»«CÜ¡``š•ŸW—»ÛÇ_Ýÿ1·‹y¾¢ŽöÎUƒ‡^KîžñŽ•ò˧ÎqûEnÇäz Šè­Î •òKhU÷/¿>CŸw9 Æ-S® œa<Á"O‘:Á;"@Þ2”³Æ5÷Ã\ +ï3ÿ}ñ $+£¯ŸÀˆ‘A¦àÐQ£ÃÂ#ÆDF§šc,ãcãâ'LLH´Ú’ìÉ)©ié“22'geçL™:-ב®MÊË/˜QX4sVñì’9¥eå•s«æU»jæ/X˜–ñÅüL£_dè„RWuMí?ÜõÿlXº¬­uù­¬œì)Ú—ùIö€Î…‹š¦Ï[Ñüuîøã/Àm‡wu-E¨ËXи3Óÿè=C¼¹"Ñ11,܉Կc±ZÎ4ùJR58v />:6ãKæÌÆHÛJ0ÃE–9ȆÊaÆ`3à Id¢‰”Bä¦ê¢}ôé✸.I’¯d‘´èÛj²š¢f«ÇÌ11·’={‰Gñ$ +¢ ì[NµÔìõí¥¼¾ðú:¢{ÕöÍö5x}ÿß+wyÆsô&§ lé2½ëµ÷èª×®{í±O\`»8dR ³@†ŒÌ_øÁ¬©‘DLF3eF# áˆàÌD" +cqŒÓŒX0±Ì×xLÀD$ VØ;’‘‚T¤!“LLF¯3S0ÓË Nä!¼ …(ÂLÌB1f£sPŠ2”£•˜‹*ÌC5\¨Á|,ÀB,ÂbÔÂ:Ô£X•èä7ÁflÁVlÃvìÀN| »ÐÝØÃ;òmìå=ýöáq|O ßÃ~|ðÄ“8„ÃèÅSxÏàžÅQüÏáGø1Žá8~‚çñtœÀIü§ð"^ÂËèÃÏp?ÇœÅ+ø^E?^Ãëø%ÞÀ9ü +oâ-œÇÛ¸€wp—p¿Æ»¸‚÷ð\Å5¼ßâ|Èo¬ð;|ŒOð)>Ã×ø+¾ÀMŠ¡±Œ¨›Ð†d¥xÆÖļ¿…¯ð%–a==LÙ¡M´¶ÐfÚF +$Ü£ùTE h-¤jZD.ZL5TFÅÌÆÙÌ檤94—J)ühùÐHò¥Ffj3} Õ1cë™ñ d¦(²P4EP(…Q0µÓRê e´‚Zi%µQ'-§©4™¦QåR69(‡¦Ó²1÷)ŽfF…ä¤"Ê£™”O³¨€ÒÉN™”J“(™2(ëð³Ðc«°\®ÁZ,á²KÑ5<ÖÌü|ÐZ¹9ÆMlÀê¦Íø#­£U´›¶àOô­¦=´7h=­¡G9;Ûh­õÚ6ü™svߺþöãsoçy¾Y VE3µ­gú¯ñÛð¨Ô¯lUŽ+—”+t‰zy¿çý{‡÷ºYò<³çifÔAæÚ^æÞnæáNæäVæç&lÄzƼ–±v2oÛyw—2º&æqsz󻆹^ż/g ”°f²6 +X'«f*+(“•Æê²³ââYf/–*7•%X¾+çÉšì#d!Cº)]’Þ’z¥Òvi£´Zê”Ò$»4QÜŸŠ~qD›ÄQ#J„&rD–° ‹0™Þ¦~:B‡øÔÙO=´—ÙÕIµ^œ2ƒ=H_gΟaþ÷±N±.<¸³^žcôGÿAÖÖ~ÖÙ㬺³0”ûø=¨=˜Ë½h §ŸfÇèQ¡!Á¦ À‘#üý|}ŒE–Áz’•áT»ëº-ZS•Íz2pVvéH¬Ëry‹)ÞB÷Kpéä z ËfMäŸ.lÖ¡?ªÓaÑN«©j³»A—b¹TuÙiq« 'ŽîÊj3_'`Žr•V{*r¬ZЬcóÝ:ʪ͑ºâœìŠt7¸*ª-vËíH»åÏøÍÑÝ ßø¤«åÞøçÜÛÞ.SpX–ÍÚÏ°ùdvªžEvçë’ÓÝR›W«Ù¬ùª.Y´“$ç§ÅÙmá]¶hế+G ÏoÑnÕ»n}z$×=U½ R/t¹tÅ¢q²h-º°hz@B¸Íªæ7çÙ¬§ùHP_Õx'M +<¥ªžR·fÑÉ­p•պ£Öå™Ïfå!§ÉÉËMÍšd³¾a³æê¡ 6Ï÷†ÂÆ +6"ÆY& 0Èe|…|V⡳F‚AøJ‰)HL6›Ì¦x¾‰+ó]MÁ˜åWîhœ õ1‡‹9X˜#(Zf/’W( +‡ÉŸiÚÀç~™"Òúüwùy¾jv þÖ2£ýî0‚=““¼ÃWb×îa1q“Ò3ÒR™ˆ†{ö‚{rQ¡_¡=©p†Ý^èùRʼ&õ)[ùÄ ‹#*P3Àg´6¤Ç ”ž‰Œ¨Ä SP°95ZŒ +)Æ þÅuÕ5q¦ñ}ßÝÍf“H`É&„@ É&áCò,QÕÓ¶@ED½‚ZeT¿õÐSÚÖªÇ]=mÏ›içNïz­ö¬§u¼Úö:cÇ™~ÜuÚ»ÇõžMðîæòL^†™ç÷þ¾ž—Oæü¾ `ºwûæ5dê8±´ ìÆ/7¼hï;µ¶Çž¿)—…ält½Ðøê7Þ—Ž?¡[ÎJ?\’Þ’NAÌ£À€§÷ɲŽŽO’žA¤j±šåINHŽDG¨tèyŽü²|—Ë“êDCŠÎ ÏB¼ Û¬Iˆ Š!1L ØèÁ$¤~7Ôko]^QTTÙÖÞËJ×K÷©uu+T+Œ”"ŒãŸ°‚2êŸ%¿,ß ßª¦xn¤€˜ñA±XØÄf¤j² [ v–„»)ÈÅv–ÏL"HÎn³#iT2ÜòtðñˆP)Á€<–B‹l¥Hä+ƒ!‘O‰ +^g˜Ú‚ßÜeŸ¹²¬cS¦©X•¤Þòùš——{ +Û–KCë‘ég'(ª}´­­­ð½7ê¾|eéªXþ¬eM›ëFJV Ì[p`÷j©G©P”šÍ¥€‘òŽœ¼ž^" ³ X§×‘Yi˜-@ÈJj°R€†®tféJ+Ѳˆ!)lÕÜ°ÚDÐ,:ÆäQ +ìÊó¤Æ ^ÇP):e³:œ§hFÀ<ÀD“ùÏW‡ü©+î»Ñ}¦ñKT ?üÙ©1+-!s6©¢•Z¤/ÔÄÉqÚ­)ˆæ~¯ÛEfd3ˆ ¹y9ÅNžbÆ s—`‚ÙŸST“(M¿kožü¸ÓÛo·•{›2D»ÆæÅ4?³:’K²”ªäzCÃõ°Š¢TÒWÔ-iaë’ó½]_˜nèϘpM¯euÇx}I¹Æ?ýýÉ0¤*”žRÉÙRHe'™ÁKÞHN2Êå³(…3š`å ¬JÏCt2èdŽ;ÈK”AÒX]8àÑÀ'‘L)ùÔ@rè0AŸ›}¿î+½Qұí×<¯ÍŸ=·Þ÷ÜŽFï¬-gjæŽd$÷íÛùRዹu£—;îÀ~E„lÉÂÆ×>¶¤®ØW×v±¿ÿs~yAóËÿh¤áX“œ  ³0»@x"δTÌÃI¥s£Q*!g°¼ + IrØ69’FŽD@ºdï‡D ˆG6>–pŠ0« ò“SžïF?ö¬zü™×£S&•bmùût#¦FüËz…xÙ:i{û >ív-J÷¸ÜU•Š!Û¤aéýDrÉý†[~&̀׋HTDŠ¦›3õJÚ'°¾Jx )…Jmü¾Í™Ød«sZ‰Æ)¥Ð£ŸÉŠ1K*tWQââe5%¤„˜Ä/›Õ: +‰ñŸ¡TgŠß½,.ixj8ÃÜÒW[f·ÖÛõÙÖu—VŸêÛгöòkãk– ÍÛ6{óõµ—Š×ÌíÚÙI÷Wìh©ê­ó—ß½å“Þ†‰î-ïyç\Ñsö…G·ç„'º‡ÇëGæ.@¹bçÄœu‘¾ÎÚM²žré 5Â{mzD°DSƒrÒÕ Š`tPo¦ :ñ!A‹8'N HÉà –’"óK)Ø€ƒú"R(lqHªÚvçt#5b^ž¿ñLCÏÍ×î.xj7E6Ú¶/×–lîýÍýÒÌ«ßéÚþ×­Ò'oJ£Ò¿pç½ÏûŽüãÁ¡ä)³ž¼³¡c7rOö?jpF-X¶}ï§GcKýè𚯫ϵúKZ/£´3“È°tq«ßr~ÇAgq¦mÉäÝþC&We6 +€ L‚bD¢,T"FCa­†Uš€òŠlñ2·eaË«5ZäÍat^‚”xO‚,zH`씀Ó¯¿`"\E%;+daýwIM‘“IŒ[ïqlŽý';¯FëK–Œ¡”?¬Zÿî–E×÷„º­áp¸1Ræ¿R>±h¼fíþ™Ë~õ푉+äÕ>³vÚÓòxn웑ÓÒí[§%‘nK:uåa8Ù Î~µç·ßoõÆy@”ó‰ç#µV£ž4e‡=Ø'b6™Áj¤ ±©TÎ.¼l‹³}:E ÕÖ`±8 +èI*V£,aÃÓsÍQ ƒ÷˜‘†F % €ŒÝ!CÇ~9Š  E Îé°X¯*Cþ¸> 6gœNù8[–¨| ½ô¿+ÚýÔ”™Í±£¹µÑ›«K÷oâ´Õ\—ô·öŠeC…i¤ ƒîÔä4ë[“‘Šv´¬š¥M)y}vëŠó]¥ÁMWôÝï-Ò³ÚeK¶em–dí’%Kx—°Œ]blƒ  )‰Y‚S³™­!˜ÔÆ4„Bâ²8eIIšÂL t†$@))tI§eš†v¦IÄFô>É2˜aª±gôì?ïÜsî¹çX4+”;s¬Lý_z¯!O 8àâG·$nÅý?qY‚kIó*›meÓj·TÏÝ¿¨È™´qvÓ险1&ï²DgHëù&깂Ç!3CŠ=Mê ò&p–PÕÁ2MÒB±’‚—7e"²[J¶Ï‹ËM¢ãÖiC-ãÄd‹ëªrJï©Aµ«Q(æ²ÑñÓá–¶ai™B2çÓwkO&n~µî/°ã›c7¶8«ZÛ—¼!ñÍÖ7À}mùQ>óÊõ-¯`˜–Ëö%Žç sÏCÎÇ„–<…Gú_¬­1Ú&þ~îjââO^n +á·d êSS,7“'^›'ä:Á !:앆kÊ„ªÐ0a,W‹<¦Cµ#L+Áû ŠÞ¾û­…S”jñû›{¶¿3»F¿—b…Ã:ÏЛfiìYì<ns›ð}bT},âQ”EIˆ×:ù|!ßI&d +R!èÊ’1J/ï4¼kWjØ”KÉ/h8R3¶”©Ø&ìf$ +¡‰ÏZdCƒõéëZÃßÄ5í˜ÙkUFíôM.ùÔ²ÊZ¸¶µÃîàÕ,97ZΨdñŽò§Š#Áâ‘Ž¸L…úßU†ŒÄéó<"ÖIrãÚ‘A•CmfN6¯Ë×IV‰.?åO·9jONYÄþ¥(“âMË)KE¤>ÁH±}Z5Vî_–‚151â cè¤oª’ŽDÄF3×ï}t:ï~ mn$~óÊ¥Uµ{¾ÜÛûÉúغγÐrç×ÐþË¡Äå?ÿ>1ð»¡ýÐÍÍÛ#·ÖÎ{ûÞÞk<>æ(G¡Õ«¤ ØÇë ;‹WÑ:=à†)>§¯nZLn#K¿½ ˆb=ã¢âÈäqûü?ªJÙ~*ß!'~Hç «e¢Î´ÚÚ9Ãæé'º›Ö64öý♊JMU¼¥ï;§/e­#7WÞjC>›ô†˜§­i›û“žjaš¶yÇ̃ûR(ÙD9…š+Óƒ~•ò»3y¡„Š23ËÄ€wƒ"!²½ ¦åJ%DŸ†X¯¿OD˜’!IŒ,­†“@VvZ|˜ALˆEÑtZl³x»£-¾ß×Üì:ØüÕ‡ÿ87¬“Ñhô™”>m¢O[–+ôT®x½£¿ý‰è5¤$‰I“3›^3ßòKÆt¨/Í…oÕF½Ts¨ëùõaœIðÁm†CEF¨ŠXبZjå‹AZV„1¬%:l#„Qq|1E5`ù¹ô àƒq¾ÅYX¹#bÄËž-ËTuD¨¡ñ†bwˆ9_ÌdètµÀšŠ »ëvÏ*˜¾nÑ×÷ÞIÜ9øì5á¾ <û âÃécFF$Yj¥èó5ˆ&H7á쯭Pg‘y“K¨½PAÆ_³º®ß^Úò󦦊îúÎí“<ÐðÚ³/Mjzô$PŽ¨; 9t:Uœ¿ ÉÍ\uu:, ;H5ñ({ö£çVN-s<]…ÈE~‘Ÿ ÊKMU¸€b  ÒÞT]&ÂW@-«.t rE3м!OAï•I€u©ÉNÚŽËç[>W,œVL…a;:"^7ÄjÖŒ];d‘¤XÄѹžýK¬z!8¿òäØáO¿õÎÛ1Çßú”7×É¿8P5x«ËRçkˆ¬¢{O¸yo}·îó¥y†Ù]%zÏÿø®¶˜¶î3~þÿs±Ï1_ðŒs|Á>ÛØÛ`°ñ!`!@)„4Ò„uMS’¦mÒ¤í²d—Œ¤k»4S´$›º=tQº¶Ò¤5š²,»hÚ”=ô¡Ú&u/UTEUìì;Ç6ÊH‰ïÿ}¿«Å*kôÏþu~"3ãh67Þk¯Ñ5o[¢8` (g]) bâ@®j–T9N¡Ä”Å„õ¬CX§G,ª®Â.”Q;Ö0(¤‘A÷3(¤ +¦àR¬”#Zø)½%‰$ÆákæÄz1iB%¥9N¯ßîEÏöúñh 7?¯s¯yÞµ-PK_?¯nœ½ªÜ“ý°p,ÙŠA++­£¸]é‡Úw9{½I¬Í^§FáBQ¢ƒ$vŠãnÄéì¨'…Ù–öG(Ã(!ã)Áík9ÄèøˆŠ©´EA(hÊÁö–@a£hÁØ¥¡ÃgÈFøcävà•Uk;Ê´úsn°K± WtÊÁD:— ×8p6c>IçK"·ô-"9ucÞª]&$Ǧc²˜Ø‹”ð¡©KôOMùʪ¬m#í¨óÐs=§nš»±/öþqþ|í3C â%1u,€œÊÜ\hºët|gûæý7g.OÌ]<4Æ´\"™ú¶¯øø:#U·ÖÛÎOœ?ܽa~ô™úÉê'ý5³ŽÌMþjª6àõ±¹{}ÇžxmzÓÖ¹ûÊý“ÃJ26Ñòâ’2•€ïÿ8Ÿ€ŽQ!—GòD5…ƒ¶*Ú,q¼Î§"m,Ä܌֦¡ƒ¨Å¬DÀu+ƒ“‹4—šF‘å²òÚ*Ð2¨Èì–2Ï +úu^b©3ŽÎàTÑAG—Ñ-˜Ò¶–éÎøþõ£±àwÀ(80ºM¹ò<ÏöYcÌ-äž[Š œêŸ'Fks½á +¸înxéF‚'¼D­h7Ú܃¨2•”×yΩÀ5Àje#d>),‰°Ë9Þ ,&å›÷Rô²¤WKa_ªkî¸ÒÖáiM +îÖùA¶âqÈ£›;ÌÆfeÈ‚ö·z„D«[H‚*?¸š½Ž†è— 3á"¼¢½BÏCJ+ÍœB¡D:'ª2BÌ -Ì+È™,)e2Xrt§`,ˆiñ>‚-‰ù¦jÄ6×tp<¢æn£›€6 {õHø£ï†}Oؘ]´u™ç3™•i>Šö¦¤W‘€¢êÁ®“à1 ± +Å=nN {nl”©¤‚kã4 .ÁPÆÓ¨¡Ȇª4vŒ |meµÛU¤Ádø=„Ø9ñ¨º•jâ’Z¬.‡øÈŠo.ê,lUQ$ä¾ñwÊ +¯×6Â)Vé:Xàle†‰©ùR+AÏhÈpíÞ í(6QÀI9NÙܤ< +ÆæÆÔäÏæ’ÿ÷ΖŸ¿ÔùÆÝWμêÜxlìÈñoÖ¬;ú‹m _M¿teâìW¯‘ÿøÎð•77ß9wô³W¥94ÙO¨˜#H´}bCâx:êWÜ©kT¡H¨’E0•àEN…AÅÙÕؤbcèt¹ ÓNToÅ>æPF%™Q{ñ$upýòõ® H +L¯•ìºàÕð!smñ ZŽíùøÙƒÿ |¿O¥ŠŽ§]2x·DUÜ妓cý'Ÿ¸°Þ“Ö«rg(¦x…žþè…ñlõ{8wh̲ü^Ê—›c»~3sö“`gµ¾ ?9ØGƒ2¨±‚!I“Y+³Æ…í¬AÏ©8=‚äcAµÅ—Ó(XS™Þà®ÞMVÊ#+)UÁ˜tÔLõf’×y}齜ª{÷ºÍ­…ë!²nõÖ˜¾?2ž{{)‹–€m‡ˆµb¬Ú¢Q!š§!:ðFÑ~D‹^ùœÕ©´³–J3ù– D´!¿k×Ó ëkPß å-dB)È¥G*< +§|#ø¥)_îà Ñè`âÝS'Öö “üÀØ÷^8ÉPÍßÛrc×þß^:ü§ý§çKYäÞÕ_ßU¢Ôè«T¶]Ã?>îYôŒ]\Ûmà÷=ûôB¨é¨¤þÿÆóÔ=ÂBÄÅ°zA…,!1P +Æ€ôî +¹´)j¬cQ „¬¤pFc{X¥GÈ(”“±>ÁHéÙ.7NÈÿÂÈso+§;ÌFdÖå¾%#–­æ½Ÿ’¥Jﺓ#]v¿é½7”Ìdÿ³.-8öTüSšÊ^{QNÁíb“1 PO9T²b€‰r.€´NVÊ°E!ÇhM´$qg¬·©À‘t+‘ƪ?tmyQE1 WƒŽnƒ[0vW+_9±m.ZR}çĘ8ÛSÕ£)ç;ë÷5?õô ÚTÐõì…áéÆîo‡Po^²2Iõ‘—!›D»Yàª9;§åJõ4kç­f“A¯SŽxXÅl–ÿª "ÞàDu(€"ùi€;•›ôR½Œ„—~Êo}i¨WoÏýD]iN÷ÍzjöõmkÐÝà‡„Ð 8a³MŠ¢#‚?Ï~8Å“1›Q1LQ8F‘K ûþŸ7üc<!?ìÉOÎ<·i!ZDoÌF“úWÇy9˳åò0×.-áhLpƒ/¼!±ô É$}ƒFnÔ/žööË/´©;ŠãçþÉMZÓ6¶]k¬I¬iÚÆ4kÓ»þÓ.³¥tZ²èJ椶۬Vü³ùg•–>Èp΃!ëƒÈ"] ¥ˆƒÑ6ÙÜp"CÊ(ltâÃÊÄØ4Ù÷Ü{[cR¦àÃ^záÃ9¿ÿçœß¹¿{R¶÷XqJÏ8É÷ Y/†c•ÙÞ™öüÝÙ¡–`Oñš]Á€ó5÷Ûêj{gü£Þòsׯ®ºòºpùÚþP¸¼Ô4¶Ü+ ˆ-•}sã7k{©ý§>½µ3þ]ó»ç#âµà`iÜ-^é=m´®Ê·ÎÝZÓ ¿­êÍlŒj©®©Â^Dó~³2qÃ̬ ø«ÝN{ÑJkŽÑ QÎölv¼>ÙñµU®tõÒUãGÕ­2)}k Ä®GæŽ@Óû«‹wk][êâ]®-‡¶®óûŠòƒy5[×;*¡é‚jgIû±2w_{û¦¼O¼WÄGn•iÁ—OÄ^ߺ¯Ñq!×&¿ÝÛ6Øý½¸b}ÅS_ý%ñÑxÊo 5T);sþ!ÉD©ÏìðÜ5“'#ª‚ï›>Âpwn”(£lv8~ÙäQk“ák%©JdjiD|L{e"hT&(¤ÔRDˆÒ ¥”l”§hú£ì„<…òUô¯ 8€ Š@lçù€ýOòXŒ9Êó€÷¤s1ÅäÆ8«¬Å­OžýÛy}Õ¦ãtåBì—í{`÷4d ÃmecßÄ:iŒ©10£>_èˆA0vÃcU¦3ÏeÒü““VmÃxå+ +Š›ÉÃöp\ä?¨’÷åA`Õ÷+“í„ä88±G…>”{ô½Û£×1§Ô¼èÁZ=$¢|‰ý7(âAùÔo”ü‹ñ +çò„áýç½_ ã¹Ä 烚 I¨¹òÅ6Ÿ ©À®¨ÅzȇdT¿'±w‡±ÇZž¦¡X¨‘ós!ÄÎÍñ7'ƒ˜šó¹ +Çê0r…ó!·; )nKÜGœ.H™¤È¿a/?°Ü›Ñþ‘ºÇä&ûËs+aäÕ]-×U{kÕwO•l§/îצæUº‹Ä<Õ×…yRYÄ×Åâ¯Åi!^󻓺LZ|t¿RQã–‚þn?âö!^©¼ðº/¿ÿ+ÎDs>¢Ø#È.ÈËûÁmè7 CÞ'Šiõñ( Zðýx¹rm±qèãš>;…þQè}m(ß‚$ ¯ÊÛšœÑÖå„&c×S˜Ðäl*Üÿ:b3ÿ´½$ø¥¦Ÿ4„m?³â%"éNØ:|!KÀŸøhž&2ÁI¹ò9Ä42ð]ÍüœhÙ/æq¬ éd·¬‘ó£†6,‡Ÿ¹ýyë^œ|ðJ¸FT€Ø~J´"‚ãú +ÑJļ( ­B» þÙGp¼"VWà˜oЉ­A<œD%Mà ‘ë¡FéïK,±ÄK<oPô1õë“7/œÌB)ÇÏ;_¬Ì4ôÌKÓq]Ðeè9º®@³ë:ÏéEOAÎPËóº€óºHÙô¦®K¨G×eè}º®@ÿR×yÎo"Í-í­ÍžP÷¾î#½þw‘"ÔL-ÔN­ +Q7íG¨—ÐA +Ó.ÚMGÕºCÏéû2­’½ÄEªN»÷âiZ•»iYýŠª¬¹~È’õê|V:]ó™<4Îòѹ ©á„ÍãùW€w'ö +endstream +endobj +1554 0 obj +<< +/Filter /FlateDecode +/Length 10663 +/Length1 14676 +>> +stream +H‰ÄVkTSWþÎ}ä!$$@WÂå @A>°ˆ¨µDâ(Å*ÖNñ9X¬µÕÖZŸX­c­µ´j­ZÑÚ©m­ÕÎÔigºfÍšúÃ3kVWgÖªv`v¢«u¦cÿÎInÎÙûœ³Ï·÷þrö†UàQ=sVv®!¦p)iþHOUK§¿§ÜS_ 0+ÀÛ²l©¹·¦Û ˆ ¤Ëjï™ßÉé/øÅ ’?ÑŠö Cªd ]ÑÑæomqÚB ‡öÃÕA +Í^>–äf’“;:—ömH˜’Mò:²ß¼¨»ÅÓMšËûšäÖN_ûîî©´ÞÜåïlûêIõ$wÐy‡zº{—Ž÷ Å@.0ß³¤­sú®œ°O6þÀHkw°ÅÀXÆÝ^HC;pœ +?ÓÌ0§.Ç2È¿ +vƒ4XpÆHÑ¢›@÷”ÔsÁ5ÿÙh’D…R¥ Õ„iÃuúƒ12*Ú3!6.>!ÑlI’’SRÓÒ3¬™6{VvŽ#7/ßérO,(œ4¹¨¸ÄSêõ••WL™:mz匇ªfV×ÔΪ›]ÿpCcÓ#sûX³ÞÎ]{†½qìÔÉ·ß9}æÜùwG/¼wñÒû|xù£+_ûôúgóV<ñ6X¿ªwc?v¿‰ À“ÏÑ­~g¯në[‹V`Í–ö/í8²hÙâ%Ý=]ŸàóåX¹ðq ãÙ–¶/ïÛþÊÞ¯Üøu¼6<"Óæ_ѳ9`EྠFEGqáÑqæg}l‹0Ó\hIJŠFsˆÕµ:³áíO›×Ùsì(;Ê ì»øM²¨€*¨‚Phˆ³Z„Ó‰zDÀ@»"…h˜ƒ ˆEâ‘€D:Õ‚$HÄ…¤" éÈ€™°ÁŽ,d#ä"ùpÂ7&¢…˜„É(B1JàA)¼ð¡ å¨ÀLÅ4LG%fà!Ta&ªQƒZÌBf££hÂ#˜ƒG1¡~Ìà ôažÀJ<‰_â)ŠÐ*¬Æ¬Å:¬§0PFžÆ 6âl +õ9<-ØŠð"¶á%lÇËØØ…Ý؃½Â>¼‚ý8€Wq¿Æ!¼†ÃxGðŽâMÈÆŽá8Þ œÄ)¼Óxgpçð.ÎcpïáÞÇoð.ãC|„qŸà*>Å5\Çgø-~‡Ï±Ëø/ù–b9Ñg1–ÜÓt¢ -Ôw£mÔÏGÇ«Ûÿ‡…?Ñ,Äãèų4ú{® ¶éˆ!^ÌËsŒÿ…þÍn~ŽpYøFŒ¹ &1- Ámü_á Úsì]¢3ÎÐÉÇ Õ!B:Dè·S67S†(ëýÄ„åäa7E¯ø1—8SO<ª"nUÐYEÄB'14ƒXkQF(FÅ=bš-üMøB…ÂVa³°Rpñ‚Š¿ÈŸàGøüz~5ßÀGóZ>„ç¸1n”àÖrý\/×Äep:v•]bçØA¶‡¥±ˆf¦ ûjŒÿßànÞçÁ•û|ɇ=øÿýÈ«³OT¤Ñ¡×…kÃ4¡!j•R! +<Ç`!¾û̃ó%o{½Ý6BÕÀW×'#³!º 1ØMvrˆµQf>Ý©ì¶LúÊœÕn»ûÃæɼÌOñš+ÌþV™O¡Þ, >Éonöxë,Ô†a‰k¬n „sE‡¬L)÷˨i°ÄÊ¢obc¬¿µqVƒ”-}›-Ý¢³3lÝßúÀ•bŠ·äÖO6—|Té#¢ ì¶Qr›jÏ9X.ó>ÿ‚æ²f¯ÝVn–yÉ;Â8Ñ·Ì'ù%šÉk’C¾’5SùÙã7qË¥±4 åŠXyjc£,J^2Á$¼²Æj²ÛÌåevÛiºÅñó^1¢èÍæaŽôJ2ó{+(`žºÙÓÜ8Ïn£)ŸÞGp°Û²ì¶Kv[‰l´ÚÁ*œ(¤<ÝÁ’'Ž+Uh Jé6VrÂ6žæ¶)œ:œÏt 3Ç¢·èÓèats[¾÷ŠTÄ-¹;Þ@=´Œ9Úkð„*Ù‘…7feå”iÅÌírGsC-qå•ÆÎuªþ±›ÉƧ¿Þjû>`a`ü[¶‰¸«É£ç jBÁ„.ªÄ"ÓÞàÎwååRRjê@­ÃYUåL,N]™]GãÚÔ²â¤b½KÔR½HòÄÆD´¡S gcÝ•Qdqd/³Äš“çL`y¹.§>?MJRFέ7’ÂÙ­ˆÕ¥f¨"ÛÄxå—»kº5&±–Sø¸ÛvaW*,®sܹ¸QÁUÝ}QàW ÇuÆãH7jÕ‚&SÅ4q& Så2ŽeƹÔzŠi>cêÈtzшÈeË”:‘PËqä9‹yg~Z“’”Z^)¹Üäk‹&w²–)s£òrÝ1O™,% U…Çö÷dDÕæ”dÇ&µŠ¢Åæ·*·Î¦GO¶¦›{su§& ¥›bt¢#~ìöÀı¿Îs>{¹iV~JJL˜5·$nç ]E]•FGooÒŒ¢ôTK¯Se Ë-‹ùÓUà Uãç§ +2ÕË,O*˜:Ï£f”•l)Ò ˆkˆ5Š|qÇsylÅ$­(2ßÝÀR¦(Ýyôhºœù©i©äWšË}WLËâ(à9E~S‚n*” \¤QKSUªˆP»²f†5½°-&Åžámʱj4º¦ÎD³Iç*Šç£T•Sô^»Ê½«úd¥#ξ²¡×=}ð\׋c_cÓ&'«¤º #.#LmoŠs¥–¹þÍt¹Æ6uŸaÜï9ŸcÇ>ÆÇ—8N|¿Äqâ»s³ã˜Æ$N'Î…`H B×@¸7—² Ñ뀶¬)c-¨êÐÔiŒI­4­|Ò*µÕX¥jí—}è4ª}`Õè‡Õì='Mò‡ø$RÎû~Ïó>Ù­'šJé/Yox&=ÙÞ:žÕÎgûW–KR¿KJÝ'mÆÖPÊõx1J93$Àa×0Ä+ª­L#„ 짠UÁiPˈ'Æ5@BöZ³A)bøFܽèHØ•’•mnFmÉX2PCáÔ®Ú@ci##M¢Ëç–~O**â)Ù€¡TNpïÜ`é9{¶ Íž¾6rf@ÏÏ& ±½`!¬f—¦¶üö—[[ßê‡Ö¢¦¹í àv(žÔ ÁXý¶úø#¥.[Ã5ª ›3dbR$Ô'0tµúéuIש'_¡®7ØR® 24E–k¨¥B^+m·Æap´JFl4¢Ó„mˆóºè#q-(­¢‚×é !³’¡dŒÑ¡(|*™þ?Ý%œÑX’äi‰_ïÚÐ’ƒÝŒ(#Ž’ã_M QõÀp¤¾´h`×ÏwG·79YŒ-»wƒ’Æ;¡Ðí0ûý£›®N]ýæÄ‚ýOe¶rÈÆnj7öètyع÷fbœP“Óë{×òþ®T÷+³'?_Bm_DŠO¡¶‚Ôs +œf0¦ <ÃÚÀïà‰ÝÚ,ÚÄùŒ,m°Aé’‚22Õ8Hq!I)㋃€É¬’ÀfhÉ—ÏìJ©¤ùòd ›‚ ¶¸£ìWË#.:ób6R.Üg5;|uM%[›Å0|¨7Zh›‹¶åíœî…›ƒôìëÅíÖÜBéäfÞgi7çªï©žSÔݬô\ÏÁAAow„O\,ù·œøòö,j»€$Ÿ"+Ø‘Ã9·E ¬`UÄQS/[_£e0Õ7YP‚{5YÓHÜŸ2 k.éýÝ(XLšÖ +Ä)ﳩß,TgzkxLÕÙ8¿gc0¹¡S{Æ…¼s\÷¾>è4uŽ®ûí»eŠ"[/Vÿ«úÙ‚;fU؃)Y‡ ½CÑkøì5 +eÒÃ%*o—i“¼x|v*ÖÊIm&Ëš˜¨TÀ‰V˜—µ +†Î<# š!™²C"h-:#éi*]ƒÏ¤×Çp‘ÓÆ'‡Ðªh&h©Tö½·yòRiÓÆÂlûâÇ Sol=|'›‰Ofô…ön«ÐY¹°kÏPÏöÁ +59²múç[ÖïÏo8×Ö0xhpÏÝÝ=¯LÏ\½Ç‹] ½‚uÿúŽ=ê÷Þ¾0°y{OÇH‹”(Ò¼Û:6ÍT®EZ¥)iÅ¥ á(¯W‹yй8=B0IƒpÀΡ*‰Õ­邵Èg$ ü>§ôši(LOŸb)ÄQr™L¦ãÆöàT%7ìSnÞ”5¾˜ŸaÕƒG2©—nŽŒÝü浚äJìx¹\TmÊb!váúô›6¿åOlàÜvÿƒÏOý´úŸP®³ÑÊÊ›;½•ŸHó\ò-ܦ{¥ýŒ­°vA«V°j-‹fRP»õ*|õÚµUí•–´¬nlúéÒƯðÎH™ñÇ#?L Æ›‡KÇSÃþ¬+>:B]IÄÆÇcñQüEÜüÛÈH ÞårÁxÔª@ˆcHì:¯S µha>8묳hP´¾µ“‹*ºB¸‚ õ”-‰)WUIÜô‰pª‰µgY1h'M_®Õã\f}$V¾õçí}Y~ª:Ûã´'R™¥Ë=Ñ„Í«+L|oî +Lüš|ñÝQ÷F‹þ!O}²@HAïµzÝs™M %}gŒî ÷¿‚ ߃;RÏ›™!dlP<Ÿë²h¨õ1‰pB¢³“ŸÄÃ’Ku<Ï'T.ÂY`·' J'ìµåÓ Zó¸›i©X0’¤³åà("¶vwUsóóË¢¾À]¹ËÖì°ÏÆ,¢’î&¤›°f³ýd%øÚ½‚ÏØg,¯TWþ¬µítQF#uZk€õÆpOÑž_ªžkŽù½—= /9ê²aNÍTõ¢î—oŸ&xKO¾R^CN³Šþ\>Tg¡]ŠŽj‹Rœ+!âþêÀ^@µ)Ú8&šä1i’æÿGuµÆ¶Užaß9vαísìsŽí8v|¿ÄvâKlÇvìØNâ4‡Üê¶Ò6M(´é’^ i”‰^BÓŽÒŒ­¥TcR7ÔU…©bÓ:v u?@¢Ó~ìÇZ„`⛘Æ$„ˆ³ï;' àqüã{Ÿ÷yŸ L‡hÀh±[‰Cš´ ž ±¨Q•×\¬-|“xJÒí ø`:cÊøðÙâlŒè½þ Ìåh1N˜*ê_üE5þÑXùCã‹‹àÙ{€¹tä?³¨1I\¥6ÿèöë‹ ©)Î-œ˜ž¡Hý‰ÄÝ#à«en–®œOh/îÖoyu,Þ±åôàè¶rs¸xìѣ˺¨nÇõ¥öjxbû -Q£”¦¯ F8U]å8‹Ø¢Ë1Œ–jvà° ÈÉØŽ[ŽA²gç æÅ&T¹\ë +(“Ý‹'È +h<[äùþËå7-Î=(sh‚]ïÜ’€)–%Š)s¢jþÁÚJ°2‰9ªZýZs½¨®Ú]Þ<œ‰#é1&¥å5€ì/X3þ=ª‡ö0.ÆÉŒ™áð(ôÓ / +iQp0TÔ#hªå~¯[e•éQ>ØQÐÓ^š¿Û@ÖdF¡ }'Ï"ß%ÇË“Z3¤­œ-30è5+I_þ§f2Q⃒VóÖpí§/Þû0y 'ZI:+‹/VÂ%ÞJš‹½·~?9œÿòæÞRòèØåæNÊÓt®"üZâ gηëã—=nä9 ]ãÜÄggvœ›5tgeÙ&1Ñ0'‘¤Ä$+„¡q¤ñúWù&:¾â=o³’ªzÇ/ÕwŽ}ªMå\oÞJ˜+xq:Àø#2’3ÄA TäB‡5þ¼nN)ú•I¡ûïÄí(ˆóa¶D`¹Ó4yÑÜXåqt-rt“ƒ B$óË~Rk³:§ñ¨ËSiIŠß~*žËë…ñç/lÙñv¿ISUë½ÞÅضyi8v÷`WW’²¿þàÙ.àÉðX­yœ¤ö¦«û-¬Ó㉽8œüHò„ýK'Ç¥O+}j´g—hp;þÃþêÜ«ƒõ70#ˆ ×¢Èås@Úb†Í,t:.0"B%@—J&Bû=úÊñeûy…€hW²J$îVt/èÝ(X¢Û•E®§œ¯ùNÁT­l"'¯&zHÔ‡àg`ì+ù³oI$Wš|çäb¢§äâÕå͆êkè¾ï΄éYc‰ûö½B; %ìYÕկѻî«U…rØçè§sL†I! ä#£gPvצ">W«Ã&šèÞ¼%臔½ñioHx„¼¯àúÉ:NÖÐb2§Äf`‘5mU9k…Ö‚ì\åÝÂñó^tL˜"1Aß™¾1>~Ã=#¤h·‹7;\8oÎn!—` +z—}Ö¹fÞí53ÑÁán×ÉTþÉíÄŽ•¿5ÞÜ|øƒ·²AÒ.ª–£ò SÇŽMSàã¹Æû[sSï/-ïw9øökæ@xiµñ×ÿ..^úOQzÛ³úqCM&­Š”=ÞVN«R›#Zž6Ð> I˜ôˆ„œ +‹ÛE5ÈÊÎÕÓƒ¼Z³V0j7JÛMJ©ñeññ±6× -*ë„é«+¥Ñ8Šý%ÐÝx—¼Ø>8r˜n§Õh ÍR¥Ã½›;FOzÜ:¼ajó«ß3 ³-û¤+®Q7é¦bRK¬Õ˜íîšiìËú j4‹{õsâcµEÅ¡FÑ]Ž‡EVCšãZ¿ÁJót» êOÂ…Œ¨ˆ¬^ô[Eâ(hqh`q=ƒÊÃqÊ`8—¡ëDÓ˜±¡‰6Ô +ektœ¨1)ñ]'èsS,+Ì,I¥‰s;gñEN¢y[‰GPò—]>@ª §¢¼ HoÔú9h"ÁÓÜDÃòÞp5ò+ªŠµÊoWÄF)THTûš¨š@BbÚ Ï{줔o±)Ïû<ÿçÿüþ~…dÒ QÜ ¡WPˆÐbw—㜚bR˜5êIBÿ„_€¿M¨¾ƒ‰8 fQ<´wÕÙÁ•ÌdQ(ÐÛAôÙbö MšL.ýæoŸk6—®Xxyal>ÔÙafç+ƒOEŸÉ+ßÚX4ø;/»ò–Fkðç§ož©Ì'÷ožô¦óO_ c½»Oރɥˆáš ×*u)2è–ã[ϳa lq$Á u`„kS¿ezáfqƒÚRÈak„¡‰–îU’wÔ…öì¾u@áÅEÇÕÌÙ3©¦$I§P„Ä|)jþˆ-/´ß}·Aš3#è>-W/ßøê¤?êzvF8y'¸ª§ÏwÚOV¬dƒ&(¢Õ‘©û°CD“8Jœ¬-9Œde\‹|‘2šœ¡ x²RÕPn܇´4"Q$2 âÌ¡™BV‡t4$·â[Ú»€\¢ƒz6Æ‹šZÀ@Ðe³QK“ÚVÁª%—z"…¡iÀ1ðŒP¡ûVb¶  u¬:MŒtxn*çàïð9Ýæù D> ÌÙ|E£”ªsÕ‰@èØWs är‰«}2žÄ™_ùÞ·G¹ “2úëoÚ³&çŸ[§^ pî„oêêÃç^ <åÇL5õÌä´nêWùº§t«°—†FKwhs.íë·ñcÏìÈø“ך†õXj¹q¨šŒ¶ˆ(ûæú¦fM}ßX ‡+”ó|Ë›m/O ­ó_<Ø·¢HƒË.§ï+ÊdØÛcEEÓOTˆ#µ ·@¦ÃNhn!J–b5$“]‘4þÒq0V¶ä “‚ApºÉ‹¾¤ ±! 8€•\t‚–ÞÛý‡i©wXñZ{î®CÅ£.3t“¶ih´¶¾‹‹jÖQ¬$GþôM»é¶4’\ô Å5¶x©ty½ÊmåÚ}ÑŠ¼t÷jƒdâeê∛s•¬ïíüuƒãmáùÐ{çóx˜#ºYGŽ•D§=™Á¶ã]©Ò'Ü„L$j¡~[ÔDèÝçÄ baœÈDÚÑQ§>P•ßÃEÃôgno7Å'‡©¨F,@1_ÜÑìþOmœp\ðhk¸¥Wa 53C2µkë²"GóÝ>†-@]%”TCp#Õ=õ¢5?¬©(ëÊ~¤mBóY´nÑ™µÔ=S›ßÛÖV‹ºª‚jƒqo_áäÃeUßhõ›^:è~çC½ÄWL‰Èœ¨ÿâ»öí@)S>5°íªÇ„F\/¦ãõÍU…[¶úó©Ã3;×…”yÙê9V2EÖÅ?kPЫãqcÕ«p›Ïy9þkÏ +¬1ð•Î¼¨‡½¾4†Æ·¼ôRgýàfeÒœ(£ƒßçéÅN;çtï.ÒcÐÉ"1W›dg2Rñ0ÏXõ¹©DƒT!¼gsø#4ÒÊXp«…’ӣȃ.:eA£6.­ƒ`XVsÑÿ›Üö©ö†ïBO­¸cÑ®¿õ4;SN Òë…¸©¶\–iƒO ¯¯•õµùÜLŸG)/}æfJæÑ«DÝQä®np‘ðåy׊ã/É´]GöœíØylmé˜ßPœ>¥~ïe‰0‘ªE­y +øÅ›7°[h˜> ´.胄FDçíàZt÷¦ùÜnñøÄEQ—dTÌÄK¿ºY}ðóÍWžúÝßÿýÁ/›¢Çh=º-®¢ïÿMÏþéëþ„,ër…Éq—îZiäfZâ×ï`Oku4ù%IT‰ñZÑb¤'âbŒ`ÁÙ$P•F'Ä 4™' ë‘<¡šSR4‘.´FðÀþ#»c¾Ô@KûñÁÄ‚9Ríuw÷Tì"Õ3®²˜Ò#Ð\’„© Ù2Ótü‡ûäÛ²5ÜÏz“Ó7ï8õ•¹Åbc­Ø^®ŽE‹Þc¹Úò` 8;6×i(fª5RË°W¨S©þº)/$ÚñZ\9þÌØÇ×ÊM'ç¼=_yi¬|v2¶¸ËfŸPGû'j#Nä& ,r©Rt÷ ŒYBaPYìÊ0ŒFŠi ÃÛ°îÖ,Ø-å]k=j–Xx8¹§©3Û“Y»–¶ª»W=¶re8,ìsz}Ó¹CÖÁËïo5-ƒ£èùÃR](™v„‰²_ÿ¹©>Sïܛ̰õAåçþó)ù/PS‰¨ÕŠY9(ÚXéÃ:C?,E¸ÐÇhôEò6 (\–‚ý>(ØX#v)]D]ƒ4q Ú» 2d².£ÿÍ4µ`i°UÌŠJùa“3ðD:z0Ûï Ì=ã/•L;k›§Íú*muæÕJò[K’?hÜÛ¨ÿ—ýjmë¼âçÞûÝ{%Y¶õº¶¬‡õ²äزe˶l+sbYµÏ4Š£-Q;'©;;®U¬dêc™)Mçe£ÍÒ£ „0X(ëVF6ÒÒ@ºÒ±RÊF¬líƘ1F +%tÊ~ßÕ›= lÿm×þéžûÝï|÷œó;çÞó­¥…ÈØî@0Ü;ð495£oy"Ñ3WJM>™Êi]ûúG=v¿7ä»'9[^tk‡à玛×Y•”Ìt· +nA‹{õY“Õ,‘ìt7‰ ˆP¶âçíâdàÅ鬷ÊzÆÝêÑàkÜøxE+ºN™K§Ü¶¯ìj¼fuö:pÏ~MÜ`ÑOÿ°äÛißÔÂÛ±á[íX½V¢zÄŒþ…W‹±Ó¸õ†Šlí¾ê/quXüÅ™ÈÃ}K´/ÔS~¶ÍfJÎü–Û™×­,Üøò‘¤i}ÍçÚö¼p8;àÊ©-1Õzj¢vyöÞóB<cèrÊïÖ^Cñè5‘ºù±ô[iX,ãq…-AK»¥ÁBævËf•÷ETa«ñâG]:Ï˜Î”Þ DÂ~y»ì‘Ô\i©\UDUøAú©]®îÔ…äOúC»å]|ñŒ³³¡èJ­TRƒÝö=•yö-añbo»4ÁrQÖóâOÇçž:–´÷æËY½çk¸nÔ­ô²ˆú3ÑdB“œýBܬy-؃˜;#ŸG³7ãµÕPŒÌ¾en½—E°®{ +½BaîNi„›Î¤8ÿ×ø{K•TEr µŠ.ÌÆqÛÓŸKd·‡=£=õE{‡ß;ù™øã‘îPsKÔ÷o*ôݵ”iªcÇwú.}ÍmÍjÁðÁ¥»vNuäÚw/þ>“‹409˘á®!îIºÖ+m"Ú)É$¢!§bA—Ô´½Ùâá/C'’TC~O[««Ù¢Ô°/6—Fê.!Ë[õ¤FÊ[,èåêøW!b0 òW­ ï†‡4w6ê6'§c¡Ú¯ÜÛÆ7ÀÈè€íÛîD&]^nr¹­ž®@íÃé‹_œœmv܆˜º§P¯Musn^ë@mFøÆ¿ÏΩ™©Á±÷_Î~ÿ½hמ:CÀ7G.í=Ô<ö!I&úÇ£Ö¥žT¦0OÁ×ÇÐ5H}Žèã5õdéÛŽw”Û†$/T>¢«â•…ŸÑ‚tžòòEº¢˜hM˜¦2ÆψYŒ·RE> (˜ÏPJx‰ÖÅ×(„ù%œSÒ÷°ÖÔÇu +ç9\/U\¥ÓT>   MžFùb~Fý?£¼Fä³4ÃÎÑ‚‘œGÎb˜çê:iN=¿ùÊ+ÄsÖ1>H êap +?9—ºoÜ×Ó°/JY3èg¥£ô nc~?P¿Ö¹äãàÓÈ®›F¬Žè®ëóŠJ– +J2÷õ äö«ÀôÛêëx·JëîÿOøù'@5’+Và,ú¢ò²qµŽ,5%€óÿæU"Ë—ˆ¶YƒD‰:š \û[Øð»»ÇmpÂçûŸÀõÑAÚ-/µ‰Üy¢6¿¼“D¾1à×D~øÜŽÌk(¸(„ç….…/ÕAåu@·ã—DÑ—‰bGëè„Û”ÿãüö ¦×šHV|[ Ý “ãw­ôõ­ŒŽ‡$râª.3Ȇ¬@1d˜ÁL™!…·db´lÈ"ö O²„ñ CflÈ +äMCÆš‚câ‘ì‰c‹ÁWï«T‚Ét:™+í?˜ÝŸ_ž?¾¸RΖ—ÞÙMÐ#”…ÿÇh‘‚ô ­Ò}TÁ_’ØϤñ›£í§ƒ˜µ—â4Kó°}žŽcþ +•1ZÆõQ*@ï~¬Ãï­Þ¡Îs–T'èæård<ÖQ6¤õ7:ØhÕÖ©*åže©ZÍ6&éÉËÒØþxü¯ ½ž½ +endstream +endobj +1555 0 obj +<< +/BaseFont /LPYXVC+Wingdings-Regular +/CIDSystemInfo 2121 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 2122 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1556 0 obj +<< +/Filter /FlateDecode +/Length 611 +/Subtype /Type1C +>> +stream +H‰|PMHažqçgÍeÍÕÙLk÷#$ZÿVE0 tA1H%3ê¢Í:ߺC:#3“?é`µhTÐHX]"*/v(‘ *¢òÕ¡›<‰ðÎúî¡™íÒ©÷ðð>Ïó¾Ïûñ± WÄ°,[Õsa°³«§îÌŒ¡ÊJ¿¡7têcJR×Ï8Õ¬SÁ9GÖââþÐþY>–ÂײO9>ı쭤>áîŽf,ÒÜÞÞRïakÛêIKSSS[I‡¢§(˜1-:n’mD7&tC¶¨ÒH:ÆÆH!Â$5©1é‰_DT“PÕÊPƒÈ®9ªºûUˆeÈ +—ËD÷œhú?§ˆª7‹ jªÇ,W4‰¬)q7E/\ѯh–¡R³1Þ5pnf‚’“D¡iÆ­R¦Œ 1û?Çô2ãÌæ'{Z³ëÎÎ:ëbͺ/Ë9ó¹þü¼‹øAÂÜåa[@‚x$GÌ C…èrÁy+yz,Hæ “]ƒœ“^?{±ñN}.¤ÓÏ¿TW£Á9àœ^àØÇP ~¨ô–;.auÆ°O­aÛû½ ³Ï@k£7“^-µcc³ÉÔðô7¨_ˆBÝÍåÍÕêàòd.2ÅB7„}Іp.‚¢€±Ä£(zÏ/îÄ÷àÔf§B÷ÀøËÁnâŸ÷N;UQÍÇøf01."KÒ‚¸ Gùò+KOï¯øo óêuš©ÂÃbðªíÌÚ³mû¶-à%û‹-ºÒ´ ®ôÄöcÚþnG–SÃâl dë*Ùz8‰ +Ø–þ0B=C +endstream +endobj +1557 0 obj +<< +/Filter /FlateDecode +/Length 1158 +/Subtype /Type1C +>> +stream +H‰|kLSgÇÏ¡´G»ÈÙaÚcÎ9 ŽÌŒ!¢†ycsN"P¬šéÒË*¥Å¶t¨ SZ(—0B-—‹cx)7!1:¡æ&™:7¥T7¶9ã²ÏÑ—;eY²O{?üóüŸ'Ïïÿäűà Çñeï$$½›¢zmdz^­K5›^ßÅgåÔæÀh\X,,¥ÐjTùüùs¥¾zî-é[܆áø¿l5剻YÙVnõúõ±Q];¯qQ\lLL̼®å¶èLžS±Xù\ —hÔšÌy&³ÚÊ뢹-7°pfÞ›mæ?qz Çë­Ù¼™S‹Ã,½¸oæuœÕ¬Öñ¹jsg +LþcþO§7r"‹ÛcÔœÊ*6-œÚ¨[%RLó)ZS¾ÑjÖó–èU ªÝGòxî NÇÄćc¯`oc X–‚íÄTØnl"þ"¶Cl|Š/Å xKв MÐE &Ù2Q>$<ÂE]1$)ìÏRçì2¨D×)IaV†84BAÀÌÕs²Œùâ‘èeÂ0¨PÀÉåPtú[áòMüöŒò³ävu¦Ø>FÃKy¼^Ö;æyA +À³ïî¼Ê\Mí@KèåéS{Ù™dªºÕS5@ƒòQ$ZSÆ¢¤È”¢ÏqVå3ò/‹ÇÙ |äãa~PO“EÂúðÓ—½} +H$g=E¯¦¤=¬e>I“¶x®¸è'u[µl v:#’ÑB9¸m(á›Ãž®v¦RFÕ¤HCEžt”ØO2šcZ­’ÎàÛ¯ý +xãïV>Yò lòB„ïzuÓA6ÊY[ánR…‹¹¦¹~(ö“w¦ÂýЭªcëz¯Ó÷;’6³è¢úØѳ}£*#ÝÂ8däÀ™{ÒÍÿ‚8‘s¿¸à3‘4CŽN…Ï@ˆqW¸˜ Wÿ•1ÚU[æ¨eɳ÷ r´âÔ‡Î:u¯&)Ÿ-•‘öße8÷ïRÈù’qaÑ>òÓ’îVªÀ3x|„bâÆô­Ì¾¸‹¬²ÍØÔ£ø¼ãüð@ç'>fZ¾–6äeº÷ÓÊäÍi½ïÍØqË9«Z¡ÍÍI>ÞÔx˜‘¯(¹0‰Ïú$³Âc +-xkû÷¨‘ØU›yî0ci¾t¼—ö´W×4²¥R{ñQ»•ÞÔsƒ7„M¢0` ù —Pè‚h—ËÕæ’¡ƒ®;.‚iÖ]X2¹È⯠+] Ù/ + Ôß Aí$è +endstream +endobj +1558 0 obj +<< +/Filter /FlateDecode +/Length 2463 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜î‘ÕѵӈÓØÝ.(– `ÄF|À €0òò0à¨003" Ê03°òP”׈/^b%ŽŠ,Í®k¢Ë&¥e̺k6U›Úœ&×TíÜ­Ý_©î¾uϽ§¿ïœïžsIÂÝ IrFlLôú„Dÿ˜½65}£^·`Õ¾Ô´½®-QâH‰q—¼'³(UyËgÿ\,‡ÛSáÇߎz{DN'ÜHòéw«u9ø×ÌÝyâÂåËß p!ãÒñÝààà‰1D O×íÒˆq†1‡0„mJºÉºfÈe)Ѩ™Ð$¸O†c2 Dvðeÿ??E{ÎËñÍœ«PÞsa.Ì„ÃÀ’0a2Éà sÿ3WK42â÷—) Í¥‘t²6û§¯6]v\™YEY¶•ïÜ¥Bî´RJA”€'G +Ê ^6RÅ–uß>üœ/p;sûOÂý7_À,LKþ&ü߯u –[vøÐ&¢Ð;¬½¶ÑÞÆñ$Í@‹×¡Iváà«ý D©ãø“ [62¾„ýe D/¡•MVð—Zþ³î)Eƒ?:.µ (J 9fð‘Á‡¼qÐq2I>΢]ˆEÁ(m- ¤ƒ'ðjä‹Q–PŽ|Øç7!š’°$$$þ L‡iy&(¿ÃJ™°oxc¾H†̉'Tű†ŠFîåS‡s@¸ÜÓ:ü@õpßð¶ üÅ”ˆÆùœïš²’$"Ñtœb“ý÷à‚6qÓŽÌ5ûÚlÅ‚ò' |XX3'€Aýøh5xæ@h“в¬qkI1TÑÙüïÜ6ômoVTÑ·šï £ºo¸¶³‹ïI?áË- ++Ip‘M »À WtéT‰éÚH>…RÞ(†y’/ø‘ý°Ü!FÖÛÁšzžÇ8H|ùP¼ŠES®K:3O\Pµ·· <¸¾¿¨ï_yËöÍ'C9æ„~ã÷8¨4áËÜöý{TÚ,cŒZípìâ•=V |ŒFÈ·~PN?k€†ÕL˜dñ,;céwª ”†©_¡•sÖê +÷òˆ–7w4ÝäFO曄#4ZQ<6!/³}ùȪn9O^êæ+)&¬n§œi6B {ÈzÈRÂç”è +r¹,cCGßeÇ#Aùƒf#Ò(‘ø„ÒLÓA !°žùvz2Îê{r;ß5°ÿ&¸¿€üí‹ÿŽ&qÑI† `R¿¹A1ÅZ¢-{yˆ†.¶Æ†¾ûhûÙnnø\¢Z`œ+µifêÎw”òÕµµ*­òÂ^³\¼XÖP3NÉc<‰EÕº#{Ã)~€–Ûô·y@ Ý95ØÅÛ1]µZ!”¥Ë2rW%Ý 'ãk®8h)æ÷”ér3¹ÄŒÞÇ£ç>î9—­­l%Ö’R•²­¼î‚òÏàAvÀJðƒP™T ëÙÊãUgÛUÀEÂ$´E…#?D£àï üîçÕ§ïðy0YþñŽ‡S¸èͧ.•á¼•lG¥Ãy‹ªßª”Ïf=Pœùm6sq6cÒLÉÌ2¯Ë¶Ê-Toî®Ö šêç‹‚Ïs˜ì¼ÒØÓ.Øó©÷w¯‹knÌâµÈ[nèXô€ûòqýµ!áÎÍƱç*pÐÌØS{_e;bÐ)Öl-,/æsÊ ù{¸Ä¬O?˜×O>¹Ü×ÕjÜ]ÃÛJm‡pª£d6}ï“øHe`ö”ÌX"3ýíø66.33)¹[38t±çšà¬Ø}1ŽÃîãI¦ ßAOP'!5¾ ~Á†À×쪋Õ0 ¸(Øc5ÅŒA7}ÜZÿûc|cõÉÓ]\ocf¼€Øé]gk¨ªã[kššÛ¸Þ¦Ý±jÀë}4xÇ~5{Ovi‘žÏ-Ê7™ô + å4&µEsKw& +„#ã,½+Gþ”}»}ó:•òŽàg˜c~[™ Öôª+>Šù +:ézÛ‰ªZ¾¹¦át7×ײg³‹]íbábž zyJrn¯–Ü“£ ÿ">5c˜z`pÄBÄÊ`@²²è=_|¿…µWï|ï‘ys~DBbØÏNÅD¾—“gz4Ú2z÷ Zk„ ¸x‹A4ÿ¯oÆQ‹çEvJßÔ—?Èý“¾Ü¯!Ä說:^ŸœÁ[°x%#1m³Ç­SáMu[c­±Wã¶éh»È OŒX³'eKfιÎRÁR[QwL¥±/`…ÙtÞÔ:ÁÈØÞj1Gèã¶:{-ß[{ñÔ-®ù„¥¼^`ja%ÍØ*‹J­…\j´þƒ\—¼gÊ^ÈQ eßeOY©Rn,†iÐ SÉËðÁE—µŸfM—î~ü€ƒ€G_¼*þq}~§bSsa]ƒª¥©¦£·¿ÐÜÊ·R~rï–úX±ËÖü[šò]A¾3dr¨šÖ\)UYÓ”ç=N¾ßoáÆïj¿Ë~°}—ºñÝE¸àÆ'¢ê~¿%Nüv`w˜µ2W®péöÊÒ;7Oœ´@^xÃwYöÎÆÚÎ +é„ÚÅÇä¿+~ü.¡ú]ïqÃwÕ߬ $-t¼B@ÏWüØÌ\Àt*¼ã÷6öÆ®¦ö¹Š–ª’LéIJµ§ä¿Ïüíÿ­tÚå;Óãm{–Í•ëg®˜ìÅú]Ÿ­skçá‹R|[º¿[ÿV›:ùÇjá‚É@¿;ÿi`ýîÉöÝýGëï@¶¨ß©¬Â“Z3Z“9:ØZ7µllÜö=U‚¯¸û»ò÷äïJŒ‹x3/ûá ,Ò²{ÙV­X¾fÅZ`NQ‘øöÇè·Ò÷ÐöÜœ’¢ÜŒßB¿u%øê§ÿh˜þ]múô鋧³ýN›~f:;P¨búw=°PèÆtN¹Iñ<œÝ<Üß%¸¾{pç™>‹‡çû‘“D 1Tâ± +endstream +endobj +1559 0 obj +<< +/Filter /FlateDecode +/Length 527 +/Subtype /Type1C +>> +stream +H‰|ŽAhA†wÒMbí±éz0¡Ћš¤1”Ä€ TAÔ‰¤E顲ÍNÚÅt7Înks=ƒ=(²/E±‚‚ï¡•RAK¥ˆÑC=æà¡žÞƉàîzñä~Þÿý¼ÿ âx‡:Ï\;–«RE’óT‹Òʲ“D¬²úx+,ˆ,ÍÂ|ë×u/¬íƒwû×­å^΃Ðç淋Š½85màã™L2êè «é(N& Wñ°¬M\¨ê™Ññ9µ¨ÑŠF%ƒÈq<\.c·BÇ”è„Î9ðïw°¢c¢Ó„bɧ{ŸT’ÉŒD¯aÍIþ±¥ÿœÂŠŠí.<¦*Ž+6Ô±¤Êv‹æ^)j³ªA¢ÇÎF«‚O`™”8û!®;Êñ]¼Ôܶjõ¦õ£‰l=ÜìªóV­ïÔ|°ÀÖE–…û^hùf«"8¦sÏßñM¸3d™í}ÖŠèLÌq˜X+·A€³€à½° q†d°Õx)ê³;!Èìî€ÿë…7C‹‘»þàî—g¯^oü–ýÈ"é!ÊýÏ™Çûhyíñjhã…*žŸ¿r'’gè­/Øz¿¡ŽŒÉÉ\îéb%€ÆÒ\;umB¬k³§ ÖNù·Lë¦ GLÓ|búXÉÜ2ý6š7!î¢=6údv÷/M^ºëBð{!ÚóóÁCAø#À'lõF +endstream +endobj +1560 0 obj +[1555 0 R] +endobj +1561 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1562 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +1563 0 obj +[1555 0 R] +endobj +1564 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1565 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1567 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1568 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/J/e/n/one/six/space/two/u/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 2123 0 R +/FontName /ZZLZJA+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1569 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M)H`Ùn!‡~д`t’ +cyûŽºl¡‚ÎoœùëŒòsûÔZ€¿ûYu`0V{\æÕ+„GcYY6*\½´ªI:ÆIÜmKÀ©µÃÌ„þAÁ%ø v'=÷¸güÍkôÆŽ°û:w{àÝêÜNhÐ4 q ƒ^¤{•O²C«)nÂv Í_Æçæªä—¹5k\œT襑‰‚Fâ™FÃÐêñǬêõ-=UÌ- +2L3—™ËÈUæ*r¹&¾;%&ÃD}Ÿ˜ ñ%ó…ø!µ\oUÑãÁ­eµzOݦNmÆÅÛ'¸Ù©âd¿ “?à +endstream +endobj +1570 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7929) +/S /GoTo +>> +endobj +1571 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7927) +/S /GoTo +>> +endobj +1572 0 obj +<< +/Filter /FlateDecode +/Length 13543 +/Length1 21005 +>> +stream +H‰œVkTT×þö}Ì"0€‚ä# ÌŒÃS¢ŒwÁòTdx9(*ÄW|Å“’šÔZk”$ƦÕêÕÚh­Ú‡1F%©IÓæµVj³–1I³Z«@÷ŒšÕÚ•?½›Ã9gŸ{ö=ß>ßw΀ŒÆ#Q2·Ü–’”Ìžk\*ë[]íüàs€R9­~U—²±qÝ>@׾µMíKZÃË.@ÿ1÷ß[ÒÒÓtþËOüßS@V€»ÑÕP÷é¬ €zžãMv³Ã÷9}$÷‡¹?ÁÝÚÕ½£æùÀÃ1÷´´Õ»PÚ– å~««»]¸MÁ@I ¿¯,wµ6fàþzþ^Q{[g×È>™×Rúºg¼½£±]:qü÷?ã~HŠ ' û€vÓ +`èôÝZzMG÷¿m>w>ߺìPâ–ÉW†N3ž`!O‘2Ñ;"€¼u(g[4Ž‹÷œ\ ÞwþûáAQ’uz_¿Qþ£ƒ Á!¡cƆ…GŒ‹ŒýbŒ1Mˆ‹Ÿ˜h¶X'Ù’’SRÓÒ'gdfeOÉ™:-מ¦¦çåÌ(,š9köœâ¹%¥eåó*çW9«,\”:ù‹z¿ÈЉ%ΪêÚºêÿÕ°tYkËò›YS²sÔ¯ +ò'Ùü;Õ4%NŸ¿ÂýMîøÎÆ—À-»wuÍE¨ËZØ ¸=sÔa]¼±Ül‰H w åX¬”1M¾å@DŒÇ‹ŽÃ„â¹s`íà3ÂÇøǸA14žµaZ±Ž,ÏØš˜÷7ñ5¾Â2¬¡õ´ŽíÚ@[im¤-$HÄ0- JZHóiUQ 9i1US)Íf6Îa6SÍ¥yTBäG£É‡È—™©MÌô%TÇŒ­gÆ7‘¢ÈDÑA¡FÁÔFK©–Ñ +j¡j¥NZNS)“¦QåR6Ùi +M§²2÷ÍG3H¥BrPåÑLʧYT@id£ J¡tJ¢É”Œ<Ì,ôXV¢‘ëUX%\7c)ºï¹™ŸZ û—c=n`-vS/mÄgÔC]´6á¯ô0­¤Çh3®ÓZEsv¶ÐZZíµ-øçì¾uÿ‡mÅç^ç}.¬«"ˆ™Z†–¡ÓC#ïòix@7ˇäAù + R?¯àÞ¿K¼×'™%‡™=Ï2£ö0×ú˜{Û™‡Û˜“›™Ÿ°kójÆÚɼmãÝ]Ê蚘ÇuÌéæw5s½’y_Æ(f=Ìdm°NTVÍTVP+*•ÕecÅų>Ðê–Ê7är°tGÊ“TÉGÒI‚ñ†8(¾!ö‹»Å­â:q¥Ø)¦Š61A>„ýÂ^aƒ°P¨ŠU˜"d 6Á$è‰Þ¤ÚO{ùÖÙE;©ÙÕIµ^œï3ƒ=H_aΟfþŸd-g]xpb½¼Àè÷3þ=¬­]¬³'Yufánîã÷ ö`.ó¢-dœ|6ícÇ„†‚FûòóõÑëdI–c¬ ‡Ò[×kR›*­–c‰|Wtk0W…e9½UŽ·Òü9‚pY-fþÓ„D«åî?ªÓ`R’«*ŠÛÕ ‰±\+šä0¹”†£v{oE•‘Ÿ£0F9Kª< )V)pkúØ|—†Ò*c¤&;2‘®gy•Éfºi3]ço›¿;º«á;ß”cÕÜëÿ39÷–×e˲Z6ßÌųÈÞ|Mt¸škójU«%_ÑD“zŒÙ±Êarôšx@“Lj¸6ʃ•£…ç7kv—â]·6=’Ûž¦V©:šlR9™ÔfM0©šb¸Õ¢ä»ó¬–S|%È#/©¼ˆcžZQŽ +b¯jÒÈ¥pÂìUš½ÖéùžÕÂCƒƒ—› «e’ÕòšÕ’«…&Z!x~oÈl¬`=bì‘¥‚:©”¯ ½ y茞 |Es2ÌIFƒÑÏ…øº2ÞQe܆Q:{[å ¬.Üò ßXaö ò ðƒüTG O6çNJ"}œ¥§£Œ0 Üq;/54^Ü×Ñ—3Üi^Ï'×âWOð ™°&½gøÓáKG†sd•#Û8²Á>zâÈ£EŽr/rH< i~Ÿ-Ž t:wMÍéëˆk;Ô•™µüÈp¡™j„²#”JQ=é ®Þù7ÛUÜÄ}…÷ýöÒJB–W—%Ë’uX²l´’e6ƶ|à C 5‰í8n sÆ@1G ÃaˆcbŽPCP.´™ %)t&L†´MRR’”I2isLfÒ¡Ó4m&´ +xÝ·’a:Õºfvï{ß÷Þ÷í3#ò×wnã½]òëpz€»ÅÔpÔvàñ¶ÚZI +çYt$üb"gì¹kjZìç3+ä´Ÿ^ä3ƒáJ*óÀœÞfl#Öç`°_À¬c ÞˆŸj¸ü —…TO|©Nl5\Ñ ª•+'¿…M8Ë*+™É‰JÛÙ#(ÐfL]jqûbÑxqG“Cuu¡pcƒº!$5Ô‡B Ê=.Mj?v‡¦ŒI-¡tË(åd6u9¶F@ã`üܹǾóŸrîu%W–M~H_awa¾È¡D_Rt3yne‡R•Øì”!ƒh­5j€i8ÊØÐM)ž %…ioÂ’i´˜`’ˆÇ­>–ˆ'â±Ì¨‡ÔæwölgóÊeK«KKkºW®ovÚÌò]f]kÇrõýê‹•áÊIêUÎ1Vó"úóªJ]XÅ5ìHš•Œ  »„Lì-¨‚èÿÄeÉhìM0@òSŽŽ¢Å<‹Îbô,„”êðN Ç¢JY\x* ¼)-Ã"!â'8“Ñ2U´ :^Ù›7gEeÏæœì2µN³ýÓ5/, —t/•l€ìŸ`˜•£ÝÝÝ%ov… ïúÝ«š ëŸê¬ÞÖ:<{Õ¾ßÙ¿ZîWq\…ÃQh€Vž(œÈë%DQDÕ&Ëo¿Çd¤YD¸i-Qy1ÏÔøFN„¬Ùð4ãÁgqH“M±ã Ž§„ )`2òL¦‘c:ª¼5©~;rˆŽkò)VcŒÄpføI̪çN» èô¥éÆ+jJK øô‡Ç-¡Žâ‰Ô{Üà×Aª÷Š¸|´ezüñ?".>×Õ¸lÞ‘Ó{?Ù±îêêS[7ö¯½~~lÍÒÓìlÜvsíÕ²5s×ïéewUïîªh-®:¾ûíã}Ûß,j:´¼ÿâã>j*ïkž»x½ãMë’[{çoVô@¤ãˆÔŠO·3“^W­áñoÓ pJàáÙÁ Ý’ÃÞ àH~ÚùÐ9ý± +:ÁOc©À1Ѿ(C…'é·u;?>ÛÁ ;–nºÐÞk÷Û'äËáù›“ÛÞy0àÑ;~ùÙ®YŽÕ×Ö?ý§ò÷oÉ£ò¿Io˳ûŠþÍ¡ï)UîE'ï§Ï¡“[”¥E5¥J;:aL¨ +tu5 ÖÿãêôCß„êê%tø"©^ùlD§6*NO®7JRc}XjTNsÉoÀ5äEkÉZY–°^–W–,K¶±eI6²¬õlŒcS<6œJ!4N H 0c)P „$$¡.Ò$-É Ð´„™©;e2¡S2&™&?:Išb{éwweð‹¦;ú³wõã~ç|ß9ç‹æQñÃ7‡váeD#Â÷îÒG˜í°›–h$M£43º#×ó\J†W•†ëDÞˆy ÜP´ÇœYÇëQÌÏmŸZ¨a2ÐNcŒf#೸Çx–ªQjPù“•¸BÖÓ/îYò„”=ÿÞM¦9­ÉÕH>³Û' [Ì/å THsVèZ––î,t^Òes´$øx¼Ä•¢t#8©úáƒÄ£orbR=ÓVÖ,ÿØoäë·~¶åéu¨°ËP«Ojoîxa÷g–žÚ¿úu§—‡Ê—_BÖ7û‘eé’å!÷¹m}¾˜C|´ÿ‹-ûîö/™&™‰7/({B +k,ŽÄ @› yP^™¨DQÑ…m„-*ÊåºÓ‹4ŒHÊÀe! š°˜&ü`–Èâƒü¬p‰*Æ…“Ì4½xµfQy_ùqd¼¸ê©?>×~­'².;·I‰ÐåÊSí'ç¬Ù;£ã×ß85šˆ>-Ç¿ÞóªüéÍŸ[u¹Bw&}y0žfñ”¼u§çÝ>_¤0r—îƒ*çkJs³§fP¶¬ø4\ÅD>tˆe°­‚8¯å£XVq:Û€æÎÁÑXÒ« u¸†3K\<è÷ +ŒFs´¸Ç‰x5«â+©ÝKJÇ!$,0—@œÏëÎÖ’z£‘ +)³j} +ä8‹Œ+9&=8Ž¨çÌÂûñí½ÇHäm’³6åïŠã{v(_‹;ÑíÎbåkoÁ•9¢w =1º\]è +ÃÈ¥“·ÇÈ»¼¦Ñ“].åŒØ&‘ÃÛ9Ø%›: v>†Á¡Åê¤3HTàxø Ü/{b‹3þæn©A÷>—×ápQ“'¹yDö‡#°éämüT^‡,=Ü*gd6áRy”èZˆ¢ÊÜ…' ŽÎM›Wöóf!Mg©˜_i1ŽÇ´#ÒuåÑÚvúpª¯:ö8}&y±¨¤˜‹p³ +Ðü +1^UÛ+ŸÏã}¼ +Z´ Å-%>P)yKUDþüÌF‰#5%%ÿÚŠ.ž«h³»æF[æ4ßÆ'[üõ&wvIÞp’Û~ ;êq nŠ*‚CS³åôáÍ4 É žþ¤~žÚó4¥R0YƒµN‹h.CÀzΜ˼›ç9 ^ä¶@é6 (8Rz@O⪠jéQf1I!ñ§Ù¦V¦ œü¯mÏî]ò£àÔ)4¶›Ò|úõËû^³ªÞºm‹©«c[ +nï¾wG»n?GÓ$UIve +øD•¼Z¾†¯ä|9_ÆgrR êààê´¸ñ¨’ȃ“QY—£³Žâ Ï­ °ÍIY-‚ÚD$&¿vÆðØÈÝgþÀ²G…Þ_¬ŸYkhWTî3Õ™üÃÑ‚¾®µ|^8Rži­Ó $s´J˲²—JØ­RG–»­²Åëã2eœ#h­Î Ô‰Ò5CÿñŸ Ðo-Þà´ªX‰ÆÊ烣bâànz­Ò,•jpôÄ{7ÙÍ€ž¤©•"Á´X‡8³Ÿ#iåõ¼ŽOá‹ò2ô´1Ÿó»°óÓ™*OÁgóQ:‹«Æ"30. +£ÐØw +³\Ó7)„w”â[6ŠÆ¨—`•·¦N1·«¹01ø½¡ò €}7¶Ì:ê¨W¥ZW×àÁgrÓýCPR“æMÖ>j€}N”ìi±^“’S·ÖnÞ¥aºÍ4ø¥'¹¶2Ùž¤3Ò¤HšR° dKø€½}]~û÷Ð’/o¡|"ïûóÖË›Õ{nõn¼øœ´ážÿÔôù ´ð'äÿþ©¼ï/Ìó ¼°]ük×â7¾é½†Š^ONçI`(¢™%UhP¸€³"K'\‚ƒ(€fø,¦Gä=àb¨bÄíðk˜à}™gqéý üYÖ'VöÜä¾2!ܘÍÕm­§Üsão=Õ¸¯kÖìîßvÄ+ÒuMÝs~ul5#Œ×¤gNF 44v×?» ý•§+ùzsãΖ#û úòË +úPà„TŒiú&#‰es40à0s˜¾Ã®Ÿ¢q4ÄÜã˜î"°"%«S’œÊKÆa/µéñúr ""Uî"ËÒ + Y?½&îýx«©cç¬ÒØéµË7VÄ2íÿ¥»Úc›ºÏèý~÷á{ÍÅoÇvbÇoßøÇŽ›¼üH$€²Â+”7… +šP %”†g¡¤4ÚаRi© +´¥¶RÖÁ6ÔM-®êƒjê4Ut£]Ù¤Mûc*ÁÙwã$4³ä?®®lýÎïœïœó1¯Uˆ_äÞ=·á +ØÒyøOGv¿ß]Ý=ž‘y<ž»ùe7ÇpŽJ…Ç bp³Ñ±Ì®Íf÷ixæÌÿë‹ ¾Ò± ÏóðgO,}í›çîñ̶!ÏÓ©é™j ˜M¤!íDŠ‰•ó~fk«,“!$bä 'cäªÄ2NòLÍĶs_ŽóƒHòëOœ«P`¿0þ)~“åÉñõG$ø¤ÖÆcá––À‰–¯õ·“ð±»ÍqØíö°C6æzŒÕEbWjÓ mý 﫶üPbݧÉÙ½'®;ï•)Æ&ÑRUßÛ³v olxgï$:rƒáP ª6·kæÝBðÕå"ÁýÏ]i¥¡"‰BE °öâ"z@ Äâå»p#rIF$÷õQQ vÜe}B™ò ¡\nè‚Œ¶]º?+²ŽŠ’Ά¦Ã‹<ÍÝk¾»ýVî«ý²Nà²ZÅõÇWœZwþìàm/þswÇ©e6¦â±P™ÃbnèYžhMDsÿ+¯Ü~¬Ì^ûÓ5OgÖÌ>²ò@—A×zhÃóŸ®øŽ!:/Nöed¼ŒŠeüF°E%n%Ä'µ¢Q$˜¹AxÆAYˆæ:Yå^¤ÓéâÔàÆc—#'BˆaG—q:e‡L?Ññ¹Ë!7Íg8>zæLüÑ7ÎDÕižv•æ~Ëët «ÇZ+ºéªíólÒPëà"?Ͼ7ä+ž·}xð^ðÐÖÑô° gêA•ÊDÌR½¿èÃÂ0UTŠ +Ñ©&Vƒ74«•KN¯B¡ÖLêáý¸ÿL#ÀèSÅÿÉÙŸÂà»)gjìÃrìz«tºçû.}£Ïg†Çÿ8f†wŠ.{ðË—ö_ík‚wÉ<†±X°wßÍôžj¸x›ôks"»ï¾}ê/Gg„;. RÍÈ?Ø“£©,ã¯èí¢YȤ_òñ¿@m‡|1šHÄpD ‰ŠøäãöŸ“ °ú¡K߸¾q£ÏûhcÊðäN”¤mk¥–Ü.GÕ¬¶ž²²m[²,wç_ô!Û4f⸩yÃC¾¾üðeúL€`¼êüÉfSuØlƒ%6 õ)!ŽëR1D-†<+„Cþ—Óf)0*çU¨CÃ1¤ÓDÁ)Ü8Cô¨0Lú˜>¡KÆpª ñÉ,‚Šàψ¹5BåN”›×rNþߪ¨Tµ`w(´·u×Ç_a†“klYÎeÕ@Š±$1wÆŸw}c6¥Éý^ÔkùµŸ)ýäüpמ¹Îæ¸Fš€Î¬žádW/(–=Ò\:|€¾é³°ãï¹ÄŸ—¤¦»k7eûð6tè²Õ즤L1XLÄ((T?OtF(ÄAëU;pÐ"ùvDþ@Ÿ"I\W•yÝý¯©Òa‚ ÑOMp<Ÿ­Ì¸^žÿ‡Wý¶•.[Ýj­¹m:’ÌÇw¿…æàË[³Å«rßæ¾_”^’ûϤéêw¬.,ØZMs5QOI=ž}(w€4³QU•‰Q *¦(ÈT‘£…:•¨U¸Š‰ý¶®ÐÁb°M%:7G\@ü2 ´Â¤6LK£k”ɨp»òƒ†X ø,Ã’R$ñQ(t=éú}"ßœ™Ãð<ÓRÓÌ‹ûêÓ=:…‚€±Æw¬71Œ˜PzA‹>Ž +# +Áa79®‡VT’£1?úyí¸Ÿ£¡'åJ‚‡Wƒ„<ÄÐÿŒ“»dRÁ¡½WÄ Ðr£BÍ«2×®ìÜW_iàl…‰öÎí{új\i‹+îr¹ÝqÏ”œyf{ïÆS9·5>³´1\Tç&~ïÎm!_“Ví¯›ÑòÖ ¹§§9¬43\o¾­ÝÓÕþT6÷¨,aCge|¶?)¤ÈÈW#· 2æ¢Ê©ÆLm¡Š”I27‡Øu`1)jÄU ±« +ðEˆTЯ ëGq ôU4•#ñq» öXRŽ(9ÃT F3q»$¤ Ò û‚P‘Hê±^ç|KĘö’Þ†ÎWÃ×Bó«~ÀIÂì[®vêÎ6¥6ÍôšýD{énUG ºñbWýó;\GíªY³¦|ŧôW‡‡Oçf:šc+/ï¿Ò°TN€Š‘t32,Q¥Ÿ§¼NÂEÝJàõ ‰š ¢óˆî¹)Vêž åD–‰"r˼˜2Ž0†pBž«X¹‰ãèh¥ZÙ´Ô[¹nqyÍƧšË;ƒÆ êôºí_ìZ×4gUÇÂUj²cGAÀZܼwÅæ7¶Ä]{ÖPþèçýû¯ôG“{e6"CùÉ¡fg2.( ”Vxñ”P«D:²ŽjÐl ÁÈ«\AfŽøÁ“LlÄNÝK®|»pÓ}ć·]‘`ºa&ßÓ V zÞýõMz¥˜X6­JBíÅ<Ê›íÝè˜ûÎœ9µ3—œöÒѦgªÝuèé]Ð5Ê€öŽ¾ÍVHo//iAñÉ“×Ë%Wμ¡1Éž¿°ò½-3ª¥ùiD.ó3€ü(©RjF¦6k™! ¦ | Ô³:à¬`Ž¸+š ‚lV }D¥6 '½´‡¯lløpqFÙ?â>ìØ!«Ó0Ö)‘E’gäÒÁu[|Û†èŠÔ™?²§?Ì}Vºì™Ëæý¤´È/$’)çüÏqÕX«o¡÷Èeö˜™š¥ZF@ÖPÀ¸K²Yx +yZ•š0ybäMƒx(Ì'Hd¹ÖsPªS@ˆ÷S$/£—GµVèñ§¼K dÆ‘ËÖúN)fmvRÈŠŒ—=ë“$ß³eãQ­0?oð®Ù³5TÌ^9“USúÊì%õ®¥«éc)…=×>BšÕAi°yç û¨ßOÑTÓÒf/¥Z¨j»4îÁà„îVÂ×6— +”ºÂ +8Ÿ–47 ÀݳZãy*JÅ2.¾GK*sø(,˜;tlÊ=]‰ ^ù^N¡žsB¢!Üb?b—Ì`¯èVâ¿|.QF¦ó£Ù´.s¾xåo9W¦±ÇJ)àÒ0¦3ÍP%³Ø̈W-Rpj*“oon†¶/uŸ¸u`îú‹Õ?=ê8S¼gpA:/µ [œ+îÛ2]·½ytï™ sçŒ9úkÏÓ\YãÆ7Ž3c«³—œ™ì?s°kÃüÈž²É§ƒE³ ‰ÌMþlª8äð¶äÝÞ#O½5½iÃÜ}uÿ±¾É!5]=QûêÛ²2i1]¿‹œ¯Ç>Ñ€Ç'û 0Uá‚|Ö*s¼$ ¡ xÞ + }Ž C1TsD Èu;GbË4GË\f¹¢¼6X…Ýr³XA?OI,sÊÕVý‚&:àê0{EK¼ vº­no'Âh,¼ÍÛˆ0 +!Œn1žÏ—º­7'’/­Dií›­«)Nö<†+亹ág+)姊%§¹ÀKqÀähVG‡àV‘"dµ”N0•ðVÅÕÀÇ<Ž;#‹i¥'¦¼^—õj%ì³ 5Ýý[| 1ÑÛPO²d{òpc›Õ\£.̓½ >±¾Á+ÆP•\Zºƒì딕òP~Éi3:´^HP[•J 7ä› ^ô8¯˜ +dróÁeGw‹æ´˜fî#*C¦œ‘ƒxMyäÈÍ!æÇLÖõŽº®.öâ­A{ÄÑJrß9÷ÛÆ–Á.ìóß9N.lÖèZþZ{°UF]c+"(DE%¿®-G§ËŠ½ÄÅ›ryu¶MG .#É7™†–ªh+€ƒcb†t©X³Ìå&ÕZ~;…•DïéΛ&ïÙÒýë¥/ðÑGJž)Z~ôeÜžm<ÙY?y³täµ%TGØäßG¤‘q“²S’5cq:°¥ÇÆçu¤á°ræ'Nø(–çY6§UÿÝùà÷%*Ü$5&õgóD§!ÀßgrðEÇ6 4ÔDE·Úb-T”1ÜßÛ$1­á­VQÇFQ€u·š¸èop„‡„€4¥§pîâU4•]Ȥ%’GX©¯ð>‰«‘¯#òïµÝý?©7ÎWÏ}Þ·X7ÛÙD:O׋¢é¼esŠÍø0bcæaŠ75ÈŸj£ƒ©"©Ñ3d ·à¢ éÀ_:Tñé·+OïߘY¶u…ç3‰µi>»[÷ÇŸ Õ÷Ž¡?V;Ðó¡Îç²ð+ËC9µ @p±4º‚„¯RǪ òuß̨|•ïÿHƒÅô5zˆ±sâQuËÖÕÉjñd9$‡ÖÜ9£ø`OÅTßø3cÇíõTå–ò -ÃÙÚ#»>{á•ÊV §W£‰Ž‡§= +x7G5Â…ªãc}ÇŸ:»ß7j’§.s…Ͼ[1ýé¾ñ¥ÂSΊ䱼Õ÷ÊcÉI©zÇ/fN_ ·åüï1§´L9Reø‘€˜ÄŽK]«2éÀð… ¶#>WOÜP„Õ&±NŽÝ!ž¬*Ó€0¼ÈÀÄÔ©”%a[*-ÜZ¤µAŠì©À¥=·Åî?]Û9zAy÷­bHÐT¦„¬a¸éeÄçðÇíG7Åæ÷”=ß™<ÿ9jÓ.]:ñ›ÚwKÌ<~õ~Öh~zU¤©²*¹LÌñÅÙÝ¿ÚWÕN¥•6‰›–PÕRXSQq4m±ê +yˆ“7`ÌxyPœ¹1 á´q(BöÃÊ,*·ÜäÖÚñvÚ‚ ÌLáh0æ0øñÝ‚¦kgûhÃC‰~È¡›‡ýE–¯Æ'ß_©9µ®ÇÆàÄ BT“T]˜§Óë`1$9ZÌx² °’_n¡NC«|^®•þ¨6@‘F–#¥é®€X-—“¥B'±„•‹ÉÕNåVЈ¿´¤j,B7¨ÿpÛÔ±ò½yä£ìÎGûŽsLÍ;›¯ïØûËóÿ°÷ä|6ž¡¡}eZµÎ˜¯)Ø1ôýÝ ¡î±sM]&Ç‹/<·ÐWZuX¾EðÁßÉñ)’|”˜Ð>^k©¹ßjßdi[žêó–oLE}‹‡]ea÷ºô=OƒõWÝûW/n¬ž?ØÖ^]i:;¯† Ëk&Î}gîJ÷Ò'œ¾²>ýÞ—¾öæáRje: œl{òÒQjwL|X¾¼“ćà p²Ò—§šƒ¹À¯”)vœÀ•¾ò2·ËQ,’Úm( ,8EÇÜ:3›*@ÙXY%rž¾(¾Æ) +q¼Ä.€[¢ÐÊjÝó#¥1«³ðËeó*þp̳ÊtÞç-e¡Ï­‹]Aå³µîãéQWØ&˜Ò›‚F­æ$!7ÆZ~|]{X?ÛXX.J±Àºº¿²¾DÖ@qñôÄ~f?ð£¿Ñà8’þ´ùHÌõõ˜úʶ¶5ž¾¹£Uv4ªrè;£ûÖWl[!î¿f÷œª{'¡o#/° ½¶òÃÂZùÞ·VfŸÎ’Bö¤jbêAÁL¦êÙÀç/‚;šGlC—gY‡Ù¿ºÅÙc +Ù·Ü0—:œã3­˜¹fTšXÉ™²bã„øÎ'_ïò ç-ô–t‹—÷ï*…[¨_ilT‘,™gÌQ™š?Ï’£q!e3œ3°‚L•,Ô<“uÇüÓÛÑåþn^ù‹)g¯°š¯µ¤›;{û®©¬Ð™þ8dÿã=®=µfî»X3—ªfµÐfÉU³Ì×,°fÉ“5Áã9A'b€*êêí.OÝóAIcÅä.·wQµSDËÙË96ŸlÕX^ „·ïüfŒ7&3bïI$ÄI¤¢¤5(2’™´ŽxÜ ™³0óF½“„¡{ù ŽªœŸ*ëó–|N¢‰²ŸÇ§&.™‚æ|¨2,ef®MŒ™«ŸJŸ6µÞ{[žÑ%p$èŒð¶HD& Q¾Hmr‚Ö°1Ú/ŒÑ]”’nP?Æ{ÑöA¾†öŒo†¸N@œ@ +èâö€Æ¿ÊçbÎnèÒÃ# +a-t‡¢ÈL¢è5Ò.èN`”j„ ÀØämÃýq˜¼òòÉÍh_ÇHÃè +IŸ’ö†ÈŠxY äòü>…uÏ@®Õ|àÜǨIóuÛämø…ýâuŠ¢¿>¤¤QR…Ud·&Ï¡äºÑ +èGöRÒ²JC˜  ¸…ãðãù¥C¤Êg1ÆKÌsHzܤB²‹¯¯ùt€£]„Ôp€~ø} r9g®¢qÎM8C¯ǵ¨è·³ÎôYÈ(æ®åàs5Ü`*·eÒùIÆëÔ®ù†ùò J -äþð¸HŸP-Ï?ÚûG&_ +÷’ÇÁ‡A†ÐîËä®?ÓÇñšV}X«´Orþ™Úx ý ô7‰ÌÅ|™×ꄃçŸç~.NÞçõ Õ hµ0¨×T-d~ÉcXõ0ïëÈÝ.äX¯ÓY­ÔÈë×ÂL v?¡eò!0®ÕÀT-dƒÇjj…×ÃLðz¸‚¹ÂªÉ;ˆÓ[¢B²ô{äñ¶—¼ß¡å˜ÇµÉùrÛr;êêš^ëš¿ íÛÓ$÷S‹׬ÕÕl~sÄ<›ë´lÌÁu®øëqšŽ×güÛÉÎǬødxeC‹[2ßöS˜Ó?Ä+_xÝ/¿ÿUœ‰&BDã »!OCn>‚~òä¢ôˆÞŸnBû'Àrü?îAn¼‰wãç ŸÓõÇ70~ úd3ÚB’>_“éòñý NeäE]Ž¿›…‹º|œ >þ]Äfêiþ7pš¦~|:–ßÞþŽ]é[¤ý:Å_cw=ƒ¿c?~–íDF €uMðÙ¼'¥. täÜ$Rïå~È2H”‡yVŒŸwŒ(ÿ*‘­ÀÃþ¨ý…ÈEQš¨1w¼BTœo•n'r…‰Ü¥Àï°þIGÙIÞö¹Qøê\_+~Käçʽ8€SõÏð{…ÝùVïƒkˆüœ¨ü">µ]DuˆI[nè7DaìÔð­Ç¶SnÑÅNÅ{ÿ‹Ày$þ¢E뀛:–gx†gx†ÿ+ð{ÜÛ´—Œ™ë“Š›W!ú*éM~oCŸJ#Oݹt]¤¼i]‚ž—ÑehîŒÎmÖ`$“ÌZ{Jg1¥ d¡2ºˆþ¯ft ú@F—¡?£s›?ZÑÖ±´£9ØÖ³µg÷æ—^þçMZAmÔAKf +Bï¡­ÀnÚL/ÑËÔNiíÑúvþ‹±ÿÉ[QÞäq +Ϻ÷âI–æ/Ëi(®Ë-”F¬¹ G¤#âëñoK##í¹!:zQ\rÈ þC€<ˆß +endstream +endobj +1573 0 obj +<< +/Filter /FlateDecode +/Length 3263 +/Subtype /Type1C +>> +stream +H‰|TkPYî&I'€Æ‘Øiìn†‡(Œ¢" +3¦ +T +Ž ‚ˆ2>@„!hù\T`x+**3"âªX;º«Ž–µ–åcwgÝÙñ4sÙ­½a÷ÇþÚº]§î¹ï»ß9}Iˆí’$ç†Ejbâ}5» Ú´ƒþ³Ð]ÚÔ,Û/0¤  n3hŒ»IÜ-•Àè,ø8ûžÛÌsN„I>{»ZŸ‹¯¦ïÌç—-õ³Ù€i»Â_êïï?mø4}ŠŽÝmÌ×eùðœT½!WoÐæëÒñ!»vñÓFÞ 3ê &ÛâÄgy]FþN×âÍô |ß Kãó Ú4]¶ÖÅëm;ÿãîø?T|F±øM96/6/ymNÚbŒ¢ŸfIÕää2tÆE‹Ãbãvçêø•|šnAx3 bA̶'¼b!A|Fþ$±Œ$BIb-I¨ "‚ 4b"VLl%o`BCÄâñŠ“òù/»» »_DûD¿ŠãŹb‹ø¹d¹ä,EPÅÔߤ;¥C²XÙAÙiûyözû« ö8üàèåø•cŸãO¥U7„¿Ü ±õ¼!ª •“1S•B£4RÁ1 ¼£†h°9SG¥STÒôTû”0HÛfÈæÉÑ=9*DöpŸ¬€“" xzäMßß/‰Ö•º|å“ë™î-Ã'J`Ù)"ð+¡ïô^»Ãݵh{×3ë““5ѽÛïpò`/p#ÛA ¾ Á•É4Š +EËѤzˆ‚ V?oˆ…àX…6pÈMümKš‡x}tâÖì1p¯æÀ½íö·¬¼Ñ4É’P¡"(q†ÐIùPHÔŠ”0ç–ÄJÉ«ÀG€' /1—Ðà >¨Ð*ýí€äÉøã—?ãSK_ ßEA»ÒØ~DKš.ô·Üdî·gnã,jµ¹ é’/\)ÅïþæàÀÝ & ÃzÅ»‹Ý´áòcÓkVù_jFU§8«TñÓßô =T¾[ñ=ò\²2?/…íÂð5Í£çn2·Ú 2“6îMâ"Ñœ”âÝØ°áËDm~¤&¢©&—â°zW¨š„qP‰£3x®«)2áoÊE‚dм¥È:èjë0篟ém¼æz˜2'V&§(‘Øö`BÀå!Ì'á=hDBÙ$KOÍ¢´èÉ¡–óÖnèÁÌMDQ܆èºSÙ\6RJŠ.M¿``ã?@ ŽŒC[/p¶®­U3û÷W™÷rÇ'c†ž ›Àé°d+„Á2ˆ úIozou±5ÇŒìÌKw­ÕÈB÷{¡J´àb!<>þŒUq óq)ûô™ì×TýøÍaP9W][]g–¡uS^ôú¼áÁJ®¾úäáclËÉ–Æ ÌèÙ„ÄMyÉÛmq,àC^ +D×±äWÍRtzªRqÔݘ–-Ba†SD¢@œgø-…(Åkè*¡aŇç0ãUÌ@l£-IOFÛÛ‡F”O£Þ¢•ÈÍ#QÛ6ßÎbÍRÅkuvòf•2ðÑcœN̾téòù¶žÜwû/fmSêrr´¬âI…J÷5d¤gååä•sÉ5;›»•­WYy)pï`6D3Ù ë`!NÁ«2ºÖÒd>W RëÛ¶c²Ç®ü.JðRÁ<|xwD#×k>Žôœ:ßÌ2—ìÈMO6ºf%–$Y²-{« +­2Ø(xÑcõÑñ®ÐRRq€-.1íÙÉlÊ¿~»eé¸x…‘öƒÀ ~8?ãå'?L—wV¼bÀìšFs÷_Ã<%|²õeÈÛ§nD4ó¹ªâÀÂÑÚz¼ÎÚÊñTƒæ"¿åÈÞÊí/®²àäH‹ë.°Ð†-Ÿ ¤ÿá“Rù™*ðþ»î,D/úЀÂ)9ä–€‡°<È.\×+$“!4JÁrýQ0 î)8Á'Ã/þÈÉßâ*)ÄgÃp+Çáõ‡0̉'»)ËÉZKóæYcÿ0×ÛsnlBùp×Xb{a[XÝBÆsMyÙÖ!',ñŒµ…™èÊHØ°=}MÑþêêRNþV‚ë4ð"Ü7¦´R#MÅÁg¸†•u›OÊ@Cík.øÑô°xÔx5©^vX:Twì¥ò¾ñ»äN¶'>¤Æ“Y¢*/‹·‘Íš&ëbÆ,úxeBZÆ:v%(ÅÝÉhDâ‚Óˆ.·Ó…=ÏLÏHxóW½»‡f^ã;Òkº”mm Ã7Šöµ²=à)iHÚx:˜Aªù‹‘ãüßG•Êý!¯­(S™‘mÒ¨Õ)¬¼§ +(S‡ +À®äN-°¤°Z¡ÌÎåMæ¾~%KaVÌ{´Êk­þ«,¶I%õÃg™{§ +¹¯¥ès rØ€\”Š¤ ñÐCý§/u³‡(…êD²DQo } ê€¹ŒÍ-ÓïÎc²MµíW{qò%àŽH“@â ¥:à^‘Š=ì¬è?z7æ¸Îá¢AwSñkãÀ׺üÏÈž‰ÚbÜ¡çÌЈÔS”bO´9ÊœÅâê¤UãÁvikîfÆZÔœ¢UFê—éúoÚ²–£–ãÇ•6Zä‚ÿð}0ÏÆÛŽÃjE¿à0¹…FGÍÒö‚¤ÚM ’}ꇂª9´øO>@ݺ}v¤“ý7‘UņKÉÌnÆ–qÈvGg,g[šÖ¤‡!Ò²Š ‚Ö²à…á´(‡°ge·²ì.´»À¬r³—ûزBݶ(„¢’XcÁ“*mÒ„þhšøŽýlÒo!ML2yç›÷xò<ÏûYp9«š€¤±ßx{V%K1ÜF9+Ö^0êø\ù‚,.%Óõ`®ûæ÷#Ýgs¬‚¹ÚT­WÑN(gþðV‹Â[â}_¹âÙ:©þj +¸8ðGo£½1(QèÍ?¶BÌì]«c†? +¢òĉÏÒ¸ýI£<7ÍöÖux&¹iûÑsý Ê€M‹Øk+€צ ÇÓ,ɯÈ"ˬŽFÒUÞu€Cë#BQ$ +y¼žë-#=‚¥˜Ü’ŸœÜÖ’Çç DÑÄU÷¸ŸØoL 3ßµ,=VAÅ,=´¸ëzx”€:YÑTQ£ãó EŹ\JÞ×wfeqxÌÝßU’mãÍzóE<*:‹]XÔÎÃnŸ)ïòƒdƒ$R¿>;Æ&geiR3¦¦‡FnžÚì¡dnõ‡gíêé© P?Ó 5öƒ°Ê„Š^nìü`bzð‰=$³ƒ”d²ÞÄ·X¯8ú9WKÖauàCT£¹¹¾‘ï²µ¶99Wkv¢€šqÜMÁÆÄ…WsÏê« +ù‚ªb­¶ÐÏHzJ4ÎýÜ;'S‹Ê„K$ãÑÏh i9nIÚ§¢—qC˜¸ÆNã:îíd ²›/×7ðm¶fÇ çnÏMòVW{«p ‹ˆz/-µ  ï/f¼ú"ÿËøPÄiìÀ`$B$$úÂ-ÙÄ¢]¡!Øãv¹ 3ƒ‡ °—¼öÚ.ÃÞìLˆÛ•ÿqjrÑôý¹ö¹¬ôA ÀÖÁfñí,M! ‹ß«,da«»xŠ{ +þË`vDüª>\˜šÉ1xÕ·W{:fIÞ§ÂÕÖf²Y¬X:½Î!núZʇ±¹iG²ò»ûô‚±¡¶±IEoÆX,ÃNQ{MÛµZ‘1¯a1 —(ÉÜhià] C“\Ûec]` ŠbÌuUzSwjatÞ/ ËÚNZÒ-iQ*ú ^‚6Xï3ÑCãÛã`µ£³•÷8Øzþw¡öÇÌoÞèó;ÔVÑجjoµõº&*Ä.Þ 4qåÌ{"‡Øwc_j“† 9~“åMÕeª²O/foo9ÇÓˆÑA8z¹D&A¸±Lþ‚¼ÌF$"å,Š¦¢›5=y|ÁÕëe“Ü„ë k‡À Ã&ʨ«4–r'+3øþø'(Ã`3E?! ^RÞÂðâáKå,0ÌSf¹)]íÅKz¾T_~>‡;U2pG€ËHã(øn,¼øÄíénåëI¦Ô¶€HÒ8fœšWÑ_™`' +_Íj“û˜|N{ž‹ì%!N tˆÔ  ‚Ö¥² §ýjHè~D7úd(é"„ÀiöqÈñ¾Ž 9ÛÚ Ùë¼ÖïÀJ U>}þ +†#5TÞ'ç ó²Q Ú¦¤/H²(A¸$I‰D™ÒœDáP©ÛWC~8´ ùóé'þ&Å:P€z(¤+ +…<¿A¶²ÿ +0j€‹Š +endstream +endobj +1574 0 obj +<< +/Filter /FlateDecode +/Length 611 +/Subtype /Type1C +>> +stream +H‰|PMHažqçgÍeÍÕÙLk÷#$ZÿVE0 t!KJ¥Í ‹6:ߺC:#3“?é`µhTÐHX]"*/v(‘ *¢òÕ¡›<‰ðÎúî¡™íÒ©÷ðð>Ïó¾Ïûñ± WÄ°,[Õ¦óTª»îì´¡ÊJŸ¡7tê£JR×Ï8Õ¬SÁ9‡ÖâÂÞÀÞ9>–ÂײO9>ıìͤ>îîŽd,ÒÜÞÞRïakÛêIKSSS[I‡¢Q’š6-:f’ÓÚ°nŒë†lQ¥‘tŒŽ’B„I jRcÂÿ¾ˆ¨&¡ª•¡‘]sDu÷ ªË:&—‰î9ÿÐôNU#né×T¥,W4‰¬)q7E/\Ö¯h–¡R³1~2u~zœ’ãD¡iÆ­R¦Œ 1û?Çô0cÌæ'{ Z³kÎöëbÍš/Ë9s¹¾üœ øAÂÜåaK@‚ëx$GÌ …èrÁy+yz,Hf¡“]…쟕^?{±þN}.§Ó/¼TW¢ÁYàœàØÇP ~¨ô–;*au/Æ°O¬bÙý½3Ï@k£7“^-¶cc3É¡Á©oP?…º›K+ÕÁ¥‰\d’….û + á\Ec‰G5PôžŸÜˆïÂ5¨ÍN†î8ð—ÿ‚0Ä?ïv;UQÍÇøf01."‹Ò¼¸‡ùòíË‹Oï/ûo sêuš©ÂƒbðªíÌسmû¶-à%û‹-ºÒ” ®ôÄöcÚþnG–†ÅÙ@Éæ>8P²ù0p°%ý`DÊD +endstream +endobj +1575 0 obj +<< +/Filter /FlateDecode +/Length 3672 +/Subtype /Type1C +>> +stream +H‰|TyPWïfèžQp\é í‘€€AäpRŠ‘aPgÄh̺2œšDQÑ @DD®R¢« .‡‡Üˆ¨¬K–Ú|=>RnÃVªö¯­WõÕû½ï½ß÷¾Ç 0ÇÍýenþ»VïHR«ä +uìšÊÈ#åê%ÃJpÖÌ]h,BëPæÇ}x2>,¨\8‰ f€ã}oÜb㸷‘QñÒuŽŽ¶V3ÒnV:XImmllf¥ÔU»O)•%iâ•1©×¡ˆXu\¬Z¯TXK]”ÎRh¤j¥F©N˜9üï¤*T©ŠRª¥rN©âÞ«• +i¼Z®PÆÈÕ¤±3šÿûÿ)©ê”ã’RÍ Y¼?2?®”^K`›ÒM@;D•ƒÖtHO»TZ²åŠ'ψ R˜ÖÅfwáÀŽðØpÓ.t?ƒ_ó€E`6<Æâqÿ÷Hêâ« £ wEUEO$ž^LêJä„l=<ÍùBm|ߊõ£Æ+o‹Š›â»$`órljlûSç&ƒOMöß¼SÿBÜЃ>s÷R«Utž7‘[XW#yy{ïîÍNÑÞL¨WI (lÒ™Àô(7DH| +rÔ3΀{tá—GAõŠÇZ˜‚ûX› kiÅG?M¯' ¹ó‘ +RE|X‡¯åæV˜g’:UªJ%F1³­h‡nô£<Ö]O‹P)GÍDfþͬr ˜Öù9¤3v[7øåæÄÑG<‰Ä[O;$°xòPòºà›L~DÈ…‰æ„Nwœ)gÒI¡¶ZÀ¦/†<ŽÚNo)úêHê™ÃŒc²[t`ÀÛ{ïrô™mC0 y `”Ó+Äw Tí;H§—ëš:¯ +/ýjªYMŠÖ†öý¦cr².ž;O?ȯºýXòò±ÌÚ:ØgËlr»»ðzÖšWÏùñ%tèø¨tº“#¡Œ%8o›ØÊF“ò×Û_fpû(5 +ßiE𧉠úBꊙL>ÕÛ_qãI­ø¥O2A¤»…ì–¬SE§§Ô¨³*4ÀQl5à éŒ&ц†–LæùÝêžëôˆºV¹Q캑¦zÓÙJQß­ÀÝþá²£ŒKnhi³¸îÎÃ.Z¸J Ø3&œ«F+?a¾Zìf§Å^S½ 2Qê)rîÝ«1X_QÕ*îÙÝøA;¿ÒDÓù>Äw²Ë$©Åª`q˜ZD‡ø%ùŸ Ì8lF—£°™z/ý£Þ£fëN·³?µá=ìѯ'Cô—{5)Ï%ðùTIc#Óø¼ä5ˆú»_-]ëo{-xøœþ&ˆöÍ+ɺ/Ÿ×ËÑúTm_¾ùª¤g¡…èʵ½}"GËëÑÛ‹~·ÖÛó…ð·,˜³"6iÐo¥âô+M‡H¹Þž@<£>‚*±×¸Û&H!µÇwÇr©†>3NKÅíùÝžxE^…Ês“gÈ4Ï p¾aWl%àúGÝD É…¬¿d¼p0¯«àT‡sˆ8»F _mû¨/gÝÞðàW½«y"snD£pX€hðX óá8ìAF°ù0g¶Š`Y;wEŒÖlB¢Ñ¢M  °ìs°`„ÉÉìÃÎèD“ºˆ¥z¹öÕ”um–ÀúÞ×Sjy±.Ûw«Qü×ÒÚ7Ïî'ž¼NS÷ó;ª÷JLHŽ‡}n·i‰UëN0P0cQe‘>âm»÷ØúíÌÍWÐÂÓ\¥Np->ƒpÓvöuOŸq9) ΉøÏ#Ð=Âû™ îôb>RNm–>4»hýôR>Zéíµbg¬¦Ù¥\ìߧM:'°­ÿâ†Ûe} E¦ïaŠ ¢ +†/·d¿dßo»äuí‹!4eÆ5„ŒK‹-i‹Æ êb‚ÃQ—®™Ü‘Ô´ßÞ™ÙëÐx¼]‚³ÖÓ\GžlNLt†·fkIØÂeJ˜ mŽN€´g l6)ùuœu4=}[w·R ^ü‰ÈIdépìp@\/ypé¾ä÷&™üÒ—z£9bªÊ½Úãm5%7èL’:þ­/ñ58ˆ¨ªSºä”Sô¾>’0åú·€_y¯c„-Úve»©$št CÙu–™RUYýD&é]V×. ð_À•éöÿDÆ’M²¨ÀƒŒêí¦8áºP]4=%¢K™ÙçéWëî>•¼­Þ°Š¡ªo—ËZïàÊgÇhÝyÝ… bá®ävkÇ+¸áµbP¤UG"YíÖ†“O€÷ð¶öä5&·•ÈÖ콸[‚l—! ­D–ï,ayó£œìDVö5Ø…]pŒ¸ »«D„¡Â»)ˆ)ˆ‚h*(.kiFeãÔ¹ÌK3½×ÿÞ™óœç<ï9ç9WdÜrt§0J%GíVY«&ùÈjÍœ¿EØ84ÿ—tã|ÛéÖŽ™VD7HË÷¥Já¦,|ºBn(5YL,ݧKÚ² MûãßÓ£¿öŸHMtpåf›Þ¬¤¬EƒÝ!}’–q¨º-Ô/·UÚ«ÝÊ;›C¯£¹H†æ¡ywÂÂk§œÕM¬¾0lûÄÏ„¯ê„YVÎÖ'ïÝßzóógÝ’ÄRŽBŸáV€åÃ’›RX,D@Ð +úFvå@ÿÕzwñ–$öfïÏdÔÛ8õý»±Ê¼Ø5ƒÓ2ê,úä¼0S—ÌD¨Ÿ Ç„×­œž,y“°’žüTo$ƒ¤Ï‡¡¥Hé f_í>êkàìI$¢â>~m}²û`†è:9­ ç˜ÞÁjïqîx{í H•Ð,£ÇÎÛ[íGØŨI®·ëÙD­jkèÆ}Žž„'z†Ç/vlþÈÉV˜lF½’êÆõ,Á/" €9  €tÙûxö„Óçù‘¹Õ·‚CMh“ATˆgí¶Ì"}›­×h ;gXáL8I¡ZŒ¢-ø$s.€da€¾Á‚6|Z‹-Ý;)ÏÈËÍÜ^›Ût¤¶î»R®)¿nKm}¥83Vr îƒ%ÿ©&`-éë‚(¤'þ%±S·ÀzH!æ’èe(,Ì7âñ£ÐA¼nU"e‘ï” +S€q u‹:â‡í~ÈôÓc#Á~\K½fŸƒõV{¼g˜æÄ•êðC·ÌYî¬àÙŽšÖc]Ìpsb‡üÐ"ƒèÐöu©&M[ ×æë³ñø1?ÙÇD¥mJÍæ,$ÝYrXI–§ÛÔÉõÓŠòÑ×Dý¼bΊ*¶³Æ×vë·ëw8í2XâY•˜–šËZIÚWo³2}{ƺ©nWv㘢Ë’{~é=aRŽfĬ¹Š\²„ÊMõ9lî¡ïmLsþý.®¤Ÿ°˜ -yŒª°¹‡ƒj˜3€æ'£N˜GÔbwÎ +€>@û„xBÃQ©³èŠìZ½‰Úqá.‡ÂÑQZùëæŸý'O¶~-®+í¾hâ:ii)õv))MY`Í#(‡Fg;0ÄOk‰q-ñ*¹Õã;@·ÑnNÇw@‘ÇèÑyC¡^A¡lÎÿ† Ì=•Hs‹¡ópè(y + ú’«»¦‹?‡ŒO¨Nq%]A:Å( ‹1êòT¢K0~´Gõ¬…4wNî:ÅŠÕd4*Ó}¨ûÐ,~ßÝeì2œ^¥ +*ýÑ,J¾ÖKbš¥¨Å 2b’‰»Ñõ³ ®,göÃH¢ø‹Ä?(å° ŒD(û¢.G·S—…!u úú] ï<ZTLÙü>,q ÏIÝÁÂsC訬­?Xw°2¡Ya;CLoA•Ôääåç ¨EA™xAËCÏóu<‰>å¯ñ2özãì ²Ù³ff*f?)|õ´P&ÿ_€“b\ +endstream +endobj +1576 0 obj +[1593 0 R] +endobj +1577 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1578 0 obj +<< +/Filter /FlateDecode +/Length 344 +>> +stream +H‰\’ËjÃ0E÷ú +-›Eð["` ÅIÀ‹>¨Ûp¤qj¨e!; ÿ}gÚ¾f켈0Ü®ócãúI”¥Œ>pr^Â*ŸžítˆÞ‚…0¸«|úªÛŒÚ›÷?0‚[d,«JZè±ÐKç_»d´ÅöÅùaY÷˜ù[ñ¹zé6NXÆLfß»‚(c|*Yžñ©8ûo>-8véÍwD™Òâ8ÆrÍ\Ÿ˜OȯÉhM–0'Ä9sŽœs6§l~fF²àlAÙ"cÎ×QTGqEuTÁ\kfM|`>ó^ŠöRGæ#1;+rVì ÈA³ƒ&2§Äì£ÉG³ƒ&Íš´bVÛaÞOŽ»/=3·°]ÛÙúD> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1580 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1581 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/D/J/a/e/i/m/n/one/r/s/six/space/t/two/u/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 2124 0 R +/FontName /OTSKBV+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1582 0 obj +<< +/Filter /FlateDecode +/Length 278 +>> +stream +H‰\‘ÍjÃ0 Çï~ +ÛC±“¶+…(M9ìƒe{€ÄV2ÃâÇ9äí'Û¥ƒlý„ô’̯uUí¿»I6è¡×F9œ§ÅI„mX–ƒÒÒß½øʱµŒ“¸Ygcmú‰ð +ÎÞ­°¹¨©Ã-ãoN¡Óf€Í×µÙokpDãA@Y‚ž +½´öµx”íjEqí×iþ2>W‹G?KÍÈIál[‰®5²BÐ)¡x¦S24ê_<IÖõò»u¬8(Y2¬xÊ"“!>&>>'>®Wo‰oħ<2â}â}àTÿê ‘‹è‘ ­Ý{MÒ.á±¹8GÃDžǩüÚàãOìdTá²_­«„æ +endstream +endobj +1583 0 obj +<< +/Filter /FlateDecode +/Length 9362 +/Length1 13164 +>> +stream +H‰ÄVkTSWþÎ}$$^bÂ% $ø„H|TQäQ°j‰<„*‚JÅ­ãØ¡¶´¶Zk­ÚÖ:h­½`«V­Š–N­Z«êt¦þ˜5kf–fÖr͚壆Ù7:­3Žý;7÷dŸ½Ï9ß~œ}ξ`"±­¹µ£óù”I9Äo'üºEmõÄ&Ÿ?ßÐèlgwqpÖÑ|óâ@kã‘SCWˆ_CúúÚÛ–u w E@Þ(e¼}ic;æt^ ~²‚OàŽC¤¹ÛØ ˜y +hâ Ç…ág3Ìé Å‘ÁLòÏÏ®’„ ÄR´¨Ç©©p_H” ÍùχyAT©ÃÂ5ÚȨhÞkŒ3Å'$&%Hi¶¤JiÖôŒQ™Y6»#;'×éÊËwŽ3vÜø EÅž¯ob©Òä)S›6½lÆÌòY•UÕ×ÔÎ~bÎÜyOÖ濹}Ç®¾9üɱ£ÇOœ:9xú³3CŸñåÙsÎ_úúò7 6¬\õ,^<´~ͲºñÖ‡xX½1dÝÚWðéÅ-ëÐ<·©éêëÛö/Z¾di[{ëâ¯peº> 4¿TßØòÆÛ[ßÙ¹û½=ïî{{ûdZüKj½ +ŠÀý>Å…G7†Y€u²M óXKjjÂðp(š»Ø¬TgŽùQúð‹Ëìev€à¶ŸÝV~„)Ð.ª F¡A´”³Qˆ&zC«Œˆƒ ñH@"’ŒHÁHÒjA*$Ê+Ò‘QÈDl°Ãlä N¸‡|¸Q€BŒÆŒÅ8ŒÇ¡”À &¢~LÂdLÁT<†i˜Ž2ÌÀL”c*P‰*TãqÔ ³ñæ`.æáIÔ!€ù¸ŠN¬Ä*ta5žÁ³¡5X‹ç°¿Àz +ãÚ‘_¡/`#^ õe¼‚Mx¯a3¶àulÅ؆7±oavbÞÆ;x»ñöà×èÃ^ìÃûØpBF?pácÂaÁ'8Šc8ŽOq'q +ƒ83ø Cø¿Á8‹/qçq_á"¾Æ%\Æ7ø-¾Å,ÂòGž’§Ð”>K°ô¾¤‹QO´ íh$ºÍ?Înú-Iâi,ÃKÔû{®¢lÓQ†xQÌ :‡ÿD§¹Ÿ#œnˆ&q$—É$Å4¸?â¾£5—oˆt'Í‘U}dé.²~+íf/íðÚõnÊ„äaE¯‰òcåL5åQå–ŸtM ,tS†fRÖZÔÕ ¸CÌMÂß„ïYØ-¼*ô +]‚S!„ñgøCü¿_ϯåkxÅkxŽ rƒÜn×Í-ãfs™œŽ]dCìÛÃv° fPlf*º¯‚dù?q×ñç<¸ð€2ùð“?Ùÿ åed³Oœ16Æ ×EGEj#4áaj•(ðƒ}€òÝgî™ß#y›ªöª&¾ÊN¶Ó˜Ú"²&«Vf>݉v½2—å°ßûcóeHÞ~Æ[½f¿¹9Ð óV¢fYðIsC¿ÇÓSYc¡§–äÚ™5JG°šýͲÚZQ^cI’EßèÚ¤@CmE”#ÝJÊ‘®“nÛ£Ñ œ)Z½Å×Z\|+$ÒLcöAr›jϬÙS*ó¾@KÝÄ:¯Ã^j–yÉ;À8Ñ·Ü'ùz$É/G(¾Z|i‹ì ˜CvË%IÔWº²?Iž\[+‹’— ˜äm‘9É+k³âvsióD‡ý(]Žâð)/1 ¡P³¹Ÿã{¼’Ì^?ÌSY#{êj}; ùô>2× ‡=ÛarØ‹åØ,8¥Â‰J!åé–<É\‰J µPB·±š¶ð4¶EÍ â£y›¶\‹Þ¢Ï Æèæ¶üੈ[„w¼J=ì ÎçÜ ºµMžh®Õ€ëˆt"3†gç2u:çÎ/â +MQ¼16…ÅqnÇáÓ¹uç:·8p‹tj&²Äû«­±*)5›¹ó ò\q¼‹ŽñéIJ}ù– ÖrW~ź‚òʼìòÝåE©y•ÜæŠ|Wuµ+¯’ôM%cê„kTÙ¨ªy2óœ Š.)š±Zô|d¸‘i]Î\KrB¼ÉhÐø#ÓI}þ½Èزl¹,¥p¦¦¼Æt)Uív¸ós˜E­R6⾬ˆ/,boá¹Þ.=:ͬO5ér]³úÎ×O)ÒÎ 6•ZFäLèz­Ô™Ÿdö×´,ÜÌjdáÚÝg¤ •S3f¦¥D‰~Aðë¬ i7ŽT¥šâTœÂ«b¥i÷f¸û,;¤|OÍ&Ÿ¶ßRõ.D‰§À¨áòœ1ZfåïpYÂy +¦…!ÜH÷ŽÖÈrG…·&åBŒ`\û(• âƃŠ‡Å6[n}[¸õJ¸ãò\¡×DNS´ÕQL €ÛXªŠÅÆiz]y¬2nÿ×UÛÄyÇý<¾;ß9Ÿ}ç—$¶ãó;øŒ_ãÄ&Ž“‰ ¢(Co)EЄBÅ&±AËhË[ Р¤£튪µÚĦQmCEƒ}Ù*MÚ4McšÚ ©¨Ò´UÚÔÙÿ9´.ßrö‡û½ÿ½¢CòkŽŒ¶¯lW?­þöðô¹-˾u÷›ÿzSž”¦»¢3®ý‰ ÷÷õñq¿sV1úW¦EVãÞëÞõM£ƒ÷ßî@ŒaP¶ûH·‰È,¦ÓÔ[€’‘˜;Ðÿ•‘pöû󸯄‰`7’Û°7ÛNd~J£|°Oâ*hЗҫÑdd B%¥.“Y{„ç»9¢ŠT} 9iŒæ3€©Œ³.N梔ó"ú¨YËJ ±S&q4‰–#žö²œÌÊ©žn3rou Y™š›;2%Ûjdãùë¼u»÷©Œ[fU†©2¼Ëå=<ÿö­ZD•‹ÍÅã³ +þdžT—Ũ1!Ï[ë†5ïà&C„d&>òïïî*«‚™kÚäö·¯eZµñwÀƈaCe,Ö»ÂE÷c`£²aÅ]YØPQåÃý7„†Ñj„{‘Ðl #$ÈÙ”*Xû0*£v´Gá»X¤QF–#élžÂD.õAHç$¥þ"DÊJÏÿÒ¢ô£\„R&úŒ%DsаMË^uYÜ›BÛ§<¤fžyakš1H…§ü6 °´ÆOuÇæ»rýòŽ;?ÒlžÏð¾r›`D5ž÷¼ð¶|#ÖÍëL› $ÿKÁÀa…x}f[ólµ§‹×('óà8I*•‚¿£ ”“^ 1óB±6f ÀfB4 íÄ)E0„Ë$±(Ù2ÄRʨe *?*‹º•\áZ)°"nQU±³žÂÊ™ë7gÆí»7.ì0{¸š'².F}“#5ÕÓåÛÞÿXÏvP™Ñ°»·úà¨&Ÿö¿süš>ú7÷gxÿ†aKeÝxOÊXϧZÖØ’ 1Ã%—ÑA‚z‚Bº‰ÈÄADmàsÉÆÒ°â”@ÏÆJ2[‡- ·IÞ  ;Ðú£=ÖäsäuŸë(í€ÏtÄzªEI¯µìRÕQJ`‚ÁÑ CréA?äfÒe‰XY̸âµ³§Gï|”Ù3¨f|Õ—VãeÉÍ8ú‡¦¯ÿxf¼Ïyû½åÌ×'^+"Ûs¼b:Y•ßÖ$ë±SËл“¯)°E³­yrú“c›NίÚsÇn<\ðh$)$S5Z›û›—?߃˜÷ÐØÁ‡ÁS7£ñ¬ÎãßÙÀã*ÃH¥o¨è6:ªÔï)!BBD!N";e¬'ç4zŠB*ŠôjÒ#±UpË©¢|Õ¾Ìד<,±¥D‚:a$~éÿiœls@j ¥$µâ°5°Nö0n±Gf\>p ­E¯ºå|óøøêÚqµß#Ò™Oû½1­yíóµ¬d«j'^ÖlÞÏpM=è“ÊËD³€/|ÓJGÍ-_úä^ó‹f9'Ñ ”œ}¸ðWÙ‘€m˜ô1û]X{ ~Ý%*ÁpŽ!¾3'êûj"&äw »‰ßÀîrÁZãØÒÀPçì!Ù¬ ½õCq¢d§ý ø‚Êü5Tü•9)ûýé5[~Ú|ðú/›;Þ<µöÇÏüpµÒ8º9~Ïü©—nê⟎½ñŸŸÌ\@~|ùùæ_N6?ýà­æéM×®ì"­>cA³*´{- ,—k ñLÖM~%ÔTe©À0S¦‚ê"–ãᣄ9¯j`c´É +<8Ôfùÿº,ódÔ|˜B3A–£ôÚÉÒ%Oâ–ïŸtX¾Ôî•Û–õ[zîöJ Ù³?0rpWeìÅFC]Ì, ÌQJWDK¤Õ`Û>¼©Iž/ðÖ—œ¤ +ŽgOqÛÈúŽn›ÍælÎ÷}¥×'llíA9zÌ=.qŠ»„œKSn¢§Œ¬Ðh£H´@ËÚ¤É_Šý¼:`•¡ $k|%YXïœvůƧ¿¯õ«¡Ý™Î'|ÏûjóvhˆœXŒÜ ¹Wä¥Ê@ãÛš;[ù ¾Ýås’-æ!¼64;Së]Þœ Õcîõ4ºëÁÍé¤û»7ÿPé¯z[Ìœxô1à k*ƒ¥L,,‹f “  DÖwN™ò[d¢™±®J±pHa÷÷YdZfáÈþÚ +7ËáU-{ƒ)YzÑPF(?‘¨>êù\¡lÓ»8SAWÞ +°Ó¥Ÿ|”3pG´çaÆìéÜ{’SØÊ漦¥~þ\ª¯h‘'Y¿éÚ°d-Áྒºq^Wo=ÛÛ›á;/ßýÆoÎÈèéøD­c’VïÌîvÙ|Š¢/¤êÏhJ<|üȤ֥ø…×|Õi ø"áo‡ç.Ž6¾G™¨CF®êûV­ôy‘€—wØp7R2qò1D¹F½­…‹Ó…ƒ/ØãÁOÙù//- E ¸! ½›‚ »3Ð]€…oœÔ2€~΢͵Š™¹’i·0Hã?BçÑÄU›.¼¯1bylæghXTKÆr·ÄVÖY/ž·¶Å÷ZlíeñÁÍRÒ†õ}®?ºÇNÁû†*y9Q€BL˜I€°ÄHñÜ) +@*z%Ý)³¼zÕŠ÷ˆe°÷ðã#Uï䔣ո +õkÒOQÒo=é' †Û¤kŸÒ¬”ZÌAÖ#õs£sw1oìÒl2³ðîìëÛ]‹/¯>ܦúÛþËuµÆ¶u–áó}çóíøvŽ/‰íÄ÷žøîøØñ-vœØYœÄM6 ¡ÉV7 +kZz]ØÖu# ²%“:V‘2ŠV ›*‰M1˜ + íˆ!õÇþ0!4$„¨š@üu.ßw줃9Ÿ,å}ßç}ž÷y¬&¤×Ú\ùÝxÒ‡Òh‹(.2 [ÎjŸüÁω_ƒ7oÛäÐJÆpyÚ}\ÙþxéÙ«ÒõD-ugê{šÆ¢ˆ•xõáßè ô N:*{¼}C)øcÖ4>+¢Mz¼l¿ïµ(@F¶"¥Ò@(»Ñ‚´£pãÂUÐãËtتRª‚û‹kéÀ¥ï§mj¥ÒY¬ƒBû—h':ѸLw¥D%°V4âøè‘Øá¯zÜZ¼išð]iÞ3M §kõ[;Îþóa·.TPGêŽHŸ1S:Ù^Ëø +Ü‹ûá_è?*¬8Cæ©B9.ZX%âãŒß`Ó˜5QÔM. 7ÒZ à¥ôÚ¡ßf¡¿N%,>‚7Çu#¨¥dsÉ9Æèu‡\ àDÕ‰!˜…x à +*øÝcg6SæW×bÁó'I‘S«YÍÎ]![,ãÃ¥J¸¾±ù7^ƒ‹í=fÓµÍáæ‹^ǧý°Ð¯ûxÞXv¯YÑŽrïÿësÐçV³¬pò¥úðâöÒi¼eÜo½€–Xî÷DAOâ\Ýldü4!°î$IU”q# +ìïÜ¢)P®½#*2`DSœV¥¶_þÚõ³cSaåb|äñ¥§t\…ö=älE}qÏÌóÍ9NË:Óµä»_8¿4°\·ºýó¿h•-êjñÜì^¢å„0Fdãá'Hê"R+gõ ï2Ó6_¯Fƒ‹ Ó`Ò)ÃsDÔÉ“h£` +l E¬ +XW»Ág ‘Oˆ¢˜[› °Ý¸”E»®©tËx +7a+g“–F‰Ñ½;v}l +^Õ–­¥úô'BõXûBË‘kfK¯ôöêÐÙÁÌ©“ÚÿçB;'Û0÷•~[•ˆ¿iadVè£C…¨|y°C ^jR/C©%॔DÅÅ0+çÀPÐgЪ!¥þ|¿€Áã{€Ñ÷_>Œ 8ð2vØ''~óº»Òè‰Ù)u:»zûõ7NUê5ßÓ7Æ^]¨Ì{Û{Ìì|aðÌqð‰¸òÂ梦¿ýª=m¬5ß]ûöéÂ|ttûIg<}æ†W¨t/?ü#£†ËR[÷(€ÙŽß÷¹{¬ŒJɇ‰Ûá >¢MaÄâÓ .»u} +è†XùäMÇ×[ʤˆ‘Ç Ye}ÄÇNå=õƸÄ[-×gOÇêÁ`Ðmªn¯5‚<ßè?0äæÞz«õ‰ø‰Ågn^˜ìØßA6?+îyVÕèb{n©ÀÁ¢hªÑé0?òT:N=Y^¶haaL \þ˜lÒ¸xXÈàä Ö€Ô˜ (Iàñû'ñr¦@3“TB”&ø†FÀã]v«…~.Ä[e·†B9½V‰ r³‘á”pyߢÄX1F Óùƒlb2£òvìŒ&1ß7Ùé‘7bõðÞ¦yÒ ˆÇI¦‹  å=ïdÚŽ ̸×n·®ö\J8"§ÿ}å寰›:iäýçÍIíOS¯¸ÙÞˆkú÷—ªÃç®ÓŽÜçîO×ÝÕÄäÕô¯ÒUGövf5ÌdŒô©¸«ÏÄW,ŽÙÒØRíV]³Šµj‡‹qAkò£ä„_:4?åšžÕõ<»Ròù +´íbÙœzfZh\|pÿЊlÙm®/J“>g×-KŠ>ª@-Oô +0î³ááf0 +Òyv"òI¬#ò4Al<½pÝ&`Ä +ÀÁË1ÃÜ?ؤT7ÙZ;™®E¶AŸ1‡*"ÓxÐ*ÌúŽa®“f¿ÄAþä»fÝ`)ºèȇ¦p6ûÌF‘ÝIÍõ +âòÝk5È„sôz©UìYn²¼É·9ï=jnÿ'ìcpÔÙ®Ë=)ÒžóÔä4C¸RD§z)‘Š”½}¦N3õØAŒŒ è(ȳF:ëð`·’ÙÕLnIN¯)bê2]¡ê6ÝŽ|P a,–f5Éòâ ýð AaHìîï‘d¢é/x¼_]›¬ï„E¦Êçuõv+—±`¿ÓJ›KxJÁ`¹Ëi´Š9¥råØP<Ä#> ÆÎX£Aô:-¥4¥Y˜:[.ó*§ä»g¿›9;%/ƒwœ”œÎ;ùE}O </µ°OìÅRŒ Ž +'¿9oF·ÞSôÓÙQ¥¨¼Jt·‡ÿú\`ĦvÅŸ¾nGx¦Í;»u@óÑazWcÍàbÜÁPìÿOeëË,Ö–ãá¡š)âÝV4ó"½/–ãI+‹øÎ;®©‡áƒëÊ‚¨43Œ!”·ß .÷ãå· +pCÊ:¾lUz%} =’‡ßå@†ì‹LA‹õ€¸øˆòY'—O~ézëΛ t“äPÌ +ô‘êÏ_2ﺳ‰Ü©]{5´ ÔÂjk<\Ý^•Ø׿˜ŽÍ4÷¶j™˜¾Å9Ïêünñí«˜, ¼6Ö»}ÕÉòO='´îWÚ7ÒVlKÑÓ0¶ãDËí©þÄÚÉ©oñh±=— ³µýœ‰*x’CÔ±ò¤°:-öñ §N¹¡ðÐßxO¶©ëŠßû>ü>âøûùÛñ·ãıc?ÇvãÄ ± ¡$ÁŒ™.¬ÊFÖ‘5é(‚¬‚)ƒ®KÓVÑŽÑŠ1´!ºn£j+ØÆÔj¢›PUuUE¥ªêЪü1M´Zsv±UÚS®^Þ{÷^Ÿs~¿sîïÔ9[ÎÅ¥ð}¶'/ë.„ ù®#XZÚºæçr|agªlwʹ±ËP2Ô±4>Uj-š3ºÅ#º`ààNÛƒæcqGÕëÅø )ñ¨@N&¢ºoѯƒ¿@m…>Mƒ*p¥ÕÐ{P +ÚYÊgfyb-xÆ„@…ÖΗ¸1µf<98B¸¦ñF’Шô“Ÿ\ó ¼ðìWÿpòO¿Åïz¤ñ­Lß—TNî„Ääñòû+¼æמ¹>u“Êñ¯SºG¯èì-û/‘Š6XmetÐÄPõ2 ‹ÅL9ƒ6± +[{ ´ +ËI-B3C¥‘0L#lnsR5eÃsÈŠº{Íb¢ÚX©›”m¢ˆ:Sb]Ë=EÌPÊá¨(¹®ëR1èk9|ÑØÆ´ütCä|Dpk\±mÏ]²ò;*™ÒÜH뉮‰|o°µâO&’ÞÌÖèøŽjInä®QÐü¢÷¶¹‹ê´Ô:ÒRh‘wè½ñxnÀª³žonyð©Þܾ-ÑÊšâ¹I?jzs¡ÛŠ” Á6…Š»$6ò~–Q™ ¤ÂX€„DàáÝœ–TËšØîŽF£ÿ], ñH?êGÁlf#…¸Ö›÷^Ytr]iƒÕÕ´-5¤OW^;1 MöàRV}AÚœóðwÔÅr±úΖ„@JX>½z‹ú Ø”E…B¦=â³4 æœà†¤tØE–Ï` ·€ÁðHØçnrZ$ƒ¦ÁH3ÏàZÁ äJšÌkº:ètjzßÛ)IC(¨ˆ—P8}¤Kmõîow7ywðd³j凉ïO5òyFoM F³‘ÇŸ>øΑâ‚܈ý[Ý_kŸÛÕ¡1J®FçC=±–±ŠÜ÷„\”"Ûã»Þåð:w%zBíµJãàg~õïÔ"3Ü(Qh¶`+–¢¥ÝѨºV«†2ˆǀЦæônÃKÀ€Âi¬ а¸5Å ²Y"€—¥ÓQ¡rÔª;¾©ñ ]GÆZݵC¢Î0ÁͯUœ]ú•Gø}Õë_ùZN쎖fÆÀ¢òê +“€Ñ#6‰ "šì&šÝî'½e]Î+Ú—0&,+bÀïsaà Ñ®r +\1×Ω(¿’ýÁ&S³|6ñVÜ»•Ý4ꌌᆓ¼oVN6ë‡f÷0/à½çZ›è¦dZ®ü±{ìåÔ7úÖ"ÃEwëéê'·‰¥Õ»ìGÀþ$¨šæ„à §µ¢4¬åE,øš6«Y2h…¾06Ëÿ±™\ ÙýuÃ×tŒROcÒl4|Áx2Y¥¢tK©-²1±1øbsøL¸/i¤&~¸gdËK‡Ùr$??ŸÏ…õ}¤—:fz6>Ìü·Ÿ”%†op¨‹Bõ9Ü‹ù÷«ËxàaFñ‰6µý¨zî7KØtüøj½"Ñg)/1‰6ÆqT"ô,BØïvÚ%½ +rÃHSé5§j* Ì…¸‡¡QjÑEwPˆDƒä%©ÈÍ©¸’)Õ”:œŽº£º§¾ëÍùì™?wEp9úvFø›½ZsйßYòþ|AæKüÏÚ.ÔË| ïï ,sö˜Bga/•@cìm¼L¿‹"ÔYtlœdtàË0ƒý‰Í´ +ÖéÐ <“uˆr!؈¨è)&áü.½ë²0gÖÀ|: +ñzåaMÖÊ**‘¸0A”… àá›Ô> ÷«`ß ˆÇê°çÿ$NÊÿ#hì®(¶ƒßÌB.¢©ÿ¶”ëûNƒM Ì":ɺQ™â±ƒþ=*Ãxž}ìYQ°.Cœ ž³VÀxì'{OŸaýüî4Ø;¾}a¿ƒÄˆé¼²þ$|¬IÌ™«¨\DzBðT0ì O +n·Q…`IæÞ‹%¹+xŽ7ˆá ÁPYsqß¿a°ßDƒÿf¿|Z›Â0þKvÙZMbmÑÖÆ5m½¤ƒ‚‰xhKAz(¡ØkSRKh̆¤%Z*zPª ÏÅOàÉ£ÞôêÉ“ôP¤ÀƒúÌfˆ ZéMwy–gÞygöý3ïÌ®·«÷lI~‘›=‹Ê©ü4¹Œ|3¾>–}ã&f8ž›øD06ŽËï[v”K#W>í:0c‹ŠÕR”íHï†PòJâÆ×ZÛï…;Ü“my†»¥5{¼Vz¿¡ðxõgÄ7ÁY’G EõÁÞð®iÿxG´â{'á¨Å1}t$*ƒTö€Ø…㟡ï>ô߆ôá;œ¬Ã€*j0e±£=OUwJ6ŸÖû‡ä×ð„Å6œù#‹‘=™/pö-øàœdÙÌü#0GØ'Öq£Z‹“Ð 8(ö»’™Þ/º]?ök‡ju¸+>f¹'~Ùòáº4cn¯X¶Ëcœ§fyœÏ,w$i¹+þÎrOü«åš3–žÚÖW«~£¹Üjùùb1?3,LÏææʵòZµa­²?SlÈÿUªø4h²LK·O^ÿ™E=g˜—ÆÓÚarÌQ–íeÖ¤_'TO¨v…’Æ­hÓ×Üç˜ÃÔr: ú±©(ïqM% +î¥ É´[h÷%GÛ^8QsÚí ™çéçêÑ\zz +endstream +endobj +1584 0 obj +[1593 0 R] +endobj +1585 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1586 0 obj +<< +/Filter /FlateDecode +/Length 341 +>> +stream +H‰\’ÛjÃ0 †ïý¾l/JŽµ)„@I[ÈÅ,Û¤¶ÒÇ8éEÞ~RT:˜!ñg,ýú‘Uõ©vý,£÷0šfÙõΘÆ{0 ¯pëHRi{3?Nëß ­&7Ë4ÃP»nE!£¼œæ°ÈÍÑŽWØŠè-X½»ÉÍWÕleÔܽÿÜ,cY–ÒB‡B/­mÑš¶«-Þ÷ó²Ãœ¿ˆÏŃL×sÂfÌhaò­Ðºˆ"ÆUÊâ‚«àì¿û4ç´kg¾Û Š”‚ã7䊹">3Ÿ‘3ŽÉ(&K˜âœ9GΙó•Ìä}º2nÈs†¬XG‘ŽâE1Šué¨=óžX3kbÖW¤¯Ø³"ÏêÄ|"fÿŠü« 36¤Ð\KS-Í~4ùÑ\WS]}d>® |tŠZ‰—Ï9™{8¢õY¬³¡©ôž/Ç^b}âW€Ÿ¯¥s +endstream +endobj +1587 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1588 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1589 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M)H`Ùn!‡~д`t’ +cyûŽºl¡‚ÎoœùëŒòsûÔZ€¿ûYu`0V{\æÕ+„GcYY6*\½´ªI:ÆIÜmKÀ©µÃÌ„þAÁ%ø v'=÷¸güÍkôÆŽ°û:w{àÝêÜNhÐ4 q ƒ^¤{•O²C«)nÂv Í_Æçæªä—¹5k\œT襑‰‚Fâ™FÃÐêñǬêõ-=UÌ- +2L3—™ËÈUæ*r¹&¾;%&ÃD}Ÿ˜ ñ%ó…ø!µ\oUÑãÁ­eµzOݦNmÆÅÛ'¸Ù©âd¿ “?à +endstream +endobj +1590 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7925) +/S /GoTo +>> +endobj +1591 0 obj +<< +/Filter /FlateDecode +/Length 5209 +/Subtype /Type1C +>> +stream +H‰|S}TWŸI2“ 0Hâ ${2³¨­ZPÔ +~ô´ ˆŠ +Á­P¢ ‚I?[´]•oÔªDðIh%Äua?ñë G¬¬¢`ݪ]ëø°»/Øž³t÷¼9wÞ}÷¾{÷¾ß% ‰ˆ IrXtlt\HÜ‘«M­.Úd ˜kX²Ôâ2qG +ÞwgQ*zsèÍ4 +n{‚àuîÞùr‚&IÚÍݳ÷çÔäÔdÃÀ—†·aÆL ÇàÇO™2Áß%?Áþü„ÀÀÀù!¢3.ÒóšÕf‹>ÝÌGd,6š2&­E¯ˇ¤¥ñ!̼IoÖ›²\‡ïò3¯7X–êM¼—ð}“^Ç[LZ>]kZÎ]–ÿRSÿO*ÞÁãXüü ƒKÓXð¡™×fèÆá(Æ,‹+3,&ƒÞŠ”²Úo.¿-cP9òtž'¯žƒÞɆOœŽä(A‰â¯#¯ŽIê“ô´E'ÌRÂœVPÜÿIýÛ ðo· O¶ãá ð‚x%$„<¼[½îÞ†† %š…äÓFàr0‘5 _D쯙çnðqá!Öj1†u°­‘<ÅÁÁjac£”Éé!ÏÜ÷å°ûË*«kÖV˜ÍkV­àÌy{²ªU šé É&s±øØbn9 T®¿5PŒ6Ç*ô4'pù”Š£YD‰6pèó¢¾Q/Tàý=H`=¬ ~‰¤ÜW:DMÈw,<ÿˆ€HCÄ]òÇh+³„›ó³åcWÔCŽ·Ý©N¦×gè.ýÏíT!ÍhómÂíFR9ÄB¸· Ý,”6Ù)†I½?ÁPegÒK¤š›©×ª+–Qյ͇/¨@t(4I> +D(œ›I¥K1l´4@M?8,EïÉ#lVm›å² +>¸öó¾ˆ S˸B©âÅݺƶËÊ[‰ˆ‰Š^aJSW,¥öÕ5UýUõø˜f^à¸Ea\Š®‘Vô>í[ˆˆB.fù8䷿̬v•«œMî8[›Ä‚È4Ï­ï Á:)êèÿ„ZíH#E[a-[(…d¨*­*Ý··Þ·(ÊÍÈKOS¢²wP»m‚‹&ìbaŒSÍ¢£´Ù©¢}‡Šp‡[§p£CÂæÅïÛcR¯ÒSYµ-YWTàþχàÝߺ`?W‘ºøëdUƺÜ-ë¸Ã §` íz;xmƒùß‘õÍЪÄÏ·Æ’»ÉÄ…¯ŸmHLÍ››ô¦D3úüÁ |®…—GÈCäþQtÊgéê\z ½À×ÉJì/¨P!¾ÿËG?†a»K¾Ùº“;W×V^Õs%шŒ ÀýʹÍa¶CY³©Yñ6ç°@>½¢ÛIçsÅREçCkÍ…³Ê®¹7é7uÆhÍáØ;uÁfJñ(hÉ‚¨`å¨î©­’Q1—;‹¹ëŽ¶'Ô¯ÒÛSN‹ŠõW+:‹…¶÷xdLØ‚ä™fnâ>MÃå¥æ–n5f:{Gvx‹Ù¾³}/f{öÛ³«Uý2Éïͼí!Ûïý‘êÖþ^(æ,¦îò³3˜Ô…ƒŠN!rØ(‡rÐh³3ˆJ¢Ñ–·AX»9T©•½Ù”¢w÷·;íhÒ;ô_Ê»ÐJÆ´É +ç`·UÞe‡.Ò¾ê*`sk6ŸV=½YÞôwèpEãY%ˆ&94ߨ1y…+ÕŽÖkJûú㙵êz}\y°*þ³MS9û2¶¸´¦è¤êùuƒÿŸ¢bÇp£hä­xõúqÒ‘tLꈥƂâlŽ±n° No±Py]¥×|£B³ü`Ì?ãѳÏ9¾Xs”+³R;³â+&©ÐRÄ"”ˆ¾„ÀáÜu©¬ü(Ç€Û&«ðÂJvÙ…é1ƽ©Ù‘ws÷ʼnKçÎ_9Ðó£òeúíù-ê6ÍØ#ÈS57æ/_.àìKØ’:[ vL{ŠÜÐ'yú”G(M«+(6ª™9ùVh¶Â.W`±0\Ì¢*Ø VÔý6^ZÑYh†*š™‰Ÿá®*üº¼ípJ­¨*\i¦ï+ìn€6W¥BuþÁ¢ŒGéÏMIÂUh’`òÇâÂip‡¨‹'¿XsŒ+µR»VÄ”‡ªÐjÄ ‰h"ëÇŸÏE\í²GhðÄ'ž×Þ©¾‰-y¡ÛÑmïÉ ò/¦d ¯/bw5 r»"†zCŸT‘ÿaºJ£šº¶°1æ†g5X®!·ë^q‡eEp ˆ[‘ +2Ø¢ˆ +" b˜¬Q|N„YphP’0„ HŠú¤ÂsÂ'ʳ.E—¾‡î°N\ëàc=×Ê¿“³÷þ¾óíoï;æÀ¼GŒªðb`ó·?W8fû‚g°£ú“ ËÝ +—žÇ($ÝL¸ùØ•Y§ðâ>,Äõ»a°éí„ï7sáùP…ü+" Ú Ñ$ø +æÁtl;{AŒÁ-e ððñ{€¢)Èw>šŽ¼‘·̆9àù;þ¯?+Ø™¾ ‡Ûöw†ó¦á§®'öüéÀYúáÓ–Föì…òÆva›¼iÛ9¦nsh•/½:&ïÇÖ¸•*ª¸PÔD¿ï¹M^ŽÆ%¥¨ïb‡ë”ÖàJ†+%Ó‡&ÆSaÇWúW8¨ùऊç[¨p®ÁRŒa’2¤%ã¢ÇƒO>S\œ—_Â’éݲ’>™>2Àß(ä9f~,~>€ïÿ€yb` XÁN åº ºO \$úóâ«fU,, ?&w°™g²,ÒÁ=÷["ËTüg~i&4î6¤à†Oø¡Ò‹ŽÈÛ»‘5&RE嵇šéw÷7L›¿"b*;™|—«·"=§Û°‘Ûp‘’\¼•ÞNôî¾WoÂ-ˆk`gi×kï [ëºÓÞ˜žUÁTèy¥Ò˜ò>ßx|yó{àˆÙ±.Þ_¸xÕj÷Õk*O‹ÁJ¬bžbÞqœMCHÕÛöl‚„àeNýËpŒ1 kÜ6—6¾ ÄFB˜û°‰±Îˆ±Íæ#Ÿ¥ß ®»o'ø3ÖÙ|ìà•D{k8´–‘©Pí j¬õ(Sýk}ëœdo¹¿C‘~/õIÒ+ô|pYG€‹]oX[Ú°pK‡ðV±×+n®s¯+:ß°›lHYÐi·6—fâp\¼ÜpmŽ;È–)–¹¹·¤eÝ­ã]bí$^»|sBðAÖ y¯´o¦u‚K ËíÉR?60d¹pÖšøn%y‘â#Ñö5©"Y¬«’šw6îhE\ˆu‰$`›Í‰‡ |ŽþGÓÃ\½“ÎùFRauvΫSê´Bã?•ü±ë#³SÖ3¥[y§j›Ž7Ð@#Ì棵ª™Aˆ+$ÍÁ†/{Zëj5A*òr`.Eš÷*s rQF\´/½.ö\ð),`Õö¬Ö(ì;õáO©€qΤY݇·­ m[r=œ'àÓ½AㆋWmc•p[d{ãoQnP&2-PK•«5êbæšßÌÝ4p:f¢Ñ,iFŸ‡x¢Ñ_¯2Ý‘1Êbeñq¡`(‹ê9õ&l×íTŽdóžÕ4â.yˆWZ^çk ZëY'ÙrO“SN£iS§âi2ý/w`»,UÇO°‚’O*®7ÁFÒlõŠ¦ÐU%¿>mmãbõpGÞ…,šÚïcûÛÌ­§®V=×H(k• —„Ö|‘MC)”ÙY iö•ÇbQG¾†Qðyç³ÁW#ƒËYu–jw–P—[IZðÓqêð«…k %¥:rðˆFص<'šð%NˆÜžºóØ\u¬‚ÉÖò²R·d.§=uÀ\V­¥îi~ñŽ‡Ÿ¦`è^uCµ«ç<ÆR™äŒcRZDáÿUù°ÿçÊ}û4L©–w$3õH2½ySVJ +› ”Š»l¡|A ëÁOo§Ë¡¡×êk•Rä€ò+ž’ÐËE—çÐnh´òE“žLñO¯6™O±ªš²líŒU¢Šê$&#—zéZæú—›¥ M¬^{ê8 +AÇ'{-*­ê…j©Œ‚Ýû÷0»Â‚iÄ[ýF±äÝß>hYQÅeªBÁß1¢5õøU8XGuFn/6,#Q©*9TÂtTµ™oѯj—x³¨Î|Dãkâ6'åf¤2)RIfªƒºðXCwq©9uö¬2’Ïñ˜±JE6)ÞÅO¹Siò´´ÒôêS¥•Õ5ŠJ)¦² ‰uCÌð•ÛÃWÖ#1u¾°CS«uh0ýõ©Ðú½ÈæÅGdŽxçv&mç–¬ Jò ,ꦤ8ž¬T^}º¤êDµ¢*LþX€ÚŽƒ ±²D¢ "Ì—! +âµHµxû‰áEØð{äiÙ +Ü×ôOÜþÑÃ1ú¡hû˜n¦%g¸»4ößÄ/È^;7f¢L]~HÃ\­°\¾I÷4„`nZp_^T†)k©05uЂÑ(3Â%>¬DœÓ¢¨¤LI2³[‘!ËLÁÃýš<ª)ˆ^»ñ‡í¬’ ÍùOxñ„J¬JŠy‘©ëŒd=«…(U—3×+ÛL·è×#/Rχ ü"±KÂâ#%x­' ù}ÿ¤Â£Ú«ßï±¥Ÿ°fSè34Êù Y/gÁ„÷àx‚ÀÝó5reàO<' x!Ç%žî3—þ Æýû*Œö´\aöP9#f3Ћ¢)#ü¬"".\KîÂýñ¶¾·Åo‘ã¢pqp¢Toþ3^¡ŠSÅ„ ñ”¦¨T­aÈßOÜ1›QhbÈ|4: ØtWÎb§Ñh„‚âO³}ì«·=µ…Ñ7þºPúà~1¥­5,¦g q(Méw‡±OÚ æVM ŽQäïÎËd–IÂVboY÷æ=8ýÖ?øàJd¶,~…P€²1×ÍøÈ.;ÑD™ªLUÂôhŒmôÑÕ‡Ùf~áþ}…ûéïÖÅ„ÉìÈê”v–cUëbp O<}ôœv#|kä6ÕPòóYFúÕ?®<¼«ó;Ë®<“Xm6ÿ/ÙeÛTðÌæÞ»¹šÝÍ\Ûpï ™*¨A 5ȃYcì£ôc#m×õnkËíÇØè2ÇD£ë¥ß]Û­Ûê´LfK`›#YÄ ˆ„DÆŒ ¢>œ;ÏL<·ìaƧ“óOþ¿srrÎÿ÷?٥”Ý`ÂY,ØÙr¡YùÊ‘CûU_©2°?˜R¦ZűVÍ^µ.03$4#è«™’ÇÙcñI|n·þg¸HÔªíd¸Ð„û åÄèÇŸسilÀeèTÖY³K,ølÍÀ­€%Èsî™^éE”ÝF}HžškQ•i€Wq«Çêá™ã=uõï)_n»ù b 0EÀ÷ÿ0,=X¸z).]ëGob—ðÁô`fFAV Í·Q~±Šêð#¨^ã°9ìŽþˆWÍmö-ºÜÎÑšG}÷š‡‡ÅM—‘Æc«UT:&%¿XLþ „‘Í# ¡9ß"²ù…#£QÕC¡w'âÖãoÀ„MÅïmBÔ9Ë_¶^Ûâtþë9|ºÎÕ,IþkGÁþÍ0F“•Å +Pâ·É¢Ò2»¡ Ø<~±Tx<4õÂ096F  IÏãðð!ØœX-¾ Ê­6³ÕˆÖ²MœNt'w9M¾ö”ø–Ì+÷¯©°ó½Ãg= +Ï gÀÍXjÚµÎdj·[Îøµ´p~Ú—I}»pñ—k¨CÜþ¦Q§#‡×y«¥×€Àg¦œç4,7hRCY±2[KeçÅÒ,¼>ŒcÁh0¼`…>—ÂàŸ:0‹>[—ƒ^ø+M€+S2)M‚± +½x CÀñÔI59c]äûyÀ—§¾_­\ÝWAÝ +u5øO(a™j'|–=ù(A=š™›L1‘`Üû¹rlÜí±á 6b;ékS6êífV«á«*,Ekå‘äøµC4pÒŒƒñ$AÝZ¿ó$÷%ÏG²qƒWX#'åp0‘$V’w~Ï¥y>ÂŒ¦1i?%¤jŠûY÷â]Õš$–§ï‚g2‰þ¾óÏöüê„ߨö6*ªí¦vV­éVíUt¯c„ÿuSÜ!±Ê3°i:t÷áD¨¿ßWÔ4oFšÖëœF«×ñ’¦!Ÿ ¨åG±ïÅGûú| u#ƨåÏ#eÓI‡¹“mmµW¿­èÙx4éDN¯ ‚pØ"ܲ +`{1TŠB·9Õ4o‘mÙœÝ”ß Þ-Ç+þ`â¦%? +endstream +endobj +1592 0 obj +<< +/Filter /FlateDecode +/Length 5280 +/Subtype /Type1C +>> +stream +H‰|VyTgïfèžA 9†F˜1Óºá H Pð$ ãEœd˜q@ŽÅ7¹’ƒˆî‚QEYEƒlŒ9P÷¹—·Á§ëºj¶zR˜·=£yoÿÚê}¿úªê«ã×õš$ìí’$=SÕ æ¥¦ø%•šô™Ú“! ΫµÞðO +ö‚‹X7Å~ü—Müê"¼á64ų͊šð |ˆéD )%=²2²2ôÆL“.ߤß]¨É4ÚP®.˲2r³KÙº|+˜g0–ÚÌø·"#Cü­2Ì&#üùàà`› ãcµ†õ:>­´ P—WÀ/Ê×LFƒ)³P§ äcssy[ˆÞ¤+ЙŠ¬ÊW•ðú^§/ÌÖ™øLñrƒ^ô7é´|¡)S«ËË4mä Ö›ÿYÿç)^ŸÏ‹±øô|½¥ŠÊ>3_$F1Ø^Ñ6çšôº‚À „´e¥F?‡×ê²±G$A8„³„p—J‚˜*#ü"Î…H“’»ì‰k“‰÷ˆˆ³Äñˆt$}ÉEänòW»x»fÉdI”äª=e¯¶ÿ–RQ[©6ê:ŒÖÐet7ýµt¶t‡ô–ìMÙDz ‡ÕeÝÏ&&]q$‹;Íuêr¦ÓÇ™PÆÀ ¸Ø¹x¹4¹‘NÐkmgˆFÓBk=¡1a Ê,ÈAp”@œe›•‚^Õ¨–aú z÷G«~¦ÓÆׂ7ÌWÀ‚s øóOªW0Åêâƒ2öÒA˜\ Ëe°<&«o«|èÀ/Ðã¿•Ë‚D—_ÐΓf(–©ÏKë&,ÌKLI9ИÏ‘¦JN—ÞU¼çÿ瑼þU'¸k“”eÛkª¶rÿ¢à#ÚÚŠxŽâ8ý %ÂËLvKmi¡jFEÄÆÅ)²øÅkg £À ûÈB,ø<ùXPÝF2ymIÎFU%½dð&(?;d>P»¿Z†1IlBÎõ›•ÜsCýnÕ‰}í‡Ï(o´-_ºH¿*ÝÖ¡E¬¦GÈôXkqƒ‹URlžø³ih.R¬u¿´ÏÜÛ ½Åi…À4Û'ƒ#å,ø=¹ “FÓúquRùí¡¶c—wÿŽþè9+íR«¿3“ÊÇæç®MR„ŽB¤êãlê†sçk¹óŸŸìmT –uëSk²³ÓUòÛ•‚–8¨Ñ¬Ïݘ½ƒ[Þ¤i=§8s´½Oe£öàaÉkzà +¿û¸ËÕÙ§ÔJu–.}¹•â8boS÷WgwZÕZµMÍtŠ4ˆipèšb÷ýÊo aËöa,shÔYÂ)|ŸÆõ/Ã)¡/@,Õ4{¦QòñϺö\ÜsZf¦÷hV6hºqš³u'P°L¤ðl¸‹c‹…|Âä/†ëØŠöŠ” ¸×ÒÕÃu··^¸¦xz%ºY%’YiíT\ÓùþaÕç«R? TƼýáü|YóÞ?šO(ovW¬\—3—[I#ißGË_Œ\3.˜Ÿ¼)aSiy Çîwa)¸“&:@ÅnÏ[±c§Ì½JxóáwàÜvû¶ãÜqp¦K›ÞQâ:œƒø{\N8¶Þûj_c+ÇÜÙ Ž‚Èa€v—XÓï¨iëDëÕ[ÜËçÇ€U€cÆßâûT=‹çDet\ÅÒ8±d’­ÛÛR×®„É÷b‘¯æpö[1¨ªU•ÕÔmã˜qg@¸Š“s³>!6,ÖŠ¸ Ü&Â^† qâ9&ÚÔÒL°8¥C¢qàkãaO1©CP®X!*D`šÚ .bÃ!êUà´¸³,‚'‹õèø}è·ve+Ñ-ìžHßGß‚üû/·•âÚ€¡šrîSâ&ñÀ «¹êYí¡×ß“-½>– .ʱ±–¦ósKL¤CÜá Ŷ¾Ô‹ûnØξ AÔcø[ÂEš7`=4ˆ{÷Gq{†¿Êùµ%\ÊìúMíg-ÅŒô•[‰ç(H q»0 +à4…Ki ÀÂ-e[6yWÂEô£¾<„³¯#z +‘àÍÂY  (?Ü6àÈ‹–-‹Â~GgYÉ»šž‡…›ß- )‰ò®¤·Ü--º³6{a½ÎJjº>ýh´îyý?¼ÍÿeºJ€¢8Ó¨»{ˆÒ¤hÇéJ7Q¹ §Þ€‚à‘ ˆŽ\*rˆ(3(‡3ÊŒ3°&"CåPQwâYbD×2Ñ*âµ®¦ò õ›ÚýË­­®©êéîÿÿ®÷^¿¦Ë<ªªæÝ#¥2O?²j_U>›”O;ä;ä{ ì½Ï™ÛB=ØšA¤ (øBûòÀs!_ß8¯Ý³ÕwØ‘Ãxb'lI(=-ßµÈu(a0êiÔ]b edé_3iö­,Œa`³ò‚GàeÿY,%ˆ”8‘MˆGsâá +rôN%–Däh'°É˜~9|kMÅçôËÏÓ×tu»Ëg]¶®8U®tæ åoÊÁ½×vv„WHò™ÞÊþ¾gòk)Q Bó†%GìyoŸÜì0,iŠÔ€%áïèÎÆʃ7Å,‚hv¾_Ù«M*ô±Ã×Vk½TÙ<¨zÈC௯€z¹öß.z6ÆTœ“Ÿj890p!5³FhKª¸ÖrotfBÚæIZ:­9½QÕ –2âKC0yFBÐH€}ØÊΟN•¶ I+¢Ë¶ï'¬ŒMÿ´+$›œ×—6ÐÄ@²ñkŠ,¤—‘™ª iÑé¸ëÞöŒÓÊ®¥0S†á öãdŠÔ1¬›úÏEJH{yçƒU8Âd˜Î¥“lö×h;:å°€&ä™å¾|Wj¬Pë@møûOù¥[vŠ9 Y¬'ô*Âɹ®ù}¾o{/V¶4ù4—^Fq]{`©4K—¥Íâ5ñÉ1|ìΊ–¾kC:‘U¡ÅóP9¤é•U?8#¿¿åÒa• ×uèÚÉÕ§º•=)"QÔB‚¢ìÓkãp…Fi‘¾ÐP(´5×·ñw›‚Š\—GT¨¿b[}›FÐþ¨+,’³d®ß 5`Ž#oWî¶q|%ÍÚ½#w+¿8¨ó…8¤»Ü3Ä·Öäd—‹Ü™c@QÜí’8ÅQ<ñw æd +™ñÎ Ü{/•Ôˆl +*—»Òh SÈ¡õàŒÍãF¤¤\Ë4¥„WñÄÜΙÌÑc>Äyx:H®÷Õv× Ìþ_ +xZÛ¨íí–û¬I-åº2uê<µ°9k[‚‚ˆ¼üχ§¯ÝîlŒ,õÙzu¶œuÓ5üáí»±0–Á7fF ¬G~çWŸƒEXw²`ùš|E\^:÷@ÑÑ‹‚ê=•‘Âûž¼¾_Ô}¶œè½Áß) Ü‚Öÿ$rÕÂÔn˜ QYý.ÜCH³1Z¼†q 7|œ¹PÙrñhYÞÃèÃ9úžCʱ¼âûÌ­1¢"j°Ç¸¶&™‡m·¿Š¨Z'—-·XØz÷μçnýBþ„¬|Ð, ©‡C“W®œ²}Á®ICƒo³d³¦t臭֭“-›C6£Úh>Us¸r ¿ û°ÏèaH—܇ܴû‰Gª¬½$ý61Ð¥}†±œ12s2ÆÎ^ê>7À{€–ºí§Ýf¶Æ2zƒ‡<¯t"­´â};<³CLêgo ˆ5bNœGé@ÂUΓ9Úæ±u´q&‡éD[Õ<û=a„äË4ÙþÃþÇ£_Ÿ]ÈÜ[*†rϸ¯ÝR+ +:±;U¤‚ú>åG>Œ¥ë)fìMX¤d'µ´"<Øëœ Î÷\ÓmÓ¶™2he…Èú¾ ­#lQNÄå/ˆË³©¡Q£þyßM±,÷Õ +ú()bp^CçRu¤Ê®uè\Z,9Gܺd]:Õ ‘SդƦ·hâ„3îXt\­£x1UÔ’O¾´^q«—‰‹¼F¼RxŠ>"Áˆ0‚<.cŸ)VÀ@E^Â)z·Ðj²­cLëuØ2¬ÿ•Qä‰{´1àžu­´ÇÖålW»Î:Û]Üi£ÑÔlk¶˜ÚÌg'ˆŠ™êŽ‡¯G—b ?}U@Á"Ä”—«ÉÙàÂN„:3â¸äü²\x:6ìc dxrÑ? 4oîAr(ù–*|\ë׳d{ö„å[ÈNZù¸Ÿé ÷s~¨w€ ‡ÛÛüxJÚkþÀwŒ-Ó·|xœ¯=b®¨TÛ7|ùq3à3Ÿ9©w ¹J+ôÓ‹c3¿Ì\l³G8Ea2&ç!# ² +U×^Ì.¨’ÁÁYuË¢âùód )Q“’Âêò7¬ˆß'Uïh*ã!Õ2¢[![5ÜJûçaìõv«aϨ—qŠÆÿ¼2 ]üÓQuE³ü Ò 襑¹›cŸwœ¸õ¿PM éÑCe}ŬæÀÉ£Þp´i¿NýÉÿFIbpyU2¡´ñ£Ú¡UZarAˆi¾h2 Ÿ’áÐ=a7x¤V¾©SžéOC^Æßþ \wžKü£úW€! õ +endstream +endobj +1593 0 obj +<< +/BaseFont /KUZWXD+Wingdings-Regular +/CIDSystemInfo 2125 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 2126 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1594 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7923) +/S /GoTo +>> +endobj +1595 0 obj +<< +/Filter /FlateDecode +/Length 2295 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜n0fHq»Û•‡"FñF@ePQ`Pä5À 003† òXy(Êk%¼D‘€¢£ ‚¥Ù5&ºd­µÜìº1›ªµÊ3ä’ªíÁÚªýµÕݧî¹çÞó}çôw/ŽÙÚ`8Ž/“ùï÷óX'ËQ)âCUÊüÇ%³†8 [ĶçÅòA•Î•¿aÂÞ~8ãl_¼³ÁñgPfð[“S²¸½½7zX­×‚ÝêÁmÜ°aÂõâü•ñr.,G%OSsAé JU†R—%O\Ïù?Î-¤Ps*¹Z®ÒX'ßâjN®ÈJ‘«¸8>˜¬à÷«ä‰\–*.Qž§:Æ)­‘ÿq“þ§Hçø\\DºÂê…eñ“j..=Ñ“Ï¢\@IPf§g©rõzÏÝaá9rn—(OÂ0œ°÷1ÌÃ>Ä1 +Öa˜+†­Å°M8æc»pLŠa{0L&ÀÂl°h “ð ÆdX(–Ážã6øü® k³Õ¦M`#8)xc›j;*Œ––È$nï‘©äWäOå·-¯oã¼u¹-(·µ”΅ΗP&(ä ÕBø84BÕ™¯"牘…1ø"Þ',Ôu„¬ž͈=<ÀK଎ûqèßWGNy«3\’ÝìD:HÂÍ/59p}’.‹ØGï‹•… dEÓ: -®àŒwÖT_Í­¡P°?ÚŒv"ßGÈB `Ü |öÀ´ŸEζ7ÛƒÑ +Ä)CŽD§Ý‡•Vv޻Ɉ¦Mš9F‹ƒü sÿ9­&Ì»I`é¸ÐHX—ðÉ–C P8L¯À¢v·?Áò ‰4ü;ï$DvЋÜH´º)ƒqð¶¦ëË+ ý‘ÒØx ²%­Ä—A,ù¼vÃ&Ø+°(çÜ¨Ï ¹Æt=²Ño<¾KfçtÔ-– 5? BaÕÛ7<6»ö[.<>_™Êœ&š¦îŽ‚äL«¡ÞР·Có®Ô¾ÌÑáR¶Ép¶²ši?ÛnºBO´D‰ÈŒ=ÊŠàppt +‚ ÂS•TqïDÉ œÀæâÄ·ìƒ;Ã/a…>ˆ~îw‡’ú˜Eo÷-9µŸ… ´”2Ö4;hÀžÊÐ2ä±y²7²_ä–O±"Ç7p‹Öš[05·…úm Ím!Eoù¦ +¶Ár>ëù5åÈÎtcs}Ùæm kµv #ò/eÿ¬y”;¡Œi²«$Gš¦ï?—p6ǸàC#_wOôžû“` Øï2;O¤Ji™Tj2Å3¢¾r Viº5 6C ZÒ;„±¯EïX|Q?d–€ ¡¯Ð×]ʼcL7"…MÝ£ÃôÌ…l-{šDÛËТýÈI"ŽñžòÿeÄ|áZ/SAˆ}kc…â& ȨSå§ô…LF¡2'“NÓÔw ˜³¢_t°á  $h—Œñ‚÷‚½â“ë(6WMóâ ï=1L¶/a7 댛Bötp”:IÉêÁ„¤ówñÉ}°þÁÐCUø‡é=Óy©—¾ß)eÅ抄ß'+¿ì*bʪÊjj$VØUȉG>¬°âvñmõ©ØlY4E¡*=Ù•SA#»ßy o‹<ÿ¹ˆñ{-c=Œ‘‡«’ +Á‹Ð÷è§&%–;¤ØÌÓÈ¥te_è ˜Ôbef2™Ôÿd¦ýîý¾ötEk(,/,’ˆ: +ÀiD†EüÑÞîà#°TÀ^ªâ\å¥N Ð`6¡ ?äŽH´ágð›üºªí“‹…Ÿ=Zr˜>Ðr­˜¯[DuU˜Ì#ôxÝA%+ú+’ʧüÙËZ÷®7¾šYËr‹Ž¿.>(Ôý™ñ­ûhäàî‚<Ѫë`±ùzC_'kÌ&>LÙÖÔÆ(³P=ô(ÿ!ýÝ“º[ãì½á†Ù0‘âÙgÆÁŠNÉP ¥+Ï+-`2ŠÕÙ©tdÚͯYñë§W{Z5)ÕŒ¡ÈpŠ/¥›4öø³Þ`:G‹Žo’ŽüÛÜ*,99*ºW>6~¥ïk.K¹F/l˜‹Ò.¬sé\’"ø?e\tVm€=ÿ-â…iæWâYè%Ï•×ýá,ÓPu¡­‡îoHg‘‰_t™¬5ÔWÖ2­ÕMtcJ‹êùùAœC¾_™š^”¯b2ó³µZ•ž0k¢:‚é­±Ñêö4!6M +Ñ:Âc<°G"zÉ3ø\uïÔ)æûzÃÊÝdá|e ÓT]ßÖK6§°¢K­(´ì)"½Ggæð÷™øFá´yþ7ã3Ÿ¦ļBÀB0j)§Ð'.«ÐäÄG¼2Xúþ.Yíú­g‹‘˜ºÛ" ü$ãPt˜züñLóÌ=VÄñÄ^ÂvöKmë9±á±q8Mž3Ôk˜þš+-#tÓy}i+®¤ØP‘_TžGÇ«>Ë´Öz±ø¥­'ŒñÆÃ;$¢ÐøšÀ€Ï®€Ÿ ³Ò^›üü! ¿yÅ–ý1éöÚn»ýMyµõ’æÆê®þ¡<]+Ó"á…cu!4¢¶í\Ö¸ +˜Ân$÷?Ñ.ÿ–ƒyy|‚e^KŸœoû÷&ûvø÷Ø÷DpØøä'NûÈû@@›Z©mq¥·yÀ¹³‘’ °÷‰}‰x`}£Æ÷!ñ÷%÷ s‹÷#÷c÷"£øK£øK÷#ûkª¨§¬¨­÷ +÷$öü2û"÷Uˆmltrmhûû-—ø€—÷&———£—ûf—Ì——øx—÷.———£—ûf—Ø—  b_ ‹ ÷ +÷H ÷ —š ÷¯ø’ v~5 +endstream +endobj +1596 0 obj +<< +/Filter /FlateDecode +/Length 8531 +/Length1 13969 +>> +stream +H‰œVkTT×þö}ÌÀ¨À +’;Œ€03 oQÆ;€ˆŠ¼D^ +‚€ +Ac|Õ“ššÔZëƒ$ƦիµÑZMC&1*©¦&mL›Ø¬ÕÚ®elÒ¬Ö*Ð=£vµvåOïæpÎÙçž}Ï·Ï÷3 ãð8D”ί°§†$礰ç—ª†6wÇå¾ß(ÓÖt+›ÖtÍì[×ܱ¬M0¾æô×¹ÿá²ÖÞfgqß>Àÿ40i§§ÉÝXÿÙœó@ü\Ž—éa‡ÿóúHîoâþdO[wÏÎÚz¹ˆcîmmop#¡%HR¹?ÐæîéîP0Îñ¡¬t·5­½¾„ßÏø{³;Ú»ºGȼ–Ì9ÞñŽÎ¦éä‰sÜ_Áý8AOAöí¡UÀð™{µô2šŽ*2<†m~÷~ÿv9 Ä­¯ Ÿa<ÁB¾"eŠoDùêPηh"î;¹|ïü÷â$ëô~þ†1cǃCBÇO ˜5)úÅcž?%!Ñbµ%Ù“SRÓÒ32³¦fçLË>#Ï‘®fäÎ*š]9¸Ë_{Ÿ®úìšÏ>v +Ø.Ý31†Y A†zf? ƒ±¬©"F#„™2†pDpf"…IˆÆ#ŒÓ„˜1±Ì×xLAa6$ÁŽd¤ iHG2‘…©ÈæuNC.¦cò˜£3¡Â‰| 7¡³QŒ9˜‹y(Á|”¢ å¨@%  + Q j°‹±µXŠ:¸Q4¢«Ð‰.> 6b6c ¶â؆oâ[èÇv<Á;òmìà=ývâi<ƒïb¾‡Ýø>öàØ‹}ØÀ³xÏã ^À!ü/âGø1^ÂaüGpŽá8~Šø^ÆIœÂÏq¿ÀœÅ+ø%^Å ^ÃëxoâÞÂÛxçñ..à".aïáW¸Œ+x¿ÆU|€ñüñ‰õ1~‡ßã|Šëø +Ãç¸I14‰µcÚ°ž¬ÏØš™÷·ð%¾À +ôÑc´žíqÚ@[im¤-$HÄ-¢*ZL i US-¹h)ÕPÍe6Îc6—P%ͧTJd qäGäOMÌÔffú2ªgÆ60ãÉDQd¦hŠ P +£`j§åÔA+hµR'µQ­¤é4•fP6åQ9hͤ\²1÷-G³H¥"rÒlʧb* 9THéd§,J¥ J¦LJA/ez­«ÑÄõ¬Å2®[°=÷Ç<Ìχ­•ý+ñnböP?mÄ©—ºi;mŸèQZMOÐfÜ >ZCOrv¶Ð:Zë³-ø3çìõü‡mÅ_|ïû\X :VE3µ­Ãg†G?àÓð8(o–ËCò¢^Áxÿ.ò^Ÿb–aö<ÇŒÚË\ÛÁÜÛÎ<ÜÆœÜÌüÜ€õècÌkkó¶ww9£kf×3§k™ß5Ìõ*æ}9k „õPÌÚ(d¨¬šé¬ ,VT«ËΊ‹gšü Ò-—oÊ»ä`é®”/©’Ÿ¤“ âMqH|G÷ˆ[Åõâj±KLíb‚0"|* +…ýÂa±P#”ª0MÈì‚YÐ ½Kƒtöó­³›vÑfWÕùp~Ä ö"}9†ùŠµp‚uáÅ}˜õò"£?Èø÷²¶v³ÎžfÕ=œ…{x€ß‹Ú‹¹Ü‡¶ˆqzñÙarLl + 7vŒÁßO¯“%Q X³2œJ}¿Ym®²Y'ÎÊ –ê°l—¯ÊõUš!Ñ¥‘3è!—Íjá?MH´Yïý£z fõ‰±ªR¨xÜš˵¢IN³[i<æpôWV›ø9S”«´ÚÛb•B¦-pk(«6Ej²sª+ÒÝ誨6ÛÍ·#íæümË×Gw7~í›r¬šwã&çÝö¹ŒÁaÙ6ë Ãæ›Ù©xÙ_ ‰NwK]~j³(šhV“ ;×8ÍÎ~3h’Y ×Æx±r´ð‚ÍáV|ëÖfFrÛÛÔ +#µ"—K“Í*‡ ³Ú¢ fU›n³*ž|›õ4_ òè«*/â¸Q†·V”c‚دš5r«…œ0Geµæ¨sy¿g³òÓèäå¦ÀfM²Yß´Yó´ÐDïï ™¬GŒ#²LÐA'•ñ¤¤³"Õt‚ hI%Ùd4ã¹_W¦»ªŒ;0I¯ÜQ9}#E‚Gâ+ÌDþÁÏp2òdK^R2éã ”‘>‘²Ât$xâv]llº°+®sGîH—å1>¹–¾q’OÈ„¾ŒÞ‘ÏF.>‘UŽlçÈFodøè‰#9rÈýÈ!ñ0¦(>+Z*ètž8šž»£3®ýp÷Ôì•GGŠ,T+”¥4ŠêÍXtõÖè¿ø®Ø&î3~ßÿöÙG;¾ØŽc;öù‘—íø;!/ T¡¤¢…caEÒf¶0h¡B¡¯–Âx– ZZi•J´G‹ +ëº U­*UbB*lbU VÕN¶t'ëþú~¯ïû<| õðß÷ðl{j> &±·ä$ÕÕ +õ¯÷R年ŸÅ•¿BøŠÌæÔ#ú¬ÅKÍNq˜Ùy-ðù9(½8E‰Ýàâi¬Ê[D\¼hÉ¢hK²Ó#F&›¿¬%^e1c‘°HNRĽ\l( èŒÆ8QoÅg;´¿óŠ«n}¢ûy‹¹R•¥îÿjãÉ5eå]kR{zÀ|dœa~v´«««ü~Ø|ã»õUšJ:VÔlo™³a yñ¡Ÿ§¶(9®Êj­"„MQQüÝ‹{•‹ªOÆU¸¨q<p))g3èjõ¼ +8Í¢çEFpåëÕ„Õ±8Á%ÀÞ8¦¤Ì,xÒö,ñ¥ »ÞÁ˜è–D½l ú "«"¾Gâ¿2ÚÃ&ÍÁùÉc¦`YÇ¢ßF=Cõ/†üF&Õ›ýôÕ˜jÅ㿧îrø£µ‰\š‹ã IœcôÕsÁBn>Ž ‚ô„¬ƒ•$ ³¡H´1œ§6c +^à¡ØÉ«á`^1°Ù0âd³9’æ?@%Ð!‰„uTÌ fÑŠ*z†~Ù, +d?Ý »ÝðpÓë× ævÓŽ[–jJæ-X\²«=ÐÐná‚‘üìmûw¿TÞWÔzôF÷—¸PQ)ÛÙ{拽Ž +¯±|ÝþÖ®k;ÉU{WŸüǧ#m¯­3áºÃ¶³põ%="EÌÀëÀ\©A‚ ÀÏðF¡Ãö2PÀcRŠ3Æ)s)8Fr8Ýrí±¨#càD õ¸‘gD`%XxŒm¯Xœú®ójêö—[wönÿ¥“mžäòÅ;ö}q¸iÕÛ“‡6~ÓxamhÎÚ`¿öØ ¿=™ø>žmp†ÏÿmøúÃiE‘]ˆó4«y¢àÅ|!O0 +1 +dtz¤t{I$Ð? ÕrÑßH»\r,AhnD†¥ÇDzÞÏÑÖ­>>´ïäê:mŽ|bdè¸|Ïì\¿Ý’rø¡ó-ÛéÃ?xÎÔü‰õD©yÉ* +">Þ†\IØøR\xë|EZ\žfJ-±±tø!gbKŸ”Ì‘ò'äÿŸš3¦É$ ÷C®¬ºJrü…(Îmo;k*~¾§ùà/ç-x§#^¥O4>=°ðâñ¬ôýg?Æõ‚ÅÊ¢40Ä>¿¯eù½ÕÂ|±yÏ’ñC”l¢¬£ê’•&0bgHØ 0!‰šgšEˆWÚY& | x "CΤÈÍVÓ Ä†ì'þúI„ÑŒá䣀\ƒ8m7ŠßX0–nÈðcÄ9¼ÛÓÒxØ×Ü\<Þ|÷ýoÞ‚O¥6gYÍfóh}bj@¬4 ½U›Ž´.ýI¶[2^¤ÍxeÇø-ûãS~Eœ¤/Ól3<²UÛLJý±îuýaä$0u‡á°7D©x2lÓ­”ø(+ƒÁÄIF0oZ Ç>8¦÷k³šé1ÁOô–¹¹'Óå¾`£&w·¡† ™Ê­Cî„Uî%ôhµÀD +{jçíku>µ­óþƒË©¯Ç×\¯á¹j­âÖ Ïžéz÷ʱÚ^ÿçKϬ°0‘-¥þ“±v`e´¥ªX0Žž>ý`‹ß­s0Ù¹`ÿªWzõº–½ýem™û0¢s¡¯'Pq?J‰`&,*ÜÈ7/jQ :7:`O-²˜ž08b\(§==2±ì "°#„v@§,?Ñ)S¥­LrÊÀ… ( +\¼Ð$”´Ã›º¡Ôéj;N î—C©û–^Ý·Øâ9Õr¬•ÆëÕ÷N¹­‹û&m³þON+•ž;÷èßÑR¥øï¨)Yãó +j܆˜¯¦L£b”˜Œ$Vê浨“ÃJòx‘ñy8c}9š¹¬ "CE¨W|F/,&;nc‘ôB3€¦ÍSpRzUŠ‚Vî™òŒ•“…Onöÿjn…ž³äE»{ú^‰+8o³#ìpHRØ©Nº‡q’׶†¼Å%­5)rõhó”sY»jê›/I –äÓÌ´1/½­}¹·{wuê>d™|úžŠð‚"_YE¦¾žº‡«ÌmÊA©ÆdIćÇæ‡ÝÕc½…p Ô8¾ê=°V°„\ˆ­€’ælVýVŒÏ@ŽÒ^xPý¾¸X£”ÜØø)#pVgî\f Š$¢ÔÓÑTØ=oŒœß¨½òséO©ûÁ¾W{K׬ +æsÏœJ$¿u5”´ÆÆéÉk5lßù Ÿ¾[iµm85Ï ä³Ëƒã™HŽ¹*-È·Rì×™ÏÑëÅ*ª¡@á.Ñ2h&.ðr´:ÄóJQ`7pF¯CpPh%Hf¹ +XëæN 0*¥.ˆÖêQºB8‰øWš%’âÈuKÍr1a6Åg•õEž.Å¢§#}1 ?=­÷ìñÐôÒÕ7¿{…¾øÙù6~}öÀßJïÐÍ~¤Ãw„¨:jµØÀÒ¤º ›x(¡Ú­C4¬P^"ŸL‚ÜJ£šwf³š‹Ã‰\3aܱ‘€’ðTKYŸ¤A1, ]És±Ÿ£u‹fÈypTɲ×ÀðvÕ¡Ñw¾Pþ¯è†×V«Õ±¾ÐˆG&oLÍ_©8ÖÛqlÍÛ3M£Muê´‚Í ðáëÑ‘žï›-<팦&{ó╯¤ÅøÖ÷ÇÞü(Ô\h˜óŸŠ‹!ŒYDÉÒ´Ù’#³ØCœœÑÀ«y`çƒ/39!ùÌš“÷#¼‹˜•n©u/&×ûsv©WŒn &ìz` i;¯^±­ecíCãzȬ»üÅæïú¦úRoÍWbÆÃj°Ý9q‚Rj™/Ìשñ¼e0Ðì &¬vA`D¿ g¡NM«œ\þ ýsAL€"œ†%áÌQ2,•Z€L2¡„ä*.Õp¥[Æ¿4§O4몹0%T¦,¢ç@ƒ•”¨$©ËG:çÞwï}çœ{î½ï¸BQÏ…òy?ÁéZX¬c[Ü”ÇðîßrqÛ’‘03 K}ó„(´i‹b3«D ÛUwE‡½º¦¨£Òpåèä‰ñˆIÛö=ý­£ZRåž½çÚ¿—l<9ÜÍõjûzzæg¢/¹„–^ÊÎü¹˜æñÇhu—ÔÈ•²[.”ÍÈzÑír–Û­ÃÑZ$ÖúƒúÔÕs|ðpu\€ «×;æÉVle—žð¾ìZIxãs{CÞPæ'y»KÚ’£µÞ É!Ë£WOM°»u ¼|—²0ÿÇôJàºKˆ•{81Æ‹"…ÚÒ@zá÷‡—…ÃÂFe§j¹4‚¹i¢¦V_¬\'Xƒrì“«Œ.£Mñ—÷#Í&YÇ“Üm÷Á‡ælZZðl Áä¨u«ÉpM0óp)a‹“ìo]"|W*`ö¯$lÏ›“mñ!wÅÉxسß{ÕYÞPv,ó™«©à׿«j¬mì«}j,ÙU[m˜/ôsã|[`$}û½(WV]ö•MŸ¾v<ó˯~óµ^þN|¢:ãåßKn¾tì±9ÒïWœ†ßå¾0O1jlÝ[VJë~ëódÜ{äh8Ôàõ”•îväëuå÷™™ãMÙŽ?U_µÝ_N¹ +DC¨zšÇï°}j‹øG¦žpësåîãñXÕáÆÌ@ÕásGö…‚¥¶¸5z$â +x’÷‹<•‰ÑïH"qÈúŠÿ-¾Çe©7løòÒåÔÁ#ÃÍ®›§øõÓíƒïò%‘½›¾†*÷ffÇÕ?4áma¼ØBzÎÁ½n¾ ×=G¼Z¶¬7+Û›ÅÌËF»»ÌY"q¤No…Ã>õ0Ų3rîädóV]©6Ø ¸HÔ]ãÉÙmPר0“žàl—~¬¯jÖ9&3Ÿ¶OFœßŠ˜¾s€ëOD3¿œÍ&)øÃÙÑã•gŸ.¦îÙ\ÓõoÇÔåæìàží±V\ão JäÙÒ/\ç>ÑÍ㬷µš8½éO:n—:uد` +[ùÒRŸëzþÞ1÷îánƒýÁŸd¯\šb#(”}$%çø Ê}V§Ów >£ª„S^ë¡»—ž%2Ö¬Ngf >¥6ëá~*eUñŒÝâ¿ 3"‘4K‹””bÔËÍÑ?Gã .8)..Ó)´w£ì¼‚òÚ7qà. ‚R}l<àEûWY_ô¹ÈÆÏ +רW÷w +â[.ñ!…+¿$?t¿xz)˜%?¿æÖྠ¼Ó_'·t‹D_H¾{í!âtSI?Â\ ~à,¸ :ñþeeŽYü‘›Ì_6¶Ô…¼º§æºboLY{Šdv*ñbíÚ•¼Úîß1Ïõucœ\vðu§ø«qÚˆ×_ØÚÉ?ƶøh~å¢Ä-mmoaGû¯\¾ôw¿düþWq&J‰R  g Ï‚ ß…¼ù(3¥ÖgZPþhÃùñäÈEH¼K݆~[ÕW—Ñ~úd;ÊïC’ +ë¯ÈT¹º¢1­ÉEU¦ÞÉaQ•«¹°öï 6ëOûc0³qTªßïªð Á¦ññÆã£{måüüŸ£¿©b@\“ØZÏ.`ª°;ï·Dæ7‰òÏáxû Qá"Ëp&²õÙ»ÁÇDE+*Åø~É(¶x3ø+ÑnÌmé´ÊØåLþ—¹ñ„'<á ÿ×pìEß&½v}2áæU„ºjz ?ïì2ÑÔ–;—ª ”¿¡‹Ðó5]‚V¦élL?Zr¢Q)¯ëZ¬ë<™©CÓÔÕtúˆ¦KФélÌŸµwuôuô%‡/œ~áÅ]Ä¡Ú…OôQ'$%i†Á:M/Ћxw’ž§‹JݹÓö?y+¨Ñ[{h‡§uåЮ¦’ú¼"±iª ¯nJœ~ý¾85Õ•¤k‹ÂËNŸï Aƒ±^ +endstream +endobj +1597 0 obj +<< +/Filter /FlateDecode +/Length 3779 +/Subtype /Type1C +>> +stream +H‰|•yTGÀ»ºfhäh¦Ét»]ÂEQðÀ 9”€È ‚Çpªˆx¡rLv/1ƒÑ`@ÇŠñ +Td•ÕU#J–]²AÝ$¾è¾¯g w·’÷ò×¾z¯^}ßWßÑ_ýªš¦lm(š¦Ý#¢µQÚŸèM†ÌTÖ홽AgµˆOKn¶’§‡§`£§íпs¸ê?;ßôëêBÙÐtÿ÷³³sˆçÚŒ|ñÝ©Sƒ|­³fdžâ+ŽÌ1B—½F/ÆlÊË×oÌd¥er² ©ùz¿±aƒ8"O4èóô†B«r´13OÔgægè b*1®Í$þ½NÌ7¤êôS ëÅl«å7búÿI%ff‰$–¸"+Ó*Åäež˜š¥ Q²G²¤edå2õyþóbb7åèÅPQ§O§(š ÊŽ¦ÆR” E¹QOQ¿CÔ;ågKM–Q¡6T¤‚Š¶¥bdTEæRÑ”–ÚA¡îP¯èdº–þÑf½M‡Œ“Í–eÊnÉeÿ±ÕÙ¶06ÌJ暀æ R„åËäÕ +E±¢Û.Üî»'còÇtŽÁöÎöûí¿sðu0;¼pŒr4:>ecÄÊKÒ?/ÑdžpIVi+íµh‡÷"0âk‡BXÄ—9° +ÃȇQòÈÂ1‘‘ÔÉYWØ*±ÃÞ,VX.ÐÝ`/ƒHK·b†++pœ¯èÆWÂÕÿB1CÉàsTuTW¿Wz€§Õeù·‹¯Ï¨ªå®/¿®o»rG5~ SfätêlØ>é:~™¿Ù˜¥‹]XœP!h1݃\‡þr3kÑÊ4ýôèè“59‹*ƒE Â"úDÉ@€[Ü•ÏÚ:…/+2Zâø¸týŠø]§€ûlGÔW*2Z­j]܈š½h.„@pPe‘ËQ »>”4ÁuâBÖ[Bœ„ðš7! ¡ ÁÔâÚÁ‹q:Øvà‹íŠjt íPâ¡´3ØKÉîÝ Ä’O™K/øè~ø-и¾î5råM]åxP Ôµ]Î4Õ_¸¡zºüZ¸YMš õÕ7wu«ndžK:¡>µrù~~æ´Ý;Óð™ÈU>V}š¿Ó–“¸z]˜ˆ0mÛ‰\_÷Ýȉš³$w^î¦Êêݶ\¤¥àB7ƒF&5ƒšÛ¶1aû{<ö ûxxçÙ}p¼Ò±­´AhG¦&g©i:WãPì†7ãXpÀoÃÖ?©©ØÁ]`/ÅÝ ~Ð!2kù­]åý<(ª¿~W¸õåùAàT`ŸòÍÜNõÅ…¡Ç±Y¾#F ŸLsÆÃuÆ&Æ D`±BÀÁïÎÄê*uqa¥±T`#+Á40–œœ³5…LZ+ùq¸ŠÈ&pÖ¼ ‘"ÁJöT!6ŒœÒÇd³ÿ/›{ÝIQC9ŒÅåDyˆx"öÁ.p" ·‡£€vB¨ÅNrçðûØþvoËÞ“ÁcgÍeâ‹{àúÕ¹Ò--B#°ŒiÝü£ç’Ô çW¿ošÜ³L±´gp8ñƒƒu¦ó„¶þ¢Ñ",!Ü›ð³„ÈYŸJp“:~Ñ»KSÁ ›¥ì‡XØi.”A ¿°”È,*wðFéV¦V¡Ù8¿`V~Pñ ½¨¤¿ðqá£P Ä)hµ•µñèìÿÃcã«÷ÿáQL“ûÔM¿‡k”`Àt²¿þ…ù‰‡y½ÓÔì7¿–%Bˆ2Xã)r°Ù÷|Ï ÚXuzúYMûl˜€3 ±„×&M4RïEûÒ§ÝÅ"T*ñ¼7!¤b›2p”V‚#éa0ôC° þk‰àð*ÌaœL8±Ã>‰ "#–`pš°;r¯¯yaGK±mPv¯¤´(qZnµUmÝ2­,’ØÊno}Zòu4(ñä3ìG±4IdÒ3wœ?Àr`p$ñuÚ¬+ݸeµÇ>´¥µätÑŸ´à¤Ä³hñŸ1‰º€5Ÿ?Ú\ÓFnÀ1)ãDÒ Ì*Ù=£QÁ@!q‡&9¤·þÇsõEq_ñPÙ]¨pfX0·“]$"°MšL4R ¦(‚JEs¢HEл3ÇÁ-\Ľ܆¨w,ˆòÛ䇇6ˆ ‘¨$2)µi&MBRDZ1í[çë}‡“ÎÍÎì¼Ý{ï}?ï}>ï-EÞ¦××LÛ,9¥ôú~¿õ‚Ñ›¯…a8È{¶ˆ"Œæ-ÛWÁòãçOB: ÁR¶T- +=쑆t°’&ã_äõøwKÌy|{ÕØù—“ÃÜ—u»÷ v†$8 ½ž°:Ö»blõ£ÃM=üG4[êʤXï!HÒV8*¤J¾@,(ÞÅåíoèû´ážCÐTà8\nTY¤ÀnSÈ8D!w~ÖÂúPÖ{ôÌ çGŒ£øƒÿ7(@¤ówI ·fK‘a¯ A'ÖuäKiR>±Ð¥u;]²‹ïw_<ÛË}q.õmõ.ß¹5Y¿çl¯ÈKÇ.·NCbEÔBbÉ» –TcàEmÅ}är ©Cß +÷×Fïq—<öÊSÛÝ +ÅN*ùúc;9’AÉbóxÄ߸êV<‚ƆªoTçC€ï]Hƒ-…à±O3µä”Äœ;˜Õ”Ê‘ÀW¢ÈṄDÍ,…€›cí#gy³?¶šŽ–º¤#:uœÁ3Ù´¬·Ìa;bãwTì)Ôs벯ý}ú§“C]yÙ.ÁYé´Uê4o‰@Í<¼’èKņŽw9ôj8‰# ¿Ž€àëC-½‚œOÇ¥ç¬Þø§†S|!a¨âþ;eÜÝ©ºÁO„oÃô:8Í°÷§ä^ù,ObI«¶Ìa©²ñ¹bÁþnmîè”À>üçÀðH_GÑÎ^®tŠ¢Ncœ=à<¬”Ÿ¯Ý~‹LÅ›Ët³¶ÚÍ{jÚN_âF›õkÒŒöÂnGîÛk/?È—”™,cÀlãÑò5ú²šîAtÈ(*IžlòBU+VЊ»Û_ŸnÔfæÿYï ŽÎ¼+Üpç¹>¡ßQЕÉiÈ?ª™³9ÌÆšéó( ª46–B8^øc½øÆRš½ÅY÷±Â·¹ZÎôpWš )ñà+=Œ"×W×ðî¶Öóœ·%;Q hïe`Iâ­èÜÂJKÀzÐt¨åèªqkç:îõÛ ŒÂšõÚoQd>-ï3ÖÿÛs6"<ì€/?ûàn¤yÇ:´ú cà•U·ÂßÜšU`±ÉØoS$쇅6\ù†àlÓ8dwÜRhIÜâ%ØŸñð«h\…_ö¶pxøO$§å ÚÉö„?,ß•––¼çæWw=_N¡RwŒŠ:Ñsm¿HE {œdjñ¾J¦ó›KÆ8 F}IXzˆ]6³ qSQF./!xö;³I½'§¯ÕAÔ6l?—Ó-çÜ;/swΧ­ø}NúguB\Žu„c”ÀÂçñØîÙFqÒ¨NEvóCî‹g®s'k%©F€ÅŒl³hå²R ‹…*ší>ü-E^¢eƒœµ]%ˆÿk?û À’Ïp÷êjÕšºG­,¸{û;Áq7g(¦3 µÉ¬´èÚšNt÷õYÊ›yÏÏÔ‰Â-µ9¼")VplèIœ0j>Q^¬+6[¶¿·¡ñä>ü"±‹¸Öƒ¿ßˆ˜ó@ý^»0™øF²˜¤º¬ö½|qkïû^îò…7 +`(ÉV*™¹íVϘï ^þÄ0šÌ‹õ5tÈÎÒ8¤¾Ym@žâ®Æ~¦ÜQ^UÁ—ˆ%{ Üæ—¿ žD“K Y6•òè›Áá3 >É7K¢ Œ–z¥k: Dáú‡rø*mÍS#Û]ƒaÑ3+‹i/¬B]­t¸Æ}Ÿ +©.½²m¬ +Ãg©Z)AÈfÛ&1ݾ ç–x½l¤l$2ÂHA¶—o³n}*¯‹ŸˆWs +LS®¨V"EiUh²[™T4™ˆ™5 iZ 䛲õAÍÿ_CÔÜ»kƒ‚àö|õ‰ö ŒÓ·® +endstream +endobj +1598 0 obj +<< +/Filter /FlateDecode +/Length 2954 +/Subtype /Type1C +>> +stream +H‰|T{TgŸ!Ì$º”q3=3±è¢.U\´[éŠX@ JEž" ‹F‘&W+Ó”j­õã»ìäª4¹R¥Ù¤TËã„àF•€W+r:N¡Ü§þ\žlüÊMø?RrU’\à’‡%©¬Þjð1M—¤˜'°$©Ä'§'iÔ*eÚÜy~«×d¤(åÞr…2ÃpáÁ$6˜½c0ÌÃb˜7†ùJ°@[-Æ‹l0W¡½X‚i°£X?ÆãvølÜÏÀïàomâmn‹VŠJD£¶!¶"\QIÜ"ž‘Jò$ùF/>&F’¥’bIÏ„y¶MœÈM<4ñY[Iÿ¢ ìŒ.Q‰-_l )&Áˆ.ÒèC(#à)‰äè< Vg¤TY…}fGPãG@,ú+²§ÿ£XàlÍËŠrð„Ò6ü+(}f: +ÛÄÒüGø…ѳ|º¾²î𑬚´´Ì­©\ÚÎ*íaF*·,Óáù¼Ht2ž†›A¢£*B@ÁÉw@µ²V@êƺÃ̈Äöñ™ê´p¹Ú›ñAü¹S4èd‚ËÃäâ¶ØÚ9Õ‹*Böê$]dÎÑÜ.ÍpÖ-ÕÙ°*‰A|ûè…‹e¦Œö¤cl£bMúEáΤ¢wW5ìé`Þ|7cÁŠPNNJKë´i ÊN¡ÏN)¤´ŒdÅC2)…•\áÏö”è+,mT#:ÉO#¨¾/«¯î»"1{+ýÌz5âìÜABŒe‘µ\шƒz¡Ö7ÛwZ1YpMsO;èÊÛ;G[“R=Ò|ò…@îÝ€æÁl~’s$ ËGÒ¢ü–mZØÛs[›» ÈDeóNN_4ê››d,JýqëÃò’Ö³›ˆú†3ûÚ w}é)Ë£µ†ÙþH$£Ìí+~ì?ºñk$©ìR?"æÒ”¹P_P\ÀFeÆDø0ë¢OôØÊábNú̪ʇ7C²ÎqÀ?tRÙ`çD™éßÔ“ØÏ ~þ3½~Bö‹B”AŸszø.jä¹À¿Q§W±g¡®2–÷³wýÍ|üÒldÃQf49ÐÙ|Ôùw-«ß¯ß¿O&Í+hå½ZñÖNïr‘ÎOMÈú”A¢%ƒÂ W_}¾1;÷0WÕL”o¬ +aÐ ä†f>q®¯«v_'úUÆ­pÇD™yOKºõâÖôµ§½4q–+òÜÅ!—‡³`âÃóùzÖ dkœOœ&õ ú¶S2þ¹8j¤œÎÖçç²”ÙGãÇ 2ì%`0ùêãáÛÝaUœ1ב+“-h…ÍM°´o5Á7]"~èiCYIY¹¬o ÌBîhÒkþ +.ÌQ£I4 ÜTYc8°ç{©¶Ç|ùgÃO5šà´üý¡˜„Í™)lR¦&5'E¢‡¾(RŠ F’»ŽWûƒLÔS˜âÄk¢F4bê§ÃW:=S—ž^±õ`}EÍÁCÙ5NºéÀhÕÁa¢F#LEšÏA8ÚC\$Q*4ÀgI„’h)òËÎÒ¥çeOÓ b;…»1²µDú0:VFþØm(·¾SÞ£¬µ˜ÉJcÕžr¶»ºëÜ·L[ PËyôŠ«vW +%ž­îœ!Êÿ4 4±¼oÄy’øý>®-†µ;¬íML©˜ãÀU‡Ù€#È›Îq—º£kî “©³J1ºÓJxÜ‚[d+ZKË·3_ÕÞzÃP%Œpçëú¹ÇÓ'ªl ¿mÄ&pOÌ×’mSµi”Wɧ¼ˆv/òØ8J+Ã!/`T̪·í=bBëfOŠ§.hôwÌ(+Ï!7 -äS±šüE:ù9ð#S Lû&{g©ßÓWÔý 4ân@Ürü;8hÕ‰®*t6ö³â9aö¦«ð/áPë‡KÕª×ý}$e»´ Ѥ9}“=JNfP-³:`ô`Sø#@†¢þaßèÚN_(È¢n«I{¸F—N‚b žNvOžˆ²þpÏ_ÌаÓéãüq¬Ûúso-£ßokhäLFq÷.msº„ŒÕ†Ò}ɨ¯p„ n?¾7Ÿ<%ŠAöÿCúØS"Ä“±`Y|ð—c>öÝ:yáÂk6ôè™]›¥Ž3[t[µ-K“8$…—À·’$…%ÖH%… ¬K‡V ÐIÃÕ«5«W%VÊ«À÷Ÿ)UYï*}Õ +endstream +endobj +1599 0 obj +[2127 0 R] +endobj +1600 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1601 0 obj +<< +/Filter /FlateDecode +/Length 341 +>> +stream +H‰\’ÛjÃ0 †ïý¾l/JŽµ)„@I[ÈÅ,Û¤¶ÒÇ8éEÞ~RT:˜!ñg,ýú‘Uõ©vý,£÷0šfÙõΘÆ{0 ¯pëHRi{3?Nëß ­&7Ë4ÃP»nE!£¼œæ°ÈÍÑŽWØŠè-X½»ÉÍWÕleÔܽÿÜ,cY–ÒB‡B/­mÑš¶«-Þ÷ó²Ãœ¿ˆÏŃL×sÂfÌhaò­Ðºˆ"ÆUÊâ‚«àì¿û4ç´kg¾Û Š”‚ã7䊹">3Ÿ‘3ŽÉ(&K˜âœ9GΙó•Ìä}º2nÈs†¬XG‘ŽâE1Šué¨=óžX3kbÖW¤¯Ø³"ÏêÄ|"fÿŠü« 36¤Ð\KS-Í~4ùÑ\WS]}d>® |tŠZ‰—Ï9™{8¢õY¬³¡©ôž/Ç^b}âW€Ÿ¯¥s +endstream +endobj +1602 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1603 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 2128 0 R +/FontName /YJLUNW+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +1604 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1605 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/space/zero/one/two/six/J/e/n/u) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 2129 0 R +/FontName /XKBOZY+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1606 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M)H`Ùn!‡~д`t’ +cyûŽºl¡‚ÎoœùëŒòsûÔZ€¿ûYu`0V{\æÕ+„GcYY6*\½´ªI:ÆIÜmKÀ©µÃÌ„þAÁ%ø v'=÷¸güÍkôÆŽ°û:w{àÝêÜNhÐ4 q ƒ^¤{•O²C«)nÂv Í_Æçæªä—¹5k\œT襑‰‚Fâ™FÃÐêñǬêõ-=UÌ- +2L3—™ËÈUæ*r¹&¾;%&ÃD}Ÿ˜ ñ%ó…ø!µ\oUÑãÁ­eµzOݦNmÆÅÛ'¸Ù©âd¿ “?à +endstream +endobj +1607 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7921) +/S /GoTo +>> +endobj +1608 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7919) +/S /GoTo +>> +endobj +1609 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7917) +/S /GoTo +>> +endobj +1610 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7915) +/S /GoTo +>> +endobj +1611 0 obj +<< +/D (BICC_UN_DDR-Module _4.10_final.indd:7913) +/S /GoTo +>> +endobj +1612 0 obj +[2130 0 R] +endobj +1613 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1614 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 2131 0 R +/FontName /MZMROK+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1615 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +1617 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 2132 0 R +/FontName /YEJLAM+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +1618 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +1620 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +1622 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1623 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/J/e/n/one/six/space/two/u/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 2135 0 R +/FontName /UVMSWU+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1624 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M)H`Ùn!‡~д`t’ +cyûŽºl¡‚ÎoœùëŒòsûÔZ€¿ûYu`0V{\æÕ+„GcYY6*\½´ªI:ÆIÜmKÀ©µÃÌ„þAÁ%ø v'=÷¸güÍkôÆŽ°û:w{àÝêÜNhÐ4 q ƒ^¤{•O²C«)nÂv Í_Æçæªä—¹5k\œT襑‰‚Fâ™FÃÐêñǬêõ-=UÌ- +2L3—™ËÈUæ*r¹&¾;%&ÃD}Ÿ˜ ñ%ó…ø!µ\oUÑãÁ­eµzOݦNmÆÅÛ'¸Ù©âd¿ “?à +endstream +endobj +1625 0 obj +[2130 0 R] +endobj +1626 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1627 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1628 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1629 0 obj +<< +/K [1705 0 R 1707 0 R 1709 0 R 1711 0 R 1713 0 R] +/P 313 0 R +/S /L +>> +endobj +1630 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1631 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1632 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1633 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1634 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1635 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1636 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1637 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1638 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1639 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1640 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1641 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1642 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1643 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1644 0 obj +<< +/C /Pa2 +/K 438 0 R +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1645 0 obj +<< +/C /Pa2 +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1646 0 obj +<< +/K [1715 0 R 1717 0 R 1719 0 R 1721 0 R] +/P 313 0 R +/S /L +>> +endobj +1647 0 obj +<< +/C /Pa2 +/K 540 0 R +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1648 0 obj +<< +/K [1767 0 R 1769 0 R 1771 0 R 1773 0 R 1775 0 R 1777 0 R 1779 0 R 1781 0 R 1783 0 R 1785 0 R] +/P 313 0 R +/S /L +>> +endobj +1649 0 obj +<< +/K [1806 0 R 1808 0 R 1810 0 R 1812 0 R 1814 0 R 1816 0 R 1818 0 R 1820 0 R 1822 0 R 1824 0 R] +/P 313 0 R +/S /L +>> +endobj +1650 0 obj +<< +/K [1834 0 R 1836 0 R 1838 0 R 1840 0 R 1842 0 R] +/P 313 0 R +/S /L +>> +endobj +1651 0 obj +<< +/K [1844 0 R 1846 0 R 1848 0 R 1850 0 R 1852 0 R 1854 0 R 1856 0 R 1858 0 R 1860 0 R 1862 0 R 1864 0 R 1866 0 R] +/P 313 0 R +/S /L +>> +endobj +1652 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1653 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1654 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1655 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1656 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1657 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1658 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1659 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1660 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1661 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1662 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1663 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1664 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1665 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1666 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1667 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1668 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1669 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1670 0 obj +<< +/K [1868 0 R 1870 0 R 1872 0 R 1874 0 R 1876 0 R 1878 0 R 1880 0 R 1882 0 R] +/P 313 0 R +/S /L +>> +endobj +1671 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1672 0 obj +<< +/K [1886 0 R 1888 0 R 1890 0 R 1892 0 R 1894 0 R] +/P 313 0 R +/S /L +>> +endobj +1673 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1674 0 obj +<< +/K [1896 0 R 1898 0 R 1900 0 R 1902 0 R 1904 0 R 1906 0 R] +/P 313 0 R +/S /L +>> +endobj +1675 0 obj +<< +/K [1908 0 R 1910 0 R 1912 0 R 1914 0 R] +/P 313 0 R +/S /L +>> +endobj +1676 0 obj +<< +/C /Pa2 +/K 1042 0 R +/P 313 0 R +/S /Lauftext_1._Abs +>> +endobj +1677 0 obj +<< +/C /Pa3 +/P 313 0 R +/S /Lauftext +>> +endobj +1678 0 obj +<< +/K [1959 0 R 1961 0 R 1963 0 R 1965 0 R] +/P 313 0 R +/S /L +>> +endobj +1679 0 obj +<< +/K [1967 0 R 1969 0 R 1971 0 R 1973 0 R 1975 0 R 1977 0 R 1979 0 R 1981 0 R 1983 0 R 1985 0 R 1987 0 R] +/P 313 0 R +/S /L +>> +endobj +1680 0 obj +<< +/C /Pa11 +/K 2136 0 R +/P 316 0 R +/S /NormalParagraphStyle +>> +endobj +1681 0 obj +<< +/C /Pa11 +/K 2137 0 R +/P 318 0 R +/S /NormalParagraphStyle +>> +endobj +1682 0 obj +<< +/C /Pa11 +/K 2138 0 R +/P 320 0 R +/S /NormalParagraphStyle +>> +endobj +1683 0 obj +<< +/C /Pa11 +/K 2139 0 R +/P 323 0 R +/S /NormalParagraphStyle +>> +endobj +1684 0 obj +<< +/C /Pa11 +/K 2140 0 R +/P 324 0 R +/S /NormalParagraphStyle +>> +endobj +1685 0 obj +<< +/C /Pa11 +/K 2141 0 R +/P 325 0 R +/S /NormalParagraphStyle +>> +endobj +1686 0 obj +<< +/C /Pa11 +/K 2142 0 R +/P 327 0 R +/S /NormalParagraphStyle +>> +endobj +1687 0 obj +<< +/C /Pa11 +/K 2143 0 R +/P 328 0 R +/S /NormalParagraphStyle +>> +endobj +1688 0 obj +<< +/C /Pa11 +/K 2144 0 R +/P 330 0 R +/S /NormalParagraphStyle +>> +endobj +1689 0 obj +<< +/C /Pa2 +/P 331 0 R +/S /Lauftext_1._Abs +>> +endobj +1690 0 obj +<< +/K [2011 0 R 2013 0 R 2015 0 R 2017 0 R 2019 0 R 2021 0 R 2023 0 R 2025 0 R 2027 0 R 2029 0 R 2031 0 R 2033 0 R] +/P 331 0 R +/S /L +>> +endobj +1691 0 obj +<< +/C /Pa2 +/P 332 0 R +/S /Lauftext_1._Abs +>> +endobj +1692 0 obj +<< +/K [2035 0 R 2037 0 R 2039 0 R 2041 0 R 2043 0 R] +/P 332 0 R +/S /L +>> +endobj +1693 0 obj +<< +/K [2045 0 R 2047 0 R 2049 0 R 2051 0 R 2053 0 R 2055 0 R 2057 0 R 2059 0 R] +/P 332 0 R +/S /L +>> +endobj +1694 0 obj +<< +/C /Pa10 +/P 332 0 R +/S /Zwischenhead_2 +>> +endobj +1695 0 obj +<< +/C /Pa2 +/P 332 0 R +/S /Lauftext_1._Abs +>> +endobj +1696 0 obj +<< +/C /Pa14 +/K 1452 0 R +/P 332 0 R +/S /Zwischenhead_3 +>> +endobj +1697 0 obj +<< +/C /Pa2 +/P 332 0 R +/S /Lauftext_1._Abs +>> +endobj +1698 0 obj +<< +/K [2080 0 R 2082 0 R 2084 0 R 2086 0 R 2088 0 R 2090 0 R 2092 0 R 2094 0 R] +/P 332 0 R +/S /L +>> +endobj +1699 0 obj +<< +/C /Pa14 +/K 1510 0 R +/P 332 0 R +/S /Zwischenhead_3 +>> +endobj +1700 0 obj +<< +/K [2096 0 R 2098 0 R 2100 0 R 2102 0 R 2104 0 R 2106 0 R 2108 0 R 2110 0 R 2112 0 R 2114 0 R 2116 0 R] +/P 332 0 R +/S /L +>> +endobj +1701 0 obj +<< +/K [2118 0 R 2120 0 R] +/P 332 0 R +/S /L +>> +endobj +1702 0 obj +<< +/C /Pa11 +/K 2145 0 R +/P 334 0 R +/S /NormalParagraphStyle +>> +endobj +1703 0 obj +<< +/C /Pa3 +/P 335 0 R +/S /Lauftext +>> +endobj +1704 0 obj +<< +/K 367 0 R +/P 1705 0 R +/S /Lbl +>> +endobj +1705 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 39.0 +>> +/K [1704 0 R 368 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1706 0 obj +<< +/K 370 0 R +/P 1707 0 R +/S /Lbl +>> +endobj +1707 0 obj +<< +/C /Pa5 +/K [1706 0 R 371 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1708 0 obj +<< +/K 373 0 R +/P 1709 0 R +/S /Lbl +>> +endobj +1709 0 obj +<< +/C /Pa5 +/K [1708 0 R 374 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1710 0 obj +<< +/K 375 0 R +/P 1711 0 R +/S /Lbl +>> +endobj +1711 0 obj +<< +/C /Pa5 +/K [1710 0 R 376 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1712 0 obj +<< +/K 377 0 R +/P 1713 0 R +/S /Lbl +>> +endobj +1713 0 obj +<< +/C /Pa5 +/K [1712 0 R 378 0 R] +/P 1629 0 R +/S /LI +>> +endobj +1714 0 obj +<< +/K 454 0 R +/P 1715 0 R +/S /Lbl +>> +endobj +1715 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 34.0 +>> +/K [1714 0 R 455 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1716 0 obj +<< +/K 456 0 R +/P 1717 0 R +/S /Lbl +>> +endobj +1717 0 obj +<< +/C /Pa7 +/K [1716 0 R 457 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1718 0 obj +<< +/K 458 0 R +/P 1719 0 R +/S /Lbl +>> +endobj +1719 0 obj +<< +/C /Pa7 +/K [1718 0 R 459 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1720 0 obj +<< +/K 460 0 R +/P 1721 0 R +/S /Lbl +>> +endobj +1721 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -11.0 +/SpaceBefore 2.0 +/StartIndent 34.0 +>> +/K [1720 0 R 461 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1722 0 obj +<< +/K 473 0 R +/P 2146 0 R +/S /TD +>> +endobj +1723 0 obj +<< +/K 474 0 R +/P 2146 0 R +/S /TD +>> +endobj +1724 0 obj +<< +/K 475 0 R +/P 2147 0 R +/S /TD +>> +endobj +1725 0 obj +<< +/K [477 0 R 476 0 R] +/P 1726 0 R +/S /Lbl +>> +endobj +1726 0 obj +<< +/C /Pa13 +/K [1725 0 R 478 0 R] +/P 2148 0 R +/S /LI +>> +endobj +1727 0 obj +<< +/K [481 0 R 480 0 R] +/P 1728 0 R +/S /Lbl +>> +endobj +1728 0 obj +<< +/C /Pa13 +/K [1727 0 R 482 0 R] +/P 2148 0 R +/S /LI +>> +endobj +1729 0 obj +<< +/K [484 0 R 483 0 R] +/P 1730 0 R +/S /Lbl +>> +endobj +1730 0 obj +<< +/C /Pa13 +/K [1729 0 R 485 0 R] +/P 2148 0 R +/S /LI +>> +endobj +1731 0 obj +<< +/K [487 0 R 486 0 R] +/P 1732 0 R +/S /Lbl +>> +endobj +1732 0 obj +<< +/C /Pa13 +/K [1731 0 R 488 0 R] +/P 2148 0 R +/S /LI +>> +endobj +1733 0 obj +<< +/K [490 0 R 489 0 R] +/P 1734 0 R +/S /Lbl +>> +endobj +1734 0 obj +<< +/C /Pa13 +/K [1733 0 R 491 0 R] +/P 2148 0 R +/S /LI +>> +endobj +1735 0 obj +<< +/K [493 0 R 492 0 R] +/P 1736 0 R +/S /Lbl +>> +endobj +1736 0 obj +<< +/C /Pa13 +/K [1735 0 R 494 0 R] +/P 2148 0 R +/S /LI +>> +endobj +1737 0 obj +<< +/K [496 0 R 495 0 R] +/P 1738 0 R +/S /Lbl +>> +endobj +1738 0 obj +<< +/C /Pa13 +/K [1737 0 R 497 0 R] +/P 2148 0 R +/S /LI +>> +endobj +1739 0 obj +<< +/K [499 0 R 498 0 R] +/P 1740 0 R +/S /Lbl +>> +endobj +1740 0 obj +<< +/C /Pa13 +/K [1739 0 R 500 0 R] +/P 2148 0 R +/S /LI +>> +endobj +1741 0 obj +<< +/K 501 0 R +/P 2149 0 R +/S /TD +>> +endobj +1742 0 obj +<< +/K [504 0 R 503 0 R] +/P 1743 0 R +/S /Lbl +>> +endobj +1743 0 obj +<< +/C /Pa13 +/K [1742 0 R 505 0 R] +/P 2150 0 R +/S /LI +>> +endobj +1744 0 obj +<< +/K [507 0 R 506 0 R] +/P 1745 0 R +/S /Lbl +>> +endobj +1745 0 obj +<< +/C /Pa13 +/K [1744 0 R 508 0 R] +/P 2150 0 R +/S /LI +>> +endobj +1746 0 obj +<< +/K [510 0 R 509 0 R] +/P 1747 0 R +/S /Lbl +>> +endobj +1747 0 obj +<< +/C /Pa13 +/K [1746 0 R 511 0 R] +/P 2150 0 R +/S /LI +>> +endobj +1748 0 obj +<< +/K 512 0 R +/P 2151 0 R +/S /TD +>> +endobj +1749 0 obj +<< +/K [515 0 R 514 0 R] +/P 1750 0 R +/S /Lbl +>> +endobj +1750 0 obj +<< +/C /Pa13 +/K [1749 0 R 516 0 R] +/P 2152 0 R +/S /LI +>> +endobj +1751 0 obj +<< +/K [518 0 R 517 0 R] +/P 1752 0 R +/S /Lbl +>> +endobj +1752 0 obj +<< +/C /Pa13 +/K [1751 0 R 519 0 R] +/P 2152 0 R +/S /LI +>> +endobj +1753 0 obj +<< +/K [521 0 R 520 0 R] +/P 1754 0 R +/S /Lbl +>> +endobj +1754 0 obj +<< +/C /Pa13 +/K [1753 0 R 522 0 R] +/P 2152 0 R +/S /LI +>> +endobj +1755 0 obj +<< +/K [524 0 R 523 0 R] +/P 1756 0 R +/S /Lbl +>> +endobj +1756 0 obj +<< +/C /Pa13 +/K [1755 0 R 525 0 R] +/P 2152 0 R +/S /LI +>> +endobj +1757 0 obj +<< +/K 526 0 R +/P 2153 0 R +/S /TD +>> +endobj +1758 0 obj +<< +/K [528 0 R 527 0 R] +/P 1759 0 R +/S /Lbl +>> +endobj +1759 0 obj +<< +/C /Pa13 +/K [1758 0 R 529 0 R] +/P 2154 0 R +/S /LI +>> +endobj +1760 0 obj +<< +/K [531 0 R 530 0 R] +/P 1761 0 R +/S /Lbl +>> +endobj +1761 0 obj +<< +/C /Pa13 +/K [1760 0 R 532 0 R] +/P 2154 0 R +/S /LI +>> +endobj +1762 0 obj +<< +/K [534 0 R 533 0 R] +/P 1763 0 R +/S /Lbl +>> +endobj +1763 0 obj +<< +/C /Pa13 +/K [1762 0 R 535 0 R] +/P 2154 0 R +/S /LI +>> +endobj +1764 0 obj +<< +/K [537 0 R 536 0 R] +/P 1765 0 R +/S /Lbl +>> +endobj +1765 0 obj +<< +/C /Pa13 +/K [1764 0 R 538 0 R] +/P 2154 0 R +/S /LI +>> +endobj +1766 0 obj +<< +/K [588 0 R 587 0 R] +/P 1767 0 R +/S /Lbl +>> +endobj +1767 0 obj +<< +/C /Pa15 +/K [1766 0 R 589 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1768 0 obj +<< +/K [591 0 R 590 0 R] +/P 1769 0 R +/S /Lbl +>> +endobj +1769 0 obj +<< +/C /Pa16 +/K [1768 0 R 592 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1770 0 obj +<< +/K [594 0 R 593 0 R] +/P 1771 0 R +/S /Lbl +>> +endobj +1771 0 obj +<< +/C /Pa16 +/K [1770 0 R 595 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1772 0 obj +<< +/K [598 0 R 597 0 R] +/P 1773 0 R +/S /Lbl +>> +endobj +1773 0 obj +<< +/C /Pa16 +/K [1772 0 R 599 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1774 0 obj +<< +/K [601 0 R 600 0 R] +/P 1775 0 R +/S /Lbl +>> +endobj +1775 0 obj +<< +/C /Pa16 +/K [1774 0 R 602 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1776 0 obj +<< +/K [605 0 R 604 0 R] +/P 1777 0 R +/S /Lbl +>> +endobj +1777 0 obj +<< +/C /Pa16 +/K [1776 0 R 606 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1778 0 obj +<< +/K [608 0 R 607 0 R] +/P 1779 0 R +/S /Lbl +>> +endobj +1779 0 obj +<< +/C /Pa16 +/K [1778 0 R 609 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1780 0 obj +<< +/K [612 0 R 611 0 R] +/P 1781 0 R +/S /Lbl +>> +endobj +1781 0 obj +<< +/C /Pa16 +/K [1780 0 R 613 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1782 0 obj +<< +/K [615 0 R 614 0 R] +/P 1783 0 R +/S /Lbl +>> +endobj +1783 0 obj +<< +/C /Pa16 +/K [1782 0 R 616 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1784 0 obj +<< +/K [618 0 R 617 0 R] +/P 1785 0 R +/S /Lbl +>> +endobj +1785 0 obj +<< +/C /Pa17 +/K [1784 0 R 619 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1786 0 obj +<< +/K 627 0 R +/P 2155 0 R +/S /TD +>> +endobj +1787 0 obj +<< +/K [629 0 R 628 0 R] +/P 1788 0 R +/S /Lbl +>> +endobj +1788 0 obj +<< +/C /Pa18 +/K [1787 0 R 630 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1789 0 obj +<< +/K [633 0 R 632 0 R] +/P 1790 0 R +/S /Lbl +>> +endobj +1790 0 obj +<< +/C /Pa18 +/K [1789 0 R 634 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1791 0 obj +<< +/K [636 0 R 635 0 R] +/P 1792 0 R +/S /Lbl +>> +endobj +1792 0 obj +<< +/C /Pa18 +/K [1791 0 R 637 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1793 0 obj +<< +/K [639 0 R 638 0 R] +/P 1794 0 R +/S /Lbl +>> +endobj +1794 0 obj +<< +/C /Pa18 +/K [1793 0 R 640 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1795 0 obj +<< +/K [643 0 R 642 0 R] +/P 1796 0 R +/S /Lbl +>> +endobj +1796 0 obj +<< +/C /Pa18 +/K [1795 0 R 644 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1797 0 obj +<< +/K [646 0 R 645 0 R] +/P 1798 0 R +/S /Lbl +>> +endobj +1798 0 obj +<< +/C /Pa18 +/K [1797 0 R 647 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1799 0 obj +<< +/K [649 0 R 648 0 R] +/P 1800 0 R +/S /Lbl +>> +endobj +1800 0 obj +<< +/C /Pa18 +/K [1799 0 R 650 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1801 0 obj +<< +/K [653 0 R 652 0 R] +/P 1802 0 R +/S /Lbl +>> +endobj +1802 0 obj +<< +/C /Pa18 +/K [1801 0 R 654 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1803 0 obj +<< +/K [656 0 R 655 0 R] +/P 1804 0 R +/S /Lbl +>> +endobj +1804 0 obj +<< +/C /Pa18 +/K [1803 0 R 657 0 R] +/P 2156 0 R +/S /LI +>> +endobj +1805 0 obj +<< +/K [669 0 R 668 0 R] +/P 1806 0 R +/S /Lbl +>> +endobj +1806 0 obj +<< +/C /Pa15 +/K [1805 0 R 670 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1807 0 obj +<< +/K [672 0 R 671 0 R] +/P 1808 0 R +/S /Lbl +>> +endobj +1808 0 obj +<< +/C /Pa16 +/K [1807 0 R 673 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1809 0 obj +<< +/K [675 0 R 674 0 R] +/P 1810 0 R +/S /Lbl +>> +endobj +1810 0 obj +<< +/C /Pa16 +/K [1809 0 R 676 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1811 0 obj +<< +/K [681 0 R 680 0 R] +/P 1812 0 R +/S /Lbl +>> +endobj +1812 0 obj +<< +/C /Pa16 +/K [1811 0 R 682 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1813 0 obj +<< +/K [684 0 R 683 0 R] +/P 1814 0 R +/S /Lbl +>> +endobj +1814 0 obj +<< +/C /Pa16 +/K [1813 0 R 685 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1815 0 obj +<< +/K [687 0 R 686 0 R] +/P 1816 0 R +/S /Lbl +>> +endobj +1816 0 obj +<< +/C /Pa16 +/K [1815 0 R 688 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1817 0 obj +<< +/K [690 0 R 689 0 R] +/P 1818 0 R +/S /Lbl +>> +endobj +1818 0 obj +<< +/C /Pa16 +/K [1817 0 R 691 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1819 0 obj +<< +/K [693 0 R 692 0 R] +/P 1820 0 R +/S /Lbl +>> +endobj +1820 0 obj +<< +/C /Pa16 +/K [1819 0 R 694 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1821 0 obj +<< +/K [696 0 R 695 0 R] +/P 1822 0 R +/S /Lbl +>> +endobj +1822 0 obj +<< +/C /Pa16 +/K [1821 0 R 697 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1823 0 obj +<< +/K [699 0 R 698 0 R] +/P 1824 0 R +/S /Lbl +>> +endobj +1824 0 obj +<< +/C /Pa17 +/K [1823 0 R 700 0 R] +/P 1649 0 R +/S /LI +>> +endobj +1825 0 obj +<< +/K 701 0 R +/P 2157 0 R +/S /TD +>> +endobj +1826 0 obj +<< +/K [702 0 R 703 0 R 706 0 R 2158 0 R 2159 0 R] +/P 2160 0 R +/S /TD +>> +endobj +1827 0 obj +<< +/K [708 0 R 707 0 R] +/P 1828 0 R +/S /Lbl +>> +endobj +1828 0 obj +<< +/C /Pa18 +/K [1827 0 R 709 0 R] +/P 2158 0 R +/S /LI +>> +endobj +1829 0 obj +<< +/K [711 0 R 710 0 R] +/P 1830 0 R +/S /Lbl +>> +endobj +1830 0 obj +<< +/C /Pa18 +/K [1829 0 R 712 0 R] +/P 2158 0 R +/S /LI +>> +endobj +1831 0 obj +<< +/K [714 0 R 713 0 R] +/P 1832 0 R +/S /Lbl +>> +endobj +1832 0 obj +<< +/C /Pa18 +/K [1831 0 R 715 0 R] +/P 2158 0 R +/S /LI +>> +endobj +1833 0 obj +<< +/K [726 0 R 725 0 R] +/P 1834 0 R +/S /Lbl +>> +endobj +1834 0 obj +<< +/C /Pa15 +/K [1833 0 R 729 0 R] +/P 1650 0 R +/S /LI +>> +endobj +1835 0 obj +<< +/K [732 0 R 731 0 R] +/P 1836 0 R +/S /Lbl +>> +endobj +1836 0 obj +<< +/C /Pa16 +/K [1835 0 R 734 0 R] +/P 1650 0 R +/S /LI +>> +endobj +1837 0 obj +<< +/K [737 0 R 736 0 R] +/P 1838 0 R +/S /Lbl +>> +endobj +1838 0 obj +<< +/C /Pa16 +/K [1837 0 R 739 0 R] +/P 1650 0 R +/S /LI +>> +endobj +1839 0 obj +<< +/K [741 0 R 740 0 R] +/P 1840 0 R +/S /Lbl +>> +endobj +1840 0 obj +<< +/C /Pa16 +/K [1839 0 R 743 0 R] +/P 1650 0 R +/S /LI +>> +endobj +1841 0 obj +<< +/K [747 0 R 746 0 R] +/P 1842 0 R +/S /Lbl +>> +endobj +1842 0 obj +<< +/C /Pa17 +/K [1841 0 R 749 0 R] +/P 1650 0 R +/S /LI +>> +endobj +1843 0 obj +<< +/K [819 0 R 818 0 R] +/P 1844 0 R +/S /Lbl +>> +endobj +1844 0 obj +<< +/C /Pa15 +/K [1843 0 R 820 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1845 0 obj +<< +/K [822 0 R 821 0 R] +/P 1846 0 R +/S /Lbl +>> +endobj +1846 0 obj +<< +/C /Pa16 +/K [1845 0 R 823 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1847 0 obj +<< +/K [825 0 R 824 0 R] +/P 1848 0 R +/S /Lbl +>> +endobj +1848 0 obj +<< +/C /Pa16 +/K [1847 0 R 826 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1849 0 obj +<< +/K [828 0 R 827 0 R] +/P 1850 0 R +/S /Lbl +>> +endobj +1850 0 obj +<< +/C /Pa16 +/K [1849 0 R 829 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1851 0 obj +<< +/K [831 0 R 830 0 R] +/P 1852 0 R +/S /Lbl +>> +endobj +1852 0 obj +<< +/C /Pa16 +/K [1851 0 R 832 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1853 0 obj +<< +/K [834 0 R 833 0 R] +/P 1854 0 R +/S /Lbl +>> +endobj +1854 0 obj +<< +/C /Pa16 +/K [1853 0 R 835 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1855 0 obj +<< +/K [837 0 R 836 0 R] +/P 1856 0 R +/S /Lbl +>> +endobj +1856 0 obj +<< +/C /Pa16 +/K [1855 0 R 838 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1857 0 obj +<< +/K [840 0 R 839 0 R] +/P 1858 0 R +/S /Lbl +>> +endobj +1858 0 obj +<< +/C /Pa16 +/K [1857 0 R 841 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1859 0 obj +<< +/K [843 0 R 842 0 R] +/P 1860 0 R +/S /Lbl +>> +endobj +1860 0 obj +<< +/C /Pa16 +/K [1859 0 R 844 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1861 0 obj +<< +/K [846 0 R 845 0 R] +/P 1862 0 R +/S /Lbl +>> +endobj +1862 0 obj +<< +/C /Pa16 +/K [1861 0 R 847 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1863 0 obj +<< +/K [849 0 R 848 0 R] +/P 1864 0 R +/S /Lbl +>> +endobj +1864 0 obj +<< +/C /Pa16 +/K [1863 0 R 850 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1865 0 obj +<< +/K [852 0 R 851 0 R] +/P 1866 0 R +/S /Lbl +>> +endobj +1866 0 obj +<< +/C /Pa16 +/K [1865 0 R 853 0 R] +/P 1651 0 R +/S /LI +>> +endobj +1867 0 obj +<< +/K [861 0 R 860 0 R] +/P 1868 0 R +/S /Lbl +>> +endobj +1868 0 obj +<< +/C /Pa15 +/K [1867 0 R 862 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1869 0 obj +<< +/K [864 0 R 863 0 R] +/P 1870 0 R +/S /Lbl +>> +endobj +1870 0 obj +<< +/C /Pa16 +/K [1869 0 R 865 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1871 0 obj +<< +/K [867 0 R 866 0 R] +/P 1872 0 R +/S /Lbl +>> +endobj +1872 0 obj +<< +/C /Pa16 +/K [1871 0 R 868 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1873 0 obj +<< +/K [870 0 R 869 0 R] +/P 1874 0 R +/S /Lbl +>> +endobj +1874 0 obj +<< +/C /Pa16 +/K [1873 0 R 871 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1875 0 obj +<< +/K [873 0 R 872 0 R] +/P 1876 0 R +/S /Lbl +>> +endobj +1876 0 obj +<< +/C /Pa16 +/K [1875 0 R 874 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1877 0 obj +<< +/K [876 0 R 875 0 R] +/P 1878 0 R +/S /Lbl +>> +endobj +1878 0 obj +<< +/C /Pa16 +/K [1877 0 R 877 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1879 0 obj +<< +/K [879 0 R 878 0 R] +/P 1880 0 R +/S /Lbl +>> +endobj +1880 0 obj +<< +/C /Pa16 +/K [1879 0 R 880 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1881 0 obj +<< +/K [882 0 R 881 0 R] +/P 1882 0 R +/S /Lbl +>> +endobj +1882 0 obj +<< +/C /Pa17 +/K [1881 0 R 883 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1883 0 obj +<< +/K 885 0 R +/P 2161 0 R +/S /TD +>> +endobj +1884 0 obj +<< +/K [886 0 R 2162 0 R] +/P 2163 0 R +/S /TD +>> +endobj +1885 0 obj +<< +/K [896 0 R 895 0 R] +/P 1886 0 R +/S /Lbl +>> +endobj +1886 0 obj +<< +/C /Pa15 +/K [1885 0 R 897 0 R] +/P 1672 0 R +/S /LI +>> +endobj +1887 0 obj +<< +/K [899 0 R 898 0 R] +/P 1888 0 R +/S /Lbl +>> +endobj +1888 0 obj +<< +/C /Pa16 +/K [1887 0 R 900 0 R] +/P 1672 0 R +/S /LI +>> +endobj +1889 0 obj +<< +/K [902 0 R 901 0 R] +/P 1890 0 R +/S /Lbl +>> +endobj +1890 0 obj +<< +/C /Pa16 +/K [1889 0 R 903 0 R] +/P 1672 0 R +/S /LI +>> +endobj +1891 0 obj +<< +/K [905 0 R 904 0 R] +/P 1892 0 R +/S /Lbl +>> +endobj +1892 0 obj +<< +/C /Pa16 +/K [1891 0 R 906 0 R] +/P 1672 0 R +/S /LI +>> +endobj +1893 0 obj +<< +/K [908 0 R 907 0 R] +/P 1894 0 R +/S /Lbl +>> +endobj +1894 0 obj +<< +/C /Pa17 +/K [1893 0 R 909 0 R] +/P 1672 0 R +/S /LI +>> +endobj +1895 0 obj +<< +/K [924 0 R 923 0 R] +/P 1896 0 R +/S /Lbl +>> +endobj +1896 0 obj +<< +/C /Pa15 +/K [1895 0 R 925 0 R] +/P 1674 0 R +/S /LI +>> +endobj +1897 0 obj +<< +/K [927 0 R 926 0 R] +/P 1898 0 R +/S /Lbl +>> +endobj +1898 0 obj +<< +/C /Pa16 +/K [1897 0 R 928 0 R] +/P 1674 0 R +/S /LI +>> +endobj +1899 0 obj +<< +/K [930 0 R 929 0 R] +/P 1900 0 R +/S /Lbl +>> +endobj +1900 0 obj +<< +/C /Pa16 +/K [1899 0 R 931 0 R] +/P 1674 0 R +/S /LI +>> +endobj +1901 0 obj +<< +/K [933 0 R 932 0 R] +/P 1902 0 R +/S /Lbl +>> +endobj +1902 0 obj +<< +/C /Pa16 +/K [1901 0 R 934 0 R] +/P 1674 0 R +/S /LI +>> +endobj +1903 0 obj +<< +/K [936 0 R 935 0 R] +/P 1904 0 R +/S /Lbl +>> +endobj +1904 0 obj +<< +/C /Pa16 +/K [1903 0 R 937 0 R] +/P 1674 0 R +/S /LI +>> +endobj +1905 0 obj +<< +/K [939 0 R 938 0 R] +/P 1906 0 R +/S /Lbl +>> +endobj +1906 0 obj +<< +/C /Pa17 +/K [1905 0 R 940 0 R] +/P 1674 0 R +/S /LI +>> +endobj +1907 0 obj +<< +/K [943 0 R 942 0 R] +/P 1908 0 R +/S /Lbl +>> +endobj +1908 0 obj +<< +/C /Pa15 +/K [1907 0 R 944 0 R] +/P 1675 0 R +/S /LI +>> +endobj +1909 0 obj +<< +/K [946 0 R 945 0 R] +/P 1910 0 R +/S /Lbl +>> +endobj +1910 0 obj +<< +/C /Pa16 +/K [1909 0 R 947 0 R] +/P 1675 0 R +/S /LI +>> +endobj +1911 0 obj +<< +/K [949 0 R 948 0 R] +/P 1912 0 R +/S /Lbl +>> +endobj +1912 0 obj +<< +/C /Pa16 +/K [1911 0 R 950 0 R] +/P 1675 0 R +/S /LI +>> +endobj +1913 0 obj +<< +/K [952 0 R 951 0 R] +/P 1914 0 R +/S /Lbl +>> +endobj +1914 0 obj +<< +/C /Pa17 +/K [1913 0 R 953 0 R] +/P 1675 0 R +/S /LI +>> +endobj +1915 0 obj +<< +/K 958 0 R +/P 2164 0 R +/S /TD +>> +endobj +1916 0 obj +<< +/K 959 0 R +/P 2164 0 R +/S /TD +>> +endobj +1917 0 obj +<< +/K 960 0 R +/P 2164 0 R +/S /TD +>> +endobj +1918 0 obj +<< +/K 961 0 R +/P 2165 0 R +/S /TD +>> +endobj +1919 0 obj +<< +/K [964 0 R 963 0 R] +/P 1920 0 R +/S /Lbl +>> +endobj +1920 0 obj +<< +/C /Pa13 +/K [1919 0 R 965 0 R] +/P 2166 0 R +/S /LI +>> +endobj +1921 0 obj +<< +/K [967 0 R 966 0 R] +/P 1922 0 R +/S /Lbl +>> +endobj +1922 0 obj +<< +/C /Pa13 +/K [1921 0 R 968 0 R] +/P 2166 0 R +/S /LI +>> +endobj +1923 0 obj +<< +/K [971 0 R 970 0 R] +/P 1924 0 R +/S /Lbl +>> +endobj +1924 0 obj +<< +/C /Pa13 +/K [1923 0 R 972 0 R] +/P 2166 0 R +/S /LI +>> +endobj +1925 0 obj +<< +/K [977 0 R 976 0 R] +/P 1926 0 R +/S /Lbl +>> +endobj +1926 0 obj +<< +/C /Pa13 +/K [1925 0 R 978 0 R] +/P 2166 0 R +/S /LI +>> +endobj +1927 0 obj +<< +/K [981 0 R 980 0 R] +/P 1928 0 R +/S /Lbl +>> +endobj +1928 0 obj +<< +/C /Pa13 +/K [1927 0 R 982 0 R] +/P 2167 0 R +/S /LI +>> +endobj +1929 0 obj +<< +/K [984 0 R 983 0 R] +/P 1930 0 R +/S /Lbl +>> +endobj +1930 0 obj +<< +/C /Pa13 +/K [1929 0 R 985 0 R] +/P 2167 0 R +/S /LI +>> +endobj +1931 0 obj +<< +/K [987 0 R 986 0 R] +/P 1932 0 R +/S /Lbl +>> +endobj +1932 0 obj +<< +/C /Pa13 +/K [1931 0 R 988 0 R] +/P 2167 0 R +/S /LI +>> +endobj +1933 0 obj +<< +/K [991 0 R 990 0 R] +/P 1934 0 R +/S /Lbl +>> +endobj +1934 0 obj +<< +/C /Pa13 +/K [1933 0 R 992 0 R] +/P 2167 0 R +/S /LI +>> +endobj +1935 0 obj +<< +/K 994 0 R +/P 2168 0 R +/S /TD +>> +endobj +1936 0 obj +<< +/K [997 0 R 996 0 R] +/P 1937 0 R +/S /Lbl +>> +endobj +1937 0 obj +<< +/C /Pa13 +/K [1936 0 R 998 0 R] +/P 2169 0 R +/S /LI +>> +endobj +1938 0 obj +<< +/K [1002 0 R 1001 0 R] +/P 1939 0 R +/S /Lbl +>> +endobj +1939 0 obj +<< +/C /Pa13 +/K [1938 0 R 1003 0 R] +/P 2169 0 R +/S /LI +>> +endobj +1940 0 obj +<< +/K [1005 0 R 1004 0 R] +/P 1941 0 R +/S /Lbl +>> +endobj +1941 0 obj +<< +/C /Pa13 +/K [1940 0 R 1006 0 R] +/P 2169 0 R +/S /LI +>> +endobj +1942 0 obj +<< +/K [1008 0 R 1007 0 R] +/P 1943 0 R +/S /Lbl +>> +endobj +1943 0 obj +<< +/C /Pa13 +/K [1942 0 R 1009 0 R] +/P 2169 0 R +/S /LI +>> +endobj +1944 0 obj +<< +/K [1012 0 R 1011 0 R] +/P 1945 0 R +/S /Lbl +>> +endobj +1945 0 obj +<< +/C /Pa13 +/K [1944 0 R 1013 0 R] +/P 2169 0 R +/S /LI +>> +endobj +1946 0 obj +<< +/K [1016 0 R 1015 0 R] +/P 2170 0 R +/S /Lbl +>> +endobj +1947 0 obj +<< +/K [1017 0 R 1018 0 R 1019 0 R 1020 0 R] +/P 2170 0 R +/S /LBody +>> +endobj +1948 0 obj +<< +/K [1022 0 R 1021 0 R] +/P 1949 0 R +/S /Lbl +>> +endobj +1949 0 obj +<< +/C /Pa13 +/K [1948 0 R 1023 0 R] +/P 2171 0 R +/S /LI +>> +endobj +1950 0 obj +<< +/K [1025 0 R 1024 0 R] +/P 1951 0 R +/S /Lbl +>> +endobj +1951 0 obj +<< +/C /Pa13 +/K [1950 0 R 1026 0 R] +/P 2171 0 R +/S /LI +>> +endobj +1952 0 obj +<< +/K [1030 0 R 1029 0 R] +/P 1953 0 R +/S /Lbl +>> +endobj +1953 0 obj +<< +/C /Pa13 +/K [1952 0 R 1031 0 R] +/P 2171 0 R +/S /LI +>> +endobj +1954 0 obj +<< +/K [1034 0 R 1033 0 R] +/P 1955 0 R +/S /Lbl +>> +endobj +1955 0 obj +<< +/C /Pa13 +/K [1954 0 R 1035 0 R] +/P 2171 0 R +/S /LI +>> +endobj +1956 0 obj +<< +/K [1038 0 R 1037 0 R] +/P 1957 0 R +/S /Lbl +>> +endobj +1957 0 obj +<< +/C /Pa13 +/K [1956 0 R 1039 0 R] +/P 2171 0 R +/S /LI +>> +endobj +1958 0 obj +<< +/K [1057 0 R 1056 0 R] +/P 1959 0 R +/S /Lbl +>> +endobj +1959 0 obj +<< +/C /Pa15 +/K [1958 0 R 1058 0 R] +/P 1678 0 R +/S /LI +>> +endobj +1960 0 obj +<< +/K [1060 0 R 1059 0 R] +/P 1961 0 R +/S /Lbl +>> +endobj +1961 0 obj +<< +/C /Pa16 +/K [1960 0 R 1061 0 R] +/P 1678 0 R +/S /LI +>> +endobj +1962 0 obj +<< +/K [1063 0 R 1062 0 R] +/P 1963 0 R +/S /Lbl +>> +endobj +1963 0 obj +<< +/C /Pa16 +/K [1962 0 R 1064 0 R] +/P 1678 0 R +/S /LI +>> +endobj +1964 0 obj +<< +/K [1066 0 R 1065 0 R] +/P 1965 0 R +/S /Lbl +>> +endobj +1965 0 obj +<< +/C /Pa17 +/K [1964 0 R 1067 0 R] +/P 1678 0 R +/S /LI +>> +endobj +1966 0 obj +<< +/K [1082 0 R 1081 0 R] +/P 1967 0 R +/S /Lbl +>> +endobj +1967 0 obj +<< +/C /Pa15 +/K [1966 0 R 1083 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1968 0 obj +<< +/K [1085 0 R 1084 0 R] +/P 1969 0 R +/S /Lbl +>> +endobj +1969 0 obj +<< +/C /Pa16 +/K [1968 0 R 1086 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1970 0 obj +<< +/K [1088 0 R 1087 0 R] +/P 1971 0 R +/S /Lbl +>> +endobj +1971 0 obj +<< +/C /Pa16 +/K [1970 0 R 1089 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1972 0 obj +<< +/K [1091 0 R 1090 0 R] +/P 1973 0 R +/S /Lbl +>> +endobj +1973 0 obj +<< +/C /Pa16 +/K [1972 0 R 1092 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1974 0 obj +<< +/K [1094 0 R 1093 0 R] +/P 1975 0 R +/S /Lbl +>> +endobj +1975 0 obj +<< +/C /Pa16 +/K [1974 0 R 1095 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1976 0 obj +<< +/K [1097 0 R 1096 0 R] +/P 1977 0 R +/S /Lbl +>> +endobj +1977 0 obj +<< +/C /Pa16 +/K [1976 0 R 1098 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1978 0 obj +<< +/K [1100 0 R 1099 0 R] +/P 1979 0 R +/S /Lbl +>> +endobj +1979 0 obj +<< +/C /Pa16 +/K [1978 0 R 1101 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1980 0 obj +<< +/K [1103 0 R 1102 0 R] +/P 1981 0 R +/S /Lbl +>> +endobj +1981 0 obj +<< +/C /Pa16 +/K [1980 0 R 1104 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1982 0 obj +<< +/K [1107 0 R 1106 0 R] +/P 1983 0 R +/S /Lbl +>> +endobj +1983 0 obj +<< +/C /Pa16 +/K [1982 0 R 1108 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1984 0 obj +<< +/K [1110 0 R 1109 0 R] +/P 1985 0 R +/S /Lbl +>> +endobj +1985 0 obj +<< +/C /Pa16 +/K [1984 0 R 1111 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1986 0 obj +<< +/K [1114 0 R 1113 0 R] +/P 1987 0 R +/S /Lbl +>> +endobj +1987 0 obj +<< +/C /Pa17 +/K [1986 0 R 1115 0 R] +/P 1679 0 R +/S /LI +>> +endobj +1988 0 obj +<< +/K 1116 0 R +/P 2172 0 R +/S /TD +>> +endobj +1989 0 obj +<< +/K [1117 0 R 1118 0 R 1120 0 R 1123 0 R] +/P 2173 0 R +/S /TD +>> +endobj +1990 0 obj +<< +/K 1154 0 R +/P 2174 0 R +/S /TD +>> +endobj +1991 0 obj +<< +/K 1155 0 R +/P 2174 0 R +/S /TD +>> +endobj +1992 0 obj +<< +/K [1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R 1166 0 R 1167 0 R 1168 0 R 1169 0 R 1170 0 R] +/P 2175 0 R +/S /TD +>> +endobj +1993 0 obj +<< +/K [1171 0 R 1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R 1186 0 R] +/P 2175 0 R +/S /TD +>> +endobj +1994 0 obj +<< +/K 1295 0 R +/P 2176 0 R +/S /TD +>> +endobj +1995 0 obj +<< +/K [1296 0 R 1298 0 R 2177 0 R 2178 0 R 1339 0 R 1342 0 R 2179 0 R] +/P 2180 0 R +/S /TD +>> +endobj +1996 0 obj +<< +/K [1303 0 R 1302 0 R 1301 0 R 1300 0 R] +/P 1997 0 R +/S /Lbl +>> +endobj +1997 0 obj +<< +/C /Pa18 +/K [1996 0 R 1304 0 R] +/P 2177 0 R +/S /LI +>> +endobj +1998 0 obj +<< +/K [1308 0 R 1307 0 R 1306 0 R 1305 0 R] +/P 1999 0 R +/S /Lbl +>> +endobj +1999 0 obj +<< +/C /Pa18 +/K [1998 0 R 1309 0 R] +/P 2177 0 R +/S /LI +>> +endobj +2000 0 obj +<< +/K [1313 0 R 1312 0 R 1311 0 R 1310 0 R] +/P 2001 0 R +/S /Lbl +>> +endobj +2001 0 obj +<< +/C /Pa18 +/K [2000 0 R 1314 0 R] +/P 2177 0 R +/S /LI +>> +endobj +2002 0 obj +<< +/K [1318 0 R 1317 0 R 1316 0 R 1315 0 R] +/P 2003 0 R +/S /Lbl +>> +endobj +2003 0 obj +<< +/C /Pa18 +/K [2002 0 R 1319 0 R] +/P 2177 0 R +/S /LI +>> +endobj +2004 0 obj +<< +/K [1325 0 R 1324 0 R 1323 0 R 1322 0 R] +/P 2005 0 R +/S /Lbl +>> +endobj +2005 0 obj +<< +/C /Pa18 +/K [2004 0 R 1326 0 R] +/P 2177 0 R +/S /LI +>> +endobj +2006 0 obj +<< +/K [1330 0 R 1329 0 R 1328 0 R 1327 0 R] +/P 2007 0 R +/S /Lbl +>> +endobj +2007 0 obj +<< +/C /Pa18 +/K [2006 0 R 1331 0 R] +/P 2177 0 R +/S /LI +>> +endobj +2008 0 obj +<< +/K [1335 0 R 1334 0 R 1333 0 R 1332 0 R] +/P 2009 0 R +/S /Lbl +>> +endobj +2009 0 obj +<< +/C /Pa18 +/K [2008 0 R 1336 0 R] +/P 2177 0 R +/S /LI +>> +endobj +2010 0 obj +<< +/K [1346 0 R 1345 0 R] +/P 2011 0 R +/S /Lbl +>> +endobj +2011 0 obj +<< +/C /Pa15 +/K [2010 0 R 1347 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2012 0 obj +<< +/K [1350 0 R 1349 0 R] +/P 2013 0 R +/S /Lbl +>> +endobj +2013 0 obj +<< +/C /Pa15 +/K [2012 0 R 1351 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2014 0 obj +<< +/K [1353 0 R 1352 0 R] +/P 2015 0 R +/S /Lbl +>> +endobj +2015 0 obj +<< +/C /Pa15 +/K [2014 0 R 1354 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2016 0 obj +<< +/K [1356 0 R 1355 0 R] +/P 2017 0 R +/S /Lbl +>> +endobj +2017 0 obj +<< +/C /Pa15 +/K [2016 0 R 1357 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2018 0 obj +<< +/K [1360 0 R 1359 0 R] +/P 2019 0 R +/S /Lbl +>> +endobj +2019 0 obj +<< +/C /Pa15 +/K [2018 0 R 1361 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2020 0 obj +<< +/K [1363 0 R 1362 0 R] +/P 2021 0 R +/S /Lbl +>> +endobj +2021 0 obj +<< +/C /Pa15 +/K [2020 0 R 1364 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2022 0 obj +<< +/K [1366 0 R 1365 0 R] +/P 2023 0 R +/S /Lbl +>> +endobj +2023 0 obj +<< +/C /Pa15 +/K [2022 0 R 1367 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2024 0 obj +<< +/K [1369 0 R 1368 0 R] +/P 2025 0 R +/S /Lbl +>> +endobj +2025 0 obj +<< +/C /Pa15 +/K [2024 0 R 1370 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2026 0 obj +<< +/K [1372 0 R 1371 0 R] +/P 2027 0 R +/S /Lbl +>> +endobj +2027 0 obj +<< +/C /Pa15 +/K [2026 0 R 1373 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2028 0 obj +<< +/K [1376 0 R 1375 0 R] +/P 2029 0 R +/S /Lbl +>> +endobj +2029 0 obj +<< +/C /Pa15 +/K [2028 0 R 1377 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2030 0 obj +<< +/K [1379 0 R 1378 0 R] +/P 2031 0 R +/S /Lbl +>> +endobj +2031 0 obj +<< +/C /Pa15 +/K [2030 0 R 1380 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2032 0 obj +<< +/K [1385 0 R 1384 0 R] +/P 2033 0 R +/S /Lbl +>> +endobj +2033 0 obj +<< +/C /Pa15 +/K [2032 0 R 1386 0 R] +/P 1690 0 R +/S /LI +>> +endobj +2034 0 obj +<< +/K [1402 0 R 1401 0 R] +/P 2035 0 R +/S /Lbl +>> +endobj +2035 0 obj +<< +/C /Pa15 +/K [2034 0 R 1403 0 R] +/P 1692 0 R +/S /LI +>> +endobj +2036 0 obj +<< +/K [1405 0 R 1404 0 R] +/P 2037 0 R +/S /Lbl +>> +endobj +2037 0 obj +<< +/C /Pa16 +/K [2036 0 R 1406 0 R] +/P 1692 0 R +/S /LI +>> +endobj +2038 0 obj +<< +/K [1408 0 R 1407 0 R] +/P 2039 0 R +/S /Lbl +>> +endobj +2039 0 obj +<< +/C /Pa16 +/K [2038 0 R 1409 0 R] +/P 1692 0 R +/S /LI +>> +endobj +2040 0 obj +<< +/K [1411 0 R 1410 0 R] +/P 2041 0 R +/S /Lbl +>> +endobj +2041 0 obj +<< +/C /Pa16 +/K [2040 0 R 1412 0 R] +/P 1692 0 R +/S /LI +>> +endobj +2042 0 obj +<< +/K [1414 0 R 1413 0 R] +/P 2043 0 R +/S /Lbl +>> +endobj +2043 0 obj +<< +/C /Pa17 +/K [2042 0 R 1415 0 R] +/P 1692 0 R +/S /LI +>> +endobj +2044 0 obj +<< +/K [1426 0 R 1425 0 R] +/P 2045 0 R +/S /Lbl +>> +endobj +2045 0 obj +<< +/C /Pa15 +/K [2044 0 R 1427 0 R] +/P 1693 0 R +/S /LI +>> +endobj +2046 0 obj +<< +/K [1429 0 R 1428 0 R] +/P 2047 0 R +/S /Lbl +>> +endobj +2047 0 obj +<< +/C /Pa16 +/K [2046 0 R 1430 0 R] +/P 1693 0 R +/S /LI +>> +endobj +2048 0 obj +<< +/K [1432 0 R 1431 0 R] +/P 2049 0 R +/S /Lbl +>> +endobj +2049 0 obj +<< +/C /Pa16 +/K [2048 0 R 1433 0 R] +/P 1693 0 R +/S /LI +>> +endobj +2050 0 obj +<< +/K [1435 0 R 1434 0 R] +/P 2051 0 R +/S /Lbl +>> +endobj +2051 0 obj +<< +/C /Pa16 +/K [2050 0 R 1436 0 R] +/P 1693 0 R +/S /LI +>> +endobj +2052 0 obj +<< +/K [1438 0 R 1437 0 R] +/P 2053 0 R +/S /Lbl +>> +endobj +2053 0 obj +<< +/C /Pa16 +/K [2052 0 R 1439 0 R] +/P 1693 0 R +/S /LI +>> +endobj +2054 0 obj +<< +/K [1441 0 R 1440 0 R] +/P 2055 0 R +/S /Lbl +>> +endobj +2055 0 obj +<< +/C /Pa16 +/K [2054 0 R 1442 0 R] +/P 1693 0 R +/S /LI +>> +endobj +2056 0 obj +<< +/K [1444 0 R 1443 0 R] +/P 2057 0 R +/S /Lbl +>> +endobj +2057 0 obj +<< +/C /Pa16 +/K [2056 0 R 1445 0 R] +/P 1693 0 R +/S /LI +>> +endobj +2058 0 obj +<< +/K [1447 0 R 1446 0 R] +/P 2059 0 R +/S /Lbl +>> +endobj +2059 0 obj +<< +/C /Pa17 +/K [2058 0 R 1448 0 R] +/P 1693 0 R +/S /LI +>> +endobj +2060 0 obj +<< +/K 1455 0 R +/P 2181 0 R +/S /TD +>> +endobj +2061 0 obj +<< +/K 1456 0 R +/P 2181 0 R +/S /TD +>> +endobj +2062 0 obj +<< +/K 1457 0 R +/P 2181 0 R +/S /TD +>> +endobj +2063 0 obj +<< +/K 1458 0 R +/P 2182 0 R +/S /TD +>> +endobj +2064 0 obj +<< +/K 1460 0 R +/P 2182 0 R +/S /TD +>> +endobj +2065 0 obj +<< +/K 1461 0 R +/P 2182 0 R +/S /TD +>> +endobj +2066 0 obj +<< +/K 1462 0 R +/P 2182 0 R +/S /TD +>> +endobj +2067 0 obj +<< +/K 1464 0 R +/P 2183 0 R +/S /TD +>> +endobj +2068 0 obj +<< +/K 1466 0 R +/P 2183 0 R +/S /TD +>> +endobj +2069 0 obj +<< +/K 1467 0 R +/P 2183 0 R +/S /TD +>> +endobj +2070 0 obj +<< +/K 1468 0 R +/P 2183 0 R +/S /TD +>> +endobj +2071 0 obj +<< +/K 1470 0 R +/P 2184 0 R +/S /TD +>> +endobj +2072 0 obj +<< +/K 1472 0 R +/P 2184 0 R +/S /TD +>> +endobj +2073 0 obj +<< +/K 1473 0 R +/P 2184 0 R +/S /TD +>> +endobj +2074 0 obj +<< +/K 1475 0 R +/P 2184 0 R +/S /TD +>> +endobj +2075 0 obj +<< +/K 1476 0 R +/P 2185 0 R +/S /TD +>> +endobj +2076 0 obj +<< +/K 1477 0 R +/P 2185 0 R +/S /TD +>> +endobj +2077 0 obj +<< +/K 1479 0 R +/P 2185 0 R +/S /TD +>> +endobj +2078 0 obj +<< +/K 1481 0 R +/P 2185 0 R +/S /TD +>> +endobj +2079 0 obj +<< +/K [1483 0 R 1482 0 R] +/P 2080 0 R +/S /Lbl +>> +endobj +2080 0 obj +<< +/C /Pa15 +/K [2079 0 R 1484 0 R] +/P 1698 0 R +/S /LI +>> +endobj +2081 0 obj +<< +/K [1486 0 R 1485 0 R] +/P 2082 0 R +/S /Lbl +>> +endobj +2082 0 obj +<< +/C /Pa16 +/K [2081 0 R 1487 0 R] +/P 1698 0 R +/S /LI +>> +endobj +2083 0 obj +<< +/K [1489 0 R 1488 0 R] +/P 2084 0 R +/S /Lbl +>> +endobj +2084 0 obj +<< +/C /Pa16 +/K [2083 0 R 1490 0 R] +/P 1698 0 R +/S /LI +>> +endobj +2085 0 obj +<< +/K [1492 0 R 1491 0 R] +/P 2086 0 R +/S /Lbl +>> +endobj +2086 0 obj +<< +/C /Pa16 +/K [2085 0 R 1493 0 R] +/P 1698 0 R +/S /LI +>> +endobj +2087 0 obj +<< +/K [1495 0 R 1494 0 R] +/P 2088 0 R +/S /Lbl +>> +endobj +2088 0 obj +<< +/C /Pa16 +/K [2087 0 R 1496 0 R] +/P 1698 0 R +/S /LI +>> +endobj +2089 0 obj +<< +/K [1498 0 R 1497 0 R] +/P 2090 0 R +/S /Lbl +>> +endobj +2090 0 obj +<< +/C /Pa16 +/K [2089 0 R 1499 0 R] +/P 1698 0 R +/S /LI +>> +endobj +2091 0 obj +<< +/K [1501 0 R 1500 0 R] +/P 2092 0 R +/S /Lbl +>> +endobj +2092 0 obj +<< +/C /Pa16 +/K [2091 0 R 1502 0 R] +/P 1698 0 R +/S /LI +>> +endobj +2093 0 obj +<< +/K [1504 0 R 1503 0 R] +/P 2094 0 R +/S /Lbl +>> +endobj +2094 0 obj +<< +/C /Pa17 +/K [2093 0 R 1505 0 R] +/P 1698 0 R +/S /LI +>> +endobj +2095 0 obj +<< +/K [1513 0 R 1512 0 R] +/P 2096 0 R +/S /Lbl +>> +endobj +2096 0 obj +<< +/C /Pa15 +/K [2095 0 R 1514 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2097 0 obj +<< +/K [1516 0 R 1515 0 R] +/P 2098 0 R +/S /Lbl +>> +endobj +2098 0 obj +<< +/C /Pa16 +/K [2097 0 R 1517 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2099 0 obj +<< +/K [1519 0 R 1518 0 R] +/P 2100 0 R +/S /Lbl +>> +endobj +2100 0 obj +<< +/C /Pa16 +/K [2099 0 R 1520 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2101 0 obj +<< +/K [1522 0 R 1521 0 R] +/P 2102 0 R +/S /Lbl +>> +endobj +2102 0 obj +<< +/C /Pa16 +/K [2101 0 R 1523 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2103 0 obj +<< +/K [1525 0 R 1524 0 R] +/P 2104 0 R +/S /Lbl +>> +endobj +2104 0 obj +<< +/C /Pa16 +/K [2103 0 R 1526 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2105 0 obj +<< +/K [1528 0 R 1527 0 R] +/P 2106 0 R +/S /Lbl +>> +endobj +2106 0 obj +<< +/C /Pa16 +/K [2105 0 R 1529 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2107 0 obj +<< +/K [1531 0 R 1530 0 R] +/P 2108 0 R +/S /Lbl +>> +endobj +2108 0 obj +<< +/C /Pa16 +/K [2107 0 R 1532 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2109 0 obj +<< +/K [1534 0 R 1533 0 R] +/P 2110 0 R +/S /Lbl +>> +endobj +2110 0 obj +<< +/C /Pa16 +/K [2109 0 R 1535 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2111 0 obj +<< +/K [1537 0 R 1536 0 R] +/P 2112 0 R +/S /Lbl +>> +endobj +2112 0 obj +<< +/C /Pa16 +/K [2111 0 R 1538 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2113 0 obj +<< +/K [1540 0 R 1539 0 R] +/P 2114 0 R +/S /Lbl +>> +endobj +2114 0 obj +<< +/C /Pa16 +/K [2113 0 R 1541 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2115 0 obj +<< +/K [1543 0 R 1542 0 R] +/P 2116 0 R +/S /Lbl +>> +endobj +2116 0 obj +<< +/C /Pa17 +/K [2115 0 R 1544 0 R] +/P 1700 0 R +/S /LI +>> +endobj +2117 0 obj +<< +/K [1547 0 R 1546 0 R] +/P 2118 0 R +/S /Lbl +>> +endobj +2118 0 obj +<< +/C /Pa15 +/K [2117 0 R 1548 0 R] +/P 1701 0 R +/S /LI +>> +endobj +2119 0 obj +<< +/K [1550 0 R 1549 0 R] +/P 2120 0 R +/S /Lbl +>> +endobj +2120 0 obj +<< +/C /Pa17 +/K [2119 0 R 1551 0 R] +/P 1701 0 R +/S /LI +>> +endobj +2121 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +2122 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 2186 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 2187 0 R +/FontName /LPYXVC+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +2123 0 obj +<< +/Filter /FlateDecode +/Length 999 +/Subtype /Type1C +>> +stream +H‰|PLe¾ƒö +´¹ +xlé‘»/ F7 °"FÈYÝ´ M3aízŒ +´p­-„mvYÈ +-uh¶› ¢,32˜âf˜ƒ`ÌȲŒDŒ ƒlL,ÉŒúûHôZÿñ/¿?ž¼Ïó~ïó~ÏGª8‚$IƒÕºÛj.ÍÜÓ.:mŽ*Ñmšvw“#Úåe–” *9]ÇàIW>9¨†[z˜O¾ý$’BÄ‘äüJ™»E>ÜàEÛ‹ŠLYQÌaa2åææÆ0•:ÜvYÚ=^¡Ùƒv¹¹Å·hó +#*mjB1  ú¢â¿OBNœÞAD6¥yØ©Ì‹‚yE›Ch¶‰Èíü‡ÖÿÏ*ät!Å íw9£ÌâUD²¹9Š‹;¶åûm—Wt +cN…¥º½E@/ ‡PO(‡$’‰"•ØDdÄ>¢†HR>‘ØCTÄ©"ÛÉaòï¸Ýq}áФüë$©`Æd|H%׫6‚Dð4ƒKà}5¬Rᯈ’÷4Tm¬†¬pJžb¢Ž2ÓGrÛ#rž‚VÐÇÃÐúVgàt\Ëckø.N‡m,ä,Â& úe@x;Ìf~¸b™8WÈ+«¬[S˜‡Âîë 3,=è[çü$@4Юs6A{KÝCÑ¡ÇrÝ ¿)»ä¶´Çx GssB ê?W€2üYþgít ¸+ùê¡ËßdïòÆ«|wAY1ÎÆ[JvnÞ¡¡+pnÒ~!‡?$ÇËæõg™#a¨%hû)È/©&O ÷#»8PZÛÍÓsƒ>yËZÀŸ2£Ä©}ê™4¥£>Ÿ{÷ ÷éÙ‘Ñ öÛ‹5å<¾z¸¦cÞ×Ï¿Xó¦àS"§ŽwΩ1AElá=X«ôÉþ”o”«ÕŠÙ¸Ü-w0X¿¤Ž pMǬ¬¹uj‡~EÓ༅šŸܘäz¨Ô¶ÞR5T×ç]7¦ ô;’Ü!A¦$II®—æ$"µI`ŒI ŠtGJäíuºÄN»’zíÊiN¾ü´|’ùG€æÓ݃ +endstream +endobj +2124 0 obj +<< +/Filter /FlateDecode +/Length 1607 +/Subtype /Type1C +>> +stream +H‰|SPgÞ%Ù]L‚l{Yfw¯£sgU¤ëa[¡âÑzðj)41‹`0$&`°­’„$b; R°¨(*”Z<áü1Bõ{µÖi§êUà(x^ëõæÚw¹?nCçæ}ç}žwÞçÙ÷ý¾Å1e†ã¸öÕ<ý†5Kr«meÓF›u™^ÜQf´–›"UAbqI«”U ZB‰Êî½IÀu LÍ¿‘HÖÇcQ8þÕÔZk…ܽ­Ô!<—–¦[‰©sqåRA—œœ<S… “Õ( +új»CÜaÖ[¶ZmV›Á!š’„ŒòraNÂ.ØD»hsFÈŸ¾I(³ b™£T´ ¹¸­Lî·‰&Áa3˜Ä›Y°F*ÿKþ•Pfd-!ßRAz‡LڃŴ\V±Î¹lµî´8le¢=iy–>¯ºB~%˜Ä Ãå›…-À°E¶ÃÖ`X†å`Ø+8¦WDJ8–‹mÄÚ°K¸¯ÆïFQQî¨?)(Eâ®r¡rò +®~XúÛ0.DžÊz¥äÙ8ë%!„F´Þ%`šDºÌ@̾CÍ’Es9¬F2&¥KL$C¤FÕžGRÕ#ü,ÄA%hplf1ƒ–®@‰¨ˆG[÷P"<ËÂò°DÈ[zŽ÷.cîöèД,¦¬Í.~º+ýîßbÕíÎÎ…ƒbàI€Øn!‰téíIû1$ÕõßKÅOpøNö’ª¾GmAêÚÄ?L©ýaÝ7haZ¦E,äzR‰cg†N^cvýî·¼ÅÚt´ =³:óé—(µg +Z&!á1~Ôà‚ù +)gæLMÀU_áMÚ—n~US´Í×¢Ôq¤pß&øtê=¤ÌÙRYbæ¼ä{“·¾†Ä÷¢CÇÚê[Y´rÖÉüÚx{ÌÇ …s}ït^`ï ä¿”nÌÛÀ«açÛßJžÇøg / AñY9Ð¥î ~ìºþ sd`TZ ¶Þ˹Ì]ÊM=ŽâÙ5Yöæó Ñ1t†úXH{-öóèÅ¥)(5ÀÙ*ëC»xõzÏ?¤¯äµ"G`€ý ŠyÓ¼ÎRqè‹«ù%Q{üüþ³,h'oÀ+¼´i(õ°gB÷¦Çã#Kx4t´9áÀ)ßù´IýPôJ^ýçÎm\Ç Dû™á–‹ìXS™ßG¡—ÏE-=”q5óÛ?þáDï).DÒ5ïæô^döùk½{¹RÏ6óÖT~ôâÝ?¿?îãÕ#µÓ?±_ãÝ0¶C´B²ƒÈƒ­hÜ H‡’ÓX´xúYÐÝi:rŽ«~Hì.1îÛĦgõNxù1åpÃéO¿`´eùy5*jwJn×$ü,~8´âèiØ” ¹Qܬ›¢ÿ~c&‹1Z-bÉ ËÀù'?ä{ý•' ¬ZÒÊ}Ï<ñ¸âo +²zŸJ¤ïßJó²9ØÜæÎ6võ\`¯x=›GÝ2?H5‡ZBa®»©ëÔ9v´óõU<:*óý$§]]µµ¼¶ª‚sìv¹vUDûÈ+Î×z6°iÅE¢÷’ôÐ;ÄÏÉ!P¨×ªü¯ÈëÿRvŽƒ>²9Ðr°‘û°él÷ûÉñ‚u<ê”oÌ9 +’R®>¿ªà Ñ)ß=zpÿçÂþ£¶H£ò¸:#zºIÖÒ@I_o6¹«ý½£lK£Ïw˜§› š¢¯kßìa7o*Ͳóu$}²nšÈPq p½Vm¬€‡øÌ{,ÿ‡=Œ«çòîQ˜OoNðþ;ÆÁ”ÓѹG-]ÚSíïsïiç:Ɖkas>‹ˆÌ—WðþMý›ÿº=úcgÛ®íZ³}g~qAë+§jŸÀÈ>*ŸôˆAQë–ßFÕÔ†pñq+gû ·fí;ÝðN+ï{Dx=n¯“-twò`†˜)<¥…çIväÌãoÊ3æÉÓJ~ÉÍ ú=¹ÛûV‡+Ë\º…Í©¼tŸ‡V™ï£PÊý‚¿Œ_înç‚$]u(ƒŒôõû.ŽhÕ{Â’; KÂápG˜D%áÏÔLU…!iŽŠ–©/Ã1\»±XS¯ŠššØ©Ã*•tæ)©ˆù·êã +endstream +endobj +2125 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +2126 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 2188 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 2189 0 R +/FontName /KUZWXD+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +2127 0 obj +<< +/BaseFont /UNRBJE+Wingdings-Regular +/CIDSystemInfo 2190 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 2191 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +2128 0 obj +<< +/Filter /FlateDecode +/Length 360 +/Subtype /Type1C +>> +stream +H‰bd`ab`dd”Œôò õ ×ö­,ÊLL (Ê× JM/ÍI,IJÿfü!ÁòC†Gô·áï¾_¿~ù°~?$¸þ‡„#ã­çÎù@}é% +†––F: ÒLšë(€IÇ”ü¤T…àÊâ’ÔÜbϼäü¢‚ü¢Ä’Ô=Çœ°Å +E©Å©Ee Aˆk2‹R3K2R‹’é™@ýE©) +%E‰)©¹‰EÙ +ù $n«2ó€f)„æe‚xÁ%@Áb…ļ} )ù`[’óKóJŠ2S‹õôÝ‚C* R,RRÓ@¾õ üÑѽ÷Ç›½Œ@Re/s7ËŽŸ:ؾ÷ý>*úÛîûdÖï/Ø~+ü> úÄù3‰ý[˜ýÝî7Ïöc¿(ˆõÄãûžÁW?ýGÅôïzÓ§O_<íwÚôÓÙå$ÅópvópŸãzÌý¸Ÿ‡ ÀÔj¤– +endstream +endobj +2129 0 obj +<< +/Filter /FlateDecode +/Length 999 +/Subtype /Type1C +>> +stream +H‰|PLe¾ƒö +´¹ +xlé‘»/ F7 °"FÈ2æ-ÃI&¬]Q®µ…°Í. Y¡?64ÛÍ „(ËŒ ¦¸æ 3²,#ã S‹F2£¾Ç>½ÖüËï'ïó¼ßû¼ßó‘„*† IÒ°ÏÎÊÚ7Ò÷vˆv‹­Jtfš…»ÕÙl‹ty™%eƒJNÕ18‡SU£Oªá–æo? '1$9¿RâlU†7ºÑö‚SFs£˜ŸLÙÙÙQÌEÅ6§U@æ—[hq¡ÝŽCN±Õ)Z܂͈Š››QÔÂ…DÁ%ˆžˆøï“Ý…»»Q‘Ei¶+ó¢`CnÑbZ,brF:ÿ¡ ÿ³ +ÙHñBûö3»Ñ…,[–ââŒn9ä|Ûá킢Uf®îhÐ È&4Ê!‰D"‰H&6éDQIÔ Ê'{‰*b€˜"Ud9LþórL_00)ÿ:I*˜6PÉþõª ?a<Íà"xO «Fø+"dã]ÍU­¡+œ’§˜H…#ŒÆã´ï‘Üþˆ§  ô±0´¾•Áy8×ñ¸6x§Â6²aP½ÞÎû3™®˜p:ÎrJÊëÁä!¿çú KzÖ9/ >ÐÆ‚/´ë\…M…ƒFÐÞR‡(:ðX®_#á7e—Üžò„47'Ô þcq(ߥqZÁ.‡p€»’«º<ññMöþ'û_å{òJ +q&ÞR´kó í[óËò 9 4x!1V®X–9ôZýÆ…M•æ¸òŠºgp¢ç>À:0÷%âæÜ»XUQÛÖÐÄù© Ë3÷ õB\xh ÐÏâü ó’uv©›ï K§Ïpc\½týþê¾…Öê=<|¿ËóJ4Kä›,ÐÅàøƒM¥ŽÖÞ^/wä9õñ‹_t°`X¾ ¯ðòn¬×Ð}ÇW!i ´÷ÈQH€· .VvÀ„Άú?4üõ:¤`Î.ÀɘÅ[W·ivú\ß5®ã¾úhƒõÄklaÙg?ùù%Õäéáï~dŠëzxznÐ#oYóy“f”85 O¾3“¢TcÔûÁó§ÎrŸž`¿½XSÊãK ‡k0æ|ýü‹5o +%ròxלTØ<`6г¾µrÜéMúF¹Z­˜Ë=r'ƒõøKê¨ÿØI×|¬©±–­h›Zà¡_ÑÇ48g¡æç7&G¹•ÜÞ[¬‚êþ¼ûÆ´~G’;%H—$é#‰Â Òœ¤Q¤v ŒQ)N‘îHñÜ µ^ÐiW@¯]9£ÓÉ—Ÿ–O2ÿ0î½Ý… +endstream +endobj +2130 0 obj +<< +/BaseFont /ZNXWOK+Wingdings-Regular +/CIDSystemInfo 2192 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 2193 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +2131 0 obj +<< +/Filter /FlateDecode +/Length 602 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaC ËbRܺtÐVgÔ1Ý‘™qméÐAHcKÒˆ¹D Âsu +±CIDxHæ1„&É‚߬O¡o¶K§¾Ã÷û½ï÷{G¸ÂŽ”®Kí—k¥Œ®&å]«O(Ãj6$·h)9ÿé N Ð9ìñ(Nítí\ô‡°rðm® ”+ dýk‹6Âüý&=ÕÔÔPçb4§ëhC$Éc”6ËZBÃT† Ú–êÕôMOšŠ¢ÍCC4aP]1=튷¢ªAÕPtšdÍ~•ùuE¦¦ž”•á¤~“jnçÚ÷ŸQTMQ–E¯¥T—%L&4™’Ã,EËOéÕFS¦®*F(Üš¸šQè*+}{Ǹ0á9/»'q&÷šøHÕ“ì‚ó}0<²àÉ:“¹ŽÝI¦ðˆqxä›GŠoDpÉîŒo—ïÊ×GÆygQt+t™µap$›,m{`Ý¡"FA‚¸ó{1xeã%„(/<žMçbcdi®|ó@¨ :|@'6'>ðOÏÏŸ“€Çå?r±zìä±dºæacðŸþ¨~1ߣ^–ŸØ‹ñBfÜvîÛä9x <ÏÅE¬8‡ÕØ…ÝËX(Þø 3Ж€0VWÞ ‰+Ï°¬Å’Ö Úo8U̾\)̦Õ-¶w lÛYa „^¸c9·-¨µ,kÚâñ†õÉò1é–!&ÍYû°ÏZ³Š‚³=Ýþ¢¬¿xmÿv±ã?䌉_†& +endstream +endobj +2132 0 obj +<< +/Filter /FlateDecode +/Length 3278 +/Subtype /Type1C +>> +stream +H‰|T{TgŸÉd&‘ʸ’ÚŒ;ž-V­¨•(ŠøÄG$Ac‘„@yµJÀ G닧UÔÖ.J"„D±jÕU«îZ«[ðQÑ*k]ÜÕ½“~aÏNèÙsúÇž=sÎï~ß½¿ßý¾‹cR †ãx¿¥3>ŽUTo2é5Ú“at¼~í:s`‰àB¨Tø}oFå¿œø%†„+}Àß÷â€àÖŒÀqi{gêªÔé£xZ<¥;iÒ¸Q;¡ÇFR‹ŒŒì±T±ZÃ*qS¦Y·!S5;=Å`2L³N¡ŠMKSõ@dªLºL);0ùkN*}¦J§7¯Ó™Tqq­^ Uänò)5”j¢þ-‹”M—“ËåóäÞ^x¯E½ôzÄ•uÁ;Û{cÉe^á¥í`/Q&J| þ +ÊÑ%M=$<§ +µ2pü»e~jeϦ ѧ„sL`„Úh&ü(Ȉk(˜©<ÞTõÝøâþ›ÕF„åiä´å)~¾xaaê*9šW“™™»1ƒÏ,­Ê>ÂÒh‰/6·q2…ï|zr…þÜ­'é‹SxêÀí¸á%`§o8ƒð°!¨˜G…å/»X}R(€¬è×HÆoÕ2 iF}Ĭf,Øh50Þ¼ƒ§Ê\ÂÝÓ¸ ñÂŒPºc“5»Iˆ†÷ŸÿÞUÞ[ñ±³u®f=yäxËWWYœ˜‹¤“#Ñl4ƒŸ§&7ÈD*pòW6Ð-Ò©éÔŠtrzèäaýréÿ"i?” '¼<_–ò¥ð¥âž æ² +m÷E‘+(TÒ%zÀBV8™C*žlÜwr¯Cn£öê>ÓW&·£¬þôáb—às‰ª¡«ÌF]bÑ|ÍA0‰Œƒàã‹ž¢Üz¾ÒIîË^Zó>‹Ö!BÉh D†AtûõÊêzžþû6§ÐåÄÛÝÂG¢}³­ÅSzNÔ´Ë~ý2åÛcO_)_o¸›tû&1â¨?ÿÓ-Kx÷Zf×®]âÆ´NÔ M-åÑb +Fi펎þ Ì -NØ&„0á†ýàp¢ÇÝQðÚ‰¾†8LѨãP¶/*'°«ÝÅtG¹}Q2úYÙµÕÙ¿®‰*µ7 !nE2¼ +/dŠ4–ÞÙö€³í8×ü‘÷Ã÷`¯Ùä‹JFO(EÕÀSvGrÖÒõ×µJzøª‘+»£(Z#ê~ÕM1|ÕB´‡ºáêªcûéUµ#ª£*öæȽTÁ±B¯ùMÞ]ýÙ¤*¹MvÿØùKÏ”îMMéǹíšñìŠùÛ6¯áÝzfgUý®föí÷šÁãfÎãU=±Ø) '~Ù •nâôI&ãäÍ—X|ûÇŸ»¼ˆhâGØWÛï*[n~©qca5Wí$+ÌË«âYDMš>æz"à:þ¥Î±jªr¢zÁ°‹jŽê8z’(íÄA×B€.´ÅGƒÑéÏKEÿÕâòõh'H[zäóGÈК·qbí ýR8aèrÿHš4e:"†ÅÜ€©œ0RFGXœ[²a¯"œ!/lw+ò…ÐÐm V‡] ód3þ‰øÕIE髹Šud]ý™}§Y v|6j¹²H†Û†ÏB„Rá™Ó4óo÷Zså”"wiFáÙl-.)æ’sW.‹a—®8q dÀU¾)áé]¨ÂrBÚÜð¤E‘½CžòI5Ë~1íûðG0†Dw¡à¨úÞ +IöwŠøk­«ž; õLUùòý܇¿õÜf¿<Ix…õ‹$P·ÜÉæ¬û­û÷)é¡â‰vá®ñþ]b,©y XDLn‡¾@ÞxLkC~á¾ÊAظ¼*EƒÃÂÄ×1ä§aÀßòÖî;ÄÓ%¿ÉØÕ?¸a‚oƒ.Xe®¬ÅY> MØÁ£°Žpê¸èi­ãlb¶å‘d#e­·ž>¥:eÉþL¾µ¨¤Sxb²ç¬Œ+žô +0è{ãÙ›û’æTñå…¶M…JZ]ì‚õvøлÜð—æ‚•±í)Ûs@yk„£±èwcÄ€hàãaÀ=ôÔî­æŠìd¡qmÁ 6<ú2Dðåvæ»=ÍoY2«”§‘Øs„¹vXáĺ è*b2vÄ“ýTÓÞñEÍÖ­¸ +;¹§À¸'MM)LOçµÚ‚y±ÊŒ8Ý-ÿ\]‚tNøÐ)D:,ÿ•¡MˆÌŒâ¥õÒJ9s’Ïb"Éxƒú=Á/œñÔñ¶™4mñPurõçë¹\-i¼2u}q®‘KÏ5gåV¸•,¶žg"Œ9äBnÜS»ÏÅ#˜“ýf™¢ëˆo“•›“•U±ñóºÿYµ1MQX„{«BªáRWzõÞ-Ù$87ÝœSsÓ8%ÃQ(U 8AD>"n) ´vXpÎÑ/ŠPd«®-`åüà#cÓ)?œ#Üæ&[‚#Ó%žë^ì½5dÉÍ}“7yŸçœ“ç<çØ[Ú\\K).åo¸U"«Hù\…Aà\0–ê ¤­âµ„šê' ͧ¬ÌsàÚ-z¼7t‡QIs£ÇyÕðK?èÝæ°è<ßH`; +éHOÉÓbʹŠ£ºÃóLähYŠ½1#kwk"©~ã/„š4kÌyêÙ2¼¤öðÔ¸È:@Úæ»–áÀzf¶ =؆˱1I\Ä` +ƇÿqxÀnÀ’ À3l2­‚^†ÂÑœÕh=Z>½=ƒ…?Á6ˆY=ƒ¢ÙÏñx@Ò5háÆÕ1±›AÄÓ!˜ RÜàhËQH¡ªg;üñRÉxè4“Ê £‡Æ°(Ÿ<„xí½'hẚŤ&ŒSD&iÎ4§%)xµÌÚho°2Ôãû­wf;|ŠJŒCs?Üø±ŒÅímµ*¤èN_Ù¤¢ÆÄܤÃì0Û˜q+?ü}æt½é4Û'9YwüdýIjZÒQ‘Ìcz,&žaNMÛ±k¯ïáác>Ôï’•¹/Wñô_7'ïføâ»Øí_lPøݾÑÀù +½ƒiñÍŹV5ýVò§[•—÷Ý/`Ç +Ý…{©²>Ø—Óì(b¤¨ƒ®ò†ÌBg„¿ehÑûš 4,Q}™ÝVÌ”:;«/Ñm§¾p°u¨/7Ó)Zß( ·`©-V"­¬î­¥9Ž‡O]öànKG×H­Akà˜´²ÕzEÞ½Xp¥#·mR0úëà5»h>Ú†w ?iò˜¼½ +éŠúyA(»O±cØù¢”è%a¯PJ¤’ˆDW ÊSžQ±_—õVÕÍõhyWåRø¨~XXЇ°ëy<åq‰c‚§¡… ÆÎ:¯Û†ñVbMvìmU>Bgåw-ÆU‘ï såJ.­&3c^áúµ#+¡]žI¾‰:ÊvW¦èÕÑ'Èš>] bhtÈ¥¯âCš„u¡M"ÉÖJ¢±Æ\gPLc5S²+?»¤´°0¿¢¤Öž-·4^´yÝßöü>±ð:ü+O!ñr“ËÑçÖ`ÂÚóUÞª‹x½-—¦ƒÞÒ%$†vA‡L#$z%RXÜ垺7.L»C|ÝÓ=BdO(üù| ÞyÑ+ˆÁÿÀ'^tãa10X¯›>Q<›Ë E Uh +ÃM² ÅâZ…ÃJX‹WЈeA¤²&Ý~{2·ËnoIºý[ÓIT–hª³è7Tc““}wž\ª6G ~Ù ƒ?³Ë +endstream +endobj +2133 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nPÒ$¶“iìnÅÆ QŒDÔ„ADÁUÀEf`FDqx©Ã0y8Ès¼D‘e*,Í–kÔµ6µ›Y³©Ý­ÊirMÕö`mÕþÚºÕ§îyÜs¾sú»ÇÜÝ0Çç©·ÆlܹL] ×&§ÆèuË7HNÉt¹‘ÅEÚ]ôõbPªö•/ø¥Xw¼á‡÷&}=|ç`n8þüo›t9ÒÑôŒ<áõkW¸dðŒü8@X¹bÅŠ,„¥êöi„ØCž&Ë Dd§èô9:}rž&5P;p@˜IaôƒFotß´A£ÍËÐè…dÉ™®•Îë5©Bž>9U“•¬Ït.Ïÿ¨iÿ§” Í¤\ÂŽl­K‹Í“Œ!9;5HÊ¢›©’¢ËÏÎÓk5†À Ïcã +r4Â!U“†a¸´°w0l1†}€aáØFû ÇT¶ÃÔ2,Ö KÄ0F*¦Æb0=öûÃûÝ–»“±2ƒ;á¾Ê=Â}RÎÉ5òÄ<"™h(¶‰¯‡pIú ɬîâ‰é˜7'¨Bw +µrøž@aÀ¥¼©!ßI3{E’Nˆ·×¹4 +MRÈ„<á~ NÉ€˜Ñïÿup^¬(\šã—¾Äƒ‚Ýe ˆÀáå'›¨fÊ{ï{É‚ÜÎÝù#ÿ`øÖÌW»‰ß† sƒªbØu¡ÇJ¶ñæ2¶ºf[ Ø35š‡VmAž6þè!«­„§P²Ã8½ÚäÊ-›˜^Íüº"¦W“ÔÏ#œÖÀû’/A%›ð‘6';ˆÑs‡BZø¶5Í;ëM &ŠÎçÿh|tèŽa ©Õ£ši½ï[åÃͽ=\ß®°Ó~쇡奻xGÞ”Û%ö^En—2>UÎí&¨ábX*ú?>‘àjYcê{n|ÁBüwÿWq“èëüêîôÓ—”m·,êàúÀOÞ–´½1„E¡þAh¶ÿ“( Røor;îWj³Œj•ÊáØÇQ}V »nƒ@͹›„Mt¨hñ)?gt*!„ï˜WhýâÏt…™\7"å­Ý·[n±“ù&þ8‰ÖU YÛBI'­ØøÓˆ³ñj/WEСõ{åt«ÔL‰µÄRÊå”ê +rÙ,cS×À5ÇcžúÉ nqà Å4gT ‘ôaØëC;kîËmD\Ï탷X À} +>ça™mÕß‘'•`HÓñp Õ›a‚>m‰²dr=Lm¥´¸Þ“ç{Ù{âU<í\¯MùmºîbWWQSQW§t•]„9Š`¾«n—4Ö`PÑNqÖtƒj,dW~RÓy, @k+yôÃR ÆîžíálR¹•‚ Keb\)“´S‚qˆ1WµsûËu¹él|Zÿ“É _Þë»­­á+K­¥eJª£ã@ý fá]°ü!D&VA$Se¯>ß©6<ÑG(" ù#­ø1ÂÆ¿ªi¿Ëå—üÈž=Çv³QÛÏ\-—ú¦˜®*‡s„kØ©ã©¿ Ìó XóÛn–HݼßÍ ýº|§ÜBôçî;»•EÞþ~(-z¹ ¼œ×›û:y[>ñi|Fdllks§E¾rÃ࣢‡ì7OnŽñwo5¿x©I¿xn¨êäaÌÖÂÅ\N¹!?Ÿõû¯xúõ³+×zÎ3j¹Ê²Ê©U‡Q4›¾†Oqé—ÊÀì#š¥™É¿NÿŽ‰MOOHìÕŒŽ]î»É;+2.DzRøt‚i&vÔTÓ HEPð«tÃø™]¼ØžÒ7K"¥SŠØDÐ/ —´[¾8Å5×4¶÷°ýÍéq@‚oôÓû³ËŠô\nQ¾É¤÷°NcBGûñÞDCœ eãr´Œ°%Ù¶oQRS‚_`±ù-3ii¦7\øú)t“ •§«ë¸ÖÚ¦ö^v mÿvWu•« +«~†Èµ»s 8)ãÒûrôߌÏÍRš %DCDËà¶heÐ'~‹Ð + Är‰Ìý³ôŽ,]üoÈ—#šùòŒ:ü“œ]‰±†±Ç“m“wyJ€MÁ:³é¢éì 8ºò-°18NÚ+ëmu\Ýå3#lëiˉž®ƒõ$]YUTf-d“£ôr]½ž+Ÿ’£@¶϶{½’Š)†w¡¼ñk°á2„É:ÛÓÕñ#Yxüõ+¾âiCt{lk-¬oR¶µÔvõšÏr@É3w4D³ˆY³ù7|Åö+1€i=F*-P.Ñ$E¶5ë8 +ÑÅ°½g PÌy +›éœ§âããh¹¡)¡3‹Ë=½`„ì?Yãàé+0Ÿ´±d÷i¿Ë‚b1$e°Â"H…x»)k÷#¥»œi#º:.öt\’(â§øùÍJ´vœ ³äé³2д\Aµ‹f;,±Ûíív¥Ù'í¤d:h‡À“‡dzj÷äûöxyZ½fƒb¨fƒ—½ÑË nÌk˜ÿ0ÿäÏ× +endstream +endobj +2134 0 obj +<< +/Filter /FlateDecode +/Length 359 +/Subtype /Type1C +>> +stream +H‰|OKQÅgLGJ + #î¢]æ?„r#ˆV–µ-Fç©C:#oÆÈU[A0¨Ålƒ>@Ÿ@Š mëhë¢íßËç¢÷¦M«6‡û»‡{î½²ä÷I²,¯+åƒRic¯ M¯`kó5{m 3Fc2úéjXei6šN§åy^z ÑeÉ'ËïE«Ëçš-Ò¹\&.4ëéV2©TÊÓ,t«† Ú·Ô±a׬[¸kaÍAz +í6x6`d#|!š¿×€a2œ q³iðyŒtp°¦£Ž†ÏÁÎlü³ + xœ˜† ªÃ›6h¦žä)–·¥nõLÈN$wªÇý.‚mÐQC’Ä·û‡t0Ó¯±Ìu}<7ôÓÁwe6PȈ½¨,OnäSaÀžT"`vœ)§^MòŒ³BUQ1AÒŠ\¹ôÒ% ×uï]…5Ü77¸vW; ÏáׅIhr^ü`……¤e +endstream +endobj +2135 0 obj +<< +/Filter /FlateDecode +/Length 998 +/Subtype /Type1C +>> +stream +H‰|PaLe¾ƒö +´¹ +xlé‘»/ fn@aDŒ!2” -t†LX»£-\k a›]²BKšíæB”eFSÜ sŒYƒ‘ˆqa)ƒE#™Qßc‰^ëùýxò>Ïû½Ïû=I¨b’$ 5–JóšôÊÑaµW‰®L³Ðâ°¹ší‘./³¤lPÉ©:çápªjìÉ!5ÜÒÃBâí'á$"†$VK\­Êð‘FÚUP`ʈ`nó3);;;Š¹¨Øî² ÈÜáö-n´×yØ%¶ºD«G°Qqs3ŠZ¸‘(¸Ñÿ}r¸‘àð4 +"²*Í#e^ìÈ#ZíB‹UlB®Hç?´áV!‡)^¨Æéˆ0³GÝÈê´g).®è–î·œÑ!¸YeæêŽV=ìB¡’H$’ˆdb ‘N”û ‘ |"QITƒÄ4©";Èòï˜WbúCÁ)ù×)RÁ´©Ø JlTm(ãÁ{jX£0Â_1!›ïj6©ºh EXá”<ÍD*a4ž ýäöGä(<m …á ÎÈ鸎ǵ¡»8v²µ[@€ê—á]| “ùአ§ãl!§¤¼~ L!ò{®/βôwƒó‘àm,øS@»Á¥QØT8dí-u/EËõë$ü¦ì’ÛSãÁ^ÍÍI5¨ÿXZÊðgéCœV°Ç)ä®äª‡/O~|“½ÿÉë¯ò=y%…8o+Ú³u·†ö¯ÂùHù…|+WllgŽ†|ÁÖ€ñdaÓ~s\yEÝ38Ñ€s`˜€{„qkî]¬ª¨mkhâÔ…•Ù{z!.<<`qþ¦—yÑ6·ÜÍ÷‡¥Óg¸ñ®^ºÎ~µfw¡­úežFþßå%š5òMVèbpü¡¦Rgk_Ÿ;ú¬úÄÅ/ºFY0¬Ü†}¼¼ë5tÿ‰5HZí=r àMˆ‹•Ý 0½g{>4üuR° gàdÌâk;Á47s®ÿ×q_}¬Ávò5¶°ì³Ÿü²jêôÈw?²KƒÅu=<=?ä•·­û}I³J è“ï̦(Õ8õ~èü;g¹OÏŽM²ß^´”òøèᚌ9_?÷‚å Á«DNžèšWc‚ +[CÍzο^î•;}Iß(W«³ ¹Gîd°I ?åçš75Ö²mÓ‹< (ú¸ç,Z~~pcjlˆë¥’ÛûŠÕ@PÝŸwߘ1ÐoKr§é’$}$Q¸Aš—4ŠÔ.1*Å)Ò)ž²Õëâƒ:íj赫gt:ùòÓò)æ1¯Ý• +endstream +endobj +2136 0 obj +<< +/A << +/BBox [113.386 377.273 530.079 716.173] +/O /Layout +>> +/K [2146 0 R 2194 0 R 2147 0 R 2149 0 R 2151 0 R 2153 0 R] +/P 1680 0 R +/S /Table +>> +endobj +2137 0 obj +<< +/A << +/BBox [113.386 70.9906 529.579 533.553] +/O /Layout +>> +/K [2155 0 R 2195 0 R 2196 0 R] +/P 1681 0 R +/S /Table +>> +endobj +2138 0 obj +<< +/A << +/BBox [113.146 201.143 529.339 553.306] +/O /Layout +>> +/K [2157 0 R 2197 0 R 2160 0 R] +/P 1682 0 R +/S /Table +>> +endobj +2139 0 obj +<< +/A << +/BBox [113.398 377.278 529.591 619.041] +/O /Layout +>> +/K [2198 0 R 2199 0 R 2200 0 R] +/P 1683 0 R +/S /Table +>> +endobj +2140 0 obj +<< +/A << +/BBox [113.37 108.784 529.563 736.947] +/O /Layout +>> +/K [2176 0 R 2201 0 R 2180 0 R] +/P 1684 0 R +/S /Table +>> +endobj +2141 0 obj +<< +/A << +/BBox [113.476 351.976 529.669 579.939] +/O /Layout +>> +/K [2161 0 R 2202 0 R 2163 0 R] +/P 1685 0 R +/S /Table +>> +endobj +2142 0 obj +<< +/A << +/BBox [85.4567 219.988 501.02 714.75] +/O /Layout +>> +/K [2164 0 R 2203 0 R 2165 0 R 2168 0 R] +/P 1686 0 R +/S /Table +>> +endobj +2143 0 obj +<< +/A << +/BBox [85.0394 302.045 501.232 737.008] +/O /Layout +>> +/K [2172 0 R 2204 0 R 2173 0 R] +/P 1687 0 R +/S /Table +>> +endobj +2144 0 obj +<< +/A << +/BBox [85.6693 434.269 501.232 717.431] +/O /Layout +>> +/K [2174 0 R 2205 0 R 2175 0 R] +/P 1688 0 R +/S /Table +>> +endobj +2145 0 obj +<< +/A << +/BBox [85.4803 264.42 501.673 595.583] +/O /Layout +>> +/K [2181 0 R 2206 0 R 2182 0 R 2183 0 R 2184 0 R 2185 0 R] +/P 1702 0 R +/S /Table +>> +endobj +2146 0 obj +<< +/K [1722 0 R 1723 0 R] +/P 2136 0 R +/S /TR +>> +endobj +2147 0 obj +<< +/K [1724 0 R 2207 0 R] +/P 2136 0 R +/S /TR +>> +endobj +2148 0 obj +<< +/K [1726 0 R 1728 0 R 1730 0 R 1732 0 R 1734 0 R 1736 0 R 1738 0 R 1740 0 R] +/P 2207 0 R +/S /L +>> +endobj +2149 0 obj +<< +/K [1741 0 R 2208 0 R] +/P 2136 0 R +/S /TR +>> +endobj +2150 0 obj +<< +/K [1743 0 R 1745 0 R 1747 0 R] +/P 2208 0 R +/S /L +>> +endobj +2151 0 obj +<< +/K [1748 0 R 2209 0 R] +/P 2136 0 R +/S /TR +>> +endobj +2152 0 obj +<< +/K [1750 0 R 1752 0 R 1754 0 R 1756 0 R] +/P 2209 0 R +/S /L +>> +endobj +2153 0 obj +<< +/K [1757 0 R 2210 0 R] +/P 2136 0 R +/S /TR +>> +endobj +2154 0 obj +<< +/K [1759 0 R 1761 0 R 1763 0 R 1765 0 R] +/P 2210 0 R +/S /L +>> +endobj +2155 0 obj +<< +/K 1786 0 R +/P 2137 0 R +/S /TR +>> +endobj +2156 0 obj +<< +/K [1788 0 R 1790 0 R 1792 0 R 1794 0 R 1796 0 R 1798 0 R 1800 0 R 1802 0 R 1804 0 R] +/P 2211 0 R +/S /L +>> +endobj +2157 0 obj +<< +/K 1825 0 R +/P 2138 0 R +/S /TR +>> +endobj +2158 0 obj +<< +/K [1828 0 R 1830 0 R 1832 0 R] +/P 1826 0 R +/S /L +>> +endobj +2159 0 obj +<< +/C /Pa19 +/P 1826 0 R +/S /Kastenlauftext +>> +endobj +2160 0 obj +<< +/K 1826 0 R +/P 2138 0 R +/S /TR +>> +endobj +2161 0 obj +<< +/K 1883 0 R +/P 2141 0 R +/S /TR +>> +endobj +2162 0 obj +<< +/C /Pa19 +/P 1884 0 R +/S /Kastenlauftext +>> +endobj +2163 0 obj +<< +/K 1884 0 R +/P 2141 0 R +/S /TR +>> +endobj +2164 0 obj +<< +/K [1915 0 R 1916 0 R 1917 0 R] +/P 2142 0 R +/S /TR +>> +endobj +2165 0 obj +<< +/K [1918 0 R 2212 0 R 2213 0 R] +/P 2142 0 R +/S /TR +>> +endobj +2166 0 obj +<< +/K [1920 0 R 1922 0 R 1924 0 R 1926 0 R] +/P 2212 0 R +/S /L +>> +endobj +2167 0 obj +<< +/K [1928 0 R 1930 0 R 1932 0 R 1934 0 R] +/P 2213 0 R +/S /L +>> +endobj +2168 0 obj +<< +/K [1935 0 R 2214 0 R 2215 0 R] +/P 2142 0 R +/S /TR +>> +endobj +2169 0 obj +<< +/K [1937 0 R 1939 0 R 1941 0 R 1943 0 R 1945 0 R] +/P 2214 0 R +/S /L +>> +endobj +2170 0 obj +<< +/C /Pa13 +/K [1946 0 R 1947 0 R] +/P 2171 0 R +/S /LI +>> +endobj +2171 0 obj +<< +/K [2170 0 R 1949 0 R 1951 0 R 1953 0 R 1955 0 R 1957 0 R] +/P 2215 0 R +/S /L +>> +endobj +2172 0 obj +<< +/K 1988 0 R +/P 2143 0 R +/S /TR +>> +endobj +2173 0 obj +<< +/K 1989 0 R +/P 2143 0 R +/S /TR +>> +endobj +2174 0 obj +<< +/K [1990 0 R 1991 0 R] +/P 2144 0 R +/S /TR +>> +endobj +2175 0 obj +<< +/K [1992 0 R 1993 0 R] +/P 2144 0 R +/S /TR +>> +endobj +2176 0 obj +<< +/K 1994 0 R +/P 2140 0 R +/S /TR +>> +endobj +2177 0 obj +<< +/K [1997 0 R 1999 0 R 2001 0 R 2003 0 R 2005 0 R 2007 0 R 2009 0 R] +/P 1995 0 R +/S /L +>> +endobj +2178 0 obj +<< +/C /Pa19 +/P 1995 0 R +/S /Kastenlauftext +>> +endobj +2179 0 obj +<< +/C /Pa19 +/P 1995 0 R +/S /Kastenlauftext +>> +endobj +2180 0 obj +<< +/K 1995 0 R +/P 2140 0 R +/S /TR +>> +endobj +2181 0 obj +<< +/K [2216 0 R 2060 0 R 2061 0 R 2062 0 R] +/P 2145 0 R +/S /TR +>> +endobj +2182 0 obj +<< +/K [2063 0 R 2064 0 R 2065 0 R 2066 0 R] +/P 2145 0 R +/S /TR +>> +endobj +2183 0 obj +<< +/K [2067 0 R 2068 0 R 2069 0 R 2070 0 R] +/P 2145 0 R +/S /TR +>> +endobj +2184 0 obj +<< +/K [2071 0 R 2072 0 R 2073 0 R 2074 0 R] +/P 2145 0 R +/S /TR +>> +endobj +2185 0 obj +<< +/K [2075 0 R 2076 0 R 2077 0 R 2078 0 R] +/P 2145 0 R +/S /TR +>> +endobj +2186 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +2187 0 obj +<< +/Filter /FlateDecode +/Length 3264 +/Length1 6160 +>> +stream +H‰ìV}pTÕ?÷Þ÷‘/ á£@á.ÏD$›/¾„`v£SCÂÇ®Šì&»I’lÜ]2€È„j+lÐiÇÔ)ÔhÅçÅh íX*43Z,38£ƒ¥íLKœBéh5ýÝ—%VþàN§3}'ï½ß9çwÏ=çÜûî†eR' *½¿®dVÙé$‘ñ6¬k:òÕ’ƒ‰Ì)DúÂÆö¦Ö·//²‰²|DÚú¦–-=«÷8î­Íá`èâ¾ó ‰²BŸ× CîØŒ§¡_‚~[skbóò»“»ˆròˆÄΖhC0o(oˆˆ-À}ª5¸¹]¬1fåí_¶[Ãg š +.Tq¢=n¿ÿw·¯‡ó‰UÄ‘7‰N½“¬ò1æY¦e?GrC¤‰cìc¢’¯³iégx–•ÎÎqåä»r\‚¾êäô5éý_,èÔú1=¡n½ZŸƒXy¿"Æw«9Ù—0ˆ¿²ÒùzDëéÖz¾ º +þ/ŽÜõ?,êÊ¢g‰Ñð5‹(…M„6Œ5àª6€ëSØÄþÛª6§–-D_¤0£Röp +sÍžNa|clo +kÀ聆üÏ6q÷A9«´tž¬Ž4Ä¢ñhcBVDcíÑX0‰¶Ëe--²6ÒÔœˆËÚp<뇊ï«ñûÖT®´5…pÇ‹jÃM›Z‚±[µd$.ÑDs8&ƒ2nŠÄáX8$±`(ÜŒm”Qå¹Nmüö|e¤M"Œ\ÝI`|]"˜Çe°-T‚Qg‚†è¦¶D,ŽK:H}/…̪¦5PŒ¢ÇÝH Ø*€bÔî<ƒ°D€Ú¨žeÔ‘T [5Ãw´0Þa°;ð yÕŸ|´± +i-Ømà‡Rï89cšh¢1îFíVGÿ§ùÿÎ@êÆ;>¨Ú%¸o5RyŽUõC«N† µ:7ÂóíÞÆ[Zéä&SÙHZ -âä æ¯ +:ZÜ™³ Ö’TÑë*h€¶ ^•QÄa«UÇkNe?"Ò´ÓÚi|ºã¯½)$d7»ªë¤¤òKòÒQÈ^¢2³ŒÙ7eÿׯ37õ”A˜ïàý'TíÁÂýuS7ïæÐlÜ6P]Àïæ,tRÙgÓ6<=ôv€~èXS=üõ`ŸÄ{ | x3'F7Ûí¼£'ûsÞÇOðŽw)âV)Æ°ð>½vïqz•Î³·Ày”žïQ£¹¿¼WÙ Hû˜ òX™šq6‚Ý|MÒßX[Â’ì88¹|‡“Ëðlàœ„œq¢(©f-,ÊblbpÁç"j”ïä=Üæ'„_[¢÷¹Æ|³QpàâìÍA…*Ú÷°ë!ŒD–?0ÎV²U¬™=ËzÃI6¹Ì‹øRt]ÉOD@ËÒ>Ñ7ê/BúÕæ¾4±uœï“°OóiªòbŽ•È9DðÛ¡äQÈ6ôòûô<õÐ 8{éMúš“ÎÑyºŠîŒ¨ºæ³;ÙZˆcÛÙèG×uòÛËúØ›Èïö>Ÿ†ª‡¥Õgù8ßÃ_çïðwùŸøÿ”.H¤‹õ¢^ÄÅ~qH¼'ÞÓîÕz´´´t¦ÛN§r`çØ_Ø_ÙgŽ\åÏ Gê«áu|-ßÈŸåÏñ½üìÈ>~œÀÏ£Æ~5fŠ\1NL^Q Y%›Åãâˆ8!ΉA¬[–v—¶D[­­Cí§´í¬$×…ž¯ÏÕBšõ6}»Þ¥ÿ ;zP4²œ®äcEÆ“ÆóFŸñ¡ñ•9ÎoN‡›efÙbv˜‡ÌóBÚáôeé‘ôX†›á—í—ßøzßÀîþ-_g”Ð$v»á1,uÞäYfKz„÷©ìÌ:6+õGº*Òi…vŠÖŠ©E¯™æE:ÀâÚöŠ¨¤Ã´ßì`ÇE@ Šýz¾±h¸Ÿ|8dn1ædzY<£7›Ål™ÞÅð¥ø¢cl%ý]¡‡1s‚ϤS´‹v²J£î´Ãl¾µ“|ëÒ_¯i=«ogw`'ëýâ4—ÆῨ4{]§Ç9."o€ +ÄAìe¸ž¦¼½4U<—ç××®Ùû,âõ…ëxˆ¯ÅE[¸nöä%ý/‚7°ß?Ï}•c8~+¼›üMtTÇØ)ŠçÂxö­ ½Œƒ¨spÅXüÏ`îh¹ÏrŸó¬dšù·zºª÷ãu´@!wåê»¶í  ­ˆùçºÿ 9´¬ $?¿-«á÷âùôò=wî{y»_—Ê7 +ö½–#³L)ÿ[9¥øK´¤P÷Ø)wÂwà¾IÃîz–=˜!«7ó¶V‰µà$Ua&@i^áŸô5oVRw7ªÔ¬‘Ñx8çzl>Þ +v¤Í²ÞgeͰΰÞedM³zYqV+ÆŠ²:X[X›X^–Îr³´è“ðwà&ø܃‹àCpX`Ì€3`ï€ p ƒ§ÍóÜ´Å:ÇzušuŠuœõ«“µ•ÕÎ,ËÅ¢hþ|®ÏÀ§` |.€ð8ÞÀ®xk¯Î·ÑÌi/D{…yR˜Ç„9)Ì}Â|N˜»…9"ÌÂÜ!Ì´0Sâ¹^†åýò^¹V†dPÖÉU²Rú¥”^©K—Ä3l׺®DLK؋Ô +Û¿ôGršûÛ‰ivM‚OÅBv{“í:êÌhrZ~NÓ^3ÔdæiZ~lÒ(8¦`Óß·PÙ^"yà +­Ó6’ÀoÛ‚X÷‰PÑ~DM'jª¨éDCÚ|’Zƒã™ûè. ÿµi«fËjvíUÝM¦æ$ÅÒÛv²\~ô'c4¤cÁÀþ§s›B‡ŒË:i3Toz%&‰÷•jîlîT)|ÑTªJÍ ©Ð¡Í Æem¦ + ¼Cù§žpÖ +endstream +endobj +2188 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +2189 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVkl×>÷ÞyøØÆ< +î2±CðúÅÓ1 Þu°‘ü ¬I »Þ]Û ¶×Ù], 9…X“¨U\¤Phœ4D@ Ǥ…ˆV) ÔRRR¤DMDJ[ÉQŠ#¢B©’&î7³‹iøÁªªÔùH-kîlióÚ"“(ÃC¤¬oiÛÒÜwù‰Uð={kkиrðRQæIÈ Z¡ÈŸö4ä«ïimm®ZßC”•C$v·…ý¾œ‘œ"VŠû\»os§xX›M”sþ²Ã×üCÕú<øBg:#Á·~{ïzرžh Ž¼It«ƒpÐÉ(§¿Ë”wÙÏÜ©#âûˆ¨è«áÌaZú)ž%Ås³Y¹Ž,G· /»9}Eêàç¥ÝÊ –§ãÔ«Ö¨ó+ç—Äø^kMö 㯤x!¦Wúz•¾/¼d]yÿ‡þ‡a]´%®9DI.h2¤WÀ«“\oJrço«u8•THú<ɳG“œÓXöt’ãc’\;É5ð&¹Îˆ;È9ÅÅ dMÈ GÃÍ1YŽt†#¾X(ÜQ(—µµÉºPKk,*ë‚Ñ`¤+(\¹zí+M¨£%€;ZPlÙÔæ‹Ü­~T!CQ ÅZƒé“‘`K( F‚‹øÁv_d£ [–[ÄæoÎW†:$ÂÈÕ¡æ×Ç|±`Tú:E¶ð‡7uÄ"¡`´PÒ’è{1°¬†B䧅)Š»™bÐU€E¨Ó~ú  uP!,˨ T] µÂµ¥ Æ ¼»ð Às%­¦µ´†<ä¢|Œ!Ìo%1F©ÀžÓB›͇y·Kw;û?íÿïÌz1ÆЫv _‰ÑšiYc¶Öꇷ:€ÔnGÜ]xtÎ7[›ïjw¤›Lf#Qa‡[býz0Ÿ-Eí5; -Jf¾¥?¤M°Z…lok×ñÆêÓÙI¥å¼r¯îÄ›#„Ì€áNWM½”T~U^ÑòÙ‹T¢—0³ûŽÞÿõëÂ-%€Ÿyø“|-ØOð…*¡ý¸¸Ÿ¥^êå š‹Û«¦ËøÝœƒNZú¹´ Oýƒ¦ØšÅÔ{¼Ïb\›#³cô²½öøíDìÏø?ÃÏØÖ¥ˆ[my$ÀÔAè­x;èºÄÞ€Ïãô l§è‚5 ‘{ñË{ƒÍzØGl˜¯‚–Yë#ÎFx÷"ß_Ñô7–Ö°8; Ÿlþ¤Kbµnøœ.ØQ,Ô°6f¶1‡¸àó5Ìwó>nò3¢QY¢jÙÚB½ QðÁÅ·7 ZѾƒÓØ<65ß3ÎjYkeûXr8ˆk¼€/E×-üXx• åcu£ú0¨­Ö¦hˆ­âû>ç4—æ¡*7Ö¨EÎÚ€ß ÛÐËïÑsÔGÏã ØO¯Ó¯­5é"]¢èÎ8Àªk!»Ÿ­ÛÎv¢=·à)v€ °×‘ß[ì=>U'ІêYîàûù þ›ÿ‰ñOøg‚DªX/šDTGÅ;âe…Ò§<¯|¨|¨2Õ´;•­åhë´`¯žªoÔwê?Òê?O+¤I¨Ë‰ºªñòÓT²vSÜÞµ~འÒ'VÀH² ÷3«d«F¶–yY;‹²Í£½È^b‡Ù Ôòð>»ÈþÂþÊ>µqƒk|"Ï­o¯çkøF¾?Ëð—q"øiþ>¿„‡øuÔ˜.²Å1]¸E%Ð ›Åq\œÅ0ö-Cy@Y¢¬VÖ¡ösÊò1v’«BÍUç«e@«Ú¡nW{ÔŸâD«ÃZ†Ý•lm¼¶HÛ¥=§ hh_êô‰úL P/Ñëõ6½K?ªé—SŽ¥.K ¥FÒœt¿l¿øÚÛûN÷oø:­ˆ¦°‹8 ‰qð²¾wgy†Þ–âVvz=›…ú#Ý©´R9GkÄ#Ô¦6‰tý +fQåIö²¨¤ctHïb§…W ‹Cj®¶(ÑO¾_Õ·è^ý22½&žQ[õB¶Lía‡ùR¼ÑVKg×éQ¬ã³éí¡Ý¬‹R¨7åƒwí,ŸÁzÔÄ«JŸp«ÛÙ}ØÁ©ê ø>ͧ ø/jÍÄYW)Çúà–/,]8oâ¢ÂgþìûfÝ›—{1Ó!gLÿö´©S¾5yÒÄ 9ã³³2Ç“‘ž–š¢kª"8#§Û¨ôJ3Ïk*yÆŠ–lø ðÝ¢ðšø×ì¼ÝÇ”^ÛMÞîYÏæ¯y–'<ËG=Y¦\L‹ œÒmHów.Cždkk=àO¹ŒFiÛ¼ÆæJž-Œàp`†tOnuI“y¥Û¬ìj»½.ÄëOO«0*‚iNêOKM3+Î~V¹„Ù„WºËú9¥ŒAVfµár›U†ËJÁ¹n_À\Uëq»¦:N“Uø&“Œåæ¸|Û…*ìeL­ÂÔíedÈ*‡zd¿óøÞ“™ÔäÍÏßw=¦ð5Zkdå›.óÁ­C“ œ'ÙK 3µâ$£Ï)ªéî¯êv¹­Õ²+<»l÷IpŸ´uhªˆ»'‡¤%Æ㻤ÙWë¹Õê°žZà\Yçq kýWZeÔyì +”M.B’–Î*3QpÐp[ïi¦ËÖø/6kJܤº-ŽW§T—Ÿù3U»e¼Ác8Ì¥SFŸkZÅë¶ T•ËªÛ-Îþ̬D§ûÇŽK’Œ1·’à¨Íf¶»ÅõÍV3+#£ +GÄ”~‰L<†ÉsK­G°”âþR¸ájdèhýóÆ3ˬPs3 ¿N8Æð•Û5¾¤FËͼNµŽË葃ý&7óóÍÙ³­“¢W`k‘Ù[ž_àì2W™Ò\‰–Ñ*&5–¡å‡µË='Ë© ‚Ùý/ÖË/6Š"Žã¿¹Û»™»Ööè¿\\•+§±iL[•"Ð\û÷Ä(FôÑWŒÆØúýÝ\Åꃛ~î3ûûÍÎîÌîvg6§x?BCæ,ÅmL;žŒÎÌ2µÏêÌB¦xx&ŠÇùœ»´©uTCñ¯2TWݹóIGÔ­ÞÎy¼>‘Ã÷P6™jÌŽš ™ìX·¦ ¯b6Ûte3ÙÁÜÒ¡h$ÍÎ$Ù=™B—rKó£¦KïT§•Géޔòšž4—<¦7ÝÄ«4ŸçÍÛ×~ Tn¸­Låþ+=iYÔ¾öÃD‹ÉàMÙLzWXáÁ²y1IT6F´ôUðf1SØn„o?饑nUµS_àašîóÔ'h"p‰lïZPÓdË5d*ó 0e‡ÀÙjìàe²}ï2º®±\E3ùõ©chó5”ë9ï¢Ë݈cŽl +Çogä댱Ñõý—é¹êGÔëAìKœã<ò&(Cì1Ä^…kiÂßK…sù~ËsàšýÏ#^›¿ŽGøZ1´…ë–hO]€Ñ?ù2x û­ð‹ÜW5‚ã7Â;h.ØH‡ Œ¦p.Œgß2ÚJ؇:û–Åÿ 掶÷4÷Ù=Ïr&™«gèz?ÝYG„ò¹«(WÞµm1´,vèŸëþ7ÔÐ2°&Püü6¯DÐçÓÏ÷ܽï¥í~S,_Ï“ß÷?^ŠÊ2Åüï¥ã¯Ð‚Fßc·Üß÷ {kiXuc†¬ßÌ[¢kÁqªÀL:„Ò:¼Â?zÞ+§®.T©Z¥b=‘œç‰Ùžè +1Íúuš5Å:ÅzŸuœ5Éêeõ°ºYqVŒÕÎÚÀZÇò³ –—%bOÃ߃à;p| +΃ÁY`ƒi0NIp¼ÆÀA0 Ü6ÏrÓ6ë ëÖIÖ ÖQÖS¬ÖFVK²|,‹b1ø[ð5¸¾Ÿƒð 8æÀGàxìÛzZj5µVN¼ë•Öqi‘Ö¸´vKëiíÖvim•Öi¥¥•’ª5*¢P÷©{UXÕ©U¥BªB•« Rʯ åQx†jo“苄3?L‰¡ˆóK4'‚›·8¾h\8U J<;mŽç°;£É‰¥!Þ1õdæ ±42næNS]ãß·pÉ^"¹÷­kIâ·uN®þLêh?¢–µtÔr£a1›¤–Äàhæ~ºKÃmbÅlIÍÎ]º»ÉÔŒ¢xzÓVöœ§,ˆþdÌút¼.´§ÝíÜúúð~ó¢AbŠÊðM/Ç$ñ SMM:…/šNUèùc>Þ¿¾Þ¼(¦ò©«0” +0Å6qÕ +endstream +endobj +2190 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +2191 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 2217 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 2218 0 R +/FontName /UNRBJE+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +2192 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +2193 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 2219 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 2220 0 R +/FontName /ZNXWOK+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +2194 0 obj +<< +/K 2221 0 R +/P 2136 0 R +/S /TR +>> +endobj +2195 0 obj +<< +/K 2222 0 R +/P 2137 0 R +/S /TR +>> +endobj +2196 0 obj +<< +/K 2211 0 R +/P 2137 0 R +/S /TR +>> +endobj +2197 0 obj +<< +/K 2223 0 R +/P 2138 0 R +/S /TR +>> +endobj +2198 0 obj +<< +/K 2224 0 R +/P 2139 0 R +/S /TR +>> +endobj +2199 0 obj +<< +/K 2225 0 R +/P 2139 0 R +/S /TR +>> +endobj +2200 0 obj +<< +/K 2226 0 R +/P 2139 0 R +/S /TR +>> +endobj +2201 0 obj +<< +/K 2227 0 R +/P 2140 0 R +/S /TR +>> +endobj +2202 0 obj +<< +/K 2228 0 R +/P 2141 0 R +/S /TR +>> +endobj +2203 0 obj +<< +/K 2229 0 R +/P 2142 0 R +/S /TR +>> +endobj +2204 0 obj +<< +/K 2230 0 R +/P 2143 0 R +/S /TR +>> +endobj +2205 0 obj +<< +/K 2231 0 R +/P 2144 0 R +/S /TR +>> +endobj +2206 0 obj +<< +/K 2232 0 R +/P 2145 0 R +/S /TR +>> +endobj +2207 0 obj +<< +/K 2148 0 R +/P 2147 0 R +/S /TD +>> +endobj +2208 0 obj +<< +/K 2150 0 R +/P 2149 0 R +/S /TD +>> +endobj +2209 0 obj +<< +/K 2152 0 R +/P 2151 0 R +/S /TD +>> +endobj +2210 0 obj +<< +/K 2154 0 R +/P 2153 0 R +/S /TD +>> +endobj +2211 0 obj +<< +/K [2156 0 R 2233 0 R] +/P 2196 0 R +/S /TD +>> +endobj +2212 0 obj +<< +/K 2166 0 R +/P 2165 0 R +/S /TD +>> +endobj +2213 0 obj +<< +/K 2167 0 R +/P 2165 0 R +/S /TD +>> +endobj +2214 0 obj +<< +/K 2169 0 R +/P 2168 0 R +/S /TD +>> +endobj +2215 0 obj +<< +/K 2171 0 R +/P 2168 0 R +/S /TD +>> +endobj +2216 0 obj +<< +/P 2181 0 R +/S /TD +>> +endobj +2217 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +2218 0 obj +<< +/Filter /FlateDecode +/Length 3259 +/Length1 6147 +>> +stream +H‰ÄV}PT×?÷Þ÷±»`øF+©¾õ¢|ˆˆVƒ‰ì®µAÝÕZwù0 ¨¢ÆØ5šªÒ6ã&mlH3Š’¾“bÆ6ÖËŒÖ3“Œ©öƒŒ™T2I«µmFéェ™±ÿö=ïžß=÷œsïƒKŒˆâ(L‚¦=^?½àü€Ë)ðÒº¶MÚ›ùGŽ±d"¹huËë~scŽI¤|“HZõDó–Õמ©$r~kcC¨þúÁ+E˜ ý0$§¸¾}ô‡×mÚ\6ßØ ý»DbOó†ºPêPêQ‚Š5ή mnK•l¢Ä÷€×Ö‡Ö5üm¿¯ ú ðgZZZÿíëˆR½†˜:ýdrHç¥ó°¤ŒT/´x8î÷,ªÖ4*ù\û|HÉa¯SZÀÌð}Ñÿççâ}= :æç;ørH?¦Z¼€ëÁû)BÞÃP!Ø„TN×ä~šN­¶½¶áí¡²Ãô=Û2—j᯺c1|u™#Â:ìñÚ…Ø_ð~†Ÿ±½ó·ÜBĈ÷Èý°[ñvÒ›t…æiÚßIºhÍBäuÓ-6ÔÎ>fƒ¼Vf­8kŽ ß_Ò‡ôw–ÊŠ™ÁN“ÌwعÄV ÓºhG±hkfX+Û‹˜\𙈺ïáÜägD@*–û•de–ÚŒ(Œ8Î|*´¢}‹ª±r-=95F¿gœU±ÖÈ^bÈ¡ ‚nð<>]·èE”â¥Oäµòk ~e‰zС ¶L +'2iªòb*ä\Okh«MOƒ¶¡—ÏÒ+ÔI¯ÒŠÒ;ô+kMºLW躓²êšÅaË@P+ÛÎv¡íwÑóìeÖÃÞA~çØû|"ªŽQ3ªe¹“à'ø9þ;~•ðOù‚„S¬µb£8$ºÄqAZ(uJ¯JIÉL6íN%+©ÊJ¥Ô¡:Õµê.õõ ú¶k*E]¹¨«œ–¡ª-¨dí!ÃÞµ(è½ê§O­:@CÕXôó0[ +°å,ÈÖ±lóhE¯³7Øavµ¼ú€]fbeŸÙt‹+<çŒÖWÉ«ù2¾–¿Ä÷ó—ùQœÈ~ŠÀ¯ Æ~5Ɖd‘&&¯ðjÄ +±YìÝ⌸,±oñÒ£R±´DZ‰ÚÏJÒ'ØI. 9Sž)åõòv¹]þ Nô <¨ÄÛ]IVR”9Ênå¥GùP¹­¦©éê$ÐTµ@­V›Õ6µKP¯9Ž9s69[]¹ÔEÓèç_ùzßÂéþ5_©äÓxv§áI‘”f}{<^mv6ñ+;µšMÆNýn 'UHgi™XAÍr­ˆS¯Óa¶QÚÁŽ +£Cj;%‚bP’3•9±~ò¢KÝ¢ÕkÈô†Ø'7ªSÙcr;;Ìçá‹neUôv“¾ƒ•7ñl:K{ik#EÇØ|k}|"k—_Ç¥Ná•·³)ØÁ ¹_¤Ork'|ýÁŒñ_76=-5%9)1á1ñq.§CUdIpF¹^ÝÔ̬ )eé æYº‚!t—!hj0ùîŘZІi÷"K€\ýdI Y2Šd‰Ú\š›—«yuÍ|Ï£k½ly•òó= ™ƒ¶¼È–¥,[ÅíÆ Í;®Ñ£™,¨yM_[£á z/ç*ÕK\y¹uÅAŒƒdúô–(ó3[à>oQ”“c ²2Ëu×,Ó=V +¦Èô†êÍÊ*¿×“ávòrMVZ§×š¤Ï7rl•Ú˘J©©ÚËhMV9Ô®EsO½‰T̉¯×ëCßö›"°ÖHÊ1èsÁÖqy¹½ì¿é,íeTã?IåCáhYØã X«%—úwÛð±€Ý:! ï¸&ÍR c·fvVùïöº­w € y¹‹ýnd­{;4«ŒÅ~»eãò‘¤e³ÊŒÜ {-Kpf:õùz£±&ˆÍo˜´x‹ûøøò’“C¤r¯fÔøu·9/C„<FSÉX¼¥§¬D+»×“—MLŠu:ú@°?æn¡aÔgK6Ü’õH«™•‘^†#bju2ñë&Ïœm½f“Q70<†Ž6¡A#±ÈÚ93Q׌›„ƒ ^¿×¶(™‰7É­ã2zäà‘Íœ3;Û:)j)¶™Ûú̼Ü6³BoIÔÌ +´Œ*ý˜(ÊGËÝnk—Û{K¨Š®òÇtj3ŽSI~NÀäAËszÄ“¶Äò„G<£Óƒ:Žó ².i¦#kô—˜žâm,2Yúÿp7Äüø|¼ZT’3JVÈhÏÈ +lŸ¢aøtÍgPïP¸V×u#ZQa´xƒ#%õnÏ0K: M5 cÝ0SJý"ƒbÏ<üS ãrÆÕBJzI‚z‰I—ØOq"yHœdåßÄmqÞgxL+Lr'eº“ÜaA·ÃœîÜÿïÙa©·M\?"ò"yb¥þ‚ï@‚}‰ƒøL›…©ÝRgDêü2h7@æ?x*eJòª„¹7û/ø¡î}w¬ñÒ•Û9Dw*]WÕ¨ñ6ÞZƒÔ‚;•¸î"øÐ×ÕaûŸ?KdÕ„ 5ØŠé(¦rçdŠ¸šÀ§©\Í¢ˆóu‹.ês£nuu;†yUŒãvƒ;¨ÛÑGÝ®w©[þQŒ-¬´|>\·Ô©Üщ˜» »c~›-yì`©‡º?æ7ÄXÝc©>Æ^y—–Ž°ã/À-„íÖxþ pl3`Û1"JEFÖ’ÿ5Ìý`䬬€=m8ìX.ÎÄBÞ*â9NbD}êSà b\«Õñæ?Šq5õ¸rh„ÞY<²úYþöË&¶"Šã3¶ë¤!MCˆ, dB—‚HS•V¶CÚ´VKˆ‰¨«ŠÖ±×Ϊ©7ÚÝD*E½THµ‰4T|4†º ¡â€\8På„8ræHå?óV&NC!ðê·ÿ7ï½™{¼³ŠŽ#çøª¹ø‡Á ëbxƬŸ³š9â¯ò"*ïÇ•9¼)ˆ}{Óšmkøø*ßÓžû÷ã«ÀADÐ÷÷þ›QÅ÷3Jk®×½¶ÝoªöÕ€ }°ñ,QÿZKÕÿ»¢Pk¬í$ták,¾åÅ.¼–3vïÿ—¾¶ÿ‡/µ¿þÀX›eø¿h‚µñO‘Cúȧöæ—ª»píÑjãg1”ÈŽÀÞØQØãm`§~™,R‡RýØœõò';ÄùéÀÃÿr`G`ØQØ¿¶Sè} ²¯··_îµòŽíÚEOÚΔíä<Ë.wËä䤵Jž+GM×tfÌB÷ؾÑÔž¡ÎÇ­r©Ü®Q³4=™sÖë¯:¤åJÓò&LïØŽY²\ÏtÌ‚ôœ\Á<šsŽH[EV‹k÷WZe‰fäXÙòP?ãå<Ó•¹r¡ Øúy{ºì9–évKz%æ½W?¬½ÌÂáÇa6sA‘yð ÂrØ”¾çà±`•Y7"I6‰K²QøJl1W—L¨‰ìÜ ÈcûàMaM‡X'Ž«ê—!uY—®SbÓh-‡zµ¥õÖþ·óoÌ°ÔÝ„z˜5v‰\ U5UÔÓ^5¶šÉJGu‹G೫u֎׵:R÷M½‘cY÷žŸ•Ó%W?³ oOÐ{Åò(M#ªzdél¬z¢í܉Ÿ_óf‘–Ë¡þKÃ}“Zøy’·IHæIΑ¼Fr–dŽd7É0É.’I‚dÉC$[I¢$’0 O<ý\ß«àð>x\‹à<˜çÀ8^σ“ é6/PÓ‹$o‘¼IòÉë$gH&I’l' 1H6„HX"ý| ¾ŸƒÏÀðx,wÀ«àp †ûZêZê¶øË|&±ÛðÏþ‹†?kø¶áO~ÑðMÃ?hø ?køû{ÄÝBŠ»Äâv­¢E4‹&Ñ(D½"*""$ð.Q¹5œ¥3)ž®|œgéqYù9Ó±Ìë=PÙБâ•æ4K?–ŠU:+¡gôv™_¿ÈùéSqu–ýq~ýÔl<Ðl–µvÞø‰Õ”Ò#Ç>bm| ¶ú6þÀ’Ñö©¡¼x}íõ•××Þ¿4ÂúÒ¹çßÉÖhø¿i´&sÈRÃÙQ°Tvð éRhc=Æs8ÞžMµ6MíЃÛÖ;¿a|žmÄ‘®¡#U¹¨PW²+©B8Y¨P#Ü›‚PìĶöøe>„šàÞŒ©ü]€p¸oy +endstream +endobj +2219 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +2220 0 obj +<< +/Filter /FlateDecode +/Length 3261 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘’„ð(P8Ë5ˆdóâ!ìF È.ÙMv“,$Ù¸»dÑ j lÐiÇ”)ÔhÅçÆ` íX*43Z,3:£ƒ¥íL¬5ŽN¥t´šþÎÝ%VþàN§3½¿Ü{~ßã|çû¾sîÝ#¢lê$Ae+ëJg”ŸH¯C{_CGB¾Tzä‘9‘HŸ×ØÞÔúúçóm¢‘¶±©e[cÏå‡WÁ÷4îíÍá`èプæåž„|W3ù£²ž„ü)äÛ›[[—-Iî!Ê+ »[¢ Á‚¡‚!"6÷¹ÖàÖvqŸ1¨àüe[°5ü—ÿ øBgÚcáö•¿½c#ìXO¬!Ž¼Itêýp0ɪi¾Í´·ÙÏÜéCâû€¨ôëÁÜAZô žåe3ó\y…®•ŸEìy*7Ë™ÝySïÿúuᦖr ùøN¾ì'øB•Ó~Ü!ÜOS7uó¾”ÍÄmƒUÓeünÎ@'•~&íÀÓCÿ`‡éŽfÕÃ^ï³ÂÖ€‘91ºÙ^g|˜GìÏx?ÃÏ8ÖEˆ[­† ×·Š×ñu|3ßÇŸæø‹8‘}ü4—_Bü +jÌùb´˜$¼¢ +X#î[Åcâ¸8#.ŠAì[Žv¶P[«m@íç´íCì$×…^¨ÏÖçÍz›þˆÞ¥ÿ'zP4rœ®ä£ŒùÆ.ã£ÏxÏøÊmŽ1§%f¹Yg¶˜æQsÀ¼œq,sqf$3–妣øeûÅ7ÞÞWpºÃ7¥4ž]ÄixPŒ„—úÞå9fKf„÷©ìÌ:6 ;õº*2i¹vŽÖ‰û©E¯ÙæÇt˜ÅµìEQEÇèÙÁN‹€‡ôBc~ªŸ|¿8jn3æedú¹xJo6KØb½‹æ‹ðFÇØjú;»B`åŸNçhíf”AÝÇؼkgùdÖ¥?'^Öz„W„݉œ ÷‹ïÓlÿ¢¦Ñœu +Ô·bÎÜ9³fÎ(/+-)vM¿sÚS o·¦¸ääIß8aüwÆ3º`T~^îÈÛFädgef˜†® ÎÈíµªÒž°µ©ÖÒ¥ÅJ¶‚P¯SlüëaWÝècË€ã&oô¬€gã7<+RžÞ,W. Ån鵤ý;%O²õ«}àOx,¿´^ãpmª#Œ€àra†ôŽköH›¤×®êhNzÄëÍΪ´*ÃYÅnêÍÊͳ«¬ö^Vµ9„WyçõrʬìjËãµ—Y•‚- +½Á½jµÏë™àrù‹Ý6«l°êm²–Ø#‹ªt–±JÛt–‘UuÉ^÷kɽ's©>P”²BÁïùlô«5òŠì{-}ïöqÅî“ì…5>;³ò$£5¾ST=ÔÙ»¬Óãñ«Õò+}»÷±p»}`‚HzÇE¤“É]ÒîYí»ÞêRO¿A‹ÝËk}.dmy÷JUF­Ï©AÙ¸R$©tªÌTÁaË«4MÒδ–XÍÉMlÖø¤MµÛ\/¯®85ô'ªöÊäŸå²M°üAÏÄÞJÖnë[V!—Ýh)v÷ææ¥:Ý{ÛÈ4Éq= Ûæ¸+†¬¯µš©Œ¬e8"¶lÈÄgÙ¼p®z„çR²a.Üpù:AÿÉÜyj#ôÂ\K&¯‚5øñš`Zcæ^!EÕq>r°_ãvQ‘=}º:)f%¶™-täÙÅî{¹Õž+íåh­òa’^)Zîr©]î:YAõìα^~±QqÿÍÝÞÍܵңÿrqU®œ6Ʀ1mUŠ@s=ìß{ðHÕÜ!I¯-%áIC0ƒ xmu•Ÿ¤A +veÛ"„„&Z%1Æ4QŒb$A}ÕÄ[¿³¿»“«X}pÓÏ}f¿ÙÙÙÝî̶ïGhÐœ¥Øà iÇ“Ñ™ùB¦æi9TÈÏDñ8_p—65Žª/þU„j«:v?îˆÚUÒÃœÇëÓ™1|d“©úì¨YŸÉŽ¥qk:ñ*f³ÑHg6“È-ŒFBÑìL"‘Ýב)t)·»çYÉ$óoõ ]ï§ÛëˆP>·ˆrÅÛvƒ+bGþ¹îC ®kÅÏoÓjýx>ý|ÏÝû^Úî7Åòõ<ù}ÿ£¥¨,SÌÿ^J1þ-hô=vËíðmxo熆TfÈúͼ%ʱ§5˜I‡PÚˆWøg£_ÏÛcåÔÙ‰*•kU¬;’ó<6ÛÝ v%¦Yï³Î²¦XgXï²N²&Y=¬nV+Ί±ÚX›YY~–Áò²DìIø{p|®ƒÁEð!8l0 ¦À0 ŽƒwÀ8 †@¿ÛæynÚfc½Ç:Í:Å:Îz‚ÕÎÚÂjeI–åaQ, ¾×ÀgàS°>Àøœo‚ý`gwsu :°Áʉb=Ò:)­cÒ—Ö^i='­]Ò–Öim—VZZ)y¿Z¯"ê>uº[…U­ªV•*¤Ö¨rTJù•¡< +Ï°SåMx}q‘pæ‡(1q~í‹æDpÛvÇ §2A‰§âa§µÁñug49±<#Äk#¦žÌ\"!–GÆͼÓiªmøû.ÙK$÷_¡ubIü¶ÌÉuŸHíCÔr£–ŽZn4,f“ÔœÍÜKwhø¯M¬š-©Ù±Gw7™šQOoÝÁžó”ÑŸŒY—Ž×†öµ¹ÛT>h^6HLQ¾éå˜$Þtª±½±]§ðEÓ©5zþ˜O…nª3/‹©|*„ðZ åŸ ”qpÖ +endstream +endobj +2221 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 2194 0 R +/S /TD +>> +endobj +2222 0 obj +<< +/P 2195 0 R +/S /TD +>> +endobj +2223 0 obj +<< +/P 2197 0 R +/S /TD +>> +endobj +2224 0 obj +<< +/P 2198 0 R +/S /TD +>> +endobj +2225 0 obj +<< +/P 2199 0 R +/S /TD +>> +endobj +2226 0 obj +<< +/K [2234 0 R] +/P 2200 0 R +/S /TD +>> +endobj +2227 0 obj +<< +/P 2201 0 R +/S /TD +>> +endobj +2228 0 obj +<< +/P 2202 0 R +/S /TD +>> +endobj +2229 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/P 2203 0 R +/S /TD +>> +endobj +2230 0 obj +<< +/P 2204 0 R +/S /TD +>> +endobj +2231 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 2205 0 R +/S /TD +>> +endobj +2232 0 obj +<< +/A << +/O /Table +/ColSpan 4 +>> +/P 2206 0 R +/S /TD +>> +endobj +2233 0 obj +<< +/C /Pa19 +/P 2211 0 R +/S /Kastenlauftext +>> +endobj +2234 0 obj +<< +/C /Pa19 +/P 2226 0 R +/S /Kastenlauftext +>> +endobj +xref +0 2235 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000389 00000 n +0000004669 00000 n +0000004703 00000 n +0000005054 00000 n +0000005181 00000 n +0000006219 00000 n +0000007314 00000 n +0000008315 00000 n +0000009414 00000 n +0000010433 00000 n +0000011452 00000 n +0000012472 00000 n +0000013508 00000 n +0000014537 00000 n +0000015572 00000 n +0000016608 00000 n +0000017658 00000 n +0000018692 00000 n +0000019755 00000 n +0000020789 00000 n +0000021854 00000 n +0000022902 00000 n +0000023937 00000 n +0000026564 00000 n +0000027587 00000 n +0000028610 00000 n +0000029647 00000 n +0000030697 00000 n +0000031734 00000 n +0000032771 00000 n +0000033816 00000 n +0000034838 00000 n +0000035875 00000 n +0000036912 00000 n +0000037934 00000 n +0000038973 00000 n +0000039995 00000 n +0000041034 00000 n +0000042057 00000 n +0000043093 00000 n +0000044145 00000 n +0000045184 00000 n +0000046221 00000 n +0000047271 00000 n +0000048308 00000 n +0000049352 00000 n +0000050386 00000 n +0000051410 00000 n +0000052346 00000 n +0000054060 00000 n +0000054129 00000 n +0000054699 00000 n +0000055018 00000 n +0000059149 00000 n +0000059328 00000 n +0000059455 00000 n +0000059580 00000 n +0000060046 00000 n +0000060516 00000 n +0000060668 00000 n +0000060884 00000 n +0000061268 00000 n +0000061696 00000 n +0000061976 00000 n +0000074301 00000 n +0000074809 00000 n +0000076885 00000 n +0000077180 00000 n +0000078104 00000 n +0000078138 00000 n +0000079183 00000 n +0000080119 00000 n +0000081104 00000 n +0000082097 00000 n +0000083071 00000 n +0000083995 00000 n +0000084851 00000 n +0000085422 00000 n +0000085549 00000 n +0000085674 00000 n +0000086253 00000 n +0000086484 00000 n +0000086700 00000 n +0000087164 00000 n +0000087988 00000 n +0000093567 00000 n +0000094025 00000 n +0000094890 00000 n +0000100658 00000 n +0000105056 00000 n +0000105082 00000 n +0000110226 00000 n +0000110797 00000 n +0000115786 00000 n +0000115909 00000 n +0000116030 00000 n +0000116154 00000 n +0000116664 00000 n +0000116817 00000 n +0000122297 00000 n +0000128198 00000 n +0000134220 00000 n +0000139889 00000 n +0000140013 00000 n +0000140135 00000 n +0000140260 00000 n +0000146075 00000 n +0000151559 00000 n +0000151683 00000 n +0000151805 00000 n +0000151930 00000 n +0000151957 00000 n +0000159164 00000 n +0000165293 00000 n +0000171287 00000 n +0000175152 00000 n +0000175276 00000 n +0000175398 00000 n +0000175523 00000 n +0000175731 00000 n +0000176230 00000 n +0000176690 00000 n +0000177186 00000 n +0000178054 00000 n +0000317368 00000 n +0000323740 00000 n +0000329268 00000 n +0000329392 00000 n +0000329517 00000 n +0000329639 00000 n +0000335280 00000 n +0000335307 00000 n +0000340562 00000 n +0000340686 00000 n +0000340808 00000 n +0000340933 00000 n +0000346391 00000 n +0000351179 00000 n +0000357953 00000 n +0000358077 00000 n +0000358199 00000 n +0000358324 00000 n +0000363769 00000 n +0000369321 00000 n +0000375149 00000 n +0000380778 00000 n +0000380902 00000 n +0000381027 00000 n +0000381149 00000 n +0000381176 00000 n +0000386888 00000 n +0000392151 00000 n +0000392275 00000 n +0000392397 00000 n +0000392522 00000 n +0000392549 00000 n +0000398423 00000 n +0000404101 00000 n +0000409746 00000 n +0000409773 00000 n +0000415913 00000 n +0000415940 00000 n +0000421172 00000 n +0000425855 00000 n +0000431628 00000 n +0000435532 00000 n +0000436098 00000 n +0001337743 00000 n +0001343433 00000 n +0001343557 00000 n +0001343679 00000 n +0001343804 00000 n +0001348568 00000 n +0001348681 00000 n +0001348809 00000 n +0001350383 00000 n +0001350805 00000 n +0001351039 00000 n +0001351466 00000 n +0001351554 00000 n +0001351642 00000 n +0001352380 00000 n +0001353424 00000 n +0001354648 00000 n +0001356209 00000 n +0001356297 00000 n +0001358409 00000 n +0001360632 00000 n +0001363167 00000 n +0001366107 00000 n +0001369431 00000 n +0001373034 00000 n +0001376992 00000 n +0001381338 00000 n +0001381426 00000 n +0001386030 00000 n +0001390990 00000 n +0001395813 00000 n +0001401167 00000 n +0001407421 00000 n +0001413914 00000 n +0001414002 00000 n +0001420785 00000 n +0001427890 00000 n +0001436000 00000 n +0001444056 00000 n +0001452442 00000 n +0001461208 00000 n +0001470161 00000 n +0001479432 00000 n +0001479521 00000 n +0001489136 00000 n +0001499008 00000 n +0001499097 00000 n +0001509245 00000 n +0001519628 00000 n +0001530275 00000 n +0001530364 00000 n +0001541244 00000 n +0001541333 00000 n +0001547359 00000 n +0001558610 00000 n +0001570194 00000 n +0001581950 00000 n +0001593540 00000 n +0001606046 00000 n +0001618698 00000 n +0001631102 00000 n +0001631376 00000 n +0001631902 00000 n +0001632175 00000 n +0001632707 00000 n +0001632735 00000 n +0001633047 00000 n +0001633372 00000 n +0001633697 00000 n +0001634016 00000 n +0001634365 00000 n +0001634732 00000 n +0001635159 00000 n +0001635466 00000 n +0001635781 00000 n +0001635936 00000 n +0001636133 00000 n +0001636288 00000 n +0001636704 00000 n +0001636900 00000 n +0001637099 00000 n +0001637487 00000 n +0001637656 00000 n +0001637826 00000 n +0001638100 00000 n +0001638732 00000 n +0001639151 00000 n +0001639501 00000 n +0001639826 00000 n +0001640151 00000 n +0001640579 00000 n +0001641084 00000 n +0001641239 00000 n +0001641657 00000 n +0001641853 00000 n +0001642052 00000 n +0001642366 00000 n +0001642639 00000 n +0001643135 00000 n +0001643290 00000 n +0001643714 00000 n +0001643910 00000 n +0001644109 00000 n +0001644497 00000 n +0001644666 00000 n +0001644776 00000 n +0001645315 00000 n +0001645947 00000 n +0001646090 00000 n +0001646628 00000 n +0001647245 00000 n +0001647273 00000 n +0001647583 00000 n +0001647754 00000 n +0001648129 00000 n +0001648444 00000 n +0001648718 00000 n +0001649210 00000 n +0001649630 00000 n +0001650142 00000 n +0001650247 00000 n +0001650682 00000 n +0001651167 00000 n +0001651295 00000 n +0001651421 00000 n +0001651576 00000 n +0001652000 00000 n +0001652196 00000 n +0001652396 00000 n +0001652784 00000 n +0001652955 00000 n +0001653126 00000 n +0001653297 00000 n +0001653468 00000 n +0001653638 00000 n +0001656618 00000 n +0001656744 00000 n +0001656899 00000 n +0001657140 00000 n +0001657687 00000 n +0001658104 00000 n +0001658304 00000 n +0001658692 00000 n +0001658847 00000 n +0001661075 00000 n +0001661130 00000 n +0001661185 00000 n +0001661241 00000 n +0001661296 00000 n +0001661352 00000 n +0001661407 00000 n +0001661463 00000 n +0001661518 00000 n +0001661573 00000 n +0001661629 00000 n +0001661685 00000 n +0001661741 00000 n +0001661797 00000 n +0001661853 00000 n +0001661909 00000 n +0001661965 00000 n +0001662021 00000 n +0001662106 00000 n +0001662470 00000 n +0001662611 00000 n +0001662667 00000 n +0001662725 00000 n +0001662821 00000 n +0001662952 00000 n +0001663029 00000 n +0001663142 00000 n +0001663224 00000 n +0001663306 00000 n +0001663394 00000 n +0001663477 00000 n +0001663568 00000 n +0001663651 00000 n +0001663753 00000 n +0001663836 00000 n +0001663919 00000 n +0001664027 00000 n +0001664094 00000 n +0001664161 00000 n +0001664291 00000 n +0001664374 00000 n +0001664457 00000 n +0001664540 00000 n +0001664623 00000 n +0001664692 00000 n +0001664761 00000 n +0001664839 00000 n +0001664959 00000 n +0001665042 00000 n +0001665125 00000 n +0001665203 00000 n +0001665298 00000 n +0001665381 00000 n +0001665467 00000 n +0001665535 00000 n +0001665610 00000 n +0001665693 00000 n +0001665761 00000 n +0001665836 00000 n +0001665919 00000 n +0001665987 00000 n +0001666049 00000 n +0001666117 00000 n +0001666179 00000 n +0001666247 00000 n +0001666309 00000 n +0001666400 00000 n +0001666483 00000 n +0001666593 00000 n +0001666676 00000 n +0001666759 00000 n +0001666827 00000 n +0001666949 00000 n +0001667033 00000 n +0001667117 00000 n +0001667185 00000 n +0001667295 00000 n +0001667379 00000 n +0001667462 00000 n +0001667530 00000 n +0001667644 00000 n +0001667728 00000 n +0001667796 00000 n +0001667894 00000 n +0001667962 00000 n +0001668084 00000 n +0001668168 00000 n +0001668236 00000 n +0001668330 00000 n +0001668398 00000 n +0001668504 00000 n +0001668588 00000 n +0001668656 00000 n +0001668758 00000 n +0001668842 00000 n +0001668941 00000 n +0001669025 00000 n +0001669124 00000 n +0001669208 00000 n +0001669276 00000 n +0001669390 00000 n +0001669474 00000 n +0001669542 00000 n +0001669652 00000 n +0001669736 00000 n +0001669843 00000 n +0001669927 00000 n +0001670011 00000 n +0001670084 00000 n +0001670152 00000 n +0001670254 00000 n +0001670338 00000 n +0001670406 00000 n +0001670508 00000 n +0001670576 00000 n +0001670694 00000 n +0001670778 00000 n +0001670846 00000 n +0001670944 00000 n +0001671035 00000 n +0001671119 00000 n +0001671192 00000 n +0001671260 00000 n +0001671366 00000 n +0001671450 00000 n +0001671519 00000 n +0001671629 00000 n +0001671697 00000 n +0001671880 00000 n +0001671964 00000 n +0001672048 00000 n +0001672132 00000 n +0001672216 00000 n +0001672300 00000 n +0001672384 00000 n +0001672515 00000 n +0001672599 00000 n +0001672683 00000 n +0001672767 00000 n +0001672851 00000 n +0001672930 00000 n +0001672999 00000 n +0001673062 00000 n +0001673131 00000 n +0001673194 00000 n +0001673263 00000 n +0001673326 00000 n +0001673395 00000 n +0001673458 00000 n +0001673541 00000 n +0001673648 00000 n +0001673732 00000 n +0001673801 00000 n +0001673880 00000 n +0001673978 00000 n +0001674062 00000 n +0001674142 00000 n +0001674280 00000 n +0001674364 00000 n +0001674448 00000 n +0001674535 00000 n +0001674622 00000 n +0001674715 00000 n +0001674784 00000 n +0001674853 00000 n +0001674930 00000 n +0001675014 00000 n +0001675083 00000 n +0001675152 00000 n +0001675215 00000 n +0001675284 00000 n +0001675353 00000 n +0001675416 00000 n +0001675485 00000 n +0001675554 00000 n +0001675623 00000 n +0001675692 00000 n +0001675761 00000 n +0001675824 00000 n +0001675893 00000 n +0001675962 00000 n +0001676025 00000 n +0001676094 00000 n +0001676163 00000 n +0001676226 00000 n +0001676295 00000 n +0001676364 00000 n +0001676427 00000 n +0001676528 00000 n +0001676612 00000 n +0001676681 00000 n +0001676750 00000 n +0001676813 00000 n +0001676882 00000 n +0001676951 00000 n +0001677014 00000 n +0001677083 00000 n +0001677152 00000 n +0001677215 00000 n +0001677316 00000 n +0001677400 00000 n +0001677469 00000 n +0001677538 00000 n +0001677601 00000 n +0001677670 00000 n +0001677739 00000 n +0001677802 00000 n +0001677871 00000 n +0001677940 00000 n +0001678003 00000 n +0001678072 00000 n +0001678141 00000 n +0001678204 00000 n +0001678291 00000 n +0001678360 00000 n +0001678429 00000 n +0001678492 00000 n +0001678561 00000 n +0001678630 00000 n +0001678693 00000 n +0001678762 00000 n +0001678831 00000 n +0001678894 00000 n +0001678963 00000 n +0001679032 00000 n +0001679095 00000 n +0001679181 00000 n +0001679250 00000 n +0001679330 00000 n +0001679436 00000 n +0001679520 00000 n +0001679600 00000 n +0001679766 00000 n +0001679850 00000 n +0001679934 00000 n +0001680014 00000 n +0001680120 00000 n +0001680204 00000 n +0001680284 00000 n +0001680570 00000 n +0001680654 00000 n +0001680738 00000 n +0001680822 00000 n +0001680902 00000 n +0001681020 00000 n +0001681104 00000 n +0001681188 00000 n +0001681267 00000 n +0001681393 00000 n +0001681477 00000 n +0001681561 00000 n +0001681645 00000 n +0001681768 00000 n +0001681852 00000 n +0001681936 00000 n +0001682047 00000 n +0001682131 00000 n +0001682242 00000 n +0001682326 00000 n +0001682433 00000 n +0001682517 00000 n +0001682597 00000 n +0001682723 00000 n +0001682807 00000 n +0001682891 00000 n +0001682971 00000 n +0001683069 00000 n +0001683204 00000 n +0001683288 00000 n +0001683372 00000 n +0001683456 00000 n +0001683559 00000 n +0001683643 00000 n +0001683727 00000 n +0001683796 00000 n +0001683865 00000 n +0001683938 00000 n +0001684007 00000 n +0001684076 00000 n +0001684145 00000 n +0001684214 00000 n +0001684283 00000 n +0001684360 00000 n +0001684444 00000 n +0001684513 00000 n +0001684582 00000 n +0001684651 00000 n +0001684720 00000 n +0001684789 00000 n +0001684870 00000 n +0001684954 00000 n +0001685023 00000 n +0001685092 00000 n +0001685161 00000 n +0001685230 00000 n +0001685299 00000 n +0001685376 00000 n +0001685460 00000 n +0001685529 00000 n +0001685598 00000 n +0001685661 00000 n +0001685730 00000 n +0001685799 00000 n +0001685868 00000 n +0001685937 00000 n +0001686006 00000 n +0001686083 00000 n +0001686167 00000 n +0001686258 00000 n +0001686342 00000 n +0001686469 00000 n +0001686553 00000 n +0001686637 00000 n +0001686721 00000 n +0001686808 00000 n +0001686877 00000 n +0001686946 00000 n +0001687031 00000 n +0001687115 00000 n +0001687184 00000 n +0001687253 00000 n +0001687326 00000 n +0001687395 00000 n +0001687464 00000 n +0001687527 00000 n +0001687596 00000 n +0001687665 00000 n +0001687750 00000 n +0001687834 00000 n +0001687903 00000 n +0001687972 00000 n +0001688045 00000 n +0001688114 00000 n +0001688183 00000 n +0001688264 00000 n +0001688333 00000 n +0001688402 00000 n +0001688491 00000 n +0001688575 00000 n +0001688644 00000 n +0001688713 00000 n +0001688782 00000 n +0001688851 00000 n +0001688920 00000 n +0001688989 00000 n +0001689069 00000 n +0001689287 00000 n +0001689371 00000 n +0001689455 00000 n +0001689539 00000 n +0001689623 00000 n +0001689707 00000 n +0001689810 00000 n +0001689890 00000 n +0001689992 00000 n +0001690061 00000 n +0001690130 00000 n +0001690199 00000 n +0001690268 00000 n +0001690337 00000 n +0001690400 00000 n +0001690469 00000 n +0001690538 00000 n +0001690615 00000 n +0001690699 00000 n +0001690806 00000 n +0001690890 00000 n +0001690959 00000 n +0001691028 00000 n +0001691097 00000 n +0001691166 00000 n +0001691235 00000 n +0001691304 00000 n +0001691373 00000 n +0001691442 00000 n +0001691511 00000 n +0001691580 00000 n +0001691649 00000 n +0001691718 00000 n +0001691787 00000 n +0001691856 00000 n +0001691919 00000 n +0001691988 00000 n +0001692057 00000 n +0001692126 00000 n +0001692195 00000 n +0001692264 00000 n +0001692327 00000 n +0001692414 00000 n +0001692517 00000 n +0001692648 00000 n +0001692732 00000 n +0001692816 00000 n +0001692897 00000 n +0001692966 00000 n +0001693035 00000 n +0001693104 00000 n +0001693173 00000 n +0001693242 00000 n +0001693311 00000 n +0001693380 00000 n +0001693449 00000 n +0001693512 00000 n +0001693592 00000 n +0001693878 00000 n +0001693962 00000 n +0001694046 00000 n +0001694130 00000 n +0001694229 00000 n +0001694313 00000 n +0001694393 00000 n +0001694479 00000 n +0001694548 00000 n +0001694617 00000 n +0001694685 00000 n +0001694753 00000 n +0001694866 00000 n +0001694950 00000 n +0001695019 00000 n +0001695088 00000 n +0001695156 00000 n +0001695269 00000 n +0001695353 00000 n +0001695422 00000 n +0001695491 00000 n +0001695559 00000 n +0001695656 00000 n +0001695725 00000 n +0001695794 00000 n +0001695862 00000 n +0001695991 00000 n +0001696075 00000 n +0001696143 00000 n +0001696212 00000 n +0001696281 00000 n +0001696349 00000 n +0001696716 00000 n +0001696800 00000 n +0001696869 00000 n +0001696949 00000 n +0001697055 00000 n +0001697190 00000 n +0001697274 00000 n +0001697358 00000 n +0001697442 00000 n +0001697522 00000 n +0001697636 00000 n +0001697720 00000 n +0001697804 00000 n +0001697939 00000 n +0001698023 00000 n +0001698107 00000 n +0001698202 00000 n +0001698301 00000 n +0001698424 00000 n +0001698508 00000 n +0001698592 00000 n +0001698676 00000 n +0001698791 00000 n +0001698875 00000 n +0001698959 00000 n +0001699039 00000 n +0001699149 00000 n +0001699233 00000 n +0001699317 00000 n +0001699444 00000 n +0001699528 00000 n +0001699612 00000 n +0001699767 00000 n +0001699851 00000 n +0001699935 00000 n +0001700019 00000 n +0001700103 00000 n +0001700198 00000 n +0001700282 00000 n +0001700401 00000 n +0001700485 00000 n +0001700569 00000 n +0001700712 00000 n +0001700796 00000 n +0001700880 00000 n +0001700964 00000 n +0001701044 00000 n +0001701152 00000 n +0001701297 00000 n +0001701382 00000 n +0001701467 00000 n +0001701552 00000 n +0001701681 00000 n +0001701766 00000 n +0001701883 00000 n +0001701968 00000 n +0001702053 00000 n +0001702134 00000 n +0001702250 00000 n +0001702335 00000 n +0001702454 00000 n +0001702539 00000 n +0001702630 00000 n +0001702739 00000 n +0001702824 00000 n +0001702923 00000 n +0001703008 00000 n +0001703102 00000 n +0001703187 00000 n +0001703257 00000 n +0001703327 00000 n +0001703391 00000 n +0001703461 00000 n +0001703531 00000 n +0001703602 00000 n +0001703672 00000 n +0001703742 00000 n +0001703806 00000 n +0001703876 00000 n +0001703946 00000 n +0001704010 00000 n +0001704080 00000 n +0001704150 00000 n +0001704214 00000 n +0001704284 00000 n +0001704354 00000 n +0001704418 00000 n +0001704488 00000 n +0001704558 00000 n +0001704622 00000 n +0001704692 00000 n +0001704762 00000 n +0001704826 00000 n +0001704896 00000 n +0001704966 00000 n +0001705030 00000 n +0001705100 00000 n +0001705170 00000 n +0001705241 00000 n +0001705311 00000 n +0001705381 00000 n +0001705445 00000 n +0001705515 00000 n +0001705585 00000 n +0001705649 00000 n +0001705730 00000 n +0001705841 00000 n +0001705910 00000 n +0001706014 00000 n +0001706099 00000 n +0001706173 00000 n +0001706243 00000 n +0001706313 00000 n +0001706377 00000 n +0001706447 00000 n +0001706517 00000 n +0001706588 00000 n +0001706658 00000 n +0001706728 00000 n +0001706809 00000 n +0001706879 00000 n +0001706949 00000 n +0001707013 00000 n +0001707083 00000 n +0001707153 00000 n +0001707217 00000 n +0001707287 00000 n +0001707357 00000 n +0001707421 00000 n +0001707491 00000 n +0001707561 00000 n +0001707625 00000 n +0001707695 00000 n +0001707765 00000 n +0001707829 00000 n +0001707915 00000 n +0001708003 00000 n +0001708142 00000 n +0001708211 00000 n +0001708368 00000 n +0001708453 00000 n +0001708538 00000 n +0001708642 00000 n +0001708727 00000 n +0001708808 00000 n +0001708896 00000 n +0001708966 00000 n +0001709036 00000 n +0001709100 00000 n +0001709170 00000 n +0001709240 00000 n +0001709311 00000 n +0001709381 00000 n +0001709451 00000 n +0001709522 00000 n +0001709592 00000 n +0001709662 00000 n +0001709733 00000 n +0001709803 00000 n +0001709873 00000 n +0001709975 00000 n +0001710060 00000 n +0001710145 00000 n +0001710264 00000 n +0001710349 00000 n +0001710458 00000 n +0001710543 00000 n +0001710660 00000 n +0001710745 00000 n +0001710830 00000 n +0001710910 00000 n +0001710991 00000 n +0001711114 00000 n +0001711195 00000 n +0001711265 00000 n +0001711335 00000 n +0001711406 00000 n +0001711476 00000 n +0001711546 00000 n +0001711610 00000 n +0001711680 00000 n +0001711750 00000 n +0001711814 00000 n +0001711884 00000 n +0001711954 00000 n +0001712018 00000 n +0001712088 00000 n +0001712158 00000 n +0001712222 00000 n +0001712292 00000 n +0001712362 00000 n +0001712426 00000 n +0001712512 00000 n +0001712582 00000 n +0001712652 00000 n +0001712716 00000 n +0001712786 00000 n +0001712856 00000 n +0001712920 00000 n +0001712990 00000 n +0001713060 00000 n +0001713124 00000 n +0001713194 00000 n +0001713264 00000 n +0001713328 00000 n +0001713409 00000 n +0001713548 00000 n +0001713633 00000 n +0001713718 00000 n +0001713806 00000 n +0001713894 00000 n +0001713982 00000 n +0001714085 00000 n +0001714170 00000 n +0001714240 00000 n +0001714310 00000 n +0001714374 00000 n +0001714444 00000 n +0001714514 00000 n +0001714598 00000 n +0001714683 00000 n +0001714753 00000 n +0001714823 00000 n +0001714933 00000 n +0001715018 00000 n +0001715103 00000 n +0001715188 00000 n +0001715258 00000 n +0001715328 00000 n +0001715407 00000 n +0001715492 00000 n +0001715562 00000 n +0001715632 00000 n +0001715708 00000 n +0001715778 00000 n +0001715848 00000 n +0001715924 00000 n +0001715994 00000 n +0001716064 00000 n +0001716153 00000 n +0001716238 00000 n +0001716308 00000 n +0001716378 00000 n +0001716467 00000 n +0001716552 00000 n +0001716660 00000 n +0001716745 00000 n +0001716815 00000 n +0001716885 00000 n +0001716988 00000 n +0001717073 00000 n +0001717159 00000 n +0001717230 00000 n +0001717301 00000 n +0001717373 00000 n +0001717444 00000 n +0001717515 00000 n +0001717587 00000 n +0001717658 00000 n +0001717729 00000 n +0001717830 00000 n +0001717917 00000 n +0001717988 00000 n +0001718059 00000 n +0001718150 00000 n +0001718237 00000 n +0001718308 00000 n +0001718379 00000 n +0001718450 00000 n +0001718521 00000 n +0001718592 00000 n +0001718663 00000 n +0001718734 00000 n +0001718805 00000 n +0001718882 00000 n +0001718953 00000 n +0001719024 00000 n +0001719119 00000 n +0001719206 00000 n +0001719293 00000 n +0001719364 00000 n +0001719435 00000 n +0001719521 00000 n +0001719608 00000 n +0001719679 00000 n +0001719750 00000 n +0001719841 00000 n +0001719928 00000 n +0001719999 00000 n +0001720070 00000 n +0001720151 00000 n +0001720238 00000 n +0001720327 00000 n +0001720398 00000 n +0001720517 00000 n +0001720637 00000 n +0001720724 00000 n +0001720811 00000 n +0001720933 00000 n +0001721048 00000 n +0001721135 00000 n +0001721222 00000 n +0001721333 00000 n +0001721420 00000 n +0001721531 00000 n +0001721618 00000 n +0001721693 00000 n +0001721764 00000 n +0001721835 00000 n +0001721917 00000 n +0001721988 00000 n +0001722059 00000 n +0001722146 00000 n +0001722217 00000 n +0001722288 00000 n +0001722365 00000 n +0001722436 00000 n +0001722507 00000 n +0001722627 00000 n +0001722714 00000 n +0001722801 00000 n +0001722922 00000 n +0001723009 00000 n +0001723091 00000 n +0001723208 00000 n +0001723295 00000 n +0001723382 00000 n +0001723513 00000 n +0001723600 00000 n +0001723682 00000 n +0001723791 00000 n +0001723866 00000 n +0001723937 00000 n +0001724008 00000 n +0001724100 00000 n +0001724171 00000 n +0001724242 00000 n +0001724319 00000 n +0001724390 00000 n +0001724461 00000 n +0001724533 00000 n +0001724604 00000 n +0001724675 00000 n +0001724740 00000 n +0001724811 00000 n +0001724882 00000 n +0001724969 00000 n +0001725040 00000 n +0001725111 00000 n +0001725188 00000 n +0001725259 00000 n +0001725330 00000 n +0001725407 00000 n +0001725478 00000 n +0001725549 00000 n +0001725635 00000 n +0001725722 00000 n +0001725793 00000 n +0001725864 00000 n +0001725946 00000 n +0001726017 00000 n +0001726088 00000 n +0001726169 00000 n +0001726256 00000 n +0001726327 00000 n +0001726398 00000 n +0001726480 00000 n +0001726569 00000 n +0001726699 00000 n +0001726808 00000 n +0001726895 00000 n +0001727033 00000 n +0001727120 00000 n +0001727207 00000 n +0001727317 00000 n +0001727399 00000 n +0001727545 00000 n +0001727632 00000 n +0001727719 00000 n +0001727806 00000 n +0001728091 00000 n +0001728178 00000 n +0001728265 00000 n +0001728352 00000 n +0001728433 00000 n +0001728584 00000 n +0001728671 00000 n +0001728758 00000 n +0001728845 00000 n +0001728927 00000 n +0001729090 00000 n +0001729177 00000 n +0001729264 00000 n +0001729351 00000 n +0001729422 00000 n +0001729589 00000 n +0001729676 00000 n +0001729763 00000 n +0001729850 00000 n +0001729937 00000 n +0001730024 00000 n +0001730461 00000 n +0001730548 00000 n +0001730620 00000 n +0001730709 00000 n +0001730798 00000 n +0001730887 00000 n +0001730976 00000 n +0001731065 00000 n +0001731154 00000 n +0001731243 00000 n +0001731348 00000 n +0001731435 00000 n +0001731524 00000 n +0001731613 00000 n +0001731702 00000 n +0001731791 00000 n +0001731880 00000 n +0001731969 00000 n +0001732058 00000 n +0001732147 00000 n +0001732243 00000 n +0001732332 00000 n +0001732421 00000 n +0001732510 00000 n +0001732599 00000 n +0001732688 00000 n +0001732777 00000 n +0001732866 00000 n +0001732955 00000 n +0001733044 00000 n +0001733133 00000 n +0001733222 00000 n +0001733311 00000 n +0001733400 00000 n +0001733489 00000 n +0001733578 00000 n +0001733674 00000 n +0001733761 00000 n +0001733862 00000 n +0001733949 00000 n +0001734031 00000 n +0001734299 00000 n +0001734386 00000 n +0001734473 00000 n +0001734560 00000 n +0001734680 00000 n +0001734751 00000 n +0001734838 00000 n +0001734943 00000 n +0001735030 00000 n +0001735117 00000 n +0001735199 00000 n +0001735355 00000 n +0001735442 00000 n +0001735529 00000 n +0001735616 00000 n +0001735717 00000 n +0001735804 00000 n +0001735935 00000 n +0001736022 00000 n +0001736119 00000 n +0001736216 00000 n +0001736288 00000 n +0001736370 00000 n +0001736521 00000 n +0001736608 00000 n +0001736695 00000 n +0001736782 00000 n +0001736911 00000 n +0001736998 00000 n +0001737085 00000 n +0001737172 00000 n +0001737274 00000 n +0001737356 00000 n +0001737558 00000 n +0001737645 00000 n +0001737732 00000 n +0001737819 00000 n +0001737906 00000 n +0001737993 00000 n +0001738080 00000 n +0001738167 00000 n +0001738277 00000 n +0001738364 00000 n +0001738451 00000 n +0001738533 00000 n +0001738614 00000 n +0001738722 00000 n +0001738809 00000 n +0001738891 00000 n +0001739033 00000 n +0001739120 00000 n +0001739207 00000 n +0001739318 00000 n +0001739405 00000 n +0001739540 00000 n +0001739627 00000 n +0001739714 00000 n +0001739796 00000 n +0001739919 00000 n +0001740006 00000 n +0001740316 00000 n +0001740403 00000 n +0001740474 00000 n +0001740556 00000 n +0001740679 00000 n +0001740766 00000 n +0001740915 00000 n +0001741002 00000 n +0001741089 00000 n +0001741176 00000 n +0001741284 00000 n +0001741371 00000 n +0001741453 00000 n +0001741557 00000 n +0001741688 00000 n +0001741775 00000 n +0001742139 00000 n +0001742211 00000 n +0001742298 00000 n +0001742399 00000 n +0001742486 00000 n +0001742568 00000 n +0001742724 00000 n +0001742811 00000 n +0001742898 00000 n +0001742969 00000 n +0001743080 00000 n +0001743167 00000 n +0001743249 00000 n +0001743331 00000 n +0001743413 00000 n +0001743495 00000 n +0001743577 00000 n +0001743659 00000 n +0001743741 00000 n +0001743823 00000 n +0001743905 00000 n +0001743987 00000 n +0001744069 00000 n +0001744151 00000 n +0001744233 00000 n +0001744315 00000 n +0001744397 00000 n +0001744469 00000 n +0001744558 00000 n +0001744672 00000 n +0001744759 00000 n +0001744863 00000 n +0001744950 00000 n +0001745021 00000 n +0001745092 00000 n +0001745163 00000 n +0001745234 00000 n +0001745316 00000 n +0001745387 00000 n +0001745458 00000 n +0001745529 00000 n +0001745600 00000 n +0001745682 00000 n +0001745753 00000 n +0001745824 00000 n +0001745895 00000 n +0001745966 00000 n +0001746048 00000 n +0001746119 00000 n +0001746190 00000 n +0001746261 00000 n +0001746332 00000 n +0001746442 00000 n +0001746529 00000 n +0001746616 00000 n +0001746687 00000 n +0001746758 00000 n +0001746829 00000 n +0001746900 00000 n +0001746982 00000 n +0001747053 00000 n +0001747124 00000 n +0001747195 00000 n +0001747266 00000 n +0001747338 00000 n +0001747409 00000 n +0001747480 00000 n +0001747551 00000 n +0001747622 00000 n +0001747732 00000 n +0001747819 00000 n +0001747906 00000 n +0001748054 00000 n +0001748141 00000 n +0001748228 00000 n +0001748348 00000 n +0001748430 00000 n +0001748524 00000 n +0001748595 00000 n +0001748666 00000 n +0001748747 00000 n +0001748834 00000 n +0001748905 00000 n +0001748976 00000 n +0001749048 00000 n +0001749119 00000 n +0001749190 00000 n +0001749267 00000 n +0001749338 00000 n +0001749409 00000 n +0001749495 00000 n +0001749582 00000 n +0001749653 00000 n +0001749724 00000 n +0001749801 00000 n +0001749872 00000 n +0001749943 00000 n +0001750015 00000 n +0001750086 00000 n +0001750157 00000 n +0001750234 00000 n +0001750305 00000 n +0001750376 00000 n +0001750441 00000 n +0001750512 00000 n +0001750583 00000 n +0001750664 00000 n +0001750751 00000 n +0001750822 00000 n +0001750893 00000 n +0001750965 00000 n +0001751036 00000 n +0001751107 00000 n +0001751216 00000 n +0001751303 00000 n +0001751390 00000 n +0001751477 00000 n +0001751548 00000 n +0001751619 00000 n +0001751691 00000 n +0001751773 00000 n +0001751867 00000 n +0001751966 00000 n +0001752048 00000 n +0001752190 00000 n +0001752277 00000 n +0001752364 00000 n +0001752498 00000 n +0001752585 00000 n +0001752672 00000 n +0001752759 00000 n +0001752841 00000 n +0001752945 00000 n +0001753027 00000 n +0001753098 00000 n +0001753169 00000 n +0001753251 00000 n +0001753322 00000 n +0001753393 00000 n +0001753475 00000 n +0001753546 00000 n +0001753617 00000 n +0001753699 00000 n +0001753770 00000 n +0001753841 00000 n +0001753918 00000 n +0001753989 00000 n +0001754060 00000 n +0001754137 00000 n +0001754219 00000 n +0001754328 00000 n +0001754458 00000 n +0001754545 00000 n +0001754632 00000 n +0001754737 00000 n +0001754824 00000 n +0001754911 00000 n +0001754986 00000 n +0001755057 00000 n +0001755128 00000 n +0001755193 00000 n +0001755264 00000 n +0001755335 00000 n +0001755400 00000 n +0001755471 00000 n +0001755542 00000 n +0001755614 00000 n +0001755685 00000 n +0001755756 00000 n +0001755821 00000 n +0001755892 00000 n +0001755963 00000 n +0001756028 00000 n +0001756099 00000 n +0001756170 00000 n +0001756235 00000 n +0001756306 00000 n +0001756377 00000 n +0001756442 00000 n +0001756513 00000 n +0001756584 00000 n +0001756649 00000 n +0001756731 00000 n +0001756813 00000 n +0001756895 00000 n +0001756966 00000 n +0001757065 00000 n +0001757147 00000 n +0001757236 00000 n +0001757325 00000 n +0001757414 00000 n +0001757519 00000 n +0001757606 00000 n +0001757712 00000 n +0001757801 00000 n +0001757926 00000 n +0001758013 00000 n +0001758123 00000 n +0001758210 00000 n +0001758316 00000 n +0001758417 00000 n +0001758537 00000 n +0001758624 00000 n +0001758729 00000 n +0001758816 00000 n +0001758917 00000 n +0001759042 00000 n +0001759129 00000 n +0001759240 00000 n +0001759329 00000 n +0001759444 00000 n +0001759531 00000 n +0001759646 00000 n +0001759733 00000 n +0001759829 00000 n +0001759900 00000 n +0001759971 00000 n +0001760036 00000 n +0001760107 00000 n +0001760178 00000 n +0001760243 00000 n +0001760314 00000 n +0001760385 00000 n +0001760450 00000 n +0001760521 00000 n +0001760592 00000 n +0001760657 00000 n +0001760728 00000 n +0001760799 00000 n +0001760864 00000 n +0001760935 00000 n +0001761006 00000 n +0001761071 00000 n +0001761142 00000 n +0001761213 00000 n +0001761278 00000 n +0001761349 00000 n +0001761420 00000 n +0001761485 00000 n +0001761598 00000 n +0001761685 00000 n +0001761791 00000 n +0001761878 00000 n +0001761949 00000 n +0001762043 00000 n +0001762114 00000 n +0001762185 00000 n +0001762250 00000 n +0001762321 00000 n +0001762392 00000 n +0001762457 00000 n +0001762528 00000 n +0001762599 00000 n +0001762664 00000 n +0001762735 00000 n +0001762806 00000 n +0001762871 00000 n +0001762942 00000 n +0001763013 00000 n +0001763078 00000 n +0001763149 00000 n +0001763220 00000 n +0001763285 00000 n +0001763356 00000 n +0001763427 00000 n +0001763492 00000 n +0001763563 00000 n +0001763634 00000 n +0001763699 00000 n +0001763770 00000 n +0001763841 00000 n +0001763906 00000 n +0001763977 00000 n +0001764048 00000 n +0001764113 00000 n +0001764184 00000 n +0001764255 00000 n +0001764320 00000 n +0001764412 00000 n +0001764483 00000 n +0001764554 00000 n +0001764626 00000 n +0001764697 00000 n +0001764768 00000 n +0001764850 00000 n +0001764947 00000 n +0001775398 00000 n +0001786153 00000 n +0001786344 00000 n +0001787047 00000 n +0001788298 00000 n +0001790854 00000 n +0001791473 00000 n +0001791502 00000 n +0001791808 00000 n +0001792119 00000 n +0001792148 00000 n +0001792461 00000 n +0001792859 00000 n +0001793160 00000 n +0001793461 00000 n +0001793796 00000 n +0001794141 00000 n +0001794220 00000 n +0001794299 00000 n +0001807934 00000 n +0001811290 00000 n +0001811993 00000 n +0001815758 00000 n +0001815787 00000 n +0001816093 00000 n +0001816512 00000 n +0001816813 00000 n +0001817114 00000 n +0001817463 00000 n +0001817816 00000 n +0001827269 00000 n +0001827298 00000 n +0001827611 00000 n +0001828027 00000 n +0001828328 00000 n +0001828629 00000 n +0001828974 00000 n +0001829053 00000 n +0001834355 00000 n +0001839728 00000 n +0001839919 00000 n +0001839998 00000 n +0001842386 00000 n +0001851008 00000 n +0001854880 00000 n +0001857927 00000 n +0001857956 00000 n +0001858269 00000 n +0001858685 00000 n +0001858986 00000 n +0001859288 00000 n +0001859589 00000 n +0001859924 00000 n +0001860269 00000 n +0001860348 00000 n +0001860427 00000 n +0001860506 00000 n +0001860585 00000 n +0001860664 00000 n +0001860693 00000 n +0001860999 00000 n +0001861322 00000 n +0001861648 00000 n +0001861742 00000 n +0001862165 00000 n +0001862663 00000 n +0001863014 00000 n +0001863412 00000 n +0001863714 00000 n +0001864015 00000 n +0001864350 00000 n +0001864695 00000 n +0001864724 00000 n +0001865030 00000 n +0001865086 00000 n +0001865142 00000 n +0001865233 00000 n +0001865289 00000 n +0001865352 00000 n +0001865415 00000 n +0001865478 00000 n +0001865541 00000 n +0001865604 00000 n +0001865667 00000 n +0001865730 00000 n +0001865793 00000 n +0001865856 00000 n +0001865919 00000 n +0001865982 00000 n +0001866045 00000 n +0001866108 00000 n +0001866182 00000 n +0001866245 00000 n +0001866327 00000 n +0001866401 00000 n +0001866537 00000 n +0001866673 00000 n +0001866764 00000 n +0001866918 00000 n +0001866974 00000 n +0001867030 00000 n +0001867086 00000 n +0001867142 00000 n +0001867198 00000 n +0001867254 00000 n +0001867310 00000 n +0001867366 00000 n +0001867422 00000 n +0001867478 00000 n +0001867534 00000 n +0001867590 00000 n +0001867646 00000 n +0001867702 00000 n +0001867758 00000 n +0001867814 00000 n +0001867870 00000 n +0001867926 00000 n +0001868044 00000 n +0001868100 00000 n +0001868191 00000 n +0001868247 00000 n +0001868347 00000 n +0001868429 00000 n +0001868504 00000 n +0001868560 00000 n +0001868642 00000 n +0001868787 00000 n +0001868868 00000 n +0001868949 00000 n +0001869030 00000 n +0001869111 00000 n +0001869192 00000 n +0001869273 00000 n +0001869354 00000 n +0001869435 00000 n +0001869516 00000 n +0001869579 00000 n +0001869733 00000 n +0001869796 00000 n +0001869887 00000 n +0001870005 00000 n +0001870068 00000 n +0001870131 00000 n +0001870206 00000 n +0001870269 00000 n +0001870387 00000 n +0001870462 00000 n +0001870607 00000 n +0001870671 00000 n +0001870752 00000 n +0001870808 00000 n +0001870863 00000 n +0001871038 00000 n +0001871093 00000 n +0001871166 00000 n +0001871221 00000 n +0001871294 00000 n +0001871349 00000 n +0001871422 00000 n +0001871477 00000 n +0001871550 00000 n +0001871605 00000 n +0001871780 00000 n +0001871835 00000 n +0001871908 00000 n +0001871963 00000 n +0001872036 00000 n +0001872091 00000 n +0001872282 00000 n +0001872336 00000 n +0001872390 00000 n +0001872444 00000 n +0001872509 00000 n +0001872583 00000 n +0001872648 00000 n +0001872722 00000 n +0001872787 00000 n +0001872861 00000 n +0001872926 00000 n +0001873000 00000 n +0001873065 00000 n +0001873139 00000 n +0001873204 00000 n +0001873278 00000 n +0001873343 00000 n +0001873417 00000 n +0001873482 00000 n +0001873556 00000 n +0001873610 00000 n +0001873675 00000 n +0001873749 00000 n +0001873814 00000 n +0001873888 00000 n +0001873953 00000 n +0001874027 00000 n +0001874081 00000 n +0001874146 00000 n +0001874220 00000 n +0001874285 00000 n +0001874359 00000 n +0001874424 00000 n +0001874498 00000 n +0001874563 00000 n +0001874637 00000 n +0001874691 00000 n +0001874756 00000 n +0001874830 00000 n +0001874895 00000 n +0001874969 00000 n +0001875034 00000 n +0001875108 00000 n +0001875173 00000 n +0001875247 00000 n +0001875312 00000 n +0001875386 00000 n +0001875451 00000 n +0001875525 00000 n +0001875590 00000 n +0001875664 00000 n +0001875729 00000 n +0001875803 00000 n +0001875868 00000 n +0001875942 00000 n +0001876007 00000 n +0001876081 00000 n +0001876146 00000 n +0001876220 00000 n +0001876285 00000 n +0001876359 00000 n +0001876424 00000 n +0001876498 00000 n +0001876563 00000 n +0001876637 00000 n +0001876691 00000 n +0001876756 00000 n +0001876830 00000 n +0001876895 00000 n +0001876969 00000 n +0001877034 00000 n +0001877108 00000 n +0001877173 00000 n +0001877247 00000 n +0001877312 00000 n +0001877386 00000 n +0001877451 00000 n +0001877525 00000 n +0001877590 00000 n +0001877664 00000 n +0001877729 00000 n +0001877803 00000 n +0001877868 00000 n +0001877942 00000 n +0001878007 00000 n +0001878081 00000 n +0001878146 00000 n +0001878220 00000 n +0001878285 00000 n +0001878359 00000 n +0001878424 00000 n +0001878498 00000 n +0001878563 00000 n +0001878637 00000 n +0001878702 00000 n +0001878776 00000 n +0001878841 00000 n +0001878915 00000 n +0001878980 00000 n +0001879054 00000 n +0001879119 00000 n +0001879193 00000 n +0001879258 00000 n +0001879332 00000 n +0001879386 00000 n +0001879476 00000 n +0001879541 00000 n +0001879615 00000 n +0001879680 00000 n +0001879754 00000 n +0001879819 00000 n +0001879893 00000 n +0001879958 00000 n +0001880032 00000 n +0001880097 00000 n +0001880171 00000 n +0001880236 00000 n +0001880310 00000 n +0001880375 00000 n +0001880449 00000 n +0001880514 00000 n +0001880588 00000 n +0001880653 00000 n +0001880727 00000 n +0001880792 00000 n +0001880866 00000 n +0001880931 00000 n +0001881005 00000 n +0001881070 00000 n +0001881144 00000 n +0001881209 00000 n +0001881283 00000 n +0001881348 00000 n +0001881422 00000 n +0001881487 00000 n +0001881561 00000 n +0001881626 00000 n +0001881700 00000 n +0001881765 00000 n +0001881839 00000 n +0001881904 00000 n +0001881978 00000 n +0001882043 00000 n +0001882117 00000 n +0001882182 00000 n +0001882256 00000 n +0001882321 00000 n +0001882395 00000 n +0001882460 00000 n +0001882534 00000 n +0001882599 00000 n +0001882673 00000 n +0001882738 00000 n +0001882812 00000 n +0001882877 00000 n +0001882951 00000 n +0001883016 00000 n +0001883090 00000 n +0001883155 00000 n +0001883229 00000 n +0001883294 00000 n +0001883368 00000 n +0001883422 00000 n +0001883487 00000 n +0001883552 00000 n +0001883626 00000 n +0001883691 00000 n +0001883765 00000 n +0001883830 00000 n +0001883904 00000 n +0001883969 00000 n +0001884043 00000 n +0001884108 00000 n +0001884182 00000 n +0001884247 00000 n +0001884321 00000 n +0001884386 00000 n +0001884460 00000 n +0001884525 00000 n +0001884599 00000 n +0001884664 00000 n +0001884738 00000 n +0001884803 00000 n +0001884877 00000 n +0001884942 00000 n +0001885016 00000 n +0001885081 00000 n +0001885155 00000 n +0001885220 00000 n +0001885294 00000 n +0001885359 00000 n +0001885433 00000 n +0001885498 00000 n +0001885572 00000 n +0001885626 00000 n +0001885680 00000 n +0001885734 00000 n +0001885788 00000 n +0001885853 00000 n +0001885927 00000 n +0001885992 00000 n +0001886066 00000 n +0001886131 00000 n +0001886205 00000 n +0001886270 00000 n +0001886344 00000 n +0001886409 00000 n +0001886483 00000 n +0001886548 00000 n +0001886622 00000 n +0001886687 00000 n +0001886761 00000 n +0001886826 00000 n +0001886900 00000 n +0001886954 00000 n +0001887019 00000 n +0001887093 00000 n +0001887160 00000 n +0001887235 00000 n +0001887302 00000 n +0001887377 00000 n +0001887444 00000 n +0001887519 00000 n +0001887586 00000 n +0001887661 00000 n +0001887728 00000 n +0001887815 00000 n +0001887882 00000 n +0001887957 00000 n +0001888024 00000 n +0001888099 00000 n +0001888166 00000 n +0001888241 00000 n +0001888308 00000 n +0001888383 00000 n +0001888450 00000 n +0001888525 00000 n +0001888592 00000 n +0001888667 00000 n +0001888734 00000 n +0001888809 00000 n +0001888876 00000 n +0001888951 00000 n +0001889018 00000 n +0001889093 00000 n +0001889160 00000 n +0001889235 00000 n +0001889302 00000 n +0001889377 00000 n +0001889444 00000 n +0001889519 00000 n +0001889586 00000 n +0001889661 00000 n +0001889728 00000 n +0001889803 00000 n +0001889870 00000 n +0001889945 00000 n +0001890012 00000 n +0001890087 00000 n +0001890154 00000 n +0001890229 00000 n +0001890296 00000 n +0001890371 00000 n +0001890438 00000 n +0001890513 00000 n +0001890580 00000 n +0001890655 00000 n +0001890710 00000 n +0001890794 00000 n +0001890849 00000 n +0001890904 00000 n +0001891078 00000 n +0001891270 00000 n +0001891325 00000 n +0001891436 00000 n +0001891521 00000 n +0001891596 00000 n +0001891681 00000 n +0001891756 00000 n +0001891841 00000 n +0001891916 00000 n +0001892001 00000 n +0001892076 00000 n +0001892161 00000 n +0001892236 00000 n +0001892321 00000 n +0001892396 00000 n +0001892481 00000 n +0001892556 00000 n +0001892623 00000 n +0001892698 00000 n +0001892765 00000 n +0001892840 00000 n +0001892907 00000 n +0001892982 00000 n +0001893049 00000 n +0001893124 00000 n +0001893191 00000 n +0001893266 00000 n +0001893333 00000 n +0001893408 00000 n +0001893475 00000 n +0001893550 00000 n +0001893617 00000 n +0001893692 00000 n +0001893759 00000 n +0001893834 00000 n +0001893901 00000 n +0001893976 00000 n +0001894043 00000 n +0001894118 00000 n +0001894185 00000 n +0001894260 00000 n +0001894327 00000 n +0001894402 00000 n +0001894469 00000 n +0001894544 00000 n +0001894611 00000 n +0001894686 00000 n +0001894753 00000 n +0001894828 00000 n +0001894895 00000 n +0001894970 00000 n +0001895037 00000 n +0001895112 00000 n +0001895179 00000 n +0001895254 00000 n +0001895321 00000 n +0001895396 00000 n +0001895463 00000 n +0001895538 00000 n +0001895605 00000 n +0001895680 00000 n +0001895747 00000 n +0001895822 00000 n +0001895889 00000 n +0001895964 00000 n +0001896031 00000 n +0001896106 00000 n +0001896161 00000 n +0001896216 00000 n +0001896271 00000 n +0001896326 00000 n +0001896381 00000 n +0001896436 00000 n +0001896491 00000 n +0001896546 00000 n +0001896601 00000 n +0001896656 00000 n +0001896711 00000 n +0001896766 00000 n +0001896821 00000 n +0001896876 00000 n +0001896931 00000 n +0001896986 00000 n +0001897041 00000 n +0001897096 00000 n +0001897151 00000 n +0001897218 00000 n +0001897293 00000 n +0001897360 00000 n +0001897435 00000 n +0001897502 00000 n +0001897577 00000 n +0001897644 00000 n +0001897719 00000 n +0001897786 00000 n +0001897861 00000 n +0001897928 00000 n +0001898003 00000 n +0001898070 00000 n +0001898145 00000 n +0001898212 00000 n +0001898287 00000 n +0001898354 00000 n +0001898429 00000 n +0001898496 00000 n +0001898571 00000 n +0001898638 00000 n +0001898713 00000 n +0001898780 00000 n +0001898855 00000 n +0001898922 00000 n +0001898997 00000 n +0001899064 00000 n +0001899139 00000 n +0001899206 00000 n +0001899281 00000 n +0001899348 00000 n +0001899423 00000 n +0001899490 00000 n +0001899565 00000 n +0001899632 00000 n +0001899707 00000 n +0001899774 00000 n +0001899849 00000 n +0001899916 00000 n +0001899991 00000 n +0001900058 00000 n +0001900133 00000 n +0001900210 00000 n +0001900507 00000 n +0001901598 00000 n +0001903298 00000 n +0001903375 00000 n +0001903672 00000 n +0001903863 00000 n +0001904315 00000 n +0001905406 00000 n +0001905597 00000 n +0001906291 00000 n +0001909662 00000 n +0001911705 00000 n +0001912156 00000 n +0001913246 00000 n +0001913411 00000 n +0001913549 00000 n +0001913687 00000 n +0001913825 00000 n +0001913962 00000 n +0001914100 00000 n +0001914245 00000 n +0001914383 00000 n +0001914521 00000 n +0001914685 00000 n +0001914751 00000 n +0001914817 00000 n +0001914936 00000 n +0001915002 00000 n +0001915076 00000 n +0001915142 00000 n +0001915225 00000 n +0001915291 00000 n +0001915374 00000 n +0001915429 00000 n +0001915557 00000 n +0001915612 00000 n +0001915686 00000 n +0001915750 00000 n +0001915805 00000 n +0001915860 00000 n +0001915924 00000 n +0001915979 00000 n +0001916054 00000 n +0001916129 00000 n +0001916212 00000 n +0001916295 00000 n +0001916370 00000 n +0001916462 00000 n +0001916537 00000 n +0001916638 00000 n +0001916693 00000 n +0001916748 00000 n +0001916814 00000 n +0001916880 00000 n +0001916935 00000 n +0001917045 00000 n +0001917109 00000 n +0001917173 00000 n +0001917228 00000 n +0001917312 00000 n +0001917396 00000 n +0001917480 00000 n +0001917564 00000 n +0001917648 00000 n +0001917737 00000 n +0001921091 00000 n +0001921180 00000 n +0001924530 00000 n +0001924607 00000 n +0001924904 00000 n +0001924981 00000 n +0001925278 00000 n +0001925333 00000 n +0001925388 00000 n +0001925443 00000 n +0001925498 00000 n +0001925553 00000 n +0001925608 00000 n +0001925663 00000 n +0001925718 00000 n +0001925773 00000 n +0001925828 00000 n +0001925883 00000 n +0001925938 00000 n +0001925993 00000 n +0001926048 00000 n +0001926103 00000 n +0001926158 00000 n +0001926213 00000 n +0001926279 00000 n +0001926334 00000 n +0001926389 00000 n +0001926444 00000 n +0001926499 00000 n +0001926542 00000 n +0001926631 00000 n +0001929980 00000 n +0001930069 00000 n +0001933420 00000 n +0001933493 00000 n +0001933536 00000 n +0001933579 00000 n +0001933622 00000 n +0001933665 00000 n +0001933722 00000 n +0001933765 00000 n +0001933808 00000 n +0001933881 00000 n +0001933924 00000 n +0001933997 00000 n +0001934070 00000 n +0001934134 00000 n +trailer +<< +/ID [<6836C3BA384B334BA378BA61856F8995> <90E756FFF518F54D9C9C2A4E8DA1D48E>] +/Info 1 0 R +/Root 2 0 R +/Size 2235 +>> +startxref +1934198 +%%EOF diff --git a/src/Static/data/Standards/4/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.docx b/src/Static/data/Standards/4/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.docx new file mode 100644 index 0000000..1a4e4c0 Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.docx differ diff --git a/src/Static/data/Standards/4/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.pdf b/src/Static/data/Standards/4/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.pdf new file mode 100644 index 0000000..c1b3bf7 --- /dev/null +++ b/src/Static/data/Standards/4/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.pdf @@ -0,0 +1,14588 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210108154720+01'00') +/Creator (Adobe InDesign 15.0 \(Windows\)) +/ModDate (D:20210108154915+01'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Names 4 0 R +/Pages 5 0 R +/StructTreeRoot 6 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-01-08T15:47:20+01:00 + 2021-01-08T15:47:22+01:00 + Adobe InDesign 15.0 (Windows) + 2021-01-08T15:49:15+01:00 + uuid:7f686bd3-5ba4-46b9-a7cf-8424cb4063a5 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:b6f0048f-94b3-f34a-9dd4-e290faabfc89 + proof:pdf + + xmp.iid:d8f99021-5c35-8844-830b-b19074c831f0 + xmp.did:b638227f-5e9d-ea40-b620-ccc06311739a + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 15.0 (Windows) + / + 2021-01-08T15:47:20+01:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Dests 7 0 R +>> +endobj +5 0 obj +<< +/Count 22 +/Kids [8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R +24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R] +/Type /Pages +>> +endobj +6 0 obj +<< +/ClassMap 30 0 R +/K 31 0 R +/ParentTree 32 0 R +/ParentTreeNextKey 32 +/RoleMap 33 0 R +/Type /StructTreeRoot +>> +endobj +7 0 obj +<< +/Names [(BICC_UN_DDR-Module _4.11_online.indd:7989) [28 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:7990) [10 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:7991) [28 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:7992) [15 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:7993) [28 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:7994) [15 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:8483) [28 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:8484) [24 0 R /Fit] +(BICC_UN_DDR-Module _4.11_online.indd:8485) [28 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:8486) [23 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:8487) [28 0 R /Fit] (BICC_UN_DDR-Module _4.11_online.indd:8488) [25 0 R /Fit]] +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 34 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ColorSpace << +/CS0 35 0 R +>> +/ExtGState << +/GS0 36 0 R +/GS1 37 0 R +>> +/Font << +/TT0 38 0 R +/TT1 39 0 R +/C2_0 40 0 R +/T1_0 41 0 R +/T1_1 42 0 R +/T1_2 43 0 R +/T1_3 44 0 R +/T1_4 45 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 46 0 R +/Fm1 47 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/T1_0 59 0 R +/T1_1 60 0 R +/T1_2 61 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/Annots 63 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 64 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/TT1 65 0 R +/T1_0 59 0 R +/T1_1 66 0 R +/T1_2 67 0 R +/T1_3 60 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 69 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/TT1 65 0 R +/T1_0 59 0 R +/T1_1 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 70 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/T1_0 59 0 R +/T1_1 66 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 71 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/T1_0 59 0 R +/T1_1 66 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 72 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/T1_0 59 0 R +/T1_1 66 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/Annots 73 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 74 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/C2_0 75 0 R +/T1_0 59 0 R +/T1_1 66 0 R +/T1_2 61 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 76 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +/GS2 77 0 R +/GS3 78 0 R +>> +/Font << +/TT0 58 0 R +/C2_0 75 0 R +/T1_0 59 0 R +/T1_1 79 0 R +/T1_2 66 0 R +/T1_3 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 80 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/C2_0 75 0 R +/T1_0 59 0 R +/T1_1 66 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 81 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/C2_0 75 0 R +/T1_0 59 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 82 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 77 0 R +/GS2 78 0 R +/GS3 57 0 R +>> +/Font << +/C2_0 75 0 R +/T1_0 59 0 R +/T1_1 66 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 22 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 83 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 77 0 R +/GS2 78 0 R +/GS3 57 0 R +>> +/Font << +/C2_0 75 0 R +/T1_0 59 0 R +/T1_1 66 0 R +/T1_2 67 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 23 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 84 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/C2_0 75 0 R +/T1_0 59 0 R +/T1_1 66 0 R +/T1_2 61 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 85 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/T1_0 59 0 R +/T1_1 61 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/Annots 86 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/TT1 65 0 R +/C2_0 75 0 R +/T1_0 59 0 R +/T1_1 61 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/Annots 88 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 89 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1899 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/T1_0 59 0 R +/T1_1 61 0 R +/T1_2 66 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 17 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/Annots 90 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1870 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/C2_0 75 0 R +/T1_0 59 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 92 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1813 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/T1_0 59 0 R +/T1_1 66 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 21 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 93 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1814 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/C2_0 75 0 R +/T1_0 59 0 R +/T1_1 66 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 62 0 R +>> +>> +/Rotate 0 +/StructParents 24 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/Annots 94 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 95 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7803 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/TT0 58 0 R +/T1_0 59 0 R +/T1_1 66 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 68 0 R +>> +>> +/Rotate 0 +/StructParents 25 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 96 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1846 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +>> +>> +/Resources << +/ExtGState << +/GS0 97 0 R +>> +/XObject << +/Fm0 98 0 R +/Fm1 99 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/A4 << +/O /Layout +/LineHeight 0.0 +>> +/A5 << +/O /Layout +/LineHeight 12.5 +>> +/A6 << +/O /Layout +/LineHeight 11.0 +/BaselineShift 3.66299 +>> +/A7 << +/O /Layout +/LineHeight 9.3 +>> +/A8 << +/O /Layout +/LineHeight 10.75 +>> +/A9 << +/O /Layout +/LineHeight 10.5 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa4 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 34.0 +>> +/Pa5 << +/O /Layout +/LineHeight 11.0 +>> +/Pa6 << +/O /Layout +/TextAlign /Center +/LineHeight 12.0 +>> +/Pa7 << +/O /Layout +/LineHeight 16.0 +>> +/Pa8 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa9 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa10 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceBefore 8.0 +>> +/Pa11 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa12 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa13 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa14 << +/O /Layout +/LineHeight 12.0 +>> +/Pa15 << +/O /Layout +/LineHeight 10.75 +>> +/Pa16 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -19.0 +/StartIndent 42.0 +>> +/Pa18 << +/O /Layout +/LineHeight 11.0 +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa19 << +/O /Layout +/TextAlign /Justify +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +>> +endobj +31 0 obj +<< +/K 100 0 R +/Lang (de-DE) +/P 6 0 R +/S /Document +>> +endobj +32 0 obj +<< +/Nums [0 101 0 R 1 102 0 R 2 103 0 R 3 104 0 R 4 105 0 R 5 106 0 R 6 107 0 R 7 108 0 R +8 109 0 R 9 110 0 R 10 111 0 R 11 112 0 R 12 113 0 R 13 114 0 R 14 115 0 R 15 116 0 R +16 117 0 R 17 118 0 R 18 119 0 R 19 120 0 R 20 121 0 R 21 122 0 R 22 123 0 R 23 124 0 R +24 125 0 R 25 126 0 R 26 127 0 R 27 128 0 R 28 129 0 R 29 130 0 R 30 131 0 R 31 132 0 R] +>> +endobj +33 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Kapitel-Head /P +/Endnote_1._Abs /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Zwischenhead_4 /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +/NormalParagraphStyle /P +/Tab._Lauftext_light_ /P +/Tab._Versal_bold_sch /P +/Tab._Versal_bold_wei /P +/_No_paragraph_style_ /P +>> +endobj +34 0 obj +<< +/Filter /FlateDecode +/Length 3920 +>> +stream +H‰ì—ÛnÛH†ïõ}©†í>€ @'A“ÁîFØ\‹…ƇÀ3¶œ±”xòö[UM‰MY’›R<ɶ/H‘Íîjòÿê¯úctôúdç#É&?½º’ìøzô¯Ñë×U¾~ôîÓtÆž<9úy:ûÈÆg³æõs~ôöÅ›c¦ØÓ§Ï_°ÑóÉèè<|2gRÇØüd¶šîh¢þ'aìä|ÔH!#›œ°|¼eV3 ÿγè„u>0ŸœpÁÃݫч±åó³±P¼‰"°±âÿücôr2zùÞœ.‚SmD‰ê"Q¶ OnÍS=;Y|ž^NÎþ\ϸlÛ¹vû½÷šwT¼‚ŠÏdŠÏd„–~ŸO±÷"ÜýÆoyãQ=ÓÙ”7·õ±ÝÞn7±ñU;bù{Æåî+¶cK$&“B÷:´jÓ[¦<¯:å;‘2.eå¿hãƒÏ ~®Ù‚Î …¨ÆŠ—ŒÂKóÚø\ŸÌ°ßU•Q|È%’øPøÞè 2«^õm¾÷« +æ5·T?´õï· ‡Ÿ^ÀoªJŒËÍG;Í'¬3æb­rÆ—TØskQ¥'<¶“x¬qœÄ¹/¹¹sIÛ!™8ª¦SJCÛ{uß[“iƒ&í¡I¶·ÃB“¶R“Zníú| •°*÷P*/]–tB ]Bá@…Ü@YÞ‡ÒÐÚÑçUôy«v'–B-6ñaüh!é¦ñ§†zZ)*Oj›Oë ¨”$‘ÝàYÄõ«{5­zòÒi•(+òäãñû;uêŒIX,ÛKu3¥e¨E[÷ëD©38Ò¬cCÆ µ½Ðö(,êù^+í6sŒ §[Ž¡L‰ˆ±Bˆ4«¦¸P‹hÜÊZΰB'sÀÒü C},2 Å<7x ½YCmoÐ9,2}öŠ\úr› ì>,¶†Lè ;Ek‘2ìEt.¼ Sgj"¦mqAÌ(”6zSšvÊ€QÖ&û˜D†Âj$HÀ#¬…ïu™n(™½8”L_C¦4ÂE£ÖÉl ’cGóEËb0sÄŽ—1A Iã²›#¤ÙXr}‡K¨ Ù³–¹:,@DUx¤ê‡8n Wk'¤Ez ™±ÚA(Ç¡(÷‚zP”SÊ&”‰ë(âÃŽò/ÈœÇJŽv=W2îò8¨¥sW†ôÒ‰&ËÿÚsQtlv¹šr@ \@ ÷')§¸æJa¹[L)Ù}=îrÙþim0rsPñ1 &6‚4 |¨Rcö-95j §½PöâÔUrjÖêtx›öi´(µÖ-¡­ý&”¼ÐÞš Ýí ØÈ<–ª ¬ˆá÷G¸a°0öˆÜ‘2t· ÃÈ1Þù·<îjkKI>l[kìP’{¡=(É®Æq­)8}§­¥ÒÔl¸ï¸Ä §Ëòœ“ÿžµÕ9ú¯ßh¦T>+éñx‚&š[Q‹ãnàÄಌv˜!¾V£ïÑÿQÐÕ²»Ft AÖ£;Ù0Ù^HŠlY¿M&*›œ@“Ò`”™b-\ŽO¢Öá{ÃÞÑxOAºAâG(•Â@"ÈÖ+º ÁuÓ +ã‚«Sk°i¦vFÄ©öIÄßTÅ&Dô#£yºÄõ)ɹ&ãžs'èÑ´4u™gh§Îsšb΂ükªÊ%Šé4e«1b(ïækð'$™b—ì=T\<£Õ`ž·¬:‰ôúa ËY„ÎÖ¿\!äzŸk»¦w$¡NhƒÔoeß@T"x·3ã•UZo;6ja$"Rngá[Õ¾ÌÂ_ҹͽtÏðÁd÷rÜPó&¸#“Q»èÁ +’—¦äÚßWšƒ¬`á+}^ènÏ°*M$ÃDÓôlÎâ­SvËÊ–H-ßu Žù‰ÓÊ]?ª¨!ƒ1Fœ»4Bx˜ù²šHÑñ+«±ÕNxŸCxÝÊB¦-E·Ó¡aišR?Š}LÉײi+êH¢ð)®ƒ¨P˜ú`ÁÏg\OxÊë„S‡‰Ëã X̆¥ˆ–ŸØÍd0*V<¶ Ô‹%hÖ` î Å”Êٺ´.X +råƒã—` å” ¹nó ÖÂtá+;§¸^ËY`º¬“»äDV iÇeG\Α§þ}@Öp›³†4æ§ 8Z)ÕÙÔWƒvÞWËí£@?ÀnÝýø µü…þ\QÇ;æ6ËLàëÎÓ¨?ãŠo¥}Ð}ƒ.·Á$³wQ­§HÅÁ(Œå[®/ã–Ç¥îœm'fïáÑ€Ï>Ã{qH¹gã£SnuHxÿ2¢CbÜåƒ 2 å³Ä>€¦J@Ü»kÓøÄ~ƒô÷tmEÇf¡¹h;¶.^¶Ç&—–O¸UÙ;ŠÞjÕ-•½•Î½•i;«;«Øva«ž¬í¬b¯³šr²I(†Ù1Ï–yŒŽ +ãÿ y I²J®g›<·85¦ŸWÔB’/ø{ FFÍée5ËNmiÝT¨¡yKOd =igÖ¾m!«0|ûvÏé íž ¶{Û¶VMŒÙ¯Ýƒ/lµLÙä9¿5-¦Ð|ÔÙ^á–|‰&*KÀšÙè®Q$L—d še®NÒgøušyÓ)®†I(—Ù§–ÅSDNqN«wŸÀzCÏ¢K?ž>Ï’éï³÷Ÿ߈;ý +endstream +endobj +35 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +36 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +37 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +38 0 obj +<< +/BaseFont /VXQIOI+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 133 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 134 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 333 250 0 +0 500 500 500 500 500 500 500 0 500 0 0 0 0 0 0 +0 778 0 709 774 0 0 763 0 337 0 0 0 946 831 0 +0 0 668 525 613 0 722 1000 0 0 0 0 0 0 0 0 +0 500 0 444 611 479 333 556 0 291 0 556 291 883 582 546 +601 0 395 424 326 603 565 834 0 556] +>> +endobj +39 0 obj +<< +/BaseFont /EVEFKQ+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 135 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 136 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 320 218 0 +452 348 462 434 452 434 462 462 452 442 236 0 0 0 0 0 +0 696 574 0 726 536 0 726 0 348 0 0 546 884 744 0 +556 0 660 528 602 0 0 904 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 0 302 264 0 312 800 556 490 +528 0 378 396 340 546 508 0 462 518] +>> +endobj +40 0 obj +<< +/BaseFont /YCDQEC+Wingdings-Regular +/DescendantFonts 137 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 138 0 R +/Type /Font +>> +endobj +41 0 obj +<< +/BaseFont /HPUCAK+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 139 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 140 0 R +/Type /Font +/Widths [233 0 0 426 0 0 426] +>> +endobj +42 0 obj +<< +/BaseFont /XAUUQE+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 141 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 142 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 612 0 0 0 0 0 0 0 0 0 0 0 804 0 0 +0 0 0 0 497 0 0 846 0 0 0 0 0 0 0 0 +0 482 0 0 564 501 0 559 0 234 0 0 236 834 555 549 +569 0 327 396 331 551] +>> +endobj +43 0 obj +<< +/BaseFont /AWLWGY+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 143 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 144 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 528 0 0 730 +602 0 0 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 0 610 539 0 596 0 292 0 0 292 871 599 589 +610 0 403 451 383 598 551] +>> +endobj +44 0 obj +<< +/BaseFont /JSTOCG+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 145 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 146 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +45 0 obj +<< +/BaseFont /WZZECG+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 147 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 148 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 0 0 0 0 0 0 0 0 0 827 0 0 +0 0 0 0 525 0 0 869 0 0 0 0 0 0 0 0 +0 508 0 0 581 516 0 573 0 256 0 0 257 848 572 564 +585 0 356 417 351 569] +>> +endobj +46 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12093 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 35 0 R +>> +/ExtGState << +/GS0 36 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—IŽ\ÉD÷uŠüó°ÖBЩ{Q%@Íûzf™Y$°2âÇàƒ¹¹Eº×ìWºwjú¿^ÿùñÇ?ÿ•®?~¤;¥z=ÖÝù8J½GÞ×Êéži_ÿûã?üƒ•?~²³\×Ïÿýøß•¯Ä¿|õ:îVK¿J_wIu\?¾>ôéë#ç»æëQò½8(·»†a½æ纓Íc^?>=ÛõÈ©ß™Gi÷l›‰Úî½øÑë][r÷îE{V¿kíLrYµß²~`ÌìZÝ÷ݳÏÁ¼Þ´-ïÍeÜ‘±0á3&rkeÕhwòí©žmóžeÅ®q—zí{î¢ù†såªóîKãÆ«§»ŽîÕµ–zõy¯,¹a÷y|ÏÅ{qó"Ú7Fh S*šH}úÞÕ|üæ@Å“5»ºrõá3¾<‘ç¾:w­qiXÙD€‡j8p¦qåÌg¿'Ê]buëY£±ûõ<«Õ;Mgd·»å¡‰îÓê=ÇÐòÕ·‡­. k¶ÇLT¬â¶Þ›¿Ë‘–"kÚ ê&õ,×w&f’1垸Æò¼›‡™Ìž!Ëç&Ã^^†ò´îŒí‡äʉrá°@Æ™©”ë“ Vnöç/ÛÀMIÊÚÖ÷Òòhlœ¿µºËxr;S¾Ênln€…H•éŒj5¾”vUÆËêÆr +Ià:>—DVì $e\Òrr¼®¼î]¶òPú·ÃŠ‹EÔ…;,®ƒa£Ö\Žš²¤eûÍ/–Pùiø³dú k`á  +¨€n‚Ó"çk9 ,ÍÈJÇf¾Ï@È7ø ä)cµg +X§'ÕÊŽªÒöŸàZ0ßë<éÛ#¾¤à(A"ÙgrÀkëþ›U)¬+ÏhGæÅl:‰ÙbÇäÖÏWÊ8«Öou `{_¶Þp=©KŸÁ©j#óÌO‡F%Â;ä}oçæ m‘ ãr‚já½âvrAìŒþ _숪óeF±P‘xY ¹ñJjÀe¢-ç\ŠfÇ ÛR¾äˆ]rs…¯øžB%‹1·c—f´Åé®"{’  ¢ªØIÆ_ëzJ4n}öq1Ü0š51|$Ž§´w5„ê1,²ˆ ¨Çúv€ôQö¸Ø! 51ÝÊ…ºlhÕióŽ¶B.5‚–ŠMƒf&$n!´½”cqã8|fz0Ù%MJ†ÉNâî®W©)ñ¹ê5¤— °N‘&¨N ³XÌkqŒÕij¿.B¾BÈùá1¾µ (·B«b5™qy™“Dì ¦Y÷ãð¾JBòz*eŽ2J +ÆAzŽÅb3‘ëòŒR©#u«Ñ=Rˆtéñ®iVÁ `è8úQÖ·}D?’Öã®–DEíʯ¥ùR»´ºÜ@NÑóÙÉ5Ãás;).Œñjù®,›~Ô–+$ž(õ«BI!o¿é [¼¶r|4>†;“Ÿh$DôMßZzR47¢hdœ£Û{}&Žª‚éQ“Ô‰¢>É%.Ñ7žÊGõš¸~Eb@H̪Úâ{o~ÝHhµ•gÞMòDB°“–ÀÔ¬ºúÅOÕ°˜H¥J JÖKÄI÷Z².(U*Y.ø£rJ96¦ñ„àiÉ,‡(Ú~ºŽÈ˜(Iñ”¸²(XÙA¤!S—Ô¾¥Ç%Ó$sª»ur yNHÓo9X4²DLªß^ù­àßrñùz)5ÅS¿ô>Ç#Rdç rY5ŸÅæe¾Þ…¿ÅM4Ü~%¤¾^„ +à§ðíç’I€å¦Zʳ–^Ôc¡àÞÖˆUí‰BY¯§µ™{0þnù ¨.†ª¾H©Ø/ †0Ê/R¥IÆËïIÃ::[8l=ÔCs’Ï>£áŠÆåŠã ü×õj2–·õ—ÖË®³d³_LwÎu?`®ÁÆåݧ©ÎeCOŸÍ[ñm›žu…\+ô[Ô¯Cš¡ÒÙ¼=U‹ÓˆΑÏÙLÔøá{é›VËþI‹H2t¿#¸nb·}©·ÃGVWGˆª^$Ì“]‡œ±àòØ=Ü£ù-tjeÜ_Ý…¥\¾¢ØÂ-¬&H‹tˆ`£º‰Ò’x¶q +ã!+çòMÎbZ@bE+‘®Á HM½®ºã÷¨ûQ‹,ÓîK¡ŒæšÒ¢rÐ’·$çñ{øMµÆßùZÈ`#ƒZ†loØWÉÜÙrƒ*gl+˜¡ZG‘i‡!ó\©ñj_0µ#GŠ¸(%”ÏÌ |U¤©µÞÀïe¿ïŒ°)¨Îê;6åòÖ…M‹M¤:ÔÞ*&N¤"=.®ág#](‰d§qL’²ê{ i,÷ä§l${rT l° >¿:*eîYÒë_÷¨Œ6]Ôeþ+–KJ¥Ê"¥ÖÃu#¡l™À£ÑrÊ`´•…áÖVÙ&ähʈðÁ°L¡©j¿´.¿Îù³Aá´‡À«*(,ž8 àrÅh ¹9¥Ø9>¨*÷(lQó=©'²k’¸°^D×ýØ RK¹` ñ*¨ˆ6Ë-ªcQOZ&¡‡NƵ™˜qm ‘–4žž³(té­lMî®[ò$´ÏQUëü°ŒâÀa,Y¼ÅÅØ–× 9k¹ IxþоCÞ¯/êÚÐKÿØô,Q6ÅÓ¿› •Lq3Û§ SþìmXº +Ž9ö?Àܼì«ä,‚[ŠÒø!~«.‘3\NÔb,üÎ6ÿ|Ž….e€)Š†”@²/§t£ÏÙÝf5 ô4:¶P­²8£SÖorÓ|fð»²;iðÂ|Ì… Iäw¯ëÉ·Á+[·Ä©MÆ]@K‚K.9•¾êð…›~×H䌘¯ 2ðË`>S„ 9…ÿSb„G–þR›NĨUÎÈg¨ˆ‚ÍûCó1g|EÈB¾ªoSѵiB§sæâÄ…0PñD‘áÀ‚EMºûÕˆäF(Ú¹Å1í X@}³bšA,VDú[]”ÙP.ŠÚPö¨¹b'U"ô.VkJ9@$+W N² +«= +‘êT¶(‘ó»F%ÀQ„³8£%öj„ª +™ïâZHB’s%ï—äw5í %?f.#xe…*ZØ®†¯¼QîRÏ›Y¸ÍÑ6lœá}Gæh~4„MyPˆo®)ÀT÷]͵=„õÇnH¤pßêš”²!!µñè +$hRIY •¦¡î÷塾܊\î?ã…Vð3Su˜,„ﶦaÇ3d_©—¾ì59pxq°ú1X³¶™”Šr¦,jJfì°.k©˜ß¥)dª_·Y‘l^ÐBq ¸gÐñ'…u%¶+-’ßxõ<b'Ìf ¸ªÏf=ö|”jíâOçá:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½K¤Ÿw[y¹î5;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re‡zó6Åñ–÷¸ûjB-¾Z-‰„Mð#¿™û×’L¼¤uý¹?#íýĭתr¸œ˜¥ç“2¿ê›iU£fÖ÷”ΚǦeÌw‡R&«¶’vLuMÀÃÍ›$Î Ö ÔêŒqAq³aýÕzÏ¡uØŽP0Ó×ë+ êù!â¿Ã›È7†Ð9ãî°zè7‡ØòÜ·æ>ƒMé_Ã'õ”~=í^·r2o×óIeØÖîH€–‘Ͻq¡ç«›HéâüS å_5 @ÞÚ÷&õBV§i#¦‚· g˜,0"2t’Ç]é]1p¶˜Ð¸È20R‚Ãâ‹ «J<¯IÝÒüQLzšœRœF%±4’óà±.Šïqtð¹eY· IH0«‰êb$&´K-À%"ßì©* +ãÌ9PMŒÇ™Ö>øžnÈCÖÌäMh jó&…]´’ + Q3B›2™W`ÏâÎÞKhË—P`ZíÞ”áHÍ]ŽãÇ­75àVî‹ÚÕ®ôgÇ;¾’öHøDCý†Ìˆ$¬†Å‹5‰3A3Î[OƒÄW‡9Ô'qo:Bf2®¯°½4—ð¢ÁðÍ t£Êù9$úÏb™Ù™y¸¯MLÀwãx#÷íÔ‡·cc‰ïIÀidƒ 3k±œ¾ÊNke®å¾;٦ߢQ­W.èeIvç8v®ŸrI›š@¥ÜêK™@Ôöš”dõÖ¹Äd„ñЗìÇTô¬„0¢!;ú_šØaèÈàQB£ƒ©ï%B)æŠú2qU¤ÒŒx.à ð´Ä£zô§N0pdh 3E6þ[Š»{TCe”Pž¡þHž`Α$ CeIˆCñvVܧœSÜ&Z0Y~p‘ðÍ ¡¹&àõtß’øì¬"÷¯} ÄÛ¹ônM9솾d™T„HÒ|!œ©¼©B¯tOÒJÜ…U\î9ï´é# +j .WÝ­èRÉ8ÓÝŠõ»m +¢‘€3¶šéJ*"‰Y¹.æ°qª„‘ʶçíëÜEw0 £„O\f°ÁaTQzØ´‹‡‰ž’ò…_ ¡x5Ë”û Û +ëiâ [@ ³6&²# †"ýæ 3ÂyüæÐŽWv‰Ä~dwJ–a@Ê°ØÓÊ È}‰t—åZÃK‡Ž¡Èä)SXVÎ+S/°¨—‰d{šx™€·@±×^ìƒ]g’tsþ—€ðq^d÷ßÔ1›U=—ehzö ’›ÉEJ/J;\Òù ”ÙyR—¾ƒšþŽËU¬¼UßK°Y›o +f-ª9G·´`ÞÚ6g„ «V€{æAwHGã›(c h[H°&b êØŒwÑò+ó4§ ‰’98°Úø²¼ _D+Òò*?Ä8?ÿ‡yX„)B">v;UïÔ@g­b‰j—{Åõ0Çß + +'lT¶ž»á¿öçtC{Äè_m`EU%~?—¼æÖ™ø¨îuéÏ­A_Å]kVVj½^2Ý42Gì6ú#c°AbDůî ÷[z¢“ 6˜S¸‰&ŽÓ®¶•kTë5‹kK{{±Î? +;Ãr Ç¿Â nÄÝ€tTÝŒDcp÷¯¦Œñ1GRÆ&›Y– aSPáo,“Ó9×ö•ÀHíÇzíZ´"¸¢Ùîò¤ôë‚¢V„Ë4PÕˆÈ CæŽIãÅS¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bðìKT“ì_L±ãÍUMø BãÛÊoXù*1J‚êíW#Ð3Ã¥ïIlJËëâˆÆ"›=›’Š9²(°cés²úZ´LJLŸ9ínum· ã3'W—…½‘ #Á-ýM‚±–”e¡rÜŽQD}ó˜:-¤©·ßuÛé ™05êÐgUG̪„Üêîˆ[›Ø¥ÿÇu•dÙð«ô’§YÔyz›ÜÛ(Û]«*ó[²D‚¨€>ï‡çÑw‚}Rø†ê‚g&ß8ôÔh'ò%ŒX󔇀Ø÷Î9hŸu!Mˆl7ÛC0éÓ48LÒ”¿ócÀÖ¢(Áƒ,V²°"4N5N"™¹hE9H/F$oÒ›Ž•CÉw¬·‹i©yk?›üu¨ÌkùäÞ ƒb¨Έº.¹ ñw!‡vÁòNÉÇÍu—˜pðŒ€5«i 6÷ˆ[úgZ<×÷eÜñ,ðЄÊòz§¶Ï4‹nQê¾Þ(I¦:÷èÝÊÙU¡ùàš ô/wÑ2Ý]JfJSŽÐ>Ë!°!R@sIþÀè@ ü «RYi¤AâÓ§¨KšD§LjÝôüU+TN‰Ùh»0E8Ûhá"_€‹Leãã{ìß›'¼{~0ÁÍcH—½Ddy–"ƒžšû‡‡"ƆÎ@.©Æ³­9{~›Ç°mAè¨ya¼ªÊ•Xð,G+¶cK+ƒ´5ž =Þ—Þ¡t1IÕÉ7Ù¾)°§dÄî!ñð|Ä÷F Š  Ö"ä”ÇzÌ8JX93DXc Ÿ&’“éO@ úŸ ×ï+Ÿ5r¢IZ„߶÷†æ8ìÛ¤y<‚¾ êK†8ÅÖù*&‡¹G`ÓÔÃf±¦®’‹ÀIÅ@jVðÞ¢Ú~ZN7± ¥Û’~9w!¯¥é4hK teè˜À¢Ëe"“°Pö< FBdÓìå§kìÌö¿ÓƒæI–«˜(KÌ;Š—¨ãæ¡ðä.·Å¸5_ Q]l[U‰LøbÂùŽ +‹ñˆæ”P/XÇöd·DÃ2¡cNÉÊŽbXê8ƒxA`d{B-<@Í¢wšmÇϹ»­;ão®Šo_hšn¸ÍfBØÓkúS!+§¡’Û”+JÂsCYÉZCè­'WøÞe†="Lº.^+Ça³ZÛ×È̊䨽l\§·#«›üØFI ¨Ü}CwGMÅç`PŽŒ§Vh¶Y¾O䈺öx¬;EÔÏÌ€+U +<çl(z!¢÷ÇÝÜg—AæñŽ´%ÛF_ÖfzœÂØáÿŠ~¨€ŒDV\ttgå?<:,ÓOÒM,;¦S‡X2Ù3žCóPPYšxkY bÄEËÎ4Ð=hG(Éi‰?Í`X!SBŽï¹B}GiÛßI ‘I4à]jDVèï½ÐG‡)ƒ_®óé¼PuΑiD¯êX‘t%óë«Gkév¶.V¬ÿò¤]o ;RaßXT‹ÁY"40Õ/‹ÑÛÀÞ0ux£üNÆJžÄï‚Üe¬ÑíɬԘ¬(Éx×—'­ßç™W¤e$”±•aËbáñ™´ðÄ´ç/i.º=NúáZ zc~aQK· ½àæ;zÌ©…mÂ7Tol[ÍCAö§{FÒR MçÁÀÔ.8®É*ÜÁM†×È|á¹K¦0ðÔ÷÷lK}%G 45a×¥†XÖJ¾¡ -×\TÕCÓ=ÄE5{¢ïïÙ@‹k·»H租'þp˜Èa7äî°&GÎ<Ú݃1V[¼rŽf¼òž©.õ»'naÆ_ìøJ õõ»*iP4¶ÌI·—GoÊ¡þÀ –µ¦¿®’PÈšE%jFr¸(¸ÏÐWÜQ¡5M*òJ`ΈñÈŸ5¼n6Œ¸åXõè8ØÅÏtýŸŸgú÷5TXIBCµÓÕ8šӮs/¥ŸhÞ*ì Gá‰÷É”ýâK”qî\Ð ¼(†…‘ ®ù¼ØÎA¡q.›¨rçÊ$”Òð®ÀN!£‹Æ2/Ï$ðÎzá¢g’W¶îS½îñÇ‘¦ó·eÞ’™Á³ìŽz=tÅ-B࿹ùupÁ1Þcžff¤Â™Ú "“|pzÊ VÒ¥ãYZˆçá9ãŒR‚SˆA–¶óTj»]Ùï¼Æ~ïçJƒ“"öëÀŒI6±²Ìd5’V?íŽ+·®iYª­–N*R¿ñs¾ï„æ õö.V¥êºª›Sˆ„ð‡›@ýÊ âSÃS®+È°…˜/h åé~?u|5’7‹ Þ•afòhE°E$‰!ñ¤‰w[W1nµÓ‰ê~'D6_¥52Ñþê¡WˆÉ¡:—éÑÊ™#©Z›²Ïùf ölÉþ 0½ÈQµëù"™›ƒ=5]kcˆ×±q4õ:u²gèÁF¼JS–¹ ¾%¹KÚ=S¨(ƃn@›k­ÞGsì- «ÛûL&¦ü8u’\=Ç4ÙÙWôØþµHìÒ:F ·D71`÷#,ÀÉ؉maûï M®2ç½óN¨Œ›¯_œó[+ÒÄ¥…µ¹†„b3îÌŒË]u<‰©u*fx‘e”üýAžRM/‡n@OÔ>DÙU «9¯k¨’UI¢ù£ÆL4ëAŠ?~܃ý}†*×»<ªBݸַ|² +ŸG£Åa—ïJN,DÖé+¦£1h{ ?§4êrÄ• ÛÍŸ&œýˆÚÑm5#»Ä˜bÜù^ª¡J©‡‡JqZ•øéBCº4ª€UgÃûûBÂq†õÌ3­O€Iy” G”-N»â ¨iXœ3êWA$Ò=sýDU: B¦RÌ0 ÷Ç‹“;ëlírûjŸXP fÞÆUOgŸØ˜Óë—©©—Œké¿ ç«šÝ’dð­.™+2{úr†‘sL­Å *@µ>dª!Ícƒ®_’@{™ÃPj÷}šŠ$ªO0h—[õ¨Œ“;Õ¨᯵¤¾›Š(êÈՎΫ&?¢ù©ÐzÕoØc¨áØRšsØë.‡68‹H+Öôœs@ØFèJ_úä ]Ï™MýA0”ÎfÍÍ‚'ž@Â7møæèœbZwï¦%ñ‹Ž7Ü·¥µAS‘Ø̉!_•’Âݧ{X +í‚Èž°žÒÔoŠÏrEÍôºñ(g‹Y)ÏT×)|G!ÕŽUÏĪyc2’©R O•]˜›{2ÝKf(¿cX’ÏÕÜáíÉÍðBDÕï3ãêÜ|¯åYVeÅ;Žy8UMæ»:¥d†Ws³&=¼d<›¥t é B!–ÛøëÕ©žïT&AL(„-@qyßwÉ|jYü¼çi„ø±¿. XtèÖÉ4Ò|äѪéÛtó='J›=wèÿ+“¬ ÌDħªµºÛoäœÂϧ̵e®Ó}öK—§K{=D+"¿œ—´ÃT±öó¾([<’5\3礼ÉBffÎ;ðÜï<°œ5ÿŽ9¯Ÿ5‡¹žÔ‘³È*Ã~ºÀ†ör ]1(¥U­M†Z§%ÌEè”ñ8é‰)ó 9ù´B’*™IÊ:²GK¸ œ¿µe£)mj¡Ôî' Ê«Ký׫]f_Xêgª;¼«üâ’Q‚¥œ <èG¤r[žÊŽÚcÅ…™¼t…¤Y‘áùî¤@ú]7Íe¼ ÙÖq²m„­&t-–œúËù¤ªC…²,ã¿ÈéÏ ü×F¤rpM„h’zÝ¿”ð}ˆ6 ,=6µÔ—“~²ºí—óeÑB¼´óç ­¬ˆR˜·¾}¹ „·Pa²¢;ˆ!Ý-—žÙYÙrµ×ƒßqŸ”˜¤Õ Šc×áÉå±Pm¦+‚«ÈÚ'}©ÉsœbÐ{ýckÀVÈBH¬*£ºœóŒÐH¢l=E­Ãð«Çðg™î´Ô£Bó|"¥‘æ8c·›îhl1ÇZÀ}µÜu·3 +IµœúñÝ^r;ÒÙ¢6×Iôga%B7¤¡4tqâÍÍÂ(€pËNœÉ•Áõ!êGµêÕ^*£‹¤]h±0ÓaR`‹µèÈr¦6øIFêºeÕÏ¢J*‰Z¯p–v‘ØDÈÉ78ã°†eÏì:ÏIºª¼rˆ´nf'8YgžtÊfÈŶ/µõRX€\Gñvˆ£ÓòÛ—š^ ×¢d³3²KŒ•™÷¶Hsņ{&ªŒª‚6t™Ñ7dågUoà’Ž"ëü¾ ¦O†¨óm碞 ¨“á·S¨–àªýVΣp¥tð«šsÔþÙPdwÐ-vf˜ cÁ%{€Ë4Øý8¢¢¨E- B…rOm`Xó,s:Š¨7 öþÒõáÒ8…dKäA”ÃQê[_ÀÀ û¬„åOïÀ¿¢Bj¨­2îÜLY‚k±U¢E… \öfó*q«ŠjvøTæØfáÒð†Ÿg›ä -³'mÔ…@žU‡|g¡— ØÀ°µ‰® ed8E½ž—%Š\Q€ž£ªlX*ÀÕJ¶WËp+¢Ñw¿½L?E]Zn»ž{H¯Œ–Ž¯hå3öÄÃH˜+Jßö”âð›LòûCào!%bRвfÍ´û>7å‰Â¨C¯ùȱ–Rv"ñg<žêØ<@ÑðŸ[2.ˆ¡zl-gs{çxCõúŸó9Û ;4b_3gYGºUŒy +¢äeQ‰^ª‹3!¾"½¸@43DètgDx‘¦o'”ä1ˆRhŒz_9EqÛ¨šnÍ;°pÙŒ'ºy[aÕ‰€)¼×b—¨ð}=\ËEºUt úÓøfVóP¢(]𦥖ѤƒnzÒÔ“Vü¹UÕéØÅ:‘­üÌ–©´ÝL9AØþùìI¦QÑ7nÒœÉÖe¾…*r•ör#!ªž‰¹òH9yʼnÏqÈÖêz&Azà‚BǺü¼l¨WIœÂ>‡Xt»‡(…—­’ß. +oë_;ä2½kfÛ~’œP]“ÂûÉ©¥?µ¯¸¾| kõÅŒeÜnA]wÄÚ]„Ü|Öìÿe»Ìn#†a ÚÊ6`@²uv”þ+È›!A¾ŒÅú Èá·Á«;ÂMôf€ný}‹ƒ‘±ßlVƒÙú1mm ϶bŽ©½+HÄãpFX”¤äóÚÞvöåµNÚEÜ^,@ V¢5OS±TWÛèaÚëþ3«æ«"êNY~}7YŒ0CWæ1™k #rò(¨@ÒtÏø­†³…sèßé(Bu ‡+Õqa>ÖÌa +§¤–§ë?™DÍ„™,¶òzAÔâcf0Üü'¬··¦ÿªúdžS镬ۡ$æ¯E4^@[Nͨ¸¯Yrfºu4µCJgw#Ê&+upAæýÇG^[רc>á ”zéql\Ë®/!4Oú!u6ð©^Ô£;’”zÖÏ1Kâ‰Û"*Ï•´$ú"«Ÿˆªv·Ì9çv=k-ÈOW‡%Eû“)èW4MŽ/s† +Ü~ƒ`‘K=ßå# :~E/i8Ûjt±•ëY¡ïZrKâ> +/ExtGState << +/GS0 36 0 R +>> +/Font << +/C2_0 149 0 R +/T1_0 150 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒMKÃ@†ïó+Þ£^vg7û‘@ØmÁê!{‘X°…$¥è¯wôæe¾˜yßgôÕ0½õ»nB]ë{èÛÝÇñ4¡iVëZeÒ©et# 0vÒ×Ò¾Ž¤³ybæž¹ƒ„ód‘%}Îõ€ ¢—Š•‡«*b`½ò>Èí;]Ü\æ=m2m¶b§ÿ“Ú¦MwÄ¢z†ÃVöxxd<‹H²?dff(€ÞEÜ·½-y±¯™K×ü&øû­`*[U ±±Q¶€W†-†êéK€xI¨ +endstream +endobj +48 0 obj +<< +/Filter /FlateDecode +/Length 931 +>> +stream +H‰œUÛnãF }×WðQT£¹KÉ:Y´HP´ЇŢPÛMË^_šÍß—äŒe¹‹ ŒÂ°93⇇‡ry½Ý?/ºÙ®®ÊŸ¡¼ïÞÖ‡=L&7ÓÝ´™%õø뜅í2+?>*Xî²²Õ¿+ÐÐ.² +tÀO%=¸¦’upŒ—ÞtXe¹í_Ùm›Ý>`Ô/t‰ßö¾¼[)˜®³_²òqÓõ„á¾ë—Ïûâã(>ü8Å°#42”Êü­•g@DG …’ª†vѾ‚3ŒË¨½T¶q\¨ª!XŸr' +d€\jQÔ²Dú¹ýi€ú,ý.IˆÉœ0i—@Ñâ8*½žíÝK;ÿº¿º»½»SJ5“É8ªÁXŒÝ8ÐNKíÝ9ø˜SBI¬sû„%µ" È·X†È»^8Úï„•ògQhYC¾lpk±iùZŽlß½ ^ƒß„1to.°ôì6øÀWƒï1p¼€‰âùS:¸^­0 ^8ôB¥dïæN÷¸—p4¢à‚†™Qì4*üŸV 2 +C|Ó‰Oùƒ(é¨ë;Q*k™Ê›S¹ ä«äqÜ÷“٫¿ ;*§l[uR›Ib3T  ]Ÿ&À7'„4„¡.ë©/¸Ð i…*´@-YG>o—¢sçÓAàozwhzw(BHP­fŒ:zèÆ*H­]Â8¹™ +«¤†üWØÍâÞ +Í +ëhÐgÄm`2±k4+ˆžtM7×(^Gäº7&ÍŒ¡ÖìµiL¥æœëß&Ç.õpGO+–2º»ä¸é¼F“}#žŠÌF¨¨”ËðöˆÖ‘ÓNqa&jÂA¸-å1:ª&i‹Gñ+ÍÅ6dwðŠ­Ôÿáëǃ?aAË3 +Ê´d¦4ÉDz²ß¤,ûü!ðô ŒãÙ>ú*,ÇMÐèµâÉhKÛ·¥›Ó;¾`#<…Á)H}b8 +Nl…qÊKeèÏþ;”ñß‘[ÀʹuLšf9æ)ý’Yd.n-´!ìxÈh™tìUÁãó,Ô†ås ¼%VáeÈÆ}ú‡h¬Îhd.v°Nš_Œ¦áˆ¦Ž¯•E¤w¬·0ÖÛ0.ØŸT6Jò|làØ ¿³Aµ "ƒSóÓ¸ ŠkbÆicP¶0Ìæ̘â#D–†)DaDùõôä{ƒ ‚Ù÷cö‡1ù ÿ +0‘iñs +endstream +endobj +49 0 obj +<< +/Filter /FlateDecode +/Length 849 +>> +stream +H‰œUÉnÛ@ ½û+xÔ•¢Y4’€ ‡,(R´—Ö·"Çq±bØIÓþ}ù8‹ålŠÑx†óH>>r¦_&gÓÉÙ·šüXÏ:<<ø:n¨X åçcuðíäü”<Ÿ²ÍñtRÓô‰´¦šÿøãú®ª}o¨ñºêµëiºš¥šþúp;ÞavMUÛÞQãÚª?‹µ2]婸Sº«*îUÙT†Š­ÒuÕR±Ä¾£â·²v œ·rîð»¢sUj_i*ÚÆËldñ}à£^>¦†ñ’hÐÙÛ T–ÑèI± ¯n•¯z l4c-k^ð••âŸ­ø“+š«îï•À|^óq[uHL®qü®J@ˆCÑÓ–òÅ°q£8 ¼àh?hHLÂÖ ¨W´Vu GBšñ.\Ï0rÐ=näžF^1Å(áuPFã.sÖÃrK·ñd¦l t©nÐeFI—I]L?¤½n¬½ªvf_Y+ÖVMÖÊ°W›¥2>YÈ•)’’„ÔDL»Œ–êì™R‹œý)U+…çí‘^…§wt‘š¯ŒÃ÷Sts~Eeˆo Cš¡7=Ò[éðû‹7B^ à£E¬Ú=Œ ¼>°è‚F®i#:Ÿ_[Sñ=î®a×ઠ"ýˆ°©uŠ9ÆV†6ZÅ“E„Ùea¥3ÿÒŽçØ•NÿL:o(‡o³r.dâw2¡F‹#G‹R„¥ž#ø{ä+.ÉHKJSXdÑéZÐ#-p¸U;°ÖGê\ ÎÀÝoÎ2ßrhÒ÷/& v<¾2¸¿{%£ylÚeÎFIQæ©ü9žIuhéœWi +‡F2yJmŸfLÊÔ=~Mè:ÓAì¯)ÃÈ@ç`Bz20±5´©íÏ¢y1÷>ª]ï‹Ævo¨¦f%dÕ,ߤk ýÿ['e¨Eb¾ÅÕGiÁ"LŽ~ýÁ±Èz7Ƴ Š7Ev¢†-½ì9nƒMLêóH4 +&/S3–x¦:ªPdŠ¬If—O³Ë¿3»X5e£J¢ÍsV‚çpºÐ{± “ +r’»W/7eÆvÔê,rb°{Ž ê‚þ 0«íW +endstream +endobj +50 0 obj +<< +/Filter /FlateDecode +/Length 930 +>> +stream +H‰œVMoÛ0 ½çWðhµkɲlEµ)†ëe ÐÃÚCdm†æcIºnÿ~|”?ä6‚¡ÕE‘}\W7—48½]—tvvúe¼|¤h¶Œ?]¨Ó›Ëë!iMççC6º Ò$-,^±›ò/ež¤YeÉViRi[Ñh1ø=ªØ¤½ŒU¬u¢)Ú(^EØ(“œ¢¥2:©(Ú)‹Ï™ŠÎyÍ“‚¢-ÝG*Ï’ŒÿÅ–®MøhF×ìw‡Ê¸ÄbÍRX|eç)®Ü’U:KJŠ•‹_­òß)­øA6YÒPÅEb(šË-'™&Æ:èXËÓ [¬8Éü[]¸]69;¸WÊl'U;ÜXŠ¯¯xçH\6b¬LŠSe,¾Oh× õ¤"o‘ià ‰*aÚ$„ÊÀ¯øù­,¶â +W¶´a/û?•ÀòŸ‚ÿ¼Iu3{ÿ2M•.ðÆL=ŒŽc YÓgŒ­Ê$u•éQ&ŠÕèÇQž³ÀsÌ„´ùBÌ––Œºà;W¾ + ¨ B2\Â)‹BjÌkeJ õŒ²ŒEÍd©‡ qg3©¤ÃºC xhý-ñVˆo|ÇKÆ€ÁÌSø*2ÁĘØæ¼Û·^]íÕ óL¤amÒuƒ­PêÅ«PYO‰g ˦…‰S®Ï+g°ãpK¹Õt ¢ÁÐ-ó¯‡<¤“†áOÕù.nãÝ#]CÔíK1®¼mÏgzEò½&ÐÖJºµ»W?DGÓצoË/g’¼åWH£ ŠTˆr‘¤`³Òq^*–^"ç{ébº„âÓ W¡¥P=jîS%ˆ©W;»ÀÙGlðÙ—‹@²Ž)ïO†,ë%içÈÚ2ÉZ¤î$ çÕ¥ +‚ýᆱõŽé›ÕÈ×ä[³'Ï‹@Ð ÜM8¦ws7…2›†IÞåÄ×$byÛ«Ü?SÚª¾IVŽ7ÌÜاóÞ¡IÿipÒœ¤â©,'c}22/Ž-°;Făâ/âEŸ:V豌áT@‰DIòÞ0n{¬á¿Þ3©sQ’“£u¨¨±6:ÒÖíWôt¨ßUã ©Ô—©Õ,¥Ûz¾Å'+˜¬pƒöM­D>Ú–è$@Æ7Ž¥÷ÿPFgË°T"Ôçt訌ß% Gj·PcßìŸtã¢צ©|ñyÕ—1‡°ö9‘FÌÉÞ‹}=ÙEŠãú+À‰O; +endstream +endobj +51 0 obj +<< +/Filter /FlateDecode +/Length 831 +>> +stream +H‰¬VÉnÛ0½û+æ¨*†¤¨ ÔIP´hNÐCу;NÚÄ1¼tûúÎ )JJìV‡ €%s™å½7Ïi>L.›ÉåÕ9LN>­g+8==ù8[-!Y¬ÒwS<¹:¦‚³³éš6 ÍO04ýÑÃÕ•ÒEmÁeNãjh'IŠÍ·Q‘ë^äT+­Ý0|•+Õœ©U¢Iö3LQ’zѪ€d ¼V©’úœÃRèв<¡¡Ï=Òb É ~la‡µr´ LsUÊ} ¹¤t{†F,‘RVT?Ücj-/­ ²¡—œ_ùE¡h–³Îá+ŸÞ©Œ£§ÞÒ’rTð½”}ƒiÁÉwh%û›A_ŽKžw%obÌ4G§îr%a¤åݦ…Š +ÿH%ù=ZÍ·LÉ·ºÎ­´¸ §ZP‹Ô-',JH~`føûº6*.N6Ê.ö®)'_ù øµ%<ª±'<¥óòˆ:4¥ˆê˜qž’»³‚Åœ»¡7±Lh&ÝñÙ2O‡¾ï¼L„tS2½)Ewxæ,Ò*ÙgL`ÆX:^^+$“ý X¦“@þÎ=ÚT¡Ðöp$F”TÀ®Çç××™QµÒWW-ägk”žÛ&•»Xõ °2pœw’†§ ²[øÙê¥TêÀòFLg@¨Ù¢­:•g~~àŒ_¬iO †9Xñ'«3ƶzÒm[Ö>³-sĶ²Ú¨< +s'­ðCÍ__8j¥ˆâí +¦k¦`fÛ(-{=v\o4£ì°¨Bº)’ÿÈ> +stream +H‰”VMOÛ@½çWÌÑ+ÕÆûaÇ+!TQ •Ü +‡ ¡…‘PÔßy³ë¯&”T‘âxwvæͼ7³™~NG§ç'4:¸\Í–txxðu¶¼§¤^¦ŸÕÁùÉÙ„Œ£££ã OGy¦µ¦éñwÎ~TE–[ïÈ––7§éÓè{2Wiž)™©TWYIÉ’njšÑZiJ6*59Ö_”Ãû3?,[)-«÷4WUX÷pó¤t‘yJVY—YÅhUZÀh©Œ†Ñ†žaÎ;w´iâ/Ø–÷jF ﯼÁÙPÒCäáˆ56¢Éü¦Úãpo…Ï€¹R‚·V>f1î<àㄨ€ÛÃå +û®—´žJù»]P([!‘øû¶+GLœ3­š*p˜j €hn”G‚Æ‹šKáñã™ÕêzºŸŠ¾†ü;_eyéÍ@Iª¦?öò\Ô•ûêu¹*ó­º~)«Áø€ùª§ª!S"¨MSÒET Tbúu’JÞ°¤4‘Ð(†Ÿ‘£OÔÄ\ãih t1}lL ²z €Në6¸ÜA®ßŒ±ðüú¡ë€¼ÝRP*g––€ µéЮ•Proª:dÔZ÷Ú +ˆu17/3š1ö!dUHœ7t•¨ÂÂ^J§…>ÙªéŒå‰9<­„þ&]ÊG.io­Ž{Šb&r=~GRÖeãVRF ´ ’SŒ"§¶žß@–o½OI$+t™ö½TµÄp)÷Ð+EVt¡lÎDAãþ`»Œ¼þß3ùÎÞ¸PÎ…Iº5Æ@¼*%Ç+¥œÆ |iQÑ’zdÚ_Ë°ûG3² Þ×ô¦ŒÐÛôdˆÿ‚›âÃÉÊQ\¿Ô­šžP‰]Óa UéT¼wçaú¶Z ^ .RyÓbj à”éð‡0ã7e¸ÊD^©¤{KÝÅo€í›¬;S6mj»PÌ‹‹O³%')Ýojï£ÎÇpÅÙIIC4Ñⶦ;p ;‹ft·ÍM[÷aÕvOì"·ø € Nþ z©K©¦NdìÕH¡ºA<ÔŽ²SW]Ó#æC +endstream +endobj +53 0 obj +<< +/Filter /FlateDecode +/Length 950 +>> +stream +H‰¬VMoÛF½ëWÌ‘D4÷Sdˆã4HQ÷«è!ÎA¶i¹­%¢Ý ÿ¾óf—¤+¨…ïr?æãÍ›·Zþ2{¿œ½?G³“‹‡Õ–^¿>ùuµ]SÑnçNùäüÝÇ3² ½ysz&‡N—³ª4UC˯d Uò'CÊÊ5ž\Kg¼ìnfŸ‹GžÛªŒTìÙŒ+ž›º Tle0éØTå‚Š?ÙÆÒR¾°NîØc].„Þ‚) ÷Äzî1°€…·8QSqŽ ¯y®ãè3ßMÈDÃëd‚q—O\µyò¤'Œž[ áÜàÀ'9àû j´2Êú¾eç©x•íÜ°«J—ìy,ìeâäÜÚ„GŠdM™0:Zõ‘ÜÊdœÔNËÎ>û9Š£«¨ø„U1ú –°ºOP¡5åÒdT$¢âï1I™´È\Æn $߀—øËòE’8tœ?¶±¥øs"ÝqO¤Ñ [#‚{D(ëí&³«uËÖà p©êCÁzƒä¾Ñ&§²b5=Ö©¥Ë‚ƒƒå€U7QÝÑG°¡™Â?Ÿ´Xrå‚,;ì”ôŽáP#æŠÀkR.Sî8j2ô;ÌËì7zËVóyàæH]ŠÛ„Lö´}G¬)îH£ +Ø8¼döVË×ÍLêV•Öùï½£ýzvòᢢu731Õ2Žµôa¬Cª¥d®–tζA;Ö8¤7"@Ó^Óª.´Ó¨»f£ÀKSY$ùÀ +G«=â¼TºJíRË‘+±)—ÿâŠ+}í:ØBH|ЇÏØ-ò1¥r÷bDìäM +(ª²òµò[Ì6Ï(.U1&fXDµ´žu¬ ¼CÒQÑÑä¿*gU¾Fµ Ÿ¡ŽFUR3]£m§¼À= ½¢gô¤IGíúhGè9›d×åVªdy ŸT© +0PÙ6h¾ +¸ÊóÔjÇ$þ;‰Iú¬‡F­ÖIª­‡—'øEÁóØ%Ò6ÕÔ ×ʧK¦€:š§W¦CÃÆï!åïñ™ˆež«ß )4êŸtdåÅ&cZŸG¡cBåöåêè&/lü$îšA«#õýoÅ“dQ—³Ž}‡M^!×+-G­¦Àû=ï.?ï‹Éó~äa±?’4ûæ™™òkî÷hnµlµZÃÃÙ?ä½^òÜ%UF÷œú¡åmØô\Š©ckLž’£+ݨ5}§6¹v½+DjštxÀúß +_è_y!ûç +endstream +endobj +54 0 obj +<< +/Filter /FlateDecode +/Length 890 +>> +stream +H‰œVMo›@½ûWÌ‘• +a])ŠÔÄQ•ª¹$H=T=8 ùhmì:NÒŸßy³–&QQåƒa—Þ¼yo–úóì´žžŸÐìàr³héððàË¢½£¨iãOÇêàüälNyAGGÇs~踞¥Ij4Õ/¤ÓÄU”òOkr&Ióª ]•I©­¡z5û½¨,MrŠîU¬«¤¢èAiCÑ5ßš„/îéQÙ¤Ä:ÇÂZ錢'Þ/p»äxŠn誡m£²„÷HYbq¡b‰}¤]+‡Íµª°²RÚR´Q™K,’h8®h… ÞnTlðߪL6v´ã¸‚ÃéLÅpÎUf±2W9¸`<)ò_R “(c‘\+ãpŸÒZ(µ¥¹ŠK<ü QüÌ#’Z@€¦h+õk üc'÷ o@d<;ÆCÑêS ¹TŠÀ +$ô5p¬Æû1µ& “¹—'6¤¾×ÓúnÆ}G[ßë»ãþõ}éÚ Úpã±²EÂß;‘‚ Ü1GBÖBóÑ‚v^ž_®ªA¢†-¨u(ÿE˜'ð÷4\r0”@W¬3¤é5¤´¨ªÓ'-û>”ÀÇq:hà˜2ÔUx:ÿ<^¨ÃrûÇÞCë_×+{ЭâþUPüNI#¹Á64G–žšvé=& ˜é'ï;dj!b ´YŽÀ8¥ œV¹šVŠéV‰Ý(-o&+ɆJz¥¢¢b¶RãF2ŠbUÿ˜”¼Ë4­Þ—©­’¼—iØu0ÉmƒÍÚ÷Ì÷v›>XàZ +­/N¸U26š×¯h”¥·*®ðÄþAT¿éçf<«\ûŒ~ËŒE×½R±¡Ìÿe²ØŒ&Ö’¾rh‰ØØãâÎAJ–I~ö“¨{íA{¿YXo%—Åx=–7^ýš™A®8‡¿M«üüû SUé&ª2PÍtUVAò²,¨¾¦îâ=}>}ÚNžâûuÛÍ >îü´iáC9¤ñÍïÌ™l`7™ÊE‘Ž¹ðH­ Õ{˜"m-é"MªgŒNù}'Ø"„'øJ6\Ø<ß»u?qr9hƒ/€ýð †ï $ÑùÚOa㧰È0“SáYBäè“ïˆ~jy›>ÒŸ˜ã#£–󸑼{;Þ›á°>\ºQJ½§Þ±¡ ¥ÚÐ ¦žjC×ÙðfS–xâù£€þ0Œ« C +endstream +endobj +55 0 obj +<< +/Filter /FlateDecode +/Length 510 +>> +stream +H‰ŒSMkÛ@½ëWÌqªµfµ«:¥%¹Ä‚ꌣ8Y6¶‹é¿ï̬kÉ4…b°¤™73oö½m¾%÷MrÿxÉd¾[öps3yXök0mŸ~™âäñîë <ÁíítÆ i“d6#‚æüŸñU°Y^{ WØ’ŠÍ&ùn–˜ò'˜ì +›ƒDˆ,Ù󋳘#l‘‚­À¼ÂfÈ <˜æ™Àž¤2HdÞ:0ÛsËUül1 :S/Ýp@Í¿!åàæ ûÉÓ¼ `:¤ÚÖ`^à¤ãμË~®1uA =œRHÎ)û#* ¼iy%ø¹³vÜ·è„Ó;wpB¹g g^‘»¥BBmyäÏ–ùòq“Bè¬d舱T.‰ Ç~}TYHÅk™~'Äø7Ý| ƒy-½ç‘eæèH*žÐ‰/C&‹üÑüŸcÜØ1ÿp [ |à–æ$Žh£Èg…:½ìÄOádQª(Ë6ž¯âŠ‘ï:>¶RšnÄ14ÎŒ¦  ŠdjUWi%óÊT_Ù§ŽþsºÂ1.du3v’Ø¡ŽxÆúÃY /"äŒû, 1âËR?/VX]Õ:ír—«BU\˜TÌQ>Úz8< –Òu­;ªáè¬ÂŸ;FzÇì•à·™ôå + +endstream +endobj +56 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +57 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +58 0 obj +<< +/BaseFont /ANPGBS+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 151 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 152 0 R +/Type /Font +/Widths [250 0 0 0 0 840 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 444 +0 778 611 709 774 611 556 763 832 337 0 0 611 946 831 786 +604 0 668 525 613 778 722 1000 0 667 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 0 0 0 500] +>> +endobj +59 0 obj +<< +/BaseFont /VBAKTC+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 153 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 154 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +60 0 obj +<< +/BaseFont /YXSZZW+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 155 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 156 0 R +/Type /Font +/Widths [159 0 0 0 0 0 0 0 0 0 0 0 0 0 233 0 +0 426 0 0 426 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 491 0 0 0 0 0 0 0 0 0 0 0 +0 0 470 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 422 0 323 0 419 0 0 0 223 0 0 225 680 458 431 +0 0 294 324 311 0 395] +>> +endobj +61 0 obj +<< +/BaseFont /MTNDXU+MyriadPro-Regular +/Encoding 157 0 R +/FirstChar 31 +/FontDescriptor 158 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 159 0 R +/Type /Font +/Widths [583 212 0 0 0 0 0 0 0 0 0 0 0 0 307 207 +0 0 513 513 513 513 513 513 0 0 0 0 0 0 0 0 +0 0 612 0 580 666 0 0 0 0 0 0 0 472 804 658 +0 532 0 538 0 497 0 0 846 0 0 0 0 0 0 0 +0 0 482 569 448 564 501 0 559 0 234 0 0 236 834 555 +549 569 0 327 396 331 551 481 0 0 471] +>> +endobj +62 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 588 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/C2_0 160 0 R +/T1_0 161 0 R +/T1_1 162 0 R +/T1_2 163 0 R +/T1_3 164 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬SÛjÛ@}×WÌ£ªÕÌ^tcHÒ(1) !_pZÛEVjÚ¯ïÌJ¶c;à–öeG³;;çìèœô¢içÓú©…Á ½ƒô¶þ¹zia8¼|Ñe! 6Öó꜅O7jp0„gxxDC”ÞÜ#ÌÖQze¾ TS¾X=qIµ‘e „~ÉQo!¯Þå:s6ãµ)ÏѱpÃê9º®¢ës8$ÐÌ"ï3mÊR.y2åÚ ^h&Ñ4JϽ)­hË2Ay`b Û@¦s8æüXo¬vä-˜Œk(°|ˆJJE¬UbH©ÇêÃŽ÷± ~V)°Hú¯Í!òž÷K/ŒÍŠŽÂíD‘Ñ9Ä?š ž¨$×âoŠ{Äàºw*ñÚBü™ +щä̼Q….!®•“&­J +í ž¯–kéÅﺕ—¬QÌŽó•´áÂYßnÛf¡!šc%_w]êå¸û¸WF¶_¤¬èYў݊q(œ´]ýßMÕ°8_ÿའéäÏZdçÆÊx¯ÄwC3‚¯b œ +èÀÓ½e³CY´Ú`¼QöH'†:/Ìþ%2E³›âÉ£JMfÿ6»CgïžÇÀvï Ú9ƒNœa uFtäŒJùŒ…Y/‰4Y¬ëVY‘å|%Âca-kö Àge‚°'¢@öEÍRÌ‚·•»6„Ü`Üå|Êh‹GtÛKî-X¾%z‡‘ ðF½¬gb8)^åK¶¨ † cCü`TH +endstream +endobj +63 0 obj +[165 0 R] +endobj +64 0 obj +<< +/Filter /FlateDecode +/Length 5219 +>> +stream +H‰´WÛn¹}×WðqxZÍ[_²†Ù² vŒ¬&ðƒã‘4ÖFy5’måëS’Mv÷H-9ÁÂÛ£n’U¬:uêÔþÁõÍùÙru#ž?ßÿ(öß/ï®noÄ‹/_‰½—‹½R”…6þo­×ë½ý·G¥Xo÷öê_¥Pbq¶W5,€ÿê ¥La×í +ç*Xp¹7ÓrñÇÞëÅÞëpêŸpèþ-Þ,ÅáÕÞß÷ö¾-7èÃûåf-f§›ùÛ—rÿëw‡Ìfî´úoôC± ïFY¨ª‹à¯RB™ª(+#\mŠ²µäÌçÙ'9WMQ‰ÙWY-X“sWÔb¶+ÙZÌ®¤jÄì–9|(U4´ª*”˜­ð ›oä\—øã~èÂÂ~©èÅZ*üó™¸>•5nY£AZ ÀÐÔx„…ˆÁÉÿº†Ïæ¾ãºm-¾¸Â?ëûïs¸/zz;๤8\ +WÄ[ðNþÆôdŸwÜ55’œ©,FõDœÈy‹o’{Û°…V 욢A_‡àˆÃØŸ‰Òë>VK K›ä(:8¹Žnðý3!ÿ¹økDÞ}(³)ÊŠÒö€Pí\S4­e á Ú¹¤øü†á +·ðBa6øï¦+üž’£<Ïâç0z§œ‹Ÿ”Ê&Ð^ÄIø‰`ú;FªîP½…<˜W‚SŠ·1Ó ì¥Wr]2\8Aa.Ä'ØZ£Oø Ò÷ æµ˜Ô cðT¬É‚J.¶!¨'RÕhÉGŠê—%÷Êê{‹x¢8h‹ÖoÈ3+=ÛÇO‘?Ý—é€r ”6»emQD½C“àò!×âÓÀE§OŽ„•°|+¤#R)f¥ˆH:”s + —]…ƒCÓL\ó}µT= Œ•/2NÝFj¢¾ÑÕ[‹ ;,jâ¦;Ù7âÏDT[5ô[É°Yü|Å´X›‡AxIÜý»´-îc^[L}L,Ä2"ÎÓfHÏC¨­R’y '¡v ©ýUh¯JËë‚Ñ9*U•9’Û…”}¬óïûé0è¼1™;I¨‡¸ÑÝÄ×€oî;§"tñ©)·—R¼|«ªÒ˜ÿ ?dIÙPŸ¤A_0Y–ˆò`C¡´ò^SUo‡¹frMh#†ÑòfZˆÍ"M~¯ üAî#´õIÅ-s„Ô&CE@q¸¤æ¦ÑÕ¡ÏgP†ëa*êÜNÒ è!:bàÝb@ zà“ÉÙç–›\R6ÑOâ]hüÇ*ë`¬¨.=ÇGÖçòP×|å3}N씑Åê]p&·-"ÿ[*¼¬8žÁo(k©áÏž,¤i¨ä‰÷ÞÁ7ôì•dGŽåïèD•^£'ï`o›RÌ*ª3*:”>*8u{oè&ƒªÉ•QY‰ÅJÌý¯qt•:‘Û Ùb-®0+fÎU´ (_IW;Vv\îœo©ÿÁåßö×·6\ßÜ¡^Zîw•—3”´S¤iøŒ ÆÈš /5ù¢LºJÈþ€¥èOoîK›%$šÃJy¦'kâÊïd‡)qÇrTvö[vã–¬+Oæ:íáÒÅí ­Åé·rW>:ïá<öIËnŽtqžV7Eg28•8õŠ:érn‚öCØQïG§‡ãÐÜî½4ŽÞM¦>§z¾Þ…0ÔÉair{}D8 ºDèÀ6•&¤¡[b±79ø&™F‡‰¢ÚÄÇ ¿‚jÇd5 M6 eƒÂœ9ïHt'ÆðÑèQã'¿nBäpìÀšÁ‹™\„xŸÜcš¤Ó;e(AÑ^ÖM¡d&äâI'›ž¦ÓÔýq4¸RE4bi:8<”–bgˆÀà=•šPÈÍX“ð†jGc¿Å¡rrCt6¿?9h{þ! WFèp6uÏ«¦ÿ˜—{ˆ¥44óCBê•×£ƒÉãXk%ÏáïíωA³k*Ø¡ Û­Œ7828¢ÊiFŽp5Ï$aZCÞœ:“_NñòÚ¬bçˆoè‰;†26˜Ò™¸d¡•Lpª ×ìX&É{ºM2'ƒÊåÊÓìšfL ½("*!Å\ø+—#°—ï'CT$çôô|>W¨:¿g÷†òåéxt^±©®? z_6%ñÐÏxÅ4‹è󔚰¿¿Š¿•ã[5±ë\ȤùOÛ·)…Á{Π'Qá±8ÿúíFzeKqøÚM(‘‘‡ý!åëÉp©zL µ…xw›!d*—hÂDëÙ´sIÖm3QýØ|Âôñ’澌ðŠ!ÚøýE–më³íEæ[ãTEkô$Ùø•—ºBƒßÿ_ÆØ*Ô…7ôQÎk4|Ͳc-« Lj|ó¡íùãÏ$ë•Hêþý‘äñëyä±Mp=AD¤À."šää1ue¢_gR#èöG¥#`ËGq‡\•r¯7©æ\Sž›Ð«È'QïÒXÖ‘¡Wfýù„[æ_&‡ºísEãE þU-ð ¢j¶,0ðt>°º¹]^,NÞ<óúÍ›²,Û/^:øÃh8iq²…žMð°*‡ŠJéþˆka„-¡k¤Þ}ž=M®ˆ#ë1ÅŽmÁöÇP8óÖO¤;:-ÒˆÀNH0ú|s‰ü9gŸ®O/}ÉfüÚxÜ)Ör(r’u&È’&×WÞë0ŠŽ ¶Œ¬o²ôGTÜUÙÄ9`qο¼Ë ^gSVâQ-3Õb:¾•šÂ)b§2E¥Ç™" Söå®oŒc;¢]¢ÏÆ=béد)(΢HŠce;Âîlñ’¶aæséÓFéó$æEÏß&§§?³Ù:ŒDõv)›DÁ~A Ñ@†'Ò t§ÐÌÈàæÚvÍdnþÂ\㹦ª¿ñ‘!!þ¨éfš¡Êú&¹2ƒ.=c +J‡G–êÞ_ä*οÄV“¡ç¦0C’ÆéÌЗץõ Æ£pÑ­MDöö^ÜRÂCñ>§@(b[€Ñ}´»p²ýúäàjì“f=T˜»À•xöy&]-¡k•Í«Äφž ÀœsãK8ÞŒ Œš3™ªwbLõ0V`L•a¢t‰FéÄì¹óCJÝ+ß;¥£*–4·~!¶¢CaKP»“ú1ð©U>:°­î³m€SQ™ÍN3 ”îIðÑ“á“xÖã&Mã`¢â€©ÚÞ\ò0O P4q*©EÁâ”áô“gQ"hBÑf0Quì…*OÝ¥˜Z®ñEº5áV/˜Ó»à—a˜† Òš_Ëj×@bWÚ &§$6U¯û‹dR,΄Æc°b‹ŠŒ’?вi\#4¨å®ë’UÉ¢Žø\UXB ªÈ¿¯ ×ÆäÆ:£Jܠ궘Ûü=44þpé‡[*1âüAñÔe€é SÍÖ0sáÀKŽl´GMB‰a…iDucá%Ö¾ÿ›–™Ý„“ŽgrÞ ‰O²!¥y@®€ Žåä¸Û<î%ǽ £ƒÉËË8ðLäñöÕRõ¦O¯¯<‡}—Æw׈ê¼+s·[cíÔ¸_Spn$FêwÍ«é¿ìWMÛƼëWÌ1,…óÁ2·‡¬cˆÄvâÃ;òz³,íÆ+'†ÿ}ª»çS¢ôh¿ä,°¢(²g¦»ººÊËðŒ-Ž]yøX ¾œOõ9›­ëB£1põ1e¤BÑT”R^9µ¸Ñm²³g5¿‹„Å’±²’âO ‘<é0åA«¬@šÚF¼»&Á+òUÛKÝO¤¢*íÄo<$M&õEK¥‡SÉÍ«BxÎ'Ù xÜ\L(/1W¾ôÐuÒcŸHŠÊ"ú8¦u„®eOqLÒË|˜Ø&†TþJ.¦áÒ›JåoDÏì÷K—4¡HÂíÒɨÙ.m&åÝA£Eêa‰x¢OÂÝAªâàŒœÌLÊÿr& {õ Õô`>ÿ¸óÞÒˆÑ1PçÍ¥†Ù)rçåÒŽÒ4¦‹mKH¾;,m†Hôò5ˆì9Wñé±*^ .™7®ó³ÙÇê/Y7mǶ¨¤ƒëS;·È -à´`k©è°ôQ…ÆäÖ\;¸$ë²½ºÀ8Ô‘ºø‡¦ó|m({ªÂØfB·‡%÷q¥‡òž+YžVHXzuä‹ÔëÎLˆâÓS Gã0·Nsôz]•ÙòghõºŽ žèãn¬&ßY'™”âŠsú,­úI]Å\]--cþùçáÚ)N©.qI•Ò¨^¯o–¬?x¢ºJ1'ÇV fF×òâóEðÔ +æH÷‰u#>sQàÞyç ‰I‚“$ä¸ +š à[^V·"/šÊ€=5D‡¥ u­^.ûA ͤ@ôõææÂo–ú®2~ÇêÛŸßØW¢ã<R[æY:!иU‡¦UÙ…슳wŸÛ¸ib_5ñYošÀ”záãRj÷6Á5>y¥—_(diâÒZ±Áp¤q>«=²T8õŽ›“³ÕÄصìcαϠ‘&Ü@›y½ä¦K£ç˜”ïÔ+=”ÌtS39höbÇu¨V×p ˜ªÙ–ì˜Kc°äœÜÄ+'ƒºšÙ¥ÞÍ ¥GMpéÝ΀Khxs³ºzœÐ 5¢* ¼ Y‘8Fd£BÇà:¯d…at|G‹}<Å'–ÂÛCÞ~æ`ËÏy(#§ +¤à{V‘ßð7ä6ê‰|ñ\¡€lèU/ +k%Êù…úµDÔ0X÷r~ø|IŸ–ß Íß#œæ¿eÁæʳO©£ñù íÖyJu4ÍšÅÍc>î¼h²û~A¹ñXˆ&yí: w7‹Wêy ¦ë¡é¿ÇýÛÅ×O^têö°x¯bÓ)–Æ=²h¢ô㨮÷u¿@b{ïqIBßó7ù¸^ä_‘æÁµ«î WÌ1‰=Á:tåòzáp°Î¸rk‡[Ó˜ù–£ÒƒrÄê†,Jqâ-Y|WnȶSÐN¥;¼õvñÛâ§Å×ßmoÿ½§M“ ùåbm,eÒ9«ž?Yù}TN=Sé4ØO?b9ïø”tâgt'íìÅIX”f2ø0øª$Ù&(ƒs’çú«œEÚîø@ÙÇ•eœ¿pPFÿk«“¯üm;s§;³ ›@Hölè¼­w†ß¼wqkÓ!ûÓ%§rÐÕÎas¬#œW1/w–’¿wušWz‡Âæ‹ÛÈ"ó«ºÈ"‹!÷ lÔº|u½Ð¯XïìpïŒåiðés¬òUÖ¢ñNjž|C6›â¤q±ªy.P¼/}IÞÉC“u]/Æ“/ˆê;#Ù$RÔH¹£²xøœLÆlµ=l0›hîlö7wfÏšÐJÚ<]ê%ìú±^ñ+uAÙ6 Ôš¹îèLzÏ„\™µKgÚ`&Ó¡Œç¹Ïÿ +#žD +FûíÓìa³ßß|õOÔZø„ÆZ—mlz‹®ƒÖüCÚuT™»ÃöÃöþn3…0[þè®›Iç†u÷¥ ÔžJ×áÊWKß‘’õ$c7×¢ +?lÿÄQoÿ”Þª€´,øÅ‚cÀg…C²%cŸE—¯€"5Õù`ä{Nkº£}X̬,—Å(Dz 1?!@ŒqÒ¸Ø, êÎœP¥MzÂUÓ"è(2_™Þ­GÝcJŽ=Ðq‘"Á›‡ýA]ßß}x £t¿“ +Žg*ø—Æ¥Æo +endstream +endobj +65 0 obj +<< +/BaseFont /ZRDANU+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 166 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 167 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 302 282 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 696 0 0 0 0 0 0 0 0 0 0 546 884 0 0 +556 0 0 528 602 0 0 904 0 0 0 0 0 0 0 0 +0 452 0 0 546 452 0 508 546 302 0 0 312 800 556 490 +528 0 378 396 340 546 0 762 0 518] +>> +endobj +66 0 obj +<< +/BaseFont /WAPQHA+MyriadPro-Bold +/Encoding 168 0 R +/FirstChar 30 +/FontDescriptor 169 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 170 0 R +/Type /Font +/Widths [322 588 202 0 0 0 0 0 0 0 0 0 0 0 260 322 +260 331 0 555 555 555 555 555 555 0 0 0 260 0 0 0 +0 0 0 656 604 595 696 534 527 682 0 285 0 0 511 846 +690 717 581 0 593 540 548 682 636 888 613 603 577 0 0 0 +0 0 0 528 598 451 596 528 341 585 0 274 0 542 275 860 +586 577 598 0 380 434 367 583 530 759 519 523] +>> +endobj +67 0 obj +<< +/BaseFont /LWAUZW+MyriadPro-Light +/Encoding 171 0 R +/FirstChar 28 +/FontDescriptor 172 0 R +/LastChar 146 +/Subtype /Type1 +/ToUnicode 173 0 R +/Type /Font +/Widths [484 484 763 542 219 0 0 0 0 0 0 0 265 265 0 0 +174 298 174 351 0 488 488 0 0 488 488 0 0 0 174 0 +0 0 0 0 0 585 505 570 647 466 462 624 630 211 0 498 +448 778 638 671 502 0 505 464 465 626 509 820 0 0 0 0 +0 0 0 0 0 454 552 446 544 485 262 544 536 209 0 423 +212 819 536 532 552 542 295 373 309 531 452 722 429 440 403 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 174 174] +>> +endobj +68 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 554 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 56 0 R +/GS1 57 0 R +>> +/Font << +/C2_0 174 0 R +/T1_0 175 0 R +/T1_1 176 0 R +/T1_2 177 0 R +/T1_3 178 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TÛjÛ@}×WÌ£ªÕÌ^´k0†æBhh($z ¡¨ñ§ ²Ch¾¾3kűÔÐ$ôEšÕîÌ93{ŽÊÏív9on·0—ß üÚü^?la29:9†ì¨ÎPëù霅˳ µ‡Gppwp}ƒ0…¬<»BXl²òØ|G ¨çœXßò‘úQ äדlµùò³"í‘"¯MDÞºÏƈÑMê»ì´ÎN/˜B¿]dEä$'9ž TA[cÁkBí,›gå[•5í9j¤ <‹.Jd[¨tð‰càfÉí*0•FôVh^ç_Taµ|¥œ¶oA>SgB¾P…ÑòVE=‚¼á#áåH´©¢ y 'ªp ’/UA’³‘º¼Ñ´œÅë{ùÎûM +Lªàµ;.Èʧ}ÅtÂw©œ±þ!|(a 0ùÕ½—‚]Aþ$¤âQž1#,×+®É›Õt\ªT'õIçÍ ìfЕŽ¯”¾R#!¿Ê\I¸æ(õÏAIíÈoÔM}¾—Å»n™†JìÝ« F[r½{ÍAhïMLÅ~ŠH 0@°º +ñ?^ñUÏA6xŽ¼Ø!tYè=(‰¼ÌÌìg6°Äq¦ß͇çÕ7ó¾?F¶;ä¨Õ1 ¬GÊÑwç¬+ +~à€$X=ÛaFTͪ :zY~XGÝäå'QÙ$¦]0T@M>¤»ˆvTíÈ:V|f:Qd"D=&8z +endstream +endobj +69 0 obj +<< +/Filter /FlateDecode +/Length 5681 +>> +stream +H‰¼WÙnG}çWÔ£0[][/FÀŽ=†gìdL É`@ÉeK¢J²¬¿Ÿ»ÕÆnÊ”c ‚D Ù]u—sÏ9÷ðÅæöÓéòøVýôÓá¿Ôá»åÃÕÝ­úùç—¯~Q³—‹Y£šÚXÿuΪÍjvøæC£V7³Ã…þo£´ZœÎÚºƒàŸ®öÊ ]Ý·®UÆ×Þ·ðÀåìÀV‹Ï³×‹Ùë÷pêŸpè +þ]¼;üÛe£^]Í~~¸^®1†wËõJœ¬ço^V‡ïyûJéÆ–ñ(¼öÑÈBâhê¦wjq¯´æ§´ê}ÝØÁ©Îôõ0 -FóûÁ²2mmÕÁ­ÚœTsSuð±² ~uWi_;up\Íuð ~5ø¿ëJ7u«V궚ë?žUm œ(x´©{…§üæºÒ-¹Ä£z>ªÖx˜Ü +‡ÂûêJ8Uù=Ïøˆïx|.ƒï¿À­Z¾ø‰wI¿Àñðb¼QKŠÑÓqðßjE_ÀC›Êahp³¡\{˜2¹Ü¼ìJAU|ÝeiW-åC?¯*¸2ç°ñÃØÀøæ‚b}UžAô6|ÛÓƒñJ¬™ÃìNÆ©TÿYü=BéQظ6uÓt; ï"4Ž+ªÓß¿†Û!ÓSH¢«{®1g੯-ç‹?ÖjQùsØ`NT±<¼‡n¤ 9ä‹P”p±'pwÕoðj‡§¿Àßà¾÷j¢÷ðÿ^¥ß IºÃ†ÌµMmÆ«¶Ðoý¾(Àp»åßÒ=[g¨•·òT DƵºÁ+)3¾òKe(*W o)•pú:‚[ñÜ8>u¡xi\àÙM|¸š;®‡¦ËAö8ÈûÉg@‚Qo´Ý¤ŽÏHEê„¡ÙÍHúH(ÊåDálYî¨tª +9ǃ¹âPšð <£+Ïðù8ÆYÇyHji¤–\S—ì®17.@8ã·ûØKÃÌÍè‘xÜÖ°ÉÂg„‹³šºä¾ ¢­)FÊGj +R­¯ð EvÇ·ÄJòn¨A™cÎÐ x¾ÞUm†*Ð0͆øj_Ç ¸e5CŠ%¨á‡¶¶3µŽ´õâе(9P¾·êäF,5·Tt…È€/îåï ‘›p •`nän¨áëý“êBR’R·ÐP ,ß ¶î èœý¦Ö¹Žÿ¨Ù©{åÔ{•K9U€²W‹¢™¥ðƒ†Ä´5¶¨ÁÁóÜc<d‚üUj?¾ô‡Þ7l ‘.éC{˜’vëøßÔ nÜZ ö .qàt!+=‚s^±°Æ¹eõÙ¨½ð1õh4×]•)°• +„0¡ýY‘2˜œ*âøЄ¯Ø­…q")b(NR@!UwÄu:c–ƒÁQ§B@Xže/½™§Á êÐ2“^WM–Æfo€ƒ7ɽhÑG7ô0»ƒ)a2ß&pB)3à¡'e¦õ]æe£âç$J.0ñµ$)˜±`ߢ»]b…Hl—*ˆ=”þÞ«?ª–,nf<¢ ÅÂn3‡I©ìPw™fж–{{$ƺËnýÛUø”+ÙÅ?&6áh©’/Û6üø¸ËÇ¡ÓUÅïGmp´FüQ©‰q +ÛÇþ°3[Ø0Ãl8›™Ù±º êƒE CššÌ7tì£Î²/Ÿó~tGW9å™JÖDU ;³ïc‚èQ§rè8b¤ÇC7ÒI]„è¡hÓ»“øÛ$–·ý‚ëí®Ãg·— ¥>s¶)Ž'¬ØÎ\³~=/v7ME¨˜!s«ßQF›¶zYˆ°¥Ï`Àz];¶TRµ-µá.x¼úZ@±9ùL„­eÕòźTVŠ‚¦úG?›–˜Ñ)[‘k‡Ž5É÷yD[ôßâßú ý+wWÝo;m‚ºmÉ`Ù8ïÿÄ› ÷Ág{ƒ®€çê-z +öt±½¹ÃÝɼŽç6xòŒ"úçr--·Ò°ÎtÉ,8Ãß pW’ž×Óèö}›ùߨ½\=êbF>™ÜÍû™K|ÁQkµ¡ Ýñ}";^°ö5&9-Ʊ`UêKUÚ‰ •ÂIh`Î ëQø²-a±UgÙ¥‚€œWVhIJ¹½©HPxÖoð@“ÌÏ%yøa»¾æ{ê»?xûa®Û0Xà’‹~²%6Bûßhß&¥Ím¥¹S®éÉ=¡!—]]K:8.ïx}±QŠi ÏZJ”½3Ð0Ñ›V4qºòd +Œþ<4÷½´‡Ã}&¸Y#|FEBMŸ¸c—)+4Î`ØŒ¹g‰ÓFÅ»GW™»“ÀwÙ3·!€Rh˜Ðg·A0¢G)”)Ýùu¨9æ\›eß)VÁ Û|”€†ž„U`@Ø,éÂĤ-~0r¦UbôLK„²Ë´ã’ñk z˜Ú9ᨽs註ǵA»¬ÑQ¿æ_¾VœÒá–›Ö™U +Ík’39凒ý'¯RpµŽD„ç‚%|…Õí°Ãò:Ãg®šÝöv¯‚\åÇPC QLW®@1(J=Œr+’BÕª÷ïÎzs¸X@[ÔâtÇ6S‹c…Ÿ&m„+õ?Ä9„H“5øPY‡ù´¢ƒ ¤Ñ ÚNÕrS±r^îž)Ãk8¼&DæÚ­-ÍBLc·Âz®^ঃ…·Då ++×Ò0ÈÚY–02G¦ø–Ÿ|Ìg.(PMÆ”²‰ÜKL(2 Ejè¨0žÆ³FŠ§™ÓyÕ©ä“ÈJ^­æCœsÇk¡f‹C‹˜l‹wI1p5c-¼Áph\&´@x$[ô+‘0}5T¥H÷GŠÍBа;„œò_psÒÄDÖIùÿB‡nêQÑÕ7*”fÿÀÁPÐ’—ÞM ·„Í8 G'H8†²r6|áòá‡/Ež3$÷_J8gÃçI[NºÛ;éI[ÿܸ 6pÞ$l\ße~c >®e1Жg‹Äã–˜î™:B‰Ä¡œÇ‹SB–Ùµ`$Xýϼ&ž ±sfr~”¬-_y„ý¢^fsȘÝa'7qJ)ì“Æy”AŠÂÛLi¡ 4‘@βV¤í:«–h»®—çê-ò4>’õT˜5Ów3¡ï”Ìc ¶`Š\¦ÑÅ$f2%˜2<(0{£Çïvªnèë¦L–ÅçýŽnK`§ÙYtOL¨9•ÙK‡¬t¢›ØsGËE¤óÄÉ~ŽEòÎÛW08£¼ÎVßL—]¾ù ²Ìô¹D~Eþ°ü27!‚0K~G*DZ±ÒðMEÎœ,ÆÂKݹu7ªÃÖSh@…ÆÑ +|]4^àÓjEc§ ®ÞPnMF.¬‘Щ¶ ¼@)¦e¡…'–¨Ÿ*Ñþ°îJìµÃìù¡Ö‰·;À6e£{±Ñ8Ÿê±Z¢ÿµŠ+9ªc;½¾q÷qv/q,¶#þ|Ú*§S7Q M¾È‘úo»èv¬rÔŽÚ.CóÔR7ÁО¶¯'€§ß͉8°ò%{þš/˺”oöXé|¾ÒyYéP+`ª;./UÉЊœª¢©´ª`‡'ooÿ—Ým( + òoaA«8ßÍjvøæC£V7¼Ê ¸0ÉèGËýhc?ìÐÕÎ[Ãý°ˆ¡Ì!-Ôdæ÷µÈ V3¼ÂÐ-6ÆtÌkÌ8Ç-éAæ&HκZïmÊì0`uŽiiL+®€¦›†˜íÈWKJ¯0%hÕ+Üe  ³"9v\4ŽÜ†cþß$‘ˆ)‘{Œ”“bŸbó=à÷ÁIÇÿõjéÛHÂwÿ +CÀ3fw³›äÑHÅrIìe…dY +Ö²-K ç×o׫»ŠŽ³?†d?ª¾úݺ:É÷ÚYŸ4÷ÕéFKØU×Õ—þÜú!6uH½•n¾ñZLç;~d¯úþãÍÂFXÛh燿*¼‡©©F7&g$jL4kûQâŒR¹Œéu4¤L% +^Á25¾·dZ„f“NW ‰D-à'øî>ÔF¾Ä+q¥s Å­Ä&ÌØR‰Y˜õ ¹Q9b,בwg|«^–¢0~Ú=¹î‚€Î +ps…@]‘lsNPÕlÉ!¯“èÁ–<ÿú½P†*3\€oNt¸‰¹è7Åu¨¼Y³O=$6ãåú¬ð*HÞ¥ ®Bã…Ò~Â#ß΢Ÿ +ž$¾ˆ‚–Þs¼ +PäÖ•… ¡¤Pz㇜0ìƒÃg° <"%КJV-B¼ÈÎǨü3ãbn¤@LÛjÂ~(KA ¢«P +Y +”쀟 º›¡JU’¡PÄŒY5)¿Ý¨DR¶\Õ©2ŽLÙßl|̈ö°â£Pø Ç+´b"ºA¶O%&‡ÔöØÆæú>PõÏtŠ½"CoØ‚X™YÂÖ8BŽ¢œ‚Ï™E/EÞ‡\F_¡$ýg4Ns¨òQ¢¸ÁJ.U¥8dÜä·ÿâ*×¢\ówÏH0á4ÁˆÜQ«Ãs… &Na%ï*ùŒÉDhÚñEœà;êy;ZT–ÚÑ©õd >è6ÿöÞµa€ˆ¯lÒ$Teñ+dh-ÑNØ´ä†óÖ>?ïÈ)ïFTÀÿgtáºá8¸”šÐÊÀ^‘mÎäü÷w'M©=-ˆ£žNz¯Õ¾²åŽ8º©UUT+ÎsoRîPf–¬B‚QeY4M®'Pjñù ô @“d¼T oðÒ78Ïaû!•¬õã:ßø)(¼Ë‡«ZOÙ,ŒFó ÉÚŠtSó‚B›b+fYâH_ŽH ¿æµT½ƒÁ˜¹SHà£e*Î…úeBá$£<·dƒÄËWâ  tL—xÀæsìøÀa°Ö6_{ä¬mqÕß“wvPlÆ[™ò°7'Ù9/åÃûÞ3³ç}[¹5³¸*XQš²åŠ¼ï/âhgjÚÈ>Eeê*è„=‘nË%›%®¥ÉZðŠñ´QªqiPa·uo¹<СgZÛ]ÃɱÛ0Æ>:åƒ*Îd@evÅ;Á3Pî3WödÖa£F~´C[iB*Ax*=,>æ€Sÿ¥ErSñŽÍû¡\æ¾¥y¸µ‡þÊï;SZ?ÆÒfkT=Äyq_ƒXª›M~¿®ï{'ÿÝÂe8ÐÀ§;±}mfeŽ˜µé"ªì-c6Ê…Z‹nÇ]6MàVüØÁQ²‘’[Çÿ°q’Ö(mwË£Ö½ê°ÅC#‡ËøÉás˜…Ï8'ðÖÙ[[EÎ~·êQ!Ì®õ2«‘aÀûåÝ%xêò!Êx(dÖ‘…HÜ™ÕÕ"ÇSE^”¸¬ÚÔ¹+a âÈ% çÓ¤›z¥Dus¢Â^Q!±l´@$©Št‰^¸mny°–®y†â¥FõZÒyï¨bË|–ËHß0îÄ÷FÁƒñŸôèC¶IIÛ:Êñ‚šö³ ÜFsc§ôéŸèkܳÆÔT$ÂÂuxG榌»ÄNfÆb†Ùú!@_`¹ÔÕ®›¥|‘Îø™ÎˆÊ$|¥¢Õcø± %ô +)yo̱|L‡×LèKÚÄž´»oŠæµi0†®—–GØÞ¡—DÐ rq=åId2+mV¹97XŠ«æç{\€Œh kÚ¸””¶Ö4 ¢4ÀÙ2Á¸R`ehª6F¨æ÷|ô¯9÷V»%þ:g)n’ÃD8Z‘˜õJS%9íóTñ2kPgä×^d[ |´ïq[½æÄû ¿ÿ ´=¯ó;ÿþmë¡Qtz%þè÷”XÛP›ã™×#–jH‚—a`>•â{Vy»N7‚‡šê¶0˜üû BÞ)-áÕÖîÇa²8LóMcV‘z–Þë\Pªƒ _ò¯i±ùé-<Ëÿ{pl®Ú8þؾJAŠ÷>±/£gÙÖ›÷í‚׊N_Uy¤î( Z7;û«Žn\ŽAš©æ`˜[f»¤.¦G8]2*ǦOîVl·"ãQø~P Tn T™SÓŠx„Ìågg¥ÌÕTŒ_7Ëi¯sÎq§ï*oA£FPw®rÛTƒ€b”ö³ÖúââŸÏ`ã¦x#ÒÅE:¬Š¥gXµÇõ°×²¡X.‹'©UOµšW +9ywsÇmŸØOc¦É›Îfͼúï¾¥'ƒ·aâÊ…êæÆÓÍ­»®fa¢ w¨dZä‹McRXçï{S¿ñŒaöý#…žâ•ZÈN’Û.lnÚgMbc»éí¸Éœ^òx4ûyüæ5Z9¸-zX’#v罩ïOÍi½UëöëÖ¾õ™ßJßná†-{òÚž˜ˆúÇu¨E§~”ÈD?î‰M¥ÖOhu&²{¨fäökù/p0Eð3µð¾¬a–üÈÍ‘Ã4 "ðyŒ²Ì¬ÍÃñ‚ų…ô“€Š(ŸÈtŽÏé<Ë-ùá;(áTF≡÷:›tã‘“Ê2ò(1íâw÷µùh=ªEîÁ¸Šöÿ{+ö—9Í@®ðÕ»†ÿ‘¹|µòݨ œAu=€‚ nÁßï`V‘ tÆÇö€¤þM Ú¸‹lGÜ7Ï< ÷gèöØ‚ï¼rýo[öGä¿ÀÈ`¿Ð«M%þ'À|ó¸ +endstream +endobj +70 0 obj +<< +/Filter /FlateDecode +/Length 4306 +>> +stream +H‰ÄWiÜÆý¾¿¢?N.ûb“€a@‡-8Çš8âÀX­fH{xv%yÿ}êè“äÌría —l6««^½÷êøùîþòìäô^|õÕñ_Åñ›“‡›O÷âë¯_¼z)Ž^lŽZÑ6Ú8ø×Z#vçGǯ߶âüîèx£~m…›³£®ñ°þóJ™Æô®Ú5Îu°àêheåæßGßlŽ¾ùvý 6=‡ÿ7oŽ¿½jÅ«›£¿¿½=¹ÆÞœ\Ÿ‹Õözýú…<þþåw¯„r¾ŽGàg?` ŠÙ„8Ú¦µVl¾@ ¼J eº¦íŒðºo†aè0š®6Òõ«TªéÄêD®U±¯®áÂáÅT->¹”ºkŒXÝ˵7xå´x^pqÕ(±ú(þ¯zÜý9>ëÅê{q%מHc-Vâž¾/^È®àÀRãƒÝV:ü=ÃÀ,~~1Эà/À³pA¡ÜÁþÞˆw[ñ‰î*ºëðw ãò÷â®4NœÊŸÝÈw½zÛã‘ð¹ ‡ñfyhmó¡Å +Æ…ühZÊy¹·Rh1¹ŸÜð'ÏiªsnðÆ}Åàv¸ò_›¿$Ø„H_B¤iÝ“^ÙÆ'Ü`¤P 3ñR*!ÄÄä7ð ÙÕ +ë„ð¢F‡ýYZ‡7r®TÅ‚3õùL×’«tʙ܊Ÿ$Ä6å’¦å/2OåºÃtí­ExÿæJ‘ ¸ƒ ª{ ^Þ’ f,.Hµ\øô*Ÿî£Ô„è8g$á5œgÉ¡z‡ Ç€P ýt@ôˆªª¥“PŽµÅÇŸ°ˆ”BþÝ +j#W´Ñr@ çThr«\W¡iµ.)îÐÖ][l yoõ>°¶Pðap Öœ fŠ™^6U멘L4æ2%¥ÊªÅEïqQµÏ„ ¦Ã¶Àè '‰¨dj10©9w)ћȰNÍŸvLËž#`#R¼C¸ÓVíP¿ø‘Xð•Ò„¥wºeP߉_VÒüxÁ¯Ô˜[ñî‹^ax $é':*lõVhIo6rMìo$Á¼]No ¢%½)@É_Ž `F4¨½¯Š¿‹gľÖÚvŸmsiº„­‰.T‘Ä8 ZÑzå¡0X’W!eI€¸J®@SV|ª鯫ï+ºßdøf.ŽÃc¥†jŸ7tµ‡Òx=^…fW®BRÆ” ä]²šÚí˲ù@|"LÝ#0õ¦¾ü:àQ3Z¢9z™ÔŽ‡æ•Å0Àû\¹®ÂÑj½¦¾-¶žC§…s$tÒdåNV~f²òåd•”…Øê°[8cV{*ž~'Þ«";Çõ+dFlΨŸ ŠÆ:\AEZ8eOÙéÕÙà‰l#=¥GIøGü,-q>à—ñÞaŒø±b1¿-›:œ·"\?,?€®°iCü1vÐøyV²ƒjZã G¾Aó³tLØ"dtOD†>€Œ~ŠŒ)שf„BwîdWÏ c:~·Èvž&‡nFÈ®FTA6°/làš„ö}6'âspËp¢žX„¨ôd5šQ2&œ8FF±ˆšˆy9fÊ)‘Þï‰'ŒçR<TîŒcšæžÄÊ”€ÝvÌ¡#§ã›®¼ {2úQRÅ/”i<Ã9¼y æ…ÈE +3„¤¢sRƒU¯½ŒÃAãTö¼+msEX·xX°Uá’@NÛbä{ÆéU•]˜TãœK“êY ‰›¹Ï&cˆO·^8â.‡Ì’ÑvºéZ’@ŽÌÛ¤kÒ fzþ6ø÷ƒ`lWüNµÿ„Vvæü¦œûè{.,êˆaÖà9KˆŽ†²;nÎ`”s€c¢cÝÊ®iy:ݼìP3ª0«áÅÙ±º~À¶ ÓšåYMa|£™míM®™ÿÞ˶¼ ø`&Ö4±¶‰¿(oñ‚ä« £dC9Åê3æÂÒbü4Tõ º ùBBIÈvYJ-›úé6‹3×í×;ÈÙ°Ï„ÛŽëûÿÈ]–_”à])#žÊ¡f`["}ì,âL”$x$½:zÓRŸ+)-Þ¸¦#Ù$gv" •¨øRØt¬ò|jä"±eW÷;r³©«oŠ <.z‡‚0ÔÛ¡Ž‚íZsG!éÐ'>N¦Í°‘RlÄÉ”Ä$r_Æ‚=Iრ-GU_£Jïc2ã! U·Ñü‚hBp_¤ "€#ZÙÔ¥‰rÚÈA1â6Z‹j²ŠÚö*ä¿m ­X¢ ƒ<Æ¡ç1…F”|9kÕ³—H¬M´ÎÕîÈ‚€é}<üE@œJn´.`æ6b׎‘⃫&ƒ‰šÌp)>/Fåˆ*Ä´àÑö ¦ƒú$ÄÌËS-‚l"e®ž³‰ +¼ßm å ++ü“×%ÈB@)ªs«Œ’\ÚF-jÛ8<®º-ѳ+døA~Øôˆáöº,HlöîUÛif£šÜõÈñ¤i+N5<­§š·º<Õ˜ &>‚ž­,õ¼¯>^7ùd‚÷`ä9ÄŽ}á:N!FKfÔxt]P–%û°>¬U+qáiÕšrlk¹ßÑõ›”…Üÿ‰!";‹GÈ«à[h›KKೈdÑ('»ÓÕ‹áiJxþ‡õjéÂÅÇFê.±“8Éq涗Jˆò,”¶´”ׯg^¶Çv²›"nÝnâõÌ|ó=Ö Ùö*Äá• +À»¨”v²nœTM•^Û¼EBº;Ò£wi½€áµïÈx– +КÙñAwãÒÓLøÿýövõÙ6;7RË ”1v­óûÖwÆÍ­òÀfzf‚Ë8irôÿ[¤áŸy` ]6…(_+¬“ŒßV"íPª8¼² +O,QŽ_·Ýø™…v$*²_ÈRîü€OPùìý’È‘v-Mû’TP|o‹°sd)=Ï´\l6=GÄæh¹±b›à—{rž|;‡Â»8_#0ì­½2Í:—ò>Ä"­£[z"±ïüÉängV æ–t}!/­­xÅÈ¥‘Ài.2nm{DjÉÉb#{d¨/AZ×½„?»`f=‰w>+Ú$à ‹¿ +ÇÊ}NÇÊ¥¤õÄñ ùÜ·LG`ærÉ·£ýI(˜™æš™"#ªæ)Ü5žð|©ÚKd‡f?¡-ÊM=vù +w iɨøÇgD®€ó;n[à^Ò‰Ô;È$ŽgRxôrQœúoÉUžY\CzÑT1Ö¨ä,¶H2÷–ÛùÅËo‡ÅXù…eLô“r³¨ÃÜ/ Ò+ÃWµ*å ;§lr‚Û$•S^¤Kó +^ñÝçø@ò%¾Ò=ÉALªÏö54Í>puæðÖÈÔÙ‰ëTc[°8n´ÜØî¿.KÔA)æ̼yßÞ\´Ý_BmQº¾ó3ïÅ-„¯,Vrõ] ºDõ8šÍõÍY}‡–Ëk±2¬ÑÑ+xy?¶óĵšabe_œd°œþ?L ór«SºAé÷‰$VÀLFShY‰‚K棫H[YP½Nç/t…,Ø%|T~WÚ"êEhýÍ‹2Kd’ ægaÿzüƒå.Áb~“hú”JR[ «¬ùî;‰‘òèÅYÓÓ6q/!mû4?E¿¹­s»pê턧ayfšÃçmGÛ©µÃJ¼²# 9Â^yŽh×Üd7ñ-zt]_æÌwléC‚ìèz ¡„2æÂ¥NK.µ—.&]ûÅÝ~‚vxå´î±I*”qIñ'j´•qÏøÿ7Û±ëŽ`Ó¦|†-ˆY[±ÛØíƒý§¾„#·&¢½|±SÄÉ,d %?<¤Qn½RùˆË»y‰iòQxb‹_ˆF9˜ÖÌNß7ñöÞ€Lˆi‘Š®Í¨ì=…f©Vü$Ù°“÷ˆŽÄ êŒ¥ê8¥: K€‚+ +1Å$«$}i:qpŸqcÞÈ^)ÇiŵÂ!å„€v Wø\/Ï£wAæLöv÷ë(NëðÛy #,nÙʨ$²â¬ +|WZeéˆ à|Jj&„ ux…­·]%ÿVÛyDBÏŽ¼¡5¹$ÚN¥2‡Ç_à5ëÿ_¬>?£ +endstream +endobj +71 0 obj +<< +/Filter /FlateDecode +/Length 5448 +>> +stream +H‰¼WÙnÇ}çWÔã vUWWw†-Žâ@²k?ÄAq“b’CsD)úûÜ­¶^†=6Ö §—ºË¹çœ{úüáÓÇ«³óOê›oNT§oξî?©o¿}ñê¥:y±=©Tµ±uÿ:W«‡ë“Ó×ï*u½?9Ýš_+eÔöêÄoZ¸þk7r}»é¼óÊ6›¦ñpÃíɪÑÛŸ|·=ùî-¼õwxé5ü¿}sú—ÛJ½ÚüýäôÝýÙÆðæìîZ­.ïÖ¯_èÓ·/¿¥Lß”ñ(<ö7 Ä„@ ²®6UeÕö\É—/ÊT›Ž±ªk6UÝ;ÕÚ.·=†öÏ•ÓëF­6zÝ)ünÕJý ×n_δÛ8µú¤×~ãÕêãîîLWãêF¼~ó•ï?»»à/7zMvô繆€z|ÍÔC;m Ķúâå»K<¦V« ý¯íßbµVÆg•9Ýn¥•T k©†ó7)c7u_yÎÿm)»3üälmEéjÓa`;¨„uuÚ´xß7ˆz­-æ·ÓÖb&ŸumðŽKø2|€zμí¦Ëü¢;Í¿Ã=Þ¿W\§xª+ü=¾VÁÒíñÀKg˜šBmð÷k|U‡×åÕê,ž-“‚~¯=qî/z­M‹‡B:-¾ãß G¹CL’ 1ñ–Õ#‚°þ6{V +†VȺÉË’f7°'.Gàl‘V-’Åë3„¡¨»ˆAÅÚ±Q¡Ç,_B ï:€k1‹÷x—ɤ–¤?²¢_qwˆö¤4Å© =þùE×Ô®4팤ßàþ–™6ÔÐR-©¶—j/tL¿aŸ5pÕèš¾m4‰šÕž¦æ­Åó7jËS÷¢ØAh„"Wäü@ÜHJ‰Õóÿcí–3®DWbU†ÅTûLr|.9 Ág«ª°¶îkå{[oµÎôÁW›!®g`Ý@µ¢~á$¦õÑ— KK„pšUG‚&³XL?I™L&±ïNéjâŒ!a™*‰Àè$/9ÑïAßi†q2>»Å×£AèxØÄ6@HÄ4ÀÓI­-«èŒ¡³Pqyâäö¥Î‰X/¨]Ð BG´.¤}ŸÎdË +ίø‘œ4ÚQAj†l0ÌüûM‚·L[âÖ@º‡€ñ,$\ûAñÉ„âŒÝq»Ì¬Ž &@#‚ Ü\èͯòŒJ6cVÞãËÊÁKñžÍl=žß§—·8Yö€â¦m']Š ,–1÷bY¶•+Ÿ™ƒ‡m³õ#wÔ¥…*üt¾Aòïi-YÂ5œ º2ðè"0×ÅL:¼çBLt5ãó3y³\%.æIÿ—Aaya›¢°æwº°@8ÉQ?¥~Ã…Ë¡(QÛ¥R’ôŸÙ9xÞ$ë +ßö(>"y'(3˜miNËÏÓŸí Õ}W•:‚þÚÀýt`Ùv¼Ù0„4%}Iw3{ŒM{ÌäêùÿÚJ¬ +¦\úÂø;f^–7®Ü«ÎÌTšØÄê6ÿÔ&Ò,ØDÄã?SÙ«ú´ &!‡LÛÂ÷züûB¼ø^|Æ”ü{ÚÚ,µœÉ–½U5ŒL¨j‡‘ei/®o¿`0òâ. S•­«æZ×Vh â`¬e—²”ñ#®µ$öPíf’µ3-Æ!j.ï?#k Ç÷H1ÐéW2¯‘à©ŸHÐ-ZBXŠ¨À“ÓCϵoðž-t ÛýzÂß-í‰1F™aö¦ñ(™R¸·ÚÂ1?b2 ÅÜ Sjßk^‹^JÍн6Ò§— 4ñ¤ ì™à>Œn–=N½G'Å­¾\^©®6¡7+Óè-]­âN7lm’×T4V3gÏ»F_Ê8Ž0ÝÃOˆd$ä5-,i t4§…ªpŽÝÀ¡¸™‚1KÊx@â4‹Í³¹Ý)Ë>ZÖ¸ÚňàŽ+˜žô£DÒ/Éå¥+Íif\sƒ„76‹48•£‹sø‘ê‰Û&^úð'š¸Ÿ2Ƚ'gñ † +ZÐúC6YíYݾò˜$et§jÞ?6êÒlW¨$óˆˆe\É‚­ø“}-@wYÓLg;‡<30"Í„Éù•6ÄGQ¾#|Ùr\ùR“g¼ªëûL’g¦-‘gŠ:âxhWlZ‚ª*x˜y¡àw§RòR{¼È›Tpþ¡©x4Á_‰I©l{yWD/Õ‹+°“N/Ô{ÔÇOš ¼‹¯¤7\a-~zÙUB%¼ì¨YáñϺ&f»œ#°ÈZköý“/’Ñm·øñ^\jTŽƒl$¥î˜‘FÌ|1âÚy‰v°U×oGHt¾L€¾${t…i¦Ø?|iJ‘Nbrðù¦fßק•êR=\r}bÁ5IÕg,£+H1pÔ›¢°{ m‘ju‹UëʾA¯g‰R~Jg’‰M ÄärÀƒ`òß9šÍòææÛÃéÖüj˜ü«“5Ú}p­çJ¾@×qö©C6uÈ7:Ç ržœ_HN­Ð_v<è«Óœ/õƒ.W™²Ž³Tb9ÿ€[“sÇ!í˜.GË” UzÎs†Tš{]8ÖËôa3OiÉ¢—Nç^±™ðÐ-¾qÕå­LÙF›O£•Ñe+ãr%¶ƒ%oN‰aØ}DÍ·›œïz0ßÁ®Qi÷@`"=®¤±ÊêP'‹Žù ª¨!$‡a‰q… PiýbûRãF§¨÷Ð,隥ÐV Ü°4J,(¶4 LjA »œ"YOŸ©ÒK2É7['‹…11G¦âMäçÙ±ƒ t"5¨¨‹‰‰X1å¾ô<Á¸ ÊÅ4?ô÷ ÄqûF²ÿÒ™0ßÑóÐŒ•Ñø`òh¸ÅF·8=­3ØFîQn#3)#zv/ôÝþ!úÎÌftÉ&Ï–ª9íd‡6”î”Ùn¢Y ±z9ËñµÜœY—½šüÀŒ–Ö $ÂwvG D‰St•—·ÀuQ·VÊCÞ-B¢/8ëÿ„Oÿ ’¶Á;ÚyG+@Úu(Ó{¤©z¸CMÛ}];¬Î;”>w†ƒýN× +CÜýF·d0~>nª5W}¹e´ÍŸ²Œµ_ÝUõÀ3R=[FJçø*Z†ZŒ>†ü•ï:»»à/ûÀùçšÐò%74>¶8CÈSÖÐÆé9€±ï¼í9³¿êFø{Ð6Ñ—ˆŠ¡ÌdJ/à¨*å8:Ó4OÄC·Ôç¿XbA¨#à¯, Á)¬ecBQ%p‡g™&“Qf +þŒÉdt°[ÁõC6æ-=¾þ«‰öYö·pn´K<Õ™Oɨ;Í<ù7M®ps„Ö·¥Ö7í H0·’-C3ú¤ –¨ ÒhÄìwRìPTDÈ­(IAN8ë… üõ«aÓ¾¶m€R,jÎPÛïv(k“#RŸZåK,!–¨.ýšª>}1¸&?îwÞ‡a×\f…Bÿƒg(W®W®{ÞyÄ[=à­mîJÂh…ÂÈZÃʺ3aq—#¥+bû:±}»q)™˜DOVÔØFžîœPP5Uæ‡B¿°v<}dUînqˆ&U¼¯óž‰÷qH±áùžHb™?³Ã×:~m±ÓF6Ñå4Î*ʬËÛlþK{•ô6‘Dá{~EÓRœt-]å>2ƒ„æ€Mæ‚4 +Æ †dìÄ¿Ÿ·ÕÖ‹Óš Ävw-ï}ï[¢ï_#;²ÿŸC_´¨âݦÈ3Mu°¨«ê}³Ãñsõøqߨ_àùJô,÷|¶­Y,Ì$³†—°9¾¼ÊáÎX¬òwú©«¨6újÃb½2tU?¬xL¼ùÛâ +‰ Õ­€A/YKÑDÕXN8‰J-¼ÔUÄ83S&žKñÕ–™dj`ܱäAÄÆŠÔ&Z†x™’ä´±)ðšhQY·*eÌ’ÒŽˆ¥Ð´z 4 ðœM3Œ#Nü˜73 õ=lAŠcf¹™ÆDŽqÒ úÿqh,sÿ¡ÛlÙÄ"‚°"±á öUï¡BL¶¢]Æ‹ùÔtŒÈÀ€ †è^‡˜»ó Þª¿ŽPí˜x !é åJN(Æ3=Ç¢Wà{ù”šnj8ãÓqVÚGgm…×M„©z‹Å¡QM>5üŒjU4’"ü$3±5 lMpò±YAšÅ»aŠI\”xòY<ÚëÙ‹YÞÿϸéwÊŒ‹§2t‘í0®„ì «¸fâÊZÇ„ºO]…'P(ø¦½tΪýÝÙÕ›ëVÝδg ø p1VûŽÐ5–rÍ¥z +Šçv<ž+¶Ìf:ÖñTþ‰;Ãåø!.ñ'€t‡(‡MþA à=>Ñ3—h.ääº!"̳Æh£B<Îl^ÕFר=+s0†?¶s1j8’›ÓôWH,ðÈÛå…÷uá±¼ê V\cÅQ1f„B¯Å½“Ò¿¢Ú"ñ˜)§§iR„„v ‹Úð×4¸Õ´Lõp5ή¶=qã÷‡`Âw¯Åwë<>/Ä7k^º¡y¡qá³~Y6¦Ñ¹ôücöVvÖ¿ì·jO÷ý—µ*•ížÝÜ>ǵFF;’¼½šYŒýŠÊoêÀŒ¢ý Ò„c‘fyt³¡¶Ç0™Ó€ +pǨmC¿ʾåëÀGÁÌäfK* –oêxá¤ÉŠ ”þŽ—uBùôÖ +ÀŒ1HÛ +’Dú©¨1·Ê)/[bòÞëÜzÕÊ«_½ûÍ®<¥xS¨ûj Cp=û"­…¥äôLAû<5´Ý¬Æè,Z%©ŸEí |)ŠöES­OÙºY‹Þ`dT%ì±aJÎÃGÒ‡^hõz-×zá û ¨„‰~ÏqâANœ”y*‚¨®-Iô ’l‹Æªlzü‡ÝǾY>2¯XàTÃÿWÜÀ ˜¢O‘AÉe&cีT¢ç*¹fD Œ+Ák?›PÂdÅ 3ãSc^\¦d1:ú «„Æò„åÚxýð -oDËœB½Œ²Ž°{–›ø[›/“bV³[äYÞŸ%¨\2»KšÚŸjR´õ´h›Ñ&Ûc|¾ÉSô¨èË |³\@ºE¦}ÇL¹æ1w¹#[ÃÎÛf¿Ëå8ݺèá„8èiã¶0ù™>G$9²‹¡ít?°5¶Z8/˜ï8‰¸ß™²û™2>œ£Û†‡¯ÿlðÇ;D!ÅŸ>4MG—¹Pã&2lÕ”o3É`oq…ÂLŠ}{AlŠ¶&"˸fÖœp~iu%Tc ¨Œ3¿;zBÇ‹8š´Ãí@ •^J²5–¹³Ñ¡TF8óçШ_:Tð] Ëb°™%#ß—Ê–|ƒ*dÞ“/©Žé¢³õÓÖ«2•4²Åg*šÇš¨?pâ{t8°Šc§>‡p W»Vï +«]6½¢›nŸ[•¦íu³¢q.Ћú½¢È´¢©Æï­„é7ÑÍå`uDAœFTk‹àqÇ®È\LU‰ï#ÚL—¹#ªËåËí‡fÔÑnIGOMªu¿¸Tï™(qwš†è2Ÿ‘×¼ãê/Í3€e$ ¬1 XX?#üº+î¸9ê#ÛŇ‘®ÖÕ»…Œöº¾Ð¾ÖÕ0øi ­û"{är hº¢måràÈŽ°¬j·$aDhÌ}"ŽATÌXöšº%Ò¹P¬RÊ\lå̂ ü…“Œ¸·q=Þò +à@¸ÎýØh]ø K†Z=²Ýƒ'cuÒ*¼QeYÙãM^@Õﯪ|%¶Àöƒ(åþîìêÍu«îgWïõ? ¹êý-qœèm”üfcze[È”Öå[`n³ŒÃßÐ àÁá¤Xë’3–?ó\{f+Xä\}»ièó“ÌÉ=¾oÅB"œovòä ½Jf™¿Øaɨ¨X£ Ë_I{’rˆRBµ—Ît’JR +9ñ,OBmÛدMC@¢Á•fb@iÁÑA—w1Ô– š3Û˜n½¾´©17ìUCw| ³FN„.÷Øtl&(¡lðÛ^4BÈÌÆO,*uô ¶0.\X~£‰”îøÒ¦ãñe­‡I¥¹ ;¨™§pØÿCkÎq&…Ó Õ²Z€”å{ +ãDü¸1ðƒFŽ+Šóíá ÅÊ% vû†Ÿ†¼V`°²TmOhÈzh4;ìÊtC|(&%~Ï,ýµaÝD4=ãºÇje¤x¹Ç;ö +ñÌUýzæÇ^(ÃPžDš*Ö +FôEyêGÓsv©ºÛ®rú Û­‹*¡#%‡áS]yÞÀl?¸Ï³œa'Ð*»¡HlüˆÇî«ëXÖþ¤™é-"V³óÃãB1<׈@ §â¶þb6?ĽǒôLEš©ˆÝËöÐXá6lz ó-ÏÿŸLA8­ +endstream +endobj +72 0 obj +<< +/Filter /FlateDecode +/Length 5619 +>> +stream +H‰¼WÙnÜF}×WÔc`R¬*V‘‚Ž• <°L¬ ãÁ@Öfy´¥[¶£¿Ÿ»ÔÊEMeŒAàt«Iïrî¹ç¾Ü>\]œœ>ˆï¾;üE¾9y¼ûü ¾ÿþ‡£Wâà‡ãƒF4µ6þ߶Fl/z׈ËÝÁá±úw#”8¾8pu7À]m…R¦6½í…¶µµn¸9Ø8yüéàÇãƒß©À¡—ðïøÍáßnqtwðƒÃw÷'·Û“ÛK±9¿­~úA¾}õúÎiÊx¾ö?ˆâ@Ž}M­ŒÇ_!¾K¥h:Ý×Ã08 矛TªÖbó +ÝÔNl¶ø|žHíjƒZÈes.»Z‰Í%ÜfêVlåàð‡Z¼–UWwbs!à Õã³¥«xFœÊoºƒ3à¨[©þlñÍÂÜó ®àq +a'NÄo²¢3~7t*¼2]—U‹o„Øü¼’pƒM¯pƒÅ£Ïee|rjÈr„“´Æ#oñ‹i)üx1“½Ôôõ¬èe't‡Åg+ÝqZpìøPxâR\`-)0ø„g·b¦Ìé8eñKÊ +;cË45=`à ++x-~‡G©/ñZ/6o…ü×ñß#ޞĖʰ©6F/HAõ39|ãG —9Uˆí3ÄD=¾–Xš3‘‚ÌšH5¹ÎÓå-|Ñø`Ö+ž†²“C?F8­4VçL¤~Ìtõ/€ +±¬³êÃm +£Ëçø4ü|/ gÚ!˜®ã03pÓWi¨çç’BÜ⽕T†txèñú%ÞJÇ_ šS•¡a뱕çïò9U4zWñ\@DG³•‡•=_¨¶¶¨Å´˜³8ÃLü¡¢®Ÿ®‡—.¨«@–… Ze],¨LÆ”Omò£ë¦ï–€Û@å†Á2pI³»ñÓJD4ÕS©,áN¨iœÅYF–•‰ªODeǘZ¨'GÅ$ +å ‡ j™5=kd31àsY¡b ›bvVcF;òø8’†û«lé¼­§á½ó´ºÜˆºL9Äeâk¨ë™·å‘§Ðã®·‘mžó€²Šm‰—Æ-àÅõE$º3,˜É&ÉÓ<ï +ý€Ù9?qS&º*èÏQ“û¹â/VJ…l¹iwr ؈Pˆ1Ñy¦) –0_)šäÝ⎎Ýöo¢8EZe«Ãé{œ xø >žÊ¿õ|Øå4æùŒ‡ca>À¦Á÷=ΰý­joy§¸\*»Lp Q®UD„ÓÕ´-uë '¸’ ³yž€Ñ{ŸèÝ$z«.PcâŠë·ÍÐ9–g~Ká«_œImêÑrïÖð¬ù5ßóË À"xxÆ(–Z<£.kjsÅšæ®ç†è¬!z¨[k7ÄJŽª–Ñ©ÀF-†ÑÖô¡1øs]›ýJ¤t#{Ãú€ÒÂüè^è‹öº¡¦¶|Åw1(**ˇŠÚ çMdì;ÞŸeà@°ý"ažZ<[ù¸¾D]Q¢ä°/ È…/½/T¨cf¡8`ÄzÄ]ÉŽ’'ÒyÜÎ ½ ,!i +™hçÉHÎpÙ'¢æNÒ}ÀóáþO縦I¯Un¬/†O.vÿÿm¤Ý‹‘:X¦L¨œðâo³Åchñ—HéAĵeï¼hyÆÈõåF]²ž ¾jAôÅ‹•"‘y„iáDN™³âŽ +|HŸ¡²svzEWîf ]Xh^x/"}Gt}¾Q¨en3@LåN…Ø»ôsÔàÇÜR˜þ¥8ÿäÑž¢È‡èÎAûM¯»˜ößKå5+\º`qÎL—€¾O–ÐK:|ÉÈäÀ£4€÷ëÁ4¬p +9’Ö;×”8mû% öP¨Ô4´Ìf°zìÅIXË7Tƒ_¢d%Uò„àp‚ª°N<pÄiAhêr²–Œ½Âa´9 +ÂPkš 3±Ø±¶Ð…!yÙå×¼‰ø +Òåy‘]‹o=ódF2¸Ë¹¨ +–7þÌh|¢¤hBÌÆë…žW²ÁÐýÅ5œ?[¥ËÑž¹] _§ÖÀ7Ã×3à«GÆeÉèZ/:Â7ÖVI™OÑÕð + ",¨Îq1ØG¶~¦v5®SS }ŠÈܨŽÝ +5l†éçé8È4xãÒ1£ÞŠI$¼åÇ:<6¥²ÏZeC{ó~#-aÿ«djù˜N÷‹‰çñãú5íL‰µÛÁð¹A=@Õ6X™¡ @¨h“°ùŒxS"ánYŒX^FD34y—ÁÞ&…5fXåGÖ´ˆ¦#_Òx°lŒ²òë}µKEÅ@&¦2LHa9zž +Ì0ƾî?x5^º³FÛä´2ƒÕó»)….¦ü¼m»ƒbuTèž™zÀç#a'Óè=0Îæ½ô˜2ĺaDxÝ?Cí +›k[™…×Xã[”0€ÂÒByÞ Z½E×e)%-¥Õˆ˜ðØoü†Ã?ƒAÓ41P’Æ¥À1¼Ð‚–¬øòÇØl†M1µ´MßKÙ’ÿ¬ŸQ[W7ž.ãê&Ðâ7àÀBmí¨‰øÛ‡|£ r…†ONÚž>»8L]Ή!ˆŠ†(ìúSàG´oŽ¦ËÍß0ñ*5»­3ƒR˜›iŽx+«ˆkï 'OD”á2U~Vh|?øyâ8£éYOÐ +(†÷›¸õZ;4E9¦Š°Ö°|>¿ëAå2PÁé¶K#½h#¬žpzf Ëú,QýlÕ<…Ãôt…Õ¶^¥vžt{n¯?¾Ò]“~›M6ú=ö^ÓƳ~ 8wÌ#"Ó9‘í%#5½8±#öQ‰mÖ ¥IëÛÝ.ŽäK,²ÎGof$¤^1’nAP/c°Ï€U7íªš…¤GÕ__d£Ê|+šHLÝÄÄ;§°0uæebMy@Ié2w8äŽa1bO+#Éé`NÚŒÉð(;¯X+¤É©™ž–•ñôÁC“ N,n>¬l_!&@‡e½Üø +ê  "s\^ÌEaµTÛ$dÖãªÓÕ’Ci{‡Ó+kDÒ}0¼íŒ7Ù̆SNäªé[$~=ãEDR‘aýx%ž,8?ü–8;°øw–×^5°  ç÷ûžÖv™¶oq+õOúš#Y“\%ŸùWx»Ïyû¯˜Üˆ^òêáÎPII°Ëv¤Í •©Þå{¿TC{w¾]§ƒÂÎwÏÐAë;©GKjÌÞ¨µ­ÉuÒ„‰¦¹>Cë‰ÓŠ!¹¥9Ï ‹xAs8♿&)˨,+öÉ8ì{I ¬F4àéDŠ'QDãsCšRºD1‘BHP´ GÜã$÷P ¬Ïý^í ˜úH|WM´zEè“÷H9ÄÙ°LŸ,3ˆ«Õ²|¦ì®3Ý6¿÷v¼v;,Nfón¨õò¬qÿ«¬á꧿ýœ$п…Å#6¿¬Ç‘[CfˆžAf] Ña ¢M“iëwÒôdLj•_ã…ÏW¢™’…ŸUÙR²}ÿ»tz–âÛÂÑl¹Œ—œ-}ߧƒ›ƒ_Bð´#£E³÷¸°àlþ:(Ç–à\e&8…àC é4#©Öx–ÌJ&p,o‚Ëe)6FïN ãr†YÉ~DmK¦Ì€çK’ú3N dt¹Ó|]xíu!W‹OŒ[NÓîî¼V ŸhÙËjBÎ qD93aRñAÆað\^¼ü—÷jiŽâÂEG¦Ê»5£Ñ¼Ž$$UœTR¹pÁ`Œƒ Î:„ðï£~¨Õ’F»³ •“×»3ztý=¤xËoÏÔ´üÅ]äÞ±EÅ¡¦Ó£$ý›u‚wŸrø¸„W`lÍÓºõªÌåvÈ,™o·S 3“UÎý ›ttâOËÑ C[›÷\ŒÔ´ƒM@I QÃ×}ä‚;…%Üì“4ÉN¡«%ëK-„¸,„ÌGtIŒþ\ UKÏÚ¨™GÔ4£$±0öT–Ûœ‰Ù+¨²lFœMé««EÃÞ.ÊwG‚w44ó Â).äEñ€µ?A¤c3ÂØÌ“éî]í–„÷^‰Fb õ®â•jÔ¥êÞ€L19sÏ…z=Ç=ã2_ÃZRíà˜‰¥Ì:ÙzÇ@§)á‘( x®Aýú™x¨ u™¢’²­8Jÿ2ÉÜÇí0é7? ‘íÁovçµs ‚0!ÁTÿ”J0bd +ž‰HD\ÉÞÃ#öþ£wµ%Q¥Ñ5@¯Ùùÿ®¼Ñƒ¥¢É ²+Æ ßºXÓ_Dõ¨|[àoÐPª |L[ðœ#·sÊvœæp¯ýkFÔ"¯d[E÷³½ÛsÆMÞͦ-ïGŸd{c§^¥ ™Ž5ÑðàÑï@Q’©à½;q­¡ú1¸ÇØ>NÌؔ͜ÀT†iŠñ¢p¬$_' ™G^¿†;öúx5e*¸D¥ùzg÷çxÖô01÷pß>it&ƒ¬×¼e¢ªƒv¥å”±£¾¨bmF̲A(5Z¶ åÒ& ¤³¶F?ìÈç×\‚Ò‚a.4XŸÎÒlÈÔ$¿3Öpb×qâNt7Y0ƒOEÉkü”&â²$¨ +Þ×ÇÜö½äX 1œZŒ-×¾6¶%—çï÷ýPÄÁ¢åPÅ>šr„džxTS½Î5Ub[ÉvD è>âÌn'íHáÏ7ƒuéÒLÛö5D9§Å +±z ÑyØi?«Öq?Qž‘,᫈#BÞyùU+ˆBCrÉšõ_æ¨Ì¿žü>™|‹neÓz¿6dÊ(E& ”$ñj Ò°‰ê"ªØ ÿ 4×j\ÃQ;l,¦P3ÁëWP„E|¬4+^n=z`(¦x3¦l.™c Tž×rI™ßö¥@FxÇÎá]3²_QÃûÑkŸù^‰ DX÷ “Xñ¼`ç„«DFîÁqv‰ûß NU\¨by‰Z.84ÄzÙ’®ˆ¸±(NÌV`äýæ_`ë§ð›ßð’ë¸7?úà«ù^ão®µ¥í‰Ù̇ g"ÌŽÛÕg€jç  Ù ÀM·jp‚oqaôBë”…6ÒÛoì5†œk†U—±•k@µ0ïrÜ‘O¾®™ÐÆa£þ6– ”mžC;ðXÑky§…Òæ×yaìä´oÜ kÀ[˜'m¬Ô³f‡nÿVÊ2geSÁ„_$tqDÜ–PÖZeÑOÞ¼Ç/ö|æÁ³g—\û[ˆQ¤Úš7K´ˆÑ1mR¢ÈÙõ֔﮸œ3†¦ÇORµ¡/‹ôg¨®ÿû¢égd¬õó†”ÿ{ÓÆ%2\Á# öÛ{?$ƺõ€ÖÍx♺ÿ3çTŒÿ¡°Ÿ,Ô¬v¦9e2Ón”MP–b‚ˆØ?Õ»÷‘¢É{Ê‘917͘­–j'Ó€°-cõˆuKr&Q„ܲçGø +AtÖNîXoát'…jd¡šÖsDÊp'„Êßòò ‚s *,Ñùhn4 ¡D…òš7ÊÍÑoÞ²k‰¥èq…/ÈøÔg¸²¿ÇƒBY竵ÆÐÐ!¦' rvár ,{tG°PŸØïHäNš¶Ñ•6îW@¯¿ÃOÉAàt«ŽBFÍ%é‚™´3z?¥!§«…œnX”Uéí>\s½2SZ ¯H̾ȷ½Kú–+þ,!âãÛ£?ÖuhLÇ P@cˆÀVÝ¡e狾5…_t-k•Þ©Ò£ßøÕ“Æ¡o»ÍÞxlFÔ WÍÈ™Sä,K 9nPÆS!Ú¨z€gÛ±Zž˜¸©´ïÿ W ùà½y ûFI…xi³…õ){¾‡ *|R;îÈk›ð5ùÚ?z½–×pT†DÉê™Ï\¢…ybá€QD‘ébiáÂÀaüý®ä’Ë„2œœ0¹3 ¶¤›sû"ó"Ýk1] õXÚ?(Èá9êI“ãî£)Ì‹‘ù?:&O‹ôy±Bs°îs¾³x¯‡·½VÖ³\Ï4xú{>=ÐKÏÎj†£Ïè§C©2 %{ 6Z³ŽZ£Ã9ÀèÛvC¤é|à¦V O& &ÎÀñ馌5ëÝãk£i¦›’øˆ‡nÝ1{Û åõ½kèèŸÈ›ÜC)¹ñïÛ´ÂÒ¿%Ú–½jèg7±émáɼÛP™Éc D¼¤)£7¿C|'§É³ÛGbAeÐÙo•"å@¹Ißÿ`C¶èÕ +endstream +endobj +73 0 obj +[179 0 R 180 0 R] +endobj +74 0 obj +<< +/Filter /FlateDecode +/Length 5911 +>> +stream +H‰¼WioGý®_Ñ9€IMÓ3|d /ìxwM ‹@Öe­)Ñ¡$;ú÷[W_sˆ”,‡Ô°»§«êÕ{¯ŽŸïî®.NNïÔO?¿WÇoO¶÷wêçŸ_¼z©Ž^¬jU¯ŒmàÿÎYµ»<:~ý¡V—·GÇký{­´Z_ùU à¿vÕ(×·«Î;¯L³j ®mµþïÑ/ë£_ÞÁ©À¡—ðoýöøo×µzµ=úçÑñ‡/'7x‡·'7—jq~³|ý¢:~÷òÍ+ek]ÞGák?ãEt¸ˆæ‹,ëU]µ>Uòå›Òõªã-Fuͪ¶½S­éàç¶Ç«ý{ÑT°¦Q‹Uµ4¿ø¢ê×jéVðå¤røô®ZBœjqµ½9©hÆÖ=ãÕ»ójÙÀ«—Ü¢çu°BãwursÆË®n*¿rp-‡'»ÊâY7ø7ÿ–üüzåÕâ6ô³Æ q?mÚî`½ú·_ðó]…K¯qüu{´Z|ÃXÚÔàãÏÕÖÕz´2&«Ìñz]§2h®`†‹à!Z§*h³²}í¹ +¯*C‰yUÙ/õ¯Êõß²Ò-ƱÃËr¼5Ç ë-ì8”¥ÁŸÏdÐP†v•ÖøyÑv”cøBÞbÀ˜d<ÃPÒ ¥çªâ•[8ÔÒ††ßµ„{/6ê7ØØâ“çRŒw궢z}Ê—âý±./¾QÏÕiÕáÃ-é¦âŸÎ0V‹µä{bñ=Çä󘮚¸3Ôãë®+ ¿Tè–ßÙà¯W1I1tMY=åÀÎÕ7º§—Pq)<ø¤ÒWˆ­ÇÕ)qñ|Â|‘…ƒ¡d‹&GðŒÓÔukl…ʹåÑW¸ìFµ÷³ õ=¤;‚tƒê°2-Fw‰‰¢l3žn±®z +£ÉaºÔ+G\HÒ›,éXi“¥6UÐà ³žÜãϼ+B&îÞC²`6¸©ø3k’¥îY*KƒG¤– Q*¾â6€ËÉ¡ðû]†ÓøéÎámNö$h„§É[¦b0ø÷1*cùó—5ç‹¿\ヷ êf?¨ Ì4êj@{‡‚ÚOƒÚ¶í<¨;»ê{¸ú[e)A[ o'Eù q¨ $ã&ž˜î¸ÃJ#3ël²5~Cšò¸ÀáHš¤}Xw âðûå£ì”€¯ñ@ÚHWù‚–"Yj#Úø*”Eÿ’6“’þ-Ô°°:Y‹Û§º3 F¼WË_w«²þ"P¢fÙûG;É4-m²BŒ~Ïû>Ãt¨†½ÁLJC°Í!¸jý¼ {ÅŠ°øŽ¾b‘ñ‚Èœüð`‡Ñ‹’âë¤ôÂ{RlªúÞW Š•¼â¥”xàtø£*Œ.g=†v^ñE Â.àÛ +¾¦Knäl†™’<¨JÖI¿Ô´ç{q°xdï"ô§foR NS6sgªÃ¡Ù=Aòsp>AòûÉ7ý|4ª(ù©—Y†ŒÚ)¾«HX·ê‹,ÝqÒd¨K¶UáùÔe䈀ÄIJ²Ö°.–ŒÇòèšÞó,7“p3Ï#Žl0¦Ïª˜¹Ñç'nôš™óм/F*âóî×s}HŒ˜¬R¬Œ·€\É2ÑÈÛ"lŸZX]"Êéy$9M8‘ýít¨³nQf»˜ˆ[Ü©‹Ú|›X?&[H‡&¤¦1#è×ðàDäem⼎i¨˜76c O±ܪçF"Š/¸ÏHœÐæ­Tf²P¢Ì+òãLÑXá¥U6‘E“Ž” PE¾0™æô)¬ß¥¡1º£@”rV ÛXµ±ØMÓ. ^³:±z’fýªî#Èú•ƒ+8p…ÎÁK½ü6–¨9”jlecÀDï¢éÆ®·ƒ—ß zDr£>lcý“ÓNRý|sš6›ìYWKKÀRi¨Ûãe”úo©IF"?~WôU.ï“F(Èû¤\ šûÈ™¬'¼£ÃH ¦³ÖZ=T¦ÏGMãÄ8…ð +ðqÞ +m¯‰õ¦]61ÿ¨I¶ìa²EɯJj·ÏW>­¿\¼ãµþÝ(€ÞÅCÐ×1øL_ •î¼€¯ÁÄÐ;±8pS-[¼éªòÿÖ¢R¿âœCÜâ8Z#4f¹K¾ÿÉFÖoð‰c•#+/áZñÄ+2p•áȉ‘ªžÖŒM‘“u-) Œà93zØ”M˜ñ½å¼¼ƒ;•M&>lII\˜¾ +š±P¢[õI¾T–LkÔbõÃG¼48…æme„йwÚó•`¦žt_£òñ[MüºŠ-üxQOßf¶kdT"?<;ØSº'ÍÖR7@.Œœ´¼‘¾4Ì8ÃÌ—Ò–CÊõà¬7¦˃å¬Í†Vö3ˆm!ÔˆØ!ƒL'j1Ã×T*‹_ YÓ ¼Tä)P¢"§Cqµç,RùŒ¨SKI—Àjã¡Ø{i Ÿ®[à(U™ý%%12 ºk$]t®±,*˜‡ÁÒòÆBfI 0bzÀ:¼S~¦€•3õ™28y‘ŠÅ£[N˜DÌ”–U†F˜q:g´OÖÃFlwb3L=±£Y×Ì@ÖçEÈ&*%òÚqŸ!B Ö%»Ç$[1À^ã83Œó«P·’x0r,àÃBúhÃg­”Šù(^:Fk–¢ôTÜÀÄŒ6ç^WL,-~JZvÛ9ÚêJÚfsIÔ+6g•£I÷ž;aJŠð ZãkW„ê>Elj7!|åÄdò5Q°ƒa ÌU°eëf ç·ª 掘‰“ É›‘ƒJ5å‹âìÈ#À8PôÜ-ynxw—mUCT‰°eæþi`º¤¥: ½´¥ 2lºXÒ@ç «jï-š–5C?Å`%{z0^}* ©ŸUÛ0v T™µÖµØ¦ŽÛ”yä^ô)h¾§IÐA KŸc6aéÛªm1¨ßTÑÅn«µƒ‰‡Ýî©Lµ“5s<â™Íx8ž(àïïQàÍÿÀÍÁÑ6yxÙ <tìãJ=ëË£8È r„žÐòØ|ª7«ÅDúï°{=îôÃaÑÈ5¾Fƒ-°xéQ‹÷Hʘ-)ï’ÆÒ7˜:ø|)(œi. ø©1®lÞèÓ’nŠŠ¡¤ŠŸÉþÔ sK –Ñ)½K9 +¦ó~@t‡gΣóð$"÷süÖ~ks~ûî qÃhè+….Ww€FæÈz‚Fö'èÜ pG‡/ÀýŽR^²¹Ïž%rªµ™!ÉšÉ;¡øn†âÛÅwÒ¤j·L!iHÓ&»ÆFtÆнŸ©YVE…ÓEëð¢ i½Ñ9D†ÖÅÑH¼œóïÒ”…9"ˆf0†¥,SÊa&1e(i= šîå¬Ø-"ű¹Õß’Ra©ˆøîæìŠÄê7Ö®+ÀŒbÌ»ˆ®=” X”~›*Á$¡Ü«>ÂJ¥ÞþÔb´BšÇnÿ·pd4Z…8Û(”†Gˆ 8Q;ï¾åN~ë“AóêGøϵ§‘Inˆ&( E3”;%.%ºúæLý¢Õœí(96g— ýë› …ÃvëÔîÎc×YCí¶P:̪JŒºÝ ñ‘@Û›ï[E ‹ó~}~×âÀmü³/üÊßè†^½‡ÿÀh?5Pèkþ;xŒïèéã~ú¥#äú˜DG¡Y¬®—ÎêuÖQ¹:.•6˃a&ofû‘ +%ÄMË^J üQ#ž…-&â +#õ\xN„ÄÇb2ê皈Q…¨Ø­P±tÛp íÈzD‚Â8µOáø8ßÓ%a8×~ÿîsCG…¯¯š;Øxjì2¶¾£s"Y k]•Ï>•Îi—H¢SLN,ͳ×K¶Ž¥-¦BÝ6êÅÝKNfJÍ´¼Áç¼<Á/i<«Dh¢F–A½u¬·nMoK[ÎËD„hEKvÕÌÅ­ÐûÀÁ~'X`£q„¿¬õ° º4„5ÆûxTk®|Ú¶q‰Q`WCäáÔ8QÞ¤W±°B"-–ç ÊD'|ðï+AŸÉH–Œ9à]œ¤§PìjÕ¤TžtlRÕ +4=ôšGƒ¡n^Ž°d¹G°ÜeÍþÍqôÍ¿ZKóÉÞ{ÌÐ-C„Ÿp;# #öyÛj4׌ŒÕ`‘Ú¶/pH`×Í;–ÏÏ-òæ'?%FÔbÉ3’›þŽT]„IFjðL¹Œ…Új +ø¾Ý nãÜòhÅ…&á@êEª¯ ¦ó“`rÖÚ‘&$4*\Œ}†°͇փÜG7…Rö};à€þ$åôíì^þ¢Æp/™ü+=° æ!òxˆª.ûçW­5dJ6–¨–icÝ·¿ø¹m{}š +ö2êy«ëÑÕ£¿Lg¼.tþ1ùaŠMí÷2¥®˜Îmu7hÙ–WMS½ªÉ=n碀¹#²­}ëlD xdìI‚dኼÛ¿{Oâš9CqòÔ=ÛTjÿ5éÄ ™Õ±³œØX,)´Àþ„ûS„x³=)|ö™é÷þE{ãæý¯/Ôþú›7ÿÐ5ׇoÞ¼Ó¿d±j5aO¦fòõ²£k´í·£qŠôßxó×Ú¦H«V¥ÏWûêU]~3hls WRx¥³³p£­Ç|öUç몜Ív‡é÷¼$XiNæ<‹“ôoÉo0ßÞyâϹ9â&^"Cáf–ÉðbU¢jÜÂý@(¹ߑAJQ4© Ù“@Ðÿ‚Jš$TS2&ÏŽÍÕŽŠBx‹±ÄÎ7³¹õjþÖWˆØs,LiŠž«NPU=‚®ÕÇó…ZJïK±:U8¤‡ÉMkò[Y Ìê(¥XØ/öml†y»c)3[ômb’è34¢’ƒ&­yŽûNsëeÈz­­5_þ¥m=NÍ|ó¤§ÜýÏIIÏKz³Uë“ž=!é zÅîeÒ{ ¹Ä-ÀnÁ9Æò&Ô-½±Jò› ,3Ðe¨$Øœí¢’e¬72ë…ñ +P쉫™_aà熯òs¥:fvóNÈÛRmL~ÌÒW°øºÆTŸ³~.dØó÷À^‹µÂ¢¯“R™¸p>÷a™E½¹%»v@±íOÛ¯SQË:ÖhèŒCq™Pú^ZɈ-„% ^a$8®ÓÅZe\N?ݶ†çÃÀ½5óÐ0kqfêQQ“% NPÌi8W×+áõQVÐI P½ ˜%ʵ¡ÂZ ?aTÈM0-2Å0I¨9I|]èÈ©qä| ü‡CÖAÇ@µ¤›-TÆ¢õçÍX¡`³˜!çîâÈ”Ò& t%¢©…?C X07ÛNuhÉùm9YANO_UqÓ0nû„ÝMOý\M-¨]7CžZžD\(vÏVJÔ*DB)-;FI䡹ˆsë×ÀoŸ÷¹Œÿ8ÑÈÑäx±¿^Jyˆ+ÏÊ< RÉ2²«3°±B¾)|\ñ3ÓZUC‰9õ”ètžc‡U öî9¥‰è(B…G¸ÙÆ è‘RçÆñð`;S¾¥éÿžU †7™œP$ +c—û+ˆ‡ŒüûÖd‰ rÞ¨ëÑÆÝ(íÅÄâæ'J²d’d— 8¾~4ÄD„gçN$Çþ‚&ª’(E‰Ï๰˜¶ 3Œ¹!©1Êò­ÀZ‰èÿgzhýha5rÍÜâ­Ÿ‡qŠqüJšSŸîØg43äÞ4táˆ4ù/.’›ËÚ–]Í€mØuÜrÇ]óêe& öê34„ŠO¹#ŸÎMM~,÷j‘ÿ $Û„štØÔÓlô4ÍM]ÀíìX°'ø:üžà]Ã|v­faëcD¡3¢¨FY¿Î`c/"±MžºŽ}Dê+ªIy”›U+ýŸïš莃qîœEÜgAjÚ4Ùä +/í–îËxTùH-¥›K\Ædæ1F·ðK÷ÐâmÖ½ÿ 03¥ +endstream +endobj +75 0 obj +<< +/BaseFont /SHLATI+Wingdings-Regular +/DescendantFonts 181 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 182 0 R +/Type /Font +>> +endobj +76 0 obj +<< +/Filter /FlateDecode +/Length 5565 +>> +stream +H‰¤WkoÛFý®_1=@Ds’@ÀqÈ®Ódkù°) +ÇŽµ¶ìÊN½ù÷{ó$)[FQ4JÈáÜ×¹çž{x´½[/ÏÎïÄóç‡ÄáÉÙÏëwâÅ‹—¯ŽÅìåbV‹ºÒ¦?­5b»š¾=­Åêvv¸P¿×B‰ÅræªÀmÕ¥Leº¦º©šÆÁ«ÙA'Ì^/f¯ßíÁ¥+øqrø檯®gÿ™žÞœmЇ“³ÍJ|ÛÌß¾”‡ïß½Æ5™?‡Ç:˜íÉf/”®+U7J˜ÖVÎu=š|^×µy‘Y}ЂË,ÄkC ƒk;»÷µm™HŽÿ‰TœÁ…¤®j¥Åâlò)%”qUíLaü¿Ÿ¤î+-6r®kq°–ÚUFÜI8Æá)¾½¿à xrÀy|°–ªƒ"\ÆîQ þûV|—ÚT8øèÛ+9·•Â;æüÍFlᯟÁ5ôÙJÎûªð±Âïðß +¯;—þ%ÚѾÿ[…çÁÓ7é»Güà à¾gâ.nÑM~qN|à¨ÃW·âŽ\vè—«z0'ÞQTÊ[ì9e :BÛ’ýž 61q:8ÖL9F`rÞ{)Ž¥jñÕµÔ:ÆêòXÃÕ!ŸÁ—ZL°ümñ¯ý ÕeК#~úøqй?à£BKEÑ} +ÓHqdþ©ÁôQÚžSÖ%žôÐ$Èb4Pz™_éÌ>°*cS%Á/Ȧ} nªÇ×7x3ün!Û†ýòçBK|•ìÃÏ1:ø®5¶?Ð&c¯Ç÷)Y¡ 3ä$þº"à1_(JQ‘ŽÎ§ƒq…uâ>!Ô2Ê-I¸óEŠ^εЭ$Bû*›7ÎþØêsÚªjmw@Ë"´0ó +£ü ²Ú0Ø-¬Œ8•ÌTn³S¨Uú·§^·ÊîÚBlðï¯Aæè¦A£G Àz„YJÉRº¢(Ü%U6©ì¡ã¡ªp5ܶ˜b]2$WžípÑ“-?¹"âì1¶Q{Aâ(¨Uè’íel¥2Op{r‘ÐÅó‡n¹GŒÀC¾á<Áß®ö‡C[Sl +FÃo€Bj_¨†CŠ|htäŽÓé0ã*^HScH?¤¶a>4øê'Å„…åJ;®4MLj£04?öFÚ”žfu!šBÞ—Tßdd-aÈàÕþÙTesunGFk°í¬Ïè9ï|¦¨k 즈_‘-¶0¢&<&UíUΫqÂ*•ÝEèfz@gwŸºùV¤~0ÄÁ?Å×ooBç%~Žy—Àßøµ™š†v¤«Âi*$52ãáÎZõ`„#È‹£±Hªƒžãµp&že_‡LOtž4€nÙ¨/*Þ£W®ðÊãz˜èÁ|¯„ÏA…× †KÀD½ÝÈy)i%DpmP¦BõsÙR%Z_מëÊIÀìØ8Ùú‚ä\ÝÑÕ„EÍáÓãòþîi÷Ó á÷Xv\„9gKåk¸ LÀNSyÜ;æ±»b샮ô¡Ó¼ñœÎ‰û,›ÎS‹âÔ*òïæšg0Þ9ih‘¥]1L‰ýÿAÎöŽ)Ù0Sâ¥ÁL©Æxäï¹Ó´v(̹•G Ñ£û„¢ºW J¼¥\kÅ)ìyДW;䶤÷U鉧«>JŸK$Á8›‰Dƒ. Ѧ1÷Èš–è’ß•Ú XãìÇMLO¸¤·-ÄP‡/ç8ˤŸâA[Q,1A™Eu”ÉøýáÛLðÞ4¼Üàu…vHNÔa;W‡ ßdñæ¥÷*d\|í‡÷(Ä­µìˆRn…öŸ×ÒPá•´t¨\[/ùHú…—´ +‰ý ñ Sˆlÿbr :ˆeá\©áï¶ßÒüN¥I0]©a-û“åÈ«ŠQû{Œ±!» bÝspš´ú…ÏFRþVT&H”ÑO’{@µF 5@ÒqdŽå ËVÀòØöà1ic'¥ ï}OP‹mÅáBý΋Œ;£÷Šÿá!P€: íœâø>â”!îá.¥ßs,z{'i‚®%ÅyŽ!q D3"BH ¡'¯½ëÍÅzÃì±â7ëÿvO¾™~¶XF¿™j¿ï)f7dÌ;ÿôvÿätEr5熇^¥T»«ê€®Úš–³²À*e´ð Ùü’Ƴ]ç·4Õ1 *„áúŠÈÛdB9Ûp ëlÙ9#o£yìüˆ*³C~³^&F¢u•¤Èl&ã½ó5¯0G3fœ5;ß1f&øôî(­'_¯œT~QX šjó4óž ²à ]ß—ÛÕp¹ +P=(ÙSÏ‘‰ü¶çÈÆ–v¢+ªyO“­fºöÙÉåÇ'k¿£®¼Žû¦.¨I§3Aá“^¿ `Ëæ¾Kv²œ—¢ÜÍï¼\ÎÃüåÆf°½èç†Û<}AZ_}9ä%,D=ûe¼«¡©úEz£©xš0{áEt.{¬§Oi”°1š7ùš~ü„*!EÏ6× LéâÖ'#««Kdu»ØEÁŒw´L‡ ƒèÀÇÙ¶èØgïÈ=Í +Ãça¢Áø(>%ú…ÇðÓ¢#~±}d¤ÄŸnI3š|ܲØLz`¤%Ç4JÒdÎZ‡YFÜÊ.1ødéA±dÞ‰ŠsRŽPÏR•÷sHÔ„I1)Âàê&ÈÞL¤†½"C¼#AWdçœiYµ-8~ÎyM•ÛIj·2‰ËYŽ¢ý—³NgWOa³…¹±y5Ðui%ຣÎÓL yú7þ«³båj¦v—&P¤'U¾é꧶˜©SŸºüÓ)å¹ò+ÏeüØ7Ï¿øéH¥VM`6'“j7RË匣:æuŸ•õ`øf`±OxÊÚ5õ` fd¢=™ÀÑϲ'ÄVO 3S’\[’™q0;P 8±S)½£æW¹±ÙHÛRl}Ž€§"eB%pw>@M™Ws汬ÕÃ| ¢dä¥<¦¥Õ½ä¦ÿЖËɾ㠒²ÙÆ;Œ¤®%ñÿ$ïc¾ÀâyLG8Œ'Ä’+4!MC§“Ý{dVæ:ÅÙek>A¶D"(RŽ5™ØNì:v~Àç(%fÿ¿±™÷LÌü{-ý¼ ©ôºb|l©¡ž¶%{ø +AVLs$B#£#Ùó µRIp4ùl£çDapû¹Jâ< ³sô½ÇMœö X²RT¶Cƒí0A˜:éÑ®JyðrÕã|À4ûL½ ,O˜zî‘©§»Lìc×Û {¼¸^úDÄ싺-Píþa·¦n$iÁ'·“i_JÇKXÈz3DCiQ”R*)eÕ³ö×~Q+±}+²%tØ=Ÿ°[¯àU©#ß »©¼†­Za|#ÃÄ'*Þ&\…Š‹–EϾ"‘Ÿâä e*ؽ‡ –—Ó ‘£BiÉ»ì„#¸RîäyñoêsÉÞ•îöxVæ'<ßjçȶŠî‡àû1Úë:ÓxYK×ålMz'ib1ñþÂjh›˜²ÔQD›+ÿ¸ãŽÊ!z¼´FwüGsÝÅž ºœ3 á–É”n2gAôw¸Ñ?Nari¸;äúÅí#W?ç$ÒŽð$å}&&¸³¼XÊ…Þ9Õ§9eeü\¢£|AÀ–振Uhñ½ñÜ×»ñÁÖ¹L~+&­Ž÷Û ±ã¼âÆ~SŒ§+|ò븸¯üòñ +û]áÀÿ…”Ë *Uùœ®4h +ê ±]ÍßžÖbu;£0Œ­ié€ë«„Ì\CîÀûLuºê`© +ðœ©Ûì„©azC†O˜üŽ%Ð~×¢õ¾¶ø'¹L»:$3­zP7ÚæÆÑh<;̇3Ñ|v û]ÝãŸNåXø²ƒ’@ZcrûáD´ŸŽóáH4ŸŽ<¾m £Ú.ZØ©"õáD´žŽDëþH´žŽ,±øˆYño¬úÿy¯¶Ý¶‘$úž¯à£ D »yiòÑpœ¬±‰“µ °0p|‰µ‰ä¬lïlþ~ëTUóÒ"¥æÞ0ƒIf³«N:uÊ¢êO”Ç$Ët­­]oi4Ur½æø/QÌ–É—/þ¢/Éä%ùð%¨! +däàêáK¨ ÿ’îHKšèm¤ñGb‚ÃAGíl÷L—KxÆã¿{¨Ë&<ƒ‚ÔùèE>8!î¼àvÏL×*¨Ä9Q´_á¦æ™Jh÷žé„ºNˆ¾¦­éŒ3-n¾ãfÀ¶s$5j­Ú¹¦[^poO#\Zü-hñg:ÐX(úg"PÛ9µ\}/¶¢fMÚÁðšØ¢oéP‹>ÒF·•ý#˜…G‹ÇΑ0ýÀªÜÜ.Þœ¶VÅ ¬Šüó½ó¯—æwKw-1‹2Z¬–×ÉB?ý‘À¶¶†¼rfMB­÷ª”±¯9é"3EKoçË”ýà\ 9¹süN^æ”}Ÿ<°Çe C·Ãý쪮 +£«É:—YÝ…:©Ó´APïàÁrgñõã¹îf¯SÃNqìñ¢ÿx‹uŒ§_ +ã(ùxŸP>´×IäaI rK‰÷ó8ú’åÕž}hxG1š +H Ú»”ݸOóüLÌø_ÓÿZÕ€pI ŽëCA9ŒÏ¸¶¨.ˆtŸ†·³AQÏ@©‚©UÀ$/ØÞ.©x‘}þ€µÎ å,S U˜÷ûû“ã6Èj§iŒ4AÓ Ø6ê©>©\#n„ƒ>Vê½Çœpaø§^T °ŽÏõâC çÒ ™̈½Ehü %/Kc9ºÂQ˜Ý)•œ°¼Ö>x@óÖ¼9éGß Ñõ +YÔx– âþ‰îþÀzòÎñ¼Iù÷vYzh:ú¥ÇPAÊü•"jZ¼z‰×½Ä‘mViºYµ?ߊ¶¢6ßß´ñoÁŽ¯ä@ŽSfÌ«U‰Å’ÆzK—XsÅ©‹äñŠÔ¡â5K6ÓÇø¤šQY˜Î%¯_em.路©ì}·¤JHíJ¿?%﵊WÒ²ß}€) ôc‚À9)~ÏMò§TkÊûêvCå²øá.ºLE–…ej|™šý©Q§Û6µcÔ¡Ð:0Whr!`Œ¢êOÁÉÛK éövOîÛMÊ,}R.lÁb†øñ¤‘0 ³Ö0Ý¿¦ qË=n¹âVvw³µ éFQçƒl{fãðž"€×xZšæ¼¤Õ5Ö„f-éƒ TùÍS|¶eÅ>Ŷ$Dd‹ ‚ùÒ^¥FÎuI¥ÐIâ{ÆöŃ4Å=ÄKÜ’1ë=î(‡§VÄ,+gˆZÐ9 åî_Ë1•avåÌ2¢-ŸßRÆü”ás»ŠöžèmÚ{¾¥R²{EBã€]§|þ'8nzÉP4ôõ1¥Ã/gˆ¡›Sï×ÁÄZÑdy¯=z»’¬·~†«42Ê€†‰`õ{Þ'ÎF‡òÕF§òþð‘}I£']ïjhI¡BH^àw®î‚µ† +$(–:3ŠµÂ¿ÿ·òœ>§ow"BüÒ+hRƒ—7(A4øõL6ËlÐÏÓº%ÃJÃÛbáéHñUþ·J>ÑïòWüMú”Zæ5¬Ã5}o +'w)Ýh»)› X§E¦ñ>¶ÝÝ\w³:‰ Ëöäe²Ó•þP‰+9#ÛF6O<ÔÍžÛ,Þïg0q˜⺞»¹“ ŽŒMû_£Hôÿ¦É +™à‚xøL"óð…œ³‚vÊ +V#Võ(¸%P`Á Q¡ ƒ€}lBûÈe:–[ï HÜI¶WÕëÔÌqJfŸ¡kÑÚ1túNïh,Œ/­ÖW Øm°ƒco„Î%aV·¨ÇCšÏpN•ù8ÈUÓIæeª("Ϊ]£¥Uúý¬âáUáqéK?ËvfÑ{U?¼¾Ý§š»žø µ5BeT†:Óë´s:¼eÓ{©/Þ7W»PÝÄXµÝp«¬]þ¢ø2äw€ ²—e§¬Ÿ@½¦uíØc™E°G±ñÞÔßÈ×pI¬é÷ŠõMV‡ÍpØ@RšÁëøºäË‘²ø‹µPÐkÿLgs‘’Z 1Fjdî媫”§ý#ΰB òdo ŒBÆÓèa£‚G1X˜ú”Æã_Ìs ÃÅ«7¶•~’ú+Ðú^ô{1¯ßÍn¿¿Eå«aé¦A'ZÝ0;«^z-ø®õð³|Ýè²/VO¹/‡â]Ø h+O8x>‚VI8S¶¢Û¤µ¥n¤*î: +mÙsäFËWõØ,Ý­ø5£Þa4Ãi–ð2íW¾¦‹¸âA?pâ‘®öŒÉöÞn€3)Õòoqï÷šh¡Ê2 -ëH=ãÀÜjÜjݽŸkÈ‹ªÓ¶¯e·Q­uê„»•<ìÔ¿û#$:¿ääTM6 •´•ò*²å›ÛśӉþ’ñzi~· %w÷P4Àd¡ŸþH – ‰¡‰DÁP8š@þ> +endobj +78 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +79 0 obj +<< +/BaseFont /OBICPQ+MyriadPro-It +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 183 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 184 0 R +/Type /Font +/Widths [182 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +507 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 522 525 423 525 453 0 524 0 229 0 0 229 808 534 522 +0 0 318 373 313 526 0 0 0 441] +>> +endobj +80 0 obj +<< +/Filter /FlateDecode +/Length 5934 +>> +stream +H‰¼WÛn$·}×WðQÜ­&»Éî kË^$ð"ˆ-dâ I#yã]I­,ëïS^Š}ÑÌdÀðj¦‡M«N:çìÍîó‡›ÍÕgõõ×gUg?n^îŸ>«o¾ùöü;uòíÅI£šÚ¶þíºVínOÎÞþܨÛÇ“³ ó¯FuqsâëÀ}íT7öõà;¯¬«ó°àÓÉé¨/þ}òýÅÉ÷ï`×ÿÀ¦·ðÿÅg?|jÔùýÉßNÎ~~ØÜa ?nînÕéö®zû­>{÷ÝŸÏUgÇ2…Çþ†˜ˆá@ª¦n«.®Tøð¬LSüŠUƒ«›vìToø¹1´œ: kœ:­ueÆzT§­®¬:Uou5Ô=Ä¢+Wuz§a{¯N¯é¬ØéVVáéc|z§ ¾õ»Õðû‡Ïºòøà<‡]~צ¯;ÚÕâw¿÷øûNÃ?›Õ·ïï6šúÈѽ׭ÇãÞhØä?Óÿ¼øKÊòkm‘ѳ‹‹PÇ&dÎʜἙœ7cëvl<çí½öν1¾OÚ˜”¬ž²Ðb.¿Rô‹_úå +.é0¿Bø f¾ãñ˵®F¬ÊnþÞà“km; À øœ2„SJ íJw˜Ç¼‰¥eŸqwøù6«Ì€ÁþðïµzÑ–~‚}!§OpFx–Á5~UÚ¡ÆF·-Vâ%ì1Ý)¸‹µô‘.é0"ˆÐÒN– +¹ãë>Áßç)„XÇk‹çT† ôQíàVvvõp(ÞEåxµÇMèGÃ…‚§ù1mCÇÍXड¯üh  @‡ˆÞuk+¶ÆV6Ý2=œcókl1oÖcþRâ¡©â÷Œ;¥þj:7á»(#X@kꩦ ÷öž#04_”ÏxP÷¿ÁP§wøŠûþ1|€²ñeˆªõg5 |þžcTþm|å§ðüA3"Et>jÒ*ÐAÿ¨ì;~[ Û4Üb-øZå ΆöÓàÁ­DgàÜ 7bôßï±ã„¹¸2_'– ¶ìðýƒ1Ý€i º#0ÝÉ­ë¦s+€ÜÆÆ1¤Ë”9LÙîñÎXÿ?|Š\“YÓà×xÃã+ȯ³D`hÄf‹,½ø„‡0˜©Äé,5֧˭¶<ñ`hõ‹´ùÚâ о.pžÓ1÷„'܆Çb;åña1€[z`JV@iÀË=0 >ô÷ê•Ž]ìðèƒqäÁ‘¨ô8ò%ŽÚ•í=[àˆ[!ß5–˜: +ÕbŽëÐÚoE£u˜®kleJ{¨(<«æ©ga’û.bZUá&£˜ä\ˇØò‘"ÓœÌÚ¡`jXj!/MÈ%HÅØZ,î‰9;1èÒA„Ó—QƉ½ÜbÐu®·@k$oOÞhZÁZ¥ï|7IˆÏóžôÆáíK õà +$4ÍX!¹(Ï‘ÛwÅ´ð²+¤ïX’ ’$b”É‚îïò—4²¬nO¡@‡ô'vpù  +O’x:Å,¤‰’Þ>![‚;GÍ(Òó}7Y£nÅÍžcq¹ã6a«½g³œ ‡ÓüŠ:KC%Ó®@©3Â6ÌØcËÍôѯ-´iˆ‹U[ð¼wÝ£D?Êgí%/Ss äQãŠ$¯ÜJßÒ§¤ yW%ÖPËô/äsçñVäjµ—ÝçÄ>?ìplŒë³0Ãö…Ž¯º(qLhOé¡ü’‡J}² ‹¦Äi'õ@©pRä†Vœ{¯H©æ‰ã7©3¦>‚›Fä2%ö‚ÇŠ‘âÅäÍ 5’æ֓ΡÉtÅÜzÅ=5cgŽ%½:é lé –ö -¹ Ð~Ô|Óúp|tÍÄì¡f¹RMmKht0Ô\Æ;å"²L^¼DW8Ç·H£Ä(¸BÈlµçjØÜÌ€€o°kD¡¡3¹˜”&X?^+„Ísú=(õ$Šc¿¶*ú@ü¿f6ê¿Y˜ÊôæÀó! ðNRpO¬êÄR/ a›Eíý¢í(5·¥¦Ê ª¾Âº¢#!ÃxhLI*€—V\Ymm[`Î8Phwv—ø :gzXd2ê>ËîMœð{¥]áÑü|c‹0.+*%â\4ѤíƒÎÊ‘hû¨4"Î&ä¥ »ÌW`Z‰øÊÂ?7H‹Uò|°t$o&䧜ÒH¾tQì©·‚zOv’ª5ÑùË©vÔÔY&s +¶ªx2ë Wv¢ÅͼîHþ¢uG#µ>݈‘Î MõµñNu}#Äÿ…Nˆô™¦G€Ë²ËØ5lïe9?‹mÞ¸ÏévÁCÎ߈䔙$ gAd ó.Òì£8$Åí“^hSm˜ƒ«ÙƒÄ¹Î×É+x$wQ.gt;Á–Áy@Â(úkÞȸᬕ©ã-áTàg95Ç1P?a kWPÈ–Ê|‚ 6/ÚŽaþ#Ù.„ÁûŒmg¢p‹°¸Tn0sv}íåÓÊ´ÅÐ zhÿK|µõÖm#á÷ü +=–@ωD‘”Ø]H´(°ÙjAÑ…íÚiš›×®ëtýr.$‡’xÌ“´èKbëPÙo¾ ®Û?`{w‰é\9_¬¯0¦ÌjæÒ ¢‹ÒtÀhKEÐzb3 +€Œ˜`sBz݆Ţn,Ë"p—a¹˜ùû;]~?f~¼It¹Å¤Ñ‡ÒW~VfaÁhGÔÜ ´¹ ãPÁY89ûè‚æÂ`Œ"S<ì-ä#K€í1^ÄCf’Ø^±äg—‡QˆX9äuXbˆ %!êîà™Ú…`,3–’¹Roõ?{ç¥îJ:ZÞþ2èŽ|ÄÀ)?¿ÝÊïØ!ðF7gߪ¡ƒKhqÊáÝ·w°G¾Tµ0M!ñù U+=ˆtÚ /¤ÈÆI»²â¨9¹ö;‰´ áH8‡x´ôMbË–ÖÃñ¿lô(£?ÿ})I‘Š"WŽPݪòõ~-Õú€ñg¶ÉL¤•[Ú&öYXF+\\_f4 ãç}ï¼.° +>ýµíè¡Db_Cbø!{÷¼²´I0†Ir®'k+… +¹OÎÜùÍ}mÖÓ’’ã^B7šÒõ{Ú`⪥cD„öÌ#‘\”¤LF¢¼5—glð;¢¦~ÃØôÖë´ÃO—ª7W<ø8 ƒ‡·#ïÿWa½[ºhy3p]Ø›‘S'3v»Ìè’•0Ö|ÐŽœZj9÷¡T#ѯøÕzFYl¶å¡bG!HÞÀŒ’¼Î¥jâªh¼Óç’/"˜vhîÈ—Þ)ŠŠT´Èzè#>áFÏا>S#VóÝ8\ã*8²“péÉÒ¢¤lmHv¦äâF[@±z,òiiì»›¬N¼X¬]aõÆ‚â.†à Ç&;Ù²´$@‡:Ú Kªèð„@‡Ù-‚ÆØ…Î[Кrä¸)™y'2C˼™²ÝŸü+ý<{ã-®÷¢ªeÚ@àçús"ÖC@µ,ç\>Õóºc¦E*ÀŽJ[Ò`U*Í(Ìÿj×,­áN÷ìm6ékdÊ +cù-(¶—1¦™ÞÂ2 åÐí*™Í%3“Öe'†…H¸V†¶2â"btXÛ$Þ¤N‚¨#xW±§[W#>ÁÎüŽÕñA–D¡¨ˆ¾X½ @±„íÉ®™üMDê£éZ)0s"§‘SPCÇrŒØPˆûÜKº^– ’0½’0%L$Ä…„å™ ÕÕ}±û9®…žoQ0?ö‰¾žƒæ" ¢³ŸùX#|ëÃøž6l}zUQv–$=g-çÖ§äŽæÑ-èÛ#Võ£ÖZ…ákÉ­í€KT9_AUèê´Nëµ€ÜÚÒ½g¿ÿ¡´§®S–¤¾dLtÉ+E·Í¬o)¢êv‘µ@.Ù²íÇdJŒ:«WCö7j<1pÌ9´âaì¯Çýøs¢+rø5kz¢ÚfHùxjçÀ©_pàTAkß‹p‚™ƒ=œVi$™§ZÖÆM¾‚´‘FšªH¢­ccúkLX9(øè§5nAáÐ}w¢pr–uå×I¦¡a¯u´¸!äæ°4øõg…•Ë«"Ïa¹—!íî°”ü÷îü²»â)ĵgåŽmʨûÖÐCøhEÞ4´ O`ãäiqt¸W?V ¡žÈ3)8á\B[N:«FlÐ^Y4Aƒ²hqú. ú…r‡x? ×És˜CÖ”qj +¡R:ï“ÄqÞ@럟Éhïž+þ *üT ûì üþÿ6ü þ +OáÅrD +MÑ"$Ûõ +— ùSzÔŽqaøme¾“†ÿ9ôÜ”ÖeÑô•ËyhnÉåwÿ†yM¥-cˆöùª‹ý¯ _ÿ—šÐ×¾X—ô× 9NóÅÄÔž‚Gš¡"•ZæÁ>Û¡›b’Ò'à<Ò<Ò–x(çyÈx¸’9³š‹g%C_ЪÕ#Kôtß«™µ©b˜ÎâqÎ0Y8c åqÆ{°'d]N `€ÐðÝàÈM…ñ'ê¾’\Nr_^;{¦$§+Ô²s„}Иl Ã¬†Hºˆì«c´€Í UåGÕŽ£2Ô…%møט±»yùèñ7'}÷òöQè¢Àe ð!8˜«†žŸ*‡²zÛ2G?âÉmôðÃ-¯ô+¸3aa@•º‹O¾'ò–NÀ¦½ ¬8  \÷9¢Mjw€šø ,´ °èõH>)ñð†6ö,Uàéö€ÔÈ„9Â¥ÞC] +hoêT6Z×½†nÐÍÀÀº¢°ƒ%y=P__TCd%Ë<ižªˆZ½¶¾$}ÑÙTò^‚,MWŒû]$ O —“íqyŸÀߦù»1xxMãO±(ðÜXÄ;¯kÐO'åw4˶f…G¨÷ØÌ w躮öA<íü4f;ô„¸í—Õ-Uˆ±/šû?÷-j÷ø©þ ûôê‘Çéø.Ðòdg× &ˆÒ<ãrþ³ïûñËFS5ËøOM#/OMó©ú Ð<>=å{¾1ºÄqp¶xû0Ô™ “ÜËÇm‹ð2;àà;¤MÍáe&%´ÆŽ3Q+¼Ì-ôÊií0—!ŒwðKˆDž¼a H6o7ŒáÙ2|v+´c»DßòZò:ïà©Ù‚´.Ûùeëü’çjuiÞÙµƒ¼Q—ù%î%9‹d?ƒ3š€Û 4Ÿº€Áå˜Z@{hËSX@׸€ øf®MD¼þ‡Ï@]HÁ %5ñKˆFûúö\ c‘1|T fþEöêTŸKY¶,ÊSåYÂüZõ2“D¡irŒÏo”r.û Ti@@Ò–ƒ´uçY1f¾¶ÉŠ‘¸ŠŠ¸ÇerÅžËdyØЬGÿ þ·)y×ÜuˆDG¬M(ö½­ÉD$Õ-õüU¤Ô”2iØP;çQù[²aÙêø}ô„¡4 ZS KãšœŠÆ¶ÞmÑåºÀÁï}¡åG… ÃÖ ãŇ’cήjá~“³¦8«$ÁÒ‰‡ñÐSÙ81¦‚¹mFÊ\WàÑ»`-L‚@¶R/1h† +g³ï/²¥›özÓ会ÅGöB®0Ú¤LF<Àbe¥@Çs'0´ðzË$³™â€qò¸ÏÅ—ªÁœi1ÏÎlÆÒ.¡<"fgØðIJm¢½èÓ·à[¤Ðõ%߈Û-ù'›vôÙ®Ä?E_§:+r`3*}ßàKœ64c‹d˜˜á@:41™ëµç8:€\GÐÜ„¢˜æM·”GŒ:ؼ¨N6¡,6™Ó` Änð NyÚ¾håÿÕOÏ +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 5733 +>> +stream +H‰ÌWÛŽ·}߯àãÐô6Éf_C€¤µ 6‚Ø èÁ ‚ÕÞ´öÞ2;òZþúÔ…—b÷ôLœ‡@ÀÎhºI«Î9uêäÍzs{}~±Q_}uòwuòýùçÇOõúõÛÓwêèíÙQ­êÊ:›Æ©õÍÑÉ·?ÕêæùèäÌü»VF]­êª¶V]¨ðåEµUkà_WyeŒ«\ï{e}å} kîŽM­Ï~9úúìèëà¤ÿÀA¸×Âöø¿ïO¾¹¯ÕéãÑ?ŽN~z:À¿?¸QÇW«oßê“Þ}wªšÁˆhOÞÙTÞo @el]™ÚÕÙ¾†¡Å8¾ªëÚ½‘ì<ËŠ³Ò¶ñv£mûfñ¶®L¸Â+üŠ™6œé³x§Ê@àJÆð[F×VuëŠÃ>~¯[[µpŒ¶•UÇçÚÚªWÇOº©Œ:~„§ŽôÊ@AÔñ³:‡¯=~}Ðþ^Òß½×+H›Ã/pB£Ž?Á¦xù€_nµmñ” ½êñC¯Æsh7ƒ»­¯Ô…^Ñš´ÖðüŸÒƦÁåwÕSÔ-nÃû¶´îÑP”tÐÊ?ÁÆ=_n¨º/ŽÛàÚ+½òø¹%/)ƒð,}ÆOøÿ•:Wé»^µøy/.¶Æ¤†sŸ ·ú¬ô¿Îþ¶ (M”í@€³º„ ]Nùo½Î˜Q`¯Tº4íI×  t™?o±6®—»ãBÞiHnƒ—yÑL‹¶XÄpžêðË_–_Ö/’¡ÌøDȦ©ê2QCUØæ`š·Ûhó[îÚ·‹wí³<ˆ¨(®÷ÕP{_œþóñ;l“ ÷UÅz‰òȲœFz´ÁÅVÀgÄ_+Ä Õã +¢Î|ÀÃß™~›€ÆgT¸GCø¶uҺΡ®#¶!T‡x‰€©2`Ç+¼ç Ⱥâë=kCgÿªA 0´kµ–ôà%¾`¼¤ºÅîGCׄ¥õyc“ƒ^ +›°BÆ/[ñÓöORÈ‚§C!rß°hv\·UcBµ]ªx¥£7]ƒ?<â»,«´Å<°T”¿.¿Àp Å·4õ@ö¶ƒÃ¿ §ûºÞAöÑ®‹Éîk³ìT¶v®Zâøÿ;¶¿]ð[j¸cdG®Ý`"Êu Å]¦–¥Ã_©É&ÓüA;îÀ–HøÚÌ ·^#1[­£ŸÙÉççÐÖ…l¹oGËÜ®Y|DR²Xµr¹5”|ÊÓùRZøÚηyžÈø¶ÀˆÖR\J«¹ q¾6R8¯˜‚èÕ¢ PÑ ÙÜŠø èëFèó}^¢ºEadפ^½ þ½@‰n'êÊ]¢JêÐnVTÂK‚„h?«Žâg92ƒ1ìÂE›€0‡?WËAÑüI;Ô6.ÃÃÒïRÈrײ]>ôÔÝœ@ŠÓ>þ“JÚÀY32™–Ùi°p}Ј،€lQ‚ðDrGÓÁÖX*uÄKÝ øâ‰ÆI³ q`ÏT覻BðEÀ–aÏc|µf}OûDß( j4áçz>¡a±‹'ÁïÝ6;ŸáßJøs /ã)Ia¬z;®Ü%ôu¡XM Ù‹§ ã‹Í¯»³P‡„].[C‡1}ÀCaÛÆò³Q€> ‡çâHVNs$ïœlŸ´¡‰µÈ ×Ft™Ó0מjG’ð#®#»fqxäI6å‹Qp[˜mÇêj¨|ˆÊØAšñài^žˆö~2U + tO¥æ±tÜfGL=‚ÕÒ~ó–’¿Ágpà ÕT†hX!r†ŽÝÁ_ +tùq*šÐ^Dùiÿžžs]G¤KðÈÌ“§¸ÍÓI¶hlUÁ&£ý'ýJSY§²FLe¸[#|¨èVU0€oÂ)7¸ß ƒeµË€wiz KðTèÏð¥a¶FÙ‡^î ,;vÂY5Lš/°^HN73ö»}q§¶u¤TîÅpt ú¬Dâ}¶)ÅÒ›9 { PËxÙíse£Y%™e¨TWô–„ìlV¸S4Ò¡ä2™nc‹zPgº#\½íK3j‚ +Wêý¸aE¢,z ñZ·R3JMÍ%ˆ\É8ïqÎ"Æ“ÑѲ{(e[eÒ_Fp°…‰˜AãÈ/Á‘(ô8jKÍw]çÅ”0xÀ²Ë§BìV†íeÜù2'V–o9ð»Q?Ÿ& +µ¢¡aÚòŠªGÆÿž.ãð‹%¤ LQ‡n*›êɽ'Xhت…fô;ËbD¶çQ6®U‚=g.¡Ûá1ɦ&TÖx§qóÒÑÿIㆠÑg·?cûq¥°±×¢k@µ4?ÉÞû¿Á^$ë´Zý¼¦fXÁ… +òÝÌ© ÝÜíŠ) +~‚ Pßé•+ +æîGb><øI5$•öD&£=‘¼V M§zE¼z1R†4WÄΕÀûµp’xEÄè‚ÎXœx½ÅÙÆÄíF)vmU·N5ƒ>Òcè(äLl·–€™¥kŸòƦ°EÒr§KÜ/ÜM¶2‘.B$Â64Á ’A‚$ÙÇ¢ÏBEtïrËë¡® OƒÔXR´Â9 RGåÝ+ëQá{ÒMNC–BÕjjSôØ0NLÆš¥ ~ï·5 Ëm5…­©ë1ü"Ûnöx^íBµ"N,§)3Ì9|ò9¿Ñ̘eµ5ÞO!¦Zê¤}5$6I!ÛÒ‚Ä6³Mà³Îâ·¸ö‹<…fhZFEªèÀXÍLkËykª4IXœ“í[§kXyA +ïY³ÔWsx+¬Ú,ÞöuªÅx´Kð(s]‰Ç®Ã#LƒÙfO§ƒà·,k°ªÍ¹ ‚t§Ù—ÄI6Y viOœâ0rç+Rª+\íÅjzvWYpøE+jO¢OÎ5¯{Ñl°>–­<>NrËf¨qìðçñ°‰ÃÝZÍo"t·—Ž§ôóÿ´€Îñšñƒ/%¶\{P˵;–›0“b6Ëïs—L†6t«4±†Ììó­ô«ûG®÷l&§ZEŽ±p†¾§°Q²¼üƒ&åI,¹eܱ ‡—¦£ ²ÂŠ +ÅŠï.nòÎWûÂl4H(>Ï Ý0G“LÔa4ùsl3 ô¯ tàbTú%š*y€¦¶¥¦nïà5³‹ªÙ ±µä¤¸²žš0¦M0¦Éö¤ ÔÕž·Z4œÝD'zTfÏf‹L…ónQY:YdÆ‚Êó_TtÓ`åhÛç`_Ì­Á4(¸C‡e¾Ñå8AÆ÷r—³Îö0ªf_Ú^ŒášûVÊq‘}Ž>§k96sàÀÑ,ãýv1«v³ÝÕYò8¯”±VÜÎîñYCÂ\}àùvÿü2A\nÄ1¶:¦´ŽL="ü¬T`þ=ÁÜÃ: ùƒž—Ã4kMšhá0ûÜýKÙö4@[6À^3kbnÞ£av®}›9ßyŽú‘ÈÌÁ¨îÅq‘¸)¢vé ÇH·ó¬Ò–FÑhhJàY¯’Þ(Ž(|çWôÑ-1¦kéêî(ŠDâÈáAØQXŠlðvˆì ~}ÞVU¯zzì\`ÆÓ]Ë{ßû–bÐ;±Ó&º4z‚§©’ªF'å bÉ9¬X‘:^`Ò Ê´¡.õEð…?xÜâN^Õ[²>âð³™s1“"!ÏÍ·øZ"Â%Ö¨ÃßÓî:!Eüâ“ÿøY€âj| %Oy¿078 Ö€<‘S²q‘Ü%šÍPQ”¦úŽuû*r8ÓŒÔU.fÙ±wÈ»XN¹ˆW3¦Ï¢Øko“]ªè§¡ ü†a>½’б×=Ó$"rã™I¡È¾H,““ ž"ÕŠŽ§7B£ +.”o<ÙkæÃa‰õò +Ùëœ1 qk¡äšJn)c:ˆ°Ùÿ«ªIeï²úÎ"%3í›Ò;äŃÚQ£ß@9Ès!Ž`‡QÒ =BC‘/–µ‹«³_=—ÞA«îòÏ}˜1^g¸€¯û¥¢³Ûâ(%¶Ì¼H£ÂïÕŽùtE +Mó9M Åtçs] ³ìÆ3láPœT²ãاgaÖg%K3kÖg%"‰Š6¢7© k°‚2Ã)Z‰Õ© ßíP\[r£ká_ï]uwùäÙáQS]Þ?yö“ýê]_<¨ôCe,ÔÖTΈ*ÿ}Ó4QÈ9µuZ65´\¶÷«—õå(ÕG¼Š¡«ËMஃÁ BW\±ùÛ½cÖ­«)‰WM„òQœp#ÏÈÀ¸ª”ÍŽ¢"ò3!eeŽ%E Æ$Tø\BÔc˜)¦Á$‰=s 2 ’Eæ¸iü–" mqjNõ>ÛsaËÌ !Qœ¦‰Õxn—ÉÄf¿éú®hï^U¯VPK™ÔÐÝmz¶C„S’!Õ9ÑÍUîv{›¢“tBy„È8†¤MS½“NØÒ;d)ÀC;ù$=ÒNœcãìû"vÒ3 +}ÍQÞžk”‘ÏÅ飚T•Ï˜ÒIÚçK¤këK¨Éa[ÒÃjv[ ˆóe@¦4Fö6«!¨ƒÝ ðÀA¸¼íÀ‰Fg2Û¹$aFœ ÀG Q²[¤<ÌÆž:ìÿNo³g˜z äìï@ 㥮¤]¥Î7[¥®\v½Ôy³Zêš~«ÔÞk•Ž½â£´Î |ÎΫì`ª$x‰KDö ÅÔC”ÔøŽÉ'Ú7Š[𫪈⤅2–õ->`xÙ(XžÝŒâ©²é/|Èž~-®½]Ã7ªÏëùÆ»­|c!•‰o¾„˜Ó‘ZJ«Ò§Ø«úÐ.õ¡›fÚêd¯öý¾ãW<‹-8lil7ZP7öJÎœõîLY‰”ç’.‰ øú)õÔö…•K›Ó’ñæQókO“pRã‡n'jóþ±Ôf;ó0ïÛmÔ6Zvj «©Í@Ãg¹Moþvïg €½d%rÔ'7Uè!¶ãV{žNyšo:Öä``õ[áê®ÁA'ÄOe²fðG2†„Õû*#áoÄW3!Q"¢—ˆÿÿ£ÐÿWí9Ÿªç“’Ï~=_ &Œs!™ì’M4ÃÔ'ºøSàv@ü¾¦€€g#\ç³­GxaªöÍ‚õ¶m§¬÷æ~¡XÄé\.æÃ4!^2ÉË<Ô‹꨽70CR·V‡.«£_kÛâ毑.,ºnØLÉ™2å…\'È–Û?¹E©e×Uø­i¸þÁøâÇ16Χ‚-sòe(ôðÛóXðN¹á«ä†«l~gˆýßaÛ, Ñ9¸öHÚ–šôtƉ$Aƒ¾­[kkÐKjðs ÃGì=‚Äá+/ñSË­”yæf\soîÎó ~“Ϥ]%B rÛàð +§Ô¨,@²º9Âa6ZâFƆ®¶¡hu‡²¿vX诔u=”IÛŽÎèÏðQ ajïyÈÖ4•@¾¿žÔšf%+¾®=]}Ä ÓpÅÌÚ”ô ¯“Ñû9÷ŽL¶Çà ålø¿Ñ® ÌMëpõ«ÇÄf;n—ÌáßêG´E]hâ<K¼üKíˆâñ´ö¦F·z‚­þ%"ƒÂƒè%~g:[Ûù¶);ç<~WmäÓ,™ÓŒÔ­¤N‚Â9]´:¨I~®o®qôé¤Vª4pÍlËÌmõÚë:xn·ƒée|¦áôiØñí¯¿›ÙÑ¢5xw²óS³fþAf­µ[ÍZ¹ìz³ÖºõfÍ/M³Ú|m•Ú1ÔH ŠŠ¶*TJƶ*…QbJ26 +˜±vDmg(E q…ßÀ4òQŸ>€%§`ØSt:gªëŽÆö C¤! ¿c¯ø®îùò~ƒã‘X`½q,¥Ý•ÇÇ*}Üa†uÁѵ€Ìæ:oúPz6O} âC®S 2Ωþ¥ãm¬a˳mö(ñÑôâ-^ +á,[¿ Ë-p›oD²˜ÄáaN¬÷Ô¿Ó|·Å oÆÌß9À¡úN´ë^££Ô:Áå'éõ…væL_UÊ™¢Ø<älPz+†–rPr¢ÉÄÛ†ÿ-‡<-³s¯â9È"µ€U,ð9=Ž +ÍëuL#1”d¤9m–psxí~óÙ‹_îe¸ñïÙ§$þŠAÚù©úF†Š÷' ^}Y½gDL1èYˆc³ØeíF Z;ÓP€EÔ5ÓÅد-šùõp ež™˜œHÊ@˜û!!eêJ¾mß/¹7w©–˶Tž*å3Âl¾a€B3{p¢‰½¯™Ùb‹TóÜØŽâPÓÁ·„E,añ3ÍõP°×Ôo• n²ýFH’ÏýQ¬7)‡WMX×EA¡£(cØñÆš\ä‚*Ú-äƒÝXV™S¸qqŸtÄíd‘Ûn„³„—LèQƒÌìTŠ3#3Üó(Jˆcä$QÒ‰ÔŒ¿|Û9qÝð̱ĬClw@bx/hJmHÍ”v§¢[å/[RΕ¬Áð‚í¾ÊH¨‘ :å1¼„óû1,ÀÒ= –“GNœæ–€y“ÞŒyÀä½¢÷„Ôõ°éKØô~ 6p=«a#(¹®ùºiØå fÏo“Ѳ°l9«CÑ“GЖРŽ&ÕŽãžñ#Z™ñ™=Ì¢IÎ 3ìÔÜàÏ] +}垪LYAÛEΊ—ø(Î’ªOî@ʘ +ʳàvø†º)f&<”$ç±bëA4”FG¨Êlº¾+´WÕ+sDhÆÞ±ÞqœÿRAü›„Ô{Š«<¡ ĆÝ0âr Žà›3V{„,ÍbÆ»hÿ‰,rÐX´ˆÀýŒ´¨„hA± ž„í>ÚÖÒDþ'À{g§ +endstream +endobj +82 0 obj +<< +/Filter /FlateDecode +/Length 6380 +>> +stream +H‰¬WioÉýÎ_ÑÕ@8ê{¦À,{ 'Z{³‚NÐ)3%e+þ÷©£{R$gä…‘3쪮óÕ«ó‹ÍÃ|6¹y/^œçW“«oâåËW¯/ÅèÕõH Uëá¿sVlîFço?*q·_ëÿ(¡Åõl4V… +V\߈ôåQ„¢ø+ /\t…3Ú ã ïÈ,FgZËëÿŽÞ\Þü +7ý¡<Ê‚z|º:ÿe¡ÄëÕèï£ÊÄJ]•/…¶UQZ-Æ:Æ‹ÍtdŒ-b4GNØ`ŠÒØ#'f#UThu•Ãÿänº:T¡°]±PhoÚ—;“¯?v&]e X¨csÄ8[¸Ž›GŽä‹ŽAGÉÏJEüw6ŽzùV¾e`Ô…­BûúcgòýÇÎÌ°ªÏß°œ4–ÓðÄï¼Ò`¨ãXU>”âfAø_{ÌÖýè#T+Q¬Ät•$S(•-´ÚSRf%H²|ˆHmj3^bŠÐ‘È‘R{2-gú µÜÙŠÐÓO eë¸LZ÷,!¬“R¹n䂧ž8èÒS7r©rSØ!B9x\únx Y ««Ø±.*ê³£qؽédð†ÜToˆPãV[¦Wž!7V¡kœq1òHöï9ºþ÷Ôë/’ß6 @_™¶3»2Ýœ\O–H&®&Ë;qv;¿~#Ͻ|÷Zàäï úûÚaºaÊ$F_E,"£Lebd ŒlÀ'>½•cà¥8ûp!Ç8'ÄÙ¼*‹ Î>Ê_ÿµ&Gm4m ¥K´‚ì)wÌ0PÞ%Ü¿cÇorl fH‡W_¿k ~{/AMoÞIv^H‹W¾‹ ÆÃÓ%˜ \‹N êù‡“3ï¤B)|_âÐëð÷¾Ù®o&dßð[Ç7Hrá¢Þõí­„»?¼—Út e2<ü'¸ªðÁû2 7çR“¿I Ypàw8—€òBVçQÝkI¡y'#EˆÕ¾“†òù^àžptº_^ÔŽº½BÓ\h6šáBkX§V™²ò·ˆ rJW˜è à£Ô-þ†‚ikH¡ÁH X¸âÇ d®ÂSâÿ¿H +ËTÌ%<\€|¨å7R'y<ÇOP?å8, 8žŸ@f)ÂFTÞ?¾ƒŽ¨»ÚÑ gbÉ)¸Ý7\£Á÷ÒÕv°RRÂ':2à#Åc.CŽ<-ÅŠ¯™‰%«Ÿôw-qÍ F .µ};·£ºË>asPÙuØÐ?Ãþ™ºj§"ÅLàˆÉf!5ù¿7Òì«Z Ïãï­ò@ñth98rº<^¨©£¶˜¦€‰Ñ” vÜ÷í:UAo_Õ¡¨zí„—&ï„Œ$QœÚê#€ä…Rʾ<š…ÖÕ±uu£âÐvÔV®¯ÚRõÅH€DFøå2Lˆ]ÿ>ý"a^SÝ)ð7sÆü{I£`Ž˜®1-ãŠÓD“ š%õà( …9¦’™¬ XuG_­ÁRqüH2ŸQ%"T}#¼íë²;¦k€¬}¶jMA^Ú>Ÿj«–þöˆ¥Éêò¤w‡‚ë¡cêàÎb›î ÀãˆÅuy)$sôªB`]ð;X)¤´¿·n7•eNeyÈ[«±xÊô+û<è/Ë£ÐßU;ú«¾ÐÿTZ[·~¯i €èÈ=V1ÜP&ÈqBSzÒoTäSI)ÚG4_b3Áþ4Ì+Α‚© )/ùE>·Áþ qÑ;«íYÚôÒÆŽoýñ¼Rƒ{ÃWU Ï—idM±îÑï\é«4ífyü‰ÁPv?èOëNË4‰§jßV§g£-¼w¾ãâ€XîÍÆ*ju(–0„›ññ0O[æ*®eßìŸ×ò·NËWîXËï¨íßò•ÿ‰–oßú vXZi§DîckZ–iùÀ.Nà ¶h¹Ûú+@Í{å½çõT¨•©þ$=¯ûg/<ÝÚ §teljõXæj¾4s´.O/G|¥J4Æñ„§ù·Zð˜‚)i°+ÓPIË\ En0Æ!G^<ÎyµLï ¿í¯jµ2uч¨‹‡2ÔmÔ¢Ohê2ÅÔy:ñ•t"b²Ž x`4q8¿KuŸŠç¨F¢{a1­âOw·-Ë"ºàŸ¿ËEõDwÛ +Ä”?±ËE=d—S>—°ßÁî +Òo»»ÜÈååPq6uyäÒ³¹«¹¦U¢æ³ŒåKåÊ£fʽþ=árdОƊÀ™1)ð SÒm%ϪrجŠæĬrà/¿zæwWƒØж³Ç=±š9¢æm ¸a·p«½•cÓY×äaÄ«câÕ&AHâ½ ß¾ªJýCº»ï¤:Ëín& ÒVõ6À,åqÊûèdÍq€ù¯±ð´h3¦¼éÁ¼ …• fÇ\ÒhZKÀOq¶ÜÅݧG~;ËÝo¦phÀ¿”õì>˜]g6¯ë “ÓFßå¼7µx40pRO‰<*n‡æõÀð¬ýêìrõ Ód<üF©  v“*oÉ›ç(ÅS¥Þ1ßU%øhüM'h"jÚyïðÑÏÙ„Ûþ.–§Ð ¯ Úuœ€{óÔæÖ°‡ª¥³JÍ©¨?A` L+U™Ö[ +*u ¡Ž.ò Ú FŸw‡ì¼ñO‘mú?dDutDî¨í="ƒ4"OÃZwƒ»LiÆ­Å‚±çÛ2CÑØï/mõ¾—Q×=MTnÝ|‚AÔ©ØxÓÙ¡fØ´¶¦éDhÅB¦#rºîÊèµbŒ^À{ðåsÃø y&òPËŠ+üÍ[Rq;À§áC·»¾¬ó¨hËòäëýÉ8ã½e•amŸ´SÄM.M˜ myÍA•<”îK†ÀÞ®º“ü"]û¼Ý&(ô»‹L+¯jfîQ:tÊ3@Q´¾ÔùÝ-¹Kh¾Á…F×uö-½^K‚Á퀢}w™Æ¹Î.C +d 7“zE©x6Ù*ZR,ƒ¯ç Û‹¡n¦Xæ%åî„Ý—µÝf\èÙbú[,œõ +ÂåŒa›¯ æ:m‰÷!ÄbÍçÒs‹ñä2ë¾G!"ÓšçdÌT¤†È fÙáyrz‹©ÁOé7”³SÙiy¹7srŽ9ë"0†ÚÙ.ALMÅ\‡‹{Ma.D-:Ì;Š˜<Æ‹]8n4²*`6†wOuu[îÆAIuWû¹æ4Ag$È'<ùžXÔTV\y8×DNýûˆÚÏ(î3:¶Y§y’Ÿ!‹<¤hk[2O$1ê{1áÚ¤ha³âé“ØÜx®Õ.6g +¤ìÑ@–:ÍîÂ\©`kÐ…•üu¶,Õk´þi’d,,iÚhh`KÞ 'IÚ ‘~ +‘£m3ÙfÙГ2äæê3f^ŒA Ô„§7Z¥™Ä<Í£%C4Ó§’šÌËœQ–tQ°Á‹Ñ§<ƒíîUàô8M ~¥„¸Æÿ<›¼ZTA‹*à8oÎ|'(Vü”ÿ6Ò™‡^PžÊp!ÝÌŠ-«ò ¨®³™ßÒKÁÈxí°Á’1}o•·hS{ _at@èåWq¨°I?{ŸÝ>•ß>í"î|‘­äêßQ²ð(æ‘Î ¬f*ÇŠé\ Û§í`„ÀŸŸ`õ!1Ó2Œr?‘`u²˜E¶Å÷V•ÅÕßø^ßžÍ;à(÷ÑEFƒV l5KË¡¬áÕ®{°ÂÌÏ +°+ºíÖÈJ2¡²a@}Ùpâ’XG[éçøy +8ŠeŽIPÀÑhÛ ]F‚úD¹¹ú½d`I…¤4oe-)q&1zYqcK/4× ê%Iá{š1ÝÍ™,ž^O™Í5ÉêÓ×êÓÛ—wqZk±m¢,‹ƒt&†mHhG"Lz õÁ@ÑT¤÷’ÉÞ³ßéãsòyQ#XLIP°P<ïºl/üñ[¥ îëö.$½,u*‡…ArŽóÈBóâ;†Jj +IåGqW‚ßiú Å°ª">Î[·¸•Æ÷0†49ÄkËŒ*t>ÀŒ½âs;&ÚL•ñŒ¹ ¯öŒäµsÞi²ÂÞé– âÞç’½ßTKö版Îõÿ.éð!"ÄØÈŠ¦÷Ó¥ÎË0°­`:ŒD|qó<ƒÁQÁÜ°5œ(á™gG÷CsVi‹EFM>Û SP°ÃK¾UtÁø›@^\…H³‚)×l‡iæžÅ õ/WøÙ©ÌX‰>„È…ß=RŠcÓ‘\j{¢}ÆÃM{5 œW³2q$l5­ÃPõ5Ju ­Á¢,‡Cº­‡bÏ+^¹ϸEwXœ½Éòvi%É7eÇA +b‚̯;ŠQ‚¹…Žm—1 +üƒbáŽàB.ÑÔòڲǚU"pŠUQqœ>÷çOáÜ{Q©;6 e”å£ÃlÑÉèÊ[aÇÿºýí²kà ªi^VB2!çÂ$¤"F(Ë e5#Q‘Šðk/%Qö^=Cѯ¯¯f~»àNîÒ/D†Ý“5ö 'ëïÄéë6ÜÉÐ’‹Å‰&¹X·!øbè%›FÊsWü§4”^?•D¿g¸IM¯ý™-$ƒpæ;J!!Ä»ApeâJ>–»à\{ž–4~r®†ÛfÌU›:W‡.?ú¯8DªÁ¾ƒ‰仆ؿÀaÁáù“‡eS*œÃRÓâ/=’ ~ü(kI²Ä›ì,.¼—d.çâð?ÒæÆ\ÔË÷5ô\\Î e[vé‹}ù³xûÈ°7ø܃|v8¼¥XF¡È)Ì%ªfytöºÐ0Çöš^å%uýæ9xuÓ:0Ü6¯.Kø#:ÈÿÍû„ E«§"]TüI€¬œ²ƒ²ÒÂL)á²qþ8üö0œaç8ò¿{ö4|áƒu¯ ß*mpÄc–(9Þ̱ž§ÌàpÕ4TDǺïEÆèçkK *ÛkËá(UK”r£(ÕâIí0Q|Sª.>p¬‡À;⛆kÙnà¶Ǔå+=ö¯2Mµs'Ô_‚3ÇzF£Òw_a·)î€þ±¶&xèœDφ Tºn'/)AIÅVdË—·© +¼†±–˜Øà›ËŒ›ðù¸hªH6Òƒmé:EÀ–ö­ÜM0ÅÓÍd0y{6“tu`]È'®ÒE œEæ>ÖÍÁÎÂç£ÓùÜ×Y¾¾úz~n¿=ÑYÈ•(v%‡ÓÙËŠ?{O_S#³Ñ  ²'„áSïÀq^"„ÒWŠ Ôü5šbëY›3^M3o .¤g^ù·ëêOãFé…ŽåÃÎÊÓ‹÷ˆD<  +Çùù°¦»nMc úc“ˆµè‡Âšv@ +¸s´í)¬EÛ¦‡5¸=ËÐ_ÚªjXÒÍÕ'VÞ­8›¥hù Ó²ÿ¨EÔˆßxuoyvc­¸4v3é]jcAÖ4æºQÖ  ˆL¼¥¶²Ã£hÆ‘›Asnæ¹ÐˆÃò’š‘ùS’Ø€T€Ó[6bì?_lú©ËÁXùöº>Æ­ž‚ñhÛt·&Kóu§ùz²ñqbÙ'[ºEJÒGš9«¹5]ÒíšùF:¦Åàç3 ›/»¡Ð6¬þ5ª'=“ÞZ;Â'>pht­×çìµõíàÜX×Fžr†2E1<ÉvïàÜðÔƒ¤¦G¬õ¿è ¹GÓ.p'xæA'½·aî×aÙ|¦úÉ…7ç`zÎ ú,8»I8·Í€³ÿŸÀ9:ÎÍÕ’n¸ô?;ú¶ÛΉí¦mf /Šž#ÃrKM~f£øŒ¶Î’k%ðô‘‹äu@î =Uœq‘ +mKEܺ::à½ÄÆ5*‹¾õ/ ‚èR%ä§{Êa9Ý"‰lEWŸ _EMÙkƒ;jâvüVjÉ®ªÆÛÚO­#y™—žèÄðrô@Ÿ]±Å«yÀ JÌ#‹ï²$s÷Ê=Ú¢>5Ñ*ÊÏ(‡ŸÁ§Æ= (O¨CO€¢–ð¡Èì¡ÑW’²ncOj»€†LÝt¼'ëNdˆQeûg¶g˜Ú^Ñ—°õå„r/Âú°K?ê%µjç0«¦u¸m2¹*KPÓìP|Ì!Lý™vh!¿p"A>ê\=þ¼Æ6ZVK/Óò +ûßÙQCKëé½+lÝt57“E×­ŠH·K\’£(„1ÊDTk2v¼ *vx ØÚk¹ üþˆµ(â\‚øsu› . ÈñÍèÑéÕe6²GŠv>"c` ‘‹ìéÙïHPÌ%Aþ)*~¶èª¨“Do+~kÉV£s îbˆã+¦Øï“å-–³ß¾„òbGh×2¯‚ìöºí'T¨Zà-×÷ïÒPMŸð¨ðù7 +Ÿp²~)ˆKëÒzüú+}+þŽAÏý) ¡ÿOê`Û­@)ÿB”ã3_iOØü¿TWÁ€ ý®ÝJg«s®.–­ÜZ[ÿÿÁ#Ýï!c¢Ä08·lb·£¹±$ÂQ 13Y¤VÄ„ŠÊL· Wº!Ã=­íS9ŒÏ€< ±3’¦$Åk+ OX«›ü:›î3'È;D†òÍ%ÒÂtû¾|öèjŒzì0ÜÖª_•Ýʲ +endstream +endobj +83 0 obj +<< +/Filter /FlateDecode +/Length 4860 +>> +stream +H‰¬WioÛÊý®_15@Isv8N¤Íòúl´œ¢eÉVkKŽ,%p}ï2\µ‘yK¤f¹ë9瞯7‹ùdº¯^}g'/«íF¼~ýæí…½¹e"KµqðßZ#Öw£³÷—™¸{]©gB‰«ù(ÉÒÌq5ñËáÓ{à/¤N(eR“»\h—:çaÏãèz¬d¿µü×Õ_Fï®Fï>ÁßàB<Ï€kðéãÙŸ3ñv5úÛ‚c‚ñiç+“§Á(‘(Ÿj'Ö³‘v:…‡˜B¥™=¶b>ÊÈö4Ï +üæ‚×åÍ™Mms›¶>õyóêÃ+ª»/‰×XÒP4V˜,k{xdEyÍ‘%sL«Àìýó©0Ÿßà‰ß9]¤!hK†ÁbúHð¿rxÆÃèÒÁ‡d|ˆnÂvfN­R­w å!õ–h¸°¥6µ÷ +1Æ%hHtkK©lgSÛþ›þìn* «ömªÍ£*jÞÏl².OuáL3vÚ:,ÉÃ.í¹èKÕ¦U‰°§ +]¬|30 +?±Iu™íXWu‹ìÂîE'C7à¢*töT¡S`œ³ƒ£ÐSãÝMí0œ]>M–ÈK'Ë;1¾%oßɳOÞBùåmŽ¢¿ÿ¶ÈIÕä”éHNøå‡(Ò‚­AÇ‹ÔØÈ®-÷(qÓ{™W1þr.„<1þ¯BêÅø²EXG,šF¦™ +h:vhÌUÈCÇŽßdÔ fH‹W_½k4~û,á˜Þ| +í<—?Jø.Î%O`2ð6­J4žów™3€{¿¸Îµø{ßTÖöMûÒ7üÖòÍÉ´ëÛZ wù,s´é +>B4<ü'¸ªP \ÉàÑ›3©È‡ß$p5,øÀ%°5ç𸷒BóA!>öƒÔ”ÏÏҥꄣ³erq^9ªv*Mq¥™²Ò4WZ­\TVÊþ†U¦mž _èÔ*èMŠÀ[tLžAVÄx +†‚{k õæñ%J1žHE¹z†DC´fbþº{IÑ™‰¥ä8mÁ_X÷Ç€Û7˜Y…ÇäxÚZ¬8s±ÀõðíABÓ{úÔ¸!é¾)Þ§ñÑâ9Ñ?Rº)¬»NI «˜ü˜`÷ä ÒK¬dBù_‚A +ã@íÅd‰B ne‚ÅoYRn—\‹Xí¬þ@ÏÔ%õ‰|D¤ùØßaÓpø°Yù7]°æ ƒP.¶òZRîÉà|ŸÁÇM{ÿ¦2ÍöÒðºÔðuñrßB{è+c­Žmû*Ë2óúê?ýŒp #êc!7ʺí}¬ïÛ‘JUø@Êæ¡í aa45‚åÆ°øn†Á/8G·õby Î¹·\“3nÉgìçÓçc'ç\ÀŠêëåTe5\ ÍÊÚãôLÕÅ^4ª¢k†Š§è”Á‡- +ñ ÕîØHÍ°á6Ày¿K`or\“›+vr)™Ÿñ3âEÀö‹! cÖœ!xÔßã¼™-9Û|ì ‚‡æ¨‚p/éâ ¶ +X÷¿’>&’ZgÑîvµø÷L&ŠÕ:~Þ@\8‰*Â…/ãZ°Ä šbf舯²¿Å/lH ±þ™†ÔÙцlÛ¿!uoŠì™Ø†!×ÀïPÕ¹%0ÕdÐs™'Tz“;®6`FË̘Äʦ·Õ¶ÇÞÉÒºåPEë•©bf4|iš:Nd߀™.SVT©ÅÄ€Xªb²èñ†!Î|Á꧈·s1Óó=³¦%Ö¤7(  Î¿K"œ†ÎRhé×þ³' À¦†ÝI<~Š­è[ך< Aç¤A͸áÛ(ZŒ¾ßñUóÁŽ¸Žd¡¼ÔJÁjEGµÂê¤ù=r¥·‘þT}œš¶(Î0‰jı @’Õ’Ûp™W¨;᧵äy* 'íÉ­º¼•ž9F1WüvNœ³`.¼ôòÑ«ýBiZUí ¦¶¦º¥ÔŒ2T±_3c–6lÖ=«eë˜Ëj¿–ôã˜ÔÊé >àKq¼\ˆÏ6žøÊÚ Ü]©HÝä$2ž$â„Š@{æFM3훉ç2øÈ2©é dEñÐß%“uê//Á1?ŽÎe tñÐh4¤ÜijMõëhÚ_µß š6úMwŽíOÓÆ ¢éPv}8õ†!×ã+®áTC ™ÊEà6 z†û9¡vÿŽ•Ÿ‹[éxv5,Þ Ë1{`I·¸+7SÿÜTÑcµÎ‹¢lC&0‘ ÂT0¶7*—Õh7Ç>7U¡¯w›yƒ:ÛMÄÖ¸}#);¯œ+ø¨JVâfe˜œYbðÉuuF™Tu0©À¾ruƒ)yÉ|f#`rK¨)U.f‚Æ¥)ϲ³I\yƒ (¹¬IfñÈ%¬’t×8·$1`´´`úgòèí¹ÿÃ}l3°Æ[ßTôqØÓǦ(Rgí; ó_"·-dÆ®¶×ãK©5Ï::±\ŒË;¦Ù-ÏSËÛç5.xFÉÆÒŒqR®+û3§ÇxÊj>´Mq¢=kw€´kXjQÖ:È ÚDÆ“†e…‹†k*Ä/ HAŸòÈðy[κTÐÏ‚ú¶¨ûVÔgÄä©Ò qKo‡m—εçÞ4€©+ÛZu¯RUÇujÛÕ‰d9(*—ù¶Éý%ªÕÃcÓš)wç¦rœ ¤­CÇ&¬í¨t04q_¢›—z !~+ø‰Ð™“¡s ~nô´¶«îñ|ºÖè‰å’7ùV‘Ú›õÇfë~!67æÊAØlýQlnÛ›m‚ÍÊ”ekžaÈõøâ ‘™Ñ0@%¬ L ` 0ö8òZZ )Å¿X\$Ù¡®C쇼޶Œ§öOm>¼1Cêõø‚ÚíÌûc ÏÛ=k ϲÕ%5È¿¢Û='ÙÕ»Ö ¼dVIžK©<·41V 32ƒX2Ô²dd>a‘\Ÿž*z†oIÆD«¨#')Ê-pW½³·«.Û;YÖ~ÍÖ€ºk]7™Jâ’û–Ù  èqÎr«å"s³Š‰2˜àŸ"Úto€¶#২שÆ4B½²b›«¸:a­H…Á†“Rëàš¯²!s6§ØAÌéŽ2gçØþÌé†1çéšoÌ•úŽ0kðÆiÖ(Ù©¡–È:ŽºCéÄå½! XÒWÞt!K’2RASǨ«á=ørÄà™4F‚f*eQ|5Ùäɦ¿OÃ)Ò¦ÇO„>„‘Ý“æÐj&kqÈSçÑK–8õfjć—’ºõÌ€ýElÉ@Á¼¯«>;‰h F µZö‡4¯ŽS° EÖymH…[(ÚæŒKѺ¯òÛ-Þr‡¿ú5ÊMª³m|ý$Ifýg•S‡:4uXïà<Á¾…Œ­g,l~É™‚¶j‹K ¥\EqZPS7S š¥’¿;a÷Åye·és©Ø3Vìp³cÓé›Y6çÂZ—££õ—X³4R†žªDz5ôÓ†˜bÜ÷ I}|çž14Aáשxè˜jÚºšóg—»j*5™]Žž°H^JfC•Æû÷n¨’xÓÑ! Å¼Iy¬ëåqâI£G[þ>¹ +ýväh Î‘£3—Èq²l:9:›JŽs½Š~õöæÀz-¦¨L9CI•‰Øp7$‹»~ê5”¶Åe´œwXµ7ë^˜Éº/ï€M k°cÍ¢U\RŒ¿€ÚXØ»ÜêNé(朖«}çì°ÿü( d»äˆ÷­7™¢«!´iv’p0–œ‚NÆŽÍÛÁM»z Â,¸y{ n“e3àVçÀí:Æ!¸y†ô€ÖJOŒô„î?Ʀ}WjÂåñ@ºwVƒ/ b…\™í×һݤF<ýö$€cÇ15²Ä@šBº }’”g½‡oÀý[Ü3#tü@ÄE™xÏ&Ú‘H–6ËÉx—9ÜýìÙ +Mc›QLÍi?3Ò¦mq5;]6c¤Û|§i!e:åÇÅÜÞüD~ :ò/7&´ba™=ó£Ò,äD±›b‡­kÆ-2q‹Èn†‡(G<Êòßãhã¯e]ã §·³­fµ#ÔV%é;?0ÑËÇǦ·ÆƒØç/ñ†)Ä*ÅþfPZ.Œ>H"JDÆö§9î¬À‡Š@¥ã êLyÄIöV·:Ͳ‘:æ„…®>UÆÖ,q†Î㋸õwüüÓX,¿dêa«¯ðM¨´ÒßÈL})É毋2Ÿb/C*ÍMƒÏšéuñ3³PM|@§¡hKäf²94ã{~EFgžôRMšôï#óÖqÛPˆ…YÞ÷訷<£â î¤À=¿Eµœ´¨Pô \è` Ø"ŽFp¿“á`ðþc¶hmöpƒ¯DšÃ¡¤íá¿EÅýãv/¥¯a¦“wW¿Úå ’gÝ,Ih›K’0Y6]Z÷ +Iˆõöæ÷’Ι¹‚ÿ®ˆç¨ÅgAẸvÙcr§‡ìSi#ä1œ3ÆɧÕPŠm"®ÌöPËNüÛvHtÿNœI´L%Wí@ôˆ–/qcm›ÊŽ(:°c`C“é/3*XHŽvÌ2Qeg\« (_O-ÃWÕk]Vœcs å+uRãe“!å+ýHE¿ú?‚”¯Nê:¤*1tWÖ½DÁv6×µ+åy%7îY\A!óà3=ú`•ä‚ìøÔX9×´£:neêÔÙ¦}Ñi2÷LN–Uþs€ˆ!Q‡%à¸,\>Ëÿô‘ŸüÛr‹š#’¾ºkœG(oTfÆyºËö]»:"ð'1⽃1ù +GJ×ŧ›R7ÌÔ:°×ºÀËkwrΦ”¢FêƒçÞ“Q‚t©žþ§²4Äûï2–/Zô7û búQ¸Gæ†í¯ð òIwby×´q´jptD¿@msVCçðW zký|•éåµS‹W÷¯>WhràÂßþÀžB"ÃQ¬yÇD?Ò;>{ƒ=IÝ™ÊU  öNCÛë—h‘º¨E“eÓµH%kQâÄE¹…3çééye»å^1jx¢®úÔD­ñÓô„#¥(ú1©¼–5iʤ#­|D¸ÓôVÒ.¶¥ …¦G§%5QZÜ–DŸ#7„'±þõ­è$pWÀ*-NIúI¹©b¸¿îÌP(PI¸…Žuˆ1‡VblhbyWG|Ä°5 ÞƒÔø‰Š¦kE#¿¡N˜÷?”ÏÒ +endstream +endobj +84 0 obj +<< +/Filter /FlateDecode +/Length 5977 +>> +stream +H‰¬WmoÛ8þž_Á&p’EŠ¤¤CQ MzEí-®ñm?t…“8/ÛÄÉ9n»ù÷7/$EJv¢tbY&‡œ™gžyfþj³½:_žnÅ‹ó_ÄüýòáöÛV¼|ùúèP¼^T¢*umá¿1µØ\ÌßWââþ`¾P_*¡Äâü ¨Ê +–,N…ø!\ÙÀøkJ+LgÀ†³BÛÒZ{n>Ï”¬à·Y-ÿ»øçÁ›ÅÁ›pâÿà@´ƒ6àüö~þ›JÝüû`~|·\ãMß/×b¶Zo_Ëù‡ÃwG¢Um~k—ûŠ×UẊ¯ÛŸ ª²å•Z´îÞÑ趬ª¦ãKºR6ª¬Å vJgÊNÌ6²+•˜-¥Æµ¬ËFÌî%šš]ÁK-f[Y|ë¿ÞJ…ßÖüÁïkñIÖ-þüJ‚ýâÊ÷ÒàÃ70 Ëï8Lw²Px‚·µ¯ßoÅ-,pbv.ŽŽ>ÂN°UÈ‚–(\°’ž¶”®4x3+¼ ¬<þÅí­,è¸kø?Ü‹,-¾K?_,PhGQVcÕÇXÁ!]å8ÆodCÈ¢ãO¥èJøÙ²«Øâ…w£%—/} +KǬ€œâð?ÁQJÁDèÈl‹n²ñDL“×tæD“³?dM‘^q!k7ÜqrÂ20jÑê½ØÀû¿‰%¼ªññŽ®pÑ þfèrZóž wøû–:|¡ZvËßmÑ€ŽE'üuÿ h¼ ˜väŽß nk¼Žª€ŠŽþß®dšB¶Y‰;°Ž«6lýÖ»J›\¿i `é(3âÒ¿ZʺÂ-Ѿ¸¦ˆ(<ºP :?GºÊ +8Žé (]§3äοO3­RÓeժݸtpŒŠ¸ìóc|!y(E×”Ã(Ç¿[¢ …éÓx…‰ç4bp,åGy¢èpÍ’Kà^sä°dùƒnÁK>6²sà©@,_Biw¨›•$ô5¢˜1V²6Ð#4OG;1ûÈÙ·Ä´é¼#.ƒçxÍïá"¨ÝK*ÒK uÁ¨¹R)¬]ªªPºùÊìÁþµ‡!ÁúLjì†Ï’oמxï!øáòŠ*d¤éô%›aÇ4{°ÓÖe×U–±s*ÛMtÄpº)Û$µø?ÆYDw…ŒËwZé«<àK„f¡Ã*yÌm‹E:¢A8¯E°†üû„†Â1žò¸"")yã <Þ» œv‰0JH‡Q.0ìñG·Àbö ºŸÇ²c¯¼Sï$χӳÞìŸâlù©AĤ鞉ÉS\›˜ÞAQÐ#{^¡àIŒ>ór- 3Ið=wô<9&ˆdHCѲb!Ý~CÐëúoúñþÊç#ŠØ +Ä'é47Oþ¿6iöú˜â9ãÌdËä¶Ú„pé +ðN®Š*èœTgÊ™ðÿ›”†fò„Ð%ù›/Ô-€Ή §Â?IxŽÐ1¿ Rʪuž#"Tab]ãËŠJ·ÿ^€cè7)ÊÛvüFRr¾IJ™å!K{Þ%Èû¾ûr¸’dõ¿Â–ëOëSdnð¸|#ù™fS +Ø·SJvlrw»æõK–ë3þº•†Á…¨à_dˬñdžYjÉ’a!Rû‰ }’@²T½böarb€°ÒÄ,*ÎKåS¢ÔnM`è<®«9!Ÿ†}+öµ+nî{†Ã!k ”E?/Ñx«3r?ú-Çà# +e“çc*È:yœˆö˜é_§l&·¨%5ø¦—©5õ’~”4¬g²ØúvzqÖj0/Ô{’îà*1éßéÖ« Ó‹ò¨†}NYæÅ‹'\eLW6Y¤4©É´‡ÄØá)xÏ0VÑ¥x-5 ‰nÝþ%ãÎs=åÀ_+J1–cAamBvƒïßeŠû &rœ`òÉ„ýlDw4öAÝ1v6¡ÛpóIŽK]·èútìèÒ«öLÖ¸²Šà¹c.᪃C\Šä ŸÇ5¬ÍCL +My…¦Y©0[…´å("‰ó~“@Û]íièFrt­;Ÿ2jè§qÎõ˜Z‹~žã' ‘®\2Ð3ƒÍ„ÑKØ,Ã. +Â.]µÎ6€$3è‚šh¸—?í˜ &#£ÎÇKcö¼n#0Ò;X?TzÙE%qEâC*)Œù8Š¹ggžÁ®dÇ#Kß% Ã@1ï<–œ ›ÈÜÊûk¼ÔV¤á©_9^I"åûÊð}í{‚Í,ßËšX¨”­gDÄæc‡£”“ªš²QΤU£4ÓWžL‰&µOI,$ÿzWûs¾ÙÆ>KûõôywßÄÕÏ";Z~½·å×½F¿âRçM2½y¤M~”<¹eÒªN¥•'ÍD\´ÙàÄûÿ’&av Âépƒ® dË‚½Þ£ÝLÛ¡vó¨€;ÔÌ,0óÔ”+d.ëÏ…1^¨hÒº”n¬ulÔþ>ýÎMc@ jssq0{\‰‹ûƒù¡þ’Í èNGÞt¢ƒxÙÖ ã [;K5ÿ¢ªªúåâ÷iwh“;«1D¹ÕÖL¶ÚåžaäÅWtI‘KýTUVM»§lÓÓ?ÃÇu²º9I%e;ARfƒS2—øq…I@Þ1b›ã2¼Dˆc;KL¯Ä:¼•^TŒZ@8¾×*m—8Ö¬ÝWHä®_)À›h ÛWÚ¼Æýfït÷h Z_ƒ»*pzå™*'ãݹ´PH1—'‰x«Ð§%Ž&z§vÉN>É@ʆˆ.…|]ÆŒ +HD'”·6ÉÛ}ìŽ1ðÈ©ë(DÕvžXcv;Îß–Û*ÀC ‚oif«8“ðžpÝ•'×U&‰¦uè·d°|F.Ô3eÄ#ШÕÏðˆÑñHnu:˜z2h€Ûì%§žAÇV„½¡è ck?qR·=1ÖÿuÜÏe‰X]9‡5ccÁ¿›ÎšgЙ8‘]"qö^XÓ…{¸lf2n—̈qÎP¨¯É§ãÓìç +[kµ®³|(œ +•TîB©QŽ]`è6Yº´cm«BŒêõAàüe½x2d™.'öÉ£ÁsÊÝýÙr¯@tþT¹7ÿ§½\zì6Ž(üW¸Í€ÝÍæc)$Yhaˆho$ÙzDiHU©†Ÿ¯ñ:£‡Zw8}ôœzð-’ ¥ÛË hßílt5·Ù)Y>Eu߯®³Vt¨U`¡<]‘6íù¦|³‰3ŒWñ©üÒ±õ)²JñNâË)¦u˜Å–6[úBú(‘v$;£UBàvH3-…Lñüt¬Çf3®ËíðoÕRï¤PópÙlÒš ºVzàÒÄBÙu”¥RÉÄŠV‹¬aàÁ§òŸVVøñ©Ü}†„œÂš•UŒûœSI&†@$MŸ…]’*›¬b¬Ž¢£dgéfå%—(ˆSþ÷¾ÜìH§¸A:°ƒ4—’0•Ä«xµ¡I>{h°·®ÃÒ@üH“M®wH“EÛ“à`Ÿásï™Z¡Nâ±Â¢Ï2ù;Ë_†úÞÉDvÀ€¾Ñ×yl ×ÿX' +;è¼¢AÉC' ¤”ËODZÎŶrÁróŠÚ5šÃUÁЙ_”̬éKÒ|T’âQI +Õ¥De»-´^NL)I‘JR>,IYKÒt²$QþIM:¯ŠtÂ÷­$®ð}˯!#•Žr?ËFtãx;Vã94{8¼÷ýIstÅ$³)'WL/°–DWK:+lº~#m#ì²ÜµŠ£ŽâÊw¶UûÆ!u’šÖ÷¢ÙÎH嶟*>Í–PM:„ˆéÑø0—&:¦3uuÔ,c[èr›x¯É}·³þÍ¿ê5¯à^Ƈ“Çç +`ÏÙV\ .·jçeŸš(õ>¤ºa Éa –°G–'°h^õ•Ý“gð·²ÇŸ:{ #ìð×î^âo¢ 0Z-WÔ-³±ðkà%E:V8Û¤3\ÕÑjõüÖ}Wxçg==„G…oa²ç=‹¼èlÍE~x25&Ù`¹MÞÑÌÂ|àƒMúR1?_!¤i߈¶J +S1ždm|V•øÉ™”D ÚôlXmù±®2»VaLn´ù нþ-í}˜¥ìU•)Ï·<·q@?E>9ÁzÍäÑtî7DzrܲeÚ™b7×@­ŒvxÛ=ïofRþ…È²× ‰±çòçeµøKi_Vq™ xï1oÄý¹ N䘪+,µC¸·Gš/=IÅ^|b¢£3¢FgöÓ¤Ù'~k íØ1ìq®é¦$‡9ëh옶õhïÅ–ÙnÂlÿ¢‡s^«ÓF(Ø×Æœ ?2‡Ìü£!³î†Ì´6¸6Ÿ6óç´¾ª|¯‰$QMgƒ;ã_ÂׇÓOê´œíPEëì 6©¯Ï4xk¦ùäÕ ²j„NÿkÌX"¾¡ÇÙ]’9E«2c-E héÚ5nüüR²Œgä_³xÂ@„ÒÂ1M4¦¾å\º§×]ÕT¢®²Xâ£ë^AHžÿ!9k¥©D\RÞœpwßx/´Ëˆ¤-‹nå0’ñUÑ%¸ˆº!d9Ö˜è¸ +v§N¡BC]˘úïaer¹WÈ(´às@>qÌ[ë¨Û¯ÞC±Îðè釙š‰~°;ÇÑœ©=Žid37®Ç†µèìQ—ïÀ/&øIÂÿ»Ò<ƒD}¾g”h¥Ç»~û_ÁñçC!–_¼à' òƒÛ>ãt×òïWXïšþùWÀ—Øšü¦I°ež´ù>"FÓ~êcùïÏðØòóEŸ¬ºÈFÏËßàáÏ0ÏÙn‚:Zêñ…Ãò‹ÞÅæù@}å•»ëá<ëg¤h?¦á̘þ½:Åmo‘wcHÏá) œÞ ¶—g€¢€ï*~‘ÐtQ†á=~f²} '#b…Èš5Y8€8´ÇU*«ÂiÜ᩠ͨ¶/fáùû%,ëCíw’ÚçÅ’šŽb)0U±Ø7áÏ7†yâLÛ¬i!v!Dᣜi+›ØP¤¨NÅý^ªS™pT¾wæÃJ9Lq+æG¿,™‡x÷…gïk¹š™Ö:Rº ëÁ ‡™ü‰ ¨m=‰[ÏLP›Ö3©ßÙx¥× ÀU@¡|a—Ÿ7`¸º€B¿ï*5’™™ÖÄ¥&;¢a Ò B@Nv9 é\átF<Ó*­Š4DÃÜ*˜Ñêv›“<¯÷¼ÒÑWˆsÈ0Š<-—EÐûÁäVÏ·xAåL±‹¢Ô# ׯ݃ž¦‘ }@¹9b„|æÿ͖Ĥ•,˜Dë²E¤·èA梧õÜž¿·ì§?6 †ùvåSaY ñ¾:@‚ÏZOk1ÉTL‚/&‡µdÜfë×Î^3óŒá¡È‚°-Yµé$¼2Ò‡¡žG냹nu²hÑz¤”YÝcph…ù©j=¢²’jPòÈ +Š¼½Dh¿ŸÐéáݦ ߤ¡ùÒ}™vˆ\uZSC²Cî^¾íi)(ÊfçvÒÃ<Ö& ÀΆ?ú)‘âNàÀIPº64Ш¤Œ‰9X;ª _ˆ^=3c;7ü…lŒßª‡÷1Î3åi¢ûý¦ÅÔ¦™†šq…ilj¤Ò¥ÿ!iOŽu3ÿz#ÆÕâ«Ê²5·™ÏGÒð¼¦fŸo»&0òPV™br:zÒõ/ÿyîùK£ÙN»ò +ü»‘©ñùMëd}qN#¢ë%U4äèUè-êQie °ím¶öÒH¢ iü§e‘È,²‹„½¤ˆ‹Ö”Æ‚ET#‰*>â–.Š¶4OËû¬ç’Ï LÛRº;eè¼'•§¸óÐX"†¿¬OBI÷yZÕë1ëRT¸F§¸bZ'= ¢§=—‚ ˆ~Çõí»ö¢{¹ žØ$¡p!ÅHƒOYÝÉPŒø+$ÙÖFZW*Žc´ç¥F5Y.[Œ=X¼7AgÚ˜®Î#òb¾Xm0øvGÓ©+ÔµŒòâì¾?Ô~8»'¸ƒ‰ÃÇÂ^“áQßù<&ƒ¬[yRÊ8›oPœœOú94®Ž\³ ¤büïåE¹Í輓=`}“Ì»žÂ¾ž0}Q;Ýþ ¶Òšü î¼rC¡äŒ®uŠ¨œ÷lE¿1·í¿&2}ÓŽì÷9 Oc¥pçr C‰BK1úµp<Ò¤vŠ“èNxóÈÁ7Ó ‡àê¦ú +ÅEokc8yœ©¢—â++ÜNͺz˜üïMî´)̺ò°Ûîy3Ã_ßu˜Þ^'M;K©Òå8ÝÇEˆžÕQ$z=ÓÄá6ÂÅbѧ, µBfFWhµzd ?ºEtŠÅ?¥PUt©çAo†oÚ‰…h¾»BYÉ)‹›ÊVXC25e3Êdµ¬ý‡îzÀ‚ß?íàêôÙãÌÿ ­ê’·`Þë° +ŸÜwL<ŠôHî÷¬¼æCÙ]bº‹õ=A»÷¤eo–iX«p~ÀŽÉ[©gúy}MVӾ–ÅŒ·•þõðpÿÅÀ'·Ûìèï…6Ü^Îc†O2¶Òîö‹ÄÕà¾Å1djdE¼U^ªêmæØM°‰]Æ> +stream +H‰¼Wio¹ý®_ÁCÀ3j’Í>Ŷå,X0b »â d^[ÇJ²½ú÷©ƒG±QÏhfú ‹U¯Þ{µÿòþñóÅÉÙ£úé§ý÷jÿÝÉÓí·Gõóϯ^«½WÇ{•ª6Öyø_×NÝ_îíÿrT©Ë‡½ýcóŸJu|±·®6E´ +ƒú‚aó8DY…[‡›Ú]k»Mß÷ †÷¯Õ£î7µZݪûs½¶«VŸ´«6N­¾iãñÖ™®ñ繺ÕxÊÕ®6-üÖkŸ7êL¯éʉ^³1ju_\üBË?Á—N­>ÃßhSáZ— +_êð+\ª7=l¯®4¼ Wn!4XöZ긡ºƒH ^‡!н®7 }z¼#¢ëôi(®Ïšw¸åƒÜÀAàd°Õ…ú¡Á%Î5ýDCx±ÆŸñÑÓFêãJ{‡×B °gC ¨·˜>Xô@Ûx€i„¨>ÀÛ”Ï#UãÁ`ùöô’ѾÃß•ºå oÔ^·øí3½Å‡±ø¬Hî¿ÿ‘µ2M™ ƒ4¾)аZK¬n]º•KoµM`»ÆÊ> $Õ6‚I[ƒyTx‡ŠÆOÜ+͈|P^¿Á5^ù¬m…¨5-„2ùkV®Áâ$ˆàj€/þH`„ëWƒÇ#ÂÂs' [ƒ«ÿHAù5Øî;U«¡àÜŸ  †N˜—†ÀÒ/ÂÒ‡ÚÂÿ÷¡êGÚÁ³/ñ|¾…{Öëðl»àgÆÕÚáá¦äVá±Á!_ê"ü™vW¹M`è2Å}ÿ¯wâE†j#ûmI—/‡qWb­jç°VÁn}ïkoCœ‡ØQMÑ)£-Ðjêäéf¤|½ÑtçOžèákÕ ¸"¡D"DCÕ¬¢Þãæ6-­ô V"`Ýà›¡«c^*Aµ"Êeraå/S7 hO8¬¸&c´Ô§k¢ôZ×#Þ¨£PÌökþrEst¬íP駈—ó²ÆžìñôÜ ÏA&äo”ñ˜3Ý1)UXŒŸ~ +ì,§Á®Ð`?ͦƒº´„ 0È,Ã9L’Eƒ¢éHp×XD”«D‰À:-—ÊD*$´%d)W¢G[„Dñ–7"•¹æVR§Ô{®J|ÈT^½Sè.0b•[ÆR× „÷^¨W‘‹˜è€¬Þ™†›ÀÆ=£+ ‚›| +›VæêÑÒQéQØ¡ ]^r¹ä5éÿ`þÁ….mgJd5~Y­Ý˜„¬Qӥź:U€Ïrp=¦sJ©JÛ4ZüyË8QUA†%8<±,ŠiFÍ„½eéÍR\5!É©¨…ü*zÜT¢!¥–¥²±¸®õU—õÜAÕ}ɽýœáll/ 'úÉJÄ‘©éŸËíxÞ¤4¥íJ )4š@ƒÊG¿z,-½h¸A•mᵆ=~…Ÿ+¡Eg»$X›ÒÑ ñ':W#k¥t„>Ș%­¾ Š‘öqyš¯8Œ+•GÇ D +R;ßµ"W_´c.š–Çš¨£)q`ç†Ü‚t’= TÓ#ëÎìÄlÉóE“„j†gU«'«jæCÍbÅjQ1)Ÿ'*£¨€Ÿ/CóÁ†Ff££f{È/ªÔÁº/ã"¦\yŸÔ³íe‡æÕ—rÜrœÒùWÇŠ®]B@;P7ðÊÎ!¯2Âý-+„@$lGe,Éqö]Î9[§5æ\8¨fÃî ’R0\!Ã皦Á ,V#Çiü¼tæ#§Iμɑ°Uç .WR&QÄŒ(rmHzL,~~ &¨q4õä¶ÛÕôïhʇ°Kæ\ ˜å€ìs®ŸSDsnö‘³¦á`u¿Ê‚@)ZfòWºeÊOjÐDþ±¥™ÊV„W«¥¡ª{|{°]…éN¸£YjK. ÖqÉÿ[¸Î2£gt2±¨•‰çõrœAÂxgé/ŠÈ9»Ëå´Œ´0SÌ€FÚìÂÿÐTôo&±Ùc­Æ’Y yŠ\µ•SO镤˜– ö„ŸFZÜS òšØQ:y¸U–(Ú*Í º”Òš>Úò4 xTž’XU¡ôo8$®ÄòEñä´!aø*ñudÓ‡šŠa·”Ø*L$63¢è5ÀÕ0¡ÂƒD‹(º·™p5;l—£É–hÍœA“ïФ4`‰S½s±h@-±4Îkô¥:ž¸/œTê>ž‰žv‡çÄ€¹# Ô½(ÀÃf!áå ‘OsQgÂÊbxÆ‘%p\Ô?ÀøiŠ•²9ŽŽ1z{ñÐrD¸yýËh¨k4dí¤Uh–¸R§˜€Ôƒ&ÇûDeBú>Õnd˜ÎÕ=g$Þ‹Í+˜áÚ±þK÷[£JJ•jp +m½ÝlÛ¡žlgO1´SÔbÁ;–àufÓœXGãO^á¸=CÛnº +ŒzÏt´Ù uÉíа¸fS5NyW ÿ|ÌJ-¥+v!Ôr¾¡î ·Ï"…íS‚¥ŽŽ ,u-Ü~öÉSr_€Â‡>´¬Ó½4 JѱÃZvÔ€c#6Zó9¥/ì–Ô“B䉩/Nhu°‘ƒh’N“/˜-d#2Rj€º´¦ëš1Rî ¢XYdZû…Fè €³‹•’'Jäî Ð}úœ¯ç# hYÙ/ÔÌ8÷i#¤¼Ç©¸ýßÄNé¨N,àú( ^>æqÖuÞÇŠðÓåkn+‹´ëºoѵÞºr]÷Ë–®!hÄF“D6´J¿#Th|a¬ÐžŷÑÚø»²}í+Õ>7´â€ÜÜaÉ)ŸÅ±ÂþÁ›Sð+K2·ÊèBß³D-Ï…‰ºÊ¢Þî}®“ü3i„Z¬c<èÇû3w<"7¯²nš§LoT³Ü&ñèšÊ:+6‘c‘sqSü‚õ¢wD‰L´¡#ÌŠ©»P- Uo2ìCü Ý·í’MúR;ßéw¨eÿ…_TŠX÷üŠÑúd—ÌãRïÐÄ>¤‘ˆ G|ÛõtvßxøýöÂá']òc{Såžùã•ùÝW]]íÃ^x«â~’ľØÔ7ù±Z†‰ú2²¡^èQÊè™áÂ_ÕgáÂêz«iÄHà ÔbM„rîpæÃÏwükÚ˜ž¹ wüëO¾P˜˜üמèÝñveÈÖ-# ÝQ®?ðC~ÓÎ×ì'xõæ¯í…[²Â]uT·ŽjfúaÃ0¯Í<Í=•ì­FóRD›ÜMö,/Gò‚Ó¿SI,ÂTV@ÃB›X?¼ àÕÁ°¡ÆƒLð¼´˜Ò§â +²é‹¤àOïÕ±£ŒKO…ïÿ‡¿ŸCJ }ĬРæ('ŽXŽxÌ&xÉ“Šs&/ŸÑnB¿…¸µGOÿ|Àeæ\Zó˜Ð—Þ+xÃ^•eìøÚ·£éópš]Nn¼èF§\7ÁJð= sUq2ÂLGKµäÁrQ"ù8¿÷š6ä•b ÃÊFJŽs‰Í‰ŸH à÷¤{’G,<Íï‹ïµ#̱3ñ {på ×>0ªœ°34¯Ã-Õ;S +µ7˜Î™r Ø-ص‹°[*ºRÑ>«è´ Ž+V o^±DB@þ‘“¸ÒœíÈ"Cx³f¼6vTÈ|uü°¶w&ï{^½â^ÝÔ2ARY¾ê­Ýå– Ü?Òf@¸{§`È |â_m*~„ÏîÏ y•,‚þ—t_ˆ™;ЛƒG5kdl€ +©3 b†EÕÍ[ú›fÁÇiŽÒF@óúƒ’uŸ)‹vâ'ÔJy¿eOÓâá‹<ˆ‡@_zùÚ)«1ößœ70¢pŠ©u_UúlI%QC üÿɦíµÄ_›mS A´áÙ‚ym¾­ +JÒR“ +ÓæM¹ç¥%lÅcêخϹÑ´%¢±ŒšóZì6Á_è:4Ô ]Uø€—ö!g'¸`sûIKœƒ2‹@ú[mïÊOl¶šÀ×Ár@$ÿ®t¨M`Êi6X L˜‰1› ™å2AcZûJ»bîxcIHGQØ9.fk›ÞOiþýôä'ÑbÅÄeƸ¡€]K”U—\Í8SgŒÒûëÔoŒ“™•ßëÚõ1ñ1¾Ø«°UÏ.‘Ý(Þ—±g¯Ç ^†°>jå/ÂÕ(°²…fÌfK’þP6×(V~åZÒÖuÐÖþxÝËMܤ,"&û¸<ãí'½PrÞÄÄÂ4‰øX*:U.ûüК”YÃÄÍvÅV2n hð­kV_ç–þ å®N +æÿU)híEÌMÍ‹†uN$^ ¨ZÏ{oŽÞ8 !§Ñs îcç‹b Ö¹ëy#rNãßgE ½$‰%DnòØ‘ÈÏOã$ÆY,%sÁµkejÈmã÷Žr«C×2½†.þ!ôâï>q’ÄÈøÇok<$Ï û@ûmç"`ÝFÀúŸ TÚ×±šOź1ЄaE@ V¸‡Mˆ`|Ý¿u/¥pàêåí*€‹é—Z£²ãa P†~2glÌDÈC?ï+>úÈ·^e¹Ü¶†üúþ73¬'ŽgEŠs¿ÀܿŸt\ó7a(ñÇsË‹Ò]³bÌÚ•°4.1Ê•i¿ÌÏ£[QÅDu+˜ÓŒ®ôt³J2™—°Òîf•ªvÉ=óC +LWÝT ý.`µ0¨×g•¾‚¸T¦:#.†×L|^'-ˆôEÞfW³ÂY»§znn½ë¶-o€2صÝOØÕm6¹ªºÍäífn/š(u7dp?Hã`qÿϱtb,•é”ê–VÖÏŸž—Ìýÿ‡µF{­¼ÕøIá=N}f!™Î!îÌN#cP~øw[•H1ŽUnLIN©T…QÑ-ðßÞÒQ…ßxÜÚ‚ ëgÖAß^5™„ØÌL|íªµ A½ô‚ç^ñ*Ü“!Á†’„‰wý§ÆîÄ„ ý‚c–\Ž‚¼W‚¬ü‡\)iLn ‡Í˜¢OIœ[Ÿ=S ïA.|¾§þTüîg¯Ñ +endstream +endobj +86 0 obj +[185 0 R] +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 5679 +>> +stream +H‰ÄWÛrܸ}×WàqPµ¤€ ¯ËUk{³Ù”8kåIN¥$Y’µÖmGò*úûôW9âX)Wy(^€F÷ésNïÿ´¾¿8;:¹/_îÿCì¿;z¼ùv/^½zýöØ{}°×ˆ¦ÖÆÂÿmkÄú|oÿ—8¿ÛÛ?Pÿi„g{US7¦'Â_<ˆ®îáø××V´®­µ¶Ð¶¶¶ƒo®öVÊʃß÷~>Øûù=ìôl„ßã·°<þõnÿ/Wx{³÷Ͻý·G×ợës±:½®~y-÷ß¿ùõ­pÆ”Ñ + ê+†©8ÌeÚ@)|©î[­ñz°µkE¯‡Ú9×ax‡«ÒÖX­Oe5ÀV•¬”®[±ú,+‡O.àFƒw²Òø{7T­à¸€/®dçæûÿ„§ð,hë^¬®¥Vµ«{!ÿ}𷘉­gmó³Öª1ñ8MqÕÖýÿã$°’¦¥áÖPbõ§4´ùTð×%üOá®ÂÃwâD¸Axv½Ämø­ƒ9Á_¸›4>î°Ç.þùƒ€³öøÉ9¬4àEvDXTã"-®u*5þµæƒ• ÂãsqD+XºÕâ!?‹´„Ãwo|˜ók¤ôé®6¼w·¹w8-½{™åR‰¼2 èLv´† œZ ²3P–\çh9ªlÑA¢Z7ÔMçt)@PÖº[—î²¥‰&Ü bÈ•s–›U8®ÅÄ]K(@-Þb2ƒru+›Žˆ· õ°HDXMÜSqáÞȦÃlFúýØCV0Úî¿ð£í96pG¸¡;î8®ÒlÇ` «ö-öNGmà+©,W–¶?Ôž”ž¨p±ÙºqgBÛgq†wlŽ[ÃÝEGN-¹qºp*>>|Ë}Ã9,%ðCWØËÑל¦a‹I„t5rÚ-æ¤%5:¾‚Ô”'5¼¸J|“Š„ÕÏ؉Ž\©–룛2¡Píž:â¦÷.n\(aê|íÍá 1Ä Ø sûÄY#¸ãò 3‘Δ˜f‚å+0 –pÀš•ÔÅŒKå„“¶ø +T»'%á°H Ùî‰qS—BTTŽêçð­ÙÒŽÕrÜ ó¬e(¤Ñ¦ÍJ,f-Wʬng Ù EHÞÀA»¬:>åÜ~ Ýx')³¡’:1o 6݈ &HÊeK$ æЊ¯ªóñ!›À÷fÔf›žAóuÁ¨ã.³Íµ,'EÛ‘ö—êGœù„'—ì¬BIùƒ%/öß…gÛ[é8í}–X|fP,þ*-GšsB¾ßmm3¶ÛgþñFBÚ†Üë„óÒm°<)(q O >~±œ8[µÈ¦¿ÑÁ¦; +Ø ñØ¡X3ílñ¾lšÆ¼ZØ­Îv«Æ,”«íâUŸ4ò*ŽJõ$@40¡E@Ì+?fæÊ»üvÒåo‘J_ì°Z0–ÔŒÇôþˆ(ýÑ„º¬9í–‘kÊꢈ7= 䀦Ø;ߠϾ$æ–‰Är$†0óãÉ„Öñ…ÙM ‡-J8Zu%tË•°AsŠJØx—:­„y,‡«²%ÿ~ºfv¾’ÎOHš\ø5"Q–iji-l3¯}h¥'µ¯FNj_—(þiíûâá´éüú‡bÖ§u4ÔýPªèXCUÚÁ~¹Ér™Õìøæ»<ˆf9ãR,Ô¦·°áìhúýo~Ø +ŸVÒšø’¢—È^Ÿ.ï;«žíÁ=ÅÂþŠ¡ Þâ [ü5XýFç€`>ŠVòÀSKKá(ii:mDPñÜZmŠÓW:Ô: ^äfÂðr2I: ®>IÙj¼]/Ï.fÅÆ sy°°¡S)0C)òþ,×7<Ýd$"¡¿ +¾cR•):Ú!:Ëã(%ÔÒgÒW7KEÅá®Ó§U’\ër°Øj´<ŠFÝHݦ¢Â`KžèÓ¬óÆ5r@Ú².ê¼è5ž–×Ë»ËK“Ùf Gõ'˜H;6-ö~ÅŠ1a?F’3æŒóC'^ŒžbæiÆN–¶2rªV²j˜3¼›IbÌ_{Ÿ=`Ƀ}„³fJÓ«¾ö~(Ky„™çE8I¥þâôœ„ÕÅDáØêØI«³N€ñ{ù¢êüÂÜ7·Í‚_V&@®‡â§œŒ }Ø*ä¦Ëò›`B mÌ>»˜†ÕbÈ´ó¤ᢠ#×”Û槈Sóè¹÷ÔCfáÓp•µ­Ê(!rí7ÉÎ|ºË2 ÿt¶üNUëu–~ër”ÏhS\ŒÝÛéƒdà +SœœˆòB2Û=)4^f<þ™nBdˆ.-fWÑ ºÒ×¾!¢¤AëÅçíži€[o}¿³¶ý¼œÄãTìÆ‹OÚo2$·^=Öq„‰š`&4aSº7ë!suEÿð &F3Èrºí¶Ì= VYÝw€U>N@Eôv"üÅ4À:]7`·T0yc0·JMnzÑò>7¤Ð*? Àex$ G§Üå?.O‰ÙQ:iC‹Ú¾¾G‹ºv›•«.×¢Î.Ô¢©Òd›”ˣí¦ ƉýÏ”‘6N¡s,]®$„QD·#,¢)Â7¨KZ90dþŒH +Î'À!ñxr+lŽè÷Vºdئ0‘wC›Ÿ‰8Wjvò쥢¹š˜ZIŒÜhX¬U>ßM‹€ãzãž‹Gè”ï²÷}³ åªËñØ«gà1Û)•Ýu4¹%!ªÄÊ"²«ÉMJr!ÞWnšŒ3Ä´æñìiºÏhú³lÇ>Ö»`¥ +È”û|%¯^ž¿ 2 äïAÄÜÚfPçV;¶JºG4âº~Õ»²k» »öú¹hnltV»¡ÙlCs¹êhnŸælÓ§gÔ¯PƒÁ~$ÊÀ‘‹ð ùþeÄYp¼à¹Ÿ»ò±ôê#sî™–§Z—ÏozszÃMà³O€sDýç2ŒcSSke‹Qá2u¬qøæÄØÛgBÉÀEó]Pê¶@i´êPêB çvfÈw?\ý$«Á{C®òeì_bÂ7~IŠy€JjJg 2xŠ˜©TÎ{™(G³l,tŲЀZø›ÆÞÇM{E7Ú阈 ÏeÇÃhxN}*¢JWìxï&áůˆ~Ž6úñÞÀÅiŸ¤C`±¯Ì¤"%ã?ö 8»µ^70â‰Q`ys®¯nœž LªiJù j“î`]tìšY)‚ñGªâ€Y:‘K“ÃûÁî•rå2@FX÷¡â_¼\ „Cãyà‚S¤)¯§ÿã½Zz#Çð_ÑѦ;I±©»sØC°‹9d€ =/ï¬í™õcäק^$‹”äVAN3ÝnQŪ¯¾Ç«àN£Úê¢ ~¬.•2Ý6ïâ]W ‹V#SS)Ïhjfh'šÉŠÔ¶$KÆž‡ónêÛŸ „©B?®!Xåõ ¨T©2oÜÎÄc`ÿ.‡„ôˆ×Î#CÁ«´—÷'“i&S@ðG›õBS§Ø¨Õž.‘@¶~ðK'=v.ÌH<©„,pÉ ]üËŽõë»°ƒÿÛ›Ë)u?ážMˆÔ‚Ø.4Þû¾ó¨úŸ©‚ÁŒ?÷]~Á¥Ùî4é´Ë»6±¯Ä¨‚ŒŸâ¾À(2;³Qç¢0â~ ÝÕÇNþ³ŒM•ï‡­ ½O˜dO=G5øf§áh¡ž>IjÛMj<פöt,~æ1°Š·xŒøš]mNÝî1âV» +Óð«ÓPoÿÇÅ_qMca¨i,K\"Ö¤¿XÒ;ÙÞÏw×KùèL»O˜Õb=þ4Žv~W1·äŸì@¦:4Ugg>°QL¿ºy,›sëRT/ÅÅ°Ô(ÅÇ¢}Òß·ËB›%t²ƒnmèÀjÅX^"‡A—ÀPHT «’Zp|4µïðŸóÇÎÇÔèOú:Š¾âŸd™$7ßD›ñ¿\ ÿÁx)h +ßj [A#_ÌæU²tî0E¾W6ߛఱƒñ‡³§ð_8œ0Ü÷§‘§ùß_åûG3’˜ý@Ò±ˆ¼Ý`;b(h‚Zôû'C ”ðGÚ’žâYz\rd¬/ä¦Ã¨cï·¹‚Ý(ª6.ÑcÏøÞúÜ¿¹0¤N^ú O7•ìH{¾ÊË>ËYHÄ8Ïôù¡‹7³´TΑÅú^ýtÞU_»è߃ÞAÄãÿ¶.‡ +.WšÁiœ@åÓ0T\gtÏŽyÈ%Ô>^fÓZ¢cך!’ä‹ÎË™ Š|1Ý÷È&-[ùE±GÅÀq"z4lñOÇ8vïº$¼>\O0`·^¬z¶>‰‚Bva«¬ŽU×ÓÏøéC>+·]Èø¡(A&ùYrEö ü’ÿ†ëò¬xŒïTšp]6ã,®¨±ír 4QÝfÕXzø\ŸñŠ1ãu–|`VЛ?i2Œ­÷“³K+Ɔ»²ï®Xfsn)’וL˜æv“=7¿ì‡™Ø¾§ ˆ¾Ae²f)Xâh øEW¾*PŸ•¡‡hqä\.Ý)Œ³¡{[6LÉÐÏsïR§$'¥>ÚÍpÆnnWü©¯Q3 +¨'j,m]™¤,PZŸN]Lc)•]¨[°.ü“2ÊkE»Î·y^»I¾n9µ “HàMnz fe±h×Yƺœ U‹wÃA iF}Ì£ˆê~…k£ØVývFF,ÈçlZ03£áí ÖY+öÅg€<vwgÊÄ‘X¹»K¦ï·dÝçZ67Ùûê’- +¤æebŸæ-›\Ç@Ñ5AÊX)óhتk3 +ƒ3ѥ㑎ÒQ&CøG‡ +mãìÕ8Ö;Bɤ–ˆ ‡ê‘’Ý *”²}Ž¶^v¿fë-64óÊ€dNš†°Å4d¾H›ÿFÅíæncV\â| K-'Sž‹µay¡ª­¡âª\ƒ´z|34ÁÄbêi‰ŽÝsÊ?÷IÞi]-ñ×;¦Ú€¦§%ËŠž-Üù`”¤ZîSjÐÉÉPÏ–«Ö¼Go•WÖí!€Äi2éj øY?ð÷£æͧ4í´EG‡7ñ)·+ûD¶æG9qMWìa¯¸oZyH*'ÉdÏBòd|E ¯{— ÞÅW&@‹™¼%•«XY2Ê#TÛ'| œ²á}½a´qÙb‰YÒftì·Ô’‡RíOh$'t[ë"TÃïÏÀ ¯1èâ2‡xPþ×*po¨·VºÙwÙIe¿ÆÑýb<óü¶fónŽøü6˜^_ÕS?ãÉTïg¯,´TxwädÇ’xšâT‚œI3–¤,–!dÕ7ˆZÐKZvLGù_K»«é.Áð”w}¦áÛ +5’ᶃal”n ´Š«ý„#qKÚ3óksÓ¬D—£áÄÂ3kõ®'ò?sþÿo ‚¾¸†¾IiÔB1áfVevha¿"yF+|>ÐÝ S©÷k´ä¤ÛÇ.Iu"y[³ÛP +5”€¼—±4NÊ—8.†&ï`‡º«²B©‰dJ^Pƒ +F2¦ßç[È”úB/ ­]½í¶)´ýmçÙê‚O—½…Ã#r#¦z4\ý(%ðߢ?hHt…’ˆÃ2ã㜔”ʪ™UhÀ’•¡,EüPîÅÎf'3ÞŒÅúh´„–#k#9gѹl¸N"£Y2_sÂ˵žm¢£ìšÖ~áÚ^%¢žRטÉÏ€bl hWœù[œ¹²x4š%+P©’îÍ0Ô¼ÃåëfÒìƒÖÌy +_ð®Úd1TŒŠ›¶Ø .GF×X÷TMñ”_­œªØ·äS-úTo€¿#:É‘Ìñ³²’—fGpѵU©©TmùYh¡6†×Ì£ö%^R_-éf4Mµ"\Áú],vž Ü„sUêsË3誠I“|ƒyŠD$£eT_MÊŤQÒÏ+‹¢òHžÕBªjiÞ/N}c­Zdq%â4ºÅÑÁáSÑœ¡nL³ÓìÞfš?¢ EmÞ…‡l¥õ™³±³—IØVyFBhbÄDFBÃtÎù–|èû¾á"Ï𺧂z«Œy«_$´f(Y[º[Hä)5—!–ÔùÍÐ|Ò© +y²Sò;=D—šûYÃØ۟уAo^Nôr 0ÚâC€ßìH-¸ðæêÛÆ7ØÓ]¶ˆ~¡¨n³\yÊ +û‘üÁšW¨G´P–¡Ö²±r'œÏeˆM€F%ü‹èéõ•Zx–/gg„©yÓ…RdãÏ䈗ŒÒïÆÉ–‘*tÃ;V{rcäe£Ã30åZLF{€¸ƒõГ†AoF“o?.3~Œ*ûd­º»ÆÛ Ê©«Ô»ÄœYã„\Ô¢‹ãwLF^|*õØ-ø´@R a¦"“#Õ¢²U­HLºŸÐuç1݉‰ÌÑhÙëìàçðÍäÂå*3ÈÒú„“n`¡-HÝ©»ðâêUX\+0ýW€ÃçÚ +endstream +endobj +88 0 obj +[186 0 R] +endobj +89 0 obj +<< +/Filter /FlateDecode +/Length 5785 +>> +stream +H‰¬WÛn7}×Wðq¸GM6›Ý ì(dïÅžE6‹ÅXwG–”‘d¯ÿ~ëÆ[_Æ3@`À’ºÙdUñÔ9§N_ïžo¯¶çÏê»ïNÿ®NÙ~}xyVßÿæìuòfsR«zm›þw®Q»ë“ÓŸÞ×êúéätcþ[+£6W'U½®­W›s%¿|Q~ÝÁ7ð¯[·Ê˜fÝôm¯l»n[ß|:Y¯7O~ÜœüøNúÂïñ[Øÿúåô/ŸjuöpòÏ“Ó÷Û{Œð—íýµZ]ÞW?½Ñ§oøùL™ºnËpFõ;Æi8΄YK„m‡§ÃKM +¯³ýzñý{µ»ÔU³¶jõ¬«aݨÕVWƬZÝêÊÚµS«{õÏj\ô¤«ß]ªmÚu¯VW +>4ýÚ«ÕöëÞi‹KásÓªÕVÚ7þ¨ì÷¤;|òIW—Æ#ïø›;Ÿìø ¬„ðaó'zÕÓ6ß\Ѓ×Â"[ó¾"a[ƒ_Ýã Éz|ÿL =>à­´Ãç°#òJ}Ñ¼Ó Å<ÐJXwŽÑà7°¢iq ¨ƒ¥“ŒÃwºP.T¶Ã°®1`®G½î°†œ¾rá=Ð/Ó õ6ÚŸ£d]¤@áv)¤ëö€vELšBOe‘›4tx¡ðº•úQ9=–æYeâ $#@²”}ƒ[¬È±+:ÚЙ†Räß,\í»²xKY®Ú¼÷ŸÐﯢm Z]3®¢äˆ? ûŸ!U©ÞËH™ªúEî¤\äKy ت±¡àö=ÃDZMŠü Fh†Íz|ø‚]è0“ƒˆ»3ºÒ¦Ô©®»¸»Üð9,°%ª}B5¯¹b\o…àì!¶;u0³Gì5¡øÛ%ÔKœòüîR5tøüóbèQ‹T¸}V-ªbWP +üìiãÃ6”÷o©´†$†¡åûOh×–ÎÄ\=Æšx€S¼”de${©‰)ÿ§Ý€[TTfŸÝcêÜ–g›W_V(%„VÑFOªŒzH$0%v•aÒKµ¡ 'ÈÖMɳðôëÜwžo¿äqª5t-PAnøQV–-¬«¹Æ‚ó€I*×%lhèˆT|Š¿H-",òW¿­tK’•XJ¾9D¦ÓÔ €|…Šò3Ò-Dp&½r¦h»wA|ß+EqÈ–-ÅctÛcºµŠÉ¿Å|ßMåä=|õ¶x€kñãß´v–Èø˜4M–&º%Ã6Ä`ûRº6K×7k7´’®×¤¶kÝ‘jLŠ¤€.ÊA*t‰òã ÈPœ@zP–GM7ý(õ éw(ùx‡ÏÚ ×ªðþR“÷ØB/>ØŠ\ªOᧂÏ.`g||‹Ð ÕL“ÏD‡·Ð}<éz’âþ­n:ص›Ä?Ø°QGz{¡Õ¸ŠÊép¬ ·ºç2™'ãGD©>½S¿j_k¸ö·GÜœ-nn“Ù\ß/áÕAùºÞònØÙ”¾o¨=áô­¼ ·aï¡ +Á ›Ü…Ñòë}.wŠì'FnKû²˜Q™ÎXI=§<ºô5‘ž=‹ªuÏ7©žû4¡DðAgþG]¬®) ®Á§CS‘8û«sÔG’?ëp=ôLGNyßçæ>V;KJLo¼6†ô·"ÐÝCM)§ƒYBW½ѵW~ÂÈb†„¤ù´òJ²GÚ‰˜Ê´8í\45d{0 +’š|UA`Æö*H²q•œéµ&”üÜŽÔ^X“Û?n&Dpá5kë}±—Ã:áaií\>^9§G=¸ù6áSã´8žÂ`ô$u§ýáðϺ .÷p¼¸ /HGniŠñx]ß0`–­@3±‹F Ï›§'Íîf­6¨·]îàbíÅ¥kúÖ¨Yµaö©Àâ¦&y-q¼Íç§dø{–=~¤/1Ps)#9‡”eoG q W%´Ó‡W¸¡› *zÎ'MírçÅ4m´iÚ³ûáj—­W‹öÈ€ɱ~úÐÙº!'3à¶hÖP”ÍX¼èiêý€=ù‚Ý¥iAEÎbó%´P¸@€D?U®À8NN¤1ïÿRT¯Ô.¡ !Ïù"ŸuÑX“¹â‡rþgZ×æp‘£F¦;èU¡gR+âl§PI°ÌÈ—VŠæ-•·×Tl¢Z„J1ÅGâ´\9î{Ká¼:†çºÇÌv0ë:êâ5–pÈ骰_“áÒ±Ñݪ3ºÉ/åSõ‚‰ªH6®¬QpoãÑRô_´c-nK-.êM‚G0÷%̇=0Ïh£ø†«ñ3ò}G†”>¦@š çðœÓ¡º’a ñYS vQÔƒÐÄV³9w š#!Ó—ìú¾™ÎgF}Z®çÝ#:Ö&÷:—¥)¡ž˜Ï(ÇÌ´Z3­•±Ðm0ž+vС AÉNiÉÀ„7da\c2BÁE¦TkönšÅ<XmÈ*vle‚c°!Òƃ +neŒ9òâ%Lx›Ù뻉¾—\°DŽÔ¬gø¼;C™€üßí£ËfD—]N—r^v%XB8Q§¨üžaýM=H)÷.OÖëh‹ŸÐ|÷"SU¶yt2Ñó4ó.Ððœ]=[Ëï”­PflŽ¿®}£Z×gÞøLW×9p °æ”ÿ*ǃ&d€¿|š(v€çyDPè^•ÍB¢ŒÝɃÜ|5̹KA_`Ý/—ŸC†JÂ.ÆÓ—Éëg'#µ4G…™ ä2#Á_NS †*yÙé„•çý6©)5j|P2-ö¸9ÊšR,ê~‰—yÕ|rr³ÄÅ# +ÜiO¾JWž±$E{'<›­˜Nº;dÀxÍÿŒÅ-ª’ñþVýTNg0@¾Žk¸ƒ—nÖ &ùèG*´‡¥?ñèOΉ¿Ý&/a®~Ü+Eªš»¦¢ëw„hƒïÿ`Æ!‡¶n²A®.]ô·}É@°%eÔ‹®X*7šQíMá_È–~#©’`:!ÿgÌŒ™ ü‚ä“ͺfêÔDiX?ÇûËJN|šiS©öR7)¹Jô$°æ+ñ>æøC CPiD ×Y]¶½ì¡#P›â¹41€jÏýyRš’2Ü"R`¼Mþr"þtpât/‰xü{Qo§ú[ÔR¥Öêlî^¨®k7ád(U›·ú´¡³¹åÏH‡/0ˆ|H‚]j|þÂGØYG,{eÅôj4vHt#WNß…RfÓ‘°Ê@µ Éü)0rŒ*m펌¶>JÏG™ù" ›¶ÄL›‰aº½¬F#Ž\Æ·^z¿v‹3ûŽ2'‡Ðª³µõ³ntkæ;é>*&—OeÉ!0sÀGd¥§ogÁÎfª>wê&ºÜ†Z'Ò¢J4c:=Wè6sl}F7mä3W–åæÇÝx¸h1þ¥mä1ðk˜†\ס?›P69U¥Á¤¾*s1Y€´É¨H +ú)Œ{~ÒÔ;ÂM’’¯%ˆZG6êLj?»ÚٱˎÆ.ŸËõÅô¥$ôf~Þp¾ÉLä†û-¦ª³¾¶IÜ‹$ƒüwDÉ b¥91òGq|Ư°A‡;¼Æå[Åîá\÷\KùÞÔùK…×F'LR¶'~¤m“È8ä¼Åœ\O¿L+ü"YBÚ<ÎâJ#¡ú uä‰V FŠ@EJ#Ö(ÊcÓlçÒüáÜÙÎ40r"–¬Ô þìÆŒí2ÆFÖlGÍdb¸ruwÅÅK7)Ì&v¬yøž÷}Në\tç=1Õ„“ö–‘°œ¬ü¹ÉÊlMV‹éœé¡Ý§‚ê² rP@ÕÿEUý"À˜œO%¯1sn&R‰‰Áiì1ܲº2½aMla,ËüúòÚ ÏÃ,;F\í\`4®ÐU¬\Ì*$Nק“Ηæ_ Ûy0cÐ\ƒéË ±ŒE ÏÌ \OIñqñÚTŸÌ0´*n¡©\*Ï¥ëÙpaÝm0fè¶ Ð͵}!·üœæÄ–Aìb/Ne#ÍšUì§ÐNý/øpDr¦ò7³"9;ø­4rZ@lS'¦!®CJLÔØà$'ìs†¸Öšôbø\ö t`*?[±75õ¸T×+Τ›® $,fÊL~Ñ8>‘n¦7ÚLæ7à» PåãŽ;-ÆÀ/†€LƒõNÒ©ˆ½•üã×ñ—µ•.Öd1NßqE脧¨Ì°”€¡±Ð³WLš¡éa£ÍÄ2rÂñ_CV,«Ã¶fdD,Ô™áW¦¥(ðU} õæºÓVJÛ¨^þPÓ,C¢ìáS3f¾û¡1¡ÈdùucÑý‹üé+þÜ´á”s‘?©d ÍKÿ¦¹À•Kdœ> JWˆRÛU³òVÌ;y}Wl5õZàõL ™Äë5€‡áý÷ê_]¸òcð‚“&µgñiG‚Ê‚'ckDÈ»Âæº3ÖÂŒUh´XîœÈˆiÁ‘Ð66.J«%ð {= ˆ¡T„[ÃsZ.ãyÑÜ`;Á φ6ë# ]HÉÊFËJCW²«Jˆ%’×X¼¬^ Ÿ>Q9’Fxí(©…Ï!Jˆ‘²6?9kÚåÎãV®áöK<Æ4‰Q»¼*‰æxšÂ·#G÷s”Buo&G=”iXDÀQ€Ü5ã&ðPžD¿H\¥6qpëmÚW„RO?œôsAfûUæË0ç5•ÙAp9ètÓ†2íù >Ϫ+(¿2NXªiì˜Ø82^¨÷ÝPÐ` +¥ï2&’Š¡’ܧö.ê^÷Õàú±;«‹¼e슻óxõ»£îu}úÕ¢ gÑt¤:µ6G˜zŽðˆ]ûõ0–zÆ5=„îÈÐ,†^8Ç7s0±üÓ¾‘JÕ}GA+Xxì Þ43`£žèŽ¸y#Ë‚¢|Q9““,Éöy‰]‹#ã_ ºkF$ᄯ ÄÌr $KM/¬s˜¶åá‘¿y¢¼SOöx*ˆÞ@kQ_á±n“¾n¦RU~5Ëpdæþ‘;õ&³¬*ÕÀsßÌ7Ò3¾r ¿Ð<´4µú<µ¶¹A2¹ëpÔi{ZWbþTÚò¬zÚF’aC×­ú¿ä6¦pƒóGg\–ÛÂÑ©_Þt–(„'!þí±åxhÎpáGe:|ò¢Ã,7ð?ü‰©ù;xw²–pÿ’ꢤ—'ªè‰‹ÎvE$6L—Ú TÊÿ0Ld4©gQöITó3·ö&z?$ñ¸ÄºNbn’ݦ,¹¾SçGÏÜF¦@.N´\Ù_Cfï£qW0qÊRìo^xà‚a”öZ{4¸sà•j¦Ø4ZøTVŸCùðËo%‘)ÓgZÕ |#é¦V·íÏŽÖ—œH ä‚:KÊã Å¯AÙ‡ÂþÏÄ2ŸþD©=~zªµ¿^}Œ|Üá¶!£ÓŠû©3%j_M0L)ÛÑ„^÷–k°ND`+°ÖDp +‡’DÒÏbõ¤e릷LbÜÉÞB=ÒàèJrçv{ßÙ E£Aq‰b¸ß29A©4R>Û¹šf+0Ïl ¯ýßÿ¾sN`'ƒ0ØÁ·P¿P¦×À:ÑÝ“ä¤Ë¡j(*„:yˆBQeO'BzìÈL`Þ +¯ ©ùHÒ"á#<ü7/½—‡€  ýY%eõ tôD\å”,–ÅPAO-¤+¹ +«MnõA™/«üDp@zÓé Y‘Þ\fóìÖ<Ï[öh§¯Ú KƒÇÚÒÂß_ƒ¥Å±ŠE¿zžbbmë³Cõ‹Sáà +cŸ°ZT@\Í- ‚ÛQ>ö°-Ó1”sü†–jwwÂ`ÕkÎ F ¼Ø›^“Úþ½á6ýÒöm +àËõ%.ŒVìqÅa3t JÎ'8®ðAü“d'ô~¨²âýBN;²Y +é@6º‚H»&Ô,y’xvX"Òàg(Ñ2Ùh* ¹ã <¨!±nû ßåqmÅ^R$=gŠÙÎùb¶@œ‹³Pí,í&#P¥r"«¯ðƒRÓá´›yTy¶ù˜ +y’3SÓ+ /Éu[¯Æ~Ñ™=¢¢8"ºjr1«¢ Bž\ÚC¼if0¾TÑùKGÖSàugI>÷0žOœÛÒÀÁ^Sy2²˜Ìẑß‚2]@Ù1›Gƒ7Òà+óò¥ÝFóJ¶U[Ñ‚àM-÷Í®.À`’ñÿnÅͤȡÒ> +stream +H‰¬WioIýÞ¿"?vJTuåUÇ.BâЬ@«],ñV#¶1àcºÿýÄ‘guU»Û^!ÑåªÌŒÈˆ/^¬ž®œŸú!?^ý[¬^ß^ýü!ž£k=^æK °ÒèêO©ê Süù‚-–òÕà +Êo¾„ÅÓc\à­Á¸tÚ¸Pί¤Å÷—˜Ž9„ÔaX,¦{N^¥({뱑•Ã­ŠñµT^£q¯"£w„‹žä§H+ ]æT6þ¦Ý8'h¤£k4¸ùLR¶Ž¥¢4ž¡ Xxr9ãׇ‹hÚðH uG Ú?ÇÑ­°—ðfÀ¸žSÈ>yœEg¿ãJBÓ·"KöÄß÷V잶ÉÀƒPŸÄJ;躋XÉóðË«åš®AÂ0k˜s‹Aå|QÞ¨(mé>tA®ÄJk®’oÒøà‘ÏR\ JºÎ¢„æ5®eµY8a·R”‡ïãð®=J’?É €§[T&TË€/"ty»Ë±ŒC”uã #&Ž#w"2܃WŽÝóuäñ²ÁÓ:¢+êtÏžÁëK‰‘˜ð#ÞÁÖ®¦2¬¨‚ßào(‰]–ÄŒªáCxÙ58ãÎ #Hô–â”®£ˆë)ª¦ø®å*Ëôç]ÉJ¤¤ßX‰myY‹ÇZÜDºèq€ìЪ] hYå²f÷Ù¦¨¶3m!^‘SeLñ‡Aþ¸FXXê2„Ü_þKÆèã¼xÈæÔ“ÇÜãÂxš‡ƒ)ÏH,ý€ývÌ7CÎ7/¼Ó‰×ÎI`Ñ.|ìPi¡ü¹F´·™Ï“oà.[P5wƒZ¼”¬t"çTík»ô/ôƒ‹ØAØ$ÜÛXî©£g7ÆKu±?àì>€Ëqà\8eûÀ9ø7ÃcAD$qÔ±÷’” Ïkà:¯9T½Õ»\"Í4‘$Ñ<ý¦Š` ŽÔ°LˆÀ Ùs2‘Å{ EãÀZ`ÿËl@¬Úf–†ŸøÏÄ–±e&æøûе£VÙͦ¢¤ÛS*Çr·ãƦû,h[Ýä +€ÄgÂQÔJÜŇ¥tÔ\²{R8¦²¶NJ< ”Ë56‚,ðÛÛßó ׊=*¬aKêy¥ù*¡PTqˆ(b`ÆpeCýö­ìIЭdKµ¢°°´òA•´dk€±ˆ\ÉŽ~•t=~H [šé”ìé^$.ìéÁj´ZOàðØt%lf%<”I’ð ç!F³"æ.¡I›“¢óQj#[β"¹…3dÁ?ºÁ¹‘ÆùÏ2ló[Þ qœðmÓÛ  ã5Zòeaüo(èìü’®¼¤Fë»i<4(G?—‰$§Ž·|¼ëÛˆˆÍl¨‰ñ(K|VjÝ‘œÂ¨Œ™|”8d} ²9j‚ÃcbÉ…ä”^‡Ù–˜Y¿ÖwKøöÐQ¦åð‘$FÉN2/„[á'Ó¿‚€Ê KˆŠtËÂò~Sp œ$êòuìétãw&~œ¯ˆ»* +8qÈ|9¡º™©êhtÙ4öÆ"ÚÃ>b)CÆb©kFä6£ÎÝ`2už¢Fá%d´ù¸{e¨ËR´bð +)“òërD\MÇ‘ÔérqεÁüf#€'©}*Ø'§"KrÎa°Ó¹ +A‘Ë2Œr“æf_J]’^*…?*¤›Å™3 Z"X€³·E%‘ØH¥vŸ"ؾKƱ•T3ü÷±ÿ½ñsR,5¸kŸ‰“ñ´?Þ;UbrF¿»nÈôûʪ …Úr£¤àÿB?»œ¶`79ç@BŠæ—â°5/eƒVLk¿¼Åoy`™N¶¥Ùó#ƒ& êä‘‚G~†p—}§\Èì*õ¶Ì¨Ø$sðŽ‘&ù‘Ø/È4ûø¿¸Ñäé•c‘Òâò´|ÎC¡î½+æ9„Mv6PJ£‡ ‚vM£Â÷­mTÖ3‚eJô‚eÃ)¾•ç•ˆðÂ×dh:Í¡mÒ_ðáU|^)xœ(ú¦1ÈG41d6j¡ÐËýÖS¯9&ýè,Ϊ²/¡á[g )Ìkl̤Ëfø-«ÔY¥@êÏfêOZ~*ô„§"o;dÖë¬óÄF¶?^í<^#œ\“ý/â*HÌöàߌ¾ÞÆÓ;ØJ²ð)~ƒp½´c'‰ãiMÂGŹœYJIè Æä ‡!úRÈÒv$KOdŸÝ%’ËÒ½ä© b'šs+šër沜`”¡Œñ“q0Ž*ÓBÖÀï®a’i÷'™6;ï,g(6Û/ëtp–}veh¾ÜJî–БMGZ\µ¬‰3º²5ý F’F(¯M’óºšëÆ«¥UߎæŠòÚChT}^Bú¶ËnÌ©sBR~>:;ÆY×@À6ô–û³_ßLrjtÓg#ÃuFd‡C•¾/$ÎhNšPóqá [³¡š)„Y¦/v†yÀysÄÒÉA?£ຠp»io$F´G¾åšaÍì,®ô JZ<üÜ”0 Ú•‹¡Cärî赃£-µ O“å˜H5Ï„.½at(Y`F«…‚´ +¿ÿز}1‘ +`eãàkXŸ-V¯Þ6âl³X=×ÜÄÑéb ä b8»¾hÐ +¼ÇMÓ˜'{#:s±Ï£c{»ÿ±¦¼Ö‰ø†WQt•£#“ å[}¿|Žù´AMT“Ae]g½ C.µÒÿš¹³-âBqá¹ÊSWIF£ç‰ºiˆ¾ÿy@ÛìíCÐh½Ü.”Ç‚€öȬ¾_þ¦.E?àC1ôõ^?’ÌAT¨=øN¤•iæñâK‘PŠ44?òÞ.'f$-Øü +OÃ|ìxMRàò¦d;&©ƒ@Ó=4®«›û¦ßšòØC@3<4™Õ÷ M*Ë5¦4ÕEú„e1m¨CÆå=Ípùoë¾u66;Û®—ñ–*ÆØ­HàÚâ–v‹[ºûqËÐ<&F¤{ÁdP»`R{Lý˜dVßçS¦ñ‚¶EA{ŒMâ}ƒÅžKñu¢±Hâ~äQbJ®p¢Õ^xtù¬³u<<ÀÎ/"ª˜4×2å%Hyõ1†÷HfÝ/æ¡x)¨½^ì.¼”Ç‚÷¼dVçñ²% oº`/"n6&&Á„j¿½cN ÷$fvúž™ošy¸ýýtèÐíÊ|yì!™ï÷Ì|ƒ›ý›ö*é#·Â¥Ž"àÖT‘µsrÆ ``œ sˆ.’¬-–"AmÇãüú¼ä#‹Õª–‘“ZÝU\ÞûÞ·äa1A@m¿h*É5â(ãŸ8Ž£ä3Ž™Èˆ/±+aïYyP°I’ŽÍ|+cìå´YÇc º 0%;¤Ó3S}ãü 1E§ÕÃ7MLSi/¹9ý¡ð„OþWbÒËÎìQØð/.0T‘Tñ?Š“¥TÁ‘=Wø0¿y²aį÷KQ?b\2·æch>^6;ùT‡RÛ*gËÕ¡zÚ‘‡—ê|Å#ζÖÓ±[>¶ë¤xÝÀųŽ¯çåzòÃíÞÀoÍ'øqÊ^îEu,>|A€Å2Px¹ï²7”³ðÚ£xí‘Í ® 8¡LFvüq¿ß[uIPÃô;Alþ™¼üØè«óUn6×½k54-ö¥Å–”„åæñu¸kY›bÙí„Õµ[­  ‡ãU¼éƒ u¡M}û«Öeh3d¾W9M(ä¡6çËÓæ­~£ÖSµë?O>˜žY;Nlf' ªÄ˜´Ãß  +»A½I¹“¨7¨ùgãXlØ“\‰.N¤d¶'«¹N\CPYáðÅmù¥@¸OY,Í.Ãv +7³#Ó­×tûCÞÛv9ÇX¿‚‰iVÞø•˜0}žY• +¤Ä"Ö9±WULWÍcáïßp=øPµ£D÷~ÿ¿4g'fpì€â(±ª£¦tTÒ‚”¥ÀùGó'Ó“¾œ3´l~¿&%e\õK"ϵ@&ÜiÎQÓê0 ’ŒXJIK°ài‡ó¥ÓnÙÅÓ•aîÇpc×3[ÄÌØ£åëN¥ØŒÅÜÃêrá-ØI¡„.p'¬‘ôé†îÚeÖëÛ‡ÏÜÜ®M4[‰^µZ+ä_çz9ºä¥u=ð‹KüòÄÏ ‘Ñ ;•Øàp°ïáZ:nQë>Cî—û¶@ǤëOÖbêÆ¡éþÉt¾¯˜b\`Y%¡L^7Í;©Ú;4ðEŸ A¬dÀ–æÁn6›ùõ¤å™´†Üã{Ú§¹c’\úƒ›ÓU÷M ßÖf_Œ¨šq"ª¨~\—c{wûõíý|ÚŽÞf=Ù™ÿÚ¸öPäÞ~ÍL¸1w§Õ&Æ„Y‰ÉB½˜BK«UM£BBSæ$-Q„²ë‘Ý%>Â/DXß›ûˆ:g$¢ä.[‘oBÎióÞ8Ø/Á–¹>óyãÒç-ÜÏÝ’Áu®ÊK”ðÝnrÁ"*,JÈEÚ©ºUˆ¼Ò´UNŽ˜¶ ÓidŽ€ìXÒ´‚*,NDÕ'¤§b`Li 6:g>êmÈíÌÑR`TÓÖ7'%dž$O$¬ +Ô·PJ’G‚ù½ÉrKBm>*%xˆ2‡‹AF²ªœ®¦ÔÑhºÍœUŒžÛ1åÙÅ­+ùÔ 4kT£%¿Fº·xÔOªöü˳!E»ä×ӂئ˜9§q³g®È¤¹à/Æ:®ì²DA›Ôú9ùÀQ~¡Ú/ª ÈD\.q¥h7Å"¹DŠºa–eÙß ùòÞäœ>4ª¼#WQÎx«^@,Ü%Úœ˜‘£þ’y]ð†äÀðh„œ4ÛÏ‚gWÏ;ezS3¡,#¯wn(ò^—¤ô#ò> +stream +H‰¬WÙnÜÊ}×Wôã4à¡ØÝd“ ²e¬kĚĹÁ…vË‹Æw$yÉק¶fws±Å$0`q¸T×rêÔ©ýƒÝÝõåÉÙzüxÿÚ}òc{§žõ÷à¢hÔj«ÎôºS«üvøƵ¶¾pð½^Ûr7LUÀð^‰_D[ +Þ1-¾ó^¯k~&«C¼ªÔêP»_~««®°jµÖ¦Ak» ]áïOhµM¾„ÛàÞœŽÏûáÑC8Öóùtè \Ôxq«9¦ÜuºÁonÁ¨£ê`A"xŸ6xïŸG*±ÏŸ«cíZ|îƒO¯uÓ`°ï ut£7o ¾Ÿx\ñcÓâY'ÚÐHös7!W_ɯZ±y ¨Z’礢» ¥ÿµùkÈŸCΦ+ ôÇ ¤ ô&@êO·Y`¡±h5z× GW”@‚’©§pƒuÃ?.ˆú‡ºÅ¨ EGçü©)?÷ÚX´‚†z”h®’› m)ɲºÕ‚œ9tž¨¾6Ô,§ºÃó°7Œâx ¾÷ECB*|DoŸjÛöþKtp®£ø¾a<.‰s÷ˆ‹¾xz]q[.O¬uœ²SpŒŽòb1$Pº&@»»å¤ƒå_¡7¢“KÐãô wbfàSl|>ÁâGo©,¦Ã¨7˜×µµøëÑ_%ãù…´Õ~æÁTʇÀzvè0í×}ä¡w4Õ‹ááÃòp2ñ=J~†/&ñíKÍ=º•¨8­´31\°ÿûJ׋@-à‰Ûðøû +ãï"¹Ø‘*‡pãX,UˆBˆ Ð50ºnñw)öÅ柇zÝày× ×ÛŒ÷vÄœs¥0üÄñ¼V‘Ó¬Ç&㎴…ÿß YøØ~µ Kø♼[bS×ik‡Þ9M–KðWesz¾…d¶Î0öúÔèÆ¡[ÿE—¾Ž Nl#ƒ§BÖ3d]Md£Wh¥ÃÜAuM´u¬Œ0˜Õ„–q‘ûž3/~'ÄYļ¥#>ÉüØ +Т[a®8ÃÀ{ƒ‡·âs°DAßô 9”°Ø“`Ë<¡Ê€íà ôsD¯#Ö¦¡|6ìsC¹ªÑÉßµ®ˆŠ%ˆ¨¢ø€%>A‰ƒä:_3JZÄ,b&=uʱ8ýVqgPŠ,ÅÇsÅsÏ!öïB(353 ‚€?€¹Nï!sZBŠÖtɼÜM†;íá¹ð?•“P<ÓÌõ †ÖVž³±Hº5ÿéÖL+ž‘tk&¤[“J·HgŽ8æäÉàdLXâü~~×Æ„'“7ÅC¢+¨ü*%ØœFUûà†<é‡÷„Á¿ã3¸ú-ñ  Ðd2¯œÓ¾Xöuÿ‚°­Ùj‰ÐSUZgtÏón5åöK×a®é¿ Ó¢¦&ØBÏ­)åǘz‹x£djƒ)Ã'y^:Ì •Ú¦¥ž;ÝÈém8–£¸ ,Þàš¯÷HÜm&$ ©É4X7½– ILæz3Ü2WX€Ÿ÷ëF—³>f ^ü·`—×i¥@©j¾jLuîô`ÚŠd»0 +Kßp<îä­\¡drDÚÑX„¹0­ì@éµSbNMðÞ@‡yäûÉ=£Ãöä´‰“í¡"wÓÑXòxâ“YËïåè]/ZÇb•Ò*+hÕ¬™Éí9Œï{ä}ƒoìÅH@ËáQHù|,@]—Xéæ@×ÀèA×SÊ k8•h¢2â„…½ß z?ÔV/™Ão—´‰“ic¤YœndêPÀ ÂoB ,®Ü&ÍpV Êêdåe½þÌPó¬½8”d#•i[1ÍI‹OÅЧ%çtÜÃMÖ rôLãIfnqÚ’ÕVTÖåe>iU™#­Ešw°Ò¤õ+(ÌŽÊÚT<ôÂgÍ»í”âÿÔ^&•¥~ê7NÑ<»0‰þûý6l# +wÚnú$Ù×aáÛÅ"Fx¨ÑŠp+àç€AZæ—ˆìÅNتmC÷é/Q̯ÖPJ•ÍfÔ¢$߈¹®8e×Ôg*ŠÀ `£,µt>j±ÆÑD§–Ìd3À À@eG>jÞqE½Ý·Q&ìc9™Å[gMÅ}†x0yRËýP3 õWóý5£þ‚ª4M:ºG„®¢°BUAï5ãi¯Qy™_òFÉ0LÙCXç ö SZ›, e ¦d¿ ŒÐuš`—·¤©\-€è/ÄÏ™’‹i ¹:QõЃ­´wë-%Œs[y¡bÎöö²0F¨®ïN¤vî¬ËVPòÓ”và§óE骡°Q/¾Â;A¦ÖHÉýt?"0÷dÙw,•*T~²¥iªòP;”ÒFX‘º^k^Ev¡¬±wr(äBu‚ "×p»Æqo}ä´:§;¹‰p +Þ-à€Û#yáv¤Ó ÑbOÄq›9·S=àH±0Û©ÉÌ[€œ*gIÓÍVÖ&YY3~IŠ+N©ÚÊdY-U8YnTÔo‹÷¼ÔÁ§Ô»˜g¿‘yŸ=“>Qãh‡t„–ººXîÎBëŠGK"0˜Å«Á—ŠÍWM¤âÿ¸mdéÚͬü>2ùÊ3ô\²”œ>‰ú‹€ùM»ZÆ£Ìqå#m(Ä"<ƒ õB[—ü¦‘ñ‚zëÐÌ,^d߉ïç+@ï5óÍUˆÂj8ÐØ_¢“Ƴmú"OQÁäšD—h‰]ÔÏYS,Ámóܦ¸Z‚Û6ÇmÙÌá¶izªIç+/q<˸è v®JŠfj•ÌÔBªM„.]–—®D÷}bêo½‚€©÷“y‡þb©÷Ú8A¹šãyDž¡Â2Ô ¤´¾ ìª1C`]â:푉¥×˜ IÒ˜éˆðùZ9Ñ]gÃî!0L`²†u™ÃÐÍøÊW‰~½£i™9ßþ”?C,ÕãÑä¸ñmƒ¿e …Âíp[”ÿ¤(™F.åµø»d/9™»U’ŒÐt7Qò¸'±¿R1yŽYOéVýø%ß ¡ò—³'qŽó@ð,Œ9-7ƒÌi²ã‰*r! ®33®HetÚhb«wéÁЮÍ`‘*ë9üâ‹ Çp9Š=CjÁKÒÐtõ²¦ú„âÐ*ëÁj± úiÖ£ƒ}á˜:¡ÇeÂ1háj‘r‰>÷|F­•´M «®è8‰"‘ÛÌIÌÂLŠÌv ’¶cÉ· {ÐÒ¬ …z/î.,édÙœØfw— +TTÜ]Ž´…ƒÞ`Ui¿u-µ”Ť¼Ò¼²¯ [=C/]òÄšÈõ5S2«J¬bÚq! +ПµU±GÄËßu%"N8ôìà÷ÇøºE‘²n~lÆêƒÝ¸Œ¸ã¨¢|Q¯°y‚ÂS–68 Ë/5‹îbƒUâàþÆü~©Í%ó U›3%à9ö!ùn£ïF~ëZ˾ƒCâ9&ô†F])]CÞDàã_$›ð‹žÂ, ÿƒ\6„ù¯×'𔉅xþz+6o„Vg¡mJŽ¬¤ fJá¼+¬-[ð¢Vÿ ×ÞÒ¹twpvwòisñýîñ‹ç/^”eÙ=yòDÑa+EÂ݃"™ +Ï:c( ¨ñ3á·Â KÅ…¶åIøo èxJ6)Ëè#2§=ÜA†Á½5;·œû›©öÿa½ÚVÛ‚è¯øUPwW·}4¥CK 6ä9u7І Súû™3»Zɲ%Õysgµ:sæ\E¢bsý4Ž4yé:"½%nˆ(ø¥¦ò\¼iÛåx9ž´‰X«ÐoCb§¯±ñ¼'Ä´2÷ú˜9«ˆ#ð¼°ÆhŽ¾‘—ÆJ(œ‹iü–ï;þà +¦©0J‡QN,ç2Ï#;ª÷üJ¸Þ9ðß#ÕJ':­·OX}ÖõGÕšÄs·Hϲ"êòŠ³<-Y­A)½±PHÓ™/LøÍò&6³¿{¹¶ò6fYpqW¸‚K/W’ßÒTª±DµaV]¨òFb£ÅC=¼ohœ]€‘‡¶¹?´.P“ hl,|Á8–aà0²$‰ËÈ‹~¼{J·#‹$Þ|ÝË‹ít6!Hù¬œ²MÑÃNþÜå1—hQ­:=î²€Of«r$daDoÒY_›>7ºpâõ9%Zàºn JȧV8#Šœæ“Ä‹áU£Ëšb~¤Ë.+Ü”#õf6-¢¸PjÌ:d!k3GYÉw#~÷–1ö˜±&*PqãÈ&ðŒ gêVQ¯zèñ³¨À*\€Ás/u¡Ý¡Yœ†Y~ÀÌ*È8ßC&ûYèÈÙ_5!D:û é^Ì­ÕI9ƃ²‚ƒDhÙ!Dx$ +V¿d“êäC<…¿Qkª[²ÒcSúOÇ+=­þgÝgñ®ZÝc{.ii½iíšæ$… '%v²æ¨¯wÇu™§Ñ‚Ó\œb´àØAÁá<«Åò7:£xŸmæœF4¡Ä‘ðœÉ9o™æ˜¼8_蕹햂~—×B)*_²Z8óp·Cœ³9jLìáÃ×¾7&m¢ØƒF÷ ØßÌ™+k¤ µRÙè²Ñþ¹0ßc÷(£²ç5'ö*%Äï"f€Öxs%•f'c….,!#rvZ½©ØDóD{ ]$µ}l¿¹ª›•zE•ðmsÏÓ¶ïQãΚ¹“•ŠÝÛ0!Gê›ü§ä‰Ñrc—xæß”É_áçƒUL€åÊÄ×hŽb´›ÓïEKv«š½[cü(ûmÔí¡¶Ñ–…~Ex™ÌX©®èB„œodSNê…7ò\ +þ?…«Ç= +endstream +endobj +93 0 obj +<< +/Filter /FlateDecode +/Length 5694 +>> +stream +H‰¼Wioܺýî_Á/†€¥)n +‚ÎÒ E¶"~ȧ(oqŸÇv=NÒô×÷n”(y<žq_ –f†¼¼Ë¹çÎ÷nnÏOnÕÓ§ójþöð×Õ÷[õìÙó—/ÔÎóýF5µm=üw®U7g;óןu¶Ü™ï›¿7ʨýÓª©ëÕþ‘’—Ÿ*ÔöÀ_¬½r«M#Ö×Þسؙ™NïÿcçÕþΫwpÒ?á Ü{Á<~z;ÿó¢Q/¯vþº3ÿt}x‰¾=¼[ëóŠ|Ì÷÷¥HPF)vÑ›>òÐ¥Ú8ò}ˆ üùÆ1ž¨Sm º1Â×ð«Ç‡Iü¥mkˆî'|m0Sçà°EÏ/5$¾8SðÖŠÉ™X`v þCmšÀP6a(öº¥õ˜1ëpðóE™«L „‹eHžÇ'”Ë ó`²Ãd.Õ—™v O9Ggà§Z›ˆi?Á"~öší®:*69èêfÑ€ÃÓF¿·«¸^¤ ¢^™6È‹E¯u‡ÿl¯%ý…'ïôâPGüí+®1TÉÛý™ç$,eÇ®Ú^±l·º¹T ŽèAµDì8Ò`èѱvˆ¤çFSú1ÍÓ:]¯Î-RWSN0‘ÇXWjV‡>_}zÕR¿¥?Ñ« +—†ÂN +‡Ž¨kpmÞðQWR¯´”åZ.¥¦ç}ÓÈà5·ºÍá}Çú¦¸àý vvdRL„¢qÉ?Ïþ™ÓtúhCr>Ûâ{E©¤•v”‚ ô k©Š®ï{XœPE¢¶Wqùj`…®Ž=°Š°+ Ø®L»Z“\!‹ZGÛ ›=f¨UJØÆ×n£1ùÂæ1 n: +¦S¤Fë¦IcyÚ4Mû¬˜‰kOMqza¹ÏÒØrr›[6ÌÓa¢4'*Žÿäd¬úëešXÇЦ‘+³7š¨çR;aFëxîY*Ñ rýrˆ:—‘%=ÔæÁ#M”×%ÜvA$ ö4ÍÚÅYßqÁÉêùƒæhÿ>t,Ñ<ó$¶ CŒ¬´D¿F¸¬<úµvt g +pÄImn$Ç $”ÄŒd…’ y°D—‘“ÙÜ·>O Z}-»`µG?‡-n›’‰æº#úɺ¢ÉѼ#âè3£-MEGzçJFï¶4Zδ·lÔð‚c¤4‡QP¢—HCn4e™yšKœ"%w¾yçE[ ѵbñÙL†Ñ€ÁH´Ç m“  AWåù¾DºÌuÓyz‚ô˜0$ÊŽHY‹™©Z70Áˆ¦!Cf´Î +AšV²ÆÜËÔ\iR¢8¦¬eLP>/q…ez¦Ô[d§Ý’—YÜ ô”YïLãCO®p¢›rÓØì6ÜôÖ/¸Éûû°P|„µ7¥VË„$|d…&“™~ðƒ\¦ºÏâq©>!˜Ç‹†ÞÄ5—´d`õÜÛÊBÒàköo™y«åu©B˜ãvÕMÇúfÝje…àUè·íH=Q_¬5ÚÐyŸø:sHS;HSgå{ ºP¸ìacYb0|\ëF„5i‹#|úBXkË<·Æ·ÍUßS>†ûI(ßA>zD&&Q5¹R1²Î‰°ÞªÀ ' Â)o‰}¾çl’”ŒwA§†X ncåº!Ø8Ïd +j¡ tæ6Ü·ÖDH'¶)((À + 4ÒD½åÌ;ËÛðN·!ïà42A´Pêî"¥pá`öNTÇj}Ê×½f\.¬nÃWÑÊeY.xºÀŽ¦©F—¿¢ÔÓÛ×¼¢Q—ø¢0½»2qô÷Äò–Z}«I,nŸ‹ü"]WØ|€˜Ô aœ+q8§>«ŒjžÛçE¿,ä´ Bª¿Ñl3ÂD¬¥DJ Å蔕”%EIáÎñK'bªÍbÊŠš"1eEL èÈ¢¥{Ñ‚'•bf²îÆ·Õ”ò®éüHd¹Ôć”Çø!¢ÏàGk¹`žë~R½‚gfZ#ª—a—Qu~àòÒve9«)ˆu [V8Wš’ $Ú ¥­'™?LíøFO׺­‰'Ù5jgbv ÖIíæj¯b«P0[ÏØÖ{8z‚°Ã"ór÷žŸnòÔù1¨{Ò»¿T9whÓ1l¯hØt,á^½¥…x½R¯4s]`åk +†ÕzLM'Û–Û_!ÿÄBJ ¿ýEü:ó °P+¬–z3#NmGJÃä{uÅ7äâ0„Œ”i…z Z¿+†|ˆ\ØB­$7¹Y#³fãd€ËMŒl7bjx;}` =©/3äu#œ_¡ŽìèÉr<íé@¹x¡Ù™/Z{zÙU¸mîáô€ ou¤ú}ž Õg´úUhý¨ý(HÒ¬·Z¨Š…ã‘3@:ü‚ŠI—FK쪵C¦hl<]¼Lwïtñ4G0A=fÐb.‘iéÂÁ9’D®?áqãÇOP@å—Õ¬/©`Š.@P >gDÕ dÝYø…ÓžÕGÈuuÆsE¸r”ÓÄUÖqa Ù ÇWP›¸$• æ̓ $+D¬ö7}Ì,‰ëEìÄò6ã$mŠ,Hþ.°¡ÜHNaKt¤ïB¾E6|ý›ÜƒÞiÇÍПRyéÖvC—åiX!O \ÇLHT—ï’øÿ(S à´ ,,CEcé$¼Šž÷²VæŽH{õ^æ̓º7Ëñ¥z)Êì©ÕbRM¸3~¨¡nó…$,d¤‚±·hŠnÒùn ," Ö(S¶Ðë2Ù½ ’àsy˜t+‰Q;†™-9óAÔ ö‰“_JVæp´cUGÀ2q#9©—œ?Qÿ}ôÒ.ýhù_…± +éwcèÓm¯¨ÈVÞX]3)f ²<4N¬5¹§ü´øøªÓhôŸ‹ÑØ¢Ãm±Tm8‘ŒH=œÊ’Sš¥¦9ϵOß•27«—ÅI†fíX^õioÐÊ©ÎÓ¿ÍL¸Fo󚮆éËÈ î%ëסæaÄnÕœÓè–¬íúÓéHç׬yº‰æ‰k±$lŽµãÐ25·ž‡vKú§ ÿn½œq[É™ÎL°Z‘3ør/”¬áW¨˜%8´A_¤(Q¥e ˜ZQ½¡%Z€—\ËHÐXðȘbHì~ƒ‰gD•ŒŒ/—±‘sAæÉXä° Lc ¥ŒÄ ­ühF:ØÓa«èéá)½¹ÃßÊ󰱂ÒÁ/ŸK—]üSyj­+z!ÐV11YU-Ñןà…Ðka5g“s°"0ÆïIã=– +{²ZxR ˆ$' +!µ¹1gŸß9Q‹½¿tÁXy¢#…ù‘4'ÝTá'Ê:ÜŸÈ1M#‹Õ–dmM²ÖHr¸Z$°ˆíXÂoŽNûhÚ "45àˆ@¤ô Úµ…ÝT€Ž¬n¡?;·±þt¹çbQœ~0û y þ~k¥tùþ±r£i"³$­Ç“ÿ:†Ž¢Çïº;yòdˆ®ÇSÔãÝí~„‰QÍ}õ‰°¢¨ùLéá&4oó­ÕÞwku ˆÎ4(Xg…ò˜QËS~0Ùt]Åä ݸ$’¢c!WÙÿÐ^uMR#Gð¯èq;b5¨¿Ô/›»Àaî Ì /`vÃ{,1Ë‚¹_窱j©[£Ùáó ³ÌHÝõ‘••é•mˆèöœÍis¶¥8i‘A9äÒO)PÁ9äÑ÷Å”ê<„šx¨÷¼Ñ¡RŸñ_A¼Ð 0G:—ÍG7ý¬Èžd’© CÖ®ª©oz_ŒE0—l‡|åAK*ß«ˆeaÔvªÉéì³+æXÖSÍpŸ=¨u¥mèùã¶ysÆiÑI¿²`¢¸_‚•«ÇîzjÌ­!QpöÆ4Œ¨—Âjàú-ýVÁ^40Ñ…‡a¼§‘6!h(U4ô\XDŸ–½ûœ D©8Ñ.J¢Qµ->7O)7Â…?±Ftµìòr;0¼E.pBkÚÕ”p¾f”P§>‰P?$×g³ÄÞ2µõšÖ½¶ìôžõ [ÕšÖרԮK‹ÖŸ³¡Ê’ §n:)#ºD‚oÀH¦Û¦1\×ýió`¢Ý,2\gï‹cOW®s'«ŒŽvËú"(¯_—à ¯ÆëŠÅX\Op5ùÌTîÏM”yÄë7<:꣤ç×þ¥¨‘^Gíµ×]›t}¸%„£IÌ.´Úý˜økîc±\øóŽq*Á7­)î +…¤'CF‚ÞÔÆ]e•,&êâ8æáhÞ’ên1m—Ó9s +þc†m9Qüý¦IaÚßÓ“±gí)Ø+À±{®ÆÞ莯#m5ï(wqÏ,K¤‰áu1Ò*ïèÍ ¬“·âíE?þ¡V£& ¸Òú²5¢Uš,ÿÆ ¦E“´ÙêhenVTßCp{¢rhB|Î9šô?&ðW‚m×üÝÄÃQ Ãd¹^Í †¸Í¯Z2‡V&C3RƒÖüÊ?œLà2¬§ÃЇá7Œ;7Áä'ŽÒÈwFM^JsÕóF; ¡‡Rè‹ÅX±^Ï…wÜ,ÇöÍÖD”{0N[3ã%òƒ/æ)ß³ý\Û·ámóÆ9+~ä0¿×¥Ï!±g ø±w |ý®rÊQn¡í©,åVlnuu~až÷+  ‹­‰ Þ+Uî¶!lT‰Ãnp³< ä]ßïbJn»:´¥d.Îqqòhû ѱð…R1 ÄùÃá0±”bñjBŸ':&Ë.Ð>Ã{äθÙ&NR)H%¿”J;Hí©biùå–?m¡fW)v ó}Éo ¼6àªþ¹¢³•s#-ëÝAY}Á}½[²0J\©¼]Vq1W=’Õ¹•õ1í¬9¤ÜX àu³B¡–BVO¿O …b;½2Cªd0üå†ú×);»ÃN@t cª:±EtŒ ÛëÄõÚ~\¿pž¨èv~j}Qì#ÚnQdQOizPVYTÍÜ— +5‹ñgŸ +÷¥V”S‡c!µ Æt$ÿ;¯8\¶&ˆV/ò€{Õi283æ"—â»ÿ³º¹O ×­B+\t•gn/% #p>.[ìÂÛÓÁ꺲Iìi’»a\€å\ƒ?´<š¾ç¼¹œ&^ûÉ>ŸÍqûˆžÄÒ}´!p»F?þ8ºJ();åòé}ÍŸ¶¸ ;Ñá;ÕŸÔÑ\1æ7u¿Ú›„wÆ +$¸WH|4‚ü5Ì)<ñyum8B>š±“ÇÆÀeøÌ€À²UñÎàïúŠ’chY<øÖæ +Ëgõƒƒ?áä¨'GœÜIÈ냯"€ã¿Ðqjà`ydùü?Œ•Å˜”Ò£d±[ŽN¤½ä*`Åá2ú¹zÙ'… +j“(Z|ŸÌ(ûà ¥‚ôxJ‰¿eV9]Ó°ŒTŸh*w±¼"¬]áðÞœ}¯ÍcjÙ°œ»w5tõV(°ºa+8¿ ‚½ ÿqt0(DZÜÔl„VåðM<)êZ¢Í¢€| µõNW£LöÈ䑹b t¢tÁ0!{•Eô½Û–‚z™Ï±bÚøX餚ۂ¯‘à]þZ9Åå|7Ìk;£ºÀ+¶z—¯R“¨ÔíÇ‘€ŠŒüÌ#q-ly#æå›ND™J®lÒZݼNcÃt‡ +ð»B“ω9b-…ít—¸Qe×bŸ[Pm”mÒö²¿§3¼ò¶K²NrOV®“V´LtF2=˜4¤1š¾Ü¢¿QÒCqxDðVènÃmuMó˜³yºH˜ïÈ,$ªÎf÷äJ÷4.­S}ìëäNµN¤ñº€a¶‡“\\ÿ?¹¥¨n)Ͳé˜[rÙ-¥cné!¯4,¼RX8%·ê”f‰þƒ^É¥¥Šˆ ”uÖ͞ЛúaYÛW<¼…×ya¬ª ®Óôš„š×¦w¢?5•¬Q–yÅ¥…¸z¯&'e“ã×MËñu‹S;¨ælK*?³sÁNÈ[±vH».y]$ÏLÈFBÊ6ÌóÚ°ˆý⨤-íÂsƒ—÷òè«ñVÕüüÎX[Ø¥C]ó«N#!ðÔ—æÀ!¼ÔG ¶±h¤N½ät}è%:kkÏi —µÒ,ûÚ³‰xeâ ·ÈL–EZ½5‚™]ï0ŒK3SPHdg¼ï8oö +§à» +ÃÀ¶ú×*#ÚDS6…sÉÁ(J¤&¾SSÂ=6iPgÒ%Ð=>¿aó…êa”æ£ÊK§|ÆO@D ñ¾Ï"âJP·gÝ<`;bUß`y-ñh¸AnNX­ŸEéÞ½cNvU9\0d®œË»Œd>zÇ ‚ÍþR.‰þf¬B;;(Ò*I§K%‰ŽOµo 0#=‹açï­2UP¦ +seƪ2r@nD¸x•„¼ÃIƒ®Ž|a«î@€þÑ ¥`dו¸­d¸íc…ž 2Ü»Åf¡3E†[{ §4Ïý„ÓßͤûIÙ·]êÄÏ5MĪáø‹¯F}åíVHºµüÈì€#Y•‰(…Z»™M“¤¸Üka òMBV€I«MY\«y +ŒŒ¤ZY¢ºÕ(ï¤m¤ +þíåÖN¹Sl—DsÄqq>PFìá¨r‡ÔÐE9îÎFö ß É6»T ÿ`°,·Ù +endstream +endobj +94 0 obj +[188 0 R 189 0 R 190 0 R 191 0 R 192 0 R 193 0 R] +endobj +95 0 obj +<< +/Filter /FlateDecode +/Length 2041 +>> +stream +H‰´WmoÛ6þî_Á"É")RÔPÈk×!i·ÆÃ>¤ÃàÄIš­‰3ÛiÒ¿{!%ʱ½øCP ¡E‰w÷Üsχ{³Åíõør!Þ½~ÓñéãBìîîˆÁþhPŠ²ÐÆÂÿUeÄìf0|VŠ›ù`8R•B‰Ñõ ,J‹K‘‡Õ“pE ßÀ¿º°B)So½Ð¶°ÖÁ wƒL—rô÷àh48:Kÿ‚!8 Äoáxüu2<¾+ÅátðÛ`xö0¾GOÆ÷7"»ºÏßïËáéÁ‡C¡´1}wzõú©¢ŸŠýD÷JMvxñ$TYxþDwnÖÚÃ~Ý ŸçÙ‘ÌMQ‹ì~"sUXLWøÌŠl.ÿýÒ±ÙÍ*qs8EìÚ°}„Œ3°°Mé4…˜‘°²w¹x]=/Þ—eÙìîî +²‘ B½zw6¢·è—.J_¯ð͸¢t¦çÚyvð˜ÂÁÉ°(y‰¯Rz ™kÁ”"{šÔJd?ÉÚ⯡TMS4¸¨$&{„¯,a ƒ‹[©àÅ ÙÒø3Wmͤ%›!²©¬ …饩뢢S5þ}<^Hp ¬|‹‡Àá%¹”y…)ƒwx:_Ñ68½—ÆÑq½žM%;ó ¬Ž_¡\jˆôIjktj xàîSáƒ| ;ôÁ}°?‘ªÂqG9ôäŽâ§…&[«Yç,Ÿ%Á)K'yv£5š7øâZD+FapûŽ¡¼ +o݇lê‘ËaS# àwxçtÄ›üŽ‘W/¿ þaXWÒ¡Q£ÙKLE)0h¼}…¹ž¬®+ TP®júu•§Z´ÙH!Ai¢ 4*¥,“J¹˜*Ĉañr +÷±AÈ@s8ç¬@ºŒ é""L`KSjæ/k^ Ò–wåÞ`lP.å˜ZšªXÔP÷ôEj„;•˜J‡®Å"&ü+jVj0 Ù€ ‚ÁÊ=#YÕ\çšô›'ˆUMÑ&»@C.û:ž‹ä#:ýI˜·&bŽœà1å” Àh’ë[IðNQcðKñt‚üžòÓ‘ûÈæ +³y@¾*âÏ2hVh)y’±è¸(¢ðȳ#€ŽO@Ç&âwhNQ³Ã;-4bÉ­ƒy}%Ue¿wƒ®"WW g?¢y2d.õ‘Ž20’zìdÜ÷÷©¿^c 5'¾GP#Ç”vÒ1[L³¼K1ê;œSrwg?‰_ÃÀ5 õ0 ³Ø Ánƒ5›X›S>mçõihN/x»™È2jƒŽGE‰‹å…Í”vuh’1T¥CM/UÀ*|7«¹^¹ŽÝ< +> +äRwøU,­j½;˜—׳O-±oÃÀèœJØ—D‰Ò¯Uœ£zh2ˆ;"òï. !ijQ^!/Gˆ'Ù¢™§ã@έ¯“Ϧ-ˆX—5qu53jžûB¥·‹DkÖ®èÚZ µKT<“q\󼦚0­kýn°,Ö ‚O@8A¼‚w4s嬔_%Ï« ñ‡´jIºIº:ML$$·Î$~ìVènsz‰N„òäIÅǪMd¿J¾Ø‚‰z©{kF3\¬ådåN~É0bˆt/ŒàC¸W â¡¢}ŠÃØG€(z,+Š¯3½’NC¹‚ßåÂã)š¢Òq£ =AI¦¸—–X5ü| d(y44aü"eÅœ×b¶±`¾lG,óV#VUõå~¯OMâÑy¶'žE•tfå˜oØþ'")•ÀÚtØŠ½'ŽGªâ–*/Ñü€Šº«ª.Ñ+Ëöc/ò¥¨†"ùI‹Ò=ÙoU¸~Fã¦FŽfÑ=¾ª- ˪Sºè¥¸ˆþá&Ñ{¹Ü1šm„ ï’LvãËæ¦zfµCœIáÉgPž†ÜÞ‹w—Sñ3œÚƒ‘4u²ÿmŸÿkï‚=ê¿þ.X¹>—ý† CYn¹|³ÐÌidšJ¢ß?’æ°0=HCób~?ÇIìY’¬ìˆèà›5c ó$I¤åÏáï"6©8(µ]qo$DgšÎâÒšZÑ#W4Psö» ÷!jüý‰14¦uw€ÞdZ¯ Ké;^2=jtx1·ŒÎ%::OêsÑÞÃ’rñýráW®y´è‚64Ã.y’̶9u‚1È K^x\x¾°5øfw´mðÕDáë7RsóØ¢4ê¥^YêÐ+q±–Äe“x’„‰ã™ÛÅq4PÂÆ9Ɔ9ÄÔ+cJ3!±Ø¦µùmZ›m\WßÕ›µ¶&ñi5€©#çY:1ºÁ‚šÈT0–MœÜÙÔ˲iúʸVtø^ªWÝK…•šÎÝ"7¶\C›oºŒØ·ÊˆUÿŸ‘Ä‘ó FzCá^H"ô-3s"©ø ”c‡²K€™X•Ö‰©’Ž¦j…H+iiRq²Þ\ý +pë²×½¸fIBTPµ^@RÏí* .&Ò<„ AdtÄÙb¶0“ô’Ü;Œä}(ÿ`Dv·e +endstream +endobj +96 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +97 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +98 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 1240 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 97 0 R +/GS1 194 0 R +>> +/Font << +/C2_0 195 0 R +/T1_0 196 0 R +/T1_1 197 0 R +/T1_2 198 0 R +/T1_3 199 0 R +/T1_4 200 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬WÛnÛ8}÷WÌ£T4¯¢TÒ4Zl[ ñ>µÅ‰K7±Ùi~}ç´d9Ù]d[ˆ(q.gfÎ i%ëàIÉF9ü·Ô^ŽÆǧŠ.W#%•²TÖÒófe¬¬tCµV2¨†Úùèb¤XÇXè;Uk'këH+›`ÉéJVlÔT²v:élDŒ–Ö7ˆ·rc5K4TÞ÷6¼tCPÉàõsãƒv}}1=_ÓÞÞøÿ˜>.ï×´¿ÿæí!ÞL<þý=Oô_Š4M.¯æÅ9•yõÀ“iÅX·¤µ4>ª¦•VArj,éÚHç] ÉíèsñQ”Aj*>MDi¥¥âH|¼MFGÁâ*Q‘d>ûŽ+øöZÕ¤+%µçEô}4FÖTœ 3T\Ñ;^QñVXéÒÃSq’Ò­Pø°¥ÇþLpdü~/X¹ümN×Bs T¬è\ÔÐÃv ¢m…öؘóg~,„®eCÅš/®…ƒÜZ¿¢9/Øúe;‚^éµ4 +úkºþÔ£.‹(n &Øñ•ˆðæ4c¬1ÍÖ¨´±ÚB3K.“܇Éx” .¶ *DCôñN”Q6'ò2)̱Ï1HzY-wËæ,3¥aP¶‚ÄäÛÿ·ÙSÁUÜV*ˆ²I!í&”@Ž¶Há¶I1HFèÊÛrF,RU!#=e¢—ü•y‡Ô50ƒRTxF2lþGúzbl»ªIõœä~:¥f Å2ÐÈry¤?™É½òbÓ,:Ò„çþÀ¸¥³|vÅAšH¢ûFâ¼øßkdãLõå®»ôÞ¥Ü?r¹Òy°=z.‘Ó#ûbø&Ðqß b–RÂFæÄw~*–3ˆ0Nô¶7<«ð\¥éMä¶fcib»|Ú$©Í{Q²ž\ªp0ý%tW”€[AµI-*[s#TÎà.TU>_FÞaªãı+×"»0^"»‘áu:ñòiDÔfù æ‰ÂñÄi]jè¬`³¾M}~‹ï¼? “Îv$¨s\êx ¼ê,Îóa¿ÑXžŽ>Üäç5|s’T½´Œ¼¿^2¡ù¦‹YZœˆh'Æ©3æËAH9ȦëgLŸŠ&³ÁÃ<•±?8~^Äi‘À¯^\pt.£Ç§7oTÜî^ÿ…¶! *]ÐËN”!ÑNŽGäè;ùFŸ¿*šQ÷k`|h6e›p±ÔŒ„I`±ÈžRµÛ ”çowcæA®¹¿-æ­;ðì’ç¡S> ù§Œ¶”6¥ŠÞsímºA”|¸Åq›i>ç9Älm0‡âŦÝæÇOZÇë— +endstream +endobj +99 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 172 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 97 0 R +>> +/Font << +/C2_0 201 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰TŽË +‚@…÷ÿSœ'˜ù›"¤‰›$¨ÙE„XJBjH=}ã²Íwà\àÈí8?º¦‘¦ò¹o>¯÷Œ,Ëw(÷Ä`¡´ 4FãX ‹5ÎÆ $«£ŸHêʈà»0ôm¨øeÅ„ˆƒ|×hD,´&Îhe…J8dOJ™“ùJOe>ü{²Ö µÙ¬#)¸Xh¥aEÄ +ã:ú 0“.ì +endstream +endobj +100 0 obj +<< +/K [202 0 R 203 0 R 204 0 R 205 0 R 206 0 R 207 0 R 208 0 R 209 0 R 210 0 R 211 0 R 212 0 R] +/P 31 0 R +/S /Article +>> +endobj +101 0 obj +[213 0 R 214 0 R 214 0 R 215 0 R 216 0 R 216 0 R 217 0 R 216 0 R 216 0 R 216 0 R 216 0 R 216 0 R 218 0 R 216 0 R 216 0 R 219 0 R +220 0 R 219 0 R 221 0 R 219 0 R 219 0 R 222 0 R 219 0 R 219 0 R 219 0 R 223 0 R 219 0 R 219 0 R 219 0 R 219 0 R 219 0 R 224 0 R +225 0 R 225 0 R 225 0 R 225 0 R 226 0 R 225 0 R 227 0 R 225 0 R 228 0 R 228 0 R 228 0 R] +endobj +102 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 229 0 R 229 0 R 229 0 R 229 0 R 229 0 R +229 0 R 230 0 R 231 0 R 231 0 R 232 0 R 231 0 R 233 0 R 233 0 R 233 0 R 233 0 R 233 0 R 234 0 R 235 0 R 236 0 R 235 0 R 237 0 R +238 0 R 239 0 R 238 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 247 0 R 248 0 R 247 0 R 249 0 R 247 0 R +250 0 R 247 0 R 247 0 R 247 0 R 251 0 R 252 0 R 253 0 R 252 0 R 254 0 R 252 0 R 252 0 R 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R +260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R] +endobj +103 0 obj +<< +/K << +/Obj 165 0 R +/Pg 10 0 R +/Type /OBJR +>> +/P 267 0 R +/S /Link +>> +endobj +104 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 252 0 R 252 0 R 252 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 271 0 R +271 0 R 271 0 R 273 0 R 273 0 R 274 0 R 273 0 R 273 0 R 273 0 R 275 0 R 276 0 R 277 0 R 277 0 R 277 0 R 278 0 R 277 0 R 277 0 R +277 0 R 279 0 R 280 0 R 280 0 R 280 0 R 280 0 R 280 0 R 281 0 R 281 0 R 281 0 R 281 0 R 281 0 R 281 0 R 281 0 R 281 0 R 281 0 R +282 0 R 282 0 R 282 0 R 282 0 R 283 0 R 282 0 R 282 0 R 282 0 R 284 0 R 285 0 R 284 0 R 284 0 R 284 0 R] +endobj +105 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 286 0 R 286 0 R 287 0 R +286 0 R 286 0 R 286 0 R 286 0 R 286 0 R 288 0 R 289 0 R 290 0 R 289 0 R 291 0 R 289 0 R 292 0 R 293 0 R 293 0 R 293 0 R 294 0 R +295 0 R 295 0 R 295 0 R 295 0 R 295 0 R 295 0 R 295 0 R 295 0 R 296 0 R 296 0 R 296 0 R 296 0 R 297 0 R 298 0 R 298 0 R 298 0 R +299 0 R 298 0 R 298 0 R] +endobj +106 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 300 0 R 301 0 R 301 0 R 301 0 R 301 0 R 302 0 R 301 0 R 303 0 R 301 0 R 301 0 R 301 0 R 304 0 R 301 0 R +301 0 R 305 0 R 301 0 R 301 0 R 306 0 R 301 0 R 301 0 R 301 0 R 301 0 R 307 0 R 301 0 R 308 0 R 309 0 R 309 0 R 309 0 R 310 0 R +309 0 R 311 0 R 312 0 R 312 0 R 312 0 R 313 0 R 312 0 R 314 0 R 312 0 R 315 0 R 312 0 R 316 0 R 317 0 R 317 0 R 317 0 R 318 0 R +317 0 R 317 0 R 319 0 R 317 0 R 317 0 R 317 0 R 320 0 R 320 0 R 320 0 R 320 0 R] +endobj +107 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 317 0 R 317 0 R 321 0 R 317 0 R 317 0 R 317 0 R +322 0 R 323 0 R 323 0 R 324 0 R 323 0 R 325 0 R 323 0 R 323 0 R 323 0 R 326 0 R 326 0 R 326 0 R 326 0 R 327 0 R 326 0 R 326 0 R +328 0 R 329 0 R 328 0 R 328 0 R 330 0 R 328 0 R 328 0 R 328 0 R 328 0 R 328 0 R 328 0 R 331 0 R 328 0 R 332 0 R 328 0 R 328 0 R +333 0 R 334 0 R 333 0 R 333 0 R 333 0 R 333 0 R 333 0 R 335 0 R 335 0 R 335 0 R 335 0 R 335 0 R 335 0 R] +endobj +108 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 336 0 R 337 0 R 338 0 R +337 0 R 339 0 R 337 0 R 337 0 R 340 0 R 337 0 R 337 0 R 341 0 R 337 0 R 337 0 R 342 0 R 343 0 R 344 0 R 343 0 R 345 0 R 343 0 R +343 0 R 343 0 R 343 0 R 346 0 R 347 0 R 346 0 R 346 0 R 346 0 R 348 0 R 346 0 R 346 0 R 349 0 R 350 0 R 351 0 R 350 0 R 350 0 R +352 0 R 353 0 R 354 0 R 353 0 R 353 0 R 355 0 R 353 0 R 356 0 R 357 0 R 358 0 R 359 0 R 359 0 R 360 0 R 359 0 R 359 0 R 359 0 R +361 0 R 359 0 R 362 0 R 363 0 R 364 0 R 364 0 R 365 0 R 364 0 R 364 0 R 366 0 R 364 0 R 364 0 R 364 0 R] +endobj +109 0 obj +<< +/K << +/Obj 179 0 R +/Pg 15 0 R +/Type /OBJR +>> +/P 367 0 R +/S /Link +>> +endobj +110 0 obj +<< +/K << +/Obj 180 0 R +/Pg 15 0 R +/Type /OBJR +>> +/P 368 0 R +/S /Link +>> +endobj +111 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 369 0 R 370 0 R 371 0 R +371 0 R 371 0 R 371 0 R 372 0 R 372 0 R 373 0 R 372 0 R 372 0 R 372 0 R 374 0 R 375 0 R 375 0 R 375 0 R 376 0 R 375 0 R 377 0 R +377 0 R 378 0 R 377 0 R 379 0 R 380 0 R 379 0 R 379 0 R 381 0 R 382 0 R 383 0 R 382 0 R 384 0 R 385 0 R 386 0 R 386 0 R 387 0 R +387 0 R 388 0 R 389 0 R 390 0 R 389 0 R 389 0 R 391 0 R 391 0 R 392 0 R 392 0 R 392 0 R 393 0 R 393 0 R 393 0 R 394 0 R 394 0 R +394 0 R 394 0 R 395 0 R 396 0 R 397 0 R 397 0 R 398 0 R 399 0 R 399 0 R 400 0 R 400 0 R 401 0 R 400 0 R] +endobj +112 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 402 0 R 403 0 R 404 0 R +403 0 R 405 0 R 403 0 R 406 0 R 403 0 R 403 0 R 403 0 R 403 0 R 407 0 R 408 0 R 407 0 R 409 0 R 407 0 R 410 0 R 407 0 R 407 0 R +407 0 R 407 0 R 407 0 R 407 0 R 411 0 R 407 0 R 412 0 R 412 0 R 412 0 R 412 0 R 412 0 R 412 0 R 413 0 R 412 0 R 412 0 R 412 0 R +414 0 R 412 0 R 415 0 R 412 0 R 412 0 R 416 0 R 412 0 R 417 0 R 412 0 R 412 0 R 418 0 R 412 0 R 419 0 R 420 0 R 420 0 R 420 0 R +421 0 R 422 0 R 423 0 R 423 0 R 424 0 R 425 0 R 426 0 R 426 0 R 427 0 R 426 0 R 426 0 R] +endobj +113 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 428 0 R 429 0 R 430 0 R 430 0 R 431 0 R +432 0 R 433 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 436 0 R 438 0 R 439 0 R 440 0 R 440 0 R 441 0 R 442 0 R 441 0 R 441 0 R +441 0 R 443 0 R 441 0 R 444 0 R 441 0 R 441 0 R 441 0 R 445 0 R 446 0 R 445 0 R 447 0 R 445 0 R 445 0 R 448 0 R 445 0 R 445 0 R +445 0 R 445 0 R 445 0 R 445 0 R 449 0 R 450 0 R 451 0 R 452 0 R 451 0 R 453 0 R 451 0 R 454 0 R 455 0 R 456 0 R 457 0 R 456 0 R +458 0 R 459 0 R 460 0 R 460 0 R 460 0 R 460 0 R 460 0 R 461 0 R 462 0 R 463 0 R 463 0 R 464 0 R 464 0 R 464 0 R 464 0 R 465 0 R +464 0 R] +endobj +114 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 466 0 R 467 0 R 468 0 R 467 0 R 467 0 R 467 0 R 467 0 R 467 0 R 467 0 R 467 0 R 467 0 R 469 0 R 470 0 R 470 0 R +470 0 R 470 0 R 470 0 R 471 0 R 471 0 R 472 0 R 473 0 R 474 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 477 0 R 479 0 R 480 0 R +481 0 R 482 0 R 481 0 R 483 0 R 483 0 R 484 0 R 483 0 R 483 0 R 483 0 R 483 0 R 483 0 R 483 0 R 483 0 R 483 0 R 483 0 R 483 0 R +483 0 R 485 0 R 485 0 R 485 0 R 485 0 R 486 0 R 485 0 R 485 0 R 485 0 R 485 0 R 485 0 R] +endobj +115 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 485 0 R 487 0 R 485 0 R 485 0 R 488 0 R +485 0 R 485 0 R 485 0 R 489 0 R 490 0 R 489 0 R 489 0 R 491 0 R 489 0 R 492 0 R 489 0 R 489 0 R 489 0 R 489 0 R 493 0 R 493 0 R +493 0 R 493 0 R 494 0 R 493 0 R 493 0 R 493 0 R 495 0 R 493 0 R 496 0 R 493 0 R 497 0 R 493 0 R 498 0 R 499 0 R 499 0 R 500 0 R +499 0 R 499 0 R 501 0 R 501 0 R 502 0 R 501 0 R 501 0 R 501 0 R 503 0 R 501 0 R 501 0 R 501 0 R 504 0 R 504 0 R 504 0 R 504 0 R +505 0 R 505 0 R 506 0 R 505 0 R 505 0 R] +endobj +116 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 507 0 R 508 0 R 509 0 R 508 0 R 508 0 R 510 0 R 508 0 R 508 0 R 511 0 R 512 0 R 513 0 R +514 0 R 514 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 518 0 R 519 0 R 519 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R +523 0 R 525 0 R 523 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R +539 0 R 540 0 R 540 0 R 540 0 R 541 0 R 540 0 R 542 0 R 543 0 R 544 0 R 544 0 R 545 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R +547 0 R 547 0 R 547 0 R 547 0 R 547 0 R 547 0 R 547 0 R 547 0 R 547 0 R 548 0 R 547 0 R 547 0 R 547 0 R] +endobj +117 0 obj +<< +/K << +/Obj 185 0 R +/Pg 23 0 R +/Type /OBJR +>> +/P 549 0 R +/S /Link +>> +endobj +118 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 547 0 R 547 0 R 550 0 R +547 0 R 547 0 R 547 0 R 551 0 R 552 0 R 552 0 R 552 0 R 553 0 R 552 0 R 552 0 R 552 0 R 552 0 R 554 0 R 554 0 R 554 0 R 554 0 R +554 0 R 554 0 R 555 0 R 555 0 R 555 0 R 556 0 R 555 0 R 555 0 R 555 0 R 555 0 R 555 0 R 555 0 R 555 0 R 555 0 R 555 0 R 555 0 R +557 0 R 558 0 R 558 0 R 558 0 R 559 0 R 558 0 R 560 0 R 558 0 R 558 0 R 558 0 R 561 0 R 558 0 R 562 0 R 558 0 R 558 0 R 563 0 R +558 0 R 558 0 R] +endobj +119 0 obj +<< +/K << +/Obj 186 0 R +/Pg 24 0 R +/Type /OBJR +>> +/P 564 0 R +/S /Link +>> +endobj +120 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 565 0 R 566 0 R 566 0 R 566 0 R 567 0 R 566 0 R 568 0 R 566 0 R 566 0 R 566 0 R 566 0 R 569 0 R 566 0 R 566 0 R +570 0 R 566 0 R 566 0 R 571 0 R 566 0 R 572 0 R 572 0 R 572 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R 579 0 R +580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 590 0 R 591 0 R 592 0 R 593 0 R 594 0 R +595 0 R 596 0 R 597 0 R 598 0 R 599 0 R 600 0 R 600 0 R 600 0 R 600 0 R 600 0 R 600 0 R 601 0 R 600 0 R 600 0 R 600 0 R 600 0 R +600 0 R 600 0 R 600 0 R 602 0 R 603 0 R 602 0 R 602 0 R 602 0 R 604 0 R 602 0 R 602 0 R] +endobj +121 0 obj +<< +/K << +/Obj 187 0 R +/Pg 25 0 R +/Type /OBJR +>> +/P 605 0 R +/S /Link +>> +endobj +122 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 606 0 R 606 0 R 606 0 R 606 0 R 607 0 R +608 0 R 608 0 R 608 0 R 608 0 R 608 0 R 608 0 R 608 0 R 609 0 R 609 0 R 610 0 R 609 0 R 611 0 R 609 0 R 612 0 R 609 0 R 609 0 R +609 0 R 609 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R] +endobj +123 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 623 0 R 624 0 R 625 0 R 626 0 R 626 0 R 627 0 R 626 0 R 628 0 R 629 0 R 630 0 R 631 0 R 630 0 R 630 0 R 630 0 R 630 0 R +632 0 R 633 0 R 634 0 R 635 0 R 634 0 R 636 0 R 634 0 R 637 0 R 638 0 R 639 0 R 640 0 R 639 0 R 639 0 R 641 0 R 642 0 R 643 0 R +644 0 R 643 0 R 643 0 R 643 0 R 643 0 R 645 0 R 643 0 R 646 0 R 647 0 R 648 0 R 648 0 R 648 0 R 649 0 R 648 0 R 648 0 R 650 0 R +650 0 R 650 0 R 650 0 R 651 0 R 652 0 R 653 0 R 653 0 R 653 0 R 653 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 656 0 R 658 0 R +659 0 R 660 0 R 660 0 R 661 0 R 662 0 R 663 0 R 663 0 R 663 0 R 663 0 R 664 0 R 665 0 R 666 0 R 666 0 R 667 0 R 668 0 R 669 0 R +669 0 R 669 0 R 669 0 R 669 0 R 670 0 R 671 0 R 672 0 R 672 0 R 672 0 R 673 0 R 672 0 R 672 0 R 674 0 R 674 0 R 674 0 R 674 0 R +675 0 R 676 0 R 677 0 R 678 0 R 677 0 R 679 0 R 680 0 R 681 0 R 682 0 R 681 0 R 681 0 R 683 0 R 684 0 R 685 0 R 685 0 R 686 0 R +687 0 R 688 0 R 689 0 R 688 0 R 688 0 R 688 0 R 688 0 R 690 0 R 691 0 R 692 0 R 692 0 R 693 0 R 694 0 R 695 0 R 695 0 R 696 0 R +697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R +713 0 R 714 0 R 715 0 R 716 0 R] +endobj +124 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 717 0 R 718 0 R 719 0 R 720 0 R 720 0 R 720 0 R 721 0 R 722 0 R 723 0 R 723 0 R 723 0 R 724 0 R +725 0 R 726 0 R 727 0 R 726 0 R 726 0 R 726 0 R 728 0 R 726 0 R 726 0 R 726 0 R 726 0 R 729 0 R 730 0 R 731 0 R 731 0 R 731 0 R +732 0 R 733 0 R 734 0 R 734 0 R 734 0 R 735 0 R 734 0 R 736 0 R 734 0 R 737 0 R 738 0 R 739 0 R 739 0 R 739 0 R 739 0 R 739 0 R +739 0 R 740 0 R 739 0 R 741 0 R 742 0 R 743 0 R 743 0 R 743 0 R 744 0 R 743 0 R 743 0 R 745 0 R 745 0 R 746 0 R 747 0 R 748 0 R +748 0 R 748 0 R 748 0 R 748 0 R 749 0 R 750 0 R 751 0 R 751 0 R 751 0 R 751 0 R 752 0 R 753 0 R 754 0 R 754 0 R 754 0 R 755 0 R +756 0 R 757 0 R 757 0 R 758 0 R 759 0 R 760 0 R 760 0 R 760 0 R 760 0 R 760 0 R 760 0 R 761 0 R 762 0 R 763 0 R 763 0 R 763 0 R +764 0 R 765 0 R 766 0 R 766 0 R 767 0 R 766 0 R 768 0 R 766 0 R 766 0 R 766 0 R 769 0 R 770 0 R 771 0 R 771 0 R 771 0 R 772 0 R +771 0 R 771 0 R] +endobj +125 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 773 0 R 774 0 R 774 0 R +774 0 R 775 0 R 776 0 R 777 0 R 777 0 R 778 0 R 779 0 R 780 0 R 780 0 R 781 0 R 782 0 R 783 0 R 783 0 R 784 0 R 785 0 R 786 0 R +786 0 R 786 0 R 787 0 R 788 0 R 789 0 R 789 0 R 789 0 R 789 0 R 790 0 R 791 0 R 792 0 R 793 0 R 792 0 R 792 0 R 792 0 R 792 0 R +794 0 R 795 0 R 796 0 R 796 0 R 796 0 R 796 0 R 797 0 R 798 0 R 799 0 R 800 0 R 799 0 R 801 0 R 799 0 R 799 0 R 802 0 R 803 0 R +804 0 R 804 0 R 805 0 R 804 0 R 804 0 R 804 0 R 806 0 R 804 0 R 807 0 R 808 0 R 809 0 R 809 0 R 809 0 R 809 0 R 809 0 R 810 0 R +809 0 R] +endobj +126 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 811 0 R 812 0 R 813 0 R 814 0 R 813 0 R 815 0 R 816 0 R 816 0 R 816 0 R 816 0 R 817 0 R 818 0 R 819 0 R 818 0 R 818 0 R +820 0 R 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R] +endobj +127 0 obj +<< +/K << +/Obj 188 0 R +/Pg 28 0 R +/Type /OBJR +>> +/P 826 0 R +/S /Link +>> +endobj +128 0 obj +<< +/K << +/Obj 189 0 R +/Pg 28 0 R +/Type /OBJR +>> +/P 827 0 R +/S /Link +>> +endobj +129 0 obj +<< +/K << +/Obj 190 0 R +/Pg 28 0 R +/Type /OBJR +>> +/P 828 0 R +/S /Link +>> +endobj +130 0 obj +<< +/K << +/Obj 191 0 R +/Pg 28 0 R +/Type /OBJR +>> +/P 829 0 R +/S /Link +>> +endobj +131 0 obj +<< +/K << +/Obj 192 0 R +/Pg 28 0 R +/Type /OBJR +>> +/P 830 0 R +/S /Link +>> +endobj +132 0 obj +<< +/K << +/Obj 193 0 R +/Pg 28 0 R +/Type /OBJR +>> +/P 831 0 R +/S /Link +>> +endobj +133 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 832 0 R +/FontName /VXQIOI+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +134 0 obj +<< +/Filter /FlateDecode +/Length 428 +>> +stream +H‰\“Qk£@…ßýóØ>3s‡‚¶I yØmi¶?ÀèMVØŒ21ù÷{§´°B2Ÿè9|£×r³ÛîR?¹ò-í^'wìS—õ2\s«î §>ËÊu};}žÍÿí¹‹ÒÂûÛeÒó.‡¢®]ùn/S¾¹»ÝpÐû¢|Íæ>ÜÝÇfïÊýuÿêYÓän½v­èg3þjÎêÊ9ö°ëìz?Ý,ó}ÇïÛ¨®šÏ—”i‡N/cÓjnÒI‹zaÇÚÕ/v¬ MÝ×½gìplÿ4¹¨+ܼXØb¼!oÀ[òüL~6^-g¶Å¸"Wàyödä²€#9‚ÉÆžýýžžžY¬gÖÏY:{8{:{8zxvtvtº¸öô }>¬ +Ì +²Â= +ö(ìô{dÀSžÈO`>sÁ3ú ü…þy!Û ­#ßWÄûŠÜWľ"Ý"Ü"Ý"Ü"Ý"Ü"Ý"Ü"Ý"Ü"ÝlÁÀ|NFÇ&Ü}Íe{ÍÙFrþ æYÄöI¿¾”q¥ð+þ 0[ïÔ= +endstream +endobj +135 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 833 0 R +/FontName /EVEFKQ+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +136 0 obj +<< +/Filter /FlateDecode +/Length 459 +>> +stream +H‰\“Ín£@„ï<Å“C†žžDB–,;‘|ÈÖ›À0vâñÁoŸ)ÊÊJ‹|ˆé®ª¡É×ÛÍ6ô“É?âÐîüd}è¢?—Øz³÷Ç>d‹Òt};Ýžæk{jÆ,OÅ»ëyò§m8 Y]›üOzyžâÕÜ­ºaïï³ü=v>öáhî>×»{“ï.ãøíO>L¦0Ë¥éü!5zmÆ·æäM>—=l»ô¾Ÿ®©æߊ¿×Ñ›r~^ÐL;tþ<6­M8ú¬.Ò±4õK:–™ÝïmÁ²ý¡ýjbV—X\é–xM^ƒ7ä øù¶&Ïé¹bM…šjA^€Kr ®ÈXȶd V²‚ÙÉà'òxE^%ê +t…º]¡–@K¨%ÐöôöôfdfdfäµÌk‘×RËBË2£EFK] ]K- -¥O…Oe­¢VY«¨UÖ*j•žž•û£ØeO{ҿ¿rO{¢Ì¢È¢Ì¢È¢Ì¢È¢/ä4µc.‡\ŽÞ¼9zsðæèÍÁ›£7oŽÞ¼9~/‡ïåè-Ý0|·)æ¿ÅüÎx{‰1÷üKÍs‰îƒÿýëÆa4© +gö#ÀÀÒâö +endstream +endobj +137 0 obj +[834 0 R] +endobj +138 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +139 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/one/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 835 0 R +/FontName /HPUCAK+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +140 0 obj +<< +/Filter /FlateDecode +/Length 246 +>> +stream +H‰\PAjÃ0¼ë{LA²ë£”¤’–º}€,­]A- Y>ø÷]Ë!….H»ËÎ Ãðs{i½ËÀßS0fœ· ç°$ƒÐãè<«j°ÎäûV~3éÈ8‘»uÎ8µ~LJàtœsZáðlCGÆß’Åäü‡¯swÞ-1þà„>ƒ¥Àâ@BWozBà…vj-Ý]^OÄùC|®¡.{µ›1ÁâµÁ¤ýˆL +*ò•J1ôöß½ÙYý`¾ub²~!¬Ô˜|ªÊLæfŸµ)ÖbG‰¢xçnÚ<Œ›%%ò\r*f7›Îã#Ê"k{ìW€( v‘ +endstream +endobj +141 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space/A/M/T/W/a/d/e/g/i/l/m/n/o/p/r/s/t/u) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 836 0 R +/FontName /XAUUQE+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +142 0 obj +<< +/Filter /FlateDecode +/Length 318 +>> +stream +H‰\‘ÛjÃ0 †ïýº\/Jm +!0Òr±Ëö©­tÅ1nz‘·Ÿd•fHôý²KIÝ7̼‡É´8C?8ð:Ý‚A8ãep*ËÁf¾ïâߌW ·ËuƱqý¤Ê’J^ç°ÀӳθRÉ[°w§¯º]AÒÞ¼ÿÁÝ )TXì頗οv#BËÖ¥ü0/kªùS|.!ûL̘ÉâÕwCç.¨Ê”Vå‰V¥ÐÙùl/eçÞ|wA•9‹Ó”‚*·Yd +Äáñn™q!\kÑkÖkÑhÖèðŽYô:ê÷Â{æZ¸f–»4ߥÂGæ“0=¤,ÄgÁ>‹\8gÞo˜ÅCÁ +ñ@›p-·ƒ¦^›[Ôæ8ÚØ_îìàð1}?y *þÔ¯3·™Ï +endstream +endobj +143 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/I/L/O/P/S/a/comma/d/e/four/g/i/l/m/n/o/p/r/s/space/t/u/v) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 837 0 R +/FontName /AWLWGY+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +144 0 obj +<< +/Filter /FlateDecode +/Length 333 +>> +stream +H‰\’ÛŠƒ0†ïó¹Ü^­Õ„‚‹mÁ‹=°î>€MÆ®°Æí…o¿3™Ò… è|9ü“Ÿ™$uslÜ°Èä=L¦…Eöƒ³æé È \'v™´ƒYî³ø7cçE‚âv×O¢,eò›óVùôl§ lDò,„Á]åÓWÝndÒÞ¼ÿÜ"SYUÒB‰^:ÿÚ “(Û6÷‡eÝ¢æïÄçêAfq¾c3f²0ûÎ@èÜD™â¨dyÆQ pöß~–±ìÒ›ï.ˆ2£ÃiŠ¹f®‘÷yd ¢Ìy=§õüÌŒÉË‚µi‹=óYí"c@æ<Šò¨‚¹ ÖÌšøÀ| æ»Ý¥ŽÌGâó‰˜=(ò Ùƒ&:cΈÙ&?š=hò Ùƒ&Z1«X¨{E¨dØYù臹…€­ˆí= ê/ÄO^¢Š>ñ+ÀÀ% í +endstream +endobj +145 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/space/I) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 838 0 R +/FontName /JSTOCG+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +146 0 obj +<< +/Filter /FlateDecode +/Length 235 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqv)˜@iä°v,Ý8¶’Û(Î!o?Ù-T`ËBÿ'~KžÚsë]ùIÁt˜`pÞÎa!ƒÐãè¼Ø×`IªÜfÒQH†»uN8µ~B)_Üœ­°9ÚÐãVÈ+Y$çGØ|Ÿº-Èn‰ñ'ô *h°8ð /zBÛµ–û.­;fþ·5"Ô¥Þß͘`qŽÚ i?¢PGê£èíK¿¾Sý`~4 UgmUqêíPÞœ2÷Pä üQxÚ3 ;+Û(–²çñ¹°"0•ø`Ðq‰ +endstream +endobj +147 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/space/A/M/T/W/a/d/e/g/i/l/m/n/o/p/r/s/t/u) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 839 0 R +/FontName /WZZECG+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +148 0 obj +<< +/Filter /FlateDecode +/Length 318 +>> +stream +H‰\‘ÛjÃ0 †ïýº\/Jm +!0Òr±Ëö©­tÅ1nz‘·Ÿd•fHôý²KIÝ7̼‡É´8C?8ð:Ý‚A8ãep*ËÁf¾ïâߌW ·ËuƱqý¤Ê’J^ç°ÀӳθRÉ[°w§¯º]AÒÞ¼ÿÁÝ )TXì頗οv#BËÖ¥ü0/kªùS|.!ûL̘ÉâÕwCç.¨Ê”Vå‰V¥ÐÙùl/eçÞ|wA•9‹Ó”‚*·Yd +Äáñn™q!\kÑkÖkÑhÖèðŽYô:ê÷Â{æZ¸f–»4ߥÂGæ“0=¤,ÄgÁ>‹\8gÞo˜ÅCÁ +ñ@›p-·ƒ¦^›[Ôæ8ÚØ_îìàð1}?y *þÔ¯3·™Ï +endstream +endobj +149 0 obj +<< +/BaseFont /PDWIIU+Wingdings-Regular +/DescendantFonts 840 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 841 0 R +/Type /Font +>> +endobj +150 0 obj +<< +/BaseFont /AWLWGY+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 143 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 842 0 R +/Type /Font +/Widths [305] +>> +endobj +151 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 843 0 R +/FontName /ANPGBS+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +152 0 obj +<< +/Filter /FlateDecode +/Length 542 +>> +stream +H‰\ÔÍŽ¢@à=OQËîE¥nÝÛ&ÄÄÖîÄÅüdœy„Ò! .|û©Ã1=ɘt{ Ôåã"ßîwû®\þ}ìëCœÜ©íš1^ûÛXGwŒç¶Ë–…kÚzzüšÿ×—jÈò´øp¿Nñ²ïN}V–.ÿ‘^§ñîž6MŒÏYþmlâØvg÷ôk{xvùá6 â%v“[¸õÚ5ñ”}©†¯Õ%º|^ö²oÒñvº¿¤5ÿÎøy¢+æßKb꾉סªãXu瘕‹ôY»ò#}ÖYìšÿŽÛcÙñTÿ®Æ¬,pòb‘¾RÌù•ùyżBÞ2o‘wÌ;äwæwäæ(=ç{Ì÷Kæ%rÁ\ {f,Ì‚L‡Ç+³"³!Óéáôtz8ý†yƒüÆü†L›‡Mèx„Gèx„Gèx„Gèx„Gèx„½ zö&èMØ› 7¡M` ì- ·@[€-Ð` ´Øm¶@[€-Ð` ôx”÷®¸wå|Å|å|Å|å|Å|å|Å|å|Å|å|Å|å½+î]y-¯Åg¡xÊg¡xÊN(;Qt¢ìDщ²E'ÆN ý¿Ñoðý¿Ñoðý¿Ñoðý¿Ñoðý¿Ñoð¯pÝb±Ä9«‚笔Ùϛ°ýÒ[Â}îíú6Ži[ϯ’y?c'·]ü|Û ýàÒ*üe"l½ +endstream +endobj +153 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/L/O/P/R/S/a/b/comma/d/e/eight/five/four/g/i/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/u/v/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 844 0 R +/FontName /VBAKTC+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +154 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +155 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/space/period/one/four/D/R/a/c/e/i/l/m/n/o/r/s/t/v) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 845 0 R +/FontName /YXSZZW+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +156 0 obj +<< +/Filter /FlateDecode +/Length 315 +>> +stream +H‰\‘Ínƒ0 Çïy +ÛCE¡V !M´•8ìCc{š˜i„(Ðo?;®:i‘À¿Èþ;þˆªúXÛ~†èݺÁºÞÓxóá‚×Þª8Óëù~ =´NE$n–iÆ¡¶Ý¨Š¢rN³_`õlÆ ®Uôæ úÞ^aõU5kˆš›s?8 a e ;JôÒº×v@ˆ‚lSò÷ó²!Í_Äçâ’p¥=œ\«Ñ·öŠªØÒ)¡8Ó)ZóÏ?‰ìÒéïÖ«"áàí– ñIøD¼‹“!N…SâT8eÞ'ɨ"“øŒã³ðŽy/¼g>˜+áŠù(|d–2®!; S#E.oåüV.ùsΟK=9דgÂYhüÞ!€6ùê›÷4Ú°Î0Sžfoñ±q7: êW€„÷—f +endstream +endobj +157 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [31 /f_f] +/Type /Encoding +>> +endobj +158 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/A/C/D/L/M/N/P/R/T/W/a/b/c/d/e/f_f/five/four/g/hyphen/i/l/m/n/o/one/p/period/r/s/six/space/t/three/two/u/v/y) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 846 0 R +/FontName /MTNDXU+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +159 0 obj +<< +/Filter /FlateDecode +/Length 409 +>> +stream +H‰\’Ájã0E÷ú +-ÛE±ãHOS0†!i!‹iËdæ[É&²QœEþ~Þõ -ŒÁÖÖ}:H¯Ø춻4̶øÈc·³=©Ïñ2^sí!ž†dV•í‡n¾Ï–own'Shx»Ìñ¼KÇÑÔµ-~êÏËœoöá{?â£)ÞsóNöá÷fÿh‹ýušþÆsL³-mÓØ>µÐvzkÏÑKìi×ëÿa¾=iækůÛmµÌW”éÆ>^¦¶‹¹M§hêRŸÆÖ¯ú4&¦þ¿ÿëoŒŽÝŸ6›zõª‹ËRocêª\æ:(oÉ[ð ùEy½ZXåŠ\×ä5ؑؓ=XÈØ˱ŽCǬCÖ1ëuòLGOggOÏ:u| eᾂ}…ëë…aVú ü…ud©óL~ÓSà)ôx +=žr?k½˜:Ð9À9Ð!À!Ð!À!Ð!À!Ð!À!ð Î0ÐA\öýVqíÚö³§ºkÎÚNK /}„Rüìòiœ¬¦ðš æÆó +endstream +endobj +160 0 obj +<< +/BaseFont /AGNOLS+Wingdings-Regular +/DescendantFonts 847 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 848 0 R +/Type /Font +>> +endobj +161 0 obj +<< +/BaseFont /WAPQHA+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 169 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 849 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 260 0 +0 555 0 0 555] +>> +endobj +162 0 obj +<< +/BaseFont /VBAKTC+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 153 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 850 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 528 0 0 730 +602 0 0 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 0 610 539 0 596 0 292 0 0 292 871 599 589 +610 0 403 451 383 598 551] +>> +endobj +163 0 obj +<< +/BaseFont /MTNDXU+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 158 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 851 0 R +/Type /Font +/Widths [212] +>> +endobj +164 0 obj +<< +/BaseFont /LUYXJW+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 852 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 853 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 0 0 0 0 0 0 0 0 0 827 0 0 +0 0 0 0 525 0 0 869 0 0 0 0 0 0 0 0 +0 508 0 0 581 516 0 573 0 256 0 0 257 848 572 564 +585 0 356 417 351 569] +>> +endobj +165 0 obj +<< +/A 854 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [348.48 187.767 351.686 178.679] +/StructParent 2 +/Subtype /Link +/Type /Annot +>> +endobj +166 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 855 0 R +/FontName /ZRDANU+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +167 0 obj +<< +/Filter /FlateDecode +/Length 352 +>> +stream +H‰\’ÍjÃ0 €ï~ +×CIš6v !0ÒrØËö©­tÅ NzÈÛOŠJ3$þŒ%ñ!9*ÊcéÛ ¢÷ÐÛ +'hZïŽý-X„ ^[¯6 ¸ÖN÷Óò·]=¨ˆ’«yœ°+}Ó«,ƒèƒ.Ç)Ìðôìú ®Tô†Ö_á髨VU·aøÁý1ä98l¨ÐK=¼ÖB´¤­KG÷í4¯)ç/âs’å¼Û;‡Úb¨ýUÓÊ!;ÓÊz÷ï>1’viìwT–ppÓF¼Þ3„ĻʹÂóQøHœJ”ë¤[á-óNxÇl„ ±–šškj‰Ñ£Sá”Yâõ/nšÝ´¸ivÓâ£ÙG‹f}>1Ÿ…©!™OÞ&N˜ÅÙ°³Ã>F| ûñ1ìcÄ6nò½›Ünz𘥽…@c\žÎ2?ž\ëññº†~ÊâOý +0׬ˆ +endstream +endobj +168 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [30 /hyphen.cap /f_l] +/Type /Encoding +>> +endobj +169 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/P/R/S/T/U/V/W/X/Y/Z/a/b/c/colon/comma/d/e/f/f_l/five/four/g/hyphen/hyphen.cap/i/k/l/m/n/o/one/p/period/r/s/six/slash/space/t/three/two/u/v/w/x/y) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 856 0 R +/FontName /WAPQHA+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +170 0 obj +<< +/Filter /FlateDecode +/Length 499 +>> +stream +H‰\“Ín£@„ï<Å“CÆÝ=Ž„;‘|Ø­³€aìEŠa|ðÛgŠ²i‘ð|xèîêb:Ý춻®\ú{ìë}˜Ü±íš1\úëXw§¶K¹kÚzº?Í¿õ¹’4ïo—)œwݱOŠÂ¥âæeoîaÝô‡ð˜¤¿Æ&Œmwr7ûG—î¯ÃðΡ›\æÊÒ5áý¨†ŸÕ9¸t{Ú5q¿nO1æû÷Û\>?/(¦î›pª:ŒUw +I‘Å«tÅ[¼Ê$tÍûºbØáXÿ«Æ¤X¼Æ—³,ß–‘ßf6‹÷&>ç÷2ð†<ÿ¿ýŽÉïñ¯`ÆÇ%)–‹™ã9'çà%y ²€•¬`#xM^GæäæäæäæäæäæäOöàgò3˜= +zö(èQØ£ Ga‚•þ(üQêQèQêQèQêQèQêQèQêQèQêQèÑy¦6…6¥ +Œ>|0Ö5Ô5Ö5Ô5Ö5Ô5Ö5Ô5»c0ëêkjÙ ùLOæó`ôÄà‰Ñƒ'v?7ðÄÓO<µyhóÔæ¡ÍS›‡6OmÚ<µyhóÔæ¡ÍÓO> +endobj +172 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_i/f_l/f_f_i/f_f/space/parenleft/parenright/comma/hyphen/period/slash/one/two/five/six/colon/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/quoteleft/quoteright) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 857 0 R +/FontName /LWAUZW+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +173 0 obj +<< +/Filter /FlateDecode +/Length 528 +>> +stream +H‰\”ÝŽ¢@…ïyŠ¾œ¹˜€Ø]5&ÄÄqv/ö'ëì ´.É +ñ·ß:¢›5Á>%Ôá;ØEºÝ½ïÚfté¡«öqtǦ­‡xé®CÝ!žš6Yä®nªq®¦ïê\öIjÍûÛeŒç]{ì’¢péO;y‡›{ÚÔÝ!>'é÷¡ŽCÓžÜÓ¯íþÙ¥ûkßÿ‰çØŽ.s뵫ãÑŒ¾–ý·ò]:µ½ìj;ߌ·ëy\ñyë£Ë§zA˜ª«ã¥/«8”í)&EfŸµ+>ì³Nb[ÿw^<ÛÇêw9$Åbkg™ˆ«µÕïz‹úË£¾_óñÏoVçÙTÛbú•úzEžœ÷Éá™ó¶˜¦¿-¦ékKR,“¶ÅtNCê-Ô`Xn¨7¦={=z={=zý’z í©=4==<===<½R+4syäòÌå‘Ë¿Q¿A3£GFÏŒ=3zdôÌè‘1ð¹<·@ÎÎ@ÎÎ@ÎÎ@ÎÎ@ÎÎ@ÎNavAv¡§ÀSè)ðz +<…žO‘ù…¦§LžÌ.È.Ì>íavAv™÷²Ë¼‡]æýƒì2ïdWfWdW2+˜•Ì +f%³‚Yɬ`V2+˜•Ì +f%³‚Yɬ`V2+˜•ûD±OV¸ož-pÍ*§^MC3OÆǦÜÝg³ºƒåô*˜æ“Ø´ñþ¶è»ÞYŽä¯"‚£ +endstream +endobj +174 0 obj +<< +/BaseFont /IGFVTC+Wingdings-Regular +/DescendantFonts 858 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 859 0 R +/Type /Font +>> +endobj +175 0 obj +<< +/BaseFont /VBAKTC+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 153 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 860 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +0 573 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +176 0 obj +<< +/BaseFont /WAPQHA+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 169 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 861 0 R +/Type /Font +/Widths [202] +>> +endobj +177 0 obj +<< +/BaseFont /MTNDXU+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 158 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 862 0 R +/Type /Font +/Widths [212] +>> +endobj +178 0 obj +<< +/BaseFont /LUYXJW+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 852 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 863 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 516 0 0 0 0 0 0 0 0 572 0 +0 0 0 0 0 569] +>> +endobj +179 0 obj +<< +/A 864 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [483.442 648.662 486.427 639.574] +/StructParent 8 +/Subtype /Link +/Type /Annot +>> +endobj +180 0 obj +<< +/A 865 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [303.001 307.515 306.207 298.428] +/StructParent 9 +/Subtype /Link +/Type /Annot +>> +endobj +181 0 obj +[866 0 R] +endobj +182 0 obj +<< +/Filter /FlateDecode +/Length 240 +>> +stream +H‰\PËjÄ0 ¼û+tÜ=,ÞGYZ†²¥C4í8¶’Û(Î!_EY¶P-†Ñ #éKýTÇP@¿Sr èBô„cšÈ!´Ø‡¨GðÁ•+’ß 6+Íâf uì’ª*ÐLŽ…fØ<úÔâVé7òH!ö°ùº4[ÐÍ”ó ìÁðرыͯv@Ð"ÛÕžùPækþ&>çŒp|XøäqÌÖ!ÙØ£ªö\ªg.£0úüiUµû¶$Ó'žæö`t'ˆ› óŠÎâtÕ,ž¼:Ü»‰ˆ³Ê}$ä/D¼0§ ¬Zžú`Öƒu + +endstream +endobj +183 0 obj +<< +/Ascent 953 +/CapHeight 674 +/CharSet (/space/P/a/b/c/d/e/g/i/l/m/n/o/r/s/t/u/y) +/Descent -250 +/Flags 96 +/FontBBox [-185 -250 1090 953] +/FontFamily (Myriad Pro) +/FontFile3 867 0 R +/FontName /OBICPQ+MyriadPro-It +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle -11 +/StemV 84 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +184 0 obj +<< +/Filter /FlateDecode +/Length 310 +>> +stream +H‰\‘ÛjÃ0 †ïýºl/JmæB`¤-äb–õR[é‹cœô"o?)*Ì`ë3²üÛ¿¢²:T®› úƒ©q‚¶s6à8Ü‚A¸àµs*IÁvfºï–ÕôW×ó8a_¹vPyÑ'%Ç)Ì°z±Ã×*zCç®°:—õ¢úæýöè&ˆ¡(ÀbK½6þ­é¢¥lSYÊwÓ¼¡š¿_³GH—}"1ƒÅÑ7C㮨ò˜Fù‰F¡ÐÙùäYÊ.­ùn‚ÊS>ÇTž gÌOɈSá”y+¼eÞ ï˜3áŒY kæ½ðž¹.™Âæ£ð‘ù$LϵèjÖÕ¢«YW‹®f]-ºšuµhQàßÈP§à᯹…@Ö.í\> +/Rect [210.466 109.934 213.64 100.846] +/StructParent 16 +/Subtype /Link +/Type /Annot +>> +endobj +186 0 obj +<< +/A 869 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [228.067 722.071 231.274 712.983] +/StructParent 18 +/Subtype /Link +/Type /Annot +>> +endobj +187 0 obj +<< +/A 870 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [353.214 557.978 356.42 548.891] +/StructParent 20 +/Subtype /Link +/Type /Annot +>> +endobj +188 0 obj +<< +/A 871 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 723.511 117.761 711.113] +/StructParent 26 +/Subtype /Link +/Type /Annot +>> +endobj +189 0 obj +<< +/A 872 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 697.511 117.761 685.113] +/StructParent 27 +/Subtype /Link +/Type /Annot +>> +endobj +190 0 obj +<< +/A 873 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 645.511 117.761 633.113] +/StructParent 28 +/Subtype /Link +/Type /Annot +>> +endobj +191 0 obj +<< +/A 874 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 606.511 117.761 594.113] +/StructParent 29 +/Subtype /Link +/Type /Annot +>> +endobj +192 0 obj +<< +/A 875 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 593.511 117.761 581.113] +/StructParent 30 +/Subtype /Link +/Type /Annot +>> +endobj +193 0 obj +<< +/A 876 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/Rect [113.386 580.511 117.761 568.113] +/StructParent 31 +/Subtype /Link +/Type /Annot +>> +endobj +194 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +195 0 obj +<< +/BaseFont /HDQTRP+Wingdings-Regular +/DescendantFonts 877 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 878 0 R +/Type /Font +>> +endobj +196 0 obj +<< +/BaseFont /MZMROK+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 879 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 880 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +197 0 obj +<< +/BaseFont /YEJLAM+MyriadPro-Light +/Encoding 881 0 R +/FirstChar 31 +/FontDescriptor 882 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 883 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +198 0 obj +<< +/BaseFont /MOPBOK+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 884 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 885 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +199 0 obj +<< +/BaseFont /CPLOEE+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 886 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 887 0 R +/Type /Font +/Widths [212] +>> +endobj +200 0 obj +<< +/BaseFont /UVMSWU+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 888 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 889 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 516 0 0 0 0 0 0 0 0 572 0 +0 0 0 0 0 569] +>> +endobj +201 0 obj +<< +/BaseFont /FIKHPT+Wingdings-Regular +/DescendantFonts 890 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 891 0 R +/Type /Font +>> +endobj +202 0 obj +<< +/K [214 0 R 215 0 R 216 0 R 219 0 R 224 0 R 225 0 R 228 0 R 892 0 R 229 0 R 230 0 R 231 0 R 233 0 R 893 0 R 894 0 R 247 0 R 895 0 R +252 0 R 896 0 R 271 0 R 273 0 R 275 0 R 897 0 R 277 0 R 279 0 R 280 0 R 281 0 R 282 0 R 286 0 R 288 0 R 289 0 R 292 0 R 293 0 R +294 0 R 295 0 R 296 0 R 297 0 R 298 0 R 898 0 R 300 0 R 301 0 R 308 0 R 309 0 R 311 0 R 312 0 R 316 0 R 317 0 R 322 0 R 323 0 R +326 0 R 328 0 R 333 0 R 335 0 R 336 0 R 337 0 R 342 0 R 343 0 R 346 0 R 349 0 R 350 0 R 352 0 R 353 0 R 356 0 R 899 0 R 372 0 R +374 0 R 375 0 R 377 0 R 379 0 R 402 0 R 403 0 R 407 0 R 412 0 R 419 0 R 420 0 R 900 0 R 441 0 R 445 0 R 901 0 R 464 0 R 466 0 R +467 0 R 469 0 R 470 0 R 471 0 R 902 0 R 483 0 R 485 0 R 489 0 R 493 0 R 498 0 R 499 0 R 501 0 R 504 0 R 505 0 R 903 0 R 507 0 R +508 0 R 904 0 R 519 0 R 520 0 R 905 0 R 545 0 R 546 0 R 547 0 R 551 0 R 552 0 R 554 0 R 555 0 R 557 0 R 558 0 R 565 0 R 566 0 R +572 0 R 906 0 R 600 0 R 602 0 R 606 0 R 607 0 R 608 0 R 609 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R +621 0 R 622 0 R 907 0 R] +/P 100 0 R +/S /Story +>> +endobj +203 0 obj +<< +/K 255 0 R +/P 100 0 R +/S /Story +>> +endobj +204 0 obj +<< +/K [908 0 R 258 0 R 259 0 R 256 0 R 257 0 R 909 0 R 910 0 R] +/P 100 0 R +/S /Figure +>> +endobj +205 0 obj +<< +/K 284 0 R +/P 100 0 R +/S /Story +>> +endobj +206 0 obj +<< +/K 320 0 R +/P 100 0 R +/S /Story +>> +endobj +207 0 obj +<< +/K 911 0 R +/P 100 0 R +/S /Story +>> +endobj +208 0 obj +<< +/K 716 0 R +/P 100 0 R +/S /Story +>> +endobj +209 0 obj +<< +/K 912 0 R +/P 100 0 R +/S /Story +>> +endobj +210 0 obj +<< +/K 913 0 R +/P 100 0 R +/S /Story +>> +endobj +211 0 obj +<< +/K [773 0 R 914 0 R 774 0 R 915 0 R] +/P 100 0 R +/S /Story +>> +endobj +212 0 obj +<< +/K [811 0 R 826 0 R 813 0 R 827 0 R 816 0 R 828 0 R 818 0 R 829 0 R 821 0 R 830 0 R 823 0 R 831 0 R 825 0 R] +/P 100 0 R +/S /Story +>> +endobj +213 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 214 0 R +/Pg 9 0 R +/S /Span +>> +endobj +214 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [213 0 R 1 2] +/P 202 0 R +/Pg 9 0 R +/S /Kapitel-Head +>> +endobj +215 0 obj +<< +/C /Pa1 +/K 3 +/P 202 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +216 0 obj +<< +/C /Pa2 +/K [4 5 217 0 R 7 8 9 10 11 218 0 R 13 14] +/P 202 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +217 0 obj +<< +/ActualText +/K 6 +/P 216 0 R +/Pg 9 0 R +/S /Span +>> +endobj +218 0 obj +<< +/ActualText +/K 12 +/P 216 0 R +/Pg 9 0 R +/S /Span +>> +endobj +219 0 obj +<< +/C /Pa3 +/K [15 220 0 R 17 221 0 R 19 20 222 0 R 22 23 24 223 0 R 26 27 28 29 30] +/P 202 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +220 0 obj +<< +/ActualText +/K 16 +/P 219 0 R +/Pg 9 0 R +/S /Span +>> +endobj +221 0 obj +<< +/ActualText +/K 18 +/P 219 0 R +/Pg 9 0 R +/S /Span +>> +endobj +222 0 obj +<< +/ActualText +/K 21 +/P 219 0 R +/Pg 9 0 R +/S /Span +>> +endobj +223 0 obj +<< +/ActualText +/K 25 +/P 219 0 R +/Pg 9 0 R +/S /Span +>> +endobj +224 0 obj +<< +/C /Pa1 +/K 31 +/P 202 0 R +/Pg 9 0 R +/S /Zwischenhead_1 +>> +endobj +225 0 obj +<< +/C /Pa2 +/K [32 33 34 35 226 0 R 37 227 0 R 39] +/P 202 0 R +/Pg 9 0 R +/S /Lauftext_1._Abs +>> +endobj +226 0 obj +<< +/ActualText +/K 36 +/P 225 0 R +/Pg 9 0 R +/S /Span +>> +endobj +227 0 obj +<< +/ActualText +/K 38 +/P 225 0 R +/Pg 9 0 R +/S /Span +>> +endobj +228 0 obj +<< +/C /Pa3 +/K [40 41 42] +/P 202 0 R +/Pg 9 0 R +/S /Lauftext +>> +endobj +229 0 obj +<< +/C /Pa3 +/K [43 44 45 46 47 48] +/P 202 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +230 0 obj +<< +/C /Pa1 +/K 49 +/P 202 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +231 0 obj +<< +/C /Pa2 +/K [50 51 232 0 R 53] +/P 202 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +232 0 obj +<< +/ActualText +/K 52 +/P 231 0 R +/Pg 10 0 R +/S /Span +>> +endobj +233 0 obj +<< +/C /Pa3 +/K [54 55 56 57 58] +/P 202 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +234 0 obj +<< +/C /A4 +/K 59 +/P 916 0 R +/Pg 10 0 R +/S /Span +>> +endobj +235 0 obj +<< +/K [60 236 0 R 62] +/P 917 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +236 0 obj +<< +/ActualText +/K 61 +/P 235 0 R +/Pg 10 0 R +/S /Span +>> +endobj +237 0 obj +<< +/C /A4 +/K 63 +/P 918 0 R +/Pg 10 0 R +/S /Span +>> +endobj +238 0 obj +<< +/K [64 239 0 R 66] +/P 919 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +239 0 obj +<< +/ActualText +/K 65 +/P 238 0 R +/Pg 10 0 R +/S /Span +>> +endobj +240 0 obj +<< +/C /A4 +/K 67 +/P 920 0 R +/Pg 10 0 R +/S /Span +>> +endobj +241 0 obj +<< +/K 68 +/P 921 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +242 0 obj +<< +/C /A4 +/K 69 +/P 922 0 R +/Pg 10 0 R +/S /Span +>> +endobj +243 0 obj +<< +/K 70 +/P 923 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +244 0 obj +<< +/C /A4 +/K 71 +/P 924 0 R +/Pg 10 0 R +/S /Span +>> +endobj +245 0 obj +<< +/K 72 +/P 925 0 R +/Pg 10 0 R +/S /LBody +>> +endobj +246 0 obj +<< +/C /A5 +/K 73 +/P 247 0 R +/Pg 10 0 R +/S /Span +>> +endobj +247 0 obj +<< +/C /Pa2 +/K [246 0 R 74 75 248 0 R 77 249 0 R 79 267 0 R 81 82 83] +/P 202 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +248 0 obj +<< +/ActualText +/K 76 +/P 247 0 R +/Pg 10 0 R +/S /Span +>> +endobj +249 0 obj +<< +/ActualText +/K 78 +/P 247 0 R +/Pg 10 0 R +/S /Span +>> +endobj +250 0 obj +<< +/C /A6 +/K 80 +/P 267 0 R +/Pg 10 0 R +/S /Span +>> +endobj +251 0 obj +<< +/C /A5 +/K 84 +/P 252 0 R +/Pg 10 0 R +/S /Span +>> +endobj +252 0 obj +<< +/C /Pa2 +/K [251 0 R 85 253 0 R 87 254 0 R 89 90 << +/MCID 103 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 104 +/Pg 11 0 R +/Type /MCR +>> << +/MCID 105 +/Pg 11 0 R +/Type /MCR +>>] +/P 202 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +253 0 obj +<< +/ActualText +/K 86 +/P 252 0 R +/Pg 10 0 R +/S /Span +>> +endobj +254 0 obj +<< +/ActualText +/K 88 +/P 252 0 R +/Pg 10 0 R +/S /Span +>> +endobj +255 0 obj +<< +/C /Pa5 +/K 91 +/P 203 0 R +/Pg 10 0 R +/S /Tab._Versal_bold_sch +>> +endobj +256 0 obj +<< +/A << +/BBox [215.22 643.127 219.974 662.096] +/O /Layout +/Placement /Block +>> +/K 92 +/P 204 0 R +/Pg 10 0 R +/S /Figure +>> +endobj +257 0 obj +<< +/A << +/BBox [423.567 643.127 428.32 662.096] +/O /Layout +/Placement /Block +>> +/K 93 +/P 204 0 R +/Pg 10 0 R +/S /Figure +>> +endobj +258 0 obj +<< +/A << +/BBox [321.62 661.796 321.92 683.761] +/O /Layout +/Placement /Block +>> +/K 94 +/P 204 0 R +/Pg 10 0 R +/S /Figure +>> +endobj +259 0 obj +<< +/A << +/BBox [217.447 661.798 426.093 662.098] +/O /Layout +/Placement /Block +>> +/K 95 +/P 204 0 R +/Pg 10 0 R +/S /Figure +>> +endobj +260 0 obj +<< +/C /A7 +/K 96 +/P 926 0 R +/Pg 10 0 R +/S /Span +>> +endobj +261 0 obj +<< +/ActualText +/C /A7 +/K 97 +/P 926 0 R +/Pg 10 0 R +/S /Span +>> +endobj +262 0 obj +<< +/C /A7 +/K 98 +/P 926 0 R +/Pg 10 0 R +/S /Span +>> +endobj +263 0 obj +<< +/C /A7 +/K 99 +/P 927 0 R +/Pg 10 0 R +/S /Span +>> +endobj +264 0 obj +<< +/ActualText +/C /A7 +/K 100 +/P 927 0 R +/Pg 10 0 R +/S /Span +>> +endobj +265 0 obj +<< +/C /A7 +/K 101 +/P 927 0 R +/Pg 10 0 R +/S /Span +>> +endobj +266 0 obj +<< +/C /A8 +/K 102 +/P 928 0 R +/Pg 10 0 R +/S /Span +>> +endobj +267 0 obj +<< +/K [103 0 R 250 0 R] +/P 247 0 R +/S /Reference +>> +endobj +268 0 obj +<< +/C /A5 +/K 106 +/P 271 0 R +/Pg 11 0 R +/S /Span +>> +endobj +269 0 obj +<< +/C /A9 +/K 107 +/P 271 0 R +/Pg 11 0 R +/S /Span +>> +endobj +270 0 obj +<< +/C /A9 +/K 108 +/P 271 0 R +/Pg 11 0 R +/S /Span +>> +endobj +271 0 obj +<< +/C /Pa2 +/K [268 0 R 269 0 R 270 0 R 109 272 0 R 111 112 113] +/P 202 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +272 0 obj +<< +/ActualText +/K 110 +/P 271 0 R +/Pg 11 0 R +/S /Span +>> +endobj +273 0 obj +<< +/C /Pa3 +/K [114 115 274 0 R 117 118 119] +/P 202 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +274 0 obj +<< +/ActualText +/K 116 +/P 273 0 R +/Pg 11 0 R +/S /Span +>> +endobj +275 0 obj +<< +/C /Pa3 +/K 120 +/P 202 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +276 0 obj +<< +/C /A5 +/K 121 +/P 277 0 R +/Pg 11 0 R +/S /Span +>> +endobj +277 0 obj +<< +/C /Pa2 +/K [276 0 R 122 123 124 278 0 R 126 127 128] +/P 202 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +278 0 obj +<< +/ActualText +/K 125 +/P 277 0 R +/Pg 11 0 R +/S /Span +>> +endobj +279 0 obj +<< +/C /Pa1 +/K 129 +/P 202 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +280 0 obj +<< +/C /Pa2 +/K [130 131 132 133 134] +/P 202 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +281 0 obj +<< +/C /Pa3 +/K [135 136 137 138 139 140 141 142 143] +/P 202 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +282 0 obj +<< +/C /Pa3 +/K [144 145 146 147 283 0 R 149 150 151] +/P 202 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +283 0 obj +<< +/ActualText +/K 148 +/P 282 0 R +/Pg 11 0 R +/S /Span +>> +endobj +284 0 obj +<< +/C /Pa7 +/K [152 285 0 R 154 155 156] +/P 205 0 R +/Pg 11 0 R +/S /Einklinker-Text__rec +>> +endobj +285 0 obj +<< +/ActualText +/K 153 +/P 284 0 R +/Pg 11 0 R +/S /Span +>> +endobj +286 0 obj +<< +/C /Pa3 +/K [157 158 287 0 R 160 161 162 163 164] +/P 202 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +287 0 obj +<< +/ActualText +/K 159 +/P 286 0 R +/Pg 12 0 R +/S /Span +>> +endobj +288 0 obj +<< +/C /Pa1 +/K 165 +/P 202 0 R +/Pg 12 0 R +/S /Zwischenhead_1 +>> +endobj +289 0 obj +<< +/C /Pa2 +/K [166 290 0 R 168 291 0 R 170] +/P 202 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +290 0 obj +<< +/ActualText +/K 167 +/P 289 0 R +/Pg 12 0 R +/S /Span +>> +endobj +291 0 obj +<< +/ActualText +/K 169 +/P 289 0 R +/Pg 12 0 R +/S /Span +>> +endobj +292 0 obj +<< +/C /Pa8 +/K 171 +/P 202 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +293 0 obj +<< +/C /Pa2 +/K [172 173 174] +/P 202 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +294 0 obj +<< +/C /Pa8 +/K 175 +/P 202 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +295 0 obj +<< +/C /Pa2 +/K [176 177 178 179 180 181 182 183] +/P 202 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +296 0 obj +<< +/C /Pa3 +/K [184 185 186 187] +/P 202 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +297 0 obj +<< +/C /Pa8 +/K 188 +/P 202 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +298 0 obj +<< +/C /Pa2 +/K [189 190 191 299 0 R 193 194] +/P 202 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +299 0 obj +<< +/ActualText +/K 192 +/P 298 0 R +/Pg 12 0 R +/S /Span +>> +endobj +300 0 obj +<< +/C /Pa8 +/K 195 +/P 202 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +301 0 obj +<< +/C /Pa2 +/K [196 197 198 199 302 0 R 201 303 0 R 203 204 205 304 0 R 207 208 305 0 R 210 211 +306 0 R 213 214 215 216 307 0 R 218] +/P 202 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +302 0 obj +<< +/ActualText +/K 200 +/P 301 0 R +/Pg 13 0 R +/S /Span +>> +endobj +303 0 obj +<< +/ActualText +/K 202 +/P 301 0 R +/Pg 13 0 R +/S /Span +>> +endobj +304 0 obj +<< +/ActualText +/K 206 +/P 301 0 R +/Pg 13 0 R +/S /Span +>> +endobj +305 0 obj +<< +/ActualText +/K 209 +/P 301 0 R +/Pg 13 0 R +/S /Span +>> +endobj +306 0 obj +<< +/ActualText +/K 212 +/P 301 0 R +/Pg 13 0 R +/S /Span +>> +endobj +307 0 obj +<< +/ActualText +/K 217 +/P 301 0 R +/Pg 13 0 R +/S /Span +>> +endobj +308 0 obj +<< +/C /Pa8 +/K 219 +/P 202 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +309 0 obj +<< +/C /Pa2 +/K [220 221 222 310 0 R 224] +/P 202 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +310 0 obj +<< +/ActualText +/K 223 +/P 309 0 R +/Pg 13 0 R +/S /Span +>> +endobj +311 0 obj +<< +/C /Pa8 +/K 225 +/P 202 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +312 0 obj +<< +/C /Pa2 +/K [226 227 228 313 0 R 230 314 0 R 232 315 0 R 234] +/P 202 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +313 0 obj +<< +/ActualText +/K 229 +/P 312 0 R +/Pg 13 0 R +/S /Span +>> +endobj +314 0 obj +<< +/ActualText +/K 231 +/P 312 0 R +/Pg 13 0 R +/S /Span +>> +endobj +315 0 obj +<< +/ActualText +/K 233 +/P 312 0 R +/Pg 13 0 R +/S /Span +>> +endobj +316 0 obj +<< +/C /Pa1 +/K 235 +/P 202 0 R +/Pg 13 0 R +/S /Zwischenhead_1 +>> +endobj +317 0 obj +<< +/C /Pa2 +/K [236 237 238 318 0 R 240 241 319 0 R 243 244 245 << +/MCID 250 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 251 +/Pg 14 0 R +/Type /MCR +>> 321 0 R << +/MCID 253 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 254 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 255 +/Pg 14 0 R +/Type /MCR +>>] +/P 202 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +318 0 obj +<< +/ActualText +/K 239 +/P 317 0 R +/Pg 13 0 R +/S /Span +>> +endobj +319 0 obj +<< +/ActualText +/K 242 +/P 317 0 R +/Pg 13 0 R +/S /Span +>> +endobj +320 0 obj +<< +/C /Pa7 +/K [246 247 248 249] +/P 206 0 R +/Pg 13 0 R +/S /Einklinker-Text__rec +>> +endobj +321 0 obj +<< +/ActualText +/K 252 +/P 317 0 R +/Pg 14 0 R +/S /Span +>> +endobj +322 0 obj +<< +/C /Pa8 +/K 256 +/P 202 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +323 0 obj +<< +/C /Pa2 +/K [257 258 324 0 R 260 325 0 R 262 263 264] +/P 202 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +324 0 obj +<< +/ActualText +/K 259 +/P 323 0 R +/Pg 14 0 R +/S /Span +>> +endobj +325 0 obj +<< +/ActualText +/K 261 +/P 323 0 R +/Pg 14 0 R +/S /Span +>> +endobj +326 0 obj +<< +/C /Pa3 +/K [265 266 267 268 327 0 R 270 271] +/P 202 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +327 0 obj +<< +/ActualText +/K 269 +/P 326 0 R +/Pg 14 0 R +/S /Span +>> +endobj +328 0 obj +<< +/C /Pa3 +/K [272 329 0 R 274 275 330 0 R 277 278 279 280 281 282 331 0 R 284 332 0 R 286 287] +/P 202 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +329 0 obj +<< +/ActualText +/K 273 +/P 328 0 R +/Pg 14 0 R +/S /Span +>> +endobj +330 0 obj +<< +/ActualText +/K 276 +/P 328 0 R +/Pg 14 0 R +/S /Span +>> +endobj +331 0 obj +<< +/ActualText +/K 283 +/P 328 0 R +/Pg 14 0 R +/S /Span +>> +endobj +332 0 obj +<< +/ActualText +/K 285 +/P 328 0 R +/Pg 14 0 R +/S /Span +>> +endobj +333 0 obj +<< +/C /Pa3 +/K [288 334 0 R 290 291 292 293 294] +/P 202 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +334 0 obj +<< +/ActualText +/K 289 +/P 333 0 R +/Pg 14 0 R +/S /Span +>> +endobj +335 0 obj +<< +/C /Pa3 +/K [295 296 297 298 299 300] +/P 202 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +336 0 obj +<< +/C /Pa8 +/K 301 +/P 202 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +337 0 obj +<< +/C /Pa2 +/K [302 338 0 R 304 339 0 R 306 307 340 0 R 309 310 367 0 R 312 313] +/P 202 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +338 0 obj +<< +/ActualText +/K 303 +/P 337 0 R +/Pg 15 0 R +/S /Span +>> +endobj +339 0 obj +<< +/ActualText +/K 305 +/P 337 0 R +/Pg 15 0 R +/S /Span +>> +endobj +340 0 obj +<< +/ActualText +/K 308 +/P 337 0 R +/Pg 15 0 R +/S /Span +>> +endobj +341 0 obj +<< +/C /A6 +/K 311 +/P 367 0 R +/Pg 15 0 R +/S /Span +>> +endobj +342 0 obj +<< +/C /Pa9 +/K 314 +/P 202 0 R +/Pg 15 0 R +/S /Zwischenhead_3 +>> +endobj +343 0 obj +<< +/C /Pa2 +/K [315 344 0 R 317 345 0 R 319 320 321 322] +/P 202 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +344 0 obj +<< +/ActualText +/K 316 +/P 343 0 R +/Pg 15 0 R +/S /Span +>> +endobj +345 0 obj +<< +/ActualText +/K 318 +/P 343 0 R +/Pg 15 0 R +/S /Span +>> +endobj +346 0 obj +<< +/C /Pa3 +/K [323 347 0 R 325 326 327 348 0 R 329 330] +/P 202 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +347 0 obj +<< +/ActualText +/K 324 +/P 346 0 R +/Pg 15 0 R +/S /Span +>> +endobj +348 0 obj +<< +/ActualText +/K 328 +/P 346 0 R +/Pg 15 0 R +/S /Span +>> +endobj +349 0 obj +<< +/C /Pa9 +/K 331 +/P 202 0 R +/Pg 15 0 R +/S /Zwischenhead_3 +>> +endobj +350 0 obj +<< +/C /Pa2 +/K [332 351 0 R 334 335] +/P 202 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +351 0 obj +<< +/ActualText +/K 333 +/P 350 0 R +/Pg 15 0 R +/S /Span +>> +endobj +352 0 obj +<< +/C /Pa10 +/K 336 +/P 202 0 R +/Pg 15 0 R +/S /Zwischenhead_4 +>> +endobj +353 0 obj +<< +/C /Pa2 +/K [337 354 0 R 339 340 368 0 R 342] +/P 202 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +354 0 obj +<< +/ActualText +/K 338 +/P 353 0 R +/Pg 15 0 R +/S /Span +>> +endobj +355 0 obj +<< +/C /A6 +/K 341 +/P 368 0 R +/Pg 15 0 R +/S /Span +>> +endobj +356 0 obj +<< +/C /Pa10 +/K 343 +/P 202 0 R +/Pg 15 0 R +/S /Zwischenhead_4 +>> +endobj +357 0 obj +<< +/C /A4 +/K 344 +/P 929 0 R +/Pg 15 0 R +/S /Span +>> +endobj +358 0 obj +<< +/C /A4 +/K 345 +/P 929 0 R +/Pg 15 0 R +/S /Span +>> +endobj +359 0 obj +<< +/K [346 347 360 0 R 349 350 351 361 0 R 353] +/P 930 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +360 0 obj +<< +/ActualText +/K 348 +/P 359 0 R +/Pg 15 0 R +/S /Span +>> +endobj +361 0 obj +<< +/ActualText +/K 352 +/P 359 0 R +/Pg 15 0 R +/S /Span +>> +endobj +362 0 obj +<< +/C /A4 +/K 354 +/P 931 0 R +/Pg 15 0 R +/S /Span +>> +endobj +363 0 obj +<< +/C /A4 +/K 355 +/P 931 0 R +/Pg 15 0 R +/S /Span +>> +endobj +364 0 obj +<< +/K [356 357 365 0 R 359 360 366 0 R 362 363 364] +/P 932 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +365 0 obj +<< +/ActualText +/K 358 +/P 364 0 R +/Pg 15 0 R +/S /Span +>> +endobj +366 0 obj +<< +/ActualText +/K 361 +/P 364 0 R +/Pg 15 0 R +/S /Span +>> +endobj +367 0 obj +<< +/K [109 0 R 341 0 R] +/P 337 0 R +/S /Reference +>> +endobj +368 0 obj +<< +/K [110 0 R 355 0 R] +/P 353 0 R +/S /Reference +>> +endobj +369 0 obj +<< +/C /A4 +/K 365 +/P 933 0 R +/Pg 16 0 R +/S /Span +>> +endobj +370 0 obj +<< +/C /A4 +/K 366 +/P 933 0 R +/Pg 16 0 R +/S /Span +>> +endobj +371 0 obj +<< +/K [367 368 369 370] +/P 934 0 R +/Pg 16 0 R +/S /LBody +>> +endobj +372 0 obj +<< +/C /Pa3 +/K [371 372 373 0 R 374 375 376] +/P 202 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +373 0 obj +<< +/ActualText +/K 373 +/P 372 0 R +/Pg 16 0 R +/S /Span +>> +endobj +374 0 obj +<< +/C /Pa9 +/K 377 +/P 202 0 R +/Pg 16 0 R +/S /Zwischenhead_3 +>> +endobj +375 0 obj +<< +/C /Pa2 +/K [378 379 380 376 0 R 382] +/P 202 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +376 0 obj +<< +/ActualText +/K 381 +/P 375 0 R +/Pg 16 0 R +/S /Span +>> +endobj +377 0 obj +<< +/C /Pa3 +/K [383 384 378 0 R 386] +/P 202 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +378 0 obj +<< +/ActualText +/K 385 +/P 377 0 R +/Pg 16 0 R +/S /Span +>> +endobj +379 0 obj +<< +/C /Pa3 +/K [387 380 0 R 389 390] +/P 202 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +380 0 obj +<< +/ActualText +/K 388 +/P 379 0 R +/Pg 16 0 R +/S /Span +>> +endobj +381 0 obj +<< +/C /Pa5 +/K 391 +/P 935 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_wei +>> +endobj +382 0 obj +<< +/C /Pa5 +/K [392 383 0 R 394] +/P 936 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_wei +>> +endobj +383 0 obj +<< +/ActualText +/K 393 +/P 382 0 R +/Pg 16 0 R +/S /Span +>> +endobj +384 0 obj +<< +/C /Pa5 +/K 395 +/P 937 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_wei +>> +endobj +385 0 obj +<< +/C /Pa5 +/K 396 +/P 938 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_sch +>> +endobj +386 0 obj +<< +/C /Pa15 +/K [397 398] +/P 939 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +387 0 obj +<< +/C /Pa15 +/K [399 400] +/P 939 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +388 0 obj +<< +/C /Pa15 +/K 401 +/P 939 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +389 0 obj +<< +/C /Pa15 +/K [402 390 0 R 404 405] +/P 939 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +390 0 obj +<< +/ActualText +/K 403 +/P 389 0 R +/Pg 16 0 R +/S /Span +>> +endobj +391 0 obj +<< +/C /Pa15 +/K [406 407] +/P 940 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +392 0 obj +<< +/C /Pa15 +/K [408 409 410] +/P 940 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +393 0 obj +<< +/C /Pa15 +/K [411 412 413] +/P 940 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +394 0 obj +<< +/C /Pa15 +/K [414 415 416 417] +/P 940 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +395 0 obj +<< +/C /Pa5 +/K 418 +/P 941 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_sch +>> +endobj +396 0 obj +<< +/C /Pa15 +/K 419 +/P 942 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +397 0 obj +<< +/C /Pa15 +/K [420 421] +/P 943 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +398 0 obj +<< +/C /Pa5 +/K 422 +/P 944 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_sch +>> +endobj +399 0 obj +<< +/C /Pa15 +/K [423 424] +/P 945 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +400 0 obj +<< +/C /Pa15 +/K [425 426 401 0 R 428] +/P 946 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +401 0 obj +<< +/ActualText +/K 427 +/P 400 0 R +/Pg 16 0 R +/S /Span +>> +endobj +402 0 obj +<< +/C /Pa8 +/K 429 +/P 202 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +403 0 obj +<< +/C /Pa2 +/K [430 404 0 R 432 405 0 R 434 406 0 R 436 437 438 439] +/P 202 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +404 0 obj +<< +/ActualText +/K 431 +/P 403 0 R +/Pg 17 0 R +/S /Span +>> +endobj +405 0 obj +<< +/ActualText +/K 433 +/P 403 0 R +/Pg 17 0 R +/S /Span +>> +endobj +406 0 obj +<< +/ActualText +/K 435 +/P 403 0 R +/Pg 17 0 R +/S /Span +>> +endobj +407 0 obj +<< +/C /Pa3 +/K [440 408 0 R 442 409 0 R 444 410 0 R 446 447 448 449 450 451 411 0 R 453] +/P 202 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +408 0 obj +<< +/ActualText +/K 441 +/P 407 0 R +/Pg 17 0 R +/S /Span +>> +endobj +409 0 obj +<< +/ActualText +/K 443 +/P 407 0 R +/Pg 17 0 R +/S /Span +>> +endobj +410 0 obj +<< +/ActualText +/K 445 +/P 407 0 R +/Pg 17 0 R +/S /Span +>> +endobj +411 0 obj +<< +/ActualText +/K 452 +/P 407 0 R +/Pg 17 0 R +/S /Span +>> +endobj +412 0 obj +<< +/C /Pa3 +/K [454 455 456 457 458 459 413 0 R 461 462 463 414 0 R 465 415 0 R 467 468 416 0 R +470 417 0 R 472 473 418 0 R 475] +/P 202 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +413 0 obj +<< +/ActualText +/K 460 +/P 412 0 R +/Pg 17 0 R +/S /Span +>> +endobj +414 0 obj +<< +/ActualText +/K 464 +/P 412 0 R +/Pg 17 0 R +/S /Span +>> +endobj +415 0 obj +<< +/ActualText +/K 466 +/P 412 0 R +/Pg 17 0 R +/S /Span +>> +endobj +416 0 obj +<< +/ActualText +/K 469 +/P 412 0 R +/Pg 17 0 R +/S /Span +>> +endobj +417 0 obj +<< +/ActualText +/K 471 +/P 412 0 R +/Pg 17 0 R +/S /Span +>> +endobj +418 0 obj +<< +/ActualText +/K 474 +/P 412 0 R +/Pg 17 0 R +/S /Span +>> +endobj +419 0 obj +<< +/C /Pa1 +/K 476 +/P 202 0 R +/Pg 17 0 R +/S /Zwischenhead_1 +>> +endobj +420 0 obj +<< +/C /Pa2 +/K [477 478 479] +/P 202 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +421 0 obj +<< +/C /A4 +/K 480 +/P 947 0 R +/Pg 17 0 R +/S /Span +>> +endobj +422 0 obj +<< +/C /A4 +/K 481 +/P 947 0 R +/Pg 17 0 R +/S /Span +>> +endobj +423 0 obj +<< +/K [482 483] +/P 948 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +424 0 obj +<< +/C /A4 +/K 484 +/P 949 0 R +/Pg 17 0 R +/S /Span +>> +endobj +425 0 obj +<< +/C /A4 +/K 485 +/P 949 0 R +/Pg 17 0 R +/S /Span +>> +endobj +426 0 obj +<< +/K [486 487 427 0 R 489 490] +/P 950 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +427 0 obj +<< +/ActualText +/K 488 +/P 426 0 R +/Pg 17 0 R +/S /Span +>> +endobj +428 0 obj +<< +/C /A4 +/K 491 +/P 951 0 R +/Pg 18 0 R +/S /Span +>> +endobj +429 0 obj +<< +/C /A4 +/K 492 +/P 951 0 R +/Pg 18 0 R +/S /Span +>> +endobj +430 0 obj +<< +/K [493 494] +/P 952 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +431 0 obj +<< +/C /A4 +/K 495 +/P 953 0 R +/Pg 18 0 R +/S /Span +>> +endobj +432 0 obj +<< +/C /A4 +/K 496 +/P 953 0 R +/Pg 18 0 R +/S /Span +>> +endobj +433 0 obj +<< +/K [497 498] +/P 954 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +434 0 obj +<< +/C /A4 +/K 499 +/P 955 0 R +/Pg 18 0 R +/S /Span +>> +endobj +435 0 obj +<< +/C /A4 +/K 500 +/P 955 0 R +/Pg 18 0 R +/S /Span +>> +endobj +436 0 obj +<< +/K [501 437 0 R 503] +/P 956 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +437 0 obj +<< +/ActualText +/K 502 +/P 436 0 R +/Pg 18 0 R +/S /Span +>> +endobj +438 0 obj +<< +/C /A4 +/K 504 +/P 957 0 R +/Pg 18 0 R +/S /Span +>> +endobj +439 0 obj +<< +/C /A4 +/K 505 +/P 957 0 R +/Pg 18 0 R +/S /Span +>> +endobj +440 0 obj +<< +/K [506 507] +/P 958 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +441 0 obj +<< +/C /Pa3 +/K [508 442 0 R 510 511 512 443 0 R 514 444 0 R 516 517 518] +/P 202 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +442 0 obj +<< +/ActualText +/K 509 +/P 441 0 R +/Pg 18 0 R +/S /Span +>> +endobj +443 0 obj +<< +/ActualText +/K 513 +/P 441 0 R +/Pg 18 0 R +/S /Span +>> +endobj +444 0 obj +<< +/ActualText +/K 515 +/P 441 0 R +/Pg 18 0 R +/S /Span +>> +endobj +445 0 obj +<< +/C /Pa3 +/K [519 446 0 R 521 447 0 R 523 524 448 0 R 526 527 528 529 530 531] +/P 202 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +446 0 obj +<< +/ActualText +/K 520 +/P 445 0 R +/Pg 18 0 R +/S /Span +>> +endobj +447 0 obj +<< +/ActualText +/K 522 +/P 445 0 R +/Pg 18 0 R +/S /Span +>> +endobj +448 0 obj +<< +/ActualText +/K 525 +/P 445 0 R +/Pg 18 0 R +/S /Span +>> +endobj +449 0 obj +<< +/C /A4 +/K 532 +/P 959 0 R +/Pg 18 0 R +/S /Span +>> +endobj +450 0 obj +<< +/C /A4 +/K 533 +/P 959 0 R +/Pg 18 0 R +/S /Span +>> +endobj +451 0 obj +<< +/K [534 452 0 R 536 453 0 R 538] +/P 960 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +452 0 obj +<< +/ActualText +/K 535 +/P 451 0 R +/Pg 18 0 R +/S /Span +>> +endobj +453 0 obj +<< +/ActualText +/K 537 +/P 451 0 R +/Pg 18 0 R +/S /Span +>> +endobj +454 0 obj +<< +/C /A4 +/K 539 +/P 961 0 R +/Pg 18 0 R +/S /Span +>> +endobj +455 0 obj +<< +/C /A4 +/K 540 +/P 961 0 R +/Pg 18 0 R +/S /Span +>> +endobj +456 0 obj +<< +/K [541 457 0 R 543] +/P 962 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +457 0 obj +<< +/ActualText +/K 542 +/P 456 0 R +/Pg 18 0 R +/S /Span +>> +endobj +458 0 obj +<< +/C /A4 +/K 544 +/P 963 0 R +/Pg 18 0 R +/S /Span +>> +endobj +459 0 obj +<< +/C /A4 +/K 545 +/P 963 0 R +/Pg 18 0 R +/S /Span +>> +endobj +460 0 obj +<< +/K [546 547 548 549 550] +/P 964 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +461 0 obj +<< +/C /A4 +/K 551 +/P 965 0 R +/Pg 18 0 R +/S /Span +>> +endobj +462 0 obj +<< +/C /A4 +/K 552 +/P 965 0 R +/Pg 18 0 R +/S /Span +>> +endobj +463 0 obj +<< +/K [553 554] +/P 966 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +464 0 obj +<< +/C /Pa3 +/K [555 556 557 558 465 0 R 560] +/P 202 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +465 0 obj +<< +/ActualText +/K 559 +/P 464 0 R +/Pg 18 0 R +/S /Span +>> +endobj +466 0 obj +<< +/C /Pa8 +/K 818 +/P 202 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +467 0 obj +<< +/C /Pa2 +/K [819 468 0 R 821 822 823 824 825 826 827 828] +/P 202 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +468 0 obj +<< +/ActualText +/K 820 +/P 467 0 R +/Pg 21 0 R +/S /Span +>> +endobj +469 0 obj +<< +/C /Pa9 +/K 829 +/P 202 0 R +/Pg 21 0 R +/S /Zwischenhead_3 +>> +endobj +470 0 obj +<< +/C /Pa2 +/K [830 831 832 833 834] +/P 202 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +471 0 obj +<< +/C /Pa3 +/K [835 836] +/P 202 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +472 0 obj +<< +/C /A4 +/K 837 +/P 967 0 R +/Pg 21 0 R +/S /Span +>> +endobj +473 0 obj +<< +/C /A4 +/K 838 +/P 967 0 R +/Pg 21 0 R +/S /Span +>> +endobj +474 0 obj +<< +/K [839 840] +/P 968 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +475 0 obj +<< +/C /A4 +/K 841 +/P 969 0 R +/Pg 21 0 R +/S /Span +>> +endobj +476 0 obj +<< +/C /A4 +/K 842 +/P 969 0 R +/Pg 21 0 R +/S /Span +>> +endobj +477 0 obj +<< +/K [843 478 0 R 845] +/P 970 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +478 0 obj +<< +/ActualText +/K 844 +/P 477 0 R +/Pg 21 0 R +/S /Span +>> +endobj +479 0 obj +<< +/C /A4 +/K 846 +/P 971 0 R +/Pg 21 0 R +/S /Span +>> +endobj +480 0 obj +<< +/C /A4 +/K 847 +/P 971 0 R +/Pg 21 0 R +/S /Span +>> +endobj +481 0 obj +<< +/K [848 482 0 R 850] +/P 972 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +482 0 obj +<< +/ActualText +/K 849 +/P 481 0 R +/Pg 21 0 R +/S /Span +>> +endobj +483 0 obj +<< +/C /Pa3 +/K [851 852 484 0 R 854 855 856 857 858 859 860 861 862 863 864] +/P 202 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +484 0 obj +<< +/ActualText +/K 853 +/P 483 0 R +/Pg 21 0 R +/S /Span +>> +endobj +485 0 obj +<< +/C /Pa3 +/K [865 866 867 868 486 0 R 870 871 872 873 874 << +/MCID 875 +/Pg 22 0 R +/Type /MCR +>> 487 0 R << +/MCID 877 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 878 +/Pg 22 0 R +/Type /MCR +>> 488 0 R << +/MCID 880 +/Pg 22 0 R +/Type /MCR +>> +<< +/MCID 881 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 882 +/Pg 22 0 R +/Type /MCR +>>] +/P 202 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +486 0 obj +<< +/ActualText +/K 869 +/P 485 0 R +/Pg 21 0 R +/S /Span +>> +endobj +487 0 obj +<< +/ActualText +/K 876 +/P 485 0 R +/Pg 22 0 R +/S /Span +>> +endobj +488 0 obj +<< +/ActualText +/K 879 +/P 485 0 R +/Pg 22 0 R +/S /Span +>> +endobj +489 0 obj +<< +/C /Pa3 +/K [883 490 0 R 885 886 491 0 R 888 492 0 R 890 891 892 893] +/P 202 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +490 0 obj +<< +/ActualText +/K 884 +/P 489 0 R +/Pg 22 0 R +/S /Span +>> +endobj +491 0 obj +<< +/ActualText +/K 887 +/P 489 0 R +/Pg 22 0 R +/S /Span +>> +endobj +492 0 obj +<< +/ActualText +/K 889 +/P 489 0 R +/Pg 22 0 R +/S /Span +>> +endobj +493 0 obj +<< +/C /Pa3 +/K [894 895 896 897 494 0 R 899 900 901 495 0 R 903 496 0 R 905 497 0 R 907] +/P 202 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +494 0 obj +<< +/ActualText +/K 898 +/P 493 0 R +/Pg 22 0 R +/S /Span +>> +endobj +495 0 obj +<< +/ActualText +/K 902 +/P 493 0 R +/Pg 22 0 R +/S /Span +>> +endobj +496 0 obj +<< +/ActualText +/K 904 +/P 493 0 R +/Pg 22 0 R +/S /Span +>> +endobj +497 0 obj +<< +/ActualText +/K 906 +/P 493 0 R +/Pg 22 0 R +/S /Span +>> +endobj +498 0 obj +<< +/C /Pa9 +/K 908 +/P 202 0 R +/Pg 22 0 R +/S /Zwischenhead_3 +>> +endobj +499 0 obj +<< +/C /Pa2 +/K [909 910 500 0 R 912 913] +/P 202 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +500 0 obj +<< +/ActualText +/K 911 +/P 499 0 R +/Pg 22 0 R +/S /Span +>> +endobj +501 0 obj +<< +/C /Pa3 +/K [914 915 502 0 R 917 918 919 503 0 R 921 922 923] +/P 202 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +502 0 obj +<< +/ActualText +/K 916 +/P 501 0 R +/Pg 22 0 R +/S /Span +>> +endobj +503 0 obj +<< +/ActualText +/K 920 +/P 501 0 R +/Pg 22 0 R +/S /Span +>> +endobj +504 0 obj +<< +/C /Pa3 +/K [924 925 926 927] +/P 202 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +505 0 obj +<< +/C /Pa3 +/K [928 929 506 0 R 931 932] +/P 202 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +506 0 obj +<< +/ActualText +/K 930 +/P 505 0 R +/Pg 22 0 R +/S /Span +>> +endobj +507 0 obj +<< +/C /Pa10 +/K 933 +/P 202 0 R +/Pg 23 0 R +/S /Zwischenhead_4 +>> +endobj +508 0 obj +<< +/C /Pa2 +/K [934 509 0 R 936 937 510 0 R 939 940] +/P 202 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +509 0 obj +<< +/ActualText +/K 935 +/P 508 0 R +/Pg 23 0 R +/S /Span +>> +endobj +510 0 obj +<< +/ActualText +/K 938 +/P 508 0 R +/Pg 23 0 R +/S /Span +>> +endobj +511 0 obj +<< +/C /A4 +/K 941 +/P 973 0 R +/Pg 23 0 R +/S /Span +>> +endobj +512 0 obj +<< +/C /A4 +/K 942 +/P 973 0 R +/Pg 23 0 R +/S /Span +>> +endobj +513 0 obj +<< +/C /A5 +/K 943 +/P 514 0 R +/Pg 23 0 R +/S /Span +>> +endobj +514 0 obj +<< +/K [513 0 R 944 945 946] +/P 974 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +515 0 obj +<< +/C /A4 +/K 947 +/P 975 0 R +/Pg 23 0 R +/S /Span +>> +endobj +516 0 obj +<< +/C /A4 +/K 948 +/P 975 0 R +/Pg 23 0 R +/S /Span +>> +endobj +517 0 obj +<< +/C /A5 +/K 949 +/P 518 0 R +/Pg 23 0 R +/S /Span +>> +endobj +518 0 obj +<< +/K [517 0 R 950 951] +/P 976 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +519 0 obj +<< +/C /Pa3 +/K [952 953 954] +/P 202 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +520 0 obj +<< +/C /Pa3 +/K 955 +/P 202 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +521 0 obj +<< +/C /A4 +/K 956 +/P 977 0 R +/Pg 23 0 R +/S /Span +>> +endobj +522 0 obj +<< +/C /A4 +/K 957 +/P 977 0 R +/Pg 23 0 R +/S /Span +>> +endobj +523 0 obj +<< +/K [958 524 0 R 960 525 0 R 962] +/P 978 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +524 0 obj +<< +/ActualText +/K 959 +/P 523 0 R +/Pg 23 0 R +/S /Span +>> +endobj +525 0 obj +<< +/ActualText +/K 961 +/P 523 0 R +/Pg 23 0 R +/S /Span +>> +endobj +526 0 obj +<< +/C /A4 +/K 963 +/P 979 0 R +/Pg 23 0 R +/S /Span +>> +endobj +527 0 obj +<< +/C /A4 +/K 964 +/P 979 0 R +/Pg 23 0 R +/S /Span +>> +endobj +528 0 obj +<< +/K 965 +/P 980 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +529 0 obj +<< +/C /A4 +/K 966 +/P 981 0 R +/Pg 23 0 R +/S /Span +>> +endobj +530 0 obj +<< +/C /A4 +/K 967 +/P 981 0 R +/Pg 23 0 R +/S /Span +>> +endobj +531 0 obj +<< +/K 968 +/P 982 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +532 0 obj +<< +/C /A4 +/K 969 +/P 983 0 R +/Pg 23 0 R +/S /Span +>> +endobj +533 0 obj +<< +/C /A4 +/K 970 +/P 983 0 R +/Pg 23 0 R +/S /Span +>> +endobj +534 0 obj +<< +/K 971 +/P 984 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +535 0 obj +<< +/C /A4 +/K 972 +/P 985 0 R +/Pg 23 0 R +/S /Span +>> +endobj +536 0 obj +<< +/C /A4 +/K 973 +/P 985 0 R +/Pg 23 0 R +/S /Span +>> +endobj +537 0 obj +<< +/K 974 +/P 986 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +538 0 obj +<< +/C /A4 +/K 975 +/P 987 0 R +/Pg 23 0 R +/S /Span +>> +endobj +539 0 obj +<< +/C /A4 +/K 976 +/P 987 0 R +/Pg 23 0 R +/S /Span +>> +endobj +540 0 obj +<< +/K [977 978 979 541 0 R 981] +/P 988 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +541 0 obj +<< +/ActualText +/K 980 +/P 540 0 R +/Pg 23 0 R +/S /Span +>> +endobj +542 0 obj +<< +/C /A4 +/K 982 +/P 989 0 R +/Pg 23 0 R +/S /Span +>> +endobj +543 0 obj +<< +/C /A4 +/K 983 +/P 989 0 R +/Pg 23 0 R +/S /Span +>> +endobj +544 0 obj +<< +/K [984 985] +/P 990 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +545 0 obj +<< +/C /Pa9 +/K 986 +/P 202 0 R +/Pg 23 0 R +/S /Zwischenhead_3 +>> +endobj +546 0 obj +<< +/C /Pa2 +/K [987 988 989 990 991] +/P 202 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +547 0 obj +<< +/C /Pa3 +/K [992 993 994 995 996 997 998 999 1000 549 0 R 1002 1003 1004 << +/MCID 1005 +/Pg 24 0 R +/Type /MCR +>> << +/MCID 1006 +/Pg 24 0 R +/Type /MCR +>> 564 0 R +<< +/MCID 1008 +/Pg 24 0 R +/Type /MCR +>> << +/MCID 1009 +/Pg 24 0 R +/Type /MCR +>> << +/MCID 1010 +/Pg 24 0 R +/Type /MCR +>>] +/P 202 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +548 0 obj +<< +/C /A6 +/K 1001 +/P 549 0 R +/Pg 23 0 R +/S /Span +>> +endobj +549 0 obj +<< +/K [117 0 R 548 0 R] +/P 547 0 R +/S /Reference +>> +endobj +550 0 obj +<< +/C /A6 +/K 1007 +/P 564 0 R +/Pg 24 0 R +/S /Span +>> +endobj +551 0 obj +<< +/C /Pa9 +/K 1011 +/P 202 0 R +/Pg 24 0 R +/S /Zwischenhead_3 +>> +endobj +552 0 obj +<< +/C /Pa2 +/K [1012 1013 1014 553 0 R 1016 1017 1018 1019] +/P 202 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +553 0 obj +<< +/ActualText +/K 1015 +/P 552 0 R +/Pg 24 0 R +/S /Span +>> +endobj +554 0 obj +<< +/C /Pa3 +/K [1020 1021 1022 1023 1024 1025] +/P 202 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +555 0 obj +<< +/C /Pa3 +/K [1026 1027 1028 556 0 R 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039] +/P 202 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +556 0 obj +<< +/ActualText +/K 1029 +/P 555 0 R +/Pg 24 0 R +/S /Span +>> +endobj +557 0 obj +<< +/C /Pa8 +/K 1040 +/P 202 0 R +/Pg 24 0 R +/S /Zwischenhead_2 +>> +endobj +558 0 obj +<< +/C /Pa2 +/K [1041 1042 1043 559 0 R 1045 560 0 R 1047 1048 1049 561 0 R 1051 562 0 R 1053 1054 563 0 R 1056 +1057] +/P 202 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +559 0 obj +<< +/ActualText +/K 1044 +/P 558 0 R +/Pg 24 0 R +/S /Span +>> +endobj +560 0 obj +<< +/ActualText +/K 1046 +/P 558 0 R +/Pg 24 0 R +/S /Span +>> +endobj +561 0 obj +<< +/ActualText +/K 1050 +/P 558 0 R +/Pg 24 0 R +/S /Span +>> +endobj +562 0 obj +<< +/ActualText +/K 1052 +/P 558 0 R +/Pg 24 0 R +/S /Span +>> +endobj +563 0 obj +<< +/ActualText +/K 1055 +/P 558 0 R +/Pg 24 0 R +/S /Span +>> +endobj +564 0 obj +<< +/K [119 0 R 550 0 R] +/P 547 0 R +/S /Reference +>> +endobj +565 0 obj +<< +/C /Pa1 +/K 1058 +/P 202 0 R +/Pg 25 0 R +/S /Zwischenhead_1 +>> +endobj +566 0 obj +<< +/C /Pa2 +/K [1059 1060 1061 567 0 R 1063 568 0 R 1065 1066 1067 1068 569 0 R 1070 1071 570 0 R 1073 1074 +605 0 R 1076] +/P 202 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +567 0 obj +<< +/ActualText +/K 1062 +/P 566 0 R +/Pg 25 0 R +/S /Span +>> +endobj +568 0 obj +<< +/ActualText +/K 1064 +/P 566 0 R +/Pg 25 0 R +/S /Span +>> +endobj +569 0 obj +<< +/ActualText +/K 1069 +/P 566 0 R +/Pg 25 0 R +/S /Span +>> +endobj +570 0 obj +<< +/ActualText +/K 1072 +/P 566 0 R +/Pg 25 0 R +/S /Span +>> +endobj +571 0 obj +<< +/C /A6 +/K 1075 +/P 605 0 R +/Pg 25 0 R +/S /Span +>> +endobj +572 0 obj +<< +/C /Pa3 +/K [1077 1078 1079 1080] +/P 202 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +573 0 obj +<< +/C /A4 +/K 1081 +/P 991 0 R +/Pg 25 0 R +/S /Span +>> +endobj +574 0 obj +<< +/C /A4 +/K 1082 +/P 991 0 R +/Pg 25 0 R +/S /Span +>> +endobj +575 0 obj +<< +/K 1083 +/P 992 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +576 0 obj +<< +/C /A4 +/K 1084 +/P 993 0 R +/Pg 25 0 R +/S /Span +>> +endobj +577 0 obj +<< +/C /A4 +/K 1085 +/P 993 0 R +/Pg 25 0 R +/S /Span +>> +endobj +578 0 obj +<< +/K 1086 +/P 994 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +579 0 obj +<< +/C /A4 +/K 1087 +/P 995 0 R +/Pg 25 0 R +/S /Span +>> +endobj +580 0 obj +<< +/C /A4 +/K 1088 +/P 995 0 R +/Pg 25 0 R +/S /Span +>> +endobj +581 0 obj +<< +/K 1089 +/P 996 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +582 0 obj +<< +/C /A4 +/K 1090 +/P 997 0 R +/Pg 25 0 R +/S /Span +>> +endobj +583 0 obj +<< +/C /A4 +/K 1091 +/P 997 0 R +/Pg 25 0 R +/S /Span +>> +endobj +584 0 obj +<< +/K 1092 +/P 998 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +585 0 obj +<< +/C /A4 +/K 1093 +/P 999 0 R +/Pg 25 0 R +/S /Span +>> +endobj +586 0 obj +<< +/C /A4 +/K 1094 +/P 999 0 R +/Pg 25 0 R +/S /Span +>> +endobj +587 0 obj +<< +/K 1095 +/P 1000 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +588 0 obj +<< +/C /A4 +/K 1096 +/P 1001 0 R +/Pg 25 0 R +/S /Span +>> +endobj +589 0 obj +<< +/C /A4 +/K 1097 +/P 1001 0 R +/Pg 25 0 R +/S /Span +>> +endobj +590 0 obj +<< +/K [1098 1099] +/P 1002 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +591 0 obj +<< +/C /A4 +/K 1100 +/P 1003 0 R +/Pg 25 0 R +/S /Span +>> +endobj +592 0 obj +<< +/C /A4 +/K 1101 +/P 1003 0 R +/Pg 25 0 R +/S /Span +>> +endobj +593 0 obj +<< +/K 1102 +/P 1004 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +594 0 obj +<< +/C /A4 +/K 1103 +/P 1005 0 R +/Pg 25 0 R +/S /Span +>> +endobj +595 0 obj +<< +/C /A4 +/K 1104 +/P 1005 0 R +/Pg 25 0 R +/S /Span +>> +endobj +596 0 obj +<< +/K 1105 +/P 1006 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +597 0 obj +<< +/C /A4 +/K 1106 +/P 1007 0 R +/Pg 25 0 R +/S /Span +>> +endobj +598 0 obj +<< +/C /A4 +/K 1107 +/P 1007 0 R +/Pg 25 0 R +/S /Span +>> +endobj +599 0 obj +<< +/K 1108 +/P 1008 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +600 0 obj +<< +/C /Pa3 +/K [1109 1110 1111 1112 1113 1114 601 0 R 1116 1117 1118 1119 1120 1121 1122] +/P 202 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +601 0 obj +<< +/ActualText +/K 1115 +/P 600 0 R +/Pg 25 0 R +/S /Span +>> +endobj +602 0 obj +<< +/C /Pa3 +/K [1123 603 0 R 1125 1126 1127 604 0 R 1129 1130] +/P 202 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +603 0 obj +<< +/ActualText +/K 1124 +/P 602 0 R +/Pg 25 0 R +/S /Span +>> +endobj +604 0 obj +<< +/ActualText +/K 1128 +/P 602 0 R +/Pg 25 0 R +/S /Span +>> +endobj +605 0 obj +<< +/K [121 0 R 571 0 R] +/P 566 0 R +/S /Reference +>> +endobj +606 0 obj +<< +/C /Pa2 +/K [1131 1132 1133 1134] +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +607 0 obj +<< +/C /Pa1 +/K 1135 +/P 202 0 R +/Pg 26 0 R +/S /Zwischenhead_1 +>> +endobj +608 0 obj +<< +/C /Pa2 +/K [1136 1137 1138 1139 1140 1141 1142] +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +609 0 obj +<< +/C /Pa3 +/K [1143 1144 610 0 R 1146 611 0 R 1148 612 0 R 1150 1151 1152 1153] +/P 202 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +610 0 obj +<< +/ActualText +/K 1145 +/P 609 0 R +/Pg 26 0 R +/S /Span +>> +endobj +611 0 obj +<< +/ActualText +/K 1147 +/P 609 0 R +/Pg 26 0 R +/S /Span +>> +endobj +612 0 obj +<< +/ActualText +/K 1149 +/P 609 0 R +/Pg 26 0 R +/S /Span +>> +endobj +613 0 obj +<< +/C /Pa8 +/K 1154 +/P 202 0 R +/Pg 26 0 R +/S /Zwischenhead_2 +>> +endobj +614 0 obj +<< +/C /Pa2 +/K 1155 +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +615 0 obj +<< +/C /Pa2 +/K 1156 +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +616 0 obj +<< +/C /Pa2 +/K 1157 +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +617 0 obj +<< +/C /Pa2 +/K 1158 +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +618 0 obj +<< +/C /Pa2 +/K [1159 1160] +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +619 0 obj +<< +/C /Pa2 +/K 1161 +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +620 0 obj +<< +/C /Pa2 +/K 1162 +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +621 0 obj +<< +/C /Pa2 +/K 1163 +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +622 0 obj +<< +/C /Pa2 +/K 1164 +/P 202 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +623 0 obj +<< +/C /Pa5 +/K 561 +/P 1009 0 R +/Pg 19 0 R +/S /Tab._Versal_bold_wei +>> +endobj +624 0 obj +<< +/C /Pa5 +/K 562 +/P 1010 0 R +/Pg 19 0 R +/S /Tab._Versal_bold_wei +>> +endobj +625 0 obj +<< +/C /Pa5 +/K 563 +/P 1011 0 R +/Pg 19 0 R +/S /Tab._Versal_bold_wei +>> +endobj +626 0 obj +<< +/C /Pa15 +/K [564 565 627 0 R 567] +/P 1012 0 R +/Pg 19 0 R +/S /Tab._Lauftext_light_ +>> +endobj +627 0 obj +<< +/ActualText +/K 566 +/P 626 0 R +/Pg 19 0 R +/S /Span +>> +endobj +628 0 obj +<< +/C /A4 +/K 568 +/P 1013 0 R +/Pg 19 0 R +/S /Span +>> +endobj +629 0 obj +<< +/C /A4 +/K 569 +/P 1013 0 R +/Pg 19 0 R +/S /Span +>> +endobj +630 0 obj +<< +/K [570 631 0 R 572 573 574 575] +/P 1014 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +631 0 obj +<< +/ActualText +/K 571 +/P 630 0 R +/Pg 19 0 R +/S /Span +>> +endobj +632 0 obj +<< +/C /A4 +/K 576 +/P 1015 0 R +/Pg 19 0 R +/S /Span +>> +endobj +633 0 obj +<< +/C /A4 +/K 577 +/P 1015 0 R +/Pg 19 0 R +/S /Span +>> +endobj +634 0 obj +<< +/K [578 635 0 R 580 636 0 R 582] +/P 1016 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +635 0 obj +<< +/ActualText +/K 579 +/P 634 0 R +/Pg 19 0 R +/S /Span +>> +endobj +636 0 obj +<< +/ActualText +/K 581 +/P 634 0 R +/Pg 19 0 R +/S /Span +>> +endobj +637 0 obj +<< +/C /A4 +/K 583 +/P 1017 0 R +/Pg 19 0 R +/S /Span +>> +endobj +638 0 obj +<< +/C /A4 +/K 584 +/P 1017 0 R +/Pg 19 0 R +/S /Span +>> +endobj +639 0 obj +<< +/K [585 640 0 R 587 588] +/P 1018 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +640 0 obj +<< +/ActualText +/K 586 +/P 639 0 R +/Pg 19 0 R +/S /Span +>> +endobj +641 0 obj +<< +/C /A4 +/K 589 +/P 1019 0 R +/Pg 19 0 R +/S /Span +>> +endobj +642 0 obj +<< +/C /A4 +/K 590 +/P 1019 0 R +/Pg 19 0 R +/S /Span +>> +endobj +643 0 obj +<< +/K [591 644 0 R 593 594 595 596 645 0 R 598] +/P 1020 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +644 0 obj +<< +/ActualText +/K 592 +/P 643 0 R +/Pg 19 0 R +/S /Span +>> +endobj +645 0 obj +<< +/ActualText +/K 597 +/P 643 0 R +/Pg 19 0 R +/S /Span +>> +endobj +646 0 obj +<< +/C /A4 +/K 599 +/P 1021 0 R +/Pg 19 0 R +/S /Span +>> +endobj +647 0 obj +<< +/C /A4 +/K 600 +/P 1021 0 R +/Pg 19 0 R +/S /Span +>> +endobj +648 0 obj +<< +/K [601 602 603 649 0 R 605 606] +/P 1022 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +649 0 obj +<< +/ActualText +/K 604 +/P 648 0 R +/Pg 19 0 R +/S /Span +>> +endobj +650 0 obj +<< +/C /Pa15 +/K [607 608 609 610] +/P 1023 0 R +/Pg 19 0 R +/S /Tab._Lauftext_light_ +>> +endobj +651 0 obj +<< +/C /A4 +/K 611 +/P 1024 0 R +/Pg 19 0 R +/S /Span +>> +endobj +652 0 obj +<< +/C /A4 +/K 612 +/P 1024 0 R +/Pg 19 0 R +/S /Span +>> +endobj +653 0 obj +<< +/K [613 614 615 616 617] +/P 1025 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +654 0 obj +<< +/C /A4 +/K 618 +/P 1026 0 R +/Pg 19 0 R +/S /Span +>> +endobj +655 0 obj +<< +/C /A4 +/K 619 +/P 1026 0 R +/Pg 19 0 R +/S /Span +>> +endobj +656 0 obj +<< +/K [620 657 0 R 622] +/P 1027 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +657 0 obj +<< +/ActualText +/K 621 +/P 656 0 R +/Pg 19 0 R +/S /Span +>> +endobj +658 0 obj +<< +/C /A4 +/K 623 +/P 1028 0 R +/Pg 19 0 R +/S /Span +>> +endobj +659 0 obj +<< +/C /A4 +/K 624 +/P 1028 0 R +/Pg 19 0 R +/S /Span +>> +endobj +660 0 obj +<< +/K [625 626] +/P 1029 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +661 0 obj +<< +/C /A4 +/K 627 +/P 1030 0 R +/Pg 19 0 R +/S /Span +>> +endobj +662 0 obj +<< +/C /A4 +/K 628 +/P 1030 0 R +/Pg 19 0 R +/S /Span +>> +endobj +663 0 obj +<< +/K [629 630 631 632] +/P 1031 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +664 0 obj +<< +/C /A4 +/K 633 +/P 1032 0 R +/Pg 19 0 R +/S /Span +>> +endobj +665 0 obj +<< +/C /A4 +/K 634 +/P 1032 0 R +/Pg 19 0 R +/S /Span +>> +endobj +666 0 obj +<< +/K [635 636] +/P 1033 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +667 0 obj +<< +/C /A4 +/K 637 +/P 1034 0 R +/Pg 19 0 R +/S /Span +>> +endobj +668 0 obj +<< +/C /A4 +/K 638 +/P 1034 0 R +/Pg 19 0 R +/S /Span +>> +endobj +669 0 obj +<< +/K [639 640 641 642 643] +/P 1035 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +670 0 obj +<< +/C /A4 +/K 644 +/P 1036 0 R +/Pg 19 0 R +/S /Span +>> +endobj +671 0 obj +<< +/C /A4 +/K 645 +/P 1036 0 R +/Pg 19 0 R +/S /Span +>> +endobj +672 0 obj +<< +/K [646 647 648 673 0 R 650 651] +/P 1037 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +673 0 obj +<< +/ActualText +/K 649 +/P 672 0 R +/Pg 19 0 R +/S /Span +>> +endobj +674 0 obj +<< +/C /Pa15 +/K [652 653 654 655] +/P 1038 0 R +/Pg 19 0 R +/S /Tab._Lauftext_light_ +>> +endobj +675 0 obj +<< +/C /A4 +/K 656 +/P 1039 0 R +/Pg 19 0 R +/S /Span +>> +endobj +676 0 obj +<< +/C /A4 +/K 657 +/P 1039 0 R +/Pg 19 0 R +/S /Span +>> +endobj +677 0 obj +<< +/K [658 678 0 R 660] +/P 1040 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +678 0 obj +<< +/ActualText +/K 659 +/P 677 0 R +/Pg 19 0 R +/S /Span +>> +endobj +679 0 obj +<< +/C /A4 +/K 661 +/P 1041 0 R +/Pg 19 0 R +/S /Span +>> +endobj +680 0 obj +<< +/C /A4 +/K 662 +/P 1041 0 R +/Pg 19 0 R +/S /Span +>> +endobj +681 0 obj +<< +/K [663 682 0 R 665 666] +/P 1042 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +682 0 obj +<< +/ActualText +/K 664 +/P 681 0 R +/Pg 19 0 R +/S /Span +>> +endobj +683 0 obj +<< +/C /A4 +/K 667 +/P 1043 0 R +/Pg 19 0 R +/S /Span +>> +endobj +684 0 obj +<< +/C /A4 +/K 668 +/P 1043 0 R +/Pg 19 0 R +/S /Span +>> +endobj +685 0 obj +<< +/K [669 670] +/P 1044 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +686 0 obj +<< +/C /A4 +/K 671 +/P 1045 0 R +/Pg 19 0 R +/S /Span +>> +endobj +687 0 obj +<< +/C /A4 +/K 672 +/P 1045 0 R +/Pg 19 0 R +/S /Span +>> +endobj +688 0 obj +<< +/K [673 689 0 R 675 676 677 678] +/P 1046 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +689 0 obj +<< +/ActualText +/K 674 +/P 688 0 R +/Pg 19 0 R +/S /Span +>> +endobj +690 0 obj +<< +/C /A4 +/K 679 +/P 1047 0 R +/Pg 19 0 R +/S /Span +>> +endobj +691 0 obj +<< +/C /A4 +/K 680 +/P 1047 0 R +/Pg 19 0 R +/S /Span +>> +endobj +692 0 obj +<< +/K [681 682] +/P 1048 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +693 0 obj +<< +/C /A4 +/K 683 +/P 1049 0 R +/Pg 19 0 R +/S /Span +>> +endobj +694 0 obj +<< +/C /A4 +/K 684 +/P 1049 0 R +/Pg 19 0 R +/S /Span +>> +endobj +695 0 obj +<< +/K [685 686] +/P 1050 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +696 0 obj +<< +/C /A4 +/K 687 +/P 1051 0 R +/Pg 19 0 R +/S /Span +>> +endobj +697 0 obj +<< +/C /A4 +/K 688 +/P 1051 0 R +/Pg 19 0 R +/S /Span +>> +endobj +698 0 obj +<< +/C /A8 +/K 689 +/P 1052 0 R +/Pg 19 0 R +/S /Span +>> +endobj +699 0 obj +<< +/ActualText +/C /A8 +/K 690 +/P 1052 0 R +/Pg 19 0 R +/S /Span +>> +endobj +700 0 obj +<< +/C /A8 +/K 691 +/P 1052 0 R +/Pg 19 0 R +/S /Span +>> +endobj +701 0 obj +<< +/C /A4 +/K 692 +/P 1053 0 R +/Pg 19 0 R +/S /Span +>> +endobj +702 0 obj +<< +/C /A4 +/K 693 +/P 1053 0 R +/Pg 19 0 R +/S /Span +>> +endobj +703 0 obj +<< +/C /A8 +/K 694 +/P 1054 0 R +/Pg 19 0 R +/S /Span +>> +endobj +704 0 obj +<< +/C /A8 +/K 695 +/P 1054 0 R +/Pg 19 0 R +/S /Span +>> +endobj +705 0 obj +<< +/C /A4 +/K 696 +/P 1055 0 R +/Pg 19 0 R +/S /Span +>> +endobj +706 0 obj +<< +/C /A4 +/K 697 +/P 1055 0 R +/Pg 19 0 R +/S /Span +>> +endobj +707 0 obj +<< +/C /A8 +/K 698 +/P 1056 0 R +/Pg 19 0 R +/S /Span +>> +endobj +708 0 obj +<< +/C /A8 +/K 699 +/P 1056 0 R +/Pg 19 0 R +/S /Span +>> +endobj +709 0 obj +<< +/C /A8 +/K 700 +/P 1056 0 R +/Pg 19 0 R +/S /Span +>> +endobj +710 0 obj +<< +/C /A8 +/K 701 +/P 1056 0 R +/Pg 19 0 R +/S /Span +>> +endobj +711 0 obj +<< +/C /A4 +/K 702 +/P 1057 0 R +/Pg 19 0 R +/S /Span +>> +endobj +712 0 obj +<< +/C /A4 +/K 703 +/P 1057 0 R +/Pg 19 0 R +/S /Span +>> +endobj +713 0 obj +<< +/C /A8 +/K 704 +/P 1058 0 R +/Pg 19 0 R +/S /Span +>> +endobj +714 0 obj +<< +/C /A8 +/K 705 +/P 1058 0 R +/Pg 19 0 R +/S /Span +>> +endobj +715 0 obj +<< +/C /A8 +/K 706 +/P 1058 0 R +/Pg 19 0 R +/S /Span +>> +endobj +716 0 obj +<< +/C /Pa5 +/K 707 +/P 208 0 R +/Pg 19 0 R +/S /Tab._Versal_bold_sch +>> +endobj +717 0 obj +<< +/C /Pa5 +/K 708 +/P 1059 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_wei +>> +endobj +718 0 obj +<< +/C /Pa5 +/K 709 +/P 1060 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_wei +>> +endobj +719 0 obj +<< +/C /Pa5 +/K 710 +/P 1061 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_wei +>> +endobj +720 0 obj +<< +/C /Pa15 +/K [711 712 713] +/P 1062 0 R +/Pg 20 0 R +/S /Tab._Lauftext_light_ +>> +endobj +721 0 obj +<< +/C /A4 +/K 714 +/P 1063 0 R +/Pg 20 0 R +/S /Span +>> +endobj +722 0 obj +<< +/C /A4 +/K 715 +/P 1063 0 R +/Pg 20 0 R +/S /Span +>> +endobj +723 0 obj +<< +/K [716 717 718] +/P 1064 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +724 0 obj +<< +/C /A4 +/K 719 +/P 1065 0 R +/Pg 20 0 R +/S /Span +>> +endobj +725 0 obj +<< +/C /A4 +/K 720 +/P 1065 0 R +/Pg 20 0 R +/S /Span +>> +endobj +726 0 obj +<< +/K [721 727 0 R 723 724 725 728 0 R 727 728 729 730] +/P 1066 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +727 0 obj +<< +/ActualText +/K 722 +/P 726 0 R +/Pg 20 0 R +/S /Span +>> +endobj +728 0 obj +<< +/ActualText +/K 726 +/P 726 0 R +/Pg 20 0 R +/S /Span +>> +endobj +729 0 obj +<< +/C /A4 +/K 731 +/P 1067 0 R +/Pg 20 0 R +/S /Span +>> +endobj +730 0 obj +<< +/C /A4 +/K 732 +/P 1067 0 R +/Pg 20 0 R +/S /Span +>> +endobj +731 0 obj +<< +/K [733 734 735] +/P 1068 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +732 0 obj +<< +/C /A4 +/K 736 +/P 1069 0 R +/Pg 20 0 R +/S /Span +>> +endobj +733 0 obj +<< +/C /A4 +/K 737 +/P 1069 0 R +/Pg 20 0 R +/S /Span +>> +endobj +734 0 obj +<< +/K [738 739 740 735 0 R 742 736 0 R 744] +/P 1070 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +735 0 obj +<< +/ActualText +/K 741 +/P 734 0 R +/Pg 20 0 R +/S /Span +>> +endobj +736 0 obj +<< +/ActualText +/K 743 +/P 734 0 R +/Pg 20 0 R +/S /Span +>> +endobj +737 0 obj +<< +/C /A4 +/K 745 +/P 1071 0 R +/Pg 20 0 R +/S /Span +>> +endobj +738 0 obj +<< +/C /A4 +/K 746 +/P 1071 0 R +/Pg 20 0 R +/S /Span +>> +endobj +739 0 obj +<< +/K [747 748 749 750 751 752 740 0 R 754] +/P 1072 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +740 0 obj +<< +/ActualText +/K 753 +/P 739 0 R +/Pg 20 0 R +/S /Span +>> +endobj +741 0 obj +<< +/C /A4 +/K 755 +/P 1073 0 R +/Pg 20 0 R +/S /Span +>> +endobj +742 0 obj +<< +/C /A4 +/K 756 +/P 1073 0 R +/Pg 20 0 R +/S /Span +>> +endobj +743 0 obj +<< +/K [757 758 759 744 0 R 761 762] +/P 1074 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +744 0 obj +<< +/ActualText +/K 760 +/P 743 0 R +/Pg 20 0 R +/S /Span +>> +endobj +745 0 obj +<< +/C /Pa15 +/K [763 764] +/P 1075 0 R +/Pg 20 0 R +/S /Tab._Lauftext_light_ +>> +endobj +746 0 obj +<< +/C /A4 +/K 765 +/P 1076 0 R +/Pg 20 0 R +/S /Span +>> +endobj +747 0 obj +<< +/C /A4 +/K 766 +/P 1076 0 R +/Pg 20 0 R +/S /Span +>> +endobj +748 0 obj +<< +/K [767 768 769 770 771] +/P 1077 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +749 0 obj +<< +/C /A4 +/K 772 +/P 1078 0 R +/Pg 20 0 R +/S /Span +>> +endobj +750 0 obj +<< +/C /A4 +/K 773 +/P 1078 0 R +/Pg 20 0 R +/S /Span +>> +endobj +751 0 obj +<< +/K [774 775 776 777] +/P 1079 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +752 0 obj +<< +/C /A4 +/K 778 +/P 1080 0 R +/Pg 20 0 R +/S /Span +>> +endobj +753 0 obj +<< +/C /A4 +/K 779 +/P 1080 0 R +/Pg 20 0 R +/S /Span +>> +endobj +754 0 obj +<< +/K [780 781 782] +/P 1081 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +755 0 obj +<< +/C /A4 +/K 783 +/P 1082 0 R +/Pg 20 0 R +/S /Span +>> +endobj +756 0 obj +<< +/C /A4 +/K 784 +/P 1082 0 R +/Pg 20 0 R +/S /Span +>> +endobj +757 0 obj +<< +/K [785 786] +/P 1083 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +758 0 obj +<< +/C /A4 +/K 787 +/P 1084 0 R +/Pg 20 0 R +/S /Span +>> +endobj +759 0 obj +<< +/C /A4 +/K 788 +/P 1084 0 R +/Pg 20 0 R +/S /Span +>> +endobj +760 0 obj +<< +/K [789 790 791 792 793 794] +/P 1085 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +761 0 obj +<< +/C /A4 +/K 795 +/P 1086 0 R +/Pg 20 0 R +/S /Span +>> +endobj +762 0 obj +<< +/C /A4 +/K 796 +/P 1086 0 R +/Pg 20 0 R +/S /Span +>> +endobj +763 0 obj +<< +/K [797 798 799] +/P 1087 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +764 0 obj +<< +/C /A4 +/K 800 +/P 1088 0 R +/Pg 20 0 R +/S /Span +>> +endobj +765 0 obj +<< +/C /A4 +/K 801 +/P 1088 0 R +/Pg 20 0 R +/S /Span +>> +endobj +766 0 obj +<< +/K [802 803 767 0 R 805 768 0 R 807 808 809] +/P 1089 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +767 0 obj +<< +/ActualText +/K 804 +/P 766 0 R +/Pg 20 0 R +/S /Span +>> +endobj +768 0 obj +<< +/ActualText +/K 806 +/P 766 0 R +/Pg 20 0 R +/S /Span +>> +endobj +769 0 obj +<< +/C /A4 +/K 810 +/P 1090 0 R +/Pg 20 0 R +/S /Span +>> +endobj +770 0 obj +<< +/C /A4 +/K 811 +/P 1090 0 R +/Pg 20 0 R +/S /Span +>> +endobj +771 0 obj +<< +/K [812 813 814 772 0 R 816 817] +/P 1091 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +772 0 obj +<< +/ActualText +/K 815 +/P 771 0 R +/Pg 20 0 R +/S /Span +>> +endobj +773 0 obj +<< +/C /Pa8 +/K 1165 +/P 211 0 R +/Pg 27 0 R +/S /Zwischenhead_2 +>> +endobj +774 0 obj +<< +/C /Pa2 +/K [1166 1167 1168] +/P 211 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +775 0 obj +<< +/C /A4 +/K 1169 +/P 1092 0 R +/Pg 27 0 R +/S /Span +>> +endobj +776 0 obj +<< +/C /A4 +/K 1170 +/P 1092 0 R +/Pg 27 0 R +/S /Span +>> +endobj +777 0 obj +<< +/K [1171 1172] +/P 1093 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +778 0 obj +<< +/C /A4 +/K 1173 +/P 1094 0 R +/Pg 27 0 R +/S /Span +>> +endobj +779 0 obj +<< +/C /A4 +/K 1174 +/P 1094 0 R +/Pg 27 0 R +/S /Span +>> +endobj +780 0 obj +<< +/K [1175 1176] +/P 1095 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +781 0 obj +<< +/C /A4 +/K 1177 +/P 1096 0 R +/Pg 27 0 R +/S /Span +>> +endobj +782 0 obj +<< +/C /A4 +/K 1178 +/P 1096 0 R +/Pg 27 0 R +/S /Span +>> +endobj +783 0 obj +<< +/K [1179 1180] +/P 1097 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +784 0 obj +<< +/C /A4 +/K 1181 +/P 1098 0 R +/Pg 27 0 R +/S /Span +>> +endobj +785 0 obj +<< +/C /A4 +/K 1182 +/P 1098 0 R +/Pg 27 0 R +/S /Span +>> +endobj +786 0 obj +<< +/K [1183 1184 1185] +/P 1099 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +787 0 obj +<< +/C /A4 +/K 1186 +/P 1100 0 R +/Pg 27 0 R +/S /Span +>> +endobj +788 0 obj +<< +/C /A4 +/K 1187 +/P 1100 0 R +/Pg 27 0 R +/S /Span +>> +endobj +789 0 obj +<< +/K [1188 1189 1190 1191] +/P 1101 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +790 0 obj +<< +/C /A4 +/K 1192 +/P 1102 0 R +/Pg 27 0 R +/S /Span +>> +endobj +791 0 obj +<< +/C /A4 +/K 1193 +/P 1102 0 R +/Pg 27 0 R +/S /Span +>> +endobj +792 0 obj +<< +/K [1194 793 0 R 1196 1197 1198 1199] +/P 1103 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +793 0 obj +<< +/ActualText +/K 1195 +/P 792 0 R +/Pg 27 0 R +/S /Span +>> +endobj +794 0 obj +<< +/C /A4 +/K 1200 +/P 1104 0 R +/Pg 27 0 R +/S /Span +>> +endobj +795 0 obj +<< +/C /A4 +/K 1201 +/P 1104 0 R +/Pg 27 0 R +/S /Span +>> +endobj +796 0 obj +<< +/K [1202 1203 1204 1205] +/P 1105 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +797 0 obj +<< +/C /A4 +/K 1206 +/P 1106 0 R +/Pg 27 0 R +/S /Span +>> +endobj +798 0 obj +<< +/C /A4 +/K 1207 +/P 1106 0 R +/Pg 27 0 R +/S /Span +>> +endobj +799 0 obj +<< +/K [1208 800 0 R 1210 801 0 R 1212 1213] +/P 1107 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +800 0 obj +<< +/ActualText +/K 1209 +/P 799 0 R +/Pg 27 0 R +/S /Span +>> +endobj +801 0 obj +<< +/ActualText +/K 1211 +/P 799 0 R +/Pg 27 0 R +/S /Span +>> +endobj +802 0 obj +<< +/C /A4 +/K 1214 +/P 1108 0 R +/Pg 27 0 R +/S /Span +>> +endobj +803 0 obj +<< +/C /A4 +/K 1215 +/P 1108 0 R +/Pg 27 0 R +/S /Span +>> +endobj +804 0 obj +<< +/K [1216 1217 805 0 R 1219 1220 1221 806 0 R 1223] +/P 1109 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +805 0 obj +<< +/ActualText +/K 1218 +/P 804 0 R +/Pg 27 0 R +/S /Span +>> +endobj +806 0 obj +<< +/ActualText +/K 1222 +/P 804 0 R +/Pg 27 0 R +/S /Span +>> +endobj +807 0 obj +<< +/C /A4 +/K 1224 +/P 1110 0 R +/Pg 27 0 R +/S /Span +>> +endobj +808 0 obj +<< +/C /A4 +/K 1225 +/P 1110 0 R +/Pg 27 0 R +/S /Span +>> +endobj +809 0 obj +<< +/K [1226 1227 1228 1229 1230 810 0 R 1232] +/P 1111 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +810 0 obj +<< +/ActualText +/K 1231 +/P 809 0 R +/Pg 27 0 R +/S /Span +>> +endobj +811 0 obj +<< +/C /Pa8 +/K 1233 +/P 212 0 R +/Pg 28 0 R +/S /Zwischenhead_2 +>> +endobj +812 0 obj +<< +/C /Pa19 +/K 1234 +/P 826 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +813 0 obj +<< +/C /Pa19 +/K [1235 814 0 R 1237] +/P 212 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +814 0 obj +<< +/ActualText +/K 1236 +/P 813 0 R +/Pg 28 0 R +/S /Span +>> +endobj +815 0 obj +<< +/C /Pa19 +/K 1238 +/P 827 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +816 0 obj +<< +/C /Pa19 +/K [1239 1240 1241 1242] +/P 212 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +817 0 obj +<< +/C /Pa19 +/K 1243 +/P 828 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +818 0 obj +<< +/C /Pa19 +/K [1244 819 0 R 1246 1247] +/P 212 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +819 0 obj +<< +/ActualText +/K 1245 +/P 818 0 R +/Pg 28 0 R +/S /Span +>> +endobj +820 0 obj +<< +/C /Pa19 +/K 1248 +/P 829 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +821 0 obj +<< +/C /Pa19 +/K 1249 +/P 212 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +822 0 obj +<< +/C /Pa19 +/K 1250 +/P 830 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +823 0 obj +<< +/C /Pa19 +/K 1251 +/P 212 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +824 0 obj +<< +/C /Pa19 +/K 1252 +/P 831 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +825 0 obj +<< +/C /Pa19 +/K 1253 +/P 212 0 R +/Pg 28 0 R +/S /Endnote_1._Abs +>> +endobj +826 0 obj +<< +/K [127 0 R 812 0 R] +/P 212 0 R +/S /Note +>> +endobj +827 0 obj +<< +/K [128 0 R 815 0 R] +/P 212 0 R +/S /Note +>> +endobj +828 0 obj +<< +/K [129 0 R 817 0 R] +/P 212 0 R +/S /Note +>> +endobj +829 0 obj +<< +/K [130 0 R 820 0 R] +/P 212 0 R +/S /Note +>> +endobj +830 0 obj +<< +/K [131 0 R 822 0 R] +/P 212 0 R +/S /Note +>> +endobj +831 0 obj +<< +/K [132 0 R 824 0 R] +/P 212 0 R +/S /Note +>> +endobj +832 0 obj +<< +/Filter /FlateDecode +/Length 9612 +/Length1 15301 +>> +stream +H‰œVkTT×þö}ÌÀ€À +8Hî0 +3 /A@e¼#ø@^"ƒ¨ /AAP1Šø¶bRSÓZkcŒ­6¹Zk¬Ubc5šj^ML›¤íjmÖ26iÚZEºgÔ®Ö®üéÝsç¼îÞgç|ß=`ÖBDÉÌr{ZXJN*÷\绲¾ÍÓ±ùðGJäŒú®eʺƞ}€®‰ûV7u,hŒ¯zý§Ü~Aëʦw"ÒþøŸbÏ77zê~?í`]Ëñ2›¹Ãÿ9½‰Û'¸=º¹mY÷ŽyϯäösOk{½©=ÞÅíþ6Ow‡p‡Bœü¼²ØÓÖØSÑUÃíLž¯¨£½sÙÐ>™sÉíõŽw,mì^>~žÛœ#âAR=Ù´›–ƒ§ï—Ò 4 Ud<¼ [üîWüþÝ倿H¾6xšñ„ +ù +ˆ”1¾ä+ÃyÕ¸F#ùÖáA'—‚ï™ÿ¾xP”dÞÏß8,(8Ä>|DDdÔHSô¨˜Çs¬et\|˜±‰IV[²=%5-=c\fÖøìœÜ 'å92Ôqù®)…ES§MŸQ<³¤´¬¼bVåì*wõœš¹é™ŸÏÉÒûLácJÜUÕµÿðÔÿ³aᢶÖÅ·²ss&¨_¸ +’ísç5%Nž½¤ù«¼🎿·¾ìZŠP—?XÓ ¸35àà=]‚¹<É56"Ò‰´¿c¾RÆ4ùR”ƒ=4j$'ÑÅ3g ȶ”LñF‘$^ ä@á0#±OaˆD2ÒXJ¥ròP uÓz–4á¼p]EÑ"ª1·•%UÉQ›cc£n¥ y÷Oâ(„Æ°oÕR³Ï·Ÿ^òùÂçëˆéWÂØ7û¯Îçûÿ^9¸Ë3ž§×é]b»LoÑUŸ½MïúìºÏ>v—Ø.ß71–Y A†zf? @ k*Á¡c¦ ÇD Q¼2&Dcbðã4#ŒFó5c0‰H‚6$ÃŽ¤" éÈÀ8d" ã‘Íyæb&bò˜£“¡Â‰|ÀÅ›Pˆ"LÅ4LÇ c&JPŠ2”£³P‰Ù¨‚Õ˜ƒÌÅ<ÌG-<¨C=Ð%XŠN~¬ÃzlÀFlÂflÁ7°}؆'xG¾‰í¼§ßÂöàìÅ>ôãYìÇs8€çq/à~€â0ŽàGx/AÃQÃq?Á ¼Œ“ø)Nág838‹Ÿã àUœÃ/ðÎã—xoà.âÞÄe\Á[ø®âÞÆ;xïá}üàC~c}„ßà·øŸàS|…¿âsܤXňÚÑ‹6ô•[óþ¾ÄX„U´†zØÖR/m¢õ´Ž6’L ÷hUR ͦ¹TEóÈMó©šJi:³q³¹˜*h&Í¢ +& #? +"jd¦61ÓP3¶žß@fŠ& ÅP…S…R;-¤ZDK¨•–RuÒbšHãieSåƒri2M s?‰âi +©THN*¢|šJ4\”AvÊ¢4G)”I©X‰Ç™…^[†åhä² +°€Ë,D÷ƒ±fæç£ÖÊý‹±7±»©Öá´’–Ñ6Z?Ñã´œž  ¸A«¨‹žäÕÙH«i…Ï6âϼf­û?l>óõxŸç›µ cU„0SËÐ:xzp`è=~ä òùŠ|®P?gð;Þ¿7y¯O2K^döìgFía®mgîmcnaNn`~ö¢«ó +ÆÚɼmçÝ]È蚘ÇuÌéyÌïjæz%ó¾Œ5PÌz˜ÊÚp±NTVÍDVP+*ÕegÅ%°Í~Ð_Ñ-”oÊ;åPé®”/©’Ÿ¤“ âMñŠø†Ø/î7‰=âr±SLíâXážð‰0 ö +½BP- ª+d vÁ"è‰.Ò ½|ê좴ÙÕIµ>œ2ƒ½HÏ1çO3ÿO²Ž³.¼¸°^1úŒkkëìiVÝ£«pâ÷¢öb.ó¡-dœ^|v˜#†‡‡…C‚ƒ†üýô:Y‚õ+éôÕõYÔ¦J›õX"à¬èÖT‘íö|…fHtkä y¤ËfMâŸ&$Ú¬÷ÿ¨NƒE=Jbœª¸”fOƒ&Æq©h’ÓâQŽ:}Uf¾ŽÂí.©òV¤8ÅÕ¬éã +<J«Ì&MvŽw›< îò*‹ÝrÛd·Ü๓¾>º§ákŸ”ãÔ¼ÿãœwÛ×e ȶY6ŸÌNÅ›d_&:=-µùµªÍZ h¢E=F‚ììrZœ}Ð$‹©x±r´È‚ÍáQ|yk“M\÷V5—I+t»5Ù¢r²¨-š`QµÀÄH›U)hηYOñ‘ ½¢rÇŒ2¼¥¢Ä>Õ¢‘Guñ‚9*ª4G­Û;ŸÍÊCN£“ÓM…Íšl³¾f³æiá‰6Þï ™¬G¬ÃT*è “JùÒ Ò‘‡Îè :Á?XLJERŠÙh6&ðM|\™ïª2îÀ,½£ò +˜ï£³¸Ë* sè°†ô)Ðç—œœ$SBhV&íVj;+¢_0æÝå>Ô?+~…] ö~ßXè$ë`:'ቑxf’–ÈÒ?H€Ì YæAüÌ%˜ t2`«Áë¹uèo´‚U€H‡Qê@Òf‘]‡=pˆ—‘™žÆdÖݳ»\ö”¢BC¡=ù_lW lSçõÿß—¯}±ãk_¿ß8âGbû&$NœÄ )„òl²$@(„WJKx­¼Z¢”¡„×£ÐÁšQ”­ ¦®hƒµ´…"´¡ Ö®¨S×nÕ:$ä²ïÚ¦ÕªZ‘âë(Ö9ÿ9ç;ßß49n’¿cãûD 5½êKYí +½«Yà jDðÚOZa®»àËŠkŠ‘>èM:ƒÉèBBû¼ÄÄÅ„˜ˆëb>j@ƒÔïÙm®æe‹ÕUTÔw-[Õì²¥{ä -mKTêæ˜,$Ä™W’&-ƧˆOk×Ê(<€â<Õ í=)U +…àauˆµë9¤,&ÂS€%@œ’B`‡FAðŸ‡2“y +Ëèà¡ +â1­E¾j$o' •ú"-L9ÐÔö«m†¥5Ýë¶J•F½ùãçŽ-Š”w-’v¬F¶&Ée#]]]å|6Œz.Ü[Z½¼¹xòÂŽºM-CUËûgÌÞ³}…´FIÓÕNg5°A„¼ÛºÝ N‹¨"J²`´ O0.3fKòVú¡Yëƒ.Í#s•–E Aú`æÕ6Å¢ƒLIã² ¡¢ˆ>C †ÔhÒçÍæE'*+MM4™oóå'¦¥rãG='Û>E•£Ò†b+'LCcûúOTnøA¨1¦±8K´/ùï'J̓?;’¾Þp{Ð- öíº¼³½ï £‰ëÆä›+»¶Í-íœuþñÀ¶Õ˜Jª€„ª£€Rá¢Ȇø´U@~› XävƒS<íîC07÷+6 +sFÊX‰&Ú‚JE!NɉdG¡œ£ªqÜÿ‡“ã›pú€E»wJꈥ4²pæ¹DSp{ã–²°™”šQO˜8#ª:Æ¿”nÓ{Ø‘t‘‘ ØËP[øýñ8(ceN2qESªÖË맑 àp1Ž¡2øss*=!§›PQJ-2–sq‚¯Q|¬,Qû9 bÖnDäÔÑàœ2&Y‹Œ³Ú$øx,'Pó1nDò¯o\ÿβα?­Œö|µÑûžôª£3š÷tN_‘*$XRUu¥µõJRE’*éyCš³xþé «>84Çjê>n MœûúŠîãs«j¹0Šýð·STê„ÕžPÉ·§:`*'É YŠ¦ +òP¡à"é`:;ÝX UägÕh¯µQyhÈOåÑ8“ ¨¢¦8ByC8ã¢IÐL5ñ8@4„€‚1k¶|ôÕ ?Y=‹ê®6o½²çmñSç–>Ý×¼ùä´©Cö¼»_y©üÅ–‘ Ý·`/R$|yþuoÜôV”˜Ë—ìné:ÛÛ„ÿ;³¶¤óØ¿® µì§@+øì>`÷+"© YØýH+ÏY”ˆTùÝØÎ +*ä×È®ÓÂÊÏN¹œý„èóÈÁDzA°úEa"—ùôõšåã‹F JM5&ÄV¸÷Ab¦I®6x ç6ß¹O„Dº'Ôn„•Š!’ãÒ t);¹äS.„S¤¸}LLù=i=§P2¨Àª†ã$,ƒ†N†8Þë×"d€Â›‚ñjBd Þ8¥ÌÁ ¬ÐgŒ“ïÓ€¡Œï6¾|ëD9ä\T¼îdëšë}ïvX:yr}jÓŽ½/ï.ôå97üò“ÞµfçŠó«¶þu‹ôç×¥é.^9g×ôƒ_¿ÞqMFéztŸæ¨¸ Å¥©‚dÌ"wK¼0ß›ÇQ,+(¸x¬ÌëvX̯S?Ååì-#…3eaù6}'˜2Œ|¯sñÛŽÄvlÇ×ñ;~ç›$%£!¡ Ï‚†ðl2B °•WÂÂÂZÚ +­JiM F'mh›XUEW¦ý3MÝ„´V“6MÓV‚Ù¹vÀøêÞkK¿ïœï|ßw{$Ÿ`P*²Ó1Y•Õ±“>W¹iüþ‚ÌÕñ¾«êIÄ̽>9Eb†<<ÊlQ®X»YZG.}?¾ÏíÁêÉÔ9ÒÕdHB0û‡XŒÕˆ"/Æ £ ~'±ÂIobPË“Ëa0q¤ifÅ0#gf–3ïó¥0ëM–BßsKø·øž>#Ñ÷¸Ü]ק|¸» `dÉõñÚg +öŸ™0Ûè›ÓnshÃÇ >£‹¹4ÞùL•&xÍöb%Z©V¹ÆVL^ .T'`Ñ`žOv±®ÆÅ22AðA:A•Éf®ZElyÞsdŽnJ£žËû|!H^´”¥D–ÂIøèÚ 8w<3™¢žš Aò-h;éì œîüë¿Ÿ‡Ï<½e¥N§3Rª˜³Ì5Åâ`ýæ·zGnd=ï=;;ù¢Ð€‚vyïé»®G碪‰Jت‹ág£ÓÆ›Îö¯Û•ÄšÄßg8T³4U''z y¾&ŽY¾{»÷Ô?_Ûx¡ÏΤ¶‡¢¥6kËeéõÑ:úÎ;_o:ë~¸ú ¼zî±ûM†G6üàó5ÒIDç}ü s ;¥²ß v`’¢¨Æ†[…@9‘³^4‹Ä A£ñ¥´™…Øä*ˆúŒítåV-<6&á„ !$P•œ.…á3ÛO |öVÈCó2ÇÇ.^Œ?öÁض§Ýáì¯xƒ¡eÕSdÙ¼rG·ÝwnÁÙE4~Ž_?'9ºwŒŸ}2øtIŽ³ºÇÿ`Ï#‚•]àÝ¢S´ +ù±õû$žc€â{´N 6¡IEV>‘ +¤•(3}(sª&ù@šö3/ìQ4¶­o¼›ÚêKeÙÓå ö5¾ÎìîÒêzD£û{·6²ÜÃÑ·CöJfjêê»ÇÏ-}ÙÑ[ôÕùS³Èxµù“«þŒÙ¬‰ª‘ƒåv õBRŒ‰Ä`õ(=¬ ùËÝ.»ÍbVw§4ˆ¡e:†††¢àTdý”Àà²aLÓ†L¹†Nr&DJðoDb<¦²§ãÖ5œ‹ÿ·&æ«îy-Ú» Ç+ñŸ0ã™ÕöFÎ]¢ƒzÄòt×ì ’w}[c½.û[Ѩç×è¤Â4Œ’kãƒ{º\GËG­o +:S() »ƒjIñ+óÂãûé/%;ùžK?¼R^ßê©ÛÜøfnky@ÿšþ%¢j¨¹) €Â´'¨©ÐªÞ6+É„$Aóæv"L¯ ¡wш‡¼m +ªÉ‰„ç®nrîpð2ª•ÝE >danc›©¹‡c˜J¦Ó çr¥Ë×) w>Ùõ½æ*g/J÷oÛ±çÍ:ît'Ýn'YVµÎé?ìL¢Lý¥¥ÿÓû»~ÒÑQ·mβC•gN´¹nK¬ÔHï†Á ¿ÊÑ?4öÚ‹èI¼ù =¨î}÷N`™Ï•€7µeØk?_q}ëìßK ˆ\éÏöGM…©Ùr](Ö+B@µ |4³àJÀZáÆ^ÑLT´`/ÑÑÇ4*`Fr˜–šÑ jb²rsf%&%TOtBÄê2M8#v‘L.ˆ9éäO®{hClyýÅ?±ïþ.û‡pßK£Ý/†‹ýÂ+'ƾèw·DÚÓCôÈ¥ó"×÷ã%-¿¿ºÄ¾øD•-TlnÕfÂCŸY>6ஶV"ߢ˜ao°÷Pù›åF- €ñD4,Žš¼e]P¡V«x£`V1A€²â…±Yn1]Ž„Ø?³JÙšÐ@¼ªç‡B¼*X@±6rÃZ÷‚ÜP¢&«ž•ê‹¯)—åò5ñ¾´¨>rÄ 9½«£öæ™YÕ±C—øþGO4+gÛ¨«Eö^Ò̇åžæ =žýÁ ESMn2½Ø¡4ÕB- ÖÉ}¨ .èh%BMsLMñI¨HQÀ•‹¤¹I œÁÙkHëìb¥b·0OÄÕCHÃ)K»ŽM£3øcÜ䤶LϹ`¬>Üé.ä.Û3É]ì¢'b”vùfZÐñÉdû@R¾RŠ«gò¶î-„\´á&hLç]R™b ãû¸°]¯ZÒ–Ø7Ãœ‘íÇ?¾½­êÊ~ç™ÀæžSò{rë¾(xøìplýü•ëk×5/yõÎÀÅåÃçG–:»jÞ£¹xã‹{CΈ…±ÕÚã¥gVtÙ=÷[Gz7ÇW”½ö1$5¼âêª@4lÙÿvîë>°~ÑŽúáq¾ëðü yºjyÍ®CÊÌ‘)A6C9© ]–R‰â€Ñ(kSíQ?rÜ c”ÓA8ïOÓÂßÓ»2çÈi:—ýòºûº«=¶©ëŒŸsîÃöµã8vüÂ1~žvÇv;q'ŽIÂ+Ò‚—ï¤<ªB’2ÚeŒf ÚEPkM ñW7Uk™&µ¨cŒUhbê„ÐTuH쟊Uˆgß¹±“©¥OçÞsï¹þ~ß÷ßù}ø º{gZ[ÛÖq©©ÙÛÐ(zÌÇæç ßØd2ÔÊü«Á+&PõéѪòö.ÏöL"9Ò²}4ÑS–mŸ£V·µìmû­Yèðw ÖÀÆqÐo ®÷z„ˆsu$X¨¤­—]pr p’"ˆG½ÕN†í¸DC ÖØ`åISás}×l=£>B™ÈnÆÏ„X"%÷C<2¡MP†îFM=ÝZö¤saw@ü:‹ âW7´BẺ9¿?!`ó ÙÓÙWf¿CZVì©Oô Iûýƒµú"dG®d‰¶Y{v^3z&ìˆÚŠ¸=ŠÁ)U»?Ä9ó=ÔI1ȉJ©úõvà£áÆ×þûAßo__øó‡ož<äZþVæÀáåïúüÝúÓ¶¾~©ÿÔ÷?cÆþúÁªKï®ùúÌÁ{‡¨š‰kìvð#„šP:ÙÌ3¤> +ú³ƒz—²Q‚£áyRÃ'ú±K¦W +ŽbT*âøD±‘p.\i%å2"àQ%T9YOI$E÷t¦„h1¨R AqŽ„銦[Bi’ÿÃtÎ×½µõ³¯U߯ZýË´Rë ¹¥âí‹)…ñšc™ÇVž?ݺµU§Ìždù|>ûUÕЧ¯öN”žtTe÷e,OçË–g’ñÁßo?u-´°T—ãŸ,ģœ!ë ˆŒg£©H*LŸ›8z tÎY .Ë#çp(G§Òö~¦î*ÐcÑÓo.¦Ê¿–Ý^º&ÐhÓúËû[· Ê¥/.ZÓ0C\3•uó ßgü¾÷@oöýÙ;1Ïa Pm@D©d¼Ô¢QbÎÆ)LØÖlÉÀ\Ò/¥³T£dä…ež‰9+Ê1À‘sÇ“p¾•é"ôt—ŠL¬`DIbSy-sI9‚‡FšR*¿ÅX¬3qnÓº·#Aë‚e¶ŽÌ×¾zŒgkÑw}p׳ÿo»NŒ¨ØݹjÕàŠÊÅ*¹FW¢´®zïxUÛé`[f,µToÛ¹cËéᚃ”!“ß’ö² úd•#C·ªb,@ФbÇ,µrCÑ*° +¤&‘³dTc|X)© +%&Â9ÁS­æ(¢ˆ@mBF¯Ÿy_>Ôl2`“6û8Üm¶¬5mû‚QËý‹Ž­^ì?üé2Õö‰ÿ,j[Íÿ¤^¹á¬“4ׂdMæ ¼Þbhò!&8… .r)d8RH8:¡ÈÈQŠuA3Hjr{dÞŠE©[°ÕgNˆ¢âܦ˜©*–ºêt.Õ{DÃÒRù‘Õo¯Ž©r´ïêÏ$÷´åŠêYñò’ýéÚ [:qwŽ×'ίª^úR·çÊKbæïØ43Ú'˜t˜D¡TpE‚ªžS8lV“Q¯ÓÊW{¡°òÚgêW `pá +ÄÑ©vEy*6êh3­š=Ë3g¿ÓWlÌþº`ž©5½ÇëÛ™^Ñ>ì·u‰áÎd¿Ý>ÍV”|3ñ xÜÆÄí.ÌÆ Ë’8Ëx-Á‰«_v§7e¦'Û¦<çwCnêP]Ò·sŒ.,T~Á­°)Š% D¨V«Ž ¡Sï ‰ÙAÞê"p¹Z÷´ËQ€G/\ÌS © +†%1Òñ$¨OÖG®ìMÏ<4—›'¾tn³ÔŒ£8ªM–Ï· …•ÝF’o°ž?‹R¤ ù©?4.ì¿Pæî÷™sù¨Ÿ0Ò8¸ GFÃp¿1—»Í¹9jG¤ºØøöË'$ª ŽãßÝ÷z–íªYn*!ÔV¨*¬ŒˆHÔEdƒí¡Âð¥é¹C‘FˆÑÁƒ‡‚Ø“)°ìÍÒ!:nnßßÌì¶ûvÑ]váÃï7ïÍ{3óï›Ùa[ágù±Œƒƒñ˯x½Ý:Àgù¼#þ¢O™™ûB”M¦–ÄÊ Y(/dA¿Ô§½à…ýšv¦Ùý÷'ÎÝ(çXû4§ +GÅâ…l¨ÝnÑÏß•úM’Êi/x­FéñC6â‡÷|–Ñß—Z¤N­r8ögÎõ#CdŽtñþ5Ç¢?½)ã•w;úêƒöºêïaõí©(ýTzI½Nå«üñÐÜ;ÖÌ{¼k!ýµN½~È·ã?!O3./J7æÛΡ`ÿ¨——¢Û-R¿ÿ¥3ð§Hþb<Ïø”qˆ,0Ÿc¼Î¸¬¸úúJ;Ë/É)îß/3Æy/9Ã|FçË_Xšùc'Ëo¡‘çU\ÐqyÉðÄĸŽÉYq—½HýYj“þu®ƒ;ä ÷¹@S\¢€ÕL~r•Mp—|ÀMó„áÛê”Ík6Žs_=÷òc†w¹Øf0”KÅ ’Kr弦Šû·LGµaë!`[+PÃ%£æ#°}¯!¡©}Æ%|°ã.·`êPÇvë› GÃs.»§Fö¥ñ+·€„fçë%J”(±>9AaeæøàÉ+ÄkM¸Ç?ïr° +ÀÍ9séœÑLn3¯4¹Ã¬ÁäòÎ}¬é³7©r:÷±F:÷£gLnñúY“ÛÌ'Lî0¿oryç‹þhoGwG¸'6Y½ˆ~DÑ‹t“0zà Æ1‚.னkWר»ž»–V/õ­yç^þŽ×UŸÜÜVÛ ÙmnUp¿k߶n¼i»n$؂ɸuäF}8üW€=±† +endstream +endobj +833 0 obj +<< +/Filter /FlateDecode +/Length 10701 +/Length1 14738 +>> +stream +H‰ÄVkTSWþÎ}äò‚€L„W$¢($$‚oD´–ðFy(V±¶Ek--ÖÚjk}K«µV­^ÐZµjE«Sm­ÕÎÔigæG×Lg–?fÖ¬®®Y£vÂìDWëŒãü“Üœsö9{ïogçì `VÇŒé3sœºøÂ¥$ù=å mÎRïì©Ëø–-5uUt˜1‰dÙÍ Ú8Íù íùÍ‚E+ší—æœ)@úø–¦@có듹-d¯ …Q»y#ÍwÑ<¥¥mi÷ Irh~žì×-êh ¾â ?™æmîNöOÜÜÏÓ~S{ ­éÒ¾ìk4ßGþöwvt-îŠ1å¡õÎ%M˜×}•æí!ûdã·Üiˆ´w[ 3îõBš9-Àq +üf‚ɺPÌ øÊØM’p`á=±E#6’î ©çÂ{þ½Ñ"/ˆ2¹B5B­Öhuú˜XC\üHcBbÒ(“9Ù’’jMKÏÈ̲ٳsrμ|W{ô˜Â±ãŠŠ=ÞŸ|iÙ„‰“&O™:­|úŒŠÊ™U³fÏ©®©;ï±ù×ê·ïØÕ¿ÿ½£'>8ùá©ÓgÏ}4tþã /}råò§W?»þÅ/ô®xò¬?¾vU׺ì<bø©—ÂèV¿Š3×6w¯A#ðìÆæ›ol;´hÙâ%míŸã«åX¹ð  å冦֭onyk÷Þ·÷í9pï J¤:” !+÷M˜5ñ£Ã,ÀºÙFaº©Ðœœ?<f³ŸU†¥j“î'éÃMìv˜ævˆÝ }Ȧ@§(ƒ +(HDQΪM5ÐBGZ1ˆ…qˆÇH‘€D$ay5#Ê…TX‘†td Y°ÁŽlä 8‘‡|¸P7Fc +1ãP„bxàE |ðcG¨ÇMtcžÄJ<…§ñ 1´ +«ñ,Öà9¬%{éD^DÖá%¬“ú +^ÅFlÂkx›ñ¶`+¶a;v`'va7úñ&ÞÂìÅÛ؇w°ïââÞÃa„ â(Žá}Ç8“8…qgpá†pð1.â~‰OpWð)>ÃU|Žkø×q_âWø5¾Â",{ä¿äXŠå”>‹±ä¾¤ íh ¾h¢~Z~ÚÝü_,´>$Yˆ'Ð…—iôÿŽ\FÙ¦¦ ñaV0#èþý›Ýü<á²ð½hGqÌÂT,wð-~¯Iç:Ù»H>N“çc„j?!í'ô[è47Ð ÷Ò©÷P&,§;ˆ½fÊù”3³)Ê)·ÊÈWe¡‹24ƒ²Ö,×ʆÄ]bšhþ*|-HÂ^a“°AX)8„DAÁ_àóƒü6~-¿š¯æ ¼Šà9.È q½Ü®‡ëâj¹ NÍ®±‹ì,ÛÇv±4¦ af2º¯‚„üïø·ðÝ\} ‰bø9‚Ÿñ?ˆ¼œ0»`öÆÆèuZ:Z5"*2B©ËDçlƒ”ï~S_}ŸÅ×<Ûn¤jâ¯ê–UmSîÆ…;)"³Fb~õˆì¶,úJ\¦Ývï‡ÕK°øŸê3•™ZŸJ½Iü–€©qÀëí«ª6S€9¡fFuh ¤šÊZ$yji@BEµÙ(‰þÑ5Æ@cÍÌjKŽå¶1Çr‹|g=Úz ñ‘;ÅTŸçÖCÊžÛa‘Fkc· QØT ü¦ȾR‰÷ZëÆ×ùì¶R“Ä[|ƒŒýËüŸ…$Áâ‹“"C±’µ¸ÒVÉ0…qK%F‡†R™QšXS#‰™`_«ÄY|RTfœÝf*mo·¢ËQ>ç#ƒ¡Þdàø>ŸEb_æ­ª–¼u5!v-ù5~‚ë€Ý–m·]´Û<’>Ó.TáÄP!åé¶x¸YäB ÝÆrNØÌÓÚf9ƒŒSFóYdåš5fM=Œnnó>‘Š¸Y8{ת‡æàe"Gº:o¤œµ*8ˆ,2¬˜«“§3wÛÀõ7$”NÑ·=§è ~—¢ñë"3ƒ?†,¸˜‡›Ï…мêȘÐ@ÈÄûþun³Üåc.ež¡!Òèþ­§lBœWÃ딄› í²Šê¾Š;¿ ÏI,³$[­½•Wy¹kT±ueN+­ªìµÃã…cTk¨~xS•,Ö-b +“[æAɬFew”b[a¤W.›lßÃC1syNC¬6FÏ‘‹lÎÅd=ùÓbóœî‚"–ŸÍÒ¬ÖZ!¯Ê\Û˜kòlðžÜß¹qÚHöô!AgMŸcó¨3U´ÖÏM>òK®A‘¼òí¡àŸÎÔï=ßÊ•ŠÁ­Úˆw‚ÃólÖ¹·õÏoðN¨ +3F/&;DÕÆd¯1>V§Š˜\e4ÓŽdŒuèz‘%„Ðz2só\IŒ ¹4ùi–dçÖèCc:dFuza†"¦IL”³³¢#*N¬ädþjîŽ]Ë•‹«w/¬“qå÷^ŠøÕÄÕT¯#]¯R +QYÊX•Gœ9Dz +”â-Ÿ1eL:½TilY’\-²Âj¹Ž?ιó#‰¿ÛØñÛyÙ¹b‚Câ8/Öð4)² ÑŽç +kYSFW&¦ªBU§1þ¨¦ýÁCZ¥¶ZW©Z»?+i°jôŸš}Ïh’ÿðÝYò}¾ŸÇ÷ó[\tnÍ´y‹IVÔÆ6YÿñKV)“Ä0è`Ý ,{ ÄÅežÚ]R¦ê€ °¤md½Ò­£i´±>XÐÈ ®¼}ñdÂëó._*]¿ô…I¸ @Î,Rä0U )‰:x4Ì5!Uik ­k¿Õòç*‘Ï*ó­v‹!•±Q&vp³ ±éµ‘? F›C+åÅtáõ?.\pDß*Ÿ³ð‘pïHçÁf¿– UšSÞM)·ÙeÀšJñ¯YOh&½³«c2k^È®­•.›Tz8 CC*ÊýXœ%ݦa°GR[™ +¢D§.#Bœ× Ê´5š´‹&â¨e{ÂF£TÙp¸u$cY”A:ÐX·¼ ÅÒ"#-œ^—ò¥6©¨Sj;©ȵ³¥ÿÒ¥¼6{áÖØÅ!?›Ä¸é ³ššÆÑ÷¾Ù%îúõ ê(h‹6aá"âzÉ"ˆÕï«O?¡õYPcV6fbv\ÀäghäfõóÛ +¯ÓϾ^ï€b‹r^b( ,×ÚH=VÊfk…½] ±Ñ4NaiƒœÇÙJŒkm•*Ô(RWƒfš!»Öíħ’éÿã]‘3K¡<­è׳ZÉ#Õ$”礪¨z¨i).Ù }ѽ,öÇV]‡qà~0x/ľrjêæôÍïÎ.Ùþ<ÊVŽ7±»GºÄc=N7;÷ÅÙ'èdƒa ã¤ú^›=÷Õ +pû¨øy2†M¡2;XêõÑþÑž±!Œ®9rR62šÄjö y›7”‹Mcéø@4ß9íÌÙ8ýÁ»GéÙ· +Ǻ¬òRñÜv—:béÅÐùêGª­mØu ž.nê_ 6{èìµ¢oÇÙoîÍ·K äóx Î!ÙeH+²H*‡]×¢(¶E§e`ƒMYD#W}'€L#q_Ê®u8•÷wa1­;.1$P>bS¿[>©Î èxHÕ<Þ¶0¿­1òÈùçâö|α9þkÑaêoøý£$‰w]«>ýwõË‹6Ø$°0)Ù §‘n¢Oîˆxm:‚Nº¹dBŬ;mª-¯ŒupJsó£UML¢ t¶ƒBÌ«öF‚¡2/”†Â(™P²CQÐzt€Ž”»©´î)¯áRKo-„ꤙP{¥rä£í;ß(NmËÏv-º4ýö®÷³™øÎŒ!ßÕgz +cWÌôï®Ã‘“»÷üjÇÆ£¹Í—;[‡Ï?8ÔÿÚž™7$Ï™BïÒ€`=º±;h‹ú<÷KW‡¶ïíïkWEÁ»Tç†V’Û ¤¥ Q6$­°4éñh!/@tN΢‹¤~tÌÆ+‰úVˆô¢õÈgAù¼59¥×MCBzz½(û´æ22™Îˆ]þéŠ\òÒÛ§²âK¹V=|r(“zùîØÄÝïÞÔ%\b'GG ª©Œ åcWoïÙפÍíxߺ¼×Èÿø«ó?¯þ÷ÓeÄGHç¥r´²öÎ~Oåg +žÛϾG÷¨¥Y@nl0jÕ«6R5ÒLyÈ ‚Wo\/¥^Ô¸€®A=¯p‰ÞK82žR,1ö“Ti<.ϤJ¾¬3>>FÞKÄ&'cñqø¿t–ÝøkP œ[e¹(Ñ„„⨅4ƒ%á£äª* ›>ÑŽ*FÑÆú½,1)E^YAz}‡Û.8͆Hlô·Ù»%ËOWgû¶D*³r½?šhòèóåÍÝ@åñ×?œrýt¼àq·èè<ÆyƒÇê~ò`Âi61¤r͈®²ëÎߌ?œF÷•§B<ƒ¿¨9`3±UîµhÈ1 á@‰žnH~—êyžO¶‘r„³ Cî4¢èp“Œ™Ä#òhDÅ3Ô–ºz{ëöM¦ ØA•n•T¢6Uû˜ÌŠVK׃¶–L O­MÔZYO5wÀd>ð¶a]jÜó–GÕ¦ö}œÈ]h›à…G&ÞþdâzelÁÇo?ÂÚ.}_êÊÄ•å=¯ŸØ—±ñ~Énª˜É' ;ºÀbVË[NŒ´yårH4]¹\~gN2°ì4¶f=ì¬ØgwÍ ã«Ò5ç_ÀL|DR!%©Éx´&B …¨PÌÁQ 0‡28mñŠ´qóM‚Ö òHƒ²óÅ êcx>…C0ƒjÁŒ0 "'ƒ` ÁcB0¸k°×Ú919¸ºEߣý³ïós•ë{´ÚÅÒãêÓw¥I±b¿€"x¨ð$<#/v²þVÓ~'ÕÚj`m–¹[;¶äß;¾Ò†1ŠÛWíZ$ Ò~ÉU¢ÊÆ”XÄŸÁ©wDð4’6W&Ivv“œÈ“$iH[\ÏKl–NÒÕ)22Êúîè&(Ž&89 +H´±K¡ÿ°ái4PßJçÃTwhßfFr%|BáEk¬o^W˜„ŽD‚¾R%—Ãy%eçH,uôõVåòÂÂjY2äù‰XÝ>ÛlÌ"ÑTÆ}˜5›mç*þ7æ½âqt­ºö'cÓ~'ùd<Ò¬¥ b d½Sê/Ør+UÌsá˜ÏsÝÝú²½9âÔLÕ éóÞ ÓXyö-} ?!²Ä œ 6ÿê*‹mã8ÃœÙ]j—ZKrÉ¥$R¼É5¹ñ>DR%­%J¦m‘ E¶ëÄW%Ù.| ‰]Ô‡âq£>"4Œ&®á¤Ò¢.1yh€¸èC 4‚ðKZ´¨‚ ¢:³+);q¹óóýß!^M/sqÈxûxää±0§É1ÚxŠEC¦Â `tu +ÄmŠ§†M¨‰UÖaS ð˜ßxJÒã úa*mNûñ +àœ©tŸwý Ìu0N˜*Ô/ƒ‚¦[ÿh­6þÐúò*xñ`¯ûÏAÔ›d®ZŸfÇíÅ`šÔ–Ž?³{MêÏÄïïj€§eÚÒ!‹î»ž×]ÜÝßòæd¬wëùщ핱tò™KíÑö·/öÔÄ风xV[\FŒpi²•˜ ±¥=Dz:ºt'€Y ¤ÌNÜ ,’N²`ÞÖ†ê‹{=àÒ²ûðÇsëâ6?T6qù‘¥‰¹ÇÃMðì{we`–2Äp)i©Ót=0Z_ U‡#@&1GçG%t¢¨¦RÉtwB–`8`lVÎå~ö@"¡Æ_¿*RÝH;QÒŽÖ³v0u ‘¨(¤TNf€<§0`Ò)ùí¡h—% ê åÈgî>˜«™m_zÅíº#¸ +-›¹©‘ºäèr}¿þ½‘t³ˆg¤ …lõ›ÓœÔ³¯ûÍëhã Àˆ®~¥ý¿©ÙUÙ2žŽTœ˜”“„Š& ‡ +v‚_"Pû/ëf],ÏZXì²óDaˆ‰ûP`‹‚ÃáO5Э, µ[µp›âÈýêƒÝA¯î•å[eÌ4z§L¬è +gUÌ&¹f@"caÈgQS¿ò§v&^¶² +’‚e›XÿéOF}”XèV®êâËU±lHKi`úîïgÆs¶‡oí/'NLÞ(°,om—«ü¯e«á•MàöÔ ¯ùO«½uyú‹ ;/ÏoFf$„ï¯,9d6*r?6Q% ­c­×Ÿ.ò-0vjÅwÅ!2ª}ÇS÷Žƒš‘Jn /–*¦aŒ ²~ÖËÚX+kƈ¥ûl„#ÏÄBÐ ^éqX©*bË•<ƒðª¯5¸Ò©5´)€i÷ß*hZÞdA2…:£†0H€!ÚíÙÂ;H«Š@Ë/¼PàO‰†‡ë¥’Ãʲ©x·3,·Þ}:AYM OýÒ¢lrþÖ¥S.+‰q™leൗ ,‰W@à_ûâIëëV Z†ÍOK gïÊÒg¼IÝ ô5„Eév] |J›€ŒÅÓDR`ºÊ ²±¯e ”NY xH)ÃÌ9% F°¡0*0‘HdÔÿ÷l5Ê*‘‰êئ¡Ê'¡‚ÑLŒN¾}SIŸ~œµ6yÇ1ÏÈ©ƒ•±sͦT 1:Šõì=ë-lï XHwõ•ø=ï?­Ž¯áîó6%¾Ó$éÈïÙº|D0™L¶vîÔ|nGÖÅlo®x«é.zc~Ê€æÓ UòN4«1aEjÈͽ£ñ(^$ž6òƒL‘}Í{ò<5Ú­HÛP}h¬ÍŒcÊÚÐЇ”K|mî*SªI·áàÆã˜Ò‚¨7ª!/‰O«È›²1óR¿G‹o5ˆEvi+ +â-qúŽ\’üû·³-žŠº~äjJ­‡þöÒ„/ÈöÝç³m­ô7ß|( "rÁ?ÑF»Ëvš×ëT@hy`ïL=;iÍøa$‹$x’nº¾Ùxp:’Zñ–ªN™K«Ÿ“4ò°ö°B"à9˜hãÑd7J0UЖêG•’‰(§# ½L!ð{©c9@»ÂS@Cï(-Üh5–¤êLé$ÆwÈNÑ™2LÛæCŒÀþ ŽÍ®\%Þ!®¤5DêG.k½Te6%˱{?Œåòz~êô«[w¾;dÖÖ(½Ïw´ mŸ—Ç¥g³ ºóõÇ/~ü*ö‰“õŽ)’ÞŸª²›\^¯ôòx&ÖøìÏNÉ]ÞnæÜDÿ³6ƒÇ œÔæ®6ßÀH4ÐŽÜR|£ZÉ9»v˜ 01žµÑa€±YÕ9DìèÔvj@ó~š_s¼ÕÑB¾jó¸3(ϨÂaÕ~ëo`¶^1“37F= dú#ðs0yË$2oË$W›yï2ä¤Ñ_v[©ÊCí5tŸìèMÆ2÷̓B Ê8ÔV¿BçúD3ª)TD¿sˆÉ±i6‰Üc¬¹ F—ŒøÝÝN‡ÍÌ äõ¨glV{ÆÆÓÓð å¾Bëbæ¸@»Ù’´u»âèVUÁSžW2‰@ånaøÅ¿Ž.:§Í‰×÷¥îLMÝñLÃiëì´½óÛ©Ðñ󱎼ÑèásqACß’_˜ë°z|6::^tŸMæ÷í v®üµõáuðÎ÷þüv&dFªN×stþc~öäÉYp|:×ú°uwnöoCå¥Cn—«bÝ/®¶þòßÅÅe ÿåòçV¿$“¨ï¥4‘Š××Íé4”%¢³2Æo' ³‘ÓÀ“±N2Šõ÷÷£¦]+Xʃ:I›Zýüu‹Û´m¡uBÛÔë„©›iÖj¥¡2(¶Þ'¯öŒ6Žó½T¼ n²×qx`KïÄY¯§=o˜Ç6ù.Î$5™Çøƒ]äå«N÷BÔÃFŠ´$wIÝÆL1»§u 0PhÏêâSÊ®áPï*Vb¢Í¤%-1]À 0V¦Ç Û“OÀãév@Y}lÄ ÐåÔÂÒz»P†ãÔÁpâFÛ‰¦±`™Fmèx:ƒò&z¥Z<Ðv"@ÀKD¤ð âM™b¨ðÜÞЮ®„ÈÑt<Ç\½g"I¡7Òk‰ö×¢òŒ$Žß€Ó­ß ŽìîF³Ü¼àëZ)ê˼›ýì üÙÌÿ¨.³Ø6®+ Ï’3\‡ËpHq—!)Šû2ÜDJÔB:¦K”M)ª%ÙŒ zIåFŽ­Önâ´†á6V;1j7n“P£šäÁEÓ$mQä¥hS A~h €Q~i.Ós‡”êèE¥‡sÏùϾߥa)4¦7~üÏ–èe8ŽæåÆðÒöòi¼‘+ðÞ~j2U¸êM¾8 IÑv‹A0’&s©@ÈaynØ™Ý{ƒ½†”kïšM7‚×àq +J%ÙyåÊõ‰©¿¶™]]~^k£Äîv\Lúf_j¶ŒΕ«§?øú7—W‚7°ð›vÕÊÔ*gæwSíÏGa"[_>¢¥ÞDêÕ¢ ¹-”Mt°,¥¬ÈÄòYý zÅV2‘i+i#È,Ú*Ä…c¼è‰Ñȧƒk€‚)f0k!\|6/ëO~Znïm’aTØO¬òïTÁ281d´lŒ…›)´XÜ:[¤wÜS¹vàÐ<þ¹k%›´+ȳ~€¡G~ooÑShdüøüMjµvfûÍ·OŽ5êâ…›_[[ðwvÕó å̳GÑ£ðÚw//±žÎköœ¡>“ùàÔÓå…øøö W2÷ìM??Ö#ò3˜\‚®J@ep­b—¯EoŸ V)ÍQLAf½È”)ŠBðB8éè¼WÛ¯@©^lÝO/pÕ¥|[# M0t§(g4pG•ßîgHfaÉz5µq:Ñ…B^_óú…í{5¨ûD_Zl½ûnÔ¥FÐ}:\¹xû¹IOÐþKÚ໾u†Þì´–ËF²N1Ó S÷a?†ˆq”8Q]±jÈò„¹%4Ù¤ x²œRgX”p#%À$ˆ3‹šù´ +©hš`³È<ÃòÐÞEd¬Ô‹³ ¨zY‚.é4JšT^žÉ•äJO¤048žÊwÀJLçUþ.öÈÓÄ°‹ç& þ ŸÐmÎìSºfŸt®‚‚AJÖ¹ìD=:Bê~»]Xï;›rÆNÿû…W¾?Ê]ÖJ£¿dIkm›9yÃË9bîé¿œ­ Ÿ¹N9KO?œnxk©É9Õôïr5gñ­üz444Z¼Gë²Iw¿É,X8Vk³–æÌጅ~çm^¡ÏVævv.jÊ>YlhÒuô“hX]3i·:íRÞ +<ÐNi¥|#¡Po§½“B N™ê FM:ë0ùpµeBE&Ôz5B& âôJjÃæV(P¨{û0½…dzÁÞCŒ`¥ÿ«u†¹ãÇœúØÜÊ[«}ôéúS'Ї™¹Àè©;©"}èR›Ü9˜Ð+F5^7÷ߣ+wÞ¸2SJ©–\j°ÚÛÂ:l¡ƒðW½>êÄm©ƒ°qÎŒ©ÊÕݵ¸¼j†ƒêW{Ø +ŽÚo%üþ›v:Ô¼»Ó@”9>L-VÝu!ÏNß~|+s|)S°5ó°1Gg† Az¶RŒ„Í¡0µgÒG›»ŸCM}j3ô ê*¢¸4; ñ‡dC0I:ï‰ó +'·¤q¤l -8Ö–A¥SRG èÁˆ{‘ÇõãÂyye¬þfÅè ï åw¨äû‹À~.Ò#ÉîgnÔËM…„€t±Ú¯_¶ìx‹©ÒÉÁ{-²È×£ŒŒÖ¶×%®mô,å³ÍÝkõ|B×6:W‹Ú@̸ôÞ¥:©ŽIèõ‰¨¦â’¸íK.Îüü‹¼^ãýÁZçö`N`¤.Œ¡‰[.z¥³55‚¹ŠÔÅJhêGfz©ÓJG¹úÿS%t²@©Nê§ÕPQѬ62Y/)}T^$» %iü+4Ò¨6à6JFNBÂ"':g ó +¹qI„ˆR7fDö­uoÞݶᤠ{)ìw ŸÕ¾Å6KI>4d¿þ!·ª¶+Ãaš¢‰á­ó%¦ºmö9¥ÒʇWë¤6žC¯×c5k»z™ ˆìkÖÏãI‹ +ì•Þ®!ëê¦ë´’û-fÉ/¨_Á{õ„H$ªAcŽ‚[çÊiY¼Q +uŸ‚ôYسŒPhÓBÀiî¹fÒœÝ+Ûau¯žŒ$˜ áÏp ×þÞÓøéŸùÃí?ýýÙïNÓ‡•NÕ-ž® ÷ÿÎèÿúÎÍON= KÌ/^Pg¹ iäPÏߺ‡÷~¦£9`Ý8Q!&ªˆE°’΀]­›JÇá+T|”¤ÉÁnr„jN8IAKÚÑy œ8²W1f´´S>¾n˜9ä^wwO>Ñd7éâ»-õh%'qâý¹)5GG6iÖ(öë]ñ¹;÷lLùÈR¡~¾»5Ü®ŒbK®Õlµñ¦#«G:uI§’µF*Õú¨“‰þš6ÇÇZÑjT:öí±O¯•6Îvw0ºöêXic2²´wÇPGVGlÈA²zd—¥èèãÕ:ÆDPYèÊPÄ#€‚4‰ð6¬»ó•k!G"‘'ÜzOx˜òá¦Ë3Û—Y«š4x+Þ®:M¥ò°ÈØ\î¹ì!cfvéý[ Cf]™ Õø¢v—?Xò0ÿÑÖšµÎg“)Ç5¨üÌ—_ÿ5‰jµû“žFŒ¨bûa)Ä|ŸZÁÈ›E8n†|ýn§À›ôú•d0j¨‹Q ®ŒÅºG‹Àórz“/ô“ü‹Ï2, – |’ƒ¡Üÿدö˜¶Î+~îÛ6lã ÆüÂ&`^ÆpÁ¸Øa4ê(#›QêBq…“ºi—¡*©Xº¶YZiŠ¦*bŠ*­ªÚî¡lJ«fëCVUÕ^Ý›4MÛ´ +MÓD¦*Êœý¾ëí¥HÛ›“÷Üï~ç»çœß9÷;ßé=f‡ÿPox_Ÿ·Åð¤/‘0û¿ýГKµ†ÑêèŸNÎ&ÚŸÏ·ùÖÐOO§×âµ\px¿×è÷zëTO­{y¬»3?*žVÛô9­—ß}(:^^t¨‡áçÈÍ?ñëb™¼Mv4qN¸´&¾ÎlpsÔñ6ˆPD´üCV/Èð32ðál¨¶UmZÆÝê£Ø¡”9¯¨9ûã܇剽µoZ‡Ùéó‡ªü†úôwçÜ{¬[Ç +•÷>ßnKh4’YÍâìÍ-1Š:é§Éäp´›„æ €(sbÐãzŒjØd3IÆVÎÓhìiãc!ƒÊž&©Ùb“ø‡UævNTZ­„´*ë{<«½+ï»õ… +îtêÕ¸2Àÿò\pv¾§d +õø;‹Ï5[ ÑÉlÁÓjê´œ{Ï,zCc_:5¬¯¹í»^áæS}ö´ÒVÌgÆ*—g>7?ÃEaq @ñ•·F‡Q”o\Pù˜®òKTä~Lá"MI—èŠl 5n‚Š?ǧ0ÞD%i–“1×ÏŸ£8÷:­óï’óçp ¯b­“4…û8®yÜ/eÜ焳”ã~C@³4òÅ:ìŠúV~—6¥ó4)^ ‚£²ô>͉“lƒü¨„TÅúØa {ž²bžŠŠ ϶µçE±¤]KÒ:¡}Yüö?¦ù0¥|ŠRâo1~â‹Xc‰6±–‡R^ÚæÎ ?§v~“®ÀÆ‚h/3”ÇúÌæ#‚ = Mážéï¡fØHüzמá½Âô˜S‚æ Äë2@' ݸÜL1D Ä€¡oñKÜE\¯Â¾ÓüŸ±æ¿‹“&ç¨ »ç4ÛÎâ Äá%Zúûy°%«¯[„Mkâ:]¼”å œKx‡²ÀsÒ÷`Ï–Æuqžb|"f]àxö³µ0Ÿ¡ŸÃ{‹°w +¾O²u±Þ£ÌÄ´¬é_ÀspÍb.^¥¬ÎåãSãp€Oå,t0Wãm›æ—lîí\²«Æ'ò€ñÈxC §‡šÎ%Ê+'à7 =@SòñžuŒÇ¨ ÌƒSøɸÔ|c¾ž…}!J±˜A?%¥gY|40Cðûê½Æ%Ÿz0ÝbuDãp]›—“S”•³™¯ï#·ßNÒl«®ãÚ)­}ÿžÞ@eÊ: óøÔ uÀÇ°æwˆÈO‰ßGcÃ1LÀÿ&drÍjæY¢ÚBuK:n|‚ú+DVÐg³TÑ ÃÞA¤Âuû4™î?#r¼MÔ|?‘sžÈà‡'§£BÔòB^7‘¶ù1îÿ Qà£*‚›D­O…ZÌ?_EÛ2Ñ®ñÿãl ûN¨ÕOf쀮Ó)Œ±§fúêÎFg%½ã!pW•EÈ­º,CÔe˜ÄLN4B +ìÈ…iY—yœAŸÑeãº,B~[—eÈ[ºŒ59ÛØ#©Ç}®Þ[*ù¢‰D4Kgî¾'2³°¼p|q¥˜*.½³!£G(ÿÑ"ùèAZ¥{©„>Šâ<“Àß4å€ ÝM÷P„fh¶/ÐqÌ_¡"t‹¸?JYè݇uسÕ;ÔùoΪÝü¢üO~I§yHìW{kmâPÙR,ËÅÎe¡\NÕFé©ËÂðãžHäo ¸Ù¹¯ +endstream +endobj +834 0 obj +<< +/BaseFont /PNANIU+Wingdings-Regular +/CIDSystemInfo 1112 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1113 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +835 0 obj +<< +/Filter /FlateDecode +/Length 533 +/Subtype /Type1C +>> +stream +H‰|NKhQ—LfRRMˆQã[t“ÚfÒRÐniÀúA Æ +nªÓÌK3˜Î„™±5‹â¢‚ÐJ|E*nDÔnº Vü¬Tp'âÂ]\t%…;éË™qãÊ»8Üsνç^Äñ!”8U˜ÊçÎ;W75E-˜Æð„QUó†®znÒ9„œý¼s8"±A¶²;½{!ûàó¾wÎfŒ ô½7jîîlÅÆ#ãã£CŽùx|f2ÇpN5f.Ö-›ÌYø´^2Ìša*6QÓ8W­b?ÂÂ&±ˆ9ï‰?š…‰fWˆ‰לÕÜ}“¨Ø6•Ì)æ5lxÎ?´üŸSXÓ±›…§tÍcEÛ-¬èªì¦þ•’q]·MXiùdñb½Fð ¬’2çVã$ŽGè¼¾úÓi4[Îv ¹8Ð +6y§Ñ)t¬°˽üf[x¤{Wì +Ó~YærÁy#yóX—`½†á ì]’^={±õV{®”ÊåË—^j›G£Nv}¾“\@0 ñ LÆ!ÞI2Q`©ìã¼- þÈ;p › ±ûÂý?àwäO;gœ‹‰Lë¦B#`1Yd<¬IËâW8êß~¸±öôÁFøŽÐÐn“J‚£7©³H!E)]¥»J¿PÑ•nPH»Òfeúö$×g®Dzš‘Þö8ÐÛ~‰ü`ò÷ä +endstream +endobj +836 0 obj +<< +/Filter /FlateDecode +/Length 1894 +/Subtype /Type1C +>> +stream +H‰|SyPWïvèPv²KÛ,N§º;’DMQD4 Š‰QÅU ÈÀŒ€ƒ3Ãp*C²‘`À¸ÈpHµðăCX¢kT<<0«`¸Æƒ(±ØµÜ¯ñ±UÛÃÖVí_[¯ê«÷}_½ßñÞ÷pÌi +†ãøŒ-ÁááW~º.S› T…i5s7©ãÒ’”ZG“\ðpÞw¥Ñ|TüîÝ»P®¿#¿k~_zÙ ›‚ã½/>פŠgãâõüü%Kx9âÂÉèïÅ/ðññ™Œ ù`•&FÍ+2uzu²ŽI‰ÕhS5Z¥^­ò惓’øI¯UëÔZƒ£øE|‚ŽW'èãÕZ^)6ãÄóZµŠ×k•*u²R›ÈkÿIwü*>!…±øð”G¦Ð‹E¯LQÍQ4“,±š´½6A­óž÷¥â™©j~1¯RïÀ0\\ØL óÆ0? [Œa+0l%Ž­Æ°5¶Î SH°éâ•bë°õX%þþ ^1ÅuJö”nÉvI©ä˜ççt‚˜NDÄ[r¹©°]mÇÅøa»¤ÐI0‡M˜H(F×h&`„D<ºLƒ#™Ø/ £&÷„Äœ:hÇ92™ ðÄwýG…énG…Nê‘ñôOˆ0Y㋈™$Êü×"âyâ‰ênÚ$¨‘ò¦²¦Îò€ê@låvÚì!ƒ+%à2Ë »]ÿ‚JŸã>H*E$!‘+ê%¨sÉ‹tÁY«œMdÖ=ýCM?’B¯‡Ø¥R¿)úÉjhþnl–òû€º…§¼œ©s€£‡„„iÐW?rlàpïŒb²Àÿ;Dì›ë,û¶Æ Œ>Ä!Ú.hw»0 +1'òƒAIÊàUáX€Aèþ‡h­rü6µN¸¿‚7t¸ÒfíÕ—®ª©ñDo<ž“ ¥.  ‚*7øg,ßìl&óîgöeô-—>ä|4¢_h0®ža&sïd¤À/óHX&ª—Œwv °dwÜÎØA9HåKÜ¿=mnj–Cˆt4n Í^¿1kW,{h#Q[±¢•y]öy,—'EŠ<×"9Õ¶²ýË_ïvÔŸ¯c‹I*gÿzbøÓTÛ×æ<Ó×lÌîØØP&J]÷ã/€|eædÆû*ƒtÓÝÎ?…ãvªM˜5A£f³´!më™`M5ùqhÖ³ÙàÒ{½éJk¡Kü‰^Òtº í‚\øYê;QBï.È5å²T[Hv¸*ŒñÚöä×^é{nû!RQ΋rŒr™9¯oç-üü” J„0ÐE¥–ŠjùS%phúÀIÑÇèã§s`ΣËU'Ùœ[Äîjc(㻬 ¦™¹¢[tçþ†ŸŸ2¯,Tp²«H}fvÁø]㤇£ÃÔa¾AS£ù+3Ùhˆlñg„÷F‹‘|è#pý©ãlkg '‘,ä«ù¶VJdÓV»nï¾ÆtvW´\ä.6×vƒDõRêÉuKƒå ëƒNÒ9欽9¬"#"!\ô×û’£FÁéÆýÛ”[ªØ’Ü¢=9rª*#ýÝ|Ž?w!Ãw"CJµŒûÓ‰z]Rr­îä™Ú#' +¸“†#;Y:TcHÇ{ì’wûx„¯8|"NÀÑTÏ$AÒõ¤Ç}ZÉJKå¾r¶¥¢±å¯LW½"ˆC† CZU\Ube/T6œkgî×+¼9T7ç¥èÕ¼6217-…MÏÉ0䤊3ù£akc™Ê™Hª-ÿ1DÇÅl•Ë:DÚÏz´v0Ú©G¢hqp–”±m•­Mטþãk–r蔚¥ð™gãêET¤Ž5“TëÞ>béqþb´ Sm¸ø"ŸIà¤ð äx¡Ehîاð{pß>†U0{îâ8sý¦És ÂCýýÖ÷½}Ñúê '³¡•ØpWÜs¨†³vj´EÐÃPe!·¿ª¹ÍùvVÀ,ß×È%pS|X'Êx’ßO’–HËÖuòáHÚZ\^\ÆR£¶ƒW/Ü`F.-þI—y‡nnîÌæÌefk¹øh_ˆ®}úéÇLTgû0”‰¦+,VÖfm¹x“±–˜K9ª¼_JuZ¾ùSQ¶9fM—ORÇM/×U±I.ãóî8l_ù ¤á0^߶ç2RÛÁÑÍþ§¸Ð#)Õò³ÇOt´žÉÎýž­½MT¥FWD0ž¡k—nlÚ6œÄÝÑÕ+å±É‰k·GVÜ%ŽÇò¼]øÈdD¥‘óòÕ?¡ƒÒM¥ÑGw±ºšÓ{š˜úº}ûrù6ÂdÌ2陈¬úT€[rN*ûÁØãK·{vȱS­‚Vü!¾¨Ì6eïÝê²cb˜ÍÍÔø¢³Rô\ù·¡K—;~{ƾ@â1i:_ÐÒ.—åZ… +x[­Ö#Ví°>²JÙš˜í®.…®Óº¦Ú§ÙK\ñÓ…Búß ±ÿ±O +endstream +endobj +837 0 obj +<< +/Filter /FlateDecode +/Length 2078 +/Subtype /Type1C +>> +stream +H‰|S}PWŸaÙ@\&CpGgƈàù˜p$jDQ”UÑÕ(øÉÇ‹ÂÂ.ì‚DÜP–ÝÅ ¨‹|®bŒ€€È’`T +ʕѳŒz\ªb<=SæRwWey¦êÞ’\Õýu53]Ýýz~Ýý{Ý$áéA$ùvÔÖØ­1‰óãŠôÚä´½náÊ}É©{ÝG¢Ä‘ã)ÍðeÑtt†|ÖÏ9|5 ~|sl†×u?ƒ$?_¥ËÅ¿fdæ‹‹/~w[†OÊ÷ˆï†……MÊp1*M—¢ÕE†|M¶A\›“ªÓçêôÉùš´1jß>q ê5ÞèvþZ¨5ˆm~¦F/&ãà -þ_¯IóõÉišìdý^Qç>ù3ýÿ¤µ9"Æ·ähÝ–:; brNZ(FÑMfIÕääëµCHèõæ¢\ø˜¦I'?ÄT‚` bA,$ˆ0’'ˆ•±š$T±Ž â< µ'€y%âˆBO|NÜ#^’‘¤“|å‘ëñ\¶\vÏ“ôd=k=/’Ÿ‘õå¢^ÑáÛéåËÀ+2›§T1‘𺂂*ô‹"¡F§ˆ®±à6^WÓ¯©]“:D"lSÒUÖ­!·¥@c +dBÞð'ò0œ%²CÏúÿuHc (ž›˜䥸å2BL‡ÃÀ’0 +‘2ÉàA†é«$ñû:@Ž¼ ÑÈÚY»cȖ˽®KÓRÖ{R”È“V d—q"ÂDŽÂZÙèDûK¬ˆ 6˜/5ÿæ÷—ba>rJÍh-¥€\3Ì–B`6Ùj8j™$ŸˆbQ +bQÚ†6ÒÀxÈò€ß£l¡ÍfŸ\}y¡©Û"ÂÃ7??xcð¯ß Šç¸Ž]3p¾ƒ58'VŠ¨Êõ• ܳǮA¡·ûôÍ;ʯ÷ÝÜÙÁwíXÓ0 Œ./M ù±ŽcŽ³ÜmâÆÝÑ…ív‹ øÒs¥@&ûa=xBœ¬§5u?6ŽsøìàõbóšzIˆhÏ8Ù¡lmm¼s¥°äß òæ]›ê–p(28M ~ TªðM^ka–R›mŒS©\®^Ñmj¶±ÝàÑ +¿³ 4¬b"%«ùkÿ€–Ð0-áZ6gµ®x/ߎhySû`ãUn¬®À$¡ÑÒJä³(™]‹GWþtm îb'_E1‘Ç÷È™&#ı‡l‡¬¥|n©®(Ë6Ö·õõºî ŠŸð €˜ ©&¿6Ü_8¨˜Ég"‰EÕVº­`Wýy½³-¶ (ô‡¹@ ß85tžwPÌÇÕ*9„SÖóÖÑ¥ô%Í Õëý¬¹ò ÕÂg•ëò2¸Äôžcg¯ßì>›£­쥶Ò2¥âœF@ñð!Û`ÙTëÙ*çÑO[•ÀÅ€7z­BÁˆFa?.€¨‘ÛÕ-7ø|ð•ؽûð.vÓ©‹å‚l[•kà7\»U'(¾C˜ùÞ†bàÌ¿v„»—¦Kf–yY¾Un¥zòRNoàдà@Šf?™¾—º[Gµ<1s½ZÝÔÍkÑ ¹¡ÿë’;Ü7j¿n\m¢ÍŒ?vôUµò(bͶâ + Ÿ[n(Èâ³?¿-0/]èí;Ú˜YÃÛËì‡p«.£d6Ý…åä¨d`ö—̘"3ý·‰¬:##i{§fh¸«û a 2³KÍáð‰$Ódì?¨&’ +/Ê/x®⎆`xãÏOÇŽXE1ãÐI;mµ8Á7T×µœçz26 È…ƒ:èãöú£ÇùÓ5M縞ÆÌxÕc 3âÎÊÊ)+Ñóy%&“ÞËJ “ÎÅrïïÙn(ŽPÌ@Ùˆͧ»›Ö)Oq?ÃœÉ +TÀ`N/»ë£˜‡ÐN×ÚO=Æ7ÕÔ·tr}ÍY›ÜÙUî,\Ü#D/Þ±=¯ˆÇˆ—KoÉQè›1L-0xâ!âe0(ÙXôaàl¼üá@-ÄSÁÃ[ßâí;çß(D(G {ýT\̇¹Û¶« Ã÷ÇšÇnàF«°¯Äߪ ‡õÌøJb±^â ô}CÜ+ðþTø‚ <øY j³~{:oÅä•ŽNÖ´Ó¡^§Ä‡ª$¶ÆVã¨æ;?i;×Å –¸&:kÇ–ŒÜ³íe‚õXåñJ…ˆ¹x +KͦÏL§'32ö_¹†#´Ó~ÜqŒï9Öuê×tÒZQ+0Ç`ÍØ«JÊlÅ\r¬~Ež›Þ3åOå(„r¤8v,S*,ð4Á4²VtA”¬µ…5]9p‡ƒ÷ï¾*ï¥_™×îµ±©øx½²¹±¦­§¿Ø|š? +yÝÞ-µñb?ˆþP¹éBZ¯kûO”)‹>>¤Ùµ¾¹AÇ+c ô¦Q¢ Àï!D3¹¥§lp< +A+èõI­Ù|Þ§—Š®qý=ŸT»æ̤­–ÖBnÏ–Ìú'Ì‘V|o†9Hîi¿AL¯n¾PêÆ˅甹ŒúhKå¡#e|aÙþ|-—lì¸%ÀI¤Â~ôÎíhðø¾oàl#”b +kÖÉ!”²öZ‡î*´ÁR4‰Z#µ3¹5V½6Ëa-1’YŽ6RIH#g.XRÊ3ËS½*¨ò‹eÝ–‹&@qÐ)™ät:[œJwŽ9iì*tBÈ¤Ë »:½yWÊn_o›ïðÕðuÖùúÂå·¤jö? á#+" +endstream +endobj +838 0 obj +<< +/Filter /FlateDecode +/Length 411 +/Subtype /Type1C +>> +stream +H‰bd`ab`ddó +ñwv×ö­,ÊLL (Ê×uÊÏIÉÈÿfü!ÂòC†Gô·ùï>–¿ +Y¿æÿ~Bðès!&FÆ[Ïó €Ó3J --t@¤ ˜4×Q0200“& +Ž)ùI© +Á•Å%©¹Å +žyÉùEùE‰%©)z +Ž99 +`#ŠŠR‹S‹Ê@‚ç(d+¤f–d¤)$%Ó3ú‹RSJŠSRs‹²òA2HÜ4> +stream +H‰|T{Pçßì•› ëRÈ2»[kÇçETDÑJ/Vµ¶ŽQ˜"A‚I BDBµš ‰´ 0R£\_ àƒ*ࣅb-Vªõr€¤>n;SÏr?îÌý‚sçÞ¿îìì™s~g¿ß9¿ï;ßJ™!‘HTñ 1,›¾*Ï¡Ñ®6èÿ¬ÖmÎHÕgi½YAd%¢J&†ø1h.r†Èêþù) J=Dþ:€ð‘Hî | ÏÁ«7¦›„Y‘‘³gxmø¨7C˜6jÃ…h­>U'¨óŒ&Ýf£°<;MoÈÑ4&6TˆÎÊF)Œ‚AgÔÌ^ðMOB†QÐe˜ÒuAƒ“3ðzƒN+˜ ­n³Æ)è½™ÿ 7üŸRBF¶€¹„uÙÞHm QÐdkgbýh•4ýÖl“!Cg ¹T½6/G'Ì´º !Á1‘ B b.AÌ'ˆÅ#!b bA¬’j)1o*±Šøˆ¨’H%‚¤Êg¼Ï.ŸniºÔ#=/‹í”µ“än²—šD™Œ{[Äç-l'µH÷ÊDÛðêNÔÆ (ØO …t…o0ò¥|„Jõ! +á˜/3^y#…d3¨¡éÅÞÜø„î烚é@j‚(¤Ž Ñ, +eý+‚šj5yp¹ HzÐÝXv±¬Á×A•i]Iå©WЂ |ã1‹×ÀWru8M:üv øQZ/E8ŠoyÏ4?oq°Ê¿k¾o¼7ªƒP•ì¥–S•P]:°ïµ³?ØAUÍ«žydîSt6hˆzMÇ×ürèA°“*+¸/ÜWQ‚‹üø»A)…Ä@PŠ?BÜï#_L‚µ”^ì…` !Hnkଫrø=:ÿ]$~°»ü÷mÜ÷þÅî•¢ºPW– +˽}Ž§bPI˜i‰*ŒöµSEw +îæß…ïƒC-öæJ¶El[h]‚sÖ›–Þü+¡=½EA$Ö¡°XûÕføìþ`_À PÀBPÒÛÅøÀÝÇìç/¨`‰üä—(,êCóÖ\õBÒs²¥òÛ[—ÉØ$Y…”*º9úÚ’ß·=sŒsRôöýëHºÙï3;‹‹lŸqéÖ™ ¬6ëÐ¥Ÿ~ÕgçßZ_ÆšÅÉCžPãa;.Ú,† '0¨Ö.¯ßº¾&–EcÞ†æ•ðhÚÀðý©ýÔÕZιK£Hð¡ì'íW[Tb—)Gö0tóŽâB›•‹+LÉø„]”òÓ_.tÝû¦A»ÞÅ;ŠJ +‹TŠEƒÐ ãIê`,l_©hãp9ª«^ÇC šÂ"X4upÌîj+?pŽË{LlHݹ†]´ôL¿ï•µ”ž¸õ7öÁÁèäb^ÑŒtC0f®?³¾ÑaÂ:zÄ)¢…¡Ÿï^AÚ©FSJ}4–òÎ4Ž¸ÞÉð§-µçkx‡†šø±fáêø¯ª²¸œPr˹Î×Ù›]M­|ëמ;¿© VN÷Üt4:Nr¸©£L=߶ƒK)HÛœÄFin>äéç/[¿»u¹.#¹œsbV•yð”YrŸBp@;pè-ð§aM hAþ#9ýëÃK™T}¶nÃÑì³çÖžæÏo©Õ° +tÐcNÈ•t‚¿´3ü‡?žÊnÌ6ñ–Ö ~°ìÍ;!„îÁŸøÁYªÂQQêæN¹Ž×Í~{tý2Õa¼I^á¬tº¹ºòãÇαí5ëðèÆåymAZVѶÎT››Ÿƒçñªù“ú•ldJ²ÎÈÛ(ºy÷mòmÊ©)IT«—þ[ÞâðÎv{{ƒª¢¤rŸ‹;]~ª®™½y$.†G5 „srs-bA\’ÎÌa®¦ÏïˆøY£õ <|ŠÏž†]@K¡QÜ͠ɧâc ûcp˜8à>8eÚoè]Þ6‹yt*üý© Kcþ’ôÓ³žºG}¼¢Řáã!èz>Ú“¬0ž~Þ‰ì—:(í_[·t° écX3BE²è5Yk7òvŠîùü®·G’#~¥ +”Ix>Ê.gwÕ}ñt+{ï\ÌÜéI+ŧԷò6W±ËOó=¼4È­¹5£õèr¬W¢èŽ +G¹ÃÅ]s5žig+]v{O—ƒ¯œîpí*)dãפ/5ò{(ºvÏ )PΔ’Äå*…PÔû%Í0öW'­¯fr믴³ÀܺÑÏßNmšsÂwÕ!SåqÕ±jÏ…ó –BWÝGVê+Ö±ˆ\;—/^Ó?´É÷;óÁüMªLãÖu)qUôœE½‚¶IøIûÄg ò‰™Ù…òä+Ý)Gôœáð™íMlÉÒ/«xû3ÒfµØÌl¢åx;™øú 1ÀËMÖW˼Ãpk\‹Õ6‰Åø!%ºHØvì±rY;2ÓØ[.÷ðP…ñ9šÓ÷¤ïRKÇûgØöE4 eo´_jS) +ݢŠÓÝnwµ›BÜwÜr msCè(ä‹¡n÷Γšâ7f¯ß¸± 7PæçiDóoý/ÉH +endstream +endobj +840 0 obj +[834 0 R] +endobj +841 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +842 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +843 0 obj +<< +/Filter /FlateDecode +/Length 13011 +/Length1 20171 +>> +stream +H‰œVyXT×ÿ·Ì0€ì +È’7¾cüüƒ‚CÆŽ ý€bŽQ'ÄÆÅ'LLL²X'Ù’SRÓÒ32³&gçäæM™šoO×2 +‹Š§M/)1³¬¼¢²ªº¦vVÝìzgC㜹i™Ÿ5f½¼#B*õ Íÿrµþ»mÁžîEײssò´Ï‹‹&Ù|ûç6u$Ì^Üùeþ|˜fâïÀu»§º®´ÞšÓ ¸Qêsð¶!Þ\“d Ÿæ@ê?1O©fš|!ÊþˆÏÅGÇÆaByEü¬K8Á4wIâ•@N3ë° £$R M¤ª!uÑm§§IN —DQ4‰ª¨E_W’•%G9dŽ‰ ¿–<:êÞK<†§H Jà±ÕÔLž±Ãô‚g,,Æôó—`Öc6b›°ßÂ#Â<Ê;ò8¶òž>íxßÆw°ßÅNìÂn|{ðöb†ñ4žÁ³Ø8ˆïã9ü?Ä!Æð<^€Ž#8Šã~‚ñŽã§8Ÿá$Náeü¯`¯â5ü¯ã4~‰7ð&Îà-œÅÛ8‡óx¿Â»¸€÷ðk¼‹ø¿Áoñ!±>Âïð{\ÆÇø_âø W)†¢Q/Ö¢kÈBñŒ­ƒy _às,Ä*zˆÖ°=LkiÖÓ:ÚH2DܦFª£94›æR=5‘“æQUÑLfc³¹œj©‚fQ%ù“7!/ò#µ3S;˜éó©…ÛÊŒo#3E’JÑN!JAÔK ¨Òbê¦%ÔCý´ˆ¦ÐdšJÙ”O9d§\* <²2÷“(Ž¦‘FÓÉA%TH¥TD3¨˜ÒÉFY”J”L™”‚•xY趥X†vn—cæsÛ…¸ëd~ÞoÝì_„‡p«±›†hþD+i)m¡õø3=HËèQÚ€+´Š–Óc¼:i5­ðØFü…×ìž |ÍñWÇý>߬«"€™Zî['oŒ^ä¯áAqDÞ –ÏËè< sŸòþ½Í{}œYò<³çfÔæÚVæÞæáfæäæçZ¬Á*Ƽ‚±ö3o{yw0ºæq sº‰ùÝÀ\¯cÞW³ÊY¥¬b։ƪ™Â +ÊbE¥±ºl¬¸xV Ù Æó†òUy‡$Ý” +%Mò’ ’ A¼*žß‡ÅÝâ ¸F\&ö‹i¢Mœ(Ü>F„ýÂ^a­0GhÊMȲ›  +A¢·h„öÓ^>uvÒÚÊìê§fΙÁn¤¯1çO2ÿ³Ž±.ܸ³^žcôûÿÖÖNÖÙ“¬ºûWáÎ +ÜÃïFíÆ\íA;qºñÙ`¶àï7Æ×ÇÛäe4È’(,GYe¨eHÕ:ꬖ£‰€£v@GR}h¶ÓÓäyÝ;Ñ©“#à>—ՒĺhµÜùG-:T퉱šR¬tºÚt1–[E—ªKi;b·ÕÖ›ù:s¤³²Þý Å*ź1¶È¥£ªÞ¡ËŽÉÎW›³¦^µ©×#lêž;雳»Ú¾ñM9VË¿ò?ƒó¯{\A¡ÙVËÃæ“Ù¡¸‹*ÒE‡««¹°Y³ZŠ]Tµ£$ÈŽåÕ1¤r@—T-L÷qcålaE]ºÝ¥xêÖ "øÙý¨GèÓN]V5NAªÖ¥ ª¦û&†Y-JQg¡Õr‚yô‹8(ÃÝ*ÊAÒT\Z1/˜½¶^·7;ÝóY-r:¸ÜX-“¬–×­–|=$Ñ +Áý{Cfcc¨ 0HU|é”È¡SF‚A0ù‹I)HJ6šãù&>®Ì757`–^¾¡qŠÊÑ‹ÌýÃ|bEòé3™Ï‡=7ÊààUj‚¡,ÊC¥–Åš$£$åÐøÓ°9r Û Ã|ö†C|¹‚©<ŸgBJ¦±!~‚—‘ž™ãÇÝqi©™éqwcôUÌà M%wL¥4Ú[¿­jRãê’Ácµ» ªcJ\ͳKÅ,öÖîjÞäv6Õ•6T«¥7ÿÃv•7q_á}¿½´+!K«Ë²eY²„0^ÉÆÖÚ±eËG}a¡¤1Æq1>°1—‰)0†8& +4J‚))”\ “!i“”+)™´9&3éЙL2Lh3”àußJ2ÃÕ¶´3ûÛ÷Þ÷½ïû¶wùa»uîžÇêž(øÃŽEGšCM[*ºÇÎ,ï<5ÅëOY˜¸|fy÷«MÛ£§ÆûØëZ*ëWëÈ2ö*v@0Š‘öqv`ÖÚ(—ÃÀûE¬* '‚ÍD–ùG/·-¹4êï.U{sP³Ÿøà-ô†`ázõ[õòëã§ñäJ<9„'›µ“)‘bG-4>3Yë'f“äÉwm¼tGl& é'?ÜüüÚEHï8¼(·ü“߯ٽñHw_vκ €Û†.|®å•ïF>VM°m§ÔßQßRœþÌu(8£ñfâ.ÝÄÅ+IsQ–¢l´ÁªZ¢a”IÑÇ9GÖö)³ÕaÏ›Œû`¾P‰(‘Bs—4‚þ/®ôÌÆK—TWµ¯èiÌL³«w˜UM-ËÄŸ+ç;œ %ñO”cœöGéo*ÖhSô`çq"¹ÔC±| Á ‚Ëb].&âqd 4Î&7H²[†‘¢¥l¯‡NeL,„´êðV@Û:­,.¼e  nÚÈ°HÈ÷EÜLG²h´¼¹#ûËË;Öe¤—ˆFýÀW/- µ/Qw¯†ôßf˜ÛÛÛ‹>j Aï…;ËËžnÌ©}ªµò™¦áÒ§wÎýåÈ®•jŸŽãÊÜî2ìhí]*q=‹]äQÕ±¨€ÂðÚ¬tf*r²hÑù0ÉU2­œ©¥)ð4ãÅ·/iHŸN±à§3™ohzØoÕ…gÌVŽA… øqÇ .<2*Çßÿé×~ñM%?é=Ùò ”Œ©?(™ò"ŸÞ¿óå’þ…rMÑéÎMÙ0ú|{ã‹’¾§6µ¾ú²¬Þîÿvhªmð¸mÿs}öñmõv‡¡ƒ0§ºÚw,ÈïE¾2ˆÎ‡È¦ûšXTÄ&ô dë¨L.ÒAª¶ +"äKw«`c Ù.«ž°‹i€&£:*…@’Hñ•ÔtÈ ùŠÍSrƒÆ(H2ªŒ:ñ>ÿÊAª_p¦ìkˆ½èÌ?õÈ»‘ºÀ®šM3C©ŒÚ½!úœ"¶Ž¯~Ë«Ëí4ò‹A4^ÖŠ*È Ç ™tDæ5D¦ª‹UdIfÚmäi$”C +P•¨ô€Á­ó€{*-²º°âಳÌÀJ3óB2»Ÿ×–AIÐ- t¸/hÈ84,âL`£íg lÉÇOF:¶qÝŸV,>}½+ok¶·"¯Õ5RÝstnãÈâ‡WÆ‚´Àˆ¥Wš›¯DE†Õ2Ÿ©ó—>y¶¿çÒ¡ùiŽŽã®1yÆ‚c+;Ž/(­0„ `ý{ "Íó´IsEDM[*±Sm“ܸKy±i&Ú2.PÛšîô°/m:°&ö±&Ž„FWŽJ“%“‰R6#Í—Ñ“ ¤‰ÏÝ7=?ÜZõ»åyo@åÕÆ-WFKÉ©Ÿµ ÿWÛZòjNΞ5ì2mܳý×E‚M/t|9œŠxM¾µ'þ1”Uœ›Z´lOSû[ëÈ¿©È]üÒŸ7hÕT yvk÷QáX ÕBlø®Á¤I§Ñ7•¸›>£&ЋÍ‚?!²¶ûŃäÑŸh¬Õ§Ø€ÐÉï…Û}O™¶êŒe„\[ÛK½ÀÏV/¯¶zlØÞT«•ö¾ûµ-RÝ+?ž–C5aQäéèx«:¤~œP.-§DqÊob¥.|ËU¨ÊXñ w†]Çæû„ü* +ÅÜW•Ÿ·;ƒÈ…Â!ý4ŠÕÁqFf8;ü¶Ð‰1ÃcÁ„QœL÷#ð“iBFE”ø߈% ñTA;&ׯiÑ+mõKgï?ºãËM«ÞYydãš¾î 'Žw.9º{îæúg®t¿SÒ9«g{»µr[[MÓÌŠC»nô7õ|”×°wYß©…÷>oˆŽõ_0 ŽtÔýív“…´dŒAp'sLD|\<ÕtWh©ÆW1»)/ê€sl^Î5Õ ï5ä†êâ&TÓÄOt•8‹’©ÒX‰"™A! …+ÓKX‚’W0aÏH3Ì&:Ý( ñh-~8g´¢µ„'½ò¾· å4$|$eR¿x¨´iή5ígW7—mx,7'˜7=R6{nywõ ¾ Ðñ¡ÕÕ0­ÿªmx¾­bu›Ò¹¨$·ÈåøáÕÛÔu‡}Î}8·¾ñã&~$Ž_±cÇvb;¶Ç7o„B±R bå1Æ€Ž´IZÚ”.A¡d£0JiúXt¬ÑJ…uk‘ +e™†ª2I ViÓ¤v —s¯’¶ÈùãžkYç÷}¿ß÷}¿¥…îåU5ÍݵñD[ÖŒ`4>œ› òÊ;4K–&øüXqÎm!·3WÍR £•±¡â`®Õ”eÐrÅrÆ“’^Ü[R˜~–i ›ûM,g2ŸÐâ9`D5øåå2Ù5UGüùÉúÇó¼«îž™¯+ò”4T.xò{£ ¥øaMÒ$Ü‚´ P‡Ç·+Úm¹V]H1¹@-—½þöî`ŸÞ¤“‹†Ä†ñ±—?oœØ ×`Ý»CS»e.Y±Œ—5òµi¨;â1%ˤ鴰²$h3pæAoÔ A:lÐÌh¬DÝÌî,¿ŒÒ>M”¤ÃÈga¿°4Q9©ÔHñ4Å.ðƒd0˜&ƒ6åH’¡l–¡ÑÝ7%B£› +_qL~^ýÖÃÆð÷ÿlõÑ–Óßľ~¥¤'Ïù\I¨ðBÅÆm'“mg_ˆ××× ~°¤wÕÆ ÄÅ.³*]´Xö %÷®T’ÔÑ‘Æc+ð‰?“ƒ‡îvª›lúQ_,”ä‹ûÛ×»‘²Þ»Jµ¢½,_æã]Z4†ƨ +¼|€Ÿd ¨k9´´ôZ =)—Í“ãàãpbWŠ„¨‘“Ú‘~¸PâQ"o2C\=ÕZºLøþñß—¯ý¤gÇ6àí™Hºø¶ekŸß÷åPÃêS/m¾•xk]°lÝy`xcèW·¯ ÚÎìtEMöÇFoô¼3Ú^ÂYˆ:"ÞœHÙã|±FÃpL…h3ð”ÚÅ(j·@#fKŠò™ÞÌ"å@$å#€¥! 5a€Äü@Ëâýü,rŽˆÆSÌ4½x±zeÙ`Ù1 ùhãö?<Óv©?¼-7‹µòñà…Š‘¶‹¶¨YûëÛ‡F¦ó‚¢O˱oö¿*|qµØe“\ÎoË&/ŒÇÔzGñ›7ûßýç³E"#wÈATåRÙ +~qn–Ž0Zcó` ±|(MAc9v^'(Qk “n‹ÁH´ZìÕ†¬f´<+p;9Š ErØo,–IÅW\»—ƒ8HèÑ\"â\N[®× ÇAPœU½Ý%Ò‰­x\ñ1îái Æ÷šš5 CîÅÕÃ݉òœ*Ám®o¨\ÛwÖ‘N(Ä–Œ)ˆôÜwFùÊ `3òŸGêTš²×¬{âðãmHוßCݦ 6€NœX¸kžÜ«¾ûWZÇz64väåmkxÊ›–Eß=¯ÎNß¹²a´E‚QL•rƒI–B¯¡W-‹ò~,/Ñ¢*¤çdKÁ@9£µ±9¬ÍØINŽø7°°p9¨á‰ãe +ùBj“µO®Q“Êá4Ììà ¼9ºgß/×Ôh2&A +õvÔÅ$þ='Fðˆð¨>DŽ©{0ÄÿÂ%5ÍchšCh>P°S<’FSdš»ˆ±wÔ„fº(š):/MBPÈXˆH¸O4To!’y™Š=yh’Q½¸4=n ÓÒ´ÏšuÍ:Gâ1 “[\oŒ45¤EÕòÖ‹gªÞÆnt]}ßž¼²Ë_¶bÃÙ…oú2ð^Úò*£øô²ÃJ¨b$ÔÒzŸðšqž©íÈþàKÐônAþ‰ÁMU•–¼aáë÷>Ο.È1¦ø¥;¿²¥|eiL‹½)×jV0"w!›`kÙ [ÄúÙêPN:ɘ9¬e!Ë:ªØ ç¿öÜ94lJÉøç“u§ÅCšƒ£•ãøZÀˆÜ?KçÔ)Ìû±ÝGqxv +ÖžÙ]qlÿñm \ïˆo|Ÿñ¹wbýôV°t‚O(J(™»=&Ÿ…ƒ$ 6uZÄ3lè0…Ü…C»"o”†!‡ÍFÃ`’Ci +2)`—ŒÁñð˜*ûÁŸ,fö͸ejRO¡ûxd%|èE „ŒŽƒJF›ÇÚYË2 àœÀ¦G4¢ ¤ÆTÚUE]’FONN“¥9®Š¤gØ­6fU¨9Fø×®§´//ȪqðÁ™÷S»”O®üYˆ–”Åo3®".μ<º½íÞMùèö‹dM|%Ÿ“Adx]v© ëØj¶‚³el)›ÍðqêC“ÃjÀ‚ +܈fÊJ `8m +èh¸dzÆ‘@Ͻ–T›ØSï¦kphfâÀLêAôš>‰,ýâÉÚ:GZ"Â`F"Ã}÷S’S&’eKBá¢ÐÒp2¡ä°»%ù5ÖÜÕ<4A¿Öjk­hqºóÙež„@n0wÇK¶LüÇ}ÊK¾=±ªËlÒ–ÂÄ×CÓÉø>r«¨p4‘®2côì÷®ÒÏ!ôxY.PG#0ÈhÝŒ™5¢~T² +6-ò蔤¦q[ œqj2© (Kƒ§ A& +g"æóÍ] 8óY‚B«Aúìš›bñ-ÝvMÄIŒÑâSS‡=¿sYAÁ÷&Êì»™e&ˆsÓÅj-ã‡8W†h|%)Ó\¥MH±Uhs°ó9êhÚâ²£Ò~ÔËZdT¯–DÊìH-HT®#¥Á$^ÚHBÌZœ˜bÐ è$ÈËÂÛ¿;Ú¿ºš?¼"üÓ vÆ«ö_èþè¾ëžûÐô÷ÏÁŠß>þÛÂÁ?SÏ®82öünaü/«^¿=p ½–šÎˆ¡°l_.!cz Å-(n/¨ñ¹5hÏœ¯…"€ÙãȨ‚)A¡aÉTäú?®Š‚²Š 9×RÉøÕj«Z“#¶Å±7·7ì\°°÷·kcå™ñDSï¢_ÝLÙÇÇf«ÎS&3%Z' mõO7·½²£‚­×6öµ ¿$UI%Q•5²>š zX·¡ô{¥i6±±¨"yÀx „ƒpƒ×Òóå0k²Ä:õTªœ³B© ¡3ñÎ&:ýdóùТÿH`j¿›¥ªŒÓÕœò56z†o¼ë$¸bO:æY-‹Ïªñi…^mÔÈî(ÿñÏ“ƒÿ¥»Úc›ºÏèý~÷á{ÍÅoÇvâG|m_ÇÏØñ‹$$q„¢Œò¯6< RJ ”’Rèhh ,iØxI£j¡*¥…=XËCÚÐ6Q]EW¦iÒT¡‰Ue“6í gßµ“ÐlÌغ²-ýÎïœïœó-~â ô9 +’ÄZE“ó{ßvž*WëÐVU]õ.o:Ùµáå$ÞI|ì.á"ÓTM6éÒÍ{„ðÕ"Áží©´ +€ÒÔñ‹BŠ"Ã&?°.g =,Fa’oå.<ˆÜ_X•mÀ¢legý5a)o¥DD‰²àæ[=X/²¥©²ž¦ÖƒK¼í»Ö~ûà£Ü×ÇŸýEƒÀÕëU·_\yzýÅó'¯/;öW6Ÿît0©máòR›µiÿŠôÂÚ h|÷ÝÛÊ]5?\ûzvíÜ·Võ÷š lzûËu1ù¢ó¡®¯!ãåT"0ƒ˜¤(ª‘p«,#²`Ö‹f‘`â„àÍRÚÌB¼Pœ•^èC:ݧ»¸B»‚Ó­øËTú‰Ï] {h>Ëññ³gãˆx6®­ãi)’ûo04­oè%«w.pøO-<¹„Æ×áONÉÎ;GN>¶]Úž÷N:†TQµÙ˜ÕŸF§& Ê—ÓEµ¨ÝZb7 AðÀ…˜ÝÄ¢È`ÀD¡PgNé;1ãÄôÁdaAù§ÔÿqOe:£ ßS%ñYö”5MÃÊ‹‡®þÕXpLoàEtLß4Cý:±ïæ¡Vø9¹[À0nŠvç®ÑìÀé¦ËÈ¡ mN†Ã®ÑOÿe¨9ºù"Õý}/ßʳnð‰’è­B!~™ç ø­ +µ`2¢1¤SÉ©Çϧ§ì‡)ˆÍ&؃ÐklÙØÒ-ûžo©- zsÇËêëüór»K«æ,Û_^Þ¿lk=Ë=ú'}=ì˜ÁL·vÁÈ©§?Xqðý“§&A0>máäª?³G©ÜBBe µBki1˜D=F+DÃ2Éí°™Õ RÄÐô] uuADÁ©<8CôQa6YŒ cÚIàTA’SY Á¿™¹?FåŽWX×qnþ_š¸¿ªã•pxïŸÌß`F2kõœd×A-bYz~ó&Ù·±¥¾V—û­hÔóët²% ƒäâHïžùîƒ^Æ9Ó? )Ú½#Ýd÷¨–—<×é§ïÉ6vâ{.ýèBYí,OÍ–úCxtÙjö¥üY'Ø,Ä,˜ƒ(ÔO f(ÆAЖâ Å +Ý.„ü±–dp-Pt÷¿¦JG ‚F?µÁ5ðÞ)Y••ÞYô»÷Žï•!—X³Ð>ó+Tša¾ýÚCïl¯w®Î}“{¸¤nyîßS¦kxN¸Ô±½šæfƽe˜Ï c÷é_Ó¿¤ÂT5Õ–mˆFÄi@qLFPÓªÞ6+É„eA®(9I±`¦B1Hõ£F(bE5JÐk&Üí1£ÄÎœüˆ*nbžÚK2*Í2•L§AÏåi/pœ†[7^þ~c¥‰s§»zvî9T£â"ó¤¤$yù˜LdÃWAZMäWa,Ô>)‡ •Î±ª*rK$˜®²¦ž÷‡Z¢·Â‹ª†7<å& áM®­7{ ç[k·Ì:0÷¥VöêhÕæ`¼ûroãÛ}ÒK3gÎt“ìü}%¨tFGÎäf—¶'V]1x£éÅOScwévdØOE²² §|nÂÅ=jà ‹[¢ó™ˆáÓì Èx¾)D%Ü^,*G#-­¨4Qaá8:^©U·>ã«\¿´bf÷kí=!sHsfýÎ?ì^ßÚ¶zóâþn–ôõíÎö½+_øpkR²¹êMÏ5¸ï7ÉÊ@¬%³Wé‰-ÈÃ)äÁ¾?7›• ’(ˆ¤|xJh5" Û󴚈N0ó &èÀÊ‘Øx2,€…Œ¹¨Ç9Pèdãny‚øðöq¹B$E˜˜p5ˆÁM·áÝßÞbT‹éÎU~Ô^«¾WÔõùÝÍóÚÖVÓ3{Å3N µ~¶æ…x©‘Þ ½yôŒËÅôD¾|Uª;¯Þ +®ðK9xSK†½xiÕ'[›«ý‹ê¹ÂÏ0ò£¦"Ts¶&냕a š¦!|4²àì`IÈÍ„AE »Ž~K£6h$´ŒÃW>>|¸_IœYY “2¦862Äê674d‘XÄ%¹Þ#îØ_Y{öì™Ïr¿t¾ùtù‚ïEJÂsCuÃ_uIMÑÖôºïÜ{"×ùãåM7?¨²;–uUÚÂ%æYÚLdÇ—VwKUÖ¨·ò±‡äSö6Æl5£Æ©¡·W ‹f"Ï+ÐÓbjµŠ'L‰…³ˆÁxíÄÃÓ%'q]^„ÈŸY%+„9À§zòjˆŸ +–:P&Ž|j­™“­³€¨É©§§:+Ö•e³eë*:Ó¢úÀƒììõ­-²—OL¯ŠïÚqŽï½2NV¾>¢M;–‘F>’íhÜÔáé…(šj½Ì,C†ÒTµÚí”AmpCÛ,"T7ÆÕŸ„XŠ®L$ jà ®6,-³šKT”Še$¡]$­†cE­:6 d˜ÎàA–È­WϹa¸6 Üñù¨]¶cB»È¢'_¦ºüŠ2‹°™MôÕ¬¼¥”v™)ÔKŸò›—1=±e¨”).büW,­ÙÈš5a­ÝQ¿´f÷mk;üEßK×{*/ô»N·tËþ‡ðjmê<ÃçûÎ9¶Ï±ãØq|KìÛ'ö±ã8v.¶ãÜ|HŽ›’ëráRJ(d½ BÒ–¶PèZRt ÚµeB ¬Úö£«ºµh›ZT1Æ44mb?ú£Ú*1MªP…6{ϱ „.¿"[QÞ÷{Ÿëy±ãPñªÌlõdïæɦÇ× ï¹2µ0>{î¹.ÕxžTÔ´n|©’«2QÖ&{ã͉ԛû»6Ì =Y3QþhÀ7Máðìį¶Tý•Œ5s;yè‘W&fZfïªRGz'úUdl¼ñùW%eÒ@V=œo&âbXÜ^ÉoU_rØh‹ÄñªJ5é` šÍë::„*PLU¸nWàø"ÍCÑ%–ËÊë°¢P‘Ù-åôUôë¬ÄR']k›QŠUGú\ëLÁœp4N®mÚ³`4Úîi…FF×(w–çéîe¦ÌéÌ–#wôN75UdzÀpÝÜðÓQ‚#üD…è49<„Q…j©cr,¯Ä>`5‡æ Ä…@6/-«]+év“rëÊz)zQÒ«å°×5t§.´¶{[₧¥™ü0m}òèÊv‹©AU]Šö´x…æU¾w1ý1ÚD¿HX7áV§!àB¬ÊÂ*•*TÄ#› Ãuæ²ñFê0°äè¼`ʉiþ>‚Ôoå[Üh)㚺~v¦§2Ñ°‡¹òûÎÙÏZÛ7õ(B^ÿ£xáñ@ƒ®ýŸ‰ÊÊ.ltHòƒkl‰ˆè×­-d¥éJÙ +v1ÆF¥µêp‘Ë€mÈŸÇM¾ïd Ï2àÀ˜È\JÚdF¦Z£rµG¿žÅÊ|òÔú+cû3·}CoîþCúKxô¡ªm¾ÅG_ÉÝÁéÖãë›'®VÝ#6›0ùêAd 2®vÂ!Zò§CÖÜØð¼\Ëg~è„÷ƒ`qžEsZñß÷î(nÂM#bJË`¯C +ä÷ØBxÑ‘¾–†ˆÀ«8k¶® ¡T²M¤:XÌZ-‚ŽŽ€ëÐ|¨Ã¨èC=è{ +Ì yhJn¹+VÐTr!£ ä\ˆïc¥¾Îó0®†¿‹È_pÝ©š s±ÙÏ{Ï4MÇw&@牊fAð7eÙ #´æ¦b EúTÙT¹Å'¶º'C£áöºh:0Ô}òZ]å£33C‹¶.ó|j~uš¡Ý3‰‡H@^õà­ãà1 цš¼¶Þ9Z,TÓ ÖE“àLÍ{£:Z‰ȦÃðÖÈÊ׺¤|ÿGÌÆïÐCˆã÷«›V×$©ÅÃåXuç¼~Àƒ=T ¹oü²ÃözÂA𢭨Ζ´`˜˜šÓÚ zÎHC†sÉh÷‡h—äor˜ ƒÀ)››”GÁØ<˜šøùlüÙÿ¼3öþ k_½õÒÉ—ù‡FÞø†¯óà/¶ž¾y0ñÂ…ñSß¾BžûÓ;ýÞ¾qæà—/KsèÒ—¨)˜#D´I±]Aâ¦0tž¤DM¼®aCáêÁT‚ñJ£šu`³š‰¡ãÅfLó¨ÆŽ+•˜EójÉŒÖäORG1¬<@^ï +ˆ´°ÊÁ zÉ®s^ *>Z<ÃÙÆC»>}úÙè×uƒ?JªÕ‘ÑФ[ïXDÍ.Ôé=úÈÙÓ‰] ƒ:s’Rä¯ðéë&?Ù7š.?é¬Ë<7Rºò^¥TefBŒíøÍÔ©K¡µå)Ã{ÌÊ-RŽ-D~ LBc$ .T¢4êYK1å´#¦Dyäƒj3_,Åî NVŸo@^$`Bê”Ë‚œ°ÍQ³b5ÒZQ–ìÙÀ!Ý×…î¿^Ú9¼ x}«dÕѬµ ¶í|¾ßyx >÷dÍSë3'Ñ[5é‹ÇþØ8Å·ÇM£¿½[0lË­ +4•WÅaS_âÌôîßï«ï$rJ›M«ˆ˜b‘±+$i¶èe +úÜØÉ ¬š5 Èx¥¨"c…rÆ! Ù} «1+y©É­¶ãõœQSåÃ8Wä¯OìfÕ];;‡[–$z‰CWú}æoGŒfÞ^®9yµn†Æà„ ‚D›+/Õ©ÍÑ’¸vœ,€hÑ/·\§&UN¦´ÄB¾%¨@ˆÀï: ´Wçº`µVJ–2„*R/&U;%/£¾4gk,@7ék~wû–#µAûš \jäÆ{ûŽ*¨†×Ç.ïØó»óûÿ¼çøœ–Aî¾þþ½5ë4*Á¦vìèÿɱºîÓÁî‘sm]FŸ8Ý[]PºEàÞ¿ðu›(%šÄ:" BZ¤!1, ” +#2x¬r=U™ +pƒ4Ps°ŠÂóºR¸‡]ZBæ›ÜpD…Ôœzi#h:@·ðå3o«&Û-&d)ÊÜ©Ž‡ÛK7[vNjUþΣƒëœó{ÏoÐL¥ÿÝ™\»¬ÿ¦rCª8'çý5b½)@Š½Þb(Ÿù¨a]léyF‰j qE ±éÍ´$æó¼•^F…:–ÆQ[òB}qŽþK¨¢ Ì}®.£G0u•«~8xdëlD“38~|DœîÎêþ<÷ÔúýɆmOô¡œƒ¥ÏöOF»¾_zrð’=è*I.@ + ŠN‹À–³NVÏjõ4ãäì³ÑP¤ô°ò)4ûSB$ìÀ£*Da™²Q#Ü©Ølh®[þ©‚|ëcMÁc™Ÿ”XÉi¯ï™äÖÚ¢[ãÜ&¡ºOw8&DÑÆ_¥oqdÌÁ#*†) +Ç(Ò[Lÿò/þ>“‹vg'Wì…Û4¢?æ IC5[ÅúY7Ã1Åò˜­k5, ¶Ï臚—ïCµ2Ôš`ä¨aåÈ°©Å°žô O®XRÒ(ø“NÝ j7{Š·k“‰¶Çœ®mma¾Þ÷šÝQS6šùškÔ]¿ænð6¤f¼3É”×£ZÐÐ,N÷¦/~Eež²5K;õŽe.u ŸÀ·=çÉøð3É¥/­¶bkú ×ØÛwïyöö5¢‡/Ô0˜fŒnÖÁCóyÊy—£Ìnµ„fœ6’4òçW†˜bP€ +¥G ¥=ù00I+â(| *-÷ `YE­-¢ûûåZUÆñï{ιçþðîGÛܼλ»ëÝ®×åî®Ûmêr^Äl­1¶5Öº™™š?Ê_—‘ˆT:­F˜„ YcˆÈŠ!QI”RbjI(H»»ëûžs§·»aADøð<ï{Þ÷yŸ÷yžóžsr³ŸÈ¨àûwï,¼¾ÀpÜlË;ëw—e*¶Øó«Qsš’R!j¿ +ìw†=b­x.{¶ªUøW”þ*ÖTæÐs×Ø­•µV‰Õsór1‘±kŠÃá°:ÂôÄïËËéJ³ZT¤µ¦Ê”-LLÙœÒÂÉ™©ÜOq˜ï§ÐcÊbÁ}M.Êl¥ý–³¹¼úÙ|ïÊHeáS bí…Omiœ +æfE2Þy¾úËÙe¾‚ºÅþκº¥™{KN+ÍžŒRÛÝ,¼¸/º¤qC•çh†[{z]ÍîŽÏ•sïe)T07Öße~E««ƒÌÑ¢êU¸»ß«ä W¤È1Ý–)”Hªq0g¤*ûtož{†.`}Öš)&àaÞ2>M!V\QùAÀ£MT„½³ù ᫘.3>€ÂꉱÝ"kÏ»ÖÂ*‹«;ösMw…û… +çË‹D[]8öÃKuº«Ê©õï\Y°q¹º=:œåé-ý¸Ò<(üÝOŠÁUÍ™³ìRŽy”g_›zX\²œ„YÕN›pîUì°§™ >þáºcx$V·z–6Ú Ÿ®Íí°t³Ö_ï´ÏråF­Ø¥auîµ)´2mÂJ¦Ü<ùô‘VÏá´¹»¼3ÛÕ³eÓ¯\wø¦ˆÏ4(a¨È©N¨ºÐV@Z±Ä¿ …·Ü«! +CwÈ’Ÿ¸pueÚ¢ÛPmH¾F{ÇÎØö ª:-ÅgX†Çú{ñhoì„-`ô&\â}=¡K‘T¢O¹ƒõ`#UúêõJ´ˆìVÐE"ªí"Ör¼—målrüBÒEè:ãù Õvé3ì ‡ëäП?š¸hgæ·|5¾Ìzp? +ä-3ñ(÷'_òìýÀlþfúš€‚" vŠ^ŠóɧÀüïç¾æÐÇÀÂõK„k?ÂœÍ{(Í&w€ ÷PÆü†VóëxÔgü‹0åG“øæxÀþWÈÿ¸÷±Öøï““^> +stream +H‰|TkPYî&I'€Æ‘Øiìn†‡(Œ¢" +3¦ +T +*¨ "â+ˆ0$-Ÿ+‚€ + oEEeAD\kGwÕѲֲ|ì;;žf.»µv쯭Ûuêžûø¾ûÓçà˜ÐÃq|îæð°è„ÕþªÝ­:#Πÿ"à·ƒüA)€«“ HŽ–£5Hñ…@,¬~¾¡Q° +m`‡ðÛ–4±úØämº1ð¬fÀ³íη´´Ñ4Iá`†p˜]!|’F~R…´"9̹-²Ò*ðãDàÃ+ž‹kp?Tdÿv@ôtüÉ«ŸùSK_"ÿE!9™It?"EMû[nQÚ³¶3V¥R‰ÜxÉWnóïþæà ÀÓ& +…ÂzÙûKݤáÊÓ +Vþœ_©F§›XöÓßô =’¿_ñ=ò^²² ?îâákšGÏߢn·f¥lÜ—ÂD£9 Ùû±aÃæduA´*ª©&áEñêÝ¡HÆA!àŒ®àû=¸¯æÄÈÄSn"$nä+FNÐAVÛ†¿pãloãu÷#„%¹25MŽ„ö³n`>@%àÊ&irj¡F¿ˆ·\°uS@fÅ©¢Š6ÄÖÖ1:$_ž(yIÁÆ€œ‡¶]d.n[[«¤¨²ìcNüNÇ z.l——@ã­Ë ZÀé'}É}Õ%¶\ r°,ÍY«’„GîðA3ähÁKDCx}ú™WÅ,|Â&¤í×gÑ_õã·†A~ô|umuE‚ÖMùëó‡+™úêSGŽÓ-§Z/R£ç’’7å§î°Ç…³‚~ƒ+Üॠ?¸f£3S•"H  †ëÁ´l)3\Ú óYq…¯ÐRˆ‘½.3 +>¾€¯ãâíIz:ÚÞ>4"ó­D^áˆØضåN6mËÞ(u©[òàÇ ‚>R2Ywùò• m='™ï\ÊÞ.×äæªiÙÓ +.œìkÐffççæ—3©5»š»å­×hi)0ïa6Ä€+Þ ë`!Ÿ‚×ed­µÉr¾ĶwmÇ$O^ýÜäࣀy( +ù±žˆDî×|é9}¡™>l1ïÌËL5ºg'›S¬:뾪"›6r>äX}l¢•)²š+Ò%fÓÞ]Ô¦‚7˜ÛÖŽKW))l?,Àçg"¡ãGÈòîъ׸CÓèæÁÀà˜'‡Ï¶½ + û”¡ˆ¤¾TTÜÀ@$šCÚNÔÙZ)Àž©Ð\°< +9Ú˜%U¶ƒŒ©ùº .²c Æ'ƒÉCäd°Xz¶ +ü¹†ÿ®»r1à~Ã5 HB +yfðâÞÅ×u'Ä 8Ñd‰Òx¹(­1ZÈàÓEƒ”È–#S‰¼È׃ËÍL  +Jx.ðÙðË?2Òw|•ñg#øV2·7"xN~²›°žªµÖQoŸ7ö3½=çÇ&ärÆ’»è‹Û#êRÞkÊ˶2°¹ðÏÚZ¨‰.mÒ†™kŠTW—2ÒO<ðQ a%¸O/âûÆ4ðÑVb¤©$ô,Ó°²nËÉ" ¨ˆýÍ…?š•Œ¯¥ÔKŽˆ‡êï½’?0~—ÚI÷$†ÕxSKåe‰v²YÓd]Ô˜µSŸ(OÊЮ£·ÒR¾;yóÚÑ|Á©WÚÉ¢žç¦$½ý+H>$ÜG3¯3Á™5]ò¶¶†á‰›Åû[éð5¤l<J!ÅüÅÈyþïc€HgþßVœ%×êL*¥²±1–öTáeê0A!8ôÔ¥Ö€V˜ŵ¼ÉÒ×/‡P1ÌŠû€Vù¬Õïɦ;XTß1|vº¦°ˆùZŒ¾´"§ ÈM.K ÿ8Ôær7}˜)N¦Šdõ&P‘«ZÊè¼2ýî|Jgªm¿ÖÛø˜‘~4ƒ'ÂMÎg(½Èe„ïõA-Û ©®²þc÷øÆœÐ9\;Æ&geiR3¦¦‡FnžÚì¡dnõ‡gíêé© P?Ó 5öƒ°Ê„Š^nìü`bzð‰=$³ƒ”d²ÞÄ·X¯8ú9WKÖauàCT£¹¹¾‘ï²µ¶99Wkv¢€šqÜMÁÆÄ…WsÏê« +ù‚ªb­¶ÐÏHzJ4ÎýÜ;'S‹Ê„K$ãÑÏh i9nIÚ§¢—qC˜¸ÆNã:îíd ²›/×7ðm¶fÇ çnÏMòVW{«p ‹ˆz/-µ  ï/f¼ú"ÿËøPÄiìÀ`$B$$úÂ-ÙÄ¢]¡!Øãv¹ 3ƒ‡ °—¼öÚ.ÃÞìLˆÛ•ÿqjrÑôý¹ö¹¬ôA ÀÖÁfñí,M! ‹ß«,da«»xŠ{ +þË`vDüª>\˜šÉ1xÕ·W{:fIÞ§ÂÕÖf²Y¬X:½Î!núZʇ±¹iG²ò»ûô‚±¡¶±IEoÆX,ÃNQ{MÛµZ‘1¯a1 —(ÉÜhià] C“\Ûec]` ŠbÌuUzSwjatÞ/ ËÚNZÒ-iQ*ú ^‚6Xï3ÑCãÛã`µ£³•÷8Øzþw¡öÇÌoÞèó;ÔVÑجjoµõº&*Ä.Þ 4qåÌ{"‡Øwc_j“† 9~“åMÕeª²O/foo9ÇÓˆÑA8z¹D&A¸±Lþ‚¼ÌF$"å,Š¦¢›5=y|ÁÕëe“Ü„ë k‡À Ã&ʨ«4–r'+3øþø'(Ã`3E?! ^RÞÂðâáKå,0ÌSf¹)]íÅKz¾T_~>‡;U2pG€ËHã(øn,¼øÄíénåëI¦Ô¶€HÒ8fœšWÑ_™`' +_Íj“û˜|N{ž‹ì%!N tˆÔ  ‚Ö¥² §ýjHè~D7úd(é"„ÀiöqÈñ¾Ž 9ÛÚ Ùë¼ÖïÀJ U>}þ +†#5TÞ'ç ó²Q Ú¦¤/H²(A¸$I‰D™ÒœDáP©ÛWC~8´ ùóé'þ&Å:P€z(¤+ +…<¿A¶²ÿ +0à%‹€ +endstream +endobj +845 0 obj +<< +/Filter /FlateDecode +/Length 1629 +/Subtype /Type1C +>> +stream +H‰|S}PéßM²»xÒh³l‚YnwϹk?@…ê9ÓcªxêYõPT”4˜‚šÄ$8ËÇ™D¨|…¯ pbå%¨¢gOàjo,ÖÚ2Ö±NÇ^åôît|–{ù£›t:Ó¿º³óÌóüÞ÷ùýž÷}žÇ2 ÇqížÝé™™‹·ÙL:}šÍ²t­å>ÕbÖ‡Wy‘ÅÅ…Í EÈÿCöÛ ŸÓ?þ}Ù©Âd8~*Õb•’sóÂòÕ«W, Ûäˆ]µDX±lÙ²ˆMÖè-9!½Èî0¶ ï›XlV‹Mç0è„5‡  +»`3Ø ¶‚0øŸ’“]0˜y› “sMR¾Í 6ÞpXg;(XÂ+ÿÿ”`2 —°Ól +Gé ´ :³>Qb±DTXŽš6“Áž¸>}G‘Õ ¼#è FLúpl¦Âì-, [‹­ÃÖc›°-ØVì, KÇv`;± Œ–®5š±ÓØC|9Þ$›'û@Ö&»'{*?(¿"ŸUlTt* ŸyGÄé\²oŽÈ½ +±|&m¶œ?eP +Ôð„Dúœp0[MÍ’ÙR“âu&ì¡p¤T¢Ÿ»`-~–Êa¾‹þõgŸß0õè{võšB¼²³­`†sâ°ÔrØ õ ‡(ŧ´¿ ²›„ ï€Ä—à†E^§ªä €(ú|¯†Ä¯^nµHE!Ól<±ì(‘B +h`|Ôx §[úº›ú¢N‘妓†<-Z@)ÿy╘ÿ ¼qòQSþièdˆýúvÛà?v½wâ´ 9üxÛun`ÚÙ•lƇ'\ùª–œöVr°Í¾*À×­iÚPS¯“¥EKþRr×q9+å£&.ô~uW;Z:”ÓÏ ìûe]*»'ã„+GÒJ`üÕ UõìXEGÎvmZ~ÖvÎA*Û\OQÐ]ÇMN«Zaþ ˆ¡SDZí驸¤…MÔ3û ¿a{Á1+÷Iì¾Pw‰î°ø2 +É+± Åhéìäßm¹wùbðbç#é”ê ºµ–2®JW…›3·—°NkðêÇ«x廞Wz…w‡û3rÆ]|¬¼Ýj¼ñøQÿø­öæ'ëù–ï‰3%–êC,bW,D‹QòƒŸÁüþžš3 ¼2èyþb +ÿ’T0æÊE d2þƪÖ^-¼½õáB$_ÞAKÿœ F®Õ6|Æ}M¸ù.#»mß¹¿VðUSÌÕª–[—ÙKÍ™›y%ZßV ;ïÃB|4rxO-#Íl1õ‡™õLîAë¾*^WyÞÜÇœïþM%?hî2pJ´Nš³ÎHÆ°Ô™HC*á‚DµàùOS ƒúY䉣¯J;Ôð%Ùèkô×rݵg›Î²¡S{óx4.á·¨_£¯ZÂ[š;Ø3Ùé< +EpxM?‘l³{Êœ\aiQQiaTú(¯s»;Çb´ñ$ýÀs“@$Y•åß»S«¼)Ék@ærJòš ¡‡Âµ‘ô$\£Zýͧê$‘`S;{±N¯ãј4T·)À÷vëlú#œÄ7äù‚@ÄùλžÃسp¯¤1”®Æ,z˜E‰ï¢u(éN"̹Ä쇄÷¦ÅW¾Í ֯ܘZ¶Z··äÎßo×=ºÂ+© 9¨]ÎsNÕÄÒ Cjˆ…*’þ²Í×â¯ç®5õ·žcëk½5<¨)ŸËí-asõÖŒ£|9Iw»ÿ>œ/Û·+S«Lñ|ãßHo¶ ¢û šž ¶3u\) ±ßÞ½ñü ëµÔŸÕUh׶7Ÿíù´ãxY+Gu<%èÉÀ‘ƒu9lüæ÷“²[wÿ-›¿lkœ hàv€’ Â$HÐ'(d Læpm9û¢çx£çN½š¹SÁèhHŠßbþ-À©× +endstream +endobj +846 0 obj +<< +/Filter /FlateDecode +/Length 3321 +/Subtype /Type1C +>> +stream +H‰|TkTT×¾—™{g;]áf(ÌMæNÕ6ˆÈC*‚ˆA„ 6>Ff`y9¼1 6*30 F@A‚¨ ЀA…bDÅ È#XRBySVlÝÉê…üɯ®³Ö^gŸ½Î·÷þ¾}Žñ0Ç-vïõÛôáîZ®ð×Ä®ÿX‘%×,ö=œ5ç³ï¯£ (çíÛ·¾tü~~§ñ½ßdšb<ç̆ +÷ŒãîG¨d\\ì­—¬Ã²u²–ÙÛÙÙ-[™‡"öˆR˜Ÿ ŒŽ—yÇ„Åjâb5ò¥ÂFæ%[†ˆ—i”ñJMÒÒá/UÉÔñ2¥:A¥ÔÈä\0BÍÝ×(²\¡Œ–kŽÊb—"¿rÃÿO*™:FÆaÉ‚bÔK^`w/“Ç(l9”Øå,a±‰1 µ2ÞÆvGàÞ”8¥ÌY¦P†cÎ-L„c¦¶ +ÃÖàØz#l†mÄ°MæŒaÛøØN Û…a»ùX Ûág1Ì’#Ûùc +ì3¬›Ãð<ü#¹QµÑÏŸÎâ¯ç§ó'ø?ÑÄ@^à‚ Á”P"\/¼&|elk\h<¹bóŠ´í&¸I¨IçÞ¬v®çìš^ŸÍ\ð_Ì$!=#7øœ€ÉÐ=1,9‹‹äÁå=¸!Î'ÙVñÒ-y"ôR„²áT'^Y¼*hNÍkÁoð´âºÒëµuñ×T*Í±ðˆ²¸›ŒèjÛ9’•l +Ú1ª´fc Rw’êA«¶^Ù ÄcÂ@Š²úÙ‚~Ø {ج5­w xÌÇç`¥dÆÿ%’¹ûÄ*J+våUÍUè¹~ÞŒ~»ÚŒìwì4ˆ´}p± }¦0>é=MÍ4V‹“n°Ïms¤³ß»™¤fÆFvÙLP¶Ê´_@y‘f©ðêoÇðÂIP?ç±kÌÀkºÇŽµ² [‹‰¸¼H z±AáXqUQEI½E©SëÕj Š^.´¾œžá°0Éc½¤bô„”£N"§¬2·Ž³¶=NÙŒÃö gÿà’¢8iâN"ù¯íÉ}4ü~~¨y[H%SšJÇŸÔéÒ˜rp% ›i»áaØ à5ãPÊA;,X‰O$êÏc\2<#ƒ‚…>>Ö¢w%hË4€zŒÀ¨ÍÏ‘À3H}$JšI¾éŸiiyniv±^ˆ¬+Ķûß蘢ÜKçó¤wÊš«ïÑÃ÷mlB|·2¢!ªnèýŽ¸œ}L}ÇþTâo‘Šà+uÁ‘XE¢”Ÿ‰)²TDq·¸ öÔÌ¥†ü†¼/…2O‘Vx¨ ›‹Ê3úÙÛýÑɦµßS=ìµiqª*HL#gëÿ‚ xýgìÛ¨f¨º«}ÕS\ìD#%ZÍ­t V£•ðñÈ“¢¢Œx§{Ù[=øÀ8k2Í0ˆÏ|Õšù ¿{]ÓÑÁt|S3FÀUÿÜs_zßß¾½Cïð=ýç`fÜG|®´&·‰ß©µh£žA»Ö®F~ê£Ù¹‰R‘37©¯’9TÞ€kÒØW¤ ¹`l™ÄŽŽ›>\ØNÅ-¬3#å\óˆG¢•h ê¢ã=R?f’©½ Ïb9¾aÐœ‹RqŸpä<'‹¡ñüü9 £ò ×ë7¬…ÜcÁÑ3¢‹ä$ª™©-äÆHïtçÖ E?fi“Ä>yÃ1?0³#Ô'`o * +øºá3cÒœìšmMnwÜ- Í Ž.è&I]Yepù|ƒT§?Ú£è ´@Qð‚°þÉ‘%pZ^é…Ê%ÖàôR‹Ü‘gJÊô×è±”7ßfjnß},iOl¿!­ ó-ÙD{í=ý™œ÷çVæÔÓ/;ÛÛø„¬Š‰7œ;ΈR9Ħ.¸ðôWˆM#ä`f­ªÄæ §Â€üãÂ)ò䵉/NôFÝÝW,Ìô•µ=š”´¿­®’ÖË÷\±¡÷øž9uˆ÷ç^®Êm¤¿×w($nþ!6R{RÀý/sÜ[:<ÁƒÃfìy¶xÖäœ._eÍ»&±Ý?r.<¡B Êì%¼&(UùxaWÁSnþ.~tÙûê¦1ôÚ|š„@N2{ÒÍÔ¥$§ãî'=„:2£/eèø ÌšÛ‘ÐL‚C’«v§…ŽLïLMu…æ¶$låTmÓvF&AÖcušÞœù•Æº˜®Ö54JÀ[01¬üR…IKˆ¿ÔܹÜDÿïÆdОìÕ>ÈXB5{µìxÕÓZS]šCRiüˆOÁIL5ŸÒedž’9æKT^ðð+/uŒè²¶W™Än酣ɦýãP;A¥ÁfTsî‘CúÔ¶ÅõÒ€þ/ð`À2Ûñßh%½%PÅèàÃâ—â°n¿.R: 5âË9†<éÓⶆvúE‹óªñöºÛú„4>N•êòtùù‘,£—Åzñzîw±k5‘Ÿ†Òzö¾}xw«µéW™’n¢ þÀ¥}4²ÿah²šµ‚µ/*(eDµ}Š$Ö­g©âúI¨œ šYË…ýbÔ¨ü-1ô¦VXZ¡MÙ ²œ²ãÁG __—¸JsˆA2³Zß|KÂŽ6.æŠOêÓ3Ó¥T³÷‰ …?mý§áWo¾šîº{ ð“£ÍNûUÿÓÔ…Ót½W”5 weäÞäÞ927§2]×áuš, âd̨㫈S‘¯ñÕÐE¶H)amùPT„¡B¡mŠ™S, Ô¯‰@©›Ä1ãb̹ä函5ñ8Ïsž÷œç9¯†Ç•M@ø( +zf¡~NÈ+ @Rm2X›é§)À¡/Ðj"Ñ´æéZXûðZ£µ“UŠŠ¦i¢éöAX¥çªG%#u½Ož2/Ú¾Œ­âÄF”6 ÃÒ¤æ†öyjšßÄ+%Ô¢v§HOØ +8˜„† Íˆö| þ÷‡.9Ïq†8‰wý¸i_|óét_ªçôŽß`F&¬Žn ¿u„4t“ÔôMC¯á"»uJÔú¢J5«”‰Ãúþ|ÎQ‹ðÎðÝÙ1{ʬ±´ºDM‹Ñ=leá ¸‚µ^jd¼Rº¬Ä×α*IÏË=–ÑšÛy±µíB×YÐv”£©–‚%y¡Àíº½Kr)¶KÆ ›Â¢ÜÈðÀ15íô€“h04ÔZX‡ÕæøïŽÝÆ!»†ÈÆšF£™µ7ô^¾ÂÜíŽ áÐ9ô¾¾OBzi~&[¨V¨³±‹þ(ˆ·íb“²9A j‰¶5©ÕŠxZ|Ónqûh½ ñRq?àðqëÙÁgß f¦c÷Vuy¡Ÿ„-Á¶È°ØÄ„\VOPÎÊÇ¢­oq*4.~¥ ï& ü%„Nþ„ѫף¯Ð†—ëàðƒ÷A|ºá%â8ý.É«¾à¯‘ *> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +849 0 obj +<< +/Filter /FlateDecode +/Length 243 +>> +stream +H‰\PÁjÃ0 ½û+tlÅI–£ Œ®ƒÚeûÇV2ÃbÅ9äï§8¥ƒ l=!½ÇãÉsûÒz—@¾S0&œ·„sXÈ ô8:/Ê +¬3é>åßL: +ÉänN­‚P +ä/çD+žmèñ(äY$çG8|»#Èn‰ñ'ô +h°8°ÐUÇ›žd¦ZË{—Ösþ.>׈På¹Ü͘`qŽÚ i?¢PWê•«èí¿}½³úÁ|kªÚn‹‚ãËŽ/ŒŸÊŒ¹1®w\g½;sSæàaÛ,Dì8§”­n&ÇG1D`ÖöįQ{v1 +endstream +endobj +850 0 obj +<< +/Filter /FlateDecode +/Length 333 +>> +stream +H‰\’ÛŠƒ0†ïó¹Ü^­Õ„‚‹mÁ‹=°î>€MÆ®°Æí…o¿3™Ò… è|9ü“Ÿ™$uslÜ°Èä=L¦…Eöƒ³æé È \'v™´ƒYî³ø7cçE‚âv×O¢,eò›óVùôl§ lDò,„Á]åÓWÝndÒÞ¼ÿÜ"SYUÒB‰^:ÿÚ “(Û6÷‡eÝ¢æïÄçêAfq¾c3f²0ûÎ@èÜD™â¨dyÆQ pöß~–±ìÒ›ï.ˆ2£ÃiŠ¹f®‘÷yd ¢Ìy=§õüÌŒÉË‚µi‹=óYí"c@æ<Šò¨‚¹ ÖÌšøÀ| æ»Ý¥ŽÌGâó‰˜=(ò Ùƒ&:cΈÙ&?š=hò Ùƒ&Z1«X¨{E¨dØYù臹…€­ˆí= ê/ÄO^¢Š>ñ+ÀÀ% í +endstream +endobj +851 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +852 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/A/J/M/T/W/a/d/e/g/i/l/m/n/o/one/p/r/s/six/space/t/two/u/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1114 0 R +/FontName /LUYXJW+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +853 0 obj +<< +/Filter /FlateDecode +/Length 318 +>> +stream +H‰\‘ÛjÃ0 †ïýº\/Jm +!0Òr±Ëö©­tÅ1nz‘·Ÿd•fHôý²KIÝ7̼‡É´8C?8ð:Ý‚A8ãep*ËÁf¾ïâߌW ·ËuƱqý¤Ê’J^ç°ÀӳθRÉ[°w§¯º]AÒÞ¼ÿÁÝ )TXì頗οv#BËÖ¥ü0/kªùS|.!ûL̘ÉâÕwCç.¨Ê”Vå‰V¥ÐÙùl/eçÞ|wA•9‹Ó”‚*·Yd +Äáñn™q!\kÑkÖkÑhÖèðŽYô:ê÷Â{æZ¸f–»4ߥÂGæ“0=¤,ÄgÁ>‹\8gÞo˜ÅCÁ +ñ@›p-·ƒ¦^›[Ôæ8ÚØ_îìàð1}?y *þÔ¯3·™Ï +endstream +endobj +854 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:7989) +/S /GoTo +>> +endobj +855 0 obj +<< +/Filter /FlateDecode +/Length 7029 +/Length1 10158 +>> +stream +H‰ÄVkTSWþν7 á‘@„$ˆÀ„D¢RE@ `•y*‚JÅŠ:v¨-­­V­Uk­ÅÖÚ ¶jÕªhíÔªµÚgê¬5kÖÌZþ™YË5kÆG ³Öëü›œœ³÷9çÛßÞgß³ «À£lÚôŒ¬(ØNÒ|O­´¡Í×Qìªv, àÿÞ°¤Ó¸¸¼ÝÈH—ÞÜ1§Óœöò)$ÿvÎüeÍÖ-õÿB’€˜ú–&_có¦Éó€„/·…ê|ÉGINjiëìz1abÉ üúùí >¨o­Ì$7¶ùº:Ø}Ü’wÓzã_[Óq•CNòi²×ßѾ¸s¸G µ–¹ùŽEM˜Ùu‘äÞ>aüž;­ÝÆþÔ½`A3§8.ÿã1˜2O–èO%ÿ¼ìi8°àL4E‹Fl5bÃn`\pÍ>4É 2¹"D© +U‡…GDj´QѺ}¬aD\üÈ„D£É,&%§XF¥¦YmöôŒLGVvŽ37/ô˜±ãƺŠÜž ÅÞ‰“&—<5ejé´²òŠé•UÕO×ÔÎxf欺gë}³ßÚ¾cWÿGþìØÑã'N:ýÅ™³_~õõ¹ó/\þöÊwsÖ/[¾/Z·jñK=xûc¼¬Ød·ú5|~is×Z4k66_{sÛþùK.jïh[ð ®.E÷¼ç€–WšZ·¾³e÷Î=ïí}÷ƒ±o`P¢Í¿ Ö@¸ß£Iqáуaæc]l£0Í8Æd6†‡ƒÑÜÅ*‚ÚHcÔÚÇŸh\a¯²ì'°ýìnàC˜¢ +„@ B¡¦œ GYÔ@‹(Ú¥C ôˆ…#‡xŒDɪ fˆ” ÉH£Š4XaƒéÈ@&ÈB6ràD.òу±‡ñ(@!\(‚L@1¼˜ˆI˜Œ<…)˜ŠRLCÊQé¨Dªñ4jP‹x31 uxõða6®¡ Ë°ÝXç±’"´ +«±kñÖQ×Ó‰ü½x ðr0¨¯â5lÄëx›°ob ¶bÞÂv¼؉]x»ñ.öà=ìÅûèÇ>|€±á>†„ â >Á§8„Ã8‚ÏpÇpŸãNâ†pgðÎâKü +_á¾Æy\ÀE|ƒKø—qßá×ø ®b>–<ñ-™‹N,¥ôYˆE5mX€êÛÑ&êç åÇÕÍ?ƒÐú˜fžÃb¼B£ÿ·çrʶHÊ7ªü©~ÇðŸèmÎãg +ç„[2½,‘Ke" g*ÜÅq×iÏeÂ;K6Ž“åOˆU?1ÝEì·ÐiöÑ ¯§Sï¡LXJ¶Sôš)?ê(gª)J)·¼dkÝ×øÄ•²dwáÍÇ6Þ ª4Zýh»mˆÜ¦Zà1HöK¼Ç×Z?¡Þm·%^t2NæYâ=½"MH‚莕B¾Zlq«äòƒ¼¥¢8†’7NšT[+ÉD7A0ÑÝ*q¢[R§ÅÚmÆâ– vÛQºeçÜDbP#C 78¾×-JÌçöRÀ\•5’«¾6`Ïn£)ÆCt°ÛÒí¶³v[¡f¨p²@!åé]ñ\‘\ …PD·±‚6ó4·YÁ 甼Õk¦IcÒX¨1º¹M?¸eTÄM‰{î@=ìóÏæœÂ-ºµõ®¦T«ÀuF‘2¦ n.LÏdŠΙSÀåéÃy]t‹áœöç3ë7̲»JÅPUÒTŸ};ö·®¿|?Tî¨:yòb÷òó§ŽЛ =’Ð5tRBèa‚ cQÿF* ðtfÉ‹ÁtÑ*¦h®®Š‰©ªÎZÑ_Y¹¯Ûß·ð޻»Ð1×Ûiß>ÿÿí¦@e/¡(Ô 7¨nPÍp¥f; 3!KŒà£’M>L©cê,G¦)Þ«×iUÞ°&c9ìZÓ¬™,›%púøêRD³Â™•ëÌÉ`&…<àæC]ŸWÀ´ZÞÄs}Ý,""?ɨ1ë#3³*ú/4L.P×ù›‹M#srÇw¿QìȉKŽðÖ´ÎÛÄj$áÆýçÅõ•%–²¤„p™W¼‘Ɇ¤[GªÌú9åÑb¸ç*ÓÞ_ÉâÕNåÛ.\¦Šèrå%Æqj^©¡ B¦V…Xeâø,(Cé “”ºu"±caŒk×+¢e,ü³Z­ÖÌlúÛRÀœštÞâŒÉÎÊÓ…s:M`PÀò²å:³\4§X™9œÉ·Û휊“òÆÕª›âÖίÚ8Ge{ )Û-–í)£«'yí†ø„ÆÜõÒl£š/„.6¿è‡=½%ñý­‚À(-)1‡oËoÿ +ø\åSs3ùR§ƒ/+Éæ¹|F¤™Pº¼¤4ñûߌg‡ ÂÜs—fwÿ¬fÕTiƒ$­ä¢;Ž5&£N %×OŸýø’ÊÓõ®9ŠÝrH©µ›=>_ôÂd&>õtÃ'^<7×èöõ°ç·•¾.½ž``m2P]~e¬ù&fb +MÂm5*嬰€µÛ`—ö6.p"ÓdôÄ`¨ 2ÎtÀ*€VŠc~Fèd–Þ« ÜHw¤©j%dÑÛ›ÑRÛ@<6K'øÀR½l¥ßH˜ h0‚éÛæF óvƒ²'õ‹´Dsd©ØËÓåcõ54ÓöÉ' fSÑòèý\Ì ‘”€¨nþ=×'hSÏ•e¿»Æf¹4—D¾·p&΀òÐ%ÃþÞ·S´²#ÔÑãíŒ~rÅPAR +’ª^4“|n€³Ú­¶$ê»ê{¤*Ê´ Ôkt +M´@U[$ôÅʺ{ÁŽ +†”rgnîŽw†)Ñåï¾3Z}>Þ5l2y…ì ™d tÙïXîâ½’‹ŒMæ{Ï%‡î"w?þ}ëƒWÀÝùß΄¬È¯L=Ë ,,9³΃?/·>hÝ[^úC­xùh¯ÇDᤷå7[¿û×úúu`ø u×Í’'Èiôæ¤á²Oê±èÚÖñ¬‘õÛ)Òj@Ch!à™¸K¤AF õR©?4rÂÐÞTZÁ~ *)kˆÍª ý Å¶œPy#í`4w¡VùÖ{ÔµØØÔ +°ÞW«‘`¿½ÊÊ[Ff¶óyõ xÓ:Ñï7y,æhó¡uB8Ò}¸qýš»÷xÄË…óL´Ñí1eòCûZ‡3#°¬n~I)´u|Ž¨—³óð¤ÃïbY”÷RVVHûu} Ê°Š&Dè ` +¬Eí´œb¼@ m“¢dÅP5ÇžQä>dÁ$Îl€±¥2*ZÕ´iœò(µìêö€ºÎŽ§WLÂO|‡‡øþÑœ…_®ÊÍA°3»º’¥nz&Ò{Û&+'.;”=#¦Á‘;·† ø\´Àˆ÷4&—ž +7Z)j1ºÎ‹.åî¡ådæд• ü-ÖÁ¢£hùþÕGÖ¼ìÝü;¹ŸÜŽÞIÂh¶“½hrõ@’!K+.Á(@"48K䈙µhI*òõ $˜]½:m/gHS/šZT?(sÀ“üÅ©Q&7º'y;Šƒ­ 4òÔì9ÎÉlܸu¨Ú¨û¿}uËÎ+;«óRëŽnv>Ÿ<º|)ïÿÞÚÛÛºâL›êSÉ_~íH~>6²qÐO½* U¼=NµdòOäN¤[ƒØM,/Šz˜ÕO`Œ7IV°Á|µ%ÂԨhpÉãHØhfZ ¥(‚MÛÚµ¶‚Àiɳa›.{Y‚6è5Ô¬Me,¸Ø¦ƒ¡ Æ2í/XÅDF+‰8lÊ„]Ìaw‹j#á{ØøHó´Í§q\ç‰tƒ¤:#Øëx×Áº-’Ói?е2Ø=òßïüàBżÆ)•ßåœã/S‡.yÍ®¨gò+µâ±—Éîá¯}>ÙðÖÇg´“¿I׺³¯gDB¹Jö]ÊŠ{z¬¶ªØ=[ÝS¿Þ`WÃ{ëÛ +qAo P‰±€Ò7?ᙜ庞Ý_òûó¤ãä”;17ô̤0uòÑç}û•Pr¯ÓáyZ÷»;­®Ð=DžØ^s 0îw r3A˜ ‡Èœ a¶]çø'*tQg1fEØŠxŸ žòÄÚ +LÈ=xZÐ +X|âµÙÕ|ïD ¶„`vEµÈÚéÞÞƒpý#¢µÈ1íb¯|@±@3üùOxîv¨[èÎEhk$›}fµ`¾–šë +æåÅûëu¨‹ “§J.ªêÌZîÝùÇšÙfõ¯ÍKÛùÖW¿ÅÝF ˆ•hknÔW§°SÐ Ô„‹‰hYê±9‚T—¯-&p´™MZj¹Û‡ú*ÜÙÑc*$ucKáZÎtLÞúJ¾"QlÖf›œä©wn ´1U˜¹yH3‰Áf ï“òþ†>Q?ŽÈºÚÿø®ж®+|ï}ïé==Ëú~’%Y’­ŸÈÖ¯eÉ’bÙ²c©Ž’8Ž2«FÉìÌ .1mLãÄj3Òáågx^Çâ¥]›Â)ÝÈhJÚ-Ð2²‘0J7J¥t…aÆé!Svî“ì$Lp¹z÷Ý{ßùùÎ9ß1mÕ/Ô¦3½-P±¦»Ç˱ö¿?‡êþ!Èd6èªl é´@ª,zÒ TꘉVSGa‡s3us'ž–¬ì´îlàÆ›V¾[º²VÄŒ)ÜÏLäÚ +r¯z×êÃ+ ®R᧊A î…øÛ?ÚŸò±cYð?WÚ`êxÀì3ݲž5Õ×A¦VÑ$jE+ɱ~ wDAˆ/¸ ²Dª‰mXUÄÈU߬bÆAèήÇÄr'µ©I Ày) y ¥ªÐÌÚè‡Èãµ6Ü`…©ˆŒ›CùΚ×ÜéXæPçš5ß5!‚‚ æÏÏ$ôÓW%+]=Wè4OìSi7d¨¼³€ +%ðÅá`S֑П_tèMGOIÚ&÷™ƒµÕΤ,¢^ÂÃìd­ºs€ÖSÒÊà?2±•Z¹;¨/°hƒ3ƒ%Sh<·C‹õš&&è1‰¡ÇM¾v¦×³`ô iuÔŒ ƒŽ DYú°³$N1\”ò˜itO‡×c³)E3‘7-æ«GVƒI•2QÉ¿Õú½›ú«þÜt¶?Àªå`¤¿ºrÏö”Zí‰ÌäM+M8‰/Bù–”~é´Þë9ñ¬õ`Ëᨙ'˜š:Bƒ*Ú¥†…C|ɼúj‘Er>C’ªãHjÔ4äÄVŽ´›ÕóB;âd|ÄŒ Èú6rpÔÔ³!\¯?´É”9Ák¨I3½í*þä‡ßüíêï~…?qIS»Øᯩìü‰Íâ•O×ígoÿàÎì=’~qRìÑ¿ü¾Å6qT~é:úÑZˆÕÇ £,Î¥\¹…ؽV± ‚¿; µã¥ º“%I¤®z“ˆ™#v"kˆ/ “CE6$¦¬€“:ijƒÞ•"¸nëzì)Å’(D© ‰o¨w0øš1¶‡ þtKàJÀàqjá=¯]·}ã•Ta¡ºÐ?ò†*Ž©žÜtÜÚÕ55^+$šykD%jO2‡"μ&)…ÊÁ\0qàøÐÝs™¢Eo¹Ò<øý¡Ìá]• rÙüh{nÀ‚mD­ÅVŠ¶VIl:°P¶Ñ¶yh†‘„2"FèFq· ãÔ)_£a«çÀ àQv'ëê>Û„Y9Õ¹³î÷—ìÆL_¿GÚbq´íéÙmˆUn\(êâƒøÛcþ¼”Ö\•¶g\ÂM¾”¯}¼#¦&õŽkîї䟀¦4ÊåRÝvÙ¨e±àáÕN +Oo«È ) ðVZ®€¿ÝÙf—%£Z:¤Œ¦€Ðl­ÚfÑî©aÿ'º,Xi4Yu¸=î°(ýÉÓý‹{_Ô·³ÛÙæ?îJ§5îë çg›…,k°ôìÎM¤oMú]íïǧó‹‰fÜÑ·Ëéj ;½Z“äh¶??NVÃßMä¥ÀÞhªÕà°¹íûbƒ¾çY¤)Ð3ûèïd‰­"'Šå:elÁR— èfµ5Ü¢%FÁ³@äÈ‚Á ÎpSg@â4QàõöøÄ%ã|‡’ñ¡¡ +€Ž7¥²ùuå‹þì3Íê{S–Ò}ã¹Äz·ß¨Øû ëG…õ;_.£÷tŽL‚D¥Gël â¤s}±0b¬ X³®8Ž¨%Ÿh9µ;ZÔ?‰cªv:dÎh1rä¥J’D +^% +|ÊI£¥Á»72TÇ&g®'q>Iî-wLˆÌ‹Þˆ;8÷ºU/ÄŠ¥‡G ê—ïhØö¨wð;Ó1aiÑnÞò>0ÔmÎó->^óÊ`íݱýÆpWÚÇB}ûSí£>%& +rŸ²â(“ëŒÙZ ª}¢Gl­PÆšDAÄêö6›ÕÒ"uêa¿XJ<ÝgìðÕ›¿Fc§ÐeÙD{?“zб¥î ^­-lV©ˆ~¹gGÂÛæ}«ÓÉ?7‘飼ãíS\)­V³¿aøhr¹÷Èà¶Ù¿àîÕ„ÄæY6o´iòêÚkx ŸÖVpñE6D—säÍÚå_.cóÙ³¨féZˆYg ‡ëÍ…½nÓ}.3£ÍèÄVÊoX¨ú1ÞíhµÊf¨Â¨i¯/Žëýhˆ’ã +€À=˜*·©šlÃ4w4”"4­a…'“3’eÈkQÇF|îÚg–-—b¿‰¦ºõW.Y¹ôÜá¤ÖlÑ´œµ¯F.ŸÓ¸Ü,¿»T":™AE»îZ_Ì:ìªa…&ãø®¯üüÏÞÀîzƒ¡kzNšÒõ}…ýï¯àOª +°O™¾q‚sÖ$„øk=\äOÖ³á¿?ªžXblpä_è™Esøh†yr—ÑM•€ñšƒõe2ë2šç&° +öºÉ2Jàйܰ¿s‚ùÜuÂsæIxž…Q…ç2s•ñçè +7¡÷ÐbíUÕm´Æ­ "»Šf¸8ªr¿G¶dƒÿ'¸ûÉoÓlgWP‰Ds¼ÞÝWÞϱóÊ<ÏëH£sì]ÿ[Š£üV4Ä~ëPš½ +wÌ¢5¸ËAbh’»W˜OP€¬¡› ã «]ÆÐ$ÜOežfTpNFᙞCĬ #"‹Àgà|—Y‡siØ3g`?ÓözeáL Î&TVT va½( 6@€ÐÈ,~æ[ ß]°Çiò¸óÿ j'åUAîŠ"Ûøfìp Íþ÷>¥Ô¸wdZd—Ð*t:%"`ókT‚ñ:÷ȳ®øºv¥þ›…ÀÇK ?½{šê çËðÝ9wt/Ò{á¾T°iU9¿ +ïÁ×Ôæì-Tjø²Bý©øp|þäÏÀØ«øí>ªP_Ò½Oú’Ί?ÔÔo`ÃQêCåÌe4ɽap/ QÕßà;K°G3üð)èI}©èFu=òyѵœb¢W©}”Aeô‚Þ/ü‡ý²wI( +Ãø£÷vÍRð#Š@*ZlHRpÈ‹CDˆHF8e(!ŠWü@’¢©¥††§¦†ˆhtn¨%jÆfÿ‚–z®÷  5Õ½ü.ÏyÏ{çÜ÷|ðåN,u;ã)ÖÞ6ĵՉáQÇo]Q‘PÔú\Ÿ¹¶Èö96£Ÿ‰îÖZýWÜ…Ê/ó:8æ&£ÿÖCîc¨ÍpÝÃr7ç=¬‡ÀȲÁh °Ýö>yîyÇí¸œM×à“'`ìÆÀslàÝüç¡_a/¨A?dô,ÇÆ+ïØ£M¯µá¼{Ñ9!²Hp³dh™zFh…zQh Y¡§I¶RMuµ ³(mf¾w&´Dû…Ð2õ½Ð +u[höirEj-Ÿó•ÊÙJÅ…©D4KúãéBºš+jªVÈ fB ¨œ9øPBYTøú`îâ7…¢ô‹! ?âHsìiTé_„ƶËúd±Í~ôºò€m~ÒK2ô±Ë¿üų4n Ê žy»KÖö麢ͤz]µpҒ“~ÿ§#Éz +endstream +endobj +856 0 obj +<< +/Filter /FlateDecode +/Length 4491 +/Subtype /Type1C +>> +stream +H‰|UiTTG~î÷ºx¬¡Ÿé÷„dDÒ8" AE¡»hö%nÙºu&nˆ$à”EE”¸`P9.Œ2ãh—cP‡Q'':s_§àÌT£9'¿æÔ9uêÞªúî­{¿{‹$¤fI’Ž ªØ%*Ïè²üŒMl¾Î+L—¥1íâG¤è •–, +D†IÒ‘_ò(¸k Èöæ${w;BJ’Ì‹wée¹éÚouJnÚê¬yº\ ´6½P˜>{¶ß4Óì?>Nü|}}ÇgA¥Ñ¥j…¸²‚Bmv™£ÖåçêòS +µoA••%ŒCùÚm~±IùÞ=!£@Ðf¦kó…¼¹6ßÏ×j„Âü6;% 3íüFLû?¦„Œc Ër2LR\!V)9Œ¢·¢Öåægh ¼}Âã––åj…Y‚F›F$„•„°£Ž ¦ÐÄ'á%%fȉ0šˆ"ˆE'#·“D0Ž2MÄ:b+ÑLôC¤¹‹|l`ÖaöJ,9+•HS¥;¥Ý”35ZHuRct Ý"³“åÉ~/»)—Ë+äÍ'š‡™;Ák† o-Xì±ô°ÔZ¶qêÒ•µññišeñ'5½<ƒŽU%düYæj2”2Ç2(&¡©Ø¨,!¡Ü%PîîF%²£Ñ§Á‡ 6×(=Í$Ô‚­è /`šD¬u[T­—]¿H½zôHLz†Üg„f§%)»Iéèiéãî·¥ÄóÕ¡áah +² uò‘1 å` @‚ XÚÁ=ðF“ÀÏ~¤ó8[Ðy§hˆƒÙo†@ötѵz^/³ó¸åÔåÛŠá¹ß#>0¤ _£lEfTÃ7}/q7Ûr4K£J—×ð±ˆì§íGþt3ga’Z;':úH}.ozø 'á&¸JÄŽàóèÑ-–¡šQúN#rƒfV/{SšOèl:㼃®J©VkÈuÜc PƒôG°%á'𕈹F%‹~¡× —ÔŽoëOpàx)5"<"{Qllc}Ÿ‹hªôÄ@Ù#æ½ýX f_NjçÛW-ªæÖo®­ÞÈ×ÿ“‚´ Z +%@¼ œLOXÞq•ÑÝPWV««žZ¸.*V>?*y*bÈç)bA“ú7°Àù<@äâäÒÌuÊ*úÀàõÛÀí9¤o¬;P#G¡£Ñlxfÿí*¾Q¿wÇ—Êöý‡Os·Úb"3’–ñ˜) A€…Ø·Ltéå¯Ô¤ŸŒçâÓ´ËLŒAƒÒqõåšôN“Z?®fzpTU8ªG€®-±; "û¢?¨Ø^¤¢`´Æ +­¤QêX~ôPQÍ@³]àBÙì9µû»Ý]r=½[½7q¯ú rqbª¶K1#f‚ÄnGA^è#ð·7``+;ú*ïs xÒ|ª‡?ÓÑrá†âùgWç6)17ÄÁ–ã}×72έ<¬<šôÙ.o.4¨b«šO7V¿ï+};wûTîòÄ5™Á|"Hi/mÿnðFî‚ß-Î Ï+«Õoà™Í[ÀNŒ;ò8øKÄã d7g/ß²ŠC“‚ŸŸ¼ü¬.woÞÔÊ·‚UŸÓ0‡CkÐ,ä€>GKÁM…Oþ¸¿¾…g†·…æäxAHLîwöUb8ÑríëÊùa``±ú‡ù½Êž¨Y‘77¬ò‹8?™d ûš L|¢BB fNEÊ:eiq­aÏ„á°Á™³5™ˆkE/Õa¹lGýÇÄ0\•Çð™:š ÆY:„{8<àˆ:•`ƒ*±r/¾áK3÷·5¸„¼tá`4Y´Y¼E“éŠÍºíé²õ‚‰âöú.Øß;·iýI¾ ª!3â€?‡òðå€ +køš;fô/‘Çôg57<ÜÜp÷û¸»”¼wÂÀŽ€—1@ÆxÖ‚ƒØýAï(ÎÔ$v#/š­MÅbðäwÆ £Â<è4§VÐóPaѧ…~¥!ÎUô†GÅCÅ#¡È ­¦×˜¸6™Þ »vÞîø»³žn˜qгyÎ]Tïôh8ò¨åuÓ3gíað0)™~uK€V$ê«e`Výjû°ÒP×>ç[ÿ®yÎàŠöQào À­;‘v3øîöÃÕ–=¨RßAÔ:¡ð±ì±Y9X‰I`…c8ÁL üרbÑ +Ä"O”ŒybŽÚÓ•¨HعguXxee’ÀF"HÚaªÄ"€ áá0u¬ŒL…µm°ÒÔNw÷Fô¬;ˆ½±É Ùýo_´Ý·¯ EXâ3&gÈ{ QK—'ô« ɶþÌ"œî–Q'.Sòòµ€ é¤âš÷©– t=LçFÃ])žz6¦!îÐQÄ?Ž%Qì2ÝW¨ çÅwoÜëa6Ì€Y\®”éq¨ÖÐÙ¥€ ˜˜’Eó>ËÊN꼩3 ¿?ÕÍ?(ݹW,dÈJ¡7NÁÙ—÷¿ºÕ]ÙÚ ¥¹\KÅÙ@¨,ߘo(ÒõéÊ|ÚÞŠÖ¾o+FŒ"›ÝH€Jâj;Õîýàƒý„Ë… œýøv>›zT½<º´Ë3a¶iÁK2‰_›™¸G4@â§ÓD" »ðƒF™Õd1[„kË…6þû‹ŸŠœ= yKX® mzÁpÒh±*Xâ§GÍ­…IˆŽFðãîIsá}Yþ¾/¿JåWFtý$ŽoôŽð—k N‹\s5Pw϶;áD2O¼É$âI澞ón]·ÚjÑÎQ}橤©àê8D#Ò-|°xÜhœŒœ60÷ÇWFðdÒG>d‰ ÷C|žÏ×Û}u=3îþD0a³6u‡˜| ,R‘½Ž¸ ŒMaØýd¸âR8 Œn¢4ë±4¤i’Fƽ<´‘2З•‰õŸñdòÇ^ÄŸLê SnvUµÕ‹æÝ´tJð¦Ï+N§ „¡”CÚ~ø~éÕoÄ{ÅßpŽáÝ7·™/ÄTË´Æœ"ªOߛ¯Kí½/r/ÿÖÙÝs¥>3¹X0˜ôz¼û§xBz|Ý{Q)üq;Ï!ÍCÒ`Ù5Øïþ0ºI·ûw &1ÑØvïn¸xEì0¦7ÆñlØøRøJí„Hu†4Çýúü/QëK·^ƒwÉ6 +"hä}CEÖѳˆW^vžZ§F†²ä/È三Åýà3G|мP5$Xÿ³À ¿øáì8cÍ=‚Æf*ýÚ&ÔXªÎ·ò×Î&®I-NielæòcÅB½µ¦º‰·W%…ˆ¤ÿoc`fÈ ojFAN¦°O³_}@‰ju]µ¥!œ_´}[ºJ‘kv:ä¿Éf¶ +]Ö–ó7ùS%C±žŒYWxDÃÇGd„(Å"šk>ôE> Í‰æø` µRÿ¸ñÖ©fÞÁ¾®±Z¦nîÕ ð0møîßEãpJ×Ü׈Êl[•¢¦²¬ùÊ•œ¼³Bí[ª,#¶dO¦,õ[£_§¹öf—å)Êìœm_lJœ6´n (Ø #àIØñ ÉÂeZ0„Ži(D„IŠÌ§Ã‰\—X°³ ¼°5¿5¯m-¨å,ø`cŠºµ¹xTÅ5;–Ïp,÷¤í°•¸äªµÓÒïx‰‰°$ض^%+ä8³¡½éD²Y¥.ŒBÊéoj{´=q#'“é²-o«&Jï(¸©ÿF=âålÀ8©ŽJçŽT I! $f +–ÒWŸÙªKªmç°kµ)mÊÒ,{€VÐdX°ÏÄlKèíË´YyJí^Œ©­ÒÖhj¶þ_w$øÌANü1y"È@÷?Á¬ë{šÛ¤Z:šÛZäjŠŠŠKêKj‹›*:Vÿ•Ø8áðì;íÙuóâ÷0`Çî¨Aáÿ»¥%¿9­¥ØÔn]Ú¸¾y…Ó÷ ¾ß¿oþìªÎb^ùCBTíû¬ì|Ð"›ئØÀ¶°l•Ù¾³Ïg?´tû‰åsÛ[§Ëýy,slØ—EyÎt’¶õ«J‘IÍ÷ ‘*…•×õÓÔNÿ®9}úôÅÓÙ~§M¿0(T1ý»Xˆ(tc:§Ü‚¤xÎnîï,\ßu¸?NÁÃó}†ÈÏ¢Bñ6¡ +endstream +endobj +857 0 obj +<< +/Filter /FlateDecode +/Length 4634 +/Subtype /Type1C +>> +stream +H‰|TkTSW¾—äÞ… &^„Ü®Ü+jg´hñ…Z«-***ŠFQPS“h”—IJÄGØ¢¼„QÑ*‚T|+ Ta¬¬¯å{¬ºŠã£ZíªU[u߸qfN°]Ó³fµö=ûœ}¾ýíïìsiJéGÑ4ÝeÂôè„™Óߋ˲Z Æxkzï –ù ì¾-Qi9D)K<öÆu¯÷¿ÊÀõ ÀN'ß鬡XšVª‚½4ϱ˜ç¤˜ç´Í#Ó3ÁúÒ/Âg´ÛAR¿ÈÈÈv;@Š6¦b’¦fÙì¦T››6/Ýš‘n5ØMÆ>RtJŠÔa“¬&›Éšé[|ËP²Ø$“žÀd• ds¾…œ·šŒ’Ýj0šR ÖERºoç®ùÿ¤’,iÁ’Ò,>oª,Ú$Cšñ}‚’Þže^ú§iv«Ådëóþè©Ó²2LÒ`Éh2SM¥ö£”†¦BhJ ¨p5ÁPý*ÚŸšD¯QPÑDe*ŽŠ§ìÔnê%ÓtOz$m¦«üT~+üêýþ­°+>Ô2á°Ö¢÷A¶bxxdRqÎô±ïüÎÒŠÊ]ËÊm¶¥K‹¶¼m™•‡c¼ÑÚ)+Õóxø‡×ÂÌdñÊ Ã*2埛òpºµ5à q{õsXí% ±Ùôò,SÈr†üzùú!Zöó(ä˜z¼V¨jt30>ú:ën$?Gaì” “A_¾©ÜÓtàŒ~ûGD£òÃHŒÅqR“ªâ Îz¸[s åVȽ¼z«Xº™u_í/ª ¤eTï±gtLïI‰_m³ê—˜˜Ì='2/ðä>„ÜMl™±S,7ÏÛ8GH[ž»v¹xL ¬%.xU Gèš&¸LXê¼=ù¥öÜ«³bœ%i¦zÒ„äw±‹G?Ž½ Ñ÷1àÃø¹³Rõ¹ìfèü‚´W]¼{gA¹€RÛ^Š]¶ù×Mâɽ§jN .LFé¸ýD"8T¿ÕÞÑ·Ñ·Ñí¢;*…6µò]ÅñŠL |:F4ß'ïÓÞ£ÁÉßA'ãaq7ŠIfqí›(âÝ'³ÕÅߣ}´åð¦ê’:u![bÚh)MjÅOC9kŽ NÖÁ—¦Õ %»Gû¢µ€ÏÝU·æ¨ðãµ²Æ#âþ凎ëÀo gê—úB•V¾Péi¹¤s¯ø[Æ}iZÙ !qVN¶Yt/䋶îZ× <½b‰øxâ”^âŸY£ò«}ñêarWTõ2w_^Pä9תzÙ[O×™+ÎðKLSWNpl8t€ñðP︓ž•K«ÄR³)3±| € ÇLÂÕÙ µž/-«9ðÏqÉÏ\t«[åQÞ9Mž¼£¤ žÕžÿF<}a÷ƒŸuÏS¯'œÐŸšÚç  &±z†èžÏï­/&)?¢?~”'ât 1Å`,(J×sãó]Ðä‚Í>`…ÜMîÈãØ u.¼û& +ž»ð84Á–C®á– *ÚãZCÜp ¶ºp+T´‡²ÜãÏëaKœòU*$PgàsгÙϬɫbJÒFSHá,ÀÄs +—V‹[]ÌæÅ“ËF˜…öÇIH×ô=ž Æ^lµ/üpyÇRüS’ýA=x¾òÕ„€7Šå†²¸½QIèiSƒGÅáÕŠLo”£äÛo”Š[ôßEÂü{é[؈À´°X%‡B Ô1ñ,®ÆʬL‡}Éâ°5ð8‰å†ä»¼Üo‡à™ y9² +ù’3åÐœõ†k3¼ýBÜl2éÂ),öj c´5–¾¶Ø¬8u.»ä¼íbÊ]ì!‡†Ncg’u³pv(‹Á¿àVØ:v{ôÞjÃ! _‡d!\VÔ>Ýs³òÙɱƒ×¿«æ€Ê?77S~uŽ4k£¬qk“ s«ÝÖµ`øúH}nÞÂóƳ ÿ ÃR9œ™ý&ŠðïêtÉm.ß-}áQÀ#o4Ã0 u¸ÍлÀ =È«ÏA(×’à°›…á8´öÀ8 ?¼Ð÷‰ýHäÒÉõtÁU_sÀ¦v•ëÙÏ+÷äíZ¯íj>,î;¸íp‹î¤ãÈ¢ýúóÄíC…)³rVE÷¾¨ì`ÑáÕ¤®Òˆx X˜¶n½Mä¬òL4ÔýòÌ öû5‡ælïUµ5¾Ä¡nfWìþ¬ÙþbÙuË߶© U7wky¨sg5¤‘×jœVÞ_Hžœ“ý‰è¶ðEÛªŠ…—ߺ÷3¹›(±\ì*—Œ.ú7”º‡ªùÅÕ—´Ðýò½'Ïâ›QÑ öª[{]÷uÍeøÓÕÕÔ•F‰17hõj¹cîôÞñ VGe¤EDŠÚJAGä V@+ò”@x„"$X±ž­ÃH^&p¤*Jgj‹-ÖÇÐÖ¥ÈÒÖú]æеæ«]ëþ;ëì}¾ïî³÷wxW;²5LY “FTЈð|ßuíÍ¿/ž‹7ÅøH6ìØí²{oíÙx†ÜŽÕFšyoÅ‘çl !Õ<™ )ù4¿mB<%â™Ö)N®¢ý¿øb `æ×Ëp+"&W ‘ç{ï#¾‹× ø0Ü*!™YÒ{È.a§NO¥Bƒ3h°æB ´ýŠ5÷ñêDw™c1‘õUꃄgè øUF€‹Ž„Ž’ë\O?n¢'ÖQg 8,Ô¡¦ñšÁŠëv‡ Ðûu}1)_$ ãâ¬ãOÎ;òNæVùÖEÅDÁméýÌ{.Ü\q”}a~Úút¯ü¼ ¸.‘>ZÉÍG°ÍNfOM<ðŸqI¢ÓŸŸ}{B¡87e"²7;’>ùæ¿e§fXcv2uC‘…’sÎÎ…­*“Q‡i?#v_°2y£ûXÐØÒYÑNQzzu„D)D!ê•~ˆ/¡lþ]>¾ÜÑj`4%?å+ȇ5"ÊvTUP\ÀDæD‡{ÑaQMC Fÿ²˜%ì¬\¨ RdN#ø¯•’Ãgʦy„ÓÚÏØŸ8L¿ÞðåÏÑÜwwÅï8̪à?‘“O0þAÕGªCL´ˆª5ZM%ó­á–í x×V¢,eCo¸¡›wX¿ÌdT•ªÊ + éߣ×fÅ~zU”Ÿv w7ø›îá)F08¢Ë­rŶÚ$ÐfETï¢Ñ²¥K±Ý/ÿÑءz–¬ú݉۬𭅲qîá"Ô§¶e„tl ÑlWä^Ê¢¥£®0{´ßv¹‘QãÓjÖ :U‹ªý‚„{"ŒœÔŠä*e±‚¡l^™þѾX¸Áãàoþðòn_°5«Q¨³2º  ŒàmâµYà_Ý|n'¨Dêò’r­d( \‘š¿¢Å]€¹o«û´†QŠÔƒyÛhWk°†ÕEwÊ/>ù…ÇÏ–û`ITG¥Fˆ2óî[ø°ÐcŠŒHtNøcí½ÑóµÇŽiQPž—ZžHˆU$'³qqy[$i¾ñC“;…dŠ7ƒ·™[gÊŸnÃçÅIEÔ˜j£@E˜e‘—VÓ‹ÑŒõÈ -|°æ>ìë´5²ê ´dkÈŠ‘5 LNœ õÂ@^/}妮½“5`žLBj¤[mT_`BQ‹(§8ûx.ã›çO#ÁîÇàÀRc@}qÿÅÝž :¦,O-Ï‘ŸàŠö¶á¿ÂÃ:jµðG°)YˆZuÕÉ*æZ]¿í6ý¬e“;‹Z-Ð!_4×} ¡ '•IΑ¦å¥:ª`Gºƒa¤2püÎipx‡…zŒ-“FNJ…Ôó3.¢ŒYF†.«¡QWÛ`×JYò¯7hì¼|X€•ùk¸" Û%E'íA–-xœˆØÎ}å¹² ¥|‘ +“ý»QøÔF|Ú‰p{„µO•‘?u´öoÁ¨{-6B¯©>©eújº/ݤ‡Ûp-—-0 ¬.Óã{j¬×èïÚý‘‹š,pAÛïldhB^Z"“-ÏÉÌKÆÁ7 íô£7EíߓĪÊVô@C¨ãÕ 1Ó|MÝj¡†í¬Ý„N£/«d>¯í·Þ¦Ç§;Ø&?ÜÁ¨M1Áix⤺Šý¤Æ1æ…Õj…WØfë9¥½Ü'zûéÛ0ÿÌûüÀÅm-bOĉÀ©‘ëѼMn.+ßûæüÔ3€ÄÞ€¶eB *ÚÆFP¸ÈçÕDÐ?‡°ž_<‚Í°xà 4ÏcW¼ÿ!{Q#E?¢ u´:"Pb‰iËt-C}S{ÚЂ€?£[ü­wd,v­VBVþžíµ¢Ç8w;×CLë¿&ÆTžXßÖŒ® ô +4g Ú‰–ŒºÀìý]6«!^Δeæ1[ÓvÅmÇ^öü8Ý}y·78_i,V¹„DJÜë ‹SuQCöF×zµ^]Å k-ýƒôéS%ªSìEaéñc¥Çé¿„EfÚ+kUÙ»¥‹Àn8$=ͼ«øÀÂï4ˆdÍ + ýìFï½/£LÞg·Ÿ;ÔÐ-él6 X›r”z¦Ö$¨>r@Cÿ)x§oPǾo’Ø¡”攽’°ƒû}öÅUëÓðk- ƒ®3òÆ­üqî¹Íß?‚ú…áå± GiÍùüÒçN~¢g· +Š”ÙEGèÐ,Ó 7á-#z X!Yšß^`¿NÃx6°P]Ü^ì +‘è‘U˜U(g"d¡áÛèÕ _ýÌ‚!5 ÑöI{/už±›d–æ]A'¡jUÛ%¤wÉ•„)(çM¥ê0ìš” +Ú ᤂ0?_zpÂfGå|”‹Å­0ËÛ²,xí“°§¤Ÿ›mÃÑj˜ð¦Z öÍ.S›ŸB-NغޚËUý8aµÁúú ïQãºcÜpâÔ˜$(ˆÆ—TÑ%·e]] gÄÑÄ*tV¶'7TcÞ‹yÖœ>/8+&WL9¯‚[Ư·ÓlDJôR ®÷44מ«iZ¤&êk“ë“"R|…@[àxB°—ðD³²R³Ó²’1WöùÜÆÌÏÈ;"‹ëйwŸ®˜ÛÒ2\‡ÖëÐÔ”º¼\ùÔ”Pú»f »ð³ç‹®Ü[¼°¹y¦œð¹ÙX…ŸM©-˜š+—Q[X$Ÿž^à UŽì"v¾úé?J¦7š>}úâél¿Ó¦ß›Îª˜þ],ĺ1SnAR<g7÷&®]ÜßD~,0œŠà° +endstream +endobj +858 0 obj +[866 0 R] +endobj +859 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +860 0 obj +<< +/Filter /FlateDecode +/Length 337 +>> +stream +H‰\’ÏŠƒ0ÆïyŠÛC±U›P¡Ø<ìÖÝ°ÉØÖ¢=øö;“)]Ø€æ2óÍÇL’ª>Õ®ŸeòFÓÀ,»ÞÙÓxän½»TÚÞÌSü›¡õ"Áäf™fj×¢(dò—Ó¹:Úñ +k‘¼ ¡w7¹úªšµLš»÷?0€›åV–¥´Ð¡ÐKë_ÛdÓ6µÅû~^6˜óñ¹xi<ïØŒ-L¾5ZwQlq•²¸à*8ûï>Í8íÚ™ï6ˆ"¥àí7䊹">3Ÿ‘³]dÜsæ9gÎ#˜Èû42nÈs†¬XG‘ŽâE1Šué¨=óžX3kbÖW¤¯Ø§"ŸêÄ|"fÏŠ<« 36¡Ð\KS-Í~4ùÑ\WS]}d>Ʀ=ºCíÃ)ËçlÌ=K| +q4‰ÞÁóµøÑKÌ¢Oü +0‘ƒ£. +endstream +endobj +861 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +862 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +863 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M)H`Ùn!‡~д`t’ +cyûŽºl¡‚ÎoœùëŒòsûÔZ€¿ûYu`0V{\æÕ+„GcYY6*\½´ªI:ÆIÜmKÀ©µÃÌ„þAÁ%ø v'=÷¸güÍkôÆŽ°û:w{àÝêÜNhÐ4 q ƒ^¤{•O²C«)nÂv Í_Æçæªä—¹5k\œT襑‰‚Fâ™FÃÐêñǬêõ-=UÌ- +2L3—™ËÈUæ*r¹&¾;%&ÃD}Ÿ˜ ñ%ó…ø!µ\oUÑãÁ­eµzOݦNmÆÅÛ'¸Ù©âd¿ “?à +endstream +endobj +864 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:7991) +/S /GoTo +>> +endobj +865 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:7993) +/S /GoTo +>> +endobj +866 0 obj +<< +/BaseFont /AGNOLS+Wingdings-Regular +/CIDSystemInfo 1115 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1116 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747] 134 [891]] +>> +endobj +867 0 obj +<< +/Filter /FlateDecode +/Length 1789 +/Subtype /Type1C +>> +stream +H‰|T}PSWä=Ùc!>L󜼷®îèÔVØuP>Š%ÁRü@JùÈ"h“ D¤¤•¯>T¾kGA[„²¬ˆtVV»ºëìZ÷>{éξЙýkçÍœ¹¿sßùß9÷Ü‹"|EÑÕ‘AaÁQûÞ‹ÈRÉeQ*åæ0Ó¿Ž%QVÄ7¸¹°kÝÍ?Ýÿ)C«ÀC÷¯Ö®ˆñ@\PôÁ_ƒ•G¹ÈÔ4 íëï¿ÕËi·/Û^ôVŸe»”)“::K­a2Õt˜"Y©:ªT%jÙ:0#ƒ^¦PÓ*Fͨ´Nç/zh¹šfäš4FE'r›©r.^ÅÈh*QÆd&ªÒi¥sç`ÊÿIEË4ÇEÇ(äN­áœj:Q!óæX”ËY’•Ç•œQoñþ4ë(CûÑ2&APîC|$ˆ|„ R‰à!Ñ<$A„\‘$ +i@]QÚîâî¢tyÂóäùðºø?‚žÿÛ‰U`gK{Ù½(g×÷òJù¬ñMÔ’fø@%žá†ýp‚¥³+–ðøå5€ÆÙÛ„sHó­ZP3Z&P6tŽ×âùï6Ìhµ7’ÓÓuÝ·©î®®»Óâþ×Ò¯J:™ˆ*)ùéþÂ|†rDe—ÍmäÌPúï½v…@\­ÿ¢\M  ©Z6p¬TçѲNÍãØÏâ³ Usß‚r‘°íü‘ƒ•Ÿ‘0¾CáNï=óŽ±ÎöS_àÂŒÂCg>Sˆ›ÀBØ µ¿o(®ï €Ø´ÖwòrM‘ÑB ~4ØYWHס7çAël{K¬[ªÁŠ4E +Øw4mìÿøl\H~òki„\š )ÆGÁ8¶y)ƒxÃÔÔ÷äXSt$½ n‚îŽ5ݤJÍueU®sÞËspò;„ðzžÈU1§bÉI}øððèlÎϯ¥„] c˜ÐQy*éB< ƒ zAÿõ#;€»½·ÚÒèéìÄîqN¦Gë‚°‡MàD&ÀSØ9­ül wÁÕp+ܽ±/à¹cä+G·³úœ÷°iÜ|«rð\ïkv@w/¥Âˆj‚ÂÉÝÈw€x +V׎Ëù†jJЖ7|GÁf;Úöœšå±èSâdfBÖ'ä!Yý =eh2ö”Y]Á#øM;Š‡îxCˆ@ø[zp;Xm®¶vJ²À3b÷†ÐÓ$™®žy@v_=žL ^Af¬ÿGÛx_Â`B×r'{˜´[®CõÝhž¬[œb׋j˜½UÑ$Œ„+áèg¢Þïõ1>Üî¸.1ã'ƒ1¸Fžø;òàá‹5 + +<?^YÁ¾!d þn?ÜL€XIv\Í?}‰Xµ¬^÷ (XûŠxžÏX=æ‡oYÒcÀ‡%Zm¶6uU_Ÿ™©R§gÖ¿"áBÞÄêÐ+@áü¬}Ë@òçXLÀŠ8º‡AçÁºÏ‚Ô9á @={@ö²öþì9r>1I_¬/ÒR1° ›ÅoºÉ{ jÔUEYÔØŠý×°òfs«MüÃÞÎhIPIDJ‡®#Ei·Éð½iÅSF\Øsá,?“|:./F +ÿ.ü¿ùiç4ñ<»A.Üêç&‡É¡ÚÔXQS¤§ös)q):°ò¦²«xQÚ¶/DÊìq­°Ëò7,/L.Œ3üBºhcßC;Àµyd è yp#ÜÑ _°|ðxƒM/÷ý®¡òÈÇM;£!=6…$ = ¯ä¾"8m¾9m€ÿ§em_90ëèãïÉ/+KJÊ©ª‡˜©0Ïtš”8–ᬰ«¼«¬½¬Ý•«2¾ <÷ã(h âòFY7;:õh’q¢þæÉÛä⣡Ŕë1-TBƒ¦¾C|½³¥·³%7¯Zb»‹Y²d–ÏÉ AÒb[3¨^eµ†'¤¦FË«.j$Ú0  à +ÜÆ>%´ÅBñ)v? ‹±ÓiF¥R{9~ª¡Ñ\qIRfÇŠ Ù%Ùdzvõ•¦²ÆòfªÇÙgWü‚ƒ®x#ðį ÷çlyôÍ »Ø÷Y=M­ ø0’üDÛÞk5Û*š)çû燀ÍXaºñ˜F ]왽v÷†„»žGs|°ûxù×go°î,¬!šÌVð¾áø^,6”¼{,.M–®:r,-G[P"º\1l¸36úíüíAËmÃá*hSíÏ–çd¼[ŒŸé,ì4Ü9 .Š¹Vo[,Kƒ‡)–Ë +‰5és·_•º½=þÖ“·AÖjÖø‰çy +endstream +endobj +868 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:8485) +/S /GoTo +>> +endobj +869 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:8483) +/S /GoTo +>> +endobj +870 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:8487) +/S /GoTo +>> +endobj +871 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:7990) +/S /GoTo +>> +endobj +872 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:7992) +/S /GoTo +>> +endobj +873 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:7994) +/S /GoTo +>> +endobj +874 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:8486) +/S /GoTo +>> +endobj +875 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:8484) +/S /GoTo +>> +endobj +876 0 obj +<< +/D (BICC_UN_DDR-Module _4.11_online.indd:8488) +/S /GoTo +>> +endobj +877 0 obj +[1117 0 R] +endobj +878 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +879 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 1118 0 R +/FontName /MZMROK+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +880 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +882 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1119 0 R +/FontName /YEJLAM+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +883 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +885 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +887 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +888 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/J/e/n/one/six/space/two/u/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1122 0 R +/FontName /UVMSWU+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +889 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M)H`Ùn!‡~д`t’ +cyûŽºl¡‚ÎoœùëŒòsûÔZ€¿ûYu`0V{\æÕ+„GcYY6*\½´ªI:ÆIÜmKÀ©µÃÌ„þAÁ%ø v'=÷¸güÍkôÆŽ°û:w{àÝêÜNhÐ4 q ƒ^¤{•O²C«)nÂv Í_Æçæªä—¹5k\œT襑‰‚Fâ™FÃÐêñǬêõ-=UÌ- +2L3—™ËÈUæ*r¹&¾;%&ÃD}Ÿ˜ ñ%ó…ø!µ\oUÑãÁ­eµzOݦNmÆÅÛ'¸Ù©âd¿ “?à +endstream +endobj +890 0 obj +[1117 0 R] +endobj +891 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +892 0 obj +<< +/C /Pa3 +/P 202 0 R +/S /Lauftext +>> +endobj +893 0 obj +<< +/K [917 0 R 919 0 R 921 0 R 923 0 R 925 0 R] +/P 202 0 R +/S /L +>> +endobj +894 0 obj +<< +/C /Pa3 +/P 202 0 R +/S /Lauftext +>> +endobj +895 0 obj +<< +/C /Pa2 +/P 202 0 R +/S /Lauftext_1._Abs +>> +endobj +896 0 obj +<< +/C /Pa2 +/P 202 0 R +/S /Lauftext_1._Abs +>> +endobj +897 0 obj +<< +/C /Pa3 +/P 202 0 R +/S /Lauftext +>> +endobj +898 0 obj +<< +/C /Pa8 +/P 202 0 R +/S /Zwischenhead_2 +>> +endobj +899 0 obj +<< +/K [930 0 R 932 0 R 934 0 R] +/P 202 0 R +/S /L +>> +endobj +900 0 obj +<< +/K [948 0 R 950 0 R 952 0 R] +/P 202 0 R +/S /L +>> +endobj +901 0 obj +<< +/K [960 0 R 962 0 R 964 0 R 966 0 R] +/P 202 0 R +/S /L +>> +endobj +902 0 obj +<< +/K [968 0 R 970 0 R 972 0 R] +/P 202 0 R +/S /L +>> +endobj +903 0 obj +<< +/C /Pa3 +/P 202 0 R +/S /Lauftext +>> +endobj +904 0 obj +<< +/K [974 0 R 976 0 R] +/P 202 0 R +/S /L +>> +endobj +905 0 obj +<< +/K [978 0 R 980 0 R 982 0 R 984 0 R 986 0 R 988 0 R 990 0 R] +/P 202 0 R +/S /L +>> +endobj +906 0 obj +<< +/K [992 0 R 994 0 R 996 0 R 998 0 R 1000 0 R 1002 0 R 1004 0 R 1006 0 R 1008 0 R] +/P 202 0 R +/S /L +>> +endobj +907 0 obj +<< +/C /Pa2 +/P 202 0 R +/S /Lauftext_1._Abs +>> +endobj +908 0 obj +<< +/K 928 0 R +/P 204 0 R +/S /Story +>> +endobj +909 0 obj +<< +/K 926 0 R +/P 204 0 R +/S /Story +>> +endobj +910 0 obj +<< +/K 927 0 R +/P 204 0 R +/S /Story +>> +endobj +911 0 obj +<< +/C /Pa14 +/K 1123 0 R +/P 207 0 R +/S /NormalParagraphStyle +>> +endobj +912 0 obj +<< +/C /Pa14 +/K 1124 0 R +/P 209 0 R +/S /NormalParagraphStyle +>> +endobj +913 0 obj +<< +/C /Pa14 +/K 1125 0 R +/P 210 0 R +/S /NormalParagraphStyle +>> +endobj +914 0 obj +<< +/C /Pa2 +/P 211 0 R +/S /Lauftext_1._Abs +>> +endobj +915 0 obj +<< +/K [1093 0 R 1095 0 R 1097 0 R 1099 0 R 1101 0 R 1103 0 R 1105 0 R 1107 0 R 1109 0 R 1111 0 R] +/P 211 0 R +/S /L +>> +endobj +916 0 obj +<< +/K 234 0 R +/P 917 0 R +/S /Lbl +>> +endobj +917 0 obj +<< +/C /Pa4 +/K [916 0 R 235 0 R] +/P 893 0 R +/S /LI +>> +endobj +918 0 obj +<< +/K 237 0 R +/P 919 0 R +/S /Lbl +>> +endobj +919 0 obj +<< +/C /Pa4 +/K [918 0 R 238 0 R] +/P 893 0 R +/S /LI +>> +endobj +920 0 obj +<< +/K 240 0 R +/P 921 0 R +/S /Lbl +>> +endobj +921 0 obj +<< +/C /Pa4 +/K [920 0 R 241 0 R] +/P 893 0 R +/S /LI +>> +endobj +922 0 obj +<< +/K 242 0 R +/P 923 0 R +/S /Lbl +>> +endobj +923 0 obj +<< +/C /Pa4 +/K [922 0 R 243 0 R] +/P 893 0 R +/S /LI +>> +endobj +924 0 obj +<< +/K 244 0 R +/P 925 0 R +/S /Lbl +>> +endobj +925 0 obj +<< +/C /Pa4 +/K [924 0 R 245 0 R] +/P 893 0 R +/S /LI +>> +endobj +926 0 obj +<< +/C /Pa6 +/K [260 0 R 261 0 R 262 0 R] +/P 909 0 R +/S /_No_paragraph_style_ +>> +endobj +927 0 obj +<< +/C /Pa6 +/K [263 0 R 264 0 R 265 0 R] +/P 910 0 R +/S /_No_paragraph_style_ +>> +endobj +928 0 obj +<< +/C /Pa6 +/K 266 0 R +/P 908 0 R +/S /_No_paragraph_style_ +>> +endobj +929 0 obj +<< +/K [358 0 R 357 0 R] +/P 930 0 R +/S /Lbl +>> +endobj +930 0 obj +<< +/C /Pa11 +/K [929 0 R 359 0 R] +/P 899 0 R +/S /LI +>> +endobj +931 0 obj +<< +/K [363 0 R 362 0 R] +/P 932 0 R +/S /Lbl +>> +endobj +932 0 obj +<< +/C /Pa12 +/K [931 0 R 364 0 R] +/P 899 0 R +/S /LI +>> +endobj +933 0 obj +<< +/K [370 0 R 369 0 R] +/P 934 0 R +/S /Lbl +>> +endobj +934 0 obj +<< +/C /Pa13 +/K [933 0 R 371 0 R] +/P 899 0 R +/S /LI +>> +endobj +935 0 obj +<< +/K 381 0 R +/P 1126 0 R +/S /TD +>> +endobj +936 0 obj +<< +/K 382 0 R +/P 1126 0 R +/S /TD +>> +endobj +937 0 obj +<< +/K 384 0 R +/P 1126 0 R +/S /TD +>> +endobj +938 0 obj +<< +/K 385 0 R +/P 1127 0 R +/S /TD +>> +endobj +939 0 obj +<< +/K [386 0 R 1128 0 R 387 0 R 1129 0 R 1130 0 R 388 0 R 1131 0 R 1132 0 R 1133 0 R 389 0 R] +/P 1127 0 R +/S /TD +>> +endobj +940 0 obj +<< +/K [391 0 R 1134 0 R 392 0 R 1135 0 R 393 0 R 1136 0 R 394 0 R] +/P 1127 0 R +/S /TD +>> +endobj +941 0 obj +<< +/K 395 0 R +/P 1137 0 R +/S /TD +>> +endobj +942 0 obj +<< +/K 396 0 R +/P 1137 0 R +/S /TD +>> +endobj +943 0 obj +<< +/K 397 0 R +/P 1137 0 R +/S /TD +>> +endobj +944 0 obj +<< +/K 398 0 R +/P 1138 0 R +/S /TD +>> +endobj +945 0 obj +<< +/K 399 0 R +/P 1138 0 R +/S /TD +>> +endobj +946 0 obj +<< +/K 400 0 R +/P 1138 0 R +/S /TD +>> +endobj +947 0 obj +<< +/K [422 0 R 421 0 R] +/P 948 0 R +/S /Lbl +>> +endobj +948 0 obj +<< +/C /Pa11 +/K [947 0 R 423 0 R] +/P 900 0 R +/S /LI +>> +endobj +949 0 obj +<< +/K [425 0 R 424 0 R] +/P 950 0 R +/S /Lbl +>> +endobj +950 0 obj +<< +/C /Pa12 +/K [949 0 R 426 0 R] +/P 900 0 R +/S /LI +>> +endobj +951 0 obj +<< +/K [429 0 R 428 0 R] +/P 952 0 R +/S /Lbl +>> +endobj +952 0 obj +<< +/C /Pa12 +/K [951 0 R 430 0 R 1139 0 R] +/P 900 0 R +/S /LI +>> +endobj +953 0 obj +<< +/K [432 0 R 431 0 R] +/P 954 0 R +/S /Lbl +>> +endobj +954 0 obj +<< +/C /Pa16 +/K [953 0 R 433 0 R] +/P 1139 0 R +/S /LI +>> +endobj +955 0 obj +<< +/K [435 0 R 434 0 R] +/P 956 0 R +/S /Lbl +>> +endobj +956 0 obj +<< +/C /Pa16 +/K [955 0 R 436 0 R] +/P 1139 0 R +/S /LI +>> +endobj +957 0 obj +<< +/K [439 0 R 438 0 R] +/P 958 0 R +/S /Lbl +>> +endobj +958 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -19.0 +/StartIndent 42.0 +>> +/K [957 0 R 440 0 R] +/P 1139 0 R +/S /LI +>> +endobj +959 0 obj +<< +/K [450 0 R 449 0 R] +/P 960 0 R +/S /Lbl +>> +endobj +960 0 obj +<< +/C /Pa11 +/K [959 0 R 451 0 R] +/P 901 0 R +/S /LI +>> +endobj +961 0 obj +<< +/K [455 0 R 454 0 R] +/P 962 0 R +/S /Lbl +>> +endobj +962 0 obj +<< +/C /Pa12 +/K [961 0 R 456 0 R] +/P 901 0 R +/S /LI +>> +endobj +963 0 obj +<< +/K [459 0 R 458 0 R] +/P 964 0 R +/S /Lbl +>> +endobj +964 0 obj +<< +/C /Pa12 +/K [963 0 R 460 0 R] +/P 901 0 R +/S /LI +>> +endobj +965 0 obj +<< +/K [462 0 R 461 0 R] +/P 966 0 R +/S /Lbl +>> +endobj +966 0 obj +<< +/C /Pa13 +/K [965 0 R 463 0 R] +/P 901 0 R +/S /LI +>> +endobj +967 0 obj +<< +/K [473 0 R 472 0 R] +/P 968 0 R +/S /Lbl +>> +endobj +968 0 obj +<< +/C /Pa11 +/K [967 0 R 474 0 R] +/P 902 0 R +/S /LI +>> +endobj +969 0 obj +<< +/K [476 0 R 475 0 R] +/P 970 0 R +/S /Lbl +>> +endobj +970 0 obj +<< +/C /Pa12 +/K [969 0 R 477 0 R] +/P 902 0 R +/S /LI +>> +endobj +971 0 obj +<< +/K [480 0 R 479 0 R] +/P 972 0 R +/S /Lbl +>> +endobj +972 0 obj +<< +/C /Pa13 +/K [971 0 R 481 0 R] +/P 902 0 R +/S /LI +>> +endobj +973 0 obj +<< +/K [512 0 R 511 0 R] +/P 974 0 R +/S /Lbl +>> +endobj +974 0 obj +<< +/C /Pa11 +/K [973 0 R 514 0 R] +/P 904 0 R +/S /LI +>> +endobj +975 0 obj +<< +/K [516 0 R 515 0 R] +/P 976 0 R +/S /Lbl +>> +endobj +976 0 obj +<< +/C /Pa13 +/K [975 0 R 518 0 R] +/P 904 0 R +/S /LI +>> +endobj +977 0 obj +<< +/K [522 0 R 521 0 R] +/P 978 0 R +/S /Lbl +>> +endobj +978 0 obj +<< +/C /Pa11 +/K [977 0 R 523 0 R] +/P 905 0 R +/S /LI +>> +endobj +979 0 obj +<< +/K [527 0 R 526 0 R] +/P 980 0 R +/S /Lbl +>> +endobj +980 0 obj +<< +/C /Pa12 +/K [979 0 R 528 0 R] +/P 905 0 R +/S /LI +>> +endobj +981 0 obj +<< +/K [530 0 R 529 0 R] +/P 982 0 R +/S /Lbl +>> +endobj +982 0 obj +<< +/C /Pa12 +/K [981 0 R 531 0 R] +/P 905 0 R +/S /LI +>> +endobj +983 0 obj +<< +/K [533 0 R 532 0 R] +/P 984 0 R +/S /Lbl +>> +endobj +984 0 obj +<< +/C /Pa12 +/K [983 0 R 534 0 R] +/P 905 0 R +/S /LI +>> +endobj +985 0 obj +<< +/K [536 0 R 535 0 R] +/P 986 0 R +/S /Lbl +>> +endobj +986 0 obj +<< +/C /Pa12 +/K [985 0 R 537 0 R] +/P 905 0 R +/S /LI +>> +endobj +987 0 obj +<< +/K [539 0 R 538 0 R] +/P 988 0 R +/S /Lbl +>> +endobj +988 0 obj +<< +/C /Pa12 +/K [987 0 R 540 0 R] +/P 905 0 R +/S /LI +>> +endobj +989 0 obj +<< +/K [543 0 R 542 0 R] +/P 990 0 R +/S /Lbl +>> +endobj +990 0 obj +<< +/C /Pa13 +/K [989 0 R 544 0 R] +/P 905 0 R +/S /LI +>> +endobj +991 0 obj +<< +/K [574 0 R 573 0 R] +/P 992 0 R +/S /Lbl +>> +endobj +992 0 obj +<< +/C /Pa11 +/K [991 0 R 575 0 R] +/P 906 0 R +/S /LI +>> +endobj +993 0 obj +<< +/K [577 0 R 576 0 R] +/P 994 0 R +/S /Lbl +>> +endobj +994 0 obj +<< +/C /Pa12 +/K [993 0 R 578 0 R] +/P 906 0 R +/S /LI +>> +endobj +995 0 obj +<< +/K [580 0 R 579 0 R] +/P 996 0 R +/S /Lbl +>> +endobj +996 0 obj +<< +/C /Pa12 +/K [995 0 R 581 0 R] +/P 906 0 R +/S /LI +>> +endobj +997 0 obj +<< +/K [583 0 R 582 0 R] +/P 998 0 R +/S /Lbl +>> +endobj +998 0 obj +<< +/C /Pa12 +/K [997 0 R 584 0 R] +/P 906 0 R +/S /LI +>> +endobj +999 0 obj +<< +/K [586 0 R 585 0 R] +/P 1000 0 R +/S /Lbl +>> +endobj +1000 0 obj +<< +/C /Pa12 +/K [999 0 R 587 0 R] +/P 906 0 R +/S /LI +>> +endobj +1001 0 obj +<< +/K [589 0 R 588 0 R] +/P 1002 0 R +/S /Lbl +>> +endobj +1002 0 obj +<< +/C /Pa12 +/K [1001 0 R 590 0 R] +/P 906 0 R +/S /LI +>> +endobj +1003 0 obj +<< +/K [592 0 R 591 0 R] +/P 1004 0 R +/S /Lbl +>> +endobj +1004 0 obj +<< +/C /Pa12 +/K [1003 0 R 593 0 R] +/P 906 0 R +/S /LI +>> +endobj +1005 0 obj +<< +/K [595 0 R 594 0 R] +/P 1006 0 R +/S /Lbl +>> +endobj +1006 0 obj +<< +/C /Pa12 +/K [1005 0 R 596 0 R] +/P 906 0 R +/S /LI +>> +endobj +1007 0 obj +<< +/K [598 0 R 597 0 R] +/P 1008 0 R +/S /Lbl +>> +endobj +1008 0 obj +<< +/C /Pa13 +/K [1007 0 R 599 0 R] +/P 906 0 R +/S /LI +>> +endobj +1009 0 obj +<< +/K 623 0 R +/P 1140 0 R +/S /TD +>> +endobj +1010 0 obj +<< +/K 624 0 R +/P 1140 0 R +/S /TD +>> +endobj +1011 0 obj +<< +/K 625 0 R +/P 1140 0 R +/S /TD +>> +endobj +1012 0 obj +<< +/K 626 0 R +/P 1141 0 R +/S /TD +>> +endobj +1013 0 obj +<< +/K [629 0 R 628 0 R] +/P 1014 0 R +/S /Lbl +>> +endobj +1014 0 obj +<< +/C /Pa18 +/K [1013 0 R 630 0 R] +/P 1142 0 R +/S /LI +>> +endobj +1015 0 obj +<< +/K [633 0 R 632 0 R] +/P 1016 0 R +/S /Lbl +>> +endobj +1016 0 obj +<< +/C /Pa18 +/K [1015 0 R 634 0 R] +/P 1142 0 R +/S /LI +>> +endobj +1017 0 obj +<< +/K [638 0 R 637 0 R] +/P 1018 0 R +/S /Lbl +>> +endobj +1018 0 obj +<< +/C /Pa18 +/K [1017 0 R 639 0 R] +/P 1142 0 R +/S /LI +>> +endobj +1019 0 obj +<< +/K [642 0 R 641 0 R] +/P 1020 0 R +/S /Lbl +>> +endobj +1020 0 obj +<< +/C /Pa18 +/K [1019 0 R 643 0 R] +/P 1143 0 R +/S /LI +>> +endobj +1021 0 obj +<< +/K [647 0 R 646 0 R] +/P 1022 0 R +/S /Lbl +>> +endobj +1022 0 obj +<< +/C /Pa18 +/K [1021 0 R 648 0 R] +/P 1143 0 R +/S /LI +>> +endobj +1023 0 obj +<< +/K 650 0 R +/P 1144 0 R +/S /TD +>> +endobj +1024 0 obj +<< +/K [652 0 R 651 0 R] +/P 1025 0 R +/S /Lbl +>> +endobj +1025 0 obj +<< +/C /Pa18 +/K [1024 0 R 653 0 R] +/P 1145 0 R +/S /LI +>> +endobj +1026 0 obj +<< +/K [655 0 R 654 0 R] +/P 1027 0 R +/S /Lbl +>> +endobj +1027 0 obj +<< +/C /Pa18 +/K [1026 0 R 656 0 R] +/P 1145 0 R +/S /LI +>> +endobj +1028 0 obj +<< +/K [659 0 R 658 0 R] +/P 1029 0 R +/S /Lbl +>> +endobj +1029 0 obj +<< +/C /Pa18 +/K [1028 0 R 660 0 R] +/P 1145 0 R +/S /LI +>> +endobj +1030 0 obj +<< +/K [662 0 R 661 0 R] +/P 1031 0 R +/S /Lbl +>> +endobj +1031 0 obj +<< +/C /Pa18 +/K [1030 0 R 663 0 R] +/P 1145 0 R +/S /LI +>> +endobj +1032 0 obj +<< +/K [665 0 R 664 0 R] +/P 1033 0 R +/S /Lbl +>> +endobj +1033 0 obj +<< +/C /Pa18 +/K [1032 0 R 666 0 R] +/P 1146 0 R +/S /LI +>> +endobj +1034 0 obj +<< +/K [668 0 R 667 0 R] +/P 1035 0 R +/S /Lbl +>> +endobj +1035 0 obj +<< +/C /Pa18 +/K [1034 0 R 669 0 R] +/P 1146 0 R +/S /LI +>> +endobj +1036 0 obj +<< +/K [671 0 R 670 0 R] +/P 1037 0 R +/S /Lbl +>> +endobj +1037 0 obj +<< +/C /Pa18 +/K [1036 0 R 672 0 R] +/P 1146 0 R +/S /LI +>> +endobj +1038 0 obj +<< +/K 674 0 R +/P 1147 0 R +/S /TD +>> +endobj +1039 0 obj +<< +/K [676 0 R 675 0 R] +/P 1040 0 R +/S /Lbl +>> +endobj +1040 0 obj +<< +/C /Pa18 +/K [1039 0 R 677 0 R] +/P 1148 0 R +/S /LI +>> +endobj +1041 0 obj +<< +/K [680 0 R 679 0 R] +/P 1042 0 R +/S /Lbl +>> +endobj +1042 0 obj +<< +/C /Pa18 +/K [1041 0 R 681 0 R] +/P 1148 0 R +/S /LI +>> +endobj +1043 0 obj +<< +/K [684 0 R 683 0 R] +/P 1044 0 R +/S /Lbl +>> +endobj +1044 0 obj +<< +/C /Pa18 +/K [1043 0 R 685 0 R] +/P 1148 0 R +/S /LI +>> +endobj +1045 0 obj +<< +/K [687 0 R 686 0 R] +/P 1046 0 R +/S /Lbl +>> +endobj +1046 0 obj +<< +/C /Pa18 +/K [1045 0 R 688 0 R] +/P 1148 0 R +/S /LI +>> +endobj +1047 0 obj +<< +/K [691 0 R 690 0 R] +/P 1048 0 R +/S /Lbl +>> +endobj +1048 0 obj +<< +/C /Pa18 +/K [1047 0 R 692 0 R] +/P 1148 0 R +/S /LI +>> +endobj +1049 0 obj +<< +/K [694 0 R 693 0 R] +/P 1050 0 R +/S /Lbl +>> +endobj +1050 0 obj +<< +/C /Pa18 +/K [1049 0 R 695 0 R] +/P 1148 0 R +/S /LI +>> +endobj +1051 0 obj +<< +/K [697 0 R 696 0 R] +/P 1149 0 R +/S /Lbl +>> +endobj +1052 0 obj +<< +/K [698 0 R 699 0 R 700 0 R] +/P 1149 0 R +/S /LBody +>> +endobj +1053 0 obj +<< +/K [702 0 R 701 0 R] +/P 1150 0 R +/S /Lbl +>> +endobj +1054 0 obj +<< +/K [703 0 R 704 0 R] +/P 1150 0 R +/S /LBody +>> +endobj +1055 0 obj +<< +/K [706 0 R 705 0 R] +/P 1151 0 R +/S /Lbl +>> +endobj +1056 0 obj +<< +/K [707 0 R 708 0 R 709 0 R 710 0 R] +/P 1151 0 R +/S /LBody +>> +endobj +1057 0 obj +<< +/K [712 0 R 711 0 R] +/P 1152 0 R +/S /Lbl +>> +endobj +1058 0 obj +<< +/K [713 0 R 714 0 R 715 0 R] +/P 1152 0 R +/S /LBody +>> +endobj +1059 0 obj +<< +/K 717 0 R +/P 1153 0 R +/S /TD +>> +endobj +1060 0 obj +<< +/K 718 0 R +/P 1153 0 R +/S /TD +>> +endobj +1061 0 obj +<< +/K 719 0 R +/P 1153 0 R +/S /TD +>> +endobj +1062 0 obj +<< +/K 720 0 R +/P 1154 0 R +/S /TD +>> +endobj +1063 0 obj +<< +/K [722 0 R 721 0 R] +/P 1064 0 R +/S /Lbl +>> +endobj +1064 0 obj +<< +/C /Pa18 +/K [1063 0 R 723 0 R] +/P 1155 0 R +/S /LI +>> +endobj +1065 0 obj +<< +/K [725 0 R 724 0 R] +/P 1066 0 R +/S /Lbl +>> +endobj +1066 0 obj +<< +/C /Pa18 +/K [1065 0 R 726 0 R] +/P 1155 0 R +/S /LI +>> +endobj +1067 0 obj +<< +/K [730 0 R 729 0 R] +/P 1068 0 R +/S /Lbl +>> +endobj +1068 0 obj +<< +/C /Pa18 +/K [1067 0 R 731 0 R] +/P 1155 0 R +/S /LI +>> +endobj +1069 0 obj +<< +/K [733 0 R 732 0 R] +/P 1070 0 R +/S /Lbl +>> +endobj +1070 0 obj +<< +/C /Pa18 +/K [1069 0 R 734 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1071 0 obj +<< +/K [738 0 R 737 0 R] +/P 1072 0 R +/S /Lbl +>> +endobj +1072 0 obj +<< +/C /Pa18 +/K [1071 0 R 739 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1073 0 obj +<< +/K [742 0 R 741 0 R] +/P 1074 0 R +/S /Lbl +>> +endobj +1074 0 obj +<< +/C /Pa18 +/K [1073 0 R 743 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1075 0 obj +<< +/K 745 0 R +/P 1157 0 R +/S /TD +>> +endobj +1076 0 obj +<< +/K [747 0 R 746 0 R] +/P 1077 0 R +/S /Lbl +>> +endobj +1077 0 obj +<< +/C /Pa18 +/K [1076 0 R 748 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1078 0 obj +<< +/K [750 0 R 749 0 R] +/P 1079 0 R +/S /Lbl +>> +endobj +1079 0 obj +<< +/C /Pa18 +/K [1078 0 R 751 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1080 0 obj +<< +/K [753 0 R 752 0 R] +/P 1081 0 R +/S /Lbl +>> +endobj +1081 0 obj +<< +/C /Pa18 +/K [1080 0 R 754 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1082 0 obj +<< +/K [756 0 R 755 0 R] +/P 1083 0 R +/S /Lbl +>> +endobj +1083 0 obj +<< +/C /Pa18 +/K [1082 0 R 757 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1084 0 obj +<< +/K [759 0 R 758 0 R] +/P 1085 0 R +/S /Lbl +>> +endobj +1085 0 obj +<< +/C /Pa18 +/K [1084 0 R 760 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1086 0 obj +<< +/K [762 0 R 761 0 R] +/P 1087 0 R +/S /Lbl +>> +endobj +1087 0 obj +<< +/C /Pa18 +/K [1086 0 R 763 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1088 0 obj +<< +/K [765 0 R 764 0 R] +/P 1089 0 R +/S /Lbl +>> +endobj +1089 0 obj +<< +/C /Pa18 +/K [1088 0 R 766 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1090 0 obj +<< +/K [770 0 R 769 0 R] +/P 1091 0 R +/S /Lbl +>> +endobj +1091 0 obj +<< +/C /Pa18 +/K [1090 0 R 771 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1092 0 obj +<< +/K [776 0 R 775 0 R] +/P 1093 0 R +/S /Lbl +>> +endobj +1093 0 obj +<< +/C /Pa11 +/K [1092 0 R 777 0 R] +/P 915 0 R +/S /LI +>> +endobj +1094 0 obj +<< +/K [779 0 R 778 0 R] +/P 1095 0 R +/S /Lbl +>> +endobj +1095 0 obj +<< +/C /Pa11 +/K [1094 0 R 780 0 R] +/P 915 0 R +/S /LI +>> +endobj +1096 0 obj +<< +/K [782 0 R 781 0 R] +/P 1097 0 R +/S /Lbl +>> +endobj +1097 0 obj +<< +/C /Pa11 +/K [1096 0 R 783 0 R] +/P 915 0 R +/S /LI +>> +endobj +1098 0 obj +<< +/K [785 0 R 784 0 R] +/P 1099 0 R +/S /Lbl +>> +endobj +1099 0 obj +<< +/C /Pa11 +/K [1098 0 R 786 0 R] +/P 915 0 R +/S /LI +>> +endobj +1100 0 obj +<< +/K [788 0 R 787 0 R] +/P 1101 0 R +/S /Lbl +>> +endobj +1101 0 obj +<< +/C /Pa11 +/K [1100 0 R 789 0 R] +/P 915 0 R +/S /LI +>> +endobj +1102 0 obj +<< +/K [791 0 R 790 0 R] +/P 1103 0 R +/S /Lbl +>> +endobj +1103 0 obj +<< +/C /Pa11 +/K [1102 0 R 792 0 R] +/P 915 0 R +/S /LI +>> +endobj +1104 0 obj +<< +/K [795 0 R 794 0 R] +/P 1105 0 R +/S /Lbl +>> +endobj +1105 0 obj +<< +/C /Pa11 +/K [1104 0 R 796 0 R] +/P 915 0 R +/S /LI +>> +endobj +1106 0 obj +<< +/K [798 0 R 797 0 R] +/P 1107 0 R +/S /Lbl +>> +endobj +1107 0 obj +<< +/C /Pa11 +/K [1106 0 R 799 0 R] +/P 915 0 R +/S /LI +>> +endobj +1108 0 obj +<< +/K [803 0 R 802 0 R] +/P 1109 0 R +/S /Lbl +>> +endobj +1109 0 obj +<< +/C /Pa11 +/K [1108 0 R 804 0 R] +/P 915 0 R +/S /LI +>> +endobj +1110 0 obj +<< +/K [808 0 R 807 0 R] +/P 1111 0 R +/S /Lbl +>> +endobj +1111 0 obj +<< +/C /Pa11 +/K [1110 0 R 809 0 R] +/P 915 0 R +/S /LI +>> +endobj +1112 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1113 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1160 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1161 0 R +/FontName /PNANIU+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1114 0 obj +<< +/Filter /FlateDecode +/Length 2280 +/Subtype /Type1C +>> +stream +H‰|UiTÙ®¢»ªq$ÍR)„.RÕƒzTDDQPFFd±±E‘fµècXG\œ\"ˆ3âȸÄ(‹îÑĹ…9'Õxr’_9uêžwï­w¿ï»÷W8&¶Àp—-]ûUPøô©ñ +åªTõŒÕ–øXu¢Òœ•ó ÎËļ“¼ÉI\÷q=íÖðOÛ›Nãâì0 4´X,ìÞ¸)M>ËÛÛÃÕl=Çì\W¹‡»»û˜õ”û)Õ±*yH†&MµE#_–´Aš¬NU¤©”nr¿ÄDùX m“*U®’ã…ý©*¥<-U¡TmQ¤&ÈÕæÌÿ¸qÿJŸ$jÉC“âÍ^HšÔÈIÊ™BõÊõÖ¤´Ôx•Æmæ’5É*ù<¹R‡a¸ð`¶Ø sÆ°éæ†a^6ÃaXŽbX†­c!"ÌQè.¶[…U`—q1ž·ã-Ö[d[|%‰úÄ^âVñoEì'zɉä~r@â+É•tä7ó¯šqÁNjå‹yýȪQ= &ÔJ#_ØOÀ0‰äè + fgôÏ’Q2zl ¾HðIþ2m^!³'ERÝs~Ûs¼l ¬Epdd\½ŠæPDArföÀPÁšE G³8ý ú~½šŽÜU³/éææ]êî`¤•Ú6ŒÎÆ°“HäáSéãoFRšÿŽy‹Ã‹ßfÿU%×› þÕ3¤ìCÀ34ÉÛ?IÉÖ{GN5Õ\gzO|õ'.Ïk±šœ}ýJ¤º!(û—øIB:ØŠø ‘)ôö‚ôüd½ÛNŸ„•!–Kƒ¢'#[òìGVàì3À‰ž]H‘—ÀêÉo;ž€Ó·–¦#ù4wTKÛÙgà˜J +‹Ø³‡ÎU_bîž ]è»&˜“Â*µ2 ¯óÓí*ù§ÔC~„Ðí(„©Gæh‰›CE¶BQ1L_†ù5\ÒPô}ÑYK#Y¤,Ž*½‚æ;Håº÷ü#¡S +s×°‹FãÖ'$%ïÛ—ÎnŸJä½°«–ÙàMø#Ç/CÖ)tWjùk`‰_Ù ùܬH¥Ô“tCߥ|‘6/c‘£žÌ| íÒ<š Uhm&#!Ë¡ªphﯦG#ypnÕÌ£^ƒèœÃ ò54ï­~v¸ÇÑDæ¹:ïõ´”@~~C¤™W¤=Xó?CØûÑ}“` )åÉ|pDŽà„$Z¾& +(yB¹B‡ýß¡“ <+–Þ*¹+(Ý¿¨$ø€o'êtšËÌ‹¦^í" dCZL½Ÿ e¢ òDlßøÝOÍ5ª9£‚t^©X°*üÐÁD6ÙH9ß±ã&s»³¬±…k¹Tyï j$T÷mcƒñ+:Fg2õ;ؘì [¢_ÅíÇõêMË;—ëâ£KY“ Q'“¢=Â)ËJG»6`Ñ°¡†aµ=Ÿ…lF³$Ô?nŽ,¡cÕIª¸cIç.«9ÍÉK©Q0R´[¸_"Òñ°u؃ÍH²!¥ðN¨æüVÖV°ôÓû{'ª[øÄ +ΑeƲ¶¶øDý%æú±uK9T'Ä%e¦rS [Wzâøy¦­zÝ|â p÷¾6Cbî¶d6-;==3Y8Wµkëƒï˜h•†Ó“TÓî»Äç¤IQ"“Þû/¼ „ }hægɲ‚ò½ÅìéÒÚº&æöÑ°Uƒ5œ—€Ûìksæ‡E©´Â5D5îºG ì?ÅnéžÂãAaö|”øÝ4šâÀkzTOxL}s§/Î+.¦9Qh]zõU*èHª½ÌXj,f¯7œicÊ‹ †"Ž*K ÕnÌý¦ ‡ _½i‰†ÛCR5{† 9iŠ)ˆ\&“zç@ïÞŸ½~#õUtzý•ì6è;? pywcgŸ´\q8­ü„ìxUåÅ g³r*Ùª~¢\YÊ Â?ЋË[Ýþb³å mEæfY‚fkhLØÁjVŠ¦æ¾…Ö!¼¬DýüsYÌìD’à’˜£ÿV¾\Ñ¢5;¤7­ž0i®|çKÖŽ†êŽ2é˜êUÇä¿g³ÏoÎïòì|Þ»ƒ¯Ði C€¾Ýñ£ ˜~óÿÞÅVÛQ×Þ —S—%íU¸ÿŽü÷¹@ñMì¿ï„=y´{ﺠ’¡b¢#ëw¶ÎÍ»JñÕOÿQ=ý»öôéÓOgû6ýÊtv PÅôïz`! Ðéœr ’ây8»y¸Ÿs}çç~>•‡çÇ‘í¢ézÕ +endstream +endobj +1115 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1116 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1162 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1163 0 R +/FontName /AGNOLS+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1117 0 obj +<< +/BaseFont /ZNXWOK+Wingdings-Regular +/CIDSystemInfo 1164 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1165 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1118 0 obj +<< +/Filter /FlateDecode +/Length 602 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaC ËbRܺtÐVgÔ1Ý‘™qméÐAHcKÒˆ¹D Âsu +±CIDxHæ1„&É‚߬O¡o¶K§¾Ã÷û½ï÷{G¸ÂŽ”®Kí—k¥Œ®&å]«O(Ãj6$·h)9ÿé N Ð9ìñ(Nítí\ô‡°rðm® ”+ dýk‹6Âüý&=ÕÔÔPçb4§ëhC$Éc”6ËZBÃT† Ú–êÕôMOšŠ¢ÍCC4aP]1=튷¢ªAÕPtšdÍ~•ùuE¦¦ž”•á¤~“jnçÚ÷ŸQTMQ–E¯¥T—%L&4™’Ã,EËOéÕFS¦®*F(Üš¸šQè*+}{Ǹ0á9/»'q&÷šøHÕ“ì‚ó}0<²àÉ:“¹ŽÝI¦ðˆqxä›GŠoDpÉîŒo—ïÊ×GÆygQt+t™µap$›,m{`Ý¡"FA‚¸ó{1xeã%„(/<žMçbcdi®|ó@¨ :|@'6'>ðOÏÏŸ“€Çå?r±zìä±dºæacðŸþ¨~1ߣ^–ŸØ‹ñBfÜvîÛä9x <ÏÅE¬8‡ÕØ…ÝËX(Þø 3Ж€0VWÞ ‰+Ï°¬Å’Ö Úo8U̾\)̦Õ-¶w lÛYa „^¸c9·-¨µ,kÚâñ†õÉò1é–!&ÍYû°ÏZ³Š‚³=Ýþ¢¬¿xmÿv±ã?䌉_†& +endstream +endobj +1119 0 obj +<< +/Filter /FlateDecode +/Length 3278 +/Subtype /Type1C +>> +stream +H‰|T{TgŸÉd&‘ʸ’ÚŒ;ž-V­¨•(ŠøÄG$Ac‘„@yµJÀ G닧UÔÖ.J"„D±jÕU«îZ«[ðQÑ*k]ÜÕ½“~aÏNèÙsúÇž=sÎï~ß½¿ßý¾‹cR †ãx¿¥3>ŽUTo2é5Ú“at¼~í:s`‰àB¨Tø}oFå¿œø%†„+}Àß÷â€àÖŒÀqi{gêªÔé£xZ<¥;iÒ¸Q;¡ÇFR‹ŒŒì±T±ZÃ*qS¦Y·!S5;=Å`2L³N¡ŠMKSõ@dªLºL);0ùkN*}¦J§7¯Ó™Tqq­^ Uänò)5”j¢þ-‹”M—“ËåóäÞ^x¯E½ôzÄ•uÁ;Û{cÉe^á¥í`/Q&J| þ +ÊÑ%M=$<§ +µ2pü»e~jeϦ ѧ„sL`„Úh&ü(Ȉk(˜©<ÞTõÝøâþ›ÕF„åiä´å)~¾xaaê*9šW“™™»1ƒÏ,­Ê>ÂÒh‰/6·q2…ï|zr…þÜ­'é‹SxêÀí¸á%`§o8ƒð°!¨˜G…å/»X}R(€¬è×HÆoÕ2 iF}Ĭf,Øh50Þ¼ƒ§Ê\ÂÝÓ¸ ñÂŒPºc“5»Iˆ†÷ŸÿÞUÞ[ñ±³u®f=yäxËWWYœ˜‹¤“#Ñl4ƒŸ§&7ÈD*pòW6Ð-Ò©éÔŠtrzèäaýréÿ"i?” '¼<_–ò¥ð¥âž æ² +m÷E‘+(TÒ%zÀBV8™C*žlÜwr¯Cn£öê>ÓW&·£¬þôáb—às‰ª¡«ÌF]bÑ|ÍA0‰Œƒàã‹ž¢Üz¾ÒIîË^Zó>‹Ö!BÉh D†AtûõÊêzžþû6§ÐåÄÛÝÂG¢}³­ÅSzNÔ´Ë~ý2åÛcO_)_o¸›tû&1â¨?ÿÓ-Kx÷Zf×®]âÆ´NÔ M-åÑb +Fi펎þ Ì -NØ&„0á†ýàp¢ÇÝQðÚ‰¾†8LѨãP¶/*'°«ÝÅtG¹}Q2úYÙµÕÙ¿®‰*µ7 !nE2¼ +/dŠ4–ÞÙö€³í8×ü‘÷Ã÷`¯Ùä‹JFO(EÕÀSvGrÖÒõ×µJzøª‘+»£(Z#ê~ÕM1|ÕB´‡ºáêªcûéUµ#ª£*öæȽTÁ±B¯ùMÞ]ýÙ¤*¹MvÿØùKÏ”îMMéǹíšñìŠùÛ6¯áÝzfgUý®föí÷šÁãfÎãU=±Ø) '~Ù •nâôI&ãäÍ—X|ûÇŸ»¼ˆhâGØWÛï*[n~©qca5Wí$+ÌË«âYDMš>æz"à:þ¥Î±jªr¢zÁ°‹jŽê8z’(íÄA×B€.´ÅGƒÑéÏKEÿÕâòõh'H[zäóGÈК·qbí ýR8aèrÿHš4e:"†ÅÜ€©œ0RFGXœ[²a¯"œ!/lw+ò…ÐÐm V‡] ód3þ‰øÕIE髹Šud]ý™}§Y v|6j¹²H†Û†ÏB„Rá™Ó4óo÷Zså”"wiFáÙl-.)æ’sW.‹a—®8q dÀU¾)áé]¨ÂrBÚÜð¤E‘½CžòI5Ë~1íûðG0†Dw¡à¨úÞ +IöwŠøk­«ž; õLUùòý܇¿õÜf¿<Ix…õ‹$P·ÜÉæ¬û­û÷)é¡â‰vá®ñþ]b,©y XDLn‡¾@ÞxLkC~á¾ÊAظ¼*EƒÃÂÄ×1ä§aÀßòÖî;ÄÓ%¿ÉØÕ?¸a‚oƒ.Xe®¬ÅY> MØÁ£°Žpê¸èi­ãlb¶å‘d#e­·ž>¥:eÉþL¾µ¨¤Sxb²ç¬Œ+žô +0è{ãÙ›û’æTñå…¶M…JZ]ì‚õvøлÜð—æ‚•±í)Ûs@yk„£±èwcÄ€hàãaÀ=ôÔî­æŠìd¡qmÁ 6<ú2Dðåvæ»=ÍoY2«”§‘Øs„¹vXáĺ è*b2vÄ“ýTÓÞñEÍÖ­¸ +;¹§À¸'MM)LOçµÚ‚y±ÊŒ8Ý-ÿ\]‚tNøÐ)D:,ÿ•¡MˆÌŒâ¥õÒJ9s’Ïb"Éxƒú=Á/œñÔñ¶™4mñPurõçë¹\-i¼2u}q®‘KÏ5gåV¸•,¶žg"Œ9äBnÜS»ÏÅ#˜“ýf™¢ëˆo“•›“•U±ñóºÿYµ1MQX„{«BªáRWzõÞ-Ù$87ÝœSsÓ8%ÃQ(U 8AD>"n) ´vXpÎÑ/ŠPd«®-`åüà#cÓ)?œ#Üæ&[‚#Ó%žë^ì½5dÉÍ}“7yŸçœ“ç<çØ[Ú\\K).åo¸U"«Hù\…Aà\0–ê ¤­âµ„šê' ͧ¬ÌsàÚ-z¼7t‡QIs£ÇyÕðK?èÝæ°è<ßH`; +éHOÉÓbʹŠ£ºÃóLähYŠ½1#kwk"©~ã/„š4kÌyêÙ2¼¤öðÔ¸È:@Úæ»–áÀzf¶ =؆˱1I\Ä` +ƇÿqxÀnÀ’ À3l2­‚^†ÂÑœÕh=Z>½=ƒ…?Á6ˆY=ƒ¢ÙÏñx@Ò5háÆÕ1±›AÄÓ!˜ RÜàhËQH¡ªg;üñRÉxè4“Ê £‡Æ°(Ÿ<„xí½'hẚŤ&ŒSD&iÎ4§%)xµÌÚho°2Ôãû­wf;|ŠJŒCs?Üø±ŒÅímµ*¤èN_Ù¤¢ÆÄܤÃì0Û˜q+?ü}æt½é4Û'9YwüdýIjZÒQ‘Ìcz,&žaNMÛ±k¯ïáác>Ôï’•¹/Wñô_7'ïføâ»Øí_lPøݾÑÀù +½ƒiñÍŹV5ýVò§[•—÷Ý/`Ç +Ý…{©²>Ø—Óì(b¤¨ƒ®ò†ÌBg„¿ehÑûš 4,Q}™ÝVÌ”:;«/Ñm§¾p°u¨/7Ó)Zß( ·`©-V"­¬î­¥9Ž‡O]öànKG×H­Akà˜´²ÕzEÞ½Xp¥#·mR0úëà5»h>Ú†w ?iò˜¼½ +éŠúyA(»O±cØù¢”è%a¯PJ¤’ˆDW ÊSžQ±_—õVÕÍõhyWåRø¨~XXЇ°ëy<åq‰c‚§¡… ÆÎ:¯Û†ñVbMvìmU>Bgåw-ÆU‘ï såJ.­&3c^áúµ#+¡]žI¾‰:ÊvW¦èÕÑ'Èš>] bhtÈ¥¯âCš„u¡M"ÉÖJ¢±Æ\gPLc5S²+?»¤´°0¿¢¤Öž-·4^´yÝßöü>±ð:ü+O!ñr“ËÑçÖ`ÂÚóUÞª‹x½-—¦ƒÞÒ%$†vA‡L#$z%RXÜ垺7.L»C|ÝÓ=BdO(üù| ÞyÑ+ˆÁÿÀ'^tãa10X¯›>Q<›Ë E Uh +ÃM² ÅâZ…ÃJX‹WЈeA¤²&Ý~{2·ËnoIºý[ÓIT–hª³è7Tc““}wž\ª6G ~Ù ƒ?³Ë +endstream +endobj +1120 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nPÒ$¶“iìnÅÆ QŒDÔ„ADÁUÀEf`FDqx©Ã0y8Ès¼D‘e*,Í–kÔµ6µ›Y³©Ý­ÊirMÕö`mÕþÚºÕ§îyÜs¾sú»ÇÜÝ0Çç©·ÆlܹL] ×&§ÆèuË7HNÉt¹‘ÅEÚ]ôõbPªö•/ø¥Xw¼á‡÷&}=|ç`n8þüo›t9ÒÑôŒ<áõkW¸dðŒü8@X¹bÅŠ,„¥êöi„ØCž&Ë Dd§èô9:}rž&5P;p@˜IaôƒFotß´A£ÍËÐè…dÉ™®•Îë5©Bž>9U“•¬Ït.Ïÿ¨iÿ§” Í¤\ÂŽl­K‹Í“Œ!9;5HÊ¢›©’¢ËÏÎÓk5†À Ïcã +r4Â!U“†a¸´°w0l1†}€aáØFû ÇT¶ÃÔ2,Ö KÄ0F*¦Æb0=öûÃûÝ–»“±2ƒ;á¾Ê=Â}RÎÉ5òÄ<"™h(¶‰¯‡pIú ɬîâ‰é˜7'¨Bw +µrøž@aÀ¥¼©!ßI3{E’Nˆ·×¹4 +MRÈ„<á~ NÉ€˜Ñïÿup^¬(\šã—¾Äƒ‚Ýe ˆÀáå'›¨fÊ{ï{É‚ÜÎÝù#ÿ`øÖÌW»‰ß† sƒªbØu¡ÇJ¶ñæ2¶ºf[ Ø35š‡VmAž6þè!«­„§P²Ã8½ÚäÊ-›˜^Íüº"¦W“ÔÏ#œÖÀû’/A%›ð‘6';ˆÑs‡BZø¶5Í;ëM &ŠÎçÿh|tèŽa ©Õ£ši½ï[åÃͽ=\ß®°Ó~쇡奻xGÞ”Û%ö^En—2>UÎí&¨ábX*ú?>‘àjYcê{n|ÁBüwÿWq“èëüêîôÓ—”m·,êàúÀOÞ–´½1„E¡þAh¶ÿ“( Røor;îWj³Œj•ÊáØÇQ}V »nƒ@͹›„Mt¨hñ)?gt*!„ï˜WhýâÏt…™\7"å­Ý·[n±“ù&þ8‰ÖU YÛBI'­ØøÓˆ³ñj/WEСõ{åt«ÔL‰µÄRÊå”ê +rÙ,cS×À5ÇcžúÉ nqà Å4gT ‘ôaØëC;kîËmD\Ï탷X À} +>ça™mÕß‘'•`HÓñp Õ›a‚>m‰²dr=Lm¥´¸Þ“ç{Ù{âU<í\¯MùmºîbWWQSQW§t•]„9Š`¾«n—4Ö`PÑNqÖtƒj,dW~RÓy, @k+yôÃR ÆîžíálR¹•‚ Keb\)“´S‚qˆ1WµsûËu¹él|Zÿ“É _Þë»­­á+K­¥eJª£ã@ý fá]°ü!D&VA$Se¯>ß©6<ÑG(" ù#­ø1ÂÆ¿ªi¿Ëå—üÈž=Çv³QÛÏ\-—ú¦˜®*‡s„kØ©ã©¿ Ìó XóÛn–HݼßÍ ýº|§ÜBôçî;»•EÞþ~(-z¹ ¼œ×›û:y[>ñi|Fdllks§E¾rÃ࣢‡ì7OnŽñwo5¿x©I¿xn¨êäaÌÖÂÅ\N¹!?Ÿõû¯xúõ³+×zÎ3j¹Ê²Ê©U‡Q4›¾†Oqé—ÊÀì#š¥™É¿NÿŽ‰MOOHìÕŒŽ]î»É;+2.DzRøt‚i&vÔTÓ HEPð«tÃø™]¼ØžÒ7K"¥SŠØDÐ/ —´[¾8Å5×4¶÷°ýÍéq@‚oôÓû³ËŠô\nQ¾É¤÷°NcBGûñÞDCœ eãr´Œ°%Ù¶oQRS‚_`±ù-3ii¦7\øú)t“ •§«ë¸ÖÚ¦ö^v mÿvWu•« +«~†Èµ»s 8)ãÒûrôߌÏÍRš %DCDËà¶heÐ'~‹Ð + Är‰Ìý³ôŽ,]üoÈ—#šùòŒ:ü“œ]‰±†±Ç“m“wyJ€MÁ:³é¢éì 8ºò-°18NÚ+ëmu\Ýå3#lëiˉž®ƒõ$]YUTf-d“£ôr]½ž+Ÿ’£@¶϶{½’Š)†w¡¼ñk°á2„É:ÛÓÕñ#Yxüõ+¾âiCt{lk-¬oR¶µÔvõšÏr@É3w4D³ˆY³ù7|Åö+1€i=F*-P.Ñ$E¶5ë8 +ÑÅ°½g PÌy +›éœ§âããh¹¡)¡3‹Ë=½`„ì?Yãàé+0Ÿ´±d÷i¿Ë‚b1$e°Â"H…x»)k÷#¥»œi#º:.öt\’(â§øùÍJ´vœ ³äé³2д\Aµ‹f;,±Ûíív¥Ù'í¤d:h‡À“‡dzj÷äûöxyZ½fƒb¨fƒ—½ÑË nÌk˜ÿ0ÿäÏ× +endstream +endobj +1121 0 obj +<< +/Filter /FlateDecode +/Length 359 +/Subtype /Type1C +>> +stream +H‰|OKQÅgLGJ + #î¢]æ?„r#ˆV–µ-Fç©C:#oÆÈU[A0¨Ålƒ>@Ÿ@Š mëhë¢íßËç¢÷¦M«6‡û»‡{î½²ä÷I²,¯+åƒRic¯ M¯`kó5{m 3Fc2úéjXei6šN§åy^z ÑeÉ'ËïE«Ëçš-Ò¹\&.4ëéV2©TÊÓ,t«† Ú·Ô±a׬[¸kaÍAz +í6x6`d#|!š¿×€a2œ q³iðyŒtp°¦£Ž†ÏÁÎlü³ + xœ˜† ªÃ›6h¦žä)–·¥nõLÈN$wªÇý.‚mÐQC’Ä·û‡t0Ó¯±Ìu}<7ôÓÁwe6PȈ½¨,OnäSaÀžT"`vœ)§^MòŒ³BUQ1AÒŠ\¹ôÒ% ×uï]…5Ü77¸vW; ÏáׅIhr^ü`……¤e +endstream +endobj +1122 0 obj +<< +/Filter /FlateDecode +/Length 998 +/Subtype /Type1C +>> +stream +H‰|PaLe¾ƒö +´¹ +xlé‘»/ fn@aDŒ!2” -t†LX»£-\k a›]²BKšíæB”eFSÜ sŒYƒ‘ˆqa)ƒE#™Qßc‰^ëùýxò>Ïû½Ïû=I¨b’$ 5–JóšôÊÑaµW‰®L³Ðâ°¹ší‘./³¤lPÉ©:çápªjìÉ!5ÜÒÃBâí'á$"†$VK\­Êð‘FÚUP`ʈ`nó3);;;Š¹¨Øî² ÈÜáö-n´×yØ%¶ºD«G°Qqs3ŠZ¸‘(¸Ñÿ}r¸‘àð4 +"²*Í#e^ìÈ#ZíB‹UlB®Hç?´áV!‡)^¨Æéˆ0³GÝÈê´g).®è–î·œÑ!¸YeæêŽV=ìB¡’H$’ˆdb ‘N”û ‘ |"QITƒÄ4©";Èòï˜WbúCÁ)ù×)RÁ´©Ø JlTm(ãÁ{jX£0Â_1!›ïj6©ºh EXá”<ÍD*a4ž ýäöGä(<m …á ÎÈ鸎ǵ¡»8v²µ[@€ê—á]| “ùአ§ãl!§¤¼~ L!ò{®/βôwƒó‘àm,øS@»Á¥QØT8dí-u/EËõë$ü¦ì’ÛSãÁ^ÍÍI5¨ÿXZÊðgéCœV°Ç)ä®äª‡/O~|“½ÿÉë¯ò=y%…8o+Ú³u·†ö¯ÂùHù…|+WllgŽ†|ÁÖ€ñdaÓ~s\yEÝ38Ñ€s`˜€{„qkî]¬ª¨mkhâÔ…•Ù{z!.<<`qþ¦—yÑ6·ÜÍ÷‡¥Óg¸ñ®^ºÎ~µfw¡­úežFþßå%š5òMVèbpü¡¦Rgk_Ÿ;ú¬úÄÅ/ºFY0¬Ü†}¼¼ë5tÿ‰5HZí=r àMˆ‹•Ý 0½g{>4üuR° gàdÌâk;Á47s®ÿ×q_}¬Ávò5¶°ì³Ÿü²jêôÈw?²KƒÅu=<=?ä•·­û}I³J è“ï̦(Õ8õ~èü;g¹OÏŽM²ß^´”òøèᚌ9_?÷‚å Á«DNžèšWc‚ +[CÍzο^î•;}Iß(W«³ ¹Gîd°I ?åçš75Ö²mÓ‹< (ú¸ç,Z~~pcjlˆë¥’ÛûŠÕ@PÝŸwߘ1ÐoKr§é’$}$Q¸Aš—4ŠÔ.1*Å)Ò)ž²Õëâƒ:íj赫gt:ùòÓò)æ1¯Ý• +endstream +endobj +1123 0 obj +<< +/A << +/BBox [113.334 406.563 529.527 737.235] +/O /Layout +>> +/K [1126 0 R 1166 0 R 1127 0 R 1137 0 R 1138 0 R] +/P 911 0 R +/S /Table +>> +endobj +1124 0 obj +<< +/A << +/BBox [85.2614 85.3689 501.454 718.857] +/O /Layout +>> +/K [1140 0 R 1167 0 R 1141 0 R 1144 0 R 1147 0 R] +/P 912 0 R +/S /Table +>> +endobj +1125 0 obj +<< +/A << +/BBox [113.58 157.545 529.772 736.975] +/O /Layout +>> +/K [1153 0 R 1168 0 R 1154 0 R 1157 0 R] +/P 913 0 R +/S /Table +>> +endobj +1126 0 obj +<< +/K [935 0 R 936 0 R 937 0 R] +/P 1123 0 R +/S /TR +>> +endobj +1127 0 obj +<< +/K [938 0 R 939 0 R 940 0 R] +/P 1123 0 R +/S /TR +>> +endobj +1128 0 obj +<< +/C /Pa15 +/P 939 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1129 0 obj +<< +/C /Pa15 +/P 939 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1130 0 obj +<< +/C /Pa15 +/P 939 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1131 0 obj +<< +/C /Pa15 +/P 939 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1132 0 obj +<< +/C /Pa15 +/P 939 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1133 0 obj +<< +/C /Pa15 +/P 939 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1134 0 obj +<< +/C /Pa15 +/P 940 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1135 0 obj +<< +/C /Pa15 +/P 940 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1136 0 obj +<< +/C /Pa15 +/P 940 0 R +/S /Tab._Lauftext_light_ +>> +endobj +1137 0 obj +<< +/K [941 0 R 942 0 R 943 0 R] +/P 1123 0 R +/S /TR +>> +endobj +1138 0 obj +<< +/K [944 0 R 945 0 R 946 0 R] +/P 1123 0 R +/S /TR +>> +endobj +1139 0 obj +<< +/K [954 0 R 956 0 R 958 0 R] +/P 952 0 R +/S /L +>> +endobj +1140 0 obj +<< +/K [1009 0 R 1010 0 R 1011 0 R] +/P 1124 0 R +/S /TR +>> +endobj +1141 0 obj +<< +/K [1012 0 R 1169 0 R 1170 0 R] +/P 1124 0 R +/S /TR +>> +endobj +1142 0 obj +<< +/K [1014 0 R 1016 0 R 1018 0 R] +/P 1169 0 R +/S /L +>> +endobj +1143 0 obj +<< +/K [1020 0 R 1022 0 R] +/P 1170 0 R +/S /L +>> +endobj +1144 0 obj +<< +/K [1023 0 R 1171 0 R 1172 0 R] +/P 1124 0 R +/S /TR +>> +endobj +1145 0 obj +<< +/K [1025 0 R 1027 0 R 1029 0 R 1031 0 R] +/P 1171 0 R +/S /L +>> +endobj +1146 0 obj +<< +/K [1033 0 R 1035 0 R 1037 0 R] +/P 1172 0 R +/S /L +>> +endobj +1147 0 obj +<< +/K [1038 0 R 1173 0 R 1174 0 R] +/P 1124 0 R +/S /TR +>> +endobj +1148 0 obj +<< +/K [1040 0 R 1042 0 R 1044 0 R 1046 0 R 1048 0 R 1050 0 R] +/P 1173 0 R +/S /L +>> +endobj +1149 0 obj +<< +/C /Pa18 +/K [1051 0 R 1052 0 R] +/P 1175 0 R +/S /LI +>> +endobj +1150 0 obj +<< +/C /Pa18 +/K [1053 0 R 1054 0 R] +/P 1175 0 R +/S /LI +>> +endobj +1151 0 obj +<< +/C /Pa18 +/K [1055 0 R 1056 0 R] +/P 1175 0 R +/S /LI +>> +endobj +1152 0 obj +<< +/C /Pa18 +/K [1057 0 R 1058 0 R] +/P 1175 0 R +/S /LI +>> +endobj +1153 0 obj +<< +/K [1059 0 R 1060 0 R 1061 0 R] +/P 1125 0 R +/S /TR +>> +endobj +1154 0 obj +<< +/K [1062 0 R 1176 0 R 1177 0 R] +/P 1125 0 R +/S /TR +>> +endobj +1155 0 obj +<< +/K [1064 0 R 1066 0 R 1068 0 R] +/P 1176 0 R +/S /L +>> +endobj +1156 0 obj +<< +/K [1070 0 R 1072 0 R 1074 0 R] +/P 1177 0 R +/S /L +>> +endobj +1157 0 obj +<< +/K [1075 0 R 1178 0 R 1179 0 R] +/P 1125 0 R +/S /TR +>> +endobj +1158 0 obj +<< +/K [1077 0 R 1079 0 R 1081 0 R 1083 0 R] +/P 1178 0 R +/S /L +>> +endobj +1159 0 obj +<< +/K [1085 0 R 1087 0 R 1089 0 R 1091 0 R] +/P 1179 0 R +/S /L +>> +endobj +1160 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1161 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìVkl×>÷Þyø~`À +w™˜¼~ñcð®ÁF? ¬I »Þ]Û ¶×Ù], 2…X“¨U\¤Phœ4D@ Ǥ…ˆV) ÔRRR¤DJDJ[ÉQŠ#¢B©’&î7³‹iøÁªªÔ9ž™ïœóÝsÏ9÷Î]#¢tê"A%×Ï,½0'ÒÞ‚õgL¾Z|ô(‘>‰H]ÐÔÑÜöÖõ…&Q†‡HÙÐܺµ©÷ÊS5àžÁ½­%è \=tyQÖ)ès[`È“ö ôkÐïki‹m©ZßK”K$ö´†ý¾ÜáÜa"6÷ù6ß–ñˆ6ƒ(÷ ø²Ý×<½lÌÏÁ…*ÎvD‚ÿîþ ðc>±š8ò&Ñ¥€ “Qž©¿Ç”÷(ä‹Óìc¢â¯‡²†hñgx––ÌÊvdç;²]‚¾êâô5©_ÌïR0= u¥:±rEŒï³æd_"ÀþJKæaè ¥·GéýÒKÖ5íÿbËCÿÃb]´Ÿ%®™DI,(Z+ÀÕI¬7&±Žý·ÍÚœJ*´}‘ÄŒJØcIÌi4{&‰ñ±ƒI¬¿“Äð?“XgÄGåÌ’’¹reÈ GÃM1YŽt„#¾X(Ü^$—´¶ÊºPsK,*ë‚Ñ`¤3(ªYµdUÕš‚µ¡öæîha]°ys«/r¯öƒ Ee0k F¤OF‚Í¡h, d,â Û|‘M2lynS›¾=_j—#×´‡b_óÅ‚Qék#@ØžÀÞÜ‹„‚Ñ"IGI¢ï%¹@+)D~ŠP˜¢¸›([P„:짖P;Á³„Z!’ê`k¦ø¢¶Ä;v'ž0kh¸«¨ŠÖP­»ü@ò¥B{L3mF4ÆÝ©Ýëèÿ4ÿßÈzñŽ¡Ví\‰·5ÒòÆl«Õ lu2­ÍŽ¸ ¶ðȘo÷6ÝÓêH;7™ÌF¢²v;·Äüõ@>[‹Ús¶ÃZœÌ |[~h›áµ2 +ÙlkÕñÅê“ÙH¥å‚rŸî¸[o +™ÇÝ®•õRRù5ymX+`/Q©^ÊÌ®»²ÿë×Å»zJ!~æá;ø: Ÿâ„*¥¸¸Ÿ£êáý ÍÂmUÓünÎD'-û,zOýƒ¡Ú–EÔ#Øçð.ƒÏ7³cô°}öû)Ú…ØŸó~~–Ÿµ½‹·Úb$„÷«°[ñvÒ«t™½ Îô,|§é¢5 +‘{ðË{“M‡t³Ù¯•Yó#Î&°{ï¯éCúËee,Î΀“Ãwع$fëçä¢Å’•¬•…Y„íEÌA.øD ó=¼—›ü¬hPÊÔ-G›§·" +\œ½Ù¨ÐŠ¶ +»±òøHÔ„üqVËV³¶Ÿõ"‡slròÅèº%?^%CùDݤ¾ÐÖè‡R4ÄVq¾OÀ>ͧ٨Ê9j‘s€6â·Ã’' O¢—ߧ穗^À ØGoÐo¬9é]¦›èN&Īk{­…4@"l;Û…~tß&O³ƒ¬Ÿ½üÞfïó)¨:!­¨>‘åN~€ŸäoówøŸø ÿ”.H¤Š ¢QDÅaqL¼+ÞU–+½Ê ÊGÊG*SM»S9Z®¶^ë†ìÓSõMú.ýÇú!ýiE4u9QW5Î!?mE%OÒŠÛ«Ö9I¯CèS«Èp²Kd.VÉÖ@Ø:æem,ʶŒTô{™a'QËûØ%ööWö™-7¹ÆÇñ‚‘újx=_Ë7ñýü9~¿‚ÙÏÏðøeÔ8Èo Æt‘#ÆŠÉÂ-*!«Å£b‹Ø)Nˆ³â’ºe()eÊe=j?¯ *Ÿ`%¹*Ô|uŽºÒ¢¶«ÛÕnõgØÑCê–aw%G£-ÔvkÏkýÚ‡ÚWúX}œ>R¤—êõz«Þ©Óõ+)ÇS—¤†R#iN:†_¶_~ãë}»û·|½VLØ%ì†ÇE&XÖywŽgè­©!Þoe§×³éX©?ÒM‘J+”ó´Voþ¼Ù³f––: f<0ýþiù÷SrÊäïNš8á;yãÇÍ““•9zTFzZjŠ®©ŠàŒœn£Ò+Íi^S™f,_^hé†ßm¯‰=ÌÊ;9¦ôÚ4y'³̦o0ËÌò&Ë’‹hQ¡Sº iþÞeÈSl]­øi—Ñ Í!¯´±2ÍVFAq80BºóZ\Òd^é6+;[ân¯ ñúÒÓ*ŒŠ`Z¡“úÒÒÓÌJ££U–1ðJ÷‚>N)£•Ym¸Üf•á²R0E¾Û0kj=n×D‡£¡Ði² +¿Ñh’±ÔÌ,°)TaOcj¦nO#CV9Ô-ûœoÆ÷Ê¢FoAFÀø¾ç1…¯Áš#»À\f¸ÌeÛó +§ØË«=fjÅ)F«=§©z¸«¯ªËåj°fË©ðì¶éãA¿mp¢ˆ»óBÒRãñÝÒì­õÜîuXφ-t®¨ó8µáÞ'­2êÅ FôÑWMŒ±õ;û»;¹ŠÕ7ýÜgö÷›Ý™ÝíΤx?BCæÅiL;žŒÎ,2µÏêÌÁB¦xx&ŠÇù¼»´©uTCñ¯2TWݹë GÔ­’á<^ŸÎȬá{0›L5 fÇ̆Lv<[Ó…W1›íŠFº²™ì`nùàP4Šfg‰ìÞÎL¡K¹å…1Ó‰§w ªÓÊ£áToMyMOšKÓ›nâUšÏs´ùÆѵ•›Q¦rÿ•ž²-iýÃDKÉà-ÙLzWXáÁ²y)IT6N´üUðV1SØn„o?饑nUµS_à!š î Ô'h2p™lïYZT3dËõd*ó 0e‡Á8Ùj‘ìà²}ï0º®±\C3ù6õ©hó5”ë9ï¢Ë݈cžl +Ç0òuÆØÁèúþ+ô\õ#êõ ö%Îqy”!ö(b¯Âµ4éï¥É¹|¿å¹ +pÍþç¯Í_ÇÃ|-ÚÂuK´§.ÂèŸ|¼‰ýVøEî«Åñ[à4l¤#ÆNS8Ƴom%ìGý+ÆâsGÛ{†ûìžg%SÌ¿Õ3t½Ÿî¬#BùÜ5”+ïÚ¶‹Z;üÏuÿjhX(~~›W#èÇóéç{îÞ÷Òv¿-–¯çÉïû+Ee™bþ÷RŠñWhQ£ï±[î€ïÀ{“†½µ4¬º1CÖoæmQŽµàU`&Bi#^áŸ=o•SWªT­Q±žHÎóø\O tÈ•˜a}È:Úff½Ç:Éšbõ²zXݬ8+ÆjgmfmdùYË˱§àïÁMð¸>ÀÇà°Á ˜§Á8Þãàn›ç¸i›u–õëë}ÖqÖ“¬ÖVK²|,‹b1øø\_€ÏÁ"øœóà#p¼ö=-5šÀ+'^ŠõJ뤴ŽIkBZ{¤õ‚´vJkDZÛ¥µMZii¥äj½Š¨µê>u¯ +«:U£ªTHU¨rTJù•¡< +Ï°SíMxýq‘p†)1q~íæDðémŽ/NU‚ÏÄÃN[£ã9âÎhrbyVˆ7FM=™¹HB,N˜y§ÓT×ø÷-\²—Hî»LëÄ’øm—ë>“:Ú¨åF-µÜhXÌ%©%18–¹ŸîÒð_›X5[R³s·în25«(žÞº=ï) ¢?³>¯ ímw;·©>|À¼d˜¦2|ÓË1I¼èTSGS‡NዦSzþ˜O…lª7/‰é|*„ð åŸ aoÖ +endstream +endobj +1162 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +¸ «› +endstream +endobj +1163 0 obj +<< +/Filter /FlateDecode +/Length 3321 +/Length1 6244 +>> +stream +H‰ìV{pTÕÿÎ9÷‘æa€(žåDóD Ù $0$Ѫ»Én²Kw— (u‚ÒtÚ12#…@pn ¶`iÇÒB3£E™Ñ,mgâàXbu*¥#Eú;7k&Xùƒ?:ÎôþöÜû}ßùïqιç.1"J¥^T¼²¾hnÉÉ‘8‘™ë½-=1ùJѾ}л‰ôE­Ým¿ýâ›(í‘öP[ÇúÖ3þ +îQ´w‚ŸÿÜ®3‹ˆ2Ó ß„!ëú”§ »¡ß쌭«Zß +=H$¶t„[|3ŽÌ8BĶ¡èô­ë÷·e¾ìòuž™¼h7¸ hǺ#î•¿»é!¢ÉŽ#o½ú0²7É*K7ßeÚ»ì$w™ôËâûˆ¨è«ÑŒQZò)î%Åó2]™¹®LW¯ K½œ¾"}øË…½Ú0ÂÓAê×kôùð•ýKb)‘`á`¿’âzPè×.zù ‘±69ï(˜{H‡—=‡ô4¢_ðù¤ÁÉüWÍOµ+2PÑ\±ˆVzñØq}ø¸Vúå%•âÑìÿÃÁ@ðêJ£íÄhìšK”å@“5ÈÕ Ù€ÜœMìéGÀ$-šŸ¾LÈŒŠÙƒ ™Óuì©„Œ÷–íLÈä·²ùŸ ÙdÄó÷ɹÅÅ·ÉšPK$ ·ÆdE8ÒŽøb¡pW¡,ïèu¡¶`,*ëÑ@¤'à/,_¶båÝõy«C]m~´hA] mm‡/r­öqƒ Ee  "Ò'#¶P4ˆü2ñù¾H» «ž jë·ç+C]n䪮P ãëc¾X *}]þ"8;ZÂk»b‘P Z(iIÌ{1p¤ +Q E(LQ´VŠÁV)BÝÎÝKR¢§œ:Iu°µauc¥´ž°{p÷ƒYNËh­¤»©žòh5Ø]àûÏ(8cÚh-¼ù0îJíZGÿ§ùÿÎÔ=€g ó j—àJ<ÕHÕs¬j>$d5“~hŽÇvØÂãc¾½·õšVG:¹ÉD6’VA 99¨øõ|ŽubvÁZ”È <¡‚hkÑ«2 +9lµêxcÍ™ìG8Ò“´“ÚI¼ºS¾~’_È4uÖ_媩—’Ê>“Ÿ]6òðQ(1K˜Ý{Uöý:uÕž …5òü>H?Á UB;ÐühÏR?õó¡1ÍC³!UÓY|çb&•}mÀÝMÿ`{野e15£¿l|÷¨}-x2ÇG?þ¨ç÷i|·ø1~Ìé]¿ÕŠ1>¤îü=A¯Ðö8ÒÓè;B§Ô(xîÇ÷ù›ô±Ø(¿V¦âÃO;ØýÈ÷Wôýe³RgGÁÉâ\Æ¢õ‚s8åxQ¨a,Ì"l+|ŽpÁo…×0߸͉&­T6²Œf¼àÀÅÙ›‰ +•·ØÍÀÃã^Çð㬖5° ÛÎÃq6 +|Á ø̺Â3«¥iëíúóÀ°±ÊÜ•dÀ·Žó}öi.ÍGUĨEÎ~Zƒo‡Â£ÀÌåãô Ðnœ€ƒô:ýZŤÓt†.`vÒU×v;[ 4öÛ„ù蛀'ÙN6Ä^G~o²÷ø ¨z ¨~,Ë'ø~ˆ¿Éßâä#üþ¹ ‘,Í"*^ûÅÛâmm¹6 íÖ>Ô>Ô™n;3•ed}À63Ùl77™?6w™?K)¤©¨+uUãj¡õ¨dm¡¸³jƒÀ!z ¦OTÀåD% +·37«d«€&vó²NeëÆ+ÚÃ^b{Ù!Ôòð>;ÍþÌþÂ>up| +ϯï^ÏWóv¾?Ëwò—±#‡øQþ>?ƒGøyÔ˜*²Äd1SxD%Ð îëÄâ 8&N‹Q¬[šv§Vª­Ò@í'´íc¬$×…ž«ßª/‚z—þ˜Þ§ÿ;zT5ÒœYÉ2®7î06ÏCÆÆ%s²9Åœš%f½Ùaö˜ûÍólÒäòäPr$%ŸöãËöóo¼½¯awÿ†?`Ñ4v»áa‘–:ïŽó4³#9ćTvf=›ƒ•ú]Ét—v‚V‹û©Co©æ9ÚË¢ÚFö²¨¤ô¢ÙÃŽ +¯/ê¹ÆcóÉwˆýæzÓkžE¦_ˆ§õ YÈÊõ>¶—/ÁaµôwvžDä¿…NÐVÚÂz(‰ú“°Ix׎óXŸþ¼xUý1v3Vpº>,~@·Òdü‹šC³°×uÊVnÙ‚… æÏ›[R\TXŸwËÍsnš{£5Ë%o˜ùÝÓ§}'gê”ÉÙ×gef¤_7)-5%9É4tMpFù«Ò+íÙ^[›m-_^ t˃o‚Ák㯇]y%Ç–^‡&¯d–Ùú fÙ³lœÉ2äbZ\/=–´ï¶äav_m#ä'ÝV“´G¹Æ‘µÙŽ2 ŠË…Ò“tK›y¥Ç®ì Æ=^7ü ¦¦TX”‚|LI…˜ +É®´ºYe)s^éY4È)i²²«-·Ç®²Ü*[äz|~ûžÚF{ºËÕTo³Š«Ù&k©žçP¨Â c¶é„‘!UõÉÁü7âÛgP³7/Íoù}ßk´…¯IÅÈ̳—Yn{Ù##9ù‡ÙK vrÅaF G¨úrï`U¯Ûݤ¢eU4nvèSAŸúÈÈt÷䄤RãñÍÒ¨mœØëR÷¦&8-È¿«®Ñ…¬-Ï6©Ê¨kt*€S–S„$•M•9VpÀò(‹w´“­¥V0¾Æ‹Åš·©n½ëÕiÕeG.ÿ‰ª=2ÞÐh¹ì%Ó­&Ÿ{Æ`6ÅëÖU•Éª+{ +ò32Çfzðºô„6i¢ïs$‡®$dýõT3•‘U…-bˉL-›ç.T·ÀBŠ·, WÃŒ†0ÞxÆ"µzn†%ãç Á=w¥Å—°¹çI‰j»ü‹õ²‹¢Šâø™ýºw·µ]ú•£²íjcº6¤­Hùh³ÝÚÏypIÕì"I·[ é1¤pÛê(5>I!ˆìÊ´E\ M´Jâƒ!QŒb$A}ÕÄ[ÿwÎîÊV¬>8éowιsgî™Î½…Gù|Ù +‡­†õ¤ˆNÜZ\Y»½¿±ñ±–ñ-CF±8JlÙ€!¯­Uwy<¡v¬ÑíqÞRJŸ§È†pÂr$Uf1Ÿ©~FeFó™ÂáÉç‹öÒ¦Ú’õ…¿rMe×Þ-–V³Fz7çñútç\îGÒ±xýPz\¯O¦'¸5ÝxÓéîP°;LeWFS¡ ?”ž3ŒôHW2ߥìÊâ¸nE&{5 ªÕ£aUvƺ#Á%‡îL4ò*Ííx㥶ŽºÁòm¿H]ÚÿJÏdŽ/+õÃa¢å˜ï¶h"µÆ˯ð`Ñ´#*™ ZùÒw»Éow\„o?©¥‘jU¶S¿÷Qšòí‹Ô/êiÊ{•2Îó´$g)#ê(ã-Ï1È””‘K”ñ]£ŒûFÕuí7ÃÌG¼Mýò$Ú|åZÎÛ¨râÀµ@OÇïfÄkŒk£ê{®Ñ³yä¨×‹Ø8Ç%äuP‚Ø㈽WÓ”§¦òçrÿ–ã:À5{žC¼:w |-ÞÚÂu ´'/ÃèŸx¼‰ýøî«ÃñmðZð…é˜ c§ÈŸ ãÙ¿ŠÖ"¡Î¡Ucñ?ƒ¹cÆyŽûlŸg5ÓÌ¿Õs©z?Ý]Góçr7P.¿gÛ6ZjUìè?×ýoÈÔ*°&üü6­…σçÓÃ÷ܾïÅí~S(ßÌ‘Û÷l,F¦™Bþ÷b +ñ—iI¡î±]î€ïÂy‹†Õ4,{0CVoæ­kÁI*ÃLÚÒf¼Â?»Õ¼=RJÝݨR±NFzƒYÇó½ÍÐ[Ú,ëÖ9Ö ë,ë4ëkšÕÇêeõ°¢¬«µµ™åa¹XN–y +þÜß›àp |.€ ˜3à,˜'À»`Ã`Ðnó7ag½Ï:Ãzu‚õ$«ƒÕÆje –›å`Q$ ¾×Áçà3°>Áøœoƒ`Wos•·Ê»ÉÌj"}Â<%ÌãÂœæ~a>/Ì=ÂÜ-ÌÂÜ!Ì„0ãâaY'ƒò!ù€¼_d¬’Ò/Ëd©ôI)=Ò%Ï°Ué4Æ@T3¬Åa2RAë×PVómßa¹CQͪ0Èx:°ZÖã˜=£Éj+sšöú˜®&3—IÓVÆ&õœ ª ÿ} í±ƒWi½¶‰~[ÄúO…Š jÚQSEM;ÐæcÔl '¤{4üצ­™-ªÙµOu7Ÿ“Mtîd/8J|èOR¯MDkü#ívç¶ÖëW\¤ÍP ¾é¥˜$ÞTª±£±C¥ðES©25Ì¥‡·ÖêW´™\Êð: åŸ tº– +endstream +endobj +1164 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1165 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1180 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1181 0 R +/FontName /ZNXWOK+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1166 0 obj +<< +/K 1182 0 R +/P 1123 0 R +/S /TR +>> +endobj +1167 0 obj +<< +/K 1183 0 R +/P 1124 0 R +/S /TR +>> +endobj +1168 0 obj +<< +/K 1184 0 R +/P 1125 0 R +/S /TR +>> +endobj +1169 0 obj +<< +/K 1142 0 R +/P 1141 0 R +/S /TD +>> +endobj +1170 0 obj +<< +/K 1143 0 R +/P 1141 0 R +/S /TD +>> +endobj +1171 0 obj +<< +/K 1145 0 R +/P 1144 0 R +/S /TD +>> +endobj +1172 0 obj +<< +/K 1146 0 R +/P 1144 0 R +/S /TD +>> +endobj +1173 0 obj +<< +/K 1148 0 R +/P 1147 0 R +/S /TD +>> +endobj +1174 0 obj +<< +/K 1175 0 R +/P 1147 0 R +/S /TD +>> +endobj +1175 0 obj +<< +/K [1149 0 R 1150 0 R 1151 0 R 1152 0 R] +/P 1174 0 R +/S /L +>> +endobj +1176 0 obj +<< +/K 1155 0 R +/P 1154 0 R +/S /TD +>> +endobj +1177 0 obj +<< +/K 1156 0 R +/P 1154 0 R +/S /TD +>> +endobj +1178 0 obj +<< +/K 1158 0 R +/P 1157 0 R +/S /TD +>> +endobj +1179 0 obj +<< +/K 1159 0 R +/P 1157 0 R +/S /TD +>> +endobj +1180 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1181 0 obj +<< +/Filter /FlateDecode +/Length 3261 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘’„ð(P8Ë5ˆdóâ!ìF È.ÙMv“,$Ù¸»dÑ j lÐiÇ”)ÔhÅçÆ` íX*43Z,3:£ƒ¥íL¬5ŽN¥t´šþÎÝ%VþàN§3½¿Ü{~ßã|çû¾sîÝ#¢lê$Ae+ëJg”ŸH¯C{_CGB¾Tzä‘9‘HŸ×ØÞÔúúçóm¢‘¶±©e[cÏå‡WÁ÷4îíÍá`èプæåž„|W3ù£²ž„ü)äÛ›[[—-Iî!Ê+ »[¢ Á‚¡‚!"6÷¹ÖàÖvqŸ1¨àüe[°5ü—ÿ øBgÚcáö•¿½c#ìXO¬!Ž¼Itêýp0ɪi¾Í´·ÙÏÜéCâû€¨ôëÁÜAZô žåe3ó\y…®•ŸEìy*7Ë™ÝySïÿúuᦖr ùøN¾ì'øB•Ó~Ü!ÜOS7uó¾”ÍÄmƒUÓeünÎ@'•~&íÀÓCÿ`‡éŽfÕÃ^ï³ÂÖ€‘91ºÙ^g|˜GìÏx?ÃÏ8ÖEˆ[­† ×·Š×ñu|3ßÇŸæø‹8‘}ü4—_Bü +jÌùb´˜$¼¢ +X#î[Åcâ¸8#.ŠAì[Žv¶P[«m@íç´íCì$×…^¨ÏÖçÍz›þˆÞ¥ÿ'zP4rœ®ä£ŒùÆ.ã£ÏxÏøÊmŽ1§%f¹Yg¶˜æQsÀ¼œq,sqf$3–妣øeûÅ7ÞÞWpºÃ7¥4ž]ÄixPŒ„—úÞå9fKf„÷©ìÌ:6 ;õº*2i¹vŽÖ‰û©E¯ÙæÇt˜ÅµìEQEÇèÙÁN‹€‡ôBc~ªŸ|¿8jn3æedú¹xJo6KØb½‹æ‹ðFÇØjú;»B`åŸNçhíf”AÝÇؼkgùdÖ¥?'^Öz„W„݉œ ÷‹ïÓlÿ¢¦Ñœu +Ô·bÎÜ9³fÎ(/+-)vM¿sÚS o·¦¸ääIß8aüwÆ3º`T~^îÈÛFädgef˜†® ÎÈíµªÒž°µ©ÖÒ¥ÅJ¶‚P¯SlüëaWÝècË€ã&oô¬€gã7<+RžÞ,W. Ån鵤ý;%O²õ«}àOx,¿´^ãpmª#Œ€àra†ôŽköH›¤×®êhNzÄëÍΪ´*ÃYÅnêÍÊͳ«¬ö^Vµ9„WyçõrʬìjËãµ—Y•‚- +½Á½jµÏë™àrù‹Ý6«l°êm²–Ø#‹ªt–±JÛt–‘UuÉ^÷kɽ's©>P”²BÁïùlô«5òŠì{-}ïöqÅî“ì…5>;³ò$£5¾ST=ÔÙ»¬Óãñ«Õò+}»÷±p»}`‚HzÇE¤“É]ÒîYí»ÞêRO¿A‹ÝËk}.dmy÷JUF­Ï©AÙ¸R$©tªÌTÁaË«4MÒδ–XÍÉMlÖø¤MµÛ\/¯®85ô'ªöÊäŸå²M°üAÏÄÞJÖnë[V!—Ýh)v÷ææ¥:Ý{ÛÈ4Éq= Ûæ¸+†¬¯µš©Œ¬e8"¶lÈÄgÙ¼p®z„çR²a.Üpù:AÿÉÜyj#ôÂ\K&¯‚5øñš`Zcæ^!EÕq>r°_ãvQ‘=}º:)f%¶™-täÙÅî{¹Õž+íåh­òa’^)Zîr©]î:YAõìα^~±QqÿÍÝÞÍܵңÿrqU®œ6Ʀ1mUŠ@s=ìß{ðHÕÜ!I¯-%áIC0ƒ xmu•Ÿ¤A +veÛ"„„&Z%1Æ4QŒb$A}ÕÄ[¿³¿»“«X}pÓÏ}f¿ÙÙÙÝî̶ïGhÐœ¥Øà iÇ“Ñ™ùB¦æi9TÈÏDñ8_p—65Žª/þU„j«:v?îˆÚUÒÃœÇëÓ™1|d“©úì¨YŸÉŽ¥qk:ñ*f³ÑHg6“È-ŒFBÑìL"‘Ýב)t)·»çYÉ$óoõ ]ï§ÛëˆP>·ˆrÅÛvƒ+bGþ¹îC ®kÅÏoÓjýx>ý|ÏÝû^Úî7Åòõ<ù}ÿ£¥¨,SÌÿ^J1þ-hô=vËíðmxo熆TfÈúͼ%ʱ§5˜I‡PÚˆWøg£_ÏÛcåÔÙ‰*•kU¬;’ó<6ÛÝ v%¦Yï³Î²¦XgXï²N²&Y=¬nV+Ί±ÚX›YY~–Áò²DìIø{p|®ƒÁEð!8l0 ¦À0 ŽƒwÀ8 †@¿ÛæynÚfc½Ç:Í:Å:Îz‚ÕÎÚÂjeI–åaQ, ¾×ÀgàS°>Àøœo‚ý`gwsu :°Áʉb=Ò:)­cÒ—Ö^i='­]Ò–Öim—VZZ)y¿Z¯"ê>uº[…U­ªV•*¤Ö¨rTJù•¡< +Ï°SåMx}q‘pæ‡(1q~í‹æDpÛvÇ §2A‰§âa§µÁñug49±<#Äk#¦žÌ\"!–GÆͼÓiªmøû.ÙK$÷_¡ubIü¶ÌÉuŸHíCÔr£–ŽZn4,f“ÔœÍÜKwhø¯M¬š-©Ù±Gw7™šQOoÝÁžó”ÑŸŒY—Ž×†öµ¹ÛT>h^6HLQ¾éå˜$Þtª±½±]§ðEÓ©5zþ˜O…nª3/‹©|*„ðZ åŸ ”qpÖ +endstream +endobj +1182 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/P 1166 0 R +/S /TD +>> +endobj +1183 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/P 1167 0 R +/S /TD +>> +endobj +1184 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/P 1168 0 R +/S /TD +>> +endobj +xref +0 1185 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000389 00000 n +0000004671 00000 n +0000004705 00000 n +0000004909 00000 n +0000005036 00000 n +0000005762 00000 n +0000006870 00000 n +0000007953 00000 n +0000009026 00000 n +0000010058 00000 n +0000011079 00000 n +0000012113 00000 n +0000013134 00000 n +0000014196 00000 n +0000015281 00000 n +0000016316 00000 n +0000017338 00000 n +0000018398 00000 n +0000019458 00000 n +0000020506 00000 n +0000021527 00000 n +0000022588 00000 n +0000023638 00000 n +0000024675 00000 n +0000025697 00000 n +0000026732 00000 n +0000027769 00000 n +0000028701 00000 n +0000030304 00000 n +0000030373 00000 n +0000030745 00000 n +0000031089 00000 n +0000035083 00000 n +0000035262 00000 n +0000035389 00000 n +0000035514 00000 n +0000035971 00000 n +0000036443 00000 n +0000036595 00000 n +0000036809 00000 n +0000037213 00000 n +0000037623 00000 n +0000037901 00000 n +0000038306 00000 n +0000050631 00000 n +0000051139 00000 n +0000052143 00000 n +0000053065 00000 n +0000054068 00000 n +0000054972 00000 n +0000055855 00000 n +0000056878 00000 n +0000057841 00000 n +0000058424 00000 n +0000058551 00000 n +0000058676 00000 n +0000059245 00000 n +0000059476 00000 n +0000059881 00000 n +0000060324 00000 n +0000061228 00000 n +0000061254 00000 n +0000066547 00000 n +0000066973 00000 n +0000067455 00000 n +0000068004 00000 n +0000068874 00000 n +0000074629 00000 n +0000079009 00000 n +0000084531 00000 n +0000090224 00000 n +0000090258 00000 n +0000096243 00000 n +0000096395 00000 n +0000102034 00000 n +0000102160 00000 n +0000102288 00000 n +0000102693 00000 n +0000108701 00000 n +0000114508 00000 n +0000120962 00000 n +0000125896 00000 n +0000131947 00000 n +0000137936 00000 n +0000137962 00000 n +0000143715 00000 n +0000143741 00000 n +0000149600 00000 n +0000149626 00000 n +0000155852 00000 n +0000159922 00000 n +0000165690 00000 n +0000165756 00000 n +0000167871 00000 n +0000167983 00000 n +0000168110 00000 n +0000169682 00000 n +0000170102 00000 n +0000170240 00000 n +0000170603 00000 n +0000171317 00000 n +0000171405 00000 n +0000172371 00000 n +0000173479 00000 n +0000174913 00000 n +0000176590 00000 n +0000178626 00000 n +0000178714 00000 n +0000178802 00000 n +0000181158 00000 n +0000183818 00000 n +0000186852 00000 n +0000191417 00000 n +0000196275 00000 n +0000201535 00000 n +0000201623 00000 n +0000207091 00000 n +0000207179 00000 n +0000213072 00000 n +0000213160 00000 n +0000219106 00000 n +0000223106 00000 n +0000227545 00000 n +0000233933 00000 n +0000240285 00000 n +0000240373 00000 n +0000240461 00000 n +0000240549 00000 n +0000240637 00000 n +0000240725 00000 n +0000240813 00000 n +0000241086 00000 n +0000241588 00000 n +0000241860 00000 n +0000242393 00000 n +0000242420 00000 n +0000242725 00000 n +0000243044 00000 n +0000243364 00000 n +0000243700 00000 n +0000244092 00000 n +0000244450 00000 n +0000244857 00000 n +0000245157 00000 n +0000245466 00000 n +0000245810 00000 n +0000246202 00000 n +0000246355 00000 n +0000246551 00000 n +0000246824 00000 n +0000247440 00000 n +0000247858 00000 n +0000248208 00000 n +0000248561 00000 n +0000248950 00000 n +0000249043 00000 n +0000249445 00000 n +0000249928 00000 n +0000250081 00000 n +0000250322 00000 n +0000250733 00000 n +0000250931 00000 n +0000251337 00000 n +0000251505 00000 n +0000251777 00000 n +0000252203 00000 n +0000252308 00000 n +0000252769 00000 n +0000253342 00000 n +0000253452 00000 n +0000253957 00000 n +0000254559 00000 n +0000254712 00000 n +0000255133 00000 n +0000255328 00000 n +0000255526 00000 n +0000255912 00000 n +0000256081 00000 n +0000256250 00000 n +0000256277 00000 n +0000256591 00000 n +0000256922 00000 n +0000257306 00000 n +0000257475 00000 n +0000257645 00000 n +0000257814 00000 n +0000257984 00000 n +0000258154 00000 n +0000258324 00000 n +0000258494 00000 n +0000258664 00000 n +0000258834 00000 n +0000258960 00000 n +0000259113 00000 n +0000259352 00000 n +0000259896 00000 n +0000260311 00000 n +0000260509 00000 n +0000260895 00000 n +0000261048 00000 n +0000262145 00000 n +0000262200 00000 n +0000262306 00000 n +0000262361 00000 n +0000262416 00000 n +0000262471 00000 n +0000262526 00000 n +0000262581 00000 n +0000262636 00000 n +0000262717 00000 n +0000262870 00000 n +0000262965 00000 n +0000263097 00000 n +0000263173 00000 n +0000263288 00000 n +0000263369 00000 n +0000263451 00000 n +0000263589 00000 n +0000263671 00000 n +0000263753 00000 n +0000263835 00000 n +0000263917 00000 n +0000263994 00000 n +0000264105 00000 n +0000264187 00000 n +0000264269 00000 n +0000264348 00000 n +0000264437 00000 n +0000264515 00000 n +0000264610 00000 n +0000264693 00000 n +0000264779 00000 n +0000264846 00000 n +0000264920 00000 n +0000265003 00000 n +0000265070 00000 n +0000265144 00000 n +0000265227 00000 n +0000265294 00000 n +0000265355 00000 n +0000265422 00000 n +0000265483 00000 n +0000265550 00000 n +0000265611 00000 n +0000265678 00000 n +0000265809 00000 n +0000265892 00000 n +0000265975 00000 n +0000266042 00000 n +0000266109 00000 n +0000266337 00000 n +0000266420 00000 n +0000266503 00000 n +0000266587 00000 n +0000266726 00000 n +0000266865 00000 n +0000267003 00000 n +0000267143 00000 n +0000267210 00000 n +0000267300 00000 n +0000267367 00000 n +0000267434 00000 n +0000267525 00000 n +0000267593 00000 n +0000267661 00000 n +0000267730 00000 n +0000267798 00000 n +0000267866 00000 n +0000267934 00000 n +0000268060 00000 n +0000268144 00000 n +0000268243 00000 n +0000268327 00000 n +0000268400 00000 n +0000268468 00000 n +0000268586 00000 n +0000268670 00000 n +0000268749 00000 n +0000268847 00000 n +0000268954 00000 n +0000269061 00000 n +0000269145 00000 n +0000269252 00000 n +0000269336 00000 n +0000269443 00000 n +0000269527 00000 n +0000269606 00000 n +0000269712 00000 n +0000269796 00000 n +0000269880 00000 n +0000269959 00000 n +0000270049 00000 n +0000270128 00000 n +0000270238 00000 n +0000270325 00000 n +0000270404 00000 n +0000270510 00000 n +0000270594 00000 n +0000270673 00000 n +0000270867 00000 n +0000270951 00000 n +0000271035 00000 n +0000271119 00000 n +0000271203 00000 n +0000271287 00000 n +0000271371 00000 n +0000271450 00000 n +0000271552 00000 n +0000271636 00000 n +0000271715 00000 n +0000271841 00000 n +0000271925 00000 n +0000272009 00000 n +0000272093 00000 n +0000272172 00000 n +0000272496 00000 n +0000272580 00000 n +0000272664 00000 n +0000272763 00000 n +0000272847 00000 n +0000272926 00000 n +0000273044 00000 n +0000273128 00000 n +0000273212 00000 n +0000273315 00000 n +0000273399 00000 n +0000273550 00000 n +0000273634 00000 n +0000273718 00000 n +0000273802 00000 n +0000273886 00000 n +0000273989 00000 n +0000274073 00000 n +0000274168 00000 n +0000274247 00000 n +0000274389 00000 n +0000274473 00000 n +0000274557 00000 n +0000274641 00000 n +0000274709 00000 n +0000274788 00000 n +0000274906 00000 n +0000274990 00000 n +0000275074 00000 n +0000275185 00000 n +0000275269 00000 n +0000275353 00000 n +0000275432 00000 n +0000275530 00000 n +0000275614 00000 n +0000275694 00000 n +0000275804 00000 n +0000275888 00000 n +0000275956 00000 n +0000276036 00000 n +0000276104 00000 n +0000276172 00000 n +0000276272 00000 n +0000276356 00000 n +0000276440 00000 n +0000276508 00000 n +0000276576 00000 n +0000276680 00000 n +0000276764 00000 n +0000276848 00000 n +0000276917 00000 n +0000276986 00000 n +0000277054 00000 n +0000277122 00000 n +0000277198 00000 n +0000277297 00000 n +0000277381 00000 n +0000277460 00000 n +0000277562 00000 n +0000277646 00000 n +0000277737 00000 n +0000277821 00000 n +0000277912 00000 n +0000277996 00000 n +0000278081 00000 n +0000278180 00000 n +0000278264 00000 n +0000278349 00000 n +0000278434 00000 n +0000278526 00000 n +0000278618 00000 n +0000278704 00000 n +0000278808 00000 n +0000278892 00000 n +0000278984 00000 n +0000279080 00000 n +0000279176 00000 n +0000279276 00000 n +0000279361 00000 n +0000279447 00000 n +0000279539 00000 n +0000279624 00000 n +0000279716 00000 n +0000279820 00000 n +0000279904 00000 n +0000279983 00000 n +0000280113 00000 n +0000280197 00000 n +0000280281 00000 n +0000280365 00000 n +0000280508 00000 n +0000280592 00000 n +0000280676 00000 n +0000280760 00000 n +0000280844 00000 n +0000281027 00000 n +0000281111 00000 n +0000281195 00000 n +0000281279 00000 n +0000281363 00000 n +0000281447 00000 n +0000281531 00000 n +0000281610 00000 n +0000281700 00000 n +0000281768 00000 n +0000281836 00000 n +0000281904 00000 n +0000281972 00000 n +0000282040 00000 n +0000282124 00000 n +0000282208 00000 n +0000282276 00000 n +0000282344 00000 n +0000282412 00000 n +0000282480 00000 n +0000282548 00000 n +0000282616 00000 n +0000282684 00000 n +0000282752 00000 n +0000282828 00000 n +0000282912 00000 n +0000282980 00000 n +0000283048 00000 n +0000283116 00000 n +0000283243 00000 n +0000283327 00000 n +0000283411 00000 n +0000283495 00000 n +0000283630 00000 n +0000283714 00000 n +0000283798 00000 n +0000283882 00000 n +0000283950 00000 n +0000284018 00000 n +0000284106 00000 n +0000284190 00000 n +0000284274 00000 n +0000284342 00000 n +0000284410 00000 n +0000284486 00000 n +0000284570 00000 n +0000284638 00000 n +0000284706 00000 n +0000284786 00000 n +0000284854 00000 n +0000284922 00000 n +0000284990 00000 n +0000285089 00000 n +0000285173 00000 n +0000285252 00000 n +0000285374 00000 n +0000285458 00000 n +0000285537 00000 n +0000285635 00000 n +0000285714 00000 n +0000285782 00000 n +0000285850 00000 n +0000285918 00000 n +0000285986 00000 n +0000286054 00000 n +0000286130 00000 n +0000286214 00000 n +0000286282 00000 n +0000286350 00000 n +0000286426 00000 n +0000286510 00000 n +0000286641 00000 n +0000286725 00000 n +0000287084 00000 n +0000287168 00000 n +0000287252 00000 n +0000287336 00000 n +0000287463 00000 n +0000287547 00000 n +0000287631 00000 n +0000287715 00000 n +0000287858 00000 n +0000287942 00000 n +0000288026 00000 n +0000288110 00000 n +0000288194 00000 n +0000288273 00000 n +0000288375 00000 n +0000288459 00000 n +0000288578 00000 n +0000288662 00000 n +0000288746 00000 n +0000288833 00000 n +0000288928 00000 n +0000289012 00000 n +0000289092 00000 n +0000289206 00000 n +0000289290 00000 n +0000289374 00000 n +0000289442 00000 n +0000289510 00000 n +0000289578 00000 n +0000289658 00000 n +0000289726 00000 n +0000289794 00000 n +0000289862 00000 n +0000289938 00000 n +0000290021 00000 n +0000290094 00000 n +0000290162 00000 n +0000290230 00000 n +0000290318 00000 n +0000290402 00000 n +0000290486 00000 n +0000290554 00000 n +0000290622 00000 n +0000290684 00000 n +0000290752 00000 n +0000290820 00000 n +0000290882 00000 n +0000290950 00000 n +0000291018 00000 n +0000291080 00000 n +0000291148 00000 n +0000291216 00000 n +0000291278 00000 n +0000291346 00000 n +0000291414 00000 n +0000291498 00000 n +0000291582 00000 n +0000291650 00000 n +0000291718 00000 n +0000291786 00000 n +0000291865 00000 n +0000291963 00000 n +0000292297 00000 n +0000292366 00000 n +0000292435 00000 n +0000292504 00000 n +0000292584 00000 n +0000292705 00000 n +0000292790 00000 n +0000292891 00000 n +0000293035 00000 n +0000293120 00000 n +0000293200 00000 n +0000293378 00000 n +0000293463 00000 n +0000293548 00000 n +0000293633 00000 n +0000293718 00000 n +0000293803 00000 n +0000293872 00000 n +0000293952 00000 n +0000294135 00000 n +0000294220 00000 n +0000294305 00000 n +0000294390 00000 n +0000294475 00000 n +0000294544 00000 n +0000294635 00000 n +0000294704 00000 n +0000294773 00000 n +0000294836 00000 n +0000294905 00000 n +0000294974 00000 n +0000295037 00000 n +0000295106 00000 n +0000295175 00000 n +0000295238 00000 n +0000295307 00000 n +0000295376 00000 n +0000295439 00000 n +0000295508 00000 n +0000295577 00000 n +0000295641 00000 n +0000295711 00000 n +0000295781 00000 n +0000295852 00000 n +0000295922 00000 n +0000295992 00000 n +0000296056 00000 n +0000296126 00000 n +0000296196 00000 n +0000296260 00000 n +0000296330 00000 n +0000296400 00000 n +0000296464 00000 n +0000296608 00000 n +0000296693 00000 n +0000296810 00000 n +0000296895 00000 n +0000296980 00000 n +0000297049 00000 n +0000297147 00000 n +0000297227 00000 n +0000297340 00000 n +0000297475 00000 n +0000297560 00000 n +0000297645 00000 n +0000297730 00000 n +0000297810 00000 n +0000297891 00000 n +0000297972 00000 n +0000298053 00000 n +0000298134 00000 n +0000298222 00000 n +0000298303 00000 n +0000298384 00000 n +0000298465 00000 n +0000298546 00000 n +0000298632 00000 n +0000298718 00000 n +0000298804 00000 n +0000298909 00000 n +0000298993 00000 n +0000299062 00000 n +0000299131 00000 n +0000299220 00000 n +0000299304 00000 n +0000299373 00000 n +0000299442 00000 n +0000299531 00000 n +0000299615 00000 n +0000299699 00000 n +0000299768 00000 n +0000299837 00000 n +0000299918 00000 n +0000300002 00000 n +0000300071 00000 n +0000300140 00000 n +0000300241 00000 n +0000300325 00000 n +0000300409 00000 n +0000300478 00000 n +0000300547 00000 n +0000300636 00000 n +0000300720 00000 n +0000300821 00000 n +0000300890 00000 n +0000300959 00000 n +0000301040 00000 n +0000301109 00000 n +0000301178 00000 n +0000301255 00000 n +0000301339 00000 n +0000301408 00000 n +0000301477 00000 n +0000301546 00000 n +0000301615 00000 n +0000301684 00000 n +0000301761 00000 n +0000301830 00000 n +0000301899 00000 n +0000301968 00000 n +0000302037 00000 n +0000302106 00000 n +0000302187 00000 n +0000302256 00000 n +0000302325 00000 n +0000302414 00000 n +0000302498 00000 n +0000302599 00000 n +0000302668 00000 n +0000302737 00000 n +0000302814 00000 n +0000302898 00000 n +0000302967 00000 n +0000303036 00000 n +0000303117 00000 n +0000303201 00000 n +0000303270 00000 n +0000303339 00000 n +0000303408 00000 n +0000303477 00000 n +0000303546 00000 n +0000303635 00000 n +0000303719 00000 n +0000303788 00000 n +0000303857 00000 n +0000303926 00000 n +0000303995 00000 n +0000304064 00000 n +0000304133 00000 n +0000304202 00000 n +0000304271 00000 n +0000304340 00000 n +0000304432 00000 n +0000304501 00000 n +0000304570 00000 n +0000304639 00000 n +0000304708 00000 n +0000304777 00000 n +0000304846 00000 n +0000304915 00000 n +0000304984 00000 n +0000305053 00000 n +0000305122 00000 n +0000305191 00000 n +0000305260 00000 n +0000305329 00000 n +0000305398 00000 n +0000305467 00000 n +0000305536 00000 n +0000305621 00000 n +0000305707 00000 n +0000305793 00000 n +0000305879 00000 n +0000305976 00000 n +0000306045 00000 n +0000306114 00000 n +0000306187 00000 n +0000306256 00000 n +0000306325 00000 n +0000306434 00000 n +0000306518 00000 n +0000306602 00000 n +0000306671 00000 n +0000306740 00000 n +0000306813 00000 n +0000306882 00000 n +0000306951 00000 n +0000307048 00000 n +0000307132 00000 n +0000307216 00000 n +0000307285 00000 n +0000307354 00000 n +0000307451 00000 n +0000307535 00000 n +0000307604 00000 n +0000307673 00000 n +0000307762 00000 n +0000307846 00000 n +0000307939 00000 n +0000308008 00000 n +0000308077 00000 n +0000308158 00000 n +0000308227 00000 n +0000308296 00000 n +0000308373 00000 n +0000308442 00000 n +0000308511 00000 n +0000308584 00000 n +0000308653 00000 n +0000308722 00000 n +0000308791 00000 n +0000308860 00000 n +0000308929 00000 n +0000309014 00000 n +0000309083 00000 n +0000309152 00000 n +0000309225 00000 n +0000309294 00000 n +0000309363 00000 n +0000309464 00000 n +0000309548 00000 n +0000309632 00000 n +0000309701 00000 n +0000309770 00000 n +0000309859 00000 n +0000309943 00000 n +0000310023 00000 n +0000310116 00000 n +0000310186 00000 n +0000310256 00000 n +0000310327 00000 n +0000310397 00000 n +0000310467 00000 n +0000310538 00000 n +0000310608 00000 n +0000310678 00000 n +0000310749 00000 n +0000310819 00000 n +0000310889 00000 n +0000310965 00000 n +0000311035 00000 n +0000311105 00000 n +0000311186 00000 n +0000311256 00000 n +0000311326 00000 n +0000311420 00000 n +0000311505 00000 n +0000311575 00000 n +0000311645 00000 n +0000311726 00000 n +0000311796 00000 n +0000311866 00000 n +0000311963 00000 n +0000312048 00000 n +0000312133 00000 n +0000312203 00000 n +0000312273 00000 n +0000312380 00000 n +0000312465 00000 n +0000312550 00000 n +0000312620 00000 n +0000312690 00000 n +0000312789 00000 n +0000312874 00000 n +0000312954 00000 n +0000313035 00000 n +0000313131 00000 n +0000313216 00000 n +0000313297 00000 n +0000313395 00000 n +0000313476 00000 n +0000313577 00000 n +0000313662 00000 n +0000313743 00000 n +0000313824 00000 n +0000313905 00000 n +0000313986 00000 n +0000314067 00000 n +0000314148 00000 n +0000314212 00000 n +0000314276 00000 n +0000314340 00000 n +0000314404 00000 n +0000314468 00000 n +0000314532 00000 n +0000324234 00000 n +0000335026 00000 n +0000335216 00000 n +0000335840 00000 n +0000337826 00000 n +0000339996 00000 n +0000340498 00000 n +0000342511 00000 n +0000342538 00000 n +0000342843 00000 n +0000343153 00000 n +0000356255 00000 n +0000359610 00000 n +0000361331 00000 n +0000364744 00000 n +0000364771 00000 n +0000365076 00000 n +0000365393 00000 n +0000365800 00000 n +0000366100 00000 n +0000366464 00000 n +0000366856 00000 n +0000366935 00000 n +0000374054 00000 n +0000378637 00000 n +0000383363 00000 n +0000383390 00000 n +0000383695 00000 n +0000384106 00000 n +0000384406 00000 n +0000384706 00000 n +0000385050 00000 n +0000385129 00000 n +0000385208 00000 n +0000385408 00000 n +0000387289 00000 n +0000387368 00000 n +0000387447 00000 n +0000387526 00000 n +0000387605 00000 n +0000387684 00000 n +0000387763 00000 n +0000387842 00000 n +0000387921 00000 n +0000388000 00000 n +0000388028 00000 n +0000388333 00000 n +0000388655 00000 n +0000388980 00000 n +0000389073 00000 n +0000389495 00000 n +0000389992 00000 n +0000390342 00000 n +0000390739 00000 n +0000391040 00000 n +0000391340 00000 n +0000391674 00000 n +0000392018 00000 n +0000392046 00000 n +0000392351 00000 n +0000392406 00000 n +0000392491 00000 n +0000392546 00000 n +0000392608 00000 n +0000392670 00000 n +0000392725 00000 n +0000392786 00000 n +0000392855 00000 n +0000392924 00000 n +0000393001 00000 n +0000393070 00000 n +0000393125 00000 n +0000393186 00000 n +0000393287 00000 n +0000393409 00000 n +0000393471 00000 n +0000393526 00000 n +0000393581 00000 n +0000393636 00000 n +0000393716 00000 n +0000393796 00000 n +0000393876 00000 n +0000393938 00000 n +0000394073 00000 n +0000394126 00000 n +0000394196 00000 n +0000394249 00000 n +0000394319 00000 n +0000394372 00000 n +0000394442 00000 n +0000394495 00000 n +0000394565 00000 n +0000394618 00000 n +0000394688 00000 n +0000394784 00000 n +0000394880 00000 n +0000394958 00000 n +0000395021 00000 n +0000395092 00000 n +0000395155 00000 n +0000395226 00000 n +0000395289 00000 n +0000395360 00000 n +0000395413 00000 n +0000395466 00000 n +0000395519 00000 n +0000395572 00000 n +0000395705 00000 n +0000395811 00000 n +0000395864 00000 n +0000395917 00000 n +0000395970 00000 n +0000396023 00000 n +0000396076 00000 n +0000396129 00000 n +0000396192 00000 n +0000396263 00000 n +0000396326 00000 n +0000396397 00000 n +0000396460 00000 n +0000396540 00000 n +0000396603 00000 n +0000396675 00000 n +0000396738 00000 n +0000396810 00000 n +0000396873 00000 n +0000397045 00000 n +0000397108 00000 n +0000397179 00000 n +0000397242 00000 n +0000397313 00000 n +0000397376 00000 n +0000397447 00000 n +0000397510 00000 n +0000397581 00000 n +0000397644 00000 n +0000397715 00000 n +0000397778 00000 n +0000397849 00000 n +0000397912 00000 n +0000397983 00000 n +0000398046 00000 n +0000398117 00000 n +0000398180 00000 n +0000398251 00000 n +0000398314 00000 n +0000398385 00000 n +0000398448 00000 n +0000398519 00000 n +0000398582 00000 n +0000398653 00000 n +0000398716 00000 n +0000398787 00000 n +0000398850 00000 n +0000398921 00000 n +0000398984 00000 n +0000399055 00000 n +0000399118 00000 n +0000399189 00000 n +0000399252 00000 n +0000399323 00000 n +0000399386 00000 n +0000399457 00000 n +0000399520 00000 n +0000399591 00000 n +0000399654 00000 n +0000399725 00000 n +0000399789 00000 n +0000399861 00000 n +0000399926 00000 n +0000399999 00000 n +0000400064 00000 n +0000400137 00000 n +0000400202 00000 n +0000400275 00000 n +0000400340 00000 n +0000400413 00000 n +0000400467 00000 n +0000400521 00000 n +0000400575 00000 n +0000400629 00000 n +0000400694 00000 n +0000400768 00000 n +0000400833 00000 n +0000400907 00000 n +0000400972 00000 n +0000401046 00000 n +0000401111 00000 n +0000401185 00000 n +0000401250 00000 n +0000401324 00000 n +0000401378 00000 n +0000401443 00000 n +0000401517 00000 n +0000401582 00000 n +0000401656 00000 n +0000401721 00000 n +0000401795 00000 n +0000401860 00000 n +0000401934 00000 n +0000401999 00000 n +0000402073 00000 n +0000402138 00000 n +0000402212 00000 n +0000402277 00000 n +0000402351 00000 n +0000402405 00000 n +0000402470 00000 n +0000402544 00000 n +0000402609 00000 n +0000402683 00000 n +0000402748 00000 n +0000402822 00000 n +0000402887 00000 n +0000402961 00000 n +0000403026 00000 n +0000403100 00000 n +0000403165 00000 n +0000403239 00000 n +0000403304 00000 n +0000403379 00000 n +0000403444 00000 n +0000403511 00000 n +0000403576 00000 n +0000403659 00000 n +0000403724 00000 n +0000403799 00000 n +0000403853 00000 n +0000403907 00000 n +0000403961 00000 n +0000404015 00000 n +0000404080 00000 n +0000404154 00000 n +0000404219 00000 n +0000404293 00000 n +0000404358 00000 n +0000404432 00000 n +0000404497 00000 n +0000404571 00000 n +0000404636 00000 n +0000404710 00000 n +0000404775 00000 n +0000404849 00000 n +0000404903 00000 n +0000404968 00000 n +0000405042 00000 n +0000405107 00000 n +0000405181 00000 n +0000405246 00000 n +0000405320 00000 n +0000405385 00000 n +0000405459 00000 n +0000405524 00000 n +0000405598 00000 n +0000405663 00000 n +0000405737 00000 n +0000405802 00000 n +0000405876 00000 n +0000405941 00000 n +0000406015 00000 n +0000406080 00000 n +0000406153 00000 n +0000406218 00000 n +0000406291 00000 n +0000406356 00000 n +0000406429 00000 n +0000406494 00000 n +0000406567 00000 n +0000406632 00000 n +0000406705 00000 n +0000406770 00000 n +0000406843 00000 n +0000406908 00000 n +0000406981 00000 n +0000407046 00000 n +0000407119 00000 n +0000407184 00000 n +0000407257 00000 n +0000407322 00000 n +0000407395 00000 n +0000407472 00000 n +0000407769 00000 n +0000410142 00000 n +0000410219 00000 n +0000410516 00000 n +0000410707 00000 n +0000411401 00000 n +0000414772 00000 n +0000416815 00000 n +0000417266 00000 n +0000418356 00000 n +0000418511 00000 n +0000418666 00000 n +0000418811 00000 n +0000418883 00000 n +0000418955 00000 n +0000419024 00000 n +0000419093 00000 n +0000419162 00000 n +0000419231 00000 n +0000419300 00000 n +0000419369 00000 n +0000419438 00000 n +0000419507 00000 n +0000419576 00000 n +0000419648 00000 n +0000419720 00000 n +0000419790 00000 n +0000419865 00000 n +0000419940 00000 n +0000420014 00000 n +0000420079 00000 n +0000420154 00000 n +0000420237 00000 n +0000420311 00000 n +0000420386 00000 n +0000420487 00000 n +0000420562 00000 n +0000420637 00000 n +0000420712 00000 n +0000420787 00000 n +0000420862 00000 n +0000420937 00000 n +0000421011 00000 n +0000421085 00000 n +0000421160 00000 n +0000421243 00000 n +0000421326 00000 n +0000421415 00000 n +0000424765 00000 n +0000424854 00000 n +0000428265 00000 n +0000428342 00000 n +0000428639 00000 n +0000428694 00000 n +0000428749 00000 n +0000428804 00000 n +0000428859 00000 n +0000428914 00000 n +0000428969 00000 n +0000429024 00000 n +0000429079 00000 n +0000429134 00000 n +0000429217 00000 n +0000429272 00000 n +0000429327 00000 n +0000429382 00000 n +0000429437 00000 n +0000429526 00000 n +0000432877 00000 n +0000432950 00000 n +0000433023 00000 n +trailer +<< +/ID [<9EFF4BBC2003904AA556C65D71393A07> <5DF1CFFA99DC6448AD1449894CEFB369>] +/Info 1 0 R +/Root 2 0 R +/Size 1185 +>> +startxref +433096 +%%EOF diff --git a/src/Static/data/Standards/4/IDDRS-4.20-Demobilization.docx b/src/Static/data/Standards/4/IDDRS-4.20-Demobilization.docx new file mode 100644 index 0000000..e24d749 Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.20-Demobilization.docx differ diff --git a/src/Static/data/Standards/4/IDDRS-4.20-Demobilization.pdf b/src/Static/data/Standards/4/IDDRS-4.20-Demobilization.pdf new file mode 100644 index 0000000..4a0a40b --- /dev/null +++ b/src/Static/data/Standards/4/IDDRS-4.20-Demobilization.pdf @@ -0,0 +1,27762 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210518081223+02'00') +/Creator (Adobe InDesign 16.1 \(Windows\)) +/ModDate (D:20230308112145+01'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Names 4 0 R +/Pages 5 0 R +/StructTreeRoot 6 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-05-18T08:12:23+02:00 + 2021-05-18T08:12:27+02:00 + Adobe InDesign 16.1 (Windows) + 2023-03-08T11:21:45+01:00 + uuid:7fe6ce28-7096-4de5-a824-6a6de512a7a4 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:052aac5e-891a-9e48-9471-1fae4e0ca65e + proof:pdf + + xmp.iid:54358142-8acf-8b40-9036-174a6d5ae3cc + xmp.did:0119b0b1-5c89-da40-8c92-56ac772ad89f + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 16.1 (Windows) + / + 2021-05-18T08:12:23+02:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Dests 7 0 R +>> +endobj +5 0 obj +<< +/Count 47 +/Kids [8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R +24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R +40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R] +/Type /Pages +>> +endobj +6 0 obj +<< +/ClassMap 55 0 R +/K 56 0 R +/ParentTree 57 0 R +/ParentTreeNextKey 43 +/RoleMap 58 0 R +/Type /StructTreeRoot +>> +endobj +7 0 obj +<< +/Names [() [42 0 R /Fit]] +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 59 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 7 +/PageItemUIDToLocationDataMap << +/0 [407.0 7.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 12.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 2.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 10.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 9.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 11.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ColorSpace << +/CS0 60 0 R +>> +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 63 0 R +/TT1 64 0 R +/C2_0 65 0 R +/T1_0 66 0 R +/T1_1 67 0 R +/T1_2 68 0 R +/T1_3 69 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 70 0 R +/Fm1 71 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 72 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1730 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [407.0 1.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 7.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 6.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 5.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 4.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 3.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 2.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [581.0 11.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/8 [603.0 10.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/9 [625.0 9.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/10 [647.0 8.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/11 [1982.0 0.0 2.0 -501.343 -340.095 -84.6496 260.849 1.0 0.0 0.0 1.0 -500.843 -339.595] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 64 0 R +/TT1 63 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 73 0 R +/Fm1 74 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 75 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1859 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [407.0 0.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 1.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 2.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 3.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 4.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 5.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 6.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [581.0 10.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/8 [603.0 9.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/9 [625.0 8.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/10 [647.0 7.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ColorSpace << +/CS0 60 0 R +>> +/ExtGState << +/GS0 61 0 R +>> +/Font << +/T1_0 69 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 76 0 R +/Fm1 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [255.0 1.0 2.0 85.0394 -340.157 501.732 319.181 1.0 0.0 0.0 1.0 293.386 -7.08661] +/1 [349.0 3.0 4.0 0.0 371.339 615.118 371.339 1.0 0.0 0.0 1.0 0.0 371.339] +/2 [423.0 13.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [469.0 11.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [492.0 9.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/5 [500.0 12.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/6 [524.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [525.0 10.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/8 [3554.0 7.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 6.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 5.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 4.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 90 0 R +/T1_2 91 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 93 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [630.0 4.0 4.0 -85.0394 -396.85 -85.0394 396.85 1.0 0.0 0.0 1.0 -85.0394 0.0] +/7 [671.0 2.0 2.0 -501.732 -340.157 -85.0394 299.055 1.0 0.0 0.0 1.0 -293.386 -7.08661] +/8 [1344.0 3.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 86.0118] +/9 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 95 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 96 0 R +/TT1 88 0 R +/T1_0 89 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 97 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1395.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -288.634] +/7 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [4692.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +/12 [6426.0 2.0 2.0 654.803 -265.512 980.787 -169.417 1.0 0.0 0.0 1.0 818.079 -260.22] +/13 [6450.0 3.0 2.0 -614.48 -193.701 -288.496 -130.866 1.0 0.0 0.0 1.0 -585.85 -165.754] +/14 [8301.0 4.0 2.0 -501.413 10.0531 -84.7205 492.583 1.0 0.0 0.0 1.0 -500.913 10.5531] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 98 0 R +/GS1 99 0 R +/GS2 100 0 R +>> +/Font << +/F0 89 0 R +/F1 88 0 R +/F2 101 0 R +/F3 102 0 R +>> +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 103 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 91 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 104 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 16 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 20.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1489.0 0.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 160.657] +/7 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [4435.0 1.0 2.0 -1074.33 -382.677 -657.638 283.465 1.0 0.0 0.0 1.0 -1073.83 -382.177] +/12 [4441.0 2.0 2.0 -501.732 -340.157 -85.0394 302.835 1.0 0.0 0.0 1.0 -501.232 175.681] +/13 [6515.0 3.0 2.0 -1097.95 -464.882 -681.26 -116.74 1.0 0.0 0.0 1.0 -889.606 -165.354] +/14 [6610.0 4.0 2.0 -637.795 -461.575 -221.102 -441.449 1.0 0.0 0.0 1.0 -557.008 -448.11] +/15 [8342.0 5.0 2.0 -614.675 -48.9183 -288.691 74.1732 1.0 0.0 0.0 1.0 -586.045 -20.9711] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 91 0 R +/T1_2 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 105 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 106 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 22.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 20.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 18.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 21.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 17.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 19.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1516.0 0.0 2.0 -501.732 -340.157 -85.0394 306.142 1.0 0.0 0.0 1.0 -501.232 -202.65] +/7 [1583.0 1.0 2.0 85.0394 -340.157 501.732 276.85 1.0 0.0 0.0 1.0 85.5394 78.9252] +/8 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [6614.0 2.0 2.0 -1076.22 -18.8976 -750.236 83.8685 1.0 0.0 0.0 1.0 -1047.59 17.585] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 91 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 107 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 91 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 108 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 18 +/PageItemUIDToLocationDataMap << +/0 [423.0 27.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 25.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 23.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 26.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 22.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 24.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1622.0 0.0 2.0 -501.732 -340.157 -85.0394 298.11 1.0 0.0 0.0 1.0 -501.232 -237.043] +/7 [1635.0 1.0 2.0 85.0394 -340.157 501.732 303.78 1.0 0.0 0.0 1.0 85.5394 236.484] +/8 [3459.0 2.0 2.0 619.748 340.455 959.192 486.156 1.0 0.0 0.0 1.0 783.024 413.306] +/9 [3554.0 21.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 20.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 19.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 18.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [4997.0 3.0 2.0 713.197 -133.228 1129.89 289.885 1.0 0.0 0.0 1.0 921.543 166.299] +/14 [5253.0 4.0 2.0 -1177.51 -185.102 -761.071 -158.283 1.0 0.0 0.0 1.0 -993.795 -177.073] +/15 [5762.0 5.0 2.0 704.882 -453.071 885.165 -187.748 1.0 0.0 0.0 1.0 823.937 -413.386] +/16 [6684.0 6.0 2.0 861.732 -242.362 1187.72 -146.268 1.0 0.0 0.0 1.0 1025.01 -237.071] +/17 [8398.0 7.0 2.0 288.915 109.134 614.9 249.449 1.0 0.0 0.0 1.0 452.191 134.773] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 91 0 R +/T1_2 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 109 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 111 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 25 +/PageItemUIDToLocationDataMap << +/0 [423.0 33.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 31.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 29.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 32.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 28.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 30.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1664.0 0.0 2.0 -501.732 -340.157 -85.0394 -164.409 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [1699.0 1.0 2.0 85.0394 -41.5748 501.732 305.197 1.0 0.0 0.0 1.0 85.5394 -339.657] +/8 [3483.0 2.0 2.0 634.961 -314.646 974.405 -168.945 1.0 0.0 0.0 1.0 798.236 -241.795] +/9 [3554.0 27.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 26.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 25.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 34.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [5037.0 3.0 2.0 -1069.23 -53.2913 -652.535 287.575 1.0 0.0 0.0 1.0 -860.882 246.236] +/14 [5282.0 4.0 2.0 -1047.69 -121.323 -631.244 -94.5039 1.0 0.0 0.0 1.0 -863.969 -113.294] +/15 [5307.0 5.0 2.0 677.48 -78.3494 1094.17 328.819 1.0 0.0 0.0 1.0 885.827 221.178] +/16 [5344.0 6.0 2.0 833.638 -125.858 1250.08 -99.0394 1.0 0.0 0.0 1.0 1017.35 -117.829] +/17 [5918.0 7.0 2.0 -1158.43 -426.614 -741.732 -19.8425 1.0 0.0 0.0 1.0 -1157.93 -426.114] +/18 [6714.0 8.0 2.0 -1077.17 -183.307 -660.472 173.7 1.0 0.0 0.0 1.0 -1076.67 -182.807] +/19 [6753.0 9.0 2.0 -501.732 129.449 -85.0394 312.756 1.0 0.0 0.0 1.0 -501.232 178.091] +/20 [8374.0 10.0 2.0 -895.748 -513.79 -569.764 -411.024 1.0 0.0 0.0 1.0 -867.118 -477.307] +/21 [8426.0 11.0 2.0 -501.732 -164.409 -85.0394 129.449 1.0 0.0 0.0 1.0 -501.232 -163.909] +/22 [8465.0 12.0 2.0 85.1811 -340.007 501.874 -322.716 1.0 0.0 0.0 1.0 126.567 -309.96] +/23 [8488.0 13.0 0.0 38.2736 -322.887 501.03 -27.375 1.0 0.0 0.0 1.0 462.703 -12.7618] +/24 [8489.0 14.0 4.0 80.2667 -322.887 459.036 -27.375 0.47644 0.0 0.0 0.47644 80.2667 -322.887] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 112 0 R +/GS1 113 0 R +/GS2 114 0 R +>> +/Font << +/F0 89 0 R +/F1 88 0 R +/F2 102 0 R +/F3 101 0 R +>> +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 115 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 91 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 92 0 R +/Im0 116 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 117 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 19 +/PageItemUIDToLocationDataMap << +/0 [423.0 29.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 27.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 25.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 28.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 24.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 26.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1708.0 1.0 2.0 -501.732 161.575 -85.0394 287.482 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [1714.0 2.0 2.0 85.0394 -340.157 501.732 -257.953 1.0 0.0 0.0 1.0 85.5394 -332.571] +/8 [3554.0 23.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 22.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 21.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 20.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [5150.0 3.0 2.0 643.465 -343.843 1060.16 287.612 1.0 0.0 0.0 1.0 851.811 -44.315] +/13 [6758.0 4.0 2.0 -1008.19 71.3386 -682.205 174.105 1.0 0.0 0.0 1.0 -979.559 107.821] +/14 [6785.0 5.0 2.0 661.417 60.0 987.402 185.907 1.0 0.0 0.0 1.0 824.693 65.2913] +/15 [8496.0 6.0 2.0 -501.496 -313.937 -84.8031 150.236 1.0 0.0 0.0 1.0 -293.15 -14.4095] +/16 [8532.0 7.0 2.0 -501.606 -340.157 -85.1654 -313.339 1.0 0.0 0.0 1.0 -317.89 -332.128] +/17 [8568.0 8.0 2.0 84.9705 -243.166 501.411 -216.347 1.0 0.0 0.0 1.0 268.687 -235.137] +/18 [8591.0 9.0 2.0 84.7185 -216.347 501.411 103.465 1.0 0.0 0.0 1.0 293.065 83.1801] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 118 0 R +/GS1 119 0 R +/GS2 120 0 R +>> +/Font << +/F0 89 0 R +/F1 91 0 R +/F2 88 0 R +/F3 102 0 R +/F4 110 0 R +/F5 101 0 R +>> +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 16 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 121 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 122 0 R +/GS1 123 0 R +/GS2 124 0 R +>> +/Font << +/F0 89 0 R +/F1 88 0 R +/F2 102 0 R +/F3 110 0 R +/F4 101 0 R +>> +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 17 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 125 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1899 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 23.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 21.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 19.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 22.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 18.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 20.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [2999.0 0.0 2.0 642.756 -344.409 1059.45 321.732 1.0 0.0 0.0 1.0 851.102 -44.8819] +/7 [3526.0 1.0 2.0 -501.732 14.1732 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/8 [3554.0 17.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 16.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 15.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 14.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [5814.0 2.0 2.0 85.0394 -340.157 501.732 303.307 1.0 0.0 0.0 1.0 85.5394 -339.657] +/13 [8750.0 3.0 2.0 -501.732 -340.157 -85.0394 -0.441437 1.0 0.0 0.0 1.0 -501.232 -339.657] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 126 0 R +/GS1 127 0 R +/GS2 128 0 R +>> +/Font << +/F0 89 0 R +/F1 91 0 R +/F2 88 0 R +/F3 110 0 R +/F4 96 0 R +/F5 102 0 R +/F6 101 0 R +>> +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 18 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 129 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1870 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 96 0 R +/TT1 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 130 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1813 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 16 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 20.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1820.0 0.0 2.0 -1148.03 -415.276 -731.339 250.866 1.0 0.0 0.0 1.0 -939.685 -115.748] +/7 [3046.0 1.0 2.0 743.386 -328.819 1160.08 337.323 1.0 0.0 0.0 1.0 951.732 -29.2913] +/8 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [3778.0 2.0 2.0 -501.732 320.882 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.641] +/13 [3817.0 3.0 2.0 85.0394 -340.141 501.732 312.283 1.0 0.0 0.0 1.0 85.5394 -339.641] +/14 [6921.0 4.0 2.0 -501.732 -340.157 -85.0394 320.882 1.0 0.0 0.0 1.0 -501.232 -336.823] +/15 [8794.0 5.0 2.0 -615.118 -197.953 -289.134 -128.976 1.0 0.0 0.0 1.0 -586.488 -224.121] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 91 0 R +/T1_2 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 20 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 131 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1814 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 21 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 132 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3119 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 18 +/PageItemUIDToLocationDataMap << +/0 [423.0 27.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 25.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 23.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 26.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 22.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 24.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3123.0 0.0 2.0 -501.732 320.882 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [3132.0 1.0 2.0 85.0394 -340.157 501.732 -165.354 1.0 0.0 0.0 1.0 85.5394 89.7913] +/8 [3250.0 2.0 2.0 398.551 425.764 696.189 571.465 1.0 0.0 0.0 1.0 427.181 498.614] +/9 [3554.0 21.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 20.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 19.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 18.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [6965.0 3.0 2.0 -501.732 -340.157 -85.0394 297.638 1.0 0.0 0.0 1.0 -501.232 -339.657] +/14 [6969.0 4.0 2.0 -1105.51 -337.323 -688.819 -106.045 1.0 0.0 0.0 1.0 -1105.01 -336.823] +/15 [8824.0 5.0 2.0 -615.443 171.706 -289.459 234.803 1.0 0.0 0.0 1.0 -586.813 145.538] +/16 [8875.0 6.0 2.0 84.935 -165.279 501.376 -138.46 1.0 0.0 0.0 1.0 268.652 -157.25] +/17 [8898.0 7.0 2.0 85.0394 -124.286 501.732 297.638 1.0 0.0 0.0 1.0 293.386 175.241] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 22 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 133 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 3120 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 134 0 R +/GS1 135 0 R +/GS2 136 0 R +>> +/Font << +/F0 89 0 R +/F1 88 0 R +/F2 102 0 R +/F3 110 0 R +/F4 101 0 R +>> +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 23 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +32 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 137 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 6174 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 12.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [6176.0 0.0 2.0 -501.732 -340.157 -85.0394 297.165 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [6305.0 1.0 2.0 85.0394 -340.157 501.732 309.449 1.0 0.0 0.0 1.0 85.5394 -350.287] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 24 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +33 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 138 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 6175 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 25 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +34 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 139 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 6320 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 22.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 20.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 18.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 21.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 17.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 19.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [6334.0 0.0 2.0 -501.732 -340.157 -85.0394 297.165 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [6415.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 205.161] +/12 [8950.0 2.0 2.0 -615.035 -92.1777 -289.051 -29.0802 1.0 0.0 0.0 1.0 -586.406 -118.346] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 26 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +35 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 140 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 6333 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 27 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +36 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 141 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7080 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 23.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 21.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 19.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 22.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 18.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 20.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 17.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 16.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 15.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 14.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [7094.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [7103.0 1.0 2.0 671.811 -347.244 1088.5 101.102 1.0 0.0 0.0 1.0 672.311 -346.744] +/12 [7140.0 2.0 2.0 85.0394 -340.157 501.732 311.811 1.0 0.0 0.0 1.0 85.5394 123.24] +/13 [8988.0 3.0 2.0 289.199 -167.244 615.183 -74.3829 1.0 0.0 0.0 1.0 452.474 -189.059] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 28 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +37 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 142 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7093 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 29 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +38 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 143 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7154 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [7211.0 0.0 2.0 -501.732 -340.157 -85.0394 321.26 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [7253.0 1.0 2.0 638.74 -345.827 1055.18 -326.25 1.0 0.0 0.0 1.0 822.457 -337.798] +/12 [7283.0 2.0 2.0 636.85 -316.535 1052.91 -32.2264 1.0 0.0 0.0 1.0 845.197 -17.0079] +/13 [7322.0 3.0 2.0 85.0394 -340.157 501.732 300.756 1.0 0.0 0.0 1.0 85.5394 -10.2717] +/14 [9013.0 4.0 2.0 288.939 -153.27 614.923 -60.409 1.0 0.0 0.0 1.0 452.215 -175.085] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 30 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +39 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 144 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7167 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 31 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +40 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 145 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7177 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 23.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 21.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 19.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 22.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 18.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 20.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 17.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 16.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 15.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 14.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [7332.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [7338.0 1.0 2.0 85.0394 -340.299 501.732 298.11 1.0 0.0 0.0 1.0 85.5394 -339.799] +/12 [9053.0 2.0 2.0 281.711 -133.465 607.695 -24.3307 1.0 0.0 0.0 1.0 444.986 -161.78] +/13 [9319.0 3.0 2.0 -614.717 100.764 -288.732 200.551 1.0 0.0 0.0 1.0 -586.087 74.5964] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 32 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +41 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 146 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7187 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 33 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +42 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 147 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7197 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 22.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 20.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 18.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 21.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 17.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 19.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [7347.0 0.0 2.0 -501.732 -340.157 -85.0394 300.472 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [7353.0 1.0 2.0 85.0394 -339.732 501.732 315.921 1.0 0.0 0.0 1.0 85.5394 -339.232] +/12 [9135.0 2.0 2.0 288.809 -266.929 614.793 -178.3 1.0 0.0 0.0 1.0 452.085 -315.749] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 34 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +43 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 148 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7207 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +/T1_2 101 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 35 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +44 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 149 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7372 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 12.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [7411.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [9168.0 1.0 2.0 85.0394 -340.157 501.732 306.142 1.0 0.0 0.0 1.0 85.5394 -339.657] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 36 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +45 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 150 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7389 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/C2_0 110 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 37 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +46 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 151 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7399 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 23.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 21.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 19.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 22.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 18.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 20.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 17.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 16.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 15.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 24.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [7657.0 0.0 2.0 -1108.35 -367.559 -691.654 295.748 1.0 0.0 0.0 1.0 -1107.85 -367.059] +/11 [7681.0 1.0 2.0 85.0394 -339.732 501.732 -320.315 1.0 0.0 0.0 1.0 85.5394 -339.232] +/12 [9173.0 2.0 2.0 -501.732 -340.157 -85.0394 314.646 1.0 0.0 0.0 1.0 -501.232 -339.657] +/13 [9177.0 3.0 0.0 70.3937 -353.386 522.047 346.772 1.0 0.0 0.0 1.0 9.92126 -17832.8] +/14 [9180.0 4.0 4.0 70.3937 -290.031 522.047 283.417 1.92226 0.0 0.0 1.92226 70.3937 -290.031] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 38 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +47 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 152 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7409 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 92 0 R +/Im0 153 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +48 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 154 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7703 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 16 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 25.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [7689.0 0.0 2.0 -1101.73 -334.016 -685.039 -294.331 1.0 0.0 0.0 1.0 -1101.23 -333.516] +/11 [7737.0 1.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 119.839] +/12 [7742.0 2.0 2.0 85.0394 -340.157 501.732 -319.843 1.0 0.0 0.0 1.0 85.5394 -339.657] +/13 [9192.0 3.0 2.0 -501.266 -100.111 -84.5728 175.748 1.0 0.0 0.0 1.0 -500.766 -99.611] +/14 [9261.0 4.0 0.0 79.3701 -315.354 513.071 254.646 1.0 0.0 0.0 1.0 11.3386 -18836.9] +/15 [9264.0 5.0 4.0 79.3701 -312.862 513.071 262.032 2.00787 0.0 0.0 2.00787 79.3701 -312.862] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 155 0 R +/GS1 156 0 R +/GS2 157 0 R +>> +/Font << +/F0 89 0 R +/F1 102 0 R +/F2 88 0 R +/F3 96 0 R +/F4 101 0 R +>> +/XObject << +/Fm0 94 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +49 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 158 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7717 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 92 0 R +/Im0 159 0 R +>> +>> +/Rotate 0 +/StructParents 2 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +50 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 160 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9279 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 22.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 23.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [9290.0 0.0 0.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 0.0 -19814.2] +/11 [9292.0 1.0 4.0 -501.732 -338.516 -85.0394 324.342 1.91003 0.0 0.0 1.91003 -501.732 -338.516] +/12 [9299.0 2.0 0.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 0.0 -19814.2] +/13 [9302.0 3.0 4.0 85.9409 -340.157 500.831 325.984 1.93152 0.0 0.0 1.93152 85.9409 -340.157] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +>> +/Font << +/T1_0 89 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 94 0 R +/Im0 161 0 R +>> +>> +/Rotate 0 +/StructParents 39 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +51 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 162 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9289 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +>> +/Font << +/T1_0 89 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 92 0 R +/Im0 163 0 R +>> +>> +/Rotate 0 +/StructParents 40 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +52 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 164 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7803 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 22.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [7889.0 0.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 293.386 -7.08661] +/11 [9310.0 1.0 0.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 0.0 -20804.9] +/12 [9312.0 2.0 4.0 -496.175 -340.157 -90.597 325.984 1.91817 0.0 0.0 1.91817 -496.175 -340.157] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +>> +/Font << +/T1_0 89 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 94 0 R +/Im0 165 0 R +>> +>> +/Rotate 0 +/StructParents 41 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +53 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 166 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 7816 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/TT0 88 0 R +/T1_0 89 0 R +/T1_1 102 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 92 0 R +>> +>> +/Rotate 0 +/StructParents 42 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +54 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 167 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1845 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [1509.0 14.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [1510.0 13.0 3.0 0.00283813 -405.354 623.622 405.354 1.0 0.0 0.0 1.0 623.625 0.0] +/2 [1548.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [1571.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [1594.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/5 [1617.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1670.0 15.0 3.0 -501.492 170.209 -84.7992 309.106 1.0 0.0 0.0 1.0 -292.201 196.429] +/7 [1695.0 12.0 3.0 84.8337 170.01 501.527 308.907 1.0 0.0 0.0 1.0 294.125 196.23] +/8 [1733.0 11.0 3.0 -488.002 365.297 -85.4823 397.045 1.0 0.0 0.0 1.0 -215.734 370.258] +/9 [1811.0 10.0 3.0 85.3642 365.017 487.884 396.765 1.0 0.0 0.0 1.0 357.632 369.977] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 168 0 R +>> +/XObject << +/Fm0 169 0 R +/Fm1 170 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +55 0 obj +<< +/A4 << +/BaselineShift 3.66299 +/LineHeight 11.0 +/O /Layout +>> +/A5 << +/LineHeight 0.0 +/O /Layout +>> +/A6 << +/LineHeight 12.5 +/O /Layout +>> +/Pa1 << +/LineHeight 16.0 +/O /Layout +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +>> +/Pa3 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +/TextIndent 22.0 +>> +/Pa4 << +/LineHeight 11.0 +/O /Layout +/SpaceBefore 8.0 +/TextAlign /Justify +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa5 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa6 << +/LineHeight 16.0 +/O /Layout +>> +/Pa7 << +/LineHeight 12.0 +/O /Layout +>> +/Pa8 << +/LineHeight 11.0 +/O /Layout +>> +/Pa9 << +/LineHeight 10.75 +/O /Layout +/EndIndent 22.0 +/StartIndent 22.0 +>> +/Pa10 << +/LineHeight 12.0 +/O /Layout +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa11 << +/LineHeight 12.0 +/O /Layout +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa12 << +/LineHeight 11.0 +/O /Layout +/SpaceBefore 8.0 +/TextAlign /Justify +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa13 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa14 << +/LineHeight 11.0 +/O /Layout +/SpaceAfter 8.0 +/TextAlign /Justify +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa16 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa17 << +/LineHeight 11.0 +/O /Layout +/SpaceBefore 8.0 +/TextAlign /Justify +>> +/Pa18 << +/LineHeight 10.75 +/O /Layout +/EndIndent 22.0 +/TextIndent -14.0 +/StartIndent 39.0 +>> +/Pa20 << +/LineHeight 8.75 +/O /Layout +/TextAlign /Justify +/TextIndent -22.0 +/StartIndent 22.0 +>> +>> +endobj +56 0 obj +<< +/K 171 0 R +/Lang (de-DE) +/P 6 0 R +/S /Document +>> +endobj +57 0 obj +<< +/Nums [0 172 0 R 1 173 0 R 2 174 0 R 3 175 0 R 4 176 0 R 5 177 0 R 6 178 0 R 7 179 0 R +8 180 0 R 9 181 0 R 10 182 0 R 11 183 0 R 12 184 0 R 13 185 0 R 14 186 0 R 15 187 0 R +16 188 0 R 17 189 0 R 18 190 0 R 19 191 0 R 20 192 0 R 21 193 0 R 22 194 0 R 23 195 0 R +24 196 0 R 25 197 0 R 26 198 0 R 27 199 0 R 28 200 0 R 29 201 0 R 30 202 0 R 31 203 0 R +32 204 0 R 33 205 0 R 34 206 0 R 35 207 0 R 36 208 0 R 37 209 0 R 38 210 0 R 39 211 0 R +40 212 0 R 41 213 0 R 42 214 0 R] +>> +endobj +58 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Kapitel-Head /P +/Absatzformat_2 /P +/Endnote_1._Abs /P +/Kastenlauftext /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Zwischenhead_4 /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +/NormalParagraphStyle /P +/Tab._Versal_bold_sch /P +/Tab._Versal_bold_wei /P +>> +endobj +59 0 obj +<< +/Filter /FlateDecode +/Length 3950 +>> +stream +H‰ì—[oÜF…ßõ+úq©¾_ÃÀú +/âÀ»ì>‹…<’e¥‘"ÉNœ_¿uª9r43jJ–íÀJ7ÅivW“õÕ9õÛÎîË·J^ì(1ýy÷ʼnÏNwþ±óÛê}]îï¾íþ¼7?“ƒyóò‰Ü}ýôÕ3áÅãÇOž=;O¦;»OéÉÙ…P­õB\ÌæWkíNõ•Ðbúa§Q­2YLg¢»ø]8#ýïƒH¾µÊk²oµ±bz²ónâdãÛ &­lLÂ…Qò?Ó¿ï<Ÿî<M;o +-ôBÓ]<‡^Æ¡º8tæ8vßžíÍi©¿Í.?îOþ¸|ôâù‹Šæ=~üXðZFµŽ£5NhZh‘^¸!§¿–¸ÞMž!òHQIÝj199•ªõbòþHœãXF GÒ¶FLþ”v˜½'skÅä’&%üªñ ¥¹óª“ÇþG™Nûo>.Þ|ĉuà³èÞ›7¶uÉèòêŸÊÆ•ÝͱÎ/ùÊâL‰·¬Æ­‹ªàR/8U¶ÿC¦è’)Óþr]¸¸ p ÃOàb²Ï¶ Yûò[é4"ýXÞõ‰4ø‹†Œqï\ÒK¦‹ÏU±æ~¬­5 á4ÝÕj<ÚÆÖ{MÚÑÿ!6¦¢QW©8i¯Rí¦sh5xéüN½ºÊ¤ž“Ò£ÕÞûá9—y?Ñ|ySHº¾µå°¶|æhÛ™ÞþŽž¢§Ï¥±ÞtŸ^Ù2LÝšhËíw“×R'@x*ñ=Ù—„G5ÆãâXÄ29 2"5jM ÎhJùe®Q DkˆSâ¸K:áÿ+fCͺ¢žL›™óˆYŸºL=(Ë_ˆªDÕfL¦O§£¢5x§ß$/íõ¼Œ6Þ5/{§ê¥¥©JK76-}TíïfnÈË^N:g9¹ Ql}¾wòI?±{—ÇS™BÉž†þ=G’9T?‹›RÔéŸÄ~—¤û ]Q"¤»EãBã ž)ij9I3j>2;qª#C9ñ1{Þa³/ a%õ-æ¿—Ñt‰Í’ò©‹ ú†Â,‰Ñ­ÛÔqà7p ãv‰7jð}VxI¤t9‡áÇî¥ÖW¦&Ü 5ÎV‡M\ÁFÇîÅ+ú ›á¡š§¢O¼§­‡Çfs úÆ)uwoÇ‘RiÁÑ+$"Òs.-—çËsRd$EÌaCËöl&ùöå¦Ì#nr­_ÓiC֪ѷÎZHAH/¹.i¿Nç5i¶¸"7œÖÖ¤±Q+i\ (;ç°9]¦$°Ñðžnœ7qæªx·’Ê(%Y'ù]qW&å¥tl:k{$]Æôý£Eo`Ù«.–9ƒ•ð(¼F—ò®Ø°Kç›3™ºElŒWXûXºÄv‰ìjˮѣŒrNmŽ6 ßÛ·LEcî#Ç륢¯JE»±‰ ܶj‚»tEºìM}“"Ñv1éƒHZ"'›è‘-ujüU5Õª£µ‹üt¶ÿ¢Ž0rº4ÁairÊZ³h')I9}f eo´âÜ:ÇUÂþuÝ—qƒ¬2ùª*VŇñÛËìY¦f¢ZåQ+{©9N‚ì×=4‚Êd”]AÆÅL¾°⺅¨ÄºïÝЂn"Øk²œ),&7’°>¦ß´oPø»~[šÝXJ¿I¥ÖÝÏ, áÊ=ꌻåû¾è‡áyD¸a!:?@g %ªÃ:>`ý]Žk°5”wJÛ^>ŽwŽuȦ±Èbº?dW|êz^©È&»U^ iV܆XÓ&ë¯Ìß?jr 5ò¹ %“w.3€¥{©ðÈS/ +¸g4hàÎÍk_5ûÁ#©Y”?¡—!Ü$›KíÅVq_â¦4DZ¡$4 ÃpAø³Â–´Ý’QÖ« +ÃX@­"³É€öð@«‰´z,‘ƒ nCd¬!Òš"ÉŒ« ô*‘–›%ww"Ÿvö¸"T>(Lá18c<ó°í¥¸›¦¯¦×p¤öÍ.ä5¬ðY“}€é»ש*Êf´½£ªõ»±"º?‚W칌.Ô¦–Öf*tY¥ιÓ×Ýñ²!@¾Ò–‘žƒí AZðébŠ-n]œAÛƒ\Äo†Ÿ€+ÄS—J`_þ± +Úðíw5®µÄ©Íèdû9Ê×ÓGÒ; é6ô¦*zWœ:6dzµÙDo4­5¤„ 1.ô²p†jluK=£Ú Y·Þ_ü‚˜Ó ò˜°dþƒõ˜e´aOú^êÀ¿ΟVÈñ²;˜A”-ü÷)9[kQæ¥à\òúôYdÕÆj€ûu+5ä0Ø;¶ÎtŸO+èYkÉyo‚cñ/Ѫ—ÕŲçXµøü†*R,paªª'ù¯'ë³ñmŠà·—“[ø­¦Õ©±´¸7Z®pËÖSwç ‰·lØrÆ;+ë/pµ™M£[u·¾ï¢}™ltg£ËE!ûó =õhN¯Ö —_¶ÒÃEúKœJÃBÿ;L{ikL˜¸_…—3ëñÒéÁë.ã:iM¾Ÿ‹ñÅÔÔÙ! §w[?U_|–'RYˆÎ0бX®Xsµ°Àz£&ùð YÆŒ¶ ¥1ú™×é'…ÒaúÏ Dúr±tXyѬæOÓQÙК4D‹~g+m.÷‘ÈеÆó¿,^§ Ì²ºQ5ð\ 2F¨\ÁŸß o!>øUÁuT´!©½ ½™Üч/ð Þ%À¹ +àw!GH¶”ÿu“—‹šš¼NdSÑXËÖ2ÁØëk¿›¼bsªYâK2¹øûv¸1l{PAË¿’鬇-ýà^ò¯<®@§Lyh{Y9ªIoþâôöK¯_çÖ7¹c“ÉÌ:2+îس§ÕÒ3ÉêÎ.ùß2p‡xPÚÀ…mgÒ$Ü?îÛ´l mñ¯y¬õúA?ÿ:ã:ÝU®UQ¹A‚V ïX‚½ùÒÃK°Cp4mŽ~ÀÁ¾ê;üFZ,ø±ðûØö{Ø#nXgâˆ05¥í$C-&$õ©ÜÀÒÙ—Ndã0’fÖlzPaæÑUËëÑ+ š-÷¾˜IÞýT²¿8áG.(*‡ aòÂÕg,ºÜ…Nñ¹¸xÃeÅã\sŽ‹..¤æBt4ˆ+àF£#Âø³«D{×g #¯«TnC¥¢œüþ+Õ,P¤‰½Ä¼n=šýNˆÞ‹²¹t“ÁnA7ðÙn‰§VU|öíúîtJ4ŠéŽŽ*Vù~Šò À’ /›ã"Qç¨H›Œ£¦ÒÇÛ{l¹ù;?Eµ6›“-2=iÉ´ÒóêÜgÖJ S°7—ª`ÁĪ’øÖ#ikÑ$—AÑ>îÐD±/+¬ ©"VR­/&¼ChêÃ5 +'’^A+Öbâ{iU»|þXÚrÁ›‰ÅÝ;Žþ5Ž§:µŸÊx”qŠ8éyò¶x£PyÈçc]–舃"Æ‹:p‡M’5©ûò|µúå-ÙŸT~úµŠµùe•PÚ‹Û½P ÁY–õÏÒï×4Ü\XøÆ#ÌCœTÁ 4å£tSãi!ê"í¡åÎ3ùÑy’\­vžº :,h¢&´àDZa#¤­ %ÿÞ”¤ÍÚ¢F¦([ê䡃tfuh(c‘¤ëL6ŒÄéqYàëi2¼ßŒ/üMK1gU/<¨‡†÷^Çu†ÖÓ'̨ý½Œ­lJ«Yz»Xö„0æV'0<gkýȉ×h©TÏ`Ƹ[E2‘c^ðm]áûÿì—KoÓ@…÷ù³Äv=/ÏXBlZÔ ­Ä²J“U¤¤¿ž{ïLlc7c,ñ¨ºi;žWîwÏ9JŒvµ¯’§OÆq—ŽLÐ7„묫³:0¼µûÓˆïÙ9\Ù|Nè‚!ÓÕCŸv#y•O¼þs<ƒ_BâA…Fò<ŒiÕbC%1­úV4i…´€4·&³Âm¤S‰„ÈÑLŸ`>B+ÌcŠüBÞช®c]W ݈ñ”ìdœ},Š¦6eŸ…ÿý'ËefØöfiîgÖñ(›ÊÜ:”uÙƒr° ±(Ë(”í” Lº”m”%¹5åÄ §–ÆöÈaSò¼šr§Bž˜)¡½@íŒ3çxqÄèž8§¢@éžâÄnªÜ40’h2½»o2òø0®©Crä.šF¡_v£ŸC?zb(»Veªà&¨ÅÃìF3kò³Ø I~sÛms%c¡-c 5|´Êfùž¡N +ÍF3{ZCú:O8!S`À$ÅÄk¿ƒWYðLsðÍuvºæx@Ãp”çÞkÕËgcæqtŠ¨ÀkÔ:…Í8ø½ÀK•VŒÆó,á™»E%Öp-£„«Ê¬»KʹMHçML ©Hã:qº½d×0>ÞÙ qŠ;s¨,<‘sôr§Øðâv˜­6ú‘!ô'¥´×dÍF Š´ñœ]@/}˜«ˆ5ÀSDáÙtå½Xæ6“š«6–‚| /›©ÕëØÎL­˜Rk CÀ©¬0ÎrßÜ«[7Ùv†¤j÷\൛^Ä1i»™äП Œ†S`%Ê úÜx:ÃL’óŠŠ^m®c¬ŽFESÛ´âGÇg9›Ý0ÎØÍl=9:…Ë›ÉÑ9¿póü3™õœ»mÐÅwŠ£i#ÈŽ°PÖªQèÌ¥Gû éá.ú9÷(M‘>öŒ©¨¢·<ì*^ñuVˆz ÎPkkšKðçrhxÑú½L"ÍÞNe^f…*Üé;Ü BI‡bý† ‹Yv +ýÂõÔŽ®6k°ëo=Ë çð>Ñøt ²¾¸ôÃí†YÁ©Q£Áÿî\%9|cºž»‹³„º¶|ëÚwÃÝÚ6[2$×uú)„Øi3¥$Û.?GpL +¬‡ÒBþƯ¡¨L¨Hé*²5H‡µ6œ-nºÊä|ÃͱE[€Xf*}»˜|bk¿uÄ–½ž`gÿÎ{ËN¬‹‹Ü­ þl™¥/[X™B‹NU©ýÊ^ä¹U/cÖVÉü: Ø=wsT]%õWíãWpüÖÊ°J;ñ .ÀzBi¬6—W 9¯àMÉk +üô“Mcá¿·ð¥’t i³êæ—ÔZŽ~ +endstream +endobj +60 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +61 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +62 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +63 0 obj +<< +/BaseFont /RVUZKV+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 215 0 R +/LastChar 122 +/Subtype /TrueType +/ToUnicode 216 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 333 250 0 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 778 0 709 774 611 556 763 832 337 0 0 0 0 831 0 +604 0 668 525 613 0 722 1000 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 0 556 291 883 582 546 +601 0 395 424 326 603 565 834 516 556 500] +>> +endobj +64 0 obj +<< +/BaseFont /XRUJQJ+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 217 0 R +/LastChar 122 +/Subtype /TrueType +/ToUnicode 218 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 0 218 0 +452 348 462 434 452 434 462 462 452 442 236 0 0 0 0 0 +0 696 574 650 726 536 0 726 0 348 0 0 0 884 0 0 +556 0 660 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 0 302 264 0 312 800 556 490 +528 556 378 396 340 546 508 0 462 518 442] +>> +endobj +65 0 obj +<< +/BaseFont /TQAQMR+Wingdings-Regular +/DescendantFonts 219 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 220 0 R +/Type /Font +>> +endobj +66 0 obj +<< +/BaseFont /BPZMUB+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 221 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 222 0 R +/Type /Font +/Widths [233 0 426 0 426 0 426] +>> +endobj +67 0 obj +<< +/BaseFont /UUKWAP+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 223 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 224 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 666 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 482 569 0 0 501 0 0 0 234 0 0 236 834 555 549 +0 0 0 0 331 0 0 0 0 0 428] +>> +endobj +68 0 obj +<< +/BaseFont /EBMJKV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 225 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 226 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 528 0 0 730 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +610 0 403 451 383 598 551 0 0 0 486] +>> +endobj +69 0 obj +<< +/BaseFont /GELVMR+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 227 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 228 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 555 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +70 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12093 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 60 0 R +>> +/ExtGState << +/GS0 61 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—IŽ\ÉD÷uŠüó°ÖBЩ{Q%@Íûzf™Y$°2âÇàƒ¹¹Eº×ìWºwjú¿^ÿùñÇ?ÿ•®?~¤;¥z=ÖÝù8J½GÞ×Êéži_ÿûã?üƒ•?~²³\×Ïÿýøß•¯Ä¿|õ:îVK¿J_wIu\?¾>ôéë#ç»æëQò½8(·»†a½æ纓Íc^?>=ÛõÈ©ß™Gi÷l›‰Úî½øÑë][r÷îE{V¿kíLrYµß²~`ÌìZÝ÷ݳÏÁ¼Þ´-ïÍeÜ‘±0á3&rkeÕhwòí©žmóžeÅ®q—zí{î¢ù†såªóîKãÆ«§»ŽîÕµ–zõy¯,¹a÷y|ÏÅ{qó"Ú7Fh S*šH}úÞÕ|üæ@Å“5»ºrõá3¾<‘ç¾:w­qiXÙD€‡j8p¦qåÌg¿'Ê]buëY£±ûõ<«Õ;Mgd·»å¡‰îÓê=ÇÐòÕ·‡­. k¶ÇLT¬â¶Þ›¿Ë‘–"kÚ ê&õ,×w&f’1垸Æò¼›‡™Ìž!Ëç&Ã^^†ò´îŒí‡äʉrá°@Æ™©”ë“ Vnöç/ÛÀMIÊÚÖ÷Òòhlœ¿µºËxr;S¾Ênln€…H•éŒj5¾”vUÆËêÆr +Ià:>—DVì $e\Òrr¼®¼î]¶òPú·ÃŠ‹EÔ…;,®ƒa£Ö\Žš²¤eûÍ/–Pùiø³dú k`á  +¨€n‚Ó"çk9 ,ÍÈJÇf¾Ï@È7ø ä)cµg +X§'ÕÊŽªÒöŸàZ0ßë<éÛ#¾¤à(A"ÙgrÀkëþ›U)¬+ÏhGæÅl:‰ÙbÇäÖÏWÊ8«Öou `{_¶Þp=©KŸÁ©j#óÌO‡F%Â;ä}oçæ m‘ ãr‚já½âvrAìŒþ _숪óeF±P‘xY ¹ñJjÀe¢-ç\ŠfÇ ÛR¾äˆ]rs…¯øžB%‹1·c—f´Åé®"{’  ¢ªØIÆ_ëzJ4n}öq1Ü0š51|$Ž§´w5„ê1,²ˆ ¨Çúv€ôQö¸Ø! 51ÝÊ…ºlhÕióŽ¶B.5‚–ŠMƒf&$n!´½”cqã8|fz0Ù%MJ†ÉNâî®W©)ñ¹ê5¤— °N‘&¨N ³XÌkqŒÕij¿.B¾BÈùá1¾µ (·B«b5™qy™“Dì ¦Y÷ãð¾JBòz*eŽ2J +ÆAzŽÅb3‘ëòŒR©#u«Ñ=Rˆtéñ®iVÁ `è8úQÖ·}D?’Öã®–DEíʯ¥ùR»´ºÜ@NÑóÙÉ5Ãás;).Œñjù®,›~Ô–+$ž(õ«BI!o¿é [¼¶r|4>†;“Ÿh$DôMßZzR47¢hdœ£Û{}&Žª‚éQ“Ô‰¢>É%.Ñ7žÊGõš¸~Eb@H̪Úâ{o~ÝHhµ•gÞMòDB°“–ÀÔ¬ºúÅOÕ°˜H¥J JÖKÄI÷Z².(U*Y.ø£rJ96¦ñ„àiÉ,‡(Ú~ºŽÈ˜(Iñ”¸²(XÙA¤!S—Ô¾¥Ç%Ó$sª»ur yNHÓo9X4²DLªß^ù­àßrñùz)5ÅS¿ô>Ç#Rdç rY5ŸÅæe¾Þ…¿ÅM4Ü~%¤¾^„ +à§ðíç’I€å¦Zʳ–^Ôc¡àÞÖˆUí‰BY¯§µ™{0þnù ¨.†ª¾H©Ø/ †0Ê/R¥IÆËïIÃ::[8l=ÔCs’Ï>£áŠÆåŠã ü×õj2–·õ—ÖË®³d³_LwÎu?`®ÁÆåݧ©ÎeCOŸÍ[ñm›žu…\+ô[Ô¯Cš¡ÒÙ¼=U‹ÓˆΑÏÙLÔøá{é›VËþI‹H2t¿#¸nb·}©·ÃGVWGˆª^$Ì“]‡œ±àòØ=Ü£ù-tjeÜ_Ý…¥\¾¢ØÂ-¬&H‹tˆ`£º‰Ò’x¶q +ã!+çòMÎbZ@bE+‘®Á HM½®ºã÷¨ûQ‹,ÓîK¡ŒæšÒ¢rÐ’·$çñ{øMµÆßùZÈ`#ƒZ†loØWÉÜÙrƒ*gl+˜¡ZG‘i‡!ó\©ñj_0µ#GŠ¸(%”ÏÌ |U¤©µÞÀïe¿ïŒ°)¨Îê;6åòÖ…M‹M¤:ÔÞ*&N¤"=.®ág#](‰d§qL’²ê{ i,÷ä§l${rT l° >¿:*eîYÒë_÷¨Œ6]Ôeþ+–KJ¥Ê"¥ÖÃu#¡l™À£ÑrÊ`´•…áÖVÙ&ähʈðÁ°L¡©j¿´.¿Îù³Aá´‡À«*(,ž8 àrÅh ¹9¥Ø9>¨*÷(lQó=©'²k’¸°^D×ýØ RK¹` ñ*¨ˆ6Ë-ªcQOZ&¡‡NƵ™˜qm ‘–4žž³(té­lMî®[ò$´ÏQUëü°ŒâÀa,Y¼ÅÅØ–× 9k¹ IxþоCÞ¯/êÚÐKÿØô,Q6ÅÓ¿› •Lq3Û§ SþìmXº +Ž9ö?Àܼì«ä,‚[ŠÒø!~«.‘3\NÔb,üÎ6ÿ|Ž….e€)Š†”@²/§t£ÏÙÝf5 ô4:¶P­²8£SÖorÓ|fð»²;iðÂ|Ì… Iäw¯ëÉ·Á+[·Ä©MÆ]@K‚K.9•¾êð…›~×H䌘¯ 2ðË`>S„ 9…ÿSb„G–þR›NĨUÎÈg¨ˆ‚ÍûCó1g|EÈB¾ªoSѵiB§sæâÄ…0PñD‘áÀ‚EMºûÕˆäF(Ú¹Å1í X@}³bšA,VDú[]”ÙP.ŠÚPö¨¹b'U"ô.VkJ9@$+W N² +«= +‘êT¶(‘ó»F%ÀQ„³8£%öj„ª +™ïâZHB’s%ï—äw5í %?f.#xe…*ZØ®†¯¼QîRÏ›Y¸ÍÑ6lœá}Gæh~4„MyPˆo®)ÀT÷]͵=„õÇnH¤pßêš”²!!µñè +$hRIY •¦¡î÷塾܊\î?ã…Vð3Su˜,„ﶦaÇ3d_©—¾ì59pxq°ú1X³¶™”Šr¦,jJfì°.k©˜ß¥)dª_·Y‘l^ÐBq ¸gÐñ'…u%¶+-’ßxõ<b'Ìf ¸ªÏf=ö|”jíâOçá:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½K¤Ÿw[y¹î5;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re‡zó6Åñ–÷¸ûjB-¾Z-‰„Mð#¿™û×’L¼¤uý¹?#íýĭתr¸œ˜¥ç“2¿ê›iU£fÖ÷”ΚǦeÌw‡R&«¶’vLuMÀÃÍ›$Î Ö ÔêŒqAq³aýÕzÏ¡uØŽP0Ó×ë+ êù!â¿Ã›È7†Ð9ãî°zè7‡ØòÜ·æ>ƒMé_Ã'õ”~=í^·r2o×óIeØÖîH€–‘Ͻq¡ç«›HéâüS å_5 @ÞÚ÷&õBV§i#¦‚· g˜,0"2t’Ç]é]1p¶˜Ð¸È20R‚Ãâ‹ «J<¯IÝÒüQLzšœRœF%±4’óà±.Šïqtð¹eY· IH0«‰êb$&´K-À%"ßì©* +ãÌ9PMŒÇ™Ö>øžnÈCÖÌäMh jó&…]´’ + Q3B›2™W`ÏâÎÞKhË—P`ZíÞ”áHÍ]ŽãÇ­75àVî‹ÚÕ®ôgÇ;¾’öHøDCý†Ìˆ$¬†Å‹5‰3A3Î[OƒÄW‡9Ô'qo:Bf2®¯°½4—ð¢ÁðÍ t£Êù9$úÏb™Ù™y¸¯MLÀwãx#÷íÔ‡·cc‰ïIÀidƒ 3k±œ¾ÊNke®å¾;٦ߢQ­W.èeIvç8v®ŸrI›š@¥ÜêK™@Ôöš”dõÖ¹Äd„ñЗìÇTô¬„0¢!;ú_šØaèÈàQB£ƒ©ï%B)æŠú2qU¤ÒŒx.à ð´Ä£zô§N0pdh 3E6þ[Š»{TCe”Pž¡þHž`Α$ CeIˆCñvVܧœSÜ&Z0Y~p‘ðÍ ¡¹&àõtß’øì¬"÷¯} ÄÛ¹ônM9솾d™T„HÒ|!œ©¼©B¯tOÒJÜ…U\î9ï´é# +j .WÝ­èRÉ8ÓÝŠõ»m +¢‘€3¶šéJ*"‰Y¹.æ°qª„‘ʶçíëÜEw0 £„O\f°ÁaTQzØ´‹‡‰ž’ò…_ ¡x5Ë”û Û +ëiâ [@ ³6&²# †"ýæ 3ÂyüæÐŽWv‰Ä~dwJ–a@Ê°ØÓÊ È}‰t—åZÃK‡Ž¡Èä)SXVÎ+S/°¨—‰d{šx™€·@±×^ìƒ]g’tsþ—€ðq^d÷ßÔ1›U=—ehzö ’›ÉEJ/J;\Òù ”ÙyR—¾ƒšþŽËU¬¼UßK°Y›o +f-ª9G·´`ÞÚ6g„ «V€{æAwHGã›(c h[H°&b êØŒwÑò+ó4§ ‰’98°Úø²¼ _D+Òò*?Ä8?ÿ‡yX„)B">v;UïÔ@g­b‰j—{Åõ0Çß + +'lT¶ž»á¿öçtC{Äè_m`EU%~?—¼æÖ™ø¨îuéÏ­A_Å]kVVj½^2Ý42Gì6ú#c°AbDůî ÷[z¢“ 6˜S¸‰&ŽÓ®¶•kTë5‹kK{{±Î? +;Ãr Ç¿Â nÄÝ€tTÝŒDcp÷¯¦Œñ1GRÆ&›Y– aSPáo,“Ó9×ö•ÀHíÇzíZ´"¸¢Ùîò¤ôë‚¢V„Ë4PÕˆÈ CæŽIãÅS¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bðìKT“ì_L±ãÍUMø BãÛÊoXù*1J‚êíW#Ð3Ã¥ïIlJËëâˆÆ"›=›’Š9²(°cés²úZ´LJLŸ9ínum· ã3'W—…½‘ #Á-ýM‚±–”e¡rÜŽQD}ó˜:-¤©·ßuÛé ™05êÐgUG̪„Üêîˆ[›Ø¥ÿÇu•dÙð«ô’§YÔyz›ÜÛ(Û]«*ó[²D‚¨€>ï‡çÑw‚}Rø†ê‚g&ß8ôÔh'ò%ŒX󔇀Ø÷Î9hŸu!Mˆl7ÛC0éÓ48LÒ”¿ócÀÖ¢(Áƒ,V²°"4N5N"™¹hE9H/F$oÒ›Ž•CÉw¬·‹i©yk?›üu¨ÌkùäÞ ƒb¨Έº.¹ ñw!‡vÁòNÉÇÍu—˜pðŒ€5«i 6÷ˆ[úgZ<×÷eÜñ,ðЄÊòz§¶Ï4‹nQê¾Þ(I¦:÷èÝÊÙU¡ùàš ô/wÑ2Ý]JfJSŽÐ>Ë!°!R@sIþÀè@ ü «RYi¤AâÓ§¨KšD§LjÝôüU+TN‰Ùh»0E8Ûhá"_€‹Leãã{ìß›'¼{~0ÁÍcH—½Ddy–"ƒžšû‡‡"ƆÎ@.©Æ³­9{~›Ç°mAè¨ya¼ªÊ•Xð,G+¶cK+ƒ´5ž =Þ—Þ¡t1IÕÉ7Ù¾)°§dÄî!ñð|Ä÷F Š  Ö"ä”ÇzÌ8JX93DXc Ÿ&’“éO@ úŸ ×ï+Ÿ5r¢IZ„߶÷†æ8ìÛ¤y<‚¾ êK†8ÅÖù*&‡¹G`ÓÔÃf±¦®’‹ÀIÅ@jVðÞ¢Ú~ZN7± ¥Û’~9w!¯¥é4hK teè˜À¢Ëe"“°Pö< FBdÓìå§kìÌö¿ÓƒæI–«˜(KÌ;Š—¨ãæ¡ðä.·Å¸5_ Q]l[U‰LøbÂùŽ +‹ñˆæ”P/XÇöd·DÃ2¡cNÉÊŽbXê8ƒxA`d{B-<@Í¢wšmÇϹ»­;ão®Šo_hšn¸ÍfBØÓkúS!+§¡’Û”+JÂsCYÉZCè­'WøÞe†="Lº.^+Ça³ZÛ×È̊䨽l\§·#«›üØFI ¨Ü}CwGMÅç`PŽŒ§Vh¶Y¾O䈺öx¬;EÔÏÌ€+U +<çl(z!¢÷ÇÝÜg—AæñŽ´%ÛF_ÖfzœÂØáÿŠ~¨€ŒDV\ttgå?<:,ÓOÒM,;¦S‡X2Ù3žCóPPYšxkY bÄEËÎ4Ð=hG(Éi‰?Í`X!SBŽï¹B}GiÛßI ‘I4à]jDVèï½ÐG‡)ƒ_®óé¼PuΑiD¯êX‘t%óë«Gkév¶.V¬ÿò¤]o ;RaßXT‹ÁY"40Õ/‹ÑÛÀÞ0ux£üNÆJžÄï‚Üe¬ÑíɬԘ¬(Éx×—'­ßç™W¤e$”±•aËbáñ™´ðÄ´ç/i.º=NúáZ zc~aQK· ½àæ;zÌ©…mÂ7Tol[ÍCAö§{FÒR MçÁÀÔ.8®É*ÜÁM†×È|á¹K¦0ðÔ÷÷lK}%G 45a×¥†XÖJ¾¡ -×\TÕCÓ=ÄE5{¢ïïÙ@‹k·»H租'þp˜Èa7äî°&GÎ<Ú݃1V[¼rŽf¼òž©.õ»'naÆ_ìøJ õõ»*iP4¶ÌI·—GoÊ¡þÀ –µ¦¿®’PÈšE%jFr¸(¸ÏÐWÜQ¡5M*òJ`ΈñÈŸ5¼n6Œ¸åXõè8ØÅÏtýŸŸgú÷5TXIBCµÓÕ8šӮs/¥ŸhÞ*ì Gá‰÷É”ýâK”qî\Ð ¼(†…‘ ®ù¼ØÎA¡q.›¨rçÊ$”Òð®ÀN!£‹Æ2/Ï$ðÎzá¢g’W¶îS½îñÇ‘¦ó·eÞ’™Á³ìŽz=tÅ-B࿹ùupÁ1Þcžff¤Â™Ú "“|pzÊ VÒ¥ãYZˆçá9ãŒR‚SˆA–¶óTj»]Ùï¼Æ~ïçJƒ“"öëÀŒI6±²Ìd5’V?íŽ+·®iYª­–N*R¿ñs¾ï„æ õö.V¥êºª›Sˆ„ð‡›@ýÊ âSÃS®+È°…˜/h åé~?u|5’7‹ Þ•afòhE°E$‰!ñ¤‰w[W1nµÓ‰ê~'D6_¥52Ñþê¡WˆÉ¡:—éÑÊ™#©Z›²Ïùf ölÉþ 0½ÈQµëù"™›ƒ=5]kcˆ×±q4õ:u²gèÁF¼JS–¹ ¾%¹KÚ=S¨(ƃn@›k­ÞGsì- «ÛûL&¦ü8u’\=Ç4ÙÙWôØþµHìÒ:F ·D71`÷#,ÀÉ؉maûï M®2ç½óN¨Œ›¯_œó[+ÒÄ¥…µ¹†„b3îÌŒË]u<‰©u*fx‘e”üýAžRM/‡n@OÔ>DÙU «9¯k¨’UI¢ù£ÆL4ëAŠ?~܃ý}†*×»<ªBݸַ|² +ŸG£Åa—ïJN,DÖé+¦£1h{ ?§4êrÄ• ÛÍŸ&œýˆÚÑm5#»Ä˜bÜù^ª¡J©‡‡JqZ•øéBCº4ª€UgÃûûBÂq†õÌ3­O€Iy” G”-N»â ¨iXœ3êWA$Ò=sýDU: B¦RÌ0 ÷Ç‹“;ëlírûjŸXP fÞÆUOgŸØ˜Óë—©©—Œké¿ ç«šÝ’dð­.™+2{úr†‘sL­Å *@µ>dª!Ícƒ®_’@{™ÃPj÷}šŠ$ªO0h—[õ¨Œ“;Õ¨᯵¤¾›Š(êÈՎΫ&?¢ù©ÐzÕoØc¨áØRšsØë.‡68‹H+Öôœs@ØFèJ_úä ]Ï™MýA0”ÎfÍÍ‚'ž@Â7møæèœbZwï¦%ñ‹Ž7Ü·¥µAS‘Ø̉!_•’Âݧ{X +í‚Èž°žÒÔoŠÏrEÍôºñ(g‹Y)ÏT×)|G!ÕŽUÏĪyc2’©R O•]˜›{2ÝKf(¿cX’ÏÕÜáíÉÍðBDÕï3ãêÜ|¯åYVeÅ;Žy8UMæ»:¥d†Ws³&=¼d<›¥t é B!–ÛøëÕ©žïT&AL(„-@qyßwÉ|jYü¼çi„ø±¿. XtèÖÉ4Ò|äѪéÛtó='J›=wèÿ+“¬ ÌDħªµºÛoäœÂϧ̵e®Ó}öK—§K{=D+"¿œ—´ÃT±öó¾([<’5\3礼ÉBffÎ;ðÜï<°œ5ÿŽ9¯Ÿ5‡¹žÔ‘³È*Ã~ºÀ†ör ]1(¥U­M†Z§%ÌEè”ñ8é‰)ó 9ù´B’*™IÊ:²GK¸ œ¿µe£)mj¡Ôî' Ê«Ký׫]f_Xêgª;¼«üâ’Q‚¥œ <èG¤r[žÊŽÚcÅ…™¼t…¤Y‘áùî¤@ú]7Íe¼ ÙÖq²m„­&t-–œúËù¤ªC…²,ã¿ÈéÏ ü×F¤rpM„h’zÝ¿”ð}ˆ6 ,=6µÔ—“~²ºí—óeÑB¼´óç ­¬ˆR˜·¾}¹ „·Pa²¢;ˆ!Ý-—žÙYÙrµ×ƒßqŸ”˜¤Õ Šc×áÉå±Pm¦+‚«ÈÚ'}©ÉsœbÐ{ýckÀVÈBH¬*£ºœóŒÐH¢l=E­Ãð«Çðg™î´Ô£Bó|"¥‘æ8c·›îhl1ÇZÀ}µÜu·3 +IµœúñÝ^r;ÒÙ¢6×Iôga%B7¤¡4tqâÍÍÂ(€pËNœÉ•Áõ!êGµêÕ^*£‹¤]h±0ÓaR`‹µèÈr¦6øIFêºeÕÏ¢J*‰Z¯p–v‘ØDÈÉ78ã°†eÏì:ÏIºª¼rˆ´nf'8YgžtÊfÈŶ/µõRX€\Gñvˆ£ÓòÛ—š^ ×¢d³3²KŒ•™÷¶Hsņ{&ªŒª‚6t™Ñ7dågUoà’Ž"ëü¾ ¦O†¨óm碞 ¨“á·S¨–àªýVΣp¥tð«šsÔþÙPdwÐ-vf˜ cÁ%{€Ë4Øý8¢¢¨E- B…rOm`Xó,s:Š¨7 öþÒõáÒ8…dKäA”ÃQê[_ÀÀ û¬„åOïÀ¿¢Bj¨­2îÜLY‚k±U¢E… \öfó*q«ŠjvøTæØfáÒð†Ÿg›ä -³'mÔ…@žU‡|g¡— ØÀ°µ‰® ed8E½ž—%Š\Q€ž£ªlX*ÀÕJ¶WËp+¢Ñw¿½L?E]Zn»ž{H¯Œ–Ž¯hå3öÄÃH˜+Jßö”âð›LòûCào!%bRвfÍ´û>7å‰Â¨C¯ùȱ–Rv"ñg<žêØ<@ÑðŸ[2.ˆ¡zl-gs{çxCõúŸó9Û ;4b_3gYGºUŒy +¢äeQ‰^ª‹3!¾"½¸@43DètgDx‘¦o'”ä1ˆRhŒz_9EqÛ¨šnÍ;°pÙŒ'ºy[aÕ‰€)¼×b—¨ð}=\ËEºUt úÓøfVóP¢(]𦥖ѤƒnzÒÔ“Vü¹UÕéØÅ:‘­üÌ–©´ÝL9AØþùìI¦QÑ7nÒœÉÖe¾…*r•ör#!ªž‰¹òH9yʼnÏqÈÖêz&Azà‚BǺü¼l¨WIœÂ>‡Xt»‡(…—­’ß. +oë_;ä2½kfÛ~’œP]“ÂûÉ©¥?µ¯¸¾| kõÅŒeÜnA]wÄÚ]„Ü|Öìÿe»Ìn#†a ÚÊ6`@²uv”þ+È›!A¾ŒÅú Èá·Á«;ÂMôf€ný}‹ƒ‘±ßlVƒÙú1mm ϶bŽ©½+HÄãpFX”¤äóÚÞvöåµNÚEÜ^,@ V¢5OS±TWÛèaÚëþ3«æ«"êNY~}7YŒ0CWæ1™k #rò(¨@ÒtÏø­†³…sèßé(Bu ‡+Õqa>ÖÌa +§¤–§ë?™DÍ„™,¶òzAÔâcf0Üü'¬··¦ÿªúdžS镬ۡ$æ¯E4^@[Nͨ¸¯Yrfºu4µCJgw#Ê&+upAæýÇG^[רc>á ”zéql\Ë®/!4Oú!u6ð©^Ô£;’”zÖÏ1Kâ‰Û"*Ï•´$ú"«Ÿˆªv·Ì9çv=k-ÈOW‡%Eû“)èW4MŽ/s† +Ü~ƒ`‘K=ßå# :~E/i8Ûjt±•ëY¡ïZrKâ> +/ExtGState << +/GS0 61 0 R +>> +/Font << +/C2_0 229 0 R +/T1_0 230 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒMKÃ@†ïó+Þ£^vg7û‘@ØmÁê!{‘X°…$¥è¯wôæe¾˜yßgôÕ0½õ»nB]ë{èÛÝÇñ4¡iVëZeÒ©et# 0vÒ×Ò¾Ž¤³ybæž¹ƒ„ód‘%}Îõ€ ¢—Š•‡«*b`½ò>Èí;]Ü\æ=m2m¶b§ÿ“Ú¦MwÄ¢z†ÃVöxxd<‹H²?dff(€ÞEÜ·½-y±¯™K×ü&øû­`*[U ±±Q¶€W†-†êéK€xI¨ +endstream +endobj +72 0 obj +<< +/Filter /FlateDecode +/Length 2742 +>> +stream +H‰ì—[oÇÇßù)æ‘”«¹_ÀmÙn‹pc¢/FdÝâÆ]ìÄŸ>ç²\ήHj6¬ZÇ•x—»sÝùÿÎùŸ_&¯ß*q~=QbþýÁ«…‡ËÉ?&¿ Ÿk~~ðF˜ŸMfªQʉù±À;Äü³Ð¦ñÜo´¶MŒ>ˆ¨lcsóÅdäüß“ƒ·—G0ý³ã›Û£óÓ_ož¼zùê•R*?}úTÐôªqÖÀPó“ÉT`§—?ÀSÝhïùé»é3é|cÄôXh-¦7fÔbúA:º~Âç~l‡ï׿N¥5ØëZÂâ§âDºŒo¥‚µO¯¤Ñxý?£˜^Hë±ñ94ÆÎØÜñ(F‰éBºˆ—ÒZìõ^ZÕõý(-ßCƒ/ÒDlp$.ä±uÎ8׿柼œóŽ·T*ª±&µgAwó0Ù7!¥Ü;‹f÷¿'eTwRÓ¦;ž{‹E“n2®4.ºFýy ßÕô5¶–ËÔXº¿gYYˉk–8®–GßSó¤ðŽ)è¤EHpØ&Gœô([‡Ž³‘>àQkAçX³¥bŦI¶ø[9‹¨Œc9]\ÊY@ñÀÕ³(g†d63¤ä ©IdçRãÏ¿ˆOÒjl"E­^Éëm¦áõ\þÒžfPMB]ÚÄ Íú× [J‡Ï/ÄvÃ7ÔñDÀ²"ÒvN/4O븖Z3w3ñ +„á,¡Å³T!uÖÒŒovhÉÀ·7/ÿŒ×5m€xd È–bÜJv5¨Ùô>­Ý§¾ .Ýü^Aà»3}}7ñNŒ¯…Ö–x‰”•6óà&àë–WüΠjÐÈè|h +‰Q€“Ü%¼¹”žïZ®èº¼(¦½wËn³àÌþm*þ[¹n ×`´ÔÞöd9÷$å=ö^ü +i·ér]û"í«ý%²¿lÙÞŒ48½˜á # ,댰Y¸ ÿ šßÇŽ“§Æ¹„Äi¥9È®ýÜðïÄixÖzEX™Å:¸ãf¸5šG¸ÿ×›&«h{BùÊÓÀa+ÝbîÃÌË•í‹y¨Â<÷1ßm² EFç¡É¶dÝÞ€ÿ =Óyä#Âœ¨î<*j˜ê'q`k¶ãxeCz†ÂOZr± &h¥þÏí×|Ý„³‡*“ )T¹ÕmïñVz7È5š/`ÇŠÌ Ö=\LE#ÈU®Q&;sß›Üg2aŸ‘_[€{µ¦1 ‹«Ÿ×81^ź m»”«Â6̯où…çwëÞU4(á÷Ø`=È*w¦#¶ø‚%›;-xŽ¥tøü¢2jØǨ±‹ZëÀ—)ï{ŠÜEíJÝÀ±vî6m»!-—YBë õ›\4@:ÙLªO€d²–&„ŒVk qÆ».àÝô„N¬-‰£H)üÂô<²A¡/FKð¾DGX‘Ï8ÃÇ`4l`4 “ÌÆz6ÂW}Oý:Äü­_7¥X°£Fßå(Ç<ß~ÍÕÑ õݦ·¿î‚ÞTGo,)0½êÃ-ô@I».ÍN³j“Xff³æ¹ôëÞ+Û¤¹Jhv1i^.%ÍuEo`ÏlÛgV ε ÎƵøæÇÔöÕ^7Ò«— ¶¢ãÇÀ«ÕÀ[,{<»Z°ÇÞ¹Æ9‡ö˜ÌdÚÛ¿dF°De÷ËnU,Z^ZxEdÏkUÈ°üéBrª];\ÈÕ”¤«ØÕæ‘Ýÿùuc›Á ‚.8Ò„ÚpǽU—Œæ:FKÇ~0ŸÃØb~6]*»Æ3Í‹7°&F jLVAÓÔq§K.¾<øX·J¬ëÇKI8ähV„ÿ(9ž\\‚svD)â®Ö¯ /³µ†ÝdÊÁ”·1kgªg¡×wâRÚ†gŒK™0|Bôõ¡TÏA…FˆëÄúB«3A™¥qŒÃ)°]׊]Óº„þ`©]>õÃ> +QlúE5©6t7LØt&5%«Ÿá¹æ4Ô5€š4cŸkhiÒ„.%ýç8²¾¢,ê«M°Ñ&x_t-GTÈF¡½{ k=¤Æ U©õ©q £½uìɨ©cÔŽa¾ÉÉÜatf»7¤oØ+Þ0Þ{i™5„” ñt,>KëÙi®à1Täƒ7xNÆûŠBÓ©±E–5>Öš+SÈõøjWðŽoú¥éu¥M4îÇÃT©&%Ä£_M]9‚Ô¾ËW 7Îu3©½¥ìIª­#5Œ!ÕæÆ¡ø Âtïöõ¤&N,×\ŽëÂUúD`Ä›ë¥Dଟ"iAçXàÅuâšÍ6ñÎækØŽ~©:¬ç ɳ,qMðäÖ’xÝ $n¸vü­ì²h)4 ¹u(?4˜¾½þêTJ5­Rmum·s[×õöPèÒ×­(÷Ë:º-ë”]K´WPj8ÈH_nRVŽuú N†ŽeB'’p$²€ù«x†)Îð;¼S ß£(èê8²gֆΟ0Š“þ(¨µ 䆼V¦ç™óY8P#^®ë”aûîÖšÔÆ|ºnÙXÈD!ÅÞ–k‚XÉv$‘5®#bžÕw§ÕØP/¥Þ;9•;\ë Ž G?ª¤eKµKG6¥ÆzjuôM»F½†&ü¦ßŽ‚˜kÅ“P$Çâ£t("CÚùMšŒWÔŽcoÊKp0ðóL‰ìØ ¾F¯´æ:½b$ô¨hR`ÅÚßðþ‹¤b∪¬måyÜÔž+X7a,mN+-‹µ[ôkliÙ"\3¸°òHʨò_“·ÈÛ¹VßYï§ïm;³±NÔ~#w»Ô ÷" •ê~)4¡ºßJÏRÞ3`ÀÒl (ÎPÁy*ZݬTOú[°¿ÔÇ…y,¶?Ç{]6ÛÔr¥G}œghð}÷¼›»VÁaL¶È J÷>çÖü ’Œƒ“sцܸ§$Ë-•’Lu’L£%i#xYj%yØ\”d¸W’—,?Lçõa1FžAÌ EŒìÅL‹Óf||.~iy‹º#i|цËí²ÄqXéí{!zå-jÕ™G©²IÒÀaùewøƒ‡Ð§SC$Ö§ÛSå–Juæ*uº¡Qñm$§›í… mÐ,Ñ—Ím[‚PÑÊ«¶¾h‹‡ÀIˆLâ͆j?è̘óÖP@êœco™Õ~ð¡…`‡*¬•ßS +ån )8[Jáw ƒ + +endstream +endobj +73 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 66 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 60 0 R +>> +/ExtGState << +/GS0 61 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥séZ虘(@)3#c=3CK C=sK…¢T®4.€¸á † +endstream +endobj +74 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 601 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 60 0 R +>> +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/C2_0 231 0 R +/T1_0 232 0 R +/T1_1 233 0 R +/T1_2 234 0 R +/T1_3 235 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰œTËnÛ0¼ë+ö(Å—D +0$Ž¸mR Ö- +Õ/8HìB–á&_ß]Jql5mâž´"¹3ÃÝYÆgU½œ—“z½øÄ_˧õ¶†Áà +‰ãwe!¿lù‰[m<þY®0álRoˇbö«î á"Ëó|nG‰å©±öH x!¤âÃj+¸Ü Õ¢Si_ÊCÑ®S “ýQÛpÄ"Í„+f¸†°f‹0‹wVÌñ ÂØ×#–Ò¦ o†ÿpÁ"ƒ$á’E’r6„‹e…YøÿHë¸_ú@y„„›âH*bù´Gô'’63Ö?Hô‚”<´ß%q§>“(w 4rÄ°\¯ËÕ´ n˜Çñ÷”­æÕÀ65h¡ÝÐc–‘øš$#1!fæï¥J5â7ì®ø|‚ÿ:cýV];µY[ÃUæ²c«ÁI¦?¶ÙÍ%z+¸B’{¸½0E˜¾zñž¤Ùs^ƒCØÀTx³›VAOgò5¡¡§@ÒS°Çwè,­M_èSñ;£tðâè}‰;OŠÎäžûuˆ™Û®`H]N¼}¤wzVšÆ@dp\ÙbÐXÑÌW¤yã Y÷³”¤˜ö'䘦?&ÓŒû×mTŠ)¤”òí>ûmŸûD*H-×JCÂ¥PPÍ‚yð[€N:R8 +endstream +endobj +75 0 obj +<< +/Filter /FlateDecode +/Length 143 +>> +stream +H‰<ŽË +Â0D÷÷+f©›ÜDMk¡ìC7ï^J E¡–š¸ðï ˆ2‹9œ™øpÑ> +/ExtGState << +/GS0 61 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥sè+èZ虘(˜ë™Z*Xè™X*¥r¥qª_ K +endstream +endobj +77 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 176 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 60 0 R +>> +/ExtGState << +/GS0 61 0 R +>> +/Font << +/C2_0 236 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŽA ‚@„ïïWÌ/Ø}®®ˆ&]²î-"Ä2*p ©_ß³Ë<˜ù†yz=N÷¾í&d™>@ïÚÏë=!Ï‹M *é²a”  )÷ÄÊbF„ŒÇãÒ[an^Xsf!]O × âæE<–ó]¢©X,j£DÅQÃXeR–ìAsån ÊQUËÿùÎ/ó¾{’µ±2«ÕR±Aœ¨Ð„°*`ƒñJ=ýFõ/X +endstream +endobj +78 0 obj +<< +/Filter /FlateDecode +/Length 1143 +>> +stream +H‰¬VÛnÛ8}×WðQ|Å‹HY@` ©“¢EŠÝnôV, +ŵ]ïÆ—µ•f³_ß™!eQ‰Å"ˆ-ÛÃá™sÎ ™¿ÙµËy3mÙÅEþËoš§ÍCËÆãËÉ[–\Ö‰dRhcáµ( Û-’üÝ­d‹}’×ê‹dŠÕóĉ௖U)F®pL[a­ƒ€U’*^ÿ•\ÕÉÕGÈú$]À}“_¯$›l’OIþ;¸iÖ –ÎÖÙ»Kž|û~9#(Â!ŽÒhxIKh…ò(2)¤®X=eáá‘š`YÇFVHSÌUð Ë +Q}N žYáX*x¦Gø %ÿ³þp@z +•z• €¤{H2@RAÊo·Í’¾™¶Í}=û·½¸¾º¾–7eÕ‹€ë‚©Â ]Y=@ž2â!~N'XD ¹Š¥« — Cz·äKºç%¾-¹š¥ÿñLÝðJ–¶4Â_®Á¥»>‹‘×µŒTèDÀ‚•£RT¤6Â84¸}à™Q¢äð` <(B×€.vðS1OgA3C}p{ö7:W¡seÄZ§|€êñIØJYØÕHëlÅÕdŽ rtÇ•D@KÀj‘ezÃOØȳF¾î há³ô:@¢ºÀï×Ì«µá™CY¦<¼e(} µ,Õ¯‘™=†Ãï²Áòo^¡ôÞ]6ÀªÈ«»'” ìl¸"ªçaEƒb;,„|Ôå•| +çø=!ö¿ï€…ˆ Œêtû`^ªwÍ‘J,,ðk\K‹ •Æb!¾Üúšº ž9âÀo¥D¨ð°G-Jäö<²ç”AEûW¸|ÅÎ2W10×ÀAV*O&¶PèÕŸ$µQRl¡Ö´ÚYsEe/=,hb¡òŒ¤­0þ‰µP1ò»U- é;-°G¼-QŸž¹¾@Zià€ã Ò)Ø{n¨WZ†¤È> ¥$®w0Û£s9ÈyC‘DtûìÑ +T"u,!·¬·uÃ&ÈÀšp#1Ól˽_PvJM;¼9/ÏøÈh÷õÊOCv÷‚oqm„«íó“·Kú•ÃàÐ4gž«zŽ)ÝiSÕHHWéØ> +stream +H‰¤–KoÛ0 Çïù:†@­Z/ÇŠÚt/¬À0» ;äÕ6Có@º6è>ýHJ–e;A "[–(Šüñ/M¾ n&ƒ›Ûk18ÿ&..οN7÷b¸Üd¯àüöúóXTâòòjŒ®&ƒ\æΈÉA(%rüaS:™›Ê +gK©”“õàçð¨JŽÐÎ2+•N!SŠÛ¿ˆ9”R‹áxäzÊÐ8]Hlÿ@VIãç•Ò‰á4ÏãhçI@.‹Öee%†‹ðáÆQ[Û§uÉ#ȵ3 zz" n•Ÿàûça¥d9½7®YZ iò¿YvXÐø¸ô ;DÜý\Ë™–;êwä‚ÿ¾C~X2W;~lã.˜Àöžºi¦õÁUøÿ 8;wÌö¦`rúÆû$ÐqÍCöàw„;ç,("Žvøkò67*OÁiCc«RæE¥Sj†L~¿mUµqNàhŒ¬jãŽVàc¶õ1ÝP ŠœŸG‚ ¿¿† ÞÁÈC¬ÅqîƒÛÍÞ 53°Ô)ÇõÔ¬ E0êätD£+‰“·Á`d5²o}7/K,ÆSëÀϺc"íŒ)µè÷÷°9a8JúÊÄx8ët£aêXsØL¿xž@óŒ3‹&¸ŒKd»E<»—æÀq ü€g|à‚zŒuVOÓ°*%®Å¦öšÀTât~Ñ?®åŸ"_´dÁyÎ9ïâY'䎯n¶¡Ù#“”WÔŸ˜ì]Qw<‹Ü¬zÂßë­6å Q ŒBÁaÃu€ë5ƒäµ¥†”‘ñŒ¾îõjdÌË'Mèìå½›ž‚1Þ€ÏiE`[êÔD‚’¶ÑÈ Çw|25ZVÌ¡?À:ib 2ŸF\ñÉBåR¥Uñ>žL[É +uBÉr'] ÖÔ(¤ˆkx×U +Ž$غš³³ +ìhÊg/ôs¯ñ°Œ…[²\1ÞĆ+± +> +stream +H‰´–MoÛ0 †ïùçëè<¹S"))^Ò•25ÆoxºÁcŒé'Õâß\;¼°‡qöÈ@‚Çüб0tŒÇ´¢~M$ 1u³`u›év_b³YÉç¼ÄË*ú9>:QŒ¶q6ŽwÅäLÕ0j!w¬ÌÜyj©;j·Š}á}õÖûªwWËêµ#ÇÝ +0[„HR“|-€¾ÎHLwFÎ:ûÆf£&v§”PÏØ5ˆî½Ü“mÓ˜¤L˜‘Öªé<ÞÍr<ÞµðºY3ìfõ¾å>.÷¢0èf|xâ‘Âd+ {:í:®ÝÓ­pgr8{Ï*"½Ü”–OÌç ¦¾™þS¬Äk\›Ì¦w /éò!)’2(åxô½Ë.]rŒJÅç6B<¡x>ȳ¤»“+‹˜r©0SÁmA.#÷ï×ØÓü®žöQûÌ—«E*gä(à‹ù5²ïâ5h«óÇ"Œ²É7~HV34=¥ý[XlWènu¿ï—ñ¤œF$péä=_¤GÅèŠY¡ ¶\ +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 992 +>> +stream +H‰œ–KoA €ïù>®¥ìtgfŸR…D)B  +'è¡<ª¤¨”_íñÌî’DD¨‡íÎzüülgöfòr6yùîLÎÞÃùùÙÛëõWÈæëüÕž½{ñú\Ïž]\’ÄÅlR˜¢„Ù#X ýÑ£­Lá»Ê¢6ÖV0[M>eè +ã!û†Ö›² \cn­±mç0ÇÒ8È~Ñ‘ãî±`¡9æ5KÜò³‚ìÄ*9©;xÀΔ¬ìmÃêç+´­¡˜¹Ar([^º·ä‡Ñ÷†5ýfM kôtgÊ>Õ¦…lä}Doƒ#â_R° ’M/ù@ŸZý†µéø†¸¸ˆ7¶ F![‘IÉyjƒmóŽ5‘\Á>\£«YŽƒf`5“åZïy¹'vhEÐÀsØ’-¬K"ùd?$ç-Y#'ävzyéP”Ÿô$;©ºš@†’1Æ¢ìZSÔr‘å8ûþo­nÌ[SÎwÖt8*ˆ£ÈŸúJa^ê3†\¥sÉQÃe”E>¯ÑYNû²ºi*·Ôj£¯ ¢›+¡¯¶Â†S±œëð…Þ=¿?Á›Üvlg«äôå',œ‚ÖË¥Z®p§]êõKôGûAÏï©ð|ˆÞ`Ë_¿²>´‚;câù<ÀZ³%(Û¡d6õ4ZÉ©¹[$)êwj÷ee.:c(7Ñ÷ÛàÔ†\ô UŽÃ³öàÿ±‘€VÒcà4^ý˜¬ª;BVÓ˜&’õTdÍ × Ë..la¿&KN_›D®y6û79ˆvVEb¡AÝÆ£§“/4 cL"cq–üèåbú©!œþ]©xFwS¥0©õ‡&j1¡ÑÄrR°i?wÈÍŠ±²r³W¨ÐENŠ0¸\Û3EÇΩß#ã(ªÙ«@´ûJªáÄ Õê'$L ¯F’y°± ÞsnÂíÞl8‘¶r@ ùÂÙœ¾¦ñqîžQü¶ »Ì³+Ç]_:ç ¨q:-íX"l™Dbüœ‡î…“{=trÏåÌéóœÄ&ìå€Ìh%ëTP;qÙi_;ÉÂt…“ÒJn´ÈºñŒèÊå4[b©U [¯GY¢¬$Êï{ ¡!80 ˆ)«•¶ºIi¯Åé‰> +stream +H‰ŒVKO1¾çWÌq-uÍÚÞ§„8@PEU¤ªŠz©za T("úë;{×ΣrHv3þæõÍ7ž}šœÏ&ç—g09úÇÇGŸçKÈú‡üã©:º<»˜‚­áäätŠ§³I^èÂÀlø]Z˜½)tÛAcð¡Ñ©kp®ÒÆT0[M¾gS•wÚBöªrSê +²güá´ìNåÖê²…85dK¸V¦ÑCX)ÓÒ_ÊÑ?WÊÈDÍîå‹žüƒ8äa®lM‡_ð™ñî¤"’Þ£§;È>À¾°ô¾&³Åqõ*¯tCfÖYƒ‰7„ŸCßÔ\axSå +Ⱦ" a׃ %iœP8\ +zAÕàTLGñAŽ•½·|Ž ×°Æ(Ñû-E_SÐ&®æ=a´×pÕ£)¦`F/Ϙ§8æV“qï+v /ªã +ÁÜ[2„%®Y¯ØPÒ©|Xq¢QÌàSñ©`.1L QUÝ8ëbe f?ÿÝÆкhRà¶Ò…ëJpØŽ.“8„±ß`|ýo±B-åéa9Þali½ðf  ©èÈ’Ïr-ùJY~¼' Ʋü^Ã%Ñ»äú×¾OQ’WéODƒ\úJÒžŒ•D¼æÎÑ€Àoå Zåä\I>n°AŽ,ß׬!ß­°¹¢°Þ™–õ?hi Oʱ tô==ÃBµ2ˆa@Kæ2N=¿úž›ã z 7îMŸo#FÇ.áŒ)»=¤)piÄI-\¡iÂ4òÐq/82Da‰9ø«¤N1æ^–¡F+_š-1¢¢1®ÂYׇ(`°” 4"϶ôº’+Í +¼ÚvÚ˯•0@Ã7ÕV¢6#1½dðБ§H B™{aÝ›,"5–Qt‘È\ù~HR¯4wÄÿÝÃ/a/þÁ±EÁ›Àó=J®ãn‡D“¬ÝÍ/Û¡º~ÑP˜x(|N‚L:ÆѤíØ¥Û4èÉ+%)ºKwUZô‘|kyõ¤ +¿Wêxáìl- ¢¸Ä‹aãf¡‹…Òw"$ˆkXñ‹2Õ%ñ8 v[¸Ý þ%ëa(‡žãæÀKAìSdhߤyö1™7vÔJd`æAÔC}ƒÆ&“²©ÚǦ¦Õ.°i)½xV¥JdýcO°ò{®_]EÌJçøBå ½¹Ù}í±[מ* íÙ¸ôØÍKOç›hÂÖ½Q"òÊã¸Mþs;è.´åÕX‹BûEÓQ&+ŽÎoSO«-r¦»†”ÄMÆžmߤ€=ŒKæ¼’Ë@Z1l=ü`Zk +endstream +endobj +83 0 obj +<< +/Filter /FlateDecode +/Length 971 +>> +stream +H‰ŒVKoÛ0 ¾çWðhbI–@ÑC›bØ°aC‘ÛºCÒ¹i·¾Ðt+úïGR´-íjä`EŠü¾¤VŸf§«Ùé—˜-¾Áááâóún Y{7ÿpŒ‹/'—à/iÇñj–›¼ö°zk!§}ê`rßàÊÂX`u;ûž­qnk »CšÊ~榄ì±Egðri*Èv´çï±0ž7ÏO¯±âÙ ºÚXÈnÐZS“Wl…¬]ãÜ9SôÆqÞðökùwó<Úp%Û|¢Í¹.‹GÝ]jìI<¥õ+¾¼LÂZ·,y¦à¯Ï!;ÓXЖ ¹Gn>ÒÀ©ÉþÊèQ#ㆤÇ!'Ñ=Áo:W›FâòçÙ•g¹¢G.7li‚ÿß°ú¾ÀÖlþFáV\ñ2 ë +6ÑãBYìFË–œRUñdѧá)N®—¬\D»*1"³‘»À« "ó#‘ÙP½!²¢1M'²‰žÀZ¡ßb™Ä“`9·#Ûa\y‚+žÎþ¡¥’—¾‚—Ö¾Fñt‘ôÀ/Dœ9€ZAVÝ|¤I!(º™8/ŒNÛ…qÁÉRÊ ŸÜA–G²çRsàek;Ë„ ˆâj&1R¤Œ0”ä)GÞSàŽÈpÁ›PÕLJfqõë}Ûáÿl{O|¹zÌ6À~QÁB4¾@K¯HaË£f„ƒ¹¡ì”CäålÈV l‹´Ð¦÷\š\w0fß ì"¼C©P-Ý°„è›v¢ÞË}t‡èCNQxçÓð3˜„k5•|=‰<ÒÁúØÞb¬ Tm‡û½UiE¸d@åÆÒIé,mXjqáJɸœÁ ´HÎJUØÊIIÝ-#éy")X]ÇT4ðUò´Öâg]C ‘Ö˜ÐÛè÷5Š… kbª…ž³¤:á8!7ö("UeÓË †\"/榥sõõé-F;Ä:ˆÑI@Nú´?Z)ÆÚH&j«ž¢­AµÕŒsÖ¾¡-êaÐÁ‘Ò=®r.i•ƒÞkÛ”ö,‚dcDÎ3,òØ>‡ôTQuZŠ >4}Xè|×àÄ×þM⤔ 'U™›=ŒIÃ5˜¬†q…ªmm"iŒAc,’+Éí†"}øSO…Šî6X9ÞpŽÐë©{1XÛ–tžŒMª{mZJbרGžã‡>S(û98k ëÓ©¦ÓÔZäo«µU^߉êµV¬tﱺÿ^Z; +ºâV=JáÄ­>­Ì4ÿáŸöô[¡ +endstream +endobj +84 0 obj +<< +/Filter /FlateDecode +/Length 936 +>> +stream +H‰´VMO1½çWøK]³þXïZBH… Šª•ª*·ª‡„P‰„(@ýõ7öîz!@­Ø]Ç3ófæͳ''§“31:ŽJU6^L…Ö¢¤?zè²Vµö^è`•Ö•ÓõèÇøBÚ+-Æ©+1^È"(/Æ¿¤n”ãßô³V/°Á–ÊŠñÃŒ!Ãz)as'd‰­Ò”°½–Úâû6­/¤®aº\'ç·ÒÂîR’}@ˆnâ_5ÌþȨšÌÄôxéüJmísŠíLIAR°=ðèÏÎåRl)gÙI§ £š6i®»lqˆéC<öµ1?ÜÓBƒ…kAØ4°îhÉrõ4<“‹ +Ëi4R¾G¹-Ð’ËߦìêÏ9:¬oI'wȪwX!ò"sÍ(ÇÍd7+äì»i`öAÈŸÓÏ£óéèü+1åè›8>>ú2Û¬ÈÓ¦øt*¾ž]L„3C.7äRS©ÒÒ¢®¨Y̤-r2håÔŸ¨[¡ J͈)Ÿ¹,JàîÛ#fmÕ©+ÉÐaç“´–íb«úæœy×UY09æ¨(¨à°Y ëèw)¹‹AºÚîÝ%çpFE_·ϻW€¯WûeNÙÞB4,R'çI4kY8<‡Œ¨ú‰ìÑã,Ÿ™äîMÞÓlÝP† Â>À)ÁÙJþÇ‘sHÖ¿,b^É4·»¹e3n‘ß² ¯Ë;¬D.ôÀ¦£Búlîw\¡K¸DâR1—ML. ·5ÛX¼®êܦîD-êËïAÂÀ®ÄGÁ™ŠÚ +KË––£mCPˆuä‡ÖÍB7àl¤â‹qX±½hÇø8Ç}+Uµ±YzfÉk+Ç3ñ†ðê¡ì¦ÉÉ„×"N™B2X•˜@UÌPÖâÍzWe‡Ìg08€Òì$ÿÜùÈÕ÷ìÂÔNr¬ã]Ð{Aòj3Uâ°)zv¹«óË„ÞäɸÁµµ×K>Òï#ËÄ_ÈX/ +endstream +endobj +85 0 obj +<< +/Filter /FlateDecode +/Length 789 +>> +stream +H‰ŒUÛnÛ0 }ÏWðÑfÅ’lÙŠ>ô‚aà + ƒß†=$­×uh.HÚuÝׇ’oM‹"‰&)òðºlf—Wç4›¥““ù—Åú–’v~,|bkV^+“iÜRÌþ*SáC«,Ž;å´¡äZ¥5VxÉ´§d¯Ò‚–T ý Ý)Sëš’eJíàUJ\a ä|§ØÂI.YÓgÚð-üa©rx67?àJv³ˆypâç¯Õà|Ï÷s~°þ‘‡õâ€V*ÍäB9Éó€Q«ÄærëA¬Ñm·ÆaÝ@ÅŽ3ˆõ²k )†‚•ƒË¥²rì#§X‘¾N5ÔVÛŒ’G £»R‰%–”,2íÔæóìò“Ê1“¦,ÊëJg¾¶%©j~w[M êË7š•ºfh„Ÿ£ê-JöRcÉÏÅÒ¹ UB6ŒË×4w\!€UBå 8ɱº X}‹òƒþ²ôåÚ¡>>`,œ_IþR‚$ŽÍ?køÀ=vÌëSO¢1îôFLõ YKûÖVe‘„¾k¶q—„öeR°ô:úZÇœaL¥]o"9åʘŒ`´ÔoFâã’sƒ÷#¸ ýJ?\"¶‡©½ õˆI)Sɽ1ëjn¥ŽIý|Y!H‡`âô0æ•9Çʼù€Ê1Py:&Иy†„!]9 9š˜¬‚º0)¡@Ž]¸p9ǘ¼WBŽa¼;i~Ì‚®^Ë–% 3š?]&Q§ŸÃ!¡÷Æ­·˜R^p“´GÄIm9€¦/‡ÇËqàšvñõ˜QLÞîyIz§—V¹ÌËù»Vd/Æ 7×7¯1­¬uÑ1m#áQB!Ìð¦Õ:¼¦.‰É™Ã/ë™J›òT Ãg·@ã"8 +ããsR†F†kÖdB¤š¡…¶|”ÿ ›w­&Ì@ÿu½l +endstream +endobj +86 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +87 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +88 0 obj +<< +/BaseFont /JRAAHB+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 237 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 238 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 444 +0 778 611 709 774 611 556 763 832 337 333 0 611 946 831 786 +604 786 668 525 613 778 722 1000 0 667 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500] +>> +endobj +89 0 obj +<< +/BaseFont /MKMPHV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 239 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 240 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +90 0 obj +<< +/BaseFont /ZPCSXV+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 241 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 242 0 R +/Type /Font +/Widths [233 0 426 0 426 0 426] +>> +endobj +91 0 obj +<< +/BaseFont /AALQVT+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 243 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 244 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 207 307 207 343 +513 513 513 513 513 513 513 0 0 0 0 0 0 0 0 0 +0 612 0 580 666 0 487 0 0 239 0 0 472 804 0 0 +532 0 0 493 497 647 0 0 0 0 0 0 0 0 0 0 +0 482 569 448 564 501 292 559 555 234 0 0 236 834 555 549 +569 0 327 396 331 551 481 736 463 471 428] +>> +endobj +92 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 517 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/C2_0 245 0 R +/T1_0 246 0 R +/T1_1 247 0 R +/T1_2 248 0 R +/T1_3 249 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤”ÛjÛ@†ï÷)æR ÕhgÒ +Œ¡9( )‰îB(nb§I\d¥¡yúά\µ²)néÍÎçÿgüÉÅû¶[-fwL&Å%ç³ïë—¦Ó£“cPG2`кÀ£÷®Î”Á¯àá <ÀÍ­{PÅÙµåFÇö“‚fÁ›;¾Ò¼Ê°2Þ䨅È[†Çà+,½+Á´ÑðÙ“šý´yP§:½`cíR…P¢­kyÈBY¡³’±ÐÎÕB‡j*\¢!§ùv–ì¶Pb’ËŠË –°ò%û,ÑT”|Þd^çä°„ uÎ^xb¾m> ÎúÉj¯D|¤kË€umkѵ®Œ½îù\“Å +²oš"dsWh!{Ôœ#߸Ôy@ÙW¶‡1]ãŽAÖêˆ5d3í%I§óˆ²Õúy#yøâ»>ÁGdÕjvÇ뵤á‹ËmºŸiž¸ â"E›dœ¬7}–Ùó}?¹ÖV¶_äZܺ¢_îÖ¬Cé¤ëïÿc+SÓ¾Š”Pä™vQµ×s#U£ö²îoì&iŸûáž> +stream +H‰´Wio¹ý®_ÁCÀÝj’Mv7²XÀ¶v kdcqÈ£Ó¶Ž•d+ʯO<ûÚvÃê™’U¬zõêÕþó›»ó“ÃÝøé§ý¿ˆýß®¾Ü‰Ÿ~qðRì½Øî5¢©µ±ð·m¸9ÝÛõ®§·{û[õ¯F(±=Ùsu à_W[¡”©Mo{¡mm­ƒ{-·÷~ÙîýòNý=…ÿÛßö½hÄÁÕÞ_÷öG~;¼<›ãËêÕ ¹ÿæåëaUé‹@“ŸÐ ÅNl½M­†VlïÁ>¯RBW7ΈN÷õ0 =ùÇ浬ºº›qs,u­Åæ\VZ×­Ø\ÊJÓbs++[+ðÀãÞk|+üp.U;®dK…¤×‡²rx6ìok‡OÕà,ðx¡Ð$4Ô†6ÀAMÃ0µƒá÷c`Ú(Np«E“ðà=8Ùå΂qGOz)¢;xZGVÁ,9“®ÐJ±—Ì÷h¯eÈ©×ùýä½òÞkô^ xýS|ß'¯ÁE‹ßOü÷©Ý#©:´p|ipÁ8‰oMn}Æü¡µùÄŸ k‡Û9ÎçÃ&Ç…üçöÏp‹àÒ9¸jÕô#(w‡."èJvhóZ6nrécàV¸&áPˆÁ3q€+áêÒPêߊkŒ[›ŸÅqÜavlqæSF8ÎÁ5ˆZŸ`p+'CQÌ![°è ĸÅ#>cRCÒCT…dxWäÞ•OoL¦¬ ƒ›JÖ1‡„6T›MNŠTðQ“«×rÀ?\7pž)ìám¥ ×àŽwª¼cc“¢k-–¹"‡O¤Ë3)(nGpf?ŠÁrÈLÁ`À,"@YWlSåd¹xl[bW-A· ƒeèbPà¦âýFZªÝƯ˩‹gL¤”ªÒä8ƒ£ó¡Æ#èH h…E hÀ÷t°Á㌠+îõU"¿j¶¾ nœM ÛGãY#èñÔ + ¿|‚÷ÊÓqX1#]øí º9Dø¶|Ï×ÔD`ÑÈYŸê§ÐÌ>øÜxçy 2‚A{_¸>ø8Eâ߸ÇK»ÜGåò&Õý* ÚG€ +Õt}WÀi#VÕ@mÌR]NG’M\è£H?ÅÈyœq¿…ݪ +… 5G›÷R¶”éZ<ÇÖl0(L3 ˜<ËgL"§}cï|cï0)/¾JÓ" žPº I=¢øQG+´EáÂ7k‹Xã<;ÓtƒÈþà۴Σlò-N¹ìb»I„@Ür…øuÜ°@ð„òäô¬„d· É„›DZÄÍTkÜK(^Š‡! +z`)eò:Ãúí¸Ì4¦“ZtFtØ?˜»/:Ê%ž?`]ϤÛÿ:bA̺r¥fHþÁ{n¸ÿ:4ÆœaDœ¦z]û5r_9¼Ë¯¡ÕZ£8ðJZªžZ¼‘z`£š;’†´%¬¡¡( w@΃ïú–ÁÁu=P†@O•†›?JË­(‘Xºø+&Ÿ»‚Á¯€¶Î/#p».ã#øc)¬´7PM‘-“ÕY®sH?œ3/_ˆ$”ïB±ž! +á?í}¦aÞJŠÍU¶+/Á’HYa}%g¨‰P¹‡J§B•V´^'LYÅ°àò¿Qغb®ÒÎsX6hùJг–h:¯¼ÿÎWG¬²ÔÍéÅé:VrÍŠF™Ca]£tj4t (³ƒ®›ˆ²)á]c7êH%4A·5¦;ž*ùeˆÑ ÏD&ê§Ôß2õ[*щœßR‘^×ä^ìãM$Ùç}‹á³Ì†©lþïsd6ëuå¬gÇÛZ[Þ»=•ã¤hÓø¦¡€Á¼|°xÖa²e·DQ¶IÁó¿RYÐd+.íL‘XN°&¦˜=ÉLºÂd°DoVé‚ãŸ2L\óÜês•¨Æ‹ŸCœoÛtÉcÏAŒKç/åF¸Dí—Í"gƒüªZ/Ã\Y&—QñŠ8tP]}‡…uHÉçQ ˆF/òŒƒZŠPÉÔñ­('ð)¶å–&Çk?-=÷áHjBMs¶ÀÎ|9úÌÄFúÙø==‹ÀÀP ´ž&^üh= 4~¥a¯Ã×äí•ß=3;Ur“™ã¦a&6’`ÏßSP„§\˺ê™_¾ óH^¥* ˜Ðüþ̤J#(¾ˆH\¾ +šíš@b;¢M3D¡› S”¶PÎ¥'ž³"ADI^N,bÕ¦Sœ )¦ˆúx„ +B¾¢ûÞÕÜâOGbÜ$¼8Á"p™‚  çÌRõx(RITÜwoñ8Â~· ¢)fü8hz¼Ç1/ ‚|Ù¬Ú{^ Ø›FÜÛï„•†ZKK¼ +s)÷FDèþMºåqa%rl)É5Æ-ÔH’é¯2Ë6SÂ>SÞ5hD\ëO³Á ¡Ñehˆµ·”Eæ%R|?WŽü5À"ä§Ùõ’‹‹ùcž7’qæäßeïUÎ|ѯغܺqÃÒKyÜ&aüd:˜¾Ó} }oe‹· ôšØ~{‰Xõr‰X¯¢¸¦ÆÌß+"“^~'­â¸éaíñÅ–~—íÀM N¸T[ yAÌ?¥Žß`BL>é.°G…7’š4Ä]š¤‘ù­ˆ«c(DÖæ‘U´ÐqÌcK¤r «Ž9: ×5E-LØ=ÌÂ:|u#|™ÀK0ƒÑ.Iè¬pàà-MW–+g=sõSæRعŒIoD “_Rd[V°Qv + +q¹êGˆ‚PÌ«òŒ}8#" X,Ph Ñ@}³Ù®¤Ô²Ür;¤ºt¶Q’ñ¯ˆÊÙÞË}ªÍ*J\û¶žæ† öYÔgUò”´ä Žz·¸§:¼¥¢&vÍcÈu¨ÿPÙ•¢!î)œFÕu°JXäh°Èʺ@:ÛOÛ5å˜8ô o»>SU)ùcrû}–ÃdçG¨Ð|‚‚#´yìü›q—ÙœâXëWJeUÉ23ô1³ÏCh(%â–X~"59 zÇè¹FæÓÙÀ’’y|(¢OQ¤¬2Õ©ýà×ÍD:Å1Â*÷*Š"ûê>(Bì\äê*TvêT4]ßÐ\ƒJ=îðKÊ­um¦ÜÞo¤5x"w8±­:ÜÒoNÈUnW“v÷H—„sÞ‘¡ïÀá»ÐF ZbA~lÿ­×ËO R¶TVï¥l‰Új ‘"—ñ&ºa…¢ :iyŠ;Áƒ> …iŒR¦ŽÀï©?Õ*ë«:ÔbTáï†éŽ,ëàjF¸j‡%\Ù&SŽßÞ™Ii©•¤ªÚ‡çÃoúVtVa¤a¤é–0Sc’}1—UÄ„¿¨"ù|2-HÖð¢èt>.®Td”K¼¯rÄ,TJätM©xöhÒfô’ý1½Ô³Lœ)Ö]Ì\¦sÉ4¥ 5dËSp¬¯[.Å´Î/Öc5F(ºÄ¸J$® ®MaR¦ø.p~²!lx"ò!Jœ_Œ'§ñÌ¿ÊôML§¸eÈ{O+J6ð¤2Ã/‡~tŒr7V =ü»ËÒGU^¦tr:ð×wÅÝÐquÃTô†ž÷H-!Õy ñ5<636¾ºÔ¾¸ÄîA+)ÌSÌe}`ØpãD +r“HsSÐ*x¹5r+ƒÕJ¹Õ•C@¯–¯é²! è‘ÊÖË|¾æWi&ÌćçüÇØ&Båê|ÆêÂèXè*lv&€C3 xü£ +žØajÔlj<õøáå<ã¦>0sáÀ°Hv‰PoÅ–/rûWeY©ó³`sðuÈÛrî™+@cæA#’DðæDòѯþÄ#Z¡*5 åótÐ:øõ%NôNÌ`2U>Jª&qx¯¡°1•´(ò|NÝeJáó“MÌñ·³I”I4^±&iéç"Eýs~âZ’L¶¤¡)~_ûAበÜÕEüâái)dfU× ÈÏQQE–xoR±ƒDŒèS¤¿aC‰0¨ÌíNTþÓ<Öº!Sê'@ äïð_Ö«¤)n# +ßó+tD‡ÁR/ZâUT%¤ròßì ÃÀìØä×çmÝz­e¦ErñŒÅ¨ûõëï} CÎ8ñR4}èFH-îîïJWsÁ"˜”™žñš>Ï&´À8 YĀϣc-«¥Ù…õj'sg’*ð9hS³ß·YÓ¬ftUÂöÀ©ÖÿÎÙâyÿÓ»ß/«bÿ‚2°-X nN£š ì¼k¹9Ì@ÆøcÙ[ÆB{j2÷D/x:ŽñF„‡÷lñ$Ö[œ Z-BÿéžKÍìE{|a•x¤=ú@äV¬-zjÚæºdX]‹B#u4´;­õ7ºÒ×–^«™» ]ãdϼ~×i¿±—ÅŸØèš ¸,|©*ÓqŸÏ¹°=̬SÞ˜Bq¾˜ +GÜ=ãü!zi© +#+¼–X«V:IW Ÿ”¬BrÔ.'RƒØ!“ÔZÅUH;¨6SAM¥½t#Ûàÿopªâ÷\w»œ±‚=©Ùc¡Ž~ g‹â,ä¾1‰ë¦Ú‘òè«3 }Õf /¦gñ’úá$͈H8NLZì¨Àùè¨Íj9ÒoÙ–h@¡¹8žêÜ©;bß’1¿bÍ› &­ùÖc¾å­bÎ¥õàÁe1¬ÛgçÄQ¡uz»YekC`“š|¶Êu6ÃÆkˆäÙøÎÃgCÚÀ_æqØð#±}õï×ÒQ×,±ð%Ù)”à ¶AÛSnÈ£W™’æÓ“SunTlZ5¶0- J×Æÿ?Þ»äôæãM·ù^ZŸZ-á%^šU]v¯Óûù„RÂ`—ì4á Óoqù·£·3*ÝÜK00Ä“%|+˜¬ôa7$2òsꗼГ³Üâœv [úÄ7¦é+lep+Cn™ÇÖ$>›ù3.Á´ºM¸Ñce¢šÔ1Z»uXŽpÒ1ÂKcJòº±Ü$B $Ô:AÃ……dùºM9<¡ËŠÁÔðVƒ& Ô™E©#4M3+P2žƒˆ;DÊÀÁr9“ç3á ä¨s§²Éd +îU5bc¯h&ÅžÁ',üàA ‹-¥.Ì9†©"kÓ+pjJ˜*Pk7E‹3ÊÐ)»æfÃöaõ˜ÁFQVxÜC×Á¿˜Ÿß'3Êð¥?ìYÏ¿]‰GÚc%êÅóÆ?PºªKиàçˆÕT’ Þšuy£å¦ÅŸÙeìËqiñÉ?r £ûÉò·%Û“Hæòü²da ô›ýì{4þµ; r° /9Õ€,ôv9žA¡6Ó3ôjÙ9Ö„3ÕÏ'¥Aй/?”ž õ¹\EÒ²FSÿÞjs¹§î‚ì5‘F¢±¥450 X°µ¢œþœÕä¾SD'¿$²â4Ö€K©üiÕwÜò«Sìù»Ë§«GXÿ|ûõÛÕýÇݯ¿\üvqQUUvvVÐú¾ K}¼ …u­¯ž±Oí¸4Y´­ú¤´O'oó&Å"Ïk¶ÖU™–M/ ?¤¬¨|„ ¿ 6¯¼Î×ô¼{9ªÌé`ÜÔ/mp!ÂdkÎ}\wÄß@/<”Oe% N\u ×8ÉRâÙ²ó e)Eï#’d“D {Jog!×äЃÆj=ôvžÄꮳ!ˆ]ï |¸þû×ϸ”hµ“0G¤<ñÔaÊ FìÆ`‡bSû2çè54ЩÍé£Íyу{Ï÷y3e® ±§] ”º…ñšŠð¢È…Ûer‹o×sËL4óÎ,pKZãH.ËS%ŸÐ ÝÙtÙœÌX÷'tØŽL7±Ù-W®";r)!¡¨&Ñ¥CÕ Âêã•ôMQ”I)*wM!è[Ì$„±‰®œÀ¿ÌC¥ûŠ2ôò„Gvtt¾ì-wú.°ê-Þ0³ýÑÉ}š@®ÒtFÔ—Ç"^JK­z¯'™]êV ~퀉nW~Ó6뇲Ÿ åR—UY2žæv°ÆZ‚Ú+t0=GoiðšÃƒ· ë4vW0fŽùZ€,:d'"Ókû0+TœG£ÇшA-aÌ$¼§ø|ƒè‹¿mQéý!õf¶Ècýºš8É>«_–uƒ:߬VçÖ;ɺšZÉ%d©º>­ž µMÒ()§¥O…./袰v”×íj^g€Õ#€53««½²$ƒgƒw^%ˆ4±Œb+ò;›ºa·@©ôšXŠUZ/ëq××Ò¬ÀŽaÇŽ5cŽØÁ¨ˆ|·&…Tþ رÙØQuXÉPÞS’dÝÒÇq†š@hMöà[ìK?ø#€,:Czœä¦wFN8“Ê3>Я*V¯Àl†¬ß,c,pc°Ñ´ø¾lrBG¬c¸Ö¥Ã +endstream +endobj +94 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 566 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 86 0 R +/GS1 87 0 R +>> +/Font << +/C2_0 250 0 R +/T1_0 251 0 R +/T1_1 252 0 R +/T1_2 253 0 R +/T1_3 254 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”TÛjÛ@}×WÌ£ªÕÌ^´Csihi$z ¡¨qlœ66È!ùúά„jÙ¥Æ/«‘vfÎ9;g•n·Ëyó¸…É$¿ü{ó¾~ÝÂtzvqÉY  6Öó꜅۫µ‡7pp Ïpÿ€0ƒ$¿ºCXl’üÜü@ ¨ç\X?rJý&Ëùñ![-”ü y-H{¤Œ×¦DÞzI&ˆ¥›ÖÏÉe\^3…1~»H²’‹œÔx2Pm¯ ´OÉ<É)Êk8j¤ <³>Šd[(tð‘c`±ä‚vH˜B#z+4ïÓ¯*³Ú@ºRN[H·Š }RWBºP™Ñ%¤­*uiÃ)áoJ²™¢ ù.Tæ$]ªŒ¤f#}y£i¹Šß_ä;ï710±ƒ×n8##(Ÿ†Ž1Ã÷¥\±þ)|(b 0ùÝ?—‚]@ú!¤Ê¢|ÆŒ°\¯¸'wlV³.¸U±OÔI=çÿAèΠo]þ£õª„üV(s'AâžUÔÏA“êÈoÔCým°ÅÑ)cœÁ/ñ&EoòÜiß›£IÛ`´%7št + vìxÜ]‡7aäy¼FG^ zŒhzD´Ó‘]fеg^[VìlgÆ’NRtp‰ l;à1f%©žÆƈ1xľÈD}´ +Å©³?Éuf3ó—W:p€Ý]Êl)>x#vå=TAŠŒ²1ƒà4‡ìýhøÐ1jò!ά´UÑ rLÍÊõѬÇK`pÄà½ø. +endstream +endobj +95 0 obj +<< +/Filter /FlateDecode +/Length 5964 +>> +stream +H‰¼WkoÜÆý®_1—€—â 9CÄQ¤°ÑÆ^ ê¢XI»²­¤®¤¸î¯Ï}Í‹‰¶"ˆµ$‡Ã;÷ž{ι§?¯÷Û‹GõÝw§S§o¶ŸïžÕ÷ß¿>ûQ¼ÞœTª*Mmáߦ©Õñêäôç÷•ºz89ÝèWJ«ÍþÄ•-,€ÿÚÒª¦oËÎ5N[Zë`ÁádU›ßN~ÚœüôvýlzÿoÞœþåP©³»“_ONÿŽ¼ÙÞ^©Õîvýóëâôí¿œ)]5y0 +¿ù;F¡9Š±®ÊªîÔæBÉOJ›’㢺jËV;«ZÓ–}!Cdÿ\k|ºÚkݨաÐuéÔêî¼X×e¯V×ð·.áÉ üÐÉõÿŠµÃ·E«V°KÅ˵¦÷o‹mþÎ<>›œN£ù4dâ]]ZÝ7Ù!V*Mïü§\šÊR[MûkÞ>Üu¥5ý ?[<&œðAÝÚ•¼†3B*Žðƒr÷¨î +mËN­öj«Î +ãÊZAfë +—½Ã7-¦ìX4¸Á]Ñáý+x½ã}8g¸q7”Íšª¡ñã;i×.zPôüüX8LùN=k‹ïA é‘ú/ph\.GåêðwÜ¿Mrwv‡ó]ap»#B…RW-¬r›§Z)K}g³XU8›¦>&Ú&ÙÀ8 žKµÇ;>?9”¿ ÎóÓBñn)e°ð¶Ð æìR%Ù—¢hø÷ óÑc)µð…á²·<@zðAC ÁÝàŸ’$ä¸Á¥Ç >« F€ß,–ê§ù®Å`G7pËVåeg‚»7€ˆÀdÏ)æ'Áå…´2>7øü Éï§sH1<úˆÃÓMU‘|—B£Ë Q »ÒCÃõ»ä$±w$:¬ü€CW9Õ#Þæ˜7ˆù¢âÃSqîðÒQNz.'—ù*£•óá“>(\Ówb²a’õ«”6_È21Ä¢n”òæ·Jú›ïîùnø~hGÿ5þ"®A¦ûÉNIûÒõe¡[\¿;àak\PãÎç˜Â>‡8_¡Ò¡FøK¬RHâñàŒ Šûtø,LƒÑ}ø»ÂPì»kª¸Å">Äà;ò½l͹Ë)ä;]›:ƒÑJ-ó‚ÝÐ r‡a¿Z¬ª’I%≇8ØÄä:™,¥x.Œ¦p÷36žNæ?sN Œ‚tÞ=˜¦a–e•÷Ó ØbÑwxŽlRç&ÊÒƒò£…ìþ½Ù&‰`J÷~“ã‚ )îˆéÝwÊÆ8<17‘¶ 'ùù²Æp_ÚL8¤E¾`IKûº¾Ü1Fê–WCz–JC?@kåfQjáG^ÓPÑ~bˆfŒ>0xÌÑ“ÌŸ\ +#Ö,!C>®ÁZc2×æ%o," Ë-R3]ÿ¦s‰Q4®¶ Ñwtý×iqÌD'Ž“ŽAªÈµì67„›†\£ø‡W©'töd_‚$§›,'æ@ñJÝãðÔ$Õ24%"“ZâG‡‹0£†IQØ&Ê\PoK\á—2_ñß0gíïFv;ÄX¼ó§i˜[«t %ãH+öY=‹ qÔÏ[£¦ïÊÊõ&CŒn›ß^Þ·®r|‚_™hk ??ëDMà~©8 îÅÀËlŠo‚’G+J:5PYñ´“mg(›íÚ13ømâÁù2Þ-«n'aÂe&"õ¤ˆÞ‘8.6_0F–qÏw2¡…°þÏeƒ Ñ;YÏüK÷Ñ1 ȉ”üå xÆûËQ9Åf^%d§X8€~´kC°¯g h»ÄùdªÈ­ð³cÒ=WÈÀs*g©6änûvq¾üFÊoSŸdÑS6G›Hr +›žF“¯–6×x¼I´­¹Ìy!èç…z‹!Gì)»DdUFÒÛÒgðÏ«M|Îœ‹aÙ1K§#˜M”`!æÌÀ˜™cÖ4uâ^“RæιZãº.ÅÄtikOP#©¬q¿;¹¾õFE”éOÞ«¥9nãßó+æHTeט@å䊪R¾¤\–R¹øBRå(¢dR,‡ùõ™~LOAÉñÅZs±ƒé‡)óÂÔñ¯Žï¾þÉëšAØh.k\æŽH+}ÊÒ—;^û¹$—¶ÛNk¾h®„ó˳Â÷Éo›^šþûÁ”ÿgº›x£™tð¯o;;2뎊5ÝGÍ•/Ï—¥ìÍ™g-ªvs¢rÍAúe6 à™>7(t³Š• ë+e0”î4ÖdÜ@nLË1 "n‹¡ki«Ú~Úâ2Ó{øiqõ2¬—Q—Q>)+ïà6…f•Ù/XFíÿ¥éK^«šÌPNX¶ŒàöŽ-þ ì)êfºœ×ä%·„¾Z`ºb.ÙÞ&+_•Ö3‰¯ˆ#|{Åý[œú1”…mß8ô©Nï|¯ sÌ7êÜÚ€¬åÅØY­*³‡»N¹.%)˜–<Þ²—½Ñ=©ˆ;MÖiTç{6*{Ô>ÔÔî€Úo:ŒS%A¶SÊ!³˜„«m³»äº“Ã=ÅÙ°ÀÙà·q6ôÊÎÞTð¼P"„7Ù²˜i~ÖC‘¯4@W”¢xàg°$\m·j@áïÂ÷,¾òê†Ý'•Å 7ØÉ«—dD ZK4pâ)S>ÂÛÜ®3_½òev Or…oÛ{Ư¸À~j#--²Šê\ßÜÒ,‘äOâinrÐÉЧ®{ç+ ]˜C¡nèõ¹ç~œë³3FíìÁ·[¨¨òÕ%)2â2ÛGXÛÛ&B$‘ïRxA”p\>ªókM%.…j&kä£5q Uçq´Ü&žNUñˆœGs&‚M߬¤Õ[2$\5=ù#Šˆ±çÌ–¡g¹"/Öš/}Ùc¸ì‚ÇlØÈ8+ýoŠÚ–ç¤PÇ^p‘ˆ+?SÕÊêh),Š¸H‹e›£„·IÜXí‹6"[¬íˆÕb÷P(®møóIu)¹*Z¬šz +øN)°g²ê…yY8ÁjX¼bè‰RB?´Z/+IC⻃˜qÛ\%p‰A¹inó3ÿ’}tø5`‹þhn³·}T}-{Wç“.0+M¨±Îʲ¨üw¤YùZ#˜îŸ/ºSluþÌs†ž.\.h:äµqÉØ¥oÎÝ€¿±Ý0Áuz#Ví Q‰€çp|úôwó}çpÈŸ‰LšUòõƱN¿/ÈÄ{ ú^+ø¹ë‚Cup̾’ë¶\nårÿÙ¤]­Šýùßå~IØ çeÖh#¯:˜‹Q#ˆdoÏå±óG©² Ç¢È5u´4¦=dz$ÒhHç Ø¡–¯¢1m ÊCq`8‰°½ùažÎ}L(Ðp¸8s)ÃR…Æ ZñQYé_ÑÙŽM¸ÂyלïEÊžYáQRýÅìjcPM/<;½Ä‡dŠ³‰QÑu˱niÕRW»\‰{Ljoåw$C¼‚ª{±K<p_jŽŠO¬ m¿…”4übh‰Î=Ó¹}!Gv +;|Þmã†Ík(‡¾>š. *‚M°xð]rÅ#Ó)L…¹4ËP¹_ìÒ?þxú³&ëÉ“ Š°&×ç°Ñò„Ú¤Ã>v\2ˆysmˆ¢M <úIÙÙ;¹uÕtlÿ€B-%\éX‰˜’õø§ƒm>„¥…^ò5FrGôjñ>ŠaÎòhžøïW7ü…Ù­ +³Ý—åêV âéôÝü5TùËéãTŽb Ï'gÒ®[¬9BÝ8©Ú@>Cò17Õjx­hhèÓ`¼óÐ.Ì15œkŠóvâf¯,6¬íˆk‹Ô$î1#*à(T|#‚ÁEBôؿЅ̆;~‚}š%®¬/I™OgXNgX‘àK–’ócçúM•áQC4U¯Yî3>À«{5WòÉÒDüØ…@™ÐÕNœ¼Ý‚ÔN¿ÛÌÝš ›'ÜOOÛܤ¾Ø/¨¯È}ôa 8ã¬üú§TjºWšÙÌvW*\ùH3ëifžg–ƒ y¥\Z8ç Tr×t> +endobj +97 0 obj +<< +/Filter /FlateDecode +/Length 5733 +>> +stream +xÚ­\[sÝ6’~÷¯À#Y•sD@nMM•ãK&»Ž“•ÊTMöÁ–eɶŽ¤Ñ%ϯ߾ A<<‚½[ªÒ…‡Ä¥ûëA=½¹ûøáíÉÝ_þrôóÑ«·_®îïþúWõýógOŽ~xÓ©³[õýñ“Nmµ±j; FÝœ½ìT¯Ž?(·õVuðå·Võ½ÙšÑŽQÚn­u}7íž4C{üéÉ‹ã'/~z¿‚ûÏÔ?Ÿ½ÜuêùÕ“ÿ~rô Lþêíå™jN/7?|ßýôìÇçªwý¼’>®¿zõYmºm§'uü pУ—=¯©ï¶ãÄ7Áã¶3]7(¯Çí4MÖ\Ô?šgmï·¦¹j§­ovïÚÞ4o[íàÒ]»™¶øצ·¶¹lu¿øªnnÕ|½àú{uÝn]sÚjøô¦ÝhînkWíã\Âþ¢':àßr]<Ááûæc ÛòóJ˜èÕ0Ñ<|Œë„…¸æœ–ÔÃÓ74UßìZøÓÏ~À¿-LE—oZ÷œÀØo±¸¤å®Î莉÷Á£º¹oáÊÔ\·¾ßªµw|Q§tç¿à9œ5— +H÷#Î>ÊŒ0OGk0påŽÿS²Š°@¥ƒvƒ’­$øÑùRÉJ·:°™Þv㔀ڃ`ü49­@'$lÛœã†\#:¸ÀËð½Ü,Ür–]¼U7,±‹…Ϋ΀îŸCs¥Þ3\Ow¨¸:tÍ;wBÐДøklþͺŸ!­;B)9s©ô)Rñ©’çnZÞ|?oý–÷õ1Äò$CœDv€—ÏþŒHÎVÎbs¨yCCóDp2pËV=m7#- ïØñâ¾íUˆf`ìD»¦aô ˆDš¶Ê€¢Ùž*øØ4> öf³'ì€]Yà:Nw?l®]®!y(ÖpáRö5)p üÄ!PÓ¶9 ±„1Ø7kñF‰"vïro!ÀjOÒû,%ªK"ÝÑŸC +ÚGé¶Åâ¬_ê”mgec`±Ãªp#Ì>f +jÀø`¢lqâÎC>níHøŒ¦Õ³R‚ÀqùÓB-Êï;•Ü¦»ÜÝ"ˆìµ}qÊñ ÷Üó2È'‘iß–*H¼9 }ÒŽ„Š³´–¡Ùå.bŽW(ÂÙ õ†AKvëT¶F™‚‡QkPáÖƒÌ2ôÖŽcˆfSt|7sn^o{}´1ìÔïA´`ð ;„+…Á:X)*/Ù&ñP-ù{GzÉÞMt¼ñ¿•ˆk&•gî9 ¢Ä*…èë÷³¼¾#;ÄýžÇ=z\âG‚M–(p ÝÌËJ`ï"ìû40%4¬ +rcJGÜ:,¬ÏèlMÐË"x”Å)ŠRý¾(Õj`êqðIFY4'Óëà#Ñ}ŠLö$8Ù·pF¿'8 ¶ã"ع†ðˆ›ùˆkD~ÖÃfàSøàba ky .Ñ*"ˆ‰µ˜ÔðÆíZXœ”‡ÅEÔb/¥%©øƘ5¥P±v+ƒÉ˜kи +=‹V’]0: —¿ÄÔr&Â\qGó§è (œ}:ÀPöòODãmK1#¹ÙRÈÃSFºz¶;ë÷‰É dà§F–HJ+A7CTK¨Ûªç¸²>ðvC¼ÝÿŸy{ :|—‡=®ãCO‘=I™¸Kã³`e‚‹ÄûI¶ùĶpOöÞ7¤Ì>0‹!ñ…äZÜ"3¤`£.ƒõ`€{P‘8Ï>Ÿ‡Ÿ'šrÁ¡‰« nl‘òà+ó¢+ÔÌ›À-˜} ‹õ¡õ„SäG˜‰—6Ž.ŽZE–Àc)¥¼ž*˜c•úûÌ9ôëʇu¥tö—v¢Q¤õ Oð’zÆCKÖ!;PâRʵ_öë¸Û2*ä±c®§dáÂ`¸ði¸ ¡e Ö`GÌ%C!f¦”×-±Z â¯Cp”§p§­O5Ah+aȦaÈÁFg—DÙñXX‘OÁ¦Jÿëõ’Tù]Ÿ‘Ë…CA,K‹NcV™‰”Œˆ¡LvÎN}@’AfÊOT˜¿F··ÇvƒB}¦Ð¹2C¨Œ¼àÿÉJéýCf&Í1’„G¹üv\‡¦9M 2nÀÓ/Ž#U*7¹Ç›?Q[­ÙöÁŽFA€`ïÓÔOƒ²¼¤<ò˜°+õŸ"·MðmŸµ nQ‡³žRÒHöTA£7©Úú¡ýDu‹=SÂ6N]_î¹*aóvŸlÁÊ–²…y€iañÛBê–ò®ƒ~qá%ºœó/ıÐYÑ}8–Œè‘¸-?ÏJèdoW+r©ÿNsÀéÞêA~¢óbzžÖªº¦Î¹‚‹L$¾P¾_Ÿ‘–¸nbñÝ’2Íý5Í|M.uƒ•Q03b¦wU ò^¶z(*¿ÆÑjgz½XH"¨ ³´ì!Èšçˆå¾ùà ZD,ñÜ”øP’>gŠGÐÚIY'-9QÍþÓ,³/˜aªà@|UÀžŠ¢d`H1°uÔ ;f +¥qÉI?‘àJ¶°™—øK3×$Ƈú ó¨îÁ‘R^V‹Ò ½à(UÒI+mˆõ\„ÏP.Éêõµ¼?©Ä” +$êŠ@¥>3iy›â.Eë bÃcWSçÊw[å6Ç”…ö½^%"–œ†!)Jp2Ò±À’%*—å³ã# ÕÍ¢0³õTý²¡vSÂX‹µÜ±cæ'ŒS¯§¶²´,YñùÈIo‘ þ˜9$;w¥T’CÊA%› 3a«¡$ËLÊ]CF…¬ ,Ï41¥G3ŠôŒ÷èð“ïè¡9ö󼡣Óלæe”*äé*äeè¨C^ÖÖëü:ò€{ÌzqqR„È›Ài&!9~V³Ii,„\³‡ã˜ý¥1»(E?)….ûJéÆP€æìùf®œÇ¬uC¸™BÎþ?5áVûÐâ“ÄYI.DÅ•‚„iÙ•ýö¶Ì¹CF‘• Ù| 憢ø¾^9FŸEþÙg|2­­2äÈyÊ®#eËäÑ'Î"}‘EN¬š‘ýÐã¡Æ^ÏÝŠÀÊ1—¨è’6¾ }µ¾‰žWEp¼¾Húsd•†–Ôm¤Š¤Ó:}^A­\B{S«²ÊQ‡›:ôHkØñ&+¬Ä,Ï.ú6æwÐ +*¦^1¼%x²I{ïÎEþBj¥%=2ŸR`’Fh%ñ1׎àgWVá=i—³»&WRA nŽ={/Fè^r8.O"—Aü2¯>Ê4¹ í·iïµÈ.ŦÍ#-x5ëq n!op>“mgöÊœ€òùØk. JVekõ¶ÌûÓÍóQ‡úñóô:œ]‡e°~°Ýã4)ë`©Ý4$õ>oÙ*)hîHÐèep鄘ÉV[©ë†=¬ùXªõeIwj*MÔå?T èŠù¶¤z~ÐU.6Úѹ}Â9”,nï8V˃ØXFY*ܵzBƒHxþÝvm¨ŠïyÑ’j›”xV$7Øm—HNöFe²÷ +<2¥ 2\½l†å†MÇì™dõƒ¬^äOòŸ…Ëþ0ܯéÈ/Þ¨é”À¦ã¼Õqøt3§¼h§pDÅ>Nd«¢v'*Ð(§h0È”3é¡ŸðUfw#ˆNm°’aÁFÔ‡'Ûѧn€oÈù! ^#}H{л3üZ# »ðõ_*x'ÅÏ5RñÁkpY';z}cGÃ9®SêÍy¨“5=r/F£Ãõø­wÚöz~ªSxW™>µIƒ%­Í²Š¶¡0ã8p²Ùwx˜ÓM#Ž?¿¯Ò©ÏŠ›†G/ Û:(nvå p¯'Õ ²"¼~‘Å4?·Ôèú»Â³Ž=žšÿà”ZýÎÅ¢¿… ô‚8…k^«×¡íþ3A"DòÏ©ùUý‚žÿWì› 08^õÍäg ^6ˆü§!}ù)Œƒ?‘ä¼P?†OÞÐoh¯yÄWÈ``‚§ÌrŸqcîEŠF|ah;ÙŽ®g¤G„´Tˆ/q@,ƒ­ÚAõÓœîhrÓ[Lïñý|Ïjµ‡^"êH%:¾:äÍo4á­ê‡gú~Õfð¢›ß9M<§Ùj‘z>Å@E„kʆnZj`,î@þ—Ó$päJ™Ïr¬ódÔ.¦RD§´dËrõ†z>†ƒ|ÿ•¦Â(ñZìAn2…8I©'z¦]p!´¸÷4ÒæcV å2‡æ_mðaž !X¤ééF²ä³#µµ6=Sx¾m +ó]2îÅü¾_¥mÃ’7žº)ô&Ç-=—lÏ›Ô0¤¤ðÂ:›µ7L0Ÿ‡ÚÚ«z1hòë#§¸@Fo†±bŒé¤.fÙéž*š9ðEqs¡ŠËD¯xi’» ÁPÅvÃzÃGyÉ%â3£\§-ºŒRØg<†àÿB€\·žºÊ;RÃ[¾á §S$1  f`:§Ù¦,A™®c¨Ç’ÍD)\ú]ÃáŸL9Niym*Ù}Õ¦¦¸©*|ŒuZÄ<ðÑYé?²õ¬É«EjpÚrY5QVâ nTࣹ£Ùü)ò¢ì瞆yKCdÜj:R$æ.#aÑ\¬.@=ºâ Ân >›€yxQ¶\šoÔ¦Þ«Í ¢Q›¦¢UÚœê´ÙAŠ +aB}•6Kï*Æ–‡½ìDZ¬°bøGgú¸H’(y^=/Ý ´£vŸDVÀI_B¢ê«ùmUª“oU•¢Kï˜ö¯:u„Ôs. +DG14Uù­îŠCÊ]<«¶¢Y=ú@°b=ƒâÖÒúä}‡à÷lèO[.Ce{ñ_ŸéQ?þþ@ÎX™Í8ø>9=l›ÆôÒ‰„\n–_Ò¸ÙÂý*Å›Xgã© ’Ä1©€MÔP˜Û)Z‡ ›ŽRÝ3FÅy[ÿ9ÈD&uK‰¥àІ½Ñ›}è~n«Õ½(gд7ßÊUŒä‹Ñ®Xh -g‹ØÕRK`^:ß"|ËM ÇÙB«ïŠPâ,ÅöÊ»WÃ0éü;µo›AÄ(ýÓÙÏçÎ%#Œ¥w)Á’¡h!èëïT&ÿ!‡P RÓ,Q¦,Ñ5šÖUŽZÛ)#OqÂÔS‰Yfä:ˆ&îÑŠvmÐç)eÍÆûäzb\øU´>ø¨È¨W÷lêö<ØŒjüÈ’§Ø'¶9sFöïC1K»—s7†»•>/çÑ–\Âwd¨Ò)wϸ±YXfó¡o\”…guŸçh/g‘…uI.A§J=)¥#¥¬?²~ã/Ô¤úÙX'>/-agŠ^O|NôÙkM’´ðÉ“wLt¾P Øf!.ZœÃ$Ž¸NÉÅáÔâÉáÌQÃ*GT¸ŽçX …1Bü:Ë Rq-€cZNfq«Dð˜úÝð4þ §yŒ½†rÝ2GYºÀ+jsHˆt€â]FŒRRù,OB+y !bÀÆéû0+%©ƒ¸eq¹1òïMªf/^¥V[^æ’°oÝT¨³&•Ô«ó  ò”܈ß÷¡Æm":.ÈšE®sB¸çì2C&ö>a×d[óÀ,¬¢v±›õ”ÄÆÊ>Oë Íš:zÁÉkTž ²D¬‹^Šaô(a’ì"à%åRÀ;gfÎUƒºb¸$-n²ûH iKíª)Ì„¤kdi1bË?º ñ27ú“ʶùTþÄÍ'mU‡Ôï˜;[iüY/²TW› +FÑXª—Ÿã'w¹Ìƒ—-oôH•¦°øÒ«´Du™-sã"rªTU—ñ÷S‡ÔÃMñß¹dIWʦ´&Éb.37ØÒjŒu©¸%ùsч±X +ïäÛ÷—{ +¢l¬“~Ãæ½°Õ¼Z“§á³^ö*C%qäfìHЛ3ï,iUx'œ¸ŠâdH©f +ï^©yŠ«´]Wè½ËH×WÐÝX +Ë´ÉZ +A1”V2#+ãbŒ—«‚é«óu«wéÚ}±v•„â ÊŒ­å¤, +ý¦ã>'àg’!>«F·}W§[§3~Uà˜châÖæ¢UQ© ùbVòÞO©SjëÊ8ew˜—é7ÌünX1ié‹.I@?ÚXaÄÄÉ1UpÄÊxQ„†ó¹¤³ðe”*tÁ‹ûÙ–Ó¨ü§@Mؿ˘m»¨0Íu¼‡›ðû`[¥ì¾NÙÔq¤ÙvY¦¾ä„~¶˜€€»¦E’}ÔZ>lùuD{ÚÖñá?fàÉ*àkåDá4ŸXˆÉ(ѾÉöŠ6"Ù‘¡s›{ãí †¥è’x§Tn2”"HMóFiÎŽ¶­ÃÅQßqh:%3產NÇuUÞØŒEýFžäµzJû—Mæ ¯‚pž‹ÎòQþ¶5.ü &7¥ìê+\qʆ2O2|¥'IÔÂÄ‚œù® ¯Ï>¯oÉks …ŧԑ°<Ña\KýjL#4½ì5Viº®Ò£ÀuËÛ™a­71½$=cØm–öV0b¬ª³ß1zß=µ£Œ;OßÐLÊðœî^6ÜJS¡¬ gPMw0Öxa“_݈ÑýP§ßÎ#írr2- ÍÿŒgfì¢òÚrûy#YÊÔС´¹ö ù½½ÓG³ËE]™eêRš ÇG_°à#½ÇL,~@ÊÍ&Å(/o$9<û÷³ˆ ߌ|jëWiÕViu2ßZ +Ìûh`!°ô”Lôk‘åUÛiXœýîK>—L8× k-¨ÚÓ+4se<4ŸËNßo-Ÿ–Y„‰1„‰±ø+ÿ cª#! +endstream +endobj +98 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +99 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +100 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +101 0 obj +<< +/BaseFont /RTXRPL+MyriadPro-Light +/Encoding 257 0 R +/FirstChar 28 +/FontDescriptor 258 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 259 0 R +/Type /Font +/Widths [763 484 484 542 219 0 0 0 0 0 0 0 265 265 0 0 +174 298 174 351 488 488 488 0 488 0 0 0 0 0 174 0 +0 0 0 381 0 585 505 570 647 466 462 624 630 211 0 0 +448 778 638 671 502 0 505 464 465 626 509 820 0 0 0 0 +0 0 0 0 0 454 552 446 544 485 262 544 536 209 214 423 +212 819 536 532 552 542 295 373 309 531 452 722 429 440 403 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 174 0 0 0 500] +>> +endobj +102 0 obj +<< +/BaseFont /BZAWJR+MyriadPro-Bold +/Encoding 260 0 R +/FirstChar 29 +/FontDescriptor 261 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 262 0 R +/Type /Font +/Widths [322 588 588 202 0 0 0 0 0 0 0 314 314 0 0 260 +322 260 331 555 555 555 555 555 555 555 555 555 555 260 0 0 +0 0 0 0 656 604 595 696 534 527 682 689 285 0 0 511 +846 690 717 581 0 593 540 548 682 636 888 613 603 577 0 0 +0 0 0 0 528 598 451 596 528 341 585 586 274 0 542 275 +860 586 577 598 595 380 434 367 583 530 759 519 523 469] +>> +endobj +103 0 obj +<< +/Filter /FlateDecode +/Length 5256 +>> +stream +H‰´WÙnÜÈ}×WÔc0¤XÅb‘Œ­‰ãÀ3qâNæ! -­elµ-V”¯Ï]jgÓMy ÆM‘µÜåÜsÏ=üñîáêüøôA|ÿýáŸÅá»ãç›ÇñïŽ^‹ƒWëƒF4µn;øטVÜ]¾ùЈ‹ûƒÃµúØ%Öç¶îaü××0c_ÖX¡»ºë,,¸>XurýÛÁO냟~†Sÿ ‡^Àÿëw‡¸nÄÑÍÁ_ߣbµÙVo^Éß_¿=ZÙĘÃõÚ]Y5u£;±>îáIÀJ´~†®nÚшLh;xþ±2²²u+Vµ¬`ÃJ¼‘¦6bõ(«ÖÔ£X]Á‡±îáIVFã«­¬FÜr[j›ná¾¹ƒ]-nÏ×ÂæS:–\ÝJúý,«œ¢#àá^þký§‹y¿û< è™ø„ÑW}ô_¡ûøÁFÿ›ºx¡Š!hl=6 +Á[0m=’Ú¢ñG²mЭ¿Ê +vƒ­„–-©³µ+%»­nÄ$Ç·b ‹áÍ¥´xÔFü ã +/~?JpB€Ž+üQÞr;µXÝÀÉðsŒoŠ¾°nÄÄ.q/+ +<„ìzÀ(Ãß÷`Ò˜=mð´8Ìü‘apq¹Rxc¥>@®´Æó·"ÚV©6ý"UC¶! ¤"»n¥0Ÿ%é$7ïÓ;á•Å«4aìA dB—2¸‚ƒCϤêqÅF³>c$àßX:˜v+ükƒoE) !À_8Q,Ôj0vÔusã’u¾#5“ô²ñ§Œ“$L‚¥_ŸH÷žãRžztä’CvE`Ä-iöËèÆE•âÀ™ ¢§ubBœ¤Ù†LÒM—Rµøt#5áì)ÇÓ˜9Ôá‘@÷{1ÑøŠ&]¦n{Žµ€s>®'Xz'rкÔO…\¼ú/¼NpI³ÓÀáå5~9žÆŒ˜ÕGÅÌ |Ô´ž™ð‰€æp¦#Î €—»Ps-{²CIøGü]J$ƒ ÔbJ[Œ×ãgÐÊÿ±¤\`(IÏËl˜íj* ÷ÅíDMJúDkÚ>p©"Pn1W#šD€ÞÈß^|Ú§Ôà—qfÎ{rä>§ÔGXÔRÒÅ pˆø"[ Ü>"SÓ¸…30`#,¢˜Èr_‹sô‡¿ðåNd§Â—k÷%º8ÙÉT|‡NkÁ'ÕU$»ÃíÜq‚…\â°†*†…¿'|öôL¡¨¢.#».¸V)aÖM§f`¥,¢‹=^{!mæPÅ]à +´â4Ý‹cï’Ï4#ÑkÏ]t‰#‰;qí0¹¹>qŸîÐOËiù òNè=DȪ¦p¦HC‰”ùbÏS5¼ÿBhÉ:bKÚã1Cxè{Š`‹ÄÝÅ|cUœÊÁA¹g|9èڜȰxÀRXèý ,š®, Ê,ç9©÷¦ï¦mÃoËÉ# 37ýÿj IÙ|Å…±˜RÙD* "Aº²§ ]“-mJ$šÈ¿¿N€ÍÔ±ÍôI¸2¥µÉ•vr¥É¸«{Y´9*ÌnPt#œnÚA¹[ïëÊr*mÄç4ál3IHŽ6PÎJæß‘³ 5u®Ñ™ áXÆcìj'Å6eÄbÏÑùx¢£¢’‰ªntòÜ•½T ÏaІ¡Ä;÷íȧùi‚ÐHsÛ5ì¢á()‰Ð4É%ÝTÅ'‚u!XL”Ií8—Lpy¤{HùS J³}Êô[=xþD9éüd*’i ƒÏ!SÌ®®)‚;2âzÿóŽhœ¤Âjz‘cAWûNaœºNˆ†Øš%Åîöš€%Š‚ŒrÄ›Xp ï ‘¿¬ËÈ…ñò±yÐØÙ|!:úeƒRךD¿¬S°>HèÒz­:ö?„¨F¸°€X8ŽŠhàwŽ»„tûÕâʘåÅ#!ùèoo=Ò™D6ÜÔ¿àŸ}’Z«Rf™¯œo™0ÚT î’HùŠÞmÒ]T¡¼÷–I:á>¯j};Y†³!ÅÙ Æ°üƒbŠ{* ¾603 +GsçÈN)"ê‡BùaøòÛ9t¤Øü í¸ÅR«blŠ~Õa³)Ïõ IÐ×ê£Pžç¤x:rŠâ©C< (Ðqì[Ž§:›ÑX0EƒMb%ÞK.„ ’ 2¢à[×v>##Ô+ SiÝ@±ÞBó7ä³å‚oÜq®:[æ(d1wT'ŽZï¨u´ƒZï­÷“ìMm9æ–”æ°>œA«é¬ï£e¬„Â[TÆÆú©!FmÏtÁwàYÄl•´¨L’¥Ž6HÜ, ¿Ê¿n8ú ¼ž™p T¡a ®'ü:C(;t׫ñ“(ÑŠk¡Žm¹QVcÝí3ÂhÙúfß!;Õ[éqÆxGÎ*g‹½\T(Ríœ0ë­Ôäæg—™cÇ`§lçF¶›Á’ÑU— +~(|—ë +ƒ'œ‰@ÖÅhT)¦­$^/y[k„™)ÅQ ±T†•X¥¸uòû ¢]¨¼óÆ£ŸuØ…Úf©è8WåH7A„ŒSônP i€E9Xδ÷ž;êe¦ÁŠÖÁ0霨áFšõ a•ŠCï@©q¾i€X¤phÈEÃ0ãù¦O54ë³Éeàiç¿@ì¨3è@§Yÿ¶à\“ƒ²ŸkL3Ö6 2¨(âÜI¦°ÒL6>…–ÏÕÆUd8ÏŠm‚ó!ǹâwP—ï >ëÿ‘¬—öt¸©,¼Q·½$ƒGÎê] +ÏC_”hzµ„÷uÅ Xy˲îCYwIY³'9.ÄØP`¡ŸÌ5Q†o`ÐXËÀDýÝ>šI¼–nSÁqçüŽS±n¿ÄíTºn)Š8öB`¶lÚ½˜•@ô¡ÎôxÈ•I…w¸¬4u×çjØ‘«½òlŽFB( Z܈P^ð{C4™þ,& +#F‘cr¶Så;GnÈq!TŸs§œ(ä…`30)cfÀÔéDÄ]oðASK/¸ïQ©G1ÑWû:ËnR˜*Éì\Ë’}˜Ô¸U8)ÊxËJoqLJ ƒ"¸Õ'I€ŒòÊ ,΀Å-ÿg¯gÜÁ{e$/û8 ^€2†ûŸvè'ƒf(¦ 0€r0rãŽêX£ÚlNuÑôŠv!ÄLSŒ‰sÍ«EžÒ“÷=kÊ(Bé/Oƒ2ÑL¯ÿ\ÉŽBDý@;ª#}ókd«‚q¨ `áa0Êàx ÕŒGX®ÿ& +™÷¡­kQƒzh­/þÉ5hh½ôÐncå«B'ŸÕÂÊï DÕ¦8‹ÞÂfõ¡DB8ekýŠ/dâ3Πš…ØÍì×¹síí¤5nßPåþ^º";lnÖI°ùU¤L“ÿú]½4$S£±Ÿ<>a´S)ÝEÖay¨ž*õÒ ¿¥¨Ä²¸šÖ§'Õ~†•ñã-ÍctäX{…fSqˆŒ™’³rPMG2Á‘YÞŽ3BÁO;µáu.6uáÔY}zN•Óuª…”ö„ÇžÎ9ÍQ¬Øç¶èñN¹gЃº¨ÉëN9Í_QXCCªqLSKŒÂÙb³éÊPãW}©wÞÔRbí¦¯k:-Çeòn0¡°d˜ý“.…oiÍa¤pR ÏÁ¥öQY”›®~éTx“5c&¸é÷Ã]ç¸éìÀº™éãë*0dt (øP#Í“p…졼XŠÃ.°Øÿçjøè}ŠXû³;oëñä7£Äðì°g·Bi'×1» ž½4Ð].ˆ)›²³6‡"o©t‡_G3ÓFj‹I/ÏÁÍñ¨‹`ÙStQRÞå(ºÜCz_YïHp%ò0´¾ݪ=|  Z¡ˆ!‘ÃeÚf Ñc@#ÚàÀô›Q(‡Ïu†]üÃû{ âwÍ…VG¾O!ÓgòØélÎulé(/,?“pAöË}¸6«‰£¬‡ïêA1'ûB3%c ð`xúJ-bP ¡kÏD–M&r(îç~œ|Ôg‚±{P®ÈÅî… ö €©‹}°Þ¯ª' ®†ßÆÿ¹•kˆ0@¸Ø=Áœb8Xñ‰½–fµ°–NbN›(­BÂpHx&×¢éFØÎÞbð ©’âÖq3·t_†ë™°ÓÕ¿5ü5z—ï÷ï-#J%WÁÃgz ºƒ‡b0yÒ¨ü’²ç YÏ9F'Cq´dÌÚì©t幡£í ÎVë‘þþØpö˜µ¦ŽV#àü!ÃFgÔðˆa¤ÂFµ\³o¬¡pf¡d!ã^ÎÉé÷Ú]fðÜo ¨S ÁÚ¸¢u¬¡`QØú4r™ªY妒Vm¾oÁ-ùm>K¥XÙpfáæãáêWz΋J]ÔRÇöJÌ.Ó‘˜_–çc«:P½œ¸‘è‡r$}‡Û‘´`”}ÑÙi'nmÝÂÕ©[¶]·j|Ο.|C‚Hå®ë EC§ZöNQÔÀ‹biY Â^]ø¢°ïy3„ +$°ÌViÄÍ‚­Ÿd-r‚â!ÀˆÌà•¯øÚr´ ?x;‰ÎOÉÐßG„¿²yuhÕ¤”ʳx(M!4¦æ+)›{01§?¦fÆΊåÂA"ü,à€zÈ}[LJ, #é<ÓÒ¦âÞb[ŽZƒb?šƒ Dr …äêI/pÒôâŒa¹áöjoѨþfvÝd7ÁÕ5#&®hÙäDŒ|ðlPsêiEqkœ¹“†ï–0àl€Š žÌ›ÀwôªŒ«óâÞx)™…*hç ^z;Øp$ⵜàÁ¯øó9NxPâ!=PsÓªn:*&ÓV]ÓV®iÓÅšöøÊüšÍ1­UcƒVþ^…­*õÂ8·µê W`ʼn3)_±/CGƒI–ãCn)ñÀ în +-mI!B<ñóZ/Ýy‰Ú›FÀ5Æ#ä4ÜÒª}(ü° õ ž™ö,#ýÊE”úÒò®Mà>âR¨+An9ÈõHòa0¢U$L¡6r˜p,>b€­íÔÍVè¦'œ°‹Läi¦Uõ/!eÆݨ£bhEÀä{ñTÙ¦…ƒ…¨/9F…TáVY¢"ÖÜÁ½7ex‹ƒoþć™2ƒ_ñã$ü)¾©ˆwfÇó ½9‡0>mº"²°ÀU1%í5ŽÎX¬ß=û¤äO¼·µ-¥mà]Ǜʵ•:J"ÄX!ÒqTdÎæ-Ý©UúàØJàžá‡-öïû¯.éÇ æž÷ô}®"pß%pAÍçáå³Ñ8”ý@Tù(XŸàžø­:žáËáM 3XX-÷5;âZNÃSõ2@>;&rø¡¥œÕ ++²/~Æ¡·áV¾Á5…sžOì<±"œ¤·xé]4ZÂ)ïbð{ºø2òËNÅ–åÎþ`4;¿ +endstream +endobj +104 0 obj +<< +/Filter /FlateDecode +/Length 5916 +>> +stream +H‰¼Wko·ý®_Á—€÷j¹Ü'ˆã4H‘ i£¢(ꢸWºRÜXèQÃùõÉ!÷®´6Ú"ˆ%írÉáÌ™sÎœ~uÿøîrwþh¾øâôGsúýîãíÓ£ùòË×o¾6'¯ÏNjSoßÁ¿mëÍýÕÉé·?×æêáäôÌý³6Îœ]žôÛÀö3Îù­»Ñ4ݶëzXp}²éíÙ¿N¾9;ùæØõ7Øô +þ?ûþô×µys{ò§“ÓŸ0€ïw7Wfs¸©¾}mOøú»7¦é›<ƒgþŠQ¸…ã(ªz[×½9;7òËãêíÈŸ4)®¡áý0a`ß´›ÍÖVƒè7­ü¶Éôfcþb‡íd67çÖµøøöæ¶[xóÎ6ø÷£¥ßñ@x¯`Óì ¾çîm·up;Øžà]‡K³y°uà…;K'Àôç~ˆ'Z:îÄKáÃsØ«>r:}w AÄ—ü×9ô nñ¶£¨j na6÷–¶¤­nì?Îþkµ\¯êrzv&P¨%ÿœ~ÇÉw*ù®Ùú _cò‚$@ OpaÈÉÞ6œ-GQâ¿ç‚ð¯ªi¶-FW9º”sœø9àè£k[ÑN;ÛôX€ÇØmäõôþÆðå!”²|î±8×ÖÁã;ø—·©`{ÇÁàçW°_G0Àóp‡ÃI×;ÑItüÜä¬'xSã®PíüûBîøh'¼áíÑ+ãK—–àÒôóÂú/Þ‡l˜kùòp½?X:üƒäíM踔ðc +b†e‡"øyl”ÏsÎ÷¯Ì§¬W«›~[ÿ‡S?[á”’Oà¹Ì_ác ‰bL¬±Ôêòô}}ÂñFõªGðžðçGó¨µa9l¹ï)÷uÊÒM\ÔãGsÄÞAp./-ÓŠAXt êW7PJ¯ñˆî¡=|I qê¡Ê!%o~Çjy¹Oú¢ÏûÂ#h_}¡ƒZ¡›NÃäÁ¢×ëB~8ŸµÇP=LñˆgÒgr¥ûµÐétPü°„Ño§©î;—Àï.c‚ŠóS +rý ¢â½’°UŸºšˆ€H¬iñOX-‡U«¦ÙbÂ&sÅäò õù¤O¬åKXxJpcaÉVðñ¬ÜoUàBÉœt²d÷Å©u¤4"Ç‘ûe¯ 2i(/Ox•ÀNS$ìȃ+806åÝ“ì~4Ô{==¡Èÿm=!í°yþD‚ÍÜŒ‰S©æç”…#°@¾à3¹¼K}±{}æU2ØuØy®ë3Øm*í‹–÷ +LCâ0ÝC±"¦•Ò8¼Üo1Ê”käÎ!µ&k“:Sá–y!lÁ‘±Ý½°âÎ:Ò2a^.E§Qೈ¨ +…å/<žìJ•þ`}Çü)˜ŒbÄ1—‰ê/Q  ³= é×X&“8_ö(Æd’D¼ýúO ß™-Y¤ß>§ß^.8bö‚å+óF˜ü v <ùóZzK(MKPê  QZï°>mVáN|O/]Ù‘/Ü1èg#)Mx`ILÝ/E‘\¾Gž²rýÊú`´÷âBL‚¾žø¬zÅxG° Y¤3r~°#{7F'su‹*Wb§Ÿ 3phçøÂa›²­ù,ŸÑŠ|àK~ˆ*X#MIÏÿÍÓèÒ[áfq¢Á¼–-ÄÑ”Ò&ö¡>”SCƒ©~Îì- ŒÕÖ7å@\8;à˜Î`_Ê„”UY…Ρ.Màâ>Ieax$K®\Ø*Q…I/{ž¾—R#Ǻ$· ÚÊ'^þåLÏ{Y3"SN=k‹(qà˜˜|M˜B,1rÌoÑñ]½nâä¦âíw™—h…ÉÚÆ@8c)OÁ·5d·'n¨xæÔªË ‚ qaØu8rk ‚ÐJC74ù| ª¼OpjiFyIo,ûô#”ÏkMæ ‘NÖiA¥ý•v©@±iïD>£-«¨UÎm«mhTP“ܦQ®>ÚuÝ]d,‹óƒˆµ´¼îL1ÊìÑOYäÑZÐrœ©»Mn# µî? ü3Àñ¨‡qÈŠ¿1ë€ÕÄç–ÕM£švRåbèÚ©TÕ¤«Céö¥@¨){b2Ùï2/]ZníD®>L(^&) ¼W«'xߤzqÀ¹Ü5¢5Tüâª.pÕ›O súoý#¾âY±ÝÁgô}º‹L_Dè4›Ñ·„]ÎBí°„•±ÅQ a%úLjÉ–ºê‚!žj#ž-úŽ$`¨W‰ÍH¼ºY°RJ{mŸoŽX-1ZýÿÍh]#¤œ"3s7e6¸fQ®$ºáI*Ëêy Æ—(ýÐ&àtøü£I‰šƒ–.@¿ G)tžUƒ«üŽîtÎைk¶æka¡Ê`ˆŽ¬Ý|ØŒ_˜H<³Í|j™¡yY¯K7|‡yë)Ù"¡å[ßR“¯ƒÊPª™_ÂJ×£ëÂ)ì©_¤;dEx+7‰)»¢ó6/°¤õßìŸÊ/É&5ã:7^hÉ©•ƒ!ªc€h@RÜTÄ$R`”ËI›{ˆVÌÛH†}v°(ïo7¶#æJQTLa&{²fdŒZ ºqÙš%¼µNùòÛ +½µäËK±omG1;S*¦é  på[–´°ÔlÞZÛ6Üù+Cr*u%•úøÕè2(¯÷×Eiýœ3 ªp•ÁîeÌØÇ¢ÅÅ÷ªj“2€O4vs;[DT¬y4k„ææóÌd£è,+SKò’»ä> ç9¤µ—@O35F c‰ UN•$¿[‚±^1£j¬œQG—ƒ«qK½¿$wø,ùôùÉ·•üt&ƪ¤^gèø<‚8£rÑÌ;Æ:(†ËB2ï3-…|¾SŒ^ö¨;%wæµ6P^b¥W&ÔžWÞ'ñŒÊ4dÖ—dÖê®zÆm˜9Á&Ahpeº¦Ú'Æ 9J‚MV5ZáuhlÖ Q!f-}aÚ%8¶Ó¤l#8"27èr;ešçÐyQ>ÖÏ=óÊ$ͧ籜¦ræ SŒÇ˜ì“›ÙÍ…â•sÐ3ÖMs]”è(¦òÜÑs´ž°b,•€B4I)%x°tÔ/³F‚={/z3×Koòòäs¤€9âsÌ÷Tö}¥pŽmi,û%42–*ÈO׿¤5]ºÕ:½‘ų=tê3¤–†3LxÁŸ4Ê|µU ,% È0Ü:U¡¯VtÿVË­££l>¿°LVtràò”CAHîË1<£g$Ö’¼—P³‘žoâ$Æ!®P—‰£«Ù†Ød©P6ßcG·8Y|°,u3O¶ÃƒÌ³²JïãíÕ wºÞ[—si¶Ë9'¡šL›‚7‡Ì\%»Qºµ”:8Ï)`ÐÊ:¾ü1×kéæJoÍW¶ +“"—ìsÜ糜#Œ£ôMwnÅ—Ð#YÒ^x-"úÂ.•^<"¦‚AÙ%JÇ­‰3+eׯÈn'Ù%[@ÖfnèÒjà”zìX?<ë.{VA|¡ C:Cjq˘OÃs_Ÿ­L½h”÷J‘Ä)D‹00kͿȧH§§Èï0q^;É']Ÿb†O~Ž¤I†¹Ê㮞ù¼6‘»VÂcÈ £@‡Ç0š¡1-L€ÉLÿÍŽÒi,MË£OHÞ’ŒÌªj[Òy5aB†*¤*_ÀÙ)BÆÞö̽ãÔ3 e‘®ÍÎXèqÙ=)?è×3=æëë±£‚…®ØX¼2ñTè'ÅÀ´°ðmÓ4vì7*e"õñíÑIo®aHh£‘xM9i®I¢Ë{ ¡A=˜ï¿2“SNC¾_J$d)›…>™Û¶™t¥ÕDK†ø¶O0Š‚t,´Ò7‘ºqPÛEu£s÷4ÌEΑ-Ðù½×£QŸ¹›U™šê‚°Ç…Ly(’„'œ™,WÂt)OE730m;iI›.UÜûÞöt›W&Èx1²Æ[ÆD>†&À¢ì‰îáÃ}òRÿ¡½Úz㶱ðûþ +>F@ÆI‰’°uì[Ñ((PLÆc'­íxìt½¿~y.$)iL§Ø—L<#ñrÎw¾ Ÿ‘Íö9±ueÑôz¼KóÃ3ϳX#« „¯$'œÇN¨ÒÊ"§½e9Ñhѽ¿ƒ[ßÅ3‰¯òžYŒ½°f(î곟n»NÙA ¾þÈ)èW÷.áC6Ñ”ŠÌi°N/M.Úþ ÇdŠ7˜=eXÊfá/ÁzÑçÌÄ£¶û6g×ÐKwjÃISiOݦؗÇ#ÿåQˆ€,4¥›•^8-'²þg=de}º‚RÖÊÓYÁ½AbHãq6Ýd+ nLC\ÃÅ”#ÊnÐ ¦´!‚Wxé܆”`çÐMñî8>Ÿa¬´¨ËájòôSéäãoäèAŸp¤NÌ:ï9Þ,¥Ç°²)zÒr~üúSƒ 8ðkË!b1c&äÁ¸òvQƒCÝö¼Qà5JÎJ¿ßÔÈ"Âë6Õð€@Wø7räà +rÍè„þ¯Lµà›Èóu±aã¢R§Â”6DÙ+’ÄÈ¿oè"lzÏ8Ø•1í"Ü«Œ9æŒ}î×ónÖMãXŽ­º)ü EüÌP“¢ìï9h>ÊT‡TÿŸÿòh‹†,\¡˜7LêX÷ÙVr\CÐ`„Eš |}x¤›¦˜êí¶¿š$?qØ×¹¥"¶Å9ü®zqÃ[¦P¬ZÉÕ9dòmfiÎ'î<ÿ-1RŠaRÙ­úeU3XŸDº%ᩈ)¬†vkñ#Y¾¿'hgòG&f3VÊÁòB}j°¸G_DCæNJ<¨¹èëZþBÓ&í›yXbÎYžÊ¾i3‹“tl5ñ¦¾ßßð-Dmc¸¶QmÏãN%Ær·ÕÇVhžÄL­æ™®ÖðèC]²¾IkÌ +t^3IÈøy–¾X1äÅúÑ!ùÁEUÆØÇö/$²>˜ Š¹¼$”b‰ùƒ¬f/*ímk‘|ÓG˜X¶p½dº…ÝçØÆtÉM¥iÆ4—\Öm¡®qxý—ÇZÆÊ3j«WM‘ïw²ó¿½kœ{;á°{{õ/¸«ë’iî²±8æ¿àËþ‹Oªo,ŽüEÓ#ttÓã…Ún~mœ±³LiþÄ`é£øª—³ýÛÌÕ_2ý§silô?ó“w¯œ\Æ÷ÿ`:ÖH×ÀÒUÀÊv»R ÖÚí׵놠ê‹b+K²ÁÁ±„eQ’7#¡×`_Ì™‡¶ž#¨ëáïßš¦3€› õüÄZÛÞãR,ÿÿ°yÈ/3["‚'QH%šœ€_cyÉ')š(!ƒâ´‡¹Äa‚®i}Лøå[cÉHKgC÷[ˆ.9% ²M•êÉß7ifKw +þc§ÀOÓ`Þ\š°×ˆ×w‡ïšºÂÙÉboØ”­ù-ئÙÂ-ŸQ±.s$—¾¯0/± ›*ŠƒW§<pS¤Ù4CÙc‚2Ó܈¯è­iìg´œDáÇ2çœ(¹ ¨ÆûDÜ?"Î'18TÇ}3´´D4MîKóì*çù-ÛI:Lg7äíŸ9TÜB å‰ÔN´ŸÝ³FaÁ“ŸT">•ü>Çõ-AT“‘È[>‡ ñ¿x(àîïç  ã­î¢Wg¢L¨Exxcä_¥1ÒЭ nq?7AŠÓÑÐw¸ZK͈vÔΣÂU'ÃÑtóæ ~Õ¬ÌàXÌ`ª ºëZB³5n¶õ—ˆ`™×˜ú•fíƒõ©ÜÄh‘¹S1'zÃã݇Ss»,2ÀD.–Pcf>v¤ôNêÙ~„³^•ëýæòÇX•.«Š·Î¶÷ÿvU·ÿøðñS«nOhTMaTÑcýœò ÷c¦Uçëb;¯ ì/,MÅ@£¥{º‡w›Á/ IS»;®Æ5üŽJ@–Þü¿=@îùÆvd¯>3Rü³Dfá±ü°Ãyz¤>7”óäØŸ½VAï`?dd3Ánã qû@g¸ +f¼2 ÒžÁ€bF^Ü …ZÙ¨¾Ôcâ‚C0/µ£õ5‰íØ>V'òÓþXêö±ác’Y~>2ÅŸXcÞóƒO¾€w…Ä +Η§~~àvÑñÐßqǯ@Ž˜Ž-€…Ç·w¼Ö씞#Dî¡^šÒGÃâEØ6ŽšGèÙ£0½¡°n¦&³zž–ÛqÌ +ê׿ú£bùA,¿Ô$;¶bf\ ©;%³=|?ñ€w¨ºÄâ÷ð…,'žhðÇ­×r†à@ý +«˜á[†?Ø Bä ™ç¯°º& O*?bX£¼ÃŽaÈ E#öÄÒõ4®p bOL‰$ÔéÉ +ímõÄÊï‡ï‚‚×öw\2²ô¹<6¶ŸÄØÑFMéÒ[¦š]Cl¼çà÷ÀS²‡)ñE¹=@ïPÝl,3Ê æ›ñ×ÔTÖ)æDÅ°~àÝ®Õhz,Äá‘„u°‚q{â•kxLTô†…x:ïañybJÖï'^õÀûÞ„å./áŸ*ë>•u·¡ðvµòv³p„RNk™§H&Äq(Ntuä+o(Q]P… þO€øðÒ[ +endstream +endobj +105 0 obj +<< +/Filter /FlateDecode +/Length 6259 +>> +stream +H‰¤WÛnÜF}×WôãðPì&Ù$±A;JŒ,d7+`Ö‹…lKŠÝ2#YÖ~ýÖ­»«yÑñŒ8ìîêªSçœ:~½{¸º8ûð`¾ùæøsüÓÙóÝãƒùöÛ7'ß™£7§G•©JW·ðoÓÔfwytüö•¹ÜŸÚÿTÆšÓ‹#_vðüו­i†®ì}ãk˶õðÂÍѦ+N?}zôýÏ°ë°é%üúÓñ7•9¹;úûÑñß0€ŸÎn/ÍæüvûöMqüów?ž˜ÚUy0Ïü£°! +ËQl«²ªàÛ#_žŒ­Êž—8Ó·eUé\?wÆõ¯MSl³)‹­íËÁljøb6æm±íÊ"_Kg6·E7Û|„õtWÀÒm±íñ+½¿8üÜßãx~Ç+n ‡û«–}.ଆ^ƳΠ+›A¯à¡Å‡ðÏ +ñ—>Ò¯ãmþ}úטÛå/jHÑ«—Z‰§;¯´Ðþ³ñC_Úˆ‘l‹ÑÖ5FÿÌEõô¤* ¸5Çc°|–/FpßQúLˆÇsÎGSPUÎp/;0Ô¸ —¸ûoapåwø€Pp‰%` 0pÌn. ö!¾úcê1†qœÀAyÎ*Úà£á÷¢Ô3€?`x·´°·áX¨¿{ü¸ãËpÊ-&#?â*öž4MjŽ!îÇÕ‡æ¬3„Lrh™A~p´Ë:tÔ:ªÎ. £¯Ëa¨ZFÇë±^!èފZÊ賹NJ5TDzá3å2kV+YaöX*££þÑHtT ªZGÕq·A¤²q®ÕQ#†‹UÍ.¡BHtUãû¥TêDð=çö0›†Š6‡Ø”cÉÒb!-/— æ‹Ác¦ÕaNÙã'ÞD¶ØãNÃ-¡˜’«ô5xkr¼5no`ñvYxÕt©Î‰Ïùœ›ë˜A¾Mº…­¸n?ÂÛÔ´Øv¢Âµ¢Ü¢T/4,ô#¦î•–’>Ö9ÅXןôBð–ê}É$WÄOÆc_«Ç1Ò´Ûã›[ d@çX»ÈÂßጥk¬P/(kÖ±l¸X]ËÈ:¨µ#jó Pk!QøT¡bZ¥WŒV8®‰º¤Ä61E7£JÄ6›z R6ÞšÜB Aö³÷ܦ9Ì£ô! t–$Ý;1ÉWˆ†ú<µ^‡ÿÅCš)€k«½zCxAÑc´´c´ ð@äž±G«å¶0»¬åÝG£AøyZ ŸÄ/¸gßXåžoè’Í”Ø!p—8à +åôÙ(:åNÝñÚG‘ÄØm WÏôJUÝ%†v=¶r²— ­^wóz¬3”•&›Ï£²ê¬>„r¢J € 탓ÃYÁ±-[Ö²d×°þvDšW3Lì}Ÿ¹®¸Z¡§›ß`aP÷<#üô_ŸNáÇÖfX딵~ ©¨±R:ÕXÐ3ÜAdè¦CF0zIÌj’ ž–Ø¿Š~cöìBmÍT›äh`³pÀ&hFï%¯)æ% +šàE¦?¾ñþ¤D—ÿ¢yPHˆ*fâ]ϲÁw$85ÇP´a!`¨O9çc¹‰mÎPÔ½—LzѨ­EQ¯Yh@§ä¾gu´Ëut…Š²Ò5³J÷^ò5#ógmpCÕ +–4NZ‡ÇÀñ_3¼%opòe«Ÿ¨M‚3㊠+Gpû‚µ"ëss1š]““_W«aÔñ0>e³UWvÖ·¦zå__£¹ìQÇIÌe + +Øá=ÒÓ-æj©zF%ьüéÒ ¸ÀÁ{î =ºYå/¯¡ølGdm­ó:Û7‰H¦[Ÿy )Î^‰À‹–1ZÄC4õnS´”[ô¤CïŠiXqþÔzI´H¹aÝZ ƒºÊC»Àûmß ³TâÀAžpÛË\Û`„ÂTqP–’Šñ¹2'29ž ¨a£_ͽØú]PÇž Ÿ,O&­fïºåHƼ¾/jêÏ¿`fÒ Wx꾘Y¯2˜Ñ£›0šÎw23âI¬ce‚)nÃÈQÁžD‘YîàHB`‡y¶"›©$qJ›ýÄcIÆ? +OLCž°16G ü=˜®B«)ˆÉÃú€.þc!W™ WKA•×Kr8Ú/ÝÎú@!½*›)BW»8å‹é§è ÃGQõ'z®ÐËJw’Ð"ŠÃlÊ&ð#úÓ4ÌPžÏ{Òu$;ŠçóJ ¹e·Ð€æT~pŠ EN?­Ø·Î +÷šhëÑÊFJŽ'Ëè¦4œ“Åc°¹21²ùúƒé‘ÞF;ÕбŽ†9‡•$8ž)nÂ|’ˆÍ!äu=Z¬ô€§›¢õSžDAÚYñJAæl=MÛu„ò¶×Ù£O¯#nj '›ÂDßÃx€ß‰QMTÓÝ”ƒ-º±´KÍÚ¨f]‰Ì&GP¿DqU^I¸£R÷b0Ä4Š—ÇAݸÎÇ &Ç•J»xÑ!7Ò¡1¥sK§P&ŸçÖzž˜Fâ!rzñB’©#Æ2™‰Ù ½o£$ñgÐNynIªJsZ ® î”xëdˆ…“ÄÆe½7Ȧ½:ÄDNßÒDú‰Gº´Ó—Ö4ÜLÝྀlû¬\u¤U9LUc¬Ú5„§0µ–ðüÈÊÛz¯®SN~µºj‰ër‰{©éš qd[¸(kL{˜²¢Í XWÃ;ʼn¥‡TÆ(MÑ€JÈù¬a IŠ±Æ4“_Lfìå®ÄµÆ™ã hFž‘™_;JÇ|ç3Ê”F™“c–û?ëKZV©PœµÔÙ),Î ‡”ˆÀ £°ðf +üÒó˜ÑëäLQXâZEDÉäzÒóaÄEIG§²wvNiÐTP_ž'2g¨-[ƒq¡¹ì£YŸRî׌¡8aÒ” %çÄ€ËPìª|Ü97vz“•ÈèsQõnž¤šaPsÃ:xêä/&ÍoEãð§Òüs~Žƒhï£V±{âZ\ÔÉü²]“#yõr:Ÿ +< æ)³T)Ç‘'Èq3l©ô™Ž‡:M‹{î ƒÔ:†RŽó`(·+<è“âò© T· ÜÞJX 9,†·ÞÀ—äÖO°×ᔜná‚¿NÝI "›Ö@| 7îzZÓ½v¬ÉQbÇz’Ò°KþªQod>Ã+Éø‚nÏ2¨V± ´ €‘¦–êØzB_Pr.qz%1»ãÑ)sÂA¢šözŽÞÌœ°­\4’ôìð¹3Kö1¹üu¸hª ¶Z¢ “OD¨Ýø@nü€:(ÍëbK·ºŽYM,®’¯]–Q]ïÐøP.xü Qú^)âð™s™Ñ*±ËOÉ úëdѤ¼ŸŽP,—Fù*./É,$w;d.cœÜ†=ÍøÌÒˆ]Wlp»-Ûc +›:t“Æc4~ajY &;"¿¦Ö+ƒ§Ë€§ñäÍ÷R ºòx¢Hƒ+÷çž5¥Ë5Åk\¤s#ÈÕá<¨ &Ö‡›V‘9<-œøuH«¢ðÌh®}iµr,ólÝ`¼D$ +)µ ?¼(R«=–ËÀ!-°.ÇÑ€ÛHÖu'q&þ”é´ò=Œû»Õ¹†¹ÛKÞÌÒÆM‚ßURÖhÉ<š8V¡Åž(:0P…Ýöþ|Æx:á¼0Hs%ËB£å=÷Â9.Ó4f¯üëU5ÎIè‘»Ðô¦Õ "#“˜\ìéL¾iðšFwÖaÉùu*ðÁ·ÓéäÇÁu“7ûOqÄ;8!îÌ/X'.ç«žùjü¾²#Dz¤˜íöŸ"ˆ±=(a\ á·.Q­L :ó©fü‚Ç9?Q!h[¥ÑâÈÜ'Çß@_ƈI»Zs‚”%üöé`hsøi=à»a2#ju­#Fæ@“8Ð\ŸÛ6rê~nÝlGÏ´eºÑøªc*$ø^‡Ñè[úÄ àÔ©²^ñþªãçj¬9º•5Yø¹=êq«W!ùÒ]ç³Ù‰=‰ˆ.êÇç½l¤ê—j)nêmš¦(—žöŠÉçbý†˜úÎÐ"P~+#¨)óyO å<«Ês.P˪Ô9Bâ™ +Íyû‚m?JKH jXÖÕ€"2©] /h¼ F ^„ß(t¯ÜÚ‹U ÊèŠ÷OÛ…‘×­4?—èÛxÚI‚Q°q”ô-þ¸à +U  Üà  +4Buã8 ÙûÒaýŽ©ä±¡Eß¹¯ô®l¹ w+‡Ú–m§tF#z×¼®0†Ü-:’d>±ÉC®i¯Þ»ÂL2çÑâ ?f'“Š%{öÅŒ%t+yšš\w=½~FAÒÔ‰K%Õµ¹‘˜¢3@(ˆkªø5¹YuL6Á9~BÏø³üXíl²&CÿÈ”¤†eœ½- }{λl:B³ØÞÈҕ΢Êo¦—»†ÒõïXJ€þ·¹L™AäxK—{¦¿Á¥(I—`?ÿ}ª™wp»•Ì^n_ +Çk·ä8LÜô|Q(Z•ô7Ç„ +¤HJûZZlÎÓè‚‚+±C/èO)šñ)ÅtÝÃì`<È*‹En˜-câŠo¨ Åîtd©ñ EoÉB‹tWà™ís4‚šñÇAä´ûhkák¢ô80¬ê^“{(Ü®8q'.}¸ç•:ÓÖö‰}ls‹„ár]“0§¦ ¢šx­›sÒÌæ¡­f»©d;MÜ1V|jº«©Ú(ŒîÍ«f¢ß§Hãj¼#ß8%r;±ùYõ Ký\¤ŽÀ\ÚÈ Ò$­öKw_rC[WžJäKoѲ'šrŠI4‰0Ëü¦QÒ|±§]^lRc%B,t"ïtÒÑïqR£¬N:†\´í–hÇc¤ +~qëœ@÷aPÓ¸š'ÿkèàjGëQËÓ ¥ék:î³|ï^]tÝÒ¶ÁÜNu¦Ñ\ŒŒ·4}ø±1ä2YÌÍ +ˆõK3”Á*9åå05R+ô‡wάŒªuÍå¹ÂÓ>PÔ õf>¦àWõ§UíÓm·G·F\{uÛçºíú ÝÂ~ÒÈ“*½?$VXï«7MÓfÊ3¬ôÞ:ÃDÙ“$~BåOYØVºÏ}:R³õ¦Ìq6¨.š_6D´€x +vò ÖÎIØð.ÎE¬€µmÊ&g»zI2À ›ì˜”:ÿ”VÙxüå7¬E?;¸û”’B6¼hÍaþ%üµ¸³toòEòo‰±õf8²Q@íýÆAŽ=j˜™p x\%ˆdrò½+w… ‡»ÿnFŽsA(STÁç‰}Qs^é7VÝFæ¬i/c‡ßר ÝyÓq…Ôõõ´ÔÂè’ª}«)Ò3ZLy æ~“•¡ñ]ìǸí€* ?Ù˜R¤ëÚpJð$'§ ûXšbfé§SßNÝkòuöÉ‚¡æ—ü Ñ6éVØ÷k74]—õè!ß 3¾¿u±96ãŠD#¡(ûÝü «¯ ›«rLÝ¡U ¶øµ hé<]6$u‰Û®$5ˆ¤zk’CÆqÝ ›+_Ñâ {u8•N‹Mè#Sfì”ÅddñÓ™ÿ¯wÞ]ó4ÜÙ…“_@/h¬¤˜ÓƒJûžÓð-Xü%t¿ + Ý}zÓv¬6q¡‡í‘ïy¸k†H˜¿g‡BáäÍéqƒûö5gû:ky[-î÷æ7¼ÑƒiŒªB;z‚ofî8yÏ]š/ÁõŠ†Ý+¶Ü6=5.á88åC÷ÒYȉŒ©¹òN*Á¥KpX•·)¯Ç0t­×ð•x¥Ïç…4y +xÚí# dNuîAC™ؘ³ÚŠCYL&l!c¾¡½ûÜŽ€ù³·råJJü§seqX"2ºsŒ +Úû×r¶ú¸S<ËZ´JÙI‹SkÞ‹* Æ +A }Tá—Äî2/0Ò6MíWšÁ€b<Ç_›"™òH¾A7þ §˜£RÞx{ÀOé§+ûã Œf$/ -Õ.n˜oã%X+ôÁP(·>‚©ã¡Ù¼`2ïpt<ÚŽV¶uTe©¬üq;âÝG:Ú±eª p{Dà…Îê^7Ÿ|!°¶ÛXÛž†(°ch)ê€] +^Q Óé«_9ظnÁûê9+ˆqG¡Â‰ž4W%¥ÝûHÌO5ÂÞ†8Δlmâ_%à»H¶:Wˆù5,á@ÌÓÿˆ¾:‘C 'ر*ä%r“Ú(ŠA@KCWñRêP qû”öX QÑ^ ì²Å·9 $ÚF}nóf';ìŽñf²E˜"žšNœŒŠkrcÿ!¾Ä"wfÉBy°âŠj­eÓŠ7…“-ak`„Ä\euû8ŒÍQÿò~ÂÒ8Œ-‚ õPD„$õÄÃzjÑ|iàpá©ÌW¥|ÀóqôãÑU–ÁŒwÁÿMqtè9ðwʵyº™@QRV+³¦éüøÀ=‹’á]?S9:´Íó«i™]×Ø#›¨;é`5 Þq'«&gÃËèôŠ·øª€ ;o-ÏSfÂwœmÄFý*)" +4FÉãV‰z/•Ã·}Ð8øJÒê|’wöÿ µ¯-f +endstream +endobj +106 0 obj +<< +/Filter /FlateDecode +/Length 5250 +>> +stream +H‰´WkoÜÆý®_1—€—âÌCÄV¸pÒ4QÑu¬V+Ù´Rv×±Ý_ßûš2ݤír93wî=÷œsÏ¿9œÞÝl¶'õÕWçUç¯7ŸÞŸÔ×_?¿x¡Îž_žUª*màÿumÕáöìü»Ÿ+u{<;¿Ô¿TJ«Ë›3W¶ðü×–ÒÚ–¶k:eš²i¼p¶êŠËŸ}{yöí÷°ëo°é-ü»|}þò¾Rg;;ÿx½ÙߪÕn¿þîyqþý‹WÊÂÎY0 +Ïü£ÐÅ¥‡¿¥c(­éʾïÆòÏÕE±6¥†sî Ý•µZ=¶tjuUèªìÕê]±ÖZÝñü†÷Zý—µÚÆ•V­Nð½Âuïp›·©ñù^ ‡Ïßëÿn`ÊŽw +N‚¯øjécpýχ÷oÕ©è9®—ÝÂÛ×®X[ †éÇÏé:õXhŠ,ˆ'|“c¥Û`ÛbÝãï𢅆vŠ¡#Oø"üpTÉO¸ÃµÚrpj«V÷t€Å†rúo…o¯áJjÌôIÝã­Z¬Â^ÀP´Ÿq Øú™zwªø×å_€æÁâ2°d`hlUVm×f`X©˜óû¶É¾SøÒuÙ|¥ÙLÊÐä‘2|®Acn‹=îXã«>ùê_a,iØê¿:üëp#Ÿß²Mª HÕ SAQ ØÝÐè½#·Q#ÈÅò3æ±Ìt®i1äÐ;rMꇓb¨;ì‘ñŽÔh <ò1àp#M9ظ`lÝ¡Vº²~ª+á.t«À²¦=(°f¸6ù*×jMÞ?1 Â*”V– Ú%@BÕL^P…ŽQe"ª\kʪ±šQUC÷ã9ÂFzQð'¸µã»¼Á{ ¾~„¿tª5^åv Œ"›` ï°àMeÝvá%úì‘€«v†]µ±ðAø—KuQ@K†~BâjðɳKŒ™(§¯Ïp/€©‹€÷„òyFºÒÌ_Á˜@è-ª‰Ü ìIßÔxjJ‘O!í2ê¬q§ëôÑ("¨,ûT¬»ˆ¼”2*¼R|ŸÄ‚2õl Ò€´ì(MWš.Ð2¾G9ŠjÈ:wå±þ²i/†#µiKÇ…°ø^ »«RÆ.+ˆ}BµA"©Q—Íú2d ßÃÒ5xá=1—IãI–î¸cbýX•ØS¼6=òoE% àðר¥žz1ÿR­eצ^Cÿ Nã¡hK—„$°gòÊ—7ÍÇòżàÆ K§­FŠ¤`©üA’HP® Êœ’‘Ï ÷Ø ;ž½ãØø¤Â ᤟0È:ºq” ¸K @gž6XeèáwX—kåÑupìEÞ²¾ñù&ZÙ%ÎçFªžPÕtæ´˜ŒâfšDx¡&uvZ“`³ª‚O[% ™S2Õt@˜]oƒLÕ$SCr›Z©—ðn'Ï?¢1"ñ*WBÔw»g¼òE9‘?ï÷vVxËð&=‹kýRz¼/èÄk~xÂf¥äua!t>1ˆOxvàU°UͯȉËYi’D:ŸH7ŸHã‡ë|mi%‘–IWŽ:^Ã…(±Ìxù6O,Ñ%§£ßYÞžñºcÑ3µ“Ìéá /]c*âú=7è†aI»õ|š£Tª÷×üõTÔ Ï°=‰ÅýI•CáhÙ¡ LWQ1O¼Ï RJƒÑÕ´yÍÔÇÝÆ£>Íÿ§ÞÊ®8”°Ê W^*RÍ´á‘’6sšÕÔMitEXÑW#)ƤvÍZû.È4&ßeº5œ)Å—$C`ŸIƒWyÏ®˜š…ýÄ›åÝß*T”#ú.¶.Ìã¿VšÂñ»kÑA6mã“‘Ãàƒ:¹\Üq#žkRuŠq‹ÍSǘàÓêgoà]füˆ ±“¨DûB¤ˆÖðüJÆ^:'Õy²Œ÷˜Û>¶wÞ8}!ØÒ©ÃÕsð²p¿¯I €÷{Ä—aœDîp$ÔéL”„Ã6¨,#ËãBä€×&¼•çZt™Š½ËMâ­Câ™Àûi|•1†2p÷þùìTÁÞ,ûØôCÛK‰š¬ŽžÖq7¸$ؓÖÕÉÝ ˜lˆE¬½)²¬ýùJ.é@œ±? +Àm¼%—¿ íC•q©¡ê¾¿™9pf@>¶Í¾%Ÿ0ξÂuB§oVEM5ÏqÅ}ÞÉ Fmü^2÷BmÉO»|øT“ž'½š8õMQ4ôû3`oCcX2²É ÈG¼U4fó§ºÚј£qãëewb;ÓInGÂY¿W…A¶Œëgù»LªWEŸæ–õ¨SZóh„€cÁSg©X8Í •ý\sتÀlA=-«–ÄOcâZûg$»ÀXBuQ²eÆñ°L±Ôˆh[Ö<,~>>ÖéøX1þà9¢‹,»”¹bYe„;z³®É6¦w1nxç;ŒxMæý·Â±m½—» ãkðѳm¥/Â\_-!Êp ‰²×9–e~ƒ¹î üæù¢qÓѼwã(Bè +¶vŒ¹À@ …Ö×rûÌ%‹ˆ½óÄî2bç7"½Ìüè'y“Õ[¶}10÷3Qø¦Í + 3±äÞ™7²é0cI[Ç1,Ò›0ªv0š8vr+§Ëž¼GJ­åYXwꪚ7[Dm8ðè=]jA…˜‹>—*‹­vòtõïÒ;1%Àɬ:Úš^6ó& 5$ä£Ê‹¨Åî k 3´¬F¨Im}3Lˆ‹/Ýèà­WûôºÑÞ¥^Û{DY:áçøÍ8ËŽ{ðBBŠ3X:¦$Æëès’8µr)Žt‚£óKý‹Q`¯oÈGÁ‡­â¿/äy˜IÖ˜²ª]Ç«¥0%*Ä䀖蛡;D…Z©oŠŽ©@Wéßt®”ÿ_%»qÜ@ôWxTÖdHözwäâC¢£@–¥X±4F²ãùû°6V±™räd«§›KÕ«·š»4ÒdãïØs¥Ûaä ðB¦q‚’žx‹Ka·s¤É÷üø馼êXô‘V{€cë–©Öl§i¥È/àK§Êò†¢¼{ªî+»5µ1e¥0µTTÄH»ÀHkÁ sMÁ‘>Óu!+N®ìm9敘¥ü±AÃõ!û”Ù$¸çr9¡k‹y(>S}°«p÷|×k„Ô•ì¸d%¸já +‰÷¼Ž Ùdä*NJ‹KŸ.ŒçÍARÐD*keÆq’AÕùïáçˆÃûY‹[;¶±ôaÓG¤… ¦ ãbg™7à€=9mÔåsA@̤AFÖ™·Ä¡S7¯‘ ¼ÆØÒ¬è”ÄN?¢Ènæ-’ÃÛ{¦šÁ…6­ši3´hËý˜°ã­¥åÃi(ÁööܨœW²ÚY›[ÖJ >Ë€9âOfäY¢(ŸÑ½ûZì´%vú¸…ýÈbìl†¸czg>mŽ@KåS3žÓ[úà£öÛØtéABÉjOnb.ÔÛ`Âî„Â.{_$·YàáBU™ðý]’®É€?I“>0‰ºl3²W¸ˆS.œƒæÕOäcЀ=Hƒ-º™Ó±`£q.*Þ<»¥»£¼Z9¡ÚMeËõ š#@ ºmà)LIà3žðË“–„×ç?¡Â#Š ¡HŽZÜ–N6ŠºÔ2÷ [2²¢›ƒà°Ÿ%ÕŸ>#§—Îj¾„e£9 öì³ú,ÎL•¦ÉJôÐ9ű=¯ÃP¿g:p@¾ë 7V¬;˜uϳ™]ç¨<ƒÓ`+›!kU„ðVì•û«!þAç’s!—í”\Ú`¨çŽüä?jS(´™vLœÂ~ç‹ïgúvdS±ÊÔú<þžómHW–p×´×\”n¾5M ¥ èÍÉ8ujœÒÈ[š|;C&Ribý\ÎZVgȉãtúÎv…‚GÎúä5={X>ô­N¯R2;G½Q&ÙÀÜ9#ɹÄÜ6g= ;vçIQ¢Mª6TŠ72vÆ–™ubç~Jîj7×ÎÀYlÕÖ &Ä@2T®›ØÂiÀyrCt=u_Þ^#¯Êù SÍ8½±zÙÛ¼«FËTj`;l¥ók†ü…p§ˆšúã bõ"é-+#G’~Iº"’„"’i,½¸8=¿iÞü/^én%èÞNNëN›æd•ê«»tpÖùÀfÆœ«'('°\`vFÑ;  hÅxÂ9áÚ Y Ì²D)¥"‚`sFMÿÌcebÜÜp]æIãð¹Ï§'*aKȳð;zóE%Î!Û7f©ÿD•µÔ™Ç1âJš{‹œq€)¡›Ó[ß° _…ÐW†˜š‘k/ž?Is2Ý«y¯ç7FûxW‹(!AüO‚“;ûʷ߆‚h­Q¼ô÷®²HÑé‡ ÿ{ª»¸Aû±èÊñRõþX¿ õócú=êצ;ÁÖ7¤#¹3÷äç´…{=ñ°Ü~:\Rƒá!ïžèýËÃ{ú„4þ Â"XËÙ'ˆ° rN-AôFø½²mQ‹‹½–Âs%†V*1- äût¿>Q"–â5ÐJºîkPŠtð_—Fqdg CxdG +hˆðüax¾ i²ÓT—þß-q¶g³”æCÕ´è‘Þ6M‹Šºs4O çV34ëÎ:}ÛÀ-8–¨#5·ü$W„åZGîûÂù}»“Øïö}7ˆhQÆA&!ñœ¼l9Æ©ÒÈ–9æ˜nÛ²«Ú2O&‰JwZŽ¶®7ñ•º1DØD(ü‡á +ÍÃ`@Á0ûˆ¶Ð#Q‡w„ïïã¹ô ª+bvŒØ± ±˜„c–`—-„笰–ðŽ²Œ[= •z_ ¡¡´ÖcØ‚Ðg†Ð"ðXuF¬(Ü¢åV í&hi$ÑÈü-B!ìΩd€§¢Œ¥íÀÎæ2Èð¹8×"Ô°}â7µ!8ÿä|‚*ýmuó«~¹64é‰-ÌiïQhŽzÇ-ydïŽ9©/3‘TrJæ¾.VBg¬H{6µio*!Ùm!rŸBZÖ¾Ü + +áÝÿÐS#~ýZ”q9øñ‡º<_‰F3Œ<äžå8þËVPÙèì¬sžâÛ×S™$Ì¡ÁŽDi½R½ýÒi'È(¯ÃoÚ¬¿d•ø Þ¬‹±h ÁS4þÿh8RÌÛ<bP+[ÚqK£åL©»Nû#äÀ„HÚ:vÞ3 L4F*WÌ)ªç4L&g0O©¡ ÉJ'h bóÑÉN]FöÊ#?¹ãµ¥)1b|På«åìc¨˜ü‹gÿÍqOgæbÛÜÅDŸŸ%mêKû³0SXبé¿wd# +endstream +endobj +107 0 obj +<< +/Filter /FlateDecode +/Length 4706 +>> +stream +H‰´WkoÜ6ýî_ÁC #‹¤DI@Q ‰»E ¶Û ЛE1¶Ç­íIÇv²î¯ßû"Eêa+»]ÍŒ5$uyï¹çœ{üúðp}±={Pß}wü7uü~û´|Pßÿæä­:z³9*UYXWÿUåÔáòèøÇ¥º¼?:Þ˜_KeÔæâÈ ,€ÿš¢VU×­¯¼²uQ×Ü­:½ù×Ñ›£>À©¿Ã¡—ðÿæýñ_nKu²?úûÑñOÀûíÝ¥ZíîÖ?¾ÑÇÞ¾;Q•µy0 +ßùFa8Š±.‹Ò4jóUÃËŒjë¢t]¥Û]×yŒå«­^Sµº/5~WtjU¨m}Q©Õ‰v%.øY}Ö®¡V [às‹·ju¦×ÿ~Ðk[^­®q«Ë˜Wìu…Ïï´Çwì´-,·¶E£V÷êžÃ—+½®ñs›Új>ï\[Šò ­¨ñkSÒ!¸¶ìÞiSáâs8¿Å5 <ø¬éŸ +×ïñN c,]FÝáQÃxé6Ãp1ίö¨m…?=„X®0½uþ:70ƒ©ÝÉÙ÷ +nh-ÖãNõy÷üÑæ7 $žCp-²@e<ƒçóóµÏ]|9,…—_)ýÏÍ_#Dçáè8"äì â ÿMDÜ;,w‡¸êñè¢B`Õ%&s·†}Œ¦rú>|‡irpÒ+Òu‡€ÁU±ârVÌwH&fž_ªþö±œß‰êúbD@iÓðÛÇðlÏàó+ÇF˜È„ø¶)‡€vTľ5‚7œœÇN]·Ü%–RôH©4rxÀk•¾cH_]K__Ò+ >p¸îîÍ­U'k!+–‘Zc8O +Þßá®–+<´orI<Ýw«b·vKáV á֪͙’/“À+ˢqN8ÂPçÀ%UpK}):…kV§ke­5¸äŠ¾B#¤žcÞaI±0ü: Ãô\C7‘*!:º‹wñ5HIí ߥtá›×ŒÀ‚S+õ³6œr†Þ%&³¿Ûê²`v§º?ñú{¨aÀ0F×´>¦g D!îâÞyÙ]}v× K¥ÜÒWÓõò•E}mùŽ„#&žÅBÅv»<ï¦>ƒi"×”øòò]@ãã–Ã&¦Fåóã3j5·ŒûÅ·ì…½/Ô…èhdn镤!‘°e´¯x+†S¨—uøøCL›ÄÔñ-â=­‘> ¾§à³¦[ ¥‘âùR6¥3<ÀË +"Ü~å2à4™ÃÉPRu-@§³L€p75n›ž[”ÍŒTy0GeD``¶qq+N +#ë\´ÔOjiOtIÕ²ÝãòºT©£˜p4‘²¼Ž°©Á¡Ö¹Oµ¾'s¶*ˆq"…ß5µ:Ke¿èy«¢ˆ  Æ,<¬G†´í‚ûõšs{Œ JQ²öòÅ·Chp7‚ÝaW?©O+];\;_¬À<¸Ü:5%Åshjpø­ÀŸ`K¥a]¹Taº%õ H å[Ww ’ØØoñ~UR +ÞJ'gjÉ!Àò7©VjÞ²kócK¡~ÒU‡ö%ODDIŠUº‘sFÌ4âhè$°mâz ö&aº€‡mŸ´®¨÷ õKo•2¦…Ïgu¡!ÍH¸ƒ<Í-Álé6qzédñò⧆eX‚h3,ÙÍRø¦Äb²/Õ‚é0ч*VóCß:Á·“ì +²‘ZÓä‚@~ÓN „Ãç4­ycc߈7 ÓÒ@,…ðJ^±À¥ò9烟´äy…®6—¸ Dürª]Ï{Ò“6U¢‹B)»¬Øw_É!ƒQlpÓMÅÙ㟠² ³À^¸«Ïu• +©lޒ…í= +æ{=J =ñâBLšƒ²#Ã/“è„/UŠNãž s&XªÇ)óÌjkY–%¯‚‰Ûɘ>,´ÎÎN[gö“sŽ¹¾ò-| Ž™eA­:õîNS ï-B«dý%ÓäÊŠVPeΗfÚM`ʹ›IµmЗˆÁs¬¨ñ<%ÊŒÙFVHUWœêm˜u"ï«kÒOb¿ÓØm£v$GMÛˆÄ-…wIlM¯"]BçâvD…^=gçK™s³¹ó›íü³DÎtxºSýùÖ²·ZÛvÌ…™MÃFÇóQ–ÄÄi[Šj¹Ma°Ðܺz`nç¤Æ6"lìKן(3¾`ʈ²3<ŒÑ3@A.XcK8§Õp q, QTÛ‡ 'bzv=ãNóWš$7CЊõ‘{õ3[ ì€Òhmœ€’1²qÖåCFþˆYshüÃ(%Áô…Û© Ôe6p-e*?Єj†Ÿ¡>¢gš'êœ'jB€)aŠvÎoN0E¼®`Cª -¾¶r œ–@)„#¿Ä5jðhžP£ÊŒ(µ–·NªX×>7*q9¦¢Q‰þ¼`× ô¨Ón"7h³œ»Ò)³›»–˜MFr°Sà +cmzš!z¬ÈqÓŽÔVE4.æÈ”*’i„›4|yÄQú^b‰Oâ/WI±ãñBxU϶2Q± úO3êq*ýB)Ï&+vÅ š=÷·0ö¿:ôÂزYŒžíãœ~-Ç`/ënLÛ÷j/O*Ib¿½ ²WËl@{y| _ƒÕA¡eÌ7¼h)ÄÚÄÊvb ä8S¸ S5ÊT² ú.ƒÛDý§ë“ +fÈ¡¤$™×žgô•\q±®¦K“8,I hÊA²÷û ¤W•¹ß2vF1kŸ8ú·qRTÉ([¡kÈF“Ö^²¡FENòÁpêëLc¥É ¡JýVTbÐÈ /w½Ojt@nk2Ì{íç¬Jäæ„"|ÆEå„©¢Ú`Z1wø®ô¨@ÑzÐçNèyÍÅ’5”â…¸°–›¤½©Y6³fõ7Y3¤îgz쿲Œc±~¦I ‰VâH^r8§yd†…@u9 j?(Vû™`£»’„õ5Âÿfë ÿ µÑ1 L©”oŽ*G¶{~øL+rWåÝ®ìˆAêþÉ .·bxH§¼ì ûv°Ž£ + ìäêUÿ~6g_г5)£³˜è™(Ì–ÁdÇiv®mÕ´éb)«€M7@ˆö¹™âDê1˜ìjnS“VlØcÃÈÙ–Œ^ßÂø•©ÛéŽ]\•x’Ç Ó‰•wôƒeŸVºvø1 I”G½IÃàã)©üðQNpÚsº¦F{ŠÄ¨8ɶþ禀Ÿ_cvBc6Yàƒì5¸lÞþpzx×'­+’›B½ÖŽ¤áÔx!^êÁ0çÉ\×%æï–Sep_£× ̆CCy+èyõÿpã‡Þ"’›­B4"çÒÿߪ]Ï*,×$iÙ™¶zNûú¦²°Èf†zbf »‡=5ç+1"þ‹•Í'@9Þ˜_,\ˆô`lh©Ú¢"`*jÈB7_jtÕ`À¥ú[Sø/@Fôò²&(Ül¹w<ò@!h)Õý|aàÍ pËØÕæLñçÌ%¼¾U— [] MÔt ªÔôGÿHF­ÔG½F»@s]I-'Xú'Yµeb¸b8—Ç÷²zÇ|y¦©Ax˜X®ì°e™h³LlÊXAJ‚Ÿ‘ +‡Ü6œ‚„2Vo‚©2§¨vâëdXCG\‹#¶Kz9]Ä ‡Ÿ¬¿¶tûSípcðx2»¨è‡’2„«µÍg¶(‰tgt#'õã µsOÉ +軎‰…E²âñ|‘HöW©‡¤A®þI}²Ö«±~eOÌÐÊNå­Gý,ÃœÓ5…ôI/™11b¨ËüÅX¯¶å¶m ú+x,gj•ú€v¦é¸ýÔqœ´I”Zv÷닽 €tX¥o¶$‚Øݳçbý–\ŒI²4*†ºU5ËqƒÉ˜¢P¶âÌÞÅRšâ pM”¥zeVy•ì¶Wís­´†A·BÝg¸·o$Ù’˜ë9²¥Q¦‘jx¸÷Ê0iÚð@ºÑqj¥$¨ûh£I(ÌyŒPO)ûJí'¦}¬æ?’®(]‹µ‘mÔ®6€«Ý‡—06þbÜŒ[’ÏÀèÁXthY Ið`Ëî Þfþ®RÀˆˆÊCJ«+œ@¤A¦p¥èF¨Á!­}Ôþ•³Ór@‡«¥•8®G@'ó„Ç/rIâIk´¯j p9ˆ^±çx0y{ò¶ÿuG}ƒBÝKå^Öˆhh'¦lƒ)¿l`jö‡£`Š‚Fa$Ê]A+ž’¸áÙ¼ÏÐ%‡{ÿl´û­Z–;„Öjï[h ÓÎþ!á­köÀ¦ˆÈ¢Þ`Cq‡*zûì µ‡ä*’|N ¤¿2×nZ«E,RĬ‹ ân3ÔÊ–ÅK®4xdÅ$vôÆrœš#2UNA1»¨ÁNð¹|Ó†mr!MVU‚^ ÖâD ì<êâÝê<þ7ðÙŠ6Hýê™ñá‹#‘GŸJ†½…Bã -*ÓmÒ&¦"úÄMùþtÄÝ@(Á†©}-1xø¨7V?cÑ1 ¾¿FI_üf&ðŠ ø(›@F“I"¯=Ë¿a¾²Xãì76…â˯¡qs¡‹ì¸%+žõ*=ªQ‰™wdÕ<±nOd¸&=rëk ÑÑš“à ó°ˆÙ‚¢V€í6æ]ƒùñ[ëaÆ<ô Šè[š +[Š8׊6à µ½!©¢Å\oë…h›C¿…6o‹¡ß¶¸d.·‘¹ªˆbeÒá¡ØAžù{Òo#R_9®M©w5݈È+É…ƒÐmâ«sjI'y|©¥†§S,œò7Í®Eê…#ù4©³6ï3hˆÑ \Ìïë®1¯“+Ù€ÊC:¸Ù‰– ÑR#e:.‡1†Jÿïî86Ö L_!¸daÙ¢Ú4¹Þ4q‰É„Ÿ@žªHƒ=ÅGÜÍd`¼.l¯ò„³¹°>2ùê¨Æ6åiðÈk§±Õ?ùpœÈ«,eŒ·Å öyYÚUjà<±î¯PÞ;4J¬i܈él¥QÊÏhš± Ëc‹¥G"àVŒvbmn£ã–ÓØ|»ÁMB<8žÏ°­ÈÝC‰ÈÆËÉy’Ï;ñox”ÚR$CÁŸž¡vW»lΖ<¾¢ÏôžDdQ(23<ši}UòWGÍ5å±¥¶ÞéŮԱšÉœÎdx¿?$m·…Ç~å l<Ç°("‰&ü Æ5§WLyÎûVЕ»‹I½I¿vE$’7­Ígf–EïqlÕ¸!Ê6ŽÅv6Ï‘ñ¿²Dš-™æ(˜·X~y™Ÿ‘ÕD§ZͳyÂáÅʉWÌ*•å§Qê&íª= ØTçÊ®‘wøUX"?š>D«‡üuN)ÃaÒ:™`\cq é‹÷=½TB~ˆN'‹ò`ÒAá?¶;¦Ä®Ü[‰L»ÎBRì@^V bÓ½ü]£Ý~ r`(ºÞ?{6ÅÎõgbÿÀ3>‰Å°¶ž÷nð÷â«ÆÒœ9R¼ë‘ÜzÕ¬©j[ +endstream +endobj +108 0 obj +<< +/Filter /FlateDecode +/Length 5101 +>> +stream +H‰´WÛn9}÷WðQ"¹Éf³»Á›x6Èb›Mô¶³ø"+ÞØ–GR’õ|ýÖl²/vg’Kê Y¬:uΩӿí7×ç—GõçÿT§?Ÿ?î>Õ?¾<{¥N^®O +U¬lYÁçJµßžœ¾~_¨íáätm~+”Qëë“e±*¬UëK%_¾(¿ªáø«W•2¦\•MÕ([­ªÊÃ;w' SèõO~ZŸüô ìô;l„ïã»°<þúùôïw…:Ûüëäô-†÷óùýV-6÷Ë×/õé/¯Þœ)ç]ªÂˆ>bŒ&Ähº /1â—/Ê«†_±]ˆµmà~ÝbŒÿ^8 —Õb¥=žca´kW­Zº^y¼¼´¯[½„Ÿê­6N-nµÃkçðïu…+À‡ZÜÀwø¸ßj;/^ð[çºV‹¬hðcI n`ߊ®â?OßÁf+‡· +ZD›B-Žp‘ª0,uÕ½·¢ý,¾¹ÕŸ·GÜ“ƒ»âŸ°6æb±“0-¾}Ô"Úíy?ŒÝSìqª[`Ã~>‡ýL_A\Ÿø×¹nx=Ë„è=ýŸõ?"¦«\%U>]¯v…T³-©š†ki’Z8s‹ÅÆZ®!·°õˆ rµQJí1X8|aÂ}NíÒÖ\´¥¡zßÀ²Žï`áç ÈÃÒ¯¨HK'ŸrƒŸáºçŠ”XDcðg¸ U1¸ÁQ[Ë]iScæº× Åv£ A²o TpÄVöAø¥¸Z°Oƒ`ÙA™òƒXªÌQ·øØÃå÷p¿;f¶¾ÃÂMÉûŒpœ<ƒ¿ÕÖa…?ãV%C”»Ñ¼RˆIíðPðè5®mº¸K|å‚ aáÙnùØþÀ†°¸õsÍD™OPFtÑLàÊ·ÍÊD\í˜ tÁ•¥ öRègƒÃCQË*ìóñiJ© µÐÒP§A^ Ìþ×x>¸äË'-Ûí?/õ’jµ/1@C¡t!µœêtáq¬èçšonñijŸòèV“b›®GDs^T¿Cº èn²”U’2‡X+¥yl‰o®Ôx×ãb÷Ž¥N¹Ò–Vbj‡«¡#ôBÞË^zÙŽõò<<Õ™6ePª (g*ŸAi±LqzÝ&]wU¸)”6ÀmQ1J¹·ô6R +èJL!èshX¼pÔ%Õn‰K4☠óÔ w*@×%bæiý\ÖɆn´øÞ!a‚aLgX@xëL—ÐïýþÞÃÞcl0¢-½gÒÆJà wTøÀ½5i«Cê<À›5FÃë]áˇNÅá ¶Õ½€ïA{¡ÝÉ€¶Z–¤PDP锎øfBª©¤î3!U=êsS’ê}»ª#¨¦éš¥`„°9+”°+Äzõ¤\SU”+÷Œ\¥BUþ9¡Šm±¬´LrÀ[•])„;†;uASð *Ä™aüdùTÜçwMˆúÔß á°6gð4â”!Uš›Œ EÄñL¥×2ßYj©¼UªÐ*UÞ*ó\›>Ò&é«‚-¢Èv[&Eh2¯Ò“ŸC’uÉ,±ƒƒÖ%؆iÉ> ­_‘‹†GEì‹;1Ë%3ÐeÁbw·xu†Ò¤³3^#xX䃜 Lv¿?Lªt§Ì2¤„´áXÿ‡ 8ãñ ':8ÇWzFâ v50÷à(‘ù‚$ÐÛa‹™°±¹æá 9ŽgËO½×ó¹Uª$›â[ñ²c®^Â=ÌSAÁóMH—oÏô¦¾Pr"r¢2ó–ÅÞQW¦01bQ E"p‘T˜puÐ ’•ú®sQBwõSæ¾E¾ÉÞÇYh&”Ê JÆUSP‚Ãv.ŸTâ+6SƒXHÀŒÉ H¬l7ó¡ý™®`ͽ 3añÐxb¸ê Óóœ”%Œ'ò£9ú#N‘&¹šÒ&ƒàc Bè¥PàF“ð»™3áMZ†Y3Þ÷šÂf‚Èõd¬´S(çܹðD‡š Cn "\œ¨0ìXÏäh…ñvj†ÃA™ð/‘¨|vàç2•:8Ä#fª¿ÖåƒÝj‚ƒfÚ¤ªä]âUûdüîTÎOÓ"GÞu'N¬A7™ç㽎„ðj†&ÛŸÛPœ!#¨õ`<™‡§jŽ±O 4×ØûdÝtV0~vv~ËJ°—c>1B%¾ïdÎlÍâØØ$i“i53uñéÚüfhý55YMv©ä ¤Ù‡Nd“UM¥á9€níÉÇÝÒÿ%F½ÕÄçˆ#¬Üš¬Ã&N»¹ä§nî¯w{¦ª;|’äÞa’›Ý=?z~Å_.aŸÝ­l@†„~ä?ò“‚+‹X„¸<Æ‹cTŽx°å’Œï=3·M–ÛuÁ©-$«p{œÃ*,e}Í9}ËéøÄÇ.Ix›Æ‹tú@§0& }±|Žß.‡ºVúÒìòÙ@€{!ý¨ËÄÙ‰&í0žÅ&ò«Â–Ç€D%ýSáE"yqŽW­xèqŠó{'ö!¾ÄàGâ!<ìzÂZŽ ëS²:7í vJA2“š¢¯¢“D‡8’däëF­ÒUÃHTzUjØ‚Ï•ªz$N–#t窥±<Šÿ€5¢ÃU:IÍ6"ßcv³áT~dvy{1nEû‘‹ê±È¾bª*eª*S•ŸªDŽ¥=»¹ªJûcjÓC—óSè‚Ú]S›Ÿ7µq.³)ˆ$µ·(>Ã]>D9îOqM2Å…"î;ȹ€s+ørèyâ¡"5‡‘­‡£Nìã¨`m6ô 1l2¢’5›±¦”ï~ÄÇ€Q4‹Ø´[$Û™Ó6¨†VŒFÕ [äý¡8Œ¹Â/¸´Ï‰‘1—´MÙ›êˆçÂÎfóeá¦8͵õª‰¨›œ äDí±YôëBÚÉHgÄPð¹CÉz~¿Û¯¤T?ªûèê¸x©×‡ÚTåÁ¦J5o|•ÈzX lu£A´¢ þ‡!¶¿”„Q»Y‡‹Ygíô;å !Mq1WH]Ž9'&0×@ÐsÓ¶à¹\Eñd¦èb Z±(ŸXÆ2-“È3Ü´®U_¼pL#}í»¾~¥«Þ¸,¢b‰ì§Å`Ðd|ü—¦I¤°=ÜÓvX=æÈNVÆ­ÈV™ïx +¸g#Û|‘•Ãˆ‡8È1ÆDh¤«zÖLAf°nˆ¸†f£#†ö§ìAr)ˆ%^&!`—KõtÞ–wÛî]Å'€.b1뻣÷Q8³¿a +aé3|Äág xyÇÜ ù4Òe±ÐOT©dÜ´#L›ÖŽ3¯¢ÒnÅ~>tf?‰ÇŽr•h\ÁF+¤á›8k,ÛÇÁù¬$ÇB‰ ¾d.®|OF§`UUùdÐ3è4Cå¹ £}T‰ éQCÞP{òûUž™Š-,}çÊ%¯I’z\%f3ÔnÕ>[ŇwEâ­;NÅ&Uy^ +-_RÜÒá€ñ}ÿuCNÂ×C£‘˜kòǹЩ§U¶Ã3‰çÿu¡«c;`ªŒœœÆØ=§¼ÿŽð7Þ+‡qCÖVXm¸â9‰EgrÞ²UxJ"`ãŸnÌ?Û–Bçï1Ìô¥ŽÙzc1³ 7òþ¥z¥Ù$<5&Ñ”ÜؽYn +ŽXâW­%aŸYë&«5pzYÁçJµßžœ¾~_¨íáRKõ÷]ýËd»)J®¥K:Õ +jeihua +(ÙH`».˜¦–‰›lKIwü§æ +Ü.u“ýA4ëŸhY©ëÖ¸.-BýF¢ /q­nÄ€úЭ42܆/7L}@7“Δ{Œ—‘‡Î¶c¹ÇÙÁ²¥©¸íÈíqýº÷þðm6UkóªamÔG,—Ár=55•u}ÛHÝÖºåÉRu~´ïšId„¢øAÜŸñT>ÑÜ/$¿_²ß¯)ÝW0åëÜBcò:öº»hÿN0s­2Eí¬'FsÈ%Ÿ)x&Ö‰¡KïãH [¨Ò°{áæ‹!Û”-›Ìn£ËáUs†‡>ÛˆÓî;Ë¥­ÿ·’ÃàG •qûÚ«¥¹mÿÙP%A€¤&§ÌäÒ[§£{G¶ã$c§r’¶ÿ¾Ø°  ®“=”.v¿ý• ¿ïs0XSBËä×. %š¶ä ²\ö¯án'ÒÍÌ€Ò&qã-D]©#?ù‚×´r)—^s˜¢&ú ­ük>âÉsܹ :—¡„O½\#ŒwÃÿÊ‚ôš‡z°ŒøµÄœs*Ž<Òú~ –@@ÆعÉsÙ›åÕXØ°ï|ûÐ…Z„ ©ýìK±f´¾R0å°¡¡Ï–rðü&::ž“²vgNw˜°öƳ™S$²^âu°_d»ªmj¨—-£÷m«2)ïÎ×bp*ßaZ³œêxð«®ë¬E¯Hîc4]ѲÉtcs–Îã{&PðõÂÒIl™„ß9jˆåÁÇo¢–Äaí©¤:,š²Ÿu`K7%8|Õµ‡?+ÎÕ¹¾æÞìK =¨Ècœ,-q‚(EÛFZêÿX"½ž 7"Þ³¹!’œ äJws}» thQ®Ùe]^ª(Àõô(ä8•ÈÑm¼è‘ù9CŒ„»uåFbp-wÝmt]å¹´ë6Ò´jD%mÊ‹Æ• ã+02¡#j×Ïùä–¤8L]äU¦#‚lE"‰K +‹[RÅœ?®Ôšë–ÝwyÆG†ß#pºLjJG7°¥ÚK¬ ÷båpöãBh "Å[ ±¬Á€òñ9_Š–¿ rìÀöm§ Ü¥bÇòÛt.ñ™áùLñoC382Л 4®Œ åtâ³râuxt5ܨ°XËSŠó±H½Uy$¸ ÿ±-45îÝ9p8ú¢€~"gtÓ<ÕpeVû+[‚5<’¨Ä +^´çq“s—.ÙÂýnRâÇ¡¡ñÞ]bN“RôñYa¬ÊÃ-Ç.eß¾ð&ïjÙqNQ3Ô˜e¯rÉ[oYÙø³»ûÙ²ônݱ[wÊ­¯ —Ù\½o|án!¡'¹’"¸À+c'Ë ”ÁûÙw›ìŒn8 +;ÙÁ!Kd|é×)5»¤ÖÝQñ”~ovq¿çôÁˆù³OËÊ¡Ù’ÜšÙ©’u¤fB—øX0"Gæ 6}áŒ"ö $ =fš×øyh<Nrú¤¸2ÿü¸"¾dˉe0+ _¸¥nSë·/ËiÄÚ4¨4P³F‰}eæ6K’cÉ©Yî!¬gjð;ï þ;ï@”ü¯ÏE OåŒwbó§ø¼#W…Ù`9•ïú^õç—Ãð‡i†æp‹»Ù›æpÝð?¾qE°uFµ.´øÚ°uŽµx×N¨¤ƒ/¯yÕüêË…ûÞß>œÚ‘Ü/=9¶èÞ¿1‹~z¸§_\·ŽT±3¤#­l7ç¶D4èß×]{H®}èéÖ=\ƒ£•ïs´ô£B .¸òo@2{¬­—íõËe 1{ueY&°, FpkRgpN'Å?Ÿq¢”–àk)Àa«pÃ'|³Qf讥Zoj$N¾´¢ÍեøaYê("²¿‚Ö)b{ ›¾r¢9W*go(S»Ä¾[þô×µkeV©Ò¨gX–ÝÀtÛ»Ð8Pß¾\…ظíI1âø?8\ÑÕ9ú¸r…‹JkzåŽI%xéXãÿæ°ÓDÿ¾a]ýn¨š9 lÅNZDÑ·]ÍóLqB}bË0ÌĤhì» ìc´pIšíüEò;ÛŠPn-&Æ•÷q%3=ÌéyÜLaâ˜àè÷0ú°!ñSîÔ£Î"0AxÇ AöŠçsË¢½ÀHM±Ézæ®5ˆë'5Ûgà #ÉÖöªÅ§Aþ›ÄÐõ¼ÿ®ÐùLCðª9‰åKyˆ§øŽÀ+°7¦Úx¸Þ®®-M{êw6Lûé;6­vÌÛ±#wãšñšìŃÿxÆÙ£kõ=4‰’‘qþ7'Ô˜'ížÏÆxBÕ„XÜŠ¸ƒÑ +îÚŒ–²Yíh–ÕK£ÚÊÚ¿„´ *Ÿ •(q+”ôEN°~(%‘Åãv +’ñ1® aÇß d’lšy®|&[D£Ë·;O£4‰ jÙ‰(ûs™TÃ"eFKyŒ®#øóõðôý«nåþŸ°êkÿ›…^‡×ºÂö-àR°ÄØ.qß›œ!÷l¨219k!q!ü*ƒD}_ •)µ®h)F£ü©Úðx‘-ݪ©qfk¶Ëæd=JÊ¢Ø9ËiçÂl +ãIÃxfÓ»©ü—R( Yé­™äWW7»)nc.nÓJÜ.CEó’ÛéÝkâ“—îÐ,Ú·Èx+øjâÓP|%pæj%ò»Íhس aÓ8jˆ”P¯#DÒ!Ï÷¾H©€A,*§žÿó™"#3ÑüÒ’…²|!VM $ÉÙ’Õ%^Ür +‡ÅÅ9€qg2 ,í£A_ –µ-bˆu¨bE£ú»RUê/_ÿtÎȉÍ£ DwU‡%¥–±(Bý¨ŒiF /˜·²§üĪ=ž$ <ßÈ©NÜn %lSÄ”ãOŽ¦K6ŒPZz÷ !öâ^â,.f¦p­SKܧ±ÌbŒY´éUÌ€Sƒaó—™²ó¢i[I0:­°Þx©' òb)3Ì6yä?·!z) +endstream +endobj +109 0 obj +<< +/Filter /FlateDecode +/Length 5589 +>> +stream +H‰´WioÜFý®_ѧÅ>Ø$w >'=<߬E ÉcEk]I±µ¿~ëè“Ç„³ð€gÄawWW½zïÕñËÝÃåçÓóñüùñßÄñ»Ó§ÛÇñâÅ«7¯ÅÑ«ÍQ-êJ›þ·ÖˆÝÅÑñÛµ¸¸?:Þ¨_k¡ÄæóѺ®jgÄæ\ø/_…«ZXÿÚª¶·•ÕÊ +ÝTMã`ÍõÑJ)¹ù÷Ñ›£ÞÃI¿ÃA¸×Âöø×»ã¯kñæöèGÇÇðÞÞ\ˆÕöfýö•<~ÿúç7¢©û2T}ÁǸñ!Ö>ºNã Jñ«JtMU›ÞŠVwUß÷Cû¸ú,ת«´•«[ÙW­X]‹/ÒÀmV[¹vþ“~¿“ª©¬X]ʵÖøåFª_¸¸QåÄê7øÒW=½?“{‘½? +8U)\v‹Ÿ-¿†œŒÁç©Ô®2b»j:àRÂîWX|~#îåšVPˆðy.×°ñþ4¼Ά‹Uâ\·{ +ǯ„~^áÖ <×ø{‡1=ÂûßÇ=|r/bXâTü!Ÿ·Rãª]"|þÉ)Ôr5>ÞJ)y&²ÔâªOBRïáôVWßúÔÅh Vuzû SÚå"•ÃvÐtíx浿a@Ì V¼Kw‚á&q[8ÿ~úÎ ‚ûêl†_ÙÛ’ºÌp<] UP Ûw@‡½.p±Zç´7¿¯.!§fWÃ5û¾aÄa> ]Úºž;B;Ìç-üðYœ¬¤í*S6A*j´Dm5ws¨ܤ/^Kíñ¤Þ>‘ÈCÊ#HgøÙÇÐæ‰A œ†êÞ³ ñ,ΤÁm¸ÿ¿™G®ûIj‹ËáGZûض'xˆ×>>8¾‹­‘z r#õÚƒø^ Gûp6‡2çQÖd4œ²Š{kLÍ\dñÓÔ¸É?‰xáíÂb»!+Cöp%›ÿ®—Ò“)±R›i°¸ÂŽôƒ’MͨzÔg4~0ÑÚ¤Õø¸/QVÚT d âš{ÜÒ•oÊçTÉâ .?ØåI w¹‚»ôsgc¶û–/S´«LÆ +Eöˆ…î±-¨W,3mÉБÍ2$ ÑSû°"p‘¥DRU®Î¤|‡Z…öK "ÄγTDG«+ÑqN%oȸ4 A1%IK-Æ_Piû)n{j78ÒM(¿& õxUNw(eq“…ÉÉâ–}ãÍUË-.’oS ŠdÉô Gö Z˜¹f¿ô«º­Zåáš63‰QÐÕ\tM ý„×t¹²Ï±H¤³ÑES°Û+»)ÿe¢›ô¾¶õÝämÃ3‘Ä|èÈ“ÙýžŒˆÔfDŠ×ð2ïÃ@K!GçH/Ìç'w+MQîÐбç‹ãö1|Ì‹oâdFâÅexÁ¹ÈÎxEgMæ3Kšg¸)h8:eIUTlž`­N"?2 "L*ɃºÜ¬g2?ÕxÞ"MXG‡¹(®.Ë ¯ê8:ï[¿IÛã kÂÃc Ky&•)$×›ûD†\5ŒÒ £D?ÓæÓLr+6L I¿jï xñû c¢/ýIüœç³Ë…ØjxÍWK½f7Àl=‡YÝgnsVø¾`ÃðÂÔó—(=ÅTÇ“=íG8ÌÈ_'ýWd¥î|ËP¤•Øð«q0ËèÏ@ºP4Ï õ÷Q¢º¯Â´ÕŽ=€øÓnHNÊæ`©BðŒÚJ6kÏ’êúÞ¡r]ÅN·¹ HG‰y¶|p|ssL­2§zŠ†Îf~H“­j +×Brs áäÎw3ä39¹‰vsl +I¤#iQù_†!»€ñr-e¼f Ísàl:ÆÆÐOw‡CñÕz«4ïNâÄ–­‹RÓóW̺²!ÜUâ'tœmÆ +(‚ô"U iâÀÒäʦ¼²õ‡(Û÷äzD²@ßಭþ”o"å»’ò]Nù<Ǹa®–ò Ì£3ãhc-!-c-%?bš‚=Ux…'‘<:©óV¶XN!k$÷bp:ø˜üãÌÄÇ«Æ‚ÂÏ'ès7»}Š{‡“NJdĵnC;ÌÑؤÍ/L/7<‡èbª âì,öÉ•¿ÒÐ/ã‹Ž­oXí¯9HHÆÿ~†4tëFƒß8åݼÔgˆüŹ€rŽ÷óád(oä†çT¸kŸÍ4Ên;Ï +[ëžY,q¥³Z^I®û'q¶…©±ãz†ÎÒOA˜Òèg–àÛüCŸ!û©«Ò»q˜ È:uÓT•¢U¬ÑÆb…϶’šh{€ýSF›Ò˜‹ÉÚD³¡ƒ!'Ÿ“Ñ´Î&º…àéà10Úž ÿeF¨&F _ìõ'Â/ý—…'÷…¨+ Ê]WÖ±»8:~û¡÷Gǯõ¯p¼Ø|FÏaP=ÅÔ‹N†Aìä¦oˆnŸ×um^,1¦Î[†[¶ìì²-Ë©Ž2'¾àe]f³ñw¡6ˆ‡ªÁN(×g\½„ »óå̦wÙz@»|–K†c‚ªöY?êëÜÖrŸ²Á°D•¾- +“8BÕÉG NÑx ü&-qÈ:X1äjÕW\C+™¢W†v;øýУ¡ »‚Óƒæ®Y“j ìtä<ñܱÒ&AÔq³vJ ú×eý`ôáý0Ñ +m_Õ‡·‚Ù× +å–K[Á.lè?´öÚ›î‰,ˆ«÷!ì€4$O_¤ŠÃ©@*Š…o aæJÍ‚’|ÈÁV¹‡ìR5ߺœ­ºÃëåöÕ«Üri½ÚåõBc;]¥ìh`.œ ý¨MN3êø¯#jÊ'Ëd•b—úþ\+[‰´TÆÁOxÂô!ÃvE}«­µìüT{ž,³æIN9¦êÜ››ËL¦º +´àà«e±·9xs¿Áâ³0ý¤ÓÑÇo¢°Þ<¨i‚ñØÒÏÙ„“•´~EÖ·˜Î,YÅi’^ª5äQLatƒô|·°º93È€sñ";ɸȵ-°§"ŒÚÒŒ9—8žz<ØÙx†  1ÅÌqL¬Ç.ÝßàsKʉ” ÉìRv8ÔØŒ8kæ»×Δ[.ä»ÔÎL<;ñãêmæ ¦Ìjémܤ·!VHv=¸› ² Ñj•ÙQuÐå^½ +[n¹´:Kvª:Ù‰W?âpÖr9TNƒÑh8Ñ ¹±Á +=Á$ˆ/>P3:šçZo)ûR¤*8òm Kz¨JZwÿe½ZzÛ8šà=¿bZÀ¤wfßwI®‰€ïb %š"JŠ¨ÄÑ¿ÿú9Ó³;+“\ljÉGuuUõ?MÝ«&œ.YZÒRΕÔìHSCÆ\wgAßuÜ>T›“xVlÓe¦~ͨ£×@ŧïðÑÉq_ Zwlá4I`òQÿ V**&êÈíqXz¬=ðN©–½ß”®¸´º…3›€ù8r|kâËð͉b¥#l÷…ôµþùþÒýæâŒØxJŽüŒa¦ÂûÀ´¶‡I®ë[®{Çïqo¼|ð{ª„="B•º="‚8ó|ÆÔ‚Oô*/Å%‹ےÏÖä·ÏÉ úàŠw(¼ìœ\ö2 È{;'ù!\²s{ï'¾ãÇÚ3u¹,ÊÑÅü$ú”Ø„ÄŸZ~¦ÚX\ÊOŽBáæ¨àOŠ†«: `¯wÏ…⪩…µø«“*§.œs$ŒÔvQÏ‹â׺ì[a‰nG‡ë-cW”Ñ؆ ‡~#j®ýYü@lzÚSpû†aV›dJbe#i~æžjE<7þ`Š ý!Q Z»†}³Yû*ÞúÖ’è]¢ß}˜öT.OgÈ÷Òy ¥".@‚5Œ +t"‘ˆ¾¹8–DÎI—Öµ·Ê̵Š Rp=ÌŒR}ÀïàÓ‡º%ÿ‚Ûõø$4 ñ÷HEr)o¹!èíÚvÎUlØŠ‡Æ>±9¹ÕÎ@¢=ÈÛÀP„Tz Å,&=“a2®¤ Xn¶Æ”"7-3O5{‚éc8%ræ“RZ&át߸ ú@-'¥ÏõÒ ¡éIŸ¿°Öáyèà«N)\3æ½(Tƒ19íß•„\ {bÅ!ûÈ2¡òR¥|g÷^+WŽ°‹Ø(.›_NßeJ¯áÕ´Úªô_j¦\ýêj‹ï=óÝ¥|/b;pe×q´h[%nXÈ”6e +$Þ,Uü ¡TYo{4ÄÜUa刵ð“ÀžÝÓA`Ï ”çIÕ⃖.ÿR+Ÿ¬Ô,3[}(b&ÍdÕ”Ÿ‰%qŒœ1F^UßäÒ¦1’ÊVòÊ’ÃuGÐ{°âFt58ûñ°˜1EôC»%Š1³b4ìüÒ¦:)R7ûå¸àw×nC’ \›v•)7GA¸æK…“//¯æËîT³n;l||Ò¡T­D4ª/âI-d‹k,Kò€/žÄiV‡•è\Šâ´ð’qDÈÃ!v¤šäètóÚq¢é†ú:(zKÇ3¨:9å׿$IVÐWÁ’Åœ“áŒwykˆ’ÎT¡^Æ)äTÂëø‹µÏ:'€úça +Þüë?ál¼kLú¥ª>H³d8DnEåX%™mnošÕ"÷qÉmTAÆlþYÈLÿŠ0š†Ýˆà"¥†4I$ WŸ¹ñƒî5á‘…€}õ3õšC “~7úª#¨ÀÄ2Z™œ³K·=ª¬ój!ºé ê‡9®›çh8…ÛÂÑO¨Ð¿…_›Ž‹Ð¯¹HÓ`n˜Yv}ŸzyÖÆÍÝ m|HC¹k6„Ôá3¿-tS:8Ñ´UOôj=€½éÕ«œo¢%ï¢4Å°`Ó€¥p|#ûºWÚæKÏ7RÊÍn¢ß@ÂÐdÂP’DtòP0¢í_¸e¼½ŒouO»ì«ÿ­D@^‹}qÀòÂ;L§4EÆiȱž>…gÜ‚ÜåsP¯Õ$A5¦Žp ñ›Žà°-‘ UB ÌQ/QhŸkBý!cZ‰[÷IlY +bõ +AZêa£Îó5yJ¬WÚÇíMÝ㨭&¸©|bk4Έiú®ŠåjW †’HËßÁ¨1eT»eÀ`kç1#-Wm5_ôBý8ë“^¸9 7Óh–qÊ¡ÊŒAŸ\¨|+Òˆ ÙŽ@£Èê¸1ßZN?Ÿ.ênÆc¬±:‰¦?OžU +Hæ% 'o¯Ì%³ù-Jñ£ ÷ª1± )3mhßÀy[4ÐÈ—‹ªÌ@Óàì¦Ðçàôfœ[¸áÆš8°h¤Ûˆ´AÛh¦°c-,5Ul¥sâä¬Ç6ÁM•“Œ‘¼Oæ-„}9gcñ`ckŠ‚M(VæÅ£ÈψÁœ!µ¼ükÕÉë{´MxÉÕý„7‘Ÿe¤›ÒEj’nL³p«]^W;ù”£Ã<àÂx™[Û0@›vX2ÊWˆ•x@´èÐÖóüÒ{ñ©®{ÊüûMn»ÃyÓð +âÓöðo×µÕÓñ‡÷?þÚTÇóï/Ýo¾‚ |A¨®+Æ ¹O—ª¶i÷Í4 •ïSïø>?a»—<‘üü\û©0“NÕT: ˆgã±èWâÎaüûŽÛá¥èöï@Û@Ã:4ò¯3¸3½z®>csQärlbŽ(vdšO(¿ãžNàˆíßxvÃ| 3áE\ÕózÐ ¬­tä“F3]÷[=³ßò²˜6U^á•œšÖÁ¦ý<²-´_@ö€ ‘{À½|ñXóˆy[sÖþÌ Þ‰ *©t3±'ž ƒhÄ «âÖ^0¼Çö +ËÕµÏï!à&òÆ)·g“Â÷aßä')@Ä™uFÓ}‘ 0ƒH}#óVþõÁ ÜÔŸ=2.͸Â+°¿ÂØÚ3y& ¡–Éâ0_˜s ÇAn§X>Uåeœ¥(“”SέÕ#Xc—œ„¢>y1ÝpA2›Ëf¡‰zQBÉ;Sòð:7(\†Öÿ[vTæèò2*qs\ôŽ…à »fiñú´[2%sskÚåXÏ&$m¬4S¸„÷ñˆ£½?iŹRÝJÀÝ‚–~ð¸P:²Ú¿Þ@€ëú"¾¨A$0]ó(ÛËùî±)¨k´ÙUÝdÕï‚zxêÑ›îX¨F†»À>5퀴‘9L®½RÕsxGT¼ÅÿÇYÀŒƒ÷|Ýc¸æADèy® LåB®&­²ZÕŠO©§4¢ý>ïÿ ¤> +endstream +endobj +110 0 obj +<< +/BaseFont /CPGANP+Wingdings-Regular +/DescendantFonts 263 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 264 0 R +/Type /Font +>> +endobj +111 0 obj +<< +/Filter /FlateDecode +/Length 5529 +>> +stream +xÚå\YsÜ8’~ׯÀ#ÑU"N’Ñ>Ôë÷±¶6z'Öû £tŒ­’¦J²ìþõ›d±DÙ½O-©Š$@f~ùe&èÃ7÷×'g÷ýëᯇoO¾Þ>ÜÿíoâÅ«—‡?½¯ÅåV¼8>¨ÅR'–Ö±¹‹zY#ŽÏÿ~<<ª…ÇÂ/'jø¯Y:¡”YšÖµµÚ-󪆛nþ»Rré*-ÿçøß^¼þù%Ì£ÁGüñ~\ŠÝÔâÕíÁþò½=Y_Šjµ^üôBþüòÍ+ᚦV%añ?%>Š¥2mòðH±ˆJñuøhü²ö¦®­ht»ìºÎ5†üMZ»l«•ÔK]mäB/›j+ +~ÝJ»´Õ>¸¥¯¶âD.<_µøoòp}y&ÝRU×v¬©N¤öKSÝÆ^àØçâžPðÅ5^Õpu¡Zøx…Ã…Ó+WÝH…§Ç.ð³…‰àW ÷˜ÌÂèpƒCqèqh-áésqIq4 ÏÃcºzðMWÝI?·âW @JcàŽ¯ât%î¤B™rI4 2ꄹơqøWÒd÷óÔZÁÐ÷¸ f€}Ð7O¼ÂÅÚê•45ŒûNä¦0©ë6èt¼¬k‡šÍ”Ù[£ì²é:¯5+¤r0Y\9îí|C;âøò†–ex«›´“R¡b—âGÜ\†ä-€%úêŠ6/Ý +¿TµêJ{˧Íjá«Ï½ºk¸ëEÄ þ¿k²*ä¢m_ Üq}…ßh=aIQl]ý~ÂÖÐâ‰wñ®S¬ÐOÆ +"–û‹h1X@Dm¢±®‘›r/|‘£î±D`¶9Öà{k¨KCp8¶rbAiÕBÿóÉ›<ž¸=‰D­ +Rø4WË2…–35ÞÓÉðӜהF¹B†‰Ò8‚Bó×hŸÒ†ü¾(MAç1]‹V0+³•SÙo¦°ß¿-h°³S¨ž†Éé,«+ŠPª™4°Ï‚3ödÖh÷0ªTòAµ„5KJ iN£7~Zz„ž>{û½GTÕeõ€ ”#Í[ž¸œ6"BÂr±\"^Õ7ƒ´ºulNMOf‘ظpÛ°„›Ô"EEÏ]i¢dê\¦Š‰ÀÆÂÃdÚRŸŒ#°$‰-Ù 4GÃÝ\)Õ; Wº¬D±Ûd ÉÌùiïéL2üèw¶÷@ÐGÏ¢è•âHÅ×lUšj5b›C„÷£RØÂkX{3öȃS±,KƒxiXb£DH¡ ZC›pßp„qO'ÀE8ÄD;Qžc?Ê¢›æ(Úš:cThŠ¼¦=î3ÛAé`¢à—X€§L,&¢^‘k†0NXU` íã|[¥ÂOÊüö¸š£’²çÐÍUY5ƒ6{%Ñ–ú$‘iN`¹Y6äúÒlH+gWÉ÷”bê¨Ó›Óq +Ì„y–~u‘nNGmAÑh¨ß¥÷fÐÏÉ(%‚þ™ÌJ‡1 ú¢£3êç ãÍÅUò9x¢ô’ÒvãÔ4åOž~æ’„VWòÚ?½Ö$)<-Å1-¢‡¢bXJH·’+ü0Ò˜ð=S«yAÙ=Z…5v൱•y2{õåÚõhíCÂ3DâÆ&o4îo3î£OC¸K—xIšT`t¹9kÿT +@¡‹ìhGS‡ˆö4JH 7 f)Ò]B;­H Ÿ *Ò²"gõìÈUÌ<Šf{„Ä6cw=•Ä´YV¿’ÆA*£hE±J÷ÀT¦Ý;:8>š€ÆØùi—íLñP*ËHC< ýˆ+Ü,0¦jn +úç„£ò{=ÌѶ›CÖJUÏ#k>7#½jØL»)HÛ¨LÆá}UÑÈ´T;îyþ”º/@²cdÕ‘ãSxFtÕ“¦~yCºŠÔ•Ð—«™à‡n3cŠÓ‰lnv#P´Ôhù‰ÞÇ´¯÷&?l\FöØÛt)Ä8‚„hû!# tu„‘Y}ÊçåMìcñ¦)²×.aR²œ1MÑ7𓶡ÚžîB  gÁ(zƒ)’",[Ë ÛQdôÏO~ x¢CqÖŒz°ùgÅáÒOÕ‘<§èKéð&%[|äƒÌ + =yŒ£28EKŠÖ Ä\>ã¸CvÏ( œIga€™®à:UOçCõ”AÍÒ^PzZý-àÐX³òì÷þYt c”‘ ãôŽ{ÛãnÅŒNÄ·ñ¾Ð‰x) ú"›` x¡ñ iaˆö K¸ƒþÚóª¢Ã…Ͳ‚®¨M— äy9cL%·PÆEàÛÙš‹‡>Žˆ£‰ÖþIùDv’àÉ3b±r–*Ÿ‹]‘‰Spe©‘-PʶŹ‚“ýÏxx§DD*,4ya! (fJü µ–-YÓ~ÒÄåÎRºšN1ô¦ÖÑ—8Àq瘉¯ëÂL¦ù¨‚t1ç£;è@O Çº[—4ow«lb±ÿšþŽÅ`»Ýa< +è´'§¥Épz,Ræ¼-fÛœô=à¾EEAXüËÈA¤œë ”)pÙüXä·¦hóÒY‹ÿãVk`–5”Å¡éÞ¦‚ÝÉiå0éŠíµïîe„2wóÕ _VX˳.EA @õ¼P<_ð<˜y]¾µ›˜Ó./ŒÆÛ?,#̼C=S¡šz†¡è>ËŠ:’ÞC#°Ú‰¦`R/óÛåNœ:â@~¢à9qÉeA:õìƒ6ðo¦›ž¢M-²“y0È´O¿¡œR¥”väÑ,éȧGÇ(…åÅ÷ Yº}÷)ž&ÛŸ Ñ,0“¹k®ýÚ$ò%¿‡\:ê—õ¥BÞ+؇©$ Þ3˜¥¨ßõa¨O¥RqÍ jÔ¢ÚSwªØ‡ð>Aù2Á¯Õ ç!¨zaQ“¨Qí ½˶û;ˆŒË®|›NÙ3ã¶7ü̧y>þïï"ìoÑsyëºkÛ¦g7ôîÀ ça¼Z|ïâSu”é‰ûXÝ6ŠR^[2=U ÅÌŸZä­MÍ’YÓùjñêu²&;xm# œ­v¡›ÂNc•V0Aÿ¶DoK A=;<Òüž goŽ)Åxå@tÚ¯`Ž/ÐÁMõ+ÚM[ý—€€Ti~5á/ø7–p šÄ?®šê·àó¿’_6Õ[‰Pó+áISýÄ'Íþ!âå#qôš¼»«~&Üoª1dxβ¾Fthã—ïè^™6RÆ74¬§Y`û `«þ ]ý‚w¶”šãÇ÷"Œô ˆ…'x œ^S8ñéJü|Ä•Ø7a„~.Ãdr503K`èY<#ù>w|wfÙÖüðŠÍ6Û9a; –UÃ&;+ À!(¬<Þc:`mÙ=ªÖ;nB¯ÌnB—ÞXL–ß3 enïk8uM/ Ñq.ŽÙ†÷„ø/eaw$[oL4¯#Ž t±£¦%uê¨Ó¼¨©(`*à0¸Õ·7ø•¯NO—ïãÛ +„çˆQá›í,p.O—ð»I‡G&¼C4ðlÙ©¹ûp¿ã¡vE‡ö±èO!ƒÚ8n:î‡a™I¨cp¤Áà „ßÌ®Œ¬„ +aw°?¸¡Þ¸Ò†(î~¨šK5½&B7TßK +a´•-Lˆz”b$[0™=“ÄXè5ñ®µq0ß  +&÷hðå“üVżè× Îù…÷Éž20ë,4_P²XõgŠŠ˜a¢Qû«pÄÏx6/‰ +xÚ}rfê~`†‹>p˜ß2Ž]KÌ×—Ì`?rôI`¶E1³úþ._c*=#¡ïäض þ<,4zaáhÔ4[Ð)> ê¸)½ú7œ8lÉ ñn<’O+½½á1Âk¶•ßx€ÍÚÞ2žñ×'ô¶\ÜqI®×á%*äLW<Y=*ó†åëï‡{ÄÅí†Ý|ňºM­iÄK–kÃéÌ-ÿÂ#ÿå»gigðrQñšã­4ãÀë»`˜@ƒx­ú€C•üH‡ÑB+Žt”¤Uš!–ªŸGªtíÜH°ÿGp”FÜJâw4Ä:lÜ„MxSæÛü5&¦÷divÞ ^eÙý´©@@µàÀØ7¯’€¸¼Ÿ˜KÚ@“¾i©V{Êî÷•ëz:I<ÿŒÓ[³ |0¥†˜’„7.lõEz€N³ÑÒ!-K`R}÷p^ÙµÂÒjT©>ÒI. nÍ…u³ÍŒ—¯Ó|ŒŸl˜ùÅB‹óP–`ã ;üÂ0% ä›HÃb<Ðý*ž¹vŽŠa3rÒ4€ýHÙx.‹²5$[)Yz4.Ú…-¹ Fž¹U³c¥åhE¬Ë‹Ž½†H®#á$#+7µ‡uöÚiŠ;Ù«ö4†4OŠ•tr”|ß2FBE'xÛøF/â{Ä…[J¹ $Ûè7äñÉúB×H•öjyɧ™}, +<9Â9ž $öDíjþ´ßö5ªÜ®é‘f»dOŽí‰ÎV}c™ð4­e3¡aÒÞ?\J¬8^Í1)½+½ù©«Õ²ö­®›Â!µ~Ú¸ôœäÈx›q±],š]#“`<©˜ˆ IÉØ’ûȇ3#é¥(Jm RÖaÆ5pôYyEà«;zŠ×5T ±:L Û˜•q%Ä!\ø£Ti°ÍÔ3‘¢ñÑŠ«xª($U‘u4 óG»œG´¿´KÀÑí­š§ +ZvƒÂm)>-Ëç_â¬6ØÑÜw;”á_Á£*¨Ï¸&à½zlB¢Ÿ€^Ð ñ›“Oøyb‡˜á˜DÁX§|àÄð©E~ÏÙ ¹‰‘,kµCp"ÉW7§¡™ä¥‰n¹KrA÷Fß­Bgâ 85²®{¦â°zðœûà+j1ð‘·ŠNø; +6dI¤yͱ%ø*©õüƒøÎâÚÌÁ^¦)X×1ŸÐ)ª1Ô²ßHs1ûnðEäò‰˜~Rfâ”4ÿ‹œñ¡ øÙC9K(C°È¨-¦—;kM—‘#Œ²S‰¹Mé³Ï‰¸§×î»@¢ý®2žjäY‚ŽWÌ–Š2=·©3'“—yÉ%ÂÐõîÉ•l Že´îì@­³˜ƒžCÒáÿ‚ÜýÞa÷¤1%³ôÊ\­ ÜBªª[\µö—œå„GÚ²Ä%ýwqÉqœá÷çÊÜ–ß +<Æ1àöæÀ¹ ¼Î68ý°À)þÈ­eŠ1a¨J> ç"içýƒ8^û9*¬»‚èŒÁ’¸jŽ3”EŠÌÌ7úf;OZdÍThKÐ%¯(6óÏwÜgx/4ž\JOÿì(.N¥ŠX‰yâm¤´Ä^H,ñ‘·¢ì §¡@"& *ÝÇ¡ýþ'æ/óôùm 6ݹŒ½zõŽÄÄ,Ö £Èÿ¹ +endstream +endobj +112 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +113 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +114 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +115 0 obj +<< +/Filter /FlateDecode +/Length 2957 +>> +stream +H‰¬WmoÛÈþ®_±µÀ‰âî’K²8ÄI"A›X‡CÑ+[–÷,ËgÙqÝ_ßyÙW’Šyé!@L‘»³³3Ï<óÌòÅÝýÕåÙú^üøãòobùþìiÿp/~úéåÉ+1{¹š•¢,´©áÿª2ân;[¾=-Åö0[®ÔçR(±ºœ-Ê¢„%«µp ìMQ‹ª«À†­…®‹º¶°g7ûç\ɾÍü×꯳׫Ùëpâïp ÚAp þz¿|³+ÅÉ~öq¶ü;ºùþìf+æ››ÅÛ—rùáÕ»au›»,гßÐWå}UÑ×R;_ñáQ¨²hy‹m 7è*aàA[U±«µTäk!ª+:tz¡Å\œÀï€/rËÅ|‡¿+1ߟãC+æWײ¤¿raðÃå¢CCg²ÂŸ÷r‚Ïû0X(0yp&¯î7¸Ö²A—„`¹Z¹ÜP8éÒ-ÝUñMU¼©í +[U.)'ÎÍNª–®"MaÅü#ÐÑEøtÍð&ï¥1gR[ô.¦KÜw…fj4Sáûq&UYãÕëþJ8ð+ØTübh‹‚Jц¨À®wï6 R¨ã;x0áO²Y£Õ ÁðÛã{¸ØƒÔ~¿áâBÂítr ¡![5îÝ‚-ðë?Ûôò~ݸ˜\ˆ¸¯¿À›¥ß…8•Ê ë÷3NX¸fÏÌhš”KÚùþ4=粘JS¦uY(Õa]¿x¦iä;`¾4f¯1uOð@ÞÝb^ª%D“â:†ES™>‰xUâ«šWiÒ.ñ 0s‡‚/­/Òâ¹›)iHŽýŽ4ì]µ\Šë!¼ܲuø݈© ®À;QiíÎ7’ιÃó8kóÎêZ¶hk/;ü¾¿sÔ9.Ø­Œ[ç>h_€î^õb*,T‹²©À¢‚\XÜJ +RÿRH˜6ÆŒ¢mÝe©*™ca]EïÃz~¿ÆËpv\"âm/à÷ã=q¾ˆŒz0:Tlc-IU¿†uVcþ½—œx|M‡Ñ60¦1ùð²ÃR ˆµX¤–.Ðu<‰´Jøq¾q89¸šÛìè#W–Á7 ·¾6DZeŽ»Cùb#Gµñj.™ HãÝeP@{‚”:¡_†îŽæ©UÙqD°(þ·ükƒ‹U+Pr +ÂLmŸ™R^:F>3ô’í–)Îo155—åoÑ¡¹[Yñµ=ƒzª3ðñ‡k¢¶äÎÌ¥„j›âqˆŸOÙ¥ä~ê¬bò‘C²†Mø‡¥6"×E÷×¹¬ Ú `tÙð }At§øÀ†Ovp£¼üG¼pP‚N› N"Qº`³H¤ÔH®J`e=ÇU waæ’{‰ØðšcŠd óŽr5‡0‡šŒ(°ªp4)šgƒ)o£Wc¢”LÝ=ì"»Ñë«pã1;­/¼Ú?Ûâ ‹®¨³2çñ‡\hŸs¡CÛ7\˜†Ã&Ça}D éÚ&Ò{t +kò)l|«Óbâé«Nk;L_;ù´¢òi¥É§×ÁžŸWºþ¼B£˜wÐKW×0“Îf't¶ì¦œ è¸ã‡D}÷”5)Oz¦¶.­.fI¯?Rp:+8ëJóH±xٔㆲ6Im‚¤v@ ´µp£˜ªT¢°/¯{ÁHìeç?ʆ\,&ºÑ%n,Wê³pÀ%yTZç>€GXjä“Ž>AºªÔìSí궠öA1,4 +iIZ(ðYÌÅ)|Æ áì$auAq^PÓ<¹h™ +KÏ{¼Ø0‘TŒÃU»[„]šr‡g\ó,_ö箺®$õák + еWEäײr¤Ôó¾¶w«<ˆ*±†Uô¤XWeëUÉ¡.1Êoã£Ü R_½µî8̧¾÷Š]çÅnób?RêíX©ÿqbi”ú˜F±yýgÊv8" u9KÙ¯ '¦ +$a+A’D£©…r)Œ>qs÷ +\º¸³"ã½:›â5 öH“iÒ?Ö™€²ÎÔšqQ-”d€Ò€ÓàS¥*ÖÐØÐ0õ9!9PšªóQľäFWv¸¹‹«+?CUôàќʘ "\'±>Îþ'Àh®ò +endstream +endobj +116 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Filter /DCTDecode +/Height 827 +/Intent /RelativeColorimetric +/Length 139102 +/Name /X +/Subtype /Image +/Type /XObject +/Width 1060 +>> +stream +ÿØÿîAdobedÿÛÅ + + + + +                ÿÝ…ÿÀ;$ÿÄ¢  +  +  + U"2#3BU’”Ó!RSTbrÒÔ$4CVa‚“•6Wcstuv¢¥²´DQdƒ£¤³µÂð +&57Gg†‘Åäòó%'()*189:AEFHIJXYZefhijqwxyz„…‡ˆ‰Š–—˜™š¡¦§¨©ª±¶·¸¹ºÁÃÄÆÇÈÉÊÑÕÖ×ØÙÚáâãåæçèéêñôõö÷øùú + +u!QÑð1¡"ARaq‚±Ááñ2‘¢#3BSbr’²ÂÒâò$ +%&'()*456789:CDEFGHIJTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š“”•–—˜™š£¤¥¦§¨©ª³´µ¶·¸¹ºÃÄÅÆÇÈÉÊÓÔÕÖ×ØÙÚãäåæçèéêóôõö÷øùúÿÚ ?¿€?ÿп€?ÿÑ¿€<>ØSO©ëKoÙw#fíÈu–UU +Dˆ‘ |Ç9¢R~Ó«ûGì?°iBñS¬Ç{{Ù¿ÇŸøeŸJ.h˜üò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¹ù·½›êõöÀ§þgÒtvy.2[{÷5«\¡çÎdc«(g‡)o­äÛ*mBöYŠj„ÔÞÐÄB1nšÀqãv—Ž(´Wt¦Í`8ñ;KÇ DÒ›5€ãÆ<í/-JlÖó´¼p´M)³X"Ð䤩§Ú¦JNA’ÚȾ5ÔµÁ<ò$·WWS1{¦/‡tkyf¤a$¾(ÆþF^ +MV}t}•+VÕuJk_«\cb›ëÌ©Áð! e=ÄãóÔ–Þ?›±v†,׋1ב¶)fókSÏéiÇŽ› Ìë.„™ +‘Ží¢.µnB|”`Ò†+NÆm¿a—m¶ÃfÆN"ž^¸vÌÙ­3A*¦¯¦cd\Á¶“F:&!'D"ê*¹¾®RâæaBé“Ldbkã+U–œÑïG½-º¡}Z½+Ta…Ž»vÌÙvŸORh3€¨è×+&ÎWQÑWŒxàŠº`áùNdô‘RñL™¼!sV1š2Í× kïFùc±Š’Ì86•”ÚG±ëyÞrOÌÃñE'ó¼ÿƒ 5\«ÔÚrO[œ#E2IÖ ´å{¥°(–Y¡*š3Ë> [ÃO4"¹–Z:øõ‚êœÀTa5E¨V–˜-F¬h®Â¬ +´SAFšX¿Cº3Jü䊾ïÂì€<¼Ð{¢›Âì€)Ëe¼×êqŒÐ3KYŒf‰i` +á Ïc ¹ :Ôq¦zUsŒàI%Ìö¶šš¹&–p-5By¥TŒÔÍ$µ§ªIiy¢ö¤’À ñ$` ‘–h-¼²ÜoØK-P2Í*Šu¥˜ $Äð”jᬦ–&à³.¥Ùµ‚í(ÞW¹²jºP´Ë7´n +­eÝ µÎæPSÖµZ=Ð;®ÕŸP*£­n¹a qè³OêS,e†°Q Ó/FIdØS™j8‰` YfŠ¸Í- 4qYŒÐª +aÙ5ä$¹=Kœ“S{%Ig$Õ êK ~2¬=[À*ËÜ­K®`[î »ybuòÀ ‘‚‰'– F3ÂP)Õšª¹éËJ®n:€žI¥$«,õsqÕ`$šjŠªÂZf¨O4ÔÖ¥„µUimÊU!@­ñV©|`W+ÈT”£ «°§ €R^ÁÍ%ø•‹þ×Ù +Þ3ãGälèu2X²ºÿÔ¿€1…±üDU=N/uõš£+“æ„Õ!åac¥Œ$oÊ:e9$É'ŒfÏcî’õJþ¹£“‹¼Í?|£“‹™§âÀhäâæiø°98¹š~,ŽN.fŸ‹£“‹™§âÀhäâæiø°98¹š~,ŽN.fŸ‹£“‹™§âÀhäâæiø°98¹š~,ŽN.fŸ‹£“‹™§âÀhäâæiø°98¹š~,ŽN.ó4Ðâe–Dî£ÄRû¢ä]C.Ø.Ñ«–k99æ©«™“€dƒT˜³R1¬Ú¨!~áä%ŠGN?~¡ÏsÜ/"at’M6Í_$/hu¶\£‰É-øïx™.Ü­^š§kÑÏìÒ*]Â-"u|éWUkñÍŸ†¥ÌÂç¹\™É•qaRYí z²ÃlvÆ îQÅË/\½±ÜÃ4My?AÆNU éøÇ””ì©Øº†xžTÔ®&TŠW4ÊrÛ™ûÞÁ›ˆÂÇZZrÍÝBvñ_ªð‡y„ÆC¯.¯/±òZÄ]-?NBWt¬*DzõìcØÓ+Ž‘\ DWÅncçÝPªûƒ‡'Oåš7µ£{[®ûžce…®ãØßEª—QûHö=gyÉ?3ÅŸÎóþ €Õr¯SiÉ=nq +I+Z3Ù*¶«ˆ c¤œF £ËJ9hk® Ù3à"ˆ}ðgЕ¬ÅÕ³eV”–Ðí[UỖұfáÌG¹t³¤7prê“Adïéþ£Rý:²Æ 8Êsaç··ÑmÓuqÆ•šdcÞZª9*Þ˜;…‰˜B' Šw÷KûåÑw $±Š×)Tši.ä#ú•PçjèêH&º‰®š7›§““v?ÖÆ¡º»qƒÛ¸™g,m¨¯Ö”’“&G-€‰ZH,Ü…& ÐLmcVZm4(MQ¹é)çÖi7RÒ²òN$ØÇÅëì{—*^vV‰ßMdŽ~ɹ‹Q„µ—e„ÔZ=f;köª« I]K'•·A³ã·nÅ7’"Døw.çœUS*št&cZ¾za„%CCÌÌ8]x9ˆDÓ’Æ98Ž=ò_?f™38ÊÃBY˜¸˜Í+/5±º« dªi©ˆK¥×ãšñü A.&fM‚’þÈïm©BÁÖõÍOZÏ8bf&jœL~¸‚J7Q)”k÷¾V2¥Œ±bÍJX}‹²,ßfÔüå(ÚF.ZHò-tsE¹]LW"„ÌIcðΙïg~&[6¸i®ßïL²M×2 ßT©œÉ§{Hý€Å¥­—SS†6}LÂÚ„)dYH³P«™cHíÜ3wØd|S940÷±ºÄFX#¸i¦‹|+=![Ð¥ª¤‘l¾°¾+ãeMp™ÉŸëd¨ÆX²ªBf«iƒó¶vÞ"q̤á +²mבÁ>™S@S‡Ã®b1 HAÖµe~j‚yëS5”"mÓJPíHR`‘M Av´2­ÑŽg!,ò…¤xXY'“p¡1 »ã¼ºtûð4Æ»V톓eù¡ñKµDŽC(–‹@Ê ¡Ò=Å"gÏLe`¤ÌÆå ò1ͧPhØì +õU9QK! Åf¸(9Yvï1"y9ÑSO‚å +²ÖXÅSš‡öçJ9kn¨j4äd¶§àÜkjlZ8ÀʦLG'XéçÜNùIp+Õ–‰„§5~=Ï‚7VÅSì8…¨›¾È[=puNÍó2cÜ!Ôõ•;Ø*§k-W’j-‘gÔÔ-¨CHõ”k5 +¹–1dŽÝÃ7}†GÀE3“C{ ã-„“UnkA’|Gu0x¨÷W×Gmdé:|Ü„¸‘ÜîxH©œ~ÒiÆUXŠ“7ýD8£æJµ=0wÔ»ÆgÄl»Ì«'v™óØû¦b„¼E ˆ1q3 ¬)¦ak7 éÚÉ„œ„õHù'Zé"Â̹ +DÖ=ÌÌAŠ©,8Z3Ug7‘Û^PsÊR.|ª-_9j¢®2Ãã\àM<;šJÐŒYÕ%=ìCOÐÑ5D”-líz ¨‘Î:²‡WmðéØLõ>F,MF˱Äf™ÈMJõÛžñJ²j&k¦¸}ÐcM5›ˆÓÍ+‡mEÄVtyi‚´˜×Œ¨¦”Zù²6Ä9.ž6¸:òÏNèö3 4•!朧¶‡“…©˜>|¼ +†Öù¤]ºY|8>âëtÐÃ>bŸ#¸9åž{2q”f’œ"Õeº´jŽiãwN“jéð”9HòQDs÷½2!ø È£VëO4[JÎlv. £agTSlÞ8bG*9JYbàŸ³±™e\ÃàæŸkaÀÈ©jlìµTäâ&St–PvnpTçù!3ªË,ú3M^<{“¢,Ò•§¥S}8õã”Ó>䬱Ý⛞† ÖTÅB Å$dãÚÍ#H]›ªb¼´ÚÑå"Y'La Ùµs%‘-„áÓ—›ÊWÓÏ!.øÏ’F³RÍ¿)¥„ÍÓ!$©1 „Kè÷nŽ¹YÆòáM Ð_¡RZÌlT“PãÞÙÖs@Óõ«Iy Ê‚A'zñ(†s@…"kæf W©- $Õø÷9gI@³¥â™Æ°p²í“)Ìš«¸:ç6!ñ4ÔÓÓyþ3uB[JÇ$UÄ5©ácä“w“LÊæW¶}Âho*”gO/rÀÓÚf+¡§¤¶É^aw‹+S8›f‘Œ|$σpä'É0—Õá,T#4[fÐ^º™i]LA –ª"áÑÃpt°ÑgqŽNÃç7$(BX•ã4M­Ðå]%SHø„º]~9¯ÀÄ510lpøYŸ-¼b¨IÓïlñ6r3K.ÒdÃlOEô£' –f.2•è´Ú µÍ›Ó’Í\*ežC•C ¡Ò9q"kú~è‚Üa-=ê¡4Õ¨æã¯ähv›A£c° ÕTåE,„ƒšà æAg Þb,Dòs¢¦ž!MåªÆ«,Ô©gã­½*<²Ô«”™dGÃB³jæH­ÀpáÃÍѯé—4óKE™,&¬Ðå T°©ºqä,ƒµ f$‰}íÑ×"+8Þ\#‰¡¡º“KYj¤&¢ÚÖ[ÊDK9…puXÏ<”^%u9ðÜ3XäY®éÞ§OýøÈå 5¢±ÉظÆne +5ì¢óö²‹¯¹EÓR±*ê 5²\ð |bMBðgI_[Õ´BÖeP%4õZÅG‘É™C>YRI8p±1›àâ\Á¸szß\§>e©ðñƒ˜ƒ~œb KàEìѲ_‰X¿á]} ã>4~F·S%‹+ ÿÕ¿€1±üDU?;Ý}f¨Êäÿ®CËêbc¾$]oŠ:…?‰#žÍñþWgˆOP²ù¬Ô¢gI¦Õ…¸.Eú=:1b‹rëÙ½}ó‚kì5…Ü©áöèzXØØw?'©× u\óqg:Ë/<ÜXË/óD¡Ro +Ò´{\ºdîA;6 ã“*9dš%‚CŸE3îQ„§4·Ž1ùãúÞâ*Âfp{æ¥*¦¢Ò6{E?_U4“3‡°gpáB B—ÔQçTù…(ÑIȵ#SF}ïÁ6srŒ»8ù›FÞ¥ Î.J~X©­RܬoEéè$q7#“²Äuù*i¥†½p‡_Í}WïÙå>P„8ö6ݤڬ¤=%cØÅGÇäeß«|N®©Ís³=Òâ½ð<Ÿzúã·åòøØø¼\'ÕÇ¡ŒFÎxÆ ##Â+“M  äŸ™‡âŠOçyÿ@jùV¬cÓ‘¥…Üá†is­ß£gÖ‘ VJ +"J$ð®›zjá5±Ñ:ÝÐÔ&jñÖÚVÉj5»w–slY9gQÍ‘Tª"«s7Pä\êã&¢›ÝÃæø/à°ù$²Þ7¤žìoD*TüAKšRÎB¼ä‚Þ +'ºæ6ž’K2ó‰–-^³]âDvð§3t lõˆžÂ|Œ`¶™Ú¨Üh k(j¥´´åçÇI„ÌTݺE¹ÌL˜™û¢ƒg<šV–]Jd’6ÍUÖÒQKbE'Nžšnô»ÒÎ\ë¬r‡‡šAä“è8÷®M ?æë²;NƒoKGÄÍÈ7Š“nHÙ\Q;r`_Ý4È¥Ë÷È)Ÿ»€ÇFYmǡǪñVõ£j²²U;°² ª®inÌøk+à(sŒì,ð•§Åæšk³›ŽpƒÆ®)Ä—n¡MBÈ6Í:gÄ!÷ñ‡>—‹6´å¡Ægœ¤õ\ÊOSµûÖ¯¢Ý6¥|¦Öb¡1ª+)‡¾gbŠnwBM/*KCŒÏe`²wXÅÂH*ú˜bñªq*(¦)>#”‘[†Šg»ø÷AN:{¨äúv‹=K.é“Ë2oŽå4W2)×1L™„åŒ +1³sQŇî,†Õ`õúyHøÉ<G†MÆK ÕÚdÏÌÜÎs¦{ØwÓ>%ѳÃÉ•¢© +5ášn¿—ÕfÔ¤¢Í^LÙ’u›Rɨµ?(¢…xüB&çq9ȧè»V¬øi)ÕŽYº¾_S~Z MÒU ›¸„ƒiª“ÄME"DŽb`Ÿ0X§ˆ»/‡¥ÜyÛ|M« gr•…¢³4VRYb¾¸:"GÁÁ&†"‰‹³FìZrÒ—?›µÈû;oE°nñ´i*„QÂqîâéÔ&|5¹¡ô£]‹Žfï6VÄóG5Mý(ͪ·®-1™®šáî(äƒ+“çÊÅå>é©CyŸh˜gí¤‹³•Ú©ˆ‰¼Yr&~ÎâŠ\IŽ¿¯#Bž¸qÚÛ,ë6ªë:fyÑ뤢󱫹P‰$é„&1~Í3’åÁìðε.*j:¡Çc᪪4í¶ƒ-+rU:U¼Œ‹…RRûs;Q6Íñ“áßìX-b1”êÍïÜÑ߸²Tƒ×éå#âäðq7,ƒWi“?3s9ΙïaßLø—FL±{^… +²þ¥í=c£¡í-«sÇÌF®¡d% ˜£„Ö> ÄÌ!Ômt÷Φø-MRãç_ÃÔµ;VãæyÒ±tí/i lò@¦bù«Õ'4q•2L‰“ÒÊïŠ\>6gÊû_®]Äǹú·3JÓÆ4¸ùÛJËàl­ü|ªÕY¡uÇ]¥12Lj¤­Ì¤÷3P]ÅÍš ~N§J¯Çõúœ„Vn¢¤ßP-YH¶‹)Ì›f.ªWïâ,KéâgÜ=ñ¬–Væ¬iQøž¿]ØBÐв9È•d$“(ù„Ñ;˜õâÜ`=Êîf&O>ýû¸„:x™Ü›‡Õ+]ˆš”f÷²4µnÍ®Åàm=¡XÌC‘E¾/¥õÑ2#â'q,Ø÷Æ<5ÌÉÍJûÛF•‹§i{Hˆcg’3Í_)8É£Œ©’dLž–W|Ráñ³>WÚýrþ&¢Æ¢å°ÓÍ®-ìš â¼¼mAhÖ‹*êžž$Bt»TU‘épówZáQ;™˜dXÏ¢hêf­Ç¹Š*Ö²VxÞÓi™¹BH)=¯­×M¹‘G ­€ä˜8šjfŸÜŒªUt¬ åš“1Zœ[ª]¤¡D£ª¢±¬HÒY$ôÜE¸&¼Ñ0ÏÛI=g+µS;x²äLýŸ0+âíDZ´Ãòl&ë㵶Ï.ÖÍ-2qÄÚÅiV5Ž3Wªšãr»!Ð;sŸ€u{ùá?ÕžÒŸAǽ鴺Ž>Ñ¥éZFÒRJ–Q¬”‚”"©5hÏtÏ:y—Ô=Ò\ >¢·ˆ©§ãÜÛejæÍœ·f¦›9©W±nxh»nðêÿˆ÷Bî"¥ç„V°4£ +QƒXó8ÔkU²쳦¦hågÌJá{r›l5‰Ë!ƒ•jg’Ç"QÉV1ñod2SÍæmÌ£ç&5ز*—Õfw>3ƒ£ÀÄÍ"gïFÓ3¤•˜†,ÌùJ! üaú-«-€2Ü1{4l—âV/øW_d(#xÏ‘³¡ÔÉbÊèÿÖ¿€1±üDU?;Ý}f¨Êäÿ®CËêbc¾$]oŠ:…?‰#žÍñþWgˆOP²ù¬Ô¢gI¦Õ…¸.Eú=^¸KÔ£¾Øv‘O-WRu4S‘5äã$$uzä)Ü7Q˜ÝNTÝqV6˨^T ô;í#Ž 9Û¿!O…2ìb%ðnm¼|ç¡ßiqÎÝù|)—d{ƒsmãç~zÇí߇¨G½Í˽qí= HãˆvïÈCáT!Þfã c=¦§ä<-#Wö¸€çNü„Sð¢ïG³r‰?ôcǵû«ù HÔý® 9Û¿!ü(¿z=›‰ÿôx÷¼}GãˆvïÈERþ*xlfå1äñïbÙ2¥OéÃE¤£1PXè©qEŒKéžçs.V…H_BÄy2ñí|>v‡Œ£ýñnŒ{W•!~7òü]…{J³%ÍïÞÜ’ÐÑóÍÌÎIŠ/8É9DŠ¤op ÆÃ׼̚øJ0—ß½¦ÓÔ”-$‘‘„‰mE7Ì™¹ÄððôÅU*Ýb•+7¨·.¶L_ †1frflÑlgKwIe4Õ>™ûñ~yô…²>šf ÕLÒ‘-œ©™Ër+†E4ÈLNØ<’®‰k$µª­QU5:$2O ɹ†'as°ä©esÒ»ÑÖ%ºLØ5I«dKu4L‰$™;Â&Íw’I”‹g–NÁš-R¼u0ÐL‰ú›¡Ïq1oS4ÅY`û…ɺžÑ×Ââ-›§,Þ.Í\³¿“®tÈeQÄ&îˆ@Œùce2I›$~ÜúÕI5ÈdÕLªBÝ1L[Ä1±Ž]k’Ã6x}µò5‹fÉ¡X·jŠMSO ¨&™‘IØ\иÏŸZÖL´­Ç[̓±mÒfɺM›"[©¤’dI$É؉! ú—rÂZ7ã­£ÍÑ°5AÒRf Œ‚ˆ–êfvÍÎRw˜‰Š¤ÄV‡cTÀÒÞøbìò•ƒv“èÚf1›´ïá®Ú=•.!.áÓO° êÖ›ˆ`éÈïojY“6­M*Z> lfrŒQxØÚI9DŠ“ » +¶[› m|z_-=JBÒIh–ÑäP׌VÈ‘+Þö8¥ÂqÄZŒt[8„΋hµ"ŠC&‚dH†:šgÜøbÌa™v^á÷f•r4éH†3m•g$Í”¹ˆ‚è‘T†|Bf)ß‹”ëåcV£™æþ5¬£eY½j“–Ëê‰*™IBv"‚˜Fոت¼Œr>Y*z.]‘c_Ƶvȸw[.ÜŠ¤\= Å3Øb-[…|,#.VØÚž‡ö ð[nŒ#^¬~7«Ô±“uz÷·Œ\CFågÍ­Še TD‰$\Cß>b}øµ©GãzýLª5g¡ñ}^Öšþ”…–rWaÙ9rR‘2®»TUT¤Lø„%õõ³çü°U%{“Â^÷­¸º²Ü’”cÔÒ¥á#êÇg(Ť“”H©9 + ´ëèÔWÂç|”ý+ I$da¢[G‘C^1["D¯xxcÉëéèár5(ضq)dì¢Ñ+ÇS È‘/©º÷Â¥õ«¥JгÖÂ>-W‹3b‹e^)ˆàé"BcögÃÓ8òsêUJ–HÝìJ!‹wkÈ$Íݸ)Yr¢B*¡Ð!ϦqNg•÷ä" +^4ãqº¥³…g:uRÀt® +i”ÇÅ)µ/üäfüæ²½³n ‡€¶29Igm˜¢b”î"e2šÔb*åzú§áW§Ÿ¹ŽrbT0ï†ÍÐÄüXaëfÖ4\H9§då»JÅýÝø1Äoñ¢ÙÐêd‘etÿ׿€ +߃F±Ÿ?'¡³¡ÔÈÂÊèÿп€<5u?hÌK©=|Õ~jŠ²Äj¶00 ¢Ü7q‹ÝS>EŠ•U9O­†ºY›‘C«û@ßòW$G Qµ¾^ôŸ0î#Þ>Mív"n}ÝìãÄãÛÏ ½ÞÖóG#“” ¢>ó3`IE²d楔mÔpW„Té3b¡Èr#qÓÝ”1J|ýí2“³|n +ln«ÚÑã¿ÓVM|zÙOWò!Ö•«ûTSüÍß—|œðûd>üË⥄{Ü}Åãè†ZWÓüÍß—Š~ Íáv~ ïOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wåáð^o ³ðGOñħ¢i\SOó7~^æð»?tÿJz!–•Å4ÿ3wå⟃1ð»?tÿJ÷µüˆ5¤8YõbiýME)5ur7}n¯ò<> GÂìüΟã‰VpD“†¨¦=o&p"±ü¿N|Üëðc‰.âCÉ«ÖÛ¢ú€U/×8ØòŒÍ˜ÒŸù¸ÿ^èjåüÌGŽó>§Åaq²`€8½æŒ¥ödöƒ…ÊØî¤5ÓÓMdÛä?,…\ ;Á¥å¹²U„!ÇSnUµ£ŠÊÌÌYBáLÅËE°”C±vÝâ9þšbì)Z/1ÓÚ”"ßmc›×–£Pë²$rÚ•gƒ4-ôŠâ@˜çVçgp… Ú:M4ü{ž‹aˆkIKQÕ”J$jù9†±Ï ‘nå ^ng!û>»N:e¼E=÷$±¶nš'â‚æ´>¼câþ³ÆÕê-bÔþ*¥ÿ…CðëØy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢}Ñr®¡6|Éc 庄Q55Ô♵«—S'ìÆÊõÛb/5Êö>»6Ö¼§OÔšÛÿ¬ãï{ž Á› è +ò€e¸Àxܪs”ÌS0LÀñPìõSo–'õà;BJê ]P– +&‹‡åúoæç_ƒH°6Ë#_S­·zƒ"ëV:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË@¹c¨,u厠\±Ô –:rÇP.XêË™#iHüfg›üÆ´ÿͧú÷#UJ?Ux‰»–v ÚL[Çõ5œ¸nÍeRk$éW +3˜ˆ“&:wÎ~Ì£VÐk±TóOv%óAYÜƹ¶œ¦™ªå)gͦ ‰Õ9²5ˆ¢.®'ÚÈKŠ°ø,L!/+à´’[K}ÕMå¬æ°sXGC¸•Š˜jƒifÌSÅvŠÍ÷—' — ràÇË-UÞê“NtþJÛ&iôу}ø’N—’o“ªéË}å$Qӹþ–ZEæªä°Ö6À ÓE~_àþkCëÆ67\#äUJ ^Ô¾*e¿…Cð0´g‘ÆTcACšÖUñ-à­ø1Äo®h³¨GS# +àÿÒ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢{ÚµYâÅE²'UU4SL·ŽaOR¾¶»°Úƒˆßs5º1î–Æ¡™ªÉ$’ÇDåIkøj¹ŠaéÜ8¥@“U—"¦I¨TKyC·ðÉÙœº:!ôÊåkÍgK›E$:§7¸L¥vn®fë¢t—)®™% på?€îBž”tªíÐtª¨ïɦÜæ:~8Í(ù0u¦ Æê ~Öªg!þô (õºj³5 ‹„N’…ÒMBÜ9@jL©Éi±™Åº].Ø“sœŸy€ôÉCHDáeìVm‰½ã¢t¯{à¸4âÊœ¥!Lc×JRð€n-‡TFû™­Ñ‹zUz6ŒƒO+VíÕUséRM3œü€Òš7²F9äCƒ5~ÕV‹§¤’é#—Ü(SFÔKIN˜……zbݽ{%[£ )£h-Ý[¦Í0¸¡øìõSo–'õà;BJꮦ¨ö:ˆÊØnìÖœz²ÎW*Š¬s¨¡µTWªcŸö]1rž22õG™n4 ôíSJñI}ùn{Ï&ÛÙ Ï406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡µM+Å%÷åº@ç“mì†ãCjšWŠKïËtÏ&Û٠ƆÕ4¯—ß–éžM·² ªi^)/¿-Ò<›od7TÒ¼R_~[¤y6ÞÈn406©¥x¤¾ü·Hòm½Üh`mSJñI}ùn9äÛ{!¸ÐÀÚ¦•â’ûòÝ sɶöCq¡ƒÇjº[«ùi/¿-Òa‹š0ëì†åQ…Û×£ZÂRñìÙ¥¨š$|K¤ÔÕ½vù>¯ôâþlÓüŠq2w.1ãK-¥W-;ÂെžÑy M¨ÂY©–¨fª^Z@)nš+òÿób^1±°´±ò/P†·.¤ìþYÂŽÞÇ•UÔÔÏRùË{ôâã#a£»âÕ²ª[ŠKïËt‚¾y4{ýžÅQƒwÆF5†j“6‰á¢ŸX„ÔÕêê¯{íõEŽeÊrY«Š?ÿÓ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢gŸ2ÿWRÕhž§ì:àO¬8Öò¼—ÃÇ6ȳy.«÷<|ìñ=!æœ`¼ƒ‹óäl‰—RÿP—JŠ}{ܨÃað1§ÝFòÍ·ÅωůsÕæìñÁ‡«¿Ì=eŸ7Õƒ6ØhÆ|LþI}lZ°…<<žw¥áaŸ– [úSì¶Âç*ÞJ´ü³}Õo“á +”§ó}-ãSV2ö#IP´å äѯê”ç¥_¶)2Ç®Î}VÈb锩šì¿C…F„15c¦×FÝþ¸CÅ2*TÑRúüm¥WÚµyKêU‘N=%†Y…‘ÂÔ]’—* nyç!ïa›°7ð£/CC^:5Fÿë8¹´´>­Æ¿•ššµ6ÌüÑ{ Ç×»ÑyM¾ú¬—î{‹ÃO$”g§CMÕõKõøö|ŒóÕÒVÑ~½ìÙãùXŽÖ­Ò³'$µ«æ—<«]ZUÖ¢9iS¸l»9?ZêaéðÿŽx8Q§Z«Fý~+ußƵŠž®Ž:oÏSù«º»cH|ï„ü-j39*Zz +~YöøQaò¼µ#<ÞnÍfš'VÓu,‚ŽÚ×/Å×Yœ· Ô'VïU—þ˜`r…:3bfÍÕi{ñ‡{ÊÏ¥°§%¶GcŽ–ÐòÓV^- H3ýUS#…þ¦‰OsÄä—’7<ŸC tþ÷½¬ÇW­êõ1µñAós_Áˆ3+Ú‰‡ÑGãzýN|Û §š •WU¸…4á!xéFÇD»ZýRíÁÀÑÂhäÒZ3Í›¿5áhêÕìò7Øú˜‰¦ú—Åó}l(έ’² 6„‚sª…C[»”QÔÒeh²`±ÕI#ð/ªsç'Û 2§^¼Ú_‹$!·ìPñFXŽ"zRýKã|ž½O©­W!nVmW·ª×šH­dã¤UÔ&VfŠ+€áŸLäνòÏpÁÑÀâ!-êŒ#«^ÈÆúãˆã+ס“ÁÛäfWun$¨™’‰ÔžÖk†ÉòŽf·²q3ô4ïuF¯K +Pk_^«Í~½’Å°ÆÇ%hÛÅà샞jíD6`Äêj7$É¡¢ÍPê6¹p³TÊw¼Ëú8ƒqÈTï/Šñ·’í_+Vîœd¸j‹]×èð}‘¾ªmòÄþ¼hAÉ]@§>`Ö@…#ÆÉ®Bêõu +© +rÞþà4͈ÂñC>l—ˆ+η£6# Å ù²^ g4fÄ¡x¡Ÿ5KÄçU,þ½}E¢ÙBÓŒÜcåê`¦^§ÒjŒª£?TxùÖêÍf‡BÔ‘5ƒã³50ͽÔï^ÂLßàz‚å|j—ˆ0ôŒ˜ÉwîÄax¡Ÿ6KÄ êtfÄax¡Ÿ6KÄ æîFœ‰DäU8ÆÄ95oT¨¦/ñúš‚…ƼÿÔ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢gŸ2ÿWVÕhž§ì:àO¬8Öò¼öÃÇ6ȳy.O«÷<|ì¯1æo·çnßj2ADQk¥×Æ×LMSüÖ5¸lf­7_·ÄÙbp¸¸Õ¼¿xÙã}¥±jÎÔl–Ï›SÆ|¬\BW…Ê›%‡ˆ²7=P¢wô  =­Êáñ3ß¿ =H¨—Øy<ïO•¡Ð¶}?fŒmv¥a½Ø–>2*æ(톾‚Š]­—Vœa¶oºÇż>4iÏæú|±}ŠÑÒ¾h*^‰–£EÕCKÇ'þ3(Ez‰4Tçfáu!‰pܾÌY¥ZjÑ…mPŒo–ÙuSI¦¥ {ŽÍåjŒ OÚ\ùÔNêçm£ÌáÝ7bš+Ç[0·ÎagfÄþ#ÃU£ßòx^Eì]8ÓÃý[ioG´Üý]Vy£â)„Τ«ƒEdÄIr m\7dPùê"4†á‹4êÒ§N„jþ¾mñìòÁvy*é+h¿^ölñü¬[5LÕÖifU¬]¦;¸yCÇjBG9’EâùRuN³„JšŠa‰f)Ôù_Ûur0óÑ«Z]Žý}V…núÖ&Jº8é¼[6Ãc^·3m£Ú%\¼õ?N꽎rÂ#Q%òÆhõpØ¢™³p™ôŠaï'r¶d„cÕ›Âð£nòžRÀWŒó[í>Èxß$M–Z-WeT´}ÍÆ«Èɹԟ‘ ZážúDÏ:‹§<†ÐÔå +æi£Õi|-žEʸ*ð’O—ÁñxÜqµk+´;?,{ªí£„ŠèÇM©×|‹«ØzdÜÜ)sLn0XŒ$Ú¤ûß­¬ÆЫêõ1íñAós_Áˆ2«Ú?‹‡ÑCãzýLÅoõŒó[C­Ù%:ø‰(ñ"¤W‹"’ñónb _%RÃÔ¡N5>4™ü.üÑØÍåJ˜Šs}Oâù¾½mËMSKÛAÓNRV¤¤Èµ"J½qs±Ôþt)³;^©»Â1©0Ø™´¿xCoØaâ¼Wpôg¯/Ôþ7«×h>åég–@ÕMªMTÚÔujm˜6Œ"äUÃvI­Œ²ë=K¥" RÆL~&£Þ„oײÖ×eSËR…ü›6ÃÊ×mj×*‹3´¦£ejµgsÆêºSU“„ucÛb¤tº·.)Àëiên‚×'à)ÖÃ婪=Õ£®:ï_TWqøú‘¯“fÈx˜ƒÍA°¥æ™MÀ_5=S6$¬aµ}lªoÈöô ›ûZù5w#â3BÑïj`ò­ EÆÚâ×õAú<doª›|±?¯ÚrWP~,\ xõz¢™ág¬nþ¤ùaÿ²ÔnN‹¼[.Ä/jü ÿÙŒ¾SŽ¥¬4¶‹–}N¨KÖØ¿EVyp,]ú=ÿÕ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢™b÷Gš0y–Ù%Ê· ® Uiæ]…K=©*£sDŒdÔ.‰Šk—EYnó=ž³ÆÕ1ŒkÆ6‘Œlg»ð#xë{ a. {5xÇSÉe„±¸)Í^:îZ\ÜuX ÑÑeã®å¡¥ÍÇUT³Æ•M,#¬BxÉ­nya<,[=Íé dÎS&cÅ5☼Ës4^ÅUQÁÌ¢¦2ŠHÆ5ûÃÙ)*=CÊ’Ùä“•VkÔ÷¬<}‘¾ªmòÄþ¼hAÉ]@áÕÔ¼ÌàI[JÕ$M9Hr¤lÛ©ƒ€¡ 0+Îøiú•õ0àRÅ»œ[âýjzXZ+Tªks€™sPÀ²~ôÚš««ª¶¡µJ[º›š§'âDs cΜ׃{‹j€ÿÖ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢jp‘fœ‘"…MGŽlSƒˆ|0Ÿæ]nŒ¢ð í.ZmTo,²¨*£„ýh‡9._¿™phèrü-xÂ6Û©¶Äòdaǵ†© ,“ªªg´¢¦,söiÈÁW.övœçKsðn ê¼¥,!'la ž6%.OŒcÆö¹AY*hujIºš>œˆÊr4WxUUQË—ÎDQCWPæ¹x·Ïß ÎPÉ°×_Uº¾UÚ8;¶í£Ù«»7vÈŠ>m&ÆE±0’b{ÍÝ7ÔÜó;¦r\P‡Ð°Ý,/²1‚Ö' •«UÖ9/GR4Í`édŽÖo©«‚žú×—Ûc|½éø# Ê0šhËß‚í|%¡vá¥lM„Õ1SËÖñ°Mß®å»tÝ¢àÇPè\¿ E;"†#”#,mF:¡Vïßm¶0—hvdhslæ˜ÏBH¨tÈG¨{…pžšKLò†/rw+¤‘Û6-c¹>2Oqé}6Íaò¶2¬^í7ˆK´ÕtÝTŠr½M4·N/—”Ê2Õž0ÙÀÇò|d’ãÒù&,rFÏ!-ÃIJYY²A¥Óâîxû¯és +ºN]>Ž££ã¡ÏÇ_•ã´Ô¹ìôÖ†U’ÈÊó&3o]ɯàe^6ãòÀé9tú?ûŽ‡7~WÛGX|­mDÕ£‰á@W¡Š|U ¨DÔ9Éò²^?¹âyRY*B]¼lUC“ãq—ÍbV5#mó«AƽI™fwj®¹Nbê3ž·ß˜¢®VåS’üzù/ç·–䣬)ALGÕõÄ\ w«¹nÝ7É­yC!rþ‡„QˆåË°„cªïwï¶ÛPÁ={FÇÈT”½7\ÆL«4³„L«R«ªV˜D"„žM]ó;’¹B6ŒÑ„ahF=ïSÞdØKÙ¤¬}l• !ªV¯Í&„a”Õ)îÎ!¯~LòŸåc.èB\ðêµýlHáuÙ¼é댒žŒ–®â¡\ÅÉ/TÝ•_L3ܼK„Ô̾1k㣨F7Ùo]™TpmJÔì)…—!(’õìSÙHó‘5#MRº1Ô9;2\ÜÈ{ãÌ>5#ÕmÕ½V3 ã¨ÜLÕ˨<}‘¾ªmòÄþ¼hAÉ]@ãÔF/2¸¥kt>¬Jæ—fžà¹·B”»ÙþÜnð›j`W‘±hzMZ¶E45/ó–?bA“‹«¡‚Õ*zÜØbÍæé6nMB$‘u +B—‚Qž}$[:rÙ¨‚ ÿ׿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢~je{3wÙïÅE9óÉ—àĪ®Óo{1’´ÊèÄ1ŠbÍȦ/v8Ãäê’ó9dñM÷h³kI?º].§šQCêúezmujjíAà:‡ÔüWºy¥‡3–jþüeáãVù>òãÍ YÑÒ”£::ÑÉ6hÙÓ—‘±…!Ž‰—ºEŠªJi%}>Tÿ‚ ÜE©ÕŒØmðêÕn»Í-*ùõVññªmed’ +¼³øXZ µ9:àíà]†Oê9&R‘ÛŸ=#æ)Ïý–¦è)Àc$…9áW®¿ÍâyS 4ßYãçrÎÐ춬ŸokñÏiåZÁ¤ÅƒŠycªEJ–lj€B¢DÔ¾C¸o‰Àá ^,aG4×´g„an¬Ñ“¾Ùb¤ÍüÞÆ‹£§ì–„J®ª–‚M9IÝVçJ<ï¯õÛ_¿†|Ë™¼¡²…yéÏVå¼# 5æ„-kíÚ³5(BY/ö¯SI·ä"ì¾™†³]WoZ¨í:‘Ig:¤*/qÛ`$veME7Ÿz +y&1žyªõF]Vùûÿ#•#tão¦ «æ’AJÚ:£EWt³Úmʼ<’b!³SŸÂ¹MPÆäjPÂÂHwªç¿™Ûnß;–oˆž0‡‹Ñò4ksͳU©Æz¸ÉS•dd +O:ò¬áËpuî…8i²Íí„cóåöÂìÞÚÅk%Q¢Ï +bÒÛ Øñžj¨Ž«}qP™v[ƒ‰1Önö1+b¡FkÃã_ï>ˆ/Ó¢Áþg©„éš,ŒäɪVòU³x9Í™ÕEüS–§Ô?PþälyNhOR‡zÍbÄÁ^Zq„vïk~eØW6k0Í“½[¦jwQ/dÚšçsî2•Q÷±c•g–ymô/óõz"¹É—–{¶f,£ +b³d‹R›KQˆŸW‘Ô ÄÌÔú£Ífgè^/nâ\ ĸ‰wçWPWe9ÏØ—²¸Fï0xÿп€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢~je{3^¥å„™ˆ\§2LÞ5]B§¦b&r)˜-U]¦åLõ Ø\ÅI'W+U¿|íÚÏÌÉÒŒbu”=û§ÉÔQMB_þFp˜jÙ¥§B]Q·TÝï+oŠÅÉ +¼lò1ý'm×mZº©USH¡&™“jR ÎÚJLEÌNñIàl±\›4(É,6ú&‡‰K”!¦ãg‘åHWÔDí-HZ=DáÖYH©c#”$G‡¾³u’q«pÄ¿ŸÙþ-ˆÃÔÒÍ>¾­Z¶uÞh”+K¯qó7Äu¼Ñô“úyz.M(ša”²‘™N +®ÝLH%p®ÜQ4ÈDõ.è_¹t`QäÙãJ1©×Ëõj…õõE—Ò2Ëõ®>x0U“Ú +ÖqX@Tš§Té2rC.Bg˜íÔÌT¤ÄÕÔÏ:F0Þcù>5ä´³^Þ+zá±­£¼Óù¼u7 ×Ôüå1 MÀ·xŠ’Ó®ÑÔvš%ê4xtrruSQLôÈ]Ð`r^çŒjË|Їح®¿T|k˜üVXIçzŸ’6•RYÄ})4ƒ•& Þ¨¬3Ò†K"_©ŠÕc¨¥òõMžÂö'˜2°ØI°ø¨Íö™a«¿÷ã±î+-lš¯,ÆN„¥+djMGOdHb0ÔHÙ]Í<±N¾k14qâ#Íá}Pï˳íQñ¬Ñ©F8xi¼{vøŠzµ²«;¬i*Ž”J§U(×j,ø’‰°9ŽŽ2|D³ü1íZ8™°ó´;зÅׯÅjQ…xh|{vxÛJÂíƒVÈ«æ×@ëÆ8¾‹ö¤)Nc·Pø„9}]B_Lä)É×àŒŽWÂézºáÕÅàÆäìNŽncÚ¶£o=VLÏ7LúžJ:z™T)1JŠŽN¡/÷ùã7 &Š^=«UgÒL×m’´gh•¥AQÇ¢²M¤\j,’nJBªRᦞ~Š'÷ §“0Ù0ÚøÖóW<Ìb3eú×V*IxöFú©·Ëúð¡%u†®¯X!“8ITTÓ ¦e‘F]âi¤íÉJ™],BšŠŸäƒw„ÁKã qeÞyÈíƒØÊ_ 3ò€éÜÞÉ÷ˆã.óÎGlÆRøIŸ”NàööO¸èGwžr;`ö2—ÂLü :w·²}Ç@â8˼ó‘Û±”¾gåÓ¸=½“î:Æ]眎Ø=Œ¥ð“?(ÁíìŸqÐ8Ž2ï<ävÁìe/„™ù@tîodûŽÄq—yç#¶c)|$Ïʧp{{'Üt#Œ»Ï9°{Ká&~P;ƒÛÙ>ã qeÞyÈíƒØÊ_ 3ò€éÜÞÉ÷ˆã.óÎGlÆRøIŸ”NàööO¸èGwžr;`ö2—ÂLü :w·²}Ç@â8˼ó‘Û±”¾gåÓ¸=½“î:Æ]眎Ø=Œ¥ð“?(ÁíìŸqÐ8Ž2ï<ävÁìe/„™ù@tîodûŽÄq—yç#¶c)|$Ïʧp{{'Üt#Œ»Ï9°{Ká&~P;ƒÛÙ>ã qeÞyÈíƒØÊ_ 3ò€éÜÞÉ÷ˆã.óÎGlÆRøIŸ”NàööO¸èGwžr;`ö2—ÂLü :w·²}Ç@â8˼ó‘Û±”¾gåÓ¸=½“î:Æ]ïß9%¯ûKá&~P)éÌÞÉ÷=èG~ü÷³óÚê.PÔÊWJ¡ oÕÉŸN9ƒÛÙ>ã qeûòí~<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ?r=rÆÂ,.þmSðD”~7ÈØÐêfÁ„¾ÿÓ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ©µª†¦À¯-›«‡Ï¤ÀbÅ¡o¸p~¸O×.ÓÃ]‹W•·){Z×I„)ùê}í?$é3¨Í7f"©:"zx+'™}=;‚õ\'×Ç¥f–:2jãÐù*kFÜÂléÙ)6pªaÊ>h™0›žæ!ɺ)|ødß.ocÙpPŽ®=/&ÇF¿†_Ž‘o2ͳæKj*ÙÒ$] ë„P˜„8Ú–‰•>#MÜ­ëh†I9nuP3Æ­–2fÞHál _ùÊ.Ó§¦1X 5}i¬lùÕ<ÕëuUׇ„lS' ‰/‘ +Éæ_O× ß Š¸Xqï[—ÇÍãWÏ<§#òÆP®¥ÕÄ!rf—1|=ÐZ—N.¼c+ Ç[Ô¤£·Ì[Ù䋱P‰ºLª#¸BbþéØ ¬O&Ë$uqÚÁÂr´óâf¾ÈlÙäeê^°F¨u<Õ&çHÐï²% co‡¸E/“–119¥†¥ÞN­Ï5üO…½|ÝÄ…_V§Ä¦Ój¢Æ¼K‹e ±ó¦êtüïL°ü£K=]^~;#âc(»sšœfÚA•›Í.ÙÂdQJdn(E8{àËž—Õ#òz8l},Õ·¿¾F~ˆx¤‹&n—jvŠ¸DŠ(‚ºhBb\?~˜À«%æmiT´­¿KÖÕgÚ¤ÜéñØ(c|=Â)|œ±v­ån•[ÌôÄVe&êX\¤h‡U ˜¦XŽ>gÊÇ•0Ö¥/ËéSOz•<ßCÍ\Ÿ^‹HËœ½.TÉsýÌ£‡µŒº˜kÔ‡ËèbSÅZœ>_KsVV°jfN2&6Ÿw8¼ƒ3½O"17”Ïrþéá”QG=ïkc#úÇÏ¥EW’ÕCÕZ¿£d¡’MªUÝ™†=ò'ssáçý(µˆÃAwŠè/3zT3Ìixç’ÒŽ5jÍQ4UIMŸ L ñ¥™­­’¾hÍ¿T!±¿+{KkI9cÖ=Ô¼«âFìY‡>m9ÔÌ!;ñj8>8‹/ÊÒSÍ !³¿Ø>J.ÔѪ$W’‰u4ݤÌ^Ü>#køx¨¬žaÉ|&Á÷3y¾Ÿ*ª8ËK—o]›Ú„]¦·YN’±îŽÑ +˜—Êtôà)ø“†"†Y¦ó} ˜,T#Û}O|]¤F½©eíZ@¾zÑÒŠg^ÈôÎL0†ÅVž·ˆøeåLx·I¬¢ñ&H¦%ó3;þ`Γ vøì¼{AíVÅ•>½I‰ˆÅ6')‹ÂGë,Ôï,ß'¥•.&ÔãäbM¾‘qJÍ0§^¼V YÒ Ù$bb”íÎ{ÿXa•>óMæñÖÁ—j¿>íäk”Õ¯–Reœ Í7%ñòg3<µ2a8ÃÝB54î6ºî ³KŸí^ˆìƒÂn×ÔJMôM9L¾¨W5×Ê41n‰ûV2škw„ ‰ñ±¥,¹>ÕéñÁõ¥lðî©9z©»w,IŽ›Æ*— Ûu“>zG'á $8÷©*ÉÝ÷>~;›qÕ¸HC7× šaŒjw ³½ÅR"NÌäMK÷È`áǽf<«'q«ÂïÇsxÕ¶†òŸÔf´M.úy£¦ùNRÈĸR}ÙÞg‹0ÁÃ7ÙUq‘·šŸZûëAV<ÉQ²M#Þ&uTȽˇí~Ásƒ…¸Þ·ÉøÈæãs_ÛB4•®ÂL™ò“5Ç*þµs'ððsþV,T¥uSO fyÏZ„]7UÁÒ¯ŠtטDæn½âa_OA#ü°$Ã]sŽ´¼nk³5‚0Ó´ô ÛEfŠû B›1<Œ„P÷ùaO “y¾•êµãžO;ÐÄ–í)å³WV{,S:u’55ä}0¶~†éØeSÁBiæó}V¾§(FY$ó½>F^£j7•C:êR¬tògw/˜— Ÿ¹ð3þ”a×–ìÜ6"-ÐíÔá[¡ +êU̢ˠ݆%ûé’ÿ®wB…Ö±xÈÃcG¦­|²“,àfi¹(“9™å©“ Æèr驧pU=¬>>mw…²ÚÚáßëï5Š¢Ô#iZ’ž¦Ý&s+-ë¥Ðo‰¹£åçÌL$Ã.ÕÅÞ׳uêÙÕÞyÚ ¡š†<+t!\J¹”Xè7A±ˆSßL˜ž¹Þ +pò]^#4‹b1åcâj +^JòF:lÕw‚fë-Ú¯¦¦aÅÚØ[­QåÃcM­í±õ»Ì¢‡“U›uˆ^¦dp”:‡¸KŸ,9ÅRa¡¬V>9¸ÜÈE_%Uj<42ö'¹†W¦&í‰CµÜúaj¦gSÄÆi_•å ± Û³2íÜGë‡I…¼nb1Z¬Û4å®åó ©ú‚Ÿ{ ð§3»1IÑÓ!O2ýνR†}LZ5òFí)ý´ÈV^..‰“•,[Œ™eÛ—îO\ðÅPÃYLyB1ãØÊ”óªŽ<¯øŠTÆ9rg71Kßîc¶¦U±‹åŽ«Ñ’¨åéÒ·9UnÕÉ–1³#‹þ ¯Az”’ÄA‹·x&IE”ÐIl57#©Ø]­GI,ûw©j‡(FI¯÷¯än¶ö¡­hæ‡9N“äÚ¦í b\Xœ2¿OO–(Žê9þ‘"‹U%Éõ? Õ­w“*óÙ¯àúþmŒ]Wô̳›Mtêq&²é¸jÒ<3˜éžøä9‡stsxgIFÒ°j×Ø8µXN¤¦¤‘—D¤”Ês’6"8k$¶‡s0`É=¦l¡O4­:œ­%©áb+êU2æMÖ´É4S(h±îzd„á¤{„Ð?cà +kÓŠÕ +°ŒÎBŒ±okFX>Í>,­?ç„wØÕ&škk0SÉLÖÙ »Ö—u^!QÚiF1.[káñ ²É«dÈhað. š•å„ºØeŽy­µõÐÊÍ+)l†¨Qj”ŽKŒ›#ÍËéܸu3ô.*ÃêtüïLp•*g©«ÁïÃd_-–ÏZszBœN6—Š]™X Vê«$tŽ¢73raækGê‘ù= 8HÔÉ [{ðÚå“S,t3”Êš¦M”r™»$[¬Fˆý"B™iEzlDû;`ÈP• ª8ò«IÄ•µÔ +e ${÷;;˜bÕI"»J´û;`Û¶µ]Sl+ÊV.¤I´|kWR‹TΩpà™"$¸š}Ô8¿‚§x-ò¶:ÏǪ[ßåµ»Ìx¦o9aõ|kw™Q`Ìê55ûstÖ!ÛÀÁ9IîCGh±ç­ÜBXõË{ü±ÔßD¥uitú´»z XÄäA¤¾lt‘G2ùî'žqM²kbgÄSš2CÁïÃoŽÍãgq¥kh5ùNSÌYÓ¬š™N |˜êf|°ä7$ZÄb2²¹>yä©4'‡ƒß†ÏÎÔVµ•˜>CÕZàù·„ÝFÇÆúÀ¡ˆÍ,Þk‡ÉV”6çì„B½gléêñ,Ø÷O¥"g»¢¤’ù3¿º˜¡ûY†V6ÔÞo©ƒ‡ž0¥J;súYB‹§ÚÕôõ¨C¼q€„…I6•)·¼K—˺1jÔ³; $±‡Õ>754Ùz–°¡˜£Sì§)¨‚kK16zd¾L\¶S<ù÷t?R]ÃÔ»i&„ßTø¿'«[•…5ýKÅi$ÖßƦ§ -.²¤e+Z¢.¦˜Eš `OÔª&u}1!ž²¤ÃMMì„Lƒ}…—R;›[Þþ¦NÑ,ÎÏž:ÝÔRj£Â©ˆ³w8 _ùeËþèy%=^6|ªêUÓRãoÈÐ*×KRemgoÔ1£1*(l÷£sÃ:ÌSÜp³ikñ±k  ñÖç8ÓQ…¢’b)êps%Må&ѺåÄIkFÃP½‘’8ÜQžÐGqu·ls…Q´êW%žØãŒÝ&‘ësŸÀÈÒ/(Zž¥›Íô®Ë5éÅ`åCSö:ñ„iä\§)Qa´IBëgºá¨2§šÓMòz2ÓŒhRóþìÍ 5«-.¨¥ä%is@F@¬»»ËºEWP˜d!žԪݲ¯4*Í.OµzI’ßùêaµ«Jh9Öi™ÆÔ)$mµg’×Z—tå‹’›yp›ÄNŠ¤?‡÷˜Æ„ögW£š[½•ª•½Ke.ž'$ßdL¤á¢ù»b&±?ò³ UpÑ–IüßJít'žO;Ñäd_üºÙ·Ñ"c.{ç›Íô.W§Ó“Îô³ˆ×ORíµ(ËíºQä5Ag/FžIÊoŸa´IBëzLü5Ï ÔÓr…XAà“j²ÒêŠ^BV—4d +Ë»¼»¤Upáe †B‰è1TW¡‰ÄFÚH[-ï®^ÿWS×õ5.æÓ¹›M¬ºn´…&ÎtÍ|r‡Ã¹º9¼2iK£>1Žxün­SG«¯©–m­y<{$¨)øò>rñÂî[´;Œ"ïëp0ó¹#%› F&|)JTÖ«XÄSõ[J{c®šÎ™¶Q•8y‡}4N‰ðî`ß6è.ÖžËTg„YÍñ¯Ï³Ñü4±‹?”)BY™¼ZÅË3p“C+ºK*µöxå¼›Z]uÚÞÐ*Ê?¸±ÉßܺOt68YïNíf"NîÏ—ÍR¥O>OÕlêu›‡‡ss \Ÿ[<ö9V–I/:›œ—­£j[B-3O²‘li«Ê(åöÊ|™˘büj0éÏ ¹C¼ƒ¨öjK5#g†Nó„’S‰Ÿ°!øcWˆ×÷ Vq¦EÅ\ÞÓj݉3Žr¡£aòpYd®“w¹sÝ txÚÓ׫q±õQ ÔÎ-Uɪ¦¬[<ع0Ë¡ÕK/áâpïÞ +Ú¨ñ´¡ÖãckY4Í¡2…]:~zIJR˜k9|t•7§3³béIÿd^rulD{ݲ·m¦ÈÔ‰=³…‡n¬Ö\øÆbWWR1ò3ß&7€-a©IÿdWyB¾&^÷l­)JšÕk(Š~£‹iOluÓYÓ6Ê2§0黎Ñ>ÌæÝDaܬËñœ™ª?,ò¿1ºúÃe»¦â¤½ËÖG;h¨Ó«v´¬zѹR¦äÒW3{šw0ôîpÃJ7ky*iæ–XÛÂïÃlY–üÉõÇÎØOðÐÆÄÉ2p¸™óÏ x=øxÞüÌ*ý “ðÈãØGGN/¥NM-h|¾† oYã:z¼K6=ÓéH™îÀ¨©$¶Lïîƒæ(~Öa°­ -H|¾†« |¾–£Pª¦ÖöÀfæ1oTÒ%1“í*9kô—†,ô£+"á1ÏÌì2"L +îåƒsçp`ÏZ0lðôa< X²…#xÒ¤ViµºÜ©oEFæeÎð0ñŠåhC+Xæ,ùÚÅ‹µ¦‹fb*±½‚7\·›`Ì/tÚpݵô}Þ‘ýÈØbf´³Çí­v0ŒÔa¶3ö3gšª.¬ò¨ÇÍÁoŽ™»“9'ÓŒN­žiaöï[?”©ÂIjÇf¶Ì9NIUY1[µ <}5(Ǿpš+c7ð%â\ðeóQãkYRki¸ê³#QUS:ÞÑÎ06äò"—xiŸ\}#÷éžñ¬DŸQãk? ?ÕtÜuYÉ!­‘¶rÆÂ,.þmSðD”~7ÈØÐêfÁ„¾ÿÕ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ?B¢©u±5¡Ð²“"ª*eò,ç¢o•9)ÎÑÓe4Û­‡Ÿs¿&ö2°Øœ­^/ ›k 7³ËFV}I8V’ ZÉé`‘XÄEe †wÂ~·~þ÷¦3³JÄÑWã+XkDZ”5GPÔ ¶.åy%·5_(üê¢Ñ=å¹0ÓÌ'ø f”ÑWã+8F’¬3ˆS?4iPÉO®…Cùæ\ɱ=gKOt3LÚÉ+y¥T‡)Ëx¦-ÓbÌÊ•‡,ZÌY¤t“Wî’t»§W“Q3÷Z7Dˆ6!ñõ²gc±Yç»YÀä’Üz_-•Y¤¥›CÔ-ò†®_:p¹˜©xøElš$AšGÜó0înšv:¦y,`0ù'»xÙµ°Šb"ÁˆºíÑôÂ…Ï"Ž9ÔXû§~s UjÝ•Éøl´ìÄ ,b¢„ŒfœD£&©ùi0&5õ[š9áñÕæç²Ðï^½š¹0Q…HÇKuAÒ•G?5Z¸ŒI(|u²‹Æ1p¡0ñV;Žðæà ¢yÙT°ögAgIˆjåÃY @¨Ê«€–e‚”l\:ñeBññKˆt.\Üô.%Û$Ø‹³%ÂÙ”,ÚÙRÂÍi´«ªÒ›‹`±xlÙª¡ŽB&åºÄ\‡Üûò øj–ZÄËš–N:Ûqýš8Úé +=ƒ„’|Õ›R¢¹¯áÛs‘r+½öâ_ÞÆUZ÷cRÂýK/wÚôJY£¥lÌÔK5‘+­kA¦2†>–̾{øwôïzØ£]ç4·ÖŽÕ+jj’H”´iŠ™HRçI{š+7¥GÈEÌUS“&jw3Á*9ˆ›Fhá¢MÑ4óôî…ªµn½K fÀ¯¬‚byíf¤2Ì’iRDµl±WPå>¸³[1]Í530s;f ËÃW³ƒ¿×!Z¤fè ™´“L…0À©Rí̺؂µ¢'‰8]F¼j”žO’ù›µÊ7åo©žu”&`¹5{©—Õ(‹9Öº=zV{Ên”‘Æ*F9Èd^9\þ¸šy÷ïƒj¬©iY±è‹ qCÏQ³rEW\.º.Ð1Ìr“pÁTøœ;é÷>ôU±wãØ჌8ö½Tm¨Vû¨ä¡KµÄÞ=dW9k†Ü2\S0‡S׆.Ü{ +Ø8Çk’‰$Vä*i–éJ[¥/b0hU³a^ØæÍ(×”« K™d¤¤žÉ:29Ò¾àù„!ÔM3îd!HªÜ¡NÌjþǦ²étÙ8dHÇU$]BÝ3(¶)NÅ_Üîn‡!pÆÂ8»ËÆæ²¾õ/Ç¥¬[µ-jL£Íá&ÒlVÜÔTÇ*J6PäÆHøi©Øþä[Áâí7—ySžKqÞñ³ØÂ’6m*wN;·²9„¡ÚG™ÃLTjâO˜Ø‡¹“å˜÷7½úçÝ$Rb¬ÕÔÂfãÚÜQ¶bé ÈUGt‘£VG»B˜÷Ó|¢( ²»ßin_\á]ç|q|׎"Û”½‘ÌA·³´WpÐƧ_L9u†¡÷B<ƹƒ¹ü”ºwñÄkÇr$k©Ôl*HãîÂëjìžÂŒu$àîòLd² +iྚ*>ç­òÆ}:úšÊ¸{½ ØÜ£ŠJ±fêIUL[ϨS¤Ü§OsE"o‡ÁL‚Šõ®£ ƒ·ÖJ®¨dkš]å>èÅ*Š7!QW´¹OyTŸ+8P­f]\-Ú­8Ê`”û6³Ê"y2µÀpª +é(}îþèšgÝ4÷±kLª4Xæ6ϧ¡¬À´{W +­çeŽe“—L÷ðïèÞ·¾™j8vFJ%8•2tu ̱ù‹wI¬ =K2jR¼¬Wg6iQS’Ãé—L•4L +ðêdÊ,{Þ™!Ñ91OÖH\O’ µ«]ƒ…Ãëyº²’´ÈÊჄ“i‚¾\ØÆ=ó8Q EQ&ÍЗq44xb©kÞUª˜+Ô„xô·­yH<ªÒn¨‰ ,Gî1Lr^E4NÂnzyâŒ5{LÏå6jpƒ# )gfRcšÂy=PQÒÔD¨Bºt³‚¨cß1lt ssìÎ2e¬ÅÄá³7Ä–U’9È®ex'Éñq,k™—ûËâÝÙUjwlë6£vLDB¸1]º>˜P¹äQ‡:‹tïÎ`¯”)Ù‹©{ š§œSHå µ¶raÛ4ÓQlRÇçëb歘ؚm†]]YLÄJW+G Òl­œli–1wÀUc©Úýl„U1 ZXfù¢)'”Ô…XñÒ‰’Ò™krǾR`‘<ýÏO0cbf»; †ÊÈC–¦UF9†¤0¬ê:‰U3Y&qÍ‘L¦>)NÞýûûŸ~2tÌ=JAæÏTb#‘š ‘xw‹–{÷0î\¹ò@Ó$¥é+Z¢/¥*«<©Ó”ÌíGø¾˜Xëçá§s†3+b.×a¤š øjNªžyDÊO)›Øw—xV&s„dTDè;÷óˉ|cB­™U%‹í´šB {NOSê7BbÕâ™s©8h¦æ³s4Ô>è«w*¹Gž¤"ÈÓ,Í%ùªWJw ×L·´/¨L1j•]lê’}NhyO¸¤©˜WŠë±fƒe ‘Žr铈)©Rëz-[ѵBUeá‘_ž@ù¤•üÂ)Ÿ‡!ÓÏ"Éß7ãÓÉÃVÊÅÆaîúìú‹œg++UUnš­0ù&7òF­Ý.<ø‡Ïf®K‡{¨‹9Öº=zV{É)#ŒTŒsȼr¹ýq4óîß,ÕYRÒm›4±•©š:z‘¨]òRNŸ#ù›¸!!ψžbÙ—øc&¾/7Æ ^=­Ô•«+±=Yh]oÁÉ5ÞëpÉ.aï:×8xƒÚ +øfx‰§ÛÀ¶…`[¨5jFÈÞì&xÅÓ3«Ò»jYå ò’¢ã)׊"wmYHÇ2F>lNÿ µ†˜¡JÍÞÇ_ˆ¥áuÈŒç)óË7È$Ü'¶&ôT!î(A•§as8ñï|hªúѵYÆÖËD´†n² ºB,ËòLø„!òo“å§9œx÷²T$ò:°ª*THͥŠŠe1ñJvx×ïî}ø·§^¥„ÕÆöÇ£lj6Ð'ªf®Ö©&§*m¯*,EÖ¸L;—/Çß8[Øi–¨á;®7³ÈѵrÆÂ,.þmSðD”~7ÈØÐêfÁ„¾ÿÖ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔε]OÑîŒÍwàhæWš§G1š§:™FP +wÖö5­¨K=õ…µƒÛ<\š€½•Gh*Œï-`[ŒLö¶RžfzÕæ¸ÍÁLñ%˜ +s­TS®æ°®ýåÊ^ïÀÌd0‚Œ×pŒ óEeyÀ-pU–Æ_ªåãªàu™­W/W,f¸ìhîlgö/p2@ó¨Íp{u6Ï.[«½€Ëb÷-”f¸nf°*¥-å{$o¬éKi—%›> Uu 2\Ìýê†UyŽ¨e3?0–Ê3Ü Yú(ëW{?½Fpye‰ÕÙvÈËg´£yAn+Taiî\«º£ ‚ܺ¦YÒæ^E}@XÒ{(Íp/s5L#uw°.BpS{®îf°±Öý Ü„¶~kš@³¨ØSO©ëKoÙw#fíÈu–UU +Dˆ‘ |Ç9¢R~Ó«ûGì?°iBñS¬Ç{{Ù¿ÇŸøeŸJ.h˜üò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍþ8ÿÃ,úPÑò^/¸ÛÞÍËù°)ÿ†Yô£ÉiYäعx¾ç ê›G¤ÜLË,•Qr(ñÑŠrÈ69 LcüI°XY²ÃÉÇ}««‹–1ãsAÛ +—öIÏ‘é\´&$ÄK—ÞÔbêˆyÅŒ|³G‡)o4S”žæ µVI¥0µ%ŒZ৾ɣTãcUñgªî"Œ©Â¶RÓÕ Ø¤5㦱õÏ gPhëÂø—Ôúé÷õ5TÆSuá§#çth÷j7"N¹fLC¤|<ÑB^=þô!®Œþo¥WÖkIçzŽÍ¦ßKIWH¼tuHÆpí›”Þ¶ŽL‚—>œÃ´¶£'égЛKV7ÐÐÙÔÒŠÏÚ³S<9’‹of)ö“¨Àêç»Ïup’ËN•¾Õ釧­=J·ƒÞ†ÆÊ£èÚº¦¥"§‰iRh:yƒ²•DÛºk(LLýÏ@]«4ÒÕ¼^ˆ1(aæšœ/½èm{ÞZtÄå–AÕ )‘È:ušÆK…éü®wŠ\7({‡ÃÂ8ˆ|¿u‹Ê¸˜Ë‡—åô’–›)KÚ£˜×«ÔêÉÇ25í®Þê"C¤b)á +a€„pðù}1ñª«8©æ}×ÈÉZøûlÃCåGÈv6Gx §/ÿÈ•$µ8|¾–Â5tu#òzþ%*šÙ˜Bªu‹ÅÚF¥™1\dçÃ;…–S¶š.¤mR/¡¯£ 58üž–õ¦XVcªvrITœµX‰±Aî¨LBæ†2yÄPZ¯?tΡC¤ëì—c5¥jåë'Ô¹­"W ¼Zʶ +7Ìu:w7¾ðdéu0y¦*5úûû%Ùåe +6RQ*Ö£y$«ÆÑñpæOærÊdί†¥Ñ‹?ÔxÚ½O¡­ÆÇÜIçÛg©•!ØÙàp2Œ¼éßä q¡õ.6®MˆÓVãcYõ5VZ bó´I6wŸH TM¤näé“|O¼µ¡NXuvŇƒ¥<Ðë샒t¼K¨ÆÌ^Ê-&º7ï;\¤*ªbêgáøw=ÈÓÖ­Ogl[œ{õöC{ÔÒ“ÕÕZ摃˜/O‘ U“Ó1vVÍ@ê9y WŽÐ) ©½!ëùÚpËŸÍcW©£­N?oô7Qhº‚g/(溒“Á|dÐ]4HBŸ0ûŸkÞëM÷fRŽ¦i +^AêÆ]˨Ö+¬¡´Ô:ˆ’ùÆxYŸB{ÁŠÍin©}[V’‘XÎ[A¸k‘ mâ6%ľìXãgÂB¥çúümN'é|Î:Ÿ)¨kFÖlÙÑgÊŽS­eEl¿§’\úKâÝ ²Â,œM8Ïô¨éÊŠ²Œ”J¢}L®V$Qà +Š·V¹ˆrêv½jJšÙRú”¾w¥Žl¡…`þš¬U>—r´{¥ÓˆT¨‘ºË\:d%ÿèÉÅ×îX›Cê2ùÞ˜½î’«¨©Yé©ÓçÒ’̤¢Ü•Úà|3‘±O0è|³tº=„ýÉ÷NP<>3{Ÿ¹Hû.F hÖ£àfŠ­ÍG3DÑÀ Ñ4p4MÍG3DÑÀ Ñ4p~†hÁnMØNdêR奆üO¯óbßX˜òÆlhu3@Äd?ÿп€<5G’õ=ƒ[–¯RÎkÿœ_a¬/a!y¡å‡¥‹ˆšÎ¹#ªèäâîwš~,ŽN.fŸ‹£“‹™§âÀhäâæiø°98¹š~,ŽN.fŸ‹ÉéK"òM 9¥‡2Í]¥”„f³’~fŠ)?çü§å +’Á´ä™&š.p /} –?TãcHþe¨o¡·¿f"3¨5²ÂøŽ6>Ñú3¶‰@D²Xª«i'˜f¿“£“`ÿaˆs†]üßJŒOÕ+Içz]–8MQi*¨R»×b=Ãá™»†È\?ÒqRÚŒžw¥w6Ž´þo¡·)÷ ÉMÛLƒcb61Z¶*…Ð2ÌãpÖ'ÝgÍJiiÓ¿Ú½0cQêU×à÷£²,@[YÅšAÏFËK™:„Vâœ}=íAˆªÊÏÁCGJ?'¥õY+ùD*º¾ íT­@„{xã&ª…GsYLkäÜü†*MkxHF5zûÌwæZšúcöbÃÉ¥îW©ÒŽŸ¯³ÄØ’Vs h6›V'2šÆ+XØs'€éd7ÌnÖ¦~€»¿QãjÄÔ´•¸Øú¨Š&µW,bT¨)K‘sb¸;ƒßËðôÔð¨Õú—W)ÒÑÖãcjÙ5ÂÖ‹Ê<}&’«IJÅm ³t·7‡OA1—ŒÆT·Wl70ù3“¤·_dw¹e 9Î5ºŠ&éá”Ë©Š©¼3ðÆšªM®Ø74°’K¾ÈïbiÂpv£Y±pl3Î1‡~Î÷®™ÑkŸK˜3#J:6°¨V…:ÜloýœµV«-&‚'YÊlNõ©›1¹/‘2ýú‚Ôpqš|¬þu ªñ³ÈØg‡Hµ¥¶6e?W +}ãæ6™O”BÀP‡ÓðÕäŒgšmôA‰ÈóBjrI¸f¿ËÅ…­Âu.¥²N21Nż\tIW.‚Î>"×;<;å ÚS¡rIZ¬UXW«<Ðê†[üÖñln;kn¥Ÿë­PÙ3:¤‡^X…à»ÉŽ›7à>ècÒ«›'œ»Ê”9´‘‡“ŽûÙT@£TEX¤[¥–I'@¦Q²ÇIRþ­X™‡O@]šÍU^]$ô£öïD3kHÚªY“é&qè¦+×ÇtBî'ÐÄÐxhݱÄÒ³rXïÄ-ó¦;ð X¸Yw %Üy«âÖ™·Ví˪¢©¼ŽrR”ºY(¯þ6˜jqŽ‹Ïiqq„º_1ÉãWPéS[*3¢kvG•â^Ò%ÌKžçlihÍE½— O|Lɪ:y´¡š¦XÏ]4ñ ~áÅìšÔfú”¾w¥°üÏ¿˜ê“ùñgcº–ù/ë2ùßv‹ëØ«ª‚»s-.ö0­Ú–,B™C‹ùKƒ“L‡O4‰ßiÏÜ­MKºe±ƒ'Ælæ’Ò€¤ µ<„[Æ"‚ž›j›Ö,1PRõÓã"[×5zššj 9ñp—W…Ùej»SÕœS÷á·H<éx÷+æ‘ãÞmOVqOß†Ý tŒ¼{Ži=æÔõgýømÒHËǸæ‘ãÞmOVqOß†Ý tŒ¼{Ži=æÔõgýømÒHËǸæ‘ãÞmOVqOß†Ý tŒ¼{Ži=æÔõgýømÒHËǸæ‘ãÞmOVqOß†Ý tŒ¼{Ži=ïª*¾*ûðÛ¤ÔeïñØFƒdIF9ˆp£WIj&²Z·NMSuµ5d•á2ÔÒ> “©K––ñ>¿Í‹}bcAÊ?±¡ÔÍÿÑ¿€6ÝI:Ö•‰•š~mR´j»Ç¤-ãa C(~¡|4Y沌Ù%»‰¾+,ÕÕë¸ÕÔù€ÿçœ9¬Ðø½°ÞÕtIJÆÛ÷7ŸNÆý™}K’òAw ñÒ—zïLáü.É·};öeõ.KÉ ñÒ—yÓ8 ²mÇŸNÆý™}K’ò@èv&óéßïÇ‘ªI†³T††gO0iŽVh‘S¼sÝ"z¾¦xµÙRêm$,²™k¬ +Q·cŒó-ɲ…®Åò)|›¦a/’ýÂnc*5˜°ÂC{qµ§#ØIÈL ÞëéÐM¸‡ÝÞýÌÍi˜ZEØa`ù¤!ÚÎ9©bTäÝ7#Eœ”ÇÝOsC€\ýðZ«ŠŠªxX6µic4~ì²1%;–îR’Ë ©‰Øé¨ÿv2ðÜ¥xö1q<› ¸ö·U%EAЬu¾5&-¯^1SÓ1û3Lóû±¤dP¥gÔ•9”ºóÄovAfäh¢¸‡ÎE3â—44ÎBµ+i¸ÖR¦muóäÐA¸‡ÝÞýÂ\Ðá˜4†ŒØÜn¼lƒ&ý\²<ƒþ§¿r憟 4†‰yšlÝâë¸V1•YC¨¡µÁù/O»Åú\¥®= ù.ãÚÊ”¥%DG% +×&f™Žb¥Œunâùê(¡Æ6'™ø\4%iÕ­žSö‚ŠÎG•ÎNkÍÕ*‡ITOÙéç\¡‹Œ8ö)Å`a[l +*Ï)û>At`ãÊÛ(6#… ¡ÕUc÷ë)ˆs…|\cDZæ +<{bÐêû¤ë—¥’–‹¼òî—AeUBv;u¿îž:0ãØ·_ñíkû_S»R—$ZIÄ(ž›$c¤CÃO?Ý„øèÇcÊCkVž¦ãjXÇ0òJå‹„ðÖHÆ>q<=1F‘•¡ͩé?Ëå¿t>ã¸àvÌüÌÌûãÝ"Ôi5ÇìÑ’n»7%¾“„Κ…½rñ&ÅbcE\4&a6¾f{7fªK!N˜‡LÄ1M®óOÎT¼§qìjêr\#7²Ü]3 îUó6÷”P‹¼SæÄ:dÃ&ù¡™Ø Y11ƒ2l$#ǵŒüïT_—k 7ì|›l“³É±.{Œ<1•/)Æ{Órd&ãÚ̆Hªé˜¹¦-Óc3'–í*ž§£éHæq1mðµ.)b×Iá©ž’Ùàš‹“•˜nÞãÉBµ+Åq|Lœ‡MÍaæÐ0•®äCÐU/×8ØòŒÎoŸºŽ³¨™¹U¹ÌíBD”:G¹ªw=¯øA©šHO^0› þ+l¶wŽßsÕºA‘̤ÙéÞÅÓDÙlï¾ç«t̤ÙéÞi¢jU³šŸ°M¾ç‹t‚çGÉ6¸z÷½…Lº¢üÙdæ§ívûž-ÒpuoÞò[Y²ÉÎ;}ÏVé¸`¥{¶;ÞÆ{,œã·Üõn#‚–îØï!=ß»-ã·Üõn9”›=;Þi¢l¶wŽßsÕº@æRlôï4Ñn +B¥—s9‚ÒÏš®Q!ˆ£¥ŽCTÿ,+ᥖžhC_µ]Ÿ¶§ñU/ü*€dá>³Æו˜øeÉ԰奆üO¯óbßX˜òÆlhu3@Äd?ÿÒ¿€15¹êõ,Þ¿ùÁ5öÂþ\ðòÃÒÅÇFÒGÉêuÈR”ЄsiïþVPÚBÑþ7õÀ¯:1Ò˜o³!÷·3y†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.ói GøßÔ¼èÃ¥0ßfCî3n9†#쿧.÷æÒV‹ìàg¯¤ðÑý‡ÜfÜ÷£çð>—µò>±úî1²îÝÑ3›·Lë,ª±O +’i&LC˜çQ<Â&Çá£ÕRq˜èÙãö¥íc±–Ä{RUFêdŒb(™¯Åàœ{ +|â3Ce¸ï¯–XGËérwÍUSÈTS”Ñ]¨K¥€Œw†DÈ‘r‰ˆéÊ· ÃPæÝ4ŸŠ~—s4vG×z›nTŸ$òÂÿc+Ûš¡¡kðL#¡ÖlÙ¤NŽâ’p±±c›)žu5s´Æ/'òm,ET›To6«Æ?bŽ Œ~>zã$Ð׫¿ ñE†hꎺ£¢&­N›‘I]KŒ³$›ÞH¸åÊu‘P—0ªc>×½ðÆ]y)bkB”ÒÚ×ך1ï_ÄÆ¥V­ +©45FÝøm·íµ÷Œ«šFš®Ô§ÚAË=r›µRjüˆ#åDK«›ž©ˆ§fqç'B2ÍcÃTa¶Œu^úúžcuÂî3êÜÍT½gí#Øõ½ï9'æaø¢“ùÞÁ®Uêm9'­Î¡ëI!¨èס5ÁUá©åŒà^$–2Ü in ’ï:ÁncJ ¹ V£$@Ï •äŒ òÐ/y•îk”ÍwïT2½ÌuC)™ø*Ë„bx-FHÀ $ ®HF@4‰<#8Æ2Æ IDËQNWžàe]„AVxENHPË–ˆá:8À B&¸ÕTáp á`F@¢ +€©~¹ÆÇ“üfh›üÆ”ÿÍÇú÷CW/æb+ •Ø@¹•-ºÔ$¬ÅZ]ÃFårÙÃ¥õÁ,;ÇÉ£ˆ±ÉߦKÇ÷#cɸHÏNüzZÎRÄdžÜw›ž¹­V‰BŽu²J¡15ÐÊ]¾E—±«³Ão6 ­³I6éUš…"I‘4Ë­‘¦ºDúÝÈ0~ч}ùX­Æ]Í“o5Ô A)S³›1$es_›¹“r_Ø3ÛÜÁúA\y…­÷Û·­ô­n2îmšúÒê[O|›ú–PïE<4Kp‰¤‰;$L2]Á`4][o·Ó­b±ŸcbŒÚ°‹”Ð1ŒÒÇܪy¡4“ó0üQIüï?àÈ _*Õš0÷6œ,.çÒkIt€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€k4€¿=>åo=æfy¿ÌkOüÚ¯t4eú¬xØϯ ÊÃnÃ`ûMA7U}š"ºe:J<•*‰˜·Èbd æ †mMv2Nî_;Ñxáj6J—³—ªjŸZ꨷°ê(lõ¢k„ðÐ>g eR—4Z¸FÒIòúYÞ9XZe µXÅ*ïšÂ=nSi¨Ý4Nîw‰­õý<Ù|Y»[*5t5ªøô}ù_-¦ŸQåifQíÍyÒož½5ß[l›cß9þYzàP¥—?ŽÝ—+UÓV¥âÏÛng¡¯lÀ¦Šü¿Áüև׌loT|‹˜v¯jRþ€y€–òÀÄT³Œ¹/, å‡|O¯óbßXA壚í¦mLÒ1ÿÔ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šðêõÂ^¥öôŠyjº“© šœ‰¯' É#«×!NẈ”Æêpz¦ëŠ°óZ?2ŒT/*Uz•÷Â{ó¯%…PÙÍÈÇÁøñï=Êûa=ù×’‡Â¨lfãàüx÷¿=Ú÷a=ý×’ŠþCd{7)èñï=Ú÷a=ý×’‡Â¨lfã cǼô;«î<„÷ç^J<⨧°Åä9®ßF÷ç¡ß^ñì'¿:òQj?ŠŽœ~ÃÈrM¾ï/C¶½ãØOuä£ß„þ(önQðoŽ"ðÕü‡u j~×p\áß’Šcø©aô{7ã=§¡Ýh\yÎù(¹SñUÂ1êfåRþ)øÛì³c¾bêÆÏå]¾‘–ŠQ5š•œ÷µNCðÐO°Ø¿ÅC,ðê#+É1’;76Ôé¥cǸæ­JÅIý›íIs)ªÝR)sî¡°ÍÕý¡MQn®23BÜzɇ³®¦³O[nÆ°ZQÂM[¦eP×JRð…Ú³èà·J]nqÒP{ˆe~ù‘ÔÎ7|sêœÿÓ˜Fñ1ÒF1léË©ºÅµÀÿÑ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šñÔÔJò:4.©ù× Q¬ë†Hθd¬ë†Hθd¬ë†Hθd¬ë†HÍ@Õ¹lýê{CÌ/ïXzôëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°X¬Öëu€:À`°ØaM,Æ YR-ªöY*ÆÃ9uo&©K{Tš¿ÇŒŒ=l‘QwmºÌP¤UÑÝj;\źCj¥‡‡©öÛáÅìN3Iâãȱ&e^§[¬0áL!g—Xx`°Xà^züê†H1ëÀÿÒ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šñê‹q‹ÖÖ«ê$)Ii×DPí♹z¶¢E)•ÕIºGP÷5 «©Õ7P¢õ=jc8Sè‰YßÔÝ—— Ÿ@Öð{eÞÓôõ./÷Óѳ¾!¨9»/.­àö˼éê\_梨%g|CPsv^\[Áí—yÓÔ¸¿ßODJÎø† æ켸:·ƒÛ.ó§©q¾žˆ•ñ AÍÙypt o¶]çORâÿ}=+;⃛²òàèÞl»Îž¥Åþúz"VwÄ57eåÁÐ5¼Ùw=K‹ýôôD¬ïˆjnË˃ kx=²ï:z—ûëóWò"v{ûDAÍ™yp®OÅ;_½/Ò—ïÊ'å©8¾æú <Úte¡ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¼p¾ä!Ó‡1ž=îØoS L»{Aw îB=8ttû;a½\+Áù·´p¾ä#ÓŠz6}°ÞóœÀÛÚ¸ŸréÅpäúïvÃy¦6õƒî'Ü„zqçGϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í+óRÝ`õ>Ñ>ä!Ó„¼Ÿ?z°Þ¦Z÷d^©kW33Ö‰ªšePéêê-¨Bžþ§€}^Ècסch²%žíà)TÿÓ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šõjÚ¦Æ/Ý]MMQLd„^Ú/Þ¸÷$k:á’³® k:á’³® k:á’³® k:á’³öä$„EŠ-˯fõ÷Î ¯°Öð°„&‡––>2ÏÉêuÉUÍÀBLœ.’ë$‰Î’71”)o‘’Hõè6ºJ>xú—‹øÅùnŒ\ÓS›ë‘õj\9åúÜ;Ÿ,=zÚcXi®õ½» +º½w4Nuoö4ǺL¿]säÝ­j4ó}j×—~§ÊéªÌU»„N’©šé“P·_p)†'2¸á²¾qvÖÚG±ë;ÎIù˜~(¤þwŸðd«•z›NIës„h’0$괰߉õþl[ëQøͦhŒ€ÿÔ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šõjõÿiþ˜yæ{šqVÒ¼×4•MÉSÒšÕa¨Ž*-›jSW.[†QDÉ«š}OÚFv‘jV…ä…áå„=mn+•%§×ëÜžˆ•ñ AÍÙypÈèÞl»Øý=K‹ýôôD¬ïˆjnË˃ kx=²ï:z—ûéè‰YßÔÝ——@Öð{eÞtõ./÷Óѳ¾!¨9»/.­àö˼éê\_梨%g|CPsv^\[Áí—yÓÔ¸¿ßODJÎø† æ켸:·ƒÛ.ó§©q¾žˆ•ñ AÍÙypt o¶]çORâÿ}=+;⃛²òàèÞl»Îž¥ÅþúñôDìûˆª§Ì̼¸\ø?^߶_¿-ôÔ—ëôîlÛFóvP•…'S@³†MÄœd‹$L³fz‰G ŽB_¸óGªa^+f†®ü;ðêû’œg,K—ß¹)ùf[¬™R•I58â%Óûˆ¾ç‹á k¦¿Þ+É¥„’üic~>H³°¿[*T´Ó3+QE;1u**Òщ¨][—`YŸ=Á;Çf)Iò²Œ +a^hTû ºþ[z™uieg›YRßõ*7; Ô˜Ö’'#É +L¦BÛçÝ·º£[€“4#¦Ž»ÇÃÛš™¸éñrýjͶÉâÛ­Œ¬jÚn"ÑXÓOL•£¯&–«íUVEë2O7lu4EnK‡þû«“‹§BXÂǸ´mªoºµíZÁÔ¯7ÖáÝyeõêa[lª* ¤©èºÚËZš!7H»|è˜k¾h¡ï¶½™Ÿ‡ºÿ®^>NÃÂ7—½ß¶Ýwkñ•Xm§Ô×IÝ´cÖwœ“ó0üQIüï?àÈ W*õ6œ“ÖçÑ$`IÔ9ia¿ëüØ·Ö&4£ñ›LÐ1ÿÕ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌÉXÿ ø\ØtŽEüÊÉç}Ú(+~fcÇyìöÀ+ÛV^V–‚×i8;EË¡udÈE.Ü]tÏ ©FEnTÃPîc~vè¬a0¸Š’þ¿õ<ÆÇ«ûõN7ÊÆ,œ½†–?†ûêõ>HÄ_ð»Ï9±ûú§åb¾ÂøFmʺ'Æ]çœÆØý‡}Sò°éÜ/‡ôfÜtN#Œ»Ï9±ûú§åaÓ¸_è͸èœGwžscöõN7Êçp¾Ñ›qÑ8Ž2ï<æ6Çì;êœo•‡Ná|?£6ã¢qeÞyÌmØwÕ8ß+ÂøFmÇDâ8˼ó˜[§íŽú§åbŠ\¹…„:û&ܦ·$b#Âïi3žd«V¦c_ÊÈÒØ Ø7]Û•uɵI¹/œ×S^ùó=£Ë8hÍkýÛsÊÜ•ˆ„¿…ÞãÛ5Àò¼/*ºq´ÎBy£Ö:Ó”ÝãêŸò—§uzæý§U‘uuF¯’äëòÍ÷h¶Éï›Ñ$íŠÄ­’¬ªJҌޞ!ÃX­V¦FYä5ÈöÄ>bŽ¹žSzß\ið¥Jœ5Ç¿ô{ñŒv68®O«7{¶Ø:Á¦*&sÑlŠbÚ$ž¢Îc”|‰Y’ˆø¨ŸáÖ"ÙçÏÐ7lÓίÊôóuêŒ:õõüÌZ\™RîØo}ví«PCÑô”zû*ªÚ¼[PŠ¸#§LãT"8)9Y»úžcª^' zšH´cÖ«¼äŸ™‡âŠOçyÿ@j¹W©´äž·8FŠd“¬iÊ÷K`Z©4ÊiË,§4Ë“e2ÝYo0k•µ@ M±§N^°4³Af3[¨ æ2œ%¨“MPžÓqž*ï(,Í¢i%°‚Ž \„t–0¼n®Yí çÔ¦Än p–h½Œ%”!ÀÒB F9µ½‡s¨Æ9¡e2÷:Áä{½j¡I¨Ç^¥2ÆÚÁåóÚtrI¿X<©NËP©˜åšË°”~$,¢hgÖ m½šÔ ÔäËR3m· „ù£—`-RŒe§vÛÒB»­€ö¬fÌöXB:Ár´³e{V¤³j%Í&” –2dó@„eˆš$c,Ÿ4TÉ`<Ðy]@·J1º˜BÁD*Í1›h/B{£’n¿X(«Ìò”ö”*ÆÒ¨£&ynóJö–`4ó/B„ ¹INHqZŒlO.ÀS5i¦U,’Ê ´¡2ÕI¥©&™vÒÀÏ4Å¥ˆ*Ëe9®~Ào:€xC––ñ>¿Í‹}bcAÊ?±¡ÔÍÿÖ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌÉXÿ ø\ØtŽEüÊÉç}Ú(+~fcÇyÏÈwêêíu3©«û¿:û Š~*JrS«hl†Öÿgžiuúœõêjö A¡šœ,ßÆ1sÚÞ;{gŽÂç´ŽÞÃÕm‡ tïè“KYj¤&¢÷J2¨+zòz-…`ö!›1˦›B¢bî/ßß<žih”á5fä~ÖrÉizªiÅDî¡]xíÊõ2\Déßí| òâx"ˆO*üÔ¦m†´ýmÂ*¨‡­Tj¨fª:b¢m²GMÔ>Ø8xxGNýÿr.Ã+i&rhk$ƒwSSŸ«å¦ÔõS«PhA¸A³vlJ‰Sq"‡p¶"yäPçúQŸ$]J\õIX@ÒúîàÉI£Q1QÚE!Hù¦S‡‹sŽN¹Ky#5q6žoËsž}MQRòQnŽÙÒ&c†ªzeÄx‚gúC˜crm,õ#O)WÉNm[A$äõs NÆÔÎáÛ-éÚ†lRñÓX„õÏ ]£V j™¾(ºj™z«©ÉôÒFDé•i¢R÷ÉŸ¹ðó>˜ZÄb%ƒ+ †ŒÏ†¾ž}RÐ Zº:HHH:MÒeõâ&Ìê\?» Ò\ÇVË=‹Wž}z3 tt2Ê’9£‹¾¸ÙB-|ŸHY§±Ž­–K´Ûk›šnÊ*˜tfÓN°ªžšh·D묤)=лÉT3Éu®UÄdžÜwš=K\ÊNYƒÒ l7mÑk$á4ôÉÏéÆçï3'¹ = Ïcˆ´‹zZmdhj-ôÄJ—œ¼n‚q¦.™œ<¸š79wŬ5+®âñêbÍfª*ZÂVŸ%q!H˜¸sÈã,¡™Î|Dýråñ“VZÉp³ÏÕêfZ"’”¥2írªÎeyZd.û÷0ûeÿ¥5f»o‡•½_¼F-³—Ž †“t΢†ìH™1-IJëµjeqÚÃ+yé‡r jW•’jÖ¡LÚi±xs§…à'p¼¡ŸÊtrOn;ÍW%ã3Éñè|45§JÐjZ~mc9Ôƒ¦Ñ*›Ö\³DŠ¿Ý„T§OÁ+á­$"añ‘ŒöãÐÝ­]LTÕ§Á£,«\8²Ç¨_´«8g‰|žìZ«-©Âm·ô²°³þ$Ï.ÈCÐÐÛ3ÂPF|²7ª†î5ˆÌ®çšfýÂ{æýò±z¦ê—mýV&m<Û#/§ÈΔ”[èhxöro ñI”9SME¸g׆fÊ £Nî5Ùõ3VZ bó´I6wŸH TM¤näé“|O¼ÓÕ—+W‚’iêF ñZ5©¬úžˆ˜g4î\ð.´¢j”—ä¨}Û3³@‡¾Ÿ‚-Ð’ìªÕ4<{ß\]^êѪԧ߰è‘wÎRÐxåÁ1o°L‡¾§½…y,PÅéxö1ÍŸSU…¬ámIšª:‘I4ŠÝRO'rtɾi茚ñ– š--*Þ¦¯"¨¥œV)ô„¤¤kçlJK‹dd>y8¥Ï¯ +–%hÍl¥ìæzM³çµä”šß¼ÑtQ*JbéçáøwýÈÆ’¼±eÏJh1•ŸSUE¬Â¶…,ÌÊ<‘L©$VÆI27rt ¾'Þ'¯, )MÛ_O=³jáÓÇÅ4½>¤£ ¹˜ÇfLÇ&‡ ]æ–ãÚ±%i¢O+QUU! +ʨwGTù߸Q±Hs¨²gC¶xa£³ÙóE½YRÔS9É'U´„½Ø×Xi9M‘5®b]χ™ôÂÕézžy$¼}[Ú™âѤ+(=oŸ5é†)µ]E ö¡£Âc¶qÈ=Å<ízyyí‡ i³¶Y1‰®ÒŽ5µž?®;pðè#åd'Ò‹õå–UŒ<óLû¤hÛ@¤%=W=¨$2yºh‘£Â_݈Žç¹>úgïB…IWjÒ™÷Z 'ªâŸ© ´K§j±Hs˜é¬DýséՖ/*Bfø¢èYªeꮤk'ÓI¦T¦‰HSß&~çÃÌúa‹‰¯2°Øi¦kõåZ OËÏ8-ôØ·:— ë‡àîÃÝ 4e]Å×ÍÔÃÅ íüv½ºY´ñ“ÇN<­ÑÖÄÏs'90¾2ªÕ–V®\$óõz·¶ü¥u1hÑvn¤l£ˆæž:løÍŠKé¬Ýï’âúBì%– +t³LËt…9NHeëi t°Î\™Êh—û=ÌbÕ­,Ô(ÆgºÙæ^SôEG!ãU³¶íN¢*§¦Sß(CS#RÓ5:ÞEÔu= ÝcËxw˦©tʲmŽ¡Ë°òkYkÁŠêZÊ`”ÝœµB`±®j,…7RÇL‡Áôž9îbf_Pùƒ"XÊÄ«<ÍÍLÀÕ”m@ÙšóN§àß7_W¥G(bá=Йéáß"—î\ïEª³ÁwJi˜vn¹«6ñä\‘Í+²åãZ¨k™ÄËB%àh]æÿUËÇUصq±æÙ¸øÞFB«í9i›,^¬„Xìݬo]Ón¶X‚ %õÄóªåãªë•q±æy¸øÖØÜPN<™…£i—„bòAݼ|dñNÍ‹{‰ß!Ó:‡=ÁBxE•ˆ–h>åe@Ë™ çµ,SÇ4‚OSDʵÄ&c²,žbgß ßiáº2Æ-Ám32Í.¼Ôsƒ x×L\©‡ë²’b¼¸s XYoþPŸG< Øç\ËSOàõ‘áÒ$zzñ(TýyŠnZ¡sîÌSrF~xñ½‰ÊÌ’_C!NN>^¼¥áÙ81&ÆEûâ—ABf ÿv{þäcáá*ö'›©ˆlú™«-1y…-MçÒ(“Dä)¹:dßïÚÕa+–z^­ìË/$âËè‰å•sÕÒ™K’Š¬µóàø}ùÊA‡ +W™ˆŸ$­¿b3ÓNÊÀÔÎŒæfÑ +²†ÓQˆ‘tN~Y‰îEÜeJ·É˜«Å¬úš¬+øug hÒLÕQÔŠI¤V誒y;“¦MóO@d׌¬<>gÕkU$õ-N1fdKSÍH:‰+¼;íÓÈÎ|gD&ðÈK÷;`P£,˵kÍ+ïªU–6Ù*£eŽêöë!¯ Ÿ"©”>Õm‡ tïè p’ësá'¥®>­ïý©ÊS–¢»N zqÂ1m/p»xC¨Š¾‡HÄ÷Daƒ¿×´ùK&¨ñØÉÚ“¶Ì4>T|‡cdwÀÊrü;üJdTšf.§Õ®œÔÓZéÔBíä¶kÙpšäç:dÊH¢wÎu.ßf«,«RÓšfñzzòªŽ£˜˜ªÁªð«šyÛlV¹93Ž&%ÌsðóðÅ©&•v¶h=ôÌ„ Í_NÊLUœ*,]¢ñ{™BdpEÔ:K<;çO +ýþÖ`žiJ¢Þ¶^áóÚZä’ÇUËärÕ ¡¯¹añÈOºÈr“Ü‹8™lËÃMvû´µ²ªêHuZXoÄúÿ6-õ‰(üfƇS4 F@ÿ׿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPóSS¨)„¶ÕUO¶«a¥àÞ˜Ú¤Ú:d¶ªfº}Dœ$tÍsít¸EDaw +=û:ã¹þrÏȆçá_ÌÓ|§Å÷ž‡}qÜÿ9gäAðŠ¯‹æ>ÓâûÏC¾Î¸îœ³ò øEWÅóéñ}ç¡ßg\w?ÎYù|"«âùƒôø¾óÐï³®;Ÿç,üˆ>Uñ|ÇÁú|_yèwÙ×Ïó–~Dªø¾càý>/½ùèwÙßOó–~D*ŸñPUŒuÛæQ7!Ë=®8My–)(™))¼“9¸YêÂ7ÌDÏs´ õ.UŒÒB>.;ÌYù.ãÚÒüí4¯tH{ò>N=§Ê‘ãܵS‘áǽ½h["…³ç«¾YÒ‡Yur\¾E=m4û‹‰ÅÆn=Œ¬6ñíec­“Y%'LÚÜcǦ*HNAëkUÂvÝÎ>ÿ’ÿv ê®Öb'³CµZ¶.²{GƬeeKQ1Ê›3‘TQf|u•Ý8 ¦/ÐÁÕ„¾íêqµhO<#÷æ³_0¦mj +i櫃¤½2´Šiª¢‡H_3!¾rh™…Óõ±í*Â>åÌl(O$!÷æC³É“T´å5- ™ ò=Ô¼R÷Ô!/œâšc_4š™Y­ÔóA~cª³æ?Å^äØZ+\³ÝA¬ÚJÆ—¢¥^=pB~­§*ePÛâÊ#†Bœ<ñU,6R¾'; *Ëkä¬RJdÆAÔOñE4­ À„%þÃ<—/‹³0rÝ‘|ÐRȵ¢ecËuW“#-‹¦áÑ2\'Ó‹9#$YعèMÄÌf•—ÇÕ¶<ÆIÓÒkl<"e3'‡BöaÉŸ‡§ 6sW‹Y.Œx™•†…±Jjqõ×Ò,÷5$åÁÝâ‡"ß8}A….š¬3M×'©°ÍFŒrKÕòúØŽ¹ !ì¾Íu@Í+dÌG)´IÑ׌Ä97,'­ÜýG ŠÄUŽYº¼ßSB…8f“¯Îõ¹z‘̪iÅ1 bÞ1MÁˆJÝÇ4Ýn=¿£è»i“˜YVî#ç Þ(ÁGmdïK‡ ®ç¦E ½œé¦¬¯‡„ÝlA8éõCF9™’<ºQµ„tJr®Ó|dtÏÙ§|ľ/IA‰<ºj\mk6ÓaÔ­%GÊËG"ì®[¨Ç ÊÈ9T›£ÄÐQKœ1îh¼Äá#N‡|­éhÔƒ:ÞÒéø÷ë:I"Á¾RóGA[é¹' ? báëF ®PÂÓŒßéE•(‹2‹ ×rჩÌá2&b½|uÈ_cc'ŒYØL=)eø¿J,snû:®rÎb_”ælâIÑT*j#úŒêi§ž2y>µ Äå >š-]Y7@ÈPRº*êUhâÎ qLe4S¼Râo$Ø] åFjª¥´‡n©Tc-2ÄŒ®Š,DŠâCw9ÑÉÓÓÁ!Iî†=-Jñæ}v&ÝóÖt-J‹|T\éR@Ç3C4”!Ô9Äϸ™ñ9BÞ#['ܶ£ŠÍC¼6*´›É$ ]k9ð{æ*g÷#2¥)eê`á*M¿SY’³èúúÓêÄä\=C%‡2y£¡{OO@Y–¼eê^Äá¡?[;Ñ}ƒ–ì=\®Ä6Zèî_`â*Í7[e€§->¦Æó@’]nY-ÂÕð‹Ê<}&’«IJÅm ³t·7‡OA1³Äã'„º½[š:#6¿^öi­åÓ²úQ´\YNñó«‘q(.¦*«8q¹’þ&™ÓPcÐ…› kä“?…êÔØv&Ák%’sfòJøÉë¤[²–æQ˜DÜ¥á¦r{ØW…ØÜ“ ú8ý‹ÕÇÆÚVKe着p΋[MF¶Yô¡LÑ‹‚$‘}8²y›Ÿ® ¬UM‡ŒírѬÞš¶[Hµ*Í£Ë ù;É,r¸õ1ϳ¾JšEÜe--ÒVAEHI“é5U*gNë¹—Ktï!V0_›$:½{Ül¤¬uÅeFIÉETR¬äÔy0fí“:L”:oÌ:)èKšxœ,AvèÃcl<{ÍøƒøWö#9¬qúÜ“x×È8ežc·v™7b<ç¿ÙöDÅv¤ô´Pùví|34ƒ:Þ¯¡c߬é$‹KKͺ·Ó:4ü1“Fe¼Tiieö²‚VcAÃÔ®:\Î#]&b½|uÈ\Ãèb kM7[2j2ËÔÅ Ú©GÒÖshÌ“1Ť²D.zÑnKþð}Û–2ä¥,Ý~¶,Õ&—«ÔÛñÇ+[#³¹Ã^3hYƲN RߺÝ7ë¦sýê<­Ê0‘ËK®TVõä}¼òþ™%Òdé$l÷GS@ˆöxƒšæm&ÆZ|Œ-h4“:òÑ©¦2*:lMa|¿¥œJ|d3/§á‹øzу†¥°ý(²ÝfQtî\0u ¹œ&DÌW¯Žà…ð162xÅ•ÉøzPûÒ‹F·¸·4J‹TÌ¢©¢G%L¼,b/sï!æUÌ\¶oVU¬+ø$ªdŸ%­Š7ÊqÌl“¿ïø;`»[ ™o ÉDZÃHºSdöh‹ü¡¢S“ÓÊT”ÀU4\"ºˆÜ:z—Oî†Æ¦& 4pñ‹•ôEšFÐj¹Y“é&pRÅzøîˆ_@k*Õ»s‚ÂÙðÛ‹%Ðb(ñõ½u.ü¯t?Ö +hÂïyFKÍv•^Uî,ºjXŽˆfÏ ×**ÚGpÚá áß=Á“=Øóã--¸ô4§‡§ö?AQµ|iUBaŠ ŠeóEËvĸKúd:™ÄNàS%†ž‰}Æ͹NÇ«:ViÛ˜©Ì©5¡Ý­’‘º'PŽv͹ø÷;“1hÃC7â?r»a¡ñ*Ûøqü2â"¦„ºGËo)fÄ©X‘3k5`£WhÝÐo.ÝÊ*9'Ýä%ÿ–e`§„¸Êq‘šj7ˆÒö«)"¡k-ê%TÌ!\¦äŽÈKü BîÁ®›ºn§ŽVßµ-|¤¦"$š× +œ”Ôsdâ Tn"kœ3‹´¨0gªÏu”!jh ˜“–ö\ÍÓo|!Ó̶ղ[…«á”xúM%V’”)ŠÚAfénož‚b™ñ–]Kx~NÃÏ$Ñ‹ÂÞÞ6µ ñ&TeNÜr»§™MÙ'2J6‹ÝÎG'O>â‡ÃäÔ¹Š†Ÿsá†qVR–“ú«F5$ªfgŽýZÔXée ÷tN¶PžËÄL'Öaa ãÞÛ–Ke着pε+i¨æË>”)š1pD’/§O3sõÁWFµ‚ÂÆvñªàaìžRË\ \š-ÔŒrŠ(kÄLòæ*±þ\MÐýñÆ5)ô¬¬E wy ¥‘kEJÇ–ê¯& +F [M×"d¸O§ $ÒùÞˆ©å +úJu!·'d`Øl¨VµEAh”¼‰¯$´-:ØÊ‚tȽÅIò³§yÍ¥“åô“á³Ô«¹; Ò¬Š¦¨mv³%1eái³ÅÈÞ¸³wûé>XC”þèUˆÂË/SŒšn¿V清FÛ ek(•ÓÒæ2éºvÅÖ†ë7>y‘<Î õ=qDýpZ£ŠšŸRõZÔ×ü²Ú®b£ P”pb<‘M7É&¶bI<;u–M{ÌK…ªCêÜl^¡ªej6ÍÜ·9Œiê­P|äÊʬúPä@ùéænx»Ÿ­á”)ÃêÜl+ë£Æ×#ÚµM‚7@·SE2&™{&5í£ÞuZXoÄúÿ6-õ‰(üfƇS4 F@ÿп€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPóSWª!WW¨)ŒUeM¤UÛšòfU×Oà8QB õ1|q5,%øö²¤´KækÇÉ5IÛWº²J–ñ AjZù—fÃYŽiK£hשIFÄúeÝn¢î_''`ŽP¢—þ„8ö-tu>/½ùVØ\ÉZv+xdÈ™•Ë¥˜ž†bk¦@çÐǼ”8Žö¥HY'AåÚÉT +ù<7EQÂË‘Bv(§faåzõjÇ4½_'­\˜JTa’n¿—Õ‡` ‚RLàJš¨©Ž‰LáeRMn̈¨¥Á_HT« ’õüž¸,IÉTéÇ<Ý_/ª,Ä5ñ©f|'–n¦/«ìn‘¯–J^&û”‰c¤²ÈÄ쓨ÿv2¨×bÖÀÆn®;Zá,æ$S2E‘ì\ åº ˜ä"k&|BsS??³½åS4)SãkX¨éÈÚ¶=x™VùK71Ä9/aœŠ=<ý2caê^,ªô´”8ÚÚµ½’ÒvŒá³ª†/,UªgMeNRºOä:‰ŒªxÈCcÉô/ñ~”Ûß-bÔmÿ] bLÕÞÑÄË«˜§x¢Š€10Šä04a/ÅúSooIJr6eÜcçñ‹Pë³SäÃ:„Ã9÷=<ÃðŪ: È­ IÊr6£Öýqo‹­ï~×t90Ü'~á÷==3f{FkÅåy4!©¨Ú}I5˜7ÂRIÑݺ1”9΢Êp÷E;Í ìUÖSO w¯bñz÷²<—õsÈò |Cúžþ=˘—4Ũֹ=¯Du/+8͉R”*x¹L}Ó ˜dÌÐ'¸ßSFizÉe–=^¶Î«lF‹®dM-; •<2dLÊåŽRÌOC15Ó ½K zøìZ«€Œý\vµj"Ê©{9Qâ”ôi™™ÑHU½4å[Øz¨QNÌ+b囫ŽÂŽi:øíniJf6eìT“Æø®bÔ]FfÄ=ÄΡ0Î{˜—™ÙŒHfW©•½÷…QKÅÖQŽaæZå,Ü\ÄK但r™éçé¢í:š%©èé^pÔä}>y7Â4ƒƒ»tlCŸeDïîá +ÔÒ’QÑ>HjBœ{/%Ĩ9–P‹¾P¦>ìtøw4 ¦mî+š—L.,3ñé}{×dÿ«–GcâÔ÷ñî\ÐÓáïƒÉ§ú‡I)wYšà·4ù&Ö¿,šIu0C¯3M›¼]w +Ó¦2«(u6¸?%ã©÷xÙÍÊRB]~½Íd¼—„²ëã±G“¤Œ‘·‹nöõ¥ì²—£Wlâ"7í[®ÙÕpÑp¶9ɺ(¦ø~ø-ÏZÌšx|ÅPRñuF·k£\}oxƒö»¡É†å¾÷5;ð’µÞÔÃç{)êr6•dXø¶ø Š¢êaâùîˆ}ó¿8¢µ]*ä’hx÷¾©x†3Ì×’j“¶® ud•-âB}<4¬uJØF½JJ2'Ó(–ës®áeòrvå +)peK‹î¥ó¸êX—}[}_+}µ§#ØIÈL ÞëéÐM¸‡ÝÞýÌÍi˜`K6ieó½,©e¶½¾§Ê…ÖqÍH“§&é¹,ä¦>èŠ| šçï‚ü³ÍßXŽ^÷­±ê +¡ê‰5å¤`Êgn yÁ’p²D[Ã"j&C‹ÐÅB^µ¨àc7W¬Šjz<ñF…ÉHXó7;LóIƒsæ硘-T«õn6/èmG¯‡a±9 ,i[˜­!Ôj£4±¹ädÃGÃÃïÂ_«q°ÐÞ[œX]N¡ËK øŸ_æž±1 åŒØÐêfˆÈÿÑ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@*›Z¨jlº¢Ñ©š-TÎM7bªÅÄLªšíâ ´ð×bÖÄåj4å[ W¢£ˆIF² &kª²ÄVéûþÀ'¥Ùë)c4¿/«äx:¬ Ù%*²òH¦H“¯ŒczŸ˜™ü°’‡o©vlL)üž¶ß„µÊ.£v“Ú™ŠîT5ÔÑ+‚_Pýá8b©°ëRãïDZ‘†4ðÊÊ–lìy7jô}3!­r•#&/]2J-žŸ‡Ø{±~L&^=¬IùC$rKÕÆØ7s©èö Ç·]áV@Ç+R˜ÛñÓ&&g¸ é«žhR†yzÉI¶0ÙZèˆeŽhßÛã•4Nÿ0Q]‘5K6­Gj´$ðÑó3Í™º)S1’UK‡¸ » =ØÓb¡¥J×”ýo”ë ²2-Ìl_ÃÄ¿së -O-•IVùüÖ°öeŒk†,Ý:"K¾QDÚ¦m5Ž™1B{€’[“Õ¶O8”œc ‘守†Xàâ|r¦ ßæ:wWVµž´*×.aÒx‘Ÿ7L‹¬ÚöêTTÐ=À©†ŒV¥ÅAì×–:ã­9Q2ìŸ+À½Ÿƒÿ|{ +—iÕËR?'¡°mÔ3sÕ‘äT¦ºb¨µË§û°]†Ž"ħúœ~OO‘¿äfãâ#Õ”xñ$˜¦ž!—1·"“³¾,Ó„Óu¯U¯F^¯½1Îßv{챇¾ ³`a7_«Rò¤’õz÷5ÊŽÕiIá£æg›3vRÆIU.â‚™0÷]ŸVãc\¦«ZɹBÊ7I3]1RýÓö쪘{ëÞ·UWi”½ªHÎÎ5fª™ÅIE7[Í;ø«šeãÚª|^_®ñóA¹¢%˜Ï5AôkÄ4X·“Urݦ2JºO­qó¶Zö¿Eµ“Öuêf$y{ É™Á3OØú?x/G Ç[Ž>ü{Z<¬š3ghó5m?‘ë“ä›eŽѾ!®b9S@„ÐÃ÷+Rây¯Ôöñã'*Úqº”x“DPˆEMp—ÔÐ ªŽ[ÈVæ¿TÛÇç32ÆŸf¬„“¢6lÌET6aq†O§8¢H-ã+䡾½/§£×’sG„3æé‘u^ÝJŠšð|>f]\FŠ¼ixVì…ߎ§£ÙÈ3‹]á +ñáN£t/g¨DôÎ+Ëe¹g»Nª+x-4œ”EŠn u3.k·Ž­T«fÙ¶š]Ûf,ªfK¹p¡E$ÔÏPêh_ŸRX[võ¸â¨Í®·ÎâÜ(ªªŠµS"(™®˜¦SDâÍ<Yc}ÛÞÍÊÒuC×¹“˜Hµ—lƒÆNå²Å¼š©ñ'fC‹xšÒü³K6·ÀΣ‘!ÕòJ¼ÀÊ)³ÑÄ&!/‹³QÔª¬òÍ©à­GÝÛÆ'x‘\³o•¸Jözmû?0ÂÔ˜uâøâª"Yœó4$#ËW¼ŠÉù @ž\¥:¹šQ+H3E¡4YDu½Â„M77·#Càœ¼Áw›Ú´~OBÜÕ%Ž?'Ý û¨#W‘s“ÄŒùºd]f×·R¢¦î9½èÇäô³#ZXb#òz ökËrÖœ¨™vO•à^ÏÁ¿‡À¾-ÍJë1©fܪí2—¢IÉƬÕS8©(¦ës³¹§s¿ia–£‰nh‰f3Í}ñ'MV-äÕAB†÷iŠg¥eÚuó<$§Ä*Ånˆ‚ÀnS›|Zæ%ÂrJW*WÊð¨cfW|Õ“Ä—^=LI¦lôOØyV•Ö!‰µI¼ßCͬËïG·tE±ÀÊ’)³ÑÄ&!/ü°‚Ô²Y•Vµñy¾ˆ6ýQhÔͪ ç&›±Ubâ&UMrñD”nµWn=.&ب¹ç,uHÑÊøgRâjgÜL˜‡úB'ÃYjLmøö7Ü\‹Y–Ÿ2X‹¶p™ET͘¡áŠ'–1­ÆÆE9õË7Û·6âöƒNµ‡J ^a¹#5ÔݘۑëÈa¯[‹TñYd–o·zZ k¡e¶bÒ¨d«— +HU3Ô:‡¸B ˜a! xÞµO•$›T}{›úZYœ 5ä$³Vå¼²ªh&AC ÍÆöM:”e×[ØòI¬sEß9X¤lÝ®¢ÆÐ*)’ùÏÈÂU¬ø^U1±ešy$‚æLŠÊŠ]Jâš¿òKÂì0·ZŽ.Ü{U)_SµÑ4 ÃwÙ>øT”ÏOÃ&˜UÁUÍîÞò–:½û›a{s Zªª*ÕL“:f9LS)¢qr® +¥½ÛÖéc©f÷îoøèú¡’Q/íš×ðÕHÙ†Ã>þœ†‘…µ/Ëõ]oMGUCÒ 2é¹$X¡zéT]K—س(ám­U\^ŽãÐùéZÖ·nwP2ß$™®©„¥ã§á“LžìWÍn¦Z˜y:¾ôÙî-Âjª¨¯U2Lé˜åP¦SD醆Ë51´û޽̋,Îyš ËgÅETô £­~z÷z#ª8Ùv”fðŠ³.=åJlÂäçÃ?½Ü0hžÓ«g¦6¨‰–Š×ÆR /†u2’r¸ûçû®á‚|:‰q ¿3jT<œrÒSÍ[A9je ¿"§ ‚í* U10{é›K¥ë'j±ƒœjùÊiã™4xå%ò'éÊ-Õ–Ó.ÐÆÆhhcÇc_Ùnºë\–¸äù^M{uɯܿË*Ó¼¯hO,c¡¯ÊÑ*‹F¦h¥Po94ÝŠ«2ªk—ˆ)ÑÜž½¾½ÇÌû©ªÒ²MU åšÈ]SbÃ'4/)⡬ñó´9ëX£éwÚÛ)Q2hîõÓ$¢Ùéø}‡»gn=«5±2Ï5ÛšR¨‰„h„ƒùPhàÈ&šê)¹êhgü4 ºØ™c-žù™–4û5$$³dîb*¡³ ˆ{„úsŠ'…ÖëUú”>_Kå©jØz5¦]7$ƒ k¥Qu.^?`NÌ)á3-X|¾#×LÕðµ“C>…’Eò5Ó(’—®Ÿ°?`+æ¶YçTcÄZ45©Ru ¢°±ÕG/‹pMk÷°ôîv~à9­ÎuFE¿†@uZXoÄúÿ6-õ‰(üfƇS4 F@ÿÒ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@*êUl <Á¬¬B¦ñºK“c¯uTÈr_Ëíƒ>…[5˜Šw‹ä¨`ãè‹A£$¢¤Ç_2èÙÐL‰ÁGœ‰ðÓ94Ç‘›ë¾-k݇EãÒv{ؾµü³Û×Í ~Æ@eR‡Ö¼zNƾ´ñŸKâÑö³eyg4üõ ù3EµItXvîRnB*ÝÊhâä:yúdtêægÔÂdãÚÞ¶s<µKJS’Î yw‘íWXÝ’Ê"KÿN1q0dᦳu -–kå?h4ÊɤúAòæ™3©“Âú½ÄmŸ7²%¸u3ÅÓ¬VÉåNG#=Ë„OO0åû¬¡%<Ê'š4#šn®<¯ÊæÔ˜Öòð³ ÌQ¾#èóµK×Ó¹}Nx¦{/MŠ¿Çœõ[OÒ–›Tz5W…Z6/ +<ï.áãßðÈBÌiçŒYÒÏ*Š~«AãˆÓ³*j5±XäG7aëyã-›\,/ŸÍm›Hø¯³žR?`,Ynb¡lžw©ë¶½;>ú,ˆúÅ…¬<Êñ0´f¹Ë©ûEª+HÛê)N·„QãdþÔG8"ÄrO ;…?¹HK´óO2üsöò–ªƒÆ«TQè.‰Ë ¡ˆCŒZ,ý%êÇäô4{ ¥!fèÏÕÆ%£¬gÓS¹¼L±~Ø-b19Tà°™éM'lxóõk³;T¦È¡ŒÚ óæŒÊc_Ãh¦ä'ÝwÌAŸ-ifêõ±¦)zýmã j¶~è±ív6ëB •ã@žåý <1f®3u/RÇaåëûÖæ›7]RôE¤ÕŠTÅÌZ6ÙÝ]ÃÆ¿½¦¥Í2ŠðкÎ"{VãcU²× jÚêj¬§#Ugâ%†TíòR>všØ˜¤' ™—Ŭ\,ÊÁë­ÆDzǯMÈZòmò™‡Oºvä¤> tÖ:Jÿ‰šºó)Â˦ú÷3nLÏS´Õ%hÒ@Šùaš¨VŒL&.raèbiüŽèP§˜ÅTÐ}gžìæÊÉiv´ÞÅÍŠŒLßKÉ“CÜÏVÿnáß´q9—qLœ{Z™þQÓú9›W«uâÜ:‹2¦õÂ3Xé“é.‹X‰™89¬ØµO©ju „1‹OÀ®í;¼G‡ô·½‘+þègЖX8ïªÏ™òÚl£[U³š9Ò¦º”Ô¤"n0½E°Ö!>V{Ä÷#Ê0Öó6–L­¦©ž?²Ê²Ÿ›RôÕ6዆7¯,C&qà.âÇ“áò­VŽ’„ix6ôÝ•-‘ƒŠeÔ=¢F&c¯¹É$ž›ˆ…7â}Ñ¿'îÂœxØ篾 »ag¾ÉÚ­UHKÚÔÌ]tô´JjzÌZgÌ?yŽ|þ@ÇÄË•V|ÌÊþ-œ¦¡Jñš.J]ª™ wß5*ìêø{°EƒÁÆš>ycG·ÅF¢˜*j`’úxns. Ìt+¤!÷Ö³“pÔ²F1õ±EœÚÕHÁ/P'yád%/[Nãâ× áÆv#[Gý÷{–?$öÞ·3†3Z—¥¥Þ?f¬TzÒR2,Ú.[§g¦yrp4 {ðÁÄüfV”ÓS»Ð8Ôä½Z=)’5l´£g؆ÑË•Æ“•Ït.MñX¸i&K7ÜçÅÕyô"‡×º ,3/b¥ÊÚ¾gWëQ´»Õ ªÆz%¬Ä9Ôà­‚L±¯/vùYŽª«@oùƒ©ŸžLêðµhüžˆ0å’háã処}s—Sö‹TV‘·Î¥:ÞW“ûQà‹¦äžw +r)¡ ÑÉéU‹„ÐÄGäôA—£_·”µT5Xª âAtT.‚„Qþ!(–™µj¶å¡ +â›´)äÛå3Ÿ;tíÉH|é¬t•þ!4ª•2®áéæo(؉T¦¤'vÙㄨű‰„Íe †s“å—/û‘F*69;ºz-sòófÿD ýŒ°÷ œ£Ü°\Kõ¨Ò¨­1 ­‹T‹ÃÌ€š*"‚}ֱ͉òÁ¡»]RkT›Íô3½ ùm?€û `W’Í¥=x‰¼ßD:z>Eºên6-a±1ŽY¾Ý÷h¶A¢ÎÄ(w1ÐNY’ª&TïÄNI{ä¹Ã %µn6,Ïœö`Ï+\¢*&Ñ*–sÊ+9ÕÒ£Õk’¸Q3' ùùŠp‚­ù¿ +¢•z9 ÅehÔm=匼‡.“’”¼ªpçtCb9=ÍÛ \«F¾_­үG7áœÀ¦±”Šbò5¹›4Y®¹4ÑÐf^Ä•ËžúnHÚS§v³[#átm†ÑÖ›Fµ1“Q¬1){Læ ÂßT  òYšÍ%A×t™eÓôû¦‰¤“<¨åÃY™žà]¥š³²½Ö´½Víá`bUfª)ÞQE¢ÎÊñ>…ü<ñŠ–Ó6xjÒÏ.šw˜WW$k¦Üª2 æ6f³\ÖÓ«ïÙã:;ÊÖU§6m48ï7ŤTí9inª…›¤ÏX_&S9O˜ÙI.zß„,a¤»'}w™´‰Uº«ç*Ê2d0ô¼‰¤ ß ¢ÎSÝÑK{NùÓ¹åc*¥+1°óý•ÇÎ̶K@ij£¢²Èô]9–jƒÙ%WDŠÓ—„Ç=󩧧p`ÔÄ3ð¼›Ë~=.6LÃ&jnVUCš>6´Ž`×:ñÓbðäP‰_ùó œ435sÓšY»ªj•ãû,«)ùµ/MSn°xczñ2Ä2gèþ,Q= 3![5)~_K$ÚÓw•%9WŸ^z2=»æË6hžPáªÎOLa.|Œ{$,÷ªËò½ti(»HwRÊRòŠµVJ?Zäš žJª'ϸàäQ=úáÌKûÞh¦¼ö\¡%(ñÅY@ƲV€ àÚß}ò9ùTL·NÍ‹3îΓè|‘C(Or¼”¡Ä\–¦Ø :‡-,7â}›úÄƃ”~3cC©š# ÿÓ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@*»É\p´—”• ÂÏ–•fXWM h–'ttÖQÉÏä úµ˜Êw{¡ 5j„-@òŸ{ O¦èÍË ž·NÞyà2^F”°y +“GEâÒv¶u_MK:Š¶´Ò‹v¢’™™JÜæ;¯K#¼ö~àdÑ©,µ©Í/GØÖg-"z²„^§è9æÏ$äYL³‰£r(L3ªsâvÅ:RÁzl|õ#hú·9 KÁ§KÃÅC kÉǵA±MÙa“ÿÒ T Úa%ÍÖÀ¬-"zjæ«)©§È™tÓzʼn4’EK÷/Ÿ@‡¹˜¡;Ñ°Ñ˲5&‹oÓ”,Å>…“7^<å3Y)GnA3ª“<"Ê#Ÿ‡|¤ù`÷4°Z)¢Ê–¿òPô>FÕg9=Qål$Î|4S"÷Õ>;ñ‹†ÊØâ¡ש^Pv‰RÈ+JÎÉ´‹MbãNè—Ûß¿|ûŸf2ªS–f:“A—(‹AÙºØÜÜFNRô´~JE1; Ó<`Ö•´Ãâãǹ¶í†.S +ž¨¡˜žAÕ? GfhžúẄ: þáïû‘s_+4fl·ëf›¥[²§ec#áä ,ù̳<—=¹š)˜™ç¾qv^åb­HÌßô3Ÿ×N1>FñŒ:i¨¢'Â[ ‹ß! }=ÐZ©Yw,ÌeeT,ÕhÒìÜ7YHVq'B%Ù“>N£Â.FøÝšwÌO•”gÍ<±k©á¦‘§Yµ¡ÉPpjÁ«gõ3§ˆ¼‘P¦J,än¦Päç&짇ÚÆ,Ô¡}±bIRòôœ„¼Ž/î5žXLÁΦNåÓ9ÍòÁ~¤t¬93R|0ÖvúÑWö4Ö bÕ¤{eÊD•)ÙßPŠ¬Šiægœ¹›æhIˆÐqï*Pš·ææBÙê&¬ ò…˜=Lšx8iµ½²Ý´Žt0x#ÞþH(¥‡–Øéçëõndë*£Ö¡i¨ø·‹W™ë¼P¼'uÖúsÜ÷#N ¦úØr’±Ø{D<åQVû+éI'FE5\YîÆVUCMQ.ÍÃu +Î$èD»2gÂÉÔxEÈß³Nù‰ò²ŒÊÓË<Ò½ñ2ï¬X’t¼½'!/£§KÆ»g–&ps©“¹G€tÎs|°cB”±eF¼Òên{ ˆ|êr¥ª¦ÍO³’E‹fl•)pb7¿}S¢ž†%ýk=×p8|­~Ô"Þ?—³åµYr5œ"î ’g1G&_<ý =Œv3M¢© t%¥ÆÍǪVr“N®•TÎLfê6E;äÄúþôSV­ç„^Ñ£jvmo3í5QSRõÃzŒtÔ‹hÝ∜¤x‹4N!øy—qO)â3Ó³“0Ùj]É7ä1Û9)KxÆL÷Kî¿ 6¸˜]…¬Ò%ó *ŽtÍd%Òfl¢'"¥>~eÍ;ã*¤÷bÒ’ÍÛd GQT«WÎÙtcÚ¦¢J¦r3ÜÐ9ÐTšï)Ѷ/î;–b*ÈhäM «ÈùF®Vb“3™ÙH›ó¨}ÇO@eaªY‹‰Ã_ —v^an|å³]Õ¨c(šXªÂœ‰'ˆ}3Ÿ0ƒ¾ ´ùRyæ´}[›þÐé£VTÄäF*j¾fº ˜ÚZæeÿwt(I,¬ìU ,·‹R–PUTºôi(™¦ÕÆzÖ²‹µ¹ž!0q”â\¹rñÅÞm,Èb&‹%U TT}&âºÒ¬áÑÉ$£ÛÓ‘Á"dUpΙÉ~ç|e‚ì#4[Q«÷§YÒ³ ©y(¤ òå\>”g’ª¦"'C$!8yç¾ ª…)h­W©5fÙ³{FygÑK¿ ê¥ÕNBELf§U#Óœ—¢‰ðéKX¡Rj.MRµÊã’’Ö×Ѹ†9ri&ø †~ bؼÕX’¨4µ›U¯ªÆ°î¥aæµBHŒSÅvÕÃ;ø*àðÉp×÷Á•Fv-Z±¤ù"Õ’µŠ²pðïc iò®£}pG'pñó‚aßÁÓ!%ìñU*–Zžž•º¬F9äE6«w­Ul®¹J)†ºgH÷xº„=Å;Á‰šìì$º=ì¾1)j_Œ—q¢¯£åžZlÙªh‡Ù ×Ë•3$ÜCåJ"CŸ@˜‡U>HÚS¨Öb(]ì­))'ö“O(ÝŠ¦Š}»\©œé&´>T¢7ÏòCªŸ$)V¼V–hc3qñl÷Ú$³ÊJÐ g‹NËJµ,;æŠkKº:k(±%þ@·K\Ï+TšœÜ|W¾RÙKDN'DÕ &Ås53¸s¤C-½„ÃQLûç¿ò²œ\ÐËO\c‹š®¨ñØÐÒó-R'¦ vj–LÑøf_.sp®ðwÜK›ö}Ì1çKFž¨qصE…]qãµè ÛÌTÕ )=í#§LºhðÏYœ—]¦ä„ÏÄO0ê\1Óù‡µçQ„£•É7ðÍd£ÞF2¦ƒ„N‰Š™x + ãúÛI ã½/h“ViÚ•¨)gÒh‘£71lò†‘OsDä?÷.âÿ,ùÙÖ¥+SByš3Šy¬{é'R^b®Ž˜|‚ÅÉQÊI™¹ðD…Ä8PšYJôæ˜óJYô³ô’œ¦šªåwEA„£d:§pÛ‹¢­Äøiœžöak[QÊtæš{ñÞeJò¡¨¨¹Ö3 âÞÌÀ¬Ôí2OÛwñàˆðÉs1MÐ[u3*­Y´pƒlQYEk]©Y!O»‡bŒNAˆù¾‡Ë(±Ðì!4ÅSÔQ%6C§˜7%aWºÔbù5ÔF-%¹L™"ÄL‹\#3áúÝýÓä—,ÑeK+#  UJ=ËÉúÙþ-ÄE5FDJ¹lýU×Qb¦KÝ[ëpÎE;¢©Í<`ØOñZ>ÙÐ~Á˜þ…'yŒÛxùÔi`mìèQòpæ3mãç4°~mìèQòqWGGogµO;ãlè?`ìB“‡GGog´çqãÜmŸìèQòqçGF=þÏjªxˆÎmŸìèQòpèèÿÙí{S»gAûcú|œyÌfÛÇÎóKlè?`ÌB“‡1›o9¥ƒR…® æ²e°¶)êºXˆân'»ˆo¶ÀVÂFMq:ºs]m›xêŽI»dH’E2wHBÜ)w Üu11M2¤ê[rÒÃ~'×ù±o¬Lh9Gã64:™ b2ÿÔ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@)š6x ´ª=ÑæÆhª§,°ù=`I$Ñ'šX|¾ U¦QšHõzÁj4#1—`+Ï4HK,ØG4Wa4 hf•LkK0æZŒ’‚ìjf\§,²‚Ô^Ï4" •+¨„²‚ܽÒô*K)Ô “(Ibæ‚ÔÔ¥ˆ)„&‚ìg– ¹ +‘ZŽX‚œêòœÈ +¤¯‘UL³§±—&°y{=µÏØC;Ü€«5Ôý§ i,e¿r +sÆb¶HM«ÖI—*ë—PY¢µ +2À ³Ev–®óTZÉ-0/53$µäñW$aL ''„µAN’ËP¥£™®» t€÷©M9Áæ–Ï'…Áv–¨+¯RX͘éV´Ï+IÃ8<î»ëp–^ð=Íu®Âýà]©:˜Ò„ µ,^X ÓL¯$²£˜Ï(.Rîe{,òÔ…Án•~é䰄ѱÔgS`fy”½1¥y?[3ÍþcZæãý{‘«ÃÂõcäÜØTø¬1׌Ð`Øë†hm:šº‡¤Â³”q€¤³Œ‘©®ænÀçà +ôXçP}Õ PÆ™Ö̼Ç.¸>Aƒ{¥¿yË÷>°49Ô-khpt k³ƒâ¼6VÈ"w¼E<ñ] 4b£Ž…=‘|´E§@×ÆrÞ9eRxÔ·œ2v‰Û»D™È§À +ØhÀÂã¡_d ®,æƒ*Ç\3@³tÑ?5¡õã”*jW‡™«ÚŸÅT¿ð¨~Aç'Âð+±øÉ“©mËK øŸ_æž±1 åŒØÐêfˆÈÿÕ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8Xþ_§>nuø1Ä— ñ!äƒU‰ëmÑ}@*—ëœly?Æf‰¿ÌiOüܯt5rþf#ÇyŸSâ°¸Ù0@i·ºQ½o/AAº1ˆGŽ%Ä.šgÈ¡÷YîŸÜ®mMn.=ܾw¢ ªê°uTBPMå÷9¨zÊ.6Q?¹ Ⱦëà(K§¿ß °§š-|µòÉ'ËédšUËÚ…tùÖz±-aÙ3½ë(¸Dë­så‡úÑ‹_¸£'élð²ÂzÓù¾‡¢Ò,Eug3M‹uˇN¢Üºk7QžáûÄÎKáC»£?›é1RÂJÒyÞ†~öxtÑ?5¡õãõž6¯Qk§ñU/ü*€0ŸYãkÚÌ|2dêXrÒÃ~'×ù±o¬LGùGã64:™ b2ÿÖ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃTS·“8W ¡çfú‰êú¹×äÇ\7ÖáäƒW‰ëmìN׫ÉÖÌN׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼ N׫ÉÉÔíz¼‘\¿\ãcÉþ32N—T¶oO—W­éãý{¡«—ó1;ÌúŸ…Å‚ÅÕ­9!-SÐR [â6‹tùGŠb˜dQ™Ó&g<ü—Bl°cU£šy|ïCÚ]”JIVô­Mä5ÁŠ³Ib¾£>âãtÓ:d9‰È¨bu°*àû‰<ïO•¹êø:š—©MXR¬I*›Æ¨4”‰3ŒTÉÎ|LËéß1.v¿ yCêôdó½?"ìøxÑ­?›èù_%?RW5DuQSD–œ:k–64κ¦rà˜gp±ÓÌÐÞȾ¡F7Óò’aãZ´žw£äØÏc^Ù€7MñAóZ^1ñYãjõ»j)(z¦Rêf6r0ŸYãkÚ̓“©Úõy#&N¥‡+ìD¦,ú†-ßN-õ¤þQøͦeŒ€ÿ׿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPéÖÌòV·Rêš Òõ}:OÀVØ9²Íòncâe»Šy:¯W’7¹å`÷FN§kÕä†yNèÉÔíz¼‘æ’X˜ÉÔíz¼ÓK<Ð2u;^¯$4’’]û“©Úõy!žX¼žIŸ™:¯W’=Ï+ÞèÉÔíz¼Ï)Ý7Mš„Ÿ†Üõ}X‡¿˜ÊׂåV‹½N°ÑE²•æ‘ˆž´ 9´YJµú­¹HTïîD9Oý9õEÌ^G7”«B,çÖûq®…Ù ²ðYxAäf±•ä‹×èôÿÑ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÃWSª(š/`ÀVóê8ß–ñkÉÝqùX¨¶]ˆ~^–ùA¿³\¥5à·†¢åPheÔØÂ/1SÀÿÒ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÇWW¨<–W“FÎ TUœNDÓ~±LTôJRÜLƒxÝðÀTOi·rÅK‡1nšñEUhBxkZ–kEÌK?™^zƒ×F¼²¸Ú†Õêu7µNOÄ"žY£6Tcx7Ȳ¬ÿÓ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPðy‡-~ˆÖÇ—fžààÛ©KÀWþmð8›j`ב°¨ZPõtPÔ¼TÎXý‰^7 -Q¥­Í¶b‚mÐOP‰¦]B¥ý€¥Ùõ¶Rj}Ã× ÿÔ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÄy H>GMQz™’Y"(Ciå¼]_Њá-Ï+æ‰eS›$[jKQŠîGPy=H÷ÕåƒU˽~@ÿÕ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÇSöä:žG­Š-Ëó×ß8&¾ÃX^Â|hyaécã~/ÉêuÈUÎîW¹€½€Q¥¥÷l^^Àf¥³¶&{‚¼·S Àê]„n~Ò=ZŽó’~fŠ)?çüªå^¦Ó’zÜᤗ­ú=Ò7ài,d¸K™,K`\Ñ™]8¤y<€in§EgïP.òÏÁTf»Ýn/2Ü^Ïr\ ÜÉ`Q ®£(.À9žÞ f/¨<Ϋ)Ô æS¨̧P3™Aî{©ÍžÆhÄæ²«Æ f¹xÀ3\Ë`3XËpSÖd°FKžÄjF gºÜf‰Ôg\Êu9•ú2s#ðS˜µÁîc .RrK&]@·J:ÞKG,n +ž¥¹xÀ ÜÒÄf{kP{¡¸(É6ˆ Z ÷=ÌÑ€ìfŒAD&Uk‚ô*f¸.Ã[ËØén®4àÖ£/uz;{;¤S¥Œ@Ì^1=Õe°ìe¹ÖgSž'X3™â×#L ­F=Ïuz+c-Àžkš, IRÀMcGp'Öe°*2˜Ñœ÷4XË” æŒ @Ìhìê-žB5žèn[æ| <N¡ËK øŸ_æž±1 åŒØÐêfˆÈÿÖ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPÇSöä:žG­Š-Ëó×ß8&¾ÃX^Â|hyaécã~/ÉêuÈUÎJË,ùµ¥¯3›Ã¥0œzîâ)oë†ùçoá¨KØ~ÂÄb´p¼z¯ Çeûÿ:ô”¯<è‹?o=UTòî”i +‰“.¡ŒæAÁ®6@¸š¾”êod(Æ«‹ËCo‹*J ÍVÙ5’P²F…›­fHýZ¨±‹MB(nEÉŸ‰Ø*Q‡åjÑê–þt°ñle×ÁBqãçlzbÌéͪJ¢^¡xÞ”ŒzF,ÕEé œ_P©%p‡Â-õ/ŒªÜ©V†]q…íxx¯®Þ6-,$#ܵ 9Œ¥ÁNÓs'–‚›MÖJºÍð"«3‘5YÌ—‹Ÿë—‡˜ tjFÑ…¢£…É® >6ókkä‰ûHö=j»ÎIù˜~(¤þwŸðd«•z›NIësˆhª$´˜þ¼´FtlJv®>S‹…¾áÁø~á?\8ÉÃa³1q8Œ­¹KÚÖºL!OÏSï`$&u‘ÙˆªNˆžž +Éæ_ONàö¾ËT1Wn;A´HÛ9dÙãò˜æt鈤ËêCÿé… 5Êø«7øÅ©;>“j×5R4, œó„NºLSÅ2i›<Ùã+ K3‰ÊÅ·ƒG`8¨hÙˆhõ B™ò©‘Vèâhc¦¦aLØN8‹Ž3Ž Ê-dÞšuO5U«¯²$Ì™·³Ü:—Ïȳá™QÅ1³«ly®“Qñ´L¬™"Ý(ÑÖ˜'%ôɉ¡‰ßŒªX8ŠÅLwA’hjæ>¿Ž4„qVHɬvÎ9O ÃW 餱8¸šYY8jÙžŠæ¹kB´l²Í\öLÈËt˜Š‘Â)Ÿ ø+'™}?\'|.Õ£f-,]øö7= W£]Eë£fç@™C¦Øj†Ýc¡øMzV]¡Š»j¯kLÛÀU“Ù +ÆJ|ù’É^%õŽÌä!ÎNXP¥r¶*͸•²TJªÌfÌSñMy·H/σ·ÕŠx¼Ü{ø`O©´¥Ý8æÂÞä%]ÔuŸÍv[®ÌÄ'xr)ëg×ÂÙå |#DZ²Ù[¬£Èä¦ gsJG¨ŽRUÒ3eo#sù ‰|ùƒÚøKqíX¡ÊÆæ¬-¦—¤ÖMÑVB=á*%K4û¥þÙà %øö•ùRãØßoj¶,©õêLLF)±;­Q´:z: nÜí’yuMž\5Ž‡â½;*ݶk›SZ˜cÊ›{0éãS»*m LÒ&{‡ßB[|¥á‘Â6É™¹øwýÈW£b†*í”4r}z-#,jröt¹S%ÌøyF&>ÿk×ÂÙkÊ0Æû¬­-½.x¦¬£ÜLÈJê3hÊåõL˜‡TçS0„Ï.|0·]­„8ö>jÕSœNiðîâ¤áÛå.#Ýܾdnbè<Ó0ÄsU¾uÇl¸»sšœfÚA•›Í.ÙÂdQJdn(E8{àsSqÄÑÅ­GÅÎÒôü£5˜»žg”§Šbn+w9ûþË­ +ï:n©š½iÚzí΢³E}†r›1<Œ„P÷ùa¡9ÓÎ[¬¤ –Í]Yì±LéÖHÔבôÂÙú§`AšqÄX²ã8â âÖÔ–»®”ÛØÅå¥5µ4˜—˸ãâî| ËÍ8â,™qOºÑ­B6Í5" "™Ô,ƒ¬ÏÖQõçï¾^P·Jrc1YjB r²«Ñ£PŒYÃsªWÒ cK†m¼>ñj•-l¬e|´áñ½jªTˆek¥)oÆà€ãñíü¹>½‘–59{:\©’æ ü<£‡µœØqíjäåHGc(ìÑ©ªú|‰˜æy¼’k”Û– +g"‹³Q³&\d&ãØ󙬆Ÿ§ NÜçVh¯Œš…6by¡ïòÅ2ÒW5[1««k|iIxغNT±nŽÑeÛ—îbzâøÊ–‹lu¸ö=ëÛ¬nÆv@Ö%êê–H‘+F˜¤IÚ.ÔÜðŽE=ȧ£ãǽs¥!ǸamfJB1CHÊÁ§ à¹rR¹œ) ‘Κ™˜ÑñãÞó¥!ǹ®U¶ªXI]ÃA»ž•Muip¤nE41–S0˜ž¶Aå -×kcá=e/j¬jV“†3QòP©Þ}ì·\#™ˆNðäSÖÎ=¯…³ÊøGce³·iG‘ÉLÎæ¢9IWHÍ•¼ÌKä&%óæcƒãˆ±$ÆqÄÒFÓLhh‰Êrí@ÚH·‹’\!Ó'‰Èã†dËŠmZ>Û¤*÷I"Þ…•M ³"päÆG ¹Ó>ï.â°™xö±°˜Ìü{ÂIácš9tbÞ+tN¡‹Ùa“`É©³š7`»sš›fÚA•›Í.ÙÂdQŠdn(E8{àØM·Ö¦NP¿ÆW†­™œ“ÈÕAxö¬\¨e Oµ—ó>ë¸1¦¥fÂ[½›0GeF¥rsã–,’˜·³.c`\ðÂ…½¯ˆ³F³{P‹´Öò+0)ÒV=ÑÚ8ASùNžü?p¯FÅ MÚ•?^1žmP¼9LÕYÌ(©³='¦¯€a”M‹„8ö1yüÐÉõè´l±©Í#K]&óÛrlKø<;ý¬d˄㈱¦åHCc{Õ¶ŒòQŠÑ»Ù掛å%rÄÈᜠó¼Ï¨an®¾.Ü{vˆ¶g•¾Là”l“H×®¹_*dr{‰ê}éràWÂØ¡‹¿ƾK\‡JcY:Md›M©¢¡ŒK‹†BwééòÅ­ +ì1MsV¯Ge¥òsãënºbÞ̹sà +ì1 m#m‹yCQòs1ñ«.ƒ§Í°JKí÷ì(¥õpÅÚxVºlA— g™Ô±Ìe£–Åhñ.Š—nÞ"ƒ ­ž¦vumo5Òf>2‰•“N-ÑÚ8rÓľ™141;ñ %øöµ•1üqû¦­"6­‚w8Å5“ÈñÊé¢éá8n³rb%‰À8Å«†ÊÊÃVÌ×é*…:¶*iL’r PrR)¦R(LK‚Üi.SÄÝ•¶–» Š¬‡p¹dœ²,Šbbã(±Ð'y¦A“F…ØØœ]¸ö>ºÜD®Ïd´l¬+7 &Û._V鬦†6™„ïÅsQy./Ž ÈÒ5z1ÕE6vç2²MÝ9Mb›0¹=Ëäúq‹56T˜–fö¡i­äV`S¤´{£´p‚¦%ò=ø +~$âüØ[-a±¹¸ö5Zr¹gP7žtb™¢Pò˜8QSç¤ôÕð,г*­F/-½,ée£¨™§)ß1¤ˆ™ ˆDýuTRùÉߌ©°¶jécïDZšYO5–ˆJb/Óˆ8o”·ÃÓX—1 îÆ,гiJ¥àÁkÛÔ³WìâÕ³™„Þ¿Í‹}bcAÊ?±¡ÔÍÿ׿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPA¨?-r_3/õš¢å®CËRÝO‰#¬ÃÿT¹ùaþ¼uJ?ZƒœUúì|£Í2ü­1T&–^"£º›ˆ>@Í,ÜDî¥â)ktå@ö••˜W ÛÈá#ý±ˆ{â×(ˤ’0^ÂM–k¹-木٤xZv †·Æ»D•3„o^Å‘—&7WW©Ö¸ T“ëvzƒQÈòG5ãã‡Í«ÔÏå)áfH¶ùÛ&cX?F§¦&_J•¤NP»9$ŠŸ«sk— s°»þçì“9;¥Rм~Á,{ñÛ­—ŽŸú Oº·‡7«S PõË +R:q9z)YªbOTˆ¢»“¤«Wh_Q úòi)ºv¡øº5&éÔî¡öˆuGË«½ØÀ¡ˆ§/×)÷?o«[HµZB—N"«¡ž¾<÷NY,ÊG`õçJú}RŠR3ß<‰ŒÑŒ³uÃæŒ5Ú=ýŠ±”a^ 7ñàÕK ´‹qëUÞrOÌÃñE'ó¼ÿƒ 5\«ÔÚrO[œ#I{¤Á‚.eVÇuÆvKKâ5/cˆÿ cý!H3èQ»zÙK{Jë*IâY¯Ôù)»õÃ9<qo +ñu!°¥Õõ«:Ž ^Y¥Ö.££aÚÁ1pS’k–:¹§ºžöŸ~6!Å«ÅÏAËm,¼œdã9…ŒÕ6ë”­ZóGš +Ÿ³Ãõ±©Ž¸7t§´[ÍùŽªÏ˜ÿA•É“Z,NVàÝÕj ÝQÒèº)L¢]b݆Lq‹C4±eâ-65€r…AXBÎ/bäuã…éçŒý$Z¸Ò‡qç25~]m'葱¼¥Ï<"ÊÁÂÆx}·Öð£uJÞÒ­  ˜£XEÖ»Á[dþô%ÞHó™xxÝw }k³©ÊÒQZž¾¥Qc.dÝkL“E2†‹ç¦HNG¸Mö>»Vظz¶ú÷3Ù+ÛHJ rÓ‘°«Ç딦9*·òÃßÌO¿ñŸ_ãc“cÜMò4d øÖWkf’M"<4ÔÞPT s¤U¯¡~æ'ø¹/×8صJÄi¾O»2ôCj‡N8ªÒq%mu™BÉýÎÎæ©¡âí>wö/¼zœ‚4<]³§ÕÝñó8kdÕÍS N™Œ5æU2¾”ÁvWÍ›¤¡òÅ»f€Ûcä´Í +m,”üïOÈÓ_Ò•Ÿ4³&¨7jêyI‰Gj e°›ã8EuKÿ#!ÅÊSÚ uièêSó½NDRS5óɧPÓ±ìXážò­ŸSßàfaŒZT¨G‰›\>"¾–/ƒ±Ç>ÐëJ|ù…Œ„C7²Šæ¸]9I–-|çlšwî'ÞzÙqÉ°´#ÄÍF _EÀînÉejzÇë7ŽŸ7xîp¯¦œ*ÓÔ÷Þ\>ãÞ\!G’Õšn¶]:ËCWÙž´g +Å#%JǶ1HUœ¥%Šr’æÌ1n¦Yº×0•æ––®5–,•çvˆñRúiJ¢E m<äA4Ià\=ÿt©ã2¬,•µm¥gheQ¾›ÊNa7WxH¦|DOË ,ñ”ÅI ˜æÔ+ª*ƒ¦ŒZM’¦fÉ¢2ËÈ^IB4UrŠiß!4Ful<²ÖÕëØ×᱓F–¾5ùÆ« Ñ¢¨J—]b»"5:k(Ræ(w¢×;Ëç0ņ&ikjãS*¥g£¯oDs…Q´êW%žØãŒÝ&‘ësŸÀÈÒ/(eQ“-\Üu(š¶i$—ÊÉ^g_Ì òÉ³Ý ^:?VÍÇS;“füG–_·}Ú-£hÏ*V—O)MG·|óXßÉ9['&RKç¿ÉXYhå÷±1Q­›ê>¯[$ÓOjÉÄäÚÖ¬£™¨Üå*bÞÄÓ¿Øf ”éf÷³©Ï[/Õ½^¦ü®¬–H·ðí*ÊM«| FÊa=MÌ3ã"¦b¹œ{ça™Rzux‹Nµ­ü_“×­¼j:}õC±ªºÎ¤$ñ¬nvJ|Äs‹Š‡"yäÐ(Sž."»ZœÕ~·ñ¾O[NŽ¬–™qQÆÔÔ¹ajt`ݪ•B.“¦9ûÊÉð/ŸC¾ðÅÚj2ñªØšÓqزÙëNoHS‰ÆÒñK³+ +ÝUdŽ‘ÔFæaÎL<À¯-.Pš·}vFšÐk61kÝlùJUÒíÕLÞ¥|›Æ§Dä?ÈÏ÷˜£7ÔxÚb~=??Ðð„­­ê[)tñ< &û"e$‡ ÍÛ5‰ø¿•˜]­O56­Ó¯—OÏû«!ZÿåÖ;‰ûqƒ—»›äeãcÜCå-sòófÿD ýŒ°³„—¸›ä{Œw/ÊÄ6—YR2•­QSL"Í0'‰jU:¾˜ÏYRa¦¦öB&AŸ„“$¶bâ+gšï©Åa³{:³Y#©}}~€làÆ5ã™fîp»._÷AJ•¦¹_ylæ ÔO+}NH>zÕËw&º‚ˆ5 zæb„ÏHözPqoòº²Xebßô«)6­ð1)„õ670ÏŒŠ™Šæp ï¯gÑ‹IFZ’Q„<»6Å»cžGÈÚ ê.îBâ•tf·KsqÆj¡>[⽚¤•¡ìØÕkÌ‘f+¨¾Æ@y†«6†{ý§Ò¯$°­%¾ÕècjV²¨)Ê‚Ð[ÄQΦ“Ryst"܉ŸÍÐeT£,ôd¿Ú½, 1“IZ{}§ÑämŠ®žž¦iµç¦cÊYYŠº.K[PX‡Ã"g& {úó4ÅTêé¥[©šŒÍÿPlÊ×T…‰uF«ÞA«×ŽÝ¼ES˜Ï 'Ÿ}NÌcS©¡™“S5i[ÆÅ’¼îÐÞ*_M)TH ¡§‚܈&‰< ‡¿î…8©ã2öHJÚ¶‚R³´2¨ßMå'0›«¼$S>"'å†xÊb¤„Ìs jÕAÓFÔ¤Ù!flZ#,¼…ä‘Ä!Š®QM;ä&ˆÉ­NÕøØÀ¥Z4¨å—ª;ünRÙ}µõ/”É™¦|EJ\ÃCsÜï/œÃU‡ÈÝàä…*9¥ëöøÛ&Áÿ-UÑ$ßÙ"î:aòllÊ•GåžWæ7_XqBK6˜©îãm‘ÏZ2T½*Ý­+¬nFÔ©¹4•ÅLÞæÌ=;œ¹ÆÑ–Xêõ´œ—^l–‹!Rß™>¸ùÛ þúÓÍmL¼ 9ežñxó0«ô&OÃ#‹òKjrü¾’3f¯—ÐÀ´ ël<,œéœé+Ÿ#=á¬ÄI­¸ÃO-H}Oãqµ²lƒòíiD‹ýŒ€¿ˆŒc3“á aVmõ¶êR¬-uåÌR&9uŠ^èÉ—'Þ„»Éf©JÄÃQ„#V?mõ²5‹ýH|ëcø 5¦Œkq±›Éµ%— ,Ÿnû´\ej«„,^‚Qš%]Éf˜™Œk¤Púä{„¿ÀÄ0õ# +Üljæ§i,ân=mˆêÉå—¤í®å5¤‹Ö¦Ä>h¼9LmÏO3|]…oªq±&ño“Ò5JÚš¤’%-b¦R¹ÒCÚš.®Ÿ;ûÞ=Lú–&x·q.ç]о0*hx»gO«»ãæcÛ*£ÞP´ùbߨ‰×+§ËÞ@Ç1.8ruɾ&Ÿâþ?y˜x.†J~¦>6‡j´…IP;¦$©u#ÊòÒînÉb$lDp>Ó§†.Òžò­Ö§¤©OÎôæÚšâÛ_‹LëmïLd&”\¹ÀÄÌÓ iS‡^ÁMRj°ùvl‹\³J5Å!OšHÈ®c:‘PØyÉŽK›¢}Ūµ)È­r^¤hÃåÙ¶,jÖȧQ•ƒÆ§bèËë”YkíÛ8=ü%·?[? —ô…þy,Ý\v(¡‚šZø×årƒs5n‚&ÒM2×|ƒ^MÔØ`²ËK[ NQuU9?!QQœ²× %%|©dɆG=Üß ëœ&&5Óác+ÙNYÌÑÍPÏTš¹ž–bv •±NVŒÛçÜH˜™çÏÏPá>&’ac3uS”mè˜úFl©9*q¤`ë ׈mÇ ÷1,jM +Úý[áåÐêõíl¶eS–¥àd_2]x9¨ç%sˆ¶ìÅš×Ésß®f\ÞówÁ—G.›_˜“`æš–®5ù[‚6Ì]3´ +¨î’4jÈâ7hSúo”EW{í-Ëëœ#!Šú–n:ì¿. êòËåû¯•¸¬ª’yCRñð¯ÔIEÛ¨èÆ29’ôÕ×&øš|ŒjÑÍK7v]ÃRË<²ý»ÑvÒ¯¨úÉz¦*¦¤”‰Äk»%–3›†Ä9™“§Þ œZ9}ëÊUs}GÕë}ÐÑv9—FÖ…§Íñší”,Yže¡0þÔf\¹x[ŒÔoï]„•²ý[Õêl¤¨ÛVajU¼Ä*±…G$FITÜë‚m÷²_E<Ìk‚ôøš¸™ .&§Ö¾/›ëÖ×eì²bœ==!B¾jƒè˜ÒD¨„‘Nvï'ºùÓÏ!ïçß'dbhUâeØajÓúßÆù=qyÄP5DËÙ9ê±ÓpR-x¶-ãdíÈãt9Îu3ÎuByÝ./¹gšUâÛÛr•§­’’‡Œ…jjED#Û‘²fTÒWÌDû=Ìy¤¥74ueâ …IO+TÂÔÒÊ2)ÛÁ®Áâm µÌ¡Eˆ¥ôqÞs8{ ³ ²Òãk*j§§çzqÕ,•¦FW $F˜+åÍŒcß3…:UaÜÝ wCG†.Cõ6­M‚üH§çý×ÊÞµå ò¨{I¸j¢$,L²oÜb˜ä¼Šh;„Üôóż%^î?"þ6—q”®i•4… 骈ò„zઘä9‘Á:y›žžx³„«ÜMòÚ=Ü>W®Í(×”« K™dd¤ŸI:29’¾àù„!ÔM3îd!H.âqY&·…¼<·ãÒÅÔÆ=BZ}ÄaqPGT1é»Ql×)“Ó8Øiè(rç~2¦¯inÄŽó[K$Ò[fkŠ[&-9­÷O‰­¦y”_àz£0cV•™FI™Z-¼ÛÑ®‹yˆ®Ùb—°P˜g°eF”\yJŽµff¥[ÌB«TrDd–Mθ&ß{%ôSÌƸ6q­4•ðõá$°òø;[‚£²É(Ö”›Š-ãvÒtËs´nWÅ9Ûºn¡™È¶§¾Aj8ØCccŽäêðžXù|ï}%FÕ•Uj³¹bÜí£ÙFã$rùSN—.عcF{}§ÓäcSÂͦ’ÿjô7UG¼¥ÞÕŽ(Š…––;öøF9$Ná÷=<Á‹>iéIoµzYòaå…YïöŸAit{ÊÉŒCvJ"C3–Ž~¦)ŽKÈ·[ä&jgŠ°•4r¼ÅÂZ“20Çž®’fT¹iÊÁs”]UNOÈTTC†',µÃIFÉ_*FY2a‘Â'O@÷7Âzç l$ÄÂfª|,e{)Ë9š9ªê‘óW3ÒÌNÁ2¶)ÊÑ›|û‰<ùùê'ÄÂRL,fnªrƒM +&>‘›*NJœi:Ã5òqÃ=ÌAn¦*õøؽ‡¡ +xË7^¿OŠïe–SÓ”­<ÎyÒ.×bc Ýt sâ4Oy¿ˆšws3‡£¾ X¸Þ¯`$ +y¦êãeÞ»4£ÞQ¬eÛ½Q òZEúxF9®¢álBø‰§žjÝî›Òa™¤cß5JéNáºé–ö…õ pZ’{2ªÈÐ,òžqHÓ0¯!×bÍÊ#ä1Ó'1±šYµ±èÆ^¨6=oFÕ TU”[†E|fyæ’Wòw¦|B‡O<‹'|ßO;Š—.¶6; 45ÃŽ×ÕgÔTã9YZª«tÕY‡È Ð©1¿’5hžép˜™çÄ>x¢½KS‡Ëé^ÂS½x|¿u‹ßDYεÑëÒ³Ø.HéIb¤cœ†Eã•ÔõÄÓϸ|Ö¯z²ü¾…8L7Ô!òúbÛ6ic+S4tõ#Pº#ä¤>6*F=ó6pB&CŸ<ų/ðÅÉñÐãÜÇ¡ÉÑ…6ùZ1©VV+bf–…Öü“]î¹× ’æó¡s‡ˆ=’xLW£(ñµž"iöð0Í¡Xê Z‘²7»ɇž0f«õ~66TiÞ”žHú[VÎ锕N¼QµftQ#Éùý±;ü>Ö.bj}Uƒ¥j2ùßv‹c7±çÆ¢ix]r#9Ê|ÄrÍòÅI7 ß퉧}{ŠdÇîmã©fŸ'Æ×Ùëù_+Ú*¾´mVqµªÑ-a›¬‚î‹2Æ<Ó>!|£Aäù`ö5á&Hý¹LØ8Ï«o«åd˜JIämaSÔ +¨‘›J5‹AÊcâ”ìñ¯ßÜûñb­{Sãk"–5N66Ed Q¶=S5p–µI59Smxø¨¹Qb.µÂaܹ|†>ùÂÞÅʵoC«T°Wãg•¥GQv‘A‘xZQô+˜\EÌÄÒErGlH¦ésÒù‡"g>檧E5O­ü^6²ÕžR¡ ™ÄårªwÔp¹‹¿8ps¨±ùgÕggP’Z_[øÜmÔÄ-é L¦f*u©Å©Ü†b@ïJgæxw â‰úÚw82¦"k&¡g©¶²œÐ.)vò®¦ßF^iliÊÔ™†DˆNÁ2 8¼\!72©`ã *Gí¾Ÿ+0¡­:’V•§ä¡Ô…."lß»ÊuÁ«e8Ì9Ó¿¹Œˆâ!¼laɆŒµ$“íÞ‹·¤½“™*Z—¦a–!S‡}äÊ91ˈFk_[{MLõ3…¨âá +Ülò2ªr|tRCíÞŸ+YµŠ jò$ã\¤¼{„Å»SA Ÿ‡‡ÀP™‚Æ4µf¿©{”)Ë%°ê’”’ªéZ‰s5!cãÞ ñ$Ô9·gÎçžLÃiÜ)âå…(ßÅéòžOŒg…¼~+ÑDÙÖ¶QëÒ³Ø.HéIb¤c˜†Eã•ë‰§Ÿpþø=­Š½~6,ÒÂýBJ?nôÆ-·eö6µ/HNRu¢>JIÓãTŒ{ælà„L—ñÌ[0y[jœl(a/Jz?môßo‰£³§­‚œlX8Ùh'ŒÑ.Y'©¹+ÔÑOBùÌ9î¿4âÇæ³VeË<£K@A3‡Ëðé™u]BÝÄYÁιÏsžqŠ¨Î¡„.=¯‚ny#XÓUJ"V‘mdPY3ø¦;‹—.n}à¹J¯Ô8ÚW§õZ~w¢ÊAãªâ2¦*ˆä­bÝ2Q3ø¦YEˆ¡=nåÌÎØ-Ò¯õ>6½¯GêôüÿAQÒ&jÊ:y+hrÊÁT1ñM–"BæçÞ +¨Ö¥¡ŸÍÛµEj5tÒyÛ61²T}¦Róu;ªiJpìf$2Ò–@Ïò‚æ?´éÜà ˜Ô¥¡“ÎÛµ +utÓù»62ղ̙}—kVS‰¸ëIœá`Üáå;ã«6ƒz‹r²¦ +@“¨rÒÃ~'×ù±o¬Lh9Gã64:™ b2ÿÑ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPA¨?-r_3/õš¢å®CËRÝO‰#¬ÃÿT¹ùaþ¼uJ?Zùâ¯×cåvó>~cJç,àË•¿3ò§Ü™ªŒ†Õ!Ô´][ž+·ñm’ñIyg Ι ªcu‹Õ1µ?„ðóÂZŒvÁr´·§"-yÌmØwÕ8ß+þÂøFmÈgDâ8˼ó˜Û°ïªq¾V;…ðþŒÛŽ‰Äq—yç1¶?aßTã|¬:w áý·ˆã.óÎcl~þ©ÆùXtîÃú3n:'Æ]çœÆØý‡}Sò°éÜ/‡ôfÜtN#Œ»Ï9±ûú§åaÓ¸_è͸èœGw¿<æVÅì;êœo•„ü½†›¿÷o¾­Ã’±0â]íŽëÌñ^1YtB”Š¢¡ÓP™ccÝ:g¹ëj ô±Øyµýûržaˆ‡ïzv‚­¸¤œé·H+“”á=„Ü™=ì×a–iQQs/žK±* (Ìé”ÅYçãO[S¼Ì^#3g„Ãdr”kº›Ž·èiL¶~µRS” dôå9n·NÀê*IC2ª”%€.ÂxÄ’Y` +oeT»©@½Öéw3«.ä”ê…Þh¥7Œ÷1KG‚«Ý^ŠÏ2KS<朆–À«)%@:ŠšÁnQ’À¹ žêù¼°%ËKSšäô€ÑÝí9²šï-`2ÜÎÀy¢»Ý-Ž¨÷)NœµËzrÓ¶42À ÌæhÄ´°4`ZX‚›Íy*Gˆy¢d© +§§u™*Êp±?tˆJn» `ú± ®üêš&Ši&2Jý ª'‹ð,I3YU¯K/w5ÈB¥—Ž°UïZ¨G& {¯©L°¶°Q–Ïs\ý€:ÞuÔ®”¹¥­nŒ¹f6šUÌòÌ–cG(*Ïu9lŒÀ§I2¼“ñ`4“'âÀª×YË`-c-ÁD!uqšÀ»Øë6[Œ¿SËÇ]À²æ&_¨eã­û×é&U’S®IŒ’¿ZI‰2Ìi¢ONPS¤š*aF¤¼@ $Ð>©ÅVk­B¬cÖŽë°–Xõ‚˜BÆŒ!âƒË%ÆIAF–i²ƒËL^»NI%x’R” ÖQÖ®÷5ŸƒÙ¹ia¦¿¾§Û;SëþRøÍ…¦iL€ÿÒ¿€15¹~czÿç×Øk Ø?/––67âGÉêuÈRŸÄ‡‘Îæøÿ+´€ä®šùÍûH¢^÷ÊòOŒƒ~lïÌËXÿ ø\ØtŽEüÊÉç}Ú(+þfcÇyÏÈwþc‰¯Ÿî¾Ãd"¿Šë¾l=iâŸúßÊçÇí#G7Su·˜õPA¨?-r_3/õš¢å®CËRÝO‰#¬ÃÿT¹ùaþ¼uJ?Zùâ¯×cåvó>u¬Î‚ùËø2å=uãåõ'ø T`Ì_°õ5û¦T!yKžÐòñÛØ«@ÊÃa³5x¼^N= ¬µyDLD7¨\7žŠ”q’Ë6'náŠÊ‡9ÄÜ{ÿ[úûš2O3Îf­ª*ú†N¢ÖhÅ(›…”vžQue ‰„Š<3§ë—Ã@O4Í5…}TR²/)z¿%]âÑîžÃÉ4Dé$ë'!ÎtŽNÉéæzØȧ†[Äc4<{"Ô¬ +ÖZl"ºì™P˜gs*L¥ºEqº"© Ø(O­¸šdà±Z~=Í'k!(¹Yfª7NAˆñ(¨do$TrÌ_'€/ÆŒ°aƼÑoȸ;RIë5ÔÐêµ*Ä3‚'rDoç‡ÄÓ¸-Fy`Ê£,bÖì‚­­iýr’¹–=Gs-Ò\näé“é,×£eþL­šÚŽ«}ZÒ(™£yE^.}öä"„¸v<¡FëxŠÙbØíjŠÚӞ̔xÊ=ÑÚ&õËSºUòÍôîs!à_“aØ’Ô™¸éz‚°ž¨aߢŒ}C¡MîNsGº"„¾GìþHO[³R³*XÍ5×kVÙnÄvE­:í­ç¹s)À¹¾iŒÚ‘•‡K4\–§’’oÍ9w®ø¥ô¨'u#¼ ÕÔ«6”©ÍÕœ©\l¢›ŽP¥:ˆ¯# k·î´Os!>ìXåû¬§ð´®±‰ŒÐaªBZÔ+æϤ£ª–­“|ù¢i«sãu°ýmA•W1iT™Ÿ¨öµ8ü:•óW1lVˆá%s€Kƒ_]°§3OUõU[QÈS4Z¥T5ÊQÚg^êÊn„nŠ<3ÜÏPdÑ‘‰«gÝHOUÑ5ÆjÒ·|W N팣$N‘ ‡q3¤±4|û♥0õY¤bÌÙÃXAEIìã»Z¢¶´×³¥2†‡t£DÞ¹jwJ¾Y¾Ând"< ã:Iʸ‹5úrѤ¢âªSV¬ÊÑÝ7ê…ÐLähñ˜„U©ÃS°õµ.vcÞke:i¢Û,×µª¡‚U'‘1…pžRÖ!v§Vò*n„#—<ø’Ŧ‹Ý·©žÒì^2‹½P¾ÖRŪ¥Ü÷âý‚z|W4·Òž?7ÇÅ7-iÖr×d’Ï#g#[î’LZ3;u[¶áªØø™øzyýøh¬OˆorÒõÚ§¨ÛÒÊÎ&.Iºæ-ˤpC¨sœý…À› n=¤¸ËñìyYå[9h/ßN2µ¦.áŦ¢~˜yÙº?`NÖA4¶eI=Ù“PbÌÍ•í¡«¶[MÒò ™åŒ];QGmñýNrñcg„¥v³VÏ’:µ«¨ºŽ"µZ5Ó9„_«æI¢³4qÎEˆ¢—.\ ÜóME§DOZ%¨6<å<ú>!C[ÓrÔîœ:"gÃÅ[°"àh &š³C™¶š‹cR äí㪈¹f1o’2gU¿§˜©13ðT&zb½ôóE¬ÕRV¥gÑŽjR²ícËŽé¡Y¬ÕS#ø|M0Ð@î¢Ö+Ézà‘*ªjb=¤âòò¶rÌê¸68çÏÄPšX®V„Ðz(‡ö„êµI35»Q9iPA™ÒT§Q¶93þFæ–MEºµŠÒ2q’ß"EÊš‘ç1Ë÷ ª¶X)¡R¼x•¸«š†´§¢b[Ê2×yg‡héÙšßo u/˜C,Jóׇ´ª‚¨´+/ÖùjôT¼Bhð¨5;W‘ÁðÈ©7K‡ü,!%×!UÉq‹Vm0úÛ:ÐæÝST½C,ÊîRÆ=Ó”q |—ÓDê)ÂëUjeƒUvã%FÊÐFx™%ƒ¹e +Žz8—Åï™Õ(ÚRÁßkO[”£/Æ[¯ê×Ôä…‹# +ZX^-ûȨ‰ÔÌäŒ 5+¶8šöc”¦í­¨êö03QŒYü#dÊå™Õ9±!ôÓPeTñib[‚f®ª,þeÖe5PÊH”ZM“;TˆBi÷‰çCøÔ¶]ž34 ÉkN³–›$•y9ßt’bÑ™ÐU»n­‰Ÿ‡§ŸßŒ©d•4ó<ÝVueV<‹¤¦˜µN.:I5³ÇÄ#Ï»´ ÓâÍ5WÕ5kZF¯3…’f»¸÷¬S:G¾ßM%ˆ§â?Q´˜†“EZ¼Ä•¤T4¬‘QÖôÌé8Õ +Óã3ÀPäïó¿îB¾Ü{TÐÆ^®^:¼®Ó­BRš¬hÊ~/È>t‚rFQ;×Hñl4HNÀû’œ¡„¿Ò¶2Õrù=GÝn5E£ÖœE%äëÕT·ý#‰×[ß3H˜§“hg’1]å ¦þ.Õ¼±ÛØuøúi–;{¡ÿP/âí2ÇoaÔ?ãêü]¦Xíìak~´7ÖOAÎU1ˆ áÔ~K†“Cj¤lwh k÷OØ +§WöN¾ ÉÂaáVxR‡Þµ‰©¢’1AûP´'¶­RÉUH"ÝÛü T›øZš¨"DKªLEý„©“ÃÆ…8Pëâþ?Kžbñ1«<\Žó)y¡§,õüÆ=šÌfçšê8Yb+”+;f¦¹qKb—­˜5½ÉzKÕ„z¡Õmž;¶Ü‰Œcoå¼ëjõD I £•4Œ/çPÿ¨*¿‹µNXíì:‡ü}@¿‹´Ë½‡Pÿ¨ñv™c·°êñõþ.Ó,vö8kæµó@JXrûhØÖîË6I4ÕÕ\ç.NDn\¹öø£sÈø jͲчm?+cf§7""ªâ¨e ¤c^”40ÕÇ¥ šhUŽµ=ó)y©fª ª.ÍUˆl›DÚ¬Ó))q›E”!®jý¾PC¹o‘åÃÞkìÕÄb“ò7(ƼmÇ¢ +—©«Õ<°Jfƒ×ž)¼vv¼Ë½†x^;;L±ÛØúo@¢˜õ¼™ÀŠÇòý9ós¯ÁŽ$¸o‰$¬O[n‹êWZ¨ê`B…±Áºpb•9 +uó&·¸N[¹"ç¹î3èR»Wˆ©h²¥QYFÒZ±E‘På<“Ä5M2ß9–SC3°ïÆ>f^2¬&b»T¬åí.-Á®¾N¤tôÉÞÏÉÞ‡l~AÚ´X˜y¡+n[‰“‘ªhÆmyÓV³ïV»¦›|ïCæ œ<°cò…lóËçz ÙQ-V¢)K<´ˆäÌmo‹jÊi$Ë¿E©ÃðÐ>éƒÝ%¢³…—¸—Îô¶ËÅK)fê4qtŽ+#™ÓÎß’áÈ/Æ[1kÔÍN/¥ÉÚfÎê(96Ïž×Òh'¢íÑ"Jf=4ù~äjñko¨P½H|¾†ærø7ÏIO³/㤌kGäôA‰ÉÂJ‡—Óeù“ìçæ9ÿÀQ0sÆJ1ù=+õ)B8ˆGËè|¾f”YÌ\ª.BQ£ÎÌ«&ðçÏ÷(»ÊÔt“Þu,ò^m%¸õ²¤Ee9/5 +ÑC¨æ®³w"Á1Ký˜·‰¥ÜB ü=}$ñ‹þnÏ?ôd/Ë7rÅšn醲_ŒÙÍS¹`ÊTùE¨×FTÙÍãáGå*c(§Kõ8|¾–XIZxíËèbK#³ùÊŠ*Mã +âB!LJ­›&‰Ò/¦OŸº úÚªCåô4¼‡„´g†Ü½‘r®•†uƒ²ËJ®™”¼íÉHUTÄ>'­-z³MRHhK iÙˆ,aR°¨-6%{¥xY㽺m37x‰0}Æ`ÎÇF5)  ð§=ß Z‚¾¦«:B¡”ŒxÎhÒ%1Z5:J—#luýqNÎèWÃYN»’GfÎAM8÷Ex^Vó6¬è¤¢Ô1r¨¹ F;2¬›Ã©ŸîQŠ£šV +¶IšU»Tmjª>Ñ bLu^B·b«Ë¥Ì)/‘s’ÿÊHaM*±3B.@ÃHµ–fù’…Q£„Hº*ÚDP™‚Ö#uÜYepVœU4«¸Š›¥…uYTH"­íÈÎ\3"ŸîÃÃq,ÿS·‰µª_Ææ©È³‹£êWÌR¡­®ŠkÜ,DN™ ÷eûƒO€ÂZ¥øô¤8ÜuéÂz'¥ì²ZºsN«0xä¥à ð¥.z‹dÇÉ’?ÈS>ùàogÄ]æñ„\µ±ºÕJ¢Ñò(‘´ÄšÛ$Ø¥ºDÖOs!ÈNÁBú~ï°|Mño°5²2øÁÄR´ÌØU½|¾—m-„ä¥RèÓ²ˆG<Öyc®ß—1‰|—⎩Zœd/^wžÉ›#©%—š¨êBÍI·‡”i‚ ÈÕ&ëyü4óFÖ”ÝËKŠŽž<{¶Òéz‚ŸV!:Ò´}/I>pFÒIYäçPûŽ6yí”ÐS@[¥6·“áãNGÚstÚÐõR)©‘8Y”¥à“&8×P–Õ¾Cwˆšô~oKJ¤ÿ1”/ÐÛ_°ä½n6-RÕGçô°½‘Ù¥E/FÓÚ›–jC&Ù$Q¸‰;b ¼^*H÷»b×a°“ËNö÷¡·Ê×í†@ëÙ„Z‹ñd°Ë$dHuo¦Øû­Í âÖ$;ݱeòŽyªË¯²Ûb^™–‹­)¨ºþ¦{5 ñb)¦-[ë£}îQM<üO[ÝDcv&‡Õ!2²¼—H¦ÄýNckbø„¬~tÈþqVK19VlÔ¥aVq-jš…~‰Ulò‰]“7Š`&3çkc/Õaòú!)g‘3=2±”§j$ +ÕS}ª‹Qòe~ë&bž¹,¶Ïæ­Mi<ïCvÓôlÕMXÚ2‘us¸R§(TM²(ªE=,LýÐ[©RÙ<åÚt´Õ§ó} ~«uGÔvH´Ì²H7}0ÑgÎJDŽ£‰}-3² aãõ8ÁUz9jI1õ3©É3‹£êWÌR¡­®ŠkÜ,DNBîË÷ –¥Ùøìwq46åìŒvµúÁŠ–,¾OžeAƒ%XËæ¤!8cd¶hú¨Š“|Ú´šŠLÒÒ…É™,B¤\7'ÏÞÆûˆÑÌ‹`èi!'ëmóÄ©MÛ«dH(ŠˆÎ]šòªzXšbä³i¥[›êQŸÍãµ–àlž¦q¡-2Y"¨Ý2¢Úás47±¯I¦ëlåÁÆN©»=­*ºžš{h±HÂSç¨ K±:îMâ-pÝÈ ‡>Qòý0Ê£FXõ­T…XuG² Nò^B:—µÚff$ñ ¨]}fÉUˆ©ÊÝâ۵ç™q5‰ôÃ"l4°ê`C4c¯Õ¹Î¸OËlÌè}`ÓbsC©#ÀU–0ÖÃÕÿæK²Ï‹ì2 ´!–”ðûo¥…‹×Œ’>)¾êÑ­î-I¹[;b“嘨´±ÊW-qTý,|ò ¸e«<~ÛèZånîCíÞ¦<¶4}LÁ ùzÚjL‰ÉE—&zà‡HØŽIò1~…xFUŒ^Ó9¤4õ¤¼Í¾l²° ‹±Ó›©‹•–¢]é‹ÃÉž"EüPØâa™¯ÂË Y*JÐabåÞB¸pb¹g¤³‹¥ÌE²gþsð1iáYóâeƒ†(£YÔô,æ åej‡ŸNI)&×Ê{ä]±ÈŽžæB—â´²ÝÂמxeðüímæöIõªÔös) 8hw/©÷˙ʑ|3ß&2WÌÓ¼OréËeÊsicš?cõjj´¼æVÚ.¼œw.ñº'{N®¥Äš,K˜kn)§ê”þY½î‚Å×å£VjÚãÙ E3ELUm£-W=…M9bÉ4MCäÄÏ> YvÖ×7g‹Êä…LÈRío!P:šQE± +»²‡L— ™¹v6[ÌØ`êw,%il'$m&—F”B9æ³È›vø乌Kä¸3¨j•­ÄC4ÍKjù¬¡ÍMWÔŘwù(ô’fF­ÛåžùûóÜÌÒÄ<­ƒ·Ö§)Zù•™ÄM@ÖNÔI6d_ZQjÙ#äü2"ç Cß¹½îbì؆40ñƒqÔh@ÅÙÝ-O¨sÁµ¨!å.º—•11ŒuÙãtðE©êÆ,ºrÂW0?nͲ¯X© ŠgUE l“|¾0g£¶”ñ0ƒ„t»5)Ë>¡ëD“Â,,Òïn˜»ÜDƒ“ ±9)ÆÚ´ÚX´”d(i¸ØÎô[%­k:˜ùÉ32 MÞ7Ýý쥸ϩAŸ‚Ž’:n60C¯ˆù¿áÄ?Ùäñ2]-8hïÇ[“ÖÉ(Þ"†«:1JCE¾C;„wîÃœ£•+3ñuá\´sâ¨Õ9L¤ÅEdØg‹´jÅk„ž=þÈof*fÎjI6ÏžWÒrH"cÞhº(‘%30óðżDñ^Âa§‡² 5ITÕQijSõ‚°xr„)’+4W"‡É‰pçÄãl e¼ÇÌô‚*ž£u,³¥êÄ\”Ñž¬EN\=ç 4î6SM1g Á“Éú¢Ü “Úüº(h8¦X®ãåɼ]2} ·?ÖxÚ»$4u¸Ø÷Ô°/«ÊͬlŠk'OB¢ÕýÜ3‘)×Ïp‡? ˆ\¿s¶<)Ïõ6“É¥­ÆÆk’6NXØOå…ßͪ~ˆòÆùLØ0—ÀÿÔ¿€l±Ž¨ù7Åg‰“ Ðïy}Ž ‰$>§ ñh­¤ŽH9ÍfÖ“æEÔL®iÝyª$Ú¦wÄÊò]nn¥ÅßxS<újx$¬V|_²àÜáëC ǽ—}}_ßÕ¿Ò‡ðNxwû!÷æl?±ãð//D§óœý\ý |‡ô£á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÜ©|ݶꛩh%&R íbJâ"_ÔÝHL‘;Æ!õ/“¨ØKÕËø§'ÂÍ +÷ïý¿EWLÃ-¸ôAÁ*ú‹qA̯²…]+¤]«’oN©žŠ¤ï –SÄwXñÞh£4%™–lgV2ËÒoi•v¸•³¬(8ì\ ©Úzn/á©pˆißí—¯”sF]#kø¡ü hRÜ´ôIµ~7VÿHš?ŠJiažý~/Á73~*KÇà^~‰Oç9ú¹ú@+ø/èþ ká$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥øÑ)üç?W?Hà¼|?£ø#á$<¥ø<¯-úÍb“jVJ˜Ô’OHwæ¨è™Oh?¥Ó¸Eîu/öe »„ä‰ð“fŒ}â£ʲbahz÷AÀ™ç.ܱx‰rÝC ²J=3¦|3IiVÍ híJYcx9ed•4W™©šÖb]g¥R9ãXꯨÛ$b¡0ò£ŸU5s×ÐO¼1Æ“…Ÿª·É ðnp“à ñërÑ'7íwÔþNÿHºŠRxwû!÷ælߊŽ~ìôJ9ÏÕÏÒïÁµýÁ*øIé~íCò$Xꤞחq RÞ׿·þ@~ ý¯èþøIé~QDI(xjŠcÖòg+ËôçÍο8’á¾$jS•™åR5ÄÓ:$M4óûñ~5l·O¸öµÖÊ#êÙ&} *Šx}¶ª#Ø-¹Ü9¨â ù:2ñíxRöEM%*c:{!!(‰Û:’|ãÚˆöø)â{“™^y<ïG•» i(ú~¥6B™ËírK®nê#s?€1©Õ¼Ë¼Û,’ùÞ–<°ª~.˜-&ƒ§¹ +o“~SDqJ²g"—/áèf Š¸¾8ƒl©ÃåôùY¤bË6fÖnâ¤>_CM|άã±Ë[ULRQc¯€ÒP‰$S¨|CÜ"mÆ|Ü¡ ëGäôyZœŸtá/§ÊÈÉYó2?¦¤—|õ˸«¶EUÖ!ÎàŽDÎw'ÃÏ>fž`±T!F?'¥±«ƒŒ*B>_G•·j c)(òj*jNŸxð¾œ4[Œ$wç"‰©ŸßUC¤…â±>]›¶† âìú<Ìc +©Ì²‡]ÕÔÅpáe4ÕXü3‹5±ì½% .÷l5žÊ6Yˆ¶Y­º×rñ0°q±ïÜÿ~ÿÉtæî^T¥Ý7pƧñ™UdîXvm©©šö"zï¥gë+ƒ»Û„ÎuÛÿ,Ý ÈsTú”>_KU‰ÃÆI¯µ·ó<3dw9mTG¤áÂîLƒIB$‘N¡ñp‰·±þ©—л>2Km¼moX»,,[xæçª'^drD’*®ä1US3'9ðóÛpîvÁb5aÖ¹ 30|•„±UóçÕÄr +cºmó º‹pÏs0êwƒ*Zì ðãÞ×Oc”îÇÛSmÓY£6ï{y%7U¦|Kç:‰©æè-ÒÄw*ùžŽn7·QN1«âd!d“Äjñ¦¡K§á“¿OL[¥‰î™UðùåiÅ£[ìdÔªï.ÙF'`eÕP™Y‘P˜zxw/Üù¯KjÜlQ +W£ÆÖ¥LµmO¤¢¦l݉C˜¸)£ø[Öãbä´-G¬-ævoÙl«êµ³dKu4R˜!™;'•9Bx÷»a¹ª©ÉÒKNö÷£·ÊßiY{<*\®¥¤ß+Oº]Ûw.ÜW KûñðóÉŸÞhZ—”g‡{¶™U9:IªC^ÞôvyZåyCFÚ$Qâd̪dÄ"鬮¸EdψCü‹W»"z¡všÂœ|Ö¬^HΨ×ZPiuU‰„¢Ø×ï‘ôp›¡ûâ\ çY§O4lÜõ, z¢*NÑŽD$®ÙC$k‡)%ÃÜB¥—14³R‡ËémövwÂRX‹82ñ1ºÖ‰Lb\29™çÜôóØVº©ðßU‡Ëèzj[2‡ªçiê‘Ö*rª^n¢F!q Ø-¹ç“Æ8K‹¾7Ž¥™°zJÒyÞ+U§èÖtÔ„ô“U:³Nrà§1.é“3sêÔ¾O9v• iüßCêªéHºÞ-Ì<»}EÚ8.qtSðCð<“–6WVŒ&„ñÙ—µŠÙX,yœ64ÍE38Ñ™ˆ£v2O1[”éèäM4ïá÷âõLVH]¯†Ia·7gÊÉLèÖlê9˜Š,gOš ÑDÌbaô.nwïçöÁR½æfá°Òq³Êù&hù™øZË8m!S¦šˆ„"È©¦’؉©|ƒ&¤×•jZ9kñ±ðžÌbNάbu*™EÔyxÄÜ΢$CqÜó48w÷AO;ãˆ=æpúׇ÷{^²YT:Q¼9tT)×^µ6!/¨³{ûö矉|ÇRåÀç|q™Ãë^Þµík”]Æ…V=’Ë/Œéwk*äÄ:ª,à÷Îsᦘ®¦*Ë”éK|ÛZs‹9VfrsQgI+1FMBa(D÷2+s~L™¯ÖÅ©qW'£,ÎÖ5aævoÝl«ê¹³dKu4’˜!H™;'51p›c‡'Æ^=®B·RÞ1®—HÜ!ƒ=X3´mZ6gC1^=‚‹%:vc.b÷ÜûÚiæ +ñ“i"§CG <ï[n?²ˆ—èUíÎáÙKT†yuBnxdÃÜw<Íñr\F†U¸à´ÑŸÍã­³Òó?•4­°!-Ò”³DÍ'¼ ˆb埫ŽÆ¿¡¡/\ÝžÖB¡lí®j ù샙Q÷ËW +a¢D žšið ôöhõ604¡×ÈïhÕýBÚ²¼zéëerØ(fŠ˜Í”>%Ãâ&¦ö|ôÅTªM³†–=^¶‡aúÒᛄëê­RµPŠeˆt”Ã>ÉžNð]›,:øìY£€š=\v²4ÍÎrrŸž]EŠæ.ÉÓLÄÂ6XŽïî}‡€1q5²Ë4>ÚÍ âdÛ¾ëíGF³©žÀÈ:QdÕ‡twmÊ‘‰pǹ‡Ÿ¹èg‹ÓUË4Ñòz#G<òCÊü­(Öuävµ¿Qb%” æò!}¹ñ ¾&§`(Áǹ\ÄËy›¸[Œú×&§Ü±]aeõDšSdB˦žžÆ­„u‘ì&„9í+8ñïiL¬>¬4ôYä$s8\9 E\Y‰Ø_Q;—.focÞue¨òlcǵ—˜2F5³fmËq&é‘$ËØ‘2abÔ«6fÎ:9eÍ°y{ú˜²”±h:6Q´£OM’ëŽN‚ªÍÑ$ñ‘7;÷97=Ó„}ðdÔšl¬<ŸÝeð=zö·5e@GÖçˆYÒÎ9‰tGlÜ´1 +ªgì7DÔÌS×)“®¦”kjdvy[RÁÙ¿••˜kVTqŠÉ-Œá(ù"7HǹsC'2ÕkêrD#[TÝž/+zQÂ2ïÊŠjc*Àü»>Ê°pïï;šw1/îž &¥æl°²jj®©o*ú™E+¦mWhše10ŒG"‡¿¹ß¿™ÛÙ«ÚRL=ænì‹$ÙËUoŽ:f»§qBa‹¢»V”ËÌÿ•¶u/PNÏ•ª„]ÒÒXíʲz¹†ðçY¡É‘ž¸ëò· Ù£;F,fU%!¬kŒ¥ºñ®‚¥=Ì=5Py‡ÆCríNM’=þÈïmˆ‹4[Öo¶}U¹ÉÖ"øf1[­†|K‡&OžE=p]­Š‚Ô¸ %ïöG{ S”k:eìôƒUQY‡Dvઘ— +{˜y›ž†`눴̚8kÁòJ©5\‚Îx³\‘ÂI˜™;‚' u‰‡~ú}ž »V­å{F…¢Ú¶rÏ^ç*ªÀéÝNAb0c{„Ò>úx¿v-xÿ+)ÚÐúV¨ÃK[þÖœ+9™ ¢¾vsØy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢}ñrŽ¡6d±ÐrÝB(Š©šáÊtź´óB˲T³’Ú–íDåûµCm’ßÊuË^äúáÔ¿‘aàÜ¿Ÿ… 4U9.xÇãjÙnöËÞÿ+e&:‡W32’ŽfÞ9z±×ráC¨²ŠùÌu‚í©¨|€+Ê”=Ñ L÷HZÕ<Þ¬=mCªN<Ê9cK¹ŽUª*i¥¸'žKûßk\fyãyco’ôŶÃbá/_‡hµÞϤ³vEŒŒfŠm£cSXê‘›tô }M3öÃúàÌÁá£$!v+™°Æx±i@e3”ÌS0LÏbJ™#•BÅ1Mx¦/SV…×džÎK¥m´\¹½¬,½)馚n$‹8ñžQ†L2œíÓ%Ë÷[ý˜ÑWäùãË5¡²ÐlbØÓÄÂ× ¬ªÙ +êaôÔ¢˜Ž])xÅ.i'„'‰ök…£‘‡‰«™¶UIش䊟doª›|±?¯ÚrWPxjŠcÖòg+ËôçÍο8’á¾$ÃCjŠ¯Š¾ü6é¤!á}a¡‰µEWÅ_~tÒð¾°ÐÄÚ¢«â¯¿ º@éx_GØhbmQUñWß†Ý t„Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢} Z¬ñR¢Ùªªš)¦[ç0·ì%»\ØuAÄo¹šÝö5W!E£.ÁÓREÛª‘Lc”¦Q3–ñÓÓ «:ÓÖÝ›‡ZŠ™N©Q."˜e½†NÌáœ}Ño%—+v Wv¹´RA3ªs{„Å þ-äZæjõªÍ—.’J¦tÈP™`ärf$bàÎK¤Q>)}ÀóJ<Ä>ˆÕ!^³Y±£Š‰Ò½ï¥ƒ5Y$“ptNT”1Êš†.a°ôî]§©ìð{°u(® 6ê¹Víë‰&sŸï1ìóJÖOGÏRö¬â—æ5º1 +Ê´M´.ÃYk>öo¥ÎtÙ3YÉŠ[Æ*I[¾ö)Òš7Ôòš˜`‘Ü:‰v‚EÒQVç! îÃJhȺjZpŠš6-Û§¾çVf”Ѿ&lJ+‚ͺ®U»{ $ÎsýæSFûžÓòÑ©ãôéîFK4Qæk­F ®ïlK¼ÒeŠŸdoª›|±?¯ÚrWPxjŠcÖòg+ËôçÍο8’á¾$” ñ𾉥<|/¢i@Ï èšP3ÇÂú&” ñ𾉥<|/¢i@Ï èšV袾( þlCëÆ2ŽX*¡RíbÔþ*¥ü$? ¹€Ž¢½K1øÊ“©iËK øŸ_æž±1 åŒØÐêfˆÈÿ׿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢g?3GWm*©û¸¢5¼¯'âÿøA^5¯.‡íY¾m]wìy^m5«q¯Äå~_ç´k¿—kL–KsO(ÈP¹sÝ\ÒIÌå¿UõõøZÙòÏ?;šÝvñx-Š¶²…3^Ø +äÔÖ²=Ã,ž¢'>¹õS#<òî±sO iy§Æ¿Ú¾õ©g Sy¹×Åó~ó­ÇêÏó YÇÏyßð³Á^|Lßm—Ñ.“,}-KÌy¨óV¾_R>þY¬Òù=Í,lœ÷.{±G.Þ\<~OLr=¦¯—Ññ˜óL²bõÄç“h‹uÔ\çÔ%Ò¤™:§1ýÀ³ >42F<ÛÕóœ\eîþóꃄbG’—¹ãçi¡=æî¸ùœÂó'š|­-;V—Æ×`&E“uÅÊ  #ü»-Ï%ú¯5úöA¸ä¨Ö´þnÏÕR£nU¤M=[¸˜o=%«–êGYuˆbéuMîEª4ð’ÂhËk¶¹£âÚª¼µã<±Ùâ~Úõ¹T´=O#IÐÒŠÀÁÓN`Õ³‰b¦æ²«aï§Pä1óÅÌ%IŠ–J•uÍ>m½èÇdaÞSå)°ÓO%>©2ìïÂa®EÙÉ YKÑ–›×Q¼ìüNÒDKsM‚w¹ Ù­¥ú«Äf—=*Ÿœe·’1ñkgáä–0’¥?Rvy}¡cNíÕz•‘+¥MQMIIÔn²È®þPNÃøá{K /Ö£ ÛU£¾÷}åÛZÔy»Êë^s©|—æ{ç¹ô‚QB­xKÜ}ç֎מÓ4QyhöFú©·Ëúð¡%u†¨¦=o&p"±ü¿N|Üëðc‰.âCÉ«ÖÛ¢ú€U/×8ØòŒÍ˜ÒŸù¸ÿ^èjåüÌGŽó>§Åaq²`€8á悬*JHôšÔÑŽuÔ|¹–l_µH·GéraŸÉô»‰üß[YÊs觓Îõ5[F´= £êjqñ’+ÇfMRܾR8rDÎCý1á¨^y<ïA[žI¼ßKέ™ž«ê“Q´ä‘¢bÔŽå¤GRåËtq3u Ÿ|U…ú…6üªqUc^¿>F†g5ŽÎÀ·“¨OSó ˆø¤ÊÙ¾SyÏOLŠ\û¯ðOdú½>6ü'«5xö¹&5°tÑ?5¡õãõž6¯Qk§ñU/ü*€0ŸYãkÚÌ|2dêXrÒÃ~'×ù±o¬LGùGã64:™ b2ÿп€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢g?3GWm*©û¸¢5¼¯?âÄeMÊ2á±3F;%Û²>(íX“øxycéòÁí°(¬lÚÒµ’n3V>Mí=.£4µ"{؉2új(Bg—¶ +1ü¡-|<|°û´¿Í‹}bb?Ê?±¡ÔÍÿÑ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢¹Tçº3H2YTg¸ºÜc¥Ší ã™ ý)Ì™ÊbÅ1Mx¦/y;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãš›@§ÇfæÚ t¬x÷ÔÚ>;76Ôé¥cǸæ¦Ð)ñÙ¹¶§H+=Ç56OŽÍ͵:@éXñî9©´ +|vnm©ÒJÇqÍM Sã³smN:V<{ŽjmŸ››jtÒ±ãÜsShøìÜÛS¤•ãšš¶N:76Ôé°å(Æ·2¹0Özmc4l\aVÆÉÞéõ.Þ¾UÏø¡o Ó­Õ–Î:ÖF‡)MFÎ;Š|õ¾*ñkvjb˜gP˜g>秙يæ´K ¾Z®‹…­Û¶k4Ä®’nàŽQ)”90ÖO@÷ÓP\¥ZËUh]óÖT ~Ñ&sÑätšfÄL׎S¦~̇O<ƒÜ&*¬8‚î/ +ü{`Ò¨»*¦lùEÖ†*N\oŽUPë¸1; ê(¡î ˜šµgâ 8l(ñí‹!Œ<Œ2 ÓE|PAü؇׌\l–‡È½†‹µ5¦’w$i=T²Rnzˆ_Ô.OØq5;­£ŒÑÂ̺´s4 ‰ÇFæÚ ½RŽÎ>e™p¶eJ&”-ÀìrUï,eoê“P¿°”šŸ´x#]Š©ž7eÉ-›àP¬ÿÒ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢jÐ1ž’‹"…!Þ:A±T7øwþœ[«RÊéSÌäÛ¿2ÑW~ö +Ð`d§›du¯UeP]Gi¤Kä¹4ÃI7+ê½£G¿z®ÛSäë¶bˆÕÐoç¥ê¶4ëfËmpMlçGQ{›ŸxSrFn3’0„!ÞýVï[m¶±pØKµt,>V ¦à í*]yuWHÇhUuJ× KǾM->Q£Â0¶¾÷©~® cÌYüœ=\â‹1u~”Ž¤azšB¨®ªØ9;Å3FßËa6Ø]¯—ÛK,¼ó4˱«j*mÌËÌ©äZ/%0àÆI“r8D‹“¿9Ï~âd}7,eÍG_{¿±—MW–ׯloV˜†F¦¨TF_%Yã#µqrþÈ©žLO[?üRåˆMª:£ÆÈ.GÇdy/2ÊLŸêA¥h°ør¡‡åEPPÇpB(ŠWî\¾r¸}n¢~Z„;ѶÝVÕÛØs=ž?F›¨©¨†¬Tš1N(]×äXÿyáeÕÆk·Š=–Þ±J…ß5¥PÎ,Þ¡}NºtG*µMª†U2Ü!²†Ä_üeá'Ï ù{#oSJϽ­œjž–œu,Ý«I¹5£ŒuJJà`ßTýæëÜ‹16Œaß„!žû™RáîÎ0fŠ­Â­aíJâ颫…’kîi [ç1ós ©øú£US•c/z?E—/'Bf³›!”´¨ÚžEƒ„Q,#c8¸­ûËj7G¿ÂAC{‘›ŽÆä©qÞcàèf’1i–uDÆVÎ#)V°§ÊÝ4Ì™ß÷VïIpec±Q’œ#_æõ±ptóT³%ZeÇY³GÆsh1ä[¢ÙbÇ$š¥]b/ªC’åò\ë÷Æ–3ÆÖ—ScŠäèJÙ696•YGÇÜ~ýú Ü#sRán;nGYøšd6éàŒ©ùBXÃ7—²6õ1©áìßr~gr¬®¥5[ETr°éÃØÆ8¥WQ$÷ã¶9ÉqÆyþðbSå¨F0¼# õ^Þ«²&äÈñïlI •a@ÄZ"ñÏ®ÍDÈSâ·2g:d9ûÃÜ7ã8Ì“•¥ŒÙ{ö¿«cnOŒ5ñém™j-xšj©Žà‡FeyäH¥ÎLÌ0oßùf ®L^i²ø¡žû”M†Ë ¶`Ì“[m@ñPìõSo–'õà;BJê^ òÏ3?:žØjUs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹Ol5:žØj.u=°Ô\ê{a¨¹ÔöÃQs©í†¢çSÛ EΧ¶‹¿5:ãÉ%Ëší­UÒ¬êæ©4yª¡Hš¸ÅÂ5Ã^¸r~ÃîõEÜ=hËÁn¤·l=£iþÞó߉ьŽ›ˆ-è £iþÞó߉чHMÄ ÷hØÞó߉ÑfÆÍ\< Ú•ŸQ”®ª’OÞ%¨k×®]½½£ß +éâ'RÕIaªŠ¡êwk$ñUSOÅê]êC×ï…uj֧׫æ{NŽFíÕ°úS×Þj}ÜNŒZ—”*íôn\Ÿå´m?ÛÞ{ñ:1OHMÄ ´m?ÛÞ{ñ:0é ¸ }±v? í³äsª£u©o(MRßOöµÁäø¹§ë%£•–ÿasKvD"üë%³ÌÏÝQíž¿G ÿÓ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢o+8ø¬¥þzG}’A‹©šŽ¾5²ð´òÖÕƦû´7®˜ÚõJ鉌WHÕr +·1{rr'¹ôã“èI6ð|oq•ç…}[|N]Z¼]§!TLƬ™Ê°¢mMÒ¦Y2ÖÌÌó +þ2„x¡ÎLNaÞ øO,ÓÓ·VY¶ì•‹4‘„“ùeô¶?š§ó&ÏüÏøTØlù*0„’ùfû´XøMšo7ÑåQù‡(?Ÿ“ßXÈZ¡Rå +“x¤û¤«^­*^w¦ rwTö'A%ML*’²A7R°_g«×E¯ì=[ëi)ûgU?¶hI F"w¡žÑñ÷•Ö©Çn¯DÖŨΑ³IZ~ WÈ>¨Vš•Õ"„%ÆI“!"WW?¸?KÛ¾PÄ­H뵡m7‰°ÁQÉ#…v³F©gµINœ¦)X=Y4o~Òß|DÞí”âGÉÕ³Ó„a߃K‰§’•‘<Óß‹üëü+l19¥¨Kç}Ú+ü£Nõfó}rDÙ%e^;CSWQÛ[3EVÆ.šgÖæd9È~ñ#(4òÆô¤Ùšo»F0í³k$¶­7’_D`ó9H:Œ´êVfÕ*‡•l‰º†ÒIÁðúC˜H9nŒ¥ÈßU6ùb^´ ä® ðÔÔKÔAÇ+~ý† øG¿à#gÉe™…‹‹lØV¯RyßÌ*~ +ˆ¿ÊpºÖ6rÐi%–Í”"òÿÔ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢nJYÈY'9’fñ«• +ž™ˆšÄP÷9ŒL™¨êãZæ|µµñ©Êg¶£c *™å„O#4«å¥Pk"v Æ껜”Ÿ—V¾YÛõ”TçýYîju³MLM12w£S‡Ž"ŒŒ%…µë¼7³ñSIV¤uìÛ² =kµã*Öa‰¡å¨ÈÈø¦ º*i-‚Ñó‰DïS¨m>Ûr'æ“4Ýqúý»üF>ÓZv<ínºŽ´E©é6ȸ$Š1,ØJ™R’ã‡m ƒ”øŠ_¾‘K§sDdr}É˱·’:ý1[ÇT¼°‘ò[lÆÐêefcR]$ Ò-½×!}›DP>ö¢œ4Œ+ä¼5¨Ëç}Ú+xÜMêÍæú ßò6äÝ­x¬‹:ÌSŒgõ‹Â¹[r1#'  E3tØ~ãsX\zë\Öû”cõ²ªã-^o7î°ñ7 m¢Y]š*ꢡãg–¨TEt£É*fÙ,aÜ êÍóÕ:z†6ÿÁLyá4&Õ Zõk׫¿©~yešXÃí^#UU³9ê6‡§RMbºƒR\ΔP¤ÂS\EB\>%þé~àÞI†„³Ï}’úülã¡–_;ÓäoËg·-j™ ˜®ÙrLÃ&ô²n R`»:„l‚JßÄÄ9î \Kä ÅäÌ7«WgsèŒvÅ{”1ZzTáöïL<Ž9 ­>î”>_Ky2UÉèªdoª›|±?¯ÚrWPzÍ«ÔÆ:ÔÍ'ôÛé7*äò®œ*væ9n®±Ï†~ø$ô(BIoû]R7|¬dƨc²r«s˜º…1’Péçc¹…ZpžŠÔ#h¹Ÿg&x­=yQÁõ1Œ©Žc˜ºªžçVÿytGñåŒlÚPàÈÒàÿÕ¿€cGÑÓlãç6†´Ÿ`³8ñ¦©í‡Ïì::mœ|æÐÖ“ìoàÇ tÕ=°ùý‡GM³œÚÒ}‚ÍüãÄš§¶?°èé¶qó›CZO°Y¿ƒxÓTöÃçö6Î>shkIö 7ðc:jžØ|þã¦ÙÇÎm i>Áfþ qâMSÛŸØttÛ8ùÍ¡­'Ø,ßÁŽ<@éª{aóûŽ›g9´5¤û›ø1Lj5Ol>aÑÓlãç6†´Ÿ`³8ñ¦©í‡Ïì::mœ|æÐÖ“ìoàÇ tÕ=°ùý‡GM³œÚÒ}‚ÍüãÄš§¶?°èé¶qó›CZO°Y¿ƒxÓTöÃçö6Î>shkIö 7ðc:jžØ|þã¦ÙÇÎm i>Áfþ qâMSÛŸØttÛ8ùÍ¡­'Ø,ßÁŽ<@éª{aóûŽ›g9´5¤û›ø1Lj5Ol>aÑÓlãç6†´Ÿ`³8ñ¦©í‡Ïì::mœ|æÐÖ“ìoàÇ tÕ=°ùý‡GM³œÚÒ}‚ÍüãÄš§¶?°èé¶qó›CZO°Y¿ƒxÓTöÃçö6Î>shkIö 7ðc:jžØ|þã¦ÙÇÎm i>Áfþ qâMSÛŸØttÛ8ùÍ¡­'Ø,ßÁŽ<@éª{aóûŽ›g9´-¤û›ø5Lj5Ol>b®›{ée`öŽ“„ jh¥*„1¿VÇŸ€5Ol>cÎŽ›{±h殆ñêõ‚Èêaé f‡Œváš­jN‰õJDµK|‡¹«×Äûq•.iº¸ícMˆ³âÛÖ¸ŸréãçÙÛ ït¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¦Þ°}ÄûN>ÎØo4¯Ý½ û…÷!œ9ŒñïvÃ{ÎqæÞÐz¿hŸréØO÷l7½Ó]ù©n°Âû‡N=æSÇ½Û ëp¯–ÞÐ}ÂûN<æ3Ã½Û ëÄAù·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í)·¬q>ä#Ó‡Gϳ¶Í+óRÝ`õ>Ñ>ä!Ó„¼Ÿ?z°Þ¦Z÷d^©kW33Ö‰ªšePéêê-¨Bžþ§€}^Ècסch²%žíà)Tÿ׿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ'P奆üO¯óbßX˜ÐrÆlhu3@Äd?ÿп€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ'P奆üO¯óbßX˜ÐrÆlhu3@Äd?ÿÑ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ3Þ°]§+Ý-nó-BYjx®Â2ÒºK)«-æ÷\­ªµy¢¦ÒÀ猦HDi&‰’3MÒÄb:ÞR×(.ÍÔ·GTÀ§$Ï!4³š+°–«[ÙéËL e:rԱ̢KT£ReØI-0]à·JiAj5¦‚äÔe˜-4z€ºÝ)» Q3kU ò걆mO!ºÀÏusÀ DG»Öö„šìuêS,m¬f\Œæ2ÔkXä&–XÄ «˜ŠpŒ §4ÐZ–yf:¡šh®Âœ fš’Ô–¨šj¤ð–n®”ö”u-Ò×0=ÒL¹’].~:¬I¦4’ËW7V³K}jóBTÑÍ©fÙcpQ=Y¦)M´ !2ôÔ䛯ÖajYšÖ +a šÞÆ9á`W{*ë÷:Mî¢ÖÏn +aR/hF1†°]„ÓEíF:ý`£K4UFI@´ÑZŒÒ‚‰3)š0ˆÆeÚRK]Œ#šYAj3Ì» e¨*Í2²æñåìèB&y{nÐQ¥š*£$ Zh­FiAr—RæxS©í°-ÑëX–\´ã ¶ô¿EQ–h«„òÁø-Æ1‚ì2Ä)ÓS<%¤ôÊp–¨)«ÝD°Í¬*ù{V{ê»æ{ñ@¾Sãå8ÞW°Œ$Ô jpî‰cm`¿/s©Dc}`òη±Ž}@ªXåÔ®ZPš70¡®ïjÔ–Ö³Ó²S$ °:iã×ê'’HõzÀË~·”án 2Ùn\ØjHuZXoÄúÿ6-õ‰(üfƇS4 F@ÿÒ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ?Gea+AŸœ–¨"¨šqö·.éªïä2*«v)Ÿq"œ5™|gЕ¬ÅÕ³nÕMÀeõ#‰è§„PÏŠL¡›·ÉÈtôȦ‚„õ±•Ü­ÆXÒi¯å&ªª®¥jÞÑ O6fñ Ú`³1Ü-“ ¢×2Œý3‡rµÕYݬãX‡ûù,yW oÆFáÜdä&2»ža<©©%›hÔ¼ZU«Ê:ƒ£ªY j å¼{¥Tºi2iŒ¬5+­c«Ú _RÔr4M.Ú <)e#NõÓäÊL¡ÁÓ" äèLÂ<Ç4£,Xu!3zPÑuU5/!-$´ÌVNƒ–2NJB¸Mkøk7>Ÿ÷ðøC<°ea¤Œ^ûdªŸRÒ®£–#g.5dWj–òMr…ˆ™ÜådajB&&HÁ¶SU…!+ ñ¥L|ãAeGqEBf;DéáÜ"g&‡k0Ê©4°bÒ„ÍÁf“Ï¥å+¤^::¤c4vÍJo[G&AKŸN,bhwLœkÊљԲŠÏÚ³]W‡2QmãŒÅ>ÒuCÜ÷yâìÔ5-Ƶ¢Ùt WUôä,Òö™,‘ä äÉ•× ˆM ì_«RXA‹‚§4bäÔK%2hÕwGtª(‘5SMc¦M3÷ê ]LL ÜGº“–SÕLR¬A¡áÍÙ1*$UMć;…±Ï"‡?ÒŒÍ Y$óVjO+zªŠ£ ¯-Hê¡× gRíĤQl6Î.' E Ÿs½ <óQhÓÔ•}EÅ/R3®KȱG)uåº%dè‰î‹$‰NúY—°Â¡q¥5«P×’UãšV}­æš×‡pÈeZÇf0Šf_Pæ¹ò1v˨Ï5F«OÀÖ-C×VaÝG šåp£Ò“(Y2b÷ÓÓ"š=lZhErjSJÕhçÒ•%~ÍÓ£ª„|ƒTÚ¦oY"ˆsžìZ¢½J31åœÚĵfäÏÝ^„¨ "X4ÍÁ<:عòÂ^[ÜŒ©°ì,.748ÜÈtÔóç•ík»£¨Í›Xu¤mÎà‹_÷˃jVgáf¼Jêyôm]gÌZº:M¤H¦é2è,DÙB_÷b¬™¤ºŒdùg„ý¥°œ{OHliáÛJ·.RÖï®=Óäá‘Mt1°pÍ<`ÉÆG-;±|å¬-UÒÔæÅÔ™ª’7.‘Ù?V*”g} É› f¾Ëñìr’dÝæXê™4È™•>š˜|3÷ãhY³ÃÆì;mssMÙE@ÓŒÚbiÖuSÓMèuô…'º¼•C<—`ò®#$öã¼Òª‹Cu)dnjè·3Å#H¾"^²âùXŸužñBóØÄb-$"öAÚ$…AguÇÉ'¡Xȶ|Ré¦ùš'ÝIòÌÓ¦*¯„ËǵEfn=¹TKÔl¬¥‹:Ìjó‰úqÚ!•7¤1ýs¿ +Ö±bÕoUVU1®•2³ð²Ï ¦RÔ‰8fåÆò©ž™>b—ÅÓ^Ë6ft¨×Q¬DªÉ DÚ®dÌ^ îcMuzqÊã}CUÕ}9 4½¦K$y¨92eEµÂâC{•æ– fœÍÛXJT‘§,þ`é>YŽW%*¢d3„Ú7¸†) ¡Œ¹ýì(M,WkO4¯®Ÿ¬(ZŠ=©¦Ôpr ®W +=)2ˆõ“&!}=2)¡sÖÃ4µ^S–jM)Ê‚Õj æ1uˆ885²d™2·®b-ž¦¾_–iiË5WËST”“ê–œ”4‚¨Ã¯-(dÈ’ª"™0ÎE°ó/¦{¿‚ ´°×S M ú¼Ï6!YAë|ù¯L±Mªê(oµ ³ŽAî)àŒ\M .àkÞ-Ó¥£¬¶hæ×É%²x¾¼íÃàþñ2}hɯ,²±hTšjY¸ë{'©*úŠŠ^¤g\8—‘bŽRê=ËtJÉÑÝI&ô³/ahT•íi&Ñfã®Í±ZÚÔ¢Ue)ðä}Õëä ¡“Nöar{÷Õ'x¡ Ý j´­RÌúUo%Ø¢Ã+yé—r jW•’jÖ¡LÚi±xs“ ÀNáyC'”ðù)ÝɸŒóÙ¾l¾yôËÊá7®Ž¹XÔ›7)½mséÌ,V£eú®üu<ù+K‡+£ä*S–Má!ù +nW­g±=œ‡J¢XæRb;xкý©K‘Ÿ½a©fU‰­fUVëU¯)Z~“1 0™%=KM¼B{¥þðëŸ3–2ªaØ´±gq‡%I[l×—S‹PÐÕUy9Y¨…u!”lÂì› ’(ª‘I‚E=sÃÒM 4\ÞxÍ«ÔÝÔ•Uø OVe©4%BÕÕ…9 4½¦K$y¨92eEµÂâC{ +µeŠ¬8Õz-¾œ³*®’DÏ–}Ö&ôÕâ’úˆã¡Ýxiœå>g~.áéË2Þ:¬Ø~=ì©TTÖ–|śÜ’spšfÌ[ ±Dbáá+3÷8GÔÆ°ÐÕUy9Y¨…u!”lÂì› ’(ª‘I‚E=sÃkU–V59&›7‹/kwRUTñ#ë:~yÑ™§Q¼WÉ'„GMÜ6:œ\à0Øž¦Ð‚¨O4[:ƒ¡jꆚ^Ó%’<ƒT™2¢Úáq ¡½†–X.B”Ñz-¾œ³*®“DÏ–}Ö&ôÕâ’úˆã¡Ýxiœå>g~¨w+©ŠÑÂXí¿«ÄÊ•E@ñ­ig¬Y¼1YÉ'0g ¦lÅ°ÛDEª45³ñµrÆÛSWôÕYNHÓ‰·´I3jXŒŒ\4w(C©™¹÷‚ü•e‹zsAÈŠ6ž}L°3Yç +™c¨W.JB¤¸LÍÏÀúaƒ‹¯3°´f‹Tò“Õ¥V½#OË!¤[tË>I2ÁŽâþ tq3 ˜SøÉ’F$ðš«å„QYÍYLÌÍ+58ŠúÞíÊdÊÛ»nLC¤±ÓÓ"„ÞÎÈI ©6ýZt¥BæN£Xʹ2ŽžÅ®§¯4MÉÐ9<4ÎO{0ÈÅ`í7¨ä¼fy/Ç¡’l¢qôÞ¥_—º:ùI(ѽï[l™Épƒ A“‚©ž{>»\¨ÞSôÚúÚ¡“‘Y¬kL®^,D/“åd¼rY•c«åxYFò §,¢Ø²qnEÈîC3áß?Ë tþè1Ô²˜ù›cÍ39 L³Øãõu(Å¢j'§éƒ;‚îà·Ê¸Œ“ÛŽóR{h‹:³BÕLýXê,†D¥à¾pLßp{Í툴‹lPÖƒ!d{(™tgš·‘1•S×–MÊÉ¢O­ ÷G,ð‚š‹Év¿b3ÓK±•©ÌÌ+¢e ¦¢/"èœü³ÜqÔ2Éwœ•ˆÏ=¼MJÄgŸTt“WÒNŽåÉH¦eÓ¸›ÅÓ'ÒZå:Y'²ï$Æiä»cÌ°¨«*ö¡‰eX>†kÆ9tÓlš'!ŽâýýóÀ5a–HE,“MR0eJ"’”¥rírªÎeyZd.û÷0ûeÿ¥8‰› &1m‹s”’‹€c­2 +Ç®êZ9¦:Ze#…®e`èæccæšG¦&ËêF™º^Ñ¥]¤ŠÄQDE‹3èsÐPUÏdŸ«×¸§ÉóÉ×êÞÒ]W‹Y}K<Ψ:‘›¯-å_[ÉÉé–]ùôN™;Yƒ›gê'ÆhµGŽÆõ²ÓÏ?Š4ÅB¡ÊæYc»M¡´·SyoáÜÏSä†Ø™l¹…žìš1ikgÎ$괰߉õþl[ëQøͦhŒ€ÿÓ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔÖò0³Ê:N™µ¸ÇLTœƒÖÖ«„í»œ|+ÿ$!þìÔ)]¬ÄOf…jµl]dúXÊÊ–¢c•62g"¨¢Ìøë+ºp.LWNyx•o‰¡<߆{¡¬Î¨Ž®¤2N©]H–IÛ’úa«¶äϸu7¬=<ÁrjµøÊòz4#/á™ÉWYý!Iº”ºi#PÝßLKš}ž…ÑŠ…Ù¼Ÿ¯]µü@Õÿ:Ý}`aac”#™²äšÒ5É)ʨ*ª8‡Aû5TS +ñÓÜÎDNš—ïðîv±“…ÔÅ«õÇÍg¢ƒfòÏ«•hö³Î¥bœEùQz¶Pâ=dÖ"w1»J—´?Ø­e/¨|N>{²U¥Ô°‘ˆ'P³+˜É'ˆ0q‰s 8õÕ±8ɦ0èJÍå £K¸—«¬3D7± +rB–vƒI f¬„UÁÜ4p‹ƒáœè‘Lò=;øŸïóÚ©¥…f—¯·z){(§ëêŽÐ^L&àÊ£8tÂx³r\É‘SA5p«¢ž_;Ðò–Kžcê¡i–4|¥²DÆ”ålݬvUXêŸt`u4ÔÏá‹5§ÓI'é]ÁÐЧ›ëÞùl¶Â`férAy b*éŠ +(T¥I"Bp ÀëF0YÀaéßâý(¹dÕ¹Y ƒrj˜ÅM2&S×¹y¦ŒR(aiFéEÇçô}m2rë*ÝÄ|ôÅ(í£ŒépôÜôÈ¡7³1¸¥©¥Åõ±sÉ™-Ô´‘åÚÑ5£ÒWoÃ÷9ÏÙ<£O½gf¤ºœš´¶.’•š]ÒGjfg2&)ˆb8:„Ì!;fV‘Žm¼ZÐlõ"Â7;eê§ÚÎÇ×/EŽ™Õ>DHcû¡r•hñïZ«Œ~=m¹BV”UICÔU8vÑÍVÖ55¥g'ºÝææŽ6PžòšÄ)ÆTiËU æ¤Ê67ùp´o¢g_c 0ëÓ–?bú1lhQ·{´{ù—¢¾†_}˜ˆP§,>ÅôbV£~÷k8¥6¡ŠbÞ)´Š1¤¥–fL+Þœló;Òñð‡®j‰Šdj ÔoþFgÄE"w›©†N.~åÉT²T»’cH÷MYm+ÙÊY;H1t¥¨—Î7ÌÈŒìUÒµ¸lfI¸ÜÛ0Γ¨ê [šd¡UbV-cS]<ô–Y»eÔ[?‡‡|£#T½K4!Jyæ¿‹k@²Û ›¤iÉä%“UÓP¨Ê,’E:„à€<ç³ËÕêÜÆÁ`°ñ’kø¼-íVº¤–ž´zr-”ãØ£#Nººå¢„Ê DÜ¢Ã@ÃÏ–Uü]=<Ü{Á­•3£ÙÔsKËHLʸtØÏdÅ:hÜ:˜DÜó |cCÝ2dÂh¥ã{Ùm„ÀÍÒ4ä‚òÄUÓP©J,’E:„à€3ñU«Ç‰X8\%8}‡éG{|ËÂ5yiñ.“Çjµ#"ÑDÔ5üDr”=ÿp0)Ô¯%gφ¥°ý(±=$éä5 Pô<¡Ž«šlÓi·\ÅõDs†dÈÏá¦BžälgšùüÖºJykRñgô3-‘¥“´ƒ×JZ‰|ã|Ì€ÀŸ |žs>LFZµ|y; Û0Γ¨ê [šd¡UbV-cS]<ô–Y»eÔ[?‡‡|£#T½K4!Jyæ¿‹k@²Û ›¤iÉä%“UÓP¨Ê,’E:„à€<ç³ËÕêÜÆÁ`°ñ’kø¼-íñ/Õå¤GĺOªÔŒ‹EP×ñÊPL÷ýÀµKU6³ëkÄK䡉é'O!­‡¡å u\Óf›Mºæ/ª#œ3&F 2Ä÷#.3B4~O[-ªIòú¦×ÿ.¶môH‡ØËŒ ,Ö•³ÅGºg…S\ÌêsÚV §£jŒ{Å0ÕžgýŽ'¯š'Ab¿NéOsÃóÒÓ5´'Ðbç›l!÷_•óÚ +éÏW”3G1îK<»ö²há’ÿaˆs%- ^}>.I¶B?uùºž§:³ØŠ¢;Ó4̤܃R—íB9bÙK»úÒ Ù¦´XTä™+Ìç6Þ¥Šª¥š^À}RJ9FöÅ0 ÄÇëƒ?“ãh¾R<õG[SôÒlU^çNAEŠÞúž”mê|ûéßPép½ËR5«}³×‘è³%j +^¼¨áêdÚ$­@Ü“ Ë¡ÎÓ¿¥™F}õ73©à†+º0U&£[íþ¨|­ßn>£¤>Š ~ÉøY—ŽÖÅ°d½>ÚÎõ.Ü‹©ŸK"—F92I·¸Ê]žäg×àÁ¡%›24ÒS´ÒpÉ·Q䔤‹Õvc‘¹›Å¿]s‘l<ûŠ _Í£©“Ðã<Õ°’Òð³lïM²D+Š²”´˜×ÕZ1©%S3ýþÏÖÆ,ÔlÉçLÊôö»ks=|ÉuÇÓüžÿy‰ž1¦™ô*LÖE¥Ð$괰߉õþl[ëQøͦhŒ€ÿÔ¿€<5E1ëy3åúsæç_ƒIpßH5Xž¶ÝÔ6¥ÈBí¹UQðõ¼y¢ç#Èñ©{ L˧ìÈtóÈ]¥‰³®ìjÂÀ)ƒ ê17läXŠ&ù7ËÙpøÔQLÅ4&ö2êr…N-¹ƒH§ ½ûÚìõŒÒ5,¢³âñ­s()\,’N0ô1‘MK‡÷bԸʓq ÌœF +œ²û÷·Š´¼ZòlfÔ¹cWlÝB˜åÃEM2\ÐàcOVëòRÊú¦á™Ôqï"äQÅhñ3 ²wŽKÄSL—ÓÏ *Øž–fܪ,Ú›¬£™ÄÌÅ‘ËVw2r™C”èá“1dÔ¿÷ »%{-b(s‰ÇÏb‹³švÏ“]88ò¶3‹˜Ê™Cªª˜z΢—Âz÷{‡¡ øü|×nih–sÌ]GÈ5#–®ÃY% |† ¦•Eéf„É?\xï1Õ+b4]ù)(˜|'(ßÁQG /ƒ‰Øe +)p\š»\Š9æêè·ÜM9¼›† ð•’q•º6!ψµÂ'tÐÌ!t™ëi'—Îô/á¤ÑƧ›ëz¤¢Rs8ðn¯4T lCîÄMzæfgapW$ù)ÉçzV¤—<*y¬H_2ý™“F›7Âúq‘66ãØÅ“’¨Kö¥6öi„†gM°gŽV©‘S¼s]"}ú™ãlD"Γ FaúS6%actxô²Rñ7Þ¤O%–@æ'`|Dïû±vZË8š™¼!©H˜²Â°A(ò¦¢y5ÛéŠißÄÓÄïŪ¸•É°Ú˜ö"À¨Xi¤šÁ—1IG *ÝödEE.]ç\q‰°º)¬ß•m ]Gš.z<×°Ô¾[§ìÈtóÈ4Ù™Xœ-å»C¢ìª™ ]ÔDyˆíÁpÖrªË.àÄì/¨¢— à +gÄ1äÂß'œúžYµ6ýw.¾wšÉ-é…®(í™0Ñ9ɉssì7°§Š*`oŸÍã­º¥¢ÚͲyõVÏQ“½rò* ä¨Ï2&£›7‹/kKùž,þmD{eTn݉›.xK¨·& ¹¯ØdÇn=ŒY°ÉãÍÙò½î, +ƒuÎX;ÌY¬»”RËf¬¦™ïãßà rbTÔähG^_¥ík”U‘Òvxá˪z,ÌÕpž†Êœ«x›çÚ… ë.a°0Ž¬¿KÚÝL)ÈعYf­ðÞJ`eŠâø™90ÑÌÐ&g`-i.¿ +yZà.Á¡ÃS1´ú’k0o„¤“£»tc(sE”áîŠwšØb#5Jpù}*p”e’¬ß#C¨lÚª¹y)Ž»¦:Ú²˜Ë%ˆÓ sS³Ï¿¾ ³O5:ù} Y°òÔ§“Ò×'©ÈÚ–5Ì<£R¹bá<5’1œOLQF¦X+­O4gó[V¥²ZV¯ŽŠ‰—‹ÊYÅ”…fžPå,2&L=4ÔLçÌ' {C¯Ål&©<î:Ê6Éiu@¤Ñu tÊ™Cª­ÎÂû…8¹ +ýÉC ›\[ýÓTß »u‹y%“:jö‘Øx晑nóÌ¿fdѦÍðƒþœgTÆÔâÛš©y”röÇ{#IY¥3/Ú™{Eâ›”…E¨sááè\[ýþÿZ—W‹neˆÃî_¥3ä¢ìª™ U]ÔDy“và¸k9Ue—pbvÔQK„ð3ײÞ ‘ì­l¾›´¶Zn?Ë}åÊJ»„ÉØc&¢g¹Þ•î½WŸkúŸ¥"—…‹#fn +r¬R˜÷ÖÄ&ïŸLç +˜¥°º6ªÎœa” K­éµÉ +Œs&¹ræ駘-I[2ìÔ³½4”M5” {54Ι[(cªKŠ_¾Câb_Ò6˜» EÈàíG¾VÀˆ°*A)&°e¾Š˜ˆ¤£…•n‰û2"¢—.ËŠ²Ôp7£Æß+#œ<ºsÆoú¸&Ô슮!ýL¡È¡ÉsCL…ðª»y>©·Õ©·Ëf4É!d)òE—R6Ac¹tVX˜‹(r(sßľLò@]†3/Ÿò}¾§ázµín©ÈÖòëν٠ÈÑEqœŠgÄ!.hpŨWÊ¿6ìs7`”=G ¼“È]Ýѯ:*Nn“ƒök5!ÅØbøâ I°œqü^‡tâÁئ…¿­åLÇ"Mñ ‡˜Šyš÷Àªf¨Ê§‡–›ßTRñu”c˜y–¹K71Ä9/aœŠ=<ý2)Í52zrÎÆÓ>g›?¨dÉÈ@™WN”ÄXùsÂbîµÅþ4~Åôa¹¯èl,;ݳo{¥¬ƒ›oÕì*Q¨äÍK–<.7ñ.nkç矆þh}‹èûr6=ï»onª"Í©Û9EÊ4ô~FGF!–.P²·ŽŸÍ +(1«b5³d£mMrœ§5Ã[›àkƒÅ߸ÝlG4Ϻhhhoa^|Ò¯T¥£…Úà·è-GRCrä9>ƒô¦Þ÷¼£áßÍÇÔK±)¤ãÓ: ÜÞ9NR)¦NÀúfÓÃñüÕøá~­äõÁ°'<Ï´ G"òZBã¥1S,xLCø ¯p]†/âyÜu-Gõo/ªVE‹¥"`ⵄzM£ðΞY¤¸¦ŸéãZÑ—­—ƒ¡Fyæù<&!'™~ÌË£M›áý8Ê“•$—¯×¹ª¥ÉrFI­âÛ·ÊÊ4 ˆ÷L˜á+Ç[Z›ca´¾E.nŠgç¹çÝ-Jö£ÆÖ|”/ˆ—Îû¬_CÊBüÜ}D»šN=3 ÝÍã”å"šdì¦m0“õ6­SÃÚy|ïCꙧ#g•ŒYû|U#\ÛSb˜k\:w÷==3i…­Ú´o3\ékŠåY-+gVT  ´I¬ôy•b¢{ÇITOÙ‘dóÈ/I‰Ñ­WÂ猓mÍØôQVsOÙòk–<¨Á¯,ªŠUVðÖS<'ÄéÐÂäŒÓlËÛ©®SÔä}*ȱñmðEÔ)1|÷9Ïž§~s +kâm2ªXXe|´½!E7rΉY áÁݨ™LsM3îšܵ{Ê·J•¦}L©˜Ö’H7ºúA4p©”9ï¾.(¥Â{íJùW2K%o·ýæ\•-/'0é®#èœ|\C“(&Ù‰©pø„ìÂ|ÆIg­öϽA윧#ê2³NE¾9YºAê;¡ËuÃsâû˜¢[+«FïB”KY·5LÊY7 ÈÑeï9Ï|„¹ .͈ºÔ˜k4¨7§iw ÝFÇá*ͺí˜ÎW  cœ—S×}=ðW.'KR?'¡E2ÐÕà}ëçÚÖ*^.¨Öýtk­ï~×t9pÜ·Ð>æ§~,á«è©Gäô¯WÃË3ïLRãÌÏfîQe)ÝSæ:†6¸?%ã©÷xÊ›•kT…ó}w5‘äL-=Vû¶ö±PX- U9Iä¤:é·A±O–<-Ô[“ „Ü×Òå +ÓFÙ¾Œ»—z uvϽ­ÑUKÙʧ£LÌΊB­é§*ÞÃÐõBŠvcz™™40Ñ•®Öl=yh™æy[3(E –!ÒÏOC=58I_)_ ¸ö±«3uŹlñ­>b.ÝB.™µÁáî3â×ÆT9FHqÌxòT±ø¾½ì›NR‘t’nS‹k€WNíÁŒ¡Õ:‹)¦sE9Æ-ZÑ«ÔË£N¥.¯Q IDÓŽå_G5ÀVQl¥åÕqE»;˜—~Ùs|ዳWººT¥n14n»5Iel :‡-,7â}›úÄƃ”~3cC©š# ÿÕ¿€?5zƒÈÂåìñë3EæX`Í,°f‰–X3Dˬ¢eÖ Ñ2ÁùûöY‰¥ƒ5åúoæç_ƒH°1ŽXy궃nŒœÑŠÖŠÏÑá•ø=š{’÷-6Ze>ÑWÒojÙñUÔ!_v.Ò¥uª˜¼¼{f•´º^·UT`ç¼U2Þ2I›u¹ÙÜS>à¹RÖ©âôœ{uU[ÀÑ$âzY»)½â©ž§€N·.˳ct|{Þ¨VR&Y»ÆˆßÆQ%/aáödÓ ª8KñíZ›n=ºž©bê¶E‡|“Ʀ1ÊUR5â_LZ<‹ÔªçiOí‹s&ÍÔÃt—DŽ^&cg¢Š—3ÏË/(]æ±Xçtx¾æ• kô]@å&qÕCܨk©¥”‡Pý14ÎÖ';£Å÷7ÛLjƷ]Ó¥ +’ Ó:‹(mÈžèsŠ$–ëõ+åú· +‚6R8³ Þ$»:…]3^!ˆž™ÂylS¯›êÜlcݾì÷Ùc|ê`ï¯KŸ÷¸ô7õ9RÅÕ¬Ë! ù'Œc—#^%ôÆ5JWÔÉ¡5µ”õKU4Ë¢$ñ¶!ÓÅH׉}=2 +ëQæódÛÇŒ¡qÏÇ©ûQÅ̺bÉòK¹P‰ºI3g¢u4/+at2çÛÇŒ¡VZÑÉÇ©ø­G“·,Tx‘\µo•¬•ìôÛv~`®~£ÆÕ1¯®y~ÚØ;}Ùï²Æø.Ú|«QÆ匒ý»~Æâ%¥Òç†5A¯Íu°ªaex›•þÃÃïºØ]k²b»ž75*V´ƒ­Ûä ¢/’L×T2FÞÏß“LƒÊô­ [4[˜X]N¡ËK øŸ_æž±1 åŒØÐêfˆÈÿÖ¿€<:½aäÏ%l;J¨œR4¥K:Ì„3˜Øɨ•]Cj¦e[·:„¿s¯wWT½kÛ¨Ëx ‰¬“~ˆe¥qM?ÌÝùx•|›Âìü/Óüq)è†ZWÓüÍß—‡Áy¼.ÏÁ?Çžˆe¥qM?ÌÝùx|›ÂìüÓüq)è†ZWÓüÍß—‡Áy¼.ÏÁ?Çžˆe¥qM?ÌÝùx|›ÂìüÓüq)è†ZWÓüÍß—‡Áy¼.ÏÁ?Çš¿‘ ´­_Ú¦Ÿænü¼yÅ1}‹³ðDÜ¿~?Å2jš²MÛ—jÇÅî:Æ)Qsrú‡¿Ýu†ä¸I qéaMÊ‘›_‡Ë盪;†3ÞVéÅÉy:ãÚònVŒxö2ÝŽÚüŠʼc"Õ¢DE©×)Lå=ûäO×S³¼e ‘m0˜¼Ü{Œ99œs­#[Ú…9Nɧ¼Ñ›zYÆ6HKäááŒêš|L¬›PYÌ\ä¤Ò]V2.1Ó]±HC¨Ë‡n~ͪuîÊ«†Ð±•›Åµ­jºâ¨”nG+±–<+T1ä%ûÔ9ÅÙªÙjZVܵ¶ô-a%‰Z¥Q1˜a(’E¸’ÇM±×l­ÎÎÿ f`æÎÁådiÞeó–—næU5“踺…©Ln„pŸß’/(ZÇS²ç&Õ»Nj¨ÿVº¨ß* +]yK½Š*L`6ûÅ$ÆvH5úZ\]¿í¼¤*Z]6Tú¬äÞd(5|î7 I«›äÝNåMÉKK‹¹m®yK·Zóš‘óX¼NO¾9WÞHnPÕae»uÊ=ÏÔxÚù,ž”¬ès¥J-öZÅ;¹™ ¦ïtâg¼@ÅKc“»¯¨ñµ¥W”äJV‹eÈ’-©R[dX‰•¹.)†Ì—/‹ø:ùé­bp¹*q½½mbQ:"‹—4Kr åÁrFi$™ yËÃàç.ÿ¹Ø8ç©fV>m‰eðÉÙm^ú‰!½)!ÊQ®nfRÜ„hçÝ©p« ø¸iæϳ $Ô%É· »ª´¬kä s±k=­³H?Ò.Bã‹Ÿ [ë†Tç2äãÔÅžI°ÓgÛÇœâ‹ÛXœ1LERR›Ž1L\òŠ98«6Zà`*K ,¯”)Má­QÚ$…kK<¥cìî£3ÇÌr"šB7%h™Ô&)ÖQO[Ó¸jR¤bÉÄÔš4áÔk/5oQÄBÔìÝ9ˆ¥àZ UÌg(Ô‹‹—ÎE“Q;ù‰ œïEÇ°Ÿ¦ãÚúÍf쪴¥f©X—fc!•DË5¼Ã"—E]ÑEB_&è}ìyÎô¼{ 0z=­é[E¼uhdñk*Ùž¿å ¦™Î’8ŒÈ™/Ÿˆqc_,–_ÇSÏ=ÚU©RêZ5KJÓo#Ü+Ü®¥$)VI#2`6K<<ûç1îbb¶Yîó„Ï%¸ô¶_döl末(Øwj»‹’C,A%œ¼UF.t¸ŠŠ({ùü•KÇcUäþ8‹|Yõ4¢ïí-¬´z¥g),{¥]”Ž(؉žçfM!‹‰©™•†¡•°,Z‹¨¨Úâ¡c,ŠÊ±A”kõ=Åš&±ÔD—ôtÈ{žäecñ9–0l¹üß[%VñoZ™…ÂøJmì•Äq—såóç[³©‘¾H …ð>”ÛΖÄq—qçζ?f?S#|\è,/ô¦Þt¶#Œ»>u±û1ú™äÐX_éM¼élGw|ëcöcõ27É °¾Ò›yÒØŽ2î<ùÖÇìÇêdo’Aa|¥6ó¥±eÜyó­ÙÔÈß$‚ÂøJmçKb8˸óç[³©‘¾H…ð>”ÛΖÄq—qç϶=_Ûcõ27ɹ u}ÛzšÜ¯ˆ„ ¹¤Îy­-Z¦#Tã³~ÝvŽQÖÖÔQ'¸rÞM äÌ8ö#a¡7WÝ·¼­Ê¸ˆËø]Î9 ³\È6[^-fÕ4dú$Ä" +]rŽ®ŠíÌY#õ{2ÆÒÉ{==p^Âb²O¤ð½Z™æÛˆ²83PÔÃÌ¡*‰Ñ'8-ûæŒ?TñmO‰§†MÕO’ƒQÉrÇ6–o°êùmG¾ÚrŒ!B]>ÅêŒ"ßöãdTõMX?’iñ\4‰Ä`ì«c#r9±3ðÉûÝ <›‹«,-$¹¡xë¼°ïÇk'”(ÑŒo<Öº­4} E@½¤^BTömRTºÖ‚²©>a8ƒS®ÕeZdn*Rgà¨M[ÉöÇ ºÓÏ$Оœ/F…á»G®:»ÌJQ’xe©Cm£C@¶*B£¡¢©ˆw’ìf©ÄõÁx9ó‘TÇ95\þûú…Ä £’ëBy£uõGä÷Åk”$ËúU-gí!µ]ç$üÌ?R;Ïø2UʽM§$õ¹Â4PI:vYîŠàµRiªK-0)Í52ye¨XÄî`†hšI`%’i#e3M,úÁUHÍ&·”å–}@«.•ì‘Ñ—DOT¸÷:•KJð¸*›¹ÖòY¯¨ZÏsÝúËAø³)Ë sù |Sãd󀽞Zà^å¬Ð$괰߉õþl[ëQøͦhŒ€ÿÑ¿€=_n)›â©‡Æ@ï5ÿæV©ü4þ°tžFüËCäA9Kó1+g2M%l´K:†fFU&ríŒÜ6*WS?Û(ÝA¦åÎWš\F­ôyKä©f—ìñèwÙßOó–~D5³~*:¹µÚþFAË~7¿}û:ã¹þrÏÈ…?ªø¾e_éñ}ç¡ßg\w?ÎYù|"«âùƒôø¾óÐï³®;Ÿç,üˆ>Uñ|ÇÁú|_yèwÙ×Ïó–~Dªø¾càý>/¼ô;ìëŽçùË?"„U|_1ð~ŸÞzöuÇsü埑Â*¾/˜ø?O‹ï~zöyÇSýOšYù¹ð’µ»ß2ßBK~7¶U¢ù…(:B“©§™ÌN(â22Eê%YËMTŒ£vÇ9/ê¦T¢¬⢫›½×óÌg#ËxÞ”Bt‡€Î"^¡2ý´Õ1µt¬˜·9Bmàá™,l3–ë„”Š—tO€bŒ\(Ë GlݳF0{‰šýž†x´ˆ{$´é綾X³ºmš63$ãè4E®ý¹ßÞ†·&.H}k¿ýrNüoëm15pÓ~‚ÿ=ÌØÐ$³IÙÊN¨Ôn‹y?†ªKµÕ· vîoÄK„Ÿ`}ÓÿRÈÍ›GªÖ¶’OJl45ižæm»M™¥áiÈZ”™<ëv^ɽ“3S5IG+¢ŠMŸp„KtìÔ0«“éMš3M uBÚ£Õ}z£ãU©ÃSêÔÍLšÚG±ëUÞrOÌÃñE'ó¼ÿƒ 5\«ÔÚrO[œ#D‘€'P奆üO¯óbßX˜ÐrÆlhu3@Äd?ÿÒ¿€=_n)›â©‡Æ@ï5ÿæV©ü4þ°tŽFüËCäA9Kó1(ó +~b¶?6¾üE¿$°†#䇡$äKås#«Ôêôd¼×n'šÏ>¸¯<k:áž³®àk:áž³®àk:áž³öä'„UEŠ-Ë­fõ÷Î ¯°Öð±„f‡––>2=ÏÉêuÉUÍÀL!röèH^ࣩ^’XƒÌ×3K{¢Êµ¤ÌŸ´Š£Ö÷¼äŸ™‡âŠOçyÿ@j¹W©´äž·8F‰#N¡ËK øŸ_æž±1 åŒØÐêfˆÈÿÓ¿€=?çjŠcñHu wš÷ó*ÔÞX:O#þe r§Ç•J¼ÂŸ˜©‡ÍÏþ¿PD¿æg䇡$ä/Ì¿ËK˜åý€i#ñ›Y~+Ü=\i2 Ë6]›Ä廂’U2#¤¡n‡)ôŠÚu?iýƒöïhË9öð3>Œ\ç3mÎÆæ’›FYÏ°™ôaÎfۜ撛FYÏ°™ôaÎfۜ撛FYÏ°™ôaÎfۜ撛FYÏ°™ôaÎfۜ撛FYÏ°™ôaÎfۜ撿v³¯`03èÜͶ?;Þk+Ù´­Ÿj~ÁBÀüÓ£s6Øüç5•å´µŸ{ø!§F<ç3mÎsX5Ë.£¡2Ñô¤SE [¦;xæéT½T„Ôêê9›oiÍ ×ö% Å ù²^ g\Ñ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£6% Å ù²^ g4fÄ¡¸¡Ÿ6KÄ æŒØ”73æÉxœÑ›†â†|Ù/3š3bPÜPÏ›%âsFlJŠód¼@Îh͉CqC>l—ˆÍ±(n(gÍ’ñ9£ylNŠód¼AæeÆ¢Î=´q0Ú·Mú·º‰¤/è50ÔE ÿÔ¿€>×M±5TYB…Ôë˜Æº_éÅ3|RüÖË&æÔêc¢¡N]C§œS^à“Èÿ™h \§ñâ¤^ay©Y{Tt™TÕ~ü¥&ª„¿§öÂ%ø¨ÿ3?$= '!~eþXú\Ö/ìIŒÚËñ^áêàÇ«í3Aå¢u}°ÍÑ:¾Øfh_l3@´N¯¶ Z'WÛ Ð-øðÍÑ? Ð-ï\{rÑ:árÑ–{p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ ÅÀ±p,\ X~@ÿÕ¿€<@ë~jûa\½ž»þØ¢ÑÙÚdŽÒÿ¶ŽÎÓ$v—ý°´vv™#´¿í…£³´É¥ÿl-¦Hí/ûahìí2GiÛ Ggi’;KþØZ;;L‘Ú_öÂÑÙÚdŽÒÿ¶ŽÎÓ$v—ý°´vv™#´¿í…£³´É®=ù©iYÖËêȘ”ñ]¨“UÓO«ÔÕ>£G)99Kßj•#u=¾ ÍäÊÒIVïCÊÄÇIžœ`ëör˜š·MšbŽ§ÑÅIoö9ÌçŒxõ³§™ª’‘¬-*N9½ýFR,d\WA6í"Ç7ÒûàÓòõZRÉCdv¶\‹G4ß+°¦¦§SS¨9¼Ùgëõ§òK `_öÂÑÙÚdŽÒÿ¶ŽÎÓ$v—ý°´vv™#´¿í…£³´É¥ÿl-¦Hí/ûahìí2GiÛ Ggi’;KþØZ;;L‘Ú^öÇ™c³´É6Ò÷¶c³´É6×¼\ÿÖ¿€<G[ÉSÍ“æ¯,®µŒ‰¥§²jÄ éD²F‹ÞXî§zúè(}‹Öý€Jy“%ÄCº‡T|~]¨ç+r„iGWŽ(yó­ÙÔÈß$‚ÂøJmí?Kb8˸óç[³©‘¾H…ð>”ÛΖÄq—qçζ?f?S#|: à})·-ˆã.ãÏl~Ì~¦Fù tÀúSo:[Æ]ÇŸ:Øý˜ýLò@è,/ô¦Þt¶#Œ»>u±û1ú™äÐX_éM¼élGw|ëcöcõ27É °¾Ò›yÒØŽ2î<ùÖÇìÇêdo’Aa|¥6ó¥±eÜyó­ÙÔÈß$‚ÂøJmçKb8˸óç[³©‘¾H…ð>”ÛΖÄq—qçζ?f?S#|: à})·-ˆã.ãÏl~Ì~¦Fù tÀúSo:[Æ]ÏÔüÙ¶ÂCÆ«uÔ.¯TÄ4duÓwTÐêŠaø§¨B[ýûïÅ^ZŒ&ËÇ¡»ªë “·LŽ¹³´Ý#(SšR<®›!>ë_.î¢y‡êß%Á…åxh国å×Ù]\8—48íƒÎb¨‘ó'Ä2§)×I6¬Ÿáº›tT›ºÈÒà2%ò(NýC +¨ÉO6¾®÷_Ï×"Š³sMpãÒÙž|ëbÕý†±ú™äƒ:?Šv„ºþý÷å™y~3êãî¯ß>u±û1ú™äƒÞ‚ÂøJmêz[Æ]ÇŸ:Øý˜ýLò@è,/ô¦Þt¶#Œ»>u±û1ú™äÐX_éM¼élGw|ëcöcõ27É °¾Ò›yÒØŽ2î<ùÖÇìÇêdo’Aa|¥6ó¥±eÜyó­ÙÔÈß$‚ÂøJmçKb8˸óç[³©‘¾H…ð>”ÛΖÄq—qçζ?f?S#|: à})·-ˆã.ãÏl~Ì~¦Fù ·ÐØ_éM¼élGw=ìüÙV«„=aÕ)”!Mú¶FþÓü„…ÂøJmï:WÆ]ËÌ9êzÿ׿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢™ã$"ãЀ*„.òö0±{‚™&Œïr˜Íå…@-<ÉhÄɨɑì&ÎÜôýuRR%Y8†F,‹‡T¬_,Ôª>¶~‰ß•¹:\OÆ…íåõF ²â£G©£Hɼ˜t»×Εtésb,ºêUT?fs©¦.ËG$!uAkœæ|"­,Ð:Á]:‘å¡ <žò™!PÕ½Í@¹VùM@¦ñW¨g‰hŲ7ÕM¾XŸ×€í9+¨?ÿп€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢n:F•\MGÁFš¯$Áo¨¡®ÇðÅ8Ü\´á~=pxY§ÔÏfó&Vi˜Ú‡]]M^¡Ši¶ù¿N4²òõ8wû#÷ÖÖnHš<{Xv£³©Š^)¤ËÒ¢fo=`‰ÒXŠÞY™ðÖ÷øÙPÄB1·‹Óî`×£gÃLQ2urSkF¦MRDG¯"ïK·[¦r÷;="†"¾[x÷_ÔP£vè³»©­1ocA憺»÷ÎÕ’gý‚î*œ>¾‰¼g)K‡Õÿ"®‡'Æ·Ò¿±ššÍµ#Õ•A™?5Ö² ÜÓ%ûÜdø}mÄuqÙ¿'ÆؾæUÉV/èT‘lYV ™WŠ9!)B(}×C@âÍ~X–æï|»—hrtÑÕÇ¥©U~g*Ö‘Œy2£f˜³%÷JÆ¿nó''dr÷îw×8n[’hÚ×òî{_“f‡Ö6EIÅÓñ2ÄO[äÜ:nʦy•Båûä÷C>…xU¶Bù﹉Z–‰÷YÕËÚ„¹a! +‰–ÝÖ"D¸™/Ÿ=Ao†‘]Ãa4ü{`Ë.¼Ê•ƒdÔTò0=Bæ5ÙÆþ8Á§ËÒO_Ó÷Ö]^LÉ ñéq¬niU„íU^æ,™fÖO;jî$Âdט!¨áÁº"*WðôÔ¸ül¸^¾ÿ—tWp¸ÖãÛç¬<Ïu5îjAìBÛjUB¶•nº¦Ä9Ì*g¾}!‡†å©+G/åÝU^Mš—××Lù›êú–=„’†ˆFGSªÇ]_¤ÍWš¿"DùæÄ G-I,Ö¯sØrTcǵ·b¬:°’ªÝQJGœËdκˆ:X‰¤L—ïãh—8zõ^X“&n÷'®=-â·™n¸ÕAucu#%”E3®t#¥Z:^â}ŠIžù½ÈÅ¥ËÔæ¯éÜ®§$Í/×Î[º·Mšaº¥‰„ÍU\4e~>ÈßU6ùb^´ ä® ÿÑ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢g?3?^Ô¨ož(+Òž\4o¯Tv3¹6ZQ¯ÜúÙ¤°úUÜĪÊZå>‰”xèÆLÅq}<óæh~Ð5˜~VÑÒ´d¿46³ñX¦«ÜÏo7ÄÐ+b\±k;)Mx¥™¨s‹ÂÞFN9q3ëïIÞò¬âaVl<š¼.ü6½gή·ZÇÐdÙ …ÎTŽj´õ÷æï}¥o“!VZSêð{ðÚÔ­áu èû$¦XŸT‘§€BiB¦lÅ_H*{æ?ftî\ùág“kÒŒõ*Õ…ãxC®0ï[¼»‹–­ZRhãoÞ„{þ7ß)dö‹APòíÞ)½<“Ø÷îʃÖΕEÆ©õ¤ba©|¸˜·’ã°óW–zP´ÐÍßš=ëwán§“Ò­K6–7ø½èC¿ Œôƒ2=óDZƒeÜê7IhYdÔprÞ"$;3Ïà d+ÆIanþßµ¶1ÃB8¹µ÷¶}¦ gVq DFW2tÍpƬ”Ržd”L~®¢F2K—PŠ®|}]Ôˆ>ᱸÈÏ,°Œ¶×ߌ;Öµy°xHBi£~ÈøØ’´êí'gm®ó¿à#eƒîñ3kû ½ïX8¨V“ G¿ô6¾¯2#mG•Ó¶ê®DH´$ÒFTú)‘FçÏ8rÏqB:ûðï}ªy#M5x^;{ÐÙ‹-b”¼s®Ðµˆj·Iun’kâ¬tÉ™šjh)ò•HýƒéAäü›^_=üØ8ì6Ô«M7‰¯žŒ%øÚܲó1Ä7ž‹µ&¤QŒIz GŽ/a#»¥ž{ƒSËQË=8ÃlÞˆmm9.„±’˜ÅËÍ +“Çí¾ˆ9¹dÕ­`ìÆ^IÑ #« YC,ñ}]ñ¢ÜNsö×DoNªT¶ÙcÚßajF­9<‘b+0±øë-oiO- +&B.œXŠ¸Ö,¡úú¦P‡Ô"GÂ&äEô/38fã¹FjÑÉkŒ<]ý]æ¿FÒßÆá}A(YÉY9""T +ñÒîJ‘}oø—› †–yo§ñš(õhöFú©·Ëúð¡%uÿÒ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢ek ©#húú•˜—q“1dô‹8W êá“ÀOクÍãk¼#àÿåda*QÓ÷Z¾}Œ±3gV=- ùöÝåO*p²ø{’=ÜCâvÁG§JГéI·ÈÌ©C=^êo£>Ƽ–Ö= HIÚ~¤Qà¥æÔE}¾u•·\ú¤E[‰ïX„-û˜—ó…™á‹–¼óhõÆ}ŽMžÕêZ¨I '…öímÚ}Ý f&®ÙEÖåBf’|É»H—Œý<£‚\oqL^oßÐÖ—R¥;ÓêŒcñäÙí[¥¡–œö©àý‚;^¨*®‰µ:R“­¦V§äà1ÐŒ˜+3¼j«E'rDóËpûÙ·¼1vZð•ç«J\Òê¾¹aÞ†ØÇ¿u½-´¤ÒÆÝ}èÇ¿â}’•žÙQÒtÄûššB£Z/UÛüŒì5J=ÁáÏ1Ô=ÿÆLû©VÅbe«V\²÷]ùcöì·}‘^z4°ó裋ތ;ðÚÞMmJˆ}m5Å@â{Q¬ ÌköH?É©Ô2íBþ¢xýcÞìªØ|L0rÂÝQÛ/zeÊU0±Åͯ½²o ˆwe–)²è«@qUI³n謡å‚YC„N…õ•]M þ£KVXK4º¾Ý'Š+4gÂË4Ö›²oN€ug•­šÓÕE_ìuüCù7&¤3Ç÷ÈïT·:¦C0š=°eÍ..†"hèúá|y6|»^I +5èC^Þôvü+1ug¶W^ÈÚ¤¤;ÈiëI–ã|Ó'ÝN~ ï÷ÃÌ\1uèGê}ø}ŽO +EXXQ¡^ö÷£²>Vƒ«evA©ù¼Ë«ùèÈô‚üœ£ÊQúäŸJŸª Yù:„>,ÿFmî1 ¥*°›ëœ|Ì +”£/Åg (¬")¸+Ge"óyx]V¬‰†sc8Ç)îniæf—†5XÚJwÛ7¡°äëÂHñßa¦ÜE»lñª†IvêtN^ Ó>!6µa$$žþ-¬ 1Bw,jtìÆÚä5jç•ž­!$ðºŠKG«áêFwÔÏY¡ÐÕÑSW:á÷A§¥Ãe–ׄ/hÂо¯cn¶òy¥¯ ãöݾÍÅntœtô\c+KÀSÓ1Œr‰Î»—r ÁÊßî:£Éù:zÒÏ4zã5jÕ®?š|¡-É·qÔÁVi(YÝC«®ÉãÀK¢xù¦ÆÔÕ1d¾as²&—gËVÃÂ?®áåùþF''âo |v1­RÆ26^I´,Ž¸Gs•›­TΖª©p r‰œ‡÷:„“FXw¾f-ms4}döFú©·Ëúð¡%uÿÓ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢Z\¯tyä”jKÄ ñLúN,SŒÀö^ãRÜÝÞ°y,°†·±šú€ÑÔ‡UNj|\ µ#Ä ô|\ªqg¹âÕ8±ž/Á\fg赞XÕË.Q³ë›.·±—6 4ð™æ‹(^çºaÕëyžhõƒÈOu=ÐÂ=`X¸38Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢:ƒÙIœ³ê~ˆaA?«ê臲g$êQH¤ÍîMtª32ú‡>b«é†—^hM e´5G®ê·Ž(M mqýÐu„e;TQéɳf¥@ÊZ:Ab*rj8ꪢ²| ¥13øzcLj͖o,>/Šûv®KB[>ú¹k¤'f ×¤g—R1ë–**œ¢W;uN…ýô(M‰©,&¼5Âê†÷µ2Kqèzì®È)jÀ¶r³ÄœáÎÍO3wÔZï¥Ú6*èÜì œ=åNPšJ‘–!yuî{ɘONþ>;í¹ bíXÚüm .s¸Œrô…EÂJ]ÊX®Lvê”ú™nýÙ|dVÇÇCžvÏkŽõ,ÝMdµse£å)éYè—Ò$‰J’Ù +fXä!5 ™‰t[ÆÔÄÉ®…¯ô;ñ„6ªÃÆ„x™ûNÄYûJ¶¥-92œD ½S´4‰2…<{ªÖþ¡îh\1y#Zø˜Z†¸Ûª#¾&U°ñâf1¬ŸY¼ë$єԻ)Uœ TÎñú+¤bïwn\ÕÏѲÃߌ>hC×,g•’¦ ìrÍ$6'P1˜š‘kªDedØ»" 6sÔÝJÙ+š˜¸}ø³-LLòæ–Öµáª]z¯ü,«4°¢Ñé(§X×5„4Ú晈ˆ“•IV.0Ìå&íÓt–~étç!÷BpÏŒd¼5Fð†ÛFð„vu)†}QÔ½˜Ú„uDÚ–Ž˜…›ŒŽu*Ü®]$ñ«”šPê¤|Ò§Pºooö‹š¶fÅÏ,a{FÙ [ªÝq‹Þmõ6§™îÍ «ùy*¥VF’-RUT¸l¦Aâ,[gøjßùYFg,c£$ð„½~Ë©ä¼&’ñmêm­)EMOE×ðÏä Íc´)#Ü‘±“UºÇL÷ïê÷£*¼Ñ(M,aó^‘ƒŒ¿T´YBÜal®‡<„4 ¹%òf»UñTn\­$]g’ç`kƒS‚¯<Úãuǽ²6ÚØbèÁ¦¿±8ÉAiM²xfE‡g- íM\l•¾¤y¹Wé³>ÚñFLü¡e¼vÆJ0ƒžñãÊÖa©{(µ—NiZE”¤4É“XÑdD¤UL—ðKT›‘pØw?àÅ™ªÔ£i§µµ_U­–+°žZš¡ëi{b íÌjª¶©õ'ã«’#‹šå»vÚ‹ª•Îîb?],èãwµß˪ÝçäÈÏ ÃŽÖ5mI°RÎTÚ¤>^„ó8òžönN»G Ÿ3³¾™Fl1Ï vÂ1ù£.ö4Ô5]ŠÆt³±&<}‘¾ªmòÄþ¼hAÉ]@ÿÕ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢0"å½Ô”Íɹž¦Q¨[ž¬h™Z®åVÄMmmTø×ÐÏÐ)‰î„”iFiá cmSw¯ß•»ÀÕË™¾ëidÝ%dªÒMbè™9–NÊÙ±Ng Ë&±U'‹(¢—ÎMKØg̾ChjáŒ:TªÏ4sG\5uCª:áÔ½Ô¥†¨vÅ·­NÙ)XÚ¯b½”C ±_¢:£ì…¾Q—K°Û +}‘ö2°pÐÍJ;3öÃÚû¼Íúš–¬­Ÿ<Ó› äh㯜â Åü˜ß°çä‹çÈÓ0rÄУ5HCª|¿>¨Çn×¼— $”üYý1qãÌùù{¬~…*± 6\¯á©Ë²0ôÁ®äø}Rn6· €Ï4¦¨ëY‘†o0Ý&—عÕ9QWD¤Ï¹Ÿ¹œ×ýȳË7ž¼‘–6Ž½v¿{c'“ãS™¤³µZjj¡£LÞ‚Œ€M”ìS·Z*©Ž£tÖÏHøê\¹Ã÷"¨à«B¼÷ÕൈbéÇì=±Üùj¶ôý3jUº5ìlƒæÚ²2g)Y¬FÎ5UQÎ"*çêè(Cßý‡„A{ ŸGËj‡zöÕå‚ÝXÉ4z»bÎ4½7NYÕ UZ‘q‹¹‡5òLÌ/ž².#ÓXÈRhb_»˜58ªÑ¯F[íûÕ›5 Xù!èhíªÈ©Ë7«å,â‘cOIµ.£iâeº4S½]õš«©šKä1%Íbb&)©V–Z‘¼:áªÚáä[„ЫJhÁ£ÐôÜ 'n”ýbZ]j¢g-Es°pôÎÄ„ê!×'Q†>Û ¼Ei¥¯á ÂHm‡Ø¡ ¶õ¼ÁÒ„a—ÃûÍÛ3ÍUÑJ½½QèTÌI&á"4”WSpq«uLòuUHÇ¹ß ÎG©£¥4±û®ñ†Ö'(ˤî¼?U Ó¼Óÿ«üëü+j*äZ¹hK·}Ú+¸ýx›Ðä;ÒÝk[Æ!©ªg’VjŠ,Ê]5Hæk™†s‘# 4š©I4|)¾ízÙt¦„*üž§<ÎŒIÚeFº†Õ2RMœ)«Ø¤ÜØëÀ¸S Ï*ba=8ù#èjppŒ‘eØZùÅD¯VÁ”©j¶´R;n‘Mšdr·/BçÊÌ5±ÁÂxÛl#êñ³fÅF{Õ²Q¬)›8”‘‚/R~¦Š—ˆÕêomÜG;¾‡SSWVáÐ>¡’Ô'íH-àêF5!~¸B7ùå_ÇIÁÁñ*«®T¨²7ÕM¾XŸ×€í9+¨?ÿÖ¿€<>Øy3Éz‘—ò!ß™ç_³‰Ÿâšø±òú †þ*·¡¢5G‘{ð-jô´²Ô‰QC"<š2¦RéòŒ Œ…Ëø—.\PÞ¶1æ¡šhM²‡Ïm˲Ռ°³_¥mnb’ƒZŸA®˜êÊ2˜D®S9ÎÕÛ3飆¢{á qK÷÷>Ö1«òm)§„КڣꎾÕú8Ú²õö™I÷š‘Ü“—.ÞY• +áÂê(²Ê­c¬¢ªùŒsê»êœç?ñã_/⟌zª}Á3#Ë1‡\½¾ÆÊ·yÊuX#²ŽŽL°Ò2’mQÁ[ @š¤9n&ãy! ¹Ÿz üV -HÄ!ó_Çã`SÆç…özþFܲ»Sœ±Ùäj8 Tu\‘5ÐQ'%9ÛªŠœ‘5?b}ó|)þRäÞq%öú¾X=Âct1¶Ï_É•GרwRNØ"‰Ï Áìr…\§1 +‹´°Nra¨–}Ãnb¼^=¤ÙvFõ(ÁVµIšýšÚä…˜'4ƒXh™d&A7-æÓs¹ï“0Š'ÃìûÁƬ°Œ#hÂ=}›`÷‰´“wúšÅilúµœR‘f¡)8œC§«•ÄCj4v]Tø$>¢êf l7#¼Õ#^ ~üÈ©ÊSCì=°ÜÝQ^j ÖìX·—§)êìy›I9x¼¡êH“@˜Ø‰ÞÃï¾ôÖäIs^Yíü-ß]ü-_"í.VŸª2öÃsaÙêW3uBýÁ¾žŽyéG%>©ní,à‘5¹p›ßäc.§%Âa ·úWÚÇ“”4µfã½mÏ­ +Rͤœ?ŒI»G-±vÕÙvî›®L3¤±Q#ö&ß4ÊQs”0:iå„#hõÂ=v¶¾«Ág ‰ÑÓ™óÕ•Ä…\ÚŸfé4PB#š‘œ„¹|ç:§ÄQMÙC˜Ø‚枤ÒÇì~¨y|G>ÉÝx¿‘ç1_ÈNÓ0³¤[™¤Uh¹J| ¤x{çHçĹrþ~ö)¡†´“OáÛèÆ0ãÈiþÃàzõ½ÕjöÐe3"‚¬d7ºÜ§!.´nDK¾(§"pø\’K}«Ó˜ª÷¯ózä­T4mZŠäa&Áh·Q©NR$Hˆ1EÓ!wO[S\ aø£Ûo‰b8¨E«¸µ9Ç´SZ}TOÖCVI¾©Š|¡µJbaø˜x;¡s|6ø1¦äèIW<6Zß,5õ½›¡n= t6“ꕉ6°x>ÈßU6ùb^´ ä® ÿ׿€=zºQFxÝì5#/äCuz¶ó¯ÙDãñLB6—Õ'ñP״Ή.i¸³Iœ Óqc8¦âÆp3MÅŒàf›‹ÀÍ73šn,g4ÜXÎi¸±œ Óqc8¦âÆp3MÅŒàf›‹ÀÍ73šn,g4ÜXÎi¸±œ Óqc8¦âÆp3MÅŒàf›‹ÀÍ73šn,g4ÜXÎi¸±öFú©·ËúðÍ73»BJêÿп€=zš½QäÓÂW’Æéÿæ¥ó*Ô¶ßU2ž…“Žl‚ˆ³2oT‡1ÒpåkÛš*fî¥ÞJåxaán½{¶´|£ÉšXßKþ‡e}Ç°žüëÉFßáT6G³s_ð~<{ÏC²¾ãØO~uä¡ðª#Ù¸ø?=ç¡Ù_qì'¿:òPøU ‘ìÜ|óÐ쯸ößy(|*†Èön>ÇyèvWÜ{ ïμ”>Cd{7ãǼô;+î=„÷ç^J +¡²=›ƒñãÞz•÷Â{ó¯%…PÙÍÇÁøñï=Êûa=ù×’‡Â¨lfãàüx÷ž‡e}Ç°žüëÉCáT6G³qð~<{ÏC²¾ãØO~uä¡ðª#Ù¸ø?=ç¡Ù_qì'¿:òPøU ‘ìÜ|óÐ쯸ößy(|*†Èön>ÇyèvWÜ{ ïμ”>Cd{7ãǼô;+î=„÷ç^J +¡²=›ƒñãÞz•÷Â{ó¯%…PÙÍÇÁøñï=Êûa=ù×’‡Â¨lfãàüx÷ž‡e}Ç°žüëÉCáT6G³qð~<{ÏC²¾ãØO~uä¡ðª#Ù¸ø?=ç¡Ù_qì'¿:òPøU ‘ìÜ|óÐ쯸ößy(|*†Èön>ÇyèvWÜ{ ïμ”>Cd{7ãǼô;+î=„÷ç^J +¡²=›ƒñãÞz•÷Â{ó¯%…PÙÍÇÁøñï=Êûa=ù×’‡Â¨lfãàüx÷ž‡e}Ç°žüëÉCáT6G³qð~<{Þæ¿ò¯PU%5gaM†buûGò>Cd{7ãǽc„1-ÿÑ¿€?ÿÒ¿€?ÿÓ¿€?ÿÔ¿€?ÿÕ¿€?ÿÖ¿€?ÿÙ +endstream +endobj +117 0 obj +<< +/Filter /FlateDecode +/Length 6162 +>> +stream +xÚµ]Ysܶ–~÷¯à#Yån;9•JUÛ·<çfÆ®y˜dÚÚc©¥Û’ì(¿~΀ºÙ ÙšrER³A8ëw0G?mî/ÏVÇ÷?üpôÏ£_V7÷?þؼzýó‹£|è›ó»æÕÇ}³”Ê4K­U³9oý²‡þýõèm߈æãYc—Î4=üsKÓ¡–j0C¯i–ÆXÑàë­ÐÝÇ?_¼ùøâÍûŸan˜~|Å¿Àóæ_/ŽÞ^÷Íë›ÿùâè7XÙ/«õyÓž®ÿxÕ½ÿùÝëÆ=-SÄeâ?Ñ|¦ö–Wˆ¿yò£·‚—)úåÀce¶Ji—ÒÛk\æï­é„^Ží²[H½´­êÆ¥ Ob©[Ù-lÛ|쬅¯N»¥i¯;½Tím·`ØͦƒEŒí +.š>(¿é¦? íÍ'üíÚËÎÀð«ÎµËN€¿»…00Áßw®âð5Mq×¹¥õãî;Ø5(øy×ýïÇ´%žñÄ#¢!•¤UÄGé $˜<"#<ÆšAŽ†Éó±\{zÝ ›Ö¸çNØÉYXø~ Ü»`ÍI'Poà ,ضŸpõ#l7{E?ñoÇK _ls!{Ú´@ŠÜµ×@ ÁäCæÁ MìX¸v×tðîƒl{mœ­úã¢Ã2?ùN›øÜÃç;.àìÊáÏšSÚä_¸DZŽ³0n—ÉêRÂæÖ}{Þœ§ð)4Éq·È¶ +ß\níNÀÀlq¥JÁ“›OÛ«dJ4UÜ·÷¿&Ü6 +Ç Öé‚Ûm“¨ììÄnšxIÊþu·$‰Ñ.5Î=°$,ívE¼2ÀÖÀ–«@æ«d’(2뜡©xèöK§PO›û…蓮ÄÀ½§Í1è• RäyZðrCŒz@Ödei’¨m…F! ¹¦Çi‡L[àÌô×Ô!¯xrb­lã¾yqÌüu†fIÓ±%JOÕ;‰Ÿ&ÂR‡v϶ËæLˆZµN¨“M²_'oC"½1ób1À²Í ØM X€* @´þƒj š&¦)Ú^P)úê =¶/#cGØÉ5PI’¤3jKÔ5º*R郙A—n;/rÄ,I„Y e+„¦ ⋼´<ÈÁ º4mÔª 5«ìW’t3Y0^ÄE“P”2®ñ¶³ŽîŠ6WÁÈc"O´+/ƒköc'Í9^ˆDe{X"uQìî¦'FµïQûZÓ2N¬F,¼ VÄspwã.¶ÛÄØîÝnÐØiÇìbÈõû&ðÈ0îÄ+ŒDn¯ º=£í^"7›« þ-G¶T¨V’¸NŸ¦…óUê«ÀgŽ“7yâf'+k‰¢ÓæGcyã…ª#G½lžêÙ½3ªÛ—ØC(9oŒZ(Že#czì;\/˜"ëH £°8;9 X:iœí*[¸ƒ–sÕŽ|lð[Ûnyt9#sËóÀæÏê-gF&L%O@txŽÜ'Åáçì¶`e›Éª#ºTm®än&/ÍœÆB+rãפ|!Üe[ƒ,cŸ?Åã^Õ¤F\j.‰;¯r3qÑl‡Z ‚‘ì¤4…‹¢‚^ïô©`-¾¡Ç˜öëÖŠü΄b<—l;“ŸòÊó]/P>¬”CYû"Fx¾j(62`Ô€®ð×4@b¾+qöb98˜q»³Y­ƒx%™UK„Ãé´aDœvr†k–¼fþ÷—ëp{/tcG³ì•ÓBÛæøše×8Æ`¾îªùð"ÜõðqïÈ…†Í‰Qº³mfì÷Ñg£é¢G¡Òy1áÖo]$ƒ=Ÿoò©ªfú^ éñj_GŒCŸŸ‰;9]¼~í˜)ò³q ¿Òô ÂNÈï)7Ú7Ÿ!ƒÇî¦øŒ³~Š³~y&“Nkìåè@v@wPvzk¶²Á +ÔävÔÅ“oîÙhŒòÁ¾â3•‚M;Ú}Ä¿”ò@]Pöúü•e¬Ã®&Ø ãD ¨i’uG1Ö{ãkÊí„'ЇMG †Èu€À%èR–!h²Q›6ÚKÞè1úyN‰°”Æ„ '›§'ÅÜc¶Ã& ùÿòQ·Óò­_>ÝÍób + +¨ÁîlÅžÔg'Ã0 ä1^¡(ÞÆ‹œ_R„’ªh!RZŒnž¨óhW˜ÌH.]Üw¨IÍÄA`8^‹æ”•¤8Fs,rKIh#-B3Ã7Å"|£‚Ûƒ‘»äq”%ªÛ®œÅ‚MÌ Z›t¯U p§òôf´(ÿ¥ç +¤á!ÎÇ$Ÿ|à´³`p“ës¤– WPn>á—QŒ48ð7>*8äü’‡>Xó«±pýˆ>¼ã“,œ3û-\9k…sö`}™Cz}ÈÖekø½g ]PKM¤´ …ô@ù{ˆüXOI‹‘oˆØ-‰ëBr…AQUйy¸ïb÷³›“+T+GÁ‰òËÀ*a-ï¯æefEÕé-þ +w¤¦'á=5"k0­+“šâÀ¶ù£ÅTª¿`½_ `å-G9'.ºMÅ&$'Š*Ü!Þô’&½Ýཔ¦„kôÊv#SÇT‡pÄËzº ;SÙƒ™§ÏÐgŽâõP„èeÓù,6Dj§`Þ}™wà2ÖH8Ö/PÿÛæïÕdaûW\~¸çÊÂÁéŸ4ù&÷_uliÄÉÒ¶ª¢ÍXäp·Œ(ø£^¢ IUònHý2ÄãóôÆÒûä‹Øÿ\RRË;QÌíRe¨§ˆwŠËrLM¹NfÒ y9£c]rîn ±8Êû"úHZZ@û-d…Ìy¡vžFfþcµÁ„™‘=/Ö²(þ—N¾¶Âå-¶Z³ðù»Î7$„‹íÃ-§(îÈO0zCfꔳZûÁkþ5=EPú¦†²ZÂ2ÔIXâ¦wU ™½¿ï0°ÙXšò€TaÄ07€³:AiŒ +ùæ-)¥;–UT9è§ç½³‘ú[âa¿wÞšµÎ;{½óRqÐ'çO†°] +­HÙ£š 6‰T»¸ã€µd*óESB pÔ@y¾ &<=çž›tÆ1ã-àZ²8íUãEoc™ñQIH{*öI%SDˆE²xŒk.SßÖë¾í°h!¦ø­“ê&[8á¿L‰ã€8×dôJaCè-®RÞ^5Åúªh1ì‚×;©¡Á>$¾aBÕèþ b 0>ü&FŸ)› ÛÛ¬919 ’®YÝø Lš3ÝORӱ߫¦[³Ö©é(ö«©rÕ4òïíoUz|žþußüðöÍÛ·°:0ÜûÌçعtqY®hcfwl¥OƒRX*(¹\lˆcLû¹ó ÔxïMYDnžKÓty˜t†vÀä–ñºÎŒ)<Ñ{Ä”ú 9Þ¢+”2 H-¤Õ1ãéqZå’)&˜1pZ™/ã g|õ”ú—%¾ÛIô”¾ØT¨B*»†>®Ï’Ì{l#ø†ÜE$çÍV’3¸É‘¡®/ƒ +À9šª¶9E4%‹¶ÃÞ@ÔeTN8tû“«'1mÏÈ6 ­Úó\;Ê«Až謀#—÷ÐS„y±òaå9ÿ: ‘è%å=Ö<쎬 9È,¾á +¦˜:Ÿh¢ˆaYµ'ùvQ˜lu­at½Úk·f­²Œ®×ßkÓ·Ômd¾Î*#™ß‚Ažæ¶‘>ô‚D_I8ÃxF +{Ã9XRÔc`c¶v!BÞñÄ#˜‹Ôœþ‰HkÃØi‚NÎÎf’ñ5Rdj³­*°ƒëí.µ#óŠ%ñBWgp ,ýÝ1dJ2HQÅ(?tɹ_8ãtɽm'Ä +l™ë} +VLÉ¢{l½¸á¹öéx–Eº¾Æ¯Ö·½ߘDm9 Å-&>}e)ÅY׉êz·u +FÎ'Ú”33…'š¬ë „S!3æ%JÇ pæõX—L1ºi°Ûœt NiŒÑÚúOuD(bê=.\I“¹¨˜C଩%µ !÷i‰4ƒ®é¼¡HÝþ…`}A9ÃvIuØURæJªŽšõëÊ©5$wxô—ÛîcOèÛMØdˆäd)b¥áêÑÇ~l™œÏ«¦I‰K<[!Y/¸w&”Ûò±ñ\–Æe ®NPÖ)A€šÃcNô‡ŒX¬ æ©)¡:ñtð :¥N¢"-žæýÅ÷x…ÝvΈaüÆ'vø…ò`l/ä7ö€8¡k}{?ãÛÄ•£Œ»ºAiŸ!±ò9$øÕcY=Ƭ…ÍP ?p©‘Ž_MÉ–çëŽ\-¹‡Ã>öGÀÏÅ« Q™hwÂ<óޑz†Ûý /g­d¸;Äð +>Í0¿ú’O¸o¾rëK ¡g_aÎìöÓyY:/†"ó¿Šf¬…‚y­è©p75ò0ì9©s[çÆ¡ Nhå)éÍ]Ñ”² oÁ¹Æ¾sì€õ¨ 3‚gkaÞŸóùwSAû’C­ñ“ý3éBÖéR­ Rì×…rÖ:]rœ“‡U¡èÜy×Y:$À¡v<ß‘à÷Kjœ[Ÿð Ž8BܨÒe}v–궖!..8>¸©=‘á´©+ ¤¤+:Î.ðmzX±ôøëW!Š¤7qaÈq°H9ß_]WÐö™ÌAÖVoÜ~sPÎZi†=æà€(zÙ +3º, Œ„f©]å4ºxQŠ¢ô$)éü}á¥C"á†ÛŸÓN¤´¡;º&l_>‰ýŠƒ?Ý:¶EœÃÞ«tVˆØê„cüžœÐ7µà9Óï—ˆoiÁƒõ‚ÏòpN¨h—+$#؇–B>M8N|;©¼ÇïÚ¿L‰rƒÑÁØ »ELºMÓVŸÒÉXN¾"i(†52`Š^c5ŽË»¨|ö°æÌrV`'XxJæ=.œÁ´ï¥kØ^ø}¢Wyl¦,öHvÖ¤èøm{4pkÆMÌèñ >]µª#Ð| ŸÐ¦l®K!ätr+.'ÙŠÇp_ï†û!×¾:P |•A0ú{ BÞbWoÌ^‹°5k¥IØþ§W‡3WeË`a¢tã ge—t0î<¥Åö}2*v‘¤F"TšP©ñå/(^ŽFJ ¡.âXÉЈÝNÚýS%îÉ ß²©.«¦{ȈùÕ='uÂ9<”ÉÒê¥tÜ/¥Å¤uBjûÊ u8À)úìÞ]ñ©enˆHŽ(Q C-S÷Žïeì=ÖÝ=¡÷!ö7ä±Áû˳Ú÷<Ãr—¾Õo¿u“!Ž:ƒUIßȹá5e¯EÈ" ŽÜÍž›ýQ¡œÀ¤‘䧹WسexÒ0gŸ©K(ﳫÖ»¿KhkÖJ%Ðû-õ`Ë~Ñ7XXê“ѨãükS@.v!?º™a–´ e ÚA{½ÇÌ?Cf•h˜uÿÖ™´Ÿ0¥[ÑO¸»¹¥KêÓQ’øBNpte—¹…Ÿß„–ô¼{UR÷j‘Š£„ô¡djîøÙE£§¾ÇtçÙè!ϻ֧‘mÑøÜûš~¾‡¦l\wìà ©ÿà_ÐÑ6 .:¿Øo%pÏc $`œ§;Ã]¯ŒJ A9i¥8ðÆ(3´ÙƒwæøB °«Ù§˜2© ++ÕY[Ænl:ÊÆaîûÈÞ +±ux¼÷í Ó\\¬ÔÂQl¸þÉ€MÚ!s”±Ù7jKƒý‘¾2³æ,7X®Yj§Þã,MÈïM‘¡ß8ëvñÄÃôb–=žrxŠ§tbG q| ]ùç0Bà«9¾ô°wƒÓá?añunTtxõ ¿°ôM#:ƒ­;ÿÖ| þ¾áW̾çƒïü+Zô{ÀâúŠ7üý#ª÷|nÁÏû+^T<à×ζ›×qFÕþ“[‰_½ã×lú5¼£·Ðý¡Y|÷¦Gßùñ¿âKpäØþÌ•ôø(˜ß³FñÛ2hå"Y·ÏÿÑ¥tþ?9íaÊ +endstream +endobj +118 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +119 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +120 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +121 0 obj +<< +/Filter /FlateDecode +/Length 3861 +>> +stream +xÚ­[[oÛÈ~÷¯˜GXÒœ9S,Hâ$H›d·k£h›íƒlK²KòÊr¼Ù_ßs™!‡²$OR#€d‘Ã3gÎùÎ9~±Þ\Ï&›<þùøýäëê~óÓOâåÉ«£ã·§˜ß‰—gG¨•¶¢6F‹õ\TMÝh#Î.?¿i„g3ÑÖ üëj+Œ7µRÖºV([[ÛÊ-Ž +i˳ÿ½>;zýáÐ:ðñ€ïác.~?:~³hÄÉêèïGÇ¿gï'˹(¦ËêíËòøëw'¢ëÔÀ¦ìÙÄR|µl|$yüF2sRò})œƽöNtÊÕÞ{ÛiäìS±)+é궸*ÛÚS±äï²já"|©Z—bSúÚ+q^ÂÓÅ=HL1à¥R-$¯‹˜Ša‘‡ w"*nqÞcDí °ÚÞçЧBëAÕÈbP=ž€˜`¨á+ñ ÒÃテ†¿ÎÉ#Ê‚ª«¹¤ùŠ '¨n8 ~ Ýpì^8R“‹ÉÒg;²c³O¡­ÀEø.Úq€î4ʶ EÒÉÕf,‚|{`4¤Ñh\e‰r`ü²m½ÄÊ %&è}ª6=%5âÏþº]àO?ÅßÈ•;•†ÛQ+¨ïÞ¿ÑìÙ™}/<œÄHpë¶.Ú0ÿc¡à'ñtaî’Š¿' +~0¹‹¨3YDÍ¡¶BrcË{:•ÙîɦƒúÁ¢VÆ<|B?MmYˆ‹+”/æŒX&Mn)MÙCŒÁà^ùûý5údHÞ>Ç,S†ÖÜň3Y¢–5$%ti#|…)ךBÊ”oýÖhËÁ}Ôü×i×HçÄ¢åpOäs´Ÿʦ“ã|+‡…ÌÕt^%ù6°r…ü“L p¡ú…_Rž{G|RNh(5¯0pÞóHg5f/DˆRìAð½9Ó¼C1·Qh‹k²‹®¨°±D}¦Š“*¼¯#ùÿB¾Ü qL7ß –v+¿ ÑÆìi°ÃäeÈH/§¤<¬1á;¿†¢± y:,òOJ-¦šŠä€IÝ5õëVÀ¼)¸aHM%"•SJÒî4&/WsÝ“=ß,C‡háà|ßfæî ™If¹Êȃ²Œ·OyÂÁ§â%â”Ê3ª¶UÇÛY’;R’eØtI#xõÜH6ÅjKk¬á‡¶Å×þ±gFŽÚ}3†pp}Xí‡0/UIX4Se©mM©'õýzO8AÕE‡³Ë/FûìÞcÇQayÂ*ÕàBؘýw±—£Bíר½‡7œ@ú¦‡§P]²S2´ÙÐø,”VPÉ…RŒn\_Å?Â:îßs¡¶F*ØW£X„žv˜àlžŽ%cß22¼EÇè» ²²¸‚k—y"Q;AÑ4ûA:~çMtü¨£vÍ <ïeiL„ z‰#GƒÀŸ !Böj§ö÷;iù…Ô!™¯C¥=!î£HP]²Ï¼üé-5û¥Ôú‘÷¿‘ØSà6î¨Hd<`—"ôB55c˜³] šõÈB¥)Z†&Vú ´%MIJT ¤LªÐ¹ñÁ›§âè` -øæ¨àí¡¨°E2/*øöàÄ°QòÉXîKI¸Ž‰˜ìm•Å½âiÜf0w_ÇFк”ܧÒû²¤ã=ÝŠv/‚¦Yu"(zÅ>âý@Ž Ž.b£¥ GR‹™‰å¨¶ÛÛJSm[(ÀòÓƒgMÕ¼ÛíEäþôÑ@v”†– —/÷}†›•Y‰ \°Þû±Ùöi"%Ë×Ô_¹)9 aªBùO0+Œº¸°_ÚšM©û•gþYr'¥ï[ríÄ5ÍA;Ù&še)®‘OåOêéâh¼÷§âe:ÆþW +Žc%õœ µ9,’+ãáÇŠf3.…Â8Ó¢ç°YÙO„ãJµýNñŽtaR^|ù›…Ñ>¾âqÈÍ‚kT–%Ä’cK®Ñ[•FŒÈl »£ˆ¬xÐO¥¡Ü’‚Y¸òª³Îhžì'ö}(ÌûÁ ðˆh&ØÛÌŽ€1í“ ó€ §raB³×ài&˜¾`!®É1±gà{óèìÚ$aéÓ™!C—Ò R&¸A€êàãt²gô‰9*îg4 –ǧÍÃòv\U³Ü_5kÈ.‡ ûe…%>Ê ¬_Ð Ðh•uá粤ÔQæ+\óçÕ%•˜¡Bö)8öù6=’¬Ic>q[ªÈÞȃÍÉÆRÈÃÜî>¤R<ªê¶+QÙÐy-7eL¸}!V3ê'=CKŠ{]ËKú1#EP¬¼øjÔ=Ë‘i—šÛÆ«–†rƒì®–s¬Z±âÖ·N-w¡Ÿ•:¬AáŽÆ$êKìHc„¹(eh]˜^\;NtCap|ØĶUGjé-ŽÜ_x9B7¸ .ÈŠ^ÒýÑKyH/:iý÷jœô× m•víwNjœj—ëû²1…I‰²í£fcr°êØ+¹ç>ZhÒ^R[`º†ŽxœˆÒøVÚ㊞^íüRrK¾¥aL_á<ö=©_Ã-ðÓâ†+–¾ô@77OȤõP Ÿ%¼@ Èkz,¤TÞ $UÌÖ¤hÁ¹BêU0€ã³W1‡¼ +¶áõpïË0,ò£õS +ß0qJ?“]æ>Ùv¥Ìa»Ú¦šiW6s8"}÷´…mM´Î(oÇŽmÄq*ùZÒ;¢dOa¤1*¸e¬ÌéM—è\Ã[N-¿˜I1iJ“R0ÔŽ^0í§1 œ¯Ü=oô"ZYióú^© G¦Éh {“tx!%ŒÃåþrúX»nð«¯øf¡ºáG7áÕÜ<ÜwÏ„ûÑ°(÷î0î·©fâ>w(¨iôî·Æ`ï0ÿ¼#¨E_¶æ:gšâ/&ZSªì—áêßÜpö±¶#xˆ ¥¸±‹ÙïrÒˆ°šÇ¿]xÛ·7‚Õëf{ &ÛýÐ݈Ìý/%WôÒ$ڥⷖ1R-€kWœO¸€Øм£tðÐK“Pgà%|òR$“’îÀ¤dÂo)ÆæaXBMÂXåX~ï´¥·8ÓÉØ®)K–¼dš‚J»_T[3²¾¨ ÷Ê„ªZè}`ž*ž +Øq6HgÞe®ÏnB¥tKð¸!a¹*Õõ —xƒŒè¿¥ "ÎUˆü@FILŽˆ¾=?Ø•œüÊ‘d̓¯;üvàþ(¸ÿ˜¯d +endstream +endobj +122 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +123 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +124 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +125 0 obj +<< +/Filter /FlateDecode +/Length 6023 +>> +stream +xÚí\YsÜF’~篨G ÂÝD]Êá°Ã¶$Û³òzÆR„wWÚMŠk’Mó¬ùõ›G@ È!å†Ã¤Ø T%òüò(ì~{y}r´wpýÕW»¿ì¾Üû¸¼¹þúkñݳïwvxÕˆã+ñÝëFÌ•¶bnŒ—ÇbÖÌՊׂØ}Ñ)^‰vÞYÑÀÝÜ +)õ\÷¶o´Pvnm+¸èl§’mýúÿvž¿Þyþó÷°6¬?>à—ðãXü±³ûâ¬Ï–;ÿØÙý;PörïüXT‹óÙßÕ»?ÿÓ3ÑkÈ”‘LüOŠßi©Ý’‰’ͼçoTN“îô¼í:Ù[$êMekÕÌ]5¯g²Ÿ·•®¥Kÿ§­´xYK]-j]íÕÒÀG×µTÕIÝÎûjYÛyW×ÿûúoá¹Ön<á@ðî åI”HÞ¼3 +I,¨4Xg]Ó3•¯€žèZœa€‹U5«¥š.j }Q+øä.°\fà=õ9‘»¨gL¯’ðÄ×â°–Ý\ãštѲÎTûµD~œÐ2§ôÿ ’­þYÏ-ªZ¸íþjà†“š8µ¬ |x.®ð~üÔ_dˆ2Úøj£lbÔ¼é5ªñ©²HÛ¹¶¶w-³è§zÖÁ&GâÚËî?´x†¤˜êY­‘ƒ¿Š ±F!‡–uÓ->v¶Ä6 žÑ#jø w°Ô;|ú¾Åçû üW|ÀsŒvðgG‹JdÁ²Æk·ÀŒºÄCÔ¨óõP|€}eÎ<ÖIØU:–‰R(ÍÑ#áßcêéÏEíàµF +—ü$—¸ª~KäELÛ™íñ§Ä¡…€?l{Ì›,øá“„Ù&a6¥$- +E‚üú$A§“›X»p—&¿d×ë h;ìã¤a= ÂÌŒ¡V9²úBÔdáï,L/Û_Ñg§Áˆ/(à¾4;4b»¶ãýW¸ºiKoÚ¶:/ˆôOSš¶N¦-?Ý°™ÔõÆ-ÐHœÆGø˜ lOUïkMI—K&m/èžB9Ä-¬02±Iz×gNDnRŽvA?«X9rUgšÂæd¡üí\D_³îúÕJVøXvŽ¢nÉE´ðõèY/öˆœ²I/™&…VúÅÈ'\°û lFåQ¸KÒÈHa ¤\ƒ›a‹¡†ƒôJ€Ž¨g£:Ø"èü8`º¯Áû£ ¼ ‘ò®2l%èÃá!Etd“dé&ùB“|ˆiJÒtkÕD9<kÉûèL{¶~ͪÝ%Wž|u0or¦§ÈuŠÄènˆm6 ž-%t,Vx–n³•’†´h§hšsñš|v +äRîÌðâ. +ž·J1(#¦bŽ(¨%U$׎€ƒ*ðìèÖ)A [©†UÈw™vþN*ê}ÚÜ{gÖ͸9³£§øÍˤ‰v6Œ”™Ãž qF®Õ¸\'º¾€h$g¹BÎj,çq0À¼=¬7¸e–l +ïâî1e \”c¸ècJШO€‹G5„‹ +}9Idj[ú²ûB3èv$KiÀÁÆJÊS@V5 å_5M£¿ˆNzWͳŸÁª½™´ªÙ”â £2œƒJÁŒO%ÔÜúls0ÝΛV7pMIÅ›ê[°%ÔHð>Àgíñþ@/}²¼'¨‰  %ª5Ê ¡ó5KÊ“$b #¢¤QÅyòÃFå«ôÆxö¦úràÁru‰ð™N»&êÃAìNU^Fô–b<Jnnd.&à Ž3î•ocíWìI½µƒíÀë>Cx ié†o‘¤ÜÑ屑SÈ>.¤%:ÇBäYÀzˆóÁe2á—ü'1¦Üt3\4xÍVh jM‘ä$_JnZîòTOQZ¦Ã"’•ÎiÖŠèº8Þd51²D(qŠ¼«ƒø’Ö¡RX¸Ú¨A ·„SøÞ‰›* n&/´â%;ôOˆæ«žÐ¤à°O©$ƒñê9 $@Ê4Íc@\.’ây¾…Í‚§Ÿ¢+ý$])ä9MW\ Ö´\¯-€N ®Þ†ÀìÍÏ3H³-¿£5†‹˜1+àþeAì?Êò+Ù 7ä,@Äe궈§º(à)°_¡½Ýø2‘$ ñ‹¤9jr.”&7ñ¾ÿÚ;…BAÙ€×ȉøü +ô¼£o0>¡²´i¯2.£¥HrpQð+¦!Þ¯NP"ÛLR¢BÌ“”ÈÊÜá˜~½ +!Zµ=àOՂ܇ƵNÊŠkÂ’™VZ¤Î,Ò&äîYÔaßÏ“AYÝìqqk ºòø\¤¤]Ö! ôrØ2%¢\æcaŠ ¢]cCe¸Ê€·Oy™ƒbX!ÈóÓ%NT’À/ŠƒˆMÖ£§´ +i|BCs.~[ÝÒŒ¹ Q]^Ú +%ÝÆ;Æýèàº7öþ©x¾š&nYzùMÉõh®]HØ&š„s‚™¶©Ú¼mcçáv•ŸQ(Ï“¦>¶lÙZùáE¨ìô#°Ä»"CåÿpÏWRù'Øn1Ý‹‰<‚Ï÷)O¡:£É Ôª>º£>:—#x@"¢<Öp¢%};I Š¬N­ÏÙ!©k­·÷hÉœq‰÷”·™U'$=’DÐþh‘«&HÚUÙß±1)Æ4'»¾ÀÒcu:®µˆ©QPWn´eÕ½qy¨,ß çF.‡ ›¶ áÜŠ‘j|nª(ÞpMÊW FÆN\ª¯1{`G^ B¤>êÜäZ*BøR×ttßêÉÅ¿/:~:µA‰} +.ûÌц +FV†WZSÅ0ÇïÑ/nõÀb²Ê{ ãn ‰ ä2°†1ž ¡55*†)M7eEã<þ»ÅEtšµãÄÜWk‚Cñu˜Ë䆕Û‡‘“oÖwb“Ì;Y@µ0±à€žà2Uª¿úFqˆ`ñâLD–îÑ]¶¬ÚÂÕ^DÔ Õ*‚j±±­ŠÆ¶6¶3ês²]ÝÖVÃÌ»`›O'Ê\b‡±}+:ÝAJÔ ÞGBÂ;C/dA£ÅÑμïàÜ›»ò¦ä›ß¤i«ø6ØQñŽüß/<¡è°Øh»¾3âàŒr‚3Z®…åq*^í„›š@Ó–ë˜Õw’éÑ­2}Ÿîj„²‘Êü®Y~ÈwÝ.™ö.fÏžGí³ƒ´-.œ=ìL;ðµÆ"ïÎRÔ@4ÇÉ׃ÝÖgts—æ °«P8[Ï-RßïÐ=èê4ʾú/nY×”}ɾ +ѺäÉCœ|Dzªï¹íø#Ú±FÓýoR®ú;öûŸ‹_èú®z Jêä>¯‘ÿ®úÙ+r¸â;¿âO¾ÕñÃ?1yùJÈ\õmmѾ_󶊰ÆŠWÞùþÄOä¯{žk0ÏûÆÁV²bmÖŠ¶/Ñ;aP®Ö á[IVÂxéçÚöé¼¥\Cº¸ùëÀ‡n»ÆÊbcæÍèä¶uL¯¶®cZðÍÙ5 "3ºÆÚb¯•×¨nn·Ñ2ëÖ¬³Ö+·Û2 ¿TáŽ'²ýœ8ÿKà©VZ´˜P0ßØ]"~!çi ˜œÐØÁ±D°²¤Ò#¹f H=âëcºöûÇÔN¨•o„/BgfiÆOVÓWË#úuÈ{žqÅa¹Rs9–[4°è?Iµ V‘”‡gÊï´dJ#EœõÓD ïqÂsäWôGØÂ?ÅŒ`|¾G™ÃÅ Rð‹ÿ /J»viU‰ÏùÝ÷ìÙ¯ôï >Ëk"qJÔí½éšÌ†Páò›ÔŠkûAnç+xÒ¬Ú+iJ-iÊ5ORž k¡Ö:NýSxW!ì+†‚´A¹Ì$ê!éÍäžòWzMZäê«Ôš£Òj8Q4ámZºœ¢–]–Tí’^÷MJ9M²ënª‘`£N€²7ºõ}˜ñ!¯ÀÙ–‚µw™×ȪeòÓÝÝý4 HÚÆÝ &pßLbhHTþÈ@y#ZÌàd/:@]Cðå7qN¥ŒøüúƒPâƒ0âg‘9\ñúr£Ox¯ŒÅÃC·ò Õþcg÷ÕÅÞ9\õíÁõÍÞéëÅŸ×â«Ï_¼ GpOŽk3‘ mO׈üD^#‡Å*¿8$ºô‹‰î&p·q_oöËwØ¿L»S&9ñ‚Hœ¢è¸ŠF~Iì³]rÏÝ©©ÞÜé“­Ù“g~YÑ_ìÉÆ×ÞñŒ°Þ>†ó賓£Œ¾sÆþ°ŒÄ¸§/ËѶĽs-ÃÐ`WvÜ4¡Ï^œ*Hèšy /ÅEiA1yÂåÚè¤=—Šèòi…‘Î%5ûÔ ü$¿Ç“_ßÜW¼ F«ï³†¨±QìIò\ëMëã#Ø=E†*7•¸dœ¼ løEðš&L|kÊR­¡™IÀÆ «Qgx¾ÃN ¢½ŒJŽõåö×|&õÀ qY’4ôúAÁf"7j  ‰ž˜{{Ààû· +"}5§ ‡N¹5wš¹Nt¤œ!…ÀAü`Ÿ~¦[9¹ÒŒì{ö!]ÓeºI™æ€ÖùULÙ¯×dÞWxCÉ}Å-ªÞt\ªiiRKÑ¡Ï#îø¼ñŒ]Â,ô]cš–Ì‘%E7ð)ZRÇä&D»<ù˜Ã2å"ÄcíGDz–UL +)k9¦p•‡3`ò´˜ÔÝS<‰þ¯)úþ¾¢Ô6øa-J?%€âF3a³ËÕ¸-@ÊTÊIÊs {õ…õœÈäÉ¡¯ ŸÞŸPÕà©7E]gQqà{Öø¶‚TB¹¡^EØ÷uj+žÓšÇ"”²¸ýäH„q]7€êK_š¡8±ë«]IÀ^P¾›ŒJ\Ž´žÄõ™‹Ë5÷iž›P™íUV…› ¼èxÒ6’§ 0ŽˆžØœ¾Àx—ýÍCÆ’HB ŠÚlélÇÞÈ.Èò†ñ=õ$—¼!z‡2FôU¹e߀ÎèwnÊùb|*%”õï÷È{Þ RŸgW]Ï’È=T*RSÁRSaˆy«T›=qªÊÙ;ã½'É=ŽäÚƒkm_ }ôOzÜ=?bÅü“¡Ì‡^<ëë%‚yÔéÞË!¬êÚís p… +„ÚÝUD|¼REøpJPL±>ßÀæù"‚Nü’£á ¤ÁòÆ.A…¿§†T_½ª}–ý ‡zX[| ¹¢«WÓÄßMEoOÒû ¥÷p¹–5EYÔ0wæu‹•wY[Ì¢’ægärAÛí‚1ÏYeÞÖÓrêñRCâ¦ù„"®k‰o&m#y‡Ä‡DOF®¹$~‡ý‰D®­ßáÛƒbJM‡>Ò Í‘® +µQeÛˆŒ>†æam+ Ø0 äyüpZãÃÛF·4K—G•s?è1¿žjÆ>b¿NU…,|¸X‚(âVÄt¡¥¹¦çxÀëªá¥ "ߦ¸»i^ÇÎÓx>´ß”y×´wOž”æóTšî_¦4ý}v¯MG]^üfBÿßÓCÊÙµñ¿òã¦áÓGšN—ÅÊÚDŸ=Ú³ssgœ³r°g%2­ºÑÉycM‡¼]ãZÞºa|ÀŸ_ÖÈæá{é¼×í ¢Nʇì¥o!r#¡ȆDODò^Ùö8@V¹®ÀÇ‹9|à°ËÕ¦!¨XÓ¢SoTÐÕŸ°4½8FÄÏ-½²ÕÇï´¸Wz#87ßÏÃî %Ã׫¦¸c1ί\TÖ|#ÓÐÉîë@FÎQ—_6–F¦/iØ+vK¾¦*î×d£Y±¯ƒ½#z&50_ÒI;¿S1䵜” Ê{¨Ÿ>‰÷óïƒY!’b™ÎYÞ0¡×ŒC/bÁj0ȹ®i6ô/Ýúþeú—"Ag’b•ŽµJшŠïNó “°<;0áõÃWçXˆvGÇ<ÚÁ¼^†éŒÑTF¨^Š,©ˆía6#nAOS…©×'I~î’¼×Ìep¸e›™ã» @9¤Wé#ž<¼ðÝpÄ¥]}ÄEâ‹G úÿo&ñ`”aL>¤ó¹<‚z„LÀtódåÌ­2õ ™À"7úh™ÀˆèéH\ÝG&p—ý,(‰|S}_Ó €\y0o5÷4kD­æÕ§qújÜÝ[Ñ6qÛOTHÕw›âP˜uù»”ÊŠààL¨ÇË%@-ŠŸCÄOÆ™µú¨;ÉÝû? ô³hûP=c;©ln×ØSÝ¿¾±·…´äõ=†DßÂ{»ûˆŸ¾¿n,zDœM6âʹ÷ጹâ—ü­05>)Çâ†_(Udù‡ü£oÄ3>µ\yv.÷{PÚrüM‡ThpüÞä‘*&y)~éë+_ PkL@&áN-ïîöŸ$q/’Pæ¯ñ=·ïhýþz3iÉ{´3t#¢oá/ïã Ý]ö°3t%‘ÓR•'“CuDDóNS!Wá»Í:Ó-ØϦÎ]q\áßoZί¦jPj„ÛA#<Öxù…,\ñ¡€ï¡_å›ò¨HzžN'Ÿk'ÃÑ þÓΘõÝÏÍ=‰û/$îÇ,!â+Üb}ùG~%(¿!ö•Ú€%Õ2¼ÿ,ÔÙ¨qrê«r†4È¿XÞꇓ9ôÊs.¾ú·)ö_›;|‰XöþzC¹Óþ¶ž.{gÏŒ<˽¼½QO@9}‡šå¿+ÏÌcIñý±@<,™‡-’n&r#¡W$=¶˜{)’Þaÿ‡+’Dn>T¼ÃÅ ‡ð¶t´õ°£×)Íù¦¯¤?2„‡Ç‹ Hß¡/f ûñÙS_‘kè5rÅé¤5'‘¦;5C¹‡*ç“D>E"ÿð.æ +endstream +endobj +126 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +127 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +128 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +129 0 obj +<< +/Filter /FlateDecode +/Length 6457 +>> +stream +H‰¬WÛn9}×WðQ¢ïÝ6ñlE»;Ñ[²(²lgãÛHöޯߺ°Ùd«¥´1A€Hj³ÉbÕ©sN-ÿ¶{øz±Þ<ˆW¯–ÿË맻Çñúõ›³·böf5SBUÆzøß9+v—³å»J\îgË•þ] -V³…ª”ƒo¿|¡ªáøWW^¸ÖU¦öA_y`ÁÍl®k¹úïì—Õì—_á¤?à |ß…íñׇåßo”8»›ý{¶ü†÷a}{)æÛÛÅ»7rùëÛ÷g¢u! uùÖtõ›µE+Z 5AÔ¦©Ú¶ Ã+¥”}Eqüœ:;§Û²ñ•²­nÙ¸i[6e–†þ Ó«9½«,»ïƒ_”ÃKiSqvé‹VuUëà‹@>Í?ÜÉ…®‚˜oÖraàóZl¤VðÂüNÖ•óxn+‡_àMXñ<.¸Å/bþUUi1€LÕö¶2ಽüÏê®ÚæUZ­tV$º”¥Ki¾’FéÊxz)Τ ï™´Æoâ^jOvRÓ]×ø»;ËEÀß¹¡+ÅWm÷ àÝp.>¿…5x1SÜnaª.(öð¾\Imyµ6”'íðç5äCÌÏÅZò¦çRSf·˜zXøçéqN§×¶ðaèmÁ?‰kXïñF_%$¤Æ{,àBü@ÓÖ{¹ [ñþŠ;iªßlÔÝjAqop¿&Ûï—èìªzC7#˜Vc¯r8' ¦šö …ÌÕ©¦k +§=fò¯I ÈëåGêÕ­KË÷rˆÖsÙ3S|‹©n³¤K*|L»…á©c(éÖ¥SoèTÇ•"HÐÕÆÐN-§9¾gê·|X G Òx—´¸bÃgmã ÷âA¶´Ltn .Š'<ÃðN±êmVÿìôÑ`0¸¸x' ±Åƒn(/62†cÆ0P â mÝm&âIôxK + Ñ¶¾Çßd 0êú•i ëP <ˆçOi)çC¸c˜f¤C×Ô‡ðè ð30’ Ñt$ŸlAûž Ê(mÁ•i°2\‘èâF2†î« g³„ÔB£œÎÿ7ÿ!Z½´*™‚£ rµVÜKU¤þìu¡Ëú¢¬¦–ÔLò½Šµ;4̳µÛÛÚ=Ør¢v{÷ í6Ž‘iÌ íÎù4'ån»ƒn£NEµ¹–P.PjZ  ÍŠªì÷VÒq€oã°Ü/'–ÌWnPàÆ…PêÁe@¶¯ºƒ¹e˜×?æõ!ÌçLSñ/[pHȬ>. $¤DI~; +Ž2\R=Çu•“plõ‹ØQpt“®Ú«5Ä){Ò-vl—S{,”2lìê 5”$•(I»¦Ä^ÝåɘÍÔâ3UŸŽ©ªÕ{²ÀQQb X?ºw(Ž—àë/ê\\<½fzdÐ''µ`ž>ðYÌf"é$ð=„¦ñƒmobyH6‘ø ÞïX"€’ÎèÀÊ`|T÷¡< ¢%Ô4jŒ&³®mçü~â´°~žKoX¥,ÞOÄN}\r]ÛT*´¦ÀÍ|!'±eSb²®aÒ×™ÝÏŒIçí"ö³—õfÅ›xdïƒê~—Ö3ADg¤£Ÿè,ðGËPz–]o¸»€1´ƒcÓ­xî¹Ä;0»J·<(æ\ˆž¨º¡‡|ÊcÍsxÔøHHðŠg"¾Ú7…c8pv0"йœ”aoŸÃïºð±œæoÒy}–ÒSJ^ÀRön=¢ú)«ËVgšuËùí(¦0ë |d?„KœE$•¡gªŽXø]¼Î:ŒîjêªÉ%bAšy×SsËâÓ­Þ%q§Î¸ÓHÆó›(åÄ9:HIyx kcƒ“ÁýH’¬dÚ¿'×q¶ž§PNœZécp2m6% üh–üä8Ã`Ð}%FZTUMqŸ”ðNÅËÑâ°‰{µª–„ê˜L ³ªÒ{öž„w×Eæ"¸Ql©*qG©ñ×â*›wméÉR·QV’SˆÒü¢OJáwÀ}6x=C=[Ž™£Còlp—¼1Ñß^È£™ºÇä¡OƒÎ‰á²Wº 6•.˜’þ¨Ò{÷ù¨±M’@Ûá“ +"atϧÍH㈗Îß%þ‘ÕQQ5e Lõ8ÈËGÁj~(XÈð˜9‘%Ù<ìL“(0ôñº`!piHðFZãáW9BŠGÓ–]‡ 5¹ttísh@BѽÁjKÙ<êè•ÎýðbØq&* ‚'Óñ°GLñ³ý¥xÏ`¾—:0»·éñv¤˜;ª¢îOØG)Ѥ{gÕS ™ŽŽÃ/Þ‡פÄçå±€Tâ#þ{©b+tPlÊläPgî'š$é>š”ÛQænb(äÌj!/'"ËeÈ‚ðÔo[¾ ™3Ol“þÃN8î¬&š„éIôק)æ`Áı{æ+,rÈHîðkÉ“Ù9zÕœ|ªÒ9VûÚ6Ý ùp;@õÙ:ûThÖùÞ@h&阞tS“@†CNÚ· ÙÌ Çyøäp“é±bå< 6 ‚ÅÓ§’“?®¤=z`fìýü©,p-Õ“¿cjÍ¢‹b_ºá™¦ÊFÂ^(ó°p1«N¤ü`vtà^r" ìDz—Lg9[Æõýâ."k'®“E„=ÚB9ÚÒ÷×>/ý‰ñ’üa5±J¡¨’ªŒõð¿sVì.gËw•¸ÜÏ–oÍïP8±º˜µTÃV´p(ô¾ð¾A/D|¥”²¯'Ù¡:;¶Û²ñ a­nÙ¸i[6åMiâ^AÓV«x¤3åÄj÷T OšHÛô~éÑ™òiþóNÎÆR[êuÀaÃ|b©¢—ÒY†‘¡ß@+¾f\8Ǥ_3P³y=“Î~Á˜A•±!2YÊ–Ev'ÙeÜHWs‡B( OűŠý„Âï—‘ÐfùƒliΖŠ‰ªMÙÂÆBcz3L’x/5F{!²94ã­º˜¨3{JÆQBŸC›1Ñ÷ ê½£dDRñ X\Œ*?0 ™oÅô ¦¡o|æ–µªÎµªw4XщÔY—ó«::¿z¨0 ugìâuÄC—¦«Èu¢×ŒaŽáOZ•¤ëXl³ÂAëƒ&"<¬Ë%³ô#çÈdÓ`¬WškÿòLrw£µ+J“ áÙg¼ÿ@G¼fÅ3ΈóëýY:¶eÿÒ¢m±cÈÕ½ø<—Þ²¥Î°H=÷ƒ‚ÄEøžIKò7¢xðQ¸èË*éé%-³ %R£Ÿ!m™ŸFVä¼=å𳔎vš¨È@´Q‘ÑZ<[‘k{J‘Ë-'*ríž¡Èu†&ö”"g|š¿…ê‘×ØAPcù O ÐæÆÇIÁxžGP›u´‰4²±olYKI¡ˆÛ¯ô¢Ív¸`rÜ!à d½÷ÒǹwÛ!H‘Y”6ø›è.,‡«Zî*>úåÔ~÷Ç…š8Têú!¸0HÞ +)›¢M2P—2àùÄÜcÃUH£6ðuRϽ±I*Xî˜X¤7·™€äšÙB ²%ÞΡeþ‰“iÕã3ÝÄ綸K*ù av{h*2»5‡ &Èh9ÄÜ0Ïã5­btZ\gk6yZ7Ý!ßÀÕPË똶šÆ™-¥ŠÙÙÒRL¨¥`LjÅð[°†|­f˜[Öo§ý5e5SÙÂÐÙû5”Ì:žG`K츅Àë.¸µöqÂá=Ï“T;‹;mº‰î6òÜ!.Ô†½k*aÖ¥þA™R‰`g ~ï¨ÌÕm¥Úÿ³^6½qÜH¾ûWôÑ hÆÝdA.É®`‹µ€r$Y’³–,eF^Åùõ[_,Én©eçbIã6Y|ë}ŸêÇÐÓø5¡¾;M¼}x&Ýè ”…át[i¦\ÆCª^­ÊÐí§¿§*n ŒïÛo¯Jâ(Âml\ëV²q zù-ÁÌ6ñø<ò^íÖr¥WŸh +¶GÕøLHaÙeÏïyÇ‹\*e ŽùáÆç+Õ/œ¿Hsôðº!9iAJ£[ÍpNÇ?­ˆ¨‡«ˆB§‡„á|}íø׼ʄe¹l^œáEÓHuSdŒÕ”ãHªtQò<رpùÀ»ÓX}ï90«iå}õO\Ê¥%&z0®©}µ?Û†k*7• ¸; ðÍþRÙ8ã=>GˆA§¾ãÇb»dt¿¶SðO¢Týn'cÜKühjÖG•nžöÍ0»DF¯wõÒœÚT¡ÝšB=ä¢*”ÙÊê™N¹¯rJ2WíZ&H©©Þ@#‰Û'ãÃÍZ‹ƒ &C„voV53¡%ß"€Q»¸ÐÞ(›è“éñêNñ€AÍ`‰‹ß_ÂÍTá—µ‡¯T±i‚œã9ƒ™—UaO4ˆ)™dáÝ=nŠ°f›ØܱEl›OÅÖŒ+b¡8ÛÓF•†œÀ.|>ã©ç…V“ÚQŒêû“¼é'Ì xæ?¥+À ]³Àm¬ËX»ã›ŒÒä;?3P„%îBÞaïí%ŠÇ÷èE18ƒ“záu3€'~Á((y±¾’)1#ž,8ykõ‡hl<ülŒÊ©Kµ1t+ÚȪ·+u,†iˆ¨i}:U[1Aiÿ¾ºäÕu…5÷ÐÁ0çà3„Ø­¹Äi°O¦Á3”ÃÎL&¦~ÃCH9»±sxŽßŸe¹*5®Ha ’*lvúPãÆQ·K•³&ýÅÂo¸£Ìå¹K+´±¡7J§ÏY}E;~ö†Õð– ‹*rÄŠ˜ü¸ý”p°p+¾ã¨à:Ȩ†„z µU×5ÏŠá¡Oá²ø=j4a3#nØfÉe+ã©B½Œƒ›ÉÔfV©£ý>ØܦÓí«wµÈO°Ã¥àç½_žsF†TØ\«RYñn±º]2!ÈõmÕÌÙÍ +÷xz#™Cí^v×™Iþ €07/sœŽ + Þìæ»2§PUZkŒY,Dx’AE…/©¢q-L…pðÐâ—•™3‚1òò¥d^h´‘ˆ¢ fÁ1Á Ÿ¡àFŒë¤úzÃÅåŽ/Ô«©·Òf÷uß0&oÜÊ”[\uzQÁO7Ó¾àsØZÛ€é·C_ù¾5õKrÁÓ‡_ÝŒMÎbƒËROó×Aä#Í5·2>ÞÕžÓ©]hp¸/üÒ_¢» IЈžI¿ç9|³™&h…"ð¡½zi¯Û‹HA½µÍë¨'U-;ƒW³Ñ„† ÔÄ@Úk8‡¤Å%³^¹É)þ §¼ø¢[ržá[Ÿ¸´Œ]²ŠÆ<o✠Ñu…µ7ühPí¬fÁl¾”áéOpbü üÁQ-Þ#ËL) +Mzd9]:V‰^ƒډïñ É…iâçGøtŽÎþoL//f4Sñ¸¥ƒ}$µ“´ÔN"ÑGÃîà ¡Çãx¤§òéŽ!›Î@Ç×nåMEËí"'ZjÅg³¶•%_rïÄØñô÷+Ñá</ëx®‚©êeÊ››ÂEŒw‡úã=’]õ Rq‚8;«a¥Þ§—›ùF•À×½™jk‚¨ÒŽyG—x¹2à…8£çZ@Z0½Ü"›ŒˆSšú²¡XœVŒe|d¦ÕÒ%¾OGNi°-{‡prQOOK”0&„H(F$(¢­ï6J¥M¤€è{ø·ë|u¸~õæí»¦º>¾zó£û ¤S^¡œ.*–Ò\ÍPõøÐ7à03ô)(éû¦iü§ÿÝðngÞ–Tq¦KNݶ%}z|õÏÑÒ9NO[9pAŸrJ„óê__Ÿ²©R8º Þ=–ûŠû€/™Œ‘ü+ú‡\¯Œ;Ö¡Á/!Ç8…ƒ0Æ•ÄÑfÄ1,‡¡~ k9€!<ú[EG°}KI¦ÓóæŽE\`ª&z+«Ž{Úo†@—æ.}uŠ•5~®w#îáJÅÓ lWSE{7™¢œt°¸s¤™ârØØ2]:µÓŠŽhyVÒâ:œU5¹ðµrkÔîî[˜Ñ=Ík´Xf T'ã ÏMyÞõ@ +X2Ù”ñ4&6ÄÊÿ v·©÷™~0T -00ñv'¨!¿2ÝÙ9t«úD m·æ)n„V[ÉÚ¯j“$`†tº’é{¹Í$ $ˆÖ#„èl_åÞ¿¡Sì¼ON_‘ ¬Ç$uïà©ÓK!ER’âŠþL^§ƒGÛ³Ÿl“Ó´.§nžöÍpd¯.c“œæ̆59uÀ³*§M£M˜I‡´ :–©É°[/´P´ã5éß‚_‚)Û˜ ~ÃO¨sèUf8² öo$)V©£È«ÝÄ®+‘ÛöV-ÏÍ5±XäÝ…Ó†²kNf…Ncq^Ž´­CVØÌ6+lïS‘¹vMdn6 Ý{öñOš„Ç•:Én`}€»y¡`†nÏt= (ü„TÛÍ)ï©­µ &KŒMV™ï/£ÁÆ‘…Ç:*ùsLƒ+†š£’GÛ.ˆÆ,q`I4DÒ“C褑Ò?ƒP¡8[5ÐnÉCsÿÛò¶Cá.â54Ö\ + {[f°§‹ÝÜYıL•‚[©|Ç~ÒTG¥‰U3)Lؼÿ®;jÁ;i×#Šf´4äñG9™¬a·ºnzO쀲Fzž t>¨Œþyñ#”eä~‰ðÝZÖ-#ûQâZìY­6‹9ÕIõ˜ h<épÅJdÍw¢KáBññPÏç=ŸLÇ™9‰÷›ˆ¡¼ÐV1û\snÍÑšÆ`¼ +®Ôx“ æº^ãŸs¦ é$w  cŸ ¨èQmÿ¨i¸»ï¸ÂÕÃ5©Æ©<ÇíƒÃ"|“ªtø£ì“Žò­:Ú•óø$üæqæBï '†o:¾tq,…vûÒ§u`Ñ䨰ªh8ûïrõÞš¶Ÿ2ËÍfYt™,Ü\^TòË¢>Úi@dS} ËÌ$d©n¹‡îA*]§EÃçfÁLª \]gš˜['ØOøMvzÉ¿ýÖã$³*Ãùþí:_®_½yû®©®¯Þüè~ƒ3U§WhëpZ<);ï\ÍPÕ~ªvtJßø¶y»¢ÂšS¿oüÜåkNÝÆ5ÇôTx!ÕG€kÌLí +endstream +endobj +130 0 obj +<< +/Filter /FlateDecode +/Length 5612 +>> +stream +H‰´WÛnÇ}çWôã N÷ôÜÀ%ÙŠNb~ˆƒ`I.)F$Å,)ÌקnÝ]=;³Yˆ;—ž®®:uêœãvW›³óÝwÇ¿šã·›§Ì÷ß¿|ýʽ<9ªLUººÿ½¯ÍîòèøÍo•¹¼?:>±ÿ®Œ5'G몬\mNÎŒüx4mÙÁøו±¶.ë¾ékʦiaÍÍÑÊöÅÉŽ~<9úñØé¿°®Çµðy¼z{üÓMe^8úûÑñß0¼·›ÛK³Úޮ߼,Žyõókc+[ç± é=iC6Yõ$þx„åeÏK\Š±s=<ï òŸ«¦°®̪,Ö®-[³ª‹®´pí‹uoVæ7¸¬Íêª¨àœ«ÿðh[ô¥3«üÂY±†›Âáó;¸À¿›³¢‰‹àÓîñÄ+äÝ[¸Ÿ>ç»ç…Ç«|zW¬kü&ôPxüÔÚâ¦dÑmñ¯“¿ÆäHŸWé;>9‘‚V’¦ÚSš,'ɪ$AVê¡j9I'°;Äø‚clÍ}™í8ªŽóauøhƒ¯òñ,üŽùÁ*`†þ½+l‹'ÙÀs¼†ç~ ²_s®àÌOæƒ<¾€ÄX*Áö¦€/טƒórZ@ÀìsÍò€h—ôÝ +W]ÞN÷­:KxÓãó-Vnßà -þxW@nh!€ Ê´¶ôÞuá*<æé6 +Õ _jñ’"Ùq„7!?*$Äc¢8«1| +>‰¿žÌCx3ßczo Wc4¸‹OnNÃ÷UÊ–‚£Ñ½UÚ90´C_Ú†3€¿Å< ¸Ù ”¡Îò<”taà,8̧FˆÇGç殨òL˜îó-—ÊQ¿Xj.úåÞ §7×T+ÄTÉà ÚnTm[êGXh1~n¼£8-~%V.;½úï0$èÉ€iqwŠ—ÔÎœø’nÑÇ=÷5£ +nØ#‰{À@ ¼î°¼^­gM»uYJšÒªh K…)ƒ£ÍÀáªf}]>fª°•²sã q_!$:ì^‡œx\f+ö‹Qãû/µþê­°œÂ»ÁŒÛñ‰è·kÿ\»žñ@ÁŽê¦;Ê;ª—vŒ/âÜ`ƒÀÐM÷Çtw4ßK‘Òe#:CISÔéú.CÉÊhepàÃ}ÁÊõsl!s‚ϳIØ$¶'7úÖÈ¢”À€K9ÇÇøbjÌ ’uGSœ¡Âï3‚_CïqÂmÅÍÉŽ'Dkùj¤PrâŒA6A/ªû[¦$9bœ[»­L’Òü¥pž3ãhn=µAý^Ž¢l1J<ŽGüê@xÉSÖ#n¢ëŸmò…@ÐímÓf(Y­—A†{ÁÙÙÀhŠ#òª–”² g@)~uÜ Ìç7§7`щÈÁ§ÖÀ‘ô, PPBez(!Ýp,šö"æZõç†IV`‡!„„)ÜFIg¦âä,#¶YŸÑ1f !Ÿ’Û¥ÂIñµÙ”¯³Ê,ƒª³9¢êٹꭒà{O‡aâeGmÇdÃd@­¯Â¿0ÀHý¡ +—,ñ'( ++ßÌﲎWÁù¸QwÂ72ÄE.8¶Ò¼ÆbØ‘Ø@¡_.÷Û/–û·ñ1{4ƒyiµ«iùOÔÊÔ5ÑaຠμX¤,&“Þ¹]Œ2—£¬¯çPÖ4iû¤oD¼ª~m™ *¸!WI´ƒÛ¡i$Üãz†™t·‰§Ò¬Òf•0š~Oñð)Ó­Q˜B XµÚĬ+”5i—ÍÑÀŒf5²Ç®EÅ–«13‘³ÔaAaE+AIºÌ©owH'"DzŽÀ>R‹:užÅ ¨sPtÝ(¬S’>³¶n4ÆÃQÿ‡³Tj³VÚ¬Õ +Ð… xØ7…¨Š¯tçXìD’ÑÊCÊQÍ@àŠ>ð¹Ü‹ñåÓÜiÿ)d“”SMMô„Fo¬þæáKq}u†Z¯ùó2Þùe 3èh†^©ítFIº#ÞÖŒ™|L‰D‘?ÑVäj +œji¶ïÍ?-)åAh?KÊšlDÔ¸ä%eùAó +)œ{|K¸ Îé$&4b?¼PñÐú™ºÖ² 8nÙd}£|C¤Ë!›’C9R9 &*-aQÅ"h”µL,A³@Hk,Òm†.;¢žÚA÷¾6MïQH ¸æÛR™ˆo!³'<ô(¥ù²‡¢¬+‘§¬ ƒ" ÓÇ +Þ«ÕD 3,â?X4šZï÷ØGikiåº<Á æf2ÜU¨+›±®üB÷ ƒC’•IiÏùO"k_a‘˽h§¤ˆê‘w†ùúœù†a.uM‹b©™KqR;uˆÒõ´êT/(M0æHµcHœp›´~XxQ°eŠt´7Ta12ÏŽ +ï÷ÒWyƒ…™ò.'ti®‡<×ÞÎåìOÒ ¹@jµ@šêUpA k{XTܸTÀF'ªñ8ÃLË’PWKXV%`)ËÖ#sÙÌ%²“Fø$f”š[±ÅazWØ6S…IÄ)²hÄŠ–6c|Øи}UP“dÛÕü‡†ëS´² +µ ¢6ðŒ#»µX7×ÚLAÀÕxz%i„®0æ5_mf¿žºäußa?»Ì¶ÁFIÛ©ú©ìØÀªa,I¦vÝç—'M¼]RJyf •sÈNð"±”ŠÛ×ÓÕhLÚŠ¡ãI ËÒœðêw)ç¾G<’ ŽœÆaœñåVRtúqF„O­¿ã™†˜b…CidÁ?ƒ$? zJÇCEÔ„²°Ú0ckQpo<††KîèűWù KÛ¾SY’¶{Ï`ÖЗ{z|¼¥šRnS5®8‰3Á´I+¹1³@”âPÀ³ [ øÉsø)"ù¦|îN Ôýù¶ +÷'Y”šypi.‹Ÿ (}£4ÉžMÚ`Y{Dªg 'ìC“Ë1;å&gÊkjžZÃK*Š¾‰•†¡ãÒ=,c+a)}@€Ä,£ÆäX>É$Ùš(àDz®….Fb†[@2Yš•]×3 š‘à ñ|—ľò<…–Ö03T¥OŽº-«¶6DyR;?¡Õè2¯©¡9W’üë(S¬qx„ŽÜÍ­ÈÓ¼uVH‰E!r'…ŠÅÑ.9fþdF¯ÃLsXi5¶†ÑÊ(9‡(U)8éyVcg{f!®Âr$•YM+‰,ãBTö³/U’²ñû¸ã4Ìäùž]ó9.ÅÁônGâdàÁe«?´ØÑÕmÊÎQØ’¤æΔ¦ð@,fÇÝ)y'±çâÎÊ©qäÉœñ•Ë,õ0yÅmt¸²Ñ ¨X¿W1ÇË:›ÔQxŠÄ¬F^Æó‹­0e¢Î’±ÐfÕRwß:]!›SÁcuMf‘q€úïUV!°¶ VšrS‹Bþ\zP;íHnbÞc›ã³Ôm¢MM‘ AÓ/ÑB˜ÅZ¸.´pŒ®UÎÿ ghUÓÜÝgY™dôB«ÄÈZªúºÃ[gS–±ÊòÎ=î ÊIP i¶`Ÿ±ÿ]ÕÊ]ÄÝ94ÏׯñŒŸgjóÉZoÄEZaýÔ‹Hß} (’·nøûwÉü_½,´ã_iè + µ$ñêá/VW$^Ú ² IƒJº6&]‚ÐN¹l‘S-J/­ ŠVh@VzÍb„€ªŠÏâÇv«D³s`Ê=‰p´)È™õ¤a²}t%Q Òi cM¥ºSÎ)“g¯“çØ2–ä”+ͱV„K,U®)ŒÖ,ù@5½2Z¡€Iêÿÿ|ÊQâ¯beŒÄg¯ø‡id£$ÖlûÕôƒ—+­²ö$]€v§me¤ ÖÛh—‚]0!o¥EÊ(í‰Å0!Õ8‡¹Q@ÜfÒz}5Z̦ÁpTÒaýAŸ‰Œ÷ð²\WÕºs:>¡;¶t6]]+wŸì§*¢›ò‚5«Oì`‡!NˆÖ8E¿|C½9ð…Þ¦Wº›ú/¶/mvWzH^õúˆƒä¾¤ú"÷É‘R¹dÉ!tÓ!ê&#¡ïôUÞ÷Ÿ›­Ì3©úW¥—…8k3œÿOÃÌ®½rùãÐ8•e⟹‡è3{Ж­…²÷ÏÁA)q´µˆ!HnO-)( ˜‰'ð,L)d +SQ„ÂÊFgo Q-Zúémå-^.=•H¹#:ꌶ¡¬H608±¤~ð-ä½Ø¤{m)=íDÒÖL«¬Á¹3:ë’_¼XŒ7oÇdz;éÅy] ^WÄ)+^ž- …|"Ì +jß›8Ÿ¸Mn +Q±  žúü©2 +ĜƘe%éct[ÇvLKê!^Ñ<¯ðôÀÄ9'"Ûìe%ž…g¾HÆõŠQ‚”b‹z ^Átáå Cè*—´S==oþ‚9šóë7ÍÃÖ¥‘_`Ò˜ˆhÖVÍÚ=®½çYwŒ…Þ¾²4Ÿjjøÿ Þ®ƒ9š·æÄn‹Å8˜ãÿÑt¶üámEp~Øò‘ þqµaÀì„ ?Ë/øuÚ’]Ø6aM„ÂEµf@í¢`÷øÀÏ{ªzñÑüF ÒÂîù¬{ç57¯–¾u³¤ÚãûÁr×Ι£ÇЩ)oC;´Í¥æ "Hæ?èi¤Ñ?$7­ Í5¡™ýæÝUÔKé8S0¬'\XÕSè9Å}èS¡È¸ûð@ä†VŒºÂÌÄæë³Ëºß``ã ;¹øPÉsAg¢á—c×Ñ÷©æ±-…S_dÒ~?ˆƒˆŸ±K½ªˆdÀƒ´Xηªí±ÂÄ&¦¡i cÓr—c…•sæÀ¸ÐrfûГ0¾@®<Æíúfs™eÌÞ¯DTŸ¬ÆgJ¬Ûé{œ¬º›@)øM0$ԉѨ~f_Ù³¨9¹/Èz^~;ÜÔIƒF{þ÷’9òšay5ô-"ï¸Ï5o«AÒZC…## `ŸE XÂ/M«lÍb‚5ÃÐ Qüg19€×úļ ¤·#&Úh\t–17•o|°»EXRº×3Ý9–DÉHÞ4ዉ>´X 1çë<( ¯›„F34ïjEJY:Š€ˆz ŸG÷¯K.õL$è }.TÿQž¸G–qÚ1ëLø_ R•'‹;E4Y6Å•¨ÒâïÆPP€?IdN«tMÛSR6ˆŒ¼‹sÝVÅ͸hž_ë‘âÇZåQm,‡†QÇCL±—4Ðñ ½¾ÌÙ/EX£FÆsb=¸»±å>i§³T¯,÷iUeIþß™2ÊCô Vü -Ø}nÓR@í,i'pCÓ£ÁááYžp…Ãð“ü1$µl@X/ï.Çw—Éì%ÁÙ鯜ž=ÖòHúðqKÏo³)¶0Hs2Õx‹»3H™ák3Ã7Ú\1|³ ±‹GNNˆÂ—äv²ô¨i GT=l‰ß¾¥‡Ñ2×XhëŠá&.ð€Í8#èrF_‡ªó å÷f'<ºAþdÐ…y‡‡¦5CThãŽØMa Ÿ4bËHG÷髆UrÃükðÜê-pÍ+Z‰…piØ% •¥vÉ»‚±æ‚^ãÖ¹Q·ÔÁ™éF´*-m +3µc-YÎ)í´ˆ)¬½êTK‘GZþεK–'ùŠÑòŬ1ùBÜ›D28=oŠKëàùE–Ȇý*LeRøcæº0º.zÏïñÆìñ.„ÈUÍUó@OÚ¼–>¨T?Aø° +­Àq‡™¸K§¹˜÷ºÂž7æüÒ¬ä·iäµNõÇÊZ¦ì0py30#A#×(–ˆq_µ$÷HC¯[êSkYÿiv9æ¡…?Až"ÕÒ¦¿›-ìj³:û-æ³ …—¶üë\kÛ7§þ¬ÍöéÍéyó—5PéuX¶KƒµSé8*’lrß[Óyت¡áÒ?àLðf$VÈ],V,Š$Þ.Öíȹ|Ð0`Õ{/•ÙP7.ø)wðy‹ó¾­x˶Œ³9þ¥"±½‰ïæ¯ä;doœÆg>ȃhœ¸»Ê³ÞÈ=‹rqýƒÍƃXçZö}ÀqÂø·¥ì &$dÖ³“q -a2gÝZ~|„¥xÝ-µ v{zY1g†ž?¡5ÅŸèÏh,7À[O\éeGIúÀ¼`•Ф›?{ ¦H_¥äº—ãp—]M${frcŸ«ž‡Ç®|ƒ;ßà*p¯+þw5ÑÞÿë[ +endstream +endobj +131 0 obj +<< +/Filter /FlateDecode +/Length 6059 +>> +stream +H‰¬W]oÔH}ï_Qm ;®*WÙF È,;+F»ËôÛ°…†$°›ùõ{¿êËmà $Òí.Wݺ÷ÜsÎ=z²¿}w~rz«=:ú§:zqr÷áÓ­züøéñ3µyºÛ´ªmŒuð×Yµ¿Ø=ÿµU7›£þ½UZíÎ7uÛ´Æ©Ý©’_”ozxþõSÝØ5ÚÃ&Æ5Îyxçj³ÕcµûcóÓnóÓ/pÒá |ß…íñÛ‹£¿]µêøÃæß›£ax/N®/Ôöìº~þ´:úåÙÏÇJ·~(cUÒ{ R‡ 5™ö×m3ðJ£×´vìToúfµÅÐ~ÛºJˆ{ÛTµWÛN½¬jÓŒjû®2UÛ›÷ê>µ½®4®{£n*øvVÕ¶ÞžV¶Ñjû©j›^m÷æ ¼{[Õö¼ƒp§ªk:üÃoÓfñ™Æ®`'[Óþx[ýg÷˜¼{Ò3fé9Úí²‚9O¹Ðœ 2W·}ljx¢Ná@¸Ë‡jÄ»\UüÇJ;Œb¢z[yL|u¸ênâOw ¼«4…ý¹²¿Ÿ©=,¡$½ƒ­¬íð涆垲+É…}5íïñï),Ðœá^r˜cØŽrì1H2@mä4Ã;=n_w|LÜËÅçô·ÇòÀ9Âx£q£[‚öy[AÜèI\V¦ÅP_ŸQÆ .èpÃk¼lð¦²-~ÿ„¹stñÜVÔ—õFÝB¦!UdÆüˆé„Î14>Y3®jLÏ•º ù +eP+C.«šòÏu¸Õ:ÜômÑVPºqhX&GʶΛùž}u¾oÓ¶n„ÎЄtn¿˜M]q¡>`:¡åÎÕ›JSÏ®lód1¯!] 3*ýÁoÔ”JÚO8܆ÐHˆu©ŠpPßôéç3nÿ=–¯x{[ÀÝeÀ€Bv0~3ƒ¼´'` aP‹Üå…— í%°, ¿ß$X¢åÃoÇQÈÕKõQ@º¯:n~†|3¿´´ðEØeÍsØÂïZ‹DS"ºn1ƒmÆ€˜i• ÈÜêx* +>UBØ«ÃÕ—X:¸æƒDŠ·û‚ìå³… ©rÃ;Jªù+$ÓsM„µ°q /LpaJ™5m¿(Ý!’H'd 8Ûüøu‚’\˜ïœË˜Î$h¡&rˆÂ¦‰Æç‰,5‘h£v¼IÄÐ*šõL³f-Íúšeœ¿Y ›ÁeÏñ)Ö/0Ffó£a,À„¬ƒí àTj0d¨Bg¤1­§¼v$‹wðÝàåWÙM‚Ô#~hǃ #à=(rˆñ°©+,Óe¬ã„¶zfHCý}Û7Êé6¿ÚVÞ sñÄå—N„¤O¹¶§Üg˜Qƒ0Y½È %!RÄ_ïTjÛZ^gÈFhÚ ùä«’H¨E”%H.H^28s¡mc<âÿ˜o!*¼börï(‹eÈï+Aâ& ñV캉@{xqC õòˆ»ï¸àµ%¯AºV²éºÚ«ŠX +RòžÙo³/­ƒyÁmzBB<à±dC^µL3íwhf¶e!väÛƒîØg¼.—⬊U'^–ÍÝO¡W3 4ÇøÂZõ«8. @ç•=¸¿š‹±38µd#=ÚÈ +RıÏ\9ó¥ŠOˆ/1b#îcä-~¢ê[âô×ë3Ádê +26»ü{öÀ©?@¡àwhîŽ,QC£m;?ˆ‘IÖÄ>Y™'‚››^à•“v˜'zò>¢Éº«ÌÈ)e¡7ÓoDSX¸6CÝ °Æ\×ȼÀ QEYRø‰˜µe‰Ȫn2…M}ÜÌT16¥@ä KM:0ðÔ˜Óž8=Úó´btÕ2=åô“k¯¨ÚŠ†_¦mXÑØ ä×oȲù{,¥P%2I"ÂPÎe¸˜*^;‘8 xh -Âùgx‘q½0cÉ3C·¸}ô„©ì%©f#M232yÌðÎá—ÚP½2FWCHUÔá)©™¦a©ן:[n/½ +íl´hâ4ŒL?©´Ÿ©V>¶A¤½88~¯ÄGÊ/Z±ièÞ3ïO!þ›ŠÁp‹µÏÄkæá8¨Ï(‘ ßïfˆ(“Ÿ õ74ŸNžÆy,%Y¸4Äu ZXhàÚ²i×jh§n~‚Ü8${i¸ ¤¢1ïò©•<$eŸ$HÝÈKÉðQ[&êÚ8¼àÊM–PMÆ1\È“¬pINå-†úWíü0‹yE3ÛärIŒ R’D³œ9‹RDdçÇÔèà 5QÑÒLÜxÙ {!¶ö†j1ñO+re ?ïH$áßröÉÌ}„ d4X #=Qk`4tÉBGÊU˜Ì{_‰-²ni;tn;NTn-iùêäùí½3`œ™‚«=˜êĆX Ÿ—ö ¡À rL®ê`(½’²6êSI ìÄà}–1O¿>€¦œpÆrî\ÒK¸²é“÷jnj +Š–¬}­þ43kÄíd^•ðWbÌ”³Z1E;µ~49¾À:ìþX³¯˜°…éÏõmòî!ÓÌóæ{î‹ÊO˜+“XZ1ß³Ká‰]è ÒdAµCäJ%þ¨ùGP'Ït•f‡g¬®fÎ1gžÑ·O0 +÷^¾õ·0Ub¾u)âFD܈Žòs³)ßÿ;&ÔùuY‹înÝΧ1`™Ø¢S–> æåcE(Ç&§6-ùá஦E].\8YÁBe= +l!î…ýy7¹¼W#~å\G²è‚,úYôQuÅŽeÑÿ@YüQÊ…Ž…t‹2s'TÉÝÙ²ÇÌmß*ùyC¯=\ 1W@ ºÂ:ø¿ë¬Ú_lŽžÿÚª‹›ÍÑ3ó; NíÎ7#pT#t¬¼rf×·ø¨m[ûxÁúìÜ°gÄt¹çЭܳ/ï‚¢Þã%4]b·“;¬ÌdH‚1ªéµwÅÙ¿mŸ`DùHÝ{%Ç_ 2¡´aÞÔ. “߇·l²ŒFÃawNX]'¿g ž?5„ÉÜÅCµCÖÊ8kf×~a×î`W0=†ükt*ro¦B ð€XƒRhîMá$…&®ì€a…ÈP±ÚCŒ…‡h;¿9€–‰ûö‚Ç9#Í:;`(£üšbøèEεh‚PpØM|êk,™ Wœ[œH{ð´H>ê‚$ŽVPÁÃøG¤Dúg]öëqªdɸÍòEÎø ri†’Ä¡#zfæ¼Õ©«éÍÕB=¶Ër-ÜÃ[”y«ÖahÌg¨9è´@™:>]4UãLÆ׳e7ƹlV_ÕüEÁèƶ¾]0F{`Lö\+c·^0ì°Ð½ùÙß# À5²ñU›Òç评D’êðý7O6!|¦Þ¦•¦ÅŸ-ñô'îùÂÍU†nðPý È¥!'þñø³|À ³Ç ᇄZ>t]6,â¨È&z¹QMrÚßÚƒD +AÜ6åе‘;©øÞê%ÄôRD ¢eklHì²á¤&‡p6á_üÝFʽš… +ÏYÞÉŸ†áf$x2ËRù|pÖŽRi;¬Ç— 1Á¢«.Ãá#¥ +ÕÚÈtDúDÃõ\xÚ1OÓÄqÂ¥âL.—¬wh9s~aÓýqÐåöFãå`å±èÑËÕ8ð…ìkk–`àMæ4“AÊÆ]—]Aÿ¦¹™2uZ œ#qdè“£†›H0Q =[e.¯8]UÖá÷&§†±}p=á÷Ž˜eÜéA~V0 q¤u|¹Cz^õÒéÔoŸñ=‹2–ÿ})µ¯O_zF·ä»nÈ<ã¬A+èo`Šis¯ ¬3dz‚ÿG˜q”ûäS‰t9É>+Ç’DÎ>{kØÆ‚®¾ûVéÒ¹tÍTÅ|&w’0§Bk,§©ö3ô—H¾ö2Œq y-P†‰Ú€ÿZ@ŠíJ‹øÚˤ7Ž#‰ÂwýŠ:²³U•Y«a˜ž³ÅñÅ Óâb‹”ˆ&$Âóë'cˈ¨¥™¢Æ‰j5«2#^¼øž`ÈÀîkÒFÇÜ=¬·ÎîÎÙÚ8xñN$IºôTà¨3‰~¿³(n_¥[ÑŠ®Û¿$\Z{ë\aõÝ‚Ìv£²‹ +*ñP\a|é»ßÜc¥2ñ´mv™$Íæd3躱ã\äcrN:ØG>ðJ!¼Dó÷—vMá´¸oq|FªËË;ìTù•È›}»~Ëý7K‚GÚ2ñ£iÀß}2™Õ2ÛM¨JŸ´ÑUט7F°²î·Mã·I»Ûý#•H]k-\Ô ¯HÖrænu•aÏUF êÞ2,âËÈ ¿‡}´ôÕM§ÉƒÊ`ØI Z„%“‰FvGÆÜÖlºÂšºYí Ò3}áÄ£Ó%Qá\¤Ý“¾ø„ƒýèÞIJ¤õ™öh5έ¡Uü´Î“+ƒOÇY”öDÝ¡ú  >@­i–9aâÓn«üx~ÐÚo"61×ð%/Ð;`³(S‡}:‡ÃÍ’[úE£½<ŒÙØ×~~Ï {¨.H‘Ùè倌’ÉÇ)Ÿ±H²k¥cup¬KµÇ§b½í9t)l}°­÷mïæéÐ spmO•¼ø³äÁqÁ&íÅÆq4û¼µãŒ?ã«Q‘Z]^¥­>‘ßâ¯]òòùÓ(A7KÕ´žƒ˜1v±¬6@[¶G Ù™Þ°µØ—fcp4 â Î2›Ó²lï”-åWé: PÒnSQì»4.ìc„3ÙÆuõiiΖp¡öº}í©:†hÈU Þ"ÉñªÊ»cc¢>¢Ó_ûž¶€fk~;?¿1Ïïòm¨®·!„z¢ÔI„4.‰ž¼`¤“+ΖºÂ`|î4HtWe–v;)èŽÒäJ=>”¶«wíJ$ûôg—BÇñæÕëß4ÕÍã«×ÿ +¿¦Vׯflæ\%÷ûi¨bŠ«‚—ß5M¿/s’Á¼Wž™JÜĹ[>sê +Ÿ9ú»€èª÷p‰/qqÁwHƵë[æÕ¿œýÜhü‚©ÏFÏÙã©ŽýVl”®9£!–àGXfÚ`rTáE +"zS”9Æ2Á¾ª^âÛêßl|f_“á€yö›¯dÇòþtWû˜ÄˆYô›êÍ@6é+ÿJoø9]½Eg¾©ós]ˆy8¨š[ì¼UM´íÒ)˜|˜Jc»#Ø9œÞìѲ`¾CCyLà©°ÖŠ¯(Oû%'¶*|}‚*š5À‡Âe“…’Ñ`½ÿòŠ×©–úVšt +«ñþb¤¬¢ªŒ{u¼Ñ‰¬—‡Ôͨ·}¹%·´3XìÓ½n”ªd^ÐO·ë"éôŠÔ+Uæsè´áŠx_å’ï?Ç¿7›<[QÃâb¼¯Q WF[ !%©M¤IQTžCÞM¢n»œ©´¶Â6M[â}é¿Èø,ËS°6×è±ø åïÕgt£Á“ÜÉ¡D>ÜH‰"]d^.Ù?ÜÉ)á¶.VÊïÏ9ØÀ¾W(­¶ña-öŽ²’¡*W/Hn­¥‰K¢d•¢íÂU /Ø-¼Æ”íØ9è ï·_Àû:çnzÆÅôøAËØ$' ˜>ã«ú5 ÿ§ÅÔð÷ÞÁôìhéZ“ïð÷»QRÅó æ`@{A¨j6üE,dbxÂ\ñ LnôÅ:Ÿ×(þÈðþvgZ–JAê%w(®DøJ† )¬¾€aS÷övñÌR†m»r†æ½®›wÿ Öz1j 2š'³"Îü§ÅHúì¼ÔšóèfñVô”m ³ª5·|:üàfÑ5ÏbG~Éú\ÝbõÄ#|w‡NeÎ%2®Î·X€yÜÄ0çS·ÄIú–]óLN™«xß.¦Þ¯¢¸ÇÂaˆ†…·˜†EÅmï?¯u&‡:äöìJ°ÿ¹ä2WÉ4üó?úÉhPü”Ýh9rwPÃËôÇCôÌj0Ô`žÿº] 6#ãÅ9mÑ{–êG¹ü‰ý´`ªÒ |¶aŽÎk·T4ƒÍ<› ¯‘$èAk‚$­Óàvʇü/ï”C€Ò]ÂoQiÝs¯õ»…ÎFÌô…moŠï)ûœ#h^W¹16¥¡tGÓ"qÙ:t¿ dê 6*“·ªÉ-amëjÇX»[)º½ªÎÞ=nPÒþÍ‹e2z™´{˜›6¸Á\3Û–Øï*çèÑ;:Þ ï”O^ÝáĽNL‹¿ç¾h$Wq(Im)œ†±ò÷ ³4ÏåÒ«p+Gù6‹lÞm’»önu@W¸Ë dÀ‹2vfTÍk|×O–A³TS Ï&?Pž]ç=å]{ŒcÊ|°Âµúš3ÁÎ5»‚V#§«*}iš2£) §–^pþZLMÙS˜êŸYŠ©¡-ÆÔÐt{Í4ïþåì?u@=Û}ŽmmIj¢aM›mû­x&Þè£tzÚRßÜ!ÎEoàu&b¦4bØuù˜Œj5f„Í'̽GyôæJhDw¬¢à»ÒÛ30úßD8¹eBa’»y:4Ã\óÏÎë2ÕE¿>º=eµ)öc6‰\Šž‰Ù„Ý;ƒ=|K*¡²‡Y¢¿ô_3Ôn¦QmÓ‹ðc£¬)~}Ÿ*>¢ðžó¶&Oê­'Ý-ú˜“ÉecNQñÅ,¥žÜNatwo°ÙÃGóà$´Éqc€g…_šH"¼>UºrR2‡Èr§éÑfðZ‘§› )açµÒï¡F;N†HW+¥úz•ÞüÅO©2éøù >Ï> 6Âç–\W¯Ê†Ç¨ûü¬®×°iÃD¹…qE àÙU/ÏÖ&}aÀÕ7o™s úM¥ŸsxbqfiÌ覵ëÀ";x³ÎAÚÚ£Ñs± +a6ìª`è p®6Íœ-n„PŽçË.âÿ}yùc`)ÞàEIvtÕ”¿³ä˜Ý©5P:x7²á]V³,üÆ»4ÉùŸ÷ :uèÐ +ùHcmíEWÍu‹§Š¸Î*c(XRVÅKj‘q¦~Or}cXvc¹ó?®¹gåù}ƒA¶cŽJÜó8õœw”Tå›ô¹pÔjÝ^å¤*é­‰câKV·yIžô8ÙÙp:Ñg¤ÅÝÑf駀+_¹ÒÃ¥ÿC]щþ2;• W7Ë“oA;¬µ0ú‚4ya »^{ÃÅë´Ú?ÒE_;h6Y4vñP]ІºÕI;'ŠÀý*?Z d᣷p/• P]ªaÏ5< sµ¨£+5ø¯Ä]ã-¾ë¦²aèM甈>ãy‰ýøïˆlòÉ݃+‘L}4›Ýt<»Ûuê‰,¸AÝÔîöÌK4RÅjqiñÐ6aO-©à†uZyS… ›l,°Õ€ÕÝ Sò:õª¡•+j*Ë<ë— P‚ÍZÏ$‘U&[úºrSÀÖY Þ-Ó›ñQÙ›ÙJ;éÃWé¼óx]ÕXËÏjwrƒ6XOX¤\ çPâ¸LÀJO<š)p¶8_Ån£4‹MÒÄŽ@Ò'×R'Òy¦4šÚìÌ97 ´Ñog¶D§0¾6”vÕ’ &Pôƒ¿oF»Ll;8 Î{¿œ÷ÁÍ{Ìóܼ¯iÚp®lLYWçÉË€sÔ ¨n9q¨â鲜³Ð½\r­f±›,bF­¼bGÆ"> +stream +H‰´WiÛºý>¿‚M ÖˆIIm Ë{AŠQÿ¬…'GuU+øp&–þÓáªÞme…RMÕt¶ÚVÖ:Xp{´Ðµ<ù×Ñ/'G¿ü'ý‚ j|¶Ço½­Å»û£¿ÿÃû¸º»‹ó»åû7òø··ÞáÆMëñ[CŠ»õF/”®+U[%ZÝU}ß;Œâe]×Í«,Ž='™ì¤¸i¸Ù`ÓÎÌÜÔ–©þW̱⟤w=^ÒK«”P«j×GZüMBH=œ#—®Rbq&—ðm-—ÊŠÅ7øc*'×R»ª‹­\j ZÜJ¥ª–^³ø÷Nj…Ûl¥Ã?²Æ÷^Ëe‡ý~Ù[ºÒbñ—Á÷ üžßûçkÙp,W…36~õ +6ë*ƒ‡Bt}ÚæàÛôl¦ñ +°~|Ù·rið€•l\ú(ð¦5~ÜàaðèÜß`K‡Á‡+¾ýnq?e1†x¼F¯ÌÓ¿œ%ÕáK[q¯A8~û/RµtÇ[Éwº‡«Ãï§ L;¥í†ÿà7lÅï>}«¬*5— 6¡]æ¨Ü¿%׈ ¸”»ópšpÊU”T­ L†îž‹÷]|–|ÂMÂœÈâQ5ƒ´™j„<Xý]6”‡s±•=‡7ÜÙtÖ‡¥5g>°´×’†‚;$ˆd-bCÎ,Þ‰7­fc¢Í™È[1³ gךè’?Xj€4ÁE'†s®©¬é5ãÅB®èxˆ‡no!?b!Þ{‚8÷%½Ã `_œû†*‹¥ÿu~…ÔS][ðüzë  Âìp›”່›ÝâzLý)~ÀÊßÈšþÊeƒ‰ým1¿n=–¯ïï8Üû\Øùx)¼¶\Ýòê¾47á]‘ð“B™ªÆ§:õeL´i«¾Q='úµÔD(g>tÆ¡M؉=(Ç ¯P\¢KÏø7R×Ø…§ˆWHJàR˜Ð¯ÌQò„hÜZ¤.ˆ°£òÆm×´]`Ô%µsdñólØømÌ>Ø  5 ”ãõXÍ’ ü€ÛãŠ@úXu=!ž€DØ âvÈþ¤.IÍ”â{úü­© ÔGˆªôb6Hú $ØŠ@Ý;`ÒÖFXDʼ DvuWØ[L%,x%• vÊÈ'!!%Û‰xYøä’pZÎU—“5¿òƒ²á¸uIëŽV³Ö®c…‚ºúür]½ðpüŠûåû bÚnHèëÇb¥s»üšéþ~¡W« ÿ>ŠBæ§ì’é&ÇûC6–7èÙ¨ mV‡ÇW~Û÷é÷yð1õn¡·Ø>ʺ9YÆÔ¨lã)4"ëG4RŸ7&èVK_„„ƒ™ û7ç¶Æk,¦ëL2ËWd’ ã„ÈÕ–äj#¹â®h–çOÏš³ÒP3el­¨»'N2¦Ù7É”{ÎdŒ™9ÈЈ8ä8oI³£?->@r[¨ ›ªŽ­‘6Ø‹ß<$"4D42ñàé×?u`î²ÌнÜßgÌmg²cBòM»dõHØ ,a¢ãÝ+T#r@'1òu=‚§ð®Íì^È–)=\!úñ¢'ÆÛ¨h|2±TÉsé_ÜÄÓ£ûïÐ@`Ç©Ìi&@1‡2göhfÝïÀS§+ðDLìö01ñpBHƒNù‚`wïóK~ö 3Æ|àX–ÐN=1/L"ù•Ç³Æf—ÈE¹ ³ìÏ#…æ‚m. ¦b8Úä)2Uè1ù˜ ´=Ï£ÊU7Šf´1†h1C›àІ‰ôGMƒ™hr9sU +8xLz?€‰ú×[@ꙄŽ¨…c¥ª«þÿ©UAã™:nãML’f;.Ǿ;œ”Cêÿâ.‡ÖSùÃ`j¿ˆCM>ín_a!«MàgÜ¢Yyêß0-VÄ’½üãÜ°ºg;|ùtÇÐïu Åžsƒ­g:ØÜèt ÒÉŸ¿JÕgOBbŠ|fÍû7è/Z¸±úŽF¼)½äN]Úˆ›dh#·+‚µdo| ¯º|>ó ‰óö…˜pÓ„©üš5¯¡îþ¬µ–x|xã&·â02™âÚì}§úcqdÑÈ?È>›òXFpªÁVì-ƒÂÎmZ« +&¯Þm“ͼò#Æ£Ôäù.1–Øu©{Fl”õÃPƒ;WH -îÜPb+hz$êYŒš® Þáq,ïÃ{Àè1í­[ÐǶfH9Ï_yQÞ L_†tƒø&[1ꇯ²a?‘'÷6Åx/¢‰fΟúj1ž‡¶e—‚œ…Hò!,kx—=I»úwnfCJ¬fVóLø“ࣸ°¢6L tO¨¡5ä™,|ÛÌ%~Û<‘øk +CI€éÛ`dž Öì“€rÏÙ`gJÀ8ÍÙ?5*ˬAþÞ÷Ñ÷4ú,¦ ®%#œÙª´¹U9 s»ÊòÀ_¿H–…䇃̜{Jž ÷\G`º&ؘ§À¡Ý ‡bÏÙpèfÂQ·Óý—ýiñÆ;ßRð "’ù{Âi4‘‚·&A èyÖ j¢iÆŠÜž[eš&6KÞ@CÝØ3‰ñ”é*¾Žú—qX y»ÈL*eì?rÙRçd‡O‡‡^@©¼Ì…© }î÷s3QÞï¶ãö4ØYåK9 q®.g?³S®O6“Ï Æ•Û=8={ljwŽ~™'° "¯Ò'`ürôœLep…•¾ìðå›.Û†ÀÂ_ñ¢È”YêÀDϰЃdŽlã Û qéçÚ{œ¯Z[6˲®ÂŽsôÖÔÙWhYºÂ¦3"‰^Ìõ Nž ÌÝM$DL>â|¤óHK[¡`½Bº2œÑ‡Y{ë©-”É`˜Á'£Ž‘ÙÓ„ν`°°±ÐŽ-ÿM• +®ÚÛf¹n¡ÝàùCšŽV¨°-)-%#`~æ-Ègp¿‡$;’[ÎÄEî#§¸+ab6w5ƒi§Û7S'C:vÍqÌK°r8aLqI? Ÿ¥²â›)]ËL•O~`˜³Í°µý„·°TK‚å (T× çÅ5Ú:?c.¹PxN0qÄ›D§´Ò-fÏ1Ìb'e ±,Ì<~anXè0úLMƒ»H]T4*²½Bw©]…áþ`'ñ8›‹Ì@ÜÔ€ @.¹û’쯥ã> +óí°()çl<{-ðy! Íc³•`@×4?"ͱ²ƒn—ÎK- BB='W‚±]|–Ò;«Äïƒæ—T ÎÕmóÒîG™o8‹žMç"¦Y8|ÐÑD¯dSc6¿cLvñë «7HǤç-›Ý‰ñ vëÝø³3W¶ÃáÜmø‡+ßÅÙùì8Ä)yeÖÓµd³š_3 ”yaJ/Çæ¹-Ísz¤èíL’£tyGdРŽ)õÞNèý¨!¯†­²ö]·òÆ,ÑâLܸ9ö;af¶„µ<ªC]ÓwÉ€:¸8íئþßYŽ'Ì2Ág‚@Åû.åÒP§Í6n?%mÞª^ŽÏ·¹Ø2'æí2´ëªLZY ¦p +zðæ8#Ç™krW8Óø`3`¦!­I)5e­Bº0„S–a.B»Ò µv`FŒÞ{$øÑFä„á¦#ëfËéΆWnÅJ„é+\Zä·žºîžúëLaíë oâ=»Wc¸0ŽŠ¼>©Í¢—†µNDúyÖ°ÔâgÆ]W +<†5ý€_vY ÆõÉ#=J.…å™"zžÜ1Cœ—y…™(Ó † —7NÐÑBz씽>E ¬qÇCó D¡¨o/¥+ŒK1{Úˆ^T×ýÊ02$Ü“r¬ÙÜ3MG9Â+x¥¶Šm–Vì3™¦«¢u6sQÒÖ%w˜±6Ùä¬E„>anÌ'Ô’:ÆðÚ”„qÆïAƒ]ò´“U– ˆÇßu„ÍÀ¯³Î„Jwî&ZJ´¶XÎørô pí +cÐ¥h_¬ÿ’^%½QQøî_ÑG·ÄŒ»¶îjåY¹E² !ãñ‚&š1äקÞRU¯zñ”áÂŒéžZÞûÞ·h€ŒF‚y¤ÔfàšÊHÀÂu{WSX¹4QQb»ÙÁDˆ` WƒC­[Ÿ„ «¤[Î>}ÉJRdwåVjEzY}.]œ+Pqá_kM³¿;9;¿èš»ÃÉÙ¯ú]8jsy{2â©ÇFÁxvN5FÑSýÔuù¹Ê² Fì›Ö ý4ÞùÉšÞV®iË»@u›p …—¸¼ä;,”>oøæôÖN,á!B>9=ˆ É´¬¢”¸CËΦc›‘9R3­ ûÍ4Z<„ý |ûB€É~ÞJÅžæÜœ;z>E"T˜R˜MÚÛ—#£ n;ÁøŠü&}Ÿhò7a˜¨'­‡¹ +²(‘¹R‚úÒÅÀ®/kÁí~Ü!Œø烻ÜÅšÕà*ÁN>ø‚É;¿9}ÅÊ"DÛcºÁ¦c㤢ĞEy*½®§Äª<ÍL³ؒȗ¨>À«0‘å +YŽP  SöѬW­A›ƒÂe&Tê¤ebå!s‘r\Î,”qŒ ycª58 oµÖ­ç‘£Ó zJzˆGœDí øã£GŸmë1–H¶«(;ž-©ôöô;ü…D¼Ôñ¸·û¸%-¬yì¢á9  ¿`.uÒ‹ðE9µÅ 7çÀƒáë/°VxåÏpv '{9pm7Æe$ím´Ï`$ß=ÅHåšµŒäU5#uF¯ /ïüæô²äd~¤xCJb… c¿¢;ÍÃÒÃße +,j†Oä, +’÷zB;zDUžáDI L‘,¬Ãâe0Åøl¬Òw™T¢9Ý1œó†ÑÌ”X82&„Õ2Ÿ¡GÈaˆŒKx¬¹†#‘d¶È¹¦.{ŒÌŠ3B¯¯+èiè²/fLX`ëÿï˜,׎HdCÔ® +ÚW1!ÁÃÿxøË›/¸«&[¡2,Eì´¦mmLUèúr-ì°uÚR-^O}f¤°s£Zê{<´P9¡q­±Àë‚ŸàGªÐv•¨4|Ó( ¾Ì©á•žN¹]IôþEºÙçñÅ~ò ŠÙE˜ákF +4Ì)°Å6l,òQ)ÉÖæùÈq9• ·ëÀwá$V¹^vûtÓÖ±²+¤&8Jœo—¤õ?°\ƒys.M:Ç£ÜÐ}Š—È]K¿•ûÚE Â6t @}Ðû æÄx‰Ìk“Ä„Aä_D•]?MÓ ÓY”;Š}99|¹Æòå>˜YWÜñyè«[_¶Œˆj° ֚ȼ …îÝèî­"Ú–Iv}GHÖú~o7üÏm3ì]°¤ Q Iäš³c²ºIø ž·Zà +ÿ½íÆa­DÝŽÚ*ªÑŒÀ§…X)Yò',hl\åøm ¡‘E¶cï¼0.&[p¬Ò‹ùLp™hž(àeQDÜçs útÒìÅ„Rš…k«,}u`–έTY¡Ž©ÊɾP ÑÖ +xãç7-6#òWËþ)Æ»a6Kñá¨AEÉtûxŸ˜Còd¿J!ý"iEUÅšïù6büæLªºª]­ÈŠ×òʨ&í´j­ŸCŸýÐ#–¢—é3|J; +$»ðà-uhOä°ãzhRQöŒò+ˆœƒL¶GG2ulTsK2,Jf²6Ê óÅ˾Ûrºd¤Þ¯Õ¶×Ù"óO“tƒµ ëË5gSÇ÷$TÎÔH LÓªx¿yö( ‚?Ú%Û\°@„Á)âõ²šµµ35ˆÏu«¼-{²jÛ”õYH܃…Œ±SvÂ)³"PJ œyN'<3Cù–ð¸¡ç‘ÑŸðkhXÇŒLu="§fÔ'Mg¥£SßE·öÖ÷s΄ùLáaÝ}^ªL¹…ÌM²Fƒ¬ }S…›ñ¯eaø{ <D¨¾½ ž]s‘ò•{þ)]=‘S-jÝ„N•[ƒWð€Ù„̆eôÊ7›Ìga¤¿/ÛÍâuÛcŸWZ]¢ŒÚ–2k„iø‚?ã7îyÝ«Ötp l?†Û%Ë¿Ñ‘Âc\à—?·Ã)n@›Û(K­Ë‡%ñ(}“@£€ùLÒ"d5õFzVE¿Ås¢Ü¯H¤çßW¬/éKû5|…kgû5¢ðž‹9CÞ¼)”‡$ÚéИÛ&\ °Sñdžo³!Z2x(U1ÞË/’zI5Üï+¢ÉA›]Š†Ï]#¹Ô­B½¼qŠ'Ћï'6H’׸(ÚÓ‚pQY—§«2Kun¡*µ &¬eÖ@Õ¹ìÓ.sÄ©¶röK8öXSÎBØL‡R,Ý]´îG3d†O [ !GîÝð¬Óº  öC­•dÛàP{šf-Š¼Ï¦?w…/û)5¡©Ü0+ÖkÐa’6ŠÉRU&tætØÁÂ;|!¶4Ûuín6¿½Ê0ò…e do\ø×ZÓìïNÎÎ/ºæîprv©Þé&ðÒ- dsyÝ¿±AÄõM(‚ ©1œuиה¥WŽTPkŠŽ·aAÔ5"špž>ÃÕ±Va8CÞ‡к*Y†õEs ?°¼´AD94Ò€ô‹æðÊmð :µ·ÂÈ+â}멤ý6ùÏK›À +×Ð <…Âv|h±;_a-x+ð'ê´\æH))˜|ºídÍ—'} WwpœÆî`—V4„cÆ}kñ¤Ÿ?UI#øWp4‹ˆÃ¿wðËL¯~ÿ¡õÔ™ûõ_ô=ù—¨Zºh㇖È%4˜Þ +}¦ÆR%68[:Ôb^‘ÿý5Ξ +endstream +endobj +133 0 obj +<< +/Filter /FlateDecode +/Length 5652 +>> +stream +xÚµ\ÛrÜ8’}÷Wà‘ˆp•€7Ltt„ݶ»µÓíî±Þص÷¡\U’5­’ܺأýúÍ< U,Áo(B%A\'3Of‚:zrusv²ZßüðÃÑïG¿®î.oo~üQ=}öÓ££Ÿ_—êôZ=}ó¨TKëjµ¬*§®NÕ¢\–Ö©7k%Ÿ_Ž^”ʨ7'ªY¶µ*é§]ÖªòÕÒÔeÙÕÊÖ˺nLIv +kô›>zþæÑóß~¢¾©úõ…ýJ¿NÕ_Ž^ìJõìòÑ?ýA3ûuuqªŠíÅâç§úè·ŸŽŸ)cËr˜§éçÉ?FýIëšØçÑ #³3FîÓeÙ.[ÓTÞ«ÖvKï}Ý:žÛ»â‰^TK[\«/ÚÕ˶¸Ôž~ï´1˦Øêw¡Nøº¦›ôÑWzajiÓRKÏ_iÛÐǹ¶fYwj¥$œâš{oøào|¹Ö _œik[¬ø9WÜ芺§á¸¯ ÍeñΤ׺ìèò#wK7Ìtá±é, UQïa×xœ;ºÐ¦Zzz┿ –´sü˜-n55ðÅ'ÝÐïëa¼­¢Ûõ²+Nè›v˜¯ˆçZ£ÍÓ–˜65­ŠS¾¤I.¸÷•þŸ7ÿA0¿Ë&ì2v—6tØÃÊw˲ñÖT“=, ¼æ{¶CÏ hãÇÝwõ²tÞùNµ$›ÖûÆZAˆ¬ªá3„óâY܉Ô5]ôbA²Ð/èFM‚Ó '[h-]ßR'Œˆ+têC«íýÝ„ÍnŠØA׶û +m׺£o"L¹—Š>I"wNð£N©¹_zK@»Ôõh gŠÇòݤœ´áÅÕ4È Ðq†©W î…!CW×ôdWl´+—6¬ªîûH¨‹S5YÆÜh¦-¶;–\Eëqq"²Øsü™7"s;hK3y6Ê»¡¿¹ù' åÅ„&¯î‰¢ƒ¦„'³°é&2³*iv„ Ò ‚®5«ýGmœhç 0²%Ah$1⣺Y‘ŒoERé²–B›l Šƒ¥ÒÀÌ2f$.RW’&ËdáNhzè!µME Ë‚Š&‘.oø•Øh,ÎÑoˆ4E”{¸Ö ƒ^YDaljVy^7kß×[ü{úËÔô×}2Š¥ÏQ{À¯×½%’1P`ÜG +vÀ±‹´4³ ͵ªN­´wŠ‚€¨ +×´ À »²••&+¬‚ÓŽv±J=õÈ ¯‰{UW½q†i–G}›DA,ºÛ«‘¬íT!ÌX!èáLÕŒ ”­f¡Ñ’ÉU4Þºv4¡~ê"-•^Oàro)-Ùâ½Ö5ß{œlOòUÑމˆxky±/¼S¹ cC¸ÃîöOLŽæAvØt^›ž5ëz×b°Åìþ>3ëkzîSÃÁ.@_ÂÌ{|&M汚÷Z2é¡„z‚6Ü}…zˆTØ77¬ﵺ†Ò`úÍ^W’‡”vŒ”ªRHL~XêvĘiúž•óOÈ`›ø°à‚Äì¯Ä(¬µ0_á.2mkûÆ*â^–’Ë©Gë 7,=ˆÍº +Ždôü¼ã}a?!¸IxzPG;Úkpæ”FÉ—Ü‚O†œdÔì7¹‚Ö +ŽWøõ°V„¢A¨Ñ¯Ž(Ùˆ`‘윜ƒËì5!‚if¬É°²ª à,àt³^­.iGñá/…Êòi>õi¶ž5\•›róà™‚YN`¯õq÷­Ûg}ªëS ¾fÞú8XŸ:1XAUápƒ*~hDT%¤[ ƒ³óˆN¹Ë/ÑVõj;ô4£o)G +ÇàÒ»I”1§y=í4ôædüL' ÎI¥³Jcä,Ä™2E†›†õ#Ê=ÑÙhxÄ qF$‹ÝÃ&ö™,>¬VæLüœÉÁ㡤ÒÅÝî9>èûúò„!ŽR"ŽA-m¯«œýˆ┉ER: †åO˜€ë‘õV2ñ»XÓ8¡¦ìÔ&¡Þ5@E¶Nú¬ûä5쒆쌫èÄpu°¦-|¦‡ç*±Ø, d¥Æ8È#ÔƦ3ó¬‰Ö›ê™8·Þ«Tq{-ó¬/bîÛ /5EL/{—-†i +;y6qB­°‘¥ôLuðUå¼q¤]š}q<v#^-FI¸H}Xp^ #9~˜Dl÷±Ô2ø³ÙØv.X6וis’Hiæy¼”E»ùaØôlC~¥LÌÂ°Ú ‰R¹¦IN2h»„ËâÔƒcšå™l@&MXÆÒxz¡ ÿ¥_‚WdÜiÏyÍ¥z¢â6…@ ‚…à¸Ä¨©£Ü!ÃÃòΟg:"¦]n0eª‘Qèæ@PS”²ã+lI‚“{ì^œ”º—dát5&ä Q­drÔÌe“ñx*¿©¹Š,A 67—æ«“V½Í3áÁ†¨*;ÏÄ.¨‰iÁ*á4–Íà—èßKã.d´ó6¿¾ŸêãêÇ|ʯ¦ˆ:%¦'¶)ÐnSa°•ð@¶;-1 ”9¥4Ì›`3r†RQ9zaCჀÑÉ­êH¨®ò2žÿ+ð§ðÐ+6±uñ_™;“„Ö£}¨ªvY–?Ùˆ¼Ét3ý&ûë(zµ]× >ë×çâžK2$ìö1|þÔÔoA!’9Ž©â&2i‹R“3|¯GR 5Äqñ‘¨‰ªIk•-íÒ7F1ú)Ô»Ú*šôp—³Î&wO-»–zóeE¿Ò«Žô=íÑUD¤ú.ûÛ±Ëáö ÏÕÊ\åçï*¨µÌ¦$®×5QëêŒ;¾Us½ó\½~Ô7•ž]l·¨h5Æóžs9µZÇ©—ã~ñmÙPó¤gBìIÛEÒ8í;ö^ŠÔ\]–e“.ÒU†eù°4ö4üÿG¢9›í‚°ßkŽŸT¸ÁÑF“A¡Ý¢&p­wCU¹DUUoäRÙð“Ž–ß“•-O¨.»e¤@é~Ö쎟¿¡y¦ÙÓ=íy_ºZƒ>Ñ;¸ÿÔ•#ŸôDà ¼ó~Î-È kæ /5BÃ7üÑr?†¹Î[ê®ã!Ò›Çpâ¿Ã;$šüzÆZecGѵékóÉJ­')Óò £¥¾xæa{9_ÿDˆÇ¯l;<[WkãºlB_‡lÀLž3_¨ŠŸ˜ D _/¤R~Œ¸Ö?)¹ÁkZðªßð;&Pdüß"z6ýãf±›ßAÃZ¾k¸êú:Ë”ÛQÄ9:Á>÷è…w+¢òäv‰£7¶!$UmÌIêR÷£Ê0ò6‰Dc¯$þºrÖ·÷:íª¼NÝ¡“ nš0è¯Á"ªÇ'FsxGb ½`wb%sÍÁïè•F1HNU¨á¢+NáEÀö@7;&å1G G€è`ùL3¤./Ð͉Fò6$Aw<8Štk…A/6¸ø Ôñv«CQ£ ñmÒ]ª=,+‘‹mý²¬éw=–K^ÚÁÎÌŒß+ý†°Þ5­ îbu†Â,Œh?$Ê4rÕÉWÖ2?4©B·:½EÜ"„ÛHûæû—ò··ŸDQ?1m?gõ2\ÿ“‹. ÅqÆ¿4§+ˆªYÞÙÍY+™•îÎÁižü›|ù$“¹mËO7€Hœ§aø´oÀé åº8]鸛ÚÂpù(ÑM¼‰(i%_^ʶ\ÈuÖJ +¿d[‰ùa—y"ë<륀  MÁ+~ó-Ø´×Læþ²pÏ®Ñа\•X.É·šV*?%B6#õOöS+$ª>¬$Ê=×p7¸"sƒ¤ÞZÃÏmÃÖ°<´CгÕì˜äxJÿÕ›ÕÇW—èjx¢Í=–âÌÅј—Õ<Š¹ÄÚ5ÞT1YΚ͇‰8h½8eÃàƒ^KKfûIμÕ„<<:ûðØóñ¯‚£sá8é4Õa46n4ùdzp˜TëØE}Ö6šE½6_Ÿ4[Õk6£|Ã0Í\k¤?jìŸöpzLÁ.Ù†»8”犈ãpÇ´’¬aØKŠú“¤gìi[Ô¥hd]8ɳӒÀö¢C%òKyˆ_©gQê¼9»Eibþý±ú§Žëˇ‘ÎJë3É%]Ñ·2Zô ·í"È¡ç[à¼û†Jµ|·áz-‹õŽ"dN¢ý¬Ûâ)å‹·™‚h¾Zq±ŒÔýl0ô-@rÅ‘=§›¬ÃăÖ0Ýaß". |Ô,;¾‘,A¦>·ßGŸùëoñ/®;¤Ð÷zÍÕhŸI‘›Ê=¨ÛãI¼£eÆË$‹f3…ÝlÁ®…m¡ÚmðúÀßÞaûÝœ"÷£M†¡¾Ñ8˜º—îòß½eDzû}cøòY¨Ê '[Z?Ï—\Õ<Í]Ùh#cƒëuRݲ½{=%[IBóåœ#°ŒÔôäÕëèTÝ·¨É£öífx2âDÁ5¥¤¾xúQÌÇdyÂ1‡Š©\\•Úÿó¸”0$ìéŸ8]ÇV)ص-Œ“Ô•l4‡°F‘bÜ …ø­z<Ù +½“YðùlyØNb¹`Y§rÌ[ZI5Çö6±íã‰ÿSNgáäy+°èyC¯=r’7%ÇS¨&-3¡R?äH¹²9ßä>ªæû¸×k¦û¨Ú<÷¿ÚÈxüŠJ%‘k빯ãmüÌÿ 4ƒ³"¸ütuö™++vðÜîÖ=ø ñ4kID‚4ü(ìÏi“IY‹Q”üÍ2M½Sù¸E •áXõ%ɨ& +¿+Îï‚ŒE€|ä!©5oaŸƒ3^ðëÒüB¼¹$®±´68ß/WZ ª6Ñ?²à4‘j¡8ñ„æeI¿.¿:Ûa—z©>‡s¡1ŠcBƒÅecFè$$†C¶gÍèaèZ8Ûø\¸râÅbî*?×Q›ïÃE 9‰Î7&õÁlí½^3I}0]»tíà t<ô»âXª}1[ +ÊÁ¯ ‰âdz†1ÞóS ‰ã×(Çál,ÎuÄÓbŸ›©'n;p±x˜Þ.Å ña§$¸³Ó¼Iª¯G7q0Ï6&À›`½àÊwHØíø|“¤ñäXL—Ìú;“lÌ·x¹ú°—›öš ÌöpÚ£{—£‘ß¡,c„Ì÷ñ6ï9ÞÒ S*z coõ—0–)qy_ 5÷AK¸¨að1ùF¾:É„ZâÆ–n>X·|T”VëÃqÁ‹ X ›’1 ±Iˆ ÇUDãÈ r‚½®‘Ùˆ ëRÊû«ïµŠ:‰wsîÅH±¤2¤6s­ìv– |¿‹!Ï•7å^WîL3+mã-û*1¸ò{Õ£U £ˆËÛ|û x̱Ô,ßêš×¤[ŽÀžh>VtLÑê3)5½FÛÇ)ŸZòãôõí&”¶FÑùgº×áŦØ,øñ7&›3%)èqÀææÅÛv“€M"é¬áÜ{«‡ ¾O² ˆñUê*F±6ºõ½¾à„GÑ`úœ–S¯e¦{yöK934Š4ƒµÉÛ‰ÉëŸLä‘®›r ñ§ÔÃ0qÆ° «)Ù%â‹Â©[dÜã!\$…\Ã'ªµgk9m½½FCQñ Fž…¬oaä> œéƒ2«?ã'‘WÈóaMõoø0W’ÚYŠl›o­„7õ}f=iWéø¨Ó7–›æ¡@ÍÌ„gŽ}IÛš®ž–ÀC¸´”þ ›4Í6Œ2ú¦“3­rŒ» ï%ù/‘™1'º—ðæ÷ÖZíd»áÄ(oÇñÙd"­”Y85že5ĸ•'€4Öóé´qÉ:ë`3‰qML+„\#ó«}‚Ÿ”­‰ +Ѳ_ñêZ>Š.v¶|®˜ûz?¢Ñ›ðß0v`ç°#lo¤bº¨qº<1Lr{Èþ®>H"ï¼ïE†wµdE%ê”-ZùšãN9‰PfnQ;=ót@n“¢ñ…ÔpåD‹×lÄ ‰Šoî0xy:»¯'®&¬bÑ„£ä8¯¬ÆË^KVúRD;9¢9+–o‰¦»eSõ6ŸTMx_ÖÆû/GÚ¥íjÓµqäEˆ]9zÎÌ’»éÙ„QòÆç¿ø¢™Ž…s,jª¦¿hWØD¾Õø¿@ I¨÷!e½@­cú‘ÿ®ðª·qó*ÐLÕ×P¼Ö$!i‹è¦Ç®,ü‡ñõ¼„&ĬpÞ‡_ê°å ŒÝçÅ/ KAüÊ—øs«ƒõfÒÅT‚iVhd%ìF6ùpž>‡h7áNèÚ@Ú豨bÊÓg²©nòµ„’.Ý!¤Lü‚÷øŽßÊ>/ØaKå0d'[Z…mä-mCf‡ßa†åòïÏNà‘:îd]DÒHèÂmu0Õd‚ÚPV§6×ht‰Å þ–ý‰-äpl®X\ÞážT,ã3}UqZ_h +§6¤ +•žy> U+‰}$ÇÄfª u¦–7qÿn6JM,ÐÍV 0r;ÿö‡ +endstream +endobj +134 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +135 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +136 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +137 0 obj +<< +/Filter /FlateDecode +/Length 5539 +>> +stream +H‰´WÛrÇ}ÇWÌ#¦Jw®»›¸\%[Žc—;òd§\ R´%’&H)Ìק/sÝ ´¢R•.ff{ºOŸsúäùÝýÕÅéÙ½ø쳓ïÅÉËÓÇ›‡{ñùç_¼øR¬¾Ø­Ñlµqð¿µFÜ]®N¾~ÕˆËÃêd§~i„»‹U³mšVìÎÄ&|û ü¶…=ð¯Ý:¡”ÙšÎuB»­sö¼[ý´Ö²ßàãß»oW_íV_}oü^5x¼ÿzyò·wxq³úçêä óåéõ¥Xï¯7_!O¾ûò›BéÎÖ1 í7 VÅ`U6¯šmÇ+u±ÕÞ¡çTƒÜÊ }zñJ*»mÅú><9•zkÄúZª­ësüS‹õݹ¸'°îVn¼f½—C¿È7y\ gÐYW°Iáðû¥¸å¼ÜIxts&[<~+áóVz±~€%--Á•{||D•Ê#ÉrE²Nv»TFe=%FqZ cÆooD i0}ã9+ƒCü=Fu +tdÁaoŒO.»ƒÛBИ’¿Ürôû*©TH¤ÇÃ0±”€+ø¢Ã© îÃÔ(‡‰»ƒ7ÀÖ¹ñxÒ™´!Itâ¹4 ~>@–R ¿8\x?¯¥¡˜_}/ðå ‡Õ ÷\ÿ,EŽ{/ÞaÞÕü cÈ=Fuƒ7¡²l=xÉGÝÃʨ þ½Pˆõk©)ÞGiZܶÁ´zŒ6kÞìŠÍ‚3c1š $Ä•K1yžcp˜þý 3å‹ß¯$ßç†S—ZŒ!_`ûÞ Ê÷ÝV%èœKÍ µ½ +^B€nÛcD>´ ×T`’1`qIwPE}¡ÁGÃÒ}ÈŠÇ:ÁßÝ0 ¼±ÀÜTZB© ¡è>Âá •ºgD*‚OyºJ»ß`<(:büR¾˜Ë¤ÒÅàé[¹¡VÉÅ‘»@Hó{Z;s¹HE1÷ô–­Øá}ð6ï²)•’`ú^ÅK|›’ÚJ Ù~à:SxÜ=R!Å|!¸ëlÑu‹ñÖðææðÖ™mßãψ·7 A€©ÞGÙz½Ç +óØ1•ôøsºƒÀçªxŽ94´ ã^g€,ÄZQa¦ª²Ž=C"Ršc6ÚPmb¼/°˜? aÿG~±+Gñ^r%s4¦j¾ÀD•XXðLT)ò~2#¾eVÉÐW|ˆÁ^JO„(R–¹Û#ÐB_eĨ†kb¹‘3Ñ…–+ö.N7Ž¶sÈñPë„œÌTôÈ*ô™-›"’C$ý ÷c`‡,oÖX§œ­DþþXC1Q?m©Ÿ„–6Ž:+XÐ'Í,s@ª ø¡’\°†Gƒaz¼ëPq'¥)÷WMi)¸|_:¨¤TdóÔS„zŠŠÙ"åoT{NEÇE•…XNÛ—…Àê+ËYaÊa·*ç+L°ï~]ppß,•VõOÒZù-NNÏH‚$áõþô+k*¤ª ¬1Ô¬<SÈì@‚˜|¨ô×hŸçW„#x-ê~;>.ón8>hH´@Šÿ0åÝêÄÖÀÆ[:(5¥â ”ÏhJ—dñ>…ƒ0 +–/;±6@|n[¶ +YŠè™8r¸ED6¦|ÝÛÈå£Ü†×\üZªpœK”|µ´½ZÚW‹A« µíj­*f‰yÂ+xtLþï±4v`©L&Ö\iÂõAü «‡ýCŒßø¤€AWàM£ ­#1 ¥ðÚ.èc”_6\!h lÙRF‹ê’[7±^Ò˜=6ãó0iDåž$?JàoÒ„)ƒ¾hºQå°‡~¸l37Ñf´y©`÷¦„èˆvHº-&‹SÉú[j«î^`N +Q¶kBÃ4ßÌ[ÙñQ…¹5dÖ`Øtdâl)•êY%›–)ˆM×øÔs©m9ê†r=˺#¶I£›biµ(ž×ûàéîÒ,KìWjŠ#¬‡âpût×ÛµfSUöþ©åI~ÖZËÎ…¡£á¦ˆW*è‹~x›k„ô‚½u6òäQ9=©Åß1ÿ¹I²UalüÎFêaj¬4m×VpZ ¹ûuÉÁª8x +¢ÐäÙ2V@ôi–(ÐZy½ä§µfðqZ’’E´Ý¿eÎ*9#Œ )ýñ”øn ôd…U]ß­zJ…S¸aœó ¼ŒgH ¦<ƒ[àø cÎa„«ª‡?ÝX‡ $1È¥Û#Ç©sj) …øÕ|ÉNµÌø¤‚Bv… lBW"!Û¿Ø&˜Æ üø´I°}_¸¬ç¾ò2Ä7ÂÔÅ,ymꇘ7á¦öæ3φ÷e^=M ‘ÔÔ»±ýVá¶IRy=Éed'{¹è‚ +åmä$bª\Iÿ–;pJÊ:ˆÞÒ„†Þõ +Í,<= ÝJ†rš×xŠ9ã?—áŒf +kr—vq ØÚ@}¦]í\a&sOGºÈXu%Ù"¨ƒzVø>Ý„-ªçÍ+ßO0XZQû“À™``Mp‡ TB,¥(ЋÇË"¾Â^‚²íIL¢LÀ²Æ3¸Œ>;LŽ¨£hÃꃻpµ09fõd}*µËƲ8jàÒI.‰‘÷%'k¶²KæjÒ³ƒq/ÛÎÓ€ø?„Áô &²ya’£š§è ŒÌæàèôšÄ—}uÑ¡¸/ PE¯>FkL*É;)Mˆäå›…ÃQÁúØ>š\M<"Üz_‘ žù#f*m0ؼnb"#31n× ù“4Ð/Ì“‹íwWê^MXâoÚ®­`³r÷ë’ƒûãC‹…û†^ƒ·ºŸü.§´ ö‡.Æ‚[ˆ ³ÿ1_.½mQþ+\Š€©rž$ÑUMV£uã8vb8‰ 9úß÷¾f8CQÔPŠ®,Kä<Ï=ç»n +e"Štê@5,iH5Š’jõ±'É™˜* b “Ýö”HbÚ L×{à-ÓFLV¡l2—,é¼ä÷Ø–dOFÊD‰mÍÐ_bÄ„™H߇M]â‘Òÿ™ü4áfp#v"bŽìÚðTÇÏö×ÏÂoi LqÝ Õåu%f%ÒAGßxOŒÀÛµ†UѪZüÆrF7š 6–+½q€¡¢– ÔrTo·²x[Únê°Œ¡ClÏ(ã~±ŒóA‹Ëx(.c¥õ‘;J¦Þm.k׳îXĉVÖRÐAf¢ÓFi|!TâIÈ@èÿC=ÞN”ÌV°"2NÆÜzNFõ÷¦¶ÄBÓ“êM*´Ø¤úò>ŒzÞ¤’©w›? +¶½\ u^BÒ›[¨©ŒÏÍHŠŸ w2‹î„ :ߟxšcQqGá½lßÿÌ¥Q-7#u+vD…vU¢åg©JVx”%Ûóšš{J2àhÄ2é±#‘šŠÅòi,.ñ³ZºiË@_C©‘ #QÙ@Ó6é¤)”Ø0á¨8æü0'@=è„p¯p)d(kåY4š +,­A‘7Ü}¥ 1ä@0štRê¦ýy£¡¡ê×{ƒQKÞ0´ÔŒ^á ¸¥†?Ì^Q²„ÝæO<çµÈ‹Bâô©6Œ”{ü@”cƒÂD`F¦Eažbä(©KÛb…6dizÌ’ }½«=fÍ%¦$½OÍcz‹ea~¢, ‡;ƒk]”E>h±,\¡,P ®]u$<ÒEì6oɆ:ò=6œ=1‡8XÓ ò$ Ñ@Æ +zB×ü ¶åËkZð÷Ä=ù—¦K&@ã:çÝÿb¯eì¹FÞ(–ÁZ^X’"¦­‘Á"9L-–A)9ÌÜy2ãnó +ãWͦv¸Ý—ui¶Yñ½ä¬Na„3<ÆêY}¡Ó:5I’Üš}F ³J0@¢ùIÀz‘hÆiW0­Çî0Äö”p8,8œ¬°Çf„:M¼U‘†Pïøt/È@üæ•ä£S«òqx)1à ç³muŸZª{«ŠSŽ}Þó’™w›×(›×ØD~:hrùòùÒ’çÜþÈÖÈ9\4 H²Ã‘>á½Ã«ó¬)¤Ù¥¤Ù²G¬YÐO5¡é3„:k™bò#¸$+2t‘ )ó—Ü{¸‹š ûÆ‚¥Gž=ý õâòï)á?O˜v¬@žá‰d|Q½ûÆ•½Áï᛿jåé°€ñœà´áE͆ŠqÃsŠH™a»mm÷RU¨A#ý¯VE¿¤ŠÉ ÅªV»™OötjlsUhs·:KPÌH'Á&7/½Ž}Ö>1“ÃœvÒ‚c-¨\ f¢¢ç(/n nkÖàƒ„ì¾"HìIžS˜þ|¬I‹ Ø ±»‘'º,¿yÖŠm,ÆÉhs‘Ôã )r¯ÛÚ –ÉC-›¶9à÷Ÿi`F9¿°ß3Ú³)F°þŽØÑFu–|g|r•´€þMQx4…5äRF…»iÏ+«ë±gfLì_Ì"xÀLÏôÖo‡Èú¢¹ÂQfÚ‹VŒ¾±Q¼“MQkÀˆFþSýHâS¼Çž %s=}ì¦ä’_2u7é-e7žêx)Oôc2R³bSB ±.u;%]¤›¶dô–t਩Æ꘡ê\™q«4^±LÔB ·]ßeÙTe\èRà„ÃmAý—ו|˜U¢·I÷òá/ÏàK43ÆëýU­¬\’Ñ"VcCyã} %Â;Õb³E©¢}<"Óá±bYqDCaNeÈT¿à¨tñ“IxA$#` nXÍ°†vœY™k-JB®5|€e´ëCΥ̕Žs.·4çœ+Ì9Tw° ñá@ÉìØÄÒݧubñìƒá’—Ì6‘èp×·ÕAÔÄÜä,µ _}™š}›„M¶°Ê!%äà.YŸÙÍ·¨iƒ&°Œî!Ì”O³) IíÀL*âFNeéeÀ.mp´ùm!Ø^@CY<ѱm Ð S[ÛëpÒÑüƒQy%EäÈ-­J«ÈOÅgqGœÌ~„ë+ªtÜéûÒ×òèX·‡d +§{™ºe2Í-®ØR29ÒdÆÝæ \½ÇKÅ#Zé†dä’¼Â;š²@ ¿’´¡ðâ`EyàÏÊjx¥c,÷ïÓQ‘T|Ž2&›=N¡ðÅi³d³ïC‚§L†6æÌȯúFÂ2k£ óÿÇtÀ>29™$”üԳϷY%ü+ÀÍÚæ +endstream +endobj +138 0 obj +<< +/Filter /FlateDecode +/Length 4967 +>> +stream +H‰¬WkoÛFýî_15@HsfÈ!§ 4q6è"E³‹…³(üwc+•ä¤é¯ßûšáP¢jS°(qž÷ž{î9§?®6w7WõìÙé/êôÍÅ×åãF=þâì¥:y1?©TUZ×Àÿºvju{rúú]¥n×'§sók¥ŒšßœTeUuj~¥ +yú¢|ÙÂøkËFÕÁ•¡†¶)›ÆÃœû“™uzþÛÉ«ùÉ«Ÿa§ßa#X Â¹°<~{sú·ûJ-Oþqrú÷æâáVÍÅëúôç—?)ã|5<«Â#ýiâ! ’Îfi~ø¢LUv<Ū®)+jÕÚ^·Ïx>k4ŒiÔ¬”ÏVVÍÔ™.Léà,ºhJøá¿Ãëå%>tjv÷QWô© WÖjö§.¸Ð5~Ý诗8!À’›50äž÷Xà­`L}¼‚¡Ìvô‹œbµàú?󿧀™ÉBv:ŸÇ$Jhº@¡1ÓÆØÒ…Ês`æ°7Üïƒöxú…ºÖ¦¥ˆÜkÓáÃR;<ü%.P ù#à7ÆÅb/´õ8 ®f«ÒãX# +—‡ßÔ@œ‚vƒ<ÄPÍò„!#Êö`ƒÓIjDåµZk +Êmh+8Œ± ¸šÀã.*­ÛçDbÍé­q].‡[Õ¿Áé†`“jæ‘kÝl€;rndxÃÃdpú–£á8°0üþY;:Ì8Ã!ÄlõÝ/øÞ¼E|Ó±¥Ú®ö©ÀprE½!T ƒb”F†ø^i¸¶ì€DÖä½0°UŸM'el°– +¡[ãüG<>•\C]¨ÛÈ)/xøk)GYiˆk¼NWuyë‚:IŽ]Ù{XÇêJKÄB™QU¬ýF2*Ì÷­Haä ¬ðýajÆëIÒá¥Ò!‚ +€Ý¦óÊ{SÚÎG<«ªÊ=ÏDÂ}›l߸f‚ØpÍ®ž¸¦ÿ†´ˆ•…õÒ>ñ!ǹ© ‰8_~ŠóÙÙg柈?µt±®æ„;ÈœÅW­ÚS;éŸP#` k]P–a\8,åLMÀ É}:5—푹ìÜNVë„ÅñYíeu¸æ䬆‰Y…®ܾ\f{ŸC!°L¥";X§erDø}—šCéöW-äžqú¤ 1qêé\ë#Ý¢G ‡3œ»Ÿ¡4@ŒµØŒZp)Dz·ŠÃøœhb'¯¹ ¾Ÿioñî9Ÿ!ªDUž±.L½·™´ÁŽŒÂ°ÓW•Új»¢«¦ö°¶ÚßÚ +²ã¬àtø$ ¶f¨šl4Pv耺:’0Du̯ÆIz­ä7ŽëðúÜʨ“±`¡—kÄ™ÍI‹ZvuÑÞì®.ó;øò^ë–r1•aZû×1 &ùx†iÝ!†®9•aÚúˆ¾QÕÑ‘ÖûÒžâ|ö)¤w1V”Wl÷×è µCe°‚DqT잊$\¸`1Ã5—0ã)|¨¥È–Iž¬¥q8!Fw%®ÔÓ\Úæ¯K}ï [™z(õÃ5'§¾˜ú±ôTm³òÔlvß)ûšP¡8::‡á@·ÖœšÃ®š,ª*DÒƧÑòÍOq>û·-÷CkVI4ʵ(¬Ý¨Ó>éÀ¹¥~yuÇòþ)™sÊmÐpF-iÅ ªHÉ!¿ïòWíWÕ‡e¡’PzdN$Îç…‰Ò/µíø’Òïû#k|žˆ¬nBCÍq4¹¡æ>fš@]‚f¹HKL6ŠNmfØG1;)‡¨'Ð#z)©¡Ä§y•ß¸KÄìÁŽê¶ú&)€Hù&\‘ÝöZC˜”,A)B£Ÿ?LÌt¨¾Óк.Íx¤¡ 怡ÝZsª¡ ‡]ÆÀЂ·±ùÞç³WÚ²ëäêÚˆ³ºÐ-ÃÀvƒnZñ`æ¨1=µÞÇ»ußœ‰Hz1¹‰„5Ÿú¡ÿ]¤î¶ªê8ª1Ä’ûI]e?²œ×Ø+ÛLörL[I€Ín"j/»9Ô2)îÚ½Üý® ++"˜ªàÂWÑÃ¥mËàÒH*b’ž9hN%±û%3Ö“\3h:.O¥ŸŸN¾Cý½åí^ôèòn•÷pÍÉåí'–7©Çn_²ÍÏgÿÒÞJ¢üÐ@u‘M±5ƒ5§_ò1½FÞ =S%6~~(¦•ê¥Wî îÛ´N ½":¨3_7”ì#l³Ötö¯ºÍŒ{è½ôÈ'êFlQo?„¥þ€cåJŸd;bi›¤F´£u&”bæ/Lˆ§ÉNxÍÑ`ÔÇTp.˜õqP€n(†.ʹ¨= +K_õÞKºÈcÃÜSŸŠÞ +o™‰Î p#©¥{܃Q´´YO`!! º„—^‘¬‚†aö,+,±Íµ¶„‘ëß°‡;ªäx¦º ,‰›ˆ÷´``¤°Ð}¢z0f&!;x3èÑ0EÔæH˜*jø¨íÑåšÒ%tåÍVº_Á:àxfpl[8çWâäZDjê¢fÚ¹ŽÆ¶è7`íÖ žÊ3.R3H/w ÖNªmfå´£”?–¼ºún +ªãxZWuêp͉¬®ŽÐ©À­{(+Ûû|ö†—JÒ–eLê‘A…ïŽð5îŸüÀà²ÒóÃì‹Ò“Ú$°æ±×z!+pPc‰w „©_¹žÌ±œ„sãׄ':Ñ)Ãß5Y¯G×$<¯÷b÷FB"gz?Ó ÿ*Vâ‡ÌtqUð×È„«~1àá뫶 Ô øIÊ¡Íï—†؆´CÖA&Ç¥Ú3[˜ÿ±^%»qÜ@ôWxLžIsé ¹%¹ä A¶C|‘d[pbI†eP¾>¬…d›-ÑËI£v“¬zõ–Nf £²g;ù#4Ž³°Á{F9Û–T&³E,þûܹ­Ñ KP¥m}“ýŽViEg£ªéNçÍòå³M=½‹Ä:éåK«7X˜š,ºc¢µ$ÉI íDÄ«1ï&@Ï "jVéñäHD—Šœ²`Rb6cÌú*\_ý¢§îÅ¥LàÊãI~»2ü¡ $·9aÏã¤ø‘'ÅcD|‡uZÑ]R4¼M?½¾BÄOàüˆÕJÏÓÊìèÆtû-UÙOüâ.χÁÏ RXv(ªGo{û¢·óGêÖˆ‚êÔ +æ–5[“Q°å«ÞÙ­`ëGD1{$aró¿¢þœw²È@¿»Ú®5!¸á–¯l{ƸÃYIQ(¥_¹™ hŠqÌ1R;VRŠœN §»8UŒ7rþu\:Ã1ó¡6XvÝ+›µ% >PRqÍd»5f³]‡Úœ&/_¢rr¡“jWï] +~Ų¦!¿×Ã{{‡a;Ö©‚Š9·œ#ŸÐQ¾—•d^$"ªgbo¬3ë2êÕq×I¼,é"‰Üö6çØTVóC¤0N•BfŠ?üj¦Á£;>ÃOñ‘  T¿ƒÝl §‰r{vø?.2¸ÁavkI2E¾3ü"±à Ή—õé,j…¢¦MS¶Å°Æd÷–¥À®Ô}ïÛÛfíôfЗ{šúBw¶²Ç˜ "¿‹(è)h ]‚ +]jš!FÞå@ÎèÁ\<ÐvùL&"’_¼}\ñêéªtÂÆiUaûÔˆ@/½Èú(áÃèP ƺÃ,ÄMuÔÔ ªý`dªx 7Í ²(h@*@~^²¥y“ùœ…`Ôn;ë`÷[f€¨%!¯cÆy)Ã-”ÐZy7qΪÜÄ~^·Â\ÝÓ­>00®pž3Ѫɳxs)IyE ¢A‹ø´h%Þš‚u†4»ÍEC:eÖ=¨%\Ç.rH/‚ÃÁ°mtÙm‹Lèz’…Ev-b7™ŒŸ`ò+ Ñ–9¼aD¤Räï)ƒíœCò‹(]ì¨?l&òVüˆÔLq/ÀÇÄ…_dzrä#F~gZœìVv9Éàå¾—akc:¾ +ñV«ŸÚ_¯½p$mQ|%Ž^³g«Û‹šI»¥0 f ç5«äD+zúx‹Dnb+ì?É +.óy˜ð;Lˆ=á†cD6{Oì\’`=o'ÄŽ€A⻟pœÉ‰Æ7MÃ,²<Öß³Îüen³æâ Þ ÀH½§-£-6ŠÃdé±0•Š[¤Ü–ŽÆ~´³B†”Ê.£°Ñû +äa§f®ùŠ÷ˆý™•ýùWCº¼Hóyæm‹‰àlþÖI¤Ì£§±ÓWÝyª¬Ì¸¹|YBJ¢£‰áá”öæ’‰Û»3áÃé™øE'\-?Mï$±ÒíVÍPöHÓâ”/È¥fƒvƒˆ§9ϼªDb Ù!ýiEÿ¤ED`ò€ìÅwCñ…?÷¤Ë$gÇ\hÔ,òk:„dÔ¶ëbûo¸*wƒ?– “E}ú¯ÙöAþý¦QÂߢñÓO­ô"qÓ€™í`"›‹®tîÀ'ÜëªT LŽ“ ÷:·Ý+,ìó¯*;Â[ú¼¸3âÖù6ßó#%áfn!äã«BŠ}AKí¡£s²ñÅýµ5±Hì½Ñ\.M›ÅGï¢í³ùf{ÅZ9‚}*&Ýí‘–Rq»µ1 +D•çÜÆb‹ÑNæ,nÕQ8^=Ž3Œc±ØÚJí秤5ŠÅÚ‘É„Ù¾§¯JÒë3‘¼ÚÅn\ñXz)Rã{ç“‚SSô·€L²hŽòî<õ7öÚNBqƒJd…jqé„íÑH™^Œ”¯(ïÈă{ÎY  âݱÆoysY< šüû~OUÚ8ú‡„E™§@;`µEÿÇŦ²s®¤Ï2>}AÓ5Õ<û³hŽ!*7VÒê\Ö{ôõÝœåÁ7±f>®ùÊt‚/Td¸´Ñ·m"'4¨‚LiÄØ äC_–> +stream +H‰´Wkoݸýî_Á&°W)Š’€ÅyuÑ"‹Ýî臦(®Ÿq_;vœÄÿ¾óàcÈ+9J·E€èZr8sæœ3GÏî>]]lO?©<úU½Þ>Þ<|R?ýôüå uðüø Umc»þw®Sw—G?ÿѪËûƒ£cóïVu|qÐ6­éÔñ©Ú„__”oøþ M¯ŒéšnìGeû¦ï=|s}ph>~wðêøàÕ/°ÓGØhñ[Xÿz}ô—ëV½¼9øûÁÑoÞëíîRžï6??×G¿¼øëKeœõe¬ +CzAò8ÆHË7­ëq cøU“cìØLÓä1¸ÞëoŒ:<Õ› ¯wzczuøG:¼ÒÖ7:ü¤7ÖâkmL3@|zÓãu§­i&xA½Ó¦m·-®u¯|t«Mpõ5cãÔáMXëN}ÒÝ€x¯¾Õ¾au£°ÃÀðÁ=nl(€®±¸ú ®ï^¨—-¬óRw­:ü]]QÔpc§Ò^°.\δðësmñ""ȱ:ÜæFà +p¾Ï°¿iotõ”xñ'þCJíð»/º éæ8á@xÔ{qhý¯ã¿%€=¡AB¨iûa !Pù!!„ â¹ xøžÞ_Yú±`¢ì=vŒé}QöÃ$­'žJL ‹˜j¦©gLq/ÑÌ„ ;ƒ~Ń?$€| ñD"”ŒF½‚ä¯ð„Òr‹ ö©s®(5˜Ú°\'‹H)`d+®åþŽœøìr†”®õ†Ø!Åû•èi ÏÍ€4i©±¶ö5€Zz”·NûdÌËíç&›™auò™ +PHßj(…GçÐ;âÏGd<Ï©ßßQŠû")1¹øœvvXã¹­KÜ®¥$ é Õv\ÀaƒÄI‚Ö·}+úvyʪbͬE]ˆ_ÌJÙ((PX­(·Qg§ä0RÕp¾³!©9iÍ…_ÜÞmñ×6"n§Ò&W†A‚¸*køìvF¡E1’:é <&%)œÿTÌñSû3œDVƈ)¨¢P«¡½µÈ02œYBÆ`“‘Ïh^{ÂD€€1,#@ÿ#„ÕÃ=Gdª?BåoèÜ”Oð*tƒ +<.%# + ^ ÃÝ*À—cTm·_¾s†‚*1Zì…+Mahca½x76}Ôe©QÏô†h—ò„·D>‚\íÅۘܓ˜7ò0Û(¨=l-¤± z%kÁêz¿D¶Q·dŠ}?S,Ž-—Õ˜Ëâyè‚̃‘@I;Dó2!ã‘lPCg!œÖžGhM20¸ÐJÙÎê‘<¡¦=(BÑ%ì2ƒë€_"¶·!ó…ã@¸‡hreA”•ÿN¤ +I@‹EEÛªºˆÊø¹ ÙÑc“”iõ§ ^‡4 òçüÉ“,ªœ÷D}Iá®CBrgçQZÖÏÀ3‹Jg'á¡…û '¯ŒO”µ¾¾*†ÃbˆGÁBâ+6°ú 5ÛvfŽ™I¾—´²OEØ´ÖGÏ8hŸ ±^\*^ðªYó¤âµŒŸ§4OIOÐÍÌg8c!¶ϔƧ`Ösq¦Qš% ­„Q_ÍbÓŽ „ì¥SGÃcV + sS‹¹›Ë6†Š“ÂO=…KqIês—|g\*˜êʪ<%%ŒßbÌNú¦ +nÂMû°QÔ±`x¥åi+ÇGfÖŠÉ"¦†ª #XΙŒÛo´ nÎ3™9WR€¿®-»—e/KÞc›Þ%cyünÍÂCíž–ðÔáÀOÑP¸(!‹y4ˆ’xï°M^莪n„îä„(Á-.Ð6…»O¦VÎC8()[I‹­-À0Žƒ^1¯†7Ú~ñj%º¶_A°¾P»tVŽæ»ü´ýš…ÑŠžÚÎ8ê¬Þ¸ ¼„~ôÂXoÑ´@¤_pbªüò :Á6öÒ +‹ú"µ« Ó.Í$^æð†ÉÇ­ES-^s¤žÊÔî°Wq‚cª١‰CM aÒ›ð¯k©™÷#}°+ãŒÂÄ8VžQX2Ð4=^dᎭ`'­àŸœöx.˜OrÞ[ ‡©”7Tè|ÓúNõƒîùWj™k)Ì kù¾xâ„|>¿nš`’®<8ü°!˜ª„Æ?’õ.1—†;Õ›2ÉYº¬&(¶XNõA¯$èË'ˉF*Œ¨™,żIÇ8EvT3£K`É0Ô³GŠ¢6ÄdiŽ»ƒÎâøE_AQ,ÞÎRl‚]¦d®E™k+Qrýóô#ºå€3ðC1wÎxÕPÞÁö¦8»JTA³Ú'y‹_Ñàå¢äuÜ×Su`”î7Cé{†‰…Ñæ׆ñ4Í›Ãú¹fÀÍÉ×GêÑØJð¡¾EãVÔõdÔ—d4uKXi°ÔycæØtç3=@༲m˜è0týȸy@ÛFMv‹°ømGëåcJ·7רrj‘¶Ãò‘ó¬õÆ‚Gþ='Íj\¿`á›> +OÒUR9/zIŒ:»#ïON6ïY¹'†œg +¹e¿¯_8~[8þ¬í{>n5||7TZÖYÈåÆAå 6¡óçꄼÔ¶Hs¯Fq,=k:liü_<üÚdOƒ”Ì¡Cs˜Z1êq³ìçÐCòRÂL8[2ôXˆA‡“kò9ßÐ)lGü;¤©åãì8ˆŒ°©ê¤©º ÒŸí ü°µ] 6_™µq…ŽÊ”­ÖÑ©¢F»PŽ~6íJ§>÷LFÉ/ÄÁ#úEz1Ç»4¼Ô?©‚þ§ª"ÀÀß³çð± åä7CèD©Ãœn8jXÛ‚èZbŠÇµ¸íÛj¨1 ‰‚¡&ÛKLPÔ?Ç òA9î¢þ²Ã0D´O´Š3gÞ÷ô™~»Å±èöÜÓ)£6Ä9µ×`…è­MT5ý{Î' +¢ÍZ+³ÐÇàÂT•ŒŒi…:¥‰U˜c~Ä‘%¢cÛg²tGš¶=R ¸¶Lò6aL„zrLÒÌz/Pp« ²¯&§n h°n/'Kª~†1á©¡»¥Îì*G?¹¢[¨'æéÏyÔ§›2™¹,Bj 1ÁàÀ²¬ÍeWM Ö.8?×Z!7ŠÃLhb¨½~²Ù­ía–\Dxò +Q³ƒÈ”G9´¹ úQ¶èåÇ\4lUzw~6¨âHµ ÛÒ ó!ÒÀZ(J žùJŒŸÕQR[¥3â +ò>bp¤ÏðÊ‚›\4j5»º=ÍÍx•ÚmzñR@{ÿÜHº†à ƒÁ~‚‹üÝž±wU/§Ý8þ‡õjY®7¢ûù +.Í*Ý;$@€ä2g’ÙÚ®ÊÆU)ëiÏÜ+©ô°­|}ú ’ÍÆ’El4NŸ‡Ök߉)Š}<]«ÈiË&ø‚,8J\ó’'ÄhP`ǽ•¼'‹Èí•íTN ‰—•;¤¡$*")T´~&˜ñ»/…§èµ!'ŽŒ"9àÝYŸ)š6>s*'Q³`Y[0y1~­µCÚF”¸slxøËéØÏ#³JµÐ*Ò¬Ûâ4 ~pV +‘øaÉ"2¹ ¬ ^â¼ô®õ,80üFßÞ|Énd!f2•è¶™u¤oך µ†ÎõŒÚ$eáȘl‚nÁkêNÔB­MÑD(5Îkb£È®žPn†hŒ½Í#½Þ7‹$Tÿ¼ÑO¨§?êËóºØ3Tž7i™ø…o!ž]çðRÔ$öè7ì>ÍYO+eóš^h“'¢è'š˜g²b .ùÀTvD±¿ȳó¢üqyupÈžùA\B X`œ¬B¿B$ ƒ,Ì—E(œ¶3 +„! ?äf-Œ,!ï¦Éøï…ºkq4–ÊÎùeQƒSN2bé? 4·0Ód7p¸GÆÕnYãwìc¿ÑÅÀ£ï°h¿ìa1¼\]÷TÔÝsÙ=(5– =Ÿcåš6WTþ\Ð +‰Š'û Á겫]& ¡71V>—@Ñz{#j>> é’Å4)̤ÌÎŽëýJwÀ™ÊŠ\Mb̦ î†Ç‹ž?5?fB‹NEœL‚P´i;žnYãC®`‹&«µe§KHcà8÷É`'Ï! Õ;ÎZÑ­ÖÒGöØ£W€g.Aïèý=÷€ê”) ZêËá@-&ŸìœyðBc,C_èOÜÆ‘õÄ é> ™Mt´xàëä;­rš¹t©±+²êä¼8¹éÿqr‘«£ptç>×ëDÛÈw’óå†,Õ“ßdø+6 ¯ :ãL6à Èd<5…)¾iÉú¶žETÏ®ðm&†Ë=çã¤_ëG~“ÑU]­D@Ÿ#@_¼C¦ëÁ3è‹·k?ýQ³±É­|hMæÆÂIRöÑ9 ¯EOf µGˆœa̾¦?[+Ó'¦WYbÅ#ŽVŸyÝ]O¸|X‰‘À•1ºW¹‡$×2xFàyV<*3“ç#WLU™œôÅI_ +OºæÞe2¢,”gÂQ2Ó2[Ñ,)ÐÑ«ä_ÌzÕôd3 õð…¡Î¨“‰‘ b䔥ê…(ÒÆïH§6Άð]AË¡e¹o>ñ•F÷ý¾`&П8<’ßí€7—`€´Ôáú¨ïbEËQG1Ñ +6,fº³üH³ ·bjß"R<ÉQròdè4A"ç¯Éiu/‡t.\ÓZ‹!ç˜ÎoàÃL“Š3«§ÒhhVèE$ Ìó "r^F/ÝZ–® Qº—qÿÆA–·ÙÐÛU}|“ÐdÈ ¸ß‚›væXg¬4GH0‚{ׇþ[ž>Q0v@òÁ‚à—Ë•–q³“­Â¡©gçÕXr9–̼…¥qPq  Þ#vÒøã8¬äå”ÅÏ"È×qµ<5ºp"°ãœ²íwj†Ï„ËØ>ú æ~Ww™a] ¶&Mñãƒ_ õ]ë©šPËNÆËóOFóÎÜ$ *ºÙEŽ‰<2v + ’ΤžX;x½Säª ¿óH‹Ý&ÍS”æJ@ù +g¥ÁTí¬Æ2ÄnÒžï”aG´°0„ù*Ä/Ýô(òRì _î…žF^LHR²5DÈá‡} T—XÎRº}TÚíþ9’ÈŒ5%˜Ée|F…+«þÙ˜è‘xö< T§bmT*R §q%ldàÍí_°®¾Á¢O?Z+6bâpf¡B×aT$P˜7óQü{ÿ˜,zlŠ…V-\¯$»©€q[‚ü™Üù)ÊÍ µË=¯Ä}´ W `Æ”"×üˆ trÉùDžCáËmüe-‘õ>sÿÉË+Ú˦¢4¿>h¼C–Y_»–Ð"í–Þ2™A´JPù,Hò*Ü1$ð“ð¿c£5å*-3 ê°)EÚ¤Àµø˜ 1Ü„Ô9¿M •µJB%úB글@ˆ†a¼*5vêP€ŒiÇ18›Ìs¾Ší»È¥ăÖaË/Ù–'Kû6O–>ZÉŠP6g•m"Uá^HP„ —!Fnxáty:kRye}ÁSv" êËKX³<êø×ç¡û–øÿ©ÍZw¡ÍEåéŒd.ƒM캱8P"¦X¾͈µ&E“)‹¼,É+QŠË–58q¥ C' ·jyç¾ÐPÛøúqC[öέôî¶e»9Š½ï?O§Û ò“ü|Jšzô˜&šÂ0ðk=S*ÀüBš ™£”c¥‘…eVÞ¥­q{êBkÝÞXd\3mQqg³\’Ú:I[ýZ[o$Ð^6êY4ØÔ]eé…fÒ]{¤”•7=‹kÎRŠ®ÉøÐ=èZ?‹l“è¸@7ÃöØ|~×:ònT³Q–£ùÁ5½û|ióîA ~l<ºxuß:‚nß:Ø.ÊqS¼»,ðc°Cu]šrX×S5¯¸2 ˜æÓY#¿¬‚§ŸfL +#ƒç#]ÉäyÎÕЀ‘ƒjÞ5Ú^ˆÅŒð¡Û<¶vÀGŸ[4ø#ö­²þ"9aé½--ˆõûÎÛ¦2¨¿"8fl¦I"iÁçﺘZ¬B"ýAL&ô|×…pI÷††lTË%ËÆ÷"åppº +¡ÑâǤ%t ÕÌ‚ÒÀQ%Øj•|•lŒJ&‹J)‡qžŠq„ wá«ïò‘ËűÏÎg3C`é'bÌ+ ùf.4v, +OˆmìIƒ?j™ˆÏ‘¨U*2¾È¶c†Œj¶r¶Ýß)§¸E7%öÛ®¹Z“X£ ¡àhævÂN +‡ Š¹É±M7o³àU§m\t›´ú¾9,-ÉI;MÜx%©•dx+EDi2ƒ–h_Ìâr†—‡]~µ˜ÌpÑœ-¶¨ÅÜ\°jç·°1xåÛÊPDcþ‚ÂÑMø\§ŸCõ±2îr +£PÁ.?½öRU3FàÚoe­¢À_dë ìâ .Èpá–+D ›Š×ß(¶Üè–ÜZÓt„?MÐI†c¬èÃZƒë@4u6Q㧖¸¦¾ ®q œÖ(›¸+x°Úq/ȧTz’.\ ÿ;¥!ö’d(›.Ì8ï-9¿xß²²+FD÷ &ðE€´QÂLòீ‹OßÙôžË2\ÖÍÄ@±Sð.y‰iE»~(« +–©„ÕâÓä0²[i£‡­“aŒG„p‹Ðø¯’–D°d9–Y4t,ÉÌ +Mäzy¦6¡ ¾2úâ}‹$Ùr%©ŽÜU`­žÍm‚}§Øð7ØÅ Àö¤>¹ŸÍߗǃû¸­ÄwÖQ—’E,ŒX ù ú\—ˆ®¼üš «/¾šœt†]S7(Ÿ ž)mÊêà]Jgþkð’@C d{Î/vïÿ‘*vY+ÀAþèöÃ`›»«_~ýçÇ®¹ºÿå×OýàͧK2@G³Ø 騾nžšÁÛýäœå“þ;`P<0åí(wÁÈ@íHyñ'·QÒ|ŒI@¾C%6² ,ÿÜY8ˆÑ'Æmô ¤+ Îá×'²ó±•VÓØà;&+oä„щÈU<ÉËg8z.íz<†I»Æ¿0©ÒUù,b/Ÿ£9¥mSíÖ²üð<…MŽ@œ|4\]{þ°s=]ÞæŠЯxq­™Q™NÛ™á6í§„OðGÄ&ØÏTGŒ÷™!¸íƒÈ,ôºÇ÷|@ò<×i;ãøØüч–'ÿ+°­ølšù×ZCŸ¹’ܵŽEÿ{‘?F3Iâ³GvÆnò¿º§ÿ`Î& +endstream +endobj +140 0 obj +<< +/Filter /FlateDecode +/Length 5767 +>> +stream +H‰¤WioGýî_Qݯݵõ"E‘„ˆ23ðæÓ0ŠžÍ³q¼1¶8¿~îV[/¸!BÂívUõ­{Ï=çÜ£ŸnïÏOw'÷ꇎþ¡Ž^ín>Ý«|úü™:xº=hTSëá笺=;8úåm£Îú÷Fiµ==hê¦éÕöDmäé‹jëöÀ¿®öÊ ¶\£•ñµ÷-ì¹:84¾Úþqðóöàç×ð¥ÿÁ‡à€÷ÂñøÛ«£Wz~s𯃣bx¯v×gêp½ùåiuôúÙËçJ»¾+cUÒ©9Èmˆ‘Ž¯íñZóR­tÓÕn½êL_ÃÐbpÿ9|Ymt[kux]ÁŽÃ÷Õf¨[ux^é¾vêð3üYÃÍðÅP¸À6µU‡ŸvôØx  î¹Sw¤C~¨6KàŒKu¼WçÕÆ<ú÷pÍÊÕ&.ÏxüÜüÚã¯O>® f:ÎÃ=êŸàü ŸºUÏ+Óâ›ç :|£>âIðû-ŸSÑ rî-nk9B‹ï¯ ª—_É{¹Ã¬®9U÷¸÷}€Ø\ÄÇ<(º2é1˜7KÙ«þðM5àqüKœásŒ^àÙ®¼‡€[ +Ààû÷•qøó‰Jw¥0 ê¿Û_#´¾ž>OÝ[b£÷uc§:¸h¡1½­Á«ÝR CÉ+ú¹ƒknÊñâ[µ£ã|Dšl½Å•–Vî`¾¿©èÚ×1±Ý<2!<|'/nø¤lùJÝ/à¸χ¯[<ö¦2ýB§NJñ5mºðeeÂóDŒ@„â &%ò žg‹”Ÿ`*ð aN¡ènâ’Ó'«á4pÒcª‰pjàÂÃàœ$lF‡»S m84x7ô@;÷TϹǫ™„ÀÔ7²òT¨ìjÖ¦Ûbðªú4˜2‰_,¥,àYÑaM‰Ccê³¢­Q§Ä›|@„ÀŸˆy=ÕÙ…ÝÒ €€‚@ODÊ.1°µðªG•6”¯”…3|Šk >7”Ž øHƒé£Ûã½`Õ»ÃÊ[üön7t źW/vò,G‡|‹½¡šÁ‹·’SÑ uå郺j©1ôZ” MIZv´Ú∤Û™/²e¾ÿ Z#¡½ÂŒSù;…²z—ê’ƒ™Õ ~±¯({_*닼K§^°@ù¼"п1‘¾ßä÷‘lUÎc`ïªÊÜV«Ÿ0Öô.C…J¸±W<¨TdJù½Ê.4ä$!{ª. êü1ô#—ý?Á}('èNY˜/s_Q7ÜHšOü>£Í %µs4¡ÕÕÐÐ#=[  ¶3µŽÐXbÃȲ©g}(ºàá¸Ò”´ÈAtý‹ª^…df¨½ u`Ô%Érä'5õG&òÖ’÷`iÚRTáÁšF|‹Þ –ÍÊ6[ð‹¡²ÝKB›%Ë$ âå ÂX_|1W¹†—Ѭ©ÔTyËì—nÏ;v…qݶ4p2—'ükbîã/Ê œ¶U&C9|³+ße:‚>\6YŽX&+ïåF^'‘rRè-žðC%õ~nkÚ¼hƒ©z;u‰‘uEdäªÎbg±·’^) ¸ôpºe ²ì¼Ï®@R‚Üz –xx-zê3ÈS≉›)íÆ&Iñň œ-F–2vàsJÄÈ´Ÿ¹›ÝšnfóºSv„)3,`ÊÙÌz?Âœ”4]L\ÚŠ â`55Å%gÆ® tr·”eµªé ßSZšXúèd…8g8cqƒÒ†…Ø:¬Ë—Š­ïdâ¸çaDíˆ )ú@˜'Â]”[²Y£:kê‡ ùªqZaëÓ<à3_1CÙ+âJ)ë—¤Ì ™—~|¸õ“áÖæ6–Ó_£›ëðéTí+"ôI7‰1ÌÜs^•¬znyæ:&ãÉ^jO®öŒe1rP¬i0Ì_Ìv*7‹L™(H€±©tèO¼0âéÑi(,7ã+—椱ˆýŒÓ—pã¾7¾œÁš~7ääŽÿ.nT*èµ¼~lxµ2¼âÊÉøú­SêÔ||‡BØ%… 0¾3Æ(Ô¼\©˜‘%YÑ ÃÆAt-[;Røˆýï±p¼ÂÁœÃ\ßOA툂–$ªÑ™›ŽÊÃå™zY˜&n#©Ä1©Ãl]°%ˆ[Ö*׆‚ÞÙ„`é ‘Æ<8v‰ÅK3'ò7M»Ú²óiÖ;P®ˆ±Òá\ª€‚2 ]²P؇ââT×fSÝñ>u-Ã>_jòŒÕÏ4ÜZ\t%.ºŠñ}›Ùácl!šF§€LôWm‹ÚðÕRä¶6´²Ë.\ø¼KÙ’5MuÊ&‘“ SX”v‹är=Ö˜%c=¿i¾,ZFý4âY›({)Ü+ÐÇ÷༠érô$‰,Á¿õÌxê'–‚ ¶~ì"}r‘¹Ë»7…Çëg­¾Ä–]€Vg2WœÛG²¯ô2œ8z”ƒÌe¢—oD¤_Dä&ˆìÇÝ/¦6Y!·DJ™Wêñ¼!ì#+S>²†€)w¹(ƒl¿}QÌÁ¯¨48r£aÏÜŸôU“Q°û¯ Ì®ÞeIà1³ Ÿoñók3”ÀfGŽïÑ/ rr^'/§Ô¹ sˆREJ»S·cr-SÈ"bFpœÀÅ^f2)‹sã\"¤ Iãb»°»9S˜ö–\Ë#ʘ9«‹9™ixŸyÿI/R€ö£çÐ5twê³(aá™lA`6p%¹-¹eJß:lù¦)±åŒw=uŒÐFY³Å m”l1ÕPã×ê´d–/¸çܼ۫ÓxÅžçúœ“³…‡šˆT0˜ÃW¸-Cb>ŒÁV±¾2μ›É@¢pôúC7xø„±ƒ@¾U­ÌjuEè02©6*F=®²ñLx`56t† ÀWÓ8µ=Qò0‹ühd må7F'¶!L,˜F¯ÈO³Î˜Ð'.N¯ˆŠk!ä]f0á½úD0àù> ËýXö=ºÃl­¼¯Éî{´Õ¿k¥Õö”¯nÂÕ ]ý+]ÞÄË»¾«·†/ßb5õáÖ ô7•gê'>â„teÃ!CV†n‹Ð· GÞ`оñósôõ=ÇüL(QàÌHc±PLIõr¬gNtRLëF³‡qOÙ°âm!‘hB[q+ŸG1-‡ÃÈ<›”&Fš˜¢Ô_ëdžh÷”Ú#±åª5½ïÒˆ/¬.¦Ò!Mi48¤ãù4ä±>§É‹– +|ë¸ã¡ öoØßyè`‹Ú€0ùZnƒ°&v–¡#èØ4gwsit‹©2=çBÎÁÔâ]£$'[ãÂ,Žmòb±³ù8KÕ»Îy]þÂ×zPcÙMÊ‘ìM+3 g@Å$I³â;rÍ¢tSüã_R°y§«QJ¬”™®ÍõÅô¨*3^]Œ;#ô<¹¡ LÂx³>~ÕD㜭]Dú:Ï”Œðì‚¢…8¨òÈD2SS:@ò«.iUš›,—™êÇZfPô“,YÕ@δV[öv#Ï@,—=Æ”GXF2 cà¬QnD|‘UXÞ,,¾œ5±s”¸c?f& Œe¨÷f>¿BíºÙƘ(TÑéQ³ÙÍæ—šmDĺ.#ñäé憖èé¾>&¿¹³—³PÒ÷èßlá­eçdÀ™æþJprPcÙ™pÆÄl1âˆ_cÙl&8|?“¦Žyÿ'-7Ó{aajˆÿ_-½q#Gø¾¿‚Çáad²_$³ Éb½¹ "!9h@V,ÛYyåhdx•_Ÿzuw5ÉõÌl‹¤‘ý¨úê{ȉâa+A1iÂ(ñà¦ͱ)±Ù¶WÿªX¸ïfL´ÇdÛ1(“]Äôÿ[¼xa€SpЦƒC(l–-‚Cdz/hæ»–ÌØK÷Qh ¯ÿX›‚øüÙy ,‰!îÛ˜ýS6ÍÃìÐA#›óyp´`ù˜RHÀ"\úkë [Äú N×Ì.¿TAÞ¨<ÛB¾fô|ß°7!ç9ŒEóx‰;v‹K‚l-õñ¢–Û`“mC¿mƒQ¦ü€Y]ÁWn6ͨ .VŽ¨-…ÍŽ&WüNó…òɤj©ˆŸK÷´f)4»Ô‹fONõtO„¿B̲Ë/ØwØ•ïe‚Òt&#gf L - S.Åþ ƒß‡gøƒLE´Õ°0,ú}>¸Mùì쎷G9î"Þê´e+ü"©Æ¶'‹.¦l3·‰˜­Ø$|RÎÄš§ÆòðPzÝÃm§ÜÁ¹ÉY“`†Œñì÷L²YÀ# ÇiÇ¥ìÀ‰r¬q ;È€‘€î Í~„룻ƒ¡¥Rv梠VW·ü± +.ç”×¾“Þ<l,\öþªN¼¼5ÄÀpx× ÏxhŠKP¸ß՞ВÞ!²á§»÷øþ›W?^vÍûÝ7¯¾7ÿ€c6Ww(ûp<üDgŸš :åÇÐXÀµ=ý»®ëìë:í÷êqÍTŽrÍÑU®Ê[a›Ÿñ:=]çêJnC=1±'¦ìIßA–èƒ/Nq½¹ŒZÚ;™ØA2 "»yÀx‚­yG3Nü5Åì9¤7­á.r—%¼ü¼­ü¶¶…Ão×B¸qB ÇC-,׬náTÙµ~©-¯7Æ‘ ”º003ô¬ÊèKÃ/óYýFþÊ4© Ú•~qAá…ŽíD¥mÎÉ$Ž&²ÌÁ%ëõPä;ùÞRÔü¶©%$Ó‰•9BÌd.¦ãbú™­Y‹cNGˆÞòzóWlåµ p2®‘’µ~ŠëÒoIf•ŒJÝ3„$I™æÂŒÚX„ÕnsT»í‘íãÖ率 äÁ P›:®…E-›š^.[Ýt³;O„Þ|Z"@í¯Ì}Ô÷Ž§2ZϹ‹‰äCvXÔ<®=¸Ï¡+Ù@¶Šuâ²ç^p€ô^(R¡pTL¹b¡È|×f‹U'ÖžtÆ£.Ítôcœ/wh•ÑÄ#úb±PŽô|ä9ؼ×YpæmU|õd{ö¥uúþBܪWÓ7[é¿÷Úí’©¼å{䫳Òn&Âw°…AÔ€Û4mÚµ´¯ÑX€:%/Z÷žÈ´–ÏFl)q×Ð%?<6hà—^xR–Ðóó?ÎB$›nU6ÍL6ƒâÍÚvŽçŠ¤ïNqÂf:$’åšµ|i»3DRm‰"Éüµ_žÖäðŸÇMî„ +™%’*F¨6!Q¿•Í¡lr×èC³èËB5ýíØ*±hûs±hÃ)–ÞšCX,׬Ƣ=‹jËëÍ_ZGe„NŒŠGð§ÂÕ IEN½²ÚFd(gb)£ÔV"庹£îö„ €NÐÎX|)j°Ê™a¹cƒeeRå9ý‰0 Òž¦v™,$á‹‚†óf ä0'd ÙþÖ„¼“ñú8p;e­;íX»Ð\³íá ´«-OD{jÍåJxæ˜/à¿ šÂ,¶DêÄÌÇ%Z»œA{ÄÆ¿áyOÄktdä\æX„(&CÛËœ•âÝ’ážÏ^oÚ7,üÃüE|’“ƒ}p|µÕzJ5‡¦ ^ö˜àe‡sŒP8Èã! —kVy:ÈjËëÍ%™OÀv=™Š„€Ì8ÐÉç†(Èü_ÌæKÜ& xuùùæ(áïoŸ¾ÜÜ_½ûõé»7?¼y½›^¿~ÝPÅ÷c½_®»ëÎÄP?Ù”ŽÀë`h¶f-†œ9CzËëÍQîÒQ‹Ýø +€ ùРSÈó-ánÛÙ<5Ÿ"7(?JzÿÞ%–ü 3ƒliP§·3.8ü `.(’ÎŒ© ›(ôsºã“n;±qL؉ô.QåG¡îÛæS$G5TDÕÙÅ&óM ìHÌF®ËBÆe憋–Š×|m­çÔǦfAÁ°›­×xgÏ…õ0’®œ;ërÍjXûJXw°ÍÐ\}mÖð­ö¾Þü AâNèfànš¢›y6ZFñMdÜE SŠû$–¢ÏŽÇ"¿Á+,VcàÀôke + —Š»mýžˆÈ8¹Â{q0†ÌBÎuy1:é~ósÞç\¥.\–Ê)(Ýa 7]˜LŒÍ¶­ƒ¤vгôó궑?Ö¼ÊV(ŒÔ¡¨… BTwakz®É2Ð^sîý‹pÛ›c,¿¤ƒŽ®ƒWYƒïN1ÿn:D åšµÄà»3ôNm‰æß³Ì8ž`…µÑ¹ÄÊj•-÷’Т“\v3BçPÐÒĪA“`ŠÃj´+^I§•Ý÷ý¹b`Ã)>Ù›C=/׬î¹=£çjËëÍdšL.˜XxΕ,êå±E‰?&¶rÌÒ8©!3gæ^Xk‘ò,!ä¹%g]¯ä¢’þïqöMüŠìÎ]Ä´XrêbÝÛ‰ŒûE-"´LkåÙÃZµÎŒ\±¿Ïi›%àQe=7vëXõâõ,^â-ÊYµ¾çÌhzºl!û>Š¯ÜŸù?å•øí’<Ú"Çn©Ò»¦¥Ï;.Ù‡¶·ì°²µ$Q1öçí;(öˆÇø‚Mpb§.7æáÙ ®H†ö Ý–o³ [=I8®! mv¥¤Ê\eòŒ×9JpÍ‹õ|ÎgÕüáK´€!+ÐGzš.ƈ•Ü•µ¿O†#-\i,®¤­Pd½Ø]lØ—›¶'×õ>‚öøiÓzŠ,ÐuøùSÛ: ‹æ†Á¯ÔA«y^Þ¸^"jÉ\¼&g>¼†Ù 0óà|_©ß>ÂëøQôfy,.¡hcå.o¿°jüõ¢´ +ÁìZ‘I†5óÇ ¨­¬ãòÍ=«%Fzn ;Ý£Qf(›ÖQ¿CDY.àÏìßIýž`¬ÚýªâçÙ$çT` w·ÞÂò'2{ÿ‘*½xª†¸tÐg‰$DwšÐäyÊQtK7z@¾Ãy$¤²ïe >ãïè•-eSÎ4ŸSsv +L\¿œ“¨+˜TtÎàM®+>‡ád•y¸TCEȈªõÿ^ûé%D˜ÌQbõ¾¦Ã9ѱHá[Éqy EfÊ“é¨_ô19gȨŒ%"©gï$•`ô€b×tÅ8aˆÛUˆw2 çüK€Ô¬•/Bì¥Éæè¿ ƒKKø +endstream +endobj +141 0 obj +<< +/Filter /FlateDecode +/Length 6229 +>> +stream +H‰¬WmoÜ6þî_ÁK «)’’€¢@S÷Š;¤h¯gà>\o¼vœÆ/ñÚI}¿þ83|Š+[¾Òµ$’Ùgžç™Íw÷—ç§ïîÅwßm~›7§7÷âûï_ÿ(Ž^Ÿµ¢mtgý¿Ætâîâhóó?Zq±?Úœ¨ÿ´B‰“ó£¶iÛ^œ¼ëðë‹pMï×øÿúÆ +¥º¦ì ´m¬u~ÍÕÑJ;yòá觓£Ÿ~ñ'}òù ZXë·‡¿ÞlþrՊ㛣¿m~ƒðÞœ^_ˆÕîzýók¹ùåÇ¿ eíXÆ* ¤? HƒTä:E ?4¤ÚÆ:Z£s½àË¢ü×ÊɵöWX5r­Æf«Î?+ñ›àñ,V7øìmÛù¯[øè£l›A¬.¯/ä¿Oþ–n9ײ{lNNbfC¼Âx«X°J7ÝØ: +öŸ>š¡qbõ^:c'׶éÅêZœIÕ7r%ýBîàíô»­.ý:Û(ˆÛÿ ¿¡p«ÿÂíýÕN¥v°üÞÿݺKØÆÂ6ž_ XÒÂY{q/GosÕ[ +"Å›¡i•žA‡F%ÔÜJŸPHÅ üé/{Nw¾Œ5‹Èˆe€îñ™ñWu´BDùå.¾V˜À¾’XÑx@ˆ¨P9Íê-5¦í•H‰ÐHiq…Y1%`O©X]I¯aw'^Aü–:bQ<81èÍòšJªèƒÆ‹{\@_ˆ"5‹à}ù4®!ÔÓ®wr§âÆ3ö¼ªk[€'îîoˆÀ8•]G OÙI\ú97HyÜ¢lï"^]ðgëã4þ“.«5§í'6îØÆÀ½ÊÍqèšql-‘R]£¦„Ôsª` KΠ,6t¤Ô­©g#ºòópŠÏåa÷⤚'9‚LYâ<ù†Ä w¹­–‚ÒMémVk­EÒÚ:9z²8¢Ü34ÝG¨Àj‚8†øÀ×|J~•šÉÀEE »³Ü¡n’t‰·+iј±X’"›®Døf¾VVvø«‘¿TrÀ•oeü'€è2Òˆ¦*C¡¸*È–h8V5Ķ‡Ñ@dý]Ó——I,bf¦/¼ÙœŸwF1?_%h‹¨ç.•/²) ”‘š”n*v?£›f7Kþ&)È”0nÁsaEÖèùYœkÝG8#kpyÆí.ê²ß!¡ ˜Uu€îdGX3”òB»ÃÜï·F½K=#±Àh/ ÏR–·Ü ³aôÞwÀI'ääk˜0èÔalùÒ¨Øàè¿ÆÊg£JÉÜKšì2D2ÙoMaÁU IŸ²$ÑŸ…û¥©MS姮ºÄHrukF3]Ž?¢jªÓ_$Qß{ð×ýAs”¤6ö;<ÙAÇiƒßŸñœ<¶Çܘlw¤>0-Öœ¥Té„—f,§Äa/ÞËfc^“eÑ”ÉÎÕf¢aÊ» ›Ã?s˜æ=Š¢ 0-xRR³Ð„w!ˆ²¯ÈN¤µO}B #¨h€û$œ\6Ÿ#Ÿ½.’±E™Écõ&kÖE'W_èY}‹ÓœßŒ¿®A¯Ÿ‘º°iDÒ\—B«oKhõà ´¬Ÿ(¹£2½Í¶bà#XH¾gþÚÞÄŒ… ƒv£/±Ó:Åìà^q(« +Zša´Š¥Å²t¬±ó¡-|ñ,:k L K¶Š®ùÕ‚ªŠ£¥s`î‹ôLâB7ÚCâ¾T]IaÖÍÊ:0íT_F®JËlàãÆÍÑr‡œMx”DÿØT¾ßµƒ¥I61E´X°‰âŽ^éZzŸT¿—ÐYÉ…nLì Ùnâ?†`ž«V¨©øÀ­¸u9×o +ý½#Ô2«\D ýO$ÁÈñE "Çp䔨±>Æ;ü5^–N>,ÙØN 9ËsF±¹`ž^À¹2Ñ˃ „걜ښ‰U §jŒ)-{(*!¥"«Úöè5§(ýD*úÝEüôÞö÷,‰¤z:^½“ΣFîœE Ë?¥ÁcÖ±kSêé»­'ûâ”p“)—†vø +ï枀o‡3C_ l%·/á;Žsðõ°Ì³Ç­lÉEòÒÁ1' íBH¤U°¹a'JeVê<Ù®MyFv*Á§ ¥gä“¡`0u‚±Q@OŒ)®®aì”)ýfU^ƽq ÐœWQYöž7ñ.Y“í Bµ ê£ççƒìÞ¦úÄ9Oá¬ØˆÂûû<­IÄö‹¡8”Æ®5sˆñ?ò1ËßÉ-àCž·٤Rö!_y(X¢a“cëý|ù8¡/µ¾Rãmð w)Š0\bIJoRz‰ ñŠi3n–-}n•²i¢ÙàH­ØJrÊäQh2ÈÖ–*©Ká4–pò„tNfÙœPuZ˜-\ÿ4´,–å”<¦`Ë`#Îd‡Ž¬¹¡ +®U5¦áÔõ<—ÔÆöøœ +'Âÿ‡BDXÅ¡Y¥<%vÅä£4"%߶CU·×-y°èn'œîÈ' *ñÜe hÞbR¨3#ò×*–b/‰Ï_‰,Ô¹«™—“/ƒÓÐ.ðyJK}Þ ØÆžoZ=‡ÓÁ²ÑƒÛ¸ˆ×6WWö-\v#üÊ;ú5–ÔS…+ ÙN:EÓ.8M4©£ÔÚ|pÈèëùäx;˜„C1E\¦>:@Ýt‚¦×NÃNo¥4ˆ¤FGúëC?ù­~'J4|4!N,Ã,év&nÇ0À›•Ä(ëoèãaìÛ‚oí° ¾î:N +;> +ÆjÆÁ5_ êûRNG–]Šj=ŸæÐ畧ŒÜ^]á=Ró÷uóû;b[߈»àu +èµåȹŒª:ØŽ~2„8>j—c‰}0Œ@] +P˜ËÄ\q@aþ|Ä!ÛDüÑDFã¾>ºzûm]=¹"eBGa™5ÈödÇÏXˆ­n c2X-fL3eÌYÐZÇf (jÀ]°u3žž°ðuΞöXêïék*·áå–Á£•Ãdòú —í0¯r‘¾JjrŒ>làûäGÁGëùèµx ¶tÓ«6—ü.ŸH"á1. .‰²ÿ(8s–’É…Î>“Eæ¦JÇbB´åØjfÕØk=­Ú¡”D% ²mŠ÷…)ÎÆ›>«Dx%Âæ¡K*ö;‡¢²ò`º÷£/wÈö7aÿZ—§÷øê<–ê<„ë‹ù¼FSjîcIÞ—‚¿“8àT¼ Wñ!¤ sÖÊ«K‘èJ$Žv‰^ÒòüR(§æf=ϲC,ª»ƒûèà]1˜{JOƒ_BšÈت:¹P£™é¨‚9xû,»@»‘+`¨¡Èo60}P]:„¦´-èbŽm¢@¼¢"δ‚ 5÷ÌÙÈL` Ø>xÍíÿh¯–Þ8n$üWxt;J7ÙÏ£âÃb[Ø“…¤H²aÉv4Nå×o½X,6»G”7{±G3l6YõÕ÷hz)ó)ñ¨¥Ù&Tùú™ó +F¸SSŽ)¿Ën˜ySÖ† 82bý—-™cUt72ÓKGÏG\Ì}$PYÊ);æèà Ÿæ©>1ùÆ“ô¢â–Þöÿ#Í—ðû¹‹yÁXŒvˆ…djâÁYwj¦‡C‰Ãc-’æsgPTmî³ñ2ò˜r¢q~’C´V41ï^CÐMŒ(b qÍ@™Å‚a—×Òãò—ð$Åó:Ñ#&a¦õ嬲¬KknÿÃy÷¸¹;¿!—Û°^9ùõF'AÕñ¦:Ãtæûž‹3"˜|ùŽÐÃ_î…ûÙŽ8ÁEÒËdˆÐêã.[Ø(Ì£Ìg0PÌO·µ벋·|¯–¯Ôí:øбûqâ½’¹Íd)äj¦ÿ™™÷^LÙg°¤äL»nCt`1|ø kÖÌ°•(á½3 +Ia¼(xÔaí9M í@Gûü®Ìx§æ ·œÙ½Œâ^ÆSî0|y­^;˜§@+ΪÌ:~ù苵ŸJ» i¹ +ƒ(û{\¥¢Õ„)_Í0Þ_6ÉÕ7a­Æ-~•Û=ã`f{ÅV¡aÀ±ž(㽸ŒGî£ðõÆ-¨n;Æ‘íõÔ„GŠl2HWÄÕ½m´Z+z­)þbë¾/w¬PEln·bpŒÖ„ Z¶¦© tÆ3÷£¼ÿszÜüV0Sî§ÜH«Õ_ÕÉØŠ#ÏÖFîb¢‘ÕÞ½Ïüÿ©«+3s1u¤"Çjx…ÜBÍa]ðÁ+ºê¢È¥‰|HÈë(7o~/“ Öw j7?IŽ| ,¾‘ƈqà‡·nh•þ !oŸp ¬u‘ï@8x*jm+`ß9pcÉk¼É"Ç O“ð:›ã4Lìû#âv¸iÅú|êÊv÷>ǶºÖç@œ³8êÚeG O«8ú`t‰˜$lPë "¯“#éZž™zÔÇE_u +CeÕ¨¦ðu÷lRÿÙ°RV:¹%ŠOÐÎ`EüºG.…ým₨Ý,þ¥OT„Ãätþø‹Luq+g30~V¡ÓÆXu±|0}vL~èÑ©Ðg–eó®¤7Aô&É„vŠæäªäÿZ(9su»ˆ›!Ø(â®bzoT‘õ±~!Ï;Q)‰«ÎÜ9Óö†ÄÑÿ×î0 ß]V8„ •ã7V- Î0t„}å¤oyoáÉøŽ6Ãm>0fxžV²•­Ž%"H“êv61YòÂ}¤„1l9H›kcŠ‘W»Dsî“•ó‚Ê`ήsS ˜©‚û,Xª¹o^Y4ȸ;PœZcÿ•Êý̳+SžZbKÆh}F ˆ%JAÀWw”N,Ä;ãœqÍ9Œ%ü¯ˆ7Û¥|>…“Ss^Že¶HK†óïð¹çð_ïf+Ö™zÀK|©g÷†/ùä ðõy¢BˆýM”·Q3ùéw?*|5«-+,õÝ–†ÑØýÙ&»ÄÆRKÛ +7ŒVÂJ¾#-©ä¬ñœ‘èaãzŽÔ ¹–á$Ô„—»M~Vâ‹JÅpJ‘Ñž)š¼Ü3’dž×êçCü‰ö ¤Pf!±G7%dO‘¨cC£~؇-ªm[êP6¶íš±Üù•ƒÿÃDhiYJÀeòƹ)¿nšh‚"´Lµ7x&ùf¿¸,¥eVo¦.N¹œ­#ûCE¹.{fˆ\²æ>P-îHâcÃaS¼³ÀÁUC·Ñ@Äo5Y¦·ô£ãVúÅ®“€E}€Ür Èõ/÷û7ªõCÓôýKÄÂL¿Kü8—{‹Y£Ç:ŸäqáÂb¦yu´ddêÉò!Ô¹Ïê<’«¯©t—EŒ7¢WÏ!¬^Fhø›ëzŸ“ §»€ú=^§Ëer°Ú+¹ ”qzG¦Œ“@¬E’_š_N|Hà;¡žlÌexä#áÅš+.Ö§¨á7ä,²@²{‘‚¤£ds~izr@&gôÌQå)®lIªþ¯§;ávŸ£½e-g¦Mb¤b”?$©2ñuÜPz.t+Iè˜ÕƒCÞt¦!ã“'â³ö‰¶eE/ÉäB#X ŸgÉqÚá nYŒ·LºaŸîÜêñî/¯]rkÐÏ)£²A¿M®4ök]8²x-^®Ã ¹5Ÿê’-ŒV±ßmb_ÝQ;"e*Nyz«í1*Ž¾éS+E"#4=áð[ÓÃvì:ÃqÆ*|q‰ÏŒ… Ìÿà|H΀%MÁE9tŒÀJ õñÒâ§2^Ží°g¿Îy0‰`ßÜ»ˆ³¸äAµSyMѲ¶<ö%)xÎz­,¸¹<Ÿå‚å#yH'zq"óxAÌÈßå¿DäÆþGûBÚÌà ®} õ£Áëu$×¥,&E¥¡ãôHÛwæç‡rêãÍj„2÷ãÜ»â•HklÀVä)Gòà÷Sù‚ô ++Vo¨Bm*§ñ•2ØÏ6€rš#‹Ö,¦™Ò“©—¨Åî|»Ðævš§ ^Vê°»äØ ãv‡ÉÄ” ÑAiäÊjž’rBrÆÎÁì˜bÕ¸×FdÙ \qýM’%F9sB õ´ŒÉ@Œ»‘Œ¹±÷Î,cwªä÷j OG—MŽàÇ¿pt#púSÀA3ñM;&âªÈlvx¸ÇüµŒŸOz-¶ºH•w«—©´%ë‚Œ½Þ×… Árx,A2ôÌ»Bãl ¦°Áoq#êEFÎØxs#£ˆðÌ &·}'ìö¸› +ršØʯúžV0¿C§_Ió_íºo\š +nâþ=oÆ“'覡b¦ƒ/ñ¤|*Ï­HׯI—$Tþ'Dôµ‘óˆç Ëï/ñúK†tõBBˆÆ$ùu"®¬ÅV—c ÞÁt`4¹·ÍØKc9ŸX)À®–ZÃÕKæOöáڣ̈́œÑújþ^Ê&ç餛ßðhöãàKº—3šÀ¸ÏPº•¬nyÚ4ÙA +Vh.Lè]k©¶9bVÚ$ë´M•fäAÈÏ é¬wCkS _ãô lj°u†É¶ÛÃ$9e–Í$$f‰H|Šè†^­´Œ#À×d®¨‘—MoýÙÜþo ™xmÊ:Ò¸ â@wÔµ[üÞ2¤cû,lv#¾¿TRþÞ²"è|_xbQ…d2L¢à¡7ð¼ˆ/UjieôØÉŠ€kðÍ-kÔ¤æ-Þ(³ÉQDøì§f–Wp+‘Ú× Õ€©©CŽT¿›IÚÖd;Æ¢³=Óé¤ýaFŠ¢ö”U>)ƒCöäÓ2¸äÄ>g •@m|þd|þõÌÛ ªi‰œ_Ïí_…b>&ÈÙ$‰Ix‹ÎŠº”+òs‘Ó5œ¹ë&3’W[¦î49`ɇ|cè9 ¬ýù`˜¾ôçþI©FÂ|%’Ç pߣÆy49"2ü Üå¬P…¹Í݆­€J^^NA0ÚMç|6¥oÓï+HYzÑ¥ƒ;íKL‡-d™{Õ”ºh³‚j¡—ÔÑÈû> +stream +H‰´WÛn7}×WðqhZM6É•YØØl¬·õb1d­-M¢‹åë·.¼öeÔ^o`À3ê!ÙÅS§N:yu÷p}¹Ù>ˆï¾;ù»8y»yÞ?>ˆï¿}úF½>;ªE]éÆÂÿÆ4âîêèä§÷µ¸º?:9Sÿ®…g—G뺪k-ζÂy®jaük++Loày•µöÜ­t+ÏþsôÃÙÑïàM¿Ã‹p?î…ãñ¯·'?ÞÔâtô£“_0¼·›Û+±ÚÝ®z-OÞ½ùùT(§º2V!} URqª®:þ]‹ÎVuÓÑêk{ èŸ+'×¢]Ur­zübáX‰WR7U+VO²©”Xmîvrm+øå¾4¸ð^êÊà­¿“°x#aé5^$"(ß0Õ3!w;[lyƒðŒ¥§ †þèmL¶x‹÷žýÔd²Kíÿ´X»A7¯»–ê6›a–R{fÂTïÀñÓ}ãøyX£óþú–.Æ*ÃùÏŒ$Ï;Þ ¦×²³üâ%7Tïdý˜×²ËÕ¥‚'±4 ‡.%1Ù{¸cÏ”{Çåܗ2¶ŸgläܤÏâ¬ãññÙƒ~gœmªç6ÓÇYk3-¶17q:Ç£ê- Å0ãQh¢¥>i°O.­©‹–¡CÕmÕ*g……’OÖú•l Š¿Ž³—Ÿ\¢’ïj¸áñ(Œpqdkh¡Wf?\‰±ønûrãçË®p…Å ’f0Œ ‘àóZ2úþ˜œ£ÍÞ_4½î/o É|‘ÄÅI0Àe>\áßÿ‹.d‘ZÐ,r +-m.M;ã¥mgÐK{z–‚­Ë¼ -šÂñøÓã‚d» &›(=fF³H”Ðz8/Ïv‡[ÅmL¬ Ã!ÕK2+}A1ö_匽Š¸¹’¢`<Ào¼_˜°šîú‚ÑS³Ÿ£‘öµÛPQ|ÁQÔM7Ù(D7±e6ü"Åã²Eu¬™º?± ¢ñ(G.’tº²]ª¨Ú+jwXQ5n}¢Ö¿Z‹Uº}6ÄñKƒyY3!’î˜`ÝlB° aZH[»·Väƒd®"–O’ ü#†—ëQAœ´”nÂR¢òªâ +ý¦¤\x;P^ÕáUGÝ)ú(fÊzONX +3 Ÿ’>Ÿ«{Éï6#çY»GRx5œ}Jg‡iò§çÊ@=¥¥Ê"‚³¿N¡4ž#ÚñˆEëŽÇ²MY0þzm™…!6ÌÐçoðãv8Uê™.ÞÀ—äø.@4¤¡ÂJ?Æ–’¿ã<貞)—Wøà`·Ë•¡Ís+ë¢mŠÿÒ^m½qãVø=¿B`g"‘)µEb]t÷¡@‘íC ,œ‰í¸‰`&i6ÿ¾çFò’Æ´Ó¾$㉗s¾ó]"É ¯pI™¼^¹gOÊ•ç‹KQ.bGº—lùá”™Rpe°ŽŒœ µ5ˆ:Í/ (™×Ík$õ u^’oX¸#'î‘\ S È­D:ë;å‰3¨±r¬$*ž¥É´LÆV—…œÛ™ Øç`yZ…TçeÍ\@(ÃÒøŒù!Pc4¾s§Š×óÿ#³JgkÒ;6ƒ?áÀNú²QJxÏýœ~I„‹C:U*Ö‰ëhõ(,zJí3¥Î«Çxú¥‹ª6Ùn•à²ÞQ«Ö;}Z ±eÔ^¹ÈÄë…d·UW˜I&¼—a©™/ŠÁpªÔs¨|Œ»ŽÑØó‘¤Q ãÒŒ:¤?| ™…‘f!DÄ]£«ÉaUúa,]»™.RR@§™ïá„ž²¦>YSz+¬éÓZ€[·‚ÃÞ*C¿f{‘#1N@ vÏ3Þ™¼j6hë6§.¢wXz$¤iY"×¹qÈ”Úd´^·þáT} qYÞ‚ß;6÷ò: òtƒõ?DnB®# +Œ66ÚÅrÝŠdí¢—”Ô“·bŸ³ µ qhìšÑNF?9Ñ.Jl´ha~¶ŽÉ%¼øôý[yè X9rЗm`~Á±ðqqY¹!ÎâĬ7™øÊö¹¹<Û8ƒ? š«†°)h&º°Þ°# +«'ì°d~i„"ç›8O¾ãr½NU*vºþÐ(Ÿè„ð7džF%‡91Õ‚Àkiܵw …q(‡×ÎËG]’q:be/£Ÿˆc¬>¾UÑ/ÍkJT!ìž ïTÖ0yË@³y›²ß´¯*¨¦è+¤¬~nè´Hi“Ü’|"~¥‰· ŒR´|U­7ý„§} ˜k9A*É=I7ÜF\Ðâ‡û°ò]-‚Æ™¹ÒèAÕõ&‡Oµ¿šüÕ¾IFk§m«ôÓ0îŒ@G¥:²ì¸ðµãâÚü²t[˜¾®Úë´ó“œ…èv ¿F€o”>W™hʧœÜürrs)¹½Í2 VPeeñCás%=W¨’Û”¬çˆ¨ÔïU²ã ó˜hëìBàXPûøhò¢T¿M”}òNGŠPYϹ'O‰ËA"ˆìàî Ì +6cV³,®ft*,”)xˆÜÀGú6–>í„ü¬ŸG¡ÙôäÃwÍ¿f°%‰y4Ï¥Á>Ï$ÑŸžàÙên¬á9Û2ÀÇÉa +T¬ вyq¸ +z1mUÏA9Ýh=4ì,LBg>6±O¸Å#nö°ø.œ)œgȵ39¨z»‚*o”Ï_š˜´ë‹Ñï‘ÏkïBiu=’µŒ®ö&fÆhþe‚ÎRôPæJÏ&Ë5"=„“ñVÃÉéÐL+ŒçJ›n"IM³ ~':Dû¨¦ù¬ ó55&È>| ó݃ĊeŠ~RYh¾]T„s¼ |sŽC O¾ZCNÞÿŽq®F·Ö/Êù"N©PÇfæ€Ì Ma$§C=˜I_ÓPµ•ôøÂâ‡ûpš²àÁȬÍËZ ._¡dm§\¶òœcðœ=~0ÔúLæIÚ–æ#?ý†|×4?‹r|’G@ÓÊlû¿fE‚ë½`dšºõ]TÃiñÚŽä2z!ÏÖZ¤îˆõ'‹‡ ýþ‡ÚÎYçÀ]Øþí!+n_¼üÛ붹=¾xù³ù šÙ\ܼ˜¨¯S3x‡Ñ5‡ŒÀ.ÐÖ?µmkÿ|ñïš}'µoX3@¥XsìëÖôm~Ä_ó/ÑÑ%..ä "ª·|söJÄZ‘ ³K0@!‰Ê‹?Ú‹ë:½òÏ“£;Hœ`DW™–@HÞ¡@–@“Vt[Âp¿ }À§_ñxåŸ@S4U/áýò¼ÒHOXdBÈ-°åë&‘±0Âkd8xð +þÚ)…Ë}Cª³š4Ó°É¥ L7áÀøʹ— ï¥Ìnà±?V¢ÛwOD÷¸›ºp7ètzþt€{£¶VËFŒçËVcÜVb%¾c‰Uæ€Wû¿9ûò.%H‚Ôw 0m£Sf 9“c-âÝg‘1w`lö®õ¸˜l\DðYó±Q$'ëhuâ„ðLìùˆ=÷TìáÅLf¤^ÎãÌ)Ò<ò}æA Ëï±ü[ YR|”¥=$¯-ó)¶+|ò¬5r9iN±>oMå@ˆ¬¼·ÆfÐ:k6u¸ÎÓNø[N;ÝÀ؈o*vq–š6ÑÂГD±Àg[Ä Q˜Kp0žAº¢¨Ø=»©™A ؤ…ÃRsñ6Dåe¢½y'“qK_t'7/ÜÉÊ®Y­~'ïJ*F?ˆöD?œÛ¨€è>?¨!Éù©!ÀØEéK³|2:Æén) Ü6Ó·xô¬­eæyZA•…4QUÑÑF}E÷‰h+|Yá;S%Óm9u¨T@àë9ËJøñ¦û@m_é—®°“ L]qó-§´&+ùb!$>š/HYÜÂ6* øìÓ‚—íÕ>7äø!' Nå=ñ©ßç"¤¢šÂ‡cB&} £8òß+ +—$” 4fÕè‡í=\ìöÞŸ´÷ùšµÖgü{¯¶|s–òaD=tç€ãw£†/¹Œ½´æ‹žù ²]&üœêrî“é2„7Rmœý{9Àˆÿm…þ“D-¼ÏÛ”Lmèoš•ºIAW!²5ókÞkÑuáWV1r<KË +·{Ííêú^O©¾•ŒN-ÒǧZýé“}ŽÍÍ  çKVã¼Öâ/à\íøæì—u¬Ñheœv¡+MrÁxP@|¿aÌ|Á¿–­Ç­oWFÑÌ”|û•YÙ²ý–NviŒÙŒDÇ oÄØœLˆX#û‹òðŸá‡lÝ>­k8 3åú½\ß/]ßN§Áøîz{þ×Ô¾ +ŒÝo&¥5´¼û]ÊHâ‚­ä»Æ¶vg!R­õ4qƒ/Ï !à¹ÿ.Ót¹¹ÛWÁÙõ·2|p‰YªÁøÅ0W°ië%õb%¦G~_§æ³C¿ÑqÍÿ/{ÑW°ø=7”¾Ç÷¸í­È&} € CxuTÍ©z/ú{$ÀØ»îŠ&¹€ÞÍú68 1ﻬq뙨ؠ´¯¶ qëo}DÈ >òîG×#^ÕpÝ ºhç9ý.&é3½À^¥#«ˆ¥m™‘·ž)ÜIUCð°RUÇU¥Úe$²¹òÅ×|[ê¸Y2l÷O1ýÛ1tÚ1Œï‹ï|ªëøZ8E¸oØÃŽ2Ù†Q«NÏÛÑrWÍá¬Püzhø +hx¢i²ŽUCc|4zR‡YÁ&n2»~n?tûö@³VÓ÷)øõ²µžy!ü®KϘ ¡'xþèïsyã\zòJ¾ÿWò¸Î§…#Þß#ˆVOGÿ[êà±,Ó +endstream +endobj +143 0 obj +<< +/Filter /FlateDecode +/Length 5090 +>> +stream +H‰¼WÛnG}×Wô#𠧻§ç‚5 ¬­ÄðÂF²1‘<Ø ƒ¢.Q,J)Û«ýú­K_g†âØÁ. XCrº»ºêÔ9§–ßÝ__®7÷âéÓåObùzýp÷ù^<{öüô…8y¾:©DUjcáÿº6bwu²|ù¶Wû“åJ}¨„«Ë“ª¬T-VQ¸§¯¢)[XÿÚÒ +¥Li:Û mKkX³=YèN®þ8ùauòÃ8éO86¨p-lŸ^/ÜVâôîäŸ'ËŸ1¼×ëÛ+±¸¸-^>—Ë7/^ +Õt}ëò…!…Ýz +£JW¥ª¬­îʾïŒâiUUæYÇá“ú*9)lêo6Ø´«gnªòT ÿ#æXqŽWî>JñJ(Ó”Uc²ß-~–Æ–X¬e¡T©Äbw! [¶bq+µ*;±¸—dÀŠÅ5ËöÀiÕQ×°åÞø4bëG9Øí8»)SOÓÂR ‰XJ Ï5Qò†òTãxç„5MSQã´DÙ»—=“eË!!æؤC´ùµÁŽºÑEY9L/ èr‚ÑC‚™Ð °ÊE•)ÇN6¬@5Íï¥H¼‚W·«HöWÔqŒ³™%Á¶Ñ˜)Ÿ‰!’"öžFäCY”€Â{Ÿ£ÿ8Ù¨£Ž>[MŽ­®=„-4ŠOغÃÛt4²öÄ¥gÏDÎÝUM$EPøB?ŒYºŽï,¨ *–!……Æ>{[\œxë08ûstý iµlFžI,´_¤q L[4‰Pû‘2rwÏú™Ò3‘žÍͶ9“ä 1» ’°³RH°ƒÌdËÝJƒL’ÿ/xŒÉÈ^ÓqˆÙÓÙÔÓÍ…ÒpHÓ±„¾.`)gó ¤M…#µ665ž¼)c͆‰Â¤LöâÐ ‚Nqs5ˆŒ{¶b–û¿ÇFªÝ:–æ*élRàq‰¥» êú“‰œß‰Í–Èu ´OŽ¤¿éåH»Fü³“.£Õ 禓ʖ}3Î!ùãØNt³Ñäî³v4µáÑÏñr5'5µ]`ºdÝ;ËÑÒÌ™¼ÊÔ#H…ËãÏÀcmhÔãL±#‚S8À xHR¢¼ÜJOú˜Dèƒñk¦j½åÇÕ¦Œ¡ScMj6Î3Áг,ž `ºJUYý1ccU Ø\Ô4Ìê^%ös’sÖÅ8¤ñH– ”û¡fÇlp”™¬­Ãjx1ô¼¿iÜÊ À¥$ÔÃ{=…êŒá£Gó)‰óÈ.LËþ‘»!õÁê'hÀZßï̓ݛ‰cTæ£qZݶ‰EŸGæ·G.8p^ábÝ@Íiˆ ÃÌD§urw¹x´ï³9Ôfë¶dÅE t2®áEäp:ÎçŽÅÁ"‰å«äL‡ ëmšû‰hÓL±GJ¥7· AzM&½x®÷LnXš‹ cÂö‡@јÄ[&½t™Ä$Ù=/—_áJD¨ÊöÌ뢴 ûšßÒ y=Œ\ËL ØV:Él+Ý$O®ÑùzÜ[e£ Á«öEœ$¼NðÙOŒ]wüÅ-3W3Á\ΩÏMd›Üw¹Rà®buÉStßF¸È0Všò¡c> x¼¾³5ç£Á8-ž®hJhá³XÀÐÐh.%Yý5 ÜuXÅ+ÈäÞí|:ï±ãHyjÌƽCÇõÝíÜkuÙµVߪrR‡æ#š¦S|tîÃÀÓÉií +öΧ}¦É¾­®1¤sãa3UÍ\â~uÅRåcŒ´å4ˆcÉ}¡¨z÷Q_&3Ð8‡=‹ŽC’M¼jïF,Ú,Kg8„c®ù¯Õ¨²L¡Ž)môw[H}—X!­s]¤`{줹êH¹Sƒi +—EʵwŒ½†è¸À=^uKÖø ‰æ!tÎ×mœ Æó†ÑÙ¾l HsG˜nÉß\ŵ*3…Š;sIƒ¶»†'#rlëôÇU?[x¬+¼If¡ãÖ‹À;XjëæEøùJ„ÓþBGPL>‡8žQÏõYS|dMr0dp“du}dÀ}Ù#Æ&0”Ø.<¤ü*®)^!ÿÐÍ¿¦×&¥½·ÁÂ’£½NãHØ\&ÙÀS#gî˜Tê ²Š;:ØŠ‘ûjît°¼ƒËšè¥ð%´Ø!Òœrý˜~2‰¹°Ñp¡)QpcÌ4ÏœÀÿÒ^.ËqÛ@ý.…*BÉY:ÖÆ‹¤Rv²ÓJcÉJ";±\Šì|}РZp•²ÕhÛ÷žNëÐŽd‚4×[øE‹†£è¨e7uŠkê€&­«^h²¶TíqOµÁ¹Ö¤ZÁ%²t] ÀC–49kñÓuÝüþDJInÈŒ]Œpu`ç»Ooáól ÉýR%ÓÕõsØIIuEF,âÔEFÜ$£Ns›[`GÎ|+½ssVw‰3G¢‡H¬–öžÞlñ`Q9ìá ⛟'Y3spõÚ¥@s˜%ÕÞûÅ6çb›—±Ùã¤Æ€Ðó@’ØEŸ r~Rúï1 ïS73Œ§!&Ú:~Ü6Šÿò­'‡°o´7æ0t¾ŒËUbm™&t…ö¸:6Ü®k¾ˆ)ÿ¤ÀK÷ºÇK @(ÑhÈöâC§ÓA†§ˆNÝøŽàÔšéÎ¥Ng÷¹®ÙL!& aÔ‘7\ží$e£k¾²o¦æìZr cÔpviÌl‰ß’U&>J ©º3š%yщ FyÞtÔIHj”‘pg+Ÿ 5o+åDÖ”†½÷Õ%D~Çÿ#ÏŒ¯|ŽaCÇÀ?ï6,[(pÛQàf¡¿—pª›†Ùi&kH-72ÈxÚc«c³ûÇÌ»Ìp–iÄã…JE–h|0**®LšEL^ ~…î7Ž¬ò +Jýšñâ‡`£Ó}Ðc4¥±Þc°« X.¿°Â÷zŠÑÀ=N~®›H0"üx‹Î·5œ¯F6t씌¥¿J…ãÎîÔë˜sµvzç\7«…[z Óíª§ÛÅhp’I5N*»ÀUìta×sP\éö=Mê³&|‰Ë ªÓârPp@øÈžwÇØ2 ˆƒ„8Њn=ÂY I_'Sæ–ÓðJOjR@<ŸóQ,ˆeï!£'~¤ !Q¹–±… Ô-Äèâ³~©² £4Y’»ÈÇ°!}˜ àjWšü¬ØË•™\1=¹L©­y¬21uª˜\ácá¢\¶‰¼§"æNù,¹Ç/{P:…Ã:5m5ƒ££åJ ¬{hðæD°‘ñH L®,kQªÆ#ªÄgØÇ–›³Z¶·|ú(ž:Ñ%+½,ò^&+ô~¹ÁÍñØ‘E +zŸ Õ<9Cu2«WŒß  ß9I-űÂwüÑ­½Ui/Ü÷8î!îpM·kæ!†Î?ø”èKVS]Ãýq vù¾óŒÆӜ攡4^ÈDÚÔÇ+À«¹ûN§©_’]Ì}¹*É—†šK˜‡ÉóõÉ uÇœÌRÛo ®{y%û7¤ËKkí’”î‚<°B!ºÂþâì¾éÙVˆlWc€¥IcÕô“¦©icƒŠÓGò´á”°(bå~_ddè锕܅EÜpæXá3DÓ +og»©'.Ÿe皌V²©…PO܆X÷@MÒží®"9S¢r…Œ”{«T_¾¥‚õ~„Å/ÏŒwðJÓªž^ÃVÃ.x« Áðº7¸ZøâíàÃݞÿÂC³ ÷5É{tÜÇXQO˜I9_A fÕy´{•z¶p@Bø‘³®5ÅZ¥_€7üïòo0†™ mÎÇÖ§"á'0§y–uûуÅ’<»4fFú8Ï*øŸ²~CV +endstream +endobj +144 0 obj +<< +/Filter /FlateDecode +/Length 6100 +>> +stream +H‰´WÛnÜÈ}×Wôã0)ö…MY,°¾Äp°N6» +ò.#ÙkKòŽ$ Êקn}#9½ëÀ€gÔCvwU:çÔá»Ûçǧ·ê»ïÿ¦<~¸¾»Ußÿüå uðüè Umclÿ;gÕîâàðõ/­º¸98<Òÿi•VGçmÓjørªjùv¯|ÓÃ;ð¯o:åFÛŒÆeº¦ë<â%u¸¤æKâÝZC‡ð—{¥ÛfàWŒº¦µ£S½àç~Ä;þkã«Ú@›¦ªußXµ`AmÔ‹Ê©Íq¥ÕæfË+o«Ú5¯hù–»~¸„7q‡ð÷Uåx÷¶ú÷Ñ_bôħ³øŽBÆËlC ½D¢S$Ú4vl=Gòîá¨õ¨6ç•Öx‘küÔfËþ~‰hŒÎxŒøâk1²•0’ëÊáú•:‡WèM‡]WcÓÃëê—ñ…÷*œ´Ug'o{‰[С8³q_8Ym>… | \ÃÊ1ùfz“Nnâ²›\W=î÷¹¢‹n+zm‡‘ù5¼ÛTnÀ¯»m!\p\xzþ72Ùëw>ƒ/CñàˆŸð·Áõg +¯®,K'eé¥,_SÊélqƒô†RrÎÖâÏdø#À䵌<`熱ñ¦âá@7½ÆØ!Bµöd[tv8u(O `÷ãÐèxè 6¤ëÏÔT×Ú34à‡^²·áüw¸ÂžPÇ„_^røÌ™ú\4;†º¦âtX¾ó”à°£Ëv¬¨Ñž)8Ü2Ž<^ @>"³ô?ßUUG?S7Ð7=¶¶xév§ +~ªL‹w:Ù*‹â¸hhj;“Õª,ÃŽ?5QbFì+Ö•TTÐOëGSÀkSçÞæ‘}ÝÖê=Ðõ ­º Œ‰¨Zî`¢þmAa]$0—i5¥ˆ„.ðcS…™Qù¥ž¸}Nq¸=Þǧr~A"áúUZðлcZG|©Oâ:¶íü¥²šq)Ú‘<ÎA 'ª’xsÖß´ !¬Ô¸W±ØZä]øT²›Ÿ±3 "ÙR4¤v6Z¶‘ vzQ´ÇóÈV‚¢k'6²íÃ$ÖÏà‘étf$¯±ÈÔéï·ÈR<³ôë e§§†Ž÷®ì4ºíz;9ü‹pJ*>|±2­ˆÏžKèKèÜéG,’§»J›’8&¬«ñäõäµ49ÌjžydFqœ%úe°=qP0´†Š(nxÈgHÙ*%ÜZG/L+>¢Þ`€£˜Ëæ¯õ3©<,ü¢leFöÚl°:¾x»9f?5G°B1Óc}‹QÚÌâffi Óa/€j2CHuRgªW•¥(fÐü$‰½;~Ìo9©%ø\åÖŽ²§~ª:¶W‡Lr3j¿-pX÷aªÿ»6ÕvJ~Ò mßôÚwÊC·$;?¿?ÛÄÓØž™Û¦nbW¹<ÇÏm¿…禢Žbd97<ÞÍ| t.Û#¾ÛÉ6y݉qÉœw>–}æc’¸@¢Ä†wøöƒŠóëû§\<ÑÒ³Pdƒ×•ŒX¬?_Dw2ÝkYE§ gu§º |ŒÝ+/˜ªdªOª1ã¤l³$¬PåZ³ø&Žê“òÆ©ü]8ìd:áMÑ&<– ±>'è>é·á¥èÃÿ¼fDQ0O‰W„ Ã.ÅÖU’!uSÈÃÍѤ:Ë€]‚ÍÛWðä•çÁü°­G7q¦ËLÞ .3¥pÝ$W±W‚›‘÷œv“0·4RØÔoî #ÊœØfNõqfViÜU3™%º0t⧉•Œ¯‰®þ™î&"Æ^»æë¼WKþ•*ô±²GËö3fŽíO;wš¥a 3?ÇÏ nvÍø™²9~B+݃¾Í\cê¾BsU`bíìRí?K×”ZÐcä…c†LTýQyÍ’œñÿog•c½Œ &Š9ÎüëBóžÆy*“Yô{(¯ŸPÞX‘˨«ÚŠ©¢¶…1¶é"Ì$£'Tx¶¯ÑQF[ Ž~&Þ~˜á£ó™K¼CÄŽØ‚¢ßbùŽK$1¤Ÿ÷‰öŠdÉ|ÐæKØ›6ñd®‰ãE™t_ÊV¸‹hæüÎÌn·Ñq„}|}–úé'ÓéAöYB1³`œˆ=;¤ šrxíƒqšÙçR+y×lH¡ ï䔌"ùÁØ%ñ¶Á¬šfÃw8¯’,Ÿ3[´¡Ãþù¥k¡é,ؤšUýºfãqêÖÝ^t:3ëIj(O‘¹='¢‚ŠyÑ¡@Ÿ¤÷•íJ1¦§Îæbùû*íh ÎŒè„ÎÐ׉yªù äÀ·–H|;ñ'zO2Á‘$ãšÍŠ8âª#æ³È + ±Eë“5Ÿ²3Ys*ÒˆEÊ’²­hÌšù±„ÛÌ0ºß}{]$±^N"ªDLâ.ÃgAª<É‘àV¥A…:3·À )-ÿ_qÄÍ}Aè©â+SföÓƒ|ìó<_›z=x»’Ü8f¶)ægkBKjB&ƒ…_h€ÄšÙ¤†"°ÊdÈ+°àpýƒé¿¤MmÞ'^öûqìJ2ð{¦_tN¥¬_EóuiHxDP1³d–ó–‚&¶¦¤|\0†;錥B‡Ä*³¸ÁºÙKÂd;FµÉ,'¿ÖìÃ!Ø÷1'…éÝ7ŸìcÌÉÓk¦i‹¨óObŒ8§¸[Š‘gM.Sþ¢¤(‚ü{¤\ž½óŠ¥0ˆ­L¦_Ay&WÓÅÔH›=S–«ÒçnB2lÈ}Ý«è«UÌzîø4û€þ °T¼Y7¿ÇCzwNé +‹h¹r¸p%!…ž–ˆ»÷k˜ûc—J‘eku)¦ÆnqÎd*Š¾·'ßkJ–ÑÔ/úA]ˆ»®jËCªL ˜iø»öT’u7y?d æ‘Ÿ¾V]½¨«ý&£çº¡,âN YirÉ!E†Èû™Šü“9;ÑRMžølŽVÊ)ÅL÷ÝeÜ:ö¥gmÝ> €ƒJ +ía$ ¶í¥?!ĺÝã2,9‚€™K¯r=ºÂ6÷Xct¼m᧾.£¢Y¶•Z‹ )Ü¥8‡8EƱb2Ìî3§³¬ª; +ÆäÍ‘ð¸ Úk‹?ñÚ  ËÅÇ©6ÿ< „+ΛÒ1Ž +—Ñ5ã6ó+ôw]qÍvO>så»Ôκ-Ý€|ÁQ,e•’èƒfRypt©9í$¸¶ óQvâðÀ _bê>ÛÌ IHÔ± +†+!Æ”®A¥ù0Ú%¶@áTø2±Ó¢ÃðÁx˜‡»õø0%>Ú~ì²]É Í½üK¹ô·4êêݦrÃÄèÀÔdŒ”¬k=q=Ê’=ŽÊ®/² B<â>ä’@ôŒÛúä{g€²ÔÂ¥" +E½s#?ôEÙ"íÕ>W‹«yÊX8OÙä³A®§Q†ñæ» +¿ôÈoÈü˜` +[[beÜø’¬i/Ú?¨Ùäx#]üL¦¡ì÷¹þy¶ÛvÁċ8:RÁ§gÄŒ}(§Íò,æ2¨4¥,ï³EÏí‚šº|+ç ‚ôh‡¶9>:–¸ (":¼ã jâÀþ6ïC G5™3û……T +#^+&^æ—º *z0`ÿc½Zšã¶‘ð=¿G³*#’Ǭ½µë«íÊ)U)Éz8Žä(£•½Ê¯ú4@P¢ì\4£Ý_ŽŸ)uâ7h.ŠT_áºÇŽ˜s'ý¶—öËÕm +øíõÒS>Ç-œ¬òÒªSše˜ÌáP ¢2¡G‘=SäDZpC¬|Š œdZ88±Õ1Ç ä/-.ªà§ÌÔíÜT kpš*l¶ŠÝ3ñI5ëVü¬ÙSœ4ù€LjR8ð¥a>¥Vra=2c# ~èf**g†ÚΗûòôT§ÞÍ’¡r\P'å¶×2šƒPRÅÚ.7¬Ñu*€† o‹\š–µý‘£ìµaŠUæoßüø-p¬l|ÒбÖаKC…m«ß;GÆM%2G‰ì,W~û»Å>#ÔáX<ìFÏ´Mq :Þµ¼z><ƒnìó³{MSËÆ>>ç4Ä àÌ@:øÜ5þûIi± +ZoÖ{=²®Td™u"‚$€ˆÄÀ@N8 þ‰m‡-ÂW=!8î <`{¢¶½M˜Ëžç²¶ŸN&Fãâ-²+ŽÄ9Á>—q2)pÜv {ŒQÑ8¦—ì<ØÏÄAK˲æë€RZj1ŠæK«òÔàºÄ ¾3ʶ1Ǭ¸úAϲ½(2U‡à¨HJ ‹ˆÄcün÷°ÁùGóŠ©J4ò@Ï´&‚%€¯¸«æúµ›Ü‰œE!çyj‹þ#†³I~˹èð”—]( ""DÇ$¢ó®sxë‡yŒ>äÜ@hŠ?Ó #¬ý +¾¿E–Šoâ¯m‘~ÊÂßþQ\íÁ}PéÒn]& ðÜså¹Am ö+d›m–Pu³§øj´o: Œ¡J„2îž`Úˆ™O€Êl¯XóÊ3Ät'€æ¾¤»…Ÿ¾WN”aýÿÎãXd6ad-œksßDáv¾d¬§{aHj:Œ[É™0HDë +lŽ¸p5¯CgÊ8eƒ7è’³Yt8É´©Õ?úïì.äÖ ¤¶ú× 1ƒñŽm6&ç®};–µvîÉþžu󉄹YÅnÐØ4‘…š æ <ç)˜/\sí†Ij¯Su'ò}µhg‘ЀJ¬¬Täâ‘Š=g˜y”Ç-ÿïm$±Å¹¸íÍÙ…2ÉEÐéû+ !,D0>¢)ƒvãh¨pd7p4 Ê€¶{7+3•ÛEÂQ¼FoUÂ$U1@…µ)‚'²²EŽûp,uäBû¾¶ÜÂÐ5Ëf/ìüvBÍ—\å· æ2Ú«IÒ&kñ{çˆe²ÏK÷H¥ÿ aËyžÙÃëi7;b±0k›Ÿ x²Õˆ$3+œ›äýIÅz™‘=þrbÍžr <ƒC#iæ›aÏÜ9œb›NÔyFAiÏA‘JRk¶ yg‚,ŠÔŒ½èKô n=âlöªÇ<›¯:1i“Yö¹‘c’üÀ½ŽŠ 6  !þ g‚ø ˆOä¸Øß±rÒý^Hu>^Ü$¯E'M°1ù¬¼~Ù,˜lšÄåÂv3|ŸŠ/×Рl®Y\Yl^(m¢g'£†—Ò?ÛÈC{Ñ4º6kä¶y e'P†°ºÈÉX“DÄ“µ;…_MYhŸ¬Ò-JX‹NX¶—_Ô»T…±½êk„œ½Å™J|Y ÛO'“ £z«\æ`×xÚWp(W˜½ à™DpT¾Þƒ¶„saz°š¼Û§g¨Šb6™öìŠ(#üÑÆæcKý‘ââµfŽ´ÿ0ßA;’ï¨ÕõZ’[stEÇä7c`&2(’yâß?É‹ÝÃ7£ºÑ–Û=-óö´Œ“‹ì¬ÁðÂtï?íYxi"-R@¨§ÑÎAÒd]2Ç!bÇlš¨dh"ã×1CµzMC;-k̲C<ßg[–1óîãYp[źvûelhOì?ÁÒ=<#-yçD˜c…>ζ»Õ§D"o¦Û ?î¡Øã\vÛõTÙ¡”BOÐÄ”pISšzDçͥߕ­VŸKâÝæ¥_YãÍ/q¦í8€{q؇çŪµ#åõý`Þ0üf ÙÓ ü Ãtï”.Cy1Ø×ÚwGµ +S½«DÛ£à K ^iÖÁŠóÞ ‚Š<,{ÖTW Õ®òS1=ôý3á¶^¨vW¡o4 ñdp®4H …q7ó[ÀqBáÚÅc!äàuh˜¢+'ù@@EõðfÀ%ïK=ÔìnQj:7Á£‡îàü\Kc…íöâÈí`{ Ÿ½l¿”ÐŽsÛxÅ/ +K…¾‡B£ÝFËp+®Kâ¦ibŽÄ4÷ q´W£PgP”¤â }pb^±Îd‰OÉ"?4Eþ‰ÆøÉV&Mд +xëTbD“Xp䀨ü8Ê2›y‚0ú Ïgó3ùå·HåPH¥§5³½ +—ŒÓ»5Ñï츰 +T»Ê :Û Àz¯’B'N-8˜¨çÊ¢ˆ…Ÿ™«2Ý@<°°sPÑs]F3Ì—<š\Ê©ùšù²’ùjÄ>u"',`· ’ Ÿ)±±òàÙ=¥»i©IAGGð›l»ŒÔ¥ˆ”×dj>EÓ±/„¢$쀛rw²Ga#™G.ð Í@({QX¦¦¾7À'#‡¦ÔÛŽ£ž'q®HÖQ@"º‰´c‰5ˆëãƒKS­”|W‚ÌÀù’³Ú¬-bbÆ á>¢ˆ­1•ê→²jÞ¼d\$¾7ÿÆgÞÀFñ?Ç)C‘Œþ9`±~‚Yð |} EóGyÑN—é›9Éä‡i_‘Y ³üzìå„ç:Pçz“XÏ66϶Ks‰%7m`)Â#‡"¼ðŒÛ:}݆õÀëy}=…ø¥ë<’Ö TÂbÍ-å¶Mµ7 M)ÑM¡‰wTÈ +¡ˆ¹KC¦("™­”»ÆL©\I sWÖÆÛÓ“Í åŒØ攉բ«•Â±&'ÿV»ÃýhDÕ…¯C¦ª²ú»H.U4±[üŠ™0u…^ø.sVqDð&ó‰‘(ñ[ö2ìpØr¯}âÅ" ÔjqÓ–"MF +ÔìXr»×þ ½ÌÂO-/“5qmZóø5±*gJŒZ¿ÉÅaÍU +é)YõÍl"æüâðúß‚˜¹ï [ÙÏñ¯÷ί~xùŸw½¹ºûáå{ûë`¢1ºL¨ŠÁ¡]ÂLè +ÆõqÚlŒz#$G+ŒsâÂjB6}i¼|xÀ¼ïú'0-úozEí¦ð…ýGg≠p‡˜­0B< f¢fßÀOi‰ÀUá%q%>Î?u#mŽÿ"«PȃAH|èàïþ× ‘#=y1¿úw^¨±o€ ôìÜœ±¿ ¸»9V5§]i¿ÄH¥…?ƒ\ðÄ3¡”’ÂÒ5³õ5ä¾^€¡Ô ^ }…<7¹¤88çFŠNK}`àJ ŽáRv¢J,¼ŽœÕ¥KÏGñÂáæ—·æ6=À–¼â㻑/ŠÿÞ°jçÖÒužYþ¡bÓh×÷Ñö¹mìûiÉØ?É&±È" ©$=µ +8Õ‚Ñ8€4åáþ`€I Ü +endstream +endobj +145 0 obj +<< +/Filter /FlateDecode +/Length 5735 +>> +stream +H‰´WÛn¹}Ÿ¯àãp·šd³/Ã@lï¼Çž<9ÁB–F—Õ53’µÊק.¼vOZÞ Œz¦Éb±êÔ©SÝÜŸ݉—/þ.>>ÞÜ߉W¯^¿}#¯W‹JT¥6>ëÚˆÍéâàÝçJœn+õk%”X,ª²ªz±:…{zMÙÂøkK+”2¥él'´-­m`ÏÕbi*¹úmñãjñãÏpÒà 0Pá^0ß>ütU‰·7‹,>¢{¯OÅr}]¼{-~~óþ­P]er_ºtN*vrå}$óeÕNʼÓtè™T´ùŽ€MWbÍ•ñ»¬éÌ‚àoŽdÇÃë¾Â¾ Ö}iøúœõˆÊ·mÓ»y`lbµDœYÂY…( +Áܸc.Ñ*ÄôQàŠ&;OY .ÆÀ¸v„y:ôo±cÿàR”Í€Ajôh&|lF]r,¸^+ÛdÈ°&Œ¹Çp“.áë*+(š¾·ŒÊëXUxë£Μ̤6xëRü$Ý}……¬’À_:¤­wCSåÐlÐ4 M»š[IV"ú”ÎÀþ‹_3—sÉ[B6 çXª–ê$eQˆR¯‹~!œåÚ]õ bFÁÐ °â\ÕÚ“«MÃA~^úc.x;˜iÝM`Ý&¯f,´¿\ŠHnáL¬¶s°šài6V»‡š)m:yàÐ$—ýñJ‘̃ØÝšÝ8ío1Ÿ°ø-4àVqdÂ%…¢Fšfœ«„+†ˆŒ¶­s„¦\7µX=¯¥&ð=BJ¹ûa4CLÕiïv(ñtáS¸ä×Lì…žêlÌåMÒÆp¼‚¸ðX{Â.’>¹HZv:|÷}Á«]ðôÞn0¬}ÎÚNAªÕ¥ + +RA’–‘H7¡Ñœúã>`ðAeZk‹ÛmGV¬°|ÉVg…ƒ•ãš ò Û§•ïpÄNGö¡€æü£sþÙÇ>›¸p t÷©H:¨aïb‹áœ‹HµìÊ¿ë´Ýä-À‡Ò²ÉTÆàš ~Å$ÛÒÊõöŒkãU`Ñ£ì Œ¥ ä{Y´xÒ‰ûžè‘™ TÕ”í(m›Ì!{tß9=6×}ݩˈ”š²÷B„ËÎî¨`7"«Ú—e+2bǹæíG9‹ä"‚ @S,O Ãÿ]Æ%·²f{ˆ¸Á!È4Úˆä¬~Œ””ÞǵÅñØ ‚¸r¤{Ãê8Kv9ºò]`ó2°;Æ´¹QÓ]6â£6É,1"¬“Tàh΋#…íRîˆÅL&uR®ŸF‡jˆû€ßİ߉84ÈfÜcC£˜bXǯv?¿z):7¼: /`ÃXø¬k#6§‹ƒwŸ+qº]Àí(äM ¹E2°¨L0ä-\¹crø„‰&`·¥ñÈp [áÃßÐ –Š+ƒ1¹áª%±ÿ´ºçj'ŠÆ»ÖÍ'–¿kR™ÞteMäyBáo\›jüTd¼k*µa<@xÃÐhœªx˜" JW‹&‚[¾ jÜš©¨pØäznºLž.LŠ¸À<)Ìph[OÔˆmÛ²«”KØ'§Æ]3ÉÔþ@‡ëzÅF) +z Xåâ¡üßJúðU†¶â˜Ú©Rg2Å·+ààçµ'»«õºB¹Ì¸ùÐäs¬ccß\}GŒäQE‰ñÜù)0GJÙ“0ÑŽ‡»„÷]³É SXj ,ø6ëÂC–)t•è1?%’‰ØQk'Áéò·I¤(Öæ9ýÉNõ§]@ê‘ÌÞKC6ïDÈ™¢(s±ÒÀû1Òd!L9éø»¬i*íMj'W~à:œ Ò„Ô,VnY$¦Ú‘«B±ÆhÓÙˆ±CÄh‚ ÖQ׬j¢ÊÜ`³NÆžê&ŸðBA…Šb©áàñ\y>äN=ûÊ|HÒâ#ë°ê²­wxåwÝ7ŒæÚÕ¿›sFÅzy®g6 ©}¾¥<ÛÏ¢¡i¦ ðL.áçZCÔ—+“>¾«¡ˆ˜sNF=“`sTïL45ÓZÏln]›¡h)äê·9†Û|Ðhº)b3Е+‡Ðë Ð}¸üeíd%|çE`PèL{ ƒÈ14c{` +Ï~<Ùzp9DÉÚw¼Î‰XÒúw®¶4„¼ÀHëÝê—ˆr‡7 ÁÇÈ}›µHF›|²0‹îù“²±:Üf¬:¼Ï/íD‹{‚´™mR]3×ívce›@Õóp×ç¸k›)ÜÁý«@ß!÷AÏÕ5g'Ôœ©¹]‘Ó¬ +pyZ8¥T(pàõÑDÊsè%7Eñ5–&^‰:P· _’a0#ý|“¨+p¿¡ˆo˜C ò€p#— àã˜Íÿ‰IˆJÞZ'…}Õ$Âþ¹ÝaÔŸ0[íîl51[’ûP»Ôº×ø+9ùEj³žBþ€2È3&m“ŽÂ˜÷4úB€>Ò˜ØY<®;dFrè!F>á*;OuÑz¤Ýš¥‡“ÊMžX®”öHúzÄ©B·áFZ\ ¨HÌ®1œT)ål訜v¦S÷:‘ñïý¸{-®|3I28œŸ¨Nd½q´ zVða` ¬Ä ‚µƒ›}‡ÚQr)}é?L_;!ù$}]¡ åØB![UàÉ#D†v´žŽz~#ýÓ©¿¤BÎärñc(ºÆIY/Lœ<àh=8:NeÅêHîi7†Ú.õX§xâ­´ž$)_ªan4Ê‹Yç)ô¯š#Cù®éë¿´Ö²¯X6Q≦(mÛµkøDC̱[‚cFóÇ.Òiš@¦(² f˜½9 ¥„ãg‡ÅäòàHBìPCš„¥uS£LpY1Ψú´} +Nô$Ë)ý€z&b~ “)7@>6œØ$‡ôëUx¨ÀÈ8\^Ö·Y’w—‚fV<í°xžêý­Î嬀´+ ~5ÒkšRúÝǪŜ‘ÕmA=[óWÀÿ,_Ïf/-Va©\ãHëTì8ú¬v7®5¡rÇ¡XŠt ]>Ï/l!–u°"Œï©²"m¸q4wp%%Eh‰aü¡BÎ|¨ZAº:AÚ\û¨Þš°çú&Œ•ï”ûïzJ{“Óº[-!Moª½¯ºÉgvﮂŒïçÑîì 2zuêÐÌÌMGŸ‘ŒÌü +;TXÀ±ÜIñJÁÝírºvíZgÈ%GýË/ÈIâ%åÀèO3ù‹ºêÐѳ:£dÕà/½-ÎVQ»bLuñd:o ©G€;íÞPÑœ­ùÌ[èš.s?÷Ãõ(|ŸîÒ9èòðÒt«âH4ŠcÄèþ§¡bj7èéQfŸJ9çi#š8DþέšÐ_šÇ›{Œ´Ìä<{îO8÷.wîín­jõX'*È”•L{ù¯ +Cz’C\Fëz®DnÂM2Žü£Ä™ú´áüUn÷¤£ýˆg0šsöpÚϼ—b·AíljĢÕⶵ«Áí²·}W\·‰·û•ÄS÷}"\‘u¡Î1ŘLtì^×5%­,‘‘ÉHšÔ5AÂ.ª½ƒ¹äŒi×\…F… +ß'îdRûisïÇEà©zˆøõ±Î1-ü¢_¥€èòÕPœ:‘nº/DýÛhÍ“èÕ¥ªC\Åü¨l—Ñ£^å”ÝyÐeι ÓçÐM­Ó&§½æ,@…{Z"ì@•‰7•äâ…¹†ùDºåƒ0v ©@ žÄ +½#pÝ(™tžL:~°%®>…H1þrW_»n äêÇÄÕ{l¤Å©¬ ª¹Tïá7ðE°ýÐ6cb&XÂëÂhÖE³HÜÄ%ÎÕ0jŸ£¸0+–Ì©w¨_cÉ°'L¸¬ïÍð~ŠÃxº÷oì4“˜ƒ³Y…¢? ^?ØòrÖJP—£ucÎzí¸†:òòý’ÝþÓ]HÃáøº(µÀ¾#ærŸ‰¸Á€$<Ä& ôg•ÉlÎdf6«‰+*xF¦ Ýh˜OEV™”›@ä+Ž°›9Â658©‹QNöƒ_†:·›øµUpð18"-ÄÎœI‚>áœq¥‡ ]|Ëé(ÔbVÏYŒ’š+q€–ó‚Ú‰ 6S9}‘Æ_ÖØTTÞoä µVi!´e…Í„Á˜ó°ßOC’YŒóÈ'ÇNÁÓeI}‰~¦=Q%æ$2"¨~·HÿwýÐgèykÊxË¥l ‘dzc‚ø•§›nüëÕò«¥ÊoP¥>™Vm–¥’>±Œë.6å£>‘ÉP—F!­=<òAâÈ XT{¯Õôz¿ùð·xõ,EºíèoÛZs>¼yÿ÷O;søþæýçú7ª‡ùüõ aeG^ôó•Ñ¨ ìñP3gHÚІ¦§ýƒ’}yûÁ/]™ÃÍ%)b¢ÕX><[(úÔüãµ­^å”`g…—ù‰‡ð@Ï%;a<Ƈ³:Ç£‚=¯^Çßò.b°Ä^Fã‚^ 2BË{}8yî=>@¶Gee9£îHÿµ$%ù±ä!¾N[بIT¡úÏj?Ô’ÆeÅ_×îÉúibA“}W[ÜfÝà¤ÅT%¾Ö“Tô5E¸€ß=VV9Pãý ¹!”þõýõ¾1µg§ËÛ +Îðžxžúû9Me2hþµþÛ‰>ÁZÝ>ë:·•úJäK>'¼Èðñʟ葱Z ¤øý™7lã†W:o{YƒvõkP=£«‘Aíùóïtò†¶âì ‹–¶Ýý¼í¾¶á®k?žuàXððrU ún¤è{6Ì¿Ç`÷u¬ê-Ôпֹy_¹Zov…ϦËR)šQ¨ ëÕ++]U\0$±ÕÕ¼WÀHÃÙé×RRšþNM·ŸÀÏ<â + l~i‰Ó¬”v ¹¾É*»®)“U‡WÏÓLè_€¬ +*¯ÃÓ±iÿ6V®_iåP¸Ó7Ûû]±|;É(¨¿D”!~~س ©!]‚å§ÿ`«²‡Í +endstream +endobj +146 0 obj +<< +/Filter /FlateDecode +/Length 5983 +>> +stream +H‰¬Wko·ý®_ÁZÀwµ$—û‚uœ)œ6mõ­)Š+YÇzE«þ÷Éá>¤Sð½Ú»$‡3gÎ9sô§ûÇçûÓGóÍ7G3Gï÷_nŸÍ·ß¾}÷9x{|И¦v>ÀÿmëÍýÅÁÑÿlÌÅÃÁѱýOc¬9>?Ø5uã:s|jä˳éêÖÀ¿¾¦ÛÚö¶7.Ô!t°æúàÐÛêø׃ï¾ÿ Nú Âõ¸¶Ç¿Þýùº1ïnþ~pô3†÷~saÏnv?¼­Ž~úîÇwÆÝXÆj0¤O¤AZ2ïo›zà7BÝø±5½jÛŽ=†ö¯Ã¾² ¾tXW½­½9´æ»ª3‡û +¾?\Vÿ>þKŠ|=¶¾Q±K¶ GÞS–£°9 +ëêàç(Ž«….«®aïÊÕÎÞŸ™=<·µ¥ï×ծůøl€TÞTÞÖ½9übNΪ]À¯7°Á€ÜàœwýX¹oöXíF|ü`ª¦¦+î:\ô€ó§Åç·òüÞÇÕ;ÊÏ>íÒâKp"ù7ƒ`ž)Ò®8 „—æ1F|)ᙻʆº…kÁfOtøL›:JG1ñçÇŠw¸…°ù¹Å`ɹ¹—tÁØ¥Å$ìà·@ +˜±˜Oxî0"ˆÇ5|Ìd×"%ßÅxøŽ(—¾(¼`1it£3“Ã19R_³VVC¾nºnLÝ8Ô>é¼â$ÞâgÏ÷†?¯UÎNSQã}é㲂èjó×Êy.KGé21?°Ñˆ¸ªœÅ«}áz‡…ÛB…à›»Àê‚'¡6‚ØÑß”c‹xÞÏ7*ÛcŒ°‰çµŽ*=¦€Bk ¬"gM Â…÷äÄ3ÎG¾èMìV%u„ î¡B¢1‡oÌI5à‹O•ké^ ±N¹¸YCÄ\‘±¯z,È $:]銺Ä ¤=bU+*Ð-dÕÑg¢“;AoαðzSj„€Ih_Öã!׳CQã±ì#"º+“[L*¸£ŽºKQ¥J8[,½g,Pþ]ð ÎîmÄžyµ—€þy³q-M3”‰¨y r™!PõTl…|«Ì1‘'ÌîòffìN̽¾Æ-pCÓ®€ÄáN+ò ·¼µí +Þ: †„·SéÜÅÎÆdš\6[ªYB)Ýã‚k‹7V.9ËV v¥×r+ƽk­2îÄâÙðŠ–š–mN2Ñ8'Æ[35w@”[6¸çe4`SmÃàMîÖwˆÊ7ÅhŽá9;î™m/ÚËOÛ«+Û+ÌšëÙç„Œx,!yž®çé%G*¼°>ý VØÙ,ÁC‰ËUF˸”û§+g´±+ºAȨV.K\8vQò×=û¨dù€Úúç*0Eûåð=•pôŽpY"ìˆøùbÝñO.$vá¿UKž²6ÄŽ\2[rÁátö—;V~|W5ÚŒ øeòòØÄ´+«Ö´d=e7%4lÍÛkG nåy¯bÂâ7"xÜ‚`…²­šÁaMÜqTHÎÅI{Vˆ™2U®QÒà"Ÿj§n)ý>RWä o/U¾KNêžQ—¸iÀúßUj½Âï–±€e†®<¹ÒL{Â|å…A’žŸT£r8u¸—íõ oäå¤æÊÉñd+/¼(ž:åjGR«^¶ÍdëËlŠaØÏÁ(²[FQ¨ŽÉ"*=È&€¶øÅ‘-~")¹GEY]' +•¼F)ë;Í(Þ/CU,†—ŽÙxR¸,Iiú(ÅU&üUîFád [Œ‚ÚüXíz<äÜìMäAe ÇUq*FÛ±~©z=9]‹ÐölFûºcvT#Or€¯¸J5FÈM¸­Þ”Z0(-ØŠ!7™3»¢¡Å9#³ +¼¶ +ø¾™­’J%fX9­¥q|³¶dv•ì¨£"nÿ%vü/ιõª›lW;þ¾‘Ž]2Û[\Vç1×üŒ¹õƒ 7^2›/ Üo†»9/=­¨äX[0F¶ ×ÑùøKéóZB½eÎÞ$_JÚ°£¾Q³‚.ò€%!gÛgÂT$eË# ²+âÜ]¶ÚzhJ7'’…p­¸ ±£Þä©g¹:.v°çñL”ب“(ã×B +€“–‘¤F—´Pm“ôörµòäôb"s¥°Œ¥«tçä¢bŠ…¾Š,·"©-‘Û2”B§ì}bbºCNÿìZ‚¨Í1»”t×;i6íƇBLfãƒ2âVxâ|Š×hO-þà=7ýK†ç2Ñ=+X‚?p,þ4`R¥¼Ôóç|§Hʼn¢¥hXœ—ÇQg׉##ÖúT…!Ž +úŠùœ‘íbDZ8s ™ùÉ-ÊIJ¦u#`›®Ñ²Ù¦wjã¶N¹óOÌ"dý¼—¸I²m‘Žo ý§R‘eäñïzsËô¥ }™ۀ˱]0†•lÓ *4K‹–$wNQk“Û_l›~Ò6á÷µMöÒ6[Ó1¬Âõˆ¶/S±c™çnMå ½²YRSWö#ƒ‚ˆòü;Èé;ì{xþ•å”hIRÇEíxÍAŠ§ß j¤²îç˹Í$»ve’÷‘ÍXø¦s˜Ä´´cSò|X_ÚqT–a~‰°¨°ý@óYk> .ÒPI’™Õ&w–In¬I¤}LjÜ96’Õ S]Þ’["ƒ8Õnœú°€Mõesâʹ¯éýJâàKÈÔÌ{EN€¯F%;±ë+2'ådÑghg¢Oª­Dv-ö±cXã€'+-Þᘕ֨¯'Jeâî=ãß±z@Üš¿Ù̳–ÀÞ*‚Ÿ“ Ê$è×=\ñ¸o}þQ-ÝZû¦¹gÆ¿âÈLoÍ`iömV¢;. º‚NWpCfNŒªEäÓÊð˜Ø0[¦ÅÙt#sRaä[Lå“…ØQsäÁñ!ÞŒñò©yhÝš¾ÒáÚaùÀ`dÙGÀ¿dÃ:$àLV©ßš:p#OqM–€óšÙtE­ á‰),ÎgYõ§ÓE~´@ÇÙê‰2í1Æáw8Ÿ1”©\Ë$øÞ¬!¿Sh»‚ʾNh_•Ø—‚———Xšèl9N™Ó’ÛñÊ묅ãš?.XîA,ö¨¬ 4i´£C ¬ùZ1G[2”þm !¾dõDÚ¶xüo¹ DCG­@iúå° +4|>@vz±æ-‰¿\š”¤x©žüßɧ癑ðƬ›tÃãç┃¾¥ZÌyÅ4–ÏŽÕÁƒç¿TZz;Þê&Uæ²ÊëÔ7e¯FòðõÚŒD:‚ {œJÇÆm\Ž­¨*gÓUSëÁÔfSý¦m®KÙëìÄmPÓ~2jžˆÕðAD@€û6Xíyó¦~’›zf»ÈôyWÓ ¢UZm#Ýú’¥VKg3K1,–lZnvã>gB¥k¡Qñ.CWuVžø¼C"e½ErGÈ\è­JRž&%* 6v·%cÓ”(ñý +JB¯ K‹çÀ¤k'<Ä=! xÇÿÑ^-ÍmIøž_cP%Ò˜Áû¸©<*§ÝÊê¾%KXŠʉ¬üúL?¦§{ §öG$ º¿g; ì¥áKçá[£&0]šP¸‰ј‘éé••eœ“3ÃgƒÒ3NÔ`aj²–d-I€k¢kÓÚ9<õŸ¼Å›7)Š½õÇz7Âóîц\²¡ð˜ÖÜeŽòÄú«\øÂTšØ/ˆ ăV>J›ápɧŠŒÄóy5ršà)ªIDÝ +!g!Ô¯dî¶kUb,LàÃk.âgâ+®Òk†•ë.¤EXŽX¾*´Aä»ÞpOUˆM4µaßn„íÍš;h5A¼)e&Ë•"åVŠ¶ÖK×Á©ŸR.ëM%N'âAµ6‰6ËøgœÊmŒ8¶K2Ro¶bÃklX\tó´o†Ù`Á¸þeË[ ºÐû–Açg•ª×y¼#Ó¾ût*`èîüH×;”•'ŠÛŸ U+qgå‚ |UPœ +®zë:2Š"žp¹±¹@ê­ ‚’§·CŒœ%ÝÂÙbÏAÂþ˜Rê¨$ÕÆ°ø˜­ïk¾¿‚Ùm`#èº- SÀØ ºÞ‚n-§cšßÆ\¥º¤ð°È +€nÐå/K1 +Â8TɨñÊ¢EqØøGæ8j!NšGZ.%+zÕÎ1D)*N~7á’qP(•`ŠÈtéÐÎ9€¿çèp´ŒçÈ‘Ž•‹aî\[Q9¬£²o8ƒkè|]mDå¨n¼€Æ¦Qù~[NCå2┡BÞñ)ï$» + «Å{KS‹”/çÏ Ò‹&Šj¯DwZTñ1 +1T{70:WIñb#c?æ‡ü9@”+ÂÓßss:U„K~î±ñî·‚h2 +äšÌö\‚¨úÊOƒÊë×”/äMj,QKËëðl¶[e¿f¹q‘h)© !ºh››ZA«¹á‰&a>qw¸J-{­ftÙ#>°Ó××S„9žXX’¯Úã+\UdAšÞ¼Ë`ýüqºÑ‰ñK”«í5©ªÆ ð}ù]”>:½z¯’9`µ›Óúœ¥õvÙÄüè/¥uÔx ‡ï^i&èÃz‹Õü¬¥vÍ´Á0¯òÊÅOùª÷Тäi‚Дs˜ `¢Ÿû†œ·hAw𜅡I3!,Ü ŽWÿ +× ð=™Ùkx›Žêâ°_€4ù¥’(!ùPQ-ƒ½€ªGHmƒ‡k<Âãš`[Ëøè'¬U:¡Uþ +øœ8Æ–_SÌNÁ.h°jÁ‰5 +«ód3I…„TSæèO’?q :&ù3æ‰R^àf­Nî_b~Êö¤ù5:â™g¹Ç¨ 8' +>›¤¾‰Ðˆ +FÑÌðÔïÄ\ +ÆIì(ÔDí‹H,½ÚX¶ÂÃ[x´ó +ÛáÏ+èEb§C8¬ÛÂñúÂñ”¯öT£v¾§àSåŽ%ë"J­ˆøt 'À¤vA0l¡»™y +>M!+®:S&‹ÏoÅóêl)k×"SãT¤6ò8%y¬g Œ46Bʾd¼ýŠadáÓ*%Qg ý á:€5üðåbx-@~š½Z‹Kf5£Y)«ŠÑ?/[Et»ËYhÂKÝö6= Æ|°uã½Ý¸[±&7*$CÆóé <=ŠÆA—£IÖÄ•‡^w ¨§kÍðÒ`nc¼m’xŒÐùx‰iåBй¨áŸ$ÕGòaÕíÔ™ªÛg²l“­*×L¾q;ËW­ªÚá´ †/醌’¦ùˆö?ñŸ¸PÜ›y„Û +Š!«NnEÜèUžýR:³ï«oH8”‹4‡ŸWEä·3)îN |]*$÷$JJR½ˆ?m²&ŠCNT­W¼y­TšJ„2ïubr‡›Ób‚íS‚ Ò”ÑõTCˆ8;=isŸõà{"yU¶"kÔrcAÕÍÓ¾foPÄáú—-7žÔ€ÚO¬;ê#—£²ç0GÉr«¼6³ªEVÁˆŒ‰í²Ð¶W`Å•Y´pT:%ygƒ«V㪣­,$P}ªô$Žãjo›íj‡¬·Q­ðñÆø«)KvJýZ„¾Æ~+f›Xg1ášq?º¡¯\שÈúŸº'Eù'…îÍÒÊ “³| "^±zçì÷ܵžÙTœ +m +WEDˆ<,ŽlîƆäŒOqT~BAöÕÂÃ$d<úsõžLî‰0 œ] “Þî¼¾çšÀ[ÌMÇ=|0䦔áp#PÂBm2u+ŽœÑÕ&÷ÑwöógÂÐ)B‰ß3|í)k>äÊ®GÒNçh7qô)/²“òÂ5/Åó AsXq°¥Rïç¬ÂÎÅÃò³´†,bÆZ“ý\Lîµ@ß|ð^=M‘:n/ŠÖÂ:Z¤º– ,u©ÿàÓSN$ZóøîU!RVgŽ‰Æ4YÖØUÜvß~—@Òš°hÕöá¿]×VçãWï~øoSŸ¿zwíþ2ou}OU«º¾­(‡"Ú †ÊÏÁ*¦v®ú&„ï!êG8S r[û™Nk'îý}HJ-ëLà™èÏ°¸ïÙ™šH(àzT4?ÂýDC›û¹FpýÁÖ‘””태Ÿ§¾ù¾žB žƒ ýZN/‡#@I‰ÇEßUr xU¸ä…n¾náß;šEøeÓ™êëÍÛëlU¹­°¥åûè&¿w²{¨N³lá¼ðúIpøPμtGâÉŽÃ…OWà&4^yÊkÎQVR}[#DøŸŸªŸÆ…‡Æ9å(æd|ôÇšün„Ç\éÍ\EQ³¡=„‘a[çÞë&·8òÁ) +Ô4¸ª(wádáòÍö3ü“`^ðmfRäXéD#í)/Q%\ƒümØu§Iæ0ýZ34È`?«¥p£Š¯¥Ýã(¯ˆ“fãdIO8 .ÛW6ãáÍwNÁúˆ>*ÐE„àq>²Ñ +ÔVÇê÷lŠ¶¸ªçO5M{ì¿HUPØ +endstream +endobj +147 0 obj +<< +/Filter /FlateDecode +/Length 5926 +>> +stream +H‰¬Wko·ý®_ÁKÀ³r8œ PÛiàÂFÓF@?4E±²W²£gV²Uÿûò>H^Îc5v‹ Ùhw†¼sÏ9÷ôO‡ÇO»÷ê‡NÿªNßî¾Þ}~T?þøòõ+uòòì¤VõÖ6mø¯s:\žœþük­.NNÏÌ¿keÔÙʼnßváðO·m•1ͶéÛ^ÙvÛ¶>ûý䧳“ŸÞ…cÿ§^†ÏÞžþù¦V¯ïNþvrú Dðvw{©6ûÛêç—úôÝ«7¯•lW†£àÖ+ˆÃPgF½­­SgO!zÊä`:Ûo‡aðÍ?7ïuUo;µÙéÊo{µyÐþü¨t2ØÜkã·~nøüª+[«Í6fëCxºjáñ[mÍvP›G] ðؼÞáߦ‡?ƒα~Û„T¸0œaÔæ°ç»>ÀËáóSøß~€[,žbkxû~ià~>×áÆÏÚ:ˆûQ;x7dá•pfqßa¯;¸î’2øŽÂ7®¡=€ãápÒ­OÇ9w9ç˜c¾"•¬Ù:¸ÁA$ç:ÔÛà=“ ׆¸CÝ{ø2Ô-<ûU]…Ûzˆã^ÞiÛÀ±O὞¹U×:ª°I¹wAŽ8>èàû[¸¾€ËÃç–C}ç [â¿Îþ’z}ÆmmˆÈ™ÖhÛTúGÄÁ!źöKXùt ˈ¾F¶2Öî«z¯± wzØb/¡R þƒïwÔËP44o¯M@Ul¹—oñTd4_#x±ÖŽÈ*àËá@à oX‹É¯™±#Œ—ˆQ³ƒGŒÇ`vô}Šþ@SëÎ?îéÛÿh7À™ÆÙQÄÓçÚ4¼S{¹W“«×!·©Àæ`U‡® C›`µDbOºa¤ºîÕ” Ie:ÐLåªqèœÿøˆ’¹e‚@6ù %Âðð@n¶i‰·RõE©:~Ü +ƒÌ’€ +þ¡½ƒ1"v5ž uPiD†{õxž‘¬j-½%ƒ=ðñ»ÀÅ^r#W‡`7a ÏRÄ 81B'ü…#•ñºŽ‡Pžb õ¢è>®†‘„·]d%߇+혭BrµK$•Hc²VOXœÎ4 UŠ%¸%VàÒ3%ö©NÐœ$iÜl!+ŒŽÈ'’Ð~ÑaAsm‘ò¾˜$ˆ0·R•aN±£«œäÁ,ÄŒNfE1ã„«gè]L#Ò30¬—(Ü«Ò¹ÐmêSu%„ì +Í”øY«™M3ÒL×/¡³³[#ýß@R-Z“bDC…ækk +È”Á«)ë©õŠfXÑúFFÝÁð†'/æj3H½Cæ;ÕÆb9¡£#*M–Žr8+·ÊŽ©|…Ô”Ô¡z–‹Ýa¿Ò¬B±Sž(A}dÙ”)ãL³…Fø9&ZM„n¶€¾°µX6žõM’Õù^eÅeì…öz û‚H3Fƒ Ôtð”1¢î |3NLMPtDoiJ-¼R”{u0€·ØÇeÄ(Ì£#aí.•T*!qíÈBÑ4qÓlÒ|‹²ÍÃDó£å ùy8ô€Vƒï‹v+§ ¨¾"¬¯G[ª¤³KØp0ïSl„þG†ÁÍlj¥(è{(’w#WhDÔá0¾ÙØÎî#?NCà}CˆNfyyM ö7Ó +ýCûÂD±,ö³¡õ24¼¸d«ßS9x0cêÓH +'Ygªs‚ºÙ|1_¯„„_£z«U¯;nä½J#¿@ÈWƒDOö :-9Ú#ÉùŒêôqb]ˆmÊfûØlÿ\³ †f6DHÂi¶¨)¨ÑzH²€L¯YÓ,5s.ñºÜjvÀ¾ù¯8áåÒÂwV×¹'2¦l×â©éëOãñKòËNüµ®:Z™(íKLÓÆx(¶ëÿ.R•äÞáâÞá@±ójˆÍ Äé 'Vð¢•î? ÿ¬âÆö¿©& VÍÂ1›Ý$šmfvÞÄSìí8¸džÿ•›j¤Þ 8ñò·Z›†R›†%iªðÈ€fÈÖš!OªnFDá!·*÷q”ãTÊ%EX6¥¢q3¨*©7è‰`z„íIôµô3F$(€Aá¿T©‰HgOÓjnßÄx©&@k|S…­z ¡tƒþãØ­ïŽ'Dâ ´²·z~YU©/3Á%B‰o¯ž¯„‹«×è–ÀÊZÝr¦Äaí€Ø†U0ûçÏÚº8Ê-¹À(ÄyèZhÑ/´(2ù.RGs˜¶—,Én'kJöQí5¢ö þäóÊÎjTa£³`H©¡]‹P)\D±/±qÉýef—ÅO~GÇ%Ê—½ƒƒ*+:·©Åù$º ƒ7 ¦ ô³dÚ­"Ó•Hµ#E ·, ª³Âu¯Ý¢’ÂWƱ檔[)ï;þL @¬ñ iÛÃ)O.¹ekæ˜@=cÈtyó‹Ëñ\vÑçÈ@FšS‹jÿ!b¤ û$pd±øUa‚cð·:øbÑÇ÷­:N̾@ +×$^7Ýã"ld=V4Ö€1ée) +ÞçFìÔtãmu5˜š’ú%(µ=¸k†Rn‰§ÅGÐzÒø],ITš²‘ÝR#í¤zääDýZ®ßQ3ý@ƒwOÕ<Æžèz,;àI"=å©pØ3S%ÖC/í03ò˜†¤å˜ðàG „—b¹¯t‹Ÿ —LgyÜ«‘‹;G«ÌTû×ÂÆ8¨î–€ãØòŽ€óH×=#ý“]@­°3ÆÊ’Ù'·6×”Yª³S×Ôbé·êïš×wÌlQa!ÛÊ+‡0X´¿-ª¼ŠÃe‘Ë(Æh›­\cXuð–†=8ËÎÂxÆP“¡”jœêkD} ¿oØïqû«aÕ.›°Œ¨0_FPQ!ªp#ú Ìr3ñß·è{n.Q¶_Xú›®Æ ðâi¨%ÎjÆ$º”·«M?°î7¤ûŽt¿—ºG q[ºŸÂzÙfÛ‚šLYEFk2îäÉÇ»èŒz]ÝKæ/LKì-BÞ®n½/…ÈšQû¿­}£Zð^©ûop3P¼¼p °•¶È]äŠÓQÑ„Œ…KQüE²~èõnV7aÆí]ÿF;Vlv]o‰/¾ËX“¿4²hÂàÏ ã>V)z¾•]ïVl]²å«·®¾€“1‹Æ&¬tÙ#'ß8vÉÃR‹bSgîVn÷P} ¥‹†³Ø$Ž`›¢§„;ŠENz¾dM,>ðGÃã("šÂAêW˜ŠîÈ/|¾+ô‰÷@šŸcÞvFÔ@È´Y%«È8Ø‘uZ ’a HDׂ¤­Gœ³×wÂý®il;mì‘zæÕVEÁgæ¶äb>áw¾0O|²Šë˼AJ›œ¦Uf«Îˆäæw”orÙV[¡ð"3ŽÐœ{Ðò4¦M² _ kÆf8ûÝZ-jM‰‹fXÂE×€¹e\ü¶ÑÞB-²)ˆ^ý:ñFäǸŸ¦,F®[üüM“¥qc‹P®¢EË÷ò¸ç9 +µ+÷„|B¨/¾õ¤›–8+rðJÁ +ˆüoQ›òòø‹G`ºL7É„M[ØÎZU¬˜|86f ¼Œ+Ð9KbÎdÉOktdU¸]8ãà­ûop«­/Av 'í ,ëÑõ¬XX3&•[Zr¡Œè»Þ€7÷#vyn‹…g¡â•n…õ¢¢Ð¾f,çè’“Ah‚B ñ$¼¶stX$;IVåwTžäcÜØÑÈÆðŽ6à–Ó¼C"üt³û;ÉÔÉ-âx%ŠšŠÜØù&9'¬¯ ½9ëÛÌY_ÜhÞÑÀ¾Üøz’3ã‰{$c;šIšÄ©¤¬†îHAX?­8çUâ|Ær'gur´šM}îzäÎ +ù”„£Ý_‹7²$Ýà³oÝiZG? éfåë…îˆ[‰¥v…o–8Zí›ýÈ-ê^c+ë9Ðu)-àD¢™&_«R)±K瀵päï¢VžÔXè<á:µ§€LÆI¯–·m üWt¬€ØI=Š½6AOŠì3iœÝ­“m›_΃3CJò2íiXÉá÷”Ôr $™ÒJ0Æ°ê{ìÈÏ ¿ +Ò8Æ€÷”Ii$[Ow©6:"¦ô‹+`²#7-´ä²/Τ?Ùù ‰5onÆDÉìç}ËÓ—WâoÊaÒ‡=˜tÞÄè«vÁA.°ê·æ|(à%¡Œ<Š¼°ðY®Í¬ÂƒèwÞûvŽHÞ¤O¥{ø@Ž÷º% 4I.ƒ‰[«h/uâù•Fm¤øßM~e”\Ýɜé7Š(²©‡"¬´›‹æ>¾ÌPÍñçÖÝG3iŒ.]‹ž¹™~=ažM¸V÷F"Õi(›aPô¤'ï9ÀÝÈ)¶Øå7ÙõÙhZžÙ…Fz:-•¬7wj)¿Ü@3 €la£ãI§~É2£ýhÜèGmœj|íÕm#J•ì/9M¼—.óÁQv3Ôñ(šU—cÕE†'×M€¬DÇRámµÞ6væÅ[h›‚ áÜ7¾)çD(gÜ7”b½ C‰MsÓ!ñí£P¬Óg˜ÁVi€¸Ëâ&EÜ朹”©¢ºtyâ+HÊQÏ/Øû¸¶PP÷cå-Î\ÆoÝïñ"š·wX“º:®þ¯¿‹GÃËòæ²âíøâ \ÖÔ.@xþ¸%?4?4¿µ½cgéâÏ×`5Pan™N(¾høƒ÷7ôáãf 4ªpøczäK¼eGœ†¯Ÿà/ZâñŒ‰%²r&>›ÉÛŽFÒñ4Ü®LÆ{Cä Îâ·vž3Š +3s~ 䘊‰žˆß/ðÈñ‘ŽÆ•¢ÚBH¤´Ž‰c³Q)D°ýÕ†ÁÊùØ5ò¦_u1Bt!kb cþYVEÚ­‰ëGx¹æ’²é ,©ÜÀÚ˹ÁÒ]šZ£¾•¸Ð€*Í›t")l•@ 5iPQ-‘yG것¸.VFAÜJîDRîډ„àh³º1{ïÎÞ»tÚ䂈ÔÏð¿ p Åì«uç¹™©ˆ×©¬3väÑØšÈ1sÁ%Éœ &MúqS¡ÁÖ.æ«Vñ÷Ò%¬X`/™÷–ó¨E3l^Ú€–&çRî©ó† ž–;J'ï‹œŠ*ª®M|ã'¾i¯/ø9Ž6Ĭ¬Jéî%Èp¤¢$«j–´hu-ëÞµ9jG¹•žä(˜užÄ=EðÜѨ…Ìhƒ•êsdËh: *5¦pÕÛâÈ +V ‚VºÖ•²ÞÀ\6Ê;Ù +æSL—ƒQÒ(™{kÿ šc  ¸§ÑX‰«;i¬gJÖ3[’¼¯×hÀù!,{èŠ ¯Ù2y—·êRQ€­oÅVmMâ™éa• ®ˆŒˆx Á2`Åà…­Ñ]VŠ¤vnmãŸ6øD³½5»‡É¡' öÊMsŸ“¹÷ßaî$±(ÜO¥Á¤ ™Ï§‘$–~æé9$=5ãðê:w%B¦ +¿´à¨ö˹€žOÑÕû= 1©ŠÂÑyB,ž?8Ž9Œ²:RÅ)îöÇ ¸ úäBÜÀ£<.3î$æªO].än.ŽÙûc7{W³‰I|^¬‚IµÐ ¸äApÞ15$$ßF‚"žî üI¤7cÉ5|Ã_\ò6Ù›„ªÙ“O$nïnµ-ºþŸål3ãÅ͘ìòÀÄz¤5¿6€J1Ó8 sjP¹¢W»®F6™eR‰+±6¹»hï{SM6¢U^/œÜŸä}óAÀÖg:€Sg2ÍÕ:.Öû*ª zÓ3'83*Y“oEî{EÛä” ÉF=°¿½òÄ|l^·>Xÿ»¥”ó×K›F>?ÓR©ëHz݇äî&,â`40Hü?¼•JHø‘5x¨Ù)"Û—¢#h ©%O,2=QiãS gXh\¥äÍH'ùi5ê”"ŠãÞ`ÞØeC…ËÆýê’rI9‡•rn+æ‰"m²@O$Qê†w{»BI¹[È"Ô¶(|_sâ¬H(w€Üa+¡¼û¡Pœ²6ƒ?¯Åb_úò´ ¸øÔ/°‡xŒŸázøâ˜~M&ý†CìÉû;¬=ü a×HÖ§)$J—lQ~â_cDNùs²ÍUûà’$ e笟ñrz½=<ùkÛ£A¾kÛèÐè ý&žØáÍ>@wt´B÷J„\ÇgbþŠŸÿ>ÜÂl&® D“ž$*¡Ø(¦Œç€|ä[¹ºÕb¥hgÓ[`±Þ釂úZtm6Œ{à꧃¹ÄjàL¥÷õ{À‰Wù½„vuORñÉøc’~"„|¹Ÿad£•ŒŒ(ñê0ßE÷tYÀ=P!úHóR9Oþ“RëYÎÒÊ[5èÿ¨ +HéO·~ù:걇ðÊ)§ó@þWR¿ä}©ÄêƆ“¢$ʇ‚òcNùÆoIÐ+Q5çžçö•“Á…NVßuRy£\Ig¦ÖjLÿŒv’²œ• §‘wÂÀîw’£K%ç0cvùÎ!ú£Ô¡-¾´#9e*œ™Ü´ùôöuå5ÖoŠ°ˆjQ[RÐOÑ ?Ê°:Jä×(cü/‚²äW?ø½«‡Œ)qGù¡ù +3Çì³ÈˆS,wrŒ„“31å^µL<{¾OXAœZ®®û ÁÁÄ?‰X;Vq :§TGëµÅÊ4Aé™lv'§Ð·ó0hتXäÚc–zk\@\áÏøÃÁL“…-2F+&ô¶Q1*sIœÕĪ ÕЄ.bÂ}-\æ.ƒ‹ÛK„³fãožxØpLT×™Fd¥{ØF_hÖ†ŒëØy±d(k˜3 œ“À‹¡,0ÿØtçKT³îºJ©¤,à Ùô)­âÝã +Ï-ÞlÔ\@«Á4ۣ죅©»fÔ•YŒ’̘YbÊür¶3+tœ=ÂH%¹HÁªÿµèqeìöñ ±÷‚½˜::ý—:šb|®âôV霒â@Bö^Q3xÉ-£ªï +dä9ÿÛÙplÞ$+‘är—ápÅdIq/÷Cþ Ò6ò#+d.n¼w5â€[ùÖÈ|6’+[¸tNá '9¯†–·Â´‡ªÎ›L|K(3èËœhTI¿ +·èR*ñôÝÈßí'æü­'V’c6šh¿ +endstream +endobj +148 0 obj +<< +/Filter /FlateDecode +/Length 6007 +>> +stream +H‰¬Wio$·ý®_Á"°Ój’Í>À×Úva' ‚À´£cWÇzFZyóëSbƒbF=M²Xõê½Wg?ìŸï®/®žÕwßý¢ÎÞ_|{zyVßÿöüGuòv{R«º²ÎÃï¦qjsröÓ?jus89ÛšßjeÔöúdSWuÝ¨í• +^U[u°~ºÊ«fhªÚ¶^Y_yßš‡“SçôöÓÉ»íÉ»pÒïp®Çµ°=þ÷þì/µ::ùÛÉÙ¯Þû‹Çuº{ÜüôVŸ}øñçse†Þ•±* é3i8Èmˆ±á5=a ¿j”©»ª3[gûÊwpGî_§?èM_µêô^Û¶²êôYo |¯Noµqø÷I[uú¢¯uz£7CÕÁ÷ê_U§w4êô+ükp«;½±ŸÀ¡¿©ñ±pVÐÖ–°MbÕy¨Ñ¹v´¿ d†ó¨o"Œ#l A€ŽÊ8¼ÅO-Q]û| Áì¦XÊ“6å[›˜À†NBP•‰tãDŽØÞ㊵€ëJ\fч¡kÖ¨ 5ê©F˜§/‘$d•“àÑ…& ¶~DP\«}êñL¨ÆóâÈ(ÑáTêvfW‘ÿÔï®=­z#H)\=ò݆©õ6‡:¦Q/Ŭ`DÖ…Bº;<(©‡Êºƒ ìœ,Ų~4qâÙx¥•Pê—¹«úªn[àP¼Ž»†£µí0ÚîFËûyô?/˜³N +UÀTÿRÜû *ÛcbØmÁ2!•eñ³i š{¤¡ÇÄ Ý/vž +c8  L ™Q_‘’[¡C%÷<¢]0V"Þ68Ÿxn]8,¸Q'áz‰3<ÉördZ¶`ÙÖÅô¦r2ˆd<7œê|ð¥Æ7KÇŽÃfQäƒÛLöԱ̔d*ÅkÜ#õÿÀ…C]àÌš~g¾Öýõ…€Ã”'à9ÄxCl›Œ’|S `1‹?ë!íÝåke²£dWꟂMŽ^9s6ÑŽàŸe[9#2‡ã™³Áôvý${¦wv*(ËK„L®ãåðjá{$GÓ ­'ë>áî²'¹Ï<k‰ÙD+î_úþÇ4ƒ1‘ª‰X )ç)k­çV\äMÛƒÀÖ^™µµžop¥¶7KÚnaú²i ‹t½Ð¼¡›Ʋ$S!ŸÌúb0ËH,Êeú¬]F‚ʳFgý&#`R§×è»aº_êÑ 7¸…ü¡uMºC€sã¼I9\žÝ]ìòµù*ÙOš0û¤‰ù.ç¯ùSÉ3ä)†÷Іâ^™¦#3‹…™¦-R´Vö‡rd©û%Ù‡™%Ë~(2&½ÃÄý'(ܬ—&’MBiÈZO¼8·ÃËH»HŸ5‹)‡I#Á*ÝfÅOü@ç/GÙ T.îtrå™6­X æ‘чp6›¾o…¸ wb[nºÍµ*§º(µŸQã —Á˜´k09¡ati³ žg êŽèxnꬵYêG”é²ÔY!b{RtƒÝ)5è.tUÿ¦ý-ú9h ý‰3Ûu \È7.)f µ¿ÃrõÑ'î™ãaÛ²ks5²åm4¿í&éò½P˜Ì6‘ ó|':¢YòÑ´25K–äpcM±Q&’Ÿ%_ù˜ÚjÞ’%‡õ3¬£ý¡f}˜sÙŠ`Œ‚ÿ¦a1yßÒ9@–ÒÔšüV€…’ôEÌÂW”N%†éFd†ÞȤ î5Ÿ!LŠ œÃó…Œc"7WòXPGsá½Ôov,°ÜgKÆÃÐ*€Ùº®—…Å×°µ³®€Ö:c›.#¦+ ûfªG£!’N’±Á4 q–kK´hRâ^03B”~QÒ2…¡c%ß2”Ðòàg“ÚˆwØØ78ÚÑÐG‚rf䎊Ù5='xƒMÚNÆÛh²­×ðéÒǦ%²–Â<©­–HÑþÛŠFyiõiëÑ7••vdá7†çFv®šÊT­£BÔ Ÿ‘*д©n4Xu 3©ŸMÐ9òCá'‚ÉxÒÄCS˜% ³ÃUeÕ@}W‚î6ha~!^v¸ïCpT)©‘¹m,øÎÓuFÎÿFîXšöDÍÙºÖ¼ê`˜]CÏ¡¬ô<·Z¡9iOII\Z„Ù;žXþÐ Qø†Z˜z9(ÍP‘¬Dc³ŒÆfèA©a䔀YçÈac?B£[²G¨)INø1ùNÂÉi)”½Á¯>ª$ê‘õljÛN lÃbv˜Ö&Zêl{ÂNc&”H¤†4E?Q¾L7a: ð<&ó…zU\=½€‹ÓI31qA7Qÿ£ºØ ;=JÎBãÏôD¼¶ZÖŸÞà¿ÃêIP4šëÚ…¹‰3{lA÷QÖ¢ž*b:“G¶œÿÌÐØý²]IÞ4ù9/ëê5ƒY>ꈑŸ~7Óq黆1AÙ+¬hKL›j¤‰~ÎDzâÞ3[†órÐÌžy–¹ž™}„Ê­RìÐIØZ´tËd‘ÒôÝññâ*CLtÒ7Ëma{ö)‘ˆ±¡˜*jS¶Ið„¯WTL'ªÃP¢™•¦iÍS_1µÍhQ6÷Llš«˜æ€¬Ó]l~²¢…/Št•Ì@9q¢%­Ö¥E9ۚߌ }}bpg*ŽÍÅi c¶¸8¨'_ÅHú5PÝËe s¨ßnw™1–D B2ÔäØAÀþKÓ«7ºæWJîó - @xÚpFW^y(®¼­ùÆhÉÜ*T½ͤ‹o™–S§Cµ=KWäwKæú³*™® Œ»ìXRóFoå…Å‘3Ÿ‘¦Tûcž^åçßsˆ§î‡Kì#'>â¼+¾V;º–£b™® +åŠ|Z«gÁ[›bp6rÃM•DRæ!Ï[H7Ãi{ÙJÑmÄœ„!(wí—]d$¼•@1u)ov hþ ˆ!Ác"ã’° ™¿¤ÉŒ_"ºÓ%“ofþή=:é|T·l·Ç.­¤µ@Ð-!ñ êP³,š j{Þ ŠÃ5Bã'óÝ&OÖž,°._ì¨u,X”Xú:Z¤„´¶a¢çæ¬h§–¿·ø!ãk§Žøi6Ö‚ÈŒœ6ÐÏ<Š€M›„"9ò´21ÙÃÍL-ÝÇÛÔÔ¢9Ãh(ʙIJÎÌDSKsw!INÃœÇ{Ý"À(>¨mÝÒxç™@$/'¤dÉqU"ËãóoS þ>«kÙ¹#G¼”#ÂÈ8;!¨Oš:9N½p!êÇ/ØÎ_t,Í-6¿º•²+¦@ ŸµS ˜à›ÍÂèzÀ`ÂfÙݩ͘4 »¥8ÔL1ºzžSéÁÃåxZ”ÈY7€EÙO\ìÌøøfÅ6³j]ØÓö:F­®l€yrÕU£ZMMM©of™\gáËXýwš¨ót]®wC}H¼“Ã¥ÌpdÏéõÿm |O 峩šrà +™§Ä%_ᣛ‰;ÕG¢´ /.YúV°^ÐÙ7™}L+gÓ°8Ž²–¶†&vò¥Ïš°{H% ¦Akf *®Á^ñª3Þ vàZ ùHƒù/íUÒÇ…ïùuLîNÉbUa®Y[€1æd` ¥- –äF·d;ùõ÷|\J¢¢Ì©·j.ï}ï[6€4ÍÂGƒXÍr «c‚ó6$c”¢“g˜®´1¹B¬)ûo€äj²\÷ÎáBSïý’™óXkýè‘dÞ »¡£–¼™ã$zÍûó€ßg“ƒ€\ª`Ó¤wéùFô<ìï”Õžà’©ÆÕ-ÀDCºg ÝaA 5÷CŠ+—›`¹8!­¸²ÛÂ0e´0ßÑðØâà?Ûװ㜂Zgîæý<Ú©ÓjÆíwW u~ˆŒFŠ?y›I~Ôȼ¢7Ò8zÐ<—ô´Éæ®ì×püñMt»çãDAa¬تëq¥†ÔH¾=;2‡‰a¥œ¼;£n <¨‰rÀ9Ü›¿X“£Mèn#½0ÇÞ¶¢fiðj1Í^mMáh¶8Ö•UÕbÑÖu¯±ŠO‘D0,Ø 3óÖ¼÷œ¢…cœSCº¨qYšÆäA¸@…»¶§`¦+ ¶…“$æSK“8¢Ñ×}€Ï ú@IoÒ‘MŒO·¸ –v׈,'i©YWFáÖ>£¨L%®îxO¤Gg‡ˆ&‘Øo**2Øß<õýðcoð‘Xè,÷ñž±_¨º„wÚ΄”?E d “¼æ݃ô ½u?èKáOÆJÌYòÇP%ðwøSž£=çËj.Tà5LýAëýI·zc © ܵ’šRY1uL+—?£q ±Œ`öœDxÓݾFEþ³»B˜ù»¾û«¨¼TOä$¾Ñ”ë4©&¬A8ƒ—Œ5ì›Yc"ljÄÞ Ùžï0²NÞÓ¶g8,[¥l{¡™Sæ9 ¾Œ<îË ÐZ>!‰`æ¡ìs¨Ðr+u +»V• «Ñztâ»]T‚©„ÏÚÛ·±=ªWdDrÞ&± …[.¶Bôãñý™&Ü!›…—³'ä©`´ª'6é‰1 TÏìË‘Å::Û7±¥ÿKÂÌÛéq¥›‰Ûf(™LI½¥iξ¨k²„›;ñ´ñlÆoúMiðÉ¿<:žÂ<ûÁm®¦‰C÷àd&m·°ž+ÉS$Øø¢¢TÖžwîù~/ù+‚°[¥½HEž/·B¬5/FqÆ0®§œ½½ašµ)V€Ú§Pé<ûND5W+üòºBSƒ"Jø4+¢MiÎ}®CÓaócJ 4$Z.‰Û5zAΆ +rè;“¤IÑ(_±hýš}Lw V|S8‚`Vfòî‚<›¦‰4w™|½®pìqÙ#Ù#ééq6ãDÒP QÌ‹f©H +ÝE9*ņÇ~¦ 7µª‚øG¸­Ëd+lq,³Ïj­@S<Í[²©‘.X\‘+¦Q\èÄ8 'E#ךîLœ‰ˆ¨…µ$Hë, +ÂBèEÈ+Þj$r}"ÎÐóX7ë…Kb{IÓ?âGQ*Â8T†`Pq º2`'l¸>öøæ xÌ5â髼¸\q7Uñ·èâ/#v'š=íiPkBp+¦–̵oa +š\{èv¬ëBGm&vÑvo½¸R]Ê4#ñ‰Ìˆ¹õE=„V¹n‘®|‡?ä(yèŒ@™b0ÕÛNhƽù‹mv\P^ͺ#­M'C¦Ñ)> ŸîE7¹ö)&VØÜˆÑ Ï™rWŒ¬ØóÈWlw`kŠ =o ÈeJ$:½´ÛÎLSÛÙôöݯ=YˆÆ@ì‘…³6N”:}ÏYB, ++ Ÿ òUÛ)ªÍ$AÎÆ7|qYˬ7 ½$Ëx–ûi²]:Ÿ¨EFÍ›‚÷Ø~-{Ô¬[³dé!Çbêà—Y¸óÀ“$‚Ë`ßœŒg{F8ÏéÊöz‰£À Éuk‚ÄAס¼ƒèÖƒäŽÖÏsá–b—ü¶UÔ…Où=+áQÿ½(Üþ‘½Îy¬®èɹ.èªæÌU)vUœï抗X(®üDÖ4\áB9¯Ó¾GŽ"'ï166øw °Vÿ®U +^à®*xg-ü;;u%æw< CW7(… tUøã  Û8?›Â¸Ú4N*õ*¤0%nñ1ZxC™px‰.óR-.zò@7ðFuÌzÍ—ÓM‹íÖm;ô’u+8í¹Á2ÏËÂM£?¶ôâ³+¾zÿÙ +WÝW©f¸±p¥Óš¤‚X#¶^t)Á^¸(‹š¬ÐŒVhØ×úó¼Ò¡!Ò +éNNL°Bª´BVòY§÷סäþÈÚ…0Qð1€ÑSrn! ì™™MÎîK8,’áý3t·_÷ÍÚ:%ôäz +¦q˜÷óh§n4Fx÷?H'Ÿè 5˜Xl&še*yî +ÆŽÐ,K¡tÊ3<¦¯»<ÄÍ"søBÎ<\îèèÝFÀÃ×ßÇ&ÿGw UçÀ)®ÃÖ>•O”ÏÄ„‚O$MÍH°-”"PÐL)s±Qo) ›Øèís}OòØ(ú{BJ˜Ão1ÉÞy§TÊ"•466­Ÿ 3/)å³$×3ÏP÷½7x™>a‹ìꀠ’X÷:Y8¸Ø•°W îHC‘‡÷M%#°5`ð‰îàº@£•;ìXîXŒ3ù唆­«Kjª&½)—áb"Àeÿ{Q(å7†¡+‚“ ™ó|B¦7i+3ûs¯)¥ˆ@â] ë^÷Í–7Xø"È7{'¼Ž V°-]Mf@»xLuý +$æé!ß®g«@†Û 61(a·ä¬UÈþ™,sî±\Ÿ pÙÔÛ»`w±Ñ8Œ†Ñü–b–[í¾Zèì×·ÉÕ$šænM'ü”rãC|˜_ÍK J© uøtp³„'aÔûGÕM;ݵäð ¢M#@̪ѰÔ²,Âè~ø±·Šla€yN!Y«Vl>2ù'éãHõϘч°U¢ÊLÔÉÖh'ÎJ2á w›‰ovš&~“ì¶ñÿ¾·îÛ}?áÑÿUEßè» +:âiÅ¿æÜ›€¹>ì~þ%fL|‘óÈÎÀ {ctwºùá§ßþ=t7ç~z?þ×Ù£îýGd÷æª#¥Ý£.ÛiÇ:ë¢tgµÝë°¼þÓE§^‰†Vò#RÀLw'<ýÙ•`†¢»TiqºK¨  kúÿÍÃF]ψÒãÿÖ…õ®>Õ +d÷S„s‚ÏÑYt5ß{…ÍËbàjG¿g{}ÙOäThJû…>ú½ÕÄ^n`ôâD4·D¥Võ*­òd]{fk’*»Å7Üj¶¶Îd,Ö]„ˆ.ÆÛ¡§ïEF0ïƒ+ö_ÙzaéùxzŠÚ´ÿ+4e%¢¿€¿Ôar~i‚+þÖÙQöBÍdº¸óßhµ[üÝ]v%OD*N_^—çU˜KÕ«kòÃ+új^è«›dãäXÖ½¹¯Sn ,Ψk°ÝžÓiÄœ^<߬ö@W»›SÏ%Øa¥žŽ`z&º8> +stream +H‰¬WÛnÜÈ}×Wôã4°3bw“M21ø²Y8ð" V@œ ]­X7k¤õj¿>uë‡s¤…ÏhØì®®:uΩÃ7÷—çë“õêÕáßÕáÇõÓíãƒzýúíûwêàíÑA¥ª•u ü_×NÝ_þôK¥.6‡Gæ¿•2êèü ZU¾œ¨¥|û¦üª…wà_»j”1n度S¶Y5‡× Wë£ÿüxtðãÏpÒW86¨ð]Øÿúxø×ëJ½¿=øçÁá?0¼ë› µ8»YþôVþüîÃ{e«º-cUÒ ÒpG!FÚ~e¬Ã# HZjRl­íV}ß{ îÓb­M³êÔâD/=Ü`ñ —¶Zyµ¸Ô¦[Õjñ«^Ã?X¿rå +ƒ¯žée³jÕb£¾¥µK›]ɇºÑp:ü~«=~<(X`-n£­Yõ¸kÇŸi»²jq[µ8çõá×39¡)¢8aÍgµ¦g&{/¯­5Ä ñâ+pÔ“v-½„eôå Άu¿ák!zºáoh‹+Ç°aœq¡ä0J—Ãt9ƒ‡Éžñ©¼÷Ñ`"–—Á'Åxªî°5^SXƇø¤¦ýcîµëñø?S:\!ÖxÝSH¼éðpºxçF=„µø+©ôŽþ±º]ŽÆUÕú)°A m6¸ E»¬9¿ ßÂIž{,àFéŠs°uM¥ä|Òƒ¥é'°0Ï]8gP¿{.Ç£ä:½ÅçðœpP{Ð=®¹Å#á—ã3u¬ûl aœá&PT·xœ{¯îÕ>ã)¤?ŽaEñªÀ#‚™ª¸Ž× ÿNËd›]Ëùg‚™˜×±Jó­’¯Žò%é%ˆÉq76¾ˆFŠ·‘šÜbRáó\¶N)ïÏW_‚«j¦ÀUÁA}ß0¸Rò„î9嘔>OƤÕ`Àôü[²Î + é¤ ­G¯ãæ­ñw"5ØøØx$Î09¦éã_Î7O¸Ú®É‰îð[Xç_Ó¹¿ØN"´V0çŒ á=õþI¼Lx„Ñ^cš,W#|<Èf¶"ÀA``háJ½Ñ¶žmð¤SÜbB8Ê<† ü­¾hÇjÀ8š ¦*Tr6¾ƒp"'}ÕD@ ƒI„ºEýà Ýr£Î%ÊÔý“V6^ˆ¶×5U¤’6—Ä°Úî&€§EØÜ!+‘z o ¡-¿.±Í/ ݽ° c„¤‘Ö<öuêÒžc€eFaLß´#يɳ¾Ø·STžc%´wøû]Ð$Ç™¢"½‰áàD9I”!F§˜l ±ŒQ©‡¥züi.œÌ,ƒø΃ØØze `ƒ¯{¾§ok¯ªªr¯3/¸ã`›7.7íê™›º™2ëçW•wʼnŸóÿ0­E0j¨j˼G­|.d J})õê·$‘P‡TÍ´ê„VÍZ%àùàA£¸ +ìY—„fÛw™@ÛŽ•9„TSÛýe.dêC¦}xdš)7 ÿ|Èd'î„ŒÊ\ —F“ĵõ{ Ô.¹x`ƒ‹C./•»IÃL 老AÉY.)ø÷£ðæ‰øÑ4 ‰¹O"~'†>ãÄÂØ Ì_ȋŠ°bàÄz„uM"<¯í‹ñ +³ÏÀk·¯å¦³ñÚ?¯Ù‰ŸÿJrÌI0ùL Nf„¡*'©epn¦¨ó¹”lÄ/\GœºÁ´’°¾üŽ¬Í§žûÆGÇ’u Äôš-¦­ÌÚý1å«c +¨öÇ”7;1Un:SÞÎÄÄ^,gÀVv2b˳NÙbè@=;óXÓ|2&w>©ÿŸEV¾ °ö2)úèe·½xQš6­<gØŠGƒ°O¢ìDЃ‘ -F‚±Ù¨.g#íôt”ò‚2DÉ'¨;Miõ‰ükQ%IÂÃ4'Ìm ·c< X©À…G¬l¹–ÌÚò¼¢²›3”ò~§ÃØŠ)4É·_¥ZñÝJÆ@û¦1›Ë™m› O†»fÜPGŒ:¯bƒ¿?iGcÊl2z±!kzûïw²Á¦³Éh®!S[uãËþ´xµê™:ÖT;/šÁùY]K¿œ ìoT¦ˆ¡Ó RÕ’@nT6ÑŠµ³§ ѾÀ›–7¹¶¥ Ô¾YèÆ:8Êœ“¶pYצÅ16Cdt18m’Å6ûrÄlF Þ4û‹7›vÚïÓNÓv™]Ï@‘€ =DaÄËPÀÔ€–œnv§+ 8pJÏÚQo€ê„4¥/µ0Vˆ L|’')Ó“ ç8 ¬ÑbIøI˜†` +Qدî÷™}÷bÚñõs|µïwÒN¹é\Úi«gûêüľš½E7>#fu24’eÛ TÚJÅQÀÕ-öls^ÊQähh+rdw™ +‰5­ÃÏoHo®à&/ƇfÜ ³W=¢ÎWkݲéw[îð^»=$¯5/Æ^S=Ç·v'öÊMgcÏÍößUï&Ø-;AX“ñ+«+¦ú†©ÞŒyh~Üy õ4ó|÷Ð,Ÿ“« JéÙ–-™Ó2Œ ¿Š¬¶$8çR«e.u; ¦Õ¬Ækø½T¢möìÔ +¯C¾Ý³À<Ï°©­ßٳ妳{¶}¾^d'~Z¼×àBRyhhùª=KŠ0¨DÇÆÚ +QLm6,Ñ”ŠÇ%§ášý-øS`®Chh³FQy(ÑLûâ:4álMmáVdrP=¶Ì6I€v¤^"z±·G‡¹$ÞåÉZy¿Œ!¥î]æ2A +[ÆÅÒf°²Ô¢_æ6cgË™‰No=~z héœþ‹hkTÖ gNا“|“ïÕ´î\ Bª &0>gî-ÐúQGŽa´5釀Gv3¶ˆ]ÉNs$W$ÃSÕ=;­ƒä' ’Ïùš3¶a“fŠ”yÓˆ} «D·Ÿ w>ÉŠFEy÷›æ >GoRN.>]º&ÊJo[€«íkÎѵXêyì;°A~Ü@îuwˆÈ$«È™ZI¥BËœ3ÈRv¢¼™qŒ/\l9šÑÌtîrq 5Êñv#Ì’¶ã@E CAhìpäZž1”CÒ„eË„ßÄÆéƒ^LоŽÞqtì‘è+¾:§CíFLÃ’[#„¾Å\“”HÙc¼’ùóIe¦¤.ÍÉLh6s ™Ág64} M3‰ÍÚ®LÞ±™D8°i¨J]T~jBd©‚:æ–Hy;áDB'\ŸD=Û¬"Õùìæ‚õF³ø®Ô9“>SÇkÚ±. x/6£µS1êö\*^c>˜î/‚ª¨¬K·›+gàÁˆÊùù.ï*¿+43!Ø–HqÝR,$2²X®íP P Š_df•ñS“1ë ý¢“†ø¢,³‘„åÖB4'ZR"zÃHXòjz«Ã· Q°ÿ‘%yùE2LŽÃêre¨7õ¸×HɃ‹c˜³'CA\£ft!ÉÇ£ƒ‚Óä´: +îIS7¤çÓ“ZÌÒñ|'Ø•è'ɾ´wÙ†[º§Å²ó[K}…òÖ&§ä’¥& ¾{Î p™K)CÈ䈗©ÃÅÄø¢eœz +Ëa4€bÊUªá80îÄ‹Ç5¿fx FÇ–ŠÔæõ}´]tý¹ö±°3QÒÏѪ !sµª¯JøUõü\ßgÀŒ±gb .µ^n” õ Lk½ %ihëÄP…÷±¬&³âÿ¶ÖÃpÈ=¿Âvn‘{!g¥› +™)Ù¶D‘ý¯1pSÜ1ðm&DÔ+ݲr¤7†ö<¶  y ª_úíÖD)™²Ôì•¥¾@Ý`F»baurŸ&Ö™¨ì‡Sle§ÐÓ5™ N'Ž‰£c‹‡·Šªgœ°¯ NÞ“/¬ˆBÎTäÆßLþúÿ¤—KoÜF…ÿJ-MÀ-4_Ero E0@Àodl'vly¢ùõS÷}o‘ì¦2›(–º‹ÅªsÏùGMò†ÖzÊk[ÈÀ´wgü¼çA,ˆǬd×åìNÙRâ‹¢zܦçâ‚_\ä\{æªæ¡Ôw…>kô’!Þå›ôþP6ö¦éËQþâΞa­>•FŽÔïÕ½¾¼×èˆÇ훌ǟчԞÚà›ôO¸Ž™ ‹(S,¼Áõ—fI< ;Üõ)ºƒqŸ=X'´å_}°˜ºatÈH¸Š¼ggm-"sŒ2fÜa¥çXÂØ$9*zD“ç"X|µ×éCC—dhǺù ^¸ÊÜΙ2že÷`°4¹*¥›nØšÏÎRÊV1‹®Õú¼R>QÏ z¦Î€Zë"1ÑVÈR™MÑׯw‰ÿgS+]é]†Äe[ýDÛb¿)·Ågð8‰eÒìtÙé8=€9BÒÞáqÆ’LnŽ½A{>Ç®›ïÆ:M˽ŸsŸºÒë ´Þ®Š3NÂ[žâÔó„—×å)Xݦ¥&ÞÝ{X¬u]¥|ñîB€ Â~O+ó5ó¼jÙ%-oàuzO(;{)Z~ó‹ógYMJÃ)WÌ~%v[×LÖ`Áž÷._¹Qš¨`5T…}ˆ#˜+-Òá"{hÈ;ò?÷JI*r››ï fÐÎxF?\è'£7Î’LØ„:‡9FÛm]·8F´$A¨Ïç8ˆµ)ù9Ç2Ê9”Bÿ= ë&ýTÀ ÿº¶G[„oÜeKä£U2Þ6Äÿj:|-3—k±WçZr~SU,5峚KÞóÔ ÿud(JŠ¼O‹P«T +¤EÜì}r­*r£JmàS~„xîˆÔTr9zÕTÓšJHI½jÝ ì’PTÎ ^B‹õ-´ˆo–ÄÈñÍ‚|¬}c.ú°¡)œ¤÷çÉL¨Q®‡õ`„ÇuLëaÿ0¿ëøÌGæ¢÷*åÍ;\TÎð@ñâϘl9b+wN¹ß>øÐà˜;}Góçªp'…1¤€Z(È;‚WgæùÙ2û ‚¦ 1 +ˆÛ–àÕSàXŒÎQšs»'ÍóÙ5 ¹ µqƦ›@ÜWy;ïòöh®'èó¥¼½CPu‚ä$ò$ %·uoå† Ð{BqEº½¨e/êÂ+Ö™7 +ª‘ oñË[ºopöѧ½­Ó=´J0GÖõeÌhw`ÚíŽÐ®ÙÂQå.Q`˼#°vή3Qº«Kcmðu¾‡8±£ÿø6Ãlä +~?ÛñˆóU¹&ìÒàŸÿc®ªÇÇ7ÃÛ öWZu‰¦·,Sõ4çÊlÉÐh‰øëÖY?;*»Jé"øÒþþÑt½o0ô[ÿàlz ²oÙ=FL‡úEߥT±ò†u¦M¿¨í°"c~Òàçèp¾–Ä7  ìilê  L¢1éDLÇìiéÞ½aÆ7ä!èPûÏ0|‰yk2)]ñ®¬  QåuÈ|§‘¯"IŽ¹¬Þ »‡‹ÿ¢2½ØPpÍØQ†ƒ¥f4¸îô{yÎâÊ-8aÝ*¥‘PÔ®¼Yßéq…²fó]@C˜Õ¬VKé¼Gcí8»°² ¸ÇÙ+^,œþýXK ·Ò÷°ãg€ú“ǸÁ÷ì5\ ä¬]ÈÖ¯~Ð.ÿlÐ…|l|`º‘µc7b‰`ÓdË©V}€ƒ`ãø-h~zãRŽè“»-·|Ø9Ý +fÑI>J ¤³pît¢±®¡6½ŸàbpîÖWuTJ]”R»GOíÐ;°¿D$ï™òÇÿSËäW‚J¾OáúŸi¼ï“"@hŽ«yü[Íq_-nìu22_‰H“Äã(¦8‡/Ö çI +Aœý9ØYí^Ú)õ<0GŽ«§êéö´Ó-Ž¼M«ÖµøX‰å|ã¡qOëÞÂþ\– Gý»áè#Óg¾¯óÇÕ4 ÆßÔÝñ{åt¼i‘z¢Îõq²dÀ]e +µ‡uµÛê‹Ô­ãÿ3dà c,È…PÓˆëµow€Â¬‘]”Ép¡ûõÅu¦y +"y•Žu¿r~›Š{Ý¥“ùX e-GàgeÎ \´=®ÃbÕWêÈÇR5À,\«ºÔ* ¥LCo’diú4î·žEÌYØ®ƒ‡þp,öÞægi„Y‚28ÝÌ~ŠË#­À`ÔÅíî»^’At%GEÔÓôàAzUµ¼8¤ÓßdfÜ„ŽÛú¡ eŽ~‰£whðꨪÕìDð/ƒÏEäA/Nfw]&ýÞ@ÐÇFð±·rյﮅ¶ûëJÅ…òWsЋ‰¡m®ê4;Eª†võ¾\Ï¢£ÑåúBþNkÚEvt:ÉáëºÜV=(˹N¿yóäêÂU¶½@µtr–×¹¶Ã²3‹Ç™;iuvã'´Ü•ª›~€5=ŠŽä à ¨€òél#ûà8¥ÌLj þ•]´d"x| =ºòýêdº«ý]Þ×¾>מ8PR;CŸáPOÀ3^O×ÖŽ> +¡’ñ¡3,ñÐ,XäŽEÇŵìg»êjê\wب•|÷ ¦ò"?‘Ý—7íì”l8é•»øÍV,htÀ$™O#y^ö RKËh +endstream +endobj +150 0 obj +<< +/Filter /FlateDecode +/Length 5524 +>> +stream +H‰Ü—moܸÇßûSðåÈÊ⣤6Ä×C‹îz5й¢XÛ›µ›¬³ãsÝOßy )R»VäUZ…Û«¥†äÌofþsüúöËÕ‡ÕùñòåñâøÝêñæþ‹xõêÍÉ[qôæô¨u¥ƒßÖq»9:þþ/µØÜŸª¿×B‰ÓG˺ªkøï\„„¯x~šÊ ÛYxî¼Ð®rÎÂíÑÂ8yú£ïN¾ûvú6Â÷ñ]0ŸÞÿa[‹“›£?ÿ„Ç{·ºÞˆÅúzùýyüÃÛ?ž­t]žUà‘>â!U<¤Ê©ã!5n¤êªåW´h]U›ÎŠF·ðuÓáß/Ùµ°fQÉ%ü¶r©ÅBœÈ¥ª œD. Ünñþq•‹[IŸ·²Æ?W×Rãï ¿õE.›ªÁE ®]]K…ïÐX'ø%2¥q½´Åoáñ\Z<Ç<Æ­W¼ú“Ä,®À¶‚¿òo§J.qšÊœv|zÂȨ”¢Âorê]£`ï®öìš×x$8ãXK‹7ú'Bã“Ï|Øàé–t¼|¡pÅœ^WV,®¥Ç;¯ñ6ðÂ…XS¼XœIƒw…EðÚoÒ‡ÖÒÀ+/Ä9škÈœgÏy|çR*ƒÆ^xÁá7⹸—Êá^ðÿs7ÕÑÁ¸ËÀãµèMˆˆÃÃdÇlqéRªßüÏ)¼ {ãNÒ…aK¢å³ìðºŸÙ/pÅGÿ /ùUÂÖâl->‡ßJrlïtm ´p]:/8-x|–<žíyƒÖÁÜ1•§VUwÍ~,<¤ˆJX¬ð¯qÏ×8CÑ èøû\<`°|îí‘lp²Šw)½AV6ä1º¼çùª@ªè-lƒÅµH¶3Ýá3°)Óq&•ÑÇ6sJåäÈO’WÝÀi Üâ·§ŒÄÍQb;ŽSä-D‚ÎéÉ…É‚¢Ž(aH*"¨‚jŽƒO¤©qéϙ碋8òçè„òìó'´›1äé™ gž¨…îjÇaZ7!­]ŸÌKe¹âQˆóèfZGA1¦äg·ß…š¼Ò˜‹”ÿ°/Í—½ ± ·„BÝ¡÷nnZ—¶ŽÉ’ŠÍù|ê;c ØË.ÄÅè%fí—¶t¤-ÆÅÒå8ç¥- +kÊ­Ýx*¾[8Œøe!ãæ¥Éo•4—l0-~vuª¶m¨¶>«¶––ý"a>x‘gõ+:é] »Â…Ç–Üÿ7¾«šÄMÑZQpô-Ûƒ´Z9+ä þúY[hÑÅÓú†ß“ñ:˜õÃŒG)"^cÈ<Öôèp7(@Z»âJºÅúk9…<˾𠱓"óFJ?º](ÛŒÎýj¬éd:v5-Ȳ¹ïƒüj†úDX\! P,t¦Úwº Â’éÎÃ>3¼>H#—ºÞÞ„dÉÓ§¤Ã¨aÐ-nµ Å>“[¡ÐÙ%¨\ÑÄÁ™Á‡:LF-—)û?õO—XN®’þˆ—µtL݆u±1ivÜ`˜û•eÀýX äÂ,AwLÇØÌŸ¶•m}ó\ŒíÆ¥ÍÉ»g[îÃ8N„X}zil¹ÙÀñÝ;ËL±z‚ɦ»AÙêÁ§ÑŽ'ˆpʤ|1O¤•á´r{Ò +‹¢yM~&M D*}MÍM›“ij§)ßr´×¥¢Ó„ñÖ†˜ý­‘†*^Zdj{~È ˜HúöÏ ™ð9½ýq@%íÙoØ’‘a0lÂ`èwCÿä`ˆW¤bÑHbpû: n›ñ~I`*z° ƒ@îë œ]b®’ªS5ÏT=osuùH¢^[ΰàÖBÛ¦CòíäÄèæ&Fã«úù‰aë±Ä(mNM «f$F¶ånbä¡U…·©+fÃHŠ|˜u‡(g=H°ip—4OÆ!Žúôe¿íܺ€ß?p3LšuRͽ ƒmH†8aÄ,Øí倴 +¥=uœŒæ:ä—J¼ìªÎdsÞäk€úd±…ÂÖ‘TÈÅR´55¬ž› ^á$ñì\0c¹PÚœœ vF.d[b.è.`R OýÝbÏ£SfÃþøïö¹‚к¹Ñ±Í!sõcÑ)mNŽN3#:Ù–ûZ¸å®@­©ïÔ}GìÊNEišU…T¹àñ†;ÍjomÉ+\»¥VÝ«Ã(O—á²J»cEî³Ñ¾À¿7A©Ÿ‡VÜ—Õˆz,Ãaü| ¤°E=<(ÿ§…´™É íêCæ׎08°9™Áîpó-÷uoð½E/“êßéâTaHøNŽ_A™Õâm?ZŒÃŠ3 B.6ÈJW”\‡!XÔ š6˜ +†¯ç‚ÑxÔîÏë10J›SÁðzÙ–û:,©¥ iüÛw×4 tE5Ñ{ õµ&õ5ÿ¬¾Ö†Î¨¸N4HEš^új¡ë0ÇâçjÊ&ïú&M®Ç‹@²åÈ;PÙQÿûmÔ›¹¤z}Èâí©¥Íɤº¤f[î’º’¦F/ÿ†™Lÿ]q<ûrÓ`LÎ xùw8U‚L#íc&Ñn‡€ÄÔ5‰ÑOQ2W¦äŠ7è΄ˆ]’[´QV^ëódˆ\WuEÅ¥ª¸¥RÜe´”êçDüü\ül{È(â›1üJ›“ñkgà—mù~ñ“´kúCÞ#(­6•´$úR}"µç‚ÚËjîŽÅé]Ü+dÞÅs34]×η¼èQ«ß’Ãĵ¬-ñFÌ]~# Ñ[M%.×9pËÚBLľ˜@–ºV‡˜ü5‰ÙPb42ôEßÉ:jgt²ä1JåÞpÇ<Ñ{¡‚U}†˜Å m)¨°ƒ9^²àY[Ÿ­CHûûö¥'= ˆXö­Æ¿âCþ!Í’KÈ q‚ç€ãž@‘‹Ÿ3DâÅ“ÂÅ“Á“´IBzØ!ÅDRšBÄUµ€’ÊÓ´ºeNî$yî2¸«Ï Ð Dñ¤.&.PD-£2Ðõ¡‡C¼$'IO¦ nÖ߆ÿ²\J- ¬kèqUžHIÓci?Ñ‹ä$AØ1}­yÙO¥b' + Âë«*}×÷˜ߣQ ìTâG2ÙôÙ%R[K…©+2¬ÂÃèµ[$ó¶b})( +&¹€.ahõ#Ñ©Fn!Î0Epé·òMÖ+î¦)Óbý ¥5+–ñ(§­ ÛµUí;]°øNR'ô=¦öƒ×êªKàÅâkF–ï\)RjqP‡º3|k•Ò§ÆbH«¸6\–•Vá^}{šP˜ÊQb°ïE)ÊA&p$4…‘Pû,뢯ÝšºW|Z3†–ÕóPçâÉZÑy.Ÿ@¢`>!9d&Úßeo ÷£Œ ì§æ’„yvMeÇX,jujusP­žJ³}šæÄÛ¿‰/—ÞHj( +ÿ/))ÝTÙ®—X!Ø¢YÎ&É< "êCøõØ÷m—«SAVÉdºªý8÷œïLËy½éZ¬&˜x¿0~†³ Õ åñâ#´µ¹°ƒÆ(DK°‘ð†½é|xËc5g)[Ú|ÆhøÒRP^ð TΔ‚\3¥ËüÏ;[('WËtXf ,8·ÿ ¶”+ÃV‚ß/£­äpŒô؈roÖDúË_D„M{”L¼@9#¯q¦PL¨væ°ÍA‰M%˜öËÎdÅÞ€é݇m‡cÏ– ÉEùêXÒÿ~•z£›rçÎÅÒ3‡ríŸèºè80®5¶…Éл–Š3{:WŸS’ýE6VÛr rŽh8±l_[ö(·ö·Ë¬Eç-ƒ¹ÕÌôzÍ̵-¹·÷.ÿDþL‡¹lô“®YôrÿÖ]þúON+3•å³´Ñ•ÆolŽª54‡OjÊÆTÁ⌕ӌϲö àž` 'îEêiD¾é[ +ÿ`g£AÊx"H¼IËËé°Ž[h!sA8ø˦ÞhDˆè‰~îÖo\:â÷“ùñp'_yPCK™æI?¤eeíŒ}Dð¡ÏWî £®e7Šqó~ÑfÚðjëÝÕAÊ‹ùÓæ´*¢Oø• xn)i( ÙÁøŸ.ÀØ ^@ c™£’ñ/ãõgþ¸š‰(æ +L¯û…àÏ; ? T–úɱ|Òç'ß}ÕMÐlÅq.¸:;㨎XI6+LÎ>ú®Û€t×¼°¯“Ëðõ­z pØê9°Ò_Ž:àÒ—©9.»âò©_ÍMq©§QèpÈÍmÞ(álÊ]uò9œÝ÷Ýi6¯^m•zuæNcÙµêv uîU$·wÉá÷ó¾óÜ°ñÇnm³ÞlÍ—DñìlÄ»X”’Çt€†Óxðuɬ'*ª¼æ:‘»|7Ît6y},·¥â¨Î†*i“àw…¶S2Fù``Ë1ÿâ!u 0Hý£TÍtyÛÎZgß †VûÐ#)òÕ¢Ç=¹í[-”ù(¶J_hK+n-#ꀊ@CI—¼‚® wÏê4÷Ì!œ×¤ ¤ù-ïÄy–´.Æu33É Ç·g +Úլ2ä)Ë3ýv&Ú Ý·õ®ë"XÉù¨Ì|%³~Üé™~ZM ø®c„“î?~:ØÔ»M‚`¥ªÅïÄ3(E¼ÄÄBúîUìBü+äßAèÊ8^“ÖzMZ͉ػŽ'$gÔ¹vœ ³PM=¢}$»/jÛ=(üRôU“ä{ +Ìj~²ת”ƒÑuP8¡¤8«™¸.ç~Z}¡™t½‡èm‰•"ýÐî¥~m¯Ø„&ÕœwúN›X¢¹KSÜðZägª«ö_\)zü…%âa迸‚›UõX4Znˆ"𨇻l^k±ô•3¦ÍZŸ.j)‘qÒ7ŠW#\$ó/YFÌÑÚ™¤>ßþ ›Äˆ(cÛš&„¡¹Ó¡Ç½À,{˜ø³{‹S+¥ì¨„Dz'ŒaGh±7%AÉ €õ>cPè-ÖUT#¡ÚÝ˹ØÁ¹Èmâ?“ct=v¸2è1Û³]Ìd¸ ÀniƒoÒ¼£ÄT»ïô‡¡€÷º2àK©à«›J§2$ê°S™]ÚC¥õPk}UiðYœè«×VGx‘FtP2Ó×3z9ìzs¥Å¸£Åt.Ú)JMù _7 ™ˆ4f“Æz)ú¥ä¦·ÙbŒl ;ø n2€_æÖb«¾JDNùÇ, oïBÂÉA‰ÙÚ €[†gø}Þ2e.V`»oº ^rÓ`vdFG„Dµå­HËž‚Ìúþ°-U]w4“ yr“TÜOý Nêç.†´CÖ^÷0LDÕ +á ©ãMF‘ôÆiÄ +¦JÈiv 'bI½úÌCΑ2&˜E¸ºOäÔ‚* |‰à:³³û.‡Î`¼Í‰¸^q¿Ô†[U…‰G “òËQ¬¥ ¦¶ +†dOÊïj|'ùÚJ6"y ƒ7²1‘=øÖ7§>'­xÛ“†Ð™bl¡¶6È nÜÁ²µáëaÔJž°uÅ\®À0|±áˆ³«Í N]€Ñúf €¯’Î.»ÒJ}!­.õ°ÕÚï(j‰ÀUàצpá)l¡RÞŸÞš§;åÖ|ukã51NÄiçÎIRDZâÁ×~Ï"¡Ây|üÞ7Î"ýሼËÕï˜aJpQZÎx2Â^´™†7!>•„¯ªi¿Ó†TM•Ò®í=ÛdÚûlîì‚GðÞ\•é³\ÜÓäò¸šOæ±­@.ÙO¼vºkæ-óBQ—`y«M.±Q²´× (xPFk°“Çìù“Ý9ƒu,kÔc×ã*å›IÊÚ^u./¦×„W,ëdØ3ª$…·X\„ñuwÎü*¼%¶ÿ#«iVl¡yiúI¹ë€êⳟݺ“4`Ƽñ‚E\î¾èÏ.®(î|zÀ ÎõšÿõÀU£î!bK¶(ï•×·e?&;&!z® t³Î¶Çß h¼½W“VMêQÝŒ%ô {ºI“®è÷Å8%*ݼ3±Ffð§íéˆ0‚äMŠH{©Ûè’¯é‘ÊœY&àTÈŽ èå`•ï+s\í°e8-PôÖáÕ»u”’ìì¾ïpÐov [ê YÀpŽ2œ~8Y9ÛÅTÊ´_bªšý”hÉÊ$ÍãÛŸŽ¼x6/Þ*/½Za»qI·èÍ#»×\€ùtá<{½”EP±ê}3t’GÊKÉrÁ™lpØyÈ‚gxýp­Å­ªò·úê ’ +endstream +endobj +151 0 obj +<< +/Filter /FlateDecode +/Length 1591 +>> +stream +H‰¬Wio7ý®_Á"Ð]ñXîQ|#E‚¤±Ð¢hŠB–eÇ-¹’Çÿ¾sí’+Ù‰‚²+/9|óæÍÁÑÁr}s5™®ÕÞÞè­½ž<-ÖjÿðøH Ç£Lî|€ÿ‹Â«åõ`tvnÔõj0Û¿²j|50¹1µOU&oªÌ+Øÿª<(k}îëP+òJØs7úRÿœŒ'oà¤á 0`p/˜Ç_¯G§wF/¿FïÞëÉüZ góììPÞ½:VÎ6u«BHŸ¤eã#™Ïmhðky©UÖ—¹)½ª\7MS"¶?‡¯tVç•.uf=rÒ­vSí–üÉw&ÏöS·,ž¯ôe …®ËÜSíÅBr` ¤d¨W–/“ä Ž×½±':°TK¤©TÏ€s—R¿ê¥~Ñ«i½ÔWé4K(šÆ«Á4Êœe¼ÝÞ¡´ +±1‘G†RÓ½ìd—I¡J +nLuË2Q–”?‚T=b½/7»ÁmD+DÊ!U´]•à%àLRØr©¬\n;-@²—­ÿTÝff‡¨wîPq[l¡Ï—Øп›Á$î±4yüýÖ-6î±­Rúq¢>Æ~cy®a¨ PE¶yáV½#›×œÒéðAIsGžb-:ô[U#8¬3Aì;F>½ÁUïI’ðá\–퉻\[\çPì€ËÈçÃœ«#ÔvýtnåÕ®Úò;”è2TÉ0¹ådïp)ů¤ì¥‹[>òALÈDF-Ùk +‰¥ç]K¿·Ôpã.'y$—Ñk:.¤ ½ç»²Q$làÀò´MÇ#7½MØ`‰(—jsÁ[&ê@—B +AœaLá÷ F Õz~Ð7øEß.HFü?D—³õóÍDWkÝÍBl®võ+ôüê_"^:ôä¼ôð"7¸ìÐ# †O•MFç÷“9~0]?Lndz/ë½Ó“ÓScL³¿¿¯èè¡¢"…d…Ö +'_òåÄRÛåq×bËåÄ\H+]Ruá-¸ù~£4uúHÚ«ˆïd"„ r[e»-:±õÐ1×¢¸8]¨÷‡„™íe%ôf~ßGe;מP=qw¤†åâv·kXË$¬Ï…°†â×…ðüLfƒCLôÛ‡nãRÊ®›‡Äխ´5¤qÅØÓxH£d°>?ÚxÉ <«H5€Å½»7ă Ïvïß‘âêW¹Hñ[LÀòî ¶ÕD¼_¤> +stream +H‰TR]OÛ@|¿_±¾ßí}Ÿ+„DDTA€j©UU¹!‰B‰#ŒQK=»Ž ­,y½»³³ssÖg]¿Û4«NNô èeózxéáôt6?1«*ë½½wÐm…^|AØ> ]›ê(Q!&¨W0~ü†¨ÍГT_y…>f°A…if/ +—dý .jqqM›žhÏó,Ñs¶Ô—{„ùAÜ }Ëò–M»…bÝ–‹™Ô×çWs°«ÿµKúÅ"Í$ÒE~ðTùˆ´ƒBWyH–„fYÚ·âLf’]´Ò©ÈÁÒZYZ®ý™Œª‚â,dIÇZNÙ§ÌGÚI>{±£*e+xl¤õ x•&pç )!³y͸—æ_Æ=uŽ@®þd*Å#…ÌÄ¥QŠ¿²LÒEÝ^–žéƽãl ÏÄ•ÞË=Ï‹¾×Ÿß/A_î¶/Ýš½í58Ùû$*vʧ¼sàƒQ18‰rŸ¡[‹¯ÐnúAF@pÙ n)Œ0p¹XUqâ3˜3¬öB_M—>Hºo 5’ +endstream +endobj +153 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Filter /DCTDecode +/Height 1243 +/Intent /RelativeColorimetric +/Length 237627 +/Name /X +/Subtype /Image +/Type /XObject +/Width 979 +>> +stream +ÿØÿîAdobedÿÛÅ + + + + +   + + + +      + + + +     ÿÝ{ÿÀÛÓÿÄ¢  +  +   Q!1A"67QVrst”²Ò 235UWaqu“•±´µÂÑÓÔT‘’¡³#$BCR–á%DGSc‚„¢ð&4EFbd£Áã +'()*89:HIJXYZefghijvwxyzƒ…†‡ˆ‰Š—˜™š¤¥¦§¨©ª¶·¸¹ºÃÄÅÆÇÈÉÊÕÖ×ØÙÚâäåæçèéêñòóôõö÷øùú w!1Q23ARaq‘¡±"r²Ñb‚’ÁáB¢Òð#Sâñ +$%&'()*456789:CDEFGHIJTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š“”•–—˜™š£¤¥¦§¨©ª³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÓÔÕÖ×ØÙÚãäåæçèéêòóôõö÷øùúÿÚ ?ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐZ¸iÖëM½R–ˆí¸­ RóÈÕ–yl#!MÏVgæRQÖq¿% WѦ–ðG_FžÆ~7Øí>åë¤Üju4ÉÈ’mMdŒù’Vyg™Hs' jÇê3RÔrÈý€Å­\TÛu¶Þ©KDt8­ RóÚ¬³Ëaé +nz•Ï̤£¬ãžJ¯£Lÿ-àŽ¾=Œüo±Ú<”-_F™þ[ÁFžÆ7Øí>­ó¢\œjuE¹’Mf„jÏIYí"éÄèÊ +íXýFjZŽP8Ÿ°ùµj¼:eKŸ!,0“"5«<ˆÔyýÂnÈü·mgòPµ}gùovôiìgã}ŽÑä¡jú4ÏòÞz4ö1¾ÇiîÓ¯ë~¯%¨pê<û¦d„'Vj2#3á.‘̨J*íUDùÎ`8ÔŸ>=2;²å:M2ÊMKYç’R\{ê1rvGÆìpß% WѦ–ðGFžÆsßc´y(Z¾3ü·‚=Œo±ÚyXÄ›fS­²Õa•¸â’„$µfjQäEåxÌk˜o©óœàF:€ðã‰i +qg’RF£>‘Ó ‚–(Z§ý 3ü·‚$ú4ö3–û£ÉBÕôiŸå¼ôiìc}ŽÑäŸjú4ÏòÞz4ö1¾ÇiÎÒ¢Yˆó#,ÈýAê@ƒ¿‰6Ìg\eÚÃ)qµ) IêÌ”“ÈËÊñ’°Ó|Ç-ö+œñy(Z¾3ü·‚=Œo±Ú<”-_F™þ[ÁFžÆ7Øí9œ)ŒTc³*3„ã/%+meÀ¤¨³#,Äv´rgDî{Cáô8uC-ê\‡bKª´ÓÍ•¡Z³IåžG‘z¢DhJJéÝD¹ÏOÉBÕôiŸå¼÷ѧ±Ÿ7ØíJ¯£Lÿ-à‡£Ocìvœ®•W‡\Œ‰pKì,ÔIZsÈÍ'‘ð‘qŽ2ƒƒ³?jWÔ}!ø?@Å«­#‘j㽤—¡Z³Òy‘Â>‘ŽÐ£)«¥sœª(ë>_’…«èÓ?Ëx#÷èÓØÏ›ìv% WѦ–ðCѧ±ö;NIE¸)×K~›)B´)HÏ"VDym"â1ÊtÜ5ä~ã%-GÙÏÐqêÝ×I·Ò*s‘Ý#4óæ‰9gÀGÁ˜ë +Rž¥sñ)¨ë>’…«èÓ?Ëx#§£Oc?;ìv% WѦ–ðCѧ±ö;O¹Dºé7E6r$›D“Y#>d•žYæEÒçJPÖ¬~£5-G!Ø|ZÕÅM·[mÚ”´GCŠÐ•/®5, ‘>d¹EXBI÷\p“¼å­F¬³ÕضŽ9$•µ-¤'‡¿9ér¿IôiÐ~ýzzÙâ|ôn±Êý'Ѥ{Aøaéëgˆôn²ÁÛô³¢S SÔá8q™m£YZ´ymË1WRZm½¬™ecìgè +£¸ª³ªIª¡¢’²Y Ù5y’.EŸ³¥ŒPŠVÕÖD '{Ÿ•úO£Höƒð‡_O[#ÚÂO[#Ú½=lñ#ú7Xå~“èÒ= ü ôõ³Äz7YÍ,<*zÍ©AuÈ#imè&'Íyê>_¾«XëNŽƒ¹3ŠòHq+ÞÙ]ÛIzš‰Á¸¦Õ¬Ó¨‹B³à̇z57¹\çRJÄ#Êý'Ѥ{AøBÇÓÖÏ/£uŽWé>#ÚÂO[‘íá‹O[žE¨näÔy‡ÃèW–ÈŸ2\¢¬!$ûÎ:IÞ òÖ£V^[‹1mrI+j[HO~r ¸èj¶ª²)ªxž6‚5’t’³"WÞ˜²§S|ö‘gbýEózÄûÄ3YlŽ¼ž)6^M3OûÔÓ;ÕFÜ.Gë3Î7{–ú¨•79n N'a5~ã®!Q«u¶IËoY© ™©¸\™*-;KcY(¶¨DÇnÆóUF9ƤšTû†G°ÈÖ£#õÈÌ}°Ò;vÙ|ïP{BæPÇ6”v•ÀÔ‰(I©Ø/±1²ã52æJ2þ”IõF{©†ã¬¶ë]æ‹ Ž§‰â<öjdä À:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DЈª¬ˆq¥&!IßÞôšôeÌ™çžGÒ¨Qß]¯lŽ5*hKñUí骊QÍ·”Ö’^¼ò"<óȺcåz;Ó¶¼´ç¦®s¡êCØÕo`-­2踞=í¿ÐãElË~—!DzhŒòÌÏ)#Qð ˜L,±2ѽó%´‡‹ÅG ){—;g\œyÝ3{n„©9"¿=LS³8´ˆëRb0ž,ÓúâòáZó>‘$¶JÁà!…^ªÏ½æ˜ÍО)æòæKQ^Å‘X©Q¡IZLÒ¤™)*#ÈÒeÀdeÀcáõ;w¹wÍbÇ›ÓÄzƒ• ÊCêo™®U<Ï™Nú¾Xé™æ´Ò3IimÒÜuQ9ÓV—:æ&j÷3v]6¡QÝmç_ºÌ>ܦÛy—ãn%+BÐd¤©*,ÈÈËa‘–Ò1jÆõ;ž`>€*Q J2""ÌÌö0v¶íº•ÿQ¨XÖ%Aq-è«[gGY¡Ú“‰=+JV“Í1ÈÈȲ2ß8O™È†ÿr·%RJuäõ'Íøù ÕÝgQ¸AÚ+[Ûøy™DE°ˆjL¡ú>•³>ݧJšô)±V—“Å6ëkIæF•$ÈËú±øœÕšº|ÌýÂnéÙ£7nÂV:Ã]©u8Ú.š{;â]IRŽŒˆÝJK"'Q™o‰-†\ÙdŸ<ÝmÌôg¥+ð#Ñw'tý%hËŒ¼WÌС4Dtã#–å^U0©Dé0¤'|ߴ稈ø4ŸO¦,©`ôã{øg_EÚÄâÒ÷Ä!ye¨ˆÿ +ç‘(ëÃâ’ôj›ìU3½XômÂäW´Ï7Ýî[ꢄ ?•p;zY|ïP{BæPö}Ãê÷“x®%¸Éä;•+ÆŸ99çZÓÉÎ %gžö¼óÏÔ<'¤6¯k-—"b+ï6Ê÷÷ã—{ûãOÝú¸³à¥ú?‰ „>à9w¿¾4ýÑ/«‡ý/ÑüG}ÀþËvê2Ûg«?R _@ô¼?Â^?û˺Ž£×î‚~„8éx~#„>à9wQÔzýÐOЇý/Äp‡Ññü.ê:_º úà¥áøŽú>?€åÝGQë÷A?Bô¼?ÂGÇð»¨ê=~è'èCþ—‡â8Cèøþ—uG¯Ýýp?ÒðüG}Àrõû Ÿ¡ú^ˆá£ãø]Ôu¿tô!ÀÿKÃñ!ô|˺Ž£×î‚~„8éx~#„>à9wQÔzýÐOЇý/Äp‡Ññü.ê:_º úà¥áøŽú>?€åÝGQë÷A?Bô¼?ÂGÇð»¨ê=~è'èCþ—‡â8Cèøþ—uG¯Ýýp?ÒðüG}Àrõû Ÿ¡ú^ˆá£ãø]Ôu¿tô!ÀÿKÃñ!ô|˺Ž£×î‚~„8éx~#„>à9wQÔzýÐOЇý/Äp‡Ññü.ê:_º úà¥áøŽú>?€åÝGQë÷A?Bô¼?ÂGÇð»¨ê=~è'èCþ—‡â8Cèøþ—uG¯Ýýp?ÒðüG}Àrõû Ÿ¡ú^ˆá£ãø]Ôu¿tô!ÀÿKÃñ!ô|˺Ž£×î‚~„8éx~#„>à9wQÔzýÐOЇý/Äp‡Ññü.ê:_º úà¥áøŽú>?€åÝGQë÷A?Bô¼?ÂGÇð»¨ê=~è'èCþ—‡â8Cèøþ—uG¯Ýýp?ÒðüG}Àrõû Ÿ¡ú^ˆá£ãø~î•N*WʆVú ™Çuýø哾g§f’m<9ðæ"b·?xŽ•ïµ[ï$PÅï®Ö·¼´‚œ°‡ñ›Ë©1*‡L9ü‘%1÷²x™ÓšT­YšŸ•àÈNÂa½!Úö²¾«‘«ÖÞ•í|Ìݺ"¡·Š Lª.ŠÙʼn~ßROæûÆd”‘©g’sËbREÓ…¹˜…†×,Û·r<çu±¯;sG$¼ÊŒ. +B`Â[_nW*e^ò-„2–Ž"£ÓŸÉ +Q«Y ù9Yðçêxš• –÷,ó»±7 NoNZ*ÙY9yNÆÜI‡‹Ê…#+I§6K¨Î¶%ÛÖÓg÷ŒÅmÔ©G)B7ئ›îI²ò†åR­œg+mpiw·b‘ã]‘náÝ×6…k]MÜÔøí³•E¤¥([ªNn ´)i=³2Q‘‹¬yV†”ã¢ï««o1K¡Ñ„´•µõ÷²'2ÌN ó¹v¤ûnÊjÑ«RUvˆ{ÔgÎ^ö¾C^ÖТ6מöy¤?+¤²Ø1û£¹*sÓNÚZÕ¹ûÍÆån“ÐÑjú:³æ-o.ê:_º úUÀÿKÃñ.¸Cèøþ—uG¯Ýýp?ÒðüG}Àrõû Ÿ¡ú^ˆá£ãø]Ôu¿tô!ÀÿKÃñ!ô|˺Ž£×î‚~„8éx~#„>à9wQÔzýÐOЇý/Äp‡Ññü.ê:_º úà¥áøŽú>?€åÝGQë÷A?Bô¼?ÂGÇð»¨ê=~è'èCþ—‡â8Cèøþ—uG¯Ýýp?ÒðüG}Àrõû Ÿ¡ú^ˆá£ãø]Ôu¿tô!ÀÿKÃñ!ô|˺Ž£×î‚~„8éx~#„>à9wQÔzýÐOЇý/Äp‡Ññü.ê:_º úà¥áøŽú>?€åÝGQë÷A?Bô¼?ÂGÇð»¨ê=~è'èCþ—‡â8Cèøþ—uG¯Ýýp?ÒðüG}Àrõû Ÿ¡ú^ˆá£ãø]Ôu¿tô!ÀÿKÃñ!ô|Ý'»†cÖ j•I¡ª™6®Ž@nW&Ši覔“Iæ½DGžÃ<øHNÁnBUnégkws•»£ºn4ÚJÎY^ýþ(dYÛž~ £m‡xWˆÐ™~—‚—‹í4Óg&¤õn<*zTDDµœ‰*m¢NyŸ–Ï.!œÄV«EçR 7e¢ÛîWf›B•U•9¶’»ÒIw»/øÆ»Ss—lÕ#PæÉ‘w©…¢,XUÔãG“úúBR–T”þ¨’¥¨9áªâjÉ^ÚWn:9v<θšjpzô¬ì”´•ù³Yk3¨iÌ¡Í°âû¨a…ÑBºén%Re5%9p- <œm]4­¤™tŒG¯EV‹‹ÔÕ‰zΌԖ´ÎÙ” +Ôk’™N«CV¨óã1)•tÛyâOð"œtO™µÜzü&¦“\é>ò›b=•NÈ×x‘†â"º·—f/˜³Ö'Þ!žzË4uäñIz5Mö*™Þ¬z6ár+Úgœn÷-õQBF„Οʸ½,¾w¨=¡ó(9WŒû_™ì´¸«±y˜r:€ÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ'üè§ö×ÈP²ÀñŸa«ÞyðÎ)}¶¾ñæ;Œ»>ö}Ãê÷“x®% ݵçU­Ûr4CA¹åؼÊÐÔ»YžCJR€Þ³nʽ£vYoQç."æ×ip$)“7"È})u£ÔG±E°òÛÒ2«SU!+«Ú2kµ#ó¾:r¯8§ØÙ¤åó^—X£n=Sqtª]‹*S$èe÷Ò鸴žY欋<ÌÈe§F*Œ%lܤ›êEì*ÉÖœo’ŒZ^â¾Qñ’õ“ø-r¹p>ªµjé¥Â¨KÒÞ¹žŸ!¥¶¢Ñ–JBR["á2ÂÁW©eI¥±è¦V¬T÷Šr¾r©ÞÔäÑa©wÅuüv¼í…Ôœ:D+JŸ>4©(22õHÇ'Z+&×z:*rz“îg³äwuõ1T÷>G€?;ü:K½w©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÏ^]r@eÙ2mê‹ ´“SŽ; ä! .R”‚"/TÇÕZ/$×z>:r\ϹœXv9€Ü¥[5Šò\]2“.j[2JÕ3 ö‘(ГÈÏÕåQC[KµØýÆZ“~ãêùÝ}LU=Ï‘àÆÿ’ïGëz–ÇÜÉC°6mßxQJá¦U)Ñ©rª´éÆ[)T˜n%m¶µ:Ù–•y‘dgÄd"bñjœ‹M¼µß'Øδ°»ä–•Õšz­ší4Z„tªmét_ Ê’©×Té,©HÞÔBQ!M‘#Q(õy¨Ë¤D2òÄ·Ã+E¶¶æ^G”Üó¼’]Ärý· +ȳ,DTgœ V©«ã[[ûF}É K§½i4œ2=)IäE·=¢CÇÉÎS²¼âÓ×lÒ[zˆËsâ¡]ÚRZ¯tÛÙÖH1p–—ú¬ßÉ•$êJLz;¬š‘¼%†S‰RKF­fjÚf£,¸„w‰n +žVRo®ì’°éMÏ;¸Û¨ rå´› +ßÃÒ©Tk2"3ÚzxL²17shºq•ÖŽ”Ü”v'l¼§Z5RzN0IËk»yX…¹L[Ý͘ipU¢Tnt)ò£ºe—X†ó¨ÐzœÉHI‘äyí銌mxŨ¶—>´h·/&œ¬ö,‹Aäwuõ1T÷>G€+7øt—z/w©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÇ‘Ý×ÔÅSÜùoðé.ô7©l}ÌyÝ}LU=Ï‘àÿ’ïCz–ÇÜÈ×°ní¸-¹„Ý­S7be)À|¶6G¬¼§ìspø¨F\ežZÑ …•H<Öz™|#Bc@ßÁ¶÷0®4uKºïTÈ6Ðo%ºt#A9¤µ’LÓžDyåê +iOwhÂ×Êíê/!=•å;Ù_%¬äqoÌÁú-Úæʺ+5Úõ"]Vf4hQؘD—]Q4DkRH¹’ÈË>—á:5ñ )¨(©FNÍ·ê»Øï +ô0הܜe{[ÖVæ(éDD4pçø[‡• W»h6•1³[õIM²gÄÛYêuÅt’†ÉJ?XFÄVT æù‘' AךŠçglz-&=Ÿ™#Âa˜Ì§ö-²‚BKïò)KI¶ùÝÏ_„tRK™Xà5Ì$£\êR\’O#ˆûŒÄ7&\4;q/7OmÆüÑŒÖëëcó.·?Sí^EÞòØ +E»Wr²7C[ÌÔ(¤ÛWE 8K^IL¶Oš\WÅ™óM™ìJóÏ"RŒ¯w+t}V—Zúºþeêîw¥Æ댵uõ|Žºõº%BÚ¨K¥U¡=t7ÔˆÒ6Ýiiá%$ö—¼e´¶H„ÔÕÓº|çšN›¦ìÕš>^Dcö~’é?@Þç½Ï76苉ªE…³• ê55 ͈ŒŸÝ„§L¼£dy™í<’Fe]ÇG ½|Ë–X ±R²ÕÎù‘Ù«l:>Û”‹^ƒx§ÓK §…JËj–³ãZÔf¥ŒÌy}jδœ¥­³ÔhÑTb£IÌp;€‰ç›Ž…8ë‰BY©J2JH½S=„>¥sãv>gÙ+Ñ8½Ðß„?Zcî?;âÚ»ÇÙ+Ñ8½Ðß„cîâÚ»ÇÙ+Ñ8½Ðß„cîâÚ»ÇÙ+Ñ8½Ðß„cîâÚ»ÇÙ+Ñ8½Ðß„cîâÚ»ÇÙ+Ñ8½Ðß„cîâÚ»ÇÙ+Ñ8½Ðß„cîâÚ»ÇÙ+Ñ8½Ðß„cîâÚ»Ïv,øÓÉJ!·‰'‘›kJÈÕÒf?-5¬ý)'¨ôÕpRÐf•T£‘™è##.Ÿ4?Zcî?:kjï?>È©^‰Åî†ü Ð{pßÕÞ>È©^‰Åî†ü Ð{pßÕÞ>È©^‰Åî†ü Ð{pßÕÞ>È©^‰Åî†ü Ð{pßÕÞ>È©^‰Åî†ü Ð{pßÕÞ>È©^‰Åî†ü Ð{pßÕÞ>È©^‰Åî†ü Ð{pßÕÞ~}‘R½‹Ý øA ö>á¾-«¼ÄmÙ›Œ¥ÔªWδŠ2A®UJ“ IqøKQæã̶ƒ3S*3ÌҒͳÏ"Ñåw[—º—J2k$Þ§ÕÛæawSr³s§šÖÒÖ¿.Ã.zeÆ[ ºGêY’jÀ}»nÙ«^U8”j9úBRÉ ÆŒÙ¸âÌÏ.à"ã3Ȉ¶™‘u**jòvKiÒ•Gh«·°ì¸³r [ŸiÎ×îîE×Rd›xÐd¶à0fJäv•ú¥‘‹."Is%š¼ëu7OÒžŒx«Åíù¹{™è«J\gà¶ÄPàuÝñIz5Mö*™Þ¬z>ár+Úg›î÷-õQBF„Οʸ½,¾w¨=¡ó(9WŒû_™ì´¸«±y˜r:€ÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +Q»_Î;k·žüÉ‹ýÈãK³ï*·CRíûŒêb6/zZÞÇ#ú±ˆÆò²ö6ˆ»¼oçüþØóŠK± k÷³Õq‡Z$)Æ–‚pµ Ô“I-<¤Ì¶–|e°~–<@|&ÝÏ\úÃíi]áXÎ'½ð\s4Qš ->ù×Sí¢üÚE&?Zì'áõ{ÉèVÀ(ïŠD¬žFY‘Õ(Äeü”}¸œ²öeäQîÏ%õ£æg!ÑiÙùßÚàV“ÚTïkbîG猴ïCã{B<óMí>h-‹¹iÞ‡Æö„x!¦ö±w"f܃ˆ˜ðÂXe $í‰ÆdÚ $gÉ-mæH…~ê;ÐúëÉŸ¼K­ûÛóFÌ A° ˜´h”ÚÿîM§F’¤ÝŽ¥*}†Ý4–ð“Èi<ˆlg6©Ó³kÔÛÖeèAJu.“õùÒ%?±* TþâgÀ÷Ém}ì½GbîCìJƒè?¸™ð|–×ÞÆõ‹¹Î1ZôXöäëTh-¸ŠLå!hˆÊT•G‘‘’s#.™ 8jÎ9¾2çdL](ªrÉq_2Ø_ìèg‡þÀÒ~ +ØÌã9IûRóeÎ ’‡±$K‚0"Ìoçíö:Gz&`ùHö¢>#ˆûŒÄ7&\4;q/7OmÆüÑŒÖëëcó.·?Sí^EÞòؼc†åÛØÎå¥h¨!ªD2fkeÄZò2ZKö+Jˆ¸ˆ…Žt*ax¯-4WbðñKÖYíZÿnÓ2ïOªæˆóË´ï8XÏ6Ú©2ìgˆºF¶IÔ™úºSŸ¨5¿(bøñk²ÏÎÆZ¯äì—IöÝ|Èʉ‹Ò_&ß•CŒÞ{]\çVYz‰C„·»ôWK¹|È‹p*¾{ùw |K=5öåß—S•D¡D|…Mlã2².%¼³S†Gý$yqªÄ~P·”#n·Ÿm‡üžŒs›¿RËÇøcPl»‡t¨Ô;j“™OŽY6ÄvÉ ÏJ>(øÔ£5˜ËU«*¯JM·Öj©R%£eÔr¡Äê|ÝRÚÂ˵·JBÛˆ•$ö‘¥RØ##.‘—±ÜîV>ÿ&WnŠ½){¼ÑÀ„ÖF£þqôŽCØðÏHŸI÷³—£C£ä>DÖGQôsØðÒ'Ò}ìz4:1îCÈšÈê>‘î{zDúO½F‡F=ÈyYGÒ=ÏcÀHŸI÷±èÐèǹ"k#¨úG¹ìxéé>ö=÷!äMduH÷=="}'ÞÇ£C£ä<‰¬Ž£éç±à¤O¤ûØôhtc܇‘5‘Ô}#Üö<ô‰ôŸ{Œ{‘÷ð‡N·nÌH‡J€ÄÅã +ɘÍ%¦ÉJŠæ£Ò‚"ÌøÏŒpÆÍÊ0m߯´ýa ¡9¤¬½M]„E…ØmiUmZDɶÅ2D‡ÊJÝyèL­Çr]ÍJR’ff}3«×”dÒo›ìDL>‚n+;ó-¬çÞDÖGQôsØðHŸI÷²O£C£ä<‰¬Ž£éç±à¤O¤ûØôhtc܇‘5‘Ô}#Üö<ô‰ôŸ{Œ{ò&²:¤{žÇ€‘>“ïcÑ¡ÑrDÖGQôsØðÒ'Ò}ìz4:1îCÈšÈê>‘î{zDúO½F‡F=ÈyYGÒ=ÏcÀHŸI÷±èÐèǹ"k#¨úG¹ìxéé>ö=÷#äÛ•×Å{,èÔxtóz—_'N,t3¾y-Z³Ë=™ðµj9Ò•Û~´5»í9F”aV:)/Vz•¶Fî̲&É¡U£ÐÙ§Ôj ”R¥BI0·´ &âRZ¬ÌóQ§Qç´ÌXn>.vi»¥k'™u04çgk7|ÖFlIÜóJÎ=mħ¤ã Qþ¨½á§X¾£6÷1s?Ä÷!n~¦3’¥Õ$?–ÓKhKdš1ñâß2?QÜØ­m¿™¼»›ð†ÎÃKB…"Û Fƒ&}>#Òä¥ä¾·B”kuy¬ÈÏnœô—óÜ~&ufÔ›i7eͬÜ`°°£¢’ºW|ý凥€]ß—£Tßb©êÇ£î"½¦y¾ïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DГ®JµN„ý6Fðã’4(ô¥Y§Až\Ñ„¦ª6žÂ=i¸¬6Ü5 ’“&MJFüê$)­)NI$¤òÉ$]1óMBV[9,ö’¨„H +Q»_Î;k·žüÉ‹ýÈãK³ï*·CRíûŒêb6/zZÞÇ#ú±ˆÆò²ö6ˆ»¼oçôþØóŠK± k÷²ÛVñ“ká¥>³e;sωCÞTãU9PŽ9òKªÞw¶Ðd¾Z‹>¸…B£QÔ›Œ´S’æNþª-7Ø*pN:M)sµoX‡ï+žÆ®ÒEµ†ïÑd¡ÖµT¯&km¤ÌóBâIkâ32=›ºtêE­)¦³ËE+‘ªT„“уOn“vÌö7=sëµ¥w„>ã8žô~°\s/¼ùÌÓ#H™!F–c¶·\2I¨É#Q™HÌöm1GkšìBçºBÁ%%TKY¥'N–JQ ‘oYž\}!3Ðç³ÅÜ#Okû/äI…ëH¾¢;:ŒûŽ°Ó¦ÊÆ`õ‘²ÒêRfYmË!Â¥'O_?Z~Dª5ãZî<ÝMuó—G|ë©öÑ~m#?Ö» |>¯y= +ÂXñCzÏöVð´ íÄå—³/"vy/­3=¸U–|'Ó•låõü?¸m©± L¥¼nÊ$ª)°“y¹)W²¶ó%çêm.2!Æ£;Ùê×|šï:J›Ž¾}G’í°+;p´ÛqŸ˜KRbo©T–œ²SÈIžYó$gžÃØCå*ñªÞŽvçæ?S¤à“y_›œäÛ’z=Fÿ yß hpÝNCë¯&sÁÿ/ ûVüѲ#k€*ì>qÇü;\üÂF¾§'OØûÌÖSûXL)`®3ózû;óJpÜxûK̉‹äåì¿"ñ`Cé`ç>˜“ÖÛÿt|Åñ!õ¼ÑÏ ÇŸÔògÁîsh]d„º%bxïÝäŽ8^"÷ù²I‰@*'EkØ»ƒþeÉKÚ‡ÞG|¬=™ýÇݹæ6—d›Þ¶$nGç{›¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°U+÷n +=Å>J‰¶Ãklí‘Rg´ÓŸ»¡‡Œ¢›D +•v-; +5´ÚŒó3JLýs!JÉÈëÇâ’ôj›ìU3½XômÂäW´Ï8Ýî[ꢄ ?•p;zY|ïP{BæPö}Ãê÷“x®%(ݯçµÛÏ~dÅþäq¥Ù÷•[¡©výÆu 1H½-oc‘ýXÄcyY{F›Ä]‡^ +·óúl?ùÅGŽ¥ØŒµûÙul,OÂøjÃÕr¿TS´©ŽAr£}‡Tµ¾yﺋ€â.!K_UºŠ)5RÙ¹Y¬’û‹z©¥MÉ´éß+^ù¶pjÜ뇇7*ЬÖk.U*T™».¨±ão +xÉ*t”¤‘¯Yé#ÈÏNÁÑF¤êAÍF::Z¥vïj÷—(FÑrnI~m’õ“8ç®}aö´®ð„¼gÞˆø.?¹—Ö¢r +$£ˆãmÈ&œ6–ñ´•’OJ–E‘é#Úyq +3BúŠY©]‹r›~K¾mÇ¥¸,Ém‰JŒ¥ÈÉ.#$¨Ík-; <xE¬Uá£?Y,²½“¹E79ZnP´Ï;]«# ku;ŽŒU•^—TßœQ±"‡ÆöDDiQ8f­d¬óàËad!b  ì“[oo¸²ÂÔ•EvâóËFþ7ç/Vù×Sí¢üÚFs­vx}^òz„° +=â†ôŸì­áhÛ‰Ë/f^Eìò_Z>f{‘+3àÏhÓ•l¿8]rU©4e·máyÚt–FùYɲÖY)ÈûëiR öílÈg±TÔ¥ëÎ)¯£Ÿc·Þ[aæâ½X·ïË·2«bœxP§´Ãv¥Jƒ3›rIT¦.SêËJ’¥¥; nÒ3Ï?PZá›kŒ¤¹¬­bunfŸ[½ÏgrOG¨ßá¯;á-Îêr]y2>ùx_ڷ摃\WaóûŽ?áÚçæ5õ9:~ÇÞf°ÜzŸÚÂa"3#<¶¥øqŸœ ×؉ߚP“†ãÇÚ^dL_'/eù‹záÿ°4Ÿ‚¶3¸ÎR~Ô¼Ùi‚ä¡ìGÉà†L³ùÁ»}Ž‘Þ‰˜>R=¨ˆâ>Æc1 É— ÜKçMÓÛq¿4c5ºúãØüË­ÏÔûW‘w†|¶ðÌ’Ffym3>‹ýœ[…ý)ýÚφ:ï2Øû™Ë}ŽÕÞ‡ÙŹÕ?»YðÃy–ÇÜÆû«½³‹sª +v³á†ó-¹ö;Wz=Ø5ªîñ +­K¦F­í™-¸¼‹„ô¥Fyøé¸ëO¹Ÿ¥4õ5Þz³ïKz”úâÍ®ÀŒûyki錶âs,Ë4©de™màU)K4Ÿs?.¬c“k½§’%©Õ5/»ãøcîñ>‹îgÍþ%Þ‡’%©Õ5/»ãøa¼O¢û˜ßáÒ]èy"ZSRû¾?†Äú/¹þ%Þˆ›tÄØõ(¹dÄÛì¸Ü%!Ö–KBË“Ú•$ÌŒ½c0 +ÕbŸ_“!ãÝé6º¼Ñì/ËýOä€zX9Ϧ$õ¶ÿÁ]1|H}o4sÃqçõ<™Àð{œÚY#á.‰Xž;÷y#Žˆ½þl’DbP +‰ÑZÅö.àÿYrRö¡÷‘ß+fqÂ7ny¥Ù&÷­‰‘ùÞãæès{Ê4e1ø®õŒµØSÎ]§ì\Ì `ñÂ&#W¼ö0ó¡Kíµ÷ˆ1ÜeÙ÷³îW¼›Åq()Fí8í®Þ{ó&/÷#.ϼªÝ K·î3¨iŠ@ؼ èqk{êÆ#ÊËÚ4Ø~"ì:ðU¿ŸóûaÿÎ(z<ÅN#*ri:jÝ&Ó,èacR)µ?ª•µŸgíváÅÉI¥Û|TUçÒžv]z Glâ©Í)%2³Ú½gÂ\%Ä8RªëÔƒr‡«¥eÛÍuöçIQ§4”ýey$–RO˜„w=sëµ¥w„,±œOz!`¸þæ^Úí(«´Ú…5N)²™èæ´ùdo¨4f^¶yŠ4홡jêÛS+ 6BÓ]û©mF…lÅ}4ˆhYÇj\Å6M¢D„»–“"-ºIFFfbÍÖS»‚–”õóÙ^í+Šƒ§¢¦à£ ÛšîÖMÜ0øÓiUÉÌÔ¡MzmUù2ŠšÛˆ‚ÃËB?B`ÜJu‘©DY)Ff8â–ŽŠ³²‹µõ¼ßwQ'%-)]6䮣{/U/~ÖhÎù×Sí¢üÚF_­v,>¯y= +ÂXñCzÏöVð´ íÄå—³/"vy/­3=UÃóð F¢­–Õêm'Šùɺ ¸¦™mÈñ)ŽM†Ù²Ú[2ŒãfDH=9‘p‘Šk¼5רîÛ»•žnùܱIVIúÊÉ,•ÖJÄUŠÕøµD·!&¦¶è‰’G&°ƒn[ª¤¨Ó½žÔ6œ¹’>™˜•†ƒ»›Ñõ­”sY_ŸngÒI(«äۻ뷆G‡rOG¨ßá¯;á-êr]y26ùx_ڷ摃\WaóûŽ?áÚçæ5õ9:~ÇÞf°ÜzŸÚËbµVî{Ù,ÚL³)÷¡UÔäY’]b„ïšpÛÏ5¤³Ñ™pæ;a£éjJ9¬ß˜übå%8hknY<“õyþî³ÊíÉ‹ôómÊ¿jÅcR n9Xy$̈òÖDF}"ã0P¤õ9ý”%R´UÚ‡¾M}ç:Æ~p/_aç~hÇ7)iyñ|œ½—ä^,èg‡þÀÒ~ +ØÎc9IûRóe® ’‡±$K‚0"Ìoçíö:Gz&`ùHö¢>#ˆûŒÄ7&\4;q/7OmÆüÑŒÖëëcó.·?Sí^EÞòØWþxÍì÷†?QÖ»O̵`e½ñÞ`¼ºø¿¥õkžlx÷–ÿ`_€.òßì ðÁs÷¶„bÄcJH¿y•õ(÷aþåõ‘o¹\¯¹’5цֶ c–1ÇBS8«¢o;úL÷½q«,Œ¸r!•iS¡OEÚú^g}æ5kÔÒW¶ŽÝ‡!åpÂþ¡é߈¿ ~=2§Iøý +ŸExüÇ+†õNüEøaé•:OÀz>ŠñùŸäÜñ†qhõwÙ²©èu¨rœBÉ Í+CJRL¹¾2Ì~ጨÚõžµ³iΦš‹z+SÛ³´–írþŃì=?áíˆþ^ß´þ~ãüº®Åñi~XÅyl |ÒÁÎ}1'­·þ +èù‹âCëy£ž?©ä΃ÜæкÉ tJÄñß»Ép¼Eïód’#€8TNŠÖ/±wü:Ë’—µ¼ŽùX{3ûŽ»sÌm.É7½lHÜÎ÷7C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`£Ø ¢+²©·õƻĈŠºÜf]¨¾bÏXŸx†yë,ÑדÅ%èÕ7تgz±èۅȯižq»Ü·ÕE :*àvô²ùÞ ö„?Ì xå^3í~g²Òâ®ÅäraÈêÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DПP¥C«!-ÍŠÜ„$õ%. –D|‘Ôdã«#ãWÖ~ÓééM›Pã7z- ’Fg³<ˆ%'-y„­¨÷Çäú£v¿œv×o=ù“û‘Æ—gÞUn†¥Û÷Ô4Å l^ô8µ½ŽGõcåeíl?vx*ßÏùý°ÿç=:—b0×ïe¢¥QíÛÒµj×[¦¸õz3²ÙE&¢¸Tøm!Õ4L›‰K†§sN¥DI#-‚®¤åRrŒt®ä®ÝÕú²,iÅB +RÒzW²‹²Vvï>]ûB¢\vD»¶ßnã¥7¡ˆ5ÉŠ—IÉJÔ•ÅtÉ­½ÚM'‘d§*sQ–ƒÒNÎ*Í[n¼ºÏ³ŒjAÊ:KF×RwNîÝçÜõϬ>Ö•Þ“Œâ{ÑËÇ÷2ô\hŽå&¨‰R\ŒÂ¢¾N¾Ñ™8ÓfƒÔ´HÏRKidYæ(Ö¿y –§ØüŠŒ? Ô©óàZ×…­Y~S+h¬3¼ÔÐKýR_RÏ›.ž‚ά“NQ’³\W–]Fcx‹MBP•Óã/[>½¾âéá캬ŠRZ«ÑX¦=ÐÂSrY}´6’'P¦È²#<Ë#,ÅMt¯tÛ½ÞjÖÏQ{…ÒQ´’V²Vi§–²ð`u>Ú/ͤg1ú×aw‡Õï'¡XK£Þ(oAÙþÊѾ}¸œ²öeäQîÏ%õ£ægª¶™ìÏÔ„U²ÛÖ.W™Ã¨BÄù–Üe2ÃlÒ1¦ã›M¥ +C +Ì8E™m<öíѦ鶜ÝÛÒº¾nùܱsSJÒѲJÖvÉg«¼Œ±~å‹UjƒIEZUj])&©22ã¸ñ<²R$»ú!¡²#È×´ó1' M¦åeí’iêçË#•yd•Ûi¼Ú¶»e™ó÷$ôzþó¾Ðûºœ‡×^L‹ƒþ^ö­ù£dF ×UØ|þãøv¹ù„}NNŸ±÷™¬7§ö°ðâí¯{Üi¦ªÐ®¦Loœ›ž8ÎÊ%e¤‘$špÛÓ·‹#Ì}ÃÎoM_g=½Ù\ýb©Îih;gŸ5×mŠÇÇ+nì‹R½0æµ.žˆ»Úžvj«È9Ê|”‰’’iI'fZ .…´kiE¨J)¶­–†YÝs”²¡¡$êBM%+úÚwnÖ|Ýe¸ÆŽp/_b'~hÅ>iy—¸¾N^Ëò/ô3Ãÿ`i?lgqœ¤ý©y²ÓÉCØ’%Á ˜f7óƒvû#½0|¤{QÄ}ŒÆb“.¸—Λ§¶ã~hÆkuõDZù—[Ÿ©ö¯"ï ùlÏ«ÿÙl!Ìýw¼R^S}Š¦w«¸\Šö™æû½Ë}TP‘¡3§ò®oK/êhCüÊŽUã>×æ{-.*ì^G&Ž ÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +Q»_Î;k·žüÉ‹ýÈãK³ï*·CRíûŒêb6/zZÞÇ#ú±ˆÆò²ö6ˆ»¼oçôþØóŠK± k÷²ô[´ê•jX³m¬_…eøïKTÙjSR_o¸ƒ}¦·§P”šRDye´ŒÅY*“š•7=’i,•“µî‹šQp„\f¡¥¥{·µfCøÏã½jžŠk©w‚㺒fŸSëqæÅ8†”Ò""òÇÓ…у´iÊçivíg Eä¯*ŠVæMöl8®ç®}aö´®ð„ŒgÞŽX.?¹—°§Û5Q_i‡É— §Ÿ,ÙmzOJœ/Ø‘í?PQ£A-Fz^5‡å¾¦ï ’^o=¬[îBnZ‹¤“T7ø!}J+óT—\¯o5äeë;<£%².7ø_š-6ç¶(1íÉ%oQj”¨Ç-F¶jÆfòÜМ֓<³FYÂ"ÌŒ@Æ9]i4òæí-w=EEè©G5Æì4w|ë©öÑ~m#+Ö» &W¼ž…a,x¡½gû+FøZöârËÙ—‘G»<—Ö™žªá=™úƒPŠ¶YËÅÚ>%H§Ô#â,*dH¬°Q)sc¾Ò©êB•!½é•sHÏQg°TÒR¡Q¶Ûõ“Y«¶µ“§j©zÉ$’³¾»Y÷œ7nxuÈöô$×~È*™•máMÄêÉM´F²%¬›">iEÇ‘Øjn.NÚ)ÚÑ¿:ÖòÔ~kM4•ôšo>§lŸ¹'£Ôoð×ð–‡ÝÔä>ºòd\òð¿µoÍ"1¸2®Ãç÷õÏÌ$kêrtý¼Ía¸õ?µ‡ÎÄR¸©W…¡pÑíéu¸°bÔÙ•,†™=r7²lÏ~ZRyd}1ûø¸Ê-¥u6¯©ß˜ùŠRR„¢œ´\®“K\mÎB+c§ÙsmI5W’åÔÕ,§9PŒ´4Êæ¦I ÿE5ó-9ΖÁ>.šœe¤­“Vy´šØWK}•9ÃBW““Në$Ú²ÖYlhçõöwæŒVá¹HûKÌ·Åòrö_‘xp¡žûIø+c9Œå'íKÍ–˜.JÄ|‘.dÀ‹1¿œ·Øé虃å#ÚˆøŽ#ìf3Ü™pÐíľtÝ=·óF3[¯®=̺ÜýOµyxgË`>}_ùã7°;ÞýGZí?2Ôu„{Íë×ßõSÍÏæî è±Øʇ¼I»—ÖEÆår¾æO1ú8ão_Aø!+§õ¼É´¹z¿SÈ•DbÄ> ×çs´&~ec¥>2í^g*¼Wì¿#Öµÿ´B ûOø{cœÿ—·í?…‘£üº®Åñe~XÅyl |ÒÁÎ}1'­·þ +èù‹âCëy£ž?©ä΃ÜæкÉ tJÄñß»Ép¼Eïód’#€`âå¯*¿VµäTJVšj5Çœ\¿2DJßã­Ì’ëYp©'³#̈Ixyh©¬ÓÙ»v½":N ÙõåuÔùÏ•jãu·}Ü.Ð-“‘VDvÝ\ª¤ftÆÞDM“É+qFy#QtÌ~ç„”#¥,µY=oÜ~#‹Œå¡[]ÚÔ²¾l—Ä2`*'EkØ»ƒþeÉKÚ‡ÞG|¬=™ýÇݹæ6—d›Þ¶$nGç{›¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°]ß—£Tßb©êÇ£î"½¦y¾ïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐÃQ'„Ƚp”Jà2?Xú)Fí8í®Þ{ó&/÷#.ϼªÝ K·î3¨iŠ@ؼ #VÚÄE´éè"ü£åeÚi°ÜEØbmKs^*;2bÑ`Õ•>ò’dÒ225™‘ùq¹Ž:•¸ëR1’ÁT¿žYøŒÕV¡12Ì­Hj [ÄT8”©,3¨Õ½¶Fç2œÌÏ"ã0XÊ)¶¥õõŸ^«²Ñ–ZÊÑŠý@U}©ýz}.š?>…S¢Ékp(dY•+*£:X’“uÆÐI#RHˆ¶,øDLV2œ£e$óDÌ&¤'w²eÏ“†wÖ]"ß}Ö]Jãkm&•¡E‘¥Dg´Œ¸HSúL6¢ñÒo˜ùÔ¼¨Ð’I¦Ú ˆ²ý/¦¶zèÈ~¥‹R×+ö¶s†CTmØ’>Éáõή$“þ4¾qøôˆmGMî[ ‚ô:… +Pj¡ ÈË\‚RRádf ,Ë#>1UŒš›VwÈ›B.+=¤Ì+É w —_¿p®}&Ú¤?U¨B˜òbÆ$›ŠC2µ™j2-„]1q¹5cJªrvVyûŠÕ¥*´íwu—¼Íñ±\ÿ€íðÇúA©ôŠ]8ø”š5:?>Á±_Òv¿øcý zE.œ|FN„‡Ø6+úN×ÿ ¤H¥ÓˆÑ©Ð‘Í1'Ò&æöØžù¡O÷Èø·éþ÷/ÛÜ>Í1'Ò&æöØžhSýò>#~Ÿïrý½Ç¿*˜vÛuú#r2íFˆ¨qnE4¡N ÒJ2%ædYŽ´·¨I=ò94ùÎ5çR¤\w¹fšï÷gƒ™” ʦÔc.4Ètjks-mºÜt%hVFešLŒhÊ⤥RMjroľÂÅÂœSÖ£û‘&¤ ‹1¿œ·Øé虃å#ÚˆøŽ#ìf3Ü™pÐíľtÝ=·óF3[¯®=̺ÜýOµyxgË`>}_ùã7°;ÞýGZí?2Ôu„{Íë×ßõSÍÏæî è±Øʇ¼I»—ÖEÆår¾æO1ú8ão_Aø!+§õ¼É´¹z¿SÈã¸ÉpÜ”*¾¢Úk’¤K¨ÍmÈK’q˜”„Å5]Y%DD“æ‹2=¤:áaiijP½í{f³>cg(hhësJ×µòy0åÝ‹  ÜséAp©W $‹ï›9»Ý.“û?‰÷}­ÐÛ%K‘krÝ«­Ä’Vªl£Q$õ$”l(̈øÈ€øÄXe%í/2TÝàïÑ~GŽ×þÑ +ƒì=?áíŽSþ^ß´þpòê»ÄY•ùcå±üð+¶2â$ëFâ³)J¸c[4zÉ~u^\ru \clÑ+Y“m)äšZ¶ä[6‹%5'm&’´S¶¼¯î+±•=šŠ“w“Wµ•íï +Ï«mU&Ôé8ÅB$Wc1K¶é\…1ùT÷œi!Ä¡kC…©j=De¤¶¨³Ì¬0øuêÆTÞ§¥'t“»kÝk¸¬L½iF¢²kFÑ“jÊüÎÎ÷± æY—Hg!øÀô°sŸLIëmÿ‚º>bøúÞhç†ãÏêy3à÷9´.²GÂ]±×æ{-.*ì^G&Ž ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ+–¤Riæ•O’¸ŒËõ +é ,ö1½ç±+RèrÍJ3>K_ ™þ¡1óÆ÷pú½äÚ+‰@J7kùÇmvóß™1¹iv}åVèj]¿qCLRÆ`[›ÖZ«Ë=4ô^¶f1ÞV^ѦÃñaZ˜ÍÞzun%»Ci‰íoÍ!Úœ­ñ(5+LC,ömÈòêa)Á´Ü²ú+æC¥‰©R*IG?¤þGßòCÄ@­ÿt¦}Psôz{eöWëwÚ›#öŸê$+ÝÍÜÖÍ»D¥7¶ô¶ô)ϺãKÉ9šŽÙ+FŸ-™g˜ù<,4\¢ß«mi-m.fÏ‘ÄMJ*Izͬ›æMó¤sÜoçíö:Gz#àùHö¢V#ˆûŒÄ7&\4;q/7OmÆüÑŒÖëëcó.·?Sí^EÞòØŸWþxÍì÷†?QÖ»O̵aóGzõ÷Æ=TósÆÀ¹»‚ú,Fö2¡ï RnÇ%õ‘q¹\¯¹“Ì~Ž8Û×Ð~B +ä)ýo2m.^¯Ôò?1n‹zÖiðQeT†ûO©RÍf†Þ[œ‰,:ã/%µgÂf¥ÆyF/×WVñïGlTg(úŽÎþÌ©5[]è7 &mÿhÝS錳)5ÉœªÄgQ#‘ÖÚaš4¡&KÔZ „¶¸…DÓPpMÛG-¯=w(jRiÇ|ŒÚMézÚJÖËU¹ËËpGmU „éhé’w´äe’9ZK#ÚY[8…$o¥ž½/¼ÐÊÚjÑvìÑ¿öˆTaéÿlqŸòöý§ð³Œ—Uؾ"̯˯-ä€_1îà•A‰ Gw[4H%ľÅÃOTó’áiÞZJÈÏ"ÌŒ‰*≮ü$ŸR|Ú.Ö ã&à¸ÑŠçÓW¹ZìY§*©ë>Þµ™§Ò§j²-ÔQ56j-FÂ]uRjNy„ñtÅ´Õ$½w?eOIø+x”´ÝVÿsPöœ4‹¿¢ã4j@ÒÁÎ}1'­·þ +èù‹âCëy£ž?©ä΃ÜæкÉ tJÄñß»Ép¼Eïód’#€¤ø…W,Vq ³ë^oÝÒ\—)h‹ä†Ém6ÞDñº”ìÑšO#ÈÏ`¸¡ˆ‹ÐõdÜ5h¼µßUŠlFIÍ©F*¢ÏIgÅÑÖ}œÅ:~ã‹mªÿ·î(ŒBw&htYŒ¥ÂR”š¥,Í’Ëö%µ\Cõ‰Ã¥= EÝg).w³YùÂâ’†œd¬Õ£̶ê-ø¥.ÀáQ:+X¾ÅÜð ë.J^Ô>ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€‘âs«M×T"Zˆ·Æ¶/(‘¢ÃqWWŒË«ÌZëï óÖY£¯'ŠKѪo±TÎõcÑ· ‘^Ó<ãw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ'üè§ö×ÈP²ÀñŸa«ÞyðÎ)}¶¾ñæ;Œ»>ö}Ãê÷“x®%(ݯçµÛÏ~dÅþäq¥Ù÷•[¡©výÆu 1H‚= ­cSï(b1œ¬½£M‡â. Áp-.ÑG~±cŠå%Ú@Ârqì%!–z“Ü’ÔY+†Ê_’–œS -z㤓4 Õ·I)YŸ` +cwn“¿ìg­dÛå9[-Êræ­EÂI…¹øREꋪX*ux²•¶èYw·b–¶:¥.4c}šw}É6X,½.›òˆº¥×g®Ø’§,DuÓqn1¡&N¨””©™™i2#Ø â¨Æ“´e¥·´›„­:ɹÇGUºûìJâ4†T¹úÂïdjßIW'>ÈüH><=©|,™1¿œ·Øé胃å#ډ؎#ìf3Ü™pÐíľtÝ=·óF3[¯®=̺ÜýOµyxgË`>}_ùã7°;ÞýGZí?2Ôu„{Íë×ßõSÍËggY¸w +̵«W=L¸•i2#Õk±j{Úèòâ÷– +IF½hF£Q§i+aæB¢µZ›ãŒZVŠq‹ô²Ï>m…•pÐR’½äÓiÛEegn}§ÉÄ[v×ªØ ^4»96¢œ©7–”Ô×,ªÐòu.ºmºf´©• µ,ˆ’f¬² +3œj(9i^-ÉhÛEäÖkmÏÕXBPrŒtm$¢ï},Ýò}ç,ÜÑb7±•yžìr_Y½Êå}ÌžcôqÆÞ¾ƒðBW!Oëy“irõ~§‘ó1aUø5;"«E£Î«3O-ÉÑ`­ ZÚr1¶DâЕ³Ï#3Ú?xmYI¥xÙ7¶çë¥ê¸¦ôgv–Ë2ŸZÄ9¶ÝûG;áäªä©®Óž7ãå—ÉÛf{þ¤èÈö#ag°LŒ œ”}[_^yßaN¥¦´%ëßG5—«m»v–¬ÛŒÚ“›xŒœE!䬔y™,¢™+?W>_{Ï.—ÞY$Õ;=jöèžk_ûD*°ôÿ‡¶#Ïù{~ÓøYøòê»ÄY•ùcå±üð*¶è[E»º«oGo ©WŒ´G”¶Ó>¹ãkñÐKF­é RTâOa©DG¤È‹ŒZ`ªh]é8,³QÒÛÜVc©ïš+AO^NZ;;È6‰„²¥¿\}ÏT#i/ ù%›Ílj³me©E“¦J4ptË!eé*?ÏY/ï_àUz.–ª1ÞßÄѱšf €=,çÓzÛ஘¾$>·š9á¸óúžLàx=Îm ¬‘ð—D¬Oû¼‘Ç Ä^ÿ6I"1( ãÆ +.ѯÚí[ìÄØ®-Ö]œÕNÜ*õ* «JtÜ6¿K$Ë#2%žYç°h°s¨à’«wf§¡'㙜Æš¨äåëY]8iÅlæÈŸð*Ò¿0õù”ª´JÊ-RTê·Žt§–Êô+KiŠ´‘Gú*=$!âêBªVÒR‚Q³Ïß=¹“0”ªRoŠã7¥xåoU%–ÇdYÑR[€¢tV±}‹¸?àAÖ\”½¨}äwÊÃÙŸÜpÛžcivI½ëbFä~w¸ùºÞòL~+€ýcmvó—iûó+æ%¹Ë2+1í¹f\—n\þÄ>ð—ƒù«Ññ_3õ[‘1…d‚Uœú‰d’9qL’G·"Íí…ëœ'G¤»ŸÈp}^Šù–wrçÜAÃŒDb³qÛŽA‚˜7”û "[„%“n(öä|B«tñ´ëSÑ‹»ºæ"Ësð“¥;ÉYYó£öønð±q‡êìaµÅ\ZU(âʦAßZQGŠ”¯šQ‘4ylÏiûAÂ¥-8§+¦ö³ñ7:5¦ô%%-4¯©O$»·ÒRõ÷5>û¼Ã÷Èw=._½Ôû#É.íô”½}ÍO†Ì?|‡xô¹~÷SìŸ2µ^:uFx-z%rc>ÂTªjr%8ÚFy/€ŒÇê4àš{ä5®sólÅ* ÐýÿhÖìéôªD¥Õ#”ËÏ¡o2óÜi,!J2F’#<Ȉ̅–qPšš•žŽq¶V¾Ò» 9ÂPq¼tì¥|î–«†ÇÄì/¶iºÍŠí ©òVìåÌšdK—-Fâ il‘¨œY¡$ªÈh™UÒ­%uRöŠI(æ’ÈEU¡Ó§m)6Û•“o>nf^!Bh@ÒÁÎ}1'­·þ +èù‹âCëy£ž?©ä΃ÜæкÉ tJÄñß»Ép¼Eïód’#€©—6ß³f_( b +mì’ûòà¿DL§?Ga,-&ò–GåS³",¸…¤10ÑŠ”[pÔÔ­Ïr®xZšR”&’®œoùº';Âë,×àƸ/ÈUŠ<8…¨lQ‘ÒÞД4£x–¥’-¹ùn1ùÄקVíE©7{é_žï#õ†ÃT£dæœb­m;%e™< +ÒÈ¢µ‹ì]Áÿ²ä¥íCï#¾VÌþã„nÜóK²Mï[7#ó½ÇÍÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø)Ö#[ui·5IøôÉ.´§4­ ©I<’ž"Øz‘PWk¼­«娷ñˆÒÓDe‘’S™}áDËuãñIz5Mö*™Þ¬z6ár+Úgœn÷-õQBF„Οʸ½,¾w¨=¡ó(9WŒû_™ì´¸«±y˜r:€ÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +Q»_Î;k·žüÉ‹ýÈãK³ï*·CRíûŒêb6#z[ƧÞPÄc9Y{F›Ä]„‚àZ]¢ŽýbÇÊK´„äãØJB),ø÷ +b®•TLØê‘âI'ÙAj[­J%¡%³5)9‘˜ú¾õæpë—-;-»‹!Rm ÅŒõ ÄÅ°ÂK$!·×‘©),‰&|Yp,£;ÍRrçzm]ö…)C(:ª+RÞÔ¼Km¹ú$´*“±b×Ñ&UAÙ 7$S>l¥¡ž4l-I)N’ȲˈUc[º^­’²QwI_̶Á%fýk·væ¬Û·’'a\X€pÊ—?X]ì[â©#ªäçÙ‰çLJµ/…– ­Ù7u±\¢ÃZüè®°Ú3$–Y¨ÈŒòõˆÅn¢§5'Ì˱ӋKÿÊgzz'KöÇþˆi8V%áó)½[WÈýå3¼ý¥ûcÿD+ ’ðù@–Õãò-Fç|#«á,Ôj¼˜Ï*kìºÙÆRÔDHA¤õkJvúŸŠŽ!§ä¹Ë -I;óì,`«'TüCݧ†8aqÔ­Zäéé©SÍ¢†)²BwÔ%Ää¶Òdy¥D-èî]ZÑRŠVz³H©­º”èÉÅ·u¯&úÎöðwîê·¸ÒüÛkl_ixf–×öXûaØ;÷u[Üi~p-m‹í!Ã4¶¿²ÏÃñCðq$fsê¤E´ÌèÒüàZÛÚC†imeœÛ/zV$àuV硺·iÕ8ПŒ·SkRk%™¡[Kƒ€Ç%'FºŒµ¦ïöYÛUU¢åNß9bü±É$þ@øït=jU—xÚE:î¶è“#SªQÕÂrt>܇5)²Ž“3Ó¤ˆó2Ú|-ðQÓŒ¢ã&ž×ÊûJŒ|œ% ©F.:\kÙÞÛ +¯O¯M“k5`/ìÒäTQ)fÒ§òZ–¹É˜iB­;W°³OÌøÅÄ`´ã= +—’âÛ%m¥¦÷¹SÓ§ii7ƾy¾c[DÙ >ô°sŸLIëmÿ‚º>bøúÞhç†ãÏêy3à÷9´.²GÂ]±$ªýûmÔ˜z1ºªU:Iô-Ä’“›§!j4·žÞ`³>‡ +ð„QŒ®´ž­{-ÎHÃÎsi¹BÍ_EkÕ¶üÅ¥*'EkØ»ƒþeÉKÚ‡ÞG|¬=™ýÇݹæ6—d›Þ¶$nGç{›¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°]ß—£Tßb©êÇ£î"½¦y¾ïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +Q»_Î;k·žüÉ‹ýÈãK³ï*·CRíûŒêb6#z[ƧÞPÄc9Y{F›Ä]„‚àZ]¢ŽýbÇÊK´„äãØJB),â—äGêÅË+*y÷é•šmšÖã‘ÜJR’é¨Ìˆ½Qõk]«Í%©ö?"œQU|áݧn³^Æê¶QéÐÐp*hç&.–’[ÊÈä’Ô´yS=9™—ÐVp«9hÓ”®ÞjNÏÀÏQJ4â¥R0²^¬¢®ºµ–î÷ïJ$é¯Þ Ý$‰jiÙ¤®˜Ñ$“Є,Ï|"3ÏYlÛ—®ÆRÞÚõtrÔå¥ÏàX઺‰ÞZvk5«Ä›…ybÃ*\ýaw²5oŠ¤Ž«“Ÿd~$GŸÔ¾[qJ[aÎ4X犽u#àˆì!­æbêrõ>¯‘Ƴ1Üè30ά™øÝPíwûÅÔ5®Óñ=O±ùŽÚþÑ…ìE?áíŒä¿—·í?…“áüº®Åñ]~XÄÜþ@øƒoœ;–Öµ©Õê%º™ñ'Î~«ZŠÌ¤¥1”ÚÃHyHNk5ægžyÁg„¤¤¥&œ´mêŵvï°¬ÆUqqŠqŽ–—­$­m»Hzɾn@Õ2V#Ù6ú#OvžpÙ¦Å}é\ˆá6©[ΤÐR ŒÛ"#"#,³§J4íêT•Ò–¶­~l—79_ +Ò©{Îœt[ôbïoÎÍêØhY ñ¤|K9ôÄž¶ßø+£æ/‰­æŽxn<þ§“8s›Bë$|%Ñ+Ç~ï$qÂñ¿Í’HŒJ?ñJü±\¾*Öÿ‘m +Mq’]ªÜÒ"ÓbIY¥?¢6ë¨RÞ-¤\Î\û Fn +JmG<¢œŸrÔgñu©©è¸EË/ZmEw½g%ÜÓmJ­VjWj(Ö• 5AF SˆÞuÆ)Sœšg™´g´ˆ’Zˇ ÆÔP‚æÜÒ~³µ³|Ûr>àiéÍÊÔâ¡'U^÷ŠçÙŸ¼»b„¿…Dè­bûpÀƒ¬¹){PûÈ³?¸á·<ÆÒì“{ÖÄÈüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒvë»â’ôj›ìU3½Xô}ÂäW´Ï7Ýî[ꢄ ?•p;zY|ïP{BæP1ò¥7MÙˆÉKQ÷3ö£v¿œv×o=ù“û‘Æ—gÞUn†¥Û÷Ô4Å lFô6¶=O¼¡ˆÆr²ö6ˆ»79À´»EúÅŽ+”—i ÉÇ°”„RXñ.dÄU®™òU!ÔRB+i“i[ã‰2#24§3#Ëaú¾õæƒû™Ÿîi‡š5™xPf&î§HTW¨Í¹R}“l–·£Íg'sJV“3R Ë237n^¼d6›Ñ“IYó­ZÌÒÁE+ÂQ{âvÓŠmÝ=Mf[¬»ê÷%2§M¯@ƒ +¥oL*D”S¤-øæ¶YmD¢5¡“2Qf[KÕâ*¬\"š”nÔÓ–jÜí¸)»8I+ÓÑŽNüÄÈ 2¥ÏÖ{#VøªHê¹9öGâDyñáíKáe·¥°ãGG,Uë©@ß`ù}o3S—©õ|nβ¦_/K‰M‘¦´Ú\f+ΓNKÌòR5d“ZKn“2̸ÚµU%w{s´¯n¾ÂE8i»e~¼½Ç)¢`ÍÁ9̬!»zœÂÍLª™ÇI)9æ–ÛW6â¶e’K,øÇââµzÍêQÏøc¤pòzòK[yÅy)D*šP½i&dW–Zˆ’¢#Èø3áÈN†µî"ÕVO±—‚ÚþÑ…ìE?áíŒä¿—·í?…“¡üº®Åñ]~XÄÜþ@øŸåÊ«\6Å­Hµ-ÚÅNdYÓy"äl—±£PžÔWéh€…ÕP„JLGnA ›Ô—sR§j¶æ,ÔV’§§SJV´¯ešººó*œžƒ©¡OF¼l›z9;>û0|;hÓŸ€ÒÁÎ}1'­·þ +èù‹âCëy£ž?©ä΃ÜæкÉ tJÄñß»Ép¼Eïód’#€€),¬L¼®ÊJ™DvÛ·ž(±1%"¡"RÚC¤é6áhc%dY–jâ1`éªTÔï-)^ÖÉ$³ë+ÕWV¤¡hèÆ×¾m¶®¬¶¦Ùô¬:Å×imÐ(ñS§Ï™Oz‡&K[ÜvœBTÜèjYµ©D¢ÐâRE¨ŒˆJ•WV‹»“Ñq¾’Mfùž¾Õ°‰*e”V’–Ž‹i«.uªÛÒå +R좵‹ì]Áÿ²ä¥íCï#¾VÌþã„nÜóK²Mï[7#ó½ÇÍÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø8=SíÚ4·`̨oo´dKFôáäfDeµ)2ãé‰1ÃÊJéyT²9²KI)'™—¬b1Ôë¿â’ôj›ìU3½Xô}ÂäW´Ï7Ýî[ꢄ ?•p;zY|ïP{BæPö}Ãê÷“x®%(ݯçµÛÏ~dÅþäq¥Ù÷•[¡©výÆu 1H‚= ­cSï(b1œ¬½£M‡â. Áp-.ÑG~±cŠå%Ú@Ârqì%!–qûºžÝZ…[‚ô”ÆnT Œ-õùVPë+BœVÒØ’=G·€‡Õ÷¯˜jëÜüŒÐ¤]±£}T#ã…)'fÃr3|´¥¤ÞbBFÚ Â9Y’’›#ˇ€Æªpmɺo÷K_×\޶̽æF3QQJªµ;èþæû=þâÛîdS©·e]«UǪէ&I•ãKô¦÷å0ÒM-±#š4‘$¶–ÌÏ.!SZ:1¶ŽŒZKIK+·Ì[î{Òs––“”“oEÇšÜå‹ŸS‡IiR'Lf+)Ún>êAeÓR̈V(·¨¶m-yv]gu&Ržä8· Vf)‰FŽíAå(¶ð“NÎ35eê‰ÐÀTŸ5–Ùz«Ä=Ð¥ ´®öGÖ~þ…ëJDdJ"<Œ²2̳ÈýQ« ß3úÃ*\ýaw²5oŠ¤Ž«“Ÿd~$GŸÔ¾[qJ[aÎ4trÅ^º‘ðD ö‡Öó1u9zŸWÈå˜Od꜆ Úëî›D³LçÓQR…fo‰Z $Y™ô²Ú?8–”s“ŽzÖ·ÔJ¢®ì–—Só,ýÙ.éºXŽº…j××OiIi˜õeJ’Ûi,Ì’‚x”¬²âÔbšš…6í)ÆúÞ—‘e-)$´bí©^ïÌ 5媊$Ù’z 9¥\Ég·gÒC&½Å-WtûE඿´C¡{Oø{c9/åíûOádè.«±|E—_–1·?>1‹ö®U™…TĆ)„Ô]lÆ‘Ry$o†JRzÓžy™bf¥H»S½ß2ê"biSš½KYjmÛYÇh{0n¦Ì:­"Ó¥JaF—£ÉŽâÝiF“Ì”•%ÃIäeøGyckAÙɦ¶å÷〡5u´ùÓºó,H¬-ÒÁÎ}1'­·þ +èù‹âCëy£ž?©ä΃ÜæкÉ tJÄñß»Ép¼Eïód’#€®Ø›iàÅÁ_ŒÝéã*+²R†Úߦ”I®§£mÄ(ˉ:½b8yÕŠzV粺+ñ4èÉ­óFü×v~hì\#³°Ñr¶møô÷d¥)yôj[Î%'™%N8¥(Ë=¹gá[:ÙI·Õü1ÞŽsŠIíÖüIE$€¢tV±}‹¸?àAÖ\”½¨}äwÊÃÙŸÜpÛžcivI½ëbFä~w¸ùºÞòL~+€ýcmvó—iûóö}Ãê÷“x®%(ݯçµÛÏ~dÅþäq¥Ù÷•[¡©výÆu 1H‚= ­cSï(b1œ¬½£M‡â. Áp-.ÑG~±cŠå%Ú@Ârqì%!–qËÆžš½¿^€¹Ž™Tù¬)ç3ÐÑ:ÂÐkV_©NyŸ¨CêÊÝ©÷4ÃWVê~F{[t{þç Ð.ºEõA—O°›yº{¨µ§ÜJ"“ +SM©$¹$mùSAd¥m,ÌijÔ„$Ô£$êëõ×<“Û—ÈÌÒ§*‘Z2‹Tž^«æOW«ŸÌ¸8 wU¯kyú^ä§×]ä§K´ú{Ôò`›$’˜y‰KK©Vfy‘l2ÊJ›I&²çjWÏZh·ÁÕuSm§²M5–wºGÂÇ 7³±R¥jP® +Œ¨uuªc´cŽ”­&¦•¼n6ën2²$‘lYd|Cî´èéJ)4’Ò¾ËÛ¨ùŒ£ +Ú1›i¶ôm¶×Ø×1®•qáúÏ­û¾ƒ[¥ZìTiµ*ŽªRš#y´ÈOï=V´­)"V‚.†[EŒjF§îrŒ“ªàÓRÒçvã>²µÒ•?Ý!(ÉRÓM8èó+ñVzaÍù¦œãZ­œÑÿV($¬ìh"ô’{R<ƒò~€Rçë ½‘«|U$u\œû#ñ"<øðö¥ð²ÛŠRØq££–*õÔ‚ o°|„>·™‹©ËÔú¾G2ÂY¯®mJ†›zEv5j2cʉÃjA!§ Ô¸‡Œ“¥E·VI2Øf9âbšNú:.é½WÔK£&­{¦šê'Ÿ#ÈXl¤\´Œ9¯½6žg!““PŒã -%±n")›Š$ð™e·`­x‡WÕsŠO'h»çÛ‘9PPÍFYgk¯»2×ÞT˜uGœ258Ì•«"ȳRTg‘}ñMY¥²ÅMW¤›|é—‚ÚþÑ…ìE?áíŒä¿—·í?…“aüº®Åñ]~XÄÜþ@ø[mz”ë®Ó¸"D¶j-S¡Tä–yFdݶòy´) %))I–ylÌZ`ê(ÆQzKKG8«¼¯‘W¦å(5¢ôt²›²»·‘ÀpÊMù‡ER§ÓØ°ÓO¨Õ^žˆÌܪJa¦I –ÌvÒÖZHÈÔ’Ùš!.ª…]ï—Šµô3y·÷؇EÔ¢äÖ÷i;ÛNÉz©}×/8 4zX9Ϧ$õ¶ÿÁ]1|H}o4sÃqçõ<™Àð{œÚY#á.‰Xž;÷y#Žˆ½þl’DbPûˆuV~¯‰QÊ™cTrÊqm̬ÕÒÍJ:m$ƒiFÙ¶e©$J-¢úU¡y­ñctýkþj-NnÔÞ•¸Ò³KF߉‡Vµ©¸­qÖ)ÕGž“R‰O±ÍóL™N﮶òÉDlºkO4ƒQhõ\¥iFNZ::-Ô²²Í[jë)/u(ª’zZZIR»»ÉßcÈÕ¸©Ðà ۱¶Ëid{E´º}1”“»}¯ÌÖAY.ÅäyÇäý€2¥ÏÖ{#VøªHê¹9öGâDyñáíKáe·¥°ãGG,Uë©@ß`ù}o3S—©õ|ŽuƒõLºÍTꔶ«PÊ3ª£–sXKn%Ýh.NÌ–FdFG–c–*7IÝ-[VÌÉ”%gk7tÖZÉ͇j[ß¹mÅÝ5©Uo®°ÜD0Ê’ˆ“)hRFÃÔDG™‰ZSšÑ–„T•®Ýû‰ãî´›YÙ-…N¸9ê¯I&ã2Vd„Z’£È½BÌ\SV²Ùbº«ÒMíL»ö×öˆt/b)ÿlgeü½¿iü,›åÕv/ˆ²ëòÆ çòÀ­¸û‡ò®µÓ*Sí ÌÓÙ}.3u0¬¹µ%Y³!*-è¶sDddg‘‹ eNë×W·þ×+ñ”]K5 í~:Ë¿˜©ÔìDŠ^›K®`ýºô×d6Ò¶dÄ«¡j"JÍ $­$G‘íÚ^¨ºT*Ï8Ô’öÓ‰G,E(e:p~ÃRð5 eM`–sé‰=m¿ðWGÌ_[ÍðÜyýO&p<ç6…ÖHøK¢V'ŽýÞHã…â/›$‘”Æ ¨Uê½ÉS¶°ê¯ +cæé&´çµ-:H²[ëÔÛ‹ÙÂi-™ ¼-[ÅE:‰®Žk^“JÒrj›O¥ê½[Oïs¾ a¥Åv»J·0Ú% +´ÌW–u +iG• Ú"-h)ld\×e´tÅÑ©i9·²•Ó×–LåƒÄSœÔT–yÅ©-Nù®¢óŠ@ +‰ÑZÅö.àÿYrRö¡÷‘ß+fqÂ7ny¥Ù&÷­‰‘ùÞãæès{Ê4e1ø®õŒµØSÎ]§ì\Ì `ñ{ „\R§4£}ÜõóežeÖÜÍJ\EÇ6DšÜ©UJ³“$ȯR“K”ëÊe´’ÊT¢4d’æ¶fy–[6>\T´RŒZJ2ÒZî\à#Æ“ÒnM6åkd{XçJ8ó­›­›þhI¢”æÛ“RŽÔ†ÝL´! JPëˆÌÈ“Å™íð“ãGEËI,•Ö§~c¶2Ñ–’ƒ‹vnÍf­ÎTš$Öí‰õU“‰o\S«3dÕßb•dïÄëÏIçãδ‚AdDy¥?|\ï +iiÃEE(úÕ-e~¤ÊEˆ”Щ¥)»½W»JÜíl4í“Q¶Ù¯ËRj̲=Ymü£.õš¨êWØyÃèÃ*\ýaw²5oŠ¤Ž«“Ÿd~$GŸÔ¾[qJ[aÎ4trÅ^º‘ðD ö‡Öó1u9zŸWÈåxgvӭïAª?2$zÄ4Å9´ü¹&1¡Ât)3N¤«-*"23!ÏIÔJÖ¼e{=O+èÔÐnüé«­jç9´êÖÔ£×`]µªƒÑ”n&àr"$¨’dHyjtÈÐf|ÖÃÙ˜áV5*ÅÅÆ*ê×Ò½¼ÐЃOIäï’·ÞV›Ýþ%UÝ$ñ©+ÒžêJ"õ 1gMZËeˆ5^’omË¿mh‡Bö"ŸðöÆv_ËÛöŸÂÉ°þ]Wbø‹.¿,bn |öô‹C¤Á•sÐ#Õ\‚•¦9IÔ´ –djýQ ó2/,F$RÄJ•ô]¯®Ç +¸xÖ¶’½µk9=Ù£[,¡Š="=¤”¢,fÙ"OK˜Is©)ëmö»Ÿ¸R>*K±$}±Ì襃œúbO[oüÑóćÖóG<7SÉœ¹Í¡u’>蕉ã¿w’8áx‹ßæÉ$F%ÊÀë}j]Å6Ò2©)ÍùÙR™ä…›„DY‘:jJr"/*DBTqSŠÑRi.e‘XJs–“Šmó¼É2,8ð&bÇi†Ë ¶–Ñø¨"!¶õ’RKV]‡°>@áQ:+X¾ÅÜð ë.J^Ô>ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÔßÀëMþ{¿Ø×ïýGYñ! 2mžKAŸ)>øIF}å1šI¾¢ã-ˆÏ×>¼!F‹zò$:–8»÷AÓý ›hºD_”ÇeE÷Æz¥uÕóä‚?] ù‡ëzGÍñŸB5í1¼‰æéz™¤ÿ«/È?Š?J¡Ëé·D*‰’5NêW³?Xø p•'ªšg#OØ£v¿œv×o=ù“û‘Æ—gÞUn†¥Û÷Ô4Å lFô6¶=O¼¡ˆÆr²ö6ˆ»79À´»EúÅŽ+”—i ÉÇ°”„RXñ®::n*MV’· ¤Ï‰&"œ"ÌÐO´¦ÍD[3ËVy©ÛÜÓîw _-©•…½Ï³gk¨±míVÊ ºYøÁô›Œyó|×èe—5ŸO„[¼t“Ðãñ½g¶û6”Ë4¢·Ì¡ÅõY5äË cÐî + '˜¸îu\Té­U ¨zÒDMèdÌ##<Ïnܸ…uiÆ\XèûÛó,¨ÂP¾”´¶d•»…‰8=mb±SW]eþH¦-Ç!I‹!l=n&œÈóȸHË`ýPÄJƒz<ë<®~ká£]%.lÕˆvV_t +Õ:ã¶q%S¥Ó£? +4{†o¶Qd)*q­ú)4¬ÌÐY(Ó™d'C 'Ã)5wÓËV»í Ë8µ(O8§e$šÏ^«l-ƒz´§^Z²-Ypg–ܽLÅK-×Yý€á•.~°»Ù·ÅRGUÉϲ?#Ïj_ -¸¥-€2S76âíc¯[¢Ø¶ T)µ…A6\~ªÔuäÄt6¬Ð{Kš#áõÆà ¥ +QŒ›M_™½lÊ×ÁÕße(¤Ô­Î–¥ÚGü­ØûÔ5'ÝÖ~a+„(tŸÙg?F¯Ñ_i|Ç+v>õ I÷uŸ˜8B‡Iý–=¿E}¥ó=y›™ñö\wØ;”’uµ¶fUÖO-I4çÁê«th/ÎeŸ»VÑY®’ù—š—ƒ÷];s­;ÎK¸bÓb°¨Å%²mN³)Iãæ6¥;ƒ1Ÿx˜…G“ î2ê2Ô…¤¶(³#,ËÖxX©N)æ›Ew£ÖÃ,‹qªé¿Ô_F5þ…O¢¼~fÒgµ'œCêºoõч¡S诘ô™íeÜÜ{ׯjmÂízªôõÇ’ÂSÚsBTÙ™‘iIp˜ Ý:1¤ÖŠµÓó-pUÓ»¾eµ¥E»Š±p’—©*žìÔ¿ £’ZPdf•+35qs"n ñÉÚÊäzõ·¥}ezåÙ£õ13ºù…—K¤»™„Æ9vhýLL`à‰t—s ¶1˳Gêbgt5óK¤»˜á±Ž]š?S;¡¯˜8"]%ÜÇ-ŒrìÑú˜™Ý |ÁÁé.æ8Alc—fÔÄÎèkæ—Iw1 c»4~¦&wC_0pDºK¹Ž[åÙ£õ13ºùƒ‚%Ò]Ìp‚ØÇ.Í©‰Ð×Ì.’îc„Æ9vhýLL`à‰t—s ¶1˳Gêbgt5óK¤»˜á±Ž]š?S;¡¯˜8"]%ÜÇ-ŒrìÑú˜™Ý |ÁÁé.æ8Alc—fÔÄÎèkæ—Iw1 c»4~¦&wC_0pDºK¹Ž[åÙ£õ13ºùƒ‚%Ò]Ìp‚ØÇ.Í©‰Ð×Ì.’îc„Æ9vhýLL`à‰t—s ¶1˳Gêbgt5óK¤»˜á±Ž]š?S;¡¯˜8"]%ÜÇ-ŒrìÑú˜™Ý |ÁÁé.æ8Alc—fÔÄÎèkæ—Iw1 c»4~¦&wC_0pDºK¹Ž[åÙ£õ13ºùƒ‚%Ò]Ìp‚ØÇ.Í©‰Ð×Ì.’îc„Æ9vhýLL`à‰t—s ¶1˳Gêbgt5óK¤»˜á±Ž]š?S;¡¯˜8"]%ÜÇ-ŒrìÑú˜™Ý |ÁÁé.æ8Ale{Ǭo…Œ-Ñ‘–ü#€·Ô£yÄ/^úI"ËOKH³Á`Þ÷w½ˆxœB­l­b¹‹2 ø®õŒµØSÎ]§ì\Ì `ñö}Ãê÷“x®%(ݯçµÛÏ~dÅþäq¥Ù÷•[¡©výÆu 1H€ÙyÚYðrÕŒ>7”—i§Ãqaâv­…Z×¾L¶5æzµ;=YíÏ3áÌjìŸéÜ©m‡èŸÇŽØO÷e¯í´ÿœ4*ìŸé4©m‡è°ŸîË_Ûiÿ8hUÙ?ÒT¶ÃôOé<)Z’”˶¥9ÌÌöÐÑ«²¤}R¤ú¢s°[hÿ¢õ;¸˜ð}ö[_{;ï1Ø»‘Ç«P°öÜ[mU˜ À[‰5!2‘ …-$y¤œ$™–|d:ÁÔž­'Ùvsš§ z+¶ÈøÞ;a?Ý–¿¶ÓþqûЫ²¤sÒ¥¶¢Fs“²m·Öϲ§«´’ìDwöo‚¾Z^ßOùÄæ¶É÷H¾ÑÛø³|ôjÒöúÎÍm“îßhí‡|GÙ¾ +ú5i{}?ç æ¶É÷Ho´vþ#ìß}´½¾Ÿó†ó[dû¤7Ú;aßNb˵¤´ÛÌÐiŽ6âR´-0ØRT•dddŒŒŒ¸ Eud¹ß{%ªP|˹Fã—…ö|†âWWnÓqê˜P˜Z›ÌÓ¨’æ“2ÌŒ³à̇h*µ3Ž“ì»8ÍÒ§”´WnŠ8ÿÙ¾ +ú5i{}?ç7šÛ'Ý#–ûGl;â>ÍðWÑ«KÛéÿ8o5¶OºC}£¶ñfø+èÕ¥íôÿœ7šÛ'Ý!¾ÑÛøœŠÜ‘†7‹îÆ ªÝ©¼Ò7džPßZžZ”–õg–|ŽsU)ç-%Ûtu¦éTâè¾Ë3•É³mXl»!ú1¦šB–㋆ÂR„$³R”fŒˆˆ‹3>"UY>wÞÎΔ2îDeöo‚¾Z]ÑOùÄ­æ¶É÷H‰¾ÑÛø³|ôjÒöúÎÍm“îßhí‡|GÙ¾ +ú5i{}?ç æ¶É÷Ho´vþ'¹0~”òdB¹-hÏ$Œ‰ÆeÁmdFYJJˆöŽ…idÔû¤~£^Œu8/|O¥‹Õµ|8¹¦Á’ܘÒ)o8Ë̬–ÛˆRs%%I3##.#0±q«òzHëZJPmjhÇ2s2¸—Λ§¶ã~hÆkuõDZù—[Ÿ©ö¯"ï ùlâuæã¡N:´¡ ,Ô¥tÌÏa©\ù{"^)ÙpÞdÝôv\Ï-T£%YúÆáî°óz£.æpxˆ-rÚ_2°î»¸)µÛJŽªeB4Ôxäƒ5F}dÓŸ°3û—»¦½^untAÆÍJ*Í<ùÌíb”Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`£øŸÏeS²5Þ$h°ÜDUÖã2ìÅózÄûÄ3ÏYfŽ¼ž)/F©¾ÅS;ÕFÜ.E{LóÞ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2FY\…¥¶’kZ"Ip™ƒv>¥rI¥Y¬²’roè«=ºòAzž¯¼!εõ#OiÈ—C€´è8åê$ˆÿ mtÞÓ÷¢ŽpZÇ*“54[TƒÚ¤z¤|eï Têß&q”-¨á‚AÄ?HÍ&FG‘–Ò2â0>“] +¥ã¤6Þ?.\Êúâáü<"º¤tY..èû™ú‚qïΊm|… ,ö1½çŸüâ—Ûkï>c¸Ë³ïgÜ>¯y7ŠâPRÚþqÛ]¼÷æL_îG]ŸyUº—oÜgPÓ€±xÐâÖö9ÕŒF7•—´i°üEØu®‹D§ÉTÇ‚Ë‹9“Ô¤žÇ–=5É®åäyÄ"Ÿ{ó=¯±ÚW¡Ñý¬‡Í6tÐ[ϱêIpÓ£íþ&A¦Æ‚Øx¢Sã=Mq˜,¡e> ’‚#Úú3 &ïØüŽsIw£µk~Q>±%=DÆÂy·ý‚‰ ¡ÔøÍ8òZHËd‚mÁv„½¥äcwk:‘ö_›3ãìv”\4æ=¬†“M”š `û¥zǵi± ¶·©'‘•:9ÿÈ4ØÐ[ }ñ0Ùn=…w¡¤% +’Q$²""a‚!ŒÝþR>ÂófŸp¸’öß’,îëÒ#Á|J#Ûûřފ­Íå¡í"Ût9){&n}Üïl⥷"¯W‘1§Û˜ìrLwJ4%(QJB<ÌøÆ÷Œ•Y[W9ˆÀ`#ˆ†“o]²}]„åÊYbýÛSö澈Bá)õxüË.†Ùw¯å,±~í©ûs_D%>¯˜àˆm—zùŸt–[øE†íéNªrä!ÞIZDM¥&Zt¡==¢ÇŠ•fïl­¨¨Ý pöqo;ë÷‘0ì²µmŸbà|Ì«ñŸ´üÏE¡Ä²¼ŒhñH(ìWñ¦Á¦ÉÌš›LÅ'"Y!Ùï ò3#Û‘ì]Ö=’ +1›·*Ñ[TWé3æ+q]ŠFeɵ>áÍ}ïÂSêñùx"eÞ¾GóÊYbýÛSö澈8J}^?1ÁÛ.õò?¤n+±T¢.Mªm2ýy¯¢ŸWÌpD6˽|·âeÓY¤b¦!Âc3n55ÖjËQ¥¹ÈIfdE·"Ú#îóÒ¥µýÇ=ÁZ5f¶'ñ#`ñT³²¯aêpcpüxûQóFÇÄ—³/&uÎÜÝö.Sk2«/ÊipŸa¦Ê2Ђ4­£Õ© +Û™JÆb¥E¤­šç<÷sðQÄ&äÞO™–G”²Åû¶§íÍ}¯á)õxüË^†Ùw¯å,±~í©ûs_D%>¯˜àˆm—zù.è}ÏVÖ[Ðê´‰yù‰Ž¢’â‚A¶¥l$¡'žeÓ°x¹V•µs˜ü pñN-ë¶mlì66Î"-ÌÔb"ËùÉFø:F.§òòÿµÌØaÿ—xû ÈÍÒ’œ4;q/7OmÆüÑŒÖëëcó.·?Sí^EÞòØ ûÝ_»®ŽÈ¶-–Z¬Ý NN¥J>D§š‹2ßÍ'šÜÛžô“#/Õ);ô[¹ÄúÒÊ>/³ægwGuã†õcœ¼í°ÄŒMÇ«ÿ$¸ýÕtLš…+Zb¥ÓfgÄHŽÙ¥²Ë§‘Ÿªcs‡ÁÓïV)uë}æ©_ŒÛêæîÔCÛÒ?b[}A4…¤ÏrÉեȸ’y‘´³A‘ÿd>5sô¦Ö¦Nv^7Χ-¸µìåÆØ\Eú3eÓ<¼¹~_TÄ*¸dó‰k‡Ý§šÛÎZ˜rب0ԘΥÖ]I-µ óJ’|d*Ú±¡Œ”•Ö¦}øöýVchz=.[Í/jVÜgV…Å%&F9¹¥­®ô~ô[æ}Ç›ìZ·è4îã{À7Èí]èû ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æ>Å«~ƒNî7¼ß#µw¡ ö>æz3iS©ºd'ãóÓ¿2¶õeÖ²,òõéIKSO±Üü´ÑèÑðüWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒv +?‰üöU;#]âF‹ ÄE]n3.Ì_1g¬O¼C<õ–hëÉâ’ôj›ìU3½XômÂäW´Ï8Ýî[ꢄ ?•p;zY|ïP{BæPð±§-$Eœl|1ÐæÎËœlJr1Ÿ2òs.¹?9õ£usµ6J" ‡^vdkÖ+d¾ã)iÍð¼³3ÈË#ÔGÓ(ÖtÑÎ¥=3û³mö\7!Æ}Ç’ã¦é©Ì³#2"Ë™"é•«:®ìB¸p:(ݯçµÛÏ~dÅþäq¥Ù÷•[¡©výÆu 1H½-oc‘ýXÄcyY{F›Ä]‡\¾Ü›ùõKrò<ꞯ{ó.Ø” Þǵzöí>¡ +â”õLª³›ˆûôãKPY¤Ô´ì^I<‹iíÚ*«Vtª^Òqtÿ5_ÖÒqiJ’©M«ÅKOÛÕÑ_yÌ.<9µí71v´ÝrÖ‘LŸNž‹~*‹OÉeÅÈml“léæ–ÈË™Q™g—…N¼çqjzJQÒm4¬¯|ɳ£ÊrN:²º½ì­‘DfyzwoÁüú‰sö?#;=Kµ¦›ò‰õˆy1ê5x¤ý¬a§ü †×p¹9{KÈÇn×)eù²¸î}D›zÃp® »¨Ù® ¤¦2^\7I“Z—°²pÒd|G‘–ÑkÒÞå£{åkkã/¸ƒƒÑß#¥k_;êÔÉr~S³(ø×}˜Šüz„÷gÊññ²'b8–Ê:7Í«I’ùœ‹,øO1 c^ù}èè¥mƾnÝ„ÏD[Ý´¡¥§{é.-­nòÝã)_ÕÄÛˆºry,ª ã¦;d³lÑÌ™k%feÂy‰x'¥{ÞZõÚîÄLbJv­£Z¯es@üLŽq/ðä•ù†wwùHû Í—…Ä—¶ü‘f·^tįafw¢«syh{H¶ÝJ^É–»Œ¹Æ›ì›ÿ›ll7Gî3;‘Éýo¹ØU—€D7r<-.Í7¼l]n^¹{ŒÞíjkûàÃÎumŸc ~aÏkñŸ´üͽ$}•äcçŠ Ñç »R—ñ“Ãg¸¼„û_ÂŒvìòðìÄË(¿,¯\Ä2øþGÐmùdúä>¶x›ýñ;´äü`‘3wy(v¯„¡Ü>Z}âFºb§9W°õ?ƒ81Ø~<}¨ù£aˆâKÙ—“0ßp眷GmÅüÑöéñ—c1›Å—jûËÈ)ÍSíÚœåÒý“Gæ\»›Ç}ŸyE»Eí}ÌÑ‹?ûFj7øiFø:Fb§òòÿµÌ¿Ãÿ.ëØ^FnÔ”à¡Û‰|éº{n7æŒf·_\{™u¹úŸjò.ðÏ–ÀT÷ccÊ° &Õ -%Y©/ÆúY(Ë™}Ô™©í'ÂL Yp´‘ì1m¹˜?J¨“Ô³}›=åNéã=›k[É|γrå¿P}ùRž[ï¾âÝu×j[Ž,ÍJR”{LÌÏ31ê YYY)i;³Û¢QfÜu4šk"dçÚ”™¸óª$!$j2"33"ÚdC잊»æW \³¸ƒKú JL*xZ‡Iw?‘mÁú/½|Î ˆ[›1+ +©>>Ýv«ôÚ~üÛãÌ-;ã¹èNM¸£Û‘íË!ÞŽ>•g£]ì³ùjîuZ1Ò”ZKŸ/™ ¸Ÿ0:órïd/8òÍJc3ó7ˆ³2/Qeùréˆ8ªwZ[ ϯg õ=]§bÝÍý ­^×wóî5ÝV]¿r= Ä]Ÿy7ŠòXQ ÛžaivY½ëcE¹î*7C›ÞP!£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`ˆî¦ÜU)7¦ÈC)*4£F’ÒD[3IŸOà­e‘TÉe´hJ n’"ü ëÁâ’ôj›ìU3½XômÂäW´Ï7Ýî[ꢄ ?•p;zY|ïP{BæP5'ßé`H²Èˆ²"DÓôJñ‚R!oÄ\Ó«øÓØ8ïEÙÛi΢º"8ŠÌ9C/—ëkJ¾ñßÈ?2WGé;ÊTK"Qde™®+ ‡ô +Q»_Î;k·žüÉ‹ýÈãK³ï*·CRíûŒêb6/zZÞÇ#ú±ˆÆò²ö6ˆ»¸4þ }¹7óë–þåäyÕ=^÷æ^ܱ×R°àÔ¨–U»qT%Öe±TUqö¶ 4†t%‚yæ&£RÏRs<ÈQc*Ú¢Œ¥(ÇBëFüg&¹“æEÞàÜcKNÞµ¸º)óµÎÎCv^ѧ]íü<´¢ÛQ[lÕPüYsŒDœÝ%ªA»¾çÀŒÈ¸GÂ×U\ç=&ø¶j7¾KQ'EÂú1†ŠZgÏÜgœÏ/Níø?Ÿ@Ò®~Çäf§©v£´Ó~Q>±&=@ƯŸ¢ƒì4ÿ„Úî'/iyíÚå#ì¿6W-Ï6å2ê¾ép*ÐØ›˜žúbÊtšbCìEqÖuJ2"BœJHó2Ì…¶2n98ëË=zÚWîe~ +u"¥©¼û›û‹ŸägYU¼USÂ;î¥ÍäuÇ9‘ S‰³YÆ@üž×ã?iù›zHû+ÈÇÏ£Îv¥/ã'†Ïqy ö¿…íÙåáÙ‰–Q~Y^¹ˆeñü þÛòÉõÈ|lñ7ú/âwiÉøÁ"fîòPí_ C¸|´ûÄtÅNr®ÿaêpc°üxûQóFÃÄ—³/&a¾áÏ9nŽÛ‹ù£íÓã.Æc7‹.Õ÷—Sš§Ûµ9Ë¥û&̸-w7Žû>ò‹v8‹Úû™£öŒÔoðÒðtŒÅOååÿk™‡þ]×°¼ŒÝ!©)ÀC·ùÓtöÜoÍÍn¾¸ö?2ësõ>Õä]áŸ-€?N0–T¥gëË7ßrèNSƒ½Hµ—©¥ÝeâQ¢2ç¿I”¨3¡HA䦟ideÓJˆÇæJèýÓz-=¦·7™+ ­C.Žáþœ1å8þV]¿r=s Ä]Ÿy7ŠòXå»/«?j”ºÝS§Bn=hJ›i*[Fj2Iq™í1µÜ¼,*RNQMÝæ×Y’ÝDáQ¥&•–¦VX|QôÁ­wjů¡RèG¸­ôÊ'Þ9añGӵݫB¥ÐpôÊ'Þ{·Bâ‚äÅJ±´d§™##š¼ŒdFCãÁRèG¸ú±u/Æ}çaØÊ52Ñ™æf„™ŸÞnÍê)%¡R½/H“êbR!V± G‰MÞšj,ç㶔›‘£É,ÌÔfgÆ/ªFì´õbîܹâžÒ–“E}6½i+%i5Ñê9_Œ×¦mk¹)_Rï„{åúÇmî]9wGõGŒ×¦mk¹)_R áù~°ÞåÓ—tTxÍwúfÖ»’•õ ¼:ï—ë î]9wGõGŒ×¦mk¹)_R áù~°ÞåÓ—tTxÍwúfÖ»’•õ ¼:ï—ë î]9wGõGŒ×¦mk¹)_R áù~°ÞåÓ—tTâ×ÂïkfÝ®Uãb]]o@…"KIr,Ð¥´ƒQˆ¡äf[r1Ö’„ä–‚Í¥®_¬q¬§¶§,“z£ÍõK«Õ?;‹<ԶУ?TÒFb—QwG¶>L“ÝKº_0ï+TzâäJ|v¡)¦y3šMÆRµsN4¥fyí1°Üü:´Ô¤®Û|ïoi–ÇcjR¨ãe—2ÙØWÎ\Übê»ýGÃúeÁtz>/æ@á*½/ò¹¸ÅÕwú‡ô!Átz>/æ8J¯KÁ|r»'ß—¥Ý¹¡o4… CÚJYþ³ÒåÑK‹âþgØîVøÜûÈеâÍÖJQS€Ïõ†|AèÙâÍý-§ñäµuú+ý@Ï€‰ ž,oÒÚ<–®¿E¨ðÑ!³Åú[I' +ïÊíÇ[8•Ûó;Ëӽ6žh9iI‰Š¡FésèÔry‘íÏ1´»$Þõ±/r?;ÜEÝoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DЖJCN´| J“øK!õ; E ÚR¢ÈÒf“õÈò„3ùàáM” <•OŠáðè$Ÿ®žgú¡]QY“"î°9Ÿ ?…¸–ÈÔµH¸LÏ"->Ûå›n%eÓJˆýáöÖ>'sÊ>@”n×óŽÚíç¿2bÿr8ÒìûÊ­ÐÔ»~ã:†˜¤ ‹ÀÞ‡·±Èþ¬b1¼¬½£M‡â.î ?‚_nMüúÇ¥¿¹yuOW½ù–Ë ì:B¬•Ý«°åßÕTv cÉ}¶iì6Ò‡^n!ª7FI=‰-'·1S‰¬ÔÔ4”ôšY»ÚÊùe¬¶ÃÑN.z.mI-íekß,ú½[±¨×5¥vV™v+´Xh•qɗȲß7Pß")©Åš–á(Í&ƒ3-;v*¬¡(¥QOJVq´olóõvw¥8Êðp´[Ò»µ×6{Jc7ËÓ»~çÐ.×?cò)*}èí4ß”O¬CÉÏO1«Å'è…`û ?á6»…ÉËÚ^F;v¹Hû/Í•_lêuýyQ¨UgVˆ’Tñ© --»!M4·µ¬É)[ÊI6“>PºÄÔt¡),ÚY|ýÚÊÊU'·dÚM“ûtxËM0÷0ÔÍÂhò™V)EÍiÏ|4oZ½]:sÛÀ+›Wß—t,X8¥–òûå¼bí£N±/*õ“%OÃ… ÒœZVâ5!+6–¤s*SF£BŒ¸M"à YÕ‚“Öï«S³µýäƒûoË'×!ð³Äß迉ݧ'㉛»ÉCµ|%áòÓì5Ó9Ê»ý‡©üÁŽÃñãíGÍ G^̼™†û‡<åº;n/æŒo·OŒ»ŒÜn,»WÞ^ANh@ŸnÔç.—ìš?2àµÜÞ;ìûÊ-Øâ/kîfŒYÿÚ3Q¿ÃJ7ÁÒ3?——ý¬~eþùw^Âò3t†¤§ ÜKçMÓÛq¿4c5ºúãØüË­ÏÔûW‘w†|¶ WñV­'Û«Ø—B[3aز©Ž/‰.6æþÚO®%¯/XÆßòv®RZwÜb?(©gu5Üï÷™6&0åBª ¸¨GH§7Q¨èÇ­ÍÉ|NöÒ›3"Y-Y¤øsÈ~*ZÎù+;¾«k?QÖ»W™¥gZÝýÓ»ûUôÃ)£‡ýö_âÇò5÷¯ûÔ?ÅgÆ»z±ZÂk‚àÄÜ1£Ù5ê}BšÕE>#p¨ïËQIeÆZµ% óz,Œ½C¼<ã +±T§)©ii&Ü’I];óg‘øÄS”éMÕ„`⣢ÒÑm¹ZÖçË35ƬȟbÞ§9WªS¡´“RžÒr.–¢3?¼YŸ¬?z)¾£­(iI-­¤w8dXmj‘pw½½ÁåXþV]¿r=k Ä]Ÿy7ŠòXY»£¢ýc´)Ÿš1¾ÜŽEvËÌÅn§*û‘PÅÉRÔçÜ>ÎÏç>=Gék÷Ÿbyƒ=b}âTÏHE/Áß8f{7qük(_bxËهŠ|'ëOãd¨"’À=Å®r.ïb§~eBFiy‘ñÆ@ŽµÚ¼ÍcsË«×1—F¼ã/;z#®0ýzN¶£JÛ\ÆR´(¸II5‘—HÇENOR}ÌâêÅdÚïG³M¹¨õ—TÅ>­[©I¬ÑKn¬’[32BŒòõGÇi¯s>Ƭe’iö4Éïùä>Õ{ßH­Æñ=è‡×î8†íÏ1´»$Þõ±Ór?;ÜqÝoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DЯ3ÈõhË…f¢þ;oõbÊ›ºDIk>HýŸ€•l§µÀR8ÛqE÷#/|B¬³$ÓÔrñêpëöÿ amÅrÔšN†N<áð™ùT!%µkQìJRFf|;Q£*ÒQŠ»gÕ£F:RvHÄÜsñJï¶DŠ~2Võ,”iLÇP‡ª/§ƒW4Jm’>$’”_³âœ&áBÔõžÍKñ0ØÍÞœò§ê­ºßáûfgåÈ÷eØëÖ®Š¥AÇ ÍG&{îfgê)f_h¡BâÅ.ÄŒäñž¶ßkoÌù”»¶»Bp¦×'ÃYd¨óhóþ1d?R¥kIö¤ÏÌkJ:›]Œ¹Ø;â„b~¿Šäß²šRt¥lTôÒQÆmÊ"׫. óYz“¸´«g¢úµw|‹¼.íÔ¥”½eׯ¿øspp;--Ð"­[ JoJfB{$ʈ闔užÃÈô¨³J‹€öƒžV—¹ó3w„ÆC(û×:&¡œbÅÓQµ)ðäS]Kn8þ…K#N“>õHMÂÒUOa´ÜVG— +nz…ÕK‘*¤ê\uÙPH-$”Ÿzãæ*’¦ì¶hÍÉg´”3¸RÚþqÛ]¼÷æL_îG]ŸyUº—oÜgPÓ€±xÐâÖö9ÕŒF7•—´i°üEØuÁ§ðKíÉ¿ŸXô·÷/#Ωê÷¿2æØ6õ¿OÃz-Èýí"Ì©È­Ô¢*¡‰9-–YeHeEi$“f£Q–ÜÅ6"rß4TtÖöž‹i+é5|û‹Œ<#½¹7¢ôí¤¯«E;eÞqj¹û‘QSïGi¦ü¢}bNzy^)?D+Øiÿ!µÜ.N^Òò1ÛµÊGÙ~l¯;œ­zMã}A¦VÚ%ÂT:£Ë5ký LCuÔ:[Ù¥Fm©$²"<ÌÈZcê:t¥(äÕ­ö’!` ªUŒZºo5îl”¶x›ýñ;´äü`‘3wy(v¯„¡Ü>Z}âFºb§9W°õ?ƒ81Ø~<}¨ù£aˆâKÙ—“0ßp眷GmÅüÑöéñ—c1›Å—jûËÈ)ÍSíÚœåÒý“Gæ\»›Ç}ŸyE»Eí}ÌÑ‹?ûFj7øiFø:Fb§òòÿµÌ¿Ãÿ.ëØ^FnÔ”à¡Û‰|éº{n7æŒf·_\{™u¹úŸjò.ðÏ–ÀnŒÁXXûbÕ­9+&d8E"…dÄÖs6–ymÒff•—®1?ŠxY©ûšê cp«î}gWûÆϬXª½_‚¸U©§Ùp²22àROõIQmJ‹b’dd=R•UU)EÝ3Ê«Qtdã%fƒSÐ^jLg–ËÍ).6ëj4- IæJJ’ddd|[HtyœNqä³|õiZ÷RWÒŒ~Êù}&})}§ó8ånè­\ÊmuŠÄÊŠšÌrå:ù£>;â•–~ ýÂœa©%Ø’ò9ά§­·ÚÛ>êr,æØŽF?²)Íé5$Ó +,J¶)Ó/T¶'ïŸHVâjþj÷—ûŸ†·®ýß3°næþ†Ö¯k»ù÷œî‡+.ß¹…â.ϼ›Åy, ,ÝÑÑ~±ÚÏÍßnG"»eæb·S•}‹È¨bä©jóîggó‰£ôµûÎϱ<Áž±>ñ*g¤"—àïœ3=›¸þ5”/±‹õ§ñ²TI`â×9w±S¿2¡# Ç´¼Èøž$½—ä[Š_óÎ'ao½!I-e¤u{x~Oу»¶º0\}‚ðt@ÜžEv¿3º\«÷y' íªE퇷5 Û†‹Fªª³M“Ú¼®F%Fi— ÂB‰ QóJ-™eꎸ™ºu#+JI)]E_]¬~0ðS„¢ÚM¸ÚîÚ¯rzw¬Z=ý2êjí³Uo7K}¤SY˜ƒpä4ØÔ– ­ï3›#ÕžÝ^[`¬uê:N54›vvæÓO]ödNT ªFZPÑI]_]¢ÓæÛ™Ÿ4\ù2Ÿÿ?ÇHÒOSìeuûþóYÜòêõÏßdkŠ‹Š¶URêñÊ7 +¡ë˜ËÅT9p’ëèmä­J4™Ë}IO3ãÚ,ðÕT,ÜÝ—æÙÛQIŒ¢ê]*jïó¯ëï$¼7‰½Ô_u8oÜNò¤œÈ²¡¼¥eú”bÔYðíÙ°q¬òã¹u4×™#K“Qךq~EËÀþyµ^÷Ò(ñ¼Oz/0úýÇݹæ6—d›Þ¶:nGç{Ž;¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°Uëç®%~tr›C -²BM”(È)3ÚeŸ¹¡†Œâ›ó ÔªâìYÆkmµ ¥&~¹§d㯊KѪo±TÎõcÑ· ‘^Ó<ßw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ$¼[ÑRQþÍ´àÌ¿ªèê#TÖqaØä5ˆ¿Ð壤¤á#/ê„JüÄŠg=3$‘™žD\f"Ž¶»µ·HLÇkÒ\2TVÕ ç#S™I™!÷z”²Ï#RÌŒ©o.3V~›¹X†…ßJïåûsžeºØ÷‰—:¾·1L…ÙDKžâ-ùNn¯nYUJ¤´"LH«u¥)’ˆ”\d{ D«‹§EÚRIë³v%ÑÂN²¼bÚ½²MærNU|aô´®÷Ç£Óz;ðmn„»™̈ý>Cñd´¦_aÅ´ëk,”‡f•%EÄddd~¨Ÿ)+¬ÓWO¨¯œO&šë%LÆZÞݴ몈âyQ"d\òndEoŒ¬¸6–ÔŸ +TD¢à1xXâ`ã/sØɘ<\°ÓR^õµ¥ìë®}Pé%íö R+2ã¯ffÛÉ%YäežF\FFCÊjÓt¤âõ§fz½*Š¤T–¦®rQÈê~tSûkä(Y`xÏ°‰ˆÕï<øç¾Û_xóÆ]Ÿ{>áõ{ɼW€”n×óŽÚíç¿2bÿr8ÒìûÊ­ÐÔ»~ã:†˜¤ ‹ÀÞ‡·±Èþ¬b1¼¬½£M‡â.î ?‚_nMüúÇ¥¿¹yuOW½ù— p´ñÜb…En«Z•ZTYRŸ¨oI¡C$4´ÊC +ZRdï6KY‘ìN\9 +ŒM}ê¢Òz1Q¾«é;¿Vö÷–Øz;ä%¢´¥¤’Wµ•¸ÖíÈæ7u±gÕ­¬@UÍ… +l²Q©B$¯’ªUHî´ÚÛV¥äé=©G’PD’ÈóÚYE§VjPr“Òœ³§l”û­md©R…¤”U¡ëß=5o;”:o—§vüÏ h?cò3õ>ôvšoÊ'Ö!ä秘Õâ“ôB°}†Ÿð‚]Âäåí/#»\¤}—æÊÉ4šUvù¡À­8eã[ÙI8¥%Òejj2ž##m/¸ImG™lVBã'rqÍ¥–WçYÛžÚÊÜ:RœSvM«½E‡Øº~@¨Ý÷]Mïíg¤©æ©”¨èÔâ³mâæ–yèRÕ±%«ˆÈêÕ}÷%7¡Þu-fÛy,×yfèïw“‚Ò”­^ù[7‘Y±¢ß£Ú×ÅÅJ )>7ÆIi{~KJR§KŸ«&ÖjAH…–£©M9kÏ;ZêöOÞˆÈ(M¥–¬¯{6“kÜhlj‘Î%ãþ’¿0ÀÍîÿ)ay²çp¸’öß’,Öë΂ø•ì,ÎôUno-iÛ¡ÉKÙ2×q—8Ó}“óm†èñýÆgr9?­÷"þ[îB‡D~Z À›)§”rZ˜³%”r$éÞS™g™™æe™ÏÕ»’Wi[›oY¢†§ªý{}Tº”šõN¬év;&ÌW”G&+ÛékJsòÉËEÂ[ sr’q‹¿_3V?i'wÔòë2ïw'óÂÒìÓ{ÆÆ«rõËÜd·kT{_Üos«lûó{_Œý§æmèq#ì¯#hØb8’öeäÌ7Ü9ç-ÑÛq4c}º|eØÌfãqeÚ¾óImˆŠ}Mò‹Tæ–…%©êÉ<ŽIQ¬Û,ÒJ^ylÏ<¸n³wZÒÎöÛÍî4ôùõ_šçÙ§À T™ªU"©†àHÕOyy­™¥Lš¼²On\iàç)FÉÝúË>«óŸ¸¥,õdò÷sÉ»Oœº_²mþeÁ¥ÜÞ;ìûÌÎìqµ÷3F,ÿí¨ßá¥à銟ËËþÖ?2ÿü»¯ayºD5%9ûCwùÓtöÜoÍÍn¾¸ö?2ësõ>Õä]áŸ-€¬›¢·*YÛ£`§Çv•±˜•hÉ-ý¢Û’#ØëyžzÁú•$ÌŦ tg„yf¹ÓÕø2¯¹ðŬò|ÏöÖc'øŸ˜¹‡¯¸têJnX$£ÞäÒÔJtÒ[H×fN$ýDë,øÌm°ûµJ®·¢ö?™ˆÄn%ZZ–’Ú¾ZÊ·PÂÛÒùÆ›hV#¼G‘¶å2JUŸ¬m‹eˆ„³Rz*^qÉÅ÷3î–â"3>MŸR‡ ç ¤I™qZRŒŒò%=1mÌ®º™N§%&23ÞReû3<~¶D^¸W|‘i‡Üõ å›ÙÌOÄDDDE‘dD[‹¤ ¾îoèmjö»¿Ÿpb·C•—oÜ.ˆ»>òoä°0³wGEúÇhS?4c}¹Ší—™ŠÝNUö/"¡‹’¤=¨ϸ}ŸÎ$|zÒ×ï;>ÄózÄûÄ<©žŠ_ƒ¾pÌönãøÖP¾Äñ—³…øN/ÖŸÆÉPE%€{‹\ä]ÞÅNüÊ„Œ7>Òó#âx’ö_‘n)Ï8…¾ô…$µ–‘Õî=áù?FîÚèÁqö +wÁÒ=ryÚüÌFér¯ÝäCv‹B»Ù–å^ú¥[kahKmÔPò”úTYš‘½$Ë"à<øÄúÕeNÚ1r¾ËeÞC¥IO\”{o÷îY¸}‡UîÎÅkr¨Ó0jMF˜kuÇâ¸ÓzwÖôæJQß½´VâjÔ«Ni»guÒOoQ>…Sœdç“»V{ûʉE#)”â>~>Ž‘s=O±•q×ïûÍgsË«×1–F¸¨•›NðMRï¥Óè2W*å˜Hû#)…¼F¥,Ó›DƒV¤-´’’D”í3Ï1gNpqÝ”sq¶mçæRÔ§5)h¦ÜòR¾J9y«m¶ÅïSj‡CU“ŸÈn6씩U)(u&™(g|Rˆ’œÈÖdF£VCóV«œ/'väšËRÏÏaû£ES©h«%›oŒò¶][KÛüòj½ï¤gñ¼Oz4}~ãˆnÜóK²Mï[7#ó½ÇÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø(þ'óÙTìw‰,7u¸Ì»1|Åž±>ñ óÖY£¯'ŠKѪo±TÎõcÑ· ‘^Ó<ãw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ-½Ë)¬ŸM¢üŠ16†¯y¡ÃDƒˆsûù¹…ê7ýX‹_˜ïH⦮™^_µ˜Žr#ÒeK.¸êw¤¨½R5æ:`)ª•bŸ<—†d|}Mè¿Ž«),ˆˆzÉäŸÐIw*a•2¿i1Y®c¤‹z9? ™¶á×ÓJQš‘©ÇéïdáíÍ,™å·31›Ý:îJ4ÔÝ—¬ã¥myjæí4›™AN-ºŽ IúªZ-ä³×îÕÌY:µw©ÐݤØx‡öä5æJ“.î~µTp¸×&r”ŸXÙm +“½HT—R¦¡埉rç8eNt×[ªç/ÒMw#î$ÈEZ¨™s2AKOIm{âtœV·R­š‰gšˆòÚG˜ÚѶŠ²²²²yY[Q‰Ä_NWwzNí;¦ï¬øã±ÀìâgÝnW°‹Æ×\RÕEªMŠŒÏ=-9¢BH¾ûŠu»Ôôk_¥þï¸ô}©§JÝ5ßg÷š3†Œ'<è§ö×ÈP²ÀñŸa«ÞyðÎ)}¶¾ñæ;Œ»>ö}Ãê÷“x®%(ݯçµÛÏ~dÅþäq¥Ù÷•[¡©výÆu 1H½-oc‘ýXÄcyY{F›Ä]‡[&ªLÁrk/¥Ô­2å™–ðáì7–e´’=2×î\ëaæѨ£“ÚùžÓÚEýZ}‹Iéeäæ]#É;H4?k£õ¿/Ù3ôî(æ‚k|‘½¤õ7—´‘ôÉ:rÏÕË1óCöÈoËöLõ•QftŠk,%Õ¬çB2-áÂØO#=¦‘öÖO±ó­‡æSR²[W3;T·åëòSÔÌeñKÞ(·í†ûˆ^öTyÉ5%µ/#9—•#mÁÎö—‘ŒÝ·£R-ô_™ž¾>Äþ+Üîø#I¢ÿfŠù~Éžr¹š'7Ò~Q9–Z÷·õå–YjË?Ê>hvxwå×âx +»¿†÷;¾û¢ÿf›òý“6ÄÇ#; +íY¡I'.)+N¤šLÒ¨ìJ"Íßå#ì/6j÷‰/mù"Ìî½<°_³<¿x³;ÑU¹¼´=¤[n‡%/dÃíÏ»¢-œ+¶äR*ñ¦ºû“JŒ†Ô +BH‹58“ÏgHo±x9V•Õµs˜|>8xhÉ=wËørråÒ±~àª{K?L ðlö¯‘eÂôöK¹|Ç.•Š¾Oig郃gµxü‡ ÓÙ.åó+>é,q bìZTf%4¨+·y%I8”‘iеt>eƒÂÊïlí¨¨Ý dq6QO+ë]‡dL;<í[gظ@óügí?3Ѩq#ì¯#Ô|ѱÄq%ìËÉs·7cµ½„têÌZÃÝ\×Øu³Œ†ÔD” Òzµ­;s1éXÌ,«4Õ²\çž`1±Ã¦¤žo˜²<ºV)þøU=¥Ÿ¦ü=«ÇäZð½=’î_1Ë¥bŸï…SÚYú`àÙí^?!ÂôöK¹|È#t.èsmèTª5â’O'|í³´åµ­Þ×;X{EërŸ%*=2TÙÈ’þöÙ!fÚy”6Fe³2Z½Rá¸ñßI6Û“i,–³ô÷fJš§•¢“o7¨ƒivÆ4^é)Ê É5µdd¸ÔùÞGÁ‘¡²,…„ªÑ§­Åv´BJ½]JO±?¹ÅV‰ŒvŠµâ€Ú6©S)ò7²"á374åê„jQ©©Åö5÷3ãßékR]©ýè³[–÷x«™Oº¨ž8Sª6·fA2D– §=é\Ã…‘í"RO×à{£¹‘gf–§¨´ÀnÓ£”ÕÓçY3qðëíœX£G¯ÚµvjP^Ù­£æ›Yp¡ÔJBË*">> Œ`ëЕ£%fn¨Wu¥ts±îSÝÙüéR}’oóN ½Éã¿gïEf?Š»~æf¨Õ@¯»›úZ½®ïçÜ­ÐåeÛ÷#K…â.ϼ›Åy, ,ÝÑÑ~±ÚÏÍßnG"»eæb·S•}‹È¨bä©jóîggó‰£ôµûÎϱ<Áž±>ñ*g¤"—àïœ3=›¸þ5”/±‹õ§ñ²TI`â×9w±S¿2¡# Ç´¼Èøž$½—ä[Š_óÎ'ao½!I-e¤u{x~Oу»¶º0\}‚ðt@ÜžEv¿3º\«÷yÎçªÕ^פ\•]4ërÞfTFeÊ™Gn«!Ùn¡fÓQÚRLóÒ•žd’Ùžf?XèÆn*ÎRw²RqÉZí³óƒ“Ž“ºŠV»kKm’Dé+dßqgÓ,ŒN§U*g[…MŸfƧ®SM2¥º–$IdÙ(È,ò᯽gR EZíTnÙ¥{{Ë×ß¡4äõ'M+å{\ÎÊ)‘̧iàßãåëkHÓKSìfz:×jó5•Ï.¯\ýñ–F¼ª7U¥|Õë59 +©;pÒ õïtºUl©Çk?3ZRß6¢à<Ü,úBÊ•HF*êϤ㤼ÊjÔªJM§¥Šž‹òûÏ&çÚ,fLêtë>}&¼j˜é̘ʜ'a)ìÚh¥jRThI¤ŒˆË3,öÖ*ni5$Õ¢šYg¶ÇãNM8µ&äÓyå–Wý®h>óÈ}ª÷¾‘œÆñ=èÒáõûŽ!»sÌm.É7½ltÜÎ÷wC›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`£øžβ©Ùï4Xn"*ëq™vbù‹=b}â笳G^O—£Tßb©êÇ£n"½¦yÆïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐù*¯Sf•Tc‘™èÌŒ¿Ž½±÷%´þ~Èi~‰Fööü Ð{pÒ[Ob5Z Åïqæ²êò3ÒÛ©Qä\y˜øâÐRL¯çã‹å—CW¼ãPá‚AÄ9í‰æ“=dV#Wæ;Ó#×0RÁ¼CŽd£5Rž4’K35¡IRKñˆ‡mÍv­h‹º1Ò£?dêæ\=Xòcôhð®ð¶(öôxÕLnï—5U”ôô¤jÌ‘”t)ÁlØyôÅV*œ¥,ªhd²²ï̸ÂUP=<ÞwkfY~Ù“…S°1 +½J¶ån[zUI ÅT¨2ªi~1:¢NüFãdŒ›ÏQê2,‹„@©NpMïú•óQ±c +±›³£¯,¥+æRJµãY7mÏoC•ÉQéU)°™|òÍÆØuM¥G§ffE·-™‹œ%WZœfòrŠ}è¢ÆQTjJ Td׉„²²qŽÔÂ,;™°S92¥T“(÷˜ûâ7´¡¶Q·Qmæ1‹ÝŒ$ñ.­e³}¬Ýî-hѧó“zº’û‹ÁË…`þÆ¥Üö₪uw—þ¾áË…`þÆ¥ÜöáÁU:»Ç§C¯¸ráX?±©wý¸pUN®ñéÐëî>E_u&×ÛC5S¤! +Ö”¹ 2%e–eú ýÃsªÃSKÞ~eŒ„µß¸þ©©°Ê‚Ò˜§Ãµ(ÖiD,ˆÔdEŸšz=Ϋ=m?xŽ2Õ~ãêòáX?±©wý¸üpUN®óõéÐëî¸Vìj]ÇÿnS«¼zt:ûŠãº;mÌU¦QâQ +VùK9É oe¥MšK#ÔyžbÓƒ•Ü­šæw âñª’\Ì©"ä­ ÂýÓ¶eŸiÐh³Ó8䊆]ÞâëF¤çžG¬³/¼3xÎI¹+Y½¥Õdaò[aËa†ßqÍ÷=>Á•z»Îž›¾áËa†ßqÌ÷=>pe^®ñéëî¶m÷ÏsÓáUêáËa†Å·æûžŸ82¯WxôØu÷ï.ƒû—qÿÛœS«¼ýzt:û]Ý×w ÈÝ=f[Õ'—áXú·2¢ÙÞ|ôØ=½Ç‹–à ¾ã™îz| àʽ]çÏL‡_på°Ão¸æ{žŸ82¯WxôÈu÷[ 6ûŽg¹éðƒƒ*õwL‡_qì3ºïc‘¥¦j#<òL"Ïï,|{—Qìï>¬tÞãÕªn­ÃJäI*0¦K‰!ÛÑäSÐëN øR´-F•ôŒ²c¹•bT’ÆBJÎíu¢;òOÜõé}ö·Á½Óm‘tètØCÉ?s×¥ôÚÜ?=Óm:öòOÜõé}ö·ÁFÄtßÛcN‡A}„<“÷=ð>ƒû[‡à‡£b:oí±§C ¾Â$æ7]áìVÛe–j ¶ÚR„!‰)JRYò""ØD"=˨öw’Ö: oqÄn<{Á[ÂCrëÖ²j’A4‡¦Ñ#Éq-‘š´’ÔdœÌÏ,òÌÌÇh`«ÓÊ2·dšò8ν*™Ê7íŠ~gòOÜõé}ö·Á}Ómœ´ètØCÉ?s×¥ôÚÜ?=Óm:öòOÜõé}ö·ÁFÄtßÛcN‡A}„r+s°^Î}Ù4 `©o:íÇ`ÑXŒµ£2V•)­&e™g‘ìÏhåS^§Wí“~gZuéSÎ1·dRò9T×8y1§cÈb{­:…6ãk‚JBТ2RT“^FFG‘‘ì2–åÔ[;ÎÏ·¸ŒË÷=ð>ƒû[‡à‰^ˆé¿¶Èšt: ì!䟹ëÒúín‚ˆé¿¶Æ‚ûã÷N8ntµ©Sjaäï šßØì$®~¡²Q§"5Ìø¸x‡Jx“),8ûE?}$¾–’kpm¡[P‚5[òÏ!?_xŽ•›K]­—^d,=úZ7I½Wò9ÓØ Ci§N0ZNiJ”IL‰:•‘g‘~ƒÂ|#zd¿{Ÿrù’==8w¿‘_ l—³³ùÄ‹'«Ü@ZýçgØž`ÏXŸx‡•3ÒKðwΞÍÜÊØž2öa𢟠ÅúÓøÙ*¤°¯lW´päÛEÇ^çQ­¨êÔä‡SžœÛe¤©Åm,¶'„H¥‡•^*oÈá[ +'‰/eùâ—üó‰Ø[ïHRKYi^ãÞ“ô`îí®Œ`§|#Ð7'‘]¯ÌÄn—*ýÞGØÜån^3­k¦§hC‹[Z*0#J T£ÆzŸ%¥6â÷õòBÛ4¸ÑìI¡Dy(øGÌ}H)ENë)5$Úiå³i÷ 5'ÚÑõ]šiß]öMÇocKš“t¬,·m†ÝŽúe̤¢ rÎ:{êêå8´%IÏ=Fe°ŒBJõªJ]RÒ·VI+“+.,#µZþlÏú>G6Ÿ§ƒ’#åøéIj}Œ ŽµÚd_—W®~øË#^R,H¶§øÿQ—ädÄ8êujñí‡e:óû|ÕMBy¥|'Ÿáøy¥´þ®VñL ÅÓnMïyt®Ûî‹G'À”7+5mb ª³©aKUÖ$¡¨ÄJIo„©N:³4ðe¯€|ÅEèßE,×­u÷$}ÁIi[M½~­¥oÒoQ¢XÏ!ö«ÞúFkÄ÷£O‡×î8†íÏ1´»$Þõ±Ór?;ÜqÝoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€‹N²hU9K•Ka×Ü258¤æ£2""ÏðÑ­(«&stÓæ9:RH"",ˆ‹"N‡]ÿ—£Tßb©êÇ£î"½¦y¾ïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐÂû¥%ãÝggïì¿Ï,z7ê®Åäd§­ö¿3ái.ésðsÌ3Å3Áû’•ZM4§œ©é{Öû½iä÷Ûk|Õ¥YèáË-½2q8H‹ík¾äÙû†#xjV½Ú]ìÐÛ›Ž~(Ï°üo$”j¯&o¹šÍù +g{ÞôìË,óÏoC7J…©iß\š·b¹u,EêºvÕ+ö»ÞéUËÃj~ ý’N]ežCä“2I*iÄß7Íx5e§ÔÏŒY< ª:wÕÞÝW+Ö:ôÕKk•­~»¯’R¼“üo,ŠˆuŽMßvÿ>7ë{Ó÷õjõ2wÜ÷Ëþv½×%oÿºïvüÝ+ûícPwO®‘†ulF+x–¦+MÑù ’²#ý?È[îù½ŸOV>¦|cõS¥QS¿æÞöú79G£IÔ·çZ×ë¶ÃšnÅSfUoNšJL»UúÙÌß|®ó1¶7ïNÜóÏV¯S!ǽª_UEv¦îwÅâm'NÚàå}¬uöÄë%Û>ªá¶ƒä)JS‘×ÄYžfÙú©?É‘D¡SMu£Î±x}ê]OQ $m²7HbnRY¡[ŒÊm9•¸ãq™& SŠÔ£-hQí=¼"|:îóŠnÖ¿Q:†6¥hI¥{ûÿdr9»°1¢¢Ã±ŸÄZžöêM Ц›Q¤Ë#ÉHl”[:FF8-Ë¢¿1ÞêÖ鲸©jqJZÔjRŒÌÌÏ33=¦fgÂf,Ò±VÝó>å³nKºê1éÐÓšœ>mylm²òËW¨EøO`üNz +ìëF“«+"ÿÒ©ŒQ¡E²j3im<’\'êŸ Š)KIÜØÂ* %Ì{ãò~À«» +Ê\š} É #’]"ãZóJ3õˆŒþø³ÂC[(7J¦j>óg¼Oœ‹†˜e¼ür*½Ò”T$8¤óiŒyò3D|$’AëËöK?½†ÝœS­QÇš.Þsa¸ØUFš—<³÷s|Ëà( ò‹×ño+Žóg (6ÿŒÖŒåÓ¤*°óü“P”ËHyÔµ¼™%´‘,ˆ\gž|EyOFœ#*®WšmhÛ%v³¹ISZ¬Üi(Ú &å|ÛIÙX³¸;ˆ¨Å«*Ü»‘ PüuŠ——JÖm8Fhq²,È–“"<‹2Ú+ñxG›…ïn~¦“^dü#Ò §k^ùu¦Óò$± ˜gŠKƒ1oL>û5÷«k© S‰O4ä–Hu +Ù™’¢p¿c’ºf4»…Štêh=Só_µŒÖîaUJzk\|ŠW¸‡u[  1b2ÛÓR¹i FnI«ôÕ-©jkA—4•%µ3šŒòÚ/7[sÕg§ªÐ•íµf¾ò‹rwAÒJï8ëØòq®\]©T±>ü±— +:aÛÔŠeE‡Òkßrb\5%ÌÏN’ÒYdD}1ž*QÝå&º²6qÄ7RPæŠO¼‡©»©+óp³ oÅQà”Ûª½“*9)Ýå–¤Ëz:–×5«Q%²2ÔfY™ñ ’Üøª³…Ý¡Ö®dŸÞA[¡'J²¼æ¢õêm¯¸™ bÝJ^,\Ö¡G(4«za©kßÖóï)³B‹=:H“™dYæ!<2T•KææÕ¹²Dåˆn«‡2Šd0Ô×°ŠÎÄ3£ÁäúÝ~%%èÚÞiéîÄ5 õjÔIAfyf}!9î|wÙS»´bÝò¿?¼ƒГ¥–W”­lí­¯¸Œ·`â”ùW{xx¨l´ø•”É#^þo8ëÌ ³Ó ˆ³àÏ><„ÍÊÃ¥ ó·sjLåŽÄ7S{æQR¿=îÑQ…Ù5÷sCkWµÝüûƒº¬»~äip¼EÙ÷“x¯%€‹›´0òê¸qV«:•mTgE\*rRühnºÒ”–Œ”D¤$È̇nÁ¸Üªð…$œ’wy6¶˜ýÒ£)Tm&Õ–¤ÊÁ ±œòdD´ë¬Æ}ŠÍv£W–ÓšÕú¸Oõ'ó ½ÍqÍÀËJ­>]J¥Iz{òœS«ä©2lGžHlÖHJKˆˆ„˜â¥dín¥r°p›¼•ÛÚÝ»ŽoB³höÂtQèq Y#ÅKfeÒ5%9Ÿß1Êu\õ¶ûYÞcOŠ’ìDý‚(RnC3I—éW¸HË"³ýOz'áõûŽ»sÌm.É7½luÜÎ÷wC›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`»¾)/F©¾ÅS;ÕGÜ.E{Ló}Þ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø>í¯†õœR­Q©42`äÆŸ¤æþîôžG…%§]Èô«5ià,¶ôÈr«]Q‹rçMeµ¦›Ã¬Ò3O¹š!paýZ3ÕoGIŸ¦[Pé;›Ü̵:¬ÛËbtžÃÏiìªU“¢¡Î¦ß¹«R Õg>g½÷¹W)ûŸîØØ=I±ÜL?£\(©¸E+695”y9§j´\;3ÏõÏ;8ÛW>ŠÕ‚’¢¡•Ô¯¯-w&ò°*þL§}igƃ¶Î•žûú?$òVýæyy]?ªÏ‡fBü·};õZÖ&ï~ß9´-×{ÜŽé{ï +ž V¬6LJ®6ê©#•“ãŸ%íp|Öö\pìÌvž6¬¦ïm jÎú6#,O+é_^VÒ¹'nÃzË·%VûI3ãD[.U!ÃßOä§g´òroNÔi-ªÕó!]h¨sºŠ]VÑh•‹ Ü÷ÎeMÇߥs9«tH77`Ô'Ys„a¤ø”“á%Lj#'tST¦ª+<ʧv`^Žµ»J#¨Fá"NÇÒ^ªUë§ð Jx•-yyêÛŸ(ç׉K…"´IŽã*.'Rò‘ iܬ”uäxYiÉ*$2ÚœQð% 5à"ì|Ql’íœ$¸.%!kŒpcžFoH#Iåý%XÏðª#Ïõ“é`gS^K¬¶6…™N²âœxH58¼çÖ_¢8eÓ>"él!WR£©¬ÑP¡*ËÞÎ[Ÿód8’ÍŸódgüÙÿ6@ÍŸódgüÙ€fgüÙÿ6@ÍŸódgüÙÿ6@ÍŸódgüÙÿ6@ÍŸódgüÙÿ6@ÍŸódgüÙÿ6@ÍŸódgüÙÿ6@ÍŸód¤¸Ý™Ý3õpo,eÖïd.pÜ^ó/Žå;¼ŽÑØdL•j|·¯iÛÞ\y¼²ûÃÊ1y_¤üÏQÃñ#ì¯#œs1‹0Ó±Zì¤Q¡_§gÌUn³M©=†ÍE –øÎhQf½„‰=»3ËhÓS­R&ákz±’NM_öfn¥*uk8­;ßÖqvŠvçî8ýÝ„Øg€—-"“RƒˆP¨-¹ Ú®±Wº#<æiiÒmDhN¼‰|ÆžkÕèbªb“iÓÒ踭'eÍs…|5<-“U4yäžJïœÕ‚22##ÌŒdQnˆ& ± ¥e¼øÃUן\Œà›‚åan”|ÈxîJwèKÈëß¸Ç jX›Š–Ôzt†X:CÌVd)íY)ˆO´¥¡:Hù¥fDœögÂcÑwRº£Ißžñ÷´Ï9ܼ;­U[ó^—¹4o…ªtÜP¿o‡>+‚L§Ga:÷æ܈— js4éÒz‹,ŒÏ¦D<úx”éFÞ2mìÌô8áÚ©)óJ)wí3ríà +ðÂÃ]Zεkð*ÒŸ-÷xy˜ÒÞ¤5ÌjÔipˆµd{DÙn„]YÔ³´àÒÕÎ’ûˆKsä©BW„Ôž¾fßÞL°0’§n{ýS#œ +­»ŽÓ¯CÌ<·µs:t+fGž|B±)ÒTóº›}Vhš°íUsæqKąѹjâNÙ¸zuhŸE¯Ä«?#ô]ál³=Ùf„sµVDY‘d{r^èG~•K;J-[+ñR ­Ï’¥wWŒ¯|í­¿¼7`áuB-àÞ!*[U>%1Ë_$ͺóæ³Ù§A‘åÞ|Bfåb†÷Λ•ù­dŽxì;U7ÎgsÞí•]@_w7ô6µ{]ßϸ1[¡ÊË·îF— Ä]Ÿy7ŠòX1ºÏtV"aÖ$Ô¨víƸTö¢@q ”v"[­š–zœmJÚ~¨ØnnjjRWw|ïæe±øÉÒ¨Ô]•—2+w.0ub¾ã‹ôBσ(ô|_̯á½/ò¸xÁÕŠûŽ/ÑQèø¿˜á½/ò<ñ7`bó²#!W‚Í+u¤¨¹.ÒRÈŒ¼Ë¤s(ô|_Ìú·B¯KÁ|뎣[M¨ö™¥&|‡ž³nŠ[ƒ¾pÌönãøÖP¾Äñ—³…øN/ÖŸÆÉPE%€7ÝÚ]ÛJZã^3.ÒI³i>M-ÄFôØà zGì ðô”í$‘¨@ +%»sÌm.É7½lh·#ó½ÅFès{Ê4e1ø®õŒµØSÎ]§ì\Ì `ñò‡×B³æŸtŠ½%©Ã¾'µä§…ý­¾í…ážW£>é¯I¥ÒzJxOÕMµÝ°¼ ôz½wHzM.”{ÐòSÂ~ªm®í…á£Õè˺CÒit£Þ‡’žõSmwl/=¯F]Ò“K¥ô<”🪛k»axAèõz2îôš](÷¡ä§„ýTÛ]Û ÂG«Ñ—t‡¤ÒéG½%<'ê¦ÚîØ^z=^Œ»¤=&—J=èy)á?U6×vÂðƒÑêôeÝ!é4ºQïCÉO ú©¶»¶„W£.éI¥Òz>Ý¿váõÙ(àÑ*ÔJŒ¢BœÞ"?çt$ÈZ3<ˆÌ³<²ÚCñ:u)«ÉI.»£¤*£´\[êi•§vm:$%¸¨ñZdÕ5Ò3m´¤Ì·“Øy ]É“r•ö}ä,z²]¿qžÃJR€¿`e"žýj:ô¥AlÔ¥2ƒ3áÚfd1XÙµRY½{M.+AvUWþ!JJ®Kl”“229ÐHÈËa‘ócžóWd»¤7ú}(÷£ùòAém¾ïƒá†óWd»¤="ŸJ=ñH8aÕ-·Ýð|0Þjì—t‡¤SéG¾#É :¥¶û¾†Í]’îôŠ}(÷Äy á‡T¶ßwÁðÃy«²]Ò‘O¥ø$0ê–Ûîø>o5vKºCÒ)ô£ß䃆RÛ}ßà æ®ÉwHzE>”{âñ*g¤"—àïœ3=›¸þ5”/±‹õ§ñ²TI`X1ž›@¤\1®‰¸¬í“8©¼‚hg‘¹’òžÏ{},ù³Ë™OBË &â⡦›OŸ]­Íb·©)9è4šæÕ{ó•û ®8ôú­Û±ï{Þ½‰->ôdPâÇ‚Üi/©kyçd4‡ •¨Öf¤–fYé=‚Ò¥=$åR4ã•®äïu–MæTS¨£êÓI]ÞÊ*ÙË7vµ]šByfyp Ê5Lüáâ×9w±S¿2¡# Ç´¼Èøž$½—äHø÷UŸFĪd÷àÉý㶙6žB^›¥èZv¤Í +Qf[r1 *©5uëdõq[:ã$ãI´ìý\×´‘Áœ±Ì”¢+ªåÈŒÿ£Ï Kß>Œ~Â9ºJmŸÇØJº«¹l<0ß>Œ~Â>oJm°•uWrþØ&xa¾}ý„7¥?¶ÇØJº«¹l<0ß>Œ~ÂÇÒŸÛcì%]UÜ¿¶ žoŸF?a ãéOí±ö®ªî_ÛÏ 7Ï£°†ñô§öØû WUw/í‚g†çÑØCxúSûl}„«ª»—öÁ3à óèÇì!¼})ý¶zö«u s­J{W b\9ôêÒäGŸS~[J[½¨’ê#Nµm.˜U´©ÉÚ)§ÒK]ö˜' +‘Iɦ¥täÞ«m8–íÏ1´»$Þõ±ßr?;Ü}Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€•b]BS7MM Êy 'É)uDEÌ'ˆŒhpÑN¬ªýbçEÚË]b}áŸe’:òx¤½¦ûLïV=p¹í3Î7{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ,„¹‡ô­$¤šé¤de™øÜ$c¦”^ÿ…‘±ü›ú¿> Ô^ø¿ÞdO,¾ÍtúÑßMí}ìúà¶.äx¼a¥ú¹šðGÝ7µ÷³æ‚Ø»ñ†—èdNækÁ 7µ÷± ¶.äÄ(€Óû…7Ùm}ìoqØ»—È}ˆP=§÷ o²ÚûØÞã±w/û zOî<ßeµ÷±½Çbî_#…Wh4ºmÙ†æDŒáÜ +-lÆi¥dtù{5!$yzƒ´fÜ'vø»_IêA)BÉ/_™.Œ‹´(  2Æ *£cM¥W´kˆý-=¼êHÈ栗iæóýR‘—L³#Øf%a±58óyl"âpë sùí:î§ÉpÆ%ê4o3#êI‰G¯J.Ù© +ȸ9¦Ö\J!èÿ¹î•>§ÞŸíÞyÇî›™Sö³Fßà.ìl>Çh¬5¤Ý&¶i-ú“9Ô¶ñ/f{ÊÌÉ/'¤iæ²áJF¹•0ÏU×Ijü ÖtéâVNÏcû¶–ÀTçᨒFfym307Ý»fÁÀè²b±9ªíÀI2j™ Ô¬¾#’êsKI.2Ú³à$ñ•Ö rªb]í£¯îÚRãwVžkÒ–Å÷¿Ù˜¹kÚø‰»“Ÿ“!Õ="JЩóMPépˆù”¤¸’Y“mç©jÚ|*PÛT©OsiÛf¥Îßí­˜Štên•K¿{æKöԎƸq‡ô|,¶¨öµ æ 1„²Ù~©f[VâÏkQš”|ff<Ú½gZNRÖÙéT(ª1QŽ¤sqÀîOwgó¥IöI¿Í8.÷'ŽýŸ½˜þ*íû™š£TQ¾îoèmjö»¿Ÿpb·C•—oÜ.ˆ»>òoä°0³wGEúÇhS?4c}¹Ší—™ŠÝNUö/"¡‹’¤=¨ϸ}ŸÎ$|zÒ×ï;>ÄózÄûÄ<©žŠ_ƒ¾pÌönãøÖP¾Äñ—³…øN/ÖŸÆÉPE%€Kˆ'lâ=Bf ™q*ð[ÞbÔ J\y,·¨Õ¤Œ³A–fg‘¤ýq.†*Tn•¬õ¦®™¾5ìå{­M6š#Ú& +^–uÔåÇJÄEÔÛ˜Ü(“™®ACÏ®W¤¶Ûìy(‰jÒ£GÜįK„ã£([6ýWlíkÙ܉ès„´ã;»[×WÊ÷Ö¬YÝœB¨¶?øG¸µÎEÝìTį̈HÃqãí/2>'‰/eùçtgBº‡_BøƉåWÖød~ñÜ—Ùø¢{®ùuúçïÙÙž0>¢tV±}‹¸?àAÖ\”½¨}äwÊÃÙŸÜpÛžcivI½ëbFä~w¸ùºÞòL~+€ýcmvó—iûópÈ=,Ÿa®/ÎA§ÉKÚ‡û±ùëfî§ݯçµÛÏ~dÇMÈãK³ï>Û÷Ô4Å lFô6¶=O¼¡ˆÆr²ö6ˆ»79À´»EúÅŽ+”—i ÉÇ°”„RX]\ôá‡øp+âùc¼8“ö?Ý‘·ßû¬‹Š(Ë€‹±c­m£.‡wRQ5ŒÍL¸\Ĉîe­—KšB½m‡Àde°JÃb§‡zPvòd\F…£531kļ­×ž™`Õ˜¯C#ÔÜYKLIèõ G“+˧©±ÌlðÛ¿ åQh½«5ó1˜Àœ3¦î¶<ŸÈƒÕoî¥ÂÔ" Þ°ÙFÄ"#’¥2D_±6êH¾ù úxZùú¶ËÎÄ U ½v“òaÛ¨ñqµB•ò›[‰ïHˆÁ糚䅴“/Âî†kAvYù\oXªù=7ÛuçdX,ñ/®jÃÑæâ%ešDLÉKƒOYH˜½¾UNå½7™q§|1]‰ü Œr¦®ö¼—ÏȱÃ~OÊYÔv[oåæl.am¯„4V(%ª|&ö¨Y¸êòÈÜuÅf§|jQ™ñE‘ e|D«ËJnìÙÐÃÆ‚ÑŠ²$SÝÙüéR}’oóN ½Éã¿gïEf?Š»~æf¨Õ@¯»›úZ½®ïçÜ­ÐåeÛ÷#K…â.ϼ›Åy, ,ÝÑÑ~±ÚÏÍßnG"»eæb·S•}‹È¨bä©jóîggó‰£ôµûÎϱ<Áž±>ñ*g¤"—àïœ3=›¸þ5”/±‹õ§ñ²TI`J7Rb³eU)MUo‹ž‘P~.lS¨2ZŒËÍïŠ-ùçI¡'™s5g‘yQs¹ô¥RöŒZ¾nJöî)÷F¬iÚòœ_2ƒµóç¹a…Äåvæ¢È›ºqc*SÍ ëÕ%ËY¬´°ó‰a†S¯Ê¨’K-» ÅXh¦•+»<ôTV­y¶ÊšSrwu\UÖNNO_RKÌÔ¥pžÌ¶ð ™¯gòÂ=Å®r.ïb§~eBFiy‘ñpÈ=,Ÿa®/ÎA§ÉKÚ‡û±ùëfî§ݯçµÛÏ~dÇMÈãK³ï>Û÷Ô4Å lFô6¶=O¼¡ˆÆr²ö6ˆ»79À´»EúÅŽ+”—i ÉÇ°”„RX]\ôá‡øp+âùc¼8“ö?Ý‘·ßû¬‹Š(Ë€¨—Öî *ë–¡iVªS[©À}ßCt÷œA8´¥DD´–FY(¶¸¥¹5jÅM%f¯­õwV•)86nY8”­< +"2õŒS—ö? ò#>¡Ú;¸°¦÷¹àZ4ª”ÕÕ&ÊT&Pº{ÈA¼“QÔYs'´\UÜš´âæÒ²WÖŠz{«J¤”wnÚ‹z)Ë€8¥ñyÓ0òV¹kN-º}1…É’¶Û7–ÑÂd”í3õu£IÕ’Œu·dr«UR‹“Ô•Ù àÖë <Çš´º%£:SòâÆ9n¥øN°’h––ÌÉK"#<Ô[ìVçTÃ-)¥fí®ä.èÓĽ7t¯ªß¶²ÉŠÂÌqÊÓÀZT:ÍÝ%ö"K’QSÖúÓBÜ"4 ŒÈ´ ö‰˜\$±.ÐÖ•õ؇ŠÅÇ “ž¦íªýgõƒXãjcÍ"enÑ’óñ"JT7Tüu°¢y-¡Ã"JÈŒËK‰ÛÀ¬$°ÏFzÚ¾»õ}à ‹Ž%iCRvÕnkýä¼!“§»³ùÒ¤û$ßæœ{“Ç~ÏÞŠÌvýÌÍQª(€_w7ô6µ{]ßϸ1[¡ÊË·îF— Ä]Ÿy7ŠòXY»£¢ýc´)Ÿš1¾ÜŽEvËÌÅn§*û‘PÅÉRÔçÜ>ÎÏç>=Gék÷Ÿbyƒ=b}âTÏHE/Áß8f{7qük(_bxËهŠ|'ëOãd¨"’ÀµbÅÏX—wRlº +­út¹4Ǫ*ªWâ¦IîôLFiZIKÏ5+5dE–ꢂ MhÊoI¤Ò´]žwÍõت­J0Z)É7y+¬­’ëÌá ª]Ø]U¶NâªÚjµV%4˜§ÒƒRiR Èž`›5ɳ,×™IÛ™ QŒ+ÝEN-E»¹6²WÌ‹RSÃÙÉÂIÊ*Ê)K7l¬\ÓØfB¼gà÷¹È»½Šù• n<}¥æGÄñ%ì¿#œîŒèWPëè_Ã0<ªúß Þ;’û?Ouß.¿\ýñû;3ÆÀ8TNŠÖ/±wü:Ë’—µ¼ŽùX{3ûŽ»sÌm.É7½lHÜÎ÷7C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`»¾)/F©¾ÅS;ÕGÜ.E{Ló}Þ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >pÈ=,Ÿa®/ÎA§ÉKÚ‡û±ùëfî§ݯçµÛÏ~dÇMÈãK³ï>Û÷Ô4Å lFô6¶=O¼¡ˆÆr²ö6ˆ»79À´»EúÅŽ+”—i ÉÇ°”„RXfð»éVmvµ Ø…)5©(RÖ¥)D”!I”µ¨É)Iff:S¦ê5›zÅJŠšr–I+¶Ew>èm®TD.׸%ɪÓß©¢Zn¹qã0´¡jɬ”ƒ#QfY pÁ¹9zÑJ-&ÛÊîöÏÜCž5EEèÉé&ÒQÎ˨”,‹º-ùB¦\˜yˆÕ·æ‘ N’ Ì‹Q!K"Ï,òÔ~®G°G¯EÑ“‹µÖÍDŠ•h©+Ùíî9Pàw>º¹éÃðàWÅòÇxq'ì»"-n4=¿÷YQ—Ýå‹×ÆÚ–õJÅ”¨ó%U9õ&%³¼8¼´­ "戶ä/· DÚž¥¶ÎåëâgB)Ã[–ÄùžÓï{ο{Ü• ’átܬK}HY²L™º„¥)ý ’D[[2‡J”iÅF:’ÈóºÕeRNRÖÙ²ƒwCâ†.ÝÕÚUñ9r Ĥ“ñÒªsqHž'ÛFzÐÚ ù“=™ŸLb·cJ„‚ÍË<ïÌú;äcjדSÔ£±m[ª£&jÀ+·ynˆÅ¼-ê]‹=Èð¥Ry%ô¢œÜ¢7ù!Ôg­m¬Ë™Il̺cW¸ø*UàÜÖjVÖ×2ë2»¯«BIAäã±m{S1¦Ò¼k¶Ë墺h¬Å”©L,™'LŸ333ÞŒŒižÌ¾ðÛU¥ÅÆZš¶¾cJ¬¡5%­3{7ã-ùŒ”+¶eù-r$BŸ˜¦¸H‰¥µ³©E’\×ÑçÛ±…§‡”U>tïùÏCÜŒLëŹëMs%ä‘~Æ|¿ Ý¡º3#^X‡a3=µ”iˆløÚÙ§‘Üaµ,·ýïW žÝ[ÿrðTœ!RÞ¶½o]ß5Ìêãj©N úºµ-V]E%ÁìY½p~«.«cJTyÒ#g”˜‰”fÁ­+2Ò´,‹šImÈ^â°Ð®­=Iß]³(0˜‰Ðw†»lOÎçd-Ë—•{p²Ï¸nwÚ´øÏ.RÔÁ0jZd:‚ý )I'™IptøÇ™î…(Ò«(ÇRjÜüÈôì IU§K[¿›'Ñ^O>u]÷#Ašó'“°êÐygÍ%e³hýE]®Óó'dû°˜Ëº#±~›“|Ïqøeœ†ªsqHžJV‚=Im|Êf~¨õ<. +•x,Ú¶¶òï<³«]Zz“¾¤³·R<˜1º'°†šõÇžäz|©¥%ô¦šÜ¢7Ö–ÛQëSk2æ™ñf¬*îóY¥mmeÞ}ÁãjÐV†¦ï©<íÖŽÏÐœS±ã­{T¦ÐjÙ–Ó"3W%™êhö‡ÃèSÝÙüéR}’oóN ½Éã¿gïEf?Š»~æf¨Õ@¯»›úZ½®ïçÜ­ÐåeÛ÷#K…â.ϼ›Åy, ,ÝÑÑ~±ÚÏÍßnG"»eæb·S•}‹È‚°Ó +똵>E2€ä.Ja£|Û—1m—–6õùm%µYyRÚ{zñ ´¥{_™\F‹¬ôckõ»CÛ•ï(í¸êªVé¥ RM~)žI,Ï"Ô"pŒ6Kì2_ Ol~Ò+Ü’âIö8‘dõ{Šõ¯Þv|‰æ õ‰÷ˆyS=!¿|á™ìÝÇñ¬¡}‰ã/f +)ðœ_­?’ ŠK +³Žöík«0-zU*Ï«“pŽz¢\I”sýÚ7Y8å̶{g¨ŒÕê <$•4äÜÖi^6·c¹YŒŒª5¨;¦í;ß.uc‚áÆßVv N5—‡ð—™¢EɈŽg“›ÂŸÔIY§<¶‘tö •qtê&œª>¯VÞ*X*”Ôi,þ•üKÂyg°Pð„{‹\ä]ÞÅNüÊ„Œ7>Òó#âx’ö_‘ÎwFt+¨uô/Œaˆ˜U}o†GïÉ}ŸŠ'ºï—_®~øý™ãà*'EkØ»ƒþeÉKÚ‡ÞG|¬=™ýÇݹæ6—d›Þ¶$nGç{›¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°]ß—£Tßb©êÇ£î"½¦y¾ïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ûÂÓ‰Ô/Ûf“¦Í¸©Ñâ›ËŽO¹1”´o#j›%š´ëOṡXÒ”’wµõ=[NR««¶’N׺װú4–‘tÇTº5N5B:Vm›Ñ^C͒ȈÍ&¤–yl'NPã&»U„*F§§Øî}¡Ìè2E‹'Øk‹óGiòRö¡þìGþzÇÙŸû©Ç÷kùÇmvóß™1Ór8ÒìûÏ»¡©výÆu 1H‚= ­cSï(b1œ¬½£M‡â. Áp-.ÑG~±cŠå%Ú@Ârqì%!–OÑ(¬ú“W4©q kŽ²•§“BJØu´4…¨Ô‡Ê™tö 8g%4ã®üúµuõ±*. Nö¶v×­[WYNgâÑS'cœ¸í!µ1ÉîXjjZY–¢ä…²II¨ÈˆYY‹µ‡¾[ÚÏ™U˺夵žúòçt³ï±r°AÓV=¼‹Bs³¨äËœ-âQ; ÷Õ›®,”I2RÖg°‹¥°Tãt´Þš³Ë%©++.ë8% ÛWy½mÝßÄ•hõÕÏN‡¾/–;É?cýÙkq¡íÿºÈù•½Ùqhµ*8í7Ü8r_Žk)¨"Y²â‘«#hòÏ,ò¸nK’OKZOVßyû–>ÎÖÔöŸ3—z'Qï÷{D?\úK¹üÏÏ-ž#—z'Qï÷{DúK¹üÇ-ž'3ÃÝÕ±¯ë†™o¢Ùz*¦­h'•-4¡KÚ’lŒü®\#…}Ít¢å¥{u~'ZXÍñ¥m}gÝ-»–ç+²=ªýœý]o@fq>Ôô0DN¸ëd +eff[Þyç·>Û¹/ -+fÕ­}ki ºË =äž»k¿SØWãñV`+aálãõêýXXó鯳ø•ÿź¥ü —¸ÅˆÇŠ˜ƒ\½Ú¤=º”ÆeE+|SdÚN“Y!$yèÏ=šû?‰ø¸WCô¿2ï ñ ðïè×Ë”—e·O©.yÄJ´)d¥,ôÍDe«‡OÕâ(o´Ü/k«\ÉáëïUí©ÞÆ¢—ŠµOlŒü‹f¤¸ÿz—ü 2ŸÅºúkìþ&³ø¸WCô¿.–æ]ÓQ÷HÛÕÊü{yÚBirŽ)²ä¤È7 ™Kº‰Imyl²ÈÅ&?ð’Q½î¯ªÜöÚ]`1ë$­gmwæ¾ÄSø«tô¸ëiÃ)‹Ð¥$Í5Vπ̸£z‚ïø·_M}ŸÄ¥þ.Ðý/àHÏ|Q¨x§eÜÖ›xs2눙+ž‡ £p¼± £¤Õ—K2pÛˆèÍOM={Zßy»j´tmumS7(îF滚©pJ¶ß¬¦m=PI–Þ(æƒ7[w^¥6¼ü¦Yd\<"ãtp^—íg}Wæ}h¥ÜÜg¢IÉ«Ý[]¹×SØ_³ñWiíÜ/š’õj­‘|g¿‹uô×ÙüMñp¥ùŸ¥ü s'î ÆS·]S.FjO…-$á’J6û{Ó³=YèàØ)c¹÷­¼ßŸ]º¯¨º–=*;õ½×붻Ñ>*ô–iÂùª.™U[2ü‘…×ñn¾šû?‰Kü\+¡ú_À•ku~ì¸û¥-ªU5•&Œ¨UÎ7œ”™²KN5 ’–PeåóÏ>.m¹Û—èrrrNêڭκÞ£t·Mb⢣k;ë¿3[ÓúÜ£»6>æ»^©oI²¤ÖW2¤äò}¹IŽH%²ËZ *eff[ÞyçÇÁÓnŽå¼\””­emWçojÚ}ÜÝÓXH¸¸Þò¾»s%±ì-Tbžüˆì+ ¦ Ýq ‘ªªÙe­DœöÆ,òÌT?Éæ—}ŸÄ·_”+¡ú_ÀšÖÒ÷Ä%ye¨ˆÿÈãûSÝÙüéR}’oóN ½Éã¿gïEf?Š»~æf¨Õ@¯»›úZ½®ïçÜ­ÐåeÛ÷#K…â.ϼ›Åy, :ÝÃK+*î1C¨84Â%¶Ã‹I™4yíJL†ór$•š×.u´Ænœ[ªòæ\ÝE]¢•ÇnLj¡K>,¶‰Ä¡æâºKI:…6²,ÐeÍ%FG궞ŒÕš|×Ed4 î®šÔì|R·'—Wq»àškjïGãAì}Ì÷àÐêe*!ø×/ÍÙýõwöiþ?jÚÖ­¨ý(;êzö3³T_1g¬O¼CËYèÈ¥ø;ç Ïfî?e ìO{0øQO„âýiül•RXTcòQ¹ Ò´©JkIç™–,…¶«Œc&äœ\•¬üJŒe)ÆR–ŠQ’º’‹»kÀŒ­zõ‹2å¤B¶oüBº%&Le©¸ï¼ô6ndNI[‘ÛNðy£#ÈÈ#\&“r…8«<ÚK›µæ@S§{FudoŸ±e´Ð¥pŸõ\8iÙøÂ=Å®r.ïb§~eBFiy‘ñÇîÊC·³K,â;6˜ÍÉ,óeo6¤%Í›y“<Çê.Í=vhøÕÕµdÊaÔ¯Ó)6­½?éóÚ¶Ý7™TôS¥È6M…¾ë/¶jVø“Ôd²5j<Ìö ÙUŒäæª5¤š³‹ºO;&Ÿ‘Ÿ)SŠ¦é©(´î§›\í=·Îå€À+.§dP* Õ!B§9>©6 Õ2œá;œÌƒI¦:""VœŒÏ"ÈŒò,ˆ…~2ª¨Õ›z1IÉäÛÛ÷8*.š•ÒŽ”®¢³IY/Ä›ÄÀ8d‹O°×ç ŽÓä¥íCýØüõ³?÷Sî×óŽÚíç¿2c¦äq¥Ù÷ŸwCRíûŒêb6#z[ƧÞPÄc9Y{F›Ä]„‚àZ]¢ŽýbÇÊK´„äãØJB),ÛjUŠU«Q‘A¸i´ ù´–ª5cÊ#¥‘+Vde¨Ëbs#-Yl($ä“M­‹[8דŒ[M'µêY”:%>£&J*>"aõÙ9 +Ö—«uÙ²A—ˆˆ$GIèf}31 m,£ +‘_F*ýï37g'yΔßÒœ­Ü¬¼ ÙîÔ­ºT‡Ÿ¥>µ¶¢7(j5SL’µ$¹ÔDzH‹#Ù峈èÉñ¹¸Üm_·¸Ñaå¥ÅçâquœØF$]\ôá‡øp+âùc¼8“ö?Ý‘·ßû¬Š|óËqû'?á J\Xû+È«©Æ}¯Ìã$ÚÔY¥ +2é’LËòês>ô*%Óju*,F\3h‘âY?'|ÔŸ˜4˜ÑE ñGàÆ‚Õµ´+Ç:af”$ÍOŒˆ_»ŸÝÅj/µÝÃý ô/c"|f‘6Ëëí §òåî_8xPcHÁ*ÝŽÚÕɵMªm&Ï•ñ™;¶Ú¬û#äNÜDÛ/2óxÕ î6}©?0¡ÒeöŠ5BûŸjOÌLh£|SøÌƼp¼™i ‘³$ÏBI9þ™g‡"]Àw„ûW“1;¾­8v?4mo1k¬O¼1,Û£Î>J{»?*O²MþiÁw¹Šñ<ѼQk½ç˜híAŽ6ƒ2zFÂR‰'ÇêpáÒ—õnÄŸæ¯]ÙYºÛk2Ú¤‘þÌcY«)fùÃ3Ù»ãYBûÆ^Ì>Sa8¿Z%A–Ç°ÚÇÄ›º3çÌuS©Š™T5d¶ %å$ÌÒën2¢ß öut!a‡­:1m[Fé4öÛ¼¯ÄÐ…y(ÊêVn6Øž{W9PcÖìš/)Ø“¿D¹Ü¤Q5Ôé fC¬“î%”4¨„„¥Z”²%-¢/ÙlÚ'åS÷'œ½Ysèõß›¬®´©~í©,¡ëG›Jß›n~¢ó(²3!@h™øÂ=Å®r.ïb§~eBFiy‘ññ óÖY£¯'ŠKѪo±TÎõcÑ· ‘^Ó<ãw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ÇîÒhèu‚zšåM³‡#\¼ÒRw³Í”m.iÏ*^©Ôu®ÕŸ¼ù-OŸ'—¸Ë) ]Ë[rpZ«hÀÏI"™B‘R¨­=>HúlÏúKJ2éæ5j®‡óÑIõÉEx&Ù•7méÅuBR~-%Ü_MÎÖ­ϵœ§Ð(uÊLr–âÜnàB‘1×M)#w#3-DDYd[`¤ÇT•I''–Z:–eö”iŨ©,Õô՛ȞEid2E‹'Øk‹óGiòRö¡þìGþzÇÙŸû©Ç÷kùÇmvóß™1Ór8ÒìûÏ»¡©výÆu 1H‚= ­cSï(b1œ¬½£M‡â. Áp-.ÑG~±cŠå%Ú@Ârqì%!– ºVáM«bɨ»#ì¢}-¢tTJ¼9) tÔÓ„¤žH32<³#ÚB~uÏ;êvz™= +Ryemj댹ŠõMÅŒ vò¸ Ëi¢ßb)²|fdÙ.œ“^ñš´‘'fE–|&,^¶‚~¾–“ºÒz¬­ÎVzN|kÔÑÑM=Æ»¿6ÂéØÕ v«B§Ê´Î)ÑœJŽ'!4MGÒKQ+B )"-Dyì-¹Šjñ”eiÞùkÍêËÀ»¡(J7…´sÔ¬µæq»³,+ÃbµvSãÈÛú]/“Ò6p–ôεçêe˜ýSÃN§-û²ñ?5qP¥Æ’]WϹžã=–«zMP# ”š”¨+AêÒiandk2Ë3ØYé_ * Öjû/wàs¡‹whÞÖãZ˳´—"i]\ôá‡øp+âùc¼8“ö?Ý‘·ßû¬Š|óËqû'?á J\Xû+È«©Æ}¯Ì±˜9QL}—%bƒT¦ãÆÝ#Æw=g™­çÒ½³æ¶ öÍ»n1^YCK%ëf×r&aÝ—ÙêÊþ'µ‹˜X­Û²éȸmÇiÿ¡’ãÆ©ruIò%‘‘ëRžG‘ž”§".–ÁÏ B1’mNþÎŒW™Ö­VâÒqµ¶Ý²+ÜëÑ×ìÏ~aÁ3ÉK±y¢.Ž¿ncŽn¿þÒ§ =kwãƒs?—Yý…»§ü½Cê|LÚA‰6àbï‰ÅÑw{ ŸŒLm·s’‡jøLVâr³ì~hõð¯ûM»—¶k_qË’ìÄ0ÿËãí—“6¨b ¨D8ÿÐÎÿö +©ðgÌ)j>dEvË̽B„¿ \ñQyòÂîÁ'á,·äÿ}«É˜Ê<;š6r7˜µÖ'Þ¦m‘ç¥=ݟΕ'Ù&ÿ4à»Üž;ö~ôVcø«·îfjQDû¹¿¡µ«Úîþ}ÁŠÝV]¿r4¸^"ìûɼW’ÀÂÍÝë¡LüÑöär+¶^f+u9WؼŠ†.Jö >áöv8‘ñê?K_¼ìûÌëïò¦zB)~ùÃ3Ù»ãYBûÆ^Ì>Sá8¿Z%A–›t]A‹Zó¤Ö¡^óè•i4w`ª%6ß*Ë«‚O›‹yÄžÆÐJ<³Ë=›Î iÆQqRÓmËE^ÖE6;Õ”d¤ã+4’Ž“jêù2 µ +§ìë6%Vn*%*«N‘˜V‡é#y—wÔ¥sˆÈÈ’k=ffd¤| FÚnnŒ´Z»©gmjòÚT$œTå(é'eOŸIK^½zöš­¦~¹ŒŠ6LþGÓòG¸µÎEÝìTį̈HÃqãí/2>'‰/eùçtgBº‡_BøƉåWÖød~ñÜ—Ùø¢{®ùuúçïÙÙž0>¢tV±}‹¸?àAÖ\”½¨}äwÊÃÙŸÜpÛžcivI½ëbFä~w¸ùºÞòL~+€ýcmvó—iûóÇ®Ù"P«/Ï–ô8C’¹c¨Ðó-%µÜmDG’ÒDf“éä?QÖ­µ%©ßc(„˜T¶(VÝQª®'=>ããŠ1ÖÜùM¶ðä):ÖŒ•©Jà2ËIÆÔ½Uy=—Wiœ´tT´ªúÎÑZY¾µ–¢ÏàÈRíÙi‹&º·£Ô$ÆšÅÅ$¤Ï‰))[*ZK-Y)9fFG˜¬Æ§uųӂ²jþež «5ë]JÍMݧeàÖdâ+Ëáz,Y>Ã\_œ‚;O’—µ÷b?óÖ>ÌÿÝN?»_Î;k·žüÉŽ›‘Æ—gÞ}Ý K·î3¨iŠ@ØŒèml{ŸyCŒåeíl?vnsivŠ;õ‹W).Ò“a)¤²¿1…ÛJºÅ·H´jw%DáJKTõ2ÙF‰¬Û%©O­$¥)Dd”–ÓÈL£‡ß“’ŠN×w×kó+b7¹(¨¹6›²¶«Ûœãv¦=Tïõ@“na½jE[éi5i.ÅŒÂPKÐë†ÚÜ7L›2QvšO!Þx5K)N)ÚöW|×Z¶‘éã]\á 5{_%ìõìçì>þè{ÒvY’+”÷ÒÊØŸLC®)„¾EÉ(CÜÂ’¬ùƒ=¹f\%´qÁSU*(½Ný\Ì펨éS”£­[šüéy½;u†»ÆåbU~2mæàÁU-ÏÍrÕ¾rAfLê<¹,Yt¸ÄÙnuMí4ž–“¾kU²çÚAŽéÓß,ÚÐÑ\Ïw~m„ß¹âë©ß½\ª¼OL—ÉJS„ÊY%%2Cg¡ I0”ñLöˆ˜êJ”ôW2=óqMø“phi>yJÙ[%&—EÃKªî°ï™öÒë5wéæç#·:4š‹-µ4lËeK,Ü%,“Ò2,ŒLߧ$©Î*IFé^ÏF×½ÓØAt)ź“‹s³zÖ•ík5´ð*›_ÃiòpÒ³_¦ÕX¥SÑ: ƈüy‰bL— 7õš25jËBŒË¥ãŠ”kÇ|I§ušk(÷ê;áa,<·¦ÓVrY4øÙõkešE©]\ôá‡øp+âùc¼8“ö?Ý‘·ßû¬Š|óËqû'?á J\Xû+È«©Æ}¯Ì³¸;mVª¶´géÕ{}('$gUç§'™«"S†GÂ[6D*ñ•eš–¥š“Š&áàä²qש«³àâ”·¢QfÙ[¢­ÕïyEbØzŸ%y-'Ì<ã($åÂ{v–eÆ>áÒrM)vïŠKºçꫲwkWA§äp-ν­~Ì÷æqÜ”»š#áxëöæ8æëÿí*p³Ö·~1x73ùuŸ×øQ[ºËÔ>§Äͤ“n.øœ]qg°ÉøÄÆÛw9(v¯„Ån'+>Çæ_ +ÿ´Û¹{fµð÷ü¹.ÈüCü¾>Ùy3j† Ú€Cý ïÿ`ªŸpLÁò‘ö£æCÆòSöeäPOç¡Åõ쪾ØÐþPr‘ö~ó=ù?ÉËÚû‘Ã|J¯çþ)õôÎþXíùCª[î8þOkŸÕÿv6,c ˜P— ­GÙ:_çLh7 –^ÌŒþîò/µÃý ô/c"|f‘:Ëëí §òåî_=øœ(]½TøJÅ~îrï²>DýÃäWl¼ËÔ(KðÅÏŸ,.ì~ÈÛ~Oñ'Ú¼™ˆü ãñù£g#y‹]b}áŠfÙqðúSÝÙüéR}’oóN ½Éã¿gïEf?Š»~æf¨Õ@¯»›úZ½®ïçÜ­ÐåeÛ÷#K…â.ϼ›Åy, ,ÝÑÑ~±ÚÏÍßnG"»eæb·S•}‹È¨bä©jóîggó‰£ôµûÎϱ<Áž±>ñ*g¤"—àïœ3=›¸þ5”/±‹õ§ñ²TI`Sñ/Q±ߨÑïò·ëujqR†šªË}ŽI7 ÕiZI¦Éj"5«$ú¢×´¡(¸é+©7¥£k&Tã=IÆJZ2³ŠZ:W»_µÎ#h@¯àåvßÃ×ñi 4ãÄó0ܵ·¶&rK®<¶7~6ÉÕž¬‹=E³"=‚D¥BsÞïen>jÉ+ÚÜÄhÂXV¡¾[IߓɶÛj÷ç.ø¢4à÷¹È»½Šù• n<}¥æGÄñ%ì¿#œîŒèWPëè_Ã0<ªúß Þ;’û?Ouß.¿\ýñû;3ÆÀ8TNŠÖ/±wü:Ë’—µ¼ŽùX{3ûŽ»sÌm.É7½lHÜÎ÷7C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`¬w¾WëµéÕ2l:¶ÔƒSÄ•d”¤f^ ¸¡ŠŒ"“ò Ô¢äîYvm¶ÚO…)I®D*8ëÅâ’ôj›ìU3½XômÂäW´Ï7Ýî[ꢄ ?•p;zY|ïP{BæPð.Ï +‡Yñï/9 +W&êÏ.FÞÕ¾ç–ß)ŸÑúï–»«v‡kgªÎý… ªÚ²)”[¾,‹Ò·V«1*‡iSç6ÚêQc5)Øl¨‰‚l’¢qÜóImõ4ê7 µJ¤–¬ž¦ûy—9§¡M*‰Íë8½y­q]œû ¹Í4dÚÒ•J]Qr•RšªÁÖÉ%RñÓ4ïå “Ì’‹™Ó§™Ó–B¿{­VÑZ:<]þýeŽÖvÒÒÒzZ\m+/ºÖ'±\X€ ƒÑbÉöâüäÚ|”½¨»ÿž±ögþêqýÚþqÛ]¼÷æLtÜŽ4»>óîèj]¿qCLRÄ`CkcØÔûÊŒg+/hÓaø‹°ƒpCœ K´Q߬Xâ¹Iv0œœ{ HE%”÷!ÛtûªI˦ì§×æS¹m6Íé/CeÕ/|u Aä‚Z̳Rˆ³àãØ7'´bãtÛž¤íb£©)9MJÍ% m^ÿya|{r…Y·h­ÞXCB¥@ƒ\céÒÞÔ§N9¨¤øzŒÒj#Vg–Óª¹I7£JVYè»´’·_EF--*±¼¿9Y]»ø²ác Z= +ÓªT%ÜÏÛlÇÞ–ªŒV!æù²"Cm8…’Ôá™$‹IžÝ‚´¤’ZWz¶š D”bÛz6Zöw÷ÓÉŽa’Æ‹Èç)FGM+Iƒ¨%’Q8¨åQ6de’ü©žÎ{Çõ®Û¦íÙ{ë(wõûäï³{Wíµµc +§;P¶)]›Pžµ¥fr*°Ó +k¹:¢#v:R’lòØE¤³NG–f)±Q´š²Y,¢ô–¥Î^aex§vóyÉh½{<Œ÷ªA·`Ï—i#tP#ÑëkMG]¾•G9·œ’¤µ/K«mJ>cQæe–ž!{NRiO{¿¨£},Ú¶Ž£=VRt÷ÛzîVÐÉJúZÉÛs^wÞ ÀŒD“wÔ—‹r€ºSL°Ûêq(òJÌÔ£ØEž[sÈDÆAÓ§£  œ¯ÇÒÎÍ0SUjii鵸š*×OYt|G×W=8aþ +ø¾Xï$ý÷dE­Æ‡·þë"€ß<òÜ~ÉÏøBÆ’—>Êò*êqŸkó'œ¶¬ZÍ%/J¦TªæÜ^üL™*3)Ö{ÙåMí4ä{WÃÄ bêT‹É¥s´ùõ’°ð„–i·ØÚð964\3#Û®Ò­ÌÃFñLvÚzoVF¦d:âóI|9žYqˆØZiËJɽºiÛÜ’$V“Qjí-š-x¶È‹s¯Dk_³=ù‡ìw%.Å战^:ý¹Ž9ºÿûJœ,õ­ßŒ^ Ìþ]gõþVîŸòõ©ñ3i$Û€‹¾'EÜYì2~11¶ÝÎJ«á1[‰Êϱù£×¿í6î^Ù­|}Ä.K²?Ãÿ/¶^LÚ¡ˆ6 ãÿC;ÿØ*§Áœ0|¤}¨ùñ¼”ý™yĹèq}{*¯¶4?”¤}Ÿ¼Ï~Oòrö¾äpß«ùÿŠ}}3¿–;~Pê‡ÖûŽ?“ÚçõÝ‹Ãf#Å%è+QöN—ùÓ Âå—³#?»¼‹íD#pÿh= ØÈŸ¤N‡òúû_ÂA©ü¹{—ÆO~''A +oU>±_»œ»ì‘?pùÛ/2õ +ü1sÅEçË »Ÿ„²6ß“üIö¯&b?(8ðì~hÙÈÞb×XŸxb™¶Gœ|>”÷v:TŸd›üÓ‚ïrxïÙûÑYâ®ß¹™ª5Ekîæþ†Ö¯k»ù÷+t9YvýÈÒáx‹³ï&ñ^K 7tt_¬v…3óF7Û‘È®Ùy˜­Ôå_bò*¹*@Úüû‡ÙÙüâGǨý-~ó³ìO0g¬O¼CÊ™é¥ø;ç Ïfî?e ìO{0øQO„âýiül•RXWLC¡N|Ÿg]Ñ)KWüJ„K‹"”r5k=&“B’î{R¬Ì¸HXPšŒ”o %vš•¼ +úðÒœ\ei¨ÊÉ«§«ø‘ä–«×c}zúÄZ,»`ë4÷à7C¥<‚P'˜©SÎ)JJ7Â<ò"Ï,ŒÈ„¸hÓ“P„´ôeÆ’É[7nÂôªFõ' (ßF/6¥’ï.yç™çÃÆ) æ~ðqkœ‹»Ø©ß™P‘†ãÇÚ^d|O^Ëò9ÎèÎ…u¾…ñŒ1ʯ­ðÈýã¹/³ñD÷]òëõÏß³³<`|…Dè­bûpÀƒ¬¹){PûÈ³?¸á·<ÆÒì“{ÖÄÈüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒvë»â’ôj›ìU3½Xô}ÂäW´Ï7Ýî[ꢄ ?•p;zY|ïP{BæPÇnö¡?B­5QŠì¨nB’‰,0ƒqçYSj%¡´'j–¤æI"ÚgýGZ¶Õæ|–§}Œ vµr‰mL*£…‰U9ЩÏÓ(O¶ÖáRy$M!(I-Â"Ij^y‘dcER2šk÷%¤Ó“S×gq›¥(ÓiÚ«ÑME8]+«{ËS¹á»}V³Òè5‰ÕųK‘S™ShØœåHÍ$ù>É¥;Ú“’H‘–DYdf*ñºJI4’QZ);­zùËL‹M¦Ûrõœ•ì•­Íe¨’n{öÚ²™7ë÷ +b ŽT¦Ú3õ *V£?PˆÌD§JU2Šo±6M©V4øÍ.Ö‘À¬ýÐ6n ×B¶eJª9¥Å9.<ùí:´®BÒ”•À’,ÌÏ"g‚8éJË©µwµiãaRZ1wëIÙe|Ù4ˆ$à¢Å“ì5ÅùÈ#´ù){Pÿv#ÿ=cìÏýÔãûµü㶻yï̘é¹iv}çÝÐÔ»~ã:†˜¤ ˆÁ†ÖDZ©÷”1ÎV^ѦÃñaà‡8—h£¿X±År’í a98öŠK)þ9Ô<.Ø×tlF‡mK¨RÑL(oQWV‘!¦SƶšiD²"RÈŒòËÕø5¾EÃEÉiie-elÙQ{Ô•M5¢ãœt¯òDoB½$c%fß¡Tq~½â§ +¤Í=ÛQúSò„½ô˯¬¶åždYž\Bfô°÷š¦òM_|RµÕµ"úñ6ƒ¨³k-íÆöië}…§Çºk’ͨ7.¿‚ÔYêQ”Ù:Ãô¼“Z IÔF¢"Ë=¹å§ÂTÞæšWæ²çº·Þ^âéï°’nÜ÷ÙfŸÜT X€å2±öuäûBzuJi†ì{]ÇÏ‘âºnž¦[pÔÞ•9µj"##"à!s9o{Ô­},çlím~â†U³U7Ø·gjwÊé¼®_Kl¹Ô +LÉÕÈõÇŸdžñÊ#ó5!m¶JQ$´™ í,Å"*2i's7vNQMÉJüéY[°¥–]­¸õ¿UÄ[6™Cn®ºË>8Ãq2ï&ÄÔ§ W4zO$æ¤ìq1”£%¹(¥“Ë‹¢SÖÂÊ1”\à£)9f³ÎZZýÝÄϘ©S¿ªõˆS/%ÄÌXíº•Q)3"2Ú”æ¯Èý Í›4£ipð¸¬2§¨Ê9þt“æ|Ë2VêÉÅÊ2É¿V-s®w—>¢Î +¢Ô®®zpÃü8ñ|±ÞIûîÈ‹[oýÖE¾yå¸ý“Ÿð…%.,}•äUÔã>×æL–åËA‘gQ(n_³-·ã½5ÉqâBï$­çsij[œÍ("",Ï! +­9oŽJ +JÑJí+[^²M9­ih»·’yê9M^!XJStV.Ž¦˜äÊTÆcÆy›‰zFdF¤žœˆöŽ Þ¤}XÅÝê”[jÏ+#²VŒ³mhìv½Öy‘¦ç^ˆÖ¿f{ó XîJ]‹Íð¼uûssuÿö•8Yë[¿¼™üºÏëü(­Ý?åêSâfÒ I·|N.‹¸³Ødübcm»œ”;WÂb·•ŸcóG¯…Úmܽ³Zøûˆþ\—d~!‡þ_l¼™µCm@!Çþ†wÿ°UOƒ8&`ùHûQó!ãy)û2ò('‰sÐâúöU_lh(9Hû?yžüŸäåí}Èá¾%Wóÿúúg,vü¡Õ­÷'µÏêÿ»1†Ì(GŠKÐV£ì/ó¦4…Ë/fFwyÚˆFáþÐz±‘>3Håõö¿„ƒSùr÷/ŒžüNN‚.Þª|%b¿w9wÙ"~áò+¶^eê%øb犋ϖv ? dm¿'ø“í^LÄ~PqáØüѳ‘¼Å®±>ðÅ3l8ø})îìþt©>É7ù§Þäñß³÷¢³Å]¿s3TjŠ ×ÝÍý ­^×wóî Vèr²íû‘¥ÂñgÞMâ¼–nèè¿Xí +gæŒo·#‘]²ó1[©Ê¾ÅäT1rT€µù÷³³ùÄQúZýçgØž`ÏXŸx‡•3ÒKðwΞÍÜÊØž2öa𢟠ÅúÓøÙ*¤°§øó"5wÓnrÄÊm§2U!ÚQ1:˜ª¿7VâR… ˆÌˆÔe‘tŶ o‘”4•ÓÉèÚÊÅF5ïrŒôÔM+ÇJ÷i¼½Ä%FL†Vmƒ#)(4j­2LZ|:Õ!×Z{~i³’ÚÖžhÜÛŸÞf›ru9'£%w+..Ž§ØT´”U7V-];(]ñ´µ®³K×´Ï×1•F¹ŸÈú|#ÜZç"îö*wæT$a¸ñö—™Ä—²üŽsº3¡]C¯¡|c DÀò«ë|2?xîKìüQ=×|ºýs÷ÇììÏáQ:+X¾ÅÜð ë.J^Ô>ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ò«ªuÚ‚˜œˆ¦;Ɖn$–ˆê$“ªJŒˆÉXÈ̈ȇÔCu"¹)Ñ0eC$ÔkHÝâ”J26™Iëq9$ÏRHÒYp£+òO?§ç³Yô§ŸîË/ë^~íº¹‹/¹ö5ìfEN‘r9q.­Q™:}EØüŒ·f¬Ò—R¨ùôhÒIÐe™}ñ]ºj.:*1I+ß-w¿9e³NJZNR¼­šIZÜÖDQ}ám‰T¹.ëæÞº%fŒ¦<{ìHõ‘ÏzJ›ÖĶ§˜Ò¡(½]£½ DáÂ׌›ÑͦÝìóMsí8b0ÔêMÏJÒŠWvM%l²ió.céá]2ëÂÛ¥4:ÅÁD«A¼eO¬4럇5n·³Q¶ÊILd” Ì³NY™–|íiF´2RN’¶´ÕœÞ¶óÖÙù¡ÑÜ¢ÕY^öiÝAjK-IÔS— 2E‹'Øk‹óGiòRö¡þìGþzÇÙŸû©Ç÷kùÇmvóß™1Ór8ÒìûÏ»¡©výÆu 1H‚= ­cSï(b1œ¬½£M‡â. Áp-.ÑG~±cŠå%Ú@Ârqì%!–W[æÄ¿Jú+ÆÌzƒšé RÖŠËrV¦ô>·MoZuj"=»rà4+AAÂzYÊþ­¶[œ®ÄQ›šœ4r‹­~w~cWl\^¾¤ÛÍÜ’-4B¦Õéõ59™Å,¹Íf–”ê”’ÔY‘ôËfc½*Ôi;ÇNö’ÍÆÙ«ëQ­YhËB׋ËJù4ùÉ[,ZŽ$Z²h´‡bµ,åÁ”ß'%jŒ®E—´8H#3J´ädBª£5'Í}ZóM}å†.“¯ EsÛ^¬šq Rðç(÷%rèŒV:eÖ#D‹!²‰9,’"êÒi$¨5¹¬ÌÈò.Ÿ*´e §dÛ×æ¬W*5ã=5½Ý¤µJÖNäí‚ÖTü8³¨¶ýMæ—’ ÕÆ%o½!Lj›%‘%$²"#àÈBÅÖU§¤¯kEg¯(¥÷°t]h»^òyjÎMýä 7rj¨ÕJv×®Bzd¹ÉÞ®J4zª·j4¡óÒò·™"Ï!2;¡x¨É;%oVN/äBžæúÎqjíÞÒŠ’ù¢FÀ böÃÊS6…ËM¦xßMeG¥N”µœ…¸ò–¤8ÈI ÒJØe™e³1ÇRžœ[¾JÍs%kßÜvÁR©EhI+fîŸ;wµ½ì°¢´³#ë«žœ0ÿ|_,w‡~Çû²"ÖãCÛÿu‘@ožyn?dçü!cIK‹eyu8ϵù’ÎbåѤ"•&äIi[Š*Ì¢;,Éj5)2šQd’<‹Jˆò.!†u]ÓÊËÕwKÁèÖPVkß•üO±‹7e6ø¡Ò߃H˜º|Reú}A§˜‘-Õ>¥ï¹#6MIJˆ¸Ob6冤éIÞ ]«4ÓK+sæv«QT´Õòy^ï«#ˆnuèkög¿0àíŽä¥Ø¼ÑÇ Ç_·1Ç7_ÿiS…žµ»ñ‹Á¹ŸË¬þ¿ÂŠÝÓþ^¡õ>&m Ä›p1wÄâ軋=†OÆ&6Û¹ÉCµ|&+q9Yö?4zøWý¦ÝËÛ5¯€¸åÉvGâåñöËÉ›T1Ô"ègûTø3‚f”µ27’Ÿ³/"‚x—=/¯eUð6Ƈòƒ”³÷™ïÉþN^×ÜŽâU?ñO¯¦wòÇoÊPúßqÇò{\þ¯û±±clÀ„x¤½j>ÉÒÿ:cA¸\²ödg÷w‘}¨„ní¡{ã4‰Ðþ__køH5?—/røÉïÄäè!Bíê§ÂV+÷s—}‘ò'î"»eæ^¡B_€.x¨¼ùaw`“ð–FÛò‰>ÕäÌGåÍ9ÌZëï S6Èó‡ÒžîÏçJ“ì“šp]îOû?z+1üUÛ÷35F¨¢ }ÜßÐÚÕíw>àÅn‡+.ß¹\/v}äÞ+É`afõŽÐ¦~hÆûr9Û/3ºœ«ì^E[¤[Õk…N¢•K•=M)ÄÅŽãÆ‚3ÈDÚO"3àÌ[Jj:Ú]®Ådbå©_±\û‹Ã[½ R•jU’”‘™™Ó¤Ó3=ìsßáÒz:o2Øû™Å`>âvv8‘Ùê÷–¿yÙö'˜3Ö'Þ!åLô„Rüó†g³wƲ…ö'Œ½˜|(§Âq~´þ6J‚),+¶!X7Ä›Ö=Ýg®‚£ñ˜é/5[jC„Drñ©²g,³#"<ÏilÈXP« ég$ý[s+s•ØŠ3sŒá£tšõ¯ÎïÌq &ÃœXÃ8Tªgª”Ä—}mG˜RÔÛï)×4+2N¢ÔdŒË"""<òk×¥YÝéÞÉkVÉY~$\>µe½ÛI·”¯›»ü ryg°S‡à÷¹È»½Šù• n<}¥æGÄñ%ì¿#œîŒèWPëè_Ã0<ªúß Þ;’û?Ouß.¿\ýñû;3ÆÀ8TNŠÖ/±wü:Ë’—µ¼ŽùX{3ûŽ»sÌm.É7½lHÜÎ÷7C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`‡®,bƒnTäÓ§¾âÙRRkJI=DG³3ÏŒO§„sWº#Nº‹±/6½ñ YlÔD„@$x×æ{-.*ì^G&Ž ÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >Âq2 5KBé‡"kpY‘KœÓ’Ï{a eiS‹Ó·Jó<¶äC¥7i.ÕæÅEx¾ÇäTÚEˆ1ëV-FÝeø4YhÈE6ZU*Ðηt“¤¥iJRy–DZÏg4/'ZM8Ï9-,ÖN蘒§Bk{´©ú©èdóVñÈœ0•"•ñäêÝ>©Q‘pÍ~ tÆ]f_‹’jM%®Ómi=…Ž-JzM99+覒z)s÷•§¨‘غïkp±Ž‹o¦öTS™J—KT‡’DÊA*A+KZÉ9–fœóð’nz[Ûm4íÏ¥ï c"£9-ò1ß"“M_+hëæ>ÎUÚº1Ö*†/Òn©tÕ(ñ)ôÚ+±L’¸ûÓŠSä[Ú‰$‚Úfy峄}¬´a&©¸é¥våÎOQù¤ôªB.¢–ƒvJ6üÖµ®¢úŒù¢áz,Y>Ã\_œ‚;O’—µ÷b?óÖ>ÌÿÝN?»_Î;k·žüÉŽ›‘Æ—gÞ}Ý K·î3¨iŠ@ØŒèml{ŸyCŒåeíl?v~%G`Z;?|߬Xâ¹Ivpœœ{ OBºF"’Æ…tŒÐ®‘€Ò0BºFhWHÀ +é¡]#z³%1MaÉSn; ©n¼´¶ÚH¸MJQ‘áR¾Høݳe=Ä}Õ˜]B¸¬‡þÉÛœTŠÂ¥Ì䜒MµÈrÌ”‚Ò£ÖâK$™ôø…½Ï«8ÉZוòçL¤Än(Ê>µí+»gÌÑZ*ø½ƒµú½Nr¯šŒTL•"Ak·žQ$žqKË™xÏfygµ +ÑIh§d—s. ÆÑ“oIæßæþ$LJ¶6â›­Ç·1†šü—2$Å~"âÉ3éRB”}nbjõ(ç*nÛSºðDê*n,Õö5gâOœ¤“z­k¸•ô¢¿…×GÇð,8?¯Àç8k¹RUƒrÒ«î\mÉL%­fÊbš z›R<±¸yynˆÝ%V.:6¿YÖ– {’wÕÔVMÙ›Ÿ1búŪï‡ÔDÊM* âJ¤ÆA"\i:Y¶òË<µ$ö–GÀ,·/J' +[yYêi.b“u0UjUS¦¯eß;>QÏÝÍ÷4OĤ|ãõl_éŸ4±¿¶ùÉÛ¹¾ç‰ø”œ-‚ëý1¥ý´ÒŸ»›îhŸ‰HùÂØ.¿ÓXßÛ@åûƒ·>bN^—•zú¢¦*ÐH’êd°îù!rIå––V¬¸Ï€‹ˆqÝ|m:ðŒ`ïg±êµ¹Î»‘‚©Br”Õ®ºµß©‘"î}ÇûnÜHúiT‰²W[’!,”Ëí%µ´úøË2ÚY™CBTcN£Ô•ÕŸ3¿1¾¼k:”×;³õ~örÞNÝÍ÷Sá8¿Z%] +éŠLÒ0BºFhWHÀ +é¡]#G¸¶…‘wl?:§~eBFiy‘±ůšÙM¹_¢òJcxã\MýešßšR5¨³-‰Ï3Ú[8ÇêÑiìi÷;Ÿ™GI5µ5ÞŒçnðn‘U¶§'í…ɶ ?J†¶íÉï²L8–Û^ø¶–¤-Y4œ”JË„iôtôž÷/Ýo×Kžüæ[MSq[ìsM/ROšÜÅÆÜóC*u +¯V+¢ÇöCU•VTêk*f1­âB„¡KY‘¤Ðy‘žeÁ§ÆË‹ÚÍÝë¿Þ\à¡Æž’–œ“ºVY+&aüììF].u¢ÅðÐO;Z'Ê[)LTÇ2C„ Ë#Rv«#Ú$PÄCF*ZwƒmhÚÙÊç F¦”å M$ô¯|£có±°WΑsXÕÑá¸Îónµ-É™Fg$™¼hÞH³NkÍDg·"ÌuÅRRŒ§£Q;ßÖ²Y½šùò8`ëJ=*m%kFîY-º¹³.È¡42E‹'Øk‹óGiòRö¡þìGþzÇÙŸû©Ç÷kùÇmvóß™1Ór8ÒìûÏ»¡©výÆu 1H€é%aå¦FY‘ÀlŒ½|Æ#ÊK´Óḋ°ø¥¹— Ó™&ψ’ÌÏ$­ä‘fyžDNÞýp…^“ðù=—ExüÈ*äVæ+F§6X:lYÐœ6¤0¾N56¼ˆò3NeÀeÀf,)úMDš»OW…8á ììšö‰öI¹Cîº_àŸóÞ÷‹ëýñ|/Wé²MÊuÒÿÿ˜7¼__è‹áz¿Húš†åºäètØ.Ó•-æØa¤òyÝqD”¤³È³3<¶˜üÊ8¨«»Ù{'ê+ 'elý¢Àò³aR1½±ÿ¤ÞŸW¤ü>Dï@¥Ñ^?1Ê͆=HÆöÇþ=>¯Iø|‡ R诘åfäc{cÿHŸW¤ü>CÐ)tWÌ­»¥w7P‘:§hÆ™U˜KM6–Ûï%Ù O +Ô{áèi;5,ÈúDFg³Àïø¹YI¤µ»/–²·¼a#wÛÔ®þzŒm¥ÑoÝÓ·<˜6½K7Ô•*qªl&³É&âqIJKKQ©GÓ=ƒi)ÓÁÆó~÷›}Æ.1©• ½ËRï4Àñ*$>ÃÞ—±0é‘âR£É?Òw÷̳?T›Ë>ŸÎÖü¢èGÞßܾf†äïN^ä¾÷ò& +‡‰c†ïG4C¹kÌ?–ÇVìWRGÓ4r:3üb×å Nu™1þOSærðù"¦â׉—|Ù¬;Q³j¬Ü̲F³½ò$ò$í-í&¥6³ãÈ–•g°ˆÌ[á·z2šÑëÖŠŒNàΞpz]Z™Åw=nâ¾°¦‹j÷)•zw9DI¤¯iÚOIïJs%Ž6—°ËbM#®7ra‰ZP²“ÔÖ§ûm9`·Zxg£;µªÏZïòò7¾Í¼h÷ýŸpP'·:=¤¼Ãížd¤Ÿ p’’y’’{RdddFCÏêÒt¤ã%f@¥UUJQwLäÑԧ»³ùÒ¤û$ßæœ{“Ç~ÏÞŠÌvýÌÍQª(€_w7ô6µ{]ßϸ1[¡ÊË·îF— Ä]Ÿy7ŠòXMÕÖñQr¯^µaT'8†Û\‡ÛÔµ%²É$gŸ™OR’´dÒØE©……Gy$ÙÇyXp§¨Jg´ŸÎ:p…^“9ú >Šî¬8SÔ%3ÚOç«ÒcÐiôWqý#s6¤­6-0”“%ï'°Èó#áé‡Ué3ï¡Sè¢tJIDE‘dD+É¥¸+{—¡ÕjŒÕ¥·=2¤rbtMI”“pÍÝD‚Ó™¯33-†{F‚Å4­{Y[‹¨¢Ÿ£&ïkÝß^³ä}’nPû®—ø'üÃ÷½âúÿDü_ ÕúCì“r‡Ýt¿Á?æ ï×ú"ø^¯Ò>ݶ{˜îú¤*5ÆÙsæ¹½GaœJqyäF¬‹€„ÈsŸ¤ÓNNé-|S÷á¦ì¬Ûö‰:ñÁ¬ÃúTŠÝÃA‡žÁ¡.>âä©)7HNd…¨ö™‘p´±Uª½¶ÛæÈ“S Fš¼’KÞBßd›”>ë¥þ ÿ0½âúÿD‡|/Wé²MÊuÒÿÿ˜7¼__è‹áz¿HþWpîNq&•É¤©&YT™æF]##,Œƒ{Åõþˆ¾«ô‹UD¹°ÿt§&5~ŽKn4Æ´8MêN‡…ÒƒÙ’TYplÚ*gN¦I»ÅëZ» XΘ´­%©ù=ñEÜá†Õ/îXôú|íéï.Õ+{Y™%Y Ô[r>1aFxšÊñ»^âZxzNÒ²~ó‡ý’nPû®—ø'üö÷‹ëýð½_¤>É7(}×Küþ`Þñ}¢/…êý!öI¹Gîº_à¨|Á½âúÿD_ ÕúE†åužEäß±X»Æõ¿o›äŒ·½:µy¦|Eo§U½´Ÿ‡ÈŸè4µè¯™^JäÜ ¿t¿Á?æ[Þ/¯ôHÂõ~û$Ü¡÷]/ðOùƒ{Åõþˆ¾«ô‡Ù&åºé‚ÌÞ/¯ôEð½_¤J˜7RÀzÈ^G®@r¶ˆ¯i6'}Ls4ï™Å‘žœòÚ{LTk¨þé}­šýĬ6ðåû¯g·W¼à[·<ÆÒì“{ÖÄ­Èüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒv +?‰üöU;#]âF‹ ÄE]n3.Ì_1g¬O¼C<õ–hëÉâ’ôj›ìU3½XômÂäW´Ï8Ýî[ꢄ ?•p;zY|ïP{BæPÅ/Ê›žÙ¸hðÝKRjù‘qfd”8ûJm&fDfDF{r,ÇîÍ=?ó5¤šÚšïDmRqšÖ¤ShÐíë ˜ƒ˜ÈÊDÔêKH$Œ‰Œ³<³?TÅ¥YÑ©'&çvÛÔ¾eMu©EE*vI-oäsì²+–L ‡ìª{jÕ™uBKSŠˆÂd%²4#|JL¹¤™žÎ1V3ÑQ»Ñ¯+_[|ݤœ%)AÉÊËJIÚ7·'¯m®Fx•¹WÏ:î‰["T‚oM:½NñÊœÖö’N–N¡M’²ÌòÏi™Žø|võewœ^Œ³÷3†'¿KNüË)-(åï<øe_8aW«RjÖ­©U™Òj'Q¢ÈÞ›ˆ³e K ˆãd²l;g#ØfyÖ*¬+EZR¼U­,ïy7­sçà~p”jP“¼ci»Þ9%h¥©ó;w³’b~êœ9‡‡S­”ʃ{œžIy*é,Òd„¨¥—Hq¡¹õ+f•–בÛº4èdÝÞÅŸàUj¯ŠMJmÃM2Æ”ë|K“=¶”Æ¡µåøÂÖ;ˆùä½Ëñ*%»Ñæ‹÷»}Ìû÷Š=kËZQ[´ªRfDnF}©I"éšLšWÞ,Ì~'¸’\Y'ÚšùŸ¸n층ØÓó±s°ã,ÌZaOÚÕÖf­›‘ÌÍ©M—ô¶W’ȽR#Oª)«a§CŒ­×ÍÞ^PÅB¿ß«Sî>Ô‹O°×ç Žsä¥íCýØý=cìÏýÔãûµü㶻yï̘é¹iv}çÝÐÔ»~ã:†˜¤ À^‡¶—hµýXÃãyIvš|7và„I:óîŸè±~{"¯Í zFçòQì0XîR]¤'@GÁά¯fiߟ@‰äåìËÈ‘‡ãÇÚ^gdæ'¡€Áº.Hu§]ª=¼Â§FzT‡õ-²ƒZ½sȶì)ÓuŠÖÝ—¼çR¢¦œž¤›gZy’®íÛ8¾”¥fRk2 ‰Jf›MdÌËfÜ’Ó{Oönñ¨zrPÜê>Êï—âyŒœ÷F·k÷%ø~ÚÎÄX=ƒ¶ÖÛ‘-»fYe¢%>úˆ·ùOe’žydY©Jü .dˆˆˆ‡œbqRÄËJ_‚[GÃa£‡ŽŒ‡d…V¬@ ÅrmJkã5–·ä:†ZN{ 5¬È‹ðˆÑ‹“²Ï°“)(«¼ZƒrÒ.˜Ü™FªE¨ÇÔiߢHmöõÓ-M©EŸ¨?S§(e$×jhü¤jgŸcOÈûc™Ð ›·w&Sñ¦ß—tP!!›¶–ÊBÛI$ê,4“5Gtˆ¹¥‘èJá#æ<©ìÐîNè¼<´eÅo¹íù™íÖÜ刎”W¬¼VÏ—qCüNÐ2l{¸°î­)EG¸V®CK¦yF©fD’?*O‘iQ~Ì}1»˜%Râ×}kð(7éÏ{z¥«·ñÕÜoXóóÐ +{»?*O²MþiÁw¹Êò<óÇ—´üÈôH#€õ¹s¢Å‰ì~mb¿t9)v}äì+ÓX7oô!¸»,„¶2“Ë/“5;§É?w™„£~b×oƒ;¿Ùvþ +ØÇnï>ÏÞÍ^ãñeí}Ȭ;¿:)—±{÷…¦ãr_YýÅfërŸU}å'¥8:^¹{àˇΟù+ÿÇ—þÖûÏEüßwÜu¢/œzçGè»[€z(¯Ø™½ûB‹vy/¬¾òçryOªþââîÜóK²Mï[û‘ùÞâït9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒvfäÁÈ×RMMu7ZSêJ i&E¤ˆ¸Lóâñn +Ö#N†“½É´ohJ3ÏI~æI:ðx¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ'·«Ý’›ðøÃ÷€å¿ád|w&þ¯Ä̹¾/˜W–>#鎧í£Å½/ö +ü>Ÿ,7¥þÁ_€ÀXoKý‚¿€°Þ—û~a½/ö +üÃz_ìø ÒeÃýB¿€±’»­÷_Í6}‘bNTxqÔ¦*56“’-‹e…–Ô¶“Ì”¢Ú£#"2O·s·5$§5Ÿ21Û§ºŽîÞ\ïöæ3@ó333ÌÌÌÌÏ„ÌøƘɷp>·P¶çF©Òf½ +deÙÆۈQt”GøK€ø ~'5gš?p¨é»§fÜqº6V8_ö¬*ë)nµH£×}ô%¹ˆqPÍ%9ó.s +Ö’,¶j,‹2,fê`–œœu9GݬÛîf9â§-qŒ®ößGäZÚþqÛ]¼÷æLVnG]Ÿywº—oÜgPÓ€² ÐöÒí¿«|o).ÓO†â.Â\‰'^}Óý/ÏdUù´HÜþJ=† ÊK´‚òHø9Ïõ•ìÍ;óè±<œ½™y0üxûKÌì<Äô0£(¥Ó&ÚÁjË1W¡UiiÎôã›êȽro#õ È_n%=:ÊüÉ¿»ï(·j¦…nv—ß÷;Ħ²£?"û»]I*C–Á™yD9©÷LºãJ Ö/T[þQU~¬;_ÜSþNÒ^´ûß÷#f(Ú”_v…UjN©û"©yP¡ÕfIªÒ)Œ©ãx“ÓÝI$Ò—žJ<#!w¹SQsõ”[…£'Ìî¾â—tà䣓’SNI_5g°¯8i|T0–þ¯×­=Ïw.V¥ÆŽí"-8’’¨0ò”rI½{ÚHÛ=;<ø…¥jjµ5ÕƒjwMËšÖ·yYJ£¥WN¦¢áf”^»Ý>ãIpªÿ—‰T2¬MµªvÛ¦û¬ò ]¤µ$‰¼²sJLËJ³Ù·ˆf±4e%,¯x滬®âã­%g©|É$E%c·JÑU‚˜írª““e³¯ “Ì’7ýîjRYq%J4úÄ=G/H ¯ÏŸ»#ËqñôzîÜÒºø¾ó³.rj¢MAd™,´òKÔq$¢÷ǘIh»lg¨FZJûO|~OÐ=ݟΕ'Ù&ÿ4à»Üž;ö~ôVcø«·îfjQDû¹¿¡µ«Úîþ}ÁŠÝV]¿r4¸^"ìûɼW’À:Ùbç?W—³Ϭz~‰eyyˆãËÚ~dz$ÀzܹÑbÄö@¿6±_º”»>òv•i¬·úÜ]–Â[ Éå—¿ÉšÓ䟻ÌÂQ¿1k·‰ÁÎßì»lc·wgïf¯qø²ö¾äVßË؈=ûÂÓq¹/¬þâ³u¹Oª¾ò“‹Òœ/\½ðeÃçOü•ÿÀãËÿ?ë}ç¢þo»î:ÑÎ=@ó£ô]­À=WìLÞý¡E»<—Ö_ys¹<§Õqqwny¥Ù&÷­Š}ÈüïqwºÞòL~+€ýcmvó—iûóár+Úg›î÷-õQBF„Οʸ½,¾w¨=¡ó(9WŒû_™ì´¸«±y˜r:€ÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzg(¹íŠ]çK—E­DL¸2Ò”¼Ê”¤’É*%–Ô(²RHÈÈÈÈÈG§QÓwŽMº”ÕEgšdX{›°ôøh{©PúÈ—éõ6øGäDô{?J_3ó•»={ÝJ‡ÖCÓêmðÈz =Ÿ¥/˜ånÃÏA÷R¡õôú›|#òƒOgéKæ9[°óÐG½Ô¨}d=>¦ßü‡ ÓÙúRùŽVì<ôïu*YO©·Â?!è4ö~”¾c•»={ÝJ‡ÖCÓêmðÈz =Ÿ¥/˜ånÃÏA÷R¡õôú›|#òƒOgéKæUÙ6…‘‚X_Z­R©/5T–¶©Ð*¤ó6Ÿ’fFᤙ¡µÎ.!m¹•g‰ª¢ÞK7”u/qUºt¡‡¤ÚNï%ëKŸÞ`f{OiñŸô3ÎOÃψ}pß °/Š$:-7*Õé®IM:7XCºK|=ðù” •žF¥ÁAˆ¯^•ÛtÒ»¶“k+åï48|=©+Tr²ºŠ‹ÎÙûŽ]Œ»ž° ­š¤ƒ½êŒ\éŠâáQ—\ŽIÈ÷´HL$:–ÈÏËfád\yˆ˜|v"´’QN7W’RJ×ÎÚV¾Dºø =(¶å%+;E¸·{;_FöÌÍ£&s\:¾êXasQ.ªKªn]*Kr¤òÖ„Ÿè«¦—©*.21½Z./SDŒ=gFJKZgiÇèv¾2Шu*•5º„),3>"^Ï™) ˆù“-ºU‘(SžM'f›OÜÏZ´kÅ6®šº÷”×0‚΢֠3­» +ˆJT +”Ò}[â‹~J¤ÈB‰?©È‹,Èöæ.ðx¹Ê.ñœóÖ›^ì“)±”c­8Ã-M'ïÍ£âàÆÚ5{ˆó1J×¼š63¤À§Äaõ™'c„¶$­y#„Ë,Œ~ñX©Æ7Pœ3^³m¯~0´£)gRÉú©$ü4fF…oAM§GLx±M²Ò3Ò„fc59¹»¼Û4QŠŠ²>˜ü£¯>éþ‹ç²*üÚ¤n%ÃŽå%ÚAy$|çúÊöfùôØžN^̼‰~<}¥ævHbzPßzÜ“]ÁzœˆÍšük¨Sæ»— 4K6T{}#?Sh¿Ü9¨Ö]i¯¿î(7nT_SOîûÊÏâQݱR‹úØZˆ¤©pªM'?,Ñ%L9—Z­õÄ-?(©?V\Ù¯¼«üª­(óäþClÊ9ºúê™L«aõ +¡zM²í:»Õ$Õ뼺—Ye'1ÈÒ­å.™¯šãÓê ½Ì¦¥¦ôT¥§½MéYöÙÛ¥QÇA]Æ2“R’Ö–‹k½ŸnùĬºì¸Öã¸ÔÕ9˜èˆH©À¸Yf¢g‹J”òLÍF¼³^eÍž}1ò+F¦ž÷ÎÝœŽwæò¯FTô7Îd®¦´²ëÚ}½Èfô³ê®Ô«ÜàÖªi©LïOT©Ìš7§ÖZS¨ó5'^\ÖœÇçté*rŽJ-Á9EjNïî™UÍI6ä£6£'­«'ïÍÚå­åÉÖSu…kÉc®¶é ßNER5"6G™8ã jdeħf^ õÎŽñB7æ‹oßvyvéK¯+s»/w«÷–hÐ +•Oƒ2ŒÃ,‘ô÷´ªa9i6ö³Óâ´R[ô‡äýqk®Ê¡ßš‡]§79†œ'PÛº²JÈŒµs&\Fcµ*Ò¤ïcœé©äÕÊIyRí{n·Q¦EÜïqÕ™Œæ„N€Mò+å¤SZ¦ òÛ–Ô–Ò1{J¤çÝX«ó=~E-W6·©;s­^g7‹Ì¿×REG*vÉE& +­H׫2k{’æÔåÍg— pŽšó¥kTR¿GñHjÞôÜmÒþ–ÚƒA§Û#RéqQb4´Ê3Ò‚35fgÂfbšsswy¶ZÆ**Èúãð~€:Ùbç?W—³Ϭz~‰eyyˆãËÚ~dz$ÀzܹÑbÄö@¿6±_º”»>òv•i¬·úÜ]–Â[ Éå—¿ÉšÓ䟻ÌÂQ¿1k·‰ÁÎßì»lc·wgïf¯qø²ö¾äVßË؈=ûÂÓq¹/¬þâ³u¹Oª¾ò“‹Òœ/\½ðeÃçOü•ÿÀãËÿ?ë}ç¢þo»î:ÑÎ=@ó£ô]­À=WìLÞý¡E»<—Ö_ys¹<§Õqqwny¥Ù&÷­Š}ÈüïqwºÞòL~+€ýcmvó—iûóár+Úg›î÷-õQBF„Οʸ½,¾w¨=¡ó(9WŒû_™ì´¸«±y˜r:€ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzdŽ!À2ßÅUT‚°¬òF|ŽuÃß2àÖQ^ÑŸÞÔ5“ܤ½Ÿ½OÊ.N>×ÜÌ/Ó~+€À‹G¹±J¥gQíóÃ{ ê?!ÆÓW"#¥ÔIÉN´ÚÒZ”[TGžÓ<óZÔéoŽNu/¤ÿ2öÏ›.ãyB¥Mî1Q…´Wç%|¹óYí L[²+ô{:âšÏ¶;Q›ˆéH©P§·2U=+I—$^¾cËjÈȲÌöf%Ы4·ÚšÖRVO=Z¹õëÓ’‹µ(?Uêwk-zùµ™jC^b¸ Úkrªž^áÁÈÏ|ñŽyðå½–_“!äû£ËOÚg­n#e_(w-R³Ê.[·“)ŠI\ÚÄÈÌ<Ê÷Åò„¼Ã¦hË%fFE™žÁ× 8Å;Ô”3Õß¿&ŽX¸JO*qžZäÒ~)Ÿíë®r°õ_-‹R10ùR—:+Ò£NÆÉ-GmZWÀ|ÖEÒ1S‹ŽU'-Y4Òñlç…„”³§ëÍ4ß‚-ø¦.@¯>éþ‹ç²*üÚ¤n%ÃŽå%ÚAy$|çúÊöfùôØžN^̼‰~<}¥ævHbzqkÞÐÛõ›n¨P걈ñ !Ôs/U9æ^©ëJ«¥%%­4ÎUi*±qzšhëclVnÅx¾j—j“E¸òØÏJ'ÓžãI™e“ä´êVEÆFCÓjB;£G/ÎYu3Ì©Î[[>gŸZ; aÖ"P1VO¹m©è™Oš‚R“æ¯Õ6âxPâb’{HýLŒy¥z¡'+4z]ñ¯(»¦rJ½ŸpDvR bºY8Ä–PóK"ÚZ²4Ÿß!Ê2qwY>£¬¢¤¬óDRÎç+ŽñHoè$ád¯ãžßXÑ™éÕzrûL‡èµèGì¢a‰ˆ µ3(e–’Hm¶ÐHB[’”‘qnNNï2db¢¬²)ÞìÔT쵤B%·nš«+j*ÍlÈÒrÜ"ò©o<ÑžZבdJ2¸ÜÍÏx©]ñV·÷û©XXYqž¥÷™âyàd¼PÄÞµFVå"Úw’”ó†gÉ5f¦“™ùcAžú¿T’G冫v±j=®Y}^‘•Ü\#­SMêŽ~þo™Ø,yÙ耛¸»yZtûÆ¿véºÕµ%¹NQã°Ú™†z{Ú â¬òËo–>¥ÃR›‚jŒe—óø™¼MhFm:Î.ú¶x6åû‚‡\~à*>2ÔqÛD]ñšB +fæF,5žù‘çÃåKƒŽ>¯MS׫ŸW[&`*FwѨç«_6¾¢Þ +ràëe‹œý^^ÌT>±éøn$}•äyæ#/iù‘èG ërçE‹ÙüÚÅ~èrRìûÉØV=¦°nßèCqvX ld7'–^ÿ&jwO’~ï3 FüÄ®Þ':w²íü±ŽÝÞ<}Ÿ½š½ÇâËÚû‘Xw~tS/b ÷ï MÆä¾³ûŠÍÖå>ªûÊN/Jpt½r÷À—?òWÿ/üÿ­÷ž‹ù¾ï¸ëD_8õÎÐv·ôQ_±3{ö…ìò_Y}åÎäòŸUýÅÅݹæ6—d›Þ¶)÷#ó½ÅÞès{Ê4e1ø®õŒµØSÎ]§ì\Ì `ñ¦\BnЮíëstéáÚZR•ì¯êóÛ3–Q¯ÀèW%RŸ.;Š¹S¤O¤G6"!Âm3›Þ–ëùMd‚<Ò»rØ\%­:ø¤¡5ÇJ-´îòwˬ•J­ +Óƒ”¤“²²Jí[>¬Ê E‘t†„Í3–X¶eGn5±IiN̪Êj+D’ÏNøy)gý% ÍJ>"#1ƵUJ.ORW;ФêÉEkm³m;v5¡D¤P¡çÈôØ‘á´gÂha´¶Fyq™gê!©7RNO·Þzý8*qQ\É.â¢n˜‡dH¸)ª¹©÷Ô‰%‰µZé©Bo}^Çy Dó<øy­9qd.0j/EÓYþ~üyŠ|v†’ÒU_™¥moaÇ÷>A°#Þ1—oSq ‰Ü'Jî4Õ +Ÿ£Ij%rZ½yy\öçÀ:c]MYÓµ×Fþ<§§êª—³ã)[Ä¿c>h¯>éþ‹ç²*üÚ¤n%ÃŽå%Ú@ùñpñôöžA?­*$’ô«AžD­'¤Ï¤GÀ‘°sŸë+ÙšwçÐ#by9{2ò$aøñö—™Ù y‰è`T]Õ»“¨»¤©-:‡QN¸à!E iÍ*I™žðùÕ4g´Œ¹¤ê.%\nvèËöÅë_zë)÷Gs£‹[$µ?¸Å=ÉŒ[‡®—£)§©Ku¢Åƒ~—QBvjI‘è^ΠÒâx Ë€n% +;¥ëëYI~ÝÆ3­¹²¶®§šfˆáÿŠŸjTe«ÎÖL‘§'§š&GRºd•©·GÒ挺f3•¿'¦¸’O·'÷š:?”0—5Ùšñ·ÞK’¼RŒŽÑ¸ÜÚ«êË=íºc„¿[ôE!?ËKp«>eÞM{»Gkî*v,ø©u*”g¡aí´TÕ,”ŸjŠKΠ¸”Ütf‚V\kRËúI‹Œ7äúNõú–^%>'ò…¼©«u¼ßwðålÁMËØ“ºÎ¾«–¿&c©n““«ÕRœYíLT¯-ðø“‘HûÚN˺ð1Ñ®µE}ÿµÊÜ.çÔÇKJW³×'÷0Û èKnÓ­{jbSà£J·{VãŠáRÖ{T£á>‘yåzò¯');¶z +¡ä‘ÎǸUKÝœ`Uv¦t–é›ár2ª|™É¦%æÛÙiÕž|Y zNŽŠÒß/ÏkX¨ª«i=îÜ×½üw„ _Èr§öjÅ°ÚL™ä_±îHÔgÍkß·þ. 9z¢>'{ËCO¯JÞ$a•Lôô9­£“€€O:Ùbç?W—³Ϭz~‰eyyˆãËÚ~dz$ÀzܹÑbÄö@¿6±_º”»>òv•i¬·úÜ]–Â[ Éå—¿ÉšÓ䟻ÌÂQ¿1k·‰ÁÎßì»lc·wgïf¯qø²ö¾äVßË؈=ûÂÓq¹/¬þâ³u¹Oª¾ò“‹Òœ/\½ðeÃçOü•ÿÀãËÿ?ë}ç¢þo»î:ÑÎ=@ó£ô]­À=WìLÞý¡E»<—Ö_ys¹<§Õqqwny¥Ù&÷­Š}ÈüïqwºÞòL~+€ýcmvó—iûó£Q¿l*z¥Ðå-r*øè5;Ou\ÒÜmµL(óQ‘mló,´de¼Ü­ÖU§QÙ¬“|ÿ™‚ÝmÉpn¥5“Ö¶~]†\‘ð a’?@½K¥Ì­ÌO§Dv\¹+KlGaµ8ë«QäIJRFff?2’Š»É#õ9»,Û7Ãpæã…ळ+½¤*èšÉ¡ˆÄd´Ó#¸\ÒuÃye±f[\Áæ£?=ÝmÔô‡¡*çÚþG¡îNæz2ÓŸól_3F†lÒ•W®j¥³˜8ÙC±¸„¥AªB…!×Õ¾(·äªKí¨“—3‘–i=¹‹l5$ïNSÏZm{²L¨ÆTqjÕ# µ5ïÍ£ã`ÍÙW«ÜÌF™–ýâÑ°úŽ“N™ 2Idá.<‡’8L´ä|c÷Š¦£©J¯Y¹5â‘øÂT”¥gV3×’QOÁ²áŠbè:óîŸè±~{"¯Í zFçòQì0XîR]§ÔÂ,M‰`Ú×SPjlÒn&3ïÓ[š™ÑYJ‰p58•“:Ôd£Q–J-†eüâ¨o²Ö”U®Ö}vÌû…«½©g£&•¯ª÷^ü³9üŒy‹wPodVª¡R„¨4KAˆY5!HAµ)·ÒÚw¤²²5)Fz”g–Yd"<ƒŽÜ´“uæOW]ÖV%G§}+(èÙA-m­}Yçr¾`ç?¶O³4ïÏ Yâ¹9{2ò+°ÜxûKÌì<Äô09tZKÞžõ*à¤Å©Âx²[ÙCÍŸ«’Èò>‘–Ò鎔êÊ›¼[OjÈçRœj+I&ºó)Eßân`åÍ!Ù0¢ThŠs#ÞéóOyIÿInB"ÏÔ<½AyKw+C'gÚ¾V(êîêºì;‘ìo¿wS×E}Ôg±ìDìõL£{Ù /ò†§F>?22üž§¶^"ÃÃ;†ï7.=°UIm­."EYÓ˜hRx -¨‰¢Û·Êg˜®¯ºÕ«e¥e²9~% É£K=öçøå¦ÂÛhJ‚$¥)""IÂ""à"åºV<€}>Í\nØ£Õ«6§[§Ä“-hFZ––S†”ç³3$äYŽ”á¦ÒÚÒï9Ôž‚obo¸ÌrñV¬³"?°ŠÎßâ±¼1¨þ-Ùô£âeßå :/½ÞìÝg¹öõ«Ï®VpNtÙó\ß$H\ý +qZI9šPù$¶p²§¹ØŠiF5Kšß[Stpõ”©¶ß=þG0Ã=ݸ1„kžå§„Õ*J§E Ù˜Û»é5«F{ëªË-GÁÓq‘Z½´æµeo$v¡ºôh_B _]ŸÌ»›œwiÛû¤. +…½I·§Ó‡ ST쥲¤))u i"mFyæ²>–ÁEŽÜ©a"¤ÚwvÊý¿q{ÝXâäâ“VWÎÝ_2è +Bì­–.sõy{1QüúǧḑöW‘瘎<½§æs|/¾,+rƒ]bê±aÖêm›NÓyéM›Æµ¥.²ê™^”¥ÍhV’ÛšO<Ë.šU&Ó„œUí%eªÏ<ùïduÃÔ„ÓŠy]k×u–\Ö»<V'Ù•ÚTØÌ(¦Q徂KSبKuÆQ¤¡ÃÒg‘e·¦ÃÎ-7Q´ž«,ÏÔëÂI¥²×w‘ìn\è±b{ _›Xùº”»>óæ•i¬·úÜ]–Â[ Éå—¿ÉšÓ䟻̆ÔHRh%’TFiVzU‘ç‘å‘ä|·€oÌAk+µ…1X£7érÞrK¨“g²–fêQ8Ûy©Z‘‘’³>³<…LpÕ[w¨Ò¾YEåbÑâ)¤½DݳÎK;EýsÑ®©ÌJ¢Z‘mÆd›\X²}/Q«|5µ!f’p—ÌHˆŒ²<¸EuZ5%?Vn1kbv.r}*°Œ}h§$òÍæ³ò8mûÚ×U=¨”L9§Û²ò\T¸³d¾µ ‰Dmš^=9™ŸÂ)PœÜÜ•µ4—‘ù«Z2VPIåšlŸ·ôQ_±3{ö…~ìò_Y}äÍÉå>«û‹»ö¢E´Ý}Ô4Ù975­D”—0ß™¨Üu}/wÞ]n‹²Mõ™¦þ$Zñ”i]r6eû‹ð¤Œ†¡Q“æ3¯ùÈö¡_ýU[ÜZÌg| ß &~±+,ÁÒ’ÖÔq–I£v0«œ»Ooôó{‰ãËÚ~fʇv/#ŸˆÇ`£øŸÏeS²5Þ$h°ÜDUÖã2ìÅózÄûÄ3ÏYfŽ¼Þ)^Mrõpx×KÏ.–•æ=pyí?3Î7{–ú«ÈætüÜÝqµìj÷«V¥<„™B*Í2,Öeµ j¡’5gÀD³3â%ŒÄÁ½(¤—>Œ¤¿E¿#´0xy$Ô›m,¯çõ’ó+Fé (¤á\š½"¿… Z3W¿FÜÚ´NËÖ_;ÔЇù”2«Æ}¯ÌôÚ\UؼŽL9@ÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzdŽ!À›cáL+ÅçäT\¥¹Dª=š•2’¤±­fyêq“JšYŸé%ì…ÖuêÐÊúKcÏÇYK‰ÜŠUóµžÕ—†¢™W4£J}AžÄãªbxÏ-‹$h°Øxn*Ïk͓ȯ'€QÇŠÑS­Ar‡ƒvíèÂbW:±2+²½ñG¼¡/°áš2ÉY‘‘fg°[`ç§z’†z¢›]¹4Tã!)<©Æyk“]ÙŸíûºs°õc-‹J)0ù*©KéHQ¤´¶Hf:¥|Íe銜r©9;¬šix³ñ…„£,éÆ:óM_À¸â”¹ äÅMÂ31î¸.t^ DMRIÈ& +œ6ÈÒ”éÕ¾–|"l>ì*0Qѽ•¯ÀÏ×ܧVNZV»ÙøœímÏêíŸs•ôÂG®é~}/Ä}­¹ý]³îr¾˜8utKð ú^‰Él¿îm§pPëj½Z|©³cK6Š’n.ôêß,òË<‡*»´ªEÇGZk^ßqÒžä¸I=-M=_‰¦ƒ,hÀ?Åžqï/ajŸpHÃqãíGÍñ—‡âHS¸JfÝÔ wƒRÓKO›M›œÊ“–­ôòáé‰Ý…Z:6ºµïøèn[¥%-+ÙìüKsŽ¸^æ1Ùµ+Uª‚`*Z㨤)£t“½:—<©)9ç§.MƒÄz<Ôí{_-\Ö-qT7ø8Þ×·™A¾ÖÜþ®Ù÷9_L4<:º?¥ø| ú^ˆû[sú»gÜå}0pêèþ—à8ô¼?ö¶çõvϹÊú`áÕÑý/Àp3éx~%ÅÜÑ€On¤ViVSS:„ÄÊ%¥ƒgAIoNFµçåsÏ1KÆúSNÖ²¶»ó–Ø,'£&¯{»ê·1n…Üw+.ϲVn†éÉä6"ï +†omÏV¢q<:¸2âð[¨°ÐÑѾmë·ÜFÅîw¤KJöÊÚ®A¿knWlûœ¯¦øutKð!p3éx~#ímÏêíŸs•ôÁë£ú_€àgÒðüGÚÛŸÕÛ>ç+郇WGô¿ÀÏ¥áøš}ãIøÑã^û·‘9|Ë{Ñ«,þþYŒ®–w빤ÑÊÝV3¼M¹åýÙ÷9_L5\:º?¥ø¾}/Äýû[sú»gÜå}0pêèþ—à8ô¼?ö¶çõvϹÊú`áÕÑý/Àp3éx~%¼êÐ÷\qƹ®§éïGä>ESLSÓ#B’ô…ŠÔ®g4´Y–Õ',ì)EîœsN1ºw¾nÜË/²½E¹²ÉéI¦­l•ýþÄŒX»±v¤ª­Ý^“S5iuy2É(óÒËIÉ §ÔI«˜ÐÐÃB‚´FgŠž!Þm²;ÈI"Œˆø€—w_bÈŽÍ>¦ºDå"sŠqƒG2£ÍL«¤hæzi28Í̧‰Ö¬úK_â[à÷R¦äî¶=_Ø7ñÖÙÝmµq[™i2jd7LŠD7òÌÛp‹ð¥Ę¶—bð’ÂËF^çÌÑèØL\qQÒ½s¦Lâ4áµ,>·ªò›2˜Û¯¸dkY©dfdDEÀ¢.!"5ådò9ºiçc˜%$‚$‘dDY¬B9ÐëÁâ’'æ‹4•.–f]2$¯2‘¸/÷í?3Í÷{–ú«È¸½Ã]Ÿ.ÚÁo°Øó#´ã5qÐ)d2¢æ\#–ÉÈ"W +4™–Ò=¢š´“R©¥g«FrKì»ô&´=¥ëiB-õúÊåÝtÔ¦*´DÏ¢\P$-—'ë—uÖe4jJR¨³›d”™,’|9fE–ÛÝ̳½œ^¬£»oàRî¢kFêYß9MM{­‘ØæËçzƒÚÿ2çxϵùžKŠ»‘ɇ#¨ÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzdŽ!À)NéHÖ#×9WM6÷“+ˆ›U²UcŠMo«Øç -(ß3χšÓ—Bïç¢ô\¿çèßWÒ)qºKIM»~n•¹ö"áÛW„e[”»þ<þG“¥w VJŸ£O4JäÕ©­f^W2Ï>×êhzή¸ºðÌçƒÞôýURùñ´­â_AŸ/€#üYçòö©ðWŒ7>Ô|ÑÄ—³/&u$G•O¬CØg騋„È€ùc—ʲjpí¸[‡Æé²Þ„ΙM*FüÊu+S­ñ)ËFDGÄc†ü´´3½¯©Ú׶³¾òô4ù´­­^ö¾­e¶ÜŠp°š÷­Õ'ÂzR$R(`ÒJ%ì¯3ÖdYs"§uðÏ“µ¥|ûw¸••)¶ú/ÍËË«nõ?Püf|!‘à‰m^&Ó„Æ9umÞ§êŒÏ„-«Äp‚ØÇ.­»ÔýCñ™ðƒ‚%µxŽ[åÕ·zŸ¨~3>pD¶¯ cº¶ïSõÆg–Õâ8Alc—VÝê~¡øÌøAÁÚ¼G-ŒrêÛ½OÔ?Ÿ8"[Wˆá±Ž][w©ú‡ã3áKjñ ¶1Ë«nõ?Püf| à‰m^#„Æ9umÞ§êŒÏ„-«Äp‚ØÇ.­»ÔýCñ™ðƒ‚%µxŽ[åÕ·zŸ¨~3>pD¶¯ cº¶ïSõÆg–Õâ8Alc—VÝê~¡øÌøAÁÚ¼G-ŒrêÛ½OÔ?Ÿ8"[Wˆá±Ž][w©ú‡ã3áKjñ ¶1Ë«nõ?Püf| à‰m^#„Æ9umÞ§êŒÏ„-«Äp‚ØÇ.­»ÔýCñ™ðƒ‚%µxŽ[åÕ·zŸ¨~3>pD¶¯ cº¶ïSõÆg–Õâ8Alc—VÝê~¡øÌøAÁÚ¼G-ŒrêÛ½OÔ?Ÿ8"[Wˆá±Ž][w©ú‡ã3áKjñ ¶3„â.ïj-­nUª¨91 -7Õ5½òJËKZòQž’Q‘«-¹ŽôwS’M«_=zˆØÔT ä“½²í0¹\ŸsTgUê²—*t眑%÷5¸ë†jR×>.-…°z  ’Y$¬5©7Q¶ólùG°~ÏÁmáîDŸ24i^IÖDûm¸Hvãm.'ZIZTïb‹<Œ¸ŒTKt”[Z²†^eÄ77I'§M]'œÕüµuî¾m;F©{¹]·çQéñ×%n¨8öø„p“G¼’T}"Õ´qŽìBSP´“m,ÕµûÎÒÜy¨¹§’nêWÕî)q Ò„³“±Òfâ*«¿¨©3Ün]‚Ú—"¸¢"s/Ù2£%¤ør%'F*÷K±4ÚçY®ßĶÜÌcÃTO™äûÏÍ­.¥+B‰IQ‘–Ò2=¤d<¬õCûw÷'Ô—TjI¥:IvævžÔܤäå'dï %{+{õ•Û£x(ÇEF9µiiÝ»'Ÿ¹’,¾w¨=¡ó(mWŒû_™é4¸«±y˜r:€ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzdŽ!À*f>]U:n0±Æ‡b!q g§‡_=ñE¿¥R^B‰;4äE–d{sø:jQw§)ç­9.mY"ŸQÆJÕ# µ4Ÿ¿6‹‚—…V³t1^è~óhØ}GH§Sà1!fI,œ%Ç}kÉ&Yd|c¦*’Œn©J¯Y¹5âÆ«”¬êÆy?U(§àËš) °ÿyǼ½…ª|Á# ǵ4GÄñ%ìËÉHÓž‚ˇNÏÀ=€ñîsO­ûRá¦ÛÖ³ø=…–ÛL“J†ìê¤ö"Ôª +©)9ËjCr¤ ØÞÜÍ)JQ–’#ÔyìËÖ©9*Óœ-/U&â´l¬î–}yšš4š§Jãë6”š•ÝÕ›É{ˆSt½²Í*Û¶ª%©Cµo‰3¥¢U6„ãd‡)‰m&Óò#²ë­²æû©)ÉDjNfdY X—›P”§ r¾R¾¤ÚWËY SNqŒ'¥’•ãlÛI»g«o¸‰0ÏÙݦ¯Î Xâø¾ò.æqŸgÞ‹p*MºRÛ¥Ò£‘ž‡d­J.ž„lÏð‰øE›ì)÷Mú©u•HZÓðÀ{gßû›,JD±¨µ(䶅?VŸl•fB^4£a2—¼·’³ÈɳÙøO-Z–"¤ÚÑ»²SÐÊüí+øšÊ0ôâ­}++·,íÌ›·c=Ý`_´ùÓ&âýé]«6ÂŽ*•%á)Òò¨Ð…¥ #¦iFÁ' J¥&­N _6¤Û·vg]ZuS¼æݲVÊýŠV]Å%2~,³#/P;Znu¯H¹°¾À©Ë=OÈ¢ÓÔ០¨™JLÏ×Ë1ä˜ØhU’\Ò~g®`g§J-óÅy0„N»ž)>^M³àñ¦™Ÿâ¬zFár+Úg›îï-îDÑmáo’•6VÄl4¶ž®»KŠ¤<õæõ¡* f†‘ ¢wOè(Iê"Ni-F’«WT%%NrKIÝ*jqRnï7nru +.´c¾F-è«^¦„šJË%~n|Š—ºzIÚ´µ©” jyNБG¨V¤Èu*ùN5(ÝY¬ˆ”Y'FDZvæv›Ÿi9IÉÊy)iGE¤¯em™•{£x¨Å$£›V–•ÞIç~¤¹ŽÉ6_;ÔЇù”5«Æ}¯Ìôš\UؼŽL9@ÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzdŽ!ÀðÌ’Ffyq˜‚OÅ;.–µ72î¤GZO#Kµ(ÈQªJpŒHXyËTeÜþDwˆ„uÊ?i|Ï¥F¾­»‰Âj“pÓ§8{If²òŒ½fÖf?£(kMv¦Ô+Fzš}3•G`*¾:[÷%Z³Ú6[w›)ˆI\Ų́̾Ê÷Åò‚z;¦hË%fFE™žÁm„œbêJêŠmväÑS‹„¤ò§å®M}éŸí»¦™s0ý[-kN10ùR“2+²£IdÙ%¨Í«JøÍd?xª‘q²©9f²iÛųñ…§%+ºpŽ¼âÕü.¦.@ðÈÔFÖóÐY©kQ%)"ã3=„CêW>7cHÅË"÷·¯:+kÏ-*ªE#ÏÖ7…†›üÙ}—ò#¼M5ùÑûKærJ5ÕE¸ÉGI¬CžI,Ï‘e4þEÓ=íJ¥MÃZkµ4u…HÏSO±¦}ñÌèþ,óy{ Tø+‚Fj>h‰âKÙ—“:™™5™péÙø°?Ïï4ö—¹R‘\®Óêp#SÚ¶åÙL¼…"áj¸”“ZJ],äfJ"l¸ö ­]ДÖzJ«Ñõõ4—Uµ\ÕQÀF¦öòÑtÖ—¬—­iuß]¿k”—ð6ð¨‘*3ÐÜÇM”*5V囄“QêLgœQEÂdEŘ¼¡Œ…ghß%|âÖ^ôŠ‡Jîw<Ò[Wz/öCÆZ¡Ò»Ï4–ÕÞ†‹ýñ–£èt®çsÁ %µw¡¢ÿd‡Jîw<Ò[Wz/öCÆZ¡Ò»Ï4–ÕÞ†‹ýñ–£èt®çsÁ %µw¡¢ÿd‡Jîw<Ò[Wz/öCÆZ¡Ò»Ï4–ÕÞ†‹ýñ–£èt®çsÁ %µw¡¢ÿd‡Jîw<Ò[Wz/öCÆZ¡Ò»Ï4–ÕÞ†‹ýñ–£èt®çsÁ %µw¡¢ÿd‡Jîw<Ò[Wz/öCÆZ¡Ò»Ï4–ÕÞ†‹ýñ–£èt®çsÁ %µw¡¢ÿdE^Th0Û7$Ju¶BK3SŽ¨‚"陙̥¢®ùÔ#¤Ò\çm|5´‘aÚvÕ¸Œ²¥S¡Ã3.S-% +2õÌŒÇW©¾ÍËkoÄö÷¨(ìIw"¶â=~©ç©2ÅJKM¥Æ‰(CëJK4'€ˆò!q‡¦œÒî"U“R.c52Ñ™çšï +X£¯ŠNYãLâþõ4ÎõcÑ· ‘^Ó<ãwyor85#u5: ªmË3 )SoJlF#E¸2R TfJ;¹ *ÞVëm’K=„fYä;ÔÜç%(©µ ·xÙ>6»=j÷8RÝ%()J YÝ®.«¥“µ—qßXšýçDµ(¥F§B·Ù”&>£T™RÜ'dÉtÔ~]Ås)É)"È„úXuNR•ÛÒ²ìQY/ \S©ŽM¾vß?rKÜv¦²ùÞ ö„?Ì y=^3í~g¬Râ®ÅäraÈêÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzdŽ!À +º›wE½€Î?oP˜n¹s’K\rs(°ME™•§i«zO5— ¤²ÏA¹û‘,W­,£âû>eèn´p¾ªÎ^ ·ädÌ‹Ç·_Ô êµaf•ÆƒœJ\bVÝ.M ¤²ËkŠ5LÌk•*—[Î_{î2®#ò»êY/—y,ÛÞ%þ*ÕÐnT§Ðéj=¤‡¤»!gë›-)?ˇ=ߥJOÜ—›&Óܯ[KÞþäÏ…sxœ8ÍgåÒ§Õ·‚Ö•Sg›/™§o2—ÒÑçÒÉYŽ”÷rLÕö¬¼.r©¸•¡š³ì;w]ãNæêªh—æÍÈž£Üw~J ÿZyÂßQǤóR?¤˜é[shâÖ”l¯ùÑ·Ý‘ÎŽéÖÁ½]ÛšWûó_¶FÛn~Ý%hª¡o¾lMŒI)ÔÉE&*•Æd^]³?*ây“õ2,63<#´µs5©›œ:µxëZ×:,®,JKº]‹Û†šw<åù\‚[Ú­‚©œRk}^Ç9 Dó<øy­9qd/0z/EÓµÿ?FúºÊ6•¼Kô3æ€ü3È–›§|QŠ}‰*e³†Í1V©°jjMUÞn u–d¤²”™oëIðž{ÙÎonZ¼â:«J¦K™sþfS»j“ѧ›ÛÍøþÚÌî¥ÚXÿºòJ§ŽõÈË3ý3)þD¥£#àF£m™ð!&~ Ñʦ–IìYËïfr4ñ÷|ÚëÉxÙwM'ĵÄéÑ÷ÙµªOõ•;!ãõM±¤A—å%©Iû—ÌŸ Àªõ´½ïäG÷.àÜrÂíò«I§îFæ‰úó䜋-þ„éúÉ#1&žìP­“v¿Ie÷¢-MǯG5º/?¹œ£¼P J é£^è~á§ÇY3"<ô›UHÚv%Õ‘)J/ؼGŸ¤ðŽX­Æ§]iCÕ{Vq·Q× »5(;O5±ë^ÿ™¸xS‹VÆ4P#\v¥E2á»Ì­'̼ååšy³Ú…—Höddf“#<&# ,<´d¬ü ÞDt¢î‰$F$€Gø³Î=åì-Sà® n<}¨ù¢>'‰/f^LêFG“e·.g‡¥°{ãÜæ¨a¾¿>Ù£×.< ·àÓ]‹hšãÕº…Jq) 2u0iέDn5Íoi,ø‹!”ÄâÔfã’½ÞIA%Õy%«Þk0¸W*jN +Ö^³smõÚ-¿@»ª)V}& !›WjözS%Iv¯R*#sòlóm¦$8餳æÈzÈ‹#鉛Ÿ)ÊOJ¤e—4ÚÍguoÙ‘7J0ŒV9G>3RKSÊÎýºù‰‡Ä³è•rû磈¿”<šö¾æwüžå²üѼ™ è#  jÄ­×8]„uùÍÑ^r%M†™yÆQKÄHy:zšiIÚ^®ÁgCsj׎”U×j^l¬¯ºT¨KFNϱ¿$p?¶ýT½îTï 8¿Gô£ó#pÕ—èËä>ØõR÷¹S¾€8¿Gô£ó5C¥ú2ù¶ýT½îTï ¯Ñý(üÇ Pé~Œ¾E˜ÃŒF b½ÍlÌ9tÙfé2ñ´¶FÒ͵s.%*,”“-¤*ëЕ hË&‹Zã^:QÍ?wQönË¢›dѪuúÃÛÄ +lweIt¥ši&¥+JÔypÅ:n£QZÛ²?u**qrz’»*ix ˜dFWSÙ÷«ôß«ôJ?2Ÿ†¨t¿F_#÷íàU/{•;è«ôJ?1ÃT:_£/û`xÕKÞåNúàjýÒÌpÕ—èËär{+v–â v™mÐî'_¨Ô]Þc4ª|¶‰kÒjËS%%°„Ç*»•V”\¤²Zó_3µ-Õ¥VJ1y½Y?‘j²%±_q_u`V5ï­.ÙÊSm¢‡ódÖ¤³eµmI–Yæ,pÛŸS´ ®¯migïev#t)áݦìí}Mù"0û`xÕKÞåNú+«ôJ?2' Pé~Œ¾CíàU/{•;è«ôJ?1ÃT:_£/û`xÕKÞåNúàjýÒÌpÕ—èËäXœ,Å‹cè§pÚSÎm<Ÿv6ú¦\d÷Ö´ëN—R•lÔ[rÈVâ0ÒÃËFjÎ×ÖŸ‘g‡ÄG´¢î¯±¯2HÈF$Œ€ € € €ã·i÷e*£EªÇLˆUîÆÒ‹bÚu&…à=‡Ä{GîœÝ6¤²iÝŠU‹ÔÕ™Ö+t¦çzæç[ªE"sn=J’µ¹I¨é=cç™%G–DóddN'§Í2¢1êx tqqºÖµ­äyfè`e…•ž§©õÜYg°S$–Â’î\j¿œ~tQúÓgÇœ-õů. j5eëff>¥cã“gˆÏ!ôøjç‰á¹Vmr­ îxjf›ÍtFN“—#irV“/2onƒýRù¢Ø¹ÛݽG[ãu-¦Ãq79·¾ËRâõ½½Ÿy·£ +nŠ?‰üöU;#]âF‹ ÄE]n3.Ì_1g¬O¼C<õ–hëËâ’x×0Œò#¥RË3à,Ò½£Ñ÷ :+Úgœn÷-õQÜ–1’¨NÒèŸd°'¨‘¥o8U((øjg3m]4¸” ÐÝ +rº“ÑkZ—ªüuûˆÜê‰'¤³­îËSíféJÔË’çyôÛp¤ÌxÖ­þ¥-G¾)”¸{rÛ›«Ï2Ì’\ÑæZÝÓ݃ŽŒxÍe±-¿#%¹›œñ’ÒŸ<úÞÏ™Ø"Öµ(öM2-ƒMb*I ÇŽÙ6ÚH‹.á3ã3ÌÌö™™;©QÔw“»|ìôJtÕ5h«%ÌŽB9Ƭ´1êŠí覥ŒUȳ["L¸ŽÚs,Ëo +O4«€ÈÄÜ.2xi^/µs2+ J´—cçG_+–ƒ|î ÅFŽ<“)”õñ$¤1êt÷‘’“Æ•‘V¦…–ÃÌ’cÑ)Î¥K·ZçLó¹Â{›W.mO™£±fâe+m*%ÝF^qªL%ÃlÏ52és.²¯éM¬'ëgÀcÍñ4 ¸=iþÌôŒ5u^ +k~È…ñæãªÑëP´[µD%*J 9¾­ñE¿%R^mDšr"2Ìhƒ‚”]éÊyëM¯vIq•ZµHÃ-M'ïÍ£ã`½ÑXªÜìG›´Å£aó:M>Ÿ‡ÖdE“„¶ZòG –Yý⩨Ç*R†kÖnMx£ñ…©)K:±žZ’Š~ ¸â”º2ÓÅÝ5*ç3†öÔ³b¥W¿U$4¬œfiKIQi[ùg°É²þ—™j÷ª½òZ“Éuí÷MÜǺK{Ž¶³ìÙïòí =É¡âXØ…~Ä7hêQ*˜²É34FûåÂlæFHGê̵3‘*Ãu÷UÒ{Ý=|ïgWi_¹”ª­ò¦®e·¯³Ï°Ûèp£Ó˜j,Va†’Hm¦HB[ )JHˆˆ¸ˆˆa[o6n’¶HöGÃèU]ÒÛ“íMÑ4§ŽDvé÷ -Ÿ ÕÚA‰Q2Ûùy«F{ 3O +L†Ûº2Â=±çËc*qû ZÙ.góÚŒHÁ|Q»7ât¨U†e†$¦~™šŽG±æËa’“ß_ê’yyUÜâ°ðÝ +W[/×ûdÌ6=Ï«g¶Ò]_¶£²*©¹ +F É~,¶[}‡Ry¥m:’Z^¡‘‘2”\]ž´zld¤®µ3èÉú?Åžqï/ajŸpHÃqãíGÍñ- + ËÖS®råv®Ñ ÐiɶÜBI ÏõEÅ°wÂá¥IÞN¿6/^Ûœ1x¸Ö–•ï|礵>k"Ùx–}®_`\øTqSùCɯkîe—ä÷(ý—æåÐ@ÄýÒÄGºò̈ÿx”nþ7[ÈGÚ—™ÅròöW’8”þÄ¿ ‡Á¥?±/À@éNôï2^Q|Eû|føŸ]í^ËQø[£+»\¼½ÞHµÜ^B?[Í’Öê>„8“ì Kó +÷?•‡´¼É›¡ÈÏØ—‘¶¢Sã%™/çœ~"þ‘¹©­ö³3GŠ»‘÷´§ö%ø~ÃJb_€€Gˆ‹0ƒ""ýë¿À_ÓuŽXžF~ÏÞr+OÚ~Fî>6¦?îÏ"í¾§}ù,11ŠjmÀk}A-$î|ÓÆœøJ3-©Q f?væÛ„›Wçü †q#¥?[žÜ߉ªÌ0ÜVÛe–ÒÛm¥(B’JR”–D’"ØDE°ˆ¸M»š´¬yGÃéIq:;ªºªjKK27ÚH3/(ž‘ úˆ¬ª½f]8¾b×XŸx†}–HëËâ’5Ì5eã]/2é–•ìûãÑ÷‘^Ó<ãw¹oª¼‰yªÎ(Úq)Q-Û†ÄÂ(%½Lj‚º‹-Î{|I) ¨¾âÔ´™¥ÃNÃÚ’â‡(Óœžšf®®“q[R³H™Ô„V‹…$ÒyÉ)<²né¿ÛQS·QRæB™B—S³èt™µ¤Hr¯mKßé5²5¤·æ•) ¸…j' 9fjÌÒ[žç5šŒ¤Ò·«5iGßΟ1[ºIää£w^'îÔšçò;'Y|ïP{BæP<Ö¯ö¿3ÒiqWbò90äuÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzdŽ!À:æø¡—´«Óª´Äº§¡±™¾$¸¤Îd]58æF|dD\CÒw’§E>“mù}ÇšîÝWR³]/ ýæìà^ÂÂ{ +×µá5¡0a2O꜒âwÇÖ¯UN)GêEÄ08ºî½IIó¿c„ ¨B1\ËÇŸÄ–DBY‰u,WtA¼îêÞèZ•¿xÄŸYñ¦ƒV÷„AyÄEŽ¨ûÙ’ÉâAfz‹=Yžgž{HÐt”))ÅÆRjí¹fóê1ó¨ªÊnu%IE+ÚËSë4 7`áµùM´`ɽi¿dµhÐzjQ/Ç›F¶RZr#ß È‹<½QM‹Üº”å-½ågôUÝû‹\&éBpŽ›JME5ŸÙlçe´…Ùœ>)–ŹðÑ‹­-å:Û˜Ò’áfqf-,:ƒ<³ËQ¶¢Û°ÈúcK¸5Ü*hóIx¬ÌÖïPS§¥Ïàòù‡‰U|È›F½mÝ5µO“¡'ú‚–•6é¨ji'ë™ôÄ¿Ê6”gµ4ýßÑ?'k^2†Ë>ü¾ââc­æ©Ö`¹DÁëvóe1I+›W™‡™^ø£ÞP—˜pÍd¬Èȳ3Ø)p“ŒbïRPÏTS~üš.±p”žTã<µÉ¯½­û²s2õ_í‹N)0ùR—:+ÒP£NÆÉ GmZWÀ|ÖÏT~ñS‹ŽU%'u“M/~0°’–tãy¦¯à‹ƒÀ)‹“¬5Ø©[¥1êdu»£ìŠã(HQ™™5  õy–Q˜õ*vÁпF÷Úþg–Ô¾2½ºR·ºöò;3Ñé1(!S 0–"Ãe¨ì4‚"Ji$„$ˆ¸ˆˆˆy|¤äÛz۹ꊊIjJÇÄ¿«OÛvÅÇW‹§M)­EšwÆ[‰ÌºY¤‡Ø+´¶´»Ø“²o¨ÆxXÑK´­Ûo!nˆ©U¯¦H«PeJß 8Ü—[)qù{"A2…(ÈÉ[4æYs9n^ót·¥½æ”ížIÙÞûLG¤5O}ß%¾dôs¶µ•­°Õ[tžâeYº­z@ªT\mÇQ:Ôn,Ö¢Í$YpŒ•\ ZKJQi.YON£²wo·eþâp ¦/øª8iËFüŠÂPìÍö•9I,·Å6ö:•Ó2NøœúDEÄ6ß“ÕÛRƒæÍy3ùCA-®|ŸÜ[?ªúvñÁÚd9›Peʦm<ÔL ÉÖ~ñ!ÂIz‰·G{¬ßI'÷?"ßq+o”R趾ÿ¼½¢€¿«x¹»# +ðiסUîÌ©5å©ôÔò\‚>’ô™6ƒé’Ö“õ®rêâ3JËkÉXÓ¥‡É»½‹?À¦Š½HezhX}2JHü¼Úƒq³/Q-6÷å1wÉÖøÒ^äß›EOÊ(®,[ívòLþ­ßvŽò‰5Ü>™&eÍžԜ‹­u¶Oò„ÿ'd¸²Oµ5äÙöŸå_-v;ù¤[ÛuVnˆƒ*Þƒpò4šœg¢»NœG +Y¡ôJKf£4-Y+föµ¨)«n}\#ÒjöiÝf².hî…,ZÑN×MYäóý¹ˆÀ¼M ""&+?½¢¼+‡kuw~$n£×ßø÷71nd´.*­¡ŠUšL˜n“nÁäuHÞ¥'§|ä%êáÏ=GÃÂ.¨ãñ5"š„Z|÷·û±I_…§&œÚkšß"à–âýÎØ å];ʳrªX7RjT.G' yóÙ­Z´ŸO,½Qº˜Š6ÒŒc{õý아ܼ=kèÉÊÖêû‹Ã‚{‘l ¬Ì®ÚÏL¹QNœ•0ßFô¥¡ÃÉ&’ÈóAmé +VéTÅ-ZÉß%b÷ ¹ÔðÏJ7»V×ûl,ø«-ÄýÒßÚB^^ÂQ»ÁºÜîB>Լ̆+——²¼‘óm+:£{I‘ +•½.[l›ÈaÇRÚßÒdF†µdJ^G™'<̈òªÕT•Þ«ì½¿÷i»-gܶð¢ç¹ßÓTÅÄj*´Ë•;ô¬hÆG‘ïŽ;‘f]"ÌýAÎx˜A]½z’;ãõ2“µµk¾G¬DD§ÆnKrRɼÚ_dÌÛt‘™kFy•e™z‚D%¤“µ¯lž³”ÖÖ½yš#â}tµ{-GánŒ¾írò÷y"Ïqyýo6K[¨úâO°5/Ì(CÜþVÒó&n‡#?b^F7ZžrQûN?æÈnjk}¬ÌÑâ®ÅäJÓðî»›N¬5æ@žHÞ¤Cý)u_¬¸H#48G³Jˆ³âÌDU£¤ã{5ÌòËj%ïNÚ\Ç·ra•fÏ¥³Q®^}Ä%š{®§“”…™¸¦“™¡–G«#ÛÀ?0ÄF£´sÚÖ®óõ*.*ï.§¯¸á¸wу=—àë1ŒýŸ¼‡VŸ´üÛ~mL€ÝŸÑÆ‹þ‡ðŦäò/Ûû‘“Çÿ/ ûW÷²4µí™w}A¸ d¤º‡Ò_u-%Å ³&Ò¥dZÕÀ’3,Ï`›Rjš»½–ÌÏŽ“¶Ý¹‚…7er|šs4GÙv)™J\”ò;1ȸM×\É$\|'™m,Ç)ba{«=\÷÷µFMÚÎç­ÒʇR•OLÆ&gM¾HŒ£[.e™¡FE™g³><‡jrÓIÙ«ó=gæqÐv×Ø]ÿ«¡Wü9+=óc;»|ªö#÷“÷“~ܾâúŒùzݹæ6—d›Þ¶4[‘ùÞâ£t9½å2˜þUÀ~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€óIô×wÅ%3N5M2<Œ©TÃ#õI+‘¸YQ^Óó<ßw¹oª‰*£‡Óñ©÷Mõ¹¾¯P­VÊ"\›G¸9¦<¦ˆôˆ†—1¸”fj=(á=‚.ø¨· +uRIÉÚQ½³»Iå~ÂR¦ëEJ¥&RµòIe»rErÝEK¹-¸Ö}£b±fÐéíMñ¦šŠš*O©o:—$¼ûéZ”jR´–Ô¥%–D\"~çÊ3”¤§§&£w£¢¬¯d—yt#(F1qЊr²ÒRm»]߸ìeó½Aí™@óz¼gÚüÏH¥Å]‹ÈäÑÔÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÂÝWŸC°«³)“ž…)' ´HaD—['e°Ò +2<ŒÒ£,ò<³pQR¨“WYåîlã“6Ó³Ë5ÖÒ"Ç,ÉhZȯkŸ"3"ýëÿX‰ÛâèÃìþ$wGéOí~ñö3«kŸÝëßFgñÏÒŸÚüØtέ®uÿ¬C|]}ŸÄo?JkðaÓ:¶¹ý×þ± ñtaö¼ý)ý¯À}‡LêÚç÷_úÄ7ÅчÙüFóô§ö¿ö3«kŸÝëßFgñÏÒŸÚüØtέ®uÿ¬C|]}ŸÄo?Jkð0¿tl5Ú˜Ísr\‰’ÅV4­úS›ëî´dÓ¤¥¯"Ôzvg‘ Ö éÑV²õZ˸Àã–÷YÞîÏŸ7´ìýNšÕN,iŒ¦¤4Û¨2ãK‰%þY%¢í°õ»«í=—M¥K>‘™åÑÃ?h£ûžZ¨ãSÓïjÕ£hĵ'ªct¸LS›z¦n3%MïÒÞR4•¡Y ‹<Ì׿ť†Š‚”ÜíÝí5{.ôPaÄÉÏF +’Y'&Óµßs= @r¿—•&½.Ú´fÙÕ:Õ>›)ˆ‹Z§9,ÒÓN¡zt¼dæfzrQ'ƒ,ŒËõ…ÑÄÇCJjz2wÒ¼]“v{2Èù‹O ôô`àœrÑJK4®½ù—ÈgËòœîøª±KÀëО2ÎRaFlÅËdË/TˆŒþð¹ÜxéWU߃)·bZ4e×eâŒgܧqWínZ¥¤ü i‰ÇV“^fã„“<ƒNcq§–RIëyûŒväÊPriÛ$Yk†ò¸.·Û“V¯O’ëhÞЮLy¼‘™žY6¤— Ÿbº£ ’]Ëï/''<Û}ïî<4+¦¹mKLêen{• —ɯ¯™VÃ,œZ‹o¬>Δf¬ÒîGÈ7tß{5ÿ*S+ö5¹6|•È•& +ëÎkZÕžj3éŒV**$–¤Í= 9A7°ë½¹Ñô[ mDÏ2ox¹]Šá¬òÒâÜu‚Ï>mD=´ðò·Bþ žm‚zˆß§o¸ìà<¸õbßÀ³î{Žd>Lb—N—-ÈÚI[òZiJÞÌŒŒ²Wì=†:S†œ”W<’ïi‰½ÞÄßroî }ÏÖ=Bè ý_ÖµžEVDi”È´z[f˜Ñžo^‡\q¾/imNÂÚY˜·ÇTT¥¡ NñmI¹kk,¼J| héÎ0´’qJ*ë^¿u¼NeO¹°«(–¥Ù@µ^s&ªª5R…¡MŒQ¿2[4íI¶dZÒdF®ý5ô›‹à¢ä¤ïwl½çæïU&££7%•¤²o<¶”Q¦^øª˜ñ¬ V˜³.H™Z'[.=㹬ýlÜI}ò¯Éè7ROd|Úù_ÊZš[e÷?™ìø–T‰ðâäžádÌÚã›×«¼Çe +?ó2N¢[#÷³õù?Sol¾äiÈË€ñ¼óqÛ[®­(m 5-j2JR”–ffg°ˆ‹„ÇÔ®|nÆî¾ÝåV¾gM³pÚs°¨­QäTã¦MEyé4°¤óHg=„iæÜáÌ’yós7SZuÞ´ž¥øù=Ò݇QèSÕµk‡™ó°Äܹñ™«q'÷Òcí=Ù­οj_u…MÆ£>kv7÷Üά~ñ8.Œ9"»bÎrã§G#uÈŠA7Re)Û©Že쿤WÒI&w#UèÍh·ÏÍø¬fáÊ­Mé%ÍÏøþÙ{qöïJ¥6 ™‰SÜ™FuI« ÍRiëÏJPúšqœö•šÛá34–EÏt÷TNtÕž¶¹Ÿg_™Ós7aÓz3\Ï~•Þq}u™ê·jÖ")JY*!TQ5R÷³Io¦Ó„ƒ3Úe¤²Ë!˜¤©Yi*—綼M5WZïEÓ·5ô¯àÎw„Î_ër¥öm6ÙœšäR·Ñ%*IóZ÷îHZ¶Í9z¹ˆøï-.½+}ÄŒ6ùž›Vþòh‰ÀŸº[ûHKËØJ7x7[ÈGÚ—™ÅròöW’=Ü*†U +âc®w«mFÔr˜¸dÊd£|ÞG•$— ™‘|9Þ!èÆúZ=v¿¸éI]ê¿V¢á\óê—¼´Ú‹L¬¦LÚŠÍß¿I<‹niFJuYÍZ¤(©ÅSnJM_Ÿ{Ëð-¤ÜÖ‹IÛ›O3?«kmÉ3á¶j|ÓÔ¥%ÍdÙšˆ”zx3=»Žž¥òYíë)ªky[^[ ñ>ºÚ½–£ð·Fcv¹y{¼‘e¸¼„~·›%­Ô}q'Ø—æ!î+iy“7C‘Ÿ±/#­O9(ý§ód755¾ÖfhñWbò/¦ Uê6¥*b‘eÄŠO¶m.tëŒàµ=Iا ‡KB²>"2#à1AŠ¨Ü\Ÿ²¡¤×½fâ®—½Ê×#Li§xÍÏrÇbšìù¿£V—SiÓ"3SZ³4‘ŸFddE°²°’ÎÊMÙq\4}ç箯¢³zÔ¯î \;èÁ„Ë¿ðu‹ G#?gï*£ÊÓöŸ‘»cÏÍ©³ú8ÑÃPþ±´ÜžEûr2xÿåájþöp|>Š™µèQ•o}OkB %õ°n,Ë2Vø©$yc> ‹i‰u¢óÑë×cä5¬¯Õ´»U‰õk–•ÜeRê Æ<Û…ög¾H3-„ƒÈõ/.JŒýAA¨ËMJK¯zȸmµ¢ÒìÓÌ¡÷"[EbzZ¥%(}I( +Z–q9¶j^J<Œi,â³ÒË^Ò¦¢³Õn¢ìx] j¿áÉYï›ýÛåW±¼¸Ü›öå÷ÔgËÐ(~íÏ1´»$Þõ±¢ÜÎ÷¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°^‰DŒl”£àM.–€”cÒwÚ’öŸ™æÛ½Ë?ey>·ÈT”Þ˜³PÃ[þ,{²ôZ’›«SH£Â”Ûiß‘9¾ÒI-íK#JHÏ2ÈTÛU:~¬ÓWŒ¸ÊMÙ½WæeºÏg òvÉÅzº*7K]­žÎs0±&FHT°`×c ‰ÎKñîLgÍGšto\ŒÚ2.YçžÌ†ª‚¨¯¾8õh¦¼Û2˜‡MÛ{Ò¾wÒiù$v§²ùÞ ö„?Ì y=^3í~g¬Râ®ÅäraÈêÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ð.Ê´Š³T‰åÈ… +T–c–y¼ãM)iAe·š2ËfÑúŠ»KkGÆì¯ÔÊŒÆ'WîÛRÕ‘m¸såÉTšÄÔ&iƒl“¢ÈwR–Û¹%FfJ=¦|êXxÓ›NqI¥­Ýß]ÒÔÊ8b¥VšjqRrMêZ1¶jÍæÑ.nv»ê·•¿V‘V¯"¼¸•y°™ª2Â-–4]`›"#Aæ{O>hŒµd"ci¨8ÙhÞ)´Ûm;½d¼ W5+ËJÒ²’I&¬ž_YCüQ ,v^“~ÄaG{H§ÏQp"CD{Ê¥¾#4çÓF\b÷q±NZÍvs”¹†iª‹Ÿ'Ú¿"ùnÝ lx–­FY}[L¢3ˆqE®D$s,>’á=)ɵô”’3òÄ3»³‚t'¤¸²Ï±ó¯¼¾Ülj¯ ÆŽ^îg÷_áž4%@¸÷Ø5Š¬êÅ*}vÛzkª~CT:ÃÐã-åžkY2Z“Qí=$EŸ·¥º• ”^Œ’ÉiE<Šš»› +É^-»½lÏ£cn8°ìºäŽDšÍÁQ€½ö•Ê£³‘Òàu¶Õ¥²âQ‘™p–G´}©º•&œVŒSVz1K#å=Ë„ZoJVwZNù–¸S–æø¥{¡b]õH8mB–OD¢¼rªÎ¶¼Û\âI¥ lØ{ÊLÍ]%«.˜Ýî ÓN¤µË%Ù·Þa7wª5N<Ï>ÝV÷~Ú%›ƒÒ0³mZ…J1±S¹ªnÔÞJ¼º#r>˜¨2âæ9³.šò=¤?SÄïõ¤–¨ÆÞûæwÂá·Š)½rw÷[/Ÿ¼ââAÐ6KúZ] Ïõcå%ÚÍ>ˆ» )Ýë…°e×á ÙƒpºUx6)nRT“}–ÂR]-y~Åd}1¼Ü|J¯KEëŽO³›ÀóýØü=]%ªY®Þjw1ãÅ7t ‘N¯Gu ©0„F«E%sQæ!$KÙáÏ.ƒà4žYæF0øüÂÍÇ›Z}Fã‹X¨)só®²{Ÿ5V,˜SCñ䶶^iÄ’ãn$Ò¤¨„ŒŒÈÈW,‹›;¸NÅŒã‡D¸nªe©F˜tÚûíFlŒóÒÚKÒ’â,ö µºÓüåuÊ)¿¸¦–åCó\£ÕYVn\²0†ªí~œU +•em)’¨Ö'»:Km+Ë!£s™A+JHσ<„|Fèμt]’Ù‘Þ†ç‹Ò͵©Éܰ·Y!#R”£"JRE™™™ð +ÂËQ×væ9–èLFf¸j™J£Ÿ”²i&£™!Õ‘:ê³ÔN,’„e”¤øÇ¥îNÑiÞY9fú‘æ›­‹ôº–ŽidºÍÇÜÓ…>BØolZ®ärãÇߦ¨‹aËfëߊ¥i#é$†ˆôŠ’—3yv,‘¼Àáýš=³íy²v à›ž).7ÉÃë*I’lÔ.…:܇½+nœÎ[ñ[E5}n²mÂÂ*³Óz¡çÍÜfws¼ÃAk——ãó+特¹št—Š—D¾ÜgՆÄFõ­ŽÊRL²3B¹†úJ%+„’bÇw1î?¹Gg­òù•Û…€RýÖ[}_™´ÃmÊÙ‰{­pÇ «k·® +ë…Pe(\–¢Â‘,¢!dF•HS ©-‘‘ç´óËnY ,>çÔÄ-(¬¶¶–~ò¿§‡v“ÎײMäOvýÁMº©°«y­M5¤?C*%¶ëk,ÉI2þbà=¢ Jn›q’³ZÓ&S¨ª%(»§©Ÿ`s:¡âîe‡m­¼Q¶¡“æ>–+qÚFM¥÷|ÎQl-ðù‡6dj4«…F7‡sýÊ\ËÕìÙò0û»€PýÖ;síÛûs‘væ +Õ­Ñ$Rêøýý]¥šNEJ,†ÐéÄ_2ÁÓž„“_·1a“ƒ´ˆ-·5¼3ºu£K…êPòÍ'žFm–û–Î"Õ÷Åg¦K§Ý Môdÿ6]謗…zUÑ_ªÕ¦Ç(ò%É[Ž2De½zts[y’"#Ïne´ZQ¦©ÅEf’×âC«796òêð.‡‰ÕÐÆ«þ•žù±A»|ªö#÷“w“~ܾâúŒùzݹæ6—d›Þ¶4[‘ùÞâ£t9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒv;2í¢Óß\i5Hí<ƒ"Sku$¢3Û´ŒÇUJO4™øsKœä)2Q‘æG´‡#öuáñH”HÆÉJ2Øš](òéäJ1é;‚íE{OÌó}ÞγöW‘ck{Í&EÉ‹µLºÒušT–êm•ÑOZš§ÍŒL©Ã‚”Í´”dh5'$lQ‘©µ–òªCЗKK{^å´sýÕÂYA~|xº:­{XÌ\I©áýDà}‚Pjô¤ –RÊ«Pji¸fiѽïM7§-¹çžy—CSB5÷Dzɯ6Ì®&tåmֻݧ÷#µ5—Îõ´!þeÊ*ñŸkó=^—v/#“GP?ÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ò«Î<Í6 ¸óš‚òc¼¦åHI)˜ë$™“®$̈Ѓڢ3,ȸH}ZûQ—UÔͺ*2>ÇjçT5+~~-• ¨¤²á7fÊy¶¸xÓ¬øò1©§ê,Ôàºê?$›2u}w“„åÕIx¶Ò/ÆÄ» Û-1xÈ£¹9¨šn††Ñ;S¥¬™"F´žyéÙ´¶˜£Æ89zšZ³r½Û÷—Ø(ÍG×Ñ×’²VêÈçw¥IÄ +%FÞ®F)'´m:ŽVƒýJÒyOˆÈF¥QÒjKZ%U¤ªÅÆZ™‡˜…—öä;¾%r‘5ö˜eã].µ?¡¸“ýiòÈÒJ2æVÚù•–yf\Š8Šxèh½™ÅþÞ& +¾¦zQ½¹¤¿oJ0?Å2µ.8ÑéøTŠRI\æ[Ð2٨ɧ3á22R¥q ¾/pg éúËcÉü™¦Ânô'•OUíY¯š/• °î厉TËâ‹!¥‘jQÉEŸM*Y)'ê ž¤2q—s/ዧ<Ô£ÞŽ=xî›Â» •=X¿)(˦%¢SÇë5Ü_äËÕ)`*ÕÕïV^69ÕÇÒ¥®KÜîü.eæèÿ¢]Í]¿†ž¦Æx”ÛÕ™I$JRa”f³=ë2ýZYq%'´j°;„ ôªçôV¯~Ó+ŽÝ×?V–_KŸÝ³Ï°†7nd~ü¾íŠ…ùLyilΪEeó4® ¸Kdóq*æ·•)â33óLŒ¸ ÌNÝ<~õMªo4Ò}W¿Ž^âæn{©4ê,šmuÚÞš‹»U EØJH’”Íxˆˆ²""døe÷#.ϼØÛ÷Ú4Å(l–ô>´»AŸêÆÊKµš|7v+tP÷AÚRíšÏè.g¿Aš”‘»RHÉ.'ƒ2<Ì–œòRLËaäe÷‹–zKÞ¶£–3 T4_¹ìf‘b®ákô×¥PdíF£Jœ¦Õ¢º{ i>qµ~ÄÇ¡~åºTöù§û{™ç¿ºîeOÚÍÁ„(ößQ˜bêuvµO$“ˆ’JvÖy›rIäYñ8”ðŒ–'pêR~¯¬ºµ÷|vw)Õ^·ªúó]ÿ2âÁÆ ¦ÊdD½(¯4¢Ì–Š¤c,¾ó‚–Xj‘×}—ò.V*œ³RÚ_20¿·_a´âªW´%&eœáN}F_©$ÇÖDgŨÒ^¨•Gs*ÕÕÚò^$ZÛ¥J–¹'Ô³ò2+tÞïk‹vÕ´!¿E ÉVôéê¨T Y6½ï2BÁ½ ÌÕžF£.dlp7¯<ä»—í´Çc÷bXŸR +É÷¿Ûag÷ n%—hÊ…ˆØ y¨6Då"”êH×̶I|ܼÍ(òÇ’²$Õn¾êª‹{§«íê_yk¹”éþéS_2ûßÜkXÈð:õø¦U—çãÄZÌۧѠ6ÒO;é¸ò²õÍ_z.àÆÔo¶OîGnô¯ZÛ"¾yµûíÈÖžØT¸ˆ$6Õò.5¼Ê]Z½u)fgê˜ÃãfçVMôŸƒ±¸ÁCB”Rè¯re‰¦w;mâÞߘŠvÅÒª1xT¹=”UªŠjkŒ":Ѽ¥9©¡G–Ò-£A R­J1›šÐÒ¾Œn³•þò‚¤jÒ«)AAéèÛIÙú±·ÌùX>Þ=àõ"‰‡Ñ¨[Ü„n- ;\u39çÖò,¤ˆòI)Dœ‹,’;â KÓnz’mE[$‘ «á–‚P×&“–y¶û$Ny|9mƒLˆOt¬Åå…—õ*FĹGœêO.#¶o¶yh!;S{«ô—‹± O|¥%ô_†q×sÝÉ^¡ÜN"ƒqT(ŽLˆâ^zœñ4âÒÙ’É +3JˆÓžÞé˜Êqœ}d¥gÎ8Üù5;&ã“ÔìhÞcÝû‡ªž§®Yw%dE[tä5mk{Þ²5gÍgžyÎWÀÓ«l”mÑËæk(W+úÎWé;üEÂ;ºe÷hÑ+Õ4‰3ZZÜK)4¶F—‚ÒJ5KŒd±T•)¸­Käh¨MÎ)¾rGNàb~éoí!//a(ÝàÝnw!j^fCËËÙ^HúYr7@©MŽüY³V„õ=ç?[K¦•kc¦¢Ó´¸ÓžÑúÄSÓ6M<õe·¨ëFz¿SYkÏgY"Ð"ÙVýA5ZuNìŸ*”âd9¨$ÊЦ•å^pœV„ê,”yÓI+5žWnë?qÝB7×+®kfW뎪uÙµj’šCG1ÙR ¶ü¢ ÓRô§Ô,ò!>”7´£®É+öjÏM·¶ìПë }«Ùj? tfwk——»É;‹ÈGëy²ZÝGЇ}©~aBçò°ö—™3t9ûò1ºÔó’Úqÿ6CsS[ífjv/"Ï7U¶®Û~‚wõÚJi1ÊœOÂŒOÓÝÒµ-*"5#C§™êáÏ,Å\£(M¸è½+;7g©.ì‹ÉJ);­«¬Öm¾üÏŸ|Õé”[m‹^’ÝeöeLn¢rë od†Í (Íæ®eD¬Ô¬öìØ>ÒŒ§=)h­Õ£ž·ÏÜ}œ”cew¤Ó»Ée³¼ˆ0ï£{.ÿÁÖ%b9û?y]VŸ´üÛ~mL€ÝŸÑÆ‹þ‡ðŦäò/Ûû‘“Çÿ/ ûW÷³ˆáЛBá‹9q”‡‘mÅ=2tÉmM™<ôDêÍ>¨“ˆ¥¾ÅÇV®Ìû´§¡$ö I0(VDjª=^ï~lEoÎCnž”KFöd£Ö²pÍ9lÍYlÏ<„mò¥µS¶ÛåäHpƒv¼¯²Ù‘ çqý—Ü5j×#ò?'I[ÛÎyš̈ˆÏfg‘m>3ÌK¡OzŠŽ»-g +ÓÓ“z¯ü1s|N®†5_ðä¬÷ÍŠ ÛåW±¼›¸Ü›öå÷ÔgËÐ(~íÏ1´»$Þõ±¢ÜÎ÷¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°QüP";²©³õƻĈŠºÜf]˜¾bÏXŸx†yë,ÑןÅ"VŒl”¯ØÒégëäJ1èû‚íE?¤üÏ7ÝîYû+ÈæÖÞ9Ù7ÕÝ]»h˜+vÖ+UȲàN85w$4¦¥°QÝB[n:’’Ð\Ép$ò2"§‚8h:Q½ó¿;K[{I”ñ©%% 9$–Môtu(ì+~é<8‡ånrU,ÓšÛëSjË5ßJMO{ošgNgåȵg°¶²À×u\¯5;[‹­¯Ÿœ­Ý :¤“Pp½õÉ;êæ²hì§eó½Aí™@ó:¼gÚüÏJ¥Å]‹ÈäÑÔÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ð®šjë4j´ãG’©Q$0–%šŠ;¦â $‡MÖ…g’´íË<¶Ô]š}kÌù%t×S(o*å{"/#,8ÙÅÉ5œ½ñéñéÔîô t)w̱›œ©‘ht:Ý*=6‰Ov^Liqè',â¢ChoY(æ,Ü-™éÍ9e‘ðˆ8ééèÊòiÆéÊÚ®öð1ÐÒ¢š’MGK^>—ÜX1XZ>«Iƒ^†ý>§ ™‘N—cÈm.4²é)*##þ¨~£'u“GÉEIY«§ÌʈÞ'½q¸ô»V©"ßy{J2“ÉPÈøò%(œIz„³"é ê;³8e%¥×©™êû‰ çãÕ­|ÊÕSñ9oÆ|…]¢ÊG­o²¯¾FÒ‹ò˜²ŽíAëR]Ïï*å¸u¦»Úû©Cñ7î×ÖŸnšT4fZ¹·ä/.>´YýñùžíÅj‹}Ëæ~á¸S|i%Þþä\|*ÜW‡˜fóSäÇr¿QhÉH~¤I6›Qq¢:KGÒ5k2âÈSb7R¥l¸««æ]á·* øϯWwÎ凃ÑbÈõ(× ¨D¸;tù){Pÿv,?ž±ögþêqíÚþr[]¼÷æLtÜŽ4»>óîèj]¿qcLRÉ`?CëK´þ¬añ¼¤»Y§Ãqa-D“†_xymâm)ê%ÓFT‚ï R%iWì­ŠB‹‰I2QtÇz5åEéE´úŽ5hƲ´’k¬ÌüIñ,(7]“cÝr)DµŠA®Ka$yó(u&‡‹‹V³Ë„Ìiè~PÊ9N7ëYzÿ“Ñ–pvêyþÞ%pŸâYâsé\·ä6gå÷é-ž^ªUÿ!˜³å'­I{—Ì­“õV§÷ò9Õ«âRÜn¼ÉÜwÅ>+‘¸Štg_pˤ•4—ºïÎƇà†ãŒ6À¥µ:•KUB®‚óÒ¢dü„Ÿm’C^ºJË…F3˜½Ó©‰É»-‹%øš<&æSÃf•Þ×›ü R*K` ñPlù4¬K¤×ÈÕšKM¡ylߢ-HZsééZÖ1è;QJ›:—™çß”ôj)s8¯ÙùÿˆøIeT˜Y‘àµO’œö¢D$“ IúúIEê(†Gt¨ºUd¶»®Ç™®ÜÚÊ­(½ŠÏµdYXY™yO«[˜Š7µ×ŠUz]yê´©;’4 5ž5>Ù6Ôvwƒ4´m Ô•$ÓÇÂ5R¯F0¥(¥£iŵå{ß=kQš¨Ö”êFOÖNY¤´mnÜÙDZºó°·E:‰X`ÜsñÎ#ºÚ)“)ÅOÞÖ—^’鶂i«22<ó2ÙÂ:à¨ÔÂ?^QŒ/y'$ï•žYÞé±µéâ£êÆR­“Vz×ff¬ÀCíÆŒ‰+%¾–ÐN¨¸²Ij2õÏ1•›M»j»±§¦šJúì¯ÚVíØ·ûXs„7¤õ<–ß— tؤ®¿8·‚JKŒÉ*R½d™ñ Ì£¾ÕŠØîûevéÖÞ©IíV^üŽ¾ØL7«Rædz"Å4gÅ©Ó$—ä#‹vVÚÌæÆòobó-Ȫ4F¾îoèmjö»¿Ÿpb·C•—oÜ.ˆ»>òoä°1?t·ö——°”nðn·;µ/3!Šååì¯$}|%»!Zu:‚çL~žS ? ºŒV÷Çà¸á¤Éä'23àÒzL”D{ }ÄÒu#egfž§ncµ ¨JïcWçWZÉÖ;jÉ«7]gŸqDé=!¨TéE"Yµ›nªÐ­g°õæ[LÄiéMhïkªòVGx¤ôýöw+õÍPf­:¯:'WC¯ørV{æÅíò«ØÞLÜnMûrû‹ê3åè?vç˜Ú]’ozØÑnGç{ŠÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø(þ'óÙTìw‰,7u¸Ì»1|Åž±>ñ óÖY£¯/ŠHyc\³Ë‚—K=¼³¸.ÔW´üÏ8Ýî[ê¯#îÆÝÇèE"5ÓC¬ÑZ§=Ô›ZU>+»Ê‰F— ºƒmd¬¶–²Ì³,È~å87(µ&ïÊGKÇYúŽê©EFI¤’âKG«Vi•³t}^Ê»îi—mŸqÏ©xÿ*\Ùª0Ž;Ôçw|KD²ZÐâ9£$é>d’'n}9ÑŽ„ÒZ)$Ó½ýÙX‡ºUa^[伵ŭ^û´ÎÎ6_;ÔЇù”1«Æ}¯ÌôÚ\UؼŽL9@ÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >èU—&¶`ILin4âX}Mï©iÕ$É 4–¢Iäfœöð«Xd +X?°©Oý¬5ô¢Ã~£ÐmüŠÝâ·MŠ×Ìõw6C~Ÿÿ:¢ª„ögI8ÉŒ‡$’Ö¦ÛBÖIAìË3#õï%(ÓiYhd¯|´™øÀÅÆUSwzjîÖWÑ]¥“e¨pÈ=,Ÿa®/ÎA§ÉKÚ‡û±ùëfî§ݯç%µÛÏ~dÇMÈãK³ï>Û÷Ö4Å l–ô>´»AŸêÆÊKµš|7vЄI +‰»GsòñúÀ‘šÚN»HZ§ÒÌöo‹Jrv>Å‘°¸µ’ ö¸Ü¼o¢Ô»âË'ó÷û©ƒôªvZÖkåûsØÈýÅ»¨ÜárM·ît¼Ý»S|‘9µ![å:cg½ïûß e¥ä‘jȈò3NG°Ý]Ïô¸©GŒ–]kgÈÇîVèz$´eÅzúžß™ØbYqA‹S¥Ìjd9M¥Ö$0²q·¢Ì”•$ÌŒ‡œÊ.Ï&¹FŒÔÕÖióŸL~OÐ|ªårŸlÀ—U«Mj(©×ä>²m¶Ð’ÌÔ¥(Ȉ‡îsvJíó#ñ9¨+·d¹Ù×wvžêU¢Òhá[T‡T˜)4™.l•s%HË2#.e´žÒI™žF£"ô}ÊÜÿDåÆ–¾¥³æyÆêËFb•É‹uû¾ÕµãÕ)³©Ôب[•&#(–Â2_2³Õ°öpmì6”)(MÙ¦Þ¦õ³/ŒÃUu\¡¦’ã%̈¯•ï}.áû½Môú'öYx¯Ð_mW¼uô»‡îôPôú'öXÞ+ôÛGò½Ï8ê´­>Gq RTœü}‹ÆY§Ðé?²Ã¡_ ¾Ú4WrW°Ÿ hÍÍjq1O4‡òRNÈqÄóh3Iæ•ŒÆé×z®QÍ;us"÷shJ…%kWód…ŽÖµFøûÖߤ2—§Ôé3bÆmK$%NºÒ’’5(È‹3>Ø#`ê*u#'©I7ÞHÆSuiÊ+[‹K¸ÉªVæÜu¦B‡Èú"ù–ÚÕãìRÕ¡$œòõr)n…ï¤þË3ÃWŠKAd­ÆGÐå{Ç_K¸~ïEŸO¡ÒeŸ­â¿A}´9^ñ×Òî»ÑCÓètŸÙcx¯Ð_m³ w8âô|H°kõëB5:›Ež¹^EV<…Ò‘± 23ÚeÁ˜á‰ÇÒtåÉ·%eêµÎ~èá*º‘”¢’‹¿3`F,ןºÏq"øĪUÕg[¬Ua³C*{›íA˜¦—NBÝ=Žg‘qe·ÔÌÆS¥MÆnÏJú›Êɬ~¤ª©Á]hÛZ\í+Þ:ú]Ã÷z(²ôú'öYx¯Ð_mW¼uô»‡îôPôú'öXÞ+ôÛGén{ÇR2?#¸~ïEO¡ÒeŸwŠýöÑ}7a}Ï„¶ º=ÛjÖ*w–ä!ô“R ³O6Ù™qª3›«ˆz—ƒºÑKUµ[™BT`Ô•›“zï®Å¸å°?vç˜Ú]’ozØÑnGç{ŠÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø*Í÷†÷ jàŸ:q‡VÙ¡[ê™RG°Ï>!uCÅ&ü¥&ÝÑhXI¡¦Ò|$”‘úäB™“Ž¼^)/F©¾ÅS;ÕFÜ.E{LóÞ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ð.·`±D«¹S–äHH‰!Rd4µ6ã,“fkq A’¤§3#-¤e™Ôu®Õæ|–§}ÈÎz½fÊn>½my&ÜÈ,©çª,Ö$Å€”'"Ï’i3,̼ª ýA¥ŒguoQm¤“Šo>¤f©´ÜwÙ$›mI¥—[-Öç[:}ŸnM*ÚSõîÏ6_«VBÉä#'hO6¬¶‘g—{E^>¢œ’M=l£¢µ¼’-7>“Šri­6žrÒoÕY²}… pÈ=,Ÿa®/ÎA§ÉKÚ‡û±ùëfî§ݯç%µÛÏ~dÇMÈãK³ï>Û÷Ö4Å l–ô>´»AŸêÆÊKµš|7v•Ùºlj¤š%zë‹¡nÇpÖñ$´ç¥[Rd|#í< J«J1m>|ÅL]:nÒi?yÇylð‹«¨?Š÷ÑŽœ[¢ü>g?O¥Ò^?!Ëg„]]AüW¾Œ86·Eø|ǧÒé/‘ýµº¿ ZEñ KZ’”‘%íªQäEæ}0àÚ½áó>¬}'ùËÄ’¼“íoFYü ðDoFžÂVû§ç’}­èË?~z4ö ö;G’}­èË?~z4ö ö;O«G½(•÷Î->¢ÛïMzJÏIl3ÚEӉєÚ>©©j9@ât»]Û¬°’ìN W¯X°ªPVMÉŽ¶d)M¨ÒJ"3CJO‘ì3T÷:­T¥¶ž§uó+ªn*mÆR³Zò#Žrð`o¦?h—ô§Wè>õó9p­’î!ËÁ¾˜pý¢_ÐWè>õó+G¤»ŸÈrð`o¦?h—ôÁUú½|Ç +Ñé.çò,m­tRïZE>»D˜™”êƒ)~4„‰.´¾,ˆË?TˆÅmJn›q–MkE”&ª$ÖiŸJ£QI‹&tÇI¨ñ›[®¸¬òCh#R”yqcó¹;-lý·lÙ–è|9?è×ð;à ¾W¢üÞ• ¨rÃáÏUq¾z^‹ð• ¨rÃáÏUq¾z^‹ð• ¨åv–'Z×ÓïÆ ÖYœë'Cd¼Òƒ=$g©%Æ8ÕÃN–rV¹Ò£=Nç<ŽÇ»q6×±½Yf ¯ ÜióRô™–”Ÿ“K:¹Å^ÇÖŒ5»O–z«‹øðo@«Ñ~?J†Ô9að窸¿ß=¯EøJ†Ô~è|9-¿eq¾z^‹ð• ¨–éÕÕh±æÃtž!´:Ó‰Ï%¡ešTYíÚF!J..Ϙ’óG²ë¨e qjÒ”©GÒ",ÌÇæÇÒå†Ã’þq¾Ÿèz/À‹éPÚ‡,>õWð;à Uè¿éPÚ‡,>õWð;à Uè¿éPÚŠºCsfnž©È­a­Ã +=ⶖôˆÚVˆÕ"l‹59Ì~†él-ð³%lÔ_ª+ü6¦ Z¢zy×àg±û cÒ¦ÒžÎgø™ïob67î1©¹JQM£µ­Fª}E“‘M|Ïi­¬ÌÛ<òòí,ŒøÌhgB†è+äúÖOöí3p¯_sݳ]O5ûv +ÜñWê 6”×°ñ—Üȳr IL¤ÏŒô:ËŸƒWßÓü_›>õ&‹˜~Q¿Îs·ÜÏæäñWª.´´ÐpõˆëÈÈœRSÉ#â= 2ßKWß +“«ó§Ü­æÙò”oócÞï÷"Ÿ×ïìoÝ¡Tjš”ͬ´•‘¢ y™\Ksi6FYùwVjË€ÅÌ(ÐÜõ|—[ÎOïî)çZ¾è;fú–I~Ýe§—¸¶>çÛF›qÜ3QP¹¥Lm­,™ò$&ÔÚÔhoQ¸ædY¸dD\ OÖCu^*n1VŠ^÷š.éîRÂÅJYÊþäpá$èû¹¿¡µ«Úîþ}ÁŠÝV]¿r4¸^"ìûɼW’À‰.lt±í +¬ªV·½OŠ–Vû‰)óm/'[z–V’Ô¤Yç™O:‹I,ŸZ^l‡S +oE¼×S~Høœ²Øuèó¾æT>¬:zMŸ¥™øôú{F_!Ë-‡^;îeCêÁè6~”~cÓéíý|‡,¶z<﹕« TÙúQùO§·ôeò²Øuèó¾æT>¬SgéGæ=>žßÑ—ÈrËa×£Îû™Pú°zMŸ¥˜ôú{F_!Ë-‡^;îeCêÁè6~”~cÓéíý|‡,¶z<﹕« TÙúQùO§·ôeò²Øuèó¾æT>¬SgéGæ=>žßÑ—ÈrËa×£Îû™Pú°zMŸ¥˜ôú{F_!Ë-‡^;îeCêÁè6~”~cÓéíý|‡,¶z<﹕« TÙúQùO§·ôeò²Øuèó¾æT>¬SgéGæ=>žßÑ—ÈrËa×£Îû™Pú°zMŸ¥˜ôú{F_!Ë-‡^;îeCêÁè6~”~cÓéíý|‡,¶z<﹕« TÙúQùO§·ôeò²Øuèó¾æT>¬SgéGæ=>žßÑ—ÈrËa×£Îû™Pú°zMŸ¥˜ôú{F_!Ë-‡^;îeCêÁè6~”~cÓéíý|‡,¶z<﹕« TÙúQùO§·ôeò²Øuèó¾æT>¬SgéGæ=>žßÑ—ÈrËa×£Îû™Pú°zMŸ¥˜ôú{F_#Z˜Ûe^ÕFè´zÖÿ=Æœ} .,–¶Ú4’Ô“}¤éÔYäyíªa'M]¬»SògJx¸TvO>ƼÒ+.íÏ1´»$Þõ±o¹î!î‡7¼ cFSŠà?XÀ]…<åÚ~ÅÀüÂÇ—´üÍU*ì^G?ŽÀw|R^S}Š¦w«¸\Šö™æû½Ë}TP‘¡3§ò®oK/êhCüÊŽUã>×æ{-.*ì^G&Ž ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >òë†çÓ÷¨ ¨/xwL5©)L•i<š3YH—åLÕ³n݃ìuŸìŒâ½-µz¬{eÜ —F©×cJy¶éKÐóQ´oÆ´7›–¤ó*FÞ"JU,œ•TÔmƃv¾­y™šÔÓj.•œïm¥{+½Yw—'i—M"Ýv-ØU”Ü•”tÕ&F›!1‰ $ý)I¤Œ-E«§³!Uœ$ÓµgdÖwë-°0œ"Ôï­[I©em«ï&^X€ ƒÑbÉöâüäÚ|”½¨»ÿž±ögþêqíÚþr[]¼÷æLtÜŽ4»>óîèj]¿qcLRÉ`?CëK´þ¬añ¼¤»Y§ÃqaÛ´:0Ý]m?à ¦år1÷ù³!º\«÷y"²¦ •Ç\ÄÆtã!iio“j6’âˆÍ(5夔dFdFy™y [«ÛÀ­³yì=Qôø}?žþÙùÄ̵>Æ~á­v¯3W„eÍqø>€˜ð7ž';UÞù"»Å÷’0úýžEswL!+ÆÌOÔ’VS£ð‘ï»}1éXFÌó¬ZýÚ§jò"D@S­¸ê"š›k-ñik4£QäZ”E‘f|ð‰®G£ûLrkÍG O<é‘6ÓlšÜYŸ%)I™ýâ0r°Ñ¿1òêl!e‘´’2mÂËI‘‘¨?Qg9«'ØÎÂ;ú ᯰ±;Ñç¥ËOÚfûs¹(û$£Š\ç]^ÅÎüÊÄ\7>Òó%Öâ¾Æbj<ª}bæeOè|Óz><(õ'a:ˆRV¶Ù¤4âÑå’•p—qÎ’½¯ž»sØýh»_˜·›Š¹ã¸ýkóÄ)w_Š½§äYnö}掌±xg&í~x-¾ÑóÃQ¹Yv¯"t5®Â— Ò¬÷)ôùUY,C…r$>¢CL´“RÖ£àJR\&cãifÏ©\õæFvßaöÔÛ­ÐâY) Ndi2>#á!ö.ù¡$ã“6« 9εý‡ù¤Œ'/iùššÁuÄNRž”DeÁ̾âÓù{©Z_œýÖ^HCrèÃTW¾ïÍ–B‘D§[ñ‘ +—<Èò¬Æe ¶ŸY ‘~[)¹»¶ßk¹e(«$—b±Twgó¥IöI¿Í8.7'ŽýŸ½øþ*íû™š£TQ¾îoèmjö»¿Ÿpb·C•—oÜ.ˆ»>òoä°*U©8—Š(Ëš·¸ú`bïùç¯ñ0ºOê|'<ßWû3ü&8’n7ÕþÌÿ €¸ßWû3ü&ã}_ìÏð˜ õ³?Â`.7ÕþÌÿ €¸ßWû3ü&ã}_ìÏ𘠟.­p@ 2Rj•HðY5 ÙRPÃf£ÚIÔâ’Yž\æ?Qƒ–I_±\ù)¨æÝ»]¼Î9ä£hucG÷Z/ÒŽ¾>‹û/ärôˆt£ö—Ìæg·9–¤F’—™u$¶ÝiÂZ•m%%I3##â2<Œqq¶O#ªž–iÜóï«ý™þ·êÿf„À\o«ý™þq¾¯ögøLÆú¿ÙŸá0êÿf„À\o«ý™þq¾¯ögøLÆú¿ÙŸá0êÿf„À\á–¥b­‰šŒÿyw ö ë.J^Ô>ò3ºÃÙŸÜpmÛžcivI½ëbFä~w¸ùºÞòL~+€ýcmvó—iûóár+Úg›î÷-õQBF„Οʸ½,¾w¨=¡ó(9WŒû_™ì´¸«±y˜r:€ÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ð.·âÄ¡Ö›5Ø1š‡%oJaZ^a´¶£S«#Éi"3IåÃýGZíY{Ï’Ôù²y”«F¡xßj]‰¬âLÊÕYÉ0è{hª¼ÊÒ—q½HÒÛ+A%F¥ÒË`ÑFRRpµ4’¼Ý²VzŸ]ÌÜ¡=*­¹Z +ù»­k-V-~Ô"TmÙ*P®Éy‰òcÌfãxž¨C”Ö”®:”’"Ò†œ³#Ï>1WŒVk(Ù«§dÑk‚i§œ®¥f¦îÓ·“ÖMå·€W–É,´ò#¸òòó4´¥¤–¢"ÌòIžg‘màmpÝ0ø8d‹O°×ç ŽÓä¥íCýØüõ³?÷Sn×ó’Úíç¿2c¦äq¥Ù÷ŸwCRíûŒëb6KúZ] Ïõcå%ÚÍ>ˆ» nݡцêëiÿhm7+‘¿Í™ Òå_»É˜]|Û6®ÜÑ®+q»ˆŸ¯Ó\jÏÈŒÙiŠêMíù‚Ë4ð [sÏ#È~±T¥R¤4^£<ìŸ:ÊÌù…©BzJ÷pË5·»¸ƒaÔ¹"Ÿ Dղ頛«Tœy®`Õ¾o{LÉÍe–E™ì7Š‹7W/f'ÕZ-ï?jEt£?éûsý3ó‰rÔû>â¾:×jó5€ö˜Ëšâ¸ñÚ‘j¿)©ô*êQíàä&˜£Žµš´'Cšˆ”J=‰é‰”𮥬ãŸ5ó+êãcJ÷RËŸG.ó“Z8•,ÐëT†ÔîùP§®3FI2-$µóGžÂõÇ⥠{Åö;³¥,J¨íi.ØÙ§yâsµ]ï’)±Ü_yi‡×î-ð¢,€ëŸº[£f'öôƒ¶=+Èñù³Îñ|´ûW‘Ëp6U©G¾,ú²ê¨]ÀÍ?xU&–º“éä7”òÌÙB’ym"Ï>1Ï'«z’mé=š¶²FKÖ‹¿­²Wy;ê,µ!vUFõ´nºs·l§í(Ôúrâ3i¼¢qÈ-)¯ÑV—zRµfi2æE\œã Åè~é¤ï¾/ÎóÔX¨ÂR‡÷=mÌïî3väVøuuäiÔ©G’‹#,Ô£ÈˈúcEEYG²>H¢Ä»¹>¹y³°ä>‚økì,NôyîérÓö™·ÜîJ>É(â—9×W±s¿2± Ç´¼Éu¸¯±˜˜G’ n[8~ðßs™Bë[˜Nv}o ¢Sâ­´$;P©?!þdŒÖˆÑIjæ¸HImUk´ÚŒÛ{ceïv-)ÒºMÅ[ko?r"Ìh‘n¢56 ¹iÕhÑÙuÅÓÊ[l¼£NÔ´Ì…¬’yí3,”|bNI¶å(¼µ+7ÞŽUôR´SYëwKÄ“÷sÇqû×çˆFÝ~*öŸ‘Ûsøϳï4te‹Ã97kóÁmö‹ÿžÈâ˵y{¡­v÷ ¨®Wë.DjÑ+•FÁŸ"ªR⥮m%¿)Ä)9g–ÓËšé‹LD´c}-õÚþâ %wªýZ‹:«r˵K~¨áÛîTÚÓ%Õ䩵—©J6›Iõ†£!O¾Î¦©å¶Z Ã6XèF:ãñÉŽºê_Qq1ÜŽ•¼ò‰—T¥8ÑŒÉ Rù£Rx ÏiŸ¾¤¬—>K5¨¬ªîÞVÍäõ›=…œçZþÆÃüÒFÇ—´üÍ5*ìG-¬<&ö{Ã#­v%¨ÂUp«×?|z‘-å‡aÅ©Q)óê˜i¸†Ò3©J¨Ï×+f{â#E%¬õÒ"IHÅ=zÎ2iMߢ£½îÅzJú+µ·÷[\µáÑ™§Ûv}V˜’‡™%3X†¥d¢4¡™+Q•³%²!úÂéÊW”¢òyz­÷¡[EFÑ‹Z³Í/Ü܉Ïú{B_¾€ÝNOÞ˜?¹š˜2€žîÏçJ“ì“šp]îOû?z+1üUÛ÷35F¨¢ }ÜßÐÚÕíw>àÅn‡+.ß¹\/v}äÞ+É`Týñ?®·þbïùç¯ñ1å'õ>$€;t3^µÉ4ü={Èä”)Ò‰&ËG¥_¦Já$pdFG·„„Ì'9hdýo¸‰‹ÎGO5ê¿2@Ã(×4¦Ýº°~£%Ĩ4»yš=.!eú•)®K½-®'>‘Ñ:úI®Ù9I÷Y#5oצ×T#ãvÍH²¢± +E冢0†éΙД‘*4š‹4pF~¸Ë×mɶô³×´ÕPŠŒRKG.+ÖŽL8€…Dè­bûpÀƒ¬¹){PûÈ³?¸á·<ÆÒì“{ÖÄÈüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒvª½‹´‹z£"›"<•:Ê’•“Nj"2ÈÍEÓiá%5uc„«(»“k'•—ˆŒ¾ø„w:ðx¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >Åïw©‘íÊûµ¶ÍÊb KTÔ'…Q‰¥¤Yqšs"õGê7º¶»«vß#ä­g}Vw챞ö\ùV¼Úd×­»âuj£Kz–‰ò©ò<%8¶ ´¡µ¶Þ…¼Ffœ‹nÑ¥­5%x+4ê4šÔþ{9̽(8½ŽéªI´õ¯ ¶óïså½P·-ÉU¨õ|ù5 å9V–Ä©³^x’kâ£~†œòÒ”$Tãf¤Ö‹M(Ù(¦’WÕŸyq‚ƒŠ–’i¹]¹4ÛË«RZ‘âÅ—‹5{ŽdÈI5+_S{Õ‹WjPJt/SÎ0­ðÍY™ú†:áªÒŒm%igë8é.¬®¾óŽ*•YJñ~®^ª’Œºó³8Fç Ö¼ë1«ÖMr™rK•1ê<ÚÊ]˜¤Ów”æÏ&ï‹lÜ,—«ƒQ|BV.ntÖŒ¢Ò^º«ž“³¶ËX‰„‚…W¥&ߨåëYh毪÷¿y~|ÑpÈ=,Ÿa®/ÎA§ÉKÚ‡û±ùëfî§ݯç%µÛÏ~dÇMÈãK³ï>Û÷Ö4Å l–ô>´»AŸêÆÊKµš|7vÝ»C£ ÕÖÓþÐÚnW#›2¥Ê¿w’8ÖÝ–IØõÛ>ð™U‡É•xU6^¦CjIå‡4¨uYšóÙŸï^œôã8Yè©+6Ö¶Ÿ2{4' ÂwZZ9¥}WÚËL¿°âêÄ:…ßo9sͬȥLaªqS"¥£KtÊ¥šù'QPg÷öª +¤á-ݽ'Ï=-›r-!ZœêFKI´’KEghÛiA(›'S»b?ç4rÔû>â†×oÞkðŒ±®*½ïUìýËIfƧ̌T„)0PË„ëISûá’̸OŒ¶‹2Þ’–…Þ¤ôµ½ZŠ|Dg(iÙZíhêZõÜåXMxȺê‰wñ×ÓáÃvŠt× .+$>“YêZ6fDe·„~kÒÐ\[g¯Jþãõ…¬êK¥•í¡£ï.þóÄçj»ß$Pc¸¾òû¯Ü[áDY×?t·FÌOíèÿlzV‘‡cógâùiö¯#›n½h6Å:ô§Õ¯vœš³0‰Sƒ Ù2L¼§m;ÎJN²Èš,ýQËJU4m-6âÚKU¹É8:Šž•ÞãdÒ»×~bÃÞ˜“j×cQYF>Üt¢‡¸©ªæ¹=ôšR]2R3qi4¤ó5I-¢® EÉïQwwKN9e«¿?ye*ñj+|’²³z2Ï7Ÿv^ã6ëoô¬Ö/d³,E·%ÜÏ„i¡ÍÍ«#9WŸŸ^yØ+rA|5ö'z<ët¹iûLÝîw%d”qKœë«Ø¹ß™X‹†ãÇÚ^dºÜWØÌKÏ&ÿãõ†ûœÊM¢Ô¢À§©ÊeÚÑ.;&“+¦+(Qh, [¤dž‘qÁœœ““ÎßóÍ·¯°¸„^ŠÊZ—ç$ˆ_cHb(ßZl÷2:¥mŠ’˜ýBZZÓ3Øe°LÁ´Ûâê惙òç×Ï$Îu¸«ž;Øö¿×­Ý÷›1…œçZþÆÃüÒFÇ—´üÍ-*ìG-¬<&ö{Ã#­v%¨ÂUp«×?|z‘/-™G¨·nÑ:eÔ–œŠÑ¡Æ.XÑc¬Œ‹kM¸âM)>$ñ¡¯%¦Õᯞ ¿"ÒŒ^Šv—ºI#‚ã\Y,Ûí)èõÖÓÉM*¥_Pc<•°šiÅ+WIYd[zc®­?ÍÔõAÅ÷´|®ž‹ãsk’k^ÃÓ܉Ïú{B_¾ûÝNOÞÆîf¦  §»³ùÒ¤û$ßæœ{“Ç~ÏÞŠÌvýÌÍQª(€_w7ô6µ{]ßϸ1[¡ÊË·îF— Ä]Ÿy7ŠòX?D¼Oë­ÿ€»þyÃëüELyIýO„çC‰ ÝkVîÛeˆtxR*-7P†ýN™QÅ‘P§6£ß£¶îiÈÕ™Z‹Qœö‰˜J‘„ï-ŽÎ×IÛ'n¢2œªA¨ëººNÍÆù«ó\«•[2ЬÕM¡nn¸¡Õw¥¦,‚Žˆü²mØRs"B²3>kapµU&³u£nÛøX¨t鼕_²Þ7/e•OªÒmê*좗T +3S_#̆җžEžj#ÛÇÂ)±Œç'“nÝ…Þ„"§œ’WçÌäâ9 8TNŠÖ/±wü:Ë’—µ¼ŽùX{3ûŽ»sÌm.É7½lHÜÎ÷7C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`£øŸÏeS²5Þ$h°ÜDUÖã2ìÅózÄûÄ3ÏYfŽ¼ž)/F©¾ÅS;ÕFÜ.E{LóÞ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ƯJ}:«o×!Uäò5>LLËQ'zŽ¶Ô—©DdZRfy™Üš¶ÕnÛŸ™+¦ž«?#6kèêTVêô¼@Ä‹ª +(ó)Šuq¢4h&Õ½Êu†ÚBM$I3%e–E‘4]I;8S‹›üì›Îú¯w™•œiEz³«% Z7iemvId]¼Ym9ãÓÆ\zRÞe7 E©ó…!LÖÉP“Û’8KiŸ§Ç5¤’ÑÉYèÅ¥{õë.° è¶ô³i­9);[«Qb-¢Ô1fE¶Jkwšã*4«qb8Æõ¶TieÅ“‡Íù\„¬< ã 'mîMµ¢ÝÓ•õ¢6"5#)èÆê¤ROI+5jg- É¼nËûeVíf¨‘­øuHï)UÈs}Çâ%¢É–W¯a Ìó#Ë<Ï,‡É(B5•ôÒ·ª×çßX‹©9SRŽŽƒwzqwõu,Ë|)K°¢Å“ì5ÅùÈ#´ù){Pÿv#ÿ=cìÏýÔãÛµü䶻yï̘é¹iv}çÝÐÔ»~ã:Ƙ¤ ’À~‡Ö—h3ýXÃãyIv³O†â.÷htaººÚÁMÊäcïófCt¹WîòGÊÀÌ9…|Bª½/«÷:£¾Òí{PÁ)f‡ íªQð‘–̇\ewJÖ”c{ñ“wî9ái*—¼e+[ŠÒ·ydmü;k _—_¤`ßSg´—¥UáºÃh~;-kA’R£=›v +šµ÷å¢êÂÎÚ¢ùše*;ÓRTçuô‘´]“©ÅŸïÄÎ$i¥©ö}Å5®Õækì1–5ÅT½ì˜Ô—ªp*wå:—kÕª>9̓!-¢k‹5%n2—u‘›kRKa¤Ì‹g±£Vöõ[”U“Zº®º®Sâ(ÛI9¨ÆnòO_5ìúì}|:¹`_7ÕF­°UâBz8¡Ó^bx†êVirC„D㧒H‰;ˆò ©Nš³m7v®Þz£R5jÝ;¨Å¨¥d²ÖßfEõÀÞxœíW{äŒö;‹ï4}~âß +"ȹû¥º6boGø;cÒ°Œ;›<ïËOµyÇsµ^ )Ûœ‘R§Ò+ÏÄaj­V6ý ++„îo%JSn!•¸Že)&DdeÂcž:.IdÚÒõ’vm[Ç=h‹w²z>«jé;óüË)î»à;¿ân+Zµ»e)w“i¨v5FD¶Í[ÜvØŽ•%ÅZW©:Oh©(5jtæ¥Ììãgµ¶ËHÔš~¼àãuutî¹Õ¬fTÐqæ›i4 Ðé¡&y™'#ÈŒø̈iáÍ~£9U§{jÎ݇`ÍÈ}ð×ØXèó­Òå§í3w¹Ü”}’QÅ.s®¯bç~eb.iy’ëq_c10$åžÎ¼7ÜæP½ÖÍÚ=.¦âCU†Üeµ¦š©4Óe’RHôª pÓ—’P\C?VzRv…³~µ¥þê‘mJ6KÖæÕu÷¶7Æ€EDzL%¸¤©ÊeM‰o=’x]j>M¶\y’vžÌÄÌy¦äòÔâÒïyœ1¶I.´Ó}È“wsÇqû×çˆFÝ~*öŸ‘Ûsøϳï4te‹Ã97kóÁmö‹ÿžÈâ˵y{¡­v6Q¤V«Ž7îM²¦£©Ã˜§·£ZIi#m&kAžyäg–ÁgŠ–Œn㥞«\ƒE^ZíÖZyÑiÛñæ¢v8¤é'êµ:4>köDq‰Oúë31L›Ö¯f3~vE›KžÒíq_‰C«m“S'¡-6Ñ%爛eÍñ¤(ù”/3Ô’à#Ïimnév-y2¦¢³}¼Ù£h0³œë_ØØšHÂâxòöŸ™§£Å]ˆåµç„ÞÀïxc„u®Ó¤µJ®zçïC2%ÓÃÊðhÙR1!·˜}”-4nH€hdŒ³Ð¿RPeÁÌ·˜£ÄNòkC5ùÖ—ûªûË:´o¥õrûÎq©Ê§1"»D„²y´.\¤YÝÌ•åãÄ$¶I>Q'fÎ Çl#zVr“ÉäâÒï–gæºVÔ¹³º¿r=Èœÿ§´%ûè Ôäýèùãû™©ƒ h)îìþt©>É7ù§Þäñß³÷¢³Å]¿s3TjŠ ×ÝÍý ­^×wóî Vèr²íû‘¥ÂñgÞMâ¼–AÑ/úëà.ÿžpúÿSRSá9ÐâH¬{©ªP)ô+]º¬ `˸ Æ’Ô5ÉL­éhsQ°QC‹sg2œÌ¤bËsâÜÝš„š½­uÛÌV`®®œà¯{7Ík;ì eSppÈËì7Œ»^»ô¢ÇJ¯JŸ|>Ef^êŸ2÷Ùh„ÝŒškX†˜Œv¦…% KJ^'LÖK"òÚV|;E{é;Ú÷ÎÖ·BÚ+Fé[$ï}ó90àv¢µ‹ì]Áÿ²ä¥íCï#¾VÌþã„nÜóK²Mï[7#ó½ÇÍÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø(þ'óÙTìw‰,7u¸Ì»1|Åž±>ñ óÖY£¯'ŠKѪo±TÎõcÑ· ‘^Ó<ãw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >Ç/)p P+rj0•:0¤¹&*PKS쥵Û$Ÿ–5'2Ë1ú‚»]«Ìù-O±ù€‹ q$úE£l^´vå²lɧÒêñZem™ð. ¹ŠNYôEÒ­î¥;9J³M9E¼ûR2;í*—Œ#8Þé¨É/"ûà3·;–ÚÑu.¦¹,É[q•W‡$³Š”'F¤ÅqÆÖ\$KÌŒúB£¤œmšÏE¶¯~´¬_`tÔZ––Mhé$­ÔÝʯ‹xoqUî|E–œ%¨\s*'4 +óY:i5)I²•8JN—³Qå–b~´c­59i+^éËå‘BRœÞƒã{Y¨üó93C·nª)ünÜ®®亻õxr¥:ãlæú¤8§ŒÝ<õ[3Û°}Å78É©Þ9zª-+]YlÈüá§(©BÒé9&ï¢îíûk/€Ïš¢Å“ì5ÅùÈ#´ù){Pÿv#ÿ=cìÏýÔãÛµü䶻yï̘é¹iv}çÝÐÔ»~ã:Ƙ¤ ’À~‡Ö—h3ýXÃãyIv³O†â.÷htaººÚÁMÊäcïófCt¹WîòG©vŒ:东 T®™TÉ0ÙnƒMšìSSO!Å*[ü›«m’FI.Úy˜Ú®.1ºŠ–•äÕÒµ²Ï+»ŸŒ%5='g-z©Ù»óö"Z‹oAĈµXó0¢±d3é>>"©PäXëa•8„ÈDÂJ—’FDz³VÁstsU#<׫£»´²¶dèAVz.:ýe)e—=ò(ÝõN§r#þq#A-O±”pÖ»W™¬ga8¤š½¥’Vz¬ºÉ8&âÚN2‹mÝ;;¾­…îÀÞxœíW{äŒö;‹ï/ðúýžEs÷KtlÄþÞðvÇ¥`9v?6yÞ/–Ÿjò9ž ]¶Å½kâ4+šÕQPf”LÒ›’äg¦2µhq¤¨Ë{,–­œ–2œ¦à㕤óµí—ì‰8IÆ +zYÞ)Zö¿¬ÆîÌ*y‡d³ƒ2Þd·‘pKSh?éK&M%÷Ì|tª¯ç¢Ïè/™õT¥ûÛûOäVJ±¥Qæ© Ò“C¦”çž”™EŸE³>1ikõµlÓ·YØ3rA|5ö'z<çt¹iûLÝîw%d”qKœë«Ø¹ß™X‹†ãÇÚ^dºÜWØÌKÏ&ó.OõCÎeK«*Ë®[¨ƒÕÊ5RCˆâªÛ%ù/:Ê\uG¾¼$JQ¤ˆ’Yd(·èͽ9Ê/I«+¤’vZ‘f©¸¥£ïÛvÖóçdg‹v«(4jÅNÙ‡oÕÝ™"+Ñ ©Ëì%´­·w´8á!Dy¤ò=½!# VòqŒœ–óæwÛdr­Ví$ïl¹Õ‰+qWóGFX¼3“v¿<ßh¿ùá¨ÜŽ,»W‘Gº×a`µ¶ÅÅS«)t†ªò S^•î‘'|m´óRs$’ÍYj,ò8ºŽVv¼’obçò!áà¥,óÉ»uÛ"r¤ÛwmBt8µ¼&·“NyæÛ’¦XŒÃ²µ-hq5¤ŒÌo¯”à–U%{e›y÷4eÏø|ʇtSÙ¤Ukc¯S1eIe¥çšZ’“Ïa¸£78Žm&@­ 4¹›6[ 9εý‡ù¤Œ>'/iùšZLö÷"sþžÐ—ï 7S“÷£æîf¦  §»³ùÒ¤û$ßæœ{“Ç~ÏÞŠÌvýÌÍQª(€_w7ô6µ{]ßϸ1[¡ÊË·îF— Ä]Ÿy7ŠòX?D¼Oë­ÿ€»þyÃëüELyIýO„çC‰ ÇÆëÈ¡S§Û6£7RŸR.;/)_¥TÙ+ôÒK­«o=ˆÖDyú‚fÚ^³ÑM4ßo7>²-7V:M4Òë\üÚŠkscÏ6·nS®ìN¬[q¥Ë[5Xí[ê ¦$siJK©”öÿ«7 (Ì”yçꋺxXY¸ÁJÉÙéé]å••Š*¸©Ý)ÎQ¼’iCFË<îîhÕ¦Ô6(´¦éÕÔ¢&3$ÄÇä…ÉoIiuNþ¸k-¦®>ž¬Þ“º³¾«ZÞãIFÊ*ÏI[&Ýïï9âu¢µ‹ì]Áÿ²ä¥íCï#¾VÌþã„nÜóK²Mï[7#ó½ÇÍÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø ë£Îä«J©øë¼ïêB·½çVZH‹‡Qt…,f„mm]dYÐÒw¹6´íFyé"/ÀB½æJ:ðø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ)Ðê½Ù)¿Œ?xQ{þGÇroêüHõóEõÇïŽÇéž >ñî)tª“ôxè“Pj3ˆÇ¥ÈJ ÛB2È”¬ˆÏ2õÇê9¼õ]_°øî–Zí‘œ÷%©Œ˜š‚Eõ`¸ófffÍ4HÊIdÊL‡“ê™~¨ÑÂthñ%ߦü‘˜« +õ¸ðËè¨/]–ûså¨ve®ºiÛU +"SŠLZ•U57”F”þˆN£™JO-ˆ""##<¶Š¼u]òIé)eÍ~½e¾–÷´\sZä¥|ºµ†-`¥÷uܬjâk4Iêß‘U›Im)"RIØ™¥ÂY‘Ÿ6E–|#® +q³VwãYKÁœqxYÕ•Ô¯qt¥«lN;¹ÆÊsî*´*¾»E™Q›2L +«FÌøÑ"o.E9„£t³4«,ȉF¬„Œe]ö +Ó¾Šõ“¼[zM§mY&»ˆØ*;ÌÞ•;iKÕi©$´Rjúói÷—ŒPš¢Å“ì5ÅùÈ#´ù){Pÿv#ÿ=cìÏýÔãÛµü䶻yï̘é¹iv}çÝÐÔ»~ã:Ƙ¤ ’À~‡Ö—h3ýXÃãyIv³O†â.÷htaººÚÁMÊäcïófCt¹WîòG³ƒ6Õ ëà¸ç]J´j0«#F®2Ô—^KnÆujŒIŒ´¨‰fZŒÏaiõGÜeI)Æ)i'Þ9+Ù¬óØ0RŒÛz..6–y^û6žõÜÍ槼ÍWtlªÂBœn$šmIm¸âHÍ)ÉnšHÌö™láééAÝQK­J?#¤ôf¬ê·ÕiRŒyϧæY~™ùÄ‹yj}Œ«ŽµÚ¼Í`>—5ÅÄ[–a×jQ“ŠœËo8Ÿã±-¥ÇÈüÍNÂeÃ3Oܦ-ððZ)è}k¯½£?Š¨Ôšß>ªOÎ)œ³¡EñêtÄaôÊSëadu©/ÉZdšC$ÊJÍežyq˜¦ôm¤žkÕI}×?X$œ¯ Ö¿Y¹ut’4[yâsµ]ï’38î/¼Óaõû‹|(‹ :çî–èÙ‰ý½àíJÀr0ì~ló¼_->Õärl»évëW}6]À›jufQ¡V×å"1%ÝO´¤ I'Ðzu$³,²Œm'QFËI)]Æöº·Ý¬ï„¨©·wfãe+^Îÿ²'{cm«f«L¡Ò/nA²-jv÷&!ÂYªè’ú\ä¯Ð´Ÿš(É$n™hNFBº®U#)JœÝ£Ÿ-YøäO¥^4ÜcZ1ÎNÜfÞjÝ™fgÍYH\yªmhxÒŒóÒ“ÌÉ9ú…°ha•¯ÔPÖiݬ–yuƒ7!ôÃ_abw£Î·K–Ÿ´ÍÞçrQöIG¹Îº½‹ù•ˆ¸n<}¥æK­Å}ŒÄÂ3$[O-ƒ|eKinÚ8|ü(k¢;à©) ©øÕjÒé„•™¤¡­í²#þ(yŠŠ•j&ïxÆù8ÇK.ÿ¸ŸA¬³vÔÞŽgÝ OŸEžÜ­¨”Ê nçN“:H¥fÚuŸ%(Öe·a™tòp2SWrnYÝ7«=‡ÜTtrI(åšÛm§?ÜUÏÇì{_ž!Ãuø«Ú~GMÏã>ϼÑÑ–/ äݯÏ·Ú/þxj7#‹.ÕäQØVü6§Zõ:ªÚ»jSá*SkdÍ;ãÄe¥µ,á¡&Yæ­'À-«ÊQ¨®ï©ìð RQoÖvE«£Úø´ÊäËNТÕeGi…ÓñØêî¾¥8Dî¶\SZMæ²Ð[x€RÔ«+¥9I]úÞ®ŠJÛUùË(SŽz)<²õ¯ŸfE!¬ªBæOT¶w™ë¦óDì›sQêNÔä{2âàôíelÕ•ž²®¥îï“çZ ÂÎs­caþi# ‰ãËÚ~fžv#–Ö?ž{½áŽÖ»N’Ôa)ð«×?|z‘,Ý›kX))šµqm%O@©Õ×Jeñ¡4D²Ïø®Þ«­R¢–«GjŽ“óû‰Ô¡³ÍìoEyÆ>ÒgÐb@‰ +ÔƒN¡-¸nrd6Òî©ŠlÍÆŽVµ‰*ÔD[5g´sÁÍNM¹7$Ý“Ë-¶:b"㢒i]¬ó¾«ž=Èœÿ§´%ûè­Ôäýèüàxþæj`È +{»?*O²MþiÁw¹¿ÄTÇ”ŸÔøNt8’ \~ºª–l;F©OäóŽÕÁÇ$S£®CÎ@Òẓm²5)'‘fEêm°pS“NÜIZù-+dAÆÍÂ)«ñá{kѾdÑ TW‰Qªô«–T)ªÓn²í·%IJÙÂТ4›\Æoíæ³>>2X'£8é+é=5ÒËÀ‡rrÔ´^ŽŠÐ}üK=‚,ʇ¶SSš[RQH‚O6â7µ¥Âi:‰HÈ´™ dYxæY[V“&`/½FúíÙÎÉDA'Ѥ˄Œ€ú |áQ:+X¾ÅÜð ë.J^Ô>ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzgÝ*¢N×ÌÏ"')»O·ãÞ”_[ád|&þ¯Äšô¶7ÅþŽß–?×ÓõÇ{¦Ï%±ü=¿lOÎgËŽKcø{~ØŸœ,ÅÇ%±ü=¿lOÎbã’Øþ߶'ç 1qÉloÛ󅘸ä¶?‡·í‰ùÂÌ\r[ÃÛöÄüáf.9-ºöÄüáf.9-áíûb~p³–Çðöý±?8Y‹ŽKcø{~ØŸœ,ÅÇ%±ü=¿lOÎbç§<Û˜³d’JÆk‹Ê¨õÈ=#f¿r—µ÷b?óÖ>ÌÿÝO‡»_ÎKk·žüÉŽ›‘Æ—gÞ}Ý K·î3¬iŠ@Ù,è}ivƒ?ÕŒ>7”—k4øn"ì3töæœHÄ J¸+Ô påÓå&2÷%GoV÷´+™[„¢ÉDe´†—sñôéSQ“³Wæ{{ î;R¥G(«¬¹Ö +Nä,hK Š›aÒak'ÑTcojZHÈ”iß²5‘Y‘ £¯KÁüˆ\WU¼WÌõùM±ƒ©îèŸJ>𥗃ù8:¯GÅ|Ïv›¸ï˜™ ÕÚFHmöV£äØ›•‘™ù¯H‡æ[§FÜoò?QÜú©ñy×:ùšxOugçQûs^ ô¸mðfy–ÃÀÆÜ‘Tµ1DCJYš”¤-„šŒøLÌ”Fgë¾—Ïæ|Tæò<ç…b¸ifäf¼1óÒ¡·ÁŸw™VXµËr´¹U;Ë'Ä·Ä+š3I‘d•ñxªñœlŸ9Þ7™dEI4 =ݹ›®º£ý ×ð….—ƒù‰=ž(æŒGVöÌýyQþ8B—KÁü‡¢OgŠ=¥nuŲˆÊ¡º¦Pf¤4sY4$Ïa™$ÝÈÖ=>–»ø?‘÷Ñg³ÅSrî]X}Z­J¯ÒÎ#2!¶ÓJ7šsRÉÝFY6¥l銭ÑÄ´R‹½žÇ°ƒ¡*mÝshP¥'ÝI…7V Ö(r­úYÌjò‰=ž(þ_ÜÛ‰o›‹]¼µ­yš”©qÍJQð™™»´Ì>’çð ð“|Þ(Ôk™&mP`Lo{‘ fFdzV†ÒJ,ÈÌ#.!‘¯%)6µ6Í5h¤ö#‘Tš[ñ%6Ùfµ´âR]34™å™ûzŒ–=Í8‘™ÿ9Ãá?ߨý>È6|!K¥àþFsÑ'³ÅÉîhÄsá¶Ìÿ’£ý p…>—ƒùDžÏ{%¹× ƒŠT7IƒQ+yäÖw½EÀz7ܳ.žCç§Ò½ïàþGßDžÏN[œpjñ±¯Ôëts‹ä5¾o쯛Y§"É 3Û‘ñ +ü~.ah»»®fKÂáå ]®bþŒÙpOwgó¥IöI¿Í8.÷'ŽýŸ½˜þ*íû™š£TQ¾îoèmjö»¿Ÿpb·C•—oÜ.ˆ»>òoä°* ~‰xŸ×[ÿ1wüó‡×øŠ˜ò“úŸ ·@sÝ5]ŸE·(íŨÕ)Ñ'V"EªJ£2ã“Ú€¤­Nï;ÒT¤™šHµfB~ +SÎÎÑ“IêÒæ¹7dÚ¼¢›ZÔ^»u”þ%ÙI¨Ôª´ª¾"bRmºzcãĜܷ Ôš¤—‘|Y6¢"F¬¶ºÞÚŠ’…=&Úy«Yj²¾½¥¨œ´têè$š×}+»¦í«U»M²ÕíšB©.Ê~? ´q\¨ù)Äï|ÁÈ7H—­[5ê"<óÌgqÒwµï©ZÞëL=´®Õµ½~û”vê¼ñ¢;uE^ŽVíÄ!‡ÎZ´Hóâ­Ä¥[Ù;+}}ôj<³=í$EÀ.aN½KIóéÉÇÂÉx”Õ*ÖMééEshEK½ÝµÜLû”¥[•+ms©×,úÍqö¢ª½ãŒÇß~4Í*3k{x“½$”j"$§#Ë„ò÷IJ2µ’Þ’ÏW:ÖvÜÉFQ¾“s²ÒM¼³|̵œºáQ:+X¾ÅÜð ë.J^Ô>ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø,æänˆ-{3ýö*·O“÷¯¼Ÿãû™ïçã‹åÎPÕï.j0H8€=±<Òg¬êÄjüÇzg ¼Š„tZ\ÍÆ]'{.KL´%l5ZÒ¢22Ï..‡ +ZZKF÷涳÷QE§¥ksßQ\·ÍÏrÛ=Ê×€--ˆú}ì®Ð¡²=Èý%îy>¶Ñÿ"5à±O½ +#Ü›.·¹¦|’å¤Î\$ãQÒ€Ó˜ý(b^­?ñ'‡Ž½ÃäÜÉ8ò"ÐpúIDc?Á¤å¶{‘¯-ˆú}ìhPÙä7ÍÏrÛ=È×€Ä}>ö4(lræç¹mžäkÀ b>Ÿ{6G¹ ósÇܶÏr5à±O½ +#܆ù¹ãî[g¹ðاÞÆ… ‘îGÜ·n¬´fxáE~O—½©­þ3-´îö³#Ru%y¤³,ò<‹¤9ΕzŠÒÒkc:AѦïö¤ˆ3u~"ÛW­&‚Å +³{ŒKun¥•ê4$Ú2#=1c¹”%I½$Õ×?iV3JÎù”x_•@¨ø=ŒvMʶ©õ –yQá¶Û­-Ì”…–y‘–\#%‹ÂTI5Óf‚…xÆ)6µO“Öõ[Ûæ= +§E÷ý&PòzÃÞ«`ûaüÁèU:/¸zL6¡äõ‡½VÁöÃùƒÐªt_pô˜mCÉëz­ƒí‡ó¡Tè¾áé0Ú‡“Öõ[ÛæB©Ñ}ÃÒaµ'¬=궶̅S¢û‡¤ÃjOX{Õll?˜= +§E÷I†Ô<ž°÷ªØ>Ø0zN‹î“ ¨y=aïU°}°þ`ô*Ü=&PòzÃÞ«`ûaüÁèU:/¸zL6¡äõ‡½VÁöÃùƒÐªt_pô˜mCÉëz­ƒí‡ó¡Tè¾áé0Ú‡“Öõ[ÛæB©Ñ}ÃÒaµ'¬=궶̅S¢û‡¤ÃjOX{Õll?˜= +§E÷I†Ô<ž°÷ªØ>Ø0zN‹î“ ¨y=aïU°}°þ`ô*Ü=&PòzÃÞ«`ûaüÁèU:/¸zL6¡äõ‡½VÁöÃùƒÐªt_pô˜mCÉëz­ƒí‡ó¡Tè¾áé0Ú‡“Öõ[ÛæB©Ñ}ÃÒaµ'¬=궶̅S¢û‡¤ÃjOX{Õll?˜= +§E÷I†Ô<ž°÷ªØ>Ø0zN‹î“ ¨y=aïU°}°þ`ô*Ü=&PòzÃÞ«`ûaüÁèU:/¸zL6¡äõ‡½VÁöÃùƒÐªt_pô˜mCÉëz­ƒí‡ó¡Tè¾áé0Ú‡“Öõ[ÛæB©Ñ}ÃÒaµ'¬=궶̅S¢û‡¤ÃjOX{Õll?˜= +§E÷I†Ô<ž°÷ªØ>Ø0zN‹î“ ¨y=aïU°}°þ`ô*Ü=&PòzÃÞ«`ûaüÁèU:/¸zL6¡äõ‡½VÁöÃùƒÐªt_pô˜mCÉëz­ƒí‡ó¡Tè¾áé0ڊú£m{ÒڦġÖãN}¹èqm²½J$k#QìàÌÈ[nntäÜ“Ysö¢2´g“¾e "œ5÷sCkWµÝüûƒº¬»~äip¼EÙ÷“x¯%€PcôKÄþºßø‹¿çœ>¿ÄTÇ”ŸÔøNt8’ ­Ðþ?¬ÏŒŠª&?'Äñà臕OƬÕÉ—5«Ê秚ӞBfGOÖ¶§kêÒ¶Wê!ã4´…ïu{kѾvë±ÞxÅeÝöå6ߡ;¼t¦¶EJñ¾E™Ë’†Í¶¹!×IpŒò×¾¤ö™‹aªFNv§ž»¸èÛ³˜®ž&œ  LµYKJý¼úË{lyV¥4î/˜×'2þ~o¢e§fzú\|§£§--Ý» |.–„tøÖWí)u»‰˜…I¥á„I6uì¹4y/*âp©®/“™SN¥ %³w%©'·. ø…ÔèÓ”¦ô¡gE]e,³ó(¡^¤cãRñäìóÞWçæ'<©V.+Ç«³mú½Ÿ54tÁf­â­FË+KÆ„™mVÓ2=¹æb"*ãâÞ”›ÑwÊѱa‡œªT”œe£´•³NW,p¬,À8TNŠÖ/±wü:Ë’—µ¼ŽùX{3ûŽ»sÌm.É7½lHÜÎ÷7C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`®W–.V-êÜÚlxñ”Ó+BRkJÍFJIç’ˆ¸Åµ,gÝÈs¬âìX†Vn6ÚÏ…I#ü$*š&x¼R^S}Š¦w«¸\Šö™æû½Ë}TP‘¡3§ò®oK/êhCüÊŽUã>×æ{-.*ì^G&Ž ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐçϺÏnËüòÇ¡Sâ®Åäd§­ö¿3àÙø9îâ¡àýÉK­7ÇJ‘—½oÛΞO}¶·ÍZWžŽ9mà̸DlN‹ílöêMŸ¸b7†¯v–½¬Ð»›Ž¡Š¬/ôj¯&o¹ëßä)ï{Ó³,³Õ¨óàÈféPµ-;ë“VìW.¥ˆ½WNÚ¢¥{ív+Ä=Òª—†ÔüAû$œºÊ)<…ÉYéÕ4âo›æ÷·ƒV>¦|bÉà­QÂú£{۪䎽5RÚåk_®Û SÉ(ü“üoØTC¬rnûü_xÞ·½?V¯S!xýÏ|¿çhÛÝrNÿû®÷oÍÒ¿¾Ç n U êØŽVá8lV›£ò%éÏôÿ!o»îôypêÓ§ÔÏŒ~ª`4ª*wüÛÞßFûNQÇèÒu-ùÖµúí°æ›£1XÙ•Zßs)v«õÎNß¼®ó1¶7ëFÜóÏV¢Ëƒ!LJ½ª_UE[ª÷;âñ“§mpr¿cµŒº¹®xœ%Ψ;¥Ì¡ Ú·Ä”—þBá1­„Ý‘AV²¤®Ê‹vbÝråZÐËÇ.|ËL(Ò£/ék,ŒÏÖȽAmO£Öfëc¥SVK¨‹WÍ™©G™Ÿí?Ê$•÷?2.€âÙÄJíª´Yªq’Ë8ï¸Ñ—HˆÏ4ýã!ÆtTÉtqR¥©å±–æÅÄÄs6A–ѽGš‹úROõIõx¸ÅUZN™¤ÃâUe–OôG%€~ôø }ÜßÐÚÕíw>àÅn‡+.ß¹\/v}äÞ+É`Týñ?®·þbïùç¯ñ1å'õ>$€'dÜtøv•BܦTêJƒ_ƒ&tJI¤= ´¸n$ÒJI)&yfFyg–bvGI©4“„’oUÚȃÒÑN7mN ¥®ÉݼT¿Ú‘ˆË“†—³­VÖGGG"'8Hä=äÈÿE-»Íó9ôøD¹á ã§ «Ýß_­uÍ°‡ TÔäÜ*ZZ:*Ú­>}¹–G «Ó0þÙj®—ʬÅ9IL“Rß)Hcš'5™¯QmÌÌÌÄkR©'Wv¶«ÉSŠïlï®÷3†=nO¶ó®+®L˜‚ºœf<ãeèn)j}1HÌÒ…$ÉÙ ’dœö‚»_¹è(ú·júI+_ß{™—7£Ýtܽf“¶‹nö÷ZÅÚÜö»Yώ܃tGpŽ1I;Ÿ’÷Õ7 ™ä§zKn­9m2ÌSc¬´œ-wm lZì^`Üz*iÙqïµê¿‰dEYh¢tV±}‹¸?àAÖ\”½¨}äwÊÃÙŸÜpÛžcivI½ëbFä~w¸ùºÞòL~+€ýcmvó—iûó͹‡u¬N¬QiTšrLz…>¢á:é4žG‡%§23á2OqŽUk*1n\é¯{LøèºÖQÚŸ¹3D. ¯ ª÷‹­¶T©–Ì:sK'HÜ9 ËSª#G “áàÌf©VNŠ‡:›~ëR¢Õg>g½÷¹V)Ø wFÁºM–ähåWq7Rq²’“l£¦¢rLÉ̲3ÞÏ<¸sØ-ž.³Ÿ6…µsèجX9ª*êw×Í{“ŸØ_ɤï}í¿ÎÙ:^ù¾–ûÉ<—¿e½ðéÓú®žÁ ~[·>ýÖ±7y{þùÍ¡o}îFô½Ï×OkV3£aÛ‘ºš9)&¹ÇNJÏ|Ë-[Ùg—O`ïF?™Ém+"Ï=&|)?T2SŽ‹±²§54šç>¨ü_w7ô6µ{]ßϸ1[¡ÊË·îF— Ä]Ÿy7ŠòX?D¼Oë­ÿ€»þyÃëüELyIýO„çC‰ ¹î™D÷íê,xñªò`=Y†Uvhipç9OI-N%Ñ¥DF¢IJ.–bÃm<íÅ•´µi[">ú_9Fú:ôoŠ“MArµZn±ibd‹m¤ÇñŽ"ye-&rµšd¥fF²-–¬‹>på-iRÓ»»õussvÜ£J:Nñ«¡eeëq¹ùõY.}¦‹ÙÍEfÛ¤·I‰"tÂh¢Çš•†S£˜Cäµ)ZÓ³QŒóÏhÏW»“»MßZÕî4¸{(«&•µ=~û”rð¦ão!TŠòzæ¨ Ñ ™û ˜¤£J·£[$Ú%h#ËQjVÌö‹Šr£–†ŠÖÅ'øµc_==&¿­n+ñ&MÊ¥l5C}šlZ‹ƒöEã¢&&J¥š’³–gšLõiÑÌå÷‡ÑÒnùh]èÚÖæÙ÷·1E.}=§¥{ë{~âÕ +bè…Dè­bûpÀƒ¬¹){PûÈ³?¸á·<ÆÒì“{ÖÄÈüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒv +?‰üöU;#]âF‹ ÄE]n3.Ì_1g¬O¼C<õ–hëÉâ’ôj›ìU3½XômÂäW´Ï8Ýî[ꢄ ?•p;zY|ïP{BæP«üæ=c•ûú“‡øážS¤Ç¢Ãb¯ØwÔœ?À¿=:§IE†ÄU-Õ˜olØôš ô3~[­º¦‰Y­$Ñ™ægÆ.w3*­é6ì¾ò»J0JÊÙ”ˆ_@¨8?‚Ö=~˶ê5n,‰Ra¶ãά•©k<ó3É\#'‹ÅԄ䔚I—ô0ñ”Sk˜’y_°ï©8~‰éÕ:Lïè°Ø‡+öõ'ð/ÂN©ÒcÑa±Wì;êNà_„S¤Ç¢Ãb¯ØwÔœ?À¿=:§IE†Ä9_°ï©8~zuN“‹ ˆr¿aßRpÿü ôê&=å~þ¤áþøAéÕ:Lz,6!Êý‡}IÃü ðƒÓªt˜ôXlC•ûú“‡øá§Té1è°Ø‡+öõ'ð/ÂN©ÒcÑa±Wì;êNà_„S¤Ç¢Ãb¯ØwÔœ?À¿=:§IE†Ä9_°ï©8~zuN“‹ ˆr¿aßRpÿü ôê&=å~þ¤áþøAéÕ:Lz,6!Êý‡}IÃü ðƒÓªt˜ôXlC•ûú“‡øá§Té1è°Ø‡+öõ'ð/ÂN©ÒcÑa±Wì;êNà_„S¤Ç¢Ãb¯ØwÔœ?À¿=:§IE†Ä9_°ï©8~zuN“‹ ˆr¿aßRpÿü ôê&=å~þ¤áþøAéÕ:Lz,6!Êý‡}IÃü ðƒÓªt˜ôXlC•ûú“‡øá§Té1è°Ø‡+öõ'ð/ÂN©ÒcÑa±Wì;êNà_„S¤Ç¢Ãb¯ØwÔœ?À¿=:§IE†Ä9_°ï©8~zuN“‹ ˆr¿aßRpÿü ôê&=å~þ¤áþøAéÕ:Lz,6!Êý‡}IÃü ðƒÓªt˜ôXlC•ûú“‡øá§Té1è°Ø‡+öõ'ð/ÂN©ÒcÑa±Wì;êNà_„S¤Ç¢Ãb¯ØwÔœ?À¿=:§IE†Ä~çì;?è§ð/ÂN©ÒcÑa±Üû‡eýáþøAéÕ:Lz,6#÷•ûú“‡øá§Té1è°Ø‰2…BlÀL¥ÅDX‘ÈÒÓ(ÏJÌÔdY™ñ™˜‰9¹»¼Û$F**ËQõ‡àýP£ž%â~EÇoüÅßóÎ_â*cÊOê|':Ò}!Ä’4ŸHÒ} Iô€ 'Ò4ŸHÒ} Iô€¤J. Èýf¾™þQðÎGÒ1ô Œ¸Œ2R3#3éñ€?4ŸHÒ} Iô€ 'Ò4ŸHÒ} Iô€ 'Òp¨¤eŠÖ.eýÜð ë.J^Ô>ò3åaìÏî8>íÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€‚U0ÚÞ­KvtÈ&ãî™Õ¾¸Y™l%q 1ÄJ*Éärt“Ìç(I!)Il"""õˆF:wüR^S}Š¦w«¸\Šö™æû½Ë}TP‘¡3§ò®oK/êhCüÊŽUã>×æ{-.*ì^G&Ž ÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ.¾?ŸŒv/”bm ^ò=C† ç¶'šLõ‘ýX_˜ïLãÛ¢¬ùö_4ˆ×&e*RXGB7Ä$½SRH‡Ü]ê¤dù¤Ž8Ún­9EkqvíÖuNÈÓ±Dde°ÈË##.2õ­DÕÑôË*8Åφ‹;¨÷-'~mTfPؘó‹×ͤÝ[‰Q’U°‹-œ‡N~¼Ü]–JMežeþ}ÑzŒ–“ÍÇK;,‹g7W5j™K»7:Û%C–ûlÔVå +42j2ÔDë¤ñ˱UäìéA¦×æ%ãs.ñ:—G¢ÞM>ߤũÎf „½d¨Í¼¤¶d¯Õ’,„iðs”éÅÏ[Šo›;Œl# +’PÔ¤íÞpq,„vñ6ìçmœPɶår¡2zuF¦HÒÃg‘ñ4fGÆFF<ãw*éÖ·E%÷ýç¥n- +7é6þ︿£ò«t5.߸α¦)d°¡õ¥Ú ÿV0øÞR]¬Óḋ°–„"HÕÉ6½ÑYŸ_’ªŒyÓ’Âd®R\D:Qѽ¶jC.¥9¥;3Ë1:ž2PŠŠµ•íx§¯µ§„ŒÛ–wv½¤Ö®Æ|žWWîêïí‚¡ôã÷éóú?b?#óèQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/˜åqµ~î®þØ*NŸ?£ö#ò…²ûrùŽWWîêïí‚¡ôáéóú?b?!èQÛ/·/™÷-\¶m +Ìzô3¨?:;/Çeɵ9Rɶß4›„”¾â’Z´'3Ë=ƒL\ª-k;jŠZ»Ý<$a-%{«ë“zûY[·ny¥Ù&÷­‹]Èüïqt9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒvë»â’ôj›ìU3½Xô}ÂäW´Ï7Ýî[ꢄ ?•p;zY|ïP{BæPò«t5.߸α¦)c°1Z0îÔQp•=³ücå%Úi°ÜEØf|ß+cI’Êh”SKn¸‚3jFy%f’ÏôPiÖâS|òðùǺóOT|~g«öÄ1 ÐJ/µIúq÷)í—‡Èüð¼öGÇæ>؆!z Eö©?N Ol¼>C…ç²>?2DÂÍÜw½ïp±IH¤¶Ë<ᩦß%æÚs/,ñ—äëîD)ÆéË›gÈ“‡Ý9Ô•š\û~e òx®ýÇñ\ðÅo ÇkðùÞú‡“Åwî8Šç†ƒ¯Ãä=!õ'ŠïÜpÿÏ =;_‡ÈzCê&Œ1¼æ^¦IšÓM©—‰´“D¢#-$­ºŒúb¿ERi.tI¥=5™&gp2>÷Ýí~[WÁHF£­š}B\V”ãr5© º¤$Õ“ÄY™܈lin59Å6åšO›vZ»«8I¤–M®~gÚq¶!ˆ^‚Q}ªOÓŽ¼ Ol¼>G.žÈøüÇÛÄ/A(¾Õ'éÃ)í—‡Èp¼öGÇæJ+»nõÄkâܶª4šSQjR —VÃo“©I6¥f“S¦Yæ\db.+raJI»¥Õò%a·Nuf¢Ò³}2çn“ŦØÓ®jF{…ç²>?1öÄ1 ÐJ/µIúpàJ{eáò/=‘ñù¶!ˆ^‚Q}ªOÓ‡SÛ/áyì̽û“ñÆ·Ž´ +ÅV»$g¡ÎäfÓ.%&é Í[âÖyæ}1AºXHᤔoš¾}¥æñmÛ'lˆctöë[³o4Û´Zm6DcƒN¹HyNkqK#,ÐâK.d²Ø&î~æà )7{µ•¾DFS†'²>?3úûb…è%Ú¤ý8ùÀ”öËÃä8^{#ãólC½¢ûTŸ§§¶^!ÂóÙ™c÷-ñºð“oÖé´èñ›§?0—%ÍmºÊ³[Š,²Yç³>Yº› 44¢Ýî–vØúº‹>X‰h´µ7•ú‰WužØ†!z Eö©?N Ol¼>C…ç²>?3J·;âUKìJMÏVa†%ËT’Z#‰¢&ž[e‘-J>,öðŒÆ;¨TqZ•µö,gZ +O[¾®Òn §áì :Ô¼PŒ@‡2ltQ(Æ–_}¤™µ#3&Ö¤–£päCkĦÒÎZ–Ï‘’{¯4õ-}3Òûb…è%Ú¤ý8ûÀ”öËÃä~x^{#ãólC½¢ûTŸ§§¶^!ÂóÙ™7nvÝxbåùJµêÔºc%µ-kr3o¤l²§‘­ÕÓ-»8våÂ…7$ÝÕµÛöp{£:ÓQiYßUöv–u.ÕðRÌMÅED“Ÿ.‰IZ›Ðé,Ôy!I<ù’ËhªÜü2ÄÏFWµ›È²Çbi-©fg—ÛÄ/A(¾Õ'éÆ)헇ȠáyìÌ}± Bô‹íR~œ8žÙx|‡ Ïd|~cíˆb ”_j“ôáÀ”öËÃä8^{#ãó4rÖ1V1ºÐ‘_­Å‹KsäE$DJÒÞ†Òƒ#ÉÅ(óæ=¹ îèáVz1¾¤ó/°8‡ˆŽ“¶¶²,˜«,OJ¥%PâJ‚#SM8áð¥&eŸà¨«»™;#0°ûu;bM +%ÃL¥YÍE”§‰´H:‚]-éÃlõV¢á.˜ÕÖÜꥢÜî¶h™ŠÚõ⤔,öéÏÉ›t/ÜGãÔ¾qÇÐðûgú$ÿýký!äͺî #ñê_8zlÿDoøŸë_éRîÝAø|Å:¡[¥Ú.ÑQƒeç©âä§I¼È–´§agÇ÷Œt§¹Ôj]EÎöo=c\mz6rPµÒËJùš„2†œ«UlB¾j7ußF¢Í¤Ã…Dz-òTä<áɈ‰ +R”‰-$²5dDIàãð¡ÊWnWÔÒÔí±•R­9NJ-%–i·š¾Ôy>Èq;Ñê¸ò¾¼Ý-’ûKõOÖ•]±û/õ‡Ù'z=A÷W׃{¥²_i~¨Ò«¶?eþ°û!ÄïG¨>ãÊúðot¶Kí/ÕUvÇì¿Öd8èõÜy_^ î–É}¥ú£J®Øý—úÃ쇽 û+ëÁ½ÒÙ/´¿TiUÛ²ÿX}âw£Ôqå}x7º[%ö—ê*»cö_ë²Nôzƒî<¯¯÷Kd¾ÒýQ¥Wl~ËýaöC‰ÞP}Ç•õàÞél—Ú_ª4ªíÙ¬>Èq;Ñê¸ò¾¼Ý-’ûKõF•]±û/õ‡Ù'z=A÷W׃{¥²_i~¨Ò«¶?eþ°û!ÄïG¨>ãÊúðot¶Kí/ÕUvÇì¿Öd8èõÜy_^ î–É}¥ú£J®Øý—úÇ–ÕÄћޅnW¥ÒæDªB©H× ñmp÷%›’]#%o‡žÂ=œ#óV„4£tÓK6ž»õ-‚¦¦£&šjO$Ö«u½¤W»sÌm.É7½lMÜÎ÷÷C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`»¾)/F©¾ÅS;ÕGÜ.E{Ló}Þ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ.¾?ŸŒv/”bm ^ò=C† ç¶'šLõ‘ýX_˜ïL‘Ä3¹ðîKj•xS&Ñ«pŸcjjDgÐKmÄ+ˆÈÿ  Ò22!7MÞ.Íjg9ÁTV’º|Æ;ã—‰…Q!ú–ÔÛ~2Ôjñ¢¢î‡Ïõ,É24¨³à'4™êÔ6xMßZª¯¬¾_#ŒÜ®“÷?™ŸW&æŒV´METÃÚËiIän5 röÆ ÄþQ¢§¥STãßo;º›ŸVž¸Ë¹¿#åÐpîw7º]ƒ\yäfT×Ò’õÔ´%%÷Ì~ç§ rz?ÁTž¨Ëì¿‘tpsÄо®×£Ì¾¥µmÓJ×µ¢MAeŸ•$¤Í¦ÌËJQ—ì Qâ·zʳ۩|ËÜ.àÎyÏÕ[5¿Ûö±´xW„–¶ P˜·­:b!Do%-^YçÜË#qçjÖ|f{ €ˆ‹"ŒF&X‰iMÝ›|>8xèÅYHŒI†±¦¯:L‚ì nÆZäéRšQ¤Í:yB~ +MÝ_"5y4²Úyðb­6±G’ôéNHq2V’SªÔd’JO,ψ|ÆAFYe¡&Ö{IxA$€'ݯç%µÛÏ~dÅþäq¥Ù÷•[¡©výÆu1Hýmoc›÷Œb1¼¬½£M‡â.îý[ùý?¶ü⇣ÇRìFZýì³g¹z©_·,Úõ¹6 ^™ÉSSªGŠi‘¿8Œ™BÉ&méIm<öç´VÖ•Þýc8žô}ÁqýÌÐFh܇À~ ´øç]O¶‹ói˜ýk°Ÿ‡Õï'¡XK­†,óñyû3RøBǧáø‘öcäyæ#/iù‘øG ¹[¢ÕÛªüË‚¿t9v}冕oÜj^î΄u~ܧ~}#'¸ü²ì~F—u9'Ú¼Ì4ÃÀxœ¼æÜþ˾ÍÜãÇÙûÙ¬Ü~#ö¾â­nþè¢bawî‹mÆä¾³ûŠÍÖå>ªûÊH/J`þåL}@ì´|ç±?ð0òïÏúßyè¿›õ~ã­+~Q>±P<èþÀæñ>:'NögÂ# + Úä—´¼™w¹<§Õ~h±>);Vo²oüÅváq¥ìýäýØâǵù 6T ÞÜIІÛëç|%Á€ÝnYû¼‘·ÜÎI{üËb)ËCðø Ö»ç¥S·%~ycÕa©v/#Íå­ö¿3åÑø a¸£»Úõ/ƒ,Tn·"ûW™i¹œªì~F€x ] QìÅ?Þtgw•ú¯î/w[“úËï1Â&#W¼óà?œRûm}âÌwv}ìû‡Õï&ñ\J +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb63úÚÞÇ7ïÄcyY{F›Ä]‡]ú·óúl?ùÅGŽ¥ØŒµûÙo#`¥KÁš|•Ô¤RçÐœ%Ëj\nž”½%dÒV”r5$ôC5s\<¢X¥EÕy]4í}~ªý²-#‡uU%Ö­^·í¬ˆƒoÒ싺æ¬Òê锹ôÈ°“":£´ór”ê]Q“‘¨ËBr4™g·<ÈJ–-9Â1iéi_;ÚÊèà°¶ŒäÓZ6¶V×+y»ž¹õ‡Úһ¬gÞ† îeì¯8Ó4Ê‹L\6“å.J<» $žn'aíIm-‡ÁÀ(Ñ –­™k(ŒûîŒÍr‘66V¦>Ì¥L”yjaÄw”‘r9y|Ï=‡ÁÄ/#I´ïM]ZÝyçÎf§^*I*²³½Þ̲æ-~Ô)•*L§)w|«¢’iT¹~]µèIïE’°‹#àãḈ´Õ⣗7>}¥ÆJIèÉÏ5¯›-Z‘~ðκŸmæÒ3Xýk°¾Ãê÷“Ь%€ÖÃyø¼ý™©|!cÓðüHû1ò<óÇ—´üÈüH#€€Ü­ÑjÆíÕ~eÁ_ºŒ»>òÃÊÇ·î5/wgB:¿nS¿>‘“Ü~Yv?#Kºœ“í^f áŠ` vZ>sØŸøywçýo¼ô_Íú¿qÖ•¿(ŸX‡¨t`óxŸ§{3á…írKÚ^L»ÜžSê¿4XŸƒ«7Ù7þb»p¸Òö~ò~ìqcÚüŒ*ïn$èCmõó¾àÀn·,ýÞHÛîg$½þe±å¡ø|ë ]óÒ©Û’¿<±ê°Ô»‘æòÖû_™òÇèü°ÜGÑ‚Ýíz—Á–*7[‘}«Ì´ÜÎUv?#@ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€â=•NÈ×x‘¢ÃqW[ŒË³ÌYëïÏ=eš:òx¤½¦ûLïV=p¹í3Î7{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ.¾?ŸŒv/”bm ^ò=C† ç¶'šLõ‘ýX_˜ïL‘Ä3¸N>yÑOí¯¡eã>Â&#W¼óà7œRûm}âÌwv}ìû‡Õï&ñ\J +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb63úÚÞÇ7ïÄcyY{F›Ä]‡]ú·óþl?ùÅGŽ¥ØŒµûÙd¬›êt*t›[ìƒÆg›Õ ¢TÔÓÞ£.aúr,óÙ‘ +Úõ¨FMOGKžñ»ò'ѧZQõ4­ÍgeærëÊÆÄZN]•Ir´R¨ÑÛ¦¢¡Suö”‡ ÝüÉ­ùhQ–Iڢ̸¸ÄhÖ¤êÁRÑÏOJÑIñrÎÄ—J¢§7SK%^N×ÒWç!ÝÏ\úÃíi]á gÞˆ˜.?¹—ªàšý:•S—?$>ÄWÝi“,ÉÕ¡ +RQ—fYd(Ív^â¨Òq¡vÁ·ht»¢œåNj©Vª±éì’)0›I/y6Ô)Y(ôf½» Ì[J‚ƒm§£’»õ›y|Ê(bHÆ)­)6Û²õb•Þ_2gÁ‹ŽMÇI©rDæjM¨ȉ¦Ã a¹ì¶I4»¥IÌŒÍ&iØfY‰ˆ†­xÝÆ÷¶msíÖOÁÔrÒWÒQ•”’µòO›eìh.ù×Sí¢üÚFg­vø}^òz„°:ØbÏ?Ÿ³5/„,z~‰f>Gžb8òöŸ™‰p°•º-Xݺ¯Ì¸+÷C‘—gÞX`9XöýÆ¥îìèGWíÊwçÒ2{Ë.ÇäiwS’}«ÌÃA¼1@l‰ËÎmÏì·û᱌ÝÎ<}Ÿ½šÍÇâ?kî*ÖïîŠ(ö&~è¶ÜnKë?¸¬ÝnS꯼¤‚ô¦á~TÇÔËGÎqûÿ.üÿ­÷ž‹ù¿Wî:Ò·åëõÎì^oã¢tï`æ|"0 Ý®I{KÉ—{“Ê}Wæ‹âsµfû&ÿÁÌWn^ÏÞOÝŽ,{_‘’`e@ÝíÄm¾¾wÂ\ Ö埻É}Ì䗿̶"œ´?€Àak¾zU;rWç–=V—bò<ÞZßkó>Xý€¶ˆú0[½¯Rø2ÅFër/µy–›™Ê®ÇähŠеÌSýçFwqy_ªþâ÷u¹?¬¾óÆäÇ´ž'·CIžÌÍïÛå²¾óa¹ŸÖeëòìùUß;j®ÿxc÷ kµ‰ê}ŒÉ}Ê= -î¾wÂ\=Ðå»ÈÌn_#›&¸w5>}Z¥CeÕ*m9¨ïIA È’‰:·³%ÃÏIðpZ -.fÚ÷¢ÁTNN<é'îgßÎ¥uÝ7ÎÅü8¨ !a‚ã?f^Efèñµ_F(Ô™Ñûvñc"íòpì—Äʈr“íÂŽv8’@8TNŠÖ/±wü:Ë’—µ¼ŽùX{3ûŽ»sÌm.É7½lHÜÎ÷7C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`£øŸÏ]S²5Þ$h°ÜDUÖã2ìÅózÄûÄ3ÏYfŽ¼ž)/F©¾ÅS;ÕFÜ.E{LóÞ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ.¾?ŸŒv/”bm ^ò=C† ç¶'šLõ‘ýX_˜ïL‘Ä3¸'Ymâ"q Yˆßo`~¶Ól––ДI""üpyÀŸv¿œ–×o=ù“û‘Æ—gÞUn†¥Û÷Ö4Å lfô9µ½ŽoÞ1ˆÆò²ö6ˆ»»õoçüþØóŠK± k÷²ã`õ²Å×nAr6 Ϭï$¦^ªÒý24‡Rfg¡.-¶Ë,ÈŒfD~¨§ÅÏBYÔQ¿æè)?™i…†œxŽVÖôÜWÈã¸íBb×£µì'l½%ô'nê‘•£3SdZÖѨËÕ̸H}ÂONYTR¶¸è(¿™÷ 篩é¹-½„s¹ëŸX}­+¼!3Ä÷¢> îeóªËz)r£ÆT§™eÇa’ÝZfHIíÈÔe‘ +=f…»‚¿Õ¶©õ§Š5ÔL¸¥Ó¦Óä9:Zø4œi¦g™ñ¨ºd.c…Ò»’ºÍ5eâÙž6JùFÏ&›o-Z’Ì´øYMrBc|¸“[7ôòÃÊÇ·î5/wgB:¿nS¿>‘“Ü~Yv?#Kºœ“í^f áŠ` vZ>sØŸøywçýo¼ô_Íú¿qÖ•¿(ŸX‡¨t`óxŸ§{3á…írKÚ^L»ÜžSê¿4XŸƒ«7Ù7þb»p¸Òö~ò~ìqcÚüŒ*ïn$èCmõó¾àÀn·,ýÞHÛîg$½þe±å¡ø|ë ]óÒ©Û’¿<±ê°Ô»‘æòÖû_™òÇèü°ÜGÑ‚Ýíz—Á–*7[‘}«Ì´ÜÎUv?#@¯´ºcè9sê3ßa¸[ëJZ Qß}jY©&Y$ÓÀyñµe5¥(æšI$ïnk¤q£nkBºi¶äÕºìÙ$nšçb‹þT?„‰‚ã?f^DýÑâ/j&¾ŒQ¨*3¢)öíâÆEÛäáÙ/‰•å'Û…ìq$€p¨¬_bîøu—%/jyò°ög÷#vç˜Ú]’ozØ‘¹î>n‡7¼ cFSŠà?XÀ]…<åÚ~ÅÀüÂÇ—´üÍU*ì^G?ŽÀë®+.©L¡F|&i#?x}¹òDZÀ>N»¾)/F©¾ÅS;ÕGÜ.E{Ló}Þ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ.¾ôë‹å›CW¼Pá‚AÄ9õ‰åæzÍÿV#Wæ;Ó$a î'ݯç%µÛÏ~dÅþäq¥Ù÷•[¡©výÆu1Hýmoc›÷Œb1¼¬½£M‡â.îý[ùÿ?¶ü⇣ÇRìFZýì´ Ö¤ûNÀˆÍ×hîF¦;ãTš:ãJ2ä8dã‘ÜYN’õ$ÏõDDgÄ*ôdªMÓÑwkIJé§nf¹¬X§ªšIzÚ.6wWÎéóÜá—e÷fRí¶e”u™­T§E2eeM#G"¥dÚ#°É©)3ÖzÖg™‘zÝaFsšœôVŠvQ¿>Y·ÍÔ~%V‹Œ4ž•®åmIß$¹úö†ç®}aö´®ð‡LgÞ˜.?¹—®¾ò#Ó*/9-PÐÜw”©(N¥°D“3q%‘æiá"ÈóË€Q­f‚ZŸ6L¦ŠuŠù+rã+Õ%’U}¸Ê[Yt”éºÖ^¹6bçÑÒÎQÑëS&g½)Ë(ËO©Ó^w^EŒÁÚ}BWŽV|;]÷d©Ã‰d¦#BK}É*Q$Ï,²ÏˆAÄ´Ú´œ¬¹ù³ÔYàâÒw‚…ß7>Zõ³@0κŸmæÒ38ýk°¿Ãê÷“Ь%€ÖÃyø¼ý™©|!cÓðüHû1ò<óÇ—´üÎÔ9§SQq9åšR‹?\ˆÇvìp±úä)-$ÖäW’áRšZH¾ù] ¾ån‹V7n«ó.¡È˳ï'à9XöýÆ¥îìèGWíÊwçÒ2{Ë.ÇäiwS’}«ÌÃB,ÆðÅç³>âÚðGÍ%û3õfxaØæIu¥¶g´‰h4™—¬¢ ½Ï–5ïÄåç6çö[ýðØÆîç>ÏÞÍ^ãñµ÷kw÷E{ ¿t[n7%õŸÜVn·)õWÞR–˜vA™4ÒÜ2Úd„Œ‹ÕÒF/obŸYçñºgÜOûBüùÒ_³>ÙžŠü©Ú?'e“ç8ý‰ÿ‡—~ÖûÏEüß«÷i[ò‰õˆzçGºˆ2I-^ZOIij#õŒ‹!òèûcùv$ˆäJv;­‘ìÍm©%ŸK3"î,]ïã¢tï`æ|"0¡Ý®I{KÉ—[“Ê}Wæ‹âsµfû&ÿÁÌWn^ÏÞOÝŽ,{_‘’HBœQ% 5(öRFf~±Ó*{^6Ìû‰ÿhsÁ4—ìÏÕ™ë8ÚÚQ¡Ä) +.©&“/¼{GÓæ£v÷t!¶úùß p`7[–~ï$m·3’^ÿ2ØŠrÐü>u…®ùéTíÉ_žXõXj]‹Èóyk}¯Ìõ…%ä’ÛŒêÒ| +CKQß"1öö?6¹øä9,§[‘Bd¶–’ü&DAt,ZÄ}-Þש|b§u¹Ú¼Ë=ÌåWcò4ÅèZf)þó£;¸¼¯Õq{ºÜŸÖ_yŠ I¨É)#3=„DY™˜Ü˜ãÛñ¶gÜOûCžù¤¿f~¬Ï]Ö\aZ]mM«‡%¤Ò€ÈŒ}½ÏXÚÛ¡¤Ïff÷ Fíò‹Ù_y¯ÜŽOë2õŒùv|ªïµ×¼1û†µÚÄõ>Æd¾å†÷_;á. žèrÝäf7/‘¿ÍŸÝéK³.JÝÔõB‘-ª¥·N6EJ—"Éq…¡Å¥´8ÊÒg¤{ZG攧¦žR“Vjêùmí?u£ +“i§xÅKI6³Ë.ÉÛt7l½§]¦]5iPo‰‘Iè•&˜’â¿I­ÖµÉ=.¥ $æYô¶ð‰2–ž”%Þ +Nêë_/yÞôjFRµGiZNÏVg)Ý5ÎÅü8¨ !Æ~̼‰{£Ä^ÔM}£PT +gDSíÚ7ÅŒ‹·Éò_*!ÊO¶? +9ØâIáQ:+X¾ÅÜð ë.J^Ô>ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ)½A%Òi?”ÌN£¨SYÄGsHV"ŸŠìeù‰ÉD;ę́E§%+—%¦£È”ë‰AôˆÔd?Q‹–£ãv?aÏPA®,†ßAF¦–•‘K4™ƒ‹ZÂw=±ù>€'ݯç%µÛÏ~dÅþäq¥Ù÷•[¡©výÆu1Hýmoc›÷Œb1¼¬½£M‡â.îý[ùý?¶ü⇣ÇRìFZý챫Ý;pQ­ûBƒm¥˜­Ñé܉$åÓáËßžß–æ¶ÔókRS¥DZs-¤g­xÎr”³Òi«6¹­ÌÉëáÆ<×½ÒzÝùîG÷ž9Ý÷ý5TŠÔ˜nESºib—2õ6y§ôFZB²é–yïK +oI^ëéIù³•L\ê+;Yý¼‘ôw=sëµ¥w„Î'½¼ÜËí=‹%Úd)µ“FòMM“†\É­%´ÓŸ  +3BÊå?ê×n£¹n +yËktÊF®’×÷ò#ĨqS÷ÉýÅL°R©ÆkÝæÉsðöÓK§Ì™)µºnšæ=¾¬”i$ä„INEÀ[3«VuÝ•¶0øuAY6ï·¸¼xç]O¶‹óiÜ~µØ]aõ{ÉèVÀëa‹<ü^~ÌÔ¾±éø~$}˜ùyˆãËÚ~g2ÃMÐwnP«Ô*AÖ[¨›.GZTŸÒO¥d§m*BˆÍÔ…Í™ 8Œ+´ä¸¾*Ï/¼é‡ÅJ‚is®ç–qé]¡±õ¥Ê£W.¹3 J$¥æ†I+$¨”Df–ÈøHañ04©µ%šÔó?SÆÔšiÉÙäõjî>Þån‹V7n«ó.Îèr2ìûÏÖ•oÜj^î΄u~ܧ~}#'¸ü²ì~F—u9'Ú¼Ì6BÔÚ’´(Ò¤™)*-†J#ÌŒ½R1¼1E ¬îÂÄêƒv¡\r ª&âÈZ7§[ÈR³½MlZ’dFEžzsÏ3QÜÊI¶ÒwwK<²Õ¯ne›Ý +–I;YY¼³Í»êÙ‘_‰rbTÆ*=YÚ”¦ÞuÔ¡&–õ´–„¤¸LÏ€N£B4U ­rZò«Æw±©¾'/9·?²ßï†ÆOw8ñö~öiwˆý¯¸«[¿º(£Ø˜]û¢Ûq¹/¬þâ³u¹Oª¾ò»`þ-Vpjáf»HZ”F…5*6½’É‘ä…™¥^UFJ#ÈÌŒ…ž'±q~ç±í+°õÝ ).mkjØs%n®Å³Ì¾Î%äĘú!ƒh¿Í^?2GUé?‘^ÞZœ7£ÍJ3QŸLÌó3IX€Ýõ•Ïœãö'þ_ùÿ[ï=ó~¯Üu¥oÊ'Ö!ê&ÖÝ9}YVƒ®ôR3)*B”ÔsA¤â¥+m\Á¬õ‘ç°ó,¶Šê¸Užœ•ò³[^߸ŸK:QÑO4ömG ¾1²ùĘMS®k‰ú”V'ÐÓ¨i$—RF’W0„ždJ2áã©a)ÑwŒlíns\Tê«IÝ_¨²ž'ÇDéÞÁÌøDaW»\’ö—“,7'”ú¯Í'Å çjÍöMÿƒ˜®Ü.4½Ÿ¼Ÿ»Xö¿#(èÕ©öäø•J\µÄ›ĽöÏ%¶âxC^Ò’³Ôòk¨Ë'l×7™dnظŸ\ªJN¸ß¥Æw{Ñ ¢ehhÒ„¥ZT¦³æ”F¯S<¸…U-Ë¥f¯›Ï=½¼Ú‹:›£RO'l–Ív׫œ¯—U×W½êrkUÙË›>Nõ÷ $¥èI!9’H‹a±¥J4–ŒU‘¥YUw“»6÷q'Bo¯ð—u¹gîòFËs9%ïó-ˆ§-Ãà0XZïž•NÜ•ùåU†¥Ø¼7–·ÚüÉ–ÁÝyá­¯R¶(u7c¢Dˆò"¾• ΃Q¼”%hQ=™jÚYs.«à¡^JRZ¯~µÍÜJ¡‹•µ{{žß~£â]øùˆ7õ1Ú5ÃsÈŸÕ!kaÄ4IR›=I<ЄžÃÛÂ?TðTé=(Å&¹ó>TÆT¨¬ÝÓì%-Ä}-Þש|b.ër/µy’73•]ÈÐ ¡j=˜§ûÎŒîâò¿UýÅîërY}æ+Ù"žû¢<¶$0´ºÓ­žKmĤ©'Äde™ γYËv&'Ö$ÇzÇ"šÛqb°¶š&V—i²C™©¬ÈÝQŒ¸Ï"PÜÊQ½ÒwmóäŸ6¾bÎ[£QÚÎÖI>··Q^wÅ{ª'W¸êNT&›hhÞp’•ohÏJrA$¶f|B}*¢­e{êÖ•Wy;Û/q¯>'·CIžÌÍïíÛå²¾óS¹ŸÖeëòìùUß;j®ÿxc÷ kµ‰ê}ŒÉ}Êg…öþÏ×'|%Á³ÝQû¼ŒÆåò1÷ù³’Þ8nßI•‰Òª¬H˜ÃQä&Eqšu¦ˆÒ”­ NJØgßãK*jÊÖ½óWÌ‘[ ¯IÝ;['lJÞÜõlÛu +EJ<ÚË뤸NÃf]QÇã´¢A¶Y4¤å±&dYe°t–6R¿5fôsÌå #låê´ÒrË.«tÙ[]ŸÑŠ‡ð’p\gìËÈùºÝ£|XÈ»|œ;%ñ2¢¤ûcð£Ž$¢µ‹ì]Áÿ²ä¥íCï#¾VÌþã„nÜóK²Mï[7#ó½ÇÍÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø>LŠõ2#ŠeúŒfÜND¤-ô%EŸLŒóµùŸqùrHú¤ddFG™ü£®÷ŠKѪo±TÎõcÑ÷ ‘^Ó<ßw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥Dк^'ªr2àF”~,ÿ(°¤¬ˆ³ÖqáÔæeŒÑ¦4‡2òÎñ¤_8‡_Y&šÈç1Ô#Ž‘O̳ý5ò,ðÿÄõ|“÷7úQÔ»¹Ï­×£â|]Ëä|ßèt{ù$ýÍþ”u.îsëAèøŸßrù þ‡A÷¿™$á6!`=BãŽÍ §Ášl¾i}É‹RIžh²9*á/PFÄP®£ëM5uÍø°Õ¨¹z°iÙóþ%¬û#Ãþ¥¤{qý(«Þêt—wà[éÃ`û#Ãþ¥¤{qý(ou:K»ðpØ>Èðÿ©iÜJÝN’îüœ6v΢O…5T:rá4—ÈœC‹5— ¶íR¸¶ +ìTdšÒwÈ•E¦²%!î:ßx‘¹ö%Íp±SÂÊ„™ÍT&"Séš´¥×Òê‰Å‘rIdJVfE‘zÃkF†!ÅZi+++s[°ÉU­AIÞ÷wÍë¿iÅ<“÷7úQÔ»¹Ï­Þ‰ýñw/‘Ë¡Ð}ïæ<“÷7úQÔ»¹Ï­£â|]Ëä7úÞþd­Øu[òÙ‰ma¬êmYÙ&˜’ݘµ¡—7µž£IÈVe–eåO„CÅѯrršjÙ«~¬-j.iF ;äïø—wtíbÔ¡XSåÞ”Gk4„ȈNCeÃmjZ"B‰D´yUmò‡sã9TJÎÏ?w¼¹ÆÊ1ƒsWWY™äŸ¹¿ÒŽ¥ÝÎ}hj½ûâî_#9¿Ðè>÷óIû›ý(ê]ÜçÖƒÑñ?¾.åòýƒï1䟹¿ÒŽ¥ÝÎ}h=ûâî_!¿Ðè>÷ó4r%ÃaÜvõiëÙ~ƒ ôHfCÆêœ{zAë#SŽdZr,³.œÝ8T„–ù%'l­²ýˆ¾ÜùÂQz +Êÿwk8–1ÛÖUó{U#Ô°¾EÉQ¥Å€‰TDD$%ÇBR© 瑳=<|#¾s§ÔÔSo-ê·S8bc“iÁɤ®ô­¯=¨Ž<‡,/HI?¶¾¸%zMOßWØþèðýéýµúÃÈrÂô„“ûakëé5?}_cøèðýéýµúÇáàÝ‚ÀOí…¯®¤Ôýõ}àO¾ÞŸÛ_¬Y?%Šç!ò‘”ÞGÞ·;SüÏN9ïÙðláÌUú*½ô×Ù—È°ô‰ZÚíGæVÂÁ»‹"ÀI;?¾…¯®‹OI©ûêûÀ•þÞŸÛ_¬~ùX^’l-}p=&§ï«ì|ôx~ôþÚýaä9azBIý°µõÀôšŸ¾¯±üôx~ôþÚýcœaý‰…µ5Ö-Œ—jØ\e:šäg ÚZ’¥''e(¶šÅžÁ¼¥]ZUW¿ýÈïJ*‹¼i´ý¥÷³‘b4öqj48w^K¨³ Õ<ÂZ†Þ‡&yµ%{6mèEÐw…D¯ô_ÞŽ•¥¿+J›vúKîdKä9azBIý°µõÁ3Òj~ú¾Çð$OG‡ïOí¯ÖC–¤$ŸÛ _\I©ûêûÀG‡ïOí¯ÖC–¤$ŸÛ _\I©ûêûÀG‡ïOí¯Ö'[*ò•‡tˆÔ+{ +&B§Ç5›L¦±d“qFµsNHR33=¦+êÑßž”¦›Eü‰ÔªºKF0i{QùœŽ^9\0˜~K¸o8›e·Y•Rœg¥´š/ѺD9,^ZkìËätx©,ôÚÌœízóWU“Zaµ6ÕFiˆBòÖ„¾Ú\$«,Ë2%dyqŠúГŽÆ×s'SžœT¶¤ûÕÌvªbnç4Mœ—°š¢·S!òqE9dJY8¢Rˆ¹+Œó1µŽeû¢Ô¹¿'*ô/Äzöþ'£äŸ¹¿ÒŽ¥ÝÎ}h~½ûâî_#ó¿Ðè>÷óIû›ý(ê]ÜçÖƒÑñ?¾.åòýƒï2vÜÙ}`µo)0ìì<›H¬-©†ÄÇ¥-Ä!)eFáNBü²s/*b¿F´i·9¦²ÊÝ}„ìZRšQ‹O<ïÕÚZ­Õ•»:d&Uó@z·JñÂ* ++›Kß̜нDã{‘ìÏ€Tnt'9Ú›Ñvy½…ž>pŒ/5uu‘›þIû›ý(ê]ÜçÖ†ŸÑñ?¾.åò3Ûýƒï1䟹¿ÒŽ¥ÝÎ}h=ûâî_!¿Ðè>÷óIû›ý(ê]ÜçÖƒÑñ?¾.åòýƒï3F7'×l»‚Í‘&Å·ž¡Ó +¡! +Šû¦êòKzרÜsa‘–Ìø¸gt¡8NÕ“²Ílð4 BP¼•ÞEE‘ó+F’§Ï5‘©$ÃÙ‘Fe ó,ø‡î×j?2Ôû ÃKfä¯[ЧZJüz;ª‘Únùn:RiqD¼›äg5Ÿ«Â= +´ãZN7çýÍ¿÷cÏðô§8§%íûª\û4Nwö‰†Ü?çÁoê#†ûOlÅOõ‰;Åo¥þ.þ}bG¡·ùð[úˆo´öÇüTÿXo¾—ø»øŠ]–õzÞ*,»Æ‰]~›ã½1²Kײ% Ÿ[é&ÔmrÜo®C¬&¥uè¿ç¹½£•Js…œÔ­¤µÕ¿†‰¿#Ï ñP)qO·hß2.ß'É|L¨‡)>Øü(çc‰$…Dè­bûpÀƒ¬¹){PûÈ³?¸á·<ÆÒì“{ÖÄÈüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒv +=Š #»*™‘y£]âF ÄE]n3.Ô_1g¬O¼C:õ–hëÉâ’ôj›ìU3½XômÂäW´Ï8Ýî[ꢄ ?•p;zY|ïP{BæPÂ&#W¼óà?œRûm}âÌwv}ìû‡Õï&ñ\J +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb63úÚÞÇ7ïÄcyY{F›Ä]‡]ú·óúl?ùÅGŽ¥ØŒµûÙ`rýéX¡ZµûZ‘*·³Oä·¤´Úb»¾­½ç5ºF­‰%g‘pä+Þ>”£6£¢ÒZóÊäå‚”ãE7¤õegm§»ð.ÿ°)Ë«ÜV´ª|- ©÷TѤ–áä’æQí?Pv§Œ§QèÆI·Í™ÎxJWqi.|»6Ÿ[s×>°ûZWxCæ3‰ïGïÇ÷3@E¢Óàu>Ú/ͤRcõ®Â~W¼ž…a,¶³ÏÅçìÍKá Ÿ‡âGّ瘎<½§æGâA,ån‹V7n«ó. +ýÐäeÙ÷–V=¿q©{»:ÕûrùôŒžãò˱ù]ÔäŸjó0Ðo Pâró›sû-þølc7sgïf³qøÚû‰u]1±[ß|E\œ;gæ‰K”ŸÔòg.ŽàǸüç«ö”Ï̬~éë]«ÌüOSì~D«„áY~ÂRþ +؃‰å%íKÍð¼œ}˜ù#®]wÏJ§nJüòÇ¥ÃRì^FZßkó>Xý€¶ˆú0[½¯Rø2ÅFër/µy–›™Ê®ÇähŠеÌSýçFwqy_ªþâ÷u¹?¬¾óÆäÇ´ž'·CIžÌÍïÛå²¾óa¹ŸÖeëòìùUß;j®ÿxc÷ kµ‰ê}ŒÉ}Ê= -î¾wÂ\=Ðå»ÈÌn_#›,H®-@»n›çb‹þT?„°ÁqŸ³/"³tx‹Ú‰¯£j +L胊}»Fø±‘vù8vKâeD9IöÇáG;I *'EkØ»ƒþeÉKÚ‡ÞG|¬=™ýÇݹæ6—d›Þ¶$nGç{›¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°QüO粩Ùï4Xn"*ëq™vbù‹=b}â笳G^O—£Tßb©êÇ£n"½¦yÆïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mžKAŸì“ïô°ddFGžb¨š~€\óù¹Kwô4ÿÃùZQ»?vD9À,€ý¡µ<¤¶’ÌÖd’õÌò GÔOQY(Ì´Ñp!)Oà,…[w&#Î>@ˆqŠQ¸i°™¦ÄT‡#Z’“I'B‹>hËŒOÂTPnùdF¯%‘åÁú BߤIQŠ¨îªJÖIQ¤ÌÒiIgÌ™ô‡Ì]E9]g‘öŒ\V{IdA$'ݯç%µÛÏ~dÅþäq¥Ù÷•[¡©výÆu1Hýmoc›÷Œb1¼¬½£M‡â.îý[ùý?¶ü⇣ÇRìFZýìµ/Úðî ÛI¸ º¥ÎFq†ÞmÛCÒW¥ÒmßÑTfƒæ¹†E–͵N¤i:²µôZoV~ªÕ–E’„ª*Q½´´’×—­Û™µ&ÖìÛ²ä—Y˜~1ΦÄLWTâÛ’ÔéÌÖ½†ïfDyçÄ%Ϊ„¡—¯¥žYY&G'(ͶýK{ï-ëîzçÖkJï|Æq=èýà¸þæ^úÊÒÝ>rÕ7‰,:g+™=à‰'ú'5³˜áÛ³`£F‚Z¶u”Æ¡|ª-zMc÷èØ–ä™›Ô£­¢I¶ƒÉ9~‰™ðô¶ ˜ÒºmÓÍZË<ó3ó¬Ô¢•\îí¬²,ÖLfm6BÙ¼þÊ’O™Í,§z=)ý & NλvŠúêÍzº9uçŸYk…•Óõôó×–Yj˼½¸ç]O¶‹ói¼~µØ^aõ{ÉèVÀëa‹<ü^~ÌÔ¾±éø~$}˜ùyˆãËÚ~d~$ÀÀnVèµcvê¿2à¯ÝF]Ÿya€åcÛ÷—»³¡_·)ߟHÉî?,»‘¥ÝNIö¯3 ðÅ°'/9·?²ßï†Æ3w8ñö~ök7ˆý¯¸—UÑ#;½ðgÄUÉö~h”¹IýO&ráÈîñnK‚§I©Öª +RbS£=)óJu(›i&µd\fyl.˜ýF.M%­´—kÈøÞŠmêI·Ø•ÈN£‹×‚(–½BŸ‡9P¸e¸Ìz{õÒmÆÞCR}´)¶÷Ä–ZUÀyff,=*N.yF7m.tìÖzÊïK“‚’ƒõ¤’Mó5tݵÏ q~!Ó*2j´tR'Óê)Ò ¦O$)—X$ê%¬’’ÌõfYfF“##Ú8â(*VÑwRÓµ¹ÚûŽØjî­ô–‹Œ¬Õïͼ”Ä2`|{Îz¿iLüÊÇîžµÚ¼ÏÄõ>ÇäJ¸AΗì%/à­ˆ8žR^Ô¼Ùß ÉÇÙ’:å×|ôªvä¯Ï,z\5.Åä`e­ö¿3åÑø a¸£»Úõ/ƒ,Tn·"ûW™i¹œªì~F€x ] QìÅ?Þtgw•ú¯î/w[“úËï1ò«t5.߸α¦)c0?¡Í­ìs~ñŒF7•—´i°üEØuß«?çöÃÿœPôxê]ˆÀK_½–BÊ¿±Þ—D¦Fµü{ñ¥†0•”—š&³?3pØQ™gŸê…uj4%&ç£~{Êßy>ZÑŠPÒ·5•×‘Ë.êŽ%ÝcvÎÄ µvS +£Gn,YpšˆÃûòÖ¥0…,ÐiNY+"Ïib4cJX*j9éݦÛVi%ʤéÏOJÉGZI;É-„C¹ëŸX}­+¼!?Ä÷¢& îe鸧*™IªLDnITx²KY“¦Ú Dƒ.2VY +4h$ì½Ìª”ëÑûž³F£Ì·]®U›z|ùÑé̹•´Í+iY–øFz9³-¤g‘ iQÐroKF=oÖ}Ekï‘ŠZ:SwÉ+F)]߬™°jàv»Kª!ç!HU>£"N§0–"ÍKiI“ÉB9’>kJ²3,Ëaä!â!k<ÕÕìÝÚͯĄž–’ÉèÊÚQVO$ù¶^Æ‚`u>Ú/ͤf±ú×a‡Õï'¡XK­†,óñyû3RøBǧáø‘öcäyæ#/iù‘øG ¹[¢ÕÛªüË‚¿t9v}冕oÜj^î΄u~ܧ~}#'¸ü²ì~F—u9'Ú¼Ì4ÃÀxœ¼æÜþ˾ÍÜãÇÙûÙ¬Ü~#ö¾â]WDŒDìV÷ÁŸW'Ùù¢Rå'õ<™Ë‡#¸Áº§(ÕT&“ã¹®+Éñ»RQÉz’dlê_2ZÈòÌöcõk›5žÎ³ãÔùòymê÷™…uϨa‹fuõ·a«˜b˜Õÿ ô§,ɶÐãæD\ ID54Ò¬õÂOnôü^HÉÕn‡æÎ ™*±ðY²ëîer3¶jWΨÛ-.SÎo5WÕ"dÅ8IZ¥ºêÒ•(Ü3Ë5êvlÈSî‚jJòRÊÞª²Y¼²ï.w9§Ô\nïë6ۺך]…„… |{Îz¿iLüÊÇîžµÚ¼ÏÄõ>ÇäJ¸AΗì%/à­ˆ8žR^Ô¼Ùß ÉÇÙ’:å×|ôªvä¯Ï,z\5.Åä`e­ö¿3åÑø a¸£»Úõ/ƒ,Tn·"ûW™i¹œªì~F€x ] QìÅ?Þtgw•ú¯î/w[“úËï1{´×Ðû'’“ÂGÀ¢ã#™GK#ô‰j™pé Œœ&ÜËšBÏ#/[¦B ©¸’T“>„Š”X‰5½! "þ”Yýâ-£ð¢ÙúnÄs^ºUPJ£Å#C'±J=Š_Ì_”ÄÊt´sg NúŽ;œ@Òd¶é~5ÃI,²uÎm~¿}âõ'¤ÉPVG Ø'ݯç%µÛÏ~dÅþäq¥Ù÷•[¡©výÆu1Hýmoc›÷Œb1¼¬½£M‡â.îý[ùÿ?¶ü⇣ÇRìFZýì½Ø—®kj—¤ª" —ÕEª±–‡ Ff†7ãIfœó#ÌQc}I6÷¥}ZQn^ÎÖ–øí¯E¥‹nŠqTZ"iuø‡T‡šS)¹ª,ʦ¸MžjËzÌ”á•Èö¸/^W[Ó¶½µ/‹õ#g¾gki4ã®üÄ1¹ëŸX}­+¼!cŒâ{ÑÇ÷2ùUj ¤B™9m­ÔÅeÇ”ÛIÔâÉ´š(.5Yq˜£µÍ vÏaLƘ®Ó.…­gPií›®ku¬36A~©*†ÂIj3Ìù•+h·ôW’”¤óV²m/{ÈÏújõœ#“¾“I»-‹2Îá•­D¡Çf¬ì74½šd>E—•iNg¨ó33Qðæ â$œ²¾WM·vÚe¦2Œs¶viEY$Ñz0κŸmæÒ3xýk°¼Ãê÷“Ь%€ÖÃyø¼ý™©|!cÓðüHû1ò<óÇ—´üÈüH#€€Ü­ÑjÆíÕ~eÁ_ºŒ»>òÃÊÇ·î5/wgB:¿nS¿>‘“Ü~Yv?#Kºœ“í^f áŠ`]Ÿ*»çmCµßï ~á­v£ñ=O±™/¹G¡…½×ÎøKƒgº£÷yËäcïógÄJö­Önû±ÊyM‰Oj$:uFKTl’Éfã1HÔ¤že£añð”'' Æö“m´šÔ¶œ±0‚¨å9ZñI$Úy7°ô0æE©Sº¢·kÁ¼§“É2çN”ˆ1h5$ÞjK„¥’‹i'Fg™C­U5å ®¬•ßeŽ4\%4 ª;4ÛmÙvÝœût×;_ðâ¡ü$„\û2ò&î{Q5ôbAP)qO·hß2.ß'É|L¨‡)>Øü(çc‰$…Dè­bûpÀƒ¬¹){PûÈ³?¸á·<ÆÒì“{ÖÄÈüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒvë»â’ôj›ìU3½Xô}ÂäW´Ï7Ýî[ꢄ ?•p;zY|ïP{BæPõ‡jTGd~'5 gõl]p.èÎK§šÍ´8mžøƒAê"#à?\*Òtݘ„Ôµ”q?`I÷kùÉmvóß™1¹iv}åVèj]¿qcLRÆ`C›[ØæýãŒo+/hÓaø‹°ë¿VþÏí‡ÿ8¡èñÔ»€–¿{-ƒõb§gXT«ê¹]´•šâ©Ê€Ú&@¨Å\—’M–ÜJÛwViV¢Ìò#à.2U'((Ë5tòiÛUí¨³Œ¢éÅM¸¯ZÍfž|ëo1Ã/{öϦÙÒì«R»Y¸Štè“ž™VA2Ì^EJÈ““R”J^¾mFdYÑÒÎjsQŽŠy,۾׳ï?«AÆ-ËJÚòJÎù-¿qð7=sëµ¥w„;ã8žô~0\s/umâNžéÍ(DÛ«’$¢¥&{îG°ôpä{!Fµ{µ”zuØ»¹·XCÔ{ø‘šMbÒÒòˆ·ö2"?T²é‹¥OC;8}unæg%[O+Æ¥¿­nýè²K“J <Ü«QëmK¥”'f.IM -mï†jm'Á ø ³ã±rRkÖÒË]­ÏÕ¬²ÀÁÆ.ñлÕvùºõv€>uÔûh¿6‘—Çë]†‹«ÞOB°–[ Yçâóöf¥ð…OÃñ#ìÇÈóÌG^Óó#ÿ¼€H#½#ü°•º-Xݺ¯Ì¸+÷C‘—gÞX`9XöýÆ¥îìèGWíÊwçÒ2{Ë.ÇäiwS’}«ÌÃA¼1Cïà0°'/9·?²ßï†Æ3w8ñö~ök7ˆý¯¸—UÑ#;½ðgÄUÉö~h”¹IýO&ráÈîók¥Á2DG6SM-lÅ'RѾáiFø®e:fg°‡Õ› ÙZq;vÓ߶8>±Þ)þùú ­ôŠ¿½þœOWsrª/Æ¿%Uc"$¹WEAça¢Z%œU)¶sen7ÌêN[H²áq‰%Ò†»Zþ³Ú|Á6åQÉY¹ê½íê­……˜|{Îz¿iLüÊÇîžµÚ¼ÏÄõ>ÇäJ¸AΗì%/à­ˆ8žR^Ô¼Ùß ÉÇÙ’:å×|ôªvä¯Ï,z\5.Åä`e­ö¿3åýãüô~Þ?À¶ˆú0[½¯Rø2ÅFër/µy–›™Ê®ÇähŠеÌSýçFwqy_ªþâ÷u¹?¬¾óÆäǼ€ÀÒxžÝ &{37¼hb7o”^Êû͆ärY—¬g˳åW|í¨v»ýáÜ5®Ô~'©ö3%÷(ô0·ºùß pl÷C”~ï#1¹|Œ}þló^vÍ‹qW®Ò]ŸO®PàG“6£O}Øï7Òµ·¤Òf‡ ‰ÌšL~iTœ"­m+YÙç—ÌýÖ§N¬î¥Þéµ—ìŽ5lÒ'Xµê n5õ&©õ“.5R§¡É2˜ª[*ßÛ4ofM',Ôœ,Œ³å%4àâ“‚“ÉÙ,ÕûsdhEÓj¢›j£Šõ•ÛÙ²Ùt×;_ðâ¡ü$‡û2ò$n{Q5ôbAP)qO·hß2.ß'É|L¨‡)>Øü(çc‰$?r<³ËgL§à¢µ‹ì]Áÿ²ä¥íCï#¾VÌþã„nÜóK²Mï[7#ó½ÇÍÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø#ZÖ+P¨Ÿ§JSäó&”«C&¤æ¢#,?TK†SWVï8J²‹±#¡DâR¢à2#/¾"μ)/F©¾ÅS;ÕGÜ.E{Ló}Þ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿÓßÀëMþ{¿Ø×ïýGYñ! 24 Ú®J4¿1&†¸I±KõúEùLG©VڎцÒNB IIDEÀD!èãßþÚù +X3ì"b5{Ï>ùÅ/¶×Þ |Çq—gÞϸ}^òoÄ ¤ûµü䶻yï̘¿ÜŽ4»>ò«t5.߸α¦)c0?¡Í­ìs~ñŒF7•—´i°üEØuß«?§öÃÿœPôxê]ˆÀK_½–mÍÓ2¨–å—B ÒiøÓLäY‹ªÒX–³~q ­fg½éQlÙ·=‚±àç)I¿Y«hÉ®kfXÇ¡Å%’wºO[¾Du{ã•vþ¥®“P¥P㲧pÜHb#äh<ȉÆö‘qŽô°q¦ô“–[dÚØr©‹•DâÔsÙž»žÆç®}aö´®ð‡ÜgÞ¸.?¹—Ò¨‡Ü‡-PÒßSNH|ŒÙRÍ'¤œ"ۤχÔf…•’~Wnœ—VŸ@¦­^Xèô].¤ºIqÇ·ÕÐ,–*0Õ¤ûdSK*œgìÃ>öMxua7‡TµÓ«Î©’Ý7MéîïŽ$Í$ZSûìØ]1µmõÞÉYsðØ}áZíÝó÷“|ë©öÑ~m#;Ö» ¬>¯y= +ÂXl1gŸ‹ÏÙš—Â=?ij#Ï1y{OÌæØg×Pk´JY¶g4ÚvÎGaÞC|–FêÈžmz‰Ä“#ØG‘ãˆÁÆ»MókÍæ­«'´ëC覗:Ë%“Ë<úJêÝ ~Þ”¹tZÅ]‡áJ$“Í¢ •(’¢Qd¶™J‹iCN I,Ö¯ZOï>ÏRi¦òjÏ%ò>¾ån‹V7n«ó.Îèr2ìûÏÖ•oÜj^î΄u~ܧ~}#'¸ü²ì~F—u9'Ú¼Ì6BÔÚ’´JI’’}##Ìï î£ZZÖëÛòc4†é²£Â\hM±-GO„ï%IB•ªG6ÁšMI4‘¤¶fF|b¢;™M6ÞwwJòVVÕ¯ne›Ý Ù%“JÍÙ;ç¯V̈6úÄJþ%Mb¡pËD™ 5¼6¦ã3‰½F¬´°„$ö™í2ÌN£B4U¢­~¶üÈukÊ®ræêKÈÔ¿—œÛŸÙo÷Ãc)»œxû?{4»Ä~×ÜKªè‘ˆŠÞø3â*äáÛ?4J\¤þ§“9päwù•¤NrŸ5É Çš¦–QÞƒq–ÝË™Sˆ##RHøK2̇ØëÏöAêË]Šiuâuãb¨Ñ\Æk+¤FfÉRÞuíŸÄÚ}jü‚êUâÓ›÷¯‘IR¼éqªS_UýÌ‘w-š¥ÐnJ«•T«WeÎrOÓZqn¶Ñ²ÌŽlÛÙ±\´¸‡zÑÑ­£Iñ›ÎÇmÏzZr½ô¥{踮*ÕrÌŠ¢Ô>=Çç=_´¦~ec÷OZí^gâzŸcò%\ ç +Ëö—ðVÄO)/j^lï…äãìÇÉrë¾zU;rWç–=.—bò02Öû_™4áþè‹—mZ·JSI[²~—#Gxâ$G!<ÒõÙ§„ù“#2á1 ‚i)>kß6¯³Sæ%PÅJŠisÚÙ,Ÿ>½¨ø—Ž>_õ-Ú5rªÌˆN© [h§ÄaF¦ÏRO[,¥E‘ôhýSÁS¦ô’Íu·æÅLdê+7“êKÉvâ>ŒïkÔ¾ ±u¹Ú¼Îû™Ê®ÇähŠеÌSýçFwqy_ªþâ÷u¹?¬¾ó!M~›!‰q\6ŸaÄ:ÒȈÍ ÉIVFFG‘–{K!¹1塹7_ßµ9,;J“œÊ"ÆiƼn„é.Cm’^x”¶ Ë}Y´ç’sȶ +˜ne5{ÝæÚÎJË™kæ,¥ºvµ–I<“»Û¨€¯[浈u#«×¤¢DÃm ÐÃL†óÒZBÇÖf'Ñ¡*ÑÉ^úÛó!Õ­*®òÎÊÚ’ò5ßÄöèi3Ù™½ãC»|¢öWÞjw#“ú̽c>]Ÿ*»çmCµßï ~á­v£ñ=O±™/¹G¡…½×ÎøKƒgº£÷yËäcïóg×¼°Hb­ïªRn‡7¼ cFSŠà?XÀ]…<åÚ~ÅÀüÂÇ—´üÍU*ì^G?ŽÀGñ?žÊ§dk¼HÑa¸ˆ«­ÆeÙ‹æ,õ‰÷ˆgž²Íy×æ{-.*ì^G&Ž ÿÔßÀëMþ{¿Ø×ïýGYñ! 2H-JI‘~éÎçXî$ÍQ%ì\Øe÷Ëæ£_iÙÓ8ë¶ÝM£Èâ(úÓ%{Æ:ª‰óŸx“A¨¬ò(N®DEùL}ßÓæƒ>ÄK2kæFòÊxó=JËÖ-Ÿ”s•dÚ¦ÎkL¶¡ÓL–Iß]/Õ¯n^±p*®GUŽB9° œ{ó¢ŸÛ_!BËÆ}„LF¯yçÀ8¥öÚûĘî2ìûÙ÷«ÞM⸔Ÿv¿œ–×o=ù“û‘Æ—gÞUn†¥Û÷Ö4Å lv‘Ú„®ÚÏÖÚ1ÞR]¦› Ä]†}ÌÃÝÊ +‘!O^rÉÓuÃp¹2NÅšQ=úy­‹è®åó(7I÷¿‘ëùnKêÒ_vÉú¸û¿bú+¹|ϛΤûßÈynKêÒ_vÉú¸oؾŠî_1¼áºO½üŽy†Ö>æ¨5Ö¶®É2*ÓĆÕ)õ ÓÍžJ`‹az£…zØ—Z*Ý‹æHÃÒ ¥ê¶ßkù7Æ0ô]ßmsèÅvù[g—̴цÑãz.ﶹôa¾VÙåó0ÚŒ7ÊÛ<¾cFIwa[ТKM»)O²§ˆÝ5)JÉzKg4Eň”›õ¶)$–Dˆ"€Ë‹ÆÂÜ»&¿\z±wÊj¢äéK˜ÚeÈ"D•:£u$DÁ‘d¬Ë"3õƲ•lRŠ´U¬­’ÕnÓ3V–ÉÞN÷wÍë¿aÇ<7%õi/»dý\uß±}ܾg=ç Ò}ïä<7%õi/»dý\7ì_Ew/˜ÞpÝ'ÞþD„VNæêuå@“hÝReW|Î ”úÒãºYTÊHùœøL„\U\KƒSŠQ¶y/™'J‚’Ñm»å›ùãt.ɬY“#b Aphj~1¼ûn-µ„áe© YíV\BŸ)ÆiÓW•Ÿ‘k‹Œ%]ÙdP#ÍÉ}ZKîÙ?W-ûÑ]ËæPï8n“ï!äy¹/«I}Û'êá¿bú+¹|Æó†é>÷òG›’ú´—ݲ~®ö/¢»—Ìo8n“ï"ênc¡á­ +‡Vk ªÎT`.f©N:뎚doi-$n!\ÎGÀ(·Bu%%¾«;eÍ‘s‚8§½»«çÚ|5tHÄNÅo|ñÙrpퟚ9®RSÉœ¸r;€q;ö=&]·^b¼·Kr„MS:÷ÄÇ48hÞÈÕ«. ˆÏÔºwº¶»«vÜüÎÖwÕg~ËfeÍb6R(u+rÌÄÖãG¨4häz­¤·¤D¤¨È¦±¹9‘sFKéÕÆUe%)Âöiå;.ë´d%QN0´“V•;¼úôS4'1~%[‹ŸQä;B¡¥ÊyJK!¦Ðd­3mĨóÚYtŒPchªRÊù«çm¯cf‡]ÖŽvõl®¯³é$M"`ãóž¯ÚS?2±û§­v¯3ñ=O±ù¶ó‡e{ Kø+b+”—µ/6wÂòqöcäŒæ¨aöåË–©œ´¼§Þ7K“$ìpÖf²þ{ñ+1¦U±vÊ+Ræ_2…ÒÃ_ŒûßÈõ<7%õi/»dý\~·ì_Ew/™ùÞpÝ'ÞþCÈór_V’û¶OÕÃ~ÅôWrùç Ò}ïäL8 fî|¤^´ÉVÍ"my Ê(ì9%õ¥H6”Nž•²’،τBÆUÄ85R)G+»-½¤¼%:šÐwyó½…ÝH°«V‰FÄz“(Ü›Dón-µrA÷´êm =¹«ˆV`eR3ýÍ]Ù÷8ÈÂQýÑÙ]w”GÈór_V’û¶OÕƃ~ÅôWrù”{ΤûßÈynKêÒ_vÉú¸oؾŠî_1¼áºO½ü‡‘æä¾­%÷lŸ«†ý‹è®åóΤûßȽ›høDµ_†Õ7*ƒœúÖ뎭ŃJ5§7ƒØZve Çʤ§ûª³²î.ðQ„cû›º¿‰`…i<ùÕrB M'TiFðî£Ifd™‘qžCõk´üËSì0N̸mz "4c±¶ÔîðQ¬è®´F¥™¯J÷ågÍgžÞè5a9;Ê4ï×QüŒ¨Å(J¥¹­¿¼åg1½11/ö“é-éô)ÿ‹Èí¾¾•_ñ\~cìæ7¦&%þÒbý oO¡OüXþC}}*¿â¸üÏ“U®Ú× ´x—-ýˆCñ΢u£; +‡’mœ'“–jõ~ñÒŒã}Ó½ž©·•»Ħ§e)TµÖ¸E+÷›Ö<üÝ•™Ñûvñc"íòpì—Äʈr“íÂŽv8’@ +S‰¸ŸpØ×V$AM2å˜ÕB‰º ”º{Ò£EœqÝ%¬–œ‰³Öh5fy—ÁsB„jÂ9Å57{´›Ž_‰OˆÄJIe&5mÚRÏ3çÑqz·}MÂ*+;¦,¸S£*»*¡JzÖ•Þ…Œâ{Ñ;Ç÷3@E¢Óàu>Ú/ͤRcõ®Â~W¼ž…a,¶³ÏÅçìÍKá Ÿ‡âGّ瘎<½§æGâA,ån‹V7n«ó. +ýÐäeÙ÷–V=¿q©{»:ÕûrùôŒžãò˱ù]ÔäŸjó0Ðo Pâró›sû-þølc7sgïf³qøÚû‰u]1±[ß|E\œ;gæ‰K”ŸÔòg.Žà"àz\jeAè/Æ%¶[/LÏ‘›ZRfJ{I‘èNY«##È}¯ž«ŸQAn ÊêŒõ¥â’q"±: æ ÔÝfR¤8“u-¶“7ZM½šve™í! …8«ÒÑå¢Ún7²ÕÙ¬ÎÔ«7j®tí$¥kÉ+®·—1oprë¨ÞöãUšb‘Uä‡\Þ$Q›}¨ûÚr- Dƒ5¥Ô«2QYlØ*±T•)Y),¿9§ÝnbÛ YÕŽ“qyþjk¾ùÜ•2h|{Îz¿iLüÊÇîžµÚ¼ÏÄõ>ÇäJ¸AΗì%/à­ˆ8žR^Ô¼Ùß ÉÇÙ’:å×|ôªvä¯Ï,z\5.Åä`e­ö¿3åÑø a¸£»Úõ/ƒ,Tn·"ûW™i¹œªì~F€x ] QìÅ?Þtgw•ú¯î/w[“úËï1Ý£|XÈ»|œ;%ñ2¢¤ûcð£Ž$‚cn&xÕ~×éÕ|C¯Û RéÐ^¢Ç£ÅuÆ$Ëyµ¸â¤ïl¸K"Q%:TdYú¢ó EºzQŒfÜšzMjVÕš(±•ÔjhÊr„TSZ)æÛw½“Ô|üÄZ5çXµdÖñRìŸrL6Ý~Š¶H)jA©LéLt·½£‹5äfE´IÅPtÔ”a Ÿ­tåmºõ‘p¸•UÅΤô›^­šï’ÉZÛM £Np¨¬_bîøu—%/jyò°ög÷#vç˜Ú]’ozØ‘¹î>n‡7¼ cFSŠà?XÀ]…<åÚ~ÅÀüÂÇ—´üÍU*ì^G?ŽÀ]¸;.ã¬K©·Ri¤>¤(¦ÔfZREÂGê :Xµ¥mDIÐÒw'–‘½¡Ï=)"ü+^d³¯ŠKѪo±TÎõcÑ· ‘^Ó<ßw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb63úÚÞÇ7ïÄcyY{F›Ä]‡]ú·óúl?ùÅGŽ¥ØŒµûÙsãb&(±M‹FÍp©ÊDYÅBŽɘi}õƧÚQµ±&ZM\YñŠYФåRsÎÍ_Œ­ê­2Új(ÓŒ2¾’Z³õºÖDIqâ%â}£]—Z­¢e•2 SSY^þúœ&M;ËQ‘Ÿ5—¨bThR¡8ÙYÊú9·©]ë{ÂUjUŒ®ò´²]+lÚ|Ï\úÃíi]á¸Î'½œÜËï8ä¦4ƒ„Ú’M¨ÙCŠ4¡NdzIFDfDgÂd\ŒÐ²¾Î¾±FŸZ¥P^µè|—RfKÌi¨H4hŒI5ê=ëaóE–ÃÌO*rMÞVV¾KŸ-¥T«U‹QÑå{fù•É’Ózä~+ªº C‡/|2mŸ[Í›YFjZRd¬óÙ–Yd"TQ\VÞÛ«é9¾:KeËŸ€>uÔûh¿6‘AÖ» l>¯y= +ÂXl1gŸ‹ÏÙš—Â=?ij#Ï1y{OÌÄ‚8X ÊݬnÝWæ\û¡È˳ï,0¬{~ãR÷vt#«öå;óé=Çå—cò4»©É>Õæa Þ 6Äåç6çö[ýðØÆnç>ÏÞÍfãñµ÷êº$b'b·¾ øŠ¹8vÏÍ—)?©äÎ\9À8­õF‡qÛuúUFW"D›S$j$ï--µœÌö$¶ž{2!û‹Ñi®fŸs>J:I§Îš÷5bƒÚ·­ Ÿ«˜¡jOUŸNv ¹<1"òSè&Q2CF“ZÔiFœÙ#"ÚdeÇ¢«NY¨ÂIÔkI¶žW»Kg¼ÍQ©m)ÁªI褚»¶Šomº‹3¹¥pe[µzŒZìzÌš•^dꄈ1]‹ ÞKf¦£6òR­I'š2æ•™ðŠÜzqqšQ•Ún×y»u²ËsÚ’”®¤å+»&’vJÊý‡Å]Ÿ*»çmCµßï ~á­v£ñ=O±™/¹G¡…½×ÎøKƒgº£÷yËäcïóe‰ŨWmÓ|ìQʇð’.3öeäVn{Q5ôbAP)qO·hß2.ß'É|L¨‡)>Øü(çc‰$ªØlj8kWNƒÈöúXmÅVÚ¥=YtÜQshäf^lÓ£¦iV|"Ó FœÕäó¿ê9v´Ê¼]z´ÚP^­³–‹–}‰¢(ÀÛì¯ËÞ¤ÕÁ‹ÕïÀ—TšjÛEš‚VÆ· P”‚Z‰µ™¤j> ö‰ØŠ;Ý;ÆšÍJîúv\Îÿy_†¯¾ÔjUN:*Ú ¼î­÷3¦áQ:+X¾ÅÜð ë.J^Ô>ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb63úÚÞÇ7ïÄcyY{F›Ä]‡]ú·óúl?ùÅGŽ¥ØŒµûÙe,ýÓqmHÖ¡H°©u³PàÔ_—!%µ)ÅhAèÛ¾+ˆøEmløåë4§­$­ªÅ…,fö¢´Sp½›omÏr©zļpÊõ]½eÒ-Ø,Ô¨§PäI2~C®)ãdÒNš’Dœ•žÒ=»3ÝN¥=)JO×ѺI+G=GUW|„ôb£”o›¿}ä{¹ëŸX}­+¼!/Ä÷¢> îe湆ŬåC_!¢$…HÞÌÒ½èf½&“#%ežFFY£][Q •¬ïªÏ¸¥Ó,{[Æ»rd{&¬ºÝyÇQJ¦½_xœ8ÉA8rx–dÚ FeꑺU&¤ã¤­y=–zºÝÌë£MÅKFW“´V›»Ê÷êV,F 1O‡H©C‡K“K“{¬T!Êš¹ªjR(òÌõ!I4šréðf ⛕ÓMdÒ·;OijÁEEIYŦ´“zYÙ5g²Ìмó®§ÛEù´ŒÆ?Zì4}^òz„°:ØbÏ?Ÿ³5/„,z~‰f>Gžb8òöŸ™‰p°•º-Xݺ¯Ì¸+÷C‘—gÞX`9XöýÆ¥îìèGWíÊwçÒ2{Ë.ÇäiwS’}«ÌÃA¼1@l‰ËÎmÏì·û᱌ÝÎ<}Ÿ½šÍÇâ?kî%ÕtHÄNÅo|ñrpퟚ%.RSÉœ¸r;€p¬G¶_½-KŽÔ4ýN˜¸æz§Pi#VEžEžÜ¸‡ZRÐ’{}Îçâ¤t¢ÖÔ×z±Bï——R´ªõûÇ "Jµ£?:%8µ¡æÉëe¥-ÃRI§IŒÏŒhi¸ÔÒÑW¾kÕ¶ÿ·Qš©SÐÒ•%½ê×~.Ž¶²Þà5ùTÄKzEN¬¸n8‰Ž2Ó`K‚Ã%Q)-Í"q[T|Ñs'ÅÀb£ERi+æ¹Úo_Ñ.0UÝdÛ¶O+&–¯¤WÛÿt}FÊ,\¤.§!5¨u›·ñ±×Ûäsf9¨‰IhÛQj7<¹Ÿ¼'PÁ*ª›²³¾žvüç׳a ŽteV7wIh+_;vmÚ}Šýgßx«bH´"´§Š cÇY)£*#š·†÷¢SÎ0ƒá×°•·ˆ Ò§=-Yh­+þvÄö…ˆ…j”Üuç¤ômùžÛK¬(Ǹüç«ö”Ï̬~éë]«ÌüOSì~D«„áY~ÂRþ +؃‰å%íKÍð¼œ}˜ù#®]wÏJ§nJüòÇ¥ÃRì^FZßkó>Xý€¶ˆú0[½¯Rø2ÅFër/µy–›™Ê®ÇähŠеÌSýçFwqy_ªþâ÷u¹?¬¾óÆäÇ´ž'·CIžÌÍïÛå²¾óa¹ŸÖeëòìùUß;j®ÿxc÷ kµ‰ê}ŒÉ}Ê= -î¾wÂ\=Ðå»ÈÌn_#›,1:Ú”¦ÉÄšÒDjI(I#à̳̳âéŠû—?±ðúWmÓ|ìQʇð’.3öeäVn{Q5ôbAP)qO·hß2.ß'É|L¨‡)>Øü(çc‰$ˆnüp·¬Z¢éu§d¡ ¸jƒE™1œœ,Ë'YB’gÓ,ó#áéa¥U][ß$¼Èµq1¤ìïî‹~G¤î‰ÂËæë¤PJî=úM3ho2û.’LõoŽ¶Jof{LÈJô*°‹’µ¬ïi+[ÜEôêU$¢ï¥ukÃ;ók,èª-¢µ‹ì]Áÿ²ä¥íCï#¾VÌþã„nÜóK²Mï[7#ó½ÇÍÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø®ïŠKѪo±TÎõcÑ÷ ‘^Ó<ßw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐïï9L(Ò£Æmõ:ööip̈‹Iže—¬%a誮ÌãV¦‚<˜sx?zSÞ™":So)¢KffFD”ž{}pÄQÞ–ÁJzjä€"€“î×ó’Úíç¿2bÿr8ÒìûÊ­ÐÔ»~ã:Ƙ¤ ŒÀþ‡6·±ÍûÆ1ÞV^ѦÃña×~­üÿŸÛþqCÑã©v#-~ö] 4»`Á¶hÑ—zXPÜmŒ•©m9.s\Ò¶>òZ=jõsàÈRâi·6ôj>¸ÎËW2¹m‡¨”RÒ‚êq»×´ùxÉ|ëFm*-ïgÏiù1\z†í>KªiG¥jY¡)2Fg÷#Ø>aèÚi¸ÍZörši]vŸºõ}F”¡²ŒZo4ȇs×>°ûZWxBÃÄ÷¢ îe𬽠+5>sµ#IBCªN²3NòI=zˆ³3-9æ(Öf…»,Êk·dZðêUëNݹjì·öP7LxY(£=)_¡—F”¨Ë!nã9ú³qWk,®ß5ìgã:p¼ §+'žvJÙÚú‹ƒ9t +Ú•E*a¾ú¤¡+žsäHK©J·én+Œ‹a‰Š’o'{e’²Vz‘a‚‹Œ[j×iæô›ºÖÙ 8ç]O¶‹óiŒ~µØh0ú½äô+ `u°Åž~/?fj_Xôü?>Ì|<Äqåí?2?à`7+tZ±»u_™pWî‡#.ϼ°Àr±íûKÝÙÐŽ¯Û”ïϤd÷–]ÈÒî§$ûW™†ƒxb€Ø—œÛŸÙo÷Ãc»œxû?{5›Ä~×ÜKªè‘ˆŠÞø3â*äáÛ?4J\¤þ§“9päwâ÷ÄJ\ûv¹¹(âS^†ûs$%ÓdÚaH2ZÉÂò¹Üø‡î ¦­®êÝ·?2³Nú¬ïÙlÌÕ­YØ{K Í¡ÚÏm7[[ÒÑV¦BrFD¢4ÍŒÛoj̶¨Èó.˜ÓÆ­IIJtåtÓÉ´²êm£)*4£TškÖŒ[Ï­+—ǯÉø@veFMS‘d*dPå®TGPÓh2Vn%*BöíA–͇Æ)1tU9d¤®¯i+=of²ÿYÕŽn.ÖW‹mjëÔT¼SÇ)ô;‡u⤚FßLШ Á'bMKq›w7ÏyY¨ÞZ”.9 >JjZWÒmÙ¥¥l³æY•¸¬^ŒæœÜ4ÑI^ïGK<ž·‘$`uýF»«”’Xý€¶ˆú0[½¯Rø2ÅFër/µy–›™Ê®ÇähŠеÌSýçFwqy_ªþâ÷u¹?¬¾óÆäÇ´ž'·CIžÌÍïÛå²¾óa¹ŸÖeëòìùUß;j®ÿxc÷ kµ‰ê}ŒÉ}Ê= -î¾wÂ\=Ðå»ÈÌn_#›>]fξ$â×V·ëÌÛОƒJB¥K§"S2TÒ\Í(SŠI'{ÏšõÈ~¡V +šRZOI䞤~jÒ©*­Åè­«µtóy jè­D¹éºž1Qjê}ómTÈt¶‰çòJŒÒN2¥oyežg‘lÈ~¥¸¶©Ée­ÉÛÄüF¤£$X¼Ò²Š»êÊçÛÝ5ÎÅü8¨ !ËÆ~̼Žû£Ä^ÔM}£PT +gDSíÚ7ÅŒ‹·Éò_*!ÊO¶? +9ØâI)égkðjì®n.Rí«yæ›6èÒU)—¤©“ŠZà©2ƒWTEÄbç¢×Ê[Uš]ùÛ¡¤­û¢„v;¦û³î=mÏ5f$Õ#õî; +Ltê\ÖitéÌÕžkõJ'f:n¬óË5+Qd;ã#•äªu]ÇE>l’±+É(J›ÛhËI®|äî^qŸ4  +‰ÑZÅö.àÿYrRö¡÷‘ß+fqÂ7ny¥Ù&÷­‰‘ùÞãæès{Ê4e1ø®õŒµØSÎ]§ì\Ì `ñö}Ãê÷“x®%'ݯç%µÛÏ~dÅþäq¥Ù÷•[¡©výÆu1Hýmoc›÷Œb1¼¬½£M‡â.îý[ùÿ?¶ü⇣ÇRìFZýì»x}X«ý‡[°Úì·mÙÉaã­3T8ñjfo«Éä?-¥“Œ›zI$ƒ"I‘‘–b“¦ÝHÊK-´•³M'®å¾OA(8ÆWzZVMç•›æ±Æñ¦¶ü‹9ØW½Ë@¸.‚¨FU5Ú.òìˆÑR•òIJ‘´!IYš4 óV¢Ïa¸h-4éÆQž–•Ò{,›yõŸkÉè5RQ“ËGFͬó»\Öñ"mÏ\úÃíi]á øÎ'½0\s/¥Q.*´³¹Nxô´ê´žHY™IWì=œBR ±MjA]6èhZL‘@¯Æ6ÏW )õ¬ËÔÞÏÖ4å'Å•ú¥çfgjÆ1¾œ4zá5åtXL ¯@¸h2¦Wjuh­ÈÞ›]U”¶û KiÉ¢4‘ÒE´•êåÄ!âàâÕÒM§«Ÿ=e†q”^‹m&—­Í–®³C°κŸmæÒ2øýk°Ñaõ{ÉèVÀëa‹<ü^~ÌÔ¾±éø~$}˜ùyˆãËÚ~d~$ÀÀnVèµcvê¿2à¯ÝF]Ÿya€åcÛ÷—»³¡_·)ߟHÉî?,»‘¥ÝNIö¯3 ðÅ°'/9·?²ßï†Æ3w8ñö~ök7ˆý¯¸—UÑ#;½ðgÄUÉö~h”¹IýO&ráÈîįétÊ}µ_•Z„©ÔÖaH\¸¨Fµ>ÂPf¶É9–f¢ØE™Ý4ÛV×unÛŸ™´“¾«;öXÊt_„³[–$؈Yž•O©Mq þ”pƒ-²?P—·ŒÆ·yšã½>ȯ7(˜×Z“ZnRòQ‘¢žªë¬ZÆë·LKÆä¸Úæ䪖Ù! ÙR5(³ÌפµfEÄ(1ÑÑ’õ\rÔå¥ÏÚíØhð3Ò‹õ”³Ö££ÍدÚDØ«{âu&áªÆj…ãU¸É§‘ë0-äפ¼Þ’5-h߈Û4že‘´®ß Jœ¢›w—EËAwØካV2´W«ÒPÓ}×8¶æZý&î¸ê*؉Pª×¢KžÅ>›/L½O$'Lƒ€–‘Íð™éË€„Œl8-$šZMzÖwÕ{öpUI·)¶Ô½Tý[­v·oq}Æ|Ñ|{Îz¿iLüÊÇîžµÚ¼ÏÄõ>ÇäJ¸AΗì%/à­ˆ8žR^Ô¼Ùß ÉÇÙ’:å×|ôªvä¯Ï,z\5.Åä`e­ö¿3åÑø a¸£»Úõ/ƒ,Tn·"ûW™i¹œªì~F€x ] QìÅ?Þtgw•ú¯î/w[“úËï1'z­­ëY>ÍLb°›ü¯¥š\WšíµÑÇpÎ…]Âëi¨ÛTÁ¹¥Æj<ªD¦Új9³ËôI-Dá'Q’g™™í-£½YÆ´lœ¯'i+½}[´)Ë+¸ÂÓqW‹I.ÄÎcºkŠ/øqPþB> Œý™y7Gˆ½¨šú1F ¨Έ8§Û´o‹o“‡d¾&TC”Ÿl~s±Ä’U[ú‹Yµ¯ª…Û@;^ªíJ8riõùíÓ‘uh\gU«$8JÍI4–j,ó1kBjPЖ’ZM§}|Ïî*ñq©§ôlã'n{Ýlë>e›_Ä+¾Ô«\-Z46¨R^”ÃTj£Sª3^q•4LšÐH$³’ŒÔ’%Œ‹géxÑŒ´täåg¢–ß‘ÇFUå-¨ÉKÕ’rms|Ëz)‹ …Dè­bûpÀƒ¬¹){PûÈ³?¸á·<ÆÒì“{ÖÄÈüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒv +?‰üöU;#]âF‹ ÄE]n3.Ì_1g¬O¼C<õ–hëÉâ’ôj›ìU3½XômÂäW´Ï8Ýî[ꢄ ?•p;zY|ïP{BæPö}Ãê÷“x®%'ݯç%µÛÏ~dÅþäq¥Ù÷•[¡©výÆu1Hýmoc›÷Œb1¼¬½£M‡â.îý[ùý?¶ü⇣ÇRìFZýìµõëû ~Å°âvÖvä +‰¼¼ä:Ê¡ò*¹%Õo¶–—šò=Y™ð +•F®ù7h§%®7¿ª³ÖYï´Õ8)-&”µJÖõˆ~ó¹ðê«LT{fÙFžn6¤Ê~¶¹ˆ$óIÞ¤jéç°K§Nªw”Ó[4mãr5J”Ú´bÓæzWð±ïîzçÖkJï1œOz?x.?¹—ªàe¹4º“/FvKnFy a“É×R¤y–JQl-¥·ŒQ­~óA-O±”¢„•¨r +M™dÍ¢;å’ýf¥ô$ýVœaõçüy §ˆZ§$ûóMµ„w¼ ã×)Gɦ[ 9uÓ©‹jð› +\ãt͵Ágzm-i,‰DII³Ïi¬¬àߨšÛrï Åzí=–þ—|ë©öÑ~m#;Ö» ¬>¯y= +ÂXl1gŸ‹ÏÙš—Â=?ij#Ï1y{OÌæØguáí]n볬UY6¦­s%±ÉÜ$¸Ê÷…iI6œÖ•dF{Hø‡E:’kBVZ¥’|Úóî:á秧åu›Yå–]ç£tâ“Z¥Ë…JÂètyŽ’I©ÍUf>¶L”FfMº£J³"ËoL!Bqi¹¶¶h¥sìëA¦”vפò>Æån‹V7n«ó.Îèr2ìûÏÖ•oÜj^î΄u~ܧ~}#'¸ü²ì~F—u9'Ú¼Ì6B‰ +J$¢I‘šODG™‘å·#àÔb‹I[Äœ#†ÍTÌ'‡1×á6äô¹V¨6QæjQ-¤s\ÒHˆ”Jþ•—¨ +ͻͤž^¬sV_~E›­I%h&ížrVwvd}\4K’k(6³6ókBã1)éIqzŒ÷ÃSæj#ÈòȶlèÓ”­-/r^D:³Œø±Ñ÷·æj_‰ËÎmÏì·û᱓ÝÎ<}Ÿ½š]Çâ?kî%ÕtHÄNÅo|ñrpퟚ%.RSÉœ¸r;€2Ï„€΄~Á?Š_0ûséúI"à"/Xˆ‡ÀDfG™Fô¥Â~S3œ„Âå2K&ä(7K,”Is-DJ.hý)5–Óòâžmfºx~O ãóž¯ÚS?2±û§­v¯3ñ=O±ù®s…eû Kø+b'”—µ/6wÂòqöc䎹uß=*¹+óË— K±yk}¯Ìšl 趵E±]!ŽCS“f0R˜uJßuï*Òƒd‰:x5ºd!W§RRZ²Îù'k,ž{It'ÅéFï+f×».óá^í›^¦;†±(rÔ¦Í3™©Ë´%'š“½¼£Iê-ž ýS£8»¹¶¶h¥ä~jV„•”{nß™(n#èÁnö½KàËw[‘}«Ì‘¹œªì~F€x ] QìÅ?Þtgw•ú¯î/w[“úËï1bíÅ‘÷c"Km¸…­‡¤¡Ô¤ó4(Òd¢%Ã222Ï`ܳYû—°Š ˜è¢á49¬.,W\qÚµA¥7%m’žk-{Iµæ’WꈳP¡YÞõÍÛÕŽ®fYʵ%kA<•ýidöé\¤\5#—D·Z ÅÞЂ†Ì—d¤–œõ/[ÆjÍ].ÈN£ AZRÒw×d¼ˆuf¦ýXèûÛó5çÄöèi3Ù™½ãC»|¢öWÞjw#“ú̽c>]Ÿ*»çmCµßï ~á­v£ñ=O±™/¹G¡…½×ÎøKƒgº£÷yËäcïóg«{áíí.»xM·“GrÇLN{“Þ}5½6ãf¤“H2?/³3â)U†ŠŒ¯”œ²·VÞÃíj3sr†­vúövž¥ñé¶Ý ªu­!—Ipß’©¥¨«ŒE¥Äs2Vg‘ë*ôï)-+ÍIf•³iýÇaªÚz6ƒ‹ºnþ¯¸ú»¦¹Ø¢ÿ‡á$9`¸ÏÙ—‘#tx‹ÚF¾ŒQ¨*3¢)öíâÆEÛäáÙ/‰•å'Û…ìq$€S*t)x£vÓë¸Lå昰(ËaØ–eH`Ýmf¢}Å©&i<ˆ\Y½¡©'èzò×&“ÕâQbd·æ¥ ?R/(¦Öo_QÉðõ«4®*IÓ·?Õh‰ÜÚª?Ea†¢Gú"œK†i.,ȸÇ⦞‹½Tòyi7~­Gê–†’µ'užŠVëÖ\AJ]€*'EkØ»ƒþeÉKÚ‡ÞG|¬=™ýÇݹæ6—d›Þ¶$nGç{›¡Íï(Ñ”Çâ¸Ö0×aO9vŸ±p?0ƒÄñåí?3UCŠ»‘ÏÄc°QüO粩Ùï4Xn"*ëq™vbù‹=b}â笳G^O—£Tßb©êÇ£n"½¦yÆïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ3tZTû½†£T f†—¾'{^ƒÕ‘—¬cµ:®›º?‚ž³ú¶-XŒeħ’ɵ¬Ü=kÔzŒˆ¸~ðùR«¨îÄ ¡¨äƒ‘û +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb6;«íDç–töË>–dcåeÚiðÜEØfDíÆtWäÉtñ’ÞF·]^“[Y§RŒò?Ó<%À5ÝV—'/‘š{œºqý½ç«Ê[Eôæ·¯¬× +¿Þåãò>pjéÇö÷ŽRÚ/§5»øí}d8Uþ÷/àÕÓíï$\+Ü¡Iµ.*-b­ ¤4ú7†Þ³Öœ³,¤+aqì«î“œm½Éf³ÏäIÃàT%}8½y/áËGäGªØ…?H+}-ô_íî-w•µ"8}VÀü)ú@ô·Ñ·¸o+jDpú­øSôéo¢ÿopÞVÔM8al5k˜ËU6g“¯Íl$ô‘dy)[v +ìM]ñ¬­—9*”4V»’p†w"oÈ4zåÉpTœÅÊ ĘK¨î©­ñ“uÕ,ÛVr šNyÂÚ\eGtÜb–÷'d•óÙØejîz”›ÓŽmùöœ[”¶‹éÍnþ;_Y¸Uþ÷/‘˃WN?·¼r–Ñ}9­ßÇkë!¯÷¹xü‡®œoy)`¦åjU‘|Û•ÖqJ‰Tr ƒq0ã)½ùã6Ô(Éõ{sà>º.¥7 +­nÿ"N©Í=8»=Kørèî•°#âe‹:…&½ˆÛ¯ÅpæÌ4“(6Ü%ORÐY«,‹o£ÀVtj)$å“ÉkÔ\cio°qm-Y³79Kh¾œÖïãµõ‘§áWûܼ~F{ƒWN?·¼r–Ñ}9­ßÇkë!¯÷¹xü‡®œoxå-¢ús[¿Ž×ÖC…_ïrñù ]8þÞòúnMˆ˜KoÖ)ñ.¨7 +dÎßÍø“CG½!:¥Ç6ìÏ„¶Ïn–%×’n.6\ý½ˆ¼ÀPTbÒjW|ÇÖºpÂõUÛ^¸-º1êÍSÒ¶ª,JS®ko™S$Œ”KÏifYÅ,Ld¥•õ5ÏÚ„èOMÊ.>µµ§ÍØz`x¯è…­ÜÕ¦½þ–É÷Çä|Þêýé|Î5û¶šûÑeÞöwÙQ¡ÆzBB‹…*J¤‘‘ú†C²Ñy¨Ôî_#“sY9Sñùž¯Ž—'WØÝ/ýh~­…Nåò>iÏ¥O½üÇŽ—'WØÝ/ýh-…NåòséSï3Ï]×5æ£Ç¾,'žuD†Ûmù ZÖ­„”¤¤™™™ðm1ñè¬Üjw/R›Õ*~?3”O´ñ6•ÙskV”hí§y©Í¶‚àÍJSÄD^¹ŽQ­NY%7ö~GW +«6áÝ/™ÄK|Ž·MvÝ}çÆñÒäêûû¥ÿ­ݣЩܾGçN}*}ïæ¨üÌ*QR§•ùåÎï°æü±TøyîCê㇢G£Sº?2O§Ëm>ù|‡,EÃÕ>{§Pú¸z$z5;£óŸ-´ûåò8Íψ5LSñš‰P»¬VY*µ6Vq*SMå)‡Ò¢JIq²=YåýXé +JÚN+Y¥³´ãW*ö‹•=iäåò7Äyñ»*3¢)öíâÆEÛäáÙ/‰•å'Û…ìq$€÷n A³®¹ò­«]¨t¹ñ¢¢MÉ’ºÄ婤žHr3o¶d–³2B&^¸·ÂÆ#iÉÝ6Ô[Ñ]·³*1s©Nw„ri'5'Ùk¬ˆïîø÷Åù9«“êó¥R¥Æ*52R +Ž™Ê\}O7´)z¨‰&|G·„LÄRÞéÞ0ŽjWkײæw áêï•-:’ÉÇE5¡wÕ­àh0ÎP…Dè­bûpÀƒ¬¹){PûÈ³?¸á·<ÆÒì“{ÖÄÈüïqót9½å2˜üWúÆÚì)ç.Óö.æ0xž<½§æj¨qWbò9øŒvâ³…tôçªÛxÞxÒ¥^4–i""Ⱦð— T ¬¼Ž2¢¤îH¨A6”¤¸DE÷„C±×Å%èÕ7تgz±èû…ȯižo»Ü·ÕE :*àvô²ùÞ ö„?Ì xå^3í~g²Òâ®ÅäraÈêÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb63úÚÞÇ7ïÄcyY{F›Ä]‡]ª³ ò|ÿÐÓüøõ%ü1CÒ"ò]ˆóù,ýìö*¶ÌÊÙ5ª”~J†µ’HŸcQ£|O©©&^¹‘¨¤ÚO5¯ÌúàÒM¬ž¯#â“l+a%÷ˆ~ÏÁ8îye´Þ°òm$|+ˆ¿`B1úžôOÁqýÌÐ= ý‰~DhÆ„þÄ¿¡?±/ÀµDšUO"ËôÑ~m"“­vðú½äö+ `u«Å¦[;æó3Bsñæ§Ä_t,z†ú‘öcäyÞ!zòöŸ™ï  Oâ‘s…†ð×ð´þ)Å‹¹U–Ó‹v)’Gɪà"þà¯ÝûŒ»>ò~~ë߸ÔíÝÉ%a\”DeÉ”îþ.‘’Ü~Yv?#Kºœ“í^fo  OâÞÜÅØo  Oâ\Xo  Oâ\XØ? E™séIï_ˆ²ý÷lc7wgï5›Ä~×ÜhˆÍà×ct›-ž*ßæm¤ÏÇi$]$JÀ?Ü¡ì£å%í2ÞþŸÅ!:ä; á¯áiüR ‹Ž²Ùb%Œd„—ïfŸÄ_ÃR"bßîrö_‘' +¿t´¼Í¾Ý\D¬#¾ÈË28ÃÙ0››ËG·î6xþJ]‡^òa¼¼Í?ŠCÑ®`ì~ï  Oâ\Xo  Oâ\XÔoa B¯Ý)"ó³€²â|d÷{ó~·Üiwó½ßyÃüQöл¶ÐÔ’?ÞTŽÏ÷àwÜ.$½¥ärÝž4{™;Ã_ÂÓø¤4·3öÃ_ÂÓø¤?‡oJ¿COþ¤‚çË’ðdˆ°úÇ"â¡Ò¾ +ØóW)/j^lôÊò:å×XoÇJ¯èiþ~JýIXô¸<—bò<þK7ÚüÏ—¼5ü-?ŠC÷sóa¼5ü-?ŠAqbÙn!i ÆtÉGÈõ-¤E÷2Å>ë?Ü_jó-71~껑 >("¼,A(ˆËÇŠ zŽŒîâò¿UýÅîëòY}æ&o  OâÝ\ÇXo  Oâ\Xo  Oâ\XÚÑ FÌ$‘ïfoeú†FvùU쯼ØnG'õ™{F|»>UwÎÚ‡k¿ÞýÃZíGâzŸc2#r½.Œ2 8ô&Y®nj[(R)p™¤Ìmqòj£Ïg‘–ܸ§J9.~eµ–ÆZo¡Ñ{¿Wé=¯¼´Ð[r2Ó}‹Üíø!¤ö¾ñ ¶.äW½Ò”Øqmº*؆ÃKû!¢¦ÙB‘É-™¤ˆÄ웓öeäVî„R‚Éq—26(bMQP)qO·hß2.ß'É|L¨‡)>Øü(çc‰$¦8‘OáÍÕˆô™õ9ŒQ`¹n6Õ9é-¦zãºk2SL­$fæŒ÷ÃÓ÷³p»ì"ÒWÓzY¥êÝm}¥E|^óRJM¥½­›õ³Ø»5ä|éMÄJžA§>ôšáÏŒuŽFu£"(kß?Fz:RŸÑ¿…¨½M‚KÁïN£ÕèúÝÙ_Ì…nú©«ÞzpÒõ{󵻋Ø3ÆáQ:+X¾ÅÜð ë.J^Ô>ò;åaìÏî8FíÏ1´»$Þõ±#r?;Ü|Ýoy@ÆŒ¦?À~±€6» +yË´ý‹ù„ '/iùšªUؼŽ~#€:îø¤½¦ûLïV=p¹í3Í÷{–ú¨¡#BgOå\Þ–_;ÔЇù”«Æ}¯ÌöZ\UؼŽL9@ÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb63úÚÞÇ7ïÄcyY{F›Ä]‡]ú·óúl?ùÅGŽ¥ØŒµûÙq—‰w$z&Û6ýO©Êvˆ¤°UZ3’iòQV§3Þˆˆöžh•°Sºs©)I¤š¾Œš·ªµ–±­%F1M½+^)ßÖæ̉.›úåÄ;f¨ó–%6Ÿ&"%̦Òˆû/:kÞ‘¾%Z²Y¥DdDe³h“ +¥(úÒ»½““iå™ÂUeR2õcekµšÎÞy–ç®}aö´®ð‡LgÞ˜.?¹—Þt•Ä!öØ\…´ÚÖ–[Ë[†’3$'3"Ìø =‚ŒÐ¼ˆ:F7ω>-ì9¯"dÄ:ìv âëq än~‹úœË15aSMéFÊ××Ïî+5¦“„®ïm\ÞòTµ. —WdM L£8‡ Äíï|YdG¬·µ(´íˇ<ÈF© M>ÏÄ›J£©®.=¶û‹€>uÔûh¿6‘AÖ» l>¯y= +ÂXl1gŸ‹ÏÙš—Â=?ij#Ï1y{OÌÄ‚8X ÊݬnÝWæ\û¡È˳ï,0¬{~ãR÷vt#«öå;óé=Çå—cò4»©É>Õæa Þ 6Äåç6çö[ýðØÆnç>ÏÞÍfãñµ÷3eøuÜÝ%ÑRÿöZG¼‘é8JÊ0ÎR^Ó!18††tD±½™ùÔˆ˜¾N^Ëò$áyHûKÌÛ½Õ½ /®Ð?Î aw;•oÜlñü”»¾eÀCÑLú5ÄÚò×ïù-÷ŸMÝüß­÷]ÆüïwÞqwžÛCØ©÷‰/iy·cÇægXÒðþòªõŒÙzYÁÒ¾ +Øó,W)/j^lô,?>Êò:èW|ôªvä¯Ï,z\5.Åä`%­ö¿3åÑø a¸£»Úõ/ƒ,Tn·"ûW™i¹œªì~F€x ] QìÅ?Þtgw•ú¯î/w[“úËï1¿H’ýFR¤8™+A)yfI$¤òØEÓ1pP•–YhIÉg´–D@R}Úþr[]¼÷æL_îG]ŸyUº—oÜgXÓ€±˜ÐæÖö9¿xÆ#ÊËÚ4Ø~"ì:ïÕ¿ŸÓûaÿÎ(zÜõϬ>Ö•Þ—Œâ{ÑÇ÷2÷Ö––©ó–¹‡ aÕ*JrÔÁLÍÂÔFY¤¶–de°Qšû2žÔS Èt;ÉÌ@º$¾ã¤¡ÈÜšþúDno IÔ…%$zfY{Eººn1Í]æíe·2‚ViTÓ›³´rWmìË2Âa%Mz3ò]¨U–R\iÓªGn<¸®¶DJam¶”’ráÛžyðä!b#f²K/Ím§ž²Ë -$óo<Ô’Me«.òûàu>Ú/ͤf±ú×a{‡Õï'¡XK­†,óñyû3RøBǧáø‘öcäyæ#/iù‘øG ¹[¢ÕÛªüË‚¿t9v}冕oÜj^î΄u~ܧ~}#'¸ü²ì~F—u9'Ú¼Ì4ÃÀxœ¼æÜþ˾ÍÜãÇÙûÙ¬Ü~#ö¾ãCÆl¿»›¤º*_þËH÷’='ÉCÙFÊKÚd&'ÀPÁˆ–7³0?:‘ÉËÙ~Dœ/)iy›wº·¡%õÚùÄ .çr±íûž?’—a×̸z)ƒ?@¡ø›^Zýÿ%¾óã)»¿›õ¾ãK¸ßîûÎ!âŽóÛh{#á¾áñ%í/#–ìq£ØüÌëC>ÞU^±€;#`ÏCë#Ø:WÁ[eŠå%íKÍž…‡âGÙ^G] +ïž•NÜ•ùåK†¥Ø¼Œµ¾×æ|±ú?l7ô`·{^¥ðeŠÖä_jó-73•]ÈÐ ¡j=˜§ûÎŒîâò¿UýÅîërY}æ'ÉŽiÿ6X1\Z€vÝ7ÎÅü8¨ !a‚ã?f^Efèñµ_F(Ô™Ñûvñc"íòpì—Äʈr“íÂŽv8’@ +zÞP£b©S.ZõߣÓàÖÛU|e9\7·Ä¸’—$¹„0dE¥«?Pžé7äÛk&ÖŽJÎË]ÊŒMKUJMF*)ݤô³wWz¬z ^Ô¦±6ÝbÒ¹huø5‡œiú<|E=Ji¨ê_&7.2u%:Ó’‰g·VD?q¤Ý9i©GE6¤ÛI»ñlöœçZ*¤t%)I'¢ì­œ®µX¸â”»8TNŠÖ/±wü:Ë’—µ¼ŽùX{3ûŽ»sÌm.É7½lHÜÎ÷7C›ÞP1£)Åp¬` ®Âžrí?bà~a‰ãËÚ~fª‡v/#ŸˆÇ`©X|W©wB$Z£­0Û’P9Rg–d/0ôc(¦Ñ_R£OYkã¨ÔÓfg™šRgø#'xüR^S}Š¦w«¸\Šö™ç½Ë}TP‘¡3§ò®oK/êhCüÊŽUã>×æ{-.*ì^G&Ž ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ'üè§ö×ÈP²ÀñŸa«ÞyðÎ)}¶¾ñæ;Œ»>ö}Ãê÷“x®%'ݯç%µÛÏ~dÅþäq¥Ù÷•[¡©výÆu1Hýmoc›÷Œb1¼¬½£M‡â.îý[ùý?¶ü⇣ÇRìFZýìºøedYµ+Z‹*£iZ²å:Æn¿:øU>KŠÔ¢ÍÈÄ“Þ•ý'¥·ŒRâjÎ3iJilTô–­¼å¾”eÚ‹yæêh½{Ü_f‘jØŠUƒmÓX©M§»$éwoŽòV¨ê^÷“’=%¨ó22Ë<Ï1ʃu*EÉÍèéZôôVkiÖ²Tá%t¯ié<¤ž¢ÜõϬ>Ö•Þ´Æq=è‚ãû™|jðcTàM‡7"!‡Z{5iɵ¤Ò®k‹aðñ +=F…«ë)ëu›JÖŠO—]“E†ü*;LÃL’§¥ÄèÖ²ŽF—”‘š”…·‡e»Sª¡m&´í~~}W(§E¦ç¥ žŠµí•¹µØ›pE•|·“R\©ó\•&UR*b;-ÇŒœm”©Z$‘%${v˜¬šYY+$훽ÞÛ“°OIJOJòi·%kä’²ÙecC0κŸmæÒ3ýk°Ðáõ{ÉèVÀëa‹<ü^~ÌÔ¾±éø~$}˜ùyˆãËÚ~d~$ÀÀnVèµcvê¿2à¯ÝF]Ÿya€åcÛ÷—»³¡_·)ߟHÉî?,»‘¥ÝNIö¯3 ðÅ°'/9·?²ßï†Æ3w8ñö~ök7ˆý¯¸Ðñ›/À®æé.Š—ÿ²Ò=äIÀòPöQ€Ær’ö™ ‰Ä0”0C¢%ìÌΤDÅòrö_‘' ÊGÚ^fÝî­èI}vþq ¹Ü¬{~ãgä¥Øuó.Š`ÏШ~&×–¿Éo¼øÊnïæýo¸Òî7ç{¾óˆx£¼öÚÅHø@ï¸|I{KÈå»hö?3:ÆÏ€ðç•W¬`ÈØ3ÐúÈö•ðVÇ™b¹I{Róg¡aø‘öW‘×B»ç¥S·%~ycÒá©v/#-oµùŸ,~À[ Ä}-Þש|b£u¹Ú¼ËMÌåWcò4ÅèZf)þó£;¸¼¯Õq{ºÜŸÖ_y‰ãrc€ÚOÛ¡¤Ïff÷ Fíò‹Ù_y°ÜŽOë2õŒùv|ªïµ×¼1û†µÚÄõ>Æd¾å†÷_;á. žèrÝäf7/‘¿Íž´Úû#®Ù–ÝB-6àRRoT ½%‡”„¹™2iZFÕððBpTÒ–~´²M'© £ªÜ–„siµ­øŸBqÜÔû†—K®b¯)RÒtèÔ‰–“=-žü½'³<̲Ȍ#$Üc,–»åä}U'%)Ã6²K?3ÁºkŠ/øqPþCæ Œý™ywGˆ½¨šú1F ¨Έ8§Û´o‹o“‡d¾&TC”Ÿl~s±Ä’SUÆÊ¿ˆ¶íÛ"Ši¥Ñ¡Ì E©ÅmÕ?1æqiæÈõ‘­(,¶p嘷¡†s„e ÝÍ©Yþn_6Tâ1*”'k*iÆêþ¶óm,q´VîÓ,‰têUé‘ٯħDi6Úâ)×D”‘£'ˆ‹„òàja$Üô´œc8¶Þµ¨‰Kz:*R”’Idõ—€gÍ¢tV±}‹¸?àAÖ\”½¨}äwÊÃÙŸÜpÛžcivI½ëbFä~w¸ùºÞòL~+€ýcmvó—iûóÖ•Þ›Œâ{ÑÇ÷2õÜ 3&—RfDEËeÈï%Èíy£ÈR ”Úv—4¢Ø[Ko£Z͵>ÆR™TÛaŠTº4ÕÕgÄ’Ê™~ J’숻Ùð–£iFEê¥Áu¥&îÔ'fÔ¬þã:ãšNpºi§ÕŸ¹ù–w kR«tU.MÃM®%‡ †eӦѽ! $¥ä(ÏK¥Æ[6d bcg{8Þí§¶üÝE¦nQ¶”d•’k,¬µõ—Û|ë©öÑ~m#3Ö» ü>¯y= +ÂXl1gŸ‹ÏÙš—Â=?ij#Ï1y{OÌÄ‚8X ÊݬnÝWæ\û¡È˳ï,0¬{~ãR÷vt#«öå;óé=Çå—cò4»©É>Õæa Þ 6Äåç6çö[ýðØÆnç>ÏÞÍfãñµ÷3eøuÜÝ%ÑRÿöZG¼‘é8JÊ0ÎR^Ó!18††tD±½™ùÔˆ˜¾N^Ëò$áyHûKÌÛ½Õ½ /®Ð?Î aw;•oÜlñü”»¾eÀCÑLú5ÄÚò×ïù-÷ŸMÝüß­÷]ÆüïwÞqwžÛCØ©÷‰/iy·cÇægXÒðþòªõŒÙzYÁÒ¾ +Øó,W)/j^lô,?>Êò:èW|ôªvä¯Ï,z\5.Åä`%­ö¿3åÑø a¸£»Úõ/ƒ,Tn·"ûW™i¹œªì~F€x ] QìÅ?Þtgw•ú¯î/w[“úËï1…-&¢ŠNær5$¼±‘j<ŒHÅRÞ´¢¡&’kMÊVíÙb6¶ý£'8&Úõbž½[n^qž4@ +‰ÑZÅö.àÿYrRö¡÷‘ß+fqÂ7ny¥Ù&÷­‰‘ùÞãæès{Ê4e1ø®õŒµØSÎ]§ì\Ì `ñžFF>§mGÆ®#CbMØCI3ÌÒÚ %ŸO""ï¬%cÙ I÷kùÉmvóß™1¹iv}åVèj]¿qcLRÆ`C›[ØæýãŒo+/hÓaø‹°ë¿VþOí‡ÿ8¡èñÔ»€–¿{.-B‘†ÔË_ ¦Vnj½¹S—BßñŠ +RL¼[쇤™¹³O5™é"ÚUI¨¥$¤¸ÏWªµª4Õ897Ô¸«_­ÎBøƒ ÕÉ–õã_¬Uõ¶”·T€–Û6Œù³7MjQÒ.3(Ê­í(Å.{?¸USjêRošë¬ýÜõϬ>Ö•Þýc8žô}Áqý̽u÷Í.¢ã²Üˆ„GyJ’Ñjq”’7YjO G´Q£A-O±”Ø/Î5®“&¿{%ÓÌ‘S¦Ô›B³âß-–‰>ºEêv֣Ǔ2òZ\W)õ8ÎßE¶Á˜éÔ%µQ³âZîïæeÉiq:Sú*ÌG¨ø6™žEÂ+qM6­',¹ù³Ô]`¢ãx(g©s寜Ðó®§ÛEù´ŒÎ?Zì/ðú½äô+ `u°Åž~/?fj_Xôü?>Ì|<Äqåí?3šá ªt +ìûÊuaŠ…0Úq¶)îE"–ËË&É-%òÌÜAóK,òÓ´¸ qÄN¤ZPQiäï|²¿77ÞuÃÆœ“Óºi]ZÙêVÏœôn“Â3¥ÊûMÒUL“Èþ8r"稳ß7£×–œòË †ýu¥¡n{i_ÄKz³¶ù¯k\û;•º-Xݺ¯Ì¸?;¡È˳ï?xV=¿q©{»:ÕûrùôŒžãò˱ù]ÔäŸjó0Ùu'Y§2ÔD{tç·,øòàÃZJÝèŒÑÝäë®YÔ!71IŒå=GKR’l;«NN$Ó™–Ydd|bª3¯&Õ ´]®ô³É;®þòÎP£Ÿ­š½–ŽYÛ?ÛQß?bšÇØiUJõú/ŽÛÆý¿j?+ÈæiÓ–\;sÌN£§ùú7æÑ¿ÞC«¡ù—ë½¾ãSýiôzFLË¥ù&[ñ¢¹jˆë+ÞÔ‡ d“-GÍ#¦¼"«N»“IBÊÖoK4þ\åŠÞ•ÝÓJÙZÞùúv6¸_a%Y$dç%xñÈÙç™hÞ¹Ïg¬ýL„º;æzz<ÖÑ¿¿Y®†Z]zVûñ6¼µûþK}çÆww7ë}Åæã~w»ï8‡Š;Ïm¡ìT„û‡Ä—´¼Ž[±Æcó)VS-šÕÉM§]²eE¦Lq,.LE¶…0· ’‡n‘§{IŸ7ÆE·ˆ^×rŒ[®•óêì))(¹%+Ù¾bSŸàJ“]äîðëoªšm¹¡FH<ö¥YfGÒÈCŒ«É'ê+­OH›5F-¯]ÙëZ6+­K‘ù|…¾r6øîñ¿e¾ïYžzvjÓ–¬¶gž[”oe}y^Ú®WÊ×vÕ¯®Çc¼è}d{Jø+cÌñ\¤½©y³Ð0üHû+Èë¡]óÒ©Û’¿<±épÔ»‘€–·ÚüÉ¢À¡á\ËV£V»'Wª@ÃJ‰Or!rKr D•°—ˆŒ÷½?¢f{3#-‡²yÕRJ +6wÍß&³ÎÛy‰T#MŹÞêÚ­šnÜüçü +¼lwìQ71Tõ#{ñϹF|Þ­äÍyåÁ—ýSßoëh[«Jþ'ÉïVõt¯Í{X”7ô`·{^¥ðeˆ»­È¾ÕæHÜÎUv?#@]Ÿ*»çmCµßï ~á­v£ñ=O±™/¹G¡…½×ÎøKƒgº£÷yËäcïógÆ¿¬ÛøîÎU·E¦ÎƒqÒ¢ÓÖì¹üŽã&Ón!JJ 'Ÿ—ãÙ°)T†ŠRm8ÉË%}Ÿ!Z”ôÜ¢“R‚ŽnÛ~g£A´q&t¬:…\ RaÓmi,º©1ªFóÎ%¨«Œ_¡šH¶êÏ`í*´ï9&ï8ÉZÙfÓûŽ¡WFiZ‹½ú''Ý5ÎÅü8¨ !ÃÆ~̼‰;£Ä^ÔM}£PT +gDSíÚ7ÅŒ‹·Éò_*!ÊO¶? +9ØâI8åNΠVŸ9U o™MÙÙuÃ"ØDjZLò.-£¤jJ9&×cg9RŒ³i>Ô™â…cÛt×Û•ߧG}³Ô‡Z„Ãn úiRPFGëúëIäÛïgÅF+=ÜŽP9@¢µ‹ì]Áÿ²ä¥íCï#¾VÌþã„nÜóK²Mï[7#ó½ÇÍÐæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø>{Ô˜2n; …­\*SHR×3!ûSk÷Ÿ,|‹!ø>w¼R^S}Š¦w«¸\Šö™æû½Ë}TP‘¡3§ò®oK/êhCüÊŽUã>×æ{-.*ì^G&Ž ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ +O»_ÎKk·žüÉ‹ýÈãK³ï*·CRíûŒëb6;këU%ÂtæËð‘ŒF7•—´i°ÜEØe„íÁ8£&T§t­.:êÓœÕg’”f_­z£V·f’\ý߉˜{•Qìï=cÜ Š‡‘©FE°³œ³ÈºEúûÃ4ºû¿çÔêï?9@ñO§IîÕ}pÍ.¾ïÄpMN®òIÂmŸ‹f\qꕦò:}½ËR•šÓ‘lÞÈGÄnµ:‘²¾µÍø’pÛ:r»¶§ÎZÃÀûøyÿÈÇàŠÏM‡_qqèìþÏ®cáTcÿ#‚>zl:û†ñ#ùò¹?¦¾Ü~ûé°ëîŽÉ¿ +í ö|±êÞ·Ÿ'½¯QiÐE·aq­ÅUUZka*Œd¤!ÀÇ+ïpÞ%ÜW5ÅVˆt¾GŸQ™)s•oo<¥§Qog‘ä{Hmhî½8E'|’Z¶.Ó%Ws*JM«fÛ×ÖqNP,S>:Ov«è‡^¥×Ýøœ¸&§WyûÊŠ}:Ov«èƒ†iu÷~#‚juw’®n5Ä<>¿-›Ž­ão!S䛯o2Ô·4›jO2“l³≮ÄL^êS«NQW»[?VsªRš“µ“Ú]ýÓØiYÅ» +}¹AÞy5éG$8m·¥§IjÍDJâ-›çâ#B¢”µYêëEÎ6‹­®è̾P'»UôC]Ã4ºû¿/Á5:»Ç()¡=Ú¯¢¥×ÝøŽ ©ÕÞ~òâŸN“ݪú áš]}߈àš]åÙÜw¹þêÀãºNåäOÞ!ïŠù»æ;î­Y¥9ybÈQî¦68å}jÛ ÎÂK}+gm^ón¿ÜÛxcuzߨÛ|…¼A‚ìwy*A´­kwYdD…fY›™†-Jù»äºŽ{¡ƒž"IÆÙ.~Ò£òâŸN“ݪú!qÃ4ºû¿«‚juwŽP¡mŸw^ú ßèt¥öPѯÑÚg +¾p3±&52—Qµmø1˜©Óç8ó—p“ÒY‘%Me˜íKB•Úry5ÅÚG¯‡­Y$ãš|m†®Œ‰¨*]^Ò¾(·éU¥Û U Öž§<þ:µiäxmÇZT…¶£òÉ<=¤.aV„Sm8§ù­ëwÚTºs„äÔn¤Óã%©XóoXé~Ï»Ñþ„4©ôŸÙ3íêt?M|†õˆÞ—ìû½èCJŸIý—ó©Ðý5òÖ#z_³îô¡ *}'ö_Ì^§Cô×ÈoXé~Ï»Ñþ„4©ôŸÙ1zÓ_!½b7¥û>ïGúÒ§ÒeüÅêt?M|†õˆÞ—ìû½èCJŸIý—ó©Ðý5òÖ#z_³îô¡ *}'ö_Ì^§Cô×ÈoXé~Ï»Ñþ„4©ôŸÙ1zÓ_!½b7¥û>ïGúÒ§ÒeüÅêt?M|†õˆÞ—ìû½èCJŸIý—ó©Ðý5òÖ#z_³îô¡ *}'ö_Ì^§Cô×ÈoXé~Ï»Ñþ„4©ôŸÙ1zÓ_#ÉiÚ7¥Bü·ëõ›qŠTd +£ QTÛ”·—¼h"JND[ÙæfcåZ°TÜbîÛæÛUþbç*ŠMY%/ÎO]¾Ds»sÌm.É7½lJÜÎ÷Ðæ÷” hÊcñ\ëk°§œ»Oظ˜@ÁâxòöŸ™ª¡Å]‹Èçâ1Ø®ïŠKѪo±TÎõcÑ÷ ‘^Ó<ßw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐòYŠD§Cdg‘ÔI#?¾>¥såÏÖd5%&¦]K‰#Ë4(”YýàjÁ3Ì>@“î×ó’Úíç¿2bÿr8ÒìûÊ­ÐÔ»~ã:Ƙ¤ ’À~‡Ö—h3ýXÃãyIv³O†â.ÂZ‰ »g¿K¡ÖfÆ^‡£Ã”óJÈ•’ÛiJIäy‘äeÆ:RZRIóµæ~&ìŸc2Ũq(ÒGãú8 ÷Æ7чRÙâÌ÷¦Oo‚?®ZJô}ÃèélñcÓ'·ÁZJô}ÃèélñcÓ'·ÁZJô}ÃèélñcÓ'·ÁZJô}ÃèélñcÓ'·ÁZJô}ÃèélñcÓ'·ÁZJô}ÃèélñcÓ'·ÁZJô}ÃèélñcÓ'·ÁZJô}ÃèélñcÓ'·Á®ç|p»ï‹±të‚®‡á"‡ÔžFa’J›4ä£R“""3ãÈWcðp¥ Ågtµ¶KÂâ%9ZO+>d_d¨–D¤™‘‘æFGÆC8\ŸÐ‡îÜóK²Mï[-ÈüïqQºÞòL~+€ýcmvó—iûóÂ&#W¼ö0²¡Kíµ÷ˆ1ÜeÙ÷³îW¼›Åq()>í9-®Þ{ó&/÷#.ϼªÝ K·î3¬iŠC÷,€#€ý­.Ðgú±‡Æò’ífŸ Ä]„´!@'~ó³q{7ó+¨ñ—´¼Îu8¯±ùzß•O¬CГ?¡ðHm`«*®Ð¤WÜ¢Ò\ŒóÕ·Úsz[Ô¶r[ñ÷ÌË{K™$–¬ö#W‹‰­¼ÇJ×wZ>×3:BŽúôoeùÞÊÖ‹¿†˜øÔ¸W Ô˜ÐèXKnCL*Tù$éJž¸‡½©æÔ¥ËNöÙMn«,¶æEž¯ƒ³QÎUdîÒµ•öõó½… ^NY*QVMÞîÙeÕÍ·Þ[Šj%ÇNV€³\YÌ5%…) +B”Ó©%¤Í+"RLÈËa‘q¨œOZv-¡54šÔÕϪ?ì‡îÜóK²Mï[-ÈüïqQºÞòL~+€ýcmvó—iûóö}Ãê÷“x®%'ßn3n<ó‰m¶ÒkZÖd”¥),ÌÌÏa ˜%sãv1sv¶í Zër·dŽ®S$:·ê*Ì¡Í:4³·S¹~ȲGHÔ[Fçrw.Tï)åu«Ÿð1›§ºñ~¬3·?7âf}C.šŠÔµUÝd 4’õ´–”Æ¡PŠæ2ÓÆÔ—?vGÏgnXç©Éyú®š‹ðcîóˆü,T×;ï/Fø£W†ƧPîZTzí*ÊTÑiͶG³%—èneÒRRgû"ÍÄ…fåÓ~ô_a7vt¬¦“KÜͧÁìm´qÒŠšå§SL–’d™ ,´IŠá–zhÏ4ŸHö¥E´ŒÈañ8Iᥣ5o&mðبbc¥îçD²"À>ÏMv±GªÀ`ÒNʉ!„$’œmH,̈öfc¥9hÉ=yŸ‰«¦º™›ÉÜq|Êg~¾ïÑ O +Óëî_2Ð%Õû{ë”æ÷û²™íîýp­>¾åó.¯ÛÜ9No»)žÞïÑ +Óëî_1èêý½Ã”æ÷û²™íîýp­>¾åó.¯ÛÜ9No»)žÞïÑ +Óëî_1èêý½Ã”æ÷û²™íîýp­>¾åó.¯ÛÜ9No»)žÞïÑ +Óëî_1èêý½Ã”æ÷û²™íîýp­>¾åó.¯ÛÜ9No»)žÞïÑ +Óëî_1èêý½Ç'µwT'È“ +ñš“£ÉgD†©³]i×É.!{ˇ½–l¯NKN{Hp«ºª×‚Í<®—ís÷ÏrÊO'±þ½Šv›QªÏÜ8žQ(˜]auШ‘ÜKˆªËmM<ûHÈ{VM±-ªÚy–f|põ.´i]Ô©})>e³ïlüקg¥RÊ;hÅs¿Û$¿çS±Vä²bT1:<‹…-Ó,û3‡¾- V¨äãDGª[Ç’–¼²ee–ÒI~¥‡F©S·«œê?rñ?1¯*k}ýl¡OËßåà]kvîn TÈnG¦×äÀnsô~KmçØIä•å§#Z³Òk$嘤+]¬â´­d\­씚¾îÎd8ÀÆmÐV>SÑ6î¬&;œhL–û2NG‘ïL¤ó2.5”ˆNÂ৉v‚íz‘ Œ†^oÝÎbÆèýÞ±•ús4+eÈ”õ¾m;1íý÷wÒIf¤ ’„lOjááŒäz5ôÛ¶¬‘ŠÆnÛ­ÅVKnl«NwNyï‘}nG,½ñoè±*øF}]Ç(£n–ƒ$U©ºƒØnGQ¡D]jŒÈÿ RÂ.fw§ºoó—qØ#s>/ZX§ePÓmÖ–ý: Hóc1&3­¶”8Ò¹¢,ÈòVÔ«ˆÌyÎ? :3zJ×m§Ìó7ø,L+Áh»Ù+®rÄ +ÒÀ(þ'óÙTìw‰,7u¸Ì»1|Åž±>ñ óÖY£¯'ŠKѪo±TÎõcÑ· ‘^Ó<ãw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐs(³ëtÈ-Sá¹%h‘©Il³2N…f'àæ Ýݲ#W‹’ËiæÁª<ê%K3â9ÅIZ‰Fi4¤³õ¶˜É©K,ò>ЋŠÏi.ˆ$ƒ|Q}Ô“&T¤aE±4Ú‡‘ãëì¯%>ꈔQ3. ŒÂÏšQè=‰2=¾ânzK}–·ÅùüŒFînƒ¾õí|¾fHp ‰Œ<Í°ë¤fÛKY ¥¯x‡ËØú•Ïïä}Îﵫæ.º,ð) +AšT“#.2ÈËïý›X–0W® º`ÜöóæKiD‰qT£&fF3#[.‘p‘—•>«%‡‹ÂÇ{žÇ´›ƒÅË %(û×3Ghœ8¿©X£lÑnª+†¸5XÈÖ~Y¶) +.%!DiQtÈÇ•W¢èÉÆZÓ±êÔ+*ÑRZš9°àw&Åìn³°6‘ãÅÝVDFÕšc°’ß$ÉYzh¹¥Lö%?ªQ—†ÂOí$DÄ⡆W›·W;2;¼T{¶®óÑì[z%")+ô95ä¹jIq›i4´Œú\Þ]1±ÃþOÂó+q³KˆIL‰)#Ëh¼ÃÖŒ`“h®«Þ¢ÚG#KMì2JHËï +FXxüR^S}Š¦w«¸\Šö™ç½Ë}TP‘¡3§ò®oK/êhCüÊŽUã>×æ{-.*ì^G&Ž ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐø—5a6õ«UYf˜1$Ê2>2eµ8~ðéN:m-­.ös©-ÞÄßqÔb¿^™uU*Uªƒ¦ìºŒ—å¾³?,ãë5¨ÿ ìõ°Â + %©$©76ÛÖÙòGìæh®â{O®jMpðîäC¡5/T÷¤ÃfcÊ’M$òi•4µ¨ôe³RSŸc=ºÕ(ÃG}M¼ôRmsçÎäS«=-í¤²Ònϙۙ—‚E÷Œv#G¥XW÷PÓ ¦ÕáÒiä«MEŠfú‹¥­ÄŸ¬3»Õºå-‰ÊrïyUR­>iMõÆ1rM÷´bÖ5T®:Åósͻ鈦W–k ´æ”ó I)y'/Õ|9®04 ïìýîû9Ì>>S•Fæ­,®—b·‰Är|JûÕê¥v[¼jM"¢Ôˆé3ÏKS[3QHµ¶£õÔf0_”4´gmVîþß~OUÒ„£±ß¿øcSÆPÖV-Ð;§)›ŸåQ£O¡Ê¨M·ÜB£ºÚ ѤŒ_z¸…® sÞ)6šV¶²·Xf“Mßa^~Ù »ÔeKºX<.’îdE÷¡öÈmÞ£*]ÒÀpºK¹ŽE÷¡öÈmÞ£*]ÒÀpºK¹ŽE÷¡öÈmÞ£*]ÒÀpºK¹ŽE÷¡öÈmÞ£*]ÒÀpºK¹ŽE÷£Æ÷ŠC@ÞÜÞ¬º†ù¥Z5É`“«-™™mË>¸‡Õ¸Ré.æ|{³‹ïFDc%ÇubÝr§wÝdÉ’²Q¡¤’ɨì$ÌÒà 3É(Oá3ÍG™™˜ØáiÆ„T"²ó{Ln-λs“ LòáIüïˆý‘~>ÙŸ¤´žÂQúà,yØ}Ø®´û­§ZQ-·Q¡hZO2RTFFFGÀe´‡Æ¯¬'lѱ»ñb§‹¶ýóßU:,J/WªãŠ½ Œˆ•“¬'a¡$HZô8¢ÌÕ–+tðÊ„¢åwI7ê®g®ÝŒÛîf%â#%*­/Yó­WçÍ|™/}‡H†·ð dʈIÓ6ÿ¼žJŠOé¤ëquDZåÉIžFFii¾=†e}¿îõ,ù©Ã›/¹x²nõoÜ)åÏR|ùýïöç& $Æ(oÉ©Á¶bG‹…ÖLÁvâŸ%ÃT©‘H‰ekQ“Œ´’2qÅyeŸ2|pñ8gdåI»è¤²OnÇÔLÃâUÚŽTà­¤ÛÍ­E©µîzeéH§WhÒŠU> Ê$F})RIÆœ,Ò¢%gê‘©©MÓn2ɧfZÓ¨ª%%šy£ïŽg@ë½ââ;צ-K¢¡ó\+j3šF|ÉHu$ûê˧š’“?é=pèot´¹äÛ÷jG›îí}ò®4U½úßíÔP¡3¤Ë€È©=vÇj“`ƽ¥:ÃÈE"[+u“#Ë7L¤å½þÈÌ’YíñvÐw–‚ËÖNÌ™ƒ¾š´tõú­7ÍÔhÚ#ÙÖ2’æ(ὃEYë¤R)“ëUcËi¥IŽ½á£âæÜ<¸Èf4¥S’Iu·ǽ«¿r5Z1§ÊBœz¬å.äì½ì¢›¦/»"ø«ÓbaÚìø1Zy 'Y&š¥,.)´–IÒE—–QíᛟF¥4÷Éé7n{Ø¢Ý*´ê5½ÃF×÷êØV¡nS+âhâCÖ®'½l¸ê¹å„óz3=*"Mö–eÁž‚q9ú¤3[½CNž—ÞýžÝñ)Y%^©pOÀ×ßé©4“»M-WM¬»Š½Ð¡¼Ôi6Õ“W×f“ϼ‡\[mÌUzźÍ~m2§& >¨ì¨ã¼¶µïd¥óZ ³ËWå8èÆvM'këW4;”ÜTšm^ȵ^IoU>î{Â{Ä:+¹Û춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼ƒ1‚áªÜÒÕT©Éš¦é6r^[¦‚3,É:ÌòÏŒNÃÁBöIv+ع9ZîúõØ–@,M©S­W®+Þ=}ÑùTÆ^ˆ¥ÅK-™¥ +•+ZRÖø¤äY´ìÌWTÅ´ä£- _;<ù’ç'à š‹”´tÛK+êÊïaY®6Ž<*“J4™¶‡Pf…jIšLË4¨¶[€Ëh²¦ïg¶ÅmedÖËê#l=:¡]ñÐéÍTª|Ÿ¡>Ò]jLð·¶–ÚÌ’¤©Y‘™— ‰•-¢ï’³»ÕelÙOJúJÙ»«-|æÌÓíüK¶ã·PÄ FÙŠ•éRi–Ý„åv¢á ™"Œ×K58¬º]<<ªR“µ9MõÊ®„|s}ÆåS«yÆ ª4´åá’ï*vìI›uÛ±©¬`T«.–ÔöVU©ô‚ƒ&BÒ‡ -þ‡¶Ñ¾šÕåvp =ÍèN³õT´—6ןq[ºUô¡eIÅ]zÎ/É[¼Îq©2„ë¹—ÃQ²«¨yM2Š‹¥h?-Z‰‡ReÆZWž]2#âû¡C~¥(õ6»VeŽçÖÞjÅõçØògf\JÃ踛nUm¹SæS˜©¡-H‘Nt˜’¦ÉDjA8iW2´‘¡[<©™fCËèVtd¤’vÔžhõôUh¸Ý«ó­eÝ-C¸hPâÚ0íè´l8£·&âUNRÒnj6Òg¥¦I&FKæ–áë<ó,´{Ÿ(Éé¶ÝGvú–®÷ÕÍ‘IŠ„—©d©«$µÝëðó̯ìâÓ¶Ùf䨶ÛiJ„Lu)JRYRD¢""-„EÀ-?Í]ȾIs¾óÉä‘võQSîç¼!óx‡Ew#îû-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼y$]½TTû¹ï7ˆtWr춾ñä‘võQSîç¼ Þ!Ñ]Èo²ÚûÇ’EÛÕEO»žðƒx‡Ew!¾ËkïIoU>î{ â܆û-¯¼ý,H»z¨©÷sÞoè®ä7Ùm}æpâËÒå^‰Ï8ü‡¥)ÕºêK^²#%iæCE‡IA%°Æão¾JûHðH!Žç‹•›Rïn{÷ì›%‰!V‰“œ#VœšÞr=‹Ëiñd ãa§´Tõz­ÛŸi?SBi¹hëÍ+ól/¯“•+û«êçíKþÔg}þñña¤ôÕûûÿ²­î°‹rTgܳñ'ìúƒSfj)3ŒQVÒØq%%‡ÒF•šLóÏ?S-¶›œã(horZ-«ÞéÞÎýå^ééN1žžœ[i;Y§•Õ»Šz/ +Ún‚ôüq±RÁ›OKyyq!¸ŒýL…>ëÊÔ%îóEÎãÆõ£Úü™Ùyyê uÝñIz5Mö*™Þ¬z>ár+Úg›î÷-õQBF„Οʸ½,¾w¨=¡ó(9WŒû_™ì´¸«±y˜r:€ÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ;qÝ4ëQ†¤TSm¸½ 4¡KÍYð$¤:Ó¤êdĦ£¬þ­ÛžŸuG\ªs¦ãHY¶f¤9¢"3,”EÓ +”Ý7f#5-G Ù×w^JÁ¼BU‹EA¹zt'Rža·ÖzäG<¸ *3RK +.‘KÜŒbÄSIñ£“ìæg™îÆ Ð¨ÚâË5÷¢“ Ò„ð£teÙƒTù”Û}Š[ŒK’9ôÆe¯^’G2· 2NEÁÁžÞ1ƒŽ"ÚWËchŸ…ÆË }gmi=]¤ªÞ8 É’ØjßeÄíKÐ"’Ò}4ž\$ ð=?¥ö™;†*lÙ_"¨\÷=RóªÏ®Væ¹6¡=Õ=&C§šÜZ¸Ï,ˆ‹ˆˆˆˆˆˆˆˆˆ[Ò¥QQŠ²Z‘QZ´«IÊNíóŸ"fE¾¤¶§3áÈK¨¯lòy=Z¹ú¶”ÔÝšæÍj׬ÐO'\1,òÇY/YÆ~fý§ït|~F£Òiþù[½|Î…ðòe×jâ½ÏsR(õHQªT«”ÔN0줯x}³JµyUeŸ톽Š3§¹)ZPê³kQÇjÔÜ¡9ÉGFñŸ[²zí¬¢cDfŽ]‡Ô‰7ÓlÓ!¶nH—S€ËI.RßAá^J1mó'äHÃÇJi.v‘Û¨xñìFn¬Äûnëƒ2קT UzV2gÃqµ´êë R\A8”ïžykFiÏfcI¹˜yAé5”¢ìýå&2¼gx§œ^kW1E„ª¯cÝ®¶äƯ2ƒ6ÝJXd^UiòŠ?PËg®D,ðµ?4 Ý*9©®ÆWA`Rû nšZMFâ´£Üð‰—[:|©GlÖ¬´¹­®k4äyæ#צêFÑz/,Ò¿™#QS•ä´–˵äXnX,&þéÖîÌߘVz_ßeöbZú}/Þ—Ú‘ã.6+š RéöÔjƒAmôSéP jm ’²[έÅóKZÌ‹3ȶí°¸=å¹99JV»{¤DÅã7䣨Æ7vYæõ¶ßa‹´ØŸó¥4íoª,l¸Ò©t­iÈÜ-iT—’gú’4¥²2á=eÄ1{¿ŠNÔ—kû‘¶üŸÂ5z±}ÿ.ócÆ,Úõ_íú× K’´¾Ñ¥+I2µˆŒ¶‘eÆ%C )«¯3Œª¨»ý +%¥*."2õŒE;wüR^S}Š¦w«¸\Šö™æû½Ë}TP‘¡3§ò®oK/êhCüÊŽUã>×æ{-.*ì^G&Ž ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ'üè§ö×ÈP²ÀñŸa«ÞyðÎ)}¶¾ñæ;Œ»>ö}Ãê÷“x®%î(áu¹ŒVìÛbè‚RàÊ,øt¸Ë©òŽ´¾8ƒÚF^±‘‘™œ>"XyiEÙ¢>#ñq’ɘ»ƒq¤J›E†íË@#R›— £\¦‘™äR#£5‘p­¤3À=»ñKÕ–Ç«ÜÏ=Æî5Jñõ£µkî(ó„m-M¸F…¤Ì*-*#.2=¤bù2«Á¨‹„ËðòÄ¡†˜1{cÔB´mÉuR‰+}-š"µêºúòm^ª³éˆ•ñPëͥÕÏÜLÃá'ˆvŠoÈÖ¬'ñ4ŽÔŒÅF·u6ºÊÑÍ¥ˆ›ãŒøRÚ–´šˆÖi/Pˆ¸r8ÞÓvQË·3g„Ü=ë9?[³$M|¤iêµ]Ä_J!ð¿Ññü >ëð¤iêµ]Ä_J/ô|Áý~”=V«¸‹éC…þà8?¯Àr‘§ªÕw}(p¿ÑñüõøR4õZ®â/¥ú>?€àþ¿ÊFž«UÜEô¡ÂÿGÇð×à9HÓÕj»ˆ¾”8_èøþƒúü)z­WqÒ‡ ýÀp_€å#OUªî"úPá£ãøëð¤iêµ]Ä_J/ô|Áý~”=V«¸‹éC…þà8?¯Àr‘§ªÕw}(p¿ÑñüõøR4õZ®â/¥ú>?€àþ¿ÊFž«UÜEô¡ÂÿGÇð×à9HÓÕj»ˆ¾”8_èøþƒúü)z­WqÒ‡ ýÀp_€å#OUªî"úPá£ãøëð¤iêµ]Ä_J/ô|Áý~”=V«¸‹éC…þà8?¯Àr‘§ªÕw}(p¿ÑñüõøR4õZ®â/¥ú>?€àþ¿›n¦ÜýRÃY–ó4åL­”¦¤©jÃ& +Iõ¯‡><¸Öçã•dïhÚÚÚûìScð®›V»×ÌU?°»©Ê§¹Ò~ŒZï±Ú»×̪ޥ±÷1öqõ9T÷:Oцû«½|Æõ-¹°»©Ê§¹Ò~Œ7Øí]ëæ7©l}Ì}…Ü}NU=Γôa¾Çjï_1½Kcîcì.ãêr©îtŸ£ ö;Wzùê[s?…Ù× IR×oTÒ”‘™©Tù$DEÂffÞÂwØí]ëæ|Þå±÷3€Ö¥0º|ÒKí™›Jȉi3?ÀbDVdZ’Z/°‹­ŠÒmªÅ.¬¨ç¦ –dIhß#È&ÔJÞÝOꬲQq—5¤šÕtÕÖ¼ÕŠˆKE§±¯2ßråÃôŽ°=Ç?Rp[ýò§Ú/xQ~÷Oìþ$k‹¦+8£DfÙnPíš*d&[°hPJ*$ÈAP·•™š´žE°¶íÏ"ÊFsÕi¹JM+''{\ˆÝV: +1Šm7¢­{m+xµ*Mñ>ð¢=nóF!\R@¶]BY“)Ô2ËõWù†Jœ2#4jÖd_ªÐ\c9»X—oqÎRæYú«Y¥Ü\6”÷Éeó¼³æù÷Ÿ‰—Û·Ý~»ƒõ)U ±- ͵+‘åõS8ú\= +I$µ!ÂÉÈê35·´dèQÞ¢«+M+©Å­Wý²{MezÛä'x7œ%}výµeB•'—6Þ¹)è¸ÁjD[nÈÛY€{PôwK†;«Òyä£efe‘˜°„ÖÖ‹n”ß¾/cëó!ÿ/ ©$ªÁ{šêêò9u qdÙ”è/Õn…9Æ[\˜Í0O¡—T’5¶—u§Y$öjÒYÄ÷Y&쮯“½‰PÀ6“nÎÙ­gÕå#OUªî"úQøá£ãø¾ëð¤iêµ]Ä_J/ô|Áý~”=V«¸‹éC…þà8?¯Àr‘§ªÕw}(p¿ÑñüõøR4õZ®â/¥ú>?€àþ¿ÊFž«UÜEô¡ÂÿGÇð×à9HÓÕj»ˆ¾”8_èøþƒúü)z­WqÒ‡ ýÀp_€å#OUªî"úPá£ãøëð¤iêµ]Ä_J/ô|Áý~”=V«¸‹éC…þà8?¯Àr‘§ªÕw}(p¿ÑñüõøR4õZ®â/¥ú>?€àþ¿ÊFž«UÜEô¡ÂÿGÇð×à9HÓÕj»ˆ¾”8_èøþƒúü)z­WqÒ‡ ýÀp_€å#OUªî"úPá£ãøëð¤iêµ]Ä_J/ô|Áý~”=V«¸‹éC…þà8?¯Àr‘§ªÕw}(p¿ÑñüõøR4õZ®â/¥ú>?€àþ¿ÊFž«UÜEô¡ÂÿGÇð×à9HÓÕj»ˆ¾”8_èøþƒúü)z­WqÒ‡ ýÀp_€å#OUªî"úPá£ãøëð¤iêµ]Ä_J/ô|Áý~§PÜ'«ørîƒu‡’hZ9ùaôˆÇÕ»:9¨øþæ[š¤¬Þ¾£17Hn½01ǪtƸmܵòlVLÞŠ\i’ÊMJIðÂÍǤö >uá‰Éú²ØùûÜc±û‘<6kÖŽÕÍÛûX¤D¢>¥úü3"á0/ÖåíÂwF2ˇZº¢È¡ÚÉ4¸¥ºƒjdô–Ý !EšP®7TYeåIGÁžÝ ׎hÃÖ—‚íù=ÏÜyWzSÊ>/³æv·­êm§LƒF£Ân,¡ˆÑÙN”6Ú "Iõ|&{Ohó¹ÍͶóo[=PI,’Ô²?ì£øŸÏeS²5Þ$h°ÜDUÖã2ìÅózÄûÄ3ÏYfŽ¼ž)/F©¾ÅS;ÕFÜ.E{LóÞ循(HЙÓùW·¥—Îõ´!þeÇ*ñŸkó=–—v/#“GP?ÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ'üè§ö×ÈP²ÀñŸa«ÞyðÎ)}¶¾ñæ;Œ»>ö}Ãê÷“x®%ÝxAcßZŽà´iU%+…É0YqÏl4jü¢MÔŽGÜÄ´ÊL;¢6ém%*Neë„¢¥«-s—{8ÇJ9¨G¹?2k…55”G‡¸ì£Ê¶Ò„¬”‘-·¬œ•µØø}ü2###,ÈÀéºÛÄô•>lëÇ "¡fú–üÚ il÷Ãæ”ä3<“ÍÓhòÛån’Ùîní$”*û¥óù÷˜ÍÒÜW'§Kß—˸ÈJÅ}»5úuV ðf0£C±ä´¦]Bˆò24,ˆÈl¡55tÌ\é¸;5f|áû?æe™ì"é˜ w·1\5ŠB¯{ÆBeÄ[ +™Qä'”¶pk-F„çšQhO5Íe¤êkî„bô Ô¦ïe|¯Öþíe½ Δ–œÓPV»µÝº—ߨÕ¼[k iñ,kš¥‚—c˜¢Õb¶’*T·F“˜úLÍFúÿED£<ÒáäydYH¹VzqmVƒzIó®¥ÕªÛ t”h­ $èÍ-¹Ÿ[ë×s“ÒðŽà»"ÎÁÌCfmV1”Ô­ê7óâ:[Q%„¼éh˜É™dy<ÙméŽ2ÄÆ~§dÛ´é½]~çàΑÃJky©v’¼*-kg¿Ì»6Ͳtxt³©ÉMV¯pÞ«;¦¤È$äk3Ð\É-E¨ÒG§=¢’¥M&í’nú7vEÝ:z)_6•´¬®ÎV8€? $¢22Ìa‘€+f!nB™¨>1gGtªÑÉIÛcÏ̬­¹´«kŠ÷eåb/?‰ÍóEdÓž{ߎ|Ï­æZ¿(ŸÃÕ¾wâ@à*=}ÿ=aæäÌ&Â÷š•B²á”¶¼¤©d©¤úd¹ +^“õS–\B¾¾èÕ­”¤í±d¼ +;J+µçæX±ZYGñ?žÊ§dk¼HÑa¸ˆ«­ÆeÙ‹æ,õ‰÷ˆgž²Íy×æ{-.*ì^G&Ž ÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐßìÙw¤±b<ÓJiíðÍÝYi2È´‘ôļ5eIÝì8Õ†š<˜mhJ³)ÏÖón­ÇÔéZ´äiIeÍmØ>bjª®ë`¥ bDNÀõÂûCÚK7EµO«%’dVÝRøI*QjOÞ2éb'KŠÚìv#Õï'ÚŠå?pÏ}ReF£ÌÐÍBkMýä%ò"/[!f·bºVÒðÈ­–ãГ¾Œ¾gÍ—†øo…tû†FáÕ½t[ +Œ©Tíñ+œÚTDé‘8é<á:觽F2”muÏ·žù‘ôÛù؆þ8X¯J¹,ÚÛiz[2 Þ“xA2ãì0áž…°ŒÒü*¤sDF“Í2þã;FqâMdóµúù™ÁÕ·îм£.<^vÊ×ùüµHøKƒšj«M¢Í…\Áû²ž©±)R÷Å;é&JSQuóÙdf²J*idZvægŠy7xÕƒ³jÙÛo_™#†Ö£gJjé;äÞ΢ÛÛ6Ý>ϤÓht¦M˜4øíFŒÙ¸· 4’JHÖá©JÈ‹„ÌÌTT›¨Üž¶îËjpTÒŠÔ•‘÷G3 x¼0‚©qV¦TØ›¶ÞZ”¯^¢$¤‹nE—µ£‹PŠVyçEÉÜ°l Ûm>¤‹ð«dïŠKѪo±TÎõcÑ· ‘^Ó<ßw¹oªŠ4&tþUÀíéeó½Aí™@ñʼgÚüÏe¥Å]‹ÈäÑÔÿÕßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐÞ2Þ§Ðkr£¸m¼Ä)N6²áJÐÒ”“,úFC­%y%Ö¼ÏÄÝ“ìfK£t"ReR¸ ‰¿m +ŸEx™¿IžÓúå€Ä>ª¥~üóЩôW‰÷Òg´rÀbUR¿~z>Šñ“=£–úª•øðЩôWˆô™í°‡ÕT¯À߀…O¢¼G¤Ïhå€Ä>ª¥~üô*}â=&{G,!õU+ð7à¡Sè¯é3Ú9`1ª©_¿= +ŸExIžÑˈ}UJü øèTú+ÄzLöœÿññ6eBƒK¾×¦äŸ€ì†Xu¥HaHp›Z¨Y¥Fži)32àq)QJN7WIÙµ“:B¥J·JVvËW7¸û¬Ì«âŒé½Ÿ »oìô&%Ço<­ Vb§i´¾ ñ—ˆµF|³4’M^UEÂʊП­JyÆ\ñ5ÎÍÝg§V¬2”v¯ÛSüipÛ àƸĘ‘'Ûr®ZsG[·¶Ž*æ(’dóÈI)<‚ͤj#ÍEžbª¾%¸ïnÒQ~¬¹í³°³£‡Z[æqÒ^´y¯ó,+M!„!¶ÐHB’”¤ˆ’D[ˆ‹€ˆV¼Ë¬yú]ß—£Tßb©êÇ£î"½¦y¾ïrßU$hLéü«€ÛÒËçzƒÚÿ2ã•xϵùžËKŠ»‘ɇ#¨ÿÖßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DЉ߼ìÜ^ÇMüÊÇjM瘚|º¬6TÑ,•’Kd£ÏB”Y‘+imË"<†>¥mq‹j Ý&Í::¥$´ífÑ'ˆ¤ ®çŠN¢N5MÌÈ¿yTεcÑ÷ ‘^Ó<ßwWîßU|Gì‹ð ž³? i=„¢?¾Çok/êhCüÊŽUã>×æ{%.*ì^G&Ž ÿ×ßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐÿ¯G,ˆq¥72 ×w³J–hÈ´š³ÌˆúBVŽúí{dq©S@òaõâ»ÖÓ\Š˜æÛÊkJVkÏ$¤óÌȺcæ"Žôí¯#í9é«œðF:€ñnJbëTš¥=¥¥ —C R³Ò•:ÚFymÈŒÇJrÑiìiøŸ™+¦ºŒ÷Nâ›™$EöCNØEúÛÿ0Òð¼6?“ƒåµxŸ¼¥W/T4ïkæ†Çà}àùm^#”ªåê†íoüÁÂÐØüËjñ¥W/T4ïkæ†Çà8>[Wˆå*¹z¡§{[ÿ0p´6?ÁòÚ¼G)UËÕ ;Úßùƒ…¡±ø–Õâ9J®^¨iÞÖÿÌ- Àp|¶¯ÊUrõCNö·þ`áhl~ƒåµxŽR«—ªwµ¿ó Ccð-«Ä—ðCs…g nOçU¢Ik‘^c{aõ8i2>l²È²±˜ø׎ŠMg|ìIÃá])]µ¨¸BŒ³î¬c~ܫ˦"–‡RÂ’Y¼i3Ô’> 'ÓT°zq½õõ'_EÚÄèÒ÷Ä!ye©$„…sÈ–dN4â…¹‡©ÅãGQ ViT˜RÕ:#R +"Õ¯z“u'¤’£É̸Pf|)!°Âáå[ ê6¥I«6¯Ôc±XˆÒÄúé8Ê1Né;uçûXÒvðSJV‹„¤¨ˆÉEKŠdd{HÈ÷±™ôª)}§ó4Þ‰O£²Œ¥ñEïK"Ìf.Z6Í"%RA5.­.,í½Œõ4ÂV„¥NŸ4¬2Ap,kw”ê~é7&–I6ó|ìÉnÝXSýΊzÛIe±~ßy°ö_;ÔЇù” e^3í~fΗv/#“GP?ÿÐßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ'üè§ö×ÈP²ÀñŸa«ÞFØ{‰ñ¬ª{О€ëêqå:JBÒDDiIe·ÖñgUÞüÇUt‰êÆÄF/—%¶Ì7#ò9 ÌÖ¤«V³2Ù—¬+káÝ+g{’éÕÓ$Qì"ø½™²#G’ôUÈ'œ6È¢I‘é5g·Ö(Qß]µªTÐ#NX>„?íˆ=íGI[,BöÄ =¨zJØrë/ã^sט°¤´§u-iQdFE–Ï\p­…t•ît…m7bT‰Ænë•»JšíIÖòP¤'B ˆÏYåÂcµ*{ã±øœ´UÈ–¡ûbï@{QÒVÁËЇý±èj’¶vÙÆ8—-N-5ºkÍ)óQÔ´™”š¸ Öªá5{ê?q¯¤ìL¢$>=~®š:eEm›‰ŒÙ¸hI‘ˆ¸ˆÌt§ 6–Óó'¢®B¼°}Û,=íDoI[,BöÄ =¨ùé+aîSñÒBTh©¥>“}Ô4J7dFµs?Â?2À¸«ßQúX„ù‰ØV’€Ã%âŽË®™fM¡Jȸô–cêW>2-Ð0L³ñ¡ÿl@³ôµ}%l?y` úÿ¶ =íGÏI[ÒÇø&d^4?íˆ@{Pô•°Ÿ›^ø„¯,µáŒ˜cà"~:Â*LeR_Q²âÛ3'‘šiÏò 8à[W¹âæ=NX>„?íˆ}íGçÒVÁËЇý±èj’¶m¨šÝ>A ›i’Ò$(ó4’Ë<ŒÈWN:-­„¨»«ŸT~ÐB÷3Ä·ªRé®SuQÖH5¥Ä‘+aÂ?\XSÁ¹¤ï¬:ê.ÇÅ倃èCþØÓÐÔ~=%l°}Û€ö¡é+a.ÚW#we5š“L)”¸¥¤³#2УO z Z{Û±&ÒW9(â~À(¼±V5›P*{´÷_Q´‡u¡i"ÉFe–ßXM£…uUîGmcŠrÀAô!ÿl@ïèj9úJØ9` úÿ¶ =íCÒVÂN²/6ohoKf2Ø&6+Q(ÌȈóÙëˆu¨ïNÇzsÓ9 ŽuæùÄXö3‘z’9!+Q”éÐd[sõĺwVùê8Ô« p>X>„?íˆ}íGI[,BöÄ =¨zJØsËcß.Km˜nGäd¡FkRU«Y™lËÖ«áÝ+]ë;S«¦HÂ!Ø8Eñ{3cÆ%è«O8m‘!D“#ÈÏ=¢E +;붣•JšiËЇý±g =¨áé+`倃èCþØ€ôµI[Yfb¬kÊ p€ë +&Ôæµ­*,’dYlõÇ +ØWI^çHVÓv%afî¹[´©®ÔaO% +Bt ÈŒõž\&;R§¾;‰ËE\ˆù` úÿ¶ Nôµ½%l°}Û€ö¡é+a÷m¬c‰rÔâÓ[¦¼ÒŸ5-KI‘iI«€½aÊ®ÓW¾£÷êNÄÊ @åW*©¢SæO[fâc¶§ zJØ9` úÿ¶ =íCÒVÂ}aÒ}¶Ü"ËZR¬ºY–b±«(øŸŽ° J“T§Ôl:ãF¢q¡FœþþBÊ8Õ1^®ªâ.Z̪“M)¤È[fHQ‘™dINÓ-œBÖ•=ÛarÒw/¬_1g¬O¼C2õ–ÈëÉâ“4Í#ô*™Þ¬z6ár+Úgœn÷-õQf÷4îð§Z˜CZ‡vÉ'붤t3KiÅþ‰SeÏÐã ¸ÌÚVIpøI²%pæ*ñûŽçU8qfóêÛßÍÖZà7aB‹RãAe׳»Ÿ¨È˶é©ÞõŠÁZ”©5 +”‡$ÈuFg©n+<‹>§%Ä’"âTÕ8¨ÇRVF6­WVNO[Ìí©eó½Aí™@ò +¼gÚüÏ`¥Å]‹ÈäÑÔÿÑßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ;qÚÔë­†£ÔšS¶½ñ$•©ÖF\)2鎴êºy£ñ()k8wÕ­÷Ðç„;ú\öø#–ñ“ÛVM&ÒS린¦ÍòI/SŠ^dœòòÆypŽU+J¦³¤)¨ê9`àt9rZ”ë±–˜©4§Òõ¤’µ#%e—êL‡Zu]=GâPRÖpÿ!«[î';¡Ïwô¹íðG-â#ÈjÖû‰ÎèsÂKžß7ˆŸvÞÃê%­%Réє۪A¶f§V¢ÒfG–J3éu+Ê¢³?q¤£¨æÂ9Ô>5vƒ䆸3Û5²³J$£Iæ“̶‘‘Ü&àîÌ£¥“8/Õ­÷Ðç„$ú\öø#Žñä5k}Äçt9á¥Ïo‚ÄO¥Gà ~…1™ðâ­²fhQ¼µfFG°Ï.™âe5fÏÔi(æH")Ø= +¥2=b$ˆR’jeô’3IšOÕ-¤?Q“‹º>5|ˆïÈjÖû‰Îès½.{|Ãxˆòµ¾âsºðƒÒç·Á â'ž&Û0ŸfCPÖN2´¸ƒ7Ü<”“̶ºcãÅMóø#ꢑ&‡pñ¼Ò^BÛYf•¤Ò~±–F>¬ Ú¥ûäçt9á ž™=¾¼Dy Zßq9ÝxCç¥Ïo‚ÄGÕ­÷Ðç„—=¾o%$”¤¸ˆ‹Ö! @3•„VÌÇž}Øk5ºµ-fO¸Y©G™ì%tÌKX¹®ptbÏÕ­÷Ðç„>ú\öø#æñä5k}Äçt9á¥Ïo‚ÄI›Of•<8É4²ÂÛdffd”–E´ö˜‹)i;¾sºVÈ÷GäúåW ­êÔ·çKŠµ<úµ-DòÒFypåÀBTq2Š²zºŽ2¤¤î|ÿ!«[î';¡Ï~½.{|ùÞ"<†­o¸œî‡< ô¹íðCx‰ÎèT(vä6àÁlРF”šGš3Ú£3á§77vvŒtrG؃ôàúÏ+“j–ãÚÞiuh-)32Ø“"ã1"ådr•%-gÄòµ¾âsºð‡OKžß~7ˆ!«[î';¡Ï=.{|Þ"s+rקZŒ9šÒ›mÅ›Š%-K挈¸TgÒ*Uu3gXÁGQÈG#öJå²)7jØ]I…8¦ D.)ŒŒü©–|½:Ò§«œç:jZÎ3ä5k}Äçt9á¾—=¾ç¼Dy Zßq9ÝxAésÛà†ñ“[VM&ÒS린¦ÍòI/SŠ^dœòòÆ}1Ê¥iTÖt…5G-€Ç.KRv2Ó&”â^´’V¤d¬²ýI—ëN«§¨üJ +ZÎä5k}Äçt9áþ—=¾å¼Dy Zßq9ÝxAésÛà†ñî[øyD¶%Ê|u¶ñ ÑšZ¹•dg±F}!Φ"SVgî4”uÜG:€Ç®ÐaÜ×{f¶iQ¤”i<Òy–Ô™é ¸;£ó(édÎ ä5k}Äçt9á —=¾ã¼Dy Zßq9ÝxAésÛà†ñéQðÂß¡Lf|8«C왚o-DY‘‘ì3Ë€Çæx™MY½gê4”s$ì•JžÅV+ðä¤ÔËè4,ˆÌŒÒ®¥´‡ê2Ñw\ÇÆ®G>C6¯ÜNwCž•ésÛàŽÄGÕ­÷Ðç„—=¾o=ˆ˜GlÂ}™ Cpœeiqo¸y)'™l5tÈ|x©¼¯àªŠD–"ÀÆëIy mešV“IúÆYú Ú¥ûäçt9á ž™=¾¼Dy Zßq9ÝxCç¥Ïo‚ÄGÕ­÷Ðç„—=¾o%ÛKHB±)"IzÅ°C$ØŒ¤á³1ç¤; Ã[«S‹=ýÂÍK<Ïõ]3Ö*kŸÀàèÅž"Á«XŒœÙ‘ÿ>âþ8}ô¹íðGÍâ$ „’”—zÄ!’ +ËŠ›pÇ«Î\·UùUi…8Üé ¤ÛdŒZZS³>¶‹L>éÕÃÇF.˱?2¯¹”±Ò’möµäG?k«z›•î¬Ï¥xn¾ÕöWÈ‹À”6?´þ`üN¼ênWº²þ”8n¾ÕöWÈp% í?™uàBj›4Hé4µ´4Ù™ä„$’’Ìøv£nîåìU•¶Øø}ÿÒßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐo1âÒÀ*d½ß%ö"͓ȬªÙ z+R÷*GÌ,¸¶Åö‘[Ôv¾ãÈÏŠ;‚Ò\C,ÔjŽ8³ÉE"J”£éLÌÁî%e̾Ò?Kv¨½M÷/¶G‚^ŠÔ½Ê‘óÖؾÒ?<7Gkî?~Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_pûdx%è­KÜ©0pm‹í!Ôv¾áöÈðKÑZ—¹R>`à:ÛÚC‡(í}Ãí‘à—¢µ/r¤|ÁÀu¶/´‡QÚû‡Û#Á/Ej^åHùƒ€ël_i£µ÷¶G‚^ŠÔ½Ê‘óÖؾÒ9Gkîl½©{•#æ­±}¤8rŽ×Ü>Ù z+R÷*GÌ[bûHp寸}²<ôV¥îT˜8¶ÅöáÊ;_qäOŠ;‚ÊmÇSQªméÖ²¤I4£QäG§"Ìø3á­±}¤~–íQ|ï¸ñý²<ôV¥îT˜8¶Åö‘ùáÊ;_qø~)& gã­KÜ©0pm‹í!Ãtv¾âéZ7D Þ‰J¸)kZáTã3.:œA¶³iä’ÒjJ¶‘ä|À)*Stäâõ¦Ó.éTU"¤µ5tr!ÌèÿÓßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ »ñT‹;Ñ"Úg\-ŸÈÏ Wä÷)/gïFSò‹“µ÷2‹àFà CÅÞG¨Ö™;^Š½+ßç4|–ò ÈÿAŒfJÚG™)ÃBxËP¿ÆnÍ:GÖ}Z»þEqjWÎ^ªë×ÜlîTÃÌ¡T\·éýP¡H'*³rzbÏzVzTdIl¤ÚRYl<øF2¾èÔÄÉi<®²Y-~>ógCséá¢ôVvy¼Þ¯qÖD¸ýs÷Ç©V~€ÃîZ²¨˜ˆ1(× "™têËëdÖ¤¹®¶¬Ðd|Ê’GÃÅ´Vn•YR¥)EÙ«[í%÷–[IU«Ë4Þ}ÍýÅȳw0XÒšÂåÒù&iµ!›¹…:ês“>’åR½*- +BS–IÓžYb—©VÏ% ìµÂQŒ»u—˜|9*WY¹-<ßjN=œR)ÃŒ0°ét¬ƒq[%X—‰sg·&j¦HeÊldÉ(qù-,k%ø£ZUŸ•Ë!2½yÎu#hïTã-IÞN.Yß›+èѧNœ'(éo•%o(ÆQ‡5³ÎçÒ¢`… +Ä· K^ËÄ9Ó.ÚÅyGrZU55âe iÔ’Kï–k%:zKapo*Í-%M:J|Ù·ís#²ÁÆŠ—ªê5UÂÙ䕺<îþãáá§j;:èñÿ`Ç´hYR®Ü’æ3:á“p ¨¯%L$§JP„™ê<ÔdC¦"¬”bÔÛ”¢­$ÔžÜÖKkØs¡J.RZŒe››kEj¶O^Y-m•þªÐ«75ju³Kñ¶ˆô·­K6¢‘ä„©JRR’Y«iäfd.0Ñ” ”Ýålß^¿À¦ÅÊ2›pV2÷[Ÿ¼²xYC±1îà»-»åF¹ ·-EœÇÞLJŒ6‰NGZÔy)¹D•¨ÍI3Aì.!_ˆu0ñSÒÒÑ“rÉ+Á¿8ø“ðÛÞ"n6ÒŠQÍå4¼¥Ï}YXçe†Xf›¦ô’u*FÛ.=P4Êu¿«M8†\7VG©¶òÍ97¤ô£‡h‹éUïmö¤T2âÅÞÏ­Ù_=¤ßD¦§¡¯z§)NÏ%k®¥woqý[xy†×TŒ¾ePY£Q.j½B‡]¤”©CLˆädÓ¬¸âÍÔ%ÂRs-[–[3©Õ«MÔ§}&©éÁÙ_cY+kYãJ•E +–Ñ[挕ݭ“¾»¬žgº76Mü1ÄzµÑiIX…qÓ!Ѥ=¯›†óŽ%DΕJ‹NÜŒø21ò¡¾Î’„¯¤¥¤ºÔn»3¹ûžçoP¬åhèh<íœÚ}¹Xõ-½Ìõ[_ñNâ¾ížC•“O“Hßå´R£ºì¤%j\fž7[ÔÚ¶oÍ‘d{6Žµ±êS„iÊ÷–V³çµµìg >çµÊqÕMµwg{«e{÷£ÛÀíËõitë¾½|ÚÆÍ5…^§Kä™M3 ¥6Ñ.3å/ ÉJo{>> v=AhÂ^²œ²oó³Wµ¾óó€ÜùM©Mz®y´¿7'kݯu‰>ÛÜчWÂJìzÛ4Š]ÁFn£6‹ÈÒÝä…RRgU4Ê%#4í%g³„„Z¸ú”7ÔÖ–ƒºwJÊkÕËŸ2]-Ï…}駣§“Y»ÊÖÏ›#;îÉtÚ…n±&¢S^™%p£‘¨É¨Æâ¤f£3<‘— ™%¥œ¬®úí™A‰qs–†QÒvì¾GÀÈÀ¢ø—´h Áˆ”Ú¤&fÑI†‡£Èi.´ây![…‘‘ýòOÊ 8F ;5'šË˜ÖþOÁMÉ5ue“Ïœ°xïâfÛ×/$UpÖqPæžj:d“[<Œòm{\dÌòýš?¤¤…vw¥ ªzËj×ø–XÍÁŒó§“Øõ~?â~Þ8;QU.ï È¦¼­[ÒÖL>IáS/'48]iæ\dF6X|T1 +ðiù÷¼Fxwi¦ŽÌ{šúáç°TßÌ y~;•Ÿµ/3Ôp”=•äM¢ 8ÿÔßÀëMþ{¿Ø×ïýGYñ! 2mùtuÉ÷È¥DÐ »ñTöX—³…ðW†«ò{”—³÷£)ùEÉÇÚû™žø»›ðTãÀziÜ4FòOõµ¶‚âbFÕ·êêGô‘£ÅîE%>¥ãeepäj¥T–Ÿ5oJÏzVz.´õqšHc1™S $ÚººÍj×àlðû§O“³³Éöxk‹×?|zqåçè'=Î¥KÁ«ö™uV HŸ3˜z<]êÊTu³³|RS—5·ilq´zn &í¯©§÷pUÕ +‘“ÔŸÜ×ÞY 0Ý•G´/ÌK¹«4)²é·;¨~VÉ» ØÉ[ZÖ”ó,,Ðf“>–FB¢¾åJ¥A5¥Ýçg¤ž—‰wCu£N´ª4ôd’KŸÕkGÈŒpût•"Û¥Xì\›Õj‰.l»zCUŒÉrS„ù5-½åfâtµ§J’f\Éìkàe9JQ’[äe•õ&®³YÙØCÅFQº„Ü£³m6žO+¤ÏG +ñÞgÔ¯×àÜ“*òjʪËM.à*}:Z·â}(~6ð½e¯=Y«##ËfCílœTc£hÆËJ:OU¯{¡K')i^R»Ñ–Š×{j~g»LÝ@«QêVýëiIª@ré“uÅ(U"ˆ¾H’g­‰:Ùu.´e³2$¨¶äyÇ J2„’”ièf®­®úÖw?|!©Æqz3©§“³NÍZöyX®×ÝÒWµÃY¯&›˜Š„—D(m“qã!GÌ´ÚRDD”‘pg·ŒYaéo1Q»vZÞ¶VbkoÓr²ù–I-DŸ‚X¹º+pá¾å×" Ц4q©Æùå"B‰G¨ÝÐZ[É&E™çÂ#âðïhßÕÒN[ZYÛ±½g|"4“ÎZ-G©¼¯îZ‰fné[Vmáp\.[Sõ·üj»!2ë-,欑¾K€²Ô’ÍhK„—Y¨ÕŸe n|”4^¤ô©»jK;>ö» ïtbæ¦Ó¼ ãS=wVmly'ÚzQ7JÐlªŽC´­énÛ¶<éU-îªó':£.aþŠë†ÊM¶Í ØÙ'VFY™ß Ê¦œ¦Ö”á ´od½ù»½gáã£OF4ÓÑŒôÞ–¶òÙªÉYN­ºÄ¢[ú]¡ä“:¯qÒn*¾äGYip7÷’[ 5­*Ï,ÔœÏfyPÁTrƒ–©©/Vé»ÇGŸ#½L}=š:W©£®Í+KK߯È÷¯-Ñ8wW…Šõ +=àb¿ˆ,Å)MLrÔø5%½¸…%å Í&DJNÂȲé|¥© Ü\iÊëZo_»œûWNzr´´ªAÅ«¦•í©äùŽC/uNUª÷mñ&ƒ_fé¹-iô˜Í» ÚSn9É攵%ô£˜IèÈȳ>¸6¤c½ÅÇC|Ó»¾—JÛú[¥NMT’–’ƒ•´xº7ê# ?Ý%O³p²£f½I’íÀÓuˆ´j’ŽG‰²–-+%½Y6½HË›Ú&b°.µE$Ò‹ÑÒ\ïBNJÝùö0¸õF-]­'±Ê:/æºÊŠE‘t…ÉH~€4çÄʺhöesjõÚœztô˜jvD§RÓi.HW +”e·¤\'ÀD2»½MÔŒSmÉä» fàTTÜœšI%›í&ìwñNiôÓ“IÂêqOxµ ë¤FIðjaƒÉnzŠ^’þ’¢p{€åWo¢µ÷“±›¾£•5~·«»æd~ b]ÓŠU*×]vUVZ³ÉO¸f†ÈÿRÛe’O¨”‘ …hhVÞg=Ž(ã6£.³}W¾,—äõNyGÇäV¿ÊkTeáó$ÛCÅ$ÁÛ•æcΕQ¢-Ã"5Ï…ú +LúnG[¤Eꙕw´5Yö?‰t·rŒòw]«äÙvm{º‰{Àf©oÕ¢Ôá:Y¡ø!æÏÔÍyLit…JR¦í$ÓØÕ‹ÊucQ^-5µfr!ÌèÿÑßÀGØ¡‰ÖþÛ• ¦å˜Q ÃNÜ‹7q[ÓIýS‹=‰/¾y”Œ>Uä£lˆ¯r–¤uùÆMÒ˜™ºòáE·E-ºl§M0múy¨ÍÄ‘ì\¥'-ñD[TjÉ´qf~‰…ÀÓÀGJVº×'÷ló<ó«–Œokå÷í-.x–ræÇbn!ÜÇ k$¨éÔ”¡kAq¥É.£WX…ô£8ŸÊ²¦¯ÖþHµÃ~O_:ŽÝKçü9j£ø›8*Ëd…Óên«,·ÅÕÔ~¯2I/È*^îVÚ»‘mÀtv>ò"Ä/ÊÓ©2ó¶]Ï:•'IïlO$ÌŒjâ#RI·^®k?PL¡ùC5ÇIödþòÉèKˆÚêy¯»ï3¶¯oãáÛ¥™ uêRÝWèRc¬ß¥Ô“ÏJ‹b³… $¸ž‹a$gGt£·©å%ûwÉB¶æÊúºõ¦mŽå=ÕÔ]ÒtwRm&ŸqSГ¨SµfZLÉ$û{TÒfÞiÌŸ °Û£¹ÒÂ=±zŸÜúÍÆçnŒqkd–µ÷–ØTàÿÒßÀuèñ@qºn-b2ìú[‹v•m½È,0ÞÞI©+$<æE匔{Ò=c2òÆ=q°Š…=7®Jþîo™ç[³‹uêh-QËßÏò5crænç»Z;²£6íÏSi·j’̈ÔÙ¨‰E³âm¾Ë˨Gú’,žécÞ*YqV¥÷šÍÍÀ,,~“Öþâߊbä ‰ooâÅ¿P¶nX™b *J‹›meå]i\(qµ*-¤~¡™ŠåBJQvhá^„kÅÆJépktû§qV0iŽú—&‰%.°îF”T)¯mÉDG‘¥ÖóJ‹õ+#ãIô¨J;£G?Î]ÌóIF[[±÷£²›uÀ¾hT‹†–æù +©‰l+CÈ%‘ªYä}#!æUiºrqzÓhôÚUX©-M&rQÈêÿÓßÀñ®*‘Ñ©U:g,‡È½V›Rÿª¸GI¥µ£ñ9h¦ö&ζ{Ž¨iļs´×W=üÕ:U^A«nøórQúî‘MÝ9ï4%m‰.Çeäy–æC~®´¶Ýö¤ßš;2/=@§{¢ï;šUë†XclÖÞ¡ý”=:MF¥(9m€Ù8¦ØS‰RP¥™äjÒfY«ÎçÑ‹ŒêM]SŠ²æm»+”Û£^Qp§gRVºÖ’Íœ.èc°^ßÆ5ȹ¤Õh¨‹ŸmÖg=Úœy‰oôV\$6IIíJ”Ž/TÇHΕ}U)é¥$“Qqo_iøp«COÖn:i»9)%ü?r"Š&%_øzÖ +Ü Ä箓½åÒâT-ù±á›ˆD։ǎ¨èK‰ÞOaêÙÁŸ J˜ju'Rž‚Š‚“SMþn«ß,Êšxª¥N®›“›Špi~sæ¶f§Œq²1¯Å\´c¶íƒt ˆŸt¦ÓÙå·™ÿI5/ð¯äí^4{Üb¿(©/V]«ïûÙkcÚ·¸ñj1ÞyzHÔ­(BÍG‘™ä[t–¤Üd’çiØåU9»)E·Ì¤™Ä÷Ece‰WºÛ„Se2¦#BŒ¥Pì©.%¦‰f[I$jÍYmÈŒ‹hýàðÏR0Y]ëêÖϘ¼BÃS”ßæ¯ÀŠ¨7ž4Ù·m—L¼ SëÔ‹‘·Q.M›!ƒ¢ÊJ i'–§]JÚQžg ó#>,ŽÂThTŒô‹†kJJÒ]Ë2º«ÁÁÉ))´šŠiÆöëygŸ¼ôðëtEÉwaŽ(^ráÁLûb}Åm6á2´S©£tÃQ™Ÿ–ÉEŸCñ‰ÁÆ”©¥^0oë;duÃbåW|½¿s”’÷+í#úÖéŒG©Q0(­˜”$Vq ©ªƒRy —m.‚eÃZS´óÏYð œN5jÆZZ4¢šµ¯Ÿj!ú}IR§(èéT”£švÉÙsÜ•îLPÄœÃëÊñĦ­ê„šzñ®=å¶Û®<¢dú¥e›‹FZS«!P§ˆœ!KIi;=+vånÆMߪP„§WFÑWZ7ñ¿»ÄùTÛ­Zí‚W\ +ev‘t+yœTj|–¡º¶ÉÄ)×ë©[%ž•-D¤~¦}§F„ÔÔ[‹‚m95i[šÖYì8BµxèJI56®’wùïw«œáÝVƒE¾NE&4û†=Û:×µéQá.{­Iµ£žìJü¬¡ßéÐZ¸~È Ð«^mÝê;=¥f”o„²ÔÑ¡hÍF\ך·*>©ÝèI6Õò÷s4Èueèò©e§ i§ló\üéí>Þ;â¾8ámÇC‰OM õ.箢Gßš¨*K[ñ›T³J’„G¨ÛÕ·€„|Ž!4ôô£'me°‘ºªØgu¡¢å«é^ï,ù‹ƒ‡‰»‘DŽWÔÅÖµ»¿*ŽO”=Ï{ÐR?DÏNZ³ãÏ-‚¢¾…ÿs½­ùÖ½ýŶ|·îš7¿æÞÖ÷œÜF%ÿÔßÀòë”â¬Sj ò)QÞ`Ï¥¾ ÑýXýÂZ-=‰ÇI5µ3­6åzéàæ:[­óÈ•I4yš"moïÌÌω+2?XzvèÃÒ(=x©/u™æ;Ÿ?G®´¹Ÿ¿/¼ìÚ<¸õ”n•¢W-«û +ñJ™D™X§ÛŽTaÕãÓÙ9Ú‰=¢FþÛ)æœ$¢NÞy¹Õ"ãR”šZqVo%tï›(÷J“nD›Þåv–nÍXà×MÓˆøå@ƇáPj,ZO[ʃnÓ¦S9£: ¦Ï~y ¨‰ãA™RJØfe‘l<ºF<6…ÚsßmJéFüüÇáÖž'NɨorJñ³rk›Ÿo4noÀFĵìêʬ˜tÛ™˜i—!È„™­ÈS)'‰J^jBÍYêË.2÷O*•'&àäì“ÊÇÝËÁF8JQJj*í¬îZF_·â¬^ìJ©XÖ‹JJˆÔºœŒjwóK-—ªHYþ·ü¥e)í²^ìþóùE[8ÃeÛ÷ÿ \ÖÒ~ÕÁK}ÉV‘6¦”åµ-¾é¡¿Â–É^±¤ÝªšuŸRKÃñ.÷ž…~{¿»î%¼rÃ[‹Nã [Mò‹¿ïßdôEU2×£O#äâ7¾×ë™éXJѤޖ–vâKGn²v.Œª¥mkñã¥Üp /ÁÊѹiõZ¬ >j#öøº%®¨5ÖÚ’[Óæê‰;LµlڜˌK­‹„âÒunúSº×άC£„œ$›Tò|гÔõ3ÖÝãoTkØISv™ÉnRçÓ*n²ÒMK6"HJÝ2Im=)3QåÄF?;UR¯,•Ú¿jhéºÔ]ZQÍÛÉ£Ùou….ó»ðúØÃ¥C¹\KÒ«2ò”t˜M¶•ÜÐFHpÔf 2<Ë,³2µ¹Ž +r©x¨,ŸJWÉ#— ©è(ZNm]lVW¾Ë7ðʾp»¯ZÅ>KµŠebí(΢|¦[O#$Üo6[q-«%™êIêà<È\â1“¢èÆ-ZP§|“ÖíÎSáðp®ë9,ã9Û6¹¯ÌzwÛv«Ö^ä´_›ò£MñÅÂqæ´5¼··\|œO5—•Û÷„…¥éô8Ú¶­~ó‹Qôz|]9ß^«õ ùna]Ř™JÀÙnUŽ#Ôºœö~t·sŽûnó<—š¶¶ÒÏ$tºbº*Ó¯NUòJM'h­jÜݨ:tjQ© +íÅ6½g©ßŸÞXØ[­(×5_ -Ì>r%Ç"àZª†œY®•¶IN¼ñ Œ´«™$¯,ÌŒºB·6Qu%RñQM§ÌÝòKmú‰°Ý$Õ5 JRqMs¥•ÛÙbˆ[¸IYv¡‹8ÇgÉåÏf^õG£@̉0ZYªc:2ÌÖëk=¥Ä$Fg²åbãN©Íz•)ÚO_%ÜÿlŠ‡„ujUœ­N¢qÙªï½eü9;b-nº/7<Õiyð Öè÷é“M•ÈÓc­ ¶kk}I+J’²4,²Û‘—‰‡¤ðq¯“qTõ«¦®ìüI8š«* ]iJw³³MG5ÞsÑ›š)¶n +_pl¨3'T¥I‡Y¨H”û“*C}¬Üqy©f–ÉF”‘eÑf{b`÷Eʵ7;(ÅÙ$¬•Ó_Óq{œ•Šr’M¶ÛnÍ3b¾([Û¢jØ @±êMU¦•v v ÜUoŠ§D†É©Ó“—™)Zt«#3#,¸3•†ÃK *³š´T&“|îNÊÛnA¯ˆŽ&:pw“•6ÒÖ´ußeˆÞêó—v¶Ïßȼ_ÓriñpÞÔ¾4wŸ¿ö®? ˆótÝ¡`"Å“ •*‹~·hI™³™f¯HK(%–\ôu–}3AŸ´Üɪ•e®I¸û2m5ߟ¼¥Ý(:T–ª”`¥íE&ŸuÑw·cyù€ÿáóOüÛƒ;¹iÿj§äh7k‰ím?2ñ +@ÿÕßÀ`gŠ1¹þUy Òc¨¨÷‰T…·žQjd\Ö£/*OkIçåõ—HzáãUXoo\uu¯ÀóíÜÁ:Sß©yþ:ûËÿ¸Ÿu?¨-ºôÄ3wRÙKn¶â‰'Pe²È¤µ™óJÈ¿EImJ¹¬´žÌöêîkÃKJ>3àIsFdBf ,L´cï|ÉñX¨á£¥/rçlëÍoÑîÍÛ¼âß#)‰$ü×Q©LÓ©ÍdœˆÏ-¶D„gå–eÆf=r†çQöV[[<êžèÖíyõ#²å¿A…kÓ)ÔzkÄ8Ù¤ð!¦PHI}â!æ››mënìôèAA$µ%eî>Àü°ü2###,ó|Š]»J¡©õÓ©‘a©óÔê£Çm£púj4$µ®?r¨å­·m¬üFšŽi%~£é&;HJ–ÒIVf¢$–GŸeêÍÏÕáp㸔¡L6¤§Ê‘ Œ‹Ö,¶Å阬ÆÏzi çÃ¥$œÿ7p•›M·i4g_~ŸL‹×Ï7–ÄvÚS‡ÃšÍ #WßÌ~G%fÞ]gåAEÝ%wÔ}T2Ûz´!)ÔfjȈ³3á3“ôxц´šBtç§$eŸYÌÂâÇ°>ON·©Tw_~2,Wdo-ˆí´·‡5© #QúùÛ›–M¼ºÏ‚Né+¾{Dã2{áHýËó%Ízý1ù¹ú±úävJR¶Ò¢NFDi#"Ë¥˜\Xþ–ÒÒkBTi<Ó™ä}2Ï€Ââ×<ƒáôÿÖßÀq{ÒÌ£b¡o\NžÑ´ûdd|G•$ò4¨¶¤ÈŒ2iU•))EÙ£•ZJªq’ºfîƒÜ?}àQw-’©•j$g9"4ÈZ¼q§é<Ë}KY(ôÿ FÃáQ$z u¡ŠZ3²oZzŸ‘çøÝÉžéS»[VµÝçär¼'ñMo«9–©×%‹™–KG$ëä9å–ÎmIJ›Y—ª„¨øÏ1˸0©œV´uÃîôéå5¥×©–ž'Š§`8ƹ6q§ˆ¼Í%Â3õ¿'Þ!Rÿ'ªsJ>?"Ù~PÓèËÃæDXâ«M“Æ,»-1Q&]VA;£Õ&ÒYúîz‚eÉ䟯+õ%oò!Öü¢¿>÷Ÿ‚·™Pm¬<ÆmÛ!UdªUA&­U§³M„Ùžf†ˆˆ‘‘p“m$Ô|}1s:ôw:6V]K6ÿm¬¦… +Û£+»¾·©~Ûº»œw6Û{œhL¤%Tei]F¦êž”âKazNg¡y ™¨ÌÆ Ž–.Wy%©lüMî$lµ½ooàX¡ZYÿ×ßÀˆ›—ð·Öë÷—éNj–Ê,“>™»Ð¥\g˜°¡ºhñdí³Zñ¹_[J·*ûVOÂÄ‚®/Z`Õ,óК£š)þQ`·v¶ÕÜWð¼‘l½Ãx-d:™¬Æg>“#K•'\›–]$<£oïèÏÕªîµjšånË/"M-É£OóoÚÛóȵáG§0ÔhŒ6à $’ÛM „$¸ )Iz„B¥»æËd­’=‘ðúÿÐßÀÿÑßÀÿÒßÀÿÙ +endstream +endobj +154 0 obj +<< +/Filter /FlateDecode +/Length 2967 +>> +stream +xÚí[Yo#Ç~ׯèÇnÀÓ쮾a{eNÖȱB€ÀÉÅC«„‡LR++¿>¨êžá̈Çì.ŽV)‘}T×ñÕWÕ³£o6»ûùx²»¼ýqônü¼~ܽyþ½z{1úþ½bw[öíÍ…bŒcÒZÃ6wL* ìfÂ*•{]+¦ÙÍœySL± ÓÚH]T†“Îy­4»Y^pÅÍ?/¾»¹øîÇ· +WRìæ _Þ1ÅîØÏ£ë¥bWë‹?_Œþty9z7^Ý1>[Uß+F?¾ýáŠh½—S7râfÿ"Ñ ™ßóê£kåÔJÆ<ÚbˆR©ƒE9âß/_ -=_ÍDe¥ã¿ˆ +8{+¢ôükQÔœ½•–Ž—¢22ðþ |FCw3Q9 |#Œt|¹ÅïgãÕ”¾ž' _ã_J&~¿•—߯qÛÀ·4h¾.³Å?n~_kî¸j ¨†TB:Of‚r|¯;‡× MR\}øÊJà[6fB{ |,*­¥æQiŽïDJz~/´ãQ%ü-IË[ã#)ðÈ;v/*À‰+¶£¯<ÿ ¼L|Æ®xiø•0JjþÜÑIÇ7EXg•LèÒ&éÅJÏ·¢Ôü«² £#Ÿ±@cÍæ+º«´‘‰oÙO|Ξ$Z_•Æ)v[¶XeÙoŽËó{”ðÜIjÔL­›”c-¬4è0ŽOqÏSLQ•C¡”õ8Ú§^eÁÊÇ/3ÌêfouŠÌ˜MïO‡MîS”:)¯M6ùíøz!*cøbM®ù$*H$zeY³ +Òò;<_à_“ÍîekIbµ  óÁI½ @ø0–FïÆ«ËËÑ7“Ýãxq3ûeÇ.¯¿»¾VJ¥7‡WL2Dkô×d-È9-ªëªQ¹ Zû8#UPIÅÞ>?ñ¿‰¥íûÔ4µoEz[ ùGa0Ô‹³f÷Œ|޸ׂüwÁžpœ§qšqnâ¶ü®Ò¸Kv̲•‰Oé#5(iøãÆ¢€4/!ö´}Õ÷}U£3ün˜¹}W‡6dWÄ÷ŽðZBôtVâ-‚¡ç²ÞíÓÁ)©\‚ä{k‚#„Ot„Þ;Â8#äáÉf†çùl)tö€</wǮ٦ùB²H^’F­„FÈ,àÈ–dy‹ÑŠ>C¡[–MÒtp7xf[Üöß7~€hÂ+̤á.¢Qã6H½W‰Ì4ù" Ð>eûk7}:dz©’>nýÎV'¬¡=u>3|–ÓìƒHmó”àm[¶ -éfžJ'>Gk’› SmŠì=£±®çÏ쉜¡¨rb§œGói<_àò±ÉÇ}±63ÐÍA5ç_`TǶ{€™Šÿ–M‘ +˜f7ÜÛðL lVãw‘eáò%¨G:fU2FïRhd÷¾ ÄI^”/¢@έ0$úP ƒ}—[‘ø£+C‹]ôÎYsê—µ?fºFüS…Üôï ¢£ ¶&y®ïugz€àÀK«‹}£óªå_Ç—ï•-¦Ô^æxbqÁw-$ç#"c‰Ìn +‹±ÔÖÉfÉE¤E01Ð$CÿŽ¬‡FðÐ +Áx©¼QÊ2ç5Ò± Ó÷ ¬ÔÚaÀõÖÇkM Ñ,¾–Áäý‚´J»ä{û äÚ᩸AzÞá˜%²Oxéib߉®¡í=‘nƒï”MèånžmÀÓíÝ¢Ùh'«m“€jŠRr-Š%†£:¸T9©×a>š%5åC´³V7Õwèèàj¬&Û߆‹Ûã¢ZÊ+“ƒ +0»· +!@f³jŽ¸7ÍRs:v vÏ +{*ÃöJ[>'z5€î&‡¹Ç¿MIa¹ÑlJ£¤+}öî…€+S„s®…±™‚/¹ +ÛM ¤ÈÍ`$=3–{C;AκfcRÃ-õÁîñšOQÐ ½%xn&¢{'þAhä^Z¾hîýÂÔe&U£‡-‰ïlË×O™le -ª _”/‹ˆeј›'$üB€å»2¬ž¼j‰dŠ@å£96è…~BAŒD+Qw¼ðò{Š¸“>¢!äi–ÏË_Kˆ"µ°•ä…oDsR%Ý/yŒ—Üõ6í„­‘‰ö +ä“íóQ5oPÆAÔ+Š\¹¿Œ¨G] Ñ BÐåÞb'*cɾA °‡ÂS2]XWõ!j3•,Ù|–"Eåô`šo̘Pgo^t´RGð©´áÿŠ¼"öú 9LKõ¤ÛP×+•ö½BBwô»}'òÕ‰Ën„<}Ên³#=#¬Æ }cO°Œóá¯#›QÊ•¿î?LøØJM5ýLyÚÔ¬\œÊ“IY&Þ›^ ¢f£’ 5³ÚK «À)é½a››ãtÀéªüüŸae¾UÀlòÒzm’c“%Ý{.i9ô!ÅìýE=I± +sõÙqYˆÑgy´›ô~–b`IÙžUµ§)yt—F'¨’¨“Ñk¼Knj®¼p²U7Y^h¤`Ö:™0«¬ŒÎ2c$6ÛIiÍ(N3F'_ŒÁ*öÜe¥;3Æ$%ù1Áwd>8Æ›³2›ÎÊlŒ;/3èó2«pVfHö¬ÌÕY™Áû³2ƒƒ³2ƒ‰çewTæã@çN=f öo›' Ê#ù7mÑ!cTY¥¶1¦’¨~`„&ž‰:ÐÝ]þƒºW6w€‰·¦ò V¾¶ yÀ!†Z8IF¬ŠeàSö$JVÖô¥ì-cø”FÚ”íð6ÙÔN Ó.cظHS…Ò³–À?â[ÈsT#ñf‰{Ñãy&‚jä"P(òu2>Üø½ðDómËåz{F=fµŸ‰è<Òd[“ZîQð5C‰‡Þ››V=~ÊzÎJƒ˜Tkï`Yh|Ãdíè˜YºŽq©g8¥G**,Kðˆ˜–#Õ[{]L]¹Ýç{Ž‡ülȘÚ2+¤‰ø,±€UÏbWDúò+>Far¹˜íW¹½e¥‘m‡é©×XоÔëžèÙ Í—5W.FßßcÁ‘|ùL‘.wÔEHfñã\ÿ¸¡|$žì¨Î¤Ô J‰¥ÀëËo÷E +z°`èÀƒ¯¯Zü_~„édóñ^Ô4ÆÒ¾{‡UTn‘ª—©É‚™!ãY¤ÒMÓm*6p"_ C4«>Ѭ‘ÉƤí+¢½"Ú+¢ýŸ šíõcëæÙ9´Ð¾Ck¯òÕ2öÃÃr< &b>¶ ÆK|µü+l½ÂÖo¶úO­v-¼î”m7ÂùüŸ°ºÅÿ‡Q—¼>WØtY4ÞˆÊâ5Û3r3Î~ ´Kœ­¨z~ć¤Á~Í.«m†Ä~.ðS7;_ïø^ï7|ÿòs– +endstream +endobj +155 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +156 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +157 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +158 0 obj +<< +/Filter /FlateDecode +/Length 405 +>> +stream +H‰T‘QkÜ0 Çßý)ô?D–íØŽG)ôzm鸲•ö°Ž4ܶËõÒ;¶}ûII3[–þ’~Hæj<ížÛí ..Ì0›öÏá|‚ËËÕúÔªQ„ξ«ÊÃØ+s÷Dп*ÓØošgEHä¡ÙBùfý‚ˆ‰sø$ Pe9ù .`‘söªðY7ßÕM£n¸Ó‘q’\./¿¹Ý¬êQ™‚·i‡Šn(ïVÚ<\߯Á¹*üÏ +‚ôC íigHaónjÂNY‹n¦´Ž1ëÀŠ\Ar £wY0?W:b Å -f~:]Vè ø­K¾a­I¢ït9…áI ´ìPì_t鱂â§æþ,èæ´—7Ù(îÅAþü~!Å%cRì†~N9ž;©ÅæëI—=Çæ&‡…­åWÜc§¿6ïÿÍÖÜîúóØÉ—©ÅejG•2ú¶rèˆWå=&²"/Žj;õ –-kŸ”RÌÓäB¬1ºœ‰÷=•âXær©v¹ö¶{eî—MN@ê¯4Ée +endstream +endobj +159 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Filter /DCTDecode +/Height 1180 +/Intent /RelativeColorimetric +/Length 177783 +/Name /X +/Subtype /Image +/Type /XObject +/Width 900 +>> +stream +ÿØÿîAdobedÿÛÅ + + + + +                ÿÝqÿÀœ„ÿÄ¢  +  +   +K!Ñ1QST’“"AR‘”Ò2UVaqÔ#3B•¡£Óâ$4s² 567CDcdr± +%&'()*89:EFGHIJWXYZt‚´µñbefghijuvwxyzƒ„…†‡ˆ‰Š–—˜™š¢¤¥¦§¨©ª³¶·¸¹ºÁÂÃÄÅÆÇÈÉÊÕÖ×ØÙÚáãäåæçèéêðòóôõö÷øùú s!Q1Aa‘¡R±ÑqÁð"2Br’²áÒâ#34b‚¢ñCcÂà +$%&'()*56789:DEFGHIJSTUVWXYZdefghijstuvwxyzƒ„…†‡ˆ‰Š“”•–—˜™š£¤¥¦§¨©ª³´µ¶·¸¹ºÄÅÆÇÈÉÊÓÔÕÖ×ØÙÚãäåæçèéêòóôõö÷øùúÿÚ ?¿À2Ó>0£ü ‹q-5 .e*›*[ y&¦ÍÆjI,’dfW-¶2¹ Šµµ¦Š´6‘—[;+*«§JM”ž_­@ÒÉ‘Ð}GÎÜ{U°Î­ëÀøgõUo•;Ÿ‰¯Õ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~&ŸTÿK7ývP}ÿœµ[ êÞ¼¶»|©ÜüM~ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñUKõÐ}GÎÚ­†uo^Û]¾Tî~#ê icÞº¢HùÀ{U°Î­ëÀ{k·ÊÏÄ}T ,{×AôI8j¶Õ½xmvùS¹øª¥zè>‰#çíVÃ:·¯í®ß*w?õP4±ï]Ñ$|à=ªØgVõà=µÛåNçâ>ª–=ë ú$œµ[ êÞ¼¶»|©ÜüGÕ@ÒǽtD‘ó€ö«a[×€ö×o•;Ÿˆú¨X÷®ƒè’>pÕl3«zðÚíò§sñ?hß­;Ò»Ï2Ú©”-Ä$íûÙJ"ëêZÁ-5o^iúª·oE;Ÿ‰}Ñ7˜eÅr­ QۜȌyýJè4¹Fà`ÈC¿£SO8‹è{Á´ÊþbÒ¤ÔÚ†´Ìmn7«[N¬Ì‰ AÞè/ ¹öØú9U£¢¹…Láç^r›ÙÏd+ä¶jº"[Œ|ÍìȬOª}¥¯{h>ˆÿÎÕ{UäùÕ½x)í®ß*w?õO´µïmÑùÀ{UäùÕ½xmvùS¹øª}¥¯{h>ˆÿÎÚ¯'έëÀ{k·ÊÏÄ}Sí-{ÛAôGþpÕy>uo^Û]¾Tî~#êŸikÞÚ¢?ó€ö«Éó«zðÚíò§sñTûK^öÐ}ÿœµ^O[×€ö×o•;Ÿˆú§ÚZ÷¶ƒèüà=ªò|êÞ¼¶»|©ÜüGÕ>Ò×½´DçíW“çVõà=µÛåNçâ>©ö–½í ú#ÿ8j¼Ÿ:·¯í®ß*w?õO´µïmÑùÀ{UäùÕ½xmvùS¹øª}¥¯{h>ˆÿÎÚ¯'έëÀ{k·ÊÏÄ}Sí-{ÛAôGþpÕy>uo^Û]¾Tî~#êŸikÞÚ¢?ó€ö«Éó«zðÚíò§sñTûK^öÐ}ÿœµ^O[×€ö×o•;Ÿ‰?¾¿¢ƒýÞËý”F€ÏðGeÆï¯×fÏÅßÜ­oùßg½Š³ä—nN3§dlGÑûì­§+½~0 +4Îב`#ç¡ÿпÀú(?e&‘¿»Cýb¡aìWÜŠ>2ï+ý•û_Å}Ç•ÄòÈ=`òVeL ¡}¤èoÔ0žŸWŠÃ¦Ã¯El””:I%d35Û鈼£—YX4­*JtI/“r [tÝšn4ÁÇÄÑ.4›‰O³…çž "Y1L)l„šÔy—a$¯~C-¤3Ó,îs—•Üç Œ>Eh«æÝ.óÕçè?|w¡Ìs£ã=‹0FÔ•deÙQÍ--|¹Ietæ¶Û^öñ y?.²·qgRo$ñ6å>ÇÚØ)®––pà퓾†-SiëªHÑí]0Ûk^§“9Ysg² Jµ¶òl!Ëʶvú™:ξH·»yPâ'CÐaHdU$Ƈ•="Kˆe–ÐWSŽ8¢JREÎfdD'·•éKƒ+Ó¾‡Ý$ÕëU\; T_«R’ÊçCCI7c¥òÌÙ¬³X‰E´¶íŸ²V*…iy]m¤õJÒN^Æ[_vw]ä¦#ωÁ×4C°ÍrŸ†ªØZ¡ +­PRñÔ‡$©jÊ’jþ +î{6íØ:YrÛ+J]TTšZaèÖs¶ä6¶U*k¥¦ôJxê;*ú4©¯Öq©S 0¦’ä—ÚI6…:´¶‚3%ºZ‰%ñ™v>ÉØZÔ¨¢¤Ûе½g[ob­ìéuÕKIiq£QÇËÐN©ø†“ƒê Vç0©1`)¢'že£RÐW±‘}»,cj}±ª‡Z©]§KÔ´xšWìu­5SC¥Í^÷nŸ–ßC^”ñu:5^‹*s ÉÏ©Ë)6ÜȳB¬f¢äRL¾RZû)afîÕZO y©7²ö*ÞÑ^¦–Ö:²pûŽ·UÐÞ7¡±ˆeT0ÄØÌáçf¬ã‘&%*m.íØj%¤Ê×å!ÒŽ]eUØ©{¹»¶4œêö>Ö›ÉÒýÄ^Øžƒ·«è\ÒÚ`PôU(dÇ 7õ)ɩɬÏ|Ü™vüƒ^ËX'uÖ¦cN³µ>Ä[Ô¯*\5:5ê«£ŒQDj€üê ¶‘ˆK´“6G9 +4‘)MÍWÌ›®w-‚U¦Šªt¦¦+/9¾K]4Ó[N*Ðóõ“–ÆÚÇz7n)ÂU*Di'•§¥Å[m©V¾\Ü„«}©Øþ!Î×YZ»´T›Z“:ÛûkeMêéifÓ64a‹ba†1£ØzZ0óîMTÔÝ£-f³lˆ•{íRM7µ®Vô«>sš•{-z$Ñr;GgÎûž­0dˆ¿B~˜¦2Ô†4sWq§P—Y2›) "RL¼?W²üž—µ+i*aùEI5K‡°Æmâz~¡B•—2KУËq«vK*Ri&FfjJ¢2·)“G*³ª«‰¦á8×1∵ò;Ji¾Ó‰jv©•Àçñƒ´…„(èļV§ÒÔH>"ˆi$¿rk3+ •âÌEqÎd,kªå5&ò”o_±ÖÔÑÎ:\g ã'è§S)ø~«/Lf }ÆÚ¥HSe«˜ã–È–ŽûMWÙ{\t§•ÙÕS¡54âÖ´iW#´T+Fסê:Ö%ÃuLS™F®AvBõr#…í-J§·UkUW Æ) ”äS +F°œ#ÍîM;~A¿el(©ÓUi4á©× ™gìE½tª©¥´Ô¬5c èKHî–íoàÊ­NœÞr9Q¢-ÆŒÑî‰&Eá™xòÞí¿.²±wk©'“g+Akl¦Š[K$Ïœ ¡lw¤ÄNs +áIõTÁq,Ê8íê\Q’J22=‡³â·åÖV0ë©)ÑŽŸYŸZÛ6¨¥¸Ó†X4^…ñãx•œæ¨·^} +qªs‘Ím)5šÐJ±)$”™ÜŒËaŒSˬª¡Ú*“¥is‚Õé1_ µ¦µféj§¡Fœô¤ ãÚž$›ƒâaIïW¡7®“NKE¯i»$ó(¯b+-;oã |¾Êç9y]˜RgÉö¼ç5uÞÓŽg@­QçaÙóiu8«‹6ÎG’Ã¥e´ëfiZ^#I•Œw²µ¦Ò•U.SRžhmcUNŠ”5¥ +Vƒt‡€X¦F «5FÕ“Ü9Pœ&‰£äpö\‘ý¤e–Ûoaû!b«æï+ÙJ™È½Ž¶tsŠ—ÃÑŸ˜ìTO¡ƒK8Ž*¥/U%BšÒŽûl¤ÐëNd­&j-†Grø†–¾ÊXYÔ骤šÒŽ–>Å[ÚR«¦–ÓÐàÛÑ>†½)âBœt¼ T–Pe=N©’=L¦,N4¯¬¤Ü®A_²–Cu¥*VÕŸgìU½m¥KÁÃÃCÓé:¬=ãYõʆc Ï:Å=‡$Ë€¦ a»œR”ò–bÛã¹Zã«å¶JŽrò»¢g 9.Ají9»®öQ‰úàc­%G‘3 +á*•^kI%5×lºÍ·";–ÛXH´å4QR¢¦“«BÌeÉk´¥ÕJ•N‡Î!Àx‹ A£T«TybÖY9÷_I$¤²V=b +÷4øE´È¯qš9EÔè¥Ë§JÈÅ|šº(Uµ…ZguÁßCæ’t…Kfµ†ð]F§OyN!¹1ÚJ›R›Q¥dFj.C##mý±±ªíu$ògnOìu­µ7¨¥µ1†gEІ1%^«@¥`ê”Ê•)fÜøÌÆRÕeö®™x)>b3Û⯗ÙSB­Ô’zé1O±öµVìÕ.V•gIÐþ7®b8J¨;]Œ…¸õ4ãš$¶„[2”‡2™f-¾;•†jå¶JŽrò»œàar W_7uÞÊ1ïDÛEåX· T(è’f–W-ƒCn)%sJVWI™Š÷¶Û r~]elâΤã&9O µ°S]-,ãñÀZ(ÆR\Ö°Ž—X\$¶©)ˆ‚Y´— É«™{¬§ooÊy]‚›F’yšònGinâÍKY¶Ñ5ÆÑ*óè8fmB- Ö™ï2Ù#¥¨œ32±‘$ÌþA­·.²²‹õ%{FÓ{cím[TRÛ§NÏX8©z<ÄÐijûô9I¦VSÙZ¼È–êLÒhk-ÍJ¹Zܤ7\¦‡[³M^JZÖ–|No’Ö¨V‘î[‰Õ9p9Üc¡\}£è Uq.ªR¡ÈXºî*”å(Þ¯c­•ã¥ÆpÎ*vŠñ}6“D¯Jó¦VÝC4Ùjoë2œrùگʫˆí{”ò»7[³U+ÉKZãÕœß#´T+FÖâukð9¦ô¤'§Wé­àú‚æPCÕFÑÛZ Ä©Â%rÔV¾ÁËÊ67Uw”Tá=M£·“-¯:.¹I6£z +Œ1eV¡)èµùJƒKu#LÉI3#i­»TFGÌ:Õʬé©ÒÚ”¯5’ÌãO#´ª•ZX:®ÎÜŽÙŠ¾‡]&àjzê؃T©ÐPãM*Cí$›%¼²m´™’j”dEñ˜ãcì…¥JŠ*M½ +NöÞÅ[ÙR몖’ÒãF£bü]ÀG¨¸Ž–ý2 Ê[[‘¤$’âRêIh3"3÷I22,9E´Þ¡ÊÍmù=v.íj“aAÃõLSPJ£S¤T'IVFcEiN¼â­{%#3±m>bÚc¥uªêœ%­è9ÑC­Ý¥K{ÎÝ‹tCðÚ};áZ…2UAin#r£©!jQ$’ڽʕs"±Êûl#ØrÛ+i¹Rq¦&ßZØÅúZ™½“¡}¾æ Ïn´ÜUNT4DñEA”õ¯cAÒ?‹”kO/²t;ERºœ7ªMªö6ÙV¬Ý.óR–z|­QÁúM™‰¦R_bSqÖ¡MZH™}m’Òƒ½ÌÓc¾Ïî­éuósî’N5ÃÖpèõÜç#ÜËSµj;+úÇqªÔJ˜RyTklšdbhrØ25k±™lW3¾ÂÚc•<¶Éªš©{}³Îu«Ú§Jiû¿{´èZ\ºÙtéì)‰q[²»fmÖÌÒ¤ŒÊäecÛÊ;ÙÚ*éUSŠjQÖÊ«:5`Ó†l怺ƒùê/è­~¬†µh6£Iì +ùÖ7èMþ¤‡Õ¤öjtÁ©°V‡ëReû¿Gþ»¾>£êSíçñ_z>_ê¯í…ñ½ ¡a螀Å~²{—I?-'÷ÒGÅýW|½z¶úøyô—>,û@?ÿÑ¿Àú(?e&‘¿»Cýb¡aìWÜŠ>2ï+ý•û_Å}Ç•ÄòÈ=`òVXŒ›©¹ô+é4„ÊT¿e4ýYC' ëÚ7¹ÕxCæý’Ž›c:"½:4T}O±3Ðíã:>uÓ§)ï¦ @mÔÌζÞpªšÏ³“ÇÍ_n{æ½öòŠ{Hèü¦ç½¿†^ùhàXS{äÜç¾»Œé÷µi"­8ªñ¾†ý1*)iax¢)QÊ¡¬#7¸Kf½A=·¶åÙî¾1gU×ʹ=ȘÆ#DkŽÒ:½Ìr‹ó¢tLêàMù*+zn¡B*®Þ0w¤éí:ò}¸DÆE!¦ÔO)ec>L·$øÈRZS_Gµx\VŽ÷_JÑ«Õ–¶UR­ìV7¹µ_{VyèØQöõǤ7 $÷ÂÖ’JÉ'8bsrïa÷J9¯s¢æk¸ m{žw´ßÆ4MìK~­¥õiè¶(Äá¼xZ¬šÍ¬5p[.]·æ¶ÑðÖ1Ñ,gõ¯œ}Ý¿ÜËXý@üF“ѸŬô%³‰JAVý–8¦ +n~PuçlÄ燒ÆݯâËâ°¶®:M·7̹w ¥E3ÑlÕzyõ¦íìcfƒ}ÅC^,Å噎QR*Ôs~DÇ’¬8i'[Ìm “rIìÕÜö(túœ½vÏ8—‡áM/×Ì>¨îÞ¯ +æW4-™mÒXÚUHškÕ«VÝgGn%hûUÈ£Ö©6QiR­òþ1óªl¹-UjµURþ56Šª_jL»t«nQEì­´ÕC¦¥½¦VÏЉZ©/¢ ‚¨I&¢áJ²ã¶O¹‘•çxó6œÖAßmÓcEìÝ ›²p±´³î(ý‚­óöŠpTZw£…Ñ É5¡£O2e>ãï9:ŽkuթŨÉMÔ¥™þ™ŽþÈÒ—*äéuªô½‰©ÕanßVŽúŒËôd✠H{ C¯;‹‘XwÀ8¥H¨°Å3ÂmÄ·¯iÏ ^»·*,E´@ö2ÆÖª­#ªo&ÞQ³‰?Ùk*,ì•w¥ÙSZK^fSÁ +„ŒYô ñ†¯/±ª‘3¬¶^pÛÕÚÿmsã½­´q·›ÜªïÝw^sÀÞÂ.rIÑ5oº£ŒvÛáí5Õ°Ž”™)HÃb²"U áRªOK$5ÀæÔ«²-%nr¸´äµòy°ë\Á­Jî.¨~};JþWO(û]üا¯Ý`”­:5­E‚â=ñ­¿¡6kTGaCÀðâÁ¤5=*ª&¹ +òÕ!Q²Ý)pÔ“Íšûíež¯•MO•ÅSÏMèwnEØœËë.Jé¥rY¦‹N–Õîq»Ók ~ÄUÆþ…Œy!uYÉ•ÓÙK‡)âu¤’#l•›2KÄi#"ø‡ÑòÛ:_+±„¡Ó[б÷Å"´®žIm-Êt/64™‡¹Ú›è_r®¤SǪSê|ÈÐw‘*ƳVËfµî"[§Ó-Uz;ˆóRt±k¡Yºôsê|ת“½0Ýy­!ýîb”Í,¿E}Ò±¦§F˜Ó«o73±”âHw·›>Qkn¾Tª–t×KOs†F±Šù5•ƒÃœ¦ÒUSRtïR»JÚú4?gV‘ÿ»¬ßSÿqhíùÌ¢ú¢û—WÞ~m$Èú+1N£Rôy»‹QUwÓN'ÔXOÚÉ¥!·<%u—•.QSÈ,­j¶¶æîG=TÞM½: ¸åÖÖtXXó—¾Ú¦.´µk”Î~¦Þ#yß ùX@¦ª”˜ÑIó§ëx1gâz ²¡cØÑçØñÒájÔ¤:‚q)º›;•ËiÇagìÅ4Úغ¨jõœVšiÃ^%_±Wcn©©8®hi¨”ý{Ìwô_iN<Òuyƒlاáå +™½Ë`´DEε”)ˆ†ÞÀXªl£Óiî›ÚÌ}PÚ¾}Ù,)³÷)lD§Ãõì'‡þ† ½‹×ˆ“xŠ¦†Lf$nyõÅ=°Û±ÂÛšÆ r«:êåÍYÝži{äÚÒ²ÖNäV”QȦÒôs¿¤æîÝGÄ™o¡“½€NªãŽcœò,➪%!Ž¸þ•}]̼>MƒÔºym’µ¶ÞŒ)½î´I¿%­UÉm”ûútãUßs§‰.éªJtó… +¢nqš4T|oc´’~éÍœÏi9o+o ª¶û‹o÷ŸQ”l-y4ôŽO{ßsXç¡éÚD=0T Tþ†L8î ‘Q'º‰§ˆ\KÕTK$¸hKKhÍ¢gnÒ-·?Þ…§&¥®^¹Ø½Íáw +c\Î2UòŠ•\†®jcœÆö DaÇÐ ŒœÑåLø™®ZU:“-EΆŸuK/ÓMÈHú¢²VœÕáZFøDO©ËGgÎÖ´ÓdÞé~‚nQ¨´Fx»R^Cbªn7Æ.)8!–á#â$¥jý2¸ù®QUVöi×øIQGÞ¯9{’>£’SM¯¸ü-UUù©TÓ }L‹Ø}úä=} +r0Ý=ŠYœE=Èq%<–}ăÈn*ă2#²¼J·)‹»eKåvÊ· ™Å­){’’ÁÔ¹%Å/ŸÁ=z¨9M,Ðæãì¦jý¡‰pŒˆ“wáÊñ7.—2A:V(R”›‘fJL²+)ø%bJ“hüŠºlj±¥ª+MûŠ”ªÖ+·^ÒG.¦«jmŸº¢¥LÖ°t4§CZþPen‰tŠ¡RªÄ:;Çlári¹ô÷Z©áyp•+ë‰26ÛÌ{,FJ-…˜ÌŠñëtXÑ]tÝ´¢üÕMIÓhž¿]§{:kµªÎŠ¯Y×r)ª˜ª†¡éZ¿a°«Pbh›èwnª¶Õ ­"º‡ÖvÕ))’éf¹ìÊfD|Ö6¾WS§OFÃÏw™Sw‘¤ñŽR§(œxI™)mâtôS¹Š“58|èòíg4›™µZÏ­ýŽùrü~1Kis¡ØÜ‹ÜâѦeÎÝ0]Ò­:e¥ï{ͽ:")OžÂª…ð‚tgPRz«A‰[¤HYÖêTGÙVgÌëâGNQ6|¦ÖÝ| +”¬é©:^ìÊɪù5•ƒü(«‡•TµU;ñElýß³·HÕ¶®¬‹ï©Ï¸´ùêùÌ£ú¤û–üÔüÔXΓôÃ4WÑ0­JÄ+10TTB¤SͤSe6óFÞiN-ddd£3"$ªÖIí2°¡°ä–œ¡ÛYЩ‡håÕ2±œ7v¼ªÎÂÎÂÒ·TªJ˜ÇÜ¥ubc\;S¤V>‡9Q®Ó1;ÌÌÅUi c:–¤¶ãÎÉ]–jIýd®ekrå9ETrÅM.œ,©S^Œ!o8r[Zm9-UÔª‡mSŠ4â¼Ú¯¢É8vŸ¡ 6½^N%GN%‚j&Þmºò3cW­[ÙQ¬÷9ùÊöñ ¹r­ÛØ%uÕh›“Hö=Ь¹G¾»îtÅø•Ùô¯V±…;Mú;ªá:–0"D‹Rz”á8µÈxÌ•0ŒÈü æ#2¶ÕgEŽ6®ëçb¦”Òœá jÀé]¥|÷'ªÅ^\ÜÒªqSWaËzáɈñƒ+ +èóÓñ ‰ƒ“ŽiÍÊÃ8µ¤›ñå¹ µŽ1!em&ê##3+f;Ü”&r[[¶üÝj—S²ªíte%v.nWe~Á×CªšU¥7¨®"e'ÌßÄËôÆñ+Ziú$]Ä¥4°é᩾Íg6M–õ½gÖýÆ{eþÒñÜV7gÐlîÅîqh÷Ó5våÀ²©Ztê¦nsnr‹´úgŽÓë.2Ñf‚´eRRV!£ª¡K’»µT£IjSI¹øoXƒù~1ߔͮÖÞ6n†ÖtÔ®Õâp±j¾KgcV‹Gh“Ê¥Uê|;NÅìéÍé#è¢ÅH`Ÿâ¨xrJÚQ\œi §X›Ï ˆD³±V¼šÆ‡¢«ZÖö‘2ÒÕÙò»jéÒ¬hk±6pÓSðÒçŠú_¤ÊÇÒ*TÅ£¡TsJa&\èK™HHäÖõZWh«÷ÔØUM^zZSÀ‹Êli¢Æ‡G½®ÞŠ–ÅV0FO¢Ð¨kƘ—€ÒñÊ*)ÄqŽD‰ï%XtÓÂJ6PI¹$ÎÚ»ˆÅ—Ôýë”K¢#GáM~¾bÕ Ù®s.hózN¥úÐ\/Z“¦GSf5ÈHƒJ5JDWTÂI%¸IÈDGË·`éõ5mJ°ºÚ›õa*t‘¾¨¬jªÕ4œ\§Ø~¿¬õ±âür˜¦\l¬'T*^_²œ‹£ì^<üœ›mÇOªièû/Ó>lNSÒVwj>‰âwÜ<ÝUŸ¡û#&Zj*ÒU<éÅQÖpN±:Ý^»ÃÉ|÷¶ËÜp­Òùjæâ9š¦"5ÆŽÂe•î‡_9úˆ¢tÌ)ÓÚNƒTM%i3ÖRl·YÀL×h“^ +ߥԠ¢L7-ã6Ý'~c<¦Ç’ìµKÌ«¢¼wÓÜ}jוF»'>zk³ôUÞW°ýW} ºn—L•=mÕkjZbÇqóJMLjDÚUbùGÕ+JiåÕ^i}¥F—©>AYÕ_ J•?kW£ÏQšt/¦4}W±]N–㘧F‰•A£ËxÍ.Gj¯ªi$´¨ˆîÅícûT‘xÌWû)ÈÕ|¢ši~æÞ/m¹Ä°ö#•]°©Ö½Õ„ºv_šc±ð*e眵ºó†ãŽ)KZÔwR”£¹¨ÌùLÌîf>¶šU*£ä+­ÔåégÀØÔ7P=Eý¯ÕÖ­Ôi=S¿:Æý ¿Ôñº´žÍNƒx56 +ÐýjOì± ÿwèÿ×wÇÔ}J}¼þ+ïGËýUý°¾7¡”,=óи¯ÖOré'å¤þúHø¿ªï÷¯AößRï>’ã‡ÅŸhÿÒ¿Àú(?e&‘¿»Cýb¡aìWÜŠ>2ï+ý•û_Å}Ç•ÄòÈ=`òVd\¥¼o£ØÏCÂø¶©GŽóš×ƒ5Øè[–$çRP¢#;ùˆG·ä–v¸×JqšL‘aË-,p¢¦§&×q°¤ŒY¼¬RÎ%¨¢¸¬×©”Çxa’Ó‘E®5g±§g/&Áž‹gs›º®å +3Ð*´uóŽ§{9s¼ýñŽ”q–Ó£Të(Ž£S(5Ù mG°Ô”¸£"?Ž×Ør;;6tª^Ä‘›~[kl¢º›Y6ßyú•ñ©Öbâ?e•>7ŠÇ?†;ÂZ`’iÕ!ÌÙ‰3+ÚÆc=Îë¦êŠœµ +ÌtËKÊ«ÎiPœ¹KÕ9ºœ¶¦¦¢‰.&b^á ”dé=›>°•Ë›6Ûòßhì¨I]Z"#T*´u;ÍâÜÎÓ¿ÀÓV)UZv4«Ç©ÔRÒ&Mj{È‘%-›'\%fQ$¶Ï`Œù‹¥Qv˜M´¡D½. +Ù k×ï9j&\ÆS;&¯¤¼]ˆ*ðñSÔ¦Õa© +:DÇ]Á ó$ÛqJ3EiZÛFö|–ÎΗM4¤ž”’RikË--ªª›kD¶àìƒNúHÅ¥V±Ýj¡üšØÒª/:Êò(–œÈRŒŽÊIsŽv~ÇØÙÔª¦ŠSZJQÖÓÙ+jétÕ]M=)Ôáñ8ÈÚ^Ç0ërq+¾ªÝfS)ŽýA])N²’Ikt•™I"JlFvØ\ÃgȬ.«³1 +'84\ºÕU~󘉗1”œW°ÙUJ¬Ë„UFWyG}m𦹩·²™gJ®w#Øw-9=¤ªIÃMJÐÖ†s²å5Ù·U-¦ÓM¦ÓÇIñWitšbTzUEH\ÈM¼¤Ç¦ìh7[#Ê£MŠ×-–®ÆšªU4›§CŒW˜ÅõÐ4¶•Zaé‰q}s=Ez¯*¦ôv—%¾§”Û¾VÒk3²Ss±rYØÓg7RRå‰y‹[zí"ón)s #÷¨ã¬GWnŒÔÚô颠›¦’\WBLŒŠ>ß­‘JÙmÈCòz)n¤”Õ¥Æ/Îf®Q]Tª[qN….˜ìÍ2cÜLºs•|gXžºs¨~ɨ<ïy½¨q¼ê<«O‰E´¹Ç;>EeCnšiSƒ„–KN]kZJª›K6ߤâ£é#DÄbÆ1%Aºó¹uDÊp¦+25j»ÄyÎè,§·“`Û¢ÙÜæB3£Îjù]£¯œ¼ïg.tFŸ6Äñ¥}TÉÔS­KâÙÒxd¨zõê“r=sÞÊ]ËÝ\oÌQ)šT, $kÒk†¥ÅX¼^>|Ï™xƽ:ɬËv“Õ? +ßYÆaÕæ5-¶Ìò¥G˜îdWÚ`¬)¿~艌c)ì1Ï×r仳18Npv +î—±Ö(¥¢‡XÆUyôÔH¡É¨>ëG¹#BÖdv¶Ë–ÁÊŽEeMWÕ4§œ):ÕË­j¦ã©ÆRã¼ã›Ò6*eê†ñA/PmÒœL§ Pkïõ²ø“aÓ£QŽ Ý{ì4ùó4\ª¿r¥û¼<Ù v»RÅåUkžŸ:R³¿&KŠuçUb+­j33;ѵ••6jí*Ô°F–¶ÕZUz¦Û͹fóbêæ.T%Öêòª*…#§”鳿pÒ3åB|I-„1gcM ºRRåÂÒófm-ë­%SmR¡K˜Y#°á½-ãŒOv“AÆjdMF¸±'¾Ë&k÷G‘ +"+øíÊ9Ûr;+W5Ò›Ú“:XòÛ[%TÒØÚîgW`S*tXÕ‰mSª‹C“â!õ“2–ÙæJžEì³Ií#;íÕaEM6”Ó£ cZ9Ut¦“jöœ^>sœcJøÖ,Š,¶q]M¹VW˜êf:NBaiȦØQЃNÃ"±[`Õò[7zi^ëß`±óæer«Ev÷÷†¬26±´“‹!3MÔZf™-uM¢[„˜Ófj}¢%Y¨ÌÔV;™óŒ¾KfÜÝ^öî…ïró—iyûëÚ_¾ÏÏ´ëZ¤ÊäÉUŒ§%K–êÞûË5ºë®e-jVÓRŒîf{LÇK;:hJšT%¡,ÊÒÖ«JU9oKzNû/M@Hö?#Ö¥dÑÂ]JB˜6ËfCA®Æ›l·%¶ýÊõû´Îp¤¹}²¦âª¨ÊóÒuZ^-®Q)ÕJE>¯*->¨M¦tF^R”MÐN ŽËÊ|—ä뱦¶I7K•†‡°ágmU ª[W”8zV\O¯fÒ¢{ã‰|MÂ8_k×ÁxE­­Õ_.{}µ®0ì(u«HW– Æ1ç6\¢µC¡7uéRáö€ô¹Î¤uƒÅÕC¨>.9|5ÝyÃ?Ûs^lÚ¿íØs|ŽÊë¦ê†å¨PÞ~s¢å¶©ª¯9J—)d~GJxÏ1".ÅuJ;3­AœôvÖvµÔ”(ˆÎÞ;\fß’YÚûúSŒÒ}涮ÒËÞTÔäÚî8J>.®aê²kôÊĸ•T­Ç +{/­In‘’Õ­#ÍuŽç{ÌtªÆ—MÆ”DDaAÍ[Tª¿.ôÌÎ3œœ†Ò)ÁÕ)Uš!ŸM¨Ê%“òâIq—Ý'¬Y-h23Ì¢Ìw=§´iiɨ®›•$ÒÔÖhÀÞÏ•WEWém78ËœtâsUm4cêõF—W©cJ¼º…)KT OÏyÇ¢©ËÍ•©Fh5X¯k^ß!²¡5M)*°p–>s­§²մ꩸r¥¼ó Tj2ªòäÎ!É2¤¸·ŸyÕÜuÅže-j=¦£3¹™ò˜‘gf¨JšT%¡-k[Z­*uTå½-âÎVF.®K£EïÕå9HˆòäG€§”qšywÌâ3ÊJ<Çs"¹ÜÆ9šo_…1®2“<ýWnK‰˜œ'89 ¤&¨·V–ÛHž™Žð—›pˆ–…»›2’¢"##;Xˆjù%›£›º®å +7®Yh«ç/;ÙËçœe^M Xd«2ø•Oð£§k×ÁNGKª¾\ÿ®7v:¯Â¼”LcIÍrŠÕ.„Ü7-KÇçHÅ•¼?©O¦U¥C‰Uh˜žÃ)¶å4W²JL‰i+žÃ¹m0´±¦¸¼“‡*V‡˜²·ªÎn¶¥C‡²9ÿm|iÂ3ÙeO„"ŸÅ)w†»œ©ýT5õ?Úçâß#²i««/‹ÏÎu\¶Õ4ÕOܨX¼Hâ]Ç8úu&ºìÓItÞ§Æá.PÝ335°›Ùµ™Óc¸è¬(¼ë…-Cq‹Yß)®íÉpœÄ¸œàæñN—±Î9„Šn"Æ5z¬4T˜ó'¼ûDiä<‹Y‘™x®C•—!²³w©¦”óI&u´åöµÓvªªk&Û]çîZhÒhþÇËÖŠ•«Ôð.2‘ÁõV¶L™í–Û-ÉmW!²ª«îšg8R(åö´ÓqURYKÒuY¶·.¿W”å&«~4>³ŽË˾e¶Ýò¥Gs¹‘_híÍSzü)ˆ˜Æ2“?UÛ’âf' ÎÇ[Òþ:ÄÔ¤Pªøʯ>˜’I95ÝbÈ÷$hRÌŒŠÛ/qÆžEeMWÕ4§œ):ÕË­]7N2—çZGÅi]ÒÄ•]9i*)NÀNÍ‘Ìëe°¶&Ã~DÔá{¯}‚ÇÏ™§J®—èÅᯠ´~¿RÅSåUkUê¥)ù2\S¯:¢"IÖ£33±mñÞÊÊ›5v„’É`mmê´ªõm·›rÍî#Æ5ì^pN»Y—R81Ó)Ë}oj#£Ü´Þs<¨/Á‹; +(mÒ’—.–--ë­%Sm% +^„v¼-¦Ý àˆ Ò°ö6¬R ¶¥­¡Ïy–R¥že! +"#3Úc•·!²µw«¥7›I³­‡.µ²Wh©¥’mw3‡©i3V#Ö"NÄÕ1ë/"MI§e¸´L}’K‘–¢Ê›®eb槑٨j•ît`°œ…\¶ÕÌÔýÔN/Ñ9‡t›‹Þ•Fœ¼OR9TfSšÿ t†ÊJÄÛ %]"Ù”ŒŠÛË“Q¹^ëß`±óæiÒ«÷*_¹÷¸¼<Ùc%âí!sÅž¥Yà÷ÔðùŽÈ&ÌùM$⌈Ϝ†,9%–4R”ä’6·å––¸WS~vßy¿«éWé  Tñ•^e))JJŠƒîGÊrFÚ–dd^"=ƒZy’ªú¦™Î™|ºÕÓróŒ¥Æã‹-!â’* +KO" é$Rœ.w#üÏ·ë{HÁ°éÑè–áMJVÜÍ)®2â—)KÁÌÊí734Ÿ‹ê ®;+Ô^]u¶Úª©Én(ç6ÙeBdŸ× %°‰W± )ävi$©QK•‚Á涛ÕËm[u:œÔ¡¹x¬éG›(§ŠjFÍ Ä»Jlæ:i€âJÉTrÍõ³"ØF›X†z-œº®©©Cp¥¬™ªåv—Uœ')K„ôœíNúHÅp]¦V±Ýj¡ ÓmK*¢ó­(ÛY8ƒ4©FFiRIEÌdF9ÙûcEJªh¥5¡¤“G[Od­­)tU]M<u8|OÚ¯ô@é6½M.¥¤ +ä¸R›S/Æ~¤û:ÚŠÆ…¡J24™r‘ŒSìm….ò¢™XÍÕ¤Í^ÉÛµu×TDEç£-&4£Vªrlz•*sðfFVvdÆuM:Ú­k¥h22Ù³—K®…R†¥=L‡En—+v|M¤üa%Ÿˆ1MN©& +‰q^™5×ÖÂ’d¢SfµS¹ܬw"ly%”Ü¥)Ó #½·,´µ÷õ7¶ÏÞ–qµ>¥U¬ÅÅ•FjdjêÛšê^–‹eyd«¬¬^;Œ>EdéT]Pž +#eË­UN»ÎZ†åÌyûK iËH˜.žÍ&Ž+4È fÕE‰Py–Q™F¥eBDW33?ŒÆ-¹ •«½])¼ÚM‹]kd®ÑSJfkOi×Ò'“³ÜA9q«2 +UI•IY·2A+1:úogJ+ÝW;×&³Wb•î}î 6F•Ú;Þéû¯}‹Ç^9@w#€ºƒùê/è­~¬†µh6£Iì +ùÖ7èMþ¤‡Õ¤öjtÁ©°V‡ëReû¿Gþ»¾>£êSíçñ_z>_ê¯í…ñ½ ¡a螀Å~²{—I?-'÷ÒGÅýW|½z¶úøyô—>,û@?ÿÓ¿À$ÓÍ%ªöŽ±¥9ù +ŽÔªTÆ–êÖ) [fF¢A©9Œ‹³ùÄÏcë»mKZªDN_g~ʪtM, tý X^Åü=jq[ùèôO(ÚuWÊZ|‘hë?“öF¿KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~È}-X_á­Cî+=(ÚuWÊZ<‰GYüŸ²KVøkPûŠßÏCÊ6UòŸÖ"QÖ'ì‡ÒÕ…þÔ>â·óÐò§U|§õ£È”uŸÉû!ôµa†µ¸­üô<£iÕ_)ýhò%gò~ÈåŸú0ôzd:ª±¼ÝD§ßŽ„•¼ä¶ +Q¨¸e¬yÊÖ3ñòkÙZÝN›«Ÿ¾Ïï; Ÿ°T¥7þûöGôµa†µ¸­üôtò§U|§õ¦¾D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:ÏäýúZ°¿ÃZ‡ÜVþzQ´ê¯”þ´yŽ³ù?d>–¬/ðÖ¡÷¿ž‡”m:«å?­D£¬þOÙ¥« ü5¨}Åoç¡åNªùOëG‘(ë?“öCéjÂÿ jq[ùèyFÓª¾SúÑäJ:Ïäý‘ûÅú0ÂaE'™“ˆ2.%oÄ¢ýÝ«Ù H÷«å?­3O°´'ïŸÉû#Ò ä7½›A_äI1«IèÔ¬ ÐÁ­Ö¤þË÷~ýw|}GÔ§ÛÏâ¾ô|¿Õ_Û ãzBÃÐ= Šýd÷.’~ZO喇ú®øzômõ!ðþóé.8|Yö€ÿÔ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Kiä!÷lùtkrä¸LÅkÜ€ Åkß`_Œ¹lÛËÈÓ1mÛÈÐÖ’åQyÆ`I®bµîVç¸@¢.S°À‘˜¹nVùB­Êö¾Ð†¢O)‘˜­{ìç„´Ÿ"‹Î3MID®C#1mÛÈ0 3¤þؼã0$×:ok•þP€kräñŒLÅ·ilåi>QyÆ`I­Ê×¾Á€ Der=Fbå¸@5~©þÁ˜{û¹U?ÖqÄz>Ý«âÓÞε{Åç~ƒ ‰#BZLìFWùF`ZK”È¿L ‘øùF©™ÓØÒå³o(@ˆ¹L¶|c0 3¤þؼáMID®C#€kr/Lųo/ @‘r#µÀ€>Ii=„¢óŒÀ“SZKa™_冴—*‹Î$×1^ãÒ\¦[~1˜™Ó˘¼áMs•îC$ˆŠædˆ¹L¼áf#ä2æå€3®1EÊökróÚ7Ù™ýª!† Þ‹öxOïˆyåZO¯Fà`ÈV‡ëReû¿Gþ»¾>£êSíçñ_z>_ê¯í…ñ½ ¡a螀Å~²{—I?-'÷ÒGÅýW|½z¶úøyô—>,û@?ÿÕ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Kiä!÷lùtH|3…ÛÒøΈcEuæÚI:¸•&∳(’»Úæv°®¶µæ­Óo +¨~i§â]ìªIbªOl<;ÎýYE<Í)bZm&…‡ +ŸL¦2¸­®:kÔºúš¶EªéVÕíçìê­ÑgKoíJªm˘‰Ka*ºiU× }§B<Äí7øFƒJÄÕmâ94˜m»Y:¤z„fã6ˆ¯®"VIwPEŒË”ˆ­r#åÕf­lÓp©¥§.Tê“K$­.VÒ›í<0q°ÀZ*ƒv‘h$ÇmèîUT…²â¶ÔŒËðM*##-œ–°²·©«õÜô)KKîÿ‰Ö›I‚º^š–¨L¡x*¤™±ùµIúÑÛÀÙ³Á¶Í‚%V•EŽ/§>ä–¨Wíh¦¨ØfÊž +¡W*X àRc7&Žx}Ê›(a²D¸U¤µ® “edu9Tj#¹/h‰E½T:師œK…T©[×qÒ«*j¦”–)SW7qÐtkVAâ¬_Ar“Kz&«ÒØ'©‘œq2¥)²Î´²¤ù{lµ‡^SKæ)´—1B÷ÍiØbÉ®}Ñ +/U©]¨ë%[Ç5\5ªhzKnZZÉk\JŸx˜i’6Ú.\¼¦W=£¯-¦íÛjtËn]XÂXböœy=N©´i;©`––Þ^c}ƒð1alU¥:ZcÁ[Ôè½O]E¦W¬ï%m-Zô© "BˆŒÌ‡+^Rí,lêÇ’pÜàšz<Çj,U6µ/º¶§F¦¼OP¦`Ç´uU®Ñ)räJL´Õž§ÄdéÒb8¼‰ÈhI4§š#Ìf‚#I•¯´fƇjí(¡Ô”(–ï'ž8Á¥¥W)¦º’n^„¡¬°ÂN•¦,?GÑ>>§3&K’åNDãi:ÔDY™Da+2Ì^„»¼C·!µ®Þ«õ`©Wbpuk~¼¦Šl©Šq¼çÍN¤n4'ÞÂøödf)‡>7pgê­G[ çqd¿ +JT„æ-ŸØgÙ¢ª˜n©T̼6r:eU¢RÂb4í2¤ ;KsHø,ÊE<ä?EýAQâ·Å’žÕ8hu”ukJmµI+\¾! +»Z•£¥¸MD·yb§i*š®Í4›s1ò1ÊãcœÒB)ÌÒñ”Ëtšs’Îf”ÔdÍlÉãI“Ü%dä±9á^åÊ8rKÕ;7Eíí¹»·„¹DS}Uv1»z{8ÉÍãÜŠ.&Cð‚(óJzàا)ÄË%8¤ey(ZŠé32±[Ä5°åW­Uw°®ª©‰Ð´Rã³H®Â,îF*•TÆ—2Ôùµ3c›ÑÖª·H£·.°íV<·QHˆ“44yQ’Íø +"?t·Ú;ÙòuÏÕDÕ +šZ÷ONóŸ<ù«Ð¦ô{Õ¢ ϵÆX6i´(ÏÐ"H È‘US’³aFµ2’A>¥ªÄddv¹óˆV–¿n6ê•[I¦î¬uê;ÙQ…šWaÒ¦R—é#dúiš6¤¹ +2N(™§ ´ë͵ ‰¶”»f2#2Ù{\ZS[çÒoi7”Î,‡R\ÕM/˜g ËºOÂLÑpô“¦áÔEK¦¤¦;‰e(yÅ©hÊñ%îR<Åo”A伡Õh›« Kê'ÞÃÃÍ&ÚÂ(tÆ4*\ƜΙ¤\Xë8Nj“HjEqŠš&ºÕ&*dÛš´›f–ÈÛ2#åMŽûyG{ Ò*¢jŠU {§¥âõœª¶|ʪºª^õhGs¬az4O‰j¼SÄPð¤ñâàê”ãiI8¶È‰+Êw3#-§´Ç~®n~êÕÓ3ŠRt¢Ê—U2´Y^ŒÚGN…3¢àQZ²TÔÜ·EIË–›Åv2uV4»YKz–£ JSíD(Ÿ’Í6ô)î¿5æÜ9Ì-œˆŽ¢UH_ÛæNÓæ=ƒè“ªóMa„9Óž4Su9ÇZî81¹ wêŸì‡¿»•SýgG£íÚ¾-=ìëW¼^wè:“N“Z Ù<©ót•MÀ¯ÐiŠ£Ï§G%%èíÈCŽD75©}' D¢¿-‡Ï©æ«µU;ÔÕT{§5„Lª¤ª¢–“Nšg8γ©a( Rt} +Cpõ>WÔ#.]rOë›h¬”!JeùZþ"°émhë¶RªiÙ§¸Å½:Q›;5EFµ5)‰>,i˜ÔnòÓˆ¢6™pã¡  ³¹1d$ÒÒ­|¤DGÌ%&Õ¥*R»V ãÚF‰¦Ñ¸qs°ì8ýaõI‘ˆq +èüjÝžãD8ç%/Kël Ú$«5¼%ZÛ-q¿²·iTÌ^©)˜…¥âiÉ,ïTÞ›©¾ØÀÊsp)¬oˆp\ªs0ãbØlˤ:äd¥pf8khAåÌ„g%!I+rXA¢Ö§b«N]M;¢i%º•*žÛÔá0$ÄÌG$ISFÚ„¤–•'Ê#;íK²æ꥿tÒi¶Ó•:ͪŠt´°M¨PÔ=†ÿG”:u2££ Ú|wåU¥9W®eu n3*ÌGàšRny.dv¸Û”Vêç*O +iº±øZ[ìÐq³¥R¨OMU§÷”áoÄìÌ!G8AÄ´Ús<_Q¢ð˜‰Õ!E +k‰™-7³ëf•ÊÖðT^!Ï”UQSr«§¶š”¯>D×cMúªK µ¯5Táô›á7Öty„٠ӥ«§=R\˜m½"K“Ôd³KÊ,è$ø9 ­oì¦Ûœ­¶®º•0á(Yx‘¥Y*IÞI¹S2âÙŒhìáìEZ¥Ç36aN‘³3¹ämÃI\ü{—$´v”SSÒÒd^Sf¨®ªV¦É͉0üdWq$ITªÔÔsy0bE‹ÆÉwƒ ÉhKH'“e™¨Ô£±'hùúm]ÉN«×âeÝÓ¸µT+É5MÛ©µ +óÃV³Qf›£Ì.,ü3K‘+‡ëÞ­Áiç$äxÉ9¦3Ê\¼› „»fݽIªšJœ)mGG²IY&¡{ª±©NhfÃFîŸT§µ‡Ê ¼HënJ©G†Qƒh”ilä"Ä›íJPDd\„6å +ZiªôszªfuÁ‹4ÝT®ÍåŒ(Ðó9eÊÅxÓáÊUzu tµˆ­bå-–»J鲦ŠÛ¥Õ\K~éR±Åæfí.ÑÕJNíÒÐêѸÝR)ˆÂº\Nâ˜Që2“5 J§2âÒÃì)Ä¡ê M’TFF’±‘ì½ÎrgSnõ ©U=)éÃH­\µP”WuÃK^•°átaQÃzbôy +»šŒÚ¨ŽqƒÑâ¥Op†Ýq7ZˆÖ£QLÎæD%ò{z«v•Qêo QÖÉR¨Uáï¥Æ:H꫙ܮvù’ã‡ÅŸhÿÖ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Kiä!÷lùteMi^£¢™5"3(¦²–”ÛêQ%*B³¡ÂËöÉ>O”DåœrŠU-Ä9•æƒ¿&åÊ«ÉNIÃá,}/ .¬‡"1Q‡WoWP‡+96ùg5¤ó ÉIZTw%ìÛreZKEÝ iXA‹;wMMé™”õÉÚ£i¢¡ +»‡jñ©qX‹@mÆ`S[S„ÃhtŒ–jZKR”gsQò™OÒé©6Û¯KÂMúKšaB¥ÊG;IQ* Jƒ„áQ*1%¢b%±&CêR’ff…!år¨ÏoÄ6³äÍ(ª§R†¡¤¶j1]ºxªRs3.s78‡KNUéÕ¨0üI×CµGã)å®J’½a«2m&¿Ò’ÚgÊ5²ä*—Ku6©÷©Æµi6¯•·0’uixú£’¥iÚ¯GÄôìO äJkµÆ5¯Tû,£*MGÊGr%lØFCò +j¢ª~ê§W™…Êšªš—ÁQçGUÃúG•‡«•ªëPšuÚ£3Ùq¥-D†ÊmóL¶ž[ì¿(éiÉVjÎpQ˜Å¥ÓiÎF8áç>I5XØn•†©«]9˜/Hãñ_q·e:÷Û8i2÷%°ˆ¶ Ÿ%¦«GiV8$“J¥6Κ.,1–õ¼ÏRÓeBªu7_¥Ç9*#TYOk™Ä´¢2|ÈÿjŒ¹ +}¥hn/ßK-žcªåZÆë¦sY.¯Ÿ¬aŠv+ijŽì§Y}*<ë)*̤©<›ÈI¦ÁShíu´”yŽ︹µ½æ¸ÿÈÒQY1[Œ´Æ#JR“•„d%][ncŸ“«$Òs-½æֶθؒÜ|Qq›ôJ#ÃèŠÛŒÖø&µÕ)D¶¸2ÍiÊE°ó^Çpµ°UÕMMûÖßžT³µºšë(ã'v¢éªufšT¨î¹‡ ȧ´JqiKíAÇ ÓqÐÛÆ«Ó­3§Iiª–¥tqó´¦ûÎaÖ R"Ó©´)e64â·ó’Ô·]qFµ­kø‹oG$†ê©¶êQ.4y‘­vò•)BNciÍQ´éW¢½ÜÎ(7Öû +Zò°ãĤšÛ2ÚfIQ–Þ[0ã_±´ÕMË÷ íO-ªšê¯­¥º¡W6I‚Õ-ˆÎAC©vSyµ²ÍjÌJvû.’ØVñ ´ÐÕN©xÆ‘úº©Ž¶pCs@ïÕ?Ø3w*§úÎ8GÛµ|Z{ÙÖ¯x¼ïÐt%3‹RgùÚ{}ú×"aˆ1k|ÑQ7Ÿym6–õY›iJ&Ò¼»3XÅo“”:]Nëmµ is§I5r¸‡ +iI'Ž­‡\¡iF-;ÆÃu\+³<·¦6¹_idëÅe}„Êû[^Hꯜ¦§KˆÁ'†f”rˆ¦ëR›œ[Ó ÜQô­—±GsB“K¨MniC\©)C m„¥ IçQÓÚ~1Šù#ªë¼æ”ñ…ŒŠ-Õ3îTUKÔmeé]Ö)¨øzÝ™“–êáKn}i¼„Ù)J¾[ÝG·”ù†W#š•U»ÐšÅ-c¤Bj•Ô}'L%ËÁ• 1“/ Ü›}×V§%£>t¥ã;™e¹‘m?ÏC§ÝÆ +µ¢,#!Å3ð\ÎxÌvÒTŒ#‰gbTS™”¹…5.FqÅ¥¼³ ÍdJO…²ö!›^J«²æ§XëÀSÊ´ç5Ëq«‰¤Êm¯D¬Ñ0d*côÉýš—%Â|² Öš¬E{ܶÜaòZª¥ÓUm¦£BÃnŸRš¥(s¥Ÿ5})¦U>©L¥aØt˜õw’íHÚuçÞ”IsY«7QäAªæd’ñŒYò8tºªu]аIa´›Zr©˜I^ÒñlÚ·¥)Íã8ØÌá2oFqµ3”¢a¶škTÛI>RJREa²ä©Y»9Ó2õËųVÍÔªÊ!lZº¥i~©KØ› pf‡[unj֥fŒ§TJ^®Ü¤«Ãæ¸Ò¾CMUQTãDvÁÚŽYU7°÷ÓÙ3âo(úf—NfŽ¹T( +­M2£#[®ŽÙ\ÐJBHwVgtf/ã NDªm¦Ò«ß%÷èÚiG)„“IÝÑ3‰%Ì~¡%ér\7}Å<êÏ•KZ³(Ïå3(¥R’ZºM·¥™wÛ¦³xÄéqõÒ¡ª‘µ‹ÕêÔÊX3%{«Ù$(„ù攸ng^™$.VÕ¢´ŒRJ; üéúV‚ŠU°t*³qùRYkÖkUÉ£"æ/Ò¯’7[´¦¦›I8KWœÅ<§ÜÜi4›z^³­T1Ú¦aÙešc1¡¹U]QZ”Ñ›z²e9¯t$¹ ü!ÖžOªÛmªnêÇ“Z­ýË¥(M§æGÔ #T¨øhðÝ6ð’¹Ç9éqÞ[oºdŒ‰lÍ&VBK˜ö˜WÉ©®µ]XˆÕç1E»¦—JÖÓxj;$}4T[«a +ÛðZ‘;°¨éuÇ\5KG„I7i‘§1í+ßÆ9>CLV“…^¨XyŸ)nìé¥éσ­ám ÉÂ’±¦a´ñÖ¡L„âV¥4™J%)I·)§ÄG°ÇKnJ­(¦†ýë¥ü‘O(j·^sÄßP´Ÿ*…OÂôôSÙt°ýQuHëRÔ“qkµÛY[.ÎRÚœ•WUUO¾¦ëñ5¦Ú)»*U}毥ê¼úc´È)â²~§.©!踇^vA’£##Ê‚;_mˆÌs³ä4ÒÓxÅ*”šQçó+åM§^ª[Z|Ç(Æ›ªMâ 7‰]¦°üú4¥­ÅþkI!M¥ÇO”–D£ä½ü`ù 7k¡8UðÑ£q¯IsKzhן¬+ãyr&'ˆÔVÝMz)ÅuJRˆÚI¹¬Ì›römmy:®ì¿zÓóƒZ-Ý-¼Ó[ÎãHÓDÊkTg$PàN©QYàôÚ”nº;e|„¤%d‡ <†¢ÙñŽV¼…Tê†Ò«ß%øm7³å7RM'wDÎTöÀžx~eHJŽUUuÌ5«\R“-…Éc3Í~[Ž«“R«¦µðit¥ª£·nš“øM6Îߊ´Õ#VèÕºåçD\UFqKÔÈ5_ë‹"ÚJ%b"ÙqÂË+*j¦†Õç3­yŽ¶œ­Öéu$îñ0²1¨ík™‹¯âÑŸ `ööfDGêˆa‚÷¢ýŸÞûâyV“ëѸ2¡úÔŸÙcAþïÑÿ®ï¨ú”ûyüWÞ—ú«ûa|oC(Xzç q_¬žåÒOËIýô‘ñUßï^ƒí¾¤>Þ}%Ç‹>Ðÿ׿ÀDÒ}6Mg b80ÚÖÈ‘CM"äœËR ˆ®£"/Ó1#’T©´¥½MyE.ªY^ZÇÄEü ¥Fühû(Øõ¸?çú¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qCÚ ûÀ~•ñ¡å·à:¦\Pö‚Ǿð¥FühyFÇ­Áø…i—= ±ï¼éQ¿Q±ëp~¡ZeÅh,{ïúToƇ”lzÜ€èV™qGqŸ¡¥>Þ÷£åþªþØ_ÐÊ€yè\Wë'¹t“òÒ}$|_ÕwÀû× ûo©‡÷ŸIqÃâÏ´ÿпÀ\ýwÌý ¾Ù{äkVƒ‘‹`²dAbæÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ƒ¤\ +6ÏÚ¯~ù#E§q»Ðqö.a¹ ±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`ÅÌX¹€ 0bæ,\À‹˜±s.`¤ErÙã 2‰rŸ…S&Ÿ@´?Z“û,h?Ýú?õÝñõRŸo?ŠûÑòÿUl/èe @<ô.+õ“ܺIùi?¾’>/ê»à}ëÐ}·Ô‡ÃûϤ¸áñgÚÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D0>#ÒìÜ9¤Ú vžÂ©U8HZææ^½™¯¸ò#¢×É«^¥I¹–lÆŸÅjiä£k†ãrfjP“]¾iK½ ½.MwHu<#c¦À¥K’äÅ›šî ¼¶¬“Ë«Co£5ˆ×s±TÚÍﺩ[q‡ÇÒtªÎ.ýÙãºQËAÓ5Š5"}NBœ‘&ŽÅfIS¡ÊÓ’¼…–C[læ¾Sp‰V#Ù°íÚÒ¥Kiê‰ÉNƒJhoµ´¶Ã9ªÖ–°ÅÇQ&c«C D“&C^~]J\Çã7tzl¦^†ú%G—$ÒL¶ã5…¬ÌF“±¤ÈîFc7–ε Š{3;Æ”¼VíJ<>‰4×jdiQœ!…:cy›u$yV©Q\Œ¼w#X©Û¨Õ¨q²{´­$¶Æ3Ÿ…¤@}˜ñ)-Ô—=l-,&î:•çpü¶”¢ùïµWOˆjªQSx]Ž)¿A›®RXÌ÷¥é93¤Ú-”Ô(¾—ߊsc&T7ãp¨„¢I¾Á¼„ë#2¹–Ò##µŒŒe9ìŒ5ã 5¸`n±Vh¸.M2M×øMLÞ(LGŠô—_S“q(C)Q܉d{m²ç{Œ^Sw\OdÀ»„úë~ƒc3J8vÕB~KÉÕÊb ÒJ+ʆÄÇòêã½ “«CŠÌ’Êg±J$™‘†SMÂÖÚ[ZÒ¤UL)Ù>e™Æ»¦Œ&̹ñ™!< šTÉ +G‹5JJÓÏäÈ“Q©$“¾]¥´®ÔªˆÖáyò󙪆´êSÙ™ÈT´«†é3äÓäÊxŽ,¸Ð%HLG—4¹YuL½!)6еgNÃ=†¤‘Ø̆)©7 8íZ…T5§)ìÌëMiž:¶=‹Xƒ& (˜Ž;5ȯdSo2N-J;X¬gà_:n¯_J›Ïu68Ôg›sue=þ0Æ’âO«ÐãÆq-A¨CªÊ5L&3êDQëZ'”“6Y™©vÌV4\®¨npŠg'¦1õ“e(×Tp“qGÒƯ© ÁTŸô*Q¸Tè™%NÅ΂×$I÷;l¢;XÈÁÕƒy$ã^:§µÆÉ8¦Hx“ aÚüú|Ȳ«$¤±˜o¼ûÎ ”¥ê$šÜBR›šìI-¤f6©¥TíЛìÄÂZv8âÒíÀÉxoS±m=š¥)óz3ªq¥!M­+ifÛˆZD¤- +I¥IQ‘‘,T­fŒp ƒ¿œ£~Šïï’4Zw½{ÌÎÄ[Lù6 Û5HÆt­*Q1;‘áQd­Rª,Ì])Ù1jåEسeå%)q);å;š|$ܶUW—¹Ó–‰Yñâlé‡î³‡±åÀì˜'·Œè´ú²Ô­ô©/³›1³!¥›O4gã48•&þ;\o¦ÐÒkÌÍž¦ÖãÍÒÆ0DÆ©¸Ô3¦aêNw…5*KP$!ýb›'œ/pY‘ªÉñÜp¢ÕÝU½oBÓï>ƒ½Vjó¥jK£Þ§é2µgJ˜¥Jž¹-êbG7W çʞĂº-M%DÉrß6ÛªÙJãµmSS§'ªubr¢—RO51¯iÃ{fºæ4Ÿ@(¤Í*›Jf¥* ôw²,ŸÖšT‡ˆÉ¤´”¶gY³™™&ÙLh«Æ«Ø]\̺}ìcz|=r9˜:WÓJYë¤Ç8ôõղʄüu=U!‚qn ¿´ví+–Ò +í)·…Ý9®Ã4ÙºšK^ &üç=„±…3AMJ§Ü†¼º§žŒìt<•$”KkZ”šÐd~èŠ×¾ÑÒ uAÓe>W³wë1$RáẙÀ×½ä“ÄhdÐDYLÍå­Ü©m$j2Êd^çEsJ«6ÔvÂõÔo]œUžÉfEÃXÆ™ŠÕ9¨Jy¹CrâÊŽäi,)ÄçFv"QÓµ*+¤öØîGmÖ*VqÛ‘£Q‡iÄaì_&³Œ1Vr;hbŽÍ%ÖžI«XáÎCªY,Œídš -‹Æw +1MåT}õ?IšÔFÕŽü90¥S+5R}.¸ÁSµDDÚ6Q8£;•ö¼cÑ)Ó{ŒnR.¨àp8ãzÜ#N‚å"¬ìe]xêq ÊQrVµ}ef”\q²JM)3"ZŒ¬{©M*µåªTýi£†›Z§¶~ÖêZSÅñ)Ë4Å é˜v§S‡Á_áMI’ÔO+úÕ6O9:£#U“ã¸æí4ªž·¡i÷Îø9´êt-IbôcJ¨ÊxƒHƒ' §Â'$UÉÙ.¡ë¤ãA\óŠ$Ÿ»%)¶È¹3+âÚ·KijU7Ù‚ÞøI¥šU$Þ·J]ºw#aÍ,×q3·I§An±ˆ©NV%*BÞ8pb´¤¶j$ É×·”!9“öÊ5X¬fñºµR›íлûˆRúÍ.Í/×3}WǸΗ™EJ´ÌCˆ‡Ü7Þ§¾ÃÍ-äËe)Zµ“”Ð¥]+%̬g…Sm-ê™Ø›•çƒ5%J©é…KÃmIGdŸ’´µQ¯cX˜¢,) Ãt¸õS~’§ ·‘!N6˜Ëmõ-M?™b5¨*%lç0y¦–ÆÞ¤Ï7ŠÉ¦ö¤´ýi£ÖqÔyÔdW(´÷!ÔIdú©®>nÒÜ&Ô“æ÷‚ëfe«5 d³/Òw.Óºöâ´a«ÀçƒR¶`ôãë‰Ð4£¦zþn²î Ç©ñ}V‹GBqh92æ™®KmšNÄm4h$ß•ÕXöâíZ‡:šÛ 7Sô/3;Sfœ©ÅS;%´’ô¾Ã¹#KfV0ÃPÉ¥Ò+*•iR”g­i0ÍÄyvŠ%‘í%&Û6«´T7:§·ÃZ,ïR£Kªìvx›,9Œ±Ín û„ºEUÈê8L8ñÔ¢C’[âÕõ•šRi[­¥)4¤ÎÊQ¦ÇÒíI¥V½1« íËÎsn–›§V¸ÇÒ~‹Æø£ÏÅ á8ÕÄÃÒUÅTù9:cM%çZdÙðZJIiA-d»¬ÏÀ$•Ï÷u×c†·_Òâ•N¸XêS£é2űqæ£â(M­¶*Q›†Ü¶vÍ[…[eÒ¢4¶®:µ–ÇØñ9c¯o Ò0 K”¾R((÷)ùU2iô+Cõ©?²Æƒýߣÿ]ßQõ)öóø¯½/õWöÂøÞ†P°ôÏ@%~úÚ­P°-^¡¤JEN4'ŠdIª7\iíF­o2ÒÛlÍf’#Q‘xEñŠ‹oe6•YÓCªâM´Ö†§[E͇±TÕgM¥Uªo6”ËÅ8Ôœh +¹ƒ0† Å•Y‘š:$s J‚Y”ï m³qN%Ëd6öŒùGk?d¨®º(¦~Ô¡ÖžÄàå_±UÑMn­4V©k9S(ìý x“ÙuE©Ayê¥6#rbÔ¶bÁ€óJyk}J#?­%>R;™‘Ñ{-B¢ºêM*+tæÛQ£Ï&ïØŠïYÓKMÚPªZ¡9Òû ­Wè~‰ ÅÒ&~›=ÊdšôxÓuTùhhÝ$HŒ¶Rý–’𔨕{ì +=’n§ET5UÛÊ—éL`Ó‰ØÅ~Ť¯ÓZtÞTÔÔû—扰v !} 10%>‰!#ÒêÓëñ¢Ë¡ÓbSç¥ú“R&[6ÔãD„¨Ïc†“ÙÉÈ4äþÊUk[£›j늛tÅ8N}ÆÜ£ØÊ,ìÕwÓ•4¨«qÕï? Kô+T¨qñCq}¯]±Ner‰ ¥p˜Œ£):huÆRÓÆѨµ„…x;yF(öf—v§KTTáTâ'V*uWì-JiU']4Þtã0”¼bZñ"À¸).+õ“ܺIùi?¾’>/ê»à}ëÐ}·Ô‡ÃûϤ¸áñgÚÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D#Ž‘´u[ĸ‹ÔàG$ÿ Ø(¦H7_¬ +Š¦´‹æMì’5l£ÛÊ4r“©)jªYÝUJã¦êIèj¤öMØîžÃc‡´}ˆÚ›D«TièDÙT\Nå_Vëf–ªuwu æðÉ$Y(®› ¶ÚÃJ¬š¼–?iªSÍÞu>óe\Ãx{¶û.ªWqÖQ£ìOL¢a–Ã’ST……¡Ó£Ôi5&cË=´™.<Ôºæ¡ø™¬¢ð"<þÒ1ÒÚ[n.!êÁk^¸³…¢jÃ^/Jg7Š°†1vKò!Q”ŠëÔÚ[ ÖiSZ ×ÙAíÔ¢HVGBóyZZµjÊ“I‘kÝ;½dñÐÖVzxÐðW²z4§Ž¼´q9,I£üE&¡ˆªÑ ¶ûbl;\†ÂžCe5š|6Ù}33&×|Ù3س$¶‘Æiw\ÇíƸª›³ç ^Pú”­’ªÇ[Ñö%Äók8Œé*ˆåN½„Ÿj¯²oµ +ŒåÝ}å!jo:³(É Z*K”ÎÅ­ÃOî÷žÅvê6ª©M}ÒêÚïI—ðΨSñ¶=«Èc$:šh¥Üé=gŒ¶ÝðHÍIÊ£"ÚEÆlÔ'ñ›ì„½-Äj¦>üÙÔ1ö«bjö#ŽÌU”A„Ý¢”ô­¼‘%¯¸ZæÍDá¡DáXЕm¹¹F¶”:©ªœîµ–‡k:•5SVS9ãð>°ÅV1¨Uh'Hg RfBuNIaã•*Kl3häÊ”z„¥£VeäQ™¤²l1»÷UºôJˆóԛݚ(TiÆgÌš]çw®Ð§LÆx:®Ë¢ÓãVÛîd‘¶©MÇKEc<Ç›"‹a­¶× +TßÝc¶ò~ƒB_vŸ¾Ô½&“¢*—¯Ó]ÃïTªb«59ÚÃÍÒÑ×Ú}dü6ä!FûFƒ$%-šV¬Š5XŒ†¶TÅÔõTÜÏÝJxúMíËZÒQØ©s³ðŠ]{Ò´©„é´cuª¶0žß†RÄfÒäWSÈ5¹ÒH=Y! +%–ÔíYÓzšVU·>jÛß½¥Jš›û¢]®ˆÜr:KÀØ×û ŒåUEi®Á¨RÜf¤ÄjziÑŸŽîSŽN ×,É %k’¢RŒŒœ"""Í Í-ê®_š^ŽÍ:ô˜©¨ik¢;cí;V7Áx†«#KQ¢Q–óxš%)Ê{äóÙ¹¤´ãœ%%wÚG”Ðeö×Ø6©7MÜ«UyÔÑõ¬Ö–“Ÿº5Ûx×ášýSQ*ÔFZüÇCÄQPüƒI²ÔÉh`¢“ˆ=ªA©šÉ2"-¼£[ESu5®†—žòbÉ¥M*­U&ü×Z1ÆÁجc„«Õ:A®C¨Ó*rçTØ’®ñ0¢SL´é¡ÌÛQ'V”žÔ‘ ˆ®[*q«'JJqrœâÁ-j©ÃDF£‡¤hÒ¼ÅG ¨áú‚ݬÕ)³aAª",‡Û—”Ñ*3ÍHm+A +èZУJŒòÝ65JjU}ÑSÓWx8| ª¡:~í3©§{Ž$Ñf ÐM9º{ÏÊ›-q‘%ÉFƒ’òœ-kî­f㦓#qDyMwË°mJŠRÉjѦ}':œ¶ó}º2 ɨÈ;ùÊ7è®þù#E§q»Ðq’ê˜},IãmdÙ¬®‚Y¤òæ/^×ø†kNiŒ Q‰0¦űñŽ«µú,ĽEn¤Õr|ŠœuÇJŸŒi'"FmÂmReö¨BÒ“INÆe­íWž +ãX¹sî_¡è7¯Ý(X»É¨Ñ¯I˜4Ș_…¸YSV©ÕªÌ¦ÆYcΘãÌì>K¶iWõ¡Ò…všSÔ”ö¶ã²`ÒÑÍU=½É/A‰eh4ê[­ì=Ù$š½n§E•™²N©ÍlPñ+À<ÄVÌenEE›¦…ù6þþßqÞªÕU¹ÐÒ_}K¼üñFŒk“ªx¦{Ø~UYÜQN¦%$ŠÂáE-¨œCUšÞvLÏ6fÉÃRs ˆ¶é]šnªV‡[iꇶGiΊáRÞ•L<åN¾Ó¼Wô_Q®6¥´H‹«„©ÔH’¯­¦C)*I'1¸HNtm?µ>S21­µ›ªü|'KS®›*Õ.‡ÕU'ÚÎ¥OÑÅVdZ’Ë +ȃ!¬1P¥¡ÊeÉï;6SIA·4‡DsÈFkY!J<¥•$F5åVnºk…ï”$ôéœY·'­QU©ËËD[ ÄvŸF£ÄŒŽÇ…—r<«m”!I¹lØde³`™iTÔÞÒ%•1JO":Ôð&[˜Ù¸Ô’qÅâªn'¦­É &4Ö£RTc<ƶÝúÒí‹å<ÜÑ즛®=íu?:ªöûÎö‰U+­B^f£ÀÉ*‰U—‹1F1©S\¥¢¥™,'ÝiɸZå©çM…­ 5)ãJRJQåMÌÊö-ìÔ':Üö$–ÿ Å£–¶'½¹8סb ±"…‡^®B®C¥¶„Ó§£È€N Òâd¸ÙjÖK#%¤ÔdddiäÒÝ2£KM|”£š’ªèM=òtL%¡ú¬ x=n2!±IÅLUÒ‡R¶›r³%·ÒÁ^ÊYe5'1&×Mö\†’÷¯G4©²ŸàvŸ iç]—Z:,} ã7 ãšM^œÝA·êøE¨-æ–U +U%ö³:êV­‹K%•Ä¬®µ$̉Yˆb”ÚW´ó’ü×RžØ“gRMÝÑÍ´¶6ێɃ3Ö4Iæ>‹‡áÓéK¢b +|÷á0ÄsÏ;ƒ¥’RPIRö%v;&Ûmq‡ezòÔèŽÙ0­"ëÖªžÈ?,4 R¨¸o 3DD9ÕA‰.¶r#» tø†”©l4j7çšA'"›I6¥(ó$¯Úó©¦ðÑ:ç Ró½z‘ÍÒ’ic¦6cƒ~n'R¨è95|7¤%¿‡Ø,A.±[©Qefl¤%ÃQ9Ô&Ñý7G5dÑ6]/¹C«ÓšÊd!+uã +ZÉ¥šA’’k+¥W#¹XòÔU:fšW™Óø- •USó§ø œÖ ¸«H Ñ\ÄT†*qT9É¥­l¸pé,0â„-'•×TáçRRk˘’Fd“1­49¥ÕŒ:ÛØ-R¶ùÅu{š•:Õ)mj¤ÛõÈãêÚxåi +‰A†Õ*‰ˆè‘ƬÒQ‘Zeç3,Ú#Ì“R ¬ÆI²ˆ¼¢Üi4µUMTå+ÅÞR›Ê¤ý;±b,Rv˜¤aeS·äTÒ쨕AÔ0¢j$#JÌÉ.=e®jÍ(+Zævé]N[¥jpž–ÞŽÅÄçM*oZÇTkÞuŠžë a,NažRcÒkue›‰#7NR¤Ìs2Œ‰DƒQ’H®f”‘\»U h§ë^=­ñ6UÊ©½5/J…¹3Z$¬CÒ,’n:OI¤W‰—P´%P¥VÏŒMß1¡KBžA‘e#Z“³`ÑåUCÐ躞Ææ;; ëÏC¦¥¦õççJ'·¼à+8 Uh¸^š¬&¤WhQã.²ÕT›Šì2[5ª;M¾“RÝi'™´YHÔY•d‘ÊNõ¢­¨Å^׫BÙ<6‘îªht¬pqèŸ]&M‹èò¥¤áÕÖ£WjOÕ©ï³*; "K-¡Æ¥ëJ’„­²Q-»¤í””[yEW.|hz¡¹á/Îtm:¯l¦V¼0âwí`õà '‡ðëÒ!Ú|D4ó¨#$­Ó3[†’=¹s¨í}¶°ìÒX- $»M¶Þ–ÛÞäïC K”¾R((÷)ùU2iô+Cõ©?²Æƒýߣÿ]ßQõ)öóø¯½/õWöÂøÞ†P°ôÏ@,+i½h³@ÎPéøz«Zƒ°²z{)›.”ñK%6¤6O[Yß1k«šHȶœ\‰Úò«YuRš£F ûœTÇqô5Xò[8TÔÕvŽ-{¬Oy³ÂÚq¨áÝâj±Tisñ%Oð© Ubè8ò†Jqþ %+/w³XH±mI^Ã<«*¹M• 5E6U)M¨Š°R½Xä~È5ck]M:ª´¥ã}Î.˜1•pÔ+B]N¿NŒÆ&Ñ|z“Ú[e +B\uÙ.ê.–R•ø*M‹VFDdD!QÈ«æ-)¥6é·¼“™j–³Ó9ë,+åÔsÖ5ÔÖ6[Qº“Ô´FZˆÑŒ#CÑ&…fà•n™?Öñ$z§¥Of ÜXQ#©²q×£©M¥N¨ü_6]¦E´ŠÎŠß(å4ÚRš¦ŠjMÔ8ÔÖ•uÒ¹7'®Ššnº©„šx)Ç çiÒv¨øz±ô3×›–Äæ°ö¡»9¨ï!Õ´¨òÍÇY Ï+„¹Ucø†y%ƒv–éáyÂ~z"N¦Ù+±t©k^Ìp2k³(:4ÅúhҋضQ£âŠUiŠ 0ª-?6sõu%IBã$õ­j¶ë ĤŠÛ.*©³®Ó“Ùò[µ*©ª‰”á*[Æt=\ÕiE¦¾Uz—K¦¨†¥º’…VÙ+)Ê’.b"`|kr}â¿Y=ˤŸ–“ûé#âþ«¾Þ½Û}H|?¼úKŽ} ÿÓ¿À\ýwÌý ¾Ù{äkVƒŠÜ¢Í¢!®bç€38@‹œ ÅÎbç1s„˜¹ÂÌ\áf.p€38@‹œ X°âÂ×pvg\âžwV‚NwlËU¹Tv+™í; Än³8Ę¹ÂÌ\áf.p€38@‹œ ÅÎbç1s„˜¹ÂÌ\áf.p€38@‹œ ÅÎbç1s„˜¹ÂÌ\áf.p€38@‹œ ÅÎbç1s„˜¹ÂÌ\áf.p€38@‹œ ÅÎAÓ.oíW|‘ªXî6z?1s ÔüŸi©-¸ËÈK¸“Bв#J’¢±‘‘ò‘–à €™ö‚CiJRD”¤ˆˆŠÄDE°ˆˆ¹†\³}f.qˆ238@‹œ ÅÎbç1s„˜¹ÂÌ\áf.p€38@‹œ ÅÎbç1s„˜¹ÂÌ\áf.p€38@‹œ ÅÎbç1s„˜¹ÂÌ\áf.p€38@‹œ ÅÎbç1s„˜¹ÂÌ\áf.p€38@‹œ ÅÎbç1s„˜¹ÂÌ\áÔ”W-¾2€‰rŸ…K&Ÿ@´?Z“û,h?Ýú?õÝñõRŸo?ŠûÑòÿUl/èe @<ôB"#3·/( +ÞÛyÀH$‘l"° 4$’v[äÙ©ìV¸ 4ÊDfdEp}¸¯ÖOré'å¤þúHø¿ªï÷¯AößRï>’ã‡ÅŸhÿÔ¿ÀYQ·Z’v2mF^a½ž”b­*ŒŽ» Ü,‰yšñŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÇÈé °Áq ÌqŒŽ» ܼÍó“Ÿ(Œ+>ÓqÒ?>"OÄ4T©6u86/ê»à}ëÐ}·Ô‡ÃûϤ¸áñgÚÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D1¶"ÒtA´4'›QåK‰5öˆÏaØö_ÅÈ|ÃàœÅTÆkláÕÊIT]ˆ¹ÈkfÖPâZ3¿•™Edò™mä XÎÈã>¨ížâsÈq)iJÒ¥ ì²%šO™D\‡ò€8:†%ƒKªÑèï©e*¬RŽ)%i>Ù8æe}­’ensUK»®'²Rô™tá;c¶ô+i— `†1Š£²ÝtæçQ–é¤ê6Ôš ;V[n«{’¸æí©Zz×{bwF³udþû{²cÐv©ØÒ•]*ÞR×T‹2dU6œí­ˆm!瘶€´š|«Ž•;­§©KóLR¦ÖÒíi¿AÅûeÐýŽQñ^±î-«*ž˜ªÔž°Î âc29Su,¯ä–ѽÜRÎ8©1©¼¦{~#ÒÕ ΨÁT:œåRÒ•Ôž§SÜ”ÌRu…„¬ž¥9”H²ŒˆŒ‡.qiÔ´½^¹›«7Úõk6Õ 0Ò#ÏfM¦Õ+Ž;OUJé¸S\J”–œÍ;i;\Æ]pÚÇžÜQ…L¤ó˜ìÁœü=#Pjeì\Ä¥*–ËOºê¥¥æÍ…iM(‰Iu+I Ðe|Ûjp“Î#lè1M2ã)mÒ},*ôùO»ª$†bL'YQ8Ri§[e´&êqÅÈI%$fk<¥´*jíyÚp)¦w'Øñ“ŠkL”$3XUB-J”ý*µGáÔ`®<•ÁjùÞefN$Œ¬yUt¨ÈŒŠä5ªÑROTNxè6¦†ÚK^ŽÃÚUju*Ÿ"•W¤½VIªœªœGjY“zÜ8JZMÌ—Q$Ì”i#2#±Ö›ºÔáæÒhôN¬üú ´ý6aºsÒµ­ÔŸIÕXDKbA,›R$¶Y 2BÔDhB¶ˆÈí­5§t=OQµT5Ù¥kÌ˼¼Ÿ{hÚ Å/´´‰u +A‘©+I¤Œ¹HÌŽÅoƒí+JóeY+)™ŒŽÆ^#·!€4'PkSyÓ$J4f,Ä“ä3+Ü‹ãäcÄi[ »™˜§[Uh¨3O7Mœ¦WØŒÄ~¹2ÚCÔªˆøZ;'ÀÚª3:’o¶M†GcÒK„JB‰D~4™yÈôAßÎQ¿Ew÷É-;ÞƒZ‰ R‘$j?Šæ6©ÂœŒ%.¹‡1e?QâW)Š[ÑåF)M#-Ÿ6Îö»w¹ÚÄGÊa{ Øžõ"î1µ­ÎF‹Y‰ˆ)ñ*\7#Ji/4£I¤Í'â4žÒQÈÈö‘‘—ˆeç§_Ÿ 0–£·¦hÎUUD,#‰JrYD•4t´–XëpÚKÆzëd5•ùvr (­TãÍ3ªf;™µT]í˜Û=èËÚö¬£Ö¢É"R:lI>C3¾Â?˜ÜÔÔlÒ•“‰4¯Ü¨”VWÈw±þByµ7­'mØÕœ”F‹5íoŽà©‹ñÍ+É2zÖáL’ÌH¬ÆI<ô‡Þ3$¥´æ">C3;‘™˜ÖªÒiko Óè6TÊo/À;R_lÍ´Ò•­9’ƒQ̼~ îvñØljk®o1'XœÆfDœÅ{—)Z÷Ùã_‹©TÚÍ6"RQ>¢Ô—£´|ŠDlšËö†YHö«m¹bã%<`5 +sqÂ}a'¥-²ZMh±©$¢5$̯r¿Šàâªn §®§UyM²•¶ÒÛjuמuD†Úi´©n-Gd¤ŠæƵU¸,äÍ4ÉÔ éZCŒXj‹YMJ l¼í%Úy·Q[,Зšik$¸Þb25%g”ÈÈì{ö³IìœTî3w<›[cðOœ¥ˆ8Õr5±4eËiù“à”x­; Í/6· ò’deÉm‡´b›DÕíQ2üð*¡§w_Ñ'åCÓ%½*™¶*1Yª¨ÑL›2žìxs×”ÖIŽêùMi#R Dœé#4ÜmK—L<Š©Œt­†K¨OK‹&l§I¦#4ãθ®D6ÚMJQü„AUJ•,SL¸GãNª±R‹ZLÚL¦Ûq ¾DÛ¥¬I))R îJ2û^Q³PàÕcˆ©U¦C›5D§‘·q 'ZïÖÒj4¥ Úk±lO)˜Ãp¤Ù)p~ÍMeÖ™tÜ&õ©mD— ²Öd¤ÒgrWÅË{—ˆe¨pj±Rnu IÅ¥¥eNes+˜®{Oâ-£`)Ô ì§“ØV5ÏarŸÅÎ㪵ˆôˆs¦¹™ÔÂio<Û­x‚Ìvm's;™)ø†*©R¥èFi¥·ÞD–Ìö•ĸËí¡Ö–“ºV…¤”•óÆÍCƒTäÜ 5.RùH ¢@£Ü§ä!TɧЭÖ¤þË÷~ýw|}GÔ§ÛÏâ¾ô|¿Õ_Û ãzBÃÐ= Šýd÷.’~ZO喇ú®øzômõ!ðþóé.8|Yö€ÿÖ¿À\ýwÌý ¾Ù{äkVƒ! &D#}^ƒX®é^¬ŠF&~„´áŠi)æ!F•œÎl’+””¨‹/.ͧãQKwáÆ4|Úª©+²µUßI…¢™ª£¸µ7iq)ŒÔ1\j›µ¦]“M~ªÄ…¥IIºÙß2uÄk‘+U’^är³iÝx%Íàžr¥wíÒu­4êÒÝüZÊz8Ý +Rf/C|)¸õxÞÈkÜ÷iÆËi„lJu¦˜Cëy| +"6MJð’IQllÒ¿GíÝZtê‰Û‰Î·îjøôùµÉÄPáœúìeM­ScbtcÍM·Myêù¶‰K4¶§RH¡.-ˆ×«Ô¥³¹¨¶ã’üâq½û©Ÿ\ Ï(ÑRÆ06¹™Ã@˜j™ª¶˜I㲩K#Sº„ÍVV’¥{–ö_*lF{yFÖ*,éÚœüªŒ[9­ìˆÒqxöŸ6’˜™,4W$a +±Ržu¶Éçj-¾‚dšZŠêu)=„G˜“µ¸çi1]Ý7Tgð§×ÌmNšoh¼æt|:>‹½WE‡…¾7:tïdúƒ=}¸!k8ËÇ®á–É­ðógËàÜtQÜ{Ûši»Û§nfµMßuï¯/?½٣fƒ/i>§ âíVê’›ÚÌgåºyXeÙQL“«=ˆ%š $j2,Ö+ÜƩŤ½t5Ûz—‘˜š!j­>È©zL1ˆgDÄÓ1Õbœ´Î¥ÊĘ+2›,ñä*3¬¥ô¶²ð\J D•n›Ü¯°Ç+:}Õ3¡Û7ç\Üz½«÷5F«-ÎüúMË-½…1ý>•©š=/ɤºy•ž“*3Z¦ÍV¶hîÙµï›?Ê–ª4ÙÄæ¯+¯vj %U-hu§æqT­øözD4œ¼GS}£“ƒ•À(¼$©±ü"2]²?qÊDù81KÁÔEª#PbHT}d™–—hAµ}¤‚-»,1[e¹Õê{ó ?‡*¦NìÇ‚C+#·’´¸NXÑ”ÍF{ p¢¤è¥%ŒR£&°{¢Nõ¯wSo ©Îiâ·è2þœÎ¨b^(KÈ–QtŹ¼–5ð‚k&ÜÄÎ{eÛÍâ·z/S>iSÀÖÃNaÇž0#F7o®.‘[À +d¨*ÁDSN–¯Ìe<ä‘G26ü“¨ÍžÞ\¦­¶­Swº·¬üÓ{ì[“§8¯ÏpžÙ&¶Ãt¼+ ˆ4¨-Äฤ6V̵fZÌîjZ¹T¥™žÓ1.¬-¤JtbC 8TÃoðMQéX©ÄÖ +æu`ä¿ÃJI…Áx6\¹¾µm^]¶y:SGÅw¾K½;ozÖóîüêïÊQž“ŠkaÕQ¥ÑØ·¥Ú›–ÒÛ¼ç¬ÙK©A‰³AžKø&“;l3rtš³[jžÅYÒÝ´ëu§ñ–ÆTçp÷¶M*†Û4ê3— +.c•œ ?µLR™iH2eJ$›ÄƒIsì¸- =ãXè÷©®Éì0ô¶´ókÏ7šßå&…O—GÄq ÔâÌ¥LÅXI¥5Eˆì:SnkÚ'Ê#…!ÒVtšuÆÙ¥)^ͧq­TÍÄñ\ïd]r¼Óé2œ^kO6üþûçŽN]+4úd6¡Ä`-0 ¡73²R[ ißåHÆüÈ;ùÊ7è®þù#E§q»ÐqR>Âÿèn~¤Â×Þ¿3î~ùy×yt@Þj›¡‚ÃdÊq? 2©“W)¼S åðÂ÷Z«êõzÏù2 ,"h»£›Æ>"‰Û{´ém>îzø|·£dI$´¥ñf&BLÎ*1> D;òj +Q™’´IÃ]¼C¥”ótÎOuê£Î×ßÕ­÷T‡®ZK®ökm¶_†È*Ñiñiùµ5Ùùëï³0LJ6Âú2ѹH¥DþݤœÉu)· ^˜î:‡*K/ ÖˆË*Q’ F„Ý$C¬%vœ4N:%QŽ[LK÷O1†˜upK^ïÑÚ§W)tÚ:_6 zMCz˜m­ˆ…ØÆâRÓ&¥c¬ÍF’¹¡dfer0²Iܟúv*£ð21[‹ñ•žŽÉúvœýZ•F¦7hÎÉE“Ò+kŠnÒZà0îªcISiD7\¾²Æ”’Í&4XªgUv‘:4hã†Ów¥ÇR‰:tøì?(´Ú%¦áVÀ8ñqûL^9œÊSÚÆV·\§›Éð#-V#l‹*\JˆŒùFbj³{k[aS[Ó”âŒhU­”wÒ·Æ“„¯Á\êÞ,n§X¼ŒS4²*kÒkéˆKŽq8 ¦KEÁ”Ù(••´§Zk¹Ü,tÓ÷9ûç§dv@µ×•ÅhÕ¶x’E8b˜¼Q¤Šë°Pº’1$Æ’²5-¦N,k¡£VÄ%Wð²Û1òÜg“¨¦Vº«ùìÅ»š£î´|Ói¤u½(èö}B$äÛ1¤Jm¿ +Z +:£ –²÷d£3A^ü¹|cd±ªï¾¸ãÏyzùŒiJt_ÇÍ Äبùô`t“hñ¡ÕöI”ÏŒ5:¹cËÝd'5z½fËêõ{,bi»Ôs—½ZvÞ홳O[•«eÓ<é©\^œ\}µ*Ù=iI¨˜Žm<ƽDDg‘¥¸•(íà•ÕÈCeR¦´Þˆ©vºZ\MnÞ¥¥÷WتM‡ ãÊ0ÄÒ#Pšf¤˜PPoÖc)·XmN»tÂ'S|Ê2#uIJŒ’DW"3!µgΗŸOw¤Åj#·³G ÄÔJüI£ %Ò)©>:£Œ˜Ž›å58ä—‰)#þÒ=…òˆj–ì)ÁáœVܯE»o V?x¤ü«øÞ‡èxƒ‡¦·&¨åN€ñÄhŒäSÛ§-Ê\–홂i-©³ÎIº”I+ÜLª¥U­-b•N©Õj\fŠ—M›O FÙ^d¢Jö U±¨™\ªZeuEOŽO_âÈgŠã¯S{Eúg~`Ý7F›µw‹Jøb›X—¦ùòá%ù(´· :yQ]LWÖ—c™{‡È:l­„W°á]>⧯œXëÑA½ÝÒµ\}õ»@Âïã¶(ð“ ©z:rCé`$ô”­äëWoté‘™Îê?˜Í¦ZR´'D-ZjðX«6ô»ÒõügR”¬I?HÕiÍÌ\L A\c}&½K¼ +ZµìK„i/¬²·(Ï+ÃkJ¯“&y6<ÒÔÖ?(ãþ˜ãïé%ÖœŒ¼DrŠ¹Ê3RTwj¢™í9fî¯j~»î-°9OáH÷ß?{„}ëO,g/}Œöp;ÎŽpÑ×1E.f*„¹UJ~ ÃŽÚNe)©†ì“S™àëÊÅáfI™Ú×1¼{ªÞ¿qç›®`ç>æ…«Ýî¼¢{·¡…aè8›G§® ]rØ«Þ£Y°ÃfzÇ‘]Œf´­F¯+R’ip¶#hÖÎ"0÷‹¡¬4¬þ“{IÓ÷}Lã£gÐf¯¡ån¯G¸wZj4’e¥ƒW/L§’ÇéjÉ6ø¬:RÝÚgMÚ{‘¥¢Wªªï3@É —)|¤Q QîSòªdÓèV‡ëReû¿Gþ»¾>£êSíçñ_z>_ê¯í…ñ½ ¡a螀Å~²{—I?-'÷ÒGÅýW|½z¶úøyô—>,û@?ÿ׿À\ýwÌý ¾Ù{äkVƒ! &D>r$6RÌec;m·5ù€š£´âÚÚB³º’h#JœÈÊÆ`$ý Q¤Í$y}ÎÂÙâÙÍ° :¦ÉÃwVa–\ùK6^lÖ½¾.@2}¥ EÉ)$•ÌöÌü`•´‡ +SiRwIšHÍ'ÎF|Ÿ¤!¦ÛRÔ†Ò•,îµ%$F£çQ‘mý0«m.¥HZ´¨¬¤¨‰Deñ‘ì0ÊYmKim$„Û*I$I+s!˜5ShQ’ 5™È”ˆùŒ R2’2')ZÉÊV+rX­b·ˆd-–ÝR¶Ð¥6wA©$f“çI™lý!€}åI(Õ”³XÕm¦_( >Òfim)3å2IŸm€Iö”¥&f”‘¶™‘ZçÉsç~mÇe¤heAÜÍ BI&gËr"±ßÆO£m +Ët$òÓr#±—70MKfáÎÇËãÙú@ͦ[a$†›Kh+™% $§oÄDDúJ’2JI%s=…m§Ê{Iò–[mkq-¥+_»Q$‰JýèÈ®¦M¥Z—¹ +e:kDìil¸ÃÍŸ"›q&“/¿³˜öj¥T¡™¦¨ršm94øqâ)ÕÉÕ4Û*yòJt›I$Ã$‘)FE·a_˜oS“T ß)¤*÷BNå”îEµ<Çñ|CA4‚¿€¥cðKiˆþ ʘiÂA)¤(›24 )—!¦å°þ@锳¬Ya¶ùÀIÅÕi Ôáψ—SZ[.HŽICäK,¦d£IøV=†dv媕R‡¬Úš¡É¹§@I‰ F‰¨ñšm–[O"m$”‘|„Cjœ¹4J àÀRå/”€Ê$ +=Ê~BLš} +ÐýjOì± ÿwèÿ×wÇÔ}J}¼þ+ïGËýUý°¾7¡”,=óи¯ÖOré'å¤þúHø¿ªï÷¯AößRï>’ã‡ÅŸhÿпÀY2(2ÍDfZµ\ˆír·8ÞÏJ5«A†IȶûûÒõƒOÕ}$YFºÈ½ûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD¡¬‹Ð/½/P!ú¯¤JȽûÒõªúD£|êãð6R»k±kªÌÚuržû*†Q µÅàÐ×)µ¢Fs[Š2lÒ²YXÌîV¶ÕU4ñÕg{r§"Xuã{«Àäô{¤¼c‰ßÂ5gbI‘LÄã•èꋚʚqÈîµ5k»åt¥ ##ÌjÌ’"!ŒiÁõfb1„â2Æ8›8x®´iœ&n³°è®µŽñ® ‰ˆŸ¬SU>¤”.4u@Sq£¶Ü•!ÃZ›Y­Å­¤¹•[e®6§Bw[ó4›HÅq--W’ó§ƒ$ Úç`44—)|¤Q QîSòªdÓèV‡ëReû¿Gþ»¾>£êSíçñ_z>_ê¯í…ñ½ ¡a螀Å~²{—I?-'÷ÒGÅýW|½z¶úøyô—>,û@?ÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D`AßÎQ¿Ew÷É-;ÞƒŽRIdiQ’ddder2=†F\Ãf§jœbb*n‰©øILΣ®\·éLJM Ù†¨Tõ¾“#K ÊF„Ÿ¹ºf„])± .´°Ó›Ô½WŸ¥õSÇDËK[õgsÀ˜d°n¥Qµ¤òâ³g"¶µ÷n<å¼YœRä1Ö„´$’ó%)™oKm¿;:•gCTJËõEê”XUg ê2$Ój ×D•©ÖÉ&¢Ö9«R Â÷W¹ßš³Z5LÆ©™ïÆ4£Ó®"uäv†§N¬Ò«?&štGièn+‰m‡a¸i3aÖÍ*#ARiË”ÊÖ½¶ š–ÛÖ¡íÓâjœ$²r½{Λ£šE.>ŠÎ¸ÛôÀÌæc2[ +ŽzÝž€£æÛ´fqŸºÇf5FÙíÅúN肉†fA•DçX¦ªB©dJ7!Ó•$”Nvò‘‘™)INe+"LÒ›i¦dc¦26ª©ß=¹œÅ7G´ú6‡…ió&ŇM<̃D¢$½¯¶´‹‘GrVÍ©3/Û-‘ÃÁ5oNÙâwÃÚw€Rå/”€Ê$ +=Ê~BLš} +ÐýjOì± ÿwèÿ×wÇÔ}J}¼þ+ïGËýUý°¾7¡”,=óи¯ÖOré'å¤þúHø¿ªï÷¯AößRï>’ã‡ÅŸhÿÔ¿À\ýwÌý ¾Ù{äkVƒ‘ìlˆkqˆá\ „p€.¸@á\ „p€.¸@á\ „p€.¸@á\ „p€.¸@á\ „p€.¸@á\ ÷OóoÑ]ýòF«Nãg Ø\m¢á\ „p€.¸@á\ „p€.¸@á\ „p€.¸@á\ „p€.¸@á\ „p€.¸@á\ =¥òH${”ü„*™4ú¡úÔŸÙcAþïÑÿ®ï§ú”ûyüWÞ˜ú«ûa|oC(ZÇÌ~c‚yä 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒ 1ùŒúÉî]$ìñÒ|_‘ñUßï^ƒí¾¤>Þ}%Ç‹>ÐÿÕ¿À–¿(çVŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á jÓä—˜$ Z|’ó«O’^`5iòKÌ­>Iy‚@Õ§É/0H´ù%æ VŸ$¼Á ûá"+2ÒI}”8’;‘-$¢¿Èc)µ ÃIé6œKOê,w(Ü3}æbâÈq-?¨±Ü£p_y‹‹!Ä´þ¢ÇrÁ}æ.,‡Óú‹Ê7÷˜¸²KOê,w(ÜÞbâÈq-?¨±Ü£p_y‹‹!Ä´þ¢ÇrÁ}æ.,‡Óú‹Ê7÷˜¸²KOê,w(ÜÞbâÈq-?¨±Ü£p_y‹‹!Ä´þ¢ÇrÁ}æ.,‡Óú‹Ê7÷˜¸²KOê,w(ÜÞbâÈq-?¨±Ü£p_y‹‹#qxyµ 6Ök_" 7·=ˆ†Mé2©KAº2ÿÖ¿Àÿ׿À†d[LÀ:ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ b|¢ó„¬O”^p€5‰ò‹Î±>QyÂÖ'Ê/8@ÄùEçXŸ(¼ákåœ D¢W!‘€5ÿпÀ7Ó +8#)&deN”ddv2<‡´Œ„®Cöí?9WÛoÌÊfMFe‹ócýò÷ºt¬–ä|¼³^1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%Ž1™×ï—¼.¬–ä%æé'ƒ+ áOf*µ8‰ZÕ܈ؓr½ùz©\âøµw£ªnãø˹ŒfuÇûåï.¬–är–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–8Æg\¾^ðº²[–X?ÐTû²)8 ÝunLŽDkY¨ÈµGÉs1ó^Ï(ªŸ3ï.½Šx?96EjÿÑ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Kiä!÷lùte 9£è5<7+U±)P˜œˆ8nÉRœ[zÂ;6¢±Zþa×”:kTSL¶›Ò–‡{;U.¦á&µN“µ3 ™."»¸ÌÒ8í¹èaÇì;‘“W%’­}‡ÍñŽÙ¨uÕUÖ¥ióW#nµJ~ùJ{£ÂÄ•ŠM bêïÎRÒµ*#±(,Ƶ›†w"I¹-ñ‰”:)uZSu%šs¸åÍ*šT9mäЭà*tHT(øª%U¥·KIeÈÏ!NT¸„:wq»—ºO'0Å—(ªª•5Ré¼°ržøÐfÒÅR›U'wJÑ»3´Ôt"YÄÔùµ¶…‡£Æ‘6~¡Å•¤¥&ÚPÊ.µ(ÍVå"+^ã…Ȫ¨¦¤œÕSIJÒ¶*ämUvtSy½‡Zh”ÉtòÄ]:|SÌÖ"ºò’¢Q'Tôtž±µøöì°ïE½uJ¸å4¢T=©è9UeJ‡yCœaʇj®èZÓ0£x±©5I²"²m”†›’œépÖ¥eUˆÊé-»~!ÆË—:éuÝ„“Ö´­GKNL©i^ÅƧ¯YÆUtOš~$›GÄìÔÜÃË$Ô#œ7£- 7 £RášVD¢>aš9kwoRÒ¯C”õH«’¤êJ©téPÖ&Öˆ¦ÎÁÒ1iTB›mé-À4(Þv+¡—J¯bJT®C-¶1½§-TÚ+8Ó ½I¹…ÀÖÏ“:¨uå0³ˆžó•…¢œ?2€þ$ötÚ Æ}˜¯™Òdšû©%%œ×QiÁ¥|²ºkT\ÅÌ{¥Œ£“ÓU.«Ú"pxIãDuŒ`Ç)òÛ’æ(rJ#7‘MêŠ;™ KQ™ì2ð¹.E³iújUUMX\I·çF½ÝU,oTÒì4®èňtªÕV‹ˆãÖQDu T[j;¬)¢Zâ ÍŽ7œ­r·=¬1gË%Òª¥Ó{C”õL<«äÑ0ÓtéPüݧ?YÐ=J'4u&]gª;H}-ªÑ]}(Y!Äæ¹ø*¹XÊö1­Ÿ²ÔëQï~x“5rF•5O¾ŽÉ1^Žå*«2’K'œ)È„¤–RZÐá¶FD|—2ñ‰–6œå*¬Ò{ñ#ÛQr§KÔÌ©\ÐôzµJdŒ[5ªlR”ý=Æi&Y fÛRd-Ë(¬D[Oav|¾úUSKt·†q1‘"®IuÝu$âc²tœ:ôu + N¬b$A\„춖PÝ|ÛR&ɵ%µ\Ìöžm„V°ëÒ[ªªi¦]-kJeIÍX«ª¦á9Õ1ËZд:V%§a&±[Rj’äÇah(! ¡ôká­J²¶x$wÛñ6\¹×C´» '­jÔt´äª–©½‹O^³¤bì)@Ãe)˜X±)ÑŸSFM=ö,hQ¥fN,Í6I—éŽÖõZCtÂjfòz°ÀÒÖÆš%^–œD<ó68;ˆ(¸ž´‰Ii&}m)¥ØÐl+:2‰‡U¯QqUViRš‹9®ìWSª4%IÖ’ÈÔVØűº©¦ªbúÁÊz§Qµ\› +.néÂ5ÁÌãTðlì3¹íOUuÄ°ÒšmH&žQ·à*æ{r¸Jñläü¾›[Ò¢î=˜ãÀ[rWBOLå›I¥Äã±®‡fáJèæªRô&ž0šËQÖÓ”*ª´§†ÓXKO:Îï`J^%¥aSŽÃHâÔÑ=ÚÞwV¦¿ 맵yËnßã_&µ´¢ªô7UèuîtboEµuSN˜Q3‡ºÒ`øó`S4kŠ¨‡ParŠ¿M6—ku¦ˆÒn ˆü$ì½Ë`ŸRª»k:áûÚ§d¢51MÓ:é°Ì…‡ôƒEÃ43-ù¸T¾4DöÛQ-ØȳI)i-¥°ó[”ÈŽÂ=¯%ªÒ»UÖ¦˜z›:YÛ*,èyVÛZàê¯"—£ì5cû SQ©íAxÞQ²—Õ<ï‚Z¿ÄI? 7ˆtW­j³WZºæ¦ðX(…™sEú¥;É¥q| ÅBÒwQ)u*£Xª]R$ëS«‹R¦£5”£;$Ԝͫ“”ˆE´äÕܪªS•]xgMX?­6ÔÍ4·ƒ¢™ØÓ”Cü[&4ÌMYNçŒíJJõ›J}G™#ðv—8·ä”ºléO©]ÄUT×SY²MÔ*ÔijˆÄ˜š‘ˆèH§8šT‡’ƒ®¦A µ(»hK‰4.ä¬æiµ…UÊ×¼¦ªk½Œ{Èœ^Z ôÕOÂjª#_¾Ñ ÄD«ÂŸ†ôi<¶z5æä¡ %)•›ù‰+"÷'m¶?°äô5mhÞ†é¸í*NÊ•­^ï2{Ò^Óe.°ÝJ:éíȦ)R’êM’&ã¡*3_&Ã+1ˆ¶U.MU-cîð׋puµ­;Z\à®pJNLu +õZ<÷&b,?:œS”ìv)ê‰Âò©j&Ìõ-%fD“ð®£ç;‡±ôQL+µ*¢swF:\9]uU{Zœ4Nœ5CÕ¡AÁºK‰"SmH›#4µ‘-å%üÊ$í3"Úv¹UªìÚÕ^;y=I^t¾òGQt‰‡œÅÔ:eFªÁÒÕJ ÊDjuQjT䚈”£;$Ô“Sjäå"1YiÉ«¹]Ic~¸ÛMJ‰2›j}Å-àè¦v4å:HNÃXõÚ=J'•ŠTóq¶dëc-J»ˆmä­&Ÿí+lçW%u»%Rp¨s¥CŒÑ‡n“´i¬jQ¡ÉÓp®)kQ1ůS‰§ZrÈϾ”EŠã±ÊhÍ´’5'“a&âE½‡6誄ڡÕ+K‡¯'+kê¥SJòPô)^c!a¬SCÃøƒET5Vb¾ÞDåOœÛŸ™Pô¬ëեʼn;Ô[ Ìr®ÊªÕ­pÕêRIép²6¼©æè”â©q¡KÌéÕŒi`œ][°aʉU"ˆœ-µ-IZ–Ú ‰ãIXÈÌŒÓ{ŒÙØ;;K6¥Í-9Æ0[ªµUÓhœ,eF2Ô´“†Î£‰Ÿz¤Ãê£7¯F4º“CÓ +ÁVÒÆd¼¦d[n_‡Ñkº¡{ç]/e.©žó½6ôÞÅà•vÒ´qŒY‡#b*(›SbOáªK(}ãÕJÛÔ¤öÙÄæ3=†i;‡Zìk»iE)û»XûÎù°9Ñ]-ÙÕS^æ†ßž\.&5Ƙƒ âÜHâ´9U +¤ãH‰2jdIr,¿®­iQ!³RIÏ_nÑ.ÂÊ»;y«U8´¡M:3Ôp´®šìšX5TâçN˜Ðv\G‰©24ÕE¬5RŽº{oRr’êM”“qЕ™®ö,¦V>cù5•K“ÕKN]ü5ã0fÞ´í(iè¹=¨Ôix⃉pË5˜P浉¥Õb.cú˜Ò£½³Èí$¤ß1_”¹¶VuY;;F›\Ú¥¤±O ékiMwè•w“Ôõ•ŒiA,W;5f“ƒäÑøfl?(™UÉ¥,ˆÌJ²yí°kUnΪ¡ÍVŠ¤µÄ¯4ÚR«¢™÷´´Þ©iœn(Æ”lQ¢×¥*kI¯Ì‘Kj|Spµ®.TÉH$û£ÎÞSQóÞŽOU¡$½Ê¼ÓÔ¯,VóNuUbçßB^xx=ÌÀ8í™lVDÚëU·µl^k/)ä,²2A-[|ðL¼V°±äí:pWqxDvö‘-S•.p_€tñØäß!~ÁUîïMþ»É*ûu|Z»ÑÕ{Çñ—s:üC¹È—˜>©N(Xz<üUHªat°“¨À®!6 +ìzÖ¢¤‘­·&¬Ð«sØ…7(¡Þ©ªjU|¨Ðò^y,lj÷)^Q­U«`ÜàœFÜ| >…k´štŸd2ŸeªÂã߀dH<²áfäÛkì=¼£NQdÝ­5Z&×7ìûéÙÖ5¥Mj†—»Âr§]¤bÅaz’Ê|ú<ê´©T§m(bDI'šî)¦‰)B‰{r¤‰&:ZXߪÎê©%{4Ö˜¢Òê­ÔÓmS”s1¥\ž§î¥ Tc´Þ›d§Ü§/n‚˜Ïšpþ<ŠÜ$ÉÀ׃¼´WØVá‰3æ¤)³²’i>c##ûã&Óƒ<´\ì+pĈãäegýa[†dÌ™¡I<¦“%s˜ §{¡s°­ÃGxö“+·ï +ÜÏ"³eÊy¹-c¿˜d§{¡_a[†$ðgº; +Ü3 îlbè P×G^¦¹$Ûqf½w I¨ÌÉEeä̛ضZÅ´‡ +¬[ªò©¥†AÚ›D©‡JzqÖkZÅÐ+4Æ)±°•6èÕ^l]qÉs!XófY§ÃåU‹—)±j«×›Xàâ1ðÕ]»ujÇ:QÇx¿h¯°­Ã´œG{¡s°­Á üÉ +Qå$™«˜ˆÌüà ý8;ÅÊË…n83Ý …n æ”)gd¥J>b#3óÈ?N÷Bça[†$*;Ö?­8[9r+gÞwÚž5¦ÔbBŒÎ ¥D\wXqr×k$%¯t‡3,Ë+Ÿmk1M…J¦ï73†§ÀêíØ…çÖlq^&‡Š)@ÂÐ(æÎ|åO'ŒÞÍkgÖ)^æÛ-nS±±tLÔêóÆŒÚZª°T¥æ“¨ðw‹••ö¸w“ˆ8ïÓeÍŸÚ +Ü1 øCksÜ!JýäŒÿ|2³Žñ~Ñs°­Á ÐØu$fm,ˆ¹LТ"ûÃÈd‡}¿®ŒSý\þ±1ó>Ïûê|ϼºö+Có®âo +ØÿÓ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Ki=„>ñŸ.vrŒKÄ2X¹•€X¹ì`°À € 6 ƒ]ƒl `ÈÓ`È5`È4±0]†0 6A®Á€i°®Á64±5Ø0 65Ø`ØÆ@Ø0Â.\¸pàÀ €.\¸pàÀ €.\¸p{„Ã*±ýÝé¿×y#…_n¯‹Wz:¯xþ2îgD¸îrA¡‘-€ €À»`Ä2 vÀA¦Á€6]€ÇW`2ÜxÕ©Œ²ÙeCmÈZP’æ"#±çU59i>ÃuiRÁ6~ˆÆØ…³Z“]šF³ºŒ¤¹áˆ®~Ý„D1Ñèê­Ã«7¼âêu©õµ!u ÏKRÒ“}Å8i#ÚdYŒìCz,Õ>õG˜ÅUº´³“gbèCMW&¡I%)L—’’+¶ …JÜeZT°Mï5obˆÉÙ©#3QÚS…u+iŸºå0èôuVäg«7¼áê5Y•‡IùòÝ’é$’KyÃZ²—!]Fga½4*pJ<ƵTêÒl6ØÔìíclBÂÓuÙ¨B’”¦K„IIˆˆˆöO“Ðñº·«J–·¼Õß·›%vjs(Ôv”æÕ)û®SGUn3ÎÕ›ÞpÕ´Ú»¤üéŽÉtˆ’N<á­D’ÚEuˆoE +Ÿz£ÌkUN­8œÙc¬F’"*üâ"±æ§6[úÐÓ£ÑÕ[¹Ú³{φ±¾!e$†ë³P’½‰2\"+Ïfnp|žŽªÜ9Ú³{ÎUVdù<6L·^“tž¹Ç N]>äóße¶s”ЩP”US«IÍž;Äj##¯Î;òþjsmÿ­}ŽªÜoÎÕ›Þ|7ñ )Kh®ÍJD”¤¥8DD\„E›'¡ü¸sµf÷œ7L9|<åºróë5ùÏ[ŸÊÍ{ßã (Œ2ÔhêmË9§1Æ"u*BëÓ”•’ˆå8dd|¤~çÑèê­ÆüíY½çÒqÖ#I~qX‹óS›?Îòz:«pVµf÷aÇVúÖã‹5-fjRŒîffw33ñ™Ž©Fѹş¤YOBy¹ÝS.¶d¤8…T“ç#-¤`ÔàÌ'b^9ÄN%IUzq’ˆÈÈå9c#å¿„9tz:«qÓž«7¼Ô±Þ$+Z¿8­Éù©ÏX:=U¸sµf÷œ$z¬ÈrŽkÝjIš•®C†—.¯tyˆïs¾Þq»¡5†Zo9g2æ7Ä.¤ÐºìÕ$ùHå8dçCNGUn6çjÍï>½âC½ëó½)ÏX:=U¸sÕf÷œ%>«6’ñȃ1ØÏMÆ\Rd|¥t™Œtª„Ô5¢©§(æWŽ1„DºìÕÊpö–Ò?uâú=U¸ß«7¼ÑÜoˆ_BÛr»5hYT•IpÉI2±‘•ö‘‡G£ª·z¬Þó¬l!ÔæoéÕY”‡ND nÆtÒiΈ…e>RºLŽÆ1U +¥ I”ÚrŽexß¹b]vjˆŒ”W’áØËý×)k“ÑÕ[­Y½æŽãlBúÛ•Ù«BÈÒ¤ªK†J#ØddjÚF “ÑÕ[Œóµf÷œU2µ>Š¥®Ÿ9èŠYVl8¦ÍDGr#Êer×B«§ÎiMMh9ecŒD³IvqšNé3”æõ®^Ó£ÑÕ[¹Ú³{ÏÊV1¯NeÈò+SiÂʶ×%Å!EÌdgc!•aBÅ%¸Ëµ«7¼ë—bàÀ €.°ï —õÑŠ«‘ÿÖ&>gÙÿ}O™÷—^Åh~uÜMá@[ÿÔ¿À‰¢1>“P)”<ˬ¸‡p®…¤Ëi(¹Œt±mTšÌÒ´ši‘”´mƒíû +S{ƒõ…ÇI´ë=äbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅTnØц q©KV¦Ý´¥IúÁòšˆ¶ø\Æ5|ªÒWº{Ì®OGUOklðR›Ü¬6é6g¼Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽª9VðM6K†©äÊä2µ6LžE-(YŒ³r‘‘|¦4éÞ›ÏCÖmÌÑÅ{[`ÿ‚”Þàýa¿I´ë=æ¼ÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕCÚÛü¦÷ëI´ë=㘣ª‡µ¶ø)MîÖ“iÖ{Ç1GUklðR›Ü¬&Ó¬÷ŽbŽªÖØ?à¥7¸?X:M§YïÅT=­°ÁJop~°t›N³Þ9Š:¨{[`ÿ‚”Þàý`é6g¼suPö¶Áÿ)½ÁúÁÒm:Ïxæ(ê¡ímƒþ +S{ƒõƒ¤ÚužñÌQÕFdÑv¤áøóÑJ¦G‚—BœLt j$ØŒöžÒ!–ZUSW›~rW'¡R°Pe1ÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D:%Ò–ÂÒjµ3fj˜LJ"É|Ò”h'l4²JMI2ºŒ¹ k}hËOnƒ7ÛèõhX†j….[S"INv_adãn$ö]*MÈù¾#ÙÊ7ƒSî}F-(˜9o¥’}ö¢µŸfwÞ<­¶_ÚJ=„^1‰Æ3ðžägTåøÿ*¬gc±r¹ `ä"~wŸú?Ö„5zQºÐÎ]Ç,I3#2#±r˜É©©$̌ȎÅÊ`S±ªÇbñø€nv.£Ó›¬;" ÚGÕq†Å(ãk’Ko9$Œü$™XŽå´'^ØíÃ(Ú;§³±’ME˜ˆÌ¹oòŒµ¨Ô’fW"3.[ÛÄ1O0ä~r{ôf¿R¡®¾Æo¨Ù\lhtêV?õÆk¯À«³!ßS4f¼G££;ˆpŒˆî”íØFF\†c[êíýXãæÒoqÞ»¯ <úÉJ¨Æ®C‹Q€é?S-ÈaÔå[N¤–…ÈŽÆFG´†î–°f‰É¾JT®B3ùb še2";l>C禓"#22¿ B#QØŠçÌ@¿ˆ1E+ +·ʬŽRßLXéÈ·óê#2mm*RŽÄfv-„F£±Æ'³ÐmuÃyº½n „I¨H&[ÌGJÌ”¢7_Y6Ú|3ð”¢+òmÚdC:ÒÍÁS’“—4(®yNÅË°ÇFªD™"tF$%Ç੤Im'á2§PN6Jæ̃%ÄvÇjŒ8‡–ÉõÜr…‘ù­´ L¶™˜ÅñÄ>2U^\91Ó,ØÊ«“ +Y¶K½²Û1Z׿Å`XöGÁ¨íž‚rÙFDi23Ú[<@`Ð’gkíØ_€NÆv;)ø€ §kØíÎùHÀŸa—ûÚR"r­D‹¾§`?ÿÖ¿À\ýwÌý ¾Ù{äkVƒ! &D0Å5ãgKuõ™°µ,Ôy²‘N•´ÏÄAdð¯ãYüÚ…¢ÆŸ5}ô˜>‰Q&´è®Kz!Ç5Î'‹b`ÆŸ¶ÇPä¢ð›Œn¡ÕýgÂqEbºLÇ:tÑJêÖãB‹Î;ð^mGZÜUSÛB.aOt?‰ œi„é Wd´ÓtˆTÈæÍNK¨j1JÈL¦I- t^ +V¿¼FAGºvMã.¼s…iÈÖÑÝçÊxÜžóq‰jxštìmRLÈô×h‚56Ÿ6EnS9pRe®Ó.!ò’KQ]Y”é¬ö–]šYTÜU­ÖÓ×>ê.Ç›Äéh’šu*ûìÌùü • +;MÔê΢¦ëî9ÁõÖòVÜ<¨2-[dWoX^®g˜Êä$-ÏèXz{NÑéxœØÁ€B'çyÿ¡£ýhCW¥­ ãÆƆѾÜc¥›{íIþ˜ìt?Wâ'km_wÔbkQ~C:Y¯Ì­ËƒVÂójˆÛS\e ¶Q˜v7æt¨ï ujJ³¡yï•6˳’©ªokç#²òWcÌ牻¥MÝW'ƒmÎÇÝ<ãñk³qÝcâ´I*œ°•cÆ͈͜‡\ZO;kÎ^ {©:ùÊ–ê¡Sڱ퓖”—ÝÞ›o±÷3Hø™òTÄ4i’ÛvŠéT…L•VS i|&3/‰Ol²8Ò’µ–ñf]Ô²¹Ls³ª]-|*Úó©j#%s¥TàÓÕB~l%9ÍîÔ~ž… Hú!ªtå?c'I$º™’ ÐOÅiÅ™$Ü2#5r®’ðSdìP¢•¨©}úãV?¨mð¨æ1íI÷ÛÒýrMn\:¦àÅCm©Ž2ˆé8L¼ÊÉ„¨÷ +yJB³¥y­­ašÛSRÓÎ5÷ä•1µ3[51KÑq>\ìƒi‹S6¤Þ˜ë2juÓ¨)3`6Ä÷Øj ¾+CëRBÉ&f¿tJ%$Ëe¶ôµwiª¥ªÑ¥æš0âof¯:S×BoÏî±àJŠ9&DÆ'.¬êä=L‰ž¹”ø\ š"ÌJY™¤Õ|¦DDE°J­C©,÷iï#Rå/6ýk7Èüä÷èÍ~¥C]}ŒßQ³GºOÊCdhW«&œ FÒ4nȃ6¯‹¨ÕÛ™kuÒ…)Vè^V­Gâm۞ĈU{›ÕU5|¥UQ¿Gž «]´º_eÚgvç'Sªð¼#<)2ŽfÀ”©ê7*ë¦A§©ØËSRL}vCê6íe]¤’RžU‘Ë+i×Rø1ŽN&Û·ÌqäÔÍÊ^¹íS¿9Þä¶þ4“¬©UgY:<ƒT$FšìTœå-å“&‹¬Œ¶mËÎFDC¯Ü«Z–šRkc»SôäÞéО¶çjš¤ÚPgÕ0ô¼P…R6moUªsQ*S’2|Xñ]aÝRŒÐ•œQ6”‘‘ØÈÂÞ§Eûº¨O¶bLÙRª»{¯‘ ý´DõqU|P‘>3i®ÑäËœÙWeT©¨™ie ˜q’mƒiÕYF•%$J6Ȍȭ֕v¦µ]˜™Ö¢©ÛÄçSšSÛæÔåzè2¦ÓÇX»᪄·ãÒ* UŸy Jr)Ì—,êc©Æ”…Ø’·È•¨Ñs¹$Èh½Õpô*g¶òSؼM¦(•¦ò]ߦ±Œ'èÁʬ‰3Ñb:l ªšù9&Ÿ‰FÂÔ¶œN°ÈÓ—YµKJ,fdguš—EZ[³©·æx8óbf§×N¥]Ù©µš кƒ)RnF[Gc.C-ƒ¥>þŽ½''ï*ø¬ÀØ„åƧi#µX¨"£GÆÉbŠ{ÄÌv& Ke,çÕ›kKŠ%%I>]–ì\*u´üκ”íV5,¨žÛ©É÷Š¢—§JþKŒÕzŒ‚xæ¿fZ–Ë÷lµ-(ÊF¥ò¬‹Á±†ÞöˆZí¡ù½Æ½Zt˜÷ÕãªÎWŸÝøh?,DŠÞ¤i" 56éÍ¢‡KQbW%U‰%éF‚–‡ä6“k\´Ìy9²’On~ëørÍaªZ•>°jÞ‡÷Jßž×Ðd"ËkA²(x•©Ó§pZ­:SRe½'_:K\*Š7T¢Î·Ú6ÊÖ"ÖRD[m[¥ºi×KI}Ù9]ïp²J¤›ÔÓoî­CîF=Äñ`Vš‰>KµJ^Ž™–jyåºiœ¹Ë7Ÿ<æ¯ •c2<©I!X-ÕROG6§f)¿¤Y+Ζõ»G‰¤}?EÄyq=.ŸTjžÃ ª³-veQõÌaô¼ÄÒuÖѪKămI%åpŽä‹ŒW4^‚éq¦!¶ÔíKG‰›8ªìü%Ro9IhØÞ“…«âŠæ ~¯TYyô„–)T"B҈ʋ"3*qŒª²¶Ýµ)63ÈFg³fU)»³…U*§$ªi¯5ÚSí1~èÆšZó·Jiùï6ŽCTñ,ê†;¨"såáúìZ}:tŠÔ¨ç=¢ê‘Àeh|¥gQ«2œ5­—f´TÜU­Ö×ߢìy¼Mª¥/s• ð~ê|þeÁbªâ½$ÔçU' ÖW#\5ÔÆ„ÚéÑÅ!¬Ù3¨Îë%L®DGs“7Ù»“…(“_“*E¯Ée1ßuÈÍ©o2›[pÍ7RJÅb;‘X#×ÌbMjR‰U™¡6L¸ùu2ŒÛŽ·ó'*Ô“2Ê{KnÃÚV×:óÖ'Ônž¡Ód”òvŸ¨&a)” JS‰ë—דàÙWÙ³bêˆõŸTfóÒ~­Ò¡3(æ· ”J6QßKI'M„©-g"¾D™™’ob=¶ôšú ø|ÎO~Œ×êT5×ØÍõØlhq +ÃÔ¥D›é‘Ž$ÓyR£›6_7öºn£.UšþÛ1oÆ)¨z2Õ™²©§:Í„¼‡gª"äÐ <¨%ˆæä6—ªe>å´]'•âIl.`i7/XU5‚7Ñ0í* ¸ÔÈÌ¡1Š%¶’(Äfd͈¾ÆFgà{§³hËSƒ×§n£ Æ(ý™£Óã¹Ö °ÛÚTxËKHJ˜eD’6Û2+¡•7JlGbÙ°€:N¢P_‘&™G‡ ùÖ¹3m-Â5f2R’3,Ç{r_o(ÂQ‚ Î,ÜÖh4ÌDÁEªÓ£Îe*%“rYC¨%—"ˆ–GcÛÊ[A¤ô™M Ý +šÊ 6Ý:2O38iK$Æ3I Í’"³~ š|l3.CzdÆÃu6Z“ijdfä6•¶é!Ô%i'Q) +"QfJˆ'ÊFW-¡´Gpý-æ¥0å62Ú–÷ Ú˜A¡çî•k\I•”»¥'˜îwIöÄ-Æo3åÌ;Jz\Šƒ”È«—%žûêaëÌÚÚ·eu"Û2ËâXíÓ´KÜm àÚ2$Š|:"I27Øj+HiÓ+[: $JµŠ×#µ¶ þi‰9:& m’Q„ĶIÆÝ&¤4—PN4¢Z•de™*"4Ÿ)Ò s¶{s ,ðì?EÓ¢9!s¥H[<oi7ÎcV­J2¹¢æg”Î×;Ø#ˆžFÂôl8‡›¤Òb@KÆFêcGm’]ˆÈ³dI^ÄgkòÄaq“F0­#TÖ£ÃiªjÔä"3iLE¨”F¦“fÌÉFFi±™óŒÇ ;‰XV‹: ÍVMÓÙË«”äfÖú2{›8i5[¶ìñX‡(7*Eºd6¸fH'†(×&ͤµëRI§,^šH’fwØD\„1uDzí3yÌŸp F¥Æb(íÆ m–YB[m´$¬”¡)"$¤‹ˆ¬C-š› ’0'ØeþöŸÔˆœ«Q"Äï‚)ØÿпÀ\ýwÌý ¾Ù{äkVƒ! &D1ö-Çá©e˜Å*B)µ³èÏ“UwÌgcÚ㆖Ò_½ÚØù×iu7Õ¦|n;è¢cmIx³¦S4§^ +Õ1‹•ˆU–¥A¨.B¢=PA*:d4ìvO*”¢A­ +VU\¬w]zÛKZ”¦8`iƒ¦òÕ‹Î4Oð-*byhÅ• +v‰2Ÿ‡j`¼‚©­¹Ï¦R·\iµG6¯”j2µÊãŸ9ßz1óÂmO§75]ZpóKIúLÍA­ÃÄ´Ê}^žî¶$øìÊav¶fžA-&eâ;Òñí]7\ir¤ÆXOJç‰1Î*ÁnÒ¸/,½q,¦Ù-)ò$e,†Ö¹½—UÉWØ9X×}7“k²ZèëkMØÚ½Ž€D{’"é6\6o'¹¸y¥ +©¯yQÉDz³Õ'X•…r+øÇ>yܾ—ÂI,Óˆ|Mù¥~ìüÛÊ•ÀìøÏNqð¶ŽǬRÕ5é-5¨¦“Ä…*IæÖ²§2µY̬¿h{KjîDc1¹©Æ¶6wÛOó¼Í4YåW§ÓçdÕ”¸ìHË{äÖ¶•Úþ;^ítÝpq¥Ê“=¦^ LŸ¬¥bÕ”ÐQH)7¦<¢S +K™>Ääs×çËd ”\©©ªò§:œyš÷ÓæXíÃ3­TCy%>tôoxo?Iúc*e;pŠJŽ·J©µIj–‡®sdK4œ%2â’Wmô+9«/€IpŽù r”iu]ŒšÓÃ0tCs¡)Ÿƒ‡œÈ8kuêÌãpi´™\KY³¤ÉhK­:…X®‡¢2ÙÊJ/Ú–š•›]«Õ>ÓF¡ÃÉ=þ­¬dÀr?;Ïý ëB½(Ýhg64 ò?9=ú3_©P×_c7ÔlFÆ€HÀŸa—ûÚR"r­D‹¾§`?ÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D#î.!X˲–ã•œ&< »z3¯ëOö‘ëÛU¼e·Ä8Ú)¢Ò•¥ªZ["ª{ß­UEZ“iï¥÷&uxgWÆØoá0½Z Às»U—RˆQŽÕ/Të‰lÔ³S®-mIM¬f£2"ÛÝÕzÑT´*¯cæp¸œnÅ—¥¨ñgÕ«[ÂÍi’̨֬Uk•‰õ7)„ê&6„4â¥-iB{šŒîdDv#; ÙÜZ}ÒÇF5Tçs;ÊV—ÞrðÓ…+ÀʸCFîaì=„éW* ¹E§Ãˆâ`ÉKQß[(NcZTÚDfF\¥à‰5Åé[<Ø)n!í{Ì+‰ð¦(£Ô1N,¡Q^‘V‰å=´ØŽD…2<–› 8IpïÑ‹M R–‰v‰ùªªSìi2C©K× +‡ÛJr»SƒŒªh²³E¤JU>šü”;JÂa8”‘ð·a9šJ‘·i‘™©_(èéÒ–Žv†¾*¸½ª­oõ¹ó»î8›œ]£¬C*F=¡Ä¥:ª$(x‚§E4ÙI—>¹ÑÁÛ+Ü…©óÛo³&ÕVnãXÍ)Ò¶§Rª{ôV¯RðŦö4£¿EQ0»ª…†Þ~¥Rˆì8Zr2Üu-¦’J'[6Ôj;ÜŽÊ.A2Óß··°‹G½KgiÒæà¥=¥Úf&âÅvðì–W*ßZ)¥%(jå{kI…8”ª×$•í°r³¦*©æ©ß8ðKÖ·4Ò²otaųî½QPÒ¦ÄçLSãԚrVÝZ$k(ÙŠö7‡&Ôdf’R¬eq­ ªÛÔé[ïcÛm:×y'%„rñÖg²«ÆB(´ó2÷*•‡\t¾T%ä$þ=ž!µž†ó¯º”Ÿã‹²žú›^»L¸64B'çyÿ¡£ýhCW¥­ ãÆÆ€¾Gç'¿Fkõ*ëìfúˆØÐÉì2ÿ{OêDNU¨‘bwÁìÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D6RiÑf»CñÐ㱧#­Eá4µ$УIø®“2?m õîÀ nÙA§E¦6¶¢GC([Ž<²Bm™ÇTjZÏJ3¹Ÿ(,²2ó7€`9Ÿçþ†õ¡ ^”n´3ùœžý¯Ô¨k¯±›ê6#c@$`O°Ëýí?©9V¢E‰ßS°ÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎÃ/÷´þ¤DåZ‰'|NÀÿÔ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎÃ/÷´þ¤DåZ‰'|NÀÿÕ¿ÀWmOB”„$Ô¥6¢""¹™Øofá£h0ùQjüä÷`Ň9Nd[Œ×‰jIîÁŒs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.3{‘9,LIÄtHA$´Éd{®Ò™X›*\.%¨u'»6ç)ÌÖãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9Ês¼E"qDu ÜÆëfEïbJ®|kÎS:s3qÁ³âZ‡R{°cnrœÌ\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆ8–¡Ôžìs”æ.1ĵ¤÷`Ãœ§1qŽ%¨u'»å9‹Œq-C©=Ø0ç)Ì\c‰jIîÁ‡9NbãKPêOv 9ÊsâZ‡R{°aÎS˜¸ÇÔ:“݃rœÅÆwÜ ømJ'Ù[F¥¤È–V¹XFå'v²PwAêÿÖ¿Àÿ׿ÀÿпÀΡPJŒüÉ¡ˆì Öë®T!%ÊfgÈD6¦—S…¤ÅU$¥Û—Ÿó,¦úS{ÄžƒkÕ{™Ç¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uîc¥Yæ·nL ð²›éMïƒkÕ{˜éVy­ãÛ“|,¦úS{àÚõ^æ:UžkxöäÀß )¾”Þðè6½W¹Ž•gšÞ=¹07ÂÊo¥7¼: ¯Uî*Ï5¼{r`o…”ßJoxt^«ÜÇJ³Íoܘáe7Ò›Þת÷1Ò¬ó[Ç·&øYMô¦÷‡Aµê½Ìt«<ÖñíɾS})½áÐmz¯s*Ï5¼{r`o…”ßJoxt^«ÜÇJ³Íoܘáe7Ò›Þת÷1Ò¬ó[Ç·&øYMô¦÷‡Aµê½Ìt«<ÖñíɾS})½áÐmz¯s*Ï5¼{r`o…”ßJoxt^«ÜÇJ³Íoܘáe7Ò›Þת÷1Ò¬ó[Ç·&øYMô¦÷‡Aµê½Ìt«<ÖñíɾS})½áÐmz¯s*Ï5¼{r`o…”ßJoxt^«ÜÇJ³Íoܘáe7Ò›Þת÷1Ò¬ó[Ç·&øYMô¦÷‡Aµê½Ìt«<ÖñíɾS})½áÐmz¯s*Ï5¼{r`o…”ßJoxt^«ÜÇJ³Íoܘáe7Ò›Þת÷1Ò¬ó[Ç·&øYMô¦÷‡Aµê½Ìt«<ÖñíɾS})½áÐmz¯s*Ï5¼{r`o…”ßJoxt^«ÜÇJ³Íoܘáe7Ò›Þת÷1Ò¬ó[Ç·&øYMô¦÷‡Aµê½Ìt«<ÖñíɾS})½áÐmz¯s*Ï5¼{r`o…”ßJoxt^«ÜÇJ³Íoܘáe7Ò›Þת÷1Ò¬ó[ÎÓ‡±u!ç(ÕHóÐʉ.*;©p¥ÈŒÓÈfC­…VxTšó(´¦¿zäìC‘¸ÿÑ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™KIIX¶ûÆ|º5Ê\Ä0Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ )s”¹ˆÊ\Äe.b2—1K˜€ ¥Ì@Ræ ‡}„EHÅ6ë‘ÿÖ&>kÙÿ}O™÷—^Åh~uÜMñóå°ÿÒ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Kiä!÷lùtfü £ÚmW Ôq<Øu±Æšˆ‡O¥­y¦ÍÎC¦hqY|DD›_”ÄSÊ]ÓBiJnõZ<Ú±%XXª©u9q->sôØ{Ôñ‹x}i> BTXð¤¥ÄÄv9»±Ä¾…¶f³BŽ×,·µüaU¥ª²¿‚i6õ¦–ˆÄÅÛ;ñ‹N64Û‡' Œ …ë8áÜ9OP‹”ºŠª¿%·”¶ ’KlÒÚIËo +ûL‡*yU¢±çj‡)BJ1}¸k°§æé8¶õ%&• …0þ/‹H—¡6—YE5êSÌÊm—ÌÜ¥™ÓSj%šL̬D\ƒ{;{JèoU.¥V°ËKK:)©:¨2D–g<ÛÄüwÔm¡ähFU‹jNåcåé·´¢º)´w1 ¨iLi$;*U\™§u©ƒºiF4‡š‹…qÂLd•M§¡ÇZ%™¨µà ÏÂ,ߦC…‡,®ÑãU+Ý5 bñó+äôÒ“ŠœÒžèÃ7kñérdªÚÛmV=ŠIßâøô³vªµMpÓZRˆyboZ³t·L¦ž½hï8ûD´Ì1…¨B}õÖ)Ü_ÇL8¢6ÚãMÆò$ˆŒ²’«™ˆö<¶ª­n¸ºÝJ—®iÒu«“%g? *[óU'=\Ð"4< 6Ÿ&C‰¨®”ŠÃjY˜MFÚ§ðJÉQ¥iñØì4³åõ:ë¥Æ®ùéRÓÞ+äË›¦¥§üÍÄïG +z>ÂôX˜þ£Rbt¶°ýaºtf˜”†V¶ÜZÐJZ”ڈ̲—ˆ†W*´©Y¥ ×Ko ГÌÝòj)uÌÅ F9¸9Z.†è¬M„Ù*Z¨˜Š›.{IZR˜\vÖjiKJrªËO)$®[>1­·.®ÎÎÒR½DyœÄ81gÉ©®ª"b¶ÖÕ'Z…0}a¼A\‰Q’íZdØËà’Ûe,¢;™sVÒ³¼W+™Õ[ZUjìèiE)â§OiÍYÑM›®©~é¬j“ëÚ~r‹5„ËyÂÕÚkcJ»UOR[ÞmkB¸^mbn%]—åÑš¨ñ±¼…ÂeÅ0n™8“hˆ‘r·»¾ÒõòûJiªÓÜÅ55v1xÆdº9- ÓN>é':‘„qžƒ‡°î ªÆqÅ¿X-Ù9”FÞf^Õ§VV+—9˜°±·uZWKÑMØÏ$[K%M +­mÔ¶`àȔќÁØ;‡ku¹U¦6ëtlj)a,/*ME©sÝÇÊF#[rº•«¡:iI'î–™íG[+ +]ö›rÖ€uí`:&ªb Uâ™O¡ÒÍ´):Ä”†Ý“!,2ÒÖi±©73W‚\œ„:òŽQ]R¨‡UX,žߘÒÎÊšªs)R¥ç‘ºÃ!jf)Å´*‰È}TäºÜ8f‚•?V»! „dWI’Œò™Û‡;N_TÚ/„ÒÇE9·Jy"ç]KÚòB“ðž#ÅXN U8…QumT©óS–LE$ŒÓ‘Óm)Q.Û<•¶òìÙÛÚSEu;®ÓRÐû$æìèn”¥6᧫2q:FÂÔ¼8Ãȉ„«´Å¢Q²‰•‰QJMEd‘2ª"¹x\œã<’Þ«Hnª\©„±Ñç7å64Ñ)*°q/FŸ1Æ`K«Rñ&"®.AÓè1v")(zCòW‘´Ö•V¹ŒÇNSoUšh‰©Æ:X¶r°²UK«E*\iØŽí…´}‚ñz‘•P–qfSgÊ• ŤåB‘³RP§I²JÒ«\¬W·-„~QÊmlhªª’÷1SMå:ŽövµÒ”û¦åkQ´ú èû{ÂI´zÅJMr\¨ÎqsÉJX&]&Ò¬¦ÊïrUö™rÚÓ”WÎUBt¤©OŸiΛ*Ušo°ÙØ|½¢z~<•Q¨?6†ÃH(«mÊ~I‘6Ù¬ÉINKÙfD{Ke†”òꪦˆQUméÐ’Òü•rJUu&ð¥NÜuám`¼g[‚Å*¡,âȤϙ"#Ž$ä“7Kjp›$­*å+íÊ3Ê9M­•N¤¦–¡Æ 7”šØØÙÚWJSî¦Vµ ë1œ,w‹)JŠLijtœ6TIsÀik,¦dvÚ’ñ |²ÙÙYÕZÒ‘Â…]j—­ÁÛ+4z¨QÝ{VaG9èjG½™™ šV”ei³%ØóÜínAÆÆÒ«DÕú_¹ø+õ=,íkB£¯¯CÙ ëØÏFS0õ[ÅŒãk‰@y9Öë¨Cªeó-I¡µgc,Ùy9FÜ›•ªè¥Õ¦¬0XJÓæ1oÉîÖÒДö=. ‡}¿®ŒSý\þ±1ó>Ïûê|ϼºö+Có®âo +ØÿÓ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Kiä!÷lùte¼\Ã)kjEJ£A­5(j«OJÝÖG4ØØ[iu»U´mù DåVêM%U1.4ç0ÎöUR“™OS]Çb­é>‘WÒM¡‡Zƒèóªm%"O÷o­;g_1!ÑÊÃ’ÕET=5^…8)P”-íÕuÒÖ«²õ¸rÙ¼¦iJ‹@‘¤Z¼x¥2uzBڄĸæ¨ç çÍ×uÄJ-ª+[ø‡7Ȫª‹;7‚¦/4ñ”°ŽÓ¯J¥W]kZ…†zdÛWtGÄÍà ÏÂD… +Q7)˜l#ðÞK­jˆÔ{ScðoÊf:ÙrJ¬ê®ª–·èƒ¥º®„š†ž¥„3Iôº^’êø©L¾õ2 õA*$$’úX˜ƒFrJŽÙ“{ØÏo%Æ‘Ôù:²ÐÒ[T§&딪m¹ÅŠŸDYø« P0§±z;²ë •Vb£-ÉQÊ5,Re)JÖ£RË•W"/éM•¥vŠºá]¥¥\½z tSMJ™n¦´¨ˆ;{zJ˜~#n“PªÊT„ìh¸~[9¢ÃuÒ"%ë\uw&Žæ“JIGãê䖕ݼ©•RwÓŤòIéåRÛ¦a¯{ªc90ö‹ñ™h÷Ó+‹`ßj9¸‡ÛM‰KeÔ)µ’o²öUÊþ2ù]‡=gU¯¤…aiÍÔªZ™Ü§âÌ5†p¾# a™rç»_‘O½**c&Ä1ês[Ñ̈²PÑ‘9©Ù¶£Mö¦äd^;XvåvÖÍа˜Þœœl-9ºÕYxAÛ©Ó´sDE.]DΨԹu'¡ê\f62ŒÓdâóÌ‹1‹”qjÞ§.RÒIÌÔõèÐŽ¯šJ¹k´-}§l“§*^'‘âVh±"Á¯F„J‰\1O6¬ÑúfJËb½ˆ¬O±µQE[½KN÷?v$>Zª­ÊÁ¦¦1ˆÀÝQ4×E§b<7"Co½InƒO¦TÚ6¼"‘FêBoájÜ$šOaØÌmiÈ*ªšãëuRûâ¤çO)IÑ’¦í[äàazì-!S§Ô%BEz²ÕB+È„o™4ÚÖ»-´ØÎå²ã+“ZSÍ´“¹KMLiIUÊ(©×3îÚŒ2rs4=/áº&&Áêa2ø—S%ÁKî4\"C²^g5IQ’HÖ¢±f3"Ú4¶äV––v“«Œ'”F&,ùE4UDLPÛo^3¨êÍb<#ˆ0n V*Ó ½J›:C¤ÄN·!ÌÄ”¨ÜAåñŸŒþ!ÝÙZQjí)IÍ)iŒWc4V”Ufèn=Óz'QÙ_Ómêã5MÖMªF‡K§C–Öµ‚‚Ñ%.›æ•Õ¥%t‘þ˜â½ªí47‚©ÕSOÒ ëÒ©¼ê][´§ÆN¯ˆt—GÅð,— ·£B™«}˜qÍx^K¨Õ‘¨ö¦ÇàßÆc½%ªÎºšrªZÞ7´-m•t% 4ÜB¿¢é6‹ JÓñƒ«}4ÇßšâT–®ñ%öTÚO%ùHÏœs«’Tù75®;4ÉÓ¤SÏsš¦xûÈ¥IŽÉÂÅõ:Ó„êŒÙÆÒTGu%K}Í·±Xˆ¶xö ‡•Šê”wérj-ÈpÜQ>Ûî·|·k&Çc½ŒÌ†•òzù×iuU4Ò¡½ iÔÍ赦åÉkÝ7)jÞqÑt‘EÂ]ú-.35ÉSjŽË˜åZ¥4ÑZ:²ë.n_Â;¨ìf|£j¹-v•ªª÷*ša]xËÓ«D¦Þš)i{§SZV¥ôœž!Ò ÆåÖª ̇&}&3nˆ…%tú£> ºÒ Äk¤‘-Ⱦ1¥—%µ²¥ÓKM*ÛIë¥éO ×oEm:—Á‡šÐÑÌ'LT6*ú>Só&ÕS‡Ÿ}ÙuyQÒ™O!Ò2KIFe(Ò©ff5\Š¨­¤©½L*SÂs”/r¥¸ªe­YÇH*5Y¹Rac¥QÇe)äB™ÆÙBV¥™)o¬ˆÐGb²Jÿ‘É,뢦• +MN1¯)´¦¶Ú©âæ# >sñÑþ,¤Ói8Ÿ ×û0«mÇ2•²yqߌ³Zmš“™'{ŒŒoʬ*©Ó]4·ƒÁ4Ô5'; ULª´T£jÖ™Þ°¦<Á8.»Fr›AÅ…M¨F—PT|²&ɔ٥*6‰jÊ„_*vÞÜ¢7)äÖ¶ÔVœ{¨Šgv’9=½•tµ©¶ÜbçaÃÇÒÛ´L3‚)tZœØ’©S&?=,©M¶ën¼•¡;Îx$«‘•ŠÿíÐÕVµUZM:iJqѤãÒ³TÒÚw›ð9ÉúGÂu +Ž)™‰BÄÊ‹!‡ØŠFäY,YW63$*UîDŒG£‘Ú*(zj¡½x4õIÞ®UC®¨÷µÒ“Ãó5ÁØó`úõ,á3%ãR§C—Q8Ö‘2L¢±8l“‡d£‘%šöårŽMkkEIÄÔÔ)Á$óf–6ÔY×C_eÆ.SŒUðnŽqU·½6 Ìwá$ªn¡M¥l­ R Z¼Ç™ErÙbÚ:òŠ-m¬ê¡¤¥aî§_˜ÒÍÑgR©6áåìÑqF“Œs: NNB*£+ŽÄf.k[™Ü}¹XˆˆŒù ˜mdê³Mº…ðqmå #[X¯Srô5 ²qØ÷бÕsן‘)§ÞyIi $Ûu2oëÆ{Qõ´‘•¼g`ä–5ÙYÓNïc¢qÀÛ”ÚSi[y$—f&H€‡}¿®ŒSý\þ±1ó>Ïûê|ϼºö+Có®âo +ØÿÔ¿À6ÓÏâ²"þ[¥r~ðbW!ûvŸŒŽ«í·æe/¥—,_Z_a[‡Þ,‘®¥Î‰}…n5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ K‡ûI}…n5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€@Ô¹Ñ/°­À j\è—ØVà5.tKì+p—:%ö¸ Kû +ܥΉ}…nRçD¾Â·©s¢_a[€AaA:TŠN)%$Ò|2?)~Ò>qó>Ïûê|ϼ»ö+Có¢nŠÔÿÕ¿ÀZ<°%™r“jýðÞÏß#Z´X¤»ow÷‹p±t¢,Žï—÷‹p]F$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$ßFyjbbŒîiB &dW#5‘lØ5klžÇ„»åýâÜ6ºdp—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚êoPúøª¿„N¶Dv+‘UräÆ=ŒÚp6\%ß/ïáµÔk#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP“~ëË(Q–FY”ãÄgb¹‘m⤥ù‘»xï—÷‹pÚê4‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨Há.ùx·Ô$p—|¿¼[‚ê8K¾_Þ-Áu %ß/ïຄŽï—÷‹p]BG wËûŸ.¡#„»åýâÜP‘Â]òþñn ¨I‘0CŠq©f£½–Ÿßœ¥Dì™ÞDc°ÿÖ¿À\ýwÌý ¾Ù{äkVƒ! &D1¥oHÎSq˜jŸ†§Õæ5šƒªŒìF›m—[H#9/¶f£RaؼcUTÌ-=©µÜm zg„xÖa¹,’P_K)~DWßdÝŒ…_k¦ÚÔ’-‡á\Òv;Ã8F±'&Û¨y qµ¥hY’¤™TFW##-†F\‡ãŒ4U ;)ÈŸRÛ,ËŒ—Û7Ò\êl•œ‹ã2‰– 1V*KЙÙ,•Ýa·Û[Í—ö›iQ©?¦D Èj ·²:FgÆð³6Ù¼´ð¶n–ˆìkQg¹$•G³ã”fë8ŠÆ9¤ÑUB7$¡Æ+W‰-:Ò£¤ÐÃ’ ks9$‘•³+‘žÛ|c3Œlo±Cô˜Œ'j[ÜñV)çŒ +¡Û7 á ê2Þ×ÖæÉkì½ùvÃHJN·‰t‡@ TçT˜à“¥Æ†ÃÈ}£mnHp›I’Íd“JLî³#<¤Ff5ª´šO[…¹¿A²¥´ÞKÒ—¤ìnV©¬¾ÄUÔb¥÷È”Ë*Ù8êOÛA«2ˆüFDwkƒ]¦×)‘^DgêQZ}k&ÒÓ’ZCŠY‘$¥šŒŒŽÖ½Œ¹ÆœPuøþ‰RÄ•L(ÄÖΧNb4‡šÖ7µ25–JH•˜ÔYšË/‚F“>P¥Þ˜ÔýjQ¬å+XŽ5úLG§$ÔäðhÌ·lê4¡N8³Ìed6„š”|Ö"#3"OÎxÂrŽ&ú5bŸ5÷¢Æ¨Fyö>ÊËO¶·ñxhJIÛÎD L5äšý)Y­U†yrf´¦ŽÚËä¿…³5/•cµÂ}xˆõà|7ˆèïcn¯ e)JD|²ÙV¹I;[²ü3#Ød›™& ÝH«@‡!ˆ’'GfCÿaeÇÛC®ø¼)D¥~‘N¡_Æxâ“©µ +JKw‡é‡.´Ržm”š•ªmkI¨öÅñ+­R§ÍŤoE›©ÇŸÄÝÐ1D\@íF;M¸ËðVÊ]iÒ"VGÚKÍ8œ¦dhZU°ùÉDdFCxàÚí^²iéIï; B'çyÿ¡£ýhCW¥­ ãÆƆ6¡iJ“_Æ8‡4̆ªTVãºâÝAòáêJ3Q¶N#XFDe˜iÆ´Vª˜Ôãéój:WC¦6¯Ué9\7©Š œ„À…,ÝJ9Ö˜2Sn­“#5/-ÍH;(îAEjªUY¤×j“PÓtäÚÜàìrëúz쪄hèR Ä­é ¶• ­u­DF¥´¶m.r<4š¥&õ—Û’ÚeÄ:Û„JBТR“ä4©&dd~# 0m&U Sœa©sãÇqóÊÊ}¶Ôê¹,‚ZˆÔ\6bUZ Ø‹&tv|ìË.¾Ûn:|–B¢R¿HŒ6Ö|I­Óa¼˜ò*QYyJJÓ²C†µ•Ò’J”Ff¢ÚEkŸˆ'Pgˆ±Í'Qk•Ã’‰¬QÙuémÃu§N¬®h±.É_1(Èi]¢¦›Ú°ïI½nª®ú蓦V V¥BšÄƒA'Z–ŸmÅ4j+’\$(òŸÄv9£dö+£5¡=5XŽÇ€ÚÜ’¶¥2´´H#3%™.É3µˆ”esØ9ÕZ¦›Úé¡·wYÆaý áüIA¦âHõHÌÓê 6ëNHÓd“q$¢mfkÊ—ÂEîF7«U‰ØeV©ÐK²ª1˜mH7·d6ÚT‚µÔJRˆ;KilÚ\ä !):ýsH=2 +mE„.¸êÙ†­{D…diNæ5ËÀ2NRQ\FIå1‰÷WuÃ{£Ç^Õ)o;˜Éƒ@o‘ùÉïÑšýJ†ºû¾£b641-gKЩV¸-§S‡CR›ªÎ„ÓKb"ЂqÄ-Ô8òšA‘¸M%fžMªØ4çN©‰Õ†žÍ§NmÌkËÏ æ`é?ΪH¦æ™ÕB§OnKï4ÔwÚ¨k ’iKY”dÙ™•‹”¹|[ëkZivÄšÆ æ§Œ¾,ÇÐðk¹3!ÈqšM-UWœkVd¶’µ ÛA)dfçƒ}¤H±—…{Öª¢v5ÄÍ4^i-sÀä«xÆ—‡©ÎTfÊm²L7f¢:žmm¦Õ%¤-DkUŠÖ-—ñ…µJÎgVBÆžr#\½¦ÝnŸ¢ÂT–¦GfKiY(’ò i%•Èm”tª˜q‘¥.Tˆ5Š}QO"B4¥2y]KtÛ>e’f“ùl5Nq2ÔUš}Hž8uÒIƒ2tÙÛ¤Ù—‰f…^O‚p‘„:Å>¤Ë’bT#Ha»’ÝfCn¶Œ¥s̤(Ȭ[Nç°ƒhF±*Ð*Õ.$øò#§5ßeöÜh²íUÖ…JÞ=»¤ÂäßK5ÝeöÝm&’¹æZi+-Ï`Ìë1Ž»KÇ”šÕrEÉ”ã0¨†mØÊi×–Á%+mjºÉH;•¬Em£+ÞQÅ7èa 9á'gz£1H7¥²ÙGA8ù­Ô$™A‘™)Ë™dIØìj±˜k:ÂRpØ‹EÃО˜i9km,¸Q£¸Ö½mºêZ%¤œZ !¯šö2#"¹Ø/LmKÍ&iSŽÆ÷J±¦9GV-k„ð—ðËL=5†iN©/$•õ¤ç#Q¦äK½²žÃÚ4ª´”íKµºVïuÞfšq²x7è2¬™ºPçG’l«+¤ÃÈtÛW’¼Š<§ñŒnjiP«À£¡OŸ"¬©T‡Ûe*W1ŠIüA"—X§Àɪ˜Î’Ru²o2LÉ$iÌ¢¹™ËeÌ‹”Â5?3¯RÒ÷:¤BzΨå4NY»ç<¹¯àØólðvÞÃŒÃ?F*Ð%E9ÌOŽìT’Œä6ûkd‰>èÍĨӳǷgŒe¸ÄÄj Ö)ò"öªœˆ’RŽJ$6¦“Êfá(ÑbñíØ Æ!#„¡c:v$©V)°×10”ãí­0éLmN#T´)Y¬I2W&ÞK‚s;pOÒŽÕ;R_û.>ÚwÅà!J%+ôˆÃ\Õ'_Æ8â“éÓê -š¡ÆvYÅC­§[h®­SKZMG÷¾1ÎÒÑP¥ìâÒô›Ñfêqçà¤ìÅ)½Bd­dÛf‚pÔ³$’Rešê3;‹”ïbjQ¤çK¼MEm¸ºÌ¡…¥·Ts$¶µ{”¬ÍvIŸˆŽÆcY3ÄŒ@Äj”zzÛVWa¿4åÛ(èC*BL”f²UÌ—˜Œ’iÊGuÂ<ç²;àe´ßB«ÓêN:Ì9ñ¤¸Ö]b}·V‚W&d¡Feíp‘k4ùÊ’ˆÕϪ1™>–¤6á²e{ë *3G'ÛXbTHG饠nIŒH6òç&^C™3–dæÈgk–Ò¿)m-ƒ Þ€Éì2ÿ{OêDNU¨‘bwÁìÿ׿À\ýwÌý ¾Ù{äkVƒ! &D"n;]6”¦»_ĵ + +ÃpËЦ¿ ŸYLjB–ÒL–i##±ò^þ1Ê–½Ü¸Æu¨éTû˜Zªï¤ëš^H£=†Ú—W‡N¥!üI!µ8§j˜xßI”#tÒFóë[kt‹ÝjÐâvkHSW¯5îUÛØ`Þš\lÒö`f™»u<}Ôf³Çn…·D¦‰§:¡§OÄ-7C[L­ò¦´yÛ4]&Oš‰h#¹‰;²ŽµSRn^8ïóùÎI¦”ßF|LÌ<1DFuìe¥SzK©Ž¶ß‡-J’j›%óJIl8•$“u).D“Ëàð¥M S¥Pי݆žÖüNõáSoC©v©Â<ËÀàôy"›ÑM&%=mâºEEç+îpE¶ó(ÔÈLåÊxÐD¤ÉqH4©DášTžM›YÄÒÖ…COäÂOmïK5µ˜«mi¯•2¶]ð5Á¸.šªN†õ £pëõ‡d©q|3Ί‚îñšo”Ô”¼’vl ²¥'Gí×´ñ1iSwÿo?fÈéðiáâ¨RÖtÈZG¯>¶“Je† ™JKªm)2Ô¥J%ˆÓã°Ó“4®:µSkØï4ùB—Tkv}¸S&ŽÈ5Z‹t¶ Ô1³i²¥E¨PÜ“³¸+Y m.JTHÎDѸ­a챟JpT§†6‘+Bzn1‘¥X·áBq­Î;”I±¥ðob˜r³JbaOq×i‡)„ãñ9 ŒMÙ (³*é+n£å1£P¬öWTì÷úrÒ›—\k¢˜ÚýÌ÷f™*Qæ£H%*)ÒÑS£¾Ê¦?.}J4~´LnB‰IÌE©IdÈ«™)FCk7&ð‹LVX¥-ú­B¥)¬èÁêÐðHï8ïèÀÓõ@éh~CÎA\gÎ6wTMÁŒ¶ÔÊ&¯[HÑȯŒ‡ +“T8ÓÎöûê”9­Oêâ5+H:Wļ!„´ýB…B\WÅó`åpƒC™ljNdçÛ}¥q65¥ÖO²#¼VŠÆ»eÆ(wƒi ¼ãJwøBÄ ´”¹iTe©3äZ™#"ý1ɶ¯ë÷ oÝcè6‰»ññËÞ¸ô‘ÛG£=ŠôO&3MBBbÖ£I§Å¦>ÊiÏÈŽKLirß#uçÔ´ªúÃ"5$ÖE´Œù­qú„õBÁ,;•èÇ®¶¿„¤äcàªtmhÚ3tD¥â*Ó‘Á®ã§Ã–¥)ÿ1‘ilJvl!Ú”•VkRTÿ]?IÉÔâÑí«úðÜbÌ) ¸šqyŠ3iuš#ÔÜR% ÒÌ' LY;,»¨Íð®g¶ã(TþÞþ%O‹3[ÅþݾêŽ3HôYëšK§Õª/´ýZlR¢±Endé‘ɆÉÀ–áÙ£eÔ¬Õ´‰£ºÏ–ãJiÆ5óå­Cœ¡w£iÂu\Kƒ•Éó¤øð¢SôßOÄ•Xª6Ë´s8«yù1‚ÊàÎ% ++2ê\7 *,§s2Û·KOzÒÓÎOeêaù£Àégï–Wí‡+Ï>&zÃHxô=mê„è­Éæá'!å4Gý¤Mæøìb^ºþ5;áÏ#|3‡»ÜúdÎ#SÈDüï?ô4­jô£u¡œxØЉ³0ýAÌC¤|GIŠ¥Õ¨ÚeF +L”’”ÁRc·.1ÛÍfIZäN%2èwS«*ë•.'Åy‰5+ÑNtÓuGƒØΗ£ItØtýWñ4E&Äõ䶩°Ü[QgÉŸ¬A¾Ñ¡FÚÜ 5'—2Kj¶¬i¸’«õ +…ž|¼ú mj¼Û§õ§àûÎgFøYk®h±º­%G¦1“ð˜—Ï‚ÃzS*†…¡Â2A“*,©VÔ¦Åb¶ÎöTèUiVI?=åÆ04´x8Ðí0ó]~“¾hŠ‡]sljE¬ ãÖ+éÊå5ˆØ*ŒZÛÊA!$[Sm–±ÁŠeÑN?j´««ãz×ñ?R1>‹Òܪ·T¦R˜¤2˜«uÉÌ¡—ühf„ž­ÓyŒ‰I4š’»Ø®\Ô;Ê1u¦–¸…ìsæ7ÇܹÁRç)—8mQç:Ž8…4­O­R_]Z³žÞmÆ&CˆD6ÞJWg”J7,²2W× íᤵR^ûœntuaù”36M'K~öâQ¾Wà}ã|+Âàé¹ê12ªE‡0ó:õ1¬qO5O3^¥yLÍDá\Í|ÖñØio¢¶¿Q'æXüú¾£ôÒO±M¥›M?£fÛ6âÇ4“ΦJÒ”ÙD§2‹•V1¿+^æÑ}ÚϽšò7î¬ÞÊû‘ÈÏ•Jzj¦á >äÆ©˜*§«,w¡›ËRX8°V¤¡ +ב¥Ó²nâRgc#Q]nåÚU¥:RÙ7ž8d´Ç˜ÖÁaB˜rÞØ»·7¼ãpb¡NÅn7ØÒ£LÁ2¡´Ô:áAK츕T„jyÆÒw=ašÓÌFfC[ZeZF3J±y`»Q›75ENvLifÓ Ui-P´QØÑa¥Š¨ë©Ë¦=11g!¸í= 1,–¸S›|'RgdšSs3mZ©¸×BŒ&sKv&´&–=g8Äi†ý÷D´¨õyznlH*u0êeÄ4›¶ó($:ÚÓ•µ‘l$ÚÅÈ„3d§ú…FÝi3ZÞŸÛÚ·bÑ®IѤŠŒ2f$,[‰5;ÍÚuSÛŽ›d<š$„›šmâÙé³ýºk·^| Úü?ŽŸf¶MsØ{yGC™ 7Èüä÷èÍ~¥C]}ŒßQ²IØÈÆÈЋ˜cÆÑ,lmG¬Æ}uEV«tTFyÅUšž½|rŽ¤!IQ™ž©e{¶euÑÆŠ¢…JRÔ¨Îjmvc¤ï]3[©èpçï)>Ü:u5úö‘fVðû)–î ¥ ÙSE! :¶¦©ÖY¢Ê4ªÄf’#;ÂØ9ÛÓZÆjšƒ{¦«9Ëñ#¦b’ßÂõÕ*;Ëuz)§4fm­KS¤ã¦h乯>ëâ-ô×ñ¬ý'.M¦5ˆ›üdÕ>ô¨Æ%§®Lš¾§¢„“Š·œ}†©«JÙŠ¤¡YV‰RÒF“#2QìÚ8ò¯{h–›íöa̱7ä®›Õu.Ùsè$TWäSôtíӞû8y³(M)M½!i„_YJŠÊJ–~ m#=›GnZð« ÓŸ£—$§SÃGapÓðÄóŠG"Œ V‚qh”·`%·S¨s2ó¾²’‚Y–µY’¢½ˆÔd9Z)¿­:Vi6œ-“è:Ùà©ÔÕZñ‰ZÙûÀb•6—ˆ©íÂv³O,&ÔWj”Zk”ú“L!ôå…">Æ‚3pò$–iBÒ¤YDG›Ouzs£¡âñš^¨ÀÅŸ¹j>íƒÒ°Ïn…·æªÓ•ªf+n=Š¼&Õ…ÜŸU¤@~*P#K¼˜®C¹¶§™dNjJÊmY $dI§®­âoZxiŽ'Q¤j§MÊ’Íc¢vããÃN#•ª¸VÞÂî«ðäÃŒ¶Ø›Á')ÉæÓ$„›„ˆÆ„»•>M¦FCZacW½çûì7æ˜Ülò§MÊ—ž$í8ùÜ=ˆ)µ‰ØVŒâYv¿„ éÌ2´Dš¶g5µ†¬EvbqÂAì#QäÙµ>ú˜ÑÎ~#‹ów˜ÕWíÛü£cê£/ÏžçE.dLsLˆÓ_‘9Ö–Ê8Áù«Í«amíA5fÒ“$\ü"ltÐþîåe7´½»±7µÑWÅPóˆÐ¶oÀìxÖžµžši´ØæÔù,í[PÇ_¥¥¸|%m ’Dò ’²R GœÈÒes> +Õ³V†²5z[ÎÎ1ŒTl*ôtÕé˜ö£I–õnèÃÈžp(ɧ×,Íl”0Ë^Ï&1š]2+eÊÞÓ#"ÂQW9Ks¢ÅëÃDç8-7*KczŸLde &‡TÒž$©a¸©L°Ý-%ˆªb3î¢[ût ”¤')*ųùk=üj;}ÍRÎvšiÙM]ôàq:aÂåRÅÐ)n0ã°qÔ(Ô:!µ)9iò¸ZÅ$•n¢êØ|ž;Q5:58«¶”ÓüDëz)U-*WʤÄoѦTð^8Ÿ6+ÎL¥£aVL¯3Òg´·V„™\Ò¥-'r¹[ß`Q[­*êÓU¥ ýæãy™º©nštSEq÷©}ÐŽý¥Ñ +F B)u +]%èèLugÂY&ÞSjJ|"%ì]Ž÷å!‹d ~¦VÆìü±qRt{Ҭ˔ŠJ.“*}=¸‘Õ…#¡Z†I¶Ô¦§™ )MII™ü"#æ¯WÞ?ú *÷”ýëñªirdDb˜¦G[Cœˆõ94çjJqn¼”ªXûX'–DJ5-&¥$É)#NaÆÙJ©kº£7ï°YF¿>Ã¥ž_Ý»Œ}r:&‹(°ñgD¯Ô)Ü/‹ðLÆï.1«Q)©q[RV—dº‹XÊé±Û’â]>ùÕ÷[8ã'ïRû½A³{@•DŒëÔVÜ}ý'<ãËTkº¶Ž âMJQ§1¶hØw<†ŸˆÄKßž®ëO “læÿšŸÄœYCžÉãæé­œ*t|uD™4‘„2˜ ƒyÎ +DIu´»‘n$ˆÈò™ìce¢™Ð«¯³L?4øš¸—›¢žÜqíáêK*§ÕªÍºýV†î.¡MªºŠRbA“3D‡Þ¢Q¸Ê\Õ›ÊËe©¢#$™…*륽êxí¦اŽ&*ršZnÒ°øÒÖ×03‰L•Œ4›>‹Ú§Ëv„¶C +e‰+LG㬑¥$iÌV5XÌŒüw>¶KÜ¿Žþm';WŠø«çTH±¡È»ùÂ/è¯~ù#U¥ù‘»Ðqn ÝmÄ*’¤•ù.dd5µ¦õ--i®ÍÅIä×y Ø­±PѾÀL5%X’<Ê,YÓŠò^`áOmÇpÍ„´”6k'3eRmc3; 7}Ñ ì»N&É]Uε\m¼ÜwœÖ$ÃqW@ÒUA4´ªrñ¤wšƒæ~ÍJ§’Ú²æ"If±§e³|c[%Ñûxÿ¯*ôpŽj¯öí]øñ:ž•*QÕ7Z:)³#bŠ\…0Ý-ùSæ1øŸ›Õ-d¢f96J¶¤‰)$šLî¥ÞÅ«Ô·ªÑÎÌb[ÛéHÅ¢n–³£~ zæw”ª­éØŽ†ýJ±RÅ J§²Ó.™1?37ãH",ŒÇ$™¨ÉÄ’2¬ÝXö±…u|%SŽóröDw IÅêt¨Ú£Gžg¼ý(A‡:±HÄ4G§â9Åù¬¡¶D¥²rR¸“$‰$˜ì°EsÖr¥MžSX5îRÒ›Žj–ö5¿©û©ÐÒª løI¸mœ8”&a)8åÓ‡:ñÄY?ªã:¹†þKpeB²óå2³v¾Á¯&ü':½öÌ*½9Ï ­þß{Â#ÍÃó‘„¡J¢ÌuÊ2VóúR%¸µF»«aUA™«.mY ÌnCIöŒòzTYÏÝ¿}Ú¬kó.ê”)Ð)ÌbædÓmM<{„Þ\v£™6âÔCuHm ²®dy²‘ÞÆGs²…vQm7Gv³KuGê?9Ÿ®%•ÉB¬QèhŸ†§L¬)Z‰ ÓÎK.J˜¦X$-Ö£§U®$–W 9Tf’U´[t;DÔê÷8¸óèÕ8Í*†šÖýÖ wlfLv« éJ~2:»‚䶦銅KüfÜq–Rœªh•,ŒÍYLÔf[Flé˜OU¶½©­Ãm~¡?O‰ßt·Cnš_bŸM&™~›„Ö–ãÇÊÛŽ&c‰R’–Óe(’”‘™Ȉ¯°ˆmc¥þÞÑÝDŠµ~Ý×ø”gHtY2ëºK§Uª/µ"«T‚å&$z3rçËŒ–c¥…A–á‘5©q+Í´‰£%(ýÖÝ(¦p×}½ºT9Ê=(ÄÂOUijZ¨ÎMt›jv›iÕê{’«u5´õ#ó*Ý~L6á°–N3‰AÙ,¸— dJ,§˜Ì¼-ºZ{Æ–žr~ü¡ù£¥Ÿ¾Mè¹}r¼òIý&4§´{ŠJµ®…5$”‘š”gEb"Úf|Ü£¯-SM^IË’aU=Æ(‹¨­âÚJJRŒëv8‰6óë›I®›™T¢+Ýv5s˜Ï*§ÝZÇU~'£r1É[tÙÎ~Š>“Á…$ðÞ%FxÖ×Y;´¼Ä³àäMÊùŒ‹bOiÛbÙ·E·tzMì0´§ãÕè9ÙZL0fBžþ®FmÆÔŸ THfÊ\YxZÃ3Ns¹*çÎ6åIÍ¢§]¾7àšòf•47ª¿C6´&éS׃[ÃÅ°ý' V£WrC[É. +˜ÒHNw•$IIæUÉKä;Ÿ.Sî•nŸ{ÍÔ»pº¼éO˜éa…ÕW¾ç)}˜Þ}¸ B˜vÀØR<sPÍtªzÞJ&Ö·U¥8v%)w3¹«oˆIx`ˆÓ8³)ŒÉì2ÿ{OêDNU¨‘bwÁìÿпÀ\ýwÌý ¾Ù{äkVƒ! &D>Òâѱ+2/ˆÌ€Zi¨ùoËãç|™ßiòƒSZŒ²šŽÅâ¾ÀÖ£"I™™s_`˜ÎûOo.ÞP23«—1ò[—ÄA ×X«æÌwç¾ÐX«‘æ;—!ß$“‹NÂY——Æ’Qì;žÎM¼€c¶[m¼@«B‰Y]=é=l )•ÄU¶á%H;’¤¨Ò¢äRNÆŒå!™2}kFjÌw>S¾Ñ€i˜ö•ùy~0†f{LîÔ–¤Ü‰FWå±€µ$Œ‰FD|¤Fc+XÏg&Þ@“ ”¢ä3+ù||à`ÔÖ¥Zê3·%Ì …8µì5ü§Ì×Z»™ç=»9LòkR¯uÞÞ>n@¹Õ{æ;Ú׿ˆð7Èüä÷èÍ~¥C]}ŒßQ±dâ’FD£"?>s¿&Òù@Á©-E·1Þ÷åñó“T¸¤‘‘(ÊüÆù¿Æ£qjåQŸÊgâ 2 jU®£;r\ÂA¢œRŒŒÔfeã3µ(îj3>s0ÜQÍG~Kßm€“«Ï¹6˜Lê±ÎÅ´Šà–¥ÍFgÎfÕKRýÒŒþSÉ(ÈŒˆùy~0¹Õr<Ç°¬[y š’ÔDDJ2";–ßæçk_g(5JÔ‹’LÊü¶;\ ƒZ•{¨ÏôÀ ÇÎ|–åñs˜öm=œŸÕ|ÙŽü÷ÚB–¥û£3ùNà`ùr.þp‹ú+ß¾HÕi~dnôpØÐûÖ.Ùs¹®v&™ŒŒŽçr+ß5'DDJ2"äÚdÔDi%¹¯°¦u[.c·5öV˘íÍ}€usŸ%¹|\À»‰0ÌVÌ(õ­H‡6,öI 4Yø®k=œ¤Jå.CƒO/½&g³ñ“±›‹5f5n{íÜYò¨ü~>~P2hJ2µŒörmä–¢#I(È”®MRµ$¬J2/ˆÀ72;‘íçk_eïú`d×:¹sï~_8j3¾ÓÛ´þ3jkR­uÛ’çÈù33;žÛƒ@’0'ØeþöŸÔˆœ«Q"Äï‚)ØÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎN¬Õááèj•Ɉ™rCîªöCM$Ô¥lÛ°‹å1­U*T±M.§èøgIqñ Qº4šDêLÉŽ£ RÕ¥ÃJ’…8ƒeÇ2©&´æmyV’Q¹m²Ö´5¼øz 5¡êz¿Åñ¬;P§QãRåÕjsZzB"B&³¢3”¸òÔó ’JZRE|ÊQ؈öÛW^1’—±h6Ta;ayô›ì Œà鉿MmæâÊ7É´¾ŒŽ–¥Õ²¬É¹ÚæƒÙËÏ´e9Iæ“Þb¥ ¬›[ŽÚ2j¾Gç'¿Fkõ*ëìfúˆØÔ8kLµD?Žªx–&%:—YE› ¦£ºëÒLÛBJ›uK[î­Â÷YZJL¬­Š·++FéM¬]M%ÚÔpÅ­lÒp´*So²gŽl¨i—D§UåÕ)s)©ÑfÓÛnËAÔœKq–S‹C¨YžÃBŒîF›\†Îµ†Ú®í“EF”º»ÉNÒ¢¡¸Ô4á:»õ.¹òiì¦2Ÿ‰œSiqÓ7ɳS†“ÈÚ¥ªÇ°¬´§bS®&pÛ£PTOlÆØŒv,uŸU-B€’8j•WWOf«-ZmC„ñ)H[¨ãJÖ!fM$Ë$ör]]¢¦gBÒõ-}ؘ¢‡Tmиj®™i‘®-¥Tk,³N‡V”í=–Üàðff6]խĸᨒ¥dm*QmÛb½‹Y4›Õ/GxTÊO4Ú[—P¢q)ZOÁQ‹e¶\¹FíA¢r} 98Eýïß$j´¿27z8lh#}†_ïiýH‰Êµ,Nø"€ÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎøÃÑZ5KSÑÍøx¨ëŽ-Y7=/)[çÈá­l×Û㳦íϺ¬~MKÒbº¦÷Ý´o¥ú§UÑf/r’öˆTÕS 3\js’\K猓P\u0M„¬É%ë &VØF3dš¸žŠ#µ)ŽüEM{¨øIö6’}Ljt?‹*õf;™P”Ö$b®ÅZ\çÎO3%/7¶M•!ƒmNd¨Ò¢.K¨Ì±b.–õ9y½;°z6 VªM-k – ;NßVÑM^vÅ´¦ÞŽOU±Rkl­Y¦Å“•g–ä¼­(¬De{mQfÒ¥ujžËÍúN•Z¦ÛΈí¹w¼ç^¦âVÒN!‡4æ*GŸ÷ åJ‰,wKJ;8¤Ü–••í—Æ:^j–¾ìÚÛ7W æ’ª¤ö$û%úNãŒ0Êôƒ„j´Š8nV)®Ftȳê}­»6f$(ì{v‘|aÊ,å:Wgc1ci Týp1¦Ž4c3 T‘TV R‹K8I*y)ç¥ÉQ¤ÔêŸ[HS,žBúÑŒÌî£<¥|¹÷M$›Ðµkx±† êÒøh6XÖ©'b|'‹'ȦE¨;G™L™d·cAÚãRMLÌ6œÈY”©Ôšv¤Æ•;µ8×JÓ±ñÓ£I½)ÕJU=TvhÒrz b½a*+&™Tž·õŒ8†‘!æœe£I™šÍI<«4Ù~]ƒk*nÓM/U Îœ,¢FWü2#,Æj-—/a™ ÓŠ—·¾Š”8[;±;Hɨä~r{ôf¿R¡®¾Æo¨ØHñQÑ5bL FQåFD×±sx¢›œÖl¨˜S +C/™&éÎHRLÒJËrVÞAÎÍ:1¦—SÙ Õè«yÖÒ¥\§¡ÓJíIc½*ÞŠ±,z¿YÀáϪNÃJn#RóQáQ¤“êÌö©·\5,ÊÈ$—‚›ò˜+8iýÝTüÉBBþ•÷GJó·2w|G‡1-;Tq.b ¥ÔélÓÞjt‡#“EuÕ°ùsX‹:¢[~ ŠÊÚc½ +1É¥5˜¼œOÁœ3MΓâí Ô*µ™uÇiLG6¥GƒCÕLì&4Ø„âxKm6Û„¶\Ö©«¤î’,Ö3²«,j„Ó—Œa z Ói‚S‚׌¯ôƺ)Ä6Ù‹L‡IRâÒâC¤ÕšuÚTÚ<–‘‘Ç(ͨÝ`Ï*ÐÎbJLF“¸Úº[©µ†*´µ¦µý&(©$“Ç+Sy΢IÅmÆYe·]Ö¸†Ð•¸ecZÒ’%*Åɘîvñ\t©ËÀä´°À‘wó„_Ñ^ýòF«Kó#w ã†Æ€’0'ØeþöŸÔˆœ«Q"Äï‚)ØÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎ Gj©úîηRÜ׉ÁÀÆu tt‰¥ˆ3j¸§=rhÜ[.ëšJ’Ù-yr(îv23#·…³oP¡Ö—ê/}çKnÏ^¥º1?\Žê˜`eÖªH™M›„]”ÚÖÂ[y3àÅnI6kJ2VÆb+øJR Ìîc­½n—VÊS[\ÃQÚŽvTª’ÛSOÍŒw3=P§VZÂPçÖ®7*aI•ªo#I‘©7M)EÏbOe¯¶ÁÊ=Âq©=éx˜±÷mm|0VÆØó/FìÈ®Álñ…"L÷ÔÝ-7‚¸í2í˜%;g3“–V³ar—0Ë¥ÞtýÖx¥xm%?vŽüxbÄxØ*á5>¬šâ¦ÌKTå)5Ú‹šÉÖ¨Ò¥D‚¹ÌÈËVÛˆêSSÂqp£ÌJg®éZ°R÷œ/ãŠÛø‘ ™£M«?_bs¯@ε5M"6e…9fÔêL”hY«-ÌŒ¶ UNª’Ñ46õâš[±7t¤›Ó$µ`Ó~ƒa„4™Œ%7‚ê•9ðŸf­‰¤áÙ1ƒª#CIi2’î±JKŠS£EQ‘sì*½u¿…K~f“~ƒ[Znª£à¸óâ—¤ëº>Ä8› axu¾1Žý5x¶e9ÚzâÝÃ2°ìRq2Myµ¨ZÉDœ¹2[_hãÉ[»fŸÂQæ÷Í>9L^­äÛóÄOÐvÈZOÅU©§P¦D’ôbij‚TejN Ž¯ðópˆI‘¹kd±jìjÚ3Éí¥×ª­:¡cnŒMmè¹yk§-oûÄ©ø£P4…>UR; Q¦Ö¤µ6Gõ%Íkºù¬ÌÎèÊh$’T“33ÛbÅUµf­5©{ªkŠFi¥;Kš°[éOƒrHl?V*õ*—SJr”葤åæ×6—-úW­(»SY25W©OaË €ß#ó“ߣ5ú• uö3}FÄlh‹¿œ"þŠ÷ï’5Z_™½64 ‘>Ã/÷´þ¤DåZ‰'|NÀÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎüÖãÔŽýJžÄ\)ïG$“k}¼¦£2$$••i%’H”JÓBO¶cTçéó›ºÛ]‘:ã.'Å_C´*Ô鲟zj"Ô%3:}1©9 M”ÎCC¯4IÌgvÐj$­)Y¤³%AM >ÙIéŸOœ:ÛÝ®4AÉU4cG«ÅÄpä*F®½=Š”¼®‘(ŸcQ“Vy|ýa-¾=»vaP°ÙUîÙ“.¶ûi»Ùk\Ñ•?‰$JT‚^ bŸfGI$MÀQ­­_‚yNê<Æw¿Äß•]ª#¸Å÷Á®Ç§¼ÝÕtK¬ÊÄ’ä)íe~šÕ*fWˆ£´OM²ÊyWõå\öø¶lÛŠì•J¤þÐf‹GLGÁ˜írp•Òg9Ö§Ô¡)mQ¤Iz¢™’Q!·ü34æQ’hW„e{†Ö”ªæ~•©é^“Uv#àè{¼Rƒ£zF“\3ó:¢YåÚÝÞU“°ím»6¨Wb> +iyškÒbº¯OÝœ½éú• ú %ȤÜÚ“°ãÔ]«¢žìÌÐΠãË^¦É£4­FiNl„dJÊj+lìÕ—ÁXN­8ñ6´´uK NÝ)íMFã3¨p©üU«/…D7ÕeÍ›1gËŸWŸÃÉ›hÍ*cdÆJgF÷æÔbª¦véÛ£Àø¯`ÃX†…ApÛr½*[²}ËêJ¢áp§b+åA«"y̶j³šUµçê~i®*uëô¤’î2\H@aˆ¬'+L6ÛM§™ ¤’’ý""jª\ær¥Bƒ÷2ùœžý¯Ô¨k¯±›ê6#c@ä]üáôW¿|‘ªÒüÈÝè8á± dŒ ö½§õ"'*ÔH±;àŠvÿÖ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎVC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Yè®ÆÔM´urÖžÒÎ_Ú;­9Xð2š6:ؽU]ñú£hyð1+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%doPìnéðe[\ÝËZ|¹Uc¾Q¬9Ó«#2 ÙkbõUwÇê¡çÀĬ†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•‘¿uØÜ +1ðu[Xõ‹Z{É¾Û aËÇRÔeµÃ[ª«¾?Tm>%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬†¶/UW|~¨CÏ€•ÖÅêªïÕyð²ؽU]ñú¡>VC[ª«¾?T!çÀJÈkbõUwÇê„<ø Y l^ª®øýP‡Ÿ+!­‹ÕUߪóà%d5±zª»ãõB|¬Œ‚–ÚÚ•ªlÐYÓ{¯5ö|„"ò”𓵑ÝÄc¨ÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D6²'ņdR%2ÉžÒ'B þBQHƒ÷mÔ<”­µ¥hQ]*I’’eñl00}€ÐÔDdF¢#=…sµþNp2j DžS"ùNÀdÔ —+Úå~kí& `4##½ŒŽÜ¶>@ ‰ùÞèhÿZÕéFëC8ñ±¡µ\ø­¸L®S)tífÔê g~K$Îÿx Á»2°4¡)*¾UØìv;ØùŒ¨C2.S"ùNÀdÔ α|4ì;ÒØ|ß(5%$ÌÈ”FiØdG´ãæ 4ÌœÙsk^×Ûn{s“P0i˜ˆÈ®W?Àɨ D®C#ù š€ß#ó“ߣ5ú• uö3}FÄlhm“:2ÝÔ&KFïFN ×Ù½þðƒr4R‰$f£""å3;ÆfMKo  DfdFGn] dÔ ’›]DW;Î×>bç&šÄlðÓ´ì^m>bç0Ð DV¹‘_’çÊM@À‰ZVD¤¨”GÈdw/¼Ô¡(•´ŒŒ¾#¸5†dV#2¹òmå& `ä]üáôW¿|‘ªÒüÈÝè8á± dŒ ö½§õ"'*ÔH±;àŠvÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D#. ¦.§¥z¡# Sk™0Å8òT]m´µy²v£YEÍ\‡bO')(^ÿ t|Ú¶Ôýî:ªï¤ûÒn8¯èÞV§S#x”Ò¡FÈE"¢KIð¥))oU nr¾­a¨Â¾¶F‹¦æ:YÔÝK'\l‰KNxú j¢Û­íœ^Œ°7ØÛbø*Ò•JŸ^n4|"ü^€²êd%Q˜}Ä>âü<ªÎdœ†•&÷¹ØˆqV­RêxÅ¥ØÙ4¯Iº¡6©Î‰±Sôö…5ZZƲUW}L€ç6ÙÕYÓ—•9‰» ÈÌŽ÷Uü#2"´š^øËæœkr©ø¯½ž•±#¢Ì‹ÅòäÁ¤¦ §¤ÌNj§!™d¢&uñÔKp¢åÌj[m©W+¤¶Ž5ÔÔêP¡ê™zrQé:QJikǶ6mú 0Þ:ªUªÓ#*¡\vðŒ +»oCGÖ–òä%n´jðµjÕ¤Ò•rÇp´­®r> +¥®Új}º ÑBw>ìÚ}Ž•é:†ÅXÇHð¼qtÄÌÁðëRÞj <¹¯=ª,‰t oÆ¢µù &›™”¶ñÑM yÚªgfµE1¶ª×bkÄØ`í!bÝ&T0m=ŠËtdÔ(5)³ÜbO-RàÏL"Sù))BÎê22U’v-»FÊj˜ÃÜQWmZ¼Æ­*pû½K²ŸIú`­%b$¿…è(©7I–ô*ÜšŒøÑuO.™?‹L6ù-KŠúâö‘x)·(ÖŠ¦+qM]µa»zèT`ñ÷Mv%;ñ?L?q†5S™«G¦»-8‘ª¬–a!íjèÒ›Œ—#¡Ó4£Zw3¾bI(ìFdC[+GiRz³¦¨Úê9 J ­.û¦v]çX‰^­èý:Y©ÆªÈ¨IsÓé±Ûv3 KnÍn Zô¡ o:—,”‰ +2+í33ÚÉ;ªœë©h–±sÜfÚ&r¡>9Šqî;ÂÔŒX”:þxPx®¡Vƒ‡ÌçÌLi =3†F”Ô/*3ŒˆÌÓqµ-¸ZÝiv5ÞkubþëSíDŸ£À›LˆÜj…MU)(5甦`×u•›h²¤‹¼v-¦g´nr91€ÈDüï?ô4­jô£u¡œxØÐŽx_áüc‹4¶Ín‹y.§Ld×":âPªT{’2΋^å”ÊÇ·”G¢„éªzõã¯V²Eu4鎭=õc¼A*‡£Ì?uEk•KªÊ~£5 Ž±O˜Pãì’¢G„JJ–³%(ȈŠÙŒÆhµªÑ&ôótÔðÖÍk¡PÚZuR±Ô±;E3cœCQÀt)UQ$Taש:ˆ±ž}gN}¦™q¤)N´ÚœJÉKAš²]I±»S5l÷ çb<Æ•E+ïqÙ ú™¥ÌK[<;‡Ír +{Ó±,IÕ +\d>â(o%”­¦V©ö±&³ð‰62ImÙΚÝi5„Ñ/Ïzîí| ê¡S:ýÒKÌÕíú¸œå3cšÄœD›94™UX†<Ù;ºÅ8‰QÝKYÝm—V“#Z1$îYy”Ôꪕ¢hmëÅUJÓÚfªU4·¦*IN:[ô•bœBœ3‡•WDyÓkX– š£pÚ7†¥XÐÊÈÚK®‘ ”yM%e'nÌXÚ;Kº¦–ßUw^ñkf¨½®*¥.Úo}†ëu|?¹ x…,ΛŽ*q\~5;…M–ÛqÛY¦$bJÛ'L’“qJ-[i%žÍƒk6ݯÛÍ讬ô,÷T¢ª¼ÖzvÒ¸å¼ä"iÔ á˜)¨p9²±…KI”ü5ꉧÜJÔÊMM!ï7Êf›—%ŒÈe6î}ÚšÛû̯@p•O'LvljÃ⪖!Ät™Tɘ…Ô½BÇÔšcsY‹HeNÆuµ:ƒA¶KlÝ?r”¥v,ɵÈb‡zãûµKr«5«·—Ýi{ÚÀzQ©Vpî«T¨¯¤çÓšjVg[J‰Ö˜q “M¬F¶‰{H¶ ÚÒ¸ÇT©[%&bΙÁäãÏq0]gKø˜æâ’§>ÉŨ½úÂT¢y3Zƒ%Å_ì©3s9ì"Iø†´ßnëÒêQ²™©?˜ßj3UÔ§*\ük©¯Àât”S*q+ÍF¨<ãi†Æx¬3™ÒW²Ü7¬ÊIªä~;TF’°çc‹¡èûV¾ú­0¼¿ ÑÜåjn#ÂÓ4ˈ)UýOI¦Èàë†Ë©šãtøæ²}J+¡*NÂ&²XÌÎçb!ÕTÕ3«œj<î„ûÍN¨û¢Çå´H=%ã°F¯bXÑÒëÐ .KM,Ï!¸dYIVÛ”EˆÆÖéÓ)gùâMløœ§„˜ã×ñ~ŒèUš¬œC´²§G\väFn;ÌÏzClk ò’â´Œóxdi"Îd£ +ÓNê×U)=jj»-wn3CM^}Z›^e{IÖqö=ź3F.¥9[ERTl,åzס2Ò˜’Ä„Æqµ¶ÉÒD¤\³&jåWSR–§F;*ª1Üt³¡U 뽆ԧÒogÕñ»Úå8À‰pÓxx®.µ2 N¶lL²ê.‚VÒ7gqTr­¨mjª;/];®€ Ì‡Kć.¬üüØŠº”“ͲŒ†‰Ž”Z¤'ÝžÓ#¹"HˆqäÿmSæô³¥¿Û•y×ÍFvN@¾Gç'¿Fkõ*ëìfúš=Ò~R#BáÜ@¯`(M¨Scp¦+xµöªÒ.;‘Ü[:‰DâMµ$&J±[˜E«ÜØ*– *œíUÔJXÚº^†éQ禓꟥ k‰¢.=5sY›KÃT:‚•›R%Ô'ÄTƒ)j´jšð¼ §á)F¢±‘oUJªšÔá-Zxööl©QJzÖzaaØs.ã\u\{ÉYbXvK¨³¢1%*”ý=RÞiçTj53™’6Ì•¶ä» -k»MU¬nÔálJ—é6³¢õTÓÖK­µè64·‹ñz+ò°ë2ã.‘M¤Éˆ¤Å“*lNZ%¿!Ä)¦ì²m&ƒNRºÍGÈÔÓmc50Q¯<{4§ ë¦gµ­‡ï‰´ƒŒÑIõ˜•–à·…§H‹0úS°”óOº«©HÌ¥%&Ù¤Ê÷ÌdDC5TéN­1h×dÒ½&)¦ZYПl7è6zLÄx‹aÍ/9¬ˆhN + ðfÜL“\¤¾·Ykr{+dƒM²‘žk˜çʹm迱WJÞt±÷É.¤Î×K{Æ9Òu ǫΣV!3¢2p"ÓôFÐñGKɨKt’iyDášPÊ®„ä3#5íUnþiÚFÈm-9ãæÔq¢…q|IÛ)7»’ŘãÓÚÒ=ju¶cáj¼hÑ V‡ØSqâu_\Û®Q$Ði4òžnAÊ›F•çÚŽ˜Ù}S¿«¡7 ¨ªíºêôãG”ù¬c½&ºõbD†xU,“ÆÙ$'<Ö“%!¯¼Ûc-ªº¶ŽÖXPþ=}Ôœ+sRø´÷ÔtÝ!iQfbÚ"CESbU:],× þWÙ2Q”ýÚ³Ey£ÚF´øȇ>q-/EUOÅIU郯7:šT|fÝ?Iù;Ž'âú½"{.°ºCز•–g [?ÂcHu*Q× ×2¤Îùr™[iŽ´cRS®Õ'²šZ\Sì9TýÎVm­®¤ûš1¦¥V›€škéKê×¾šé¦xšÚ+®tãÓkµ:Þ/¯àÕ»\z'ÇuÊkIŽÃÔF†ù·›X…]D›¤ï°ÈïlÄF\éSU:m8URîHèß¹­dèâ©}ìÎZJĵ*T¼!C¤É(r1 MP•4ÚCÇ–c;)Å!·.…8¢o*s‘\Õcµ¶êT¬ª{£&J—W™ogO›YÅÑkx/ÆSÕ g—V•JD-4¶Ù[ +#e2T§K9嶬‰D’5lÍSŒ©mÆ¿t©]øŠ¢•9´–Ì}ØN‰¤]‰ë8o •i¸O*©ŠiUÌÂikT‚hÙy¦Ü֢̆Yg+HóX¹-¥N¸Õî*}ª¥N½FÖ”ª'_º§s¥Õ¼ÜàŒu‹æ7‚jÕ*ãRZªb Ô0Ѧ›SqŽ[h•§ë‰yJŽJQêü#I$ˆˆÆôKtÏ¡¿7¹œ -0UGÁ©/<Ô—¤êZ0¯â ƒô{T:ºdÓªU×)Ó3IKqåΔ„:‡ÈµºÔ,‰JÌfƒMË)ZáC~á?…BìŠ%wbmh¥ÖÖªŸoºI÷àw /¤‰íRZuFjKŠSiRŽæF~+l¸¡.«•±ãâ÷‹ïš‡µ*î‚0¾"ãdÌr¤LÕœjDèíTži‡å²–Ò‰Jm'myjÐf®C4‘šLÂç|­Žg}ð:Ðv©Ú8¢Ô¢âhròÛÄš³¨ž¸Énl¡‚4¼Ê„ÞܧsñŒ;4Ôju^í”ýU£NrQÙ zMãx"œÆ!V&eÉ-Nr#PŸJ$(£¾ËµZÖ¶¥Jo:²«a•Ï”n°mç§/9£Å%—¬å t臨±¥D†”¸£J[–¤)ã^c3ZÖ¤J3333å1•JNVJœ¤a¹PóžÖ ã&hŸTÄ‹Ü…µˆÓ³ãp§ ƒÑ ‘!¤‘´òuh²Òeµ$v¸ÅŶtès2ŒºÜÎÈó¬™øˆ0û°j0¥ªlÕÔ_„ü¹’æ-éª ‰v:Tò¶ämI+ ˆ“cV˨ÌmJˆN{s1{º;22’”j33å3¸>@À!ó¼ÿÐÑþ´!«ÒÖ†qãcCÕ4?HªT«5>4¬Å:š]B<:£‘£H6ÙLr̆ȔWm$“Ê¢¹jÉbµ6ÜNé:s Š'‰ÊTôaAŸ‹3r)\JÚ˜§;K¸oFah$-¤-´Ô”•Ò¢;™½Ñ\oR—;#,25¥ÂŽÞÜΕUЬW«x9ÊcŽÓit +}Z2c¬Mmù‹aIZ²F¬®†³3QªæFgr]Æt{””a¡èóA›ØGݥϙ­òÎÔ½aÔÓ©4舕é.>ô9å¸ÔÖ“~³j”§Fnf¹,ÎæW"¶)ƨQ†dOrçó9>h(.@Š¶•DáÇõªQšç—æ‡5›‹pü#RŽùŒÌeR“MjP²‰OÐaÔÚ‡­Ïl5é64M@z#Q[9q–ÍJ]Y‰Q¥­™QåÌR”òšu;I+΢4M'c#± i³T¤–©KÌÜ´mU£©¶õÇãÑ¡<4ÄV£ÅTø®³R‘VjcÝDÆæJoTû„õÍG­MÉd«‘Üþ+eR”%„NŒ›–obÛÆcNÅÝQô=‡(G â¦Y”J³µ¶RìÇ$Îy¥2êî³5,–¥(ŒÎë<ßÍ4¥ªôlOJâS;b{4>î¥¢Ê R-f+…%¾5©³XyÖ$©·›œÎ¯Vë+-¨4ê“bÚW¾Í£ +… -M¾×¤Ë®tëIv#¼H§³.°$fy—YSk2–… Ð¬Çã3#;Ÿ>ѵjô§¬Ö‡w¨ÇtíaŠSX9–#¿— ›ª¥šä)J#u&•Æe=¹‹7"¬®Rœgdv Q¶{t›ê΋¨UØuhR! ©ÔY«:ã2ÛÍÍ`šÕºÊÓµR ‹i\ŽäwÕšP–ªKÎÛo¼ÙÖÛmëI?2Ð~Ò´kE›ARo%¢¨©O™¸î©”G#%[Á3B +æ\§sñÚMF«ÓÛ)ú„áÎÈìÇÄí•:<*Õ>M*|dI‡%…Fy— +éq¥'"’¯”¿õ¸Z+ó:ÌPîDj: a¨¬T˜–Ôš¡O„T×—S–ä·'tÆmk;¡²? g…˜‰F£2#-]2šzâ^¼4beU 5«FXé?ÐÖrn ÅÏžuˆi§Ê“6s’%p4šmÕíBffDEs=¦f{AÓ8mMíkA•[NV¤ÒÙ:NÒþ ¥H©L«-·8LºZh2IÃJ–²I'Ä«¬ü.Pª”ïOÂÓÇÄÅ5DGÁÑÃÀê/èS¸ä'Ø~¥ øt¦(? + ìwx&j&”¤ræ¿„g´öZÇ´fµy¶þNØÀQUÔ’Õ1²cÀÜIÐÖtéÜ©T䧦””@˜ìd½OJEü‡wÌf{O5Ô¯ ij¡U3­$Ö¬0XUµØÛO\½8Ÿ¤ Ð)Maf¢95ŸcHyšzÓ1yÊ3ÙIqÝ3/®2d”§*ŠùREq³S§({VÝÆ/wÏ™ì64 aÊ$ª,¸T‰TG–í1µÔ^q˜Iq*KŒ²ÚŒÈ™ZTdh;ì""2""¦„šy(Ç(ˆàŒÕTᛞٙ9ø:4¡S áús :LP¦ª¡ã5&Bã3QÛÂ+¼½‡Î\Ãt᧒…æ»w¸Ñã+7=³=ç+†ðt &õUÊ{’ )NÍu‡SŒ¶ûÊ5:¦P¯±ëy”Dv3æQJ¥]Zà›UUç/×QÚFÆ ¾Gç'¿Fkõ*ëìfú‘ŽãcC /A8qÕTÚvm]È9oÍ™K:›©§¼ô…ëÎÊ &hZ½Ò YOÈË`Ò›4’Z–§£L÷£nu¿î9ìM¢š*’ä©%*2ŸŠˆ2Ñ[‘[™ »ä! Ø–Ús(ˆ¶%F›å; ºm½zrq™…[I%«FhèªÐ\:¦"Åóª¼Å.®Å&#Q)ó]Œ‡¢CŒl®<–ÐDFÙ™Ù$G|¦er#2TLÞÆjocÂ;Œº¢#U1µbüNç_ÐþÄRyö¤°Ü˜ñâM‹S‘âβ´Ô–dN! ðH¶§Á34ì:Sm½n^SœU´¡jP³K#;F4 +ŒlUÖ&q2ZEE(tÐJKL&2 «ÖÈ›IÏчJjZ÷l§è +¨rµ(ìÅzN#è_ b•ÔÎaMmª£ G¨Æ5ÆcÍK-“M­öÓ±kBHˆ•°ÎÅ{‘ÅT';\ìœø +kj6(ìÈØ×t…±·$ê Ǫ)—fEQy˜ÎÉa-¡¹&ÚNÚä“hð¹ ÒFi3 ¸¸Þó9™AW£Î¢ ì²ôeCŸSd!õ³_}¹3Ìß<î:„4‚RUoäÊ/nS¹øÆ] GݯvÞ½Þmc÷[½‘w¸åá`ø4êíKGvJ$Ô›eš×¨â¸¦M¶æ¤ö‰As¶x¼ce„ísÛ¯¸Õ¹Š=wŸ„Ü F¨b8­øêUN9^sÕê$ÉMò)E´’gµ$¥r˜Òâ–óPüÆ×Ü%“žÓ… è“aªm“;ÈF¨®«”ú–²”³tÍKQíY}uDD|…”¼CjØ‚š^f¡÷˜®«Ó:ܽéú+Dô4˜ò#p»FªH¬Gar–¶—%¡ãm +÷(^¹j4ÞÙŽåkX,鹂Ԛ^g¨ZUyË×փª D¥(Ó)‰Ô×XL¨ò–̘óVÒYSŒ8¨#m9M;RdfFGpŒÉûó–'NØá‚6®ht&Nlg L~ Äæ':‰ü.JT—Þ\‹š–§R£J󑕈ˆ¬VÅÝ„(Ã'¥zEí3ŒÇ æ aÆadžÇà•W«LHjk…%Ÿ#K«Ö¨ÌÌœ%(”J¹ŒÆˆø2—™¶ÚâZ~íçQÛñN§ãÌFžN¡QŸD˜Ò#<¦$Æ}d—Yu;R«‘ò‘‘™UL¹ËÓ€¦¨Q™Ôý§pâaÆŽÏ &<·ç·Sfk‰©p¹ ÈóÊ“µJS©²VFF“Ie""¶.,#iÅïÒeVñœf4ìÐrtmáúô)0c8‡h§=Q–§–µ-Ê…¸K¯®n¸á•ÍJ;ßhÙ$œ¬®öJ}èÕ¹XësÛ}ÓômC¥Æ¤DŽÓ¤Õ*¤ýZ)Æf™o©å-J?¶Mß]“ÈW.`XGÝT/4@©Ìíi¿:iúƒ¡<1‡^¦®2f8Å9÷eD„ü׆̧f¹ a^´õŠ±òÌȈöi¥.Å bˆ6ª¶û\½®dü©:ÃtITYq©¤è’&–ÒêO-ˆZÄ­.4Ëj3I4´¬ÈÒwðlDdEaši»%ã„Dy°1UW¥fç¶fM[ÐŽŒ– +š¤5E—.dG#TiÈŠšfrZaEsK.™™©³¹^ÆV2+iMš¦#R:¦c͵vŽ©n{tOŸ•Ã:'ÃøAêsÔÔIO?Q‘Ê[¨iu+p’,÷3%™f±™ÙF£¾Ñ½ +îJ;%8àkUW´ëiöÃ^“GôMAu¸ låÇr R]b3ñå­·›—4ÖoÙEʇ jI ÈË)عÁS <“]ƒªgkOµh2]î2jrþp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎù[†ÐýQ¬¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„¡®Õ¾Và‡ê„£~ë¬p(ÇÁ¶XµªÙ±7;ücTœ¼u#fð6èÝPûånCõF²†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ª†º7T>ù[‚ªŒƒ‚VÚÚ•«o!gMË9ªû>1”ꓽ‘ÝÄc¨ÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D?"}¥8l“‰7R’Y·˜³’LìJ4Þö3+_’à`2ûr JiĬ’¥ Í +%)'e$ì{ a—)“õù:ûQÉ&ë©l–¤¡9ÔI̵l$•ùLüEÊ`dý@Àäü†¢¶§^u ¶Ÿtµ¨’’¹Ûi™‘?P0 u +Z›JÒkI©$¢5$̹Jþ.p2}€ü‰öÍÃkX“p’K4f,Ä“3"V^[‘•ù.OÔ ù´ûrÔÓ‰Y”“4(”D¤ŒŽÞ2=†\¤`dýÀÈDüï?ô4­jô£u¡œxØÐàgâº-åG[ä‘š~c-8D{JéZÈÊåñ ^F×YÎ¥IZR¤¨ŒŒˆÈÈîFG´ŒŒ†ZƒSPÊÖ–’¥­D”¤ŒÔ£;m33>B lÊRhÓ¨}qµ¥hY’¤™)*#ÚFF[ Ä`°0¾Gç'¿Fkõ*ëìfúˆØÐã¥UéðŸf,š„f{ìLºûhqÏÞ¥«ôˆ'Q˜ÖoTëiY6kI,ÈÔH5(ȹL‹–Å}§â—›„ºÓ‰q ++¥hQ)&\ädfFÐr.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D#ä‡k-ir¬thp¤,ðÅ3YÃ%;ˆ¸t›e6£½›ã¹¾1‹)÷qÖ³ùµ®=Ïš¾úL…+5(´v)ÍTߧN©bÜNOF£ÆLÙ²Ṙ´E\†É¶Ðƒ4©Ç]AY; +Æ¡ÊÇÞP”ûÚ´|wÃÜ í0®¶ãßS§âSÇ’¦âìm^Ô%¦LÓ[UŠì*±ÓÑU·"ÓÝu–TË.²µ’‰<#T“;mIm1¼¶©yÓ.3˜ÝæÖbu/»Bœ¢_o Ï:/¬/áÚ\§ªÅUqZÖœ–QN*Ö¶Ý[fN°¢#mÔ[+‰±,•b"± çö'†‡†”hôµ“zt­„dªK¯búFÅU @ãŒÔ1½1KÔ0˜¬2ÕEæYKj$ºÔdkR–¢Qš‹)X­‹ šøJ|ÓgSÃÍ0ohð­,"Vê’Ǽæ¨8ÿâ ñTÍ(ÎbW©nÃx©¬Ò +žÔÅÃVWu2ŽIs—kº l5±—u¿„±Ñ­84vâfÕ%y/ƒ£„ÏŸÀÛÁÆ8½Š$œdî(qôÅÅÏR8±Q£”W q¯$‰½n¼’¢RVK-©"4žÛég[ŠÆûIöÊžÖ”)­/‚›]‰87éÇ8γ2uf›Æb&r’Q\M5ºBàƘ˜Žçuç'^¢Ì´™»Ê„ Èö¬+u]©ü'šZQµGn"Ö”¥-K<'ŽÌMÍOb˜ìb\DÞ%xš¤bî*bœQ£ðg`ªlxêCƦÍÓ^WŒÒ¤­9l[hée-Ñ? +¦ŸšõK~;G +¨ÕJ}·S:~˜&×qnÒ…IÊû‘áRk%Hf–†X8ËLD©O)H7Mç³RTKI$²–S+ßE-S[×ZÃ(®êî“¢jõT­T¾Ù¢}0vm%i +¿F›ˆj”ZÜÉ-Qª´¸J r¥0‡]ŽÛìË}òÖ» ÉÓ?¬*ÍÝkÞûSS¼µ§\d¡¸Ã\íÌæÒ»µQ;f'vÃöÆØ›ÅF•k0±3Ñ[Âs£&$FŒ¦]AÆŠóˆ§RÖ•Š"ʤo{™ÚÜ©­¥{OÚ—cTJ^“³¡6©Î‰s?@v fŸŽô±S£ÖÜ)È¡Ñ× ‰®GD}äI&’â”Ù%µuÚçá‹“¬:iª:ñ«*xêG9Nªg«<_ lïº)®T¤ÔëTª­b¤ôˆñ¡?Ƶ™R«”òšLFÄÎRx#…Mf¨ L(nguçS'„™]i2å^T%GµbÛºßÂx舖°óGn&Ö©+É|‡žÇaúÈÇ8ª‘@Ò>/r¶ì¾(«ÔéTÚiF`™m)˜í:ášIn-½a™­(±YW¹˜ÒšÝÄõÕTy½ÛS¹ÕJ¾Ö¤§Ïî'¼É=—Š#b¥*®íEúbSV +œÜäI×)§”@YÝ…$‰IRYTJA(Çj™ÔÔgŒéÝʽ[frÕãÜf±“@ä"~wŸú?Ö„5zQºÐÎMì}Î…îWY¹Ïß%¦ÄX§IÁp‰ß§&¡ƒ¬ÌzÍ×&›Í£: æÜJPyŽå—iX®[Lt©{èÂ)¡¯;Ux©z']U®ÄÒ3&ˆq,ìaƒ0åf¦´®d¸¤§Ö„·µ ÔI-‰Í–ö-„g³`ÙèO:i{éOÒkÚÉÔ·6ŒŒ0|ÎO~Œ×êT5×ØÍõ""3+ò ‘¡ð†£c:&”*8–yS¬âÒdÈm*z3HÑ ¸¢ÌÒZl’´e2±žnS¸RûFö¸­Î¹UUÈ”¾Ý^åF¨iO{:æf©ˆ±F‡«ës‰÷ðD·Þl¬ŽšU 6|ÍìõÉKð®fEcNÛȪ}Û}J[[\ÊÞqÁSJ]v»ŽïDÒ+˜f‘¢gxýé«k“ új˜a1še1åHhÙRPN“‰SE™JZ‰W?ŠÖÖ‡SÆlçµSK1^7šÕhÖúÚfóG¸ëâGpn!s‡*vs­M‹(©¬SZˆ½y7À”Nð¥<Ù¶›’³)ÂÎf‚¶Åœá:éZnÞQµy±3iƪ£²ô9ŸYÀÈ:Ÿ_ĸyœG_ÄÏvrå¶ÜmC,± Ky¤uh%©f”‘(Ô£-›C6OÜRÞ—M/€µÂ¦–ªšâg!±Ì‘wó„_Ñ^ýòF«Kó#w ã†Æ€’0'ØeþöŸÔˆœ«Q"Äï‚)ØÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D8F°ìk×ÐÉ•Aø­BqÜÇca—ê–öØ¥¨ïkí +p˜ÖÓ}’—xxÆÉãQ¢L59¶q¤0¶'M¨²üY¯ÆÔ‰Æg$ÐëKJ‰.ÞÊEò™[fªI-I¥ænZÞlëm·›Oµ(Oqdz¡#$h‘"Iˆˆ³$ÏŠäj„¦ŸŒü²Ë Ùu.Ò—yV›šTffe}¡ua±5Øñ6Á{NØ}«_œÈwÀÂ#Ó)qõ˜ÌhNe-F¥¨Ö¥©k3R–¥©JQ™¨ÌÌÌm³#S¢…ð‘Îj|”ÍA5VX)²8#3’½i¾Ô}f© RŒÍFIÛsç;âŠU0Ö©“3ͪ©Õ)ëÓ·ÖAá†+[L5Å,êÁÉxá&jŠÇ%1Mz’xöžrMîf¯u´bŠU:6öN˜ÈÅu:´ìíGÀÚ ¦Põ’kI9rÊ·Q¬4Ûräœ-còœy‡WJKFûiQcAÙEr32#²¢âKZ\q–·›Ú×y¼œw-;ŽðþŠpÔšº«NBuOªR'©Žÿ\Ôdª.}I¼V#Îi½È•îŠã4Ò©Åm“¦ j©½?ƒ&þ¡É‡Q€äC8õ +‡INµw\½koç½î^i;Í–¶Ñ²Â#S•ç–ûÙ«ÆgZ‡º;‘×q…ð–*“R“Q‚ò¸ÉÆÞšÃSd3CíeÈûŒ6²mN§"l³MöîdCUB[ç·L›»GÂ;2?þƒð†'~¦üøR ªO7*S-O’Ìw%7“$Kn%òr&Ë"½È—h\\gÌæe¾øGDAÙeèö…P‰ˆaHŠ§Ä +BêDn¯3êCM²Gš÷Iäm%²×2¿)ƒ¡=óÛ)ú­¬rQÙŠô›jÆŒ°íz}B£:Ýv£4Ù­ð‡RĨÉ%ë)Q!JFcÈ»fMîF”æu¹íZüøi +¶£gv^cs…°=*TÉvT–ÚeÙ3f?1óe›êÚ'$-fHI¨Ì’V+™™Üö’ŽÝ9³Vç³FÃkŠôe‡ñ¤’—SŽþ¸ãœGUcñxDSQ¨ØP´kZ¹™åUËiÚÄg} öéÉÆhÙV×£5Ún*š9Õ”Lj]1 j]=ŠS­”†øu©Æ›BPe“"”f•&Ê#µa š™ÚÓ~u¡˜N#bk±é\6>‰°Ó0ªÐŠüÔUPÊ&;6l‰2]CvS¯uÃq$Ò¼$eQeW„^Ðt®3¶sªî‘‘ûÄÑv‰K­Ò+Ò­¡MÔ•)é2e$ÛÕ8û«Sž +6"ÆDŸhÖ»5U7^‡ë&ÔÚ:j¼´¯X?h:3ÃtÙør¥šH“‡ ¹N¦¯:QÂJT›ÙGd•”«¨®«„wêên§^¶¡ù¦Ni{•N¤åyâ Áhþ„P‘O(‡ÁÑSã„£Z¿Ïºó“¬½ïmiæËÉⵆ´¨ˆø:8ø³-ÌýÛOq«ÑFr®ªÒ ¸oªZj +c„½À•5$DR•>¤Þ+çË{‘+Ým¢•N+od錪ªöŸÁÈæÀ´6iõŠIÀKªïË“9—T¥¥çeÞ3¹Ü‰Gâ+[Åa‹ŠíÝ_L÷‹îokú#¸üp®£`×%H§·!É2PÓNÉ™-é’Ó7Õµ­}kQ6‹žT‘‘\Ìö™Ül°íÅæÙ«sÙ¹Ì !ó¼ÿÐÑþ´!«ÒÖ†qãcC„¦aÈyµz„FM*Ï4üÅæ3Ö8Ë)ac;&ÈIŠÜ—妔°Y·Úô›UTéÊ;üN©^Ñ>ĵjuN­×Î:¥4‰OµZ£'&:M¼h±[:OaȈ† 9Û;'8ÌË­Äl±”äv¨øn›úÌ„Æ%.°´.q,ÍhxÐÊc‘NäE«I$ÈŠÆT:u6ÛíÓÜbö2´¤–ék¼êMá|>RJ$7•®†í9<"cò8<'JË\µj[=ž +-ÈŸJÇBiÒõ¨yµç2«i¦µ9YNptÌm¢W箚Ý #ªKZê„èO%²±6‡•1JŒE´ÙpˆÍDfK²”CK[7\íQÞ±ZôàoEj˜Øçð­§~ÁÚ:¦á(ô¥­›J£1DL‚ºR¨ÍäRˆ›¹‘­7/ËŽõ=;R[¦;Î+ØÛÞå›aØN™KdÙ‡†[5Í)5­™Ff{LùF»2Iv%Ï‹{ܜРò?9=ú3_©P×_c7ÔlFƆ5¯è‹ âY³'Mˆù*vNˤÇ;!eO +a§Û¾ O1]I,ª¹l*Sœß~±ç9Úž¤U*Tj»Œ8ÔÊ:j#‘Ÿq‚K.åÎÊ’Ú‰+iYà(> s š—9¨{MSÂ6Éó Ñ)ÑðüXñ PS´äëz•©·333ð¼^ùoâ´<”/4%è ̬ܿ<ÏyÄÑôQ†h5FêÐá8‡™yù™T§œ‰ù×;2Öm4µæUÔ”‘øJµ®wŪtee—˜ÍU^ÓçíÌík Óð…6=&”ɳƒtÛlÖk27\S«ð”fgu(Ïôì2”$–¤—b9m½n{NtdÔ‘wó„_Ñ^ýòF«Kó#w ã†Æ€’0'ØeþöŸÔˆœ«Q"Äï‚)ØÿÔ¿À\ýwÌý ¾Ù{äkVƒ! &D8b©È¦ºÚÚ&"7-rœSi•n)¼¹w%[ÒI±—…}€µìŽ3à#FÙá'#¥ n”IŒH6U‘Âeä8m«ÉY Ï)üGc¥èÔšíKšÛS꨸ͭÄ&äÆK’³(ŒF²$1‘‘r8¶–¥KXkEJ¤šÖ“Þ¤Ítº[OSkqÙS„©J‚SX9INeG'o|£o6b/ŽÖ'&7¾ÔVÖóF¥¸â‰IJQ‘|f`ܤڕV +¢œòâŽI>Ù±bÙ}fl–¿Žàð Iú7Pˆël<ܶV܃"eiu +C¦w±!DvQažÃŽTaµœ×1„dY6¼Ï!9Ve˜«žÅm$žÓ-¶°AÕqN‘0þ£zmI…Á'™`aöœ%¸ó©h‰&KÊv5]DGt¤ŒüA8¥›Iv˜ŒÉ6vEV©¨ÉzœBÏcA𖬲4šÈÓám#IˆË•$gÉ´ × ŽfɆîùš-bnáf3F߈¶Ü®VÛÈ À‰ùÞèhÿZÕéFëC8ñ± o‘ùÉïÑšýJ†ºû¾£b64EßÎE{÷É­/ÌÞƒŽHÀŸa—ûÚR"r­D‹¾§`?ÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D!îa9*^“É1Öá;€Ùh²¶¥gWzé+Ó±òÑʵî*øö_‰쟻§Íiø‰¨´8´='ÀM:žˆŒ9ƒP—5 “M­mNA#>R"5%&v½Õc?ì½ýyüHãøNŸ½wRrxÔ AÒ.çOe¤¶¤Vb¥÷%$¤8ˆæ yO*”d¬—2ÚGm£XVöчžý/¸Å§½[*ÇÍv¥Þb<†¡Ó¨%šÕ) Ì<]!o¾Qò¿•çj$Ḽ¹ò¨‰$w<¦Y~!ÂÁG7Gýw=ç{l]ñ4»Ž¹‚èï½QÃÐgÕUèx¢lÉØ¢!›Oµ="zÕsˆë*I¹•! #2±oÉþj—8D;­9ó½¸f–ß kQŒëQe¹J$›™B¢aYXSôxµø2*è&Ôê +"é%n¡$yšmãmKØdDW2± ¶•T·£Ýy¦ëŽ‰FV±™[h4¹Ú×ÙË`2jJ4܈̯Ëñ€j=»Oo/ÆA­FYs¹¯° ™ÈìMsª÷Ìwç¾Ð3ªù³ùï´Î£åQò[—Äc+XÏg&Þ@æé¨R3©9‰E™'á&þ2>pac `ø24¦!9!åË’ä¹Re¾oÉ‘!Â$›Ž8«\ò¥)"""JHˆˆ(Pµz\°Ü¹~¹#´€‰ùÞèhÿZÕéFëC8ñ± o‘ùÉïÑšýJ†ºû¾£b64EßÎE{÷É­/ÌÞƒŽHÀŸa—ûÚR"r­D‹¾§`?ÿ׿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐξ!£x¯]FÉ`qú—:%ö¸o&°5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pHƒ~†\àO}mfkíOÉWÄ4œ{´`l5.tKì+pÞM`j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘"ë.p¥«^Ç^Ù”ïÈŸˆhž/ÌÚÀãµ.tKì+pÞM j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘RçD¾Â·ˆ—:%ö¸$@Ô¹Ñ/°­Á"¥Î‰}…n 5.tKì+pH©s¢_a[‚D Kû +Ü j\è—ØVà‘FÀÈR—™&›­<¤eâøÄNRôìŽô"€ÿÒ¿ÀYQ¢ µ$ÌŒ›Q‘‘ØË`ÞÏß#Z´`§I·ç‡;Åo.”E¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬;Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÞñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó:OXs¼Vðº…æ8tž°çx­áu Ìpé=aÎñ[Âê˜áÒzÃâ·…Ô/1äõ‡;Åo ¨^c‡IëwŠÞP¼Ç“Öï¼.¡yŽ'¬9Þ+x]Bó2 yÇš”n8¥™-6Ì£;løÄNR¢öLï1ÔÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D1¾"Ò +ϭ©ça4Š2kr$(ÐM +qƉ´]Dfá© aȈî4®ÑSK©ü—žSk¸Þšj•®xG‰Ø°¶(‰è뤄ÆbK:û*C/mÚ÷S¬­Mì-ª².Ò=¤c¥JyÎœtÊjpÖqR™Œ™ËJ—‰Ô½ I,ÔÞß ‰&Ff›‘߀±6tÜIH¬ðŽ/«C—ÁþÍÁå4î«—ÝäQåä>[rÕ<$ËN`û¥Wéuô¸ª]N,ä´d—,†ß$í"Q¶¥Zþ+Œ¬Tú\¶ 2¹Ÿm†PDkqÕ¥I‘\Ô£"-§ã0‘¶v±‡%2ìèèr+E"Bú¶Y;Ù×j#B)ÙJ²v݆ ­ÚB\t2”°üÊÅfŠìæ"=Mv$¹2˜mÎ[ ÙǺî²Ê².M§Ér1Š\öTÔkÁ'é3U1¹>õè;mCÒ©1}R$W¤-H’ÛKpïo+Q¶ìØ\»g1Iöõr›Sp¨ÆD·”":¤6—”µ¨’Mš³™™ÌŠüƒ ã5›ÅÔ;TMxŽ9§^–Û2uÆhŒÖkmµ)Ek)rìåºÒN­K´ÙPÛlé4,1V›‡âL Ï¥£´óÔ‡åjL¤“Mæ•¡§¶VmxiJÈ®›í%†écuàâcw‰†°•Š˜Ÿ_1–Ô2Fû ¿ÞÓú‘•j$XðE;ÿÔ¿À\ýwÌý ¾Ù{äkVƒ! &D"ö’iòdb="©qèým6iiJJÝ×Ê<‰2##^Ò<¥urlíÔÙÚyìûª;Ø¿µ(ûßâ$€Ãq]“öK"éñ›uµ&×J˜JT“/Œ®FB]ºU6³’-‹i'±óáŠÕj›hPï +Á4¦¥™•–ì‰jSè[fv+œDÇlŒ•VêN»7TËŠixsVòZjšÒˆRêùKÜîÄä锨UäTd²ŠÅ]˜ØJ]2[i R wUù„ˆ™mNÊo*á%ÍÂ#éj“¾ñiÝÅkŠ§³^ÌvR®­ NaùõmÄíº9Ä1(Ó±aÒMB—M¡ERëÍQÞ§É6â)Åp'£’RÛÎ2‹¬”Ói2¾C"ØCg\^©æœ­xu9 +œÄ3(¦µ-¶)äC'”ÍD…ÂEì¢ç!­£nŠž·i;~&öi*éZ• |ãˆÇy|eŽ¢Ö¤Ï6ñ2Í2$Z;SžÚ!“kŽËî´²aÔ?™FJR &¢wœË6´K­c.¹Q†C‘ÙÚkeT*TCœñ•ey̹‡pš½“i +IBþøž‡×ÐFé-0Mõ­rpË9 ùy|CRÚ´.§ó)àa8tN…Jùõq1¶†è¦ôý4§ê+›‡©²˜Ÿé ÓÚ§­ÈéiÆ%=©J¤ŽøHJV¬ÊN¸ÎÛNB©:Tè»#Z…¨ìí9Tš¦›Ó¦sÆr|Lå†) ×1~$¯Ô$9.M&GSZ[4Í=…GiǵD²$¸ãÊW†ònF’&ÈË*ˆùÙhukm®Äôzv›ÚjY$ûZÓë Ë£s˜dŒ ö½§õ"'*ÔH±;àŠvÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D>‰FV±žÃ¹|¼àÍÄë´™™f#+¤ì¢¹Zä~#æ0ë¸_ Sp|i©ÈsóL‡%Hy÷–ûòvÙœu× JRŒˆ‹i؈ˆˆˆˆ + Ü¹;:–¥Zê3·%϶›º“.Ç–‚}—P¦ÜBö¥hQXÒeã#-†@ñ Áú! m)BRD”‘ˆˆ¶Ëra(?\깞c¹•o) 4Ìem§àòmäù’Ô’2%ò•ù~PÍÎÄWØ\€ Mf¢"5‘rù™Úç{l+ø€€Éì2ÿ{OêDNU¨‘bwÁìÿÖ¿À\ýwÌý ¾Ù{äkVƒ! &D`2Fû ¿ÞÓú‘•j$XðE;ÿ׿À\ýwÌý ¾Ù{äkVƒ! &D`2Fû ¿ÞÓú‘•j$XðE;ÿпÀZ#T d’¹›j±ÓäÙûäkVƒ +”W­ö; +Ü,›DXf¼î…η JXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬pWº; +Ü…Ö8+Ý …n Bëî…η¡uŽ +÷Bça[‚PºÇ{¡s°­Á(]c‚½Ð¹ØVà”.±Á^è\ì+pJXà¯t.v¸% ¬È˜µ´Ô²Z›­6ÌF^/ŒEå/w²GyN ÿÑ¿ÀZ3L fGc&×c-ž!½Ÿ¾Fµh0©Izßf_m[Å“H‹,p—ºeöÕ¼b–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„±Â^é—ÛVð„%Ž÷L¾Ú·„!,p—ºeöÕ¼! c„½Ó/¶­áK%î™}µoBXá/tËí«xBÇ {¦_m[–8KÝ2ûjÞ„³"àwãRó­J²ÓlÆgö¿‹ÊVƒ½“;ÈŠuÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D:¤lXÔ¬Q3 &+šøÔèÕ%?r6Ô‰8É ˆ¼,Äm™™òXËÆ3GºŽ•½7èaSá'JÒMe6}Z{íÒ£C©M¥©sB·¢<¦LÒfd^¤Í)÷Vñ )­:UZ/O× ÙÐÕNž¬qIúNÏÒjEáÔãH)­8üSiô,Ÿi£"qmå3Ì”‘(ËÌ®6žéìÏÌkñÛ‘øÂÅtZ“tç¢Uâ>ÝEN¢Ú…¦J™Ìn&“<挪ÌI½¬wäèžÌÄpqÛ‘õ[Å|2L^« =ŸUÂCZÌ„F¬„£,ÙHÈÎװé#*–ÍŒ y†ª’¢Â…ˆ H“)½lvZ”ÚÖê2æº *3VÍ»6Ûo ÊǬý™Æt 55QY­Âr¢•)'27ÉH,ÊNB;æIm2å"Úd1KUh3RkIøÇǘj\æélâMqÅ´ˆÈ”ÚSˆ3% ’J¾r4ÓË°öl +jUhRÖ“oQÝR*‘TÄ©‡Iô‘™HÕ ïe/2TYKmÈÊÛ Ñ·FÝaÒñÙ¤æÆM@ ‘>Ã/÷´þ¤DåZ‰'|NÀÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D0 CGÄÚQ©J©F˜Q‡iÍ´û¥DlÝ)’ hÖGq²R‰&G”ÌìG{Æ,é^é¼èùµIšê~æ2«¾“á¼?#½†jÒé3œ¤Qq>0SÉ&–û ˜¥¢$ÃA’Þu%´‰Â%¨‰y¹.cWi¡¾¥KF†ëž)zɽª—Z]z*àÎ.§‡+´š#¸¶›J–ÛŠÄõÇ©ðe%Úë 1²E™²7²È4™¡>ˆŽãWMJšiZÕT½Šª¥nÃÌoy:ªy:j[]*ü|çvÑ®{ c…ÐΩ¤aXòåS6Ì£©ÊÊXJÒí•JoTöb/s¬ÛÊ;YÖÛªu{•æu:»¡«¥$£_º~uJ§‹ÄÉ8Ê”ìí èÂYCSÌB]qn;ª5¡…."RÚ”« ÌîI3µÏa R¾ÔŸºUó©?qv]Õ ayph˜Rë3¤ +”ÇH£)+m…ÈŸg•àÝ(4©6Qì4švØÈfÉG7²Š¸ÓP¶smTüêN­ʤŠ– +á4Š„)ØÙrçS!Ñ–Ü,¼¹M”—%j\ƒ{:n%̾š’”§f¼™ãLõjZ!&ÓÃé6·Ñ_5­¸k²ÁÃ#á:[i¤º‰)Ò"ç,Š:‰Âhêî«„ƒ|º³#ÏÉùl9ئ•–Í;0¬ÞÕË´ÛÇNfBx´# »ΗG™+EYšK•6¸;mó]œ—¾;¹:‰QïKïnVå(ÒÛ9÷ÐßÞp|`•©ÈÉì2ÿ{OêDNU¨‘bwÁìÿÔ¿À\ýwÌý ¾Ù{äkVƒ! &D5¹ÚÀ sÎäÓ1‘Þû@À¹Ú×.|œàÌü5Ì¢ÙsÙñ€–ÿÙ:Ý +Rðüš”ØQÔRj+C’Ÿuç^qÃA!9RŒ‚3Ê„Ù)¹Ø¶ŒR¡B3URåˆdÔÉì2ÿ{OêDNU¨‘bwÁìÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D`2Fû ¿ÞÓú‘•j$XðE;ÿÖ¿À\ýwÌý ¾Ù{äkVƒ! &D`2Fû ¿ÞÓú‘•j$XðE;ÿ׿ÀZI®´¤ŒÌÛY/ ÞÏß#Z´\¡H·çw; +Ü,]H‹ ×Hêîv¸bòÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^BàR:»…n ÈC +GWs°­ÁycHêîv¸/! p)]ηä!Ž#«¹ØV༄1À¤uw; +܆8Ž®ça[‚òÇ‘ÕÜì+p^B°C.2Ô²qµ"ëM³$ËÅñˆ¼¥Ìì‘Þc¨ÿпÀÿÑ¿ÀÿÒ¿ÀäûíÅmn¼â[mf¥­D”¤‹Æf{†Rƒ„öYC÷æ¥5ëœÅy=Ìל§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ춇ïÌ/JkÖf¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoËh~üÂô¦½`ækÉîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[DzÊ¿0½)¯X9Šò{˜ç)ÍoË(~üÂô¦½`æ+Éîcœ§5¼{,¡ûó Òšõƒ˜¯'¹ŽrœÖñ첇ïÌ/JkÖb¼žæ9Ês[ÎF RL–¨sH2%.¥ÂIŸ>S; *¡Ó¥A²©=üjdÿÓ¿À5ÓàlVGït¯Ô•È~ݧã"?*ûmù™K e»€Ÿ1¼lùdu-ù óI˜–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$@Ô·ä'ÌA"¥¿!>b 5-ù óH©oÈO˜‚D K~B|Ä j[òæ ‘Rߟ1ˆ–ü„ùˆ$AbARŠF)ÊD_›#òî3ìÿ¾§Ìû˯b´?:î'ùòØÿÔ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Kiä!÷lùteü3‚°ûøFV+®Ì¨¡ TÛ§%š{L­Fn7¬%ž´Ë“iX˜C¶·­Z+:Å7Œê{ vTºuN ,#YÞAtÊ}[ÅSœô:U.%Už³–ërLˆ›[K;%eã"?ŒFòN”ÒRëºåûŸ<äwèjö—/hÇÌu¬1£¼=‹1*i1Ÿ¬ÄˆŠ|¹¯*lf[“™„šìÚHÍ&“/í¸ïkÊk³³u»­¦¢kœ¨±¦ªé¡N32²Rmê5£Ôh4\A‡ªRÒÍB¬ŠJ™ª4ÓKK‹"2u +hÍ*A_Âæ +9MJÓ›­/zêšgV¬EV4º/ÒÞ%Žß1ûcal"ªõ1UºƒzQ'V‰ð’Ôz‘ø\H5(¶mI«a—ŒiÉù]¥¢U*S¥½NZóúMíy=47Km4§ƒØôÐ#½†(õªÜÈõœC™ &±£“ŒÞE=ç$JÄÑ›t›ZRDÛ«{RII—)xÎûDš9DÕZx*#‘$j¬âŠjZjœ<Îͤ Ó°­S Ç¥ÕŸOªÊr ’T„$Û’Ä’ŽòRIØv½Êü¿ ãȹk¶›ÊI¯3M®ã·+äÊÉ&œâÓØÔx˜ãHe¬‰+T6[íÀ¦ë„D¥’HŽæIÙãñü–Û³U¼'ÄåÊ,¹ºÝ+QÈ`üÆ%¥bꋲ\iTJzf6„%&N¨Ü$eQžÒ/“hr‹wféKáUl,¯ÎÊ[ÜdêÖ‚ãÓá`iñªn¾ÕqÚ{3Ë"3ÃTâI¶i"åJ¼2I«Æ‘Ï—7i] {ÛÐó»¥w+äÑf«OLJÉ7 Ÿ„-QkJ¨Lª:Ϊ¦œÛtøí:ûéY™Ô•ì+[m¶ _.©«8JkMâÜ(7è©UZmûˆÑ¥Ìz“£ê%YÜGRTºœ*3¾rc4Uxò!¤·rAfW!™ò¶œªªU*ª§ +»ç“ +¦ô¤”¹Xœ“%¦Õ*XTÚœ•ÑñKÎ0‡^i´JŒë*4¸…¥&¤–Ã#-†^!Ž™U*µRW¨SƒÁ­Fz:w]/ +œc¥9?:Îpû´WW¡Ôj$æÓ¨°ÊXéµõ•´gá•ì{l5£•×z…ZQ^ˆnV¬Ú®OOººÜÓšÃLÎ?ÐB0Ùab£Tœº¼ˆðßKˆBM‰iæȲò’’³=¾Hד{!~ª©©B¥6ži8bÛ’Ý¡UN-ÆuÅiCÑðÆ%Ø~ƒQv¥Ç(hÛuÔ!>ßS;2ìÊYoq¿"å®Öšª­EÞè“^UÉ•›J—3;æ 1îðΨRr¯>}sRÈ¥Ei +ˆò™qK2FR2#Úw±ŒrNW]²j©]i9ˆ©L›rŽMM”9mKN"SZŽWè« +Q± EªU\™T]5ZÇYŒL¢<ÃÚwIæÖ$¼VËŇ+´­USTÅ7–—2—q­µ% ÍI5£[8e貕GN/©ÖªrÑJ¡ÔΔÏeµÊ”ù¨í±fHIJê?Ò!²åµT¨T¥zµ8¼FÕrUMUˇÚäæ)z§T1]”u—ŠY¥¹U7T„¾–…)HqjI)›*×+m!¥|½ÓEM¥z†“Z±x1O%UUL<*OxiG[¬è›ˆi¸Ú\©kÖÐ%Àf9%)6¥15FhxÏ–Æ‹(­³hégËoº^úôæ+¼Å|•+Î}êMmMé1¦ Õ-)0ª‘Ž;êi§É¤«ëo'2t™–Òñr—gkMjiÔÚíDjìÝ:u©ì81ÐÐ,;è%ýtbŸêäõ‰™ößSæ}å×±ZwxPÀÿÕ¿À6ÓìŠÿ»t¯Ô•È~ݧã"?*ûmù™Kiä!÷lùtgL/¤¥aΦRªŠ‰Yv²Ì„¥ æ3ŒLåR³)*IxD_ƒoÉyËZjjiT¹óΫ+k”4œ6ÑÉh£H)Šî4‘ZÅOSjUˆ-´ÅMÂy× òp•˜Í¢5’VñlØCNYɦšUʦ©Œ¦ÜšßÝ7SÅÒÔíÂg +ãxxc"±UÇŠ¯ 3ØDÕ3'3.­M5g’jÚ£¹R¾Ñ¥­ƒ®Æª)¢ìºp•Ž8¼ ¨´TÚSUU^JqÇ g\©éŒ0}¬S1Éõz}d”¤‘jÞU-h#q(ZH¾kÚûHÇJ9+³¶›5ºüiÀÖ«{ömU‹U&¼ÚÎÝTǸrS\Å/âJ|ØÆÍ›.#Š‘OpÎèZä<^ ´[<krŽ¹5¥URîªjNj©5 y–gemE)ã4´â–±OV&Ò>0‚£‚ñMV´ìtã̧”G\•A36‡àYÍ™³e¥úhR«m§)D¨rrUÑZ¦ó‡Nå'*&–Ú‰G®ÏŽö¦³#Ç­GŽiQ‘´’Y¨DYmáe2½ÌŒmб¢—*Š©}©!W(›õhnªZìrdº¾“p²|1]#ó- +‘5ØñÓ¿¯V¥´Åò–Ä©gár‹h‰G$¶TWKÓS¥Nõ`Þã½VöuUCÔ¯6¶¼cyÑ#é;b,:ÔI"ÐåSk°ª±šŒR]Cä· …gá¥VðiÛa\J\–»;ERn¥vª\Â…e¬áW(¦º*¥¨rªQ8¹Ç×tµ â¾"Ä´ÌeJ復 Á(RPê³e,ºÅ¤F[Næ3È]¥ÙÕCÃ\¨ÌÏ*¹]N¥Wd<Ž»£üIN¡Ðñì9²5OU)H9TzÇIÒQ¦äFE³mÎÄ;ò«'[¡­U¦üÇ.Mh©½:ék´ÍT-.aÈxƒ µ6Q¹F:2AZµÞ<Ø+7šY[™¡dEr#Ø£í9mV×¾¾ê§jjôv£”R®§¢ìU¾Nºþ–#S)ºIU¶ôJ…Z¸Ì¸GÖ4㑳uˆ‹)Xö‘™óäMóJ¥*šZªaêÀÙò”£OßDoruتÃÅô|[VGˆŠESu+’¦Ÿˆ¬ÍëH¼3A—‚fW4ÛH·ä±v«$½ÅMÆ„ÓÓÚq±åµ[~ê˜-dvÚn>Ø~¥£:Lj’¤ÓðäÇåΨ› mµ»!FjÕ¶dk4 ¬W2¹óUrzëç+jTÝJTàn­i¥SJsKf­¥ø¿cº]~¨©O*[R¨Æ̲Ùåg$šV»vؿߌQÈÝVuP¢0¯Í9UÊUwé©àýïžp22tÓ†X©V^rAÈešu.]-DÚËøV…Qòv‡´ÎÅàòˆõò GN7UiüJ¢_µª„ÔèTSò©m£¯Ò´—†"TðzLÒ~NÃ+i N}vªjY%³2-„YÌÍW·ÇqÚ×’ÖÕtÒ°®µòaKàp²¶¦hu?zªoÏ-¤tlIhXÇ¿J:tZ5BŸQ)p¢Æ׸Ûè“)™Õ9•W<Çu¶Ç{>M]µ5Ë©5 ¸Â1Z Ò«zk³ª–¡Ì¨œ^³’ÅXî‡QÒ.®Ç›ž¨©ö­eã[ZYL‰G—â#¿ŠáÉì*¦ÎºZƪ«kµ`iÊ-WcU4§Øñ7 m‡qd|s‡fÕxzqUzmAQÜu“Úi4:„t’’w#·.èäÕЬëJ]4´Ôã‰Þ»zjªµ8TÓOÌs4Ý(aÈx£6ÜÅñE +2”‰n2¤œ‡Þedk&ÊêJT³"Mü[LikÈëªÎ·꺩q:y›YrŠ(ª…8S2ö³…•¤Ú=gE’hÓ4â"8 +üц¦Tj"Ët!f§{$¹GWÉ*\¡WO½Å½¨{ð9ÑÊ2éza%µJ|10~'‹O‡1 Ójëª2l0£¶ÔÙ“ŠMÖÞU™{ùÄ'ÙTÚ÷J1{³"Z$¢á»a×GC@°ï —õÑŠ«‘ÿÖ&>gÙÿ}O™÷—^Åh~uÜMá@[ÿÖ¿À5ÓÌŠÿ»t¯Ô•È~ݧã"?*ûmù™KiQX¶¼hùdÍs8Ä‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹ÂŒÅÎ$f.p#1s„ ‹œ HÌ\áFbç38@‘˜¹Â–ô#Û®GÿX˜ù¯gýõ>gÞ]{¡ù×q7ÇÏ–Àÿ׿À[üá/ô5~øogï‘­Z "K;{”ö¸YAMsŸ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜMì[)‰Š4 Í(A¤Í´ì3Y̓Z–(Ùh6YÏ™=„îÈÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p 7ˆ±Äuy˜lˆõi½*¹r uö3mFÏ9ó'°ÃcYÏ™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î&ýÛ8Ë$#2œxŒõi¹‘e±r RDZ=Ã9ó'°ÃcYÏ™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î#9ó'°À$g>dö¸ŒçÌžÂw‘œù“ØNà3Ÿ2{ ÜFsæOa;€HÎ|Éì'p Ï™=„î&FÀÇ™©gb÷iä"/ÄB')ÒŽö'{NÀÿпÀ\ýwÌý ¾Ù{äkVƒ! &D1µsHüW^sBõ´Ö¡5PwœT¡¶um"êûWQ©°¯bª¦ah‰íM®ãkº%éžâsð1Z$H8Òéò)ëD&æºr”É!¢qÅ7«ZÐêÓ9nv3MŒ¬£=ƒlöGXôð97± &3*õVl¥ÓeN.SIA:\­šDYËÆ›ßâ”fÃMÇ´J~ ¦á‡ç4ŠB3Ò£¶n ‰M²¦ÒeµW̬äh"#ÌD£.A•‹kZRa¨S™ÙåM9äÈi„ø^®%´ø$j=ª2-„FgÌ[F€“fߎ)çŒ8|n—7 ×·¨Ë{_Y›-¯ã¿(ËÃHJMJ¯ãµ,§Ç8îýíz5KØgà¯6SØGÈ~#怉?±*AÄKUHŽ²3ŒH’ÒòNÃ6¬¯Þ<·°?wª°cÊf ³XnSÅ™¨ëy yÂçCfd¥ÏN¡ø”J3"Q—)í+ó€5r?;Ïý ëB½(Ýhg64:ÕC®Ôq22\'¨’(Ö’$šßaSîw,‹+žÍ·!Šj¼¥f×jz©É~¯,–a¿:;R^ÚÓ>Ús÷„)D¥~‘ÎÃ]¦®U`³)¨NŽ‰n–fã©äË.t¶g™EòN¡‡1ÍO­Ói“›zMIE”„¸ƒ2Y¶‡3$’£3Ag$š¬DJ#O) Rï+ËDµ¸5Î'GgM0êR B£áê¥Qé±eÎd£¦3dqbÊà†õä>Ñe[›Qc3RL•b!…Tâ–¤÷Ìw:c^¶·D÷™œI¨QfUȨª|ò“ Ûq+¿¹3KªA™òÙ*=†65ƒ:³O¥–iµñJÄ«¾ûmS<¤wZ‹ažËó„ˆgÛuHO¾ôVf0ì†RKq„<…:„™\H#5ˆÌ¬cƒ0uv‘)³¤0ëOC]JªŠ +I!Ó1\mµ“ª%šR«¸›XÌ­}¤0«SuO{ƒ5Síkr“»ð†‰Ä²n£X´šÒŒÅ™H+¨“{™Ëo&Òç›Iõš},ŒæÔ#E/ìï¶×º;'ݨ¹L¬\æ1&n±>¯’†Ü>úe¼£†m5åq.¨ÎxâL:heZÄŠ§ Š¦§!ñªÉ.u“¨35xf¼…È­£¥1Œf÷áôêœ'.ý2v¡“P9Ÿçþ†õ¡ ^”n´3§i àœi¥+õ¦)®H©ÒÞe23§XÙS# Ö›$ÈÈ”FW/Xq±©$ÓëÕè;ÚRÜ|UßQ„´×Y§T•ŽÔ˜ÑaOfmØÿÂkÒê•ì*+ɚē¹GŠ†ó[T[2¬Ôd¥Õ8kSV˜­k¥½»Ò©ÐüÚ„³“·c™4V1m^Dx¬Õ&Ê­QÞ:Lè&¢ñ¤£“2éØð’Âášõ²4¸FiÌwÚÏ +Ò]w±­»W£niŸº/3Ùçôœô™ŒQªZS¡Qã!Šýr·Sb16ò#χµËΔj›"ufw¶tŸÛÍÞ¡Pµ×\êŠf{´u]ªûÕM1®^+¾$ìóðK%¤|=L….¡N…OÁïFeÈ›•¹Ì!(Zò(Á+Û–ûGo|êz=ç}fJÓ]ÈëzV:\üjEQ ]zJ#U+]¬H˜§RU+V&xEÉ*R̳šMI2#m½Õå®êÑ¥àôzv¼NÖx]{^¼>ƒ¯höÔt|íRžŠ‹lèéÖ•Ã#ëR‰ }–Ö•¥Ô™©2RLŒ³ŽÃµªU:ÞtQ~9ÙÊT/»Õè7š)ñéQ´!1ŠbX–õ°‰¯“_s4T¨“!ËgW„EbYŒŠÜƒ6”ÅM/Ô'¿ÜqŚο‹w»à~:.ÃH¯R´oG¨FYG™ƒq 9¶ÔD’‘&:,¢2Øv;‘݃‹³½SYØÙuÝiåk_s;¦Žv$Ÿ>³WY¹2ƒ.Q™¸L%)sVW/·Vªæ[ýwÓ´ˆu5÷ÕŠùN£tÝŠŠg‹Ãï©Õo S±“jkªRXœÒ0zß Ž—š%®sä¢I-&œÙ­|¢5tÏ9ñiî¨ïKÂWâ‰.P0 :µ,g’S¦»Rq÷V¬àÃŽ¯­¦G‚“5.ë4šRDi# wyTµÜ§ÎýËxyž“4%MK+õy”Uá íz9£@Ås´`ª=XÀRÚYL­B$"DV–•¥Ô™‰²“c+–Û ©:kt§º¢=-««îõ®Ž0¼zC“–ˆ³]§×"A1‘å æI>á–c,䜤³2+! kPÕÝv\bŽ3&Ô¹NQ8Mk¸àt7JeÚ†ŽÙ:‰û!¥*j걢ГS..·!59‹w2ÛqÕ ì£qy’$‘™fÆ&V‹‘¢…‡ž}&-f}låéx­‘À—RRXi²nŸÂf™$’êK^rág¼-®ç>cåOƒaµ1uFˆQæ1\Þs¦qó¸dÐß#ó“ߣ5ú• uö3}FÍ>è¾R#BaÜD a%Ð$H7kR«x¥¸´¦˜uÉRW-Å¡‚Bƒ¹,ÔVQ™$‹i™\E~êÅP´µR=U½í«©èš\ù©¤êøâ 4Zr°µjHõ8&eJ§9S‘PPâUœ­6¶ÜIgY¸f¤²¤ŒmÊêMÖÖÈÍá§bü™B¢tcæXèóæŒìW«ØrÉT*Xq©Óbër¦“g"uªA™:›º2QŠã¯(M»Kº] ­¾û‹IPêЫsÊе:žõ[œyäåZ™M–Š£( Èë[)mæªr”é©jSþÉJZË>ÄÜÂÎ/JÅ\Œ0ZiŽÜ;1‘i1MéÍëžÌ{Œ½¥Ã§ÄÄX£ˆÚmÌ;Ú¡KT† ø¬Ìr:S×Ñ•e”¬âR¥'*V¢ÚFd1)W5hºÒóÊž;M±tÂë)óCôÁ‡hØ~<ÃÀ% +¥9ŽëÒ[zÆ©NÆ”¦²¡Ä]¶TáÛI‘¦Ä[ʘtN›–›±tðhýôh½Fü/q3'Ñ!0C;ÙMR†o2ʵ­”ÔS„IMÌË)™Šã|/RÞ‹Êxš)»TiºÌŽ›§ÖÒŒü‡ž†™¼(ÆÌWªMT N›M¥ %- š Å%<ÄgrÙÇVÎrÎ8^~me¶å¤îp¼úLÍNÁôÚ{Kõ4vdÍyô°Ã¯ÇKª6ø¡’$5¬I‘”v<¾èìG{´ªŸ´ëÛU§ŸT +jûR”Ù÷¹1fŒ¨ôU':åS‡uFBÐä:4<3†ãUãoFÄuæèÍ©·H™y2æ’ ‚²Lf$æ² ; íF,ܪ3¹Âð«ÝW•åèŽ$—À‘wó„_Ñ^ýòF«Kó#w Ø'”‚ÓÞ¿3î0´‘GCz3‘ˆ°^ +]z½9øÖ‰íR—Ouè™ -°f³Sdi4$ÖƒØ{Fö*/u+Xã^ï‰î4µ–ê»Ö¡á®›¸ñƒ³bN%2Á*c¢a"©×Ü[• +QÌ€RAyJI6ê'u&¢JRj#$§1 èjpW&±NòqÚ´lÀÆ™Œ]å0þê×|NÜLÝ ºs4Ì.„Çy÷a½P¨ÈŠoÂL$”w¤)I&#’׫Ž{M”™’²]%°‡j0¦•’íÒâ{8Aάjoof…>¹‘ÉØÑ2© Ã$éÙŸ ÖœUpÍGk8IH4~tà> óêòø¾Á˓ǸÍ{ï¿^Ÿ?¶ßt5îw(3ô™÷CÔˆ´éúGqŠ{QÌSPʤGKF¶µLld’3MÌ̼W¿ŽáÉÔQ÷ªþs¡Í_y£æ£ +ã¥ah¸»KÞÉ©èyé´JLzbž†§ÔóÜAjb¨›UŸÖ ²™+ï³g:׸­/|êÃ?{NŽÓ¥ÝPÞ„±Ëß?AÇbª=[Øþ2‰Xa÷'žŽ°Üifd¥-rS!âu9Šæk#½ìw¾ÑÞ´ªªµ¥Ÿ¢N48¦—÷[C1bªÂxÇEkâ˜P ´íZ2PÐM¢CÑÛÔ¤Ô”–µ‘šM[Mw;æµö¯žŠ£Ïz—¤/¶¾õK&¥=ÆÃxZ, 3€*LÒÕHô€ú”˜ÙejÜŸ= Ìæ\úµ"Ädg”ÓoÅ‚Žn:®~C7¶Çœœ×ÎD¼Âè¡!üAÄ­’:“§R²]NiÚ¶ó¨õ›Àɵ6ÛŽ«B÷¹âq«N;;°;`2Fû ¿ÞÓú‘•j$XðE;ÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D`Öà—!‘sÛ·—” 5#2ä02 ïÊw. sˆÀÉò9Ÿçþ†õ¡ ^”n´3Ü®c.C ”e²à .~n@€`ú%rC;€ÂK'!§Z'VÑ­&cFIq+fI™‹”ŒÈöøŒ“)ÁÂal/@*u9.jÍפ8ãί<ûë7uÕžÕ-j;™ìæ""" X$²Aâç3°ƒè”eÈ`dÒæj3å?ýH š€ß#ó“ߣ5ú• uö3}FÄlh}<›Q—!ŒÉ“KžÑƒ¦£>ShFeÈ`™žÓ= dÐ ™™ò˜@¦f| @È»ùÂ/è¯~ù#U¥ù‘»ÐqÃcCPŒË®c½ï´ÆdÈÌw3¿/(ÁƒC3QÜÌ®cµ®O0}<†Òàíú`Ð’0'ØeþöŸÔˆœ«Q"Äï‚)ØÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎËJ"37ÛBVm ò­KÊ„¨Œ[JÚ¦«³àiM-©ƒ™°å?xMa†ø®#¦™Ù¨²/ªzäFKBò™$њ糔Ȇ‰M'çzT·£Zmy–“œ‰Y:CðãËiÉ1Ûeט%¹¤>F¦”âÂA,ˆòÜŠö>a´pqÚkéÄ䆾Gç'¿Fkõ*ëìfú‘̈lhGü#§Dbei +;ÔuD•…œ¨›SÙ‘P‹ : ä+)eúê M!šNæJ!ÇžûMÚe2»Z[áù¯v¨Î1ìMî”v¨ºbÃqèÔ +n¢Í5êµ65Kƒ™¸é²ÓÈJK6Ðy[Iµ‹$£aíåí"š3£Òq¡:”šÉÒÝ>1‰ƒK:äJ¦*¢Óèmå2¯ )B ihÑe$ógÏ”­c;™Ò÷¾]U=þ]8'›ð?HúZ D¡ÐjõÊ”h+«F)-4ÒÜ’F’+­HÕ¶kSh¹fpÐI+í2®¥K‡’{Ò{…4·ŠÍ­Ìåk:N´EDêã\¸œ:2['SñnI×6L¡f´™\Êö-¼›Bª’m=Q=¿€-ⵟu=%áj<*uBMmŽ Rl݆¶³¾rI”¶ÒÂV¥!$djU²¦ûL‚ª•.Ÿ³?0¦–ñ^nÜŽ:~‘£"£H‹O&fD©Ò*•ff!òÕ!&’#I\ÖíUürÖº®Ìê¦xÁši˜ÛTp“ªÂÓÅçÐiµ¬9R ñâÞe$Fi6mF„º†,´åR”Nl+&ÆD¥ ÕZU:rIÏœ*IæÚÜdÃÆt2:iq£?”G§Ä;žWb2„¸ãÄ«X”­&f£.Rñª÷-§©Kئ$ÖœRk[…çÒs°fÇ©Çbd7ÐüyK¬¼Ò‰m¸ÚË2T•ÃI‘‘‘–Ã!– Ä›¡€"ïç¿¢½ûäV—æFïAÇ‘f2.q±©ãinµQ€xšŸ„ŽVá e/7,Φë(ƒªSPÉ£Jš%¨“­Ö)²5|CZjnQz#bzõÁÕJÅ-*{cJG/M4kxŠ‰X–Í9Ú]IšsJZ–¤½®a—PâÔHÈÉ)NäNu(ËaÜì3KM,Ûj<Î8šÔ£Ì’{ÑÚªÚIÂô‘R*¶›™”©¥g2iOš'V”š5ý¡8¤š®V½ÁT›…œvåç–”úÆgP¬éat™Xž7’ø–«@¦ÜÞ2Öñ¹3w ²ž]V·“nkr•Æ´Wy¥wxL›ZQv™û£«‹QÀîs´‰†©ÕtФÖXnzœC$Ñç±<á] )ÂI¶‡FYP¥’•r±ÈmMJ§ÖªZRÎ=ý,`øÓÜ¥½ˆ#¢[Rø­¨œ"jQå³./&D)Y‹.e(̉&f1MJ­w¬ UKZOÚ¿¥'…æ?«]b,ˆèBÞBÉÃ&‰ÏpN-(4¡KûT(ÉJñ…å£lvä.½&ⵤ\3†çµL©ÖX)z¯­¯9’5Çfõ«JM g=‰Ö)9’ã2¦5úró‹¸O¯œëšHÓ G0«*‘5—*Tø.L(&¥‘«*MM¥Ç…%a•‘œÈÕö¤cJíìŽ&ôYÏiß©µØ•a‚}¢˜¸‘æ9œ#u¶Ÿ/Fž\¦¢4’­c21Úºb¦–§ÑÜq¥ÊO5'252HÀŸa—ûÚR"r­D‹¾§`?ÿпÀ\ýwÌý ¾Ù{äkVƒ! &D0EsbaŽ¥Ô©?E§Rii§ÄqPX”‰®TY1HKÇb$% ·š×35 ä¬ï^o_¹ìÒßk|®¸I/?n…üÇøF“_Á3´xÝR6±§1 i¤*T˜®%£‡9† yœA4‚mÌ„jEÏfR¸ÚŠšwªÒ臱ª–=©,|Òk]*Z/¦¼Î—‡7 é˜o U«ðå~,J¤8Ôü_ŒÝ–Õ!Mñ„vç:ëHu "ZW•eg Œ³*×±ŒP¢š>#Xj÷R»0 Ú·.¥÷j^:┟n2gQœÂ”†ÊF©)Ê­~\³)Ž·.\~j2›(섲j$]IFcA¬‹iš­½*iØû&\O®8Tå·æíˆ^» â2hr?;Ïý ëB½(Ýhg64#F5¥¹>¥ˆÞ©`ŠšªŒ‘¦…YùÛ}ö ¢6’ô„<‚C»˜”—ˆÚÉc+‘™ 8q…Rôhy<¼òwMJœT/>Õàtɸ+Ĩȩâ®M—S”غÒPýF1M•ˆC¥XZ:ô¥ kû·ÞgÓUtL¿7Ý{uö®äÊ©Ô[*Dˆæ–¢¬æºÊ‰ZÄ¨É Q¬Ôͬ²Q$ÔDWÚ6;ý¦èónØsã ò?9=ú3_©P×_c7ÔlÒv2?ŒlYTÑÆ&„ñMV—FuX‚%o=™!ueQJmÆRw±ëPiq«™}q 下]šI,nԚצÖìòU5.qÎt´öªRãŠ>jXo–U TZ£(^ +¦ÓãñK !ùSÊ;½|¥Ým6Ò9S™(2RÏ1¨ì:rº]wã\FO &œ™ªn7ªg5®&FÂÔª½6µ‚eH£ÎCƒ8¡åjÑf¥l/Vùݲ2B¬£,·+_i¶ØºãáR£²ö|NT(Tì©ÏjHëø\ÑóØF­? O˜„àö©5”½&$ÆdæÊÛÌFI|”Dj#4’D£"±…uEåz›8ûÍ-5ÇÌ)¦aÌEUñ©4øq?}hò½ƒk,êpT”ÀÂu¼“%5Lš’d¦),•-¶x&I;¬0©‹ËO¸¡Nm*“7uL?»Ôã$⹄(8· Ò0M6U§;Z›2^¥FauFæ90ÖÜUº²R˜aÆì³R,F¢,ËMŠüꥵ†èKkKÞÏdÔÏÝê}“ƒK×Q¹Ñî Ä0(¸ +<ª$¨ÎÓ°¦%§JmÒ,ÍK}L“-¨ócs)šW%^ãÐÝ-~¥v­Bš•äÿ·ÙŽ ¼“4WÊM> ÅÈã ,¢:„¶ä|É#Õ-(3JTŽC"3"2±Õ,N(äÆ‹¿œ"þŠ÷ï’5Z_™½V3±ò(UMäÖiš§h³1ŽÂPð}? Jr¹OtàEœ¶’ºJ£œƒR&-âq>2«©½Žë )$Èî +§R¥DaJ{)&öÊXyñ6t¤ÛÓMv¶ÒÙ‹ÄØb¬[™@ÓlhÔ§~·QŽì%)Í1´E†ŒÈÛ´‰HQmµŒŒoNŠvZKó_Nw#i;n¼7_K”,Y_)íPêËá)®S˜¤ÇŽÔ9ñ™(ë[ó$lqçhZujQ’„¥*-£–2›œ-'d^Nv¿IÑhûÄm˜j6#·bL%[¨OÇ’X¤È[u CƒfE<„Fìxe„,ˆÏ‘¬ªÏ}¤i>Qš)Š“ü:ßd,Mmц£¶jÉÕ*7«½/QæCÄÑTÅ%Saå¶ÅÈ®¾Ì„ÈyÒmKBØÕØÑ|êRRI,ª¹bƘ»3îjo Ý:“YéÑž“kW7žt¥·ÞªZúr9¼E‚k²ð¶”a³Hyr*¸±©ÑJSšLd¿ZäíÚ’&Ôw=¤I1­4»´ì´—æç&wu+Õm¢;nDo:ΓJ] iŠ˜ý)ùÉ©Ö™žÌÆÉ ˆ–ä<ˆyÌß[yƒE’Úˆ”« ÐFJÙͯr©ü:¸Ú'ô<¼Æ󋆣u }?IÌã|X•UÒ7aâ)Œb'Ṛl¦™¦ÈiQ™Ž¶å¸¦Ô¦u*lÍF|¨2ÈF«è¨Ôåý¨Þ:!´ç²4l9N‡‡¼Kl¤ÔvÏyúãœ;]MÓ6Us2Ӕǣ6—Y|¸½¨š—œR‹V¦–Ѩ‰vÌJ#MÌ̆m¦ªZŒ]mì†ÓžÈˆ3eÔžT%Ú“QÄ‘”ñ¡9Jy§Y¦B5ÍSh&–dFƒŽK¾s[fF¥$Ë)ˆÈîf$ZU5T×[|Î=‡ +SJÙ»Fk$`O°Ëýí?©9V¢E‰ßS°ÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D`ëx›Ñ1“,Ç­ÓZšÛ+Ö5¬ÌJiv4š›Z +A™‘šTW-‡rºSÒlªhå)ˆTqéÔØĉ9a”’„ò؈¾=§ã3Ú{FƧ 9Ÿçþ†õ¡ ^”n´3ùœžý¯Ô¨k¯±›ê6#c@ÉöQ!·p®‡¤(®et¨¬er±–ÏÓjL§‡°Ý/ ÂE:¨QP¥¬šhŒˆÖ³Ì¥¨ÌÍJRi©FfgÊc;2698Eýïß$j´¿27z8lhJ¨hß Uª¨®L Å~ …4½zÐwRÙûÖ›äZ‘³*”“4جeb¦”œ£gSjݹFMM#}†_ïiýH‰Êµ,Nø"€ÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎÃ/÷´þ¤DåZ‰'|NÀÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎëG¹”¾÷ŒvCÞbÖ0û´OÞ0ž+q±Á8cÓfÓ¢ÆÃòèðUEJ ‰ Ê¥4ëͬš::Ôµ¾c†F¢º$’i#°ÅÖék¸ÒOJp°O/>ÀÚ¼ŸÝ“•¢%âÖI²À8_hÕ8jªæ•RqX:ŸC~e±¯‰:#«t‰Ýc¨N©y쥥JÊiÚFFC¥m§RJeSTªbÌMpq²ª÷:¥4~¸Ëãj‰O"‚ꘆ‘;~C¡7SZ'Û–ò”Ûü¤V3A–æ9ZÒÚ©,pQ©hǶtl:YÔ“¥¼Üëzpúv›9 N¢Oi4GÛyíÄ¢!•›d¾1iK%Gس,Ö±‘ß-Œ¶Ž–ÊõUµð vLî9Ù¸T§ªüöÄ–;à ‘Ž°•!¤YœM +ë%ÉmÄÉB”žg ÂhÏìD3 Ú½joö©¥w­ÆjÍg{7ºòHâ*Ó´8§-ªLÚ¢ó¥<m¸÷…{ªÎ8Úr—Â¿Ä Á„¤è¾Ù³ÿ¢óú$Ož ^ØÌÝ7p4‡6t¨ñ×1dº´ ß~,T´ÑÛ2Í2”d’å;¼C4¹0Ô(dÔ2Fû ¿ÞÓú‘•j$XðE;ÿÔ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎÃ/÷´þ¤DåZ‰'|NÀÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐΊ{0•¶ëàÖ굸ҕ¥*ª)Ã~;ˆ–Ñ¥f›’’­„¢21ÎÎÎâQ©5çMϯ˜Ú»KÍζŸ™¥&ÆŒÖoaÉs«Ò§K¤U&U–ó­ ŠC²˜uƒi(#³-!.x M픹LÌÇZ=Ìl¥­øÉ¥NgkOv£a7Dh}Š‚cÖ\aù8•¬LÛªŽ‡Ô†õdL›f¤çlÉO2U·”¬5{÷WWmëÓó…í?vIn¯V´õQºüXø¥Ø‘k5xõ·ÛM=—áL­— å,”¦ l¤õfYˆ¼s.ÁŠi»uªòß8æfªævÓt`v¹Z(.UNRªn’§âv!YI²‚Û-“%·Ü/TFj=¥}„v +(ºÖʪ)5Eu^MgJ§s™:æÂò'i'âÅÁ•ž˜¬DŠ™mFìã"nT–RfjȦše²YØ—c2Ù´,T*¶¼3ŒÞÒÜ-qkbÇ-›“{Ì¡‰¨Õš·âŒHåW›Y’ izÛÚ×á <¹~.[íiæa4u_a¸Ïú2_û…Mõ.¼ø#2²9šĔو~§ŒÝªG$¨•t¸q‰Fe±ZÆRK,¼Ü‡ã¥A†ò;Øɨ#}†_ïiýH‰Êµ,Nø"€ÿ׿ÀYI® ¤•®m¨¶‹“œÆözQŠ´p©ÎÛݵß#x°uzÁèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.›è°\K 3~EgQâYÝ»®¬Q•N Øñs¾[]ò7¯zÁ‹£‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀºoQÎòs7su³û*-±*ñÜk{ǨÍÜ —;åµß#xÚ÷¬º8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ £‹òÚ/zÀº8¹ß-®ùÂ÷¬ ¦ýØ.(ÉÌÝÉÇ쨶ÒO!ÜjªÅöj6tàl8¹ß-®ùÆ×½`Öèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.Ž.wËk¾Fð½ëèâç|¶»äo Þ°.™°¦”J4ÖŸr²W‹â1”¹ƒµ’ƒ»ÇP?ÿпÀ\ýwÌý ¾Ù{äkVƒ‘…›dC[0Äbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sƒ¿3Ïý ëB½+×Q²ÐÍ…‹˜m&¢ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ ò¸ߣ5ú• gÆm¨Øع†Òj,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á ä]/ÌE{÷É­/ÌžƒŽ±s ¤ÔX¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚@±sbæ ÅÌ‹˜$ 0H.`,\Á X¹‚A’0'Øf~öŸßœ«QÞÄï‚)ØÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D0F(ŸXÚf‰©T(Q(ÑjFõBdŽ½!æ”Y—%‚J–Èö\öžÑ¢mÞr”:x¦ýí% +4ϼMæÒÓ•\=BQ¦»&©Uz{¢RYS¼10Z%‚yHÊÂÐ’p”µ‘-$JQ™_*¹IÃÆ™Œ½g‰‡L6¥Bq9úú×ÛHªÕ| Íܶåu™‰’›’ÃÔÈêQ´¤™–­hu&•‘‘ÞÖ#ñŒÎ ­Kz^“7wÞK|Ÿ8oKqåÑ°«¯µ*«R¬ÃvbZ¦A2V¡•äqõ4ã¿[m&i+ÍJQÙ$£Ø5Uèø©½‰­&:~3K±¼ªn–©øŽn‘L˜MÒ«‘kRL¤ÅRR)Ä’5ç5‘2H<Æ¢RLÔV÷&F6¼–/EËÝŽ1ÜÅÜ!i¿w·7£” éz‡ˆ„ËQçÆMF4‰”×åÄÔ³Pb:s¸¸êÌfvI’É+$)H<ÄF[F®Ñ$ÛÂ)½ã3*Ͷ’ÖâuIñ…´ÃEůÐÚ£ºëȦH—RĤ²‚qÄ¡YÍD¤§m””’ˆŒÒj!µ5N'k x£Z©ŒvÇn> ü%é!ʳʳí'‰pÓDËkJnä™­4nÈJNþå*[m[왶ø†Ž·uÔ±Æ)YêãV†ê„êTì—³_v=§ƒ´Ÿ"¯ÏÇ.3~tÓUàì­-¥¶Ü†ÛwZ¼$:”Úçu¥_¥³ª)—¦n¸ë'pkÎh©— )^f§„9óòôµI‰¨ýFJœõ<á‘%CË!Þ½\]J[ZÒæµ~ *éVÅBöû×c\éÓ:£3ézY¤F‰5ùpª1eDœÅ1Tç¢~nrd„’Ùi¦Ðµ!Ãq'˜”•šH‰F¥')ÛÓˆÆ[Q®V/Ç#7½I>Ç‚ð4-.Q + ©N19©1§µJrš¸¶¨pç’Ki„´J4¨Ö“%¥D³A¢êÌDGlªÓˆÆ[]«JìÓ„)ìz »ºKfr©(†‡à¼ºëy±gÃQ>…¸ÂÞÕø+ÊœÉ$©.’–‹lÚg±MSRK]íô¦ýs1R„ö]âÒ7Pt±GŸP‡ *fléؓ܈h‡"drY­–ÖjÏ­¬’£A!F“²Œ)ª{SkjFj¦;Od˜î™êu|ùOÓœ¤ª6-f‚…ÉŠ—Pó ––2ZfO„³ðfFD¢¹ ,mj–þ©Gš÷†;MílI=÷|Lƒ#K´(ó݈¦fðVª)¤¹SLkÓÑ=J$u=›5ó™ Õ“VK<†²VÁ½ª¢5Ê[cð;uUCS±KØÁí1ÑX•.:¡Tµª¼M.qCüÉi¸–Ò…¹žùT¥¤³¥*I‹1¦ãVª»6–×-GS±KóB~“,XÌ”n`Ð ÈDüï?ô4­jô£u¡œxØÐǘCÍ®×ñÕ2I6LQ'ÂГ%›oÁjJµ†fy:ÎÆDV+¼cK:¥6úÕ-Ñât´¦#â§Åøã>á_ÓʮƑ +¤êh+a5Iá눗ÛKˆqkÎF¤åQ²”’#3MŠç…Z~k×gTáâŒóo„ƸÇÀ×銇ƒÝ­"Dj„´Q"¢eQøQ5íCiÄë&jZK1%£$ØÕ”ŽáU¢¦[Ðœ7ªrâ)³½­Jófs-é땦ӯÍI¥Å¬I»En )§^o'…á/+JºvXìW;ŒÚT¨½?ÃÝ&(¡Õv>ðp•-0Ñ©ñš–ˆ9ŒñS5© +‹XQ <“R]|Íi";" k²Tyl[V•ªQ/RPêˆ×¡kfú³¥J=!ö£µuEgOMYÞß(ð|¯»u&Ä«T§3Š±Ù# +ëTLü/RõE7¢5èÛë&Õ½.ÑæC¤Ê¦A¨ÔÕR¦¦°ÜxQ Ù ÀUˆžu*ZI$fv$æ5¨ÈÉ);ÚÕÜm=Q9)Å¡^I­m¥¶ÕGÆtšúhÎSÞ\†jñ:#ÈeÃeL#%ÍNeÊ…xed¨ÉGe‚vËXµ’Od=º§k]¨í#|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D11ZÇ•õf“}-ê$:{i”ËRO5%ç\-[‰<©4->ÞOÅ4¯u:Ý;’©>ó5TðJ®-Gq‰ÛÐ¥Uˆ8E3©,V‡eb觪¤¶3Óg¿ž!²ùTÊÚuk;n›ì+ò¢‡ƒ«rëÇZržÝ*©KTà¯JÃf+‰Úðî‹j”yx +B`Sá·K‘ˆ¥N ÅjÙ:› +CIA¹u<²3"qöcº¬E°tŒü6éÙ-§¸Öò™û½/±(Þtº9z“€_¨È¦¦kxze&Tiu$Ch‰™I”O3!Ôê—Õg¹8i2RIYL‡®NÛ:šêkµc¨Þ¯t¾÷[óÞdzAøè÷GU\Y‡ô{.A¶ÜR¥bÆ&:“4©%ZR‰‡mdJRLŒÔW±’r™òŽŽÊiTþ¦žØ§Wa…i ¿Ã®®Ïu¯´î”,Šå{‡W…$|%[û2Éã¨H\#€Ê›A!&Óy Ö²_…˜É$FEq‹j]¥êž ÑU1¶¨œrÀYÔ¨…©WK‰¾8›ê~ÄtZfŒxMÛŽÛ´+¦©NT5Úîx1EJzëO³ÝxŸ}Ôga<+ƒ›’hŒ¹ìLÄRÚm>æUªcÆʈ³•”®Vʼ›î…4¥¢žÌR÷ê¶þõJ§…ÕÄURªVsJí¦§W¥£¸M¡bÌLå]Z™OÅXOc‰ñpÊjpës`ÊŒëuHÑÔ”±¨ËJÛzÆGo•Œs³N”×ݪzu8ð;VÓŠ–æüLo¤ÝcÃ/÷´þ¤DåZ‰'|NÀÿÔ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐ΋‹ Œ96 v‘H]Y˜3Ž1ë#¨–I|–ÛÊmImi³ç%¤ö[i¥pœiQ+)ÐüØ3Z(–§C˜ÛWkJ؃Žh𗆥Já˜eg Æ8¦òá mK7”úZ$)à#1¨Ìȹon–®íu(˜ó¬kŸ;Áh4³W©¥ç=¸Rû4³¶#KjQè.PéSªò+4õÕˆÁ2Ó¨†ƒJ·NC¡&KQ “˜Ô¥\ˆŒˆÌ*q£Iá“Ѽ*sûV“kNª“Øj5“P«;_‚ýB*c6ÒulÆy >O›Î ›SkU”W=©2+¯”åÂÉ9ÕC˜Rój5ÊÔrúdÆU\†ž«QàpÉ)•œ¦¦É)CòZiFdêÑ{’%cØ£#2±Öª¡¥Io3J”ÞT·¹Jþ—ãPª4ªJJh±Ø“Zr10êi©y:ÂCŸ]#uil³­,’ò£ÂÛr!Š­)Rõ' ꜡1 {§ çPŒêUÒ”%JRŒŽÛ +áUwgbMì•&i¢{[K³IÚ¨xꟈÓAvœÌ§£Va.tyIŽ®†Ñ—Ày|¸y¬”Ó4«˜o®6'²1®©ÚÖïX;˜Á€ ò?9=ú3_©P×_c7ÔlFƀȻùÂ/è¯~ù#U¥ù‘»ÐqÃc@Éì2ÿ{OêDNU¨‘bwÁìÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎ6‰¡j½6 •ÅtzܺEê4¨U†.¹!²î¥Í¨UÉI4©'°ÈËo7KÕÓJÇS¥Fì_{Ëo¾©ùÓz<ç{š4¨áêì%3K Ï¦È(‘Ó³•*S2.Ë ¤–‹*‹Äg°ÌŒÌÌtX7ñi[¦{Ì7*>ìÞõlÒ®Œ°Äú]1L”Å9 öJB”†”¸²Z‘‘JJTi%jòæ±Ú÷±ršÕR{˜¦1O]-oPcªÞÆ {*ŽÕ5´cVáÊ“)ÓU2O(o)¢CV’ƒlˆÐWló–ßös®ÆS¢png^1*;07¦Ò«ZQ°m§=¸œÁèÂdX˜î GZÔÕè”úU<Ö³ÌJ‰Ø·vÅ°ŒÔ“¹_eÆÖÔºé¯:ªoz¥z lZ¢ªªiKïÍúLIŽäÊÑÜœO4ØúÆCS!¥¡øQžˆ…ÃÈÊÓ,×›.¥*K‰VS?W-yMW•t¯„åg-DF½ ZÌòjnÜoà¨Ùƒ>²wñeJ6<'“ƒé´ ¬Í}Æ è䥓¤M¶æ´®á¥Hº ;c;tå4:ª­-Gd'O¤Ö´©¥¿‚ߟ ãaèN¯Cc In“D­Í…†âPe±RZ’ËNÆQ­¹,¬™w2n¥Ñ•&¢ËeÖº1mGºTâõ4£µ*ðIêuv¦çyœðÕ*±†ØÃÔ„·È ©¹¯²ßQIF\…3I&ÒÒŒÖf[ > ˆîc«röBóÎŽãž®×»IÞ o‘ùÉïÑšýJ†ºû¾£b64EßÎE{÷É­/ÌÞƒŽHÀŸa—ûÚR"r­D‹¾§`?ÿÖ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎu·—Zq+Bˆ”•¡D¤©'Ède°Ëã€4aö䶗Yq.6¢ºV…’¢ç#+‘€?P0ks/Çú`dÐ ¾Gç'¿Fkõ*ëìfúˆØÐ98Eýïß$j´¿27z8lh#}†_ïiýH‰Êµ,Nø"€ÿ׿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎnÈÔH–ÚŒ%G«“‡‘¤Š¾#}ºf z¶tØj—Rƒ&$h’_ä´ºLðõT“&Ò–ˆ—–ÊRfk+ëkUMÕVMF‹®i½/y¥4¥JÎg5 íTŒO‹ô‡Q•M*ÂpÌŠV£Ô_(íƔە +ŠZõ«pœIÆkUk6¢Ís=f«MM8†’OF4Þrb”’¥=iÎx8QÞ|V1F,­ÊƼ5Nö%Iƒ);/F¨Kzæ8ã¦ñ-\ò’”)'c5g3"ZVÕ5V¾ „¼É7ßµ)ÕMZÓçm.ã†^7ÅxÄñEB rŒÅ? +QkÑ£3;ßšåE‘!hqO¡Fm¶’4•”eöÄ1m[¡WRø5`¶]Nók*WøIÏÊŒz.&ÄšE‘2 Nz…t\ulæÒŸ»Rž£'èþn3®Se±=åÓO¬êÒýB4eÊ—KA!ÃKÍDuM²ù’¶X—³ôËI¼ÜöJ^‰9¸M­Š<î'Òf“S@ùœžý¯Ô¨k¯±›ê6#c@ä]üáôW¿|‘ªÒüÈÝè8á± dŒ ö½§õ"'*ÔH±;àŠvÿпÀ\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎÁMn˜Z3Gs¡Ð¡aÊ\5=L(QÛŠÃW3ÈËiÈ”Üö‹`Ú·{N³JUÝ?ö”ˆf”Ë¥EM:©­*,ù -È+^±QÞSkIºÙ¨Ìì«òŒ®cGBzrKcKAº­­íö½';…ôoAÁ§H:Tgâ˜NÓ¡g}ÇuQu/EGr%%9osI‹`Ìc:á.Å Åì#k}¯IѱN‹Ä|4Ƨ2¦¨Ê˜M¤ê’éÒЙGdÔÈä³È¥ëZTJ+XÒi!ÍY݈Щ»¥èÃNk£®fu¹ÑçÜñ?L+¡e3 aÊ=IK)”w¦JbU:Kñé®8ãÉeÔ(œÕ™8h<ÆyȈ̯ɽՆÊRÊV¾ÃKؽ®sÇQÌ7¡L),°ãJ†p%M™DYò”ÓÓŒÎMŸJóš]¿†“3#åå"0¸°I®Ææ÷ŽÖŸjQ'[ÐìJUŸM´ô!Õ©¥§ªs"¾Ó¥dê¢LlÖã+R”f¢4­ #Y]W»“ZaÃÕ9lð3zfuÆ©XzvŸ®ÐÌ8Xutªãe«ɭ¡peHBáÊuwI±(Í/Ò‹pìn–fVU‚š"”²œV[my±ƒ¹mçqÐ’]¸IÞ©ú<¢Ò G§EnCm58ªJYKxß~Y+9¹!ÓVwMgîÉfd¢"#+l©J6hãã¼Åí;tðð;Áí54o‘ùÉïÑšýJ†ºû¾£b64EßÎE{÷É­/ÌÞƒŽHÀŸa—ûÚR"r­D‹¾§`?ÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D`ä"~wŸú?Ö„5zQºÐÎ!½Ÿ¾Fµh0ÙJg©7Ú_¬,!çÜF¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^Y¢'¡´¸„Äl‰Â"W„½¤G+œaÒó¶Ÿ +g©7Ú_¬3>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²7¨×xø#v×6Ys.Çà«oº¸Õ§:u33²áLõ&ûKõ†Ðóî1yd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²7îÈkFWnÆãÅ—2ì[·Ý_hÕ'/›ÀØp¦z“}¥úÃhy÷ÞYÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,‡ +g©7Ú_¬óî–C…3Ô›í/Öy÷ Ë!™êMö—ë<û…åáLõ&ûKõ‚}ÂòÈp¦z“}¥úÁ>áyd8S=I¾Òý`‡Ÿp¼²)ž¤ßi~°Cϸ^YÏRo´¿X!çÜ/,Œ‚œKJ44–ì´ìI™ßgö‘˜‹ÊVƒµ“;¸ŒuÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D8*ö(£afš~³U‹OmÕT—Ñ-DW4§1–c"Úvä-£¤´™T¶r4Ú”JÄf&À”Ԩϧ;O°â\mÄó¥I3#/Æ`Á¼ÚLØðµÚt“µhYä5¤‰WEö*ãmÕvuÓi;nÕ ™­]½ª£²T´m%Ç—‰¡R T«S¤”Òâ¾S܃Œ…¶N8ÝÅ ”d•Ÿ„Eã¾Ñ‹?uq½3ZÜ«^ŒLÚ+ª´²¡ïtOyºÆøƯEJ·C«Õ^jŸŠiTu<¹-G¦4•Hb4ˆHˆy—%~³º¢Iæ;¤ì‘›*›ª—ªªÚó¬t-IF‘iJI­j”öÎ^ӻÛ6¼þ-¯Ô1|ºâuÒ£7­.ÜxΰÚv9•œ\¬ûTgšëI¦ÄE|XÕ4ÓSÒêx}髼¥8ºVªWrsÄç4GAj™ˆt ú$ÌpÕˆ”Ù¦D§l¿1D]É*;fÛkòå"O!ée…z«ç3KW5}æžã¡i§Õ^;z…Vª”Œ3FfQ¦,¦ À§HZ} ¥æT§I“y Ae¾eö•´KUIlÕ*5éÇqÚŠSj—­7·\9Õ ä+RêXÖV8f]zm1š&§Êa¸ )ÙП}é¤Òdâ.Y%^(­s¹mÊ=í£ê¶–P©OŒøØi¡f“yÍèá‚•;Æ…G]zm:#Ч°ÔÊ98ü¶%¾éå=b&’’Aøs¹™¼¥J´«D8^õ¹ôvì\YËÝR_IÆèIªŽ VŒ¨þÈ'C¦5àTÔ²™2 +Z[J–¢I¨“–äiI–bØg`S}ì¦É¥«ü ×…+mV˜ùšñ9œˆqeqX_?-øÅQÄ2!ÉnMažôR‘!ƒˆÄlԗЖÉHÚK5%F¥XÇ;Ÿ¹oáS/ä·‡™ð“kT•äµ8[ÒÇÏßó ×jôÊÝMoO6ê²+{r›@©6”<ë-%¢4.‘ÐÞc,–V­i7q­ÂÅâèo Âw“Ë\dmUô`ªK Æ.µÂs7Z2ªÕâVh0«õÊ’åÕésmÕIj}"°¤ds…Áq9UÚBˆõJm$hU¼#MÏ­ ãN‡uiÅ­N¤õéÑæÀÒ½)ê¼ô|Ö» B†õ:Ÿ,Š‹•'ši(\ÇR„¹!EÊ≲$«™;þçâûôzT ä~r{ôf¿R¡®¾Æo¨Ù®Wä£B4èò-]JÎâ–š[j®âVÔúne¢"h–vÌHLl¦Ý¹ jvˆôÝæUíê|÷Ÿt*½Îá÷Xó]\4˜û½³HÒL3%&΢ʂc;«QJÊn)dNžd%$´¬öÛi^áo.ýí7èî¤Å”+‘¢í]ììØÊ»VÑÉ=H‡W˜£Äv+5JyO©Šº]DedZî¬ÊD”9c¿ØÎÛv·ûrª'RŒânÕ爞Ӈ¼¦¸ÁRç)‹ËÀïJÃÌãüIP¥T\Ên¥*Œê"QH¨Ô£’dºgã[qò•üJuCZèV—žsJói|av3jkt]ZÔTû—¥î1ÎfËÆÕlE©·™ì¢íK6ÛTXqt˜†ÚFÚt¾R1…iÎM§Ý>ýW¾ù¯xt*=ÇÝþú±_9n8l P“W‰£ù“7Ÿwc[†I#Q”†ˆ¶$ˆ¹¹G¶×ûp½Z5~ß?I¦ÅËÂôÚCÏÕ•N…F1%ëÑ/©‡¸BZK©lìkQ\‰)3Êgkó‰|ª§~¼uY¥¯+‰Ç“Ó4Óç´Ÿ2†nåcS_ÆÍ%Ú’J Ej4zÄæ§Éna<ãZõjÈÉ¢Q(Ú%)7MÊÃu´«Z!г‹Òž;4›ÑJn—¦U[&"09ºõV±£ZªJ%ŸVG°ŠÕkƒT)$äاW ¬’2B³^mÊE´tµw]i|£5îšôk5²Wî7®¬c_¹“˜ÑäŒLÅk ”ʣǵB~\–çÖœóï’Z%Âi¶Èšm&ᓉ¹ ‰H"+ÝÐÓªŒ–ÚÆ'·¿A¢ªU5mó'„Á ¨PŸ§S Å“Rr¤ó-!Mu(K’TEµÅdH#WŒ’VæfX`Àr.þp‹ú+ß¾HÕi~dnôòŧ½~gÜai!nŒ°ž'ÒÑõ:Ll +E6lZ“sÊ[’'-0¦8êPÓ:„%•8e•jÖªÈ3+ÆÔ¦Ý<"šýÂ^œLÞIT–2ê_~oðJM{@ÂØóû&œ©Mâ +"!-ÄJlEÔÛ‹­KYl¥²…š’µ™å±¬C…“nŠq~ꤛØëk ²;ZB©è÷4Ê[n'ÞrX½ìK„*X³Ð+uüƒ G9’8D†ß0ÒëÃ"3n[-«À=„df›غ:îËz(ª‡Þ[pRsTÞ…ÖU.Õ÷¸5—ŒjXÜÄ1g/Šfc7N¥¶F•7ÁÊ™ IÙ]ZˆÏ–È+Xf”ÕTã3]{•5%óg´Ä¦žÊ)ÞÚo¾2U^»XÄå‰*'&9â¦#kË”T™Š¦Î[,*Ê3Ì“µŒˆ†Ö*nN¶ÓóMKÐb×ᥪ”מêgj¡Î™ˆ^Äu,g*Ž¨±úK ›„tôG!¸íÅr1•–ä’W»3ÎJZM&DV …/Kªpí©]ìhñ©h„±ìNxB$Æ•+75ÈfŒ\õ*Òªí7M8N8œjQ¾¶ÊèUó©Ã%f$ìX˸ßÂÓ·ßhóG M­a^K॓ÇyÎâÈtŒ{ H5ºÝYtúKÆΧKÕgK()ײØÉhzi’Gd© Ø̈îZݽJzUS£îTdܾÔm1Tj¦—9Ë^ërŽ'3Q9Qq5>‹¨ÐQUE«±K­Qv2ø; ¶ä†œa^¯Ði[ˆ#,¤i3Û‹W*µ¡ÜoΓñ1B‹±Š¼—™ÇÑ°:c hŸ @©ÖÝ~uÊ‚à˜L8ëHi¤k\œòˆÙŽÊ–Y[A©J-™Rc¥i· U ù¦1o‚F´à§:šÜÞÞͦTÝ!ÆÐeV·Sšäç'ÖYuØóÞ´£³-)Z¢JV£&È”²"Λì±ì1ªš³±odûF¶ª§+D¸ÔrXâêïâ…Ìz¿?Nu2jí"œäFæ;᢬ÔOäA)|æáf5d;67q¿„¥­3)¼2ˆàäëmJN¤¾ ÃzÅù犂SR H‚º‘¿Uvy?)ÇšK‰m<µH££VEt¦Ædjº®£¿ˆvZ7ãÛèÐr«Nã™P ‘>Ã/÷´þ¤DåZ‰'|NÀÿ׿À\ýwÌý ¾Ù{äkVƒ! &D:¶(Á4,h†­Ó˜QÔ¥2µÐãF¢²²8Ú’´’‹a‘(ˆüwºSÒeTѶ™£¼3:€õ7ÅRW2m¥…¦æKmMšT…í;©*%Îæw;æªSÓ«@¦¦´k70ðEœŠ;Qi,2Š:Ýrž”$È£¸ò‡»T´©D£UÌîf{vŒëœ”vdbpŒÜö›iÚ<Ãu8Siòi ¹dÓ¨¾‹­9¦™’µä¤¨”—.Eµ&CV '+ÏêÌÞxíPüÇTÐæ ­I•.vŠûÒ yJ%–wË•ÓI,’N–TýpˆœÙî†.©³Û3"óˆÙ‘ròôu†gV¯È¢Çv¤…6²¢Q™¸ÑeCŠEò)ÄÄ­I5§Äd2’NQ†åAÉÁ´šmR£Z‰ Ϩ’ +[è5¿«"$šÓ›)¨ˆˆ³eÌdDFfD2°˜ÖäTçN£„Ä:/Âx²c• +Å,Ù.3ÁÝ[©W×Y"2$:’Q%ÂNcËœ•–û,4vt¹ÃN“eh×aùÔtW„ªå¦Ðc¿À#&ó™”dò2³Íõĉ+ÌD{mqµITåëÒbš*úÔôc…+)¦¢m +3ÅM`¢Å¹)&Üt‘3t¨MØ‹À^dì½®RªrÅ54¡¥Pðó‘¦ÓŠ¸“N`Û#-T4/X–Ss?•·Ÿã×9¥ÃA‰Õçã¤ÙCÑÖX^ DŽÝMk[§!);“®U¸”_"\QlRÒ’Z‹”ÌbšU: ÕSzOÆ—£,+D©9XƒAŒÄÕ©åëR•%OßZ¤!J46n\óš“UÎ÷¹ŒSBJ›³/6ÁUméõÚ0þŒð®ìºE +iøR©tÚ$:C ÓéÏ·&$d“l¼Ó†ê·ºVf¢¹žÐ…†Í0H½§nžóösÐÝŠüÓ8ïÎã'Zð²®nµ/ëoºÖ$•ÍräXFÍ_¤Ãs;T=Ðm^Ñæ‘Z,Då:ªd´»ÂM'su)Ê—MÈnl' &²-„¡ŠiTâ½s3UM¨gÉhë •hñ Qc•L×­á6Uõ¹rkr_&·.Íf\öû`¦”´mã¤:›Óë,Ö¤³Iâ$Ó˜:f©LE –ÊšY™©*Jïr333½îg~Pt¦¡èÆ€ªiϮӆÃ6Ã9ç¤Q¨¬Æyäj–íÖëš«ßVKyKRQý “$ü@–ž¡¹Äâա쨠žÁá:ó±PJtµ +zÚĶ¢Y)(]Ší‘êÎÄYF.,6(ìÈÍ÷ŽÜ{s7hÑfn*[tíCƒ-sâ2ÞvÓJÌԧȢ4\ÔwJL’dfV±Øl°ˆÕ Ãzvé7èë µZV"E9TÔµ:rI'}r“•N’/œ4ì7 $³-™†)¥S£×1UMéõƒ¥Ð©ôEO\¨aSä®d“Mþ»!d”©Å\Ïi’H¶X¶r ¬yø¹f—>n°Éì2ÿ{OêDNU¨‘bwÁìÿпÀ\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÔ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÕ¿ÀYA¹ZRW3mDEúC{7Š1Vƒ •2]¿;¯ÍÿdX_D[Œ×‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÙ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\fõù< Ôêsy³"ñØ’¡­õ=†U. —Kêëó ¯£âÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…Æ8²_W_˜/¡qŽ,—Õ×æ è\c‹%õuù‚úâÉ}]~`¾…ÆoݧÉàQ‘¨Vbqã2ñØÉ6ªÔ¿26t¸6Y/«¯Ì6¾n1Å’úºüÁ} Œqd¾®¿0_BãY/«¯ÌиÇKêëóô.1Å’úºüÁ} Œqd¾®¿0_BãY/«¯ÌиÇKêëóô.1Å’úºüÁ} Œqd¾®¿0_BãY/«¯ÌиÇKêëóô.1Å’úºüÁ} Œqd¾®¿0_BãY/«¯ÌиÇKêëóô.1Å’úºüÁ} Œqd¾®¿0_BãY/«¯ÌиÇKêëóô.1Å’úºüÁ} Œqd¾®¿0_BãY/«¯ÌиÇKêëóô.1Å’úºüÁ} ŒÈ*3±š”N¶h3ZL¯ò¼¦©ˆ;Y(;°ŒuÿÖ¿À\ýwÌý ¾Ù{äkVƒ‘l!dȆ¶À€ ,X°`À€ ,X°`À€ ,X°`À€ ,X°`À€ ,X°`À€ ,X°`À€ 7È/ÌO~Œ×êT5×ØÍõ € ,X°`À€ ,X°`À€ ,X°`À€‹¥ù‚/è¯~ù#U¥ù‘»ÐqÖ ,X°`À€ ,X°`À€ ,X°`À€ 2Fû ÏÞÓûá•j$XðE;ÿ׿À\ýwÌý ¾Ù{äkVƒ! &D1%[bI8Ân¢)”E¤E©)úŠd,Ö·ßuœ…©q”§WsQæ=¼›´Ë½£ÜºVôß Ù¤£lðizM¶ÓZ¦¤Uê±ÔÚ„™ÐÚ…NmÙêì'\iÕÅ&Ñl™6k%™L®wåSZi–0åmòŽÃò7"?:2äC}†æEŽDn=n ‰ä¤ŒŒòÜìd«Xî0ëI6õ)yÆc›r–n6NFÚ¦,5‰‚Õ=ÉŽB#³`)Tù ¢s,¥+s‚©h"uI%ÒG}».C7— Û˜¹ß¹ci‘ÌoMÂ×OâõÖçÍ„¶e3!®Ü…‘ÆQ¦Ê;4F£]’^HóÙ9´Ï÷bb¥²¤¸Æó¹Pt­‡1$øtøR$(æ¹%¨R†ûq&.-õÉŽúÐHpÑ•G°ö‘•ÈŒbŠ¯hÊrÃ>"ªnéÎ;r71ÅïãÜ7¹"3qÝ’¹h6šR”„ê$ºÁXÕ·i Œþ3³w©¦¬éOz“5Ó5“ks6ð´­‡j8ô¶_‘žL·àF¨o¦‰qÉFë I4jÖ´äVÂ;¥DFfFVªÑ­JÚ–´bª]:uD쓪âM7ÒéïÓâÒ›v[’k°è†û‘d"qâiô5'&­n´WðIV3I•ÎÆu^ª”¾{’x¬ô JnÓSê¯ ;ÏÃiÒ™†ÛqºSNNÕbÇUò‚R’Û/4R’Y¼ÚVg—5³S;܆(®ó¥/…TwÌn6ª‹©·©OÜÒ¾zuv&;zå7S}Q^LX‹Œ’RÒãæY+)‘¥$fjñShš½«éˆóȪͧº&O˜ºYÃo±U~Cò`2"'ÉDøOÄp¢8fH}u¥¡FYHÒFy¬›™ÙÕ±¤Ö¹zm5TÌm˜z°Ò|7¥¼8qª²d;*©‡¤Æ—Cˆæ£Z k7Áo)Õ³”bòã®rƒ7 Q™½‡¤Ü?.Bjä=4élÁ˜Ô¸¯1"<—ÍÒihÎYõˆÊvÊdw½¯l§1Ü/>F­DÎ¥=™üÈÒfGâ€`7Èüä÷èÍ~¥C]}ŒßQ²µÆƦ ö‹1²y¸R“N“‰.LÚ–ëé•R“ ‹„%“l²4YŒÛlÖK̲32JG5[tÞŒ%ÂÖÒq<0GGBNìã†:“jcŽ'Æ-ÓØb'Åfã´Š±SͧŽcnJÖÝr$Д$Û±©f“%¬VºÒ»·£©-é?H¢‹Ñ8Jos;„-(PÞ‡S“)oÂU*œÅR{R£:ËŒÆy Y/*ÓuÖ×És¹[”Ètµ©S{î®{09ÙÒê»)Gt‰P€štl-™õ ´ÉÕ„3/ZÒJ$f hͳ%nº¶ÛIŒÕãHÒÖ§DáïSo|G~ã{*UQŽ–’ñîÞj½&.ztvtx­HŠŒ7¡( «5¤‘>„ækÁ=¥Èec"1«©$ÛÕ§4-´–½M½Kxj½-Z~LW×Ú¢S:ðó@hÒJ’FúZ¿ ¶þøfòS8BÆuzÀ»1Ë…´ÝáÝ'Pq<’‰Ù-º¸ªŸ¥C~1Jˆ“"7㛨I:Ù\®i¹‘)'kàÛÔ¥æ–p:6à¼çk¢V¡b:|*­9ò~Æû’T’[k+¥VQ•þ2#4`å "ïç¿¢½ûäV—æFïAÇ‘\ì3S„ÞHÕ"4Ót¹Š›ÃØGÔéô¥Rë³áÁTxÇ%¹ŒpÉ*ŒÒЧT´˜ÑÜŠ½[©ãFCrþå 3R®V-¤5¦Õ5yhóiÆ!fä˳iÃÓôLî5cK˜mÆe¼óÒaª#Q!™°ŸŒûIžá5Õ6ê Z§v'=ÉÈÌŒŒlœ¸Ûº“4j1ØßbÒ~ø‡H0©s›C'.=J‘Z^C¹:‘«V„©´™ªI]$~ \FDd5¦¹i,ÚíTÞõñ6tB—ÕžË×M¡é‹ ”ÅÃá2lÝDé.ÉàOðFgçÕ¥‡$dÕ¥JQ‘&çc3-»HmK½®clN ULLêÓæÃ&êV•°Ü*“´Çd½™™Sž’˜¯*3]¶HîI$ê’éæIe5l3$™‘‚Š¯8ZÛKkZR3U.•/)ó,ϧ4¥‡Z©1R#9¥Má\îSÏöÔåeÕ·ðræ÷^ ól¢¥VscLn1U1§TNÉÐu­!iaÜí‚SÑ5ª % ÷Z¤=%âj+YˆŒ’ƒI8ëª23Ci¹Ñ­V‘;*uMO<’ÅùÍ鳘Ûyí„»ÛÁê~)Å”©Zm>¥K]9é­Ô(+uä%ö¬dÁ¶â”§IÄÛ[|¹NéNÁ›J®&Þ¥+nÏ]F´Òªj5¼v1¦šu_ázÄøX^Žo1Nb ‡ä¬ÐÚ\uM6”ÔÊ EõÃ"IܶÜì6ª¤°Ù=˜x˜T·>xïð5©iše`n(‡*§½!•+Ë&ÒËN/“±d´YhQ¡$¥ Úœj».©Õª;11V +r©-ºç¸ì¾Ú8{ŒÛ¥p‡ó;1TæåpG¸ +æ¦÷Œ™YuFîÃ+f÷Di¾b°Òš•Z5Ìm1¸ÍTµÙ²tª“_\]AdʧÊ\)$IRur$©Hðˆ¯bQm+–ÞQ²ÅJÛÁÃ0Ô8óqÄæÀHÀŸa—ûÚR"r­D‹¾§`?ÿпÀ\ýwÌý ¾Ù{äkVƒ! &D0UkDÔÌg¤…[áèÕ*R¨P¡0¹)K„O¦Sëu)Mó€¤ÜícäÓféÖé2UO ÙÖÔF¥Vù¦;Œ{OÑÎ"£DÁ²%RfÔS‡$b(K‚Ë:t·‹€¸Ë©}¢Y6Ûm¤Ð§yOÆi±éB« +ª–Ý +—Ž´æ{c¸Þ¨–©Á^•†¦œ÷œ£Ø¥™A5à×s”šÄÇx’®¶ªôÙœ%¡mÊ“#+¦ânRn¥ ×c$HeÒÔ,©Œ3™k^}fN_ݵä”'†¿Aö½bìC™¶¦¸c¸B¿H—(”ÞFåÎy£`–MIJÈŸ®) $š‰F\¤1] ª–·E ›o°SRM=JªžØji² bÜmPÂLÔ0â¨Ñé¸z»G™!rcºE&d&c!l%•©FÉš ÈÌ’®B4•†öókUuh½K‰ÍÔœ (³¦•¦íTîI£\£êËMQcL®Ez‡CSfÕÞ™­”ìDÅO·ÂV„4á$Íjq´'*I$dfZ[RëU8†éi-rõNFÖU**tTžÈO¿·aŒY§ž†¸DL…‡©²ãÔ¼4¡Ç)í0”ì? +ëI—ƒrñò Ý>î~è×lÓàjª÷-}Ù>ÏuâuŒ ‚1-> M£.3˜rµWvS‹y•´ãšM>ÞE™š O!&FD²;ø6+…3î^ˆ¡ÓÛv•è1\{­µ§Ùy³…Ã8Gªµ£Ê…v5Ùtj”ÕÕ¦»SaqM2c¾ÊW+nÂMI3-ZIl²Îæ3cƒ˜øœqrî½Øw`-qŸŒšÔ£8™ÃBøv~Â4º]UD¦]œ§Ì•Ø–ó©;¤ÌŽéQ/ŒbÍE­jšWjF-×SZêo{0l<#Ž«à¹Õš ¹s(¸‘s§Ë*‹â8RYléñâR”%.¡K%¡.•µj=¼ìisLäÓóµ§ÍæØtµ©5RZÚ2k‰¿ƒqu>“‡p‚péºÕG©.¨r˜àï@MEÉ™ÛF}n¸’å–•$ˆ¬£%*äC{Ó¢~žÊ]8o4·w•qð´v´ñÜlêØ1A“ƒ£aÓ’Úq[u”TÊS Žä*Éž¯K'Iô&“M¬›’ŽäAe>á<.µ>e8­æmwÚøK&ÞüpÚrZV:Xê–£v{ “XOɦbF‡eM¤:ªQã×êM?<µšäê%²á©²Br*6±ã4¸“<É#Ã׺O*’3œèÙ&É­X{–¾ë3¢2;`îØ ¬[‡!×äJ¦N˜Ã³¢qT*ŒØÎÕŒ¢CoªD”¥iBKm*ZÜÈœ¹®dEÒ‰„žº´ä³y¿6ÃJâpËŽ:6Èö‘ÆL€ß#ó“ߣ5ú• uö3}FÈŽÆGÌ65#­>Œ4rÞ*£Ð°éÕ +§Q¨T©3ÊTvãÆr zÅ&bQ8D˦£º½b,DDw!Ê•R¦âÕ0õCmÏNƒ«tº¯=q+\¤— Øbmâz¹é.räÕð…6–Ì’40Üšƒ<(Þ"Eþ¶“S‰2¹X‰\» -(¸×U-y’^Š±¦uSR~vÙ×´“K¨Wj3pÎø’?ViÒ\iO·OŽ¶ç8é“KZTH&\EÈ̬ñîv+w­°ÑWºy«®òß0s¡]²ÇM>åm¼®¾é3΢ME{â +›:¥Ëy¨P3I“TØdz»e3¶¹Å¸á—)R=¤,zjm¾ä·cÚ*ҒД.÷áØbýèÒ­…±-QÊ”sn—Df];¨ÝJõ±gË\×W”ŒÍ.†H•c2Eù;:Z¡Î˜TöS1¾V㥥SRêíq=ÏyÃ`mâ*< ÄȵӰÞ%$µ¨=\™¯¡l#b¶æ"=¥r/ÒÒ͹Ô%OnSZ_Çöc‰´‰£ÜmL…t˜¬±R£øôfW!m-¤UNJ#ÌGdÞÊ24fµî;r‰uTé×ÍðÓÛ‘¥‹JšSÔëãp5<[ª»‹¥K¥M¤Á©àÇéj¨VjËy¹lº§Ír²:á6Òˆöe–Ä£4§eùZS…OF45?uoÍè«uûäãjX£y1ꎖñÓ§·L98µ —Ã#˲湶Ý%E[„L(ÒfÙ™’–D£$•‡KDëuÆ©Áüjž&–nê£eOFÊRÀïZ<Â5F*”9õ (í=tJKÐ×"uYéλ)Ä4Ú“¸KˆC &î¥- QøIMŒnê—Uq¥`§2Ôã¢P•3¡éÕ¢ŒÌñD›*£O‡*tSä¼ÒôE¸‡TÂ̶¶kG‚£O9l00r€`98Eýïß$j´¿27z<ŽÆF©OÌûQ4-¡J6¢aéu<>Ëuø¨uNºëŠ}M<·\3Sd¥­´(Ò¢Ú‚#"; ¨¥SÕ¥}õ'ÄÍU:›ž³|\'ôq\›‚1m 6ÔùXŽ¡W„Ó®‘4úQDÆRµ'6Ry-å32ºo´¶4PÕ4çKN<Õ·™Öº“ª¬1>zï?J†©éJ§Šªµº;´Hõ Àj Ôã®K*O¾„¦=£DqÆ‹R¬Ê7Œ£¾R##;aÙáRZ-%·=˜`fö*t§3³-§E ãjm'G°daùü‘O~ŸS…¡4·e¶M¡‡¸A:“8j"YšPâ|¦¤¬6rÜÇÁJ&!èsè1‚Q÷fü뇤ùÀØ+a*‹Ñ#8¹r­U9ÑX”ÊKÊJy¥­Â'ZÔ™ÜÉË\òß`ÞÇܺgõ Òö?sÃKOuz:÷–ÕO¼7£ +­èT qÙŒÄÄÕ­&®ñÓŽ*¥¹1µµHøRMd’Jš&ÉDk3Ql>6:U)üØÒ<ã–'Kjï:šøO¾Ÿ\p$Å*¡6zê2˜¸DÄ¥²Â–êá,‘$ÒúIà”fe•^[o)ËFþó“Òrà`$`O°Ëýí?©9V¢E‰ßS°ÿÑ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± *ƒÃ£À˜á†Þ«„êQ¯ÕòäÖ[6_Šöø“~4RIDiQ‘‘‘‘•ÈÈüF@dâiXz•AÖñe.$i‘¹Ác4Æs.LÚ´¦ö¾ËòÃÜœ¸ä]üáôW¿|‘ªÒüÈÝè8á± dŒ ö½§õ"'*ÔH±;àŠvÿÒ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÓ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÔ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÕ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿÖ¿À\ýwÌý ¾Ù{äkVƒ! &D`|ÎO~Œ×êT5×ØÍõ± r.þp‹ú+ß¾HÕi~dnôpØÐ2Fû ¿ÞÓú‘•j$XðE;ÿ׿ÀÒtnæ3eÖ$Ó{^×ST90ÔØõßÁ~P“Ò¶q9s#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs'îœialðÏt´®ú¾L¤eouñŒtœf4~ÀÏ®þ ò†zVÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9‘ì úïà¿(:VÎ#™ÀÏ®þ òƒ¥lâ9“p¬ka¦8]²)j¾¯—5¶[7Ä1Òq˜3Í`mýŸ]üå ô­œLs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2=Ÿ]üåJÙÄs#ØõßÁ~Pt­œG2vJ ‰ò íf±DwË–Ö+s˜ãkk|ÞŠ.œøänÿпÀÿÑ¿ÀÿÒ¿ÀÿÙ +endstream +endobj +160 0 obj +<< +/Filter /FlateDecode +/Length 227 +>> +stream +H‰<ÝjA …ïóç²½p&ó? "TW‹ é@/‹,ºXXÅuEúöuµBBrN¾È·¶;ì·U‡ñX~@®¶¿§k‡ÉdZÎ@ÓD Ú¸œ­5hk’úB2©o†BÚ Ö©ÂèQÝàEÈšA8(e„‰.B;áœÏš†^,¿¦š'š¯ó¥s>” ¸×fû¾[ÉEÃ(O´!¹8Ô×v×3®gËZÛðd<Ó`ï´pa•¾0ð^‹èÚ}á˜÷†Ž…2w´ÇBQÄðhL|B~: jH.ŸwÐ ý 0L%CÆ +endstream +endobj +161 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Filter /DCTDecode +/Height 1446 +/Intent /RelativeColorimetric +/Length 175987 +/Name /X +/Subtype /Image +/Type /XObject +/Width 909 +>> +stream +ÿØÿîAdobedÿÛÅ + + + + +    + + + +      + + + +     ÿÝrÿÀ¦ÿÄ¢  +  +   m!1SÑ"AQRU‘’“ÒT”â#2a¡¢3Bq$b 4Vc‚•ÁÔñ +%&'()*56789:CDEFGHIJWXYZdefghijrstuvwxyzƒ„…†‡ˆ‰Š–—˜™š£¤¥¦§¨©ª±²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÓÕÖ×ØÙÚáãäåæçèéêðòóôõö÷øùú +w!1Qa‘Aq¡±Ñ"RÁð2Bbá#3Crs‚’²ñcƒ³Â +$%&'()*456789:DEFGHIJSTUVWXYZdefghijtuvwxyz„…†‡ˆ‰Š“”•–—˜™š¢£¤¥¦§¨©ª´µ¶·¸¹ºÃÄÅÆÇÈÉÊÒÓÔÕÖ×ØÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?ßÄÿÐßÄÿÑßÄÿÒßÄ—¼1¥Ç   éW~¨¾NXâ â A ø’ôâ +ÿ i}™îóTôª7¼}#y8õÌ>ä¿"ï i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.çÒ7“\ÃîKò' i}™îó=.îY¤yTÒºò¦JkE{*d›Ç5­xÃsŒøÍR¼4¿Y«ÑEê‹rzhôÔé2‰»°Ug¸€€ƒÿÓßÄ«õ—ÿhŸô‹°ä°Š¯ø1/ö±ÿéÅ~‰è|Œ½tp@È@Ê  e‘ú‹?œ¢åý±õ+V'â-ò#í^æŸÖ•=^ö’/•nˆ?ÿÔßÄ«õ—ÿhŸô‹°ä°Š¯ø1/ö±ÿéÅ~‰è|Œ»»‘íÝkhÔÅJÊŠ¶RDêm¬×™pKKˆãÊU­z]^½£}V•¬ôc™¾¤Û¯'iAÉ}%„èJ;º&TÕVT²­§eÆF‡‚ÀòÒC€iãÁSôœui&™Ê(‰ŽiXÔঋÆs]§ªîËE¦ñd¤¨dÚnßAKÝF8ªiÚ7®Î,$qñš8ø£÷þ±×Ûתjµæ'fÌú8¥õ¦™§©‹_oM®úÚûCY-ú"JJjf2çh†‚¦ªVþ;ÅXvÛ]ý K?isG¦ªt—¿«UUSÑêÄZ|Q`µ³Šiªý9Ìû¬àœ©Û­ÚZ«NOKIµÒÔÊÂßW’K‹Æxícèà¬ýgªkšâgesÂ,ñÓSÓDï¦óÍÌuÖ¢´Óè[M²)î¬dŽd.=Óöèü~ÁÎNx¯ Šu“N*­LS;wö=ª®0EXbó5FÍÎÁƒ‘ +uÍŽ¦Tn´º’•Óñ`cœ`%åÌ.Ú$¸‚xq+ÃÓ"š+‰ŸZõ[nø²sõŸÑ1Z›¥ ®›‚+}MŵpÚé)…(?… ‘ €ü\ùÖ­O“œé‰¿GWZ•t|©ÝU­ÒájÃÀ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Ad~¢Ïç(¹lCýJÕ‰ø‹|ˆûW¹§õƒåOW½¤‹å[¢ÿÕßÄ«õ—ÿhŸô‹°ä°Š¯ø1/ö±ÿéÅ~‰è|Œ»3Aj«}‚Á¨é*^æË]IPÒræÉ´A#£‡”ªÚ}×4Û¢¨™ê³ÛCTS{ôÓ1Úì-?Ê]†‚“DÇ4ÏÚ´ÕTËUâ8ì¶I6šAý— ÎZôMZI誈ˆëˆ³Ö$E4Æêï=W»äÝhù=žüÛ˜¿Í3$¯lòBê)[ˆÝ.ÛðâNH*ZÒQLS†2¦×Åb2ïwMƒITÕ}³{ZzeÌŸË奼_)îtôÑ[®0TÂÙ¢¦sÃðG7Æv03žƒŽŒ*¾ƒ4ÑM¦qS16Å•ï›ßÒ¢k›Û Þ/lík>«¯Ðzò†Ó%EòZIèíÐÒ>!E$€¾0Iñ¤ãó¯z)ÒhªªÔÄÅU^=h‡”ÍÓLLÛ [dÏMÝ}«uMºí¢l¨ãQDêÃ0- ì›LÁ<G›¡ZÑèæ4•UÑ4ÓÙµáUq4E=1USÙ.È)ÖÊ=Žô&qÒSSE+¶èászO8Ç¥W§ATh맦©ªÝ¶z×¥‰š'ÙŠoÙwK\™a©¶ÔU²¢Sp}l›1l~¹Ý—ícñòq³ž"·F(˜‹e‡9¾w‡…sbžœYu8j÷xˆ,ÔYüå/툩Z±?o‘j÷4þ°|©ê÷´‘|«t@@AÿÖßĤ ÀôOúEØqŠ\Ÿêƒ<¤Z«0^óü“Ò?¾¯½=Ôs‡ËNŠ­ÓÊ_ÃÁö©õMgÙäùWuô{QÎÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¤ð}ª}SYöy>T×ÑíG85UnžRx>Õ>©¬û<Ÿ*kèö£œª·O)<jŸTÖ}žO•5ô{QÎ U[§”žµOªk>Ï'Êšú=¨çª­ÓÊOÚ§Õ5Ÿg“åM}ÔsƒUVéå'ƒíSêšÏ³Éò¦¾j9Áª«tò“Áö©õMgÙäùS_GµàÕUºyIàûTú¦³ìò|©¯£ÚŽpjªÝ<¥Zþ¤ 1x±êKŒ•´SÓ±Ôa­t±9€ëNp+ñÒSU1i‰õº'ƒGë MSx˜Ëw„/™m?ÿ×ßÄ—þ)ý¤ê‰vŽî“û"µ,§wŽè—Ów¼RÎ\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,\î‰}7{Å,]ÌôL}T»N'Äò’|ª¾ž2í{håÙj›Ü@@AÿÐßÄ—þ)ý¤ó¿þÙÿJµTœ"ùªä´êKE¨FÒÊöV9òYÜѵã çk=(Å^µ¾–jåU1ïvbѾ¨ŽqTûžtß(úcWÕ:–Ù_D­f÷e¡ã,ÙÛasZÍ®l.nxev™¾Ï‹“|_ÊUŠ¿Û¨+œÈଧª”ÈCÜðø A¬c×9ûBBN 78ÆTqÄLÄû7ï·ÕviÊ&:j·tϹõªyHÓ¶ªk««â4µ| ‘òoN !Œc\÷ƒ´rÜ‚¥UVÛÓàäS3ñØõ5'(tÝ'%þß$uq¹îm—x³I#Äq0ÄmHàÓÃ# …ʦÖã1Ûñwi‹ß„MûÓyEÓ°Ýc³ÔWÂÚòöÀèÆÞÈ™ÍÚÝììmãˆavÙ±R‰Š¦ÑžÞïŒÑ˜˜‹Îèïp­Ë…‹RÈúJÚˆi«9Æ®‚8Ayt=Œe»Gµ»B2àãä(hêÇ=3ñOIF Ñnø78Ÿ”m3Mxm¢Jø›Vé"2úã›´#ÛÙ݉â#.Û#ö*Q7Ê>,ŒÅžÞ³ÔÓ·U°Â–óPç1Ÿ…™‘ž-;^7ˆ1‚ýpT£9ˆß1NÉÑ2몎Uêá­­§±âŸPÓYA.vK'‰2žŒ6ðÐqÒ¼èªöãUq÷X™÷=*¦×áM3Îb³|¾Û´Í µ× ÙOOòHpÑ“û¤$%JfÈD]śʖ’6™.¦å i"™´òJý¶åq1í{C˜ã´0H=)~òÝÎMl¾Ñ_m­¯¢K Œ/cðæ‚xáÀ8QÑÅr¹Ãá~ë”ÅæÜmßg¢ånÁKi·Õ]k©áš²”U5oek™ÐçE²Â÷°.È q Ùª#”O?qßœÇ)ñ}'ëú).væSÔRÉGYCS\%Þ8½Ì‡vCãhik£ÃÉy$ø¸'š°Þýß¿ÁاEºj·w‹Å«lÓ÷ÅSwDù鱟ÂÆÆ æðè pqÎBíS†m=~ȶ}îD^/ÆÝ¿ã´<­hë¾k…=Î)¡1µò´<·j_Äk|_îè fÓ³À€x$ͼ;®D_ãžÛyJÒî³:ð.wdÜ™0ñ‰v¶we…»ÍæÑw³¶IüT™µ§~Î?"/Ùµóô(túöºñ6à ©Šäiv_·%vÓ\kšç–Ç +b‰ÕLr¶}î×f#ébyßÉÉêµmš‰·KTÆ‹sCêÉÏàZæow‚φx.ÍQkî›våçE3{tÌ_³?)qÛÏ+Z;NÕ>–¶ç 2ÆÈä{Hy,d£i~ËHcý›°Ñå ®ÌÚmÆÝ¿D_=ñ~ǽ©9HÓBXá¹Ü"ò3zÐvø<ãxâƸ2<œm¿eŸ¿$ͦÝ?Zñw­¨yRÒZR¡Ô÷ŒPÊÈ›;˜CÜDOÎ$; v#ñN^|QŽ$p\š¢&cvÞnÅ1}û枢*¸™,NcÚ×4ä9®Òâ™NbÈFn <´XîWûEªÓQ Y®¨žݱ²Øa{Ë£%¡² ¶l8°¹ žœ¨Ñ8æßKTòµ¹Ý*ã }Ê#›—Ú¹GÓ7Ë“­´•ñKR7ž#v¼mÑÄ›- “`ð~óåÂäU³uû7õ;4Ìmêí|*~[´fÎêïöÚç3dHvöHk„~'ŽàHŒÚxòµ"¨žWì0Ìs·kí?”­/š+ɸEÜs?u£líÉ´[»kL…à´‚ÀÝ AÈ+³TE¸ìñr)¿f×Ô\³Ylï°ÔCQ ´J‰à5¼ì¡sÀkZÒâòöì´F3ÁFj´Äo¦f;-æ”Sx™Ý1ïä䣔 uÒ]M®¦šx+k›F^ç=§;2m5ÙÎù¥˜Ý¼7;8 gÒ3˜ã<¢gÝš•ø[Æ#ÞâÚO•*FË{厞鯹Ò9¦Gí–к@Ù;N!›O­'<•5Þ"wÑ5r›rzUE¦cuQâîEEÊ毪}+. l±Á%S›4SÁˆb I!3FÁ²ÒFNxeKg;¢òŽç6zü±i®aº](*›SÍôÆ¡ì ™®Áatd´°?aä`<4·9À+ÏK¤ÁLÕ»Çm¸'££Qü½3ÊTž¦Ù¹t †²Úúç™Y3\ÇF²Ç± ÄݲòGÒiÊö™´Ï‰ï˜Ï“Ê"ñfcº'ÞúÖ>Ttž¤mC¨n1L)¡5`¾!VdˆÎ×ë…»B=½áoÞÖÞ?b§—_vÔf›9 îùoÓt3WWÎÊzx[µ$’5£8ãûd€âIRfÄEÝ)SË…5\·®n}+á¶Åox–¡ÒÄݪ¹]™(,ÛahhعqpÎÊäMþïM<â;øû­SÊ|“tå+KYnœ×UpŠ:¸ã,vÞù[kÞXÇ?ö-{š]‘Ä.ÄÄÍ£}»wu“M¢ý½áåGIiZÙ(î7(i扭|xˆø»nkKX]û¸‡;ö ®Dß/‹˜lü^ùVÒr®ZJë”PÍïz×Ø”Ã!kHc\ÃœCxàT¯l¸Û·w{–ð¿gÄ=­CÊF—Òul¥¹\"‚W±²»háŽvË^òÖ–ÆÂx¼µ¤ôËçnŸ7m•ú ß)cM׶†ºá3»wâ;hìï]³{šÒØÃÏ–‡Œ¥ï6é½»wu–Êý½@r…CnžðnuÐAoª†˜9¯{Ÿ™bcÚÙ³‘#‹°ÆG¶\Ü’@æ,¾å1Ëß½Ù§>ÈŸŽS§µ-«VQ÷]¶¡³Å¶èË›´0ö9®k€s\×G™KŽôe÷Á6ÐßÁ¹µƪú}¯m³•%ÿÑßÄ—þ)ý¤ó¿þÙÿJµT%ÊCµžÚ‰Ó7¹¯9/•ž >BïÅ”¯ Zz~º«ïT=:#íÚ~ó[­¹¿RÍz·[í•\çEºPÎè§Ø¬µ5¦0Ú9¦kZ|]‡ 1máÅzÓ7™éõcÖߞϊ5E­Ñœå»)ÏÜíÛÜM)ºyå¹, ¹–»ŠKéGä$?(ÊQò§í÷´kù1ö¿Ã*L´í–Ñ—¹ÍušÍGF¡…õ±Å†I«cÞÇ#X׆9¡øpÐ|n>:9´S¯¢ˆï‰·Æçµqy«+ÛI~Ì6»òsjeÀØm0©)YS]õÌ’¿3½´Îجk$¯tñ³dÖ‚FWµLta§gMꙵøÄ_«'s{ôâ«oE©ˆ¿}£›æÕ_i-Z¶J[sŒÒÏ~Õ6JÚq#ŒŽ{v®T²µC@”Gâ‘â;‚††sˆõuÓ¶óÕÒ잨ê–ÏF4D3§\ퟧù[»Æöy|Ëš/²û|+OI¶¾¨ü5ñ ¶žp©±\oWVýJú¦Ú ‚ŸÆa¬Uo_ ~à0>@þ¦0AÀQÐGɳLÍøLMYÏ ûnæ–~WDLE¸Å¢-×áe%ËÐ2ip2Me¿ [Ð+4|ª~×OŠ½_&¯´Õà黃Ï~ùέç ôw<<kòªú/›ö½/ÞecIó¾Ñ£ûÔ;{–ö˜m6úÙ#t”ÔWZº¦±…çqž3Ë@$ˆÉlŽÀ8 'ȧ9UL숪o=tÕß0óˆ½5GLÆ]•DÏtK¡5|ôºÒ¶õx¢"¦×WvÓpÇ iÝÏ-<ã}#2Û@s_ÄÂ2vW¦‹mó )´ÄÏê=^5>î‹Õ–ÝCU¢ih¤t’QZ+¡©™[E R³ -w‰Ó€OF2ÒÎ*ª˜Ùª«>ÚP¢0Ó;u‘áSåWZæ£äÃ@TAQ%º–†¢’¢¦¢˜óNÇA+wÅkÛ²Ù ÜæœípÆU7«U=†×Ý}}ò<髦fgº¹zAKmu&¥••Ööj†VU×ÕG#E©ÅTl‚6^XÓ!oüìñ^4ú˜fv}y·}Q”ð½²ëâôŸZ&#m¨Ùº&öãkçõÕÈÅÊŽõÖ5´Cð8$ŽM’£¸¡Öä µÄ;ËŒ®è¶OÚê÷}ú:YÎ>ÓO½×¦êk~œw(os*n0IIcÜꆊ#ŒX;eÀ‡ññ:Nñ«äÕ8ïÙ83êÊszSò©žŒ¿Õ—^pô®º¶Ã¦oúΞâCd¬²[ „l9Æw:Žfˆ€vž\àC:Nsç^ºlãILmšæÜ}XyèrÁ=D_îÒùÖzˆù0ŽëK©Ã›5~›µÒÓµÌsÍDRK ´±à©ŽÇÒv¶º2CëG­Ófrãzb#½-X'dDMøz×ðre¬³­-tgºaÑÖÚyv†NÓa©a>\‚<áyiöi{? §¡Û£íûÜ;§DÒÔVrkn‚i,ÑFÏ&ê@ÖþÖ ´¬}h‰˜˜³àðÐͦ&z&òþ6þSlz·NjMIé.·:ÊW:+kÎüÅA ¶cñ7Æ9Ú5°qs±û»{S~™šfglEæ">ë÷rתÝÑ|¦üçºÏ^Óy‹P_µ §»Éy’§JE;`Å#˜ùö¢¦kÐD{m{pÙࣧÎ$g;:ç*³êwE•Ttg=™Ó“úÞ^íy ,’ïäŸDÜ)âtyã(4Ì1äãÚ˜8 ®éã×lïM×êŸ43‡ ú*ª:§ >•ÃQZõÔ´rÙ2øíšfé aloh„ËM"¦~Z1 {w}- ÎFe§œXæ6M¾ùÅxåêº:(Â'lUuDÄ󙎷=Ó° +{Ö„k²ÖXªš ŠN“ö•Úþįí?Ý©Oɧí_†TåšÛItÔ÷û̵ «ªŠ©ÖøÎËÚ)`Ž8Ü`hxiÏq’G³!ä´mœ +Ú<¢ûæo=S1Õ9¬é6ÛtG9‹Ìöø=MpáEÝ8ù¿yŒ|¯Áu}ê’~OÜ㧵ÈÐЖðìä>«§ûk•zSòiûn¼Âòªû]^.±·Ûäðªý:èyગRÆìx€ÏN)Ú<ÙGãÏÅxèãlGÌŠ£îùÇáÏ]'DÏÎÃüÓo᮸ä®Ø%“LÚjîךûetóKllѶ‘Ñïä™û‘&æ@ü0í—JdiàâZ9½ºmE§¢Þ¬S1×|£›•Å¯Ñzùú׉óäæ‘ß(á½Ùí–‰WHÖÖf†²œ +Ë/\Ó8,{¿°ü½À´µîh+º)÷ˆ£)¶võ}Yø¾Ni#†s^ÎŽŸZ>:UVšÔ–ýam†ãn—yO6Öíû.nv\Xx80àGä]ŸZ2錻c'-†m=Ÿb4ÒWš,ÚOLÒë­²ý«ˆ±Ûtî©Ú–BFeÚ.Î$ÛdgTMæ‹tS1<>»˜·]úš\¢»ôÌLqõâoËÉü´5¼º¶Ód®½Ü$¯¤¿KRûdtôÍl%•3J*dü4åŽoo2mìOÐ|Þ™¦™¼nõf&'ž[ïsMž.ˆ™ËŽq1nYî³íék´÷Ki²Îfl•W,ÛkióSi•ìœº¢9ÚÌOyÀmm2Q°óСiª›F]Õié§,©ŸįÍçÛ¦ñÑ9ç<³r^LµeŽ£NØ´ûi ÷+}º¡•vC­òENæHe.aÒ»,hiÌÅÜ[’§¥ª*¦f?Pç=Þ¬EºøpsGMQÔHËîS7ú¼^¥¾‘”š#“(¢Œ1­¸ÚNË[€ ‚RI£$’Oœä¯z~U?iŸÂrñŸ“WÇχÓ÷ËuÃKSiÊ`yÑú©õ,€FàðÈî®–JžŒnÄmp2gñs“…[ë>q£áœð‹UçÞöÓe:N7ˆã3†ßچߵq–Çp½Ü]Xu#ê…® +zq–÷gtGU½|&MÀfù6úˆp>³Å¢ˆœæ™›ÆëbÛÃ>Û»§›â¶QTE¸Å©Ù˲Ê'—v¸iÚz£¤†’én«©k^wÔµÒ;dH`ÃÈði>Eï3†ižˆ«>S=“0òˆ¼U韛rN|¡ßíº¶]q_lvþ iôð±®Ø˜¶­À¹Ž m†þ)pÈÈÆx.S…´~›µui<^Ÿ-¬T÷ÇG=Op:žíFþo§¥uQÇ53}DÅŽs£ ‹ ZÆÆ\OåyŽM›½m³×·µé1·ŽŽsßêììØûœ¦ßí¶;7(«Ž_Wpª”±ì8™à|4â)c8Ù c¶ÝŸÁìñÆFykDS;cM{ué"byyÎñ²tvëõ&&9øÝÉut‹•ld¾ÛFÜã‰Üþ—“άicÕŸ·'ðÇ–m?hßõv¡ÒÌÕÔ·V»}z³Ð2ÞÂÇ8ÕâÞ`ÜE€vžÙOt þŽ*:[1ò¦º¦;m=–ìKA6š*‘L_²ff;oÚùšš¹º,ÔÀ×¹·^áµÃSk­€TSÞLp1Ü6Ù$gj7=®-kšöcŠíýi¶w®/rõ¢{/ØäG«ËÔœøgêÌ|m}Ý@ëtuÚž[“ª©XÍCm‘•”Á¤ÑJÚ¶*×5Ñ1Þ#òÒÜ;Ž–ÏìÍ%§£gO^Çc;åó(¼vû¶»£‘+ÝEúÝqšVÁ(òµµÔð^ûÕ»9ñ‰üœ k‹2Þ ÖœéŽ¹vííÚó«lôìðÙØîtD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@AÿÒßÄ—þ)ý¤ó¿þÙÿJµTžÃÏùx”tÂ8`c(éåÊ—>\aŸäxéG 2:òxÀÆ1À #†tDê¦j ªe’Hi_K'`Eds]+†ç<±¹.$4 2R2¼ï´vFiLÞÑ»>ÝŽm€Ò£‚äýÄÇȺ8½¯JSZo—³÷I^Ú`ö»-îf9-òä‡ç÷#(˜ß7îˆ÷7··|ϽÊ?Œâ„„pþ5<ÿ•Œ21Ž<ôô t£#Ì׆ÆƵ 8 ý0::x  |ÿ—Š8apAÂtöŠm’ï_vš²jºšÀÈö¦ hŠÜç2ÚÆ´‚÷çeÎÎ׶ÙÊ’À€€ƒÿÓßÄ—þ)ý¤ó¿þÙÿJµTœrmSo§¾Áey{jª)䩈‡²'5¯ A{všK:vN×BäMæÝ1=“6vbÑ}ónë¼éÍQAªÝX(vÞ(êd¤‘Å„4Ë6ÃìÃIÙ.6ƒ›Ò +ìgè›÷M½ÎLZmÕßr6µÎè£Êm¡¿ƒrÿjÿUôû;^Ú7g*KÿÔßÄ—þ)ý¤ó¿þÙÿJµTú£cª¶iê{Äw #Åm+Ýœ‘¹‘ÇDzBó†Ÿ"òÒ_)·ÃÙW«å=põ£;Äî¿m9ýN©u}~‰–í³FÇF.4v#Y±-l”›u2Ô–ËR]_ $‘œ—t”®œêˆÊ)Šb3Ù¶}Å5e;jš¦rÛ³.÷ƪµ\µ ’Ó5ÆfêKdq¨†‚¹ñÎÇ\q€»tÙÜÂÀ_°í¦Ü’As¶©öiÎ:&Ó36ã·±*c¢=ª²žœíkðÙÚ°4eÆšñ`·URÔ>ª©a|sH0ùZæñ‡;¥Ýr­WµZžnM°ï1PtØw˜ ü  æÚø7/ö¯øÕ_O³µí£vr¤° ÿÕßÄ—þ)ý¤ó¿þÙÿJµTŸPéëv«¶Ïm¸Â&¦¨nÄ‘’à22ÒâA “çÛ»gÇÕ<ŸØu™…× +r÷Â×ÆDzYaxd€³n'±ÅŽm0’ÓŽ!rªb©¼ôøm"©ŒŸ2ïÉ>“¾ +vÍB)éÍ{‰%ƒç;—³j.ˆì·òq+µSMç§k±TÓ”tlrù¬”RÛy¹¬1SîÄ!°¹Ñl°c£-s0´‚<ëµzÛQ§ÕØàþ´÷§pþ-.Ç…?”±|XðE§½;‡ñipþ<&Å•b&5£8hd’x q'‰ý³Ä©Ýípsm ü—ûWüj¯§ÙÚöÑ»9RXÿÖßÄ—þ)ý¤ó¿þÙÿJµTœ Ur‘dÑ—{E®½ò2k¼Ï‚˜µ…ÌÛcCˆ‘ß°!­'q ò¨âŒXzf&y{ÒÖ.ˆ˜Žo½E©(®ŠÛL{}ÑFÈ$”á»5Å›'Ê|C‘äáçR¦qDÌtM»mxJ3—l_¾ÞçßÁãÂm¡¿ƒrÿjÿUôû;^Ú7g*Kÿ×ßÄ—þ)ý¤ó¿þÙÿJµT“Ÿ,šR-qª,V©YÝWpÉÁŽFÇâ!cÚ×Ú^5e¶(™Ž¸®‰‡­â)‹ìÖDOTÑ\:6}kWªaÔ5½ô“Ltíºå°òÇBîé’ž¬m ƒÇØx#¥OGjöl«MpÕÓ—8²^‹ï§EUºñM§”ÝBhK]6åûc¶E¸·²‚‚¯pÒãSÈù˜íIÙÞ1sš86±’J'…QnÚo1ï+èã~ÉÊ}Îý=Ã!¤þâê/;™=ì(?c™Òý´qù@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@AÿÐßÄ—þ)ý¤ó¿þÙÿJµTŸ&¦ÇAY_M_,AÕ­•°Ès– €Ç0h ôpÂ峿 v^'Ü^ñn7í´Ç½Ç›É¾—l×i¹ºëÆÁ¯Ú ±› /i%¹ áòôñ\÷DÍûw»Šo~˜‹vn{ÚWEY4DCk¦l •Áò§½ÏpÏ‘Î{°87$†ŽKc“›æÞ90ÒZ‚®JÊë]<óÉ©$n\p02sæQà b—Ìð/¡=KIîÙL0b—+ÓºBɤc’;]T­”‡U§ŸJ™?;t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFFÝW'¾>Tχ##n«“ß*gÑ‘·GÕÉï•3áÈÈÛ£êä÷ÇÊ™ðädmÑõr{ãåLør26èú¹=ñò¦|9t}\žøùS>Œº>®O||©ŸFNa£ª“v×4ìqÚp>_Ú +¾šözhÝŽª=ÄÿÒßÄ—þ)ý¤ó¿þÙÿJµTŸ2ãz·Yš×VÕANpÓ<±Ä ó÷ ŸÚ\™v×{´õUÆÙa{dc†Zæ89¤yÁ‚?(]qýQÁòeDR=ìkÚç3M·##h##ˆÏH⎿ª8þRÏ;ǵ»D4m2O@é'ÈŽ¿RJÈX^÷µ ’\@’Iàò’›–=²49¤FA ƒå~TE+Þƽ¥ÌÆÓC-ÈÈÚˆÈâ3ŒŽ!dp@@@Aü¦ž*fÊö±£sˆhâp8œ'€ü¼×õGÊYâ§Èö³$4m2OzI褞„uýQÇñ†¢­ÛÚý—»eÀáätåˆó#¯ìŽ?”ÓÅN¤{X ÄI8gIàI<:þ¨à€ƒÑ†éESPúhê"|Ñþ¤}¹OÞkuÅ]Ö^J.º¦‚ÃQ¶i¬î¥‰Àî!©¸½Ôï! x‚RÆì‚ìôm£e¯öné´MTûíÖU9ÞcfŽjž3Lyr{º›•=EÉ—<Ú몛p©¦ŽÝ--Q¦ $WÔšb$†1<40öá¤g‰íïúh‹ÚùL^öß”»4Û>Œ5Nì㣫8xg(zÞ’ß|†‰µ7CHÚ9i«e¶KNòɤ,©œ¶13éÚ7k8¼×dŽ+åºÕD^ß6b÷· “ÐZ/÷›qŽ‹ñv·$ÚŠ§QÐUJû½=ÞTlASbKvs*!hhŽV<‘Œ4–l’^‘œsÎ7|myÕ·—7FjýI§o¼ ^­5ÑÓ¶ÜÚ +§DúvKÝ:£Üâ Z0 0üœç7˜‹ôcœºðDýG¬Åæ#é6öÔúšß•ëü—;¬6‰¥†K]5,ÑÓEn–°VM<ó’1ŽÝ7±·dµûD¸œ .W3LͳµSM­¶Ö¼ß~nQTEò½17Ý{Û³'c]êê5Ž§´B)N-ÔFñ$O8"¦V©avz •Üx‚ÐWj¼MSNxbb8Í_R;ѧ8ˆœ±LLõGÕžçTÛõµ÷Séûì7 œ3È,•’V[å¥îJª*ƒ€cøÒÁ‚æï]’Cˆvm>z:ºrŒöMï²c£ƒßE•tôg9m‹tLO‹Xuv£äú*t¬Š¶–M=5ÄDÊvÂ`}PÛÒ\ö9¯Á2eÀŒ‚Â÷ÓipMwÏ b¿Ü¦,ñÐÑŽ(¶Wœ?ÍowÐäÓ_êKÅî‚*©æ®§¸QÉQ)湩#£™­cØÆJö4IÜѶ\ò悤Fs¢÷µ³¼E­ÛxêBfñ¾vmÊÓ7î·k•òxÔãTX,ÖjØèÛpmyžWÀÙœÖÁÒÆ»k.ÀÅã’\‹ÍVúYŸæÔǽ-‘¦ˆî«ÉÕ·.XuUκk\“ËÍ÷FÛ…¾;lÒ¶¢8äŽ9åuSC$O{Z×5¬ÀåyÑ^+ODÕ1mÑy‹ß²òTÚñÓ{ï›^Öî{Z»_ëGÛuþÕ_ 4ÖË‘·EHúf?m‘ÍRÌéIÚ÷4~ 4A'#”U3=Wn¨Ç‡ž]ù;U11º›öáÅÉÊug(WËU£]ÔA3Cìõ ŽŒ˜Úvià‡<G=8è Úœâ>×nÌTÇ„¡líô—íµSîqMY«¯Zzå«e´ +hêÛ]§àï„áR#ûÒ8¼¸†ùZ84Ž•ã½£§M1Ù†'›³²óÑ¢¿mê}M_­5ŽóÞè¼ÈÊŠZ[%\V§T™ä–YF(šöÅ !Ç„ŽÈò )ªs·ÍˆèÛ3=;òý3=;"-÷ué]A_~Òt·JºgRUMF&’µÍ1ɻ˚Zð0áÀ;Ž1•ë¥œ13¯ÝwžŽ/1}öï³ ô(ÔQi ­Þ¶¸µÜINÊvB!‘Ôïš'Ç#|gmnödñFÖZŒLÌM·Ó3&"&ÝY¥kÄÎê¢;&f.üiMu­µk 78#ºw\“['¥ÏEPÁûϹ©„‘²÷¸¹§-p#;+Ïᙌæ)‰ÙÓ¶bÛ¶ÂsLbˆèÅ1×ï¿d¿¥Û—k›­æë@Ö£²PÔ:7°÷mÆ¡°Âá‡LJ—4´?qN¹Îp욨¦™ûVwåd)§(¾ØŠæ~ã•»fïk•ËN±´è›Ý=ʾ „DP:šw@Ø&îÈöÙ$qø¦1⹎o´çÊßÕûr‹OoO©éûEwŽÎ‡»¨9@Õ\žË¨)*êá¹MOKCQG#éÛlµµ¦ÈØŽ^àýœ´¸ž)lt㢘ŸµtÛƒ¸vOÒÕTÇÚz;_Öí«5ÆŠ¨ºÙLͼ×2ØÛ•$¥loá>âv¢pldI{ÆXI8*s3iá4çkί·Å¥ŒãŒU—ˆÊû¦ï‘MÊ}æ+$æŠõKu}MÊŠÛGRêq °IRq(«¦›.‹Ñ´†—Œtdòó6õL^3Ê"óÛ•¹JVµçu7¶Ìæm™ø½ë—(§JËpÓóUÅW\Ú»]=%kàlyeÅÏi|±FC ¡Ýɀݖ¿ÄÈéÏ"«å²qá¿ ï×l·]ÉŒ9ý.+}˺¯1Øûz¢Ka¢¤†ïSÁœùkm=C©Øǹ™¡ûÈÛø6ÈÇgvöcÃŒ¢÷¦þÔòÁV}h×òj·±ßŠ;œvïÊeòѪb ¼Ãn}5)’8 ™Û-|ÕxË*G˜ö¶xìl~É4SyŽ›â¾è´Lŧ§fné"Ñ<-×7˜‰êÛ“šò ÐÖjLpþZ—úsEò#î_{¨Ò|©ûÞ)q¾þ5)×Ý=|4N5â-õTû «¢ÙÏQ¾~$ˆš@;Ÿ²\ÑLÕ9ïªñÓ´Æþ‰ûãIŒ·E§|åxÝ0ã.Xµ ¹ÓWR>yà–îû{íì¶ÌXÊfT>SݘÞ7gxñµ» %¸e4S|7ùÛrµ²™uúòwIM¯o›ß²þ9u=ˆuŽ½“Kßõ¸Dæ[«+c†–:Xüh)+0ó#ÎIy‰¯` $»ˆó¢¹ÃMSÓ1~¬SÜô®ˆÅ4ÆìºðÄø½íc­«5ei‹u%¾–ñ§é`Dǃ$ÒG4²FvšÙc ?°pÚr½-7‹þ¢LGTS1=÷yÅ­6ýC¼õÌåÜærë­5¥t÷J +ÈG Òj!C$ ÃééæÜË)ŸŒ‚bCžÆÁà‘“´;¢œQtUyêŒâ;r‹¹¤‹^:c¾m=™¸ Ÿ•ËõöëO[G4ÓSKu}èl˜±”ͨ|¨î°Ìo[¼wº Ëq‘•xðϵ·¢ÙLÆ}‘~´´´à¿Òìé¾ËøͺŸkOkMrÕæÝYr†–gTÕÄû]E0…â•âšIÎMCÎ÷Œ–ç ––ñQz£®&ýåĪÔó‹tÄï|ÛV„¶[µeŽÉd€l».Wµ­–ASd/{@2É9q–Lå¬kzKB•ã(¦œ=s1gŒ¹\åžsTߪ/?}J›È@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@AÿÔßÄ—þ)ý¤ó¿þÙÿJµTm¬ôUÊýx¶]m·èê(RÁ½¦î†=µ-c]‘½ˆ‚6'§¡C ÞÿK1³ŒO¹;Þ->ÔO(˜÷¸Û¹ŽºÓu†¾å4õ×:ˆ*¤­kŽZm“O¹Œe­d[ %ÛYvÓ‰vR)µ­¶*Ŧûè·S“UöìšpÛ‡ßÍúßη‘—j.²ÝîNž¾à)Z*a…°÷°n£ÚxñdÌŽÚqÛ$Ží­mÅ_Œe–ñ1_nÌ3á;{^ÝW%×k¬ÓV_g7 +§Ò=•0GºŽHý¸ÚÈ6ÜÒ×íö]™±Çmm›q_ºÖê·™{íÙk{ïÖäú3Eͦë.wÊ¡UYr–)'{!FQîØÖFü`qsœç9Äñ8.Ó‹q™í›G¹ÎoÂ#²ó>÷ürSÞS«s;àŠ8œD`îwtûŒÇÏãqÙÁáùW&/úkýçüªQU¦ü-ãæù×¾Hªë*+]n»ÉCÊ–ž–¹¬…¯{Å<{¡$2m´Ã#£Ë °ñŒ†R¨Å3ºjÅn=|m)« Fø‹]ËìÚ +–Òë³ÌÒ=×2Ö¹Ù-tqG‚(Øì“â4Ò^âì¹Tb‰óTÌÆ[|£(r*´Ä¿9Úàqr3_ZÑη—V>UU¦žNædolu-k$®qš@ßA¹Ë¶râT+Ñ㉾ڢ#”ßcÒ& ‹l‰¿uœº§“JJéè<ÅñÒÛ*-Žd ë*âsâ#à?ÓÃŒ´”EsTÏΦÖíºU‚"#æÍïÙg©£ù<ºiúª9n™kÙAJhéc16í_1k¾—e`vÉ Ë‰S¼ÌÌÎÙ‹n㳊6ˆˆˆÊ"nä—m"Û®£µ^LņÞʶÃAî–1¤—g†ÎÆGœù2›ý-»â}ÄÍâÜb{¦=îWÉD••l¦»KOn­¯eÆ¢–8À{¦k˜çµ“‡‡29]]#6I>0Ä(SNn‰™ˆïå|Óª«õÌZy[œ•þL.tºzüëel†–º®ù(c§Ìg„È ;B7–½›ä8Tbœ6Žˆ®™ŽÚ¢yEæRÅŠû晎TÌsèsiÈÅf¦’ÿ =åô´—ÇG%LB’IëYp¡}]Ýõ4vúé®°¾ï[$›Ì1ÕÅΛÇl´5¤–¹Ä5)¢ÖéÃÛÏ~^eU^ÿM13Ù7ìÍÙ6ë=Eξ­õHêw%‘˜Óí›.ËÇ&Ññ¼oÄüQÁN2‹q™îˆ÷!>ï|ù¾ú8 æÚø7/ö¯øÕ_O³µí£vr¤° ÿÕßÄ—þ)ý¤ó¿þÙÿJµTžÁHâƒÂ$’x ñÑÄ òI'(< æÚø7/ö¯øÕ_O³µí£vr¤° ÿÖßÄ—þ)ý¤ó¿þÙÿJµT7Ê6¨©äöõk½TÔ½¶wï(«˜HÝÂéÜ'͇4Âóщæ^s^ ÏdÄó‹Ï|^:ìôŠqF[bc”åÝ6ž«¸f”å#R2Ž7s}EÎåtl×vQo¢€QІ@Í©06œHg:G?$˜¦˜´Æq«…ï6ìÙØLESxÙ3j{:~¯Ý›—X®PQI`µÏs}M¹×WFÙbñÓ5û„‡Ç—l9¢6çˆâá‘žÕ]¦zb"&f7Nq—c‘FËå33ñ·ÅÝv»„wj(*ãkšÉãd­ik€{C€sOáœzëTZlò‰¼=åDÛCåþÕÿ«éöv½´nÎT–ÿ×ßÄ—þ)ý¤ó¿þÙÿJµTUˆ–­ÖÚñi¢…³OSdq¸´;m®Á.à:3ÅB¨½¾ÕLòª%:&×êžø˜pRy8uv«¦¾›oPóa 4âHãtR²Mär ãØÓ²Xüæà×.WÕ6¾+[®/ÝŸs´ÎQ-{õM»òqûï'·ØmvÚ¬4õbžØèà’Ó+h墮.$î¤t‘¹´äþ.׌Â\Çmarºfom¶ˆ¦­wáÓw;MQÓ¾fcoWnõ guæŦi¹À:¾á,b}ÎÀtÓ5€?cl±¹s²râÐzx/}$ç“ƈè—ðƒ}þ—_‰Aüz^wáง”ïð“ºüJãÒ\·hFòö5Å¥¤€H8ÈÈè8ÈÈèáÁMípsm ü—ûWüj¯§ÙÚöÑ»9RXÿÐßÄ—þ)ý¤ó¿þÙÿJµTŒ2*à€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÑßÄ—þ)ý¤ó¿þÙÿJµT’÷/µ÷Ûf¡Óuv©fÚ¢m¾JxÞCjc§Ž#$OhàìÆç–ÐðÒy« wèŠ&ñÂj¦&{/~Ç´Eè·L×Ç Sß1g±WÊslW½Et§Û­…Ô–>â¯Ãd’·xÈÃIÈfÙsKÝŽ€N Ú›Æ(Û3¥Šbÿh§»l¼¯ièÌöU=ýÌÑšÎçr¼WØï4ÐS×ÑÇ Gï,¯–!Ÿh5ìsØÇ×1Ì{Hé‚AR¦oÂm<¯U·¿}¥Ùˆˆ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÒßÄ—þ)ý¤ó¿þÙÿJµT}|Ów]dº³cqE |r‡$Ô26³GŠv¼ÁB)õ¯Ñ‚cùµ3îJgÕˆúxžTÕ÷AÛyÔ¶ê*jyéÙª-óÙ‹‹°Ú)PȧÈh{Ì@·?ƒÁÇ .QLÑLtÌWg;b)Šcº,ísLôETLM·ÌÌÏ~nâÑ:jù&£¹jKÜ0STUSÓÑÅMO1±ÅžòçHYÓžù Àh h$’§LZ'ŒÄöDZ!¦öáÎfòúwÛö¶£®’;}†šªœcbY.B;‡ÇÜïÙÁáøÇ=?‘Fó»¿ê;hßÜùóòü&(ÿ‹†ÿWo?Z>!Í4­ËP\c”Þ-ÑP=®Š¬UŒq$ˆ¢ÙÁáŒôåJ—*GÛCåþÕÿ«éöv½´nÎT–ÿÓßÄ—þ)ý¤ëMnOà_Ò|‹KoTÃ/Ó[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80ÉÍ5½Ký‰Ž 2sMoRÿbcƒ œÓ[ԿؘàÃ'4Öõ/ö&80Ë—hÚ*ŠZ© ‘¹ ³#ò¯ 5Q0ôÑÅŠª=ÄÿÔßÄ—þ)ý¤ç£ÄôŸô«QIùÚ>rºGÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎP6œ m9@Ú>r´|åhùÊÑó” £ç(GÎPs]I«—ô/øÕ[O³µë£vr¦° ÿÕßÄ—þ)ý¤ó¿þÙÿJµTG¯õ¤¦¿Ù¬ÖI©)ß\ÊÉ$–ªΦcZÉ"ââþ$žè^w™ªÑìÌÿ6ˆ÷§hŠoôÑâ©÷=];ÊdöدPj³MK5”Ä駀¿s,³j)X×eí. ÆcËŽñ¸i9 ±\L_uXg§<¦-×Ó·Åã«8žVrJT´Õ}¾º¸Ôºè6{¥µ1K‘m49›QÈÖ¿Çl`¾“Ávjˆ‹ñ·nî¼ÑŠo6á~ÍýY?Œ<¬é‰-õµ²T>Pº6Ô2¢ bš3.7@Âö‰ó G†³Àdå/•øÛ·wYçnìÞä_XÚõ„sº‰ïÚ¦—s4sE$2Å&ÈvËã5Í%¤8d`ƒ‘•(Î/×Üäž7º¾n[í¶ I~¶Þb†Üê=‰"‚i#žçI;Ø×66çlŒ~Ñ+‘T6˜û͹Ý)§ï7ï›ø9¶§åGMèúƒ}CšY&•ÑÃ,¬†7»e’LøÚæÄÇáÏ  èLYÛŒGlô9Þ/ÂýþÚ£TÏl¹Ú()7N}lÒ>W<ðe,Ë ÁéÉcZO‹—gŠ^Ói艙ꌼgÅØ‹Å÷ÌDvçá/QËEŠål¸Ëj™Ï¨§·T\ lðÍfŽ&œI‘­E´.a#‚ +òÒé0Ó3ŸMª"zfܶ¾–†åjÅ­O s9µ/¢eiC,L|xòDùÖÉ\p\Ò@àzWµSžòË{˜™ˆãã¹ô´¿)úwXÖw%ïtŽ„ÔG¼†X„Їl™ath•€ ˜HâAr&ýÜ'=‰L[¿¹÷ëµM²Û\h§—baK-f N71Ù1â’2:pAÆ&¨‹ðˆ™ê›ù;ÞÜfÑ×—›Ñr±¥nt‘Ö },õ°=ì{A‚¡ÒÈí 6ÛÁÏ eJg ïÑž­ž÷)Œ[:fÝ¿þ¾W´½Þš®¢9åci)Et›êy¡q¦ ‘3#_Ù8ssæò…ª×™èµø]ئöûÆßË›½2qE$ÒÈÊ7WFÃM;LЎȘ Íɘö±•ÊêÃ>ÌyÛ³"šo1Çâ_G’ÝjþP´¥¾ó$/…õ02G±ÑÉ-ì s™ÇÅwï!+ÖbÜ£Á9ñq=3ËUºáo»×\™-$4 hÚd¦†@$ÄÖµÍÚ|Î'6àHáÅyS]銷Þ-ÆórñNiÎctDöZ'Þìm/¬-ZÊžY¨$s·2º Y$oŠH¤h²Hä {‚â#!N3‹üdŒäëJŽ[mV E{¶ÝžbŽÞú\>8f29ákŒ•c\ØÙ¶vC²0˜•åF’÷¿EsO‹g¿7¥tZÖé¦'ŽÙ¿ƒ˜jŽT´ÞŽ¨0WT<9‘2yLpË+a‰îÙl“:6¹±0pçô ©â´ÛŒG ÏBMóëåat»RYh'¯¨~ÌDéžñÄ1¥ÅÜ3ž<:Wjœ;JcΗ\Ñrçµ 5O5ÎçÌÊk Ã,Mž&4þ##Z%Œ;Å„ã#Î +óÒU†š¦>l_>ÛvdžŽœS;&løz—=©,´u5S::‰m¼àð)çlolQ‡Tw9¸”FNaqýµéUQM÷D_³RÓ3n3nÝÝns]Ê^š¶6ÔV5ŒžŠK‹C¶{š Âé Æ?Ü‚IÀ¥S†ñ={fÞ$SŠÖé›w]ÅZêl—«u@†z.æ26ºž¢-†ÔHÐǺ2ÆÈZðNÚ.éè+´ç1ö¨‰ßy˜Ë¯7'(ûŒÌv_>§!½ò©¦týÒKuUK›$OŠ9\"‘ÑBùÈ2išÓn~FÈ{‡HèÈ\Š¢fÜmÛ»­Ù¦Ùð¿fþ§â§•m3Iwu­õß2¡”ox†S *$²ÌclŽa¥ÙâI)œYq˜í°UsÑ=’ვ ¡«¨‡u"Ô°Ù‡dÃ$MyqãúæOÑ"†Ž¬Vã:Hû¬LÇ‚UÓ†ü)¢~í1æìZ=b¯¥·ÔÅQ–\jKOâ8ÊÝæÓKq––µ€6xùâ«Ûé¢ñÕk£1kð›O]ì÷5>°¶i@kýª‰7PÅ RM, .!‘Æça ¹Ä Ĺ5[.¾í®Å7øÞør­¦E²ŽáC玴¼S²žf–Cw€DÆ™I–‚0pWf«vÅ÷å¿«7"›öM·g¹éÖrͤi"·HÚ·MÎqÉ-)àšgÌ؈ dl.Ún|f pr +LÛ.Ë<·‘MóãnÝÏnNV4»m”7ª]°º‰{iwqJ÷Êèÿ­/ÛAaYcKÆÍñxêËÌ·tÚzóòzžVô½%ÈÛä©x‘³CO#·2˜¢špRÊ»ŽG7 s€pHH›Í£|Çlt‹ð¿f÷ȳr±MU}ÔtU±ÉMOf18Ï,2±›#˞᳜Ÿ7‹ÙãT"»ÄÌôLLJ~~ UE¦":bþ>O·må[LÜ©«§î‡@Û|Mž¥µPËNøâ{K›!d­k‹Ùp8Œ<¦¨ˆ¾é´õîF)¼Û~pøºW•H5†®–ÕH×"¶²±Âxe‚`÷ϰܲPÓ°æaÍ8ãçò%3yžyÎ+øC³ˆã~Q‡Î^¦®åãl×v]5G «ŽjŠ‰K<£b2ƆFæa$¿Ç‘Ķ< ·Æ LÞ©Ñ~û|r&-é™·ußNƒ–ít¶ÔÜ ¬s©iËéw3™óbÄü$¥ÃgwÓ Å1E¯¾Öãx¾F½·^ü,÷Êþ”‚Ó-Òj·E5,£˜K¬’)Þ@lrDæ‰ã´ÜÞ ‚2 +bÙÆmyåÜE;xEç«{åxwÑ2Ô͆VÃP$¥¨i§sÜÖ³º3܇—7aÒ`8ƒŽ+±7í›vîëàäÓnWìßÔìE~¡Ò–Ê›•|›ªjXÝ4Ï Ö4eÎÀÉÀeʪŠsŸŽ‡i§ÚFÅÊÆ—ÔN¨lNfâ›»¿ŠX§ãøvZݸ¸¹÷B^"ó=oÐå¯ktì?+Ú^÷ T°Ï+E5'w÷”vÅ]j‚ÚY+j/.´Ôí5À±Ì†IÑãÖŒñi¥3ŠctÅÍb}ðUbwÆæÓé}W*úb÷tŽÛMRçI,²ÁÌ2ˆe– ïcŠbÑÞ̵®'ÅwN +QV=›¯Ù²îÕN»â;eìé.Rôþº¨¨‚Õ;ç4åÌ•Â)ƽ,s7Žhax å —Ç+”ÕÅãf]åTá›Nס©y^ÒúJ¾zÚ‰ôð²¢fEO4»¨_œJóÁËÏå\ǶðÙæEÏcÛÔœ¨iÍ+»îª‡;nêýçŠYöiø~û¦»b.?Žì4ñÆpqÚªÃ6ž¼:¦›Åã§gⳕM3Ex¦´£%]TQO pÅ$»QLHd¹®h‡’Ñ‚HÈ]¾sOLmà[+ôNÇ‹*ÚgR\[AIRã$™ñ9ñKs6lÊèd{ZÉCããÑÅrš¢sá}Ùoêvi·;vîë=;ÊÖ—Õ5 +*—9Û™*#/†XÛ4Q—ÉžÖ‰XÓÒèˇz)Ž-3º/=[ɦomónÝÆ–åoKk:Êj[}KÞê¨]=;Ÿ±Ç3³hcö6†Øi$.Äß•û7õ91nvíÝÖø¶¾W­ÒP‹…[œb¬«©Š‚:x%šib¦%¯“b0ç–¹ä€Öç‰ã¯(ñ3ÙÑÝniM™ÓÛñàû^P鯷zé_Ô:'ÕQÔ3#ið¼ cpÈs™êà¥ÕHÖÄÆò@hhEÄô`9èǪpíèr˜Å³¥×v®X4Þ:‰Val¦¹Æ¦)`˜gðìÞµ»qpüväqqžMQ3=¾üöeÅ(¦fb#§gcõAÊ昸RWT‰ä‰´4²vÔSÍ ÛNàKf ‘s£!§h##)5a‰™è˜‰á2E7›GL^;òõ£2öŠŠ‡=± +€ÆÑÔ—¾ ß±›¼¾s+AhÇO”Õm½xu‘Mûvq};·,zRÏ-,O©|ÒVR +èMÓºJ,­1Çdt“ä)UXfbz3ž­äSx‰ß6Ž½ÏJåªu«¨¡f“u ¤¨¤5¦ãU²ÀCœQµŒ—»‹žI ŠI\›Þve7ž›ßº"3ž0ìZÑÆg²ßv¹%ºÂNPtÍ ÚX› êÃÚÂ\ͨätnsx–8°¹„ô´…é¶"wÄO8º´Ìn™ŽN‘¤åÊ÷p£ÓŒŽ­¨»\kiä‘´µÆÈi%™¾(ŒÂ8F3´ì0!£ Î*¼Ó芧».÷¤Óh«…V…yÔVû ôpÕI»um@¥ƒ!Ò–9á¹!ŽÁ8Œt§¶m×Ý›Îv_«¿'¯å7O[Äûs=¸ qC,’> F$1ÆÆ4ºBAqh!£9#rý÷îÚí»­ß±ë?•3Í´—ç’hë$’( I3ä‹;ÆnZà t{'xѱŽ8à¹5G8¾Yå½Ü=ÓmÙîrÝ9¨­Ú²ÛÊÝ0ššvíÆöäddƒÀ€AA‚#*H•šŠßo¹S[¦”2¢¦9¥‰¤9°™zÈp8'$dŽ‚¹}¼"óÕ{;mœfÝ»\ Ãœ¹Øéî6Ú¡7wÅXh²Çãé#{ä Cvv±‘Œt… %xbñìÍQÕ èèÅ6žŠ¢™ëz—rÍg×ô6¶:BÊêÚUìeŽ)6ZÓ6áò46FÆçaÛ.vŽ+Ömy·DDöoêyÄwÍ»w>½¯– 5~’Hh%–¢QóÂÁ ¬î¦ÁÁýÌ÷µ¬›ÃrÂFH=Wœ×”Ìgh½ºf:;Á§,í~‹¸žž×Î’õd¦¿ÅDÖ^ã짲²zGEûfB÷8JÐßG³fL+±6œ3· ÍãfSïÉÊ£+ǵÎù÷fïµ$ÛCåþÕÿ«éöv½´nÎT–ÿÖßÄ—þ)ý¤ó¿þÙÿJµTÊŽ¤·èýk¦nW¾*fEsÒ6)e t‘Å°‰#k༱a¯?b~õKÒi½s‰ìÃS¬µ5~¶ƒPjzJ +—Ò«)‚'ÂöKUOm›}<Œ‰à?½Â6¸<3 qí3‚Ó?¨±WŒ1MýýNUN+Ä~¡Í=³7úo‘Ê-W*ê+õ‘µo¢Y£l‘Ã$SLhë]S; d¬s£Ø´‚ðZ±…È›gµ”Î[¢-3ßÜ”ç—N +£=ó9Gw{Ùš‚Çv¡Ô}ÝòóI ¶ÀúÙžæND37´Ñˆ"“4eÂBí—mœµ ì”ˆ´tÅëŒúr‹bêÎÜLæ~ã9uÎξ—ur1x­¼:î÷ÌêêVÔDÚkŒÔ½Ë5SD#kz݈÷†#â6]–íàW­9Æ{ç¶2ÏÝØò«odvMç/k®õ}¶©ô¼¨ìÁ!3ÒÓðÇæ-äa¼¬Zzg=œrσÛEhªžZrèÙ·‡½Øº‡OÜ//²ÒS1Í’M-r¦iÁ’I 3XÒzIàÇAó/O­4ÍuWnáòóÐUÓEú+ü1ðù¦¤¼^ìò²¢÷W=¶Ý$s ‡àᢑìŽ'Sì˜#Û{‹N浬$ä+13TÆq1kÏ¢mÑ»>O3LDNS²8DÅûòrÕGqƒš.øŸ,’{KÛKˆŽâÁÑÇCZæâx•ã7Å;)옫Â%í´ÌüÜã”Ǿo´^,w a=¿º›c¡«‚‚)b/Ž~î”Õ†5§„€05ŽhéÆÇ•GÍ33Ñ1Oe5LÞÝ9UÆÎሚb:oVìæ"-Î'›Ö\£¾Oz–žªåqî­'Y&©¥’Ý3Ó ‚!m`–c‰8y®2¯¦ø-3¶m5_Æ9š=´_+MWˆÙŠ|»Ñ¾¥Ú«KÂü3LVÄNÉÃ^æÒ€Âz88æ^ÚlçIÆŸ|¼´ySOÚ½ÎgÈ-Â*Ýg¡í}54tÓ2Hß™,M { ^Öœ´ðÈÈ>BT¦oißá­xã>3.ºHøÍK÷3¸Ùµ{®•q6K»–BàÙ˜ +Öí 1Ó°Òq«hýX¢gæÍq<&f»xÇ7´ÅñFø¢c³ ü%Ûü•TwÁ~Ô·êxäm|ôm¦|‘¾#7sSä”1á® .;-.kc=^š8´O¦cªÑöº5Í혎ÛÌ÷]ÕÚ»QA`ºkÚ*ŠJ—Ku‚ž +=Õ4² +™AºÝ5Ìih-s;e­“žÅxΚ©é%VŽ¸¢/Ùnç´åU5tEß²j›8Ž¥Óóizë­ Þ®ôÇWZíÐSÁmŽµñRw4°î% ~ßIycC·ä%{i#ÕÎ*æb:-1L_»=Ï=X¦r‹Q3Ó3ïÉJëûxµòet¤·sfž,9ÛdlR–ໆÑÁw ž*_ZçU;osë4Ziìt-ÑšúM>ëe<àZ4ý{k6à–1碎(àíh{œæ—ÐÙh9â~µzÚÉb¨í™‰·r_Yý\ôôÏdDÅûÜÃLZæ2òpÉ`~Ävš˜å‡ Ú¡…».áâçˆÁÆO:ãs²tsÍ©B‰µö¸žê}£­RVYµ4KdÕì±Q>Øb%²Or¾w˜ˆãµºtñ.`ŠòŠ¦ª1OLÓmŒLó™—¤ÓU£¢*ž¾q¢ÏÍÞá[¨4Æ¢‚Žz›µ)í§­©£t5Eâ­¥ôÏqŽ7N"n¶[–—8NJ³£›ÌLþ¢QžËÅâóÙ½ã\Z&ÞÅym¶[;w;+ôZ6ñ©ìõ¶Ékª®—SKNas¢ª†fBÐó)c¢kaØvÞÙ»‡¼´s”SÓU~©«ùwÅ“®6ÕÑ4źâ-oî¯åûQWS_OVkaš“PÓJ(hèžÊsKL.îÙädG~^Ñ´\^pà±â’»¢«Ö¦wW7èˆÎ¨ïË>7sKO«To¦-Ó3”xg—a:†¬Ü«^!“×ó°î1÷;Ý<-¹NjK‹¶3Á¬;$¯*"iµ3—©Ñ¶ø¯†ü"~,•s^c?Z:­Úüáìr?E.ïF±ôõ }uý² +˜Þ%‰ÎÞ™ €ñœ×ƒµÐâãƒÒ¯Öx´GÛS¸èÉ秛Ìý¹Ù†©q~Tïu5ϽRUwlSÞéfŽ†Š‰í†ZXç§q­¨•‘>ZIÛñKZÝ‚Z»¢ªÕS3Ñ^yZ#9ñË>.éc)ˆé£-ó—¹ÍyP¶ÖjëëMgÛ+©ÛoX d[ÃËK ÆÁhfv¶°6H+ÊÖ´é"g}­F}ÝÏHœã×ëù÷¸ÕòÄÍmlÔuÖY/g +*û¦¿Åß+L”°Ä`…åìkIs°As„cŽWf-ëtEtO\S;{/ÚŒMòéÃ\uLÅ»íØîM!©¨õÇ)µ7K|S:“˜ã„TI°‡È+÷0 Z×ÀážÉ gzS¶©ßƒ·ågîB­‘jìù99-îšgr¡b˜1Æ6Û.MsÀ; ºJ|z88§Ì¥NÚ¾Ñ{rvGÚ§ï.— µV[¹0ÑÕf–WGj¹C]U#qDÙç~ì §„\@$¹3†hžˆ¦#ªú;x˶Ŋ:fg¶Õß­Ê)uUuÒýG¦†»Piîçs¢‘†QHXÉg {CÃ6ŽœÑŒôq^tE¦™ß¤ª{0L_¶ÉÕ7‰á£ˆíÅ{v]ôyB¶UÍmå02 g¨ 1áŽ&@Úzpvp»‡õ@Œòc©0ݯåYQâùüNÝè]úÑ9OÚ©ûÔ9õŸlu{¥Ô×½O6°¸ºåa·ËTë^œ®†XêiecQ6äÇJY#[¼#tç9ËHÀÏŒ4“UFqhæ÷™·òrˆÊšg,æ{0Z3ã. ÎQÞëî³ÃUq¸wV“­§lÕ4²C™˜s©àˆEcØ‹qÄç–œF¨¼×Óx¦Ó;fÓUüa*gätZj¼FȼSå.éÔ“³OÙ´-]C$e=E˜²'¿to’&í5s€ÛsZN0ÒxáYÓ}‹¯¤Ž{ô_aÏUÊo. &Ó—6_*â˜QQj»´“–Å#Ë#¨¦ÝG>Ã\Xp\Ðpž€U]«†gf$vÍw'­xú9ìŠsñ¿c•^µu$“Øu;íóÑÛãºÖ™%îy ÞÉi_ uRÄÆoÙ]€ š\°]€F=#)¦g/V¼·LÌLlé›_­Î&#?ZŽQ{íÝ{8Õ‘µ7J‹][i§c$Ö••I˜á©¤Ø‘ÀŒµ®àAv1Ý[V›¿šI¾.½v °ßªn÷í!-ovÅSK{˜UPEDø(¨6ÙS86 ç¹ÍÄ¥ïÚÚ.ñA\ÑMæ™úIÖœ;;ÒÅ¢¯µGÆ-ªcŠI(ttqI£wv\\Zæ–Ÿ¶c’:A>QÅwEò)ûE>é~U_j—Wê}gnÒZëV²²žj­Bb‚I·’TàÚì9ÙËv°ÓÇçVt×Lm™‹qõ"‘”Ó=÷»º¿½ZÞOç…—Ê˵ ŸM[¨£m±¥ûúŠvÊÙi^D3açx݌촂㓃M.sTg7ÃhèŸWt££Ê)œ¢Ø»/Uãã{¼¹0Ó²i½]¹m$6 3k§kep´²Y³ ¥5îoâ0N1…Þšú~Gm©˜s¢ž—ßT:¯M¶¢ðYb°¶¬G-Ò)h®ÎÚ´K$.k[£g‰$‡`F ssHkW…TÍtÌF~¦S9LNV§ºÏZf)ª&rõã(Î&3¼ûû_N܆®“KQÑÒTG-ŠÙZÊñ%<±h3`Ú{ZçH6€Œ¸·k8!KëDë1U5uGlÛ.Ë!¢Œ¦v㧔_>÷&ҖʦÒrq‰í1PÔ1þ)²má ;‡‹Ç‡qáÒ½´‘zçíº£¾‡9Sø2?p+%]¶ß¢´tÕRW[ŸK \ ¹Q1ÒšYØòÉ!š!»l˜´ä9»;L Tkª&bc+èé´Úñ9S•».•4Ì^'?^oÑÓV}öísm1%ÖñQ ŸYJÊZ–s¥D±Çà·.¯ÜÿB÷¦HÞXÎ#¤)Ó9î^qºóN\ü«dôúñißlS~NÇåžiµŽsç6;»œòÐHk{Žq—Ð2@Éá“… zñöšþóüÙë§ÅÕZvÝUÒ‘˜$f¤tnÁ­55‡iÃrxqÔúh£/;BÂþ“®ž<2¥õ£;ôç~»MÍá˜è÷dêÛç(£Réºçج.®ž†Í‡>ªød¤°:u+éH tc a,h9. šZ±^¨ÙxÎ×ù×ÙÃo[º*mhÓ•ø[oN¨¯ªmö»UMMSq¹6¯I>(ê*©¤‰²I¯/Šn£kCÛ–Ä“‚ìç¤ù5Fú´sÆbó›Ò‰ÎŸ¹öz°ï‡ÑOß±Dý‘¤wAÛ'[óâgÏï½?‘KKögÃÐÑl£®|(u>Õ”ÞtÄ÷h牃GCžÚyd,pªiØsckžÒì`dchœªªÕUöÞg'"›Ój¯Æ3sš U7$V»]sê-殢ædq=ò¶ª×<Ó¸3ÆŒ>7ˆÞþ0\N0R4yQLôE1©°²:S_ºsä:>ˆ,`JXì§Ò½iÎÑkNÌnµ¯ã± +ºglbµúïoÂýQ•T¶Ë}âŽ9$žŽ¢Hbis‹+ ’•Ü“€ç±Äô2xᤉ¼[¦ôÏܭÂÕGdùK®lº%ö=I{µGÍh¶×MLvÁ}ÊšZÃŒ Ì™ˆÚüª:Iš©®ý4ÇTÍUù;DDMf&zâ"—µM§î ~€¤Š7Ç'1\ .-p>Klln×íyðr?"õúÑN*ªˆéÑÕô¡¡« S3Ѥ¦{ªm _ßFˆµÓRÔEQ`ŠNqÁ$m§,£4Û¢÷´5ÆIsDeÁÍnßF¢qUŠ6`˜ÝœáË»4f0ÓiÛŠ'²/Ÿ{¹4–’§W_®ÒÈùê™,Tq™bs<-…1B]ÁÍ{É’G³ƒ†œ–%”Îú¦ý–´uGy^Øáß{Ï_ƒµÔsm ü—ûWüj¯§ÙÚöÑ»9RXÿ×ßÄ—þ)ý¤ó¿þÙÿJµTžZ÷3 ‘ûK£Áq'$®%ÅÇ$å¹Äç'(ÅÇ$åxÉãÐŽ¼‡JÊ8ò^çc$ðG^2QÇ’âî’Ž¼GBOȃôdqòŸjÎJ8\rNQ×£ÃGBÅÇ$åy `ŽÅ¼éAñµ’ŸRÚêíÕ[ª¨d‚M“‡lÈÒÇ`ù£U8¢ÛÒ¦¬3x{–ê6[(ौ’È#dLÚ9;,hhÏåÀâ½*«ÝçLZ,þÕ1º¢#lŽŒ½¥»l#i¤Œm ‚2:FAò(NiD¸ÖŽÒš*Ô”òÍ1|²TK5Cöå–Y_#Ý€ 8€ØÊ-w&o7ß÷ÎZ^ârIÏí£D Á=Àp%Š¦tU&˜«®¬lÓÔT×H×Í5CÃß²ÀDq·¡±Æ hRI$år˜Ãã~¹ØíSy¿c™œƒ…Ô@÷NPqª½/GY~£½<¼TRA=+_ {ÈFÑ‘qò®FQn¾ù¹3|ú»²~Y§¨Ûx}Ø‚ê—@Ú`ç†Æ^ZÑäÚqËIÙo™v2¿w}ù3~Ë÷¾â8dùÑÐÓŽ<í::œ””qú.sºIàŽ¼™|¥ç%qîöi;àçÌ¿º{“¸¿ÅÝïw½–×—="-yßnëù¥5^"7_¾ÞNC’\xGr|èë‰kM#¹µ¾ÛSQQ ð”SH#t‘ž‰ÎÁ;³‡ÐBŒÓmåÑ)SVœÜ¢šQÆÈâŒcCÖð­~@æoš`÷NW¡Qn¦«©†¦XäƒlÆãÒÒñ²â<™#†zq‘åO+|ruï[ÐŽGy2xñéA丸`ž„uã$þâ8ð€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÐßÄ—þ)ý¤ó¿þÙÿJµTžÁ6ÐßÁ¹µƪú}¯m³•%ÿÑßÄ—þ)ý¤ó¿þÙÿJµTžÁ6ÐßÁ¹µƪú}¯m³•%ÿÒßÄ—þ)ý¤óˆÚ?¶Ò­U'Œ„ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „ „×CÞ¹µîJ¾Ÿgk×FìõI`@@AÿÓßÄ—þ)ý¤ ëµfOá<§ÈÞÅ¥†1KÇ;ÖuŸ™½‰†Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† Rs½gYù›Ø˜`Å';ÖuŸ™½‰† RåÚ:¶zª©ŽÚ™èËùðÓShzèæîÄUâÿÔßÄ—þ)ý¤ó¿þÙÿJµTs­¹A~®  §¶U\jk„îŽ*WBÒZç¹Æi#n0á€O™BjÎÖè™ì¼G½<9_ŒGlÄϹïèyE®!©ÝC=-E»Šªj¦K ›!à8æææ½®-sNAéÄ¢bbÿ„&-6sj"©fò7µíãã5ÁÇOÁtx†¦ˆ÷‘È×3Œ×8tñ8y|È<Ã4U í{OCšCýу‹Úµ¾ëw¹[–Ko’Þ^ZÝ<[Öˆøäá¼Ær»ÅøÌrˆŸy1nWï˜÷9D•Bæµïk\ó†‡8ãæôþâàø7íMO§ê()äcä’¾¤SDÖNv#žìã cXKípâ›fÝ}Ðt_«¾lö/Z‚’Ém­®{·Œ£†I¥ld9ÀFÂò1žÀà8¨W^™b›o{6‹µ=ê–*ˆ\’8äÙÈ.h{C€pààô/Z¢Óg”Móßv:ˆ¦sšÇµÅ‡ p%§Ì@è?¶¢“ôd`vÉpÎ3ŒŒãÏ7åBÏË'ŠM—´íqn;_µçýĘêà™®s$cƒNZà@#ÈHGeF™ÅWDߺf=ÎÌZmÕß>÷&ŠVNÀøÜÓÄAý¢8׿” +z:«4tµËo}$lMi.î̹¹#ƒËóŒq•ÊgÝ°öÚ'–iL[•ûæ=Îré¢h'm¸g9ÎqŒùóÃ9àºãÀž#)ˆ=¥àd·hmç#§•˽^9œSijoê#ƒð@á#x쑆71?‘#lFÿ)ŸqÑ}Þv}!U¤‰^s†í œtàg<<¾dYjë~„³T]kÉÀ]³£´àÐ$däôg£+“6혎sgb/Ù<¢ïÅ6²·U^ªmaà>ž +yÌ…ÍݸT:F°1ÙâìþØÆWc;ð›w]ÍÜbýörYª!¦ÆñífÑÙN Éó ã'òt þØGÂ*ˆ§.½®-8pkÁótÈQ׈ªà™®s$cƒNZà@#ÎAáû¨?¯¥k\ã4`4€ã¶Ü4ž€xð'ÈJIê!¥nÔ¯k2猞Ž'?²8þM¨‰ò:0ö—·ÍÃ>qÒ?uxeL2½Ìds™øÍ·öÀ9ºƒñÝÔÞ7á£ñ[´ï¼|§ùO,ý:ª0=Ò04Œ‡éÈ9Á\ùV=²49¤8AÈ#ÎéAøßÅ€vÛ‚vGŒ8Ÿ7íþN”.ºôÚºJqä͘¶#2fROŠ0:x‘äâ¹|û&oÑ•¼Ý·»½Àí¼°Øo–êªr÷G__-¹‡Äñ$‹{´çøÇ ;—zH ã ´Î+q¦g²"åQkð›wÙÚQJÉ؃šx‚Ò?´GŽ?›ª kà ŒqÀipÉ=89ÏäéAæJˆb{X絮ⴸïÚ‰ýÄÎzÚzV¹ÒHÆì‚NÓ€èòŸ7Úâ¹3†.ìEòp}9Ê=¿VRZk(!šX.m‘ÍâÆ~;%ØÃ@ÉÏNboÛðï̘·dÛÇÉÏS Þö6F—3ñ€p%¿¶3‘û¨ãô%Û8sN×ñkÏû‹“6".ãZ_WÐj«%Þ3¹†©»Lß´·Ž3ã*Vµ¸ÄO8‰÷¹î™ŽSg#–¢ío ø·Fxù8®:þŽ{YÒ@òq8Aø†xª·ÚöññšA:xŽ~#«‚X÷Œ‘Ža8Úg£<:¶™2°;dö€]æó|øÊ|«±Zè¨I,QÖëgÒWnãdm|îs"´Á™ZxqÙèwº(ËGœMvð{Ìü¹éµ¦(¿‹»y*£¤³j}[m·µ±ÐÓÕÒ:8cáSKJ;ÑÁƒkeÎcpœxW¦ŽrÑUQV‰ñ™GIÆù¦/ÎcÂΩåaųêò?{´Çú–%ÝØû{ðÚžŸ¶§Æ·Ð’”E¯NŒüfI~ý“ä¦ÜÈþÑî¡ŒteGE—Òcïù?{î+¶OG/•ÝLsp®OíZù4õî¤Úiªf½TíÔµÕ¯¨y’vÍM'‹³øâ×Üa#tl=4NQÓz/7íϯ'tÓ|V諧¢ÕDE»2íºˆå˜ášwûˆ-ßéî^Ôüºzçï<ªù5uGÞ©NlÓ¶Êk צ@Ñ^Ýl涧úÖ› ˆ±¯é ,sšX0Ó“JðÐå>37þoä±¥Îkáøj„ýRVú:þNîí©†9ZÆÄà$k\Dì@àà‘Ÿ1*uEíöª>õ:z~ÓWÞeÁ5>€Ó—Yª"ª ‚Hé´õ+ Œ°Ežë9£ chn8¼tß'I=1TZzr¢ÑNtGáÖõt7mWUQZꢋIÛçÍÙó~ ²¶MýD[°pðZݹ8=¸he{ééÏI9E¦3éˆÃ3ã~ØGC6ÁÍ⬺&qDx*},ù"äþÕµæG [L•ŒkÁ AÆvµÀ?8ñÆÐÚÏHÊôúÑÓÑ—¹ E³ÏÞ—ì‘Ù¹7µJ.4ÌnÞ›¨|uöi¶u+ dË#ݸêŽñ®l¯/n^ü;††“,Q1iµ1–ua‹nÎm<´Í晉¾uZf3ÙŠo¿f\_ÎkS´Åf¥¥Ž’†ÜÇhé%´sðd¾wá­|Äãµ£#>3ºTkùñö™D|­œ¼Ñç4qš¶íù¾nWaäËKK¨,´Ï·ÂøfÒÆi£sv™4 Â,­<$‘¢GìÈü¹»G£úZ"úNáy®/×–Õ}sj8Ìß”O.!`£¹êÆèúOn®„i‡Ì"»ºSž&do{C¶¤d{#iÜXÂH œ¯)ŒW™·È¢sÛœMçÂòõù6µþ]{8l)ÎEYQM mM5l®s)Èdñ‰6dk\áÎô–††´ ¸xç+Ö¹›qó‡okÎ"/Ãøìtï%6Ý#K§tÍöªGGv¨’ºh¿_©˜²WU2bsÚÍ’C^@Ì`p3j#/Ô;å» LÏ]öqJóTÍÿQ-ÛŠb#ªÝÎ3É¥5¤Ò5t4”´T÷ uÆFbc5uLN‰’‰k$¬yÚ!ØÃË^HÛá…Ì8f¨›E´[#fÚyÎ{zɪöŸÀ›gª®ì¼“ §ê-ü›¾J8žêÞîEÃ&¡¢$ ›?®°9­sXüµ¥£aJŠbf>Ú¿o©Ÿ|»¤«oÛžú¼ŸÞÕd´Ü*´}®²6:Ž=E¨ ŽñŒ¶1>ê“À°`lÆrÞc +4Eæ¶êã²aÚæؾ×G}7wç!1Å@ÍGEIŠ’ûW +ZrÆ3b'¾8ü•Ï£ƒx€0»¢›ÓuDuESdt‘j§ª›õÍ1w@ëdŒ»\츆YîUŸ<Y±Þ>ÉÀ¯*)µª¿ØuO}qølËÒª¯x·Ëˆî¦}ñk¤£zý3s˜¶ñ¼Ö€î!ÐÉK4qÓmáÑ‚¥Ef"Pë™ëªªj÷¡Ux¢f=ª";"ÞçÒºFÉU¦4•)£€C>«¬±Œk‚7×µû mnÉá²6z8/M^(ûng· ¹¤›cû\GóhP¼ŒÑÓÚkuU+5=éí† 20úh$sXÑÁ­.s²0')Ó¤u×÷©B¯•=TýåÐZ¾Ã`­‹•+•SXkh¦…ðLãøJw6ŠÂèOLnt˜âÜ= +­Sj/cI6ëÅwìZˆ½q²h‹ò©èòË47«f§¸ÃIuÛã¶ÅS[])ÞÃ0Ž)[mh1’_—<¼ÈçppR¯)¼~¢ÄqʪbÜ#‡[ÎŒâ"PæxgOlýGyY´u›Prƒª««éc©–mÑǾm`}¶ËXì´9Ýv2[Ã8]®˜µj«ï¹ESzz£ïU:‡CÑÇe±òrûlÇ#©®ÒݹE ðHhN$““Árfb2ýA¿m¨J3œÿQcƨr¾MìzN 3¦.eû»Åu²®M¸‰VI%1}Wt 5Þ0Û#aàGâ–š"šf)ýBžVŒúïÒh¦f¨¿ê$s¼åõÛEUÂör\Á#KCTà²Hû@ð'ÏÃ¥v¿•ø*¯Ã§äÏÛ‘ø{†éª* GfÓVóCOYU Ž®¤ Œ¸¢†TÝ)ˆ5Î’lŒ4‚݆g.nÐ]ÒEâxh´w™è½=³ž§(›vé+´G +ºy¿\Ømúæ¿“ñvckXÍ3S0æ=ížœ1夭ž–íg¤ezÄzÓ=84sÛ¿­ Ê›tk4‘ÙNðýQpÑÔéJx«^YO%ÖÖÉ]´Yâ:­À¸@ àôp+ƸÅUýD¼Ôô¢mMsÄøÒé.R©¤j5m¶Å´/m„ÏIŠž9**áÛ¾1µð†ov%§k¤äö"ùmúö˜´ìΘ™Ž«Û¶\™¶€êœ¶å6‰ëµß#]iz‹=ŸUÑNmÔÌ™ÖMå§~Øá{ëÝî^Öµ•˜Èg8ô‚QMíú‹Geíxð—fmyü_né÷; ”Íe¢»>šßECW šmõ¦S¸tPI+Üjé$-tmœ–¹®sÆIkNÛO +òÅ=l¦-y‹|t%FvŽ™™œó‰Ùüt¸äTÚo^;PÕ\¶¦§¥ÓVù­î­9–$¥–C;IÆÌÆF·nVáÛM8SÓl®¯mûŒLug2Ž‹mÑoæ'¯'­e°Rë©î•Z†™µU#FÚä;ñµ³+â©sžx6B@;cB4ñhÒOLLvNžÌÞš/™öÆ+x96›­mtpÔ\k$§k4=;û¨eψL㿘t’æ†1Äôœë¦ÏEðEøN/{ÇE–›MSn¬>ç©¢lvË µVzÚ*xf¨ÓR8T[äÍ%m+<]ü±9¡ì¨ñÁÚy~Ó\àq 7É®-iŠbf:6Unßrz?•Dí½YOODÌK°G=×h v݈+n´ÖêJš¿Á‰bÐfI·änDmñ¶\ý­“‚½t±ŠmÑ38¾ëïÙ~ˆyh¦Ñ~˜Ù÷kGŸsZì:VŲ…›ºzZc MÎpÖF@É='ÊO”ä®ifñ=SàhâÓ~ô“ÈõŠÙZîNª&¥‚IEŠ¹ÂGÆÇ8: ‚A ·'dçÅÉÆ2¹FU~ +£ðØJ½Ÿƒ*ü9Ýü³TSé®fÕ8µ–Šö:gg€§ªi§›kò ¦;øŽW&pÌO +£œ^;âˆÅSÊsî™t¿OÜî5:VRPTó%Öï-=Ô˹}MLÑÉ–mI2a¡Ã nÓ†QÁ18f#ÕÑÇ9ŸZyívj¾q3ž’vnŠrðK>’uâק löËÜ”´—]›}C¦lSºyeiÄ”ø±ò4‚ÃZQ=“9ŽØ™u?.Æm?w¢¹Àý—×PWY™*7o‡÷AkñåÉUæœS‡¢ºb'²¨÷U/jjÃöfg3ïˆt¤šyöÛ úѼ.‹KiÛµ¹¼rvª&“vlAqŸ!^ZIÇEUNÛQO*§ÊÚVºb=©«œG¾e˵-šOª˜ý9¥žM_+·’Hw’?_#vÞZ÷eÙ8ÊôÓÎqE©ûÔÄÏ$4Š)™ö§ï7·72ÓZ[NXõVš¥³SÁÜ÷ I¬c\Éâ`§t2Ì8‡¸È÷#òçm8dㇽ¢+ª:0Æ]Š­×WŠ¦i¦zqmé´Ó3=öv>”±Vß5U}þé€häšÝn…Žk™?ˆd˜ì“øYœ à²65»#$žQ”LÎÚ¼"fÑ•{£dxÌgåà]@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@AÿÖßÄ—þ)ý¤ó¿þÙÿJµTœ3Wòy¦µû`mê‚*Ás¢Þmx…ÃÙ- Œ€óáFh‰›¥Ld÷-Ú.Áh´:ÏKAO šæ:±·vàÿÆÚn0í¯Ù’|¥vbñiØäM¦ïVËÉî˜Ó¶¹ít6Úxi*6·°¶0Y&ÐÙ;aÙÚÈáãg€ÀIˆ˜·AZoÒõè93Òv«4öj{]3(j 3A»’Ž/Éqà0IÈÀÆ0b&-ÐESw×Ó:FË¢èͦŽ*HK‹Ë"nqà\ãĸð$“€BëÕN”³Õ¶¹²ÒFápk[Týx5›?φø£ò'7íËÉÛø[ã›åÞù9Òú’®–®ám¦¨š5°¾HËH-΀ì€x”éÅÓ½Ëån‡%£¶R[ÌÆšÍüŽš\Ç{€s¼ä€í-•ºûó/Óñ“‡Ùy+ÑÚpU + M,×¢Ÿwq»;L>fœµ¸nNp¹†-nÉb›ß¥ÊYb·Å=<í‚Jh.ÇFí¦7ÌÓ°ÜßB”ç7阴ø£E·yYðôÏ'šcFTOQi¶ÓÒIQúë¡Œ4»ŽÖ?#rIÙnxã+”Æ¡Ú§rû7­?lÔqÅ}4u †hê#7!²ÄrÇßšxƒä]é‰éžt[~×ñn•³6jù»Ž»ˆh«q`;ðÖnÚ$Ïφ0Å­Ñ3yŽ.â›ßv϶ò;¡ìÌؤ³RÄ RÀvYŒÇ0Fœ–¸9KGu½åúxÝ̧­‘ÔÓÔ¶ž1-4.¦…øâȳµ}; Èýô.Îwû\Ù–çðÓzZÏ£èͪ–:X ß&î!†í<åÄ&|ÃÌFQmÛ Îo½òæäïLT‰’ÛNîsÙîÀædN[Ðd#Òàsƒœ€£†-n‹ßµ,S{ð·cêé½/hÑô-¡µRÅKNÒçânÓŽK”“å$’|êH¿~‘²ÜÍA¨¤ŠCRè6ÐÎÛ©È0—y˾l$eÎý»û¿…»>%í?muÛ<}Û¸îmþÏá7[{{½¯GkÆÇ#.Ûw93~ͯEÉ昷^¤½Ám¦Ž¾]­º†ÆÉpÃŽzps€pé%r˜Švt»5_k\mWqª…²îedñí ìɼ~üÜð+¼wyYÏ{æ÷Ÿd4Æ›¸âÝžì,ÙàgÞow¿Ú{~>}.+‘· œ6ù˳7¿¿§w´Ñj +)¨«¡dôó°Ç,r ¦½§¤8RbùIlß*Ù£¬–h-q1Ôì¥ph%›“Ý3§_ ¨-Ð@a–YãÝ·Lݙќ4¼p8áùiŒ;:"Ý›R™¾Ý÷í~¬|Ÿi3q¨¸Ûí´ôõU9ÞË`9ÛGiß´ âàÜ'%"0åÍö½;%úGLÖweºÕMM>ÛäÞEkƒžq`CŽ@Àâxd®E17LvM¼š¦_›%š>ï 5VšYYC‘L×ƈ’ûéç¹hä÷LiûeE®ŠÛM%IqšÆ $Ú;`çk#‡œÀ +s1n‡1LMßÂÛɦ”³ÚŸj¥¶SÅHù3ák–F·ÄxŽcKsÃghyT­y›ôŧÆ=üËÚ:¦ñá?¯‘ûºÉp·X(©í®¸F šHY²íÓŽâGˆ\цµÇ8Pš/è¼^8GÅ’Ší7éÎÝnQ¦m5QÑÇ%3Ú²J`áÓãicß3šÒ@>b½&o7éÏ¿j”[«¹öžÐö–‘AöŠæÒ&ÏmÒvk8¤´‘EÜQ> +}ÔoÆÓæk¶FGä ånÈè&oÎý®-ʾ‘¹ký?5Ž•ÔÌ‚»ð5o¨s› ¿tÖð2 FÙ¹ÚâF*§¢v^&{&'Ü5aϦÓnسj] §µ•TWZj ˆƒ%nC [² HÁÈàx)U¦óñt)œ1hz7þLôž¨¤¥£¸Z駆lÀÇF‰¸ ÙfÎ6Z@´x¤ ¥Qg.ÅVÊÃôM»ž­÷61±›}4Ô°FÆ5­k&ØÈèh€ÖŒÓä ½3;âÝ÷/•·Mû¬û=lÔ"]OâžfTżØ–<ì=¾g7'8îrïIÚ6ÄþqÚ¢ˆóŸ +Ïõü3wøO?‰âþÒ昷DÍÒŠ¦&ý0÷ÅŠÜÚ¸jû›èau4oÇÄâÒèÇ蘆¹.í¼ïÚŒM¢Ï‰¥ù=Ó:"Yå³Ûièß>7Ž†0Òì@ü’0ÐNp¹†-Íó—ݵY-ö10£‰æ}D»rÉøï?¿;'ò.ìËwÉ›üv>¢8 æÚø7/ö¯øÕ_O³µí£vr¤° ÿ×ßÄ—þ)ý¤ó¿þÙÿJµTžÁ6ÐßÁ¹µƪú}¯m³•%ÿÐßÄ—þ)ý¤ó¿þÙÿJµTžÁ6ÐßÁ¹µƪú}¯m³•%ÿÑßÄ—þ)ý¤ó¿þÙÿJµTžÁ6ÐßÁ¹µƪú}¯m³•%ÿÒßÄÊ=Þ¥°ÿB¿IÝ«×[(`‡Žõ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜ ïRÙÕ~“»S[&;Ô¶u_¤îÔÖÉ‚õ-Wé;µ5²`ƒ½KgUúNíMl˜!ïPYi-/…›$Œ$ðýÕ«š¶»ÙõTÿÓßÄÿÔßÄÿÕßÄ—¸1¤ž€2ƒ¤Ÿú£ù8c‹Mâ A ø’ôâ Cè~—ÙðóTôº7ø¿?I.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ?r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×û’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]ü^>’\›çù¼GîKò'Ðý/³áæz]ü^~’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÄúIro눽É~Dú¥ö|<ÏK£‰ô’äß×{’ü‰ô?Kìøyž—Fÿé%É¿®"÷%ùè~—Ùðó=.þ'ÒK“\EîKò'Ðý/³áæz]üO¤—&þ¸‹Ü—äO¡ú_gÃÌôº7øŸI.Mýq¹/ÈŸCô¾Ï‡™étoñ>’\›úâ/r_‘>‡é}Ÿ3Òèßâ}$¹7õÄ^ä¿"}Òû>g¥Ñ¿ÅË´*úS_TÉMh®eL‘³x浯nqŸ t•ã¥úÍ^Š/TYé£ÓS¤Ê&îÃU^âÿÖßÄ«õ—ÿhŸô‹°ä°Š¯ø1/ö±ÿéÅ~‰è|Œ½rpŽ(@È@@é@È((Aã ó€”2=á!! d á8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Ad~¢Ïç(¹lCýJÕ‰ø‹|ˆûW¹§õƒåOW½¤‹å[¢ÿ×ßÄ«õ—ÿhŸô‹°ä°Š¯ø1/ö±ÿéÅ~‰è|Œ¨ÔÿeZmA$T4µ•PRÄúvV5ŽŒ<Ƀ²áùBÎúÝV§9ˆš³¶ÛZw-}e¦õNQ>¬Úû/x}{m’¦mhjµ ¶ßO ²ß5tÐÒ2-ËØÀàÀðÇ9¥ÎyŽà¼jÒE:9Á5LÕTS½ï6Ù~X¢j®1DDDLÍ­kFy¾µ·KY]ÊÍŒ£‰öë8EcL{/¦s‹Cz3Oå+ÏE§štµ^r½v¾ÏW?+ÑÄè¢ÛmLó™§ÆÎU~ÓZZ£”]1%¾˜RMOY·»LpÆ|\䪺=-z½$ÌÍâ)˜Ïeó÷¬é4tÞˆˆ•TOZ#Lhm<ÞPên2QDûlÔÔSA˜Ó}{ÙhiñÚ^ÕéjÕá¼âŠª‹ôÚ˜š¼,óÕÆ™šaµ’Ç»i{[´çF ȉâªU¤ªi¯9¾¶"&û"mjiˆš2°ægŒÅÝm©ô•ÓW†n£²óF)æ-Æšx÷ŒÝ;%¤dtd+š 4×]ÝTUc'†—GÓ\ÇÒÌuNnw­vžXeÓ¬´Û䣩¨ˆ%3æçˆÏCA\æ_Ùñ|­ãÐx(é+˜ÒUËU~ÛÎdS»ýEí¥ÒF¶¸ªª¢"ÖŠo»=-«¦b"fo{ÛZÃWoäóHZ®†×GYUuª©t¦ª-ãY/ ÝÆ3†d“ã!Y´é«šo1ÓNÉ´ÌÏL¼>ç¢óTÆyÄYÙvŽO謺·USZí°Ö:+tUtTóÄÙƒ_6ÃÃC]Ó¢ŽUkÓLè隦cëÌ316Ê.÷§GÉ´mÑâˆÛžOãS¦-Òj}Ò×KIqª’N&¶#Hˆº1–‚qÄqü«´é&ÚL33LS”Ìç{g›•Qò1DDÍYÄn¾çТÑ:yü¢›©¢„ÛAS)Ë»ÞK+iv6qŽmyÂŒijÕÍ7œX­~›[ùd•Z8Ç[,33¦ôø¸ºÉe²ëÝUs¬£ŠJ 7tH)ÜÁº.|‚(™³Ñ’@ü{EuU¢¢"}jðÅúwÌò‡œÑ¤œ²¦&mÕw¹šŽƒMòªë¶ÐÔP\jcž34 ¶¢Ûh‰Çñ[ù0GëÑb™ª*¢*‰´Û8ž’f)®-jðÌeÑ;Ÿ#MUÐkKÖ¥eM²‚&PÚ®ÁNÖèä2Çð€pé •ßG£¦bª¯UZ;ÞwíìzEªÒM6‹DWÑ»ïŸÆ”Y´VÛ%ª’°Ý¡Š¢²Z˜öä-ž]†¶7dnöG”yWµQ:j«ÎcQi¶q¼ïW‰4Í¢f«Ìß<¯_¢y8Ó”îÕÖjÈXíšøè)'‘¡Ï‰ÓˆˆqâÌ^g;Mí’z$hâ©é˜´nÛ›²m<¶Ù+ktíÒêÊÊë)ê7á¬1HÇKÌ78 Œ’ªWõŽ¨Šâ•E6¼ôÆÕŠ>´DᚶÓT쎉z¶.[mT–½1M8‘²PV2Jǵ„—CNdÜsã$<<žÅ:þ²LÕTÆÉ¢mM1>Óõ¢"˜ÕGÝb©«Þø0ò›dŽÍQHL»É5.müÆá®ÎsŸÇÇìTãë=Q4N^®Žiœúf«K骉Ž¨˜|ÎTë4ª¬¹Þ(.U®«ªÊÈ$¤ iÄ ö²9ÂïÖjtš(¦™ˆ´tâÏ“ºz¨®f¨™¼ô[ƒûjMw§5¿·]¦2º‚é Æv‰§Œe¡¹â €èÁ%OE¢«GEQfj˜Ï~Ä4•ÅsMöDSÙµñôo)4ôwë½MÝ’IOyŠxjLX20Lí öƒ€KO“ÊIõšôSM;hÃ1ºðí:^j“xž©}–r‡§4<¶Fiød©æê§UÍUQa’rïv.-`i dŸŽu5iqMy^œ17íë1ÓDDSœÅW¼ÇwSõxÖšBÇi½E`5rÏzÃ^*#lm¦‹y¼sCŽñÄðÚà1/LiÐ×TÓZÔgx›ÌÍ­IÕ¥¦1L^õE­ÑÛÖì?˽†Épd¤JøÛc¦¤ÆxVSd°ã?Š 8æ^o¬uWlÏI5F6bÒž‹ëDQ‡…ž¸›ÃŒéÎV,v붓«¨tÛ6º9áª"2NÜ›dlŒøÃ.+ÓKõ–ª£Io^)¶{¡Ê4ñ/ójªg¶nþÖ^Z­´–=;E0x–†á•O $šjy_$M>1gÅòcò®×õ’fºªèš&Ùü駹ÈÓÆ}7ó[âñ|*}{¦¯´7Ë5ÒZ˜)knFáD Ó— —Æ\Ÿ!àzTµS‚bÓ4Si‰›mèëi™®÷µS~©Üû2òÁc¨Ôu!“2Ž;$–šm¦Hã»ÙkžpÝ£’|Áyú%X&2½ZHªwm„õñŠÔÓ4ñÙ>oråfÙyäÖ†Ç88ÓÔSí?c-|0lÿ)k]²OíOÖi§MŽ>LÄó¾-lN‹OGUïï~ªùO±ÍÊäz¦^álÌÙÛÃaØ>&sÓù¸¨Ñõžªt3FW˜«§,å-&–*ÒEQ²0÷:ŸO_imš¶–ç)p‚*öT8—l ¶ÎŸOÜWpz–éÃ1Ûk+WUê™ã~û¿ ß)µ6§¹ÜiKŒ55RÊÍ¡ƒ²çddyä^Y´s£¢šglDBzz⺦c¥ØÚg”;=ªÉ§i&2o-÷wVφ7GŠsã;‡â¯:ô3UsTlÔ£IFœwìs=Ë}’ŠŸURUo]{ë% pŒ’ÓR×5Íw; '¤™RÒ}bªb‹ZôÄEYôDÝnŸ­4ÅULì™™Ž»YÔ:ßVÛµœÓ”åæ[u,°Ï´ÒÓä'öCU¡£ÑM:Jêè« »!Nªâh¦ž˜½ûe÷¬š¯J_´Í ›P¾ªœÛg’Xe¥²o#”‡>'FÉÈñ_Ä2ó¯G]5ã¢Óxˆ˜™¶Í’í5ÅTáªñâc>¸}ªŽX-÷‹†©¬¨ðsi)Xѵ³°ZGGŠÞ'£+Ê>²Í4ÓNÙŠâ©ï¿‹×_TÎÈÁ4Çu¼ÎåRÉGŽ}[æ2Ù§¨5'v\wO$³aÙñ±ÃÅò&“ë=SUsµtÄG\#Fš"šb~mwì{T|³ÚáÓ”V÷ ðÝY, é¢eI¨ksž$8þ'äéâ¹è³F ŸO‡‚S§Œ33TÛí31WŒ<Üùj·Z©o²Ù€u]Öêê‡wM3^Îåh%€¶@æ—ã(úÇ3‚*ÙE=ž.Î Õõ¢#ÆÚ¦6ÇDE=.‚ª¨¦˜ÛMTLç»iNš#I5tN.÷Ý´kí#w£±M}5l¬²0FÖA^ʘã~Üm..²H9Jô5ÓUSE­^ùµ¦Ö¿i®š©ˆªþ¬ÎȽâfö|ŠŽT¢¸Ùõ¾*ë•Æž¶ÀK[º{øÞBÜŒyð»OÖi¢h¶qDUÛ U§ŠñßçZÝ’å|¦r›¤¹N¬Óæ¤O ²NïÝLJɇ<ÇÒ—‚s*òúÏõš­;[?“Ù{%¥ÓÆ–)¿DúÝɲ¬B'BImÛÝ%¹ñsùqŒþU©MížÛgÖ¥U¯–Ç®ºˆ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€‚ÈýEŸÎQrþ؇ú•«ñùö¯sOëÊž¯{IÊ·DÿÑßÄ«Œ/þÑ?éaÉb¥O':­ÓÈE¦°‚÷î$ôä_{z=¨ç–[§“øø8Õž¨­û<‰¯£ÚŽp檭ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÉãÁƬÑ¢·ìòv&¾j9Áª«tòyðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVgÑ[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVéäx8Õž¨­û<‰¯£ÚŽpjªÝ<³Õ¿g“±5ô{QÎ U[§‘àãVz¢·ìòv&¾j9Áª«tò<jÏTVýžNÄ×ÑíG85UnžGƒYêŠß³ÉØšú=¨çª­ÓÈðq«=Q[öy;_GµàÕUºy5gª+~Ï'bkèö£œª·O#ÁƬõEoÙäìM}ÔsƒUVé䬿R–½X5%ÂJê)éÚê0ÖºhÜÀNõ§¸8X߈¦’š©‹LO­Ñ<?Xhšj›ÇG½ Ëæ›BÿÒßĉ?þÑAIU>Û¿þ“û#çýµ¿fmߎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÎ꟬¼{RÅÝ«É,ÒIq¨sà|¤ŸÙ:§õª2Ž·¾‡k¿bØ€€ƒÿÓßĉ?þÑAÉøîý³þ•}1Ñ|¯r¥sÑ+–ÓOO-}ê¢Ha}kß#0NñÂF´îȇŒ´Ž‚¥Ž-{åx#4ÍíÓ;¦”å·DëvÕeŲšXML1K· ½cdcL‘ð8{6š|…#I=µÙ¢o¿céÛùTÒ÷Qe4õ›\ø×¾ƒðr óXÍ·-ogÍÒ¥|íÓ1~ωFÙ_tÛµó,œ¶èI{mšŠæÉ*žéØ”2WÅúãb•ÍÈæ~ɬsˆÂÅ{7_³|oJº&¿óIË^ˆ®¿ W6:­Òº‰n™ƒ.‰³î#|¬k‹‡™)®+Ê8÷m¶òª&œçâþ™¨¹Y‹NêÊ«tÂ6Ûí¶§\®HçÂ_&Ì,kYœí4=ä`»aGYŠû)ßèäî ÚÛj¿(ú¯­£ùhÑZúºZEÎ9çŠP[³#3þ†0½­hèsšHiàpB5ÅW·FßÜQšf-Çcùi^[ôF¶¹²Ûk¹6iä1¬dÂ3‡˜d{ÉC|¦7; ”i"½›¯Ù¿¨ª‰§nûvîuÞ¦ýUZ—OÜëlÕ­­«£¦šfÀ!¨>4oÝbM–e/à\p6||ìñUô¿Z"šqSœåÕŸ†Éø—½š°Î[{¡ö,ߪGG:Áh¸ÝjÍ$·*wÊØÝOR6ŸZfl`Ç´àÒàxïí*ÍzJi›_¢û&ö½¾9¼)¢jŽÛvís6ò͢ߦbÔ¹FëtÏG+Zò_!vȱ†ï ™Ø ÚÏ‘rªâ›Ný7äìQ3~^»ùoÐñØ~uÉ¡uKhÌ®dƒbw;gw# Cãp?¶²8œ$DDß)Ù?DQ3xݵÌtŽ°³ë»TwKE@¨¥¼2@×4;aÅ®Àp#ˆÈR½âûâð­6ãgQi¾_¬Qi›}×P×RÀkªª©¡u3*ÝÞ6FÛ6ö[Ç î ÎBò§M¦ûj¦ý=mñw¤èæóm‘6|ŽP¿Tæ›°è +Qb\Keîh˜b­‡Y6È9;a¹àÐrB†—M†"cè»ç^ÿTG'zn¾zë³!žžXá•®ŠoÁºF‡4¹Á…­a9!€œž šÚv_¦c¶Á=Ñ=’ûúc–-¬ª+ ¶Üâ•ô ÞÔd=±ñü(/kC£àÒ[ùWcI7Ê6“DÄÄoØùšw— ªŸ+(.WGê¶DÒBÏÆ’èÁ£ÏÞ|‹šÈ˜™Žˆ¾É¿#Æ[æÜ9¤TìšÃISÝ£Žšš¡×ˆíÒ2¢*¶Å»–g1†7eÓ9­Î2XÇø¯ÙèPÑéqE3íM§n霾,•taš¸Eã»k»µ-ºJß9–¾æȪƒ£cšY!dn—õ¶Ë+ZcÏýˆ{šO‘zF’&m|ïnÝÝ|š&"ý½›ß?Vòÿ t-ªßu¹ˆ*)Nš=ÔÏ,l£i®; p-Ç8x­ÈÚ#+“¥¦6ÎÉ´õ»9žØ»E­¬Üi-Ì®…Õ5”殞 ìºX3#<í*õé˜éˆ¼Ç >ˆž‰Ê<\¡lrEüܪ?µ?îARúÕ²:Ö4;TÌ[ÿÔßĉ?þÑAÉøîý³þ•}12~¨Ú›`e¦žÿa7;$³IÝu12gÏDðßÁJÆÃã€NZç7ˆuWIkÆ(ÊÓj£¢wd±£½¦Óã-ð•uîÑòOªÆnØ™u·óG9÷C¡ÆdhÞ€ówöø•ã\Î +o±b×Û‡£µ:mŠmú‡7݉Ì5¦çË]ß\VéÚ*¨â“MÃmažÓ™ªY&ñÑ4<4¸µ€³=84´Íq\Ä^&ª-ðÎnèêŠ&ˆžˆªü/‡"´½ü©j«}e–Š¦8mšV®ßRé©ä§ÅDѵ‘Òã[´æ¹¤œ´yø¯]$k*ÒU*ÑÅ1Æo3Ý:=H¢™ÛÞz­áÜ–^v¯ä¶ÜÊ*ÖMhŽ¶š°ÏK,LŽQLæ콡¤œtŽ#ŽNi«Q1úîcvydTá¦bQ"{/9¾§%SÔÚuUŠÝd§­4¾±Õv«ß4‡m—OOXchîÆÈk´×aGA¢6`œæ3¦m”_§4ôý3;qFÉʬö¸—'zV­’Ù´õÆ[̵ÔZ‚j·Ð2‘ÓSµ³>AXê‡Bv£sO@¹ÅØÂŽ‚>EïêÄߢ"Ñ>)i§ålõ­n;³v§šóÉo(z¢¥ŽŽ[Ȭtm‘¥®m5+{žAÁ søúK•Ç×WµN)혴rˆv±8SŽÈ›Ï9|='sŸ\k-1[e¶Ô0XôÅDUBzgÖZvˆiÃœdpÚñIiiÎW½ULÕ]QúîÖ˜µê½ížç…1ji¦}»åºÖ»…òoy¸Þu^€¸×󋤆jÈ*¡4¦¢ šX‹YM l‰ qtž3HÆ\–‹åDç7ÑU˜¶v½¸D=4™S1ººfÜ/kñs¾IôÍYýOzŠš7¶®¤ÞÆÆè¶Y ‘á¼v@¾qŒ/=53?Yâ#ا/¹]ëMVÓLϵ?y{úá¦Õ–ÕA æ:kU}<¦X%fîX ……®ÛhÙâi<Çd•ng–jè_v²¬Fºb¸ð—QÑéÛµ>‘±ÜvRS[µuÒz™i©Ë槎I$c*˜í¦´ž×` ªh=XÑLÞ"(ª/²föòYÒúÓ\e7šf×Ûk¾ÍãK +½SU 7¨®Z¾ß9–¾ TÆÈÖ¾ BÈØc‰øè{x“€½©¦Ñ£‹}™TçÆ'>Û]åTÞkŸ¤ˆ¿SJ"ÚkÑœ€î­NÎÉxC69?´V ?&’–_Áj[“ÞüA™‹\àGŠ:0ãÑ‚©ýg[EöÕ^ :YËIöº|_ßUÚ«F€åB8é¦Ú—QµÌkb~^Ýí9Úh.'##¤ªôG×T}½?{zÕ>¼ý·yvN¹¸x?å +ùtºÓTÍKwÓpQR:yj§Œ<:œì5Û.yppÚÃO”ð^ÚX´écl×l»Ÿ·ç•é{Äýym{ªv}ÆšåmåõSAoEBØbt$Å,¬qÙ„Œl»8³¤ŽÂ÷ÒÌÄéf3›Óá<ÕôQxÑß,¦ýÎÉ Þ¦åÊ6¹TMr¨.¶VRÊùèMMMPæ±ÝËm¬ÁŸø¾9<(ZvÍôyLôÚoÜ'¢-^ÈèÊ\jÕ-DÜšÛì暤UÐk(î¡°ÖCxåI¯ò<éºZñ¼siqãŽ!¹9Ç•zi¢ôi8×䎋*´iŸ{òY´ÐSi+=E¾^q’ñÔ~Gl‰Ò‘–8Ÿè_ ù–…szêˆÛ3ÂñR¢-LuÌvÙC¨$ íŽH¿›•Gö§ýÈ*_Z¶GZƇj€Y‹bÿÕßĉ?þÑAH|w~ÙÿJ¾˜ð×–´ãöp~Qô¿•¶{Œ’¶d†G:üà ‘¼\1–Œðèó/:èŠí~‰‰í„é« øÄÇ78/$ œà`dù—¬ÍÞq“Ëåsÿ“9\uåÓ=ÃÇÚ€es† ‰l ñ½qnÎÑÇ›<qk¥é5톾ÍZù t‚GF@xkÆ i €|Ù~Eç]âÓÒ`›ÃêÙíÑÙmÔ´9ÎŽšàfÙÉÙƒ=8p"õ™¼ÝçgÔ3=Ý.=éò.:ü™ ŽIÉóå—Jçg.'=;¶yË—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø±˜ºˆ>;¶yÉ‹‹¨ƒá3±;gœ—ø³Ü¡ŠžyK_O/?­3¤4‘ä\«.™ç)SŸß=0èˆýb„ÎÅÞÙç(ßâÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,f.¢„ÎÄížr_âÆbê øLìNÙç%þ,÷)b§–9‹©àË´?Π<ß•rréžr”|dôóQÂgbïló”oñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ{‘ÅNêY$4ðm5ÌðLè9Ï“ò.NݳÎRèúO1u|&v.öÏ9Fÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñc1u|&v'ló’ÿ3QÂgbvÏ9/ñg4Ñ®]˜ãg‰û5¾_È}6ÎÝïm³U7¸€€ƒÿ×ßÄ—þ)ý¤ó¿þÙÿJµT¬¹K²èK¢†àe]ªM-9Ž=¦€evFÃN@ãã1zÑOLÄÏ$­hÅÑÏïQÊ]“H_¬öJÃ/u]ä’:vÆͦƒv‰äl7È]Áv*‰«M¦{ Á6ÅÑxŽnÀÂ’/‹¨o°éºÖM²±…€¶$;o hâ@.Þf‚|‹“6혎nÄxLò;v£¡ºÜë­Ð<ºzfà ÌÛf—ÅéÇAà»çÆݶ‰÷¹9vÅûæ=ƨÔtzBÑSt¬ÚÜSFd“vݧlŽ#'FW&mÛ1æÞ÷b/ßÝ›î4í€G”íR˜¶[‘‰¾o‡ª5%´U]kž[MK¥‘ÍD5½8¤þE›wwÍ’¦œOµ™{OG)‹#¾ µM¹—ÖÙ Ïuº™Õ¸áºl‚2vº3´GœqQ‰½ø[¾þIL[=÷îû÷!]Eç¡#¥x@@@@@@@@@@@Aô-Ÿ¯í ?Ó +…^IÒùáM_×ra·k*M%4e®•õ‚ÏÁ¹‘¸µÍÛÎ7œ Ç‚Aà¹L♈ÛÍ)¦Ñ¾fsOjº O5Â*]½«}[è¦ÛnÈÞ±yÙâv›‡Œ9áÁ"qEã|÷MŠ£\"yÅÜ—¥uÇžŸÝèAÇ,ú¢†ûp¸ÐÁ·½·K3m7jH›+v|a²ážŒ„Œâüf9[Ìœ²áÎþNGŒ£éùPq-[­(4oq¶¥“I-m@¦‚(·#ä-sÎ-5­sœâ@yNŽ,â:fýÛRŠo;½ù9v‘?@ÆPxó~TG øºŠÿE¥í³Ü+[ -Úqhœh.q!­¤&mݳ6v"ï® ‹AÙ9ÆveûXóù<Ùò®ÎNFo‘§ïÔššßu)vîPp6\Ò×¹®o‘Íp-pò‘ž{â'™1nÇÚÂ8ðŽˆà€€€ƒèQ~µQý«ÿrj]iÒùêH8Õ«VP^n÷+\;{ûq€O´Ü7÷¢3#6N|oqèÁà‘œ_ŒÇlDO½Ù‹vÅûìö诰×Ü+([­}&ëiïaloÞ·hnßÐü‡ãñOŒùÛÃ̘·+¼Ý¯Ù夎HåyªœS´ÄÂð×¹ÛRøŒÃH.<2@ò§Mºû¢å²¿W|Ùö±”pG^Ç”uÂ!×Ö¹ 0‘³Bjk¥·D&ˆ°ºhƒÉ èY¸±ýó¨â½¸ÞÝŸ|”Ókð·}¼ß[Ojj-OÝË·ûÉU-›mÙü$XÚÙârß`ðÏ™v™Åß~é˜÷9TZmÕß÷¹ຈQÐzxògÈPy<8ð8ô#®3«uu»EÐ6²´¼µòG L…†I%–C²Èãcx¹Î=€H•É›vìñv"ýWIk‹~±5QÃðOHöÇQOUêh‹Û¶Í¦åÃeÍâ×4¹®ã@ìgã1Û~äå— ö9‚8 ú1fþÓýÉFvÇT§9I6ÐßÁ¹µƪú}¯m³•%ÿÐßÄ—þ)ý¤ó¿þÙÿJµT’ïê†Órjë•–‚[3é®ÒBGHšxåˆâljðªf*™±£™ŽÊôrõ‹M1²kˆçEpë¹oôü¦k 9ªbñ™Î–û|DôdPÏSPíK(c¿,dy¥­\Nù®ßi¦‰ˆï™sæLnŠof¸¿tCûÚ»š}M¦oöÊgEÆÿS ®¨©sª«#1Ôí3tѲÚv¹˜Ž;Mkv9^zΛlªš§ŒÅ¯)é#å_m3Õ7ˆ´|ozujŠßÉ­òðÐ÷VÏvš33žâæÄÛÈÄLㆰœ2I$”¦-NŒèï÷yFfó_®ßt‡#½Y4¶”½r…t’™Ð=ÝÁ–‹ ¨&®‡27ž t²9 ¸à ídc+¶ˆ¦c~’ÖŽŸ‘1WœÌæ¨á£™êάúí!wµË¦iuí­´PÛam’ßP(©ç|ìŠI3\ç {#Ù.uãLÛ=Ú\ú¦šiŸ¤Åòߣˮ&f;áû·ÏæéiÔ¼¹—m`_¶ŽOOM548ýôˆË¼Çk*Z8˜šoÓYçLÛº!ç¤Î*á«ŽSï™qM#§hm¶m=}ˆ¤Ï¹í¥Ï ‹s¦Ò¢ÍCp°ÒjZ—9·YõdtòM¼xs˜Ë›¢m1Æ푱»,Æ}9)¡û.zjÎxΦywY/ÏÙG½6çßuË‘}œmÒ1—Úë¨ëÿˆÅ;D¿¹»{óù¤ÕÍ5NȪ/Õ14ûЊf¨˜³n¸õ½ÉªÐñt½GjsœY©®Ôw¶øÄíC õ3v) à8aÃΣ¡›M1ÓŽ{h¿Þ’ÒÄÎ)è˜Ãʨ½E¥lú·™MÎ’:¢5¥Ö1¾XauKËF|™kN<íe#ì?´×ÝŠR®~_]ñL?•×L[éíºŠþÆ9· +mVÑ@‘áÑ4ÕSFæ3×µÎn0üñÏ CG”Q;ô“Õ:J²v¼æ¨ÝDLuŪXéMn•­¥ett.ÐÂÉesÚÂçÌÀ"s£ñÚÙ¿Z%¾0ུ‘{GÓF[ó½»^tM¯Õ9îËobRÔtÊ;eM‘ÔsÙdf¡±Šª&TíÓÄÙ߆¾–V[á§l—g-äÂ-TÓ&-=¤Íºº{^™ÓŠíû”Eúß{VPC£.í=j/¥µÍ[§Ù4qHö¶µ³::–°íf!+ÂìÅåÜ ²¹Dâœ3³[n1[ªþ6rrÏdêæoÆ*µúíáwok¤Ñ“j-­›‹|3iÚ–Â×»b ¦® ‘¬#Xǹ£†|lxÇ>º9¼õiiˆí¦óü^uôñÑW3Ù6‰øÜå¥S>é©u} wP¾JM’W½¬Ú}Lø…æ?‚Ö‰o‡å"1^6ýyN[ýXÉÙœ6Ÿ¤¯=Ùíq ‘[UeŠŽØë\Òß-Tõ–çÕžälU ãq¶Ûª‰‰ßbˆË£dÇ"g ç§ Mãv,7ϧkµy5Ó Ó•WÊy©¨·TUÒÛé%–aG1¥%Á®š8Ã.všÖä3mÄãiJ2¦ûf&«rŒ»ûìäçU¶DÄ_œçÝÜåü“iÚêZIï·oæéyÝTT°`6±›0Ó3äDÂì’÷—; €'†-·;Ìñ˜Žì­Õ8¦ý‘Õ=ý2í”D@@@@@@AôbþÍý§û’ŒíŽ©N6>r’m¡¿ƒrÿjÿUôû;^Ú7g*KÿÑßÄ—þ)ý¤ó¿þÙÿJµTŸ.¦ËCY]M],-uE.ós!ÎY½hkñÇ0ƒÃÌ–éánËÄÛ¸½òã~ÜãÞãÖÞNtÍ¢š’š–ßQQÕI[NÆmò—ÊÞ?ŒLÎr½7'šrŽz â£kd·Biéž&Ôq˜ó·ã³€ñdÚã!v×›ï‹vÊÜoÚù¶nI4vŸ¬†²ŠÙS@d0¸ïzÒÙms‹X×XÐÇñr‘LSÊÝ›»š¦yß·{ÚÓܘé]'Pj-¶øà“vøiy cÎ\ÈÃœæÆ×%±†ƒæà¹ÄE·Å»7UæüoÚäÖ+™·Áo …°ÓS°GmÉ hè$œ~Ù*hËê®8 úÏ×ö„Ÿé…B¯$é|áЦƒå6ÃoeÔÝD-fLf㵺/ éƉwFsåHÊüm~Íž.Ìß²ýÿ|âäŸGÇn©·6Ù iªª],mÛhuKœf89¯Úí0·£ +LDDFÈÙÃâéc™™û^Å&zZßN`†ßc51V‘—œÔC‰I.$¼lŽ$œã'%N2µº&ñ×9#3~Ø´¾•^‹±×2½“R1í¸¾9*Úü+£ k ¸ô´1 crݦý·‰¿s·ð·f~ovä§Hßk¦®¬¶Å,ó½’Jç:A¼ta¡›Æ‡¼7da¯£ÆR"Ùñ¿nòþìÜöµ&úcUÖ¶¶ãAó5­fÓ‹ÀsXí¶µíkƒdk]Å­8ÐÙߧ.p_+95–†Šº¦º(ZÚŠ¡šAœ¼DÒØóÇ($ Ò»vÍûrs“7ìûÿ{ÑÔºJϬ`Ž 3gdoǒ湦=…¯c°HËH$:f˜—b«=j] §è`·Á LŽÚó-#Z=Ís ›Ç‹ˆ{.É;Džæ1rm¥á³Íhø$ÒdÅî/íãžç—ä]´#ri‰ËvóÞü·“=,Û<¶~oŒÒM&úHÜ^âé2$t…ÆC òí±‚0f˜›Fí„U1žý¯V>I´|tuTbÙê­ñI8&Gër9åÅûmÀÃÃóÇ9\Ã÷íÞî)î·cÙo&ZY¶©-|ߦ–Q;ÚKË( ‰L…ÆMàÀÃö¶† ³´nØåíÛ·©òQ7Ne–8é$†xëiÉÚp1È%‘Ĺî/ µî%Î!Ç¥'¢ß6rŽŽ1Û.Äí¿Lg¿â-¤ÞM4ÀºóÇ6Ä+ ¢¤¸9û;ýæÆw{ÌpÞmãŽr‘NÎ6íð¿K“8¶ðîm¥äÒÖDz µÕU5ÖT¹„–™§ys¶I–´l±¹ƒG»hˆÝûfyÉTÞfwÏvÈî‡æíɦ—¾Ýs¬·Å-H1»mÛ~1ˆæ2ö<°ña{\[ä!r"Ó×ë&«Åœ–ŠÍEm©ª¨‚ Éjäl³¸g2=¬ 9=!­ áŽλE¸ÌöÎß8õG/¿}4p@@@Aô(¿Z¨þÕÿ¹5F®Ž´é|õ$wwäŸJ_nSܪhÝÝ5–Hê*a/·e›B)XÓ²8ŒáG 'Š_~—GÙhÍYŽ•™¬Ž8j .q•‘Æbc^\I8a-ÏI‰'ŠULU²o~س‘TÄÄîÙÙ7 + §ít6Úz(㧵¹¢»[09sYÇ9 s‡ž“ž*s7›ôÇ•¼è¶ÿ;ø¼Ã¡tý=%=#(£ÓÕwlLXeFÛ¤ÞŽ9ÚÛ{Ç#$ðQˆˆ· œ2·„¥5LߎߎÇIÜ9¸Þ5 ©ž’ÜÈEÎ;‹«"|âw¶'²3NFå²’Ù*vžÁø¹*S†bwLÎ]7¿-¹ï”«ªñpæ¿xxçki<02Ì1— ¼uÞþ2bžqiêµ¼Zûc·êj¨n2¢žq³$r µÃ9ý¼‚2Á+³Mö‘6u²äRÓs³Ãn¶RAn¹ÑVÕ #Ì̧~\÷—½ÎÙñXp:jŒÓy§tU~éŽiÓU¯Æ›wÄòÉÏ)96Òô6ÚËlvø5i.©d›roŽÌŽ‘Î{ˆ’ïÀR˜¼[âûÐÅ7»ùÒòc¥i-UV¶[â4µ‡j¡/Êp/{Ü縀É.Ëp1Œ$ÄL[··Y[7«$º:žš²˜["1Ö²8êCÌ’[%›n{œâZI-vv‡  ˆ˜·öïë"mŸ vn{0rc¥ií•VÑoÔÕn/ÈæãeÎ{Üç—7dl»k-ÀÙ!&/—öïë"©Œû;7>¥ŸEXôý¾k}+c‚ ¼ÊܽÆC#v^^÷9ÏqpàKœN03À$Óèó"«Mú|Ÿ^Ój¤±PÁCGŠ +xÙLnpÖ0lµ£$œâIR™º;Ap}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÒßÄ—þ)ý¤ó¿þÙÿJµTžUÊŽ†X¢žxã|Î؉¯{ZévX ÇpÜœqBÏ57J9bŠiãóؘ÷µ®y$0 ˆHnHP³ÜGÄÕB&—·xZ^´6‹AÁvÏN Ñ’•dqüUs2HÑ#ËX\œ¢I#$tdetp@@@@@@@@@@@@@@@@Aô-Ÿ¯í ?Ó +…^IÒùáMʸ_ívƒŠºÈ >/ë²²?Æ8oãÒAÎArîÙýnw›}–6ÉYS ;^àÖºi$ô\@'òÒ ¬¼P[HbÈÉÌ‚CAñˆàI9¤ áÚK• ;¬›Zi*áý㬒‰ùš#—±Û!Ã>+Îv Áv:(®*‹ï¿tÏ•ú’ªŒ3n®ø;u¹â‚åLjiªašµ™#‘`Ùül¹¤Ž^<<ª|Q·CñK}¶WR¶ª +¸$ÎÙ²V9…Äì€ nsÃÎxt¡gð“SY¢Š)_]LÖLóN3Æ÷‚Öì8ƒÀ†äƒÁ=îÙöò3Œñó#‚8 ú_­TjÿÜš£WGZt¾z’£ðFoí8ÿÜ”gluJq±ó”sm ü—ûWüj¯§ÙÚöÑ»9RXÿÓßÄ—þ)ý¤ó¿þÙÿJµT’?ê¶ÔW\tíM#6ª­üáqƒÏ·Is`i5®oí8…á3†¼Sóh™ìÇDOtËÖØ©ÃíWÛ†¹Žø‡Æ×õqk^T4¥Ò‡ÒÐVQà ]K=KÏ툛ý§~U(¯/ƪyQ3=ó‰›ÑÙM\êˆ rx9H¿Òk;e4—hj㮺ÏA5=&ÔÑJèÿ{ãP7mÞ0“ÅÎnÈÙÊhê¼ÄNw‰ê¼g–òºr™Ý1Êf#=Û_*»]ëÚmxÔbáÜuòQQÓ÷;vrâI_øÎqfZZ0Y.â¹8hžš¦Žú¦ EêÝLUÎ)‰rÍC¨.|›Ý¥©¹MÊz-=q­|ÝÎÈóLE±7`’ØøŒ’pIpJªÃ‹…4öÎ* ŠqaãU]ž¬8m«–]C`†²²ªiî´í³T\^é-²Ð²ž¦µÍ¯sÄ4’dÉÊ•S4ⶵ¦b×™œ;;Ü¢1á—œâ3Ê×ú¯e£ÔôÜ¢éYoWW‹MÆq³NÈ7O{iËãnÁ;QŒ’ï‡sñNæ6Ú‹_îpŒÎ*"v^­Ÿq•Z¦€€€€€€€€€€€€€€€€€ƒè[?^?Ú¦ +¼“¥ó‡Bš PZtÅß– +–^⦕­ÓMs[Tæ†wT›×þ <\8µ¤ñU{G×—ÝO+T±3>¥·ÕÎôº—LÔÒ_tõŽŽªšŽZš}1=A©»“$QÒ¾W±†(Oë’–±›R7a›#'h$Þ*¾ØÑÑy·šfrÝœgÆÉÓ˜¶É®«[„ÇžQºîUÉeŽÛªk´Lµñ2¯s¥7±ï€{v÷Ðò×d7ö$ä´ô`«TÅêªzpè»æ¥Z¦ÑÑŠ¾è‡ÂºX­iëŒÍlšê(¤kÆí4VG†;d³Äᧆ áÅWÑEâµÕã¤YÒ|ï´SáCõÊl5z¾’Û=5)ºiÞ茳f™°Ê&222Àì0K¦ôœer3´tk{>LO+÷“–€§¯åLxw?¶ªÓ ¤Ô”OšÍšå§ÙSMm‚H)â{ª#Èá¼’2ÝàfÉ4ž.]ˆ½£lkc«äç|oU33³ëªºöͧÉÉùXÒÖ* ½y£¦¶NÚ+#›=®±‚6Ë#ÌÔs[¤‡5ÇgÁ„¹§ö¹´U3œz·è˜Û1o-ðí9ÌFÉÎÝ1;/ŽøÒÐéÚêº;•>[[-ª­d²0¤8{6Ø]äqÁ~2]‘´¬Õ™ë‹÷ÛÞ­xŽîë» EÑТýj£ûWþäÕº:Ó¥óÔ}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÔßÄ—þ)ý¤ó¿þÙÿJµTœ6ù£â¾_-—9$ P6­›­D‚¦!ù0|¹ÊŽæwÓ4ó˜Ÿs¸²ˆÝTUÊ&=î±Ò|‚Ri;}¦–:é%uºêë™’F ©øcˆñàØâ,¤dâ1ÊD|›üؘ뙋L÷»5|¯¦˜ìˆ›ÙëÛy¹Z_j†+㻎Ñq}ÂŽJÌæGH^ɤL6WµŽÃH$9Ûd(èôx0ý,[²ÖçÅ:ô˜±}4Þzï~\š¯’8ª´•FŸî·ÍZêÍîÀÈ.­î½œãñ3æ⻇*cØÃÛiºΩö¯ßç"ÔÜŸQ껬µuoqŠkeM²H@ÆYQ#^çt‚6p8ysä\ªŒWúhˆå3>÷b«[éfgœYÅ-ü‘ÕÕÓËM»Ër„Û¤µÆÁ€6kÞð×8I9 hÞppÑ´T«Œw¼çWLeÇ.ÜܦpÚÛ)ûï3ÉMÒ×}µÝn7—VºÙG5 í„¥©s¶¥üÚpÀ>F…Þ™ªvÌ[¾îNËFÈ›÷Yε-»TVÍ­*j8ÃpöÏFj žá4[#1ƒçÊMþ ‰‡æQ¿…¿øªwñés?ˆvðänÙªèêëµÎ–®"Ü5Qwg¤¸Í&F8cÏ•(r\Õ} gëÇûBOô¡W’t¾pèSAÕ÷NKmºƒVKy¸ÅOW è"£m<ð¶M—G3äÞìŽ!û8Æxtã‚ŒSi™ß‡º'Íé5^"7_¾ÞNesÒ–KÓà}e4æŸõ“,,~2Èà8 Ì»1|úP‰¶OïnÓÖ»FÇrRC펛¸ÚÍ–=Ûnkp]ã8qÆWc.èì„çñ½ü”²‰j >ögÇ,Ý3iïŒåqÆK›Ò×-òÈ‹s¿n÷foÊÝr[%º£ºw”Ñ;ºš>Ôm;ÐѲ™8€Î·AyztZNÉm¢TÔñS‡‰DL‰fÛHp~ÈÚÒÈ»îØåûÞ/ZJÇ©$ŽK5SâüGO $-ÉÏàHÇFx®[¥Û¾“m”m«5‚Äæ1ô4mîÁÚ ÚÆvAâœgŽ}î=äp@@@@@@@@@@@@@@@Aô(¿Z¨þÕÿ¹5F®Ž´é|õ$F/àŒßÚqÿ¹(ÎØê”ãcç) æÚø7/ö¯øÕ_O³µí£vr¤° ÿÕßÄ—þ)ý¤ó¿þÙÿJµTœoTjûŠ£—zØhá. ™á ¸ô5¾WÀàŒ(ÍQ]Šnþt:ÛOÜè©+iëà–ž²Q <Œxsdç i²ñO‹Ò0r¥»ŽÏ=Û|zZ;›§m4ÍÁ)†PÓ‰,w˜€àHü¡r&ýýÓgf-ÝÞ÷×\} gëÇûBOô¡W’t¾pèSAåТýj£ûWþäÕº:Ó¥óÔ}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÖßÄ—þ)ý¤ó¿þÙÿJµT7ÊŠãY¨ì×KKèæ®·²¨ŠÉ °Ì×É€yd±–´6BÒÜ9Í8ÚÊ󵪼gêÚc„ÍïÝn/M´Ûâz¢bÝԴêF[h$µÕ?USÅt¥—aøšX÷9¥¥ÌÙ‘kãÙÏN‹—)œé¶Ëé2ãÌÌsìv¨Ê«íµðÅàõè.ú’:j{ô—Š§“©¤¶÷)Ý÷9¥uséÃÝ¢öŒ9²mÎg¢‹ÍM{òªcõ礛bák5¿‹ä_µ©©³Tjho50»¾8íÍ¥fï¹ÛH˃)K6K6·®¹ÒmgÆÙÆ4qò'n9¼õN+Gru|èöbm×h›÷¿½×S×iÙnÔ”B°:ã«g¦y cR#m&xˆHCCœ´¥ÄqWÑÕ”FyÕ¥œ¶åTÏß½t‘¶rÊÞ1î~G«ïµ4WnŒ­ ‚±Í¤}ű¶¥ð:6…³õãý¡'úaP«É:_8t) ò€€€€€€€€€€€€€€€€€€€€€€€€ƒèQ~µQý«ÿrj]iÒùêH>Œ_Á¿´ãÿrQ±Õ)ÆÇÎR@@@@@@@@@@@@@@@@@@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@Aÿ×ßÄ—þ)ý¤ó¿þÙÿJµT}¬ù=‡VÕRWÃ[So®£2ª]ÞØŽ\o#secØøݲÒZæðsA 9Þ2ÊÝ›RŠ²·öì|{g#Ö«tTåÕ53ÔGrŽë5LÏk¥¨¨†6™0ÐÐÀÒÀÐÖ´åÏb˜‰¥ÅüÚ-$Õ{ñ·(›Ãè7“ kmŒ·‰eݲéΠå»[Þé5;=ØÚ8ÇNÏ—*tú¸~—g)ÑœïôßSÉ=jnM¯ËÔÖÚjK-<·È.E»ÈnÄs2i*CÀ‡É²Gsqke;\G墋M7½©™œú6ìß{åºòõÒNS³ÖˆŒºvmÝnü÷uäžÝr†±¬©©‚j‹Ÿ;G K4M¨šªj‰ßSQQPZd–W€ ŽÀkZZÖµ­­héh´|LÍå ›Íú»œb»@jJº™e‹VÜ`cÞç66SÛËX ÈkK©Ëˆ¸“ç$¨E3¿ÁÎ׶ÙÊ’À€€ƒÿÐßÄ—þ)ý¤ó¿þÙÿJµTŸ úŠÞËÌVs&*åõ,fÖ9ÀôpsšÎxƒÐ¹y¶ëOdåîvbÑ}ó=Ù¸¥7+:R²ÇYzŠµ®£¢¨’’y\vfŠA™Œd·09pH›ÄOE[;fÞ.Í31Óy_ÁÌ-7Ê;Ûê™Nç9Ô³ºšPXæâF€â@Úpâ2<™àWvç×Ý6Frîï‹–ëåÚª²šíIE+a¸#eî²ǧÅsO>"o³|Çl;1nQ=’úäÒº‰‚ƒåÐÞ).u5Tð?mô¯lrà5î`~Îz p$ ã )·œÇ'g'ÔÁÎ0Ž>e¶ïIw3Šw‡yŸ£ ¶Fc- þBòA +Fyüm³³“é#‚¡lýxÿhIþ˜T*òN—Î +h<  ú_­TjÿÜš£WGZt¾z’£ðFoí8ÿÜ”gluJq±ó”sm ü—ûWüj¯§ÙÚöÑ»9RXÿÑßÄ—þ)ý¤ó¿þÙÿJµT“ÿ-—¶è[‹Riß[G+¼Ì©¤{ÙþU€~R«é*Š/;èª;rª<%íE3\[uTÏgÉŸ@éËZ^[vŠpÚ}Ö®Ét•‡ÊÖÀ骉ý¹)†×åwå^ÔÓj¢˜ÙES=‘D[ù²UŠ™™ùÔÛ¶kŸÃeÍêo—+ÅÞ[4µu §¯Ö5r¹’½ñQ + Ò^æC;;@’¡G­†>Üž»U6øàybŸ¶ãªñŸïŸ$ö›¥ÚÃO[PØ+µe²¶gï›·2c›%àÞvö6³Åyèó´}>’gŽ¼løÉÝ&WŸ¤£²óoŽ·Ö«¼Uèk­dMª¨u’ým#{3äÙ¦¸ÓlK Þò\öFù#Ë‹AxéZÓ3²ªéþiG)É +¢÷ˆé¦š¹U1<â+@ß®·;­²ÅQYPeªºÇzqt¯Ú4’Ò¾£tr"³cñpqŒ.èæÖf*¿Ýiµûkî4‘¶z&iˆû´Ä÷SÞõí×›½VšÓ4ðSTV›ÝÎíUY=P¤’]ÓæxŒÌ\ÒÖø­Úhps›È8Ê…­‚±‚û³œ3ãT§9âž¼FÎŒãð׿¡¸SØ,× +ºº8äÔôå±W‰ª#hå•´òÔDâvš|\“¼kCNC°TéŒXo?6»öN_WµçTÛ·èíÛ·ê;¯KBË7(7ªIn¶ÔIqÞ4ÍO’NIs™2O³’J;íQ<éÏÁþoÚf9Uõ]ÌçtºãÎéþ‰ö ü––ôŒ#Ê¡lýxÿhIþ˜T*òN—Î +h<  ú_­TjÿÜš£WGZt¾z’£ðFoí8ÿÜ”gluJq±ó”sm ü—ûWüj¯§ÙÚöÑ»9RXÿÒßÄ—þ)ý¤ó¿þÙÿJµTœ;^h;7)VYl÷x-,®îk\XsÄ!ÈâÑŸ8Èè*SZýp•5M;:bc›ùUr{c¬Õz•ðžï£¥’Š‡ÖÅ)À³ žÒ#ʧLÏLÄDöMÑ™¼Dn›Ç+>eÃ’=r¥¬§{%ou×s“¤Žg²XêpÐ%†FáÑÇ A!GÈÝ31Û{ø¥‹oˆžÍžN.Ft¼VÊË~îw6²¢:¹euD†~è­ ³gm²vÁÎ'ÁV›Åº&~…ëUÚ¿÷&¨ÕÑÖ/ž¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒèÅü›ûN?÷%ÛRœl|å$ÛCåþÕÿ«éöv½´nÎT–ÿÔßÄ—þ)ý¤ó¿þÙÿJµT-®êb´ëÍ)WTðÈÎ4msŽ'š: Ià „oksÒN¼é_®‰æÔ͹GrU|žªéžËUç=î›åZž“PÕr…8ÏOM§©id$5ì1š‰¶xämÆÇ´Ÿ+v‡A^ZI½OÓÑn¸µç¾Ï}USKUú§g„¹º'N]õᦨ·ÓK:R=ÜN‰†&íÎü–³ þP22px•=$g¤ê§ðô4s•u~ë G]ª›¦©*ŶzVéFÌÁwd’Æ\&ØìÇŽÈÄyqÉk2J^¶)ŸcGßyç·±(µ6··_tÅ£ÆÝ®iÉî’´_oZPV½—FRé©$‚YcxcñYŽMܤ“²ÜläŽNW¥*fvàÑç;~v|&^UÍ¢#£“(ÙkFK¸“Û+Ñçmžö„Cšzö„QÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=IÑ‹ø#7öœîJ3¶:¥8ØùÊH9¶†þ Ëý«þ5WÓìí{hÝœ©,?ÿÕßÄ—þ)ý¤ó¿þÙÿJµTŸ.ñd·êGÒWÓÅSñµÌkØpr2‘ä¹1wblõ-ºVËg·:ÝIE4®†8ÚØÜÁÛMÚòç9ò¤ÅâÓ°‰¶oÍ«IÙ,{=ÅE÷3wqµ¸‡h»v1û ¢NÏFI+¶ïÛÙ÷åÞÃ@i‹µ= U®’Zz^DøXæF1Œ1¤a£08Ò¹1~Ãó}öZ¨¢¨eK`²²-Ã^›AØt7 ‘à .ñßñïsÜùÚ‹IÙut,†éG \lvÛ[3Àv1—&˜®ÅS#àS@z†‡à5s ;Š_BÓÉV°ÕÇWEg¤‚xŽY$q5®iÆ2‘v"Û™»Ÿ.¢ úÏ×ö„Ÿé…B¯$é|áЦƒÊ¡EúÕGö¯ýɪ5tu§Kç© ú1fþÓýÉFvÇT§9I6ÐßÁ¹µƪú}¯m³•%ÿÖßÄ—þ)ý¤éhÃà_Ò¡Ÿö§r¥áã}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/vß-)”ìÄàvÒüþÄþE¢~!Úfˆš¬¿â}Õ+Nþç/;ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx{´’Ò˜çÄNcœ¡ù8(ÌN]{‰‡¥¾£ê_ñ>ꕧs—ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ê+)[£Ü» ŸÂyº<Ÿ•s ïîvðþ[ê>¥ÿî®Úw÷9x7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðo¨ú—üOº–ýÅàßQõ/øŸu-;û‹Á¾£ê_ñ>êZw÷ƒ}GÔ¿â}Ô´ïî/ú©Äû©ißÜ^ õRÿ‰÷RÓ¿¸¼ê>¥ÿqx7Ô}Kþ'ÝKNþâðåú5ð:ªMÛÓ±Ç.ÚòþÐUôÛš7c*qÿ×ßÄ—þ)ý¤ó¿þÙÿJµTœSTk­9¢¯7j!1pŒÔHØöËF\žœ ÇBŒÕ’QLÎo«d¿[55+mµPÕS¿;2ÀöÈÃŽœ9¤Œ(é +VAõP|ûÚŠËþ²xàmŒÛ‘Á­Ú‘ÁŒnO ¹Ä5£ÊHíŸDŒ#Vš²ž·os#$ݼÆý—²öô´ã¡ÃÊ›]œžÊ8 ü½í‰¥Î ‚I>@8’¹3gv½Z +ú[­4uT²²heh|rFCšæ¸d9¤p ùRØãÜ\6ýÊ6•Ò¥âçu¤¥Ø‘±;}3[‡¹›Æ°äþ1gŒNÏ…QñÃïÓÃ/·cÔ½OFÚËmT5P?!²ÀöÈÂGHËIQÒ‘}tqëwm?tw6ñ›Ýæïhmlggkg§g<3ÑžížÊ8 úÏ×ö„Ÿé…B¯$é|áЦƒ…êNRtžªŽ–ïv¤£šFoDÍcœÜìíNvsÃ=à£5FÄ°Ë–ÒUÁ_'‚FKcØà湧 µÃ ƒç +s’/Í]m5ZùådmsšÀ^àÐ\ㆴg¤“À’W{]àƒñ,¬Ž’Gµ ¸—d’O@$®LÙØ‹¾u¢ùnÔL­¡¨Ž¢à–˃˜à ‡ȻijûÛ.T—ªXª¨ædðÌÐøäÁÍ{OAiü¡‹mÎ’óNÚšI™4N. |niÙqiÁ8AóBäMóß³¨˜¶OZ³PÚíÑM4õPÆÈØåsžÐ÷–†µÇ>+ŽÓp´<évîvÞì}ƒÁu„B‹õªí_û“TjèëN—ÏRAÀoœªè½3^ë}ÊõEKRÐÒbšv1àŒ©‰Îªc¤€ƒ½k.s8øÀHàtáÂý›Ž×ÔGƪ¦(dšg†GKÞçµ£$“ä “æ\™³±*zújºVUE#_ Ø%l ´° àz HâF8®Õêíè#=…¾áKv¥Šª–VM ÌG$d9¯k†CšGâéAí£‚m¡¿ƒrÿjÿUôû;^Ú7g*KÿÐßÄ—þ)ý¤ó¿þÙÿJµT“×*— ³\éih-¦å.æê7ha81C—mLC8yºNx/Ú½—úî~÷KÒcÔÝõå?y­Ô–_]§¨ï3Á¶úû¾¥‚Š¢’–&Í-u36Œ` ܲÉ7í›OÎ i\‰´Sóª®öè´^c»jsÌ_¦óhž÷/n©Ö4”fÎêšø»²óIAGp®§Š:¡O<&i‰f6$f7ÇŽ`i®Ù8ãÜS8br½UF[mM8£¶v#1kÌtSNÝ—š°ý^çÊÕW­Ed¡ÔTwVŠµŠ*y'Ž'?u<9Áà00ÈKŽ^C†éDâµÿQfžÈŠ|ј´ÏÛWí½^NSW©5¸0Ü®“[Ì—MÍ%<°4Ûꨰ0ÖLÖ+Ä€ùCÆÈc›Óæm;g\3µ»§›ºH´e²ÔçÇ+ßÓ®¬õ÷NNl÷·ÒÜ+ê%¯Õ’[ƒœØç|BIòX£ htÅ µ–ä4ìðãç¢ù4ÆyÍ]v‰®{ìôÒíªwE=YÅ1ï}«Îª×v«EE$5UÐ{´ÓQ×\iãmCàª{[;$Œ×솸µ»@äÊô‰™Ã/TÇf˜íBÑŸ¥¿mìûš®ó¨éï5ZzŽçyt–ÊgmE%$3¾zŠ‡JæwIØÙ´F»hfÖ\v¸çUs8­¶›DGDú·Ï­(¦"×ÙUæwÆvÉî¾í«uõeE+«¦´>†ÇIW4²#·WW¥Í—m¯ÌLÝìì0Œ—µô±x®ÝFï“Š|l†Ž~MúsùUhð»±9tÓK`i“šéȃv÷Có þecKÃÙ‹}ÖZ>>Ôýê])§5¦§£¡¸›•Þ¥—H¬Õ•U6úÚvEº¨¹d´/cNÓpù88àä*µUjj´ì¦6í‰ãÁb)½QÓU²Ù1æ÷âÖzŸ“¶Ùën79nmºYë+%ŠVFÖEQMFÚ¦˜7mk›†Ó×gƒ² +õÒÎ ª7S3q1³îyhýx¦wÕ=S<ò{íIªô»¬²ÖÝ¥®çÛeeDŒ‘‘5´ÕQŠ¦}†´ˆÆK _œ5ÙÎs5ôX©½æ(ªbxÓ1ã’z/¯0Õ¾ºbÜ*¿~OµbÖš‚±š÷¤½÷;uTÕ!ø šVQ2F8 ³“³Ž’»\ÌM£õf:ý_7)ˆ˜¼ûqž·“†XùHÔ:^’áYt¹O%}%¢¦¶®×p±Ï¯¢|lkd¥-vËä;%„–»*^fc;DmÛ9g¾.œSz¢ùg;6LF|Ü»“½K©©¯òWÍs¨¶Ô[d««šãK;)çŒ1àS–†“Úçø§oga§kIœ¯²"÷¹No8Œv¶Ù‘³8ÉÀ+g­µ}–Û-]]Òñ[q’šœFd"z)D-×±ž$"0ráŒqJ/DÄNs‚»Û|á™å±Ê­TLìŒtZû¢ñnVØ/nŠý{¨stؼÜhwq²z†1‘¶–G‘†®£#Z³€çd‚¼â0ÄEöÕ3hÛœlŽWžÔæqgº˜‹ÎÍ»g£±ñ ×ºk%ÊŽš¾¥•ºŽ‚ÛE|ŠŽç¨Ü¹Âf45®8‘Á¼HÙÚò®Ñ3^Ùzê‰êˆªy£¤ˆ¢óô‘1×3Éõê´Å}‹”¹j êá<”ÚbY3+¡Ä…•<6 1µ‡àcÇÉÁyÌáÇ1ìÓáW—|½â1E1ôóøoºž®ŠÕÚ¢Ì4Âãvš½—›UUMT²&±¯§¤mC]Ãæ“ůÚ.Îxp^µÕ‚ý>¤ÕÛîÍãM8íÑëÅ=“'ôäÓYêýAQdºÜ禺SK5duT‘ÅKOµ–R¼ì¿xÑÆff›ý¢fóÑTDO-©Z'îñטòs>J©µÿEP]'¾kk™K;ŒÐFèc‰¯ÌŒcâù#Ë]#‰ÃÈp /JohéÊ™žÚsˆíB©‹Ï]Q“6•pO$Çж~¼´$ÿL*y'Kç…4Èc—–)ÃØ×÷¢àæ‚?ƒ¯ò¨hã:¾ááSÖ½”ýÏÆ—WØëûÖ·_­”w#l¥TÍM§‹{0ŽXÙ3éèã xÞìx¥±·làc‡ziŽ5Æ[f"fÝ‘àqi™úZg=—˜‹üoqMOQy×:B(knWŸA«i¨™#› Uº"ݺv†9»Ömå¤ñÁp'!KGzæ‰éÅTeÃsËÅý\Qô´Î|pÏ,Ü×Uë]-Êöm3]e–ÍQ55<‘ÉORYRKÝR¸µ&Ù´°GÁÀ®ÑV+Núæ-l­ažÝ²åQl¾–&ý7˜™s¼¹WÕ•º;GWÝ(šÑQloÓ[$Ò2&—(i~HòãU:÷GMQ똋£Fù艛uEÓß*L¾Øíº“KV^ªë#›NTÜ™Pñ &cáqŽX²ÈÃL2Ü4·i£i¡ÜAh½5G³4LuLÌZy=ô?*™ö¯×›Ç5'¢í†Í¤¨©ÍDµ4Lü$Å¥ç1ƒ°Ö·8€'Š±§éêŸz¶‹£±1ò7YÑúsATºç-E5Õì –íŒE¯‰ð–´<=¦0\ç‚x É›LDçzyLQË¡9‹ÄÎê¼j˜}=/uÔº‚ %o¤¹¾‚:ÖÞ_Tø"‹iͧ¨ñac]Ç[=ÇÇ+ÏAz¢8h¨žÛÓþNé}YŸ·*ŽËU>în¬4å]ºËʹÕLç^h#kj oc\]Dá&ËXÒ\22q°Ð1œ“㣌£íïÞµíüøl»êÇ&§¢ÔšƒN¶ñ%S™AMWIQYNt3Né˜AlmŒ> X×5„dqnH^ñyŠ£tŧnؾo)ˆ‰‰ßxê›;Ê‘“Gm™áò4=Í!Îm<€œ< Ö©‹äòŽ/ap} +/Öª?µîMQ«£­:_=I}]|½Ùõƹý9Ï,tVÓ&g§­ÅÆË™/ŽðFI  c¤…á\ú•e–*³û=b=jsÎÑ÷©|ûî® ^›Óv»…É´¬°Å]Ý6ªA,Ïs¤ÝÆÒÙZýÜ,ãâ‘´pÖ’0½+™™›|Úh´Ûmâsž¼7íySŽŒê®ùì´ìŽvì}‹^¡¾Tj EÊìØèn Ò·Ìj@dqÈʘ†òF´–psAà jåSlS”}wDð‰™›òv"øco¯\q˜´Yëé­Iz¼Üª¬®¼\ªi«tüõª¢ž:w ˜ðÂêLÄÒ!pwö `ž*5çMQžQÛöòJ´Îú¦2ÙÐþãQ¡tÖ•ÕÕ±¶+…aîÜïÁQÁ#ccƒZÆñ$~1v––¼TîÑ_·<ôtã´oÒ[º§ß´j-U¦$Óõ ¬•ÝðQÕ>XœÈ›4ì£5qº›a¡ÍŒc-y~x;9Î{¤^*o{QTÄôÞ-Ý›º9ÖZ­—ª"Ü&ýïG“íK«¡:2²²ï-q¿ÑNg‚vDØ™$t»èßcöœŒHIpp$à`)Uzfco©3q‡»7"Ó?OnÏ[¿'ͳjKýUÎ’÷t¨ϲ×É[m®±†È#;2PHÆIrZì>C‚Ç;*¾’oE]>¯NØžžÇµWOG­Ñ²c£µîr[¨4«4Å×Ik)îš~¢WÃ,qBújX]ãe¡Á¸ykšòý®¥{éæÓ\mõ&oÆñ³xè¢ñLý4Ge¦yäýhšM­$ÓÖ¸/3[©äÓõÒšHátæaKv˜æ±¸>3Cp@ ;9¹ÜüŽRTֽϸU'Ü›v4Gvcî–¸<!nôG¶÷aÛ;_“‚QN},ÌÇ ßÂùUŠüb"{-å›õYÈíd( uCYYpmÖ-‘u-X{_¼‰û9 ¹£Ä“i¸.Fš0ÄDNÉ™ŽÙœº³—j®ó7é‹Oe£Ý/äzŽ® euMEL×KœÕµÏ’·ucZÈ€hnË@Ñ,¯mŽžZhCöq+%€@íï‘Ÿ$ùæ1MçÙÃno$"«E¾š'¶/æùºk‘ú]9QDãp«¨§·G}¡»OAPhÅ ÄpÓÊ×F%2‚7Ìv˃Há"†^Ó¶Ý×ózb½¸_¾ÞOÎEm´VÚ +z*ʨ*¨kd¸²´˜åšJ™šöÍ$Áí,~ñ¯psv@¸Ù ¸mke†&#ªvùß{˜¯{çy‰íž]OI¼†Ò²ÓYAΕŽ57(®Âwˆ]$u1¹.&Ëšç0ÇË[ŒršpÄ[æÌÌvßÎ]š¯3~˜ˆžÏ¾‡Ñ¼ò?Oz«¬‘×*¸à¸ºžJúh÷B:—ÀÖ·h’Âø÷l­Œ€ö€8)D[ª*ÅÇïâöÞäÍúíkðø—`ê½3A¬ìõvªæ“OU‰á‡eÀ‚Ò:Òiò +åQ‹Ç¶÷r™ÃñÑk:õÜA]Ot+•UuEÆÞmŽ¨•°µñSáÞ,mfÑs‹Þ÷^ìg€ÂUN(˜Ÿ13=[>8¥Exf&>nÇiÒÐ2’†:F’ZÈ›'§ `f|ÙÀÏí©Wë_ûЧÕìuäF‹Isâ¹Å7ßTÕÛ11ï|û×$w³xcëjÚzj©bkb!“S˜°ö8·k´9¤–ô‘‚Ti¢ßwÅÛ{òJk¿Ýpö9~…Š®ër¹ÅW==E}tEñlæ!¤sd øàÈ-à8t®áÛôÓÑcÎ=ów3¤ÔÐGžé Ö—»N ´qÃ'¤ã†Jôªo/(‹?ºã¢¡EúÕGö¯ýɪ5tu§Kç© â6mKf½Ý®¬‘î’éÜÛÖ;-îxŒMÙÀÏrì“Ç£ “‰ó3Î"=ÉâÎ't[¾îGÈ´z[k-·Zº9è)% mDm…Î’žWíì=¯afXìÞsHÏ•§ï4ÓðbFKòðA3ŽF0úxDZÝåk!|ºæ÷ééóîs”p@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@AÿÒßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=I6ÐßÁ¹µƪú}¯m³•%ÿÓßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=I6ÐßÁ¹µƪú}¯m³•%ÿÔßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=I6ÐßÁ¹µƪú}¯m³•%ÿÕßÄ—þ)ý¤èh² þ“ý ûËJóñ*–‡Í\ÿ‡÷—o?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Zí¾*A)Ù•äì?öý‰Ï•B©”©³ÑÐãõçü?¼§yø”m;š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKA¹¡ëŸðþò^~$´š¹ÿï%çâKCÞ¤ŠŒG>%y|L`mËÅBf~%(³ÑÜÐõÏøyNóñ(Ú Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ% ÜÐõÏøy/?Z Í\ÿ‡÷’óñ%¡ý›EHè ™Û- Áùú?eù/;»ËCøîhzçü?¼»yø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-懮ÃûÉyø’Ðnhzçü?¼—Ÿ‰-]££§eL†)ã±Ç-ÙòþÙUô׳ÓFìUQî ÿÖßÄ—þ)ý¤ó¿þÙÿJµT€ Gy Ž”y(< úÏ×ö„Ÿé…B¯$é|áЦƒô(< ú_­TjÿÜš£WGZt¾z’8Aá” a„ ÒÇB<á„ Òz:ðA(ã£ðFoí8ÿÜ”gluJq±ó”yÁ!„Oy<:x@@Aå„@%‚:Px@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@Aÿ×ßÄ—þ)ý¤ó¿þÙÿJµT’Çꀂìu.™«µ¹æ¦ÞË•Â8šòÑ7sÇ|Nƒƒãth= ôªõNñtE31SÝ7ì{Zô[}q®—•ï1ö‰Ë¦øªËÜù³rív¡°êIšm׫4Ô1¶J'H)¦î·5»'h¹Ís2àâáÐ|áF*½­Ó\SáŸzSM§îW+åÜöo\¥ò…ežûJè-O–ÉKÆWŽè –X÷XÒK›(Ý<\K‹â œrk˜‰™ù³¦–åkPÞe²Ý*ii[g¾V:Ž˜Fdî˜v·›‰e.;· 7g-h=¦ñwÊjÙŽX­Ë§{µSkÛæͧžó}Ë7* •’Á\ø"kîWco ¬1‚Z†m7Žv±{E0kòv„ÌÂÇç§!øv|áXúӔͶÅæ:ã8WÐNËõOTäûÜ›j‰5–“µÝ篩¥ŽYqÐŒIû›A߸¹UQòº-~Ë]ئbmÓnSgWi~UµÎk-ʶš‘–›åS©iDf^鈸Hiß)?ƒp”FvƒCLeÍâî*4LͯÓMû±[—zUZ/n‰´óÃ~}ÎMÈî±ÔºþÚë­Ê +Zzi4p2#¥&䈽åÞ(kƒFËFHé'Ž£dLôÅ3Î.åYLÄtLÇ)øíqŠí;nåW^Þ(/L|ôVŠj&CN%’6ojZùd™Â74¹à±„þ Ç•åLbÅ3ÑU£…©‰ï¿sÒ©ÃhŽ˜¼ó˜÷w¹œší ®/URk…Dw™v·¢:rÇ@ÂI;E¬1ÏvK¶CºI^”ÌÌÚz(‰™ß7ˆB¨‹^=«[…¦}Î]Ë%ÝÔVýÙ ¢}mÊãEÝ5Æ^æŒQÊöF×l–ìÛ 7.krŒœ4øÓ\Õì¼Ñ‹¶ö´xõ'U1LÏ +¢;-{¿Œ÷mmtÖBjŽå ßQÜULw’ŒÆ"Û-{$ p-á$Ìœç8^±6ªó³æ:vÓ~Û÷!Tz¶¸íѲ«v>–˜åcPÝä³]ªiif½Õº’˜Fdî˜v·Ï$¥ßƒp—vrÖc.oqQ¢©›Düè¼p´b´ötïvºm{|Ù´ñÏ ù÷>%*Úö墦*;h†í]Sn…¯tÛq¾#>ÍD„ptdBìÄÐ’<~<#ESVžµ8º²‰íJªb1mõj·^vr[(Úªã§çx‚‚:ê[¤ÖÚ™å‘죉’]RCœ$Á Eµ·ck•(¯Dì¾+ßéfc¾c'&œ31¶Öµ¸ÄOuóqº[¯÷=EQn§¡ª¬žù-—mR¿vÙ¨a9xa -ñŽ6€']¦©« ¾tU·éb|œª˜¦÷èÃßo7$½rŸ¨4Ì7úz¸)¤­·ÓÐKK»ÎêùK€‡7çg☯”mÇóµ§Ç‘†Û}™žWËÛ°9NÕ5:GÜî¬ÓÓR¹ÌñL¤7÷6Ü?q4‘3•=3³oy¢Œóè‹Ïd]Ôtú‡Tjq§.ÛÊ‹}šÓFñNe‘­–¦©òíÏ!cšç¸ÈnÑÃK‰+¸b©«éfšc« ùìsÄSôÑUSÎ"Þ/ªlÕü–VéÐúÉ*¢’¾{fÔ¥Å⚨>Zf=Î$½Ð¾0Á!âZH>\©›LDç3LÄÏoTO,»Ý˜¼LÇDÄÄp›S=ù¨e'˜€ƒèÅü›ûN?÷%ÛRœl|å$Q÷%·i4Ï)Z¡õR<Ò\jk¤ï%¬–Ü". ÉÃs ¹ÀÀñ2¼4UEMþž®È®ªgºHšªËéiçDU÷ÄäVë©­tš¾àÈÛQpª¬¡¬ÔÊY "²¿/q>,QFàç5¸'g‰MMÚû+˜™žV™žù—t“U¥¼Dpš¢<Õœº^[b½Í (.5v» $£|§œUº Ú.,s7…®ñœÜ·»[½Ù§:§9õí—Uîúö[oÞ–ÍIhŠŒ\k篊Id2IHÆÛÎ̲ǰZù!s7C#Ä’vxúDÍV·M8¦ýxmϧs“MïÑTD[Œ^ü»Üõ?ÖW×Y®ÒW´6~{¹5íkœæ´¶la…Üv<­ :W4?"žß½Tî—åOgÞipf±ÕzNKíÂ(é%¶Ã¨ßO+et¦¡ÍžXb.ˆƒ°ÁxÃÞż–†«SMöUUTñκ³øèKIz¸SLðÊŠfÎW¨9XÔ6ÇÝnðSR:Ëi¯5æ^ê“aÌdóFGàÚ"sðàKÃ\v›ÁzÑUí=Un1ëa¿>ä*¦×Ž˜¦ü6b·.÷«å²çdi`§Ï‚ù-OÚ8ö¿hÎvÌrÆF|\çÈ¥£½SLM³Å×añ˜F¼¢f:"&:¦œ^évÖ‡ÔÕš¥×I&Œ†šãQGNYœ¾:rÖ9îϔɶ8pÀ ´N(‰ß~W˜¨´Ìn·|DûݧõµÒÉ-}ºÜØ对ꋅ-;ª‹ÌQ2(›4xiÚ-kZvXÒ2ç eyÑ31LGàI¼îŠç"õLô`ŽÙ¦xòµ© 4 ¤¤çVÞÍš|ºAO“Nê†ÎÏÙì–l»`åÙÚn×A\ŠñM18ï~‰¡Ù£ æz0ÛŒTöÊž¦ŽŠZÓÑ:ð/"Íše®&!Q¿-$ÈbÉ1ä’ñ€ì¥5ã´FS3\gô—¿†NUNßdE3—ÓZÞ9¿4ÜÿÊ«n–;̰Ѳ×r§Ž¬ÑºV¶®›¹Äîhqp|M¹»C9 kšIÎTòª"©ÙW¬GuæèÞi™ˆé¦™‰ë™¿nV{Ü…S0ÅM±²Gaž¦3kŽG<–G³<± sa’A˜8 €ážÑòsß3ðÍ­ï˜á%{r舉ûVwòž.ý]@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@AÿÐßÄ—þ)ý¤ó¿þÙÿJµTœó¥ª.Z®ÍwcØ# Š¶7°çiÆ¡‘µ¸ò`lçΣë_éf9ÕîvfôÛé¢yEQïtÑÚíG¤¥¦«¦4Õµ43PC+^XÈ©ftñ¢sÞæœâ2P¢ŒÄmµqV}1Å1£ºª¬S3¾‰Œ¶ÄÌÞf>:eõî|êÍC mdÖèØ[\ÆS C)Í ˜ÆZ6Úæ íá§lãd5N˜µ¾×M\­—vDÍþéU<ïŸ{ê.M«¯5úª¡“FÖÞmPÄÖXøã¥Ïýô™F1Ç\ª›ÄÆù‰îˆ÷U¦'tLwÝð.ܘêj…E]Žzº¾ßKEPê¶=΂JfÛQO²s¶\ý‘´Ö®§¤œUUl¢ª±qŽ‰îˆêGGjb›í¦›pŸ‰våßJSßtäö:©d’)éI$‡nv^|›Gñ¼Ùü‹šXÖDÆË÷;£«Äí³«t×'Z¢K…¾¦ûSHöÚh'¡¤¢\ÊéãlNžm°6°ÀlÚ.;]F¨š¯3¶ªm–Ìóž÷bb›DlŠ¯Çtx»/“Í96Ó»Tïl’QÒÅÜÌì¸ÆÐ ãƒäÊôœùG…󟺊—’íQS|¶Ö]ª¨æmªz©ã­muDr²F²žn‚6‡€üîØCZrW„DÄ^vÅtå¶|zÞ³7›Fɪ'>Œï—ÆÇäGDê=G¥´{®R‹m´šèýÑ+ñ+#ŽF¸1¬Þ8—4’ü7ƒx¯L´ÏEÛDEùJ3U¯nš¦ý•_ÆçKòK¨lÒYmuT®´XëYLX$w›ˆ¦nÚ#Þ§4’ý–ðoÊ)Ù›ŽXo˽Úê½íó¦óϹ÷?›’½Uouª‚Zš#nµÝpÌïæcŸ3Äol0³|FZ\ø¾^QM°ßæÄÇóY¦þu^öùÓßnçµEÉ~¤¸_íÕW™¨fŽÝ-S›W$mmD3²HÛÇkÆÞ ƒ‹CZr£;íöf™·Mâן·f»lö¢c…¦öw@rwªt¬–ÊŠª!mµ2Hâ4ѸTU4‚ÈEFÐÙ`§'`»xðŠ8/Jbzz)¶[:"ýÛ8ÊLttÍüfÝîa¯ôÎõSkºZ_k­“É$m©ÛÝKÑ¥å™srÒ \ÙsFA®LZo¦;&ÓÝ0ìNVñ=±7 ³òQu§¨¶×ÕÔÀú¶Þj.õ›¶¼FLÔ¯§lPçŽ#i`ø. qàN¨Œ6áóªo(Õ8¯Ç*_kõB1Òòe©ÜäÛªÀÉâß ò¯-.ÎÚ~õ]ÞÉð— ¬ä¯Të˜f–ñ]MNþdš×Hê!)Á© /¨—od‡Æ7vÂ@^?‰itx±o›G EX»ç¹“ÑŸÍ6îŽ÷­KÉ6­ªªšj£j§Ž[ E™°Q6V²2ð &ÍÚvvÛ°Ð0\r¹U8±}4Ge¦{³)«¥™ž»Äy;Rh{ÅUœî )ÍMšx%-œ½±ÊÖS:€ææœ<¹§d`ã9^ºOZ¸«\ª‡­O +yÒãU¼\ªtýÒÚÚˆD•—ávkˆvËcQO°xgk‘ÆHP¦›E?KUÿ›U>ôêªø¾š›wD{ŸÖNM5-¾é] ²ªŽ u}È\d˜±Æ²-¢×M ~)Œ¶G3ƒÜAc^á²N +åá´tDÌñ›Ìͧ¶y;]X¯=3¢"ü£›ŸØ4Í~Ÿ7Ùb’#-}lÕpd;e…ÐGžS‡3.ÇìO)Í4Ú6Þ¹áS1ââj¼ìõzò‹K˜ZÅkh ¦3P#fôÄa“dm–Ä79ÙÏt¯YAï.¡lýxÿhIþ˜T*òN—Î +h:víÉ ¯Wêú›Íþ––¾ÒAIG ñ 7[/|“<‡‚žâÑÃö-â¡Fs;fc”GœËÒkœ¢6DO9Ÿ(u×Ex–ÙSm+)nõî·2¥²ÇHÊjè³%4ÒÆÒ Ùps¡wâp é*1TÓ1“TgìßvÆ"¨žºg/jÖžÉÞþ<œh›Î¥°E{¦}4µ°_îwwT2AMQ At/{XöñŠLâµØ ®QDÓÏLEYNꪙç²]®»ÍQ¾iÙ¾˜ˆó‡}XlšºÑm‰²URKW-vþ¤nÜ!Žîñ §ËcßÒí§8qzÄZÑ·|üpyLÞý–îøëvjëà€€€€€€€€€€€€€€€€€€ƒèQ~µQý«ÿrj]iÒùêH:*M-­ôݬñ[* º +3³W5DOÔИÈüO;9ÎAe¼e—Ê™çç¤ÚmÂ-ß3ïz7nMõo9\ê-•4í½6õR=¯|Ô“Gb‘ô§gfM¦4ï66\6ˆ#‚åº:1_Eã»i‹§¦ÖáÓiïtï-¿N?XÛ-× +f¾ñG’ž¥“ +§Lè;ÆÝŠèkZðà^ w Æ»×LtÕ”tÞm6êé¿[Ö‰Ã13ÑNÞ‹EóëÏgSœê¾E5Eâ;ÔTSÐ5—›u-#å«džÃOºtpì‚ÓÏŒx´µÅÎø/]%3U­x¼2î䆎¸Œ37Ê›xç×›º4ž”¯´Þk.Un‹5Tvø ".!¯¥dä–’ñ³åÀ9ztÕôÕ_ù¬G¹á»…3÷p½_§¥~¯ªጾØ綱Î ¨„ÈöI’¸>ÁÂóšqb§Úˆ˜ì‰¦|aïDa«tÌOTÚcÂ^,•šß“í;.ôÖ¾ä·PÌ”Õ/•î†ÈÃXøšÜ½Á ®á•Ý-s13Ó7·\åh鈴nÛÕ¶\ó’ý5>‘Ñö«]PZzXÙ(òm¸m<{Î!Nª"=^ˆˆŽÈ‹9ÌÎ.™™žsw[i~Ju ²[-¶¶¦‘ö›Sª©ŒbNé”´H)Ù(?ƒhˆHv‹KŒ…­àÞ*4Důói¶]Xo˽ڭ7·LÞyâ·7dòc¤ê46›¦µÔHÉ$‰Ó¸¹™Ù;Éäc ´¾Íj©ª¥ušÉVêºmØ“ºfÙÞwçÚ³ò__m Ó”ïž"ëUÊ¢¶R6°öKÝ8kx~0ß·9áÀþD¢œ8~–‰§ù¬G¹Éªø¾š«÷ÝÇn\^Á4ÒQÏ,Wê«»)êÄÏ+'ˆÆÖI²D‘çmŽ sC¼žQ +hšpðÇüÚ©žqæUÅWãƒù¬Dwù?®ä›QÑM}M#Ý }èºÈÐY,/k¢ #c†æ œ ÓGN pÖ6‰·Žo=%X¯Çó[y=Qlôú§•5OMTÒø,×ãÅ;™=1“‰™ÈÙâàN8¹GËáßîQ•=ÕJU|ž36ûŒçWÞaÚü­iŠi£nÖÊoק¦x‹>Y‡°~ëšî®×3L^6ÄÄò˜Ÿq£´Í§dÞ9Žîûuò÷]G¬4Ì´®’¶ß=M5võ±=­q‘Žˆ6Hžç°‚sIÊQ4ÌÚÖªÓËdòˆE¦"ûbñáxç€Í_oªÓÖzŠ‘WTë¤÷êù€sY˜ÚüÚI,y$qÆÜþ+IéÊ„FtDZM]s5^Œ_Á¿´ãÿrQ±Õ)ÆÇÎRE2êþBîš’Û[OtpMQ{š¼HŽ)jclŸßßØpÚÙ+Κ-ÄôMwãU5[Á9«:¦:b›pšiˆ¿‹ÞÕŒ\nn½ºŽj`*ë­uA8y…Ì Œ0Tñ,~ÇìsŒ4q…Ì{þšùÓk{ÒÅ·ÒE<¦fþîoPrKªn&ðêÙ¨nU¶ºÖ¶œJq>=¨@-M,Œ¿/qË@KGN‰Ý¤Š»¢=Ù!¤«Z=‰§¾|ݺÍ+PÝtûþñ›—[[E»ã·¶* »^mœyò»Da™ø{±y»]Wˆá‹¾ÞN¯‹’[Ý–U]”sW[ªnoÝÕî%†á3¤s š×=oˆCƒHËHè9Q¦&˜‹[*0ÍúâoÜLÄßX£•žìœ›jš'YnÐVÓTÝ­ï¬2Š†¾:i#­ÆÜLÝ‚ö6-–ŽHnÄäK:f-ìÚoÓïϸ¼LM÷Äź2µ¹w¹‡%Z2å¡í•p\j#žz›…]kŸs[ûÐý½ÇÅèý h§ 1¯ã3ïr¹Å3;íáîqúþL+êìwzÏ}uà\˜â†°TC.˼»XˆŽ2Bò§Gh¦=šñ6ª¯zuWy«é¨·óX§Üøšƒ’}AsuÖÑOSHÛ-Ú¼WO¶$î¨ÃÜÇÏ `~ Í•ÌÈ{ˆ,pÙ<¨¦ÖŽŠj¿õ±[Ÿr5U{ÏLÓn0ß—{ؾò/5ëT_.&xÅ%ÊÜè´Ê§±‘ºbz6v"ˆ xÙBts1VyÌÄÓÂo=ôÂq¤¶Ñ·ŒgÝ2ì>Kô^ˆÒÔ6ÊÉ›=LLsª%`!²M#Ý$ã‚çgŽŒ¢ÑÜñ½ùÏÇ'ZMÉ âŽW\hª)ûº å]Ú˜K·ºtuQn_ ¥£i¤·>;AÙpo2¼©‰¦ÖèÇÕTÌù=&¨›ñÃΘˆ{vŽIîÑMK_YS«|uâ¯v#Ó>õãÆì §ck8)£ ÓÃúë*¯Oê¦__é‰4|W©+`§—¾.T²LÉ] K e1Ž °6Úe,{Mqò¨SN lùUíÊ-]òëÝÅ*§öÛ 6Þ›|u=ÎHY_©««ä–š£œ+ "’³JíŠ8ásXã‡I]–6ðâ1ÁN×ÑÛ}UÎ|m²ä…í]÷E8bžy»ËJÛ$²Yhh¥dL}=7¿h4ìðsAp'Ì0|¦©ˆ¾êíÙ8|ÞØbñé™å3ääPjÍag¯»PÔTÑÕÌË4wJgJÁKR>GÆb•ûDZ@vñØvÏO UzqFW¦b/²3¿’4Z¬3ÑTN]VópË5ò‚ƒR¶”77Ûì‚çShÝOûiìtmÉÙš Z ^Ò| ’Tkªbš¦>mTÄ^-|WèìJŠoU1=1UíÂÞnaWwå­;l*>é»6®yæîOâ‚)È™·—¹¥Ä<€ìä€ Ò¨˜«è™™¶ê©zÚižiˆŽ¸ª}Ï›¨¹ZÆ¥u,ô;ütóVNÐÐØÍ,òîË¿ 9ÎÃÃ9o_(艪¾é‘¾~ªsÏM©§ã©óì|±_¯¶sKMQ«%ÔÉl”®ˆ·{ó;éœZCÄaÀ7!®v˱²p‘TÕ‡£;õSºœšm‹¦ÑMºê·›û^9XÔz6ŠùƦÍIv·Û)ê›Lâ*ád†wÁqsÚ ¿Þͱ*1]íÑëÕ/”Eþ:ø;4Û«»9›=Í7TÎYin6ËÍSê¨-•´µ=Òê7ÑÇ[ŒÊaš)±¼~gÅx Èé +yLbŸ›3Õ9e=—çìœ1ó¢:öç¶å.EÈe²)w¾[é›EiºÍ ´¬hcwqÇ°ê‘pØû áဲֹÃ.R£*sé™›n‰ˆ´{íÑtkÎz¢×ß13÷Ü]úºˆ€€€€€€€€€€€€€€ƒèÅü›ûN?÷%ÛRœl|å$ÛCåþÕÿ«éöv½´nÎT–ÿÓßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=INß¹(7¾úzö9úžžÄÎçs ¢Úéñ³µœpÇBŒÓx·ÓbûÏùW¦,âwS1ãæñ­9#Z“e«tM®³²ÔvX adÆQ/‡q 3Åv¿ZfwÍ3Êf}èÑ8b#tLsˆsŠÜ¹Ôš×9.·Èf’ãg}¥â*=Ôq·lº7ÆÝëˆÁ.Þ´HÙÙ +5SŠ&=©¦g®™žëO½**Ã1>ÍùLG~NթѦ{Å–á¾Ç6CQÆÏë›ø™sž;òç+Ò¬êÅÂcœÄûŒ©·î‰{®¯<‹UUÕTWÑ\Y _=¶õNé ÞÄÇŠfÓäm¥í-‡5Ís\A Î)µ­Ñ5r©é5^÷éŠc98¸h«5u²ç5UKï4÷ˆêièw†šrÆÅ#Ÿd&Z|d9¬ü#cq>1Q¶pª¬øU{ÞÝ}¾+ñ¦2ê¶Ëõx¿ž‡ÑyA­–ºVMUw¤¯¢­4®„h ‰­’:yHpƒi¥¯!ÏfÑÚÉÊí4ÌDNÉÅTÅóÊrϯ>Ë9UQ3iÙ†"mÛ9ueÚï;¥o4T·Ý.B²¶¿;OSÄ[¶2(÷áƒñž ‰‘Ä—y1)‹Å·ß>¿wbs¾ë|u¹>›¶Me´ÒQÌöI$ÇŸb&8± ØÛÁ8àÑÁ£€S™º´¸>Œ_Á¿´ãÿrQ±Õ)ÆÇÎR@@@@@@@@@@@@@@@@@@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@AÿÔßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=IH⎄—”qáÑ‹ø#7öœîJ3¶:¥8ØùÊH9¶†þ Ëý«þ5WÓìí{hÝœ©,?ÿÕßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=IThíCq¹ë]SA<¥ôôN·€7ÔÎ|˜ dí8g‰8òavœâ~Õ1Ùj|Ò¯)´ß¾aÚ눈>Œ_Á¿´ãÿrQ±Õ)ÆÇÎR@@@@@@@@@@@@@@@@@@@@@@@@@AÍ´7ðn_í_ñª¾ŸgkÛFìåI`@@AÿÖßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=IãmÿCëIZÝ=q¸S\½ÐËGÜŧqNèÞ–hÜqó`ùÔbmŸ•3Î)sÖ¨½¦ÿ6Ýó.î¹Þê-öžîŽßSQ&Ãܱ÷ùv2ßíf[ŸÇÇ‚x.Õ6ãÕõP¦/Á×Þ¯_Â:ùîÑ—/Â]ÃÅû• ÌkN½´$Q`dôœUg¤ãŠìO ·—eÑ‹ø#7öœîJ3¶:¥8ØùÊH9¶†þ Ëý«þ5WÓìí{hÝœ©,?ÿ×ßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=Iœe„F/àŒßÚqÿ¹(ÎØê”ãcç) æÚø7/ö¯øÕ_O³µí£vr¤° ÿÐßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=IA¾–§”mz ©­¬¦¢´ÃG QÑT>˜¾j˜Ý3å{£!Î-nËci;Æ%§*N+Íúm-3<åé3†ÑÂóÎb<¥¢-÷»M’ž–óTÚº¸ƒ˜ùÚ1¼hyݹÃÇ,ÙÛÀ¿hŽz_fûE÷]çoºœ©p}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÑßÄ—þ)ý¤ó¿þÙÿJµTžÁж~¼´$ÿL*y'Kç…4P} +/Öª?µîMQ«£­:_=IKÜ´ö§Òº¦áz±RÓ×Gs†“Á=Gsæ¦c%k¶Ç1Á¯oÐFs âñ¾o&̡֞é3nn¸½üÜ×BXîÚoOÁMr¬5µ I$Ò¸“$sö[œ‘6¶ž!3ÁNr‹FvˆŒúgz7¼Þzg“ãsŸ(^ªµÿ3ÿÔo<9»‘Î|¡zªÕüXÏüsKÏ'?·>®ZXÝW#˜·ð‰åìk¼¡®sX\?)kOäSAðFoí8ÿÜ”gluJq±ó”sm ü—ûWüj¯§ÙÚöÑ»9RXÿÒßÄ—þ)ý¤ë]^ÑüºJÒÅ +˜eù溾©ÉŠÃ'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã/vßn©ŠR]aã÷KH •U SHZªñúÓ—qB8d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2÷i-ÕLŽpcpË0?oh(ÍQÞ”CÒ溾©ÊX¡2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ{ñÛª…­Ý»%ì ~Ör£5EÒˆÉès]_Tå,PŽ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ œ×WÕ91A†Nk«êœ˜ Ã'5ÕõNLPa“šêú§&(0ÉÍu}S“d溾©ÉŠ 2s]_TäÅ9®¯ªrbƒ ¹~£žšªC# Afmxi¦&;^º8³±•G¸€€ƒÿÓßÄ—þ)ý¤ó‡Œlÿ¥ZªO@Â0„ a@Â0„ a@Â0„ a@Â0„ a@Â0„ a@Â0„ a@Â0ƒèQÁTjÿÜš£WGZPùøRDÂ0„ a@Â0„ a@Â0„ a@£ðFoí8ÿÒ9FvÇT¥ÐùØRDÂ0„ a@Â0„ a@Â0„ a@Âm¡¸UËý¡ühUôû;^º7g*KÿÔßÄ—þ)ý¤ó¿þÙÿJµTo¯umÊËSlµÚaŠZ딲23P\"Š8cÞK4ž3ƒFËZÖ\ç´JŽÙ´n™ž¨´xÌ%”Eç|DuÍýÑ/j×w =ÔêÆAHÛq‰Ý×SÏ­ñLm~ÓÄ߃tYyÚÙÁ;A"¬³è›o¾Ë[®üÌ9Ú7_Æ÷åÉïGÊþ’}ž[³« TðO4Û襎H¥‘Ík,Oh‘…ÛM#i Aè]¼s›vîërÝÑ~ÇÖ½ØìºFë|·o*d·¹‘¾ÓÔ2F¾B6w‘– Ç4—6B6Ç +«´Dïª#¾/ÛiNŠ/6Ý=Óg%»rϤlM€ÖTËšÔ–ºš}¸¡qÙT40˜FÔ¡£ó9ª"mÕß±¦f/×ݵôµW*zcEÍW +½‡>=ÿàã’PȉÆöS\#‹?ÐÇì·§¹5DM·má׹ئñ}ûÕʽ%×^Ué†C)ÑÁRÉÄnÞd2ø]ÞÆËZXðì=ÅÍ–”Íæ¨öf#¸ª-;â\§WrbÐÛ–Üf{dŸkw1I<¯ ½Â8š÷ì´´ìl·#'ŠMQS3ñÒôî\©i{Ul•›Ènj›¹ã’wJÜ絑5ÎÙh9{°<¸+µN´õöoêr"ñ‹îëpý1Ëm¦¯LRÞnrµ×WWMNÊXå™Ó'‘1ÆÀ÷»ðly <5eLÎÚ©‰óìJiÎm²&ß^•‡—í?%œ\®µ1Å÷ú*C rɾm#ŽÎÐçÁœ »Å Ï+Ú#|Å÷üé'0Þg„Äsˆ—5¹òµ¥lµÐÑÕUº9%ñ0˱Ÿ¦Í ad.~FËd-$0—ÎÜmÛºûѶWá~ÍýOípåSKÚoM³ÔUìT™#€þCef8Ÿ0né’?#eŽpqÈáÄ%3M£«¶::Ýšmø¶òU4½Uó™c«ÍQ•ÐÁIºtÌÎ…³lî+@$Æ\0xp+”ÕlãÝ·­Ú©Ã·‡~Ç-µ^í÷Øå’ŠvNØ¥’˜ÎCe‰Û20ùœÓÁÃÈWbož÷&-”üt¾¢ê"¡EúÕGö¯ýɪ5tu§Kç© éû¶¯Ô—­KYcÓ¬¢c­ðA-LõÂg0¾£hÇ iÎËKž÷ @kŽT/3{tM³é›_³¡é1kôçճѷr«['5¾áIÜN¨£¯ž¢•ÑÍ%@}šÃ¹ n$¸d½®ahéIªÙý$UÇlE§ãŽÂ(ûÕ¸l™{“òÏkå2Ýlql”õµ´²Tˆ Ñ‚ØœÖÈXéÐæ´½¼A㜌€Töò‰çõP·ŒÇ/¨ú7nS)ë,¶úË™PûltT†V<1ÎÞ9²¼·ÅvÃŽÈÀ;#F÷µ¾v}–½þ7¥k^ývÞÖq&ò¹v›“Ú{Ó)aIªÙnçov*gs9½;[#Np:R*ņß?|^yZ]špâ¿ÍÅõ9ÞUܦW2ºž¢šQ.£u™Æ1(,‰°¾L¬~Œã1àðÉJj¼ÇÍoo«ÜM6¿§¾Þy?½›–|66Ü/.¾ZúÚ(b§ŽY¤—¹§’1±Þçl3møO¹å;f/ñÀš3˜è‰·tO½ÉkySÒô6Z[êöéªÝ±OºŠI$•ürÆDÆ™ Û²í¶ìå›'k]™µ¸ìéËWb›ß†Þ·ñ‹•½)Qg}Ú*Íå3jH qJç¾vôÅa¥ïï­i<˜¦(´NûÚÙì¿“¸s¶í½¿~ú–ÎQ4ÝÚÝMp†º=ÅTâ’"ý¦9qnäµà9²íÒÇàFRÝÇgm·†×3GF/àŒßÚqÿ¹(ÎØê”ãcç©"™nœ¦ëz;v ¿C²J 5e\N¦s*Q$4»%îo aäZ {9yr¼#Ijb©ÙyÙ¶ØæŸsÖh‰ªi±ßDUïv¥?*Úf¦ðË;*\k\Ȥ0ˆ¤%š-ó#ƒKXÝž—¸†‡x¹Ïíx¼Ç³3Ù›ÎÓhñ¹= +[4mÒ*¹ ­.m$U8î&ðEÁòôÁ¿cO趇Gœ(㈋î·)Ù=\RÁ7¶ûóŽŽ·µ­ùE¡ÓVéÝðŠ®o’㙲:-ËÆ™c†åí1ÏÀãšJ°Þ:bi½øÕ‡ÎÞEâÏ¢onÊnþwþX´ž•«–’¾¬²h¦ †iM™»M’G1Ž ŒÙ¸†Ž‚ANj‹Û»~%‰˜ì¿Ç'»ª9TÒú6©”· +½‰•ÛÉ#cÇ –gF×6(Éȵ§ŽKçn—b›Å÷¼j.Ut¶“­eufÄŽ s‹c’FDÙ#tÒ1®dMyüWHZNqÅ/ºvvîëà[+ü[SÆ´Ö²iªû}$ lŽœTÔÌ0ç9´´°™$sHñÜãlÎ[—t +ô˜/›MUOfQÎ|%:hÅn5DGoÔp!®uÅæ -Þ¢ŠŠ{eØ5Å´&gÍHÉ#2G$q,•£’l5…®pÀp ÒÓLÚ­Ó7Ž«ößdNô&Óû'nÛ?¦åîÇ}³W\ë„´Œ¥®–Œ )ªd"WGck™µ$¯ ãœ×p /*4˜©‰žžŽ9ììNº-TÄttð´{åçYród°éÚ{Í–®9kà¡s[MP_+Y+d¬ÞG#ìµ¹Û-ÈÌæ«[é§ÏßÅ;xC—^¹ZÒºz®*ZÚ§Dù‰t3lÄ&ýk~ðÂØ ÉÃD¥¤•+çn›Û…÷_eܶWíãn§d‹Âm¡¿ƒrÿjÿUôû;^Ú7g*KÿÕßÄ—þ)ý¤ó¿þÙÿJµT+Ê\îÓZOê"’JJSYITè˜é ,ª»9¬Å|a¯ 잯=•^vM3·Š£Â^›i´tUÙi{‚k]_[®hp¥¢•ö›UÞ×PÙRï*c…ûU22'çEs Hn^Xò2KçNQÏ,3<ç–e¶Ägz{ñDÛ”sÉĵŽÖ±«½Þhb–Z*‹–š‚7î¤gÓU4­kšXÀö°¼Œx§Ž§¢ÊcŽ–&:¢‹_œw9^Éᣪ;fooï·Ê•¾¶®£”CÈd¶Z¶6XçìKƒ0S²:b¹ŸæØ¢z­ág¥SÓÑ‚<&&:üîûZšé-ŸRÖGjŽ UËx¥ßÚªiÍE5kI‰½Ý ›€,`Û/-‹ÆhqSÑm‹{u^7g3Š'¿µã/¸F{òWÜýYî.·jŠz[K*öùPjí”æFC´ç—Üiê6å®á#FÓØíá`É]ÐôGEªÛ¶¹sÊÛ§'4½;ý^©ÙîðSºjín¼CPúÝcªž¡1fXß³#€ mx‰8‡ô‚Tâo(Õž^äK¨>…ëUÚ¿÷&¨ÕÑÖ/ž¤‚x7ê^L5Ýúªð%Ž’ë E<ì†YZçÓDèe„îÚâ$üW1§`ø¹ ¨Ev‰‰ö¯bb#áë4â´ÆëO LϽèÚn7ÝO«´µÎç@êIe¶ÞIˆÛøw œìÈèÃ\æ“ÁÅÍ +6›Íöê³ëÅ;|¢Û5™uaœÝWQ|ŸLò[¦¯ôQHú».ݾxÌolŒ5l}1aø³:pÀÎTt™á·Ï¢(¿ˆ·)‡hùÑ?6©¯²*™ï‰wŽÓPêm¼0¶›NÚ¢„x¤5ÕuMîi< dl9#82Ÿ*±{Õ3ºÔÇVS>ÃÆÖˆ÷ª{â÷£bÚª‚’öÙªèhiõ]éóÉMábmCÈås›,Ú>9,%¢LœqÅ}[ìõt‘Û5ÞÝÖ{i&ø£nz9ìŠsñ»¾9=­²Y­.«’ +é#¹^ž`’²-ì’Ë! eNÃbsö k‹FÈñÉñÕZ"-kÍVßœÌçºû{lñ¯9™½ò§º";¶v]@$ÁÑ‹ø#7öœîJ3¶:¥8ØùêH¥ÍÉ5·WÍ~–ï%{á}öµæÕ3GI#Zæ¹Ð –½®#'9kñÇ!xèhµ13¾©Ïíu=4•zÓÕFÏ´SÓÜûÑتî®P!¦ŒÇ-]-,¿d´8š±¡®À;84Ÿ"„Ó5Q\FÙ®¯¼Ñ÷ÏH˜¦ªg¢)§ïU8†™¨¥×÷ !CMO3k¶ÕCpdÉ€IHÊ^çq{@.sÁ!­'ÅfßF +±]´µU1²h˜û´Å£²Ý½ÓDò‰¼öߵ׶» Ò§Dj§ÕÅ3ê-–¸ôô[Q¿2 +G9ï|`Œ¸?j<9¹Ù=8Uëªk£ÆuU£¿Üf˜žûËÞ˜Šj´lŠk·Ü¢©ŽëCµµäòˆ[ ÉšÕHÆÇ~–ðñ°N03‚qŒ¯]/È«íÉð¡ã£Êª~Ñ5>eúOîW×\èf¨uÊÝk4ˆ^ñW»¤Ü¾”×48?ñšüµûG†W¶–s®6Ìéfm¾&"/}Ùg¹ eLìˆÑÄuLLϽŵµ”7-YCr7HyÚ.æ¡  Ø«c©Nè)§”5Ѽ¸í41„?q^Sé¼Ìë&{' §»>§­9Z¬£ÔŽìYwäî½?Kr’é|ºÁM¼’‚’;UR’7†ž-ì¹y"IœØËÀÄy]ª©µUFx¦rÙ•7ˆç7žNSL^šg(ˆŽ9ÕŸtYÔ¶:ûD—‹F‚®‚¾¦®#t·²*ˆéc„µÆ«Æö»õ·Ç²ç»Ú¥Š£ÉÎû­lº¦öȯ8›íèë¿|[¥æ}KSbµ:•€ÀèõM_uT¾‘Ó¾†¥šHêXÇ4Œ¼l±²€æ°<¸ªú©¢'+EQ3ÓëM¸]ë¤Îªçoɘêµ1~Ë8í¶«cNj:ŒÖËz¶†µÒÔÃ&õôâJGoËDm%˜cœ [Á£ a{S6Š8W7áy«o8B¼æ«g}|w>–¯¥„\µu%}EÖQyžžj::&´2¶©âˆ5²:žM’Ç5ÛÂ\ÝÛ@vJòŠ2šgn²ö퉉¾ì»¬ôšöU0Zý•E»ûÖ¬,ÝFÖz-§=>_Ûò«ug*‘EDÛCåþÕÿ«éöv½´nÎT–ÿÖßÄ—þ)ý¤ó¿þÙÿJµTžZâÓpPy29ÎÉ'>t#‰É'>| ñ´F8ôt ýo¤ãã=Px/qÏÅ÷4 Áò o³“7‘ÈâÝœœy³Á~K‰é(< ú_­TjÿÜš£WGZt¾z’Û$tŠHý¢Ž¿98ééAÄ5VŽƒXÍFk**74²²~çcÚ"•ñ¸>3/Š\àÇàÐæ´‘ã¹lï»g^÷o•·ø9qwI]pÚ8Æxtḟ)èÇîyy=§ ‘äéAÄõV–n©îgŠÊº9éd2C=$¡isK\s^Ç´ƒ‚׵àŒ•¦óŒÝŠº×GéZ=om¤#y$Ï’WíÉ$²¸¾IîsœI8y¥³(èrfùïrm·dœœž””p@@@@@@@@@@@@@AôbþÍý§û’ŒíŽ©N6>r’$’€I#ëôéð$ã΃ÆÛ¸œŽ„â1Ç£¡–È惂Fzxô  Ð@$ƒòI(?FG¸`¸‘æÊ"WŒaLJG„qãzüƒ´r:8£¦ñà“ƒÓÅásm ü—ûWüj¯§ÙÚöÑ»9RXÿ×ßÄ—þ)ý¤ó¿þÙÿJµTžÁТýj£ûWþäÕº:Ó¥óÔ}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÐßÄ—þ)ý¤ó¿þÙÿJµTžÁТýj£ûWþäÕº:Ó¥óÔ}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÑßÄ—þ)ý¤ûÚ<IÿJµTž0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP} + wU?¡îAF®Ž´©|ü1RDÁó 1@Áó 1@Áó 1@Áó 1@Áó 1@Áó 1@Áó 1@Áó 1@Áó 1@Áó 1@Áó 1@Áó 1@ÁóF{†n³ýÉFvÇT¥;ÌT‘0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|ÅÌP0|Å5Ðùrÿh«éöv½tnÎT–ÿÒßÄ—þ)ý¤ëµnOáŸÒ|¿•ia…LRñÎõ½sý«¸ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å/íZ¡Ïö¦1KÏ;ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ R÷©.uoŽreq!™zÐPšc½Øª^;ÖõÏö©à‡1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ Rs½o\ÿj`ƒœï[×?Ú˜ Å';ÖõÏö¦1IÎõ½sý©‚ R÷¢¹Õš9\evCØÏåBi‹»y³ÑçzÞ¹þÕ<æ)9Þ·®µ0AŠNw­ëŸíLb“ëzçûS¤çzÞ¹þÔÁ)9Þ·®µ0AŠNw­ëŸíLb“ëzçûS¤çzÞ¹þÔÁ)9Þ·®µ0AŠNw­ëŸíLb“ëzçûS¤çzÞ¹þÔÁ)9Þ·®µ0AŠNw­ëŸíLb“ëzçûS¤çzÞ¹þÔÁ)9Þ·®µ0AŠNw­ëŸíLb“ëzçûS¤çzÞ¹þÔÁ)9Þ·®µ0AŠNw­ëŸíLb“ëzçûS¤çzÞ¹þÔÁ)9Þ·®µ0AŠ\»GVÔUUH$‘Ιâ*¯¦‹CÓG7v*¨÷ÿÓßÄ—þ)ý¤ó¿þÙÿJµTi®µýn”¸Û­Ô©.U5â¡ÌdsÃkiÚ×<—KÀþ0*Vvˆè™ïˆ÷§‡+ÎøŽq3î{+”Jm[O\j)ä·T[¦ÜVATèó ¶ ;ƸÆæ9ŽkÁÁ8!J&&/×±µ¦bmÕ=’åñÞí³Qws* u6 ·âV°:NØ;8ü¹]œœˆ»æÕêhcu¼Ò´UE[6èK ‘–0nÞý¼çÇo‹³†däç Ëç¾'¹Ûe}Óï—©yAµéÊŠZböO<õ´ôNŠ9X_ª |ŒÎÐhǘž ´úÓn¾êf}ÎNQ~®ùˆ÷¹Knô­4B¦R¶a3xégk—M¤ÅŸÊ+õ²z–Ó2®Làâ#l¬/!§! íAáÀ‚BFdÅœ•»=Ý—nÅ\”Ì¡–8¦‡hí>6™GúÛwž\¹ p\‰Å1Ó3YÌ{¹;1i˜Ýî»°¥¼[à­mê¡M„ÈÁ#‡œ0¢?qv3rÖ|-/«àÕ5WZx¢tfÛZê'—CÜØã“i¸è 9"oã=Ógj‹M¸Dó}Ùï6úZ¨é%©…“Ê2È#Ž¾°£û€£Ž;­õÕ³C[*«*dc¤§§’ S‰Ùdlc'a®9?·‚*«w|Ä{Ó¦œ]ýÑwôÕšÞÙ£­SÖÔÈ͸饪lF6Y[eå±µÇ$àc€ ÚêÁ~QN;q}*-In«†™îž(ßPÈžØß#ó+6Úݜ丌àœ8éU6›n™ŽO:fñ}ñw»Kx ®¨–š +˜dšo#dŒsÙŸM ’ßÝF3JbÏW‹}ÊYb¦©†gÂvdlr1îaó84’Óù3-g‹}æßvkÝIS íů1Hdž¸t‡“ƒùÚL>9èGB‹õªí_û“TjèëN—ÏRAÕú›”‰­WwZ-Vª‹µdP²¢xéä†! r´ùœÖ—¿eÛŽ$I†=¶›y^Üeé‡NÇô²ò§kÔ4ô”Ìp¤«§©ÓÊæF 4Î |rµÎÚiÆZÒÓ‚ ”ÌGVWá6øîr)¿^+Yõ´(6^Q-4—tìsjbÞˆ÷ŒtÁk\pAÆ|Ùu+xDóGÎc“ûêmeI§­±ÖFQš¢*Xc‰íÌ’Ë&ì1®â2K¼Á®ó(MV·œ¯á E;x}ó‡žX¨¡bÕl¥™Ì”²6Óe»Ýëê8‹?‹´$àiv÷Ãlña·Ü¼Œ6½òÊÿq}‰ùEeU=<ôR°Ô]Í¥‡n7íÛ¤x¤á‡d“‡ƒÄŒ$Mæ#~/æ¾f¼"žûx]ô4ö¾¶ß-\æshàŽ¦¢˜º¢F0mA;á'hÐXKFsƒŽ•Èªñ¾.äŦctû¢}îOSw ¢¤îɪaŽ ½|ŒlxwAÛ$7ÈsÅJrr3~d½[â¦}Sªal1þ<¦F7“³²:GIò…Ë؈»Ú§¬§«…“C+$à=Žkè- àçò.Ø{à€€€€€€€€€€€€€ƒèÅü›ûN?÷%ÛRœl|å$]påΪÚnuoÓõoµÛ*¦¦©­Žzwlî D’ +|‰Kµ“Œœ@8Âò§Ix¼å3êªiñ‡¤Ñ£9ˆ‰·]1W„»­·ËkßT;rì†7xÐç7m 4œ’[㌖ñè^³”Û¯¹çÅùŠÿk›±W»›„Û2°î¿µ˜>'ñ,%ú]·CÔÔz†=?ož¥¬ßÉN™°1ìkä ÆvKÈâE.›!ßÚ¶ïAm–(ªja…ó˜Û$Œcž|Ì ¸þA”à튻½¾x ¨©†)f$DÉ$c\ò<Œkˆ.?µ” Së +]-=34¸ÕI#r8á‰ÓK3³ÒÆ5¼@âKšJ„×íÝ3Ùd¢™›â;f\ÃË?;U[»ªÍYEEtvÅdÎ…Ì”¹†Fo#c$;Æ4¹…ã€;$áJ6Úr›LçÃ9í³“^3‹ø͹9~“å+OëºÚZ¨DT•SÊçMb³mÄ8†±ØË ##ŠÅTÅ]çgj§ Í;¼¢M[ÊUƒFÚéîuUQ:ž¢¢ +xÞÉcÙqšApqpiks´ò ÃA*S6˜òäEâgt]Ê¥¾[!š_Wd¨…†VH<ñ‚rñý£•Þ›tîés‹é£‚m¡¿ƒrÿjÿUôû;^Ú7g*KÿÔßÄ—þ)ý¤ó¿þÙÿJµTÊeº¾ë¯4´4Uï —qu;ØâŠW`E[³(-ãçéà¼m3_à¹ûÝ/Iùƒ)ûÍnƒ¹Ar £ºZª'‚¦vjÚ®•¬;ª¨¦§dš˜˜ZÖ°EŒÙÅo'1§<1ôúHž5DLÄõÏŠue‹í4Lp‰˜¼x÷¹šf±\¨q¶Dùu Žž99°V2œ8ÓÊÇ<‚Ù@“d€Ù¶xð(“on»DìŸW8ìÎc‹“Óöšo¿åe=¹Dð} /= ®²SSPÇE%6¬«Šx`—{M¿îœ÷S46'm»ÙÚiÊDÞi˜öt¶øÝ}ŽÕU}ú/Ž»mq[5¿N‰®|tâí6§ î‡ÏÝ÷Cdwã¸7»! 3à½t2ÛgG?„æ÷ã~÷ž—<{¢¿ÃâÝÏÆŒµTWºÓpªª¶ÁXu<àÈÊi_r|­©”> $üGB0ì·a‘lœcsC"rΙ½º}YÅ~ݼlî—çmÛz3‹[ãcͳOÚ©4;ë4M­:ÝãºC½Ã®rÆZ$üm’ÒZZΠ࣡‹jøÄýæ´´¹ãìñ¥ÉîöÛe§Tšx ‰ýöPµÛ¶FÇl÷E€; d’á’Hé]¢=Z>Ü«ïu!;kûn>òøúî[eUƺçM +£Õ””ïž ïkæž9áÂ'x½ÏÎCY—f=£€¹¢ÎhõÏ_Ή¿-›¬î—e\(Ž­‘1o=÷wï$¸çe_ËþªÓ¯MÉŽºþôi~WÜiðM¼²U[®1ê[…,TòR^mÔÒÔÕ»yZù£’˜µ´¿‹Üñ†»Åâí¯Â;d•åFÚg~—·åDOg Éײcv³dÌ}þ÷Óå>‚Å_eå6ªñ¶ +†² $ ßG¦€Ó\|vµÎ/ÆÆœ_œñPŸ“ÇYߎ-­Ø”|®;°ÍûÞç(Öí;q¢å&{Üt §>`Ó$PóxtFï€Ì_ŘÚ%OKòjžœuuüÜ=Þôt7ÅLtaŽ­µ]Éô^¢¸k;ÕÀÒÇ5u-†Ìi^ö‡:9 ,Äó—’ÚqÃ8^šlµ³qM·üˆyh³NÌ1÷·ä¶×é+•MU²¤·ÖÈþn¦—»'”šžè“mÙtrx乹߀Öàœ/*­ÎÑ«žÏ«iòízÅçø²6ï¼åçØþ6 +=;¦)"¦©4Â7\iïc•ô€0Èúº` 3¦½²í8ïI ]­U3—«Mæ6ZñÕ·¶.íbc?Zr·´Ï»œ÷“ë]ŠÙr¬²Ü©-ìX"t•vטij(C‹6§ˆ`Ã6NÞÓ¶˜]²ðÃÖ¨‰Š¢«Ftâ‹åÓ³wß<©™‰¦iÏm·ômÞªm°ÓSÑÁ67,hl€Ü9ÆNzr½j›Îo(Ê2{ª.ˆ>…ëUÚ¿÷&¨ÕÑÖ/ž¤ƒ¡ô¥m5”Yl¬Õ0Ûját® ‚8ÜÒâ2#x;xü\‚q£MQ<*™ž©¦›Ot½*‹Ìq¦Ñ×N]î!oÔ6ÞP5n˜¯‚‹sKUm¾ìE+‰$…»Í6K%Æñ¹3\ é^}3ÇE{n½Q)쎭%¯÷uÕ¢¾ÛɖѺºžØÚjJŠ9Ì-kC…\O,ÚÙ.ßÅrxåØM$áµ¾v }« U÷æQ¯~$Ìõb˜žéîv·Ó"Šå¦ì!™ŠÃn +Œýr¬9‘ç÷ᚉ?u¥{ìªm²˜Šc®Ù÷G{ÆfñÆ©š§ªþsÜátT²»]3FpÓ_e¿ìZ®ƒ~ÎnëäË"ñÑZf#õ~T÷W<žºL¢gÛÃÝò¾óß‹k‡¾Ž†’:'–‡>Ûsö7YÎˉÀËpã€3…çUðé&6Íug÷nôˆõ¨ŽŒ4ý꧱i]1p—FÑYb§ ¹Ùk¡®0mKO%#2ùËx¼Š‡&Nð¸g9 +ΓGUU1²hž­´à÷¼(ªb"glW{'ÇSˆw]f­ÑÚ†ã^àé­z;$ž\T¶BúŸÝ;¸³ûaxi*ÖS5ûUh»¦™ŸæÕLv=´tà˜§Ù'|LGtw¹æ¶Ó{ÅO(U5”°Ï,6š-Û¥c^c"†G‡F\ö€;MüQÇ€^šXõjždçÕy¼´S1Ñ‚;槑O¥¯-QQ«›¬‚Ójs0’:gÒ—=ôäåÍ{¦Úñ£ÃÌ£§ ÛMzþݘËnÈÃnÛÙÌŵqÕ{Íû­w ×V®}®Öfª¢ß pS[ÄSÜ`šjØ!u+LRSaí-~÷h€Ñ´é†OçTmœ¯¬›oêÛêv§DìÛl;-ë_êö;Þž¥—[íÚé[ •PY-‚ƒd3.–Ya›,?³,FZxä¹¹M$Å«ªc)¼oʽóÜæŽ'ÕˆœòÙÎQÝîd½wƒ˜ï~ïÎ6{µD‘[êŒrÍ31΂fþf0øå h-Ú +qxª)œâoŸ‹ßŒt#6šfc+xÌÚÜ%Åà§Óô6(h9º–gÖêÚÈ#Å°SïcžwÆj¶vãcZv" í;`]tèã…SžÌ±sÏ},Úªç1–Üâžíî5n£ ©Ò÷¸*EñÓëZFLÑíÍI¶Ø˜âàÆçpâ]ž’µ˜£íuG}Hi2šþÑÝs” 3®÷ nkæ´ÒÅMQG3TÓÉ%]<;˜M3©7onÈÞmnÃ&Ð9è^1y‹ß=fÞ›Þ›G.ë½&Ñ1³W³£eWøßeÙлG.ÀÉèÉÇ­ÕµRè¸è€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÕßÄ—þ)ý¤ó¿þÙÿJµTžœ¶úYê"©|Lt±ˆÞZ špiéÀ ã§B§MZ+YVÉ¨à‘µ›=Ð\&Ùhkw€3œ<Ë–œnî)øÜô†‰ÓÍ´›H·R÷94û–n³¬ìcÏôçŽRbûH›=ª/f¶AO5GLó$,Ž6µ±¼‚ ˜.!Ä8œŸ:ï»c—ïzlÐÚr;ƒî ¶ÒŠ§½²:a …í9.Ævãž”WgÇÅÉ›í{é+W]£ §mkÆR"`”‚1ÅøÚèàxäŽ ‘ÙÒìÍöô=†éËK`l’Ûfî–³a»"m²ýààý¢]µÓ´sÒ»²Ü69{öízÒi µSÕ:‚œÍPc3HbnÔ†'F^q— IâèH‹s¿n÷o~VìzUüŸi{¥\Õu6ª9gœË#àÏx´â2tñà<Ë‘Õ.EGm¤·ºWA #3?y!c@/~vŽ—`“Ç"ëŽ=täÿKÞê䫬µQÏ<¬Ý¾I`ïsq—8‚HÇ>N +8aÜRþ· §/,ª«¶ÒÍ3#Ý6I!cžŒlNÎ y3Áv×ÏylŸ«¾‰ÓÚ‚¢:šûu-L±°ÆÇÍ æ°þÄqÇ£ %ºw—è}z[M Ïž#ŽG²8Üö4æÆ0Æ’:CA!£É“…ß~}®>m«HX¬u“ÖÑPSSÔTg{,Q1~NNÓš9Rx•Ø‹däÍÜrÓ ´Í†¹õô6ºJz—ímM±çk‹¼f€xùqÓå\ˆÃ³'fo´¬Ð:fàÚ¦Ol¤‘µolµð°‰^ßÅ{òîÁº M2Ž¢Œ[)=H`š!a’l¶Ð0v@g£ ³>=¤MŸÚ§Déêʺj¹­Ô²OJÖ¶  øÃ1ÄdþÄy<˜Ré¿N÷:-ѹÉÉÊã9¶†þ Ëý«þ5WÓìí{hÝœ©,?ÿÖßÄ—þ)ý¤ó¿þÙÿJµTžÁТýj£ûWþäÕº:Ó¥óÔ}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿ×ßÄ—þ)ý¤ó¿þÙÿJµTžÁТýj£ûWþäÕº:Ó¥óÔ}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÐßÄ—þ)ý¤ó¿þÙÿJµTžÁТýj£ûWþäÕº:Ó¥óÔ}¿‚3iÇþä£;cªSœ¤€€€€€€€€€€€€€€€€€€€€€€€€€ƒ›hoàÜ¿Ú¿ãU}>Î׶ÙÊ’À€€ƒÿÑßÄÊÞí´ÿB½5“½0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼ÃÛlö-ŒÊY;Ì0üw»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó ?bÃo ,·‚Gít.k'y†Ž÷m½Cu“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ;ݶõ Mdï0ÁÞí·¨bk'y†÷m½CY;Ì0w»mêšÉÞaƒ½ÛoPÄÖNó îÛz†&²w˜`ïvÛÔ15“¼Ã{¶Þ¡‰¬æ{T–ºJCa# +3TÎ×b,ú +.ˆ?ÿÒßÄÿÓßÄÿÔßÄvA(:üòbi#mü8~!V½§Ž¶<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_k`ðŸbôßîôj¾$ÖÁá>Åé¿Ü)èÕ|I­ƒÂ}‹Ó¸SѪø“[„û¦ÿp§£Uñ&¶ ö/MþáOF«âMlì^›ýžWÄšØ<'ؽ7û…=¯‰5°xO±zo÷ +z5_kaÉìz‚QBéi‰-k¶NAq•ã^ŽhÚô¦¬[my¤ ÿÕßĉ?þÑAÉøîý³þ•}1ùž„vœ`åäzyÙ g%4ž€ƒË˜æô‚~Py Ž”„0ƒÉi(—Õ®ñ3´ï˜éwE£õ©·Î‰Û¸8ÕƒZIA¯´õ\’ÎÚ6è™+Ÿ™ò ±ÍvIqñÞÆÛ†ÑVk¯zIžŠ)ž÷œSŠŠ-Ó¤ª;Ÿ:ÝÊ~±×ú»“Ë}-Ô7)«&´õO“{¥qkj²Ð0ŒßÚ!CG35ÅýŠ¦Ñœtw¹¤ˆÁ6öéŽ;_Ë–ÛýÎóiå÷KU4PZ¨à´Ò˜¤s&lŒš¥íÙ#ÆÍŒ»¤@8%UÓLન鮘ŽªfÝó3Ö³£^šwSTÏ]Q3ÑØúôVé¹Öº[+«_I¨Y%-e=UTµ 2w;el¬Þ8èŒI§¢hªwç +Ÿ*Œ]1Tr—Õ·~ªþp¼Qâ–‡›k.®µGŠÐkÚàóg}6ÎNsxxÙƒå^z-.9§g­{Zo1×É=&OÒÚùeØýß¿Tž¨²õÀX©äµX®¼ÝU0ªsf,/cw‘ÆXA-Û฀3Åyèôó1Le5M=ö¿Ruh­39Å1=×{œ§þ©ù4eÚíMn¦ š5<F²´SÍ6ù»ÍÝ$x;ǵ„œ ž•*´øo9Zš°Îyñ˜ÑtiÑb¶ù‹ìËž÷×Ô¼»ê7_e¶éËM5cd†ô%©©t G&Ii c²ì²—9 )ikš&¸´z–¾|.ŽŽ˜®)›ü«¿”?ªï©”¦Óöˆg¯¿QIqtU5Š8a‹Þ;Xâçe­á:ìé/Vcæbž©÷‘E©¼ûSLuÂrAÊ>©³rr+!£u3_.0Ë%}PŠ +8ÄÎ%Õ;$1˜Øh`9= ËC\ÆŽŽ4Íê™´e3ß)é)ŒUp˜´F}Üäqþ©úêo°[)ç©ŽöË3¢† ºçµ»Øe-´íÝ Ÿ‚ôÖÞ)˜•3>HÍš¢gäÅß#^ò¹­nÚO]Z¥ ¥ ¹YiØç¾ +¹\ÍÄñ¹ûÈž×o˜€Ò|¡xék™¢®‰Š­6윞š:"*Ž1xðÍIr=Uy¯Ñ¶‰®íˆT¾–9¥ØsœðÒ^á‚ñÐN éWêâ©JdѼ´\4Ö´Él¶wT·=C[llU5²<‚%“Þ½¤–þ),oœV$á¢">U3¶w_§¥bª#wù³öz\¥òÍ­¯|šjñ%=ºãf©5O‚¦GÆöµÛÊwìøÁ¸vÈÁ' ð^ZJæª/³ÖÃ9î˜{ÒŠ"š­ô·ŽRæ6}«te=·IYítÕ— +[G9Õº¦¾wFØÜã°ÖJøÝ$’¿§Ç­èÎ^õé&™˜ˆùϺ9t¼i¢&"f~TͲøÞþÕ_ªFózn•jËdº†Ž¦¡‘ÔTn·/§Às\ðÙkhôœ •ÉÒLÕ†˜¿©_fÙv(ˆ¦óÑTÓʾ»ýPú³JÜ5–:Zˆtõ5UTªtd²xƒÞÖ40í9§;<@-|ÓnË%£ÒÅ3Dû17ízÞB.¦ûj¨¬–å§Ò²XgØq/ÞÉ€\À@€g‰ çȽô”cš÷WLDv<é¯ 4ÇM5Í]–q!È·(öjÍ"Êú‹d´º`Ô²¥l“±ð>8Ÿ sKZFZ×5¾M§dð +MWÅ6¼Q4öÚ3î*˜˜Ã´ÕLöDÝËn\‡^*¹¸i&Í ®—K,ó9ÄDê™çHv±‘ø­áœ£¥Ðâ¢(ŽŒ;xMæ{féèô¶®jžœ]ñ1:w’Íg¨uFŸ»ê§[áƒOÂöÒÓоY “>1öGÈkG´+Ú"f©ªzišb#tíxÌÚ˜¦7Äò|È¥ÑõôÔ›SmÔ÷9k»·p_,O{¤Îakpãƒ+]1‚¼ô9£ M­Ní³»©é¥®*¼ÅóßÑ¿¯cªm:Wr¦ýu` ¨£†ÙW©¤’L$3ÆØÌr8Bâ»l4$gˆ*¯Ö}×E1?&+ªxåUìöÒÕÕ3Ó‚˜á6»¶õ‡ úˆj;Íu€ZŸæ*f:[Œ;ɨ¤‚#,-,{dÚ`aØý9 +Ìèç8ÊÕUŠöÎ/¶1\e9Þ)µº't¹Éäžé±¸ÝY,N§¨ÓÑÚ#ÏŠó3 ¼g5­ kAñz:•z9«ÓÄ[”Â4U‡ÒÌßœ:îËÈF±Ñ°hÛ•¦j],vùmµ1ÔºMıJs´Ç0meŽâ×GÍ\ÅX£¦ˆ¦oÃ¥,q1iöæ¨íè|*oÔã¬(´ížÍn­«·^ën’SÔï;’©µ.qnØh$9„í†à œ(Q¢š"“†™Œøß>´ª®*Ŷ1M3— eÔ÷!ýOzÈY+-³Mov÷RS_øL‘·`=¯š=‚Ó³³³³Ú$)Q¢˜Ãók™ë‰¿~hÕ\N)ö¨ˆíŒ…¨9»ßn:ö]ü,‹QÑAMLIq,tp¹„È1ÀdŒ`ž •h¦iª=ª¯£ÉØÒDULû1iæíÎL-·»˜·Ñ^›NÚªhY»•Ïte±´1¤€r@ˆ0B·3ux‹'M=úŸõ¦Ñ§i$š˜¾Û©*nó÷`Á+äsZß‹ðñp:xªôhæœIÛ7µuâÇôÓ–ò} KÈN ¼Xµý RÓ‰5du¥ÏvÖ²0D¾/➌ùœè§ ¾Ÿeâ}Éë#þ–ÝÓ÷#Õ¼™jê=G ÓrPº¢kCm1V™ÀÅ“FèÁ$´“–6†8…餢fj˜µ«Žž‹_Ý(QTDS}´Ïǃæé.@ë´]ßEÉOQ´Ö + +Új‡;-|’Tàí1¸#gkk9 Ž•Útxk¿F®(ùK•UzmÓŽjç嬹¿j$Ó¨¨ii©vœá²øbØq—ÅñFz1ž +¶“ë<ÕETåëWGUãÉíF–)ª™öi˜žÛù½‰ù¾Uêjk€ªŠ™¥Ÿc/cœddîÇá0}1Ù2ó¢¼4ÑÍS3ÊÎÉ· úÓG^t¥d̳Ç’9é&m •¯ž9˜ê—8´mLH`ðâIwÑLÅW›DaÃhèÙ>äkª&-œÎ+Þ{^œß©ëZ?GÜ4ÖöÑ:ÿÚ–PùªßÊÙAnà ÎNrG +4sDM½J¯ÙœóÍé5ÅêŸj™ŽÙˆŽY9V¿äGVÝkµE5š¦‰¶íRbu[êw¢zg5¢9 M`-“m£€qnË¿"åZ)›ÓÑ5bãÑ3ÎS¤µ§¦)·¾÷ w"÷:}M®§’å®Ó°Y郜vÄ‘Fæm„£÷‚/ídŸé¡SŸ…4 a@Â0„ a@Â0„ a=ëXýì‡ûMª5lN¯NAãÛ+°Œ¿8]pÂ0„ a@Â0„ a@Â0ƒÞxýâûXÿôQéì„çcÑÂ’0„ a@Â0„ a@Â0„ݼ~õCý¦ßô«•lž§aëHÞÅÇ6Už¢ÿÒßÄ—þ)ý¤ó¿þÙÿJµT Ë*W>Mï6ÃO¡¨}Cîxq|tñÚdc¤~AÝ Ë¯Ñ17ž7Šc²ó›Ó«3Óxˆå5Ot>íg)ÐØ/·È®Ok(mÐÛ^ÉÇ9ÅÕ®{8ìç#h0 ’x/Z=kïÖE1ÛM3ã/:º>Ñ5r™rMEÊFŸÒ’\Y_9ŒÛic¬©;·¸2^èÚì€v¼fœ†äŒdŒ(ÕTS‘1³±*hš¦ÑÓ=‘µÅj9yÒT®¨d†°IM©–>â¨Ûm;" ·c;ŒøNŽt¤ÕnÉ´ðë0ß·g§Í¹rÓEeÕ“ÛæÛšŒZiîQ:’žYä-’IävìDÖœàtùzqaš¢~lÇeâv»†ñLÇοt¹Û•-=h§¥Ÿy-Kj©ÍdBŽ jiÚ3ÆÒDchxÇËÀx)Õ8vôg;¢¦œ[:rŽ·ðªåoLSV[èÛ<“Íq•Tͧ†Yw½Á¢A°Ó†Œ‚âìŽ' ½6é˾þNt_¯¹Ê5Nª¶hÚYp²=¶DÐƹï|’;e‘ÆÆç½Ç€kA'ö*36í›C±MûK®¹h†‹LK_ddÒTŠè-Îd”“9ôòÉ+íü#Á ~ÓHЂ¹5|›|ê­}»ïÛ–Çb-{üؾî®ÇqÍv‚Ñj5Õó↠ìÒHÝÐhkvœç4’Yå%¹$~/§\Å9ôsršf¬3­yt·[ôµâál/ee¾’*Ñ u<°“ ²µ—aá®tdmaÍòŒ κ°öULNø¼½4tb›oŠ¦;"\‚¿•ËMU®ìê)ŸOUAEÝ„VÒϸ;bm‚¤ˆ–‘âqáŽvº­;¦#>2ÞcŒOt? å9–»Ýú;¤‘CAk¢·ÕoC]µš–È]‘Ä»%­ hDž$©LÅ17è¯ rŽûÊ4Æ+[¦›÷Ïu¡ñ åÆÜËÝáµ{Êk}®ÙM[7tSËñºYdiÛc†ÖÆÈk›å'>AçÛöDÓ³¨ôÁ{[lÅSÙú®bþV, ¤¦¨h«Õw2’wO+b¾FE³¶b‚$ 4‚0NBœÕnWÙÑÇrMùÛµü'åKFÛnêij]s‚JŠFSSË3ådE¢L5$— ¦»qˆI›eÂ',òž’)¾|mÛ¹ö­\£iÛÕ%²®š¨:;¤ŽŠ”–<½sœÂË\ÐÇmc¤t©mí‹ÇVÛ÷£1nÉ´õÞÎlŽ>Œ¿Á¿µ’¤j„mNv>{FJ”Í£²Q‡_rUªk5¶” ºÕµš¡²Á ñe{$ô4yzT§dNú)žÙ¦'ÞtÌnª¨å3› ¹I¡Ôt´ÏUµsRK]˜¢’(Ý sº9»Î#d€Òsû,l£|¯ºšf{b÷êÊz˜ÎßMTGdìï|ÆrÃfaª¹ËVÖÛ!µAsãÂVÇ$²3zìŽ,phÙ`cÇÅ!&pÞýOóh¿Æçb/k}7óYr _*ºnêú¶ ¤Ô”¶AU ~óâvï6£ñOŒ<¼âf"&g+mr)½¢:v<éžTôþ¬¸²ÝJéÙRú~ëluòÀçA–´Jc‹†ÉòñáÀ¤MïÂ×írc¿cí\µ­¢Ñ]5D®dÐÑ>àñ°â7 qcœ `´xÜG!rjˆ¿ _¶þIE6ã~ëy¸mוÛ$¶×PUºª×Qs¦|°JZ!„ É+¥Í‡qÈ!&{¢'²fÐDxÌvÄL¸Å×–ê;ÅâÛ+ÝÜV&\â˜ÓÈ"t®d®;O'#°ÐÞ‚]´Üä(i+Ãég+§££¦ó7)äï•»N·†ßt±ÖUPÇX%<±G+vY½txíkƒ‚H å{ÎÙˆèð’ñèŽ7çé®ùE:+PX¨žÇ>¬k›Ošg>šøÛY’I$ípÆH^]ªˆßMSÊi{Ö(½7úhŽqW“Ý­é—Úi.QK,¬«ô°EºwÍp|BÝ°öl;l6pI )⌭âñlòGÞ‹m¾÷»få/NêQŠZ‡8ÕÇS$[Q½ŸÁB;´Ä‘“ãFì;¤ã1Gó\]—µÌ3ßnÛ]ü,<©éÍKªj9ÞöÝ_;)s.4áÆM @, <]€xc¤)F}´âìËÍ‹vM»sò}S¯m:¢Žš´Êf®tŒ§Šd™ò:6í¹­k9Ùâ3Œñó._ÂýŸìGOcŽØ¹hÒš–¦Ž +I¦wvHè!‘ÔÓ23;ç:÷45³45ÛQ»Ò0¹MQVΘ¼qêÞìÓ‡²sáw»nåcMÝ®Œ·Á,®tµ2ÑÇ.âQNúˆA2DÉËvöì» %®’Jjų¦&cŒFÛ9TaÛÑköìz6þZ´¥Î®:hfŸð•·¶WSLØ{©ŽsL&RÝ€òZCA8w !v™ÅktÄÌq¶nÕNߢ×íû÷Ø¥å3OVQÑÕÇ3Ë+k]o„nŸ´j÷±Ì-Æ[²c~IÀg8)ŠÖùÑxêµýÎLZ÷èÛÎÞ÷=]qïZÿƒÿiµF­‰SµêIøÇöÊì#.·Ôš²²Ó«¬˜šÃ ŵÆRàv‡sÂÙ²s’NrG™Jœæcu7þmL{ÉÊ/ôÑÓ>çïWë&é{­º)fc!š:ÙefêI${i ÞÙgZ2Hw¼T1D^ýÌò˜zQMínš¢9Äù>v¤åJÑEhmE-SD•VÊ‹•+ßs my’@ÁѶ߃’ÑÅ4ž­øDO ^ÅŠÜfÝ×z×Z4݅Ϧ¬–wÏOEuOsÒÏ+c‚V’&vËNÌ~+‰ÏÄ)WTS3ô³iàåÍQbñÅõïÜ«é½<øÛ4ÒI·KÝÄÓÃ$Íe7’y m!‘Ÿ#Œààp8Ua™‰èÛÃâÎÓN+[§g%¦ÕêÛoQ=Ϥ}7uµÍc‹Œ[̆þ1;FìŸ%®$(®'”Ï\FÙîM6çÛ;ÞÅ*ZjçQg‚’d¼Ç,”cvñ¶Ø[´ý¢F##aø%ÀÄ.Æy},UÙ6óFbÙý6ÝŽE¥õ=¿XÛ™p·¼ÉŽ‘qk™“ŽØãi¤ÐGÀ®ÆÈñ~ÉÍÙŒíºlëŠ>_tmx§t2Ô¹µN’:w +Iög–'¾ŽÆ( øƒ‰‘ÀF*¿l^8óM»&ÓÂ_sÂÞšu®šâÙfsjª_E-‚SPúˆËƒálíí³aÅÀ€$ãŠbŒ¸ÅâÛ¾6˜vðÚþSòÅ¥©íôuΚRÊʧÑDÆÓÊe51‡mBèƒvÛ ØpÙpm1lúh™Ž¨sÞ=¯nÑÊ®œ½¾’8e”>ª®j2Hdí¨†I"•®ÆàÐHÚÀw•Ø›ÚÝ13™I4Ì_„Åûv9-ƒSÛµ;j_DòöÓTËI!-sFöÃIhq´23‘ž x¾û÷LǸ˜´Ûu¼.û먽÷ÿ£þÖ?ý#Tz{!9Øô{–ÿàÔ?ÚmÿJ¹VÉêv´ŸŽïÛ?éR ~\vv†þ +Iý¬þ0*z}½‹:=Žl«=DÿÓßÄ—þ)ý¤ó¿þÙÿJµT3®,­½ë}?ð:ZWÑÝáŸÅ%›2Ãv\q´2z| ÆiÅTÄìÇój^˜°ÓèÒS?ÍjL Óú¢KV³¶ÔQÔÔT[™f¥ŽA‰«†Šc+d‹¬vãgh7'lŒ©è똌Um×S3ÙM13ՕܪŸZѳWTGlÕ1ç+×÷ 5äÚξÝGVêz‹¾(%4Ñ™œÚÉàÆ=¡çd#òãT+V~ÜÑò‹fô¢s´i9Úrv6ª¶ÖKªud¬†G6M-,pcˆsê¼FœqwâŽSuqå'GßÙl´Ô˜™AD´ÒE+æ5,.¦doŒHáOpË6ŽNJí~¶OE¸ú×ånè½YˆŸf«ðõf;ßÛ•«UueïR¾(%x“H˜XZÇ8:Né”ì4Åø ìŽ8= ÏK/¯Gã/MÛÜþó9ʘ»Ý«u+éi%”Ç›© kfmÆY™x9á­>(㜒½Si™Ý¦‰ìÃuj"ñ¿E1Ûy›=Mw\íW¬.ú*§STXh`†I)¥Ó½•’¹ík$k^v€Áxã‡áœý¯EÊ&3{ß(áN“œÆÇ<åŠÕÜzÎÑz«¨ºRÐGAUFùí;fHå|±I^Øã•Û -7ÀFBõªm3{çko‰œ»òxѦ6e9ßtÄG¹ó91ÒÓiíK¤ƒ(*©be®î÷6¦C<‘º¢ª @–]–#ò\Yƒ–ñÙ%v˜´Ì~¢;öq²UMâûë™îÚå<‹Ü;ÙÒ–ª*ÚZ5]ÆåáÇ`šª‰C¤$ ÛÑâ¼ð$´Æ £ù4ÇÒGtCšMµOÓO|¨E'˜€ƒèËü‹ûY'úF¨FÔçcÐaâªÙ=Sàä%ÎAùK±Û4í¦ÁSÝqW5ÒÀèßCVÖ‡™ä  [°0AÚ.Ùü©EQLG±DvÅàìÓ4ÌÌûUO:¥Öö;Ý£“­9]CG9¯,®³½­ÛlŠå$ŒsqÖ=±¼“Á£BòªŒXcÚÑÓLò¦så1ÚôŠ°ÍSì×UQÎcßœ¯•m)QCO©èh饒&iZHv#sƒÌU2†à»g´dàƒ…=&x¸×£ñFŒ°ð§Iá¥Êö’»j»ÍÚ–Š¹óé'AÁ t¢­¯ÝmiÀcdŸ/™GMšús¢zí]S)h¦ÑGÜûé¦cKjú]gÊmº¢–š¢&G`¨Î¨‚H¶*`ÚfFµÇvxnN^ì’[=A¥Û՘ݼ~:ÓÉ<?•s ꈟÏÚjŠûâ&;]½©™é§8Ž¸š}ñ.µ‡NÝä¥×ËI+c¶Ûë-tvïÂÇ;æ«Ì\3qÒ"/DÏLÌSo´O¿S•Qš¯ö¨Œ»œ³S2z+½Þ))çÍ~Ž +rØds_,,¨t‘í5¤5à=¸kˆ.È'‚—ÖŒçIæñÕiƒA”høe?ÍeÈlVÚ¸õ„{ 6 TrÇŒ4€5ÇkŽàœ2±WË«í?‡çOÞktž*­%Um¾ÕÒÔJ;Ö¢lû¸$‘ñ²²B"ŸvÆ—¹„·d¹ à<Œ¯=©3ìUºÌ]öOKëLÛÚ¦{0[ºî=©­7ê=0ýGEEP&žÿ]Q9ÂQMsˆÑº´õÅ1GÕv>°£žnPt„ÌîŽ#tÛxi-fÕ( Ú= Éà3ŒžN³ö‰ûÕ$üŸ¹SáS­4õ¢±–6ÇA+K5eTÒ ‡Ö:jüw !À‡ çˆ^TÆZ>OÞk'çýª*8‹ª#‰í Œ6S&Ó¾ÚåîyØM ÞiŸ¥ª&ý4LZ#¯ïówKO]3鈪&ü¾2}ºK5Áš.†.æ˜=ºÈÌ[»vD|é#·„c;8vßFÏá4yF…ü+KI¶¾1þQȬª¸ùZ«´îqEBù¯±».ÝÂ&Ó†ÊÙRïâY\Ðůô—»ÌUáx4³{}5§î‘o|*eêñ{Ö¿àä?ÚmQ«btíz’~1ý²»ÊxåjùM¥už”ºV2~凜Ù$ÓÍ>Á’fÐ…pÚ<# E37é¢c·3îK(êª'º§ŠËõ½ÕúNáoŽiië¬rºJy¢ Í3[‡ X³€HÝ•ÊcÎ風þmI3hãÇÞjuM^{ßÖµ’±¶{MUŠ„;3Gµ5@|\jú*©rÓêzq<’~šžVÉO&ËH‰Çx™6[¬œ‚¡õ§ìÈö³ÖÁm¼-É-ÌÙNÿ•w~r5 eä÷OÇ ñM®‘®ÂÐB·¥ŒS1¾=ÊôM³ã>(ÒKN­³éJšØ¨§ueª¬X!håÒSf¥Þ´c&=ªˆÝ´<\0œàN󤈾Ý'«<=Zi¿:'šÝ©¦gu´qõ¦«r—rêÍYI[©môTÒHÖèêz(6H{ãuCDl=ØÇŠ8ñp½tþµ5ñª™ì´¼ôYM1_ù«•i*®}ÖT×*x¦îwévD$2E㶣„=­!ÃÅ qÆ0R¼çI;â›7órœ¢ŽUÿš9 ”“Ûù>°ÃL}¢Ÿ¼Â3ò§íU}ê]k¥mui­  ‘®†ð÷ÈÒÇÆ‘Yã8cÅ0âp8:ò¢>Ãᣘþs²UìÒqÒvD¸¦œ¦¯¨µé­ (꣸Zo ªª{ ‘°¶ +yæ—~&#vñ0sC\^KÈ `¯]ÞhúZsá1DÓnÙžNi#å}4åÛTU~Ǭ°Þ´½=ö® +9Þý/XÙ(ƒcy3Ç5\µol ¼nçlggŒ¿Á¿µ’¤j„mNv>ršêfŒ~ÙG_£œçŠqoAèAóî¶ÊkÝ ôUlÞAtm¬90µëJ³U=Em<€ÒÌh꟞âíÔ¡¿ŒÜ—qp ;Bh‰ÛÓkÇDÙ8®c³dô¹íÚx©éØ#Š&661¼ZÐÐ? zLÝçg¹´AÎO Ž¼dãDKœî’J—”pÚXŸ»7>—9 çd€æ•*'7úiŽ¸‹gß1Øqi·žÙ¿•û]¼ºˆ€€€€€€€€€ƒÞµÿ!þÓj[§kÔ“ñí•ØF\Vkˆ4­M ij+*ëŸ#`§¦ /p‰»r<™Æ5ŒÉs†I %/¶å~Íž÷mÓÆÝ¿êÍË$×[3ªj`¨ªªª¼\h¨éb‘ÌæS<ø®sÝÓvÞ÷ÑÄ’3ȪñOLÕLÎ[¯1Ô¦›LôDLG8‡Þ——KFêÛ¸¢®š¢ãUUC+#fú:ŠV—K¡Ï fÈiñ¶‹1ãm`‚˜¯kgzfcª&ÓµÌ6½ò´Äs‹ÃêÒò»m¯¶GU%[êd¬’Ü(C*LY2FAxŒl5¥åû{pqÈLWµ³½íÙ·nâiµï•­ß³f÷«',ö¸è©f4U»úŠù-}É»ný•Q±Ï1¼m쌆ä<8°‚×gdä"«ÚÙÞ&ßqÛàM6½ú-ß³ÅûðÉkm¬ÕºŽ­µ"¿šÅ d}ÐjºDc1[ãííìlxĦ+ÚÙÞöì½ù[3ÛôZý»9ÝÄ4×,µªÔO¯¦ª"’éIn¥£l,î$ÔѸÅâ»aÙys·Ž~Àg¬.SUâ7ÍUDv%U9õS<çê9TüµZ©-²ÕÏGY°\bµKK»c§eLÛ; Ã^Zæ¸=¤9®#ü‡ Wµ³Å3׿‚8vߢ"{%ùDå®álÒ—:»e¶ª…¾²’–x'lQ‰äŒ‡ŸÂ˜ÞÉü0±Ä‡8d 9Žö·MqLó‹Ç~NáµïìÌÇ)Ï»77½rÁId¨š)m•îm ¦5¯‰‘ÈÚCSÛdÙ“/ _º´í…m¦‘ŸÜÊWN(˜ßà¦pÌNét&5:ªÍj´é™-@Ë}+é«*§ÙÝ=±FY ¥s^L†Gl¹ÙF܃ãaF«Õ-êvâ´E£†Üú’Ù?r¿eæyð '¥¯6¾Oãš’F>Þ$î¶3h¥ŒmñáãÞâW´ü¯Ás¶£.éyô}Îý˜ªópmɵþ[Fž ª¤–œ¶Í}£Ïndª”nƒðxtð +¦“E5ÄÆý 4öå’Í:L3»K5v[kìÙâÔ÷«††{U#mÕUË(fìJh7 ݸíÆ÷`-n3œY®qÍS²ôUkí¼Í3nîÕziÁmTuZ"¬ûû>£“[•g&Z:ž®ßQ,¶y)gª¢‰îŠ¡ÌlrG#XXöã6ÃCÆÖ sÇ +:H½TÎÛE²ãM»¥:g*£|Þ;*¿ƒèÙ´=T4´³ÑY%¡ŽMGGY»–Ie©4ðÂè÷õ&Ye,w0;ÅfÈ#k+”Ó14ð$Ï Ó1³ÒåSxžªc•Q3ØìëMªãA_¬* 34UKéÝä  Ž<ÄO  ö–·<Ç™BÞ¤Æ+I9m´ÚÉ_Ö‰úZvìÊjrNLìTúkIÚè §’™±SE˜§ Þµå¡ÏÞìð2—d#¥ä•f®èÊ1âç* €€€€€€€€€ƒÞµÿ!þÓj[§kÔ“ñí•ØF]5¯`¹ÙõM’ÿMC=tÑVRTGJÖ¾f +Ó™#\Ý Ëðrí¬`õj¾úm–øª%)ŒQº«ÿ5˜÷§è¹7¼UÒ[î—{5cÙM|½TOGK+›S¸®?‚–3 ±—à†í5¯â 88\ˆ¶çêLMº'.ÝžôæoŠÞÕ3éŒ6{m·Ôè+–š+o.wš“Gž§u%)ÃÞf•åõ¡®‘øÉ-oƒÊ}Z£íº¯líëS?Ä«Ö‰û];xS1÷ÏråÉÕÒï WÛ¦­ì}þ²å%º:¶ÓTS +f;ðR0™[°Ù_—ñ# +èðÌLî®ö蚪Åž´¦¼WˆúK_§ Zz¶¹NžÐõ”FÅ=5šJùþjÙ"t²M+!4’Äɪ]$’‘#¼Pæ‡ܵ¸È*Æ)‹ôS¤Ù³ÖÙ~÷†“;ÛÚ£¯)‹ünz÷m'¨(.3Þ"·Í8£Õ¸ˆc ÞMLú&Ó¹ð‚@{š\HnAvÉŠ…¬S;§K>´Í¥)ŒSWÑÛ®›^¢‡[>[ý m–ž¾÷E4ÑS–²¶[{hÙ›¬;-~ÛZÖ¸H´Ðv”"&"/{c®fÜc.ËízLßfÜ4Ä_„Íûm±ëiy¦mlPÙjé"~ª¶ÜalÇxãJ#Œ>G<½ä¹¥„Êâæ%vŠf&›ôW\ÏTÓ6øÞs{ñ¢žqT]ÊùIÑ×Û¥.´4´RÌê™íSµ˜Ìí¥l.”G’pØpÁ#.à¹LM1Õ¥ÅÙêçÜìçÛ£˜íõ¼Þ¶¿¤¿]¯Ümk•%ÒXém3„q¹¤ø®lt›vKÁkØã°Fö”­19{Qö™§,úíxß±ËųÙië‰Ï»dîÚî[ÝŠ;žµ³ÕÏK<¢Žš­ñÊ6M4R¼Æ̸|[´"#€i”¯Jc9Ÿ¥Ë¶¬íÇ'dGû#Âû8»%{ïþ Gý¬úF¨ôöBs±è) ÷-ÿÁ¨´Ûþ•r­“Ôì=i?߶Ò¤ü.¸ ìí ü“ûYü`Tôû{t{ÙVzˆ?ÿ×ßÄ—þ)ý¤ó¿þÙÿJµTžÁÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚_§í÷:ê:é➉Ò:äƒ+7o ƒ–ðãŸÉÅs¦ü&;&ÓîJù[þ9¾Âê"}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÐßÄ—þ)ý¤ó¿þÙÿJµTžÁÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÑßÄ—þ)ý¤ó¿þÙÿJµTžÁÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÒßÄ—þ)ý¤ë}VÑüúOùÖž(TÃ/ßUÕ?ØS9†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ ½ù(j MÝ»"GœcÈCTqEù%lž‡7ÕuOö,PŽ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2÷-Ô5ÕDçFàÁ$‚£UQd©ŒÞ«íõEÇðOé>B¥Ššeùæú®©þ˜¡Ì2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSe§¹ÝÛ²$yÆ<„5G_²Ã6z\ßUÕ?ØT±B8dæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ËÚ¡¡©eLDÆàÚI ù×*ª-ØìS/]öú¢çÓúOù×qA4ËóÍõ]Sý…1C˜dæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0ÉÍõ]Sý…1A†NoªêŸì)Š 2s}WTÿaLPa“›êº§û +bƒ œßUÕ?ØSdæú®©þ˜ Ã'7ÕuOöÅ9¾«ª°¦(0˱ôd2AK {KNÞxŒy©¦›ËßGs]ê ÿÓßĉ?þÑAI+öÝã;¤ùOo³_ìž“½¥7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤}¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚP7²zNö” ìž“½¥{'¤ïi@ÞÉé;ÚPwÿ$®.¶ÌI'ð§§ûD,ß­[c©oC±Úª’À€€ƒÿÔßĉ?þÑAÉøîý³þ•}1ÒÜ¡ò‰rÒZ¿IÙ飉ÐÞj§‚w<æ¶8¶ÁasÓx/~¼SÑ4Õ<­æõÁêM]1U1ÎïR‹õHrup¸ÁoŽè7ÓÔ¾ÑJ¿cË nynÃ\\h$m#ÊíH®ÖŸ•³ãz5Q4Þý\&Ëú¡$¿ò¥rÓŒSÛmp9óK<3¶W½ŒsžvÈÅ6Oþ¸8°•ç¢ÓcÅ3”Sõ3ú›^•è°Ú:gâßUÙºC—=®RËe~ñÔð§5ñKt9–1#[¼gÆfGµzÆ’&&wmyÍ¿cãQþ©>N®¹îpÝ©iÛNéeI²ÎévÌ`œdŸÆ,év5´í¿LGlÅÌÝ3Ë'¥?ê¥äÆš*‰vÇs¼2F÷<ûmdI³±µºÇæ6:8ñ +:êwø÷îKU._«9hÑÚ%´†¾´æ²Q`ŠYÞø@˳\D`—:ô‘DÚw_±hš¢ðë.Q¿T¥«HÜ´«(\*¨ïRÉ4pÍ&)ËËá,3ËÆ 8¸7‰hP%«ŠwÓ3åØ”Qzf­Óææ–®V¨i§ª¼×ÒGGg¬mFÉZèšckƒ&Ú<¤»†ëhÒ»Hˆ™žŠ¦2ëÙÖäÑyˆŽšb{¼õ.Ú"åb¸^¢®=Ën-{qJÉ!ÚÆÎÜOhxÈ ãqÊ–²-~‹ÛµÌ{tÚýFrÇ£ùB¹T[­ÂzŠxÄÎaŽFf7°½­fxm7!vš¢«Û£k•S4íé}=uÊNäÚ%¼T˜»¡æ8XÈß,’8 Èãkœì$ãt•Ê´‘N×i¢jØøü¹èku¢Ýw–äÎã¹Hè©¥k^àçµ®s˜@MpÙ µÀ¯)5Ä[=±3bŠ&oÂb'®\‹Aò§¹M¡’¶ËS¿Ž)]™cã{$n kØð×4àƒÄt)S8¢ñ²\˜´Û¥Çõ·.'“»ƒh.÷ û •ílrH"Çe¯•Ìk„m' ¿éèP,DÚûº³â”Q3ëîu­ûõHÛ4^½ºZ/SE ¶šÝGYÑÇ$²=Ó“´Nïk1†­¬Tu±¢¬°ÕV¼Ý)ÑÌá·LL÷ÙØ5¤¶«UÚ(hjé$¤¸[*kØÝ™LÒˆÀ,|ov#ÁñÃÈyò•:ªÃ3©¿Ç"/;ê·Ç ѪÔíhÔz¢hée¸Ë,,Žž9_¶öHöâ8Úó†·.éÂäib"›íª"|Òš&õD|Ù˜zš+õHÙë,×KÍö¦ +z(orZéf‰-{xœþ’ .w1Ä –ôÄÕ”Õ5ueõ«GœÄtDO;{Üâãú ´ªÛEp–½ÛªÖË$Lù.-’CX^ØÚG¸§V–)Ûºý“Ó;‘Š&yÛµï_ùqÑf|Õw±rõŽŠ9%FÀ ,Øk‰Ö—+}ºæ$ž¸8Ó‡E+!h$°=Í Ûd³;JT×Í£uû6ýû•S4ç;íÛ±×ܪþª &˜ýâ°ÔÃUpŽçKC3¦0$”2PÙk#ÎŽ< áyÓ¥Šª¦#¦«OÔN­Ó3ÑMÝ¥©ùvкBõ-¦¾ã»žÆɈŠWÇ ¥ýlM+ZYvFˆéã…(ÒD͸ۅ÷]¢b/Âý[Xòÿ¡4 ¦ßu¯0ÔRDz±°Ë!k%µþ#\6p2çt7†O¹:Zb÷“iëv4s6㇠Õߪ.ƒOk­=c€oèî”ïó²¤8{A§1 —5Ùü!ã°8»e)®úI£u?ͯán’iõ"¨ßÝoô;W•vÞLô½eÛv%–=ˆ ‹8O3Äq0Ÿ1s†} ºJ°Æ[fb#®J)Å9숙ž¨tÝÏ^òp×U:ZÍÍ;Ú+]-l®ªŽ|I,¹k˜ÂÇø­Ú) àtåFª¦õaµ©¶Ý³x»±joZý–—‹ꇫ»ØléèÙOMUr}žå%Χ©Ú11Ñ» ÷ò3²àzGѥņceq6áWDwL9UqGM3±ñ0¡íú²Ïv»WZiªY%]ïºao[´Í¬€½§íOsÞÿ]ÏÚè÷¦4åɼ™AqL$ïìÎ[¹~ÖÇvÂŒìãö]òásAÔpœÿ›;¥›ëxÆ_Í]§­4móVj^V(¨bI_j¡ŠÄ9­•Í…ı®< 8Ù8< â¼&‰«G¤‹}™mñî{S\S]>ÄÇ9˜|«EL¼¢ê 5e¶ßYO“K×QÖ:¢šH14°5Œ§nÛFð‡5ÎñrÑÓž+ßKëÕ¤®6NŽÑÆo3³ƒÇG"ŠglW~¨µ»ß>ñ¦j£ýLvZè¤âÚé!l.ÛÏuµÏ.`Yé.Èü¥zé#äp«FóÑÏËêÒx¹>¹²VMª9L‘”²8M¦©"‰Â'÷¤Ë@ñˆá–·'£‡BðÓEéÒñª<º9ÏGÂ'ÅÇ/•×š4ͺxn”réˆãÛi6ꦩ,k{óì9ÐFx7ÄÉâ\OUUGÒÅ­víѸÑZ)¦~šo~ˆá9`’¯NèžJ«j(«¢å;+Úi$'bFdÆ]³“€à0|…zE^½Ñ«švtáˆ÷9kÓ\tã‰ÛÑŠeìëMz¼Qëyé觕°jÛ}ÉÑ67mOOc2ÛÂ`qÃs’:Bó¢0Z©‹Å:j¦z¶]9œWˆŸ•¢ˆŽ½ÏÏ)”õœ¢Rò“©­”U]Ã]l·ÑÁ½§–)*%†@éØœÐònÖ8ñÇ¡4ͪŸkIE£„Z&{]Š³¦=š*¿mæ!ßÖkeL<´ÑN {an”Š-½‚'g‰µŒûœyØùuÏÚ|eV~E?r÷?¯,I¤¹CÒzªª +‰mÔQ×ÓÎêx_;¡|ìní呇;Ù-ÈOJñ¾ &)Ù4LoÎ÷ïzÛ±TOe­Üž¬šFï.¨ž‚xÙU­*îL‰ñ;j*yƒÌn‘¸;¼þ6Œdgsë5EZ8žŠ4—‰˜ƒMV(®Ý5QÛl¥Eò oª¢ÔÚùóBøÛ-÷n2ö‡·pߤ€3å^ŸYâÚ8û^“ÆÓMëûëYwðo­õ¤—;-MÎ;å%pÅ<“ETcŒÆêg½pÆ9;xâ¼bmŠ™‹Ì×Ñ1h¼³Ã7´E3=17 +›h×ÒCot ~¥†61…Ìk÷OÌ»qiÃpÞ<ÒÇ©¥ûU=¾«º9õ´|"|_'’Ë5ÆšùÉˤ¦™‚#]…Ѽ<†á$x®>FœæV4ß.¯¶©ð…z>E?nO½Ât]ÃEYy4ÔUÔUn£¶OtŽ©‘SÉ$š‡¼G)‰­/Ç“ y¼ê¶ÔªŠ§f«Ëçµb¿Z*ˆÛ¬ÅÙ±óëlõ·Í%Rák¨‰• AR ’ÁÂ<§3ƒãÅ®h(¶®&6W^[¶¥UWÇžÝg¿c¹yp¶ÔعOçšš›­¾¢Èú8æ´@&s¥d¥Î¦xÝM²$i'e ŸÙp)^SUïëS·M¯Bœâ™LÞý^¾†Ò5Tra (*©á¥¶Ü¶™S‰_‘¡Íd²5­` ót‚¬SÒG »Þs7¢xé/ݵÚ©ZßSlÒ‘ÔBø\o77†ÈÂòê‚AÀŽ ô£õš-£§«ß&žo]]~çC\tâÿ¦9\±R±Ò\$º÷K#oKãŠV5¾}¦4´)àªM3VŠÑÓ¥™˜ê®*ðZŤ‰èD}ÖcÅݺ;” N¯®­¯‚Ç$PØÄsܪà}<›A„º‘­‘­.cKœàvAÀ*Þš¸ª4•ZÑ1·¦rŸm3E=7Ù»8ñ|OÔï¬ ÑCÙ+à¨ßÞ"Ÿ¹ÜØó/™¢G6rÖ|ËÓG–'lhâyFδ+ÏQ³Ç9}ÕÊ›E÷Fj#M=Eªç$•bž'LøÛ,“a€¸†»À8Êñ«ÕÒSTìµQ¿9zS©˜é½3Ùš/¶ίÒ²º†Šº]Ks݈ʃLÀÂéc‰Í;Nnw¸wÄ^4Ó1ÌÞ"4•LÛl^ùö]íx™ª7èâ#tÏÄ?§(új½ ÊòœÝ«Uºí»Fê³ ¬àÈD0¹¡€ì¸aÞN…ÙŒ4õéiœöÍ­íØŒMæÛ´uv_£ÞçÔw.Wuæ¾ËCUOZF[Q50>Ÿnª\–BÝ°6¶}&å½8!KKLé5“:"#+^bo=Ù#DÅ:¸ž‰™ž©‹}W©ÈÕ¥·[¥‰äߪª-VZ˜e5ñ¶ +z¾¦cLºRâ<]—; ’r•zئ/?]Ì^xôZÐäz¶‰´z÷´x¾G'ú~ãM¥9"c¨æc©ï˜ž aÂoAŒ´]Œð^ôǯ£ûf®x!þMnGÞœBæ+¬ú:]Qj®7(5k+\æÒÈ茬6q0ia¤7ÈòðÊñÐOØqé«<¸ÊzXùsíS–|#É÷¿T EòÿQ­í²ÓܘöTÁ-%¾Œˆ*¡fÃUS3#&w7—ðÀ¤Žë½QœMãIkeñ™zÓhžº6ôÞÓ—v=Æ‚¦ç«5ýdT³ê´•!s¡xÛ&’ÆäqwFX<`x•íõ¢™Á¦ã\[’õ´\)ŸË´:«J×rMp«¥ªAjž’WG²¥šÚÆÈÖ‚Y“Ò\9è*Ý_cuèâ˜Ý{Ä«Ä_GÕ\Ïe¥Ü_ª¶¦mUGõšKí®iÇ“v' ÉüÄã¤ùz9èŠó퉈ïzQ5ÇLÑ—8—¾kŠ.Lyq½].Tõ§žÍGN¦¤špù#œX mpr:Tb¼^ÜðÛ-ÐUN8§îWí—S×éK͛蠯¦}5ußQÁWýr3S^Ù#k‡‘ဒ:Bå4`3·_¾eÚªÅ5ÌlÃ6幬wËMv§¼ÐÓÐÉ ]/s÷EK  eFÛ2͉GvŸÅ<šj‰½²µ]ûÞµ÷9Ò›‚ + ’?æÙ7ö¸ÿ¦…™õ«lu-èv;YRXÿÖßĉ?þÑAHFÛ¿lÿ¥_@Ì~CñåAçx|ÿ‘¿ÊƒÉ»¤þt6øç?¾Ž=Â<¿HAÎ:—¡á';HG‚Ò8‚P®ŒQiø¶iSV¼>­ºm¤†œJ÷ˆ˜Øäv\í\F2ãŽ'ÊW¬ÍÞqqûî¶êK•¶¾³mï¶Êùàf×à÷®fÀ‘Íý“˜ Ø?±$ž•ç‡;ôÄLGnÔñemóÎW·ùTœxÈ@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@È@ÈAArF•dßÚãþšgÖ­±Ô·¡ØíuI`@@Aÿ×ßÄ—þ)ý¤ éÛ“øzOô)‹NÝ|åRïöõ0ü&v%ºù˘ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91=ǘ…$r!ÚsÞÓø&t1äüª=;gœ¥|žžý½L? ŠVëç(â7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄö¨]õ1±ÐC‡8ø&tÜ\«(éç)DÝëºf¹‡?Цv.Û¯œ¹wç~Þ¦„ÎÄ·_9s¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&'¶çD)Xñ9/pýi y?*å³Û<Ò¾OS~Þ¦„ÎÅÛuó”qöõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb{Žiãc ‡pðLè'ö’c-³Î]‰ÌÀâ70ôŸèS<ÿ´–ëç$ÏÅŸûz˜~;Ý|åÌFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜ûz˜~;Ý|äÄoÛÔÃð™Ø–ëç&#~Þ¦„ÎÄ·_91öõ0ü&v%ºùɈ߷©‡á3±-×ÎLFý½L? ‰n¾rb7íêaøLìKuó“¿oSÂgb[¯œ˜•¢ž$¥†±¾?C:*šx´½ônd«½DÿÐßÄ—þ)ý¤ó¿þÙÿJµT}«yJ³h›Åš×\dl·yŸONæ³,cC¿ìø¡Ù iè. yTb¨Å‡¦bf;=éaõqtDÄs}úMIp½VÚcßÑGO$™.*Ë6O”ø‡>n ´Î+Îé·m¢|%ÊÜbýóç Úg#¶º<äyÇN:|¾oÛüˆü¼8(ã£/ðB/ídŸé¡SŸ…4]+A˽‚¾²Ë_UGrSÜ$§-¤šbâÖµ’mmaî±½Í yàÄ(ÓV+t_eúr¿†p•TÚü6Û£;}ûºz<½8ò©"ñ´1œŒʃôAŠ8ð€€€€€€€€€€€€€€ƒÞµÿ!þÓj[§kÔ“ñí•ØF\_YjÊ d«»Öí˜icÞ8Fݧ»ˆ kÃiÎq hò’k¯_«g“¢œSoïsN_©5Mª–çHI†ª&LÂჲñœ8yè#ÈA ÒbÏ8ÍöGŽ?´¸èߣíq@Gûÿ‚Qÿkþ‘ª==œìz*Hº^ÉËΖÔ6»US:cG@ù£…˜•®…ûòä9¼pæT1etM­Û6OsOL_º.îV<=­#ö@çâ2½&-“Î3~²<뎃úDƒÇ÷ÀðéàŽ¸]ÿ\ÐéûÕºÎ觞ªá¼1²GÎòY œÐÖ7i£ÊâO•È›Í¸_²övÙ_Ÿ­q®(4 U5QÍ1ž¢*Xa§h|’K)ÃZÐKG’IÄ®LÚb7ù_ÜìS{Îï¾sݶ֒0\Ù8Ïþ£ ã‚œÂ.º½r§b±SÞf”Èáft-© nNfkÝŽ>7ŒùŽG‘B*‰û¶ܼҚm÷[ögäìqãt)Ê ŒäaqÐqÎ<(à€€€€ƒÜ·ÿ¡þÓoúUʶOS°õ¤üw~ÙÿJK®uŸ*-u³[®O{$¼T:–Á¹`‘­ÚÄŽÏŠÖž ¸Ã)yÃÓ13ÉÙ‹F.ˆ˜Žo»A«(®7úë$aýÑE <òå¸nÍFÞÆÉÏø7dc‡¦q_„Ûº'ÞLZÜbýör\‚3‘:ë ƒå8ýß7íþDÓåà€Ž?/{ckœâh%ÄžŒ œù—&mšQÉÄt&¶£å +ÒË¥3ÇO+ºtì 2048ì;¥»Xq- ÄNø¹TZf7MœÀN ®ädt 㺣T[ô… kk\DN–`Ú;SÈØ™û›N>A“äQ™µ¸ÌGl¥Þü"g²›f©¢»]î6¸¶·Ö÷@Ùri3ǼfÁÏçò®Ó8¯ÂmÛhŸ{“í‹÷Ì{œ“£zx× :8 ìí ü“ûYü`Tôû{t{ÙVzˆ?ÿÑßÄ—þ)ý¤ó¿þÙÿJµT“Ÿ,zRqª,V©\YÝWpÇŽ9Ž@|ì{ZáûKÂi™«-±DÌO®‰‡­â)‹ìÖDOTÑ\K¦éµœ®=O5Ù• žh¬vê¨)dlrš±4°> ·pc$xÃœqø'ät…:&+Œ£åibѳìºrži‰êBbhœçäèê¼ðÅ9ò˜·[ÓÔöú«=‹^ÛöG=Œ¶–‚yÈ Ò3o!›28_°3ƒÓ’yL^Ñø#ï3nôêÊgí©žST>î±ä÷OÑ\µÕþÛ¹n•l~*,Û×›M õU´ -;âøØê¨óã +vÈecq€é¤оšŸ¥‰Š~Ó|ç²}Xà†›£ŒÆ.»e±œñUzËI§èûš•ò>=ä²fYL®Ú‘åîN$àC[ÐцŽzSˆÑgSy™ß7}µÔDõ¯ø9ö›TjØ;^¤ŸŒl®Â2è>YîÕ¸ië=îž·»¦‚7ÄÇ(@“;R¹Œ|è‡Ç d¨ÞqEº"jŸi¼g¹;F¿M¢ÅµLî$OTÞܧÅÚ\¶nn4ºšéo¦ÞTÚù¾)+ªª ;’F¶¶:ØÝ­§‡=Î-kÜâ<`0½gå^?Qm~±êú¯:c(‰ýC½º6L߯ê>ç+ÚrŠéáã8y©¢£·¾–@÷´ÓÈ ÛÞE‚6$Èpâ@£!xÕêÅSÓ­µøz™w§£Îi‰Ù«½¸úþOã­à<šÕj–éört½=Ik^ü»¢HÝ9$“¼Ø'jOÆ8ÉÉ +ZL±DlÅ£Ñ31=YEðÌíÃ_lÄDÇ{°¹.ÒÕºOY>3ºÝÖ¦=Ôt5SÎe-˜êœ$i ¹…ù.“ œã+Þœ¦¨ãNQ²>W»žœS=yïÙáï}O§-º÷”cj½Ä'£§²š˜"{œ¼’¥ÑÍ.|lk]ÓÖÐÁ9^6¾+ôE6á‹>ÇsÖöŠmÓ5vÛ £¾]Eɽ²—Rê- q¸ÀÊŠžf¹lÔJÐéÚyâe<…ljvÆ ]Óãå^Ôg7éŽg®mwS•º#I\GT]Û¿éë]û½[Kø¿QF7¬ñ^´Þ>G`dypmëÓ÷/¼U.ÞÔÕ÷½C¨õ½-<÷*›Õ¶¤ ¤uª ‰šöO.¥£‰ƒÅ„ZD„åîÙw¡LÞi˜é®séœê‰¿ ¹BUlª7QtFQ1Û›ÕåKZi(yQž +Xâ‘ÒÐÆd¡¯Ä±@ç¡Äm8í߸¨hé‹[ð4GeèózW9þ ™î­îr—侯UǧÜ€éºj‚ØÜàÝé«t.˜ôáû²v¤1ÆÑÉN½•GF= ª™‰êºg†zp×Î"&:ß?Rišý%mÕ0ˆè-l—M—š;uTó8¸I²Ê³·A,ÛsÈçPÒÆUGÓèòŽZÝþä´yÌO +󞜽ÞõUbäîÁb†ÚÚVÉr½Ó°6wì²Å±#æˉ˜v¼láÞ0ƪ¢"rè¼Dp™V¦«Ç]¦gªˆ¸=Ëðjí6ÿ¥\«dõ;ZOÇwíŸô©¦n[t½>µÕzfÕ1ÙmLWvùXþæaŽAûóð|áxÍ8ªËn ˜ëŠ¨˜{DÚœöc‹õM5DºRÝ® Ô5¶kÇt6£¸¬–ºÈé#”ÕŠ™ |M{¸1²»yÆ"“ ç Eq3íi)´qÃO˜˜’bi˜úZ*Ï…æÓÊbc‹Ý»[êìVîPíÏ µ‘Ãh{ih'{Ù¥p!Ä7fW öÁâx®Ñëe?¨´Ç<7ˆr¼³üWv-®A­ù3ÓtUÚÖiv"¤±ÃWbI"¨1Ôæ¡Úá1Ý32ã9É9ñ¯(®cæÕM¸eLå¹ëFsDo‰¿Zc7©©í÷}yu­†jJ¸©tíºfË_W4œÏ¯–¦=ÔoñØ ¤àæ샂W¶—ms²ÕZ'¦"׎ûõìyhæÑDm¼lß¼d×Kµ¿“WVÇ8©®ŠÌelÑä‰%m.Б¹áÎC <@SúÕ8b©Œ²”~³ÄLÄNøñt•«IY4õ~•†Ù–+Íž·»öœéTm¥ŽfÏ6Ñ!îÞ»ÃÇÇ-Î0tÔDMtôE6èʨˆžùësE\ÌSTíÇõÄÞ;¥úš­4VžMl ¥‘ )#‘á Ú{º\qÒNJœl´ÓáW¶~ÕWŒ§a¤íµ¶Áq{ÝSkIi0‘áýÏ%cã’AáÚHs’zpG–†ˆœéŠïÆØç>BzZ¦&¾müÓÍÉ.ÖÊ[Q­ÓðƒOjŸWQRËnsXØ&¤ŠgD8ø±Ë.šlÙ.hã˜ôÑ3Ì®pâ˜ö(ïªÓ<Ÿ\é«\mÔÖ!KíÔW«éàsv£‚Z©"îˆã;!ðpg€PµððÓZ:­nrôÙ~:)™ë‹ÄKèkýf©­å"®Ja¾·ÐÑ÷#š\ÞçttEítA¤l<Œ8qÀ8à¡Tᦪ£li6öP•1z©ŽŒ;jzÒ†õ®n:‰ÕÔGAj·º*ºê¹éßF%¥3:¦!oã½Ë&C‰`gG=-ï\ìµv‰Ýh¦cǵ Ì·¦óó˜ŸÇnèÝ3K×Õ× “»ª¢ŽßftNÚ~èJøf/™Œà6Ýäs†CN0W´Eª®~žÝQ‚œž3jcé&›ÊRp@@@@AÙÚø)'ö³øÀ©éöö,èö9²¬õÿÒßÄ—þ)ý¤ó¿þÙÿJµTŸ*¦ËCY_O_,AÕÍ‘°Ès– @ÉãŒç̹lïÂÝ—¿¸™ÊÜoÛœ{ÜZ¯’Ý%^n¦kl/çwFêìƒøwDÎãÁÍl¹¸ €sž+˜bÖè½ûw»Šo~ìÜùÔ\Œè«t3à ²&¶¥‘2oC½ɽŒÈK‰{šþ!î˼™ÇØ‹s‰í„ÍùLvK–Vi=|µÒÍLǾá iêIÏáb`pkÇ ¸pÁâRbùoÌ¿vÇÂÔ\–i=[-4·+tSº•Š2í¡ø6DnÙp` ‡í7DVÖè½»oç$ÍïÆ×ì·”<Ü4=†íM]MUG±\$©kÁ"Gµ­k\xä87¸#dƒÅFi‰‹q¿n÷b©‰¿ v|KåÅÉv”‚Á5…¶øû‚wË/;n$;mÏ.//È<»h0FM11mÙÇ^×b©‰¾ÿ¾} ¬ §­§îF˜ëâd —ìqǺk\I$áž.s“å$¤Óxß7ž¼¼¡ÈªÖ˜è‹GV~o¨9+ÒZª¦š¢ãmŠy)˜Ø£.Ú#-cÀp0Ùšev×›ô—´[¡ËiìôT•³ÖÇ[=Ccd¯Ë„AÁ€ù^ +·ÖˆõfwGfØ{hgÖŽ3m¢Ntå¬ÿZTßê+Ú_•=sâ«£ÙPäËÉ1Ñ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÕßÄ—þ)ý¤ó¿þÙÿJµTŸQÙÆ¡´VÛËÌbªžjrð2[½ÌÚÇ ã9Ç ùמ’Œq1½**Ã1;¥òߧ«`³ÐÐQ×:Ô½Ê×J#kŒ‘Á²kŽ•­Ù$d·9!{W8¦üo1Ï$)‹E¸Z'Ž÷.Quá}‚k$ÿHÕÚœì|å4õ¯ø9ö›TjØ;^¤ŸŒl®Â2ü.¸ ÷ßüûXÿôQéì„çcÐR@@@@@@@@@@@@@@@@@@@Aî[ÿƒPÿi·ý*å['©ØzÒ~;¿lÿ¥H%ø]p@@@@@@@@@@@@@@@@@@AÙÚø)'ö³øÀ©éöö,èö9²¬õÿÖßÄ—þ)ý¤ó¿þÙÿJµTŸ Pj{F“¦7:¸©bsƒé]§†´q.qÇCA8\š¬ìEßÞÉ}·jJ6VÛê#©‚LìɃšppFG”A ð#+¨¾ª£/ðB/ídŸé¡Sœ¦€€€€€€€€€€€€€€€€€€€ƒÞµÿ!þÓj[§kÔ“ñí•ØF_…×ûÿ‚Qÿkþ‘ª==œìz +H=Ëðjí6ÿ¥\«dõ;ZOÇwíŸô©¿ ®;;C$þÖ=>ÞÅÇ6Už¢ÿ×ßÄ—þ)ý¤ó¿þÙÿJµTm¯ê4îš–‹Q]‹Ì”XéY/så©hfÌQ2Là6cÇ‚î’!3†oÓ1hŽ¹‰÷rN#[¢&óÙx÷ó|ÞGôÅÎÅCq¬¸Â)§ºÜ'¸šVáN% kc%¾)~!o‹¼s€Î2gLaˆ×êÎoháÕ8¦gª9E®í¤D@@@@@@@@@@@@@@@@AôeþEý¬“ý#T#js±ó”Ð{Ö¿àä?ÚmQ«btíz’~1ý²»Ëðºà€€€€€€€€€€€€€€€€€€ƒßðJ?ícÿÒ5G§²AI¹oþ Cý¦ßô«•lž§aëIøîý³þ• —áuÁghoटÚÏ㧧Ûس£ØæʳÔ@@AÿÐßÄ—þ)ý¤ó¿þÙÿJµTs­¹;n²¯·W¶ãUE5¸Ìè]L pÚ™ŽqlÑJ6ƒA pÁhs¸ñQÃï;&;&b}ÉbÊÜby_ÍíÁ£*ù½´µ7šú‡6¦*3Œ1Ɉܺ;¨˜Ó±‡‚ܹ¤¡ÃÝÂo×ÖŒÎÞ1oŽ.vJà€€€€€€€€€€€€€€€ƒèËü‹ûY'úF¨FÔçcç)  ÷­ÁÈ´Ú£VÄéÚõ$ücûev—áuÁ¾ÿà”ÚÇÿ¤jOd';‚’rßü‡ûM¿éW*Ù=NÃÖ“ñÝûgý*A/Âë‚ÎÐßÁI?µŸÆOO·±gG±Í•g¨€€ƒÿÑßÄ—þ)ý¤ó¿þÙÿJµTœOUkkF‹d¾GíÔÈb‚(b’iexnÑ Ž6¹îÃAsˆ‰!rfÙ;w»¦uE³XP6¶Ý6ö"ç0å®cšö—±ìpcÚx9®ƒä]ã½Ïsï#‚£/ðB/ídŸé¡Sœ¦€€€€€€€€€€€€€€€€€€€ƒÞµÿ!þÓj[§kÔ“ñí•ØF_…×ûÿ‚Qÿkþ‘ª==œìz +H=Ëðjí6ÿ¥\«dõ;ZOÇwíŸô©¿ ®;;C$þÖ=>ÞÅÇ6Už¢ÿÒßÄ—þ)ý¤ó¿þÙÿJµTœ>úÚn4ì…ôÌ»î* §a‘Ígˆ&!­sYø‚@Óø¼TzrÛnëø].Œö_¾Óîuß!FX)ï”u€:ãOw©îùcýjiådro"oK»s»9,- ¹Ç‰ízc†(튦g¾JãÖž8g²Ùx;ÍuÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÓßÄ—þ)ý¤ó¿þÙÿJµTœKTè›V°4Ϭl–•î’  –HeÎn˶$Œ‡áÁÍâבÀ(áÎÿv*èz\›iûu­–Øa{!mSkII¼|íI¼’M­¹ p‡²FÏ+ZßK³¿ÍɛߎߎÇ<¢¹VZi¨í\í훺+#Š¢ž=Ж˜"výÍ2ÿÂ?; iàJó™›ÞÙD^3éú›zí¹8µ¸Î[:>®Î«¸÷êoÔÉ à’ãMÜ»jãašhœ$t•’à4µØl˜ÃO8d]Ñ|Š~ÓLw;¥ùU}ª|TR›È@@@@@@@@@@@@@@@@AôeþEý¬“ý#T#js±ó”Ð{Ö¿àä?ÚmQ«btíz’~1ý²»Ëðºà€€€€€€€€€€€€€€€€€€ƒßðJ?ícÿÒ5G§²AI¹oþ Cý¦ßô«•lž§aëIøîý³þ• —áuÁghoटÚÏ㧧Ûس£ØæʳÔ@@AÿÖßÄ—þ)ý¤ó¿þÙÿJµTž:8„½›@¤Ž¹!ÜG(‘ì –È¼ 8<—ƒÓµÅ-kpÙÀ™½øí}Δp@@@@@@@@@@@@@@@@AôeþEý¬“ý#T#js±ó”Ð{Ö¿àä?ÚmQ«btíz’~1ý²»Ëðºà€€€€€€€€€€€€€€€€€€ƒßðJ?ícÿÒ5G§²AI¹oþ Cý¦ßô«•lž§aëIøîý³þ• —áuÁghoटÚÏ㧧Ûس£ØæʳÔ@@Aÿ×ßÄ—þ)ý¤ó¿þÙÿJµTqÊ°ºi©mÔ¶ÊZz‰ëe•¹ªÐE!ˆÈ÷½íd‡È8t¸q ™ÞÙl™Ï…£ÞîVÏ|G;ù9Fš©»ÕжK¤4ÑNI;4“>höbCÞÈÉÈéñqæ%IÞ\F_à„_ÚÉ?Ò5B6§;9M½kþCý¦Õ¶'Nש'ãÛ+°Œ¿ ®=÷ÿ£þÖ?ý#Tz{!9Øô{–ÿàÔ?ÚmÿJ¹VÉêv´ŸŽïÛ?éR ~\vv†þ +Iý¬þ0*z}½‹:=Žl«=DÿÐßÄ—þ)ý¤ó¿þÙÿJµT/Ê„Ú.;Å”jˆ›º&¤A5Kƒi!csÛD0ºFçt Ik¿e…ç–,öá»6Åû}×zEðå¾6mÙ=Þû8×#w«]‚ßx™³64—·Ájq'tY(°tþ Ó—ˆ€ñzv|\)Qòb'¦jˆßkÍ»¯Ø{fwDLõÛ?r<‘xGF_à„_ÚÉ?Ò5B6§;9M½kþCý¦Õ¶'Nש'ãÛ+°Œ¿ ®=÷ÿ£þÖ?ý#Tz{!9Øô{–ÿàÔ?ÚmÿJ¹VÉêv´ŸŽïÛ?éR ~\vv†þ +Iý¬þ0*z}½‹:=Žl«=DÿÑßÄ—þ)ý¤ó¿þÙÿJµTž½U$ѧ’±Ý,‘¡í?¶(^é`{…ÁkKFÏF01äÇG‘tF_à„_ÚÉ?Ò5B6§;9M½kþCý¦Õ¶'Nש'ãÛ+°Œ¿ ®=÷ÿ£þÖ?ý#Tz{!9Øô{–ÿàÔ?ÚmÿJ¹VÉêv´ŸŽïÛ?éR ~\vv†þ +Iý¬þ0*z}½‹:=Žl«=DÿÒßÄ—þ)ý¤ó¿þÙÿJµT_ʵ®°×ÛmVáLÚªã4Žš±ÄC=;A–W†–—½Œkv›—;%À YÛ„ÌÌî¼G9™ñN)Êüb"Ûí3ṡn×»½½î»ÓÃÑÌøÛ%3Ã਌`²x¼gµààµÇi®dŒéÑúcãš·ƒ™®8 ú2ÿ"þÖIþ‘ªµ9ØùÊh=ë_ðrí6¨Õ±:v½I?þÙ]„eø]p@@@@@@@@@@@@@@@@@@Aï¿ø%ö±ÿé£ÓÙ ÎÇ ¤€€€€€€€€€€€€€€€€€€€ƒÜ·ÿ¡þÓoúUʶOS°õ¤üw~ÙÿJKðºà€€€€€€€€€€€€€€€€€€ƒ³´7ðROígñSÓíìYÑìseYê ÿÓßÄ—þ)ý¤ó¿þÙÿJµT“w,V«e²ÓZ‚ó ¥¶QÇ_M9ݺXâ’vÆèd™ÌyÍÉ­yi>B<²¦«ÎɦÑ}ñ7ð™³Öó4Ú=¨™ê´ÇŸ®J.4ZJ‚ï]º– MuïØÄ/e@Š=¦E€èá’m·7!­kI~*teÓ5[ªff#Å +ó™˜èˆ™ëˆ´¨õ$^ÁÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÔßÄ—þ)ý¤óˆÚ?¶Ò­U!¯Ù<6Îs”222222222222222222} H’¤jJS±óò‘2222222222222222222{Ö²;²í6¨Õ±*v½9Ú?¶Ò©B2üä d d d d d d d d d d d d d d d d d d d ÷žx£þÖ?ý#Tz{!.‡£¤‰ƒÛ·‘ÝPÿi·ý*å['©ØzÒ¶ïÛ?éWaÉ~r2222222222222222222vv†þ +Iý¬þ0*z}½‹=Žl«=DÿÕßÄ—þ)ý¤ë„¡ÇŤÿBÛØ´ðõóTÄü󌾌 ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌO~Jù;Š'l³ŒˆÜp òaGU+äô9Æ_F?†ÞÅ,=|ÑÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f'»n®‘õQ4µœ^4ôŠ5S—Õvš³z¯¸K´|XúOô-½ŠXzù¹5?ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Ý}|ÈòÎ/xüF㡾L(áÏ껋'¥Î2ú1ü6ö)aëææ#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1=ªùS-‹Ú81£ËûJ5S—O7b§ð’á.Ññcé?жùÿiw_7&§ãœeôcømì]Ã×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f#œeôcømìL=|ÌG8ËèÇðÛؘzù˜Žq—Ñá·±0õó1ã/£Ãobaëæb9Æ_F?†ÞÄÃ×ÌÄsŒ¾Œ ½‰‡¯™ˆç}þ{_3Î2ú1ü6ö&¾f'chÙÝ=,„†+@ò2©¦‹OcßG7s]è ÿÖßÄ—þ)ý¤ó¿þÙÿJµTœUkÊ=)[EDúZºªŠÑ3¢Š’!#ˆ…­t„í=€<¹9àqgnì¼G½,9_ŒGm¦}Ïï£5ͳ]ÃPú!4rRÌiê ¨‰ÑM€l½ŽèËHsH%®iÈ%v&ñxã܌Ŧß¹–ÁÎ0ºãäÜ®ñZ祆HåsªeÝ4ÇpiØsó!ˆÌ4£ÃhÒW/·ß¹+e~®÷«¨u%˜m!«Û®ª8¶Z]øY‰ ÌÞ.ò.Æsm÷FwõwÌG½È6HÇÇtà lœg'Â8Ö°Õt:×%ƸIºcãŒ6&½Ï–FÇÑŒ¹Îp qâBäÏ|Ûµ(‹öEûJªë ¾ß%uHt1ŦUÛlñÙ1t}Ó1ÉȶHÇÀÙw™~QÁÑ—ø!ö²OôP©ÎÇÏ' +S’.– åßOÖÃGTú[Œu“Šxjæ¥Ù§tŽÄÐ^׸°9ãe®{Z dd.EW·F(‰‹ñ‹Çs³M¯Ókß²m.êØpÏ…' —c8Aòl×hï¾X£•’Ë °±ÄÄòÂ@=,$eŽèspG‘œ_y1lžžžÔô:¡Õ­¤Û&ŠªZ)vš[‰b .ÎßaÞTŒâý}Óoq1i·W|]ȶ]œadçG “œa‚éAçdã8AÄ­zƆóy¯µS²gI@XÚ‰7x‰¯‘‚FÆOŒý—=9à¹{ð›vÂSí‹ö9hiw@]p--âB8üLíÃ÷†‚ãÃÈJäÍ¢û¡(‹ä඾Qì·—YÅ;äw<Ã,ô‡v@s"`{‹³ø‡`“Áv3û®.̼áÉË»sòsÝ“œaeÄã<`„qá½kþCý¦Õ¶'Nש'ãÛ+°Œ¿ ®=÷ÿ£þÖ?ý#Tz{!9Øô{–ÿàÔ?ÚmÿJ¹VÉêv´ŸŽïÛ?éR ~\vv†þ +Iý¬þ0*z}½‹:=Žl«=Dÿ×ßÄ—þ)ý¤ó¿þÙÿJµT“ç*T÷Ê­s¥™f©¦¦©ÜÝNÝT/ž=Ô;Ca’Frx`í`yŠñ´ãËõ~÷KÒmƒ?ÔJ~ó[¤jê/”Ô—K|ÍŠªçUª¨hîRo_MOSéšø˜ÒƽðÄæâ-ñÜNAqÛQŒðÄtÕ¤½úf"gâ8'9b™è¦‹p‰˜|çÅÈcÒ×(¨îV]íº ÞhÝ ¡µµ…ǹ÷²Pºc›g|Ö49ƒ¡Ã…Ø‹Û¦ÕW–øóî7»›ú/M9ýËonÇÑÓ54Ôéú:8*¨ÝM©ªa¨¢¨”J)ä43H`‰ì;.ƒÆk£pÐ1€Å3úº]»o“”p&2ªùg£Ù³9ÛÛÒâ–˺®Ç£5Îq¹WjXQ+¤qt¯5‡DàN b cqø=ŽãŸMX8Ñ3ÿ{!p‚K”±:ÆÆè·f1ž=›Þ™™å<¬–—mQºráiû¨~[\ú˜,v׹ͥ¸^)ijö\[µlÝ—4‚#ØÆ86Ùò©ÎuS5wS3}8Êš§tG}QŸ9BÒ¶I¨,}ÎÙmôÛ ©¢—¶U>èŠ<’ZÞ9ØènðŒ¦Š"©‹çm,Çe¢mÎeÚæ×辎ý·˜¿(TÜ«X­õ:óC$ u;-õ!±‘â.,Àýô€Gí.i³¦o¸Ðå1Öߧ,µv»šŽÖ*¤ƒO¶µÐKPi¨©Ù3[µTýç¾rö¸3gñFÑËIÊïÖ­µÛæÄö|©‹q˹Ϭû)¿Îž{"oÃ7çDY(5=÷“[•ÂTÕ>ÉS#§“.{pÜ\NIiq ž¶ÖÕ´‘Å/9ÅÓFË©!‘Ã>bâ\)^š(µ3on®ì6CI7˜¿³O}Üo”m5A©µ† Ít¬¦ÓLš&m½­d¢Z‚Ù@i„n˺[ä^zHµ5ÏLa´îõjŸrt|ª#¢o»S3CLý(.6Ã/vUéÚ¹Þé÷OQTò2Y6‰‘®{°ìgg£4óƒŠb{qL_®Îh}|éªc²×·sÜ·é{U‚»LSÐ4ÍîÏ]Îr>ATÖRG3g—iÄヌ–gÓODSŽ˜ÙLÛuªˆ‰ïÛÒŽ†¹ª)ªvÍtÇ8›ÇÆÇÐÅ_EÉ”óQ\'–&å­•æš<—€FÐ< ÀÈ]¢˜™üóG™UVÁ“á[øÛßv¸C§ôí=W6'È؈áÑ€’\¦1M7ÏëºûmU1v÷ΛeëÑÙêϽ^Útõ¢º¦x$™™f!tq6°FÏØd~7¤@>Eᅩ߹å=#ÞäH‹Þµÿ!þÓj[§kÔ“ñí•ØF_…×ûÿ‚Qÿkþ‘ª==œìz +H=Ëðjí6ÿ¥\«dõ;ZOÇwíŸô©¿ ®;;C$þÖ=>ÞÅÇ6Už¢ÿÐßÄ—þ)ý¤ó¿þÙÿJµTŸ&ªÅAYp¦¸KuE+ed2då‚`€ àí€rG .Dg~›[²ñ>â÷‹q¿m¦=ï…]É¶âÚŠ&H.OŠJ K¿øZú|W45».fËç#+˜c¾ý»ÒÅ=Öìø— 9*Ò‚Ìë?p3¹](¨-/¼ÌD¦]­îôc„›{xáœpI¦&Ü69Lví{¶ÎNôåš*H©h™hêUòDÏk˜é\ââç¼µÎÏ.'?c¶ÙÂ&#·i}¼m~Í–ÎHttw1rm¶1PÚV×I†Îw¬fÞÃIËËZ6Ïãe)Œ;8÷Þ=åS‹oï¾{ô¼šiz+á½ECk Ý.ð9û"G —HØË·m‘äkCÈÎ]Å)Œ;>.MSVß‹=†r}§™E£h‚:Îpk6ŸS½3osµœí’ìgg'Ljµ¾—g ±ï&o~;{¼ŸÁ¼šé†ß ìP³»6̻̿gx[²eínĤp2íãöILaÙñ}¤Õ}¿~iù3Òô··^£ ŒVºMæÓËD.‘±—nÛ#‡HÖ‡N]Ä¥1‡gÅü ›íø³ê =mÕTP\`lðI¦?=-9iZæ \ÒÒ2)1r&Î?KÉž˜¢µs\T,ÛöU—HK¦í‘²=îq{ÞÖ§¸“²Èà»[†Ç6ߌfå×* +{½,Ôµ,Šxß9Íx-páƒÄ8.L^-.ÄÙÂîÜ–iKé¢5t ÑB)á;r7Œ~ Û.ÈüQ–I´ÒFHÊU¦fvÎÒ&ÑhÙ?%šV’+dPÑ6Ö÷>fIA„¼åÍiÎÁòÆâcÀg¶ÉÝì÷ö—Ûæý¯£K ìT´4±R5±PTªf‡?ðs÷$æGœðèÄ¢mnhêµ¼œïÆo=w¿‹Ô¢äÓL[on¼ÁBÆV¾M°_²ñ‡ÈØËŒm‘Þև»'$ä¨Óv;5bÚöÉþž’Å=ˆÒ7¸'2™!Ú~eÊþ;[Ciä¸àŽ'†Ãˆè‹[³8wÞý3~ø³˜1¡ ?qJsBWÑ—ø!ö²OôP©ÎÇÏÎö¢áç@i÷X™cîF÷ \ØvŸ€Y.ù¤;khñ´z'É‹ÛépÛî6·ƒ±6¿ß·o‹Õ«äÓK×ÞÅêj:°=’o ~ Ø0ÉvíÒ4plŽi{GC†"ÓŽ²fù?—‚í*ofóÜ î³(œ¿jMè[ÜpÞlíþT¦0ìãß·¨š¯µýnši›­¿¸'¢k¡î™+‘®lò8½ò2F¸=Žqs²ZáÀ‘Ðp¹†2Û>;]Å9ñÛñØõÉ6ŽÓ%©–èÛK%A«,k¤iõ¯cøŽié󜦘›Fí~üŠ§ný¯§CÉö¶CA =Ë|Ψ¦»Ä•ís&s—½ÁîÚsˉÉ'+lÑ1Råöñµûλ“­7s¥¬¥ž‰ŽŽ¶§»'OÓá JÇ–áÌ-#1Ç1Ã7LÏlýû¸çº#²ÂNLt´–FÙ$ß5Ò rNôH%Þä’dÚÛ99wÙˆžÍEVír=?§mºR…”6èä†7=.9s‰$—9ÄåÎq.qâI+®8í_&ZZºôÛÌÔº°=²m’ü0ÉvíÒ4plŽi{@wȈŒÝš¯“‘Û¬ûEUeU4!’ÖÈÙª &GµŒ8ä0Ö´pÀáç]Œ²ã3Û?|äÍùDvCøTékUe]MT´áÓUSwÏ˲øAqØ88/wƒÇ§¡rbñ1Ñ;yL{݉´ÄîÙÎ'ÜüÓi;E$Ô“GLÐú:gQÀrã±ƒàƒ»fv²xtô糜Ìï‹OUîäeÝ7‡ÆÓ™i}Q-E²I+ d‡=ÀFNÑîpŽ2x–FÌþÅr)ˆ‹|YÙªg2ÁÉž™Òï¤uˆÑºwSøò¸EÝ žCZàÙ+bí1‡fëv^'ÜLßûm1ï~k91Òõöç[å¢i€ÔÉY†¾F¹³ÊâçÈÉàö9ÅÇ%Ž f˜›Fퟮâœøíøì} `µ²ÞÊj8âm¸ÈêPÍ #2´¶B8øÅÀ¢í¢I'9â¥Ó~ìË.äoÑÆý¿úTZzÝo¸ÕÜa„6¦°D'“.%â–ÇId8Ÿ.W"-Û7íØìÍû"Ý÷}•Ô^õ¯ø9ö›TjØ;^¤ŸŒl®Â2ü.¸ ÷ßüûXÿôQéì„çcÐR@@@@@@@@@@@@@@@@@@@Aî[ÿƒPÿi·ý*å['©ØzÒ~;¿lÿ¥H%ø]p@@@@@@@@@@@@@@@@@@AÙÚø)'ö³øÀ©éöö,èö9²¬õÿÑßÄ—þ)ý¤ó¿þÙÿJµTŸ‡9±´¹Ä$“€é$ž€<¥li¤9‚é•~}‚k$ÿHÕÚœì|å4õ¯ø9ö›TjØ;^¤ŸŒl®Â2ü.¸ ÷ßüûXÿôQéì„çcÐR@@@@@@@@@@@@@@@@@@@Aî[ÿƒPÿi·ý*å['©ØzÒ~;¿lÿ¥H%ø]p@@@@@@@@@@@@@@@@@@AÙÚø)'ö³øÀ©éöö,èö9²¬õÿÒßÄ—þ)ý¤ó¿þÙÿJµTMË~˜ƒUh‹¼3ÔUBÆPÕHE4ïƒof×–`¹™[œƒÁVúѬÎï8{hgÖŽ·2Ñ':rÖ­*oõ í/Êž¹ñUÑ쎨re䘀€€€€€€€€€€€€€€€ƒèËü‹ûY'úF¨FÔçcç)  ÷­ÁÈ´Ú£VÄéÚõ$ücûev—áuÁ¾ÿà”ÚÇÿ¤jOd';‚’rßü‡ûM¿éW*Ù=NÃÖ“ñÝûgý*A/Âë‚ÎÐßÁI?µŸÆOO·±gG±Í•g¨€€ƒÿÓßÄ—þ)ý¤ó¿þÙÿJµTŸQÙÆ¢´VÛËÌbªžjrð2[½ÌÚËŒçU礣LoJŠ°ÌNçÎ:~®šÑCAGZèKÜ­2ˆÚã$pl‡°µÇxÖì’8·9Böª¬S~7˜ç’Å¢Ü-ïrµ^ÁÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÔßÄ—þ)ý¤ó¿þÙÿJµTŸQj‹>£5—J¸© 7ng‚ãД“æŸÈ¹5Dmv)»Ú³^íúŽŠ:Û}Du4òŒ²Xœ×qÁÁcÀŽx*VEô×Ñ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÕßÄ—þ)ý¤ó¿þÙÿJµTkÊôå‚j-Gx{ón2²™eòÔÄt“6cÙâ6ä$ˆLá›ôÌaˆë˜Ÿw$â1Eº/{õ^=üß/‘Ý3r±Ð\k.w$·[„÷äæl¡ln-ñvÈfÜ›>({ˆãŒ™ÓiˆÝ~¬æfÑÂ<ѪqLÏTqÊ-wn¢"£/ðB/ídŸé¡Sœ¦€€€€€€€€€€€€€€€€€€€ƒÞµÿ!þÓj[§kÔ“ñí•ØF_…×ûÿ‚Qÿkþ‘ª==œìz +H=Ëðjí6ÿ¥\«dõ;ZOÇwíŸô©¿ ®;;C$þÖ=>ÞÅÇ6Už¢ÿÖßÄ—þ)ý¤ó¿þÙÿJµTu­y?:¾ám¯Žá=ÖçLøLL‚FíJÀÂâÙ£‘»A¹ p´9Ø–žûAS‰+i.õ ¬©oTÏ##ÊÖÿBüW5† Han2zWh›Ó1GlU7žÙ’¸µSÆ)žÉŒ£¹Þ‹¨>Œ¿Á¿µ’¤j„mNv>ršz×ü‡ûMª5lN¯ROÆ?¶Wa~\{ïþ Gý¬úF¨ôöBs±è) ÷-ÿÁ¨´Ûþ•r­“Ôì=i?߶Ò¤ü.¸ ìí ü“ûYü`Tôû{t{ÙVzˆ?ÿÑßÄ—þ)ý¤ó¿þÙÿJµTœKVè{.¹‚(®Pî_¼ŠHä’)cq%ÑÉšö’Èàr£4ÄæìUg©MÉÆœ¢´Ãk†2š†U5­{Á3G H÷ím½ÅÃ./'k¡Ù +[¸lïósÏã±Î:PxGF_à„_ÚÉ?Ò5B6§;9M½kþCý¦Õ¶'Nש'ãÛ+°Œ¿ ®=÷ÿ£þÖ?ý#Tz{!9Øô{–ÿàÔ?ÚmÿJ¹VÉêv´ŸŽïÛ?éR ~\vv†þ +Iý¬þ0*z}½‹:=Žl«=DÿÒßÄ—þ)ý¤ó¿þÙÿJµTžÊãKg¤š®ªFÅ t’=Ç­hÉ'÷;j« ^]¦œSgäï\Ñò•§iotqK 5!嬡² ‰ôÐNZxg#ËÅJ6DnNS1ºfÕ}‚k$ÿHÕÚœì|å4õ¯ø9ö›TjØ;^¤ŸŒl®Â2ü.¸ ÷ßüûXÿôQéì„çcÐR@@@@@@@@@@@@@@@@@@@Aî[ÿƒPÿi·ý*å['©ØzÒ~;¿lÿ¥H%ø]p@@@@@@@@@@@@@@@@@@AÙÚø)'ö³øÀ©éöö,èö9²¬õÿÓßÄ—þ)ý¤ó¿þÙÿJµT5Ê¥-úíYj¤¦µKp· Ek!šš7Ha-t¸O#ÏñÞFs»kOç7¾Ì¢/ÛÑËo]“‹[ŒåÙÓÏgUÜwõ9_^ý•ð!Ý•‘°Ï,$=Ϭ—¥Ž#;G`4à¹ÃÅOt_"Ÿ´Óàî—åUö©ñPÊo!Ñ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÔßÄ—þ)ý¤ó¿þÙÿJµT€HèAÇ;Ѳ +(è{ŠçŠaPȶÃel›Ñ Áä¼®+‘· œ2³³7¿¼\‹¥uÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÕßÄ—þ)ý¤ó¿þÙÿJµT}®5…~šžÝKAGTõÒÊÀ&¨îxãdQ^÷?w' lô¸q 6á3ÊÑïw£¶#üœžÃSs¬£l—!‚bO‰ævlþć˜ãÎ|Û8r¤‹ì®£/ðB/ídŸé¡Sœ¦€€€€€€€€€€€€€€€€€€€ƒÞµÿ!þÓj[§kÔ“ñí•ØF_…×ûÿ‚Qÿkþ‘ª==œìz +H=Ëðjí6ÿ¥\«dõ;ZOÇwíŸô©¿ ®;;C$þÖ=>ÞÅÇ6Už¢ÿÖßÄ—þ)ý¤ó¿þÙÿJµT+ʃ4]Mæɨ„:7š¡• ¤l71Ï´CKžÞ1‚ÒXïÙayÚ&¬öá»6Åû}ÏLðå¾6mÙ=Þû8×#w›V›·^ÙÛ ˜ÞßMj.'tY(‚8Æê‚öŤ7†¨ŸV/Ó5DoµæÝÑ=ˆ×¶gtDÎëÛ?r# +H¼#‚£/ðB/ídŸé¡Sœ¦€€€€€€€€€€€€€€€€€€€ƒÞµÿ!þÓj[§kÔ“ñí•ØF_…×ûÿ‚Qÿkþ‘ª==œìz +H=Ëðjí6ÿ¥\«dõ;ZOÇwíŸô©¿ ®;;C$þÖ=>ÞÅÇ6Už¢ÿ×ßÄ—þ)ý¤ó¿þÙÿJµTžµ]=Â#DL–3ÒÉ×´ãÎ× +³É¤§tmŒÄ͆ce»-ÙnÏâàcLtytp@@@@@@@@@@@@@@@@AôeþEý¬“ý#T#js±ó”Ð{Ö¿àä?ÚmQ«btíz’~1ý²»Ëðºà€€€€€€€€€€€€€€€€€€ƒßðJ?ícÿÒ5G§²AI¹oþ Cý¦ßô«•lž§aëIøîý³þ• —áuÁghoटÚÏ㧧Ûس£ØæʳÔ@@AÿÐßÄ—~)ý¤긶ï<}'Êÿ™iÛ‡’¥Þ;®/«ÇíÌ–ãáä\¯µÿ2[‡‘sºâú¼~×üÉn>EÎë‹êñû_ó%¸øy;®/«ÇíÌ–ãáä\¯µÿ2[‡‘sºâú¼~×üÉn>EÎë‹êñû_ó%¸øy;®/«ÇíÌ–ãáä\¯µÿ2[‡‘sºâú¼~×üÉn>EÎë‹êñû_ó%¸øy;®/«ÇíÌ–ãáä\¯µÿ2[‡‘sºâú¼~×üÉn>EÎë‹êñû_ó%¸øy;®/«ÇíÌ–ãáä\¯µÿ2[‡‘sºâú¼~×üÉn>EÎë‹êñû_ó%¸øy{ÒUGÜQÃ1¼ »ÌßÊ£lÒ™Éè÷\_WÚÿ™JÜ|<‘¹Ýq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.öíÕQº® `%ãˆÚáírQ—ß;LæõŸWqýç¤ù_ó)[ã/'.ü÷\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.÷Ur0îúãøxÞfñüeg·£ƒ·Éé÷\_WÚÿ™JÜ|<œ¹Ýq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.öhj£uL@@Áã·ˆ.óÿi.Uvp"^»êâÚ?¼ñôŸ+üÿÚK±y/×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹×Õãö¿æKqðò.w\_WÚÿ™-ÇÃȹÝq}^?kþd·"çuÅõxý¯ù’Ü|<‹»FÈÙid-`gÐÜù‡œ•SMžÇ¶Ž\ÁWzˆ?ÿÑßÄ—þ)ý¤ó¿þÙÿJµTœRê›NŽ¢îËK`‡i¬Ù%Ïw±h.{‘­ÇÌ£5Yئï‰oå7KÝm®¸Ó×1Ð2vS<ìÈɤsXØßš$c‰sx9££Š”gn3hërr¿¼õ9UÖ’áQSO ­|”¯LÑÒǹá®ü¥®ý¢¹~s°ìŹ]︆4¸œ $ô`$ͳr"î/¥u½\G,–ª¦Ô61¯-n Œ3ñƒrÒÒ2=)x¿GÄûݘ´ÛãlǹòàåCKTÑ:µ•Ì06’Zã&Ęîxdto—ñx´9¤pâq⹊-~Ïe[9»‡;tÞc¶6ø¹ ¿R[.µrRSÎ4pÃPæ숧Äî ;eØòŒqK|n›O]®Žéߎ«Ù÷H#¥#¥‚:Px@@@@@@@@@AôeþEý¬“ý#T#js±óÀÏ;¢ê›'-Ú'QUÃKKqËêè¡2AQ%{I±É,lîËH®$àã*4Õlé‹ÇU®íTáìv±)"`„*íz¢±EµrÛ$ÑÀÂA9’W1¼ügdðRçLFýœ¯îvÝ;ŸWyCG e»ê»E‚vÁ[TÈ^èf©d€"ƒÉìlµ­Ú.#9ÀÉ\™µøEç’ˆ¿lÛÞøzW”ý/­ª$§¶V‰edbc£–'ÉÆñ­•Œ/fxm³-ü¼RùLîÛÀ˜ïrûUΖùG e‚Xg`’7·¡Í=~B¥?(ü{ŸŠËµ¾¢šžiZÉ*žèáié{šÂòÖþPÖ—~Ð\Œòá3ÉÞ=]弄„qá½kþCý¦Õ¶'Nש'ãÛ+°Œ¿ ®=÷ÿ£þÖ?ý#Tz{!9Øô{–ÿàÔ?ÚmÿJ¹VÉêv´ŸŽïÛ?éR ~\vv†þ +Iý¬þ0*z}½‹:=Žl«=DÿÒßÄ—þ)ý¤ó¿þÙÿJµT5¬ØÉùBÒLœ–<ôwC``a¿:R<½%B™œ‚êûÕ1=ÉUò~çOÞjŸåR¢ÓieÂklÛ»œ•–NíݹÁÛªdqþÇÆfÓxqsF )hþU6éÒÅúæ<¬s”ßn®mÕy÷ÝÖ7 76š©×·‹ME[j¨®”u{&ªg1ñÅ<ó0±Î-Ù¶ÞŽ ÊUô3«‹ôF’oÕx‰ñºÎ’1Í·èâÝv™/ºjJûý·RTQÊ÷óµÎ+%¹¥ça¬¶)e`è<Ž#§`g¡zÍ31Ïή¯ºÄÚ{©žo,Qxù´Çݧ?£“çkÚ˜9¼]"eÇO6Fº¨\)¢k~,ž¨K#ÛKZùš"¬{šK߆´»§8]¦&pLå†ïû."´ÄLðÇ1áÒõ®mTý,^ÜpD½mM{Ðu—›%ž¾º¡°Zb½CÝM+f¥«Ä¬8íçcHtd–dæ¬7™ÙETOdÞ&8ìº1N+GMQ\vÄE§†×¿sÕ5ú‚zëÅ5L­¤}úÇCLÖ¼†îØctäqã¾bן(h€Rˆ˜ª›ôé*åM5Sñ2„ÌLO s™‰ð˜‡¸Ô]©h¯…·JÞè¢Õ&’÷ïÜ6õpDøâ½¥²;ñ²[Ãgg +z*o4_çLÄõbª=ÛvšIùQº"c¯ OÄ9å’–·XVݯsÞê(%¢¾KEwÄR²žžVG¹|ˆÞé²r÷xáÏnÉCESWµ3xáŠi·w[µÎØÝÎÑ7ïp*[Ö¯Ô5Sßi[XÉ¡¿ÉF×I]O¤†¯¹ß©ß(.{˜ ,ÞºR6N04wõgÚÛ}Ó3utw»¤ùѺ2ë´NãRÚ­¼¢ YS_\)(Þ"±SÎàc¢‘¯‘Ø<µRæÆZx;w²Tmx¾Éª¸¶ïVmO9º[&ÝLßîQŸ(³éÔT×Vj:KN®·B+j(«a¢¹[¦•ÌkêˆöIl”ïp pÞÞkÁy¤ªñUòœ;vÄOœ¹La·LbˆÙÓo(—Xè»]ÑÖhªî²ÊY*]EEQ ž|1£mÕ/‘¦ +x‰´9­sœÑŽ}kÎb3ʈžqNs=ÑHÓ”Lý<Ç)«+wÌù½-?o›”z.O+/5n©ç +úw¹•RFâ!eHnÙ‰Íkžmk¤Æ^2Zã–‹ÖªšºgG3ÂöŽîi}Xª7WÙwÙ°^5f¥ªƒPÂÊèäuêJwºZêvPšFU¾Ð +gJÞËvšàÍ륖‚©« ÏÎÛÓ¶*œº­—»ÓMqD|Ý–Ûך°´Zªí’Ö:zÉ*[<î–&ÈÖ´Ck@‰›=-ï.# í9üv<§9äûK¨ˆ=ë_ðrí6¨Õ±:v½I?þÙ]„eø]p@@@@@@@@@@@@@@@@@@Aï¿ø%ö±ÿé£ÓÙ ÎÇ ¤€€€€€€€€€€€€€€€€€€€ƒÜ·ÿ¡þÓoúUʶOS°õ¤üw~ÙÿJKðºà€€€€€€€€€€€€€€€€€€ƒ³´7ðROígñSÓíìYÑìseYê ÿÓßÄ—þ)ý¤ó¿þÙÿJµTœOWhËfµ‚ëu<ͨ‚h$tRÃ+Añ½¼ZpKHâ×4A +3Ïs±U²Þã´Ü‘éø(*)ݪ¨kj&šw>yfÌteòØ·a 0ÐѲÉR¦0ÚÝ‹·©Å{ôÅ»oºR+'<Ý-ô•µ78Ãf¤lìlR¿v!Ä…­aÙ=ÁÜZ84¹yUE©˜Ž›ôôÏKÒš¯13ÑnPù|œòSK¤ôöœ¤¬&J›<.Ù-y,ßLÂÙ^Aür6œãÄO•{M¯Õ¿+ó³Ê'-×›Û¹]É5·&¶P¦¶Mt‰ïu²©µ”û,ü#|Çã°àÃÀ‘FÙÅ]1{v¥‹)Ž‰³ØÔšϪ媖±²UPIm—bBÜÁ+‹Ü:“ÁÝ!s gÇ þã{x‘U¦'uíÛo'É»rK§/QUÇQ¤USÒS<¶W5Ím‹ tdqdŒqÚÛI*§ÌôÍQWlE ¦«Z7S4öNrã¾FíôöëÜ´‘Íq¬¹Ò¶ Ù_Výš“&=·†æ7´Ö=€ðñxeFi´Mºf'oL[8Ý9%^bý1¿)èêqÍÉd—;µÞºõETÊzëlÇEqªŽªyZÇ=Ïsß,kÐl`ã‚ó‚Wb›ÅQ?:bxåŸ^},Ž+L[æÄõg1—V]·ve›’Ë=”U¹³VM5U+hŸQQRé'l 68äÀ, Ú.xÛ^1$…Ú©ÅÖÙéæEV˜Û#¡Ïh(Ùn¥Š…ÎlLlm/qsˆh ÎŒ¿Á¿µ’¤j„mNv>p8èRœÑqý+¦h4mª ep‚àÀ÷m»ÆqyËOôŠWÙÂ"#ª""<ßÆf{fnù'“Ë–›ªHL”·§ž¡y;O¨vÓÈ#¼p[Ž- x/<‡¢6oÛñÍïñ²ÞÆ™äòצ%ª’TÕOU –jÉŒò£2 â6œpK‰$åJÙLoÛÇ+9|âwl|û7$ÚvÁ§èìT̘RQÔÇWt®s÷±Í¾isÏ ¯!éh è m“ììå1ï—/·é¶÷y=ŠžL,5v꺶]Í]9J„>õ“dpnÔmñz1‘åR¦pÛéfñÎgÞNwãžV÷=ZÞI4ý}ÖJùF%ªet´Âg +i*cÆÌχ/-=!¥Í-$eBšpì虘á2íUbÛº"z¡ùw$Zy×WW‘Q‡V ƒ©·ÎîST1‰Ì8Á~@wNÎØÙÚâ”Ó‡gEíÂûmÍڪŷ¦×ãg×ðyb~›“OI’ŠVÈ×µî%Î2<ÈçŒ;l¼—íŒìГLLDnµ»6U¦ûï~ݯBÃÉ…ªÅreÉõµµ1Bêx¤¯©tæ(߶Æhivsˆ/paw gÆ-=[œ¾Î/‹OÈ•‚ŠਸDë{fŠšXêœÙc†|mÁ·³Æ/a®Í#!À®að·\qwû_ÚÝȾ³Û-Öê7ÕöªJºW2¡ÛÈŸ.ÞÛCÜ 1÷×mp=9â¥LZßKչɛߌÞz÷½ÖrI§ÙuÞŒ6¬ÜLgwr¶©ÀæaFÞIwNÈy/ÙÚâ£M1OeíÂûmÎ]š¯Ûkñ¶þNcg°SÙ%«’)&y«ÕÈ熹ÍkHŒÄf0ÁÀO•J2‹u÷¹3~îçÛDDõ¯ø9ö›TjØ;^¤ŸŒl®Â2ü.¸ ÷ßüûXÿôQéì„çcÐR@@@@@@@@@@@@@@@@@@@Aî[ÿƒPÿi·ý*å['©ØzÒ~;¿lÿ¥H%ø]p@@@@@@@@@@@@@@@@@@AÙÚø)'ö³øÀ©éöö,èö9²¬õÿÔßÄ—þ)ý¤ó¿þÙÿJµTžÁÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÕßÄ—þ)ý¤ó¿þÙÿJµTžÁÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿÖßÄ—þ)ý¤ó¿þÙÿJµTžÁÑ—ø!ö²OôP©ÎÇÎS@@@@@@@@@@@@@@@@@@@AïZÿƒÿiµF­‰ÓµêIøÇöÊì#/Âë‚}ÿÁ(ÿµÿHÕžÈNv=$å¿ø5ö›Ò®U²z‡­'ã»öÏúT‚_…ס¿‚’k?Œ +žŸobÎc›*ÏQÿ×ßÄ— ‚uYÑwOúO”ö+Úè⯫—Žò®xý§±5ÑÅÍ\å\<ñûObk£‰«“¼«‡ž?iìMtq5rw•póÇí=‰®Ž&®Nò®xý§±5ÑÄÕÉÞUÃÏ´ö&º8š¹;ʸyãöžÄ×GW'yW<~ÓØšèâjäï*áçÚ{]M\å\<ñûObk£‰«“¼«‡ž?iìMtq5rw•póÇí=‰®Ž&®Nò®xý§±5ÑÄÕÉÞUÃÏ´ö&º8š¹;ʸyãöžÄ×GW'yW<~ÓØšèâjäï*áçÚ{]M\å\<ñûObk£‰«“¼«‡ž?iìMtq5rw•póÇí=‰®Ž&®^Ûôs©YY–½Î¾ ã{‹0×pOþÒäé¢]¿‹ôeÁÎ'j>$ž“Ø»®ƒW/ÏyW<~ÓØšèâæ®Nò®xý§±5ÑÄÕÉÞUÃÏ´ö&º8š¹;ʸyãöžÄ×GW'yW<~ÓØšèâjäï*áçÚ{]M\å\<ñûObk£‰«“¼«‡ž?iìMtq5rw•póÇí=‰®Ž&®Nò®xý§±5ÑÄÕÉÞUÃÏ´ö&º8š¹;ʸyãöžÄ×GW'yW<~ÓØšèâjäï*áçÚ{]M\å\<ñûObk£‰«“¼«‡ž?iìMtq5rw•póÇí=‰®Ž&®Nò®xý§±5ÑÄÕÉÞUÃÏ´ö&º8š¹;ʸyãöžÄ×GW.i¦­SZiߥ¤—gÅ9òÚUôµÅS“ÖŠläkÅè ÿÐßÄÿÑßÄÿÒßÄÿÓßÄÿÙ +endstream +endobj +162 0 obj +<< +/Filter /FlateDecode +/Length 209 +>> +stream +H‰4ŽAk1…ïó+Þ±=t2ÉN² ˆ ®A)¥¹YꢰˆÛ•Ò߬T†™Ã÷¾gÃx:Ú³™yƒÙ~/·óù²Y–™®òe«V:2¯‚î›L¶Ÿ‹|¤aq ¹ÅÿñƒÀuaÊÔì¡IÙ& pž½…ééIís>Ó:Óz_L×"šø‰-ñÓ·3›^Ð\èÌæÔ݆¯©ã~µmàœÆGÇ+©UŽ1%õñ® !°U[Wê='•èCB-C:Vh{2ÛGøÝÿ'À°?; +endstream +endobj +163 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Filter /DCTDecode +/Height 1437 +/Intent /RelativeColorimetric +/Length 180764 +/Name /X +/Subtype /Image +/Type /XObject +/Width 895 +>> +stream +ÿØÿîAdobedÿÛÅ + + + + +    + + + +      + + + +     ÿÝpÿÀÿÄ¢  +  + s!S"1’“ÑAQRT‘Ò#2Uáaq¢3BC +%rÁ$&'()*456789:DEFGHIJVWXYZbcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š”•–—˜™š¡£¤¥¦§¨©ª±²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÓÔÕÖ×ØÙÚâãäåæçèéêðñòóôõö÷øùú m !1Qa‘¡Aq±"RbÁÑð2B‚áñ#3Crs’¢ÂScƒ²Ã +$%&'()*456789:DEFGHIJTUVWXYZdefghijtuvwxyz„…†‡ˆ‰Š“”•–—˜™š£¤¥¦§¨©ª³´µ¶·¸¹ºÄÅÆÇÈÉÊÒÓÔÕÖ×ØÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?ßÄÿÐßÄÿÑßÄ~«Z(¥tSTÆ×´äA;Á]cE3œCI®!øyéc÷Ⱦ+= [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûäèjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6žzXýò/Št5l1ÆÓÏK¾EñN†­†8Úyéc÷Ⱦ)ÐÕ°ÇO=,~ùÅ:¶ãiç¥ß"ø§CVÃm<ô±ûä_èjØc§ž–?|‹â [ q´óÒÇï‘|S¡«aŽ6¿jlWh¬•±EUžãï%btUFv"¸—!\›ˆ?ÿÒßÄŽ8Ãõ_ñ?ö®´?&;4šåÅr]œÌ2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ r\?‡Ê?ëèÿ@W-/ÉžÆôk…f©ÿÓßÄŽ8þSÕÄÿÚBºÐü˜ì@Òk—Iò«Ê%%Z¶ýU¦m8hlL :I$pdlîœ@ÏÐ7¦—I‚6ÌÌDFù4tcžÈ™žÈp,Ê–-—ÇñE–)jèß[O=ïžÖ®)\æ7D£<úôœŽKjj›Í3”ÓÝmMjŒ¢cTÍ·Þ×sÜ/ÊÎ Æ× ­ö›µ5UD!Î|q?3¥§KœÜÀh;‰n`JS\U‰ÔM3NRø4Ÿ²“zÙcŠ;ý¹$M9¶<õý #IÜw3¬t´íWîmÑÎλw¾Í7,*¶ÂoÑ]©ßolÍÕÇCdsƒC»6œÈÀëÏ©mŽ-|§S\3«càÉû!ù2ŠžI݈hDqÌ qÚu<ŒòË,òË~¼´eû¥¯KNØÍ·G;5;Ï+•"µŠ¸ÍT´Æµ‘‚It 9A"Ýã~kyª"f:é‹Îèk†f"vÍ£µÅeå§Ao£¸Iw§e5h˜ÓÊâàÙí4’?s–ðr$î­zHË=tâŽÍ¬àžn÷Ä¿òÇo’Él»aêª +ÚzÛŒ;IftlÊG–¼0†’f¹ÀfzÈYÅ;*ŸgSÊw8•—öOaZÜOˆíu•SÓÙô9µjv)œá£&ìß“O¯<Æas£MDÎÉ·vVž2Þ½Ó1cžyp‡yÇŒl³Ýaµ2©Ž«š›žG̹ÐfÓ«-97œÎkµó˜ën]Q=S©èc>QpÏ'PE5òá &ql{Rsy3¥­Ç!¼2­iV’)×-é¢jÔé®Zÿd…¯“+e¦[k©«g»HÁLd‘âœBìóϯ%ƒ,²oH“Õ¹sÒipÕåyÏ>¨ú­èÑ≫g‹½/8®Ù…쎻Ýj#§¦Š&I,§QcC²õjË77g¼nR4“N{mÎÎ:8šõkµù]Æ%å—Ãj–êëÅ/4Š£šºPòæí€ÆÜ.xøâ¹Î’#;ë½»›E<¹¾V"å^’;}–ád¨¡«¦¹Ü!¤ÚÉ;šÒ×êÙƒª`[ÙzsË$š³¦2ó¯á|™Šr™Ùï¶onáË—'ö«‹­Õ7ºXªYRhÝÜZá0Èh9ŒÞdéÏvy¥:HªÖw·vDÑ1ÝŸ¢åîÓWÊ…N &0è©ØöKõšŸP\uÁ–#K­YäsË5®‹IÍQèÚÛòσ5ц"vüG;ÃÜ«àìYv–ÕmºÓTÕŬº(ß›ˆaÉÚNY?IÜíÙµ½Åz³kU3N·Í›— Ñö·^©yÛ'e)ˆ8—mžtµ›Ùî9‰ÜrX¢¸®my™±U3L^z¢ýÏ£+:{»­ ºÓóÖK,€»'‡ÂÍr˜ÝîwÙ¼Ò4‘=}S=Ñ­™¢c«g=ONÃËVÄï¨mæšsM§”F\H‰ŸjFŒ³{G¤³PN’&&oª/$Ñ16Úél'û'ãƸQ—j(裨h­òÃQ4¬cb–g1kôt¤{F¦3«=Ä…¥LQLúSiÝ”Î[u7®Œ3Tl‹Ç/{½¯¼¬àÌ5{ŽË_v¦‚¶BÀØd~NÍç&nɥ߹#?BéÄͯžÇ9¦b/Ôôñ?,øÕÏIv¼SRÍO³ÚÇ+ˆsv –²;ˆæ3uäµ-1•úíÞÌQ3ÕÕwbÅUM8žµì{6ŒsNmsKuô‘ÏÔºNM#7KáŽ[ì®Ã6ë¶!­ ¢}sêÆgÉŒva’9 ’ÜÜ,Ú3ܹt±œæ›º`›Íº¦Ï‡ÊGì•ÂØ??Zª`¹6I6ÍcÜ$Ú€s\àÒY Nݼ…®—M‚"c4q½°É&©Î‚"Éq>€r]t“†½%þvŽ˜óiFtÑê×3=öpÞIm†¢HYQNHeeÝÎl‘ž‰äjn õgé]>ÃGEú´Ŧžr«~š8=FQI|l‰Í”VÐÂnÛ¬77óõ.aþN‡îUøË}7ÊÒ}Æc»­¶»n"å;”Œ3^ÒÇÞii„-tnF +W5îk²ÓÑs›žüóH£Ó׊g”Zx˜°UE]Xb9ÍßöIpÆ5×íÉ®[h¨ðë†üétÎýû´®Ú +ºHšúë˜áM17—=58&(ê¦'S>9×*K~årψoà¶Ôlõ”l™Ñ>Xã¨tqi k´ºFfHéuf¹ÌÅ5UDDe²fðÞØ©¦ÝUÞxe.‰°Ø.6œɬuTòG¯>¢(ÞÂ<¯™ñ4ŒÚ4r9dYÑÄÓ:(qDÄöá’¹‰§K1ªf-÷¨Sß²ê'ËÈþ#k\M;2 “õñõ½cìL^˜û•-þÃeWu_ŠË«9c³· +\pu4âÏn£lÌ’ª*6TGM,´¬½ñ–ô²-ÖàH>œ×M4áÒk´aª"mx׫ƒ†‹ÎÑí›Ó3·{¯)mÒá,3-!¬šœlÚ¦ÉUasÃÜýR²(÷2\ÌÀÜz‚åDZtQ¾½zó‰—J¦ý$©ò±Õ¥²àÞUå4ùÊq,%ŽÙæâ°dZrÏ!™Þ7o+…æQ÷wàæ|ùûª?wMÚ¬[¹g¹S’bžç…b§¢qc²’q´:CÀ 8uœÈ]k‰™ÓSê´Çu2ãE¢4s:¢füaÔÐÅt®ÀÔo¸ÖTWZbª/¤Žß  vÍÌ‘µ3–µïqèïqs·­´vª«ÆvÑÌj´Eâ"Ý·b¹Ã×\N»Ìç{öYÁ)n¶»~ÂxrzgÅz¡ÅÁõð=®i}L‡[¤- p”éÉĸ7« ³ö¨š´16&'+giÉ=3¥¿\ÄÇ^W…-€mÐÛ*wFÚ㬫mΰ17LÖÓ"-ZI4ïÌúW8ótS1μ¶æé9é"/l©Ï¹Õ¼â(/¤àzÇVºvº×YJcŽ„ÒÒÒJæ5ÂŽ! fZÔ^çÌŒò]ty×=wÑ뵯iŒ£t9é2£gŸ«^ÜûÜrÏ_Ü–ÒÚÚ×óº,g ¨ˆÄö¹‚J÷¹„æÐ-æ uä¹hfôè·U=¶©×Kò´›éËﯱÊQ†×)˜vá’Þ/w(e¶0B÷ºv=±ˆLo -"®Ñ‘\æ/Fù]-þý{ì³{ÄU|ÞŽÝøf&8¹~ ²;Ë|¦ó¨³3 ÛâÖæj%•úÃI<ÜÐNŸH ®›:t¶ë®z.®ßj!äâÞg´rNÉ`. ¼Ý潄–Ø‚àFíùJƒ¡?G÷Tû´š«ûœ?EBè¹4å8á yØ ZÖ»œÁ½ ¯Î7.:8û.».µüº¾ëü ±¹IºÚðF>ÅuèݱºáÚzj`|­•ìl| ÐÇòç§vy‚·ÒåÒDëªØcnVñkG̘Õ¿ø>W&ø:zL€èïTšæ£ÂRjlÌÕ³”HÐÌÐì½cz‘£§ìÚ¯®4Tq½¥Ê¹û.›ué+ákÂò£heE“•ùM­î¸Ûƒ³ÍÄÄz',Èú”;}—øž„ªgÏüCø÷;*õ°ò‡‹%¤¶¶©±àºRÚm™ÌZHÙÐ3Ì ‹Fò7)zY·K•üêrî”m_£êÊsàâ|Žâ:k·)˜^©×Õ‰¬u4 2„ÒÓSÍ“(áh`Ï@Q{œNC¥¿%Š3ª¬ïz5í´û +ò¦:­^®Øql;p‚«“l5mŒ?Pã(ELF'µÑë«•íÕ›F`·~c0©i¡›ô[¯Û†YÒåÒoÏœ>·(¯‚†”<3U Ž½^/qOoŒA#ß4ot&)#xin˜ÃNgPÑ‘\è‹ÓüèÒ_ï׿e&m8ºº;r˜· Åö¥ï•³<I‡èY¨— +GjÐr9@§~`,ébôi'ð繶‹åh£ÕŸP\–\°´-”SÓÿnÃð>L%´í‚FmrÒÜÝûƒ¼õ«:æ&º­®Ñ~ËåÍ_Šbú±M»~²ŒZ6r\ü§(ÿ¯£ý\t¿&{Ñ®š¥X?ÿÕßÄŽ8þSÕÄÿÚBºÐü˜ì@Òk—.¥Ù̆CwèAýϯó ñÒ |‘ê #Ô>?¡óHð@Ò=Cà|Ëåºk½ôÐÕKI$Œ,mD6±“û¦kk›˜ôfüËZ¢ñkÛ±´M·¸§&œœ[9,²‹]å”:Yj%šwK4²»Sä€q> ¦"˜ŠcTFLU8¦fuËŸã#¼-˜KyßúP2qþ”Ó–Y¤¿¬fƒù¥§Ð>?»£©ôŽ{·õþÒƒ¡bä×jZºË½Î²šŽµ× +z*©™$1ÎsÉÚ‹6®k3:ç–·Ð*4xf&ó8okõ]½u≋D^׶ç|ús]Zº²Aü-¬‚î}GÕÔƒù¤z†ô zÁHõ‚ïñHsôúÖóKO oüË#ú7ý(½CwæAüÈ@øÜ÷çéAüÈz‡Á!ê?¨9. þS”×Ñþ€®:_“=è× +ÍR¬ÿÖßĉ¬ÖÊ›¥Cåë.ߥí¨u %Yh똈ԉ\Eß Íû?³?m¿*뎭Üaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞy¿gögí·åLunàaç›öf~Û~TÇVîÞö"Âö‰b’L§9knüÎ^Êפ«s8aëù¿gögí·å[c«w0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o ‚ÎÙŸ¶ß•1Õ»ƒ8c{Ù«ÂöŠYLdNr ?m¾³ùÖ#ITìàÌÓõ¼ß³û3öÛò¬ã«w¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÙý™ûmùS[¸cyæýŸÙŸ¶ß•1Õ»†7žoÚ=SöÛò¦:·pg o<ß³û3öÛò¦:·pc o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o´{3öÛò¦:·pg o<ß³û3öÛò¦:·pc o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0ÆóÍû?³?m¿*c«w o<ß³û3öÛò¦:·p0Æ÷ÙÃÖ[d:wÆ&ÔÔö‘ûþŠç¤ªf'V­èˆ»¾•bX€ƒÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖøÀÔº42Aü@@@@AýËÒƒø€€€€€€ƒû’â¥KüšTþ†£-g\7Rù«f0ÇAAáÔ€€€ƒû–h?ˆ?¤dƒø€€€ƒø¾¥ãù;wñ¢­¸¶«[æ€JÙ Ah?™fÔ€€€€€ƒû’âîH þ þärÍñ×°ÿ)âai^©ìoF·vªÔ±ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Ö›ÿd{n“`£Ol®–†¦¢¾ÝNʈZöjãfyAÏ'§70w®’÷¦ÚñG„Ï ›èíõa—ŲãúÜK~Âó¿kGxem+IþNi,{Kâæ¼8ÇŸ¡ÀŽµœwªñªtx¢>šžzáŒ6¦Ó®4‘úZ¹NRû˜w•‹Å]ÞuÞ× êèj+éãmP–f6 $²¦= Ù<‡´%ÍÏSsÌ,âµï®šqe7–íc í²j¶~.1‡¹nÅxŽ;)‹À×_i_=ªÓ15¯“œå1·K³afÑÎÜi;·ÎöˆêŠµõeÏ8c(ã1ߟº_z>Zjn›;©(`mÆæê¦*ª„PDhÞY;Ÿ8i%¡Àô·Sõ Ã"µÅ{[®œYìËåœ6½úªÃ–yç<-ÃäÛEÊ%™µÌˆC#&š–hƒÄ“A!ŽFµíÜöæ3k²´ƒ;–ñœDÇ\_Ùã ')˜Ù?WÚ똹l«’¥µ¦ÚÑc}ÈÚ›Y·úí¶ÔÀ$0hË`e0ízÿu§JÒŠ¯kå‹W;_¶Ù7ª›_¯¾Wá|Þ|ŽO‰n—ÌOYyÐ4\d¤‰±ÕM+ØZ̘ȞÆ1€j/no{œC·±¡›Ñy×3W*¦=žÓI•VŽ¨ŽqñÁôñ)÷škµÆ’Ëhí-…Õ§o³”ºfítÑèp–AO!Î`$†ƒ™YŠ¯ŸTM·ß+å².M=]sÝlülùX›–ªë<÷ZŠ;P¨¶ÙLM¸Îù¶s4½‘ât8HbcÚé59›óks!1[9Õ‹ ÷Þ"ý—“ òv½¸Í»rzxÖû®¨½ÉIheU “šIS79Ù½ñÔÂÉ~¦2Âö‡g“œÆK3»]¯}QVü£ÚÚ(½­×N/sܪåŽíb†üÛ­¦8j-vèî‘Ç NÕ²Á!{Z×8±š%„8[¼dâ±]x)™ë¦ªbcîRQF)ˆê˜™àùõ|¯ã*zê»xÃÔüæ +ÝZ ÕšR\ \á "£Sr Ç¿=¦C~j¯ ïóuökË„±M8­o«·-|]†yK‹Üh©à§-Š®ÏÝsº@I `Œ»1žeÙõîÉm\áÅêÄOmâgØÒ˜¼Fù˜áo{†PrÃ}Äm²Ãh´Ã5MÖÛ-Ä êLQD"•‘–¹â7¸ç¬iɹç×¥æuFªiž=LÚ#_¥Tpëz”\£O‹î8z²† #ž¶×t™°IP[–FÇ2PÆ;^OÌ2AöFd4êÝ­YLÛðœUöž9¶Yþ·žY=>E¹HÄU6Œ5Mˆ Œ›•Lí«dιÔú]¦@æ3'¹…Îݘg~[MV×ÕDUáÏk\?‹Í>>ë;3ãË–/¢µUÉj’®óT™CÚæBð!cóÉÅÓ0ënC&äA=K1}SèÄî¼õw16êô¦;£­Ù«-DJ—ù4©ý ÿFZθo¥ó†å³D¥Žy;¡—”[ ¯ºÇ Ì\å©dw:Æ4º(˜öikd¥Ç&³!–åÊš|ëgòfuμQ×i«Í¿­«« ϱΰÿ)òÍAk§ŽˆŠ‰n³Ùß“9æ1I´ÚJ^à\ó³¯ß½Åã3é;Ó^+o¦g³ MùäÒª0ßtÄvÞÖå7|lËuÚþÛ%m}¡”–ëÔÎ¥¦˜T땳òݤZlrlÜàâàrÔÑžìÓ7µò½7¼â·mŠ¢×Ý6ž6~¶N]Úãn{© m²éW% $í«kª6­ÚºZ}#DrœCœæôK€Õ»Z*Åkåx¼p¾{í›5Ó†öê›Ox»”m.‚Ž:ZaU[pªe,.~ÍŽ‘Ísˤ~NÓÇ9Ä5ÇpVfsˆs~–"œ¦gªÜæÐè~P¹AÅ8£›}4tuðÞé-W6²Xò9nÂxã׳™noÒDZ¤ä œÎ,6ëªbböÎ"rË«+·¶ªýTÄÄëÊf"ý½Jâª~O0Ì×JÆ9Í¥…™ÆÇ9ï%±±s·’ç¸49Þ½GÒºé*¶¬ï6Ž¬æmtS|¶F}z¢î_ʵó [îb.ÂZvSºK>Ú*‡ÔɱŽÈæG¦Q!à´´4‡‚F剪ÙuâˆÝ7ë¾Í­¢›çÕiñoŒŸ>åË5Û ÐÞ™x´²;®žž¬AMQµŠxj%Ù4Ç#™kÚ湠A îÒk·n*iŸ¦Õ,ÅìÃTýç[æ]ùfÅöY¯Òáês5¢š;„úkþ¬ÒÈ׸;c™¨7‚Â{ב :L13?6m>9mäÌQ{[çF]Û_kr¿x¥ªž+=¥•l§´Áx‘óTl>¦]¡1€üåɹ¹ç›†ì󤯣Å}TZûs¾® hèdžÚê½¹kâþYyd¹VUVÚ[MU¢kÅGº(CIŽv†„=¤i/nDŒó ¤«U}tÅûc?q££jªmÞåQrŽé]cØ*Ûê+Oö³ ÇÀü±]ñ-MŒ×ÚIK}§’ZIS´‘¯Š-«›,z×72Â×8î€'rzâ}ª;-ó7Ç¥nûϹÖøObúùð3mml”•´—ÊÚÚÉ,†>½£„GY`ÈÆwfI *&{~ˉ߮žyÛ¾[é""~žcñnNßü¬Éˆ†ltZe»GY$ì×ü› +1¦AÕÒ;\£åךEWÕ«.6´säÄÓkßÒÃ㟻³°íΪól§«ª£’ŠYXúy‹\øŽeŽFå·º<NSß?]öQñÝE}KÇòvïâ,ÿD Z5qmV´÷û#.fÓjfçRÒ³œÐ¶I¡‘ñ=±>®&É“ØC›› ƒžKZôßT×LOVE:¦ÚðÕnÛ:ïâû‹ÜeÃ÷Š»’Š×=Uxž¦Z¦Ã;ÊIνOŒI©€–dwµŠðÅSÕíÎñàÞi¼ÄuÌÏ ³raÊõu}=eÎŽWÔZ*î4†Š¹³<²Á{$-`ØÎÐö8ëfyäInü×3UõÓ›NZí”ö±E¦i¶©ž¸ï~¼¬ba†‚Ñiec©¬TWY$ª¬1’É#vl.Ù¼¾S³Üâ\I.-[é«ÃUyeDçß9Gs:/íªöî˜kÆ›”LC~Ç6 +Š6Cž¶Å-Áí–g‡†—Âç=Ìle¦Hô´jÉÍ.$ƒ9¾ªú¢"o»6-x‹kš¦;ò}¬+Ël·»´UÒSÁCvŽyh¥Š±³J1²¨„4lËâíÒçéËK²+ž;kËÍÅ·(µûâí¦‹êô­ß7ˆðxa¾Xïwšë9³6 +ô’Š9…N¹!|Í3G¡¡{X Z×8H$8oÞvœ§ Õ·f]¹´ªÚã8ÅãŸfO'Êæ(Řqר0ø,–A$m©ÍÒÉÎ Ÿ'C(iÚ¬Èu; z#vzÅS1o•n蘽å¼Ó3/Êm“„ãÞV±EÏÞn‚šžåj¸ÒÑÔ:ÇIR>‡C+cÍÚ„kšÒÐ]Ö@V,3uÄOtÇ)¹4á½ý ˜á<âÎkuå"\s¿Ô×ÓÉ%E5-¥¼ÚËátõN–6G{[£7!ûC'9æuÄg3\DvÍ4ð†¶Õ|£ ÌöDÏ7åzå¶é„¨.ì»ZceÊØÊ9¹½=A–)¡«œBÇG+˜Â×jkšæŒˆ2×fµÅÇS=ú§±´Qy݆©ŽèÎëc‹­Þýq±Ýè#£ª¤† +¦ì'ÛÆøgsÚÜÜY5Ññ‘oQ…½9ßlM§fqv•E­²c.ìž®-Ç÷šÌ–‹ ¶:úšzA[R&¨ØÆ÷9‘±„1ú¥±ÚAÒÐeÛÂç5ëÊøm}¹ÅíÍðêß{lË+Ëà^y^»™¥ŠÍe5/¢ †ã]LüÞH›3\öÀÆè~º,y-qk@jÍە׆óÕN¹î¾]‘¬¦ŒVŽºµG}¹Î§­zå¢æ÷Êë©•°Åh§¼ºIª6Q(èCÉ—K hÜÜóÍÃvx¯IƒÊm~É‹äQF+mªö퉶osr»r¹W2ÛSic«µKw¢p¨=ÑE§6NÐÀ#“'´íÈ‘žafº°b¾ºbýÙû˜¦œV˜ÕTÛ¿[áYùcÆÙmA‡ ]èM}Ò»&µ‘ˆÌ‚§(‰Œå#K{LóÈéÈ嚦i™¦ÙÄ__V®<·”ÄLDõLۿݓݵò‹>2¨Ã5Ô”òE=uÑí§}Al"XÆ–K¥‡hÁÐðhÍÁ§<–&«ÄÍ=z®lç`‚w/ÔÿL—d3é1ƒ¨’1LÍéÙ4^xF~Þ×Zâ"+ÝWà­õ;·Y˱¥¯2ŠH ©—!i|æ­¢§neíM§|"RN°ò3xn•µb˜õµsµûlåU6‰õbóËÂïíw.ÜÊâeæ:ÓͶ™'çm"c(€½´ÚwÂ%!„êÖFo Ò”WŠÞµíÏ_mŠéµöÄ^yx]ÅñE³a»ϺÔ͈+î£cKÏ4¢³ýc]N@`Ž:}òLF½±<’Åi¦5κ¶[>Q ªÎ&zµSÛ—»îUîË3—RèäñF^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖéþT°µv/´SÒÑè×ÆßTínÒ4SÕ2WïÈïÒÓôËiŒé•_”Ç´‰Êcm3¶»òO}o)3^í“G MyqÔv×ÔBÈD¬f[ÚæÆǼæ2{3Èê\z9ó­:é˜Ó3<âýòé5Ç›º¨™ìˆ˜w8æ äÃÙîVi¤´ÐÒ²’ÝYCU$U;Y§šx˜9ËžXæ3ì¼™y9ä2=f/‹+b¢Ñ3‰ú"mkçj¯~1ísLɽæÀÜ*6_Ã- E=V—çÓ’FݺC6œÎíÛ×h›OÒDwÄÑ?—:¢ñôó=Þw½Å#÷Z:[T–ú;”¶Ú‹©–Žw°2Hkç|sö9­‘ÒnY7<úãÑNŒ¢mFíÊoÉÚª±MYÚõâŽö»¿“k~²Es)£œÉ,®Ž’6Ç {G—66ikC´7&— È.=k¬eº3rœæ{y:Z.Kq;i#Ã.Ž%ÇzòŸ<Û}a€Tš±ÃNbM¡Ð_«F«ínZQ&ÿ3¯oÝ*Ÿ•oÊö¿†NæÁz²Á5åõ:r¬ºTUÇ¥Ùý\Œ7?S³iÌoôoMa¦"z¦®uLûZW7™±O*b{u˜ÎÃ{¿O‡ÛNæÞÍ4¨š]&Žh¢=æ"×mšXÖ¹tú.ݽb"bñÕ5^û¦×ŽÜ²o3iÙM­ß6ñÍð1O&˜®Hñ-¢ÜØ%¤ÄocßU,ºL_ pTiÚjlzãÒá“œC²4šqFÕŠgºf&c·+3aœQ¯ G|DÄOfo¡‰ù+»Ü-˜Ê’”Eü;GE&§åºžš8´ÝÑÞ×^czÖªf¨úL]צ}’Í5D[uO94½b:ìA50‹MÂÁ ¶OÈí™,:·nnO;~ü÷,éiÅD|êè˜ì‰ÍXf›õSTO|YÈ.8çU‰«î ÙìgÃâÚÌÝ¿n$‘ÛÆ[›“ÇKמå%8±úÖ· +£ÚhêÇՙ¿ß}Î%bÀØ·>ÇQIKMU$­ }FÈE,nkÄ èvÒ<õ4dã#¯vt‘Šj·Î¦˜ì˜‰kZfѪª{¦b}©É·&÷œ)[‡e¬1o²MA9c³ÎgÔE Ð2Þ̘wú7Öœ¯÷#ï7»J³ûÕsÆ_;r]{õxnJmºŽíú_ŸJ²vÉÃPÒ:GvGvõÎcûJš{â#ÜÞù~$š»¼ï{­ñÆ¿á¾K,öÉ 4·j +¸hétÌ$Š‡:•îfA®¢ÎÐA-,Ìœ·­+ó°ÆÛS1ºi´ø]½3‡ì½Q;â¬QîU´TuÖ)è-Ô°Äë|4¦'È^DtMc"kY–Nk€qqÌiÈn9®Ó7™ÙÕÛsŒE¢6õð÷¹BÃ¥KüšTþ†£-g\7Rù«fŽ³Ä¸N¾í0õÚÞß{fÍÙ;:ˆ˜ÖioÞÓŸV_kLZ«ú³ø¢}æ|Ûz×å1íu–²º«–+̱ÌÉhèé™Vְ糬­°Ê–àvTáÙu{úÖ”|íÓ1÷+W<íŽ7~sô·¦9O'äƒ â÷fò©ƒeÇøV¶ÕŽiCŸž‘$26VjË~’æì·€I 5Då1®&&;¦å¯TÄÇuÞ+Âxã”»eÁ•Âžƒ.e5 (”NÑSK8ÒK+XÓ¢BÖÆÖ€KX5‘É&'_\Uº:»d¦b2ÛLÄÎù÷>^$äóc¶ß®5”ðRTÖÑÑPÓS6}¨k ©ç>IC3s‰ÐÐ75£3™Ý®½µÑ=ÔÏŽ¶b®­”WõG†§(ÅœŸÝ¯7<[QÏEÖÍ >§äv¬e@:÷t[œ­ÈïôîÜ´¯G5EqéL[…(®"iõo~ù»×§äîñ®ˆÿŒ7KjgO÷¼M˜;=Û™œÉÞû·-þÄSÒEvùÖ· kM X0_æÞücÜüáäÊë-m™ÒÛ.©µLàìÈšfÀÐZ2é4hq'w£võ58æ¿Z›G÷±¢¯SêÕ~O•†ðn2š¦Åå*JZx­6ººê6¦i%‚8™#F†éŒì÷µÙ¼¿pÞ®&¹™Õz&-¾f'ØÖŸ2"6W}Ñ{ëaÎN/º|¢,ìÍVOÏ{é #FîÔwõn޺לßðÜÓß1L{FQo^'ºõOµðð—'— Ràð†gÚ#­§«hœ3Kj· #qiÑ–e»‰Eb7ïLöÆü ¦’q^ÞœÕø£ÚþrMc–wŠ§Šh硤˜ÃFXuIY•]S3†—è¬òë –‹äÌïšcfff9Õ1ÜÛI1x쉞و§Â›÷¨×*‹m;îPÇ [˜ ÑÂó#ïHkˆëyu÷G)öÏ×FÇueõ/ÉÛ¿ˆ³ý-hÕŵZÝIÊÆ®Æ8˜ÑhÚóº)ºnÒ4ÁU¯ß‘ߥ§!é9´GLì®™žÈkÕ1¶™Ž0ã¼ òiQŒqµ1èe=]’ák¨~}=s½Ž…ŹtÚÜŸéÝž^•Â­,QéSOj™v¦»[uSÂbÎ!cäâþú*˜d´Zí„Yç þ56NuML±èÚ™ à .%çPèŒúi<ø««e3¼û¡¥†ië´ç<£ê¾æäÞñi©©’m–Raº+PÉùý| •¯ô}ŒÞ2w§~äÓF>’ß>Öá1ígGV­ïÆ'ØùöMï¶iðÈ–¥Š–Å-š·DÁ®Òˆ~±™·ë6n 'x+5F+ÇUTÄ_²þö"«Zzâ©ž/C“®J®Ø{ɶú‹]²’žßK=4ÕtíóÖ†"ß«káèræâç?¢3i%iU8âbr½3m³™ìݽ¶+NYù׎ËÞݾçÁ7+•uÇ[´3ÓÛä«Ó5-NÕÕAG, ˜Ç¥®…­Í­‘¯ÌíHhܺQV*¯?„çVzðç}ýQîsªœ1hôãÆ©·ÇµÎG%Ø’—“{UŠZŠJÖOSM¶1ÇS©’WÀeps\Ó¼i%º]Ñ%i‡*:ðÄDÇe6å9ºb¼ÕÕŠfÓÛ7ðÉñÉ>(¨²bºfPQR:çUEYG3E>Ç8^[ wÕoÒ]Õ¸’¦&˜±¤ÅÝxŸcLU=´aï´ÇµÊq‡&wüe=–z¸¬óÓ2I6µù_3£‘Í`’­ æ p—LéÎ3˜®*ŽÌ1ö™U”êšf'ŒËäbÞLñV?»U<•U±[i)é„âPÈ©*ÅL|¡žK´´ ÍhÌæN\â‹g¶ºgºŸnréõl¦¸ïª<5;~‹ WAîw·hæÕ6êJVtºzášg»6å¸e#r9ï9ú–ôűo˜žf•Mâ7_œÃbl=Š,Ø¢²÷a¦‚©ÕöøèÞÙçØìeïtS}‡kfRö Ñg™Ëž‹ÛçZo²b,ßM¯Õ|¶ÄÍÜvá‚ñµ‚¾áYm÷ +‹µ²š’¢Y¥æâ*ªxß8Ðíq8H\cnN  Çv4”bŠ©UN½—Œ3áxfŠí4Õ:éêÛãÜ÷­Ü•\,‘\)`{$‰øršÑ ˲.šNÒ\2:Zv ïë;·&–ŒQ\GÎÃnè³:¢™¦}ß¾¨—ë'w†VÚ&"=4˜r¦×'O÷¼­„7-ÛÙÐvnônݽgOF9®ß:‹GmæXÑÕ†)‰êªóÙk>žÀ·K=à +Ï6ÏM®Ñ5F—fv¯m8wt›õNÌîônÞºé|êæ¨Õ4Û¾ñ-(œ4Älªü¥ð0&W¬6ü0j¶Y["»2}/Ï}[õE§pÕ»íueù×:i´[ðÜSßæû›WUæ~ìš»¼ï{âX9=Å–L?…)$ŸÜ#Ø*@lðº)ãÚ1Å6¡Û7Œú$g™ LLM3²›OÞb/ɽuDâõ¦ñ÷«¼m\‘Ýìw9i©íÖÓ—‡Ü|§#"}C`–]³àÙ>2í®¬ãlšôµ‡PÉÃ%¶Ž-küÛêëŒæ;5çØÒ¹½í×né´Dødþ[y"»YnsSS[m¦nï¸ùNVÅ$í‚Yvσfè˶º³’kÒÖíÎ-ttá´O;{c9û®«ÞvÛºr‰ðÉÞM²¼âçÜÍ,zyƒi›Q´&Löî‘ÑlòÈ7©ÚÁÍÇ¢F@-é‹_~ûDðµûÚU·bços˜¬µ}{ò‘§þ&•êžÆôkwj­KÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A£Qj¡«¨Š¦Zx¤–ör>6¹ìϯCˆ%¹úr#4fïy}*_äÒ§ô3ýk:á¼j—Í[4z46ª+Xx¥§Š#ÌÙ1¬ÔãÖçi7I9’š™~ô´°ÐÄØa±±£&± h @~ùîŒf—£nµÑYáØQÁæ]¢66æNdäÐgÒzÊyÔQ—Ô¼'nþ"Ïô@µ£WÕk|ųA<|š,?j¶TISMGO ÒþÙ$pÆÇ¿~}'5 »~ýäïHÉ™›¾²0 úöå#OüL-+Õ=èÖîÕZ– ÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£AÒ¥þM*C?Ñ–³®Æ©|Õ³AñÝE}KÇòvïâ,ÿD Z5qmV·Ì[4}{ò‘§þ&•êžÆôkwj­KÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£AÒ¥þM*C?Ñ–³®Æ©|Õ³AñÝE}KÇòvïâ,ÿD Z5qmV·Ì[4}{ò‘§þ&•êžÆôkwj­KÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£AÒ¥þM*C?Ñ–³®Æ©|Õ³AñÝE}KÇòvïâ,ÿD Z5qmV·Ì[4}{ò‘§þ&•êžÆôkwj­KÿÖßÄC~«lw ›±Ù;¬êÌîOÑÆHÕNo‘ÏYÀ‹õ¾eÓùä×ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF'èÛ–†¹¢ÀvYŽ–ü·Jaß&'çÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õ‡÷„_­ó&óÈÄý%¹íÝ©ÐÆIÈ~ëÐ2õ¤S¾LOÏž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb{PO±Lóy°4µév^µ¬Æöc7«ÏYÀ‹õ¾e¶óÉŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyƒZÎ_­ó&óÈÄöj犞M-‚<²iß«ÒÐ}k~¹ffÏ[ž³ë|Ël;ç“ŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1õœ¿[æL;瑈ç¬àEúß2aß<ŒG=g/Öù“ùäb9ë8~·Ì˜wÏ#ÏYÀ‹õ¾dþyŽzÎ_­ó&óÈÄsÖp"ýo™0ïžF#ž³ë|ɇ|ò1>–­’WÀÝŒmÍãxÕ˜ÿ´®2œÛS9»‰W¤ˆ?ÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Gå ñT³\OkÛ™±ÁÃqÈŒÁ#qÜ}Gr2ò2Æ׆â $f@ë uœ½>¤KÖ—49Ùä œºòg/N]H<ÑФþMꈳý-g«¿Á¼j—Ï[4zÕ5´ÔA¦y£ˆ<énÑíf£êˆÌþa½~®–6H#.hq†’3 uœºò“Ôy‚3ù· ðšx©˜_#ÚÆŽ·<†úIȪŵ2°G:Ë›§#Ôug–GÐsÞ€Ú¸@0’âÁ“‡ÚmëûCÒÞ±êAúG,s·S× ã6FíÇxõÇÔPy£AïÜ¿oþÝgú ZÒÞ­o•QU n’iÖéÑúKˆ÷ëf¶~tuô·(ö”ÓG3ËTOkÛŸ«6’3üÈ=¤`Aùí£lõ7^Z´æ3Ë«<ºòÏv}Y£/ÑzòÖSÀǾIXÆÇ–²ç´çÕ¨““sôg’3g›*"–6ÈǵÌp®kiÏ«"7ý ýQ‡ð8Fc1èÏz2þ£¯aþR4ÿÄÂÒ½SØÞníU©bÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öê~U1xÀ8BëxÍ¡ÔÔÒ9šˆhÚ8h2w­ÍÌú–4º­æѳ6ö¶ÑFyêŒç²3ö'Lñ‡’K' ¶VSWÁh£Šëi§d ™¡Êf—0»,êcs¤m3ô¬×]©›|Ú­-6Ãí)£QžØ×ì}Jë¶%¦ÝuÄ0Vˆ,jàaƒa¡Íï| ;SCKÎN;ói]]××j#¿Ï÷¶¦:H§ªõêÙæKó|ؾ W…kïUtÕšßv«ca§Ùl$4l~ÈNÚ02{²y ç¸îíUôxúí£œû+£©Ê™&Õ\e» O+o*x²X.W{,u8…Ôì‰ñQ=ì¤ióHòÆ:g¸4d2kçui•1;pûÞùƒ ×™Mvù¶m¥0íUÍ]‘Þâ!yß›¾ÏWèã—-|œ£W,ùêv"áIü›Ôÿgú8ZÏWƒxÕ/ž¶hœìøZÏÊ>5ÅO¾ÒC\Ê))()£¨`‘±FêfÌòÆ»0×Hù /;&´g 4EQ3=uUÑoºÍv˜ˆê¦'¾f}Ï5Ž§ ß-–*ZÑ,°áË›b¯š6Í;C'„5¹—isCHi2âÖ¸œÂÖ¹¾/ºéÏn¿wôÅ­÷9ËfWøÜùœ’â›Þ Ãøb;¥k*h*¬UµÆDæKM&lzšN¡±×¼ïqi%vÓU4Í[¨‰¿e¢|aÇGLLFúæ8ÞÞåÔ\ñý.´^¶ošª!w¹1¬ nÊ z=ÒÉN}{7-j¦õZ~m7Ÿ¹La÷Ïs1VWU£²'…£½×¨â¸á{“7: ûí³Öi­’:°=N°7ô9k£œX/¢f{hŒ>6m\[Uæ";+ÏÂï½a«×kC¶1G§Ý”MÒ m<ã[·œÞïÝ;Ò} Z5Ñ÷/‹m&QWn‹Áøá As²`ëL4·*K\5×a-Dñó‰K›Y1dpSæ Žq̼Œô4ufsÌåNvû.ž«ÌÍ£“[gWÜçtZóÍ÷p÷*x—ÐáŠ:)¡¢¬ºÅ]=EK©Ìc(dÙ=ÍÉÒ¸´äóõcPÞrË1z¦-—™O^»E¹µÊ›ß?>iŽëÍß“–‹ôÖš +Zú¸(«k.wZ7U2‘õ Š+{ÜÜÙ3.sú fÑ™'<‚åMx¢ž«Ó5NWùÖ·ÆÍîµQ†û¦#7¿Æ×jàWŠq]šš}î’+Œ´µ2ËÔâjX‹€¨‚7 M|€°µ®è}¼Ž@.ÔÍí3•âoÛœ{/Ù.3–·)ú®åYj ýËöÿíÖ¢­-êÖ›¿e&Àro\j#ÚÄ*( Ø´ÔÞ{m Èê$nÓ‘Ï©k^ºoéÓ½¾¯î5x:öZˆ¬•÷¼M…,ÓZ(è¬U›M½£Ž¢©®@[NàÒí“Zðé [˜xfgыኦ=[Fø™ÏvYoîf"*šc|ß²Ú¸çõÜÆ­7‹wëqÌeGk¨Á’7 ÖTZÛç¹Õ5­¤šIàh°¿NÉ™0kK™&£‘Ðw)Œé´åŠ|&mݳ{3?*ñž‰ïÛ¹Øü¦ò•ˆð-eSü«Dy4ÓDÚc4ÕM‘Ìl²Ìæ;øÔ¹Û=Ú@n¢\I8ßTE¶DÚ/}¹êk‡/¥™¾ø¼ÚÛ2|{¥öïÉö7Ç—é+yÅ= ²†vÒ˜ÐìÙ6ɦF’àzȼûÀZS3LU÷8ŽùŠc«·Syˆ«ÜfxL¹†ÇØŽçxžØú¸®bK{ªâ©môqAP×óy ÆOaÔÇ´Ò×gžåÖoj¢3˜µ¦r‰×ÎnQl¦uN¸Œæ5K¿-FµÔPá©Ù³l"ÌÆ$Ò5èÕ¿NyéÏ~Yf·›_&‘½ï¬¯aþR4ÿÄÂÒ½SØÞníU©bÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öê¼y‚†:Š‚žYƒ)éë «š"Àñ;`%͉ÙKô¸’žœ²Þ¶Ãy‰ž«Ï}¦#ÄŠ­rî½ýŽ3Š¹³b[‡8cc¥Šk}e¶ª(!c6ÑTésNmÒ¢{u4ìó#rÒ­+ï¦#¾&ñ-éÒZÛ¦ýÓ˜|ª~Hn7:è*/·FÖ2]M§g>Ä>:†±®•ÙÈÿ­!›ÈɽY4oÏ5ÑþtZxß.ö´Õ‚Öù³xágãnäŠ÷Ï­U+Ój[k¢ª¡…­¦Ù—¶¢ÒS´vr´5¹é aÈôA9­êó±L몜;#\MíÜÖ›ShTÕ~Sæû ä¦jL3`¶ÒWë,FÔÕ.‹S\è¢18>=@–HÇ9®ÀŒÁÌ,×çUuÅøLZY‰Êcn}÷¼<ÛÉî"†(jc¾¼ÜY_%sä|N4ïG²4æ "³-?PxÖI$­"›ZÓª÷¾w¾|º¸35^ûíÝo[äY¹#»áfSÍl»¶:–Ô×TÔ1ôÙÒNk\öóvHÍ"2ÐcÉÄŽ–¬õˆ£ DF¬3ç®oŽ¬‰«æuÞ'.Ë[ã­Êp?'ÕX +Ýj·Q×çMIÎ]Pà FÝó¹Ò 9¡kç±¹97ÑšéZ:¢˜ŽͬÍï=s7vr5} +OäÞ§ø‹?ÑÂÖz»üÆ©|õ³GS]ðæžù[vÃ÷8èd¸CuLš›œ4¾&–G<Y™Ó¤ƒ©Ž¹·1¿žq”çÙ6´ÛµÓ­Þ¾oO ò5C…ª­¥¨~Æ‚ÙUnÒö‚ù T¬•ó9Ù€\×È—zÉm4ÄßdÓöD_ÞEZ¶âš»åÔ|¡rsP܇°cªßQ]]4tóSÓHÀ)œSºc›ØÀ`sÚ÷jn§ébÅfUMú¾VÌ6öÌC4Î +j·uößêðRv¼'ºÿ_vsÃÝQ=4MӖʈ`9œõ=Îy;½-Ù­ã¯|ß•½ü\ç«t[ŸÖàâ¶îKc·ãê¬SÎu2zqiv`L汒Ξó#"„d2ÈœÎkZ)Á}ÿRgŒÅÛUV+nú±"eêÚy&ò]U,üóVÂùWyËg–|å’3eö·iמ¿N_df±M6šgÑŠ£ïSvj«÷Í?}|+o#7;5ª®ÙtŽ:«x¹0:jm«ÊùöÇ&‰[$g ×àsr9,Ä[W¡Ïw\1xŸ½M\r³†Õà™9%¥ÃuÆWOoš¾6×Ïʬ™TP¿X.vZ$&‡´Ð‘Öøf7Q‡UâÑ1nÿÛü¨õbßy½û¾£÷ä·“{̸jÛpeK©.4×;tUS“´†¶i56hC˜æ‰XZðšæßΊ&˜§lSië×7㨮¸ªgdÕßnûÍfÂW»5 ,"îùf¯«¬–Xƒ¶í¹Ï….;Z#Ò]¡­Ëy$­â-m‘Û:óã>Ç9›ß}»¾#ÞìE–¢AïÜ¿oþÝgú ZÒÞ­n¶å#} Ødµíö榗i§^[ Ù6Yf>Ö9ç»<÷õ,Û8“À‰µ÷ÄÇØÆÖŒ¬7+Y—eÏi¦§Úe«FÕ…º²Ìg–yå˜Íb¨Åa›ìq ç'u5n²V[ëO]gŒÃ’ÄeŽH䉱JÉ#aÉÚö–¸¹£¬f¶®óTÕ^ñÝ3~S iÊœ3Õi„¸Uÿ6ß0KìS‘•RÖ¾á%pŒj3M#9‡Ö½|A¹-#y#9¢<Ø꧜gxZEsyž¹ÕºbÖáhr|OÉ47ê©d†§aìsÙÀÍZ[+šD™êé ËNìý ³¥§¤Š£Ò·)™ö±£«VfyD?k§%4·¹è¹ÜÅðAh©´In[FT66¹ú³è#êÈõõîÞÒQÒMS?:›s½ÙÑׂ"#æÕ~V|š^I®7*WÑ߮ά§É-qÇ ;¢@šQ­áóäÖ†¸µ¹Ò)]8ï}snÈ´ßWn|˜¦¬¶¨™ç•¸?¾K1%òŠz{ž t¥ô,·3c‰‚"ö™¤{6ŽžV7g¬ik%¬ÞVj§æzæ›ì´Míß×ÁŠjÃku^Ûo1n]N_‹ðEeÚºÙq´ÖŠ«p•Œ‹m‘JÀ×G$aÌ9 -,s\×4Q!m37¾Ø´ñ¿‹k[f®ð— +¸r1[w¶\9Íѯ¹×WQ×¾¤S†Ä×P¹†›~{6†i9¿[µ«<–±µºªš³Û1oo{ß®œ=ßôñ7"÷«ë/CyŽžÔ°UTI­âh£ºXó(ú‡šK Ú5¼gš×­Q^(í¼N{sc8¹Ó†{-1–ÉÍȯœ“?\¯STÖ7›Þ­ÐÑUD؈{_ ^ÖË õÑ›ó-s]½£¥Ö³4ë·\ÄÆؘ·¸Š­mÑ1ÛõßVŃq%Dµw+Ï9¨m¢§ÙÀbŠ<·™ß‘âIœàÒNmhK@+j¯7Ï:ºí”kêïÍ­6‹lŽ}îµÁSMEuS ædll’††¼4?HÌ7QÌéåžKi›êiya‘×°ÿ)âai^©ìoF·vªÔ±ÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£AФþMꈳý-g«¿Á¼j—Ï[4y2ÏqF^(À€€ƒÉ¯s`2½å ÷î_·ÿn³ý-ioV· ¶h úöå#OüL-+Õ=èÖîÕZ– ÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£AФþMꈳý-g«¿Á¼j—Ï[4 +~åûöë?ÑÖ–õkz f‚¯aþR4ÿÄÂÒ½SØÞníU©bÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£AФþMꈳý-g«¿Á¼j—Ï[4 +~åûöë?ÑÖ–õkz f‚¯aþR4ÿÄÂÒ½SØÞníU©bÿÕßÄ'ˆˆò”ÿÄ¿Š +ÇGª+ÖøÚ‡­tjj´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h>…!Þ§ø‹?ÑÂÖuǃhë|ýCÖ¶jj´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ ‡­¿rpÛõþåŸèkN¦Õkz‡­lÔÔ=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ j´ CÖ¨zÐ5Z¡ë@Ô=h‡­Põ úö<£OüL-+Õ-¨ÖîåZ– ÿÖßijèéä%΄ŸIhY¼±g0¥á3²<qIc˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŸÑCL&oëè„Å%ŸÎaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ï顦w\L?Û¡c–9…/ ‘ೊK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–9…/ ‘à˜¤±Ì)xLìÅ%ŽaKÂgdx&),s +^;#Á1Ic˜Rð™Ù ŠK—„ÎÈðLRXæ¼&vG‚b’Ç0¥á3²<–y6Š„ÆÀGQ ’Ïea‘ÿ×ßÄÿÐßÄåÊ~³UIKWu¥ŠhÎOcåhsNYäA;ºÔŠ~Ã×T^"f;gMLe3Gé‹ýõGß3ÅmäºOFx1ÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‰ôÅþú£ï™âžK¤ôgÓÓ¶8ŸLXïª>ùž)äºOFx=;c‹Ü·r£„nõQÒÒÝiešWic+Kœ}@¼¬UöºbóLÇs1¦¦r‰Ž.z£;?ÿÑßÄçû (·­ß½ÇúM‹Ü}‚ûNžÏl¼ÇØŸ—=®žÒ=Jj1¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤z4R‘ê@Ò=HG©Hõ i¤ #Ô¤zv·!m”ïæ©¿è®Q>Æ}§WbGØ—­—^êÿÒßÄéû ?–‹zþ¿ô›¸ûö=žÙy±?.{}Ž?Én +‹”ƒšã:jé¦jª˜ˆŠo”ÝÚttLÄDÍæb58ý·“ø«íX’´Ô9¦Í£KCFRê™Ñôîz³Ýé[Õ§¶ ¾\ðÊ%Ž‹:£Ñ¿)³´ŸÈ^}Ö–Çâ¡·:ªFUD×Ó7bK£2µÚ‡Qä¢Uö2¨ŠªÃhªbsÏ)u§AL቙½Qe›a>Mp]þÇ[p¨»ÖÄûtL}[JÇ—?FQ’î˜ôîݽuÒýˆ®‰ˆŠbb©´M÷_64zj½æoLLÎ[:ùíÔXHâ:¹%‰×(£l‘†ƳXï98ú[Ô=kµ:išâ‰ˆ‰š1NwÎö³œè£ Õª¨ˆËkžQò%nv#u¶¢á+ ŽÒÛ£ålMs€,ssÈä Èõ•Â¯±sÍVÕ^_}®éaïU1•N/Àø ã\Mm´Y®•r²¨È%’jfÆY¥…ÍÒ5ìò çÔºÕ¥¯GMUUbñi»–j˜ŠffólâÏËòubóv®óc¸ÍRÊ*–STGS‰À¼×4µÎŽ®µ­b*ÅÕ¢ñ17Õt«C™¦fpë¼[®ÏÉž·c7ÜŸpª–š + +7U½ÐÆÙC\8éõ®¿b4Ó¢ˆ´^jª#9¶·-¤™‰ÊÑ3ÁçŽð µ[oªÇÕÑ\6­ŒËÊV¾#“šæ‚AüÄškªhª-19MâÒΓGLULÞ/1œZo·Ê$LäêÕCXʳPù]±©f63ì™.Ì×¹þŸRçöìWMTÓlº§lDÙ¾“AÑÓuåxÙx»îÁȯœÁg¨»˜¯3ÒŠ¦Àaú†æÂöÄùK-yežïÓί±“ª)½4ͦožZí ©ûh™´ÕŒ²ÝwƲr/Qˆ­Öšiλ“ê¶ÚÀÓÅJüŸ!w¤e¿~[ò­uÒ}ŠUDꦚg|Í]Ntè&¨‹kš¦8u½ O'Ö+›î×\¥ŽÏn{#çù¦t‡&Fò'2w7/^ìÕ§ª˜¦-çU|¯”vË1¡‰™´ù´ëŸsîYy¶^1M=¶+®ÖŠ¦‰õÑÔDÆ™XÒ팸éxÈ‚ õÏIö.h¢ª¦›M31ÕÛ±½®ªb'*ºúáð¯ÜZ$ÃÑÞðý|Õpš¶ÑID")[+ÆlËKœÒøì×Z4ÕbÁ\D^&bboks«GNª™™´ÄLL[[’Üy·Ã%u®–êé¯æ¦z}†˜œÐç²95fç´HÈ®ö2m[Ì™µïž»^Ûcì6xoçZö¶[m}®räú +7R*ï,‡ÑõyL#èú÷÷úTª4تª›|‹s‹¸U£ÃE5zWäìŠØö.ÕXž–šµÆ[3ÚÈC˜Ñ·%®vGD9 ³Ì• +¯±øi¢©—{çªÒ“OØLUUMõD[½Æl‘SÞ™…œê·³Ë’TFðËbí=ý,ý9õ)ý‰Ã5žE1=·‹¸S¡½4Ï¥\ÓΕÿ“+)µÜë¬W)ªMª@ʨj`84¼³\e®psC†ñ¸å½k£ûTÍ8¢"+Õ17ê¾n•è"1Zo4ë‰öÉÄù8Áqc»•E$“:%EHsZI…šƒwú¤©b4½8µçÆlá¡Ñô•Dm¿ƒ“Ý9$u'öüU A“œI¢hK@Ù´ÈèÚàsÌ‚ZÏ-ås±7ÒôSQißh—N‡ì¼{'VíNPy³Ð_oôU×)㦳ÓCPéc…¯{Ĥ»?AÞ¸y\ÍÕª©¦×ß>æþO°Ìåb¿{‰Z9?°c Ø¥²\æu4ÒUUÔÕ@#12=îÉ'Vì²Þ7•Ú½=Z*fªâ/xˆˆ›ÞeÎ4Q]QÎÛÌÅ­gòñɵµÔvëž¾Jª +ʱD÷KÊX¥$nss ‚Ó©¤ÌVtzyÅ4Õ›^-7‰†+ÑÄSŠ™¼^Óx³—ßyÃñÏz µÝj%¯´Dù劢¬cÙZ´=®;Æ{³Ôj>ÆUjjª˜ÃTÄ^&óžë$ÏØX™šbsˆ¾q–Qwż³`kn$‚©ó:«de„°”;Ao ¹ºwúWj>ÅbÒÎŽÚ¯iÛ1iö¸Î‚ÚÆb¢*¶uU4Ä_®û[OØ{UkåÅS;­w¢9!¤¬¼Xc¢®|ÖëÓË"¨1h‘…‡KÚöF¦ŸÏ‘ )˜Š¯ªˆ½¯x˜³IÐÄᘛÅSmñ/ÚïÈ°³]± •N,µQsØd nS°–†ç¿ g23ÞZQö34Õlê« ÆÇJ¾ÃZ©‹ê¦j‰ÚéjÛ]mº8_Q‘6vm"/ih{3ËSIëîÌnVTNQÕ­i¶{^‚Ù¨€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒµù þZ û +oú+”?±ŸiÕØ‘öåÇkeW†zÿÓßÄéû ?–‹zþ¿ô›¸ûö=žÙy±?.{}«ûž#åÜI&Tuÿ^±ö?í*»#Æ°ß.žØ}<Ê¥]çÙd»sH`§­Ï\4ñA– Y›ÜÀ3Ç^áÖ¹Õö)¢¬7™š:ægªýn“§™ª/kEQÕÖä× 1qÀ[>ìÆÀ.E.ocŒÄT:BXI-ÒAÍG§KYÑE9Í9ÎS—››½TM\Ω‰¶ûÍݾq4cÛ]“šS4ÕYâŒV´Uu3ŽL“QhêË-9äHÏz‹^Žôi*¼å¤ªpõNq®4uÚtqhΊs댓W'Læø7Æã½´Ð7YÊ£%gö"oVŽ}oÀ¢hbØãÕ«Åɬ8Æ»rEôM§t¼JÂ*!Ža–ÄÃ^w__¡rÒè£I§ˆ›ý§Õ3{›è«Á¢ªcÒyõ;ž’²ª»”‰æ±¾¢L2Ç1º[¡Ò:&Ý'£‘;´ÙnêPª§Š¨ê/+ÂDMë¢ û%À°DÆQðô˜’†=õ ‹e ‡}Q.ÌE¸å»¯×¹JÒN£¯Ìù¹Þfz÷£Z¼Tb‹yÑÕàãëôxË“«Ã㤧 48‰Žˆ2a!suJÒ\\áè9ä=K4QÑé(Îg3õe|j«5ê‹LN]yÛ7ËýŽ‚±òâ&ÑDɪ ¦AR1kß´nM,EÀúŽâºþ:ÃMõc¦ýŽa>Tý§hVašŒ]Q„)¯ñCIpeL»Zht±£‡ëuº&ÈÉ-ËvZøE§K)®ª&fœ1œççjˆ¼ç.õQ:Ji¦¬§¢#/7\ÍŸ+ß°ç(øo cêß2#1A‘"ìõêhrÏz΋MäôÕNº¢¹´gç&•húi¦z°ÄLìµßoã‹vÀ8rÓ^Æš+»î•甑±Ò–µÀƒ¸jps³ô± Òé*˜×M4Ll¼GÔm¡ÒÆŠˆÙ5UØá6<q·ØqŽ6T\)ké*™ sˆY˜Í ‘©¥¹Ï#’í^ž+š4š¢ÕDÎɘs§E‡sÌoˆ—hX,öÜ;ŒlsÃEGK4Özé*¢¦9Ŷh!Ì='}œ´ž—X;Ô-6’jÑé"ó1E¯²ýÉ:-]DLÍW·c«*1m=ûÐÝy¬-¶ß!×OF !‘¤íÂ\KÆYwnSéÑtzX‹Ì⢬ç9„:«Ç£«(‹U—[ž›<Øk_±C™ä©)*%‚pöÌg‰­dlæ]žâ2Ý’…‹†4_:ñúi›ö%ÛìΓæÚ÷ú[qpË~¸ãÌ;‚eµ1³¶Þé"«Éì*&o †éæ¦t±¡ÒW5eŠ"c}¢ÈÓLéttÅ:âj¼vÍÜŽ|fÛoŸ7«lÁû+­¾hÜÒxdĽ`€GçGãEMQ®4—ï¥ÚºóÒLuE(a>\wøKµ°½Ò”aì#h¬x×j*úsË&½õ¡yÓ2Ÿß•KLÎ’º£]QÝòv¢«SMõL×LöM¡Ë¯ypþ+ÇÕP$6êbÝ£[# `Þ×f?1Qh§ŽˆÛ¥öÊE^n’wh¼";É–4¨Æ÷›-q¦†¢áiž†Ÿgtñ™ ÖÆ 77ož½ÃÔ§}‰Ðtt^›Îéªs™›F½hº6*³´^š©Õmp÷|‘U€ð}¦Ïth†ºªû P€¹¥ìŠ=,ÔàÒt‡¬úÂÌWm.*sŠh˜™ê¼ÍìÖªgG£˜œ¦j‹Gdkvn$¿E‰¯8êÌÊZjWÇI,¦˜Í6È´è‘ÅÇS]ŸH47<•}`£G]æ|øÊuEæsOš±i*§(½3œkÕö°© ¿SX¬U²CWb§¨ÌïÔ•{cûòÍao¦½]q®$s¦Þç ŸÓéSTs‰ö>Dg*a +‰ˆÍrºVK™¢›i‘üÚZÞ'Éñmß9xÉWÙÑzZ¸eì‡Ä—Œ;ÊFÅJ–ªI¢«mܶ©±Œ³qû-$::Á߸,ÑEZ +´sU­l9^ùçŸ{5UN—Eï>vz¼ÝÎÊ«ƒ­x##Õmý*‡Ø_µ4Ÿr BÓ}¥OeNêÆ_ñ:°S¹¦®ºžŽJf—4m kœÆ’@.Èæ{ÕNŠ0Ñ£¯ª%Wì›ÅÓëŸ>ª}-1±‰a…ø^¯Ø+4²¶ +Ùê§SIˆJã¡®È òR+ž’t•Æ® NÙÖãLtqE3®t—¶íO£i¹Râ<‰ª$xçvêzÛ{†{ßê ПíÞ›Gæ\k¦hª•Mßiå0íEX±í§ ¼øÂOÅT¸‚š’Ô뤅ñIJF Úí0j9Ùßžã½]Ñ4ÌÕmwó»U•DÄEõgg ]œ„¯È_òÐlØSÑ\¡ýŒûN®Ä°ÿ.;[*¼3Ô?ÿÔßÄéû ?–‹zþ¿ô›¸ûö=žÙy±?.{}Ž kÜÛIÖ_èÔg‰ÞƒÍÏsòÔârêÌ“—èAýÚɨ;S³G3ŸÅóháŸHïëÞwþŸZæ·iә˯,÷|—˜šPsp9ež£ž^¬Ð»új&qÈâGQ.;¿Fô³#€ ëÿ§ÖŒŒ‘ñÚâÓù‰è‡÷m&­z¨îÏ3ŸÇ­‹^æg¤‘žã‘![´éÌéëË3—é¹ÄIÈu ÷ òÚÈ]«Sµzó9üzв7,œá—VDúzÐx‡¸39äg»à©Å¡¤œ‡PÌåðAýkÜÌô¸Œúò$gúPœÐ@'#Ö3܃Ëk ˤîVó»ôz¿|ƒù$”æ÷eíРþ5îgÙ$z7u»!¼îêßÕú=_¾Aý2ÈâIsŽ}{ÎÿÓëýú×=Îv¢I>²I?BY‹µ;3Ös9ŸÒQ“jñ–N;†CyÜ=Có~d`l²4á—VDŽ¾¿Å‹^æg‘#=Ç#–¥ô½ÎË2N[†dîýG¹Ú‹‰>¼Î´ nÕ¨êëÏ3ŸÇ­Hð#>½çéõ þ¹ÙfIËpÌõ~„(;_¿å Øÿ°¦ÿ¢¹Cûö]‰aþ\v¶Uxg¨ÿÕßÄ)œá{ö)¸VUM\%–PçÌ! éhÝ©¤õֽرUÑDD[(Þ¨Òè)ª©œù87Ð^ ãÜ{P|ŠG–Wêóròjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAX7qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþOáä+ñî=¨>DòÊý^g“S¿“ûôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïäþBðo¢{j‘<²¿W™äÔïäþýàÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ùAx3qíAò'–Wêó<šü ¼Ǹö ùË+õyžMNþGÐ^ ãÜ{P|‰å•ú¼Ï&§#è/qî=¨>DòÊý^g“S¿‘ôƒ8÷Ô"ye~¯3É©ßÈú Áœ{j‘<²¿W™äÔïä}àÎ=ǵÈžY_«Ìòjwò>‚ðgãÚƒäO,¯Õæy5;ù9Ÿ'\ák'·UÓM\eŠ`æ :sÈý¬š_¡pÓýŠ®ª&&ÙÆ÷]Øziª&/¯rö^mn ÿÖßÄŽ8þSÕÄÿÚBºÐü˜ì@Òk—]œÂë@@@@@@@Ë$¤¤3@@@@Ë4¤—ÿ)Ê?ëèÿ@W/ÉžÆôk…f©Vÿ×ßÄŽ8þSÕÄÿÚBºÐü˜ì@Òk—Rr‡‹aÀx^éz—{h©eŸ/[šÓ¤~ýÙ߬i«ÁLÌk¶]³”3¢§Q·>Ä»û1v Âm¾Ú±ÂjŠŠZ:KØ’wÓÔSë‘­Ï÷1½¥ zÎK\héªó~Žm3×iˆŸy4ãšm.2ãgdr}˽ËVPsÌ;UEGt¥–²†¥¯láìŒg¦f±£c#ÛÒc\N®®µ½5Îq1iÊÚòÙÛ¹Š©q7ŒVÙßÙ½ëa_Ù[uÄÖ»5ÚÆûo•›;év•1¾vwñ³ðêh͹çêZÑ¥¼Úrœ8¶åïfª-Œó¶ÇLcÙÆôvzËMM¶\KMEs*ül29¬|mÉÌcòèç˜vD–š=$×VŽmhªfc|Z[ÕDSƹ¦8MáÛxÃöLC†®7'Åk3ÚíUÑ[ë+9ÌL{%‘Ík¶P®FF^Ð÷=9u-©ÒÞÙe5a‰¿^­[.Ò­»bœSµñ~X÷öG×àû® ¤¤ÃòWCb†š¦ªvÔÇÎÍeÁ®—CFy€I!kVŸ ïSTDÍû=íéÑbµ§:¢ðúØs—ZŒM{žË[gžÞg´¾ëG)ž7ºZ|²ÍÁ™ì¤Þ»/Ji4™Wxši¾SÕ7ëÚÖš3¦c8ªmÞáx— +ª|„©-t5Wk¥æžy¢Ž®­â(í¤“Ô“ÔÖäÑž`zY®rˆ‹ù‘TõehæÆÎfmçÌwçÉFrqŒÊ† ›è§ ‘åì’ž døßË3Èjnc6¸nsH+¤Mâ'l]Êr™’é»ï쇬ÃW¸ ®±K¾k›-QÔKPÆO#ÜCDÌ¥pÖè5¶ñ½q£IŠb&-Šf#n[cªöu®Œ13{ሙÙݵññ‡ìœ¯ÂÕ8‹e‡¤ª¥ÃÕQAYPÚ˜Ø$kH{á©Îéo`ÜÌù-zl¯l±a¾ûÄ{[N‹;_<7}>R¹p¸SÖ],–LÕ¥´úš–NÈ;'Æ"Æ»{Þ>Ùh ä7oZé´“â>nS1¶Ì詉Ã>–q—È5Ê®ùÉÞ«¬™óÏ=’Y sžâÝîq;É>’¥ÎQÝþùñtÞý”•Wv[+«0ü´Öºû‹íB°TFýGFÌâÈ;fâܵnÈæ7å¾>‹K âØã.Ýžçm&.¼:û’Çû!g»^/ÐIe–+}†¢®Úý« )ãÖÒÖ缌´Íw­iÓÞ™ªc(¿›YµZUÄÞf)žé‹¿˜;—ûž#¸PQVa÷ÐÉw¢šºÕ´ªâ D¶réR÷4‡oÔ+®)Î-çE8­~®×)¦2›å3kÛ­ÓŽrɉ,XZé‰q*+j+îæßE«Œ±Óm߆6–µ°2?ÝÈIhÕ\´UÌQO\×9^{sÝjtÒSzªêŠc;Gf[ç=nÛ¨ý“0Ù¬7ÚˬÃ]eª¦£šš*˜åï«ËbæÎ`ŒçÒqŠÛ¦Ê'®jÃn«öìc£ÎÞ®.îǽrýU˜[ Ýn—» Ô³POMNÆ2vIIª-¾*œƒ `œ¤vðÌ–jÒáˆË9« ·íìÞÄhï:òÊû½î7Ê'+Wipò¢çl­µOA=5ÑU4¶fM+4¾š¨0±Íߦ@rÞÝÙ¥Ue7>)·8)Œç¯Ì™åâäøç—Ú¼/t¹Ñ[,’\£²ÒCYr•µÄbd­Ö\ •á€½Ãw©b½=¦©¶TÕiý›™§E{mª/ñµëb/Ù U é¶Ë •÷C%ž;Ôo²±q9‡k"™sŽYnÍf½&Y|‹LÍú¦.Å4bßʼwÆO£.õ·Ü9b»Xì’ÕyZÔ8Ï;)à¥lc¤'¨p-$°~ë,ÖÚJæ›Z2šq^fÑiˆž9µ¦›ñµµçîÉ×מYj1õ¼[5wñ¥¨„Hp’µñ¹ÌèÈÍMÌ¢2+œWŠº-ªªk›w7Ãjk¾¸˜Žj•NQ©y-°ºç,©‘óEMOOÓM;Ã#`'ss'2ãÔ]kªÖˆ‹ÍS½¥4Þó9DEæw:²íû .xcÞë®ø~jJË<Ô±>0|S6¥ík_ áº\¨êfËÒ´%¢öùÑLÇlëìm^mêÍ\‡rÜÜ/x¾[Í “ÉVFÞuí2Új.,²:~ÏÚßúº]7GŽmò-ßvÚ=<>µù8W윺ÛðåªùS†*Ú¶–’’-»,ͨ…ÏÚ5 né k².?p]*®bb-W´uåŽ<šÓDLLß*b&ýö}:NRªhù@þà«·¾,7%Ʀ—œ²Zx„s¸; Öô¦Ò?lË#§O¥káÇ3ói¦g‡WÆlÍÃ×UQõßSòñuIJS¾·TQR×ÐÏp¢¨Ú¶f½‘7XdúÔ=íÈ´sêëIÒÍ17‹LS‹weö‘Eæ-9MVú¶Øý0çìƒmöUy8³Î‰dŒ7kŸ7Ù±ÏÌ=<ôåèë[Åwªš}*&®nnsM¢©ôkŠxÌÅù:ß“.Y.8w ®Z÷ÖâÚ«C$§8£|¤0‚Aͬ ÍÛ½+žŠ¿6ˆubϲjŸc¦’:¿VÙwG½ØX»öC3 +Râù͸Ê0Üô°%ÈÏÎNc£ÑÓ««~yzµií·ÏŠ|3æÌh¯6õqxûœbáû%ñ¾®ë@ì#7<·Ñ²æèùä:M;Bü²nÈD3$ç¼e½^ŸU3"|îÏk4è±ZÓòµvø,|ªùÉ.u®ªJ[Õ«9ÐËgLšÉ·}§g“r ”™Ê¬>­ïÕÙÚ&þµ­×ÛØí•@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AÉpoòœ£þ¾ôqÒü™ìoF¸Vj•` ÿÐßÄŽ8þSÕÄÿÚBºÐü˜ì@Òk”Åû!0%ï”ì1†Û¥±UÖÓ +×—†Ò1áòiõ¸ä MI4Äꊯ=ßUš+Á=v´wºª³ö4KaÅìžÍ-D¶Û…¦¶Õpum[æ–1#~¡ñí3$5߸!¼®Uh1bŽªèµïž(›Çszt¶Ã=tÕ{nµ¥È¹5¼«Z¨­Ö:÷ÒPP[-³Q™iåÛ>®]:yr,ÇöÈÌ’í˵X´—¾^e¢#?;UÜã ¶~uï»cªù=ä'a˶«ª´Û£uªj†WÔÇVd©¬–:¥ïs3% îŒ’sô€¹hôSx¾Q‚i›o{Ý+Òe6ÎqDÅ÷N§!ܤڬּ-= –ë^ ŽåW8"Y`ºPÓoEÌ:³'Và=km5Dèïo²òí‹N|Êê‰ÇoŸ'/së^cÍòCzævk5dwK£kâ¹×5’KKËLÑlÂ^w™¥™ÞµÑh¦›E£*¦quÌ^öí+®&óžtÄ[ªö·2Æz’´•ÅX£ªªmmZ…‹9ÅW»/(ôÐÅ×ÕA52€ Yíg.†E§,úÖó¢œ8M]׉ö4ŠãýHŽûKÛÄÜ—ã»>#º\lÔu1Þ¬”öÙùÅAˆÓÍF= ®Ú4ƒÔ2ßéÉ4º9™Ò[Us{÷XÑ×_]kswï#xf»à«¢¸4TQÑá®Ø29Ö?:“V®ïc‡¾|P·#x/r›ƒì–ÖCIž“T\$«Û6Tõr;b!ÓÖ_û½YeèÌ(aéš©ÑÌê¦/¾r˜½<ÄMqê›x),%ÈíÓÉxòÛs,†uæž«líÞ×^ùÇ›hž»íìÜøxw‘¬k`±bíôT‘WÔÒÉKe¨˜ÖR2(ÿ“ˆõÈÝ1™³è†·Ld±LSl§Ï½§Ñ¶«öæÛMWÕæÚñém·'À¨ý¸¶|‰íÔ”°[ã¹ÔÑICje[¦†˜A#_3„Ž7i‘!ŒF@$hæ)ˆü9vSËÚÄ×7õ&;fzÜçr[é¯8šL?OIS&¡§¥•õ'RÉ&I¤1ÛV–@¡’Ö½Î:cUub¾ËëËÁµ:HŒ3:é‹[mµ>½‹‘{¾Æ ª‡D”0áVYY!xtì'­a¤oÏÑÔº×DÏIëÅ1OtL9ÓU°z³TÏ|ĺÎÛÈV5´ØðM4ôW8íµUÛêj‹ 3HòcŸs\ÙvcÐZHôoJ陘œ¦Ú:iϪ¨ˆÌ¦¬§ªõÌå×3“èáC±¦Ë…-õPRµÖlE=|®Š`Zêi„=€´s~‘X<Öš=Ó4LüÚj‰ïŒ™®¸œ~´Ó1Æòïž]¹>¹r‰‡b†ÖøÛ[E[Kp§#|”ÒjÐò3 8f3ÈäWZé›ÓTk¦«ÛoUšÓ1i¦uULí±¶å/•|ˆé.¼Ö–zÇÓ:ÝBÉ„‘ {dp’pÆ’es}D4d¹×EUS¿LFè˜É½5DNì3Û19¸íÇ’þPq…Ã\îTTt²\ðÛmPC NÔ šçdòÖõçž 4ÞA\´Ú*«¦½µá·wS¦‹IM)™¿{–bnJ1 Ó àYšÇ]nž°”ð–I þìƒÔXSk‹é)«ª/~úlLÚŠ©ë˜ËïW}LcÉ%Óò‡p¹;C-õ˜nkI“Vol²ÊOØëÒsÏ?Ì£Õ¢ÅÇ¥Äw]Ö4–ÃêÌÌ÷Ùérm…yO¤¦·Ù.⎊Ùo¶ËC!§—nêÉ 6QI‘cL-`éæI'%µTÕ¤‰‰ÊôÚÚóµ®Ö&(˜¶vª÷Õ•ïgYàG9F´Í¨®T”QÒaŠ¹Ë¦Š¤½óG$okd -zÀÓ™$’wš8œTÕ9aÑÍ9MþlG°®c Q:¸«ÞÉä3PáÃM 3ëé1L·È¡|úY,&Ræ´ÈÐâÓžDnêZSDÓMh™¼_n/{yª*šöUkw[ÜðÄ‹ãÜSbÇbªš’*ËýMôñEQª6ˆC5µÏsAÍ¡½dãÕ¹iV†f›uô‘WuãÜÚ$^þ¤Óߟ½Ø·ÎJ±~/Ä—8Ù‚á†bµÀL€PÐàC†]ï.¥>Šk$Gϵ»˜Ñé"œù·¿{–rogƘ"Ñ…,n¥¥u%5¸Cq”ÊL‘ÍŒDM{IûDéLª©š½\1Ÿ^+D[±""ø§²Úø»Í%Á¿Êrúú?ÐÇKòg±½áYªU€€ƒÿÑßĆ8 _ªÿ‰ÿ´…u¡ù1دÒk—Ì.Í Âa0˜@Ì f3„ Âa0˜@Ò–…²×AeƒaGPDçh‰csqÍÇ&€3'y>“½b"Ù7{ù…Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì fr\G—hÿ¯£ý\´¿&{Ñ®¢¤X?ÿÒßÄ;©s.3ž—¦6Ô=$f¬4q—Õ”Z§7ÈçŽö"î£ùVöø¼µ¹ÏìEÝGò¥¾/%Îxïb.ê?•-ñy.sÇ{wQü©o‹Ésž;Ø‹ºåK|^KœñÞÄ]Ô*[âò\çŽö"î£ùRß’ç;Afö2Ïy Ä4QÖÐÎÉà”É#9µÀ ô‚?HOŽ&§ÓFeó­·z+À”ÒÌÉD2¾ 4ôÉç°ÿM7Ò"oŸÆ»Ëãk謰 ùÓ]è©ëa¢|ÍmDÌ|‘ÆOIÍN·ên¦çúBÅú·_»S6ëîö¾ŠË¯aþR4ÿÄÂÒ½SØÞníU©bÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖéNWðÑÅ–(è㪧§¨”³ÓŠ­ðË4‰Y 5úH!¹»÷@²J¢óâo·)÷Ýšg)±kìÎ7ŒùF— +ÝmE¡¶ÜHË\b)[ žžx Kb1ÍÓ«c$¹–ÈÆÈ2ÒRf÷ˆÊfª"{ç O9mkZg8ˆªc«T^cÁüå Þ°¾ÄÉ{š¾žZ:bÆÖ–I¬ƒ¥ÃqÈ䱤‹eëÑm±çGÄwš9¾~¥wÙòeøc ]ˆ¹&ªÄT°Üê+ÄvŠ:È]¢GEQQVi\æ–1ƒf3@-ȉYªfoLztDOܦoá‘LFSêÕ3qˆ˜ñ~¸Ïâ>Fßt¢ŠéQqZYWO%v‰$†¤ÕÇJ÷fÆ0ŽÕ²5„×0€tœ–³TÞiº;O]«ªiïµ²f#(ªvWxêóiŠ½¶z¼¤GuÁöìK‡ê.•W*yðÜõÌ}ic¥ŽXåȘÆ}[Ã:#’ÌθÙ4Lm´Õkrb:§n(™S{óvë\167·ÓµùÅd¡mTôsš¶l¡Ïó¶&ÊïͬÚsª©Ù”vÌÞyDG{”eM1·>èÊ9ø:³^k¬•*êL50EI$R7­¯mÒáú +ãTÌQ6ü)?ŒÝ©‹ÕpÁ¹öšãh‚Ïm¨Ä7I¦«lÕRÇDÆê‡Ù“a"=œ4Ñ9Ù»V[Ë_¼ç¾–-TÄ_(«V¿•®ggTCMq}³Of­Q½ðy:ÇWÌIG„*k¦qš¢Ž÷·.kÜêQ¡Žv‘xÓ›´dÒìúÆKœ×3žÝ,¶ù¾öñM²ü9nï9ùòmwÄp?\+/U†û í«†c„h¥tѺ&µ€±í-ÉÇQ×™ÏÑ—YŒ3mº9«¾)¦}®W¼_eqÓUQìzœŸVß±½6·¾ëSIe¶å=K©6qÈ÷CU#Òí0G2ÖæFcÒJçLb˜‹ý·D÷Íkóo÷eQÝ{øbÿˆ±Ó0Í’{µLv]¤ªª¦ÙÇQ0·Ô +x†¢Ç5¥Úƒå-hÔ[–àJÚ‹é-:¼ÊjËlÌG y4«Ì¼zóÑ<]ŸÈ=ÞíyÃs>éV꺈®Wm³ÃAs ª|lÜÐÉ­vå½zi±Ÿk\Z©“ŠÄº9¸¢¾ÏÖÚN|<¥Š®±ÊëkcuHŠö®mkKˆh.ëkue½DÑÕ•4çœi'-ÕϽ"ºsªr×£Œ÷Óç-°bŒM‡Í¦¢ï5k)#¼Ïnw>6iiªaΚJ-ŽQ£Vâæâ3+½31i«®+Žø¼ÄöÌFn5F»uMÝ9Ouæðâøç^’ßU-Ø‹5Âï#­-ˆÔ¶3TK2d#x.Ë78éåšÖ/ªfoS3ÛTõöjo6×ιŽèk—à‹…þëˆpŒ·Ö9•þM¼Ç&°Àçhš±ï .h{˜ç´ƒ‰–i›Õ}S:*oÛ‹6µeºIá†Tn ¸Û-°SÜ*ùåKO³m¢AÐÒCr ôgé]}ÐæûhÀ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖëŒkƒ(1Ý·™UºHôËñK ´K Ñ;TrÆìŽNiõ‚$A[M7¶é¼xU»âÒá‘r1l®mÁתʫ´ÕÔ¦‰òÕ:6–A«^ˆ› #d}<ž\¢ðÒNì–&œ¦6Û>¼µpf+´Äì¾]Yå/VnD-÷* „mtÕÐAJú™ÝÑA ‘‘°1`†§8´¹äæOV[L_ïQ3;âoÌEVá1“—(Ä™Y±E}}]p|‚ºÞÛl±ç“vM‘Ò7-ááÎÌ;=ÄakUUýi‰ï‹ÛÅškµ·_¯àø4|Œ[ Á·ZÊ»¤•ô ’Z·³[iØK›6L`i:Ëò/sÀq' ³4ÄßlÌLÏ]ãW+µ­ª/hêÏ_æÎF(ª).q\n5µó\h…½õhÊq™ Œ1Œ`ÞKœâÒç»{‰È,Û^ù‰™ìÔÆ+[tLDv¹þÂôØrJÙbsŸ%dÂiü³èÆȘÁ5€4~“éY÷Ì÷Ìݧº#„8Å×’»UÞ,C’Ìý‘²£Io@GÄl÷n:Fg<÷­f›Å·ß¿/ô®‘U¦û"Þ>÷鉹5ƒWÐ\ ®ª «¢‚JVMJcÔè%Ó®7 öäKààšá˜!f¨Å3VÝ|nÖ™´DlÕÂÏ•„ù´àø-ÐSÔÔÈËsk™ÙÍq ®ûmsƒAvŸÜÒß¼•®µ½\=×sl‹bïÏÞúÖ®Lm–xpüQK) öÓê#7ë„Âv›·ô\Nì·­ç9¿«4÷LD{F«z×ï¼Ïµá„y.µà×ÚŸM,Ï6ºjšXuu2¢VÊòü€ÍÀ°å–ìÖ)Œ?yŠ{¡µUbûÔÏ|ºóò}æ¬6_%ÃrÑTV¿Ûߪanti†fèš)í$ntzXñžD®vÃk_*m–̲žú¥½ñ_Vu_>üþ§[˜ò„+0>Š’±ŽijjêÝ=œæ¡ò†Èñ˜sÀpÖFíYå¹vŒ¢#dD9U8¦glû"=Ö«’+l´²GUM<æç-Ú*ˆœÍ¤3˘vMsK IicÚàæ’¡sŠ0ÚÝX³û”ÌÏ‹zªÅ{õÛ”DGƒó®änÑrÂ5¸rzŠ—¶ºGÏ=SžÞpéÞðó0phk^ FÖ†µ 4 ‚Ö½UOT{ï Ðÿþ(­kÕ-éÖù -š¿¹#H d’H d’H d’H d’H d’H d’H d’H d’H d’H d’H d’H d’H dƒëXGðãOüL-+Õ=èÖîåZ– ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖêîP±«pœ\9¤•nuE=3!‰ìcœú‰[:RÐœ 'жª«Z6͹Lû +b÷Ý|¼3Ê4—{ì–;•®¢Ù\)ùÔqË$32XCöns$…ÎnmqÍ98fðViœWÛ¼nž¾LUï¿/®ç”7Z¡RÔE1‰Ú²‘Ðáû—i'K¿1ȬÆlLX·Ý¨.á撦áÛ&—{.ÒNGóŠk'' ¸ò“l¤¹ÅAO•[䦭©Õ±9­4ašâqÕ¹îÚÈ ú²ZÍYLë´_›aÕ¾mÊï·C‹­Ó[©«*¦Šo 3lê&‰®fÔtZã«I9æÐA!Ä$­ç)³XÍö«nTvÀÃSÏk SC®Mmkº¿pn ×—dî‰Þ‘7‹Ç¥o û3å%³¶ëøåÛ“°'½Ûifl2ÕÀÉñcåc\^Fa¡¤‚\Fðܳ#~Y,°ó­»Ð[ddu50Âù56YÂí#7i œ†ó—PÞV.YçW]-µC¦Èâ|½¦µ¥ÛVð7¥Š§ Lì‰äÍ1y¶×À³ã;eÒÉo»M+)"¯ŠbFÃœ¬k3$üŽY7<ÏRéTa›5ŒâîFkiÚée`1é¦æÀF`¸gÑA9+V^«ïVØßUuHΙX £,þ¬›÷oèæ›ï“hÅp]ï7K[#{_n4Áïq_Î"27N[Æ@dsËVäŒâûæ8DO´œ¸_œÇ±ÊQéíþ$?У0ý«¿“™‰»ý +ÖLηYrŸÝl†|µóܪ$1E,Qt„O”—>R–ÏžI5g¶ü¢í¢›ÄÎËs›>½—ÕÏC5]â‡É"#¼TTÁ#tåöÌŒ:3Ý“ˆ+7É¥¶>ëî´1ÃΨ„G Í205ÃIvmvy8iÛ‰Ü ê 3‘w¯ç §Tmç´ùÊZÖ ´y¼¼jhoK¤\7´ ˆñ˜AíQÜèî&AO´Ö?J{­ ]T”±TBùâËidcžÌý¦\ß߀…Ÿ bÚ|{e§ºÓÄø£œÈ$ ¸lätg=9å¤ÌV)œQ¶"xÅÙª0ÌÆɘàülÞÝ{µKs‘–ª*)ÜꇱžgB\\Hh-͹œò éx‰ô¢'‰1œÆÉ·(Ÿk”G]M3˜ÆKœömö’æné4½»ÇHf7ûÖZ½:‹ý®’Ï-et˜¢±vCö²Q¾´I˜ÐÉ[o¯Q.ÏÕ—çHÎû°ó¿¹‰ÊÛïÊÞ÷&@@@AômÉô?Ä¿Š+ZõKzu¾p[5q)q|bx¬/‰í’j7ÖG.mÐñ­ìíkn¦¸ú ]»¨¬S7™‘Ý31ìϵ™‹DNÙ˜áøìzVNP­w–\æs›MOo­} §žF27¾0Ýe®$ÐçlúYæŸFKÕÛ3&cØÍTÚmº'Œ]Ë+.”VênsSQPî;I$cÒê鸆ïôoßè[NMb.ð®¼[í +Šš˜a‰Ùe$²±Œ:º²sˆ?FG¡5q«ï(V<9z¶Zjê"Ž{‘—cªXÚ>­š³!Î'ý–d§nÒ&ón»_œG·Ä¶Wßì™ö=ëf+¥«¶É_W•QÍ,N5ÆÐ6rº=Eú´€ì³h$nZÓUâ'Uá´Ói˜Ù/±Sv £²ÍS lsKß#ÒÐ3.y#pú–Ó“XÌ–ïA=’¦ÓéÛ:Fôž£¬9AÏ"“‘wÁ¼c*;MU¦ ÂéP`ŠHœÒÀD/›Y9ïi iÏy…­óˆÛ<-ïfÙ_dÄqrZÊÚkt/ž¢VCn|ŽkÑë.qÒVof".õf½ÛiàlòU@ØžÒö½Ò°1Í2àâr-y äõ™›k".ýeºQCIÏQiô‡íŒé=NÖN?Ÿ<’rÖD_Sù-Ö†Nxúˆ[O¤?ld`Iêv²tä}<’rÖFo™Y‰"§«·CfvW:@Ù£|eŒ ŒÈwæàì´·œÎíë1Ûtχ½‰Û¾#ÇÜút×Zʉi¡¨†I¢ý²6HÇ=™ûm¹¿¿k|¯±µœ òŸG‹h­µ±ÓI ôµ[I_¶†ÉÒëveÁÃ6´4ê#rDßï1WÕS†mëM½‡ùHÓÿ JõOcz5»µV¥ˆ?ÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öœ?d\Ua("‚sO#îÖ–²PÖ¼±Æº ëÈî>•Š¢õS÷?ÀÔÚ‰´U÷ö:sRâÚ¿¥åÉÍ-žýQ‡Ùˆ[ гC%?:ÒæçµÓRöëÝ­¬‚ñÓkzˆÍf¼ñÌú4ZzþMS6ïçf±–zUßeïå~nçýŽn‰¼˜Ø&1H NòKCß‘ß¼œ¿~TšæÑô(üR—uͽ*¿—@`Iíòßð=Ɔ +(«ënO‰Œy–ºXÝO;œê©ŽYæð £ÉÚ¥º³jᣋ[WÚS6žlÇlûní\Þû´‘·˜žÏs×À6 ]·à;…=Ë"˜2cÝ=ùþe½uEN¨Ÿš}­)¦k‰¦5ÌeÛ‹ØœpsYQ‰­GÅü§+©qC†]mŒTHòGñ6ÓçúBh©šf)ë¢õOÓQ~™gK8¢jê«ÍŽê¿ÒÄ?®Ã–ºI®•ñSÆ*joÚͤ¸ ë@iqߤd2oP;òÍ"-;mÑÏ9f&ó_eŠ¹>µ[)™Ê|‘SÀÉr¡ÍÍcüŸnvð3ÉÎÞ}ï9•Tþ%Xù_ˆçÃHõ¹Dö«ÒmE4RÏ-)ŠG´9іЇµÌ'{ÔÜŽá¿pZW•5O_I9ýá¶9¦? Çàž¶1¥´^!Çóß„OšžËDi_6’øáuœ =&—O«QfEÎÜ} _±hÒmé&?·Çkmº6`Ž7›û9*KfcÅŸÝ-ÿM±?;²¯j>ƒæ÷$›-¾Ïm§¬u·›Gƒh¥Œ]"|±µ¤¸TI`h ÖíîNð:ñ¦ˆœw·Íí¶Õß;Šf0ÛÖì½ãØþ^â¬Ã6{dTÕoª—Ø)¬ñÍ$n‰ÓM¬lr<—5ÆšyN%Ù3yXÒS5Õ4NX°L÷eW+\¦¨¢"¯Gq¼ÓÍïcl;UN4‚®{e,4-¡‚žZši&ª§´±ìK¢Fõº´ Ý(#3Ô¹ßê}$öÞôÛ—µ¼FG©Ýo:ÿŽÝ·ÐZn—ÜiOz{y«ÛfºG˜†êPA.æà=={”Š¢&&ÿ…'¨·7*fbßpöÕ~J/­bZ¿ˆ?Hloñ!þ…‡í]üœËüMßèV´êfu§>\¨$º^0m’ú[}¼@í  ÅÍ1d>¬‚Nf’2÷ÒbôÏÝ‘øÏÞÖ'Έõ'Æ· ÆT¸{Vâ + ÊGazwTCJáNe&¢HÁtËKˆvN”æàÜÉ'%ŠòšãÖÑÄF¨¼Þ8j¾æ´^ÔO«\ß\å†{ç]·¸&"£m™˜ÖŒ6ÛN|х例Œ¢Œëœ7[·m§÷¦–’Ü·dBÅ_;îtn‹ÝµèßM}¶´|qT¸ê¢áIɵÂ[qpªežGBYž ñM¸·-ùŽ±–ü×O±sh«¶x_>M>Ãg4÷q¶IžkSì´O«´Õ[™Xì%Xøá´ÓHÃ4e‘–M4›G7[«fHÖ÷9ùÅqûb»l§(ÕlZø_¹×Aça¾Ù×®öÕÆÝï½-£ +[oØtXã§cåÃWLõ‘ht=áŸiÅÚ²s³q:†euÒŧIoÂ}ß+.\¬å¢Î(¿§ßòfïRÝvcè9=m¾V>©¸zã$MÀ¸9¶Æ5¤¼tÆ_¤eÖ_±g]¿ Ìýú‹5ÑFTßð¤xTúØIøa+ Çfî|ë ]CFtÍ4m¦kªÌîfòíeÒ’[1ÜC³ZipÓŠÚ°ujÕ¾¤ö¶ÑÞm}xþýŸÅ»7“z +(1…–´öÊxjðÕCùÖ“ |3S#²Û¿"zE£~³™Ï5Šé´i"m•«Uï1ñ¹‹ßçUk×ònü0E3(lüždQ²Sn»=‚&´j›™n'HÞâà'yÜ +㥼NZú­ÃFïE³¿áX¿ÞÆ¡²ÑSr}Sjd"¾ª*žxøôíea¢‘Õfr:N-¨Ó™“=2nˬÄDå«¢«Âœ<ý®S31¿¤Å¦ü½Ë“«ªÅiäÖº–ž8§™Õ;Y£hÚÈ×PÔ=ÍsÇIã6‚I´dAo•3uÏâ´KYÎ'îÏÁÕ›ÉÔöù/øáA 7 nOŠ8Þf­–'C#‹ªç9k%à3#¥ù DµcEN¶_iNQ«æLvÎþÓK7‹çö¤kúhžÏrƒýŽ§>Oí™{U?éÔ«‘OÜ)ð†Ú_•Wܪñt--=EÊ« уFa–ïˆÎ‹„n–ó²y msæ‡<7hY¨‘˜',òZh¢ñN¯´r¾ÜQ~\®ÅSlZþÔ‹Ûf7…<ðòicµâŠzȪ)è.Š=PÄøalUzôC{žLQÔÆÆÆìôœú ‰™¦"ß;G4ß}æª|-U½¢foÕ]3Ê"¯Ë÷¢Áµ6Û¥®Ëq³>9·X,fY'sëd``ÍÖýî Œ·¬WM¦¸ê¦š"'Õˆª/ñÆÅ5^)˜×UULöÌÄÇ)ñsMé©Ût°Á%Q«‡Í9[·{Ò#TÀZ÷4hË­Ää3Íw´N;êâ½û+»–©¦Þ•vûê‘Ã4–Û}¢ŽžØZi#‚6S–¼È Mh !ä’á–Y8“Ÿ^kiÞÕöÖÑ´'Ðÿþ(­kÕ-éÖùÁlÕÐÜ·Ý©0ÖLaRtÃjª’:ƒý8«‰Ñ;?Í´̹UTÓ7ÛMQßlQÎ-ÞëLb‹o¦yÚyO'Ta|7 E{…‚²’ëp–*€×Dúúœã[_ÑsÛ’hÏ,‰ÂÞ(ŠjÃ?7G±1‹ãcY«bŽ½%û­6ðŽ÷Åä➎ë|°PV¶9¬ÍªÄœÅ•¯Û*†ˆÍ® ŒË²0 nà¹h³ˆÅ¯£Êû1Úü-Üé¤Êöôâöû¾ýîFÙ0uÖ¶Él±ÒSO).•0Kv{ÝI ¨Ìc…߶{¢9µ±Â k´s‹ìÑÆs®Ó9xg=†®úç(Õ{gõ¶Ýòù)¥·ÝíÜ—ÔU2 +‡ì®Ml¯c˜Ž'˜ÃK³97 X3èä2ÞˆùQ÷\vý¶ã:¦:ºIìùïg +R[îw<9KudRP¾å‰\Øç 1>­µ/Ù5Ý80ÊXžðHÞO°Ñx¦ÿ„²¾ÜQ~ûr»¶šm5}Ûì×>v|ì#h·Þ¯nŽXcžÛû¶‰Žñxã:AÍ®¯Ö7· 2Ü‘¢ˆœ=eWø¼Dr³–’m¹ÓÇß›ÊÍäÖ6‚ÆÚyÞüOzmUo,¢„A­îÚFikŽÆ€:nœÖ”g}ƼçdW1ÇTn†õe‹îTjÛ4Äðñ—&2JL4ÆK ¬Þ£a§b luY6&æí1Ü·2Jsš>ë¯Æ +âØþç£ðwï,¶ê{»,ÔΨ¦Ž Üúh«b2ÒÔK2ŒàuÝNc·ö‚â2J¾TmµYN©Ë>øêk§g›Ÿ~]ÓÖŸlÑa›ÍÛRU[ॊ+½öÒºQ=/;dD¸Bç×B\K¢ah = µi£µUSoÂuÚû«¦'·®Û+¼S?s¢ößM\:¯½ùÒÒ‰jè­´<ÄZ|êºÅLʶ:JB[Mª8Ãæ‚Ñ>ÛfÜôŒ€Ühï8~ã¤×º¼¾û{nb¼±_]ôw¶úsçkï}‹-žÛu†ÝS=-]²LAvÎ(¡1ѶvÓ lŽ{^ÆË´s7è2f:!tÑÚpõù•Úÿs»"öÝ›Jæcܨ¿Þ}³kïr·; PÞðɱ +8n·½ÌÏ@‘”’„«fÐÏ0Õµê諶Ûb§â7YŠ¢ùuô”_· üK€ro%œØ²† + +(káºIP¼ËW$NƒX}\ç-£‹·¹¹/Ìj%«XŒ7Œ¾Òœ£WÍ·ookjæñ|þÔŒçé¯ÙÙØú¼‘OEMIƒ&¬s,—Jé2-¶¦òì÷iÈóÝ’Ö™ˆÎutTxÃ},LÎ_…ªð©áYl°Ðàû¾,­µDß.IGMOK m#[HjÊFNæ7 ÙíµA æ×è å’ÎDDÆuU7Ê"z¢{#ŒÝŒW™˜ÕM3lë˜íêÙ?|·SÃEÊu ì·Ão¡•ÐPÆO» 3-k³é€§äÒwn,Ŧ™û¶?Äü¨û®|jrîVXÛQÄ-·µ°±˜b„€ „Ö¿j[£,€Œ¼æßÎV•üªï«Šý—žVäͨ¶¼:KvÚ›s|Wí–KAÄ”¸~*x¨dÂo}K)C[|à6•ä3v·FdÉßiÌæ@ m'ÏíÑñÅ7ånLhþoe|0Ç·Úí+f³XyF´ÔñSSφgl@F׆ԵºÞ[–n s†³Òë­qÒDêËw]qàÒ‰›Q1®óáLø»÷RÛèmt[È4±Ã -yx1µ 3'u 9dìÎ}y­ª®q–§×Z² úöå#OüL-+Õ=èÖîÕZ– ÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öã5ÖúKœb:˜Y+ZöH#C€{Çsé4€ZzÁë£WòKeÕm«|1ºv1Ñ6RÐ^ò ˜–a® 7¨3X±wÉ´àë†9ã¡·RÓ²£öÖÅlg˜Éá  çqÌo>´´ZÝ[¾wë~6œ †ì22Je%;˜×µ®†ØC_–¦‚Öƒ“²Ž£õ,êbïå»a«>£Il¤‡S^×l ™¶A“ÚrhÜà2pê>•‹en¦oúßZšÇm¢pt4ÐÆD-§‘´e sÓÈ}™ÉŸdgÔ³1{ï׿©ˆ›wju¶7äæ²ôêkòdpÒDøÙO]BÙ⌜´K’×1ì Ñõnˆf´ª›ðµúã³ãcx›qî—8Á˜fb¢µBó#i!lAîÖâà\I9 Ã<—Y›ðˆîˆ·±Î"ÜfxÍý¯^ŸaŠJŽs ª“mDûFÓÄ×md?PnaÛÏK¯yõ­"-©´Íõ¾¤XvÕ0BÊH<›XZ#`lrfN¶ ²kºNé HúÊήí^ _Ÿ×zgá÷W>¼Û©MKÜ׺m„{BæZâì³. XÈoXˆ±3wÛ¯¡¦ºSKMU&†V–IcÚá‘kšs¸ƒ¸„˜‰ÖÌMµ=XìVØj`©e,-šŒH#h|q³ŽË6°énm7pݹm×3×:üXݱùœ;ju£4w?hbÙ·Ay~ÓQnYj×ÓÏ,õtº÷¬lݨ¿?k׬Âv;…LÕSÐSÉ4ñˆe‘ñ1Î|`‚÷›š4æKörÔÍÞÔÖe@ªRÂáVj£iÛÝ I˜é€ÞˆÏv¾_bî å’[†8ª—eQ@Úy©E ç4M–zVZ÷RÈ r/iû2fÖ¸H\ê£ï×nÞ˺S^[«‡k¹èí´ô4Qѱ¹ÅM„5ÛócZ‘õæGÖ»U8¯½ÊŸ7¹ñî8/^ §‚®ÛK¿Ä~•k}[¤t´Ñ<ÉÁåÌiÕdìݘÞÌÉ:OG2woX˜½÷ë"mÝ©ðiy<ÂÔ˜à´ÑFÃá-e<@äË[MÞÇd3iÜr’ßÙ»—26ÄÐÆ€Ðn €ý :ÚÆO…dÂv<6é]n ¦¥3ä0BÈõõý­ gÖzýeb"Ù6™¾oÆу0ý‚]­º–ù¸ê†Øzk{@=/O­f2Ëãã&&nñµ`œ;c¨VÚJyCœàø`Žã'ZÐF¡×—ZFZ¾>,Lß[÷¶ášy磠¦‚JŒÄÏŠ1Òfs!ä¨s î'zÄDF]LÌß7©iÀxjÃ4sPÚé)䌸±ðÁÒñ“´–´˜Ürë–b,LÝî[°’ÎæJx o’Fâc4¾Q”Žn@d^N#"áÖ±nè·vÂfïv±Ú+&¬¤ ¦‚yóÚË,cß™Ìês@'3¼çÖw”ˆ¶DÍÞä+m3)™,,m!&œ66m-;0C¢Kz9n$u–>;õ¾=.Ã5¢ Ur‰vá짉®o釂¼ï÷ŸZÄEµ332äVû}-ªÓÒÄÈbfzYC3%Ç 22I>²sYŒ»˜œß*» XîTFŠ¦‚žZs!”Äø˜æks‹‹ô‘–¢âIwY$œ÷­f˜á©˜™Ž÷íQ†íVöÛ¥£ô Ñ0Ä4ædÂ4$ÝÛˆo[kb2x_pµ—66ÜèiêÄgSDL4ž²5ƒ–~œºÖ-vn÷Ÿi¡’]« Œ¿d`ÔXÜöNÞcÏ/°}-û?™fs¾ý{؉·v§íECOl§Žšš&EM Ž8ÚÖ5£ Ö´dpp 2ÃÙ@@AômÉô?Ä¿Š+ZõKzu¾p[5|뵞‚ÿI%}faý„4þN¥ÙA)ž&lcÓ¤ê20e“^I$¹¹ÊΫnÕ¸™¿~·ë[„¬w*#ESAM-;že1>9šÜââý$e¨’IwY$œ÷­pÆ­š™Å:ö½¸,VÚaL"¥…‚O¦6pÒDy€#qÓ–crÚÿ¾!‡¡_ƒ0ýÒ™ÔÕVêYbt®¨,’ÜÓ+·ºLˆËYô»íIX´pÔÍù¿Z,'d¶–šj +h´ÊgnÎ7)K4@dòÞ‰pÞ[»<–~¯=l_ÙËSÛ¼Xí¸Š”ÒÜ)¢©„ãѶFæÞ£“Aë f&Î~ä®Õz¯³8SÒ¶†Ú*¤04ÆñQ`É iHÔs?Òµš/Uçјã4ϱ¶+E½hžS×2› Øê-µ¾‚™Ôm6œÂÃÈæ2fZFGxÈuï[Ì_[X›j'ÂV:›km’PS:¹Ó˜XbnG1“2Ò2;ÆC­bbú؉³Ù¦Ãöº6S2HXÚLù¸lm-CIÙ€:‚AÓ–`V×÷w1ñÞù4X ÛjE5ªŽ)[&Ø>:xÚá&ñ¬ÐCºGxß¼úÖ± ¦o­îœ%c4í¦æÛ&Å$ bÍ")lŒ7,ƒ—M½Nô‚“<-Ý)×¾ýû_6‹“¬)m†xií4qÇPÍœ¬m¶2FS[)"l±l$ÁCâÌ›ÀoI¹“Ñ9çÖ–æ]ï[ðÝ¢ÔÀÊZ8"h„S€ÈÚѲ‘@}€\NŸ³™;·¤Åûý™1o7¥C‚0宎z*km$Tõ·Eµ’z:m ÉÛ·oÏr[+3~·Ö–ÏA4ÆgÓÄé &œ¼±¥Û"s1ç–z Þ[öIô,Îw¿^½ÿb&Ö·V§³GG¾ééãlQFÐÆ1 kZÑk@Èààg6",ö×°ÿ)âai^©ìoF·vªÔ±ÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÖßÄE}¶ÕMp™ÍŒ]¸æ=Có©ú:¢!ªs|Ÿ$Öpž+¦8k†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†^qZªÃÚLg¬z[ëý+àŠ_­]²®Iäsc$8ƒ›z³ý+TY™¥ëù&³„~-ñ[c†0ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ËÞ¶[ja«‰ïfMÌ’[»wéZUTL6¦&ïGɃ÷‘ø·ÅoŽá“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ<“YÂ?ø¦80ÉäšÎø·Å1Á†O$Öpž)Ž 2y&³„~-ñLpa“É5œ#ñoŠcƒ žI¬á‹|SdòMgü[â˜àÃ'’k8GâßÇ};-¶ª*øèÈà“˜ñZWTZ[SNnàUé"ÿ×ßÄ)ˆ‡ðå?ñ/₱Ñê„Jõ¾6K£C$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ 2@É$ZÂ?‡âai^©ìoF·w*Ô±ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖëŒY‹éð‡03Å#Û[[ s4åæÌ1ÏÌŽŽ »3›†å½óˆÛ~Q3ìbÙLì·ŒGµðm¼ªZ.x¦õ‡šÉ=¢ž™¤v››#KˆfüóŒiטjnKX®ñ5uS6å{ò³i¢ÓéEùÙö°¾6 Ä¶[mÑäR Œl’ªd²c6´ Y9Ädrng"I‹M·G…Üýóãg!ªºÑQ’É'‰¯t#C‰ –€ÒAÍÙ#ӑ˨­&mÙ~QvÑøßgÁÂÒƒYm×Hþ¡·ÄÅ3˜$9‚t€IÀ Èny ýKhÎÛâ'ŒDûI‹_tÌp›{–¶ºšÝ §©–8boÚ|¯k?Kœ@¿+³[M#ØÆÊÂé­i.nî“Fy¹»ÇHf7ûÖXzRâ Tm_[NÖ{Nš0ßµ§¬»/´ ‰tz÷#6{U×;\[j©â†<À×,cs=CSˆŸ@ô¦¢×*®tT?·ÔEGWÖHÆtsWHÙ3êÌÖB|›f%‚ºšª¢vóX駖:wÆDNËi¨;KX‚= %ò¾ß|DZ›gnÏ û_U×JDÉDB9¦<ÈÀ×5f×g‘sŒ=A'&".þ‹•©yØž#{Q#vz}­yéÓùóÉ'""ã®tL¥çn¨ˆA§^ÔÈÍžŸk^zrüùä“‘w³ñÕFÙb{^ǀ湄9®¨‚3XÜŒ:Çr¹dÁ ¹:¯2-ðÁ$¹>6ç%C‹b¥îh28 {ÎMgH“]¾õ÷Ϻñ}Ž‘O„Ït}lœÖ݈hë© ’IaŠI›ÙáyÖ‡1ů'#¤³0ð n`.“ÛãUÜã8»èÁq¤©šXbž'ÉBF2F¹ÌÏ«[A%¹ÿM°Íž¨¿ÚˆŠÊ|£`‘çmE‡©îéniô8äÓëX¹gÒ†hêcl‘¹¯c€s\ÒÒQf>‚7,ËH]íæq©‡jíY3jÍgGÚɹçÑýÖî§$fÏÒ–åG]8‚x¥‹ÖG#\Î_I¤Þû½(X§¹ÑURó¨ª"|mY#C¬ë·!é9äPáØ·”Ì=ƒ(hëjª¢0ÖUCKÙ,ZK¥vàâàÒÆõ½À#yZÌÚb6Ï²í¢›ÄÎÏ{›ÉUQŸ#AÚË€nG¨ê',½G<–Í^œ×»m<žJ¸³tŽ–0Æ»<´—iÏv’sÏvHYûÖÜhí°íªgŠ÷ r½¬oK«¤âÿFýþ„ÔFeuÊŽÙ–¦x¡a!¡òÈÖ4—uç >Ö}D63Åø"Ã]x¨òEG ç{#ËSƒd72~¬ÎKZªÃ˜ٵ1~~}Cw¢ˆSífŽ'T†˜™$kžH&‚Aqï ÍoTZmÛɤg~Õ7*:9£†iâŽINQ±ò5®y†4\@+ ØžãGM•³ÄgcC{Liê%™êú  Gq¤–¥ôÍž'LÀøƒÚdh=EÌPÐH Eq£ž¢JvO¦ˆøÚö—°¢æƒ© ú34ŒË?*{ž®SUP=á›BÖÊÇ80þì€IÓý5ÕùÐqìlü RMSm™’6æ§xkØòŽŒ“¡ÎÉ®ÒK ûMÞµ¢¬qG[jéÃ3š[$Ó>x›4 –Féð:ËZN§eéÈ–ÍIn4ÔGLùâlÒYžÐ÷ÖZÒu8N@ä…‡Üi#©m+§ˆNö—6"ö‰ÑÖC3ÔGç$ÖYü7*6±Ï3Ä×ìÜí£rÏ-çvd '~d ³BÏ+ÐmÛOÎaÚ¸¹­jÍd·íÜõßÝ3”ÖLYç%ÎŽ–S>x›4€–Déà:ËXN§ÎA×5\®Ù#©¾RS5VfFù`ŠXuÉ­šòŒ9ã{zŸ«Hk·´Š±jêªÞöfÞh¶¾¸¿¹ØºRBøc–hã’qõq½íkÞr̆´œÜG§Nk¤ÆvsŒó'»PRH#š¦Þç¾V5Åε ¢7ÖFð³çÚñ7;u‡G5£kˆ:™+52Fä~˲swäC˜àBDߺf=¾Öf-ÂþÇ!êF¯â¯aþR4ÿÄÂÒ½SØÞníU©bÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öèî\h¦«À÷)`nsR1•Ñ¤‘³ôB?~•ÕÚ©ùµD÷DçÊí´tâ½>”LwÌeÍ â:L_ŠÕ-ñá½ZðÌr¢ß‹D;caœ2.Xº–ûË%tf}9ÃNÊi3’þöíȽ™;SX3êM$Þ+«¯S×òbi·}ûÊ"ÓDuaÎ:¯Šby[¹úòiaeÿÏr½Ó¶[ŒnÌâéšc™ñÎ^ðÙ“=Åä7ŒÆeIÓSÒLzVûä¸hæø#wàáÂ?cUM|w !Ä°FÃ= 6Âæ¿[N<é¤j¤%qç@‹³å¡Õ¿ô¸c(ì}±±ÓK¯-Xª¦¼çß»'k¸ùb§­ºc )@ÑFúipqŽàÇILù™LaÌižd,1˜',ÂZõu|™µûi¿.Lê§é£Wdû}Ž‹Ä•\ Bì7VÚ«Äw[›-®£…Ìk)É“žÃ eq.‚(önÏI•±iô.S9S¯äÕyëèó¼÷egHŒêû•6Ž¬y[Žwïv‹à+®5±Rˆ žÞ0©}#*×1Ñó†—½ÍwDÈIq=&¹Ï=y®ózïl©¢ßqóµw[¹Â&mNúª¿o›í»®pM&¢«æ3R‹-ÆJv]Øùa{Y]¡Žh½´Ú4¹Ù‘$u’´˜¾»_¢ÑÞûõÏ…ÛêÕ«¤¯W(ñ³”òw„¬÷ËÞ ‚¶HîÐSÙ.RA$°½¬p‘ÈŽRâC“c/ÏpkÇ¡fˆ½W}9×®síb¿“–®’¼£V¨Ë±ëÕÃS[Wo¢g50TbëËdekúgÈØžè[+Z[«7X ȼ Ç ±D^(Õòtšöãžv¹\ÛnVÌ1ËSƃ Û¦ª°[æ–š¶—λ†Pà 㦈Š9Kà‰²9Úâl™ßW™-rQš:üÝ-»/ìÕ Õ”UÕžŽÿ/:+u7(­Š6Ú4«ŠXüim ˆ³ì†ºA™i/ËrÓGžŸÃ¶î™·½›é2Š»4\â/õ_oQYŸs³Zðà¥æ¿×GUcú.vÊBáXÒÖ–ḵú½°;µ –iÎi¶«i-}±1«·1VQ7×z/m–ú×vï!¶è-V›ŒõPOn•­¥ŠHéá:›®DŽq1±ú²-:s%  —]ÉŽ½yîÅ?Z79Wò§»ÂQ-Ô—\)][rÉåè1¯È1ÔlŒ€àrú³>¢}eq§:h¿á_Æ–ð³z²š­øOñünå,ÂV×rŠë ¢…ÕT6«p¢è7(^!©,Ù7-,v`Zp9nXœ©®c]ç>¿‘ éÏN®_-Á0m¾Ëm“ê«#!u”õ<öHòÚM¢sê]9'–ÔiÌ¿2Ù7 ŽåÚb"f#WEWe­NøÞã3}$vÞó~^ÇÆäßaéh¹5/¡Æ¦ã9sÛi§tlÙþØÖ¸5¯ÔÖ2%½Eã/¶ãñŸ¾Xª©´ýÙ>5û”g!4ñQa^o C"†¾åloÙc[0kZ= hÜÜá¹sÐÍè§î1ígIòªû—²%6Üð•š¾×x¬––7T?²#6_Xê¨Xæ5ÿi­s\æ¹ €àã˜9¬èé‰Á¾ª¯Æ¼»2ÔÛI6Ǻ˜ð¥ö±­¶Ýe›[¢Š:[[ñ µQDqfŠ-¨s[“ZÉ$êçÖRˆ‰Ã«¤¯ñH˜û÷SLç1¯£§ñi‰äñÅ;G—1-š–¢ }­±™²ÕFkÝ©Æ cŒµ¢9ƒc@Ì´‘™ÈëL_fZO6'Tù—˜øëoV_xÎc_Ê´OÇSнÑY«ìüʦÑII=&-¶ÇS Nlô‚IŒns©‹˜ÐÆHÂݤzZCõNg4ÄN¹Õzª™ŽËêbrÇ÷žqÞ d= :ç´´:m™'S³:KÝ×™Y®/]Q–Tå}˜¦öäÖŸ‘×5EöüœœO“‹E®¾é†m×à¹ÚÙiºKJgˆ¶ò6µ­:9v{(NˆÜâNË77&•ÎŒþVvÑÑi—›Ïƒ¥yjËìʵm´Z<^QP[q þÏEjæ3Ùa©–·¨å–3•Yd®Œ4æÖi qÏL$äkïèQ¯^N}º¯ÖΫ[Ó«Vܲñ·{éro…,×붧®twx"Ãu[)'…Á’0ÖÄÖ»e1qÈ0éa~g.;Öb/Tß?²è×õð™kTÚ2ËìÊõjÕŸY­•“rjêŠxdsb»ÆÇJÆ=Á°‡lšàOC.€Ï£Ö2+} Þbzú(žÿ0Òå]$þ Ü_²2ÛArÃöîwR†Þm`mX×VÆ»ípÜ}cqܶµê§î_©Îþm_qöèy@¶Y_må +²¢8EÒ†¢&Q8†‰`k)á4"ŸÒÀé ´ˆòv`ç¼.Tü˜ž¾’{~TDGWtùÖù¸#ÂoÏØï~\Ÿ3¹.¾ºq”†Ù!ñ-˜Õþ?5×O×oJ?‡=àgñYOÚÔüC_ŒÊ{lÒ[íû)«`–Yé¡u¡-.‡´ƒµÔFž“¥¹õÏI®¹Õ=,ç×ómõ;Ý(ÕLz‘Ù×w¡ËDÔw[N,Òs‹m¾*ŠúòãQµÙ2HÅ[ŒêÔ_«7JHÒKIX®s™Œ¾ÍˆßxšxGÕmDj‰ÏÌ™ÝiÅÆ~£“ò—Oi‚ã{¼Ï5Ò +w[|r9ÐWÑ9¬Ñ¾Šlˆs_©¯1ÏÖÉ:FÙSTÎÝ&¸×”[|{&Zg4ÇÜ5N©Œæý¾èw/'ö›m6<ÆÃO &3ÐföFÆ¿)(˜÷f@é;¤ï[·œÊÛG‰û²¿À´®oo¸ÇO™Q†-7þYŒÕ´ÑÔ>šÅá´9¬y®—'†Ú†]e›wäBÒˆóª˜×j-§Z¾M1Õz¿éÞNmÖ7 Ýg©¶C]%â§Sâ‚g×Ï(}@¨§™úòÓ¤tËda¬ÈŠh²Ãªó£]~fwì«>Üši3ůåƾ¨Å—.NaÉ=m‡ Üjß.ÔÔÖi–?Ûå¬úý»'szF6€C›'A¹G¸)Suôs1÷˜™çÍ´ç3}]&z´[»“ŠòMf×æmÍõ6Èj§}Sži ™Õ•.0ËΣ¨¼Œšþ“ÜðC^Öµ ÔÅ­«í)Õ«äÆ|xÍÚÕ37×ö§_ܧ.ža»U®ÍÉÕm=4qÔT\j#–f´m$dÕ—1ïësC IhÈdK¦Ž˜½·Gžÿ²â|Z×7Š·Wø9‡wòj·[,5ÜÒžIºÜÚí“ÂtUȤ²7z†á¹pû ö=žÙo§ùuvÇ„:'QÛªm\¡\kZÏ+R\£m®ËolTæ°Ók^âr È<—gžôÕLL|®“¾øâ-÷žMõͧVï“9ñrˆi0½|˜¶¿4sŠ{ÍO‹ºðå¾Ýi¤§·8:–8cd<È mh !ä’á–]"N}y­æo­Îe`}{ò‘§þ&•êžÆôkwj­KÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖøRÄÉØèÞÐ渹¤f#"ô‚7·˜¼ZzÚÄÛ7n°²ŽŽˆ[é…= Ù%4[hñç¡Ñ7,˜[™ÒZœ–wìÕÂÇ·_‹ûzÁöI<3ÜmôÕRC¾7Í$s7çÑ.ã<º³ßÖ±lïÖÍúŸU¶Ê6TËRØX&™ŽIF§µ™ékÖCuÜ3>µ›s×àÅù=a›DPÒBÚ8tn¦h Bà AŒeÐ93n[‰”öE»µçõߥóZñ5/5¹RÃU íœìkÛ¨uœDzZÄÅÙ‰³ùK‡­T2SÉ$1º–7CdmiŠ7e©‘ä:-9 Ãr!šÏÖîcã½×u\X«¯ì«šŽô, 4¤t -kÍIœÈZ@9@’Iê+X¦3ßÄnËÞÚj½·MS;ïos^0…‡ÒÅI_AMQ9lã–&=¬Èd4´Œ›»vì·nêY˜¾rÄMµ>‹-OCiâlÆaádg"XÒE§Kz#!¸nܳ½ÏF³ +Y.rÑÔPÓÉÒ¤‰ñ4±ò8ê/sHȼåÝyïÍbÑ9lf'›ô¦Ã6Š8©b†Ž2Œ—Sµ±´I¤Æè’A#"A>µû<~uxRÉ]MQM= <Ôɵš7DÂÙ$9tÞÉÎÜ:G~á¿rÅ£S8¥ù˃¬Z…©öúgQ7,©Ì,Ù Ž`†e9ïϯ=ùæ“ÖÄMŸVÛl£³RÇKG pCÒÈâhc=A G‡Ó2ñrªG-5Å´ïš ¨màè‰=‹g©pXˆ·Æéø‹³3~ññ3[º– +©jÙ4Á’@ÐñzÖCs:sêÌåÖ³1wȶ`ë–®jº;}4Ϙ–H¡cüÎgS€æwŸYÞw¬D[&fo›Û¦ÃÖº&Ò¶HcaÂœ66ˆpÒáC¡˜Ütå˜Ü¶¿…»²÷Cû÷üKÝ¡·ÒÛ#1SDȘ\ç–±¡£SÜ\çd=.q%ÇÒI%kbsïz Ú]ã4pé|â©ÍÙ·#8pp”Œ·É˜_ÚÌšÌeÝ«ã¼™¿~·ë=†ÙVÚ¦ËK ÅX :6‘(kt¦c§“FCVy ˾_3lþ>3|È0F¦µ¾×¶•´o%Χ³dâH9–e‘;†ó¿põ$ÅÈ›áÁj6¯&Òó';Q§Ø³d]žz‹2ÈœÀ9õç¿4˜¹gÙ¬´Ñ\(ÝE<ÉNæ†:'´9…£,šZw¸nYœØŒž•÷ YñE;iîtpUÄÇ5“ÆÙ e˜#–íÞÉ1}lÄÛSñ»`û úŽ*:ë}4ðC–Î)ac˜Ì†CKHɹ ۲ݻ©&/¬‰¶§òñƒ¬8†šjû}5D0e²ŽXXæ³!—@“F[² ·u$眱gÕŽ×EDu ‚6Ë[<062AÐÒæfÒ7fíÉ×ssåMƒl50SA%¾™ÑÒ?kLLÊ'æN¨Æ]fIÌeÖ±knÔÌÕÏ[èÞ,ÖüCHúJúxª`“-qÌƽŽÈæ3kˆÌzŽô˜¾²&Ï•S‚píe]=dÖêY'¦k[ ¯…Ž|aŸd5Äfsìú2Yë¿[ÊÝO¹p·ÒÝ©¤¦ª‰“C+K$ŽF‡5Í=aÍ9‚¤‹\‰|{ž°^ê`©¬·ÓO58)%…s9€ÒA ¼ wõ¬õ߯oY|­Ôünø ßêÍ]u²’¢rÍ‘’h#{‹2#I.‘‘;Vek†6kmLwŒ–ÝwëÚתÝOªË ¶;‹îM¦ˆUɉó†4Hæ á®YÐRÄE»Ëß¹ì‹m#jÍ`…‚wF"2éÌaÅÁ…ÝzC‰ ufIYŒ¾6|ª\!b¡¹És‚‚š:É3×;"`•Ùõæð3ßÏ~gÒ±mDÍßÚ,!b·\¤¹SÐSEW.zçdLlŽÏ¯7žü†~¿NimLÌÝü·á ¦¾k…-453g´š8XÙ¨æspœÎóë=y¤Eµ7{0aËU4TÑGI YHâøØÚN ‚èÀ“œ3œ}egÙîµ¼öûîó·X-–‰ê'¤¥Š*_´™Ñ±­2?«SÈS¿9Þ‘È™»Ó­Â+Æ+M4µpå³ñ1Ò7OVN#1–{½^Œ–"-™3x³ûW„lu÷(îsÐSÉWA“¾&:FåÕ“ÈÌe™ËÕžì–b-7ffùá÷FÝ_ANêÖPba”d22gðqÛ^Š–ír¯©Èj㆕Œkz,¥…„6"ã©Ï{—D‚[’ÙMó¼ÞxZ>7É}Vꌸßã±Ë(hi­tÑÓSDÈ¡‰¡‘ÇCZÆ´dÖŒ€nn kÝ«ÚX^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÓßÄA~Š™× ‹¥ êÞ ôNjÃG{B5Q›äli8ÎîÏŠß?‰ih64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIhy6ž‘Ä3³'/ÚÏŠ^~%›?²ÒÒÄ÷0ÌìÚH?V}¿H™Ÿ®L<64œgwgÅ3ø–-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-ÚžŠš¦VÆÉΧ†l>+3]˜‹¿'ÝÙñYÏâX´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh~ÐQST8µ³ÃK·°õ™ô¬LÌ}vb.üv4œgwgÅg?‰bÐli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ% ØÒqÝŸÏâKA±¤ã;»>)ŸÄ–ƒcIÆwv|S?‰-Æ“Œîìø¦Z 'ÝÙñLþ$´N3»³â™üIh64œgwgÅ3ø’Ðli8ÎîÏŠgñ%¡õl‘S +ø e$ë̳ýþkJïi÷·¦3w +¯IÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öèž[±5à a†ÕPÖ6ŠG×PSº¡Íâ8ç©dr;)Afæ¸ä\2iTçLj½VžËLõö6¢/~»S2ùgPà E]Ú»¾ùO´ð„tntNšQr­n­EãqÌä:#5œV·]æÑÛik1}Ö‰—¿u办Ôb…Ö‹”•F™Õ“ÒÇn–šœ<³k0Úi–’ØØçÈàMÌšíÝ}×øêg9˜öøë~wŽ[­5ÃCIYr2Û™ua¢Ži¥s‹Kó{Ù‘g¤ï=@nª¬31?6מ«MóäSN(‰Û{vŽ¹^´ã+5%=5\L­¦ueDñ†EU4ët}"ñ§[NR5„ƒ˜Ì-¶î‹÷mk1«|Û¿cžaûí.& Žº—^ÊMZvŒtn踴æ×FðrϬdzŠFq¶"{¦.Æ©˜Ù32}„`@@@@@@@@@@@@@@@@@AúCûc‰ô(Ì?jïäæ_ânÿBµ§S3­ÕœªGz‚ÁY_kºIA%-MFL‚ „†8‹Ú¶cò·÷9 üË–š©¦™˜ê‡MES=scÆ÷+l¶Šùë¯÷ ¥,uqÓSSR±ñ±±±Ò»¡±`Œ€ Ü\çÖæJ“¥û.©§9´Ì÷^ßÍÆ>"­W·]ØÖŽQl—ÈmRÒ¾W²ê%4çbü†É¥Ïœ¾©ÍÈ·'å›ÁhÌ­bo«®/Ý—½µ­Ý6ïø‡9F¢£hþO¡þ%üQZת[Ó­ó‚Ù«¥ñå~!«Æ6;%²äúªé«ç™ñAÏq§ÙhlÇ€:g<†ýËXŒS1²›÷âˆö¶™´Fú­÷ÙŸcˆØ9EÄSIIC=T5/‹¾Ï-LQ5­©…´Ï—=#6²@í,°å­ŽË HMXí¾4Ÿ}½§•Ø®0ßé>ý1xæçÖnWí·»­=(ëc‚®y©i«$‰­‚y /c:[Aû[ô¹ìk_¤é'vjjźñx¿\|rfªp÷LDî™-<±Zo7()¢¥«Õ5RS×:6ói§‹V¸Øàâñ½ {˜Ö8´†¸îÍMX»âf/×öS‡ºm;¥ådå~×}¹RÒ²–®:zçËd±µ´õ2D^ÈÈqx91Å¥íhxi-%f‰ÅÂñ~¸ÛÎýŒU{¦ÓÚçÖ+ý&#¦uE6½ –XNÒ7FuDòÇdÓ˜:]Ôá‘ŠS7ˆ±rbÓ1²lû+-DJÕûkÿ¯R¢­jöÃz_4u-šºBûQ‰/Øök5 âKu<6¨jòŽšžbé$©–2\fcŽA¬š[¿Ò´¦&f¬õM1«lLûÍ¢ÙkÅ˽øá®Uªi,rùf#Qr§¹ÏhP³}Tñô˜bcœ5ÆDŽÔàÖdî–@$Ux‰¶s|£m31=ÙM¦bùE³ÝTE»ó³ëý3ZßA¬£¬ud•· xœäU1›GDà^#0m5ëÐY‘9­¯{[;ß–¾ a×|­nz¸¿GrÁn’ÝEQOC[=UlÓÓÅBÈš*6”ÄíÚð÷¶6ˆòé<¿AͺIÔ3Æ-VÎñ~í]{òí0ë¾V›wëú¯N¯–ûDMµ¶ž†¾¦k˜©SŇҸ6häkÜÐÇ4“™'FM'Vö抯1âý׈ö˜m¯ªmßk¾[9`§ÃâµÕÜ欺û%¦ž()ØÙ6M‘‘Óæ6ŽÈæz@4f´ŠõF¹ªk·ÒßÙ æsª"(™úk{_òå]oÃbºÑk«çÝi-õTÒ²,IcÍ®”0íXð"{æ’às3ŽóM³‰ªÓÝ®3ëb)ùW×ߎ©ìr·ò§Š²ý-Éóèä·Ç(…†VËW-…Ž;YòüšÓ¸Ñ©o{FÙÇ1ì¦}ºýÍmyÙæÄÏcõŸ–û=¾×WW[IYM5M--M‘´ÔFú·µ°,{šö¿P!Ìs³Þ>Ð!c­õaïµìa׺/Üå˜?A‹ªk¨ÝGUEWBèÄÔõlk^+K£x,sÚZðY;0AiœQ}öÓhŸkE»âñÙ«ØùÇ•z ]%'2­¬}=8««4q6AM.I3sIÏKˆdaò´»NKY®"÷Õçª/ŸÕÝ ¢‹ÛlꎹpÑÊ5îóÊ}%šŽ Å«É­¯3ÆÊgG8•úX÷9ÏÚ6 7Ƈ™:Æë4ßÄõZ8ßÝ—2m†&:ïì÷æíK¾5¢²]›n’>Š¢¹¯Èh,¦-7<óÖòË,½+U¯º"xÌdzœ1ÞÛæÜ®áÖ¾[,7* ek£ž«é++I•­ž*06¦ptHh Õ›·-¦m{õS‹ºño-b1jëªÝö™ð‡…¿–«eU=Tµ4ÔN†‚KœQÕDÆ:¢–1›¤‹'¸f3±ån¦êhkUXbo–q²ÿY´SŠbÝz§©ð åzkõË ÏM ô6ë¬|Ž­Ž8Ì°ÇD*+zNsÒw“¤œŽí9™Ã9åjžL_„³LbŒµâ¦8Äû`å"Ý£·U¶ +˜£¹Í$T›HÖ5sÛ)ÒNÎ9ÂèÝ&’Ah ·Ž­ñ{|uîi={¦ÞÇ`#¯aþR4ÿÄÂÒ½SØÞníU©bÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖèÎZ0ý^&°SÒÓS’.vÙ_hpÙEWäsÜZÖ‚]ž{‡QI‹ÕNê¯<%šfÑ?qŸcË”Ì$É쌂ÓAy¸Û¦si♲*Èž÷ÐÜÃZ ‰=@–Ñu;«‰žCIÎ*ßLÃŽbv^p¦3º]©íu7.V¨i£ækÜÉéß6L9ÍÒljA}––œòÜ´›Úªm®ÓyÃok¬Zñ7Õ{ñ‰püÉ­óË $ð¹â $Ëy•›Øê‘,tM>’5nÝ‘%9Wé¢#}©ª¢¯“3éW3ºóL¾ÞÂW›}FuE$‘Š -M=QpS+â§kXýûœKYý’¥U>tÏ«nûÓ>Ç6#׿uª÷»âÃtžõATô²Ò=ú³†|¶ÒâÑ«I#x†þ¢8Î"vÄM¶^5vÇ[3®wLÇ·×F¤?¶7øÿBŒÃö®þNeþ&ïô+Zu3:Ü+ÑT\ð½Úš†If¡ªŽ67­Ï|/kZ?9$ù×-=3U®ÍôSj¢wº‚ uß]°ýèÛjªãŽÄ-•R±¯šZb•¤°¹¹´–º7N—i'£¼IÒÍ´•Lgj¶Øš¹LKžŽ<ÊcTƾøs‘ò]KwÁ–+U¶²‚c-lµµ71ÑÒe’¡¬”ç¿íˆÆœÆ°}֔Ţš}"/Õxúù39ÌÕ¶©›uÚ~¶nçYj ú6äúâ_Å­z¥½:ß8-šº”nNiñæ7°Ip çTÔ·+˜c$~ÇfZæœÝ“²ëŽkH¦&©™ô2íÅÆÓTÄE½.XgÚû8Em~¤³P¶*J¬s>8È£ØNò[µ\¢ “OHw‡$e7sE¦ÛqbŽZú®ÅYÅ£TWÙ†byÎ[œÚÙMˆï˜›Ý®6óLYKu1¤™ñl!£˜Üݧ1¨8zô^&óèEö_M˜ªozwßl3uMöŽï…n0Ô¾‚Y ØÖJ˜£nrÀú'7\`œ¸8´ ‹rë!G§Íš/·MÛœKµ~tUÙ¢ã{áŒA}·_¯Û*šêËÍ¢ª*G1¢¡Ôö÷B×É³Õ¹Ï {›:´é9.Ñ3o´“TÛdÚ8åys×5o£~sí{x»_î·kÍÞ–‚g†],w8"p }Dt±e3rÚ48ä×Ósô¬Ç›iÙ¤ªrÙ4E7øØÄù×´DwÅS6zØ‹ +â []y½Åm©…•uöAÌ œÅAP4ïf£¡£[²êÒÂrÞ”Ói‰Û¤¿dE8[ÍW‰”LvÌÍÝ×`³ÖÓcìC]$.m=M=¹°È~ËÌM˜<7øŽ¡Ÿé :8µ÷Õ¾ÓÆ•ÍíºŸÁL¸.$‚÷„±!«¥µU\Yy¡§d˜1Á“Ãìå.pÙ±ÁíxæÑÒ`gÊh›U®©¼lΘ§>ËpuŠ¢ôÏU1iÛò¦¯mŸ§'˜ç„1=½’ÆçÁI†)-î¨ýçŠ|ÜÀzóË¥ÕÔ¦U7ª©Û†ÝÑ0ji˜¯ßg÷—ü1~½SÚêl>j†O%¡™fÚjèöSHs#£M{½9¥Âi½QS”ÎȼU¾ÙÖ&"'lg¶m1nnþIï÷JügoØ© M%ªGä'>9“/Hk‰/йÍ3U33®ñ©ªkŽ7·sx˜‰–™™ß1û/Þ÷ñ=«òŽ]T,õ”f‹Ühöu c]5U\L`Š×lnÌýf渹¹zrë¤ó±LuÅ£nubŸ 4Ñy¸bzª¼ìÊ-í~ü¢òAQÊ] ´V6®Xi掽ÔÏÙº0míŒ1îë tƒIíe¤î%gON:æz­U§ªø¢cßmÆŠ¬o½9nÎþî÷gà î'¢´Ûè/6ÙÝWòPOî·m£¯aþR4ÿÄÂÒ½SØÞníU©bÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q|›¥Š†ó-,µ1ëu$¢™$ s5n#>‹œ29ýKÎ'®/nø´¶¾VÛnSwÖYj úöå#OüL-+Õ=èÖîÕZ– ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÓßÄA~Š™× ‹¥-:·€ÌýÓšŸ£½£ÞTEß#cIÆwv|WKÎÎmmÆ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-&GHǶvâí~¯ß¦dó´sJ÷íœ5rÙŸIÏÖ±®ÌÚ_–Æ“Œîìø¬ÞvsbÐli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2ÐöhÍ$ì—jã¤ç–ÏñX›Ì}VbÐõ¶4œgwŠÍçg6-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðli8ÎîÏŠ^vs-Æ“Œîìø¥çg2Ðö©GL÷;jã›ßÚý¡–}kY¼ývbÐõv4œwwŠÚ󳛃cIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h64œgwgÅ/;9–ƒcIÆwv|Ró³™h}K$T¾ÙI:Æ@³/ñù­+™´ûÛSwq*ô‘ÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öé¾Sñ Ë +ÑÛë©ÖÄ.TpÕ‡4;:yäØ»"~É{¨oZÚö˜Ž©›q‰·2#)Ýá1~Wuµ+wX1Î)£­,Ê +9%£! ;iDÆš½NëvfVdÙÒrë\ñÚš¦uÅæ;3§ñhæé‚õS×”öåW„¾E‡•üIe¯¦¥»ÓT\pýÎhèi£ÔÙ%’M³În` kZždƒ¥¤’ºÕVª'æáϺošgWg íms3Â#ㄸF;å¶j /vª¥¥«·WÛ ß m;Kö55,Œ=­c¤kõ7[@[]¸´–*ªÖû4ÌuæÚŠ/?KTÄõeçÔ|®Ùä^{OWo}²6TM\@<Ã)pŠF9áÁ奡¹ëKA+8²¾Éˆ·]çTwݦûb÷ê´k}l% Å5•42QUÐUÓ²9]O[Xó…Á’·CÞÒÒZàwêk†N­¢oÝ6ÝlL[¿SçânU-XP^¹Ì56ŠX*älli2²}a‚¨jv¦tô²­'I;&#ŒD¶Š/mñ3Âlü.¯Y-»RöT9±PS\ Ž=d¶®Mœ1µ­:Œ¯vàÐ2Ëyré3®5Úb;fokpkªvÄÏdE¯âôgåªÓm´Ü«îu´o¶IOU4Ñ7lÎrZ"p {Úö¸8¥Äî#-C%®(ãVü½ìáð¿v~çÆ|µÍnÃX‚zelW+U3gæÕ1D¢][9òÚèt]jµŒˆ,Ïr奮i¦ñÕ1ºööjtÑÑTDõÄÌo³¸mWºšû$w (j#•Ðí +¶{mYg£sÌzèéå¼fBï¤óoàãFn•À|¸TÜ°u¦ãt¶VÅòE,1Âd©tzœçÄÑ.†ÆÖ“¤s2 úÛŸ:k¼G\Í19vEç³<*¢Ó=QlûfÑÛ“¹p†.·ã{kk¨µ†ë’'²Vè’9bqd‘ÈÝù=Ž™H ®‘¦:õ9Ì[-Žšå–ÿ$ÓT²ÓI0\)hZacéD爫’Á™v¢à×–—hÐ×ôuê.XïkuÕÛ´Û„ðÉׯ~ªf{2¼{ÞíË –Ówž‰ôõn§§ªeõ͈Xj$- ‰ïÔžo`sšÒÆ9À9À­é«|Ú'lìøëiU6î‹Ïf×7Å8ŽZê.5ºöP\#a{Ü\àÖµ­n÷9Î! zÏ ,ÌÛ¾b"7ËøØé,³=“˜Ò[Ö¸é+´^=(§²r÷åÚ룢óžÉžÝ~篆¹QÄlÆ4v+¾°@l¶zŠˆé#-“jC¥“c) Œ7 ZÀr~G"3rë‹:¢rŠb<&þ-0ù±=s3ì÷ð³›Øùc´Þçd|Ò²“ÓMWG-DMc+!…ºÞè²s !Á²8´‡–iŠÑ37‹Eæ:ìÆâ#®m~«¾×'£RrleΊŽ® +YYÉUcµí̘Às‰ ='ì— ë{|{ZÎ_ìë®UùlZ×zm²ž¥Ó[ÚÈßXØ%4E!.Ì»KÛ™ s¨jp+–;ÚÝuE7êŸ:"cŸL6ûÌÏu¦by9Ž#åv׆k&‚ZZ¹¢¤1 +Ú¨b‚ÌfÕÅÁÝNvͯÐÒì‚é3žëÚýWÙÎDe¾×·]¶ò|ÌIË— ×\©§¤­’;[ µÂ×Ã'c^Éu‡äá˜c\ñ¼éÓ½i‹Æc¿/{8|/ÝŸ¹ôiya³n’Ü ª· l ª”UÄ]O& É£ sõ5Å¥¡»¤è–‚BÎ+DÎyLDÇ]çTw˜o1׉ê´kpŒqËs¨ðúª–ž¦Ùr·Q2±°×ÂÍ{'¼5³µÒ5ì99¤g©®Ü惒ÅU[=•Sß>붦›ÏlU1Ý¿_Êý=E®ï†®Û[Gm’᫧asá !µ³YkÚ21¼±ÀäšÆ–«DΫwÌ^r4tÞc®þçÅ\¦]¬ò_òªEEjµUÄñNÉÙ*¥sdqa-Ô¥Ù3yŸz¦×ݤ¦žéøÖÖˆ½·ÑTìÎãò©&»Ó[ç±ÜžÊª¸¨á©ŒS:)$”f AœK¥ 8¼èÍ­kŽY è›Íµ^g–lLZ/²#›ÎÛÊõ®évŠŠ:JÖÃ=LÔpV>Úy§„?\lv­yý[Ã\æ5Ž-98îZÓ]ûâf7Ä|u³U8{¦"wLººÉË-öñAS-]5E¸Å‰#¶1òAñ: G±É³;'ºIs˜-Ôw,hªÇÌüéžX½Ü[é)Ã5nˆð§ÞìÙ¹e²Ãv4f +®n+¸×ˆ¤d†ˆ õjÕ¨†èÙ‡ô õ,Ñ\Uß{oµýÓÛÔÒª0÷Zû¢~»Õ-Öˆë¤ÔuÛ.Ù=^żÞ*m­sµê!îs@sZàÝCV•š*Š­¾f#¶&bÜŠ©Ã}Ñ=“>×Ç8£á*z›ÔµDÆÜ⣣µ˜#yª‰ó2 v ™ÒùÑcZ54Db‰Ÿ6ÿ:mm‘yðŒç©š£]¾l^ûfÞü”›Àkˆ‚·sx  úöå#OüL-+Õ=èÖîÕZ– ÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖêŽTðÜØ»]m°fššA]{Vqåùõµ¹&’f"ñ®-1Ûcm¯iÕ7‰ì˜·µ&_p66¿`k¦Ù3.wJº¸î‘dé ºIªgI¿pŒ1Ùg–ä^˜œã §ïQ¤ñ¼]¢©q9}æhðÍDχk£ÇWz¨©ßÍd°CI€t]#%œìÁöƒ\Ó—¨„ªóúÖ· +½å9M¯~4ûI‡qe5†×i¸[nrR3 ÃTÔGf9ùk™#+DZÍk[£F§‡O0ã¹cMV(×æŶ|œûﵶŽpÚ}j¦vü«ÇuœûZ®öZŒ-E¶­‚É5º£(³4óžo˜g›XvOÉûÛ¸z“UWªgm1n麛ð“k|ÏÃ5b–ªîgxŽj—\âc)öqV‚é#fÔÐÒÆ;6ÂFl'0³Õ7•9k‹êãÖ_9úXÏ®:øu;§’V_a±ÝÍCœ*':°0Tš`ÿ©5:;]?hõ‘¤»¥šÞ5EõÛ>3ìµ÷¹Î¹¶«åÂ=·³««0éø^áLÚ9L²bXÆe½ÐyF)6£ØÐ ³õµÑÅ¢‹õU7ÝçW>ÖÕç}6¼SÇŸ“™ã¸]­µJºÙko†¶)ŸQRÛ7šhæ2J#™¬káÒà#,Ô÷µ›‹I#]j•Mçv)ª&7ç«km$ë´Å£¯TSiÝìvw‘.õw\*-¬«¹Í3›CSÑÚSE”0Àíû‹£ioTƒxX˜óu^óyŽÙŽqðÌO²ÑhžÈžS3=Ψ»aœMr±^è-Ô·WÛ]ä·ÒAsªY++#|숼™ ­?X]‘Òâm3kçm%3×n»û:Ù¦b7y•Ä콦"Î_ʾ½bë¶)´Ò=•6›k`pv†Í-5d³¾¼C‹ræ2.iÌ.sN¹Ù]vÄFm±eê×—µœÃ“k4>pVÜ ³ÖPÄia§l×)ªS#¶Ž‘ñ†M4ºb1“†Eï. –ýéÊûæ;fÑ9î×—{…S«²{3·»ÁñùMÂ7›¶9±ËINé(jÚ)®/nZbŽšvÕÄçþg8:1×½ÙzV‘ªÝS¾úb¨ˆûõû›Þ"›õÄÛº«^~ûÍÖØc ãÛ½Ìiªc­ç´tˆC C­´O t´Ú³n·Æ÷º,÷ç¼ Y-bö‰ÕŠ¨š£®""(ü û%´ÚóÕLáß33Wà­Û«]ªéñ\T6{”qÖÍdš˜Õë|³6žV6g=Ò=ÎkÆEÆ7Cv@–Ú8´Æí-3ÝæçË=k›Çâ:£¿Î÷äìŽQ°…ê÷sÆN¥¥|­°SÓS¸d,Ì}Atm$ý ÝÇ/´=-34Õ×UÚÛèêµTÎÈ®'¿S¾°íi¸[if0ËtlÎ9Øc‘¤ ˆ{Nðw)Uç}÷F£$±„¬wÜ9G„.Z«\l†ãEY!Õ( éšçõÑ‚ a''fâ¸h§ ²×£ŠglLaŸe’4žtÏÜñFɉÅïw7#–kªÝp«¯§u4—]{`~ZãŽW^ <µ¡Îœ‹²ëo£§1³=õMVæ礜S3Ùʘc£.Øw[põË Ehª¨–L@ÚöT1€Àêi.Õí3ý±®-YŒþÎõΈ˜Š#Ѫ/ÙLߟvnµL^©ô©›vÍ1øÖû› _ä¶â)¶¦Cu¼>ªƵ¦˜SÔOï’I5t_k› N!šs0ÑSh¦ŸF¬çtW5ßÙm­kœê«m9Fù§ ½®îåq÷ï6jM³:¤É|Ü0ϱ37la×ÑÛõóý×Vü–õß-˜¢ö×n¶”e¸Í¯¶Ù&Ë–º×[1Ü{›r ¢†³[æ¨|!Ì“Q‘îsdÌ‚#qOH7.sLÚ~çL÷y¾é¾Çjjˆª'Õª/¿Î÷»caËf5.m4Æž»Ïl f¨âÒ)Ø4œÃˆÈÝk}$bšãÒˆ¶Ì±{ÚQ6ŠwUžÝTûy0=C!µÂël56ëUT3Ï]QRö²wSspÊ0éß‚S™. ÒØô“ŽA¤óñLDçLÚúï6Ë?¼˜£Í´OUQÙhëúª’;]]“Øèªât3Áo¦ŠHÞ2sØšÒ=Åw®sáàåïŸt3²b;u‹X)mu’Ýk_WK4LG>ļ=ùô_c†‚3pÓ§<÷E¢™ˆˆÙ¤¼öcÅxâ‘TÞfvÑnø£ žX»Ô>ë‰)æ±ÖÜMÚx%¥s**YD澡••[)£ke…ÎÔÒdi¤Ã¤E²õæoÕiª*¿vÎÇ;õú‘ï1ÏÞúxÇ^ê­ü COE+Íp m knSFÇló;ô–sõ-§8üK~ìTMùK1”ÇÝvïµYs}^Tð-óÖâEN^f³P2âÉf¦¬’s£¸=ÃPI›LÎÍ&Ž¨±MîçL^"'Ю'tÌD8o*V EÊtWû¥¢²än‚ +˜ÄsOQ%Sgpk5ƒCuœƒ‰%¹šç1®c®­»)ªó;µºÓ6´lŠïÛ4ÚÜŸsZoØú®é[ ª®áª»sȆ*‹DFȼöýHç2ë* f&¬¼X«.–»´õÔ—©¥«™ûéaÂx¢4±µÁŽŒµñ—9­/ku9îÏr×EÓ3èÎ+úSO…ùY.qTo¦bÛ"¨ž6æúÓá‹ë©jèEº§[1Œ íŸÕ¾™ÕM“jÇ瓃Z xëo¤,hbØ/óf«÷ã÷Ã}$ßúbÜ)cð8SSÙçÁí¶Ô=ÒßÍh­Ò9°¥}p­2í3Ý#GÕìòÖ_¼tw­h¦f(‰ËÄÏÒÌÌqÉšê:}*f#¾"'ƒ‘Ýp¥ê|-x¦m¦Y±7;™otþ 6£ÙÐ×;?P+z#*wWyìÇTøKJ¦ø·Óo¾D;FïcŠçÊtÔõ6’† Ã!kM,rË+ZNdêƒ&2—o­©‹LÏ«Ï;{Xªrˆõ¦yeõ7»%læ úöå#OüL-+Õ=èÖîÕZ– ÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÓßÄA}Š™× ‹¥sN­à3?@ôæ§èïdjµ¾NÆŽîïñ]3ø––ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝŸÏâKA±£ã»»üS?‰-ÆŽîïñLþ$´>;»¿Å3ø’ÐlhøîîÿÏâKA±£ã»»üS?‰-ÆŽîïñLþ$´>;»¿Å3ø’ÐlhøîîÿÏâKA±£ã»»üS?‰-ÆŽîïñLþ$´>;»¿Å3ø’ÐlhøîîÿÏâKA±£ã»»üS?‰-ÆŽîïñLþ$´>;»¿Å3ø’ÐlhøîîÿÏâKA±£ã»»üS?‰-ÆŽîïñLþ$´>;»¿Å3ø’ÐlhøîîÿÏâKA±£ã»»üS?‰-ÆŽîïñLþ$´>;»¿Å3ø’ÐlhøîîÿÏâKA±£ã»»üS?‰-ÆŽîïñLþ$´>3»³â™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–ƒcGÇwwø¦Z Ýßâ™üIh64|wwŠgñ% ØÑñÝÝþ)ŸÄ–‡Ó²ÅJ+à-•ÄëÌ¿Çæ´®öŸ{zc7q*ô‘ÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖéÎS±Ë ÑÛëiѹQÃVÐìéç“bì‰û$9ì:‡PÖ¶½¦6LÛŒM¹‘Nè¿ ‹ò»­¨y\ºCŽ1E fÌ[-ôrKHC@q’‰5zÖᜬÈ~ç#ë\ñÚš¦uÆqÙ?‹C¦ ÕLG^SÛ6Ÿ |‹,XŠÏ_MKx¦¨¯{°ýÎhè)™­’K$›gœÜÀÖæH:ZI+­S†j‰ù¸|&üáÎ#DÇÎÅãå.Ï»rËe¢†–Z:zˈ©¢ (¡ÖYJ{?[™õ4g!ÈäÓ’Åu`™‰êÎgª/õŠiÅmó1×x|‰¹WªªÆ–;m¾Š¢¦Ýr·ËX*cdz2Î-ÍÒ5áŒkÎÐhÕ››9·ˆó¦'ª#Ç㽯TLuÌø>Ÿ*ü ]0$–VÐÛê+9íÆ*i6 ‰Ù1Íy-I#ÉîÈã&»27g¬MêˆÛ‹•3?Vw31æÌì·9ˆøÞú0r¯hž†:¡@2]<²,nÐTíLg1«--eÙŸ«éeèJg­ó¯nëßÂYšm{õ[­âøXs—{$ž‘±ÓVÅeL”PÕMl©ïiƒPy:Éc´:Fí[–)«­×ù_ã¾ÅTá¾é´îÎÏ­+öin±Qì*„U:†*ã毩ip0µúµjÍ®hq`Œ¹¥¡ä¥5EZºïmöÙÀªœ=Ö¾ëýw-Åضƒ[ùåfÑÁÒG qÄÝrË,®ÓQ·v§¸õ À2H”š­ß6‚)¿v·Iò‡Ë}]&ª«²PÖ6á m=ÐËFZI&’0 ‘¾PÇjcÁˆµÏcœæætê#Yªö·]V÷Æ}lÄZ÷ê¦üµåÔíÛýު˄*ëÞù"ž + '/–(Üö=‘:&»Ap#2Æ»I=ì·­´Ó†&cß×½®Ž/o¬â·žY-Xl² ¬«|4pÖÖIK¶SC+sÍÒC²s´3[ÃA:tŒÖúIŠfcª&Ó=Qßñ½Š#DõÌ^#®\^»–·Xñ]æ’X*+hi(¨+Xê&Ê™#¥šGjis2h 7SòKNõ¦,8¯ój·da‰Ï½¶V·]7í›Ï±ß×j*ÊWÅ3]Nø„í—>‰Œ·X~~­;ÿBÚ¿2÷êÖÖŸ;W[£)9hóaêJzšzK<—iWXÚ˜!§Ú2X]©Å­Õ‘é<´ƒ§IÍsŠ³Ï/6fo¯]6žn“M£é¢2ᅢ–áŽXl¸ªº +h «†:¶Êú:ŠˆvpU¶›Ì.ÔNáÒá…ìÍÍ •´U}Ù^Ó³o8k4Û»öryXy_³ß«¡§UÁLsKISQˆ*›Õ!‰Ú‹·4ö°½€¹¹„Å·,¯žÍ¼ã‰4÷çl¶ìäýp+¼g[,4µ +ŠsWK-L:#©®kL‘89Ç.“N—†8µÁÁ¹,Äß-Si×ibbÛâóߎ¹@®Â8ªÍA<ÕqVÓW<ÓÓDÙ&’Hv%šKœÐÐœ\\æ´îÌç’Óv×æßïÑÖØr¿­nS>Ƕ9_³ÔÚ¨+héêꥸ:XࣆÎ\ø µÌ{šÖ‹H¹Á ä9Œöšµ[;ÅòÙ·›uß+M³Úõ¯ü¨AQ‚¤½Yõ§x£¦ŽXò{jß77Éêtrg­½Y4ï#zÍWÊß:Ö잾还כ{÷uwû_¹åf×Ete¶Xªåk*£¶Ë\Ø5ŽꋃµFd0Æ×84¸¦¨®rÕ31ítðbišc>¨‹÷ÛÞàø3—$“Ãx§©-òÝ]­•qÓLÇ6 ÇOܨ¹Ã&—†–ê#S+MXâ›ëª'¾o>Èo¤§ Îëp´{eÏkù[´Û®¦ôõfÕ6†JÖ ,u/ 6?V­Y¹­. 1µä4¸šj‰ï›Fù‹êàÖi·t^wGĹn(ÅT˜J:Y*™!mM\m,†¾wia~ddÝYFd7-¯œFÙ·)ŸcLìlGµÃË%ŒyPªëmžÛ#DmÎIªÆ0ÅÒé3Sò.:HÒý۷⊱ZÝuaï÷3U8o~¨»õƒ•ËMEæ;x¦¬lRÕ¾‚*×C•,•,Õª&¿V¬óc€q`cœÒ‰J*Š­¾ößmeTá¾ë_uþ»çÒòßd«¬l"–µ°÷ÛVè7eSd1ÜýeÝ7dàÒÜÈ-'%š'·ÞÝ×Ë”•S†ûµ÷Û>oç%ü¡Ýq¥ßÑÖ[ª)™n¸>žÊÈšÒÁd0–HòdÍÅùä‡7~y¦Š¬tÞvÏ)ø»m%8fÛ£ÁëÉÊ}m(5ÖJš)£·RÛ#­uS›‡\šäs¶šözY  ëÌiÈœE*ùE6ð¿Öfhù6×7ñ‰}ÜÊÅ«ÖÇFÊjºI'€ÕÒó¸Db¦@2Ó˜šK_¡à9¤·"ºÆ}±kÄë´¹N]ý}Y>Æ/Ç”˜JzJSMSYWX_±¦¤¯•Íˆ#òs˜ÐÆ3%Ã2C@$äµÅ·_»UÛE9_»½Æ¨¹g³]ìÔ·* +zʳY=E=541 ¼¯¦s›) sÚÖµºI.{šÈ‰cín¸¿vÓ ¯|­6ïpüG˄⯠ºÏo«©§ºWOKRQ‰#0Ç.¸Kd‘…“1ìÍÝmÐ×dâH4Õy‹gLÍþ6u³4Ú'lLE¾6õ¾äæ¢Í5 ¦¢Í]QSMyš©õTU +ÁÎ$•†Ì"t¹9­lZ3j.n[κ*~O«ßlDÆ]¾gK7š½i˾bsì·ƒ¼ya²Ü.4ÖŠú8Rë]ÖšºH"É$Mû6’žÑ&¶·<ݤ¿%´åTNËß¾™‹´Œâcm­Ý1.ª½aÛæ&§Ä7HíÕ1 …ÒÊêx%DΆŠHD“><ó`="²pc3 ,QM¦&zô˜»"ÑËšJ¯4s³œûlï^W:X'÷uoúAëM?Éžïm¢ùQÚé +¸/Xxß6ªªæ_--¥}3Ú&e§tSÆÉ£6¼=Ý%ÛóÚh™ÇNÝ%SÕœDr³ž†m‚­”S·)™çwÈ´ÙoÜ›UÞ) ª²¹²Ø-–ø&¥‹hÙ* ¦–'0œÆ–fá›ÝÑhë#Ó¦—Ίâ>uY}æ)»}›4ÌõFz™w}“ÖQòo’FŠ†Ú œmm™9úƒ_©mö"œq1-ÐÕ†bgmùÝÓ–ËmûI„-ÒZ+(Ŷ†¶’²i¢ÒÈå}6nÍÀ£àKdoDôGYÈsÓSÒÌõbÑÕ홥¾Šz(Ž»WL÷F'é`°ßq-.²Olª¡u’)…\ó06L¢’à¨É´Í£&°t²våµf_ªôUíª"-Ýž})ó2×çÄ÷ESUý–íz\š`ÊŠ3a¦’Å\Ú»U4Ížk…MS©™+)Ý9°tΊA9;ËY¦8‰ÌdvÌG̘Ï]æ"-Ù–sØÅ­”ÏϾ[/3~ÝÛ\‹’K}ÚÙy¤ŽŽ‚ån·š9 mh.¦¦¨šB÷—?I;LÃaѤ€×dië×kE¯®÷ÕÙnzŠùÞomVÏ>Ûû]§wµÖMÊ †µ¸ÓÁGqŽY@è±Ò}ÇÐ]¥Ùzò+4ü©û¾ýÅZ£î_”û¹P‹}}¾àø)+/̨Ž‰Ó2¥¬©tL Ù#ØtŒÃIè½®#.­)ób/‘—TÄĺUœÍ­òïÝi‡6Àx:¼UYa}±öê:y«îòFù$”™æ‘ÑÓ¶Y%|„Ï¥ïžV‡µú@[S·«Ou꙽¶Ú9ËJ¦÷ßW}©ˆ··t>UÆ߈i±Sê-6Úê*çÝ¢Û³}²²Œ–ÔO¬–6q#6h”HÖŽ9­tYLug7Ž®¼ã|å9w¶Òg×”Zzï–Sº3îÔüÝ„/ƒ ÍL(fÚœ[ÏC4ô?”Ä»\½<ýë(´h÷N{¾_¾ÒMæ½ñ—ß}Ï“'òÑW×['³\+f¨¾¾±“:¦¥–óM-Cj6ÏÑ3c‹"Eº#Zr-$­t4áŠcÑ™¼ÏmS|YÒÕ‹툴wDZxpP°ZkoxBâÊ̵q±µ4ìhÍΚžFÍ[ý4ç04~rºW8mTEðÌM»'ÜÖˆŠ¦Ó6Š¢bý°žðöÄîÄx]ÕTr¶ž©­º\ÞFèj©ä¨™‘Iý4çUÿÚ©fQ6ê¦"bvÎÛö1UsT_®©˜˜ÙŠ½–ïzï·â{ÖÏUs¶Ý§®¤Ä;z‡äîg+_3#u3àÇ´±Ñ—¸HÞ›žGR碉½3:íV)³LÇ òo¤˜ó¢7[²&'‹–; ^Æ4¼Îm¯œóFû*mv¿Ä4tóöw®Ú<°n×÷ÿ{ž“<{â-Ÿs²y:¤­µbS M,ñ¶¢æk!•Ì;)"}<,’u1ÁÌûC,òÈ…ÏE¦ÓéUÎnßK7˜û<¢Î!ʹ߱-æ–*yvw\8êj …³¶YÝ¢WÚónDŒžCx\ê¦f+¸f;¢[STFÙ5_¾ÏË S^1^&ÃusZê¨#³[jb©5QˆÁžhâˆE Ìí6ny{ziÈærfqU5í‹G}WågóiŠwÆ}‘1ÎîI!«²ãëõ”³ÕÀÊ:Ú)#¥fÖf_ ŒDs™› æç£6“9®q8j™ÛLG|UvÓ=•_ŒY?àÜ=Qu³X/UUÒAMq¿ÇS ¾IDñ +š§èx={Zæhxa?k<ˆ¸h©´S9ý¥l¶â¿±ÛIUæ¨ü9|û-ísÖá»…¢— WEe©‚8o•uµñºZªˆã¨†xÙ,ÚÞ÷—¸¹Ž”ÂãèH£ÍšoèÕj‰œþ'kŒêªÝsLöÚÞçq uœ ùFh*^i­­Ž Öšf:Y´Ù;=BwÑ&ïÚô€w³LZjŸ¸Çvs—·¹Š¦ñÛ=ùköw»9e €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£AônAÅìx:Õ‡n— +hßÎk\×M,’>WÌËXÒ÷1·Q-¹4rÖ"-”6™ÄöðÞ·á+tvû|{(#/sZ\çdd{¤v÷w¹ÄþlòêYöDGtdÄçžÙ»î#?‰ð½»[¤·Ü÷ÓÊF¶2GǬž—’ÃÔæ瓆`‚ +Öªb­}SvÑUŸv66&†´u@Ì·™»X‹<ÖŘÍv¾96”åÆ)`šX%XÉá²Dæ¸ Îä@ËY¦'>îæñUŸjÇb Ã4ÐPBØ)án˜ãgPçéÌ’I$“™$’Neo2ÑõV×°ÿ)âai^©ìoF·vªÔ±ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£G‹^×õr9n9ïcôO©KƒFd€?>äÔaâ÷¶6—8€Ì’rzÉ=HËú×€AÌàJœ ' 7’}?Œ{dhsHp#0AÌëu„HÀ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öâ×Ks®Ô¯¦mDÔÅù ­;ƒdnþ¶¹ÍpÑÔVö¿Ôb&É·“j«žä¦á-ªnTu7]‹%s¥–W2¶Q›ÈéHì³s²é?,†ò¸QWÙtÏ«Z¢ö½·kwª˜ÇToŸÉÁ¹BÄxƒòeˆŸ úŽ¶›LæURÓˆäÈÝ­<ÔåäÄæ%¯98‚AnâVÚHÊ3ùôçqŠŸ êk£×9|ʲÙ6Ÿb¬ºÝçÁXb¦¾¾^w% ³Êö°E´1F^r`$7<²Èf륫 çg‹–ŽœVŽÇK^¤ÇS`Ë¥MæjJšZË]C„]K+©õ2 KŸ¶akˆ/v—7=áÙ 4Ôኢs´kÕóúôSŠbc+έy>eb>Né(Ûxšž²•øv[”qÁ …кŽNË^§mö¼ N ppÏ,ŽK®ž©¦k™ÎiÏV³žŠ˜˜¢Ú§/¾Þïlc\Ykô—ù)j™z³×ÕÆÈ 1 +y`¦ºnÛFæ?-gK³iô;w <`Š©œæ)™Ý6›L;h¼é¦¨Ê&¨Ž9Äò~xKâŒKCm´aé©( †ß[!’˜ÌÇÉQ@ÆënÎ #:œ žhG>•ÌÌÕo›1ž¹˜¾¾®¦‘¿]ç²"lðÆÜ®_hn5VØjé­µ–ë}=\ÐII5`¨¨7kãûuý²\Ÿ:ô–™˜Ï ÚÛr‰ŸCzhÕ|ögoªï,?v½Þ䢫}¥×SGRÒòiQG„«lp\¥‚Z‰êª#ª…º_§¨uCrïÒN“¼kn}Y®4ц˜¦'äÛ>É»µUâªfzïÎ,ã~EëqE5ý÷+„"²ñIOHd¥¦1DÁLâö=ѺG:G¹Äêsœ:91¹¶ª›ÄÆÚ¢­Ù[.Mb«Ln¦c~n߬²ºýd–Ýts$ç4隆Â×1¤HÂÇ9Å»ŽìÉËÖ¶ÒF8˜ÚÖ‰Ã1;WOÉMö®Ý%Îô'c-SZ©ÄPš¬ 3ÎÝ£„²†µ e¡­éqËD×{ëªÝ›y³LÅ6¶¨Ÿ©Éö®”Ó^% S놚ÑSi‘¹QLsóè#Ì Žó×»~ú_³&¯^-Ùçbk£ó"ŸVoÊÏ…lä†æ÷ÓºítmY¡¶Ô[hË)öE¢¢1¦›¦írèk[ÑÐÏ´rÌîç]8ñ_]Qkóž2Þš¢‹[TMýÜ0òEw±ÅOäk³)¦òDŠ‰$¦2km8"9âF蕺Ÿ–¢öá˜:BÍtâ¿TUkíÊ-—vDUkn½»æþ/v¿’˽óIc¼3Wo‚ÝTù¢3ÊáN×2:ˆß´f™Ã^ᛵ4’§6ïÅTÞýQTÄÍ»-—l{Êjµºæ›Úú³›çßîv5žán­€2°ºŠ6Óì^ÍR:V‘”ΘœÉ-\Ü·¸êÏ=ˤÍæwêÝ­§T92ïaþR4ÿÄÂÒ½SØÞníU©bÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öë\wç ìïŽÃ¡µ’ÉBGé"ß ÌíÏtlÔæ°ý§7…´ÞmÛœîøȦÑ{ì˵Ó,Ç•ü—Ýq -ÆáQx¢µZá¹¾Y¨‰î{š`&&ÆÇkcv¬ÍŒÈ!kŽÑ3=US}ÙqmƒÄzQ<ºûÜÖ‡–J&ÔVCu¡©¶skyº‡Tœ$¥i-/'»KÁÈÝ“†c÷ÛUV›üÛ^;oo 1M8­o«»ë¾%ƒ”«¾"ÆÖÊ è*­°Ô[*ëv5'm@’õFçésCÜ!ÍÔ3)ùSÕLe¿Z­†&:êœ÷a»°1v98j²ŽßKC5º°Jø©àtl;8@ÚH÷Êæ±­ÍhÌæç8gd_+ÏeìÌG»ÝaSÊÕÆ»YMª†®ª*ûmlÆ‹(¢Mñ0í]+šÖó{~ÖN$iÕ˜)œõù”Õó>΢cWW1=Ññ›“7–z; ¦K]¾ª¶ªëÒÃHÃr1”çLÆWHöÆÍÉŸhêy¹õ¤Õ³?6*î›[ÇQíÊÓ‡¾µ*VìEr±USÔÏ 5]5ÊY"{ & œ“©…Ú†MÌžg,ŠÖkˆ›ß,·Zñ›l1kg}§'¹`厖ì褫·UÐRÔRM]MSQ³1Ë 9î"79Ñ;A5’¹ÌÞ7‚f»^ùZ/mÞýÌ`¾¬ï6ïøë{Øk•.\!£ªµÕÐ:®‘õÔnŸdáQ 4ê F÷<±Û7äí.Öo®úâ/1»ã&0궩›_{žaûË1 ¶ž¹Íâ:ˆÌr³?CØwµß˜­çÝáv°°>½‡ùHÓÿ JõOcz5»µV¥ˆ?ÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öê.U.xŠÓ†ª$°SIQ\÷G-cß^ðÙ%k$s÷FÂ絤€çä®ùZùÎsâ:þ£4[„e}®”©°¾¿“ÜA‡ìø~ëKQSI+Ì·ô¬¨“ \ù4…ò»,άšÖŒ›,W¦Ñ´Å£é¢gêºhæÕ^fúï=ÓYöyIäÖñn•qBÍÔayíÍ™ÄimC§cÚÇzw™9e’iiš¦©Ž¼ðÕ2ÆŠ¨¦)‰êš¯ßLCêa©1&&ÆV«e–¢ÝOIjª¥—œ>ãQ#éÎLÙ=ùÇ”nÒó‘qýÈ]#:¦­±~TË”åLFʯ;>MŸ{ÓÝlX®ÙˆhíÓÜaŠŽ®†xiL{fí_±½¢W±¥º£-K6æ‘­cÍ™›_1ôÌÌq»kbˆÝ3=Ó~Vf&®ÅV[½Ú™‘½¶ªÈê6N‘I-D/Ž,ó:œÜœáÑ.kˆÜBÞœ¦o×EºñTÌ´«;nª®´:Ó aŒKÉùÃ÷ƒjž°ÒÓ\èjiiÌFv +ŠÞqŒ{æäª0ü#ª‚i$‰’5ÏN¶‚ n¡˜Ô:ÆcxϬoF_ʺÊzŒ³ÈØãnY¹î hÌä3'!¼ç(=Ž¤`Aòn‚ÕhžzºÈ –s”L–V1Ò¬˜×\}³MÌÛ­ô¦š:f:IÖç9Ç ’Iêo$õ,LØÖôd½[¡’ž7ÔÂ×ÔþÐÓ#A—v¯«æýÛú9îÞ³×aô‘áUU N–yÖç¸5£~[ÉÜ7îF_º ed,/{ƒZÐI$äd“Ô5›ÉŽƒ˜#0FüóYœ3ÇRÀøÜ״罤¸äwQÝúw ýQÍ»^­Ö +sQ_S 4@†í'‘±³3Ô5<™ô‰›6ˆ»Þ†hê#l‘¸=ŽÍsH ƒ¼Fâ …–¯Ñ×°ÿ)âai^©ìoF·vªÔ±ÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öž?dUašHåc^Ç^-Íxiº,Á0Gæ)T^ª~åø™§U_qŸcàâÊ;_&øú†ço¥Ž³Ú®ÎªŠ‰³ +6GN9XÅXŽ¶Ù#S^.T3Ï,R[e¤‚’aÚÇPæ7\o?RKÜâã“ÁrÌÄÓx×1LÛ+yÑl»ú» ¦Óª1Dk¾[\Ç‘¬e~ÄuÂ+•Ñ³MÌö•”¢’¦Ž§XFÀÐd§#SD„¿{ZCέ٧;çxÊÓªo×xêÜÖ¾Ëkßê´õ½Ìulº]ùJ²Ao®æ/6»Ž¹Û%xnÚŸs ,Ìœ³.!žC3˜Å135[/2ŸÅÙ™‹SJußÓEæ¶ß‡hêj奞¶ù*ªèhW!æSóvè€2@Á#ˆ{É4 #"AZbÅn«ÑMZ¯œÛ.ÆÖµúí\Ó®ÙF|\ÎK×(˜.Ïj¹@b«¼V¾’ I /¤¥‘Ïžm“òs±FÞ‰ê2åê[ü©§«,SþOW|Ù“‹¯æÄöõð¿½M1#qÀ ¨¸GBEÈC ºª˜G EÒÓTé&JÝlÆœ‹ 7f±£™ªs×z¯}v˜ÛÕ~ÓILDe²-Tǃ¾ž/U{­?ŠÇµïÒrÉ~»ÞMµr°^]ou-rºlʃNù¹àf[Ff'^€Ñ£N{×]XðÏUW¾V´go¾Û¹i)ÃVÖ뾫øäïÎR±n¥·ÖÁ d-¹QÃU›AÕòl]‘?g'=ŽÔ=ó®‘ò©Ž©™‰á6æçª&vEãºbü®ék?*8ŽéTúr͵]ò•”¤DÜÛn•Ò¹ã/ÝÊi³¿7PZhªÅ†ýs7ìÁ‹ÛÛIM±[ª"ݸ°û&_½³”{ã1®–K«+Y]s©£žšš—U-Dv×ø½_]7ËžÊ?§ë8f(º×`,c‹ñ<–hè¬t•² Çjt0¼7^–¸jÌ΢ ´‰šqÛ9½1Û1àélXcu\¥Í0­ëØq=ºÓy¸6à˺Z°á!0OŒÉ6j"ÙFy¼ïqÍHÕTÓ®Ñ~ü.œE[fbÝׇÐÇ7,MSŒlöKM{(¡ª¤¬¨¨ÀÙŸõB#è‚uK³r$Î&f»ua¿~+:Z"›õâ·vº‘ܱâ +Û̳QÉW0†óäÿ'Ål•ð¾™“ˆ$”Õ†d%)sÙµ­Ð[žõ¶ŠqÍ3ÕUú­h¼Äx5®0Äí¦"Ùë›Dû]…n˜×TÉx¢®…´¬ºÏF(_ -<΂I Ù6äµÒ4}Ž¦eû¥æ"gç^gtgkp‹•Ú/Õnù´LøºêÅË. ½Þ)j餫š9®Ï¢}-’ìJÙŸØVhß# D¯:ÌyÀÐFkņzª‹ÎVµâf<"7ÜÒE±z³hÎ÷ÕwÙÀøÖåjª¢–SVéï7ê*–Ç#Hä|I˜Ë¤áyýÛˆ'zÖšðÄ_WGTöM33ávÕSy›kÇLwL[ÆÎ<9YÄUPÙé*®rÖÛ¦»:z;k«$Ó-Ae4&6±ícÌŒŽ 9ä )3:ºâšo—Θ™žè±ÓUQ¯ª-ãuÉåòíŒ0… mt.£®¨§;F>70²^“uh~ö‚@xkº®µÅã,¯O ˜÷¹Ó¯>©žø‰öácåÎñ –Šµí’†Ír¯¹G¤ sÒ?š±™þà:f½Û¿r2ê ZL±F¬Ì}Ê©ˆåiu§G§Óª>–˜™öÃê\qþ*佞óZËœu6Z»“@lªiYÌLÙý¨\%kÍí-ÏQÏsK_GŠsôÑGŒÄ±E1]§UæÓK5xD¹•(ǸvÙQ_Wu£«Ö×Oªª6R²ž¯ á¾1¾›"s/ÍíÐ:GQË}%è¼^2µ¦{m7ñŽ hµvß®#²ñîž.©‡^q8–ÄoVDÛ­ŽµÔ,¦;Gm+a`l¸¥Å¤·2‰Þ9i&ô×-Ûi‰×Á×Gª÷ìÊcÞö,¸Ž«“ëe‚¢gŠÓM„ëkµËm“ê™LæD×±­Óý$ îÈB•ö"pÕVئ8â˜ÍEŠwÕ<0¾Ì˜×àÞhÛ{+]u²×W3*xâµTÔͨ fŸ· Óõ™¸¨ê!qÒßGŠsM31;âm>9;h¢4˜gªª¢-ºbñàöðn0Åô·:.W«z´TV¾7A ‚h!†Vè{z[7m~½De¨eÔ·¯Íš£e7‹åíÃ6´Åâ'Ö´Û<¦üò||ÊMê»ÓZên‚éuªº¢gÇI²¦ŠhCšYÃ[¶'–’uÍv¡žK„Íâ¨×æ^ú·Os¤E¦'×µ¹ñw"оnNðüqÈbs­´Íh´˜€‚ `G¯r“¤Ï„x8S”÷ÏŒ¦>O+1fÁxZ‚×vÓ%Öó]Lùg§…â(šê·»CZâækÚ9}ËŽŽóFÚ/˜—}&S\ìª9͜ەnR1ul±^Y$–öÑèá¤læ`íikžÖÁú³ s@ßžIŽÓôÑꈛF½¹ø5ÁxúY›õÞ/:¶eâú˜ï^0åN(–Ö`†¢:ëÈèšìÅV†?iÔ_q ÌæѸd·vÛ¤·vZõ_fŽý÷©òqÆ'¿Øè1ež¾ª+—“Ùi¨†Yé¢i"®£KØøÚ6n 1æÃ#1že ­funÒÓÓ†xç­µ¹èëžø¼p}œk‹q•,˜ºáGrdX&€ÃOÍ£LÓO ²2W»¤ÖàÒÌœ Ì’ :ý|6ÝzcŽlZ5z—¾ûU<2~¡c\døquÂÏ_X~›%ÊiEDŽ•îé4ö¶0Ì·‚]«<–j¼DÕëÍ6Ý3ÛžEªb=X™ï½»²~|¦a;]U²¢CJ.7œUt¡Œs`-¥ÍÏcˆÎ¢ªZuäò2ityÍ”ÍS7눋gÝÕdÑW”U:¢"-Õ37Ë¿¯t;‹ÐÉläöåK$¦gÃh¨‰Ò;­å”ŽiqÏÒâ3?¥kö*oMSºO°ñj©íEàœ?=_(˜~©õ,‡ +RÈÈL09­ñ±ÍkÜÂöê="æüú9éÜ»[ή~ãÏIŸ6˜û—à]ÙŒquFĶƒ<€[êá­ŠF–ÓÃ8ںƦ2Véê'"¹MV™û„ÌvÄçÊy6Šo÷(‰ìœ¼|Sû¹]ÄÕÛ-Õuµ5rÙÛu–ZKk«é*&x‚1¬xŽ60 g çÁÀ浫7Žºbž­uL^[Ū´õMUuê¦&Ðú×ÎSqŒ–ûM]tçGSjy(öùCQ +§=®4Ðäpi:ˆÖ r9ª©¾Ì©˜‰Õ7×;cW6"œ¶ç13í¦ÜÕm®Yê( ’}žÕÑ1ÏÙ;S5‚íô·<ôŸHÈ©E¦m·¯[…:Ê67¾á«­ÎŠš¡Œ5¸d¶‡1§E[ª¹³‰ÏíŒå‰ÚO ZTÎqïE¾šñìwˆŒ»*¿u§ÚêœmŽ¯Ó]âÚÆæÓب$™¥ƒ#]=X’7†̓Ú[_åéèmß1W¶ÌZ3ôt·î½>Évu^#ŘRºûnžëMS$6¨®õ±GM>Y"xǸÄÝ!íÏ¥û’ãžk33j³ÕU1}Õ_žYmb-zr×e¾-ïÍÖ÷ _wÄÖ\eduÚz¸ ±¶²*É(YLç3ecæ5²BíŸEúsˆ$£ýˆÏG^éŽø·ZFƒ*éß~é‰zžÀúª\1m‚JÉ%”ÒBîdaãTmÒtµ¡ À·ä3Ïz¤Œç¿?j£Á7rAp½`»tµî©¡¬º\)*D±DÓ¹j Nk˜ÖœŒ‘’ìóß&]@C\SM7Õ4sˆŠ¼"R´ÔÞª­®+Ž6ñ˜}«,ƘޮÇOÉ´q]iîuî•´ñ¾FALm¥lmx-̱ãSœ`“–y½«-VÑÓTå×TϲÜêµ?{˜ŽÈ¨ø?M·ŠÚK=º¦ªZZ‰fºAYWEB꧓m˜AœPÈ%sšçhÞAYÅŠÝW£Q|ï†Ýšç‘‡ úüëk¶VÅÆÎEAq£½aªLiŒie–[K+)ÛM-6–NçÎØ£´Ò·6Ë3C;›´pÜ +ÌÌDDÌgTD[|Ψíð-y˜¾Q37ݯ»ÅÚ\Œá +ü…)èkƒc”ËQ9‚3©”ížgJÚvKb ts-Ù-â0ÄEïhµþ8Fç9œS3ªó{;I}{ò‘§þ&•êžÆôkwj­KÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖêŽRp\ØöÊ(`«æ’²¦šª9ŒbP×ÓLÙ[› n Kr#1¹fªo11Õ7å1ífš­{õÄÃáY¹3«–í-Û\Ò¥Ô²ÐÆÖÀÊh"‚b ¡‘µÏ%Òdžç“@Á›üè´öl1ê·Tß¿käážF¤µÔQ‹ÖK-¶šjJ q˜ã™›'^ÒLÏ}S\Crng"ãšÍ¯{ç3¾¬ºûæÙ±{jÊ"oßÕÝya®Gêí,‚–ºõQYGEI5!…ÑG+6eÒHÇg4ŒŒFò¤t²ÔsI‰ª÷›Ìů«¿·-dLDÅ£(›Ûã©ï`ÞLn6;¥%Âëx}ÊJ7ÐRSÇ ›Ë Œ®iq–B#`Ôt´dHnd•´uÌ똈ž­Sv³Õª&gŽNkS…YS‰èï›RKKQJ#Èdá;ãyv}`žYzsJr¾øˆá7';n™ž1g[Óò5Se¥¶>Óuu-}¸Ö6:—@ÉZø«%2É‘@:K\sAÞ L6µ§ULïˆö¶Å{ß®©«²eÉ0—&ø^¶’­õsU¾–’Zv:s©Åõm§˜œþÔ„5¡ ± –ñæêÙLwEüuË7ã3ß>î§Ã›’*Ê»› ÷‰d¶GsfQ¾9í®Ö* /‡ôƒA¡«Nå¥á·^Û¾üu¶ª«Äõbˆ‰î·¹ïSòM=ž’ÝÎÜE5ãÊáúnw9}FÏ,÷ ߧW^C<–´hðÅ1è{¦=­ªÒbš§Òúžç­MÉ=eĈ¯2ÔkÍϘ2&´íÜí¡nÜý™ YoqÒ]§rÚŠpÛe7·}õíµæÍj«÷ÚýÖá«79ǸJ,{‡kìòÈèE\.ŒJÑ›£vâÉYc€pœ²XÒQŽ-«V}“vtuà›ëÝÛp+G"”ŒCb¼2¥îu¢ÜhDe£LÎȆÌãžaí×.@núÿrÞÑŠgm1Ùo©hîkŠpÄl™›í¿ÕÍñm\ˆÜíÚÙþCIh®}m9¥¢$2m#•áÁÒôe{Xþ‰naÄ<…¥aÃ׆-–·þök«ýi¼öÞü797$PSÙ¨í¢­ÄRÝÍØ?@ÍÎ5/Ÿg–{†oÓ«¯!žK¥>nR-۔ǵ­S|^´ûb}ŽQ…°…F¹ÝªfÖšáRk‰¡ÑJöµ²}`9½®Òi´ç¼­h§[|Ï™ñ–k«ßtGˆð‡ÆÄ<˜Çˆï5ÕSUw+p·VR˜ÁÚ5¦Md¹‡Fæí]˜ÉÀä:²ZNŽø¯ó­Ý1•ÛF’Ö·Í¿ Íë`þL묗h®w[³îSÒÒR`d(Kš\\NÒWè`t‡!“r •Ö:æuͯ;£?ÚL士—ƒ—ÖáVVbZ+ÞÔ‡RRÔÓò8NøÜ\O ·f^œÖ‘M¦þ­¹Ý™ªñm÷åg‹’Zº{”›+ÄÑÚå¸yMô- ™ËƒÜÑ8!âHŽ‹-ç1«I!mG›lþMí·ãy³Mï¾×î· Oå/$•4w2b»JËY¸§1lMiçvзn~ÀÉõ†,·¸é.-ܱDa·«{GmøÚófk«÷Úü¸jm\“UÚ®1µ—‰¼“t—(èmiHçHZéÁÔèŽt‹!¼€\Z2Y¢0Û?“ÙœwÚùÌU}ö¿u¸^Ù¾mûªkæ­ÃÜþXMÂk‹*Á®'Í9”µ£<ˆÎ?H$­0eLz<ã;Ç|M›EyÌíå9Z{¦.䘋“Š¹ëhëì7#j©¥£u¿P• u1-!…-ÌsC£x;Ž`µÀä·ªõLÍí‹_œ¶NrÒ™ˆˆvÕÂÞÇ:Ã6p½¦–Ý ’HÊxÛ|Î/‘ùu¹î=nq$ŸÎwn[Lû9dÖ><]wnär×MWˆßS#§‚ú  hh†'‡m#c†ò÷ºBOSæ\º8Ã4õLßÝÂòëΊºâ#Ùãh|Ëo"òT9þp]dº5¶émP4Ã:yƒDŽv‚v“81€ÉÑ7sA%*£ﮨˆ¿dßÇ6)¯ ­ª&öî·†OJ£ú«ý²²†û|žµ³[ü› dL€C¦»hæ´¹²ÌK©îÝ! 8檜W™×3¸Íã.Ýe5aµ£(¾]±m}šžõ¿’K¬—j»•ÚøêÙ+-oµLÖÒÇy’ÇFçisu8»=Aä² 4^*¿Ïˆ¿l_ÞEvÃo›3ì÷?[G#”Ô0]«¹ëimuV‡e aÚAQ³×;'µ‘†’>Ñ%Ù¥Ò¿>÷ùц´0pi¼ž ×±’=-ZÄZ¬[¦8êžìø³3zp혟·òEn²blu’z¬5Eåƒ8[´kÛF{ÚÒ‘9‘X¦0Å1èÕ}¶ª&9DGs5ÕŠfvŹLO9™rwÉ5.<–äùª¤‡Ÿ[â¡è5¤Æa¨5 ”jÜ㨌ØF’G­fc^ú¨«²i½¼X‰Õº*Žê¢#ØøôÜ‘]++î•—‹Ûë_t¶y2pÚhákZÒýˆ5ÎÐFÑúÕ­ÄÀ.uèñÓU3ó­žÿŽ¦ôW†iŸFöìËÜíj®ÃÖŠJ:ʦÕËOc3„!á€ôœÈr;ÎýÙä»ÍWÏ‹ŒE²Mü¢ò_‡¹=­ÃTu“ÖU—[6Ä>òTíó–FfÝ1—=ÆWèè ;Ï\zh´SNÉŒ÷FSÊý©]檧®'-ÿ^ÎW‰p-Õ˜·2ÇRênµUÁû<#¥LÁŒqhv¦´–ïêD.“z«ªc+ÓOW¯3nç(Êšc_?Š¾¤ŒIc£µºÏt}-ÆÞê§ó¹!dÂsZíu;h³kH{ò{t‘ ´e˜Í-k[+S‡nZøß;³{ÞùÞoß«…²rºl5¿ Çg‚á#¥6WÕNÆLùgHK›F³›ZèÁrÒf5[ªÛòlDëß~~íŽÇ'3šËWñ×°ÿ)âai^©ìoF·vªÔ±ÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A÷2—ñsAü@@@@@@@AýÌ„ Ð}{ò‘§þ&•êžÆôkwj­KÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿ×ßĶ,Äõ4Wz˜›$5ùæfz‡YÍZè´q4Æ´:ë´¸ïžU|;¿Åtè£l´ÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•Yýãwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1öyUð`îÿè£l˜û<ªø0wŠtQ¶L}‡žU|;¿Å:(Û&>ÃÏ*¾ ßâm“aç•_ïñNŠ6É°óʯƒwø§EdÇØyåWÁƒ»üS¢²cì<ò«àÁÝþ)ÑFÙ1ö>îÅ55—jX :@3k2#qê9®zMDN½M¨¯5ª“DÿÐßÄŽ8þSÕÄÿÚBºÐü˜ì@Òk— +¯¸RÚàtõSG MËSå{XÑ™ÈfçæÞºÌÙ¤EÞ­Mú×GFÊɪàŽùi™ò±±»WVO$4çèÈïI›k".ý…Ú‡h"çk1íƒvÕ³öòÏ=Ó_gó¥íÜÃó†÷n©0ê¡y¨ІÈô ë1äz`zKsÉ/ïî,öéªéëZ] Œ’ÇáÖ ï‘ÖY©ì,‚^®® |/ž¢FE§>Gµ£Ö\r~r±3fb.ýb‘“±¯cƒšà×4æ;Áuƒè+6bh=J‹…-,±C,ѲI‰±ÏhsÈÐNn o gXÚÈ ä¸7ùNQÿ_Gú¸é~Lö7£\+5J°ÿÑßÄŽ8þSÕÄÿÚBºÐü˜ì@Òk”mû2aeG$·Hßö]-Oè5Q‚¸}Š§Sk§ÅÛì<Úgî5x!¾R§šóÉm.®’ï5SIêŠÞ4Ó“üHÎÍ?˜ÇKWIÏ£LßîQTQítÑÆ ŸZbÝ“N9Ÿbµ§º»ÎÚj-Œ +eÚ웶û iÚ}­Ÿ§GV{Ô¿±ž—î1ã(º-Z?¹{!Áy$¸TDÎIè`d }E¢á¦wÀÙ%…ÍŒé1¸ïhÌææÏ"µ¦o\DeöN»gÕËsz²¢gðî®/C‘Ë®'Àœš_îÞ¨¡>]ª„I[dq;œéžf†êt²H?kƒ,µd+††©§ENv¼ð‹Íí¶]t±}%]vŽvŽúu_²PàÌms&,òK²n\Û˜´åÕ«Ní]yïXÑé&bZsçîm]_«r÷¾_)¯òd¨ÇÖÚúHé0Õm3c§–”=Ó2VǪ3&¡¤t‰Õ‘q',À MTDÕ³I4Ûuâ=®LÄm¢÷ßiŸc²°^6Ç®Æ×\7q«¤«‘Öhn”oe>űI3‹Né8½€åÒ="~œ—{Õ8é‹b¦bÓ:³Ž·+G›Têª÷ŽÅƒ›~mŽŒ_Œã²äÓf"ÚzvyïÓÕ’‘>ÈãÖâä¨9. þS”×Ñþ€®:_“=è× +ÍR¬ÿÒßÄŽ8þSÕÄÿÚBºÐü˜ì@Òk—Eò»ÉÌ|¬aj›•.¦lï…ûV´<”­“,‰zrüÙ¬é4xíº¨žà¾ø˜ãuMÿö0Zïw\Wqmkâ“P²‰ÀFƒ Ðù¿¤_¡¤ƒ–^µ¤èbb¨ôª‰ìÎöâÚ4–ÃêÄÇ+_ƒšÇÈÔ1ßbºóÇg„ØôlÆE§/®Ï>½ßg«ó®šJ1ÍSéÅ»5ûÜéœ1Lz3~O„ùƒ +Ôá ›p|‡ RÔS4ÀÛíÛ–§oèåêæ±MjŠ¶Q†Ü3äÌ×zfµbúŽ'7ì]/³×Ú™}™°Kvmæø׈šZ)æIúÖ’rÒì²1½r£A†)ˆŸ‘7‰·o½Ò­.)™·Ê‹O/sûyýŒuúLK n!žy1 tœæI)â³S=¤HÀÒiktúš7æJÛ¡Ê×ùñW|kãÈ-¦&Ú©š{§Ý~÷ïû,móÞ9?6 +**ʺú·BÊ7RÄçˆæ…ÌÊI^7DܳéÏêZýŠ‰ÒZ#\Õ}Ö¾~'Ø{hóQß«/`L3 ÖÛD@EK ¬ØÀ~ìÎ~œóS*œòøˆÉÿÍÒ5߱ŕZ·SÞªiíU·îµ6øãfO¨a:fûlîhsØ:úº”j4X-žTÕ5DoŸc½ZLWÛ1iÞ÷¡ŽcLغ«s{ýEýÑÍUJÈ"xÛFƒÝÓ è‚X2ÌúrZΆ÷Ï)«·Þ'ØÚ4¶¶Z©·v§jáÞL£ÃØÚ³ +§=ÕT”ÀE19?Vy’ì÷Œ·.´Ñ†jŸNb{-rª«Å1èÄÇ»…[¹‚ßÉÍ狃Üˤ•²˜>w&ЀÌò:z†ñšå: èãG}Q÷ÝÞ4ßfN’ÚçWuŸŽ!ä +¢²¢ž²Ñ|žÙT-QÙêdŽåÓÆÐt¿ìH7ésNìÿ2é¤Ñã™›Ú*µã³ÁÊŠ°ÄE¯†öž××ö?4WÙ+lך›t¶»{­eá‘Îé©žApq“<¤$¬g‘9å¹b­æf&Ø©Šf7F¦i®Ñ9Úo¾^®ýŽtøR,#.OaªŠº†FŸœ‡ ¿£§WXÏ?̶¢œ3O«FªÒª±_}XŸOع.fš ¬tz¡¹Íñ¶öÄ®.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰BæÑþÑø”.mí‰Bï­b{Æ ÜOLzJÒ½RÞ™ÍÝjµ(@AÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖëP1¬\ŸÚ<£%4µDÏ;!€°=òTJؘ‘Íhé8fIšªµ£]æܦ}…4Þû¢æÄ÷K韟Ùj­b 5RÓ.ÅÁ˜ÆÝŽím¸Pí5Éã™…’E,N,’)~ËØàAǤ+xÎ/¥¬Å²ž§!um3#t¬qÒ^ÐIË<€Ï2rß—^H?CQufök7éõ~ý„•”ð+\@¹£2z€Ìï'Ð=(>> Ä´x~Õ]qyÚ²†f•±–— ËrÏs²Éi]Xbýž6mM7›>•ºåOu…²Bö»SZâ-ÔÐà9Q]f-6Ù3q7‹íˆž/Ú:Êyµè•ŽÙœŸ“štŸS²;¿’ÕµžqTEPHívœ³ÒàrÌf3Ë«1¼zÆôaú  úöå#OüL-+Õ=èÖîÕZ– ÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖœdLÕáJx¢™Ð=÷kK[+\æ]Nà´‘Ö°±T^ª~åø›Q”U÷ö8ÿ*¶+¢ÇKKt»Oq¤¬¼[ «uDtð†S>RÂ`dcDÐ×êÏqÓÔJNºc]êü ÌGf'*§e?‚‹Ï —[c|=l¥ªÄv:6 iºaÂøiÎÍ‘TM;Dì`fB2æÜö·-îÏ,ÊÅZ'ðµ»°^c²óâ×I3LLþ™ûõ¢x9µÃa*œkwµÝi)Ùm·X`},.cDPE$³ó™¢iÜׂÖ#zMÈoß¿6‰Š¦z¦˜ßá™Ëfmó‰¦#¯öÍâ3Û“¬ñ=­ø²íx†7[êmô˜rÞúz‹Ñ¨2ÑÌ]U†‚$Í­/“&¿SX?2icåLÚ&ñŸ\y±1Îý²hçäÄgœº§Î´òäª"3žN󞣜Éäwk˜µÍÚžhs“K²pÕö²vñžýëo±&®Éðiö]=±âêDFw{1õ`ëiÿ#¹fŸ•_â/Åkb½Tvé|hsþE꡹¿×S8>–¦ûTèÝíxŽ8b{šzˆ21ã1¸JÆ‹äGmsÝ5Õ1ï4Ÿ*{)Žø¦°å²®ƒ”«¬°1õ”•”ΧÃ7ÀæRÓ=¦'uÆuÉnDús 4Å¢™ü9ø:a¼ç3†ÿS‘ãŠÈà¶ò¨éd þ4éIÔrûVðýû·YÝÖ£é>Mv¤vÑÏGÝqã[çãü/j½ÃŒê« lÒÒáÛ{ s÷˜^)§x’?b@Z‘¹8dy-´Ñh®zúHϯU.:ΈêÁ9}4ÃÃaûfšõ¾Ó2£Ï4Û1‘’F“õ¯ô¾N“ºnÍÇ=åkö#.’5GÙyu|ª£Âè³Á:æõxS/Òço¢ÁSڦ±²)*p­ÊiO–©DTð¾ži4ïsÄ®v™›‰s†~ßìG›:Kz7ûõ¢x_>·-_ÒÅsçØø{TZ)ijÚûM0©ÂõïtváPék#4Ìsf¨sÆ’æ<ç­Ä¹Î{š Þ¿b)ÃH‹|Q«^Sìß ´3Šh™½ñkz³Nö䳓ü-nÀØtl[1ÐVë:7ÍTØF—HààeqÌô\H#vY¤×j˪fÝñiåïp¦oõÄ_ŽNþ\Û?ˆÀ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öâ·;Mê&ÅW &cdŽP׌À|nc¿K\ô··&¯íÖÕE~¤–Ž¶OÍ,’9Z×´õ‚ãÿ¡I‹³g¶r†¬¶æÛ©-ÔðÓ6fÔ˜Àµcƒ›!ô—‡C‰'põ,ìÝ©»õ¼ñ>ØÕð>ïn§¬t˜ÌÌ-Ì‚@üÄ€KNm$ Â× ^ýlâOG€0Ö/šž{¥¶žªJoÚ,aÅ›ÁÈLæÒsn`–múËån§(¨§Ž®'Å+C™#KÓÔZá‘órI‹ëb&ξ½r?‚q¦ÖŠi¹¬"žM?Wz£nDtG ÂÄÓ7¶snM¢©µ»y¹Õ¶ÛIg¥Š’’A M Ž8šÆ´u´d[Þí.§ Ù«!­†Z8œÊ÷U4·tÄ5­þ³¥­ }ûïv×ð·så_y6˜ž´VÜmtÕ3ˆö;Icvý} frÏ<³9dµšbo¿[1TÇsìφ-5,©d”±¹µp¶ Áo푱¥­c½m qz‰Y˜½÷Íç·â‰µ·eV´Ö½Ïš–7¹ôÆÄ·<à'3þ˜>¤˜½ï×k÷gM­»SÐÃØ a*ŠŠ‹]ºž–ZŒ„¯Š0Òð`ìæIÒ2œòÍ"-“7zÖ^M°®bßk¦§ç,¨ÙF´k³Í§údæz#&ï'%ˆ¦-n­±LÍúßfl1i¨¦¤¦},nŠñINÂÝÑ:”n`ô Íõ-ïy¿_Ô·µ¤eøÚû‹€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÐßÄE}¦÷ ‹§kIwQkŽ[‡¨)ú9›jFª3|žiMï-ì?Át¼ìðkcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çggôQÓ¸€*[™Ýöà—žŸ×ÐÁ‹]RÜÁ ôèýò^g«ÀÂñæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À³ô†Ý CÚÆT0¹Ç 4»Á&«u3…ùóJoyoaþ yÙàÅ·œÒ›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx~‘[¡œÊ†wÙwPŸBÄÕn£ òæ”ÞòÞÃüo;< ?¼Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx9¥7¼·°ÿ¼ìð,sJoyoaþ yÙàXæ”ÞòÞÃüó³À±Í)½å½‡ø%çgcšS{Ë{ðKÎÏÇ4¦÷–öà—žŽiMï-ì?Á/;< Ò›Þ[Ø‚^vx};-4 ¯€¶v¸‡Œ€k†´®fÓ“jc7p*ô‘ÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öé~Wq5ß +XQj|L©šº†‘ž3+*jœXÂâ‰PÞ³TÍâ#®«r™ö3LE¦gª&\vÙoøWÔXñ-UDL¶Éstð¾›eRˆÞÙ£t’€:˜ðážNwf±Ú÷ù±~¬ïÏ&f‹ÚÝs1nË{ßvÑË.¼ÁY+Q3¥çÒ6¦šXêl×FÙ ã9ˆôî fj®)‰™Ë½°Ö)Å1׫cæÉËE–ëo¹[¥ç4öé® +šybdѱ„‰b/ Ƥ8´úG ‚±]XbvÓ§ãsj)¼ÆÉž§Ý°ò‘n­Ž’ž¦Oãqö¸®u68²ßqsÎýÇVͧ785Äfk®’b™«e:þ6¹Qz¢'ÒÔæö‹µþ† +ê9D´õ¶X¤ny=µÃ0D÷€“E`~þØßâCý +3Ú»ù9—ø›¿Ð­iÔÌëuf4ÅÕØzÿ†è ˜®u“ÓÌ\Ò\,“ ‘ÔÁ™ îÌeéYŒê·«Tð·½™6ûâ8¸í㕘p¦$¾Av{"¶Ûh­õ;F±Îx}\ÒDudNmͬË!˜Þw¤NSJ)ŽúnM:­èÌÏt¿K·,6Ê«%æ{t¯§ª¶ÄÉÚêYã,lŽÊ9LD5ï‰ù.oYŒ²ZUVW±ï˜öNLÓNvÝ3Â'Üü­œ¯²£ß,54³ÃOl¦‚£œ>ž@Ì‹$|¥òonœ˜ DžNË©f+Ê©œ°Ï+GÇc3Gɶx£þ;ݽk¹ÒÞ¨ ¬¤Iñ²XÞ3ÉÌxk†yˆ9ïÉt˜³“ÞXFÑüŸCüKø¢µ¯T·§[ç³WLãüC‰¢Å6k–®–VÓÖÏ,µ4ΨþMöZZÖ‰bË=g3™êZÅæf6S¿D{[eÛU¹LûN··“êZZkýQ¯¯©2º6[¨¥/‘‘ä\æÀÇJàØÁÞ]–dzNI5Dp¼åÕ·qß=öúnãÊΠ·ÐV²Yª[qa’–:H$žiXÑ›œ"`ÖÀzd¤î;÷%U[…òÏ-½™±ß»öv¸ŒÜ·QÔâÌ?l·Á=]Þ–¢qS ¡œ}òÍ"¯:cÕ‰¿lø[›i‹SZܼ^Í—–}6·×Ü¥uUEkêYvúY¤|» ^×B¤ cZ6Ž;³ÞH¬W”o¦'êî†fŒçuSSµ÷«9bÂô´Öúˆæ–¥·(¥–‘´°I3æe­­cF­mÏ{HdìòÈ­¦¨‰¶ëåž[yµŠoßlòÍöm|£aÛŶ®±³¹Êè)uµísåhyte¤f×·CÚì²-#­fú·Åã²×bÓžé´ñ³›,µ}+Wí¯þ½IþŠµ«Û é|ÑÔ¶jëú|QY.9©²Îo² +ÆœŽ½¤•DA9å§KC,óÌæ±Lß駜Lû«+oÅ˽ùãU0þ©õΨt‚RöÓSË9Št™¥Ù´ìãÌ‘ëÈäEbjˆîµöEõ]˜¢g¿VÙ³ÕÅ°a| æ +¹¥{L «{éà–vENó“g™Ñ´ˆâ;òsºÀ',+36›OTÅöDÎö"›Åã¯V×ͳr¦nØú¿ +J•=-<ñÔswˆÜdÚ.ztÖìœ>ÛµBÍâõf#—±Š²¶ø¿7/ÅXöу%¥†³o$µEÂ(i`’y\Ödd~ˆÁ!Œ8–1DM»û¶³å‹¸W&\¬Rã a©‘¦¦ç%Ç›l˜àÇÅG;™™$'F‚sëq;‡PÍ9Ä}Æ&{íÒ¨´Îê­ñÁó1.Tt¶8íôµUQWܪmòº*YXiÛ+^—î„Œg¸Æþ ´Š¯TGUTÌû¾«l6‰“甜¥Xkh¨ªâ’G2¶µÖø@Ú¶í|Œs\Þ¶†˜Ÿ©Çp>¢·Œín¸¼vZþÆ“¾é´öÞ#Úú˜³[pdIYµ{§“e Tñ>i¥~’âØã`.q Ǩ $-f«3wWÝ9u·Šì8Ûe=Me5ÞiâtÒÊòÍ“ HÜY#dnR1Ã609Þ…šfõDuM31=ñnìóî*‹EöLE¸üC–Òò½†k/-µG,ÆGÏ%#&ØKͤ¨ŒøY>›¤n—fÐzÚ@9‚)ª*Õ¾c}µÛk5S‡^îëíuÕ“–úœCIsx§’‰Ôw¨­í}U$Ícâ|ñŧ¯=±ÖG©™µÄd³£œxwÕ1o½{³ß“ƘÙLO(÷äìz®W0ÅñÖ‡M.ѳ¶•òˆd4ì¨x°>p6m”æ2a=dA ,SV)´oŽÙŽ¨fªpç?ùÓòß„é®2ÑI,áÐÖy>iy´¦ª kZÉ& ÐÍeÍ $äIY„¦¬V·^®Ø™‹väUNîÎ{-{»Žýo¯¯« †f¾¢g·Œgœ{VëfyŒºMŒ‰üëmyï·~S톳—Ç×F^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öž¹~°Q…¡¡Ø>¡’\í›FFžÌVF^sfNh ̹À#~a*§Ó÷/eM©›E_qŸc«ïø>«’«íá˜JØéa¬°ÔN IQ•LÖÆÒéKÜIç(Kô¿Næç™\æf˜ª#U©˜Êúæb{rͼDLÓ3¶¨œí•¢c³<œ>xªok´Ð›­pŸÔÓ +ŠÊYc¨×­ÐEÊ6ÆZØ Í.!cKŠâ/7Šm¾Ó>öÚ)´Ñ3¶«î¼G¹ÚØÒÓ]QQHc¦•á¸NåÒÇ$s)ôǸn{² 7¬är–ÿb"fkßGà¥ÏA”Qº¯ÀÃàò1e¼rM0£¹ŠŠø.ÖèkùÓ &Hêié˜É©$ oEšy³ÔCãûGZ§(œí3TN»ß_}ùMºœ©ŒXgUíM¶ZöîÛ¿>µ=b¸Ãx·SUÃáŽh™#c–3Ø3 sö8uúå´Å˜Öú«€€€€€€€€€€€€€€€€€ƒô‡öÆÿèQ˜~ÕßÉÌ¿ÄÝþ…kN¦g[¡¹`‚¦Šå†/M§šz{mÆI*„ºYÔ²Â$°9­s›¯H$4ç‘Ébøj‰êµQÆÖðm®™ôÏ t¶=£­ÆíÅ—Š +:§SO’Ž tòÆùMYµ•ìíÚ¢ÐN#pÍfž­úZgº""í½š:£¾o“”r»d¹WÞ1“চA=‚‚(‹#sƒÞÚ¹œæ0€u8 hÌ€AËzãTeWÝš>VmLçOÜ+ççTu&ÇÊF#ž¦ ÌUÊ "-†G¶QLÉö¬kƒK Æ`h$9ÅÀWXªÑWܯ«« G{I‹áì˜ïÄî[=tW: +z˜£|L–&HÖHÃÚÐC\ý®äZzŽåÒrr}€@@@@@@@@@@@@@@@@@@AômÉô?Ä¿Š+ZõKzu¾p[5t7(>“r…‡9ýjé"£¹ëÚÅ´‰vÃF¢AhqÈéÏyÈåéZÓLMSCž8ö6™´E½/ÀËçãVŒ!}´PRCQo´ŠZ²é-Tšå3kfŠ`öF÷@Ùsóhn·´ñ’Ö¬ïü˜´G\Þrîêí–ÑÕ«åg~¬µºÇ’ÓQ‚c·kltðZkíÓO4’ÓÏÎÛ3[#×?ëÒÑ ®p,ˆ+h«~‹Gm§\|lk4âîÒW=Õj—dRVV?`û­]®K|rÒÜâ|LÏlT:DÙvmÊ7H\âà¨f"-WnŽ#uïyŽæÓ7§éûíi‹ºï“ZZÜ.½\©j™MÚ†]òÈø%–¿oŸç†ÈÖ–‡åžœò¦ŽpZýz:#¾5Ç>MôžuíøR©î˜µÜ¯’¼?t·]ðÕMM´áí¿Ô–=„lWS±G'¡Ž-?däsÌz +Æ‚‰¢b'«E=¸âl×MV(™Ž½$Ìv`˜¿Æ×6ä«ÍË5eFÒªírdy@çlõUTHÙHú¶9£t‡qÔÐH-´YSLuáð4™ÕTúÞçy.®"¥jýµÿש?ÑVµ{a½/š:–Í]v¿Ra>Sj++Û; šËO$e5DÌ/m\Îs3†7€à$ŽD¥5[ù£•57˜½¾›ÆŸs‚òŸˆ+1MÒÅÅ´U6_ãI´’5õÓH&k¢–S¸ÄgNQ<Ä ^çæz— ,MQTvZ:¦-¯êuw»híLï›ÎÌõ|{võ<´vºZš(®TWØ(£‚Hi$¨‚¹Ñ±ÀÑTÓ:2ÐXýÙ¿fàÉ ÈßM3z¦3™˜Ëª¨Û»dìrÑDZ/”DN}q>ßkº0ܵ4|¡ÕšÊy!uežÜ¦7˜vºc4b@ f¡“\A Œ³]iùÑëS1Ù†×qÏÍŸVc¾ñ/ÓU» ò‡l½ÕE;èŸm©¢/‚&ÙLgŽf‡66¹ÀHÖ–‡e§S@$frªwÓM»bjË›´çLnªoÙ1òtÆmfv»\-õTÔñOˆ3E<|®w>$qµÎàdndoÈ‚¶ÑΈŸÂTÆÜâi›rÉŠüëÛð¥û­1wµ…£­·Û0í}U\ÇŠn•µðHdŠ)ùÛc{ØÖ¹Á®/`Õ‘PÌå½#)£îº£¾z™œñýÊ™î‹9²Ï*õV†°²ŽÜú‹ë=’û”m€ùÚöÔ;ójZè©Œý[ÓM1W†Lé*ÕëZgébiñ´»•øé\ëCêc­¬ª{›_oÖf¡ÂàÙ É ã“3Ák™¼ju'\kŒ§={2ïö1§¯8ËÛÜë›}àE„.ˆ%+¥Á¯™”n‰ÎŽH¦Ž +‰ ‰¤Äé³iyÈçftç»:?•‹_GT[ªó4Ú7^Ítš¦ÙÄULßt_Þ଼]îV n0Ü[UK‰%E$TŽŽŽéãdƒDzeÚjc¶ÚÞI{œt€rç¢ÎhÓ|­3LÅ·:é2Š£²Ûf"¨›¹mM%c¨¯´š£n1m-`nÆLê©œ%c´ésrk‹‹IÓ‘Õ’í¢ù›«ªýó\û\t¿;}nèˆ|»ýºá5’ó„ESÏë1 ©†A†Á-luB¤Î³ cZìÜÐÐÓ˜ZhõQŒç=•UUûâ[Õ”Õ>”eßLSn釹ˆ¬W9ð–.‰”“9óâ†ÏDoÔøùÝ!Ú4e››“IÔ3sÈ,Ѫ¹ßïõk«î…QIx§®º×RÇ Œ’˜Å®GDZÉ6.nÍýRi'ežƒ¹o»æ9G½Î}²Œ>½‡ùHÓÿ JõOcz5»µV¥ˆ?ÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖøÃrèРþ—é(Ëù™Á™@'4Ĥ?¶7øÿBŒÃö®þNeþ&ïô+Zu3:Þ°$-š¿¥ÄœÉÞƒø œ²Í:чñÑ´'Ðÿþ(­kÕ-éÖùÁlÕý͈ê(?¡Î<÷£/àq¿FÐâyïF^=hÃû™F_Ä`@@@@@@@@@@@@@@@@Aô­_¶¿úõ'ú*Ö¯l7¥óGRÙ«È=Íê$#·zÊ2¸zNôÌÈ GQFÐây j çš2â8ÐaÊêêø4µ5ÎašYä2;L`ˆãnà5-ÒI$ïX¦-ß~ýLÌßã½ËA#©e‡÷Q<уQË,Ê2j9eš£–Y þfQƒ4Ä^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­Kÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÐßÄE}¦÷ ‹ªÒ]¼¸å¸z†J~ŽfÚ‘ªŒß'šS{Ó;ð]/;<Øæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàYç%>¶ÿ,ûC÷õþ„™ŒÄ?ZÊJs<„Ô´fçnÐýÛÿBÅ36ÔL=~iMïLì?Áfó³Á‹Ò›Þ™Ø‚^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< =ë], «ˆŠ†¸‡n®îüákT͵6¦3zΛޙØ‚Úó³Á­·¿¼Ò›Þ™Ø‚^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx{Tl¥¥{œjZsc›¹ýÐËÔ±7ž¯c'¨(é‡óTÎÃüo;<³ûÍ)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çgcšS{Ó;ðKÎÏÇ4¦÷¦và—žŽiMïLì?Á/;< қޙ؂^vx9¥7½3°ÿ¼ìð,sJozgaþ yÙàXæ”ÞôÎÃüó³À±Í)½é‡ø%çggÓ²S@Êø jâ7¸gñ Jæm96¦3w¯IÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖêSñ]~´Çw‘¾šš¢'W4— +G;L²G‘:<ć0Ac\2ÏzÚfÓ&m;¯”OdEâvÚñÝœÇ N6þV ‚õv|¯o’­æž‰ŽŽ7Ë5Mt£hèá $¼1…ÒÖ’^çÀiLV½ý+Du͵óð–pÞÖÙyÝ}_á÷~—ð¿‘…×o.ÌÔs1Â^sÎxßNÓkéÑ—Ùég§zMQߪÙöð¶lE7¾í^§–œ#Gg‚ë-LŒ‚j£B ”HÚ€L/‹N¶¿¢F’3$€3Ì,Mqõ¯kg{_ÜÌQ3}Ö¿V»{Üö–ùIQlmÅåÐ@bÛ“PÓ˜ÀÝDÈ×äX@ÞàwJÚ©Ãœ´ˆ¾§[Aˆ¸Û+êè…T¯¤¤uh…Ô³G$ÐätË ^Ðd‰Ç!­¹€d ÙóÒW†™]{¯²(£Äm~6Þú<âûŽ>ÂT7zöèš©‚RÑO%8hp5­‘Îs€!&`Iö€rím]Žsí~ö.V°Î$»6ÙI<Ž’M°‰î‚VC9€å(†g42CGV“»"F`¥5E\/³-½ª¦Ümß°°ò³†±-ÄÐRM)‘Ì’Hžø%Ž)Û펧‘Í ”7÷Z ݼf7¤UÝîÛØM6ãný¯™`åà bvQÉE4xé`•ÔÒ²7Ë#ðÀ÷44œ£pvY†»&“™[F}ú»£ƒî×ÆÞ/Ú¯”ŠjœAEl¡›î3[ê[$Rfé#¥3è…㣛sisÑË6Ž’Å3yÝj¾ûhàÍQhï§ï×{–^Vð½þêËm5CÌ’:VC#á‘NèsÚ6 œÑ¥™A¤îŒÀ+ÕjÙ}™mì*¦iãný¯²0 ý!ý±¿Ä‡úfµwòs/ñ7¡ZÓ©™Öd?)×îK-6ÚË<Îù«›Ì™®vtí‰òË£K›“ÃKIÌ~b¹×¤ÁU7Õ37ì‡Z4x¢vÅ­Û/ç,œªÝp]f‚Ͷã[©tÁÎÓI$‘Å©š\ÜžçÌÀ×À߸®Ñ|SÇnÈðž?2jÝ–ÍW—9®åo Û¯fÑ-D‚VÌÊgÈ!Ó²y,†IÃvl•ÙŒ˜Ny7Öš±eñÔÚªpø÷mzœ¶a: ”´Ï3_ X¡šNo1†ݤ1’ÊXÍeí .9} ×j뙎ø›[·&j¢ié‹Ý×î_ª¨¤ÆPCE$O°²Å-E4­‰ÁÌk¤Ú<Þ²L`­ƒPܵŠïõâ;¦iŽ9Ï&f‹M½YžûUË'.Ä<´Û‡/Õ–‚þ{k¡}`Š®žXC›¥Æ9^_ ‹Hiß–[–õÕkÛª¨Œ÷ϹŠ)¼Åúâg-Ðäã•;-²ãYU3™ä¨àuh»6¡d­Ð:Þ4éÏ3»¬-ê´^Þ”Óßxl4¦&m¾›÷Z}ÒäØ£Û0ežkµÊC, kä~’KCˆh%£[†~­þ¥­S‡^ØŽ3fiŒZ¶_•ÝsSû 0mg2ÉV×Sdé˜hªv‘ÄFb¡ÌѨS‘¼Lz;¤µÇí;»v3‚}Ûû6½LyÊmnuôÑÉM'1³Ãq…ŽŽBâé%{CžàCƒF–´‡‚ '"+ªi‰ÝU÷©ˆ–ôS[|W<"ðùœ¢òÉU€èïõMŒUs-Æ8b‚g¹®ª¸Ì[¸°ätý““]½Ám]X•0÷y¼óð†”F/¼bïÏ–^.czå§ áç1µnªÆUJÞi3M É ’¨5§`ÒAûyÄõVf¨½»;3Õ›LÚý¼µ½û—*øv×}ò¤šZÝ”Sì ‚I~ªmZ$.`- èÜHä3Ì…‰ª×G_ ³Þ"vêãgÔ åÇte¥ÐLç »%'AÙ¹±Ç´ypýÆ–õêêq ë[_;n¿v^øbÙ_dÛ¿?t¿—ÌG%¯[(D‘¶:¨«${Ç™°c\ :-Ë2\½Ã Ýù®xí6õfwå1ÖØr¿­Æ&}‡…ycÂØβš–‚iœê¨5;䧖8¦k/Hæ†=̦Ðsúò9o~îÛÙ›Y‹q·~yväý¬<®a|Irµ/~ÔÃ#á’8gØþÛ°™í —FD»I9HÌV)« ìËoc5S‡»öv¼pß+ø_Õ:žŠy ¶RO¤‚XÙ æ¹ó4<º"Ò3lÙ¿S\iizÛfø¼vFwcÙ6žÝNd°À€€ƒèÚ?“è‰Vµê–ôë|à¶jéÜyˆ1C1MšÅcž–œÖÓÖÏ$•4Ϩ˛l´µ­l±ež³™$õ-bó3)¾¯Z)ö¶Ê#¶mÊgØõpÏ*rQ[®§ºÍk¸y9ÒQ2G2¥îdocMûGm @¸µàŒòêÄWx‰Û3Œó‰˜Ëãk3Fvݳ)‡#g+xeÖG]ÌÒ²&OÍ]à•µ ݦÔæ4° à‚:;Öf¨‹ußU³Õõ³këÝ­èUrÝ„(mÜ&¨•‘ËThCO(™•-a~ÅðéÚ5ù Í#¤KrÏPLQ–ûÛ»_{8uîµûõ>Èå6Âi.u.|¬m®ž:ª±$/kãŽXvíè‘™v™o[ODïXª¨ˆ™Ù6žÜ½ìÓDÕ1–®3Ç_ò‡ËØ.Ý~¯‚¥´6ú*¸!d¹ùÔí2t¥»¶d4onE™]ak¤®h‰ÝTGˆî†ÔQŠc}5O }Úî\°Í¥±6¬V2gѲ¸À(§t¬ÎsLcZKÒÒ]«--ÈúBéUQ;­}×Õ~tÓ3m÷äûØs•\5‹+ÝGEP÷;`jc{â’8¦…¤I¯’±¤€ç43«z_^í}›{7–Õ¿WnÎׯcå{ b*‰ ¦šPæÁ%K,ÆÉá‹íÉNç´ ˜ÝÙ–gÖQkŽ-3²/;m¶Í°ç¶mß±éaÎ[°ž*’&QIRó=3ªé󥙢¢649üܹ Jö‚51§0O¥fg^è¿vÞƸyͻ߯#\£¿•<5 ÒJYi¤säc›,2DÒ[#š 5ïsrQƒ³o¡oÄN؉åÃfÖ')˜Ù3×Ã|¼Ûî7k­}5U+)n‘[`‘ô“1ŽtÌ@{ݸ9Ïq¨hÐïÝ-(«Fù˜ádfÚºm=”Äû89mÿ–<+†j§¦¬žFÉTTN †I3žhL쉺.q`ên}"ÖR*‰ã1ßyñ0[„OtÍ£ÁíRò¯†«,³]›4Š¹´‘¾PÙó@`-Úm]˜Ò̉p ÛÒj´DíÕÛ³“OVÍ}ÖÝÊ–¸Ú¤¹ó“0ÎÚY…DrC$S=Íkb’7 ly/n@Œˆp9äs[Fvß6ŽÝŒLZû¢óÙµØDr(?ˆÀ€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖãuÔÜ)f§‚Håñ½Ž‡5Í ‚= ƒ’Íqx˜Ý%i‰Þˆ,X.²Ñɾ”Ç]LË}ÁÕ5ƯçQ¶fÔDf--{ÉkžÂþ‹œs!»°}ÂÓºf}ïÚÛ^?¹^;"®®íNC´ª±Ó6º‚=%Âþ_Sq¨‰ÕUbSlÅ\q:P Áv̹¬éä5f1kuDãùêì¿Ôfs¿\ÄS¾­¾5>V +¶ÔÔËM•5q ƲUꬊA)…ô¯Ñ;Ëš:.ëÜHiÒw,Só7N—ºø½íªùûãGÊi÷)îUìu¸Ÿ^­ô`ºzŠ)ãŒg–§›Ÿô×ÙýúΖ/LÛtð˜Ÿc]Ú®<âΖ¨¸?”+Õ5ÂÝIU 6ü=q†q5<°‘5Tq¶:f‡µºÞ˃54tr;ÂΚqF’c;Óhß7¿ÆùcCpDõU;­øÜî®Iiæ£Á6(fc£‘–úF¹¯®k„-8àƒ¸ƒÔ»Uì(öÏŒ§œ*ü£Gn³Å[O ÂäÊ«uu;¹îd¹KOTæ4µ²HF˜Ú÷µì‘¤5EšqÓ4Ç^Žm3®&ÑÎë¤bÃ7õâöÕ1yÏÛÉáÉm©“yµG+/3VZ©'¶­ÏŽžŠFSrœMl¦RH­{†¬Ïp]fq^bÿ"bó¾ÙvåÉÎÖÊ}.­Ó9óæä6Ü=p‹ûKa¥x­¶ÒÓWEa ©eÛi nÍË,ά½+m<Å3ZøpM£f‰Œ·L±¢ŒW¦öÅŠ/ÛTÌs³çÙ,7:¨ped”ÒÅ=mÆåq©ÔÇ «igs6»º¡ÌgK,œ4õîZôsM©×mq~«ÌDø̶Ç{Õ¶º'º&Þöù2®ª‹ Xð‰µÊkéiªiª¤šÆÊ7GŒ6W3CÌ®p Ù¸—5Îq ´«ìÊm„ížÜ1M¾:™2o>û¯3Ž·ä†ÆÓ.¡ž+¼Õ–ˆe «{㦡‘œâkeÚ“¦0׸húÌ÷.±1Tâ‹üž½ö‹rî³J£ [ÖêÝyº®Ã—jkåji¡’Ëå`d±]›$stN –ŸÝéYŒâ'lD÷O‡cY×Þû¨À€€€€€€€€€ƒô‡öÆÿèQ˜~ÕßÉÌ¿ÄÝþ…kN¦g[¢¹_²¾ûq°ì_,^V"}-. ôu qqéoK,ÎC2¥sªœUDn®8ÓgJjÃLöÑʤëC†oµV†>²š¥ÓZnVK,Z¢~o†Š½²IPÑ–øÜ “ìäÂsܺhæjšjsU7úZf†ŸaòŠ/ÕF“ñWÔåÍr©ƒ©f~ÖŽÊc Î2lF©2РÜÈêË5¶“Wfš'»ÌÏ“=q÷TÇžøü²_+±q53Á°TÚ#ò|trWºH¤Õ¶›d^6g£±qKI;õ.ZLâ­¸¢ÑÕkDß_mÚiÙlç®÷œ·;[“ZyŽ6¸×ldlRÙ,ŒdŽì,êgH íÌjo[sš‘?*½õß» #ÆTÑ)Ÿä‚ÂêLmq·Hb駧$nÓsŸ·/â1ÏÌ7.ZWqGÞfgÂitÒëËTÌÕß1ãwfcz*šŒe`–8žæGKvkÜÖ’Ö—Áhq \FM¬Ë•QçOÝUG~*[Ó>l}ÙOâµ:»Ø..±ryM°–7CMU™Ææì\û|Œ÷t:G.–[÷u©zXÅTÛ¯E1߆„z&ÑvD÷b­ú`Zúšü%hÂQÚæmu=¶¦–¦Iá|m¢‘”î…®lŽf‡ºg³qÍ„¼œ‚á¥û6™·¡Ù¢-ïìu¢:9‹ú|¯3wÉÃæ§ù›GOCSO-Š†«Ÿ6X$‰°»˜šQsš÷=çSDeÀ±º³ê[éªé&ª£TÑWW]V˺Ìh㣈¦u㧄LçßwÑäâÍ_J91ÚSJÎkn¬lÚ£svNu3Ìt 9€‘'0·ùÿˆíΆµjüIþÄ-¶ +ëP×:Ç\(éi«ñSËFlj¢çU/t29¢9³~œ‹ƒÚiÏ#šç« ïö”G|LM§ã[}x¾ì¿u¦.îÞK±Ò5Öúؼ¥sª’!R<ÁÓ:IDçKvF´»" ½¬;ܶ¦-¬Ïg]¯ßìkTÞfwÇ~¨øâï5–‚£hþO¡þ%üQZת[Ó­ó‚Ùªzå;Ñc¬}‡"¸RË5$tw2÷Fùãk^v¤…Ì ù4»¥‘ÜrZE15MýÁDZ´Õh¹~]YQ„ª°Í–ø#®ŠÝdÅÏ©š÷NÊ9©s21ÅtÂ9fv§e#ô‚ %«ZrÃ3|ºJxßvvmT^öëŠ'œ_¿'Óm±”sSâ:jk”Ô±â(êgš«i,óÄÚ'R +¡Ídq¹ÍÈ9Úd¶¦páQögߢÑ=öî»F+Ç_™Ê«ÌsrûÍ|ØÎ燫éírCNÌF\Ù šù¢ŽŠf +©X×FÒîƒ ™Nc0Ôk‰œ²¯œZ;劵Lkù‹DÏå&z‹5G(¯¤ª–[½ºœQiå”L[Fø^Ðæ4µ®c¾ÐqiÓ‘æ¢×mQëD÷ZœùJUj¨‘ÏSnpóÆve¯Ç ,Ï|¸rÕmln%ïŽ9µ±›ºNnìÚ7‚@Ë2]<^+û²™îó\tZèû…|fîJá%ëÜî±Lè'ÂlŠ9 R3Sö³gNh:ú³aº·u-´‘–“~}æ¿{]SFëß/nÃJû^£Ž #“ÍJêR\Ç4G,”Ô¬kHH##‘Ü}Eo§ŒS¤·^ŽÑ÷¸i£›a¿V’gºÕ> +´Çr‚ÑÆñ=U¶ËYÜõÏdTrº”@`c ,¾BhcœƇæsóÓN8®bùÑ:õç»rÍÓEpÄÛ*£V¬ºù¹n ´WSLé¥h¥·Ô6lãpÙA@“w@“¸e¿wZëWËŸ¸O.qò~ž<*sþ@åtx6šŽXåŠzI*"š9c|e®ç8e¬ @´‚ÜÚAëJ~M?p¦;â"%Š²ª¯¹U=Ó.¾¸Yjo0cë[$uo¬mƾ7†»eMNøžÉ t¬„´€uar™ÃMúè®j·Ó_œ]Öت·UTE<¦=°à\löL#Šª)dï‰ÒF67:FÇ-<íŒè¸–DÖ€$r z|ɦ'Ñ®{1DÕ톳œUÛD}æbNÚÀµ–Ë -îîi.SÁWp§hš©žz¢ÖGg˜Øèãiè‚Z:,2œ‚ëDZ#ªõO>¹Ù{w9W=ö§ß6ß­C‘ÉlÕüF^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Gq<÷£&·gžg4ç²²µ¤LSTß®›÷Ñ7ð™o1Š˜ÝWâÙxÄ:£b;íCè©íÒE ^'¬º^$©ž30Š’²(Ccf§9› 3p ng"Vº8›DG£Š{j›ÄsäÚ»^gÖŠc²˜Îy>µ—Öã,A…f­c#ª¦ª¿QT‰ÙºZX¶eìæ샀$–ç–g,Ö´×yŠ£¯ETÛ~*cØÚªm4”ðÃTû\Ïr‘v»[0eL­ˆ>÷#ÙS¥¤M,£g¿£Ò`ëÏvjG]½I«¿ 3ípêú{wb˜ö8v åGÜipÍνôn§½ÖÍB`Šµñiì壜=8Ë@ÈîvkZ3˜¿Î¢ý“†%½qkÛæÕnëÙêàËž&Ã8bçQå*3«VÄúš¸Û tÑs—íeÒeú×Â8AnDõ +çLÚš{&óßWW\Ý´Å꫺ѾÔð‹?”<´bKÕ„¾Úê:Š¡ˆ£²²¢HeŠb‘¡Âc:Ø@;À$;NíÎÌ"©« ²Å5Äý,Lß–£ DÎè¦xÌeÏ[•bNS/ØÞèëÝõ¶ªjÊ9Y³M$Ž§sK5»vØÇ0×å™ëYª­qñSÙVWãEÄΫU3ô¹øY@R¶vAœƒ(cCËFCVCVC~C<ò¥Ú­y8F¬ßºÕ‘×°ÿ)âai^©ìoF·vªÔ±ÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šº¿–.Oê¹KÃ[(ë9VÒ) ©-.Ù>7uä'6—7qýÒÒºq[·”ÄÄÇ|Kz*ÃÞ¸ç—x侪‘¶*œ?S -e–Ôpó˜Ý,2A$lcÙ#Xæ;<ãkÚæÎA[×yªñ•âÖÝ{Ç 5§U§<ï}ö˜Ÿ­†yv¨³NêÍ´”S\ªªžæi3ÍpoÖ9 Ö¸ôZsè€3'2¹ÅµENüæ&ü›Mw×®jŠ¸DŹ¾Fä‡ا°ÅUu§šŠÅ4®¦Ž:w2Y$RFݳËÜ5°IÐÓ‘'yoNÙׂiå~MjÏW¥s™·7бò?Qh³a‹y¬c’½ÕpaPvýŒú'ë†óŸÙ>µ˜ÊbvSo¾Ùš¦ø½i¿;¾5#Wé4÷@i¯r^¨DÔò=º¦Úm"©hxÖИß—4€H%sŠfœ>®(î›óÍ´ÕZÜbܲ{nGot²K%}·Ë~§¾9ÌÑô™d‘­ÝÀÙœó ûY•šiÃmÓ\ýê&,³éjlnkŽî¬ˆß×¹foÔÄou·4åkßpÿø ]ÿXÏw6rÞýéi9TFg¬°˜õ7Xe5hqn}-$Ì@v]Dæ3ëY‹õ±6véË=Ë-_Ä^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€ƒû™Ë$Ä^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šº+”ÜKx£Å6K=âL5VÍ,òà ¹º –†³šÑž³žüÎKMs1{Z›÷âˆö¶Õ·Î·)Ÿcíu ¥¢£«­šû[Xf|<š#$Œ‹"÷Dý˜dy€\\3q Þã’ÌÕl·^{6‘MøÛ¿cñ¬åË @ËK©ÛUVë´SKI-;¤‘ûÖÈ×7qc˜]“ƒòÒZìÈÉfùÛlDî´õ˜r¾É·~yr{õ¯Ø©®FÑÕhm[(T &™•Re¦IŸÚ̆’X×ÂàíËTLöÌÄl™œ ¦ÝÑ;¢~»õw+6V]Dcª¾¯Éí«Øžjj‡ï®k0YžÆZ·%5EZºïmö½íÂJ©ÃÝkî¿×pœsËlæm‘ÔjZ[iª}94Î‘Õ dжL÷½­.²Ð C‹†K4UŠiÙTñˆ½íÀªœ1;¢ý—µ¯ÅCÃ6ªæ6ZA ¹ÐÈ£’h["/iÜíG9 ‚²9fÖ˜½Sº‹ÇlÕø6™µ=µZ{"™ŸHr›h}¦—”K5ªcCJ-ô7ÆXÙ%lŒ™­ck¢6¹Ú@9ô†D’yuLlÒSnü3㛼k‰ÛE\¯9Õu“3UÇEzØÏ¥|•O¥†I&{**ƹ™66°ïפe–’Ó™XÒU4Î’¨ù¸fÛf(ŸwSžŽ˜ª(‰ëÅÝ4üfõëyY½â?&ÓSÖIn–[-5ÒY)mÒWÍPKYÉqfÇ“ݘ pÈ•Òº³›|ئÑkÞf&uµ¦2‹õÍYßј‡Ù±ãm1žl-QËdŠã[郥 +›£h—¤Àð:³s[‘VñÖ#ΑM¾åy˜åɤê³5Åû-iPfÝZ*< è\MD¦ˆp ÆÌ?W\€g¬Ž‰=K«Õ÷¯‡†|ßa}{ò‘§þ&•êžÆôkwj­KÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-š¸5ÀçÏA]KVê*û|’žvÆÙ@³D±ÉˆíË1›H!®-mãdÇtýfÑ9ZwO|8»¹ŽºÍ~¥¯¯’zËã4TÕˆ™kZÍ68-k#e¤’Iq.$¤Ó•·Þûïìˆf+´ßu­»?{‘[°4ð\f¸UÖíçžÛ¾BØDM;7Èí n§dNÓ-92ëß»ZèÅG§ÝæÍ>Û±EXpú·ñ‰ö8¬|‘VÚb 6‹Ä”uÖÆZd”Ó²Q4,ÞÇès€d¬:‹ €ÔAk‚Úªo~«ÄD÷E»µ”Í­ºfc¾o1ÉÉ°÷&ô¸nñM_ D¯ö¸ímd'9¬—iµt„æ^O^ïÏŸ¡oi™Û‡ï·÷µêÓW;{œ¾Ío­·¶ UUº¨ÉQ,±—1¬ÙÆò !~ÐgPqé;=ë«ãoį‡‡Ä¾Â0 úöå#OüL-+Õ=èÖîÕZ– ÿ×ßÄ;¤÷ÜØÞAvâ}AXhç(Eª3|~cSÂdø.—†¸dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼eúECR$nq?íÜŸ_èKÃ1Ö¶Ž¡ÕÈ/wîO¯ô-iœ‰‡­ÌjxO쟵áŒ2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2÷íTu ¬„˜ÞwYiõÌ´ªbÍ©ŒÞ€¡©á?²|÷†¶“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/}K$ì¸@]ÀËH Jæ--©ŒÝÌ«’„ÿÐßÄ1ˆ%{n3€â¯Yõa£Œ¡©ÍñöÒ{Nø•ÒÍ.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOhüJX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›i=§|JX¹¶“ÚwÄ¥‹›iîñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.m¤öñ)bæÚOiß–.ú¶)^댸ý±é+Jã)ìoLæî¥\” ÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öë¬iŒh°%³ŸÕÇ4Œ3CY5Èé'GZÜÆy¹Ào µ´ÕkFÙ´s÷Mû¢ï—†¹G¶âKœÖ£Ut1‰5l&:vŒÞ潡ݸé9–af&ýÚûؘ·{°‹Ñ™–™Öýò0Þ2Ìÿ™|jËÄt7ZÅ1}Ses^ØÜcnÈu¿©…ÙôûG0:’3›n¿6m•÷Ùö¶OÌ Žó’0àö¬yl¾RQUÒ6yb¬¨–š76'd×Äéó'°ÀèÜÝGq:G¤%9Û|^;-rb×Ý6ïsbÇžG$ÓÀ̃—èAâ' ƒãUCmRÜ«Ä›(ÌmÓ ÞçJöÆÆ5£­Îsƒ@ݼõ¬LÛ¾b;嘋÷DÏt>í4®©‰toŒ¸Y Éí'÷.œœ:ˆÌï[L5‡´"yýÉø,2â·ÌYG‡¤‘µ ›LT“Ö½íÎ`Ž µ´»«hsͬëpŽ¥­UE13=QsjiÅ1fÏ–þQ-QÐK^æÎ)â·6èéLNÓ°sK²¨Èstc¤Ò³Tà½ú­~ö)ŒV·]ù9¥í¹SÅQ%’±’7qKÚ ÅoU6›liw²çuµlþipÌdw —€Ì£c‰Ë#Ÿ©ô1Äå‘Íð´Œó]hËú#qô‚‡g–G?R?}ÄtXrJ8ê‹šêÚ–QÂK³•ísš]C&çr_;m¿(¿±›e3²ÜæÞ×±j»Çw–ª8㕦šc¶‘¹Î kµFOÛgK á¸G¡#8¿o)³—.o±¡Ùå‘Í„ŸT D™'v@zOæX™±wÆÃ7Ú\]k§¹Ñº +†m#.ii-$€rõ³°Aô¬û¢xÅÉ‹eÛË'Ûkþ J0âÕXº‚–²¶)5#+edq¹ÄÄòðÝ}§€hßž^µ¦8ÏÕµûâî‘F­÷·tÙ÷mõbåK Cö¶f6Fµí-p€æáÃ<ˆëré1g7¸ã«u¡µ¯©dñ²Žzzw½Ð»KŸPXÖlÏîÛªFµÎšìÁêZÄß¾¬=þæÓî¦ýßä÷FTÜ*¨Dr‡Ó‹œæÇm 1çsˆË'öN@õ¬Æ|mÊ'ÚÄÅŸTÆàrÈçêÉÇ4äAËÅ}{ò‘§þ&•êžÆôkwj­KÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖŸyxáê >ù´§Ñ$üª~åø™U}Æ}—Êekèqý¥ô£:ºk=ò|€Ì†âјõ:P4çÖAõ.UÌÄÕ1Õ¢ž8¢ÞëL^)ºHá†oã˜äÞÝ|¢vºNh­Œ®µUÉQRÛŒÕ3VR‰Lî‰Ñ5ºàyÚ¹Úº–FAuªœ8£T`ž»ì´óÎzîåŠÓ¯ÏÛoµnzpšÎM,5ùC%5ÏÍÚ‰a«¥©3Ò\Œº·§õŒ¨nÐ?¤>ËÎNp-4³†*‹aŸ2ôõDMQLÌqÍÓGœÄë‹ÕiÛ8f«O`ãì‡pN½6ÑW-=TØ}î02g»hÆ–åVuvº§j׫"Ë:x¶(Œ³£-ž}¹ûè&øfvUžß6ÿ¯nÿ‡é0f!ÃtTFÆê ܲj–GºI $dÉ!s‰sÉß™ê=@,iòÇ”FŽ»}êÐg߯IG„¸o&øvßf·òu[Hé$ší©ë\ù¤“C% ’<Êâ³{¤þàtF@®±E=S£›ÇdS1<ù´™Êg®+‹OlÌ[ãcñä²ÏI`Ãø7™B!Ûâí 6‰4sæ´;~ð@îÜ=+:)¶º«žü iuÕ÷e1ÝŠÜ4´àÌM²>ët½ˆ+%2<™™;çlн¤éÑ`Òܾ¯@#-ùéDaÁoFxÅ3Ý>æÕN,Wê«.êðÄwÃåàÛ<˽Béyôøšjy'2Èç:*jØèNn#g“[“2Èß½k¢Ëú&ûüÉ–ú\ñîª-÷¨… Ëk䨥²Ûœç6–áx¤¥ª,qa0¸=Û2æ@‘ìkDfŸJÚsª˜ê™žTÌÇ6”åMS×ꈞRŸ9JÃvÈhq-B$ ¡¼X$§‰åÏlª–¼LÌ’Öå‘ÑžMÖr4ÑÄUkçm,Çu¢mÆYªm}ú9žÿ:/ÉTò©-xù0Ù6+m[cÑ»@l. ÓêËÑêZýˆŸ6{¼a¸t%7&¶q%-‘Êø'Ã&ªhÝ<¥³T6F±³È5t¥îÉû²'>°Ü¶ûLS:KuF[§ÏÏ·(cAV(¢ýsžøórìÍÇé.5•öKKçšI&¸½åÏ'S„jvg{²ýÑß׿z×M7¢¿ºè牾†-]?s«•Ÿþ’¦ºÓÔ·ip¡Ž$´=»byj ý{‚Ï؈ùr£ÂXûó;+ü íb<;l©¥¢µÐÛML”xtT:)jM5+&i<äéGÔ1Útý–‚u4œÎ~Äüû|ܯ³åL[‡(42ÿ:umù17Ý›öˆqÆ)ÂÒ]_-Hf¦«,2È$Ûh²‘á®ÈÞF¬Æg3šíçU;0sÄã{Ó¶kå1g +Ç$Ø¢‡ ™dþ.×÷4½ÙºœÆ$¥Ìç™nª¼€9ƒ³üˆ‹;z”Õ÷óvÒß9ô¦™î¶)çÈåZ^±³UÚº§Oqkft®’(Ÿ¤‚[«7–u8´f +Þ)Šª´õSTÇmé –—µ7J˜îÏÝé+(}ÊÿC…'|’ÙÙˆîÔìÏye5#gŠ™ÎÏS£d~L$Ž€iÌ7%¦Ïµú©Ò[}ªˆ‰ß”Ë¥~mí×:;î½33ÙœC—ºÉd«Ä¶ 1OY%u¨ÔÞ$’ %sØ*)ÚÂÚBFEÑÀdyln.Ë :F[SV¼â(›oóâžûFWiTáÝz¢û¼ÙžzßJÁ¾Û° ªá-e,l¾ÆÒù ò,|YÞíBœmÕ¨´ µ³YÑÏø^ß>˜¹\Z?jÙæNN°Â¶ú\[]…¨ë¥|°MxÄú£Ú¼6mœ’Füœ5°e˜gWG«!’㢋á¿á*§ïð륛bû²ŸÅ%÷­Ì¥©‰˜lSÔ\„8†ç ¾ˆÔìá–hÚòÚ‰]©Æ §K¢\Ö·I Ýš*Ň®m^½VŠ°ß·TGµE¯:³£V»Í8­Ù”̸źÃKˆ0ÞŠçU ]SHÆë|ÌdMš¤l˜÷ôœÆé ïÉ£«,–4^tÑ3Ÿ›V}‘U¼i2Çéç4ûÜŠºYn7¹lóÉ'2­ÆO¦¨`{€|qÛÛ,pf!‘Í €ì²ê$”ùØbv駾&lçW›ŠÛ4qÙw©Ync®y’Ì-Ô؆£l² ËBf–œ8;VÌ=Ç¡ž@8·p\èó¦›õU¥ŽØŠo¶t«Í‰·]4O|Õo Ü•Áø~‡aûVqó«½=ºŽ-n".{K ¦ÙæI cL²é€Y§Ïˆ¦g]uÇÒÄÞy1W™8¶QLý4Þ#Ÿ#–kuöš×Fú‰,¶8ƹê=5½‚9 61­õ ÌÀ±º†d,é&øªßïÊmXÑÓl4õ^_bŽßCÊÞïç$ïÐØmRÅ.ÑÑš~qO$³Õ°´€$ÖÐv™:4õf]-1\êµv숈˜ñsÑÌÚˆ×zoÛ7·ƒ×»XmBÿŠ®TàM0Âtò²¬î‘åñU7j\4äçµ­$€?0 +&—.—«äó‰™IÑçÑõü®Sâ÷º¹ì¶èíÍžFÉŠ¬6šx­ÄŠ–˜é¥-9æa˜<å¿ ]×½JÒG4í®™îùÝÞo4z&b˜«e5G~¸ñäöqÕŽ†å2£©o 5êÅ-— Œ:s;³ƒ—^dõ•¤yÖ¿^žyám>lNí†'Ûå>ª¶ÃS‹©m½êôlèXȦÄö‡€ãsN—=£0}ab™š¦Ú領Þz°S>1b|ؾ«hæu_Áî˜ÛíìmÁî’P!=q0HçD}1³K?6à‘LZÛuõ˜¦÷Øüm\àû-m5½­Š¶1àÉ+Ë¢åsÞç26æt±…­n{€I¦&-Ù=ñ©œS~ÞnC~´7—2¤Ä U==L4ÒᣜG¡ãqË"A̲ܵÒÓŠ'lÓ1Çê³£« ÆȘžÉG#V^O(-ÒšHÅÊžŽ:y%cä{Zí-šã¦0ò3qcZ_éÍtˆˆÕ²>;Ìߌ¹M«“ 1c•²RQˆË*Ý^À$µ•kšç±¥Å­Ì=Ùµ 4—iÏzSuu^#²r–*œZúíË8mœ˜ak5íךjGVç=úÞZ×ÉöÞÈËŒl{ÿvö5®vg2s+ZiŠu3UXµ½ª~O°õ%%tl4u\öjBr÷¿X:³'T9Fþ®¬³kz±hìµ¼ ª÷߯ßgaën* –‚ãg§—-L~yfm ‚sH®ii‚ +L\‰³Rr_…è¬æÓE+§eKš_#œù£{dl‘Î2=áÌiÍÎ$†€wnYŒ­ºo _^ø´öjs ½²šûE=[6ÔFø¥a$jcÁk†c"3-ÙŠ©Å–bm©óÙ†-‘Õ²¬B6±Òó&»7n€¸;FYå–`þ×çJ£ïóµó÷ËÎ[«W/t><\œáÈ`†Ñ´2-±OèÓK–¸¾×QÒ7ž–íÅ&›ÄÄꘈžÈÔÌUi‰Ù31Û/f< `¯h¤akèYms\\àêVjÓZ5;Ú9ï%*ŒW¿Îµû²)œ6·V®û{œbNDpLÑÑÇ%¼=´q˜b×4î;"íF'“&rÇžñšØ=,M1<-ñ·YYÈðï'Ø +ÉO%(‰ÔÔÆŽ#­îÑ“i³œz!ÛÆ{À †Œ–Ñ—.W·‹ïç­Æ0~ ¯ƒÝñ-Î +xjjâ‚ŠÀ÷HE=9{ƒ¤qk:osó-&µ­nek£Œ17×TÄÏtZ3m\ÞbÚ¢&#¾n渧Ú1¥3¹À&Œ=²7¤æ9oSØö½ŽœœÒDŒò)4Äëb*³âÔr_…ªlqYM /ÚFÆ9ìs$Ì£ek„‚BIÕ v·fs'2“LM·jê"«_~·…g%˜VºÍOh} KLíp¶7IãyÏ7¶V9²»3­Úµ?3¨œÊM1Wv®Í„U1Þ\¹+—ku¾Z(NtÂ'>'E˜ÉÚ_šñ¨f3éæugšÌÄLßg†ÎÍÄM²Ûã·µÁ¯¼†Ykk¬pSQŲ…÷ d‰²HÇ *˜2|NikµæIkšZíÛ—<ÆȦb;ê‰öK|yoš¢gº&=ÎeWÉ­´ÒZoki¨Þe€Fù#|ovzœ$c›&§æu’â_™Õžky¦&Û²Ž¬¶v4Š¦;ü_‘äs‹cí·µ”®ª¢8ä•“Œ²’2׃·oÐZ .$ã› eºfc¿ãS8§=ñi}ZÞN0ÝÆŠ²Žz6¾*ÙÅTÀ¹ùº`Ñ+\©ÉÌ- ŒÆüÒbñm“3ß9ËU¸DwCûnäç Úh©(éèÚÈ©*EdCS˶à8m\ââç¼ê9¹åÄç¿<‚͵n½»âÒÅõïµû³ö=–àKn¾Tæ£mS´ÔÿÛ]§/Ë=9ì€`ݸfFD’”ÄS«;_™š¯¯w+ÛÅò17$øGWšë¾9æt[’ç†ÉÏ&JƸ6@ÜÉhxv’I-fˆžÿŽ;ÛEsÏÂãÈî»ÅEM½²6ŠSÄ ’ï…›Û„<£g¢]mÏж˜¼ß¯ÜÖ&ÑoŒßfïÉö¾WšúšPéÍ,”Ns^öj‚@AÍcš×7':,Ìé!bh‰½þtg½˜ªbÛµ<êp¬}¥òѱγ¸>„’ìá"=–mß¿¡»¥Ÿ õŒÖóœâë´Åûuø5½¢ÝYeÙ©ùÜù<÷ˆ.pÔѵìº9«ÏGFÖµŽÌ8–†7If’¯zÓ L[}ûòÏ“lS{î·vys~póà«‚J6ÊÊÈa§¨l®|›HàilaÚÜI-ô¾Ñ;É'zÍQ{ß®o=¶ˆ¿(b™ÃkuE»³ŸkæÒrM„¨ìÕ6†Ð5ÔµN™²>I#›–—:W¹Ò3!¡Ú³fCI,M19o¿~ÞÝæ/wvÎÇ/%xZ’Ôû[(‡7’xêd’W=òÄæ½|Žy‘å¥ËSŽàÕ¹fÚ·Mã·i3{ï‹w;’Nk-_Ä^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A×°ÿ)âai^©ìoF·vªÔ±ÿ×ßÄ;¤žKŒîlo »¬4Ÿ@V9‹"Õ¾?1©á?²|KÃ\2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/9O ý“à—ƒ œÆ§„þÉðKÁ†NcSÂdø%àÃ'1©á?²|ða“˜ÔðŸÙ> x0ÉÌjxO쟼dæ5<'öO‚^ 2sžû'Á/}[$ì¸@LoÕ<®ž&=Ì|eͲA“šHÏK†üœ:ˆô–¯aѹ¹þ­ÈËøæ9£x#?Zë£{Fe¤~€èÜÁ™gëí@ýÀXæŒÈ eýÙ?Ù?Í.Ó‘ÏÔ³q9dsAñ/WÚL>i[T\ÓUS$Y4œå”8±§. tçpX¾vÛ~Qc6ëÙïˆö¾ÊËWñ×°ÿ)âai^©ìoF·vªÔ±ÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖŸyxáê >ù´§Ñ$üª~åø™U}Æ}K”Jê[w(¶YdÄêkMîyžÑ›ã§ ‡¥—ñ1›AÜ\ßÒ¹Õ6š§f;}Ê-í³x‰˜ˆŽ½$~+7ö:§“‹VÇØ¢m éè®–zç;œÖ:zšèÀìž©ú¶8ë$i%ÃYn`ømŠ™‹[GkùÖâÒjÕ1ŸŸ9êê™·c‚àë]M6À‹]¾ˆná=E,•/¥Ž¡ð1úÞÖ¼»N÷e“‹F}K4ÓŠÑkÛG®Ùù‘}úý®šI´Õ÷9]W«.^Ç.µáÛíÆÕk •ôw'Ò\î™YÛq‰ gDB*Öë’Œ¿ìÈ4o¸‚1kÄ_?2zýkE[ö5™µú¼èð½·_ZŽä~º‚³ Pš)*_ [Xr­!Ó±ÑJö>) 1¹¦0ìΦ´G<×kåêÆ}Úûvïr¶sç/Ž­‰×?Ü‘hãJˆý­aFFê™)›%ÊÛåŠCš×ÖD×dðA‚GïÖõF*¨µÇ›VNqVªvQ3ÎÊ•²,$Ìed c£¡mš°D^÷6)ä­Ù¼7Y%ºÙ\æõ5zI]4~Z9Úf=½ìU㣯–Q<ìðåz­ÓÔÞ﨧’Z½<— êŒ\ÚFÍN×SQÂÁ›ØCþ°¿ ÷=Ù—2åFS·Ikõφc³«›jµLlÑêÙ•â{\ö;E«Wb«µö¶Z)m÷–RÁTÉ]¥ŠÀbkö+žu‚Ó´ÚdsÝ–tz¢z溹U†#²Ùs+×n¬ΛÌöûiy§VßnâJy(± i¡¸Ô\eÔñÃ4,dÄæ–È×éÏë].gÑ–º;ù³¶©¾ÿ:c »"Ñí«¶qêÇâ·¿ù9u46|Vû½s¤¨¦–üÆAu¢©%ÐHç[n©§váwոǨfCˆkºKmSæ«OUWÅ”öjð×IœNè¦ñ׶qÛ¯²]¥Ë”Ò¾ŽÍo2>*{…抎¨ÆâÂay{ŒzšAG5¬9H%¾•½±U;g-³ÌÄqkh™‘Îb/ÍИßÛÛ(°˜¶–úµ†Zx^ç9°>ªXvÑ°’Hi-äÝg 3\éó¦›õim–‰ñ–õe{uèæg¶õG±JòÑu«Á|Ÿ_*­_U-% Æ ?¸ÒÝ Ž¼´àïË,ÓM>olÄq˜ƒEñå)¦ºË{´—¼â¥µÅ6«ÓSÜ¥ª–iŠÀ4©Ít€æçõå»]6QTjÎœ£«Î·?c:,æ™×œç=yDüv¹5Þèâ¥ÓÙ+$— WUIœ²I´ž dÎÖçg Öã«q#qÜiêÁÒDuE<êšfx1¢ŒX/¶‰·ò+5—“ÜA‡ê)ªç†píΦ¥í™ò6p@þu¥îpt½'üºG!Ô%´s¤QF[<øŒ¾:œts5Å×5qóflãøjkŽºSTPQÉGøfãWž¬ÔTÕº â©©`Î6ÈKÉè—‘i9%ôq\j˜¢&Ñ7´ÄÛ‹­®h뉮×Õx˜™àöðý®Ÿ ×`…²¾¢¾×pªŸT²?œËÌ(•ísˆsµ¸€rȤn&š:9ª)êÑÕnØšsgG8â/×]7ûö]ÏH(q •8JóS-¸SÎú™¼¥,Ó\6´Î”ç£ ×òÚú¦‚ÀrܶˆÃ—©9^÷ÕŸÕÞÖfÿ{ì¶sú›ž¾ÀöÛ•6–¡Õ:åo=.¨—øÙk!tŒŽQ«'1®kK[» 2ê$aµQ]ûí£Ï·9&©Ã3ørÝÓ5åʽ¾KÅm³Xéi›p÷{ô&šª²H$tRI°‰ò†Èç5ƒ2ØÎz´ ÷5i£™¯_Ùs9í¼G„û]+ˆ¦jêó©Ž1séÚ¬uuOÂÖ{¤¬t"ýw„ÁMY,ìd1ÒÊöÒÉ1ºM“º.iÜ Ìä»Ñµóó*ïµQÛï‡*ò½²ó¨î¼gÇÚõ_†í×j;}T;x(±Ã¨éÙ+žýœ9Û&’IÒ Ü 9 €Ü–ÏGÙ¤åŽÞÚöÇÙLñÀ±íÖXmÕµ•,–W“s!s#ÙÇ Ûû€@ÍÀ}§t–ñ—Ÿsœû-ãï}¥–¢¯aþR4ÿÄÂÒ½SØÞníU©bÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öëü_ƒí8îØëmÒ'KNçÇ!kd|n‰áìp|nkšZà ám4âî›÷”Õnø³åa~L°Ö熓§RÍœÒO$•ÈÍýI3žòÍç¡žää³hµº§[Îû'r/ƒp­m5mÊzRý‹öÓ8Æ×·Iºžr‹.¨¿k nîËÜLßÅåô5ƒü–m¢-¦ç©dÓ4Å+³ÍÐ<<>³Ñˆµ¹2È•®´FÍM±ÌÌÎÝojáÉ.¹[(íÏ¡ †ˆ¹Ôû%ŠH‹³Ö[,ol€¿3¬êéæuf³U1=Ñm™lìÜÖ*·ŽÞ×1²Y(0Õ 44¶ +x[¥‘³¨¿ÒI$’Nd’I$•½Úºö‹‘ m­Ž¶ xdÐÔs¨\ÙfÊ)3$˜›¯LmqqÖÆÇçÒiZSLSkujákvnoUXµõü_·{‘AÉ¤£Ž”hêùô Öþ„åï“^yæzR8äsnü²È˜‹[ÕÊ8L{X™½ým~>ÇȨä{Õ\ßr}3¾vU¤”0NÇ Daû6ÈKF§†‡;©Ä‚sÅ4Å:º¦ÿYš¦uö?~T°t˜ö˼27´ÖQÍ#eû.Ž†I ê9’Öœ‡¤å¼-j£Óº«Ïe¦=¤Uh³LÄq‡ò—’\'Ej«¶2:zÉ%F¹e{äte¥…Ò=îéÒÐÑ«&-â-mÓ~ý¬Lß¾-ݱèbD°N*¬ª«¯·6I*Ë]6RÊƽíËL¥Œx`”iJÐd:KDG÷ë¾æqÏ+wj}K%˜ZíwŽëSD$©aŒê/“KÝÊ7ÉvÎG³÷{\æä2;‚ÌE¦ýw¿~ÞÖ/•·[»cλ’ü/r¾6õ=_VÉ ‹äÐé#2Gij|Œ›#š^܆GpHˆ¦o·´š¯—ây(†öo&…¼èËÎ ×&ÌÌ[mŽ­–×/ÞšuúsÏzSLS«=}ŒÕV-r¬C‡m¸²ß-ÆϹjc³ë6¸‘kš@-sHsHV&.ÄUg¡äË Ûm.µCI•;§eKä‘ï|ѽ²6I$sŒpsssŽæ†õn[lÝ7ŽÖ/¯|Z{59½TVÅ$S1¯d-{\kšá‘Är#Ô±1|¥˜›MÝwhäƒØh«hé¨Cb®„ÓϪYds¡ “^÷¹ÌŒt±…­ny€ +ÄÓÛìg¦û†» +PÏ#ja‚ª*9h |€½­Ž@Þ‹™žOnlip;Èf3)T^ó×1oö±LÚÛ"~£¢93äZªËyŠ¶åm ¤ŽšŠz15Dõ-œÔh§aNÌ£§naºÏ  ÔÆS²b"ÚúﯯTDnf©Î7LÍõu[WV»Ë²ì<Šá +S ]¶‹cSNÉ#‚WK4…Œ‘ºLy>B C!”' 2ÜÞ˜m{uÄÆyñÚb¾½·ÙÃc«ù9ä^écÄ´:Ú:1nŽ¨G<òŠ‰*K"”i¥… \5»Ô38ÑÓ‡?VÖ×ׯfYCjê¿ßVß~rî\=Én·).4-Šw‡€uÈæÆ$:ž"cœYyÞñhqëYŠbœ£e»¶vnk5Lø÷íí}Kf²YÙme58cmbFÒ N;1#K]–dç˜$t³Y¶wëµ»²÷C[åm÷ïÏß/—]Év¸Úü›-Ô +™+¦IöO+Ü÷Ép‘Ž.s·µÃq#«r×e57Ç9ÎÝÏ~‡“ü=kŽÛ5#cm±òIJ]õo•ŽcÝ×Òsƒ¨¿Q$—uï]"mÂÝÙ{šN}ó~÷¥qäÇ ]hj(§¤Î*ŠÃp~™$c¹É íZö¸9ŽÜ>É ÆYµ˜½·jç>Ùg½ñiøîr;v ´ÖUÕÓǦjæv§fÄl9@É£-ÙgÖs;Öc.3=óos7áo{í#¯aþR4ÿÄÂÒ½SØÞníU©bÿÔßÄC}¥‰÷ ‰%ÝGVcpõ?G9#U¾O3‡Þcø?å[âÜ× Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã Ìá÷˜þùSã ú(¢qTG¿wS¾TŸÂþ¾‚8ÜZêˆÁ#öºÇöêbÜaxó8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂs8}æ?ƒþTŸÂý"·2w†2¢2㸗‚M[Œ/Ï™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ™Ãï1üò¦-Æ鵓g¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·Ng¼Çðʘ·_NËK+à"v8‡ÃVgâ•ÎS“jc7p¨ "ÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖéžV±MÏXYSn16¢ZÚ*Fºv±¢¦¡‘9Å¡Ì.ÒH†ÿJÍS7ˆÛU¹Lû¦2™ž¨™'Ä5\žÛên8¦ïK-+”ô‡C¤x`Õ”Ó—jsš@eùýš¢}shb×ÕÕ ,xbÓO%H3@ú­˜¤¨t¬ŽÒ饌F_`þéàgÖ3Iª#_TDÎëíØE¢ÖÓ9­|®É¤@=­iêÔášëVUÅ;j‹öLÅ>Ør¦/LÎÈž6™öJŠ¨cË^ØÈȆ— À9n$zF}™f¨ØÅ2ží\­Ý¯tj ‰—ªªùhk" º:nfI«”ŒÃ´éÐbÌï2Ǽ­b¬V·\LÍú­”ÇÞ²m1†÷ꘈß|ã–oÊ“•Û½mºŠÜØàmú[«íSE¥æ(Ìi<úsÕ³æùHÌÎ÷HÆæ±MX°ï‰™Ý‡)ç”vÃ5S†û­n«ßW-}’ç¶R(šz»¼¬§’’µöꃓƒDâQ2ÎRkÍëû}{–ÔÍâ'n]÷´Çbªm3»>ë^'„»<‚Ó‘Yhþ ý!ý±¿Ä‡úfµwòs/ñ7¡ZÓ©™Öë.Rêñ ¦ËSp´USÀhéê*ÚŠgN$ÙÆ^Ö‚ÙbÑöH'¥×Õ»=-SDLìMôtÅSm²âÖNPª0õ®‚£V²¦{”,¨§‚ßA>Ð4D$— ÇÎçµÃ7ôÜ:ÈR4¶ÑÌÓ®×ÎÝQ6¿[•|D꽸Înر^èq5¾ž¾‚fÏOPÁ$R7©Í=G~ÿÌAÞ`ŒÂÄÀšùMåÂû†ìóÝ­A41ÞE¹­•¯%ñSÆ÷Õ¼áÒÕÛ h$çšãü“Š~–ž¾S=Ž³N¸ëˆ§ïSo|9',<°Và¹0ôvvC9ºU@dt¡Ä6‘ïŽ2öé#¤]3IÌuî+z¦b¸§ªùøG6´ÄMVì¼eíà~T®wîQñ­ŽAFÿãEìx‰±mÄ„’ i™„dD¦ŽqDߪy^cÆ $a˜ßí#¼«\yJ½âH&Š&RPTÄÊ'08:H^5ÈI ’èÉn@ $-tUMtÞvò´Lr–úZ0Í£g;ÌO8sl]‹ªðòÌÉXÃo¯™ôRÉ‘ÕCÛªÄç完æ3,ß½m§®&ݱ¸_ƒKe}“으mÅ×VÞVï5RÑÝä†c­ºËoŠ@$lGê©ê\IËDµ s:² |g5Š*½¯ó¢mãOŽ6f¸µíóm á3âúV®Tn•õ¢¹ÐÂ,ó]j‚MâGiiŒOžzKP×DÑ—ÙÉÙ”¢¬Võ¯1Ùljžtá¿«köõð¼sw%î†åWWI¡óR=Œƒ<Øç°= îô´ƒ»>µ¼Móß1ß÷´˜¶[¢{¦þçÔFFÑüŸCüKø¢µ¯T·§[ç³WXcÜYu·\ív;;a·'Lñ-C\è¡‚¡ÒÈXÂ×=Ŭcu4;2@ Læm&fw^#Æ[E¢/;m¿9ð‡¥nÇw,-Gqv.lP +)¢Ž:ªxäU¶p6{(‰|›]GfèwO-$ƒ»7Ë=wµµße»}’aÏ-V½ünúrÁ…)mS\ç©|0ÁRÊ9›,²X§€ÈßnÑ¥Ú›§6äA­óhíÙÈït^{6¾k¹uÁÑ™D“ϧ•‘T )*iÜòÐÎp T×—7CŸ“\yä‘UûæÝû;XšmÂýÛ{î!å— aZúÊ*ê™%‰ÕE°Lö@É€,|²5…¬aÏíߟQH®9Û¿g6ÓDå¾/Ÿ÷-ü«á‹ƒ+ŸÎ] µSšˆ¥‡(™›´kuÄí''·0Hˬ„š¢"fz­Û:˜Šo1שøRò½…ê)+ª]<°¶‚™µ“¶¢žh^Úw‚[0dŒkœÃ¤ä惼eÖ•UÄÌõM§uÊiš¦":õo{V^TðÝúY↡ìtÜõÛxe€sŸ×°ÈևǸææ槬,ÌÄ^ýZïÕñf"›Û~§¶òÕoÄ8®Ûm .µ4uÒ>¦  vˆŒ[9#Ú†ƒƒÜK²#pÞ=(wÊÔÄì}}ÌÍ9Eºê¶Þ©Ÿ)´r·†/†Aò ¯­i– £ÓÇö¦„½£jÁëf}`å‘ëŠ"&vEç²zȦó¶m¯‘)Ã[¨«° 5QK]K–žf1Ôòï•ñ9ÁÚ[¿^ö NgrÞ5ÆÉ™¿e¦oàÅ­¶ÙvÞÖ}Û*˜kÜ£ ¤¨{¤›o°{¡•‘MÍÎRìesC$Ð~Ö’}$fÖš±p¿vÖf›q·~ÇÖÅ8Þσ +kä{_Y#¡‘Æù_$aycZÀâ]$JÍí—o+{؈¾>'ÒÖ6È. ¨‘̨©uQˆ%3º¡„‡B Ó´Ú7K‹š[ÑQݽbñ–ýVÍœ:÷kxOÊþ§¶Ò\Rý•]Kè¢h‚c!¨f­P˜ƒu¶@Xá¥ÀÆ^˜£-ñx·]Œ:÷Zýÿ]éPrÝ„.RÅu%H£%ôÓ±±Tˆ&s˜R’2 yæ=¡žiœV·^®ö11†÷ê×ñ±õî©a»]ÌÛçí{gŽ•òe02y@,‰ó˜Ù#³5Î2È)«Q¶ÝñÔÌÓm{/Üå”7º•]]$‡ÍFöG;yÆç°HÐsõ´‡nÏq[F|mßñ-f-ÂÿU}+Wí¯þ½IþŠµ«Û é|ÑÔ¶jé»åë]1¤¶-U3"¶Å[ª¦™ó—¾J‰"ÓК--€ç“Žò´‹Ííl°ó‰Ÿcy´[}ù[Þãø–†*©°ÇQ0ŠÈ®Â¯K‹šÙmÒ6"bqËêÜu;¤3Óô¬i"f'ªhÅŸlCj´v‰Ûáå3ìvå[ bê–SÑO&©`}L&X%‰“BǺXŸ#ZÙ –“¸ƒÔs]/"'<²ž·9¦Ümß±üÃܬaŒQPØi*_›á’¦'Ë ±G41Ÿ,/‘­lŒnc2Òr;ìœÖ1G¾ye·±™¦Ümß±úáÎSðî*©4ô“J`5LÛA4"XÈË‘­3<³ssË0zˆÍ}{³¶–0óÊ;\®Å| ÄÖø.‰©ª$ŠFç“šzˆÏ"¶jú¨>½‡ùHÓÿ JõOcz5»µV¥ˆ?ÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öž?d •˜‡ +ÁE%9¨Ž[­¬I’àèùìzõ¿NY— 7ËE柹{*mLÚ*ûŒû+”M°þæžÇk†³]-o•”ñžŽ¶#©Ã~æŒÎ}@o+xʪ7W÷Úœê›Å_q—­Œ/mÀxêís¯¦¨–žçi‚š™ðA$ú§óê§;6¸µÏÚµÍÕ“]¿~åΩʪzæÓüÜ6îŸnºgª/}ÙÄüv8G'xFí…'††²‰ ÁqÓ¿ KD¢i ˆ8n.n`d£Ô±¤Œ«~eÛjj†hŸ‘>µsƪe÷9?·USÔrw® !°Õ²LØà#q†”»wDœŽ@äwR™WË«îãJ4|˜ûŸ²§dcÈ$f3ÁÕný¥••¸úæ£xŒŸÓ¥Íœ¨ñòã}G}éŸuŸ“?r§Û3 pد–ë[g¤¦Ÿ]Êé|²LlUÕ¥ñNwfÍ/:ú²~yï\¨¦ñM=USiúZæ¯Åok›MS×LÞ;èˆñ³˜Þ0ì´&ºšž–MŒxÖÔchÄl#‚™š†íì¹}‘‘Ì®ÑçM7ôô—­h«îrš\Bï….†É¡–žwŒ>ÖZèþ­ÄIEÆ:­qä:A°c$f—B磼ᙌâ½7ÝMQy윸7ÒuÄjšt•[}TÏÕâ´&Â~ ò¯•.æNÞjz:wdzÕý5öþÖÿÌ»ZÓ=î7¼Gs­pÖ¤¢åw]LZù­–ñµÉÚ\ç>Q&œú:ˆŽ-yo!­ÏеÑÓNÚã†øófº¯‡u3ø·¹ùÛ0ÜQrÑr¹ +wë(évƒ!¨{‘û:ËÀìºZZÜ÷dš8¶-óO„ßÂ.ڼ⟦ñËÆ_–¿Qاŗ:˜¥’š[ó!`Š#)/ÓS¹Á }‘.zÔÐÒãÔ±¢Ê#}U[¾©÷KjõöSMø_Û + Œ‰nâþ ý!ý±¿Ä‡úfµwòs/ñ7¡ZÓ©™Öà|£Dùð•åŒiso«kZÐI$Àðy'¨¸ýˆÎ‰ìtÐü¨í‡IÃqó×(ª›Í·½ñA,ÆõA0dmsÛ´ -NZÚrÌ)Ziä®vÚÝÕU—;¹h¢ôS5÷Óò³³9 ´ÖØð•+atI-MNÅã'DÉêd™‘¸z Zñ˜ôÇ¡kDa¦˜ë¦šb{câÅSyªvÕ3ŸwFXíF¿aÚ at› UY St“2Vê/ݹ¥²4æwt†ýë•1àŽ®I÷‰§Æ×3LÕ=x響S1ÉÁa²_«¬’ +Ú9šë5ÆÑc§ÍŽ.’*[ƒd’vîÞÇ4ÅÒº~åŠo8jžºé¼lÃLÇ9™–õeŠ#ªš¦'n)‰åä¸Æ;Þ­¿b;e ³ÕSb)ácXÇ>ú)ËÛ»¤ÆK²ypÌÂ}k†ñ´é)ìÅUâ{/ Ìç;"(«ï17ŽÛK°y=ÀRZ¯˜šÎÙjicm’•4Çfòè©èžæ¹¹êÏQÈåžýåuˆ¾-/.Ȧ˜“6Š~ã7횪ŸkïrË9'¾Û Õw¶Šg2IÞe¨t:ØC£kIs\ \ôÿ'²Þ0ßAò³ë¿„¾Î=Âôu–\-L¦Î&Ùßp°ÁŽŸ6ÒÔÐ[—KPÏ­mö3:j·u·NM~ÂåU7ïïÖáØÒÀÊM,6Š(¶n5H¡x!Íž׿0÷;=û‰*N–Ý$[/?•13áÚ)ó&g®‰ã9x˾¨ot—+…}41ÈÙ)dc%s£,k‹ØÒÇÒÒ#ìžX\¢oÆc¾-ïÖë1n=Óv§ÙYj ú6äúâ_Å­z¥½:ß8-šºC”—ˆ1M‹¾e¢¥Š¶’¬Ãå|M¨lndº Ëâ yh%¡Àå–yi†o:¦›_|UGöÅâ«ò˜ö¸,ÄwœmMî* i¶^­õP „­¨žž¸TN!p,cÞÒæÆçË1VU;jb'Œð&/èÇQ6á\VûOQŠë®—ú:yÍu󶜾é[Hð%Ÿfö‡†í!ÎhÌ0ž  +Ò˜´Ó¿K3Ý‚ÞÆÕMâwhíߎö}Œyl­š‹”ÝJã<–ýžLq2ÓBŒ‡K#˜9g‘Íf>L}Ûø*ˆç§ó”;]dôœ§SÈã=%½±écŽÓM3!ÓÈî g‘Ü´ÒFU}Ûí¡µò~ëŸÁ¾¦?uîÛ}½VÛh9ÜÌÂÔÍŠ9!2Æ÷Š·7Ads[›ö}nÈ ·®ÚY¶?¹ÑÕ|¼ëÏs–“XâsKËu#K\4–‘ 3¬Xô)ZM©øâŸy/®’“[è-P×EO®°Ö[k©Üæ[NO!ÔÕO¤6Gœ„m|{›t†•GŸfsÄåæû;¢]´œñwLgŸÆ×pãÊYgŸFFFç6*Ê×9Á¤†gC(ž¦æN@œ³'%½?+éjñ¥¤üŸ¦§Úé +û•Ë ‰žñQII6)¹ššØi óÓÄèFÍðƒ…‚W}Y™¬v@‘éÌkl7¼e^­wÇ6××Á¼ë›gò8a‹Îû>F¥žGY#l¹ÁŒk¦<ŽM°ŽZiݲ4}°àuuàÓ‘èŒQó7S¤‰Ý7ª}¤üýó£·ß}Ï·_k­6ÓE<¤¿ÓÌc³se1Ö[Ú'WVC¯ ·Ðå}ʯūcIž?¸Çâ´¸µv ºÞ,—Þç©­¿šÈh©¤1ÑË“Ç3j »±­‹I2 qs4€3 ŽŠ>LuÅS}‘çLßã­ÓI:çªiˆß>lE¾:–•º÷Is¯¯¦…’6JI#ŽW>"ƽόHÒÇÒÒ#ì»6õ…Þ&üf<=îásí£¥jýµÿש?ÑVµ{a½/š:–ÍSÝëÓâÞSªYÏlt짨¨§k‰«›Sè\Íg,Ž’N@ç»5Κbq_mŠÔé5ZÖõ¼ixb\80®#Ãôö;{v4v›Ë!…­;-{(Lq¸õ}c†GQÍĸæNkž’fó1û.m_*œ¾£¥´_ð¤_oÉ«7JØj*±]æÒá=ÊZŠ›-ÒŠGTR>šš–®jx´ÒɈ4µÃQÔkFÐœ‚×IF8ª#;èò™×6ªåaÃ3Õ\LÄl´Ç{²mw©1Ön·Úçed)éf’¢Â(ê9°°5Ò0>GgûS´èn¢H .ÿb'¥Š¦:ã)Õ|âpû÷ÙËCž©åžoG’Z:*ë嶭’_j¥¶Û%Šw\ÜY$lM}3c0G´‘ÚZ汬3¨-±Eê«9‹kž¼ïn­™ðbÓh§TßWu¯ÙššÃ7ºLIi¥¯¤ŽHᨌHÆK‰íiêŒïaþ™;ÂÙ«î,0 úöå#OüL-+Õ=èÖîÕZ– ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖøÀ‘Ôº4#©Z÷3¨‘ú‡ó3–Yþtd.'=ýh>!ÃÔxžSUdÙb™ŽaÒæIÃØöŸA~üâžÉ¿Ç„—ç¾^çsëÝûäÀãë=Y~ùQÝ¿«©Š0þ’rÉ5;,ËÇÖƒâáÛ6 ŽŽ—V†k:œssœ÷½Î;³sœâIüée²-À™¾{fﲌ?Hloñ!þ…‡í]üœËüMßèV´êfu½`r[0þµîiÌ +añí¶*kMeeLÍ5d’·>Ž¶°3P‚浺½e õ¤eß3Å™›çºÏµ¨úý~ùœ:‰Ý¹3$eèÀ iÌ#&dÐ|;Ž¤º×QÖNçÑ:I!ôCÞÍäz\\}œzÓ~ëqúÅú·¾á$îAüFFÑüŸCüKø¢µ¯T·§[ç³WôÓ˜Aý.$æNÿZ{‰Ï3šqdzº5–þ®¤Ìϯó ò2<œË¯­Žg,‘‡“žçu’P ÜrÌÝHËøNhÃú^â$ä—ð?~Œ<„ŽiÌ»wZ2þ¸úO©QŸFHœYœ½H?™“ûäaü@@@@@@Aô­_¶¿úõ'ú*Ö¯l7¥óGRÙ«û™Ë$ ÎY ò29ÝdŸBásœdî@.s²Ìç’á%Ç3ÖŒ?ˆ>½‡ùHÓÿ JõOcz5»µV¥ˆ?ÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Gô‚—ñ~þØßâCý +3Ú»ù9—ø›¿Ð­iÔÌëz«f¢£hþO¡þ%üQZת[Ó­ó‚Ù¨Œ>•«ö×ÿ^¤ÿEZÕí†ô¾hê[5×°ÿ)âai^©ìoF·vªÔ±ÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öâ—j«•#५}¯È6xÙŽfþ°Ù˜O£¤[Ì_s6u'ì}e\8CgWW5d±×Üctód“Ed­Ôì²îêh pÏC7¢™ÛL{[ébÕUýîÅÕÈ@@@@@@@@@@@@@@@@@@@@@AúCûc‰ô(Ì?jïäæ_ânÿBµ§S3­ê­šˆ>£ù>‡ø—ñEk^©oN·Î f¢0 úV¯Û_ýz“ýkW¶Òù£©lÔF^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öøì:\ç]a£­p^º`ü;UE°º©ó×ÔBâc¨šIbÝmËÔrÏráE3ELZñÝ­Úº¢ª¦z¦oàçvÖÕ¶ŽVXéÄlÚ˜ 2iËÞ«= ïË,ÔŠµäãuj?Hloñ!þ…‡í]üœËüMßèV´êfu½U³QÑ´'Ðÿþ(­kÕ-éÖùÁlÔFJÕûkÿ¯R¢­jöÃz_4u-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Aéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öë\up¾[­.u–³ÖI$0Æ3dbI]3À-%‘4—–‚ ²ËÒ¶›å×:öFßvò-ú£VÙp܈/ô8¾» ]jã¸l¨`¯Ž¦8š$•ñ¤c ngN¸Ü2%º³,ÖiÎþ¬ÓÎ&xåÍŠ²¶øžS³wËQéíþ$?У0ý«¿“™‰»ý +ÖL窶j ú6äúâ_Å­z¥½:ß8-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒéZ¿mõêOôU­^ØoK接³Q}{ò‘§þ&•êžÆôkwj­KÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öê~S±ß áÙêm¯©«.Ž(šÈŸ6ƒ#à ®'² KÜÖïvœ½+5ΫuͯkÚ6üu³LmêWµ÷8' ´aª÷QÓÝ*kÇUÕÔÖQÏõ’5¹ +ÒíÚb‰™5ÈefñLehêëŸ|±kÎs¯‡Ô‡p[ªÍ}$3˜ß–6Hcdöjh:\=ny8z+y‹KHÍî,ÒÛüH¡FaûW'2ÿwú­:™oUlÔ@@@@@@@@@@@@@@@@@@@@@@@AômÉô?Ä¿Š+ZõKzu¾p[5Òµ~ÚÿëÔŸè«Z½°Þ—ÍKf¢0 úöå#OüL-+Õ=èÖîÕZ– ÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£Q~þØßâCý +3Ú»ù9—ø›¿Ð­iÔÌëz«f¢£hþO¡þ%üQZת[Ó­ó‚Ù¨Œ>•«ö×ÿ^¤ÿEZÕí†ô¾hê[5×°ÿ)âai^©ìoF·vªÔ±ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öë¼i‹iðM¦Jù¡–rQÃC¤–Y^#Ž6‚@ÍÎp¸†´fI-ª›wÍ ¦/Ý—ÅÁøölCq«µ\-ÒÛkécŠwA,‘L¥ÍdŒ’"Zá©®k†â׬ˆ+jf÷Ý1߆³—|LÇtÚ]ˆŒ?Hloñ!þ…‡í]üœËüMßèV´êfu½U³QÑ´'Ðÿþ(­kÕ-éÖùÁlÔFJÕûkÿ¯R¢­jöÃz_4u-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖëüY‹-¸.‰µ—@é¡€Èmc¦xc\óÔÖ©çssÌ­æm1fܾ;؈×;"î˜ÁO r‡z¥uy¸Æûl5³ÖÔ>7IO¦Wµ´î|a±ˆ´j•É®hq.1Š2Š·M9öÄëì·6ÕÅí¾'.øÕÚ¡éê"«‰’Äðö=¡ísH!ÍpÌFâ9‚:ÂßS›öX¤?¶7øÿBŒÃö®þNeþ&ïô+Zu3:ÞªÙ¨€€€€€€€€€€€€€€€€€€€€€€€ƒèÚ?“è‰Vµê–ôë|à¶j#¥jýµÿש?ÑVµ{a½/š:–ÍD`@@@@@@@@@@@@@@@@@@@@@@@Aõì?ÊFŸø˜ZWª{ѭݪµ,@AÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öã•”T÷($§¨‰’Å#KÉ×4õ‡4æ>¢·˜»X›>%ŸØ0õ ´4újjyµm"†1Ô4MhÙÇ<÷nêI‹Åº™¾w}êjh¨ád0±¬Ž6†1­µ£ @€¶™»[?e€@@@@@@@@@@@@@@@@@@@@AúCûc‰ô(Ì?jïäæ_ânÿBµ§S3­ê­šˆ>£ù>‡ø—ñEk^©oN·Î f¢0 úV¯Û_ýz“ýkW¶Òù£©lÔF^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£G¥Mr¤­šhaš7Ƀ%c\ £qhp{IG" +Fl½Ô`@@@@@@@@@@@@@@@@@@@@@AúCûc‰ô(Ì?jïäæ_ânÿBµ§S3­ê­šˆ>£ù>‡ø—ñEk^©oN·Î f¢0 úV¯Û_ýz“ýkW¶Òù£©lÔF^Ãü¤iÿ‰…¥z§±½ÝÚ«RÄÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖêNT1õ/&ØzkœÎˆ<¹@&xŽžS¦0÷» Öfu=Çp`%+ªÝ³6‹êølÑMû#9øäèßØáSa£Ä®Š†íOqõ•2ÍÌ‘ÓHúVm¦Ièí hËs@k= ¡ˆˆ˜Q\ðµ9÷ÍûÙÒÞf&uÍ1ãV]Ñefº9?Hloñ!þ…‡í]üœËüMßèV´êfu½U³QÑ´'Ðÿþ(­kÕ-éÖùÁlÔFJÕûkÿ¯R¢­jöÃz_4u-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öãµ4V³Dñ2Võé‘­pø8º5»Z¹9£°Öß+(^)æºèéGm0@!ifC~ð‘Ü]èZa´LG\Ì߶"=æ»ÌNȈç3ís›u4´”Ã,®™ìŒtŽ9îk@/ nÄf@ݙݹt™¼¹ÃÜX¤?¶7øÿBŒÃö®þNeþ&ïô+Zu3:ÞªÙ¨€€€€€€€€€€€€€€€€€€€€€€€ƒèÚ?“è‰Vµê–ôë|à¶j#¥jýµÿש?ÑVµ{a½/š:–ÍD`@@@@@@@@@@@@@@@@@@@@@@@Aõì?ÊFŸø˜ZWª{ѭݪµ,@AÿÖßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø½k£G÷$eüF¤?¶7øÿBŒÃö®þNeþ&ïô+Zu3:ÞªÙ¨€€€€€€€€€€€€€€€€€€€€€€€ƒèÚ?“è‰Vµê–ôë|à¶j#¥jýµÿש?ÑVµ{a½/š:–ÍD`@@@@@@@@@@@@@@@@@@@@@@@Aõì?ÊFŸø˜ZWª{ѭݪµ,@Aÿ×ßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öé.Zn•6Œ#RúgÔG$’ÒÀHfZˆØã€]«Ipugžc­+[êˆË]™¦5î¦uö>w&W;`¸W[˜.ôõ‘²9_Owó?dâæ²X‰|Ðâ ]¤æp%½3xìœöÅá­QiîÉÜ‹-D¤?¶7øÿBŒÃö®þNeþ&ïô+Zu3:ÞªÙ¨€€€€€€€€€€€€€€€€€€€€€€€ƒèÚ?“è‰Vµê–ôë|à¶j#¥jýµÿש?ÑVµ{a½/š:–ÍD`@@@@@@@@@@@@@@@@@@@@@@@Aõì?ÊFŸø˜ZWª{ѭݪµ,@AÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖëŒm!u¬¾Âø›Y‘H6A’±¯HK²: ŒÍ­xC²=Y­¦ù[nq¶>3)·,§{¯l¶lMpÄUت¶ÞÊIÙlæt&¥’¹äHéÜée`ÐÝoÒÆ«KsqÞrH¼Dι›Z;/ïfs´uEùÛÙâ¶ËS=$/©ŒE3£c¤®ÔòÐ\ÐïÝœÀw§,ý+y‹js‡º°?Hloñ!þ…‡í]üœËüMßèV´êfu½U³QÑ´'Ðÿþ(­kÕ-éÖùÁlÔFJÕûkÿ¯R¢­jöÃz_4u-šˆÀ€€€€€€€€€€€€€€€€€€€€€€€ƒëØ”?ñ0´¯Tö7£[»UjX€ƒÿÑßÄ)ˆˆò”ÿÄ¿Š +ÇGª+Öø¹…Ñ¡˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0ƒô„£‰ô(Ì?jâ9Ì¿ÄÝþ„­iÔÌëz¹…³S0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ ÂaÑ´Ï¡þ%üQZת[Ó­ó f¦a3„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f};QWÿ^¤ÿEZÕí†ô¾`#%³S0Œ„ Âa0˜@Ì f3„ Âa0˜@Ì f3„ Âa0˜@Ì f3>½€(Óÿ JõOcz5»¹V¥ˆ?ÿÒßÄ”–ÚIœ\ø˜Ië%¡mŠa‹<<“EÁgd,ã¬aƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4\vBc¦<“EÁgd&9ÚaƒÉ4C~Řçk6]j£qÌÂÂOôÈXÇ%¡üòM³Žv±†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†$ÑpYÙ Žv˜`òM˜çi†ÖÚèã ¶=!¡cífÏç’h¸,ì…œsµŒ0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´Ã’h¸,ì„Ç;L0y&‹‚ÎÈLs´ÃëmtŒ9ˆX7e¹£Ò±ŠY³ùäš. ;!gíc I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0Áäš. ;!1ÎÓ I¢à³²í0ÃÉ–ÚHœؘÞhXÅ2ÍžòÕ‘ÿÓßÄÿÔßÄÿÕßÄv/ý”8SÞj­UpÕ™©Ÿ¡æ8Ú[ž@î%ãÐ}J×Eøæפ¦*‹g½¿±”Ñ6›ä㟖N àV÷Lù×_¡5íŽ.~_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};øödàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ùdàžotÏ>„׶8ž_Nþå“‚x½Ó>tú^Øây};ø–N àV÷LùÓèM{c‰åôïà~Y8'[Ý3çO¡5íŽ'—Ó¿ƒïá_ÙK„±}â–×K X–ªA ãhnd¼‡Û—-/ã›^Ž™ªmh­èûMsÍJª¤ñÿÖßÄéû ?–‹zþ¿ô›¸ûö=žÙy±?.{}ŽžSQ„¯È_òÐlØSÑ\¡ýŒûN®Ä°ÿ.;[*¼3Ô?ÿ×ßÄéû ?–‹zþ¿ô›¸ûö=žÙy±?.{}Ž»Ã)±=âŽÝÛ©ž8GæÖà ýðÌ©uUDÌꈙàkååß<¯`ü3KYg­°Óˆè¦©–†Pâ-<á„œÉ ½§?Ы~Ái«ªñ^¼1TvJØ­4ÅéꙦ{aËï8Cb [z”öˆ¨¤¥‚iij ’]EñF”s‹KNynêQ¨Ò×NŽ4³Uó‹Ó1´ÍêÑÓ5ôv¶YLk½®â±Óá<1„°µMmŽ +·Ý6¢¢WI+$²†fÂ×dÒ2Ü™šôšJ銦"˜¦bÑq½0Ñ£Š¦"fjª:úžW^LìøQ¸Ò!Û›S¨ÝJé Ì2Y ‘–y´é'/ÏÖ´£ìMZHÑάS1=Ñ>çZ´L×)‰Žû?[ÅËŀ鯱áz&ÍUW=&‘,ù02=Aí%ÛÝŸ îYŠké0c›aŪ6ÙŒTàņ>UµÎ˽Ör[‡î¬=¡1S>Çå*Áˆt®®s·’r.ÈFY¥¬ý‰ªˆÒN¼5ÄSºìS¡ŠðubŠ¦{œílÃØÇÉ·[›n–ŽºibŠGÉ‘MöÓ$‡ƒ¸å¸õþ‰4MZ:⚧U®"-1ÙÔåTS]3TE°Û¯ª}®ø¿r/… åÓ-#Mºq==D»Kj!§2€Nz†¦–¸oß‘U´}‹¯£®óœEéØ­ÊRêÐSŠ›FS1Fù‹º“܇.¢®²ýš *à¶Ó‚Hi˺y‚>Àâ§}ŒÒÕF¹‰ª{"/â ¢›ÌÕª&#¾j·ƒÙ°=6ÅÏ­§¬¶M1<“œdÌXü½Àô涯O3:9¦r®fÿy‰kNŠÓ\Oͧ/½Yф䊢¡ÃxC K‡l×+g;šñSTU¤cáçÓ…­èôw¨J®k¯I5Í3h¢f"-yˆ¼Ý6"š"›Åñg9ê‹Û-î3|Àü;ƒ/ï’0úÊ Ë(™9Ì;fñ–yoë;–ôi溴}QULÆò­SŽ5ᘴö»2Éɾ›Ùé|šÉ㛊×ÂKò–£Kˆ'#žd€2¿2‹¤ûTS\ßV’Ѻ2w£CLÍk¦fy¸YÂt÷ÜOd¶Þ0ëpì38=ít ÌsÑœ¤å¿ êÕúšt˜iªi¯Å:²ö#×Mæ"iÃzµçí|îP!°aöº¼5%²ºš­»8õLè*iÁ:„y=#éGÖ¡cì=UWiŠñDÓž«ÄÛ«ê¶ÓSÞ0Úbrœó‹¾Þ7«Â”8×u¦ÃtqOtq’Ùg;Ò׳7o;óÉÛ³ MW:I¢k›SΨÎýM¦ªpEXc9˜×=O·päà EŠ\é)´ÐÐØ¢¹Í nsvÒhû%Ù’58æâ=ÑšçbjŠjÏ9Òá×÷7U4lèñNû8Mn°b«§Q[ÛC®èË}UÞýÊdi&œ1Vº£«Uâ>,á4EX¦Q·^n¤8;_¿å Øÿ°¦ÿ¢¹Cûö]‰aþ\v¶Uxg¨ÿÐßÄéû ?–‹zþ¿ô›¸ûö=žÙy±?.{}Ç‘ký£ b#w¸ÈÑÌéæ–Ží'Ѧ6îºÉÏp o±tU]M:æb;¯›]ÄU:£>œéܦٱf–’® +KmE-Êš¶é£6\Ý”ÇyvNy9Œò•>ÃÕ¢ÒSTLÕšfóGS´é¢º*‰ˆ‰ÊbÝrå÷|cƒì8²õ‹)®Ì­–ª £¦¥†)CƒåŒ39ö††Œ³Ý½F§C]Z8ÑM6Î/31ª÷I«ILWÒ_Te›ÞÖqXªðŽ'˜^–¶÷í{cQ¡•ïpt¡ù3Ktæ@ôœ·©èô•ÕÌÅQLFq£z4M5ÑÌÚbª§¯­á{åFщaÆÓ¹æ'Ý (¤Àê{axòÌ¥ O§%­aª¢4qèÕ3=ñ>÷Z´ñT×;iˆŽë8 ×Ûª96·ÚY(5q\gñäs |y5Ùå–ó»¯5*4sÒâêÁkï½Ñ±ÇGn¼w*˜~‚÷‡¥t®’™–O&ÖÚuDéšíÄ ZsåÖ:”:¾ÂÕTi#V*âiîw§Ot}xbb{Üïtø?>Ãm¸‹ŒµuÐÔË4q>6G?a½0 y;Î[‚“DU¤®*ª0Å1=w¼ÏgS•SMÌDßÇWTgÅÞ¸w–œ-M¯3UU4Ûç1TÓM¥ýã€BrgÒkœÓ»~AVé>ÂW:(ˆ:&¨¶_&fþäº4ôÅyÎV§?¤¦åJу0¦ßCIKp˜ÔM]R*Xò"›^QiÈ·¤:÷€§y=ZJæff˜Šb˜µ³ÚÒÅ4Ú-35LÌO';ºâ¬‰ŠámÞ*F^›C;øåplŒéJÒÜóëQ©Ð×DQ•ðUW\jNÓ¥¦©ªoltS“|Ò¾)³[ì•bŒw˶±1ìh'<Û“À9_Võo£®jŒâiÝ6Ÿ}tÅ:¦ÿÔ®ÄX ÕáûòäêIí”ÐÓ> é¾ Š@öµÀ°¶DzÕuti4s\QÇ7½õ^-1ÕÜ—MTWâ›a‹s¼}WÄ«Äö\MMŠ,w;„TO«ºóèj]4.ÒâÒÜãõdC²È¬S£ªˆÑÕ|4ÌLjœã{j«‰ª¸™ùSq“ÛùIÃS8Wlè©,Žµ¶©ì{CäÙ‘¬4à3;½;–•}‡®tueUâ¶ì½Í©ÓSMTç•4ÚûóuP¶áK%ÚÜû¥ïËtn{™;!ç |M-ÜðdÞrvG&ï9)¸«ª&Ôà›e3k_fH³ÓkÕŠ/œg«½Ê±>+³Ú°Ee…··^Ÿ=LO¥Î9@¥Ž2I:¥ß©Ã£¥»ºÔz4UU¤¦¼8mŠoÞ-Ôï5ÓM5S|Wµ£<³¿[„ãIm¹à9m‚`úšGÖ™£ÈæÁ#Áfò29VjFG1¥ª©Õ4Ó=Ž\`ˆëŠ¦]·_ÊŽŸ¸IP]C]bŠÙ4Ìc‰ŠMkN@¸5Ã~^½Ù¨^KTÓVØÒãé1§Šf‘£ÃW}Ü*·áü-c´Ø(kÅpeÑ— +ª†FøãhikZÖ‡ô‰ Î9~e*š*ÒW5ÌaµLDÌLçŸSUEa‰½ê‰™ÝÕü°á–^qKkjG7šZª›|¥¯Þùâ1= ˜Nðc5Iö¹¢‹Fqª2Õ{òK£ìE1]WÕ9ÄïµeÉÝÓ Z)­Uô·ÉlÕ”Îʾ2Ù¤-k™·¤ÐZZíÛÿ6ùÚxª©˜šqÓ1–¬§½E4Ú3ÃTNsžpàX§âÚÛÝêù´«¥¤ÙþÙŽ:œ\70·íé'%×CMZ*i¦sÊo7Õ³·cY§I5U«U¢Úú§Þë1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AÚü…ÿ-Çý…7ýÊØÏ´êìHûòãµ²«Ã=@€ƒÿÑßÄéû ?–‹zþ¿ô›¸ûö=žÙy±?.{}ŽžSQ„¯È_òÐlØSÑ\¡ýŒûN®Ä°ÿ.;[*¼3Ô?ÿÒßÄf.ÀxVçyª¨ª´RM+ߛ䑄¹Ç!¼Cô+mš¸¦"*˜ŽÔ&Ž™œâsè×}ÅCÝ»æ]ºzý)âçÑS²£\÷vï™:zý)âtTìƒè×}ÅCÝ»æNž¿Jx; ú5Á_qP÷nù“§¯Òž'ENÈ>pWÜT=Û¾déëô§‰ÑS²£\÷vï™:zý)âtTìƒè×}ÅCÝ»æNž¿Jx; ú5Á_qP÷nù“§¯Òž'ENÈ>pWÜT=Û¾déëô§‰ÑS²£\÷vï™:zý)âtTìƒè×}ÅCÝ»æNž¿Jx; ú5Á_qP÷nù“§¯Òž'ENÈ>pWÜT=Û¾déëô§‰ÑS²£\÷vï™:zý)âtTìƒè×}ÅCÝ»æNž¿Jx; ú5Á_qP÷nù“§¯Òž'ENÈ>pWÜT=Û¾déëô§‰ÑS²£\÷vï™:zý)âtTìƒè×}ÅCÝ»æNž¿Jx; ú5Á_qP÷nù“§¯Òž'ENÈ>pWÜT=Û¾déëô§‰ÑS²£\÷vï™:zý)âtTìƒè×}ÅCÝ»æNž¿Jx; ú5Á_qP÷nù“§¯Òž'ENÈ>pWÜT=Û¾déëô§‰ÑS²£\÷vï™:zý)âtTìƒè×}ÅCÝ»æNž¿Jx; ú5Á_qP÷nù“§¯Òž'ENÈ>pWÜT=Û¾déëô§‰ÑS²£\÷vï™:zý)âtTìƒè×}ÅCÝ»æNž¿Jx; ú5Á_qP÷nù“§¯Òž'ENÈ>pWÜT=Û¾déëô§‰ÑS²£\÷vï™:zý)âtTì€òi‚¾â¡îÝó'O_¥¤HÀ€€ƒÅ²1䆸ŽG"GÔ}Gó#/$aü. ë9~”eýF ‘’g¥Àär9r#¬º¬u£/4aá$Œ‰ºœàÑë$ñ(Ë͆yf3õ#/ê0 þÖrÍõðÑ™9~”eâ$avCVYå˜Ï/^]y~~¤hÀ€€€€€€€€€ƒóšhé˜d•íc[¼¹ä4ÒN@~ý³Élif9‚¤Ö‡äê¨×=Ò05Ÿh—4åíò¿É³öiƒ˜;÷#ê¯aþR4ÿÄÂÒ½SØÞníU©bÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Ö?d-=Ç SSÔFÉb’ïikØö‡5Í5Ñf`ƒérÅQz©û—àjmLÚ*ûŒû÷k´rOŽ¨ë-t̤¦©µÝWOLÑRs&G½EióvÕÊ0ÌÇn«òÔÚ«yÓÕLqœQãíyÖr‘‹0üW;L²ÓUÜbº[­´Õ& Œd\# $…¯#8F½ÍpdÜò̬Óz­®jª/ºšq_¶ÜØ›SyêÃmó8mÅá?)xŸ Üä´Ü&†¥ô;Tu,€D&£¸ë`;0çäŽPsI n”¢«ÌDúSLýç3ïfªmoGwUiú‘bå‡Þ&–¶Ï=þšž“(¿›lÆG—8gÒ~ˆ%éú3-Ë?; õÞf®Ì8ã”ÄvšKS{j´DvâÁ<â]ÑÊ~*¹aèm´–½›jî•ñÐÅ$Í/dAÍ|”°¬µŒv–æqœ–s™ˆŽ»çº"eˆ´DÌõ[œÄ{]Žï¸®ýl«³MqŠÛEúÑ ª¢¥nšˆêd†H^bsòÍ.鵤µúrÜråTâÃÕödÄöÄM§‡S¥°Å[è¼q´ÇÖþÞ.x· ^1ÕÞÝYLÑn42Zmf©Ñа½¤‡·bÒÈ°8‡ddq቞®’ríÁûÛM8¦#¯gÙŠu>þ;å–íKr¹Ãj¬†Ö¨)åÒQORêÉe‡nbÚFÈi-c sqyÌôFKj´–½³ÃV[]­y¿~]"‹Úùb¦÷í½²îÍÎìXŸâŒkYK°Ó[(à·Ô:9!Õ;ÍT/{¢..4 qÀ åwˆÎ­‘\Óy‰ö÷¸Þñf˜Ÿ¿L{cbKÌ7«E‚Ñ4tÕS+êe‹l"Š™s´Æ\Ðç½ÏkF£“Fg"rZg3hê¦óÆ"<[åyë›G Ÿc‹UâžãsžÑ-4Lü}F+˜ˆ«tLpª!Ìqo,·»uÆê(«"y³ÔELê.a<²W827Lá,`¶tȉÌfÞ–â¹Ó¤ÅœjšðÛd_ ïϲÕF§^ß}¯oneçn5¬½âgQ%¤³ä)é9ÏU#è›3c2j{ºÀ.vzw¿i™Šf­vª¸ŽëgϽ­6ªb5^)™ï¿»¹øòiÊUu}%}Âéu¢­¤¥£mLû(M,ô“çKO4qxkZ:x$¿­&¬13®#TÇ^^>ò)Å1¦uÄõ>¯Äô’ÙltUR\/V_«jf€O :HËbleÌýc#.'¢ÈÎC22Í14Îù´ÄÎú¦}÷äU11‹Ò™ˆìˆ÷YÁðO(7 9‡mv§UÃnª¸\/’ËRi¤«lbž±ú„q7¬½ÏnEý·<ó9(Ú¼Úb= ê¿Îµ¼x;éióª™Ïζ¿V÷äç6îQñ¦*f£¥|“×Íu‚¢¢JY4é¡ËED0ÊXì¥9­qÓÒë!£91z­Õz/=vœQÞójo×j¢#²i™øÞôgå¶ï²¦¦ +Kƒî•öÉëE4“FÑBÍffS·Q.”9€0’ÖâI-qb·Uâ©ž¼é« £¿“l8o×i¦#«\bð~´¨ãôv**y!‚zË¥ÂÝ-T´’5’ÅMNéc©† 5äi:uf3-H™ªcªôÕ3ÛaŠbzí4Û²^Ý)˜®ãMMfÓ2é-î¶Ðk6Æ#£ŒÌéöòÚ9 43V€âOPÉbš±áê¼U3×òfÜæÌÍ8o×i¦#«åEùfùV Ö!Ãt¸ò×PRÔyÂÈg­ºblf’œmY wNW !°ê#Q=`d±DåW®»õõÎPUíóh·WW[اågWYiE-E<•NÄm²š™)_%…Í.˜C˜ìˆÜ,ÆMrÞ‰šðõ_þ—|¯fµDS‹¯ SUq5n °:éH[•=M)›[ugNú†G6^¢âAô¶¾q²jˆžü¼lÖ׉Ý1ÝŸ±Òõ¼­â“]}¡€À%7(-9ÆpKUÍ%/ßÓ!ñJàwd G¡(›Û=uÅþãœøS9•åyêŠgïQomPã6lC‰pLw˵%E9¡f+šžJWÀ\ù[QS .~ÛP,sKÁ` åÒÏ=ÚèµQª©˜ã]Y·Ò|éÙ?}§'1½r£Šiâ»b*i)ü•jºsèÝrÍsGÓíõfLJ<–04´µ½#™ÌkEyESªª­ÙçM1Ë k‹žã¨ !»ó+j«Îmób™µµâ‰›_¹ŠiÊ/×5Eþã1»ÝùqN,Ã7JŠwSMQLÙd‰ÍsK‘Ô4¼˜%º€:rÍv¯(î¿¿.·:sã1ÎÜݹIÆ’Òá[½êzYioóŠ7SÃÍкFHè¥ê:õlò‘…¡­ÕÑ=úEò‰ë¦ý“ÅVßïm1®ß6«wbÂô°ï)¸æ« RÞ*ª(Ý=Ö½¶º(›NC"{ªåˆO3ƒó~Q°›t·07œÉZSTÌS¶¸‰ìŒ3Tö·ª˜‰«e7ïÎ";zåÊ>*Ã-¹Yj&¦©¹ÅYl¥¥ªØã{.N-l’Â×d™µ®ù7«2³MSVZ§Ó~Êq߇6³NzüÜVúl6ãÉð±O)8ïQâ˜$¨¤ªªµ G4››ì›'=”µæXÃœýÎM9 µ ç$Å6½$SÝ1O½›D}⪻âgÜå¸çâÜ ==MößO)‚¦c1£2É<¬9²žV¼»fÖý¹ssŽï²I+]%sM÷S~ÙÏ„jmE1W|Û²2ã/ŸnåãÇáø­sÓ[ÍÎÄûœÏ’q³•²DÐÖ5Înm:È:Žá¿{€[é&c¾m1WåË[Jmh¿]S-›Ç“þQ±}â· TÜä¤4×úz’iá…Í4溜hÙKÉx~GS\ИÓÔsÆ+M¶ÑŠ7|œ·ü®LÍ9_eX{~T_wÉ|<7Ž¹F¾Á‡* m }}Ty¡&›`Ù&iÖ6®sc ÄàÖá¿qÏ1xJˆ«V¬©ŸÁw16ÎvUnÜêŽVï{Òr¿z§²Ûéªêééëª.•öÙ+E,’±­¡/.™´ì.%ï h 'CI'¨´§IU隶êœ>2Úª0ß®ÕDl×ð{4U´8úÄ/8ºV¾ŽÁSZf×Lø©«[ceRa”fZÖ¸–³'4Ëž]C-ª˜ˆŠêÙ9kϸͲíb/34ÆØÏVV½¸Î}ŽyÈ}Š²É‡æ|ðH«+'¬¥£qßKM18ˆ†œ³y`èÆ^X:—XŒ1:â÷ëë™·uìç3ŠfcTÛÂ"ýúÓn ²W_éo”õl§ŽlsS2JvT2@ñO¤9¯ ´ŒËNaýGrD_Üôž5ϳÚ뤛cŸR +aUò™x»`Ü#=}´Æéh[ ¯Œit1½›p74˜õ–åöH.Õ×i‰êÅì™·µ¥_.»M»b>£­q—+wK%]ÑÔó@ÊQ]nµÒJø(ŽYâ3TLñn1Žhlc \7œ³Zb꾺êW´SMçœL3n»j¦'ïShäø¿KXž-À1â¤Ò\))ÍÐ[çdb–¡šŸRiŽE΀ædžÁ¹ÇvafùDÎ^tÄÎè‹Ä÷ÞÛ.[9ëÊ&#}ínínëäÆù_ˆlœæ®¶’¼m¥l5tY爡堸G'[^ÀHiŒòƬþ¦½|οŽÂF¢¯aþR4ÿÄÂÒ½SØÞníU©bÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öê~RpuF:³2Šš¥”ÒÇUIVÉ$ŒÊÝTÓ¶`×09„‡iÈäàFy­¦›ÌNÉ¿)iLë‰ë‰‡Ã¤äâºë{–íˆk£¬ÑMA 4ð!Š*Œ¶ç'I+ß$­n¢ìšÑÉZà‰½þt[¹œvµº¦ýï‹`äz²žKlw{“k©mT³ÒRFØ6O-š-|ïÖà÷¶«n–±»ËˆÌ­¦1^úæœ;5ÚóÛ6böµºª¾ÝW´vEÞÆä¶õl§£¢®¾I5%¾Šj*VA ~R3dÙgp‘ÂI#ŒÇ“XÐìß–®¬Õz¯yÎb×ööåñr&)µ£(›ÛÙØ÷0Ÿ&÷kmêŽëw¹G[= è"|tÛÈǹ…ÒT8Èó#þ­¹¥%Î7,ƹž¹ˆŒ²Œ¦ígTFəߞNcU…yÎ*¢¾m²æ´•»-?knøŸ«V{´ìòË#ž}c-êr¾øˆáUÉÎÛ¦gŒY×ÎGëðÔv™íW&G]mçщ&€¾)a­˜Ìøßdck´–¸?­§1“²DM6´ê¢)žëZy6™‰½úꚸåg#¼šI`¸QVÕÜ%®’’’héÁÔe©›k<Ùê ØØÀ2Ò [ÓxSÑŸ9ÎX™¿ž9G|jÎJ®—;„®êÙ¨)î­»EàÕSšíbTl!ÝY0?GÕç’ÒŠmiœðÞÛs¾¾=ù6ª«ÄÄ|è‹÷[W±MÉ)§²ÑÛ¹æfšóå}{?µümIQ²ËVï·§Vg«=;òZQ£ÃÇ¡Ï*£ÚÞ­&)ª}/ù>çò‡“½¶¤ÓÓÝÌV£ruÏ›2"Ùµ=æWA·e°2’ò݈%…ÚVôS†ÑÕMíÎ×ì¾]Í*«÷ÚüµvÙÌ1þ [a¢’F±±ÖRULæÓ6]¤ÒÓ–{òëÈ®‘”Äì›òŸ{IÕ1¶-ààÒr9²®Ôµ‚*)nô·–Ól³ÙÏ‹§ v¡“'9;Nžƒõ8g«!¥á¶é™ŽÉ‰‹q›ÇÕÎ+ð‹?|GÉ—§»T²¸Ã=]e¾¾íŒ;a5XH.ÊF»#¨tz.#<÷¬ÄZÖ×Lñˆ¦c{ëë¦ÜæoÅëUòCUw·b}pc®7¦ÄÓQ‘ÁÍš9¸Ž##‰¸k:Ÿ›ÜNð2ZUEé·]ï}ù{"Í¢»Mú¢-mÙßÅìÛ9!m³Yn¢³6Û-æÑlòÛHZÙ‹µtt‡Ê4ä~ßÚÝ¿h¦"©˜ÙáÖj¼[|Ë–ãììgKI°¨æµT5qVÓM£hÖÉc'³6êcÚç1ÀœŽ`‚c8˜ê¿8˜˜æÄNS×ì›Ã‚ÏÈýe]ºäé.,7:û…-Åõ±kéÆ&ôղkc 9ɬæ]«5Œ­ÕV.ٖد{õÓ‡²>»é]y+–ñIŠ"–±¡÷øâcœØŽP–S ¼—F   Ùžµ­Z;ÄÆÚ±s¦m÷ÖÔé-1;)·½ù^92¼¾ª½ö›Ç1ŠçOOXk:l¶°¡–^œ×H›_}SW(cKjÝM¹Ìû^†1ÁuWÛ•²íoªe5m¹ÓÝ,FXŸì ’9²95Í-p!Íô‚V–˜›Æɉì¼OŒ7‰‹ZvÄøǵġäžél}²áGw.ºQsÀúŠ¨L±ÎÚlj%c¢0±­{Xa @44æ KLjôm7ÎùÞý·÷¾½·åkv[Þö°§$aZ»%K++íÆá$ÅìÔM^Cä“qÉ€;2º97=Ù•4Å3Õaç~\Ùšï~º±r˜·7åeä€Ú(,”¼÷W’îÓÝ5l²Úm];¶yj:rÛå«~zz·îÍ1‡«LÇßlÅS‹­1<â}‡bäJçk§¤¶Ô]Ù5ºžêû¶ÈSi•Ò‡Ô2#&ГdpwØÖtå¨ ËJ(ÆùàŒ»m1ífº±bõ§>ËßØü¢äJñH)) ¼FÚJ+ïÆêLä{ß+ätsÈ%ÀÚ<1Í vzKµäu£G‡©áiŽ9¶®¼X½o|O žíבŠêÇ\„(ØÊ›¼¸”ÛMDZ3d£h,.ѸÇ4œõÚ)µ½Z¦c¾÷ŽyKUリ‰î·¹ã/#Wk‘º>¾îÉŸq¯·\[LX#}™õlCõnlmksÍÍ9¸¹Ùä·¢0Ûux¹fÖª±_}8|}j¹&óž\HóY²òÝ%%0Ê=[M¬‡}¡¬8¸fÞŽ@žýÚUMâcmTÕÂÞæÑ]¦'e5Gûß;r]ˆql5ôó^!÷JH©ªá}+¤Ž`s]- t¿TçµÛÃö™85àæÕS‹)Õ3¾5jžîæ)«}q¸|]Ë-<ž2ÛCx€ÕIµ¹¹ÀÏl–8Ä ‚µÙ’]˜w¥ä»!šWTL_\Õ7³7÷GsΉّ^\nDkq8}öèÚ™d³Ëfl´ôû˜å-.šbçÉ´—6‚ÑÑcN¬‡Ibªq_mVÕ«)¾®ßs4Õ†Û)™íÎ-¯±ÇñŸ&WØ-7KµÂâÊÉ`Ãuָᦥ1jŒ8<}dŽ2;FD Ä‘¤ ²<ô÷˜ªzêŠyUk®‚ÑU1èÏ_t{Bƒ“ÛȲSÜ®µâ­Ô6 +ŠZXYLbvsÒ´=òn×.–60Ö¼éÌ­þÄSòç®i˜Ëf¾sç¡Ÿ“QTN{ur¼¿¼œò_p¸Úpä÷ÊÑQ¬E>ÀÅ uM+byåçS™1´5¬Ë2â —Jé¼Íó¼M=ÓkÏlÚéªÑÛwÅùfû8w‘ºës­qWÝU=ššzz6oX¶Iß­ÂG².ƒtµ€æ\FkZ¢j¼Ìç4Í7¶ÝsÛ6oDZÚ±DÛ³Tvf÷åäš¡˜ч©ëšÉ­n¢’*‡Â\Ǿ‘áãTaàévY˜Ïq[Ìç6ߊák®ñ?:üæïíÇ“;ÜÕWEyæ”—Y¡¨¬Ž(NÔHƱ’óyvƒfÙ„mÔ×¹»Ë]™\â‹eÕ‹ºõÞÝ—Ï“iªùõá·²ý¶rr|ç F[$FôðàøF‰)Ȧd±ÙœÜ 5ƒ»ÕùÖÓm½j¦ý¶÷5‰´ßtE»/ïp:ÎF.˜‚y*n÷HfšZZk|®‚Ä%¦ŠvÍ(—9^]$ºC5g¦6—ioH¥³¾Ú©™Ë/6óÆsÝ‘Õm‘TFß:Ñá×>Åx&²é}·ßmuqÒÖÑG=?×BfŠH'Ò\Ç5¯Œ‚×1®cƒ·A‹Mï¶-çßíwü#5ÊIªàuÞyjê!t‘½óFÇ9’1¯#:‹c`x- häVÔŧ.ª&3Îþu<úþ£Y›ëëª'.¯6¯¬äT|ÕZ`¡ª¤¹4]ikêî/©’ âšJÐ[; ^ÒØËKZÀ×ên†œÎôˆÃkuDÇmæóÏ2f÷¿\ÄöZ-²}jKªâª³VUÜ䪨 ­¬®™ïaÊWÕDø‹#iqÙGpÐÐ]n]d•˜‹LNÊf7ç17fj¼Lm˜žO™'#“ÀçUQÜdwª›Í<‡[ÎY³’ Òö– ƒšAÉÃ,·éMmn¬QÛLÏ»ƒ5UŠûðñ¦-ñÚùã‘k› ªÅÚ7×ùkËBIiuC¬Ó +wDb 7{ÑÌIÍ4ᵺ±ëõµ÷±5b½ú⟾ê{4Ž\˜ö¾²ì*/±_K¹¾‚^Øô>Ï 0œ´¶´duž’ÛG-»߯í–*œWõ¢˜ûͽúÎH¥ºÅWäº×QWFçE©°¾ŒC¥®Á‘®0‚ì‹Èo¬DZÛ«š¾£7¿}8|}ïKòIyÆ"¾’ªîÃCq–šyáu9{á|!šÅ$Ž—(›!`pÔ×¹„¸‡fR)´ÆÈ«mê›_fDÕÆi¶î¼íÞí¬Ua‹Ùëm²œ™U“–zu´€ì½:NGôŽµ%8âcVýúâx±£« Äü[S§m†›uV¨–âe}’9çe—;‘úž×ž‘Ùé‘îžy埥f(ˆªñÕM­¿UøLñfk™‹mª÷ݳ”p}:¾GMU’ãmç¹sËÀ»kÙ}Œª"Ÿe–­ÿµéטëÏNìŽÔÆ>¬ßSíb©¾/Z-Ê#Øôîü‹Ô\d¸QGqZ.7\ª)¶¥Ú²I#Žm`6)\àX\:A®îçMmTÍâ;ïÂ&nÍUÞó×1iáköÛ'dò…:±TÛ6Û»¢:ôêËg3%êÌgžŒº÷gšÚböÝU3ÂnÄM¯¾&8Åœ3rJ1Ô÷YMa€×QRÒ·êÃÄn¥©uC^àH5Îpk£9ÐF{÷iƒ9µQWÞ[cÕºš£ïOÞÉÉåÚ;íÎéx¸CX.T1QKTÆ1±4ìó‘ä4‰_¨;Q.Ë"Ém4DÅQ?;Ýf1ÚÖù¾û¸õŸ‘-8:žÍå"úÚjÖ\"®Øõñ<Ë£ÕÒhŒœ5ææA,³o“¶œøÞüo,^3ÙW²ÖáhvVÃ×KDµµWJóYSY+dv–º8bkØáÏykr¸—÷O¡f"Ñß3ÇÙ“7áøWnN ÐbQδùrž8>Æ{î‡WÚéç«V]¬³ô®Uh¯LÓéU~TÇà])ÒZ¨«e6çTû\vùÉ-ΦZÿ&][IÒŠ +*Ö¾Ÿj㱌Â%ÚÛ³‘ђè=£¢ì³úWN;ìªo1ײsßtN´Å£fØ˵Èí|?‰¢ºPNÆS6Û±ôè¦sÝ™ pÒzy89®–Em{ÍS?:b{âð|ØFüíî~ø·\.—šݪ¶:ZÚHg¦úèLÑIúIk˜µ5ÌkØCºóV¶˜™´ÚñiËdÞ83Ϫo-.1%Wk,–êÛU඾–Žj)§¬„Ô6¡³K¶/sŒ-s%ÍÑ€í!§A©1³+ÄFÙËTöç×ã„9,ºásl¢uáÒ[-O™ô´ìŒÇ#ƒõ2¢A!lŒˆ<†41ºˆk™jÅ7‹_;So¿m£ÚÍS{Û+ÍçÆÝ—÷9†?ÂU8¾Š–:Z–ÓOI[O]äŒÊÂèN—´9„µÀrp#qX˜Î'dÏ8˜ö±”ÆØöÄûyzäV¦ênTL¹­wZÈë«)öÊd7JÈ¥Ö#™Ñ´¸9Žsspk·îÄSkDçUâ;ïnËæÞkë똴Ïu¯Ûl«Ž0Óq¦¸ZL¦YO$@ÝZ5· ìŽYåêÝŸVi¤§[³”ÄûÑV¿Æ«8í¯ÖÅw’é[W“ËkŽÜñ&6fÉ$~Ñ¡ÏyëËA',³Õ¿!Šèŋ׈îóf=¬ÑV>­üb}Ž)näžó† ¶ºËwe=M-­¶©¤–˜ÊÉcaÔÉŒ-’7j,ÍÎi!À¬Í:í–(ˆ¹E¢cŒ±ªýS3óyŽNرÚ<ß³ÁC¶’s3,ÎÕ$…­È½çÒççóœ†åµsxžÏe˜£_µ9r-ɽڷ a)©­ƒžÃJiÌs œÙÁ4…ûÛ{´41®=Då¿1µú¨ˆŽúb8Û"g^úægº©Ÿªç”ÜŽólI`eqÑU +Úz¡èLÚ—ÎÇˈsF²Ç7WI¤ï,´Ãh§m1£8m‹:½kó›¸Æ5À6ë-Öír¬–zùêè*ÄÔT…Ÿ™=¢úÜ÷ÄÌÜù†²÷5Ï#¨‹a´õâ½õÅæ0ð¶LßÞm²m{ñ¾n/aÁUü«;O5ytWm-Š¨RI n4'hñ 2¸<ÆLÖç\\s d³Leø’*ÏtSË,˜ªsúI§ŒÏ=®ãÅ|\®Ø‘÷»mÅ”’Ïou¶a->Û(̆@øN¶hj æÇtsoEkUÅëDD÷^=­¢»[Õ™˜ï·¹ë`NJ¦Áϳ¾ZÑ9¶Z¤µ ¢Ñ´k¥íôÝ‘07‚I#!¹tª1_}1O çÍÎú·U3Å燹*6(ðÃ9æ¿!GPÏÚòÛmâ1çöŽ9çû¬ú·-f›ÌNÊ0ò§?¾¶Å”ÆÚ±sªòÃÜ•› .‡ëò$•2g³Ëm·ŽHòûGF¦ºÏ,·g»~¸ŸF˜§•1¾´¾Sj¿:§Úô[É=e TóP\[e-Ö²ç ¯„¾<« öHÀö—4µùjkšíMu.tQ‚"ÝTÌj×7ñ·õULß®b{&"#ãµ÷†¹¿ W[f¸ŠŠÊ×K#êj Ä+É´îqnÉ€¶=Yd3$’JÚc(–Îsë¼ýMÌDç3·Ýo¯µÙQ´±i9>Ž ·™»HtÜ|‘ÍQç¿ÉÅþ+çí_gg£ê~Öüô}¿FgrçM8mêÕTýë½½sŠþµ4Ç {‰Œ+­tZÇÝ Ž…ñË¥Žy-ÀçsÈò±¤ù3bÍ´zï½Ð<›rKp&–šIꥥº6¦;°žXõ=•ú˜$Œ‘˜Ùií̉‚I¼aÛLg×3‹Ž)i”⎩ÕÙxZ…6ijÃ%I¾¸\__nѱ?›Ä͘¦Iع¤—ôõ9ç^y€"&-Û37ë¼[—WfbxDp›ý~F‹ßð]'ðÝQ•U÷¨ë+ TíŽ ô¶f²2㳌^n{Ÿ¼æ]»Æ1ÕTÏ}çÆÖ&oy똋wZ>»»VÍD`@@@@@@@@@@@@@Aõì?ÊFŸø˜ZWª{ѭݪµ,@AÿÖßÄ9¥žKŒå±¸‚î°Óê +~Žr„Zã7ÈæU<'öJéŠØæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXuM9ˆŸÙ)Š Χ<öOì”ÅŽgRwìŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1A`QÔ–Éý’³Š ʧ„þÉXÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,þs*‘ûÉý’˜ ³û̪xOì”ÅŽeSÂd¦(,s*žû%1A`ÑÕ8æbd¦(,s*žû%1A`QÔƒžÉý’˜ ³úêJ§œÌo'ó´¦(,þs*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,þ¶’©‡1ÁüÍ)Š ?œÊ¤þòd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š ʧ„þÉLPXæU<'öJb‚Ç2©á?²S9•O ý’˜ ±ÌªxOì”ÅŽeSÂd¦(,s*žû%1Ac™TðŸÙ)Š >¥Ž’v\ .ÀŒÉiZW1iìmLfîe^” ÿ×ßÄ1ˆ&‘·)Às‡KÖ}AXèõB-s›ãíåöÝÚ+¥š\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅͼ¾Û»E,\ÛËí»´RÅÞÅ$ÒˆúnûmýÑõ…¬Æ]Í¢sxÔO.Ùý7}§~èúÖb™~;y}·vŠÍ˜¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹¾•¦i NEÎûôŸ`®uêïôËæ åËí»´WK4»û·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX¹·—Ûwh¥‹›y}·vŠX»êئÜ`ÎËXô•Î¸Ê{Ó9»©W%?ÿÐßÄ+ˆ¿””ÿÄ¿Š +ÇGª+ÖëüI‹hp£¨EX“*Ú¸¨£s˜l’‡hÖsZKrÏ~ò[Ö÷Î#míÝ>Æ-”ÎÏ}½¯oå*ÉsÄ—koxªµA EF¦äÍ4¸iv}"Ð:c!§SzóXŠ¯=Tͧ…Ùšm1”^8Ùø`îT,øÞX¢¤dìt´\[¶`gÔÏ#ã>‘é’Âtû$÷ä·¶½Ø~ý†¾Ü_}›O‹±s‘ŸW_æX¼f7ƒéô #fù8‹ø›Ð…‰ÕÜÚo +ÛŸüIßèR—®ÅVëÕ ¢]bzèç’—@ópÒö“žçdí@e¼o,Æsm‘~qÒr‹í›r™ö8e/,¸v®Ï|º´Í°²TMMSœ`8¾³Ù ]6¸sŽíËž8¶-³m÷½›àÏëò»šXñ=þ¦ºšöÉE3`”<ôÝ &»Îy6Fçê9Ž¡šé¯QÂm.~èž?Yȳ˜Ìõ~ÑëF_ÍCÖ=]h?¹ƒžDŽGQüþ¤Ò NGr0þ úväçûrOôB´¯W|7¥òÇRÝ£Ž»Q2þÛ!ç.¤5 éèlÛ(ˆô³ûZV][óJs¾ë_¾öüU™ÊÛïÊÞ÷÷âŠ,JêáO¬s©(åÖFÒ ÒâÝç6äá‘9zw,S8¢ñ×~S4Ï8fbÓm–ç>×"ÌnÞ7ïe‡ó[}câ€HdÓù3-ãxÌoë±ù¿:c<³åž^œ½yz9f39ú}]O©[rÏ1—é<ˆ!}{ò‘§þ&•êžÆôkwj­KÿÑßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öè®])d—WÔÂÝRÐì®éªIY?úú +W1MªŸ›U3Ý{O)–ÔF+ÄuÄÇ}²æ“q$††ß>1¡vnÄÆõA½³3¢ŽŒ|!qoé+ž ª0ÆXéñÒ¥©ÓS8§<3¨ÿMÖ»òka¹ãZëm™³ÅA…i#‰Ž.Ò×G$íkÀtÛ§¢î¶œÈÈ®šKOI?q· +¥ÏG–û•øÒë÷ß+ìXfÙptï’£az{{KœKŸZÇ28ÝŸ¥æ:‡¸ž²VÚZf©šcçàŸ +jå%ÄUèÍqÝœÇ8²Ç°a v«§–MqÑSÑ쌤ÆØàÌ1Í‹©®vgSúÝ…Ò©¼Ì훹DZ"6C˜-A³GüœEüM¿èBÄêîmN·…GíÏþ$ïô) K¡9s¸Sá(,Ø¢c¥–{ƒdÿNª"’àþlÞÂBå\Í3*Ž4ÌÇ8‡Z#Lo¦xUå2›(ìÕ”^JÕ$´âXlµr[â©–z¿ÓÐÑ«ód¶¦"š£G?6i«…Ÿ¿QXªqD×:*§qnUK™ã¼)k®‹”ܱ[E[O-,ÚÜ㤥ptY¤“öî†ã˜Ü¹Ó”Dƾ–sÝŽ˜·fm¦o3X=•OãÊ ¢³\ñ…l¢†9-’S2šº®¦¢9()¢•’EQ<éâìˆ2œØAÒÝz¾Ì˜¿]¢iˆŽøãv±7Ë_™n¬â«Ï.ë>û­;þ<Ä=µÎßMO%#Ž¢Øåò^¢øãÏ çIå“woZég5Ìe8´‘Ù¥¶Ž1ÕDNq†Žù¼¼¹)ò_pýc9¸Zf’vSÕTM-~l…üâ@øšÍq¹Ù™ ‰úÂÐH]0áªc«¨íŒý›Üs‹\öN_”Þ³RáëM5 ,ÒO ,ÒÉ&”Ì÷ ÉÍÒî;úÿ|·Ÿdx5Ÿl¾úçhþN·$ÿD+JõwÃz_,u-Ú'ÌOlº]9U¥mÄÐ9¶Kž)âŸPç­èå&áëÌoô-h‰½_ˆÿÞ©ÊŸ¦ü ©­–Ç×ÖÇd»TªZÌ]pŽ­Å¢Ôº:!,QHÆ4½íÆOÒüò\´1Š)‹em4Û|W>ù–úIÃ5LmÑGtÓöCò’áôSQ[O›-ØÍMÔKc§«·¤M$ž„s¹¡­Ï&ˆË,‚jÃLNØÒÓ~tó¦ÌàÅ3øn¯dò›¼¹,³IGˆ,ø^w<ù2¦¦øC‰$Šš8ÜÒ6Þ¦l¿;2ëLÆ+[äSU<â#”ËQ6¿§4Ï Ìóˆw,–jLAˆpuc6Kr¨G™ {EÇK²#6œ··¨õ˪/è×ìfö¦~åOµÓs Û-4\iâ-©£Æ ¦“[Ɇ—lù³3vB.pÑÕ¿?@Ë:8´è÷â‰ßÒZ;­ ig*÷E3³†oÍåue5Mî“[it—âÈhͦ¤š©~¸Ã5<10dÚa¤°1ç2Ð]£2 +×C®™ô±vÌZ¬ç‡vM´Úªõb;"|Ý\{ß:¿PÓZ/XŒ"ãOŒtCQ­úâc«àÌfüšÇ5Îh;3˜+MQ£µLOf*òìm¤Îk”óÃNno5$-ÆÁY¸3ÎÞÚÌÎú]‰ª LŠ–éõoÉm¢×¯×ìÃø¾]Œi:çÒŠcÙ<¨æ§¬z[4u §šIDÕ3T<É)”µò»71¤ý–4îl}L—JbÑowiTÞxxY÷–Z>½‡ùHÓÿ JõOcz5»µV¥ˆ?ÿÒßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öãõ4ÑVÂøeh|r5Ì{\3k†DÌAÈ­ê¦*‹N©b' Þ:œ5¼™áFÛ-¶±l§æ–¹"šŠ'DEžÍÑŒ÷ærÏ>µž¸ž¸ÕÂÞ uLm×ÆîBü?n}tÕƉàÒI¿S¡Îÿd8úó'zŵï×áífú·jøîu•ï“3s»aÈ §¥§´Ø¦P´™vŒ…ðÇ[¥‘´?QqsœìƒtŽ´•}‘1ñof|Ù³î›ø»6 º œ·6@ÑW4L‚I†zd¹Œ;òÉ¥Î#v{ÊF]öå“Y›÷>ºËfù8‹ø›Ð…‰ÕÜÚo +ÛŸüIßèR—ĸfÓŒí“ÚîÔ±ÕÒT46Xe±ààz@=}a&/Æ'ƒ16~UxJË]q¡¸ÍIê¨#)e#¥ dhkÃ=9 ׸,õß®Óí›±­ÕîÉü©Â6ZÈk –’7GppuSH9LàÖ°ïëÒÆÙnhX·Vû÷Þ÷ã ßÂÝßù·ŽNpÆ ¸²ã[n†j–ìÀ‘ÁÙ‘Õ°kôìÖ¤õd–Îýzûöö—ÊÝNCId ¡ªªª†2jÇ1Õr3CK½y7¢?2[«¶xýf.ãøs“¬1„g’{e¾i$aŒ¹š‰ .Õ¡º‰ÐÌÎz¥¹ïÉ"-ffù¾õŠÅoÃ4Ûíð6žšèŽ&g¥Ìœ†dœ³$¬üpaõQÓ´'?Û’¢¥z»á½/–:–í4ÙhMÄ\L-çBN%ýЈ¿YgñCWéH˾×î½¼eŸeùýgįÀXréKQKQA‘TTs¹ZA§Ýõ¹‚Ù7 œÒÒ2Ý’× Z#dÌÇ|ÌÏŒ¶Å:öÚýÑocò““œ1-…öÛ u½çS©È%Ž:Äš¿Sœ^‹‰.'y%fböÝkwMሞw¿~O¯´Áw’îÊXÅl2•óÓt,qsc'Ù’7,ê¾û_»W‹7jïúÏbºÉAs©¥©¨…²KI#¥îÏ8Þæ7ó–¸·~{‰HË=ÓÒnøÉó™ƒlqÄbma†¯ŸéÈåÎuëÛuý½],ú³ô$emÚ·k÷É9Þýzû­îqÚ®GðUmcë%´À餜T—ôÇ×mZ€l™´ö†¹Ùo$,SLS«©´Õ3­÷¥Àö ©f¥}Fê¹ì¬Èäú£dÚÿk[ZïV`nH‹[tÞ9ϵ‹Þûã>ÍN/jÁ•³ãŠ¼MpŽ™®m·ÒlK&ÈÌe{åsšÐã¤70ÐHæ±Da¼õÕ‡…7·‹5Íí/ÆmîsËMŠß`dÌ¢°¶i¤©3>”²R<æOIÇyô~e˜‹E£ã;µ™¾Ue×°ÿ)âai^©ìoF·vªÔ±ÿÓßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A³GüœEüM¿èBÄêîmN·…GíÏþ$ïô) KñY`@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AôíÉÏöäŸè…i^®øoK厥»Gõ×°ÿ)âai^©ìoF·vªÔ±ÿÔßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A³GüœEüM¿èBÄêîmN·…GíÏþ$ïô) KñY`@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AôíÉÏöäŸè…i^®øoK厥»Gõ×°ÿ)âai^©ìoF·vªÔ±ÿÕßÄ+ˆ¿””ÿÄ¿Š +ÇGª+Öø«£A³GüœEüM¿èBÄêîmN·…GíÏþ$ïô) KñY`@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AôíÉÏöäŸè…i^®øoK厥»Gõ×°ÿ)âai^©ìoF·vªÔ±ÿÖßÄ9¤žKŒîln »¬4ú‚Ÿ£œ¡¨Íò9O ý’ºb†¶“˜ÔðŸÙ)Š IÌjxOì”Ťæ5<'öJb‚Òsžû%1Ai9O ý’˜ ´œÆ§„þÉLPZNcSÂd¦(-'1©á?²S“˜ÔðŸÙ)Š IÌjxOì”Ťæ5<'öJb‚Òsžû%1Ai9O ý’˜ ´œÆ§„þÉLPZNcSÂd¦(-'1©á?²S“˜ÔðŸÙ)Š IÌjxOì”Ťæ5<'öJb‚Òsžû%1Ai9O ý’˜ ´œÆ§„þÉLPZNcSÂd¦(-'1©á?²S“˜ÔðŸÙ)Š IÌjxOì”Ťæ5<'öJb‚Òsžû%1Ai9O ý’˜ ´œÆ§„þÉLPZNcSÂd¦(-'1©á?²S“˜ÔðŸÙ)Š Kؤ¢©lñ“÷=§ìŸXXš¢ÝÌÄp ©Ëö§öJß5´œÆ§„þÉLPZNcSÂd¦(-'1©á?²S“˜ÔðŸÙ)Š IÌjxOì”Ťæ5<'öJb‚Òsžû%1Ai9O ý’˜ ´œÆ§„þÉLPZNcSÂd¦(-'1©á?²S“˜ÔðŸÙ)Š IÌjxOì”Ťæ5<'öJb‚Òsžû%1Ai9O ý’˜ ´œÆ§„þÉLPZNcSÂd¦(-'1©á?²S“˜ÔðŸÙ)Š IÌjxOì”Ťæ5<'öJb‚Òsžû%1Ai9O ý’˜ ´œÆ§„þÉLPZNcSÂd¦(-'1©á?²S“˜ÔðŸÙ)Š IÌjxOì”Ťæ5<'öJb‚Òsžû%1Ai9O ý’˜ ´œÆ§„þÉLPZNcSÂd¦(-/©d¤¨ŽáÀ’Ò´®bÓØÚ˜ÍÜʽ(@Aÿ×ßÄÿÐßÄÿÑßÄÿÒßÄÿÙ +endstream +endobj +164 0 obj +<< +/Filter /FlateDecode +/Length 229 +>> +stream +H‰4ŽÝjÂ@…ïç)Îe{ÑÝÙÍþ‚Õh”"zY$h°Ši¤ôí;ÑÈÀ0Ãœ9çÓ¯]:î듉~‡^ïÿÎ×Ó鬜ƒf1XÙÂKw®@×~Û1šÒ•ùdTGbÅF†/ãô‹ ¢üHEåaL¡Šä¬WÞ´ôäìsõE‹ŠIºHðð+ööÖË–QžiKzyj®Ýa`ÜÌW%¬uùÁx!c’ÊY¥áXRbBAgÐèߢ»bp)ßÐFA´6côpžóÝ'pÊuKzõ ¸né_€FÎC¿ +endstream +endobj +165 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Filter /DCTDecode +/Height 1447 +/Intent /RelativeColorimetric +/Length 143969 +/Name /X +/Subtype /Image +/Type /XObject +/Width 881 +>> +stream +ÿØÿîAdobedÿÛÅ + + + + +    + + + +      + + + +     ÿÝoÿÀ§qÿÄ¢  +  +  +  i!5r±1ST’ÑÒ"QR‘“A¢#2Uabqâ37t²Bs +$4ƒ¡´%&'()*689:CDEFGHIJVWXYZcdefghijuvwxyz‚„…†‡ˆ‰Š”•–—˜™š£¤¥¦§¨©ª³µ¶·¸¹ºÁÂÃÄÅÆÇÈÉÊÓÔÕÖ×ØÙÚáãäåæçèéêðñòóôõö÷øùú{1!QaAq‘¡Ñ±áð"2RÁ3Bb’¢ñr‚²cs +#$%&'()*456789:CDEFGHIJSTUVWXYZdefghijtuvwxyzƒ„…†‡ˆ‰Š“”•–—˜™š£¤¥¦§¨©ª³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖ×ØÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?ßÀÿÐßÀÿÑßÀÿÒÝËÍY5 +ɲ»3SÎk•¯ŒsHG>“Ú}rüÀ³£Ã¹†¹='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®OIí>¹~ à:<;rzOiõËðOÑáÜk“Ò{O®_‚xã\ž“Ú}rüÀtxwäôžÓë—àž£Ã¸×'¤öŸ\¿ðƹ='´úåø'€èðî5Éé=§×/Á<G‡q®RÖ­š¾‹Œ™ÙÉæüÄ™¸i;àšÃ±˜¾À?ÿÓÝ;ã«Wi»ÍònÏ2ȹ+æÒÛ4Ï©d3Æ÷R¿‹äU‰ùù_î®UG`¿¾ª(´W«o…ÞÓ©í³­*Kb’*ºIY41‘¹×µÚQÍTШ¿B¡ìÅ?iàâ÷¶6«œ¸""ªªý*y3G±|k:òÙ6ám%\3,ð%TIÑÙáWeI[‡K1\3&Œtú¼lSåð»öKjÑAYæcj%cädJäÎæF¨s[Ò¨ÕsQWèÅ=£íü5«GMW $“1³Î׺(ÕÈŽ{cÃ:µ:UŠfã<¯W +ü…:ß¼õãÓSS /šgµ‘ÆÕ{ÜåDkZÔÅUUt""&*¾ÃÉšm—ÔE\ÓÏ\L–'#Øö£šäÒŠ×&(©ø•4¡õ1GËòÙö¥¬ÙK3%Hä|/V9–H×±pèsWB§J)ã×ï>Ôµ¨¬Ju©¬™DŠÖ«är5¨¯r1©ŠèÅÎTj{UQÚ{J¾Š¦ €xà9DU]ëçÙv­µLÚš9™<.W#_‘ÍUk•®ÁSF‡"¢û1Gï?5=m=c¤lR5ëÖ7£U+‘U®Ã¡pT\N +‚ïiG穵èh–dšxØ°ÅÇÈŽr"²4Ç×w±¾ªúË£Bû™ÅÊïb&yÙš¦•µQÈ×Bæ$­‘«¹‘ȽpÓFO©÷·êyl₾šÕ¦Šª–VË Ìl‘ÈÅG5írb×5SB¢¦”Té@ñúÀòG_M5L”Ì‘®–$cžÄ\\Ô~9UÉôfÁpöàzõáWiÑÐÍ3LÈßPõŽ¹È‹#ѪõkSéTkUʉô"©çÜ~«N’†h!šf2J‡+"kœˆ²9­W«ZŸJ£Q\¨ŸB*ˆzýÁàÁŽôØÒ½Œmd*é*HÔG¦.ž4W>$öÈÔEW7¥nãZr»ÚxSÆÏ«W[O@Öºy9íª÷#Q^õÁ­LzUË¡¥T]5¥I[,ðÃ+úw#%k\Š¬rµr} +­Tr"ý +Š"kß1ÜNÇí–:êijNÙX²ÆÖ¹ìG&f£ñʪ(‹‚à«Ó‚û^Ëõ€?M©GEQ<Ó1’Ô+› äGH¬ng#S¥U¥pèM#ʼž¼ëí[*ž¦VE+Q^õFµÎF·_jª"~5Cä^Kã`ÜØã’ׯ§¢lŽÈŨ‘±æ_¥2éÃéö}8LÄ=ÓW߆hêcl‘¹¯c‘×5QQQSTTШ¿B¦…>©GÌ=‡€¯rõw÷{ˆs¯ÉV]´Á ÿÔÝ;ã«Wi»ÍònÏ2ȹ*«ÝzëÉMo_ÆÙ´µ-¦ªçÍVø‹ÍÐbˆÔ‚TTÃN9“чÒcŽ½öæz[ý4v`ù]s‚ù­ëÙdÝû†ÔšÌ†’íRW:JfƲI4ÎtqµË#œS5W5ꨊ¨ˆo›YœSðc;gv÷1˘ˆˆ¥ç{#>Wã§áZ÷Þ+²ÃQÄÔÛ6?#V5¹"¯JÕ£–HÑQzxÈäʸ¢"'Ðc8µÖ#dÏGŠ8F(šúSFÙÛgO‰ŠzR—WÊܾ֫d©™ÜE5DÙãÁºY$ã^º1Ì‹ :7A¬bŒuÅ4Õê~ýËÁL3xÕYßLZcÑ.o]m»zïm«cÑÚsYðYv\5H65㦩ã°IxÆ»šØ°Èܪªå\Ú ó+1ŽwE)Õ· ̶Á²pÆýµì˜„Asï¥uͺ6mlÇ:’ãr¶5Íj§ÉÚU\3eö·>œ1Òi™3Y§Åˈçª8b´¯Æ̯*K¿X¶ ±ap›wÒ¾ÖžÒYl[BEuCbEdŠúezGű˜F¸ú¬\U¸hrâi§(Ý‚/‡ æuaÃ;ñrøì\&Xõv÷wZšžºj}-«šjtgË(Å{\Öª®¶UTLpéÄÊ"¸ç«Þo†“4ÃwþÛ(‹ÃjYö‘QW^³TÔZñÏWgSÆú§ÅgL±3«UŒsñjÈôoи"f>0æN==UÁªi¿Taîë}bÁ¢¼1éŠî¤Ë²ÔÚýæ¹ÔW~ØlëWjZ2Yî|±¶_EŽ‘óÈÆ*£è•è˜zÏèLp5ŠãÓXø£ª˜gåšw¾+§TÇVÌ3×\Q½Ï+Bð^ 2ú,UöE›­`³ât u›SH­j,k+Xç6©Ë’=ŠŽF£QÍQ‚fgmæqV'vÚSÓÞóR6Z"6ñë¯S¥ÙSÛ·ZŽÑ·)-9™olÔËDˆ|uÑÃ'‹Uêÿ]\×#›•QÓÞTWDO]c–¬~/œÙøTꈞzp¾¥eý¾½¥hZ_9Èê+eÔÑÇMÐIM ÌŠU–W`î5Z¯“:92*5¨ÕúsË™šLý4íÝYÕâÓFØÝ7Ö‘?-oÙ+’\ +ÖÂôcÖ¦ÏF=S6UåÐ`¸}8táôŒwÃ÷|/0[Ýqz +ô_{ÇÁŒ·¦m‹IiilêŠY*#òÇ-mCé܈‘µˆö5QÆ*h_WE>5ì§ÕáÃ×LQöŸZzþ£)Ž¯zý^ Íw©­ÖMh×CGSSÚÝ,m’Ý*Ç+ÈÚ‹*eÊø›‘pzäõ“AõY¤×g¾Ã¾“xíÝÚù¦ØìÅ]Õ‹rßØê6…ü¼ö5‹|)é- A³êhª-8cŽ¡®©{šõVµŒÆ,[‹QíG&.NŒb™Ù»3 q¤é¿|¾©úŒS±[-µÛ²jìJ&ÁW[-t¹œçM21®Urã•kZÆô10ņ*«¤ÚvrayÓЬ·bþÛI{¬m¯ShÃiÚtµ9iÚË9©rÉiæ5î{4kžŽ{_ƒñ^ƒ¹®Ë×)­¶ÄWg‘®dR½TÅN4ÛÅ×x.’ߺ—fïZ͵&|6Ëè$¡VGÄ$5óÄŠÜÆqÍvWæT]-ˆ™[#_V°™Šw>ó¯Ž~,Ìý”Dú]¢Ï¾™´4º[NWÁYm6ÖvH¹;ie¬u#2ú¼bLÕD‘ÏW.eŹpÀúÊšèŸ^°Î(§g^÷ÆfÍQñ+Γ=ûi»cöÃ~mÿEa«Z·¬Ëz¹¿â´üäèx®Œ2äL¾Ü>œM°mèþª6÷cò†xöká;;ðù»'·~["Ù½Ò:¾®¥lÌÌ•cšŠÂìÈcW6 •W2µ©†)Šá‘³vãûôûKLé÷ßyÃ÷×J¿6©|omg/«V¥×Wru{8•G%Sr«rfÊŠ™Ú™±G«—EÁ&Ç3>óã†}Mð휿½}ú"ªßºŽ»ÔRÚ³VAi]Ú‰ß̉ ”´Ð,kF"µ¸H­s\¯Í‚*®%yó18ãv žu§s ¸®™ú¨ŽT¯{â×^kÉMvl*¹m*»2Ï[ +žd¬¢¦ŽXÙZ¨ŸÇÆ67¹”ÈÜÔkY÷ع¸ ÌšLí¦Ì4¯Áã_V7íšÒü(³·ŠÔª£º•ÑLÇNË:iÛ,_x²6^gOª®LÍéÑ€Ï1Šce"^dÆ©Ší¬Â ±-ÛÓv%»òWÚóWóå—S,Ì‘‘5ÔEDÚ–> Ek~ù®k•ù´;Os=äâØqLO3Ý·duQæ}g~,1Êkã±ñ®Í¹{ª.ÍÑŠ¦Ý©’®óºš¡ +-4QÒ>w¶2`“+QÏ~uÅ\äDЃmŒ<'òˆÙÙY{™Ý4ˆíÅ;{¡ô½/¼Î©K¦ëNT›ŸfóƒYT-+h’·½âÒ|"Ï“ 1v\L°ã×1ƒ+O¨¥;ë}âæ³Ã+õUòš>e«y/E]g²ÙzÔEzlû2*§G¹)¦Š'*=¨Ôkœ¨õW.Ší8".Þ +㌢ùtÍôây6Ç÷l¿D$¯²*Ã’Ú²,v²¶¦— nÌn4ÏkUUõ Dræc´³ï˜¿C´ª/A÷\X{g︟5¦_uùa^­ë{ílÐ[ëfÕRÊȚȜÉÜÊ:|ü£3^nŒ¬Êª®éà 0âÓü 1NªN,1ò´˜¬ÓðmëÙçä}Nï½³`ÖÚõ–}¯Vé,ÖRÉ;_O=Z¯åòHÅL^ŽUkZôsY•Q¸®&•¤ýî#…&b;öúÆÜ=¸&xÖ“=Û=.Ùu®ü°ðÃy+9}[›È,×q{/ºqø7 ˆì†1úÚÎÅWeE'Ý£ï±>®ÇÞdÖ0öO§Ú_K…k^±–­=¯WIžš¢d§³ Ik&{¨×ª½c)ÙŠ£ÕÙs=Q3`Š‡˜æôêÃZG¦~C [ŒÒ¾Hêï^k×Â]uÒ¦u­=œËBÀž¶±iH飚5Z¯kÚÅõ—6©†-Lq5˜®)Šý& ç‹osæ&˜kõx£”T»×’÷_ª›½fIkÉHémC]=+#l“-ŸPÈXøóµÍîér£U"&”à ¼}-&Ñ9qŠ‘¿TG_UÚcâ±zfi¬îÓ3ßg¦Ë¶m[ÏkÝšjÚ•’²ŽÔ·¬Õ©Fµ®zÁLöG2µ*?*µ]‚`¯E\0\ p×'®r±÷Æ(ÃòUž*Ecª30wNŸ•õ.͹lp—MeصÕNÎËÐKU©— *õ¢f}$d’¦iDúŒXõÄÍ)øç1Nß 2ûÃf#ð$Ç(óÕÓdÛ´ô×>ʾÕT¯´-Z«6’ˆ`±¾Y¤Ê˜#‘Q‰$šfÓzCï¾´mÌŒ=Ÿgº+2øÃïvM°N.ÛÓ¿d&® î„·êÙÖ4Ò¶Y)aF=ÌEFfUW*1J1ª¹XŸCÓtnˆŽèˆ¯ƒâõó3ß5w“Ç€½ËÕßÝî!ο%YvvÓ€ÿÕÝ;ã«Wi»ÍònÏ2ȹ+¦Ø—&’©¶gŠIëZ¡jeGaƒ°2 ‚teb.œW_£AäÅpéû·‹ïVÚðG‡JK2–ÏŽÍ´ë(¦¢³¹«‰"så¦ÇkÚö9™ÚïYj#˜ª¸hQŽ5Lñˆ‰ŽÈ¤sy†tÓ„ÌÇ=¯¬þ,F-Ým;¥‚;ØÓÆÅEI"7,ª¨ªä̉"ª**½ìíÅ«tS‡;)¾jûW"àPÜY-'ÓK,‹hU¾­üf_Q\ˆ‰0Dõ§*.+¥tŸ80èŠFùñö£ëêšö>måàÎ ~Ö’Ó§®¨¡š¢“Ô¬Z¤ÐfsšÕãì¯j¹ÙdfDr§³™ÁZÇV(ŠÇecå}F:S…½¹>m›À­…AA ß,ÔñØËa«­õ©Õٕʨˆ¹þŒSGâÄúŇUk×cëkæò1ҔꙞúy<îçͱ-º+^¦Õ¬®žŠŠJR£‰F¤2+JFÆæÜÓÖwÒ}Eæzæ)=õ|M¢:¢kÔwJû«MhÞ :Ú{Þ’ÐGSmL2¹*ˆåvŒqL‰—N•ÇÈŠMxSÆ'ä{3²œká1òºD\QÐRÒ6†º¦š¦Ž²®² +–$N{V±îtѹ¯b±ñ®l2¹1õZ¸â˜Ÿpiˆ§VÃ^5ô¾ñcÕZõÍyÙô®·¶uÔ«¤©Ž¢¢wÓCS,îG+¤ª™&žw*"}ÑêˆÝ5¬õQ¨‡Þ1†Û¢9D×ÆvËç)Å}ó<éO³æUð?KY];ÝhÕò*Šøí)h~æ±:¢5k‘QêÅ•±«Ø׬mr5\ŸB* ÃiÂfc¶k>™ØóÖ¼b"{-èŠ?tüÙµUEœéæÉ=«ÎÎreÌ’ò†ÔdOW ™˜‰ïeUÓŽ“ë éÓõ6ï™ù^b÷Õú¨ù">Gâ­àr‚¶Ð¨—–Ô²Š¦¹–”ô-âø™*X­vlÙxÔcœÆ½ñ£‘®rb½*‹ñ‡šp™˜Ó?n°úÅ‹W8ˆžÏmŽç~.5ü²d³j¤|q¾H%WG†la™“7¥0W1tt*á‚žÒ´á1=Ï"i^11ÞøW‹‚ë&ôUÚÕo•yÒŽ +9Z×#Q§{äñ®£ÑÏÌŠ¸¢+[£§ã1=“‡Ö»p‰ŽSwÁ®àb–Û¤¯e©iÖUÔÖ²™œ©Ë$…)$ãaâ›4VÉ÷G*µs»ï±MpW·Tb¯·.b§e&)Âoößš«mGZòWZÕ•2ZðSÁR÷¶ÿ¤Ï£FƈÌUªÔõWr¦m'±†Ÿ]¹Å< œUî˜å?m7»bŠ˜¢èSëÞlãg$bpM`ÔXΊ׮t6%C硧±Æ’#ÚøÜ©:DÊõk\åÌÄÃÇIó‡ )×L3‡•)í/¼X«Xµf¼ëW¾íðEw9)iÖOGAY%¡ ,«D¨{Þôz¹¬G«XéæG›*;Iæ:iצ)Ôôw=ÇUzµMg¾¿#÷Rp9AI]Òº©Ô0×¾ÓŠÜ_Ú—9_›6N1X×¹Ò25vV½qúpÆš}Mi»>ZF瘱j¯W>ÖÝïÁ/ÔO•–kij%®ÊT⸶Ôq¼k½lœc£Wâ¹ÊUUO£pF™‰¾šÓ|æ1ΪýU+ÊžNÿwîƒ.å§jVCS#£´gåOè̬•XÖ9Ìr5ƒ‘Å®UD\U:O0aÓã3ß5Ÿ¸±jšðˆîØùWƒƒš{~Ô«®åsCË,çÙµ1#V¾7q™\Šæ«šö,ŽTV® ¡Š‡ÄåDêúªW–ÇÔfRŸSZsÛò8o–{f²¥ã¥Æ̳糣ûßZ9âŽ79ú>ù4TÃÅW>ñƹ™øØiãWÎZb#t×äuÇð/ ÐAAkVѵ–dvD«î:žutËÑÁ³.å”´+k9Ù¶”µ”üKªÛ3š¬t͉ÍHäb3–DE‰pDUC:i¥:«¶÷­k¾½{¶>몵ë¦ËZ”짵߆àp]5«EY=©Ë Y­ø혒£‹IÞ´í¬Yšˆ­bHæ+¸¶à¬bµ©õ•"8N9úêøÒkÚùÇ5™ãc»Úí÷¿Š;ÛYjÌ–•e$vÅ4t•ÑS¬YedMsX¨ç±ÎÙ\­r±S3t)ñ‹.±1Õ3^t§ÉgÜfRbzãg*Õõ¡à¶‰‘U¶J©¤uU“ ‘#•‹ÅBÙ’"#QEãßt& M'ÖfqŠ'éïÝGÎ^-ú›wÄücø/³ŸQI764¶LÖCSÕÁb•#EzèûôâÓ =]+ ÷z¾ª)>>o0bÓO©šú<Ÿ¾ÌàþŠÊ­²*™,Šë*†J‘ràö=±5\üï¾âÜ0Á4®ŽŒ=˜¬ÌïŠxÕóHˆÝ5ð£¬Òp9KcÐYPY¶U$öZT2–$OzÇRåt‘ÈDZcsUpTЊ×5®EÇ~#)N¬1‡”Sí´œz«^¼S‹œ¤ ¡v).]“OfÒºG²w¯+³È÷9Ê÷½îú\ç9\½ ŠèDCHŠR"ÑÙ æk5›ÌÖQM™Á”“6®Î–I©¹¬ûRÍ«…ªÎQ™îj#ÑÍvW>Xäc“1Éø°øÇduNQ“_’iÉ÷ŠvÎìT™íŠyW›²Ù\Yöd”3ºª¢iékç´ß4ªÌÓOºk/œS«¾'º)½r.U%À¦¨¤¡‘üšJ™jb…ÙrÁÆ»;£‹Eâó«œÖ®9Uʈ¹pDó iˆÖìÝÊÝqN©™ßéG‹À]3"µ«c§¥´–Ô¦§N%Yî•dzb±æ|j¯z#ªŒÎª‹Š"§Æ ‡OÔÛ²“îšVï¬XõWê¯Û³o…]Ž›‚{2–¦žvÏ2¬µM°Ô\¸,µ,sÅÑ÷ˆŽ\¿¿b‰Š©÷o©ŒQz™Ÿ•äâ¿ÕNúÚy; ø¹Ñ_‹5”o¨’™ÑTAU°£Ì–žD‘‹ƒÑÍrbšZäTTÕ;¦¾+È›Æø£âÚÐÚ”6å$Õ/<«;Ó"+U°Ç,L0LR4\J®0>gLSêµxÄüc&¿S§Âcåu»ÙÀ}-ê[^>t­¥¦µÝµTð,Y],Lk"9ÌsÛŠ1™Ø‹‘ùSÃVŸ¿jŽXŸ’ÄM>·O*L|·wj+’”7’[q•’¬µ°ÒÔF­‹—ˆÍÅÉ÷¹˜äÎìQŠ\z4Q™Ÿ14ãG“5ˆÕñš¾}èàá·†ÙŽÖ§´j¨j‘ô2-?¼dz=Z¼c•ÈäŲ77>g kºb"c²¾rö1Rœ&iΞHŽ›ËFïÞ‹»OfWVÃMeXÕ´±Ö£azµd¨‰Yˆö+¹Uª­Ç#•st¢&ffÞó wV=}V4ÇÝæ{ãÍôæà†[Ý»4öEE]<6m%¦«XÜ’;Ž¨|N^9$j±ë*¬ŽTVáŠb˜eCæ0ÓÍ‘4Ç×Fͽ•{8«‡nÙœuð¾4wË#‚‹.肋$sTHû.jʤ{Õ®|óUµÉ3åÁ©‹œ®UDnTEÁB"a÷”§VÓ1=ûðá¯}ÝJãpŒ·Þ+6fRq1×Y©hbé˜ç1UèÞ-Y¡Ë¡q㟾ôžÇɆ~º+àòžœQÝ4wôXו%æÚêz¾%Ù$äó2LŽö;"® ùÏclVLScî^®þïquù*˳¶˜4ÿÐÝ;ã«Wi»ÍònÏ2ȹ*•ÕÜûZóMÂ3èmªº,•ÏÆRŠUm›•²*±eDzzŽâäb£WF ¤Ÿ7ÞåÌÞ"qÍ:©nj°mÇjƯ\V»_&ö^ ݳj–(lÊ2éRÊé«Ç/5CëL¾7ïd¸ÔEeÿ‡°yƨ4ËïØâî^É$ŽÊ´é+QÏm4ñÊ­E\\ŒràŠºWé>£kÉØíà¯rõw÷{ˆs¯ÉV]´Á ÿÑÝ;ã«Wi»ÍònÏ2ȹ+óEEMÊæDƬ˚EF¢g\¸»Þ\ÇB"tjùr]kgS¹ôÎZdË +ºÕbOdx·ÕOÄÜ_iRk«bTEO”Îe2ã ]jØ—Û+pg÷n…_¾šË££s±XÎ)ªÖ52³r& ¡¸éÊš1Ó€‹.Á³,>3ÒAOÆ»;ø˜™g{]•üj#fÂv½•v5h?=E,» 3I¸{1sUpüG”*ü¾ŒØ¿ƒé?Ãx¼§´*ý”vMœåu540«“X¢cSعQ1÷‡€½ËÕßÝî!ο%YvvÓ€ÿÒÝ;ã«Wi»ÍònÏ2ȹ+®Ù—¶Æ¶«ëìúJ¨å©³ÜÆUDÕõ¢Yˆäú1n”<‰¬WtÓœ>¦)ÝWî°íÊ ËA }ÍžžfæŽF}ë“LSöÑO~X‰å;^}§Ô9Àç8œà ^åêïî÷ç_’¬»;iƒ@ÿÓÝ;ã«Wi»ÍònÏ2ȹ*”YŸË¡Â ã½ Å!ç¦ÙuútqTÜL®þ>]?C$qž‘Ãã½DÌÇËá¶-³÷\8g—_Ÿ'[¸wš×}‹tì +j{Rju±'­‘,™b†e*XX®|Ôf*¹Z«™Ê™‘Z‡ÎÙ¥öeåÒ›æ/àöb"³³nf>èŸ[µ:÷ߛˣ}¥Q+*íjV34j­®Š±°²dâÕÌI]Ísòª¦f/°N¬uÃ'½±h™8©ßR&0m±‡=“×¢½Ô{ì{zý[´T6‚òë2ÂJi$•íke¯ucáãç&T•c§vG;ÕGHŠ©€¬ã‰Å+Ñì´ïÅN=DDa˜‹íÇ5ál<ºß>ñ^»RŠîÚÑYÖ½§GTÚ»>Mi&5”\¢¥±Jä•ÊæË ÉŠ±Z®b9®D\*iiúYN1ŸL>)J×âL𙉿É.áx­šû‹iÞ;ÖõL4Í  ª‚¦§©à’z‡ÓÈÈ´f{¥ÊœKWdŽÅ.ƒ-WØ°S|Æ(­·Äo˦úc™Ã7ìÙWÇřݎ»½ìDü®½xmëévl[Îø›kÑÓÇa­D2Ú•òÏdreWÃÅÈ÷#ÕÌä_Q¯n Ã*Òz½öWŒÒcÛ‹ïVc¯f*îµak®m‰5ƒeEÕµ5²½WÍTô{ÕÏj*¢`F±ïX‰ƒPßRiº¾”øf±]ñÒ|=%{—«¿»ÜC~J²ìí¦ ?ÿÔÝ;ã«Wi»ÍònÏ2ȹ*?w–$Ôöí<Í|±[²:J¶=Ú1t Q˜"+S+©Ò¨í8Ÿ°êç··l×í4Œs]ÑÜꔜXÖUdYÔµôo²iGT5µø+ã‘ÊÇ5èåDU\¸£‘ÕE=ŇWtDñˆy©ß3Ù2û“ðCwd§°©âŽHb°ælô¬úQª˜HªŠ¯EUÎìU^ˆìO®¸ÑHÝJQó]“æ'kW¡x»’R[Ô’6gÇnTrš„Y0V¿ËÅ*"+®nvôàõUúp>4ì¦é¬O]k_‘õ¯mxS…=¥p‰À“ªîå\4óVZuÕµVbO=TÍY–ž–©Ê×5#ks½2¢9\ª¸ªžÆ±÷h™ž½‘;yu=ŒWû¬ÄGk¼ÏÀ}…]GiA]U[Y5 èJ¹æE¨o%~z~-íkZĉ޳pn—*«³b§švq¬Mzë5z)NªK¢ß¾šëÝuEu¡]kCIG*®Y’ +†9¡¬F9±«š™2·*hnm'Ìàꎼx&yLV{½¬8ö×vQâiþ”“KÀýŠÆÚm¯žªÒ[F£•õ²çzS5\­…ŠÖ³+Q\®ÇïÕØ9\ªˆ}é¬LO^ÙžºÅŸ1Š“VŽ­¯œÎl‰¬ÛJŽ¶¶ºµö…*PÉQU3_3)Ú¸¶(ÜŒkZÔUW*åW9Þ³•Tö•ç13;æ-íÚF*Mcª&#š_l(È’4UDF£Q~”Á0EüçÖ)«ã Q¯Vºª¯¦òcôq”Ÿò1ñ§Œ´ÕÁÇï)µÿ¨ÂÞù”Ÿò0§y«‚R±ìù,ª(i¤©–©Ñµ³N­Y¾óÕ­kqüȉø§Ãé½ËÕßÝî!ο%YvvÓ€ÿÕÝ;ã«Wi»ÍònÏ2ȹ+Ú½ÍÌ\=¸h^ ñÎ †!ë”j¯B~ 8œS ÎHEM +8*À ^åêïî÷ç_’¬»;iƒ@ÿÖÝ;ã«Wi»ÍònÏ2ȹ*‡^jû¯%©~ÛhUUs´U¹læRÍVµ-rб$Äì¸q«Ž +™t®m“âø>÷ájÅNÚìåò)…ø:p׳my¬e“~mšnq¢®†>QfX´UÒ.+‹ç–+]†„j:/ßté_Äm™Ž‘Š~,ìúÚ±ËÃ]1?M~ºˆÊν×ÂÚ¾2UYS+§»6m{㪒n%¯{æz²6±qG¿¨õèF¦dv„=Å3ƒ^ì3}‘Üö=ôaã«Ó…ùkøAKÙ+í¸VÓÔÜʪÞN²½˜?ŽÒ˜±S¢¢³ŒnDÒŠ†8æš÷i˘꾩i‡nŸ»c‰å¦ù—úó×Lê ¿CM2ÙÖm LéU,¨é_S +½Bæô?+qY%UL\ÜS¥J1Ö¸§ª1Lq™Ù3ÃdL0ÁJFùÃ^Õò&jÛF®*J¸i$éÊÚlÍG¹ù3$Y•r£±õUqÊ‹§1ûÚÓm-Ô`ÛJì@Ô8ÕÙrZ±Û)gÌú )Ö«’Ë™ÒdÈåc©äWâœb.ŽjàºUZ˜&9êÙŠ›tÎZuV#Æq‡lE«[Þ)Iù]Bܽ÷ö‚ôÙÕU4´«:]ûRºzygXžöñHfG*+¤jhG·Bæ\¿OÎ9œ¹Å_¥Á·vÌqWÞŒq†x¿¶Íöðpä–<2×ÇRQCcRÚO{¤Èî:²TŽž%rú­b¦g=ꊭDÄ×Òf7bÆ+¿þ§{<1XŽ1Šg³ zkXuZÿ²ºÉ³­ôþYve™EtKgNù)ål³q+ÕU\ÉäéÇ#šì1CãVÉë¦,1ÃßNÉô½Œ;cŽSÇÞÅ]ŽÒ­¿Þ›ÝXêgÂÉÒÐtÐÇÊ^™ZÈ×UsQïkU2ª·*I™pʨ†¸b˜¦'âÿoÃÜÙÌ× xÅ>·ûr|… +Û&ı©¨ÛIM%¡Qiµ³ÚsÌ°5iêdD‹ŒÇ2Ë.8ÆÕr#ZŽDÅ%ÊÇ3‡ >$Mïh§jœÌ1‹îôôíìv ÁÃ¥eIgÙ³6Ͳí9èºxíJ•lQ¢IÅ$Qº5E{žìUŽ bfTU\ 1cÛ4ꈚMöõvìÛ,ãÎÙ˜¬[g_‹ÂÌá~߾ͱRÀ£¤GZvLÖ’º®I‘:YÇ÷,èç9Q˜{Ý‹æ-#Ûí®Ï0Ú'¯áÙ›^W/…ûzÜ©»óZ4Ôôvå=L±$RÈù¡u4\c¸ÅTF=¯D\¹pstcŠªáõ®—øš£³dÒxíy¢¶êŦ{vÅ{áón_ÙéE­dFélÇÓ[™”ñST¬•p+#|¬Z†c•QíbâF¬nTjæé<ʼðÎ-œ"&“ÊoÀŇO,QxÍ+Þý·3…»Ñn2îÖ×PÑEKnK-4Iåt±JÆJö=øú‹Ò%Å©ƒÛŠzË¥ï fœpêŽèšO{ÌTŠðÅIï£ì}µ—Ž¾Á¬’Ùž •-;A‘º.7FUHÕk–W;ÕEL#DÃ+qSã&kƒgË/¼è¦)åè„ìhÄ•î^®þïquù*˳¶˜4ÿ×Ý;ã«Wi»ÍònÏ2ȹ*=¹J¶ìZ׆®iæZvƒjâF*âÖ%40àüQ=lcUÑŠ`©§¸vE8âžù«ëÖkÂ#º®¥|.=誶­J»J..Õ³YA*Õ,¨è]L‘ˆÆªHŠ“*+\¬ÁQLPà ˜ÅÊ0∜3ñ|êëÔ|ß;¯hÇ]eKA#¹†ŠÈ{*3Q$§ÏŒÈ¬c•QÞ«:bŠ¬Ã×3ßj§ÓLrÙ1ò¾0M4×ékγò<)ø ¬²(AISãŽìÍb5òfk<Ïƪ"*#UUpUrc† +guS®0D}æ&>WÖt¥z§ÏÞ©?#éÔpy{ìJÊ™ì*ªF-¡gÑQÎùÖDu<´±,IQ5ª’*µÚüž³Z¹°UC\s33M‘‹®1ZDú#±žDFøÃN×”™|nµMäºuÖ,5oŽjŠ7Ó6¥ú\ŽtyxÇeÃUÒì¸t®Îlk­6m·UëNΧÖ\é¥}}¨E¼ Þ rIá¯e™CGQaÍc¬6w÷s‘홹£b?2ýóU‘4½UTb‰_U¦ctN™I†tÓ®•¯ÄGÈíWvãß ïU‘l[rPñvuS@±ÒºW,®•aû²çcQ¹’=,Ó—¾wÑõð±N)úh¥>õW–ÃcªkáGT»ßcý} Ô·¬ŠºØ=lìä’£\öÃOHôu×aŽL>èÔШ«‚©œa¦¶¨˜™ž©˜¤G†}Î(œSºbcŽÚÌø̾åãàê÷ß[ +Ú¦®’‚–ZØ)à‚ž—?'bÇ*I$ÏzÆ׫äèF£r±­jiUU>¦+õØg²"bhò&Ÿ[Š;fb•H—ªîÚµ·ŽÂµ¨8‡%ê[Ël¬d”ÌrTU±ZæBÙ‘ÌD#EEr±ÎYÔ_U1Cë O_Ŧι¤E|-Åæ)Ž®¼Uñ­={œÝî mKȹôrM ŸaÕºyÕªìÕŠ¡˜G‹qUÆV¯­•0EüXéI‰Ý†œôÄ|Œ[uqÅ_²«·pgu­[›M]CX°>WUUSÉž¯s*f|Ê’5ÍDk˜®Ëê¹ÈäLttåÆœ1ճƿ+ï3¬S;éèˆùö‘ÕJÚ[6É|(õHÝ-uC­ÇB¹©Jäk•:QQéQ·‡¨ØüœçÂwà«üHUȇ»^lw»¹5µ=&k^ +x*3*d¥•ó3.Œ3ãq]8¦\Ú§Óæ_t<¯rõw÷{ˆs¯ÉV]´Á ÿÐÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÑÝ;ã«Wi»ÍònÏ2ȹ* ¼WŽüÙ׶α©ê,¾*ÐŽ²V>JJ•tm¦F*5ÙjZW#ôªeLS4èÊ1Mtìø5û(•¬ÄR¿UO Ÿ‘ûè8N¨¢¥½.µ£Š9,¹Ê±£šÙ!ZfÏðr¹Q\ªæ®œ1Lé³)†quÄâŠq‰ÙßX{‡.¸¢7ÆóôJDº5Ö©aÐUZ1²*©©â–fG›#ö#œÖæU\«†•UÐQŽ4ÍašÅ]„øz%{—«¿»ÜC~J²ìí¦ ?ÿÒÝ;ã«Wi»ÍònÏ2ȹ*½Tò¿„‹³#Xåc)mTs‘ª­j¹°`Š½«†Œz~ƒ(øsø/û|5™÷‘÷í¸‘W v-l×¾’Ά d¥¼ñSPT¾6*¶5¢©IÜ飠Y#Ev«‚ 3ïéM“8qýmkßï^ÏÁ­vÄN®¥>Uªµ-,ŠY*dkø¸ÓH£|ŽÃ£²4sùšŠ¦³=l¢ ÷¬Ø=U£þ"íøÁó«Ú’úÓíW)ÂÍ‚«‡hÿˆ»Cþ0+SJIk³"/·I÷/ˆrx+ܽ]ýÞâëòU—gm0hÿÓÝ;ã«Wi»ÍònÏ2ȹ+”UÃh£•Q§¤=p‹€xç2û@f_h ¯rõw÷{ˆs¯ÉV]´Á ÿÔÝ;ã«Wi»ÍònÏ2ȹ3¨ÙwÖ‚×K[Šl‰ÍSÉO>f¢bøâl«“Jâ™^˜*á§Ãé>qbÓ‡_W¾û˜ŸCê0מ½ž1WQ±8k»¶í½fX±¤ì¨´ìÆÚ´ë#Ö:'~ø®G.ዲ`©•QË÷O}8zðÄLó|uDçt»WºŠõÉh2™²"ÐVIC.tDÆHÚÇ9[‚®-Áé‚® Ó¡#lW}|&cä{1I§gŒUÙó"*7Åz+‡±>öª¢b˜ªà‰Šcˆgj¦(äÃ1Å:z0à^›ÍGt,j»Z§3à¤ÒÈ‘"9Ø3¥1DÇñ*¡æ)§|xÍÄWÛ›îÇ+dk‹†tEj.…\Si÷‹™¦êø>"kßò¼•íÁW2`:SGç>_Ns&(ÜSLpÇNÜ=€3";.)Š¦(˜éÃÛ‡Nr ^åêïî÷ç_’¬»;iƒ@ÿÕÝ;ã«Wi»ÍònÏ2ȹ2»ÜÚ¸i™Â +Èöµ!´ªŸ&eDÊ×Yðª9Øô"¦”UФùßAžÌß¿Lü­²ãñÒ?výƒ¬‹³[kÉgKBÄç6éØõôy±O»A3Ý“óJÅ|JžÇ•gM1bÅtâËšpÑŠ&;¼Xe{èÇãFg~¬3ßà›þÇ+ÃG{hï ©Fì`«·*¦bûÐÀ¸/ãjâÕO¡QPDS }ë»^'¸¦¸§³ßPÅé³-ÉUz­iù 4öuµ==¥S=Cg£d|bdQÇ“$™•2£“Y2)>_TõÎ9íŸ}Jwuso®:´Gßk^þ¾{8Fºö}u5øµ¤c¹m-¹BÊyÛ#ÚøÌ¢GqJŠ™3#ÜŽTÒä\ÀøçَSŠ”ì£ë×øj¼é3^× Ö›t!¿v]žœŠ…)ì)•½Ìk-J¶Y[§Õs‘©™É‚ª¦eÓ¤÷l§WM‚;ôl0Þ½}?Äûœ&Ý».ãKz¬Û&ÓÒOvyTðÆåV$ͨtqË‚ªàù›3ºdÊŠ¸á‰ìý4nÅ•HÝ3Škè†q?wÆfÝñôË×}¬›>ð6þZv’ªÕØ´”Ëgȯs]HÖжxä‡LŽ’e\\š^©•qMÞvÍX£át¸£ºpÒžvÂÕ>Ò–ïT¹ÙïKìJåf”TLˆ–†¡0§Er'Gi:´õaÌœ\©8¾ý†ŠÆšõÎ +s®ŸF*ò~:›зkmuì³éª©ï''Ž¾jŠŽQcªŽ8é[#Vä’%È‘fÊî3;“éLr6èÅ‹dÎ)®ù÷Ø¢cº9Q÷›³TE£ S‡½Ã5ïòzªì{Bܪ´í綂š®šò­¼<\ûÙZúÛJË‚y¤k#œŽN1¬ûÔ‘¨Ù¿B=ˆš:1j¾õK¶CaYôÖ‚ÚÀÆÔ¬-¦Y0wÇ+šÏfTUUD>ë~4¯/¶ùù-íÉønÍб.d3AdÑÅIóÉU#bnTtÒ®/‘SÞr¦*|ÄR""Ñhñ{ŠuMfòüüÝ›RÖm­SgÃ%[V7$®EÅ]ênsqÊç3÷Ç9ÍúE&±í²„ÍbžÛß²®æXuðÖC5oel̨¨j¢á,¬É•îÓ¥S‹f(ycºkε«ÝSáN[C„Þ éïµiSÓG*í¤dÒÊŠ©$tÓ¶DcðEŹїiÐ|ãÁ«gÕaÅ<¦>H}àǧëqDs‰ùe÷©83º–u-m-=› a®j2¡«™Ük0k\®UvV¦†µÔèD>éÕƼý¡zÞVß^òVGY_gC<ѵŒkÞ‹¥±»3äED{ZºZG#WJ`)·W]kÏkÊì§U¹>]ɬ¶/å%à«Jt‚Î¥¨§¥FftÎ}JÇÆ>EVµ¬F£2µ­Wbª®UNƒÌ1I™ßåZ¾±Mb#yÒŸ+ïKÁÕÙžÙKeö|+Zlœj¢ãÆ5¹["·«"7ÕGª+Ñ4"žÄSoo‹Éš’ðuv'¶RÙ}Ÿ +Ö£Û'¨¸ñnVÈ­Ç*ÈõQêŠôM¢"#l5Øú÷‚íY·ª™)«âY#G#ÑI#õ“¡qÍwÓÑŽˆLTŒTtÏÞ3s»ÿú¿øñæ˜5KöYü][*¦:šzG¶Hœb­MS°Tè\*µ2¢¡î¡3T†zùW¹z»û½Ä9×ä«.ÎÚ`Ðÿ×Ý;ã«Wi»ÍònÏ2ȹ+¦Ú¼#]+©Ô•¶Å<ìÁÕPÆôÇ£¹È©ãCçT>´Ë¸µÈôG"⊘¢§Ó‰ôù~µèç5j"Ed…ȯn‰ˆ­béÐ÷"¢£zWÁ^ÑôÀ¢:¸&–H™#\øòçj9[™1ndéLSJcÒšC×¼–;é3éØüáVòÒTÙtòNÅävÅe-ªå¸¾•l§…Q?|Ñq^ctÓ»g¦¨îpËxo©E[NêÙ㨵d£–…¶l‰O"LøRfÕñzdbµ${•êÅEV#S Oœ©Õ¦¿M”¥bf>HâûÌŠVŸK4µ®Ø«ºÜ‹ñyí‹éUvj§Ëa¬ÓWNÖ5¦:4-cSïUª³`‰ë1©ûùæ\ÌÅgéb“Çþè¯lÓ©æ8ˆÙ{c³w~ÎÈ}»ÓÂòT]Ùê,Xªa©uU% n®¢ž¶J¹›H™¬ãˆªìBª"*é«J}6(‹p™‘Þ÷M+3ô±3òzeøo]¥}n ©iGVëBС  ¬–Û,N¨UI–X£FÆô®‹ 3+‘®OWVvFüS·êc {öSÄ¥çvq­;¶ºåâ¾×ºêAlÙ)h2¢®’®ÇJj¹`b+¡´'HœÙc+ÌV½ZŪ +˜Œ38©# Ï Ã«¿oƒÌTÃ_ºN*vM.ôÞûv"½.eº’¶Àm-LJú8Õ ;#¢Ÿ*"#ˆ­bÆŒ­ŠªåÓž¹Ã·cÓMñ\;{}÷ƒHæ›ðÌó÷Þõú­fÞfÞ{ëhY6ƒh’Ž’‚©ÄÇ*M+(Þü’çET+põ¯Åʹ´"s3ƒ)Ý™;>󂾧ÄDbņ7à¿zÄù×ÿ…ûj)öÍ ¦”ÈÛšÒ§ ¥¥J¹¤|‘¬¯åx±x˜0Dc\Žbªf~myž÷Äm¦(ŠSe8Îó.5DW®'oºí8Hªµ£®V"ݺz„§‘"lºYù2,‰;×Wc™4þû ÏhÅ™N­4­¾žÏpμ8+×[}çÒê·_…;u-WÑ>Õ[M²ØU–‚Δi ©§F.²dg¯‡­Ÿ¡«™s*cŧ9¥Á1M»z·>°a®,1?MŠ“·fÏa¹Öýñž¶îGhZé3më*¢y”ÐÇɦŽ¤ká\U0‘QÍ—:*à©‚h>±l™Ãõ35ì˜Ží¯œ1XŒ_UNØ™ùàSUÇÀÕ‹brÙ¦–Ü™h#UlmtQI<«:·#[ê¶&Hì]Š£†8`‡Þ(Õ§ í¬a™û¬a‰ŸE9¼®™Å1xœT홤zkÉÞ«ïeâ²o{ì×ײ̊:ÊX,úJŠdJJÊ5cùj²ªòŸ¿FFŽf +ƦEGb0bœS¶óŠk:¦7ïð|âæ6Z‘IãÇsÙið‘oÓ]‹n¹“5&¤¼|߬mÑOÊà‹*§B®Y™—N+ÐiƒnªšO×b‘æ-š¸a¬}lKàÛ·ÞûÐÓÞËv+I‰MaZÒA'[-¦1Dwí' M"6WMxÌL÷?Eæ¿Wª¾+ÉmÙuͦ¥°[ÇHè#zTªSGU7÷zíEl‰|Z·*¦eÍŽ¸æpVoLsá†c ó»<®‘¿ MxÌLÇ'Ù°í«Ï/e¹ªÑÙ´qQ:(£§‰òªÕÑñ«™ò#°Fª£‘0UWhUË¡Y˜f#z§å†<ÞD×M:ðÄøÏ’%º—Ò¾åÝ ›bókyÆŽz—ÔÓжªh¢Š8£‰ÍÁ\üVGµÊˆŠ˜â©ƒ-±°a›Vñ†!îÙ3õx£Ç˺ٷÎþ^z{³DÚžo¨®žÕ†¦yh²Èø©¦dážFàìê¦e\ªˆˆy†gÇW¼¬ÇÅò½˜Œ5ë÷ÑÙ13íصq5ÌcZ®Ì¨ˆŠ«ôª&•Ñ£OO°Ñ“ÌW¹z»û½Ä9×ä«.ÎÚ`ÐÿÑÝ;ã«Wi»ÍònÏ2ȹ+¦]k›×´-šÆ̲-©X•Žjµ#T‚8r¢ý)„h¸®W Fȧžù«ëÖkÂ#º¾n“jpCQ[iVºžØžšÎ´*c¬¬£Ž6ã$±äÇ$ø£âdœ[8Öµ6 ‚·2Ÿ8b‘5ˆã3^êí£ÜX«Û1Jð·}6?}GÔUÖÔr·"Õ[–¢1=WR±ŒHÓN–»&*î”Ç aÃJpÅ‹×DÇÊN*׎Žêy><œ ,µîmI9¡ö‡:ºÎXcTZŽ3Ãûþ'N7‹Ãï´fË `4úšÓ…ûé]†)­xßÃÓM¯e±À•¯]yj¹dŒ[vš82£©Nö¢f™š}g9Íê‹‚bÄCɉ‰15ÝM¾™™æÖ3©1;¢c¶»= :è]è®…‰CeÄõ{hàŽ{“vF¢+•=®\\¿Jfkmœûx£k‚‹Љ¬µç[* +Ù-lô­Ë4Žsòºv®wÂ×½ÏlJˆ˜ª"ª¢"#M6×LLGÛßJì}ã\æ&}º­µî»|Cví+N:Ù[µ«™ÍLjÛVìÎcÑÕHÜØÖ,1ÈŒËЪ0aÓo‹Iã5­{k^úñjï¬pŠRÞnñ~nœ7êƖΚWÙÑɱொX¤l‘ÈÔv(ª×µЩŠ.…¦ø˜˜ž0ó ÓœLO4}?VÍ g:ÛTZ5ÓTÇVÈc‰´òR.0,0"¹ˆUr½UdÌäUà <Ѻñ‹Uo¶”î¦Ê|¯­]Ô§*×¾»j3ék)+Ò´ßU][YCW=JBÈ›… |QGUQŒDj¢éUUsœ«ŽƒëÃNµO¥=™ÅZñÃ8{"þ¯³yx/‚òExãuS£çÈ ‰êŒE⸘ø´Véõ±éÓ†x²ë†c~-_}ÿ"ûÃLÄý_ä~òp9[lZ6­U·5-h ¥«°G&ha‰cÂ7=~ç#‘ÎN1pGa—B)ìà­bm‹f9D|›^F*Rzâ)Îgå~ ÇÀ3­'ZPY–¼¶u ©CU,•ìv*°½ʺ3"¦Æy¹Å?#¾+·ÆÆ Z#ÔÌ÷M6x>™À•­ e-U}à’­i¬Ê›!ŒäÄÎO4mb. _ÕZ¬kœþ‡a—+PóqŠ³ððÒ}]ïpcÑ8iaß,Îa³j.ôÉPçs-$´Ej'’CJçiõU8¼pLzp>§ qjú™Žù‰ù1Š‘N1=Ñ1òºåÀà‚k“5 +Miº² 6:¨èât cJ™ÎW¹ª¼cÚ˜±ƒ}W.†)}³¦0òŠyAyâ™çí2𶸫¶«ê[%³75ÕVÃhMBèczñ°«Žw.xâsãk•ˆŠ¨¸£\ˆª0Å&:é31Û~{LSZñŠOe½—mðSkM_vÜ°Ùõ¶Œv«éRž%T¨l±ÈäI•sqNth¹0Å~û Ö_½˜›éšÇ|ÏÊbQ§ío–Åì¶/dRZ3ÐÙö…¤ÄžŽå¶–^&Gi‰ƒ£‘ÍGfDTL˜Ÿx+[t˜¦œâcní÷*LRú0ÅyLwÅ]Òõp2û~²Ð䶬´T²DÛB‘Æô™"bG÷9ëB¯­ŽEj;¢a•t›i­öÄâÕN;&yM6Ã(ÅK^"•áçw«¿r »ÖůhÇ"ªZKMŒYQ4§ƒ‰Djôª*&:z:glLOÓLÌóˆ‘åmÂ";¦gåG6oV‹fYQQÛnŽ¶ÈY㣪ZH…4Ȉè%‹26^„\øµÙš‹‡J/“²k·N™ÙxŠSÑ­Q¶:¦kÙ;|ݦÅà¾+ke®ž¢K5k^ù&ÁΞJÔû£Ü½ D\U­jej`ÔЇ¸pÆÙÕ‡OŒM|3Š·ëÅ_ •Ü¯5 ±hQ,vMs(j35xÙ)ÛP™S¥¼[œÄÅ}¸èöMz½{twè§ ÔWKþ!¢ÿŠNÿ±»Åúè.ÏpTÄú‹ÍM,M{VHÒɉŠö¢éj='Ujªḧ¸tà{^L¥¥=|¸½ËÕßÝî!ο%YvvÓ€ÿÒÝ;ã«Wi»ÍònÏ2ȹ(9ˆ ^åêïî÷ç_’¬»;iƒ@ÿÓÝ;ã«Wi»ÍònÏ2ȹ*)¼<)-›jUÙÖm“YjIC%¬ZU…© +HÕs÷W³Œ•Z™Ò6bì¸c‚ª!ž»ÏT^|yÓ­¦‹o›zBnå\–ERÇ6ÛkßLõsZ˜2<ø¹¨äÇïQ0Ç:eé6ˆ¬Ó…ylógh¯sÛäú×JûY×¾™e…ÉøêˆR)Î1y<Ï…ÎF¢ã•UŠ¨¾Î&x1jˆñWÞ,:fct»7.¥JŽOÇGÇa›‹ÎÜø{rã›džÓåË+©Ÿ'Ù£Wé\¨ö«½UÁtcŽ…оÅéô‡€•î^®þïquù*˳¶˜4ÿÔÝ;ã«Wi»ÍònÏ2ȹ*àîÕ¡»×®úÅ_,p=¶„5ʲ½¬Æ™ôPµ²"¹S"Æöªô"¢¢é>#F á‹yí³†gqÆœ«”CÁ•‰J”¼¾¶š,ÒÔZÓGÇFÅrG+fšõÓõ\×5>…Ò‰‰¦V37ŒŸœ¿C<ÜZ¢f-9ŸäË +íÙTw~ʴ㦵¾OWTeN7Ú3ÄæçûìªÏU[Ž\>‚\˜¤eöOŽmóf³—„à|K6É´íJŽ_=U‘M3odI–‰-.1•jÖÀŠÕÃ+àDb&[a\ʘ"©®GÒLÒ³n¹÷Ú¢}º¡ñ›? +6õrø4§¶ô±Á5λu®²²ž$uU¯lAS;×+¸Ž73ÅŒDÅW*µ1ÅÝ:Opái¿_ˆÅ3®xRŸ[ #A ôÑGSccY‚æL¨ÔFàºqL0Ó§œMqLÌÌÍë·µŒE#cõ/@•î^®þïquù*˳¶˜4ÿÕÝ;ã«Wi»ÍònÏ2ȹ+ª^+‡v¯|°ËkY´µƒõ7O $VéÇUEÑŽœ:1Óå6×­õªiGﶮőy- +8jžFÍ +JÄw#>õì÷\ŸB§Ñ ÷®½qÖóª›Ü¶íY-%$I'åMfDÁ&βqˆŸCóª»7NeU<ˆ¥8[Û›ÙŸûr~D¹w}-žzK>›—«ròž)¼na÷øcŽ1éÃF8Š[¬™­ß­.Õ’Ú:š4¤‹“Õ:WODË"Íú¢½:_ûö="b±N­ÜêWm_ZžébdQµÆ5Ö¦„Fµ0DDö"hOÄ}L×lõ¾b(öžJ÷/Ww¸‡:ü•eÙÛLÿÖÝ‹ÖØß@©#ò&féÁWéö!¶UßìŒ9=h_–ïÚÎïôƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰H9=h_–ïYÝâROEÚå»ÄVwx”ƒ“Ñv…ùnñÞ% äô]¡~[¼Egw‰HI—I‘²ƒß3»N +ß䔋:íðYÙÌZÿ×Ý;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÐÝ;ã«Wi»ÍònÏ2ȹ2­^þ¯-›w¯-- ÑóÅ%¬Ú +':6«rÔ¤sA‹:–79~œ¸ô“ãÇ1†&6άQ?y™Å÷Ú7Â'ÖÚpÏ}#ÒýW¯…‹]Ñ:{.V2(®µE³"«ÉÇ?"Sôý Vʪßß°üGÖ~)Á®bØc ;qO”<ÉôÄõÎ.è9w˵ÂõŸi5‘WSÕÑÈ–jZyêaF6Xˆ’HÌ®r¦ +¨ªÇ£^ˆä\ºMqâŒ3‹«NÙŽºmòïeƒ âˆë®Î{<ÊNᵡž8¬Úø*y¹Ö•31NÅ¿ [¶´ô>ða‰˜Ý3~Êy¾§—²Ñ¿W.ʵkà|U54ÑHôr1îsQUìF9Èr¯ªŠ¨©ô¢bÙÝò2‹óŸKóYÜ0XVœ¶Q²tu´éÛ1§Üݪ=&õ—"æj±0Í‹´áTã‡W+÷úßX£MxbÓÏËÔüqpÏfWGL´5õ’T¥c㊘¯X¨åXd•Uò5¨Å~ˆýlÏÅ0iäã¤WêcdOµŸQ‡m>«O7º«†;!)覢¥¬¯ZÊZLŽ–&«ÛLÌÒ=${r£UêìQ¸âÅkº"&g„Ùæ5ç3ãwúKj fÆe£FìÑÏMÊ"r¢¦-tyÚª‹¥>ŒQz:mpDð‰ôUæ}1Ûò¢ +øaK×fØQWÓUGSiQ¬±ÔI YòE:T+š½.j9­Gµ[Š!õŽcm6{ØÅ·u"³ß/0Æÿ1γOxݾéù†Ë{™YjÕÕQO\©MOrqȬ|¯Ò#ˆ¸1­G9Ï^„Sã:rÆg²cåÜÓE~ºb9{]Ú-«ñΔ÷y¶4«šÛ©b‘YŠ¥27™ê×t/™4ý랟I¤ÄÆ(ŽÙžÈ–f!œmÃ3Ê;f~Û¦pmÃC­º:Z”Õ\eeuU ui [N飚ddx£³'©T~LŽ{U3be•‹Taß‹ {f"²Ó3™ž©ß4‡v¦áfʪ´!§Jz´§ž±ö|U®©Lú–fEŸ>—5ÌkÕˆÇ=¨åSï ê§Ó>ÕxÃãi¯ +W…~ÛôÜŽh/ýM\t4•‰$ÓSÉQ4HÈVX$Xß™UÊŠ˜â‰—•EÐ0Ψ¯w·#iš>uäá’çZv¼µÓÈ´¶u™ l‘2\­tÒ±^×æÅʹpÉ‚#Q¸¢ª»æ1_„áŽøñ}NÓŒbžê=”ü/XÍZ䯆ªÏätIh»•ÆÖç¥UTãY‘ÏÇLªÅË"*¢+t¡õ3H™Ÿ¥˜‰ß¶´ï£æ"³u§*WÒõSðÉc2¹- +z»9i¨Ûh+jâDséܹQìHÝ&+›¬k„ˆç5©ˆ™¥xLDÇ]fÝö{kN5¤õl»Ñ[ÃM“cQÚ•m–m,u³A–¦Š²‘±I%=[×ñs"䑪ǽ®j«\ÕÁصȭTE>¢kÊi=·|ÌSœV=¯[­Ûb>–D æ·Ö>uâQsfF¬Šå‘‘µ¸µÉ—ÚpˤùŒW®Èˆ‰¯×WÐúœ6¥æf)õ¾o×ux\²¯]m%+)«)ùtTÑÉS1•1F©™Ñª9Êš×£dF9X¨äECØšðšV“º}¹<˜§}+ÇÚŽõ_:k«%:Á=UMlŽŽ +zfµÒ?#s½Þ»˜Ö±Òç9ȉŠ&•TA]´á^PDl¯¶×Vo 6UU-é)+jj+PØé"‰©PÕ¥\³ñ‘ìk7`ÕUv +åj76d>uÄÛmb»7[Õ½õ¢—ÙI§;ú6¼†{¦ &J*zº·ÚÉQÉ¡†$ã3S`“2D‘ÌHÜÅÅ™QQSŒ}Õ»mcVÍÛ<Þiß²“M»öù?5ÛáÂżóÙ̆’º(­¤¥‚y FFµ5Î’zêä{r=1ËÅ«šäG®(ÅJuÅcŒ°é¯ ¤ð—Ô¥áfË«´)éÒš­´õ5RPÁXèš”ÒTG™6»>}*ǵV#æª#•FZ©Æ&cŒG«oa8i^¯ +¿ WæÕ¸65%]›Lùä–Т¦vDpdÓµL${4¹ZÅLpr¢® ¤j¦,1¾iá$FÉÑòÃÙnðËdXuPÍIZèèxŽ[ž +èì×UGVU#ÚÎ):9U®r5ÎË‘‹sfL0㉧¤z>G³‚•á—ï—†  Fؤthˌ嵼8«ÎiÇíìí|NrŠÓ‡¶ÞÇÅ°øOäÕT¶†yê%·k,ÚH`ü\9W3“Â8šªé$UИ&•TEùËŪ0ïSÊ1bŠøDv½Ç†•Ý{ç MæiN3H|ÄW”U^.$žÈ¨’‚)©+(íZ + +˜j£fvr‰áG'ªç±Èø¤Å¯k•4ûP÷êœ;§'”KÌq¦'†õpyykï eኩèæÐÚóÑÃQ¹bdQ9¨¸t®/]+¤ùÁ5Ãdž*>±Å&œ0øÂ)½ü.^ &+ïÅÓIlh©¤¦™ì…ÍLñ5ÎÅ#œõ~*æ"·Ct.ÐeÆý\G)œòÏ{\8"fŸS3Θü¡%Rð½dã^ÚÚjÊPÑ6Ð{jaDWÓ»2$‘£üW«U‹–DUDV¦&¸±ÄW„Åc¯m™aÁ3N=}[.ù¿ Î[ØZ{6¶žÐ¢³VÐŽ +˜âkÚþ.Dûª±Z×1xÆ+‘íÁS.*ˆ¿˜´ÄÒøvO +¾ò°Æ)Óíò»ßVýeê»6m¡W ᚢš×äEW:6ª¹Ž{Q®UÅ©Ž(Š˜¢.‚ŒqIa‡k¯]Îì»Í]GO -dqWº¡”•3DÖÃ;©±ã‹^šåb½Gµª­ÄÊ1WëuEwl󆘰Ӿœý¡ò®Ç–ê’b¥­†žÐ©’ŠžªxZØ_Q½,QêäUV9åj1ÊŠˆìt 3ªœb±Çe^bÃJðšO}6Ö½-:ÇI]5EsìÖUK [)cÜÎ-W:»9ŠÖ¿/®Á¹‘Ú0cŒtú¨Ù^¿jKë úšW…iæò¹<%:¶µlûIÎYê­kVŽ•Íb#´k™åÇï²c•p\ÙW£ë.uDoœ8§»áò|ãŠLî‰Ãøb}5{,ÎRÓ·)Rsèí롦kÚÖ9Õ6|ŠÊäUÆ9[›"¯WŽ ŽÎZ¢±¶¸cwÒž1/©ÃM“Õ‹L÷WÎNμ7ÞïÛWr+bº)§¶d*lÖA%+¤Ï¬Us› +£#‘Ò+›"½0ʸ óa¿½™™Ý1O b´Í½ôDq‰¯6¬ö̯rõw÷{ˆs¯ÉV]´Á ÿÑÝ;ã«Wi»ÍònÏ2ȹ*¶[—*Ѩáz‚¥”u›4L¯©ÔJš8¦§‰‹ùNlÍr3Á†˜§u&c·FðŠóib;¹Dêˆîäpy¨.uõ¤­¢•&Jy¬›=¸zÓÓS²U…ñûZõ™Q¾ÕC Q‹Vß…4¬uûÝ8cÑU8c3e¢»~í\Sé¢N½-èŽÓ¤«±é×”Ávk …ïDÈÚµt «£2«UQF: s««Ç^§×ÌÏ:2ʦœ1?kõ±—G¹%|·Â*æÙVÄm©°ê¨æªµÎ{ª•ì~W"½Éz#V£crª£SÄNëˆëï [úölj¾ o¶÷G†ÏBhà%µ”WÈ£«¤¨¤¨¢¦Ž–Xê‘Ùáj5ÊÝ*Žb¯Þ½494¡DÍi<#ÐÂb“=³éW›Râ^Ë%o4ôT2½ÖMKk,†µ4Ô¬•|ºFEíûå…)0$Xp×®'L}×ßE{±ø*÷¸¦“iŠÏݽîÎü.Ýh]»jïRÝû¢ŽÒª³#²–9b³“5z¹«…KÚö=°ª9Ús$y³+ñÐi™†øoïb0îÙ_ +seƒ¦Þúfwí۳Ƽ^Ï°«èîÅ܆ºÀµa¨¢³d§Ž¦Ëŵ”ÕL~U…ÈFºšDDs\ô|NÊŠäDTQŽ½U®Œ1Æ"“^;ø˜b›&”׊g²f±1Êv­EÜeµ%Õ¦e®[Ah‘*4LeÖÁ£ï½š1èÐ}çÅbb7O}<ß{&+¿åD7^ìÚÔ”|¶ZYZ´ó6¥¿¨ªÐ¬hö*»Õüú 36â™ü1Θ6xKã S ~ ‰å«ü¨ÎÌ»•‘uîÜ…‰i¤´Ô Ž®ËW6ºš¥Ó¹RµÔâ$j£—:><Éë"hS |+]b&7ÓlO¶õ×[kÅ3º»&_v]诶©­+ÊÄmE ™MIŠ5¨Ÿ j¤n_WFXãUo«™‰ Ö#lÏdpÙšpœS³±ŒÚ#¶xíšGtG‹ªÝë­lRÝ{±O%$­–šð-LÌVéd\¢©Üc“ènjãìr`ÃÄðžŽcÒûÇ5ÕÆv}|K¢ÜÞ ù¶Õ£³j¬:ùji­ykW5]O7¤ Q$ñÏ[7é½fµ°ñ~«ó+“.•úÉ÷ºopÒfwÄLlíðŠ™³]V÷ÓXç1;{OŸslj»ÁYa:®Ï©§§mܞΩmL\[™&zv9ŽLWï‘V/Cš™úÍŽ“)êņ>ýŠ{ö¾0NŒ8c¯)ûìx"Ê. ¯¿pmºzÊI’½¯ £…zÆùé쉬V=©:#ÜÇbž²µqN“9™Å3uÆ)ˆ¾ÊaïÙ3­)3;4Îݶ³òÄrL¼]ÚZKfÒ´é,zÚ%†-§=Cê¥V9ï{V9¥—‹‰ŠäF*`¯r¹~÷\1Jñ˜íÙŸ‘ž)­8G¦\ß۾սӭ=¥`VYiS3Ç ÒK8åEÅVéG`¨«êô™ãî1a߆)»f­ž0ûËLáئ»öéòuë“KnÛ–Õ¦¨²j¨[wé¥e\µ kc|¼•)XÊw#—c½ièˆÔj5Ö\îºñj·½˜¤ïÅ8g—|Liçê¢vn^š»Çtõ¶=æ°ïTuQÇ[MQ#IšÚ–Ƭ‘‘âŠôGG•ÈÝ(ŽÇ OƒŠ»ðÓfýQ/«á¦ìUð˜ù]R¢²òQ[Ö5ð´,j…D¤®£ž’‰©=D šhå§{™™39[6db®G¹:ZŠ©ìW ÖzðŶƨ™švm¿³LQHêÅ7Ý1Jø[sòð{s­Û"×»UU”…sÛÕu L”ë]+eŠ7¹ª©›ÁpÅ3#“ܼ:"#v +s×çÜøÌS3¿yi˜öízì+­lÒÐ\æÉI*:’߬©ºc‰ë[•îö5xÆ`¿”žÓ<¬3‚½YsÂtѦ)ø|qV8ƨ—I¸|s%£gY³Ø–„•T6”µ2VOUQÈ$–Ycž¤Ü[¥\íkaÉê»:¹úÉ:~§Úï¥6o¯„<ÎUã;)º±;{žÐ³êÝ Í#£‚©’I‘¸¦g#QUšW I÷3IÃ;±DÏe&>WÌmŒQ¿ úbQ]ï³­é)/e‰MdVOé+øêJ†±¼TiSO2¥K•È°¬9Ø*.dÁŠè3Œ4ý\Íz©8£}ã¹÷«n¯©ˆ§]b&<|ÓÕ÷»õU÷&Ò²©™ölÔ±¦(™Þ´ët¯FeçÚ}{§ßÆ*u×Òù÷4èœ5ê¢1¸tV•uè±-(*©¡ŠíºŽNSÆæNÉâLŽLWTcœßy¾·A¤íœS¿wâó|Z0ÆéÅ^ì.“ÁíϼVM ÚGÙ®YilKf"¨L±ñ³NÇE «ûêJˆ¿Ý¸©>™¥«øå‚);âðÚ±[þvâšÆé‰Úí|ÐÚ¶}³ÅQÐÚv}ŽÚºÒZK™°ÖqÁ”j÷>N%‚¬_y—Å °õîÙJü.ºòµúÙbê߶´·WËàýW¶óMu8U£ªmŸU[1Nmi,­^YµQŠ­Uj®…TûÝ +º1TË*bųépw×ïWÜ~Œ/›Á•É¶îå§uä­¥s*+fJŒ0sa’²ª9Ùœ˜¦l[£Ujà¦ùq¦)»çgŽuMwãÅ<©1­Su/ +YUW1,Ê…töò׶¹ÞJ”¯mj½dÍŠJÔEŠÃ2»OWIž ºbvh½‘31NÚúZcŸ…?)³{(ë×­öÚ»õö è&‘z"ªmcQ®¦Xª-8æDãË„íWqk +¦tTÇït™áúHÝŽ#Ǿ]ϼ_O;ðO£ {oMueé³,Ûõ-‘ +²¾¢¶i¨èÜ$^IZææõWK\ÍêæM: f±‚7êÅkÒqWÑfqM{mL>|П£}m·QGcÛ(Úë¯SH“ZJçÍ5Z?2±Èç¹cÅѬzã•0LWã6+ƒD_LÆù¤âñÛ¬¹¦,33mUçá±6Ù÷zÔŽ÷Yµ.¦‘"Žì>‘ïTÐÙ–X—‹U÷°E\?¶fÙÇÆ"ŸeæÏÒ0p½Ðêü];jÈ«ºŽª¤–$¥»5³+Û‡3§…ɽŽTjª'±øÅgð^ç5‡ÜNÈüŠyUø.mʶéì®àž’hD–ƒj³7Lm4¬j¿ÙŠ¹?ˆÃX§à*s¦ù ÅJÏàJò®']à‡ƒ7]Ú»¿A5‡\•VBËÊ«*êªV‘¹c|qÉFÅ™ÑÈés'ªŒDŠìQˆ‡˜"´šR˜i5Û¶‘Žw<Ç7ø¶vVf³å½§Íi†~ó=Ø¡^«Ú©ŠöYÑÙÕN}E³g×Á#cÆ)aGÒ#²=K™Å=^ÕDVµ1è2ˆšaá›YìœU«Y›ñ˧:RŽÕeÕ^;jZöU%‘=T•öÌ•ÐTª'$Jz§Fé],ˆäV>$G¢G†gª3 QW¼¨¥#v)¬õRqN*ñ½ïœsY¯ÔÅ;c GvÎäGÁÝ»sïM}õ£Š®¢~z¬†ZGiGÙ•/ôñûíz$øôÈsz¨|dáœuF.ÿážÈëá53'Uxi˜ãïb&9ü‰Ó†ÛñXqºÇmKÿtü©(‘9O$Í÷nOô 0Ã×Ë›/­÷Žñº»izR~ZVO0ZwÓe{cä¯5{±®¨Ú{~kЧŠ¦Û±k©Ò«4’I o$‘ïsÞìíâÜéåÌÆáN îLRb»)™3Êpûs|æÍkN¼ºsªÀpcc×YU×õ0¾&ÔÛu5«“|nŠG·ÚÕVª"þ%=ËŠaˆã‹Ç½ÌÛ<°øB,áöjŸ~h¡³ª¥u¥KC-,‘Çš)8˜ÛãG¢è‘J1So¬š ±Ebcð&å\¿F™«L31?QŠ9Óœ;'V]ëŽÝµm +-G£É4˜7*ó«®õx̘«QÚ3eÇAæ(šâ˜ëèíº'iÆ’`¥0ÄõkñŒ4ñ„yaݪÚÛfÝ}“kE¥we¥Ž{QÎt²Ôµòª¶U{ܱcÆ5#OU®ÁÊÔDA‹cG]&9DÇyƒ' ÏTÍ~ÇÃbÄpY=D·>ËdÔ³ÒÍ $0>*¨Ö7µñFÖ;â¾®)¡É÷ÍÒ%9˜µVc®´ª|1M“Ô­÷>μ5–ìÚ6­•kÉ]MSU£SSëAͱ³“F×ääøª*Éܹ•\ªc†õÛð&&·ÕL3ÝXžklSgÃÃ1KR&|i1âùÜ6Ö¾7féØðÙ•1¶ŽØZùªÞÆ¥7OWPôVI›Ö‘ê¨Î/ Éë*àšOpEtOÅÃöIŽi¯ê¦cì¢gÐò¸2ÚײëÙö6]Rax&ª}^VòfÓÓÚ’Î礙¿TUo‘a›ÇïtŸc.~-&kÂ1DS}jÓÝ7DZôß»Ðì7‚Һ*Õ·V•íª²ï ]«N×hWÇ$ë-üR2UÃÛ òcNãV¯ÅŠ>X—‘·-Ó¦~·ù&¶  û¿hÜYÖtuU3;éÁ´œSÜ»r͇ã\J)ö[ ¾áCS8k7ÅŠ'ïاҒ®í…w¾ÜµO:O#i)Û4Ío±2,Ù)ÕW&uU“1“Úˆ‡˜"‘:Ø k6ÕXÿMi’LWõ'=$VáÑ÷È‹OãÀò"•ôð­=/©šìÝ_y>Áëä9·Möç=-ñ«ŽJ…û¤¼R̉•&XsqK*'ô[›éÇ'˜pÆqñ¿cï-WáádÒzøkÙ4–í´uq¤Ê™\Õút¢¦”ÒŠŠˆ¨©¥SJLWÛsØš>Š|O^r‹€zø·nïÐ]¨,øø¨!W+Š®ž¯]*ªº\å_Û$Drˆ¡~s^÷~ïY÷Z‰(è"â¡GÉ"7_ZWºG®*ªº\å_Å°ò"‘ˆ¤=Å‹TÖzߊòÜÛ"÷­79D³6šVÎÆ+ÞÖ+Ú¨­W±ª‘¨Žk^Žj9pÄuÄõÅžWe7¾£,j6Z2Z91¨’&À¯UU^-®W#QB&eU\:W qÁcg?™¯'Ó•î^®þïquù*˳¶˜4ÿÓÝ;ã«Wi»ÍònÏ2ȹ+æTÛ–e‹ÕpFôékæ®OÚW"‡´}$TrbŸHxäxÉ#bj¹êDÒª«‚'çU^H¸€%{—«¿»ÜC~J²ìí¦ ?ÿÔÝ;ã«Wi»ÍònÏ2ȹ*XË}/Šz"¶Ê-¯5(” +‘ÿ©ýOãKÚý}ꢦq>pZ6}6-»7÷µÇ{ý.é1·Šú^»VÚmƒ-,QY5qQGMh’‰«¥Ž©X¯FæEÈö9ªÙQ¹\Ž\k­)·V®ü15‰î' +^­=ئ)é~›w†)¬4¨^eª,êxªmN*HU(›+UèÕÅÉǽ¬j½Í‹¡©Ž8ª!ìâ§dM+Çg¢±R0W¶vÄp­>Me­Ã,4–…D6eM}5i_YSNèð…µhŽ‰[—Œ•2¹ì‰ê·Ú¨¨}uÓê´×ŽÏ ±µóM•áZpÛågé©áac¶¦£‚ʪž’š¶;:¢¶'F¬Š¢Dj¢,Xñ«gj>DDF㎠+ˆª|ášÌn™˜‰ãì³ÙŠrˆ™ŽúðI›S\´Ò+iíNjVæn*þRÊ~1£./͇N í<ËTaŸ4ŽüQýµæ(¦¯©ŠøDü¯‰ ËYn6[>¢*+Yá«­s£âóÄÆ=1Î÷=ˆˆ‰ƒWUÅp<ײ¼»gVš{v>´m§gu+Wߺœ ÏnZÒY6•QfU¥;k"ŽwÅ"KŸ“::%TG5Ø#ã_Y¸¦•ÄûµŽ¸¥c¶¾Rù˜´õMi=”óI'¯•î^®þïquù*˳¶˜4ÿÐÝ;ã«Wi»ÍònÏ2ȹ*ºÙ«zï³lY²ÍQi²z:‰¢ŠY8¦ÒÂÄVª£•˜=¯ÁEÓ†”Ș8×÷ÎÇÞ9¬ðÓ†=5u›ÿÁÝL·¢Ù´›`6Øç**xéÜéšÆC<-|jÙÑÒ1V#šõsQë¡ÍË¥ t^"/5‰›mˆ‰¯e9´Õiݘ‹Þf)ßGͼœÕYÖ¥tÌ»ÐÚܲ͢§Y#a† +Šh +²F:F*Sª+^™Q땪Ì4¡î,qSé±V&mIˆÃ·º¼jó/ƒ^¬4¤vÎ-ôJ÷2èW]û×_PøXÊWYve,N‹±_OÇ$c1Uk[™¹Qt`¨ˆ«‚”Öº¸ã‰ŽÍ4aOƒÃ Ç=UuÞ«+h/%Ìš’™ÕOe¥R«Ö¹ÌäR£²+Õ™J"ª"á†(O;1ÇÝqüŠ"=äöàôËäY—&ðÖÖ²Ö¨£XSyYi>I 4Tn¦b½Zåj½pkœÖ+°Í†+‚žåáÓ8xNlÏÞâi†y“ª´Ý—[13ò¾-úàƲKÇxjÙ`Gk-¯*RÉ$lPKK ÛRÇHÅX°Ë'¨W&f`‹æšÖ)|U¯U&"'ºœßz­5´Ru‰™KÙ~.Eäž¾~m²–*èc£ŽÌµ,ù™NÆ5jHÊÆ,ˆ¯‰ŠŽVF¬‘7#Si>U~©Ã²üoϘÙ¿½·\bÛn~ëÅu/%]ç}e–úZô´iÜËJ’vEO5 ++8ÆÕÅÆf–Db>4jÆåÅX潨Šy‚)16÷Ó]ÓiΔæbšÆÿ{ß×ʾM«voRÃ_cÁe=ìšñ2ÓmRÍ +D´«Wꨊî3nUj±Z‰£rèEùËÃ1¢'é1Vgž)þÜó2vb§Óa¤véˆùVÔàÂÖ¼WZûÙ21±>Ö¯ªž•^äÊö¹¬jåjªµèÕ«Ž +‰§ pDuÄÌÓïs‹ÆxqSÏTÄGØi}~ n´”vì•í»ÑÙ¶…*ÊöÉQ$Î~i®d’"@Ü Uîõ²¦±yô¦þ»÷ìæÎgdFê×wU¾T‘n^šË«‰ŠÇ¯¬nT^2™)²b¿GÝgاÓêáøÔù©GÇôöÒþ¡»[áEÿ%Šðôv+½xj­·H“Y•”Y© Áøý ⦗£éÇʼnõ^K³€%{—«¿»ÜC~J²ìí¦ ?ÿÑÝ;ã«Wi»ÍònÏ2ȹ(>mmChÔSTO $–•î’¹1XÜæ+æûZªÕüJyN¾ßÕvS³Áô_ •î^®þïquù*˳¶˜4ÿÒÝ;ã«Wi»ÍònÏ2ȹ*g —šÖ¶­j "ﲪ+2©´’M-£žèc›Æ°½pD‘§J¢Ÿ131ZuÌ_tÑ÷1³„OzM–õXôµðÙ³ÖÓG[+Q̧tÌI]£÷Ö*£—éÁQ4à}V³H|Ó­á5ï°i«[C-¡Jʇ½bl.ž4‘^GeFªã›Eà pT_¤ò&¾>{IŵøA³iìËVÌ– E´ªŒsa©…Ÿ;Z­tŠªÆ*fÇÖã•CÍVóß4{k4á>W鳯½e¯hY²å…Ô•S5Ï{SŽ|ð$èŒM ™U2éUÁU4áUû¶(•ó1O­‰ï™‘Ú)ë骥š(¥cß +µ²5®EV+šŽDr'ÞªµQQ¥ƒÑúÃÀ%{—«¿»ÜC~J²ìí¦ ?ÿÓÝ;ã«Wi»ÍònÏ2ȹ*²\;¨Û~ößI¹ÆЦÉlÆÜ”•) +eÅÍÈìUqÁt¦ŒóR"~«eÚc¿yÃò¢n-»6d·*"[>…b¼V|q¿t®¨ž)鱑ç'O¼ÊŽLrâÜÊ|åO¾Ãø2vs˜šûZ‘ÖfFÌ_t¼«ö»õp“cY•V_ 2A¥ç«=¼bµªôDmŽéoß/B§Iñ•†±ƒgïÐÓçð\}ö__…ê;)x@‚š(᛬W+#kXÜyCÚŠ¨ÔDÇDǧDúÚeú0¼Ë¼~ Çò»%ò³å«–ùÕÓ¯ÝìÛBÉ´¢_¥––Ÿ‹ÑíüÊ0âÑ\_7ÏdÆŸ |STéß•θæ§óPi—q±í«:ðÒ¶®Ï©Š¦*£e‚FÈÅT\ÌUEÁt.ÓÇÓ½ËÕßÝî!ο%YvvÓ€ÿÔÝ;ã«Wi»ÍònÏ2ȹ+Ñ $ΑÑÆÆ:Gfzµ¨Šç`‰‹•Ö\ÅpDN„_2ªìØÕÓ¾yèi¤’Fä{ßns›î¹ÊÕUOĪ¨yGµ~·Y422F:ž%lªŽ‘6ª=S ɆTÁ0UÅSá^Uå=™GUÆ,°Dþ5×çc]¸µŠ.dEÒˆ¸¢/F«¯^û»WnYUt–|ñQËVÕŽYÝJ¹Õc— ÌÅèÕÁŽr¹£ÕTÐ|cê)Õ7ù_x1išõÅŸZîØT—^ʤ³)– +H#§¥Q©ãÁ4þ3\X«5eHwl‰®u2ª®*«jª¾ÕUn•>(ú«ÇÑ«°Rüˆ¼¢…_Nš– +(Ò8cdlN†±¨Ö§í""¼{À•î^®þïquù*˳¶˜4ÿÕÝ;ã«Wi»ÍònÏ2ȹ+œ1€%{—«¿»ÜC~J²ìí¦ ?ÿÖÝ;ã«Wi»ÍònÏ2ȹ*½CfÚœ*^KÁ­jë> .¢: +FPÊ‘}׈dÒO/ªî1sHÖµŽõ­] +«‰ž™˜œUëÅMÔ–ík31"¼ýN­v8M½××fE ¹l•ÐW'±6I)ZøÞ¹7èEbÊÔEL\¹t&“\¹ÕŠ7N^®uÁè­#µžf11×é÷ï'и)[´”p-£C$Ô•å]˜ÚÇÔ7ŒG:®fB©\VåH±ÌŽL1È­Òa“Šf0×é¢vñŠÎÞÚlm›†"qSªcºi+µËÃS!­G­yµm4²V«”ÇÆ$Ë'Ÿ“ᛉã~ç›6l}l™tš`TúªÓ•{«MŒñE+•ðôWk÷ݾmKÎûeðX’­=™=e*='_Q=3°É j‰÷Ýžæ¢;ÕÓ¥O#pê¥íw˜ŸCÙÃI§*¥ÚISr9ŽÏc\¬všªˆªÕÃF)иhÅ qE&—âÊ&¯yòô ^åêïî÷ç_’¬»;iƒ@ÿ×Ý;ã«Wi»ÍònÏ2ȹ*žÊ½÷ð[5v%›§¯$uMGU2iª[ arɮϑŒ~,Åè¨äʸ¢™í¤áã3º·ñÚÖ±3Â"c±òìÎ ­›‡Ks™E mY3Ô­b¶Fªµ‘¹$•™ô*6GªäûåoF“\÷RÚ4ý÷oسÅï¢wêÕ÷íž/}–å=Û³¨V6qÐ^>qzgnG/–|È¿Jär.^œtt¡Ž^F©­~·|­1â¬âãnü>N§cð=Yd[®·~Ì{V×’ÑçyR$â$™gX’'7ŒååâÛ&9Ü‹Še=ÉãLRšvvÞ“¶+Øó2uW®´åjú6%k`Ûw:Ŷ—“2Z™m+J¶ž%•$lÒg‰ý(ÌÝ Ž–ý(}Vc G\GöéŸD¼šN)ž©§¢!*R>Y`Ó1"±ªö¢æF¹Q35éÁqL~œ14űñyò+ܽ]ýÞâëòU—gm0hÿÐÝ+ã«Wi»ÍònÏ2È—ä¦ 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1W¹Z»û½Ä9×ä«.ÎÚ`ÐÿÑßiàŽ¥¹dj9=Š˜¡ìMQøùž‡¨gu­s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊAÌô=C;¨5Îòs=PÎê s¼¤ÏCÔ3ºƒ\ï)3Ðõ î ×;ÊCöAO3rÆÔjtà‰ó3R”{€ÿÒßÀÿÓßÀÿÔÜ^¯õ›Á­ŽëRÐlŽ…¯c"j9ؽpM +¨Q‘‘9Ó¦/Å–nleÅe}¸÷ª­ù-óYœ;ýHþoÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{·ãuU¿%¾qó«3‡¨ù¿ãíǸÝUoÉoœ|êÌáßê>oÁǸûqî7U[ò[ç:³8wú›ðqî>Ü{ÕVü–ùÇάÎþ£æü{“§\!Ùœ'Y<çg6VÃÆ>,%j5Ù™†:WF??"r'LÞJò³c6+øLØÿÕÖ/²ßõ½›öM?Ü_Ñ9JvüpÊÓõïÏÔo°ûùÀ?¼Êö“ò_r¿DûÌ?AîÎV˜ãºÿÖÖ/²ßõ½›öM?Ü_Ñ9JvüpÊÓõïÏ- ܺ6tì›Z{ ö¼5n•+çŽIôˆ×åF²8Õ0v¶/н¦(r³sqbÇ8ui¤F‘¶i¾WååÄaŒTÕ·oäèóÝÛK‡lZ”q¹î†ÖŠ +i¥Å$HÕ\®D\1]ôé6é1F<=xqV"Õ‡Ì`Ã8qÌuLR·¥RÍßàîíÍxîüYì–*‹õ²Æªü$­r£—cŽŽ„Á?6n~(Ù1?Dp‰£ï+*1N +ÇÂŒUñ|úK“`^8.ݧ5Œ–cêífÑKKš\“Æ+#["çLÕUEÃñŸQ›‹,Xuj¦\â®Í“œx"pÆ*RuᎽ±3Åá|n]‡iYŠH¬4²¤²ª™4ñºdeFy¸¼ŠÙUQˇ­‹:1ú§<ŒìUÁ\ZµÞ6lÙZìm›—‡ßÆši´íÞú_¼òè¥ëKˆ¶~5<—´8é8ÞSÄqßy÷œ_ï¹pÇñžOº1ΠΉÙ4ÃH¦˜švÕäeaÊ0Lm˜ŠÍvÄÌU×nÍß³,Û—eV-Ûe¯UU_QM.+>dlnDL8µÁ>”Er`o™ŽqfSV˜ÑÕ×ÚÏÂgN©ŒTëÝÁÙl ±r¨8M–ê-•u4ÓbÙ¤šE|?pÎè“#‘r*bº~…]3™WIªbpÄÚ#m'dí}bÇ8ÃJÖpÞmXÛ‰ÁýŸw¯Ý·l¬7j܆‚GCG“9%•“`ŽÇ6lÊž® £öÏs±bÊÁ†uϾņ³HÙ 8qã˜Ó#Í»f'cÝu.½(h-k¬Ë.'RTʴʳa2±Š­zævm +˜hSÜÜÙÁ—‹z¦)·fÍ°ùÃV<18tÄÌïÛ²]RúØ6=eÉeµÌécV6»“2&º\³Ç‘\¯FJªïUt+“GÑôšåcÅ‘‡V¨œ33m“ÈÇ‚' Í4ÌLD_o{¬paw,ªÚ;fÚµ Z˜,ºvHÚ|êÄ–I‘ˆ÷7NTéTM*oîœÉç“‹+º/,2pF)™›aÃ3D…Ar®Ý寺Vµ5AMjV>’ª;ß>'iÈå\Ù\‹Žèö˜Nf,ðÌ×N XquÛÍ®œ8ã(ŠWa˜êê}Ûo‚«¿fÚ÷•ðÓ¤”IcË]AŠ»žÙ7"iÒ¬z90v:1$Ãî¬Sƒ gßt˜"xÄíñ…Sî|1ŽvlÑŽcîØv"Þ,K"éMv槤fIìÊZªˆñv½\ìøéÅ3"a££î|ÉÇ8âfØæ#„RæàˆÃ‚bó3Þ’/onéSZד“6K2¦–j‰ÎUN:©¸¯Bâ¼NW. +¾Ìq"ËÏÇŽ™u÷ÑŠcýLmñ­bÊÃþž÷LLGÕNÊx+é»B¹(çšœ±G.h¸HÜÈ˜àž²})ô)ÖË̌ͱXÛ1·‚ x4SŒUÖÍ€5ì>þpï2£ý¤ü—ܯÑ>óÐ{‡às•¦8î€ÿ×Ö/²ßõ½›öM?Ü_Ñ9JvüpÊÓõïÏ,‡vµØ±b²íKv[ªßÆøU“È•(×âŠÄf,\ÍõU®ÁŸ‡ÌÄáŒxf=í¶M8«Ë˜ˆŠbÓ1;gnØ{|®½ö£¼v\Õ eG]h²¾–GÄçƈÜZ¬{cÅZªž¶„ÃÃè2ŒœyZ'áN˜˜®ýÕm9ØqÎ8´b¥'³ÍÙìÞ.Ý|ìé!¬^KfزYí©V9¼d¹5¸+‘Ë‚b‡Î<ŒX°cÙ·8šWª&àÌîÌ15žÚ¡ ¡~kj¯…‘i[µóLÊj˜žé'{äÈƹpé\?1ÐÅ“pâŒ1\3m›i0‹9Å1Y™¤Ç¦¾/í§zíÊ·ºÐž¦•µrILÙ$z±UŠÖ¯FŒ0ÑŠ!ñîL˜ÊÇdDéŠìŠµ÷NoIŠi;+4O½ +è-ìK÷ÎÆžK¦Ïâdã9OÄýÿÞqxéÇÏŸs㌕²fiŠ±M35ïS¸qbÃŽglDV)yˆ¢;ƒ…:›ãÙ4–e£-=duõ3Ô2=˜±êŽno¡ÈºtiühWó4bÌ®(‰Ã¢#nݬ:jeÌDÓâ®ÎÏ7fŠû]Z.b·içdvr¹%tc‘¨çS媉Ž9×N Ò¸™`ÉÅÐN ½1Dmã±îfdNfQõ3=´ÚêœÞ;"Ì®¼1ÖÚ BÚú9 †ul‹ƒß*9îi™4iú¿tåbŇ "ºg Ìlêƒ+Fäç1Qû¢+½e\S ôŸ9øqgeâÃtÌÒ‘³nØÜ÷.c<38«3[ìÙ;Ý^Õ¿¬½\ËIjÖ¾¦Ò†Ñl,êçÉÄ9ŠF½Q}\t«U‘‘ÑæDáŠF™‰¦þ§ÏK«(Å5šÄÅ_3ƒ ÇeQQ[65©:ÓAjS66Ï‘^‘Éó±\ÖéV¯Bኡ§ºrçœXvÎU¦ø¥%žN8Ã3lQ1T…E}®ÕÚ®ºVU5jTSYu«ª«HÞÆ+åv”cU3åj'N¯°Ã£Å™¯Å5`Ó†+·›]xpF15¦=S=W‡Ú°¸W°ìÞ‹:²tlÏZöÐ9Zåã#«~ub`š=f£“>ø—3ܘ§£˜‹hÕuûr«º0×fúôýê>Óàßîÿ ±%[ÅOI-™,‘Iîvvb«¥­ÃéÀ£¼¬XýìÌbÅ3˜Žªu¦8ðáQ†);%Ñ/mꢴ®Þ²¢¨WÏG-c¦ÖõQïN-t¦ Šc†¯AF^\Æn,S'¯¥ž,qÑÆ›bžäy¬Û2ɬH¬êÎY¸Þ-cõÜÜ^Ì«Þ®Œ~ž’œ§mŠmžºìÞÃDZk³Çs¯š>ö8÷™QþÒ~KîWèŸy‡è=Ãð9ÊÓw@ÿÐÖ/²ßõ½›öM?Ü_Ñ9JvüpÊÓõïÏÔo°ûùÀ?¼Êö“ò_r¿DûÌ?AîÎV˜ãºÿÑÚÞ,êRï>*Êxê"ãcUŽTUjª.…Шº>%žä™Œ[&›&Ì3¢&6íUoBîŸàJ.ìžs±ÓcøÓáäçôxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè}6ð}sÖÎuG2ÑçI[D˜`­U÷út=>:ÓTÛ‡“ë¢ÃKEß3л§ø‹»'œúé±üiðò|ôxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè}nÐŽ†ÒÅ£Ì÷ÈÕÑ&5†¿ãSæ3ñÖcTÚ7y>§+ -è]Óü EÝ“Î}tØþ4øy>z<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t>…eÀºñS½¶-2GqI:s¹º=b1ŸŽkï§dðÝØúœ¬1ÕŸè]Óü EÝ“Î}tØþ4øy>z<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t…Ý?À”]Ù<ã¦Çñ§ÃÈèðîƒÐ»§ø‹»'œtØþ4øyÐztÿQwdóŽ›ÆŸ#£ÃºBîŸàJ.ìžqÓcøÓáätxwAè]Óü EÝ“Î:l|<Žè= º(»²yÇMãO‡‘ÑáÝ¡wOð%vO8é±üiðò:<; ô.éþ¢îÉç6?>GG‡t-¶m•`,TTÑÓGÇH¹"ÅŠáŠéU\WéÒr=׊qbÛ5Ù_‘†"6lÚ•H”ÿÒÛŽ5¿‚3y_¹~)cek:¨ŸšJÚhœ­|ѵS¥ö¢üq<¡1CÑÈ8sšÄõ•U‘ŽrµŠ©Òˆ©Š~téOÛÌ>ó5$Ÿ²Yþ“S?¦åò¾º¹¾ £åù9´Eóâx?C$d˜£\‹‚à¸*. ì\:óžƒädI‹œOk•>*x<ÏG‡ÄvLÉ™S1LpöáÓ‡ãÙõTkšªÝ +ˆ¨¸~%ãöÏ™èÁÒ1Šˆ®DWhDUDUüÉôþÐHÉU®G`¸hT]>ÍOâ<g£Áò2$Ì÷#SÚåDOŠž\äb*ª¢"iÅWOÛ=µÈäÅ¡Qq@9Û©Õ4ßÁfÜÃ8¼öCêmßû|½<¢f~1™z3fnþ|p=àðtŒb¢9ÈŠ½ªˆ«ù½¿´˜xI,p¦/{ZŠ¸båDÓìÒžûŸñÞø +ÿ¥|a¼öüûÅÕØøçÛáàÙcsÕˆö«“¥¨äUOΘâ€y€8r£STDö®„ŠŠ˜¦9cø*ÔÈÏÿdr½Óð¹BÌ›$’FàÿÓÛŽ5¿‚3y_¹~)cek:¨™«nXW~Øánús¥Ëª¼¹e¢F-3Xî#}(ìÒ3ïúS ~ôƒDÎ*᯿¼¡^9˜¦Ú{ËsXZŽí»ðÞ»"™‘CKbÝêjê8+£•Ñ=rȸúÍnTn_£Ò}æçL`ÌÅ׃DsŠ¾0eÄâÁX¢f{èéöw ¼"ÞËBëÙ¶eE2Ú×qö¤òÔS+Úɘ©ë1r. ÐŒUʘæU\0]ó&c(Š{Üqwûrg‚"‘3׋{{my]î/u÷»·Bž…))mk~zÈe¨’'I -¢ÍÆHȳ&e~ •ªì>5Î)óV s×ÉìaÓªgm1iŽ§Tááü#ÚWbísÌ”Ö}dwŽšx¨’Xæw©OTߺbÆ`Š¯~ùWsp3÷رåõLÎ-—¤ÓÆ&E#>¸¤pÙXö«ïÛÜ&ÏÁ]äáÕ–šž¢¦Ï¢²=v1Ñ-Dò3‹o빙݊5¸+[Šb«¤ò3)¯LmœÌ1³†6ËÝ´Ö~“Ï)—ß›…«õrêí[Ý–Š¦­·~[nŽ¢š‰th¨ødÏvtk•®ÅÉÒˆ}ãÍœã¯DÖ›&'e»_pF-3ÕŽf)[R*öpqÂÅý®¼·^–Ý}”·†É–¹Œ¦…ì|†6¿KÕÊÎŽÒ˜"5WèÅu‰˜Å8fŸ±NÚSÅœÄi‰ôðºÈ\ª‹ÉSf#ïÐVq²¢²‘î||Z=xµÅÚs+pW'B/A÷†´ŠÞ›{_8¯4µv;aôðûÌÔ’~ÉgúMLþ›—Êúêæø +ˆäT^…Ð}Ýò uðyûÝ!²y’›‘ºÃ}Zò¬éR‰Æ}÷ßa£Ùø‰²²°ëÅ´`˜áµ¾f9Ó‡mç{Ÿ¾›„ú¾(¯¥E›GJ•r^ˆlÚlZôc¤‘±$›ÖUrµ4®\¨¨ˆ˜83'N‹âÌźõ¯ƒÜX"³3l9xgÂÎx©¿4Û”·µ)dŠš¶Í}5¡LÔ‰“Ƶ t™ Î÷FèÕ0Ç¡É¥s1R"ql¦fq¿Ô÷V´ëÁ<§rràC„»O†r·£’ØË;©h!kŽT…p|Ó?Q^¿y •¸*éT7ÊÅ8£TõÎÈÝÛÇÐÇ2# Ò:¯<|~öTUËÃMŸGD”ðÔÉwk]T¬¯É3Q4gk\Ìt¹Š˜ªþü„ñ3«2›&0aÛÎZÌFœ5øضru_°¢ïTY÷.¦Ó¨–)d´+j÷¶’+¢™ìU–E{–LWK4&FúºzM=ÍÁ‡ŒD÷úg‹ã>kŽxM3†no?­¢øklÅŽ†ZfÇf¶)**'ŠEjI,ó1Q)0WzˆäT\*‡ÇM1=_"‘Õ²µßÁ¤eÄÇÞfkÆ:©»‹ê_N¸I’ô^º[>:{‚’ÐjU@ç½üdN‘ðæk›÷ùW¯Þ`ˆˆ¸âŸ8óq`Œx¶S*S®b‘/påÆ-× Ï:Ñá Wç„Kj㻢£ŽÕ»Ëk9Õpºn*T‘‚`æ«‘WÔD\s®*˜c™®(ŠR0áÅ·v2ÃH­çÇs©Y<$Tpµið[lÕDÈj]jÚNØñÈ’Á £z³W*ªb˜ôc€Ã:±àŸ—ŠLQ§(Ý ?=ËáBÕ»ws‘X´ÔWÛº¾Í…îë tW>yUïʘàŠÔs¾„C ŒS‹ 1HÕ®fz¢"fl×; F,x§m4öÌÌD&[bùðtn•|¶ÊÙTµtõ̧ŠÑ¨rEK-+Õ1©âQîrHšQ ULÎèÐo‹ÄEi3IëÙ¾7×s8Ã3JÌR±Ûº|Õ¿„n-n8,¾4U²ETû*Ñ³à†ª:y)¥’ËŒs¡zªÇ§G±S'ãŸ)LJ õô±Óì»|tâ˜êœ¬Sáâ’/þ½ô¬½·BòºŽg:íÏiRËG£FµZèß ÑÎvl«Ðý +ì1Á1ÑõîŒs‹dMðÓoTÆ)g‘‡Là˜¶*øC忆ºÛ›bÝ+»EhÑYk%߆ºJºØPÕV±¬ŽFÅM/TUs×ïQ4&&ÞèΦ9ˆ§½Ã·®f,Ë'/ÞÄÏ\ÌvDMÓÇ!߬³lAAK5œw:$®‘¯‰‹Zêv®³=1Áý SL38¦'ªp׌Nç“Ž¸šFêoOgÛàöêuM7ðY·0Î/=ú›G7ÄöþeÜ{ŽÓÙ>ƒ ã¶=,uŽù×3€Z«,:õ§[^GsŠ$|•œÙUsgÇWïpÍøˆ°â® ¸¤ìÑ·ªë1E1cšõbÙÉv/÷ +×ÛŸo-Ýu 0]ª*çmT/•ÕO’5•bkšæñMF5}tG*¹z06Ì͘Պ)L©Mýsµ6V\LaŽ¼Xk]ÝPë¶÷Ùx(d«š&BØ+nÝ-«e5Ñ¢ªUK+a|ov?tj>F`š4ã̘œXbñ9z{1ìæ÷˜Ã=^ÿWn¯¡÷ø'ážóßÛnîÙÕÏ ˆ‹Â'*½ iÖ)Ê6gGà¬Ï‘¤ý~ïƒåGôdòu-ë¨mXUÖß46‘±;”25™Ð2¡g̓œ¯jªÇ—*7éÄúÊÇ8§iøé[u^¶Úó3 Fª}%øÚ¾—Ͻ<8p“cÅyíZi,Õ¡°mÆP,2@õ–h^èÛ—;\ˆÕn|sà®rèЉ§,¸©¦”œs†œèûÅ—˜‰«Ê®ë WçÒÅIvù t÷vËŽºt«‰ò>¢I¢tˆÆ9®Db1©Ž8.g& ¡t33f#(¶ ÓÆ´¿/\N˜›âŠò­<|'„ + +ö\Ë*ýß7>ÐI¬ˆi©¬ØØ­õõ‰êIZäû«œ¨Ö㡈˜¢è>½Ñ‚"½sŠ0ÆÝ4®Ã'Í:£ Ìâã¢Ìpw-ë¥plk6Ý‘d®‚™­™\ìÊÕÅU®Ó™XÕFªý*…“ÕqŠŠÐµ-*›:Z©c{éàJW9$ŸŠjærª52ÇŽ¥pA9µŒZ°Öf•£ÞLâ‹é˜ˆê»Åÿd]ížäÉ]Fê9«iï 5Úž!짪†eL&ln\ÌÌŠˆ¹Urª.,Ìaߋ៯4DN(݇TxzÞŽ/û¶n··rÕ¬¢å=+%åÔÎke§¨…Ò:Ž~,z'ª’âª8)†v)Å—Š·ÃŠ“Æ6O&¹q >š+&´æ÷Ú\'ß.ýÔ³§´è©!«³gZµT/t ‘¬o'¤sZü±«š¸:g»ÖÁ\ˆ‹ §72pâ¦ÈÙZÌl™­¸1ËÁÛzR:£¿¸Ö­¥n]ê +ËE2ªhùR–TšËôÇ"}ó¥ظ}8£äô0‡kØlV•…UUSOVê\ñ9*œå|rB²"«pv‹ŠcôàgÑÓLÄíÃM«Xi®º«lXµvKöÛ_cÍ}­sé쥷du£ ªÛg—OÕ¨G«ò¤9Ó,IŽ b;B'N•<試“·ÎÙÛZÝìf|*ÆÌQJFÊYô-±öÕQz$µ«¸ÖÞ +J*y(¸µŠJVaÆ·9àö· †UUé<œšêÛJâŒQÂb"#ÐaÍ¥8a˜ž13>oËOÀ%©h¾Ó¬·m¦×WÕÙ± –:T‚8 r..XÒG+ärà¯\ÍEÃDÄbÊÕ«;qÄDÍ:£ƒÌ9štÒØk1®Ãcp.û&Öºuë\ôzÍšÏVñJœcãsz˜eÇ/­Ž8bk8}ôâ߆ž1/Šì§¤‹“c[6 –”ö½£Î5ma†\«N(|F]'ül1ÒúœuˆÓ3ß8àåÜÝxlWT¥RÇ5D¼b3‹Eã¥t˜eÌîŒØcŽœ1Ð}åáц0Î9Õ3;æ¨Z÷ýŒV•â[ËOIoòZ+~¥•²Ä´’FÏ\©Æ«ÑVZŠ±¢"ýäLqž2)¯Óêu®Ýíúmµ§ÒéžÊQÑê¸9½wÄ«ãAIk:ÎmE•fRÔOÈøÈçk¢s$â³9¨Ç¦ •QÎÈŽTT] +|ô}/I²'V7Ƙ{8ú=yŒIûÓ÷ÚÜÚÖ ¶ “vk_g6†ìKKL”ü¢<3[–DUkUÎEΘ9ŽDTÅ\Q8ñb¦Ïy†-ÕZ2¬aÆ»}ö)çJ¥ ±ö;S]8î„TµÊ­»ÕU5r+ãõª¤©k‘ë¡È‘úÎÇ¡ÚñšF +N‹aÃ8b3Š±?UŠ%ó#ûÝOa¥,6¯]OnÏnÑÕ$¤RJìx·Æ¯û£rªµÞ³UzS,:# 'n [i²uV±Nm1fêœU˜©³±Å±ö:ZVõŠæUÛΖÕu±µÊŸOš³D˜2&Ó,Š‰ +'ïˆüqÓŽ'½4ÒváÅ3YÛY›úžt•­mŠ"6lÙÛ_.Øû-[zμôÕwƒŒ’ðÍEU,¼‘±MLäW+²a‘ZˆÖ3¥˜b®qóÐl¥~ž1ׯ‹ê3¶ÖŸI8_}Ÿcõ¥iT[ÕöÍ·Ëk­;-ÖD2¥2DÊzuEÒ¬k×;ÕW3Ý‹QËЉ‰î,­QŠ³·+4Ýmœ9šgì¤v¿T¼Z–cìJÛØŽ’гl¤±ß,´‰õûà2Ò¼6½«[d[Ig2Ú¤ŠŠÑÔ­^ÈÚ¬GÂå{x¹Š­UTza§ O1åjÕÙŠk1×Þó=1‡~¤KÑ~>Ç:+ÓWuIX´°Ýþ.5cεFèÜØÕÙ›—Ö«ƒ“ Ó Xãî®Ë>c0Îý}·}Þ ø‹ƒ[ÍoÛ-¬å jKš–<¼š7Jù;2æE’G;ìÀøÈËè¢bµ¬øuG'Ön>’kjGŽÊσ³_n]|/ÛµÒ¥"Kªj•Y›ŽãbXòã™2áŽ8àìz0>£¿Œ[°âÃO»>uûÝ?U^ÄQCö5ËK=-í…’Á¤µ׆iÓI•ë"FêŒúakÜ®FäG}°>r²çáÛ]Ó²›ï¾•}fcÕ]”ÕJø[¶ÛmýÛ6 è²ùͶõ¨ËI$âxœ®ÜZ¦tΫÅýö-éèÐ|ÆM0ÆÛ¯Ñõ9›fwáÓáD3ö@YòØw’ÞuU£I-±cEK$PY®ªesØÇ28à™Š© ºrʲ&U|ì5׆+ï¦&”¼ï®íír¦šfiïk­£³Ð±–Ü—ìÙ)<4u6{h$&¦eJ/Ï^&£ô1ÿBJßYŠ‹ÑLJßDü[ì¾Êlž¤˜'dñ¯¦©åË™UCLjØ´ÿŽôÀWý(óã ç·ä‡Þ.®ÇY´ìê{bŠz:–ç†xßöµíV¹> +1áŒq1=qG˜qišÇR±]ﱺӳÖÄ ´o ël{ +¡µ4Tœ•‘Éš®ý'ÌäûÚWéõxÄÓÁõ”šýNŸO›°Zœ >Ò¼6¥­Ë‘©_`¶Åâø¥\ŠÔrqÙ³iM?y‚m Üž“^߇”yƒ3NŸ¨™çWÏ»<¾îÚW>±m“ÑË:zo©Çñ¬FçEι0þ¶>Ô5œÇ8÷åè§ÊøÕïtý^ªüŽµbýsÝû±dÐRZèËBÈ´êm:Zµ¦Íj‡½]«ýf+_•pr.)Š`|Æ^˜ÃIÛƒ -²c±÷‹3T♶)‰¾Ø£ìÚ¼ÚVõße }¸úŠ§[4öij¾âñ…èî"³ýÊ<¦g`¸ªãˆèþ߃‹VÞ»ù¼×𾫠;-äû×-¶ëï”ò×ee楆—+cÓ +Ç›vÇpÁ¸t~3ãN¨ÅøS^Í‘#Ü9”œ3ñbž3?+â~ñ«å gCå…e¥ ’Í™²Ðq”³Â¸#´ë2"LƦ "¹Èºqn õ.q×oŠNÏÝ/0cŒ=VšÆß Þ–82¸TœÝk>À¤•òÅE’I†g*¹\åÁ4"*¹pjhj`ŸA½¢#tDw2™¬Ì÷{±üj?ägÿ²9^éø\¡fM’I#pÿÕÛîi媱\Ș绌f†¢ªôû«ÜÓL[wKج+Ï1Ú=š^㼞¸ßé4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦_i–Ew4=œžLËP×a‘Øá‘S0è3׿Vþ/ªM9¾/1Ú=š^ã¼ 5Æøï|铘íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2ålkMQi¦Á:=Gx q¾;Í2s5§†žl:pÈï®7Çy¦\s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2úõEzÙ”ìJy3$²ª¦Gbˆ¨Ì>§ qŽ+;bÐúœ3HæùÇhöi{Žð4×ã½ó¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ËͶ=¨ÄTJy‘§;ÀkñÞi—‡1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™}[Fǯ|ˆ”òª¶EÁŽÐ¼c—Ð|aÇvõü¬Q;;+˜íÍ/qÞÞ¸ßï2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi“˜íÍ/qÞ\oŽóLœÇhöi{Žðã|wšdæ;G³KÜw€×ã¼Ó'1Ú=š^㼸ßæ™9ŽÑìÒ÷à5Æøï4ÉÌvf—¸ï®7Çy¦Nc´{4½Çx q¾;Í2s£Ù¥î;ÀkñÞi•àÊšjK$¬sƽpr*.œ=§3Ý3\\•åE!!’¶ÿÖÝKÞåmœªŠ©ë7£ó›dÝž;"~:Oyß/MSŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅASŽ“ÞwÅAWÐI_ȹ—õVý+î©ñ×Éõ]œß?Ž“ÞwÅO·ÍN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:OyßN:Oyß_¾Y_È¢\Ë÷ò}+ù'ÌFÙì‡ÜÙø8é=ç|Tú|Tã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPTã¤÷ñPUûªå‘#ƒÖwê~Õ÷œ|Ç_oÈú™~:Oyß>Ÿ58é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|T8é=ç|TJ—5Êû?U_]Ý?´C~Jrìí† ?ÿ×Ý;ã«Wi»ÍònÏ2ȹ+¡ZÜ&Ý«ðÐ]ùk#u£\÷²*xÜŽ‘2F²9Ò57*hUéUDDÒy†uM"ô™î}LR+Æ#½ßO_.ƒÂ V'tõv«¤FTT2™œS3®gâªåLS1]#¿}jc‚Ÿ5Û¾}ªûŒ5‰Ðïê˜tª~ ú|ºåÚ½7®šZŠ\ÈÈj'¥wÜ«žžEø&+êâ‹‚ý)§¶"wÅ|f>Bo1ºiáò»ÓüŸí{0Ä·!·cšHã–$Šy`T™™V'eW5t±zZî‡&“ÈšÅ}¯O‘ìÅ&žÖ«›^ÜŠÆ}#_²r©ÙNÕ‰™Ñªôs‘ÏT_V4Ë¥úQQ>“ê#o„Uç·i4®|˜/Ò¾£±O£G´ò6òšxDü¤Å)Æ+ãGßÅ0Ç  !àE5{¿ƒ7÷*|õò}õs|ãéðûåþ9C·'ûIóžÈ}ÍŸ€ú|~êÏÔéÿ¯îÜ|Ç_oÈû—á>Ÿ½ËÕßÝî!ο%YvvÓ€ÿÐÝ;ã«Wi»ÍònÏ2ȹ*á*(Ûy­G-©6+‚b¿ÆúW¤óºæz!õ‹àÏÝ°zSÌù3&l1ËŠc‡F8táøú^*ç +5תù¾É§±gµièì‰Ù*A-;8¹íXØ®ãÞÄUH£r¢7LØèEB|Q8õStaŽß…?Û[ÄÆ=º¹G½ùeñîÕ[8X©¹”†‘œß^êšY¹_DøiÜÙÕÁîîDÒˆ«:M¢c3i²pF(á\T™ù82˜èðÓêç öF˜óâè·2îYvËî­™654kx/+¯‘ÎIXÄ—½qÅíИ¢ª¢á§çjÑ]¿ŽS÷÷Ö)Óª›?0ýõônÛ ±è¬kN®mT7¶[:)VG«™H•3Ä”ÍÅWQˆˆ‘ôhEéD>ò#àO\áÅ^4ŒtîÓì|g}4nœ4ç8<åô,Ë"žñTY”uˆé ’ø[i#39íH*#°TUbèŽ к òb1h¯ÄÍûû|é¤â§ÆËôCöÑREbMfÙÔ¨¬¦¤¿ÿvM-ضø@·lºHâ´a±¨$eDlD•Ž'lÒ#“J9X™•!葦1SeqቘÝ:j`÷Ó†»}æ)ç£Ù~®Ý•pVÔ³ìñ4õ—NШ¨sš¯‰XØjUWîÎö¬/ÃJ®ÎtS^DF ˆÝ3Žc–Èð2f³‚oYÅ·|i¯§Ò³][6èØtÐQF­ã#ŽY^ç9Ï–GFÜÒ=ÎUW=Ø&+ûHˆ…˜â“1¬úReÍb'„zÜÍö覯wðfþåOž¾O¾®oœ}>?|¿Ç(väÿi>bóÙ¹³ðO€ÝYú?ð5ýÛ˜ëíùrü'ÓàW¹z»û½Ä9×ä«.ÎÚ`ÐÿÑÝ;ã«Wi»ÍònÏ2ȹ+å×Ø”¤ô³ÔBÙ$¤‘eÎÇÞ¬sÍÁzU®stã¡Gß½áÙàðæ 9-^uâÊøŽMÇiÍÅgã2tá†o[£~‘šx}²µäæÏ°¬û*ª®®žÇ5cÙ%CÓds‘µ]ŠþúÔF¦&AäE;ëÍìÍ{¨ë5ÜÝKJ%Šk:'5j¤­Ð¯k’yS $kšäs\ôÐüªˆäéEÄóLláZsšËÝSßO ý–W×nÄ䜎‚RŠY¦§F"¢E$è­•ÍLpÅ誎éM:¯’)ʵ£æ¾3Yí{â¹6 G (ãHã«Zö53`•*÷=fM?|®sìÅW@ÃïiNªÓké’vÖ½wåO(yS\» +ŽH䊎6º*©«X©Ž-žtse•4ýóÑÎEú4®‡˜b0Ûª&#²f²öqVýtð°ë—aºVÊ´qçmg8"úØ¥V\¼wOßá£ÙøpÆ›uWƵï©3^tð·¡ó¬ž .µƒió•U9¤z=¹°k¥ýQÌb¹XÇ?÷åcZ®Åq]*y‡ a·g#-Wsgpmv,‰#}5q¬UO­~ žF¹¯‘W+Z®G¹ˆÕÌ«†+ˆÃmÕ¤™­úéàüWƒ‚;›zjª*­. å¨k[2»:$ˆÔÊÕ{ZäkœÔÐתgoÐäÁã^{Þë—ÚuÇ°d´9ÁÔlZ…¦äk"«—4Š‰Ñ]•íDUDÎŽTÅtéSꕯñ|ÄÒœ,ùVOwFÃ¥«¥¤³aŽ*ȸ‰Û‹Ýž,5W9\‘¢*¢1ªn:˜¥:¥õªbjïpÄÊxÛµ¨‰ô"&Ÿ´‡ÔÍ_Øö>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÒÝ+ã«Wi»ÍònÏ2È—äÆ 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä }ê÷oîTùëäúêæùØŸO“€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b?|¿Ç(väÿi<‹Ïd>¦ÏÁ‰ëäÄ 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€ÄÝX¿rƒøþíÇ‘×Ûò>¥øq=|˜€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b+Ü­]üˆâëòS—gm0hÿÓÝ{Ù4”ô +æ9Z¹›¥?9¶TV_æ‹ùÒ³®wÄ·LnOªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqªNt¬ëñcqª_½¶•W"s¸ÇfãQ1üYTùÓäúÕ±ø9Ò³®wÄúÓŸ:¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¥ûd´j’’'$®Å^ôUüØ`|éŠ÷>§Ñø¹Ò³®wÄúÓŸ:¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¤çJιߦ7¥û*­*¦Ç +¤®ÒÌWñúÊ|ÆÛÛò=œRü|éY×;â}iÏ5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5IΕs¾#Ln5JMº3ÉQAšG+—;“#ΊK|aÚ ÿÔÝ;ã«Wi»ÍònÏ2ȹ*>¼+]K­Y-%}{b’Ó}ÎW¶“ïg±ŽdHstièÒ|ê‰ÙÆœ÷>ôÏ…y$Tr"¢â‹¥©|:Åè¾–5Íd.´ª8¥ë,k$’I‰™ZÈãkÞåDÒ¹QpM+ó8©±õjý7fôYWÊ…+lʆÔB®s35ÅÁÌs\ˆæ¹«¡Ír#“éCêûw¼àì(xåZ©ôÆ †8ò­Ëj†íÙõ…t©=°áœSH{hêc´)㨅sG##˜ék‘ÕÓíEEÒ}LQóWèDU<^Ò¾¶%c*êã‰h`eMNuTH¢z¹ç; =ek°Ls.S™ÅYÝ1å÷fy×Áø®·w~ùO5=ŸR¯š2GÅ$RÃ"1ÿzü“1ŽV.#‘¸èÄú¼Ÿ3³›ºª*}á•Sè\å\pÀ£ù°¥™¶¥﬒Ïj#_üx‰Š÷Ç÷¸"µ¨«Šàß¡ŽƒÈšÓiÊïf)Êž6vÕj§Ðzù2¯Hzù6U·CnqëI*KÉç}4¹qõe ì\Q4¦)Ðyb»ëá4ùÌSg¶÷ÖTT\0=|‹£¤ú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿÕÝ;ã«Wi»ÍònÏ2ȹ*ºp…KOZ¶ÍÓ»”©%¥n1d´frªÃKÑ$|ê¸âõ¸A}gªfÁ­ÅÆX£\hê‰Û=³Îgí¶Ñ:ºé²;6wzSõ—g¶É¡§¥b«™QÂŽwJ¤lF¢¯ãTLTßÖk½„E!Ö+ßà I÷¬°*]=÷VFÙU¿•“".rþ#, ý8;«‹åm‹àáû¶.úGÈë·Ú¶ìSÉ=›QTÚš»e­¬¥³36zº”¦Gº1^Ä…8´d’È×7·\\§ÆɤE«dlÛ×·tL×µõjÌî÷‡W9¥Õ‹iÛ¶¥‹KgTUÖRä¾³— +•’vÒ£î!Ó¢ª¿ pÍ‹•4`åTE=Ãï´×ð%z«¦1SÐó½ÕMØ)³‡Íøí:{FîYÖÅt­¢çÙ7Ž–Ž²UÊö²žY©’HžŽUã‘É3Ós¹*"¦ÎV*é㙋 öF,Qò^ï¬x~}Dbç¦'Ú,úת;J;õxjÖ¶¢Ç´äZ(ÙPöÃaŠëÄ‹•í—3šäz9ÕʺOœHÕ×ÒLmݯM<}qmš}DO=5¯‡¥5ðí/Á•¾õL¹¬Ù‡³c‡í{£˜˜Ý1÷èeîy¬Äïí¨øÚ·¦òZw†k1²)(›E<Œ4pÓÊúDe’HÄ•ªåDvt{6ªaŽ'™³5Å‹vdÆÙÙH§¦¯râ)†7à‰š_m|ž<.Þ[Ih­›F†¢ÐžºÌ¡¤•Î¤¨H(¨%XÛ+³`ôJ§Ë›2·#Ñ#V¦„\O1M&f>³ë¢>W顶«óXÖE§Qe·=$µ•ñtÓĬŸîRgwÜâV#[21ŠªÅvgf&³‡v(Å~¿{Xž8>qÛü3‡–؉Žxú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿÖÝ;ã«Wi»ÍònÏ2ȹ*"ªàfË–Ô¯´©í+ZŽ[BVÏPÚJÕ‰Ž{clh¨ÜŽÃµöϘÃM÷™¾÷Üâ¯u;îžìRÓÚ­´øÉÝ3i[Gƒår±XÏ™Y÷«*¯L˜b©£ úßÆžó|ÖÜ+âü¶âÙ—ÉiŸRéáž•Ît³:¢W¦W£^ß¡É¡ÍTV® £E>g_-›ŸQ‹©Ö¤àbì­›OGj!u=Sëc©Š¡íªå"¶I–uÅÎ{ÑU¯ÍŠ+t`ˆ‰‚pÛª•¥8ß¿¬Õ~4¯+w=–'—nï5L•[h¥ª‰$ïñ©¬WâìWâ®{Ups×6ŽƒÜ1¦”êÕO½E'ÒòqV¼i^SXô>•¡ÁƒiÒWRÊÉV:êèí°‘QVxš­_ß[ŒLŽ §Úy‡ a§ S‹œÌÏÊúœs5ãåJ#Û/jKV×·«-†NÖVÚËVÇRæÁS#‡ŠYâjàì¯c°jå] ™0Cã/Ÿ®Å4êÛŠf'¶Ï¬Ìu·ÅÃëµ&=è»ÔwÂÉ«²ë‘Χ«‰ÐÊŒvW+^˜.N…ügÞ,:¢“í¶¬ðâÓ¶.ñðAw/MK§©J†ñ°ÅOQ3¾8ꢋïPÆè‘­ÅSèUEVª«WÙŠÌÎù¬î®úŠ‘º)×Gà½][Ý5sê›RÆZ²:¨ ©’fâØŒïšìj"5ɇ޷\ùœ5¾Ù­ú÷öì}F:S„S–ç¾ðp1w/2ȵN«ÂzVQÔ¶:—±µQFÕk¡¢G5pv…Ó‚âݸ°Æ*ñšÎêïíy‡špŠFún{mÎnåà|n—”Ç…,t2$D•ñ¦ Š¡ú£O±Ø9ÉŽ +¨{Š#ÌÏ^ÙŽ©§˜gLDGU§­÷¥àþÇ’ª¾¥­’7×ÑÅA/õj$£ÚÆƉ÷Š‰#“2~/`Å¢b~šk=Ô0ΚSémé~ÛBæX¶­ƒÌUÍ}È-(ˆÈÑ2eTÁZ­ÊÕk‘QÈäEEÄ÷¿¾úóyƒÞ[±×¬^ +l!ÕrJµ5òÕÁÉ%’Ðõ/ZuÇQ_÷±®*ªˆˆ®].UTL>g LLo¿Ö­±;¬ôØ<ÝË'L³Õ¤Ô«B¼¶wÔd¥_è^<ÿ{µ:WÅË‚`œ5‰‰Û[ï’1Rbce,üÖw÷nΧ«…Vª~SFë=_SRù_+“†;õ6}:1UTEU\ó Q1=t¬õì{©11ÕmÏ¿nðydÞ +*ix–ÏV­,ôó:)âVÇÅâÙO¬ÏU訨ä])ìûÅ尿{|oŒ3H§VÏʱx!»w’rXæNIhKjF®™ÏU©™Ždz»r9ª¨«÷ËŽ'‘§TLGf+½™­xÒ¼¬ú\Øv}ŸCeH¬úÎ_,Šª“g‘ø¹põ›Œ¯õWF'Ðyb)õ1H즟CêqÌ×ûâ~GY‹€›¯LÆêÖrZµ®¦*äâ©æsœç¬,\Q~g#Û¥®sS*)æ †”ú]‘Ùjv<Å‹Uk×~Û×µõ*x »•l´£zTqvKk$'z6:–¹“Á†˜¤ÌÔr¹«†)ÑÒŠŒŠGTÖ8NÛw½œušð¤ñêyÁÁ%߆‹“;”J®®†Ñ’i§sç–¢jÆù$].Fåkràʘ"!÷Jp™˜íšÖ|_35¯§+¤Õ\TŠj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿ×Ý+ã«Wi»ÍònÏ2È—.Lb€1@  P(ŠÅb€1@  P(ŠÅb€1@  P(ŠÅb€}_åžïàÍýÊŸ=|Ÿ]\ß?>Ÿ&(ŠÅb€1@  P(ŠÅb€1@  P(ŠÅb€1@  P(ï•ŒPíÉþÒyžÈ}MŸƒ=|˜  P(ŠÅb€1@  P(ŠÅb€1@  P(ŠÅb€1@ º±~çOüý­Ç˜zû~GÔ¿(zù1@  P(ŠÅb€1@  P(ŠÅb€1@  P(ŠÅb€1@%{•«¿»ÜC~Jrìí¦ ?ÿÐÝ{×2Á@®DEõ›÷ÈŠ>Å6ÊŠË'“4{W餫‚¾O–7¢9c‘Ír/ÒŽLQSñ¡ëǼLÕ0Ó¹‘íjÈìŒG*"¹Ø*àÜzWUÁ4àŠ¿@z÷€>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÒÝ;ã«Wi»ÍònÏ2ȹ*«ðépè¬û +Ý­¦²9lÖ›VJªéä¡d1µ©,,rqª‘5«##…QÙñwÒa™ïctV³‹®6Ç·QƒßNù¥#TìŸn+1cÍEŸM$RñÌt1¹²/ïíV"£ÿ»“Öý²œwžÔØm…o% -êáNγ­c¨¥¤²'®Š)šg}K!ãŽEkœÆ"£qEË™U0U2ÃÅŠwFŽs3>Š6ų q™¯(Šzjù6­$|ÔRØb©´Ï·-‰3`Øäey:Ï3a‡ïZ®F"±õQÒ9ø*`‡‘xóßÍxFÚwÏ({=x§êcœì¯t>Rp…z–¥.ºÖ1-¶Ýfòô˜òvÒ%oÄþ§ÇdT¼Íëåúœ8õÌE¾~󻶱ٵî,k7Ù‚Ÿz¯¢“à뻄‰nÇ&}䟔-x’'OH×ÔG%,Ðá4qÎI<¬Lü1ÀÏe4âŸÀ±Û1-y=èë¢?ÎÝÓ‹ou%aø)µíKËv©­kBx¥}zr¸Û +&Hb—Lp£“ïÕÐ÷®•~n„DBºiÙ;g®z·ìá»}ØLÖÝÝ›;÷¤SÇ€E5{¿ƒ7÷*|õò}õs|ãéðûåþ9C·'ûIóžÈ}ÍŸ€ú|~êÏÔéÿ¯îÜ|Ç_oÈû—á>Ÿ½ËÕßÝî!ο%YvvÓ€ÿÓÝ;ã«Wi»ÍònÏ2ȹ*¼\Z–­E©»5%®¹«)¸†Jì]G''™Ê‹ÄDrez"âæàªg8+fÕ³YŠî–±Ž“X½/Ùi¦ô•A`ÔYuÑ,*ÚhÙK&Fà×1É–^3ï•r"3/GïÝ&³5¬Ï_­¢8:ýô¸µW‚ºŽÕ³+ÖÏ´hÛ$l›‰lì|Råϱ9[™ª­kš¨æ¹®LQtª/ƵԕÙZø>¢vRwÖ;léÍàE±Yí|vœœîÛAm^q|Lr­K£âŒ8£8•‹îI*`ÔEÍ™1<ÓJSe+ƺ¯^ß’ê­k×NTµ=·¼ÛÀ»ÙAÆ%¨þwçµyÁab§(Xø•N#¼O÷./69Q6m'š)JuWu^½¾ u­zéö6öã/ßdðDÚ'RTÕ×:ª®;Umz‰“MÄ:µ¬ETŒjµˆ®TF&•UU=Â"”êÕÎqFÙy‹¨˜ß§» Ö¦â\hî +i©fWQÍU%L+pJ~7Ö’6.:cWæ{SÉ™Z˜¦ÖÓ«NΨåèyŠuMwß·7{=|€}Õîþ ßÜ©ó×É÷ÕÍó§Àï—øåÜŸí'Ì^{!÷6~éðû«?S§þ¿»qó}¿#î_„ú|J÷/Ww¸‡:ü•eÙÛLÿÔÝ;ã«Wi»ÍònÏ2ȹ(ÑM^ïàÍýÊŸ=|Ÿ}\ß8ú|~ùŽPíÉþÒ|Åç²sgà>Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÕÝ‹×## Us険U7e]ñŽÈÕÓöfwŸâ[IÞž¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Áû’ªDåäíÃŒDÃ3°Ç*ééÄø¦Ûõ>«±øy]?fgyþ'Ý'{æ¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Àåtý™çøŠNò¼WOÙ™Þˆ¤ï+Áûdªƒ’F¼¸+ߣ3´tiéúO˜‰­÷>¦v?+§ìÌï?Äú¤ï|×Êéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx?eUT 8ÓµqfYÚ=eÑÒ|ÄNݽo©—ãåtý™çøŸTïšð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯—tdd´8±ˆÄÎíª»È³®ß Å ÿÖÝ;ã«Wi»ÍònÏ2ȹ(áˆ.€@"â®è覯wðfþåOž¾O¾®oœ}>?|¿Ç(väÿi>bóÙ¹³ðO€ÝYú?ð5ýÛ˜ëíùrü'ÓàW¹z»û½Ä9×ä«.ÎÚ`Ðÿ×Ý;ã«Wi»ÍònÏ2ȹ*§ðõiUÞÆÉIG+££±ë,éjŸ•¼mSêáâ©ñN–FÇq²§ÒçFÕúPÊ6âÃ=Q G®Þëvö4˜¦Q×81O*M;ý«i.‡»ó©«5j½W•÷s…ÊWò:ÚƾÀ•2QD’«W–·ÖsUìDO£+ôàšbÅÙƒûslQ\1Û‹ÑâÀáen­%³29´3Zwª¦–'ZsYNœš9é˜Ç㡬\¬k“3œÝ(˜Ÿ8qSß9“Ê1OSÜXk3;£ŒGÛHV võã»ÕRÒËf,ô–Ÿ –ÐsœÚ'‹I9SX÷µîÅŒâ‘ë÷\S6§ÖªÄM«Z×…mÛÔùÓIž»SŸ—[âYÜ!Up‡gX•>ÉMz’…f¥G¶’åÂV5ê®F¹Zª©Š. +©õ—:±añ™ß1GÈøÌ1Š>éã‹ £‰d½±ÝʧÍYOS2_h£8¹bj=*ð\ê²=V-)ƒ†TELWdV˜7×öÿoÙ´®>Ì?Û—ƒÛÕnZ–µcÛ<™õ6dÐ7Ž¥cãŽVTB’µx·¹ê×7KWÖT] £ ÛØ®é˜îˆšø±Å²{b'¾f>G^·/­ðµmË^ŠíCFöØ̧㣪I3ÕM38Þ&'µíl83]èôW»¡Š|F)šÏTb¥:æÓ>—ÜሤuÌV½]q‡WáW† ÁÁìµ[:š–Ÿ’䤨sŸWYÆ«R^-c~¤jåkUìr=Írª£p=ÕI¤ühŽ4™ˆ¯·ky™áX¬ÓÂîÑ5ÿ¼M½6üY)c²l6C4Ïs^ê‰[%¬QTTû÷c££zTùœzcÍ°Î(îˆó}F Zb/Š"{æcäun øm¬½võŸESWfÕ²Ó¥–¥Œ³ÒU’‘ѵ²$S¹îs^Žc•3¢3×j¦\ 0홋Ò+Xµâ&½bß;R(c²ì(i`«´-Û^’¡%’(㥑ï–g1Ž{Ýê¢1Ö£Š`‰†N*Æž÷ïÙ©é˜ñk›œS;}öç8kè‡N±øK´î=-ªÊéh©k«ï=U:ȴ䥎GK—2=Z­g©d\ÎDW`Š«¶¯{†-^’vðÇ‹g“=;qMé¢6l¾ö—ݦáÆò[6u 6ch*ke·c¾tIR’FòwÎÚˆÓ~\¹™‹½dsßJy8´Óecؽ¤EkÕ§Å&×­]à½Ö-•U*=öe;­JÅ…®dn™È°S¢5UU®YdFªª¦DUU>£n)ž¬1³·ª'½äìÃÛ>ë§rf=|覯wðfþåOž¾O¾®oœ}>?|¿Ç(väÿi>bóÙ¹³ðO€ÝYú?ð5ýÛ˜ëíùrü'ÓàW¹z»û½Ä9×ä«.ÎÚ`ÐÿÐÝ;ã«Wi»ÍònÏ2ȹ*á/ìw¹÷þš¥éfR2¶¦xf’¡ìr«²LÇÉ›LUìj³ÆgÑÅc†(™ï¬÷µ×4ž8f#º‘Ü—)h+èm&²@Ë2:VÇ(Åã+]‚*;8´£pÇ6œp5­k^¶tˆˆ£¯Ésg}ùŽðñ­â™f>ƒ‹ÁsfuBMŸŒ0L0éÄùÙñ‡Â¾o©ÅXˆÝ3ãäŽê8´¡–¦º–ªŸ–¶Þ’Ú¥ãXõ‹ H È‹›37¬ß½\ªˆ¸*/ÄaÓKƾqŠf|ŸSŠµã§¿ CÊÕà¾ôÚPÖÏ_KQhRÚ´¸™ã“åt+ `kQs£cEÎÇ®.ã39Q1ÐÓI‰ëWú¯.®¨šÆý6áçÖñ»œÛÔ-}m4ÏôƒŸÑFöb‰Í|YUW ®\¸®-O[Iõ—‡FŸ©×öQ>oœÉ×^1ƒìf<‡pGl½µ«UMÉÖðÅnDälœfT™%’'§Þã£9½?Jeaѧêgtêÿ$÷3ªýTG†Ÿ$“w®ŒÖ-å·mgÊ×2Óu#˜ÄEÅœD# ãªqWeíŽtäûœVž¸Špë§uyºeóà>òÚéx©¬Úú&AmºžWMU’TÆ°G$sU±=cEUéfgàÕUÄNáðõxÄÓÀŒQö:|&+â•ìû€÷V^)k¤c£¶™NÇ24TÈŒ¤äò&+ÓŠâ­ö&é°jŒQñ±bžø'˜qéÓ?";¦gå|»‰som‹=mkFšJk:•iae$oÕ ƒZÙªs*¦f±¨c=\ÊçcЉ¬LÌÌÍæ-ß3ÏÁñHˆˆ‹DóìñuÞé­©¸@ºrY.…³ÅªïãC^°¹8¨‘XõÖn8⊚qN…Ò|EuM>$ýû îi§oÇF'è»|ÖصVEdÕqËQOhÚcšÇ5²K]˜­‰UZÆbÔLʪ­n+¥O0áÓ1Ã(çŠbkßS-Uã‹ òˆ˜£Ñy¸%·m9-š +*Úh¬«rvTU¤‘ȵªµŒ°ª*1RfÆÔÅéŒj®TÍŠaó:¦Ú«Æú©ÞöqõõÒœ-J÷;-w/¨áŠñÅ3M >Yiò®gÏ_#º²5QtýîÞ¦)Å¿Ó;&yÄCâgÞÆÞˆÛ.ºÞ í›)´Õ–uU7.¤µm +øøöH°¾åvxdȹÑrª*=¸à榅E3ÁƒFñ‡ì™¯É 1âÕ^3Î"žoKÀíᤉÕܾ–KQ–ܶÌn|OJuã Hd§{QUè̸£^Š®LìqCX1êŒq5ëŒS3?'sãáV½zf)Õ8b#äv6pmn×IdUZ6„sTRÚï´æF5ÉXè$…°S¢ékEEv—.e\1Á˜á¢xÎ//A3Xž3‡ÃÍÞ®ÅÙ¨±í+^¾ªfË-}K^ܨ©ÅÁmŽ(´ôªzÎrô+ž¸ 1H¦ù™ž~¨‡˜¦³Ù/¦]Ìõò¢š½ßÁ›û•>zù>ú¹¾qôøýòÿ¡Û“ý¤ù‹Ïd>æÏÀ}>?ugêtÿÀ×÷n>c¯·ä}ËðŸO€ ^åêïî÷ç_’¬»;iƒ@ÿÑÝ;ã«Wi»ÍònÏ2ȹ(ÑM^ïàÍýÊŸ=|Ÿ}\ß8ú|~ùŽPíÉþÒ|Åç²sgà>Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÒÝ;ã«Wi»ÍònÏ2ȹ*·ÜÎmº¾oƒidZ&L±YÏkQªÙ ¦Ši¡zþü®l©#tàקÐ|ašÄÖþúc²&žNö¸¢“©íšÏÉ.ÃÁ ï½–=ƒ¢å}£hÐMZ®c±«a™#wBú«‹›‚a§Jâ}DÖŸtÁŠ~õoœXi3÷lQ§ÉúßÄè,·ÁM[PûUÕM¥†ò9i_’\S2#Q>û3••US¡~pãÕJuáŒ\¦ždá¥kÕ3öù>”.Y56£h™MV±º¹lԪⓓò¦·‡6lØ¢¢·6L™ý\ØžáÅYˆßZq¥kèžâpÓ•+´§¦tÜ,Ù56ŒÉOVTU¾†ÇD‰M%Dy±¯Í›J±Ík•ˆÇ=ªÔr¨Ã‹U8ÄÌq§·q‹ 9R¼*“ϧÀE5{¿ƒ7÷*|õò}õs|ãéðûåþ9C·'ûIóžÈ}ÍŸ€ú|~êÏÔéÿ¯îÜ|Ç_oÈû—á>Ÿ½ËÕßÝî!ο%YvvÓ€ÿÓÝ;ã«Wi»ÍònÏ2ȹ*«W\Kjµ/}]53Û[ µ©f+Ó*Jèh n _¥’¢I¾+ì3ų L^'Ó|LÒcœ[“x¤â§TáÃÝ1Y‰å.·Á»q¨îU©[c×9"±êèª ‚2h&šxåcdf(¨ÕF¹ªÿ½jᎸƒ=¹x";pú.ù™Õ˜ñÏ)ûNËÁEÖ¶ì×Ý'ÖÐË©à·tr~¤éêèÚåèÅÉŽUèr&(2cM+úU‚9ÄáÙàó2k3ø2g”Æ/7Ô¶Í óã,Ë.гêäµsU«1}—UG­Põr«[Pæ"~¦—L¸©î]âñûTwÛ¶i;8ÔÌ´Ú»)=}WìÛÔu;Á¢Xö•ŸfTXöœµTv¤µ2TÏUR–{aI¥š:ˆ‘%â*£ÚÖÓÕ~er"&+ó“týLm®ø‰›ëá¬ÙÕ«ê§e7LÄíìñ•Õ5d€>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÔÝ;ã«Wi»ÍònÏ2ȹ(ÑM^ïàÍýÊŸ=|Ÿ}\ß8ú|~ùŽPíÉþÒ|Åç²sgà>Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÕÝ‹×## Us険U>ŸÄm•wÆ;#WOÙ™Þ‰m'zzð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯ïJ¨9—“·5 ÎéʺzOŠMoÔú®ÎoÁÊéû3;Ïñ>é;ß5àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^+§ìÌï?ÄRw•àrº~ÌÎóüE'y^Û%T’%äíÃ;ôfvŒ0üIóI­÷>¦v?+§ìÌï?Äú¤ï|×Êéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx®Ÿ³3¼ÿIÞWÊéû3;Ïñåx?eUT 8ÓµqfYÚ=eÑÒ|ÄNݽo©—ãåtý™çøŸTïšð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯•ÓöfwŸâ);Êð9]?fgyþ"“¼¯—tdd´µˆÄÎíª»È³®ß Å ÿÖÝ;ã«Wi»ÍònÏ2ȹ)Š'Ò€žp9DÄ>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿ×Ý;ã«Wi»ÍònÏ2ȹ*šß;©o è¼VÝÓm«KNúwÇ,³äzSSÒ³ŒZhô£ò»;œŠ¬Ì©‚*©†Ì3?k<6DOfÅqLD|XˆŽ;|VöÍ«§´(ਧ\b–6IûXö£š¿Bœ['jhWÛùnÔ]Îf®‹ÖZ[©]RÖ9W*º*¦¹1LôàKs»N%x0kŒ1¿/¾ÃõY÷ÖüMSg7ÄûFǞѤt,™ÜžH’…#š‹Œe<Ü­ÍnEG¹ê×1qEs\æ®…éÅc¬}î0÷Óo‰8iõ³‹º»<ž/EôŽï_ ²j&UÒY ®Š¢–9šÞ*n5Zé3$X×$¨äEÅZ˜`e]3õ8°Äñ‰ÛÉ®M5aú¨švǦës™h2áKBXå¨â#W¾&9Œ\ZŠ˜5Îr¦Œ1ÅWÅ~’ÌwžÔxlì‡Ãè>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÐÝ;ã«Wi»ÍònÏ2ȹ* ½WûZ«lPQÚ”ÜÝkbŠê–JêŠ6ÉE3)Ñ«‘ír"¹ˆü¹å_Y4Î Q¦mYí¤ÍiòWsl8ôÍbû;+i.ʲ­ ª +h_YQG#V»ŽãcTj9]Ž\œZ"a†9´ã¬Ífg}¼jÆ”ˆñtkíÁ­]é¶ê«âž66k +®ÉF¹ª’O"=$\?}DL:L1åêŒQñ£ wLù¨Á™§O S=ñò>£®-JÚv]_Ì´VMMžäÁqsæl(OÉN)qEÓ¥ 3#\⟆ž5a—ïc |\Q>t«3‚«zëY—bK.ª•Ö…‡G% Ò¡²ry╬G¦,õبèØö. ЭTÓŠ{315‹5áJO|>ë3볺_¦ëp=Uwkì:ÇÕÇ,´rÚ•UnF¹¼löŽ +å1\¬jèDrªåDúq<ÇLÆèÁ8{æ1WÒó-QŸº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÒÝ{Ö±¥ñˆª™›÷ªˆ½?l«¾1Ùf ÷%ï·Ê[·‡r}†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãc÷5Ô|‰Þ¬™xÔýù¸ã•ñ¶¼Ÿ[(ü9¨=É{íòŸ{xw>v¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;Û#¨¹$^¤˜g~²cŽŒ~ƒçm{Ÿ[(üY¨=É{íòŸ[xw>v¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;†jr^û|£oãašƒÜ—¾ß(ÛøØf ÷%ï·Ê6ðî6¨=É{íò¼;ÙTê..Y'ÞhÁÍè̽:˜®Þß‘ìÑøóP{’÷Ûå>¶ðîy°ÍAîKßo”máÜl3P{’÷Ûåxw Ôä½öùFÞÆÃ5¹/}¾Q·‡q°ÍAîKßo”máÜl3P{’÷Ûåxw Ôä½öùFÞÆÃ5¹/}¾Q·‡q°ÍAîKßo”máÜl3P{’÷Ûåxw Ôä½öùFÞÆÃ5¹/}¾Q·‡q°ÍAîKßo”máÜl3P{’÷Ûåxw Ôä½öùFÞÆÃ5¹/}¾Q·‡q°ÍAîKßo”máÜl3P{’÷Ûåxw Ôä½öùFÞÆÃ5¹/}¾Q·‡q°ÍAîKßo”máÜl3P{’÷Ûåxw Ôä½öùFÞÆÃ5¹/}¾Q·‡q°ÍAîKßo”máÜlI—EbZ¹£‘¹Ý÷ÊŠ¿É`Gu,í°ÿÓÝ;ã«Wi»ÍònÏ2ȹ+”EPõÀxç‚ÀôSW»ø3r§Ï_'ßW7Î>Ÿ¾_ã”;r´Ÿ1yì‡ÜÙø§Àî¬ýNŸøþíÇÌuöü¹~éð+ܽ]ýÞâëòU—gm0hÿÔÝ;ã«Wi»ÍònÏ2ȹ2’ÞÛêÛfÚ¼ÒÖÚÅ3,š¤¥§šÌdŽ§ lpÆçTÕ±Š“;ު潉qÊÖúÆ8f±ª·Å1^¨¦-4çòÃi´§ÒÄÓ®k¯.®ÅС—Ž¦‰üceÍÆ7C_‹Qs&î”üJoŠì!T¸b¼v­ÛáNîUÅ[4T4ÔŠúÈ#’#¨¬e*¾Fc•V5‘®G*bˆ‹Ž ž’Sñj¤÷ÄC|TèøÖgº0Ö;¦_¢Ú¼vœü7ÙÍmt¬³©`«£–½É æm'*‘ïbhs£GFˆªŠ­Óõ—Š=ôÍ´ÏØÎøÌÇ'Î8Ù†#|}–ªzªípé%³]f-E1ÐÛ ÔÃTÙ§^*7J‰<ÔâÖHÚ®fW?õ]‚©æº_déœ[öFَݤàÝñ£ õm™§vDzéðÓi[¶jÛ56FK2ZŠø'¥Ÿ”=fXjŒjE;›¥­Ez#‘ÍUECÙŧ Ìõa‰Ù5­zªh¬ÄFùŽî}‘ã‰Sm[\pQ6–ŒQÔ¥Lr1ë‚BçäcY>*ÜQ1fÇ6…=Å:k[ÄÄ_dÖižÛ¾pÆ©ŠZkÛÛnÇͬáÆа)-„µlúfUÐY«jÅ%bT²XQùÇ=Õd¬väÁZ¸¢µU'"~¦pÖŸU4‰ð—±†³UMû"¿+ê~öZ»{A—ŠÍmi¬·[¬ñêúv;#˜ôV3$ÈåjeLÌ\ß} ÷-Š·Ã1²:ë3ãy‡ªRØ«á>‡ªÍá†Ö¡µGxl¨èë*¢×ã"¨YÑ!…Yê;3 Q¹‘1n(˜9Qt|âÇ£V¯¥ˆ™§£ë T§ÓM#º¯]“ÃM|’«->ž>ͨ´¨øŠÖÔ+›NƽÑNˆÖñrå{]êçf¦8·O˜ó4F*ß[-JÒý¦¦)lSN;íØ‘88½6½ô±¡´ëìöв¦8¦‚>;Œ‘c’6»ˆÇb«ƒQ]êસ≾,:vMØÄÕßO— ú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿÕÝ;ã«Wi»ÍònÏ2ȹ*·Z×öÙ3^ªK"š–z{Äõ™³Í7´ÒKLÚi¸Èò9ej#ìȨª«•pM&8°jÃ8:¦qmáŠk<ïFøqÆQ®"6qÃn[Ó ƒCiX2RYŒŽ7YôÔÄÙÕëƬÑáU 2+6lqÍ£¤¢f³3ÝâÂ"‘(úÿpcS}¯ÓÈŒä“X5Vjª»ÖI¤¨d±ª& ËŽlt*&‚|X&uqŒ4íÃ3*0ã¤G S^Ɉ‡X»\ÛíšïUÚ‰(c­iíEŠErqµðqIÅ*¢gDDkq\0D5˜¬LoÁ1Ï(Å?+šrņya‰ˆ~n8*·®’YT- ³(™eÁ5)^ι˜íUåZÓµê»üßH­6Ú-‚ŠÉ®mUUE4ˆøkêäj$3¾¬kZÖ9EW"Éë+1T<ˆ˜‰¦Êá—ŠÖ6üœÞÖ+ÛLW´Ów¶çÏ^í«ÇMkÅ% %ŒÊû-)¥‚žn: +ŠÔ‘²%K£kXÈ؊ܺ;ÚõÌžª ÃXšG^ˆê3_‘âò1mŠÏV(™µâž}[Oƒ[Ãx¬;vÙe’êË3‘Ã*Ĺçs³>WÌȘ­B68ôèÅÎÓ‚âŠÄõVpÒ8Dלùqy‚i1Â&³Û}^87žñKhÔÕO=îÍE$ʪåŽE•²çV"b¬j1UÊš~Œtü9µtÌOf)½ð÷'f˜ÝZóÃé[hp­zà¡®JXã–êÕÓ=Ôu-ªoñ¥ñ1³+šÖ£[& +±±Þº£]‰žf–qõWìS4öê}eãèã]1LýŒG·s»¼^RI¶E•gqvDô*êTϪ¨’4²glLtQ"&*ÕUr¹ëŽ(ÔÇÜÜ3Ž1ujÃHŽ7¾‡Î Œ3‡®“ZðöºyºVlö5…gÑχOK/ʸ¦hãk]‚ý)Š. +U™:¦g|§Ë1ìo°}Õîþ ßÜ©ó×É÷ÕÍó§Àï—øåÜŸí'Ì^{!÷6~éðû«?S§þ¿»qó}¿#î_„ú|J÷/Ww¸‡:ü•eÙÛLÿÖÝ;ã«Wi»ÍònÏ2ȹ(…Dr`½ +¾]—`Yv=(i ¦ã3øˆ™eö»"&+øÔFÂv¾¨x>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿ×Ý{ØŒuž¹Ü­LÍÒ‰ÓìÅ ²®øÇd]ÅRu®ù¤[Yö”ôƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤?sc¦äNN5Øq­Ó“éʺ0Íü™ó¶¼·½ê~*“­wËý#ê³í/)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH~Ù#¥Z8‘evß‚äüß”|ÖkÝÖúê~.*“­wËý#ê³í/šAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR¶ª*UŽ ewÞhõ?)(ù‰½»ø=˜‡ââ©:×|¿Ò>«>ÒòqTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”ƒŠ¤ë]òÿHV}¤¤U'Zï—úB³í% â©:×|¿ÒŸi)IÖ»åþ¬ûIH8ªNµß/ô…gÚJAÅRu®ù¤+>ÒR*“­wËý!Yö’qTk¾_é +Ï´”„›th=G+“;´ªaü–*G~MðYÚLÿÐÝ;ã«Wi»ÍònÏ2ȹ(ÑM^ïàÍýÊŸ=|Ÿ}\ß8ú|~ùŽPíÉþÒ|Åç²sgà>Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÑÝ;ã«Wi»ÍònÏ2ȹ* áNªó]øR[2Û‘•5Ó²–†“’R½‹4‰£3ÜÅzÆÄGK#•qF5Q>ƒ9­b"vÌîê¼Ï(k¥gª7õõw¦º8憞6Nô’F±¨÷µ¹QÎDDs‘¿B*⨟Bh5–P®Ü$ð™x. WvÌñsUL*êæº4Wã-BSÂö¿Z{šŽN…ÄË)œzz©óY¾¶œ1¢½uðŠWÓW赸G·ãázÏ»Ôî‰,µ¦µ(±¢Èê”j•øâÔc2æjtçLOpâ®®f±¦³öVyŠ)§ŒÅ{&´ôKë]î©–ʱ[+*íÛN–j˜›IJt­‚Dk×"È ÍÐç`¾ÜUQ‹ï¸qr˜¾§ÌáûôÇu|œ-ØõV}›UE]cí&Èêzjxq¨T‡D¹˜÷1ůªüÎLƒST=™çX®ÍÓM¾$aåI¦Ýûvx;Õ¼ÔÎË‚Ò s ÈìíV=®k•ŽcÚºZö¹®jô*S¿|V;.ùáºhèö ÷nÒšÁ†5›5ºéÙKš<2ºŸzKëz‹™ªÆýö.Ð#ßM>§W*W¿ÊL^ö+=X´ó­;Ÿ‘œ7XUpÓ:Šš¶²ZžT±AM>UŽ’UŠY•ªö¢G0j«±zª#Z« Ï_^߃­h›4œšl½9½’ðÛwVk&*8êëŸkS¾ª•´,Šèã{Y"»7"±]ëçÁƒ“Q~ëï´ð‰áIÙø¦Êñ˜ãXê~;§Â’MPÚ¦««µí + +h©ãEwM3›éŠ#Y8ÉzUr¢/Î Z©¾bgºf+áÚúdž•Ýß4}Ú~슛R&ÃV‘TU>†Ň +Y*››&lqÅ®j9ZŒsš­G*žáŪœkN4y‹ +Âü=ªýW+„«6ÿOUŸWK$°>iaÉ «ãk•Ë™È©Ž„Ã*¦*‹ê£-Q^©1aÓ4ÜϧÀE5{¿ƒ7÷*|õò}õs|ãéðûåþ9C·'ûIóžÈ}ÍŸ€ú|~êÏÔéÿ¯îÜ|Ç_oÈû—á>Ÿ½ËÕßÝî!ο%YvvÓ€ÿÒÝ;ã«Wi»ÍònÏ2ȹ*"«²m c„ÊZ™¢zPÙ¶\Ž…êÕÈꪩ²?èW²ð_¥OÆ|ḧ†1θ§ÑûÅ;"8ÌÏ(¤ze ¥´þy[;’O—“òŽS—îñ™8¬Øþ©ûþ\>÷N'Ôm¯ +x×Éó1O ½®¾·ªfG œSîåL1Î\­©mdsBÜÝñb9§ÄÂbbqL^#Çn™Q†b‘ñ±W²pÄ>λ¶õu¹v-êÚ +ˆj+j-ŠêÖÈÅÆg¥lPÇ'º¹XÖµéÐk¦‘1yx¾»,8©ÛÕÉ”Mi^¬x{°ÄÇ·kìp?v­{"ªçºª’hR–Ư†e‘ŠÞ.GÕBæ±øô9ÈŠ¨‹Òˆ¾Ãܽ‘û·—âïœ{gïxç”ÕÐ"¸•´4÷vÑ´è-GSÒ¥±O×}ÎÚÒŸDÅ;wLL,—öÝ{¯MN´+@çI<ëNé¤ìY¥sþé$Ž{–G"£¤õ•ꨚÚ6DFè´ÊvÌÎù•m´.-·cºñOMgTH륵vR1Š«:ËVµ²6{ Ëáôè#¦,8v_ Ò8áQÝL~ +¦c-¶˜¬öûß{âîÖ-…_Á-§aZkgUUÓ2ÁK:fѳMOÚœ]*;,ŽWµÏM r&lq*Å:fbû0ÄSêkñaª"~«ÏÞ©/î¹t­›¹Ë©œÅŽÊ´Öuo¬Èeª®eCaW¦ŒÈÕTÁ:r®ùÁ‡LÓv^¯Ubf¯¬xµEwãÇ4á1»tn%½ÁýàuðŠ*ʇMk×ÒUÒ9ªåmEZº9©£DÇÕ“ ž©ŠÉÒŒn8tÒ>4LO ÕŠpòêžÚ¾³gUxLLq÷±Ïwe›ÁºØ6™eTYV¤õTV¬•2TÏUT–{aIå–:˜‘%â_"£š…Š=\®j"b¬Œ4Óõ1¶»é8vo¯„øµêú©ÙMÕ‰Ûº”OÜYu–=Ü|5p¾¾Ñ“,ʹd­•ìv ô9ªŽEúQQM0E0áØažfÜX§|ü”ϧÀE5{¿ƒ7÷*|õò}õs|ãéðûåþ9C·'ûIóžÈ}ÍŸ€ú|~êÏÔéÿ¯îÜ|Ç_oÈû—á>Ÿ½ËÕßÝî!ο%YvvÓ€ÿÓÝ;ã«Wi»ÍònÏ2ȹ(ÑM^ïàÍýÊŸ=|Ÿ}\ß8ú|~ùŽPíÉþÒ|Åç²sgà>Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÔÝ{ÙK@¨®FúÍÒìpéüX›eNÖx싹;D_[Ê[«„§¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”~ô¥g"sxèÿUjãëa÷«££¤ø®ÞOªl~DÎÑÖòŸz¸Kæ‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®Qû¤¤g$‰8èô=ú}l>Ä|êÛmÏ©ÃÈ™Ú"úÞSëW |ÐäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ?eU+?v0fsiõ—£Aó†o³¯ä}L?"gh‹ëyO­\%óC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (r&vˆ¾·”já%DÎÑÖò\$¡È™Ú"úÞQ«„”9;D_[Ê5p’‡"gh‹ëyF®PäLí}o(ÕÂJ‰¢/­å¸IC‘3´Eõ¼£W (“nŒiäw®í-Çäð#Ϊ0YÚLÿÕÝ;ã«Wi»ÍònÏ2ȹ(ÑM^ïàÍýÊŸ=|Ÿ}\ß8ú|~ùŽPíÉþÒ|Åç²sgà>Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÖÝ;ã«Wi»ÍònÏ2ȹ*·ß.¯•=娠‚‰).êB³ÇR²$Õ9âlÎâœÕFÆ™]–5s_žDTÁË]"½Q‹M:ú¼öCm˜Ž¹Ã^~[V"’¡+ Ždjµ$c^ˆí +™‘üiŽ øÍñE&›˜DÖ]ûáfÔ¹ü"]û”о‚щΩ™Êä’'º^&¸z¹\õF»>²`c‡qéáã¶~FÓƒÞjãá³Íïµ8T´é¸T³®œÑ:ŠjYdžw+¸ÆΑºXãb"åÃ#qv:}dÀûÁ:§ñ÷µåï¡óŽ)¾gÃm=îVO +·bðÕºŽ‚±%™Y3âEŽF²^#DœTŽj2Tbèwçaù‰Ç²f:¢¼·ö=ÓI¤ï§=Ý®­ÁG –7–e“ÆÌØëëéÖ^)±ÊØÜö&2²ÔdŠÏßš×9ɧ…>âkmÑ> ¦<:fxLÇŒù=6O +5µÕÖ ?ñ–VZPZ²É,âpƒIgUÛ hÕSEMgEI#•8Ìñññæ^3ʹ—#̫Щ™QÍ+ßñÚùˆ­8ᯧÃc°Ý›çcߟL¯u3Ò9£’9"’79¨æ£ã•¬{s5QÍUL4¦'±·Û­å(íàú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿ×Ý;ã«Wi»ÍònÏ2ȹ2Œð‘fXu6µç}঩’ÛW¢XNŽ)œå°1i’•cE\Ùó,¼f8.—`Ì æÞ÷áêŸO½åKóQ·ß| +G¯mÉm¬+ÅŒô¶Er¿œ’‚©ðc¸¼tFü‰“7ª‹ŽpÀ«Ùšu|µòMHŠõüˆ†;­Uzï„S£’D»UÁ""àÙொx“ŒÙ˜š:p%™œ3‹_ `˜å3>…8b' DÚqb‰ç†!Ôì*zëÛm]ûy#–9­É-Ú¤ãæ¬L}`§kñOS±0EÃJšèÙ1yxçž,XgÑFqŠÓ=XðG,15ñ«ÎæU%µIr,:jy™[`2e´ZèdbR¤tRÀæ¹îj5Vg¹2dWgO[ Ï2zO}Œ¼QÎpÄDvÅ<XcLRo8ð÷F)š½<ÛÛÖ'–%,²¶Í••UL|3“Å<ÌW=Îj7 VFµ˜*«óth\>ðûìXgª0Myàˆˆïô<ÍŠF(ßgc­{Ÿ®áÑTG5ÍÍÓ%%åGbÇ&\Òú¸èÑÑOÐg?÷#ê'ß~ïy¾twÖƆù÷bÚ©Z*6Y´¶…rÈÉQ%HðH)}V.(ùžf®£«÷ÇÜb‰˜¯ÒÆûÕ"×í£âpÌDýTâŽUš÷Û²¯Ÿ~ìØ嶯e5uu®·M-žØÑ–„RRÇVÈúyr9®j£ó9‰pv Òy¦¾ök]s³¶bk]Û6ö>ëJb‹i¿evyv¬´ ¾7·9¸Éf1äûäe Sï°LØ.8ªhǃL]_ƒ1z0²Çô¿t¿bz¸C´á¹÷ηí{,ø©«©$™±¾FÁ,Ë Ø÷£ç5‘º4vc‚.Ÿ:qÌͧ#¶1VžÛŸ_ D^1W–™nÔWu¬Úèën•Kà–(ê­ûrº6>75ÑÁSî‹;U1fd\Ø; 3aÓ ûËŠi‹S/SiÝ/1Mcïǃ"•ðIÿd-\t›<‘:fGmÙOsÜÎTmJ*àÔÒª8&•ÃF‘ZbÃ?Uý·×”®_uùa ßwÉ|ý+¼V\sTP:K#"‘nCR’ÔIÔ{Ò69U¥Z¨˜à|Dé¤Íº\3Ê0ÄW³í´»:úŠj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÐÝ;ã«Wi»ÍònÏ2ȹ+É榪¸ÅpÀ<1\0Er®8¯H«•SP +÷90UPðÌ«ô‡®RG§B¯Ä3*"¦ pªª9k•«Š.ëŒWNž:Ýæ»—ª*hêö¥5]=c2*'Ý)߈ºÕÇ¥>”úE¦'w”ÇÊuLoŠxÄüŽÊ¯r®*«ˆ{—N*^å\UT?|¿Ç(väÿi>bóÙ¹³ðO€ÝYú?ð5ýÛ˜ëíùrü'ÓàW¹z»û½Ä9×ä«.ÎÚ`ÐÿÑÝ;ã«Wi»ÍònÏ2ȹ+ŸýaëÇœ~€çØžÞ€=5²–'ÊõÁ¬j¹3SþIœX´Ågª+Ü÷SMòùwrߢ½V]-§DåtQ6hÕSV½1LSè\> ú|¾È>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÒÝ;ã«Wi»ÍònÏ2ȹ2Ÿ[¶U%™zç·k"å´ëmÓÄËJ’¡Í© —âJ9b~‡S«×¤K¥²*¹˜úÆy{&8âÅI߶b“ÙmÛ!¦=±<0Åcu¦±é~ÊÙÒ+¥hfz"­òâÓ}<íåM=8iÃÙô`|å~u}ÛåÌ|æ}?ݶàG÷–Æ ‚ľ׎';lûÇ'%ìð*KM–(Ó²gr=¸`üËŽ:0÷½Œg];ó&&;)ÔÓÙÅm5û +×¾<ÛÏw¬©è¸G·^®m£gZ«%,É#‘ôÒ6ž™ÌH°\Æ9r¹0û¢.UÅ4ϼÃX¿I1ˤˆ§e%÷úi6èãï“5ï‡Ù¾40[v}ú¼†fZvDñ²†d{šúTŽ– aH‘©,vmuÌ­\Q0OqN˜Õé&;±ÆŽÊuq«ç¾˜‰¶ˆžü33=µëàîöEɲ/Uç¾uÖ­2THÎMc•UÑÇžÌg•˜åÅØårªb¨ˆ¹Ø"0cí̧(ÃO7ÎV)œX+»{fgí;ßØ÷bÐX|XL£§d ’Šœ‘·*9ïb+ž¾Õ_¥~’‰ù#Ñ |çÓ)”ðú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿÓÝ;ã«Wi»ÍònÏ2ȹ+£MÁÕ¨¶גΉÕk#fY>™™["³7²5­W& §AäE-íWÔâ«ÓQÁ]Ѭ´d´e³auD“2¡Ï\úeb¢¶\¹²$ˆ­O]Ž\0UTÐ0Ʊ¾¦)Õ²wQÔ®¿6U©hÚv¥$3Ú³×ÀôWª5®ÉÅgf(ÇHÅETW5Ù4eqîŒ1â¾8±O¢LSYÓODG¦«['ží›Rؤ§©’®ÓåÐ./\Ø¢kVâÖ9Í{ÍG#Ѹ¢¢¢Ÿ0éˆß\Sß5ï}cÅ«²‘ѵÞíž ®½á´Ùi×YñMTÞ/îŽÍëqkŒyÚŠ“"éftvUèÀúˆ¤×Ûíñ|ÌÖ(ìT–% E]D0µ²Ö9¯¨rcŒŽc6«±Ñ¡ˆÑ†„ÙNßú +õ¿%ÚºÖU΢J2)éÚåsckœ­j»Jå̮ʞƦ O¡ö6lÜòf»_|<ú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿÔÝkÙI@¨®FúÍÒìpéüH¦ÙWgŽÈ¿‘³¯ëyKjž‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”~ä¥g!rqÌýU[½]'Ívò}Scðò6uñýo)õWÍFξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(ý²R³‘Äœtzý>¶ Ñø˜¶Üú¦ÇâälëãúÞSꯚ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*Qû*©X±Ã÷hÓaûöŸYz417öê}L?#g_ÖòŸU|ÐälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‡#g_ÖòŠ”9:øþ·”T¡ÈÙ×Çõ¼¢¥Fξ?­å(r6uñýo(©C‘³¯ëyEJ|[Ê*PälëãúÞQR‰6èF‘Ð`ŽGzîÒÜpú=¨„y×Q‚ÎÒ`ÐÿÕÝ;ã«Wi»ÍònÏ2ȹ(ÑM^ïàÍýÊŸ=|Ÿ}\ß8ú|~ùŽPíÉþÒ|Åç²sgà>Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÖÝ;ã«Wi»ÍònÏ2ȹ*½^nïE;/£eRQ¾‚À{£™“ºDž¥a‰³TqNo©1®Á™ÑùÞ‹ŽTÀÏ]#TÚ³i¦g¿©¬aÕ:bôŽÊÌV#Öì»FbŠž²x¹âŽfcÓ–F£›í)¶(¤Ñ”MQ=é½w©÷Ò »b- y¬××¾JÈæ“mBBŒjDö`šqU\1”LÌÌE6Fù5¤DDï™ðˆó.× T2ØM«·2RU6º¦Ì|0$“ñ•4Ïs^5t’5Q¹ÓÕÅ­Ç6êŠD^Ó1=Ô»çLÖcuñîdŒkò;÷×¢+WN ¡O'DVwÓŸ´‘†gº¼¦îÞK:õÑ%mŸ*Ë œæ£ò=ˆì«‚«sµª­ö9ZäÒŠ¨}>_p<}Õîþ ßÜ©ó×É÷ÕÍó§Àï—øåÜŸí'Ì^{!÷6~éðû«?S§þ¿»qó}¿#î_„ú|J÷/Ww¸‡:ü•eÙÛLÿ×Ý;ã«Wi»ÍònÏ2ȹ*’p±ŸMê³)ªmJZ›N<9¶8ñZSKN‘²H$âÜèÚ«••׳ï]•›Q8c®f‘ºf›{:ûUaŦcõDmáÙÛÔ´7Rº–ÃeÚ‘Îå”Öe<ŽDc²dª? ¸çO½Ç6pÀ³ê™íô×É&:bUêºÉy¸Z¥l•´Ñ¶À—×£ð*ªÖ·ÕsÚštiÃ_¤ÃÎ.ÌÛ”LÓÜ^ˆxÞ;&ÅàŠÜ»­…ÐY4,´`’TI%HfªkÙ¥rgz¬Š×µÒ;W?Jé>°âŒº4iÛ1DÓºÎÅuÖwüL£û‘eÔúEv«¤‚FCWm^*út{Õd3Ã÷'+UX¯ÒôEÁpwF*2¢”‰êËÅʸâiÝ/s&µ˜øøyÓ Å{áîá"šªÖ’ÿÙ®™µµ×[#c–I`§Ž.5ÑbÕcÜ™Ônœ]ƒU«‰Ž(¬}×2&{=æß±4˜ã—Š#·ßìñ|;~>óØ—²Ñ¢¯´í–¾Ë¦¥ZºÈãdnþ4¬‹ld¹ÏYQÈÜù:q=Óyß/núb ¼ù>bmÃfÍÕÃéؽ#©‚"""'B"hDOÄ…8¦²›£²=—Ð覯wðfþåOž¾O¾®oœ}>?|¿Ç(väÿi>bóÙ¹³ðO€ÝYú?ð5ýÛ˜ëíùrü'ÓàW¹z»û½Ä9×ä«.ÎÚ`ÐÿÐÝ;ã«Wi»ÍònÏ2ȹ+ɨ˜b€Ç@r· ª¨ ˆr®UéPõâ}Õîþ ßÜ©ó×É÷ÕÍó§Àï—øåÜŸí'Ì^{!÷6~éðû«?S§þ¿»qó}¿#î_„ú|J÷/Ww¸‡:ü•eÙÛLÿÑÝ{× § V· s7¥Q>Ÿj›eM%ñŽÈÇšª?#¾ÏÝQí ôœÕQùöxQí“šª?#¾Ïª= ÒsUGäwÙâ5G´Nj¨üŽû5må¹õMÃÍU‘ßg‰÷ª=¡ó¤æªÈï³Äjh4œÕQùöxQí“šª?#¾Ïª= ÒsUGäwÙâ5G´Nj¨üŽûuE{ºŸS‹šª?#¾ÏëT{CçIÍU‘ßgˆÕÐi9ª£ò;ìñ£Ú '5T~G}ž#T{A¤æªÈï³Äjh4œÕQùöxQí“šª?#¾Ïª= ÒsUGäwÙâ5G´Nj¨üŽûzù>º¹¾vTöO“*{eO` ©ì•=€2§°TöÊžÀSØ*{eO` ©ì•=€2§°TöÊžÀSØ*{eO` ©ì•=€2§°TöÊžÀSØ*{ú¢r(väÿi<‹Ïd>¦ÏŸ•=‡¯“*{eO` ©ì•=€2§°TöÊžÀSØ*{eO` ©ì•=€2§°TöÊžÀSØ*{eO` ©ì•=€2§°TöÊžÀSØ*{ýÕˆœU?ð5ýÛ0õöü©~©ì=|™SØ*{eO` ©ì•=€2§°TöÊžÀSØ*{eO` ©ì•=€2§°TöÊžÀSØ*{eO` ©ì•=€2§°TöÊžÀSدr“ ;û½Ä9×ä§.ÎÜ`ÐÿÓÝ;ã«Wi»ÍònÏ2ȹ*'·xZ¢±ïu™v›GVù«¥|n™`‘”ñ£`tÚ&sr=Ë—cUU4ªáæÕ4á3ÜúÅb¼b;æ;Ó¯ElËdØ–[m éi[YSÆT%;XÉÉl\Ï,™­jåj""«“>'÷a¥wíŠìäúŒ6ãZz=.ét¯=õ±híj%U‚®&ÌÌɃ‘Ò×'Э\Z¿ÖbžÝSµŸ·vÇNáýÚ·bÒ±ìË.‚Ê›NJ†5'¨ZxØ”ðñ®Usc‘UU4"eéúO³4Ó=Óò¾é²³¾#¾¾N.§ |¾+Q–í”\â{3H©JìG ដҩµc³Tt g«fJ–699dŠÅLë¡« ¡W® LPò1Wë£|D×ÆÏ©ÃO­™î™‘$Ößϵ#²ç´)£¬“ >V6WcŽ1WWÁ:W žÄ×cæb›_v¢¢*HŸ,¯kÆ«œç*5ˆ˜ªª®ˆ‰¥Ut ™¡WX ¿—jÕ –¾šÓ¥–š#d™“1XÅ\0G9ãŠaŽ⇯(ýv-í°ï$sIg×SÔ¶Ë*Ã+Œ\1õ°_WBcŠèÃIåvW«{Úm£òÙ×òíÛ•t–,ÐS~­$s1Íñ½Q}Tö*è_ V)^­æ´~zŽ®¥%ÖIkQ¶5Ðq«åázïÝ«Vá–¢%°é)RVåF¶5{^9ÚõDcU}§„Ï£ÓWº}î®1Ÿ'pŽøXSZβ_NµÍÅV™%bʘ&+êcŽ(šU0ÅOAìMlòb…|,+bµôT•ôóTFŽWŬsÚŒvG+šŠª˜92®?N†kbb—v#×È覯wðfþåOž¾O¾®oœ}>?|¿Ç(väÿi>bóÙ¹³ðO€ÝYú?ð5ýÛ˜ëíùrü'ÓàW¹z»û½Ä9×ä«.ÎÚ`ÐÿÔÝ;ã«Wi»ÍònÏ2ȹ*á-Ëé%ÎL¢¤ßʇáGÝs=úŸƒ?vÁ÷çÀ[ÍdÜ.íù트©#¬³è* |ïlm‘´É4rµŠåDsšªÕV&.Áȸi1‰Ó«ñ«ÊpÄzpÑ¥+8{&9ê¯ÊýüKܸ÷v̯zAYUO4ÑSÉêÈæçtÎDjûŒ‘ªäú16Œ:b0õÆ5åã,ñbÕ3‹ªqM9ÌÌz/…Ë6K^ûܺxêç¤s§´×¦V6D‰WW±íÁz®aó\_xÅ÷ì/¹Ÿ{÷¬?*(­––âGnÙ5ë æ^ -é[j=Ø5j£dÏXæ+QÍÌV1$kê5Q4©ž\Ò"ÑLÌQ^1‡U{f&†-³=ŽxfŸzœ4ìŠW½ÖjmZJÈ-ùjm- +x¯]‹Q]41²8VŽòdj¹8–½"«šìŠåràª}eÌFšÚ31ß|áÙ<6Û¼Ç:©}Ý]±ÝäúW¾Ò±í{ZýÔY²E,Ošíg’k˜÷¥KQÊŽn-wB"ª*éELqCã÷>¾Ãë÷/L¾­ù­³!±ïÅ™Q$)nÔÛMu,NËÊ$s–Ÿ¾_]ÍkSÕs}Ve~*šFU°Ç\fO~ºÖxið1Þg«Dwh¥>»Å;ýPÉ5Á´QZ¯«Lú–µq§eLN¨ÐšU8´~dú[‰®dÅb¶×†½š½ªÏ.´˜ëÓ4íÓ*ÝÃ}¥c[é{«l‰ ¨³R³âª}*µñ:N^Ž˜³¹íƒTL\Ö9¨¸hCç}K2ûë·ä«î:©ñ3;©ùhýœ.TCy«ï$×RHæ—UÎú<²1*ÑÑƼ^…{`I~ç÷ÈÅÃE>3>šzµeñ“5ð¥x>²þ—}1öÚ)ãn/Áz££µìÛÕVÛn UÞŒ¶­pS6'Kš&>Hå‘dLÙcTEdkôbˆ|{¢+«¶¸²ëºº¼vNÞO¼™¤áê¤cíø>­œÓ5ú¯²®­¹wh æÛ-Í¡«tµŒûœ kal‘Chã|ÏEEõ×cWv*…“\X¢Þ÷uâqZ;¶òO‚)†:ö÷M+Yù9£N í›:–ÈàÎi*£H™WiB²H¬ëB5ŽMǯBG¡Q}TO Ï.ø?O}0>ñ[àß +âðÚü6UU îõdÂøý Žõñ²ÂŠœ¥¯Jé<®oߤkLº^¾¢Æ¨˜á‚Y?tê¿[‹Uyü3~ž½s³¿ŸnÔãö=Ù”T¶-©<0±²MmÚΑèÔG9R²DLÎé\0DÇ;0aû¯Ë&oÂÅÛòB{4dú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿÕÝ;ã«Wi»ÍònÏ2ȹ+Õ%aŸ9¾û8â>B¯klÚ6Õ-ZANæäYQã¾ê¿ ÊŸ‹÷ÁM 3U±1¬EUr£ZLUqUÁ>•]*½*ºTpxú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿÖÝ{Ù •zµW.fèDÇé6ÊšKuEy>©4æü<×[Ô¿º§Ö¸ÞùÓ'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2s]oRþêq¼Ó'5Öõ/î¨×Í2ý²YµkIx—âzªe_§ÍQ^çÔÆÇâæºÞ¥ýÕ=×ß:dæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦Nk­ê_ÝQ®7šdæºÞ¥ýÕãy¦_²ªÍ«tp¢BõÁ˜/ªº=e<ŒQãò>¦%øù®·©uOuÆ÷Ι9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi“šëz—÷Tkæ™9®·©uF¸Þi”›t`’žƒ,V®w. +˜)tÖT`ŠC´´ÿ×Ý;ખrà¸zÍÞm“vxì‰ó¿Þ_Š—¦©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT}{ù½eýU¿Jûª|uò}Wg7ÏÎÿy~*}¾jg¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿_¾W»‘Eë/ßÉô¯äŸ1yì‡ÜÎÇàÎÿy~*}>*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿_¶±îâ õ—õ?jûÎ>põöü©—âÎÿy~*}>jg¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿Lï÷—â ©þòüT3¿Þ_Š‚¦wûËñPTÎÿy~* +™ßï/ÅAS;ýåø¨*g¼¿R­ÌU[;Jã븇:ü”åÙÛ ÿÐÝ;ã«Wi»ÍònÏ2ȹ+¢ÚÜ%Ý»ðPXVF¶…{ÞÈ©ØæºDÉÈç=¨¸±™SBªiUDLq<Ã5šEé3Üú˜¤VwÄw¼¯w rãÍGOiVGElñSSÀŽE–GÌü­ÊÌseEÒçt""éÇ@‰¬Æ¹ò«ÉŠDÏT;ʦ èéwÆýÙ×))›ÆðÄ=1Oo@á§Ñ×.õ碼ͫu6tJJ©¨äΙ~é +¢; +‹t¦ £aämˆõð™L²iºž1ò»±Œ@€}Õîþ ßÜ©ó×É÷ÕÍó§Àï—øåÜŸí'Ì^{!÷6~éðû«?S§þ¿»qó}¿#î_„ú|J÷/Ww¸‡:ü•eÙÛLÿÑÝ;ã«Wi»ÍònÏ2ȹ*á"–ïMЕ#b=֜ȮF¢9Œ3ô®©æ…uÇè‡Ö/ƒ÷¬~~ži`}‘G*ÆÅ‘-[-êỔËbЋ†(|OÂÁ÷í¸‰ø8¾ë>˜L2HÖ¿*ª"®8&:Wœy£ÉD؉*ç ‘±$¬{R6²xäc°kÚ­sUZŠ×èÌÕLùëÙ};wRf>Z>­m8¹Ö“>Š¡{Óy­Ëb%°k¨èV—‚††½ÔÒÉOOYÔΙˆ÷£_$nvVG#Sfl®C8÷ó>›LuWó½{b¹÷µû®‰á8©òwM_6ײª.]Ù·Lúx*¬»Z–{*Š’ij¹"‹4ŒrÔ«Õ6¦V2U]hóΉöc(Ž»ß-½œžÄF)˜‘8bgªÕ¤ú;y¬ÑS6çQUG*Í-ZÉWU#±Ìµ2½VtT\rä~1£}F"}¤RwÄí¯:ÕŒÌÌÍoY¬n¦ÊrUõ¥¬²ëèé¸÷$w>Õª­“Ö_Zšæ5v(M"¢.ýùx§œSô±¢yÎ,3=Øa¾e&¸~4êîˆÅé™}û‘v㾵ݲmæ­E¡EjÛn§{œŒ–yë¬W`©™b†DV¦87ØhEO¬q'érðwÌÖeó\uãÅÝHŽt³çÜ›+.­$µt°²ñDÔ|¯Âx©ªãŽ5QQdkZÔÃTrµq>2§\ÄÍú<3ÏUþWÞdh¬EµÓìfiò3&¸§„Å>· +ÃO>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÒÝ;ã«Wi»ÍònÏ2ȹ+å×Ø”­E-ED-’JIX¸ãÕŽb¹4ô«\æéÇBˆßÛãw¼;<V­EnBØjâl¬d‘ÌÖ»ñ=ÇhÃK\ˆ©øÐò–ÓXí·Êpß²^v}}5|еÕ©*C"ã‹f£dÃN²""â‹Ñ£ØÙÝNU‰ù:óÛæù×¢æX—Ò(¢µ)[:Bþ6%Us_ðÃ3Åkظ. +­TÅ4.ƒæpĽŒT|¸¸1ºXÒX̳¡J9d㟬¹¤ÌŽãê¹ÖLQ$ÍÐ{O uzÅãw¾ÎàòíÙ1ÓGOCRêȱW¹Rw5Z³9\åWȨª™ž®Tú0TAJp­9Ü­yÒ¼¬û–5g]æLÊ( gšJ‰˜àée\^üpEré\0Ltከˆ¤R:¾Ù3]¾ÛŸ³ƒË·h:ÔtÔ1=mhÙ j®?wc¬k_§¡ª‰† øñ<Óß5ž×º¦û¢œœÛ\ÝÛÃGKGWFÇÅFˆ”è×=Ž‰œ^ {×µ¾ª¢.M ‰î(Õ5Ÿj¼Ã:vCöÐ\ûË}é¨â‰ha}=6DÊ‘G&\ìj&Œ‘¸âŠº?9ï]zéNWy]”ã^~Òüµ—ï×ÐÔPÍE੨år±szÓçkøÜQqGæk\ŠÕL4 +Rœ&±ÛZúeíoÆ)=”§¡ùãàÞìGlóÃh#JÎ5gã1êªÜ‹.LÜ_­õVL¹Õ?~<ˆ¥¸øÜ™¯‡…†È°è,厎ÄÙf’¡èÜ}i%vg½qÇK—Jý¶Šnó¯ÊòûwùQõCÀ>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÓÝ;àŠ¶ráï7y¾MÙæYe_bü “WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿WØ¿>‚5y´/êÍýÊŸ|Ÿ]\ß?*ûà}¾L«ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€ «ì_€¾V¯"‹BýüŸí'Ì^{!õ6~ «ì_ôù2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~2¯±~~êƯ…ýOý©Çξߑõ/Õ}‹ð>Ÿ&Uö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/ÀUö/À V墥§ßwû"ëòS—gm0hÿÔÝ{Ù4Yêæ9Z¹›¥4eEež9¤"ît¬ëŸÞ-Ó 5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¥ûÒЪäNwüÜkStá•t:b¼žêš?:VuÏïZaæ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒT¿l–ZRDî5ø«ÞŠ¸û0<Óî}Lì~.t¬ëŸÞ=ÓRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©~Ê«F©±Â©+ÓbºzW2¡ócooÈöf_+:ç÷­0óTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªNt¬ëŸÞ`Õ':VuÏï 0j“+:ç÷†˜5IΕsûÃL¤çJιýᦠRs¥g\þðÓ©9Ò³®xiƒTœéY×?¼4ÁªRmÑšIè3HårçrbºHó¢’ßÖ¤Á ÿÕÝ;ã«Wi»ÍònÏ2ȹ+âZ7–˲+(èªjcŽz׺:xÕ}iÆ+ÜDÓ¡­UU\=¸ª"£lÓ„Ï({h¯Ž÷½\$]»•; ´ªø©Í‘±Ë+’6® #›­B½Ø7Ÿ3Š!õf]º†ºšÔ¦Š¦šFË ¬l‘½ŠŽkšäÅŠš4¢Ÿs|DÕÑo§ +·gƒ×#mz‰`EF»2RÔÊÄÎìE|Q=ˆªíÕ\qTÑ¥Q<úßq†®Ów¯é£åt|jÇ™Ìû¬3Bì[ÓêLÆ;dž ô)ôù}ÌðTTúñz¤lW»B"*ªþ$LTòfb*ùÖ%±Gy( ¯¡‘&§¨²ÄôEDs˜¢¢*"¦?O¯o•á-¯G|4•¢xä–8×\Ȳ£ÜŸF ÌÜ:5êá^U£êžÞ/§‚¢bzùs•WFëâYw‚ζ¬ä´ifI)•ä‘pTU©Š"ª"µt¢iÃÅ0>gDWª•¯ +Uõ¦kNºÓžë +Ú¢¼Öu=¡A"MOSeŠDEDs˜¢¢*"éOj"Ÿs’¢Ú¡¤¯§¡–V¶¢¥²¾×^‘",Š›(äÇó¡åöp¯*Ч¦œîú˜.‡† +™U Ç9U~€õó%µ¨à®†…ò¢TM’Çœ\È•¨÷'ânvãùÐyW•hSÛÅô°TLCÃ@8¢š½ßÁ›û•>zù>ú¹¾qôøýòÿ¡Û“ý¤ù‹Ïd>æÏÀ}>?ugêtÿÀ×÷n>c¯·ä}ËðŸO€ ^åêïî÷ç_’¬»;iƒ@ÿÖÝ;ã«Wi»ÍònÏ2ȹ*áíÙ0_{¥i²ŽÖIhͪ6ñªÎC?ª¯Ã2·BhÇ ì<ÁÇÛ‡¢X¦¸{1`ô¾Õõ¶i.•­*Ù4k[x-jvA(åFñPfFÉ;—Šž5‘UîùQ¨Žr¦âÛ\1yÛ;£e+?$u¾ãªg«doßHóêvÎ .jð}ulÛã–ŠÄé0Áí*åDúŠ®Tú¼ðꈎè§ÈË噞ù«¢}’T¸Z¡«?ù] Ÿ^»àô¾âؾé‹ÐùóÒT[\,Z«UhÕGIgÙÖ}S)Ù;ã…eY*1’Fµ}f¢7ÖgÞ»Fd\˜šjÓ‘ïf¯¬Q]1q=¿ +ÍöëÙ{.ÝE-M§QKk²Ðãêk¥Â*Î..69 ¥W¹`b.˜Õ4V*& Ž'Î +ÆÍ¿C™ÛzƼ/gÖ=»~®#e©:¶qµÞîhYô—"Ø’Ó®ž{RiiªÒz‡¾'ÅÄÔHÔâ•rµX±·+Ñë§3—ëÊqˬ×|aÃ5|ãÛ^éݪbÛp¤´¬»zž;f²Ñeu\êçºnSgZ-F¹ñ­;‘ÊÈ0rFc•¹‘sá‰ñÕ1õbví¤WOɺaõ7‰ú­“³²cÛl:½çZ×ZíÙðÏiÍ,wy*[IgMÉZÇt2ªzœìÁZ¬Ž%ÌŽ\ÎÈìs¦i3KƒÞ¨5ç3Nèy—Õ׋lÅ|/âû6=oMå¸öõ|•V:ïUT¿%D¬c䉔ÎEXØæ±QÊåΘ`ý‘pL>ó#FW…ÄžÓ²8*K]k«+­KY‹E(ïk_=TÄ‘±WñhåsŸ¥îFér¢&R¸páëÇ6Ï5Ÿ +¾¦iŠfm†q[„ìñ¢ÎÇaÒÝ‹°¶m*a - b~Lp«Q:áŠþ5>½Ñ5Ëî³è—ÆDSvÇ¥V82±$½Ô÷RÊžº² +5ºŒ™ñRTIi¡ŒkÕѪ9¨«† +˜èEÅÌqYÅà +véÅ·ÁìM">펽•ž/Ívlľ—‡ƒ»VÓžªj§YÖ‹žöÔKwSäÊ®kÖª»ú £ :Š" ˜µuôQ‹Ÿ½ó±Š6Sð$Ç/}äú<ZW²Ú©°/ +¶­®´+^ÚÇÔÚü–Zw¬¨‘ÃKÆ*µñågŒcd\®ÍŽ*}eÅ)ZíÁY®Ý³ƒTO…ß8浶ÌTŽ­‘Š”îñ³®Ùô¶Çï7¥µyîÐJÚûb +U™j^©+jº4dlUÊ‹—ÕW*+œšB"&TÙ—pWÀų۵§^9ø±ŽŸ]‡ÛÁØ/ëí[•è°¬ÛJ±±G‘WM,Ó¾iißUZ°ÊÖÈõW«]“:5ʨ™œ‰ê®¹q8¦"¶ÍÁ¦"iÇŸT³Ç4Ûõæ{b»xzŸvöÙÖƒ/d7N•-ZºJ{-õê°Z)C§’¥X’I<’F絘.XÚ¹]¥¹QÎbf¿Si·~­³¾Ým-Oª™®ÍÔÙ®ùW~Æ«µï5ϵ­¹dšÒŽÅ´$•ÔõŽt2INøQ«„â_›ºeEkÝÓŽTÃÙÅIœ]}áZú7w¾iXŒ=Zæ8Óo‹ópQi^Ën¢ëÞ ª4µ\÷WºªÐÔóÇ$R=¦¥ãUÌtnkr£×dGgÇHˆœ<ðLÍgmtÄÖ=©G¸¦µá‹gef)>×J_c½•R·JŽÖ­¯«­ª¬ÙÝQ3žÆµ³HŒk«•¸&…v—¿÷ç.‰õ—³ qÆg·L<ÍŸ}<1b§ee=l€}Õîþ ßÜ©ó×É÷ÕÍó§Àï—øåÜŸí'Ì^{!÷6~éðû«?S§þ¿»qó}¿#î_„ú|J÷/Ww¸‡:ü•eÙÛLÿ×Ý;ã«Wi»ÍònÏ2ȹ+àÚ÷f†Ü« ª¨G,”:x2¹QîÑ*¹?~L¯v…úp_ Fɯ Žû½ê§ží®©lp]gÚöäÖË+­J©àŠžE¤ªâšèáW+*±Ø`¯r®b«Šô1†•¾Ù¯tQõª´á_®ÃOtéáš‚gÔUK% %c,êå“Žj5Ë2""HäDLª¨™WJtŸ^TôOÈù¯¦¾Ýïeíºvuö³gZ { {â‘QŽV.1HÙY¥?)©Š})£é§tÄó‚&übc¼ŽéÙ±Û–¶G-Em6•72§ß·UÇÕv•Ó‚¨œ1Šµëˆ‰Ž©¤RÅNS3׶ï§fpSbXécrgÕ1lhß +’uWq/ËšSî‘àÆ¢"éDjiöýNÙ¯])Û_6ŠuV¼ý¥ë°x"»·nЂ²™³¯%|Ï¥‚IÞúzgOè"] Wb©Ò¹QÊÊŠ|áÃ{©Ësë*÷מ÷ï²ø3°¬j;&’KÅY2¾jfºE\ôzf¾©Æ;.?z«Ð{JpŠGe"=N*׌Ö{êï02ª"~9dk˜¸{Š‹ü’žbê)¾)Þò'L×s¦Ý¾ì[¥%”L‘«C@–l9äWa=$Dv?|ìÈž·Nf+^1=‘é+á3=ô¯¡ó©¸(°h[c¥:ÔBëŒJWÇ:£‘²þ¨ÉÎÇà˜¢§Ð˜*ŠLNèŒ<¢žDÍkÆkÏo›ÆÆà’îØ6”UÔé?Ü&š¢ +wÎ÷SÁ,øñ’Eèk™ßJ£s;*7pé去۱î,Uï¯8u;÷Á%=Uͤ»¶\/}çl×…8QñÕN5ã_i|ë‚;»w-+iÛ:­+¦},2ÎçÁLéñã—C3b©ôåETnT\œ8cu9n}bÅ«¾¼÷»u×»t7>ʧ³(QÉONÕkîW;r¹qré].SØŠlÝÑG“5šï™žù«ï¾@}Õîþ ßÜ©ó×É÷ÕÍó§Àï—øåÜŸí'Ì^{!÷6~éðû«?S§þ¿»qó}¿#î_„ú|J÷/Ww¸‡:ü•eÙÛLÿÐÝ+ã«Wi»ÍònÏ2È—ä¦ 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä }_åžïàÍýÊŸ=|Ÿ}\ß?éðb€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @bï•ŒPíÉþÒ|Åç²sgàÄú|€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @bû«îtÿÀ×÷n>c¯·ä}Ëðâ}> @b€Ä 1ˆ @b€Ä 1ˆ @b€Ä 1ˆ @•îV®þïquù*˳¶˜4ÿÑÝ{×+¡ W&æoJ"§ÁM²¢²øÇ4„aÎRû±ü¶xéöª}G9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔýÉ_*Ñ9Ø35©÷ÃïWèÃù3ãNÞ[Þ×cðó”¾ì-žÞŸj¼Ôs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMOÛ%|©I°f*÷§Þ7èÃèÀùÓ·»­ìÎÇâç)}Øþ[<­>Õy¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŽr—Ýå³Àiö©¨ç)}Øþ[<ŸjšŸ²ª¾VÇ +àÍ,Çïï/âÐ|Æöïàöq?9KîÇòÙà}iö«ÍG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔs”¾ì-žOµMG9KîÇòÙà4ûTÔ“.ŒÎžƒ2¢"çwB"'Áó¢“ɾ ¬;Aƒ@ÿÒÝ;ã«Wi»ÍònÏ2ȹ+óTVÓÒ>&K#X霬äE{‘ªåkQ~ùpE\Áz=|{n÷XWeѶҴ)©\r$ó25v8#•1DúW ò¯hì s^ÔsWTÅ4¢¢ô*~#×ËñZV¥‹JúªÉã‚ÓÉ+ÚÆ5:4¹ÊˆžÍ'“4{Wã³o-‘lкºŽ¶ é››4ÑJÇÆܺ]‹‘UÒ¸ªaôž”~ÖZT’ÎØ4k#£ãšÄr+–Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÓÝ;ã«Wi»ÍònÏ2ȹ*¼pt¬¸oýѶQ’-[­ âÌé¦s‹C6(Ø•ëqʘ«ZŽ_oIæ¦>Ü8ýûÅ5Ã÷¬—i¿—nXѵ¬k.žÓµ*iYG$uU c[QêˆÔs‰Š½UÌõxÕÃ&¦XãdÓ®ü¢žÐûÁ;b½VïöÚýü +¾× +Äm òT@Ê8£l’·+׋LŽG7Ê­r+pÅpà W¤§êÛqì¤maMœg¾²ë\'Å©|®mŸRˆúi*ëj“>JjG:Ⱥ+œ¯D\}dEéD3ÃÅÙ‡ÇmpÇ¢e¤üã‹ OfÙù‡ vbCn_j*9_IUØŽ¶nNŒn31õfTV¹¸ÉQ\39¨šqDTŸÁÇQ8g¾6÷Ѷáž¹ŒQÊ&)é—î±®¥©UylJ:{j®K®Ž}J6T;˜ÕEty­U÷1V¢7•Zs¢uãÛhŽýY›gÚeO¼Ã²ó=ÚpYø©¸O¼W–’íÒI=¡ë,™kêf²)4Î’9Òz®kÛj¹žÿWJàÔTC9ŪÕ{‚vEb¸¢½Û,û¦ž>ûmž¬3ë}ñ_ËÝkÝ›:¶²¢È}E—]Q]`‰²½ôÕ1Ç‘$kÒ%{W3‘1Á¯V¢"੦³Ù‡Ìq™Û™ŠGÞ±ExSbYᶮHn”Ôñ¹ZµÓÒP+š¸*6ª¢8_‚ý£œŸ¶|bÛ1SŠ#–ÙùáÙ;°Ìó·Ê•c§Š‘Š&£XÄF5¡ÔÁ?2&“5ÚΔyžˆd¨K#„ø ¨´ì™$“¦J)ØŒrþ<“+qö"{0FÜ]˜gÆpùw>ñ[n(ð¯Ÿz^=|>Šj÷oîTùëäûêæùÇÓà÷Ëür‡nOö“æ/=û›?ôøýÕŸ©Óÿ_ݸùŽ¾ß‘÷/Â}>%{—«¿»ÜC~J²ìí¦ ?ÿÔÝ;ã«Wi»ÍònÏ2ȹ+ªÞ ©᯲ë$•ìu›Pê–5¨˜=Î…ðàìtáƒÕtiÅè²kÃwÅÎاžé«­Þ æ´­yí[6Öª³'©‚:z•ÈÙYn-p•®FHÄs‘²7N ‚¢à‡Æ‹ñ¿m)ËcïU¸[¾¯«`Ü:k­ “KfÔÍ%›‘%:*9³£ÚˆŽ•Ê™•Ív/EEL\çc Ò¾ŠS«ªžŠ><ë^ÿ7ºú\ªké6i奩¤µ4µ0eã!•­ÅÈ­s\×9¯c‘Zæ® ô*|N±=q_’úŒTÙÕ?#¯ÙüRGKk¶¾²zê«^OUU"Gø¤Ñ²8ÙQ‘±ˆ÷*""âåW*ª©äá¬LoÛ3×[|›ÅI‰Ýh~˯Á磵´•³WÍW55ͨé#™£IRF¹É"fL¨Ý4ªbiŠuLÌßEyjÛöO˜ÙQZsˆ‘×aàb+.ŽÉe™jÕQÕY”ÒÑÇTÆB÷>ŸÆ=ŽF«ÖDs\ˆŠÇ&)Ž*†zxý,ažÈOÞ¯LÏ9ùvÁà®Ë»V…—WI,¨–u ô1±ÊŽÎÙäd¯‘îTÅdW3TÁ\º: #exÆå†Ï‹Ç9žrýü'ÝÊ›Õvjéi0å-âê)óhEšžFÍ*ûÌFþÙž-”›Òb{½O¼;§®&;áÜè+hSEPèÝ¥c^±½0sÈŠ­Túª¸/ãCYŠ3¯Ô|€©,j‹JüÔZ³Bèᣢm ;£ŒtÏI¦{SÝnXÙÒ¨ïaæ•ôŽQ·Ó>¬]Qº³Îvz#Å$ž¾_E5{¿ƒ7÷*|õò}õs|ãéðûåþ9C·'ûIóžÈ}ÍŸ€ú|~êÏÔéÿ¯îÜ|Ç_oÈû—á>Ÿ½ËÕßÝî!ο%YvvÓ€ÿÕÝ;ã«Wi»ÍònÏ2ȹ(ÑM^ïàÍýÊŸ=|Ÿ}\ß8ú|~ùŽPíÉþÒ|Åç²sgà>Ÿº³õ:àkû·1×Ûò>åøO§À¯rõw÷{ˆs¯ÉV]´Á ÿÖÝ{×#b UV#Ó3t;:¡¶UßìŒyl=š?‹üÅšxú<“Ôå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}E_¹*âäNwÌ8Ö¦¿½]?}‰óM·ê{]œß‡–ÃÙ£ø¿Ì}iãèòyS–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy~Ù*âJH—“džwèÅø'GåF·ê‡ÔÎÇâå°öhþ/óéãèò|Ôå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}EN[fâÿ0ÓÇÑäTå°öhþ/ó <}E_²ª®$Žã•~Y(ò"ûzø=™~>[fâÿ1îž>'•9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘S–ÃÙ£ø¿Ì4ñôy9l=š?‹üÃOG‘T—tdl´µˆÄÎí ÇäÕI3¯É¾ ;Aƒ@ÿ×Ý;ã«Wi»ÍònÏ2ȹ()¤åT +¸"€ú)«Ýü¿¹S篓﫛çO€ß/ñʹ?ÚO˜¼öCîlüÓà÷V~§Oü vãæ:û~GÜ¿ ôø•î^®þïquù*˳¶˜4ÿÐÝ;ã«Wi»ÍònÏ2ȹ*½pƒdZt÷þê×-­Rêi+æ‰(rÆØQyËU­IìSB=ÊÔÅpCçSn~ˆ}âŸ{÷¬—áû!í*Ëzôîõ+âÉgTV×ͪ:8Ç,q5ɆY'{pö¤M‘~”'ÏŸ{3ñi3ÛX¤|³Ë{|˜Ûæ´ì¦Ùù#ÔžnÓ–K…ÎéZhn6—f^{gÒ‹.ÑÙ›…¸ÖðÛ—nîLç%£QTú¶1îbË-:ÊØ•ÍTr1ÏV«Ñ3#r®…T\t권34ãXˆôÕ½tá¯\ÌG¦gЊ¯=ŸQp¤¾zÀ‘)hÖ不OY$e<Š³C2E룘F5ÍDvV=3"iT\qLéŧ ;&-ß75ÃpÎú׶&6ø¾Å˜ëêûËbÃGQDê§]œòKZù%´]#¡g"EÅFså{ÕUª™X˜àå\ ñcÝOƒ†vßßEb<å÷izü)œ:ü¡ï±8e¼·î{¹ ‰OG:PUUÏ%JÊæÄ´µ …üZ1Z¯kÕ]Åã†(­r®¢ég†œ8¸íêí|LR8ê˜á²+T­Âõ³UbÝZ•¤zÇ=KࢉéÒÇÕLÈÉøÚW'ãCãÚaøØ¢9uøD¾°M+;¢gÃgŠA¢ ŠË§Š–,rBÆÆÜt®V"51_ni3Vq~“ÀL«bp‹% +9Ü]©gr´jª«[5$‰êÔú3Ç#3aҬǤó\n¤Ç=“ãúÅÕ=±Ý¶>T¬zù}Õîþ ßÜ©ó×É÷ÕÍó§Àï—øåÜŸí'Ì^{!÷6~éðû«?S§þ¿»qó}¿#î_„ú|J÷/Ww¸‡:ü•eÙÛLÿÑÝ;ã«Wi»ÍònÏ2ȹ+£^»©=áµl:ÈäkgV>¥èìqz:žHpnN/EÓô"ˆÙ5áŠ;â#ä{6§3Ý5uø ºœ"ÓZ2ÏgSºÑª¥| ª‘Š;‹VF®ÊäÅŽ  Ã3+TM6Lúvy6Á™IŠÚ¶îÝŠ›£KdY¶jSÅAK£ž<¯W+‘ȱ*ªà™ó9ù±UEDL +fk<:»âž ")vzß‹„;™[y]gWÙ“Ç£eÔ:¢™ÓµÎ‰ÙãtRÅ*5QÙÇa‹W3\v ‚¢å15‰Ó&'í>âb“×Iç¥MÁ…±lÃoÖ[u4üãkÐósR•²qð5’#Þ1s½Uò9ò9rã¡ >N +á˜ëŶg²)úŒ{bz£Î²û6å[vu©AiZ’Rñ”öG6=´Übµ\ÙÚö½«""à­jfEèr® qάX±|hŽúâ™åï™á÷±ñf{©†>GL³¸&¼—R’ÞȨ ’ºÏ¡žÎ™•Œ•`–9fã‘íVzí|nDTL0r+šªšÊ“¦Ü8b{pÅ"}-&boñ±Ls›zÆÂàæÒ²íÛÒ©®åN¡³*hæ{ۃ喢håΈž«X™½(Ü©§SXÙ^8pÇtß›9šÄ}Úg¾G†"¦Öº•+KÉ5,WFÆô½Ô“2|©øÜŒTOjªâ÷´ÅñqDò´øL¾ðí¬o‰/‹I] ©u0®1ÌÆÈÅü—¢9?’SIŠlgWè<CIÏ|#¾µ¨¼]•g-*¹QpYªäl®j/Ó–8Û›…z`úißHî®)ôÃëTvÏ~ÈùRÉëåôSW»ø3r§Ï_'ßW7Î>Ÿ¾_ã”;r´Ÿ1yì‡ÜÙø§Àî¬ýNŸøþíÇÌuöü¹~éð+ܽ]ýÞâëòU—gm0hÿÒÝ;ã«Wi»ÍònÏ2ȹ(£@ˆ‰Ð¢š½ßÁ›û•>zù>ú¹¾qôøýòÿ¡Û“ý¤ù‹Ïd>æÏÀ}>?ugêtÿÀ×÷n>c¯·ä}ËðŸO€ ^åêïî÷ç_’¬»;iƒ@ÿÓÝ{Ö±%ñW73t"à½>ÜÛ*ïŒvFbyE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬=ÉWD‘,\T™UÈï¿LqDÃÝ<¤ûCÚÃÓÆÐuR|ÄòžÒ^V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÃÜêº'DØø§àÕUO]1ÅpÇ÷ßÄ)/kOAÕIóÊ)/+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%aí’ªŠV±«ýDÊžº{U}ßÆy/kWAÕIóÊ{IyX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+AÕIóÊ)%`ãh:©>byE$¬mU'ÌO(¤•ƒ ê¤ù‰å’°q´TŸ1<¢’V6ƒª“æ'”RJÁÆÐuR|ÄòŠIX8ÚªO˜žQI+ 2é:'P}ͪÖçv…\WèúpB<Û·Ágg1hÿÔÝ;ã«Wi»ÍònÏ2ȹ+”j¯ÑÐr¨¨9U~€8ÁzC× +˜t‡€9DU€r¨© ,«ŽâåW@åW J÷/Ww¸‡:ü•eÙÛLÿÕÝ;ã«Wi»ÍònÏ2ȹ+7þÊëËxm+ÝS5…YQ.e™±RÈ^ö²Yf«R)Qªˆôâõʸá‰.ªbœ}X1`à }Üïí½7Þ8K†¹)ßAId2WE]KV6ryV2"2I0ûº¦\‹‚±_œb“=X·õÒ6G•÷1ï°S®#Óyãò;e×á²ßæ«Ÿwnµ•]£hXIj=- +É’8`¨×M‘òI#ܸ"¹4ô¹JñâšÌDWN™çhíO‡ R&~›Är¼½”ße5³z)nzØ,3U^'×S¾ª—D”ÓѦE‘­vf#‘Ø®•¸`˜©äbÕ1§lN Q2öpé‰ÕÕKìÝß²ôÞ[QkÓØTÉiRZÒÙ5Q¾±#£ƒ‰~WÔÉ;Ñĵ0ŪõUÁk®8£é«{E&cäØi¦,Q?KKuÖ"~T)‡– |Þy¢Xijì‹^‚…ÕeT’A2:¢qKƒ‘Èåj¢¦?B™Æ-]Ú¹±•ð–‘‡N¨ü3ß•ëá +üQðktí ÁX×>* +GT9Œûçen†¦:1rà˜ýâmEg¹ÑŽV tŽ"»Y\9^›B­ö å²i¬ê‹NÀªµ¨GU$Þ¬qâèåÎÆ+ej9‹1oN +eXÃŽ:ðá®ËmÙé}åÒg űb¦Þôwö;ðÛ{¬KàYvõ›¨mêwSSW%[æªtѱÒ"Ï›‚$ˆž®sº1_ Ó^ÚOĬS„G‹æpÞcãÒkÆgÁ#pIöG^>-ªvAcÑó|µUT³$5Šêê!Îkd¬§sZdŠÜ"¹S2by•\Dͧ kZpž/s0h™ˆ¼M;xÇT²¾Ì¤´­ªr[?š«­‡Xñä®ÍhµÉ"ÄÚ‰)²¢$.{tzÙ‘ª‹ôŸ9½&šý=iM½S1]Õ}fåèÕõ¯VêÓ±Ûn÷Wö÷UÞt³®í+©,‹F•g}SÑe’š,ð±±£s*½tH©¡ˆ­ËŠã‡ÏK:5Óª{âiÝO½jÓ]ÝÓo×u~ÉJËëYwa²ì¶ÕsßžÛ¨dR/£õOlªùQÑâõL0ÄßÒqDmÓƒ/®´wme‡ b+²¸§uß.áý‘·¢ô^¸îÅ]dÇhUYµ°ÇKh>¡)å‡ )땬Tc×YbWá‚á‰ñ¦kJÄDÖ+M»zb)3ZLÓŠ»Ü‹ùz"àŠÌ¬·š•-’öEM×Õ2eWWH×ñ®ÊŠ±ÆäËx«d0z7 úÈÛ9\f;©;g|ð³ç6)œ"{ëÝn±ï왼z²òVÙÖ%=M‹vªâ¤¯šJ§GR÷;"Èêx‘Žb¶4zcÈ«§<9µÛ6œZxÞ•ï}Î_W^\7Ó¹á¾ÈÛÝc[÷ŠÏ°,::Ø,K.–Ö|ÕRB¯†hÝ#šk‹ðOQ1DéÅzÏtàŒs1³/™î‰}aÊŒS†"vãÃXïz¯ÙIj­]GbÙÔ)5§b²ÙbZ•Ž¦lªü0¥§sX©$øûÊÖôc¾1ÌåêÕ²pá®Ëvv½ÃŽšvêÅN=½™ÁÏÙxï¥vyêŦ£³ïK'}›,/–f¬lãÚ–9kUìLQX®D] +"f'N-“§TnÙI˜íÚ÷E+ŒTôíðG7Ù}}í;>ǵ=£u%«jÏbÃ’¹é"ÔÆ÷±ŽÊèò¶%VúîUW&ToF?x瘦ÜxkwFÞ^-3pF Å·àb¤ó·7m¬û)o‹ro-«_bÓ6Ó»ö´6\ÔÐÔ=ðJ²¾4G²Ek]Ñ&„TDÅF:áÃ1ôØôÓŒM‚“1» bå1ê~;sì’á.Ä®¼Vt—^ÎåVv¤ßËFEidj¹‹Åftú0DHô/­ÑÎ,ÙÃ3i<÷zßQ‚&b>4V=nÍ|>Éé¨]wélš{9•V½•Îî[Z·’ÁY[–<è×+å{•ZÄÁU]Y™šqbÃK3Y¥íÅóƒ¬13ôÓHåyì|«?즶¯…=Í[»bÁ=E去îu5K –C±‘r:ªÑ¶›™i¤Eo8kÂó²»Ö2ϼVõUèžÏšÈ|6s(áž:çHÕGÌõõéø´ÒŽ4«ºè>âó^©ŠNý—|Í£ŒMx;Ñëä%{—«¿»ÜC~J²ìí¦ ?ÿÖÝ;ã«Wi»ÍònÏ2È•0ÇIrU'ƒìD³o½«z­‹ëu5–µ\‹H´Õ l4ÉG ^XÚ禜ŽG7S^ƒÞLO™Å3=U›w)œÚb‰‹E"—ï|Û§À w#Ñ‹V‚¶Í’Ô³,™l:¶Õ,Î…ôë*º)£sŽY˜bÅDGtcô›b‰™™Ùï°áŒ]±ÖαO‹Šf;'©ë°~Æ«ëu.½Ï} ]í˵]]R‰2Ëɪ#­‘êö+šÜì\®EM ‚⟌ò0ÎÃ1ÕƒLö=œQ‹TO^-Pñ—ìk¾Ö…Óµ,úʺ+«ïE=º¯dd\TrF÷µZ®GzªŒj㎌]¥Oœ9zt}F9Å=“_7¸±×WÕ`ˆŽTòH—‹ËÙ=ù½¶¥ ´N³ïÚ'$®‘³Å4PIjˆÖ«UŽW¢¹UqDèESâr§N15߆ÒË ÄÄDý.)˜çx{noØÑiÜzë†øjá– Ö•M|ŽÌÇK-sU\°³õQê¸#•‰Ò§Ö^Á1KF^Ž7»ÌÌSŽ&·œzN¿ì`½’Ý©i#šÏ–v^¹ï)êGRÔB÷*¶ðn(©Žo½sQSé1Œ¹ˆÁjàÕXêšÌúN8™ÇõZi={"=/Ïl}Œ·êÖ»·ÂÍ’¢Ìã-ÛFÏ´¡XxØ£‰`tk,Yr® kcD‰SwJ£~†­:~§7_.¾dã¬ÌïËÓÏ«Ö·Ü&\88L¹öݨ•be}#é–F¦*Åst9éÁQ¥4ga×MõŽú¾2±h˜áåE~»œ _kVچؽzÏfØu- (Vel‹;2:¢e‘"ª5‹nl¸ªâºœÌ3Ž1ïdž”ꎿKÜtÇV¯êô:¿Ÿc¿l×.’ñVÙËAtØù`Z4•gšwƱµˆØÑ˃›÷ø'ªšO¨Ã5¬õaÓãy8¢”Ž¼UšöÌÑõl.o¥]ô±-›v{-_cÕTNëJ’7G]hG"9¬†¥­c#kQ™×æÊŠˆŠ§Î^MfŸbi×3¯ËÚ÷3LR>4LWª“Z|Ëp~ÆÛÑqm +[:šK&;*–ÕšÑå‰N’ZÃ$Ž•)ÆF­b#‚Ê×æʉ•£'àÓô±M{«ÙâúÎǯTõâž¾­ôMœ pkiptëȶƒá‘-KnªÑ‰"r»fküQ0wª¸¢bŸO¬¼4Ágê«Îf_ñWâØ|"ˆ‚¿±RܹT·Ê–ªÐ‰‰jÓMgYrÀ¯WSRÉ$Ò¢9•sËŠ£Ut'IŽ©Œ¹Ã×4Ûà Rb͉Ǻ¢½ó5—éà³€ ór¯-Õµ*[bCCQfM fc¤ŽV·øÓ™Z™æ{š™šì¨ª¹œªoï¦gepÒ‘ÕMÌ&ÔÝŠµžº¾EØÙ~ ¹pÝyg³ä†×¦™•ú~Tú‰#UŠ‰"fÁˆÜQ~•C̘œ3—3ù×1ZnˆŸ¯¬ÙÕ®#éãƱá±ØoßØí{íš›ÑdÙU”,±oUdU•%åTʈ굩’D‘™UÊÜŠ«Ž&Xröi›F-\oZwõ¾ç3®/¦œ-Jú¢Öà*Ù¨·o­]<°%=·aRÙTˆç»3/pnßY0T̽:ŒÌ©Ç‡26W3bŽè‡Ö^daÅ‚z°a˜ž÷T·ø¿5w^Ê°Q,[JŽ++6j[IŽVSÔ±¹V®šFF¯rá£"äûÔTTS|ì=$Í©1ž¸¤RYebÑÂf±Õ5š¬­Å¹>äÐÝÙ+džZZÑ­RãÎHÕœbbª¸¢®-ÅqÁI÷›âc|R¼©Vys¦œ&¾5SÞ~Æ+ûr*.‹•ö*²îWÍ+ŸflÕ±Ô#šùæz·õdk½V.dUÒ¯Nƒç.' ÄÍ6`œ3Æ)^×Þ:b‰»qF(™á5£³·ìn¼Í¸ðØi=/Ë×ÏŠìïÉÉùW—˜ñ™teÃ.:3}'Î^ ãê'o›Üxµkú«xy? ?c•þ´]}ìû»[f¶Ì½r¶²NUÇ$ð̈Ô|lÊŠÌ’eEθ«Sʪc3tuF-QÎbfô±8µué¤÷LUm-ë•ê¹µv±ÊÖUYëE#™§ ÐñjæãÓ‚éLzp)÷F–&7°ÉÅÑÌNä Áÿ|#E5“y­Z^i¡²'²Y ËgÎ)µ ""1ÑƘ5ULÊ«Ž™‘9Úµ}6ŠE¢wö½Ã1—M?KŠµëìì|~8¾VU£u!·êèg]LÚR$¼}SžÅ‰ˆØò1tµŠìÎÓŠ ˆœS«ôN¥¶Ò+ácÄF˜´â®ÞsO\»c%é±î¥Ô²¥ž‘f±ï<ÖÔê׿+ |²½ÅÈŠ²`ôÅ1ÇÖ=Ê—3ô˜&'¶b¬ìZõÓéña˜å0ú¯ìo¼Öí‡}èaž•$·­ÚkN™\÷¢6(]¹$Á‹ƒþæ¸"fN'Æ Æ7fN.S1/1b®)ùq‡œDü^®íÛrò_kJ)iÒ+vÁ‚̦G9ÈæË^Š²"5Që& +ŠåéÐ|c˙Î>4ÄÇuXqÄNø±1<殟j}Ž×Ž†K³jÙÑY5µÖe†–5M=¦×ºø#U³Fäc—4oEÁ©«†(}æ`®,X£é°Ämꥦ81{؉úY™Ù×[öØÜ^+.ðÜ[F¢¶ž«˜b¯JÙ`ãV̉Š6#­]. •WU4ÃqW«£ÓƵ»ãêÃN¾’1p¤u#ºß±šöIÁÍe‡MZ“>ߧWºE…ÍJž9‘Èänfª¦‡`Šˆ¿Jô™aÃ8c)\5Ý×æÛ(Å‹ìqN6'Øá‹€Þ8[唵±f§¯Š™cšxäåTÌDã–ìfiç"º5{Ø­UÓ£Aî,ºÏÞ¢b~š›6>pã¤r˜˜ê®Ý«!bÐ^ê Ç#**)ä±# §ŠÁyRÔ³D¯‘Ø`¬sQ\ØšÖfqLõÌi¦êmñeHˆˆŽ¨Ûò$0ð%{—«¿»ÜC~J²ìí¦ ?ÿ×Ý;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÐÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÑÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÒÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÓÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÔÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÕÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÖÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿ×Ý;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÐÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÑÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÒÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÓÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÔÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÕÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÖÝ;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿ×Ý;ã«Wi»ÍònÏ2ȹ( ^åêïî÷ç_’¬»;iƒ@ÿÐÞ‹^ÌKZaWeÒ‹Š&=Þ Zf¯œQWTô¡ÝÔñ7éø2èÏAÚÝOÓð:3ÐFv‡wSÄtüŒô¡ÝÔñ?£=ghwu¢´š^›;â¼éZqB²ZÛ¹WžÑ°-ê»JËdTÊ”n¬Ÿ•QÍŸ Ž™_QHŠÇqr&-V¹SCÕ\=Q=xðÒxW SŽß'Îÿºb¬r™¯iw®8|·.Â^Z»*Ɇ®Ší±‰Véj²Jø[2¶¤oj¶6=Šõ{š«Š£QU4å]•êœTŽø‰žÊσî0í§^šÏŽÎÝ}éáºóÙÕvë,Ëž¢ Šš¾¡óU:%‘“BùH‘?îk¨¯TbèLq]ã­°ãÓÆØf¿dùÁéKâÃ^˜ù£„Îm«—E=­MfSóe% UÒO]UÉ–~1î"•2=+XÜW2µÎcUT÷¼™¯V-;/6ÛÙ·Ò󿈧\Wm£ƒâWß«×C•{Ø°¾Ê†í²½ t²£±IfTvLŠÄ‘\ÜŽ\pâÑ]ÄΈÇ_¥§£¦›y>â5è§ÓWûožÎnõKÃ,Õ)u—‘µ9öΨ®wÝîK 4säOWÖEã2㣠1Ãè4ÎŽŽqGÅÃ3Ý1+<©×~«G|bŸ‘ÐìO²Þ­¹¶]௳(¨m¾š+>)ë²·î±>WÉQ"Æcöµ™ÞäÁ¸#×bŠLaëšÏ(Š÷½±3¶‘³iÜ–ø$á-xF¥¯ļmMVêIù$éQ—‹d¬’)ª×²F®Ds]™ª˜¦*¥b'}cnøšKÉšLÆè‰å/Å}øB·è¯WzîÙðUÖr7Ú:ªwA"I8¶5‘Èå’W£‘º­F9Î^„_ü)ÛY­";¥õ»|)Yñ„%û¶¸X¿¦[ •UG[hINꚈ¤ã©ä‚'¶T…²,.{šÆ9V7»:¹44÷ Sîцc³6Ó¡î/Ç\ÄòŒ[;6sØŸxy¶[w¸<·kœ’¹ £•êL°H¸'ï’µX¾Ç"*¡ó3o»añÅaŠ×³¢QÍëá®òØ•ó,Ë +Š{’š²¢IꥎJu™ÑĉþèÖµUêŒ] Ž+¡‹&fm©²öÃ5û# +Æ‹âÃ_QOÆ^o ŸÂ}§WQ$\ÇOw ´–.2\ífyÞ¯Hòñ|jåÊï[ ˆÝ*¸¢}üÇ_¥Åá>—ÏÂœ4úhŸLy½ÖÙ'=\Ët~j›*ªÕ¤msj\‰LƽðT¢12I•í\ÍÌÅT{QqnŸqaœ1‹~¬î½6sï0ΩئœwúŠèðÉym:KµhZÖD4tÖü¬Ž<•+,¤´n¨…eû›[šG1Y•ª¹qn*®UDúņ˜´õÓ…6wW¹ó«‡W>;+ßN÷_¢á†;zòXµÕ0KONå¼)™Pî-ÐP:6q²DÁêü®s1_¹¦”U̦1Š‘8§ô¯TõìÕ4¤ø4œ51ñã=3òì~왯¶$§Hè¨&çJ +ºÛ:*ZöÍ6jx8öCTÄbqn‘šs1^Œr+N +¬s¢&·Ã‡W +DÄLvÅyõ=ÇTÅ-8©ßZOfÎNËÙÇÚtqº‰Žkmy'I4Ç'Ƕ ¹tã^ìاÞáæ±âŒ5¶¤ï´L÷W›Ìg>ª+©Yˆï§$ƒdp¹k^ÛÙ •cÙ±ÉD´46”µsL¬Ë gƒXåt¿sEDÅ­ÃW&„_½3\Q?K‹O:U–ªÆ}6øÑ/]»J¾Ö¡I«¨E*É+VHÉÉÖ;31o®Ôlˆ-Ge](§Ä[“IÙ3ÛwÞ=xÿ×Û.l›ÓhQRT]ʆGWGTÊ…†g¹ÕFsk\­G#³5Ù\‘ŒUELO-17½c¶)ß{x˜µ¶öM|m(òðA|¸D‚ñÚ•Ô´V}u§gÒÙÐÒÁ;¦j¶ +…™e¨›ŠõÌ­b5ŠŒba™Uʉ÷ƒÞóǃöaŸLõòy;yaÇ]ž2‰øx¯«»1ðƒcÙ•T¥°È&’9g|upO54P$qS¬kÊRtœS£z#^¯k¾ôÊ+Ž#ì{9Χ õÝØÖºgWÔmݲ1E~JoY +® mª¨ïŽ^)9æ˦¤¦Erè’:9av}3ÓJc£=÷DkŒQxæc²˜#ûl³É3†g« D÷⟕ß¾/´ëNžž–ͬKBƧ ‚ª¶W泟;¢‘"‹Šz9²9s£ØèÜ_[µ¨{›µqÅ«–Íœ-â÷*tFi1Ƴ·ÇÁ"¿ƒ«ÓYy!¯’žW]Ô²*ð¨U}4­sß™‰Å¢LÅWåéS Ø`¸ ÈÕ®>5)æÏIªzñ`˜§œ3~O2ãF˜êÃŽ&¼)Š>WÕ«àRØýçWNÍZz*ËBïòYž©q¦c§tÆ®V?.-‘ËÕŽF½ª˜b{ŽkŠ1^‘1߆†ƒ1jÍ{±WÔ—¸&»V­Ý³jVÒ¦¢£’¦¥ó2–ŒH©ãÊÖ²5{c‹ª®|ŠÔÅÎV§ªÔQ­ügÚ8¼¦ÙžÏY¿Wb÷Ywº;Ívéék$–Ï[:zz©ßNˆ•f†fÈØåÇ+œô{¨®k‘ZäTÀøŠÅc}6}üSI§ +󉧓®Ü.í+iÝG$ÑÍ•fÚ4õ2&-WÏ[4+˜Ü>ñ^Ù:WL½'ß\îч }æŸ$®uëœSÎ1y¤¾®…}þ¸–Í‹@¬JŠÊI!Œ\­ÌäÁ1\ý£âbÜ1ažìQ?#Ü3NéŽø˜t[‚Ëj¶+ìÖ,XÛv|Ôع~ý”OsèõS;“Lti>s0êŒ\qLò¦ùYx´Îb'¿ü¯•jðGoWÞ s2PZWi¶%L‰*¤°HÎ9s¶5b¤­w‡ß1QS(i™ïõÇƘ˜íŠ³ÁïtÏÅŠLwOÈøWO‚K×E%U™cYÉ‘Qg5Ô-cŸY<‘¤mïâ#|¢7-ê®zæUF7¬ÌZãüh·TMçÔ`‡v¾øêõ»µëàÂÞ´x(¡±(vÅ›KA%+ÜåâÛYD‘¹˜¹Šæ+Upû×. gâœX§=ÓXŸ “"# S©ë‡Êýáµ|eÕ¦W3’Ù¶U£CVär£œúÈ"b¹‰†œ\×¹UpÃ>1áŒZ¢-84Ç|SÂàÅ1IëŒz§»Ë/ÃÀ÷7–çÖÙ”õvuEKeR:•Õq±ó×»"GŽÆ:¨¯‘¨÷«äväM?s:«3×ê®É™ìÝïšSduMøm¤xížQŒ¿c5ð[›=”ÚŠ~Tû]×çvÔ‘º•#UËŠH”ò=rôgÁ1úOpâø5»xGöÌ>&(ÛŠcï<6ÌÿnÅà‘¯÷vÓ/%¡hØVM‘Z–¥57i"+¨¥§kãdÌc¡•%#š«+^ÄÓƒ— ©ZíøX«^Q³•cZV”ú˜¥7홼ö¥Ë£r- ¿zëížÇÃ5gR1ÍDk•ô«>uV5­Eã­FèM(ˆˆˆ}Äü.8ëšbÌmÃà ÄöÖ®õv¦¶*(Ö´0ÃSÆJŠØç³"Häqr"â±åW&ª‰Š&'ÌZ7Ò+ÚÒo4µvv?,Õ-iØÈ)Ö‰)QÑH²9$uNgbÇ7 <¹UŠ«Šªa óm'ú^ìÙãàù–}mï{l~UIHÅ‘[K$¯^%üV-H1jqˆ²zª®Ëƒtôè>æü)ã³Öøêã_ ¾§ç–ºú¥îeÔ¥~H˜³?#¨øæ§çeÅ&â³;"&\èÍ‚âyUçãê}O]9xzßBª®ô¶¢ÕHi©]tìuºW£¥™Xüí™2úŒG#Üʨ®\4&?3Zq®ÎÊGËS®7u÷ù<éj¯3ªìÖÍML>™î­serº9Ñ•‘&\ÅU“;DFèÒ¸}ÍçwW“çª7õ÷y¾u=uóu#壣J—Vä¨bLõci8ǧÇeÅÒäF.EDnerc‚"Ÿ1ÕÙ·¶“no©ëðï‹ò«ÎÑ­¾1Ãl--%ä/6£æz$¿sEw¨Õâð“3S.lZˆ½:ÚsðÙãw»+ž;}O°Ê‹ym†Fè ä<‘\éGq©S"7 8¼˜®lqÍ‚aìõÓ—©ó^>·Ä³ë¯¤”vCª¨èÛ<’*Z-dÏVÅGª, +­E‘Ù’4TvTÁ\¿Bcï_ +xÒ<.OËáYsW]|ÛAhº +:7T²¥D×Lôd”øÇ‹å\¸²LOU¨©ê·N•Ãæ:»vöWËÅìõölí§ŸƒëOSx[iU²:zu¥m+]Nõ‘È÷TbüÌ{pÁ±¢#0r*ªª»F„ÇÉ­'Ww_7±JÇ“ñÐÖ^·ºÈå´­I"zÚ9%zñR$mV¶ [÷F«ó"«²ª5pÅp>æü)ã³Öù‹q¯†ßSñ­uôä.rQÑrŽpÈ㟓‘qøq¸åÇŽâ}l˜eÏêæÃIóUçãoÔÓm9xzߺ®®ô²KY ¥¥sc…‹g+¥z,²¬nW6WÔj?*"·2«UW SÉ­8×Ãg¬ëô÷Ï©úiêo«è[-=:S:™îªrHå{*&VF˜`è×1rª*`ÝW¾¹ÝÕßäøêý}Þo™M[|CBé©(Ò¡õjÚ¶¶g«MšLåÅÒeH×*¢&.rc¡1ùŽªîÛÛN®~©ëíÙÙ^¾^%£[|YMk­-%¥Íææ¾g£eoÅUQª±®uz"77ª^•Àò+N5ð¬xÒ¯­•áOO…Ÿm*-ÎyXøˆ9%Gq™ÝÆòŒødɆ^M9±Ç6Œ0=žºrñõ>c«ÇÃÖø¶umñ’šÇZªJ6K#—œZÉž­‰8·ªq +­E‘xÄcW6_U\½(ˆ}uð§ŽÏ ¼Ÿ—ÃkŠšÛâÚ +çEIFµ-«FÒ±Ó=úlÑúò;.-“*ȹQ1kS+‡Ìuvíì¬Û•9“×Ù³¶ž~©QSx›]ZØ©éÖ´Ìu+#‘ï¨\ù™"aƒcL#ÁȪ«‹´hL~ff“¿«»¯›ê)XÝ×ßÕÉùé*ï;å²’zjf²HµêÙ\«ÈÆ+[ +eõدW¢¹ÙU\1UÃ﯅:£_t>U%mï}žéé)Pú•mc[3Õ‘ÁŒ˜>%Vâçà‘âÕÁ1s´èL~cª»¶öéêá_ÔõöììÕé¦ÞÒЬ½ì¤µMIH飕¯™èÙcÊÌVeFª±Ù–DDndÁ¿JáäVœká_M<^ì¯ +}•'´}§Omó»ãH`ä)JŽd™ÝÆ­Fw"±[†^LªŽÇÊ©†{=~>§‘Õξ·Ç³«/tØëUIHÙ$ÇœQ’½R/¹9SˆUjqŸtÊÕÍ—ÔU^”ÀúëáOžyçá·Ôñš¶ø%c£¤¤Z–Ö#)š³=ú^1ˆ²H¹ql¹ë‘[™˜àª©äuvûîY·*×MÛ;i+èÔÔÞ&Õ׶*zu…”Ìu##‘ÒN¨üÌ•0Á¬EHðrb«‹´hL~&´õÙº”ëçàúŠV7uï¿W/…%UätöjMOLØßN÷V«dr¬s#Y•±&_]Šå‘ÎÁQ«†•ÃI¼îêßZù3ŠÒ7×nêR~Z?u·Áhas©(Ò¡k²JÔ™ùŽrq\¸¬¼VWdTËU¹°LO˜ê¯>éùhûž¿ ø½õõw­¶95-+–8Ú¶vy^œkø¬U'Á«Å·ŒõQ[›Ôõºt®5ðÙãs¯—ŽßSèÇQn­§NÇÁR-3Ý3ÑîãQ™™XÖá‚Æ­Wª¹U˜i\>§¯•>§»¹×ÃÖùV}eí’;j©iéîrFJõHÅ*µ Å©Æ"ɃU]—ÔõºtsJð§ŽÏ[çÏÃo©êš¶ø%K™IFµ-­Égäu'Ôã¹qIxµ{²"+s£[Ž ‰äuWï\6ͼR•ù#jÌü‹GÇ"qŽv\Rn+3²"eΈÜØiM•û×¼ ë§/[÷ÕÕÞvÍj¤Ô®Ž8êt¯E–ecÕÍ™2úŒG#Üʨ®\4!ñ6ã]›©Hùjú‹ð¦ÞÚÏÈöÓU^GVÐ6Zzd§}3ÝVæÈå{*=L¬2àè×1rª*`ÝW¹¥gwW_'ÄV‘¿¯»Íó)믛¨(-TºµYRÄ™êÆRñD’7eÅÒäH×"¢72¹1ÁWæ:»6öÒ~WÔõöìì¬|•siVß(é핤££|±åæÔ|ÏFÍ÷&ªñê^/™sz¨‹Ò¸®{{+4«Þ¾ñÛê}”¨·¹á±¬rH®tœc¸Ô©ÎˆŒFᇓ͎9°L0=žºrñõ>cª¼ü=ogW_'ÒÙ+UGFÙ¤{’Ðk&z¶&dzµ`Uj+Õ\ŒEGeЮ_¡1÷exSÆ‘áZ\ü+>4qW]|ÛAh::7T²©F×Lôd”Ù£Åò®\[&U‘r¢*bÖ¦:W˜êíÛÙ_/³×Ù³¶žo«=UâKFµ‘ÓÓ­+iXêg¬ŽG¾¡Uù™#pÁ±¢$x9Uqv S¿«»Íï\nëï~*ËØ÷Xü¢–‘©$/[K$¯^*^-ªÖÁ‹SŒj¿2*»*£Q Wîi^ÙÛ³Öù‹sðÛê~N]}ynGEÊy~Lœsòr.;36\xî+ÖɆ\þ®l4žGUyøÛÁìõøxz߶º²õ±Ö¿'¥¥sc…‹gg•è²ËŹ\ÙðoÜÚʈ­ÌªÕUÃÀù›q¯†Ï[Ø¿ +xíõ?U=Mãu£FÉ)éÒ•Ô®uKÒG+ÙQ‹2²6უTWâåTTÁº4®sJÎî®þ¾O˜´oëîó|šJëèú =ÓQÑ6¥õjÚƶg«#¦Í&‰U¸¾L5ÊäDÅÎÓ¡1ùŽ®Í½´óð{=}»;+äæЮ¾Œ¤µÝMGFé£z%œ×Ìôl¬ÈÅUQª±®uz"77ª_¥pGËá_MõòñÚûN¨·ùáѤrI™²qŽãV§:¦Enqy0\Øã›F ë§/SÈê¯?[ãÙÕ·ÊH,uª££d’fç$dÏT‹înVñ +­N3åEÍ—ª¯J`}l¯ +xìð»Î®~}O +šëèÚ +ÇEGDµ-­FS1Ó=úN1ˆ²H츶\ŠõȈ­ÌLpUTùŽ®Ý½•›r£ÙëìÙÛO7Ò©ª¼Í­´[52Ó²™Ž£s¥r>J…Gæd©—1#ÁÍUUÅÚ4&>uNþ®ï7»+ºûüžº:»Ôù줞–•±ÉN÷Z +Ù^«ÈÆ+[ ++}v+•è®vUDF®TúëÔÙÛ_'Ì[|6¿u×Õh"s¨è’¥kòHÄ™ùŽTã츬ÜVWdÃ.uVæÃHŽªîÛÛIùhözéËÃÖý…eîb[š’‘Ël[7<ÏN9üV.Iðjñh’z¨­Í‹tôè>z¸×Ãg­ï_/¾§Ñ†¦ð­«NÉ)éÒi\é¤I²6§3pc† Uz«•QqDL4ŸS×áß>§ÏToëî|z*ëèú+1ÕtM¨}B¶¹¬™êÈàû¦…U¸½ú#Å®F§¬í:#«³om={=}»;+äW×_FQZ®¦££uDs"P5ó=,XG‹¦Tn,v+&ÜÉ‚7N•Á.ÞÊù=òñ§›íISx×™Œ‚h’‘‹#¸Õ©ÎìXæá‚G—*£‘qÅU0Ðy5¤ïêî#«Åò¬êÛá#,eª¤£c¤c–ÒFLõH]ÅbÔƒ§‹'ªªì¸7ONƒîi^ñÙë|õq¯†ßSÕ5uôJ +‡2Ž‰jR»$-YŸ‘Ô|kSŒråÅ&âó;""·2"fÁq>#«ÇÆÞ©ëìÙÛHõ¾…U]çmE¨ÓS,L§c¨UÒ¹,ê×ælÉ—1ŒDsqUErá¡&´õÙÙO7±JÆî¾ÿ'4ÕWÕvke¦¦HL÷V¹²¹]èÖddI—±UdEs°TDn+‡ÜÞwuwù>z¸×oe<ß6 +ëêê +WIGD•.®VT1&z±´|kÑ$c²âéx´c²*#s+“6Šy]›{iæO]9wÃÝhVßã¶V–’Ïͨùž‰2ñH®ãðjñh’bÔË›à½::¸×±ãJ½ëåã·ÔúñÔ[ëkÇ (–‘\ùGq‰SÃ.eÍŽ8¢&³×Êž>§‘Õξ·Å ®¾o¤²SGFÙä•Éh5“=[y_‚ªÔW»2FŠŽÊ˜+— Š/›{iè«Ýý»;+äⲺú2‚Ò|tn©eJ6‰Ž™èÉ)ñÊän,““Õj*bÖéÒ¸y]»{+ä÷g‡=ð}yªo +Z•LŽžhÛJÇS½drHêœÏÌÇ· "1QȪªªí&´ý]ÞfÍž/ÃgÖ^×ó?)¥¤o–ÒÉ+׊“ŠEjA‹SŒjÉ‹U]•Q¸.è>æü)ãXõ¾:¹ømõ>ÅÝžÙž)ÖÔ†ž•6$…îz:wÜœìȘ=ÍÒö¦(‹¡O˜´oëï{7áÕÜì' ÿÐßÀ|j˽eZÖÔRA%D©Jø˜é°õEsiPFÁö@ÿÑßÀÿÒßÀÿÓßÀÿÔßÀÿÕÜ‹÷,Î,ÖÖ×$¯ã&Žž d–i¥vVG¥Î_j¢""ªª"*žW«•}öžiÓ¬Þl»BQgÚ0ÕÙm…óÑKNÞS’eTñµ{$c°r#˜õDV9L¨ŠÛ};'eûëØòÝÓ=±òL.•ŒTG9WDUötü>“ÀtÌn®DÅpM?Jý+#TG9\¸&+Ò¿ˆ¨Ëñd¾ó>ï$‹ËHÚÕn¯éiÇï±jâžÍ'‘5¯ +x×ÉìÅ)ƾóvÎ1º4¦žƒ×Ž8èðUÌšÓô{@òk›"#š¨¨ºQP##Ã2¢b¸&+Ò¾À #[Ò¨ÉôÕï½ò³8=°êí›IÎm5,k$ŠÔÌìF„ÑŠþ#ÊøÌG|Óå{^éžè«óQßÛ*¾ðMbF®ãᤂ±\¨œZÇ<’FÄk±Òìbv)‡FWMIÓΕ|j·¯Ë2c†:zp>Ož6·2¹:qÅ0••ˆª˜¦-LU1Ò|â1]ÏhëW2øY÷îÆ¥µhs$5Q$¬lˆz5Øᙨ«‡G´û˜§tO|Uó_LÇtÓävT•ŽvTr*áŽéÃÛù¾ã¼PÝ»>JÇÅ,èÅjqtìã$\Ïk1kqLQػ؈«ôÛ4ß1ç”øE_qfb*72b«‚&?NàZ³ï™j[•Ö42*ÔÑ2 %j¦„IóäÁqÒ¿sv)ôhöžDÖ¼&ž?+ÙŠSŒWÆcävw½±µ\åDDéUÐzñÒ/ÏuÁ¦¥–¥’Ìúº˜é`ŠcŸ$’b¨‰Ìj""+œç9:z|­f#®ká3è:¦w|³é—h´íÙt3Õº7½!‰ò«#ng¹ÕvV·.\0DÇJà˜ŒS§“Ü1W®Ëµ¢µ(iêò¾$ž8äFL™Þ1¨¨×·LpTú>¦)4|ÄÖ*øÕ7Þʤ¼töäT¬¨¦–©ÃGØÇb¸ôã#pO¥1_ óÚðˆžýŸ!3Jq™Žè«µ¶V9ÊÔr*· S)´=p“Fª‰™1_ÇíáZ÷Ž+"²Š™ÐÍ*ÕÌ°£¢fvÆ©¤Í*♨̨ºqrµ0Ò#lÓ„Ïq;"½ž/»Æ³2·2b‰Š¦:SóÊHÕÃM:SOOæÅÓFÔEW""®ª©Óìüàs$¬‰\äLW +†•úö?ÿÖÙ>,û +Ú£²¨m*¹èfžÓ,úª|3EZÆÈøUs#˜¨¨×3+ÑZüÙ0ÅÈyÕ¿¾§ÖÍcº¯gdMm²¿]ñ¢¹p±xï…{.å¸úJʪ{.’­–…$Kß•n"¨3òHÕkœÌ®Èö¹UÕEÇï/ßLuS3.'tÖb~M¼‰ÙÏe9aõìì—Tá’Ʋ¯-•Â­§ki¬³8ºz9\åGÓAÈ ‘‰ãê6Y$“>\8ÅUEÇ )Š`‰‹Î9¯,Xb#²\ZǧT`¬sŒUŸmÎÃ|.UyjxA¬¯ƒŽšŽÅ³ä¦sœï¸HÊ ¤l‘`©’Dr5xÆàïU}Ñ:uÌ_¥½vËg“ï´DÛDlíʼnð8e}%ë±íêÖRGQ[e]êY'¯´*\ÆQÈúwÏÑÆÆ«¸÷ât¹£ErFÜË‚µ=Î3Šce3"6^¾÷dpÛæ^dF¨Ã¶¸+›b³Çdò‡z¶îÍ‘QÂ-«i¾Ž¬ô1³qëxÞ1Ïž5~l1̬Lª½9Sƒã64Æe8xÆ?'ÞVÞŽ¼|'›×eUÄäàÅ­z*­Þ¯r";Q,êm?1^ŸÆkî«æ~ Å÷ü,}Ílƒ#ï¸Ý +î\ØlN . 5™KO"ÛsP6ÐulÒ±µ8QÍ,qÏ#[#Õ‹"5¬*±}XòåUCë3áƪbšqŒ··¯—Ô|S]µˆå8ý\Öƒì|±g»[”–‰"†ÓzGK@ù¤†].| t±Çûò¬™™²+SEDò&¸c¯n-¼+n[aó? +z¶aÙÆ—ç³Ú]ú]Ëÿ_ëËMyZ×ÁfØ´²Ñ$V¤-•jVz˜ô¦Iѵ¼r`æ#ˆäúf™¦sמ¸÷•öòSï°GTÄÖ7Ϊz)ßÅ×x%°báôØV­àcªj¡ºvEJ6UUoéçwæt,©†-râ­Ìì0U-¤aœsÕƒ•pMPÄ×LuStbÃD«ö[YÇ—•G3c¦Y’5{\™\˜ô*c¡zPžovÁ÷è…Xzþë‹ï³(¢ÝàÆëZ÷êÚ¢¨³áu5Ô¤H FåŠ%ãëÆ7kÑQ2¹=féÁQUMs~9ëŒQIìÁ,ò§ß`øf¿]oV´Õ÷ŠÈª¬™_$—ŠY$‘Ú\¼z«žå^•Ó‹—ñéé<÷\Rs>óèÆ{Ÿn¸¿¶:o>Æ¿´—"–ÖµtÉtªÄȪ±=V¢•^Üp~ª­Çª¹“N +c›²qÎì¼¾[1øµÅ‹àÓ¯77ä8°i,wðei@å–%|u“¹ïtµ m"½™ÎUYŽkUˆìraêá¤÷:oÇ*f{}æÞݳÞùœ1<3)#ßììÙÉÁUß±îå×àâÛ±ÑÑ­´y,óµÊ²O‘U,ñɧ×djÄVµqH–6á—éß SFü»oüs‰¯mißFx汊g«3û’”î™Ù×w̸V•bÝŸxlåþZ³Þ‡QÉPŽU•ñI_SÔî\tÄØ‘~ç÷­ÈŽDELO0ìœëÁìèægºc•âÛ®½X¦ºâñ<êúTw:ɳ¸)¼vÜqc]QlÕÄùÜåsÒ$·Sšª¾¬~ª.FàŠì\¸ªŸ#/Œà¯×µÎÛ‹Ç÷Ç —^ͪ£áFÛ’ú1l¬×>óŽqG£Åôì5ŽÓµn½à‰ÊæÛw®Ò®c½è[gÕSÓÿv¬P±ÉôzØ™à®E)=dÓŽ/}òÄ>±íŒSõyq^1šº6©mGto  ë2–ªÑ¯©eEBMRúÊä{j[5,¬HQ˜7.9\õdpá‘Õ9{b:ë‚&½µÛ^O¼sI™Ýdî¦*S»g‹äX•Îº’Y6¬ó¹c¸Ì–É“\ÓÉUN¨¿ÈqS*cï!羘Õ×aç5}ú ¬mÃÕõrœQö3/¹eÜ{^º²Ç»U´V}e=-Ö†¹ñÚsMm©©¨‘ÕS3‹ŽLdbåLë•Ñ£‘ZäÌ£3 F¸¶ˆÁ†'®"0ÌW¾< µiŸ‹Ó}g Óº|^û:ȵ¯ÕU‰d̷ֺi©î­=Ke´**¢†G>gÇ%TKĹêôc#N5ícØŠŽEEzŒÉ®¹”Œm1\33<+>Š<óLG^,{/&"#"V—‚ +ËëÚ¶¢ÖÖÁfqL–)¥Hª#cÍ*Ç"5Ò. j¶G·2b«£2›c¼ÎøŠøMxmòe†Ý“4ñŠq¤'*Š˜iZŽ•íb*£Q\¨ˆªåÁOÒ«¡éS7ÛÖêúf,ˆéX‹#¤ÅÉê"¢ª+´èLWÃBäÚÊw=ŒI®{UíLÉ‹š˜b¨ŸJiM)£J{@õ¶Ò¤{ôš5kÝ‘ªŽnv*™QqÒ¸¢¦ §_`Ú4‘6W:hÑ"Ñ"«‘š1õ´úºNñëÝÊ¡ãx¬íÏ—>\S¸á›œ1ÑF'¯–Z4’¶'6hÕ%Ñ£š¨ý +¾®:WF:T­*F1ïY£FÆìŽUspk´zª¸è])¡téOhŬ¯sF£˜ÜîLÉ‹Z¸éTúBé]ñí6º™ë6V/™™ƒ“×DLqoµ0\qO õãÁ-Ef~:<¹ø¼s&ñË—~ût㣤'WÓ3Í+ŠLÒbäõS]§ÕLW @òJ¸ö±$ngµ^Ô̘«S UéM)¥4iOh ´iÆ=&bµîÈÕG&v”Á+¡t& ìûF–&ÈçLÄH—ª¹¸"àí:4*.Ÿjíå0ñ«vçFçËŠc—1ç tcЩ–…,©›3&ýMQȹôcêéõ´&:1ѤhÒ5zÍ5ŽÈå̘5Ø¢eUÇB⨘.œUÊ=Ž¬¯{F£˜Ôs“2bÖ®8*ûBé]Øx8mm;Ö4I«"+˜ˆäõ‘U¾ÔÁSJ{Pôxs"±“G•_Å¢æLøåËŽ?}ŽŒ:qГëécãsJÄâ“1r&DÃ]§ÕѧN4æ•p,Œng5^Ö☫S U¥SJièÒ€z›hÒ=Œ{fb¶Geb£“;N†®:WBèM:Øö$m‘Κ4lK•ê®DF®Ó¡t¦…ö 媅$X³·:7:·ÅŽáÓ†)ÓЩ–…,‰¶V*KúžEÏ£WO­£NŒti…´©Ç=f×ñn\ÍÁŠ&U\t;DçÀc«iØçµdb,mG=É‹Z¸à®ö&…Òº4/°çFÔ‘Š²5\ÄG'¬‰‚ª·ÚšSJhÒ‚ƒÁ-*Ec^“G•ÏâÑs·~8eEÇK±EL:qÐ/´)bIUÓ18”ÆL\‰‘0ÇÖÓêèÓ§ @ö%\ "D’7;›™1Vã†dNœ4¦ž z™iRHÈÞÙ£VʹX¨æª9tèjã¥t.„ö/°­*HÙ#Ý4hØÝ•ê¯n ]¸è])¡téOhÕ«²,k#sµ¹Õ¹“oFeNœ4.žzÙhÒÉÅe™‹Ç&1àä\艎-ÓëhÓ£@ñ[J¬W¬ÑåGñj¹Û‚?¹UqûìtaÓŽ€=Ž®¦bÈ‹+bj9è®OUQ]§Bh]+£B€mm;œÆ¤ŒU‘ªæ"91sS U¾ÔÒšSF”¶ÚTŽc^“F­{ø¶®và®ÅS*.:WTÁ4âŠ2ZT‘$ªé£D‡õEW52hÇÖÓêèÓ§ @öò¸8Ô‹ŒnuntndÍ—3aÓ†:1èÄS-*I›4j’®ª=ª]+ƒW+¡z=Š´¨ØǽÓFÙªöà×hÐåÇBéM §J{@ö­e;dtk#Ìnw72b\}eO¡4.•Ñ¡@ðe¡K'–V/Šèðr.tDÅUº}dÃNŒtiÇœèògããËŸ‹Ç;pÏŽ\¸ã÷Øèçb“ëécYQÒ±$GI‹“ÔELQ]§B`˜â¸h@<’¶ÏcF+žÕ{S2bæ¦Q>”ÒšSF”ÖÛNìcÒhÕ²;#Üí)•+¡t& ìûNŽ&ÊçM$K„Š¯j#_[O«¡Qtá¡Pw+ƒâ¸ÆçËŸ.dÇ.8fç tcЩ–•$‰›4j“~¦¨æ®}úº}m ŽŒti‡ZtlcÞ³Fcø·*½¸5Ø¢eUÇB⨘.œUö:º{V#£j=é™1kWSèM ¥thP8e}3Ö4l¬U•ÑàäõÑUºt¦ +‹ŠcÒ€x%§F¬GñÑåWñh¹Û‚¿¹qÇï±Ñ‡N:ò}£Kšf'ˆ²bäLˆ©Š+´ú©†8hÒšV@éHÜînv·2b­L=dN•M)§£H¦Útr27¶hÕ²;+Üí:¸é] ¡4è_`ÚTq²G:hѱ.Y^ÔF.\t.”иt§´rÕÀ’¬\cs£s«s&(Üp͇N0Ç S-*IR%lѪMúžjçÁ1õtúÚ4èÇF8[N¬sÖhÑ­«¸#ñÃ*®:Š¢aÓŠà±ÕÔÌtYX‹QÏErbÔ\UÚt&…Òº4(×S=ѵ%b¬W1É‹š˜b­ö¦”Òš4 ¶Útnc^“G•ÏâÚ¹Û‚¿2¢ã¥Ø¢¦8¦s%£IJ®š4HtÉ‹‘2b˜úÚ}]tá£HÔ«dH’FçVçF☫qÃ2'Nzzõ2Ò¤‘±¹³F­•r±QÍTréÐÝ:WBô{í*HÙ#Ý4hØÝ•ê¯n v\t.”кt§´bÕÀ’:5‘¹ÚÜîndŸúÊ(šOF…^ ´)dâ²ÊÅã“ðr.tDÇéõ“ :1Ѥ<{`©†¥±½¯F¹Z¹U&…EáSéN”Þÿ×ÝÛÍu¬‹ågÉgÚ´±USɆhåj9¸¢âŠžÇ"éG& +‹¥òb¯bhêvg·.Dz*¬ª{*ÒÖ*-CË*· ¼cܪ÷á‚a™Ë‡B`}WÂkεù|±NHO†­~-ŠÕ⬧SWÃ:ÕJÉ[WM&#ZÄXêUtºJ¬X\åÃ2"!ó†7ï‰Ù×Jlð½èúœ[·Lm¶Úíñ²Å-Å°^Ê溒7s„,§ªÅîѲ5­µŽVþeSÜ~þµëšÏnÏ(|á÷´§TR;"¾n½mp1qïS*k¬Ši¤d ¥E{qE…¨¨Ö=¸åz5rçGeÇÁDí¯‘²‘V}8x2ºôõ”Œ '³éÖ’žL]™ªaŪãë3ß_™tôé=³3¾)%¶nšÃäX< +\k±TÊ«>ȧ‚V$­c˜ÕÅ™0‘ŒÅW+Ÿ¾7§Ðˆ|Óe:¦)=›¼×mxמÿÝ©àæìÖ]è®ô¶|.³¢dqÇN­õØ°É—éj³V¹ÕLQQOq{í²ò6>­Øº–E̳ÙAeSGMNÅs‘‘¦¹Ë‹œª¸«œ«¥\åW*ôªžÌÕå +øpau8@–m›:·ÂŠÖ:F®9\¨ªÅÁS3QXìXªšZy&¯ªì£²SÝë6–Ðu¡;PèL²50^*79Ìg³+UÎTOƧµ¿‰žØØù§…¹ÓÉí¶ìZ ÉA=| žš¢7E,R"9¯c“j¢ô¢¡ó1WÔMzÈàîîX(¼–‰ŒU¤e +®.s–ž5{›¹Êª­E‘꘮>²é>±N¨˜›Mû©è|ÄRbcªÝõ|»Gû—kAgÃQe@öYÑ$É‚§"'˜**ǃS;® Š.êšÍæïcÞÅ"Ðû–-û÷uiV†Š(V’™ÔpdL8¸æ¹co±ª¬jáøù˜­xÄDöEié>I™ç7z¬þ®å”Ë5”ô1FÛ-¯m5î)#FiÑ‹UZ¿ˆLVû©ËfÏ{Z÷מݾ2ø÷sÛ•tmí 6ʧ§¨Š7EØÕõíÈŠªW~üæ¢9ß¿*žÆÇ“µÑ¸àÆàöŠ’¢¶’š[VT¹jcG*'<ÌÔvÈôcžG*bÜÊÓî´¥>.îÃ=óšVµøا¿ÌzRï>»œÑ-‘ÈbäsJéß •Ò>n=ÎTÇ¥dõ×òˆÙN§)«êvÖ½u¯8§¡Åo—nÒ§´éç ‰ñÚ®GÖ5QpÈÆÆŠý:pkß̈yM”ã^u‰¯ƒÚí¯ +r¥>WêK•a¥¸Ûq)X•É&ãÓrÄŠªŒv ƒ‘W.dUn+‚¦*}DÒ¼nù¥¸Yì½w:Å¿+CkR²¦Íz5辫›Ðæ¹0s\ŸCš¨©ŠéÒ§ÌÅ_Q4~:>îåŸECE1ÁA*OM[‚G"#“:~W®ì\¸ª«•W\OglÄõÄR9Å=šuo¿}}0ì–•MkÒMISI ñº)î‡1íV¹«ø•QO&+—ÔM6¾Æ°,¹8Êz8ãw#ŠƒEþ;E›‹‹e¹‚~5£Ukô×㲆ÓJu[‡µ=81ºÈû*FÙñ5ÖCxº'7¬ ÊÈÕEE˃[‹W® Šb‡Õv×®bœŸ4ÙN5æõXݯjOiÙödTÏ#‚á#³= G®—£¹—Jâ§ÌE"O©šÍ_r–çØ´V1ÅIh8‡Sr|=N)ÍV¹˜{ªŠ¨©ìQŽ5Å'nÊrˆ¡†tMbõ¯:×Òü”×îÑSÙtðÐÂȬœ¼…n X +qiôaœÏ̪}Î)™Õ7Û·µñb"^[_‚Êà²éX–ܶÕ%›U²«ÕÓ5ºq“ïÜÔûÖ¹ÿ¿¹¨Šÿß•O˜÷±H}b÷×öêzkx%¹Ö•©G=—NømiÛSZÅn‰ånLý:\œ[;¨#e8Mc¶äíÛ¾)Ê”~ËãÁ¥×á KfÏŠ«ˆÍÅ«ÑQZŽÁÜZ¨¹‚fbâ×`˜¢à‡u-zoO—JûCM ©fA;)QY ++räb¢"±2eõÑýã‘«‚ÞjZ(ûkt,U´híITQC%=;Ѹ,QI—;‰‚#W#taûê×lÎû÷ÔêˆÝnê=÷‚ìÙw®ž:{F•Ç45 kÓI`zIÓñµíG'ãCκî·u>Wµ¼oŠKçU\K¿[%§$´Q¹Ö¬,§­UEÆx˜ÇFÖ?N”F½ÍNSæpÖ)ƼöyCÝS²w[¾¿+ß̱)k(«#¤³PÓº’è‹Œp¿&hÛù+ų”>ë¶g®oßWÅ6DuE»¨üü]šZ*J(è"luK[çW½ë#týöiïÎå>b)O©ŠG¥=S5¯ÕMgŒÖ1zb¥fÔ‚Ô‚¢‚)#µ•®­j¢á:µútàÖ5º0Јy¦)N5çXšø=Õ5¯])ËnÏ}E씵yד3•ònGÇaëq9óñ{9½oÎ{1Zñ¿œ¼‰¥#u¼<¡ò(88»6e=—OOA#²\®¢j"á¬nUštzs~SÞºð§-žPLל×þR£ƒ‹³WE[E%N‚º§–T±Qp–tsÆ;Oßcûµ")O©šÇ ¬Ï¦jòv׌R{)OFÇÑžçص5µu²RÆéë)ÛI;Õ4É s«cwä§þòŸ3‚&&:±_ŽÊzQŠbbzðÛ†Úú^Š[`Q>Í|TqµÖ\N‚Qî1½Íf­k[ôèD>çl×®”åXŸ’ŠuV¼öÇË=ïÊœ]–Ò6‘("â[[Î(̪ã¸þ;§ïøÅÏFo ò"”§ÒÛ…üåõ3ZýUü<¡ú*îß®u¨é¨¢zÚÑ6 +ÜQ~ïctMkôéDcœß£B©äá¬Syìò‡±Š›wzçå~¨®…u-s)cIé)ßIˆž´p½X®¿’«1ÙCî»fzñR¼i3?+â›":¢ÝÔ|ên®ÕT6 +•«¦b"áÊç¹dnŸ¾ÆG¯÷rŸ1§ÔÅ#„iÓNígmxÍg¶º½1W5ÜÝ«JšÒ§ž‚'Åj=$¬j¢á3šÖ1útª66'Ñ¡¨y¦")Ƽë^ø}jÛ^ºS•&)Ý2úλS­GZ‹NÎVêt¤Ypõ–z½#Ù̪¿Of+^7å_9|ÆÊp·:yCåPðyvìÈl¨ièbc,œy Q1Ñ.M:1cœÝ8èU>«¶¼)ËfÏ8q¯=¾o¸9»5UtO ‰`¬ªJÙب¸I:=’q®Ó÷Ù£c¿;Pò6Sêf±Âk3é™'mxÅ'ºžˆ} î}‹UWYW%,nš¶´µT\d…™ò±ß’œcðÚSæpÄÄÇV+Æý”ôl}F)‰‰ëÃiݶ¾—®šäØTrÙÒÅG_fÂêzED_¸ÆöµŽc4èEk‹øš‡ÜÍfg®b“<â}0Î0ÄDGTMc¶“‰—ãg7i”qQ¥I UœàÆ`¸6§ŽYøäÓ÷üc•øûTùˆ¥8[…ãå—Ôí¯Õ_¼¡í­¸7zÑKU'¢‰ékÆØ«±Eû»~(Œ\º0Ð)²œkÏg”=‰Û^å·Î_¾;§dEhSÚ ¦bTSSº’)0õ™ ÜÇ:4ü•XØ«²‡ÔÍk?•ãJÏË/šZ7[Ñò>]/WjŠŽ‚Ž*› Ÿ:ÕR±pŠUΪöééû£ûÊyI‰Ýc³Nšwl{1ZñšÏmuzv•œ]«B–Ñ¥ž‚'ÅiÊ“U±QpšF£Ž~*‰ûµlˆÓXí®ª÷í:æwÅ'²”§t¾³îµ’ûNKMi˜µRS%#åÃÖXQÎzF¿’Žs—ó©å/é^Uó’6S…iΞPù”ÝË2;*:z˜Û!®m +"/ÜÑ,JŒÓ£*·N:ú®Úð§-žPò\kÏo›Õ7÷f¢Š¦‰ô,Ui_3Ô$—]?}v>Ö ‰¥>¦Ü6Ìü²LV¼oÝò?uMÊ°êêkêe¤ÒÚí¥ªr¢ã,,G£XïkQ$z&ÒŸ3‰ÃÕ3YŽ4ˆôCê&“מuô”÷&¤žÏž:HÛ%©©ˆ¸ÃÚƹüJ‘±e¹Å33=x¯;ö×Óµñb"#ª-ÝOD¿ |݈¨à£mI =g8DÌT¬®—M?}îv>ÕSæ6Sêb‘Â)1òËêv×ê¯ÆÞPöWp{w-6Z¬¨¡‰íµÚŒ®EEû»[Bˆý:pš0Ð:©Æ¼öyCÚí¯ +rÛç/¤Ë©dEiÅi¶™‰U 3¨ã—Y°9ÍzÆŸ’®cWó¢ÌÖ¿U~4¯œ¾# E#u½¹>E×bϤ³© ³ád6dËQHÄEŠöiиHþòžêš×®"œ©JwEÓ«|×k^÷5|ÝŠúKB’j_ ¥:TÕ±QpšTɃߧJ§Îê1²œ&±Û]UïÚNÚÎø¤öR”î}Y.•5¥=¢êV-LôÍ£’\=gB×9ÉþJ+Ü¿¶§”Ù1¾ü«+ëw +Ó<¡ó¨x<»vjYI LK!ŽŽ‡_¸5ÑñNFiЊÏWN:¹Å35áN[<¡óM”ã^{|å蓃;­-ÔN³áX&­ç‚àê®5&ã—OßñGãÑŠtDÒŸSn󗳶¼oá#÷U\k²kFihãsí8MVåEÆh˜×±¬~({Ñ?”ù˜¬Sªf´ãH’Æɯ\lñ¯Êó§¹V-U Tt‘¶[>Ô´ÏD\b…èÄs§ïU#b.ÊsŠffzñ_ŽÚú_†‘ÕóààÒëÓQRÑGgÂØ)*Ö¾".Ô+ß'Ý?}šG»k”ù”áŽÊLz%õ;kÆk=ñ?#Ê¿ƒ{±jCkCQA ÙlaËšä\*2ÆØ“>81­nŒ4 áºkÏdük¶¼)Ëo›ê¶éØìµYj¥39[)–³aë$ +ôzdz™:ÌÖ¼oãç/˜ŠS…¼<Ÿ"‡ƒ[¯fÓY”ÐYð²+*E–‰ˆ‹„V½ŠæiЪÙšqÐå=Õ5¯ +r¤E< +uq¯:ÔªàÒëÖÑWQËgÂè- +”¬ªb¢á,ȬrHí?}Œl_îÔ<‰¥8Mc¶º½;^ÎÚñŠOe)è})®m‰S_U_%$n¨«¦mò*.i!j½[¿%G÷”ù˜Ù1Õ7î§Êö»bw[Óò?%·rÎ[)`¡‰‹dDèhpEû„o"sY§B+^}V³^å³ÉóMœkÏoœ¿7ï1º«D´\ݵ¼ä±à¸r®;ãº~ÿŒõñ÷„M)õ6á9{;kÆþO×Ypnõ{íGÍEÖÖ‰Vª¢ýÞ61ѵ¯Ó¥®sS£B©ó1X§UkÏg”=‰¤×…=»ß¢—aÓWQ×2’6ÔQSº’žDEÆ8_“4mÓ÷«Å³º‡ÞªÌÏ\ß¾¯šlˆÝnê>e7WZŽŠ†Š+>ÁATµ´ÌD\"\÷,Ó÷ØÈõþîSæ6S„R;)OCÛ׌Ö{k_KÊ»ƒK¯iÓZ´ÓÙð¾+]èúæª.¹ØÑ_§J£XÖèÃCPFî5çZük¶¼)Ëo›ë­Ò±Ýj­«ÉYÊÖ—‘,¸zÜF|ü^ÎeÇó‰Û^7ñóy)ÂÞO“AÁ­×³ ² §³ádvBªÐµ¨¸@®Ñ®M:1cœÝ8èU>µMk×JrÙå8q¯;ü¯ +ž ®µ]]–|.‚²­+ª#T\$¨G±é+´ýöhØì}­Cæ6S„Ö;k3é—³¶¼b“ÙJzF{‘aUVÖÖIG§¯§m%KÕaf|±»OÞ§ü6”ò›&:¦ýÔ{]±;­ßWª’àÝêlÉa¢‰²¡}=¢.0Dö5Žc4èEk‹Ó¡¨}LÖk×;Õ<”ánó{;kÆþOÑ]ÁåÛ´¹×¡‰üïb®ÅîìdkZý:QªÔà ”ÙN5ç³ÊÖ›xS–ß7íŠçX°Z4ö‹)cJšjgQÃ*'¬È­rÆŸ’ªÆ¯÷jS5™÷ñŸ•óM‘­èù.“ƒ;­AGgÑÃgÂÈlÙÖª‘ˆ‹„2®|^Í:÷G÷”ò6S„R;)OCêv׌Ö{k_I[ÁÖ´i-*Iìø_ ©*OXÅEÂiÔsôé\#b}z‚6ršó­}%zøS•(úïº6<¶¤¶£©XµRÓ%åÃÖtç=#_ÉG9ËùÕO&+XßAJp·‡“æPpqvlÈì˜éè"clv¹´(ˆ¿Ættk¤ztbÅVéÇBŸUÛ^å³Ê4ÙN5ç·Íê—ƒ+­=EìøV +šÎp•Š‹ƒêxÆËÇ.Ÿ¿ÎÆ»j!óJ}M¸^~Y}LÖ¼b“Ýò>…MÇ°jê- +‰hãt–” ¦«r¢ã4LkÚÖ?N”D‘è›Jy8bbcªoÝG±Šbbw[¾¾’žãX4•6}Ltq¶[6ÒÒ9q†'µsìj¤lEÙCî»fzæýõ|Ú)ÕT~x2ºÐQSÑ2Ï… ¦¬ç˜ˆ¸2§t¼riûüïs±öªžFÊpŠGu=öfµã ùÊînÕ¦ËY•=¶ÃZÚäT_ãB64‰útàÄFèÃAå6SyÖ&¾zøS–ß7ÔeÒ±ã´â´ÛLĪŠ™hÙ.³`sšõ?%\Ö¯çD=µã~U󗛣u¼<¡òh¸5»u-›KŸ "²åYè؈¸C#‘íW3N…T‘éôýòŠR“º)”§¢ÌÖ±¾k=µ¯¥Å_—^ºŽÐ£šÏ…ðZ3¥US ¦Eb£ß§K¾æÎêDRœ&±ÛZúIšóŠr¥=«-бf´ª-'ÒƵ54Í£–UOYð1Ïsc_ÉE‘ê›Jy8vLo¿u꘧ xy? ·rÍK) ¡‰‰dFè¨pEûƒ­f¬õtã û™¬×®”å²~H|ðã^{|åõ¬+µeݘçeŸNÈQ<µR£ ÒÌìÒ=)Ë¥ó"#wÛùKíßåO‘÷@ÿÐßÀÿÑßÀÿÒßÀÿÓßÀÿÙ +endstream +endobj +166 0 obj +<< +/Filter /FlateDecode +/Length 1315 +>> +stream +H‰´WÛN#G}÷WÔã´÷ôuz&BHË«X%YüF¢È2Æ.&`–$_Ÿªêé™ÛxÍC„„Ç=U]·S§Ê凧ÕÍÕt¶‚ƒƒòg(Ϧÿ,_VpxxtüFG“‘%õøß9 O‹Qùé\ÁâyTNô +4L®FJ*üœÁ8>¼B%jà_\cecj0^z_áûûQᬘü9:™ŒN¾ ™¿Ð +ª+RÅ»éÛYyz¯àx9úuTþB¾MPÌÆŸŽDùåãçc0Æ«¡£@þÜ’‡:y¨£‡ä™2l$>¼‚V²Ž*j/•mSãëÐʼn[ x¸c-->,Ws:óP<‹ß'?uìpQg.–“IÊXoRÅ#JIߨŠ“¥)Wåùãô|˜­^¦w“ùß«ƒÓ“ÓS¥Tsxxl¢Î*y´‡g&OžTUµéŽVAor.Š‰“W`20=Obl´Œ^j(–ÂH“ÎQìÓ×Pþž…–+˜ŠŠgøÂS6Wødƒ€Zt|·£[®ð–̬–¨=6I?l^³¶VKÒ'õe5INÙ—è”U\]2 jM/¡ý5(…æxÂ&¯ï4¯Ó  …­HªÉ®Hö×2Æ Á[µ#©©Ð•ŒrÁ†Ü«é¢Ì< +V™ÿw1RÓ¢/lÑ°EM:l3t6Ç“ÞÚé vf­vaP; ƒ½‡A楺RXQ×ÒwôÈ c÷‚ç)„Ì¿¶èkƒ&~€}›ÊfÐ¥Ö6av«:dØ}&7¢7ž¼™Ãuª --Ãø±-+ºçÉÍEP$P +Ýð‡çB¼²b“ø¤Fu)°Æ&Õ…Š-…¶$Øç˜Ûc!Œ¡÷x¯ªè ‡ðFa·BIË7Ž÷ëɶ®ÂÊG)ªz­?¾ àjà¾Õ›ðÅ“;Á© ®üà ÌÉKA’µ9ØQºî¤‡Ü ¿Ú%2ã^Â{H-¬‘3O"¦×2WØUô1k[­;ƒô€ôöm 7‰;º£í»"ã²¢ä·vl—ý¢ómtzãY¿—’ýJöÌùpáÝЯ-!ÛùÍ#‚å0àRPËu, ±sƒ`À’΀é€Ä‰S ªîHàŽ +×|þrßêù¬zÛ7ƒªÒýf`þŸÍ nÆìÂQæÏEqŽ¤Y§Òù4šC[]à sÅÉt1Û†²½­©8½·Ü ¢iñ„H›.Ëôj–&ÊÍfYÒÐÓL­—@lͬzC2ºØÛæú#z:’ÚÐõßú;22Лӻ_¾ ÓÍYGå[Æ7Üw×=ò£=Íyé'd샚{DeœxËŒÜ šÈÇHŸI2-|ýø¸mЛ¸”Q]ê¨ÉM·%YñzG:noײŽçºjt£{i°AíE¹{6OØM}®ÁÁ¦k?l¡qþCdÇåõ»VWgM±e‡ê8¯c~<â_$Å%­T8f7›‰ôœ•u€KtÆÀì®S¬–N ‡M ¶=Ô;ÆŽ{ä}@V0Eú øÌЉcê–†> +e/ñáî;Òk{ŒDtœÃ– ¤)ß/Õ0¸¯ÿš-÷ …y® Ç‘x;"AûáË»SÓ­r>ŽÀ[_Æÿ‘ˆB\;Üö¥|=z6ÚĊ˶–½'{³†@]µ¿gõ®_n.³=— ˜ËHË‹ä†äL»¬9×îY]ÿ—Y€Ö1 +Õóy %Ó_«¡!×´úæ!ý'Àìv. +endstream +endobj +167 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +168 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +169 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 527 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 168 0 R +/GS1 265 0 R +>> +/Font << +/C2_0 266 0 R +/T1_0 267 0 R +/T1_1 268 0 R +/T1_2 269 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TÛjÜ0}÷WÌ£µ<#Y– ËBsihi$~ ¡¸Ùì²i³ ^‡|}gd7]§¡‚ÁKšsŽ4gŒ&hj,åí [eÅÉÂj—åÑxž‡Ê:SQ ‘Ь¡»É–Yñ¾ë×Ëöº‡Ù¬8ƒâsû¸½ïa>?8:„ì ÉQ­†²Àú‚@Ð,34HškÈÇèšòð$q•yüãl0DõÆEo¡¹Ë.ÕG;cAmti¨^¨s&¨•Î­‰ :M ªå-á×– i MŒ + +Žt^2‰Zëœ$g'¸¼ÐvœÅßw2Ïëm +lBð¦Ü#ÎÉ +Ë»gĴ霱ý*z(q (ù>Žká®@=‰¨¸'”/ŸÖÛ c2b»Y Á¹N8éœ4jþÓ„áFèø +ô…®E|/’I˜³Nçç ÈM âwúªù”7Ùñ)ù¯ŠÓXq©6J¡'uuÞ´õ¤® +tsûï$˜À¾‰{IÜ+´v }AæLi+÷6²=SŸŸ°“=<@ §Ìq —W xn£âÐþt<‰¥c’YÂ+Bp2CŒåü´¼rÜßÇUh¢­ãôÌo9ôÞob¯¾/Hù‡Q³·&ÝjÅ•ì/ ÄN>ù”’å¸9¨œ*Ä3÷ ä‡FÎ]>‚•^á5ÔA’¬viMÜùC€\Ýæ +endstream +endobj +170 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 957 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 168 0 R +>> +/Font << +/C2_0 270 0 R +/T1_0 271 0 R +/T1_1 272 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬VmoÔ0 þÞ_áDÓ8/MŠ¦IcLCå 4¶»mÀnSïÆiüzì$×ön @ ImšØŽý<}«úÕÕüôl{{õk¨_žÞßÜ­`ÿÉÓC(žt…%µqô´ÖÀɳBIk°ð +|†wœCQ?{£àbYÔ‡ú£„nNŽÝ™tk~,½¾óQ¶=”Naí¤ŠŽ®‹=¥‚Ýï>G]qôŠRؾ¿¿(ª@N–}jh¼4Ú€“¨4ô³b^ ÙèÐ齋lZº‘ÁâŽF‰ 6ÎHÕn›´AçÇ(NÚ ßHçÌÏ,ê?7þ})êà¤Bd𪼊ö€(µ‹æi…¦‘U4}»–ñ{W‹ÊK„òu'*# ”GâC÷bÀó·9q&¸K!*éóÝqÅwe4 keëtºúèTh <d¥¡¼„ç´‚ò©0Ò¦—ƒò$çõ®‹©¼•ãósA…Ñ÷h9ÊWA{3¸èeåÎD`?>öPö½@Ç3Ú¦×B`-”+XS´¸–íVÂsðK˜Ñ‚¢¿WÆÓEìW9εҊýW0ç> +endobj +172 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 304 0 R 297 0 R] +endobj +173 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 305 0 R 306 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 312 0 R 313 0 R 314 0 R 314 0 R +315 0 R 316 0 R 317 0 R 316 0 R 318 0 R 319 0 R 319 0 R 320 0 R 321 0 R 322 0 R 323 0 R 324 0 R 324 0 R 325 0 R 326 0 R 327 0 R +328 0 R 329 0 R 330 0 R 331 0 R 332 0 R] +endobj +174 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 333 0 R 299 0 R] +endobj +175 0 obj +[334 0 R 335 0 R 336 0 R 337 0 R 338 0 R 337 0 R 339 0 R 337 0 R 337 0 R 337 0 R 340 0 R 337 0 R 337 0 R 337 0 R 337 0 R 337 0 R +337 0 R 337 0 R 341 0 R 341 0 R 341 0 R 342 0 R 341 0 R 341 0 R 341 0 R 341 0 R 343 0 R 343 0 R 343 0 R 343 0 R 343 0 R 343 0 R +343 0 R 343 0 R 344 0 R 343 0 R 345 0 R 343 0 R 346 0 R 343 0 R 343 0 R 347 0 R 347 0 R 347 0 R 347 0 R 347 0 R 347 0 R 348 0 R +347 0 R 347 0 R 347 0 R] +endobj +176 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 349 0 R 349 0 R 350 0 R 349 0 R 351 0 R 349 0 R 349 0 R 352 0 R 353 0 R 354 0 R 353 0 R 353 0 R 353 0 R +353 0 R 353 0 R 353 0 R 353 0 R 355 0 R 356 0 R 355 0 R 357 0 R 355 0 R 355 0 R 355 0 R 355 0 R 355 0 R 355 0 R 355 0 R 355 0 R +358 0 R 359 0 R 359 0 R 360 0 R 359 0 R 361 0 R 361 0 R 361 0 R 361 0 R 361 0 R 362 0 R 363 0 R 364 0 R 363 0 R 365 0 R 366 0 R +367 0 R 366 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R] +endobj +177 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 374 0 R 375 0 R 376 0 R 376 0 R 376 0 R 376 0 R 376 0 R 377 0 R +376 0 R 376 0 R 376 0 R 378 0 R 379 0 R 379 0 R 379 0 R 379 0 R 379 0 R 380 0 R 381 0 R 381 0 R 381 0 R 382 0 R 383 0 R 383 0 R +383 0 R 384 0 R 383 0 R 383 0 R 383 0 R 383 0 R 383 0 R 383 0 R 385 0 R 386 0 R 386 0 R 386 0 R 386 0 R 387 0 R 388 0 R 387 0 R +387 0 R 387 0 R 387 0 R 389 0 R 389 0 R 389 0 R 389 0 R 389 0 R 389 0 R 390 0 R 391 0 R 390 0 R 390 0 R 390 0 R 390 0 R 390 0 R +390 0 R] +endobj +178 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 392 0 R 392 0 R 392 0 R 392 0 R 392 0 R 393 0 R 392 0 R 392 0 R 392 0 R 392 0 R 392 0 R 392 0 R 394 0 R 395 0 R 394 0 R +394 0 R 394 0 R 394 0 R 394 0 R 396 0 R 394 0 R 397 0 R 394 0 R 394 0 R 394 0 R 398 0 R 394 0 R 394 0 R 394 0 R 394 0 R 394 0 R +399 0 R 399 0 R 400 0 R 401 0 R 401 0 R 401 0 R 401 0 R 401 0 R 401 0 R 401 0 R 401 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R +402 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R] +endobj +179 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 403 0 R 404 0 R 404 0 R 405 0 R 406 0 R 406 0 R 406 0 R 406 0 R +406 0 R 406 0 R 406 0 R 406 0 R 406 0 R 407 0 R 408 0 R 409 0 R 409 0 R 410 0 R 409 0 R 409 0 R 411 0 R 409 0 R 409 0 R 409 0 R +409 0 R 409 0 R 409 0 R 409 0 R 409 0 R 409 0 R 409 0 R 412 0 R 413 0 R 412 0 R 412 0 R 414 0 R 412 0 R 412 0 R 412 0 R 412 0 R +412 0 R 412 0 R 412 0 R 412 0 R 412 0 R 412 0 R] +endobj +180 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 415 0 R 416 0 R 416 0 R 416 0 R 417 0 R 416 0 R 416 0 R 416 0 R 416 0 R 418 0 R +416 0 R 419 0 R 416 0 R 416 0 R 416 0 R 416 0 R 416 0 R 420 0 R 421 0 R 420 0 R 422 0 R 420 0 R 420 0 R 420 0 R 420 0 R 420 0 R +420 0 R 420 0 R 420 0 R 420 0 R 423 0 R 423 0 R 423 0 R 423 0 R 424 0 R 423 0 R 423 0 R 425 0 R 423 0 R 423 0 R 423 0 R 426 0 R +423 0 R 423 0 R 423 0 R 423 0 R 423 0 R 427 0 R 428 0 R 428 0 R 428 0 R 428 0 R 429 0 R 429 0 R 430 0 R 429 0 R 429 0 R 429 0 R] +endobj +181 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +431 0 R 432 0 R 432 0 R 432 0 R 432 0 R 432 0 R 432 0 R 432 0 R 432 0 R 433 0 R 433 0 R 433 0 R 434 0 R 433 0 R 433 0 R 435 0 R +433 0 R 433 0 R 433 0 R 433 0 R 433 0 R 433 0 R 433 0 R 436 0 R 433 0 R 433 0 R 433 0 R 433 0 R 433 0 R 437 0 R 437 0 R 437 0 R +438 0 R 437 0 R 437 0 R 437 0 R 437 0 R 437 0 R 439 0 R 437 0 R 437 0 R 440 0 R 437 0 R 441 0 R 437 0 R 437 0 R 437 0 R 442 0 R +443 0 R 444 0 R 443 0 R 443 0 R 445 0 R 443 0 R 443 0 R] +endobj +182 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 446 0 R 447 0 R 446 0 R 448 0 R 449 0 R 449 0 R 450 0 R 449 0 R 451 0 R +452 0 R 453 0 R 453 0 R 454 0 R 453 0 R 453 0 R 455 0 R 453 0 R 453 0 R 453 0 R 453 0 R 456 0 R 453 0 R 453 0 R 453 0 R 453 0 R +453 0 R 457 0 R 458 0 R 458 0 R 458 0 R 458 0 R 459 0 R 458 0 R 458 0 R 458 0 R 460 0 R 458 0 R 458 0 R 461 0 R 462 0 R 462 0 R +462 0 R 462 0 R 463 0 R 462 0 R 464 0 R 462 0 R] +endobj +183 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 462 0 R 462 0 R 462 0 R 465 0 R 466 0 R 467 0 R 466 0 R 466 0 R 466 0 R 466 0 R +468 0 R 469 0 R 470 0 R 469 0 R 469 0 R 469 0 R 469 0 R 469 0 R 469 0 R 471 0 R 469 0 R 469 0 R 469 0 R 469 0 R 472 0 R 473 0 R +474 0 R 474 0 R 474 0 R 474 0 R 474 0 R 474 0 R 474 0 R 475 0 R 474 0 R 474 0 R 476 0 R 474 0 R 477 0 R 477 0 R 477 0 R 477 0 R] +endobj +184 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +478 0 R 479 0 R 479 0 R 480 0 R 479 0 R 481 0 R 479 0 R 479 0 R 479 0 R 479 0 R 479 0 R 482 0 R 479 0 R 483 0 R 484 0 R 485 0 R +484 0 R 484 0 R 484 0 R 486 0 R 484 0 R 484 0 R 484 0 R 484 0 R 487 0 R 488 0 R 488 0 R 488 0 R 489 0 R 488 0 R 488 0 R 490 0 R +488 0 R 488 0 R 488 0 R 488 0 R 491 0 R 492 0 R 492 0 R 492 0 R 492 0 R 492 0 R 492 0 R 492 0 R 492 0 R] +endobj +185 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 492 0 R 492 0 R 493 0 R +492 0 R 492 0 R 492 0 R 494 0 R 494 0 R 495 0 R 494 0 R 494 0 R 494 0 R 496 0 R 494 0 R 494 0 R 497 0 R 494 0 R 494 0 R 494 0 R +494 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R +512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 517 0 R 517 0 R 517 0 R 517 0 R 519 0 R 517 0 R 517 0 R 517 0 R 517 0 R +517 0 R 517 0 R 520 0 R 517 0 R 517 0 R 517 0 R 517 0 R 517 0 R 521 0 R 517 0 R 522 0 R 517 0 R 523 0 R 523 0 R 523 0 R 523 0 R +523 0 R] +endobj +186 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 524 0 R 524 0 R 524 0 R 524 0 R 524 0 R 524 0 R 524 0 R 524 0 R 524 0 R 525 0 R 524 0 R 524 0 R 526 0 R 524 0 R 527 0 R +527 0 R 527 0 R 527 0 R 528 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 527 0 R 529 0 R 530 0 R 530 0 R 530 0 R +531 0 R 531 0 R 531 0 R 531 0 R 531 0 R 531 0 R 531 0 R 531 0 R 532 0 R 532 0 R 533 0 R 532 0 R 532 0 R 532 0 R 532 0 R 534 0 R +535 0 R 534 0 R 534 0 R 534 0 R] +endobj +187 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 536 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 537 0 R 538 0 R +539 0 R 539 0 R 539 0 R 540 0 R 539 0 R 541 0 R 539 0 R 542 0 R 543 0 R 542 0 R 544 0 R 542 0 R 545 0 R 281 0 R] +endobj +188 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 546 0 R 547 0 R +548 0 R 547 0 R 547 0 R 547 0 R 547 0 R 549 0 R 547 0 R 547 0 R 547 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 554 0 R 554 0 R +555 0 R 554 0 R 556 0 R 557 0 R 558 0 R 558 0 R 558 0 R 559 0 R 558 0 R 558 0 R 560 0 R 558 0 R 561 0 R 562 0 R 563 0 R 563 0 R +563 0 R 564 0 R 565 0 R 566 0 R 566 0 R 566 0 R 567 0 R 566 0 R 568 0 R 569 0 R 570 0 R 570 0 R 570 0 R 570 0 R 571 0 R 572 0 R +573 0 R 574 0 R 573 0 R 573 0 R 573 0 R 573 0 R 573 0 R 573 0 R 575 0 R 576 0 R 577 0 R 578 0 R 579 0 R 580 0 R 581 0 R 580 0 R +582 0 R 583 0 R 584 0 R 585 0 R 584 0 R 586 0 R 587 0 R 588 0 R 589 0 R 588 0 R 590 0 R 591 0 R 592 0 R 593 0 R 592 0 R 594 0 R +595 0 R 596 0 R 596 0 R 596 0 R 596 0 R 597 0 R 598 0 R 599 0 R 599 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 604 0 R 605 0 R +605 0 R 605 0 R 606 0 R 607 0 R 608 0 R 608 0 R 609 0 R 610 0 R 611 0 R 611 0 R 612 0 R 613 0 R 614 0 R 614 0 R 614 0 R 615 0 R +616 0 R 617 0 R 617 0 R 618 0 R] +endobj +189 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 547 0 R 619 0 R 547 0 R 547 0 R 547 0 R 547 0 R 547 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R +625 0 R 625 0 R 625 0 R 626 0 R 627 0 R 628 0 R 628 0 R 628 0 R 628 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 631 0 R 633 0 R +634 0 R 635 0 R 636 0 R 635 0 R 637 0 R 638 0 R 639 0 R 640 0 R 639 0 R 641 0 R 642 0 R 643 0 R 644 0 R 643 0 R 643 0 R 645 0 R +643 0 R 643 0 R 646 0 R 647 0 R 648 0 R 649 0 R 648 0 R 650 0 R 651 0 R 652 0 R 652 0 R 653 0 R 654 0 R 655 0 R 655 0 R 655 0 R +655 0 R] +endobj +190 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 656 0 R 657 0 R 658 0 R 659 0 R 658 0 R 658 0 R 660 0 R 658 0 R 658 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 664 0 R +666 0 R 664 0 R 667 0 R 664 0 R 664 0 R 664 0 R 664 0 R 664 0 R 668 0 R 669 0 R 670 0 R 671 0 R 671 0 R 671 0 R 671 0 R 671 0 R +671 0 R 672 0 R 673 0 R 674 0 R 673 0 R 675 0 R 676 0 R 677 0 R 678 0 R 677 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 683 0 R +683 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 688 0 R 688 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 693 0 R +693 0 R 693 0 R 693 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 698 0 R 699 0 R 698 0 R 700 0 R 698 0 R 698 0 R 701 0 R 702 0 R +703 0 R 704 0 R 705 0 R 705 0 R 705 0 R 705 0 R 705 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 710 0 R 711 0 R 712 0 R +713 0 R 714 0 R 715 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 720 0 R 720 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R +725 0 R 725 0 R] +endobj +191 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 726 0 R 727 0 R 728 0 R 729 0 R 729 0 R 729 0 R 730 0 R 731 0 R 732 0 R 733 0 R 733 0 R 734 0 R 733 0 R 733 0 R +733 0 R 735 0 R 733 0 R 733 0 R 733 0 R 733 0 R 736 0 R 737 0 R 738 0 R 739 0 R 739 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R +743 0 R 744 0 R 745 0 R 745 0 R 746 0 R 745 0 R 747 0 R 745 0 R 745 0 R 745 0 R 745 0 R 745 0 R 748 0 R 748 0 R 748 0 R 749 0 R +750 0 R 751 0 R 751 0 R 751 0 R 752 0 R 751 0 R 753 0 R 751 0 R 751 0 R 754 0 R 751 0 R 751 0 R 751 0 R 755 0 R 756 0 R 757 0 R +757 0 R 757 0 R 757 0 R 757 0 R 757 0 R] +endobj +192 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 758 0 R 759 0 R 759 0 R 759 0 R 760 0 R 759 0 R 761 0 R 759 0 R 759 0 R 759 0 R 759 0 R +759 0 R 762 0 R 759 0 R 759 0 R 759 0 R 759 0 R 763 0 R 759 0 R 759 0 R 759 0 R 759 0 R 764 0 R 764 0 R 765 0 R 764 0 R 766 0 R +764 0 R 767 0 R 767 0 R 768 0 R 767 0 R 767 0 R 767 0 R 769 0 R 767 0 R 770 0 R 767 0 R 767 0 R 767 0 R 767 0 R 767 0 R 771 0 R +772 0 R 772 0 R 773 0 R 772 0 R 772 0 R 772 0 R 772 0 R 774 0 R 772 0 R 772 0 R 775 0 R 775 0 R] +endobj +193 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 776 0 R 777 0 R 778 0 R 777 0 R +777 0 R 777 0 R 777 0 R 777 0 R 777 0 R 777 0 R 777 0 R 777 0 R 777 0 R 777 0 R 779 0 R 777 0 R 777 0 R 780 0 R 781 0 R 782 0 R +783 0 R 782 0 R 784 0 R 782 0 R 785 0 R 786 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 787 0 R 788 0 R 787 0 R +787 0 R 789 0 R 790 0 R 791 0 R 791 0 R 791 0 R 791 0 R 791 0 R 792 0 R 793 0 R 794 0 R 794 0 R 794 0 R 794 0 R 794 0 R 795 0 R +796 0 R 797 0 R 798 0 R 797 0 R 797 0 R 797 0 R 799 0 R 797 0 R 797 0 R 797 0 R 797 0 R 800 0 R 797 0 R] +endobj +194 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 801 0 R 802 0 R 803 0 R +803 0 R 804 0 R 805 0 R 805 0 R 806 0 R 805 0 R 807 0 R 808 0 R 809 0 R 809 0 R 809 0 R 809 0 R 810 0 R 811 0 R 812 0 R 812 0 R +812 0 R 813 0 R 814 0 R 815 0 R 816 0 R 817 0 R 818 0 R 819 0 R 818 0 R 818 0 R 820 0 R 818 0 R 818 0 R 818 0 R 821 0 R 818 0 R +818 0 R 818 0 R 818 0 R 818 0 R 822 0 R 823 0 R 824 0 R 825 0 R 826 0 R 827 0 R 827 0 R 828 0 R 829 0 R 830 0 R 830 0 R 831 0 R +832 0 R 831 0 R 833 0 R 831 0 R 831 0 R 831 0 R 834 0 R 831 0 R 831 0 R 835 0 R 831 0 R 831 0 R 831 0 R 831 0 R 836 0 R 836 0 R] +endobj +195 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +837 0 R 838 0 R 837 0 R 837 0 R 839 0 R 837 0 R 837 0 R 837 0 R 837 0 R 837 0 R 837 0 R 840 0 R 837 0 R 837 0 R 837 0 R 837 0 R +841 0 R 842 0 R 841 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 847 0 R 849 0 R 847 0 R 850 0 R 851 0 R 852 0 R 852 0 R +853 0 R 854 0 R 855 0 R 855 0 R 855 0 R 856 0 R 857 0 R 858 0 R 858 0 R 858 0 R 858 0 R 859 0 R 858 0 R 860 0 R 861 0 R 862 0 R +863 0 R 862 0 R 862 0 R 864 0 R 865 0 R 866 0 R 866 0 R 867 0 R 868 0 R 869 0 R 869 0 R 870 0 R 869 0 R 871 0 R 869 0 R 869 0 R +872 0 R 873 0 R 874 0 R 874 0 R 875 0 R 874 0 R 874 0 R 876 0 R 877 0 R 878 0 R 878 0 R 878 0 R 879 0 R 880 0 R 881 0 R 882 0 R +881 0 R 881 0 R 881 0 R 881 0 R] +endobj +196 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 883 0 R 884 0 R 884 0 R 884 0 R 884 0 R 885 0 R 884 0 R 886 0 R 884 0 R 884 0 R 884 0 R 884 0 R +884 0 R 884 0 R 887 0 R 887 0 R 888 0 R 887 0 R 887 0 R 889 0 R 889 0 R 889 0 R 889 0 R 889 0 R 889 0 R 889 0 R 890 0 R 891 0 R +892 0 R 893 0 R 894 0 R 895 0 R 895 0 R 896 0 R 897 0 R 898 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 901 0 R 903 0 R 904 0 R +905 0 R 905 0 R 906 0 R 907 0 R 908 0 R 909 0 R 910 0 R 911 0 R 912 0 R 913 0 R 914 0 R 915 0 R 916 0 R 917 0 R 918 0 R 917 0 R +919 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R 924 0 R 925 0 R 924 0 R 926 0 R 927 0 R 928 0 R 928 0 R 929 0 R 930 0 R 931 0 R] +endobj +197 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +932 0 R 933 0 R 933 0 R 933 0 R 934 0 R 935 0 R 936 0 R 937 0 R 938 0 R 939 0 R 940 0 R 939 0 R 941 0 R 942 0 R 943 0 R 944 0 R +945 0 R 946 0 R 947 0 R 948 0 R 949 0 R 950 0 R 951 0 R 952 0 R 951 0 R 951 0 R 953 0 R 954 0 R 955 0 R 954 0 R 956 0 R 957 0 R +958 0 R 958 0 R 959 0 R 960 0 R 961 0 R 961 0 R 962 0 R 961 0 R 963 0 R 964 0 R 965 0 R 966 0 R 965 0 R 965 0 R 967 0 R 968 0 R +969 0 R 969 0 R 970 0 R 970 0 R 971 0 R 970 0 R 970 0 R 970 0 R 970 0 R 972 0 R 970 0 R 970 0 R 970 0 R 973 0 R 970 0 R 974 0 R +970 0 R 975 0 R] +endobj +198 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 970 0 R 970 0 R 976 0 R 970 0 R 970 0 R 970 0 R 970 0 R 970 0 R 970 0 R 970 0 R 977 0 R 970 0 R 970 0 R 978 0 R +978 0 R 978 0 R 978 0 R 979 0 R 978 0 R 978 0 R 978 0 R 978 0 R 980 0 R 978 0 R 978 0 R 978 0 R 978 0 R 978 0 R 978 0 R 978 0 R +978 0 R 978 0 R 978 0 R 978 0 R 978 0 R 981 0 R 978 0 R 978 0 R 978 0 R 978 0 R 982 0 R 978 0 R 978 0 R 978 0 R 978 0 R 978 0 R +978 0 R 983 0 R 978 0 R 978 0 R 984 0 R 985 0 R 984 0 R 984 0 R 986 0 R 984 0 R 984 0 R 987 0 R 984 0 R 988 0 R 988 0 R] +endobj +199 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 989 0 R +989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 989 0 R 990 0 R 991 0 R +991 0 R 991 0 R 991 0 R 991 0 R 991 0 R 992 0 R 991 0 R 991 0 R 991 0 R 991 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R 998 0 R +999 0 R 1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1004 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R +1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1023 0 R 1022 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R +1028 0 R 1029 0 R 1030 0 R 1030 0 R 1030 0 R 1031 0 R 1030 0 R] +endobj +200 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 1032 0 R 1033 0 R 1033 0 R 1034 0 R 1033 0 R 1035 0 R 1033 0 R 1033 0 R 1033 0 R +1033 0 R 1033 0 R 1033 0 R 1033 0 R 1033 0 R 1033 0 R 1036 0 R 1033 0 R 1037 0 R 1033 0 R 1033 0 R 1033 0 R 1038 0 R 1033 0 R 1033 0 R 1039 0 R +1033 0 R 1033 0 R 1033 0 R 1033 0 R 1040 0 R 1033 0 R 1041 0 R 1042 0 R 1042 0 R 1042 0 R 1043 0 R 1042 0 R 1042 0 R 1044 0 R 1042 0 R 1042 0 R +1042 0 R 1042 0 R 1042 0 R 1042 0 R 1045 0 R 1042 0 R 1046 0 R 1042 0 R 1047 0 R 1042 0 R 1042 0 R 1042 0 R 1048 0 R 1042 0 R 1049 0 R 1042 0 R +1042 0 R 1042 0 R] +endobj +201 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 1050 0 R 1051 0 R 1051 0 R 1051 0 R 1052 0 R 1051 0 R 1053 0 R 1051 0 R 1051 0 R 1054 0 R 1051 0 R 1051 0 R 1055 0 R 1056 0 R +1055 0 R 1055 0 R 1055 0 R 1057 0 R 1055 0 R 1055 0 R 1058 0 R 1055 0 R 1059 0 R 1055 0 R 1055 0 R 1055 0 R 1060 0 R 1055 0 R 1055 0 R 1061 0 R +1055 0 R 1062 0 R 1062 0 R 1062 0 R 1062 0 R 1063 0 R 1062 0 R 1062 0 R 1062 0 R 1062 0 R 1064 0 R 1062 0 R 1062 0 R 1062 0 R 1062 0 R 1062 0 R +1062 0 R 1065 0 R 1065 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R 1070 0 R 1071 0 R 1071 0 R 1071 0 R 1071 0 R 1071 0 R 1072 0 R 1073 0 R +1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1079 0 R 1078 0 R 1080 0 R 1078 0 R] +endobj +202 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 1081 0 R 1082 0 R 1083 0 R 1084 0 R 1085 0 R 1086 0 R 1086 0 R +1086 0 R 1086 0 R 1087 0 R 1088 0 R 1089 0 R 1090 0 R 1090 0 R 1091 0 R 1092 0 R 1092 0 R 1092 0 R 1092 0 R 1092 0 R 1093 0 R 1092 0 R 1092 0 R +1092 0 R 1092 0 R 1092 0 R 1094 0 R 1092 0 R 1095 0 R 1096 0 R 1096 0 R 1096 0 R 1097 0 R 1096 0 R 1096 0 R 1096 0 R 1098 0 R 1096 0 R 1096 0 R +1096 0 R 1099 0 R 1099 0 R 1099 0 R 1099 0 R 1100 0 R 1099 0 R 1101 0 R 1101 0 R 1101 0 R 1101 0 R 1101 0 R] +endobj +203 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 1102 0 R 1103 0 R 1103 0 R 1103 0 R +1103 0 R 1104 0 R 1103 0 R 1105 0 R 1103 0 R 1103 0 R 1103 0 R 1103 0 R 1103 0 R 1106 0 R 1106 0 R 1106 0 R 1106 0 R 1106 0 R 1106 0 R 1106 0 R +1106 0 R 1106 0 R 1107 0 R 1106 0 R 1106 0 R 1106 0 R 1108 0 R 1106 0 R 1109 0 R 1106 0 R 1106 0 R 1106 0 R 1106 0 R 1106 0 R 1110 0 R 1106 0 R +1106 0 R 1106 0 R 1111 0 R 1111 0 R 1111 0 R 1111 0 R 1111 0 R 1111 0 R 1111 0 R 1111 0 R 1111 0 R 1112 0 R 1113 0 R 1112 0 R 1114 0 R 1112 0 R +1112 0 R 1115 0 R 1112 0 R 1116 0 R 1112 0 R 1112 0 R 1112 0 R 1112 0 R 1117 0 R 1117 0 R 1117 0 R] +endobj +204 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 1112 0 R 1112 0 R 1118 0 R 1112 0 R 1119 0 R +1112 0 R 1112 0 R 1112 0 R 1112 0 R 1120 0 R 1121 0 R 1121 0 R 1121 0 R 1121 0 R 1121 0 R 1122 0 R 1121 0 R 1121 0 R 1121 0 R 1121 0 R 1123 0 R +1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1128 0 R 1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1136 0 R 1136 0 R +1137 0 R 1136 0 R 1136 0 R 1136 0 R 1136 0 R 1136 0 R 1138 0 R 1136 0 R 1136 0 R 1139 0 R 1136 0 R 1136 0 R 1136 0 R 1136 0 R 1140 0 R 1136 0 R +1141 0 R 1136 0 R 1142 0 R 1136 0 R 1136 0 R 1143 0 R 1136 0 R 1144 0 R 1145 0 R 1144 0 R 1144 0 R 1146 0 R 1144 0 R] +endobj +205 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 1147 0 R 1148 0 R 1148 0 R +1148 0 R 1149 0 R 1148 0 R 1148 0 R 1148 0 R 1150 0 R 1148 0 R 1151 0 R 1148 0 R 1148 0 R 1148 0 R 1148 0 R 1148 0 R 1152 0 R 1148 0 R 1153 0 R +1154 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1153 0 R 1155 0 R 1153 0 R +1156 0 R 1153 0 R 1157 0 R 1153 0 R 1158 0 R 1158 0 R 1158 0 R 1158 0 R 1158 0 R 1158 0 R 1158 0 R 1158 0 R 1158 0 R 1159 0 R 1158 0 R 1160 0 R +1160 0 R 1160 0 R 1160 0 R 1161 0 R 1161 0 R 1161 0 R 1161 0 R] +endobj +206 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 1160 0 R 1162 0 R 1160 0 R 1160 0 R 1160 0 R 1163 0 R 1160 0 R 1160 0 R 1160 0 R +1164 0 R 1160 0 R 1165 0 R 1165 0 R 1166 0 R 1165 0 R 1165 0 R 1165 0 R 1165 0 R 1165 0 R 1167 0 R 1168 0 R 1167 0 R 1169 0 R 1167 0 R 1167 0 R +1167 0 R 1167 0 R 1167 0 R 1170 0 R 1167 0 R 1167 0 R 1167 0 R 1171 0 R 1167 0 R 1172 0 R 1173 0 R 1174 0 R 1173 0 R 1173 0 R 1173 0 R 1175 0 R +1173 0 R 1176 0 R 1173 0 R 1173 0 R 1177 0 R 1173 0 R 1173 0 R 1173 0 R 1173 0 R 1173 0 R 1173 0 R 1173 0 R 1173 0 R 1173 0 R 1173 0 R] +endobj +207 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 1178 0 R +1178 0 R 1178 0 R 1178 0 R 1178 0 R 1179 0 R 1178 0 R 1178 0 R 1178 0 R 1178 0 R 1178 0 R 1178 0 R 1180 0 R 1178 0 R 1178 0 R 1178 0 R 1178 0 R +1178 0 R 1178 0 R 1181 0 R 1178 0 R 1182 0 R 1178 0 R 1178 0 R 1178 0 R 1183 0 R 1184 0 R 1184 0 R 1184 0 R 1185 0 R 1184 0 R 1184 0 R 1184 0 R +1184 0 R 1186 0 R 1187 0 R 1186 0 R 1186 0 R 1188 0 R 1186 0 R 1186 0 R 1186 0 R 1189 0 R 1186 0 R 1186 0 R 1186 0 R 1186 0 R 1186 0 R 1190 0 R +1186 0 R 1191 0 R 1186 0 R 1192 0 R 1193 0 R 1192 0 R 1192 0 R 1192 0 R 1192 0 R 1194 0 R 1195 0 R 1194 0 R 1196 0 R 1194 0 R 1194 0 R] +endobj +208 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 1192 0 R +1192 0 R 1192 0 R 1192 0 R 1197 0 R 1198 0 R 1199 0 R 1200 0 R 1201 0 R 1202 0 R 1203 0 R 1204 0 R 1205 0 R 1206 0 R 1207 0 R 1208 0 R 1208 0 R +1209 0 R 1210 0 R 1211 0 R 1211 0 R 1212 0 R 1213 0 R 1214 0 R 1215 0 R 1216 0 R 1217 0 R 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R +1223 0 R 1223 0 R 1224 0 R 1225 0 R 1224 0 R 1226 0 R 1224 0 R 1224 0 R 1224 0 R 1227 0 R 1224 0 R 1224 0 R 1228 0 R 1224 0 R 1224 0 R 1224 0 R +1224 0 R 1224 0 R 1224 0 R 1224 0 R 1229 0 R 1230 0 R 1229 0 R 1231 0 R 1229 0 R 1229 0 R 1229 0 R 1232 0 R 1229 0 R 1229 0 R 1229 0 R 1229 0 R +1229 0 R 1229 0 R 1233 0 R 1229 0 R 1229 0 R 1229 0 R 1229 0 R 1229 0 R] +endobj +209 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 1234 0 R 1235 0 R 1235 0 R 1235 0 R 1235 0 R 1236 0 R 1235 0 R 1237 0 R +1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R 1248 0 R 1249 0 R 1250 0 R 1251 0 R 1252 0 R 1253 0 R +1254 0 R 1255 0 R 1256 0 R 1257 0 R 1258 0 R 1259 0 R 1260 0 R 1261 0 R 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1269 0 R +1270 0 R 1271 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1279 0 R 1279 0 R 1280 0 R 1279 0 R 1279 0 R 1281 0 R +1281 0 R 1281 0 R 1281 0 R 1281 0 R 1281 0 R 1281 0 R 1282 0 R 1283 0 R 1282 0 R 1282 0 R 1284 0 R 1282 0 R 1282 0 R 1282 0 R 1282 0 R 1285 0 R +1285 0 R 1285 0 R 1285 0 R 1285 0 R 1286 0 R 1285 0 R] +endobj +210 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 1287 0 R 1287 0 R 1287 0 R 1288 0 R 1288 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R +1293 0 R] +endobj +211 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 300 0 R] +endobj +212 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 301 0 R] +endobj +213 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 302 0 R] +endobj +214 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 1294 0 R 1295 0 R 1296 0 R 1296 0 R 1296 0 R 1297 0 R +1298 0 R 1299 0 R 1298 0 R 1298 0 R] +endobj +215 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1300 0 R +/FontName /RVUZKV+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +216 0 obj +<< +/Filter /FlateDecode +/Length 468 +>> +stream +H‰\“Ñnâ0Eßó~lª@2ži¥‰B+ñ°mµì~@H iI"øûõÍ­Zi‘€žsFç›Ýv×w“Ë?âÐìÃäŽ]ßÆp®± îN]Ÿ- ×vÍôù4ÿ6çzÌò´y»Lá¼ëCVU.ÿ™^^¦xswëv8„û,mˆ]rw¿7û{—ï¯ãø7œC?¹…[­\Ž)èG=¾ÕçàòyÛîMï»éöö|¯øuƒ+æç%eš¡ —±nB¬ûSȪEú¬\õš>«,ôíï}Ém‡có§ŽYU`ñb‘þoÈ𖼿_—\_b}¹$/Á¹—ä,d{²+YÁF6ð#ùüD~J,¬%¨%Ìä óùÂ|A¾0_/Ìä óùÂ|™óÙ£ GÏ=zôìË£/Ϻu=ëzÔõ¬åQ˳–G-¥³ÂY™£ÈQæ(r”9Š¥¿Â_™©ÈTfêœI…¿Ò_á¯Ïäg0ÏQqŽÊsTœ£²GEúJNCRû5ôkô4x= žFOƒ§ÑÓàiô4x= žFOƒ§ÑÓàikòzÎÏ)ʦÛä¾î@s1ÿ|åæ¹ÇÄw}øº•ã0º´ ß쟭‘é +endstream +endobj +217 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1301 0 R +/FontName /XRUJQJ+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +218 0 obj +<< +/Filter /FlateDecode +/Length 457 +>> +stream +H‰\“Án›@†ï<Å“C„ ³3±„,Yv"ù¶ªÛÀ°v‘b@k|ðÛw~+•Š„ù0³3ß2C¾Ýïö}7¹üGšC˜Ü©ëÛ®Ã-6Áùë³eáÚ®™wóos©Ç,O‹÷ë.ûþ4dUåòŸéáuŠw÷´i‡cxÎòï± ±ëÏîé÷öðìòÃm?Ã%ô“[¸õÚµá”}Ôã·ú\>/{Ù·éy7Ý_Òš¿îcpÅ|¿¤L3´á:ÖMˆuYµHÇÚUïéXg¡oÿ{.+.;žš?u̪Á‹Eº$Þ’·à·Çÿé|K÷%ãJÄ•Kò\ pI.ÁB°'{°’ld¿’_Á+ò +¼!o ë +ê +ë +ê +ë +ê +ë +ê +ë +ê +k j ó òËŽ¼Kì¹G=zæ÷Èï™ß#¿g~üJ…2^¯ŒWÄ+ãuŽ§ÂGùïAé¦pSº)Ü”{Wì]ÙEo”Î +geŸ=Òwrj|eÜ‹a/FOƒ§ÑÓàiô4x= žFOƒ§ÑÓàiì‘¡GFOƒ§Ñ3]0pÉÂè¥/Ä}Íus‹1ôüͳŒ)îúðõ¥ÃèÒ*œÙ_L²àj +endstream +endobj +219 0 obj +[1302 0 R] +endobj +220 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +221 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/two/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1303 0 R +/FontName /BPZMUB+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +222 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡Š”v7iê6)‡uÓ²}'CZrÈßÏ@ÕI³~–ýóK÷Ô9›€¿G¯{L0Zg".~aÀÉ:v`¬N·ªÜzVq"÷Û’pîÜè™”À?¨¹¤¸ÁîÑø÷Œ¿EƒÑº v_—~¼_CøÁ]‚Ú Ž$ôªÂUͼС¾MÛ8Ÿ[@¥>V3Ú\‚Ò•›É†¢ùBÑ2tæ_ÿ¡²†Q«È¤x¦Ù¦¡Ää©)˜aQ±Èø\ñ¹Íê¢NQÊê7ü­îŸÐkŒä¿ì¬Ï–­ÃûZƒ@¬|د2xØ +endstream +endobj +223 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/D/a/b/e/i/l/m/n/o/space/t/z) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1304 0 R +/FontName /UUKWAP+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +224 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘ÝŠÃ …ï}Š¹l/Ših·$Òr±?lv ÑI+lTŒ½ÈÛ逸 +Äùd<ñxäM{jÀ?¼•µQg{÷aÀ«6l[‚Ò2> +endobj +226 0 obj +<< +/Filter /FlateDecode +/Length 353 +>> +stream +H‰\’ÍŠƒ0€ïyŠÛC±µšP¡Ø<ìëîØdì +k Ñ|ûÉ”.l@ó…Ìd>2IªúT»~–É{M³ìzgLã=W¸õNìRi{3?Vño†Ö‹“›eša¨]7Š¢ÉnNsXäêhÇ+¬Eò,„ÞÝäê«jÖ2iîÞÿÀn–[Y–ÒB‡½´þµ@&1mS[Üïçeƒ9Ÿ‹™ÆõŽeÌhaò­Ðºˆb‹£”ÅG)ÀÙû©æ´kg¾Û Š”‚·[œ+æ +yŸEÆIsùÀ| æøŒâ³ 3-r>3§3ó”9%Þ3ï‘Õ.2NÈ£(Fq-EµTÎœkfMÌŠ;(rP'æñ™ùLÌnŠÜ4»irÓ\WS]ÍnšÜ4;hrÐì ÉA+fE|d>ÆK~Ü&]7¾ +ù쥹‡€mŒO'ö:×;x¾.?z‰Yô‰_ï—¬  +endstream +endobj +227 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space/three) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1306 0 R +/FontName /GELVMR+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +228 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PÁjÃ0 ½ë+tlÅi²ËÀFG!‡ncÙ>À±•Ô°ØÆqùûÉné`YOïñ,qê^;gŠèuO GëL¤Å¯Q4YÇÕé>•WÏ*€`r¿-‰æΤDñÉà’↻ãÚƒx†¢uî¾OýE¿†ðC3¹„¶-Yè¢Â›š E¡:øMÛ9_[ ¬Ë|¼™ÑÞД¦¨ÜD +Ž噣ræÞÜXè¯*‚¬ónUqÙ4¥çòé¹ô\²Æ};«ñ§ñaU¯1²Ër™b/³ŽÇ > ³r¯_sÔ +endstream +endobj +229 0 obj +<< +/BaseFont /FBOJYT+Wingdings-Regular +/DescendantFonts 1307 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1308 0 R +/Type /Font +>> +endobj +230 0 obj +<< +/BaseFont /EBMJKV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 225 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 1309 0 R +/Type /Font +/Widths [305] +>> +endobj +231 0 obj +<< +/BaseFont /MPTKSF+Wingdings-Regular +/DescendantFonts 1310 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1311 0 R +/Type /Font +>> +endobj +232 0 obj +<< +/BaseFont /EBMJKV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 225 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1312 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +233 0 obj +<< +/BaseFont /GELVMR+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 227 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1313 0 R +/Type /Font +/Widths [202] +>> +endobj +234 0 obj +<< +/BaseFont /UUKWAP+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 223 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1314 0 R +/Type /Font +/Widths [212] +>> +endobj +235 0 obj +<< +/BaseFont /QOMYWX+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1315 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1316 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 509 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 0 0 516 0 0 0 0 0 0 0 0 0 0 +0 0 356 0 0 569 0 0 0 500] +>> +endobj +236 0 obj +<< +/BaseFont /QTLDWX+Wingdings-Regular +/DescendantFonts 1317 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1318 0 R +/Type /Font +>> +endobj +237 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1319 0 R +/FontName /JRAAHB+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +238 0 obj +<< +/Filter /FlateDecode +/Length 552 +>> +stream +H‰\”Ín›@…÷<Å,“E„Íܹ7HÈ’c'’ýQÝ>†±‹TÂdá·ïN”JE²ù3g>òÝaè»Ùåߧ¡9ÆÙ»¾âmxŸšèNñÒõÙºpm×ÌWËs­Ç,O“÷Û¯‡þ¡ÀGè#ðú|„>¡ÀGè#ðú|„ +:v(èPØ¡ C¡§À3°Ã€œœœœœœœ=<•ùŠ|e¾"_™¯ÈWæ+ò•ùŠ|e¾"_™¯ÈWv¢èD¹–.k±E'Êw¤xGÊ~ý(ûQô£ìGѲE?Æ~ ýý þFƒ¿Ñßàoô7øý þFƒ¿Ñßàoô7øý þFƒ‰u‹ÕcÊ‚Œ1¥'ãYJ!ãYJ%ûec~ì@lÑô%qŸû¿yŸ¦´õ—ÏͲç±Û»>~~‘Æati~Ù_ÿˆè +endstream +endobj +239 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/L/O/P/R/S/a/b/comma/d/e/eight/five/four/g/i/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/u/v/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1320 0 R +/FontName /MKMPHV+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +240 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +241 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/two/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1321 0 R +/FontName /ZPCSXV+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +242 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡Š”v7iê6)‡uÓ²}'CZrÈßÏ@ÕI³~–ýóK÷Ô9›€¿G¯{L0Zg".~aÀÉ:v`¬N·ªÜzVq"÷Û’pîÜè™”À?¨¹¤¸ÁîÑø÷Œ¿EƒÑº v_—~¼_CøÁ]‚Ú Ž$ôªÂUͼС¾MÛ8Ÿ[@¥>V3Ú\‚Ò•›É†¢ùBÑ2tæ_ÿ¡²†Q«È¤x¦Ù¦¡Ää©)˜aQ±Èø\ñ¹Íê¢NQÊê7ü­îŸÐkŒä¿ì¬Ï–­ÃûZƒ@¬|د2xØ +endstream +endobj +243 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/A/C/D/F/I/L/M/P/S/T/U/a/b/c/comma/d/e/f/five/four/g/h/hyphen/i/l/m/n/o/one/p/period/r/s/six/slash/space/t/three/two/u/v/w/x/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1322 0 R +/FontName /AALQVT+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +244 0 obj +<< +/Filter /FlateDecode +/Length 431 +>> +stream +H‰\“ËjÃ0E÷þ +-ÛEqbK3 ˜@HZÈ¢šö[I lg‘¿¯®oi¡ÛGHw8£|½ÝlC7šü5öÍÎæÐ…6ús‰7{ìB6/LÛ5ãÏhú6§zÈòÞ]Ï£?máϪÊäoiò<Æ«¹YµýÞßfùKl}ìÂÑÜ|¬w·&ß]†áËŸ|ÍÌ,—¦õ‡Tè©žë“7ù»Û¶i¾¯w)ó·âý:xSLã9eš¾õç¡n|¬ÃÑgÕ,=KS=¦g™ùÐþ›·ÂØþÐ|Ö1« +,žÍÒ/ñš¼oÈðùüHNÅ«’ÙÙrNžƒ r.É%Ø’-Ø‘XȒزŽEˬEÖ2k‘µ\o§õ òL K GOOÇš5k:Ôtôqð:„{ìE˜d…YAV˜•)K7›(YÁ÷ä{0ÎBg³ÐYà,> +endobj +246 0 obj +<< +/BaseFont /MKMPHV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 239 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1325 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 573 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 528 0 0 730 +602 0 0 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 0 610 539 0 596 0 292 0 0 292 871 599 589 +610 0 403 451 383 598 551] +>> +endobj +247 0 obj +<< +/BaseFont /BZAWJR+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 261 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1326 0 R +/Type /Font +/Widths [202] +>> +endobj +248 0 obj +<< +/BaseFont /AALQVT+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 243 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1327 0 R +/Type /Font +/Widths [212] +>> +endobj +249 0 obj +<< +/BaseFont /ZWBKHV+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 68 +/FontDescriptor 1328 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1329 0 R +/Type /Font +/Widths [683 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 508 585 0 +0 516 0 0 0 256 0 0 257 848 572 564 0 0 0 0 +351 0 0 0 0 0 450] +>> +endobj +250 0 obj +<< +/BaseFont /JRPDRB+Wingdings-Regular +/DescendantFonts 1330 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1331 0 R +/Type /Font +>> +endobj +251 0 obj +<< +/BaseFont /MKMPHV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 239 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1332 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 573 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +252 0 obj +<< +/BaseFont /BZAWJR+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 261 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1333 0 R +/Type /Font +/Widths [202] +>> +endobj +253 0 obj +<< +/BaseFont /AALQVT+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 243 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1334 0 R +/Type /Font +/Widths [212] +>> +endobj +254 0 obj +<< +/BaseFont /ZWBKHV+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1328 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1335 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 509 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 0 0 516 0 0 0 0 0 0 0 0 0 0 +0 0 356 0 0 569 0 0 0 500] +>> +endobj +255 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1336 0 R +/FontName /IVOPTD+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +256 0 obj +<< +/Filter /FlateDecode +/Length 390 +>> +stream +H‰\’ÏjÃ0 ‡ï~ +»ÃH›6R¡0Ò zØÖíÒDí«Üô·Ÿ~ÖØ`Ä_°d}ÈʪÝvºÑg¯±oö2úcÚ(—þñ9uÁ-rßvÍøó—¾Í¹\¦Éûé2ÊyŽ½+KŸ½éæeŒ“ŸÝ·ýAn\ö[‰]8ùÙGµ¿ñÙþ: _r–0ú¹ßl|+G=è©žë³ø,¥ÝîZÝïÆéVsþ"Þ§A|žþ&Óô­\†º‘X‡“¸r®ÏÆ—úlœ„ößþ²°´Ã±ù¬£+sÏçº(o·àãð£±X.ïëâÊÕ"±.ÊKã%xe¼“1Ù˜Á•q¶º+Ô-òĺ(Û™Î$«E¨ECˆ!‹¡cu u©0.Àæ@p s 8ÐÚx ¾3¾›ÁÌàFÖBOÈzBè [=dsc¸±¹1ÜØÜnln 76†›íϺàn שSçg¥¹Æ¨c’F3Í&£ ò;½C?xÍÂë¾ìÔ¿‹ +endstream +endobj +257 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [28 /f_f_i /f_l /f_i /f_f] +/Type /Encoding +>> +endobj +258 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_f_i/f_l/f_i/f_f/space/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/four/colon/question/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/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/quoteright/endash) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1337 0 R +/FontName /RTXRPL+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +259 0 obj +<< +/Filter /FlateDecode +/Length 531 +>> +stream +H‰\”Ín£0…÷<…—í¢âϾ·‘P¤4m¥,æG“Îp2H ‡,òöãÃAÍhǘ{øÎMºÝ½îún2éÏ04{?™c×·Á_†kh¼9øS×'yaÚ®™–ÑüÛœë1Icñþv™üyׇ¤ªLú+N^¦p3›v8øÇ$ýZºþd~o÷&Ý_ÇñÓŸ}?™Ì¬×¦õÇhô­¿×goÒ¹ìi×Æùnº=Åšû·Ñ›bç„i†Ö_ƺñ¡îO>©²x¬Mõuâûö¿yq,;›?uHª|Î2‘å\­ã½×û½-Æo÷ñ<ÿþOMÙ<Ž—¨Ÿ©Ÿ¡WÔ¨)øž~ýã%jzÇKÔô—¤*éY³̩s肺€¶ÔzC½¦O ËZ‹ZËZ‹Z[R—Ðô±ð±ŽÚA 52Z¥Vhf´Èh™Ñ"£eF‹Œ–-2Zf´ÈhÉfÁæ˜Ñ!£#››#››#››#››#››#››0¯ ¯ÐSà)ôx +=žBO§Èò¿BÓSfOæäæ×°ç‚žË õ ô²¦ÐYÖú Ë:BdYC胲Š>(ùüJ~¿’_Á¯äWð+ùüJ~¿’_Á¯äWð+ùüJ~ÿ +ï*²÷WB]ÎhÙ)ØJqÇ›¯}Ú\Cˆ[tþ,Ì{»²ëý×—cF«p&ì + +endstream +endobj +260 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [29 /hyphen.cap /f_i /f_l] +/Type /Encoding +>> +endobj +261 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/X/Y/Z/a/b/c/colon/comma/d/e/eight/f/f_i/f_l/five/four/g/h/hyphen/hyphen.cap/i/k/l/m/n/nine/o/one/p/parenleft/parenright/period/q/r/s/seven/six/slash/space/t/three/two/u/v/w/x/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1338 0 R +/FontName /BZAWJR+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +262 0 obj +<< +/Filter /FlateDecode +/Length 541 +>> +stream +H‰\”Ín£0…÷<…—í¢‚Àõ½„"¥I+e1?št€€“Aj²ÈÛ'jG‰p,°¿OG6éf·ÝuíäÒŸc_ïÃäŽm׌áÒ_Ç:¸C8µ]²È]ÓÖÓ}4ÿ×çjHÒ8y»Lá¼ëŽ}R–.ý^¦ñæÖMIúclÂØv'÷ð{³téþ: áºÉenµrM8Æ…¾UÃ÷ê\:O{Ú5ñy;ݞ✯7ÞoCpù<^P¦î›pª:ŒUw +I™ÅßÊ•oñ·JB×ü÷\—œv8Öª1)Ûør–åÛU̯sV×ã·¯ñ&ŽóŒïfÈÏÌÏÈKfÌÉ7Ìóûÿ¬síx‹™ëÆ[R\³ÀšÅ‚yœ3çÈs,Ì‚ì™=²2+²12= xô,àY¬™×1 ¹®+à +¹®+à +¹®+à +¹®+à +¹®°A?Â~ýûô#ìGÐg?ýxºy¸yºy¸yºy¸yºy¸yºy¸yºy¸yºy¸yºy¸yvâщ²E'J®‚«ä*¸J®‚«ä*¸ª÷}ƒL®‚«ä*¸Jî¼Ïô…ù™ýÌûMÙ¢½ïMô£÷}‰~Œýú1:œÎg£³ÁÙèlp6:œÎg£³ÁÙèlp6:œ]ÅÙý4á¸Å¯‚û<Ëõuã1ž?óùÅÉm»ðùuúÁÅY¸’¿ k`Í +endstream +endobj +263 0 obj +[1339 0 R] +endobj +264 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\PÁjÃ0 ½û+tlÅm¶ÃÁPZ +9¬ËöŽ­¤†Æ6ŠsÈßOvKØâñÞO’‡æØx—@~R0-&è·„S˜É t88/vXgҕߌ: +Éæv™Žïƒ¨k_LN‰Xímèp-ä…,’ó¬~íd;ÇxÃ}‚-({ô¡ãY²Ø6eÞ¥eÞ?Å÷ª‚w÷0&Xœ¢6HÚ(ê-—‚úÄ¥zû¯î®®7WMEýÂjnï*£·×‚¸eïC•§ð²ðŒhf"NW.Rbå@Îãóh1D`W~âW€(¬rO +endstream +endobj +265 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +266 0 obj +<< +/BaseFont /UAAMMA+Wingdings-Regular +/DescendantFonts 1340 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1341 0 R +/Type /Font +>> +endobj +267 0 obj +<< +/BaseFont /ATGBSO+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1342 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1343 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +268 0 obj +<< +/BaseFont /MBBVEQ+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1344 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1345 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 509 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 0 0 516 0 0 0 0 0 0 0 0 0 0 +0 0 356 0 0 569 0 0 0 500] +>> +endobj +269 0 obj +<< +/BaseFont /WDEYOW+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1346 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1347 0 R +/Type /Font +/Widths [212] +>> +endobj +270 0 obj +<< +/BaseFont /XXPZCU+Wingdings-Regular +/DescendantFonts 1348 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1349 0 R +/Type /Font +>> +endobj +271 0 obj +<< +/BaseFont /UQBHMA+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 1350 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 1351 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +272 0 obj +<< +/BaseFont /BLLXGM+MyriadPro-Light +/Encoding 1352 0 R +/FirstChar 31 +/FontDescriptor 1353 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 1354 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 488 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +273 0 obj +<< +/K [304 0 R 305 0 R 306 0 R 1355 0 R 1356 0 R 1357 0 R 1358 0 R 1359 0 R 1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R +1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R 1378 0 R 1379 0 R 322 0 R 1380 0 R 1381 0 R 1382 0 R +1383 0 R 1384 0 R 1385 0 R 1386 0 R 1387 0 R] +/P 171 0 R +/S /Story +>> +endobj +274 0 obj +<< +/K [335 0 R 336 0 R 337 0 R 341 0 R 343 0 R 347 0 R 349 0 R 352 0 R 353 0 R 355 0 R 358 0 R 359 0 R 361 0 R 1388 0 R 1389 0 R 376 0 R +379 0 R 381 0 R 383 0 R 385 0 R 386 0 R 387 0 R 389 0 R 390 0 R 392 0 R 394 0 R 1390 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R +408 0 R 409 0 R 412 0 R 415 0 R 416 0 R 420 0 R 423 0 R 427 0 R 428 0 R 431 0 R 432 0 R 433 0 R 437 0 R 442 0 R 443 0 R 446 0 R +448 0 R 449 0 R 451 0 R 452 0 R 453 0 R 457 0 R 458 0 R 461 0 R 462 0 R 465 0 R 466 0 R 468 0 R 469 0 R 472 0 R 473 0 R 474 0 R +477 0 R 478 0 R 479 0 R 483 0 R 484 0 R 487 0 R 488 0 R 491 0 R 492 0 R 494 0 R 1391 0 R 516 0 R 517 0 R 524 0 R 527 0 R 1392 0 R +536 0 R 537 0 R 538 0 R 539 0 R 542 0 R 546 0 R 547 0 R 656 0 R 657 0 R 658 0 R 1393 0 R 744 0 R 745 0 R 748 0 R 1394 0 R 758 0 R +759 0 R 764 0 R 767 0 R 771 0 R 772 0 R 1395 0 R 1396 0 R 1397 0 R 776 0 R 777 0 R 1398 0 R 804 0 R 805 0 R 1399 0 R 831 0 R 837 0 R +883 0 R 884 0 R 887 0 R 889 0 R 1400 0 R 932 0 R 933 0 R 1401 0 R 950 0 R 951 0 R 953 0 R 954 0 R 1402 0 R 970 0 R 978 0 R 984 0 R +989 0 R 990 0 R 991 0 R 1403 0 R 1030 0 R 1032 0 R 1033 0 R 1041 0 R 1042 0 R 1050 0 R 1051 0 R 1055 0 R 1062 0 R 1065 0 R 1404 0 R 1090 0 R +1091 0 R 1092 0 R 1095 0 R 1096 0 R 1099 0 R 1101 0 R 1102 0 R 1103 0 R 1106 0 R 1111 0 R 1112 0 R 1120 0 R 1121 0 R 1123 0 R 1405 0 R 1136 0 R +1147 0 R 1148 0 R 1153 0 R 1158 0 R 1160 0 R 1165 0 R 1167 0 R 1172 0 R 1173 0 R 1178 0 R 1183 0 R 1184 0 R 1186 0 R 1192 0 R 1406 0 R 1224 0 R +1229 0 R 1234 0 R 1235 0 R 1407 0 R 1279 0 R 1281 0 R 1282 0 R 1285 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R] +/P 171 0 R +/S /Story +>> +endobj +275 0 obj +<< +/K 399 0 R +/P 171 0 R +/S /Story +>> +endobj +276 0 obj +<< +/K 1408 0 R +/P 171 0 R +/S /Story +>> +endobj +277 0 obj +<< +/K 429 0 R +/P 171 0 R +/S /Story +>> +endobj +278 0 obj +<< +/K 523 0 R +/P 171 0 R +/S /Story +>> +endobj +279 0 obj +<< +/K 1409 0 R +/P 171 0 R +/S /Story +>> +endobj +280 0 obj +<< +/K 545 0 R +/P 171 0 R +/S /Story +>> +endobj +281 0 obj +<< +/A << +/BBox [80.2668 424.225 459.036 719.737] +/O /Layout +/Placement /Block +>> +/K 653 +/P 171 0 R +/Pg 23 0 R +/S /Figure +>> +endobj +282 0 obj +<< +/K 618 0 R +/P 171 0 R +/S /Story +>> +endobj +283 0 obj +<< +/K 1410 0 R +/P 171 0 R +/S /Story +>> +endobj +284 0 obj +<< +/K 620 0 R +/P 171 0 R +/S /Story +>> +endobj +285 0 obj +<< +/K 1411 0 R +/P 171 0 R +/S /Story +>> +endobj +286 0 obj +<< +/K 1412 0 R +/P 171 0 R +/S /Story +>> +endobj +287 0 obj +<< +/K 775 0 R +/P 171 0 R +/S /Story +>> +endobj +288 0 obj +<< +/K 836 0 R +/P 171 0 R +/S /Story +>> +endobj +289 0 obj +<< +/K 841 0 R +/P 171 0 R +/S /Story +>> +endobj +290 0 obj +<< +/K 1413 0 R +/P 171 0 R +/S /Story +>> +endobj +291 0 obj +<< +/K 988 0 R +/P 171 0 R +/S /Story +>> +endobj +292 0 obj +<< +/K 1078 0 R +/P 171 0 R +/S /Story +>> +endobj +293 0 obj +<< +/K 1117 0 R +/P 171 0 R +/S /Story +>> +endobj +294 0 obj +<< +/K 1144 0 R +/P 171 0 R +/S /Story +>> +endobj +295 0 obj +<< +/K 1161 0 R +/P 171 0 R +/S /Story +>> +endobj +296 0 obj +<< +/K 1194 0 R +/P 171 0 R +/S /Story +>> +endobj +297 0 obj +<< +/A << +/BBox [70.3937 113.433 522.047 686.881] +/O /Layout +/Placement /Block +>> +/K 2210 +/P 171 0 R +/Pg 47 0 R +/S /Figure +>> +endobj +298 0 obj +<< +/K 1414 0 R +/P 171 0 R +/S /Story +>> +endobj +299 0 obj +<< +/A << +/BBox [79.3701 141.083 513.071 709.713] +/O /Layout +/Placement /Block +>> +/K 2246 +/P 171 0 R +/Pg 49 0 R +/S /Figure +>> +endobj +300 0 obj +<< +/A << +/BBox [113.386 72.5072 530.079 735.365] +/O /Layout +/Placement /Block +>> +/K 2247 +/P 171 0 R +/Pg 50 0 R +/S /Figure +>> +endobj +301 0 obj +<< +/A << +/BBox [85.9409 70.8661 500.831 737.008] +/O /Layout +/Placement /Block +>> +/K 2248 +/P 171 0 R +/Pg 51 0 R +/S /Figure +>> +endobj +302 0 obj +<< +/A << +/BBox [118.943 70.8661 524.521 737.008] +/O /Layout +/Placement /Block +>> +/K 2249 +/P 171 0 R +/Pg 52 0 R +/S /Figure +>> +endobj +303 0 obj +<< +/K [1294 0 R 1415 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R] +/P 171 0 R +/S /Story +>> +endobj +304 0 obj +<< +/C /Pa10 +/K 2209 +/P 273 0 R +/Pg 47 0 R +/S /Zwischenhead_2 +>> +endobj +305 0 obj +<< +/C /Pa10 +/K 2211 +/P 273 0 R +/Pg 48 0 R +/S /Zwischenhead_2 +>> +endobj +306 0 obj +<< +/C /Pa2 +/K [2212 2213] +/P 273 0 R +/Pg 48 0 R +/S /Lauftext_1._Abs +>> +endobj +307 0 obj +<< +/C /A5 +/K 2214 +/P 1416 0 R +/Pg 48 0 R +/S /Span +>> +endobj +308 0 obj +<< +/K 2215 +/P 1417 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +309 0 obj +<< +/C /A5 +/K 2216 +/P 1418 0 R +/Pg 48 0 R +/S /Span +>> +endobj +310 0 obj +<< +/K 2217 +/P 1419 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +311 0 obj +<< +/C /A5 +/K 2218 +/P 1420 0 R +/Pg 48 0 R +/S /Span +>> +endobj +312 0 obj +<< +/K [2219 2220] +/P 1421 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +313 0 obj +<< +/C /A5 +/K 2221 +/P 1422 0 R +/Pg 48 0 R +/S /Span +>> +endobj +314 0 obj +<< +/K [2222 2223] +/P 1423 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +315 0 obj +<< +/C /A5 +/K 2224 +/P 1424 0 R +/Pg 48 0 R +/S /Span +>> +endobj +316 0 obj +<< +/K [2225 317 0 R 2227] +/P 1425 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +317 0 obj +<< +/ActualText +/K 2226 +/P 316 0 R +/Pg 48 0 R +/S /Span +>> +endobj +318 0 obj +<< +/C /A5 +/K 2228 +/P 1426 0 R +/Pg 48 0 R +/S /Span +>> +endobj +319 0 obj +<< +/K [2229 2230] +/P 1427 0 R +/Pg 48 0 R +/S /LBody +>> +endobj +320 0 obj +<< +/C /A6 +/K 2231 +/P 1357 0 R +/Pg 48 0 R +/S /Span +>> +endobj +321 0 obj +<< +/C /A6 +/K 2232 +/P 1357 0 R +/Pg 48 0 R +/S /Span +>> +endobj +322 0 obj +<< +/C /Pa2 +/K 2233 +/P 273 0 R +/Pg 48 0 R +/S /Lauftext_1._Abs +>> +endobj +323 0 obj +<< +/C /A6 +/K 2234 +/P 1381 0 R +/Pg 48 0 R +/S /Span +>> +endobj +324 0 obj +<< +/C /Pa9 +/K [2235 2236] +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +325 0 obj +<< +/C /Pa9 +/K 2237 +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +326 0 obj +<< +/C /Pa9 +/K 2238 +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +327 0 obj +<< +/C /Pa9 +/K 2239 +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +328 0 obj +<< +/C /Pa9 +/K 2240 +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +329 0 obj +<< +/C /Pa9 +/K 2241 +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +330 0 obj +<< +/C /Pa9 +/K 2242 +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +331 0 obj +<< +/C /Pa9 +/K 2243 +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +332 0 obj +<< +/C /Pa9 +/K 2244 +/P 1428 0 R +/Pg 48 0 R +/S /Kastenlauftext +>> +endobj +333 0 obj +<< +/C /A6 +/K 2245 +/P 1387 0 R +/Pg 49 0 R +/S /Span +>> +endobj +334 0 obj +<< +/A << +/LineHeight 56.0 +/O /Layout +>> +/K 0 +/P 335 0 R +/Pg 11 0 R +/S /Span +>> +endobj +335 0 obj +<< +/A << +/LineHeight 24.0 +/O /Layout +/SpaceAfter 24.0 +>> +/K [334 0 R 1] +/P 274 0 R +/Pg 11 0 R +/S /Kapitel-Head +>> +endobj +336 0 obj +<< +/C /Pa1 +/K 2 +/P 274 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +337 0 obj +<< +/C /Pa2 +/K [3 338 0 R 5 339 0 R 7 8 9 340 0 R 11 12 13 14 15 16 17] +/P 274 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +338 0 obj +<< +/ActualText +/K 4 +/P 337 0 R +/Pg 11 0 R +/S /Span +>> +endobj +339 0 obj +<< +/ActualText +/K 6 +/P 337 0 R +/Pg 11 0 R +/S /Span +>> +endobj +340 0 obj +<< +/ActualText +/K 10 +/P 337 0 R +/Pg 11 0 R +/S /Span +>> +endobj +341 0 obj +<< +/C /Pa3 +/K [18 19 20 342 0 R 22 23 24 25] +/P 274 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +342 0 obj +<< +/ActualText +/K 21 +/P 341 0 R +/Pg 11 0 R +/S /Span +>> +endobj +343 0 obj +<< +/C /Pa3 +/K [26 27 28 29 30 31 32 33 1429 0 R 35 345 0 R 37 346 0 R 39 40] +/P 274 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +344 0 obj +<< +/C /A4 +/K 34 +/P 1430 0 R +/Pg 11 0 R +/S /Span +>> +endobj +345 0 obj +<< +/ActualText +/K 36 +/P 343 0 R +/Pg 11 0 R +/S /Span +>> +endobj +346 0 obj +<< +/ActualText +/K 38 +/P 343 0 R +/Pg 11 0 R +/S /Span +>> +endobj +347 0 obj +<< +/C /Pa3 +/K [41 42 43 44 45 46 348 0 R 48 49 50] +/P 274 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +348 0 obj +<< +/ActualText +/K 47 +/P 347 0 R +/Pg 11 0 R +/S /Span +>> +endobj +349 0 obj +<< +/C /Pa3 +/K [51 52 350 0 R 54 351 0 R 56 57] +/P 274 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +350 0 obj +<< +/ActualText +/K 53 +/P 349 0 R +/Pg 12 0 R +/S /Span +>> +endobj +351 0 obj +<< +/ActualText +/K 55 +/P 349 0 R +/Pg 12 0 R +/S /Span +>> +endobj +352 0 obj +<< +/C /Pa1 +/K 58 +/P 274 0 R +/Pg 12 0 R +/S /Zwischenhead_1 +>> +endobj +353 0 obj +<< +/C /Pa2 +/K [59 354 0 R 61 62 63 64 65 66 67] +/P 274 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +354 0 obj +<< +/ActualText +/K 60 +/P 353 0 R +/Pg 12 0 R +/S /Span +>> +endobj +355 0 obj +<< +/C /Pa3 +/K [68 356 0 R 70 357 0 R 72 73 74 75 76 77 78 79] +/P 274 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +356 0 obj +<< +/ActualText +/K 69 +/P 355 0 R +/Pg 12 0 R +/S /Span +>> +endobj +357 0 obj +<< +/ActualText +/K 71 +/P 355 0 R +/Pg 12 0 R +/S /Span +>> +endobj +358 0 obj +<< +/C /Pa1 +/K 80 +/P 274 0 R +/Pg 12 0 R +/S /Zwischenhead_1 +>> +endobj +359 0 obj +<< +/C /Pa2 +/K [81 82 360 0 R 84] +/P 274 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +360 0 obj +<< +/ActualText +/K 83 +/P 359 0 R +/Pg 12 0 R +/S /Span +>> +endobj +361 0 obj +<< +/C /Pa3 +/K [85 86 87 88 89] +/P 274 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +362 0 obj +<< +/C /A5 +/K 90 +/P 1431 0 R +/Pg 12 0 R +/S /Span +>> +endobj +363 0 obj +<< +/K [91 364 0 R 93] +/P 1432 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +364 0 obj +<< +/ActualText +/K 92 +/P 363 0 R +/Pg 12 0 R +/S /Span +>> +endobj +365 0 obj +<< +/C /A5 +/K 94 +/P 1433 0 R +/Pg 12 0 R +/S /Span +>> +endobj +366 0 obj +<< +/K [95 367 0 R 97] +/P 1434 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +367 0 obj +<< +/ActualText +/K 96 +/P 366 0 R +/Pg 12 0 R +/S /Span +>> +endobj +368 0 obj +<< +/C /A5 +/K 98 +/P 1435 0 R +/Pg 12 0 R +/S /Span +>> +endobj +369 0 obj +<< +/K 99 +/P 1436 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +370 0 obj +<< +/C /A5 +/K 100 +/P 1437 0 R +/Pg 12 0 R +/S /Span +>> +endobj +371 0 obj +<< +/K 101 +/P 1438 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +372 0 obj +<< +/C /A5 +/K 102 +/P 1439 0 R +/Pg 12 0 R +/S /Span +>> +endobj +373 0 obj +<< +/K 103 +/P 1440 0 R +/Pg 12 0 R +/S /LBody +>> +endobj +374 0 obj +<< +/C /A6 +/K 104 +/P 376 0 R +/Pg 13 0 R +/S /Span +>> +endobj +375 0 obj +<< +/C /A6 +/K 105 +/P 376 0 R +/Pg 13 0 R +/S /Span +>> +endobj +376 0 obj +<< +/C /Pa3 +/K [374 0 R 375 0 R 106 107 108 109 110 377 0 R 112 113 114] +/P 274 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +377 0 obj +<< +/ActualText +/K 111 +/P 376 0 R +/Pg 13 0 R +/S /Span +>> +endobj +378 0 obj +<< +/C /A6 +/K 115 +/P 379 0 R +/Pg 13 0 R +/S /Span +>> +endobj +379 0 obj +<< +/C /Pa2 +/K [378 0 R 116 117 118 119 120] +/P 274 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +380 0 obj +<< +/C /A6 +/K 121 +/P 381 0 R +/Pg 13 0 R +/S /Span +>> +endobj +381 0 obj +<< +/C /Pa3 +/K [380 0 R 122 123 124] +/P 274 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +382 0 obj +<< +/C /A6 +/K 125 +/P 383 0 R +/Pg 13 0 R +/S /Span +>> +endobj +383 0 obj +<< +/C /Pa3 +/K [382 0 R 126 127 128 384 0 R 130 131 132 133 134 135] +/P 274 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +384 0 obj +<< +/ActualText +/K 129 +/P 383 0 R +/Pg 13 0 R +/S /Span +>> +endobj +385 0 obj +<< +/C /Pa1 +/K 136 +/P 274 0 R +/Pg 13 0 R +/S /Zwischenhead_1 +>> +endobj +386 0 obj +<< +/C /Pa2 +/K [137 138 139 140] +/P 274 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +387 0 obj +<< +/C /Pa3 +/K [141 388 0 R 143 144 145 146] +/P 274 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +388 0 obj +<< +/ActualText +/K 142 +/P 387 0 R +/Pg 13 0 R +/S /Span +>> +endobj +389 0 obj +<< +/C /Pa3 +/K [147 148 149 150 151 152] +/P 274 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +390 0 obj +<< +/C /Pa3 +/K [153 391 0 R 155 156 157 158 159 160] +/P 274 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +391 0 obj +<< +/ActualText +/K 154 +/P 390 0 R +/Pg 13 0 R +/S /Span +>> +endobj +392 0 obj +<< +/C /Pa3 +/K [161 162 163 164 165 393 0 R 167 168 169 170 171 172] +/P 274 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +393 0 obj +<< +/ActualText +/K 166 +/P 392 0 R +/Pg 14 0 R +/S /Span +>> +endobj +394 0 obj +<< +/C /Pa3 +/K [173 395 0 R 175 176 177 178 179 396 0 R 181 397 0 R 183 184 185 398 0 R 187 188 +189 190 191] +/P 274 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +395 0 obj +<< +/ActualText +/K 174 +/P 394 0 R +/Pg 14 0 R +/S /Span +>> +endobj +396 0 obj +<< +/ActualText +/K 180 +/P 394 0 R +/Pg 14 0 R +/S /Span +>> +endobj +397 0 obj +<< +/ActualText +/K 182 +/P 394 0 R +/Pg 14 0 R +/S /Span +>> +endobj +398 0 obj +<< +/ActualText +/K 186 +/P 394 0 R +/Pg 14 0 R +/S /Span +>> +endobj +399 0 obj +<< +/C /Pa6 +/K [192 193] +/P 275 0 R +/Pg 14 0 R +/S /Absatzformat_2 +>> +endobj +400 0 obj +<< +/C /Pa8 +/K 194 +/P 1441 0 R +/Pg 14 0 R +/S /Tab._Versal_bold_wei +>> +endobj +401 0 obj +<< +/C /Pa9 +/K [195 196 197 198 199 200 201 202] +/P 1442 0 R +/Pg 14 0 R +/S /Kastenlauftext +>> +endobj +402 0 obj +<< +/C /Pa9 +/K [203 204 205 206 207 208 209 210 211 212 213 214 215] +/P 1442 0 R +/Pg 14 0 R +/S /Kastenlauftext +>> +endobj +403 0 obj +<< +/C /Pa1 +/K 216 +/P 274 0 R +/Pg 15 0 R +/S /Zwischenhead_1 +>> +endobj +404 0 obj +<< +/C /Pa2 +/K [217 218] +/P 274 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +405 0 obj +<< +/C /Pa10 +/K 219 +/P 274 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +406 0 obj +<< +/C /Pa2 +/K [220 221 222 223 224 225 226 227 228] +/P 274 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +407 0 obj +<< +/C /Pa10 +/K 229 +/P 274 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +408 0 obj +<< +/C /Pa11 +/K 230 +/P 274 0 R +/Pg 15 0 R +/S /Zwischenhead_3 +>> +endobj +409 0 obj +<< +/C /Pa2 +/K [231 232 410 0 R 234 235 411 0 R 237 238 239 240 241 242 243 244 245 246] +/P 274 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +410 0 obj +<< +/ActualText +/K 233 +/P 409 0 R +/Pg 15 0 R +/S /Span +>> +endobj +411 0 obj +<< +/ActualText +/K 236 +/P 409 0 R +/Pg 15 0 R +/S /Span +>> +endobj +412 0 obj +<< +/C /Pa3 +/K [247 413 0 R 249 250 414 0 R 252 253 254 255 256 257 258 259 260 261] +/P 274 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +413 0 obj +<< +/ActualText +/K 248 +/P 412 0 R +/Pg 15 0 R +/S /Span +>> +endobj +414 0 obj +<< +/ActualText +/K 251 +/P 412 0 R +/Pg 15 0 R +/S /Span +>> +endobj +415 0 obj +<< +/C /Pa11 +/K 262 +/P 274 0 R +/Pg 16 0 R +/S /Zwischenhead_3 +>> +endobj +416 0 obj +<< +/C /Pa2 +/K [263 264 265 417 0 R 267 268 269 270 418 0 R 272 419 0 R 274 275 276 277 278] +/P 274 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +417 0 obj +<< +/ActualText +/K 266 +/P 416 0 R +/Pg 16 0 R +/S /Span +>> +endobj +418 0 obj +<< +/ActualText +/K 271 +/P 416 0 R +/Pg 16 0 R +/S /Span +>> +endobj +419 0 obj +<< +/ActualText +/K 273 +/P 416 0 R +/Pg 16 0 R +/S /Span +>> +endobj +420 0 obj +<< +/C /Pa3 +/K [279 421 0 R 281 422 0 R 283 284 285 286 287 288 289 290 291] +/P 274 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +421 0 obj +<< +/ActualText +/K 280 +/P 420 0 R +/Pg 16 0 R +/S /Span +>> +endobj +422 0 obj +<< +/ActualText +/K 282 +/P 420 0 R +/Pg 16 0 R +/S /Span +>> +endobj +423 0 obj +<< +/C /Pa3 +/K [292 293 294 295 424 0 R 297 298 425 0 R 300 301 302 426 0 R 304 305 306 307 +308] +/P 274 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +424 0 obj +<< +/ActualText +/K 296 +/P 423 0 R +/Pg 16 0 R +/S /Span +>> +endobj +425 0 obj +<< +/ActualText +/K 299 +/P 423 0 R +/Pg 16 0 R +/S /Span +>> +endobj +426 0 obj +<< +/ActualText +/K 303 +/P 423 0 R +/Pg 16 0 R +/S /Span +>> +endobj +427 0 obj +<< +/C /Pa11 +/K 309 +/P 274 0 R +/Pg 16 0 R +/S /Zwischenhead_3 +>> +endobj +428 0 obj +<< +/C /Pa2 +/K [310 311 312 313] +/P 274 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +429 0 obj +<< +/C /Pa6 +/K [314 315 430 0 R 317 318 319] +/P 277 0 R +/Pg 16 0 R +/S /Absatzformat_2 +>> +endobj +430 0 obj +<< +/ActualText +/K 316 +/P 429 0 R +/Pg 16 0 R +/S /Span +>> +endobj +431 0 obj +<< +/C /Pa10 +/K 320 +/P 274 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +432 0 obj +<< +/C /Pa2 +/K [321 322 323 324 325 326 327 328] +/P 274 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +433 0 obj +<< +/C /Pa3 +/K [329 330 331 434 0 R 333 334 435 0 R 336 337 338 339 340 341 342 436 0 R 344 +345 346 347 348] +/P 274 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +434 0 obj +<< +/ActualText +/K 332 +/P 433 0 R +/Pg 17 0 R +/S /Span +>> +endobj +435 0 obj +<< +/ActualText +/K 335 +/P 433 0 R +/Pg 17 0 R +/S /Span +>> +endobj +436 0 obj +<< +/ActualText +/K 343 +/P 433 0 R +/Pg 17 0 R +/S /Span +>> +endobj +437 0 obj +<< +/C /Pa3 +/K [349 350 351 438 0 R 353 354 355 356 357 439 0 R 359 360 440 0 R 362 441 0 R 364 +365 366] +/P 274 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +438 0 obj +<< +/ActualText +/K 352 +/P 437 0 R +/Pg 17 0 R +/S /Span +>> +endobj +439 0 obj +<< +/ActualText +/K 358 +/P 437 0 R +/Pg 17 0 R +/S /Span +>> +endobj +440 0 obj +<< +/ActualText +/K 361 +/P 437 0 R +/Pg 17 0 R +/S /Span +>> +endobj +441 0 obj +<< +/ActualText +/K 363 +/P 437 0 R +/Pg 17 0 R +/S /Span +>> +endobj +442 0 obj +<< +/C /Pa10 +/K 367 +/P 274 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +443 0 obj +<< +/C /Pa2 +/K [368 444 0 R 370 371 445 0 R 373 374] +/P 274 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +444 0 obj +<< +/ActualText +/K 369 +/P 443 0 R +/Pg 17 0 R +/S /Span +>> +endobj +445 0 obj +<< +/ActualText +/K 372 +/P 443 0 R +/Pg 17 0 R +/S /Span +>> +endobj +446 0 obj +<< +/C /Pa2 +/K [375 447 0 R 377] +/P 274 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +447 0 obj +<< +/ActualText +/K 376 +/P 446 0 R +/Pg 18 0 R +/S /Span +>> +endobj +448 0 obj +<< +/C /Pa10 +/K 378 +/P 274 0 R +/Pg 18 0 R +/S /Zwischenhead_2 +>> +endobj +449 0 obj +<< +/C /Pa2 +/K [379 380 450 0 R 382] +/P 274 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +450 0 obj +<< +/ActualText +/K 381 +/P 449 0 R +/Pg 18 0 R +/S /Span +>> +endobj +451 0 obj +<< +/C /Pa10 +/K 383 +/P 274 0 R +/Pg 18 0 R +/S /Zwischenhead_2 +>> +endobj +452 0 obj +<< +/C /Pa11 +/K 384 +/P 274 0 R +/Pg 18 0 R +/S /Zwischenhead_3 +>> +endobj +453 0 obj +<< +/C /Pa2 +/K [385 386 454 0 R 388 389 455 0 R 391 392 393 394 456 0 R 396 397 398 399 400] +/P 274 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +454 0 obj +<< +/ActualText +/K 387 +/P 453 0 R +/Pg 18 0 R +/S /Span +>> +endobj +455 0 obj +<< +/ActualText +/K 390 +/P 453 0 R +/Pg 18 0 R +/S /Span +>> +endobj +456 0 obj +<< +/ActualText +/K 395 +/P 453 0 R +/Pg 18 0 R +/S /Span +>> +endobj +457 0 obj +<< +/C /Pa11 +/K 401 +/P 274 0 R +/Pg 18 0 R +/S /Zwischenhead_3 +>> +endobj +458 0 obj +<< +/C /Pa2 +/K [402 403 404 405 459 0 R 407 408 409 460 0 R 411 412] +/P 274 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +459 0 obj +<< +/ActualText +/K 406 +/P 458 0 R +/Pg 18 0 R +/S /Span +>> +endobj +460 0 obj +<< +/ActualText +/K 410 +/P 458 0 R +/Pg 18 0 R +/S /Span +>> +endobj +461 0 obj +<< +/C /Pa10 +/K 413 +/P 274 0 R +/Pg 18 0 R +/S /Zwischenhead_2 +>> +endobj +462 0 obj +<< +/C /Pa2 +/K [414 415 416 417 463 0 R 419 464 0 R 421 << +/MCID 422 +/Pg 19 0 R +/Type /MCR +>> << +/MCID 423 +/Pg 19 0 R +/Type /MCR +>> << +/MCID 424 +/Pg 19 0 R +/Type /MCR +>>] +/P 274 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +463 0 obj +<< +/ActualText +/K 418 +/P 462 0 R +/Pg 18 0 R +/S /Span +>> +endobj +464 0 obj +<< +/ActualText +/K 420 +/P 462 0 R +/Pg 18 0 R +/S /Span +>> +endobj +465 0 obj +<< +/C /Pa10 +/K 425 +/P 274 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +466 0 obj +<< +/C /Pa2 +/K [426 467 0 R 428 429 430 431] +/P 274 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +467 0 obj +<< +/ActualText +/K 427 +/P 466 0 R +/Pg 19 0 R +/S /Span +>> +endobj +468 0 obj +<< +/C /Pa10 +/K 432 +/P 274 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +469 0 obj +<< +/C /Pa2 +/K [433 470 0 R 435 436 437 438 439 440 471 0 R 442 443 444 445] +/P 274 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +470 0 obj +<< +/ActualText +/K 434 +/P 469 0 R +/Pg 19 0 R +/S /Span +>> +endobj +471 0 obj +<< +/ActualText +/K 441 +/P 469 0 R +/Pg 19 0 R +/S /Span +>> +endobj +472 0 obj +<< +/C /Pa10 +/K 446 +/P 274 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +473 0 obj +<< +/C /Pa11 +/K 447 +/P 274 0 R +/Pg 19 0 R +/S /Zwischenhead_3 +>> +endobj +474 0 obj +<< +/C /Pa2 +/K [448 449 450 451 452 453 454 475 0 R 456 457 476 0 R 459] +/P 274 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +475 0 obj +<< +/ActualText +/K 455 +/P 474 0 R +/Pg 19 0 R +/S /Span +>> +endobj +476 0 obj +<< +/ActualText +/K 458 +/P 474 0 R +/Pg 19 0 R +/S /Span +>> +endobj +477 0 obj +<< +/C /Pa3 +/K [460 461 462 463] +/P 274 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +478 0 obj +<< +/C /Pa11 +/K 464 +/P 274 0 R +/Pg 20 0 R +/S /Zwischenhead_3 +>> +endobj +479 0 obj +<< +/C /Pa2 +/K [465 466 480 0 R 468 481 0 R 470 471 472 473 474 482 0 R 476] +/P 274 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +480 0 obj +<< +/ActualText +/K 467 +/P 479 0 R +/Pg 20 0 R +/S /Span +>> +endobj +481 0 obj +<< +/ActualText +/K 469 +/P 479 0 R +/Pg 20 0 R +/S /Span +>> +endobj +482 0 obj +<< +/ActualText +/K 475 +/P 479 0 R +/Pg 20 0 R +/S /Span +>> +endobj +483 0 obj +<< +/C /Pa10 +/K 477 +/P 274 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +484 0 obj +<< +/C /Pa2 +/K [478 485 0 R 480 481 482 486 0 R 484 485 486 487] +/P 274 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +485 0 obj +<< +/ActualText +/K 479 +/P 484 0 R +/Pg 20 0 R +/S /Span +>> +endobj +486 0 obj +<< +/ActualText +/K 483 +/P 484 0 R +/Pg 20 0 R +/S /Span +>> +endobj +487 0 obj +<< +/C /Pa1 +/K 488 +/P 274 0 R +/Pg 20 0 R +/S /Zwischenhead_1 +>> +endobj +488 0 obj +<< +/C /Pa2 +/K [489 490 491 489 0 R 493 494 490 0 R 496 497 498 499] +/P 274 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +489 0 obj +<< +/ActualText +/K 492 +/P 488 0 R +/Pg 20 0 R +/S /Span +>> +endobj +490 0 obj +<< +/ActualText +/K 495 +/P 488 0 R +/Pg 20 0 R +/S /Span +>> +endobj +491 0 obj +<< +/C /Pa10 +/K 500 +/P 274 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +492 0 obj +<< +/C /Pa2 +/K [501 502 503 504 505 506 507 508 << +/MCID 509 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 510 +/Pg 21 0 R +/Type /MCR +>> 493 0 R << +/MCID 512 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 513 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 514 +/Pg 21 0 R +/Type /MCR +>>] +/P 274 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +493 0 obj +<< +/ActualText +/K 511 +/P 492 0 R +/Pg 21 0 R +/S /Span +>> +endobj +494 0 obj +<< +/C /Pa3 +/K [515 516 495 0 R 518 519 520 496 0 R 522 523 497 0 R 525 526 527 528] +/P 274 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +495 0 obj +<< +/ActualText +/K 517 +/P 494 0 R +/Pg 21 0 R +/S /Span +>> +endobj +496 0 obj +<< +/ActualText +/K 521 +/P 494 0 R +/Pg 21 0 R +/S /Span +>> +endobj +497 0 obj +<< +/ActualText +/K 524 +/P 494 0 R +/Pg 21 0 R +/S /Span +>> +endobj +498 0 obj +<< +/C /A5 +/K 529 +/P 1443 0 R +/Pg 21 0 R +/S /Span +>> +endobj +499 0 obj +<< +/C /A5 +/K 530 +/P 1443 0 R +/Pg 21 0 R +/S /Span +>> +endobj +500 0 obj +<< +/K 531 +/P 1444 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +501 0 obj +<< +/C /A5 +/K 532 +/P 1445 0 R +/Pg 21 0 R +/S /Span +>> +endobj +502 0 obj +<< +/C /A5 +/K 533 +/P 1445 0 R +/Pg 21 0 R +/S /Span +>> +endobj +503 0 obj +<< +/K 534 +/P 1446 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +504 0 obj +<< +/C /A5 +/K 535 +/P 1447 0 R +/Pg 21 0 R +/S /Span +>> +endobj +505 0 obj +<< +/C /A5 +/K 536 +/P 1447 0 R +/Pg 21 0 R +/S /Span +>> +endobj +506 0 obj +<< +/K [537 538] +/P 1448 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +507 0 obj +<< +/C /A5 +/K 539 +/P 1449 0 R +/Pg 21 0 R +/S /Span +>> +endobj +508 0 obj +<< +/C /A5 +/K 540 +/P 1449 0 R +/Pg 21 0 R +/S /Span +>> +endobj +509 0 obj +<< +/K 541 +/P 1450 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +510 0 obj +<< +/C /A5 +/K 542 +/P 1451 0 R +/Pg 21 0 R +/S /Span +>> +endobj +511 0 obj +<< +/C /A5 +/K 543 +/P 1451 0 R +/Pg 21 0 R +/S /Span +>> +endobj +512 0 obj +<< +/K 544 +/P 1452 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +513 0 obj +<< +/C /A5 +/K 545 +/P 1453 0 R +/Pg 21 0 R +/S /Span +>> +endobj +514 0 obj +<< +/C /A5 +/K 546 +/P 1453 0 R +/Pg 21 0 R +/S /Span +>> +endobj +515 0 obj +<< +/K 547 +/P 1454 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +516 0 obj +<< +/C /Pa10 +/K 548 +/P 274 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +517 0 obj +<< +/C /Pa2 +/K [549 518 0 R 551 552 553 554 519 0 R 556 557 558 559 560 561 520 0 R 563 564 +565 566 567 521 0 R 569 522 0 R 571] +/P 274 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +518 0 obj +<< +/ActualText +/K 550 +/P 517 0 R +/Pg 21 0 R +/S /Span +>> +endobj +519 0 obj +<< +/ActualText +/K 555 +/P 517 0 R +/Pg 21 0 R +/S /Span +>> +endobj +520 0 obj +<< +/ActualText +/K 562 +/P 517 0 R +/Pg 21 0 R +/S /Span +>> +endobj +521 0 obj +<< +/ActualText +/K 568 +/P 517 0 R +/Pg 21 0 R +/S /Span +>> +endobj +522 0 obj +<< +/ActualText +/K 570 +/P 517 0 R +/Pg 21 0 R +/S /Span +>> +endobj +523 0 obj +<< +/C /Pa6 +/K [572 573 574 575 576] +/P 278 0 R +/Pg 21 0 R +/S /Einklinker-Text__rec +>> +endobj +524 0 obj +<< +/C /Pa3 +/K [577 578 579 580 581 582 583 584 585 525 0 R 587 588 526 0 R 590] +/P 274 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +525 0 obj +<< +/ActualText +/K 586 +/P 524 0 R +/Pg 22 0 R +/S /Span +>> +endobj +526 0 obj +<< +/ActualText +/K 589 +/P 524 0 R +/Pg 22 0 R +/S /Span +>> +endobj +527 0 obj +<< +/C /Pa2 +/K [591 592 593 594 528 0 R 596 597 598 599 600 601 602 603] +/P 274 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +528 0 obj +<< +/ActualText +/K 595 +/P 527 0 R +/Pg 22 0 R +/S /Span +>> +endobj +529 0 obj +<< +/C /Pa8 +/K 604 +/P 1455 0 R +/Pg 22 0 R +/S /Tab._Versal_bold_wei +>> +endobj +530 0 obj +<< +/C /Pa9 +/K [605 606 607] +/P 1456 0 R +/Pg 22 0 R +/S /Kastenlauftext +>> +endobj +531 0 obj +<< +/C /Pa9 +/K [608 609 610 611 612 613 614 615] +/P 1456 0 R +/Pg 22 0 R +/S /Kastenlauftext +>> +endobj +532 0 obj +<< +/C /Pa9 +/K [616 617 533 0 R 619 620 621 622] +/P 1456 0 R +/Pg 22 0 R +/S /Kastenlauftext +>> +endobj +533 0 obj +<< +/ActualText +/K 618 +/P 532 0 R +/Pg 22 0 R +/S /Span +>> +endobj +534 0 obj +<< +/C /Pa9 +/K [623 535 0 R 625 626 627] +/P 1456 0 R +/Pg 22 0 R +/S /Kastenlauftext +>> +endobj +535 0 obj +<< +/ActualText +/K 624 +/P 534 0 R +/Pg 22 0 R +/S /Span +>> +endobj +536 0 obj +<< +/C /Pa10 +/K 628 +/P 274 0 R +/Pg 23 0 R +/S /Zwischenhead_2 +>> +endobj +537 0 obj +<< +/C /Pa2 +/K [629 630 631 632 633 634 635 636 637 638] +/P 274 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +538 0 obj +<< +/C /Pa11 +/K 639 +/P 274 0 R +/Pg 23 0 R +/S /Zwischenhead_3 +>> +endobj +539 0 obj +<< +/C /Pa2 +/K [640 641 642 540 0 R 644 541 0 R 646] +/P 274 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +540 0 obj +<< +/ActualText +/K 643 +/P 539 0 R +/Pg 23 0 R +/S /Span +>> +endobj +541 0 obj +<< +/ActualText +/K 645 +/P 539 0 R +/Pg 23 0 R +/S /Span +>> +endobj +542 0 obj +<< +/C /Pa3 +/K [647 543 0 R 649 544 0 R 651] +/P 274 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +543 0 obj +<< +/ActualText +/K 648 +/P 542 0 R +/Pg 23 0 R +/S /Span +>> +endobj +544 0 obj +<< +/ActualText +/K 650 +/P 542 0 R +/Pg 23 0 R +/S /Span +>> +endobj +545 0 obj +<< +/A << +/LineHeight 11.0 +/O /Layout +>> +/K 652 +/P 280 0 R +/Pg 23 0 R +/S /Tab._Versal_bold_sch +>> +endobj +546 0 obj +<< +/C /Pa11 +/K 654 +/P 274 0 R +/Pg 24 0 R +/S /Zwischenhead_3 +>> +endobj +547 0 obj +<< +/C /Pa2 +/K [655 548 0 R 657 658 659 660 549 0 R 662 663 664 << +/MCID 772 +/Pg 25 0 R +/Type /MCR +>> 619 0 R << +/MCID 774 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 775 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 776 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 777 +/Pg 25 0 R +/Type /MCR +>> +<< +/MCID 778 +/Pg 25 0 R +/Type /MCR +>>] +/P 274 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +548 0 obj +<< +/ActualText +/K 656 +/P 547 0 R +/Pg 24 0 R +/S /Span +>> +endobj +549 0 obj +<< +/ActualText +/K 661 +/P 547 0 R +/Pg 24 0 R +/S /Span +>> +endobj +550 0 obj +<< +/C /Pa8 +/K 665 +/P 1457 0 R +/Pg 24 0 R +/S /Tab._Versal_bold_wei +>> +endobj +551 0 obj +<< +/C /Pa8 +/K 666 +/P 1458 0 R +/Pg 24 0 R +/S /Tab._Versal_bold_wei +>> +endobj +552 0 obj +<< +/C /A5 +/K 667 +/P 1459 0 R +/Pg 24 0 R +/S /Span +>> +endobj +553 0 obj +<< +/C /A5 +/K 668 +/P 1459 0 R +/Pg 24 0 R +/S /Span +>> +endobj +554 0 obj +<< +/K [669 670 671 555 0 R 673] +/P 1460 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +555 0 obj +<< +/ActualText +/K 672 +/P 554 0 R +/Pg 24 0 R +/S /Span +>> +endobj +556 0 obj +<< +/C /A5 +/K 674 +/P 1461 0 R +/Pg 24 0 R +/S /Span +>> +endobj +557 0 obj +<< +/C /A5 +/K 675 +/P 1461 0 R +/Pg 24 0 R +/S /Span +>> +endobj +558 0 obj +<< +/K [676 677 678 559 0 R 680 681 560 0 R 683] +/P 1462 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +559 0 obj +<< +/ActualText +/K 679 +/P 558 0 R +/Pg 24 0 R +/S /Span +>> +endobj +560 0 obj +<< +/ActualText +/K 682 +/P 558 0 R +/Pg 24 0 R +/S /Span +>> +endobj +561 0 obj +<< +/C /A5 +/K 684 +/P 1463 0 R +/Pg 24 0 R +/S /Span +>> +endobj +562 0 obj +<< +/C /A5 +/K 685 +/P 1463 0 R +/Pg 24 0 R +/S /Span +>> +endobj +563 0 obj +<< +/K [686 687 688] +/P 1464 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +564 0 obj +<< +/C /A5 +/K 689 +/P 1465 0 R +/Pg 24 0 R +/S /Span +>> +endobj +565 0 obj +<< +/C /A5 +/K 690 +/P 1465 0 R +/Pg 24 0 R +/S /Span +>> +endobj +566 0 obj +<< +/K [691 692 693 567 0 R 695] +/P 1466 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +567 0 obj +<< +/ActualText +/K 694 +/P 566 0 R +/Pg 24 0 R +/S /Span +>> +endobj +568 0 obj +<< +/C /A5 +/K 696 +/P 1467 0 R +/Pg 24 0 R +/S /Span +>> +endobj +569 0 obj +<< +/C /A5 +/K 697 +/P 1467 0 R +/Pg 24 0 R +/S /Span +>> +endobj +570 0 obj +<< +/K [698 699 700 701] +/P 1468 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +571 0 obj +<< +/C /A5 +/K 702 +/P 1469 0 R +/Pg 24 0 R +/S /Span +>> +endobj +572 0 obj +<< +/C /A5 +/K 703 +/P 1469 0 R +/Pg 24 0 R +/S /Span +>> +endobj +573 0 obj +<< +/K [704 574 0 R 706 707 708 709 710 711] +/P 1470 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +574 0 obj +<< +/ActualText +/K 705 +/P 573 0 R +/Pg 24 0 R +/S /Span +>> +endobj +575 0 obj +<< +/C /A5 +/K 712 +/P 1471 0 R +/Pg 24 0 R +/S /Span +>> +endobj +576 0 obj +<< +/C /A5 +/K 713 +/P 1471 0 R +/Pg 24 0 R +/S /Span +>> +endobj +577 0 obj +<< +/K 714 +/P 1472 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +578 0 obj +<< +/C /A5 +/K 715 +/P 1473 0 R +/Pg 24 0 R +/S /Span +>> +endobj +579 0 obj +<< +/C /A5 +/K 716 +/P 1473 0 R +/Pg 24 0 R +/S /Span +>> +endobj +580 0 obj +<< +/K [717 581 0 R 719] +/P 1474 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +581 0 obj +<< +/ActualText +/K 718 +/P 580 0 R +/Pg 24 0 R +/S /Span +>> +endobj +582 0 obj +<< +/C /A5 +/K 720 +/P 1475 0 R +/Pg 24 0 R +/S /Span +>> +endobj +583 0 obj +<< +/C /A5 +/K 721 +/P 1475 0 R +/Pg 24 0 R +/S /Span +>> +endobj +584 0 obj +<< +/K [722 585 0 R 724] +/P 1476 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +585 0 obj +<< +/ActualText +/K 723 +/P 584 0 R +/Pg 24 0 R +/S /Span +>> +endobj +586 0 obj +<< +/C /A5 +/K 725 +/P 1477 0 R +/Pg 24 0 R +/S /Span +>> +endobj +587 0 obj +<< +/C /A5 +/K 726 +/P 1477 0 R +/Pg 24 0 R +/S /Span +>> +endobj +588 0 obj +<< +/K [727 589 0 R 729] +/P 1478 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +589 0 obj +<< +/ActualText +/K 728 +/P 588 0 R +/Pg 24 0 R +/S /Span +>> +endobj +590 0 obj +<< +/C /A5 +/K 730 +/P 1479 0 R +/Pg 24 0 R +/S /Span +>> +endobj +591 0 obj +<< +/C /A5 +/K 731 +/P 1479 0 R +/Pg 24 0 R +/S /Span +>> +endobj +592 0 obj +<< +/K [732 593 0 R 734] +/P 1480 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +593 0 obj +<< +/ActualText +/K 733 +/P 592 0 R +/Pg 24 0 R +/S /Span +>> +endobj +594 0 obj +<< +/C /A5 +/K 735 +/P 1481 0 R +/Pg 24 0 R +/S /Span +>> +endobj +595 0 obj +<< +/C /A5 +/K 736 +/P 1481 0 R +/Pg 24 0 R +/S /Span +>> +endobj +596 0 obj +<< +/K [737 738 739 740] +/P 1482 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +597 0 obj +<< +/C /A5 +/K 741 +/P 1483 0 R +/Pg 24 0 R +/S /Span +>> +endobj +598 0 obj +<< +/C /A5 +/K 742 +/P 1483 0 R +/Pg 24 0 R +/S /Span +>> +endobj +599 0 obj +<< +/K [743 744 745] +/P 1484 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +600 0 obj +<< +/C /A5 +/K 746 +/P 1485 0 R +/Pg 24 0 R +/S /Span +>> +endobj +601 0 obj +<< +/C /A5 +/K 747 +/P 1485 0 R +/Pg 24 0 R +/S /Span +>> +endobj +602 0 obj +<< +/K 748 +/P 1486 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +603 0 obj +<< +/C /A5 +/K 749 +/P 1487 0 R +/Pg 24 0 R +/S /Span +>> +endobj +604 0 obj +<< +/C /A5 +/K 750 +/P 1487 0 R +/Pg 24 0 R +/S /Span +>> +endobj +605 0 obj +<< +/K [751 752 753] +/P 1488 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +606 0 obj +<< +/C /A5 +/K 754 +/P 1489 0 R +/Pg 24 0 R +/S /Span +>> +endobj +607 0 obj +<< +/C /A5 +/K 755 +/P 1489 0 R +/Pg 24 0 R +/S /Span +>> +endobj +608 0 obj +<< +/K [756 757] +/P 1490 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +609 0 obj +<< +/C /A5 +/K 758 +/P 1491 0 R +/Pg 24 0 R +/S /Span +>> +endobj +610 0 obj +<< +/C /A5 +/K 759 +/P 1491 0 R +/Pg 24 0 R +/S /Span +>> +endobj +611 0 obj +<< +/K [760 761] +/P 1492 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +612 0 obj +<< +/C /A5 +/K 762 +/P 1493 0 R +/Pg 24 0 R +/S /Span +>> +endobj +613 0 obj +<< +/C /A5 +/K 763 +/P 1493 0 R +/Pg 24 0 R +/S /Span +>> +endobj +614 0 obj +<< +/K [764 765 766] +/P 1494 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +615 0 obj +<< +/C /A5 +/K 767 +/P 1495 0 R +/Pg 24 0 R +/S /Span +>> +endobj +616 0 obj +<< +/C /A5 +/K 768 +/P 1495 0 R +/Pg 24 0 R +/S /Span +>> +endobj +617 0 obj +<< +/K [769 770] +/P 1496 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +618 0 obj +<< +/C /Pa10 +/K 771 +/P 282 0 R +/Pg 24 0 R +/S /Zwischenhead_2 +>> +endobj +619 0 obj +<< +/ActualText +/K 773 +/P 547 0 R +/Pg 25 0 R +/S /Span +>> +endobj +620 0 obj +<< +/C /Pa10 +/K 779 +/P 284 0 R +/Pg 25 0 R +/S /Zwischenhead_2 +>> +endobj +621 0 obj +<< +/C /Pa8 +/K 780 +/P 1497 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_wei +>> +endobj +622 0 obj +<< +/C /Pa8 +/K 781 +/P 1498 0 R +/Pg 25 0 R +/S /Tab._Versal_bold_wei +>> +endobj +623 0 obj +<< +/C /A5 +/K 782 +/P 1499 0 R +/Pg 25 0 R +/S /Span +>> +endobj +624 0 obj +<< +/C /A5 +/K 783 +/P 1499 0 R +/Pg 25 0 R +/S /Span +>> +endobj +625 0 obj +<< +/K [784 785 786] +/P 1500 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +626 0 obj +<< +/C /A5 +/K 787 +/P 1501 0 R +/Pg 25 0 R +/S /Span +>> +endobj +627 0 obj +<< +/C /A5 +/K 788 +/P 1501 0 R +/Pg 25 0 R +/S /Span +>> +endobj +628 0 obj +<< +/K [789 790 791 792 793] +/P 1502 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +629 0 obj +<< +/C /A5 +/K 794 +/P 1503 0 R +/Pg 25 0 R +/S /Span +>> +endobj +630 0 obj +<< +/C /A5 +/K 795 +/P 1503 0 R +/Pg 25 0 R +/S /Span +>> +endobj +631 0 obj +<< +/K [796 632 0 R 798] +/P 1504 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +632 0 obj +<< +/ActualText +/K 797 +/P 631 0 R +/Pg 25 0 R +/S /Span +>> +endobj +633 0 obj +<< +/C /A5 +/K 799 +/P 1505 0 R +/Pg 25 0 R +/S /Span +>> +endobj +634 0 obj +<< +/C /A5 +/K 800 +/P 1505 0 R +/Pg 25 0 R +/S /Span +>> +endobj +635 0 obj +<< +/K [801 636 0 R 803] +/P 1506 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +636 0 obj +<< +/ActualText +/K 802 +/P 635 0 R +/Pg 25 0 R +/S /Span +>> +endobj +637 0 obj +<< +/C /A5 +/K 804 +/P 1507 0 R +/Pg 25 0 R +/S /Span +>> +endobj +638 0 obj +<< +/C /A5 +/K 805 +/P 1507 0 R +/Pg 25 0 R +/S /Span +>> +endobj +639 0 obj +<< +/K [806 640 0 R 808] +/P 1508 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +640 0 obj +<< +/ActualText +/K 807 +/P 639 0 R +/Pg 25 0 R +/S /Span +>> +endobj +641 0 obj +<< +/C /A5 +/K 809 +/P 1509 0 R +/Pg 25 0 R +/S /Span +>> +endobj +642 0 obj +<< +/C /A5 +/K 810 +/P 1509 0 R +/Pg 25 0 R +/S /Span +>> +endobj +643 0 obj +<< +/K [811 644 0 R 813 814 645 0 R 816 817] +/P 1510 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +644 0 obj +<< +/ActualText +/K 812 +/P 643 0 R +/Pg 25 0 R +/S /Span +>> +endobj +645 0 obj +<< +/ActualText +/K 815 +/P 643 0 R +/Pg 25 0 R +/S /Span +>> +endobj +646 0 obj +<< +/C /A5 +/K 818 +/P 1511 0 R +/Pg 25 0 R +/S /Span +>> +endobj +647 0 obj +<< +/C /A5 +/K 819 +/P 1511 0 R +/Pg 25 0 R +/S /Span +>> +endobj +648 0 obj +<< +/K [820 649 0 R 822] +/P 1512 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +649 0 obj +<< +/ActualText +/K 821 +/P 648 0 R +/Pg 25 0 R +/S /Span +>> +endobj +650 0 obj +<< +/C /A5 +/K 823 +/P 1513 0 R +/Pg 25 0 R +/S /Span +>> +endobj +651 0 obj +<< +/C /A5 +/K 824 +/P 1513 0 R +/Pg 25 0 R +/S /Span +>> +endobj +652 0 obj +<< +/K [825 826] +/P 1514 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +653 0 obj +<< +/C /A5 +/K 827 +/P 1515 0 R +/Pg 25 0 R +/S /Span +>> +endobj +654 0 obj +<< +/C /A5 +/K 828 +/P 1515 0 R +/Pg 25 0 R +/S /Span +>> +endobj +655 0 obj +<< +/K [829 830 831 832] +/P 1516 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +656 0 obj +<< +/C /Pa11 +/K 833 +/P 274 0 R +/Pg 26 0 R +/S /Zwischenhead_3 +>> +endobj +657 0 obj +<< +/C /Pa17 +/K 834 +/P 274 0 R +/Pg 26 0 R +/S /Zwischenhead_4 +>> +endobj +658 0 obj +<< +/C /Pa2 +/K [835 659 0 R 837 838 660 0 R 840 841] +/P 274 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +659 0 obj +<< +/ActualText +/K 836 +/P 658 0 R +/Pg 26 0 R +/S /Span +>> +endobj +660 0 obj +<< +/ActualText +/K 839 +/P 658 0 R +/Pg 26 0 R +/S /Span +>> +endobj +661 0 obj +<< +/C /A5 +/K 842 +/P 1517 0 R +/Pg 26 0 R +/S /Span +>> +endobj +662 0 obj +<< +/C /A5 +/K 843 +/P 1517 0 R +/Pg 26 0 R +/S /Span +>> +endobj +663 0 obj +<< +/C /A6 +/K 844 +/P 664 0 R +/Pg 26 0 R +/S /Span +>> +endobj +664 0 obj +<< +/K [663 0 R 845 665 0 R 847 666 0 R 849 667 0 R 851 852 853 854 855] +/P 1518 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +665 0 obj +<< +/ActualText +/K 846 +/P 664 0 R +/Pg 26 0 R +/S /Span +>> +endobj +666 0 obj +<< +/ActualText +/K 848 +/P 664 0 R +/Pg 26 0 R +/S /Span +>> +endobj +667 0 obj +<< +/ActualText +/K 850 +/P 664 0 R +/Pg 26 0 R +/S /Span +>> +endobj +668 0 obj +<< +/C /A5 +/K 856 +/P 1519 0 R +/Pg 26 0 R +/S /Span +>> +endobj +669 0 obj +<< +/C /A5 +/K 857 +/P 1519 0 R +/Pg 26 0 R +/S /Span +>> +endobj +670 0 obj +<< +/C /A6 +/K 858 +/P 671 0 R +/Pg 26 0 R +/S /Span +>> +endobj +671 0 obj +<< +/K [670 0 R 859 860 861 862 863 864] +/P 1520 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +672 0 obj +<< +/C /Pa8 +/K 865 +/P 1521 0 R +/Pg 26 0 R +/S /Tab._Versal_bold_wei +>> +endobj +673 0 obj +<< +/C /Pa9 +/K [866 674 0 R 868] +/P 1522 0 R +/Pg 26 0 R +/S /Kastenlauftext +>> +endobj +674 0 obj +<< +/ActualText +/K 867 +/P 673 0 R +/Pg 26 0 R +/S /Span +>> +endobj +675 0 obj +<< +/C /A5 +/K 869 +/P 1523 0 R +/Pg 26 0 R +/S /Span +>> +endobj +676 0 obj +<< +/C /A5 +/K 870 +/P 1523 0 R +/Pg 26 0 R +/S /Span +>> +endobj +677 0 obj +<< +/K [871 678 0 R 873] +/P 1524 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +678 0 obj +<< +/ActualText +/K 872 +/P 677 0 R +/Pg 26 0 R +/S /Span +>> +endobj +679 0 obj +<< +/C /A5 +/K 874 +/P 1525 0 R +/Pg 26 0 R +/S /Span +>> +endobj +680 0 obj +<< +/C /A5 +/K 875 +/P 1525 0 R +/Pg 26 0 R +/S /Span +>> +endobj +681 0 obj +<< +/C /A5 +/K 876 +/P 1525 0 R +/Pg 26 0 R +/S /Span +>> +endobj +682 0 obj +<< +/C /A5 +/K 877 +/P 1525 0 R +/Pg 26 0 R +/S /Span +>> +endobj +683 0 obj +<< +/K [878 879 880 881] +/P 1526 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +684 0 obj +<< +/C /A5 +/K 882 +/P 1527 0 R +/Pg 26 0 R +/S /Span +>> +endobj +685 0 obj +<< +/C /A5 +/K 883 +/P 1527 0 R +/Pg 26 0 R +/S /Span +>> +endobj +686 0 obj +<< +/C /A5 +/K 884 +/P 1527 0 R +/Pg 26 0 R +/S /Span +>> +endobj +687 0 obj +<< +/C /A5 +/K 885 +/P 1527 0 R +/Pg 26 0 R +/S /Span +>> +endobj +688 0 obj +<< +/K [886 887 888 889] +/P 1528 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +689 0 obj +<< +/C /A5 +/K 890 +/P 1529 0 R +/Pg 26 0 R +/S /Span +>> +endobj +690 0 obj +<< +/C /A5 +/K 891 +/P 1529 0 R +/Pg 26 0 R +/S /Span +>> +endobj +691 0 obj +<< +/C /A5 +/K 892 +/P 1529 0 R +/Pg 26 0 R +/S /Span +>> +endobj +692 0 obj +<< +/C /A5 +/K 893 +/P 1529 0 R +/Pg 26 0 R +/S /Span +>> +endobj +693 0 obj +<< +/K [894 895 896 897 898 899] +/P 1530 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +694 0 obj +<< +/C /A5 +/K 900 +/P 1531 0 R +/Pg 26 0 R +/S /Span +>> +endobj +695 0 obj +<< +/C /A5 +/K 901 +/P 1531 0 R +/Pg 26 0 R +/S /Span +>> +endobj +696 0 obj +<< +/C /A5 +/K 902 +/P 1531 0 R +/Pg 26 0 R +/S /Span +>> +endobj +697 0 obj +<< +/C /A5 +/K 903 +/P 1531 0 R +/Pg 26 0 R +/S /Span +>> +endobj +698 0 obj +<< +/K [904 699 0 R 906 700 0 R 908 909] +/P 1532 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +699 0 obj +<< +/ActualText +/K 905 +/P 698 0 R +/Pg 26 0 R +/S /Span +>> +endobj +700 0 obj +<< +/ActualText +/K 907 +/P 698 0 R +/Pg 26 0 R +/S /Span +>> +endobj +701 0 obj +<< +/C /A5 +/K 910 +/P 1533 0 R +/Pg 26 0 R +/S /Span +>> +endobj +702 0 obj +<< +/C /A5 +/K 911 +/P 1533 0 R +/Pg 26 0 R +/S /Span +>> +endobj +703 0 obj +<< +/C /A5 +/K 912 +/P 1533 0 R +/Pg 26 0 R +/S /Span +>> +endobj +704 0 obj +<< +/C /A5 +/K 913 +/P 1533 0 R +/Pg 26 0 R +/S /Span +>> +endobj +705 0 obj +<< +/K [914 915 916 917 918 919] +/P 1534 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +706 0 obj +<< +/C /A5 +/K 920 +/P 1535 0 R +/Pg 26 0 R +/S /Span +>> +endobj +707 0 obj +<< +/C /A5 +/K 921 +/P 1535 0 R +/Pg 26 0 R +/S /Span +>> +endobj +708 0 obj +<< +/C /A5 +/K 922 +/P 1535 0 R +/Pg 26 0 R +/S /Span +>> +endobj +709 0 obj +<< +/C /A5 +/K 923 +/P 1535 0 R +/Pg 26 0 R +/S /Span +>> +endobj +710 0 obj +<< +/K [924 925] +/P 1536 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +711 0 obj +<< +/C /A5 +/K 926 +/P 1537 0 R +/Pg 26 0 R +/S /Span +>> +endobj +712 0 obj +<< +/C /A5 +/K 927 +/P 1537 0 R +/Pg 26 0 R +/S /Span +>> +endobj +713 0 obj +<< +/C /A5 +/K 928 +/P 1537 0 R +/Pg 26 0 R +/S /Span +>> +endobj +714 0 obj +<< +/C /A5 +/K 929 +/P 1537 0 R +/Pg 26 0 R +/S /Span +>> +endobj +715 0 obj +<< +/K [930 931] +/P 1538 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +716 0 obj +<< +/C /A5 +/K 932 +/P 1539 0 R +/Pg 26 0 R +/S /Span +>> +endobj +717 0 obj +<< +/C /A5 +/K 933 +/P 1539 0 R +/Pg 26 0 R +/S /Span +>> +endobj +718 0 obj +<< +/C /A5 +/K 934 +/P 1539 0 R +/Pg 26 0 R +/S /Span +>> +endobj +719 0 obj +<< +/C /A5 +/K 935 +/P 1539 0 R +/Pg 26 0 R +/S /Span +>> +endobj +720 0 obj +<< +/K [936 937 938 939] +/P 1540 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +721 0 obj +<< +/C /A5 +/K 940 +/P 1541 0 R +/Pg 26 0 R +/S /Span +>> +endobj +722 0 obj +<< +/C /A5 +/K 941 +/P 1541 0 R +/Pg 26 0 R +/S /Span +>> +endobj +723 0 obj +<< +/C /A5 +/K 942 +/P 1541 0 R +/Pg 26 0 R +/S /Span +>> +endobj +724 0 obj +<< +/C /A5 +/K 943 +/P 1541 0 R +/Pg 26 0 R +/S /Span +>> +endobj +725 0 obj +<< +/K [944 945] +/P 1542 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +726 0 obj +<< +/C /A5 +/K 946 +/P 1543 0 R +/Pg 27 0 R +/S /Span +>> +endobj +727 0 obj +<< +/C /A5 +/K 947 +/P 1543 0 R +/Pg 27 0 R +/S /Span +>> +endobj +728 0 obj +<< +/C /A6 +/K 948 +/P 729 0 R +/Pg 27 0 R +/S /Span +>> +endobj +729 0 obj +<< +/K [728 0 R 949 950 951] +/P 1544 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +730 0 obj +<< +/C /A5 +/K 952 +/P 1545 0 R +/Pg 27 0 R +/S /Span +>> +endobj +731 0 obj +<< +/C /A5 +/K 953 +/P 1545 0 R +/Pg 27 0 R +/S /Span +>> +endobj +732 0 obj +<< +/C /A6 +/K 954 +/P 733 0 R +/Pg 27 0 R +/S /Span +>> +endobj +733 0 obj +<< +/K [732 0 R 955 956 734 0 R 958 959 960 735 0 R 962 963 964 965] +/P 1546 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +734 0 obj +<< +/ActualText +/K 957 +/P 733 0 R +/Pg 27 0 R +/S /Span +>> +endobj +735 0 obj +<< +/ActualText +/K 961 +/P 733 0 R +/Pg 27 0 R +/S /Span +>> +endobj +736 0 obj +<< +/C /A5 +/K 966 +/P 1547 0 R +/Pg 27 0 R +/S /Span +>> +endobj +737 0 obj +<< +/C /A5 +/K 967 +/P 1547 0 R +/Pg 27 0 R +/S /Span +>> +endobj +738 0 obj +<< +/C /A6 +/K 968 +/P 739 0 R +/Pg 27 0 R +/S /Span +>> +endobj +739 0 obj +<< +/K [738 0 R 969 970 971] +/P 1548 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +740 0 obj +<< +/C /A5 +/K 972 +/P 1549 0 R +/Pg 27 0 R +/S /Span +>> +endobj +741 0 obj +<< +/C /A5 +/K 973 +/P 1549 0 R +/Pg 27 0 R +/S /Span +>> +endobj +742 0 obj +<< +/C /A6 +/K 974 +/P 743 0 R +/Pg 27 0 R +/S /Span +>> +endobj +743 0 obj +<< +/K [742 0 R 975 976] +/P 1550 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +744 0 obj +<< +/C /Pa17 +/K 977 +/P 274 0 R +/Pg 27 0 R +/S /Zwischenhead_4 +>> +endobj +745 0 obj +<< +/C /Pa2 +/K [978 979 746 0 R 981 747 0 R 983 984 985 986 987] +/P 274 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +746 0 obj +<< +/ActualText +/K 980 +/P 745 0 R +/Pg 27 0 R +/S /Span +>> +endobj +747 0 obj +<< +/ActualText +/K 982 +/P 745 0 R +/Pg 27 0 R +/S /Span +>> +endobj +748 0 obj +<< +/C /Pa3 +/K [988 989 990] +/P 274 0 R +/Pg 27 0 R +/S /Lauftext +>> +endobj +749 0 obj +<< +/C /A5 +/K 991 +/P 1551 0 R +/Pg 27 0 R +/S /Span +>> +endobj +750 0 obj +<< +/C /A5 +/K 992 +/P 1551 0 R +/Pg 27 0 R +/S /Span +>> +endobj +751 0 obj +<< +/K [993 994 995 752 0 R 997 753 0 R 999 1000 754 0 R 1002 1003 1004] +/P 1552 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +752 0 obj +<< +/ActualText +/K 996 +/P 751 0 R +/Pg 27 0 R +/S /Span +>> +endobj +753 0 obj +<< +/ActualText +/K 998 +/P 751 0 R +/Pg 27 0 R +/S /Span +>> +endobj +754 0 obj +<< +/ActualText +/K 1001 +/P 751 0 R +/Pg 27 0 R +/S /Span +>> +endobj +755 0 obj +<< +/C /A5 +/K 1005 +/P 1553 0 R +/Pg 27 0 R +/S /Span +>> +endobj +756 0 obj +<< +/C /A5 +/K 1006 +/P 1553 0 R +/Pg 27 0 R +/S /Span +>> +endobj +757 0 obj +<< +/K [1007 1008 1009 1010 1011 1012] +/P 1554 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +758 0 obj +<< +/C /Pa11 +/K 1013 +/P 274 0 R +/Pg 28 0 R +/S /Zwischenhead_3 +>> +endobj +759 0 obj +<< +/C /Pa2 +/K [1014 1015 1016 760 0 R 1018 761 0 R 1020 1021 1022 1023 1024 762 0 R 1026 1027 1028 1029 +763 0 R 1031 1032 1033 1034] +/P 274 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +760 0 obj +<< +/ActualText +/K 1017 +/P 759 0 R +/Pg 28 0 R +/S /Span +>> +endobj +761 0 obj +<< +/ActualText +/K 1019 +/P 759 0 R +/Pg 28 0 R +/S /Span +>> +endobj +762 0 obj +<< +/ActualText +/K 1025 +/P 759 0 R +/Pg 28 0 R +/S /Span +>> +endobj +763 0 obj +<< +/ActualText +/K 1030 +/P 759 0 R +/Pg 28 0 R +/S /Span +>> +endobj +764 0 obj +<< +/C /Pa3 +/K [1035 1036 765 0 R 1038 766 0 R 1040] +/P 274 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +765 0 obj +<< +/ActualText +/K 1037 +/P 764 0 R +/Pg 28 0 R +/S /Span +>> +endobj +766 0 obj +<< +/ActualText +/K 1039 +/P 764 0 R +/Pg 28 0 R +/S /Span +>> +endobj +767 0 obj +<< +/C /Pa3 +/K [1041 1042 768 0 R 1044 1045 1046 769 0 R 1048 770 0 R 1050 1051 1052 1053 1054] +/P 274 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +768 0 obj +<< +/ActualText +/K 1043 +/P 767 0 R +/Pg 28 0 R +/S /Span +>> +endobj +769 0 obj +<< +/ActualText +/K 1047 +/P 767 0 R +/Pg 28 0 R +/S /Span +>> +endobj +770 0 obj +<< +/ActualText +/K 1049 +/P 767 0 R +/Pg 28 0 R +/S /Span +>> +endobj +771 0 obj +<< +/C /Pa11 +/K 1055 +/P 274 0 R +/Pg 28 0 R +/S /Zwischenhead_3 +>> +endobj +772 0 obj +<< +/C /Pa2 +/K [1056 1057 773 0 R 1059 1060 1061 1062 774 0 R 1064 1065] +/P 274 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +773 0 obj +<< +/ActualText +/K 1058 +/P 772 0 R +/Pg 28 0 R +/S /Span +>> +endobj +774 0 obj +<< +/ActualText +/K 1063 +/P 772 0 R +/Pg 28 0 R +/S /Span +>> +endobj +775 0 obj +<< +/C /Pa6 +/K [1066 1067] +/P 287 0 R +/Pg 28 0 R +/S /Absatzformat_2 +>> +endobj +776 0 obj +<< +/C /Pa10 +/K 1068 +/P 274 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +777 0 obj +<< +/C /Pa2 +/K [1069 778 0 R 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 779 0 R 1083 1084] +/P 274 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +778 0 obj +<< +/ActualText +/K 1070 +/P 777 0 R +/Pg 29 0 R +/S /Span +>> +endobj +779 0 obj +<< +/ActualText +/K 1082 +/P 777 0 R +/Pg 29 0 R +/S /Span +>> +endobj +780 0 obj +<< +/C /A5 +/K 1085 +/P 1555 0 R +/Pg 29 0 R +/S /Span +>> +endobj +781 0 obj +<< +/C /A5 +/K 1086 +/P 1555 0 R +/Pg 29 0 R +/S /Span +>> +endobj +782 0 obj +<< +/K [1087 783 0 R 1089 784 0 R 1091] +/P 1556 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +783 0 obj +<< +/ActualText +/K 1088 +/P 782 0 R +/Pg 29 0 R +/S /Span +>> +endobj +784 0 obj +<< +/ActualText +/K 1090 +/P 782 0 R +/Pg 29 0 R +/S /Span +>> +endobj +785 0 obj +<< +/C /A5 +/K 1092 +/P 1557 0 R +/Pg 29 0 R +/S /Span +>> +endobj +786 0 obj +<< +/C /A5 +/K 1093 +/P 1557 0 R +/Pg 29 0 R +/S /Span +>> +endobj +787 0 obj +<< +/K [1094 1095 1096 1097 1098 1099 1100 1101 788 0 R 1103 1104] +/P 1558 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +788 0 obj +<< +/ActualText +/K 1102 +/P 787 0 R +/Pg 29 0 R +/S /Span +>> +endobj +789 0 obj +<< +/C /A5 +/K 1105 +/P 1559 0 R +/Pg 29 0 R +/S /Span +>> +endobj +790 0 obj +<< +/C /A5 +/K 1106 +/P 1559 0 R +/Pg 29 0 R +/S /Span +>> +endobj +791 0 obj +<< +/K [1107 1108 1109 1110 1111] +/P 1560 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +792 0 obj +<< +/C /A5 +/K 1112 +/P 1561 0 R +/Pg 29 0 R +/S /Span +>> +endobj +793 0 obj +<< +/C /A5 +/K 1113 +/P 1561 0 R +/Pg 29 0 R +/S /Span +>> +endobj +794 0 obj +<< +/K [1114 1115 1116 1117 1118] +/P 1562 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +795 0 obj +<< +/C /A5 +/K 1119 +/P 1563 0 R +/Pg 29 0 R +/S /Span +>> +endobj +796 0 obj +<< +/C /A5 +/K 1120 +/P 1563 0 R +/Pg 29 0 R +/S /Span +>> +endobj +797 0 obj +<< +/K [1121 798 0 R 1123 1124 1125 799 0 R 1127 1128 1129 1130 800 0 R 1132] +/P 1564 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +798 0 obj +<< +/ActualText +/K 1122 +/P 797 0 R +/Pg 29 0 R +/S /Span +>> +endobj +799 0 obj +<< +/ActualText +/K 1126 +/P 797 0 R +/Pg 29 0 R +/S /Span +>> +endobj +800 0 obj +<< +/ActualText +/K 1131 +/P 797 0 R +/Pg 29 0 R +/S /Span +>> +endobj +801 0 obj +<< +/C /A5 +/K 1133 +/P 1565 0 R +/Pg 30 0 R +/S /Span +>> +endobj +802 0 obj +<< +/C /A5 +/K 1134 +/P 1565 0 R +/Pg 30 0 R +/S /Span +>> +endobj +803 0 obj +<< +/K [1135 1136] +/P 1566 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +804 0 obj +<< +/C /Pa10 +/K 1137 +/P 274 0 R +/Pg 30 0 R +/S /Zwischenhead_2 +>> +endobj +805 0 obj +<< +/C /Pa2 +/K [1138 1139 806 0 R 1141] +/P 274 0 R +/Pg 30 0 R +/S /Lauftext_1._Abs +>> +endobj +806 0 obj +<< +/ActualText +/K 1140 +/P 805 0 R +/Pg 30 0 R +/S /Span +>> +endobj +807 0 obj +<< +/C /A5 +/K 1142 +/P 1567 0 R +/Pg 30 0 R +/S /Span +>> +endobj +808 0 obj +<< +/C /A5 +/K 1143 +/P 1567 0 R +/Pg 30 0 R +/S /Span +>> +endobj +809 0 obj +<< +/K [1144 1145 1146 1147] +/P 1568 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +810 0 obj +<< +/C /A5 +/K 1148 +/P 1569 0 R +/Pg 30 0 R +/S /Span +>> +endobj +811 0 obj +<< +/C /A5 +/K 1149 +/P 1569 0 R +/Pg 30 0 R +/S /Span +>> +endobj +812 0 obj +<< +/K [1150 1151 1152] +/P 1570 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +813 0 obj +<< +/C /A5 +/K 1153 +/P 1571 0 R +/Pg 30 0 R +/S /Span +>> +endobj +814 0 obj +<< +/C /A5 +/K 1154 +/P 1571 0 R +/Pg 30 0 R +/S /Span +>> +endobj +815 0 obj +<< +/K 1155 +/P 1572 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +816 0 obj +<< +/C /A5 +/K 1156 +/P 1573 0 R +/Pg 30 0 R +/S /Span +>> +endobj +817 0 obj +<< +/C /A5 +/K 1157 +/P 1573 0 R +/Pg 30 0 R +/S /Span +>> +endobj +818 0 obj +<< +/K [1158 819 0 R 1160 1161 820 0 R 1163 1164 1165 821 0 R 1167 1168 1169 1170 1171] +/P 1574 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +819 0 obj +<< +/ActualText +/K 1159 +/P 818 0 R +/Pg 30 0 R +/S /Span +>> +endobj +820 0 obj +<< +/ActualText +/K 1162 +/P 818 0 R +/Pg 30 0 R +/S /Span +>> +endobj +821 0 obj +<< +/ActualText +/K 1166 +/P 818 0 R +/Pg 30 0 R +/S /Span +>> +endobj +822 0 obj +<< +/C /A5 +/K 1172 +/P 1575 0 R +/Pg 30 0 R +/S /Span +>> +endobj +823 0 obj +<< +/C /A5 +/K 1173 +/P 1575 0 R +/Pg 30 0 R +/S /Span +>> +endobj +824 0 obj +<< +/K 1174 +/P 1576 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +825 0 obj +<< +/C /A5 +/K 1175 +/P 1577 0 R +/Pg 30 0 R +/S /Span +>> +endobj +826 0 obj +<< +/C /A5 +/K 1176 +/P 1577 0 R +/Pg 30 0 R +/S /Span +>> +endobj +827 0 obj +<< +/K [1177 1178] +/P 1578 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +828 0 obj +<< +/C /A5 +/K 1179 +/P 1579 0 R +/Pg 30 0 R +/S /Span +>> +endobj +829 0 obj +<< +/C /A5 +/K 1180 +/P 1579 0 R +/Pg 30 0 R +/S /Span +>> +endobj +830 0 obj +<< +/K [1181 1182] +/P 1580 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +831 0 obj +<< +/C /Pa3 +/K [1183 832 0 R 1185 833 0 R 1187 1188 1189 834 0 R 1191 1192 835 0 R 1194 1195 1196 1197] +/P 274 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +832 0 obj +<< +/ActualText +/K 1184 +/P 831 0 R +/Pg 30 0 R +/S /Span +>> +endobj +833 0 obj +<< +/ActualText +/K 1186 +/P 831 0 R +/Pg 30 0 R +/S /Span +>> +endobj +834 0 obj +<< +/ActualText +/K 1190 +/P 831 0 R +/Pg 30 0 R +/S /Span +>> +endobj +835 0 obj +<< +/ActualText +/K 1193 +/P 831 0 R +/Pg 30 0 R +/S /Span +>> +endobj +836 0 obj +<< +/C /Pa6 +/K [1198 1199] +/P 288 0 R +/Pg 30 0 R +/S /Absatzformat_2 +>> +endobj +837 0 obj +<< +/C /Pa3 +/K [1200 838 0 R 1202 1203 839 0 R 1205 1206 1207 1208 1209 1210 840 0 R 1212 1213 1214 1215] +/P 274 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +838 0 obj +<< +/ActualText +/K 1201 +/P 837 0 R +/Pg 31 0 R +/S /Span +>> +endobj +839 0 obj +<< +/ActualText +/K 1204 +/P 837 0 R +/Pg 31 0 R +/S /Span +>> +endobj +840 0 obj +<< +/ActualText +/K 1211 +/P 837 0 R +/Pg 31 0 R +/S /Span +>> +endobj +841 0 obj +<< +/C /Pa10 +/K [1216 842 0 R 1218] +/P 289 0 R +/Pg 31 0 R +/S /Zwischenhead_2 +>> +endobj +842 0 obj +<< +/ActualText +/K 1217 +/P 841 0 R +/Pg 31 0 R +/S /Span +>> +endobj +843 0 obj +<< +/C /Pa8 +/K 1219 +/P 1581 0 R +/Pg 31 0 R +/S /Tab._Versal_bold_wei +>> +endobj +844 0 obj +<< +/C /Pa8 +/K 1220 +/P 1582 0 R +/Pg 31 0 R +/S /Tab._Versal_bold_wei +>> +endobj +845 0 obj +<< +/C /A5 +/K 1221 +/P 1583 0 R +/Pg 31 0 R +/S /Span +>> +endobj +846 0 obj +<< +/C /A5 +/K 1222 +/P 1583 0 R +/Pg 31 0 R +/S /Span +>> +endobj +847 0 obj +<< +/K [1223 848 0 R 1225 849 0 R 1227] +/P 1584 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +848 0 obj +<< +/ActualText +/K 1224 +/P 847 0 R +/Pg 31 0 R +/S /Span +>> +endobj +849 0 obj +<< +/ActualText +/K 1226 +/P 847 0 R +/Pg 31 0 R +/S /Span +>> +endobj +850 0 obj +<< +/C /A5 +/K 1228 +/P 1585 0 R +/Pg 31 0 R +/S /Span +>> +endobj +851 0 obj +<< +/C /A5 +/K 1229 +/P 1585 0 R +/Pg 31 0 R +/S /Span +>> +endobj +852 0 obj +<< +/K [1230 1231] +/P 1586 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +853 0 obj +<< +/C /A5 +/K 1232 +/P 1587 0 R +/Pg 31 0 R +/S /Span +>> +endobj +854 0 obj +<< +/C /A5 +/K 1233 +/P 1587 0 R +/Pg 31 0 R +/S /Span +>> +endobj +855 0 obj +<< +/K [1234 1235 1236] +/P 1588 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +856 0 obj +<< +/C /A5 +/K 1237 +/P 1589 0 R +/Pg 31 0 R +/S /Span +>> +endobj +857 0 obj +<< +/C /A5 +/K 1238 +/P 1589 0 R +/Pg 31 0 R +/S /Span +>> +endobj +858 0 obj +<< +/K [1239 1240 1241 1242 859 0 R 1244] +/P 1590 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +859 0 obj +<< +/ActualText +/K 1243 +/P 858 0 R +/Pg 31 0 R +/S /Span +>> +endobj +860 0 obj +<< +/C /A5 +/K 1245 +/P 1591 0 R +/Pg 31 0 R +/S /Span +>> +endobj +861 0 obj +<< +/C /A5 +/K 1246 +/P 1591 0 R +/Pg 31 0 R +/S /Span +>> +endobj +862 0 obj +<< +/K [1247 863 0 R 1249 1250] +/P 1592 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +863 0 obj +<< +/ActualText +/K 1248 +/P 862 0 R +/Pg 31 0 R +/S /Span +>> +endobj +864 0 obj +<< +/C /A5 +/K 1251 +/P 1593 0 R +/Pg 31 0 R +/S /Span +>> +endobj +865 0 obj +<< +/C /A5 +/K 1252 +/P 1593 0 R +/Pg 31 0 R +/S /Span +>> +endobj +866 0 obj +<< +/K [1253 1254] +/P 1594 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +867 0 obj +<< +/C /A5 +/K 1255 +/P 1595 0 R +/Pg 31 0 R +/S /Span +>> +endobj +868 0 obj +<< +/C /A5 +/K 1256 +/P 1595 0 R +/Pg 31 0 R +/S /Span +>> +endobj +869 0 obj +<< +/K [1257 1258 870 0 R 1260 871 0 R 1262 1263] +/P 1596 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +870 0 obj +<< +/ActualText +/K 1259 +/P 869 0 R +/Pg 31 0 R +/S /Span +>> +endobj +871 0 obj +<< +/ActualText +/K 1261 +/P 869 0 R +/Pg 31 0 R +/S /Span +>> +endobj +872 0 obj +<< +/C /A5 +/K 1264 +/P 1597 0 R +/Pg 31 0 R +/S /Span +>> +endobj +873 0 obj +<< +/C /A5 +/K 1265 +/P 1597 0 R +/Pg 31 0 R +/S /Span +>> +endobj +874 0 obj +<< +/K [1266 1267 875 0 R 1269 1270] +/P 1598 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +875 0 obj +<< +/ActualText +/K 1268 +/P 874 0 R +/Pg 31 0 R +/S /Span +>> +endobj +876 0 obj +<< +/C /A5 +/K 1271 +/P 1599 0 R +/Pg 31 0 R +/S /Span +>> +endobj +877 0 obj +<< +/C /A5 +/K 1272 +/P 1599 0 R +/Pg 31 0 R +/S /Span +>> +endobj +878 0 obj +<< +/K [1273 1274 1275] +/P 1600 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +879 0 obj +<< +/C /A5 +/K 1276 +/P 1601 0 R +/Pg 31 0 R +/S /Span +>> +endobj +880 0 obj +<< +/C /A5 +/K 1277 +/P 1601 0 R +/Pg 31 0 R +/S /Span +>> +endobj +881 0 obj +<< +/K [1278 882 0 R 1280 1281 1282 1283] +/P 1602 0 R +/Pg 31 0 R +/S /LBody +>> +endobj +882 0 obj +<< +/ActualText +/K 1279 +/P 881 0 R +/Pg 31 0 R +/S /Span +>> +endobj +883 0 obj +<< +/C /Pa10 +/K 1284 +/P 274 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +884 0 obj +<< +/C /Pa3 +/K [1285 1286 1287 1288 885 0 R 1290 886 0 R 1292 1293 1294 1295 1296 1297] +/P 274 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +885 0 obj +<< +/ActualText +/K 1289 +/P 884 0 R +/Pg 32 0 R +/S /Span +>> +endobj +886 0 obj +<< +/ActualText +/K 1291 +/P 884 0 R +/Pg 32 0 R +/S /Span +>> +endobj +887 0 obj +<< +/C /Pa3 +/K [1298 1299 888 0 R 1301 1302] +/P 274 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +888 0 obj +<< +/ActualText +/K 1300 +/P 887 0 R +/Pg 32 0 R +/S /Span +>> +endobj +889 0 obj +<< +/C /Pa3 +/K [1303 1304 1305 1306 1307 1308 1309] +/P 274 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +890 0 obj +<< +/C /A5 +/K 1310 +/P 1603 0 R +/Pg 32 0 R +/S /Span +>> +endobj +891 0 obj +<< +/C /A5 +/K 1311 +/P 1603 0 R +/Pg 32 0 R +/S /Span +>> +endobj +892 0 obj +<< +/K 1312 +/P 1604 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +893 0 obj +<< +/C /A5 +/K 1313 +/P 1605 0 R +/Pg 32 0 R +/S /Span +>> +endobj +894 0 obj +<< +/C /A5 +/K 1314 +/P 1605 0 R +/Pg 32 0 R +/S /Span +>> +endobj +895 0 obj +<< +/K [1315 1316] +/P 1606 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +896 0 obj +<< +/C /A5 +/K 1317 +/P 1607 0 R +/Pg 32 0 R +/S /Span +>> +endobj +897 0 obj +<< +/C /A5 +/K 1318 +/P 1607 0 R +/Pg 32 0 R +/S /Span +>> +endobj +898 0 obj +<< +/K [1319 1320] +/P 1608 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +899 0 obj +<< +/C /A5 +/K 1321 +/P 1609 0 R +/Pg 32 0 R +/S /Span +>> +endobj +900 0 obj +<< +/C /A5 +/K 1322 +/P 1609 0 R +/Pg 32 0 R +/S /Span +>> +endobj +901 0 obj +<< +/K [1323 902 0 R 1325] +/P 1610 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +902 0 obj +<< +/ActualText +/K 1324 +/P 901 0 R +/Pg 32 0 R +/S /Span +>> +endobj +903 0 obj +<< +/C /A5 +/K 1326 +/P 1611 0 R +/Pg 32 0 R +/S /Span +>> +endobj +904 0 obj +<< +/C /A5 +/K 1327 +/P 1611 0 R +/Pg 32 0 R +/S /Span +>> +endobj +905 0 obj +<< +/K [1328 1329] +/P 1612 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +906 0 obj +<< +/C /A5 +/K 1330 +/P 1613 0 R +/Pg 32 0 R +/S /Span +>> +endobj +907 0 obj +<< +/C /A5 +/K 1331 +/P 1613 0 R +/Pg 32 0 R +/S /Span +>> +endobj +908 0 obj +<< +/K 1332 +/P 1614 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +909 0 obj +<< +/C /A5 +/K 1333 +/P 1615 0 R +/Pg 32 0 R +/S /Span +>> +endobj +910 0 obj +<< +/C /A5 +/K 1334 +/P 1615 0 R +/Pg 32 0 R +/S /Span +>> +endobj +911 0 obj +<< +/K 1335 +/P 1616 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +912 0 obj +<< +/C /A5 +/K 1336 +/P 1617 0 R +/Pg 32 0 R +/S /Span +>> +endobj +913 0 obj +<< +/C /A5 +/K 1337 +/P 1617 0 R +/Pg 32 0 R +/S /Span +>> +endobj +914 0 obj +<< +/K 1338 +/P 1618 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +915 0 obj +<< +/C /A5 +/K 1339 +/P 1619 0 R +/Pg 32 0 R +/S /Span +>> +endobj +916 0 obj +<< +/C /A5 +/K 1340 +/P 1619 0 R +/Pg 32 0 R +/S /Span +>> +endobj +917 0 obj +<< +/K [1341 918 0 R 1343] +/P 1620 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +918 0 obj +<< +/ActualText +/K 1342 +/P 917 0 R +/Pg 32 0 R +/S /Span +>> +endobj +919 0 obj +<< +/C /A5 +/K 1344 +/P 1621 0 R +/Pg 32 0 R +/S /Span +>> +endobj +920 0 obj +<< +/C /A5 +/K 1345 +/P 1621 0 R +/Pg 32 0 R +/S /Span +>> +endobj +921 0 obj +<< +/K 1346 +/P 1622 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +922 0 obj +<< +/C /A5 +/K 1347 +/P 1623 0 R +/Pg 32 0 R +/S /Span +>> +endobj +923 0 obj +<< +/C /A5 +/K 1348 +/P 1623 0 R +/Pg 32 0 R +/S /Span +>> +endobj +924 0 obj +<< +/K [1349 1350 925 0 R 1352] +/P 1624 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +925 0 obj +<< +/ActualText +/K 1351 +/P 924 0 R +/Pg 32 0 R +/S /Span +>> +endobj +926 0 obj +<< +/C /A5 +/K 1353 +/P 1625 0 R +/Pg 32 0 R +/S /Span +>> +endobj +927 0 obj +<< +/C /A5 +/K 1354 +/P 1625 0 R +/Pg 32 0 R +/S /Span +>> +endobj +928 0 obj +<< +/K [1355 1356] +/P 1626 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +929 0 obj +<< +/C /A5 +/K 1357 +/P 1627 0 R +/Pg 32 0 R +/S /Span +>> +endobj +930 0 obj +<< +/C /A5 +/K 1358 +/P 1627 0 R +/Pg 32 0 R +/S /Span +>> +endobj +931 0 obj +<< +/K 1359 +/P 1628 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +932 0 obj +<< +/C /Pa10 +/K 1360 +/P 274 0 R +/Pg 33 0 R +/S /Zwischenhead_2 +>> +endobj +933 0 obj +<< +/C /Pa2 +/K [1361 1362 1363] +/P 274 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +934 0 obj +<< +/C /A5 +/K 1364 +/P 1629 0 R +/Pg 33 0 R +/S /Span +>> +endobj +935 0 obj +<< +/C /A5 +/K 1365 +/P 1629 0 R +/Pg 33 0 R +/S /Span +>> +endobj +936 0 obj +<< +/K 1366 +/P 1630 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +937 0 obj +<< +/C /A5 +/K 1367 +/P 1631 0 R +/Pg 33 0 R +/S /Span +>> +endobj +938 0 obj +<< +/C /A5 +/K 1368 +/P 1631 0 R +/Pg 33 0 R +/S /Span +>> +endobj +939 0 obj +<< +/K [1369 940 0 R 1371] +/P 1632 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +940 0 obj +<< +/ActualText +/K 1370 +/P 939 0 R +/Pg 33 0 R +/S /Span +>> +endobj +941 0 obj +<< +/C /A5 +/K 1372 +/P 1633 0 R +/Pg 33 0 R +/S /Span +>> +endobj +942 0 obj +<< +/C /A5 +/K 1373 +/P 1633 0 R +/Pg 33 0 R +/S /Span +>> +endobj +943 0 obj +<< +/K 1374 +/P 1634 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +944 0 obj +<< +/C /A5 +/K 1375 +/P 1635 0 R +/Pg 33 0 R +/S /Span +>> +endobj +945 0 obj +<< +/C /A5 +/K 1376 +/P 1635 0 R +/Pg 33 0 R +/S /Span +>> +endobj +946 0 obj +<< +/K 1377 +/P 1636 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +947 0 obj +<< +/C /A5 +/K 1378 +/P 1637 0 R +/Pg 33 0 R +/S /Span +>> +endobj +948 0 obj +<< +/C /A5 +/K 1379 +/P 1637 0 R +/Pg 33 0 R +/S /Span +>> +endobj +949 0 obj +<< +/K 1380 +/P 1638 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +950 0 obj +<< +/C /Pa1 +/K 1381 +/P 274 0 R +/Pg 33 0 R +/S /Zwischenhead_1 +>> +endobj +951 0 obj +<< +/C /Pa2 +/K [1382 952 0 R 1384 1385] +/P 274 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +952 0 obj +<< +/ActualText +/K 1383 +/P 951 0 R +/Pg 33 0 R +/S /Span +>> +endobj +953 0 obj +<< +/C /Pa10 +/K 1386 +/P 274 0 R +/Pg 33 0 R +/S /Zwischenhead_2 +>> +endobj +954 0 obj +<< +/C /Pa2 +/K [1387 955 0 R 1389] +/P 274 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +955 0 obj +<< +/ActualText +/K 1388 +/P 954 0 R +/Pg 33 0 R +/S /Span +>> +endobj +956 0 obj +<< +/C /A5 +/K 1390 +/P 1639 0 R +/Pg 33 0 R +/S /Span +>> +endobj +957 0 obj +<< +/C /A5 +/K 1391 +/P 1639 0 R +/Pg 33 0 R +/S /Span +>> +endobj +958 0 obj +<< +/K [1392 1393] +/P 1640 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +959 0 obj +<< +/C /A5 +/K 1394 +/P 1641 0 R +/Pg 33 0 R +/S /Span +>> +endobj +960 0 obj +<< +/C /A5 +/K 1395 +/P 1641 0 R +/Pg 33 0 R +/S /Span +>> +endobj +961 0 obj +<< +/K [1396 1397 962 0 R 1399] +/P 1642 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +962 0 obj +<< +/ActualText +/K 1398 +/P 961 0 R +/Pg 33 0 R +/S /Span +>> +endobj +963 0 obj +<< +/C /A5 +/K 1400 +/P 1643 0 R +/Pg 33 0 R +/S /Span +>> +endobj +964 0 obj +<< +/C /A5 +/K 1401 +/P 1643 0 R +/Pg 33 0 R +/S /Span +>> +endobj +965 0 obj +<< +/K [1402 966 0 R 1404 1405] +/P 1644 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +966 0 obj +<< +/ActualText +/K 1403 +/P 965 0 R +/Pg 33 0 R +/S /Span +>> +endobj +967 0 obj +<< +/C /A5 +/K 1406 +/P 1645 0 R +/Pg 33 0 R +/S /Span +>> +endobj +968 0 obj +<< +/C /A5 +/K 1407 +/P 1645 0 R +/Pg 33 0 R +/S /Span +>> +endobj +969 0 obj +<< +/K [1408 1409] +/P 1646 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +970 0 obj +<< +/C /Pa3 +/K [1410 1411 971 0 R 1413 1414 1415 1416 972 0 R 1418 1419 1420 973 0 R 1422 974 0 R 1424 975 0 R +<< +/MCID 1426 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1427 +/Pg 34 0 R +/Type /MCR +>> 976 0 R << +/MCID 1429 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1430 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1431 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1432 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1433 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1434 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1435 +/Pg 34 0 R +/Type /MCR +>> 977 0 R << +/MCID 1437 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1438 +/Pg 34 0 R +/Type /MCR +>>] +/P 274 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +971 0 obj +<< +/ActualText +/K 1412 +/P 970 0 R +/Pg 33 0 R +/S /Span +>> +endobj +972 0 obj +<< +/ActualText +/K 1417 +/P 970 0 R +/Pg 33 0 R +/S /Span +>> +endobj +973 0 obj +<< +/ActualText +/K 1421 +/P 970 0 R +/Pg 33 0 R +/S /Span +>> +endobj +974 0 obj +<< +/ActualText +/K 1423 +/P 970 0 R +/Pg 33 0 R +/S /Span +>> +endobj +975 0 obj +<< +/ActualText +/K 1425 +/P 970 0 R +/Pg 33 0 R +/S /Span +>> +endobj +976 0 obj +<< +/ActualText +/K 1428 +/P 970 0 R +/Pg 34 0 R +/S /Span +>> +endobj +977 0 obj +<< +/ActualText +/K 1436 +/P 970 0 R +/Pg 34 0 R +/S /Span +>> +endobj +978 0 obj +<< +/C /Pa3 +/K [1439 1440 1441 1442 979 0 R 1444 1445 1446 1447 980 0 R 1449 1450 1451 1452 1453 1454 +1455 1456 1457 1458 1459 1460 981 0 R 1462 1463 1464 1465 982 0 R 1467 1468 1469 1470 +1471 1472 983 0 R 1474 1475] +/P 274 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +979 0 obj +<< +/ActualText +/K 1443 +/P 978 0 R +/Pg 34 0 R +/S /Span +>> +endobj +980 0 obj +<< +/ActualText +/K 1448 +/P 978 0 R +/Pg 34 0 R +/S /Span +>> +endobj +981 0 obj +<< +/ActualText +/K 1461 +/P 978 0 R +/Pg 34 0 R +/S /Span +>> +endobj +982 0 obj +<< +/ActualText +/K 1466 +/P 978 0 R +/Pg 34 0 R +/S /Span +>> +endobj +983 0 obj +<< +/ActualText +/K 1473 +/P 978 0 R +/Pg 34 0 R +/S /Span +>> +endobj +984 0 obj +<< +/C /Pa3 +/K [1476 985 0 R 1478 1479 986 0 R 1481 1482 987 0 R 1484] +/P 274 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +985 0 obj +<< +/ActualText +/K 1477 +/P 984 0 R +/Pg 34 0 R +/S /Span +>> +endobj +986 0 obj +<< +/ActualText +/K 1480 +/P 984 0 R +/Pg 34 0 R +/S /Span +>> +endobj +987 0 obj +<< +/ActualText +/K 1483 +/P 984 0 R +/Pg 34 0 R +/S /Span +>> +endobj +988 0 obj +<< +/C /Pa6 +/K [1485 1486] +/P 291 0 R +/Pg 34 0 R +/S /Absatzformat_2 +>> +endobj +989 0 obj +<< +/C /Pa3 +/K [1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501] +/P 274 0 R +/Pg 35 0 R +/S /Lauftext +>> +endobj +990 0 obj +<< +/C /Pa10 +/K 1502 +/P 274 0 R +/Pg 35 0 R +/S /Zwischenhead_2 +>> +endobj +991 0 obj +<< +/C /Pa2 +/K [1503 1504 1505 1506 1507 1508 992 0 R 1510 1511 1512 1513] +/P 274 0 R +/Pg 35 0 R +/S /Lauftext_1._Abs +>> +endobj +992 0 obj +<< +/ActualText +/K 1509 +/P 991 0 R +/Pg 35 0 R +/S /Span +>> +endobj +993 0 obj +<< +/C /A5 +/K 1514 +/P 1647 0 R +/Pg 35 0 R +/S /Span +>> +endobj +994 0 obj +<< +/C /A5 +/K 1515 +/P 1647 0 R +/Pg 35 0 R +/S /Span +>> +endobj +995 0 obj +<< +/K 1516 +/P 1648 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +996 0 obj +<< +/C /A5 +/K 1517 +/P 1649 0 R +/Pg 35 0 R +/S /Span +>> +endobj +997 0 obj +<< +/C /A5 +/K 1518 +/P 1649 0 R +/Pg 35 0 R +/S /Span +>> +endobj +998 0 obj +<< +/K 1519 +/P 1650 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +999 0 obj +<< +/C /A5 +/K 1520 +/P 1651 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1000 0 obj +<< +/C /A5 +/K 1521 +/P 1651 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1001 0 obj +<< +/K 1522 +/P 1652 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1002 0 obj +<< +/C /A5 +/K 1523 +/P 1653 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1003 0 obj +<< +/C /A5 +/K 1524 +/P 1653 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1004 0 obj +<< +/K [1525 1526 1527] +/P 1654 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1005 0 obj +<< +/C /A5 +/K 1528 +/P 1655 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1006 0 obj +<< +/C /A5 +/K 1529 +/P 1655 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1007 0 obj +<< +/K 1530 +/P 1656 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1008 0 obj +<< +/C /A5 +/K 1531 +/P 1657 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1009 0 obj +<< +/C /A5 +/K 1532 +/P 1657 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1010 0 obj +<< +/K 1533 +/P 1658 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1011 0 obj +<< +/C /A5 +/K 1534 +/P 1659 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1012 0 obj +<< +/C /A5 +/K 1535 +/P 1659 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1013 0 obj +<< +/K 1536 +/P 1660 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1014 0 obj +<< +/C /A5 +/K 1537 +/P 1661 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1015 0 obj +<< +/C /A5 +/K 1538 +/P 1661 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1016 0 obj +<< +/K 1539 +/P 1662 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1017 0 obj +<< +/C /A5 +/K 1540 +/P 1663 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1018 0 obj +<< +/C /A5 +/K 1541 +/P 1663 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1019 0 obj +<< +/K 1542 +/P 1664 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1020 0 obj +<< +/C /A5 +/K 1543 +/P 1665 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1021 0 obj +<< +/C /A5 +/K 1544 +/P 1665 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1022 0 obj +<< +/K [1545 1023 0 R 1547] +/P 1666 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1023 0 obj +<< +/ActualText +/K 1546 +/P 1022 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1024 0 obj +<< +/C /A5 +/K 1548 +/P 1667 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1025 0 obj +<< +/C /A5 +/K 1549 +/P 1667 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1026 0 obj +<< +/K 1550 +/P 1668 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1027 0 obj +<< +/C /A5 +/K 1551 +/P 1669 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1028 0 obj +<< +/C /A5 +/K 1552 +/P 1669 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1029 0 obj +<< +/K 1553 +/P 1670 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +1030 0 obj +<< +/C /Pa3 +/K [1554 1555 1556 1031 0 R 1558] +/P 274 0 R +/Pg 35 0 R +/S /Lauftext +>> +endobj +1031 0 obj +<< +/ActualText +/K 1557 +/P 1030 0 R +/Pg 35 0 R +/S /Span +>> +endobj +1032 0 obj +<< +/C /Pa10 +/K 1559 +/P 274 0 R +/Pg 36 0 R +/S /Zwischenhead_2 +>> +endobj +1033 0 obj +<< +/C /Pa2 +/K [1560 1561 1034 0 R 1563 1035 0 R 1565 1566 1567 1568 1569 1570 1571 1572 1573 1036 0 R 1575 +1037 0 R 1577 1578 1579 1038 0 R 1581 1582 1039 0 R 1584 1585 1586 1587 1040 0 R 1589] +/P 274 0 R +/Pg 36 0 R +/S /Lauftext_1._Abs +>> +endobj +1034 0 obj +<< +/ActualText +/K 1562 +/P 1033 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1035 0 obj +<< +/ActualText +/K 1564 +/P 1033 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1036 0 obj +<< +/ActualText +/K 1574 +/P 1033 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1037 0 obj +<< +/ActualText +/K 1576 +/P 1033 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1038 0 obj +<< +/ActualText +/K 1580 +/P 1033 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1039 0 obj +<< +/ActualText +/K 1583 +/P 1033 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1040 0 obj +<< +/ActualText +/K 1588 +/P 1033 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1041 0 obj +<< +/C /Pa10 +/K 1590 +/P 274 0 R +/Pg 36 0 R +/S /Zwischenhead_2 +>> +endobj +1042 0 obj +<< +/C /Pa2 +/K [1591 1592 1593 1043 0 R 1595 1596 1044 0 R 1598 1599 1600 1601 1602 1603 1045 0 R 1605 1046 0 R +1607 1047 0 R 1609 1610 1611 1048 0 R 1613 1049 0 R 1615 1616 1617] +/P 274 0 R +/Pg 36 0 R +/S /Lauftext_1._Abs +>> +endobj +1043 0 obj +<< +/ActualText +/K 1594 +/P 1042 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1044 0 obj +<< +/ActualText +/K 1597 +/P 1042 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1045 0 obj +<< +/ActualText +/K 1604 +/P 1042 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1046 0 obj +<< +/ActualText +/K 1606 +/P 1042 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1047 0 obj +<< +/ActualText +/K 1608 +/P 1042 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1048 0 obj +<< +/ActualText +/K 1612 +/P 1042 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1049 0 obj +<< +/ActualText +/K 1614 +/P 1042 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1050 0 obj +<< +/C /Pa10 +/K 1618 +/P 274 0 R +/Pg 37 0 R +/S /Zwischenhead_2 +>> +endobj +1051 0 obj +<< +/C /Pa2 +/K [1619 1620 1621 1052 0 R 1623 1053 0 R 1625 1626 1054 0 R 1628 1629] +/P 274 0 R +/Pg 37 0 R +/S /Lauftext_1._Abs +>> +endobj +1052 0 obj +<< +/ActualText +/K 1622 +/P 1051 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1053 0 obj +<< +/ActualText +/K 1624 +/P 1051 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1054 0 obj +<< +/ActualText +/K 1627 +/P 1051 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1055 0 obj +<< +/C /Pa3 +/K [1630 1056 0 R 1632 1633 1634 1057 0 R 1636 1637 1058 0 R 1639 1059 0 R 1641 1642 1643 1060 0 R 1645 +1646 1061 0 R 1648] +/P 274 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1056 0 obj +<< +/ActualText +/K 1631 +/P 1055 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1057 0 obj +<< +/ActualText +/K 1635 +/P 1055 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1058 0 obj +<< +/ActualText +/K 1638 +/P 1055 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1059 0 obj +<< +/ActualText +/K 1640 +/P 1055 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1060 0 obj +<< +/ActualText +/K 1644 +/P 1055 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1061 0 obj +<< +/ActualText +/K 1647 +/P 1055 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1062 0 obj +<< +/C /Pa3 +/K [1649 1650 1651 1652 1063 0 R 1654 1655 1656 1657 1064 0 R 1659 1660 1661 1662 1663 1664] +/P 274 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1063 0 obj +<< +/ActualText +/K 1653 +/P 1062 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1064 0 obj +<< +/ActualText +/K 1658 +/P 1062 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1065 0 obj +<< +/C /Pa3 +/K [1665 1666 1667] +/P 274 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1066 0 obj +<< +/C /A5 +/K 1668 +/P 1671 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1067 0 obj +<< +/C /A5 +/K 1669 +/P 1671 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1068 0 obj +<< +/K 1670 +/P 1672 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1069 0 obj +<< +/C /A5 +/K 1671 +/P 1673 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1070 0 obj +<< +/C /A5 +/K 1672 +/P 1673 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1071 0 obj +<< +/K [1673 1674 1675 1676 1677] +/P 1674 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1072 0 obj +<< +/C /A5 +/K 1678 +/P 1675 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1073 0 obj +<< +/C /A5 +/K 1679 +/P 1675 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1074 0 obj +<< +/K 1680 +/P 1676 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1075 0 obj +<< +/C /A5 +/K 1681 +/P 1677 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1076 0 obj +<< +/C /A5 +/K 1682 +/P 1677 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1077 0 obj +<< +/K 1683 +/P 1678 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1078 0 obj +<< +/C /Pa6 +/K [1684 1079 0 R 1686 1080 0 R 1688] +/P 292 0 R +/Pg 37 0 R +/S /Einklinker-Text__rec +>> +endobj +1079 0 obj +<< +/ActualText +/K 1685 +/P 1078 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1080 0 obj +<< +/ActualText +/K 1687 +/P 1078 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1081 0 obj +<< +/C /A5 +/K 1689 +/P 1679 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1082 0 obj +<< +/C /A5 +/K 1690 +/P 1679 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1083 0 obj +<< +/K 1691 +/P 1680 0 R +/Pg 38 0 R +/S /LBody +>> +endobj +1084 0 obj +<< +/C /A5 +/K 1692 +/P 1681 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1085 0 obj +<< +/C /A5 +/K 1693 +/P 1681 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1086 0 obj +<< +/K [1694 1695 1696 1697] +/P 1682 0 R +/Pg 38 0 R +/S /LBody +>> +endobj +1087 0 obj +<< +/C /A5 +/K 1698 +/P 1683 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1088 0 obj +<< +/C /A5 +/K 1699 +/P 1683 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1089 0 obj +<< +/K 1700 +/P 1684 0 R +/Pg 38 0 R +/S /LBody +>> +endobj +1090 0 obj +<< +/C /Pa3 +/K [1701 1702] +/P 274 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +1091 0 obj +<< +/C /Pa10 +/K 1703 +/P 274 0 R +/Pg 38 0 R +/S /Zwischenhead_2 +>> +endobj +1092 0 obj +<< +/C /Pa2 +/K [1704 1705 1706 1707 1708 1093 0 R 1710 1711 1712 1713 1714 1094 0 R 1716] +/P 274 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1093 0 obj +<< +/ActualText +/K 1709 +/P 1092 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1094 0 obj +<< +/ActualText +/K 1715 +/P 1092 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1095 0 obj +<< +/C /Pa10 +/K 1717 +/P 274 0 R +/Pg 38 0 R +/S /Zwischenhead_2 +>> +endobj +1096 0 obj +<< +/C /Pa2 +/K [1718 1719 1720 1097 0 R 1722 1723 1724 1098 0 R 1726 1727 1728] +/P 274 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1097 0 obj +<< +/ActualText +/K 1721 +/P 1096 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1098 0 obj +<< +/ActualText +/K 1725 +/P 1096 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1099 0 obj +<< +/C /Pa3 +/K [1729 1730 1731 1732 1100 0 R 1734] +/P 274 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +1100 0 obj +<< +/ActualText +/K 1733 +/P 1099 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1101 0 obj +<< +/C /Pa3 +/K [1735 1736 1737 1738 1739] +/P 274 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +1102 0 obj +<< +/C /Pa10 +/K 1740 +/P 274 0 R +/Pg 39 0 R +/S /Zwischenhead_2 +>> +endobj +1103 0 obj +<< +/C /Pa2 +/K [1741 1742 1743 1744 1104 0 R 1746 1105 0 R 1748 1749 1750 1751 1752] +/P 274 0 R +/Pg 39 0 R +/S /Lauftext_1._Abs +>> +endobj +1104 0 obj +<< +/ActualText +/K 1745 +/P 1103 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1105 0 obj +<< +/ActualText +/K 1747 +/P 1103 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1106 0 obj +<< +/C /Pa3 +/K [1753 1754 1755 1756 1757 1758 1759 1760 1761 1107 0 R 1763 1764 1765 1108 0 R 1767 1109 0 R +1769 1770 1771 1772 1773 1110 0 R 1775 1776 1777] +/P 274 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1107 0 obj +<< +/ActualText +/K 1762 +/P 1106 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1108 0 obj +<< +/ActualText +/K 1766 +/P 1106 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1109 0 obj +<< +/ActualText +/K 1768 +/P 1106 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1110 0 obj +<< +/ActualText +/K 1774 +/P 1106 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1111 0 obj +<< +/C /Pa3 +/K [1778 1779 1780 1781 1782 1783 1784 1785 1786] +/P 274 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1112 0 obj +<< +/C /Pa3 +/K [1787 1113 0 R 1789 1114 0 R 1791 1792 1115 0 R 1794 1116 0 R 1796 1797 1798 1799 << +/MCID 1803 +/Pg 40 0 R +/Type /MCR +>> << +/MCID 1804 +/Pg 40 0 R +/Type /MCR +>> 1118 0 R +<< +/MCID 1806 +/Pg 40 0 R +/Type /MCR +>> 1119 0 R << +/MCID 1808 +/Pg 40 0 R +/Type /MCR +>> << +/MCID 1809 +/Pg 40 0 R +/Type /MCR +>> << +/MCID 1810 +/Pg 40 0 R +/Type /MCR +>> << +/MCID 1811 +/Pg 40 0 R +/Type /MCR +>>] +/P 274 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +1113 0 obj +<< +/ActualText +/K 1788 +/P 1112 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1114 0 obj +<< +/ActualText +/K 1790 +/P 1112 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1115 0 obj +<< +/ActualText +/K 1793 +/P 1112 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1116 0 obj +<< +/ActualText +/K 1795 +/P 1112 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1117 0 obj +<< +/C /Pa6 +/K [1800 1801 1802] +/P 293 0 R +/Pg 39 0 R +/S /Einklinker-Text__rec +>> +endobj +1118 0 obj +<< +/ActualText +/K 1805 +/P 1112 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1119 0 obj +<< +/ActualText +/K 1807 +/P 1112 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1120 0 obj +<< +/C /Pa1 +/K 1812 +/P 274 0 R +/Pg 40 0 R +/S /Zwischenhead_1 +>> +endobj +1121 0 obj +<< +/C /Pa2 +/K [1813 1814 1815 1816 1817 1122 0 R 1819 1820 1821 1822] +/P 274 0 R +/Pg 40 0 R +/S /Lauftext_1._Abs +>> +endobj +1122 0 obj +<< +/ActualText +/K 1818 +/P 1121 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1123 0 obj +<< +/C /Pa3 +/K [1823 1824] +/P 274 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +1124 0 obj +<< +/C /A5 +/K 1825 +/P 1685 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1125 0 obj +<< +/C /A5 +/K 1826 +/P 1685 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1126 0 obj +<< +/K 1827 +/P 1686 0 R +/Pg 40 0 R +/S /LBody +>> +endobj +1127 0 obj +<< +/C /A5 +/K 1828 +/P 1687 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1128 0 obj +<< +/C /A5 +/K 1829 +/P 1687 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1129 0 obj +<< +/K 1830 +/P 1688 0 R +/Pg 40 0 R +/S /LBody +>> +endobj +1130 0 obj +<< +/C /A5 +/K 1831 +/P 1689 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1131 0 obj +<< +/C /A5 +/K 1832 +/P 1689 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1132 0 obj +<< +/K 1833 +/P 1690 0 R +/Pg 40 0 R +/S /LBody +>> +endobj +1133 0 obj +<< +/C /A5 +/K 1834 +/P 1691 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1134 0 obj +<< +/C /A5 +/K 1835 +/P 1691 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1135 0 obj +<< +/K 1836 +/P 1692 0 R +/Pg 40 0 R +/S /LBody +>> +endobj +1136 0 obj +<< +/C /Pa3 +/K [1837 1838 1839 1137 0 R 1841 1842 1843 1844 1845 1138 0 R 1847 1848 1139 0 R 1850 1851 1852 +1853 1140 0 R 1855 1141 0 R 1857 1142 0 R 1859 1860 1143 0 R 1862] +/P 274 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +1137 0 obj +<< +/ActualText +/K 1840 +/P 1136 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1138 0 obj +<< +/ActualText +/K 1846 +/P 1136 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1139 0 obj +<< +/ActualText +/K 1849 +/P 1136 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1140 0 obj +<< +/ActualText +/K 1854 +/P 1136 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1141 0 obj +<< +/ActualText +/K 1856 +/P 1136 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1142 0 obj +<< +/ActualText +/K 1858 +/P 1136 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1143 0 obj +<< +/ActualText +/K 1861 +/P 1136 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1144 0 obj +<< +/C /Pa6 +/K [1863 1145 0 R 1865 1866 1146 0 R 1868] +/P 294 0 R +/Pg 40 0 R +/S /Absatzformat_2 +>> +endobj +1145 0 obj +<< +/ActualText +/K 1864 +/P 1144 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1146 0 obj +<< +/ActualText +/K 1867 +/P 1144 0 R +/Pg 40 0 R +/S /Span +>> +endobj +1147 0 obj +<< +/C /Pa10 +/K 1869 +/P 274 0 R +/Pg 41 0 R +/S /Zwischenhead_2 +>> +endobj +1148 0 obj +<< +/C /Pa2 +/K [1870 1871 1872 1149 0 R 1874 1875 1876 1150 0 R 1878 1151 0 R 1880 1881 1882 1883 1884 1152 0 R +1886] +/P 274 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +1149 0 obj +<< +/ActualText +/K 1873 +/P 1148 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1150 0 obj +<< +/ActualText +/K 1877 +/P 1148 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1151 0 obj +<< +/ActualText +/K 1879 +/P 1148 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1152 0 obj +<< +/ActualText +/K 1885 +/P 1148 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1153 0 obj +<< +/C /Pa3 +/K [1887 1154 0 R 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1155 0 R +1903 1156 0 R 1905 1157 0 R 1907] +/P 274 0 R +/Pg 41 0 R +/S /Lauftext +>> +endobj +1154 0 obj +<< +/ActualText +/K 1888 +/P 1153 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1155 0 obj +<< +/ActualText +/K 1902 +/P 1153 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1156 0 obj +<< +/ActualText +/K 1904 +/P 1153 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1157 0 obj +<< +/ActualText +/K 1906 +/P 1153 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1158 0 obj +<< +/C /Pa3 +/K [1908 1909 1910 1911 1912 1913 1914 1915 1916 1159 0 R 1918] +/P 274 0 R +/Pg 41 0 R +/S /Lauftext +>> +endobj +1159 0 obj +<< +/ActualText +/K 1917 +/P 1158 0 R +/Pg 41 0 R +/S /Span +>> +endobj +1160 0 obj +<< +/C /Pa3 +/K [1919 1920 1921 1922 << +/MCID 1927 +/Pg 42 0 R +/Type /MCR +>> 1162 0 R << +/MCID 1929 +/Pg 42 0 R +/Type /MCR +>> << +/MCID 1930 +/Pg 42 0 R +/Type /MCR +>> << +/MCID 1931 +/Pg 42 0 R +/Type /MCR +>> 1163 0 R << +/MCID 1933 +/Pg 42 0 R +/Type /MCR +>> << +/MCID 1934 +/Pg 42 0 R +/Type /MCR +>> << +/MCID 1935 +/Pg 42 0 R +/Type /MCR +>> 1164 0 R << +/MCID 1937 +/Pg 42 0 R +/Type /MCR +>>] +/P 274 0 R +/Pg 41 0 R +/S /Lauftext +>> +endobj +1161 0 obj +<< +/C /Pa6 +/K [1923 1924 1925 1926] +/P 295 0 R +/Pg 41 0 R +/S /Einklinker-Text__rec +>> +endobj +1162 0 obj +<< +/ActualText +/K 1928 +/P 1160 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1163 0 obj +<< +/ActualText +/K 1932 +/P 1160 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1164 0 obj +<< +/ActualText +/K 1936 +/P 1160 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1165 0 obj +<< +/C /Pa3 +/K [1938 1939 1166 0 R 1941 1942 1943 1944 1945] +/P 274 0 R +/Pg 42 0 R +/S /Lauftext +>> +endobj +1166 0 obj +<< +/ActualText +/K 1940 +/P 1165 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1167 0 obj +<< +/C /Pa3 +/K [1946 1168 0 R 1948 1169 0 R 1950 1951 1952 1953 1954 1170 0 R 1956 1957 1958 1171 0 R 1960] +/P 274 0 R +/Pg 42 0 R +/S /Lauftext +>> +endobj +1168 0 obj +<< +/ActualText +/K 1947 +/P 1167 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1169 0 obj +<< +/ActualText +/K 1949 +/P 1167 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1170 0 obj +<< +/ActualText +/K 1955 +/P 1167 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1171 0 obj +<< +/ActualText +/K 1959 +/P 1167 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1172 0 obj +<< +/C /Pa10 +/K 1961 +/P 274 0 R +/Pg 42 0 R +/S /Zwischenhead_2 +>> +endobj +1173 0 obj +<< +/C /Pa2 +/K [1962 1174 0 R 1964 1965 1966 1175 0 R 1968 1693 0 R 1970 1971 1177 0 R 1973 1974 1975 1976 1977 +1978 1979 1980 1981 1982] +/P 274 0 R +/Pg 42 0 R +/S /Lauftext_1._Abs +>> +endobj +1174 0 obj +<< +/ActualText +/K 1963 +/P 1173 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1175 0 obj +<< +/ActualText +/K 1967 +/P 1173 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1176 0 obj +<< +/C /A4 +/K 1969 +/P 1694 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1177 0 obj +<< +/ActualText +/K 1972 +/P 1173 0 R +/Pg 42 0 R +/S /Span +>> +endobj +1178 0 obj +<< +/C /Pa3 +/K [1983 1984 1985 1986 1987 1179 0 R 1989 1990 1991 1992 1993 1994 1180 0 R 1996 1997 1998 +1999 2000 2001 1181 0 R 2003 1182 0 R 2005 2006 2007] +/P 274 0 R +/Pg 43 0 R +/S /Lauftext +>> +endobj +1179 0 obj +<< +/ActualText +/K 1988 +/P 1178 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1180 0 obj +<< +/ActualText +/K 1995 +/P 1178 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1181 0 obj +<< +/ActualText +/K 2002 +/P 1178 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1182 0 obj +<< +/ActualText +/K 2004 +/P 1178 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1183 0 obj +<< +/C /Pa10 +/K 2008 +/P 274 0 R +/Pg 43 0 R +/S /Zwischenhead_2 +>> +endobj +1184 0 obj +<< +/C /Pa2 +/K [2009 2010 2011 1185 0 R 2013 2014 2015 2016] +/P 274 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +1185 0 obj +<< +/ActualText +/K 2012 +/P 1184 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1186 0 obj +<< +/C /Pa3 +/K [2017 1187 0 R 2019 2020 1188 0 R 2022 2023 2024 1189 0 R 2026 2027 2028 2029 2030 1190 0 R 2032 +1191 0 R 2034] +/P 274 0 R +/Pg 43 0 R +/S /Lauftext +>> +endobj +1187 0 obj +<< +/ActualText +/K 2018 +/P 1186 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1188 0 obj +<< +/ActualText +/K 2021 +/P 1186 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1189 0 obj +<< +/ActualText +/K 2025 +/P 1186 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1190 0 obj +<< +/ActualText +/K 2031 +/P 1186 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1191 0 obj +<< +/ActualText +/K 2033 +/P 1186 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1192 0 obj +<< +/C /Pa3 +/K [2035 1193 0 R 2037 2038 2039 2040 << +/MCID 2047 +/Pg 44 0 R +/Type /MCR +>> << +/MCID 2048 +/Pg 44 0 R +/Type /MCR +>> << +/MCID 2049 +/Pg 44 0 R +/Type /MCR +>> << +/MCID 2050 +/Pg 44 0 R +/Type /MCR +>>] +/P 274 0 R +/Pg 43 0 R +/S /Lauftext +>> +endobj +1193 0 obj +<< +/ActualText +/K 2036 +/P 1192 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1194 0 obj +<< +/C /Pa6 +/K [2041 1195 0 R 2043 1196 0 R 2045 2046] +/P 296 0 R +/Pg 43 0 R +/S /Einklinker-Text__rec +>> +endobj +1195 0 obj +<< +/ActualText +/K 2042 +/P 1194 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1196 0 obj +<< +/ActualText +/K 2044 +/P 1194 0 R +/Pg 43 0 R +/S /Span +>> +endobj +1197 0 obj +<< +/C /A5 +/K 2051 +/P 1695 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1198 0 obj +<< +/C /A5 +/K 2052 +/P 1695 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1199 0 obj +<< +/K 2053 +/P 1696 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1200 0 obj +<< +/C /A5 +/K 2054 +/P 1697 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1201 0 obj +<< +/C /A5 +/K 2055 +/P 1697 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1202 0 obj +<< +/K 2056 +/P 1698 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1203 0 obj +<< +/C /A5 +/K 2057 +/P 1699 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1204 0 obj +<< +/C /A5 +/K 2058 +/P 1699 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1205 0 obj +<< +/K 2059 +/P 1700 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1206 0 obj +<< +/C /A5 +/K 2060 +/P 1701 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1207 0 obj +<< +/C /A5 +/K 2061 +/P 1701 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1208 0 obj +<< +/K [2062 2063] +/P 1702 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1209 0 obj +<< +/C /A5 +/K 2064 +/P 1703 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1210 0 obj +<< +/C /A5 +/K 2065 +/P 1703 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1211 0 obj +<< +/K [2066 2067] +/P 1704 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1212 0 obj +<< +/C /A5 +/K 2068 +/P 1705 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1213 0 obj +<< +/C /A5 +/K 2069 +/P 1705 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1214 0 obj +<< +/K 2070 +/P 1706 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1215 0 obj +<< +/C /A5 +/K 2071 +/P 1707 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1216 0 obj +<< +/C /A5 +/K 2072 +/P 1707 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1217 0 obj +<< +/K [2073 2074] +/P 1708 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1218 0 obj +<< +/C /A5 +/K 2075 +/P 1709 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1219 0 obj +<< +/C /A5 +/K 2076 +/P 1709 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1220 0 obj +<< +/K 2077 +/P 1710 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1221 0 obj +<< +/C /A5 +/K 2078 +/P 1711 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1222 0 obj +<< +/C /A5 +/K 2079 +/P 1711 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1223 0 obj +<< +/K [2080 2081] +/P 1712 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1224 0 obj +<< +/C /Pa3 +/K [2082 1225 0 R 2084 1226 0 R 2086 2087 2088 1227 0 R 2090 2091 1228 0 R 2093 2094 2095 2096 2097 +2098 2099] +/P 274 0 R +/Pg 44 0 R +/S /Lauftext +>> +endobj +1225 0 obj +<< +/ActualText +/K 2083 +/P 1224 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1226 0 obj +<< +/ActualText +/K 2085 +/P 1224 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1227 0 obj +<< +/ActualText +/K 2089 +/P 1224 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1228 0 obj +<< +/ActualText +/K 2092 +/P 1224 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1229 0 obj +<< +/C /Pa3 +/K [2100 1230 0 R 2102 1231 0 R 2104 2105 2106 1232 0 R 2108 2109 2110 2111 2112 2113 1233 0 R 2115 +2116 2117 2118 2119] +/P 274 0 R +/Pg 44 0 R +/S /Lauftext +>> +endobj +1230 0 obj +<< +/ActualText +/K 2101 +/P 1229 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1231 0 obj +<< +/ActualText +/K 2103 +/P 1229 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1232 0 obj +<< +/ActualText +/K 2107 +/P 1229 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1233 0 obj +<< +/ActualText +/K 2114 +/P 1229 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1234 0 obj +<< +/C /Pa10 +/K 2120 +/P 274 0 R +/Pg 45 0 R +/S /Zwischenhead_2 +>> +endobj +1235 0 obj +<< +/C /Pa2 +/K [2121 2122 2123 2124 1236 0 R 2126] +/P 274 0 R +/Pg 45 0 R +/S /Lauftext_1._Abs +>> +endobj +1236 0 obj +<< +/ActualText +/K 2125 +/P 1235 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1237 0 obj +<< +/C /A5 +/K 2127 +/P 1713 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1238 0 obj +<< +/C /A5 +/K 2128 +/P 1713 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1239 0 obj +<< +/K 2129 +/P 1714 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1240 0 obj +<< +/C /A5 +/K 2130 +/P 1715 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1241 0 obj +<< +/C /A5 +/K 2131 +/P 1715 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1242 0 obj +<< +/K 2132 +/P 1716 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1243 0 obj +<< +/C /A5 +/K 2133 +/P 1717 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1244 0 obj +<< +/C /A5 +/K 2134 +/P 1717 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1245 0 obj +<< +/K 2135 +/P 1718 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1246 0 obj +<< +/C /A5 +/K 2136 +/P 1719 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1247 0 obj +<< +/C /A5 +/K 2137 +/P 1719 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1248 0 obj +<< +/K 2138 +/P 1720 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1249 0 obj +<< +/C /A5 +/K 2139 +/P 1721 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1250 0 obj +<< +/C /A5 +/K 2140 +/P 1721 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1251 0 obj +<< +/K 2141 +/P 1722 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1252 0 obj +<< +/C /A5 +/K 2142 +/P 1723 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1253 0 obj +<< +/C /A5 +/K 2143 +/P 1723 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1254 0 obj +<< +/K 2144 +/P 1724 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1255 0 obj +<< +/C /A5 +/K 2145 +/P 1725 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1256 0 obj +<< +/C /A5 +/K 2146 +/P 1725 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1257 0 obj +<< +/K 2147 +/P 1726 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1258 0 obj +<< +/C /A5 +/K 2148 +/P 1727 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1259 0 obj +<< +/C /A5 +/K 2149 +/P 1727 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1260 0 obj +<< +/K 2150 +/P 1728 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1261 0 obj +<< +/C /A5 +/K 2151 +/P 1729 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1262 0 obj +<< +/C /A5 +/K 2152 +/P 1729 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1263 0 obj +<< +/K 2153 +/P 1730 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1264 0 obj +<< +/C /A5 +/K 2154 +/P 1731 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1265 0 obj +<< +/C /A5 +/K 2155 +/P 1731 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1266 0 obj +<< +/K 2156 +/P 1732 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1267 0 obj +<< +/C /A5 +/K 2157 +/P 1733 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1268 0 obj +<< +/C /A5 +/K 2158 +/P 1733 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1269 0 obj +<< +/K 2159 +/P 1734 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1270 0 obj +<< +/C /A5 +/K 2160 +/P 1735 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1271 0 obj +<< +/C /A5 +/K 2161 +/P 1735 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1272 0 obj +<< +/K 2162 +/P 1736 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1273 0 obj +<< +/C /A5 +/K 2163 +/P 1737 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1274 0 obj +<< +/C /A5 +/K 2164 +/P 1737 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1275 0 obj +<< +/K 2165 +/P 1738 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1276 0 obj +<< +/C /A5 +/K 2166 +/P 1739 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1277 0 obj +<< +/C /A5 +/K 2167 +/P 1739 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1278 0 obj +<< +/K 2168 +/P 1740 0 R +/Pg 45 0 R +/S /LBody +>> +endobj +1279 0 obj +<< +/C /Pa3 +/K [2169 2170 2171 1280 0 R 2173 2174] +/P 274 0 R +/Pg 45 0 R +/S /Lauftext +>> +endobj +1280 0 obj +<< +/ActualText +/K 2172 +/P 1279 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1281 0 obj +<< +/C /Pa3 +/K [2175 2176 2177 2178 2179 2180 2181] +/P 274 0 R +/Pg 45 0 R +/S /Lauftext +>> +endobj +1282 0 obj +<< +/C /Pa3 +/K [2182 1283 0 R 2184 2185 1284 0 R 2187 2188 2189 2190] +/P 274 0 R +/Pg 45 0 R +/S /Lauftext +>> +endobj +1283 0 obj +<< +/ActualText +/K 2183 +/P 1282 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1284 0 obj +<< +/ActualText +/K 2186 +/P 1282 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1285 0 obj +<< +/C /Pa3 +/K [2191 2192 2193 2194 2195 1286 0 R 2197] +/P 274 0 R +/Pg 45 0 R +/S /Lauftext +>> +endobj +1286 0 obj +<< +/ActualText +/K 2196 +/P 1285 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1287 0 obj +<< +/C /Pa3 +/K [2198 2199 2200] +/P 274 0 R +/Pg 46 0 R +/S /Lauftext +>> +endobj +1288 0 obj +<< +/C /Pa3 +/K [2201 2202 2203] +/P 274 0 R +/Pg 46 0 R +/S /Lauftext +>> +endobj +1289 0 obj +<< +/C /Pa10 +/K 2204 +/P 274 0 R +/Pg 46 0 R +/S /Zwischenhead_2 +>> +endobj +1290 0 obj +<< +/C /Pa2 +/K 2205 +/P 274 0 R +/Pg 46 0 R +/S /Lauftext_1._Abs +>> +endobj +1291 0 obj +<< +/C /Pa2 +/K 2206 +/P 274 0 R +/Pg 46 0 R +/S /Lauftext_1._Abs +>> +endobj +1292 0 obj +<< +/C /Pa2 +/K 2207 +/P 274 0 R +/Pg 46 0 R +/S /Lauftext_1._Abs +>> +endobj +1293 0 obj +<< +/C /Pa2 +/K 2208 +/P 274 0 R +/Pg 46 0 R +/S /Lauftext_1._Abs +>> +endobj +1294 0 obj +<< +/C /Pa10 +/K 2250 +/P 303 0 R +/Pg 53 0 R +/S /Zwischenhead_2 +>> +endobj +1295 0 obj +<< +/C /Pa20 +/K [1741 0 R 2251] +/P 303 0 R +/Pg 53 0 R +/S /Endnote_1._Abs +>> +endobj +1296 0 obj +<< +/C /Pa20 +/K [2252 2253 2254] +/P 303 0 R +/Pg 53 0 R +/S /Endnote_1._Abs +>> +endobj +1297 0 obj +<< +/C /Pa20 +/K [1742 0 R 2255] +/P 303 0 R +/Pg 53 0 R +/S /Endnote_1._Abs +>> +endobj +1298 0 obj +<< +/C /Pa20 +/K [2256 1299 0 R 2258 2259] +/P 303 0 R +/Pg 53 0 R +/S /Endnote_1._Abs +>> +endobj +1299 0 obj +<< +/ActualText +/K 2257 +/P 1298 0 R +/Pg 53 0 R +/S /Span +>> +endobj +1300 0 obj +<< +/Filter /FlateDecode +/Length 10936 +/Length1 17323 +>> +stream +H‰œVyTTçÿÝ·ÌÀ€À +8HÞ0 +3 › ‹2¾\Md•aÅã·1‰©IµF‰1Æ&6yZ›X«Vbµ‰1šªÍÒ˜6I{NksŽ±IÓÖÊÒ;£æ´ö䟾Ëã[ïýîïû~¿÷ À0<¥3*ìia)9©Üsߪ†vOç3¦O®”È Ë—*ë›ÖìtÍÜ·º¹s~»`|Óè?çö‡óÛV6¿œp.ð?$niò4Öÿqê ƒç#³…;ü_Л¸½‡Û£[Ú—vï˜ûâJnŸá˜{Ú:<Èûh<[ËíÞvOw§p‡BIý<_YäiozVÈÔh^¯¸³£kéÐ>™c;›¼ãKš:¥7Žçöfnǃ¤(z +²h7-NÞ-¥×Ñ,pTAqÿ1lñ»[ñû¶Ë%~¡|uà$ã  +)c|#ÈW†ó®qFò«Ã½N.ßœÿ~xP”dÞÏß8,(8Ä>|DDdÔHSô¨˜‡s¬et\|˜±‰IV[²=%5-=c\fÖøìœÜ¼ ó긂B×ä¢â)S§M/™QZV^Q9³jVµ»fvíœôÌ/ggéý ¦ð1¥îꚺzþÕ¸`a{Û¢[Ù¹9yêW®Âd{`ל¹Í‰“f-nù&>ü§á¯Àm‡/»ÖbÔ Ôv@îL 88¨K0W$Y£ÆFD:‘öÌSÊ™&_‹r0¢‡Fääcââ1ºdÆtÙ–p€ÉÞ(’Ä;(f$Öã) ‘HFK©TAj¥nÚAÏ“&œ®‹¢è/ZD5涒¢¤*9Ê+æØب[)CCÞ³ÄxŽ +¡1ì[NuÔâóí¥×|¾ðù:bz•0ö;ç«óùþ¿OúyÅóô] ‹l—è=ºâ³kô¾Ï®ûìSa‡p‘íÒ]c™dè göøÀ²¦‚ŒŠ0fÊpŒ@"Å;cB4F!1N3baÁhÄ1_0c‘ˆ$XaC2ìHA*ÒŽ ŒC&²0Ùœg.ò0‘ÏN .>„"c +¦b¦£3PŠ2”£•˜‰*ÌB5ܨÁlÔbæbêàA=ЈN,Ætñ—`=6`#6a3Å<†­èÁ6<Î'ò$¶ó™~;ð4žÁ÷±Ïb~€Ýø!öà9ìÅ>ôâyìÇ 8€q/á~„—ñ +ãÇx¯AÃÅOp ?ÅëxÇñ3œÀÏq§p¿ÀôáMœÅ/qçñ+¼…·qïà"ÞÅ%\Æ{ø5®à*®á7xàC|„ßâcþb}‚ßá÷øŸás|ƒ¿áKܤXň:°íXCVJ`lÍÌû[ø_a!VÑZZÃö­£Í´ÖÓ&’ $bfSÕÒ,šCÕ4—Ü4j¨Œ¦1§3›K¨’fÐL*¥`2Ð0ò£ ò§&fj33}>Õ3c˜ñd¦h²P EQ8EP(uÐ꤅´˜Úh µS-¢ 4ž&R6åS9(—&QÙ˜ûIO“I¥"rR1Ð*¤©ä¢ ²S¥Ñ8J¡LJÅJ<Ì,ôÚR,C—˱ó¹lÅtßka~>hmÜ¿kq«±›zh=þD+i)m£ ø3=LËèqÚˆ´Š–Ó¼;›h5­ðÙ&ü…÷ì¾uÿ‡mƾï|~Y :VE3µm'ú†>à¯áA±OÞ(–/ËWé2õràó{—Ïú8³äUfÏ~fÔæÚvæÞ6æáæäFæç:¬Á*Ƽ‚±v1o;øt0ºfæq=sz.󻆹^ż/g ”°¦°6\¬•U3”ÅŠJguÙYq ¬@³ô—u ä›òN9Tê— +$Uò“t’ A¼)^ß{ÅÝâfq¸LìÓE»8V>ú„Â^aP+Ô%‚*ä +Ù‚]°:A¢w¨Ð^¾uvÑNÚÎìê¢:ΙÁ^¤g™ó'™ÿÇY ÇX^܇Y/‡ýÆ¿‡µµ‹uö4«îÁ]¸»÷ñ{Q{1—ûÐ1N/>;ÌŽÃÃÃB!ÁAà þ~z,‰Áz”•áTzê{,js•Íz4‘ïÍÊn IÕÙn_‘ç+4C¢[#gÈ]6kÿiB¢Íz÷Õk°¨GHŒS—ÒâiÔÄ8.MrZÔ;3~…] öþ¾±ÐqÖÁ4N(Â#ñÊ$-–¤¿—™²Ì‚:ð…!K0èxÀVƒ×sëÐßi«"‘£.Ô €¤GýEvvÏ5"6~\Ffz“Y7hw¹ì)ÅE†"{ò¿¹®Ö ¦Î4|¾ïÜr’”„CNBä@rOá""‚ÕÕ¶@oÞð†¨+TWTÄ‚R]¥]lYuÙ­k»ugÚÙÕÝn«]kÇi·¶ÎØq¦—ÝN»;ã¨÷= îÎl~$s¾L2ïó>Ïû<ïW3Ûç«‘·­Øã[ä[t/¤n6aOdi*5¡ÐW¤š1¢2ôH ÍÈ™þCÚ…Óµ¼5hÁ‚3¤Á‚–£|$Œ]èÞí›×¹ãä²Â²¿ÞºÃÙszc—³`{îÛ +}±ùÕo†Þ—N<¦[ÏI?\’~/>‹Ø×?Fá×O÷ãd=¬Ä”Edh°ŠHµN…HžD#” 2F®£ ¬º›ávˆ†tAŸƒ/¶ÛÒ£b4’¶ÓýiHõn–9§nMÛÊŠââÊö5›ërLzé>µ©¡y•òaÅ"ƒ‘bâ8ùŠ3”Qÿ ùeùV¹«V¨âèH!13„p²réˆËÊP#E!¤"¶œ ½)ÌÃNNÈN#HÞi·’ƒ™”–F>¹:xùEˆ¥HX.‹Ñ {)¹eP$ +:¢"#è ÓE[Qó›û³V—ulÏ6Ç”iªŸ¯y¥¿¨}¥tp 2ÿü$E­moo/z¯Õ‡:/ß_]º¶®`öŠ–ŠKÖöÍ_8t`Ô¥`˜R‹¥Ð RÞ³s€× €"@T%âˆÞmtdN&æ +²‘j¬p@ÊWºst 2K4bIÊ›9? 24‡Ž³ùƒCI@ùþŒ$$èX*]ÇPv›Ëír‹ÌL0Ùÿ>ºä'¶!Ös£óló—(6!ý0>{j¦è<Öw&Öý¼·:œf´jvŒ¼Ø^wŠw¤þº–_ñJ?vßÈúÇ…c‡¯Z¼wŽÞ îÀÔ¹ íûƒ W +Øù+hÄ +›_u"®*X#0r*ˆ&™_¥ã”@ÃlÀ:N ÔÎ, +Ó< ›†‡(3ÜÓBJŽ ŒEÁ]² YQhZQ¥8b„ßáøÔç\õ’Qs´6qÊô¯Xðv´Æ} zWÈ—IIu¨ÓG^•-SßIw™!n´ªLO‚¾(`ä¥+¯DÙøÚT˜13ç™Q“(·ñé¤EÏy=ØW€Ã(_»Õ…!dÉ%•´BƒôEê$9n§-Ñ|8ðyéc¬< bJn~DN³“†§™1È\$%˜âFžÏi‚*ˆÍEÿJÏö?¬Y>ùñ†@¯Ó^hɪÚ<6¿nhùÓëy$G)K®75]+)J)}EÝ’µ-½Ð½ùƒ‹L†Žñ¬ ïŒÆWÖuŒ7–”«}(üÓ?Ö*I–%•QSVT){K •'ɳHx´(OÈ¡wUÊ\8€•ïàTè¨)ÑZ4è µ NNP€(§±yq$Ì¢AH#ÙRòÉɦÃ}Jl.ôý¦_®¼*>¬Ûs}è9MÁœ¹Ág÷6fï<[?w0KÛsdßÏŠvä5Œ^î¸;µkÛ^ûtÀV\˜Y´êHCû½5ø_ Ê —¿ü›Ž·È.Ð:{µ;™ØC)¯6*¥täâ,NP"Gšl¶ËÑ90Þ88wYÊ7LÔnJôl˜·]ÖS ¤F¸óÍH8¬UE“ +„C‹†õ +¢uhƒ=IJ@Jw¤”Ù'XJa xˆ/"#…ž„ô—êÝwÎ4Sƒ–•ÛÎ6uÝÜ{íÞIé¢ÞöÄ î>’g×Zº÷EïÖL˺w6ïùû.铇7¥QéßxâÃOÿŽüóðÁä*s?`Ôô(Ü?#D0ቇr¢Gò\6­šæ8PGÂ![n¶1SàÓUÏpùÓƒ,W +êáàÊcø? ‚"}ÈÊ&ËœN;&y.ÇŒ7%² +ý“.àuÓ¬ÊS¾à̦ڥAËÔ…™ú@~Q]ż`¾§/6×QÌ£ŽYMÙÒט‘$zôáÕ«-WB*™ƒXàM«¿í4dëÙdŠËÁñæûr9ØFò§}ÊÉÊÑápÉs-F°–€Ù7dFL·ËE7/”î·^”>¼³µw['òMö>jr'/\±çð§/Õ-ûí£cë¿®9ß*i»Œ2ÏN"ò%m!ë…½ÃîX¶}éäÝÞ£&—TGd6 + L÷ƒbD¢,Q –ÁѸFÍ)ÌÈò‹íÉ0·ç`3'¨Ôðp}ºA;øA?1$ìô°Û 7ÈHÊ\Å %OfdaýoÉH—ILŽ>Þã9ó'û®V5– —Œ¡ô?­ÝòîÎÅ×E;mñx¼9QºR>±x¼~㋳VüæÛ‘‰+äÕ‹æ©'áñìØ7ƒg¤Û·ÂnkÊ'|Vuåa\kp„Ï}uè­ïw’Œ< †åâ¹Ä<›QOšsã~1§e± +146—ÊÞåB…(–Ô1uh^=cU€ž¤êjp'$¸øŒ<OóTÏâC¤¦ÑÂTH cwÉÐqH¶bhˆs»¬6VÆ+FËP(©OƒÝ¤S>Ε%*ÿ‡ð*â<Ãó}sìŽ=Þ{ìµ½÷xg½‡w½Þ {øÂ룮±]C\( P àPœÚ`Ì…`nRs4Ä‚”r¥!$PQBD"5”BQ‰JUU¢¦¢jÒJ­š¶*fÝwv½Æ8¦­Ì7²ô=Ïû>Ïû¼0—fF´kÕËÚŽ:ÛÆG’±W†4ʤæ{©û}uË÷\.É#s:ô].™g»r!Qׇւsš”êš7šW®>¶bQ x äX…öŸäÑ£A¢ŠDÀ b’§Zw”ËܪG¿cò9W_Çݾ¡m£[^È<º®*ÊÛöLÛ…ž é¹,Ó‰)öZ€½¢:á“$Uí¯×f=Ž\ËXÞÊ8=­Š”Fõ×sx/Òh4?MO\Š£`›SYTž ¢YÊ*bxgÂÓ8CïIĜؽÿGËÕÚ,I¡Ñ¡¦øÁ Iÿš“#|<µ(C?Ò`™A ù¿x™Ró]Psô£17G›®Üég-ÈYmMû«uéÂP•±–\($Þ¯Djz´ ¬ G¦‡” x%h’Y©¥8’Qû,­S u %É$L}hvüä\g÷9yµJ¶ø——êϧî~¶ù>Úóå™Ov8ã] û.úrçkÈ}çùÓlîÍK,¤2JQž)ð¦Î——\CEïÿu¾ë)=5¶¦¾ÎlOýéêíÔõ‹CñT}™a¨o± QWå%?¶YL¹, Åmå’Ü|.Àù9×2äQ=Û&Ãó9œ@På|:hÂUÈ'à½z§ÁSv~ÜsV]$Q<¥$rx™` ¬‘ÇÇáÌ9ýŽT÷×wÂä=f;Ü'A4%ÂUuXÞÉš¸b¸“‚Ëåäœß•¯ Ôe¬ÓŒõè’¨ÖÑT#ÇËŽÁu3«—Þ"Ÿðôpž|ç¡¥ZFH˜cÛü£dï½=#‚:"’w™ô[çP:ÜÕ+:X-¯NÔPE²·æë¡°?´ Ü›ThÀ·¦=žÂ“䵯€5Oi~xDãÐZ© ›MzÙãUU¦7e=ë0&š1…¼¬äãPÜ £ÍƒÜ¨ÑëTC*ÊÍm¦É +Äî.© hÏtñ»êÊÅã7{_ûÛ¶ug¿e¤B/x|–B}ÃèÒpwÌÅéÇNŸþâŸ9úû+Z>»sP§éÞ÷Üá_¯,:;ôõ ¨¸$œ<2"*Èq9Pp=ë*Å"Ë«9žÃ:¡=’§‘?R¤l‡rZm l^pmXcÀaáâ0w$œVIÇO–kä©”'¹ÿüy?rúß:ïWÆ夭,u]®Ñ4,ŸrbÐì²M]FÇÉîã‹Hx^¹zR4umš8¾Ùô¸œieª&ÿJŸ.—°";gãÌœžÍ˜“Ó!Ê +ò¥b¿'ëœÒã-gqX +ú3­ÁŸ :8ãv-´¡Am²/Ù/ÚŸOÆ,®’ÔxiܸÒÑ‘Új©jéõùvön¨¥™‡'ozŒó¨io‰uMœ\üæÒý7ÈŸ.˜vÊ®ÌÜ\ö{Ø\ê ¹KˆÔÆØ F/`Ðqj0Xšõzœ¥6«±0ŸÏé +)CÃL ñ¸ P02:‹œe£¼®@І5‘ô + à˜)†Ã"õ`’HWèW2Vù?~GUÏ6çÅî»(¿EMDVk›A…bâJÃóŸí}ÉÚ˜*õ N«–¯T‰a4†¯L nï´î/¡L5ŽièT‘ËP2Ñ·îE²o¯i/›ØIþA,¤³ß™ðÃK¥±F!º¾ölu“ÈÉŸ¢šhKÔy˸\DÀ.Äæ ª\™CÉT¨ÇȪAo6.‚Ý¡[„lÈ+àcZ”Os9øPÀ º‹fu‹HÆ ³P‰Ð…èSþÉÉ‘1 ÃP0Fj&M]†§0º}kËKõ•:ÆX^;°iû¨Œ)ë°m6A–ä¦ôMk÷öŸE‰Ëß6•%]îEuvÚ·Œª‹ä5qÅŽºùo¿šÚ5Ïb ©)ƒ¹ðŽzûàÚ—kSŸ#E¡W7PluzË‹<ùéäJELØ`“M&¢E +ìs°’Ø5¨P‡~>½=ÙùðÁC° +4–ãAt ²äc¯#Åy f‡nÚ€ÉJ$¯Q %´·`sÈÀpâHÝ(ŽhaØJ9=^¨µ¥{ÞXèNzo{¾Qudõ+¬¥ryï4›cë;Ëìkn¦?xTµÎåï¿6XxÄvȬhiÉÓ‰¦¿ï»•&ïĹT“¥=ðì±¥c·–HJ MÞ#ۡ¢,!êfT¬ÝŠ¿ƒäZ¤òë¥í‰²ë°æ¹XcSk¬äœxæÂ*¥]Áæ³ K®QŸaH¥2§y‰½rÕ35ý/·W ¸y·âܪM¿Ùºª¹mÙº…;ûJ<2’ï2˜ÚÿKx•Ç6ußñ÷ý½Ã~ÏNâ#¾°]_±øˆÄvNÇ/ä†p$„+d9€ …BJ t„£¢d”c.40Ô²¡›¶J[½¤i*Û(C­TõŸjš¶IÛU…ºÆìû^ìºʼn”ß÷û9¿‡ž»¾+æ¶8 +ËøÙ™#ˆU—DÛ*IlâpqðS5ÔRQtC8ÆSŽ{ñ•(ÈWÓ±Mæ ¹hxƒ2ß å5`æH X”$̓‰=u`W¯›—öÙ…› n¯œÄ¨×J©7ËAŒºwÿÉN½ NôUÕø‘{EÂߌÃw?ßÑõNGGrwkÿñª‹gÛO=|®Ì©§Â^íõ=öEt®ËÜz_ ŠOÇïúý…m•ìo~7øî®–ZÿêN.á“F|*LµˆÉP¬tf‡€jRáøhduÀÙÀu#V4ÍÛmúÕ|°=9AûP|‘¬øQps©‹Æ|˜˜õ8««0›ýˆ"™FÂÛûÚÐë£ÛËê¯}Áþü™ûá¾Wz#«V„­%ü³gSéφÝM¥í‰QúÀ+j®ïÒ†¦?¿]c³¯?;\m Y Í•áÑ¿N ¤GÜ5æ*ä[ÛôMöS̶F±€P50žÒ|ÍÄ Þ"žVEA¡$ŒÕDô¼A¢ÓE6â…tžû)Ê42 ?ƒÂ'f¯b¡f×âwi–HŠ#7ÍÉ%bÊêüŒï+¦X‹Ÿ)ïK¨…‰ 墳ÞÍ‘{ëb^MÙþÑÊá©÷²`ÉÅ“c‘½‡4*ÃâšÆík<Ç‚AŠ¦OÝbz¡ÕDuS[Å>:t4¾¶±L ”1ˆÆ)àŠÕ¤q±œÎѧds‹UA)XÆÍ/WãùÈ'`ÒØ®ac@Òt%þ1øÜ䵂"-ç‚t}¸ ]È]vMŽ»ˆ¢G®i\~‰™Ò%eœî¦|)ðI_âRo©œ..^ÈåËÒ˜ÎõW…¤b#ãÏÔ.†7m +Øì ë¡õÀó§î»½»úWÇ;×LŠWÅæ£ð(3ceC‡ê¶6nØsgäÚÀØ•½Ž®Ú«4WÞ°âPÈQjd,uörçÅÁ®‹—.›èÙY>X´:\2ÊøØà¯7"ÁoÉO4*Ò‹õBn´w]w}MÂïQ:Ð …X9ñG»V.™fðȳ_Ã&Ðà4Ž6¸nX?àie@oÂwæÉ@ryƒÐrï"°^ó=I ñïÊŸµ]¿Lê'ªÇ>î¼P7šÚ¾2Œr $ý~Êecÿ´Zp1þ†Übëê¥OÕ‰5¡M%bƒw(ÚÏîÁ­a‰nüñدÄB«÷­ÈôÌĦ¬£‘ôÂ2êÍûZž ±œ«à®S˜?Õ Ôû„<ÜseE¤@Å¢Öœ‚›¥Ñ…ù¤‹+5¬œ`ÓÜ5ÑYfåÿHÏdø¿ÁZ7ð¨{äkê$5>ÙnÈø‚3çô‰ {¢éPrŸÿœ±ãôZÊIyD›®‰GÍ.j¢03‘o§Ø ‹É-³=eݹ»yRˆ…N©ïapø3ø³±Ôþÿ\êû¥Öã_:wijâhïø±gKÚÿbóä¿·¼t}àü7/ÓW>¹´öúÙ _^8üÕéš©˜|G”j VŠMMêâxSäá±WçÑ 6ˆ—-â_å‚GaP ®^V&”«·½;rþ£hk‘>ë?ÜG)U-F0äGÓ&³V&f‰—¸xƒ^P zÀfa…@nr¢Y;•åýïÊM +t?,$×ûYã×1#EÂ)‡.hÙ!¨–noÛP?k\³Ìº{8Xbú¦o¼/óÆ\%æ<,‰=Õ…D¨Åbu‘U£ÖÁb4;šŒXRÃÀŠAÎ"ŠVºxë"3ýS¿Ø0E.»ô,GÊrçaT_!õ™dþRÚ/ÒA¡ðÈá/MÓÇšHt'/oÙt¢"bo\6èèêýò­NrLÍûooÛóþÕƒÙsz"Ÿo÷ÚµÛ:ËÛÕJÞ¦rn[ûú©XÇd¤£÷Êâ¥Çî]ÏNv–U–"üðd‚y@Y©:1fJÏžhjšÐ‘! +µ•¡•ù÷,öG£ÂZg‡b¹4ŠÜ4Ss2˜pisØ°Ý4øôN½Eö7<.64<ºË‚ð¡%߇ÖVlèÍ‘r˜7?l2\Šy¸Çð“lß)1¾k9T\·Ór¸8Ý–rWJE=OÎÛ]Žþì§ÎfÓïþèkªmê:][w:ÝUë×Ím©çÆù¶ÐèÊÕwâœÃïøúŸ¾y ûë'¿ýj#5áÏøk§ÓnÚª,¶•÷ªÀïÀê—Â}ø Æ¤ßSbÔó}™Ïà2X°/ ø½žj—Ãn³ +dД .˜s›¿=—+@I믘Ÿž(¾Ž¹ÈÇq«Î&|'rÔEªb¦Êòo¸¶xÿüº³[wÍã®âÂ_˜šìAÃg}ŽKÙ{£™×eµr͉|QŒëx7ø’1î䆹CåÕ‚ ô7üƒJTÀr›|f›£5%·9*)—± +m‘gOC–<ŽÊ­¶­F ’Þb–²æü”Õ5øÖgŠ“cñº¾ÊãV#¬/Êr~àž1M>ãrH%|{š²¾=Ç÷+-)s|oÌò¤o—7z¼c5ÑÎÎ]æÕ_ã3ÎÒÝZž;»üµ½ÇZœo”ÚÅ}GÚ'Ã[cÛd)âÝ–Wö–Âua9Ú™Œh9¯¸yGœ-å7”éÌŸ*–æÒbÞ /s;ìV‰#í3Z3—KX †žs7âkŠ âü^å7‰¥‹ÅÝÕø±zb;âò¶ .\^™à,g~ªõµhl“ÙOÚ'cöïÄŒßßÉõuƳy¾S²µ¥ðÅ™±Þ‘§„SË7-Îé†ë e¡LîææŸÎ˜«ÏŸæ_‘óÈÖ>™|4t dç$è¨ðZš^¹¡ êK¡JØ]¨347Wfˆô5KÓÙ˺ Ü›wq¿òºxF‚®ð÷é¨H¤-Ò¥¥õp³4ÁÏÒ8H vJ‰‹4Œñn´=çОÇøf0ÜÀ DP R —=0þ6sN±ç€§… Ô£ù’Âx—S¼CQÍÕKaª‡^/ž€^ f¨žŸ³«ãœ"ßÓ¾Lné +y¤v´oa ¤¦z„Ââ'äÃólšwÈ„x™4²ƒRà„ÝÓxïÈ>Ùæû,µÊ¶Ž¬~ {¢xþSÂ-Š¢?Râ ùn +r·W¯¢dºÖ?Ð/öãþdÇ1'@Aá µð—`ÇMò‰gÉ(ÍaŒ›˜g•¸Š‹|²—½_¶é G»9¨gö€aØ}²Áîékh™ùÆ_¡´Ër Œè·p™ìdsûl®Ì"gdÏÒ)þ‰Ú[Ô%Û†ùÒ›”â;(Èìaq?¢Ë?ÚÀ¦æËÀì„dqð Ga´‡ÔÜ «}Œsr] á]CÄ£ýsæ¿F¢4«´‡þV!‚¹˜/±úB0XþYî7B{aõ.«¹òk!Ô‹=W …À®YiïC=ä#û} ¹;+uºÉD-¬X-äƒØXüøŽÕû`Y®\-ÂbuµÂê!V`.$ß½zqzC0$þ ¹@üÀxtàþórŽYüQ›Ì_öl© uuS©uÙÞ„üíÉ’Ù)Ç‹k—ëj½ļÐ׵粯Å_‰ÓZ¼>cßNaþëâ£úUˆ·Ôoû!6´ñ*ä±ßû˜ñûÅ™h%L´|rò2äxúÛg ïe§”þl+Ú¿mø| +yr÷–¯B¿ªèK‹? }²í÷ IÍ—åûŠ\º«2­ÊE.¿UÀ‚"— +aãßBlrWûÿÀEð.þsF•×±29À_‰„Xa€?ä0~˜^ð"-Þ­ë4ú¤ +|2|Hd4ƒ•Ôëë1ýVaˬB)ü4_"²ô+”Y‰ÊýG°b9·"76üÛ·Žá _«oûOˆ»œ°É9Iäºåý_DÕðÕsQÁ›&òm׈ü¯ÕtÕbNm¿ç¿ÕÍm²É&›lò8v‚¢ï‘V=>qò*GŸŸ^Å欌4õЙKÑ*YÓEè%ª.As¨:{f=Fr¢^nçt#r:OÅ´[ÕôïWuú¨ªKÐ_SuöÌ_veöõîÎÓƒÇOyö»nRehõâ5 +Ršé8IGèYbwÑa:%÷ÿcÿû»‚½ÕKÔ¸îÜ‹+YUºë+ÍÖ†¢r±yÊT´}Jœ^Š¿(NMu…é‚°ó¬=ü·\ž”a +endstream +endobj +1301 0 obj +<< +/Filter /FlateDecode +/Length 10587 +/Length1 14556 +>> +stream +H‰ÄV{TÓGþæ÷ÈbÈ 0!^ @@Q $‚Q­%¼„UŠU¬mñQK‹U[m­oiµÖªÕh­Zµ¢µ[m­îÖmw÷ìéÙížõÝíééÙ³j7ìMô´n]÷ßd23wfîýî/s À0¬©S¦gºô1ù‹Iò;ªåõ­þŽ +ifÀÒþûú%‹ÍÓÚÍ€O²Œ¦Žy­œö¼M¢ñoæ-XÖ´êï»ÏŠD y}s£¿¡éÕ óÌÒ—ÛLÕnÞDã¿Ð8±¹uq×óñã2,é¯]Ð^ïGôžE@ö7´ú»:Ø¿p—¶^£õæ6kãéKÙƒ4þ–ìíïhï\<Ô-#·ç;5v`Nןê'¿åNC¤µÛØB z¯’ÑÄéŽSà3̶ùâˆ@*ùWÊn’„ Í(ZÔcéÊp_H-ZóŸ…&yA”ÉÊ°pÕ0u„F«Ó"£ŒÑ1ÃM±qñ#Ì–kb’-9%5-ÝîÈÈÌrº²sܹy#GåSPXä)öúÆ–”Ž?abÙ¤ÉåS¦N«˜^9c欪êšÙs›ûx­¿nûŽ]}ûß9z⽓ïŸ:}ö܃ç?¼pñ£/_úäʧׯÝø|^ϲ'ŸÁºãkVt®íÆÎ#xxêź•/ãÌÕÍ]«Ñ¬ÚØtóµm‡,Y¸¨½£µí3|±Ëç?4¯¯olÙúú–7vï}sßžñvÿ€D›Ÿ£º!¨Eྠ+EECqáÑ!æg]l£0ÅœoIHˆ +E³U„¤³þGéÃÅ€ì%v˜ævˆÝ ~H§@§(ƒ +(†p¨ˆ³jDE-tÐÓ®HDÁˆhÄ`8LˆEâ1‚¬Z+q! 6$#©HC:ìp ™È‚.d#nä"#1 +ù1(@!ŠàA1¼ða,JPŠq ˜ˆ2LÂd”c +¦b*0•˜™˜…*T£³1a.G-ü¨ÃMtažÄr<…§ñ EhVbVãY¬¡0öЉ¼€^¬Å‹X +êKx± ¯àUlÆkØ‚­Ø†íØØ…ÝèÃëx{°obÞÂ~¼8ˆCx‡qú1€£8†wqïáNâÞÇiœÁY|€sÄy\À‡¸ˆðK|ŒK¸ŒOð)®à3\Å5\Ç |Ž_á×ø °ä‘ÿ’_`1–}bÑ}I+ÚPOm;:ÐHí<4ÿ¸ºé¿hhyH2O ë©÷ÿö\FlÓC¼˜H 8‡þHÿæ<~ŽpIøN4Š#¸Tfej†;ø¿Ç—´ç:é»H6N“åc„j?!í#ô[è47Ð ÷Щw–’‡í½&âÇ\âÌLâQ9q«”l ÝÄÐTb­E®“ Š»ÄdÑ(üMøR„½Â&aƒ°\p +q‚‚¿Àçømü~%_Åy5Æs\€äz¸Õ\7×ÉÕp©œ†]eÙY¶íbÉLÄÌdt_ù?ðná›<¸ò€ùð“?áy9avÃ≊4èuZM„z˜*HnS.𙃠{K$Þço©[ëuØKÌoõ0Nô-ñY}½Vš«7Z +úJÚ¢KZ$ßÂ-›¨ìJ¥&i|uµ$Z½¤‚Y½-gõJª´h‡Ý\Ò<Öa?E—£8tÎK ´"‚­ÙÜÏñ½^«ÄüÞR +˜§²JòÔVí9ì4åÓú®{†Ã~Ña/’ ipÁ ')Ow°ÕËËT ÅtË9a3Os›å 2NÁ§;‘žeÑZ´ÉTÝÜ–¼"%q‹pö®7˜-Ab"G{õžp9kQpYxhcFF–^ž\ÈòróŒ\_}lI™¡õYEwà›Dà Zžø!¨¡gè{¶Ž¸«B´GËë•„‚ m”‰E¦¾ /'7ÛE|”Yl¶ž +§»¼Ü=¢Ð¶<³’ú¶"ÊÓ5Cßò Â1Ê” S·÷| W"¶êòÃÞ + Í©·ÛfßvÖ=·Á3®2è¿›ž;D5eº)&J¯˜\eÓ gŒµë‘ÅÑ¥ee»ãArks’­ 2Š.—§51F¶ËLš”üTEd£'ÿjç´vU´XÁÉ|U܇0š+V:ï^X+ãÊï=qø•-ÊgŠA­TéÊ(¦Š¦˜¹ÇÒcs•ZŠ[cÊÈz"é\lI¼\#²ü *YÎlw!ïÎIÎ`Ö¹š—[)PÙ®xf¤ÀÇj&wQø(¶yÙ²ÈDk‚PžtOGjTEVQ¦)Ñ –èdÞ-Û4/B˜Y8&-ÅÜéҜݗ£q;=#­Ë;pæRÍôœ¤¤˜ai®¢Øí¯´´•œ “ +Rl–N·Â0Ì56æÛÁ§!ʉã‰2}Æ¿™®’Ø6®3<ÿÌp8C—¡8\$Q⾈¢ÄÚHQ´EË’µ/–hK¶d[v#Ë›ìJ±ë¥®Œ:©×ÚIãFIÔ€ 5ŠuR é¡É¡ êš\zhQ=¸ACC÷CÙ(Àß ¾ï}Ëÿ½¼Ÿ!‘õÔì‘«XUUƒ¦Á‚X2:Ï·ëU*ØP9XÔÊ Av¯0žJú~ÄHg*Ë@îAPˆ3D.“S×ѲY¯x“6¢ÞÒlÛc÷EB…R´A¥Åz§Í˜Î: ß·I*DøÌÚл}±ÚȉɥLï‹¿?pÞ{cjò¬MŒ6uµî« é„H©6íߘöZ=FV[üsΙËL·µLäŒr}k«ƒ¤™¦H«F¤MØwóÝ>‚’àth9Ö'kì\„! ¡…´ÈeT +%È -0¦°£ÚjRÉ86¢‰Yq&*H+Ì65!·®T<YÐÓxÕKrhéÕ6µ.ÎµÞ €fÙ&™Ëß–¬2äôBƒ†åó¦lÜÉö²ô§0t£üÙMÂëÌ“¿#¯·P±ƒù¢Ì14+ñB}5öÙ‡#(qfˆ€³YRq𱠒ΰè‚Ï]ÏOè@e—)&Rmf®„­*Žn[·?ŸNeþw"g4¡š‹ ’>o4öT±ìû{Ó]/ÌŸýârûªør+‘öšOÚÁìd°‚9m9¾N¸0-M +ÐFÁoæS Äà¨!%© «¨Á‰ B¥"_«š›cˆ/ŸÙ•V|(òT ›†I¾o¸}$  +tŒö³pÕUsÑ‘â}^»»ß_Û89XÓj3 í‰[b­‡`Øwû¯™¥÷H›=¿ý›•ÓÑò\^ÄT-²[,ní.?tîàÉ„³XpMƒû£¯—\–Ž±ªß¾=BÓ쎫åÇÿ*~Åé8,,bJÖâÝ¢êÊ·Dý=¥Jy…TR-R¼7cQ†‹ßAÇ[ÒÃB°ªË* +δ0ÀýÐYMqLö™Ò  RI’DAëÑ:"OÓ=>#ÛÇpQÒƯ„P…4 4—J‡ÞÙ6}mpjkq¾må“å™Ww»—Ë&¦³Æb[—]êè½²wq¨{×@‰ˆß9û‹í6]j­8:°øÞþîfç®É¾Ó½Ë=’ýð†ö°#ðݾҿmWwûh3I‚w'ªÎ‹9o¦@Ç`¢4¦ì8´íóé0/PtnÁˆ¢‹J˜¤!8â•de*D;a=ò9"¨€_‘SfÝ44¦§ßqœ§ŠË`±œ6·…fJùa¿jÛTÎü\aŽ× ïϦ¿{tüö7?Ó'!?ØÏOŒŒôª§²’\Œ_¹9»»FWØþ–7Þi—IüÁç~ZþÏ'+ Fi÷ÅÉXiíµ=¾ÒOž›O¾…»LiØg««L: ÅkLŒBš…¢÷Õ¸õêõ’á#õBá»ó´nàÞMº²¾áxrôGéá±DÓðàéôp çNŒÒ/&ãñÄþ_/v–ì—¨¼…æC‰˜BÇQ±U>—ÄèÐÂb<uÕÚmVÙ¤)êüë'£:Ã8‚ u´-‰’«êNúd3¸ÔÑÆú³ƒ1™C_>C‹×)¹­Æh|äΟvmΉ3åùn—#™Îž¸ÞKÖø ÅÉï-¼“¿f¿üî¤çÇc½!o^UdÙ¢Ñg÷>zoÜmµp4YsfϤçÖ_€Ów§àiˆxÇcçØŠ6Q[ò6-½!.£"\ìhÇäg‘âRƒ(Š© +6ØïÍ€Êkò,×"Ї£j‘c6W¬ÐÙY±o*Å« v«‰Ú´ò±X‰Vˆ¥+A«$ªÅ§´‰JB“ñ¤¸OæmÕ§Ç|¯øÔAMàýdá|óè¸(Mõãñë¥Ñ¡[!ç)hÒµºÒ—Ç/¯Ì¾8vlwÖ!†d§¥d¥¡îT½<ËëDÛ±¡ ??1[._š|mA6òü kÏÞ?|Ð]rÎïX`OØI^=ù›JÃ>Â]4²š‘cÞ$OúñX,`SsÒž‚VÚ´_çÂ&^÷xšR,8B©R/ÉpÅ•Ëíõ»˜ˆYTû @·õw9Þü:(¯_¾Ö¿>f3…ï”­•ÿûA öï¾ü«€«e÷•ò:áw·&F~^þÇæ¢K—4ÖuìþðÚìÁ!=\¹Cú1jóeä1@e0ÉÒ²†NĪp»ø`"q—Àà†]„H¼ï‰2DƒÂbM”Ri>äXŽn}F^…º§Ì=#ΊâU† °ÈXÜààÄ×”dô*T­5W æTßêfC‡!òÏ®ÏΖ®ÏêtKÃËß'Ì%çyˆ²ý½ÿé õp©•Õ[ö¸™úŽ˜¤ä°-¼¾}sááÝ£'‚, çªSØ@÷¹PŠ‘–€(Y3û)U¤†ò=¾jÚáɦèÖvZ0‹´ d-íHD™oÀA™ò´š¹<}{l#ÒÅ°”Fd•©Hö “UÐS™¤ O!#}ŠVñÆ`ådO2€@1Èž5ÝJ[ð4ÑØ‹Ã )übýå<.÷å´S Y¹¥«óLW[pçÕÿï®´+­.+iu±%Y·•´–d]lÝ,ëj[àE¾ J 0—œÚÆ$˜LRÈp ×N%¥LÒ’”2¤3¶S: ”Lá­™)ï NÛá%m'étb¹ÿ¿k;ñ£¼ÿùÎùÎwN»ºc~þìÞÔ`·½÷€6pJ;xŠ¨‘d¤ív÷éiñÆ“FÈ:bmÝnß~,vtôÃO%]zÅ"œn–Üõ7Ú$Ëô¤ÃÂõ`×q¯«g´ê¶‰7~t牦ñÆê ê}¤Ó²jKµu9¿*ÁÀB +2þ>ݯ"Ê° *0êT†E¦H9f" `¸:Ä’:ÃSsê‚Õµ+Ö<ÞIŒ’ôBA˜Éš³A¼¶8Ë=)à_ÿ+BYZ<',êý@ÐtûÏíձߴ¿¼Þ|Ø›Çÿ5‡ºžÄÕ /í¼w>”%Õ¥¹æò™Ùý4©?“z´o |U¦-’è=íyY{p~È;ÉÄäÛ#ãÛªbéõ—N\ÓÅt»î]ê©‹Ó;Gœ©­4x)£ÊW“&¤]eµtènó@NƸåXd{dÁ‚Mƒ*—w=Cá¢e±0‚àñܺ!/ —M\ÿækãóÏ7U9„`ϧ$`ŽçˆM¥^Kƒ¦ÂHc%\Û‰5ªZý¯ú ô¢–j_uëh6IŒeRÄ„ÔK(¯äpÑNXðèQÆÏzY˳–ÃôØy¢8̤(¤ÅÀÑH‘§ÆªkÃ:«NÉ.SQþðEAOWtiù†œYi¼9‹¼—œU>0½kGy+§Ed†`†%éËÿTϤÊVÖ@AÒa™?|wäÙçéÅJ¬–öÔÎ_¨‰e«ƒ´”§üzf´`{úÉárúÄÄ­"Ëòæ>Ú¯¹Rã?’¬†‹ïtƒ{Ûoù}èæ´uí+Ó¿¸ëÊÂt€‘G+ל9‰$%6]# íãí¾Zä' yr%ðŽÓAJ¨êÉÌ’u4ÇÚõ†>J†ŒÅ°t¯ƒeèPÕ ŽË˜c3aY|d<ÇÌ»ã**Œ`1G£á *Ã[«¶²j9ľ}›”È&G$t”Ÿñ9‚Ê =Dàµ2E£›×u—ôÙçyk‹w÷m>9WmžkµâaFK±¾ƒgýÅm‰p‘…´«¯Äïü™duþξm“c*M’Îþý›'o/9L&“MÇ\(ìÌ{˜m­-ë¢×t„Ý€ð7UÃÕ~7ÂjL[‘²¹%1’ŠañØ0Ú èbb „,oÁ×ÏS#}Ð +ô`qHƒbòØf|Ž×@;AR»| w•ÅØ58 àè×€êGJXŨå•U²¯xÕ °×&Ñ‘ïŠÓ÷¥R8VŒo[FãOŽæóiºóƒçoþé*¾+N4:¶“̦Ùú+v“Çï_Í%Ǿ'ùEáÒÙí’ËßÅœ¯ì±|žpfT¨Ïÿh¤õ1žÄÚ‘»H#1tó nÀÆn&èL’gmtàYƒ¼J^_ôJõ%ý… Ñ£$—hÒ§¸`8°Q·l>oÝ@ÅZ¬êo<ìmTÍäÌ´QO‰þ¼&îš$!÷s‰äÊÍ™O+A.^$*e¯•ªn5ÔŒø|²_\Ò›ŒeîëÏŠ=&ˆ¨„ªC«_G‰ ”à3ªhÕèâ´*ÊÕZ´“„YÆÍ©àëÉNr²cW*èF©×"3ö8ʇR¦F óÁœ¢WZ^§Î¦<fîd´Zí. —Á@û1y£gdì0?̤ê±P·½Îˆ›·&ÆÏú}:!>67»ƒFgŠ·ž™›üœëˆtû†Û»ó±Ñ:.¹â]ÆÜ@~ûHN0P‹oõñÊ®âP’¨&E›IMZ’ZÁà`¬LêÓŸ†ËY Bˆ–€ +q¸ÜjXZÏ^28N–•"FcÁ†„m8Ê”H†¨)(± é |Ÿˆ¾¡WxSn \8¨[§(Š¼… äÁ(P#)P0ŒÂE)Ýsg(%yE=èÜsÎþï×n¾ûÁ±j£8se|îò\uÖ߹͘-ž<„žD–^Ùh3žÎe{®§>5ø»ã7N”g»7:S¹“Wü|µë}ä˜\’–Ä(€P@V¡§€·O`5jK û½Åà ÊCax!˜ZóêÝ*”îBýÛ‰ù,Æ"šÐ£LQ&X8÷ÿÎa›-BÛz!½r"Ù‡Ã^_óú…8í»2Ü7–æZ}T' éôŽTÎ^ûþ„'dÿ m r‘Û¾e-½Úi.›È:MPÄT'B=}  âqTš·êÈò˜¹‚%4Ѥ x²œÓ2(;æBj5œ€åÌ¢f>£AKY¦Ú;‡ì‚•z9jT’—!è’A§¦IõÆTÞ¤&ç»K +CSÉ1šW>àMÌä5~Åàåi +Ö!„ç&³þÃìmÎ⃨ƒ]>“« Pˆ’÷\¾D]@ì¸ßn–ûN§ñÿ9wñǣ܆^ýôG½½íïSÇÞòrýq×äßN׆O½I9JÏ=šlxké‰iÍäs5Gñf~9-Þ¡ Ù”Ëm¶T­Ž#c‡ë?k0ëÑäb}_%ÅëÌA:³'(îšÝëš< ïûáÒH P¦l«SÎL«pv’ŸZýêÑ®%1<¸h·¹¾'Nœ°õxg*ô?‰~"BÄ%¿Û‚„è>^”Ö†ôiáz4ôŠÃ¾•·T-/‰ÌÄYlïù®`»¬¾' ^«µYËp–È`/ýá¼Ê˜­Lom!ÿt&Ý –}þr ¡ËÔÑÏc¶fÒ7®vKy+8ßbf¦•ö„ÃV§½“FO NƒÒ€Ž%ûÓoöájË„†£îa,BfâŒjjÅæR©PXñ>Ì)ánZ ‹0dÁÔ n­ö»Î÷#c|zþæB¯1ö\ý™£èg“ƒÓÁ¡€§ꤋô¾ó‹äÖž¤Q5ªóº¸ÿš¿ñÎkqµ˜nÉ¥†¤® +ë Â~Â/õwûhä´q¤°úE 槢µ„,5 + +Ã1äÛ=l…FmZo%r÷]; jÞÚj Ê’¦æ$W]È3“×¾ºmÐÊÿT§A5@1‡¦† !z¥ «šCjûŒgŽ¶(ßCM}¬úuQBÜ?  O2a˜¤­y¼JàÉuq7R7.ÖzÆ ¦f èè×! +.¶’ÿ p^–ŒUÀ?¬òà¤dÿÅð=W”ÂLÊw.ÔM…¤€ ñÚï_ïÝòÓ¥c[öZtŽ¯Ç´B*VÛ\¹E“§KîoÞ~£žOMŽ…¢>7µ}¾N²q]‹é*N‘Û<ïä,/¼ÌuÞŸ,u® ä-„ª3U4vÕIÏwÖ÷ŽÀ¯p‘â%´÷§ºÝieb\};?ÐUèd˜‘&ŒˆÓë¨XÀš´Y/)†|T>@* %iü+4ÒÄöà6Š¦*’–!zÑáUrãRÀåR7FwNëö¼•¶a&–o)ìt [ˆfçÄ6K)>Ö¿øðÊý㟓%íÇçØ,wæúÙ)áw°î§:qšÖMbL*x`Y+éÚYœ©LX¥ácÌMæf=˜#TPsÒA +zÒŽÖ pâÈvŘETÐR7òÉé o°ÒkE{²E“J¦Ã¾-viEI³èWæô4ûå.Èm¦€ÛèLL߸cÓ–gÚ…úZ+~ux±R ÆÛÎ…¬´8è-LFf:uÑ ‘wT³ÆsÔ±¤»¦ÏññVLŠ‰G^ª~öF©aãl·bK—ª¥•‰h¿yÞ\…7ï’äF^4ò±ŒÖb ³>ƒÔ­F âg¬RŒ_C2`è>/¹F•­¥¬0­üˆÁËqþâ!±ÀÕþš¼òاä5„˜4&ìòj?61üzêc^Š8:t[Üò4ÄSñÑá^O.òv¾0~òR;èüµœeÌÞÝÉ#ÕƒŸ]áX5I6T`½ÖñäÞ;üÌĉtèy+_­š~Ñù×et1–¡í—J×W¶™åsêððiĆúIƈì²ìúûxÖ õ£(Š,(’ àk*€à‚4`ŽXck=ç6.D£ßp¦m‘áDü"ï玤ZRªÇ[ñ~rÁa.•‡ü.›Ó5ÝgÜß¾{µÑ38Š^Û®ñEým~OÉ£ý¯¾Ö¬uL¤ òSO¿$ÿ Ê)’TÈD|‚ÙH#m@øáò}¬J[@ e„È°Ïír¼Ù¨£aœO‡d! öZ·É² d…Ñ7Y#ÌËMÆP8·1¬·y¦B{3n—wæ%O±¨÷ÞYÛ“³ßë8˜ }L§AYPG9 (»Ÿ‚.#ÚïDI†±fVÅüŸýªmªŠâç¾Ïî­¬]׎®]·~¬¬ÛXi»­ÊGWX™–YØ‹™ aº”¬B…iü˜hCˆ1 £„øbУF&~DÆ(jÿ0h”hõw_?£Ñÿôm§ï¼ûî9ïœó;çÞs›˜§¶b^³e„ *¶xxQT1›,\]«:¡sæô¨¯ A½âCF?ÃWã2ÿÌj˜9•”7,µSxg`pÕ¼‚œçkÍßSg5E2¹QO“ÖjÝùŠYòw{n]1MMÖÛç<ÂV¥æÛ{ÕÚj¾©§t´ÿ’Uý,œI=èzò_¼ ÅϬøß‹'ÅÅèÈBI—ݯyµ­R£Š—Ýj–/ +ðӡшñ«Ý+Ϙæ8l:~CžèUÁ•ÚrÀUEPÙ“‰Ëì-ñƒ‘—:|ÈËëÃÉšæÊ{|C!m©^^‘îec‡ÚÄ©7(µ>ýòâáGbë"Õm½’Ô«5¶í/}qʨ[ñdŒ:’ÁH»C¬é`á +‡[Co^Ñh¬w9ª-X¢+Âs;Ϙ‹^å ‹`]3zm½Baî"±‹›®¢-CŠó_£UQUÔ´=Ö»)8Ún [w_Ñž:Çïên ¨OW7yÜKW†o ´ø,µÁú«ëÓ¾‡'ã¦tÓ‡æ¾ÓiN9¼þ‹Ç5.Y”nê­³?ý<Ù¨”ä”$±ðãKbÜ“D©MœF´ãÔ•lújÄ yíbÕ9ÍÅ;a ]WDõy\u³íMaTyQ( +—ºÊ.!ËgGõ¤FÊ°ôru3¾ ¾­0ýäÐÙ9êp¦‚ΊH_ÈWúÈ9gñ Ò=ßúÀg{2‘ßÐYewš]sK_÷Ú¶´ßb;íõIêò\Nx.ݱ±¹ÍóKv÷BO}5‡FL•¶ü°ë±‚s—ŸAhPÏ¢žd·GLî +»U°03ÅmšÃäÃÉɃR¤ _W½§Ãj©ÒT¦­ôÑLŽ+ê"fëì*èÒB>ñmž#Åh¨)àOlŽfï*tXªT–6}SÜüÁ¶“[l}wtûJZTLb¦ôÝÄ; ïîeÚyV5–´~g2õÜ_zö É¡­\æ¹Þ'ºõ %Ÿž¼ìRË‚¯I4Ño¯Ò\u«’Æ<…f$äÆ’ƒH=Bôý¤ºµ…³®·•³†D7D¾¥ãÂ8åÙ4*|ˆŽ)&šd}”ÇøN!…ñÙT™‚¹>a'ÅÙ34%¼H>ÌÂ=.> +]×PÏq܇ñ<*ây@ÜNìc:ª“û°ø@¿cõÚ£¼Hå]”‘öѨ¥¢ü* Il­ŒBƒ~ìÝE9i˜òª ïNéïóRA¿ä>ô¬ º]zöß ûUÏ¥”ô ÆOSB: ãtº¹‘r‚‰¹Å(ºG~ +öLëXçç,Ç1kÆS°Ÿë^Í}†ü¾›‡½Yøžáz¡ïZîbZÔå÷á=°æ1—ŽSÎÀrˆã©cØ €§º2˜«ãvŠ†8–|îÙXò»Ž'ò€ãÈqC ³C]æ «›à7H¾’²Ê—øÎÆ£4ª®¦ð“c©ûÆ}Ýû‚”â1ƒ|J\C{x|tâ6¢·„ýYÇ’O#¸l±Z­c8¥ÏPR”Sr๯¯"·_]C“°­¬Ç=SZçÿÚaЛebà±"ðP9kGDîC&Þ‰:ŸCdr‚>#ªücÒZ‰*“ DÙü.ѬÏÊT5]&˶_’õÄÏTmíC¢š/ˆìþ}rl&ªEåÌÆ2sÉù,QÝ-D®oÊäÞOTßgÐ1¢TTÆ÷yo#òAÞßA€púš0l7è[¢ÐkDÍ;þ§ÿñ-ìmÚD’^k™±Ö‚;M[1ÆßšiïÌFWMF7@"Õà©ÌKà› ^ßeð*(ƒ™LªçŸá…h½Á TE» ^Äøƒ—ÀŸ0xü´ÁC'³õlImZ7æÝ8±¶PðF‰È`nEæÂL¸dýÈUcò©üú5mˆzh ¥àÿ:#/m¤ ZKüy)‚ÓX¿ƒ”£°ýBP˜úi¶ÐU˜¿òÍãy 欥ˡ‡¿›ø‹2ÿæ,± Ð×aÖï\I—¹[Š9:fÙ¤î¢uV ¨ä[׋ÅbjV„î8*.¸Ùÿ$Àl%É +endstream +endobj +1302 0 obj +<< +/BaseFont /KQASQJ+Wingdings-Regular +/CIDSystemInfo 1743 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1744 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1303 0 obj +<< +/Filter /FlateDecode +/Length 649 +/Subtype /Type1C +>> +stream +H‰|POHqžigvÖ\Ö¿c¶[î©hý³«&¨‚» d¨K›EEÚèüÖrgdf2=H£¬E£‚F$Aô"a aIAT^*¢CtQÂ."¼ÑßÍl—N½ÃÇû¾÷½Ç£)fEÓ´7½ØÚ.oR%AŒªJeXé#Š,Ún‰é£ÍBÆ<äæIßëÜ;Ûø÷v÷x>µ¦¿nD”~k¶7¡£ê††š +k3XWjªªª2X‹šD¥£Ø¦ã¤†NÉ=ŠÚ¯¨‚ŽÅ jêëC™ ©XÃê€-þ½IÂ’žÀ*,³W²æU,"]DœÔ«H±hü?«$#+ uÈ’Íbº%jHÅ•¢d¶ô(×d]•° 5ÇÎõcTD§¬Ê¡ò¨Š§XësT•¤^R¿éÓP›Z1·Vh ¬8RŒ9ºM:aœ¼æI#> +stream +H‰|PqLw¾£öª‚ÝlwÈzzw†‰:PD…Éܘ"Zq“EFiO( +m)HPA£rÅ0¥+Ê€áˆC«CAˆ)Á¡N%ÊDÉÔ9§µ c1Ë;üñÇ®,Kö×ò’/ï{/ïû^>›äƒá8þnrrü§1I Öï0é5º$“qá&.£À 1y—Œ@áBÀ$a¦‰– Û›7o¤ðã[ðhzÇL©Lùàø/ÏÖóÄÛŒL »$224Ø‹á̆.^¼xÃÙ1cÕ;Ì.ÇÌÆåj¦<£Icát!lŒÁÀNH˜YgæLVïðŸX½™åô–LÎÄjÄe†^¼7q:ÖbÒè¸)›5z7ÿ¡ÛÿÇŠÕç²¢›œ«÷2µEšYM®n‘¨bœpÑ r-&=gY«Þ¼#c—³:n;†ábas0ìC‹Å°u¶^‚%cØç6ML[%bßâ8?ôQøÌñ©÷–Ì•è%_gVt /»qßë–TLÊÇ’ÆË °¡+$Š†/¥0B ]$ÁKÆkdãDêDÑHä„ÐCz;äer9ÌØ7 œ¿…ß}"ø>•Ü­"÷wö”_§`Ækg_ÓwÝ9 >*À3ïoè¥{“BO éTl¾½[˜'ñä¡oœÕ]$ ¡°ƒ ZˆõÙ•Õ´|Ké,+T\ù Åih+K„Hÿ}§øöÄÉ^fŒ¢y‰‹óµtÃFi“󂣋zU»FË”ÉІÊÀx4E¥t}Üûû­g[ m#”%5‰Ò]A*]{ø²ò=túN­6JåZ.?üØ ž‘;K8«5Ù…ŠÁ'pÆ£,9þJWõ©ˆ?s)o€ p7Ä00·rÙÈŠRg&.‡?-Òø>‹~ +NÒa³W¡ûë/µ_¥žw/ŸQºdóêEñŸu\+¦ù#|m­J®/û VõA`ÞöjK„t°’•‡«õª! 0(Í^Šd( ͇ù÷.u´Ò%}ÒY\iö |y¦²¼Vsöáõª9\}‘£­BQៀ+®>ߣ¥þBQØx‘L9Ú9Af[̆œ&sëé¦æï2­Öæ,ZŽz­c)…ø G2èïK #ä Ž„•wJÅ(Üãƒ[ùë ¿ºˆºªºC_ÑŽs½T¿SÍ ón葵­¶ÓçëÎ~ßMÝvªCÔâ†6¬ +îˆß–½» —.,)²–äMæ‰ËÖ­ç⨕©iÛò˜rBé:p_MØ´•é[UòÑvÅ ×Ö¥å=ñèôzV×Ò®º®ö+Ôo'ÖE1è¤:d°"ðÜÚ•êÔmfš'”]ûH£þÕq”Þ¦ÞÄÛ†à°Z…½$RÍFËÐÂÑ0¦ÀÛ÷ᘷp1 G¾nŒDxªˆ¥‰þzÖõⵘdZÙ€~|Ä-^’hòêµ?£c²M‡ÓŽçÓæÆS»Ú)gË¡šcÌ›ÒòÒâr •Rì¼Ê€ýHŒLÎV À‹Ûx½0KRï/Ì@gªˆ¦ã Í -`g@e¯t\úÔñDA~¡ÅšŒ¨-@¾Û.Ù!Än·7Û ´Ý~Ï.£Ó¿ð›RáçÛ?Õãë©ö›™ï'É¿(n\ +endstream +endobj +1305 0 obj +<< +/Filter /FlateDecode +/Length 2464 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜î‘ÕѵӈÓØÝ.(– `DTŒ$ø€Q_ƒ¢(Ž +30#’A@fVŠòᬎ %J…>0Xš]×D×MJ˘u×lª6µ9M®©Ú;¸[»¿RÝ}ëž{Oß9ß=ç’„·A’䔕Ë4«×lÖäõ©ië†9Ëö¥îÚëÙ%Ž”oÉ<‹"Q¥¿|úÏEr¸9~ü툿Oìd‹$Ÿ|·ÜÍØ+Î[¼øÝÏ>6. ß ÃÅè4ÃN¨Í7åê2M⪬]c¶Á˜š«K›+FïÛ'ŽA˜D£Î¤3š=‹oõ&Q§ÏÝ­3Š©x3Cÿ7êÒÄ\cjš.3Õ¸W4xvþÏLÿ*QŸ%b,qS–Þcisñ¢ILÍJ Å(†1–]†¼¬\£^gš£ÏÏÖ‰‹Ä4]:Aø!&K3b6AÌ!ˆ0’˜OËHb%I¨ b5Ah¼ ­7‘DþX]BC¬'ŒÄ§¤F®&Èy¥zõË"e]Þ³¼­rF¾L¾Yþ˜ +¦ŒÔ·ô"úýL±P‘§è(²_—^_'ñx]f÷–ÊF׿)£ ÝdQTËá¯Q? ãMý†J›CÂ6%õ±žòXJ4¢D4ਠ(‘|ÙûÏO€D±E~³²3f*”w]f˜ Sá°$ C”L2ùÂÌ?ÂÔåÌø}ã'G +èD3iäí¬Ã9äé«—]W¦VR¶me;vª7­„ä¥àÉaX¥/®dK;ozÎx¹ù'áÞ¾0M“’¾‰¾Á÷ª#]ˆå–D:¸A€UèÖYÓàlá€x¬ASPÈ‚ÕhœSøø€ÝyPP¢T—y4ÂâÁ– F°¿DÀªÑZÙh‡`©ù?ë¾R£cR3ZE)!Û +Ò\ /€:@+“ä£Ñ,Ú‰X†¶¢u@£y ƒ4ð2A¼`ÊÊPû¼o>R  [#ÂÃãÃd˜4ð—g‚ò;¬”ûÆ€?æ‹…0ˆÁœx’O•­/oà^>q¹„Ë]§nßW=Øw{ÛþbrLÃl.pEiq¢±h2N±ÑyŽ»AŸ°a{ÆŠý;E‚ò' |XXSÇ€ç‚ú-ð‘jðÌÈF¡yQÖZ‹4TáÙ¼ïÍÜ4õ¤4)*éþ¦»·¿QÝ3]ÛÑÁwm>ÈÍ‹*-Þê!›8Fv»]ÞaتJHÓÇòÉ”òFÌ’!ˆì…5à Ywkézb~ÊAÂË€âUüšpEˆhÏ8~AÕÚÚ„¾Œ»ê®ÜIÅw ìïã€ï#@°sÁßÑ8..Ñ”nlàBê77(æõ¶8Û^â ƒ­và‡ï<Òz¶“»}.A-0î¥ú]›3 çÛJøòªòš•‡6ùá +/„iÞ6,k8¨·ä3šÈ¢*Ý–—R¿‰CŠß… Å…þmPC·NvðNLW¥–C8eë° ßQI7hÆÃ8ÀZË?¶ñ{J 9\Bz÷£‘sŸÝî:—¥¯Åö╲¥üî€òÏàC¶ÁR‚H™TkØŠc•g[UÀÅÂ84­ŠFAˆFa߇@ôÏ«Nßâsa¼ü£íÛ%sqO^*Åy+Ù¶ +—»ŸªÛb”Ϧ=†)Pœõm63q6O¥©’•e^—n‘ۨÖqhbP +Eσa¼ûJCW«àÌ£ÞOؽF«mjÈäõÈ_nê}PxŸûòQݵ!áV_ÃÓç*pÑÌÓ'ΞŠViÐIÖj/(+â³KMy{¸„ÌO?˜×?¹ÜÓqʼ»šw”8âT]fÉjùÞ'ñ‘ÊÀê+Y±DVúÛÑm¬6##1©S78t±ëšà.ß}QËa÷ÑD˘ï /¨G‘ß¿àChõÔÅr‡?\”n챜bžB'}Ì^÷û£|CÕ‰Ó\wCF¼€\Øé]먯¬åOU76µpÝ»× +¨¯÷Ðà¿ö«é{²J +|NažÅbTØ(·9±%Ž[¸#É”/¦wÉ9 +¦œ)ΫUÊ8‚Ÿa†õme2XÓ«žø(æ+h§ëÇ+kø¦êúÓ\Oóžvµ‡…Óæ¨uÖðÝ5OösMÇmeuSKiÆQQXb/àRãŒäxä=SúBŽæRÎÎä¥*åú"˜M0‘¼ \„hYëiÖréÎG÷9yøÅ+¡üé×g·+64ÔÖ«š«Ûº{ ¬§øPÊOìÝT·–Cì¢ÿ–¦|WІ€ï ™ª¦5WJUÖ4¥ÆyÏŸ“/Ç÷[¸ñ»ÚoÁ²lß%„n|w.¸ñ㉨ºßo‰¿ØfG­Ì•+\º½ò€ôÎÍ'-Þð]–½³±¶³B:¡vñ1ùK¨~W`ç{Üð]õ7+(I ¯Ðó?630 +ïø½½±«©½E®¢¥ª$S:±lí)ùï3{Å+vùÎôxÛžesåúÙ„+&{±~×gëÜÚyø¢ß–îïÖ¿ÕÀ¦Nþ±Z¸`2ÐÀïÎX¿{²}wÿÑÀú;-êw*«ð†Æ¤ÖŒÖdŽ¶ÖM-7…}O•à+îþ®ü=ù»ãâÞÌ‹Å~x‹´ì^¶U+–¯Y±˜ST$¾ý1ú­ô=´ƒ=7§¤(7ã·Ðo] ¾úé?¦W›>}úâél¿Ó¦Ÿ™Îª˜þ],ĺ1SnAR<g7÷w ®ïÜßy¦Ïâáù¾CäÇ$Q€·©â +endstream +endobj +1306 0 obj +<< +/Filter /FlateDecode +/Length 528 +/Subtype /Type1C +>> +stream +H‰bd`ab`ddswõ ó Òö­,ÊLL (Ê×uÊÏIÉÈÿfü!ÂòC†Gô·ùï>–¿ +Y¿æÿ~JðèeB LŒŒ·ž;ç5¦g”(ZZé€H0i®£`d``&MSò“R‚+‹KRs‹<ó’ó‹ +ò‹KRSôsrÀF+¥§•!ÎQÈ,VHÍ,ÉH-RHJ¦gõ¥¦(”%¦¤æ&e+äƒd¸ix¬RÈÌSš¥š— â—‹óRô¦äƒmIÎ/Í+)ÊL-ÖÓw ©,HU°PHIMcF-FF¿À½Wttïýñf/#TÙËÜÍò£ãgÀŸ¶ï}¿Šþ¶û>™õû ¶ß +¿ˆ~qþLbÿÃf·û ä³ýØ/ +býñø¾ÇñýØßðç»ÇwÆïÊßy„¾_ý®÷[滑ð‹ëD‹7^*½/ýÝòÃýïì|ŽÙΔïeþp{ù¦ƒ¤žØ]ù-on[\”"·ê7ëìe‡>½:/%Ä«"¢K>à7ãI6áçNçyG%§Úøú.Y Ï÷}ゲŸfåŒg¿ë2Ÿýi&ú×ì»îO3v¾úé?j§ל>}úâél¿Ó¦_˜Îª˜þ],ĺ1SnAR<g7÷w®ï:ܧÎàá0Ö@õ" +endstream +endobj +1307 0 obj +[1302 0 R] +endobj +1308 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1309 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +1310 0 obj +[1302 0 R] +endobj +1311 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1312 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1314 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1315 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/F/a/b/e/one/r/space/two/u/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1745 0 R +/FontName /QOMYWX+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1316 0 obj +<< +/Filter /FlateDecode +/Length 280 +>> +stream +H‰\‘ÏjÄ Æï>Åw‹I¶›° ²¥Cÿдè$#Æòö5l¡‚úsæûdù­yjŒöÀßÝ,[ô0h£.óê$B£6,/@ié÷S\åÔYÆÉÜn‹Ç©1ÃÌ„þAÉÅ» jîñÈø›Sè´áðukÀÛÕÚœÐxÈ ®Aá@½töµ›x´Eyí·yþŸ›E(â9OÅÈYáb;‰®3#2‘ѨA<Ó¨õ/Ÿï¶~ßc¢â,£‰sâsä> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1319 0 obj +<< +/Filter /FlateDecode +/Length 13264 +/Length1 20575 +>> +stream +H‰œVkTT×þö}ÌÀ¨À +’;Œ€03O‘‡2ÞÄo‘AE†—ƒ‚  B|ÅWMДԤÖZ£$16i¬^­Öjbb£bcjÒÆ´IšµZÛµŒMšÕZºgÔ®Ö®üéÝ\Î9ûœ³ïþÎù¾s` ƒˆ’âr{JHRV2{®ó[Yßên¿žýñ €R9­~u—²©qý@׾uMíK[ãn@ÿ·?\ÚÒÓôòªé€ÿi £ÖÓèn¨û|Î`ÆxŽ7ÅÃÿô‘Ü.áöDOkW÷®š{¸ÝÅ1÷µ´Õ»QL<¶0ˆÛý­îîváEWV¸[7œ ZÀí+ü½Yím]#dÎ¥$ÂÛßÞÑØ.gAá0ã± Oa„D2R%S9¹©™ºi=Gšp^¸.Š¢¿hÕèÛJ’’¬d)¯˜bb"n%Œx÷OâY(ˆ&ñÜ2ª%on?õÍ…o®#º_ á¹™÷çê|sÿß' wù‹çémº@Ù.ÓzÏgïÓ5Ÿ]÷Ù'Â.á"Ûå{&Æ0 $ÈÐAÏìñ‡£0š5€@Áˆ`„0SÆbÂŽ^™HDa¢ñã4!fLD,ó5“€DX`… “aG’‘‚T¤!S©Èä<³‘ƒi˜Ž\æè ¨p"ù(àM(Ä,ÌÆÌÅ<¡%(EÊQù¨ÄTÁ…j,Ä",F – nÔ¡ hÇJt “O‚MØŒ-ØŠmø¶ãq<^ìÀNÞ‘o£÷ô;Ø…§ñ ¾‹ÝøöàûØ‹`žÅ~@?žÃóxñ"á‡x /ãGx‡ñcÁQh8†ãø Nà§x'q +?Ãiügp¯áxxçð&ÞÂyüoã\À»¸ˆK¸ŒA\Á¯ð®â}ü×ð>Äoð[|Ä'ÖÇø~Oð)>Ã×ø¾ÀMŠ¡ Œ¨ ÑŠõd¥xÆÖļ¿…¯ð%–c-m õlÑFÚF›im%™@"†i!UÒ"Z@‹©ŠjÈEK¨šJi.³q³¹ˆ*¨˜æS ’Æ?52S›˜éK©Ž[ÏŒo E‘™¢)‚B)Œ‚©–Q;-§•ÔBÔJ´‚¦ÑTšN™”KYä lšA9dcî[(Žf’J…ä¤Y”G³)ŸæP¥‘2(…Ò)‰¦P2zð(³Ðk]X…F.Wc –rÙŒeè¾ßça~>l-ì_ ¸‰uØK½´ ¤ê¢´¢Gií¤-¸Aki5=É«³•ÖÑŸmÅŸyÍX÷Ø6üÅçñŽç—µ cU1SËÐ2tfh`ä> ‰òù°<(_¥Aêç þÀûw‰÷ú³ä³çyfÔ>æZsoóp;sr ós#Öc-c^ÃX;™·m¼»Ë]ó¸Ž9]Ãü®f®W2ïËXE¬‡Ù¬։ʪ™Æ +Ê`E¥²ºì¬¸xV ÉúAÝ2ù¦¼[–îJy’*ùI:I ÞÅwÄ~q¯¸M\/®;ÅTÑ.&ç€pPØ/l ÕB‘  +ÙB¦`Ì‚Nè] ƒ´Ÿo=´›ú˜]TëÃù3Ø‹ôsþ óÿkáë‹û0ëå%Fñïcmía=ͪ{xî­Àü^Ô^Ìe>´…ŒÓ‹Ï“cÜØÐ`cP`À˜Ñ£ þ~z,‰Ázœ•áTzëzÍjS¥Íz<pVtk°T…eº|EŽ¯Ð ‰.œA¹lV ÿiB¢ÍzïÕi0«ÇHŒU•ÅãnÐÄX.MršÝJÃ1‡£·¢ÊÄÏ1˜¢\%UÞŠ«x4}l¾[Ci•)R“S]‘îWy•Ùn¾i7ßào[¾9º»áGʱjîÿ™œ{Ûç2‡eÚ¬ ›of§âM²7_îæÚ¼ZÕfÍW4Ѭ'Av®vš½fîÐ$³®òbåháù͚íøòÖfDrÝ[Õ +"µB—K“Í*‡ ³Ú¬ fUn³*ùž<›õ4_ òÈë*'qÜ(Ã[*Ê1AìU͹Õ^0GE•æ¨uy¿g³r—Óèät“a³N¶Yß²YsµÐDïï ™¬GŒ#²TÐA'•ò¤¤³"wÕt‚ hI†%Éd4ãù%¾®LwUw`’^»£ò +¬.<ò ßXaŽ ò0@~&€#‘'[r''‘>Î@éiã)#Lg ±A‚'n÷¥†Æ‹»ã:úr†;-øäZòæI>!Ö¦÷ >|éèÐŽ¬rd;G6z#Ã/@OyŒÈ‘CîG‰‡1Í@ñÑâØPA§óÄÑ´œ¾Ž¸¶Ã]S3W.´PPv”R)ª'}áµ[#;w ßúÛUÜÄ}…÷ýöÒJB–×:,Y–­Ã’e£•,KZc[>ð…!КÄv7ƒ¹Œc Ø@ Ãa¨cbŽPCP.´™ %)t&L†´MRR’”I2isLfÒ¡Ó4m'´ +xÝ·’Étª?tÍìþÞ÷¾ï½ïÛ»wðÞ.å5¸N=ÄÝ’‘ÐqÔàñ¶ú$ZI +çY $ ü¢‡³ŽÜŽu5-Ž 镳Û&Î,ñY ãij*óÀUœÞfl#Öçd°_Àl` ÞˆŸn¸ü²ËJª'¿ÐÊ$K WuCZõÊ¡©¯a βŽÊL¤s¢Úv`ö +*´YÓ—ZݾX4^Áä”P]](ÜØ mI õ¡PƒzËSzÆÝ¡)SBO(à +J=™M^Ž­Ð8ÿ$7@î³oÿ§œ{MÍ•eSÐWÙݘ/²)O‘VÍé)¥:Eû1beÐH{Ît¬¤EWÄIÔöÒnŽ˜bq$.Æ¢Äw>¼}²zN. V¾óóÍÛòO¯ïÏ+ÜÐgºÐ‹®tœÿbôMåÄÛuIùêšòKåôEà_|¢/ªº™ºO·²ÃÉJì*#è3­7é€i8ÆØÑMs’<J*Ó^Ùšn²ZrÀ,Û|LŽËñXzÔÃ@÷[GVNóêË«KKkºWolα[”{̆֎•ÚÕ-VÕ“ä«œcl–%ôgU›Õ.º°ŠëØ‘ 5'Av é 82ô  ¢ÿ—5O ±7ÁÉÌÙŠó<.z$“1²R«ÃWXFŽEÕ²¸4ðT€Œ¼©-Ã"!âËœÙd.Ú/ïË›·ª²gkvV™Ö Ûñɺ症Kº—+7AÖN2Ìê±îîî’7ºBÐwãÞªŠ5Í…õOuVoo™»fÿ¢ïŽX«ôk8®Âé¬@4@«O9ÈëeDQDÕ&Êo¿Çl¢s2‰pÓz¢ñbž©ñç˜82ç¦ ÀÓŒŸAÄa]Å +pœ/`8RœTÎH³‰gÒMãqûü>œ1@æ& Lþ›Ÿ>õßZ6øNßÅŽÏ lBùj$z¼lÖYzáèþseKuQƒÍLÛvìÙîæS¢—~¨ 5wþôœ¤Üø|8×<4n>úÌï~øÄžF‹UßC˜K½ÝûÚ"}¨WÙy5âÂŒ[—(×"&y*‡Ë†,kM‚ òfY‰I03ú<‡IGX‘ÅL…@“c*‹ÿ´’#©î!Dd³»äUQ0­¨ +³áu¤|ò+©}Ζv¤)qÊ ?µø•xƒÿ@ÝÎâP&£4C_ˆ¾"k;'¿T>çF…±ÚJ úb ”—©ª²ÉÍÉ2“…Ìü ™‰Q ‰*·˜N;-‚”OB…$Š[‰Êòë8si-«IK‰>IŽ?Ϭ-. +IìQ^9%·0ÐÓìÈ43V•‹¤Sܨó9MBEññ¹Àˆg·þjõ²Þë-Úç©*êtŒÖn<³¨ytÙ#kZ`´soµ·ß*×2ŒVù3óÒ²âÉËß:Ñb·öŒ;&¤Ùmg×öŒ·Í­Ò‡ úýW›´4ÏÓÚ¸Ýת»¥‘ª“äÄY*Jä!`Îa8mj¹«À+èàˆ½X#ŒxY#G’„ë +7["±¨HÉV³æ+è™R—,)±ùàŸ~²ªè%¨~»ùé[£¥6Îo‹<º§£¨~ÇÅóGÆÁC{P²-Ð:v£ç#L£TÜcôn¹ð§awi0³då¡Öî—v7-® +.{þïïT·@;êì>Öî¥Â f1câfì¢Þ¦FëÍ%Á¬¯A]ÐËl"Í‚/µ %uö㲠ţ>QðËX«W6¡§g¾îö¯™ü¸(lÒ* 8¶æ{oõ¿@úý&“ËŒðrM&ÚóʧæxmŸô„=,…êÂZ-O—Ov*ÃÊ›©Í¥ºu9vùe¬ÔÏz2U(í̶h؈WˆÔࣣÆ[“–ì·3›H1á„.Ÿb50ÎH gÇlFîŒ+¾4ÕxUM))Ÿúð¸%ÔQ\N¾Ç3üHö^—¶ÎŒ?þGÄ¥ç»W,8zfßÇ;7\[{zpsÿúÆ×-?spÑ®Æí·Ö_+[7ãÞ^vwõž®ºÖâªv¼?Ð>ѷ㢦Ã+û/=þðæò‰¾áñ¶‘ùK÷C@îhÚì]¸UÕS‘N R>ÝÎNx]µ‡|»…ÃP‡-Ní–ñ¦GòS·ÎéUÐ2?ƒ¥Ç@Dû¢2R(§gǨîäH"¿á’ÿ«Á@еð¶P4yíójN…"sÚ›žô† ;'/ϱ”4W/Œäï/›ï-¡g^{¶òWÂ) +;ö`“î{.w®]˜dr!fѾêoCÅ­Ù>hÕpäºü¿„WkPTçÞïÛsÎrÜÃ^Ù ì½±ìº,» 9,{¸¯ˆŠ`02 QRcÔ±V“†HLÔ‹—T­Zcb,USsiMf¢µ5f¢¦´µ™˜©™ÆÆiò£Ó™¤©à¡ßw΢ÜL™ýs¾ßû<ïû<Ï{àjýè¸kDdì6q܆vÓB '©çªÓPw$â +†NÓë`yQPVàqC?ëBáFJ¸ÐJë䌰>z[fPBêAš%¨(òYØë %-Wj¤xêBo>‚ˆh0˜&ƒ.åH¢¡l¦Uëï™’T­¿¾ÔÐ9îÚ ûMÑ?ôýhùá¦S_Åûo½T´Ùíy®(’w¾lÍÆWš[ÏlIÔÖÖ ¼» {éšóÒKVeº`±ܼ¯yÇA¬?Ò¿Ÿ34pïÕ¢CkØSKyñÂÎeù²ç]#[È’I>çÕI  Ð`b•(àå7A‚6¢®Õ ¥¥ÛN£›rY· —»R,êB݈œÔ‰ôËy“âêÉ–âFþ»G~Í_¹þãÍOnÁ¡Í£Í^®µ±íù¾O÷Õ-?9ºgÝ?“'V†KVžÆãCÀ°|ÙÊ°ãôÖ/kq><ôÅæÝ·‡–UGpgæ¡Î„ˆ7RöA¬Q0W"ÚLÀr‹BuÚ  ³¥¡º;#$!]ˆ¤¤°ø>$¡&, 0?²x/? Ec‚qÁ3 /\ª\R2Pr¨ß_óøïŸi½ÜݘÇ[¸Dø|Ù`ë±yëwUµýê뽃yAѧéÈW;_æ?¹Vèuˆ.tdçGâ*ƒ«ðõ›½oÿëÙÀÈmbU¹P²˜›Ÿ©—šìñÙ° ±|ÈEBS)v^Ȭ½ ƒªóçÁ[)ôj]VÒ:ŽŽ| ©‰€y2Øk ň‡â+®ÝƒK‡a$ h.q^#[†ëE ,̪ÁéèÄÇv<®ø÷ð„ã;­ºjEÝ>ßüʃ]ÉÒ]íeR³¿±º¼­çŒ+]*Z2.—¦g¿5Ä•¯ëÿ̪QªK^›³rÕþG +›Z‘®+´ßJ÷uYÌ*)@Ø*ylîÖÙ2¿êÎg”žÉ]]ßîvo¬{ÊŸ–IÝ9§ÊJß´¤n¨I„QH•2£E’B¯¡W)a¹ –6Tôœxå4”Ñ:cfŒLü˜“ÐÈÿFö™Õ< ¼L!_HmR¸öñ5j²‚R83çý0¿ÁÀÞÞ÷‹Ují8H‘îöšD¿ÒfÄâ ÐOj¶tMFú}¸¤¦yMsÍ +vòYiI¤ùB´øX šé›!8/E@GÛåˆHاj²;É<ŒÝ=n4ɨ^\š ·‡iqÚ§Ì:f]Cà1‰lÞム‹ÓX•¬åÒéŠüð7@Ï7¯|¼Õ—h\¼úÌ{ü7?9ü—׿LË?¸â²K•q‚ë(C>ÿªi¶¥õ,Èz÷SÐðv çØÀÚŠr›û ëøs§fSŠ_ªñ[/YÈ•ÇuØ›²íV9M"rç2I¦š 3!&ÈTFÌé„ÆH×É`59€XÖ“…Vø:a¯Ñg¦`CJ„?ÿŒ¬{œx(îÓ  ÇoÔŽ‚ؽã¨xNžÄ¼ÙÖ÷@î&Þ¾)wjWÙ¹]¸-h7Ú „Ûþü‹a|Dì}lb+Ø:ÀE’ä‹fnño~7A€µ6á Û:L!·"äЮșÄa03Yh,2(NA œ¢‘#8î?wËžÞâãÅL}ù´WJÀØçüFØ…Þã”äràý!MØ´2&&“‘ -½-z•{|6Ñ£Pæ¢kÄ„¹‹LCœž½ øg•ÜPº°Ì žŠi[´ãâÃ5­Ätoû(q2õ°q¨D 9‰^–+)âz`R­62@Ðz TÐ:7ãd CÓ@ã‚΄H=RHA@PLQdÄÁœD$Š}*Sf™JCóÿÞúô®e2«\\x2¢#Ã*¯â‰•/F(Qó‚ÓRé¥É°¢×;ÆnÊV¡×Ï“4påœY+Õú½Nq>j˜J¦ŒI0%L1“Es š ”ÁJÀ€2<"VÒ Š°œ²è)¸`â„$uÌÐNJPmNàLÝMt‡Èä,„áÈúŠ:¤úççOT×(5„-Æh“Zß"Ù\²  EF›“ + öÝfn…={9-ÐȵÙ-eM/­ÁÖi‡@f´vJ­ý¯ï¤Ÿxcti§Õ(æ@! +×û&D¥‘>bƒ ½”4]iÅè9Ç®QÏ!ô8I  ¨Ø Ó:›ÒÈ(9“Æ„rõ +BGûlÐN{Ôd”¤ÁSy ƒ‚å“ËÏŸAxò·…NœÃ;#„7…⛺œê˜G:L _ íÎœŽÆf€–„LìÛÉe&¥g'| +ÕÚ:Föj¼Z14Z? %1m]£,ÈK”h§qrf›†öË,VÜܺ›„ìÖÈ3\©ÕÌv¥ÜÀë$!R FÈWèz¤Äþßž˾¼½÷1¿û[ÎoJTì¼Þßõþ3\ç˜ï-ÐðùU°øwGù û„ßý'òÙ҆ŸßÆü¥cék_÷_¡WSÓy 1•ÌáJ% ’OA#  +‚àUù>5‰q‰óÛHi ·» +$dà®ÔQ°ènü?~"¼ +Ù‰N*³O3x®¢¥yÐ1?þúãõ»;æÌí~³-^š‘H6tÏûåáu¤sdxª>e±’‚©ÐQûô¢Ö—ž,cjuõ=M÷`ôùôý’Räå…V‚Ñת¥Q6›&M#㳘³dlˆ&EÃî –&»C^Ä +—ªNH3"#–ˆv3–׊P,R§È]Ôe˜FZ“õ£ËüÈžð¶hÛzæ±'6<Ê_]Åf™Û‰ã=óWþÍ3k>–>ξÏú7]èd;ÇȘÇýü߯wRe/–¹œ€ñoÐÙ—ÚÔee[TiÄðà?å‡ëšDžGÿÜÑzüÖOïñL6#ž«$U› ŒX™p ŠúE=³0qÖAøÝÕÛÔ}Fï÷»ßk.~;±?¯_ñ3vü" qœÄ„¢,…hhó€ !¥¤„2…ŽBi íBÃJiTªRZöbŠ´¡mjyt]™¦ISÅ&Ö•MÚ´?&Hœ}×NBÓ1K–eù¡ßùós>!>HÅÉwÖÈÕ(ˆy’乚©ÆÿHŽ‹ƒHŠ+@‰œ-PR:9~üS|¦«Ò“kÚ·Oðú:[ŽD::Ç:þ|ño§à3W·;ê°Ûí‡6bÌï7Ö–‹™Mot/~¤vX‹C‰•—&ç÷»é;Y©˜˜DsM9Ü·7ØͼáDïº ¼“Øøm†CU¤¨ºl®šw Iàk«D‚;«Ú$JC Ä' +IŠŒ|ÀÚmåôˆ)ÅËwáBä>‘ÜY ¢@ì¸Ïy}5^Z\Šä‚Ad Ðøèá‘u$+ús­‡–¸Û·¯þúÞûù/=õóFkÐ*n>¿üôÚ çO|Üýæ?_ØxºÇÊ$Ÿ U:̦Üþe©ÎL@4 ¿ýö½ç*íu?XýrvõüWWì0è:nxýó5QïDçÁɾŠŒWRñ¬ßV`¢¨DÂMB ‚x£V4Š37¯8h# ±âR#«Üƒt:%N .Ô +?#·‹&bÁbÛ>–<»| Mjs*·}pú/‡›#/!RÍø?ØS…ŽT™u‚G”D»hŠé÷yyŽŠïRÛ¡XŒ¦1H*™˜~üBðú`b£vÃ0 è[Ö·ôy=Ï´dwþXE½u¯#¿ËQ3¯{eå¾îÍ ,÷à_ôÇ!ë,f긙…£'ŸxwÙ¡«ô›ÁxÔÅ“+þÄ¥qC VXÖg„® Ä`µò¬ ù+$§Õ\bT.LªCî›ê눂S¸p†èoQa4”êãú”.Ç©‚8$¦³*‚?#^æî8•?VeZÃ9ù«b¾š®B¡=]/M¯¶6p’EÄŠÔ‚æ ^Ïú–†Œ&ÿQ¯å×h¼¥)&Fv/pr3¶Ù¾)èLYÀâí#»A±´üéöðè>úŽ×ÌN~Î¥ü¨"3ÇU·©aoC‡.[Ëž¤"”/ks)1 +Æ +ÕÏÊpÐÕ´h±Ý‘?ÐgHW6eQwÿkªt„ hôÓÒ¸ +î[å+²Ò[‹~ûŽßúÍ¡Òåã«:-³ïÙƒŽ4óÙØWÐ|kKƒmeþ«üý%õKóÿ™6]ÛÁ·Á¥®-µ47;æ®hÂŒl¿KÿŠþ¢j©¶lc$Œ[Å1iA LT­dx˜M$ò +ZtEÉFÊ#Ê@‚ˆ‹ÕC +*Éá¸ݱnÒÑÓrÀãÌ©Á‡¨âè&ÆéÍ,­àÐ,“‰T +´\ö"Ç)¸qmç÷šª œµ,ÕÛ¿m÷P‚ wH Ir¹îyÓÜÞÁ¾Óýé–ÄÜpK ¸¤ÑEüžûµeüìzÕÞÆæŽ÷ßÈ¿<Ëa¡™‰8÷v÷@ïK ù¯AeŽú«óý‘hEÆ¿¿ËhØO±ŸUQ-Ùº2©ô ÷[±ëÀl ¾˜Ä®*ÁB” ‚aeX78Jˆd4Ð#TùLŽ$&ͧ“ñ´lør"¨@ ò®åS`,Ôƒ6á B2•ÖcY-öù–8ˆ3½ƒ¹þw["7B‹jFÖ=æ$ á öÍ×ûuç[3›D‡Îÿn+{e¬fc Öwy éõÒa»jÞ¼™¯íïôGAµ-2z&?×Ñ_qtÙðµÜ“²Ÿ&ÇoÓíÈ° +g½ œFð8 s)׃&f4ˆÎc ºïÏ°P,øe ù&Eäp“y)-쌌´”¬ÒxU)Çѱjµ²õIOõÚÇ«f÷½Ô^Õ4UgÖnûý®µ­m+7.ÞקR“;J[ûžåϾ·9!™í †ªg¾ÞûëDµ?Ú’Þ#7åäá$òàCߟŸÍJN„“<¥Ô*‘N„, š D#y•4`âˆÌ< ”ŽÚ©‡9Pl¥^úñáícsC$%˜˜p5ˆÁM·áÝßܤWŠ©žY5>Ô^Ü­¼SÒûéí ~ÒÖV×?wÙYÇ·¾öTݳ1‡žÞ´ôÝÖ2zr¸|E Š[/Þ,óIy/ð†–4{áÒŠ77×úÕ#r™ŸäGI…©æl](Ö +:B@åf | 4±:à,`ŠJÈÍ„@A V‹†~U¥6 'ƒ´‡¯rbøpÔ8#ª 'Sbu&²HŠ,â9¹#ënÝ[ž9ûöÌ'ùß…{^y¢ráwÂå~áéÃõ#_ôJ¹Hkj+½ãÜ)‘ëùáÒÜõwk,ÖÇ÷V›CåÆ9êtxëç—ôI5¦Y¨·Êñûä"{ HS¶€QâÔPÀ¸"*ÍD[ gD•JO˜òR¢ŒJ :=ඌ̔lÄ4"زe¬àQš «PÑ&ˬݤ‰g»š6t¹öƒM5Ž]fº‘¡•£:©uÙ/(uNh›C„Ú¦˜’âMRÀUˆ¤©Q œÎÞ†¥eNs¹‚R°Œ$´‹$­RðfI«†M¡ÓøeðJäˆÚ­åœ0ò_«5¶©ó Ÿï;ÛljcÇñ-±9¾$>vlÇÎÅvœ›OnN !8nšûr!PJ(d´RRJ[(ôBÊ€.‚%tmG™P«ºýèªv-Ú¦UŒ1 M›Øþ¨¶JL“*T¡ +›½çØÎB—Qä(Êû~ïsmð"f!Ø¥{³Ø…+:¤0-ž‹‘©‡4¦×dÏENñ[PL—át¼,1 )b3“Ùž%Y¬§øO ëßÄ„7ÏlihFmžî +ª|ïRòcÔK¿@‰Â#ØLZ.‡€ ±r#+“ÉQ¾™õ®ƒ40/ŸŽ7b€EGwðúŒ˜fïÃKC¦‘A±šÊà‘>Ç›£:ã:®®ã ]ÞX«ÏäZÉïÚf>oléíb.ÏÍãxñq_ºåŸ1¯·• Z|­"‚<à[A~"$xÔmy¬8][êÄv…®P!W™Ô8ß®ÅfäÉâ&ÛwÒ…gp`LHdv­7 }¥N¶Ö£ßHce.~fÃÕу©;îA„7wþ!ù<ú`ÙV÷Ò£/äîÀtãÉ õã×Êï›ýu˜N}ý 2P× aŒY‹S#Sflx^.‡•3?tÂûA°4Ï’9­úï¶{ß3·AáƉa!¡R`µ¯G ò¸´l¼èpOCMˆwÈ9k¶ªóD¼I ZY¬´y5V£¹@«ŽéA]èG V 9hJNÀÜ¥«h*ºN +R.Ä÷±RSå|Wƒ?Dä/¹ÚÎÄûõÚÙÈÌÝ uÓÑqÐy¼´žç@çÍ£i6ÃÃðÙ‡)ío?Í õz'ÜBcÉd`$˜Ë^GWm@Å¥CUŸ¾Vå}tÿ¦Ôà’­K<Ÿš[›æƒhWëþØC$ «zðÖQðdžhFu.'› ï®ôç)iÐ+k§Ip …͹ÂjZ†¬È¬ÆðÖHÊ׸¬|ÿG ºÐCˆc÷«›J]'ªÅÃåZsç¬~Àƒ=T ©oü²ÀöÂJ8s~‹8[ØB€abjVe!èY Î.¡Ý í¢¿Ia, §dnbcsbjü—3Ñgÿóöè{Ï·½zûÅÓ/96>ttÓîöÿÚ2ëpìù‹cg¾{™<ÿ§·û.¾1tsáðW/‰s¨“—©)˜#@4q¡…!q]:O.’¡:‡®aFÁòB‚©xrÈtJÖ–‹ JE,0`Ú*,Ø+Ã,šSŠfÔœ=IE»úY½ËC ÒüÓjD»Îx5|È|´t†sµGv~öÔ³áoª~W*C#É ¼£!%»X}|¸ûø#çæc;cZeê4Åd¯ðÙO«&?}f$Y|ÚV•:0\´ú^E”75.D¶ÿvêÌå@[±VÌßð3RK€”#„óh€“ÐI­ÊtVÍRŠb +Ú‘¢PƒÈ Õf®@ŒÝ~œ¬:Û€ ¼ˆÀ„Ô)•)aÂf-ÒšPšìéÀ"Knð½¼chQ<õúÞÏ*Ãi!khÚøx¯ýhtvwÅ“R§Ñšr’—Nü±vÊÑÕ|r7wÈœYh*­Š?ÂúžØÂô®ß?SÝNd”6›–!À"].–1$i0j$ +ºK°M¡Ó²JV‹ ã¡Òìiȇ$d÷1¬Â sˆMn­od,8Ÿš*òE¹|w,¶‹UvìhjX–èe];ìq¾94’zk¥ædÕºƒ 6ðMB¤¸H­D4GCHâZôp2¢Übµ’”ÛE…FòM^ŽhB~Ǧ¥\žé +€ÕJ1YJtâËH^º˜Xíd ðKCºÆtC¡žúw¶M«ô[š7Žs‰á›ï>sœ¡j^½²}ïï.üóÞ“³**ééëÛÞ]±>G®Öš•Öí}?;QÕ9ïï>ßÔ¡ãö<õÄ|wyõañ¾{ÿ³Ô¢ˆ¨ªôˆÐ*R¡“þ\BÆèÖi’ê©\Ÿ‹ó(j–SxN]÷°ˆKH|“:ŽÈˆ=Á¦7‚¦t ^YxK>ÙbÔ#c~êûòh°¥h³qפJîi?>°Þæ3¼ûÜÆœ©ä¿Ûc¼}§éâT%*ÎKy¿Y¨Ö ¤Øå*€ò™j!ÖÎú‘Æ¡¡Ê<ìC!Hl-ŠùœÃD¯ Âƒ + +Šc¨-{¡¦ CÿeTQ s½CçäõÅòWŽm™ åd Î16,Lwf@už{rÃÁxÍÖ'zPÆÁ’çú&Ã?.G]xIô-'!…ú›‘g‹Y«aU€zZaã,FƒN›/p°²)4ýU@$ìà@eÈ‚eÃ:¸SA+Ò£uÎuÍË;u¦.·êÇ7p¦Üøýýñå_šÌ¦ä—öí°·ûÞÿØ/ÿÐ6Î3Ž?ïÝéN’Ï’bɲeY’eYvUÙ±~ÄÒœØ-Bñ\×'1™0í´©“%mó«.ñ²- Y×6óÖš…QŒñŒ !dc˜P +k+Œ.¬ÁŒ°–ÌäºÐ•ý‘ŽËò¾ïä*²é:ƃH|xž÷½÷ÇóëÞ»{ Þ‡ß!ŠuÔ¬ªI0˜Êƒæ³o`¡úº@m×ãªI2”‹λŒ×܈‰å PVêDîg wã. +I\Ä)€¯D¡—5{W'lnç7k6Õýå‚o—ñjÀ_Í¢_ضzÂæϽ—²³ž˜]0fŸ+ZÍIBi‚õ¼~]MúØ({ÎY+J‰Ð3‘¿±ý­°ÜµòŽ”F­µÒÖŽF¯›ò«PJÍf³bNÂ’PÀë®rYƒHÖ´…§l[aÊ×gŠYàOCϧøÂv¿Ö¥Sº§´tì«ñïMµŸÞš +>}tç–xÔíHÙ“;¾æ@ßg,P×ûJCh¬·w‡ýLÓUaÀW1®eᥳ™Î‡Ú}Ë<Òîݧ†ß*_f)^ט×ߢÅëâ5䨭#®0—` +ù/#æJÕ›Ëv&¤,ÚÁ\f̦r¿×S)3Rö)v–OX†‰ùc¸›â¨¸ú:ý…GK$ýµx…$¶$cÚ PRœ^9ŧ®Û ®sÙOºÏ%<ßN¨ßicƒ½ÉìGGzeW»*G<ûÊÞºÃ]â‰Ì-‡o*r½U?(Bçžb×Fìµoœ~ªå‘Ÿ}ƒâûØp™ÌäèPL=#˜ÈÀT=¸ý“0G³ˆ=›öíØi +îîqÆ£ŽƒKc¦j—;S¸Š‰¯ÂõŒQÀ*%ùUìÜ!~òÉ iß„µñ¤¿jH¼+_\2‡Ì|FÅ ñ‚¶‚ê:ª6)%*SË6YJÌ +^@È|ÆXy®J6k–ɺaÁ5I{b­Ý—r»ùNP«†¸±‹KƧ;û§¨ã¯Ÿrí¡=Kð½‹=K™S5©N»¥T5›d¾g…€=«¾Ü~áh‰*¿c6T!þîãDÕ "O À§¨wIÇ7ýÕÔÿ‰j‰õ~Õ½OTuðôo€¯Á†®‡³°“¨Ñ.5]&ÚŒ½›÷à]¢Àö(ìŠí"Š÷mÁQ¼åï8êý_1L´«DÉÍ9†ñˆG<âÿ +Æ¿ èeRˆÿRñå…Ó–ÕÓÏøwúTš|è›K×E²®étkN—¡ys:_³ #™dÒÚyaD^ÈBOåtýßÊéô±œ.C+§ó5ÕÝßÙÙ• +÷ >~à…¿º‰‡j?uâßE) +S Ó!pœÐ ô"®=GÏÓ ­ïè¿ûŸ\õè­^¢mðë¨.ÛQ²­2RꔶMÚJ7OJçÄד?’&'ûK£t~^l;ë ‡ÿ)À¾~òC +endstream +endobj +1320 0 obj +<< +/Filter /FlateDecode +/Length 3263 +/Subtype /Type1C +>> +stream +H‰|TkPYî&I'€Æ‘Øiìn†‡(Œ¢" +3¦ +T +*¨ "â+ˆ0$-Ÿ+‚€ + oEEeAD\kGwÕѲֲ|ì;;žf.»µv쯭Ûuêžûø¾ûÓçà˜ÐÃq|®*Z§Üì¯ÚmЪ3â ú/ÂsÔéÙö-–£pN&ä¿š¹«€]²4Ànƒ¦íŠvi``à´ bÃ2ôi6~·±@£3²‘¹ézCžÞ .Ðd,bÃrrØi#kÐ5“}ñ?bµFV£-Ø¥1°j~3SËß7h2؃:C£S²Y½}çÜÿ‡ŠÕæ²<»)Wk÷â øE#«ÎÍXÌ£è§YÒõ…¹­Æ¸hqD|Âî< »’ÍÐìÄ0œØL ›…a³1 [ˆa_`X Ž-ñp[‹cJ ‹Â0•‹bÛ0Ì—0¦Ââ0v{ q~ÿ—C’ÄÃ/‚ý‚_…‰Â<¡UøB´\tŽÀˆâoâ]â!I¼ääŒãÌ<]`¢P(¬—½¿ÔM®<1½¡`à/Àù•jTqš±‰e?ýðMÏÐ#ùûß#ï%+ òÓè.¾¦yôü-êv{aVÊÆ})L4šó½6lNVD«¢šjò^¯Þ*€ÄaÎè +¾ßƒûjNŒLü7å&BèF¾bädµmð 7Îö6^w?BX’+SÓäHh0 aàöæãðT®l’&§fjô‹èpË[7ä`Vœ*ª8aClÝi£CrQñ剒—lüÁù±qhÛEæⶵµJêÀ*Ë>æÄïDpœà¡çÂ&py 4Þ +° ¢œ~Ò—ÜW]b˵ ËÒœµ*Ixä4CŽ¼D4ÄקŸyUÌÂ'lBÚ~}ý5Q?~käGÏW×V×Y$hÝ”¹>x°’©¯>uä8Ýrª¥ñ"5z.)yS~ê{\8+øá7¸BÁ ^ +òƒk1:3U)‚j¸nLË–rá0Ã¥ ¢Q0ŸWø +-…Ùè2“°âã ˜ñ:n ¾Ñž¤§£ííC#òg1ïÐJäᎈm[îdÓ±ìR—ºE!~¼"èã %“u—/_¹ÐÖs’ùîÀ¥ìírMn®š–=­àÂɾmfv~n~9“Z³«¹[ÞÙØz––ófC ¸âÍ°ò)x]FÖZ›,ç«Al{×öpLòäáÕÁM> +˜‡¢ë‰Häþqͧ‘žÓšéÃóμÌT£{Vq²9Ū³î«*²I`#çCŽÕÇ&Z™"«¹â ]b6íÝEm*¸qƒ¹mí¸t•’ÂöCÀr|~Æ!Ê!A0~„,ï­xM84>a ¾yrølÛ«°ºOÚˆHêKEÅÁ D¢9¤íD­•ì™ +ÍEË££9PRe;ÈH‘š¯»à";¶`|2˜üg0DN‹¥g«ÀŸkøïº+þè7\Š$¤g/nxá]|]wB¼€M†‘(—ˆÑz£%  >]4è@‰`9Ò1•È‹|=¸ IÐÌÄà  „gàŸ ¿ü##}ÇWI6‚o%ã|x!‚çä'» ë©Zkõöycÿ0ÓÛs~lBþ(g,¹‹¾¸=¢n!彦¼l+ë /ñ¬­…šèÒ&mØ‘¹¦ø@uu)#ýÄV‚û4ð"¾oLm%FšJBÏ2 +붜,’€ŠØß\ø£éQɨñZJ½äˆx¨þÞØ+ùãw©tObX7µDQ^–h'›5MÖEY;õ‰ò¤ í:z;!(廓7_ }ÍœJp¥,êynzAAÒÛ¿‚äCÂ}4ó:Ü‘YÓ%okkž¸Y¼¿•îoQCÊÆ3¡RÌ_Œœçÿ>ˆtæùmÅYr­Î¤R*ÓhiO^¦‚CH]Z` ˆaµLÁY\Ë›,}ýrì¸h•ÏZýžlº‰EõÃg©ûg +‹˜¯ÅèK+rÚ€Üä²”ñðCýg.wÓ‡ ™âdªHVoy°ê ¥ŒÎ+ÓïΧt¦Úök½éG3x"ÜÄá|†Ò‹\Fø^Ѳ½ê*ë?voÌ ÃŃßM…o ‚Ûò?#G*f«q§ž±@#RN ²½±–K6Í×P'y¼št÷Ѷænj¬%IÉÈúWiÓ7gê¿i?D[YOœÛi½ÿ‡ï‡yvÞv>¬A ”õsN“[ItÌ"n/L©ÝD!Éç(¤šA‹ÿäÄí;çF:éY¥1Qœa¸”Ì àfl‡lwtÆr¶õ iMz("-«*h- ^N‹rËQpVv+ËîB» Ì*7[q¹-+Ôm‹B(*‰¥1,1©Ò&M覉ïØÏ&ýÒôÇ$“w¾y'Ï󼟗³ª ØAû·gUò·ãÁm”³bí£ŽÏ5œ+ÈâR2]æºo~?Ò}6Ç*˜«MÕzíÔrèŸ!oµ(¼%Þ÷•ë ž­“ê¯ö¨€‹ô6Úƒ"…Þüc+ÄÌÞµ:føó  *Oœø,ÛŸÔ9jÀsÓlo]‡g’›¶='п  Ø´ˆ½¶8qmšp<Í’üŠ,²ÌŠá(a$]é]8´>"E¢Ç[@á¹Þ2Ò#XŠÉÝ)ÙñÉÉm-y|ÚHMüPuûéýÆ´0ó]ËÒctPÌÒC‹»®‡G ¨“M5:>ßPTœË¥ä}}W`V‡ÇÜý]%Ù6Þ¬7_Ä£¢³Ø…Eí<ìö™ò.o1H1H"õë³clrV–&u0cjzhä†à©ÍJæVx¦Ñ®žž +õ3 Rc?ø« A¨èåÆðÇO&¦ŸØC2K0HI&ûçM|‹õŠ£ŸsµdP>4@5š›ëù.[k›“sµf' +¨ÇÝlL\x5÷¬¾ª/¨*Öj ýŒ¤§DãÜϽs2µ¨L¸D2ý,¶–ã–¤}*zwð7„‰kìd0®ãÞþHfú(»ùr}ßfkv rîöÜ$ouµ· +—°ˆ¨÷ÒR ÊðþbÆ«ï(ò¿ŒEœÆ &A"DB¢/Ü’M,Ú‚=nÛ03xØð{Éka¡í‚1ìÍ΄¸]ù§&MߟkŸ›ÁÚA”ÀL`lÿ×ÎÒÒ°ø½ÊB¶º‹§¸§àÿ° V`GÄo¡êÃ…©™¼ƒW}{µ§c–ä}*üQ­am&›ÅŠ¥Óë⦯¥|››v$+¿»O/j›TôfŒÅ2ìµ×´]«óÓp‰’Ì–ÞÕ0Ô9ɵ]6Öئ¢(Æ\W¥7Up§öFxáýÒ°L í¤%Ý’¥¢êà%hƒõ>c=1¾=V;:[yƒ­÷çjÌüæ>¿CmͪöV[¯k¢Bìâ@Wα'rˆ}7öu¡6iø ¼ã7YÞT]¦*ûôbÆñøö–s<„£—Kd” Ëä/ÈËlD"R΢h*ºYÓ“Ç\½^6ÉM¸¾°vÌ0l¢ŒºJc)w²Ò1ƒï‚2 6SôÂá%uà- o ¾TÁÃ> +stream +H‰|POHqžqgvÖ\Ö¿c¶[î©hý³«&¨‚.éÒ–ý#mt~ë¹323™¤ƒQÖ¢QA#’ z±„°ƒ‰¤‡‚ */Ñ!º(aÞèo‰f¶K§Þáã}ßÇûÞãÑ“AÑ4í½ G/´—T%AŒ¨JE“Ò+†Y´ÝbÓG›ŒyÐÍ“R2¶×±w†…7Ùð!÷íî±<*ƒ¦¿n„•>k¶'®£ªúúêrkÒX[Žª+++ÓXƒE¥ £è ¦ã„†NÊÝŠÚ§¨‚ŽÅ jìíEé ©XÃj¿-þ½IÂ’Ç*,³G²æU,"]DœÔkH±hì?«$#+ “%›EuKÔ ‹!+EIoéV®Ëº*a-jŽžìè‰8FY•MåRùO±Öç¨V*A½¤~Ó§ &¹bn­Ð^q$sd7’qÂyÍ“xĦ“ ²ÊƒMR¹”³#ÝC±¸Ó|ÅÛ±™ C½ Èæ—æž®®IóBw,v±ý™´è÷ c¶COC¸ ÈòîQžøÚH€´‘ˤJv¾oÄâ&¥þ»„á_Œ×? …»:>Bù¨ÊîM­/úØŸµ1év› °Éÿ`¥»/Î +endstream +endobj +1322 0 obj +<< +/Filter /FlateDecode +/Length 3565 +/Subtype /Type1C +>> +stream +H‰|T{TgŸ!Ì$¡XP¡ +å•EQD-ÚrŽÝÞ‰žÝÿÙ¿ö|çÜóÝ{Ï}ýîǬ­0Çgøù…„ož·~¯N£Pë´ó7©¢“bº)%dz8ïdÍ¿oÏ E(çõë×AÜü+Œ¿Óð>Õà€YáøÀÓUÚÁ6Zm/Z²ÄÓ}ŠzOS_w¹§‡‡Ç4õ–û)µ;Uòнzƒ*N/ˆÒê´:…A¥\ ÷‹•O»ÐËu*½J—<%|›‘\£—«4µJ'WÊh`¯S)åB©ŠSèv˵SšÿawýŸPrM¼\ð%‹×Lq¡A¨—+â• /Úé(QÚ¤xƒN£Ò/X¸:tóÞ•|±\©Ú…a¸ð°¿ØbÎ6Ç\0l.†ÍDZEæm…}*ÁÖ[c¡l¡€*¶ Æ´ØWX)Ö„‹ñ¹¸7[9Y%ZŠ²GñÚýÙÍÂìA  ¢–…fr‡×0cõÎÈ-t^´,b–ƒëó~Ž:Ìw f¦8€qˆ®£ãE¶’¤»‘ó'§ÖÑNd“T¦™/0ãÀˆøHG3º”-n¾JÀLp~öÒgÁãH¾2P«Ú!+_O”k†0à€}V ´réC$^¦Ù+K'OþižYIYnIVQ†¹O–3 · üiâ +sÍ“])m¬ºÆ>¸º`Á– O8 +puôô .ãÛé~þcP3}HMÃjñ!œI´÷ñ„ì5QÔÅtBA?;^Ÿ_Ÿ÷ƒ$›ÌSæEü[' +w¢úÓÌües\ŠCÍSº›?3ƤªÃŒá,ZìþoXþL€gë•/÷Uqtíé^‚î.0„ù²H…f /%Â,d›oV +‰ùêá/tã÷†y»1ѽlæðÅæôŸYxïUõ­[Ü­Ÿ«Ÿ€•põ¿6¶ÈZ‚=+Ð;ìê C_…sÃÌ‘’êÜK,=™ƒ¼28´nÎ,´A³;+7IFíʽѳàXtÏqnÀ±>t PaFÿ!)têt²Å'eZkñaÞø [|ÄT¬0à/ß +y;3ªç_z“ü” 6.Éü£a‡–Ï苛㩠C"RXµ‚®óÑû¥®‘¤“©=†;Z¡M0à$hé„ÏH’EÐptâÙfd“ÿ\vÖ»Ò]"ìŽî¤ÐÙûÕÏÊ• Ó—á{GæK¨ +¡€S=P1… z[C y¸¸4ã ;t·¬ñ2W}¾èj»´-©qW¥¬&*¨ø#Öó¡¿+¸á &÷dEN;~+ÒsAàçx}ö‘=•–ÖÇ_í‹Iqh¸Qº_Ø;}Mïž¼úŸ¼ú-¤‘¹5;¿»%½|¾åiû¥”/¿•Ñ—J…öŸŠÛZ¸šEïy/wvïÚVJnL]$]ñ¹çÆMÅ¥JuH¸/„]‰îP¤ãÿvÞ™üÚ€³½üëüîÜÝðžü@ŒT¯>Ì|¢düL¯ÉYbäà²hím˜'ãg‰©dcGL2d¶Õáp~Cô~~‰ã¡*S}ƒÄ/¢'ë†ÔÄ(Yqñmõ•—ØßòWEqib´1kV ²‘ÒþM«_v7Wוåôþo6_€/C74¥¥”í<ÄîP½þðSã&Žê4ö¨’ùå=°;ÅÁ< 5#ô~øБn̽Oä5­ =,`€??\²|~GöìòPuX,g‚ëÞ“ƒBˆHÓ6SŒl ª™9Ùy²_ŠZëÛØçM‹çrt#m^¹0pKC{ªÌ”gÊÏ—R›Ózx¬¯΀Ë#ƨ‹ùb+;oU7XO´ ‚èj•ñËÓ\qQ ß~<‚Ež" ¹!×_]aNÇ…%ÕnìU&ó+º§2®…Šº‘w±lcPƒIü}ÒÖó~,²uqEeqÈå‰+Ø Ü¬ÿé¬,[È4×— Ó«2/HùA±×äi®Ú &®(:™4Qšé¸ ÙqWKkkEªEªTtZÁJaP‚üä+’‚ZH ‡R6DD"„*ˆ_¢€"Z-(„X¥ŠÖŽcï2}ëŒwæóîy÷žs·PªÉËÒgÑdk*b[(å=ôâ¿KƒOzÎÇ„›™Q­“K Ù}àß žÝ‚úa(r +H—‹M¥6ùã­À ¯Ðl_$FsÐœÇsaîý‹–ÒZZÝ-ÒìÙ® ¡|V´Â4cì–v5<|L½¬\ž‡Óm'îß^XÚ/x8*„eœ/¸õ"·â»G{îUÙr~2ÓlŸ¨(3©(RlÖÆïaÛÔëå©kú&}Å’+hû-ø¸&néÞŠP5Jq 9¥”Ï]%2öôv á,o´ÉŸ‚û½ö3-ÕŒ)‚@’ ®´•ÇóþÜpCÓAuõ•:Î1çš*ú@(‡:19tÍÔ`:M/@µRµ!3GM‡+£vG`þ|Æãð^gÿðæ­›,ta–Q«–KÚq=Kð‹\ s <\ÐBXæ#,}ÞÒb¿J=ª ZÆ Z4ŠÁÏÓ¾vOB¶:™NR§¥iöO1ÀelQE™ñ/¦_Á\9¾œÒgR‰ÃÑ1±XŸš’°·"¥ötEåÉ<¦6½r-AåØ×¢x^žt" +ãÀ0Æñ»ƒ•pÂ^'$8É¡'¾P™©ìˆ™v”Ú—©Þºðå jvB»ØR`)dé沆³mT]¸7ƒªP/¯¦à˜ø¬´D:C­LW'M1WÓ#íA”_ì–˜$FO­¹Dˉ‚8£"ò<-¯yŸÁÁs–Эe-X„µX„S.hÃROû¿ðؘÚ@-9ƒ¢eïp~×õpS{ð„À¹¿„PË’"ùl/ô5šÿj|nðÁ„Ïç¿B c’¾nôü Büû~?øæiËó×x¨Ñwé°þ'¼­{7Õã(J: +]seß +ˆ7NXŸù¼Dnþa»Bw2øC¹Dþ„)ƹN>#e Ì%49Þc½ÒÜI]XòF¬ðÙÐÔ¥b %Ö,— oqÕ é2~å™È®lÛ%¸èRK÷°Žs×)¶8ÏPÌæGb²Ëtè°1› +Ý X›Æädþ/_¬1*L.™•}“/ûâ0ÈG„ Ç¥u­Ú‹ˆ{:GîliZ|Š ©L´ÙågjN¶·œVe¥+nˆ,I[J£(Ïàe?4F&07SªR·ÊãöÆoŽ±Y“q{dßèŒ9…cܸM XsYÅaÅ[ª’é”c¿i©ºê#EV&·G¤×eêS©¨ÌºNJaz/šŒXr^7 àÛrúm¨]d ·™j#TzUŽ–Þ¦R(B)¿}ן2pÌ£åO¶þá¼p¡á8ï9Ê#þ¢„¾>ÏÑ&—¤å»Ö¼…2s±d’ã@ȤR4L@§}IÌGU8ZU›5qº8­Ùv­]åð‚*™4ùÃpío¼ÊØ&Âɳ6þè|tx™xã°¶—µ±xkaÃJ£­w‘J6HÀŒºˆXrUaÚM‡¢fè ]«æÂŽÈ‘­$üQ¾j£j£Žÿ~°MÛ¦¹ y2IÜÛ!üÌ­Zxš%( |Ñ8Þ“¶ë K Îtk¢%éè¾~$ýCà_†¼iE^Dà'ªdÕ~U"†TU««T¯~-“ÄóxÅ\´°˜Ç œ êL‡sä9úùéŒØ½»S”Éi‰š´Ã+e…ÍeÍõíÍ#Ý°dðBæMÌCg³veï8˜8Ã@ªÉª×š 2I@þmxÞ/°q3…6næmtÆDTT•W–WCÔÉŒ—E“¢o¡Ì@¤%g¤¦'£}¨^&Éb9% Þ,ËV²ÚÁÞgÅô1Åfw·|÷i½S]Ó\…îïs¿|ÈåKÿ`Ë@2, +endstream +endobj +1323 0 obj +[1339 0 R] +endobj +1324 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1325 0 obj +<< +/Filter /FlateDecode +/Length 345 +>> +stream +H‰\’ËjÃ0E÷úŠY6‹àĉ€1'/ú n?À±Æ©¡–…ì,ü÷ñ„*°u„t¥ƒFQY+×Ͻ‡±­q†®w6à4ÞB‹pÁkïÔ>Û·ó}´þÛ¡ñ*¢p½L3•ëF•ç}Ðä4‡žžíxÁŠÞ‚Åл+<}•õ¢úæýèfØAQ€ÅŽ6ziük3 Dkl[YšïçeK™¿Ÿ‹Gˆ×ñ^dÚÑâä›C㮨òµò3µB¡³ÿæãLb—®ýn‚Êc^¼ÛQG\ +—Ì'áq"k^“ÄÂ1s*œ§’M9›ž…I Ï$›q6K„b½_™:bÙGó>:Θ°a>˜å,Ígé£ð‘Yœ5;kqÐì`ÄÁ°ƒÃþF| ûq0ì`ÄÁ°ƒÑÂz½Ìû­ñµRõáQ³ö•k}"k¸B½ÃÇ+ò£Jñ§~”§è +endstream +endobj +1326 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1327 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1328 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/D/F/a/b/e/i/l/m/n/o/one/r/space/t/two/u/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1746 0 R +/FontName /ZWBKHV+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1329 0 obj +<< +/Filter /FlateDecode +/Length 288 +>> +stream +H‰\‘ÝŠÃ …ï}Š¹l/Ših·$Òr±?lv ÑI+lTŒ½ÈÛ逸 +$ó ã‰'GÞ´§ÖèüÃ[Ùa€Qåq¶w/¼jö%(-ãKo9õŽqwËpjÍh™À?i8¿ÀªVvÀ5ãï^¡×æ +«ï¦[ïîÎýà„&@U +GúÐkïÞú 'Ù¦U4×aÙæoÇ×âÊÔo³iή—è{sE& +Zˆ ­Š¡Qÿæô#I6ŒòÖ{&v;Ú\T˜xÙ&¦B\f.#ï3ï#3#7™›È§Ì§ÈçÌçÈ—ÌdFòY‡xÖ¡Î\WÑrY¤ŽJ´üðÍSÆðLFÞ½§PÒE¤4bÚàó®œu@ªø°_c‡‰è +endstream +endobj +1330 0 obj +[1339 0 R] +endobj +1331 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1332 0 obj +<< +/Filter /FlateDecode +/Length 341 +>> +stream +H‰\’ÛŠƒ0†ïó¹l/ŠÖCBA„b[ðb¬»`“±+¬1D{áÛïŒSº°ÍòÏÌÏL¢ª>Õ®ŸeôFÓÀ,»ÞÙÓxän½ûDÚÞÌÓú7CëE„ÁÍ2Í0Ô®EQÈè/§9,rs´ã¶"z BïnróU5[5wï`7ËX–¥´Ða¢—Ö¿¶Èh ÛÕïûyÙaÌŸâsñ “õ¼g3f´0ùÖ@hÝ Dã*eqÁU +pöß}’qص3ßmEBâ8Æ ¹b®ˆÏÌgä”5)iÒ„9!Θ3äŒ9[ùÀ|@ÎYŸ“>O™Sdµ_7dÖ(Ò(Σ(Ê™sbͬ‰9¿¢üŠ=+ò¬NÌ'bö¯È¿º0cC +͵4ÕÒìG“Íu5ÕÕGæãÚÀG§¨•8qùœ“¹‡€#ZŸÅ:šJïàùrüè%FÑ'~¢¥u +endstream +endobj +1333 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1334 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1335 0 obj +<< +/Filter /FlateDecode +/Length 280 +>> +stream +H‰\‘ÏjÄ Æï>Åw‹I¶›° ²¥Cÿдè$#Æòö5l¡‚úsæûdù­yjŒöÀßÝ,[ô0h£.óê$B£6,/@ié÷S\åÔYÆÉÜn‹Ç©1ÃÌ„þAÉÅ» jîñÈø›Sè´áðukÀÛÕÚœÐxÈ ®Aá@½töµ›x´Eyí·yþŸ›E(â9OÅÈYáb;‰®3#2‘ѨA<Ó¨õ/Ÿï¶~ßc¢â,£‰sâsä> +stream +H‰ÄVkTSWþÎ}$y$áÄ\.!B!€ZH|£<¤ÁW‰ Â(‚⥭uèÐZ[­ÔR«ÔR‡ZµÚñUµ¢µ£­ÖGGNdz\³f\㚬®®©­0;©cé8ç$7ûœ}ÎÙûÛ{÷œ€Åð˜5³,Ý;~%iþHOquƒ¯©ëJEÀRþ›êÕ+Í%F@L ]ZmÓâNwƨ¦Óø÷‹—®­žøír ( ˆ;_·ÈWS»cÊ@¾KörêH²‡’iœT×°²åù„IéÔõýª¥Õ>hgÇæ}4®iðµ4±ûø°hh½q™¯aQó×ú¿Ñ˜ð°Þ¦Ææ•ÃmB>`½æŸoZ±¨ óZ.ÑxÐoŸl|Í€Hk»¡JùQ +fÔrz€ã‚ð?šÆä%âè¡ŠÏÃn’† ÌDR¶¨ÇFÒ£Â%I.°æßMò‚¨RkF„„†…kuúˆÈ¨hCLìȸøQ £R¢œdJ6IIµXmié™ö,GvNîØq㟘—_à,t¹'y&Mž2uÚôÅ3g•”–•Ï®xÒ[9gî¼ù žªò-|c×îîÞƒ=rì£ã'NþxàÌ'gÏ}zþ³ Ÿ_ºxõʵ/·¯]·[oÞÐüBÞ|ÏO¿@·ñœ¼ÜÙ² 5À³Ûjo¾Öu`éêå+›–}kкdP÷Rõ¢ú×ßÚ¹wOÏ;ûÞÞÿÞíëWhó/éÙê·"pdEKyáцaæc-l›0Ó8^JLŒd³›•´ZcÄCíÏ[$®±—Ù!vˆØvÏÿ!›UQ5‚ F „8†pò¨ƒ´+ +Ñ0 ±‰8Äc0š¼JH„L\0!fŒA +Ra6¤!È„Yp 9ÈÅXŒÃx< ÈC> +àD!\pc"ŠàÁ$LÆLÅ4LÇ c&f¡¥(C9f£O‹JÌÁ\ÌÃ|,ÀS¨‚ q-X‹uhÅÓxë)C°ÏbžÃfJc;UäWèÀ x[I}¯`¶ãUì@'^ÃN¼Ž.¼]x»±Ýx {ñ6zðöá×èÅ»Ø÷pqïCAúñ>ÄopGpÇpáNâ>Æi à ÎâœÃ§ø-Îã>Ã縈Kø—qWq _âw¸ŽXŠÕ}K~•XCôYŽ4 X†j’hÂ"’‹Q÷puí±Pÿ3ͬB3^¢Þÿ;r±MK qaöPÊPæðmz›sùyÂaP4ˆ£¹&³0¦Á=ü ·ðí¹JöΑäùCBÕKH» ýNªæVªp;U½˜°†"l¤ìÕ?g*ˆGÅÄ-ùÊ#fCSˆµ’Z¯w‹fÑ ü]øJP„a»°Uh2…QB–?Ì÷ó]üf~#ïå |¯á9nˆàÚ¹M\×ÌÍáR8-»ÌαSlÛÍÌLïÇÌTt^ òo1ˆ;øó#\z$…bø)‚Ÿð?Š¼˜0gCrFGEFèuÚð°Ðšà µJxŽÁÚO|w;vÈ®Ú +›µŸNowy‹‹×0®2 &„¢I­T˜[û*›ÕB_…KµYüa È®>Æ›\F±ÎW£ð&’FEpË>cMŸÓÙQõAŠ¯œåõw“ÑS§¨ME>%^)NÝc+ã|5•e^9]þ..]¾C¾-·î«yìJÑä*¸ó³ÍßT:½aœÍ:@aÓ]à6úAv)¼ÛW_5±Êe³^võ3Nt¯vËî™&AvÅ(#ü±’µ˜¢zÅé3p+…qÔ÷wOœ2¹²Re™`²«^ád—’c³‹ê&Ú¬Çép‡O»D¿N„_}ßá’æsy(aÎr¯â¬ªôû³YiÊ­sÜLجi6ë9›µ@‰Lµóßp¢ÿ"åé –ñ\¡*j¡Nc5'tò4שfPqÁá¼%– I'éÌô0:¹¥\"]â’pê{—ÿ>ÌfÜÎoËàÔÆSGÅ„j"ìŽÈ•ÔÙ.ö—"V00@;Ú‡¿a[ˆ«!ˆqêøˆ`òÊ„e*ÿ–°[r9YvâŸJNLNn/ÍÌ..Οܚ^NýÒä²" ÏãºÅÉä7Â9‚CÕ#.ÓÒ2 ,‹I\|õýÛ=âÝ{‘twÿƒâ'û½·GFèC5Òèù@ÌÑà–jÕLd#0ù]§±ìþ_PhÈö—9¤48Š…Ø33¤øØC”^ã M&÷Ž€ûKª%ƒHà ÌÿJ–ÕÙöœlG:“Ôª¨È‡º|>7Ÿéõ¼Äs[[YxøØ$£.Ñ Í°—ö^¬ž’²`¨¶HåÈÉk}µ(Óg +÷xë—ì`^E¸uÿ¹½|ªyVRB˜èÖ›4xtv¢!ZÅùǪHÙ+÷Ü``úûëÙa­× ß5 dÎC$ŤÂÉ!,(šÅ2}z\°Žò9ÆÀé—†JT ED-ƒÉi¼™ «üðõ†è,{nN®FRbR²™2«Ï¥T‹*ẋ ·ÎQ8jïÝ1QÏ­[³}F‹eUŒÞÒ;4¸k臓æø3G:ždªx~ù´9Nkh𱞊Ү¡¿NñH¡m„ÅóÏn÷5že9%®Ò^ªÃªC§pþ-ä¢Ð™¥á²2#.˜‰g¼Í.óÿdºZc›:Ï°ßï\|Ž}ìøØçø’8v||ï—cÇq|ÍrHL0ÑR +$J¨Úri¹V-´!º©[Û!:iZ§!M°M+?'-ÛiÒÚiÚ&¤ÑI›Öiû1œ}ÇÝ"ÿHÎñ÷¹¼Ïûì +âœãDH†Ø#=I ¥´¢ITX• +†‘Á].'óÙ8eŒ!×þØ°PØ!Z#Ø$h¬"~­áM>¬-ÞJt³‚¼éÜx×PWì/µ_™ygÁ°¼åqë_ߧ…™¾ $'•¿¦y¼\`ÂnëóáJñ”ÂL¯}þöÎñúãï9D’é;×gì`ø ;“Z¯¬Ä¯ÉUÜh¶U'BÝÈé¤P !VèBvÈ™á9‘‰AdI ‡a6V¯%ÈQVÌ$c¢†2Bº`Ibœ(ñú“©Œ¬ +†ã¨Ü—±Ñ¢7 Jªh‘O«läË(ŸÁaô^©Yü:¼‹(‚êÖ¦iFìuûóÜç ;`ß7¦eœžK‘ºB~¿ÛÄ‘€§œ£v`1ÎlI<°ú‰brü-_õ,c ã8}z¯ì$ù†¥uÔ³l¼Âº_÷zÎHœ#ZЙZo×rNF!1'/¯=¢nc·–5›ªõˆÓNHš‹ +)ÄJY‘Ó0E(*h +,’9™çbY@Epö؉c´,Ró!NÂjǘ +L&hÛI7àCrÎœóá°áÇ^ÕéÓo¨¾hó–U‰Pi£nüô~×Zkü¨õÅuxe¸'þ>“Oákc‹Ï<{ç| GÒ¥ù‰•³s{Òp6õ`O¾,3–n%ÜwÆu@wø{ßòý©dbëëã›·W»Ã¥—ž9yMÕï¼s)^Ï<;îHa‹ãN¢!cØQMµšw÷ Ž`y\¸§càƒi v"}êtqnœ'`´hÓ +ÄUà•ÈºõË óxU$yl*‘W)C>C‹Ýñ¾è[±Ò!Ê‘š½÷³Ù‰ºùðöktz̸ Þ +4 ÓÇb§k_7úm#ÓÇ +–Ùjÿ9ÅÇâ/¸?|»Ÿ)ìëµÓŸáù›š=Õ-“¹$ÑSÄ”’!:Ör´h#,êCìà ++q}œ‹9 Çs8·\6‘(Ž²)/ÊAŽ†Š"ÕÀ{smT/Ðh[ÛܕΚ¸“c [þ§WÞlÁðð³6âö.óB;€3롬R¢ÃÒP½ÁÖŽõ%=›* œ‘B¤Ý²-<öö[ã«¿H/U¢µ´«vþB-\줥4‰:Q0U‘µh%a§h4²ž¸ód:»ŸË¨üT‚Ô6‘/jTÐZ/Š8žÜ8'líC¯r†¼R0÷ÍQRçè9v…–¨ênYQ’÷' ƒqúÔÕ­;0j¦ë”Áë].ƶ/*“±O ¤™ž÷>å—WEx!<5Ö=M²ÊõÃ6“K’b&óÉÆE +û/›Vœ’›}mså9«Ñã +øÏNúë ïŽ7?ÐàK¹í â(1…’¬‰T%¯›×i(KD'°FÖg# ³ËkÐKÉ+ùv0T*8éõJ¢îåÉædm§,ùò½µ´6øºµ­¼ Éïçì M÷–FË0Ôú)y=>ÞXó}9Uúmu6¼axKbó9É£÷çáóD¿¯ËÅ›bÍUó„8ï<¤ÜºÞÛ·õp‘!&¦8cî®üÐÀÞÖ¡¼ßHa,žµGÄï)®ÌEÍP5¶šhÒ’ÔùvV`ãf¤v0Vrz €ÿís ¿ÝJœg/JOï}ߦžýlûÜY0¸ FôÕ5Ä=ˈ›X§ +`1!ðu"2ä÷ŒMù¡`qÿ¡Dpi3æ&U`¯ß7‘¤=IX¢•zT™Ùý+7ÑLë“‘vn®Ñ,7/zO† e±ûÃYôÎl¯zýêúaþÓ^‚>c2‰{/)å™+»æUÏb¼nbn9ájŸH ’âW1 B—ÎÏ#3 /öª 7ÜÖMÝa¿ +¤ãJÔž½c˶`ª+U9m4Zo¼öÖÂÈDLÜw,Y{n×qŽ¯¾m¡Þ¹¸/)M½Úœæõ¦ÞÜXúÇ–võÏ*6ÿk?™«Z™ÑÒâÖ»©9¿(F±"+k#åuEƪ]a÷õ°,2JXÁÌŠYc¿.1†•Í(mEv ÊÂÊ@ÌF¹àEÆÿ'M;„ xVu…ðúdÔ$uøl¾í¿6´ÜSlr»²©•КAŸI‡„þ‘"/,ÔÃÍì(¬,Èo»&rsþÍüÑ˃vy×pWjøîGCbŠ•ëå]Êäî=%ÑZ%ÉÙØyÁÚ#ÿÀB&pÊÌøÿ<Ñ¡ò©®ÖضÎ2|¾ïßNlçør|ìø~¯ã»ãã[lÇIcwuš´q'¸m2BÖ ­H×dké +d¨°eb—Š”mhê¤ +Elü(¬Ð"„öA‘ö£B¢êÐDU¡ýBbª\Þï'íòËçØRÞËó<ïóX«†ï_yô—ºHXµ›Y¦S,¥†kCXAòG°F!Ú!ˆÈO)‰Dbì‹f¢á€¾O)õ¿Ë€èüvÂfñOv7”q!'¼ó{{DÏ ‘½_Ÿ9À`­Ö¦Þ|ïÃãcÍFàü•}óoÍÍù»ÛìÌ\yèÔQôEdù{§û–-×ߘú݉wN–ç{7Ÿs¦r§®øù±ž·ÄwasIªZ£pH`›äëð¬JiŠiÒxŠ6ÆP:ñGk^­[Ò²ƒ,¨¡ô_ÌgÉY…¥ ýò%¿r©òvÒÍÔ>Ñ$t,—Ó§O&›ápØkåë^¿g|o†twô¥ùöÇ7°.=‚î1‘Ê…«ßžð„lŸ0Ö Ùö­¨™ÕnûXÙY2âT7Bß~ C.;J=W[°ôáò¸¹‚%4Ñ¢¡x\ÎÃWkPvÜ…”Ä~ƒÎ,jå3*¤bJ“E¦)ÈmÏ yd,ôKQ“ ¨y5SÒõ)¬Ü˜Ê”x¡RXšBŠ6Ä!É3y•_>Ò6Ë0"{ãÍ°UòÖÜæL>¥‘+™ÉUP(DK8—]¶|G»Ïo³ +gÓŽøÉÿ]|퇣܆Výô»æŒÖúÏ©ãox9{Ü5ù÷³õê™×iGék&›ÞzzbZ5ùÇ\ÝQ|?¿ o0ºlÊå6šÆ,Ž™‘ñcw›šõhr©q°’âûŒA&³?(î™;àšœÑ|gy$(ÓÖÕ)g¦]¸0ÉO­>z°gY -Ù¬®o‰§Œ`»›*CÙoçq*`…áæC¸ ÓÃ,3䑘Ö /Zp‚ׄá(úìøœ+Á+Œ¨À€×xb?ªOÅ°’²Äp†ü­ˆL×"ҧ셊È4‰Àz9†4*sP4`ÿæ³özx$Ñq ÇÆX±xa½ÂmeÛ¡rdáöåfc%ú܈³ Ÿlÿ{ƒ3sþÃæî—± †l³Ž,Ÿ‰ñn{Ü0¶®T˜ÿPv*BÅk~·1A1VB~ÖŠ´6qý*æ´ÃÆ!*±ÔLjIò’Yb ò=¡ê5ÌòA%„±XZõ gŠ ™™>äúleúÚ5äŸÎ¤[Á²Ï_4û2 ô³X„­›†µÍ­îR)o´”™m§}#ápm‡Ó à´ò×ì½êô`­ÖAü;gRCuN™¹ iÜ´°K0òƒ4°ýdŒ¢¡ŸŽ¤ÀÙ†³Fx…4¸” +Ìk©—‡¾J¯'c“ˆE » ÉÌê v«”âÃö×oqÛáÚR¥a4B,Y]_+©ksÙÖ€C,-ÜZi9ôv#^·¸Ë\0paζlùW"eVá§W ©RQ QoâL?§ ýê©•¬… 9.§3§ÕPС‚P`ŸYsVí£Z5S`B;œ2ewŠ'âBò • NÔ¾†»ºòàOžæ?ùÆŸ¯þõèo~q’?¬t¨¶x¦‚Þ¸÷P­ÿÇGWKê__d³ÜùÛÙÙ)á…„õSÝ8ÃsNPj¼VðX vml?“€{®Pñ1Í ƒs”f=˜£PsÒ-¶¡5Ê®sd§bâl0R7‘6r+‰ƒ‘f-sO:øXNXĈ=ï“M`’´~iLO3±_ìe¸õÎÄô;7¬êòl§ÐXkÇ·ªK•±`¼ã\ÌÖ–†¼…Éèâl·!êTÖ°’Õ_¤'ÝumŽ·cµ˜øì‹cŸ½ZjZ9ëõÁØò›c¥ÓÑÎŽ‚ܧ‚ãÜ_±";Öè‘M‚¢}€guj? +ÊpA†a€(Œ (l @owký*çŽ!Ø=¥;À#™‚´³]˜µk©~oÅ{û²ÃX*Wü«Ó5=h:Ô¹¹ÕìE?8®óEí6¿¿äQ©­·êÝ»i –ߙǟãÿšŠT­VÈD|‚QÏ u@¥q)ùV¡. €·ù"aŸÛåx£¾A”~!US6,›2óHzëÍÿ©”‡žvÓäÈï&<‚Ápn£ªµz¤B2n—wöEO±¨õÞXÛ<¡SWƒ5{°6_Œü|!ìñ‚w7ê—Dò—'Ý_|ÜíÌëM¼Sç85šˆ-tÄñ×Ä:™I N»×q$=:uÜÊ/BŸ•Ç_àËÌ:å¦ÒµAYµK‘@¯ÕÐì¬zlda*Ì(^3¸a^² N“lÒÂâv\XKž4=ÞâÛæ—5—­Ü+ûtŸrù‚µupqþÈ,ßg‚ûovUÃÃçÕ§»wŽ}³ÄG¢Õ¨¨õø!“žd©f­œNP´ÍOÔã÷ ¡¤†±FV¡ §E“ ã!D‚Ö‚Âh1*ð br»ùLâJPbA¨w9 [z?³£Pþ]ß/‹¸*‡ïÿØ?ÿlò,LzcgÞµqêt³µâ °±ÿ³_õ±MUQüÜ÷^ßk»nëú±u+•u£c‚ëºn+2YK7ÇЮ©XÈb&[Æ cPXÍÏÌaÈ21fAÅÅàbŒÁ¯˜CÔ11ýCˆ ‰1šÅ?È0B°ø»¯e5DýO»üvϽïœóÎ9¿ûî‡yìs“TVí =ÝíÓ /°-~›m×Øš•B¯bz2”9{`CŒU½Rûkò\æÄÊøxÔo¢åú5ÝÌ,?-oZâsb'4x‹ŒeÆblc9F½‘Êns; +í–|C¤B¹Ènüpf,÷òiTàËSß®ù‹¬«¿Ðj©Ô"ÇÂ,Š,(\w4óX횀շÊóÊ’ŠÉŠˆß*t¿Ô•Xóæ.^Ù˜N7.¯(ˆ ÖÕ„Vm—.²š‰€]j–¤f‹ÓÔlȼÀÂLÿufœµm—–òaÑvÇË™©ǘmß¾ë<³`f©8#®¤Õ7-ó¸­b9ó–ÚļåùÆ~¾‘°ëû·«¤¸÷M™QÎ}^?²«Ïf‡UäW'èa<¹¹ÔŠœŒ¯ÀåZR_Ö˜z®«ëµ;‡Á×êug¾q,^9éû¬º¡ÆüÚ¤cYS0¹µ.Ïæ0•T.Ì\nŠÄò-WKÝ’Ò Ç[–ˆ!5»šL;ØèZPÀÓ$}Žåþ{÷¼§²][ÅÄõÈ«’BM .£ wlf!ŸÙ™>`1Úqé˜Ó¿Ÿ yøVêrØÍùyF…×¹‰Ý8Âi«×]ÌRWÏï¤ ¦^MqùÀQï¢ò²àÎÚiô¹Tu~žÂZô?§wžú~·e›{C™]ne½Ø–¹2p®ñ`33®0+µMæ+z}èÕÌÇïIv㺻]]ºA¸í‡Ç7?˜¿â2‰zºù—©TöÊ-ГiÎB·0c'RŽ]Vöf«0ïwVž7$:aò M }”d_R¯xˆ¢º):&ëi˜µRãcBãE”Ò­g2tÝÂØ4"œ"7ô;ÐÄwàkEÑ íD¿H£ŸG)Á.Ð$P¬kŇ?¼ÅJq@>E‡uãÔ&MP¯ÎOiÝiêÚÄynûÐ)¾ÁvœâR'% žÍªÏ“RJmSºVœ™‚ôŒtñ?¦æUôƯRPz>úè0|¹uêfÙ¸øU +‡ébì•ÌÈ%FðÏcîeØ™)Š>·#ÁEň‘„aœr{ñ ïg`„N +6ЫP¯£Ô›8lr1µðºH +¢„yxBèc‡ÐN#¾3¨ÇÂ%øü ð:©r‚Òˆ»Cmï ¢G¨ï÷zˆ%®ùM"¦ai„&pO‹ zæORxQ÷>â™Q¹Ž£ÎQÎ'j¶ ~î»›ç ûÞ›D¼QäÞÆýÂßžjšVí'ð\óšKÓ׸ìà|ª¶‚ð©ŒÂº*o³ÔÁ¹äºó¹ä­Ê'æç‘ó†F9‡ªÍu*;7 ÛBQù'¼gã~êU6€SäɹTs㹎">…yÍ`{è¯ +£yoÉöU.ù8øÔæ· ¢VÝ*‡#ª^BS\ŽC湞ÆÜ> ì¢aÄ–õãœû´îù‡Ž³·Öóç4Ì€Ù/².¢²?Þ ùu¬—n†ÁDd,ü›ø–(ï4 åöå-àÓÜMT€íÕ"ÌÃN"ëGD¶·ˆì1¢Âˆ† Qbv‹’š,œFàÓÿñßÂÎÒ’ÔoM v@Ì2ºJ{1ÆŸšèù¹®€´Ó‰dE/+Ki² ¹^“  šL2@*›“y©_“ÜVŸÕdã“š,AþD“eÈ3š ŸÌÚÞ±yS鶩T©/ô­N´ÇÖFªb]ý]ƒ›¶&ÃÉþž[¢í¦0òßL›¨”¶Ñm¤þJɇ›OÿWS‚Ú)Fk)BUh»{ B+%a›D¿‡â°{~ø³[´ù7µÄ,A×A•ÿà×TbjjíÕ¹©!mÎ-OËÉÛûÅt:œë£ýGÅO¹ªª~`Äœ +endstream +endobj +1337 0 obj +<< +/Filter /FlateDecode +/Length 4695 +/Subtype /Type1C +>> +stream +H‰|T{TgŸ!™IPq($=™´k)Z«U Š+ +A| ˆÑ"`‚DtUD‹Ê»²ê +ò¨ˆOd‘A„j} E]-jYu‹Ö*­ö´U»êxaÏNp÷ÿسgιóÝïÞïw÷÷Ý’;$I¾3wALtÄ‘Y&£NmJa\¾"ÃâDŽ=å"ïÂâ(,z}ìõ$ +º]Ý/¼;4܃ I’vvq}ü29)9ɘœ”2`“§¥¥KX?æ£Æú;ì¸ìÏ °ãø}ÚR›eÎ0¬6óá©ËÒLéi&]†A?šIIá ̼É`6˜2›oòF3o0f¬0˜x\n”Λ z>äÓVëL«ø4Gä-7ùÿ”⩼„ÅÇ¥^l†´iæu©ú%”´*ËÒÖ¦f˜ŒóègÄÎÍJ7ðx½!™ Hé!”NÄš` BC‹¤ïÜÂᦢ'#ŸiÀó>Èa#¬ ~Ž +n›ž§Vt• ‹—^ĨHA8̽ä#Ž)­ÎkË·x@¶UÕÙžV»6‰V}ƒ®¡{ //S…4Sšß$vŸ"E'›L ólÂ[…ŠV+Á0þñï0T};ñ9jfƤtÚÊ•TÍá¶ãp:‚ò0øO#©Õ +G%ˆÄ` ¹û|Þ*;yõ÷õµC½¿©Ÿ¯îŽ;¯½;º]5s>Ûº€³.gKŽ4•H‰)?£3NÍãp>C0E§/(NÓ2óh`¯X&úŠƒY<{¡QÀýAð\ÀsÐh&Kº†»TäõxZá.” XÕ©4÷5Á¾F¸èhUœ&auÂ,.ÑÃÌ¡7™·„ipÊ‚©s\ êJËæõõ\™@í]3§"TƒYÈ` ~ŠdØsq\øõžŒGšŸºìstï'Õïm›Å!€R¢`bûƒ¬Ð+*±×jJ@[Ÿl +¿¨Î´Yh¾É±)˜Uù‚y³é Ï=|§æ–É -E·]ï)›eI¦øêŠ4É=­¢‡U•C=á‰B•ò¼[¹÷´…õ3Z§·Oö†Ý}ïR-Ž®Òªýà +¦ì +ÐîÌ[yU9î¾7–‹>Ôâþ ‰¬ôÓêŠf“Ác{‹“ÑÕ¸“a(¾!F€3ä€]Á §p;¤ÿÞä;„>8i,ŽÀq8.>sWÊÊ1’~P'ÀMÇMÃñ¶Ën¢·ÕÎ;ªé¹UÛÞÌ­ÛßÜ¡¾`9½ê˜¶!9ªj’&fQîV=g]ÁWÔŸÖ¼º0ŒF—•©E»ÌsP‚ìl„–Æ· ;_жŸJªò«*‹ÞmQ¶ÓmjÏx±¡ÛøeÜ~e¡âΡ³?ª­Y-©Ò§§Ÿ[¨Iœ“›³”³Ùâý'JZ5/ÿ®>ös|9žf6lDÈKV(·ÊNÕ³k꯯ëÐÀð®~}ÝŽ²Îïä’“Ý꯺€ìh^·©B[!PÿfºZ£šº²°sƒV¯–k0æNïŸ`u|ŒXETª­”¡EÞ B´"oá8 +\1Á‹!á-X†‘„§I¬TEqÙ¶XÅ¡Õ¥ÈÒ©u_æàZs‚‹Õ®uÿµ¿}ö>ßþ¾}uòàOÎ9®¹ù)dì¨Ìî*Ýäåëà»·¬FÆJÌ&²I23¶9{ó8 ñM釻¿<«y\2IÈæI²M¬¡¿¹á™¦`Æ÷Áð˃'VŠó¶ƒK?¸2üJY›ß}ØÊQ»|^OÅC¥=h0é´½Á¤û|U´“ÂÕ6Hù.þaÔsô¼‘ Ǭ#áIþu¾³3H7Þ‚å˜=õ"oS7š¨AkÖB§Ñœc¾.ë5ߦǦ^¤YîøEB·x‡û%0¨=÷Ñï@]Øø\0ûÍð sŸ)Fï ië3zÿÙû0ï5ÌýÜÁaÝZȞĻº]"×£¹[Ö9¬Øö3ÌþoLk Ú™ ÞV¨¬)±BAbÔª ŸõEàùxù>„E›^¢¹÷È<[‹ÊýEF¨ÃÔÁÞRS¸X[ Óhjô‡ŠÛSb3 Í÷ü+š¾ÝÃü­‚ÅJ£ÕJɯÿ˜íí„ŒòNÖt|'1Åoü›0Ê9ãy1'ù·o¢—£ÙÛÑn´xÄf=ìm·T±âÕ enjN³#aOä.¬-/^ƒÝ­‘W÷ºý<±D`ò+¥$ò½ö¹4Y5`mt)¡WëÕÅÌ ÖÔÛOŸ=“Ïa/‰N8~êý·À`ïdkeܨµË¡êÀ`)ùgìªÎM‚«&øØdÓV%VÔ·ªLôóÝ÷¿ 5ný'»ëÂáÊi[½±Ï\—–©gʌ’ăÚpú/~»Ý|Z÷ýÃÄÕÇí•:àº/²DŸ€é\1èZƒ`Ìl3Æ¿£y›eC¨WTQ™ÈÈKk³þM×Vžþ‡ž=Ñ(ÌÍLÍM¤RŒ},Ü„÷ è=`EdgVK¶u ìñ2a¢Úù½XdBP‘’“’£d‚A;éUQßýÊBUª¡]/cú†»»ÚÎ[57Eó°à9C‹”ŒË¿5 ¥ã·Rñ:Œ{&äÂüy¹0@êÄŽœš¶?#s[Õ¤lN1á-¶SBBN~/?Ë‚­¸j|+ÕXe v˜ ~eØ‘Ë»K/÷bGÖúéý+|~FåŒë„qƒˆ ¨:ÕGœ†gTÕ®´¤\]ç%aÄJT£ø,= 3ÜjÔ—2Ìi=.P#!&@PÄ/µ©°¦ÙŒ2ÑLj^!YU_v¡´n¡š(.‹­ˆF¤ä +¶ÃIp•p/áŒf¦Ä§&¤Äâ\©µéÕÉ_:ÃL ñq£M‘ÑmÂGX­>‘#Íárr³˜£¾G"ŽÊã⎤=¦‹œ+h(6Ô_ïn¹ ++`)üO‚·•™è†22ó`v >V§2¨Ü’Ûòür£@Ïÿ_̳Å~plú}º—m΢9 æ,ú>íû ‰žÕ¬¿?¥|ßlTW–V–üžöû¥ßüïõWþða^ù}©hêŸì|ß×Cj¤ Íy›Éøþ®ï5»¿—ì>ÿSí§‹¨ðõ¹¥1³¥ šüæ—Ïù]³€]øù©V®–›?gñ´5ÒK—54Ì•Ÿ·‘ujeÆÌ,éØÔª‚Bù䤚_©bpµ XÅÕüñÛ ¤J@¼’ß‹—³ _±ìö‡ÍëkjÈñõ#Õ‰ßK‘«ÅåìÏÖÞýδqIKó\¹¿z»~z³ÏÊK˜+í›P•Ÿ-ŸTh/U­QŒ)Ù 5¦duÉï%ËÙ_,¿ý~󆚚ùr 7°‚¼•$ý[8ì-¨ '1ƒBøÚ}1"‹+é¹wŸ®˜ÛÒ2\I×+éÔ”º¼\ùÔ”P%ý»f »ð³ç‹®Ü[¼°¹y¦œð¹ÙX…ŸM©-˜š+—Q[X$Ÿž^à UŽ4ì|õÓ”Lÿn4}úôÅÓÙ~§M¿7(T1ý»Xˆ(tc:§Ü‚¤xÎnîM\»¸¿;‰“@€eµ +Ë +endstream +endobj +1338 0 obj +<< +/Filter /FlateDecode +/Length 5265 +/Subtype /Type1C +>> +stream +H‰|V}T×ßa™ÙE`pw”»3Š_d â']TPÝò©DÔewaaY"£¨1Ú¦JlEE” +"ÒˆDi<6ŠÚR­¥ Öjh4½C9§oIrNÿê™sÞ™{ß»÷þîïÝ{g‘«‹ˆ Ÿ¨4MjlB@|±Í¬3hmy ¢òr Î^P‚·«Ày0h ªšá:ú݆¼àµìö ŸrIî´ìŸ`*¶šŒ– ½Îš¹Õœ¹5gež;Ë2ðo-[è\C'×%|HppðäÊk yF>±8¿À˜›Ï¯µèólÖ<›®Àhâ599ü¤‹|ÞfÌ7Úv:•?@äÍù¼Ñ\`2ÚxÞÌ2c{›ÑÀØtc®Î¶Ïsîü˜ùBñf }ñɳSJ,ÀÊ|^g1¨±—¼É(ú¼w,6³1?H˜Tl5òKyƒ1S$"ð#r#Dž´h–T´ÀU´P*Š’Šâ¼ˆ]Dј]Q¼H+: ê=½"hŸØE!¾tѺrgŠ+\®U®ƒ¤Š¬#¿¤VSùT-5! ¬”¤Kú¤^R´Óm¶ÛûnÇ݆§(§ÔLyéîïžä>àéQåIznò ~T¸ Cë%È>Á“óá"RKÐ\h`’g0«áb}ûÑßjªLW®7(Ñl'^wЃëKð +‚Å‚u\Å ï¨mè9Y}ò„ã, >×3ÖD¯ÉÓjÔZ8+¢È¢³ƒÅYXùú?à9”Û›Öʵ¦ÇÕƳ»J*Êwsµ_“ð+ +{v…B½w\ Ab!}|ó^eqE^ùœÒ%ÛcµÒÕ±[æ Z‰ÔO˜ùê[`€U?DÄú-EÙÛUeTýPÿ]`w©¬·KQäD<=p·Œ;⨩þHÕz¸íÄEöNKꆵæ´d'+BÎ¥KØ*îrf"ƒkåttâ÷$,¢à¨p|“~#¾‘·àÂñÅ~S§ƽ ¼z Sž$öÆçª$Š‡·[NßèS>Žû; +D>ó£KBsÊg—D1²*gKr¸ráP,Sýú “uùJ%wåÔÙîZUÿ®s‚2ÝdJV)– ¦ï˜^Ÿ‘³Ý´K­Ó7]V^<ÙÖ£¢÷cò)Ę£@ˆµøû™z{£½Ñ1Vý´y OzïÎ¥WÀ*!px£0ä7‡G +$—›õ§O©ªì%iy:Å×”¿yOzYnù»E)¬☻1ÑEeûJ÷s»-…l|îÕ>îs{{g;ٟ뀇u?ö(Üq6iwÃn:—¦d“S}Š†\'Õ½vS»SmH™TÓ]¸ú4{#P…òz) +¡ az†„¥2Ž/&Ñf +e|¿˜„ê*hÈ ˜ àG*F?xí੃:¨¯ÙT£ï@~Óé²@BnœE –âzÑÀô3U¼¬bJÛúJ° n8ßÅu´5]½¥|–ðiÄQn!a¨éL_¿ò–¹só Õ©´„ß±‘Ë?x_›.ãøøwŽVöîyëÆM۲øM"\{(Å›¡[Ö˜UëwDï(®p¼ÇÑ%û@.l9qBÅÂP1%¹÷¥³hFØS`áçÏ¿ÏÞK%{š¹fð$k­êV°hZŠ¼Ñ»( <ÐØ=üÙáÚ&Ž9îB +¸ƒxzµÁb±~{_)n—é jºy»sãÊ0Jpßú×Õ=ª®Ø¥Ç7Uº?‘Ã)LÕÇ Um,LÖ ÞΡEoE"U¥ªhgEÕŽŽÂƒ +Ba*¾9™3„XÈ0¨Ëu ›ý~±…g×i|¦’¢Ãð-LJƒ~<<èƒA‡R˜ŠJ±²[Sôƒà… w‡ð€ xNŽ» > ªFî¯ÑLꃒ¼M,’…ãB™ûâO ¸ß¹g×9®h².{M}(‹vàoT`çìóÛüRºa`$¼Ø‘‘†º+=ŒœÁŸ¢šÂI^ªñü/ÏUÅ™…ƒØÝ¥MÑÌ8NWº1ˆ€‹ ¨x ^‚GV@âpŠ,`DaFåpPœqbÂ!p@EäRAuÁ è +ŠÆ5&[Fkij_S?Ö®®êþ»ÿ÷ÞÿþïûÞû½eï½ñ¥òI¸z#ÊI>cñ¸Ší­‰ùÿ½Öå 8H­ŒË¥¹È³ÔJÜh²‘øµ Z]L·TÊÁ™Þbà&Ú—¤¤.Nñص`Â:ý¡ú‰úÁ*HUaæDº +¾z’÷.ÿßLt©g¥KÅü»¤DcèÇPzâáÉ—æ§òhç<ç<ýñCXŽPŽÖ%£ô/ròŒuóÛf5ûN€Éä0³p=Ž$”žšç^è2–Ôý$úâdù{oŒx”ì¤0°Ã”{ÁCð²†ÿ .‘‘MDF\Èf„•-Ö¹p%^É°†P¨WÑb.±“ýÞ=‰Ø‘ñÁΓ§>G\ÿî··"›ŒIÎ[ˆÅÚia?¸XvÜöÑú’2ÃQþ—þŠŽËbscÅ•^eï¶+õÂéÍ+ËÜø«öe‡#_eyEæ¼¾¯uKàòÐ(ŸÔ4£sh· FÁz †í®ú`·ì<}ÍPR6ûèœÒ E»lÀÎ<¡~¦îÛs-ù\x¹MÓmî¹úTy-µ=ºVhÜ´ìˆï³t_vúš$3¡¯3üÃÙÄ@eðæØEBÍ®Ôa^kÑo„çd,GÍ52ucŸ¦Ÿ‡ÀŸ^õbý52¦MœU[Þªl¨=ÕÛ{aWf•P㨲èõ¥‹xâéâIç{0:F|´­vg¤RµeÛ2ÿ³9J`ƒ$­à`! A6àk8 !° +™ VúNcõ=ÂÒ€ý±74–! ÿqÃFÌï÷×#H,qR0dŒjý¼ª«`#H +†­>ÓgA‡}Á ·]r’ƒÆ@oÚ‹´PÜ™”…êy{|lÐiOÔý)s¡QAæш d¡þ x/˜C&©¥ýà‡Šzdð ç +/ä7 •âf•Þ*ºQ܇‚ùÍ¢€Ã+ºH«æÒØõ¡ƒ¿ÐH5ÅdÌKŸ¯[l£§u÷µwÓ~gè|å›qÏœ4íRü¦½•ñSú@Ô(ÈlfYœÁt©ôÀZúUNÂá7X)²çŽÛ“™”1AO§5¦×iZ‚aœ‚øÒLž’Ø ÀRú +°æöoJš>å1¥[‡÷VÁæŽX…–vêc9Ô3°Cú”"‹èÄ[³)-&=­îiË8­îXÞ +tñCŸQ¤ša“¢û UJfëJ¹d{r7Ÿ†›R8õl(ƒØC[.Cþ9E±óµÿ]¬†´wÞÙWÃtø ¦qéÒvùþ*ý¹v%,d€Ùø’ÌöX¹sW¼pÒ™:Zû÷o/ò÷K¶$‹9 Yb$ôÂ)¹ŽW}_w_47Õ +y4—^Fq»a¹,Ë¥Ïu‰;bùøäò¦«×Ê "›…=ž§Zâj[4ö=X·C±{H‡5r®ãÐ-ì&×6tª»xlF??¦½^[~EÈöÈm¢j?=èfƒ>XŸ €;ÔÉ +¦¡­°±¦…ÿ¡>h‘ÈuxF‡ú«¶Ö´èý7†‚B%KÜu(ÑU`‹è¨wî¶4>‘e¥|¹/Ž_Ôþ‹8`¸Ü5À7Wåd—‰Ü™c@QÜíâÕ×Ñ<ñw&¶d™ñÆ<º/W‰¬ÕÇC-9€euH·pÅäqƒa2R¦gêSÃÍA<±ìJæ1âú|Ø\¿z²³F0aô_ûRÀÓú:}w§RêapMZבiÐÐ +Y[“T|@ÔåûO_»Ý^U ³Úl%;_Ôów¯ßXÕÁX­%„ äUžP‚]Œ#dáBò)ù„¸½pŸÞžÂ£Í[*3*2g#ïxêú~ÑðNÖ’¢û§4p %Ê‘Öv–tÃXÆþ¸qý&—ì^Áhg†{~œ¹`nºx´ô@îaìÆ-¶ ‡ÔÉùñ¼ê¯™q±¢*z·°r×j2úÆæ’X°Á©PŒv$5x +áIŽR†Œ{µ-¥§›wDV¯äÉØ)Nd&™øÔì®´W¶T‹¦zæ†ßuŸ——% +I„¡v´ÝʼÁß½WrþbgGyÿ¯J8Ápî™ZL5q'Çd™†´\­§KLŽáWÇuݹW?Ÿ»Øy¶z{t‘`Ê6êtJV=¼Àq¸SV¸ÍBRõÈñ¡•.2Î/ªŠŽŸhæ»*T«ERãM 8-¹9ýËm9{S…™š´4µÍ0ðh–ËwVDˆä˜%ó L^Üë䞨ÁêÎ˹IŃIZldÛá#DùL‡™ÖÐ.‘™“¦"¼=`”ž:Æ÷àäô–LÇ¢þ‘ìöÉ%K=cƒƒý·^r·êþ=²L A(3'aŒöƒÒÌàõ0>çšè„Šó;¯òèŒzË9àîòÜÑoýöq‚“—sk8¨Í¦ «ñ± Ñ[`,4ýŸê²iâãxÚ;”Ò%ëº]zÉŠqÁÆ‚™s³Ó'c +#eÊD2·Ú¢4j{=z-t)\)(/åEÄhADʪ(b"Ùæ\–½ñÏÌ\²˜…eºç–_ÿØs5dÙ¿¿_~ß'—{žï÷ó´qSíc£“ìW—>°¼ZQ”—°ÞðuÈfƒð´¦ÿNƒ•Øý/AI¢û‰¢J„2>ºáµLsäE¬Ð¸§aêpYÿN6h7‘í$ëQæ“…Ø`ôï§`Vô¹šDî€øIõ~ö½Š›‹?^š¿½x¨¢ÇÞ®GG uˆV=ý@c$ÑØ-zW‹ìoç¦ÛÇFæØî ×ÛÁC:íwKÍNÖZPõ¶o¤Œ‘†_uäÊ_î·nG©·Ä'0óX3ka/†Mu‘Ûλ,¤Ýÿò!ï»_19š\Ðëûͽ¡ÈÕ«'„>nè±.Tµ'¸›%©–Ü,Þ·k¼héPòmGH°™mŽeíêé®á D¤»@«Y„Œ¤Eå7ÓªD»@¬tn§u¸š³…'ŽÇØÉ˧ÛzxÐ:¯û¤×Á–9‡æyx–h 6ØÝðL–:EÏÎ#c¼ŒVåPΡ¯ çÈ5Zð õœ]´W—³Åµ“ßðÐE6’+4Yÿmþ¢×GΩå8“«†òNxgîš o4ãkHˆ”€ñpõ 7îÔa ÃÅ©#›¨¤!Ä]î©ô@‘ÆëÇ…‰<¨c °¡Í æJÇ?ÇŒ‘õùjõy:ƒL‘`´}*pGÝ× +ûäÒ(ÉaðÖ©ÒT9)vŠER!θ8çšuÍî…†è©R&”: EõÂ3'ÞoT€•1d'\Dó¹H:£–z…Hä5â×ÁëTô†åA$nÙ&Û:í±lr(²ÈÈXm µ«Ë.Ø\GPÓÕïp”þÌ6«‚­JGR«*øn¼P×*´xÌR“§AâNÚlöZ¡Öi¯w43vz®ëft66ýÃ=(Æö;† +ˆ$Õx*¥#¸&œ/{Îo‰1®R¡ôš>Å’Ô÷¼bT"ø©á¡ C£èVùÌÃø¢‡Ï¼tMÕQ{ͧ$“|ˆïÆàÊ’fBI# +cZ ¡%Úàø/¦4RÈ·h¢jNÁšx*Ž–“\ï¦o OüôŸà +s籋ÎVåË%,Y¿úMÂòÇ–jY(üB¿€6»‡ž¼vgølã)™‹ÿŽ.»•Ú›×¹µ¼ü •·¬É/2]–dÅ)C†,Ëa™"•ò×2G2GÉxô½¼‚ëýxŸ~E³>´+aCÊŸíA½^™yNùËô¯?‡í´ +endstream +endobj +1339 0 obj +<< +/BaseFont /TXDFBH+Wingdings-Regular +/CIDSystemInfo 1747 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1748 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1340 0 obj +[1749 0 R] +endobj +1341 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1342 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/R/S/a/b/comma/d/e/g/i/l/m/n/o/r/s/space/t/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1750 0 R +/FontName /ATGBSO+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +1343 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +1345 0 obj +<< +/Filter /FlateDecode +/Length 280 +>> +stream +H‰\‘ÏjÄ Æï>Åw‹I¶›° ²¥Cÿдè$#Æòö5l¡‚úsæûdù­yjŒöÀßÝ,[ô0h£.óê$B£6,/@ié÷S\åÔYÆÉÜn‹Ç©1ÃÌ„þAÉÅ» jîñÈø›Sè´áðukÀÛÕÚœÐxÈ ®Aá@½töµ›x´Eyí·yþŸ›E(â9OÅÈYáb;‰®3#2‘ѨA<Ó¨õ/Ÿï¶~ßc¢â,£‰sâsä> +endobj +1347 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1348 0 obj +[1749 0 R] +endobj +1349 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1350 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 1753 0 R +/FontName /UQBHMA+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1351 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +1353 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/one/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1754 0 R +/FontName /BLLXGM+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +1354 0 obj +<< +/Filter /FlateDecode +/Length 425 +>> +stream +H‰\“Íjã@„ïósLA¿Óƒ;² ñîÈÒØ+ˆ%1–~ûR™V Í7š®RÑ´’Ín»úÙ&al÷~¶Ç~è‚¿Œ×Ðz{ð§~0Yn»¾ï»åÙž›É$Q¼¿]fÞ ÇÑT•M>ãáe7û°îƃ4É{è|臓}ø³Ù?Úd¦/öÃlS[׶óÇhôÖL¿š³·É"{Úuñ¼ŸoOQóSñû6y›/ûŒaÚ±ó—©i}h†“7U¯ÚV¯ñªºÿÎËœ²Ã±ýÛSe¯±8MEpצÊÓe—ÈòüB~SS¬/P_dä œ“s𚼎\²¦DMY pI.ÁŽìÀ+ò +Ì %28ú;ø;ú8ø8ú8ø8ú8ø¿+ø®P+Ð +µ­P+Ð +µ²håÞ#°’üL~3§ §°o‚¾É–¼3¿ ¿ÜûŽ*{¨è¡2›"›2›"›2›"›2›"›2›"›2›"›2"Ï +5yšÁgÍ÷qÁpܧc§Ù~Ï`{ !Žß2òËÜaâúÁÿÓ8Ù¨Âmþ 0¿Ðo +endstream +endobj +1355 0 obj +<< +/K [1417 0 R 1419 0 R 1421 0 R 1423 0 R 1425 0 R] +/P 273 0 R +/S /L +>> +endobj +1356 0 obj +<< +/K 1427 0 R +/P 273 0 R +/S /L +>> +endobj +1357 0 obj +<< +/C /Pa2 +/K [320 0 R 321 0 R] +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1358 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1359 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1360 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1361 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1362 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1363 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1364 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1365 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1366 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1367 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1368 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1369 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1370 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1371 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1372 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1373 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1374 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1375 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1376 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1377 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1378 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1379 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1380 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1381 0 obj +<< +/C /Pa2 +/K 323 0 R +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1382 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1383 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1384 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1385 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1386 0 obj +<< +/C /Pa2 +/P 273 0 R +/S /Lauftext_1._Abs +>> +endobj +1387 0 obj +<< +/C /Pa10 +/K 333 0 R +/P 273 0 R +/S /Zwischenhead_2 +>> +endobj +1388 0 obj +<< +/K [1432 0 R 1434 0 R 1436 0 R 1438 0 R 1440 0 R] +/P 274 0 R +/S /L +>> +endobj +1389 0 obj +<< +/C /Pa3 +/P 274 0 R +/S /Lauftext +>> +endobj +1390 0 obj +<< +/C /Pa3 +/P 274 0 R +/S /Lauftext +>> +endobj +1391 0 obj +<< +/K [1444 0 R 1446 0 R 1448 0 R 1450 0 R 1452 0 R 1454 0 R] +/P 274 0 R +/S /L +>> +endobj +1392 0 obj +<< +/C /Pa10 +/P 274 0 R +/S /Zwischenhead_2 +>> +endobj +1393 0 obj +<< +/K [1518 0 R 1520 0 R 1544 0 R 1546 0 R 1548 0 R 1550 0 R] +/P 274 0 R +/S /L +>> +endobj +1394 0 obj +<< +/K [1552 0 R 1554 0 R] +/P 274 0 R +/S /L +>> +endobj +1395 0 obj +<< +/C /Pa3 +/P 274 0 R +/S /Lauftext +>> +endobj +1396 0 obj +<< +/C /Pa3 +/P 274 0 R +/S /Lauftext +>> +endobj +1397 0 obj +<< +/C /Pa3 +/P 274 0 R +/S /Lauftext +>> +endobj +1398 0 obj +<< +/K [1556 0 R 1558 0 R 1560 0 R 1562 0 R 1564 0 R 1566 0 R] +/P 274 0 R +/S /L +>> +endobj +1399 0 obj +<< +/K [1568 0 R 1570 0 R 1572 0 R 1574 0 R 1576 0 R 1578 0 R 1580 0 R] +/P 274 0 R +/S /L +>> +endobj +1400 0 obj +<< +/K [1604 0 R 1606 0 R 1608 0 R 1610 0 R 1612 0 R 1614 0 R 1616 0 R 1618 0 R 1620 0 R 1622 0 R 1624 0 R 1626 0 R 1628 0 R] +/P 274 0 R +/S /L +>> +endobj +1401 0 obj +<< +/K [1630 0 R 1632 0 R 1634 0 R 1636 0 R 1638 0 R] +/P 274 0 R +/S /L +>> +endobj +1402 0 obj +<< +/K [1640 0 R 1642 0 R 1644 0 R 1646 0 R] +/P 274 0 R +/S /L +>> +endobj +1403 0 obj +<< +/K [1648 0 R 1650 0 R 1652 0 R 1654 0 R 1656 0 R 1658 0 R 1660 0 R 1662 0 R 1664 0 R 1666 0 R 1668 0 R 1670 0 R] +/P 274 0 R +/S /L +>> +endobj +1404 0 obj +<< +/K [1672 0 R 1674 0 R 1676 0 R 1678 0 R 1680 0 R 1682 0 R 1684 0 R] +/P 274 0 R +/S /L +>> +endobj +1405 0 obj +<< +/K [1686 0 R 1688 0 R 1690 0 R 1692 0 R] +/P 274 0 R +/S /L +>> +endobj +1406 0 obj +<< +/K [1696 0 R 1698 0 R 1700 0 R 1702 0 R 1704 0 R 1706 0 R 1708 0 R 1710 0 R 1712 0 R] +/P 274 0 R +/S /L +>> +endobj +1407 0 obj +<< +/K [1714 0 R 1716 0 R 1718 0 R 1720 0 R 1722 0 R 1724 0 R 1726 0 R 1728 0 R 1730 0 R 1732 0 R 1734 0 R 1736 0 R 1738 0 R 1740 0 R] +/P 274 0 R +/S /L +>> +endobj +1408 0 obj +<< +/C /Pa7 +/K 1755 0 R +/P 276 0 R +/S /NormalParagraphStyle +>> +endobj +1409 0 obj +<< +/C /Pa7 +/K 1756 0 R +/P 279 0 R +/S /NormalParagraphStyle +>> +endobj +1410 0 obj +<< +/C /Pa7 +/K 1757 0 R +/P 283 0 R +/S /NormalParagraphStyle +>> +endobj +1411 0 obj +<< +/C /Pa7 +/K 1758 0 R +/P 285 0 R +/S /NormalParagraphStyle +>> +endobj +1412 0 obj +<< +/C /Pa7 +/K 1759 0 R +/P 286 0 R +/S /NormalParagraphStyle +>> +endobj +1413 0 obj +<< +/C /Pa7 +/K 1760 0 R +/P 290 0 R +/S /NormalParagraphStyle +>> +endobj +1414 0 obj +<< +/C /Pa7 +/K 1761 0 R +/P 298 0 R +/S /NormalParagraphStyle +>> +endobj +1415 0 obj +<< +/C /Pa20 +/P 303 0 R +/S /Endnote_1._Abs +>> +endobj +1416 0 obj +<< +/K 307 0 R +/P 1417 0 R +/S /Lbl +>> +endobj +1417 0 obj +<< +/C /Pa4 +/K [1416 0 R 308 0 R] +/P 1355 0 R +/S /LI +>> +endobj +1418 0 obj +<< +/K 309 0 R +/P 1419 0 R +/S /Lbl +>> +endobj +1419 0 obj +<< +/C /Pa5 +/K [1418 0 R 310 0 R] +/P 1355 0 R +/S /LI +>> +endobj +1420 0 obj +<< +/K 311 0 R +/P 1421 0 R +/S /Lbl +>> +endobj +1421 0 obj +<< +/C /Pa5 +/K [1420 0 R 312 0 R] +/P 1355 0 R +/S /LI +>> +endobj +1422 0 obj +<< +/K 313 0 R +/P 1423 0 R +/S /Lbl +>> +endobj +1423 0 obj +<< +/C /Pa5 +/K [1422 0 R 314 0 R] +/P 1355 0 R +/S /LI +>> +endobj +1424 0 obj +<< +/K 315 0 R +/P 1425 0 R +/S /Lbl +>> +endobj +1425 0 obj +<< +/C /Pa5 +/K [1424 0 R 316 0 R] +/P 1355 0 R +/S /LI +>> +endobj +1426 0 obj +<< +/K 318 0 R +/P 1427 0 R +/S /Lbl +>> +endobj +1427 0 obj +<< +/A << +/LineHeight 11.0 +/O /Layout +/SpaceAfter 8.0 +/TextAlign /Justify +/TextIndent -11.0 +/StartIndent 34.0 +>> +/K [1426 0 R 319 0 R] +/P 1356 0 R +/S /LI +>> +endobj +1428 0 obj +<< +/K [324 0 R 1762 0 R 325 0 R 1763 0 R 326 0 R 1764 0 R 327 0 R 1765 0 R 328 0 R 1766 0 R 329 0 R 1767 0 R 330 0 R 1768 0 R 331 0 R 1769 0 R +332 0 R] +/P 1770 0 R +/S /TD +>> +endobj +1429 0 obj +<< +/K 1430 0 R +/P 343 0 R +/S /Reference +>> +endobj +1430 0 obj +<< +/K 344 0 R +/P 1429 0 R +/S /Link +>> +endobj +1431 0 obj +<< +/K 362 0 R +/P 1432 0 R +/S /Lbl +>> +endobj +1432 0 obj +<< +/C /Pa4 +/K [1431 0 R 363 0 R] +/P 1388 0 R +/S /LI +>> +endobj +1433 0 obj +<< +/K 365 0 R +/P 1434 0 R +/S /Lbl +>> +endobj +1434 0 obj +<< +/C /Pa5 +/K [1433 0 R 366 0 R] +/P 1388 0 R +/S /LI +>> +endobj +1435 0 obj +<< +/K 368 0 R +/P 1436 0 R +/S /Lbl +>> +endobj +1436 0 obj +<< +/C /Pa5 +/K [1435 0 R 369 0 R] +/P 1388 0 R +/S /LI +>> +endobj +1437 0 obj +<< +/K 370 0 R +/P 1438 0 R +/S /Lbl +>> +endobj +1438 0 obj +<< +/C /Pa5 +/K [1437 0 R 371 0 R] +/P 1388 0 R +/S /LI +>> +endobj +1439 0 obj +<< +/K 372 0 R +/P 1440 0 R +/S /Lbl +>> +endobj +1440 0 obj +<< +/C /Pa5 +/K [1439 0 R 373 0 R] +/P 1388 0 R +/S /LI +>> +endobj +1441 0 obj +<< +/K 400 0 R +/P 1771 0 R +/S /TD +>> +endobj +1442 0 obj +<< +/K [401 0 R 402 0 R] +/P 1772 0 R +/S /TD +>> +endobj +1443 0 obj +<< +/K [499 0 R 498 0 R] +/P 1444 0 R +/S /Lbl +>> +endobj +1444 0 obj +<< +/C /Pa12 +/K [1443 0 R 500 0 R] +/P 1391 0 R +/S /LI +>> +endobj +1445 0 obj +<< +/K [502 0 R 501 0 R] +/P 1446 0 R +/S /Lbl +>> +endobj +1446 0 obj +<< +/C /Pa13 +/K [1445 0 R 503 0 R] +/P 1391 0 R +/S /LI +>> +endobj +1447 0 obj +<< +/K [505 0 R 504 0 R] +/P 1448 0 R +/S /Lbl +>> +endobj +1448 0 obj +<< +/C /Pa13 +/K [1447 0 R 506 0 R] +/P 1391 0 R +/S /LI +>> +endobj +1449 0 obj +<< +/K [508 0 R 507 0 R] +/P 1450 0 R +/S /Lbl +>> +endobj +1450 0 obj +<< +/C /Pa13 +/K [1449 0 R 509 0 R] +/P 1391 0 R +/S /LI +>> +endobj +1451 0 obj +<< +/K [511 0 R 510 0 R] +/P 1452 0 R +/S /Lbl +>> +endobj +1452 0 obj +<< +/C /Pa13 +/K [1451 0 R 512 0 R] +/P 1391 0 R +/S /LI +>> +endobj +1453 0 obj +<< +/K [514 0 R 513 0 R] +/P 1454 0 R +/S /Lbl +>> +endobj +1454 0 obj +<< +/C /Pa14 +/K [1453 0 R 515 0 R] +/P 1391 0 R +/S /LI +>> +endobj +1455 0 obj +<< +/K 529 0 R +/P 1773 0 R +/S /TD +>> +endobj +1456 0 obj +<< +/K [530 0 R 531 0 R 532 0 R 534 0 R] +/P 1774 0 R +/S /TD +>> +endobj +1457 0 obj +<< +/K 550 0 R +/P 1775 0 R +/S /TD +>> +endobj +1458 0 obj +<< +/K 551 0 R +/P 1775 0 R +/S /TD +>> +endobj +1459 0 obj +<< +/K [553 0 R 552 0 R] +/P 1460 0 R +/S /Lbl +>> +endobj +1460 0 obj +<< +/C /Pa16 +/K [1459 0 R 554 0 R] +/P 1776 0 R +/S /LI +>> +endobj +1461 0 obj +<< +/K [557 0 R 556 0 R] +/P 1462 0 R +/S /Lbl +>> +endobj +1462 0 obj +<< +/C /Pa16 +/K [1461 0 R 558 0 R] +/P 1776 0 R +/S /LI +>> +endobj +1463 0 obj +<< +/K [562 0 R 561 0 R] +/P 1464 0 R +/S /Lbl +>> +endobj +1464 0 obj +<< +/C /Pa16 +/K [1463 0 R 563 0 R] +/P 1776 0 R +/S /LI +>> +endobj +1465 0 obj +<< +/K [565 0 R 564 0 R] +/P 1466 0 R +/S /Lbl +>> +endobj +1466 0 obj +<< +/C /Pa16 +/K [1465 0 R 566 0 R] +/P 1776 0 R +/S /LI +>> +endobj +1467 0 obj +<< +/K [569 0 R 568 0 R] +/P 1468 0 R +/S /Lbl +>> +endobj +1468 0 obj +<< +/C /Pa16 +/K [1467 0 R 570 0 R] +/P 1776 0 R +/S /LI +>> +endobj +1469 0 obj +<< +/K [572 0 R 571 0 R] +/P 1470 0 R +/S /Lbl +>> +endobj +1470 0 obj +<< +/C /Pa16 +/K [1469 0 R 573 0 R] +/P 1776 0 R +/S /LI +>> +endobj +1471 0 obj +<< +/K [576 0 R 575 0 R] +/P 1472 0 R +/S /Lbl +>> +endobj +1472 0 obj +<< +/C /Pa16 +/K [1471 0 R 577 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1473 0 obj +<< +/K [579 0 R 578 0 R] +/P 1474 0 R +/S /Lbl +>> +endobj +1474 0 obj +<< +/C /Pa16 +/K [1473 0 R 580 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1475 0 obj +<< +/K [583 0 R 582 0 R] +/P 1476 0 R +/S /Lbl +>> +endobj +1476 0 obj +<< +/C /Pa16 +/K [1475 0 R 584 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1477 0 obj +<< +/K [587 0 R 586 0 R] +/P 1478 0 R +/S /Lbl +>> +endobj +1478 0 obj +<< +/C /Pa16 +/K [1477 0 R 588 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1479 0 obj +<< +/K [591 0 R 590 0 R] +/P 1480 0 R +/S /Lbl +>> +endobj +1480 0 obj +<< +/C /Pa16 +/K [1479 0 R 592 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1481 0 obj +<< +/K [595 0 R 594 0 R] +/P 1482 0 R +/S /Lbl +>> +endobj +1482 0 obj +<< +/C /Pa16 +/K [1481 0 R 596 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1483 0 obj +<< +/K [598 0 R 597 0 R] +/P 1484 0 R +/S /Lbl +>> +endobj +1484 0 obj +<< +/C /Pa16 +/K [1483 0 R 599 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1485 0 obj +<< +/K [601 0 R 600 0 R] +/P 1486 0 R +/S /Lbl +>> +endobj +1486 0 obj +<< +/C /Pa16 +/K [1485 0 R 602 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1487 0 obj +<< +/K [604 0 R 603 0 R] +/P 1488 0 R +/S /Lbl +>> +endobj +1488 0 obj +<< +/C /Pa16 +/K [1487 0 R 605 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1489 0 obj +<< +/K [607 0 R 606 0 R] +/P 1490 0 R +/S /Lbl +>> +endobj +1490 0 obj +<< +/C /Pa16 +/K [1489 0 R 608 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1491 0 obj +<< +/K [610 0 R 609 0 R] +/P 1492 0 R +/S /Lbl +>> +endobj +1492 0 obj +<< +/C /Pa16 +/K [1491 0 R 611 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1493 0 obj +<< +/K [613 0 R 612 0 R] +/P 1494 0 R +/S /Lbl +>> +endobj +1494 0 obj +<< +/C /Pa16 +/K [1493 0 R 614 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1495 0 obj +<< +/K [616 0 R 615 0 R] +/P 1496 0 R +/S /Lbl +>> +endobj +1496 0 obj +<< +/C /Pa16 +/K [1495 0 R 617 0 R] +/P 1777 0 R +/S /LI +>> +endobj +1497 0 obj +<< +/K 621 0 R +/P 1778 0 R +/S /TD +>> +endobj +1498 0 obj +<< +/K 622 0 R +/P 1778 0 R +/S /TD +>> +endobj +1499 0 obj +<< +/K [624 0 R 623 0 R] +/P 1500 0 R +/S /Lbl +>> +endobj +1500 0 obj +<< +/C /Pa16 +/K [1499 0 R 625 0 R] +/P 1779 0 R +/S /LI +>> +endobj +1501 0 obj +<< +/K [627 0 R 626 0 R] +/P 1502 0 R +/S /Lbl +>> +endobj +1502 0 obj +<< +/C /Pa16 +/K [1501 0 R 628 0 R] +/P 1779 0 R +/S /LI +>> +endobj +1503 0 obj +<< +/K [630 0 R 629 0 R] +/P 1504 0 R +/S /Lbl +>> +endobj +1504 0 obj +<< +/C /Pa16 +/K [1503 0 R 631 0 R] +/P 1779 0 R +/S /LI +>> +endobj +1505 0 obj +<< +/K [634 0 R 633 0 R] +/P 1506 0 R +/S /Lbl +>> +endobj +1506 0 obj +<< +/C /Pa16 +/K [1505 0 R 635 0 R] +/P 1779 0 R +/S /LI +>> +endobj +1507 0 obj +<< +/K [638 0 R 637 0 R] +/P 1508 0 R +/S /Lbl +>> +endobj +1508 0 obj +<< +/C /Pa16 +/K [1507 0 R 639 0 R] +/P 1779 0 R +/S /LI +>> +endobj +1509 0 obj +<< +/K [642 0 R 641 0 R] +/P 1510 0 R +/S /Lbl +>> +endobj +1510 0 obj +<< +/C /Pa16 +/K [1509 0 R 643 0 R] +/P 1779 0 R +/S /LI +>> +endobj +1511 0 obj +<< +/K [647 0 R 646 0 R] +/P 1512 0 R +/S /Lbl +>> +endobj +1512 0 obj +<< +/C /Pa16 +/K [1511 0 R 648 0 R] +/P 1780 0 R +/S /LI +>> +endobj +1513 0 obj +<< +/K [651 0 R 650 0 R] +/P 1514 0 R +/S /Lbl +>> +endobj +1514 0 obj +<< +/C /Pa16 +/K [1513 0 R 652 0 R] +/P 1780 0 R +/S /LI +>> +endobj +1515 0 obj +<< +/K [654 0 R 653 0 R] +/P 1516 0 R +/S /Lbl +>> +endobj +1516 0 obj +<< +/C /Pa16 +/K [1515 0 R 655 0 R] +/P 1780 0 R +/S /LI +>> +endobj +1517 0 obj +<< +/K [662 0 R 661 0 R] +/P 1518 0 R +/S /Lbl +>> +endobj +1518 0 obj +<< +/C /Pa12 +/K [1517 0 R 664 0 R] +/P 1393 0 R +/S /LI +>> +endobj +1519 0 obj +<< +/K [669 0 R 668 0 R] +/P 1520 0 R +/S /Lbl +>> +endobj +1520 0 obj +<< +/C /Pa13 +/K [1519 0 R 671 0 R] +/P 1393 0 R +/S /LI +>> +endobj +1521 0 obj +<< +/K 672 0 R +/P 1781 0 R +/S /TD +>> +endobj +1522 0 obj +<< +/K [673 0 R 1782 0 R] +/P 1783 0 R +/S /TD +>> +endobj +1523 0 obj +<< +/K [676 0 R 675 0 R] +/P 1524 0 R +/S /Lbl +>> +endobj +1524 0 obj +<< +/C /Pa18 +/K [1523 0 R 677 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1525 0 obj +<< +/K [682 0 R 681 0 R 680 0 R 679 0 R] +/P 1526 0 R +/S /Lbl +>> +endobj +1526 0 obj +<< +/C /Pa18 +/K [1525 0 R 683 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1527 0 obj +<< +/K [687 0 R 686 0 R 685 0 R 684 0 R] +/P 1528 0 R +/S /Lbl +>> +endobj +1528 0 obj +<< +/C /Pa18 +/K [1527 0 R 688 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1529 0 obj +<< +/K [692 0 R 691 0 R 690 0 R 689 0 R] +/P 1530 0 R +/S /Lbl +>> +endobj +1530 0 obj +<< +/C /Pa18 +/K [1529 0 R 693 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1531 0 obj +<< +/K [697 0 R 696 0 R 695 0 R 694 0 R] +/P 1532 0 R +/S /Lbl +>> +endobj +1532 0 obj +<< +/C /Pa18 +/K [1531 0 R 698 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1533 0 obj +<< +/K [704 0 R 703 0 R 702 0 R 701 0 R] +/P 1534 0 R +/S /Lbl +>> +endobj +1534 0 obj +<< +/C /Pa18 +/K [1533 0 R 705 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1535 0 obj +<< +/K [709 0 R 708 0 R 707 0 R 706 0 R] +/P 1536 0 R +/S /Lbl +>> +endobj +1536 0 obj +<< +/C /Pa18 +/K [1535 0 R 710 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1537 0 obj +<< +/K [714 0 R 713 0 R 712 0 R 711 0 R] +/P 1538 0 R +/S /Lbl +>> +endobj +1538 0 obj +<< +/C /Pa18 +/K [1537 0 R 715 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1539 0 obj +<< +/K [719 0 R 718 0 R 717 0 R 716 0 R] +/P 1540 0 R +/S /Lbl +>> +endobj +1540 0 obj +<< +/C /Pa18 +/K [1539 0 R 720 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1541 0 obj +<< +/K [724 0 R 723 0 R 722 0 R 721 0 R] +/P 1542 0 R +/S /Lbl +>> +endobj +1542 0 obj +<< +/C /Pa18 +/K [1541 0 R 725 0 R] +/P 1782 0 R +/S /LI +>> +endobj +1543 0 obj +<< +/K [727 0 R 726 0 R] +/P 1544 0 R +/S /Lbl +>> +endobj +1544 0 obj +<< +/C /Pa12 +/K [1543 0 R 729 0 R] +/P 1393 0 R +/S /LI +>> +endobj +1545 0 obj +<< +/K [731 0 R 730 0 R] +/P 1546 0 R +/S /Lbl +>> +endobj +1546 0 obj +<< +/C /Pa13 +/K [1545 0 R 733 0 R] +/P 1393 0 R +/S /LI +>> +endobj +1547 0 obj +<< +/K [737 0 R 736 0 R] +/P 1548 0 R +/S /Lbl +>> +endobj +1548 0 obj +<< +/C /Pa13 +/K [1547 0 R 739 0 R] +/P 1393 0 R +/S /LI +>> +endobj +1549 0 obj +<< +/K [741 0 R 740 0 R] +/P 1550 0 R +/S /Lbl +>> +endobj +1550 0 obj +<< +/C /Pa13 +/K [1549 0 R 743 0 R] +/P 1393 0 R +/S /LI +>> +endobj +1551 0 obj +<< +/K [750 0 R 749 0 R] +/P 1552 0 R +/S /Lbl +>> +endobj +1552 0 obj +<< +/C /Pa12 +/K [1551 0 R 751 0 R] +/P 1394 0 R +/S /LI +>> +endobj +1553 0 obj +<< +/K [756 0 R 755 0 R] +/P 1554 0 R +/S /Lbl +>> +endobj +1554 0 obj +<< +/C /Pa13 +/K [1553 0 R 757 0 R] +/P 1394 0 R +/S /LI +>> +endobj +1555 0 obj +<< +/K [781 0 R 780 0 R] +/P 1556 0 R +/S /Lbl +>> +endobj +1556 0 obj +<< +/C /Pa12 +/K [1555 0 R 782 0 R] +/P 1398 0 R +/S /LI +>> +endobj +1557 0 obj +<< +/K [786 0 R 785 0 R] +/P 1558 0 R +/S /Lbl +>> +endobj +1558 0 obj +<< +/C /Pa13 +/K [1557 0 R 787 0 R] +/P 1398 0 R +/S /LI +>> +endobj +1559 0 obj +<< +/K [790 0 R 789 0 R] +/P 1560 0 R +/S /Lbl +>> +endobj +1560 0 obj +<< +/C /Pa13 +/K [1559 0 R 791 0 R] +/P 1398 0 R +/S /LI +>> +endobj +1561 0 obj +<< +/K [793 0 R 792 0 R] +/P 1562 0 R +/S /Lbl +>> +endobj +1562 0 obj +<< +/C /Pa13 +/K [1561 0 R 794 0 R] +/P 1398 0 R +/S /LI +>> +endobj +1563 0 obj +<< +/K [796 0 R 795 0 R] +/P 1564 0 R +/S /Lbl +>> +endobj +1564 0 obj +<< +/C /Pa13 +/K [1563 0 R 797 0 R] +/P 1398 0 R +/S /LI +>> +endobj +1565 0 obj +<< +/K [802 0 R 801 0 R] +/P 1566 0 R +/S /Lbl +>> +endobj +1566 0 obj +<< +/C /Pa14 +/K [1565 0 R 803 0 R] +/P 1398 0 R +/S /LI +>> +endobj +1567 0 obj +<< +/K [808 0 R 807 0 R] +/P 1568 0 R +/S /Lbl +>> +endobj +1568 0 obj +<< +/C /Pa12 +/K [1567 0 R 809 0 R] +/P 1399 0 R +/S /LI +>> +endobj +1569 0 obj +<< +/K [811 0 R 810 0 R] +/P 1570 0 R +/S /Lbl +>> +endobj +1570 0 obj +<< +/C /Pa13 +/K [1569 0 R 812 0 R] +/P 1399 0 R +/S /LI +>> +endobj +1571 0 obj +<< +/K [814 0 R 813 0 R] +/P 1572 0 R +/S /Lbl +>> +endobj +1572 0 obj +<< +/C /Pa13 +/K [1571 0 R 815 0 R] +/P 1399 0 R +/S /LI +>> +endobj +1573 0 obj +<< +/K [817 0 R 816 0 R] +/P 1574 0 R +/S /Lbl +>> +endobj +1574 0 obj +<< +/C /Pa13 +/K [1573 0 R 818 0 R] +/P 1399 0 R +/S /LI +>> +endobj +1575 0 obj +<< +/K [823 0 R 822 0 R] +/P 1576 0 R +/S /Lbl +>> +endobj +1576 0 obj +<< +/C /Pa13 +/K [1575 0 R 824 0 R] +/P 1399 0 R +/S /LI +>> +endobj +1577 0 obj +<< +/K [826 0 R 825 0 R] +/P 1578 0 R +/S /Lbl +>> +endobj +1578 0 obj +<< +/C /Pa13 +/K [1577 0 R 827 0 R] +/P 1399 0 R +/S /LI +>> +endobj +1579 0 obj +<< +/K [829 0 R 828 0 R] +/P 1580 0 R +/S /Lbl +>> +endobj +1580 0 obj +<< +/C /Pa14 +/K [1579 0 R 830 0 R] +/P 1399 0 R +/S /LI +>> +endobj +1581 0 obj +<< +/K 843 0 R +/P 1784 0 R +/S /TD +>> +endobj +1582 0 obj +<< +/K 844 0 R +/P 1784 0 R +/S /TD +>> +endobj +1583 0 obj +<< +/K [846 0 R 845 0 R] +/P 1584 0 R +/S /Lbl +>> +endobj +1584 0 obj +<< +/C /Pa16 +/K [1583 0 R 847 0 R] +/P 1785 0 R +/S /LI +>> +endobj +1585 0 obj +<< +/K [851 0 R 850 0 R] +/P 1586 0 R +/S /Lbl +>> +endobj +1586 0 obj +<< +/C /Pa16 +/K [1585 0 R 852 0 R] +/P 1785 0 R +/S /LI +>> +endobj +1587 0 obj +<< +/K [854 0 R 853 0 R] +/P 1588 0 R +/S /Lbl +>> +endobj +1588 0 obj +<< +/C /Pa16 +/K [1587 0 R 855 0 R] +/P 1785 0 R +/S /LI +>> +endobj +1589 0 obj +<< +/K [857 0 R 856 0 R] +/P 1590 0 R +/S /Lbl +>> +endobj +1590 0 obj +<< +/C /Pa16 +/K [1589 0 R 858 0 R] +/P 1785 0 R +/S /LI +>> +endobj +1591 0 obj +<< +/K [861 0 R 860 0 R] +/P 1592 0 R +/S /Lbl +>> +endobj +1592 0 obj +<< +/C /Pa16 +/K [1591 0 R 862 0 R] +/P 1785 0 R +/S /LI +>> +endobj +1593 0 obj +<< +/K [865 0 R 864 0 R] +/P 1594 0 R +/S /Lbl +>> +endobj +1594 0 obj +<< +/C /Pa16 +/K [1593 0 R 866 0 R] +/P 1785 0 R +/S /LI +>> +endobj +1595 0 obj +<< +/K [868 0 R 867 0 R] +/P 1596 0 R +/S /Lbl +>> +endobj +1596 0 obj +<< +/C /Pa16 +/K [1595 0 R 869 0 R] +/P 1785 0 R +/S /LI +>> +endobj +1597 0 obj +<< +/K [873 0 R 872 0 R] +/P 1598 0 R +/S /Lbl +>> +endobj +1598 0 obj +<< +/C /Pa16 +/K [1597 0 R 874 0 R] +/P 1786 0 R +/S /LI +>> +endobj +1599 0 obj +<< +/K [877 0 R 876 0 R] +/P 1600 0 R +/S /Lbl +>> +endobj +1600 0 obj +<< +/C /Pa16 +/K [1599 0 R 878 0 R] +/P 1786 0 R +/S /LI +>> +endobj +1601 0 obj +<< +/K [880 0 R 879 0 R] +/P 1602 0 R +/S /Lbl +>> +endobj +1602 0 obj +<< +/C /Pa16 +/K [1601 0 R 881 0 R] +/P 1786 0 R +/S /LI +>> +endobj +1603 0 obj +<< +/K [891 0 R 890 0 R] +/P 1604 0 R +/S /Lbl +>> +endobj +1604 0 obj +<< +/C /Pa12 +/K [1603 0 R 892 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1605 0 obj +<< +/K [894 0 R 893 0 R] +/P 1606 0 R +/S /Lbl +>> +endobj +1606 0 obj +<< +/C /Pa13 +/K [1605 0 R 895 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1607 0 obj +<< +/K [897 0 R 896 0 R] +/P 1608 0 R +/S /Lbl +>> +endobj +1608 0 obj +<< +/C /Pa13 +/K [1607 0 R 898 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1609 0 obj +<< +/K [900 0 R 899 0 R] +/P 1610 0 R +/S /Lbl +>> +endobj +1610 0 obj +<< +/C /Pa13 +/K [1609 0 R 901 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1611 0 obj +<< +/K [904 0 R 903 0 R] +/P 1612 0 R +/S /Lbl +>> +endobj +1612 0 obj +<< +/C /Pa13 +/K [1611 0 R 905 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1613 0 obj +<< +/K [907 0 R 906 0 R] +/P 1614 0 R +/S /Lbl +>> +endobj +1614 0 obj +<< +/C /Pa13 +/K [1613 0 R 908 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1615 0 obj +<< +/K [910 0 R 909 0 R] +/P 1616 0 R +/S /Lbl +>> +endobj +1616 0 obj +<< +/C /Pa13 +/K [1615 0 R 911 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1617 0 obj +<< +/K [913 0 R 912 0 R] +/P 1618 0 R +/S /Lbl +>> +endobj +1618 0 obj +<< +/C /Pa13 +/K [1617 0 R 914 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1619 0 obj +<< +/K [916 0 R 915 0 R] +/P 1620 0 R +/S /Lbl +>> +endobj +1620 0 obj +<< +/C /Pa13 +/K [1619 0 R 917 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1621 0 obj +<< +/K [920 0 R 919 0 R] +/P 1622 0 R +/S /Lbl +>> +endobj +1622 0 obj +<< +/C /Pa13 +/K [1621 0 R 921 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1623 0 obj +<< +/K [923 0 R 922 0 R] +/P 1624 0 R +/S /Lbl +>> +endobj +1624 0 obj +<< +/C /Pa13 +/K [1623 0 R 924 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1625 0 obj +<< +/K [927 0 R 926 0 R] +/P 1626 0 R +/S /Lbl +>> +endobj +1626 0 obj +<< +/C /Pa13 +/K [1625 0 R 928 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1627 0 obj +<< +/K [930 0 R 929 0 R] +/P 1628 0 R +/S /Lbl +>> +endobj +1628 0 obj +<< +/C /Pa14 +/K [1627 0 R 931 0 R] +/P 1400 0 R +/S /LI +>> +endobj +1629 0 obj +<< +/K [935 0 R 934 0 R] +/P 1630 0 R +/S /Lbl +>> +endobj +1630 0 obj +<< +/C /Pa12 +/K [1629 0 R 936 0 R] +/P 1401 0 R +/S /LI +>> +endobj +1631 0 obj +<< +/K [938 0 R 937 0 R] +/P 1632 0 R +/S /Lbl +>> +endobj +1632 0 obj +<< +/C /Pa13 +/K [1631 0 R 939 0 R] +/P 1401 0 R +/S /LI +>> +endobj +1633 0 obj +<< +/K [942 0 R 941 0 R] +/P 1634 0 R +/S /Lbl +>> +endobj +1634 0 obj +<< +/C /Pa13 +/K [1633 0 R 943 0 R] +/P 1401 0 R +/S /LI +>> +endobj +1635 0 obj +<< +/K [945 0 R 944 0 R] +/P 1636 0 R +/S /Lbl +>> +endobj +1636 0 obj +<< +/C /Pa13 +/K [1635 0 R 946 0 R] +/P 1401 0 R +/S /LI +>> +endobj +1637 0 obj +<< +/K [948 0 R 947 0 R] +/P 1638 0 R +/S /Lbl +>> +endobj +1638 0 obj +<< +/C /Pa14 +/K [1637 0 R 949 0 R] +/P 1401 0 R +/S /LI +>> +endobj +1639 0 obj +<< +/K [957 0 R 956 0 R] +/P 1640 0 R +/S /Lbl +>> +endobj +1640 0 obj +<< +/C /Pa12 +/K [1639 0 R 958 0 R] +/P 1402 0 R +/S /LI +>> +endobj +1641 0 obj +<< +/K [960 0 R 959 0 R] +/P 1642 0 R +/S /Lbl +>> +endobj +1642 0 obj +<< +/C /Pa13 +/K [1641 0 R 961 0 R] +/P 1402 0 R +/S /LI +>> +endobj +1643 0 obj +<< +/K [964 0 R 963 0 R] +/P 1644 0 R +/S /Lbl +>> +endobj +1644 0 obj +<< +/C /Pa13 +/K [1643 0 R 965 0 R] +/P 1402 0 R +/S /LI +>> +endobj +1645 0 obj +<< +/K [968 0 R 967 0 R] +/P 1646 0 R +/S /Lbl +>> +endobj +1646 0 obj +<< +/C /Pa14 +/K [1645 0 R 969 0 R] +/P 1402 0 R +/S /LI +>> +endobj +1647 0 obj +<< +/K [994 0 R 993 0 R] +/P 1648 0 R +/S /Lbl +>> +endobj +1648 0 obj +<< +/C /Pa12 +/K [1647 0 R 995 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1649 0 obj +<< +/K [997 0 R 996 0 R] +/P 1650 0 R +/S /Lbl +>> +endobj +1650 0 obj +<< +/C /Pa13 +/K [1649 0 R 998 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1651 0 obj +<< +/K [1000 0 R 999 0 R] +/P 1652 0 R +/S /Lbl +>> +endobj +1652 0 obj +<< +/C /Pa13 +/K [1651 0 R 1001 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1653 0 obj +<< +/K [1003 0 R 1002 0 R] +/P 1654 0 R +/S /Lbl +>> +endobj +1654 0 obj +<< +/C /Pa13 +/K [1653 0 R 1004 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1655 0 obj +<< +/K [1006 0 R 1005 0 R] +/P 1656 0 R +/S /Lbl +>> +endobj +1656 0 obj +<< +/C /Pa13 +/K [1655 0 R 1007 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1657 0 obj +<< +/K [1009 0 R 1008 0 R] +/P 1658 0 R +/S /Lbl +>> +endobj +1658 0 obj +<< +/C /Pa13 +/K [1657 0 R 1010 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1659 0 obj +<< +/K [1012 0 R 1011 0 R] +/P 1660 0 R +/S /Lbl +>> +endobj +1660 0 obj +<< +/C /Pa13 +/K [1659 0 R 1013 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1661 0 obj +<< +/K [1015 0 R 1014 0 R] +/P 1662 0 R +/S /Lbl +>> +endobj +1662 0 obj +<< +/C /Pa13 +/K [1661 0 R 1016 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1663 0 obj +<< +/K [1018 0 R 1017 0 R] +/P 1664 0 R +/S /Lbl +>> +endobj +1664 0 obj +<< +/C /Pa13 +/K [1663 0 R 1019 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1665 0 obj +<< +/K [1021 0 R 1020 0 R] +/P 1666 0 R +/S /Lbl +>> +endobj +1666 0 obj +<< +/C /Pa13 +/K [1665 0 R 1022 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1667 0 obj +<< +/K [1025 0 R 1024 0 R] +/P 1668 0 R +/S /Lbl +>> +endobj +1668 0 obj +<< +/C /Pa13 +/K [1667 0 R 1026 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1669 0 obj +<< +/K [1028 0 R 1027 0 R] +/P 1670 0 R +/S /Lbl +>> +endobj +1670 0 obj +<< +/C /Pa14 +/K [1669 0 R 1029 0 R] +/P 1403 0 R +/S /LI +>> +endobj +1671 0 obj +<< +/K [1067 0 R 1066 0 R] +/P 1672 0 R +/S /Lbl +>> +endobj +1672 0 obj +<< +/C /Pa12 +/K [1671 0 R 1068 0 R] +/P 1404 0 R +/S /LI +>> +endobj +1673 0 obj +<< +/K [1070 0 R 1069 0 R] +/P 1674 0 R +/S /Lbl +>> +endobj +1674 0 obj +<< +/C /Pa13 +/K [1673 0 R 1071 0 R] +/P 1404 0 R +/S /LI +>> +endobj +1675 0 obj +<< +/K [1073 0 R 1072 0 R] +/P 1676 0 R +/S /Lbl +>> +endobj +1676 0 obj +<< +/C /Pa13 +/K [1675 0 R 1074 0 R] +/P 1404 0 R +/S /LI +>> +endobj +1677 0 obj +<< +/K [1076 0 R 1075 0 R] +/P 1678 0 R +/S /Lbl +>> +endobj +1678 0 obj +<< +/C /Pa13 +/K [1677 0 R 1077 0 R] +/P 1404 0 R +/S /LI +>> +endobj +1679 0 obj +<< +/K [1082 0 R 1081 0 R] +/P 1680 0 R +/S /Lbl +>> +endobj +1680 0 obj +<< +/C /Pa13 +/K [1679 0 R 1083 0 R] +/P 1404 0 R +/S /LI +>> +endobj +1681 0 obj +<< +/K [1085 0 R 1084 0 R] +/P 1682 0 R +/S /Lbl +>> +endobj +1682 0 obj +<< +/C /Pa13 +/K [1681 0 R 1086 0 R] +/P 1404 0 R +/S /LI +>> +endobj +1683 0 obj +<< +/K [1088 0 R 1087 0 R] +/P 1684 0 R +/S /Lbl +>> +endobj +1684 0 obj +<< +/C /Pa14 +/K [1683 0 R 1089 0 R] +/P 1404 0 R +/S /LI +>> +endobj +1685 0 obj +<< +/K [1125 0 R 1124 0 R] +/P 1686 0 R +/S /Lbl +>> +endobj +1686 0 obj +<< +/C /Pa12 +/K [1685 0 R 1126 0 R] +/P 1405 0 R +/S /LI +>> +endobj +1687 0 obj +<< +/K [1128 0 R 1127 0 R] +/P 1688 0 R +/S /Lbl +>> +endobj +1688 0 obj +<< +/C /Pa13 +/K [1687 0 R 1129 0 R] +/P 1405 0 R +/S /LI +>> +endobj +1689 0 obj +<< +/K [1131 0 R 1130 0 R] +/P 1690 0 R +/S /Lbl +>> +endobj +1690 0 obj +<< +/C /Pa13 +/K [1689 0 R 1132 0 R] +/P 1405 0 R +/S /LI +>> +endobj +1691 0 obj +<< +/K [1134 0 R 1133 0 R] +/P 1692 0 R +/S /Lbl +>> +endobj +1692 0 obj +<< +/C /Pa14 +/K [1691 0 R 1135 0 R] +/P 1405 0 R +/S /LI +>> +endobj +1693 0 obj +<< +/K 1694 0 R +/P 1173 0 R +/S /Reference +>> +endobj +1694 0 obj +<< +/K 1176 0 R +/P 1693 0 R +/S /Link +>> +endobj +1695 0 obj +<< +/K [1198 0 R 1197 0 R] +/P 1696 0 R +/S /Lbl +>> +endobj +1696 0 obj +<< +/C /Pa12 +/K [1695 0 R 1199 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1697 0 obj +<< +/K [1201 0 R 1200 0 R] +/P 1698 0 R +/S /Lbl +>> +endobj +1698 0 obj +<< +/C /Pa13 +/K [1697 0 R 1202 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1699 0 obj +<< +/K [1204 0 R 1203 0 R] +/P 1700 0 R +/S /Lbl +>> +endobj +1700 0 obj +<< +/C /Pa13 +/K [1699 0 R 1205 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1701 0 obj +<< +/K [1207 0 R 1206 0 R] +/P 1702 0 R +/S /Lbl +>> +endobj +1702 0 obj +<< +/C /Pa13 +/K [1701 0 R 1208 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1703 0 obj +<< +/K [1210 0 R 1209 0 R] +/P 1704 0 R +/S /Lbl +>> +endobj +1704 0 obj +<< +/C /Pa13 +/K [1703 0 R 1211 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1705 0 obj +<< +/K [1213 0 R 1212 0 R] +/P 1706 0 R +/S /Lbl +>> +endobj +1706 0 obj +<< +/C /Pa13 +/K [1705 0 R 1214 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1707 0 obj +<< +/K [1216 0 R 1215 0 R] +/P 1708 0 R +/S /Lbl +>> +endobj +1708 0 obj +<< +/C /Pa13 +/K [1707 0 R 1217 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1709 0 obj +<< +/K [1219 0 R 1218 0 R] +/P 1710 0 R +/S /Lbl +>> +endobj +1710 0 obj +<< +/C /Pa13 +/K [1709 0 R 1220 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1711 0 obj +<< +/K [1222 0 R 1221 0 R] +/P 1712 0 R +/S /Lbl +>> +endobj +1712 0 obj +<< +/C /Pa14 +/K [1711 0 R 1223 0 R] +/P 1406 0 R +/S /LI +>> +endobj +1713 0 obj +<< +/K [1238 0 R 1237 0 R] +/P 1714 0 R +/S /Lbl +>> +endobj +1714 0 obj +<< +/C /Pa12 +/K [1713 0 R 1239 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1715 0 obj +<< +/K [1241 0 R 1240 0 R] +/P 1716 0 R +/S /Lbl +>> +endobj +1716 0 obj +<< +/C /Pa13 +/K [1715 0 R 1242 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1717 0 obj +<< +/K [1244 0 R 1243 0 R] +/P 1718 0 R +/S /Lbl +>> +endobj +1718 0 obj +<< +/C /Pa13 +/K [1717 0 R 1245 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1719 0 obj +<< +/K [1247 0 R 1246 0 R] +/P 1720 0 R +/S /Lbl +>> +endobj +1720 0 obj +<< +/C /Pa13 +/K [1719 0 R 1248 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1721 0 obj +<< +/K [1250 0 R 1249 0 R] +/P 1722 0 R +/S /Lbl +>> +endobj +1722 0 obj +<< +/C /Pa13 +/K [1721 0 R 1251 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1723 0 obj +<< +/K [1253 0 R 1252 0 R] +/P 1724 0 R +/S /Lbl +>> +endobj +1724 0 obj +<< +/C /Pa13 +/K [1723 0 R 1254 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1725 0 obj +<< +/K [1256 0 R 1255 0 R] +/P 1726 0 R +/S /Lbl +>> +endobj +1726 0 obj +<< +/C /Pa13 +/K [1725 0 R 1257 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1727 0 obj +<< +/K [1259 0 R 1258 0 R] +/P 1728 0 R +/S /Lbl +>> +endobj +1728 0 obj +<< +/C /Pa13 +/K [1727 0 R 1260 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1729 0 obj +<< +/K [1262 0 R 1261 0 R] +/P 1730 0 R +/S /Lbl +>> +endobj +1730 0 obj +<< +/C /Pa13 +/K [1729 0 R 1263 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1731 0 obj +<< +/K [1265 0 R 1264 0 R] +/P 1732 0 R +/S /Lbl +>> +endobj +1732 0 obj +<< +/C /Pa13 +/K [1731 0 R 1266 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1733 0 obj +<< +/K [1268 0 R 1267 0 R] +/P 1734 0 R +/S /Lbl +>> +endobj +1734 0 obj +<< +/C /Pa13 +/K [1733 0 R 1269 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1735 0 obj +<< +/K [1271 0 R 1270 0 R] +/P 1736 0 R +/S /Lbl +>> +endobj +1736 0 obj +<< +/C /Pa13 +/K [1735 0 R 1272 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1737 0 obj +<< +/K [1274 0 R 1273 0 R] +/P 1738 0 R +/S /Lbl +>> +endobj +1738 0 obj +<< +/C /Pa13 +/K [1737 0 R 1275 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1739 0 obj +<< +/K [1277 0 R 1276 0 R] +/P 1740 0 R +/S /Lbl +>> +endobj +1740 0 obj +<< +/C /Pa14 +/K [1739 0 R 1278 0 R] +/P 1407 0 R +/S /LI +>> +endobj +1741 0 obj +<< +/K 1787 0 R +/P 1295 0 R +/S /Note +>> +endobj +1742 0 obj +<< +/K 1788 0 R +/P 1297 0 R +/S /Note +>> +endobj +1743 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1744 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1789 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1790 0 R +/FontName /KQASQJ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1745 0 obj +<< +/Filter /FlateDecode +/Length 1191 +/Subtype /Type1C +>> +stream +H‰|RmLSg¾··hÉíä® {ɽ7Ž¸)ŠX`Žqâ$ï"(a Ð ”ÛZ` –A -“)ÝÔnšùÅqs8ÚéœlÎ…eÍ– Sq˜9Ådì\öòc·ÝŸýÚ›¼'çyNÎóœóæÅ1™Ãq\³usÆÎìѵfC~‹Ù´\ÇW +Mú@•h\ÐÈ„ÈP5J@‘²þ¿wÉẠ+î-ø6Rv- “àøÏ“)¦*±»¤ÔÊ­LLÔ. Äø`\µŒÓÆÆÆc<—¬7òœ®Öbå+-ÜFc‘É\e2Xy} —\QÁ%,œ™·ðf[€üw&Î`áxƒµ”7sb±Ä ö›y=g5èùÊs9g +Tþ‹ÿÇŠ39Q‹Ûn4Î*’®À¨_!ª˜‚.E¦=F«ÙÀ[bV¤é2k«xîUNÏcâÁ±XFa/aë°, ÓaYX*¾$–mÁŽa—q¾?,QIŠ$ƒR‰ôÍ¿ðØ‹1Ê/í ŽÙ-s:ш%Á9LˆCWÔsï*戼`IHÄ„pYÈP‘è i$Ô<Â?†ç`7¨¤pbv‰-K@‘(E9®»(–Ò°b^2ׇV²Žåê;ç´(Åòq)òÇAëbaUû¥±QšôÚf™jì ”‚=”³L´k¼1 üFî&ÈŽgBþSžˆ^BMø3tÌ­¸æ“ƒüÏñI 43ëCQ‰©F>—9/?Ñç;u¾fÇV¶=!e ZŽ%¥F¼¦ /ym08 ›¦ñ[¢Î­pPÁ ¸¦‘ 6ÁÑé¹…9d¨³AÓÝ©‰°³@ÂjPQõBvxëiçÅÏ4ª˜É{‚b“Þ°í)aŽ¯–{ûü‡‡é½Yål³½îBxRi(_òÕÔ?n|ñÑùÓL'AÕØ.§|u°VÝÜÞèhbJí%å9´¾âƒá;¿p²$öÇé6añïPZ6*Îd‡T=¬§|]·ÅÝ7÷e¹Aƒ¤ÂÂË®Wž %½.«"·’uÂE¤š»)ºìtnw–1@AŸÚãîqd¾<4tÎO²>¥|Kr3’²v øçÁöîn y¥q +€òÞó¡ B¤‚xµØyäCÍ_ÙŽ´(6QˆFK¦–‚öæHïûŸ2µ÷å{‹ ›·ÑkÒÎ?t°dþýgø‘?–œ×Î’œ×&P °WŸ îAõŽ^x?A]?äîu÷0W{.œÿš>Üãtv³T/„(¨ëîÆ×>:{[iš…m#¨SmSrŽèÌwånÔ3ö§lB]uØw¢J¦¨7$´ uj¤BŸ{ mv¦¢¡¼4‡Nß}yŒ…#"?¨@qcY¿N ûû½Œ› jº’å€Î Îá 9m¦«ñBT¼jH›ÓÉ»ö¹ZZ5o;ZZ›˜·ÊªŒÖzsín»­õä‹gÞñ¿7|qÄ?4ö=¤‹á~Š Ö¢Þ¦ò¦’fÓBÑr²q ñtŠ ÷y„:D{<žã{n{"U㘠"R?yæ1ÞÂüÐy¡ÊÉù RNv‡† +}Ï EêZ®<ë +endstream +endobj +1746 0 obj +<< +/Filter /FlateDecode +/Length 1718 +/Subtype /Type1C +>> +stream +H‰|SkPWîffz4Lõ íŒ8Muw\ó@Ð,Zb@Á—Ä€àfD¤yÈc`† ¨œ|H Ĉ +>ÈQ\qMRX«1›ì +QI\`·VO³—ªÝ;¤¶6¿R]÷Ô=ßíó}_Ÿ{š$änI’:ý–ðoÄ/.6f&§n2–ÅŠ9™)†ìTש ±¤¤“KÞ* Zj¼åíÿÞ®€›jøǼϽ•jOÂ$ÿ6¶Î‡«Ó3 +„å!!¾®<_ófc°–jH…ØbS˜cÞÌÝa0æŒÉbªŸ–-ÌR˜£hfø³'!Ó$ˆ™¢QHƇ陸Þ(¦ +ÆäT1'Ù˜%\'¿HÓ~EJÈÌ0——›éÊb 0h’sSý1‹aVe‡á½Üc¦hòóŒÝ\œ' +¿RÅ4‚ ñCÌs#^"ˆW"œ$" "Š ¢eD,AÄ‘„ž$æã¦ÑÄ&¢‰¸BÊÉíd9ùÜm§ÛgnÏe*™]öW¹·<[Þ!ÿB¯pÄT÷K?õ“8.î—UË%ëô¦+5hPƒBáˆÆ)$ «p%3‡•3TâìBÎ)éŠÆµC®ŒFÿ¤-RÑy< Ô281í£A¾+7Jä‘Þ~yÃüG`ˆ°9´œ·.Ó|݈–¢1h݆¤´óðZÕ§ÃC,Ýlžæ +I°€» ,ZpŸæS(pM³¸ÿIá èê§RÒc-©Hû59”×û ø×ÈPºgG‹CÖçŠ \G°âÄÙ¾Öë샶߿ÃW­X·-C‹B×{½®¤Á³bR²üHÞ5|ZÙ‡¦²{`ÿW,,xÞvóÿåà…G Òrǽ¨«Ü•èà“È“ ¬,ãA¨9ðQKM ~W"Ÿ*­õ BÁvΘ_]³‹§·6›¡k +Þšr±Ëîh±DاÞ‚§fR´Þò}¬ÊïzžVƒš)•¶h+OÛ.]ÖÁzå³ÄÇ( ôwæ÷Ò¹ã«Ígû{Ù‡õñYü>%zÃŽÈh¤Ö1}a×ÖO~ñÙ©ÎÓ\ Å”‰S0}%°V³¯ªÌZÎeXÒ³ôljö'½_÷ñ¨§[,?E™¥—„ŒBÏ!lÉó˜RX­eúÝÅm}»ý¦/XpÙ(¬ãáUûÊÇÈ ÏNÈámp ©gnc‘wmq¶0pVãtÔ9>àz:úÙ‘ +x¦Ï'!:4~ûù¾=œíƒªÚZR6žÁý>Ù/ÀN˜#“L jpåÑcºç[@‹Q@b‹|Æ—@àíÁú.rÅ»ÓRöÅ°k";¿·òåýÏüùv¤),±Š§Ñ@³Y*)| =o‡€31Z©yÌ”(™©Ï§#5)†\1íTî…K§ZÏóUù­É,®âÁÒ’Cà!Ò‚Ç´yP4\Æl‹žX\=QÁ†Ÿ×|of¿¢‚ Tƒ£á “;W×Öñ){ýÔÖ úȈ׷ݙn¿?Š»» b@i)l™¦~È5¿)æfƒ£ÞQÇ]«ëî¼Á6ÖÙlµ> +endobj +1748 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1791 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1792 0 R +/FontName /TXDFBH+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1749 0 obj +<< +/BaseFont /UAAMMA+Wingdings-Regular +/CIDSystemInfo 1793 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1794 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1750 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nP2&¶“iìnÅÆ QŒDÔ„A‚‚«€‹" 0" ÌÀŒHÄá¥Ã@äá ÏQ|ðEJ”uT"¨`°4[®Q×ÚÔZl6fͦv·*§É5U{k«ö×Ö­>uÏãžóÓß½$áéA$97<>bCÜgK5…]JZ¬A¿lþ”Ô,·K”8Rb<%?…¢?ùü_Jäp{üð΄Ÿ—ßlƒ$Ÿým£>ÍÈÌß_³fE [†LËÅË—/Ÿ–!bxš~VŒ+4æk³bdNªÞ«7¤äkÓ‚Äð}ûÄéFÑ 5j &·ñ QgµºüL­ALÁÎ >oЦ‰ù†”4mvŠ!KÔ»=ÿ£¦ÿŸR¢.GĹÄm9:·—F1%'-gÑOWIÕäätZcPð§qñ…¹Zqµ˜¦M'/â-‚XDïÄ$±$>! 5Al&Œˆó ’‚ÅC%4D,a ß“ñä€Ç2Ó2Nfô¤yŽË€Ù‘ï†þuHQ¢,Z’럱ØK;ËA”'Ç!* ^6^ÃVôÝ>ü‚%xœ¾ýGáþ›“0Oo'}~ƒR‡:Ë­ ;\ºE€H4‡µ×·Ø;9 žjÐ\¸r3ò¶ ‡Ø쥂¥8MS«Ìîܲñ©U쯫 rj­øÙi‚cÀÂjxû" Ô²q_¼9ÖIœ>Ú*´¯nÙÞ`ö U|¦àGÓ÷ƒÉm^5ôpÛ½»ßªî¯íîåûw„ŸðçÞ«(Û!@š…¡´ÚÏsw+{õ;T iº~'¥¸QK$ ‡ + ›€†L˜dõ­8mr© ”†Y±/ѺEŸè‹²øDËÛznµÞä&š +Ì­­D3¶ ¥ŠI^3¾á§aWÓ¥>¾šbÂvË™6hØR[©µŒÏ-ÓæqÙ¦æîÁËÎG‚â' ÌG¤I"‡TóìPCD1ŸÃn_ÆU{On§â{oí¿Éž“ð©Kí+ÿŽ¼¹èDcº^°‚©_ß ˜Ïc¬ÑÖ,¢¡—­«Â‹ï;Öu¦»{6A-0®uºÔßfèÏu—󕵕õõ*wÙ…H‰ÉQ óÜu»ñXC@͸¤S‰,ªµÒÝÉÍÛ8äµ ­©PðK€½sr¤—·ãrµj9„PÖ^ëø˜JºA3. ãk©@‘á(Ñhù>öUmÇ>|äwí:¼“‹ÞzòRî[ÁvW;]ÃÜhãv½ ø Ò¼§0Š€³¼éf1îæ¹ô®da™WÛåVj oÏ©Ï84+À£…/–‚ëJK—`/ >NÈŒŠ‹kkÉæuÈOnzXü€ûæqãµQáÎÍ–ç/TङçÏìƒÕ]<Ò “¬ÅVt´„Ï­0ìå²ÿ•À¼zzñò`ï)Sf_U^UŠ[uš$‹ùkø˜Ä¿T_É‚Gd¡ÿ:õ;6.##1©O;2z¡ÿšàªÌ¼Çáð©Dótìˆ/¨§‘šRÀ¯ø†!ð·¸y±¼ñ7“Ò…#6RÌs裶Æ/Žó-µM½Ü@KF¼€œ8è<ÝPÕ\ÓÀŸªkmëäZ3cÔŒíƒ4øÅ<™¿7§¼ØÀç˜Í/+å2%vFsîN2 +G(ÆU>&GK){²}ëf•b#øYÞ0“Á3½êÆG1O ‡n¬:QSÏ·Õ5wôqƒí{·º««ÝU8ÍSD¯Ù™”WÈãŒWËîÉQð3>³à4À`Ä@0ÄÈà–dcÑGþ ÑrÔ2Ì +æü¿#Ký ˆa¿<©‰ø(wGRœqôÑDûÄA!b`“°Öb>g>5 Ž©zlŽÐŽª{=?Páä0×vÂz´Q`êaÍTU—ÛŠ¸”hÃúp¼¬PUøy©69ª½EÏ+S‹Ñ;&‰åì'°‰É}"M²1H9†ÖÓë›»²ù¼3W +‡¹¡cµN¹óhkÉAë~n÷ÁŽ;Ìÿ'(H+Œ6X©°€ì¢d¾R¾ËYvª»ó\oçyLåϯW °í(½/߉f£eJÅ!‡dqÀb‡ÃÑá PºcÂAcÓ~M›¼°é‰Ã›wîÙåãmó™ Ê ž >Ž&¸:Gªeÿ#À½-ÏÏ +endstream +endobj +1751 0 obj +<< +/Filter /FlateDecode +/Length 1191 +/Subtype /Type1C +>> +stream +H‰|RkPTe>g/gÕeÎ&§%ÜÃœs¦KAÄ2Æã"&¦.—böËew×u¹„»°K¢¥néä¸Y†±›fPdc“ŽNMB*6“)Îdï¡Ýþô«oæ{ç}žwÞçyßo>“I0Ç5ÉÉÙ›¶GeÔ™ …úmfÓ*_e(2UêUN qA#"BÔ(uDÈúÿÞ)‡ Ü^úm„l,“àøÏ3)¦j±»´ÌÊ­IHÐFb\0®‹æ´±±±ÁÇ%éME<§«³Xù* ·ÅXl2W›Ì…V^Ã%UVrA gæ-¼Ù ÿ‰3X8Þ`-ãÍ\¡X,5ˆýf^ÏYÍ…z¾ªÐ\Á™•ÿÀ’ÿ±â FNÔⲌ†ÒYEÒÂõ«ESХشÛh5xKÌê4]f]5ϽÄéùL<8¶ Å(ìy,KÁÒ0–åb!âKbØ6ìv—áËñÕ¤X2,•Hßl÷ ü¸#ýÒv™à˜ß¶à  «Q"tÉa–@º¤†XxW±@äsHD"&„‹ê@†ˆDIû}¡ö>þ1<»@%…ó+Ô(:E |åºn¡XIÃê)xxÈL­a«Ô7´( +ÅòkS6LÖź¶ “WiÒk›gjp°ƒR +ö0PÎ3‘ÒnðÆ€ò¹› Û px(z µaÑ1·bÌ'ùŸS3@hžlú E&¤ùµÇÝã>È|yhdÀOO}²)ž¥|+ò2³wúö2΃mÝÝòRã,„Þåm¼–@9,’ +àÕbç‘5å@Ò¢ØD!­˜] Úkã½ïÊÔÝ‘ï))jÞAoHºç`ïÊüÎþð#=u,)¿%9¯M @a¯9܃ê½xá5qÈÝëîa.÷œúš>Üãtv³T/,RPîÆ×>:gGYš…ÝOP§öÏÊ9¢£À•·EC>±?ÚlêkB¿U2E½¡M¨W#úœØãØ»ßÎTî­(Ë¥Ów]œdáˆÈ+ÐÚÉì_§Gýý^ÆMPµIrÀç9ç踆Œ² s5x—P/¯ÒtòÎ}®–VÍÛŽ–Ö&æ­òj£µÁ\·Ënk=ù\ø™wüïž÷L~éâ_¸ŽÂ‰¨·©¢©´Ù´ÌA´œll<½…“û> +stream +H‰bd`ab`dd” wqô×ö­,ÊLL (Ê× JM/ÍI,IJÿfü!ÁòC†Gô·áï¾_¿~ù°~?$¸þ‡„#ã­çÎù@}é% +†––F: ÒLšë(€IÇ”ü¤T…àÊâ’ÔÜbϼäü¢‚ü¢Ä’Ô=Çœ°Å +E©Å©Ee Aˆk2‹R3K2R‹’é™@ýE©) +%E‰)©¹‰EÙ +ù $n«2ó€f)„æe‚xÁ%@Áb…ļ} )ù`[’óKóJŠ2S‹õôÝ‚C* R,RRÓ@¾õ üÑѽ÷Ç›½Œ@Re/s7ËŽŸ:ؾ÷ý>*úÛîûdÖï/Ø~+ü> úÄù3‰ý[˜ýÝî7Ïöc¿(ˆõÄãûžÁW?ýGÅôïzÓ§O_<íwÚôÓÙå$ÅópvópŸãzÌý¸Ÿ‡ ÀÄ8¤Œ +endstream +endobj +1753 0 obj +<< +/Filter /FlateDecode +/Length 602 +/Subtype /Type1C +>> +stream +H‰|PMLQÞGéV¤¬‘¸„Sào€¶’RÅC bLªhå +¶ì‹¥Kv—bãÁ‰`ªD0f/FI8ÎêÉ<(1ÆpÈѸÑÄfË@âÛzñä;|™ï›÷}3Âq„÷Õó±ÖúXVSR—¦6Æåa%©¦¤65-~ØUÄöÛ‡½"Å©ž7|8+ßæ‹Ê¹"BÖ¿¶©#Ì?0hÐS--M † xº6…B¡†i«¤&eÏê†<¬ÓÎtŸª¨ZÂ¥mM¥h!B§š¬ËZÆÿnEÊŠ1(k4Áš +ók²D -!Éà í&UÎ?´ÿ?£¨’¦,‹v§‡Å &ê4‘–‚,E-LéSGÓ†¦Èz Ø¿ž‘é*Éý{Ǹ âš97»ã î5ñš'¹ûûaxdÁ•+¶'ó]»“ì7×Ìÿl²×[’ó–®íß.µ½‡ì1ñ%å +endstream +endobj +1754 0 obj +<< +/Filter /FlateDecode +/Length 3306 +/Subtype /Type1C +>> +stream +H‰|TkPW»G”feÒh¦ÝîQPñ…øh0º`D]AQD"ŠÌ cAÞƒe€AW‚(ïÅWbd Ì >¢Fq×]Á'u«»¸§'ª¶!•ªüØÚêªÓ÷Ü{ÏwÎ÷Ý{.ŽÉÜ0LJ…†‡¯š1!"S¯SGêu“µ7¥õ/ â\ô–‰¿¢I¨ôçã?“pÙ\C/Œðxì…8.ëz™°.a®.YŠ–¢TSfÎœ:±ßN°AUSìtUˆZ·A£ŠÊLMÓlIU-LŠ×é“uú¸4Ú_’˜¨€HUé5©}zÿä/5©´©*6m“F¯Š“7j¥x½F­JÓÇ©5[âôŸªtý+¿qþO*•6I%a©¢“´ý^Tš4™ªŠKRO–PtYâu[“ÒôZMªÿä°¨å™ÉÕ •Z“€a¸ôaæ)Ã8 …a¾nØx ›ŒaÓ,TŽEÈ°([a: ;Žá»1l‚¤1Ebɘ ;†õàÃðX¼èæç–çvÔÍIx:â2ñDÆÉþDâä\²…’S ©{ôH:ŠN Ë'Èõò‡ƒ|er¸Sî¡îƒéÁÊÁLJøÄ·‹¯ÚqÉú¶Å2±ÐÙ[HA)ºÈ¢ÙPFÂs +©ÐYúÞ}t/;0†ÙHò)ñ Û?Býƒ:äzüÐÄUäÁVkªævxÁðíÉËŽ“3†§ø¹Nâ…=\UèHvmjjÖ¶!µ¨:ýÇ U® Ü DS< ß»´äj +ýµOK2‘«øÔ‚›p½€=®q,Â}F£啾ð{Ã÷A.l z‹ha§š·6ä)U5oµôÃ&E aù À»&²>]|í(Îðƒ]Ñ o»‹_G):gh…æÝ·¤‰b"‹mâí\””çyÛÐ-Ýf'!>xþ/xOygí[Ä-X–¬‰ãk7“‡Ž9¾ºÂÛñÐ$›€¢yÂ’r -±…¦_CŸÄ¸Nb\'1Î`œqˆë•Ëþ—æút0XáÕ9©Æ/Å/wÄ0°‘tRh·+\K¡Â¾@É»²ÒÊÞ‡ Rñü`ëþ¦r‹ÜD•k>×VÅt¡­Ã™†›è²IÂbýv›&*)‡ŒwX+$QÜáœùYB••ÜŸþIíÚ„X4Å àA]תj査¬â+Þe?v]%ì.‡³èŒ$ûóµKÂåïŽ>}­|»åvôyþ›(ÿ¿ O.|ég;V öìÞ/l{¥‰/Ñ 4§H@+UÈ%Æ©KöèxæÃb+8¬PÑLˆ>â`5@X¬èQ_ ¼µ¢¯Á ƒºëÓ]ý»º\l_ ÝH3ÏŠ¯®OÿsUR©«Mô²+bà=oxA+AVtk×}ÞTÒÖöqûGïCyïò”+0=¡Õ#Kfï àE›¯©¿~ð>ªG‘±}'é~ŧ,R"øÊAtyÛáJÕ½»e]ÝøšÀÊÈò y;•{4¯=­'û¶öttµÜDß=zîâ3¥=óTÒ1¾Y½¼v·vé®í»–ÝSݸ·{÷CœïÔùK}ÅÌ(°ŠÈŠ_²C•hibSšnl»ÈïÍÇ?½‰lGÄ)a¼y½ù¶òlóMÀ/¶nË«ák¬deÚšêpQ3çúM¾¸Fx¥±¬›£œ±lì²µG4<3Sˆ±â q ñv¸H¶öfǃŽbþn°¹†÷k'ÊòõúÓhû0éì ûâyqÌšÞ 4š9{."Æ_‡9¼8fü ÖéPn«—¥vÛ9¢·÷®f£Å¬„%ô£”#a}t~Òz¾ry¸ñäþ¨’Ï'®QæÓh¥iÜD(ÎE§æÿãÎÙÖæ¾”Räì # àÏ*œÛ…|LVìê`Ç;€¾ª§P`öögWY@—áÕi‡'E ñV8KK}¹À|!ñ×øC˜£ƒÞ ÀHMħ‚þÓûRÂßhŒ3jùÓÐÈV—(­àï5|ç¼É~irN44| +rûC„ãV:o¬0VìW2c¤ ²á6‡tÿ.²†”„ìe"fuÁP ¯¿ölsNÞ!¡ÚBض¦:’C¾>>RwŒþq,íuûë¦ð7ÛpÏ®pŠÓ]«YtÞHÛ¶®lÁ!w¿±hz‰€|ºýÀ½û‚óìaÞ$U[@¶RÆFcË ¥ø’Žé=Àæó óx…38}Ql˜tâѯƒ¡×ŸõÜ=½¨Z(Í3eæ)™ˆl6ÃGÜf‡oÚ q1YSYqÙeÇðCSÐï&K ÑÈGcà¬+¯áóÍd^òÆÜyœ_Ð%ðJÍì÷em/ßq ?6zA‘À éÍ›a­`'`˜·„Éš{”þ±¶«û‹Ú;ð•f²,7¹,‘KˆÏKJÔêÜ%!Ê”0MGïbš)D+|d,†_eèƒÅ4VñÊø!i¤¬1g&r#‘Û4Œ†=ΟtLó)4*t嘈˜š?oæ³Ôdò‰Ë¹_sç®U¶œ¬æ×ÁS ZÑÙn2›Nð«P#›U˜ùY6–ºD½ˆCä²ç€ ŠW ¸ùàíÝÓ+—Öñ{rM9YJÆ 1Za“N—îQ³è”ºÙNÕšî=È_ª»à¼ÁýÔ8kº€šíÐJCòhˆMØ\•Ì'e¥¥ä&ËÐ#==Ï$˜´ ß÷ú/‘UÓÔ…Eè­ +©†K]íÕ{·dƒàÜüÜœœsj°FÊG(N¨¶”[ +*° Œ9ZZŠ|.@Õµ|X¹Q„ŒÍ/~8G °ÍMf‚#êÏe¯?öÞ²äæ¾É›¼ÏsÎÉ9ÏynÆ‘±Æðêä—j1ù´e.DzB§9qªmjµ645³ j\Ê?ð,*VrNA ÕK±·¥-´’œê'l•õÕú†}`ð5ÞºÆÁ¨¸¾Ê†ã¼j÷¸ ¦z£Ðurð½"‘O[rB–>÷(]ÀêNê-2£šw–’¶7›1dùo"%aR™²”óexEíäÈqu€°VÚªÌô Þ»Ôì|zÄË£ŒÏ¥1Еò‡ÿ±xoÅ-çXdyƒù£ëÑ´zf5,{KY?‹V0_á 8€$ÑÒ°õ!¡ÛAÀó°$xÀÑ®“#@ÏOø“ ¤rÐn"â.ŒÃMùì!l‡7>x†–nŽUE’š(Ÿ¥¦TSRŒœSJ-UÖJ M>yÐxw~  è háÇQžŸ5 o‹E.AÕ8ý¸>/9&än'l&›©Ž·p÷©s5ƦO|¶ôÌÙRêÓĤ˜“™ÓøDH<Å”˜„1v`ÕÞÒí3ÂÁNÎ×Ý,Õ8.qÔß7‡&ï¥t…w0‘ßn»]£žNÁF7t‰êó2-JêøÏwÇ]>ð ›Ëqäì“'Jûè@F½-—– StËgÖã;Ë?•¢eª&аXñMzS­¶·_¢Ú›ª¿¶1¥NQ¹¡ ÷[Q7Û£å\•Ià“Ša~I?^ÂÍsᤳYxâ}< "rìüýZÝ0v%–xÛþƸGè¼ ãn¸ +â=ÔZÇ&•¤®À˜WØ~íÈZh‘¥o£6ÍÞƒrÅ—DIŸÞ£»±Úd’×qˆ>µüfßZd÷Ë8QU‰©´L^f,+/¦ó÷IÏWçäÑ埲¦ËÌUë\ŽŸ†zþPxþ•%؃Üd3 ™%Ù˜ðTg‘«è"6¬wd’d0¸|:øhßh“ªøh—XË;Óàú…‡OW÷LØã çVb[Œ^C4þo|b/ËÆýº á…3Gü üPZ‡6"?<$Á(×ÊÖÂ&ìR ”9’Hkõ­ñTȆH|g+ˆ{¸š–KLI»¨0_UœF½¥›œì»û|àRáé:FRöJ ÷tëÆÝü+¬‡¼Ï¯„:È…‚°PÛ'µÛÏœ©ó +5›‹…Z•Qt,›Qe°‚P#¶ULNÿÕ|oª¥éôé:š¼csŠÈésúãßfS©_èsó˜C‡t±Û寤s˜”Ý`æÕfØ`6›[ÌÊ4O™ÅøJk†w½W‹ðÕ¸y1ݘ¦ X\àßµ„ó‡A¼[úŸ +ÐÂL +endstream +endobj +1755 0 obj +<< +/A << +/BBox [113.705 76.0347 529.898 386.797] +/O /Layout +>> +/K [1771 0 R 1795 0 R 1772 0 R] +/P 1408 0 R +/S /Table +>> +endobj +1756 0 obj +<< +/A << +/BBox [113.386 278.097 529.579 561.26] +/O /Layout +>> +/K [1773 0 R 1796 0 R 1774 0 R] +/P 1409 0 R +/S /Table +>> +endobj +1757 0 obj +<< +/A << +/BBox [113.622 250.237 529.815 710.787] +/O /Layout +>> +/K [1775 0 R 1797 0 R 1798 0 R] +/P 1410 0 R +/S /Table +>> +endobj +1758 0 obj +<< +/A << +/BBox [84.7185 294.648 500.911 613.198] +/O /Layout +>> +/K [1778 0 R 1799 0 R 1800 0 R] +/P 1411 0 R +/S /Table +>> +endobj +1759 0 obj +<< +/A << +/BBox [113.386 398.645 529.579 737.008] +/O /Layout +>> +/K [1781 0 R 1801 0 R 1783 0 R] +/P 1412 0 R +/S /Table +>> +endobj +1760 0 obj +<< +/A << +/BBox [85.0394 145.787 501.232 521.137] +/O /Layout +>> +/K [1784 0 R 1802 0 R 1803 0 R] +/P 1413 0 R +/S /Table +>> +endobj +1761 0 obj +<< +/A << +/BBox [113.852 229.549 530.045 496.461] +/O /Layout +>> +/K [1804 0 R 1770 0 R] +/P 1414 0 R +/S /Table +>> +endobj +1762 0 obj +<< +/C /Pa9 +/P 1428 0 R +/S /Kastenlauftext +>> +endobj +1763 0 obj +<< +/C /Pa9 +/P 1428 0 R +/S /Kastenlauftext +>> +endobj +1764 0 obj +<< +/C /Pa9 +/P 1428 0 R +/S /Kastenlauftext +>> +endobj +1765 0 obj +<< +/C /Pa9 +/P 1428 0 R +/S /Kastenlauftext +>> +endobj +1766 0 obj +<< +/C /Pa9 +/P 1428 0 R +/S /Kastenlauftext +>> +endobj +1767 0 obj +<< +/C /Pa9 +/P 1428 0 R +/S /Kastenlauftext +>> +endobj +1768 0 obj +<< +/C /Pa9 +/P 1428 0 R +/S /Kastenlauftext +>> +endobj +1769 0 obj +<< +/C /Pa9 +/P 1428 0 R +/S /Kastenlauftext +>> +endobj +1770 0 obj +<< +/K 1428 0 R +/P 1761 0 R +/S /TR +>> +endobj +1771 0 obj +<< +/K 1441 0 R +/P 1755 0 R +/S /TR +>> +endobj +1772 0 obj +<< +/K 1442 0 R +/P 1755 0 R +/S /TR +>> +endobj +1773 0 obj +<< +/K 1455 0 R +/P 1756 0 R +/S /TR +>> +endobj +1774 0 obj +<< +/K 1456 0 R +/P 1756 0 R +/S /TR +>> +endobj +1775 0 obj +<< +/K [1457 0 R 1458 0 R] +/P 1757 0 R +/S /TR +>> +endobj +1776 0 obj +<< +/K [1460 0 R 1462 0 R 1464 0 R 1466 0 R 1468 0 R 1470 0 R] +/P 1805 0 R +/S /L +>> +endobj +1777 0 obj +<< +/K [1472 0 R 1474 0 R 1476 0 R 1478 0 R 1480 0 R 1482 0 R 1484 0 R 1486 0 R 1488 0 R 1490 0 R 1492 0 R 1494 0 R 1496 0 R] +/P 1806 0 R +/S /L +>> +endobj +1778 0 obj +<< +/K [1497 0 R 1498 0 R] +/P 1758 0 R +/S /TR +>> +endobj +1779 0 obj +<< +/K [1500 0 R 1502 0 R 1504 0 R 1506 0 R 1508 0 R 1510 0 R] +/P 1807 0 R +/S /L +>> +endobj +1780 0 obj +<< +/K [1512 0 R 1514 0 R 1516 0 R] +/P 1808 0 R +/S /L +>> +endobj +1781 0 obj +<< +/K 1521 0 R +/P 1759 0 R +/S /TR +>> +endobj +1782 0 obj +<< +/K [1524 0 R 1526 0 R 1528 0 R 1530 0 R 1532 0 R 1534 0 R 1536 0 R 1538 0 R 1540 0 R 1542 0 R] +/P 1522 0 R +/S /L +>> +endobj +1783 0 obj +<< +/K 1522 0 R +/P 1759 0 R +/S /TR +>> +endobj +1784 0 obj +<< +/K [1581 0 R 1582 0 R] +/P 1760 0 R +/S /TR +>> +endobj +1785 0 obj +<< +/K [1584 0 R 1586 0 R 1588 0 R 1590 0 R 1592 0 R 1594 0 R 1596 0 R] +/P 1809 0 R +/S /L +>> +endobj +1786 0 obj +<< +/K [1598 0 R 1600 0 R 1602 0 R] +/P 1810 0 R +/S /L +>> +endobj +1787 0 obj +<< +/P 1741 0 R +/S /Link +>> +endobj +1788 0 obj +<< +/P 1742 0 R +/S /Link +>> +endobj +1789 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1790 0 obj +<< +/Filter /FlateDecode +/Length 3258 +/Length1 6160 +>> +stream +H‰ìVklTÇ>3s~˜GÂ,7&€×/Þï:`DƒmkR®½k{Áö:»‹„ h5‰ZÅE +…ÆIC¢ë˜´Ñ*¥ZJJŠ”H‰Hi+9"JqDT(UÒÄýæz± ?øQU•z?ß{¿ó˜3眙;kbD”Ní$¨øáê¢é%úDÆ[Ð>R×—¯=JdŽ'ÒçÕ·64¿u}¾M”á#ÒÖ74m©ïºòäJøžÁ½µ1^=tyQÖ)ȳ¡È‘ö äkïklŽo^¶$±—(;—HìiŠÔrrˆØ\Üç››[Å#Æ4¢Üƒð—-æÐÙ©#K@g[£¡Ö‡wÿzØ1ŸXEy“h×{á`’Uši¾Ç´÷ØÏ‘Üéâ4û˜¨èëþ¬~Zôž%Å3²]Ùy®lW» ¯Ú9}MzïsÛµ^LO'¨S_¡ÏD¬Ü_ãûÔœìKèÇ_Iñ =¡uuj]_úI]“ÿþC]´Ÿ ^Ó‰’\ÐHƒ\¯Hr¼6ÉMì¿­jsj©‚ôE’3*f%9§áì™$Ç7Æ&¹þN’àÿLr“w•Ó‹‹gËáºh$©Ë²H´5 ÄÑ–B¹¸©IV…ã1YŠ…¢m¡`áòÊÅÕ•ùkÂ- Aܱ‚ªPæ¦@ô^õC +ŽÉP8ÞŠÊ€Œ†±x( +Êx4 5¢eDYnë¿=_n‘#W·„ã_ÄC1h !@Ä™ .²©% ‡b…’Ž’Dß‹Ù`+(Lu¥Åp×Sº2°(µ:Ï4a°*„e15’ª k FØbŽÂ;ï6<ƒð\N•ð­Æ³‚òi ¼[àL¾cTàŒi MˆÀ¸;¥{ýŸöÿw ¦ž!¼ã胪]ÂWâ­F*kÜѪ~HpÕÉ ¤f'âFè"Cc¾ÝZO«#Üd2I«!…ÔüÕ`GŠ9s¶@[”Ì r[u6Áª2 +;ÞjÕñÅšØH§í‚vŸî¨[o + +™ÃÝ®ÕRRé5ymÀÈg/Q‰YÂìö»zÿׯ‹wµ”uÌÇwðµ`?Å UBpq?GÔÉ{}hn¬‚®àws::©ô3hžú;B?t4 ¨öZxŸÃ{!lux3'F'Û缟¤]ˆý9ïágùYǺq+”Ç xÞ ½Š·“^¥ËìMøfý|%´LÍ8á݉|MÒßX.[Èì |rø'—ÁÙÚás¸èDQXÁšX„EÙ^Äìã‚ÏBÔßû¸ÍÏŠm¡ÞkäsÌ&DÁ‹³7ªhßÃn¬Š:ˆ?0Î*Ù*ÖÈö³.äpŽõ×y_„®+üDøµ í}£þ"Ðk¬6¥ˆ­ã|‹}šG3Q•sT"ç mÀo‡ÂÀ6ôò)zžºèœ€ÝôýFÍI—è2ÝDw2U×ö[ÔQ¶íB?:nÃÓì ëao ¿·Ùû|"ªDªÌr'?ÀOò·ù;üO¼Ê?$RÅzQ+bâ°8&ÞïjKµ.íí#í#é¶Ó©#×XgtûÌTs£¹Ëü±yÈüEZ!F]nÔUs¨Ž¶ ’m´‡Ϊu'éu —>UuÉJ`VÎV5l-ó³fc›‡*z‰½ÌŽ°“¨å}àv‰ý…ý•}æà&7ø(ž?TßJ^Í×ð|?Žä¯`Göð3ü~5öñ¨1]䈑b‚ðŠr`•xTl;Å qV\ýX· íAm¡¶Z[‡ÚÏk}Ú'XI® =OŸ¥Ïõ}»Þ¡ÿ ;º_ï72œ®ä#ŒùÆnãy£ÇøÐøÊiŽ2'…f‰Ym6™mæ1³Ï¼’r;µì£U¾ÓT1ÐÞ½¬Ýã©Q³å”ùv;î£á>zkß8‘ðŽ K%&»¥ÝUé»ÝêRÏš-p/¯ò¹µåÝ'UU>§ecŠ¤Ò©2 Y^¥ñovªµÄjLlðc±Æ&lªÚâzmlEéé?S…W&Vù,—½hœUðŒïÎ¥DÕ–že¥rÙ–wwVö`§»‡g&IÆ°ÛIhÈæ0Ç]1d}«ÕLed-ñeD&>ËæysÕ#4—usᆫ†¡£aôÏŸÈš§BÏ˲dâa#XýWïÔ’#/ë)ª¶ËЖƒý·óóíiÓÔN1Ë°´Èl¡#Ï*p·ÙË­Ö,i/GËh¥ƒjæ¡å.—ZåŽS¥T Án¯üëåEÇñßÜíÝÌ]k{ô_.®Ê•ÓÆØ4¦­Hh®‡ý{ž©š;$éµ¥#Å(FôÑG51ÆÖïìïîä*VÜôsŸÙßovvgv·;“âý ™s{¸1íx2:³PÈÔ>­3 ™âá™(çóîÒ¦ÖQ Å¿ÊP]uç®ÇQ·Jz„óx}:#³†ïl2Õ0˜32Ùñ4nM^Ål¶+éÊf²ƒ¹åƒCÑH(šM$²{;3….å–ÆL'6žÞ%0¨N+†S½5å5=i.yLoº‰Wi>Ïk¾õG¨Üü‹2•û¯ô”}lIûËïÿh$ZJoÊfÒk¼Â +–ÍKI¢²q¢å/‚7‹™ÂvË |ûI/õˆt«ªúÒdp7X >Ù@“Ëd{ÏÒ¢š![®#;P™g€); ÆÉV‹d¯í{‹Ñu=àr˜ùÈ7©O@›¯ \Ïy]îFódûS8~„‘¯2ÆF×÷_¡g +¨P¯±ÏqŽ È›  ±G{®¥I/MÎåû-ÏU€kö?‹xmþ:âk ÄЮ[¢=uFÿä‹àuì·ÂÏs_Õ(Žßï¤ù`#10všÂ¹0ž}+h+a?êì_1ÿ3˜;ÚÞ3Üg÷<+™bþ­ž¡ëýx{Ê管\yǶ]ÄЊØá®ûßPC+Àš@ñóÛ¼A?žO?ßs÷¾—¶ûu±|=O~ß¿¾•eŠùßK)Æ_¢E¾Çn¹¾ ï öÖÒ°êÆ Y¿™·D9Ö‚T™t¥x…2ô¼=VN]]¨RµFÅz"9Ï£s=-Ð!Wb†õ>ë kšušõë$kŠÕËêau³â¬«µ™µ‘åg,/KÄž€¿7À·à:ø\‚sÀ3`œSà8xŒƒC` ¸mžã¦mÖYÖ{¬S¬wYÇY³:X[Xm,Éò±<,ŠÅàoÀWà*ø | +ÁGà<˜€à °ìèi© Ô6X9ñB¬WZ'¥uLZÒÚ#­ç¤µSZ#ÒÚ.­mÒJK+%ïWëTDݧîQw«°ªS5ªJ…T…*WA¥”_Ê£ð ;ÕÞ„'Ñ ga˜Cç×þhNŸÜæø¢qáT%(ñT<ì´5:ž#îŒ&'–g…8:jêÉÌEbytÂÌ;¦ºÆ¿oá’½DrßeZ+6Äoë¼\û‰ÔÑ~D-7jé¨åFÃb.I-‰Á±Ì½t‡†ÿÚĪْš»uw“©YEñôÖíìyOYýɘõéx]ho»Û¹Mõáæ%ƒÄ4•á›^ŽIâ]@§š:š:t +_4ªÐóÇ|*|`S½yILçS!„×`(ÿ`)+oÛ +endstream +endobj +1791 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1792 0 obj +<< +/Filter /FlateDecode +/Length 3261 +/Length1 6160 +>> +stream +H‰ìVklTÇ>3s~¶1YnL^¿xÇ0x×#ü ¬I »ö®íÛëì.‚œB ¬IÔ*.R(4N" ]Ǥ…ˆV) ÔRRR¤DJDJ[ÉQŠ#¢B©’&î7׋iøÁªªÔ{|ïýÎ9ßœ9çÌÜY#¢tê AEWÎ,>ߟ 2Þ‚õ‘úö¸|µðÈ"s‘^ÒÐÖØòÖµ6Q†H[ßؼ¥¡ûò“«À={kS(¼rðR QæIès›`Èö ô«Ðïmj‰o^¾4±‡(+‡HìnŽÔrs‰Ø|ÜçZ›ÛÄ#Æ ¢œàËÖ@KȾgR¸PÅ™¶h¨íáßÝ·~Ì'jˆ“òuè} ˜d•Ž2ßcÚ{ìçHnôAqŠ}LTøõ@æ-þ Ïâ¢YY®¬\W–«CÐWœ¾&½ï‹ùZ¦§ãÔ¥¯Ôg#Vίˆñ½jNö% ௸h†׺»´î/ý¤®iÿGüueÐ>b4tÍ$JbAã¡ a ¸"‰ àº$6±ÿ¶ªÍ©¥B ÒĮˆ=–ÄœF²g’ß;Äð;Ilÿ3‰MFÜ}DÎ,*š+W†ë£‘X¤!.Ë"ѶH4GZ ä’æfYnlŠÇdU(Š¶‡‚5>OùÒeyk­AܱüªPã¦æ@ôníÃŽÉP8ÞŠÊ€Œ†ñx( +Êx4 µ¢eDynQ¾=_n•#W·†ã_ÄC1h "@Ä™ >²©5 ‡b’ŽDß‹ sVR˜ê)JŠán 8le@QjsžXÂ@­TÏj†Hª‚­‘šà‹9ZïØíxÁ¬!y¨œ–Ò2Ê£5`·‚L¾c”ïŒi¤MˆÀ¸Ûµ»ýŸæÿ;C©gï8ú j—àJ¼ÕHå;VÕ ¬:„ÖâDÜ[dxÌ·{îju¤“›Lf#i5´°“ƒš¿(àh1gÎVX “Dn© Ú&xUFa‡­V_¬9™ýˆtJÑÎkçñ鎽ù¦ pÜéZY-%•^•W<ö›ÅÌî¸#û¿~]¸£§RÏ|ü)¾è§8¡Ši?î î程ºxï‡fá¶*è2~7g¢“Ê>‹¶áé¡°ÃôCDzêà¯û,Þ‹à«Ç›91ºØ^çý$íDìÏy/?ÃÏ8Þň[¡CÂ{õ>ØU¼ô*]bo‚ó= ß)º F!r~yo°éNö1à«`ej~ÄÙvòý5}Hc9lK°Óàdó§œ\†fëç,ä‚EÉJÖÌ",Êö f?|¢FønÞÍm~FÔj‹ô>#Û˜g6# +\œ½Y¨PEû.vcäñá¨CòÆY%«aMlëFgÙäÏç‹Ñu%?~-CûDߨ¿é3V›S ÄÖq¾OÀ>ͥ٨ʋ9*‘s6à·CÉmèå÷éyê¦pöÐô5']¤KtÝQuÍc°5ZH”mg;ÑÎ[äiv€õ²7ßÛì}>UI3ªÊrßÏOð·ù;üO¼ŸÊ?$RÅzQ'bâ8*ÞïjË´níí#í#é¶Ó©l#ÇXgtBöš©æFs§ùcó ù‹´‡ºÜ¨«çP=mA%Ûh7%œU뜠×!}ô©ª2˜¬DÉÌÃÊÙjH-[Ëü¬…ÅØæáŠ^b/³Ãìjyò»ÈþÂþÊ>sä7øXž7\ß*^Í×ð|Žà¯`GöòÓü~ 5öóë¨1]d‹1b²ðŠrHxTl;ÄqqF\X· íAm‘¶Z[‡ÚÏiýÚ'XI® =WŸ£—@šôV}»Þ©ÿ ;z@02œ®d£Æ.ãy£×øÐøÊcŽ5§B +Ìb³Úl6ÛÍ£f¿y9åXê’Ôpj4ÍMGñËöËo|½¯cwÿ–¯3 +i»ˆÝð¸–:ïÎò ³95Ì{Uvf5›Ž•ú#Ý©´B;GkģԬ׉tó +f1í)öŠ(§ctÈlg§…_ ˆCz®±`¨Ÿ|¿8jn1ýæedzM<«7™l‰ÞÉóÅø¢£¬’þήÓc˜9ÎgÐ9ÚC»Y;¥PWÊ16ßÚY>…uê/Š×´náÕ·³û±‚õ>ñšCcð_ÔtšŠ½®SŽ:pKçÍŸ7{ÖÌâ¢Â‚|wÞŒû§ß7-÷^kªKN™|Ϥ‰¾3~ÜØ19£³³2G‘‘ž–šbº&8#·×*÷K{šßÖ¦YË–å+Ý +À¸Åà·ñ¯‡]~;Ç–~‡&og–‚Ùð fé³t˜É2åBZ˜ï–^KÚ¿÷Xò$[[é~ÚcÕJ{ÀÁ+¬Ms”P\.ŒÞñMi3¿ôÚåíM ¯ßƒx=éieVY(-ßM=ié€é@v¹ÕÖÃÊ1ðroI§”ÈÊ®°<^{¹åQ)Ø"×Ú«*}^ÏD—«6ßm³²z«Î&k©=*Ï¡P™3m”Ù¦3 «r¨Sö¸ßLì=™Iuþ¼Œ  |Ïg‹@­š#+Ï~ÈòØmíŸï>É^®ñÙ©e'ÕøNQÅ`GÏò§VÍ–]æÛåÐÇ>nkÿD‘ðŽK¥&»¤Ý]é»ÕëRÏÚZÍw¯¨ò¹µåÝ+UU>§eã ‘¤²©2‡ +Y^eñovªµÔjJlðc±&$lªÚâzmBEé©Á?S…W&j|–Ë^<Ѫ x&õäP¢jKïòR¹üvO¾»'3k¨Ó=#G%Aƈ[AhØç ‡®²¾Ùj¦2²–c‹Ø²^"ŸeóÜùêšO‰úù áªeèhýó'2KÔBè¹™–L\'lkàÊí–@Òbäf^'ÕvÞrðßÄv^ž=c†Ú)f–™-rô9ùîv{…Õ–)íh­òaPmI!Zîr©Uîâmê•ÇÑæ«(×qÞA•»ų́úÞ«ôLù#êu#öÎqy”!öb¯Àµ4éí¡É¹<¿å¹pÍÞg¯Í_ÇC|-¾(ÚÂu ´'/ÁèŸx¼‰ýøyî«Ãñ[á]4ïo #:ÆNQ8Ƴw­%@+ÆâsGË}†ûìœg%SÌ¿ÕÓU½Ÿî¬£ò¹ë(WÞµmmpEìð?×ýoÈÁ`M ùùmZ ¿ϧ—ï¹sßKÛý¦X¾‘'¿ï}´™aŠùßK)Æ_¢E…ºÇN¹¾÷Mr×Òì Y½™·µr¬'¨3éJ›ð +ÿ¬÷«y{´œ:;Q¥j­Œv‡s®Ç溛¡CŽ´Ö‡¬3¬iÖiÖIÖ Ö«‡ÕÍêbÅXQVk kËËÒYn–}þÜßàp|Π̀ipLcà=‡ÀèwÚ<ÏM[¬³¬X§Xﳎ±ž`µ³¶²ZY‚åa¹XÂß‚¯Á5ð9ø ,‚Á0Îãà-° w7×øj|ÍœöB´G˜'„yT˜ÂÜ+Ì焹K˜#ÂÜ)ÌÂL 3)6Èõ2,ï—÷Ê{dHe¬’Y!Ë¥_J镺tI<Ãvµ;îŠ÷Å´¸½0DñÁ°ýk_$§ù·ï°=‘˜fWÅ)þT,d·6Ø®#ÎŒ&§-ÏjÚëc†šÌ\"M[›0òN¥(Øð÷-T²Oì¿Bë´$ðÛ2/Ö}*T´QÓ‰š*j:Ñ6— æøÀxú>ºKÃmÚªÙ’š{TwÉYI±Ô¶ìyW™ýIu©X0°¯ÍéÜæºÐAã²NÚ4•á›^ŽIâ Ríí*…/šJU¨ùc>:¸¹Î¸¬MçS„×b(ÿ`Ê o +endstream +endobj +1793 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1794 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1811 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1812 0 R +/FontName /UAAMMA+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1795 0 obj +<< +/K 1813 0 R +/P 1755 0 R +/S /TR +>> +endobj +1796 0 obj +<< +/K 1814 0 R +/P 1756 0 R +/S /TR +>> +endobj +1797 0 obj +<< +/K 1815 0 R +/P 1757 0 R +/S /TR +>> +endobj +1798 0 obj +<< +/K [1805 0 R 1806 0 R] +/P 1757 0 R +/S /TR +>> +endobj +1799 0 obj +<< +/K 1816 0 R +/P 1758 0 R +/S /TR +>> +endobj +1800 0 obj +<< +/K [1807 0 R 1808 0 R] +/P 1758 0 R +/S /TR +>> +endobj +1801 0 obj +<< +/K 1817 0 R +/P 1759 0 R +/S /TR +>> +endobj +1802 0 obj +<< +/K 1818 0 R +/P 1760 0 R +/S /TR +>> +endobj +1803 0 obj +<< +/K [1809 0 R 1810 0 R] +/P 1760 0 R +/S /TR +>> +endobj +1804 0 obj +<< +/K 1819 0 R +/P 1761 0 R +/S /TR +>> +endobj +1805 0 obj +<< +/K 1776 0 R +/P 1798 0 R +/S /TD +>> +endobj +1806 0 obj +<< +/K 1777 0 R +/P 1798 0 R +/S /TD +>> +endobj +1807 0 obj +<< +/K 1779 0 R +/P 1800 0 R +/S /TD +>> +endobj +1808 0 obj +<< +/K 1780 0 R +/P 1800 0 R +/S /TD +>> +endobj +1809 0 obj +<< +/K 1785 0 R +/P 1803 0 R +/S /TD +>> +endobj +1810 0 obj +<< +/K 1786 0 R +/P 1803 0 R +/S /TD +>> +endobj +1811 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1812 0 obj +<< +/Filter /FlateDecode +/Length 3258 +/Length1 6160 +>> +stream +H‰ìVkl×>÷Þyø~` +w™˜¼~ñŽ!ÆÆ»¹Á6kR®½k{Áö:»‹„ Sh5‰ZÅE‚Bã¤!Ñ8&­‰h•Ò@-%%EM¤D¤´•¥8"*”*iâ~3»X†ü¨ªJã™ùÎ9ß=÷œsïÜ51"J¥.TøHmÁœ¢ C1"íMXmìŒÊW +Ž#Ò§©ÅMÍmo^_l¥yˆ”õÍ­[šz¯<µ +Ü3¸·¶|þ«‡/e @_ÐCÖ¸”g _ƒ~_K[tóŠe±½D™ÙDbOk¨Ñ—=’=BÄá>ßæÛÜ!Õfe_¶ûÚØ=î¸PÅÙŽp ã‘ßÞ¿~Ì'VGÞ$ºÔAt2JÓõw™ò.û’!uDœf|5œ1LK?ų¨pn¦#3Ç‘éèôe§¯Hü|Q—2ˆéé$õ¨Uê<ÄÊþ%1¾Ïš“}Ãø+*\ˆ¡'•Þ¥÷ /Y×Ìÿ‹-ý‹u¥Ñ~b¿æ%° IÐâX®L` ¸!uì¿­ÖæT’¡ùéófTÈO`NcÙ3 ŒoŒJ`øíÖ€ÿ™À:#î<&ç.UÁÆp(jŠÊòP¸#öEƒ¡ö|YÖÚ*k‚Í-ш¬ Dá΀?¿®¬¬ªª,wM°½Ù;’WhÞÔê ß«}Ô ƒF[aé“á@s0 „~ ûü6_x£ YžÛÔ¦oÎWÛ%ÂȺö`ãk£¾h "}íþÙ4†6µGÃÁ@$_Ò1’è{!dP©‘¢î&ŠÂV¦ûéƒ%ÔNùð”Q+DR lÍÔ_ÄÖxÀîÄÓf˜eˆ]…g.­»|â¡<{L3mB4ÆÝ©Ýëèÿ4ÿßÈzðŽ¢Ví\‰·5ÒòFm«Õ luÒ­ÍŽ¸¶Ðè˜oö6ÝÓêH;7™ÈF¢Æv;·øüµ@>[‹Øs¶ÃZÈ t[Ð6Áke´ÙÖªã‹Õ§±’JIÊå>Ý ·Þä2 Ž»]UµRRé5ymDËe/R‘^ÄÌ®»²ÿë×Å»zŠ ÌÃwðµ@?Á UDqûq êáýqÍÅmUÒünÎA'-û\Ú†§‹þÁŽÒlËj€¿ìsx—À׈7³cô°}öû)Ú…ØŸñ~~–Ÿµ½K·ÒbÄ…÷«ƒ°[ñvÒ+t™½Γô,|§é¢5 +‘{ðË{“Í‚t³Ø0_+³æGœ`÷ ß_Ñô7–ÍJXŒ'‹ï°s‰ÏÖÎ9ÈE;Š%U¬•…X˜íEÌ!.ø|D ñ=¼—›ü¬¨WJÔA-K[¨·" +\œ½™¨ÐŠöìÆÈ£Qãò{ÆY5[ÍZØ~Ö‹αaÈužÇ—¢ë–üXx•4åcu£údP«Ó'iˆ­â|ŸŒ}šCóP•sT#g?mÀo‡%OB¶¡—ߣ稗žÇ ØG¯Ó¯­9é]¦›èN:Īk!{­ÔCÂl;Û…~tß&O³C¬Ÿ½ŽüÞbïñé¨:.­¨>žåN~Ÿâoñ·ùŸøÿ„&H$‹õ¢ADÄq\¼#ÞQ–+½Êóʇʇ*SM»SYZ¶¶Në†ìÓ“õú.ýGúaýç)ù4u9QW%ΡFÚ‚J¶ÑŠÙ«Ö9E¯Aé«ÈH¢Kd.VÁê õl-ó²6a›G+z‘½ÄŽ²S¨å=Èûìû û+ûÔ–›\ãxîh}«x-_Ã7òýü?Ä_ÆŽìçgøûü2jâ7PcªÈãÅ4áÕâ1±Yì'ÅYqI cÝÒ”‡”¥NY‡ÚÏ+CÊÇXI® +5G¯CZÔvu»Ú­þ;zXÖÒì®diã´ÅÚní9­_û@ûR¯OÐg@òõ"½VoÕ;õãú~%éDrYr09œâ¤ãøeûÅ×¾Þ×°»Ã×i4™]ÂnxB¤ƒewçxšÞšäýVvz-›…•ú#ÝÉ´R9OkÄcÔª6ˆTý*ee{YTÐ :¢w²3Â+†Å5G[ï'?(Žë[t¯~™^Ϫ-z>+S»ÙQ¾_t˜UÓßÙ z3Gùl:O{ië¤$êI:ÁÆà[;ǧ³nõñªÒ+ÜêvöVpŠ:(¾Oói<þ‹šE3°×UʶÜÒ…‹Λ;§¨° ?Ï™;ûY÷Ï̹ϘáÓ§}{ê”Éßš4qÂøìqY™écǤ¥¦$'險ÎÈé6*¼Òœé5•™Æòåy–nø`ðÝfðšø×츓cJ¯M“w2KÁlú³4Î,e² ¹„–ä9¥Ûæï\†`k«=ÀO»ŒziÛ¸ÊÆÊL[ÅáÀéžÔâ’&óJ·YÑÙs{]ˆ×—šRn”RòœÔ—’ +˜ +dV}¬¢„Ù€W¸‹û8%AVf¥ár›+ —•‚)rÜ>¿¹ªÚãvMq8êóœ&+o4L2–™é¹6…ÊíiL­ÜÔíidÐ*‡ºeŸóؾ jðæ¦ù ¿ï»Søê­92s͇ —ùðÖ¡IyÎöÒj™\>Àhµç4UŽtõ­èr¹ê­Ù²Ê=»múDÐ'nš"bîIAi©±ØniöV{n÷:¬g}=‚æ9WÖxÈÚpï“V5»e“ +¤e³ÊŒ0Ü–Å»AšÉÆ2£%¶Á‹Åš3©f‹ãÕÉ•¥§GþL•n[í1æÒ)F½Ï5µ/›b5[úW”Êwzòœ}™ñN÷MO€´1·ƒÀ¨ÏF6ÝBÈúV«™•‘±[Ä”™x “ç,²Ek\®z†ŽÑ?o,£ØZ5'ñ„` _½ÓâKX´œŒdAk»Œn9øoa37ל=ÛÚ)z9–™•Øúüò-êU'Ðæ«(×qÞC—»Æ<9Á~?ÂÈ×c£ë¯Ð³Ô¨×Ø8ÇäMP†Ø#ˆ½×Ðd°‡& ç +ü–ç*À5ŸC¼&ñµ„h ×-Ñžº£ò%ðö[ฯjÇowÒ|¸Ž;Má\ÏÞ´–°uö¯‹ÿÌÿî³wž•L1ÿVÏÐõ~º½Žˆäs×P®¸cÛbhEìð?×ýo¨¡`M øùmZpÏgï¹wßKÛý¦X¾ž'¿|´•eŠùßK)Æ_¦E¾Ç^¹¾ ÿ ö×аê Y¿™·D9Ö‚´3éJñ +ÿl èy{¢œ:;Q¥r­JtÇr¾Ç溛¡CžÄ ëÖÖ4ë4ë]ÖIÖ«‡ÕÍêb%Y Vk3k#+È2X~–H< n€ïÀuð ¸>ç€fÀ48 ¦Àqð‡À0ðÚ<ÇM;¬³¬÷Y§Xﱎ³ž`µ³¶°ZY’`ùX”HÀß‚¯ÁUð9ø ,‚Áy0>'À›`ØÑÝ\ªm°sâÅD´OJû˜´'¤½GÚÏK{§´G¤½]ÚÛ¤mI»_Þ¯Ö«˜ºOÝ£îVQU«ªU¥Š¨5ª\…•RAe(ŸÂ3ìVùS¾T_R¤Ü…aJ ÅÜ_ûâ9~j›ˆ'…[™¢ÔÓɨÛÚàúŽx3šœXžâõQSOf.’Ë£fÞ–Eµ ߢ%{©ô¾Ë´Nl ‰ß–y¹îS©£}ˆÚ^ÔÖQÛ‹FÅ\ššSƒc™{é ÿµ‰U³%5;vëî¦ûg%­­ÛÙó¾²0ú“1ë¬dmdo›×¹MuÑæ%ƒÄ4•á›^ŽIâ]@§ÛÛu +_4Z£çùTôÀ¦:ó’˜Î§"¯ÅPþ)Àvo +endstream +endobj +1813 0 obj +<< +/P 1795 0 R +/S /TD +>> +endobj +1814 0 obj +<< +/P 1796 0 R +/S /TD +>> +endobj +1815 0 obj +<< +/A << +/ColSpan 2 +/O /Table +>> +/P 1797 0 R +/S /TD +>> +endobj +1816 0 obj +<< +/A << +/ColSpan 2 +/O /Table +>> +/P 1799 0 R +/S /TD +>> +endobj +1817 0 obj +<< +/P 1801 0 R +/S /TD +>> +endobj +1818 0 obj +<< +/A << +/ColSpan 2 +/O /Table +>> +/P 1802 0 R +/S /TD +>> +endobj +1819 0 obj +<< +/P 1804 0 R +/S /TD +>> +endobj +xref +0 1820 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000389 00000 n +0000004671 00000 n +0000004705 00000 n +0000005084 00000 n +0000005211 00000 n +0000005258 00000 n +0000007071 00000 n +0000009220 00000 n +0000011281 00000 n +0000013505 00000 n +0000015758 00000 n +0000017761 00000 n +0000020211 00000 n +0000022231 00000 n +0000024790 00000 n +0000026797 00000 n +0000029085 00000 n +0000031106 00000 n +0000033827 00000 n +0000035863 00000 n +0000039215 00000 n +0000041257 00000 n +0000044078 00000 n +0000046097 00000 n +0000048499 00000 n +0000050519 00000 n +0000053079 00000 n +0000055101 00000 n +0000057843 00000 n +0000059863 00000 n +0000062067 00000 n +0000064089 00000 n +0000066369 00000 n +0000068391 00000 n +0000070753 00000 n +0000072789 00000 n +0000075251 00000 n +0000077273 00000 n +0000079651 00000 n +0000081673 00000 n +0000083949 00000 n +0000085971 00000 n +0000088161 00000 n +0000090183 00000 n +0000092646 00000 n +0000094662 00000 n +0000097224 00000 n +0000099240 00000 n +0000101597 00000 n +0000103588 00000 n +0000105853 00000 n +0000107861 00000 n +0000109789 00000 n +0000111383 00000 n +0000111452 00000 n +0000111945 00000 n +0000112277 00000 n +0000116301 00000 n +0000116480 00000 n +0000116607 00000 n +0000116732 00000 n +0000117209 00000 n +0000117681 00000 n +0000117833 00000 n +0000118049 00000 n +0000118449 00000 n +0000118877 00000 n +0000119157 00000 n +0000131482 00000 n +0000131990 00000 n +0000134806 00000 n +0000135101 00000 n +0000136048 00000 n +0000136264 00000 n +0000136563 00000 n +0000137017 00000 n +0000138234 00000 n +0000139280 00000 n +0000140304 00000 n +0000141369 00000 n +0000142436 00000 n +0000143480 00000 n +0000144489 00000 n +0000145351 00000 n +0000145478 00000 n +0000145603 00000 n +0000146178 00000 n +0000146409 00000 n +0000146625 00000 n +0000147093 00000 n +0000147926 00000 n +0000152967 00000 n +0000153849 00000 n +0000159887 00000 n +0000160331 00000 n +0000166138 00000 n +0000166261 00000 n +0000166382 00000 n +0000166507 00000 n +0000167067 00000 n +0000167576 00000 n +0000172907 00000 n +0000178898 00000 n +0000185232 00000 n +0000190557 00000 n +0000195338 00000 n +0000200514 00000 n +0000206178 00000 n +0000206331 00000 n +0000211935 00000 n +0000212059 00000 n +0000212181 00000 n +0000212306 00000 n +0000215338 00000 n +0000354652 00000 n +0000360889 00000 n +0000361013 00000 n +0000361135 00000 n +0000361260 00000 n +0000365196 00000 n +0000365320 00000 n +0000365442 00000 n +0000365567 00000 n +0000371665 00000 n +0000371789 00000 n +0000371911 00000 n +0000372036 00000 n +0000378568 00000 n +0000384255 00000 n +0000390389 00000 n +0000395843 00000 n +0000401570 00000 n +0000401694 00000 n +0000401816 00000 n +0000401941 00000 n +0000407555 00000 n +0000412597 00000 n +0000418890 00000 n +0000424732 00000 n +0000431036 00000 n +0000437354 00000 n +0000442519 00000 n +0000448694 00000 n +0000454504 00000 n +0000460562 00000 n +0000466563 00000 n +0000472645 00000 n +0000478754 00000 n +0000484353 00000 n +0000486019 00000 n +0000486506 00000 n +0000724345 00000 n +0000727387 00000 n +0000727511 00000 n +0000727633 00000 n +0000727758 00000 n +0000728237 00000 n +0000906232 00000 n +0000906533 00000 n +0001082732 00000 n +0001083015 00000 n +0001263991 00000 n +0001264294 00000 n +0001408475 00000 n +0001409865 00000 n +0001409978 00000 n +0001410106 00000 n +0001410938 00000 n +0001412173 00000 n +0001412471 00000 n +0001423551 00000 n +0001434897 00000 n +0001446157 00000 n +0001446584 00000 n +0001447282 00000 n +0001448277 00000 n +0001449541 00000 n +0001451008 00000 n +0001452801 00000 n +0001454860 00000 n +0001457130 00000 n +0001459595 00000 n +0001462294 00000 n +0001465402 00000 n +0001468714 00000 n +0001472081 00000 n +0001476314 00000 n +0001480681 00000 n +0001485769 00000 n +0001491054 00000 n +0001496578 00000 n +0001502457 00000 n +0001508677 00000 n +0001515368 00000 n +0001522415 00000 n +0001529762 00000 n +0001537399 00000 n +0001545467 00000 n +0001553812 00000 n +0001562560 00000 n +0001571483 00000 n +0001580769 00000 n +0001590397 00000 n +0001600283 00000 n +0001610441 00000 n +0001620951 00000 n +0001631862 00000 n +0001643183 00000 n +0001654291 00000 n +0001665553 00000 n +0001676820 00000 n +0001688092 00000 n +0001699451 00000 n +0001699725 00000 n +0001700267 00000 n +0001700540 00000 n +0001701071 00000 n +0001701099 00000 n +0001701411 00000 n +0001701736 00000 n +0001702061 00000 n +0001702384 00000 n +0001702743 00000 n +0001703110 00000 n +0001703537 00000 n +0001703844 00000 n +0001704159 00000 n +0001704314 00000 n +0001704511 00000 n +0001704666 00000 n +0001705082 00000 n +0001705278 00000 n +0001705477 00000 n +0001705877 00000 n +0001706032 00000 n +0001706306 00000 n +0001706932 00000 n +0001707351 00000 n +0001707701 00000 n +0001708026 00000 n +0001708351 00000 n +0001708779 00000 n +0001709284 00000 n +0001709439 00000 n +0001709857 00000 n +0001710053 00000 n +0001710252 00000 n +0001710582 00000 n +0001710737 00000 n +0001711161 00000 n +0001711357 00000 n +0001711556 00000 n +0001711956 00000 n +0001712229 00000 n +0001712693 00000 n +0001712803 00000 n +0001713316 00000 n +0001713921 00000 n +0001714031 00000 n +0001714548 00000 n +0001715163 00000 n +0001715191 00000 n +0001715501 00000 n +0001715627 00000 n +0001715782 00000 n +0001716199 00000 n +0001716599 00000 n +0001716799 00000 n +0001716954 00000 n +0001717195 00000 n +0001717744 00000 n +0001718122 00000 n +0001719774 00000 n +0001719829 00000 n +0001719885 00000 n +0001719940 00000 n +0001719995 00000 n +0001720051 00000 n +0001720106 00000 n +0001720247 00000 n +0001720302 00000 n +0001720358 00000 n +0001720413 00000 n +0001720469 00000 n +0001720525 00000 n +0001720580 00000 n +0001720635 00000 n +0001720690 00000 n +0001720746 00000 n +0001720801 00000 n +0001720857 00000 n +0001720913 00000 n +0001720969 00000 n +0001721025 00000 n +0001721081 00000 n +0001721223 00000 n +0001721279 00000 n +0001721421 00000 n +0001721563 00000 n +0001721705 00000 n +0001721847 00000 n +0001721950 00000 n +0001722031 00000 n +0001722112 00000 n +0001722200 00000 n +0001722270 00000 n +0001722334 00000 n +0001722404 00000 n +0001722468 00000 n +0001722538 00000 n +0001722609 00000 n +0001722679 00000 n +0001722750 00000 n +0001722820 00000 n +0001722899 00000 n +0001722984 00000 n +0001723054 00000 n +0001723125 00000 n +0001723195 00000 n +0001723265 00000 n +0001723346 00000 n +0001723416 00000 n +0001723504 00000 n +0001723585 00000 n +0001723666 00000 n +0001723747 00000 n +0001723828 00000 n +0001723909 00000 n +0001723990 00000 n +0001724071 00000 n +0001724152 00000 n +0001724222 00000 n +0001724318 00000 n +0001724449 00000 n +0001724526 00000 n +0001724659 00000 n +0001724741 00000 n +0001724823 00000 n +0001724906 00000 n +0001725006 00000 n +0001725089 00000 n +0001725221 00000 n +0001725289 00000 n +0001725372 00000 n +0001725455 00000 n +0001725561 00000 n +0001725644 00000 n +0001725746 00000 n +0001725829 00000 n +0001725912 00000 n +0001725990 00000 n +0001726100 00000 n +0001726183 00000 n +0001726300 00000 n +0001726383 00000 n +0001726466 00000 n +0001726544 00000 n +0001726639 00000 n +0001726722 00000 n +0001726808 00000 n +0001726876 00000 n +0001726951 00000 n +0001727034 00000 n +0001727102 00000 n +0001727177 00000 n +0001727260 00000 n +0001727328 00000 n +0001727390 00000 n +0001727459 00000 n +0001727522 00000 n +0001727591 00000 n +0001727654 00000 n +0001727722 00000 n +0001727790 00000 n +0001727917 00000 n +0001728001 00000 n +0001728069 00000 n +0001728175 00000 n +0001728243 00000 n +0001728334 00000 n +0001728402 00000 n +0001728525 00000 n +0001728609 00000 n +0001728688 00000 n +0001728782 00000 n +0001728881 00000 n +0001728965 00000 n +0001729060 00000 n +0001729167 00000 n +0001729251 00000 n +0001729374 00000 n +0001729458 00000 n +0001729621 00000 n +0001729705 00000 n +0001729789 00000 n +0001729873 00000 n +0001729957 00000 n +0001730042 00000 n +0001730128 00000 n +0001730238 00000 n +0001730368 00000 n +0001730447 00000 n +0001730533 00000 n +0001730613 00000 n +0001730727 00000 n +0001730807 00000 n +0001730887 00000 n +0001731037 00000 n +0001731121 00000 n +0001731205 00000 n +0001731344 00000 n +0001731428 00000 n +0001731512 00000 n +0001731592 00000 n +0001731746 00000 n +0001731830 00000 n +0001731914 00000 n +0001731998 00000 n +0001732129 00000 n +0001732213 00000 n +0001732297 00000 n +0001732448 00000 n +0001732532 00000 n +0001732616 00000 n +0001732700 00000 n +0001732780 00000 n +0001732874 00000 n +0001732979 00000 n +0001733063 00000 n +0001733143 00000 n +0001733253 00000 n +0001733416 00000 n +0001733500 00000 n +0001733584 00000 n +0001733668 00000 n +0001733827 00000 n +0001733911 00000 n +0001733995 00000 n +0001734079 00000 n +0001734163 00000 n +0001734243 00000 n +0001734357 00000 n +0001734441 00000 n +0001734525 00000 n +0001734619 00000 n +0001734703 00000 n +0001734783 00000 n +0001734881 00000 n +0001734965 00000 n +0001735045 00000 n +0001735125 00000 n +0001735279 00000 n +0001735363 00000 n +0001735447 00000 n +0001735531 00000 n +0001735611 00000 n +0001735741 00000 n +0001735825 00000 n +0001735909 00000 n +0001735989 00000 n +0001736221 00000 n +0001736305 00000 n +0001736389 00000 n +0001736469 00000 n +0001736575 00000 n +0001736659 00000 n +0001736739 00000 n +0001736877 00000 n +0001736961 00000 n +0001737045 00000 n +0001737125 00000 n +0001737205 00000 n +0001737339 00000 n +0001737423 00000 n +0001737507 00000 n +0001737594 00000 n +0001737674 00000 n +0001737812 00000 n +0001737896 00000 n +0001737980 00000 n +0001738064 00000 n +0001738144 00000 n +0001738270 00000 n +0001738354 00000 n +0001738438 00000 n +0001738517 00000 n +0001738647 00000 n +0001738731 00000 n +0001738815 00000 n +0001738895 00000 n +0001739203 00000 n +0001739287 00000 n +0001739426 00000 n +0001739510 00000 n +0001739594 00000 n +0001739678 00000 n +0001739747 00000 n +0001739816 00000 n +0001739879 00000 n +0001739948 00000 n +0001740017 00000 n +0001740080 00000 n +0001740149 00000 n +0001740218 00000 n +0001740287 00000 n +0001740356 00000 n +0001740425 00000 n +0001740488 00000 n +0001740557 00000 n +0001740626 00000 n +0001740689 00000 n +0001740758 00000 n +0001740827 00000 n +0001740890 00000 n +0001740970 00000 n +0001741160 00000 n +0001741244 00000 n +0001741328 00000 n +0001741412 00000 n +0001741496 00000 n +0001741580 00000 n +0001741683 00000 n +0001741818 00000 n +0001741902 00000 n +0001741986 00000 n +0001742120 00000 n +0001742204 00000 n +0001742290 00000 n +0001742380 00000 n +0001742490 00000 n +0001742600 00000 n +0001742684 00000 n +0001742786 00000 n +0001742870 00000 n +0001742950 00000 n +0001743068 00000 n +0001743148 00000 n +0001743262 00000 n +0001743346 00000 n +0001743430 00000 n +0001743529 00000 n +0001743613 00000 n +0001743697 00000 n +0001743811 00000 n +0001743891 00000 n +0001744253 00000 n +0001744337 00000 n +0001744421 00000 n +0001744507 00000 n +0001744593 00000 n +0001744662 00000 n +0001744731 00000 n +0001744816 00000 n +0001744900 00000 n +0001744969 00000 n +0001745038 00000 n +0001745139 00000 n +0001745223 00000 n +0001745307 00000 n +0001745376 00000 n +0001745445 00000 n +0001745518 00000 n +0001745587 00000 n +0001745656 00000 n +0001745741 00000 n +0001745825 00000 n +0001745894 00000 n +0001745963 00000 n +0001746040 00000 n +0001746109 00000 n +0001746178 00000 n +0001746275 00000 n +0001746359 00000 n +0001746428 00000 n +0001746497 00000 n +0001746560 00000 n +0001746629 00000 n +0001746698 00000 n +0001746775 00000 n +0001746859 00000 n +0001746928 00000 n +0001746997 00000 n +0001747074 00000 n +0001747158 00000 n +0001747227 00000 n +0001747296 00000 n +0001747373 00000 n +0001747457 00000 n +0001747526 00000 n +0001747595 00000 n +0001747672 00000 n +0001747756 00000 n +0001747825 00000 n +0001747894 00000 n +0001747971 00000 n +0001748040 00000 n +0001748109 00000 n +0001748182 00000 n +0001748251 00000 n +0001748320 00000 n +0001748383 00000 n +0001748452 00000 n +0001748521 00000 n +0001748594 00000 n +0001748663 00000 n +0001748732 00000 n +0001748801 00000 n +0001748870 00000 n +0001748939 00000 n +0001749008 00000 n +0001749077 00000 n +0001749146 00000 n +0001749219 00000 n +0001749288 00000 n +0001749357 00000 n +0001749426 00000 n +0001749506 00000 n +0001749590 00000 n +0001749670 00000 n +0001749756 00000 n +0001749842 00000 n +0001749911 00000 n +0001749980 00000 n +0001750053 00000 n +0001750122 00000 n +0001750191 00000 n +0001750272 00000 n +0001750341 00000 n +0001750410 00000 n +0001750487 00000 n +0001750571 00000 n +0001750640 00000 n +0001750709 00000 n +0001750786 00000 n +0001750870 00000 n +0001750939 00000 n +0001751008 00000 n +0001751085 00000 n +0001751169 00000 n +0001751238 00000 n +0001751307 00000 n +0001751404 00000 n +0001751488 00000 n +0001751572 00000 n +0001751641 00000 n +0001751710 00000 n +0001751787 00000 n +0001751871 00000 n +0001751940 00000 n +0001752009 00000 n +0001752078 00000 n +0001752147 00000 n +0001752216 00000 n +0001752293 00000 n +0001752373 00000 n +0001752453 00000 n +0001752567 00000 n +0001752651 00000 n +0001752735 00000 n +0001752804 00000 n +0001752873 00000 n +0001752941 00000 n +0001753066 00000 n +0001753150 00000 n +0001753234 00000 n +0001753318 00000 n +0001753387 00000 n +0001753456 00000 n +0001753524 00000 n +0001753617 00000 n +0001753703 00000 n +0001753797 00000 n +0001753881 00000 n +0001753950 00000 n +0001754019 00000 n +0001754096 00000 n +0001754180 00000 n +0001754249 00000 n +0001754318 00000 n +0001754387 00000 n +0001754456 00000 n +0001754533 00000 n +0001754602 00000 n +0001754671 00000 n +0001754740 00000 n +0001754809 00000 n +0001754886 00000 n +0001754955 00000 n +0001755024 00000 n +0001755093 00000 n +0001755162 00000 n +0001755247 00000 n +0001755316 00000 n +0001755385 00000 n +0001755454 00000 n +0001755523 00000 n +0001755616 00000 n +0001755700 00000 n +0001755784 00000 n +0001755853 00000 n +0001755922 00000 n +0001755991 00000 n +0001756060 00000 n +0001756145 00000 n +0001756214 00000 n +0001756283 00000 n +0001756352 00000 n +0001756421 00000 n +0001756490 00000 n +0001756559 00000 n +0001756628 00000 n +0001756697 00000 n +0001756766 00000 n +0001756835 00000 n +0001756904 00000 n +0001756973 00000 n +0001757042 00000 n +0001757111 00000 n +0001757188 00000 n +0001757257 00000 n +0001757326 00000 n +0001757395 00000 n +0001757464 00000 n +0001757533 00000 n +0001757602 00000 n +0001757671 00000 n +0001757739 00000 n +0001757820 00000 n +0001757889 00000 n +0001757958 00000 n +0001758026 00000 n +0001758147 00000 n +0001758231 00000 n +0001758315 00000 n +0001758384 00000 n +0001758453 00000 n +0001758521 00000 n +0001758602 00000 n +0001758671 00000 n +0001758740 00000 n +0001758808 00000 n +0001758885 00000 n +0001758965 00000 n +0001759091 00000 n +0001759175 00000 n +0001759259 00000 n +0001759342 00000 n +0001759411 00000 n +0001759480 00000 n +0001759605 00000 n +0001759689 00000 n +0001759773 00000 n +0001759858 00000 n +0001759928 00000 n +0001759998 00000 n +0001760089 00000 n +0001760170 00000 n +0001760365 00000 n +0001760450 00000 n +0001760535 00000 n +0001760620 00000 n +0001760705 00000 n +0001760812 00000 n +0001760897 00000 n +0001760982 00000 n +0001761132 00000 n +0001761217 00000 n +0001761302 00000 n +0001761387 00000 n +0001761468 00000 n +0001761602 00000 n +0001761687 00000 n +0001761772 00000 n +0001761859 00000 n +0001761940 00000 n +0001762104 00000 n +0001762189 00000 n +0001762274 00000 n +0001762344 00000 n +0001762414 00000 n +0001762506 00000 n +0001762591 00000 n +0001762676 00000 n +0001762746 00000 n +0001762816 00000 n +0001762935 00000 n +0001763020 00000 n +0001763090 00000 n +0001763160 00000 n +0001763246 00000 n +0001763316 00000 n +0001763386 00000 n +0001763472 00000 n +0001763542 00000 n +0001763612 00000 n +0001763742 00000 n +0001763827 00000 n +0001763912 00000 n +0001763997 00000 n +0001764067 00000 n +0001764137 00000 n +0001764208 00000 n +0001764289 00000 n +0001764390 00000 n +0001764475 00000 n +0001764545 00000 n +0001764615 00000 n +0001764696 00000 n +0001764766 00000 n +0001764836 00000 n +0001764912 00000 n +0001764982 00000 n +0001765052 00000 n +0001765116 00000 n +0001765186 00000 n +0001765256 00000 n +0001765396 00000 n +0001765481 00000 n +0001765566 00000 n +0001765651 00000 n +0001765721 00000 n +0001765791 00000 n +0001765855 00000 n +0001765925 00000 n +0001765995 00000 n +0001766066 00000 n +0001766136 00000 n +0001766206 00000 n +0001766277 00000 n +0001766435 00000 n +0001766520 00000 n +0001766605 00000 n +0001766690 00000 n +0001766775 00000 n +0001766862 00000 n +0001767022 00000 n +0001767107 00000 n +0001767192 00000 n +0001767277 00000 n +0001767373 00000 n +0001767458 00000 n +0001767545 00000 n +0001767632 00000 n +0001767702 00000 n +0001767772 00000 n +0001767864 00000 n +0001767949 00000 n +0001768034 00000 n +0001768104 00000 n +0001768174 00000 n +0001768245 00000 n +0001768315 00000 n +0001768385 00000 n +0001768461 00000 n +0001768531 00000 n +0001768601 00000 n +0001768695 00000 n +0001768780 00000 n +0001768850 00000 n +0001768920 00000 n +0001769004 00000 n +0001769089 00000 n +0001769159 00000 n +0001769229 00000 n +0001769300 00000 n +0001769370 00000 n +0001769440 00000 n +0001769542 00000 n +0001769627 00000 n +0001769712 00000 n +0001769782 00000 n +0001769852 00000 n +0001769941 00000 n +0001770026 00000 n +0001770096 00000 n +0001770166 00000 n +0001770242 00000 n +0001770312 00000 n +0001770382 00000 n +0001770476 00000 n +0001770561 00000 n +0001770642 00000 n +0001770784 00000 n +0001770869 00000 n +0001770954 00000 n +0001771053 00000 n +0001771138 00000 n +0001771244 00000 n +0001771314 00000 n +0001771384 00000 n +0001771448 00000 n +0001771518 00000 n +0001771588 00000 n +0001771659 00000 n +0001771729 00000 n +0001771799 00000 n +0001771870 00000 n +0001771940 00000 n +0001772010 00000 n +0001772089 00000 n +0001772174 00000 n +0001772244 00000 n +0001772314 00000 n +0001772385 00000 n +0001772455 00000 n +0001772525 00000 n +0001772589 00000 n +0001772659 00000 n +0001772729 00000 n +0001772793 00000 n +0001772863 00000 n +0001772933 00000 n +0001772997 00000 n +0001773067 00000 n +0001773137 00000 n +0001773216 00000 n +0001773301 00000 n +0001773371 00000 n +0001773441 00000 n +0001773505 00000 n +0001773575 00000 n +0001773645 00000 n +0001773729 00000 n +0001773814 00000 n +0001773884 00000 n +0001773954 00000 n +0001774025 00000 n +0001774095 00000 n +0001774165 00000 n +0001774229 00000 n +0001774310 00000 n +0001774403 00000 n +0001774473 00000 n +0001774543 00000 n +0001774607 00000 n +0001774677 00000 n +0001774747 00000 n +0001774826 00000 n +0001774911 00000 n +0001774981 00000 n +0001775051 00000 n +0001775115 00000 n +0001775185 00000 n +0001775255 00000 n +0001775319 00000 n +0001775389 00000 n +0001775459 00000 n +0001775523 00000 n +0001775603 00000 n +0001775704 00000 n +0001775789 00000 n +0001775870 00000 n +0001775966 00000 n +0001776051 00000 n +0001776121 00000 n +0001776191 00000 n +0001776262 00000 n +0001776332 00000 n +0001776402 00000 n +0001776486 00000 n +0001776571 00000 n +0001776641 00000 n +0001776711 00000 n +0001776795 00000 n +0001776880 00000 n +0001776950 00000 n +0001777020 00000 n +0001777091 00000 n +0001777702 00000 n +0001777787 00000 n +0001777872 00000 n +0001777957 00000 n +0001778042 00000 n +0001778127 00000 n +0001778212 00000 n +0001778297 00000 n +0001778568 00000 n +0001778653 00000 n +0001778738 00000 n +0001778823 00000 n +0001778908 00000 n +0001778993 00000 n +0001779118 00000 n +0001779203 00000 n +0001779288 00000 n +0001779373 00000 n +0001779460 00000 n +0001779606 00000 n +0001779687 00000 n +0001779823 00000 n +0001779908 00000 n +0001779978 00000 n +0001780048 00000 n +0001780112 00000 n +0001780182 00000 n +0001780252 00000 n +0001780316 00000 n +0001780386 00000 n +0001780457 00000 n +0001780522 00000 n +0001780593 00000 n +0001780664 00000 n +0001780741 00000 n +0001780812 00000 n +0001780883 00000 n +0001780948 00000 n +0001781019 00000 n +0001781090 00000 n +0001781155 00000 n +0001781226 00000 n +0001781297 00000 n +0001781362 00000 n +0001781433 00000 n +0001781504 00000 n +0001781569 00000 n +0001781640 00000 n +0001781711 00000 n +0001781776 00000 n +0001781847 00000 n +0001781918 00000 n +0001781999 00000 n +0001782086 00000 n +0001782157 00000 n +0001782228 00000 n +0001782293 00000 n +0001782364 00000 n +0001782435 00000 n +0001782500 00000 n +0001782601 00000 n +0001782688 00000 n +0001782770 00000 n +0001783027 00000 n +0001783114 00000 n +0001783201 00000 n +0001783288 00000 n +0001783375 00000 n +0001783462 00000 n +0001783549 00000 n +0001783636 00000 n +0001783718 00000 n +0001783960 00000 n +0001784047 00000 n +0001784134 00000 n +0001784221 00000 n +0001784308 00000 n +0001784395 00000 n +0001784482 00000 n +0001784569 00000 n +0001784651 00000 n +0001784797 00000 n +0001784884 00000 n +0001784971 00000 n +0001785058 00000 n +0001785249 00000 n +0001785336 00000 n +0001785423 00000 n +0001785510 00000 n +0001785597 00000 n +0001785684 00000 n +0001785771 00000 n +0001785931 00000 n +0001786018 00000 n +0001786105 00000 n +0001786192 00000 n +0001786263 00000 n +0001786334 00000 n +0001786399 00000 n +0001786470 00000 n +0001786541 00000 n +0001786628 00000 n +0001786699 00000 n +0001786770 00000 n +0001786835 00000 n +0001786906 00000 n +0001786977 00000 n +0001787042 00000 n +0001787159 00000 n +0001787246 00000 n +0001787333 00000 n +0001787404 00000 n +0001787475 00000 n +0001787540 00000 n +0001787611 00000 n +0001787682 00000 n +0001787764 00000 n +0001787835 00000 n +0001787906 00000 n +0001787971 00000 n +0001788053 00000 n +0001788135 00000 n +0001788287 00000 n +0001788374 00000 n +0001788461 00000 n +0001788543 00000 n +0001788685 00000 n +0001788772 00000 n +0001788859 00000 n +0001788965 00000 n +0001789052 00000 n +0001789149 00000 n +0001789231 00000 n +0001789378 00000 n +0001789465 00000 n +0001789552 00000 n +0001789765 00000 n +0001789852 00000 n +0001789939 00000 n +0001790026 00000 n +0001790113 00000 n +0001790230 00000 n +0001790674 00000 n +0001790761 00000 n +0001790848 00000 n +0001790935 00000 n +0001791022 00000 n +0001791121 00000 n +0001791208 00000 n +0001791295 00000 n +0001791376 00000 n +0001791509 00000 n +0001791596 00000 n +0001791678 00000 n +0001791749 00000 n +0001791820 00000 n +0001791885 00000 n +0001791956 00000 n +0001792027 00000 n +0001792092 00000 n +0001792163 00000 n +0001792234 00000 n +0001792299 00000 n +0001792370 00000 n +0001792441 00000 n +0001792506 00000 n +0001792736 00000 n +0001792823 00000 n +0001792910 00000 n +0001792997 00000 n +0001793084 00000 n +0001793171 00000 n +0001793258 00000 n +0001793345 00000 n +0001793461 00000 n +0001793548 00000 n +0001793635 00000 n +0001793717 00000 n +0001793897 00000 n +0001793984 00000 n +0001794071 00000 n +0001794158 00000 n +0001794245 00000 n +0001794438 00000 n +0001794525 00000 n +0001794612 00000 n +0001794699 00000 n +0001794786 00000 n +0001794917 00000 n +0001795004 00000 n +0001795435 00000 n +0001795539 00000 n +0001795626 00000 n +0001795713 00000 n +0001795800 00000 n +0001795916 00000 n +0001796003 00000 n +0001796166 00000 n +0001796253 00000 n +0001796340 00000 n +0001796427 00000 n +0001796514 00000 n +0001796596 00000 n +0001796796 00000 n +0001796883 00000 n +0001796970 00000 n +0001797041 00000 n +0001797128 00000 n +0001797341 00000 n +0001797428 00000 n +0001797515 00000 n +0001797602 00000 n +0001797689 00000 n +0001797771 00000 n +0001797894 00000 n +0001797981 00000 n +0001798163 00000 n +0001798250 00000 n +0001798337 00000 n +0001798424 00000 n +0001798511 00000 n +0001798598 00000 n +0001798860 00000 n +0001798947 00000 n +0001799069 00000 n +0001799156 00000 n +0001799243 00000 n +0001799314 00000 n +0001799385 00000 n +0001799450 00000 n +0001799521 00000 n +0001799592 00000 n +0001799657 00000 n +0001799728 00000 n +0001799799 00000 n +0001799864 00000 n +0001799935 00000 n +0001800006 00000 n +0001800078 00000 n +0001800149 00000 n +0001800220 00000 n +0001800292 00000 n +0001800363 00000 n +0001800434 00000 n +0001800499 00000 n +0001800570 00000 n +0001800641 00000 n +0001800713 00000 n +0001800784 00000 n +0001800855 00000 n +0001800920 00000 n +0001800991 00000 n +0001801062 00000 n +0001801134 00000 n +0001801312 00000 n +0001801399 00000 n +0001801486 00000 n +0001801573 00000 n +0001801660 00000 n +0001801848 00000 n +0001801935 00000 n +0001802022 00000 n +0001802109 00000 n +0001802196 00000 n +0001802278 00000 n +0001802391 00000 n +0001802478 00000 n +0001802549 00000 n +0001802620 00000 n +0001802685 00000 n +0001802756 00000 n +0001802827 00000 n +0001802892 00000 n +0001802963 00000 n +0001803034 00000 n +0001803099 00000 n +0001803170 00000 n +0001803241 00000 n +0001803306 00000 n +0001803377 00000 n +0001803448 00000 n +0001803513 00000 n +0001803584 00000 n +0001803655 00000 n +0001803720 00000 n +0001803791 00000 n +0001803862 00000 n +0001803927 00000 n +0001803998 00000 n +0001804069 00000 n +0001804134 00000 n +0001804205 00000 n +0001804276 00000 n +0001804341 00000 n +0001804412 00000 n +0001804483 00000 n +0001804548 00000 n +0001804619 00000 n +0001804690 00000 n +0001804755 00000 n +0001804826 00000 n +0001804897 00000 n +0001804962 00000 n +0001805033 00000 n +0001805104 00000 n +0001805169 00000 n +0001805240 00000 n +0001805311 00000 n +0001805376 00000 n +0001805482 00000 n +0001805569 00000 n +0001805676 00000 n +0001805801 00000 n +0001805888 00000 n +0001805975 00000 n +0001806086 00000 n +0001806173 00000 n +0001806260 00000 n +0001806347 00000 n +0001806429 00000 n +0001806511 00000 n +0001806593 00000 n +0001806675 00000 n +0001806757 00000 n +0001806839 00000 n +0001806932 00000 n +0001807026 00000 n +0001807119 00000 n +0001807222 00000 n +0001807309 00000 n +0001818337 00000 n +0001829016 00000 n +0001829207 00000 n +0001829948 00000 n +0001831284 00000 n +0001833841 00000 n +0001834461 00000 n +0001834490 00000 n +0001834796 00000 n +0001835107 00000 n +0001835136 00000 n +0001835449 00000 n +0001835847 00000 n +0001836148 00000 n +0001836449 00000 n +0001836786 00000 n +0001837141 00000 n +0001837170 00000 n +0001837476 00000 n +0001850832 00000 n +0001854188 00000 n +0001854929 00000 n +0001858587 00000 n +0001858616 00000 n +0001858922 00000 n +0001859342 00000 n +0001859643 00000 n +0001859944 00000 n +0001860297 00000 n +0001860660 00000 n +0001860689 00000 n +0001861002 00000 n +0001861418 00000 n +0001861719 00000 n +0001862020 00000 n +0001862375 00000 n +0001870540 00000 n +0001875328 00000 n +0001880686 00000 n +0001880877 00000 n +0001880906 00000 n +0001881212 00000 n +0001881563 00000 n +0001881961 00000 n +0001882298 00000 n +0001882653 00000 n +0001882955 00000 n +0001883256 00000 n +0001883285 00000 n +0001883591 00000 n +0001883914 00000 n +0001884240 00000 n +0001884334 00000 n +0001884761 00000 n +0001885261 00000 n +0001885352 00000 n +0001885405 00000 n +0001885489 00000 n +0001885552 00000 n +0001885615 00000 n +0001885678 00000 n +0001885741 00000 n +0001885804 00000 n +0001885867 00000 n +0001885930 00000 n +0001885993 00000 n +0001886056 00000 n +0001886119 00000 n +0001886182 00000 n +0001886245 00000 n +0001886308 00000 n +0001886371 00000 n +0001886434 00000 n +0001886497 00000 n +0001886560 00000 n +0001886623 00000 n +0001886686 00000 n +0001886749 00000 n +0001886812 00000 n +0001886875 00000 n +0001886938 00000 n +0001887012 00000 n +0001887075 00000 n +0001887138 00000 n +0001887201 00000 n +0001887264 00000 n +0001887327 00000 n +0001887401 00000 n +0001887492 00000 n +0001887548 00000 n +0001887604 00000 n +0001887704 00000 n +0001887767 00000 n +0001887867 00000 n +0001887931 00000 n +0001887987 00000 n +0001888043 00000 n +0001888099 00000 n +0001888199 00000 n +0001888308 00000 n +0001888471 00000 n +0001888562 00000 n +0001888644 00000 n +0001888798 00000 n +0001888907 00000 n +0001888989 00000 n +0001889116 00000 n +0001889288 00000 n +0001889368 00000 n +0001889448 00000 n +0001889528 00000 n +0001889608 00000 n +0001889688 00000 n +0001889768 00000 n +0001889848 00000 n +0001889911 00000 n +0001889966 00000 n +0001890039 00000 n +0001890094 00000 n +0001890167 00000 n +0001890222 00000 n +0001890295 00000 n +0001890350 00000 n +0001890423 00000 n +0001890478 00000 n +0001890551 00000 n +0001890606 00000 n +0001890780 00000 n +0001890972 00000 n +0001891033 00000 n +0001891089 00000 n +0001891144 00000 n +0001891217 00000 n +0001891272 00000 n +0001891345 00000 n +0001891400 00000 n +0001891473 00000 n +0001891528 00000 n +0001891601 00000 n +0001891656 00000 n +0001891729 00000 n +0001891783 00000 n +0001891847 00000 n +0001891912 00000 n +0001891986 00000 n +0001892051 00000 n +0001892125 00000 n +0001892190 00000 n +0001892264 00000 n +0001892329 00000 n +0001892403 00000 n +0001892468 00000 n +0001892542 00000 n +0001892607 00000 n +0001892681 00000 n +0001892735 00000 n +0001892815 00000 n +0001892869 00000 n +0001892923 00000 n +0001892988 00000 n +0001893062 00000 n +0001893127 00000 n +0001893201 00000 n +0001893266 00000 n +0001893340 00000 n +0001893405 00000 n +0001893479 00000 n +0001893544 00000 n +0001893618 00000 n +0001893683 00000 n +0001893757 00000 n +0001893822 00000 n +0001893896 00000 n +0001893961 00000 n +0001894035 00000 n +0001894100 00000 n +0001894174 00000 n +0001894239 00000 n +0001894313 00000 n +0001894378 00000 n +0001894452 00000 n +0001894517 00000 n +0001894591 00000 n +0001894656 00000 n +0001894730 00000 n +0001894795 00000 n +0001894869 00000 n +0001894934 00000 n +0001895008 00000 n +0001895073 00000 n +0001895147 00000 n +0001895212 00000 n +0001895286 00000 n +0001895351 00000 n +0001895425 00000 n +0001895490 00000 n +0001895564 00000 n +0001895618 00000 n +0001895672 00000 n +0001895737 00000 n +0001895811 00000 n +0001895876 00000 n +0001895950 00000 n +0001896015 00000 n +0001896089 00000 n +0001896154 00000 n +0001896228 00000 n +0001896293 00000 n +0001896367 00000 n +0001896432 00000 n +0001896506 00000 n +0001896571 00000 n +0001896645 00000 n +0001896710 00000 n +0001896784 00000 n +0001896849 00000 n +0001896923 00000 n +0001896988 00000 n +0001897062 00000 n +0001897127 00000 n +0001897201 00000 n +0001897255 00000 n +0001897320 00000 n +0001897385 00000 n +0001897459 00000 n +0001897540 00000 n +0001897614 00000 n +0001897695 00000 n +0001897769 00000 n +0001897850 00000 n +0001897924 00000 n +0001898005 00000 n +0001898079 00000 n +0001898160 00000 n +0001898234 00000 n +0001898315 00000 n +0001898389 00000 n +0001898470 00000 n +0001898544 00000 n +0001898625 00000 n +0001898699 00000 n +0001898780 00000 n +0001898854 00000 n +0001898919 00000 n +0001898993 00000 n +0001899058 00000 n +0001899132 00000 n +0001899197 00000 n +0001899271 00000 n +0001899336 00000 n +0001899410 00000 n +0001899475 00000 n +0001899549 00000 n +0001899614 00000 n +0001899688 00000 n +0001899753 00000 n +0001899827 00000 n +0001899892 00000 n +0001899966 00000 n +0001900031 00000 n +0001900105 00000 n +0001900170 00000 n +0001900244 00000 n +0001900309 00000 n +0001900383 00000 n +0001900448 00000 n +0001900522 00000 n +0001900587 00000 n +0001900661 00000 n +0001900726 00000 n +0001900800 00000 n +0001900865 00000 n +0001900939 00000 n +0001901004 00000 n +0001901078 00000 n +0001901143 00000 n +0001901217 00000 n +0001901282 00000 n +0001901356 00000 n +0001901421 00000 n +0001901495 00000 n +0001901549 00000 n +0001901603 00000 n +0001901668 00000 n +0001901742 00000 n +0001901807 00000 n +0001901881 00000 n +0001901946 00000 n +0001902020 00000 n +0001902085 00000 n +0001902159 00000 n +0001902224 00000 n +0001902298 00000 n +0001902363 00000 n +0001902437 00000 n +0001902502 00000 n +0001902576 00000 n +0001902641 00000 n +0001902715 00000 n +0001902780 00000 n +0001902854 00000 n +0001902919 00000 n +0001902993 00000 n +0001903058 00000 n +0001903132 00000 n +0001903197 00000 n +0001903271 00000 n +0001903336 00000 n +0001903410 00000 n +0001903475 00000 n +0001903549 00000 n +0001903614 00000 n +0001903688 00000 n +0001903753 00000 n +0001903827 00000 n +0001903892 00000 n +0001903966 00000 n +0001904031 00000 n +0001904105 00000 n +0001904170 00000 n +0001904244 00000 n +0001904309 00000 n +0001904383 00000 n +0001904448 00000 n +0001904522 00000 n +0001904587 00000 n +0001904661 00000 n +0001904726 00000 n +0001904800 00000 n +0001904865 00000 n +0001904939 00000 n +0001905004 00000 n +0001905078 00000 n +0001905143 00000 n +0001905217 00000 n +0001905282 00000 n +0001905356 00000 n +0001905421 00000 n +0001905495 00000 n +0001905560 00000 n +0001905634 00000 n +0001905699 00000 n +0001905773 00000 n +0001905838 00000 n +0001905912 00000 n +0001905977 00000 n +0001906051 00000 n +0001906116 00000 n +0001906190 00000 n +0001906255 00000 n +0001906329 00000 n +0001906395 00000 n +0001906470 00000 n +0001906537 00000 n +0001906612 00000 n +0001906679 00000 n +0001906754 00000 n +0001906821 00000 n +0001906896 00000 n +0001906963 00000 n +0001907038 00000 n +0001907105 00000 n +0001907180 00000 n +0001907247 00000 n +0001907322 00000 n +0001907389 00000 n +0001907464 00000 n +0001907531 00000 n +0001907606 00000 n +0001907673 00000 n +0001907748 00000 n +0001907815 00000 n +0001907890 00000 n +0001907957 00000 n +0001908032 00000 n +0001908099 00000 n +0001908174 00000 n +0001908241 00000 n +0001908316 00000 n +0001908383 00000 n +0001908458 00000 n +0001908525 00000 n +0001908600 00000 n +0001908667 00000 n +0001908742 00000 n +0001908809 00000 n +0001908884 00000 n +0001908951 00000 n +0001909026 00000 n +0001909093 00000 n +0001909168 00000 n +0001909235 00000 n +0001909310 00000 n +0001909372 00000 n +0001909429 00000 n +0001909496 00000 n +0001909571 00000 n +0001909638 00000 n +0001909713 00000 n +0001909780 00000 n +0001909855 00000 n +0001909922 00000 n +0001909997 00000 n +0001910064 00000 n +0001910139 00000 n +0001910206 00000 n +0001910281 00000 n +0001910348 00000 n +0001910423 00000 n +0001910490 00000 n +0001910565 00000 n +0001910632 00000 n +0001910707 00000 n +0001910774 00000 n +0001910849 00000 n +0001910916 00000 n +0001910991 00000 n +0001911058 00000 n +0001911133 00000 n +0001911200 00000 n +0001911275 00000 n +0001911342 00000 n +0001911417 00000 n +0001911484 00000 n +0001911559 00000 n +0001911626 00000 n +0001911701 00000 n +0001911768 00000 n +0001911843 00000 n +0001911910 00000 n +0001911985 00000 n +0001912052 00000 n +0001912127 00000 n +0001912194 00000 n +0001912269 00000 n +0001912336 00000 n +0001912411 00000 n +0001912478 00000 n +0001912553 00000 n +0001912620 00000 n +0001912695 00000 n +0001912752 00000 n +0001912809 00000 n +0001912886 00000 n +0001913183 00000 n +0001914467 00000 n +0001916278 00000 n +0001916355 00000 n +0001916652 00000 n +0001916843 00000 n +0001918886 00000 n +0001920170 00000 n +0001920622 00000 n +0001921316 00000 n +0001924715 00000 n +0001924853 00000 n +0001924990 00000 n +0001925128 00000 n +0001925266 00000 n +0001925404 00000 n +0001925542 00000 n +0001925671 00000 n +0001925734 00000 n +0001925797 00000 n +0001925860 00000 n +0001925923 00000 n +0001925986 00000 n +0001926049 00000 n +0001926112 00000 n +0001926175 00000 n +0001926230 00000 n +0001926285 00000 n +0001926340 00000 n +0001926395 00000 n +0001926450 00000 n +0001926516 00000 n +0001926617 00000 n +0001926781 00000 n +0001926847 00000 n +0001926948 00000 n +0001927022 00000 n +0001927077 00000 n +0001927214 00000 n +0001927269 00000 n +0001927335 00000 n +0001927445 00000 n +0001927519 00000 n +0001927564 00000 n +0001927609 00000 n +0001927698 00000 n +0001931046 00000 n +0001931135 00000 n +0001934486 00000 n +0001934563 00000 n +0001934860 00000 n +0001934915 00000 n +0001934970 00000 n +0001935025 00000 n +0001935091 00000 n +0001935146 00000 n +0001935212 00000 n +0001935267 00000 n +0001935322 00000 n +0001935388 00000 n +0001935443 00000 n +0001935498 00000 n +0001935553 00000 n +0001935608 00000 n +0001935663 00000 n +0001935718 00000 n +0001935773 00000 n +0001935862 00000 n +0001939210 00000 n +0001939253 00000 n +0001939296 00000 n +0001939369 00000 n +0001939442 00000 n +0001939485 00000 n +0001939558 00000 n +trailer +<< +/ID [<4774F169839D914388BD9A810FCE4CAD> ] +/Info 1 0 R +/Root 2 0 R +/Size 1820 +>> +startxref +1939601 +%%EOF diff --git a/src/Static/data/Standards/4/IDDRS-4.30-Reintegration.docx b/src/Static/data/Standards/4/IDDRS-4.30-Reintegration.docx new file mode 100644 index 0000000..8f36f15 Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.30-Reintegration.docx differ diff --git a/src/Static/data/Standards/4/IDDRS-4.30-Reintegration.pdf b/src/Static/data/Standards/4/IDDRS-4.30-Reintegration.pdf new file mode 100644 index 0000000..c0a31eb Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.30-Reintegration.pdf differ diff --git a/src/Static/data/Standards/4/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.docx b/src/Static/data/Standards/4/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.docx new file mode 100644 index 0000000..2d80b35 Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.docx differ diff --git a/src/Static/data/Standards/4/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.pdf b/src/Static/data/Standards/4/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.pdf new file mode 100644 index 0000000..0e8cd2a --- /dev/null +++ b/src/Static/data/Standards/4/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.pdf @@ -0,0 +1,10210 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210504150746+02'00') +/Creator (Adobe InDesign 16.1 \(Windows\)) +/ModDate (D:20210505180949+02'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Names 4 0 R +/Pages 5 0 R +/StructTreeRoot 6 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-05-04T15:07:46+02:00 + 2021-05-04T15:07:47+02:00 + Adobe InDesign 16.1 (Windows) + 2021-05-05T18:09:49+02:00 + uuid:356da575-1c15-409c-8a72-bd2cdc5ff611 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:3aa811c0-a3de-bc40-8953-430eb728f8d7 + proof:pdf + + xmp.iid:ced754e2-f3f5-c841-a13e-b83803c31d46 + xmp.did:aab9c76e-9e4b-8848-a42c-4b35998e52f3 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 16.1 (Windows) + / + 2021-05-04T15:07:46+02:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Dests 7 0 R +>> +endobj +5 0 obj +<< +/Count 18 +/Kids [8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R +24 0 R 25 0 R] +/Type /Pages +>> +endobj +6 0 obj +<< +/ClassMap 26 0 R +/K 27 0 R +/ParentTree 28 0 R +/ParentTreeNextKey 15 +/RoleMap 29 0 R +/Type /StructTreeRoot +>> +endobj +7 0 obj +<< +/Names [() [10 0 R /Fit]] +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 30 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 7 +/PageItemUIDToLocationDataMap << +/0 [407.0 7.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 12.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 2.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 10.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 9.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 11.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ColorSpace << +/CS0 31 0 R +>> +/ExtGState << +/GS0 32 0 R +/GS1 33 0 R +>> +/Font << +/TT0 34 0 R +/TT1 35 0 R +/C2_0 36 0 R +/T1_0 37 0 R +/T1_1 38 0 R +/T1_2 39 0 R +/T1_3 40 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 41 0 R +/Fm1 42 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 43 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1730 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [407.0 1.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 7.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 6.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 5.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 4.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 3.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 2.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [581.0 11.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/8 [603.0 10.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/9 [625.0 9.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/10 [647.0 8.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/11 [1982.0 0.0 2.0 -501.343 -340.095 -84.6496 260.849 1.0 0.0 0.0 1.0 -500.843 -339.595] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 32 0 R +>> +/XObject << +/Fm0 44 0 R +/Fm1 45 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [46 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [255.0 1.0 2.0 85.0394 -340.157 501.732 278.74 1.0 0.0 0.0 1.0 293.386 -7.08661] +/1 [349.0 3.0 4.0 0.0 371.339 615.118 371.339 1.0 0.0 0.0 1.0 0.0 371.339] +/2 [423.0 13.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [469.0 11.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [492.0 9.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/5 [500.0 12.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/6 [524.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [525.0 10.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/8 [3554.0 7.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 6.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 5.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 4.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 58 0 R +/T1_2 59 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 60 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [630.0 4.0 4.0 -85.0394 -396.85 -85.0394 396.85 1.0 0.0 0.0 1.0 -85.0394 0.0] +/7 [671.0 2.0 2.0 -501.732 -340.157 -85.0394 320.315 1.0 0.0 0.0 1.0 -293.386 -7.08661] +/8 [1344.0 3.0 2.0 85.0394 -340.157 501.732 320.315 1.0 0.0 0.0 1.0 85.5394 86.0118] +/9 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 69 0 R +/GS1 70 0 R +>> +/Font << +/TT0 71 0 R +/T1_0 72 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 73 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 74 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 75 0 R +/T1_2 59 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 60 0 R +>> +>> +/Rotate 0 +/StructParents 2 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 76 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1395.0 0.0 2.0 -501.732 -340.157 -85.0394 296.693 1.0 0.0 0.0 1.0 -501.232 -288.634] +/7 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [4692.0 1.0 2.0 85.0394 -340.157 501.732 304.252 1.0 0.0 0.0 1.0 85.5394 -339.657] +/12 [6426.0 2.0 2.0 654.803 -265.512 980.787 -169.417 1.0 0.0 0.0 1.0 818.079 -260.22] +/13 [6450.0 3.0 2.0 -1073.39 -204.094 -747.402 -141.26 1.0 0.0 0.0 1.0 -1044.76 -176.147] +/14 [8301.0 4.0 2.0 -1062.99 -51.9685 -646.299 430.561 1.0 0.0 0.0 1.0 -1062.49 -51.4685] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 59 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 78 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 75 0 R +/T1_2 59 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 60 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 79 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1489.0 0.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 160.657] +/7 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [4441.0 1.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 175.681] +/12 [6610.0 2.0 2.0 -637.795 -461.575 -221.102 -441.449 1.0 0.0 0.0 1.0 -557.008 -448.11] +/13 [8342.0 3.0 2.0 -1229.29 -74.9026 -903.307 48.189 1.0 0.0 0.0 1.0 -1200.66 -46.9553] +/14 [9367.0 4.0 2.0 85.0394 -306.328 501.732 -32.5984 1.0 0.0 0.0 1.0 85.5394 -305.828] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/TT1 80 0 R +/C2_0 81 0 R +/T1_0 57 0 R +/T1_1 59 0 R +/T1_2 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 82 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +/GS2 83 0 R +/GS3 84 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 75 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 60 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 86 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1516.0 0.0 2.0 -501.732 -340.157 -85.0394 306.142 1.0 0.0 0.0 1.0 -501.232 -202.65] +/7 [1583.0 1.0 2.0 85.0394 -340.157 501.732 293.858 1.0 0.0 0.0 1.0 85.5394 78.9252] +/8 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [6614.0 2.0 2.0 -1076.22 -18.8976 -750.236 83.8685 1.0 0.0 0.0 1.0 -1047.59 17.585] +/13 [9431.0 3.0 2.0 -614.285 -217.905 -288.301 -141.732 1.0 0.0 0.0 1.0 -585.656 -189.957] +/14 [9461.0 4.0 2.0 289.317 21.9596 615.301 118.054 1.0 0.0 0.0 1.0 452.593 27.251] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/C2_0 81 0 R +/T1_0 57 0 R +/T1_1 59 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/C2_0 81 0 R +/T1_0 57 0 R +/T1_1 59 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 60 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 88 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 18 +/PageItemUIDToLocationDataMap << +/0 [423.0 27.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 25.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 23.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 26.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 22.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 24.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1622.0 0.0 2.0 -501.732 -340.157 -85.0394 292.441 1.0 0.0 0.0 1.0 -501.232 -237.043] +/7 [1635.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 236.484] +/8 [3459.0 2.0 2.0 619.748 340.455 959.192 486.156 1.0 0.0 0.0 1.0 783.024 413.306] +/9 [3554.0 21.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 20.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 19.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 18.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [4997.0 3.0 2.0 713.197 -133.228 1129.89 289.885 1.0 0.0 0.0 1.0 921.543 166.299] +/14 [5253.0 4.0 2.0 -1177.51 -185.102 -761.071 -158.283 1.0 0.0 0.0 1.0 -993.795 -177.073] +/15 [5762.0 5.0 2.0 704.882 -453.071 885.165 -187.748 1.0 0.0 0.0 1.0 823.937 -413.386] +/16 [6684.0 6.0 2.0 861.732 -242.362 1187.72 -146.268 1.0 0.0 0.0 1.0 1025.01 -237.071] +/17 [8398.0 7.0 2.0 655.748 79.8425 981.732 220.157 1.0 0.0 0.0 1.0 819.024 105.481] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 59 0 R +/T1_2 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 89 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 60 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 90 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 20 +/PageItemUIDToLocationDataMap << +/0 [423.0 29.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 27.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 25.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 28.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 24.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 26.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1664.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [1699.0 1.0 2.0 85.0394 -340.157 501.732 290.079 1.0 0.0 0.0 1.0 85.5394 -339.657] +/8 [3483.0 2.0 2.0 634.961 -314.646 974.405 -168.945 1.0 0.0 0.0 1.0 798.236 -241.795] +/9 [3554.0 23.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 22.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 21.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 20.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [5037.0 3.0 2.0 -1069.23 -53.2913 -652.535 287.575 1.0 0.0 0.0 1.0 -860.882 246.236] +/14 [5282.0 4.0 2.0 -1047.69 -121.323 -631.244 -94.5039 1.0 0.0 0.0 1.0 -863.969 -113.294] +/15 [5307.0 5.0 2.0 677.48 -78.3494 1094.17 328.819 1.0 0.0 0.0 1.0 885.827 221.178] +/16 [5344.0 6.0 2.0 833.638 -125.858 1250.08 -99.0394 1.0 0.0 0.0 1.0 1017.35 -117.829] +/17 [5918.0 7.0 2.0 -1158.43 -426.614 -741.732 -19.8425 1.0 0.0 0.0 1.0 -1157.93 -426.114] +/18 [6714.0 8.0 2.0 -1077.17 -183.307 -660.472 173.7 1.0 0.0 0.0 1.0 -1076.67 -182.807] +/19 [8374.0 9.0 2.0 -895.748 -513.79 -569.764 -411.024 1.0 0.0 0.0 1.0 -867.118 -477.307] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/C2_0 81 0 R +/T1_0 57 0 R +/T1_1 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/C2_0 81 0 R +/T1_0 57 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 60 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 92 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 17 +/PageItemUIDToLocationDataMap << +/0 [423.0 27.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 25.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 23.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 26.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 22.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 24.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1708.0 1.0 2.0 -501.732 -340.157 -85.0394 287.482 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [3554.0 21.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 20.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 19.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 18.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [5150.0 2.0 2.0 643.465 -343.843 1060.16 287.612 1.0 0.0 0.0 1.0 851.811 -44.315] +/12 [6758.0 3.0 2.0 -1008.19 71.3386 -682.205 174.105 1.0 0.0 0.0 1.0 -979.559 107.821] +/13 [6785.0 4.0 2.0 661.417 60.0 987.402 185.907 1.0 0.0 0.0 1.0 824.693 65.2913] +/14 [8496.0 5.0 2.0 -1096.06 -331.181 -679.37 132.992 1.0 0.0 0.0 1.0 -887.717 -31.6535] +/15 [8532.0 6.0 2.0 -1113.07 -385.039 -696.63 -358.22 1.0 0.0 0.0 1.0 -929.354 -377.01] +/16 [9606.0 7.0 2.0 84.9272 -340.157 501.732 -186.519 1.0 0.0 0.0 1.0 159.927 -261.519] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 93 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/TT0 56 0 R +/T1_0 57 0 R +/T1_1 75 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 60 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 94 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1845 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [1509.0 14.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [1510.0 13.0 3.0 0.00283813 -405.354 623.622 405.354 1.0 0.0 0.0 1.0 623.625 0.0] +/2 [1548.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [1571.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [1594.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/5 [1617.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1670.0 15.0 3.0 -501.492 170.209 -84.7992 309.106 1.0 0.0 0.0 1.0 -292.201 196.429] +/7 [1695.0 12.0 3.0 84.8337 170.01 501.527 308.907 1.0 0.0 0.0 1.0 294.125 196.23] +/8 [1733.0 11.0 3.0 -488.002 365.297 -85.4823 397.045 1.0 0.0 0.0 1.0 -215.734 370.258] +/9 [1811.0 10.0 3.0 85.3642 365.017 487.884 396.765 1.0 0.0 0.0 1.0 357.632 369.977] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 95 0 R +>> +/XObject << +/Fm0 96 0 R +/Fm1 97 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/A2 << +/O /Layout +/LineHeight 16.0 +>> +/A4 << +/O /Layout +/LineHeight 11.0 +/BaselineShift 3.66299 +>> +/A5 << +/O /Layout +/LineHeight 0.0 +>> +/A7 << +/O /Layout +/LineHeight 12.5 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa5 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa6 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa7 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa8 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa10 << +/O /Layout +/LineHeight 11.0 +>> +/Pa12 << +/O /Layout +/LineHeight 10.75 +>> +/Pa13 << +/O /Layout +/LineHeight 10.75 +>> +/Pa14 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa15 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa16 << +/O /Layout +/LineHeight 16.0 +>> +/Pa17 << +/O /Layout +/TextAlign /Justify +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa18 << +/O /Layout +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +>> +endobj +27 0 obj +<< +/K 98 0 R +/Lang (de-DE) +/P 6 0 R +/S /Document +>> +endobj +28 0 obj +<< +/Nums [0 99 0 R 1 100 0 R 2 101 0 R 3 102 0 R 4 103 0 R 5 104 0 R 6 105 0 R 7 106 0 R +8 107 0 R 9 108 0 R 10 109 0 R 11 110 0 R 12 111 0 R 13 112 0 R 14 113 0 R] +>> +endobj +29 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Kapitel-Head /P +/Absatzformat_2 /P +/Endnote_1._Abs /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +/NormalParagraphStyle /P +/Tab._Lauftext_light_ /P +/Tab._Versal_bold_sch /P +/Tab._Versal_bold_wei /P +>> +endobj +30 0 obj +<< +/Filter /FlateDecode +/Length 4117 +>> +stream +H‰ì—[oÉ…ßù+ú‘ dZ}¿†X¾`«À‰™äa²$+ÜH¤V”½ñ¿OUõ ÙCs¨ɲý@ûaFsé©áœ¯Î©ß'GoÞIv¹šH6ûåèõµd/—“¿N~ß>®òñ£·ìÙ³£_N—lz±hÞ¼àG'Ç?½dŽ=þâå1›¼˜MŽŽáγ“Â8ÆVg‹õZG3õoÉ›}˜4RHmØ쌵;0«™„ÿγ脑N1ŸœPxòzòëÔ +ÞXÙÔòF%‘ØTòÍ~ž¼šM^À“‡JóEiª­êP›:ThëÀ?ØÑ»›Ó,õç³»§W³‹ÿÝ={ýêõk)ezþü9£µ´–ªÕ–)ëEŒÑ•åNŸý–ë‚Ÿ!z¸rv/ñwÞ8Øô/ð°a'¼™Ã_°ÞôjÞ¾âPøŠ§¼Ñxý-oLŽM?·7þ7O,a¼ãŠ7ÿ¾€ ñï\çqÖ-±À+`…óÍ +IøâŽ8áðŠe{å‚+¡á•·¼çM(¯›cI®,¡æó„R9³Y)î³hú,ÊÓ® +yh#lÔ*ëãËÉÕ«€/¶¸£=CiúuðQx¨®¸X'óãÙQÎ*ËyV¨HÚ¶\Ür5CwàNW²KFø¤\.ù· ++ýÈ%V~Í5þú0§·\YÜù\Uk*kFG,§i÷¶ëQ¾°3¡WÐTŒþ‡*äEË5/S±æá¾÷P²÷£Óo᧫$³ÿž ¡œsý÷ÜÀ9U´{_Iª( ¿un\{>³ðØÜ ÔþßèU¯zø\Êåf1›2¯`ºrÂUDÞ–Ü"‡ç0p(¢F¾W\kâzWبàR›lt›"‚÷âlÉ ù÷ÞC±éox%5xÐ6-ŸAׂúpW}j•z‘—_±*¡*=F©ÚÁÛAgíý¦ßE—æK]SíCº,Þª¥®’¥+K UYKOÓ÷è²Ð¤µ¦Óä¦D¶÷þâͧ¥Žñé­Žg<úÖ€<9œC]sƒWì úôŸØy+w¼ E÷SSœ“Ü ùì(<®¬³L ‰4e‡ èF Tò* ¯^´ØœÃ¡ÔJßd—³XM+l²”Omm°$5fŒî}Ln€Ò^UiÙû>[¼Dpº”|ÿcÒúÆÔø'¡fàÝê° [ØäüG{f<Ðódp‘žiêá1I|ãÛ£ãHÊØqô +å¹à†ÚóÝ-8**&ƒ0>D‡íœßÍñr×7 o¯RmP­†ý`Õ*ÆÐû‘ëDûmdœžDÆo[%c-·dœ(%g?,c›@&hz¦—M¬^7oÁ¡‚ÈZËo›»_‡”7ÜRDh£íœÛ„—ŸÏáo +†²Êe·Ì F ‡W«ÜÞeZ¬EmžñØ.â1Æ8‰k_qóÀB¶µmW«QA9E‘‚‰ýßí{JQëRôûÙ»_Š½×+¤hª¤h‡8Ÿ°BUžŠT~6ÌMLÛÏl€îÑòp$²0{:T„€I¾ª¢¯Zõj¢Ógñ¿Nÿó,É¥ñ—†¤¬E€Æ“HÁÊá3töFIÒÖ-îE|~Ýô¥mOU:­»bES× ˜÷ô¬Èêeoeß0г¿;Bé¿Š€„C6ÊW)ïkoU_ñ2+g8Õ}Y/BÄ.öåpN2h_–¾žªv/%´J­üKõ{ˆ¼ëÔIj]^ó¬U‡¢ZÒ§QsÝ@æIõ;eaÌRï†Ê6†²:aY}ˆš?ôv§‹p1ìÆ…8GEÏ&fÍXëõ«CÚÖ„OhüIAdké5-½dúk̉Yhé}¦G!ÃÉ鶈œ˜IÏYyÀ"ÞçàUy^r›ÍA+ÌÇw´”CW£•–<“WµX»ÝX«`\?—Î '½éÉ®2]ÖóèÇòXó C[a|-;«´Cpb³Ð_:8e†³ „c­a—µ:·¶ÖÌ`hØÂÀ†iHL!5>“"Û* +“9ø}nQN[]F]A7Kàq½ÀàJî«( +Þá]º¸«8 ¢M«hçï9@þ“h,Îα=8º¯"*™+¯EÕÈ(¤C -D¸ßBë Mc íÕðd„:Yá˜:0 ·m˜À&ÈÒ>Ú1ß>¨~†|° hJ:G@4‘DÄÜpñÊ+®Ú| ÓS$5å[ P!rëà ÎIóÝr¢*›®¥l¬C»“‡=Êt>¢è /ëPså¨mv5ñï¿'87ùJžÐ9a jio »³_»8—qÂZeÆ°pÕN¹€¡Mãœ{4híÛ)°sý.sÚ.-Rj]ÕÑìånš¥Òœ«qMR˜¹µ¯A–¿à}ÄÒgªAÖ«ÑÈõ|d½ƒ,Ì’>…´,9YüÀn¹†.(¦±*˜ÌLÐl0ýhÛ] K0‹ô–2dw/ÈçÚî庂ý¨…rÈ~ñ +àØõ9–1—Ôú˜U "êè;˜!ØÌF£­¥jš•ÐF}Ñ~Àü¤íÀ~ fÔÞò&bÖ…y6´ª›²KÜ 9 C*Î^›°ŠÛS®ìÿÙ¯’ž8Ž(|çWÔÑ-ešÚ+²d™(‡ÄY QŽˆ€A–`ˆ§;üû¼¥¦§ª1ÓÕv°|ð…éjyÕõm/Û'ÔEÚàÙ=WyBÏýCmøÆó¯ŠÏ‘´5©ç±„Å­yÚ‡Ç q]÷bÇf¬|è“Kæž{ä‰ê\DÉÏvå#L°`©G¡8üj“R:ZJ¿ÿ9FgD¯šÜˆ©yÀX¬ˆÏ ×8#«‡.³÷_¢ƒS=²9„á¯Úˆž ºv߈þ(„õªO2T`lãk3Qƒœ|…ˆêüþ–g†©UÅSu SCíON€—âä’Ê3;ÒêÞñ¾ø]o¤ƒ€ fOûÖŒ_Y«‹aËÎc$T@þ­pl?É`!+ +Ì9‡áû5$æ•â­ R’³68PËÌK(6å¨ |<§¹8óGâT\”B¹£?¸+üDZpÛœ ¤ÅAäÉÀšy!Ö80IIV¸™C)iߤDòWŽê¦ãõ¯´cI¬$‹ƒhÒ‘PwEFÇ,$ô4½Yãa‹èl}µüÚÝôj˜)5²‡™ä›©QeGò(Ëé1Mȳ¤µQsãö¿ªŠÆ×X£çî­q¹‹I¥­/,O"ˆŽÐ·ÈòîyDÓMã°sðëûV[±ŠÈv7N;Gg$¼R2fLoĆÁ +˜&+äæÿiQôM#„Ýë`!_V1¯àÿ7 ýãº<Ør@OÓâ, ¡35Rng]Õ/{ (ƒº¨ +ãsÔ½ öqªüBáá#ÂH ó:jÎÞ"Ä]æqÂ8nE ßä¬[a×ÖÙ½„íBÜqAsß{ÆšêŠ\êN¯Ùí.›. !(n³…àjŠ¸)wä¹n#I\¦óº^¦úr¿/Ò~š[ƒÞzõ¹¼(ÏRò´ð"NÃÙ/‚룴‰›–çpwµ-c“®Ðî ö¯xÞ)j(žâ“Dÿÿ ƒ }Z†J% îû¬‘cîÙ©N5©å6§4a%ªE‚ +mZHÑ”žÑÓGEPÔ“‹rYYÜßÍ#¨b=MoßWo_öT ô±¹*®£zM˜Íeôþn#ìA& Ò0"ëÝÔ£§w߶ÝhEoñpÂ+@2@îé›×Šu>:rPüt€~÷AXñR Wqå…>•\üÙˆHƒ#Tf€X—Ëu}/e´ÏZ*ÍçwîvÕinw™#Dï¿úzH]¡F¨å~=Œ¼Ä¨¬) ®9>¼y‡IÁs 6„”;žõ + Dè´¹‡5ˆA²ÿGä‰h,8äbœgÙ.òXÚ Þ¢3ÜÉ(Q y–æÐp Ä›ªRG•^ÏOä?Ùá‰s +endstream +endobj +31 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +32 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +33 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +34 0 obj +<< +/BaseFont /DKFIER+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 114 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 115 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 0 333 250 0 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 0 0 709 774 0 556 763 0 0 333 0 0 946 0 0 +604 0 668 0 0 0 722 1000 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 0 291 0 0 291 883 582 546 +601 0 395 424 326 603 565 0 516 556] +>> +endobj +35 0 obj +<< +/BaseFont /NMDQOX+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 116 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 117 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 320 218 0 +0 348 462 434 452 434 462 462 452 0 236 0 0 0 0 0 +0 696 0 0 726 0 0 726 0 348 0 0 0 884 0 0 +0 0 660 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 0 312 800 556 490 +528 556 378 396 340 546 508 0 462 518] +>> +endobj +36 0 obj +<< +/BaseFont /CDSCQT+Wingdings-Regular +/DescendantFonts 118 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 119 0 R +/Type /Font +>> +endobj +37 0 obj +<< +/BaseFont /KXRYYD+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 120 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 121 0 R +/Type /Font +/Widths [233 0 426 0 0 0 426] +>> +endobj +38 0 obj +<< +/BaseFont /DCCIER+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 122 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 123 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 804 658 0 +0 0 538 0 0 647 0 0 0 0 0 0 0 0 0 0 +0 482 569 0 564 501 0 0 0 234 0 0 236 0 555 549 +569 0 327 396 331 0 0 0 0 471] +>> +endobj +39 0 obj +<< +/BaseFont /LGFJMB+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 124 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 125 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 528 0 0 730 +602 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +610 0 403 451 383 598 551 0 0 0 486] +>> +endobj +40 0 obj +<< +/BaseFont /MKUPAZ+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 126 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 127 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 555 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +41 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12093 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 31 0 R +>> +/ExtGState << +/GS0 32 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—IŽ\ÉD÷uŠüó°ÖBЩ{Q%@Íûzf™Y$°2âÇàƒ¹¹Eº×ìWºwjú¿^ÿùñÇ?ÿ•®?~¤;¥z=ÖÝù8J½GÞ×Êéži_ÿûã?üƒ•?~²³\×Ïÿýøß•¯Ä¿|õ:îVK¿J_wIu\?¾>ôéë#ç»æëQò½8(·»†a½æ纓Íc^?>=ÛõÈ©ß™Gi÷l›‰Úî½øÑë][r÷îE{V¿kíLrYµß²~`ÌìZÝ÷ݳÏÁ¼Þ´-ïÍeÜ‘±0á3&rkeÕhwòí©žmóžeÅ®q—zí{î¢ù†såªóîKãÆ«§»ŽîÕµ–zõy¯,¹a÷y|ÏÅ{qó"Ú7Fh S*šH}úÞÕ|üæ@Å“5»ºrõá3¾<‘ç¾:w­qiXÙD€‡j8p¦qåÌg¿'Ê]buëY£±ûõ<«Õ;Mgd·»å¡‰îÓê=ÇÐòÕ·‡­. k¶ÇLT¬â¶Þ›¿Ë‘–"kÚ ê&õ,×w&f’1垸Æò¼›‡™Ìž!Ëç&Ã^^†ò´îŒí‡äʉrá°@Æ™©”ë“ Vnöç/ÛÀMIÊÚÖ÷Òòhlœ¿µºËxr;S¾Ênln€…H•éŒj5¾”vUÆËêÆr +Ià:>—DVì $e\Òrr¼®¼î]¶òPú·ÃŠ‹EÔ…;,®ƒa£Ö\Žš²¤eûÍ/–Pùiø³dú k`á  +¨€n‚Ó"çk9 ,ÍÈJÇf¾Ï@È7ø ä)cµg +X§'ÕÊŽªÒöŸàZ0ßë<éÛ#¾¤à(A"ÙgrÀkëþ›U)¬+ÏhGæÅl:‰ÙbÇäÖÏWÊ8«Öou `{_¶Þp=©KŸÁ©j#óÌO‡F%Â;ä}oçæ m‘ ãr‚já½âvrAìŒþ _숪óeF±P‘xY ¹ñJjÀe¢-ç\ŠfÇ ÛR¾äˆ]rs…¯øžB%‹1·c—f´Åé®"{’  ¢ªØIÆ_ëzJ4n}öq1Ü0š51|$Ž§´w5„ê1,²ˆ ¨Çúv€ôQö¸Ø! 51ÝÊ…ºlhÕióŽ¶B.5‚–ŠMƒf&$n!´½”cqã8|fz0Ù%MJ†ÉNâî®W©)ñ¹ê5¤— °N‘&¨N ³XÌkqŒÕij¿.B¾BÈùá1¾µ (·B«b5™qy™“Dì ¦Y÷ãð¾JBòz*eŽ2J +ÆAzŽÅb3‘ëòŒR©#u«Ñ=Rˆtéñ®iVÁ `è8úQÖ·}D?’Öã®–DEíʯ¥ùR»´ºÜ@NÑóÙÉ5Ãás;).Œñjù®,›~Ô–+$ž(õ«BI!o¿é [¼¶r|4>†;“Ÿh$DôMßZzR47¢hdœ£Û{}&Žª‚éQ“Ô‰¢>É%.Ñ7žÊGõš¸~Eb@H̪Úâ{o~ÝHhµ•gÞMòDB°“–ÀÔ¬ºúÅOÕ°˜H¥J JÖKÄI÷Z².(U*Y.ø£rJ96¦ñ„àiÉ,‡(Ú~ºŽÈ˜(Iñ”¸²(XÙA¤!S—Ô¾¥Ç%Ó$sª»ur yNHÓo9X4²DLªß^ù­àßrñùz)5ÅS¿ô>Ç#Rdç rY5ŸÅæe¾Þ…¿ÅM4Ü~%¤¾^„ +à§ðíç’I€å¦Zʳ–^Ôc¡àÞÖˆUí‰BY¯§µ™{0þnù ¨.†ª¾H©Ø/ †0Ê/R¥IÆËïIÃ::[8l=ÔCs’Ï>£áŠÆåŠã ü×õj2–·õ—ÖË®³d³_LwÎu?`®ÁÆåݧ©ÎeCOŸÍ[ñm›žu…\+ô[Ô¯Cš¡ÒÙ¼=U‹ÓˆΑÏÙLÔøá{é›VËþI‹H2t¿#¸nb·}©·ÃGVWGˆª^$Ì“]‡œ±àòØ=Ü£ù-tjeÜ_Ý…¥\¾¢ØÂ-¬&H‹tˆ`£º‰Ò’x¶q +ã!+çòMÎbZ@bE+‘®Á HM½®ºã÷¨ûQ‹,ÓîK¡ŒæšÒ¢rÐ’·$çñ{øMµÆßùZÈ`#ƒZ†loØWÉÜÙrƒ*gl+˜¡ZG‘i‡!ó\©ñj_0µ#GŠ¸(%”ÏÌ |U¤©µÞÀïe¿ïŒ°)¨Îê;6åòÖ…M‹M¤:ÔÞ*&N¤"=.®ág#](‰d§qL’²ê{ i,÷ä§l${rT l° >¿:*eîYÒë_÷¨Œ6]Ôeþ+–KJ¥Ê"¥ÖÃu#¡l™À£ÑrÊ`´•…áÖVÙ&ähʈðÁ°L¡©j¿´.¿Îù³Aá´‡À«*(,ž8 àrÅh ¹9¥Ø9>¨*÷(lQó=©'²k’¸°^D×ýØ RK¹` ñ*¨ˆ6Ë-ªcQOZ&¡‡NƵ™˜qm ‘–4žž³(té­lMî®[ò$´ÏQUëü°ŒâÀa,Y¼ÅÅØ–× 9k¹ IxþоCÞ¯/êÚÐKÿØô,Q6ÅÓ¿› •Lq3Û§ SþìmXº +Ž9ö?Àܼì«ä,‚[ŠÒø!~«.‘3\NÔb,üÎ6ÿ|Ž….e€)Š†”@²/§t£ÏÙÝf5 ô4:¶P­²8£SÖorÓ|fð»²;iðÂ|Ì… Iäw¯ëÉ·Á+[·Ä©MÆ]@K‚K.9•¾êð…›~×H䌘¯ 2ðË`>S„ 9…ÿSb„G–þR›NĨUÎÈg¨ˆ‚ÍûCó1g|EÈB¾ªoSѵiB§sæâÄ…0PñD‘áÀ‚EMºûÕˆäF(Ú¹Å1í X@}³bšA,VDú[]”ÙP.ŠÚPö¨¹b'U"ô.VkJ9@$+W N² +«= +‘êT¶(‘ó»F%ÀQ„³8£%öj„ª +™ïâZHB’s%ï—äw5í %?f.#xe…*ZØ®†¯¼QîRÏ›Y¸ÍÑ6lœá}Gæh~4„MyPˆo®)ÀT÷]͵=„õÇnH¤pßêš”²!!µñè +$hRIY •¦¡î÷塾܊\î?ã…Vð3Su˜,„ﶦaÇ3d_©—¾ì59pxq°ú1X³¶™”Šr¦,jJfì°.k©˜ß¥)dª_·Y‘l^ÐBq ¸gÐñ'…u%¶+-’ßxõ<b'Ìf ¸ªÏf=ö|”jíâOçá:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½K¤Ÿw[y¹î5;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re‡zó6Åñ–÷¸ûjB-¾Z-‰„Mð#¿™û×’L¼¤uý¹?#íýĭתr¸œ˜¥ç“2¿ê›iU£fÖ÷”ΚǦeÌw‡R&«¶’vLuMÀÃÍ›$Î Ö ÔêŒqAq³aýÕzÏ¡uØŽP0Ó×ë+ êù!â¿Ã›È7†Ð9ãî°zè7‡ØòÜ·æ>ƒMé_Ã'õ”~=í^·r2o×óIeØÖîH€–‘Ͻq¡ç«›HéâüS å_5 @ÞÚ÷&õBV§i#¦‚· g˜,0"2t’Ç]é]1p¶˜Ð¸È20R‚Ãâ‹ «J<¯IÝÒüQLzšœRœF%±4’óà±.Šïqtð¹eY· IH0«‰êb$&´K-À%"ßì©* +ãÌ9PMŒÇ™Ö>øžnÈCÖÌäMh jó&…]´’ + Q3B›2™W`ÏâÎÞKhË—P`ZíÞ”áHÍ]ŽãÇ­75àVî‹ÚÕ®ôgÇ;¾’öHøDCý†Ìˆ$¬†Å‹5‰3A3Î[OƒÄW‡9Ô'qo:Bf2®¯°½4—ð¢ÁðÍ t£Êù9$úÏb™Ù™y¸¯MLÀwãx#÷íÔ‡·cc‰ïIÀidƒ 3k±œ¾ÊNke®å¾;٦ߢQ­W.èeIvç8v®ŸrI›š@¥ÜêK™@Ôöš”dõÖ¹Äd„ñЗìÇTô¬„0¢!;ú_šØaèÈàQB£ƒ©ï%B)æŠú2qU¤ÒŒx.à ð´Ä£zô§N0pdh 3E6þ[Š»{TCe”Pž¡þHž`Α$ CeIˆCñvVܧœSÜ&Z0Y~p‘ðÍ ¡¹&àõtß’øì¬"÷¯} ÄÛ¹ônM9솾d™T„HÒ|!œ©¼©B¯tOÒJÜ…U\î9ï´é# +j .WÝ­èRÉ8ÓÝŠõ»m +¢‘€3¶šéJ*"‰Y¹.æ°qª„‘ʶçíëÜEw0 £„O\f°ÁaTQzØ´‹‡‰ž’ò…_ ¡x5Ë”û Û +ëiâ [@ ³6&²# †"ýæ 3ÂyüæÐŽWv‰Ä~dwJ–a@Ê°ØÓÊ È}‰t—åZÃK‡Ž¡Èä)SXVÎ+S/°¨—‰d{šx™€·@±×^ìƒ]g’tsþ—€ðq^d÷ßÔ1›U=—ehzö ’›ÉEJ/J;\Òù ”ÙyR—¾ƒšþŽËU¬¼UßK°Y›o +f-ª9G·´`ÞÚ6g„ «V€{æAwHGã›(c h[H°&b êØŒwÑò+ó4§ ‰’98°Úø²¼ _D+Òò*?Ä8?ÿ‡yX„)B">v;UïÔ@g­b‰j—{Åõ0Çß + +'lT¶ž»á¿öçtC{Äè_m`EU%~?—¼æÖ™ø¨îuéÏ­A_Å]kVVj½^2Ý42Gì6ú#c°AbDůî ÷[z¢“ 6˜S¸‰&ŽÓ®¶•kTë5‹kK{{±Î? +;Ãr Ç¿Â nÄÝ€tTÝŒDcp÷¯¦Œñ1GRÆ&›Y– aSPáo,“Ó9×ö•ÀHíÇzíZ´"¸¢Ùîò¤ôë‚¢V„Ë4PÕˆÈ CæŽIãÅS¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bðìKT“ì_L±ãÍUMø BãÛÊoXù*1J‚êíW#Ð3Ã¥ïIlJËëâˆÆ"›=›’Š9²(°cés²úZ´LJLŸ9ínum· ã3'W—…½‘ #Á-ýM‚±–”e¡rÜŽQD}ó˜:-¤©·ßuÛé ™05êÐgUG̪„Üêîˆ[›Ø¥ÿÇu•dÙð«ô’§YÔyz›ÜÛ(Û]«*ó[²D‚¨€>ï‡çÑw‚}Rø†ê‚g&ß8ôÔh'ò%ŒX󔇀Ø÷Î9hŸu!Mˆl7ÛC0éÓ48LÒ”¿ócÀÖ¢(Áƒ,V²°"4N5N"™¹hE9H/F$oÒ›Ž•CÉw¬·‹i©yk?›üu¨ÌkùäÞ ƒb¨Έº.¹ ñw!‡vÁòNÉÇÍu—˜pðŒ€5«i 6÷ˆ[úgZ<×÷eÜñ,ðЄÊòz§¶Ï4‹nQê¾Þ(I¦:÷èÝÊÙU¡ùàš ô/wÑ2Ý]JfJSŽÐ>Ë!°!R@sIþÀè@ ü «RYi¤AâÓ§¨KšD§LjÝôüU+TN‰Ùh»0E8Ûhá"_€‹Leãã{ìß›'¼{~0ÁÍcH—½Ddy–"ƒžšû‡‡"ƆÎ@.©Æ³­9{~›Ç°mAè¨ya¼ªÊ•Xð,G+¶cK+ƒ´5ž =Þ—Þ¡t1IÕÉ7Ù¾)°§dÄî!ñð|Ä÷F Š  Ö"ä”ÇzÌ8JX93DXc Ÿ&’“éO@ úŸ ×ï+Ÿ5r¢IZ„߶÷†æ8ìÛ¤y<‚¾ êK†8ÅÖù*&‡¹G`ÓÔÃf±¦®’‹ÀIÅ@jVðÞ¢Ú~ZN7± ¥Û’~9w!¯¥é4hK teè˜À¢Ëe"“°Pö< FBdÓìå§kìÌö¿ÓƒæI–«˜(KÌ;Š—¨ãæ¡ðä.·Å¸5_ Q]l[U‰LøbÂùŽ +‹ñˆæ”P/XÇöd·DÃ2¡cNÉÊŽbXê8ƒxA`d{B-<@Í¢wšmÇϹ»­;ão®Šo_hšn¸ÍfBØÓkúS!+§¡’Û”+JÂsCYÉZCè­'WøÞe†="Lº.^+Ça³ZÛ×È̊䨽l\§·#«›üØFI ¨Ü}CwGMÅç`PŽŒ§Vh¶Y¾O䈺öx¬;EÔÏÌ€+U +<çl(z!¢÷ÇÝÜg—AæñŽ´%ÛF_ÖfzœÂØáÿŠ~¨€ŒDV\ttgå?<:,ÓOÒM,;¦S‡X2Ù3žCóPPYšxkY bÄEËÎ4Ð=hG(Éi‰?Í`X!SBŽï¹B}GiÛßI ‘I4à]jDVèï½ÐG‡)ƒ_®óé¼PuΑiD¯êX‘t%óë«Gkév¶.V¬ÿò¤]o ;RaßXT‹ÁY"40Õ/‹ÑÛÀÞ0ux£üNÆJžÄï‚Üe¬ÑíɬԘ¬(Éx×—'­ßç™W¤e$”±•aËbáñ™´ðÄ´ç/i.º=NúáZ zc~aQK· ½àæ;zÌ©…mÂ7Tol[ÍCAö§{FÒR MçÁÀÔ.8®É*ÜÁM†×È|á¹K¦0ðÔ÷÷lK}%G 45a×¥†XÖJ¾¡ -×\TÕCÓ=ÄE5{¢ïïÙ@‹k·»H租'þp˜Èa7äî°&GÎ<Ú݃1V[¼rŽf¼òž©.õ»'naÆ_ìøJ õõ»*iP4¶ÌI·—GoÊ¡þÀ –µ¦¿®’PÈšE%jFr¸(¸ÏÐWÜQ¡5M*òJ`ΈñÈŸ5¼n6Œ¸åXõè8ØÅÏtýŸŸgú÷5TXIBCµÓÕ8šӮs/¥ŸhÞ*ì Gá‰÷É”ýâK”qî\Ð ¼(†…‘ ®ù¼ØÎA¡q.›¨rçÊ$”Òð®ÀN!£‹Æ2/Ï$ðÎzá¢g’W¶îS½îñÇ‘¦ó·eÞ’™Á³ìŽz=tÅ-B࿹ùupÁ1Þcžff¤Â™Ú "“|pzÊ VÒ¥ãYZˆçá9ãŒR‚SˆA–¶óTj»]Ùï¼Æ~ïçJƒ“"öëÀŒI6±²Ìd5’V?íŽ+·®iYª­–N*R¿ñs¾ï„æ õö.V¥êºª›Sˆ„ð‡›@ýÊ âSÃS®+È°…˜/h åé~?u|5’7‹ Þ•afòhE°E$‰!ñ¤‰w[W1nµÓ‰ê~'D6_¥52Ñþê¡WˆÉ¡:—éÑÊ™#©Z›²Ïùf ölÉþ 0½ÈQµëù"™›ƒ=5]kcˆ×±q4õ:u²gèÁF¼JS–¹ ¾%¹KÚ=S¨(ƃn@›k­ÞGsì- «ÛûL&¦ü8u’\=Ç4ÙÙWôØþµHìÒ:F ·D71`÷#,ÀÉ؉maûï M®2ç½óN¨Œ›¯_œó[+ÒÄ¥…µ¹†„b3îÌŒË]u<‰©u*fx‘e”üýAžRM/‡n@OÔ>DÙU «9¯k¨’UI¢ù£ÆL4ëAŠ?~܃ý}†*×»<ªBݸַ|² +ŸG£Åa—ïJN,DÖé+¦£1h{ ?§4êrÄ• ÛÍŸ&œýˆÚÑm5#»Ä˜bÜù^ª¡J©‡‡JqZ•øéBCº4ª€UgÃûûBÂq†õÌ3­O€Iy” G”-N»â ¨iXœ3êWA$Ò=sýDU: B¦RÌ0 ÷Ç‹“;ëlírûjŸXP fÞÆUOgŸØ˜Óë—©©—Œké¿ ç«šÝ’dð­.™+2{úr†‘sL­Å *@µ>dª!Ícƒ®_’@{™ÃPj÷}šŠ$ªO0h—[õ¨Œ“;Õ¨᯵¤¾›Š(êÈՎΫ&?¢ù©ÐzÕoØc¨áØRšsØë.‡68‹H+Öôœs@ØFèJ_úä ]Ï™MýA0”ÎfÍÍ‚'ž@Â7møæèœbZwï¦%ñ‹Ž7Ü·¥µAS‘Ø̉!_•’Âݧ{X +í‚Èž°žÒÔoŠÏrEÍôºñ(g‹Y)ÏT×)|G!ÕŽUÏĪyc2’©R O•]˜›{2ÝKf(¿cX’ÏÕÜáíÉÍðBDÕï3ãêÜ|¯åYVeÅ;Žy8UMæ»:¥d†Ws³&=¼d<›¥t é B!–ÛøëÕ©žïT&AL(„-@qyßwÉ|jYü¼çi„ø±¿. XtèÖÉ4Ò|äѪéÛtó='J›=wèÿ+“¬ ÌDħªµºÛoäœÂϧ̵e®Ó}öK—§K{=D+"¿œ—´ÃT±öó¾([<’5\3礼ÉBffÎ;ðÜï<°œ5ÿŽ9¯Ÿ5‡¹žÔ‘³È*Ã~ºÀ†ör ]1(¥U­M†Z§%ÌEè”ñ8é‰)ó 9ù´B’*™IÊ:²GK¸ œ¿µe£)mj¡Ôî' Ê«Ký׫]f_Xêgª;¼«üâ’Q‚¥œ <èG¤r[žÊŽÚcÅ…™¼t…¤Y‘áùî¤@ú]7Íe¼ ÙÖq²m„­&t-–œúËù¤ªC…²,ã¿ÈéÏ ü×F¤rpM„h’zÝ¿”ð}ˆ6 ,=6µÔ—“~²ºí—óeÑB¼´óç ­¬ˆR˜·¾}¹ „·Pa²¢;ˆ!Ý-—žÙYÙrµ×ƒßqŸ”˜¤Õ Šc×áÉå±Pm¦+‚«ÈÚ'}©ÉsœbÐ{ýckÀVÈBH¬*£ºœóŒÐH¢l=E­Ãð«Çðg™î´Ô£Bó|"¥‘æ8c·›îhl1ÇZÀ}µÜu·3 +IµœúñÝ^r;ÒÙ¢6×Iôga%B7¤¡4tqâÍÍÂ(€pËNœÉ•Áõ!êGµêÕ^*£‹¤]h±0ÓaR`‹µèÈr¦6øIFêºeÕÏ¢J*‰Z¯p–v‘ØDÈÉ78ã°†eÏì:ÏIºª¼rˆ´nf'8YgžtÊfÈŶ/µõRX€\Gñvˆ£ÓòÛ—š^ ×¢d³3²KŒ•™÷¶Hsņ{&ªŒª‚6t™Ñ7dågUoà’Ž"ëü¾ ¦O†¨óm碞 ¨“á·S¨–àªýVΣp¥tð«šsÔþÙPdwÐ-vf˜ cÁ%{€Ë4Øý8¢¢¨E- B…rOm`Xó,s:Š¨7 öþÒõáÒ8…dKäA”ÃQê[_ÀÀ û¬„åOïÀ¿¢Bj¨­2îÜLY‚k±U¢E… \öfó*q«ŠjvøTæØfáÒð†Ÿg›ä -³'mÔ…@žU‡|g¡— ØÀ°µ‰® ed8E½ž—%Š\Q€ž£ªlX*ÀÕJ¶WËp+¢Ñw¿½L?E]Zn»ž{H¯Œ–Ž¯hå3öÄÃH˜+Jßö”âð›LòûCào!%bRвfÍ´û>7å‰Â¨C¯ùȱ–Rv"ñg<žêØ<@ÑðŸ[2.ˆ¡zl-gs{çxCõúŸó9Û ;4b_3gYGºUŒy +¢äeQ‰^ª‹3!¾"½¸@43DètgDx‘¦o'”ä1ˆRhŒz_9EqÛ¨šnÍ;°pÙŒ'ºy[aÕ‰€)¼×b—¨ð}=\ËEºUt úÓøfVóP¢(]𦥖ѤƒnzÒÔ“Vü¹UÕéØÅ:‘­üÌ–©´ÝL9AØþùìI¦QÑ7nÒœÉÖe¾…*r•ör#!ªž‰¹òH9yʼnÏqÈÖêz&Azà‚BǺü¼l¨WIœÂ>‡Xt»‡(…—­’ß. +oë_;ä2½kfÛ~’œP]“ÂûÉ©¥?µ¯¸¾| kõÅŒeÜnA]wÄÚ]„Ü|Öìÿe»Ìn#†a ÚÊ6`@²uv”þ+È›!A¾ŒÅú Èá·Á«;ÂMôf€ný}‹ƒ‘±ßlVƒÙú1mm ϶bŽ©½+HÄãpFX”¤äóÚÞvöåµNÚEÜ^,@ V¢5OS±TWÛèaÚëþ3«æ«"êNY~}7YŒ0CWæ1™k #rò(¨@ÒtÏø­†³…sèßé(Bu ‡+Õqa>ÖÌa +§¤–§ë?™DÍ„™,¶òzAÔâcf0Üü'¬··¦ÿªúdžS镬ۡ$æ¯E4^@[Nͨ¸¯Yrfºu4µCJgw#Ê&+upAæýÇG^[רc>á ”zéql\Ë®/!4Oú!u6ð©^Ô£;’”zÖÏ1Kâ‰Û"*Ï•´$ú"«Ÿˆªv·Ì9çv=k-ÈOW‡%Eû“)èW4MŽ/s† +Ü~ƒ`‘K=ßå# :~E/i8Ûjt±•ëY¡ïZrKâ> +/ExtGState << +/GS0 32 0 R +>> +/Font << +/C2_0 128 0 R +/T1_0 129 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒMKÃ@†ïó+Þ£^vg7û‘@ØmÁê!{‘X°…$¥è¯wôæe¾˜yßgôÕ0½õ»nB]ë{èÛÝÇñ4¡iVëZeÒ©et# 0vÒ×Ò¾Ž¤³ybæž¹ƒ„ód‘%}Îõ€ ¢—Š•‡«*b`½ò>Èí;]Ü\æ=m2m¶b§ÿ“Ú¦MwÄ¢z†ÃVöxxd<‹H²?dff(€ÞEÜ·½-y±¯™K×ü&øû­`*[U ±±Q¶€W†-†êéK€xI¨ +endstream +endobj +43 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +44 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 66 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 31 0 R +>> +/ExtGState << +/GS0 32 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥séZ虘(@)3#c=3CK C=sK…¢T®4.€¸á † +endstream +endobj +45 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 586 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 31 0 R +>> +/ExtGState << +/GS0 32 0 R +/GS1 33 0 R +>> +/Font << +/C2_0 130 0 R +/T1_0 131 0 R +/T1_1 132 0 R +/T1_2 133 0 R +/T1_3 134 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”TËnÛ0¼ë+ö(Å—D +08Ž¸mR Ö- +Õ/8HìB–á6_ß]Z~©IZŸ´¤¸3ÃÝYÆݪ^ÌÊq Nü â¯åïÕ¦†<¿ºîApUqo$`¼ °/ƒø—óuò»ÀÍb.cˆšh  +Ìøy¥¸‚”Û#–' ¥æÚ%T­’Š— Yñô‹ ‹Äñ?e!¿lø‰[m<úY.1¡;®7ås1ýUwýÁ@‘åy>·¥ÄòÔX{¦¼Rñßj+¸Ü Õ¼Ui÷å¡hÛª†ÉþªÆC8d‘æ +Â%3\CX3 á”E˜ áœEŠ;+æxa‰Gìñˆ¥´ Ûá®Yd$\°HRΚpñGYa®_hÿ—>P!áæ„8’ŠX>ý‰¤IÅŒÕÒ#=‡ %ÏÍwAÜ)„¯$Ê1,VKÄDÄr9Ù÷Ìãø{ÊFóG5°»4Ðî èËH|M’‰˜3ó÷ÇÀR¥vâ×ì±ø|ÿZcýVm;žµY[ÃUæ²s«ÁE¦?·Ùý z+-¸E’'xx0A˜žÚ{OÒì9¯Á¡l`*¼ÙM£ #„3ù…€Ð¿ÐS é)8à;t–Ö¦…/ô¥ø­Q:yqô¡Ä­'EgòÀ}"Å4õÚ@—‰Ñ›®ûH*žßÙ†LÉ;5(ò+žÌÒÙãòr‡ôFäQïîÝ®¤8~BúéWNÈ·›rn6ôx"üU© µ\+ —BA5 fÁ¶ŠN‚ +endstream +endobj +46 0 obj +<< +/Filter /FlateDecode +/Length 990 +>> +stream +H‰´UÛnã6}×WÌ£ Tï’€À@²N[$Ûv£}*ŠÂµ¯»ñ¥¶Œ4ß™!eK¨S䥒âpxæœÃIq½oWOÓY WWÅOPÜO_·ÇÆã›ÉÈnšL’Æzü뜅ý2+>>*X²¢Ñ¿+ÐÐ|š`ÎGi þ­”g4ˆBG¹’ÊXhf&/à Ãò*/•­„'ª¬ Õ¯#'Eîd#'r]ËFJüÖüxBú*ýŸ!$s†¤Ë‰&/P<î¦Lz=kÓçfñw{uw{w§”ªÇã1pVƒ¹¸q ]Á˜j€|Ì'ATÒVC›9ÖóUä^–0úŒåà"ÇšV¸Â„£çUª¶ÅšªŠÜPü^ä¶FíF¯éà‘ÚØb:ñ,ò’Ö ¤õãe€.ņ"0Ãüœ¡–¡wb‡ž"¶)r#´4¸ÁððÈ"¯ÞKq+‚äûÞ£”é)U4êY¥s +©¢ó­{F1VÚ’Qx+S¶Æ‰§û×lI 4!ż¾ ššˆ®‡ïô¼4=/áéè­c€>ãSx•öÞC"›Èó¬ +qµ´¢ìš"t$ùvBE• q¼Ob’$[áè jkÊ8aÑø£Ÿñ´£|[²ácŽ²h­Y*ŸÒÅï0…Áèâ‹› ͹°¸"Ί&èF·Ñ® Ø +Íä?ÁAh,à;"KÙú•Ó øfˆÉ¢ÝXœ9Ìê_Ñ=ÆиèeCkLŽ3âKø3*Ò‹8ª^]ÐvP¿Ñ'ÆžÎÄ[Ê®€ŸªHWbÕpU§ô$‹¥[l|¸wÆÑ¢LàÞå,7hš:ØËò5ì,Ô +vÄ&TÎ&Â*BûUF^ácÙ·©7Ìb‘Ë âjƒD3k&ÃE½TòJòŒî8®b—ˆ$ ¤þ8ZŠ<ÑXÑ'ñÖ]øåÊ 7ô[*°åç¡ÂS®ïÈإȅ´–pM·Ð š¾räw“¬muJ–^SÎoçøDkRá¬jÁ5aì#t ¢— …¯Èšê}ñC‡Ø7šŒ/±åv9ñÕ3},¾’%ðöÏHƒaÕw‚ü—uìé¡UüÐâ¿„opÑ~T°æfÿÃ[Î)ÿ']áÜ,ý‚;ë^¼Î Î=ÃPèqz¡‹ pv$úú¿ ¶ÜWŒâ3¾ãË_þ}&”i¦6ÿ0wJÐ +endstream +endobj +47 0 obj +<< +/Filter /FlateDecode +/Length 799 +>> +stream +H‰ÌVMOÛ@½çWÌÑ+áeg?m q€ ªUAUåªÔCZÒДP!úë;³»&v‚ ˆªÖÎî̾yóæ%Í»ÑI3:9=†Ñþ88Ø?™Ï ˜ÎË7Gbÿôøí<éÀQ3RÐÜ"(úÐâÊ`´¼tè ¹ šŸ;“†NÒRIe±Ÿ¹rR™Ú‚óZ´5g>/"HÅP¼L…–Š¥@ä׉Ð^(nE©ãþ•t@Q–¿Ÿ‹¿¯`B(‘b§p!0ðöT”–ÓÝ]qôÕC´v²‚âžWÏi>tQ:rIµ¬Šå¬ tð·@J3eÍá—ÐG=Ó~6eË/aÒ™Òç5c¢Ã–+*µæ‡¹@Å7Ï€)q‰’ЧÄmRâ(¡‹V\4!ß#”m s@ûµÍ¬cèÔ¹ŠoÉl^ÁuK !E•2S qň0"° í"ˆM‰±ó˜ýfD`:Z]0óšwÄ—f·n«®n¥òv@a–*OÒe¥®|ç®ù¸2m½¹U¥c8+hŸb7b¯£ I –_ˆÒÄô:ës}ZÇ[¾Cw¹ÿ*ˆ^úæ¾+-“À'–A9£ŽS>ʳ„ ,§Ô~Œ*Ë87Úoì4è!8M!æï;ÔS‡S÷¢¬þdÊwÏ”p&´IêÉÍ­8¸dRi?‰Ã‰ã‘¬°â +0rg8Õmœ4ìéŽD8ä÷þ”?K1u_1* (ÆY·ŠIòÜ)Œ³»`ȱ­:Üq[ͺ—yF§0oCžðv&xïÁšï—¹f·ã™:&Ûƒ|{ÇÚú{ÕAgc‡;vÇ ô-l·?† tƒþøŠŸ jPÍU?K?¨†*ÄC\„Vo©6ƒ1ÓOxÇÂ(Æÿ±;=ÑÙÈÐ÷Fç‰Ê*®ÌfÑfb×2…O =ÜòD½á‰ƒŽè²#ÆÅã›^ÀõOÌ>ŠðW€Ò=ÿ +endstream +endobj +48 0 obj +<< +/Filter /FlateDecode +/Length 927 +>> +stream +H‰”VKOÛ@¾çWÌÑ+aã}ø%!TQ©ª|«8H)y(!Eù÷™}xíÄ”Ãf½³óüæ›m¿OnÚÉÍÝ5LÎÂÅÅùÙò’ù2ýv%Îï®o§ \^^MQ⪤y–+í;H 9þp©‹,×ÓÈLËÚÅäwò&RYg%$E™5¨ÖB™dƒ'’\*H"5™„d†[Iè¸!¹=l„É$+!kH^ž×¤hEŠðß°F +k„ÏüÅXõÝâåE¨2C£x¡¡õ˜µGQ[kMÆ~It~-ع.xkéBiA"K¡$íß`‹y!5yƒ*º¶Cå†rð*TɈœŽæè8]EIq¡*Eücÿ¬ãtSÈŠŽç0C[h]±%y$ÑÈÖf‘ƒõ@gc3ˆ*µq,(ÃÕ±øÄ}{Nt„„I]ŒÀ¤ª2éa2ó\ +òŒSTR\~ìv%4-¿uñ+Z°€˜2CAjç½ÆÝ"Á¡‹ ÝÄP°&\Ðqe3'„ª îŠ+oÂÖFjÓ!¡ˆÀð¨ÐÆ^èŠNSªsÍ6Ù$¢7'[³ ÎJP=ÇÎ.V¶¬ügK®–´Ö´Ý•+(¶Ndˆ-EL°M dV ‰9µ&˜éìnw«5YÙ˯f0çè¹o•¡˜vÖOC•²U©²æök´Cé’jÑŠÛÑÎ×ʬl™ òcÏOZaêj::§»¿]ä´?s(LUh¤´Ü¥éÂêF*†»=Ärh(6k"³Â4d¡×|z¡RMrž¤=†z¨ {p¹ò ¨bP¤«B$Žž»¬ éÚ6ÉI¸)úldÆ`c°U> +stream +H‰œVMOÛ@½çWÌÑ+áe¿ìµ%„Tª¨Š„ZK=!J›M@ˆß™Ùu¼& IQ^ovÞÎÇ›7n¾ NšÁÉÙ1 öÏáà`ÿëèþ²É}þùH쟟A{8<<≣f+© 4/ 5(üá£*¤²µg”´º€f6ø™ÍDl$r]ɲ{‘²¤ ]KÙ­ÐZVxÓŒtÀÓAÃ< SÂ$Ÿ]Ão Ø/QÊM¡5^˜!ã¼––nótîJ˜Š°¦hˆwøP´¿@{†ÉñNZë î?õ|p´u iˆšk Ŷ4ŽL:´6–‚lŒ§,ñ€áQä7 açäPß# FÊ'î(M–#6q#œ|°é¥ìå´¥Ù/Îð¸ýëìñ6b‡lš‚z…%L<²ÆÁàײ¾â²ÙcUÂ1Õç—«+©ÊÚ¤ËrÑüÞŽZ§¨R{»¹ +óÐ1w‘Rø.2QXÊm/‘%•ð3E‰Ræ=­¢ߘqhòœÐ–ð¤(ØH‹¢¢wmÅ`(r/m§›qˆœRÐÒb˱B`ô‡ZéCþ•–Žêο†\öÙYFvú±ó‡(MÁ÷F{ +ÝyigÛ`Uv"œQ› W($€56åE»Îèu•g¶Æb´<ûÔwƹ±´@•²Ü†¡jeM‹­i„3\”Ûä¶nåö†¬¤“)ã#eìZÊÁ ‘BÓÃí©r*% ‚&r}.Ë3*^•¨òj,µãÈþ)dIú¸ê‹+èÊ !;+wdé „ò¾Ï­¼ôº,ÁzZÄÊ5¢Vœ|H”½UežKNÖ +:äéP°ã~Æ€éê² Ödiÿ†²’ OJYRc†Ÿ.)axŠ¼rõ{C­8#šfÁþ.Tcµ(q & +ÄÌz…1Æcèâšà[¯úíB+©ðÂpý{Úlq¼ÝL}ëc+Œ®¯7oúb7Ø> êzýœ°¨„EË‚Düm’šDÂßå÷Àr&Òë¤ò‹ìÎ.‹’ðƒÿþADzŠÏ%]~æÀÕz×p·pOG)~ŽÍxŸê%zOÌsË£)·¦Ÿ³þ&áF€P ·­.©ÆCø{*QønŠü÷¬˜£7œˆ¿H°"éŽHây_îÊ5ÓSK—ðO€¯“Kž +endstream +endobj +50 0 obj +<< +/Filter /FlateDecode +/Length 857 +>> +stream +H‰”VMOÛ@½çWÌ1+aã]{׶„8𡊪THMÕCéB"…@“´ˆßy³»öæƒ*‡Åëùz3ož3ú8¸ .¯Ïip|C''ÇŸîSNÙ‡3u|}~uA¦¢ÓÓ³ ¶8 Š\›’F¯¤5üÇGcó¢l+*«6/µ¥ÑÓàûp¦2còŠ† ¥Ù‡†c•58çÊTyCÃßJ×¹¡áC8'tGS¥uÞòÿ*³y-¾žÅ¦Ä½é’^T‘»þ™sÁ|¥*<âe-A\Hì`¼f+ñš)Ý ²?ªÔbHw*ã+›$¤û !\éùp-N¨9ÈO¸JL+ï +`C<íÁf¸gÌßèIeR£ÏX¥+ïi’®ùÑJRAø°¯ÄΉKûYÕ¨s»5>^_Á26wÅaù¬´Á8â/U •ïwH¯t‹çœÔÑ„± a¸#_ìgLisóMU6—VÆ1ø¨t™êù³¦ulÉ£r¸™6‚)y +Ã*™YÇÅ¥ÔoÁySVr9œy<+å=Ò"»ë”ÝÔ_1ŠäÓÎÓ[Ë,ûeéQY”ÿFãýŽ¥:¿·ØÅÃxçR¡z‡rŒ¨”› Ó$é‘Ö~ +]QF©ßGÄ _ŒêðŨ7”´hôf‘º¨óZ;GeÁ,‰U~ERnæç0rûŸ#¯|»‹V'l#mÂé)î> +stream +H‰”UÉnÛ0½û+æH•".¢$ ÈÁqP¤HÚ¢POMNì,…c»YZøï;ÔB9NâÂÒÃ!gyïêO£“ztr~L£ƒ¯txxp6]Þ˜/“cyp~|:!]ÑÑÑxÂãz”¥™ÓTÿ%¥(ã/ežf¦²¤‹25*§ú~ôCÜËD•©%qÇ›œÄ",wR»T“x’I…uÊf•*¼©à¿¡•4©#q)ùߣLrÏ¥n¼´†×iTZ»vü}¤ Á‘8—‰IK§8¨HœIåï}‘Ú?>~”θ4õ‰rjK©,\g´3w„÷Ù›&{³;û©ÔR™!R‰LᓇÇ2Äö5é—¹#>§ògý>(&‹A .µÊxLÂÎî´"]ª´*J "”¬½ÿ²znc¸Råò!ÞD5ºFâV:tqŽ"‹¨XZK_=ª6MÕ¥?W0¯¤…yÉæ"lŽçlæÛ `bÑé©4– ]ι×E`Š.q¶Üi\¢'éÑXÑ~½ÔƒŠUf_!¸ãÚ‚×’9aQˆÏp%µÞ‚[g`*BùOÒ†ò‡\¯<§rô««ªp¤c‡ v[ ©U bê^…&Ωí&MéMqá–爛®[+”»kêåÖgéƒ?óÆâ6˜n:Ö9Bo(æ· Ð—Xž!=1‚˜AAËKê=Kä±fôø +y!²Æŧ(á òà7&’!¾Ñ T¸Ž¢oLOJÛ‘SÅöF‚{òÆD¼a´2–ˆÃ •/¸cÛ–;ÛR mv¼G?ên ð0Ç?öüÍO¹&×M.œû!3ë%qÉÍ®"D»!çùŠ'mГmÚÏ<Ýà†#8fmó˜oõmDc?$×Òƒþ×WâC”bÃ-1%Í`”XX9÷ï‘Ûõy÷`~÷£’£‘×2H¥g“ #@ ‡rÉ!9ÄØæî[×ww?¾Øád-Õ+sÆp2-W:ÜþW$“&WH.oŠCo‰ÃíG˜²¨W.FIÍÖ¾MÏÍÔ›K½= y’‡±ÓË5ôÊãBÞŽ¯n Fð²ç}£Ÿ`ï€:Œ¡m 3Ë @Œ¬öÈ«“‘ÂùFšî ZQEߦž2>NôUô¬ ƒ­ä¯ñŠþ 0W0  +endstream +endobj +52 0 obj +<< +/Filter /FlateDecode +/Length 875 +>> +stream +H‰¬VMOÜ0½ï¯˜c,c;±Kˆ,ª¨Úªª¶§ŠÃáKE„úï;3v' b«V+mlg<žyóæ9YÓ柎Äþ×ãÓ%–Ç°8Z-r%•6°º€8x­Aᵕªð%£¥ÕV‹_Ù“È Y@ö"œô=â”ÿ+šm:‘›RZÈžE®ÔÁFä¥,ÙFk4"÷²†¬[ ]’+´-ŒtÝ¢OÜ»!od-:«háIðk)ÎVŸ'«ÅÉWŒ~ÿ;ìY·×è2ÍÏ%ù)J’,ªinZáÚY08(úäN1FGQ·Ð +]СÁ1¶¢¦G.´¥Dа¦dnq (Ø'JÓÑ3ÌoØq? %× hBžp`TH?7†œ¶ä®Ñ„æ˜M–{ðS䎰û†°"šxN]#ª`[oK‡âÛ5ƒ.îq`éaØóoQ0˜WE~ïÉkÍA +ò‡Òž¯)|îqÚ`½&«j°êÈ‹%kãb1C£+ÓèÐ^9@a؃¶¸plÀ¶C‰¥§çcÇÈRvpe3tž§ðv#P5%PJ›Ò×R9oRÚ x«»½Ö³¶{§Ù´/¤ÖVB>"P:Á‹{®‰Em©ˆ>`Å‚Ç\™sÁ¸7ÛÈ*adþP\=‹rBÃ;.…aìSÌÍ‹íÞ¦¢K©Èá²IKJà‰nIô!²ž Ì"ç>%ö‡›Ÿ:éÝ¿£“ÈÕŒíὉ + 'ŠAê«Æ-Å€Ý#'sÕ÷dÈΊŠK`²YýdM9µ•º•ªrï°µª¥ïÕó3¬Ó’ÄÊõRò,Æ JaM¼P©øá¿Èô(k|ÐEKò‡û–¢Pdò5)P´ë÷ (VA”Š‘ä£"ãÜ$ëÉ´-5}®?]Ø'º@ÿ„1¾MÔÄ+x›”;·ÂàØ’TFô®¢¨Žd?O:¹fáÏ9½þN„+õŒúf¸/ØÈŒ;ŒÕ¡o7ù¿4åT!È‚yà§ô·¡ÛƸ ÍwÃî}B1ü8"†[™¿_nàœäÓ§1«iù§Ò.¸ÿ£Dt±êtdr »7NüˆŽž®€Uø‚蛺 X˜úôà ò,oKà‰3ø#ÀG.t +endstream +endobj +53 0 obj +<< +/Filter /FlateDecode +/Length 474 +>> +stream +H‰”SMoÛ0 ½ûWð(¬ˆú°e è!i1lh‹¼Ó°CÒz]†æÍ€¡ÿ¾¤dÇÎrXhQä#ùøÔ~)nÛâö~Åì®®fwËí ¨n[~šãì~ñù¼…ëëù GÌÛÂ@ûÈèØ€á|ŒÚ7ÔU^× Ýê­Ãö׿‘Ýù´‰šLˆ' åE˜~‚YmüYÇ1hãŒû›: ×Ôž ÚåÓK +:ß2BjN× VÈ0|à[P¯Ù¬ÑV’óKÛÇéÈÝa$é;d4öü¢(À?±:‰ËÐlR„靖ï¼N#vÉn’û7þi$ãöh­C«mº°R„ÁI‡³uþé{ðý*¥ KtN<ï°ê 1PçvØl†FÒõØ ÏØHÀn:,¹ä’)ítÚ=Ú(é#L_mŽøü +dvSS_±L}?ü'WSAà¿·<€pöhÐR0¤kgÝTL +.jõ—PE©OÐÿLkõêx˜A¯{,ŒÜÉRcš©:*H–Ìëu”×›¶ß1'Ì“âÓþåÌäY;ç{ˆ(¬òÆÙ2¢$„L›*×bEð½î}Öý±@%y/Ò‘ß>!>êËô? +endstream +endobj +54 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +55 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +56 0 obj +<< +/BaseFont /RKCTFA+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 135 0 R +/LastChar 151 +/Subtype /TrueType +/ToUnicode 136 0 R +/Type /Font +/Widths [250 0 0 0 0 840 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 0 +0 778 611 709 774 611 556 763 832 337 333 0 611 946 831 786 +604 786 668 525 613 778 722 1000 0 0 667 0 0 0 0 500 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500 1000] +>> +endobj +57 0 obj +<< +/BaseFont /ORVCPG+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 137 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 138 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +58 0 obj +<< +/BaseFont /KPSDLO+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 139 0 R +/LastChar 52 +/Subtype /Type1 +/ToUnicode 140 0 R +/Type /Font +/Widths [233 0 426 0 0 0 426] +>> +endobj +59 0 obj +<< +/BaseFont /IDPNJS+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 141 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 142 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 207 343 +0 513 513 513 513 513 513 0 0 0 0 0 0 0 0 0 +0 0 0 580 666 0 0 0 0 239 0 0 472 804 658 0 +0 0 538 493 497 647 0 0 0 0 0 0 0 0 0 0 +0 482 569 448 564 501 292 559 555 234 0 0 236 834 555 549 +569 0 327 396 331 551 0 736 463 471 428] +>> +endobj +60 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 561 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/C2_0 143 0 R +/T1_0 144 0 R +/T1_1 145 0 R +/T1_2 146 0 R +/T1_3 147 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤”]OÛ0†ïó+Î¥--Ž¿KU¥ÁÒD‚ì +¡)£ +ƒvJÃ*öëwN’†–^tˆÄÇç}ý8Ù纩æå}£Qv ÙEù²zn`<>ùr +ÉI‘HB‡­µ®Ï)lÀÂ$<Àí„)$Ùù„Å:ÉNõ +Š9n,î1¤ØP³%±ûKK5äøIbëlÞÚ K\{JFRæv\<$gEr6AûêEâœ:FÚ䔄ќPRC=KæIv¬¦¬PƒK!µ%§i?jíÖàEp­Ë€å:­DÐ.€öBÕú¼e–ãLðT‹˜•ü®ø:ø>êUØJÓh³¯ªb!9©jãóNõbÆ•Ø®r¡€Íx„öÈ1ÛupÉS' °ß½»Í°šç"+¹¥$ OsaU«åšò`à§.Áw4«©Hœ¯( .útÛ4O?SXÞ»R¯îV¨£Ú•¦‹çQ¶‡¦à¨ZñŠÕ[÷Ž×X/¼Òq÷xQw‡¼ãR¿Ç·A¾cð†P½Äßÿ£2”¤‡’Þ jœÑ~¤˜ƒw6T‡ºfx-D¬:> +stream +H‰”VÛnÛF}çWÌ#ˆ(î’»$ @¥A »Mæ©) +…¦d;º¸’’&ß9³Ë›m. {Eq®gÎœõüõát»Z6'zùrþÍ/—?ö_OôêÕÅâ Eu”Rš˜Ìòß<Ïè°Žæï>¤´>FóZÿ’¦z¹¤`þ)KZgIVÚ’ŒM¬ul°b£ê»èm½½â¨ÿpÐ5ÿÖ—óŸ¶)-öÑïÑü= +¸\îÖ·»Ù» 5¿zóó‚c¥Ìë:$ÔNÒñÑg+8]f«éþŒµ²6É)NèJ™*)(Þ+ƒãZe.ÑU3R¼QºÀcKÇF! µIJŠï•…CKK6Í’Šâ2ŒÇ ½*aò™c²ó[Z¶d;hpòÛŸŽâ[e2<~SYÌR<Õ_õ/=&çú×ÓQ iú‚hÌ€ËÑ%Õÿ2 þ’º¤Jy0HÍÅpÒåÐIËd‰C3iöŽ«\œVŠçf¥|]I._ã®ÚÂgEè°Ä—7ü¡Bà[À +ØŽ´ Ž{¤0‚¼ äs¤`짖¼—ƒ×IUâ„,blr„C& ï °’ÇÙu Ý«õs6 »£šåQéÐF†8<±fCî­ôûÒí(q&'®p.¥öHÀo‚óÈ8H㌄÷Vy±¾V¹ç÷O`”lJeŸ|Q,ꓲŸuÙÝXzûðÓŸ•ö‚ë‚Ø >^°ê¦ö<žÙ1Ï­‹ssµ×«ÇP¶šïüÂøýr O½â‡Qzñ®Ã ú]B|ž¾‡à5¹‰Ì£›ÈNn"Y€­ð¢¿»Ý´$¾¬ª!è1Ü‹/¨O7¾•¯¡¦fp­€ü놹á2îGµr½ñÉöê«÷ì†&‹öÿ.àGè›À=Ùë™):i–êd +&ý'À"xN3 +endstream +endobj +62 0 obj +<< +/Filter /FlateDecode +/Length 988 +>> +stream +H‰œVßoÓ0~ï_qµ´d¶;‰„x؆ˆ!4•'ÄÃ~´¥ÐnS»1¿žûá8vº± 1‘Ô9ß¿ûî;Ï>NÞÍ&ïNarøÞ¼9üt~½„éüºx¤O?œ€‡·oNÐàh6)t©‡Ù]¶hüg þUeÕº¼Ó¥ÑƒÙfòmú ¬.+˜þPøÝÃô.U[|Q5­_+kʦwª@C4تÂàúJUeÓ …ßî•­éÇnA‹9Ü©®¬É׉²ž¼œ¨J“Ó3¸UÆ•ŽÜÔ¥¥(…/[˜^J´¹*yÚ©‚]íè·M×-'w+LÃÅl¶ƒ»½Uš~ÍÉ»!ïøôÉ!VÊ´”áoU6„Ê YÀ€ˆ§ƒ£Š\â^Üãd½¥uKË[>ÝПAr‡˜ìÀ$È~7Œxtay nø$k8G;C§ØÎù\¨¢£Í +Nça4ÖòÀ_š"œôûºP`ty¥¾Ï^¦T“PJ3›LO%‡ÅÔMÛdTš‚šý|Ñk›z-µ·¹ç¤•+»HÒÈ'Òõ¥H‡¯T`|û¬êš,ÑPK¶5¡ä.…Û‘‹ˆîš(ÀdØâNO;ÃgÞ†ö¦£uC+œÊ)¹²HBy"/¥öSÑYB0tg­›>渪1NGÏœú|ª´‹L#‹Š,6ü‚Îw„ ¢oaÀáÅS0«¼¤YN¢‰óÈ·tAë. ®*iÎ:oqÃl-a&ÜŽE~m»‘VÍs C¸›È°%›”¬è¶¦N©¥" Œ´Š5ˆ;{74éš×|ÒÞp¥0ù µ”^xA±}Ò÷=j{x¡4céM*_…˜¬zìShÒÌEŠë=)®©ÆDsµì™g³…72E¤0(¬¤u˜-dži™0¿NGLJÞDÒeËXÅûL±tIÅòý(v¯c–9Ó©º{ŽEµ Ñ©˜Æ¨«BS×ÿÓÔ·Ò>cx“ñaÿ1>64Jm\Ða‰»ãtM·ÙäÞ)>È=Uº£Êÿ…™Ý÷oa,²áØÅ\#-·XÊeÊþKñc¿Û7ã7qj!omߢ.Mú* ÃUÒ{.Ì}A󾟛Ï^,ž Ðë˜bF‚cÍ3Tq¾Dª,d<í÷\—Kd¸+ …ÁêÑ ÍŽæ‹OuE´Ë4r¥Ší4¨1†Ø¿æp"×0Gä=Û2ëØë– ‡ûWP_>Mr±}™æ—Q³,ŸåÉ q#D]æ‰Dó1Uâlóg͘³t‡Hn|{Ҩؤ„3òÔðn®¹m6"#‘2ðW€Ÿ†rp +endstream +endobj +63 0 obj +<< +/Filter /FlateDecode +/Length 890 +>> +stream +H‰œVMoÛ0 ½çWðh³bI¶lE¶)Š+0¬¾ ;¤‰›vmœ"ýØúïGR²# æ "E¢ÈǧG*õçÉy=9¿:ƒÉô+M¿ÌÛ$M›^œŠéÕÙå ”†ããÓZœÖ“4“™ÖPÿ¥ ÃJiª¢‚¢tReeõzò=Y‹TU2‡ä'$~¸ÚJ É‹Hs\VRA²Å‰#ûwˆö¬,!y +×Ѐ~Ð6z¶Ü‰´ qN> ú„·ÑV!‚÷oº@†€ %n7"Õl ¹&¯Bç´NÎTA³…°~¨ÈnCç,¹alKÂÊy¥ZüV¨ŒVˆ“w6Ð~ĉ¶- †ŠMDNë;»Å#<Ó’b”LÛÂ'óŠCN'ûdzVu!‘ø„>í"òé{AÕ€‚ifúPˆK &:B¼ ÙïRa(ÉãŠÏïu-~Ô#´f"­e‡dfséz™Å7~ÓtïB;Ÿ|àÕgóÒIòÎßhÓÓKwËö%nH¬€ÛæP¦ÎË:ó¹­…ßÛtR&£¸þ–,ÑßÑ¡ ‘ãØÈldR›¿óÜÀv5™^\g°zž(ë²Cª”Æ"gÌƤ¯„Z8ãQ”„nË kÒƒ¡23†.ó,j™-'r˵j™½µ$(¯{£hbEkŽ±ÎÅp¶8ùVhvº¤ã07D³å‘U¼ÌFg_o¤ýŠ|ómÎãˆ^lÓí‰9ŽåbÈ2q D¯"z±áUå%æ®B%ºÀó‰gÃëÒã°„¢AÔ˜Óo8^eA•ºËÃù¼‚’£VHFö€K8l+®Å¾8#ν‚o„¿Z¹4ëó#ð-¥,Ý ©ðÊQEí;Rè›;¼Ë„ÐÆͤO8î6³<¡ÁúgAÆ:ÚÁ²ãbÕÕ°ÆRã£øÎ+š³AÈ ÐœHîiÄ}»ÿ%§ +H*}P/fØë%¾´®ß‡§2æÑ‹úF«}…°!½±9e ™*\ŵÝN‘ê¶ +Jgáµwíñå„d9FbÅ¿JÌþ—Ä5—d†³Y5£ö‹Ç¿±?\¸ŽžÑž>³ï•ŠÔºê¸Ãh†îSîlÛ€‰¨)“òðãV â¬ÄFK$Qÿü»Ûêãÿ3 õÂd¿Kü‡‚À ¬F +endstream +endobj +64 0 obj +<< +/Filter /FlateDecode +/Length 1023 +>> +stream +H‰œVÛnÛF}×WÌ#é½py) ql)¤¨øfçA°G,;– ·ýúÌ™]RKYµÕB¤†;·³gÎîEöQå¶)ZÊNOUIÙŸ*wUa)›±ÝÃNFYWT”l)ñbUÞ eºP_ºß&gÝäìÓšýAÇÇG¿Ï×7”-Öù¯'êèÓ‡§dZšNONyÅI7ÑÔ]‘.tIÝ3Cšü0œTWŽJ_N·†ºÛÉj3Ua([Ó#¿6HþMU¨jA(\êV–}ðtk¹£a˜ÑF妅²hé¿8ü_*cÐÀßkÊ6Š!`û»=iž•ó0ÜÁ§F +ëzC—ÖÕè§ +¾¹¸Ì9˜Á¢¿x<¬.cö°Êx‡„û¼‹ ¹æ'v-‹èŒ´¼)Íž¾F¢[•—xΕsèøoöFq¹àÚ ®T®o.}sšµrò„%VÔ=¤²HŘ•¡@ Ãñ¶}›4`ð° °  +øËÆ\3îârG1Š‘HUhçvØĺÆ7T–¶0–œÎ"MlGå-€^Ê¿-NJ¸¾ØC‰$Žx±ÖoéÔ‡7õ¸É­E6ëŒÊ«Š·\v÷+]©+ï–Xþ~Ä«MK\¶ÎhôQ¢|ÈK}G}#±'z P²{-ïn=GmzFÛ=S°Jª1aÆ„¯Ü4«G‹VøÉŸ…˜­u…obn¥-&I…˜c¾˜}ÿõ0¦˜„)\¡æ™U¸Öæ%[l]´[°u—a«tI¬Œ4º­D…†{ $ˆÜ ¥ÑîkÛV¼$Z°¯F3è+˜@Àøi®ÂÀÝ ’Äñ•y ¶D•ò"Ø·B¼Ëø^XYÙZA)*ßУÕqÆ$î]`çz¤a}VyÄ<":ªFTL8RÃòOlèÍ|1üW ä1ö™ +ƒ°ßŽÙ_"ãˆÿ&å”W ò± 2à öÚñÉ™jœçÓN×M=bmFªûþvX—„ݧšüRsp™) Hß³ÏÊ ¥.Õ’ŒY•JFXïéFv¸é½j('TcÚT™¾’0 Ìö8ýå0Ë]‰hâ/£c¥dÒ8Fϵ¦ÐÚ[|^ó£Ùý|Íñß_=>ÍWÝâ¯Çãó³ós­u;NIâkxs¨îºß(Ôõf}~Ïõ©Þ-Í;6êvTÚEöÿî&ô¯¼ÿÌNÏÕ8-yIÿÚÉŠ“OôƒkóÉ]gjzXÜÆ9}!ªqN··d¥ëo!QɘÍ2ò±î[Ø„¡¼W:*¸h×µ¦„r žõT$t|lx¤Kä}G$Ã%I®HÀT¼¿ÐO“Òl“ +endstream +endobj +65 0 obj +<< +/Filter /FlateDecode +/Length 851 +>> +stream +H‰”VËnÛ0¼û+ö(•Ì·$$0мŠ P º¥=8¶Òºð«±ƒ6ßÝ%%+ŽÝÈÑ"9»œYªú4¸®×·—0~óóáçñò$õ2ýp!†·—¯@{.®pÅE5Pý¥@â>œ‘™Ì‹L©2)†j1H@T¿Þ†Í;°;Då "ÊLî³""Þ%÷5Œ…ÖYÉZ”ôO™‡d.Rå ™ ¥h®©Î4$S˜áHg’%¬h2‡äQxzL…Êi¢:Sø¶¢ÌcQÐæ•°¼¡1Òí¦é…#.x›§m[|SÐ’ŸwÔ°¡µˆ3%!Ž›K¡,-™bˆ"¼ç…mjÚÐóL|¯z¦è0˜b!lÕâ [&e1u£ ¯3¿#Uà.çUýw{~s}s#¥,G£p ™å.GÌjÚT™|3Ñò¥‚(Ggõ^Žmá_äøMk% +I¬l$O,+ÃÄ …Ô>!…–¨ -™AGÌâ6MP|À <ñPHêè¹S +ÕÑRƒd,WÉTʺ˜ÅšMˆ­œŠ¦=éc+8nëï;õ_#=ÖÂQ‡9)NžlR ¡¢áï°0ÊSlÛc½ˆê«)ýœRÔ,xV ý€ÏwÐYi²“]Ã[ KPšÈi¥ ½tgdŸ†Ð©b¿†`Ôžœ¥r¦Áa©Ø"³­T6k:²å£‡bOÓ3¦@Q°Â¡[ð¤õÔ¡ž©Ž¤E­¸Ðh# Su†[ éÉ’Þ;Ž*âqhpØÆfºál’iýLés²)yeÊc,wÒŠ†t9ѱ 1hXjÏÈà ëÙÖzÇŒçÿo<mW°ÝmfC¿ŽBŽÅîËF n¦÷ÑóÆG,â¢E\Ç"Á%Yƒ.õªë<ÒÊ<žNøŠ¼ù>à…FxOkI`2 +¬aâEºE¿®oì¾®ÊFWå1]i¹»œ§'èªÀ&}²®\o]uÒºK€…U²°v5oïMÃÏŽ¶\ÔVIåy³«›“»z—Ú“—? /üY¶­ºý iàRü~JžaÜ´á˜Lâå»û¬Q>|+äôúž{ƒñ¾‚uõYèþÊñ{ÊÑÜ`áŸCª'› +endstream +endobj +66 0 obj +<< +/Filter /FlateDecode +/Length 944 +>> +stream +H‰¬VÛnI}÷WÔã´´ÓîÛܤÈÒ†$ˆÕ!bž€Ç¼lâ‹lGÀßS§º=žI¸PèNOuÕ©:§ªc´q¦ŸÈZ2ü¬®¼óäM¡kS8š.GY«ÕôÿÑøj3[œŒÿžïïgwÓöóþäâüâÂÓL&:={F#£+S°«éÍ(#\:¿äÓói\ǯˆïÿ;[-(kWùóS5¾|öâŒ|E“‰Ü?Žøò° +¯Meš¬·Ù;ç¬**í([*WkOٽʭі²²ö|Ðè@0vôQ>óo;KØåì[•;ØßÐ^‰ýÆÎÁéJÙ þ¦òF”}T–ÿŸ«Üèš²™r%¬ö*è’ÑŒ=×°[QËgìüs\`Q ”DÚ²{·+@(á(gÌlwGsUc³æ ?·nö’â«%|ðAÿjÄpÇY ÛÓ6|yË;ãkÔ +aà6fƒï Uö“Iø«äÒAaÀZ½ŸþósVë«F;ÏÒÐ!xÚ.FãçW†»×$œÇ ó^FÞK¦Þk_5¹¢ÖüSEÞ=@ZàÈ ½¬•ðTÀ#áµÊ%™å*Øߣµ0g…:1Œe‹ ¯WOK­¦´t‹œ,r2)Ô]ªé”ÜeÄKSÖ1£K(Kª-”tÌtd4X;–·Q¡šzšB%XÕëQ@\Ù”H²tÐÙ& +s :¹&î5E‘ÜÅsšÑ'uÓÄ®°â»¥¾c(+è©ð-ÄX`÷v(9ǸelöqîwÂQŒÙsW C¥ó*«ƒ³²%àÏ’ó9êeõcDÈR–6uÜŽöâ›·ÿuM˜îÐI‹Wï±~‘®t½¢2îfÐŒ¹õâãšhÎ…(µØûÇñò$¥ÓWš6Áý@Rœ\0ej’3$ÂΔ—øšÉæòà 1 îŽ +Õ’tq4ÑÓq¶ôËõÝÚ¤‰'c°§‚7Á†/ùHe'n¹´âŽ/‰mdh“&XØ×Gª°yØ%þlØus7NÌ¿è +ìâÄÏU¹ì:ç`ñH­¼úS™Q907x¸`¢üM*|ˆDXQùCPOŽ +Çûï Ç6ü†vÂé5¿?¾ vP¦î‘9ô7› E;39öäê·‰ ß +øljððk#¸{¬EKFÀx»±•z“£ñ|cÖ\·ñÐJ6"„ã ½G:ì`Óë¤é™_§· ,#/ý}#ò¡¯ ýÉ +endstream +endobj +67 0 obj +<< +/Filter /FlateDecode +/Length 815 +>> +stream +H‰¤•KO1€ïùs\K]ÇïõJˆCª¨ˆZµ¹•€¥‚€´âßwf¼Ùµ‘(Nìñ<¿ÎG‡³¿ÁÞÞøøtyÕŲþ<ãÙÁÑœýýÉ%&ó‘’*´0ÿZÉØ‚Â?­ñßJ}­T*40¿ý¬ÎE”ª;ᤃj)Œ–ªGQ%T×øŤÍWBkÙ¢uQ{’ä-ßhIÑJ4^Z¨ÆÍàù) ±Z·$w-L s–7$oØO05ß8Â$y,´!ɯÂXÙ@5DOQ[”ž½ÂϬÈ+ÓiÅ;$ Hö’6ÐíK¸CQRßïòG;²vŽ °–!=äÚ\ÁI%¼¥“¬9ð@÷/€wL·£I®¾H^òò.é^‚·O„p¬]ƪùî¨f- +áÉ#Œ0pd=£ßšLHIJ?È0*û&0é(<ë<¥ –©þ5ÿ2:|.›Ãµ–Gœ7¶«ªÅüÏûš]­Vö lC”Q…˜°e8\G 8¶¡¸å ÇÓÎMZ +;V8•Ì(Ê?£.Ì:&nAê‘Ž¿,“ú!õÁ€Ã0hÕÑÁ©°–NžáìB7 ¯šË{O(7äÒšÃp>Óš cµ‹¼ªÚþ-· ºÙÐï3á +>=©æ†Õ l‚th¸$vØ*®M +œïÞvƒùäpèPó;¢–Á°#j¡œV¿šw2ô¨½3 cžòlr»ál }Ž—™Ø>/‘–º+N‘ï5h.­š‘ä¡â²¡’Þv3P·i4¼îx­¥Ë‡ï’”ðxé ûò ëBí ~³Ýw™¹u>g­¢hû6?€å½`›}KÉ«R›&…Z-5Ñ B]+ªÓ4µ÷nl7%øûu’®£‡‘Rfjòô¹غwEËYDBxØüáÒ»?ŒÃLI†>VAõ†h:q©ŸÓÔ?˜©8Œi³=†VÐe:«M9źB@ÿ²‘Å°U¾Î»aŠ Xäøø²CÜ«ÈöŠýKso{DÚ|˜öÁõç›î›—Ýß”˜‘ÿ× V +endstream +endobj +68 0 obj +<< +/Filter /FlateDecode +/Length 565 +>> +stream +H‰¤TËnÛ0¼ë+ö(Í—( +rp) Ý‚ÇvRÄva» ò÷Ý¡d“vТEaÁ¤öÅÙÙ¡”TŽºWÒJ†–ÿ´æÇJê@Úxi”o¨[÷åFèZ*ôMXÙ Z6T>‹Êé¨\ £áØÓJT:ÀÄ>ÎÒT¾`ƒw®i9DT-ÖžÍþ-oZd¼Ñ^8É¡sa¤","VqÃåw´ÀÉuB°Š¯Æ×9Bê#—v=±I!ÐÁÁyüÿChOåH¸­'zàôqÄ«`îØpj;8Â9kùŸž‰0 ª,àoD#Øw¡°ä'úÏPÏDÿ³:Ü0@‹0C’n¹ºÇ1ë‘<ècvj³ÃÊ•çôssgØl^z «b™hð/¾vŸŠ›®¸¹»¢bò…..&Ÿûõ’k­«S1¹»º½&×Òååôš#¦]¡¤R픦 ”†Þï/¸ŽLŒÀ)I16¡£Ï¢™}dUŸðsT§Žxìv'L@ä‡\%eç”t0If%šÓ¹ïSþcþÜG¾F?-0hëÉõàáŒ^=VŸ+„Ãt'*ª¼5‰7&ÀAYµŒ6,é ¢÷¢a¦£+Í"Êk†Z:GÆX8\nN¼ý­Á/—M—ëï„U«\X¿UÛÈ |4•C¨Ï> ‡¡g7#"é>ÂÛ +‹†# I‹½° +dÇK”8ÿ4°Ç[ý0ªî(*a,ìò¤uú%ÀÌÑ+ + +endstream +endobj +69 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +70 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +71 0 obj +<< +/BaseFont /IQHSND+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 148 0 R +/LastChar 146 +/Subtype /TrueType +/ToUnicode 149 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 0 0 0 0 0 250 250 0 0 0 0 +0 778 611 0 774 0 0 0 0 337 0 0 611 946 831 786 +604 0 668 525 613 778 0 0 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278] +>> +endobj +72 0 obj +<< +/BaseFont /JODNBB+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 50 +/FontDescriptor 150 0 R +/LastChar 50 +/Subtype /Type1 +/ToUnicode 151 0 R +/Type /Font +/Widths [573] +>> +endobj +73 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 552 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 69 0 R +/GS1 70 0 R +>> +/Font << +/C2_0 152 0 R +/T1_0 153 0 R +/T1_1 154 0 R +/T1_2 155 0 R +/T1_3 156 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”TmkÛ@ þî_¡>˜ÏÒ½øl¾Q6V­¿•R¼¦ éÖ—²þúI׋ÓÑ/gݤçÑé‘ó“¶[Λ‡&“üäß›?ë—¦ÓÓó3HNëµ±žWç,\_&¨=¼‚ƒ+@x‚Û;„$ùå Âb“ägæ žs`ýÀ.õ«, äÏ›\µPòòZöH%¯M‰|õœLK7­Ÿ’‹:¹¸b +cüv‘d%9‰ñd Ú ^h“y’ª(¯i਑‚ðÌz+’m¡ÐÁGŽ‹%´C*ÀÑ[¡y›~U™ÕÒ•rÚBÚ)‚ôQe éBeF—¶ªÔ¤ »„.AÂfŠ‚æ=œ«Ì1HºTIÌFòòEÓrïŸåœï›h˜˜Ák·œ‘”/CÆèáûPŽXÿ>1P˜üî¿KÁ. }RåQ~cFX®Wœ“36«ÙÖ¸V1O¬“zΟ½AؾAŸºüOêU ùN(s&AâœU¬Ÿ /µ%¿Qwõ·A»Œ±¿D›µÉ}§}mŽ:mƒÑ–ܨÓ)€Ú‘ãau}œ„‘æmðypè1¢èÑNDê2C]{âµeÅÊvf\ÒQ}˜À¡D¶[à1f%®žÆc”•¾:8õ±õ ¶½THþ*ñä}¨t`D›ì*ˆï°…ãä0zãÞ‡^¬=ÔäClPi«bËÞ iݶÃþ_jƒ)þ +endstream +endobj +74 0 obj +<< +/Filter /FlateDecode +/Length 5184 +>> +stream +H‰¼WÙnÜÈ}×WÔcà¦X+I`0ÀØš1x’‰ÕIâÀÐ.ÅRKii¬øïs—ªb‰rœ`0î›,ÞåÜsÎÝÿi÷pu~tò ~øaÿObÿýÑ×ÛßÄ?¾>x#ö^oöjQWÚ8ø×Z#v{ûokqq¿·¿QŸj¡Äæ|ÏW Üÿ5•¶kªÖ[/´«œópÃÍÞÊÈÍ?÷~Þìýü+œú/8ôþß¼ßÿ妷{ÞÛÿ x´½«³íúík¹ÿë›w¢k³Xö7›ðÆu]Õډ͉_…ò|´®ªMgE_ ‚¿¯¬\ûʈU%×ðÀJ¼•¶²bõ»\buu +?tUßäÚj¼´•ë¹ÀG*ÝÁOxeO|¼¼>¡Sà–«;IŸ×rÝBNt|¹—ÿØü!•b6í®l&&>cíÖ¾æÌUÙ+¾Aõ™×¾êjü3ïƤöó4µX}k­«C¡¥áÊ8_y±RÒµj-n%e»¸®\J‰¿`1áÂÅOò‚¼1[…Êá;vð$œ} 'ÃÇ^m©8ðª)à~¸ïVÈ/ b÷rM‡ºÑ X^ø¼÷ßJ¥±yÚâ¹pˆÁ§o°U +ß½V +¿@«´ÆwlEåZ™ü %QgÇ(ŠòNj:üZÂQÜMJ:FÃoǼÂG˜ŽÁÀ;t&MY¼çJjHñTªï8‹¡êº@DÑvW«ª1Ú}_‰|ææÏUÙ¹8VVÓáuÕ´CXùNWM‚U*ì5v>Ģ˰¹ƒâx*–Eõ¡X¡•·ç"o?ÞûAŒ€ÄGŸðŸ©ØdOŸ.á:׺ꑻ†VvÔkEaÝçëô ®¹SÜÕ4ÔQL*@#_¢äR*Ãiš´Ç1^û„8&.€`Ô• 5¡ÍBŠ¯À€æ@Ö +#ýJsˆ‘á¼@DLiÔΘT@ràÂÔõUÏX`½À9–Ø \Û  øeŠ}]­›  ;hªÅt›P·.ôÁ`_Ó©î +Ç®Ã}b” =pw»¥Š «WÇ’ÕDu\ÎÀ)pT>èßLÁø¬–Õ©>)VHÌß`!ÖáÍtiÝ×ÂLX¤A"+ÙPRJÂ?â¯ÒŽµŒrØ7˜{ÿÀüw$N%B‚мnR܃ºÕí\ÿP­i’º)ß-bºÃ˜¨¬gPVEÚ °&¼BÈ>£æxˆ#Ä~ŠTÞ!29qŠ¡§Dð^LßgÜcµ˜DÄñ™8‘-“ó#áÞH‡G±#ED~üýH¯òÅ(î±MŽnÀÚsà œÖàYwœþ™ÔÜÉa±ý˜éM>(aCº¬ðsBà +¨^®×Ü¢Q«ÂK[¼¸Feì +: ®á^DZ’z|€B¿Àwfº]ˆ>?OH¶k«ȨÀD¶ˆšü\8¦qíª.Áø$Úƒ¯ KΊ> ÝáWCî—\¦J Ý‹ ˃ø"cà*%‹ÛD¯æ1ô„X›XÓ§¦x_!¹2œ`x"¾?(fœŒcô‡Ï3Èj@ŒTÚßq35ÆcaæΘâÎ10—áü¬´4¿T„Ï¢×âÐ'_øÑë¥Î¯]"œ˜– +g7NÕLÕuðkÚhû4Aç½ èKOOÊõ='ŒYôv‰$ˆhK€ ¿iÅÆj@„3H‹D:žÔóæX*SðVÇ HZ|E4¡˜Á~þH3>3ìÁíz~Q´1&  "zòë‡E Ñ|oÄ¢­èßÒ§{ŠÚ£Ç”{ +\¿€Wò¡0ÄŠk¯èø‡ _·uê‰}#±cŽŒ…ì¨TÉŽÝ æš¦r s/Ô1ÿ:昛™úV&Ï2CÑí i†Nø:€èßÃ&“ªfº‘ˆ]OEÊžÇoÝq"9&P Ç2Å7S¯Ÿ!x3Xkº :Ïö¸aõíÂAüúA±2 Ò%fÌŒ1t¶«¤¨ %>Î~ÊGT„)+mRVd 3ªti(±PRÞÞŽÌàÀþ jÄN–[Ùæ˜ûÔl³/¤8&ð¶ÏÒ”¦×?‹¤wHOGãý’Ë6f¡¾0ñ=õhPk><ÍÒZµæ¤4ºÖÉðx5ä…€1`”S3€±]¶IdåèÐs›Ä ©dƒñ%°Áîìíx­!“e¡¢¨Ü ‹táæxärú÷àÕ‘„7f‰5f³®ÈŽßqéïEYž®o/¬>ÑMåq¡ 6üÁò´(¾qEL$ÐÂ]2s/Dˆ-¢Ý BŒÍLúw<°‘XÃØE#„üžII\ g„Ddž +ÈŠmgeªP½Mx †ÍX´X8l‚çoOpfª‚í˜}^¸®¤3˜Çh¡@!ªx~8û?UÒÑ#JºkU‹ÄEÃð(úÂdg‰È±‡XX/°ÄÔ¥´Ä,ÕÂr6YÚûõI àsZ2jøv"¨3Zc*‹Ne±àýº®1\ Á7cÓb+ñzoæMÅ­¤¥ä.Pà5s‡àDú€DèHÝv<ÏTŽsx×éÂDÛA¢:KÔÇDýl¢Ðoßø˜'Å›'JJQIO™*ˆæ#… RÌ:«Bô5ëtP#RÑ#~H„ˆjÇÞáéÒ®<ˆw,¬è‰lÒt7Õòûè6Újn·„Í}i}Ô1Ur+ᤠ~žÏã:Žn‹[]ï)–¿+Ê¿©¹ú5[C;Iê0rUíÚ@êÑqXó&XŽ œy|äªSÁà£ñé²ñ ·¿ûéô̧çKÆb‡”iH)’ïá-8š9‡1%KüÄB—Á7?«œO¶PPú×Xy³œ÷u].Öϸ¤M€eÚeV·K©'§LYg2+EÙ·h4;J'ü>¶»§<óLÍÝ@I¢§qúyG?ñÜ´¡%8u—-*ì8¾Š·Ù]Ê”y”˜ð„—Oº,šK¢¾ÜL3æó¤ŽÈêæC£øÀ¥øQ¥‹œÅOÝU>ágÜÞST³È-öMŽäMj¡]0†§ÝÌô}/à™Íf ÐÐq"Þ¬L~™"?¢ÀJ(u¤þq¸ +ò§+ñ‹þŸì2³›Ìô%ø’aüax7Ù"HÉ~²mGKººä7³]˜„!áâÛ÷Ïêç7µÑ˜.ÛÝlŽ¼™Ýí…››Înˆ3¾¡Ÿøã Ðaº©4#ºÆ/‰²0]OJ£EëŠÃÝÍqü´@貟ãÓU¹#MÁu)0L Œº›F "£f²ÿz%V¡dxö*M€Ä%ô‹8%ø¢'g'MŽ+'ç[%óÅ`öC0ûæÂ0 "ºœf!˜}@ÊÀ.ƒ†Í ±î÷†16`èÝk2Ð%ŸQÈzáöé†t’„B¸Šêyiµ|%@‘á'irª$Z“Ò}O_›TC[l‚Â.'M$”¹R¬Ð©ð*M“~Ý+ã-†M¶ø¸’Ž,ÊFgš/Þa ÚüÞîƒ{¯<N˻ёj]‹§™!*FÈ#ô­ qÃ:',Ng†u´ÇHK%ø(¥%•ý?êtæR2~ROípë#Ô½Œ’,úÕÀP—z@gn.T;ç/ÁÝ.¬1´ƒ²ÔÑOúõ±¤€?jÜxCƒfé zE8òù8©INZ +_BÀØÀ’ë'$ä1ìH}—DÏÈÄhq3žkjqðý—ü†séÙ?®©‹™@%OÈ$@~žT#Ò8‹î=Øù5š¾"Ü•$õÏ‘9»ä{&¿T˜šÀ"ÉlÙËL7†q%)Óc@!%äH Äw2ÝĜω^À…°irØÌ@FÛÌŽ¾HL¿É6…˜ödtF“ß}ÊÁlY‡S7´eª†•„­JV=ÅL#ˆ@tæ#5„ì7>¥ZfJâHÉ×øXx3P¥‚B|–¦tíØb¢¶C¸AvøÞ«¤9Š +ÿQUÆ´Ôê NTTnTáäš2ãq(ÀÁñp~}ôIORk¦ $§ž¥[-½÷½oÞ[ k4£g[;=‹N??7¿[eÔùUô{•ÌEç߃ ° ÇõàfÓ=)ßÎ"Ü­Þõ°'ùƒß›úÕ{ȧ{MXÿüç%9zø~¯ñ3¼ÏÿG¥ôÔ}Fs+ÜêPGÆUçBS‰ — +n¼ ¸ã_€_oàAD#¾†îoÅ–±ë)ÞŽÏ}Ö(úWôm¯‘š<í +±îOHÀ%;Bà¶&,YÎ;êAÇåìúZÿaé'GÅÿÙÕ 6t̲RT¦BT¦cÜHçž¹È}*j+³/:~삯w47ºãqÎvå°¤Dœ0ú{E÷ +‡ çþˆïy£‘pâà±u éöˆ£•'v(oÏõ‚óü ñ†j-šƒÃ._yî¡m6¸Jõ3’Ë:EòÕñÑuŽ¢Äe +ÇRµ’nCœ÷¬M‚wË|Ö‹Íðõl§Ï?lX×d~ô;ù*ôÓ@ȅ៥tp½Yñt¾Ç¸*nâ`8¢J*/u¡îè×êME+ئ~ØÏJGг7ΘøÜ#‹ŒÇ)ƒË|$ñs,~à€WT=õA Å¿Í&÷”)-ù±r¤f„ƒ³Éf0æ*B33{Π4çT‹'zŒÞÖãc,Ãt6DšÛ’j¤§ˆµ>Òd·:ÉŠ^{½ë°Äº»DÌãï#÷Ñ×F«œ–ÌÝÌÒÝÐõÞÛ__xP#fRfZ¨Ñ6Or–ˆ%ZÈ"ç3<¶0<ãŠáAcüÓÖ3lR¿…ˈ¶r™Ë³“id'ë¼ë‰d¶b'ëy=xí²H"èâ®ôXÍ +8eäôõ#9 +M."AzpEcQó§®VD-¾ñ:"mÀ; š}|2„?ÿa–ËßX¨±…7¦à)Y£ƒ#Ap .%ºûüçJsÚáé‚7³×Œp&J/jÓèîȆߜµú¡Ì–fZï"ÌÚÕöVpIë!qT±¬ ¶£ƒE3˜ºS.·â–;úI¨g¡{êG¾Õâ"dÒ{ìÐK/¶Ð@L.iDýì=°%6X˜¦æÈR€u-4ú§E*à’sò +¶a#lXYþ$+Â<ª8u³ßj¢NÞõ×­Ý ì[í‡mF|Ísx {1abE†€R©ß´CŽI3FF=Èɉá/£€‹?ôTÑTQu`MÃvÞŸpn«ó»Àü†ì2ÇÎ ‚ °KŸe:Nxð¶œöÞXéðö,wåÀ*4S5ïFè›ÚÅ)ŸÂÔß<>qÖX’jâVÚ:NñDVou§€ üuXvÆŸtGfÊ3g±Am¨IÉ`¿êÝçˆK}RãÇ¡oÙ¦œÁÔÿ Ò =‘ð!¤.yþ45ý¤¿Œb%&‘"_2ëA~v3‹˜™ˆŽ™„°’6@ `P½)ëa·qæ›ä,žÀ¥î43 CLJ®¨bÍ0›K·¯Î÷Ê·]•ÇüXBÎÌ#x6V¼jïèEz ‡4hÑ33¢Òt¾C<Ó£ëZ1úR<ÖN„Òçïao.=Ã|ÄGù«R"Æ°ç^LФ Áú.¡¬CɉYÇ”5‡½ÒÝ„£ ™Tº*XûðdÀ]´Râòm`ZrÇÖÐù]ô¶Ï ôLm²ý®ËýX׈¥f²ÂöAlŒh¸¾+¥öd8’]ñ¼4 ÙÖ–T=™0êà5ë|ÝÙÜÒ¡w ¸êe°o1º‘“õ{›aä‘\¢£ò¼„྄yYànä;‘¤j*‰ +`ð6‹'FÊž)/4 ™þá@2ÆUy¤à»„º*‹â@ß%Wij#S9“÷lÄ>3ÌÂo‘ûLHXæóDbÝûçñ9½`òPù_i;±õ[¤ œ—üÞ$RP Aÿ‚ Ê&šþˆ9Pcp­º$Ю8Y̺T¨¦'xŠ¡%.CN;Ó=níŒ×?§ÙHá­ãRêgT—‰1W˜¿m³Æš¦ß¸^˜þ”-ÝaH=ÁJfÀ¾>ªgQpÂÔº, Ò[dÏ éÂâ¬KòxÇXÝqŒžÑ˜°LŒÄ14Â4îÉ®ªc¼û ‚vÜ >‘pš›Î¸uΰ6jr=õ>Ãïv¦âoZŸ“™m‘™]„»¯€Æ²tÐØÖÊLÔhŒ®Ý;:È;½ÀßtÛ½P±ƒB—<¤:+Ä÷zÜÝ­`É <¬â¯/êZ[´@Ƴ¶½9°PÒìGªBjÂf“ÿGÿ&,hðÔ·aÈ"vÆ;ã1ìÔNîˆôÐ×µƒ5x¹E.§+O”ë(‚}DIô)Œ'Ø©R³t:ì¤Ë2¯hË•ì}$‡ÊŽ‹EX$ ~Ë +ržR„ÔÆQýYÞx®vl(Û) »;¤Õ5ïwŒ³[a#rvêt^‚tPu"é2ÅÑúÕÀ#Ô{ŒIí%+ +„ñ|#3nÒÉ yÿž¼õÁºKùñë¢Ì‹ÄÃE 8Vo}ßÃ*þ÷¯ê5S\ÛÑü¦é÷X™c¤…1³<±—_Ф 1OP·Eª¡«Ñ%@cÑÙ…¥§<%Õ˜§Íò˜›åmðsx-è6O¹_¡ˆ†eCšªÉ¤' :¸Wª¤$b˜ä n«IÐù¬K¤«…ªšÒ@eX–ˆ— ~«Þó>Ë]ÆØô1O¨)(ú-‰'³¡’ìVŽ“ øQfk#t& 6ƒg£©·½ÄÍ3¥Ï?Äeÿ`¾Ôí +endstream +endobj +75 0 obj +<< +/BaseFont /KGOZLO+MyriadPro-Bold +/Encoding 157 0 R +/FirstChar 28 +/FontDescriptor 158 0 R +/LastChar 145 +/Subtype /Type1 +/ToUnicode 159 0 R +/Type /Font +/Widths [899 314 314 588 202 0 0 0 0 0 0 0 0 0 0 0 +0 322 260 0 555 555 555 555 555 555 555 555 555 555 260 0 +0 0 0 0 0 656 604 595 696 534 527 682 0 285 411 614 +511 846 690 717 581 717 593 540 548 682 636 888 613 603 577 0 +0 0 0 0 0 528 598 451 596 528 341 585 0 274 0 0 +275 860 586 577 598 0 380 434 367 583 530 0 519 523 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 260] +>> +endobj +76 0 obj +<< +/Filter /FlateDecode +/Length 5930 +>> +stream +H‰¬WÛnÜ8}÷Wð± Dm‘) ; —™Ù]dv²HïÓb±h'îž$vìñeÿý°ªHªHJݲcqߤR±êÔ©sN_ÞÜ}Úm?܉~8ýMœ¾Ý>\Ý߉|õæµ8yµ9©E½ÖqÛ¶7û“Ó_Þ×b{rºQÿ¯…›Ý‰]wî÷¯[¡T³nzÓ mÖÆXwÁåɪ•›Ï'?mN~úÕEýÃÝ»ÿ›·§?_ÖâÍÕÉ¿ONßAo·_÷buþµúå•<ýõõ?ÞÕöi2žù²P”ÅÆ'Q¯UçÞ|s ÐUjL¥Óýz ¹üwµ•Ê¬{±ú +ë^ÝÉaÝŠÕ•Tj݉լ4¼ÞÊfXk±ú›ØÊJõpåW©Úõ VÅ5Ähá⮹’ZCÈ?Ý• +®ü$uí®“Õ°¶ð©r¿· †/öâVVî<‡$&ã2^Ý»—¸,\ö +#ÙuYV®¢îáb'é!1cñZV-<ÿww×¹'*wÅ¥!ÞICA}¶’¸sŸl’ÿºÒ5eM§¾r×¹¾Š—Rð¼R7Ùi+:žJAL Š¥cª &ÊGo³ xóGA¸+H©ÃÔðLÃ%Ü@tV‘¤¥v¾¥BþoóÏÄyÐ tëºîæ€åšÕE`}sÕ†Jýîê;`žžúUÜ!€,ûEáùÞ&%t¯ë{y·¸ €ŒmÆ•^·\˜° âLªü—†ÞP¬’îï÷s?cñ‡HnÆŽ]ŽÁ¾,!*ÂXëAohÄ:œ¢SwU[d<z‡',+|€†±qõp¥¹¦ +ÝÂœºÃ¬i0: ˜„l,Š)Žsa²¹0‡æb¨L€ÊxTu½6Ã`T·Òú`Éb…|Ï/ÄÙ¹`ü¢4)Ž66+–69%œÔ×v"ЀGõM×ì¹Âö) ”ò›l y ÝúÅCí…Hˆ3€ÒuÉÎ5‡,k&Y6>hf0ÿ½u¡þµ„–Âùª:4‚–ÂÔ~8Tí‹£gŠ³ M*£¨fM¶w5u-kFÊÏ‘o ÑîëŽ +éë…ãq!ÜÍw”ÖxXÅwMhxD¥ýIOøÅ1`ÍasM½`€ ÌÝ'k°h./;d"èl[hö±-¥RÜÅâ—‹„}Š‹q/‡+0åHn1ŸÉ4ÏäÀÖ=CQ“Ä3”Ôÿ!‡£0KuŽ‰ Ίù›ðÁئ”–¢P'êl^+¦¾8ÅÏî{twxr$ºªô´ ~•;óaܳჿcgª]U„Ê-BCá=¨Øv´ +Ê&<¸·På@‡xˆeFè:g€mRú”a%äN]cã-0 8¥=|ñ9WB!ŒKº…øûlú;iÆN´Ü}7@¼ØL=?¤a¼K ¡Â(Ò%¥ê¦Ï&0FæZ:—mºÔœ3²mÃ,°_d»û}AZ ’µä¾ú±8ÖD¨y£ãÀ_žñ°}*2ïJ·Ð×c’rj ³ ª¡{ÉuEŸ",Än 5K—iJY«R…XTßF‘iÙç5-2ß7+òä—aÃÌs¶qRÆ&¸p³ù¼ ®M1gçL“u.’ëÛeÚƒÏ>W*ïpÑí¡\@4~= £+ERñ Úh½fæ/öÔÏEƒ‚Ÿjæäá|—šØ~Ý}^Š(N ¸+TD¬W¸RYny'`“m€‡»8ؤ\lŃëµßi©–!µ[‚T†¦¥HíY\'§êÆÎAÕfϳ݅µâ½f?µë6-“’né>\vj“&ߤ‚Ìâ%¤©fºVoà÷€O1Û ÇKÕ6o?J, ž/‹‚4íÖ¨$R6˽ê\ñ#7ç3>Q6½êå\Þè|ýÒHÓ÷ Á:,+ÃÓB°Ú:[å¹è‹X­“Ù̦úsZ¬ç‹¬SøÆ 4×¹.1Q…°‰&Ê&KnÆD…ì¦KuDp^|Â-¾‰pNš_*R#Ó¾ ãq¿Ž  2¡(È;má`_a‡Ñ÷`Â<Òë(S› û@á®Éì©N,F/±{¶G \RÁE,'®Î¨]ý½xän¹¬´j)qšÞ2 ÅPaÞ-‘°ü˜:³Àpz˜‘µR)u+"⋵º#·'€À¶@ëClÃ\Å×yAjG7F ~ +¢ïFü‰ k©-v)Œ+¿gäG$OÒ1Piêfæk«î'êDfâúd%AjÊ —$(ሷ![+ÁÊU§™])šw×0øHxÑß–Þ”Æ +"ñ;Ç)I Ç‹0T1r+Ó•ažŠ5>‹˜“:[3+@JjO^^íx’õnžAëãš®ŸâÎ0¹ aÖf0æ`Ö¶ ïº~§?ê„:‘Æ#¶r•Cç¸G„D[¾ùT±<¥„2 ¡64€± á÷ʇ GÚYŽDÍW¹X傉…Ä“ö¸éÑ +Üm)F¨bëØA)žV\šéŠÜ&È!¢”:„ñ–óÞ˜hB÷vâÉÑÑ,D™w#bšš©ö›1ñžH_sjã»´_Î_©,DP$|[§»Ž•¬ùaTRýb%E"VyqËXÿiTëQPnºUV×P÷!F­›9µIŸá'-sË`ÑÍ“„c§ŒM0±ªäæó‚¸}¦©ëY«V«DS—Ž!Å¢Ö~dl"Ã="NÌ~p¶&`2åXmæXm $ãÔ6Ú¶Ñx¨tÜp9¸õy$ç¯T2N±W6;3$ÁWäÉyš[·Èí>sü–S²©CJ`ÝœIkûŽií[h¨æ4Eä´/œè•‡ËnbÄIÝ…Š†Ëµ;Ü„J5‹»(UËínàå2K´ÂäÌ›{EãØK |ù"ã³VÁë©P—¿ök(# eØxV%ö þ.A¸O!¦%ÄØ1|F2'èo!tÊ7ζM +ó¶m™0 cÐÏãAŽg‘z0‡f["Xø:òÖ„ÜîQpÒýP·£ãÅ{è-žÀOôtõ(¡RT'±¥Çr"©›ªÇ °L÷€ÅJÖT(wOCŸ*$˜ÎÁ]@–¸‡héÁßµÕâ(Ž»Û_ÄΓ ˨+–¬É–;¿H9MÍ”øì©{_¿;~ìRR¥:Eâ-ì´XÓ\³t©f1¹f1“:ª€s. ¨§ÒC'ãwZÿ×'rÑy cbÆÌÅÕ ÝC^ˆÚ“¶jÂC^H;¢ðýòµùòS#ž ªŽØÔ…x2)žf\­™²~¦%– ¯HúŽÉ{tKù½°J(&jç{¦°éç.&ù.f:x~Wîù;òHšO¢ |XÖ©cRñûëÉèq„Vpz£ŽŒÕU†ŒF-{–º²Û¥ ²)ˆô ˆš¾gú'½‘N¬¯ÕÍá:´Œ#ÆÊOk2îµÞÉ(ÒÕÓ­Ö„›¤¾,íåÔ×1ê{ÿ›×ÁïÜ` >‹úö½h÷<ße¸‚Çe‹ºðÔÍŽ*‘» 0ݼÝ2‡­26A˪’›Ï âö,î_¬WYoå¶þ+|Œ€¹®¸ˆ’‹AótÐq‘—ÅŒÇq‚x«=“©ÿ}y6ò’®9H^|}u).‡ßù–Ó9yô³WÖ=¸V»»©íw (9ߢ3»º•“}Wl¬¯†•Jgg¯^»º¡ÔK+¼I¾¤`†ÔÎÈ MÁ‚4MN„ÅG1XÆšßþ}e7µnam˜‹tAQÕy1„3k×yßKlkElv\à4­Ê§_åÒ9Ühr‰pðOHϱ±Áh¡$·)"P¨òšA¯+Y¼‹C÷F#*퇦’ ‡œðÚ¯“MI“5‚Ù3!ºlžŒm)êÓ2r}|¤­4©øa5ar†@,ý6ø,†&Vrºö(¶<¯åyð +"eBS»“ü© +„ºN¯¤swah{¸N᧓ë«æ݃d˜T(š‚—’“ŒÜzÆaie¥e,›*.DŽ. :›u¹ª´¡G zšd@O#NðlÕ™‘€ñ(’ÝbÝr+)Wè:cädQ;¢¢Þh‡ TOÄâ&Ž$b®%"T?k‰ØÀzG%:‘éjÛvhþ}Ú`1ÿ[Ç+ìÆ~§.džÝ{l1}ýÈÌ󺬸{œC.¦Øõ:ZAÓ·M[ØVý«n‹?å‚ÐÏåÕVªùñ‡Á£^OpÒÂXáéŠÏðphEºÙÏ [t­&¿ ȯ`ìäÑÖç,ÁÝæ°û‹䇡+{!yŽ]êGxøy "åÒ÷Ï×À[çÌÀÃe½´oÌ +´Ãýê‘”Ï_46Þü¬%ù‚¨Æ_ +îI'¾Ö{@iW(íçfè¼5Ý6¬tžµ™b&ú_úÅ‘È:ÜOq¯4ƒª·¾ö#Î}èÍYZh“Å÷äƃ5ÜW`*4ÖßZÿÑ)ëÿš§=¾¾?ТˆÑWÝ4ùŒÛl&g¦ "1ë*/oLQt¹ÃÞþ¬òåŸs½{Ô¾Gu“ÚúJ[FÞ-6Ââ¼¢qlð§}ƒ&œÜ`v«ªEüÙ°¹è°9ðÝEꢣÈYû ÂäB#”!qj}ó>õVše©(xªÙÝRŒTý¦RXëüã9öJSza¶¶jþßw™äŠ10> èTH+²4dNtOiÃ5 nsY˜ïåÜ}*Rv‚g«²µÏ´æ£´¢™¨Y^´–wzV[ùÝ|êÌ´´d¶“‰«¬Í Š*´Öú +mÐPGjäÀbá3VíÂØ:v88¯N·Ú»~=oªãº^¨7Pˆ)|YqÔì#³—·˜Û½t¢—qŸ³X +é‡íÌ´ø]bTÝ3-(Ÿ0UäûÖV“ûyÖȪ%Ì “…:'$ÐbrhîÜ@_A-vPó/¨_:Î ®æ›;ç†eÒþƒ‚•ø<Êmªœ¶Ý»a¥œÒ2!§ŒÒš³µ.sb÷ÙÉ«kP6syeøŸ}¸¥®/ár˜ä,¢Âg>øɇê;üŒDg~ødÎQFÆ(²Ð9½_aô¬¦¿Åk' FÇoÒBizó7Ь‚dj´""Ÿð¡y;P®H%VÎËŠòYaÇÊK8Kë@ +ê,¯¯É!Uª +¬à±°ôŸ:}*-ptD®&‚Z¡Ü–ç‹ÂTÝÖ7¦oJIÿriÿ“.ß\þL1’ÑA~L…Æ]GÚÑŲN3Á#0p/Rѹ¹á„B°½¡óBU)›bÙ¾Ê2ûm9%{\ë¥l‚‰tŽß4 ‘Jd±Æ’ W.*B[„¢Õ¼{M<JIµ¾0í LSäÞZ±·Îu–bS•m¾x:àl§8š¯%Ûa9Û ê ÁC{ìÀßÁñÅR7­&ÌIMV\˜©_û¨éCE$m-/bÅ[ˆkC´9u:)'6¹oSÓ™‡j;.*rü·ˆNÅ=ÚþNøðûbŠs¿1õ*ûj˜g9£…Ébó¾'x–MH¼’>\êÚ”«öøùeX1/^˜ïADg¸Ë÷i”¼‡ˆÎ@Rî’ïý¸Ë£ô/F%@›Ûm°‹lÀšU?’˜W£mõ@\°HÝüžñi°75¢þ/ÀÌ?ìa +endstream +endobj +77 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 552 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 54 0 R +/GS1 55 0 R +>> +/Font << +/C2_0 160 0 R +/T1_0 161 0 R +/T1_1 162 0 R +/T1_2 163 0 R +/T1_3 164 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”TmkÛ@ þî_¡>˜ÏÒ½øl¾Q6V­¿•R¼¦ éÖ—²þúI׋ÓÑ/gݤçÑé‘ó“¶[Λ‡&“üäß›?ë—¦ÓÓó3HNëµ±žWç,\_&¨=¼‚ƒ+@x‚Û;„$ùå Âb“ägæ žs`ýÀ.õ«, äÏ›\µPòòZöH%¯M‰|õœLK7­Ÿ’‹:¹¸b +cüv‘d%9‰ñd Ú ^h“y’ª(¯i਑‚ðÌz+’m¡ÐÁGŽ‹%´C*ÀÑ[¡y›~U™ÕÒ•rÚBÚ)‚ôQe éBeF—¶ªÔ¤ »„.AÂfŠ‚æ=œ«Ì1HºTIÌFòòEÓrïŸåœï›h˜˜Ák·œ‘”/CÆèáûPŽXÿ>1P˜üî¿KÁ. }RåQ~cFX®Wœ“36«ÙÖ¸V1O¬“zΟ½AؾAŸºüOêU ùN(s&AâœU¬Ÿ /µ%¿Qwõ·A»Œ±¿D›µÉ}§}mŽ:mƒÑ–ܨÓ)€Ú‘ãau}œ„‘æmðypè1¢èÑNDê2C]{âµeÅÊvf\ÒQ}˜À¡D¶[à1f%®žÆc”•¾:8õ±õ ¶½THþ*ñä}¨t`D›ì*ˆï°…ãä0zãÞ‡^¬=ÔäClPi«bËÞ iݶÃþ_jƒ)þ +endstream +endobj +78 0 obj +<< +/Filter /FlateDecode +/Length 5079 +>> +stream +H‰¼WkoÝÆý®_±_Üt)î.¹$ €m%n +»qmõS]’,ÉŠ­G®äºú÷Ç>fùè-‡ï>gÎœsæàÙîþòüøô^ýøãÁoêàÕñÃÍ—{õÓOÏ_¨½çG{µª+ëZøÓ8µ»Ø;xù®Vw{G柵2êè|ÏW €ÿºªUÍÐU½o¼²mÕ¶\ímZ}ôûÞÏG{?¿†Uÿ€E/àßÑ«ƒ_®jux³÷×½ƒ7x€WÇ×jsv½}ù\¼~ñ롲µ/£pÏOx +ç8 +‡ØÖUݪ£¯ÊeTßVµÕÙ¾†ÁãQþ¾¹ÒÆTl£meÕæXo=þy§{||Ñ[ÓT^mvgzÛÒêNÓˆáÌ€ŒÚ|†—êäLÝjãàö0ß68è^]ê­µU£6×ð#œÀÓ„šW0mÕ«Í©nðp‡Ÿ+õ«v´ +Í65ιS÷ðJÓ?Â9®òÙ`§6·ð€óÜð_×x,šª mw©iù¸8þÁ‡¦Aô·õ8 vŒÁòê&ï\AP`ð¿´“!ÛÁÜoö þ†ÑƒIQñH×Úü‚ëÑäçÜâò .C·¿Ñ¦7Á°¶8V‡>èíÀÇ@jÉ…JÉ‚À xÿý9ákK]¥+ÍÐWµl–ÍVâvyÝ^¬‹8´ 8du ‡)i G ªåÜ#J<Œ‚|£¾`èú-FÅtN‘ ž†ÑrŸ4AéL‹Â~J™‡—êXátÇ ¨P†Nõ)"—ǶaLm 6Û†Ÿtª\\ =žÖïâÏp‚E\ç›´øáa^dÛã X‰.úAÔ´$þ¤·{«éqˆ £§«Õæ \Ýà"ûê½µN÷¯0Ñ –“BAƒ0¿X75´gøíj%‡5X€Y‰E8P‰E`íy0ÖuÕCÁh|Ɇ é&Ì@p†è!Õ%þ€) r‹Ü3¤Âä2WD‚Œ«2WÂÉÚb,ìÞDÞMa„V¡¶ ¢€°†¯‰ƒ8w*Í•—4Ì“ —0dŽ•´Á?÷Õr Il¹¸ŽŒ¢’ÅŠ‡–Âò…¢¤Ê¨ð‚O¹8íö r +#að¹%ß6˜…S–œêD@ë à®j ÛYäùÒ”hðw(Ø!\„5`ÀÔáÕn5Ý4]#ægšôžÃ,Ä°Åë`•ä´5¬2®Æ‚Î"Týœ`l)z2S¼šºF#àÅþ=>¶ø&ÓÔ§ŠÊòø<@cÒ +€X*M!Ðçš3—³íx‰2š×©Ô[ +Ž)ðbdùÙz·a ÿ ôâc¢WòÁ+ù9¯´Kv™Ž:[™„#ð`ߧ“ñJŸ„øG@…`纸éO2”wmÄ­3UÍø¨6Y® SªROª„ -›< 2™Âˆ¤!¸(ò†ŒÿK™:?J hïÕÊ9‘ ìL¶á5¼ªð™Cå§ÜÙœ; !láÜ5€2ÜyËJìàEmÔK½í‰‰¤¯(±µü + ŽåµíñµN%‹‹/=F­`%(CAa*8%g¼¨L±}„a<OÔói¹@§Ë¬‹ZSD-ö.uˆ—[ÐjäÑ»¶çh½Ó{?R \ý%*IŽ…~ n#ŸЦt[A —­uù!TþñʘÍd7%¸Lö/B½ÀRY&}ÒÂåÈ[Äo‘G‡Â~FÝë)= <ûÇng´£¼9m cV}·*øª]Ë+[7f>>Ⱦºx í䨵sä f„b%bÚRT‡~"`å*Ÿ òmâ"q'õÛŸ¢(pÖ™ÊÜîH‰ÕP™Õ íç%™^Ë‚ÓO9ƒ ùç¼ßÉw’á~E†³ìOÜÔ)šÌ~F›’8²À6’ó¯B¡§/gO"D–Pi^& Y¿¢e8XÛ2tã–a cðÒ$Œ¡nú1ÁÇYo¤?nÑ»–í(;fJm98ŽõuÜÝerT=F·äxzh'¡€ÍR{ K~bšÔÝ4Ú2+D¤ï7º¥µžáF4o´#鯕ì@i‡Ò¨Õ!hÒ£Žý€Ï,ñ¯‰jru˨ÕÐU£NçÅŠVŠí­lCq¯†^x³TêÓø®ìY¡WP€d-‡QãÐ,௑žá8ÂÝçIL'mLæn$r·ÁkERœÏsî÷Ò ÄlÐöqYƒýƒ­ï—¢yqψýÄï D“² ¬49UW1ÜÍf“›z»ä ªQ_bi©h²Ä Ûñ¬pýwš?d÷Í'¹ÀïQÏ{ÌVÞq(!&xÜyµ¼DðL)f™¡ÿ›‚ WÌz“–+´K¢[¼ÓôéAsKÂÀÅ{…ãÍ|"ZÊÚ‚RY’§ÉBÑÎ7|Ž¡C¶ØÖëÉ&kðáB«"#0,£~j°zmºaÃ]GÄa‘eµŽnBÖ4”í´‡\…¦î¿B“)ÐdÜ5V8rYÆã¶×7Äì“U¼LFCÛž-¤%0~Æ|w%-Øn$2ãœi‚Â>Ðpa’¹+‚ÅÙUANkŒr á‚F%*˜±°»,ú íé2Ô’8b”ÆB ç|(y×—‹–µ9§€n¬€–p šS“ +ir—ÙÙ‡ªnÉ ¬‘éÙ°"Ì‘k»%Jâf´tÐðA˜!@N'²%¶eãCM”¨£Ë ÚÂü‰jq‡ƒÝ™-¡ýìfâ«â6B"è¸q'•DG÷õ„?<ÎÐÌËhJÛÀ;~dJ›yÆK¶hÊ3¼oª!Mé!Êê„ïØrUß…ë-DortÔø•àr#·å>.(›&¡+U(C9SÑ õQš]Ǥ^ÙÌ3.°^CÅ&^ +¡™kÞ´&g¦s•F™lŽ 3K#q´”€‡²»èCw÷zëˆ$ß[Û!¡Âè<ÖÐX‹Ä±ÜVvO·•E btCÕªàWÆl6i¡@I¸ëÀÒ¬qì(+»mź3Ыk4êz;ᎂcg³·Nƒ¤å""ªšÒ%Ò¿ÈM‹/JP¬ë‘$*b:nPǽ]A/eÐjºV«-?„cŠ7ÞpU?KÎX<´#4Éâ»*ׇʅgµ2¾¯Á”°1uWuÆ·ªé=êä1+|c£ãc£Ó-6:.V„ýŸ5:êF'Ù‚'z†'iÞ=[Âð¾z ܃‹ý +Oµy¥ Åê7ô0î9 ´8p"7SsŒq5WÂÞyvÅ+!Ñ­` ‡µ,ÒÌö‚’5A³vÎH‹RÕB†Q}ÌF<äêX]‡àÍ©l¡N2xf*»´k‰ÞJmÊ”ÃàC¬jHÀÛǺH;ê"½ÔÜ_ÏOhƒ°¹IwÚщÝHGî"—À¸5\‘PlÇ/!0ì +á‹>r®†’j·ÿ¶>9—™Õ6»Ì›]E ‘¡:LíDîµÖ: i©e+˜$Xuc‹CIpD`FÛ‰ç(ü *Ù¶É G‰ÜŸ4¸§„¾ Méá±æj&gyñÄØ'Žh•‘ûñi~üª¹ïJ›&_¿ +®.QMí<*'üíuÚÌã¡+ +76“»À™þ–¢ÔQJ— +æßPQÝÊDŒ*4 +À÷©Åbÿ25Ún.b‡4î [‹G¸…³›¼I"'Wž3ÔAF0ÖI¬LD +<ð 4—ÃÌMòlKëbÖè‘€ÇJ=r¶Dž_â#lxò®0 1 ûÇÔM‰¥ð›YìKc¢¿ñ¥¿i9 4 ›£q×± Nõ3ºYb÷”5Φ$¸‹¨z˜û¸¸+zš\í@°¾¬GP|`5¦C²½M¼ ¤ÓGI&à'z!m™á 8ú`ƒg ¿ tjêßzÛÑ&wÂwGŒ®ƒž[=µÐkJèµKVÈ´Âtžt0ìô²+"ÃS)Mz•ÜP¶ˆðâX` +üþšn”W½Š ùûÞ^êfb.­tF‘úŠ´éç +0ëQ§ö˜ï5­¨$¬ÒFÍrh eƒéæTZ 1.J¤€ Ä+!ÛŽ\V¿­º.{rådF>aGçmeQÏ(éänÓõiµ€¡Úe–$$¨D}g”üØã¸|Š$-Æ ágÊÂÑÍ‘söÞÖ……(»™³'—Á‘ÁÓGåç!mÚÿ°^%»qÜ@ôž¯àÑ<“æÒÛÑ°Ä—À’¼$€l–Çùú°‹Ýœ1äÔZzaU½z ù‘,{ˆÝÃÿæšá¹«°±—¶#Ø‚{¨Ó³ZÏÕIøŒ…/;q4Õ8ZÛ0 +)j³.‡¦¹|1bÈëݧæ~ÕµbDvHfœtÝB {Ù—ÏB¡š$ιʦ’ôå;r@„ãÎ5U-gÁ9n‹ˆ +œ6ñ}úNo÷(hVJ8Œ¸e$‡=æ”ãƒÃ"Z\T7¹`Cõ´%s‡@jŒô +ä¢ÞÛ@ÝìUP®r©ªéžCÓ=Íͤ=br2©dF{ø +[ýw4«ÐÜÀÏz¦Y/§D%°¨„¯‰ +r3þ!ï ûýXEðH´ßÁ*X¢›ÃT0ªTÀ¼%§TtìÐá;Á²n¤iÃ)nHÆÍM£ ã¢÷Ïðµô•Ÿ`Òá_>…&§/Œ³7-XžÏ[Ü–ÑK(Á@r#[G½´ZÃXPKš“ßiàÑ©òJd‰þsöôŽ½ü¹o°Q‘l”J°íª˜íÙ?”)GE9{Å•Þ6çw©³7%KW#$Ô‡¡8( ¥7 á„¿ 1*ë|å}°SÞžô’Åêļ¶ ŠEX Ð|±8È·àˆ‘LÄŠp„éÐŒŠ~7j“£b†õÔ +ŠF €c{LAG*ŒŽsóRLºVñðß#.áTîIïËúÚËXæèR±D‹E6CåŸ^¹š†á´”r]qÈMLL½àJŒ,$¬þ’9w›üYž(ý•ê›òŒùÿÙ%6÷q‡ÆÓŸA§„ÊycWÅ¥ !¿¼‚qMÍO•z7¶R^§BGH¤-ŽIŠ=€æhž€Ý›T_†p£°'A'r|œ%œ@Ø}AšŽ±i:üÖtÌ瘹ú EX }ØÓ³¬­èTX{ú·¬-Küv“ Néª^f#Ï@ýËPº?•êÌMÓ_¸ùˆZϓΔKT†ˆ™A;Ý Gû¼L›¬ú„Á"PÈ<çØKÞ‰8TDÜ™Ðc^: rŒç òà”Aþf­à>ÞdEpš{÷Z\™_p3½](v˜_Ù’ˆC!Y5—v*žd•H8ž`w´yaãÊæ}á­ Øæš"žÕ®¸ÇÞU#¿¿t¿%j.ß|‡Î»ê¥«>ùÒiYu5ÚCï{H%EóOؤuÀ½ûh=Ó°gD{Gy 9T‚ö!¯Jêíh߯†0ßv0U\t~ð×®MO ”ÇaöTÅ%ô»H1ã5' +àC:€¢ÂïÚ÷dWS;0ë?0c ²Ã?þPäÓ˜WŒNðýj•óþy¸-dT2$– >Jvð‚oòåM•uZáe_L±‹z®àoÚE(kÓC¹6J©j »“² ±=æ=ËI¿o%‡ä¯š›×æ}N ÜtÌ5¾í…tÌ“’ñ ¯:‘4wp•O/U-g©Êƒ‰šÝJplá…3jbwºOr×j›r ûý;fÛ-DqŠ¼k^9ü¤ …UYüàgš>†l¡’B *e ÐÜÛõŒñÅ€ùÌuKˆÎ$‚£ÛFÝ:<ã£>³ÉöÂäü)m%¬oÝ +øIZs|u7Û®ýlë–Dä~7lKðÍ/pd>Ô(ßÞ³%º»¦±¾·Ø˳ Ýû0›Ãz:,ÄÎôí¡kZ“Öé§ÄëC,Z­Oç÷ˆÚÑ‚í„ôæ€lÍ#0G0Ÿ7ÐÈÝF9„¤îº&.x/ÕПøî×$ï·•æÓx›s† ½¬¯®­.\~¢Œ¦Ä¸˜f·L¼ÔÏÓ§Q”“«i;»ØH rÙºâÚÐkŠ'®d¥õåÀé@Zñò1e«[µ†7q}†*y¸1£»ÎNÓ&;&œ]|ÉÏGL®:1ƒ­]é´¯8~-ê056;’# +ÔÙ2÷Põ.ªÞ•Üš%µ$eG"’@ŽªxÊJÈ\ÃÇH@‡iÅKwbªŽQ.ø J™eaž”’‰ƒ|` +ƒ#®s=%næ¨âÑs}ܧ”@Â;é#báÚ»î‰^‹•ïµ)sÊw²å¨à«?ugò4Òn††°½Ø‡*5Š…OnBO,‡5Ί!©u«,õÏÜXÜû¥ÙÚ–©£ôÈb'€ªP•ÀrŠ…R}³Xåu…F½ƒö±èúÊÍ.¤ ÕÐÔŽæGp˜a|€>Ûà¨7Ø…?áW}&üïc³›‹)0-4…ÆfgKŸ;QðK-™ËÀò-Xù¯Ájì…U'2âi +¨Òg’c!œˆ@€fФ<Û& Õð1Wìˆ\T‘0ožÃÜV°`iœQY1ä¹ôÒ—&²B2c’›tŒÐ +V±B/l$¯Ø.>m.€•ærsôŒ’PhñÐâø–ª`E¬‹gË]8.Àå­Î6ª¬‘¼‘ytemôäœ4þ`2ìÞ +endstream +endobj +79 0 obj +<< +/Filter /FlateDecode +/Length 5667 +>> +stream +H‰¬WÛnÜF}Ÿ¯èGÈPìn²IA€8ò^ØÉ&ž<‹ÅÈ’FZë–ÉŽþ~ëÖ7^$ÚYñh8ìîêªSçœ:þqÿpu±ýø ¾ÿþøuünût÷ø ~øáÕÉOjõj³ªTUÛÀ¿umÕ~·:~ó¡R»Ãêx£ÿS)­6+W¶ðü×–ÒÚ–¶k:eš²i¼p³:rÅæ¿«×›Õë÷°ëŸ°éþß¼;þÇM¥NîV¿®Žÿ…¼ÛÞîÔÑùíúÍ«âøýOoO`“&Fᙟ0 +í£Ð…®ÊŽ71ˆÖteUµ=FñÇQ]ô¥UGe±ÖMY«£¦0UÙ'ŒÚŽÞÙ:Ú°)|޺Ƈ‡ö…ïWE‡_|tW4e ¯ª¸ˆœ©sØüUÔébu€õU<©–-~Šl'›É!çpãø÷æŸ!Ÿó¹sIîŽ7)T·jó²ÄùÒI¾´)m_9Î×"‡S/ápˆå\}ïºtŽq˜|\â:+Öß¾à׶…­ðóKa4¦wKëµ:ºVw°ot¡®Šµ1øë-¾Õã¦5§À”÷Zs‘n‹5%tÏ6’ˆ¡Æ +P‘è=—v_T¸RvÜÊÑá}ƒOéãSaq$Þñ»ëߌŒ$J®ÈN]à-<>[ŒÔ⊰-‡{P‡‚v¼Å…¨ÃðNÏÕV}ÄŠ·ÉÏûslt÷TGð¼Æõ~™äô ng:ù!ìÐ1צå”zÖ”€3µ?mÖ{b¨lÕvm†˜#•öùü¾]²/Ä\ézŽ®ïJà(•úKê"iìi*”&Ð0ß_³ðòwjœ-‚3€zTb)¨N‡gEˆé†Ïèp ® Åc“X$Ǫ¬6ƒ°£Ÿë-5†Ì^rq—¡ÒÒ«Ÿ6ƒ€ô Þ4ih²g¾Åß/…ãÕ]¨Â¾Ö„£¤%ñÐOcn³ÔQ-xm¯=âj#ì0ʳÃÈ~š‰ KaòÔ Ý§ödÇËj&$þ>䙢 $ Š@IÓNd©†.à=ÊTy'êiy™‹pSDÉMªŸJk;#­§àÒ0‚­({Ôa¤)‹èÝv4ÁOSÎÒðÈr*ž  ˆx[EtRž‰%2ê¨Ó©¹I%|þE¤£ãñBw¼ëlç,mÂGóøðU Î@>k Í$I!‚› _>G†dÙ“ýD±'v}O1²Ð¾»:Ùw +v0tDÓž(œ5M±K5õÊ#)„WO8ºáÕ,b¾a«àRMj ŒïÀÐÈUì9«gÂFúÄÉLhæfBfB;926,>-°É +X•Æ6ðo][µß­Žß|¨Ôî°ÒŽ+àbš´®5W )lO§’’[L§cGÈ-ü_ñõ¬7¯D ÔylÄ¡@ıù©"ì½ •ã¾èùa/É1Â6ÜØâsr4ìûnU°mWrœ-˜d¶¸–x/Ms^hßíµL+tǼ„ìx¬9,LµËS UŸ0Çs ¸œ5| p—î$û½¸‰;ñqA¾Ørvh9ç¡g2蹥ГYU¬zºyôPKÑ0ÓE›—8lOiWåÀr—¾—ÃcC'CŸ6}º„ç\"®Q[UÐ¥Oä§tˆ°ê7yžL.ˆ›ñ˜ g[ã}÷Ai|”Á:-ÄP›ë²nçSÄ 3×¹3ï³IKÚMMaMàÉ5u{@!’¤‘’óã÷¸¶‹, +¯¿Ãö…À~îzUÁ}È<~“a,ÊÎãàͼëx ïÝZKá`.õÅrb. +—á|å>jß*{´þ‡¡«Ãj¿¢;[éNýlw.„P—Oý,éXp,B¤:ͤê˜Du¦&9ÖfïÆ×€Ù£‘­ÝÓGY¿ÀúP¯3輪^:~NŽ†ÑFÇi¶I@’t~?b"ªçS„I܈ƽoé)7Ý0ÉP&ÊIÃ=¤_öìáÌ`ÖIØpnÒIÛÔô,ºÏ…`éø»( ý][å 4v„xÞ?_Xž&ë„ÆScÛ$¦y—F,Þûï¹]Ù$:—Ül£+Ó ‡§»jaCØ% žv)ƒ×9ƒWsN´î+œ]ÌÀ‰öX§¯ÔÒÿ +˜¹/¥Ãj4kd@ÂÜ l"é»öYöT6§Wbá+i«Óú­g+O×AÌ£]a(_Ó: „Oœv%É Ñ¤3D;VŠ±ž%ms€6C€69@ c˜’ÒGâð?Ùð†;]yÖÚŸß h*V'ú¯…Èlæ‘ÑÓ68Çz^0vì³0©y!ó)´'vY¢{aܲ®¬œUµÓè€$ÊÀYélš £J&mÁÓ%TzŽã’IÓg‹â7­S4^ïQœØ‘6ƒÞÚ´œ Âó+~‰þ4ŒX‚í<¦&1/àÿž=Àkæ¼Ø÷rïÔ ÈýS?GLÛ©8ÂYÌt¢–ž·¥*É­½íÀTnÃu›xØQíY¨õÌTëéžI¯çñÏsŸ‹cw3¼×ÍéMzï= ÀÁ PiNBa-n6×ÞDú+*ïU)j¸Zê8g²O¤ðKeaXña>Lk‹DQ%NbM‡óMæÛó¹5ñ5nÌÄÑî¸Üš‡áÀŠ'Ë’}!î¾SÝS³ªjmb1ŸwAÿ;[8<žxÿP¤µn3_;´I- ¡ +|7‘ùè([Ê!Ë +ïç&&œ9ßÉ„ò™¢¤ë ©%bï{ΠzÕY½(¨ĽÍÄ}œ&^äUß!¼Äeñ÷lnì½ùf‡ÜtäsΫ‡4ª¨t}ÈøÀL¥}çòqP2í¥{!:û:Í,:áŠ:QmáŠQ†£d>ÅÈËÓê7¿ŒdXûÚp¢›5N”½ÃŒ>YÖ§v¼ ö…:=çaµ‘MD*x%›'#À>ÞX±?M»Ão%Á§˜–¥«òÙÀÕs8¹#º»¨È/e£ÊÉxÆèQ뮥µ©A[Q¶ÎwAíOIhj}pPÏŒµÙ쬧 ±ÆäÀ¹ùÈ!éWj%þq×å†0¸Füárß12sô,@.%ù±YÇ,¸Ð3áZl?'Ò¿ó¼&SC˜ÑDE<Þ©õ¦ ·Jm!ˆô`Àœ³WÌh¾ :Z’ùÑ/voâ>¨øglÇÙ“ö½ò?ÞªHì:eU6ù^Ÿ²9©›ž“~/L_Nš7õnß?g _žÈ¼) h|[¬[’»t±.æX“ “ßıEMG®‘â{JøñéI/°¤¢æ¬WÉnG½ë+êÈL²r«Å0|aÆ0àå æ IK´¬…5EYþzÇ–™‘™U­"0’ê.eeD¼x‹-Q3mI”›ÆÊ”—nFi•]ímÔÿª/qK²¿ñè«\€‹LtÈjWo¹ªÈv‚¹¬áðÈ‹«¬¬XXç³ËhÞ.FöKGVHŒŒìwì^þëuìܶX¯¶kj혂•kEwŸÓ‚Uâks5ÔîÄ•Ó¸ÚÂÔh•)WÛPªv{.w;Ô»½k³± dñÔÜô3§/CZ¬HÛÖ0—/u¦4LZMª4„ÁßÎúàðƒc?ÂÏßúÞ[¼áÅÎnzÕÍ˃ya;Ó^qäöÝtò´ßG¶ªÑp«Ñ‡‰ìýH(0pýî¬{Úsb¹{÷cÚL©‹¡dˆÛw/»ðúîýÎ{‡âÞ‡¯=з@gÀŠé®•!¨Lž’©=6fœE›€Þ_O½°ý¤|K¤”stïоÚ"ZÃD~x £ï %&ºÃ·;û6Û–×øé½ë>Þ>¹üáÙÐÝŸ\>µ/¤£ð6îäs,8Èv^.fiäwÃ0¸ïîxõ¤^­ó©Žý¾cç²"z÷K1TÊá`2¤ƒ Ú°’˜‚`jÜÙy~öŸÞð$1½ñØ-Áˆ˜yð€3’ Žv×Qä†DúÈ<Ô'—G܈«ä'Áà Çrg‹à°^!gwÍ¿ç×Ù²G@dÙ^-¢Ù`‰+f'ÐE7šªsdºÉ~Dµhl·Îm’Ž +é¤Ìä)¨}êÙ…¤è +»b(^ܱ/‹¡P;Ë;<_ÿmÒB‡ç:”]EñQ&9iäšÕ>‰<œVNÕ¶9ä÷.‘ z‹“ðð”v g©]hf‘@<ËH£PMÅËS@™˜bÒE+C¥èehiT<é, öð +ÝÔÿ ’Re7“[+#bñ +¥t¶}I&QqVѤ +#ÖŠä¥}ž×>oãÍNûvKþM;ÖìZ- +N×j©¬ZÃPäñ~QZ‘1K^ô~wãiÅG-AŒå½¨*žYÚO°K¬²yûŒRÅÛÂ¥\’vhmÑ?È.¤ÌËáÁÓX¡ØSšFž;O’l°-1Æw ÝäÖO{[ÆÆ–¹ÀlÓõŠíÿŠ OM1ÉrÄ”WW%NSyr uEy €2â1±S°*<ÅγÅy¬™øX€Í÷Øß÷B§ŒyÔi:™ ó9Ý®~%Ó¯}Ó9[ÇcWÀfÜ™a?‰Ù¼ÁN‡”Ó +.º_zë¤îçž/Fòž&ó7žX±µú[n™ÞÛ¸¬{2RûÎW ó \Ì6‡Jy JÈé²nTº-Ÿ0Fˆ5fÄ}Ñ ´s"Î)‹Þûo±Ëï±E#Þ‘TýZ:_Q8$ˆÑóŽ\£¸Q™ÁÞ-esXnæ«ì)'fMÀ4£’qUa~«¨Wô)옎 BvW]¦P'H’>ð{›‰–¡GøÊ¥-k[C;S‡§›¸§d £ z¥î½6¾‚›¶aw̶s£¨©âAí>´4 ‘ºn¯.ä=¦ iŠ¥Z™j‚R4v¿oÓ=Vf‰ý +'Îw¤·¾!éW-Kîå)M\#I¥‰ãº9Y¸¨béó‚Ù,>ÏŸ"]{ÙÅÿ?×8³( EzÜØà•™~'2zTKìcL±ï‚|)â‹K!Ô<ëÉÜ]ö ±Ú+*Éè]Á _ÔýÍ,T^œÓTíbó{vY^C4p±³cÑF‡ ðÓ{×}¼}rùó¡»=>¹|j_Hš´jòÒKË Ìp'ë6ù»aÜ÷‡?w¼zR¯ÖÇBsÜæúØÙï;v.+B`ï&¬ãy[Z¯{™g#r×Sà¼î…¤iwpIø)òvv‰N?d -ÿvç0U:*#¤H׆ t`†ª×ÏÏ:¨‘ÖýG\@ÙO½!-ý-\ì_ln +Ë=À¼¶xËŒÓÅ”æa0µÀÍl—¬°¨NØDR +v?’>G•h²ÇÛju\9öä¼6ÓÝ3¬ñHùžG\kçÍ`1]Y*$§‰ä›ØCwú‘Àh­°“ ç/,ס×ùoíB¥à—݇ˆ›È¿µu"·æ”-ùÎa›Ú=·ë—¦@4Á´ËçeùÆfù +MÅu›ëP´à·5X{Úu¬¤™žÎ¹[±B'¢Œc—)wZ.Øx2}‰§ÂœŒˆ¾Œˆ–m@ ÜKa¨‹u+ÛxÏ4ý~yîQTà ¯x(-Ô>DØ“–%  ¶DÃÙy¿CôÜPG5(‹IÿØBšK¨{I"6‹a}W÷ä6P'Ú?‰ýà ½q“„'odç%¥ÙY¼Ó¸ß¸Á?Ò°ºa‘«ÖÄÀËíð8kâ†ð5kR»Ïš¸a|Œ5ñXþåÇ“æD]åùÙ3Nm09ÏÃPeø 0{.ÿÔ¿^‹m¼éG¸x¬´ÉÑUî3"n˜¶Õf['2€t`‡Êz:Ø^øÀ$n‡ñZt°‘|Î7Ÿ”g.ReH[\g§¶<1æ—¾†ÔgÅÙLœÍXWð Ç_P +{èyi*mM\—îA­O/íuŸ†I>…þm)™]÷¢mË >àÜHMG]L!"]ç¾ÍSäŽ5î•Ã¹ô> ›¼Pð ¥x_¡©™pЖ˜ú\î§bzyEÐÒ Øv6b£Š@f¯±àmÜËbCÂIKr’‡¡Öð`^ãªM­€ ) ü-ɪ«GmÅ‘LÅèìð”,mŸÏâœL Ò°ß–Œ»e&¢êK‰åoy> +$´yuŸÕZŽ‚îˆÇxY*EØÌ B“ðÒ8£áŒLõ¼"]±kvm;{çðÑ ˆ0ýi¥¿;6¼ šéëjŠHŽsSY‡Öòzב¼«àÄÒ ¾àï"E>’Í5^&Ô} ®u%×^IZG õ¼Ÿ „µªIÑõ'Ôq»bÁ¿Qi&s/¶y®ÌpÒ„EHM¬S„TÁ©mžXXɱ¡òª÷:Áí9ÆÒÒ»’â̤ç^ YÁ'_—2´à¦ÌKÁ'*Dà·)ôlM†Aiëþ`é,—¬ +endstream +endobj +80 0 obj +<< +/BaseFont /HDAGVU+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 165 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 166 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 236 0 0 0 0 0 +0 0 0 0 0 0 500 0 0 0 0 0 0 884 0 0 +0 0 0 528 0 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 0 302 0 0 312 800 556 490 +0 0 378 396 340 546 508 0 0 518] +>> +endobj +81 0 obj +<< +/BaseFont /KFOYLO+Wingdings-Regular +/DescendantFonts 167 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 168 0 R +/Type /Font +>> +endobj +82 0 obj +<< +/Filter /FlateDecode +/Length 6065 +>> +stream +H‰´WÙnÜF}×WÔcà¦XU¬" b+ÄðLÜÀ«Ýõú—×òðý›wGÂ(U#ðÎÏh…b+6Þˆu]Õðp"ð·›¡êªëy‡‚?ÚªUΊVwUß÷íú÷j#[#V[ÙVN¬Ž%|Sbu)•ª:0N>ÞɦÒô®ïV7R› +¶<ˆ[ ~‹Õ¹T¦øàÿ¾wrÍ{ÎaeÇ}•ZU Þ·†à¦=<Àž‹x¸‚«îáe_oá^GéWà‹oî%ü‹¹vø‹+4:»Zº“k‹ÞŠm°äZÂ70å“ØãÉŽMñŸÖªÇoŸá¡åëÈN‡j‡Î±K]ò«/è^ðéZlÅ}nè­²4o-íoh_™Azüò(Nd‡¾‘=}%\ó‚¯ð]ƒ»®}½_×Í…pÁß•üÏæ׈²yDéQˆB‹ +P±µªZ£M••È!<¸ÉOGv¶ªM߈ÂßFð½“Æ`0ïÆXRš“Œ¹tH]cÖŽwbÂÏ’öĨ`¶Ï»8–!Î ×àώßÄYÈc„Í_%1cï^z ?BÔ y¯² wR3¾!íàÅ9e7Ϥ¦ +‹¸N0Âd‹34|*Ù²†`È™G.+=‰*Ù;|±M–=$8•¸¥Öž\ðÉ…³«cv›ZWÚÍÙµÞ“Š\ƒ b%Þøʽ¹ÂrÁ(l¯?ñ§øp"-ºxƒˆç²!‚B¿0†k!¹äµ ]³…k5kï”ëÊ.™ÎUÎØ>°%ÔwÆg_dfaÖužuÊ'ÎOÇk×ôú‹dd”‰‡gâSÏU ÐϽ4éPqAìèm|{D–ç D”¡⎜û¬6YA4X|Ê1–¡i;ežtÂíp‡ý¦{uŒÕ^Z*™J$`ÏÚä¾Sa°i­´'þÈþ¾P)w’ŠàÆü Wr­ù.„Ž+ 3ÇIÓwž^@Y­—qe›Ÿ[Õí[HÄ S†›B}Q—EO™_±¯‰5ð +׃4Ê3Ôóè «‚ä©oÆŽÌ =<ð%9éò™îh|*Ç’†"ù»u_j!H =ÅyM¥÷¬¨^”àòÈ„ƒ²¡C FÉëÝRNë2!G7zA¶CÛ1‚ò:°|!z¥r1Õx΢œ9"ÓAž +'“ëS«ŸNmê’5éB\¥}û$F ­AìzÜÂå:KadP1mª“,Š¡ ƒõÏTÆS²r"²ìï‘_š9‡‚*—¡¨_Bo‚ÒȨ‚Þj7Φ‡@oS·+‹´˜+º¾’ðBArK±ÍÎk·(éæÀªŽÅŠê,ÌFWc&×C¬“:E4ºc©»®q†ÁD·`Ù#jçÈ›Ô5»¬&ó4¬}ÛÈkÇ+ëµVÓ­æżxp&µ*±ÓÏ@G÷UyíyŠÍF„kŒÄx¾ù¥nÑMwªXÛ|E]6»@‚~V·ž]Z¼Q  S¬{¿Æþ¬ +¦Ÿ`¯Ã#øÃc ÿ÷š§‡Îasge}‹ÂÜå½< Ð'ÅæRd¸ÐÔpÁXë¹²óÔZ¸úÉ“µ‘* ±cvc’rcŠóWû2té%Œ—ak)ã™a?ngp ¹w¹¢ P†ÃCŠu=âô\ìw£Í{ON 6¯Ô{ªâ~Nˆ:w†Þ%ø‰=òù6Ü  Ÿ<áºDQñ5O£¡öe!² {å{¨[}¹T·rÁSxôx:òÁ£óFB€»¢.Ëó°”ñš’ñÌåÕ*HòÁÏ‚¢F/´0~M, +Aår R +DŸ­r ”Di§/<0o}^Çø)VÏéŒieÇQc }¿à× Ôþ½†ó¶ØŸM&ÞøžËØý5ËZM«‡ø‰|ê8)‚T?_¤£&¬Ÿ(IçŽ%oøy7jrBöºi!ül ?;3Iè®Í&‰„;ý3¢"É|ëÓñˆo:Çx€¥Ñèì¢NÎÃÚ(Ïi/ßñ‡”æFùZfžó|*쳩PMN…ÓÉ°ùÄ@šæŒÖ©C<¾ŒU‚ν}~¤ªiœÿ2â[_{Q~ÑÏgi|Ûuþ×'‹¥Û„ª;•Lª)†çB>6Ÿ\r¥±˜ä\‰2=Óuk²‘àÿËçgAþ2‰ÚœDÛ‰±xj yƒ¡î†œÙfœ™v¿G¸—PÐGJ7d=dié´Ci¦Ý5õŸÁ=¡ƒüb”ÜÉ>"ÛïbK§&ݾt’¥ËpÒ.h9H– +´.;wv0ä¦qbž€‚lŒC¾½ÿ(;ªcŠ078ƒ‘†F„´Ðû>³òp£þTB‰Í))ÊxùDøK ™!/tòB¹ªî༰˜0ª +H4€w±Â\Zæ¥Ä3Vw˜KX¸Ýs=òº,’èÕäYXxs½ó³ 6ä†Y.[˜Þ¶6Ç8RÖÚ'Ò»€ ‹¢b!ʦæ Ô>MããÑv£´ÖuÕ´šãñ‘áÉ$‚ŸÅóĨ½Å}ûŽžF™R>—âY{’×sây]³PÓš«C¹’Í×ýÜÔé÷ÉÛ¬µµ³hkplˆÝ…„¶šÒêšìÏæ„ ™ŠÑvi/Mk ÝùšIõ…gAƒïñˆ$ÅÔk‹Îå|\9Æ*3ÕߤbµuÙØgM2]Œ€°°t¡Þó§æT¼ê Ñ­VŒÉ¼ÇÐHôý +ãeRÝÍg—}ÖÝàãŒlȈHáQßÆùuæ4ËÌÒdë%Š=¬ È–Ã]¯Ä(0çàlÒÔiH¶<ŠcÒܸ³ÑÀ—n]¢ÆhA0÷Ar‰ ¯]Š=˜éš4´ºª#ÆuˆÿþÅ!¾G…œ^²xË"éØW_œODèçâ4¸§E¤ª†SÜ%þšÐH‰E¥ +òRÄB;Ç –aÔ!+ñ¯áÙ¾bw"‘ÓiÎL‘YSqò€¿µòÀÓ™™z59YžŒOÈ!heC–aPOw[<7èè}P^üõ+t}„ÇÙB´˜’;æF0eÛª‹hY(ŽgIÛ…)PµDÀEUìÓ°ßeÁJcZ?œ™¨`ÇX*ûe‘×hìTÇ´Ü1˦\FkÞ%7š É´$c·¥ ÏjîƳ_‰…„Y”‘Ík±èZÔw(ÆÜöÏ0xý7À£)áQÛx4ÀÁÙÀ£ëñ‚º$Å æÓ§‹·,Ý®(¼},KÄ][Ö°¬á“ }ÚȲ¬ñè"14ÈùµÐ $‰îz¢#Dšâ…ïPÃdRgðZSꙦ(|©‰^ œtSNæ.\£’’¾W.Z†»`¢Ê¡³p¢2.;—”n–ºO"|ÄœžÃÂÛ ßêatíDçË Ë„ÅçEF=JÁÔ|+A™iIŸÒŽò Pœê×]è×H<Äu:ã5OdÊc” ŸC¼êR¤ÒY ¥#ïÀ +s¸ô÷\Ãñ€W/§h"¤î UÒ2P—!¯]‚¼„Ž¥Àë²c'à™K;z ©,v-ÃK©¸€^áJv4…*m@Üun`ÒqÄqèȰΠäì &¤oqTK9=ÃØ Ó«Øº¼ +ßICSÏ…—{>Õ–÷w¥ržå·&ÃU¾Œ¦©F{u˜éê@ä¤_ùB*μ9¯žs,@ôÏ ².@œc¸p˪I͇ùb!xšzÝ#züÃ<εÊ&„[º¬¹ÿ‚Oè%B¤Ã8¬©6Á:¡w Re‘2š +CØ¿´&±ÌVŒfDõ¬%†šáÐæŠbŒñ0{eèõóQTfÿ£½j{ãÆð÷ýú¸n×â›H‡’ØÒ³_ìzmŠÂulÃ×Ü:q÷ï;3|‘HI+®Ñ"@¬ÝåhÎ<óÌÌxQß[f<Ý=í®–+*' +C/”I‡Ã¥ÇÄ¿Eóø[twÀè ä9ÊZûB÷äíÑ Ïá þH¢ÜâËcéN…%à¨L½˜×g ‰6RÈ,ã@ôVr¯@Ûn°ÄÌK… R!r©è +©0^*ø“¤ÂHùÞ¶qž­ñ-’^þ=® »æ¾‡/M(·yœáš[Ó¼"ðx·:zyÑ6w_Vþâiaž…W(îN6ø+4Lˆ«[˜ê­AK×*üŸÌƒY·qÚ4˜¡\³~i;fÜBUÚÁ  ©¶Ã¨m«ºt©\7 ‚vfÛB̓O'fÁÇóàã‰Yðé@ >”Љ:—`ânQP!ž0û f8aö'Ìp"Àì$˜ñ€‡Ù¸MdèäÖ*µ‡³éÄ,gã‰yÎƳœMJÎÞ¢¦ x6?£˜“ÏMÔ& àMoaÍõd€ÿãÄ©›«‹Õ/ ~¨7ñ …=À{‡ÀÞÑÐß±‰›øx[T*‘îÌÐD‰-ö‹Ò¦¿½M€z›>õ6}¦l`§J6>íϰÌ3Ü¿ÅÂ[DM c“í ËºÌ"¼Ýû±§ýئýÈ&ÂئýÈÆ—ÆؤýØDnµœ0Iq¯"c›åŒl*0²YÀØD,€öyÛÌ Ù`7ÐNeÜÔ(a{*¶ô3´ds€ŸA•—~æLp3†‘›v&“Ü$8À&’ ´êƒª`Âf™0vÉ͚ܟÐÜO êýdÍý,“ ÞM–ÑÂÍ" êÝô$¨·I$ ™˜¤6Ë$€Ëvî %û© A½Ÿ,£¹ŸeÔ»É2Z¸Y$A½›žõ6‰~>L Æ6‹$PNÁ½FCR·—#?Ë$8ÀO–ÑÜÏ" p“e´p³D‚Ü$`Ià×ÎÃf‚ ›etj+ÕD§ÚÓÆ~*HPïgÑÒÏ2 êÝ 2:r³H‚z7= êm üºyLØ,“@ª­²jŒýT ÞÏ £¥ŸeÔ»dtäf‘õnzÔÛ$H¹uö°™`Âfq=Û,¯Gc›ÅõhÂ$ ôÑyóãG§W»»fýáfs|ÂŽÎ^¼:n tšŸ~z~ü¢Y=¿$Kü÷ŸÕÑË‹¶¹û²:ºäÿ‚4—·«vÛrÙ\^7xjáé{ã¶Îák·¶5°AÁ-ª—¬þ±¾dšoe³~öœm8œhÖ§' >7Œ·Íš³ŽÃÖa¿;ƒ3Çfý +Èìž$>Ð{à—go‡µ¯YÿFoyÅÖ4ë·l£ðí/Ùæ8÷š~qô®®Yÿm‡¯™Öøó%—ÞQ‹_¤¼æ‚Þ^Ÿé38†P¤~†¯$žÿçå_W'—«“3ä0Ö7»Í»‹k=Š5÷±æk«èb€ñi:ÀÚnU +ð›·Ìn9^\ãmŸ±pWÌЭ-~×Yi‹?½btâÍëYÌ9?º!fÀ¥B] äÚ¾îlñ”Õ7Œb~v yˆu‹ Ç+œ`R:Ìe0“ë¹ÉKn +㶖+9Á"`@ÀsFYåþö4:&¦8BÉ;dàÛÀ¡÷BpÏ—JܶÀmn3‹[mn„ 1R;gü„PR襯 bjú.Ò!Ú'HŒZ¨n•ªž’f JÔˆPß·²ƒшò7xè\©·TŽnà–-¼]N·Õù—hoM‘À¡1“¿° $ö%{Å@P¿2cáçg§>ç>Š$3—ä[ó¢€T©fqfù~ÇZÄñšÁºyx÷–@)ªùà +.ë‰мæPW1¼ˆÛ9óÑÀ<ë.˜#}ý:~uZ'ˆÐ z(Øj„o5†®áÃ÷ï¨=.z94­…PAË°ˆB…I¤`‘à7·[ Îü`0uðЬ¯o*ª²\¬7… +%Phã +XgˆÐh/üù=tµ$ Çä|f9ÕÅÍËnqóH _]}-ÇÈù³•ð‡ g+ŒQmÂzŠàÀÅ=DÁÝ|C”àù+ó¡tT«WŒúŽZùWŒ3—˜»B?»"æ\„˜ãÃ8æ(=†•ò˜Ë +… +º#É´ +nh+¡˜Š’Š’SP°€綀r,|P"R>å¶4i 0 ¼‘- ÙEBvSˆ°‚­ _§ª¸b2ðOâÇû›/•¼r{x+SÓ¨M ]>÷"–\Ý1éIäãCd[€®­!ö$þ|èa>ÒÜØ<\ác%ºLò)?“Ä•Ðü@s‡0ÁÅåïDIƒ¨–í¤Zö!1¸2CãD,|øÈHŽHv>N7Œ¦±ù¢ÍɲR⨠ôÞ¢Ís…"A{4”©5VŒ„ï$ +È|ÑæPJÍÖ&@ÑfoÑæPŽyØ%|Õv„çè`1:óCJŽEïRæÊ5‡Â™¥©îÆI‰5“$lmK#Iœß°“OýÀüŽÒ¶µ+…·j×N‚M…Keó õ:?y~¥±Ï?Ð|uÅ:üó†¬7FñúÎTþo%bSUh\ñ­ÕFfHk+m$¸û'€ð)SP…à7Üf}ç+ìžQ~þÀÎî[&Ž^§º»—ÃyT€È’uŠÉòÍ^zù…Âo8ûžßFàøýîj[d=HÓ>U§²ðýïtÊðRbÿÔ“ý³×©,n¨S$PVÅ +„oa+©ÕSjxTÌIÁìUjÈásUEb#Ÿ(CÙ¥;$ƒÉŽ…+ê0Í1¥Xïeq*.Ø(eÛõ]Œ„ïI‹õ‰¤Xz…Ã)’äOüÆ·ó.nmµÌ])30Éi)2x•2cFCoUp"OqøV„Ïß®°uáLóÈ jm¼öî°kWª+Eqk34µ×~¢º*gà!^üý7R¸§¤õ¯K“¶#?nLH +:tÖ­ãÊâ|?òíIƆe¾â'Â0ÆmmÇ Ÿá4Ï*ÃøD¡Î8~ÖwÕ°Aª°AF>Ó]F? Ý§¯È¼Ö=¼‚®Q…Þ– +nz»_.3ôB(ã<È9¯TI[ +¶ˆ “ éurX„粊Ž¶”dWO;¹z&Ìnk!Ò³ƒ:É+(D'}ë¨ @9YWNeÊB%¨¸ñãèè°Mz¤áŒ;b‘`_]â‘ÁêÈÓ¡O‡Ìg¶Twã)&ã™°ã´°CyËPÝBõÕ­t¨nx•·pTÞÈ/ìEá—k@Îm˜´àÚð¾öñá•‘EmU[ý¤ªÎ³òÿ¿lÙUöŽ©xs܇ÛHî:ǦL¼Š‰W{«vèz}.ꪶl" »g¬Úüš3«'˜ðê‘κªŽ™h®ùÖXdサÀÃk`hë)@Kè=4)\“ü¶´kð‹³ùˆŸawè8ôçÊ—î‡Ê2uCŸ ¯K`¡&AóBQö5éU^a5_Œ4‘<´òñ°ú=Fø¾ÚߌI}Hsue{XPǾ³ØÃIIGí£ë|Š™ÇoT¶¶>aOu¢ŠB¬y×eà*')W¶ û$Ÿì“} ²¼^V +/9m”Ñ--­8ô{‚Ò> +endobj +84 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +85 0 obj +<< +/BaseFont /SENUTY+MyriadPro-Light +/Encoding 169 0 R +/FirstChar 31 +/FontDescriptor 170 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 171 0 R +/Type /Font +/Widths [484 219 0 0 0 0 0 0 0 265 265 0 0 174 0 174 +351 488 488 488 488 488 488 488 488 488 0 0 0 0 0 0 +0 0 585 505 570 647 0 0 624 0 0 0 0 448 778 638 +0 502 0 505 464 0 626 509 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 214 423 212 819 536 +532 552 542 295 373 309 531 452 722 429 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 174 0 0 0 500] +>> +endobj +86 0 obj +<< +/Filter /FlateDecode +/Length 5650 +>> +stream +H‰¼WkoÜÖý®_q?î¼ï“$¨#'Ha7m½ýTÁJ–d%–宬8ú÷Ç}ò!p…¤œå®ÈË™3gÎœ9ýËáËÍÕþâ‹øæ›ÓŸÄéëýãÝÃñí·/Ͼ'/w'­hmüßZ#×'§?¼mÅõýÉéNýÜ +%vW'¾éàø¯kœPÊ4¦w½Ð®qÎà ·'›^î~9yµ;yõNý/z ÿv¯O¿¿mÅÙÝÉ?NNÿŽ¼Þº›ËOÛ^ÊÓ7ßýx&ÌÐÕÁ|篅ŠQ(ŽbÛ6mgÄîB„‹¯BµMÏèW§û¦m»û÷ÆÉ­Ó›FnÕx±1ðKÏÁ/-ä³Qr §mÄ[¹õD_­Ø\À7…~€ øó><~¿ ‹_à@øãüÏî¯)÷å<û"ÏÓÝ.@Û†|ÎGq6ªÈFéÆ ­çlvr« òÒ7ªø,•k,E§ Ŧ:LöVn-~îá…xÀw>Š Ùã/wÒ6ðÈ'©žÙèáIG™¦›s¸y@´EÈÒ]7RõBâ}ÅNݲ¨cä9Û¬]× E¨7¾iÁ¶x˜FÃ`m¸ô…€û¤PƯ0õ=BãŸßO‘;²CEƒÒèŠx†iCËðAè µÂJ70cór¼ÈžÈ¤ßã¤ùë¸DÔC¬óÁ UNˆÒ½Ì­ëË@KÃf¹DÖ"rïCX#7Iµ¡"ñŽòUäSfÈ^+¡õã>» ŸÖÆP¾~ ³ƒÅ.»¦¢kb“¨,¥‘G~âO‰ˆ‰-F¾ZFžÄÈïdÙ9¸!é\GW–û¹ËšÔài›7LÉ*yØ7+íjÿ  Ö¤uuÛõ5œ!w¿¬8¼¯Âع~ðƒp½EŸ*õ&·2¦½ [Oì¶é¸È[_a›i|Þ…ùxqˆ/œ¨uµ ­%þ°¼äÒø­,ª—RküRmº]O¨Í0Fá‰4‡ß畦‹ÄVÃØA¨†›&ƒ$thì³Çï‹»²4ªZÝÝ-!è<:ƒ€`‘ÝWö2“¨JÃ;§/ißä.мW°A|1·µ… +NCÑÂrÜcr‘8!|ñ¹Ëô5VÁÝ/7a~pb×Ë1äPïV¬×LUÄüy«…%™rmÂ62yí¢’Ü£ +xQ’ÞÕÏã0Š»Ñ(žÇ û¢Çwead°“ °³c¤ocÖñS3iBKÊÅãI”kó¥ËÅ.?^x¡"WSz…P<Šs\vkxà{ +·^õ/Ìbú›H#4Ÿ°úu 9V¢Nž2çr(/»\îÇS4Bçk¥êF+•UKŒé]a`îáõ<ÛzŒç³¤ù¿n] Âá.†NN›ç-U’/’1´,¯­ï´Ö²'êEŸ§9š+v‚ÅÐ*w¼ç‹ä•d~eª> ‰.55·¨$}T’®T’â^C?=ŠdgG0EáJö Ò8®“ŽÜ] ¥óÜÅ+ Woƒª9e|Óz#,lÙÇ}¢û‰œ,ÅMO&œæ†€™Ýø <øÚü‚ãÝîPÏÃÎ.©°¸+-•âæ`·¢OÛý~a,¬ÖWlTŸÚcšèsù€gDiF\ØdCÖÄ”[‚Çà…&x þì[>å!7ôIÚ€>=S™ñ<”aµK»Ó>L­î‹aÅ~ÆDM4fºsuåÎÅ$ç…¡Ã4£™¥x·a#É»Â:j€–ÕÔè—¨auᶟêØÛw«Ò˜)DÑ6a€yÏZè‘dvnE…ð‹SKšÚJÆÞH/„´Z^âòõ³äHÙ[.Y4º®dô/Glp ÿ$¿êzöŒçB=šftXgÎå6Ë#“ ø]n;Ê%×zbþ×’LH6žv‰dSöã$,q ôU£–“wÀòmI Î¥âéåK ž«VlQÙy¤A0c‰¤&GÚˆWì9~'ö‘ª·ìêB A¥nfN‹Fá-ˆãòÒÅ0¼^ð•Zá~j¥,E°vä¿Y8Çü "Aþˆ¿À³¯‘±@©ŸðÕpÆË{ñ‰ýLc;;X®cŒµ$Ñ5IÀ_,º´àÏô«Ùb–nazä‚ð~žçÛ‹Uô¡Hê—Üã-ò&›çI×Ó3ßÎLÇ©×âjÕ—#M=gÈX±Âp/–Žd’‚p3­Š-Iý7±®J¢Ô&‡rõ>ÈL²‰¤ŒCò¬`øªä1HH9IÆš(ék©fJª-ÐÌ Ca½¿f嘳ÿ .‰KÖx"Ë™½oY|?µšâZúê¶Ù5'$½;Žˆ}| T¾KGÕc1£F¤:Ž2#Þ÷ðÚM +4*×òt§~†ŠÝÕÉ%Dì.B‰±E¨Èº(r×5mïC‘â‡ï†Ð=#i"6´B¨pt[ÇYñÜ$VîeX¶.¬ZÁBÄÍËcz—(¼T+jéu9º*Ç]Ë)¶!=·4N‡¶ðƒæìÞÕú®~d9ª¥Ä&À®# Ut!#,ž^ô¬Ó\bîÄÈ»°d“¤4;Ô¶x¼\ðôÄ)ò¼Â¹ÍÆ §LWøL1¿>ŠI£Š™5w“|5d•Y¤Ž…á¨Cîb\=µ¥v¤Z%çQ3êW&šnƵñ5<¹C•.„f×5vÔ…Õ1mÝ]S—èˆäü(9œ˜"™Œ­&Q‹ÁÞÝÊy¶(WŽÀbÂÅÿG{•4Çmcá{~Žb•) Àej*—Ø•ÓÌÁ֜쪔-·ì$òµ[ÿ~ÞàM¶Ð²rê–ÈÆòÞ÷¾…ÌUØ`ˆa%àÿ¨UÕݯ#‰:ÿ°&ã¶@h„·a( üâŠu§~~ }@]BŸ²çÑâ bˆ6Ä’·}-¬ «°†“ò:…·î—À×gŸð+$ÇQPMÊ$2hî]»ñ™×Mè9†ÇÂX/Q§¹ÆðIJÈq½ÔnÆÍòÁÙ¾%“Ïêð>5§÷ÑLÌZr—gÆ”¹Müï„bÚLµ-üÝ…  £5‘+§r(3²0‡µÜ8—¤›·Ð œ7F+‹ÏŸ*œRØ-’@ü†{:ßcç™'¤À¤ÁÑ›O¸Ù’V°°X:‘m¬ò +Ë!zö‡|L†ÞʸE~C.51’å{Eù øÉKãeÂÏ›@?²M –ìLÚ€XÝ=ªdáf–Ò;–Ž:`õ] ,°sÀêÀê$`=Ãse|a1ⱨ+Û¨O¥8Ô%\½Ó2ð¶N†ŠºƒhˆóŽ¯Z"<éX|W©–ÁÃŽÊN1Œ/yæwåjz­ÕâÏÚIjXJ´ùÒ°]¿N–;½ÒòÈíWd"ÃÍÒóÆœÖ måçÔÌ\7ü³(Ÿ±…¶0º£6ºBaæÉî»41!ñ@Êñ¥’¯·ÒÕBòš¬\+3{sLšë j8OÁ¨–ó†çÁ@\\ù²VÈ»Ùöõ#·»õ0Û˜ç¿äQOf +úÝÁjÙÀ~GÈy);h2aÊÚS™~ÿL¯Rky:þUY¸±(\wî ” ¾77ïzúëËμßÿôô÷ÜÒ\\aqáþx÷™®>ëÐkjàz¼ù¿»®ë®*ñ¤NÖLÕ,ל|Ýšsy+l‘ù¯cé:rÕ?hA7ôņ¯ÎþƒCÕkÿ¶t!‹Ô+njƒdGE²{I´Ù·Û!).Å\ZÊç,ùþVLcÆËF!‘Ô€©¨ +!¾;!‡¸€"Ì'ãÂÛ£¸(׬ąwÇ…Úðqqá:~ųiiŒ?7#¾ðEÜì¸j[S² /=­÷M¼•ŠW)“ŽØøpÌŽ†¶†ÑÛ6Ì2·ø÷|`— ïÆvÇ(ã  ëtv†}O?ºÅšµ  • C}Á`Gúrð‡ú ˆÃ(—X-¨/#Ò‰ÝØ› Òaj˜¹Á/ž,&¾MÌCÙÆ ÛÐ{ŸaAø0øÚ,b/ìb’ŒépÆ{ÁxmLJÇ";A1Nïýx´÷åšµ½ŸL8zÃWgÿk9ÍOØY¹»äÕ,€i¯Æ¬¨Û²é@)^J¹â¹pvàA1Z´’o•à£å)ÚÀ° „"Î~ÁõÉ ³Q¼kÆŒµúXW6Ê)“E:%Ë‘ŒäpF9ü(ÔˆbÜbÎru Y'1Ôüà 5LçýÉ( ÝQ”–kV¢4ØjØ"&µõ«³_TËcÈJ†‡àiØþ>1 '”§ÞG ¶ —}ÃøH+·M[¸ô1YmÎÃT,•ç7_bö¾‰È†*‰«„ŽGäJ´¸‰Ç/Ž\á-û¼jIj&T*ÑÐEw¬î߉\H¹€ëdAÙÂÒðŽ+P;ÎP=ZÁ.k*üâHèÎW¹fí|ù‡«€ÚðÕÙ "¿Ç˜†õñQ,BæÞ8µk@¹6ÆgG~µc4oüŒZ‚óˆ3iú¶±}qÒ¤c²eR%½œ¦×§!·°­ç‚´–Ý4»P˜Qšˆå¤zF»x]ƒuqÅd”­Óž—èD½ÚåQ˜?ÁPÇÿÛ¸ž@ûjT™S±aÜÌß#Ëbm1ùsJ–ìÿ‘àÕ;ƒ|áÖÙBÊÜ´’ÑŸ +Êl)ÿ—Ÿ©°"±£%„¿øF·H¦‘U#Š»x·9Ò(†!·ß‹²È–EX'¿(A|`¡ºØäÏ}3•1GgœéØr™Ã[R*ŠK¸†E¸½éñO+‚°ðb¦e…‹>ïÜ´Y"2¸K(ÃQ´<Š"Äp§ehÐ…Ë'ËÔñÆ<“z?à ++¾·O½¥I1Wæ§BÏb!Ø»Qà<7Ï›±(ot-1÷îÐg.øÀBáÓÀ5h®²›¤;|Š.sUÒ…$‚!,yTÙ·ucl¦Ë¢åÞ7DDȇÌ,-sÉ5mD\•1‡"Q*Q2–(éæ-”t=p’õùÖporÍzžÏú%’è±È‘q0êë›ã¤€:¶ËxXÖ Ñ-¤é^jkFÂÂSèAWø·GdÝïPö;ä~¿ÝæX›8ò¸©b¹š ãˆÊÇCxÙ …¶F®¢ÿ*VZDA\Ç«ijfºûù6 ÞíÚgÏ ¦*ÇvasʱÑäÝ<™0¦f?1â^6ÔrŠ‹—ÒØ[ì Êt>IÉ=÷€Þ»Ãé¡êîÁzE³V‹fÜKª + "ÎðC²0ìO®ÀnFMPïw¼ Ï[> +ùì$ëN„*½äen€šÜÌp ×> ++½mèƒHWšØñ.tZÎ!¸jâÌ×`^Ù'ZWË?BIå_‰•6ìúQtê?É¢?/‘"©1k|e ¥äã…øÜx;r‡ï¨è$Fue÷¸ 4Ð㬾¹Í§ç3Ÿá +¾ÀŽN€1ç•SëÊ=t÷•;8…vB+[g‰_¼ÝG™‚ŒY:µcùE‘ã‡ ðŠ³’S»ançZíËûP-‰ èߌæ(‰pLÚ8M ¯Ùvj¾ðZT}¢ +endstream +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 5802 +>> +stream +H‰´Wio7ý®_ÁCÀÓj’Í>AI ‚w7äÃzaŒ-iìµg$Çq~ýÖÁ£Ø‡Üön8’fÈb¯^½:}|¼{¹}¯¾ùæô¹:ýyÿéöýúöÛ'Ïžª“'»“ZÕ•uþß4N'§?üR«ÃÝÉé쬕Q»Ë“¶êàü×U^5CWõmÓ*ë+ï[8p}²ôî?'ßíN¾;«¿ÑüÛý|úýu­žÝžüãäôïèÀÏû›ƒÚ\Ülx¢OÏžþøL5` pFá›ïÐ Ã^ì‚ÛºªëAí>*cø˜Q½¯j74ª³}5 C‹¾ük󽶮2js«©Zµ9ª ÝTVmþÐ[S9µÙÃO:q­ |ÿ^Ãuøy…ç{ðO»Fm©{8ÖCÄ›7º¥ÏÕkÝÃôó +xþ%Þܶø÷kü Á‚­Ñô[Í–nÁpàF 7.Õ8cª>D·;µLVîô–¬ƒU‹îŸ+x°Æ#ûèÙ6 Þ=‡ ~pMß4øâÖZüå&8Æàê‚# šÝkçÐì§;GQy|lÚ" +Ûâ‰{²Ý¢«¶Aã÷pÓc‚ödË¢­_‹ n +û-º‚°)ü{ÎÉ€9p4ø–RÑQ*èÁ=Å ¶Žúß»Ÿâ–Ñe tài†¾ªÛÁèÙl%’—í:i@h€ åé0sæ3þ †Wäó©¦VÇ „/äö7MàBœ41K”cQä„ãTE 4&2º5”ôO²]x¢AŠáKÉ膷~׎ÃQ·!°#¸Ú1<)<¸×–ð­±[se§o~â³#0\© _|‡¹‚ŸÏ1pý™ö”°šºÌ2¶Lç8 wxlVj‡Î‰ž?צ#÷bnÇ]qä @ô6Í:d6k)à³™¾Df¿„̺®ü0xFæ2QÍñëË”YO´¾Üà/–@$øpZ«Nzt±@° îFvÁÝ ‚S#q-þšIŸaG±[ ¾7Ù]¦Ï¦‰¾¸BX6Ø`)adEL[4³|z/ä'ðæOÌl'Ãûðæ‘ã¾E‹w–•ÐÝ6ÊJŒ¶%–j;¥¶‡ú$–›¢¤iB.½ ¾ŒƒCpÄñck™¬W“Evµ«1¸!ôLø)|~3&ÉzÄQnBÕäLŠ‚:`.[9ÑmG/irãJ±ÃXªœâ-‰)Ç–Æ2®CR·‚í$ŒÖ²]/ì¢B4ÍD;[™Ñe&ùH9.µNA¶<°¼êjpÐ8RlÿüJùÓ'ùCä8žÅ8¯‹^– &"?g¿ŽŽï΄ó?‰A”ÇÜT<Ù™dSŽšøêòïŒô^Ã~šÂ¤PmJ}%‡XìÂ:ÑúN¬)x•“¯˜‹,±•]ƒsÇ—­81–[¤?ª¢øÎ+ö—?Ï•¦X<¦#ð’o_Ìß!•–i0\:;#¬4%³à¨i'ˆÁ¦®bBæiHT•¯E(…•!ƒ`÷š™kn4×:†zôˆS¦ Ù´5Së™×xD¨é«ñX¹jtõŠÈZIq)‡0éyÐ6N¬y\!Rd•YëšI¨-××izÛ èºù9t¯é—[¥£0ò¬<ì+. [®ë€)/®²u|ØŒ€+Ç<Ÿ˜X_iã$˜æÚlò>ø5§MZ¡>3Eë„[³®—k]°Ç^æšìŽEfYG&|sëD$–-#U\^YD+¡k—¡›àe±/ðÅ"|» ÌÉqZR‘ÞʪNˆYÑó†U ´÷<«h]ƒãÕÊðtg^kÑ%+µ{­ø'Ä]CPä6G^‘>4–ÇQ…“"¥$;MHoq©…=Ò&!CkX3ìDÀ$#È=&NšŽ ¼˜ãnû+/<C‘PrŒ¼'.“G wñ|zŒ¿>…¯¡XØí ãAµ>àE¸{°H˜»Ù‡B¹ ¼ÇR–Qü˜-¯«RSTiWs‘j.õ ÄçSÕ]ï¸>gi~}©”þzéV‡;1Ÿãecaglig”,ÐI)—ŽÂ]‹ŒýPÏî#ä’NŠ–- a9KÕ8^ÎXu¥ ë„àSã„añǬˆ:üÅ’ü€“Ÿ/nEl ê|%Ž|91íÂÚê;˜z 8R'Åì]Æ9DE$Èn$á_lЄò+$¼ÃïãøàŒ[ø…+վϳ¤,Vª*±$9O“[äA‡ ÈhñˆÏ?Ê “ÍË7ñÐhÚ~IåZ„½ø±„,1£¨Œ™3µœ +´9ðÁ@ñ>EüÃð`0à4pÖ¢¥-Ðb°Ò‚zLX)’Ú­Mêt[d,ÜA²;9âA<ã…¢PZ2!I÷G·¤k²> ’hFÿ\ùÁ^`82㦡G¨½†‡Ú+ÒlœýÁ»Z[l’¹U¢ÓCwY£š|ã˜R>ƒÔXié6uúùZ˜uËË×°³®@ÙF­[ú’ìê…Ö7й]ß0€YÛSéÇs‘ÓJ䛀è6ådå„JÚöauìF¹£;«‹DI¬œò榧¶vYð’ðM×kªFó Oä1ż7_<ïÇKÏë¸Á2’Ò¬äÎÛŸ)!õp¹÷æÅ«@hü[Šèv¦oS7Æöæe,ú{§‰¼Þ eú,°C+ÖR¬?”ÓÎ/àÏÏ Pûø¬mBsƒïN¶˜ÓTZÏ•Èö^ fr¬”rn“zš.‡¤Lt3Jeå,ts;a¤­‰FIŽ2­xJKB‰K]TÊyÂÉÄçžT“Íò/y¥\ì¡”ñ.l™ü1!êGŒ`˜Ȭpå—•àéëÏïb¨nÄlÛ–'gŒnº`TÒˆ°wõ<2gÕŽõÞLP$ªµ±Ã]PÃý2}N·ÛÇ”#¿ ©ˆ^nð›5jø,#ø++™'MªÒôÕÚ²™bO3/ /jØþuËÛýõD⧊ÚTÑfè*Ó5¡¢>ÌÑ +Â$‰ì4é +2 ?@¬Ÿ?jjïMP¼äÅõö6×kM ØëžÙ”’E#çö†ï4ÁFžxƒ—©Ãô½B½tsà{{M­ysÎuh… 1¶¼1‚¶KGëriÜy»9 +5¨¼Ço1‡cô,@' Í/Ûm{A¨yçŒó·N»lÑc#ÐÊáӖçÍÃ'Íæ- ,ƒ™£‘ÑKîÈ=Ce»˜n£ë·<%­›!தežUÙæÿgý÷y©(°R*‰RÑ.«í*—ÀuÐ1±MT*­P*6.«nvN +ºísfØs˜¯b ó†FÞÁeúÓö¸òüþ˜7Ñ4ƒØëW;Y¿, ‘«ÈœËšÅÅX`þ*wÖ·a +ý.BÅ.Ò¦+‡”Ïœ64Ûÿ £·ÙMHd…•Hö#uhÛÈÖ0 rωìh°ñÜŽó÷)ÐËDÂ÷âêñ• ¿…¸©LÏ‘vÀÞS͇^è)Ž)GæÁešJç”Q^TíXxX¢EC˜Ò¼9—ÃìgÑ9æ–šü#€<Öm'ƒMr`5Ù]•KÄ‹·`±ÒúM¶mQ ;ÃíOs0SŸzN·;XŠÐ‹âÛOè”|Bas*r¨à(V>«Ó1 +ôƒ0&I]sFTnð„‹4Å¥jÀ— +3Hc£cÔ‘ó™×ù¬:na§zÏ9‘þØl¶›ÆÔš}GEãx½Ãù%vˆ»1¢»€ Fx+æßÈûœoñÌ0¾>‹€ïoÜ}z³ÌÚkªU£,V­Õ¡R°o—`L5¬¢ŽñáÝ×­CHxQ +Oü¶vq?E>½Ä¦MGB¡q@À`â·gÉTO¤o§1’sÀWŸáÏi£—äcúzDŒ%ËI·‹šXØÙ™a.jRËvÓF² Qˆ±]üâ•Š÷‘íví•æÍé3ׇÅô9pã³÷‹ý€ˆF‘ÃB/luwŠFù¥¾B’´VÔ˧ïÍ(æÐ’ ݶð驵ܸþBžÜFáEȨŸ¸[õh‡¾ßn¤)»8w­k"¨]!YfØ3RÎe¤’ËArÕ)1²s7ð,,ã÷–¬Ëy–³ÒIQ/.„îjĉ1=Ñx¶+¼~ÔzÁáÎHô–ÇÖz¨,¾Ý÷ +ˆ †f*ŠS€BïŠÂÛ~·ðÎ(¯°N›bv¤äµ½]÷ìQ…¼’üGÇV.Ï ˜8e‚'’÷‘;Üéò<è†ÈƒADŸM69ä”Êjá_(Pû^¡€V³ÎFöåß gžghE Ž§Öv¥‡ˆ>wm_Ï£ñüDd1+‡b{©Ii•á‘Có–™Xå…ÃK‹„­n[;ëCiOw î4ëãQôí +Jb¬Ô qp]*d“a¶ÈµÒº6‰@:ѯ¥ìÙ^S³è˜ñuˆ÷ÈTÙŒBEÎ;U³Ó¤„&W­ãIü„—§Ó Á‘Gø£u:0]0÷8‰tÜh½;P. ?zËÉ[‰&Br#D*t/:˜V³11«ÕÖm*…Åî¡ÍŽ^ ËjæÎðv³b2B§xÄ‘3T•”‘T°¨ÌŒù”}÷uNN{13ÄŽÿjéØÍ»¯ð78Õ÷€Qèk?3f2’µ…Zz ¶QøÇvɆ¾”73:În–(i$¾¾¸äak£/ÙµÀ{!|æÇÇßQ_’ºO$óÎF9|çLô÷&z¥ëv–‚Bê÷:Rð<ÔÕÁô9ÀÌ9½Œa r<½5½£­P\2F—Å’uÑ%[]à¶Ã.±¨­?¼ûgÄY²`žÂCWÈ•g±;¢ì2®²­"°vÔÙPÈø’â›ôõ­mHÛÈû^µÃ6u‹Ñ+¸/VÙra;VÐ? j,'üèhœÄ»ØHVqà §—í’ª6@c³ü@š|oDfˆ?Œ‰x¦ŽÙVyçÂOÄ¡ ɲB¤¡µÎǸ5¸ ÁjœÖ0% +-ù=ѹx%­cƒè´AükÆpXÊBèUÃ…}žp³·û,xsÆ7Wò‘ü¿ÈgŒj!ºALx´Y8óY ‡†,›ÖQqd¢8bÝþX|(~žI]UÜ‘®ä åXîèy²£ð‹K0⼎<¯TÓ<÷Éûˆºvä÷¾(¸BöaK‘«ïšbìp¬ ¡šE)*O`E,ðíæµ%Ýš2,Pæì&³ \cŠýSJÏdv„ÃF^)f8®Þ¸ o4nK»f Óöo·kã vm±d­]›êíZØ3çzëï¾¥ 41·Ñ(ÝD 9qÅ}%—42?)±œ6¿b;e?4Øî '€þ'fs›o³Î±¼€™[¥$º#~óFtUþÅÄI<ú†‰`­oZb½ñˆ^?°š¦W]‚# û›µ¶Bòpå"Ï­EìXÔ’¹S¦¬Ü«t6Çt6ï-øuÃçìFî2ÑÂ…´/÷ÄúFl§¯6[¦$>Êh÷Ž`?oë¹ötÐñ2ÇW‘¤ÿ~mÍ…¶!–>û ‘?·iï1xóèÇýÁj‹Úyæ¼s%tª +ø±Ùå>¸iR’st Í}V¹díêoãÎ×±r7l\®7âH«sŒÕ°X¥ä’êÐaöÕÚÏÓ¡ Ыb´v1Ö—‹'ÞuãaN€;ÅN/]“xøÏPÓl6T&$ªE/ɯ¼bÔŽ°˜%­{n±V'p^ãHTŽí×–³FCÕâ¢oÄ45^fïd’yà‰ˆ¦è–(Serý­£Ï+dJ¢ŽÐ/2Úÿhž›Š¶ÄĹTâÔy¤‡ÿ·á„ö³c8Qƒ-ÎJ6Ñ‹"¦³]J~h%«›À#ÜõlŠtc<úÌŽ[W‘>2„¾GË€W¾C=ò¨ƒÜʱP’û© jé\¼[(, ŽŽ xÉMú“”D®´ÁnE’idd…°À?$®£ì4è쇅 žˆ¬hUùºPÀy£²Ù¶Ziô¢+¾†ÓPj9-,•}Úa—N ÌåµËV¬.ƒ–Ì‹ÌÇULˆ©ÌA³=¶¼(Z0vnƒ´pÂú?m`1ŠQgG„XîÏåØ&ñVsœ&ÑUè4ÚÄ™9 ³çÓÿÁ®‘XF¶i*Y‚„ôOœzƒ‹s›À8žôëñë/sŽÚ˜$bmÍÈ ?bJ$;9²¯5“ÄÈýH(ŒLMÇF~0”ä=¢‡ž{ Ìø(é‚JËãh¬mˆŽ‰Ûu5µ©ÎG<°çý&D²ÁÝq~ãÏœkR½ùë{éJ>& FLÏÈ·” +à “$~¦PëbUUªö ÚE#ûáør®¼F÷„66Èçy Iyh“ò 4²ãA?'·äC¥.áYÖ¨:ÕÖ|zµæ¸nª¹Â´e‡‡œôqRíð_$º+pQ˜|ü,Q™ °Í6$幋{ |‘óƱËÔ»›V<úÿ¡‹U#¬ŸcÜ ©N·ú[\Îftœðÿ ·§îUŸ3Iž8 +\í"¥¶ókí°³U#°šÐ‡²œŒ¤ÏÍ1]kÆ®]4¿õnlÙ"¨¡&%84åaÿ+À` +endstream +endobj +88 0 obj +<< +/Filter /FlateDecode +/Length 5461 +>> +stream +H‰¼WÛnÜF}×Wôã4°Ãaw³›$°­là@‚½«öa½0F×(Ö-#9†ýõ[—¾±IÊtÖYðh†ì꺜:ujóbÿt}¹;{?ü°y#6G»Ï÷ŸÄ?¾<|%^njQWÚXø¿iŒØ_l~>©ÅÕãÁf«Þ×B‰íåÁº®j­ÅöLø?> Wµpþµ•J™Êt¶ÚVÖ:8s{°RµÜþvðÓöà§c¸éw¸ÏãY0ߎ6¿­ÅáýÁ?6oѽ£ÝÝ•X]Ü­~)7ǯ^ +kê¡«=ú€>*öqë]¬½wFá Jñ«*¹Öê®êûÞ¡oÿ^}’º®ŒXý*]ÕÃrm«V¬îÄ™ì*-V÷²Çï·rÍïÝJ8ÞˆÕGøßɵêñàµTV¬Î$d¨«Ôßz¢cÃëøËT5$ju%>ÁQÅÏàeC/«øUðŸ6¹%ö’_Þ…'ñæ/>B_ÎÅ%þ@wã÷´ÐaˆÚ`H•8–ëÞ;Ç/й£É?w䧫=Ýo|¦ä¨,9 +¬<ȆFwE>¥Vø=})UÁkqz! ­0ýˆÐxàrB—ß‹s©ZüéBþgûKÄÕùçàW-ã Ùaázüž¥z%s%pG8ã£TÐvPÐF×R1ò@ªÐ Þ%Ä$F)ø:Å‘¥*ë +#Js¿Ü²†ç)KËæ +„ü¬Ù»›²BŽüÍáwïyŒÚ~€ö5’æªßC +ñì¥Xf3]cçPWƒ/}oêbøžOÀ)ÃYž1qðäÃÅFÄÏ–£±Ä >Þ¥äêc8 1 +ÕùÒ5è͹ȺÒqGnX˜vPÒH¨ +'Îê‹'ˆ¯ß›3ŽÁÛoåÁÐ é`Éå¾LàyM)¸÷¿Ã Œ,ßÁ£ÐòžÉ¨CªõM.ýä8”†xðŸâÝJZƒv²$Ñmâ5šìñåâaŽœ,…U3Ï‘R®ƒp"‘5 Èf…郫#«1ßo¥Á$!ÂT°„/A¾–¡K‡*ÛYt¹ÄN'èhŒ4J‹ú´xÃÏ:à•d }7%P8œ1߉oˆøN™¹áY›’“‡Cò ±˜¦wR6š‡ýB Ø¿(Ý`0®ª®Õ•ŠXزЈär:ü:ÐI®-Œ—f¤-šç´…J9›ÑSšâFM“5j”G± Ïuõ èztg;Qúq³Go²Õ̺ìÌ¥8E¡ 0S·’/Œiˆå9îËF2ŒëÑä\ˆ 7œ=¦# +Ûf +{$ö˜ý ²§U3¹s÷ yZïƒììÝ»èÈŠ@«DDëX |’†:*¹Ä¹ü ²n‡—uŽ›S¼§§¤Î½†`X_%íàáBeÔXÆ‘Äc\˜oÄEJVj! "¶ß¼€C¾¢~Á¤"®—¿] ¢óÂ/UÑ]fw +K¨ç9](þڠΗ¨†xdï"‰Æ-KÓçà/&(i9hO³kËìçYu¢¹0):ŸJ¬ëÖºEƒå†ó™ŠÒ8Ãø ª`7°í¼òUþãì<©ô:Öš-'º˜ô CARÀ›…pSÜ°ÙU©Âl¯ª:"l?!.§dk6%óZ{-3J5 ŒBJç‹iõÓ–êGÑ‹óˆtz)ˆnÒø‘ç©$É +€ížŸÝÃ]òy­?Ú覴þ3B +ÕJ#Ád›2âÆN6eô½è31Ú§Ô +z’ô‚yšƒháMIe1#‰/.YsŞヲ9â*Š%/á¡·/p[DÛ†HîóŸ‚Ô³ÛX¾B\¤^”#ÁƒW²ï€S7§2^C2 ±î¼aBŽiDijæ›Q£Uš,…A3>›ùñ6ä­v,‡û@fvb›’û榫uºrY¥ÐÍGÅXèÆá&*%÷!LŸf˜—bÿefj&N„[¹³9Ï”í3;Û–—d41Ê)V1_p à.'Ù9C¦*Én +™ ÷ŠÅ +ðn%­aѵ¦‘páåhG¨v™.˜’¬À‘Ñ`dÊNE®8®Rhv!PlIAj( $¿íÊ['¹Ö˜ØQZ_cÿ³þj»/JjŽÒ¢çâDrãgj1”¬ùé1éäã+²a4cð¸Aj=èÏ(íº%C/ÛóNÐéMÂ;Ô&y¯¤”hzPGÖt—㾓 Ñô;)Í‹Ð1®FðrÎÐÞúFj*ÓËGŸ¼&OÞ¸ÅbÆåã¸evj™•{¦Ö¸ÍZ®üx|•Ú$2ƒŒ³‰¼Á’ÊžTm"mRr¹RM! <}6Kßy¶›$‚rY‹ç¦µ vØ9ø'D­5ƒî+Cÿ«ˆmÄÚYB2"ó\þ ”ìÈü2ÀµKôW¶¥ú«+§¤ó»(þ1 ip¼ŽþBÙ ø11CdÆùÆy[s¢ïˆ !9Cå<5åöaG*"¨,GDÕøuhm¨b\ú¬XU-mÕ>‹p³Uï!±½Ä$Bœ#2E©S”MÞ´Ò¢(èùjâ #g €t√óþ +³À4Hc÷ñ‰dÕ5ÈÞNqÚál´˜+ °òàÎ=Ýã:ˆé\¥­Qnk+Z73…l:H§m‡xœu®Í&YÄk_™Bûz^i —-0Qõ…ê¼Q… I‚×_Ѩ7à'Žäì™  ¥fÅ“ØûŽÏ×CL)¦­D,7±Ý»b\–|XîQ£,Ë™‹{<ù¯´wšÕ#×Ò½å^ê—“}œœv1!’Bçt=.“Z@69z’ÕéÙÎ ­ÆAé"2#–r…`sLNi¿Zø9Å»Äp`¡&á,f*ªW¶¹“e=»lZe˜éã^§‡Ó¸¢ñi‡ãSvÎÁ¸J{egÔcSš1öFZÂH$ÂPc@´Â_FŽeäPôšdaVŠ(I°òµ$ì{Þåv€ô4Êç"[ѶTù³“W7U¡”è™®Û‡„ç£~£~Iüž·]Gm‡Væç3ÒI ÇbƒTÓ¼º\ü«œìÞå ‘ª–Ôç ÿ­›¼‚ éþIßi‚)âžž 7¸kFÆšÖˆá~AóY·’Ñ ëþ–G46cà…¼s!¬Êå±1s°Â­(ÂêŒ3‡%R¥žË©&5¸ø@ýé†Îú•€1ú8Ð[”Šíë}¸:`áüß`dêšùES3ŸÇèk“+ÐO”þÿÂÎüÐÛù²A5g¥ŸµÉA‡6’NëêÐCû»$áŠÔÛ±‰Ü55¾kó,DU_’Õœö2½ËÖ„lu4l•—=Σnj]ú1ÂcbUà)’VPLŸ›âè9]ÌL箘_é‚Ê¿öB0õÜ YT‘0ýólø˜HŒXŽ눌´öÑ·óIëÏý—ôriªã¢ð>¿BK¦Š‹¯¤y.]P.{áT“¬\•r¤0•ð0áßGýº53âÊfãk`®FRŸ>ý§ätC¯ã—ŸË¡Øãé÷ 6¬Œ¸U`ZýéS¿Úƒš/¹<©`ÜúíŒô‡’ÚF§HÿNÝvÇÆO p˜‡º ô’ß—k¥¹ÎXœ‡òËos¢X¨-WòÃWôìŽú'mº˜8&QÄÆÔš^/­h~>~¢¢Xáçxù}ñŒ7:åQ·iÙK_Ãr¿Æ,ÿ¢‡Î;…7 ‚È TŠÍfb³¡ +±…È*H/³`Ò ÃÎæ©Ÿ“rèÏ×FãÝŠ¹N£ŠDù­ñØúkZTx R)]œ“žÀÂabT·¯4÷J%¿JÊiŠ- ù²§vúUeTÙà4iÔŽÙ5üçàsæ÷s¹(­ç)>JÀX!ç„…0·ehìjãÊéRÔÒ¥P»jÍQ6ÚË ŸDN>YgºŠ‡@wPY vä,Ôk\Aù܇ ç—ûÜ/Œ¤&ÒÜ 4·£ˆðVÃ\g[bM×kæÓT+Ÿr…"tùl¡¨ëžiÕ~}ÕcÇ‚8| ²lï±ëöá€\~gÊÌO 6àä¯W¢ysjÿp&hãò' –ŒâqJ<á[»H<]C}pîÌ´æh4¼+­ÓÁ¦7x,lÍX_OÛàÏ7 Ú¸È ½ÞƒÀ¶¼>yÛàHz0é+g$­Ûàh=|àÀâ_¹úXÒ·ÙéO·tø`xÛ©Ð@nêŽüä=ÝÁ {@.”¬bÿI&Ž‡eÞ †[ ^xÜÈØÆzp¨àg¼Q;kÄŒRÓ»â +sƒK ´½ yÒrà z5¤8ì¶Ç,(²ÁÝeÊÝq¿ã¦Fµ)={“M6&¦™ ÅÁ3™pŒ +´¨òXøÍfüÌØýúËAÓá—ÞÂÉZø´Çÿï͸¥1ãàKc¤ÏvbƒvÃ:‰ueWîÂÆZÛõ™¨‚Nÿ®X·Ïa4¬RìöŸ+™„DˆøØ­ðÌ´N ü²2r˜öbR P¯¤Y(‡6§ú&º÷Ä=å¥@p %lÉWô@͆–©ÎY‰No»˜G$z<õȉ#kµ–1Mný+Óã7X2ÜöÏæ=t ŠjÜ¿ –ð1h—U•1åŸjr‰ME‰õaËIb¡»6øöt€phsðv.ýŒÿ ›KâèH-̈ÉAÂ,!]Pë¯HÜÁn¢©êrDòb¦0PÂ$œ<áâÅŒ(Ëã=¥-·U´ì8†Ù"mMåØ>Q’7¿u›’a.#õ¢p†rÖyB×Ï Ÿ¬ [ÝÝÝw `Ì0‡b„•ð´bß=Á[ÌBóÆNe‘p¤*²Ó¦@|”h Qç¢&ÀNÊ)%[QšéòŒÔKÑÒ¸o9Îyž`=Æ¡„Ws(3ž^üŽ'á^ÀX%Š82ïÂ(Tã΀ °SÐØžV*,DÀ;`:„§×©ä´é¿ÅÈðVãj¥2åqµkKRñaÛI*Ç܈?TixfÝœeYKpFË–—>û#x®} +V–8n<’Éqæ$xÀq¨Êa–Lñr,̃¨ž/q‘íD³&å„{úOR¡ŒCjÆc­qtÔ ÝôÇ+•\¥–a[EJ)•Prm¦ÂÞ•T4$ŸŒø†oceðD|Éo…¦úeCè©é´Ëy"®¶Ue£%ÁüqêÄ1£óÕÝ®Hùha“=f>\ñC³à¹Kþù„‹vìöó+ÿ^ì™idÿVÒœrx†Cór›ðº Ø3ç„/ôF—õ†Ó|J+«Q“„Éã·Ò¸÷‚= ½qÈär`ê¤èÕºáø[[Ôb(Bô6jqoÏ;Oêü‡xµ×<( +Øá4vÔ6µ¢Ž’–T4À‘™¯Õæ]¼m澑ê=Š*©0¹õ¿Ðs}ôÜAç¸ØoyUaÎœ¥ùÏI†Ao“zš ƒlg=ÇQ½ÁÒ*?{5˜§ÐáÏÀ¹œëÄÚΈ¼d6J!òsnÏç:ý€Èé´«0+"]_ѸXJe‘"ý ‹LU+ËuÙ¼þŒNd3 w3Õhõ7¡[‚ù<Á¹¼*‡I ¹¬O/õÉDrÄ?£xÙlÒ@6ù!* C­õ­Ä…¶®oëDÓU [-˜ÚaÛçbô]IŒ£Ué |) ¦ÅŒ' /ö·ä‹cÑÿ€­µÊÖ@@h¬Z+Ål¨JŒñG,µi‰Ï'Øȵ93Wp¬I‹džYÃï6¬Ã–8J¬Ÿ-_S¤Á’C{¾ÏØ]z¶º8[é óV^q–Ju9²•rƒí•t“à–6áõxïŠøôé&ßaÍŸñøÕµ.#£bª©u SË‚•ôm#DKØ(ÊÓbB•z;”ÜÑlšjš!ÕÄn€lì}xÿpÐ ŽÿD­Ù˜wpßZ•áŠñb6Ñ$AíÎ|„«l¡ÓΣ²‚S‡§íZ“ÅÀ3\‹¥£ÙÇOÊ!îªE2æV8¿ ’Î+®¿hFŠ´ß.Ǭ9u=3·ÌXÍË?á[‚W©‘(RFR¬› ytGˆð»Qu)½G=Î{•ïšv‚ÕÞ„7¶4ö•É Ê^æ›eû‘…zŽò«þ_€@šÁÏ +endstream +endobj +89 0 obj +<< +/Filter /FlateDecode +/Length 4655 +>> +stream +H‰´WÙnÜF}×WÔcpS¬"«HA/YaeÆIÏÓÌ hÉÚb©¥¨%kü÷s·Ú¸Hô(»›,ÞåÜsÎ=|}wy¶=¹Wß|sø7uø~ûåæá^}ûí›woÕÁ›ÍA¥ªÒÔþošZÝþð[¥Î÷‡ý{¥´Úœ¬«²rµÚœ(¹xT®láø×–V5}S6F7ÊØÒZÏ\¬´.6|·9øîÞô'¼ŸÇgáxüôþðûëJ½»9øppøw ïývw®V§»õoŠÃ£·?½S¶3y¨ +#ú„1jŽq#!òé¥ÆóµæµÒU[¶ÚYÕš®ìûÞadÿ\}_˜n]ÝZ—N­îÔ}±Öd²º(\ÙAêš¾iÔê.à‡+þsYWÖjôøw _k<ë.z¼ÿ‹:)ºÒàé}ÙªÕu¡á·EÃol𩼥‡·k‹·ì +£ñ­÷x8ÜõJ½“×¼+jLjõ«º- …–â¨ðÞ­xW¬Mˇb=El †²+t…·œ+L¢ÂT÷ +¾¬ñêb€?÷êsQSN ƒa'‰|Ä$-—¾8Ãÿºôþ,‹O<ÃØð¤&­§à$…vA +VRp˜BñïÍÏNó€©SÀ”UUçˆèlYÕ}£ZÝ”mä@¡ÆÈ|— 2¤T?N¨47ÊWRpŒ›>Öä%ðÁœÜbè‚ä¾Ð¡Opg‹ŒmVÿ{~WIo¶…¶øý ÃîÂnKBc•uœÇ f½6ôûeÁý ¨…ð3…Kõ¶ AºÂ:>P§Y©s¤Z˜”‰Ë$9½ÑÞµ¢oVô­yUiÏCjBèjÌíh#Ó·Ô^HjĆ›DŠ …øs‚wþ §ÀŸ‡¬h4‡Átx;f¡K¢ AÔ @¤g@éjÛÏ ÙQâ«\wùóhDi’Kõ–’šKë13pUæ• +'¬ Õ`1n‹~hjÒºJléÏ'è•YœŸÏ$u¦ˆˆÏm> U 'Ê0Ï#À‘…8Ö8%‚cÓ%%JÞIõNÁÏ1Nn…K)Ýâ¾uZ*¿æ€BVøsMsþ°Pý¼+jz`"×› M«uºΞÛW ºi ‚Û*]j#Ùp'£E‰˜·Ê](KïØæDí•ÍÙf’9]*¡0&pbƒê8ì¿Ì¿ÑÑ  ºK%§ã/ŠÆéÝøø?{FX€½wÇkõ\è)J0‡QŒ”“k4)ù|Â_Bû:ÃïÛ´Ò6r©/ämÑ0¯³©Ë^B6w‚{#­ž±ià^Ë& -‘ -—¬æ’aH¿F›ÃËn¡ÉæK¼Âc~ɱ–ŠÛB~i~É7Ï…2ãôå2V» wâ":ø$‚Ÿaøµ9üfÂÏ…NÇÖË»IÖÆ+f* ÌñÈå ‹K6¢X¶~Ô’¥ˆ1Ïo‚¶Õ‰©C¼ß9îã°*ð¡¿ËŒP#FHSÝÏÔÝ)î.&öØKö.ƒÂ¸p4¸º¸º|¥Ê…‚'¨Ò¾Lð’y°jhÈÑ2W4ã岓å²[¾\öõ‹–K A6\ —K*¢ã=ñç‘‘˸\â÷Û1[Pö§¸LÚøYÁaf‹!Kh8JÊbÓÊKØc—åß<µ}VºŸ*Ì×Íy !ÿ_¬}Æî¹–Mð;µ£*Ò=¯”ü06ãzïT86ìzLÂéBaÓ)ŠžÝ‘5CËÄVèk=jœ‚hµ\dé9«5e[žÑó܇-Ì“ 7³ô(î”Y)š$_bÙ={.C¢Mˆã×Ì` ¢ Ø Ü8² °u&[]è¥.Œ½°6Ü°©‚% cs=:?o–ÓuÝKÑù{+Î(X³[ ÑáâU7žoS¹ä©ŠÆ~PJuë‘(ïD ôŒP±§Ñ3fá †ågÄMs¼‚àl°–x;ÌÑ%Šð,W}ìM2%Þô,–ËΫkÊf ¬ ºÌÀ‰‹‘ïÉþÏ +’ÊLð²µ×ãDå {ΘLv“Úo 6%K=0é¾Â¤±)/Ñ;Χ5}lñ—‘ÿü0YAo“­QÃ"Ùœ·˜™ù& è2dµ ÖØUK×Øn€X|z±-Ì\@lâ›s¢·s4ÏžèwÒS„šK<‚(³ÃˆMwÌ}Ñå&Yœ²Iè50Øxù)è^Z<à"D3X&–>7!k#[ÐÊ‚I–g195Y}j¼!ÑÞ¸K1 „8ü@£øyåÕä. ‚Vf ðßg}é2‹£/o䇡¾&£!I)™Ìµ j„("3ògWKù³~qi¬+«DØ­`©õ‘ß)¸Ï¶D><™#œ+jdÑæ¤ÐæìÀÕ„ Ò•oPÝ»Ì%ððtjQ0~ÞÖ‚º§zsìu”¾=#õ¢Ð5†’®.®·|Þà'“=õžs:'R{C?‹b[OyýÄŒÉtl¢É{é-î,KÀàªêEûR%ªuÃ}‰ÿ¶¼ahýôRC7œ–J¹“‹SÉån ÛÕlNgòñ5Ð +Ն谑¡žã´TZX=¿Ca]ênzhê¾-Ûª«¹¯ÿ£•è³¢‰lp½]ŧPñ}\¤RáujÒÅÖO +¯w'‘£”_Zâ)5EüHtG ”AEÏþÄd'ñ&4Íž$%O¸->~Î*0Îe°’±çíÇÅù˜YºB9¯CžWi3ìi3$Í¡Ý~ùPXÊ¥\Š“,øÓ¸tui#\¤¹{Ñ ªäÐh‰ØÆJ¦*áeÈcMtü+é0¬2Û ·9ð~A¼&@;êh(^ +K‘½—úÁþIÍ<öÂOÙšDÙj9Êëáhèq EÜ4Ü?Çvz„êN4Ð2'ê‹4];ƒMØ\bþQ™]êKa¬»ty•5Që'V žH9*øѤ«ÞÈ2ã#½tÄ5‘l/ÕÒÅ$AÙ5=ñ‰L¬ŽôÛØøµHßz}—$k<§l‘»Ñ ?¦~ÕŸÀÍ·9ö¦, –þAÆø%»ÝBØÚ^ý¼,äà•a¦M©oˆ™¤#Ô \p@U4Ö#°g/!½OW›Ñ~æ%y…±Y¤Ë7‚m¢a¶:ÝtÓ• [5Yw&Ðç+Ÿ±ž²Ýüï%XÃõ.²¿ ³ÉÜžoÅ­u’³Ï0§² !n ±%ðXJlmŽ¼vΣ5UÙäðL*ªTéH¬ÐÄÐxQ:žœ_¦Khh.¡:ÑHG¿¿RqGk´_rQ¤ÜÄsOú‚Äsñ²îO©U¢ðhÓAç¯~H”89l‡’ä±ñZªÌ ¨Œ—x 5ÖÒ{o/xA›žÄÌc 'q!H»JÎ` ýþÔ"j:Þ=¿yÛ‹žy¥ÅÞø|$z$jC­x :“TiÍ’wŒ*ã‰Þ;¦žt( ²0£0ÈÕÃÏx2rî5}üP”:xà\k‚¡!€S%–§yÔ†ì%a¥¢‹…i©át+€£‹æ,ÂÀ z¢Öãþ,C?ÏX ¨%)« †/ØmH˜m6}Iªâ'œ3dÃïìmæifá´6-W'{â ¨/äˆÌò5@Ó¢ºtåÑUR¤Ãþ]+­6giëÐæDÉT¯‚´©~&ÔÏ€ÝlÿËz¹ô6nCQø¯hqjR¢ëóXtQÔËE&ˆÓ &vÆI›Î¿ï}‘¼¤H[Óé& ›º$Ï=ç»\%ŸÃ¢1y©? º ¶Ó\¡Ó÷C +nîƒþýx<ðž G–Ðaeõ&©~·åâ·¾îÊgˆ¸ïWýõ5ê9Â&¹àûÅé›جã7¾cÎRSG‚Ûp‰Éf}ü,}DZšR-‰WÈâç'Ÿ‘|:Zítˆ«5DapgÏ 82§$È'B´-BÖmqÄXc•õþÁî) ÙÁ›!ÕékKívÄÞƒ_'WGÙ~ž`Йm¢ƒ«M»û¼bÝA­‹È7TˆÉÌÀsAciSŽå¦4Øy–nèšb`$N™yÃzú¼P¢ß|óÐ9ÒÝË‘‡Yè„“MjĶîÏ-3hx—M$´‘ü#<„Ê$(neB%u-GM¯¸ýÂð䈋H|òª“ÄêŘnrT\4E!œe0³çÂù»aNÇ:ÕZZ«Ó)µB7Td:u +ìuÓa£Á‘ã…[vJCÒا:qy{‰ã­tbH—y@¡3ôé’|º’Z‹x43ƒ;zñ6&¹ Ë?ŠŠOk“u®Ë4Hi˜ʇ¾ˆ ³ˆ/Í൛¶šöƒ:Kç2&çb.J¢Q†×ëœ^þ‡˜&´~á{þ3°uQ- “=M`“æh:‚üZ%Ü~šÁî`ÖðJÂë8•Ž²Ì)E@'è<A@†5û'¹_ß9‰ä´¬SETÚO;ó‡iL³ÛSÖnçîù$¸…÷m!HÉÌ“a:©þ¦…Šg¨¸¹jÞA=°ãÓ]ë$gðéýØÿÁÿqjé2{Ü㫘Äãq¥­ƒüô.v[ÞÄVêÆJ a¹Óväêwp!ÚÙDâÁøÝZÛNNw÷;¸`¹Ô 7ÒE”EÞÇVŠáæòpóÙ+Õó2 +6Bã‘(þŽˆjÌÞ›K +VM|öAå…™S–'U÷êôê;_˜,Ó„ïA/m_an8/Á1ùÄ/2IÝ?}òï +G^`ôÌç—èC7ñ ­œMó~ª`é / C°Æ]5qã†0ô+§[šö<ð31ÍHûÊÖÃXGÖq¢øë1ßî‚izv4vä „ÒKËfàåPŽL‘¤-º¾ÿâ­ Ê‘Q5…M+8ËýÓŸ•œÏ +I´!-n¦ðò– ø¯“T·M•žV’©í¥š®B¦(1(õÎáp4]@)p£Öîã\9âƒTXÇ%¯ÄЇ.¤÷o•j9#$R=›vÓ ÅÁÓom7ÊS.¾>¾Þ€Þ;ýÜn…A„¥K¾²ÚQÞâ0È@f°ÅPGqoõ¢ª‰-.òº¤^í ÉÉ$"O„÷¯±×ÿ +endstream +endobj +90 0 obj +<< +/Filter /FlateDecode +/Length 5119 +>> +stream +H‰ÌWÙn9}×WðQ"¹Hk™$qwA<ééhÐA Û²’Ž%;’·çëç.$‹¬E)'``À*•¸ÜåÜsÏ=y¾;|ºZ^ÄÓ§'oÅÉ›åÃÍÝA<{öâô¥˜¼XL2‘͵±ð?ÏØ­''¯Þeb½Ÿœ,Ô‡L(±¸šÌ²yfŒX\÷p/Šy {௜[¡”™›ÊVBÛ¹µìÙLþ˜*™ÁoS-ÿ½øûäçÅäç3¸ñ \ˆçàp ~{sòË&§7“NN~E3ß,·k1]mg¯^È“³—¯OE¡mj²@Ë>£­Šm]8Sét²7Ç+”⵪±±ÔÕ¼®ë‚ÜÊb^Ãe²œ+1]KU̘ÞÀÛBLr¦3|ø$áÈRL—RÓïüƒÅT5ÏqCŽï·r¦,¾ß‹;X¢ðè­äÏø0K®¼Ýðæ£3B¼ƒ7²’³?/à…Â8Nåxò ÒX'<ˆ—R•lºÒ´ÜßÎÂA5~†Ë?Ê™e—à¦-ÞÈYŽK–d–¥½9žq ÎU±ód˜¨çpÕ¥XâVŽÃ'r Úãax,Þ_º@Ù(Ppî\ü"µÁ+Áh…«vâBVxè¬ñûò!¦·RS˜®qU…7ç¸æ¯¡k wmÑs­Ï ? :‡ñWÄø›«¬B„¬ è‚ë FpŽÉ!ËÁß¿Û /ß y”4H†"³)Û‡o¹V¦Ð˽kø»€-Zó;ð–~•†r a®(Œ´ñ+a‹é×óUkqŠ¹†7§Ò|~CGJ4¹ Ú!‚à錩ÂaªBS–¸¾F—É;(µ‚JÍ%sf0›ÖY|s·ko©m[jÑÒPV;FÅ žG¾Ò5·l垀¥¾ ,g‹G8xœcÄJ™pÕN2°¿®-ãäÒï +s¬Ã|5…æ?U\{÷šå¾H}Oèi¸{§<Ç Ž6ÈŠ‘0Š+"½»o–…Hû?­cpÍ=–N‹ŠŒÜŠf@k!‚»>È¢ xÓ"!â2èl/ÿƒ[\ºUÇJ±HJѹàŠ1”a¤ìl˜‡8 T‡kNÉX<™žòòžtéÌoU!Í:iŠÄ{Ĺ«g: dƒËËwOvÉ`@ÃfÓ7Dèå.xòêà75µêo¸†™H8^c%W´•5ÞFE“"©çFbt‚×-§˜t€‚êT©±,$!¡aJƒÝQžŒCÝVîÁ£+èMAëd¡>’ÄâŠP–k]÷Àpc´ém„~e¡ÇÚ¬Òæ² Õ®dN˜ÏÀ\1IÉÊêÔÅþ7~}!-¾½ÙÜ"­37Û•+¿­$ zà…ûV#|_¾ÏLî8p»é©M<]dìhæ|¬ÊY`K@’òð {Htc¦ÒûŒ`NÞÂ@Êì’_÷’î©G,@—½œ¹¤+Øo]ï¼TåZôM¶ÁnÎ% üfõV7êR—\/E:gDÆDhB\t¾DMZ<¥3¹nšR{¼â$•£É‰ƒjΘÍ{”É8¤©b¬Í4@1fÆÖ c“¬î‰A‚ŠT£@‡E¤ ó4Úé,#nœDèkõÜxi)ËV—¾ïašÀÀ8ŽFYî^‹f$ +`‰”Z1\4e<` Ôb Ñ!Š¤;’’e\QSûTir©ø®Ü¡Wc1WO? ÞrBÀ[ˆž¿ +ÚŠkðN9 ¿'¤Š¼ŽÚ"´¼ k)‘vÔŽ& +šœÞ»Ò×C<4Þ¾V1¼I?ÔxÇ•kÂ`zÕØ6(!5ô·±á¯’ðgÈøð?ÏØ­''¯Þeb½Ÿœ¼Ô\Û`ÝUC/3‹#*<E¹yše™y6j8­£{Ù!ßé™U>êÌŠ¬ô̱È2߬èÂ~d1§èÿdÍö†œ7°ú¦§:¦ +:æјÈy <ö&ZgŽÅDñݘˆ/ü.L\â––¼ÑI‚Ý4»AÙ£ø½Á‡á‰séE¤÷Ò¸¥šæ•HÚ¿b6é°îÇ4^-N|ó?ÆYùÃ8+˹}<Ϊ£8KÏ‹³úûq]ø]8[ûþв ¾7c«¬dšáݬÀË›Uà=øiSÍšêr†x+ø +¿Þ Ã\…øCDÑ5S9ÕÌ|¦l¬.zbm¡ëŠC½`9ƃoêHž>:$-ÎWñLée¼UÞbG“Pg0=HJøØ4“eÆS4À2%ÛŠ+@ÙSäoeæVúDÕl]î7·’Üb·Â6~‘”Π¯;»U/ïÔqnHOsy{š+‡§9€H=>±£„ +G/¢zÎʹ®À?Êyiœ®Þ¹9ëVZB…V] ÑÔŒs7UÑ”…SFÍÄ©IÂ_“—ä®an†”o(ÍN²CäÎã סAùÒû¤¶t2 K¿g‹§D˃/V4YÌÀ/iÇÝ!ö+I©>xý^u”ŒTE(XCiRÇ%JeB(þ ˆðr—AÀIè î “¦ª Rë‚ÓöڷżѸö«T4¯…rÕ„ö'â ëœ%~¼A§ßb `Ç‹}„ÔFé7ã +Àôë·%æ¦Dºå¥5EZ7uÆݦñªô‡“¸×TûÑ0I¹}ÀO현°Ás.¥÷à Œ±”%Úr.sgN:FÆüA7®°ÌéŽ+žkmLÌN²¦p4Öà8¸¤¢Ñ…ŶgµI@Ó˜m,fcðUæøJhbºvœ1(«Ô°¬j2ãÚºázËrN{©ñ ½c§94}ŽðÊR~BÑàF5´î¡Gw)šÑ™JtÓémè~Ah×íYe7‚œé•€þËŒD+µkRª?ã •ž“ºÝ5ýÖK¿î -Èp(u¤ÔƒÈiݪ [LÅH„Û3}y4•@{?ÀJ&)å´Ix]òÇŸ£í˜ÄöÂ&Ü‘šˆØ„¦—Y¡ŽÃFBªÓŬj :w’²$Æñ4ÙìTÕòPÄÌœNdª_Ð6ØÕÂ|öGŠë×5÷XW+ie\tˆ¨ºÈÊUSªQ9{;ÇA­x ™FPK¦e™¦íLçÀ2Ó X©“x vQIkIEh·ú£±•[n´¢SùÝòNÕ(q”¶ßak‰{Ÿ;5u†Ó‹%½Õ´t§Õã*94Yièiît¾‘ºfEì¿[‚Ì@ö¿´WKoÜ6¾÷WðXÙ­HJ”„^‹¶¹…Ür‰dѤ© oÀÿ¾œÉêam?vEŠœùæ{à‘~]¬@…ý›fš[û‚(«_щ„xÁŽXˆ hJŸy ˜YJå¹n‰FäÂYéUÂÁö{¼Üs{Á=­8…Ml{wl³S8Ç& D -^Éø¾Jz +ŠìÑ Úø ¢šz2÷¯J±5/¾Å¦Îœ—–/‹Ü"ý"’€—°Q×”aºxèè!ÝxË tˆn€Þ‹Oø•ÝóBÊáü†§ ;ásƒPý̱ R 6£˜âä›,Æ¿Þ ´ÓG |j±ì%Ý‘§÷<Œ}]÷~© ¶gýC{v4ÏñäÒoؼ`FØHMÏÆ5>ŠS?ðOl‹Ôø,ZX:ÎoGD]‘@÷òÀSo™N`žº Å›tÿ +ýÙ”Iìµóܘ¢.Y(¸ÑÌœÊXTx6ó ˪T…f—Zœ–lü×en…(èÏ`5¸ì–ïl½H<tä$)´K9€ãuÃlääŒß¼3q/ªLóäü²·cOñ‘Ü~®°à6S‡@ðâäq¶.¡'M+Is«U Òü +Þ)Çèå!IõÞšðŪtÖƒ è56…Ò£ñøÄQy¢ Ðã´Ü®!Ç“H,WxP"ޞ𛂓˜òàkp†`‹Ej¥€ Ÿ ²Ôâ–vÒ0kÆ_M‡ýOá1¯&`"‹É.0¾f` ’'tK ‹“|]ò*m®¨ö5rk='+Sâ¨ÛÎGó{~Ŧj7´Ïñ²ûÊð86*Éí»úîlO¸]{%;ññ?ħò‚T/­ÑEcàTþѱžÀãÃŽ 夯 ¿^y«Ö† ôÅ,ZŒû¼Œ¥ÞÊ(ׇ£‘áfI6Ëëv㦱–ë¾´Õ"Ó’eß­ð “ÍSäèÑÈh2ÆÙŠ&€æqä%œFX§ru”váÆ: +öÓâÂ<Ý•mj(ôü‘ÝÀ¿Ób ªiª¢(QYAò|¢3%œm–Û/xÙ‚d<Å3,ø¸%”z'À†\„J.:’‹IÈE±žUû||©õÁµ¢iȦ;›$\Ð +Œµ¦Jfrã°äe~yãýòdÝ4äQÉNàÑ”C¹¨FÝ>Q«i™D•dŸKú”-£»À2 +L‡¾?»Î›‡ÓO¿üqÝšÓPvk,C,ˆÙ±?¶£·±!vyãÖc­âoÔÕ+CüŒ¡ÐþÖœßñÑo¡i”t˜\5Ÿ"†ÃíÕdÛÿàÚhx,JÔC¢ÅXøØ{Щ1mè«ûª3êêÀõÍG(‹Å²DÒáÚÙôÙŽÁ[. :ŽN:œ([MÔ-\'¡¢š ÆÈ'"5ƒ:ƒ›ÿ±ñµôðØ x­Š{…#9º,¬ Êð%›¹ºçâ[õ +£yýsãqú HÁæ×p£¸õUÓá+^7¦˜ó¦šÈ7LË9(Æð'œ7˜Y<#”@Ø™ÉÕ[´¾B™X”ˬî¡I[ïÖ0ÑÇ&ù¨õˆ‰KüR›sCü%õk{ÏÄJ½ ëB“b7|Ìd¤#ËtDTæÿIÄ8ßíÓM-FÂ9~•{v³óNÔï‡G‡ j†êqï·C[å—Uf’ÌÌ'³Š\:zp””löV‚ØÂFèìîæ>æ»GŒðD“–"}üø™)™mŠm{±Äwðà 6œä„p{ãcc¥ê +> q‰åØø‰s×à®f¸ÏP\²œ™/:³p=Ôd'œ¬&•~ M®‹Œ“ÐT„"Orè¬Ç¼˜©þDGC&ñy|þ_öÁgÛ»£A܉Ÿ—ꆎüsP䎢G»ÝÔw"ýP¨¬g7;¥¬:XèåªOc9Š[é Exp”&ŸŽ7‘¦­ò㤓Ž0gù2uÂI’åã• åÈ©;$ûÝxs +ov]ÄÚ˜Oçô%ü|i$7ðtA;à>•¯§±ÒnÂSoæðÂÒkE|¼ªSÆMû^ÖÂÙè%1°I2y˜XNqÞBL@¶@;RjðDïÂ7Ä =l赃]"ˆ}˜ê×1•û>Za¬ïˆ?î›I»â‘¨–»ZHå¦4•Ëö>Ýh6”¥˜øÁÉà£ÄF,i¤“? Î B£WüÁo/JçH"9먊ÿ/Àäùˆ˜ +endstream +endobj +91 0 obj +<< +/Filter /FlateDecode +/Length 5313 +>> +stream +H‰´WÛn¹}×Wðqð´šì&»™5 ø²Y$°7ÉJyòd]¬µ%{G²µÊקn¼õEjÙ hÆÓl²XuêœSûÏw7gGïnÔÓ§ûSû¯î>}¹QÏž½xõRí½8ÜkTS›ÖÂß®kÕî|oÿ§ƒF_ïíê7J«Ã³½mS7°äð’/·ÊÕ=¼ÿúÚªÎw°‡³ÊØÚZï\î½Ýèªg›¶ú×á_÷~<Üûñ œø;ˆûàp þïõþŸ/õêÓÞ?ööÿŽa¾>º:W›Ó«íO/ªý7/ÿòJ¹Þ•!+Œìƪ9ÖC µ‘(M‹'hÍKµÒM_÷BìÍP{ïÇxXmõ 6ï+W{8R]Vz¨;µùTmMmÔæ¤êjx~Ët­Õæ#|;]TÆÕ­ÚÜÀ²¦vø<‡…§ÕÖÖ½Ú\«O•¶øË™º€E7½ª -ºM®……çÀßwxÐtã³ø Þ߯F»y\ê)buƒ[á;ñ6ס¨Fÿ¯¡6_à£ÃMwð¥Åù}`ƒ»¹7¾Ãp!ú‚MÈz¥ŽOñòÏ1ß³×fÙ‹Wp’4N¶bÄðsÚ SeË X|ó=,éy‹­öx[H”¥MY0UÀo`}°º±#ü ï;ÕCæúŸ£JS>¨ŠxÜŽ"Åâ^JŠ"R¹¶/{—uyâ*ØÚä<^arØà›)Ù)qêsʼnØA‚ ®¡Scy ˆ³1ðC„&¿alòÉR'•î¹ØTó3Þ+¯Qîé¤S•Gl¥j°~Øj†¡fñ¾w•§õµúõ+š@"ËŠü1ö_?Äz\Ð¥):ˆ‚¸Yu†Ú…þ4Mv‹`ð~‡ï¯ƒ×PðW­Îuã¼)°µÙV‡¿­Ø×—°íôlè,ï-Ã6k@Mw¾DzTÏz©¢òÐ#òtÚÏ—Õ–0uTµ-~Þ©‚h¬hõ'u%‘…‹¬ðÁÉMC˜†“~¡ý4A3þ³Ä]b„R°·4ÅKd¦ÁÁãöïe¹å„!ò°%߆»ïoÇ70Üé,«™F$X¶ôy[1wØ«Ón[¸¡)@™† v‘Ï(kmQ9_ÒZÔ·Œ‹ +Z·Lë¡[ª¦-š^’6¸ÏÌ#§•á,rnÞq?be3®]Ç´ÌwµzŽø‚o7ê1ÇŸ5µ8R¬¹¬ =FÀä]b ðùd&ä|^•ày%uÁ SÅevs»M5‚ ¯ÏêõhÙô2/Eˆô¦Ö"gcÃ""Us[µ–EFš]ÒðAUl `‹Ã­°p»_€A¨ƒÞOˆž‘öq*[ˆêk¸FH€$É¿üieRÌ*üÒì)e^y¸œr à·”±§MÓ´ÏÖpùÐfdž-cÊ-‡nÝ–ÝJÛŒ_/8æüè·›çØØõïGµuJžWX¢!´lsy,D°Ëh’°“Kã!(oÄÒ.HÂCiÌVff›  Ñ ÊD¼Îg&ëiPóŽß–îä1ž%lír/§bB[šXÌ™@Y¢Ë +}û0Áß-ueÖTþþ°òºî{»®Ü<¾Kûûº´Ürm—k‡ÛºüRa³£ßn^V4nS,Š*,ºS_«6 ½ ºL´Í,Åœ}Ø9Žz~ÆÆw™hgˆ6›ÚîÉhvqe@ðÅðx™ZÀN!öq<Ýí@Ð'RfŸNÐj 3ö°¶Ÿ–ÁÒüäÐ’/¡q(ºÏÄwèÈø øÿÔ!§y[…ã¥YrÒX‡¿b¤ÈQ±r¤ð¥sÔYB\Üw‚VÑ +yµ3R Æ~þ2ãðÁ'zø]/š•Ò¯ÜM«âLK>ü’ÓÒ—`ë’Õô36ÿ™®-04¶Ø@&ç„Cå=ñt}=Ò™Šú(©dnéîñpõ\ I–”]  (ãÉ Z•hõ‰¢Ãç ™µywlýÔ%µ¾»~^—0±KöÁz°½&±‰/r}ª.™m8÷!7Q»±?‹©„¸JO{kÑç͵¡L÷ãLë<Ó²2ã5.Wœ£n2(è(W ?h9J~"‘$?Rˆ„žÐz*!¥Š²’ýÐ¥‰ÆF¡âÑÝõpœ)ƒl6µ0U¦ÿ3#ƒÁç“Ý×bÎŒ¨©_Â\?d–õé¥G Êȉ çâáx[l¢'êDh¼Ÿái4íÁªÁ)çAyç©FŽõHÚ²P ǦZ œË–[-BaÎmªVØÃø±rù¡A¬ÞÑk=B‰i`Ba)àèeXHø½ +,»²øí +{k]—ÙÛ]æ7#gÛì’ #•`h¶Ùðw„&Ž.™ô”Xˆè*‹²#úî¯M·Úîúî;í®µÍ7Ø]oï±»£-WÚ]ï1”»Téìl˜J‘Ã}–÷lÌUÂè© !·Ukœq$¡*~˜¶N”¥Xàß<§alŽ40YV’™¨ :ØñïT&÷øädÔ²–[Ö•-›ÜˆÃ 5XWIJaRúÜáM¢$ÀðÆ™ +ÎþsåñG´ £L¤_ƒž‹{OMçHƒÖ5@_ø[@TpÈ ‡Ü%¯üÔ„‰Ÿš =ñæb¢Êœ ,÷È®°h’Y•VŠdºà0˜¾§uf±KkH;Ê)¨0 ÌÌ=1½¨›™Ïy#ß “ûZع§òã~Ù”T€Y +>jŒ`>0rD—ì™ G.w'׋¦˜›ó-òÇCéÖLïÖbkX£-‰ddg‚b9“; Úv•Ólɳb3°•|˜Ž ?ûð4IMÐx„ã¹xÖ)|ƒìH4Æ4éÂrÉðÅö…P@±R ý¾V‚ü÷J¤²{¬õMsŸ•[®“ ¾Ñ+%hÙ‰"<=bmYzòïpé‰âþëJVŠÃ´*UHÔ•û­‰žõä!5!‡Ÿ³„ډ矎•Ô{™b ÏB;4¦ó×ãÿ\><À)õ*ÐõÍÈóë¥9³ºº÷Zêò +C€H_!ôá¿(¢¨>§ÏtoÓÏè@WtÞ´†ÓiQ +sT1Óà—t—*]}°ÄÚLÏñœ ¹G2¹¥Y*Ñè ÑJöc$ri&¯Yø~R›ÜÂü_2¶²â÷ýÐö]Ê‹=_ 7ªÄ¢¢¹V“TÕê9²2)YÄp‚ʱ:G²&[—¥ ìÉþ†ù:Èè<²‡Zd<ç©b˜td%–°æf\ÝÒVåÜ+WÃÒÓªT|ö­4zFq¡>×ÙÍÂXIN¯cÿgðì ¿f'6™\eÐK&):HI²ËS¼?]i­_À…,D CÞònÖª†RŽœäǤºÛC¸™}í!—ŠÊ3 yŒþ!îL,Ö E¼í“Mx×{¨%ßuPñˆ4ˆˆ’"1D™hƒEÝá ”ì`ÙWsÙúÜäÜÓ"ü\qGpWÉý×Me[æK­ÖbÉŽ°d°Ô™Z{½K÷¶ƒMí»Y\ÖÇK6K6ßpJŒãšsÕþ‰õ…Ó~–ÿO©N¬ÿÅ ÅÁÈ€‹;Ð4èµ%HÝ=¶ß#žÆ$ÃEÅÛörÛá¾Û¢eU))]ntÓ€¶¥Í¯œ¤š/Þ 7ĶÈ,s>}äÐâßÉ€µ#yc1qëÐåJt™%tÚúÈT‡/ÓDÇÜÕ¦Á[\IKljÁв0ŽØ|öÙ0¢ÇÃHÑÂÇ2=Fu.ElHÉ,h­m;Kˆ“ÃÒOj'=µS`E"Á[d„«ËK©ºjâÖ AÝ:\5ÅCœ2üQ—Rcy¼üµ´ñÄÏ4záô¸díÖ©_¶MêÆyS i³­VÍJÃÈ€w …¬÷H +ÑÌÆì¥b;]Óˆ.é|8õåÀ’A[Àä^I{²'F&±r’í`X…+·aæ!П Ÿ1[1¸Üè<è$é<À›/gL!Ã à„”’*NE­Þ¤¶ÒTäsÌŽŸŽgg?v[âÞkä=WŒf=a8É| r²Í¥EÏ‘í|Cr笑(¬ƒ­_Û [+a«›’[[=ÛÖûl’ˆ,ºµ’ÔŽ*´b ø©&&7HàrYIæ¬;¿ÌDÍû½]Jø+ú›1ßOæ†#ᘥÆBѲKÉ+&çΧ%–‹ÑR#->F°‘çëSo•{±æÿ—øjÙ­Û¢û|—_‹¤DIËiÓ.RvºË&ÎÃ6b7Éuœ"ýú΋ä’|e;@W²u%Šœ9sm$ÂÌÐûy ™yDÓMØÆžÈVì9µ.Xä¶]ü‘#HÝRÏTTQŒu§Æz°(a½å1U­¶ÞâãL¬²KìP…ŽÙÒó)ÁÄ@Éè~2óaåÚ_”ä +inÀ½%ã—¡YÇ1©>ùŠ^;›žŸíqo>¦!ë×!›P5XF’µiœGȨsɘñL2ÒL9ƒ6> s(À¿×Hafb(I†Ïæ+ý(wò¢Þ<…3 pn¬RW  ÊRÙvØ 6ôÆ÷AYë_±FQ #ME[¹·"5*[kE¾¥ø‘<°’[ó½ñ±z^Àl'Vƒê´­'¥ž!÷[¼‘º¤ö |q6Ã[ÛE„ú˜Cí*fE§ µekƒ%ÏUç”ÃUj¹âÝKSk“Ì°]âõJ³ÕðYùÉéïX× ¿b~²%pãÔ ^°Ü®éé%Ûô#6«ÍH›Û»%Ý“uï#Òk3ÿpFsSeîéæÜ#0ßmls(Ú û€TÐîºÎ›ýù“ã—§­9¿yOQëCj½›`]ï¸õcãÜ;(“§FÀ•ôì„°dVhºÞâñ|ŒƒlÑ`6úâ˹Ùǹ#¿ôU(ã–+}I•ÕRe®ñCìZ|f˜,Â7ä—Gà£<µ£Â^ckðÑ´âUüã4ÉË}ÞýžÚ:qþ £"7Ðn`Ç¿0 õ9R9K}&é¾ÚØ¡2ÆRÌ'lÅÖÛ~y<Ý^uòÒ£Wb_.'÷ÈWÉqMXäk’¶”º"SqJP®— ‘iÚ˜2‹‰A¯0<$¹‘A¸FŸÕ ðV²4æ …6Ê<`Š§‹~üÊÉövfs:n +»¾fÁIi”8ˆ!ân¸b;¤Æüßæe¶é…{¯½2ÏaN2Ö 2ÖõF ŒÌ»ÆÄVó>•Á± +p  ³ ngb‚© #`/ŸP2è6ÃÎñ¹ŽG›¯ëJÊXzÞô”ÒŽ?àóÀæ#þþKCåüË)žÛê«€‡aŸe@’ä(–8–ÙÒµ‘+áý%®fûÀë¬ø±Ëè¶âöö¹¿/Ñ<Äá³dÌoPW•\­-¹„'#k[Ïä8ó2ýœ±@ݸººž@7÷›¦™n*îX*͹rm@2LjúqKL´–fξi—·o‘ôº‚ô²Ä¼ž!^à‘?L¹rŽ†bi…Oп^Ù#!ÊŸËvù±¹Ž¾‘Ók ýŒeÙk‚îÉ·º*òH^c«º O¶ÄSV塧wê4Šrkï>&5!E¦‚ë윾†é.i@'ˆ55$fTÚÕwq[©öÜ1Ì©ñËâ#¯±È©^ˆ`?`^ +¬Ì#œ4+bðQI> Õ4,†šyûc}éŒYfŵ ¨ðÞ…ykôYÆ´apüÚš}#œ\§5QÄR%8eJ = +|¶/9)dMˆÀäg£;ˆ|œÎÍÏ’Ý%B¡2jXaaœ8¨nÑÅÒhp¥ûÏò^~=yAA j£jÍ#Õt¿Æ(6¬â±_åo£šÖĶôÈwZ†ùªÏiþ»’ÊmÒ|KËâ>·ÁÄoñd +#=™ë +øÙn-´½Š¹ªt¼‘&3q!þÔ$½ˆääl6ddLáü< Dί=ƒ-HÙc¬[ÒMPõ +€y–ã5L!ýϦ딱כvŦƒlzXSÝÂyÜá–¦ŠÆ³ ~7²¯ØË/ÃÇNVYúßOØ¿ånŸñ°x=,Yã±ëÝ‹é¼JàˆB”»²-i*wó¢JXò\/“MWHiÏs7Èä&å¿Gþë#mF> EÚÂ(‘Ä-¨9³Š¯ë¿Ÿß:gƒÏ-¦G“ïÂY)b6o®|äGZàˆ +ëD×·Ð!T¨áôÔl#ºA­ ˜i­yýδ;çV׃ +ö# >EÕ­';ñ(Ï~žA/:ôÈEÞŽ^+šúìòÞ¸m\Ç¢PeØ?7AÈw)"åƒOp•_v·cªÀÄ ¸3ϱü°™­PK¨"œZ»Æ€Á«8ZèñK·änàã + ÙA>ÎC#Sz,eÕ—p°/½ôePbMq¬[’æˆÉhÄRsoÅþ)ê¬!ôÓˆðgâzÉÇL àâŒb5Rñ°¯A§^ï#7pI#&¶¡oÚà5ê6:Bß–’>­8BÛ*¨Œù±|ÑÀROOVÿ€ó~™Æ•v¥—rJmqÌÍà[›‚@ЧŠ#ÈVNþÈö’KRç†Í¹IK=§Çôrš+IKŠœH~T\žqtDÛÏóQ"F ¿s·ãª{®:~àÄÄØKAò4Áàô+Ã/7øxéÛ‹´¹‘%½­„×­Êw*bÜ° »Àö³ö¥´Ù˜|A +Ú ®·Š 欙„,ò‘£$)q¢9òÄ H*2ÎÄÎ͆Yc]U^†€+&¬#º +¥Ô/m4¦¢|Z…ZQÛ?µ\Šÿ»råÁ5u0ˆ7bÌm1 +_M£÷µitQæÝ +ˆ±‰ ÄP:O6gÅs^8Ïw¢8Þ +ç¥;¯ç!¨IÂgŒ5AxÏvB|ŒÞô+Ù˜¢dÿ 0ø»–Ž +endstream +endobj +92 0 obj +<< +/Filter /FlateDecode +/Length 1461 +>> +stream +H‰¼—]OãF†ïó+æ2saÇóå±+„ ì‡`Ùm²íEUUÙØl— –ßóž'NHÀ”ªB"‰í™9ç™wÎ{Ü9˜/&ÃÑBìíuÎDçdøp}»ûû‡½®hZ™ÈRmý·Öˆùe«ó¦Ÿ‰Ë›Vg þÊ„ƒ‹V’¥=2‰øå^䩧1ôçS'”2©)\!´KËiÌU«­¬|k ZG§´ÒZã1–¦Ç¯“ÎñU&z×­O­ÎG„w2œ^Šöxš¼9”ÓðÆ®‡*Ñ߈QU1ªUŒ™Ž1â˽PYZ„!z¢×Ý÷%bü£} sŠ¿=•*Íéc,‹ß?e¢E[H/Ú¿ÈD¥%ÿâ{_dbªÿó±Tï&CºkE{!B#Ú“ë8çüsð~‰aw¢®–hg0ˆäWД +©¨Z*´¶)³¼J…V¦˜¤2!üÆ+wú³á”Ö<-n‡ß㟋½ã£ãã,ËÊýý}ÁK¶o¤)”ÅŠç4å0&s,œKâR3ÆçÚu•¯¤R¸\ÝžJ­hÚ A©‚ Keóœ.錿ImðÐ=¢€rB_²¸¼ŽÓÎéw Æ"<쫇9”ð9‘š),bÏkØ· ÎË"UKÄ]ÉÁŸö_M¶ r”õWΩDÜŠY%¾”µÃ… q*“r•k^Ç^åLp@Y¤>}P¦±·¸A“Ï$ÿ³©Š4‹@Sc–¦¤ü3¤ +“–eæ*Rvê#-æ‚(_KlD3rø%¢¿NŠ>ÄÄÜW:Ðe]‚Ix`•ÜLЪ˜I†:–ã‡û(°“Nƒè.YÂ*,•óˆzoH´x†hNÛ¾$ÚÃ9±ÿ‰øz2ñÈ‚rUB +9'\ ’3^ž»M-æ»´˜ïÒbù„}¥Eל\Y#Ç…ßV…ß¹#,ò¢¥ðΤòˆº×˜©NÌ kx)r”ˆwLî¡ržIÍp¾ƒC!z°ò¨EöŒ;©}`B¿ˆ¶P4>ÎÉŠ¸PN#zª¥ZÓ¢_£8ˆ£Tã΄™­– ‚òaPˆ§f›­™ïN”[Us¢÷XR…Îøðç”H÷Õºý& @Tª™0Ï] Ÿ¹ª|f]Ÿþ‰Z¬‰q†SéÜ¿+[~(u·l.8±©wщÎÑpóH³6r{«0¯XºùºÅ;ôm͹¼ó,(²ÈàÀ]ò%U’ûmJ5f©Ôtì)ókÃ#I¶Þª Á]‰¨èúýE¬plÊóxö¿Hê: ýb¼ éå¡ô²a_bB]ŸPrWŸh:‚dz‡&ñ¡!æ¼±2]Št?c÷)’¤ +Ñ~+)ZôÓ«õù»¥Ù2tVW¡íWÃsñ7ü¦õ¸ÖÃfý6šù²Í×Yè®Bì?ðÛ¥ù×^ìšéQ JB3Àϼ49ê›V®ô;¹ëé ÚSóúº‹è=^sêo7šÃ_öß›º!¾Úös±´¥àc_4¿ÝݲO•[ökG'€"Ë ¯7]ÜDÐ[–âÏØðÝêñD!õ +endstream +endobj +93 0 obj +<< +/Filter /FlateDecode +/Length 1199 +>> +stream +H‰´VÛN#G}÷WôËJÓÓÓ÷î‰Ò‚ ÙØM<ÉË*B‡lbìeùûÔ¥dIP¤‰)÷¥êTÕ©ªnÞ¯7×W³‹ØÛk>Šædö¸ÚnÄþþÁøPŒº‘ZYà¿÷N¬£æxªÅâ~Ôtæ\ #º«Q­•v^t¢"ªwà/© |땵! +TîÜŽ*d÷ûhÒ&§`éO0„÷ñ.¨Ç_'ÍÑ­ãÕèÇQó áÌ– Q].ëãÙœ~‹äós¨ýMÑì0j[0¢ð ŒV™¯X‘½jm²"Ù Û©EˆŸ«‰¬J¢ZÎem”aµ¹Äµ ª{ùk÷Ãþ׶„Mוí¼Í}¤Hx¡µ +­Ž*ŒT3½›-ÁÆû‹ÍvvÓ]~ÝìMŽŽ´Öíþþ¾ • ˜" ×-Z˜ƒDzŽ¢ZÝAÜ™‹•Œ(\ÁJVžQ¸–AYQ]È:(>Á¯@ɽ`Ž,¥V­¨Ð1“-Æe!-þ‚SwoáçðþRB´« ÚCe·„©ÅÛÖB:ªGñE2¸lµ¸´L‰÷f$TØXшô‡nž±”uƒ¿¤{ E†C~‘vè%¿¤ø‡Aa` +ŽKéDA‰¤×Dü G<Æ|+±ª9|о8%ÇÁò‡>'’Âø/À÷@Ö ÷§#:¸Æ`Ùø@®%˜ë‹Ž};z†ÀÍÁ„¨¾ "G=»ì)‰î®„«!õ6¾=àû·¹sÚqÛþnÿ;3•úÊöï5g4äDCwû\M! º%¦"ÀýJü&k¯)Ö‰(B&VÞAH=2î; Y€"íð2†½±0Ê[®•’PQt ª(ÛK´Åq¯]FXìûŒ‡^oQaÀWì $ª>ÐâÉÀœœ±ÄВЙˆ'¨Zø m|jÆŸ¢€=@VzòjPH• B¤>a+—Zro$Œ}ÖÂÿ¹-ÆäwÔqÿ uÜÌ‚€ê"½N0¢Žq}Ÿ) +D“ˆ.ÖÞ@Ó ÞXî=Ö wR(Üi[N‘є˙J³²}û¾Æ©i,©8îF—ŒH§™KÎãwK»Ä2Ïô3™%é_C'²ÔÉ“"öf‡æ ÔŸÌ™¬‰Gô@»;tŒ–'h÷Lfš; Ô‰¦’9ÞHK]ügŒi$â|ŒB4?Qu€šsÙÒþÉHÌj5Óž«ç"¥xÀÑ4›ƒ^r’[!F'RBµç˜ä-ÇÞ<…»ÍÜ÷ÉæFúg)õù(#-œSb6z*ÅÕ’S{‰Qá1G™öï2øOØç£0r.(^=cõøîr§CáuºF3 + }ïxèC)s…ÑàkÇ07}䘷tÔ÷óKI›¹ƒ¸Pz‡/‚…Hé„™óIoƒñX’ŽOýàyÇCÓ–7ƒ¦¾–L<®·„ËÀDÍÌö£Ù»Òç õ© ²A†÷Ž;Ú@µ!Mgøjñü¢®ºé§ûðæsP0ýp!3 U\¦x*1ܼ#mÄÅÚy~b ú—&uc¸ +endstream +endobj +94 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +95 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +96 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 514 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 95 0 R +/GS1 172 0 R +>> +/Font << +/C2_0 173 0 R +/T1_0 174 0 R +/T1_1 175 0 R +/T1_2 176 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤TmkÛ0þ®_q%˜å;ɶd¾Q6V­¿•2¼¦ éÖ—²þúÝÉnëte/”@t–ïžç‘î9£¡´5òï¡[©üôaµSY´%oKå¼­¨†HhÖÐݨ¥Êº~½l¯{˜Íò/nnï{˜Ï@6 +Õya(Š¼¡¯ÍR¡E +Ð\C6F€Ð쀗G‰;¨¬Èã_°% –¨"p¥õ±tÐÜ©KýÑdÞ:ÐSXº7úÆd\ ze2g#èÎD[ƒn9%¼¤)[bTÐpl²‚IôÚd$5;ÁåmÇUü|'ûü¾MK¥-&Ä9aùðŒ˜2ʱ”+¶ßD%%?Æu-ÜèG'Bùò™a½Ý0&#¶›Åœ›„“ÎI£æ?ÝAî`„Žo@_˜ZÄ÷"™‘„‰1ët~‚ÜÔ ~g®šOê¤Q'gÜä¿Z@:NcÇ¥Û(Þë«/EWïõUƒinÿÁwq/‰{…Ö ´¯È¼-\åßG61õù);¹„(àŒ9náò +aÏc”¹'Ç“X:&)‘…p#ÊàDŽBfˆ±˜ÿ–7Žûûàø +mtuÜ?ó{=ùLLúûŠ”?5{koZñbªÄúݳ»üèS’‹L;OH•˜´'ƒÁÙh‚ä¾> +/Font << +/C2_0 177 0 R +/T1_0 178 0 R +/T1_1 179 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬VmoÔ0 þÞ_áDÓ8/MŠ¦IcLCå 4¶»mÀnSïÆiüzì$×ön @ ImšØŽý<}«úÕÕüôl{{õk¨_žÞßÜ­`ÿÉÓC(žt…%µqô´ÖÀɳBIk°ð +|†wœCQ?{£àbYÔ‡ú£„nNŽÝ™tk~,½¾óQ¶=”Naí¤ŠŽ®‹=¥‚Ýï>G]qôŠRؾ¿¿(ª@N–}jh¼4Ú€“¨4ô³b^ ÙèÐ齋lZº‘ÁâŽF‰ 6ÎHÕn›´AçÇ(NÚ ßHçÌÏ,ê?7þ})êà¤Bd𪼊ö€(µ‹æi…¦‘U4}»–ñ{W‹ÊK„òu'*# ”GâC÷bÀó·9q&¸K!*éóÝqÅwe4 keëtºúèTh <d¥¡¼„ç´‚ò©0Ò¦—ƒò$çõ®‹©¼•ãósA…Ñ÷h9ÊWA{3¸èeåÎD`?>öPö½@Ç3Ú¦×B`-”+XS´¸–íVÂsðK˜Ñ‚¢¿WÆÓEìW9εҊýW0ç> +endobj +99 0 obj +[185 0 R 186 0 R 187 0 R 188 0 R 188 0 R 188 0 R 189 0 R 188 0 R 188 0 R 188 0 R 188 0 R 190 0 R 190 0 R 190 0 R 190 0 R 190 0 R +190 0 R 190 0 R 191 0 R 190 0 R 192 0 R 190 0 R 193 0 R 193 0 R 193 0 R 193 0 R 193 0 R 194 0 R 194 0 R 194 0 R 195 0 R 194 0 R +194 0 R 194 0 R 194 0 R 194 0 R 196 0 R 197 0 R 196 0 R 198 0 R 196 0 R 196 0 R 196 0 R 199 0 R 196 0 R 196 0 R 196 0 R] +endobj +100 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null] +endobj +101 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 200 0 R 201 0 R 202 0 R 201 0 R 201 0 R 201 0 R 203 0 R 204 0 R 205 0 R 204 0 R 206 0 R 204 0 R 207 0 R 204 0 R +204 0 R 204 0 R 204 0 R 208 0 R 204 0 R 209 0 R 210 0 R 211 0 R 211 0 R 211 0 R 211 0 R 211 0 R 211 0 R 211 0 R 211 0 R 211 0 R +212 0 R 213 0 R 214 0 R 213 0 R 213 0 R 215 0 R 213 0 R 213 0 R 213 0 R 213 0 R 213 0 R 213 0 R 213 0 R 213 0 R 213 0 R 213 0 R +213 0 R 213 0 R 213 0 R 216 0 R] +endobj +102 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 213 0 R 213 0 R 213 0 R 213 0 R 213 0 R 217 0 R 217 0 R 218 0 R 217 0 R 219 0 R 217 0 R 220 0 R +217 0 R 217 0 R 217 0 R 217 0 R 217 0 R 217 0 R 221 0 R 222 0 R 221 0 R 221 0 R 221 0 R 221 0 R 223 0 R 223 0 R 223 0 R 223 0 R +223 0 R 224 0 R 223 0 R 223 0 R 225 0 R 223 0 R 223 0 R 223 0 R 223 0 R 226 0 R 223 0 R 223 0 R 223 0 R 223 0 R 227 0 R 223 0 R +223 0 R 228 0 R 223 0 R 229 0 R 230 0 R 231 0 R 230 0 R 232 0 R 230 0 R 230 0 R 233 0 R 230 0 R 230 0 R 230 0 R] +endobj +103 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 230 0 R 234 0 R +230 0 R 235 0 R 230 0 R 230 0 R 230 0 R 236 0 R 237 0 R 237 0 R 238 0 R 237 0 R 239 0 R 237 0 R 237 0 R 237 0 R 237 0 R 237 0 R +240 0 R 237 0 R 241 0 R 242 0 R 241 0 R 241 0 R 241 0 R 243 0 R 241 0 R 244 0 R 241 0 R 241 0 R 241 0 R 245 0 R 241 0 R 246 0 R +246 0 R 246 0 R 246 0 R 247 0 R 246 0 R 248 0 R 249 0 R 250 0 R 249 0 R 251 0 R 252 0 R 253 0 R 253 0 R 253 0 R 253 0 R] +endobj +104 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 254 0 R +255 0 R 256 0 R 255 0 R 255 0 R 255 0 R 255 0 R 255 0 R 257 0 R 255 0 R 258 0 R 259 0 R 259 0 R 259 0 R 260 0 R 259 0 R 261 0 R +259 0 R 259 0 R 259 0 R 259 0 R 262 0 R 262 0 R 262 0 R 262 0 R 262 0 R 262 0 R 262 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R +267 0 R 268 0 R 268 0 R 268 0 R 268 0 R 268 0 R 268 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 272 0 R 272 0 R 273 0 R 272 0 R +274 0 R 275 0 R 276 0 R 277 0 R 277 0 R 277 0 R 277 0 R] +endobj +105 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 278 0 R 278 0 R 278 0 R 279 0 R 280 0 R 281 0 R 280 0 R 280 0 R 282 0 R +280 0 R 280 0 R 283 0 R 280 0 R 280 0 R 280 0 R 280 0 R 284 0 R 280 0 R 285 0 R 286 0 R 286 0 R 286 0 R 286 0 R 286 0 R 287 0 R +286 0 R 288 0 R 286 0 R 286 0 R 286 0 R 286 0 R 289 0 R 286 0 R 290 0 R 291 0 R 292 0 R 293 0 R 293 0 R 293 0 R 294 0 R 294 0 R +295 0 R 296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 303 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R +308 0 R 310 0 R 311 0 R 312 0 R 313 0 R 314 0 R 315 0 R 316 0 R 315 0 R 317 0 R 315 0 R 318 0 R 319 0 R 320 0 R 321 0 R 322 0 R +322 0 R 323 0 R 324 0 R 325 0 R 326 0 R 327 0 R 327 0 R 328 0 R 329 0 R 328 0 R 330 0 R 331 0 R 332 0 R] +endobj +106 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 333 0 R 334 0 R 334 0 R +334 0 R 334 0 R 335 0 R 335 0 R 335 0 R 335 0 R 335 0 R 335 0 R 335 0 R 336 0 R 335 0 R 335 0 R 335 0 R 335 0 R 337 0 R 335 0 R +335 0 R 335 0 R 338 0 R 338 0 R 338 0 R 338 0 R 338 0 R 338 0 R 339 0 R 340 0 R 340 0 R 341 0 R 340 0 R 340 0 R 340 0 R 340 0 R +342 0 R 340 0 R 340 0 R 343 0 R 340 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R +355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 362 0 R 362 0 R 363 0 R 363 0 R 363 0 R] +endobj +107 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 362 0 R 364 0 R 362 0 R +365 0 R 362 0 R 362 0 R 366 0 R 362 0 R 362 0 R 367 0 R 362 0 R 362 0 R 368 0 R 369 0 R 369 0 R 369 0 R 370 0 R 369 0 R 369 0 R +369 0 R 371 0 R 372 0 R 373 0 R 372 0 R 372 0 R 374 0 R 372 0 R 375 0 R 376 0 R 377 0 R 378 0 R 377 0 R 377 0 R 379 0 R 380 0 R +381 0 R 382 0 R 381 0 R 381 0 R 383 0 R 381 0 R 384 0 R 381 0 R 381 0 R 385 0 R 381 0 R 381 0 R 381 0 R 381 0 R 386 0 R 387 0 R +388 0 R 388 0 R 388 0 R 388 0 R 389 0 R 390 0 R 391 0 R 391 0 R 392 0 R 393 0 R 392 0 R 392 0 R 394 0 R 392 0 R 395 0 R 395 0 R +395 0 R 395 0 R] +endobj +108 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 392 0 R 396 0 R 392 0 R 392 0 R 392 0 R 397 0 R 397 0 R 398 0 R 397 0 R 399 0 R 400 0 R 400 0 R 401 0 R 400 0 R +400 0 R 400 0 R 400 0 R 402 0 R 400 0 R 403 0 R 404 0 R 405 0 R 404 0 R 406 0 R 404 0 R 407 0 R 404 0 R 404 0 R 404 0 R 404 0 R +404 0 R 404 0 R 404 0 R 408 0 R 409 0 R 410 0 R 409 0 R 409 0 R 409 0 R 409 0 R 411 0 R 409 0 R 412 0 R 409 0 R 409 0 R 413 0 R +409 0 R 409 0 R 409 0 R 409 0 R 409 0 R 409 0 R] +endobj +109 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 414 0 R 414 0 R 414 0 R 415 0 R 416 0 R 416 0 R 416 0 R 417 0 R 416 0 R 416 0 R +416 0 R 418 0 R 419 0 R 419 0 R 419 0 R 420 0 R 419 0 R 419 0 R 421 0 R 422 0 R 422 0 R 423 0 R 422 0 R 422 0 R 424 0 R 422 0 R +422 0 R 422 0 R 425 0 R 426 0 R 426 0 R 426 0 R 426 0 R 427 0 R 426 0 R 428 0 R 426 0 R 426 0 R 429 0 R 430 0 R 430 0 R 431 0 R +430 0 R] +endobj +110 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 430 0 R 430 0 R 430 0 R 432 0 R 432 0 R 433 0 R 432 0 R 432 0 R 432 0 R 434 0 R 435 0 R 435 0 R 435 0 R 436 0 R 437 0 R +438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 450 0 R 450 0 R +452 0 R 450 0 R 453 0 R 450 0 R 450 0 R 450 0 R 450 0 R 454 0 R 454 0 R 454 0 R 454 0 R 455 0 R 456 0 R 456 0 R 456 0 R 456 0 R +456 0 R 457 0 R 456 0 R 456 0 R] +endobj +111 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 458 0 R 458 0 R 459 0 R 458 0 R 458 0 R 458 0 R 460 0 R 461 0 R 462 0 R 462 0 R 463 0 R 464 0 R +465 0 R 466 0 R 465 0 R 465 0 R 465 0 R 465 0 R 467 0 R 468 0 R 469 0 R 469 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 473 0 R +473 0 R 473 0 R 473 0 R 474 0 R 473 0 R 475 0 R 473 0 R 476 0 R 473 0 R 473 0 R 477 0 R 477 0 R 478 0 R 479 0 R 480 0 R 479 0 R +479 0 R 479 0 R 479 0 R 481 0 R 479 0 R 479 0 R 482 0 R 479 0 R 479 0 R 483 0 R 479 0 R 479 0 R 484 0 R 479 0 R] +endobj +112 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 485 0 R 486 0 R +487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R] +endobj +113 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 499 0 R 500 0 R 501 0 R 502 0 R +503 0 R 504 0 R 504 0 R] +endobj +114 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 505 0 R +/FontName /DKFIER+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +115 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ËjÃ0E÷þ +-ÛEqbK£L $-dÑMûŽ=I lg‘¿¯®oi¡†ØÇht9#Oòõv³ Ýhò×Ø7;Í¡ mÔs‰š½»Í ÓvÍøó6Ý›S=dyÚ¼»žG=máϪÊäoiñ<Æ«¹Yµý^o³ü%¶»p47ëÝ­Éw—aøÒ“†ÑÌÌriZ=¤ §zx®OjòiÛݶMëÝx½K{þ*Þ¯ƒšbzŸS¦é[=u£±GͪYº–¦zL×2ÓÐþ[·%·íÍg³ª@ñl–‰7ä øü¸dM‰šrNžƒ r.É%Ø’-Ø‘XÈöd¾'߃äEbËL‹LËL‹LË‹Ë‹»"¯ÀìÅ¢GGggLJLJa‚…õ‚z¡ÀGè#ðö(èQ˜)Èfʔɾ}Éš¼ÓSà)> +endobj +117 0 obj +<< +/Filter /FlateDecode +/Length 433 +>> +stream +H‰\“]k«@†ïý{Ù^³Î´ ´‹~prúŒnR¡Yec.òï;¯oè#¨ÏâÌøÌ:æëíf»Ñå©ovat‡.¶)œûKj‚Û‡c³yáÚ®o«éÚœê!Ë-yw=á´‡>«*—ÿ±‡ç1]Ýݪí÷á>ËßSRîîs½»wùî2 ßáâèfn¹tm8X¡×zx«OÁåSÚöµçÝx}°œ¯CpÅ´žS¦éÛpê&¤:CVÍìXºêÅŽebûßs?4_uʪÁ³™ÝŒ×ä5xCÞ€Ÿo1v>Ûz1ŸÖv3.ÈxA^€=ÙƒKr ²€•¬àGò#xE^{¾Ëã]ž5=jzæzäú'ò˜ÞÞ%ÝJ¸•t+áV²N‰:Âú‚úÂxA¼0^/Œ—)ž½zö"èEè#ðö"èEè&pö%èK¸×‚½: œ…{-Øgy!Û‡¬”ßIñ”Î +g¥³ÂYé¬pV:+œ•Î +g¥³ÂYé©ðTzÚ Cs›ŒM¹ûÍæ’’åô+LóˆIìbøý[†~p–…3û`o–Ôó +endstream +endobj +118 0 obj +[507 0 R] +endobj +119 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +120 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 508 0 R +/FontName /KXRYYD+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +121 0 obj +<< +/Filter /FlateDecode +/Length 245 +>> +stream +H‰\PMkÄ ½û+æ¸{XtÓE(»-äКö¤B£bÌ!ÿ¾£Y¶Ð}3¼yÇðKwí¼ËÀßS0=f· —°&ƒ0àä<;7`É·©þfÖ‘q÷Û’qîü˜”À?ˆ\rÚàðhÀGÆß’Åäü‡¯KÞ¯1þàŒ>ƒ¥ÀâHF/:¾êWÙ©³Ä»¼Hó·ñ¹E„¦Îç=Œ —¨ &í'dRP)ÏTŠ¡·ÿøvW £ùÖ‰Éæ‰v… `òAÔž€úvï[U›!(Ž7mñ¦À=¸YS¢ÌõN5l‰é<ÞOCR•Ç~';v +endstream +endobj +122 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/M/N/R/U/a/b/d/e/i/l/n/o/p/r/s/space/t/y) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 509 0 R +/FontName /DCCIER+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +123 0 obj +<< +/Filter /FlateDecode +/Length 315 +>> +stream +H‰\‘ÍjÃ0 Çï~ +ÛCq’¶ñ +!0ÒrØËö©­tÅ1NzÈÛO¶J3$úýõaIVõ±¶ý òݺÁºÞÓxóá‚×ÞŠ4Óëù~‹=´NH +n–iÆ¡¶Ý(Šä9§Ù/°z6ã×B¾yƒ¾·WX}UÍdssî´3$P–`°£D/­{mÃ6µ!?/ŠùS|.!‹÷”›Ñ£Áɵ}k¯(Š„N Å™N)Кþô‰Ã.þn½(² N2¢Ø#“!>1Ÿˆ÷Yd2Ä{æ=qžF&CÌš> +endobj +125 0 obj +<< +/Filter /FlateDecode +/Length 353 +>> +stream +H‰\’ÍŠƒ0€ïyŠÛC±µšP¡Ø<ìëîØdì +k Ñ|ûÉ”.l@ó…Ìd>2IªúT»~–É{M³ìzgLã=W¸õNìRi{3?Vño†Ö‹“›eša¨]7Š¢ÉnNsXäêhÇ+¬Eò,„ÞÝäê«jÖ2iîÞÿÀn–[Y–ÒB‡½´þµ@&1mS[Üïçeƒ9Ÿ‹™ÆõŽeÌhaò­Ðºˆb‹£”ÅG)ÀÙû©æ´kg¾Û Š”‚·[œ+æ +yŸEÆIsùÀ| æøŒâ³ 3-r>3§3ó”9%Þ3ï‘Õ.2NÈ£(Fq-EµTÎœkfMÌŠ;(rP'æñ™ùLÌnŠÜ4»irÓ\WS]ÍnšÜ4;hrÐì ÉA+fE|d>ÆK~Ü&]7¾ +ù쥹‡€mŒO'ö:×;x¾.?z‰Yô‰_ï—¬  +endstream +endobj +126 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space/three) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 511 0 R +/FontName /MKUPAZ+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +127 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PÁjÃ0 ½ë+tlÅi²ËÀFG!‡ncÙ>À±•Ô°ØÆqùûÉné`YOïñ,qê^;gŠèuO GëL¤Å¯Q4YÇÕé>•WÏ*€`r¿-‰æΤDñÉà’↻ãÚƒx†¢uî¾OýE¿†ðC3¹„¶-Yè¢Â›š E¡:øMÛ9_[ ¬Ë|¼™ÑÞД¦¨ÜD +Ž噣ræÞÜXè¯*‚¬ónUqÙ4¥çòé¹ô\²Æ};«ñ§ñaU¯1²Ër™b/³ŽÇ > ³r¯_sÔ +endstream +endobj +128 0 obj +<< +/BaseFont /SKFTGN+Wingdings-Regular +/DescendantFonts 512 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 513 0 R +/Type /Font +>> +endobj +129 0 obj +<< +/BaseFont /LGFJMB+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 124 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 514 0 R +/Type /Font +/Widths [305] +>> +endobj +130 0 obj +<< +/BaseFont /BBJGCV+Wingdings-Regular +/DescendantFonts 515 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 516 0 R +/Type /Font +>> +endobj +131 0 obj +<< +/BaseFont /LGFJMB+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 124 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 517 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +132 0 obj +<< +/BaseFont /MKUPAZ+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 126 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 518 0 R +/Type /Font +/Widths [202] +>> +endobj +133 0 obj +<< +/BaseFont /DCCIER+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 122 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 519 0 R +/Type /Font +/Widths [212] +>> +endobj +134 0 obj +<< +/BaseFont /ZWEKAZ+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 520 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 521 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 0 536 0 536 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 573 0 0 0 0 0 0 0 0 +0 0 0 417 351 569] +>> +endobj +135 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 522 0 R +/FontName /RKCTFA+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +136 0 obj +<< +/Filter /FlateDecode +/Length 561 +>> +stream +H‰\ÔÍŽ¢@à=OQËîE¥nÝÛ$ÄÄÖîÄÅüdœy„Ò! ½ðí§§Ó“Œ‰z ÷ã*ßö‡¾›]þ}šcœÝ¹ëÛ)Þ†÷©‰î/]Ÿ­ ×vÍüñkùl®õ˜åiññ~›ãõП‡¬ª\þ#¼ÍÓÝ=lÛá³üÛÔÆ©ë/îá×îøèòãû8þ‰×ØÏnå6×ÆsºÐ—züZ_£Ë—eO‡6ïæûSZó÷1ºbù½&¦Úxë&Nu‰YµJ¯«ÞÒk“žýï¸)—ÎÍïzʪ'¯Vé+åÀŸ™Ÿ‘KæyǼCÞ3ï‘_™_‘ߘ ò¼¾Çõýšy\0ÈžÙ# ³ ÓãáñʬÈÆlÈtz8=N¿eÞ"¿0¿¤,4 BƒÀ 4 BƒÀ 4 BƒÀ 4 BƒÀ 4 BƒÀ ìMЛ°7AoÂÞ½ {ôØ[@oæs 9Àh0šÌæs 9Àh0Úlsæ*g)f)g)f)g)f)g)f)g)f)g)f)g)f)ûQô£ìGÑÒ 0(ÿ#ŤìJÑ•²+EWÊ®])Í +³±+CWF¿ÁoôüF¿ÁoôüF¿ÁoôüF¿ÁoôüF¿Áoôü%æ«5Î) fœSzfÜK)̸—R™á)Y–öãÉÄ£›v÷¹/4ïÓ”¶„eZöì]?wªq]Z…wöW€€¸Ÿ +endstream +endobj +137 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/L/O/P/R/S/a/b/comma/d/e/eight/five/four/g/i/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/u/v/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 523 0 R +/FontName /ORVCPG+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +138 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +139 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/four) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 524 0 R +/FontName /KPSDLO+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +140 0 obj +<< +/Filter /FlateDecode +/Length 245 +>> +stream +H‰\PMkÄ ½û+æ¸{XtÓE(»-äКö¤B£bÌ!ÿ¾£Y¶Ð}3¼yÇðKwí¼ËÀßS0=f· —°&ƒ0àä<;7`É·©þfÖ‘q÷Û’qîü˜”À?ˆ\rÚàðhÀGÆß’Åäü‡¯KÞ¯1þàŒ>ƒ¥ÀâHF/:¾êWÙ©³Ä»¼Hó·ñ¹E„¦Îç=Œ —¨ &í'dRP)ÏTŠ¡·ÿøvW £ùÖ‰Éæ‰v… `òAÔž€úvï[U›!(Ž7mñ¦À=¸YS¢ÌõN5l‰é<ÞOCR•Ç~';v +endstream +endobj +141 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/C/D/I/L/M/N/R/S/T/U/a/b/c/d/e/f/five/four/g/h/i/l/m/n/o/one/p/period/r/s/six/slash/space/t/three/two/u/w/x/y/z) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 525 0 R +/FontName /IDPNJS+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +142 0 obj +<< +/Filter /FlateDecode +/Length 413 +>> +stream +H‰\“ÝŠÛ0…ïýºÜ½Xœ8ÒÌ.˜@Hv!ý¡iÀ±'©¡‘â\äí«ã¶Pƒ­ÏhÎð!Ëí~·ýäÊïih6¹S»d×á–ZsG;÷±XV®ëÛéñ6?ÛK3eî×É.ûxŠºvå¼yÒÝ=mºáhÏEù-u–úxvO¿¶‡gWnãøÇ.'·pëµëì”}iƯÍÅ\9Ç^ö]Þï§ûKÎü«øyÍUóû’2íÐÙulZKM<[Q/òµvõG¾Ö…Åî¿}ÿˆOíï&u…âÅ"/™ßÉïàrnR¯–3ç%sE®À+ò +ìÉÈ,dÉìYïQïYïQïßÈoà-y Þ‘w`ºy¸:8ö èØ3 g C€ƒÐ_à/Ì +²Â¬ +Ì +²Â¬ÌYú üEÉ +~%¿‚é/ðú ü…þ¡¿À_x¶‚³Už¿âü•n +7¥›ÂMé¦pSº)Ü”> +¥ÂGé£ðÑ y3Ãã«c,òôºÏ™ko)åq›G|ž3LXíó/‡Ñåîâ¯ËÍR +endstream +endobj +143 0 obj +<< +/BaseFont /WIWYXQ+Wingdings-Regular +/DescendantFonts 526 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 527 0 R +/Type /Font +>> +endobj +144 0 obj +<< +/BaseFont /ORVCPG+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 137 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 528 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 528 0 0 730 +602 0 0 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 0 610 539 0 596 0 292 0 0 292 871 599 589 +610 0 403 451 383 598 551] +>> +endobj +145 0 obj +<< +/BaseFont /KGOZLO+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 158 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 529 0 R +/Type /Font +/Widths [202] +>> +endobj +146 0 obj +<< +/BaseFont /IDPNJS+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 141 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 530 0 R +/Type /Font +/Widths [212] +>> +endobj +147 0 obj +<< +/BaseFont /HZFHVU+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 531 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 532 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 827 676 0 +0 0 569 0 0 666 0 0 0 0 0 0 0 0 0 0 +0 508 585 0 581 516 0 0 0 256 0 0 257 0 572 564 +585 0 356 417 351 0 0 0 0 500] +>> +endobj +148 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 533 0 R +/FontName /IQHSND+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +149 0 obj +<< +/Filter /FlateDecode +/Length 476 +>> +stream +H‰\“Ën£@E÷|E/“EÄ«»*HÈ’c'’IFã™ÀÐvb@m¼ðߧ/7ÊHƒdsÜêS •nvÛÝÐÏ&ýÆvïgsì‡.øËx ­7ê‡$/L×·ó÷Õòßž›)Icx»Ìþ¼ŽcR×&ýo^æp3wën<øû$}ýp2w7û{“î¯ÓôéÏ~˜MfV+Óùc,ôÚLoÍÙ›t‰=ìºx¿Ÿo1óï‰?·É›b¹Î)ÓŽ¿LMëC3œ|RgñX™ú%«ÄÝ÷cìpl?šÔβxŠüH~Wä +¼!oÀ[òüL~¿ã¢uÉš%j–99ä\’K°%[ðš¼?‘Ÿ"[Ö±¨cYÇ¢ŽeÖ"kéláléláléláléláléláìèìàìXß¡¾£§ƒ§ãZk9Gv‘…n7aVfYaVfeÉ +YÀJV0ß…à]ûô%ÜÁþ÷G°?Â~ý +ûô+ìWЯ°_A¿Ê~ý*ýþJ…¿Ò_á¯ôWø+ýþJ…¿Ò_á¯ôWø+ýþJ……u‹,Ç3UA®–öûëÄç§ÌüÌF{ !ŽÅ2ŠË<`úÁÿLë4N&¦ðK¾ ·îk +endstream +endobj +150 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/R/S/a/b/comma/d/e/four/g/i/l/m/n/o/period/r/s/space/t/two/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 534 0 R +/FontName /JODNBB+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +151 0 obj +<< +/Filter /FlateDecode +/Length 234 +>> +stream +H‰\ÏjÃ0 Æï~ +ÛC±ë]M`t rØ–í[É ‹mç·Ÿì–&°…øôŸ$/ýSCùNÉ X` +Ñ®i#‡0â¢8kðÁ•[Õ~·Ø,$Ãþ\ú8%a È×B;}ñ(äy¤g8|]†#ÈaËùŒtxœxЋͯvA ;õžõPö3Ÿ{FЭ>_͸äqÍÖ!Ù8£0Š£óÌÑ ŒþŸ®¯Ô8¹oKÂ> +endobj +153 0 obj +<< +/BaseFont /JODNBB+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 150 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 537 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +154 0 obj +<< +/BaseFont /DNEYVN+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 538 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 539 0 R +/Type /Font +/Widths [202] +>> +endobj +155 0 obj +<< +/BaseFont /BKFMTR+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 540 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 541 0 R +/Type /Font +/Widths [212] +>> +endobj +156 0 obj +<< +/BaseFont /ZHBARV+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 542 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 543 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 0 536 0 536 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 573 0 0 0 0 0 0 0 0 +0 0 0 417 351 569] +>> +endobj +157 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [28 /f_f_i /parenright.cap /parenleft.cap /f_i] +/Type /Encoding +>> +endobj +158 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/b/c/colon/d/e/eight/f/f_f_i/f_i/five/four/g/hyphen/i/l/m/n/nine/o/one/p/parenleft.cap/parenright.cap/period/quoteleft/r/s/seven/six/space/t/three/two/u/v/x/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 544 0 R +/FontName /KGOZLO+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +159 0 obj +<< +/Filter /FlateDecode +/Length 522 +>> +stream +H‰\”ÍŽ¢@…÷TÁÂ¥i“Eîê¦ç«é»ºû$‹Û®ûöÜ%eéÒ_qð6÷´©»SxNÒC†¦½¸§ßÛóK÷¾ÿ®¡]æÖkW‡sü£oÇþûñ\:-{Ù×q¼/qÍ׌G\>]/(Suu¸õÇ* Çö’2‹Ÿµ+ßãg„¶þoÜ„ËNçêÏqHÊÅ6NÎ2³ùX­ão»é·|ÊoÌKä÷¯¹Ë3ŽeÈóšò¼æ-æ‚s +Ì)Ì äœ9G.˜ dadeVdc6dÏì‘—Ìð+VÌp+6Ì›˜…\WÈp…\WÈp…\WÈp…\WÈ°„,™X¯Ì¯Èì6žbf?‚~„ýúvOI©ìJÑ•ÒYá¬tV8+ÎJg…³ÒYá¬tV8+ÎÊ®])ýþJ…¿‘k๮‘k๮‘kàšÍÏ2¹®‘5=36?oèÄ؉¡c'†Nl~ÎЉg'xúxøxúxøxúxøxúxøxúxøx޻ǽ{úxø¬p¿y¶XN›eÞØ6qw»Ï=Y݇!nÇé0íCìÀ¦ Ÿo‰¾ë]\…#ù'À¢š +endstream +endobj +160 0 obj +<< +/BaseFont /AFJCBI+Wingdings-Regular +/DescendantFonts 545 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 546 0 R +/Type /Font +>> +endobj +161 0 obj +<< +/BaseFont /ORVCPG+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 137 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 547 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 0 0 573 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +162 0 obj +<< +/BaseFont /KGOZLO+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 158 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 548 0 R +/Type /Font +/Widths [202] +>> +endobj +163 0 obj +<< +/BaseFont /IDPNJS+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 141 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 549 0 R +/Type /Font +/Widths [212] +>> +endobj +164 0 obj +<< +/BaseFont /HZFHVU+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 531 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 550 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 0 536 0 536 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 573 0 0 0 0 0 0 0 0 +0 0 0 417 351 569] +>> +endobj +165 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 551 0 R +/FontName /HDAGVU+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +166 0 obj +<< +/Filter /FlateDecode +/Length 337 +>> +stream +H‰\’ÍŠƒ0€ïyŠ9¶‡bk[C!ŶàaXwÀƱ+¬1D{ðíw&Sº°/d&~f’å©tÝÉ{l…´kŽÃ=X„+Þ:§6)4³ø¶}íUBÅÕgÆùFdìÐàèk‹¡v7TfM#s¡‘+tÍ¿õt+e×Ö~×A™”“×k +Êl‘)(³Ë"S > Ÿˆ÷ÛÈ”É6‘)§Â)³äd1g'¼cÞ ï™eÿŒ÷Ï´°f>˜ á‚Y2vÈÎÂgæ‹0ý¬Ñâ ÙA‹ƒf-š´8hvÐâ ÙAËw)ð¡=N‡º ÏÞØ{Ô–xb?¸ÃçmñƒªâGý +0µl£@ +endstream +endobj +167 0 obj +[552 0 R] +endobj +168 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\PÁjÃ0 ½û+tlÅm¶ÃÁPZ +9¬ËöŽ­¤†Æ6ŠsÈßOvKØâñÞO’‡æØx—@~R0-&è·„S˜É t88/vXgҕߌ: +Éæv™Žïƒ¨k_LN‰Xímèp-ä…,’ó¬~íd;ÇxÃ}‚-({ô¡ãY²Ø6eÞ¥eÞ?Å÷ª‚w÷0&Xœ¢6HÚ(ê-—‚úÄ¥zû¯î®®7WMEýÂjnï*£·×‚¸eïC•§ð²ðŒhf"NW.Rbå@Îãóh1D`W~âW€(¬rO +endstream +endobj +169 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [31 /f_i] +/Type /Encoding +>> +endobj +170 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_i/space/parenleft/parenright/comma/period/slash/zero/one/two/three/four/five/six/seven/eight/A/B/C/D/G/L/M/N/P/R/S/U/V/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/quoteright/endash) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 553 0 R +/FontName /SENUTY+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +171 0 obj +<< +/Filter /FlateDecode +/Length 481 +>> +stream +H‰\“ÍŠÛ0…÷~ +-gƒÿ¤{'`™d²èMûŽ­¤†Æ6Š³ÈÛWG'L¡ÇŸ±ïá;HÊ·ûÝ~“Swð‹9 cüuº…Λ£?cVV¦ºåñ”þ»K;gy>ܯ‹¿ìÇÓ”5ÉÄ—×%ÜÍÓ¦ŸŽþ9Ë¿…Þ‡a<›§_ÛóÉ·yþã/~\LaÖkÓûS úÒÎ_Û‹7y{Ù÷ñý°Ü_âÌ¿/~Þgoªô\R¦›zÛ·v<û¬)âomšø[g~ìÿ{ï„cÇS÷» YS~Ä‹B$^«uÖTEzŽ·È¯äWðŠœ¾Ù’·àwò;˜Yñ–55sjäÔ%¹Wä +\“k°%[°#;°¬dÓ­†›e¾E¾e¾E¾e¾E¾e¾E¾eŽEŽe‹.vGÞÙË¢—c‡.ŽùùŽùùŽÎÎŽÎÎB7›pV0+œÌ +ÝnÂAŽÈcmÀt8 » º ×%­lÈðù ÌŽ‚ŽÂŽ‚ŽÂŽ‚ŽòØX;e_E_¥¿Â_é¯ðWú+ü•þ +¥¿Â_é¯ðWú+ü•þ +¥¿Â…üª( ¹N›ø±[±ã©3Ÿg¥»…I:šé|àd £ÿ<½ó4›8…+û+Ànõñ +endstream +endobj +172 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +173 0 obj +<< +/BaseFont /XMONEE+Wingdings-Regular +/DescendantFonts 554 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 555 0 R +/Type /Font +>> +endobj +174 0 obj +<< +/BaseFont /SISIMO+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 556 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 557 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +175 0 obj +<< +/BaseFont /YNJYSC+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 558 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 559 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 0 536 0 536 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 573 0 0 0 0 0 0 0 0 +0 0 0 417 351 569] +>> +endobj +176 0 obj +<< +/BaseFont /ATCFUY+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 560 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 561 0 R +/Type /Font +/Widths [212] +>> +endobj +177 0 obj +<< +/BaseFont /MOAUGA+Wingdings-Regular +/DescendantFonts 562 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 563 0 R +/Type /Font +>> +endobj +178 0 obj +<< +/BaseFont /IDXWCI+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 564 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 565 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +179 0 obj +<< +/BaseFont /SFAZMO+MyriadPro-Light +/Encoding 566 0 R +/FirstChar 31 +/FontDescriptor 567 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 568 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +180 0 obj +<< +/K [186 0 R 187 0 R 188 0 R 190 0 R 193 0 R 194 0 R 196 0 R 569 0 R 570 0 R 571 0 R 572 0 R 200 0 R 201 0 R 203 0 R 204 0 R 209 0 R +210 0 R 211 0 R 212 0 R 213 0 R 217 0 R 221 0 R 223 0 R 229 0 R 230 0 R 236 0 R 237 0 R 241 0 R 246 0 R 248 0 R 249 0 R 251 0 R +252 0 R 253 0 R 254 0 R 255 0 R 258 0 R 259 0 R 262 0 R 263 0 R 264 0 R 573 0 R 278 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R +579 0 R 580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 279 0 R 280 0 R +285 0 R 286 0 R 333 0 R 334 0 R 335 0 R 338 0 R 339 0 R 340 0 R 593 0 R 362 0 R 368 0 R 369 0 R 371 0 R 372 0 R 594 0 R 392 0 R +397 0 R 399 0 R 400 0 R 403 0 R 404 0 R 408 0 R 409 0 R 414 0 R 415 0 R 416 0 R 418 0 R 419 0 R 421 0 R 422 0 R 425 0 R 426 0 R +429 0 R 430 0 R 432 0 R 434 0 R 435 0 R 595 0 R 448 0 R 449 0 R 450 0 R 454 0 R 455 0 R 456 0 R 458 0 R 596 0 R 473 0 R 477 0 R +478 0 R 479 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R +597 0 R] +/P 98 0 R +/S /Story +>> +endobj +181 0 obj +<< +/K 598 0 R +/P 98 0 R +/S /Story +>> +endobj +182 0 obj +<< +/K 363 0 R +/P 98 0 R +/S /Story +>> +endobj +183 0 obj +<< +/K 395 0 R +/P 98 0 R +/S /Story +>> +endobj +184 0 obj +<< +/K [499 0 R 599 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R] +/P 98 0 R +/S /Story +>> +endobj +185 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 186 0 R +/Pg 10 0 R +/S /Span +>> +endobj +186 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [185 0 R 1] +/P 180 0 R +/Pg 10 0 R +/S /Kapitel-Head +>> +endobj +187 0 obj +<< +/C /Pa1 +/K 2 +/P 180 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +188 0 obj +<< +/C /Pa2 +/K [3 4 5 189 0 R 7 8 9 10] +/P 180 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +189 0 obj +<< +/ActualText +/K 6 +/P 188 0 R +/Pg 10 0 R +/S /Span +>> +endobj +190 0 obj +<< +/C /Pa3 +/K [11 12 13 14 15 16 17 191 0 R 19 192 0 R 21] +/P 180 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +191 0 obj +<< +/ActualText +/K 18 +/P 190 0 R +/Pg 10 0 R +/S /Span +>> +endobj +192 0 obj +<< +/ActualText +/K 20 +/P 190 0 R +/Pg 10 0 R +/S /Span +>> +endobj +193 0 obj +<< +/C /Pa3 +/K [22 23 24 25 26] +/P 180 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +194 0 obj +<< +/C /Pa3 +/K [27 28 29 600 0 R 31 32 33 34 35] +/P 180 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +195 0 obj +<< +/C /A4 +/K 30 +/P 601 0 R +/Pg 10 0 R +/S /Span +>> +endobj +196 0 obj +<< +/C /Pa3 +/K [36 197 0 R 38 198 0 R 40 41 42 199 0 R 44 45 46] +/P 180 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +197 0 obj +<< +/ActualText +/K 37 +/P 196 0 R +/Pg 10 0 R +/S /Span +>> +endobj +198 0 obj +<< +/ActualText +/K 39 +/P 196 0 R +/Pg 10 0 R +/S /Span +>> +endobj +199 0 obj +<< +/ActualText +/K 43 +/P 196 0 R +/Pg 10 0 R +/S /Span +>> +endobj +200 0 obj +<< +/C /Pa1 +/K 98 +/P 180 0 R +/Pg 12 0 R +/S /Zwischenhead_1 +>> +endobj +201 0 obj +<< +/C /Pa2 +/K [99 202 0 R 101 102 103] +/P 180 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +202 0 obj +<< +/ActualText +/K 100 +/P 201 0 R +/Pg 12 0 R +/S /Span +>> +endobj +203 0 obj +<< +/C /Pa6 +/K 104 +/P 180 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +204 0 obj +<< +/C /Pa2 +/K [105 205 0 R 107 206 0 R 109 207 0 R 111 112 113 114 208 0 R 116] +/P 180 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +205 0 obj +<< +/ActualText +/K 106 +/P 204 0 R +/Pg 12 0 R +/S /Span +>> +endobj +206 0 obj +<< +/ActualText +/K 108 +/P 204 0 R +/Pg 12 0 R +/S /Span +>> +endobj +207 0 obj +<< +/ActualText +/K 110 +/P 204 0 R +/Pg 12 0 R +/S /Span +>> +endobj +208 0 obj +<< +/ActualText +/K 115 +/P 204 0 R +/Pg 12 0 R +/S /Span +>> +endobj +209 0 obj +<< +/C /Pa6 +/K 117 +/P 180 0 R +/Pg 12 0 R +/S /Zwischenhead_2 +>> +endobj +210 0 obj +<< +/C /Pa7 +/K 118 +/P 180 0 R +/Pg 12 0 R +/S /Zwischenhead_3 +>> +endobj +211 0 obj +<< +/C /Pa2 +/K [119 120 121 122 123 124 125 126 127] +/P 180 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +212 0 obj +<< +/C /Pa7 +/K 128 +/P 180 0 R +/Pg 12 0 R +/S /Zwischenhead_3 +>> +endobj +213 0 obj +<< +/C /Pa2 +/K [129 214 0 R 131 132 215 0 R 134 135 136 137 138 139 140 141 142 143 144 +145 146 216 0 R << +/MCID 148 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 149 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 150 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 151 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 152 +/Pg 13 0 R +/Type /MCR +>>] +/P 180 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +214 0 obj +<< +/ActualText +/K 130 +/P 213 0 R +/Pg 12 0 R +/S /Span +>> +endobj +215 0 obj +<< +/ActualText +/K 133 +/P 213 0 R +/Pg 12 0 R +/S /Span +>> +endobj +216 0 obj +<< +/ActualText +/K 147 +/P 213 0 R +/Pg 12 0 R +/S /Span +>> +endobj +217 0 obj +<< +/C /Pa3 +/K [153 154 218 0 R 156 219 0 R 158 220 0 R 160 161 162 163 164 165] +/P 180 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +218 0 obj +<< +/ActualText +/K 155 +/P 217 0 R +/Pg 13 0 R +/S /Span +>> +endobj +219 0 obj +<< +/ActualText +/K 157 +/P 217 0 R +/Pg 13 0 R +/S /Span +>> +endobj +220 0 obj +<< +/ActualText +/K 159 +/P 217 0 R +/Pg 13 0 R +/S /Span +>> +endobj +221 0 obj +<< +/C /Pa3 +/K [166 222 0 R 168 169 170 171] +/P 180 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +222 0 obj +<< +/ActualText +/K 167 +/P 221 0 R +/Pg 13 0 R +/S /Span +>> +endobj +223 0 obj +<< +/C /Pa3 +/K [172 173 174 175 176 224 0 R 178 179 225 0 R 181 182 183 184 226 0 R 186 187 +188 189 227 0 R 191 192 602 0 R 194] +/P 180 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +224 0 obj +<< +/ActualText +/K 177 +/P 223 0 R +/Pg 13 0 R +/S /Span +>> +endobj +225 0 obj +<< +/ActualText +/K 180 +/P 223 0 R +/Pg 13 0 R +/S /Span +>> +endobj +226 0 obj +<< +/ActualText +/K 185 +/P 223 0 R +/Pg 13 0 R +/S /Span +>> +endobj +227 0 obj +<< +/ActualText +/K 190 +/P 223 0 R +/Pg 13 0 R +/S /Span +>> +endobj +228 0 obj +<< +/C /A4 +/K 193 +/P 603 0 R +/Pg 13 0 R +/S /Span +>> +endobj +229 0 obj +<< +/C /Pa7 +/K 195 +/P 180 0 R +/Pg 13 0 R +/S /Zwischenhead_3 +>> +endobj +230 0 obj +<< +/C /Pa2 +/K [196 231 0 R 198 232 0 R 200 201 604 0 R 203 204 205 << +/MCID 206 +/Pg 14 0 R +/Type /MCR +>> 234 0 R << +/MCID 208 +/Pg 14 0 R +/Type /MCR +>> 235 0 R << +/MCID 210 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 211 +/Pg 14 0 R +/Type /MCR +>> +<< +/MCID 212 +/Pg 14 0 R +/Type /MCR +>>] +/P 180 0 R +/Pg 13 0 R +/S /Lauftext_1._Abs +>> +endobj +231 0 obj +<< +/ActualText +/K 197 +/P 230 0 R +/Pg 13 0 R +/S /Span +>> +endobj +232 0 obj +<< +/ActualText +/K 199 +/P 230 0 R +/Pg 13 0 R +/S /Span +>> +endobj +233 0 obj +<< +/C /A4 +/K 202 +/P 605 0 R +/Pg 13 0 R +/S /Span +>> +endobj +234 0 obj +<< +/ActualText +/K 207 +/P 230 0 R +/Pg 14 0 R +/S /Span +>> +endobj +235 0 obj +<< +/ActualText +/K 209 +/P 230 0 R +/Pg 14 0 R +/S /Span +>> +endobj +236 0 obj +<< +/C /Pa6 +/K 213 +/P 180 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +237 0 obj +<< +/C /Pa2 +/K [214 215 238 0 R 217 239 0 R 219 220 221 222 223 240 0 R 225] +/P 180 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +238 0 obj +<< +/ActualText +/K 216 +/P 237 0 R +/Pg 14 0 R +/S /Span +>> +endobj +239 0 obj +<< +/ActualText +/K 218 +/P 237 0 R +/Pg 14 0 R +/S /Span +>> +endobj +240 0 obj +<< +/ActualText +/K 224 +/P 237 0 R +/Pg 14 0 R +/S /Span +>> +endobj +241 0 obj +<< +/C /Pa3 +/K [226 242 0 R 228 229 230 243 0 R 232 244 0 R 234 235 236 245 0 R 238] +/P 180 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +242 0 obj +<< +/ActualText +/K 227 +/P 241 0 R +/Pg 14 0 R +/S /Span +>> +endobj +243 0 obj +<< +/ActualText +/K 231 +/P 241 0 R +/Pg 14 0 R +/S /Span +>> +endobj +244 0 obj +<< +/ActualText +/K 233 +/P 241 0 R +/Pg 14 0 R +/S /Span +>> +endobj +245 0 obj +<< +/ActualText +/K 237 +/P 241 0 R +/Pg 14 0 R +/S /Span +>> +endobj +246 0 obj +<< +/C /Pa3 +/K [239 240 241 242 247 0 R 244] +/P 180 0 R +/Pg 14 0 R +/S /Lauftext +>> +endobj +247 0 obj +<< +/ActualText +/K 243 +/P 246 0 R +/Pg 14 0 R +/S /Span +>> +endobj +248 0 obj +<< +/C /Pa6 +/K 245 +/P 180 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +249 0 obj +<< +/C /Pa2 +/K [246 250 0 R 248] +/P 180 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +250 0 obj +<< +/ActualText +/K 247 +/P 249 0 R +/Pg 14 0 R +/S /Span +>> +endobj +251 0 obj +<< +/C /Pa6 +/K 249 +/P 180 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +252 0 obj +<< +/C /Pa7 +/K 250 +/P 180 0 R +/Pg 14 0 R +/S /Zwischenhead_3 +>> +endobj +253 0 obj +<< +/C /Pa2 +/K [251 252 253 254] +/P 180 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +254 0 obj +<< +/C /Pa7 +/K 255 +/P 180 0 R +/Pg 15 0 R +/S /Zwischenhead_3 +>> +endobj +255 0 obj +<< +/C /Pa2 +/K [256 256 0 R 258 259 260 261 262 257 0 R 264] +/P 180 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +256 0 obj +<< +/ActualText +/K 257 +/P 255 0 R +/Pg 15 0 R +/S /Span +>> +endobj +257 0 obj +<< +/ActualText +/K 263 +/P 255 0 R +/Pg 15 0 R +/S /Span +>> +endobj +258 0 obj +<< +/C /Pa1 +/K 265 +/P 180 0 R +/Pg 15 0 R +/S /Zwischenhead_1 +>> +endobj +259 0 obj +<< +/C /Pa2 +/K [266 267 268 260 0 R 270 261 0 R 272 273 274 275] +/P 180 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +260 0 obj +<< +/ActualText +/K 269 +/P 259 0 R +/Pg 15 0 R +/S /Span +>> +endobj +261 0 obj +<< +/ActualText +/K 271 +/P 259 0 R +/Pg 15 0 R +/S /Span +>> +endobj +262 0 obj +<< +/C /Pa3 +/K [276 277 278 279 280 281 282 283] +/P 180 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +263 0 obj +<< +/C /Pa6 +/K 284 +/P 180 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +264 0 obj +<< +/C /Pa2 +/K 285 +/P 180 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +265 0 obj +<< +/C /A5 +/K 286 +/P 606 0 R +/Pg 15 0 R +/S /Span +>> +endobj +266 0 obj +<< +/C /A5 +/K 287 +/P 606 0 R +/Pg 15 0 R +/S /Span +>> +endobj +267 0 obj +<< +/C /A7 +/K 288 +/P 268 0 R +/Pg 15 0 R +/S /Span +>> +endobj +268 0 obj +<< +/K [267 0 R 289 290 291 292 293 294 295] +/P 607 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +269 0 obj +<< +/C /A5 +/K 296 +/P 608 0 R +/Pg 15 0 R +/S /Span +>> +endobj +270 0 obj +<< +/C /A5 +/K 297 +/P 608 0 R +/Pg 15 0 R +/S /Span +>> +endobj +271 0 obj +<< +/C /A7 +/K 298 +/P 272 0 R +/Pg 15 0 R +/S /Span +>> +endobj +272 0 obj +<< +/K [271 0 R 299 300 301 273 0 R 303] +/P 609 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +273 0 obj +<< +/ActualText +/K 302 +/P 272 0 R +/Pg 15 0 R +/S /Span +>> +endobj +274 0 obj +<< +/C /A5 +/K 304 +/P 610 0 R +/Pg 15 0 R +/S /Span +>> +endobj +275 0 obj +<< +/C /A5 +/K 305 +/P 610 0 R +/Pg 15 0 R +/S /Span +>> +endobj +276 0 obj +<< +/C /A7 +/K 306 +/P 277 0 R +/Pg 15 0 R +/S /Span +>> +endobj +277 0 obj +<< +/K [276 0 R 307 308 309 310] +/P 611 0 R +/Pg 15 0 R +/S /LBody +>> +endobj +278 0 obj +<< +/C /Pa3 +/K [311 312 313] +/P 180 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +279 0 obj +<< +/C /Pa6 +/K 314 +/P 180 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +280 0 obj +<< +/C /Pa2 +/K [315 281 0 R 317 318 282 0 R 320 321 283 0 R 323 324 325 326 284 0 R 328] +/P 180 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +281 0 obj +<< +/ActualText +/K 316 +/P 280 0 R +/Pg 16 0 R +/S /Span +>> +endobj +282 0 obj +<< +/ActualText +/K 319 +/P 280 0 R +/Pg 16 0 R +/S /Span +>> +endobj +283 0 obj +<< +/ActualText +/K 322 +/P 280 0 R +/Pg 16 0 R +/S /Span +>> +endobj +284 0 obj +<< +/ActualText +/K 327 +/P 280 0 R +/Pg 16 0 R +/S /Span +>> +endobj +285 0 obj +<< +/C /Pa6 +/K 329 +/P 180 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +286 0 obj +<< +/C /Pa2 +/K [330 331 332 333 334 287 0 R 336 288 0 R 338 339 340 341 289 0 R 343] +/P 180 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +287 0 obj +<< +/ActualText +/K 335 +/P 286 0 R +/Pg 16 0 R +/S /Span +>> +endobj +288 0 obj +<< +/ActualText +/K 337 +/P 286 0 R +/Pg 16 0 R +/S /Span +>> +endobj +289 0 obj +<< +/ActualText +/K 342 +/P 286 0 R +/Pg 16 0 R +/S /Span +>> +endobj +290 0 obj +<< +/C /Pa10 +/K 344 +/P 612 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_wei +>> +endobj +291 0 obj +<< +/A << +/O /Layout +/LineHeight 11.0 +>> +/K 345 +/P 613 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_sch +>> +endobj +292 0 obj +<< +/C /Pa10 +/K 346 +/P 614 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_sch +>> +endobj +293 0 obj +<< +/C /Pa10 +/K [347 348 349] +/P 615 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_sch +>> +endobj +294 0 obj +<< +/C /Pa10 +/K [350 351] +/P 616 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_sch +>> +endobj +295 0 obj +<< +/C /Pa10 +/K 352 +/P 617 0 R +/Pg 16 0 R +/S /Tab._Versal_bold_sch +>> +endobj +296 0 obj +<< +/C /Pa12 +/K 353 +/P 618 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +297 0 obj +<< +/C /Pa12 +/K 354 +/P 619 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +298 0 obj +<< +/C /Pa12 +/K 355 +/P 619 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +299 0 obj +<< +/C /Pa13 +/K 356 +/P 620 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +300 0 obj +<< +/C /Pa13 +/K 357 +/P 621 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +301 0 obj +<< +/C /Pa13 +/K 358 +/P 622 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +302 0 obj +<< +/C /Pa12 +/K 359 +/P 623 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +303 0 obj +<< +/C /Pa12 +/K [360 304 0 R 362] +/P 624 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +304 0 obj +<< +/ActualText +/K 361 +/P 303 0 R +/Pg 16 0 R +/S /Span +>> +endobj +305 0 obj +<< +/C /Pa12 +/K 363 +/P 625 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +306 0 obj +<< +/C /Pa12 +/K 364 +/P 626 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +307 0 obj +<< +/C /Pa12 +/K 365 +/P 627 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +308 0 obj +<< +/C /Pa12 +/K [366 309 0 R 368] +/P 628 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +309 0 obj +<< +/ActualText +/K 367 +/P 308 0 R +/Pg 16 0 R +/S /Span +>> +endobj +310 0 obj +<< +/C /Pa12 +/K 369 +/P 629 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +311 0 obj +<< +/C /Pa12 +/K 370 +/P 629 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +312 0 obj +<< +/C /Pa12 +/K 371 +/P 630 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +313 0 obj +<< +/C /Pa12 +/K 372 +/P 631 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +314 0 obj +<< +/C /Pa12 +/K 373 +/P 632 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +315 0 obj +<< +/C /Pa12 +/K [374 316 0 R 376 317 0 R 378] +/P 633 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +316 0 obj +<< +/ActualText +/K 375 +/P 315 0 R +/Pg 16 0 R +/S /Span +>> +endobj +317 0 obj +<< +/ActualText +/K 377 +/P 315 0 R +/Pg 16 0 R +/S /Span +>> +endobj +318 0 obj +<< +/C /Pa12 +/K 379 +/P 634 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +319 0 obj +<< +/C /Pa12 +/K 380 +/P 635 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +320 0 obj +<< +/C /Pa12 +/K 381 +/P 636 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +321 0 obj +<< +/C /Pa12 +/K 382 +/P 637 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +322 0 obj +<< +/C /Pa12 +/K [383 384] +/P 638 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +323 0 obj +<< +/C /Pa12 +/K 385 +/P 639 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +324 0 obj +<< +/C /Pa12 +/K 386 +/P 640 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +325 0 obj +<< +/C /Pa12 +/K 387 +/P 641 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +326 0 obj +<< +/C /Pa12 +/K 388 +/P 642 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +327 0 obj +<< +/C /Pa12 +/K [389 390] +/P 643 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +328 0 obj +<< +/C /Pa12 +/K [391 329 0 R 393] +/P 644 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +329 0 obj +<< +/ActualText +/K 392 +/P 328 0 R +/Pg 16 0 R +/S /Span +>> +endobj +330 0 obj +<< +/C /Pa12 +/K 394 +/P 645 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +331 0 obj +<< +/C /Pa12 +/K 395 +/P 646 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +332 0 obj +<< +/C /Pa12 +/K 396 +/P 647 0 R +/Pg 16 0 R +/S /Tab._Lauftext_light_ +>> +endobj +333 0 obj +<< +/C /Pa7 +/K 397 +/P 180 0 R +/Pg 17 0 R +/S /Zwischenhead_3 +>> +endobj +334 0 obj +<< +/C /Pa2 +/K [398 399 400 401] +/P 180 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +335 0 obj +<< +/C /Pa3 +/K [402 403 404 405 406 407 408 336 0 R 410 411 412 413 337 0 R 415 416 417] +/P 180 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +336 0 obj +<< +/ActualText +/K 409 +/P 335 0 R +/Pg 17 0 R +/S /Span +>> +endobj +337 0 obj +<< +/ActualText +/K 414 +/P 335 0 R +/Pg 17 0 R +/S /Span +>> +endobj +338 0 obj +<< +/C /Pa3 +/K [418 419 420 421 422 423] +/P 180 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +339 0 obj +<< +/C /Pa7 +/K 424 +/P 180 0 R +/Pg 17 0 R +/S /Zwischenhead_3 +>> +endobj +340 0 obj +<< +/C /Pa2 +/K [425 426 341 0 R 428 429 430 431 342 0 R 433 434 343 0 R 436] +/P 180 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +341 0 obj +<< +/ActualText +/K 427 +/P 340 0 R +/Pg 17 0 R +/S /Span +>> +endobj +342 0 obj +<< +/ActualText +/K 432 +/P 340 0 R +/Pg 17 0 R +/S /Span +>> +endobj +343 0 obj +<< +/ActualText +/K 435 +/P 340 0 R +/Pg 17 0 R +/S /Span +>> +endobj +344 0 obj +<< +/C /A5 +/K 437 +/P 648 0 R +/Pg 17 0 R +/S /Span +>> +endobj +345 0 obj +<< +/C /A5 +/K 438 +/P 648 0 R +/Pg 17 0 R +/S /Span +>> +endobj +346 0 obj +<< +/K 439 +/P 649 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +347 0 obj +<< +/C /A5 +/K 440 +/P 650 0 R +/Pg 17 0 R +/S /Span +>> +endobj +348 0 obj +<< +/C /A5 +/K 441 +/P 650 0 R +/Pg 17 0 R +/S /Span +>> +endobj +349 0 obj +<< +/K 442 +/P 651 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +350 0 obj +<< +/C /A5 +/K 443 +/P 652 0 R +/Pg 17 0 R +/S /Span +>> +endobj +351 0 obj +<< +/C /A5 +/K 444 +/P 652 0 R +/Pg 17 0 R +/S /Span +>> +endobj +352 0 obj +<< +/K 445 +/P 653 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +353 0 obj +<< +/C /A5 +/K 446 +/P 654 0 R +/Pg 17 0 R +/S /Span +>> +endobj +354 0 obj +<< +/C /A5 +/K 447 +/P 654 0 R +/Pg 17 0 R +/S /Span +>> +endobj +355 0 obj +<< +/K 448 +/P 655 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +356 0 obj +<< +/C /A5 +/K 449 +/P 656 0 R +/Pg 17 0 R +/S /Span +>> +endobj +357 0 obj +<< +/C /A5 +/K 450 +/P 656 0 R +/Pg 17 0 R +/S /Span +>> +endobj +358 0 obj +<< +/K 451 +/P 657 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +359 0 obj +<< +/C /A5 +/K 452 +/P 658 0 R +/Pg 17 0 R +/S /Span +>> +endobj +360 0 obj +<< +/C /A5 +/K 453 +/P 658 0 R +/Pg 17 0 R +/S /Span +>> +endobj +361 0 obj +<< +/K 454 +/P 659 0 R +/Pg 17 0 R +/S /LBody +>> +endobj +362 0 obj +<< +/C /Pa3 +/K [455 456 457 << +/MCID 461 +/Pg 18 0 R +/Type /MCR +>> 364 0 R << +/MCID 463 +/Pg 18 0 R +/Type /MCR +>> 365 0 R << +/MCID 465 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 466 +/Pg 18 0 R +/Type /MCR +>> 366 0 R << +/MCID 468 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 469 +/Pg 18 0 R +/Type /MCR +>> 367 0 R << +/MCID 471 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 472 +/Pg 18 0 R +/Type /MCR +>>] +/P 180 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +363 0 obj +<< +/C /Pa16 +/K [458 459 460] +/P 182 0 R +/Pg 17 0 R +/S /Absatzformat_2 +>> +endobj +364 0 obj +<< +/ActualText +/K 462 +/P 362 0 R +/Pg 18 0 R +/S /Span +>> +endobj +365 0 obj +<< +/ActualText +/K 464 +/P 362 0 R +/Pg 18 0 R +/S /Span +>> +endobj +366 0 obj +<< +/ActualText +/K 467 +/P 362 0 R +/Pg 18 0 R +/S /Span +>> +endobj +367 0 obj +<< +/ActualText +/K 470 +/P 362 0 R +/Pg 18 0 R +/S /Span +>> +endobj +368 0 obj +<< +/C /Pa7 +/K 473 +/P 180 0 R +/Pg 18 0 R +/S /Zwischenhead_3 +>> +endobj +369 0 obj +<< +/C /Pa2 +/K [474 475 476 370 0 R 478 479 480] +/P 180 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +370 0 obj +<< +/ActualText +/K 477 +/P 369 0 R +/Pg 18 0 R +/S /Span +>> +endobj +371 0 obj +<< +/C /Pa7 +/K 481 +/P 180 0 R +/Pg 18 0 R +/S /Zwischenhead_3 +>> +endobj +372 0 obj +<< +/C /Pa2 +/K [482 373 0 R 484 485 374 0 R 487] +/P 180 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +373 0 obj +<< +/ActualText +/K 483 +/P 372 0 R +/Pg 18 0 R +/S /Span +>> +endobj +374 0 obj +<< +/ActualText +/K 486 +/P 372 0 R +/Pg 18 0 R +/S /Span +>> +endobj +375 0 obj +<< +/C /A5 +/K 488 +/P 660 0 R +/Pg 18 0 R +/S /Span +>> +endobj +376 0 obj +<< +/C /A5 +/K 489 +/P 660 0 R +/Pg 18 0 R +/S /Span +>> +endobj +377 0 obj +<< +/K [490 378 0 R 492 493] +/P 661 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +378 0 obj +<< +/ActualText +/K 491 +/P 377 0 R +/Pg 18 0 R +/S /Span +>> +endobj +379 0 obj +<< +/C /A5 +/K 494 +/P 662 0 R +/Pg 18 0 R +/S /Span +>> +endobj +380 0 obj +<< +/C /A5 +/K 495 +/P 662 0 R +/Pg 18 0 R +/S /Span +>> +endobj +381 0 obj +<< +/K [496 382 0 R 498 499 383 0 R 501 384 0 R 503 504 385 0 R 506 507 508 509] +/P 663 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +382 0 obj +<< +/ActualText +/K 497 +/P 381 0 R +/Pg 18 0 R +/S /Span +>> +endobj +383 0 obj +<< +/ActualText +/K 500 +/P 381 0 R +/Pg 18 0 R +/S /Span +>> +endobj +384 0 obj +<< +/ActualText +/K 502 +/P 381 0 R +/Pg 18 0 R +/S /Span +>> +endobj +385 0 obj +<< +/ActualText +/K 505 +/P 381 0 R +/Pg 18 0 R +/S /Span +>> +endobj +386 0 obj +<< +/C /A5 +/K 510 +/P 664 0 R +/Pg 18 0 R +/S /Span +>> +endobj +387 0 obj +<< +/C /A5 +/K 511 +/P 664 0 R +/Pg 18 0 R +/S /Span +>> +endobj +388 0 obj +<< +/K [512 513 514 515] +/P 665 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +389 0 obj +<< +/C /A5 +/K 516 +/P 666 0 R +/Pg 18 0 R +/S /Span +>> +endobj +390 0 obj +<< +/C /A5 +/K 517 +/P 666 0 R +/Pg 18 0 R +/S /Span +>> +endobj +391 0 obj +<< +/K [518 519] +/P 667 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +392 0 obj +<< +/C /Pa3 +/K [520 393 0 R 522 523 394 0 R 525 << +/MCID 530 +/Pg 19 0 R +/Type /MCR +>> 396 0 R << +/MCID 532 +/Pg 19 0 R +/Type /MCR +>> << +/MCID 533 +/Pg 19 0 R +/Type /MCR +>> << +/MCID 534 +/Pg 19 0 R +/Type /MCR +>>] +/P 180 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +393 0 obj +<< +/ActualText +/K 521 +/P 392 0 R +/Pg 18 0 R +/S /Span +>> +endobj +394 0 obj +<< +/ActualText +/K 524 +/P 392 0 R +/Pg 18 0 R +/S /Span +>> +endobj +395 0 obj +<< +/C /Pa16 +/K [526 527 528 529] +/P 183 0 R +/Pg 18 0 R +/S /Einklinker-Text__rec +>> +endobj +396 0 obj +<< +/ActualText +/K 531 +/P 392 0 R +/Pg 19 0 R +/S /Span +>> +endobj +397 0 obj +<< +/C /Pa3 +/K [535 536 398 0 R 538] +/P 180 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +398 0 obj +<< +/ActualText +/K 537 +/P 397 0 R +/Pg 19 0 R +/S /Span +>> +endobj +399 0 obj +<< +/C /Pa7 +/K 539 +/P 180 0 R +/Pg 19 0 R +/S /Zwischenhead_3 +>> +endobj +400 0 obj +<< +/C /Pa2 +/K [540 541 401 0 R 543 544 545 546 402 0 R 548] +/P 180 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +401 0 obj +<< +/ActualText +/K 542 +/P 400 0 R +/Pg 19 0 R +/S /Span +>> +endobj +402 0 obj +<< +/ActualText +/K 547 +/P 400 0 R +/Pg 19 0 R +/S /Span +>> +endobj +403 0 obj +<< +/C /Pa7 +/K 549 +/P 180 0 R +/Pg 19 0 R +/S /Zwischenhead_3 +>> +endobj +404 0 obj +<< +/C /Pa2 +/K [550 405 0 R 552 406 0 R 554 407 0 R 556 557 558 559 560 561 562] +/P 180 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +405 0 obj +<< +/ActualText +/K 551 +/P 404 0 R +/Pg 19 0 R +/S /Span +>> +endobj +406 0 obj +<< +/ActualText +/K 553 +/P 404 0 R +/Pg 19 0 R +/S /Span +>> +endobj +407 0 obj +<< +/ActualText +/K 555 +/P 404 0 R +/Pg 19 0 R +/S /Span +>> +endobj +408 0 obj +<< +/C /Pa6 +/K 563 +/P 180 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +409 0 obj +<< +/C /Pa2 +/K [564 410 0 R 566 567 568 569 411 0 R 571 412 0 R 573 574 413 0 R 576 577 578 579 +580 581] +/P 180 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +410 0 obj +<< +/ActualText +/K 565 +/P 409 0 R +/Pg 19 0 R +/S /Span +>> +endobj +411 0 obj +<< +/ActualText +/K 570 +/P 409 0 R +/Pg 19 0 R +/S /Span +>> +endobj +412 0 obj +<< +/ActualText +/K 572 +/P 409 0 R +/Pg 19 0 R +/S /Span +>> +endobj +413 0 obj +<< +/ActualText +/K 575 +/P 409 0 R +/Pg 19 0 R +/S /Span +>> +endobj +414 0 obj +<< +/C /Pa3 +/K [582 583 584] +/P 180 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +415 0 obj +<< +/C /Pa6 +/K 585 +/P 180 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +416 0 obj +<< +/C /Pa2 +/K [586 587 588 417 0 R 590 591 592] +/P 180 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +417 0 obj +<< +/ActualText +/K 589 +/P 416 0 R +/Pg 20 0 R +/S /Span +>> +endobj +418 0 obj +<< +/C /Pa6 +/K 593 +/P 180 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +419 0 obj +<< +/C /Pa2 +/K [594 595 596 420 0 R 598 599] +/P 180 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +420 0 obj +<< +/ActualText +/K 597 +/P 419 0 R +/Pg 20 0 R +/S /Span +>> +endobj +421 0 obj +<< +/C /Pa6 +/K 600 +/P 180 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +422 0 obj +<< +/C /Pa2 +/K [601 602 423 0 R 604 605 424 0 R 607 608 609] +/P 180 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +423 0 obj +<< +/ActualText +/K 603 +/P 422 0 R +/Pg 20 0 R +/S /Span +>> +endobj +424 0 obj +<< +/ActualText +/K 606 +/P 422 0 R +/Pg 20 0 R +/S /Span +>> +endobj +425 0 obj +<< +/C /Pa6 +/K 610 +/P 180 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +426 0 obj +<< +/C /Pa2 +/K [611 612 613 614 427 0 R 616 428 0 R 618 619] +/P 180 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +427 0 obj +<< +/ActualText +/K 615 +/P 426 0 R +/Pg 20 0 R +/S /Span +>> +endobj +428 0 obj +<< +/ActualText +/K 617 +/P 426 0 R +/Pg 20 0 R +/S /Span +>> +endobj +429 0 obj +<< +/C /Pa6 +/K 620 +/P 180 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +430 0 obj +<< +/C /Pa2 +/K [621 622 431 0 R 624 << +/MCID 625 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 626 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 627 +/Pg 21 0 R +/Type /MCR +>>] +/P 180 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +431 0 obj +<< +/ActualText +/K 623 +/P 430 0 R +/Pg 20 0 R +/S /Span +>> +endobj +432 0 obj +<< +/C /Pa3 +/K [628 629 433 0 R 631 632 633] +/P 180 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +433 0 obj +<< +/ActualText +/K 630 +/P 432 0 R +/Pg 21 0 R +/S /Span +>> +endobj +434 0 obj +<< +/C /Pa6 +/K 634 +/P 180 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +435 0 obj +<< +/C /Pa2 +/K [635 636 637] +/P 180 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +436 0 obj +<< +/C /A5 +/K 638 +/P 668 0 R +/Pg 21 0 R +/S /Span +>> +endobj +437 0 obj +<< +/C /A5 +/K 639 +/P 668 0 R +/Pg 21 0 R +/S /Span +>> +endobj +438 0 obj +<< +/K 640 +/P 669 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +439 0 obj +<< +/C /A5 +/K 641 +/P 670 0 R +/Pg 21 0 R +/S /Span +>> +endobj +440 0 obj +<< +/C /A5 +/K 642 +/P 670 0 R +/Pg 21 0 R +/S /Span +>> +endobj +441 0 obj +<< +/K 643 +/P 671 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +442 0 obj +<< +/C /A5 +/K 644 +/P 672 0 R +/Pg 21 0 R +/S /Span +>> +endobj +443 0 obj +<< +/C /A5 +/K 645 +/P 672 0 R +/Pg 21 0 R +/S /Span +>> +endobj +444 0 obj +<< +/K 646 +/P 673 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +445 0 obj +<< +/C /A5 +/K 647 +/P 674 0 R +/Pg 21 0 R +/S /Span +>> +endobj +446 0 obj +<< +/C /A5 +/K 648 +/P 674 0 R +/Pg 21 0 R +/S /Span +>> +endobj +447 0 obj +<< +/K 649 +/P 675 0 R +/Pg 21 0 R +/S /LBody +>> +endobj +448 0 obj +<< +/C /Pa3 +/K 650 +/P 180 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +449 0 obj +<< +/C /Pa1 +/K 651 +/P 180 0 R +/Pg 21 0 R +/S /Zwischenhead_1 +>> +endobj +450 0 obj +<< +/C /Pa2 +/K [652 451 0 R 654 655 452 0 R 657 453 0 R 659 660 661 662] +/P 180 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +451 0 obj +<< +/ActualText +/K 653 +/P 450 0 R +/Pg 21 0 R +/S /Span +>> +endobj +452 0 obj +<< +/ActualText +/K 656 +/P 450 0 R +/Pg 21 0 R +/S /Span +>> +endobj +453 0 obj +<< +/ActualText +/K 658 +/P 450 0 R +/Pg 21 0 R +/S /Span +>> +endobj +454 0 obj +<< +/C /Pa3 +/K [663 664 665 666] +/P 180 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +455 0 obj +<< +/C /Pa1 +/K 667 +/P 180 0 R +/Pg 21 0 R +/S /Zwischenhead_1 +>> +endobj +456 0 obj +<< +/C /Pa2 +/K [668 669 670 671 672 457 0 R 674 675] +/P 180 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +457 0 obj +<< +/ActualText +/K 673 +/P 456 0 R +/Pg 21 0 R +/S /Span +>> +endobj +458 0 obj +<< +/C /Pa3 +/K [676 677 459 0 R 679 680 681] +/P 180 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +459 0 obj +<< +/ActualText +/K 678 +/P 458 0 R +/Pg 22 0 R +/S /Span +>> +endobj +460 0 obj +<< +/C /A5 +/K 682 +/P 676 0 R +/Pg 22 0 R +/S /Span +>> +endobj +461 0 obj +<< +/C /A5 +/K 683 +/P 676 0 R +/Pg 22 0 R +/S /Span +>> +endobj +462 0 obj +<< +/K [684 685] +/P 677 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +463 0 obj +<< +/C /A5 +/K 686 +/P 678 0 R +/Pg 22 0 R +/S /Span +>> +endobj +464 0 obj +<< +/C /A5 +/K 687 +/P 678 0 R +/Pg 22 0 R +/S /Span +>> +endobj +465 0 obj +<< +/K [688 466 0 R 690 691 692 693] +/P 679 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +466 0 obj +<< +/ActualText +/K 689 +/P 465 0 R +/Pg 22 0 R +/S /Span +>> +endobj +467 0 obj +<< +/C /A5 +/K 694 +/P 680 0 R +/Pg 22 0 R +/S /Span +>> +endobj +468 0 obj +<< +/C /A5 +/K 695 +/P 680 0 R +/Pg 22 0 R +/S /Span +>> +endobj +469 0 obj +<< +/K [696 697 698] +/P 681 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +470 0 obj +<< +/C /A5 +/K 699 +/P 682 0 R +/Pg 22 0 R +/S /Span +>> +endobj +471 0 obj +<< +/C /A5 +/K 700 +/P 682 0 R +/Pg 22 0 R +/S /Span +>> +endobj +472 0 obj +<< +/K 701 +/P 683 0 R +/Pg 22 0 R +/S /LBody +>> +endobj +473 0 obj +<< +/C /Pa3 +/K [702 703 704 705 706 474 0 R 708 475 0 R 710 476 0 R 712 713] +/P 180 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +474 0 obj +<< +/ActualText +/K 707 +/P 473 0 R +/Pg 22 0 R +/S /Span +>> +endobj +475 0 obj +<< +/ActualText +/K 709 +/P 473 0 R +/Pg 22 0 R +/S /Span +>> +endobj +476 0 obj +<< +/ActualText +/K 711 +/P 473 0 R +/Pg 22 0 R +/S /Span +>> +endobj +477 0 obj +<< +/C /Pa3 +/K [714 715] +/P 180 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +478 0 obj +<< +/C /Pa1 +/K 716 +/P 180 0 R +/Pg 22 0 R +/S /Zwischenhead_1 +>> +endobj +479 0 obj +<< +/C /Pa2 +/K [717 480 0 R 719 720 721 722 481 0 R 724 725 482 0 R 727 728 483 0 R 730 731 484 0 R +733] +/P 180 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +480 0 obj +<< +/ActualText +/K 718 +/P 479 0 R +/Pg 22 0 R +/S /Span +>> +endobj +481 0 obj +<< +/ActualText +/K 723 +/P 479 0 R +/Pg 22 0 R +/S /Span +>> +endobj +482 0 obj +<< +/ActualText +/K 726 +/P 479 0 R +/Pg 22 0 R +/S /Span +>> +endobj +483 0 obj +<< +/ActualText +/K 729 +/P 479 0 R +/Pg 22 0 R +/S /Span +>> +endobj +484 0 obj +<< +/ActualText +/K 732 +/P 479 0 R +/Pg 22 0 R +/S /Span +>> +endobj +485 0 obj +<< +/C /Pa6 +/K 734 +/P 180 0 R +/Pg 23 0 R +/S /Zwischenhead_2 +>> +endobj +486 0 obj +<< +/C /Pa2 +/K 735 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +487 0 obj +<< +/C /Pa2 +/K 736 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +488 0 obj +<< +/C /Pa2 +/K 737 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +489 0 obj +<< +/C /Pa2 +/K 738 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +490 0 obj +<< +/C /Pa2 +/K 739 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +491 0 obj +<< +/C /Pa2 +/K 740 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +492 0 obj +<< +/C /Pa2 +/K 741 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +493 0 obj +<< +/C /Pa2 +/K 742 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +494 0 obj +<< +/C /Pa2 +/K 743 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +495 0 obj +<< +/C /Pa2 +/K 744 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +496 0 obj +<< +/C /Pa2 +/K 745 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +497 0 obj +<< +/C /Pa2 +/K 746 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +498 0 obj +<< +/C /Pa2 +/K 747 +/P 180 0 R +/Pg 23 0 R +/S /Lauftext_1._Abs +>> +endobj +499 0 obj +<< +/C /Pa6 +/K 748 +/P 184 0 R +/Pg 24 0 R +/S /Zwischenhead_2 +>> +endobj +500 0 obj +<< +/C /Pa17 +/K [684 0 R 749] +/P 184 0 R +/Pg 24 0 R +/S /Endnote_1._Abs +>> +endobj +501 0 obj +<< +/C /Pa17 +/K [685 0 R 750] +/P 184 0 R +/Pg 24 0 R +/S /Endnote_1._Abs +>> +endobj +502 0 obj +<< +/C /Pa17 +/K 751 +/P 184 0 R +/Pg 24 0 R +/S /Endnote_1._Abs +>> +endobj +503 0 obj +<< +/C /Pa18 +/K [686 0 R 752] +/P 184 0 R +/Pg 24 0 R +/S /Endnote_1._Abs +>> +endobj +504 0 obj +<< +/C /Pa18 +/K [753 754] +/P 184 0 R +/Pg 24 0 R +/S /Endnote_1._Abs +>> +endobj +505 0 obj +<< +/Filter /FlateDecode +/Length 9613 +/Length1 15155 +>> +stream +H‰œV{X×ÿ;3»°€°€.â,+ °ëò4¬³€ày‰,¾X^‚‚ øÀ¨1¾bŤ¦&µÖ%‰±ic“ÑÚ„ZMCÒØhŒÚ˜Ä´1m’æûZ›¯Æ&M[«HÏ.دµ_þ霽÷ž;çÜû»÷÷›; !xÊæT:Ó#RsÓØs•ïê†voçã)ž(P2Ö¬R77m<šÙ·¡¹sI»0¿êŒŸpûý%mëšoµ·žOñ™-MÞÆúOgr|ÊuΗÕÂŽÀ§À>ŽÛãZÚWuïYôÌ:nsÎm ^¤¾»Hÿ”Û½íÞîNq‹Âœmü¼ºÜÛÞtÉ(Íæöa¯¤³£kÕà!…ç’ûg_çʦNù¥g€¼n'‚äzJh?­N •ò‹hœUw/ÓŽ€¡JÀ¿].¨‰Ë”˧O¸(PA¤Ž÷÷¿ŒäUãæÛ€a'—ÂÿÌ_Ü)ÉŠÁh + +fˆ9**:f´%vLÜXÕo—˜4~BrŠÝ1Ñ™š–ž‘9)+{rNnÞ”©÷å»2µI…EÓ‹KfÌœ5»tNYyEeÕÜêy5žÚù fd}>?Û`²DŽ/óÔÔÖýÃÛðÏÆ¥ËÚÛ–ßÈÉË¢}QT8ÑܵpQsò´y+Z¾Ê_‚ÀYø pÓåŸ]k ê t@nÍ:rÇd­L±ÇLˆŠv#ýïX¬V0M¾””PÄŽÍ“KHĸÒ9³1ÂÁ†é¾,²Ì+\¨œf46ãQ ’Dfš@iTI^j¥nÚCO’.Έ«’$J6I‹»©¦ªij®úœ5>>æFêà o/ñž Aa4žc+¨ŽZü±½ô‚?þXW\¯Á±9ñìÿ{åâ6x†Þ stží]¢·ýö½ç·«~ûHìçÙ. ™Ï,¡À#³'&!˜55¡ƒáˆ`¦ŒÄ(D!1¼2Äb â0–qZÆ!ùš„ñ˜€d¤À&‰T¤!ÈÄ$d!“‘ÃóÌÃLÅ}ÈgŽNƒ7 +Pˆ"Þ„b”`fbf£sP†rT U˜‹jÌC <¨Å|,ÀB,ÂbÔÁ‹z4 X•èâ7ÁflÁVlÃv<„øv¢»ð0ïÈ7±›÷ô[؃Çð8¾½øöá»ØïážÀAB/žÄSx‡ñ Žàûx?ÀñŽâGx/@Ç1Çq?Á‹x }ø)Nâg8…Óx?Ç+èÇ«x ¿Àë8ƒ_â œÅ9¼‰óx p—ð+¼Ëxïâ=\Áûø5~ƒøõ!~‹ßá#|ŒOðþŠÏqâi #êÀ&´c#Ù)‰±53ïoàK|eXOÐF¶im§-´™¶‘B wh>UÓšG ©†‘‡S-•Ó,fãlfs)UÑšKeJ& +¡AÔÄLmf¦/¡zfl3¾‘¬K6Š£Š¤( +§ZJ´ŒVP­¤vê¢å4•&Ó}”Cù”K.Ê£i4…ÌýJ¤é¤Q1¹©„ +hÒL*¢LrR6¥Ó$J¥,JÃ:ÜÏ,ôÙ*¬F—k°K¸lÅRt÷µ0?ïµ6ö/ǸŽ ØO=´ u´ŠvÑü‘î§Õô0mÅ5ZOkè^m´ÖúmþÄkv׺ÿöã3¿Ç÷<߬«"Œ™Z¶SýƒWømxDêW¶*G•‹ÊeºH½<ƒßóþ½Å{ÝÇ,yžÙó3êsm7soópsr+ós6b=c^ËX»˜·¼»K]3ó¸ž9½ˆù]Ë\¯fÞW°JY3XE¬U3•”ÍŠÊ`u9YqI¬@kŒ K•ëÊ^%\¾-Èš d!Cº.]”ÎJ½Ò~i»´QZ-uI’Sš îˆE¿8,ŠMb¨¥By"G8…M„LoR?¦ƒ|ê죽´›ÙÕEu~œ0ƒ}H_cΟbþ÷±N°.|¸²^žeô‡ÿÖÖ>ÖÙc¬º{Wahîâ÷¡öa®ð£-fœ>|NX]£FFF„›ÃBG„™ŒE–Á~œ•áV{ê{lZsµÃ~<pWuëH©‰Êñø‹)þB7%{tr‡ÝãrØSø§‹d‡}èêuØ´c$%hj‘ÚâmÔ¥.U]vÛ¼jã1—«§ªÆÊ×1Xc=e5¾Šœ µèÆ„B¯Žò«EWÜ“=o£§²Ææ´Ý´8m×x씯ÏîmüÚ'•-ÿÚÿçßô»ÌáQ9{?Ãæ“Ù­ú&ÙS¨Knok]Aæ°ªºdÓŽ“PÜkÜ6w;tÙ¦EëA>¬œ-º°UwyUÿ¼õi®ûªz‘E/öxtŦq +²i­º°izpr´Ã®¶8ì'ùHP_ÑxÇÍ +|¥ªRfÓÉ«ñ‚¹ªjtWÇ7žÃÎ]n³›§›‡}¢ÃþºÃž¯G&; |ß ++؈x—¥\`Ëù2 +ù´Ä]§ƒ •RÒ’j5[ÍI|WÖÛš‚[°Ê/ßÒxlÔÇžÅÉ¢\aq2G‘¼BPÈ8LÖ¤lk”Ð>3e ‹‰ú‚vš|_5;ÿFk™ÑAˆv™ á¾ÁI~(PâÐáШøÄI™YéLDÃgQ‘3µ¤ØTìœX<Ýé,ö})å ^‘ú”­|bŽÍª‚0J²7h4”½;œPIæ°pkzœ) Rü¿¸® &Î4œow³›M"I6Ù„IXæ’¬áGDDkÕk­ˆ ¢ JµÊ ("ü;õ{¨zÜÕÓ¶vNçN¯½ª=¬ã´Ž§¶×;Þ\¯7öœsTÖ{7ÁÞÌeò·›ÉÌû¼Ïó¼Ïû‘«f²2ƒLÀ¥¢‡wn]G¦æ#K\yŸýzÝG×±Õ펌' “³¦ë¹ª“ß^?—Ö~¸ ¼/CÔ»Ÿ#ÿ»€§óù¼\Ú­$Á,Ѫ0ÍâJá Žö byn·WËÙyƒFgÐ'!ÖÙRâàƒ|0 ñÛ¤;ââc³)©¬±~YAvvaCckYR‚^xL¬)¯Z.Z°Ø`$È0}„I¨ÿþuþ:±«V¨âtÄ%™É„`±ÒD›µJ$sA¢aVƒƒÆ¡7.'æ ÙÄ8 Î8lV| žPK‘G¬^"%àË"UÈ–‹xà@l‰2íAždu†©¢­¨ê½íŽY+òš;M!yœbÓ—«Ž/óÎhX&ô­E¦Ÿ!ˆÆC 3>©ó ¶ËWä®,˘½´¦`cù@ÎÊÞ‹w6 í2’̵Xr ÂÅ9 x= (|’¢H˜Ár6V‡'Åc´ ¡\‰ÉìÐ…\’ŽdP|ŽŠFNØ`«fú&‰”F©t‚IJ¢€Ò½Ú(Äê(B£# [J*—ÊñÌL0©Ÿ.SÅ+ª<ÔõYÛXÕ×(4*ü0à?š6“wïë=ê|Í]ì3Z\ª ûßn(;ÊØñgÂŽ²þš_p ?v>èOfwŒ°ûv_ÛUÝ3GoP6cÄé–†í™m WØù3hÄ +[[q$, +X0äI’ÈDdBL‘Ž–Av“ÓÑ,¡t˜u +LÊHaK°!˜¿ûe“qSBŠÚ ñÒˆ2y6ºdA¢¢Ð”¢r±€þ‡…'¿4`EŒª½¥‘£ÆLïÒ—/K¸Å›³<ñ„P†Ú<ø9^^3ùð€¤åéqÐl€¼tù…(»>fLÀÌ`& )‰ä§0Ü¢§Ýi˜'ó£,ø™SZdV„%—Ke*¤Ÿ¡Œ’Ã9R4HÊø³|·t%šÉÍ‹ð)vâ°)f "Q Ƹý9E@ñQɈ`Þéêø°±vüó_·Ã–ï«1µ/(¬}©)âÄiBž3QY9–„\ø†¸-,®ãlg맇'šGÌ£îéï45Tää+=ÈÿæJå8Eáò`‚9(gK d/ù"ijäd“’+Š `¥ÛiÚ›Ž¤j4`—ªI,ê Ÿ$&MŠ ø o`ãp*a qèPA[*ú~Í/WøΣ‚e['_UeÌ™[‘ùJO•oö¦±ysÌê®=ÛÞš±ÁY~èró=د$A›Ú¾þÔÝþ”lWüŒå{ÊÎw—`ÿ~9ßU{ü_7*ÖˆS töj·K¼.^‹±°C ŒÒ(C„ÜžŒ™iVŽìqâ°­52¸¥Æ¤[ô~·‚xDãc"µÚyaø”çÛÐí+'ïû¼:Y\.†#°-ûøÓ6DÍvüe­Îʼd·]üŠ µ¹«¼nO±W.§ððdÐ/\M.1ÂÐå÷ R3œ^xIA${º%Q/“fÚéÌB8 Éì…ªh¿-‰˜;@V¤I¤24B¸ R~0ªÉa«²+;ÖxQM1)!*öaKqƒŽ‚|ô=¨åâP´÷¢¸Rqà ûÃ=ŒYr²nNý¼}ÃÛïo^s¡éX׺öÕ—O¬Z6Ü·`Ëœ«/„VÍmÝÖ"í.è©+î,ÏÊ?¼sÓ•£m›>ñ•-o?ýÚ³;¥áѶþ‘Š¹Kz‘“o-]éj™ß!êÉ HG©ÎkÓ#vk‘àQ(-AÂ!$4…†ô¢ÛkW!K‹RR2p\œ§^`É0_m …- +é£â-÷NT–eëÇ*Ûoõ\xD8çßÙØ·w˧MméüÝWÝëâ-M—Z·þu³ðÅÓ[Â!áÖ²x÷K¿Ãÿ4ÔwSTŽëùmi•ô œ'ÝŽ•`&D3ÈRA€¤!B‚Ž: Æô&ÓÕéS.vPâ`µ§Šªçƒvmpª êã`¢Æö-˜h_iUö"áqÝ9áƽuÝëÛg¼ûY%©^´tëî»Ê–üöÙ¾Uÿ(9SŸ•SÅ#Ã’×볬g{†¸P¢íñÝ{ŸŒ¿^;êzþ„Ĥ; Ÿ¼$/!ŠÄ‚a•’–™¥gÛ¢QgKÂL4«Pª/îÕù$R» Û•† ²_Ød¯ñsn8b£‡Ï$Dý`¤Øöÿå³V#ú–n>dè4ÇÂm׊*r†r†‘æ+×~¼©zbW°-%WEò²®äVÌ[ýö¬¥¿ùçþÑ+øµ.‹jÚ‹ÑúÊð·'„;·ýœ5æ"5¸ò4¬6Øý§¿ÙõÁ÷›}QFž¥€²HŠxÄdù +u°eMç4FѬUiVÆ+Ã3yÁP€ ^‰íBŒYŠŠ£‘'®`‹©]ÈøiÑàRE¼@K.¼ # Kd‹QòÁ<”•–ÁÆEIDj5³jíÜ}¼v–F+~/;àœè혷§ƒQ•0­ÿi,XÚwÞ> W@ +ði)ïcG…ò‰f@MÂ7'nÄÄ®5(È’‘¹=^*C=yŸÔ+Ót8meofÈŒSz¼z Ã0úrœBdNŒœ¡DP¥/¤‹8p!¬Z°Ý*¤‘öºŒ°ùñ? hðŠÐ À*«ã&¦×ÿS+je‘è ñQ76ºpñ¨,¤¦ª®-<#ÜzÐõ7Ô÷èäÍgÞ¢WÏ_m?Œ2&VŸ WoØ“qU˜ ²XÒàN™¼‰Õ¿G LOj*,Hrþ~á¿„Wil“÷Ÿÿ{ùuÞø>ñßv|å´_çtBB a¸®4„#]2Ø +Œr´K„Nc£be@·UcPi›¶•QZUlÝ´/SÕMH›¶Ó¾¬gÿ÷u!ÍlÉN¤÷÷üŽç÷Ü-ýòZÈR‹7ÿYi7šÄüºˆ€ààAÌe™ókãky3_;ïã„VGƒ§Â(¦Wb)¢‘تð) TÏâ%×cK›Î,רªŒÙey£ZbïõÈ ‘>êÄÜÆô¾Öõ¬¡ÎUû:Z6SW8¼‰$I]òoìüdÏCB»`Ñ’Ú ÏUÅÑXt=|'Ÿçs|+ßÄ×pBÎQMi¬\EÀC°m´ šB¨®Y Zº`µò w²gÒÅ°¸å°.p=»?2h:ÃAùS‡À2Ì[Išç_îîQj({¦4¥-hýoSE¡Øº4•Ž§–¥‹…FtlQØPç\/ +2 ë«óÃ^§ÁùÊ~[E¦¬É¶Ÿ¼Ð¸cî¿þ«Aêݹ‘ý6û¨rK?Ÿ^43…œ¤vIšgÈj¥Xðí÷ñôÒD¯% áL`4 TÎŽ*AèŠøÕ8ùË.¶ðA;M6wÌÝ@Ð!•m¬cPãbHý§3åŽDQTvÜÓ¶Õë;V/9Ú.Nïë]rô§Û²º\aèèsï|g;ízpïi«~Íj£%«RÈÑ·wÅšïMäù>ýàkóo–QÒEŒ²‹èZÌ`Â-3çÀJDƒe­Xù¶M ÀÁé:æôL3‹Ìˆ=ªÅ~&Â2ï¨Ìâ1È‚ÁXQn( ¶”†L¥1>Tœ×·¢p:28˜üë¿_„O\Ew¬În·GêÔ}騾¥–ŸÈîð>ö5î+p¦`B[ØZózv²uwi¶>gÝä,¨kî+FwçiæÁ¿ÉÛ!k#UÖ)Æ”]>waõåµ'E¾»Œ¬|Ky”å'gÿBŸ%Úñ® Ö[Ôf¹$ç#ƒŽWó +žæ"!½Óa5ôòå)ÆÐù8†\.€Q0¬ SB>æW .îÚ„6­É$lȈ¯…ä˜0R„ÿ y©ûóDi¶Á´‰qÈþ£ˆûš‡¿ +Z1ìñÊîPs™­yÆiQA–¾>=Ô½ÍëÙZÈgU¥ßòZµl“ÊkLÃzonâà㤛²µú¡S5‹{n 8ì µ/ „玟{Ítåw&ýàz}¶ËÕ¶3Jºî“¿&A„ˆ¢_h„qã®™áä@Å”rJæ³ eB^NÓ†j8=àjð]q¡³Z0мM'ü¸ÏµU6y¦|f2Jð¥nÓ'#/Ã2ø++¨itå9¥áîW¾ÙѤc¬5éÑñ½Oµ±LxЙt:]®¤»ªdê=>ö~òÕdO¸~©Ý…üžWŽªkd­9Å«í݃?:SúVc…¤|åªúàÄèá|é 0GtãMÉ%þH¬†@óŸÍߧTôÇ„“hÀ×^[E}‚¨‹ÁØ5`Ö!_\/u,§Â€œ¦ä! ÝPg@N½Žœ!j«”¬„¿dðDF¬°åz®ÏZ§õe!ê¤7©tF«–*:’â‹a AÖï{e°¹z¾yfË2¢Lgßýá¸æZovçPìÔ‰%ûzé÷6oÄÇnNt¼9霶+úúªu^Û?É[A“-2w©ÔS7XvíÔÎ5bF§p'À ûˆ°àÕbTœÇ˜¸K2-¨â&N…ÑytHóí* .»þÊÉêòID-ÖZ#ûèÔH‹Œ†Œ7)å½kÔúÄ6Y¸ñâÃÓÇ #1hÕbª>Ò ŽY²Ïþ£Z9Ÿilöaí%ÜòÏ £ÿqûÐûûÛÆ{ÖkÜ;ðµ'¦¤×ëw ÆêÐ-ìÌ"ªY"ˆ™8½õìžmñuÙþ™¾ô»ÒÂ#¯­Ž._®õs/Mçf>uvFzÓ{ÈÉ+yfä»/t~x¹Ùb]5=ÚdÕê»”™ðžßŸX73æl65b½Eç¿@7è{D”èZ(9v ”+¢ q˜8ÁãæȪ˜\ÎÊUkDZN/¤Ñn òÀLµÓÆ@\%‰ó§gÅÛ +¬àaŸ]™ð§ˆ%¢ãÐ S[Ÿ3¯(É«S# ›ê¡~SÃHš—Ÿ8¡ñÚ&hJJiË«¥¤Œ®‹h¡¬E4¥,tˆýÓMÓÚîŸQMŒuÚX;!4Mݤvš*Z!J̾sm“RKŸî½çÜsý=ßï«ÛºlîËc3ÃÓ{’bwí{ _Ѹæ…2±ÜÌÚêÎ7GºßÜÛÚ>9ðãŠϺ€œ%‘‰‘_m* Êe[êVçÁµ/Žöﮟ¸£î>Ò5Ò§fbõϦ5/C¦È\5‘Lç³Ó‡`&ÈÓR®( +nñCŽ‹x +™M¤;ð<ú´9Ó:‡œfö”î,øyZ½ó“ ×PÓÖ}¾±¹¤¾AòÕÇ™fm&¾¼Åj®Q‡íxW}‰¯÷I IÓú^AäLX³0¤Ç6ž¨1À()f” Uÿì(Ê^MƒúBÕ>e½ dN%eR¹Íß„,AÉDw®†èµdæ±\bò€Š&û{êk¢’[-BA UD +uw6%ØåÑ€­’ž‹B‘èñTh¹‰ïÁøG<Ñà);xfè]šönFsŠ&ä•ÞMôîü*¥*M‹‡‚æàâ›kÛº/Ä“±‰K]'ëÆé ÚèHi\’|–çÆ¡º]«Ó…+5fSÚ_OWuÑÞ²MþD£w44É>Å—·h4ïï«úð媲u»×¤îA/xŽ,›Š”¦:‰ðÎå»[ߣ‘ÖÁ\óSðu`XLÐ*Äu%>!ü\]ÌÓRÊïŠ9*YÄS%ÕzN…¸POÀ×ØìàIcÞ|ÿÖbRØ‚Ó†¸X)eƒ?’¡->êP’æ°¾Žæ°=^¼"Ž»Á=Å«Ì> üW;º\Eö-js6«ÁaEæÔ‰Ô“óß!Ë»ÆëâHá„e`}>r"w¢ÐЬŒ[ÒŒÔ;™ë@ܤ‰ƒ>[¬d»âŠ))„`H@”3øø;òîDÃ3_¿=ô‹çV¾ùÂñî5“û­yÍ¿rÿ/7ŸøjËsç‡_ÿîEfúOo÷mÃ'÷ß8@õÐÏ~ÌŽ!Ôˆ:Íʳ5¯ }²m×ïÞÛûç]¯Næj°·§¯o[WÅ*Zo,Ô:·õ½q¬ªíD°-9ÝÔjŸx|û‰®ðÒý!w¿$“ì-dGu‰*3FF š¯cÌA0¼b£Ï¦kµ9‡4X¨Y2¥·C<Ô% ö"AŸà)Ãq)Sp4HÂÈ''ßR6[ÍØjHÝ7Dší­;/1¹jyåÑõ«\Ë;϶ëÆfÿ½²E*Þaû;ÕÊ ,zZa*ËKó1URR´9ÛV£B±Äùn +Wæ‘ŽBwÍ·pâ¦Ü0$’¥÷1÷eD4BÕ‚RŸëù™¢˜Ë*–¸ê)n5ù$s«GýÒú#›'¢º 컇“‰ñ¶LR-ì½­ÞÛYóÐöÜŸÁõÙ3}£Õ­†qG&½dþ†ídf€1.«$x—/äBÖs—è°ZLFƒz} $V–1¤å!Ì€ n\Žƒ8’&ù&ˆSÅHG€HÕüUž9õ©"çáÔÏs–X[:ÇKüOtn®4Ü{¥pObØé%Bþ5ûUð˜ÈÄœnÌÆË’˔؃³ÿÒ~m0aî-¶æþ»·™[?ªHøÜy: á4&¯à + ?û}w±³Èa³2H7Ì™ËYõåòògÁ«|£¢¦D S0öjØ„jžG:p°¨´²0ª·›W9ó=Ÿ{ÔÜ®BþV_ã…ÿ&‹N¦Î:*ŒDÚ"«ß³$'ŠÛ.ɇuÕ"ÞŠ23lÔ?ú?³€æ6…ÿΠªI”Ùc å‚,XT9ðx¡4ñ»‹ìKly*ŽAy¹2¸¿v¾ûKC^ãýN °Bm«+a©ž•˜ƒc&Ã7u½‘Ä&§k¨)æm¯I {Û[[U¶4«×FÅ »óº¹Âíé—üOut4÷.^ÑRßsÿ£î4®Ýß08ØuÛVïù=±FËæÂSé)KKi ¡ÝûüCyuß"Fþ¾?=û[µ¬1À-*s‚ûlö,BéûÓ©3jYY÷Ãïòó–•š&·Ð(‹$΀:ùêÇçÐrM€41ÔÄ^C[á}<»áú<_„÷kA&@\ " bi ßñÃû‡èY8ó$ýÈFfõs·QþKdÿ‰"Ü +ða€ûû8ÜÛA΢¹rîî àºÊžêrñÓÈͯ†ç«ð\¹~¸¯DaöKä…ïÙ¸? =øKÏõ"ˆD½OÃÿNÃ5©è@m?‡]wܽúDàû+™«(ëAС‰=‹t¤ÉøúÝ÷áY¦÷*=Øëì ì_AzvÎø‘ÌlFqrôø yÙHÇÏÀ;.ä‡s66í·§Øk¤®ôÿžG/ób ú€l½¯Ãµ… +ÝÓHèµL£Cª;Št°^€{S3pÀÙ$zV‘kXG¿¥NÛǪ®¢nE78ÏŸBM¤ ÉTêö(HãÏ{@l™x TÏÿ³_>¡MQÉ®l“6¶š†ÚÄ?•€Ũ ÚJ=¤¦=„ÐK/bÀF+ýƒ6Z¯--êÄC)ž‚ô"HN=XAŠ¢¨xzŠ'Bbã÷f&Éfl /YøñÞÌÎÎî|óíÎ"ëЋ9êBŒ œVswUÕ1÷…/Ò¸Wšœ(/ñøw”` üõÚ)\‹ë ö|ÂðüóÜ×õXÜd?/X^°¿J^°ƒçÊYÜ~°"Æýs7‹9–>­ÁðÒyö{Á +´;Êú9GŠ¿AAx ä;¬Õ,¼Â~°Â~xk£Å èôDk!CÿŠ¹€~` +¬œ¿.æ˜õ‡7y¼Ü·‘„¯>I¯‹ç=+Þ=ù9…^Ü..|U;¾:šÛÇZîÇN±ÖÓ_êTÖë'¿;öùcjôQã²#t³¡Þí*ê>ô²Óð}ÔïéLô'BTø…x ñâXG¾†xqƒhË”õ[(¿1¬?¯!æq®°‚|EæùohŸE>‡Gù"Iøz×eÌo*–UÌÉXXµ‘“1o‡Û¯B›Òß!ø)¦·Ç(Àï¨s‰H»/ì9¬GÀw,šóD® ¾”Ý òëêsI ´i]¨àUð\®Ð—´_¬Æë'ÚjŒЉÏy'æf/Öö}‡}v-KüI ˆºû±cœû_õ|”qß |rà ÑÁ’Cèçðé&Mš4i² ÞAÑ-r©í“;/êBô?ï¼±r“Yµç’96¢å\GÞ®rYPåÜç1´tè»E¹”;Т”;©†U®¡~Lå:ò9•È«œû|Ž &ÉÔd*31=óï"Eqƒ Ñ %)L JÑ$ÈÐMÓ êÆé +Ýu7¶i»“³šT¯ø”NÖì{q\è鈶öùOx|zŸéõ7õmþÌ=Ý4“ž-æ´þ»pø¯E5Aý +endstream +endobj +506 0 obj +<< +/Filter /FlateDecode +/Length 9538 +/Length1 13288 +>> +stream +H‰ÄV{P“WÿÝï‘Äð’WÂB„¢(ÁÑUKä!¬òP¬bí­ui±ÖV[kñE«u­µö­Z«V|tk[kµ»uÛÝÝÎŽìÎNÇÙ™jö|ÑiÝuí¿{“›sï¹ß9çw¹ç0kÁcö¬99y¦¸ÂÄù=ÍÊÆö`WõÙyå³üÍÆ•+,ÝU@L"^vK×âvÎx.¨fÒþ·‹—®n)nÞ2 hR”Öæ`SËËÓ—ö3¤¯ •º=|<íoÒ>µµ}EÏ3ISs€¬XÒß°´³1ˆ(7ÙÊî¡}S{°§‹ý ·—‚ÇÒloÞy~öß“½]Ý+Æz…bÀ½O9ïZÞÜ…ù=—iAÑO:~Ç‚HÏ°eÀhæ*¤£…‹8NƒŸXlKÄäÑLò¯œ]':1S´hÅÆÓTá.“(zæ?ò‚¨Rk´aáºqúƒ1ÒdŽŠŽ‰Ÿ˜”l±¦H©i¶ôŒL{–Ù“ëÊsç{ +¼&Nš\T\â+õ¦”•O6}FÅ̇*gÍ®ªžS3wÞõuõÌ_°ðцà¢;wxûȉãï½òÔ™³Œœ»pþâ‡}|é“ËŸ^ýüÚ‹ûV?þ$6Û°¶{c/v½ƒg€'ž ¡[÷"N_ÙÖ³MÀS[Z®¿2phéÊeË;»Ú;>׫°fÉc@ëóÍm¯¾¶ýõ=ûÞØ¿÷à[xshX&á_Ðܬh¸¯CQ1P\xôbŒYÛ"̲ZSRâÆÆBÑdÕ!®Ábú{ÿ0ã{f‡9b·”é(‹*¨¡a‡ŽjV²hD$L$…hÄ qx$ IH&«V¤@¢ZHƒ éÈ@&ìÈ‚Nd#¹p!näÃx1QˆI˜Œ"£>”¦  嘊i˜Ž¨ÀL<„JÌÂlT¡sPƒ¹˜‡‡Q‹:ÔãÌÇ,Ä£h@‹p=XDZOàçx’"´ëðÖãil 0öQFžE?6â9l +õ¼ˆ-ØŠ—ð2¶álÇ«ÀìÄ.ìÆ â5¼Ž½Ø‡7°¿Ä¼‰ƒx ‡ð6ãÈÂ0Žà(ÞÅ1Ç ¼‡“x§pgðÎbçppâWø—ð1>Á§¸ŒÏpŸã*®á ü¿Á—XŠ•ü—ü +°ŠÊg–ßå´£D;Ñ…f¢‹ÑúÃÓ-ÿCCÛ}œ%x ÝxžVÿoÏUTmª?æŽfŽºÆþLÿf/?_¸$|+ƈÉ\&“˜ž…áþ„?à+’¹Jú.’Sdù(¡:@H ývÊæfÊpe½—*ayØIÑk¡úXH53ꨒj«œlQz¨B3©j­êHÕˆ¸[Lc„¿ _ ²°OØ*lÖ.!QÐðçùcü0?Àoà×ñµ| ¯çÃxŽåF¸>n=×Ëusõ\&g`WØEv†íg»Y:‹T03ÝW£„üŸø7ðÍ=\¾Ç™|øуñß‹¼’0{`õEG™M‘FC„~œ.PÓ##«6fb]ˆL9Ì^'³€á¿XNG}eÎîtÜùa‹dHþ!Ƨù-å–Ö`“̧µÈB@ +Zš†|¾þšZ+!Xêf×* !ÍRÞ*«ÓÊ‚2ªj­ñ²˜Plª›S+åHßÅçH7ÈvÖƒµ›ø¤˜æ/¹qŸpÉw!–12f¢Ó1BnS/Xýe2¶5Lið;e™—üÃŒ+R _¢Yü±r¸â+i‹-k“}AK·\Oke)—ÇËÓêêdQò“ +&ùÛdNòË:{¬Óa)kâtœ¤ËQ;ë'ÃF +µX†8¾ß/É,è/§€ùjje_CbÏé £€1@p]p:²Ž‹NG‰l¶;Á)NT)Ow°äKàJU:¨…RºÕœ°§³mj§à³\Èʵ­ÆtšŒnnë÷~‘š¸U8sÛ¯ôCëèU"G²&_¸šµi8ˆ,<$˜kR§3o7†lL(«0·?­éý&Õüì_6†ÛG•Æ+ár +šŸ!*&4™x×¾ÉkU{üì¯e¬dd„$úÆn²MTí:ÄúŒ¼IK¸™Ð¡RDôwE¼ùî<ª`•”b³õU»<••žäbÛšœZWÛJ»ÔÞwŠzê0)¾ø¸h“>\`j´,r-£¬äHQ&A4ÙÃìÑä‹7‘s³Õ“ô¢ÈwK™¢q+è•hxòmé6ò+½À{g›žÍQÀ%rŠü,¦„ÜT©“¸(³žŽ*5‘áNuÕL{Fas\š3Ó_Ÿk×é õíÉ–XCAQ"­©˜jô;5Þ³W¸œÿfºZc›:Ï°ßs>Ÿ;>¶/Il|‰lj¯q;N‚Mâ8·†` ÜÆmkh…qÐÑqk7èm×NíP‹¦Neü¨ø³"­Ò*j]¥©ðkR¥QMZ‡0{¿c`³üÃ>¶t¾÷yž÷yžspf1]zõÖžS^å53Gb´½w,³£)d"•¦TpEªÙî7}¥ü×\ ²9½¾«s:gÝ“¾r¼La’¶Yœ´{F9_ ù +vH€Ç¥çH@®srË! ‘:5‚¹ŒJaÐr\¬9ìj°›µ2ÚuÔ/±< —R*³ííÈ­7ËAŒ ÐP[IŽ¥­œlµÉ¾ Ÿ~P‘RdD©8FçÿÖ•ŽÂk¯ ¹SW'ÏŒ˜ÄmIBw8¯ß®o˜x÷Þë†_CgIßžYÌ“Ò nÉ!Y«ª¿ÐÖçŒÂò:ÂçÍÙ˜‡”sÆ.W¿|›ò:ûä[äõ=Tl9_”9–!/,k`Â'ërµJœ"àé´œx%¤³„CXø–±/Ç  uÊ6Ò`eÏ…íZŽQeŒŠÄ§’éÿãÊ‹Rž¦ú <šn°Ÿ“U‰#åø¯YI©ºËÌüÀž>eK›—'¡Øqÿ.вüF8|=¿thÍåÙËŽ,¹þ4ÁWö7òǺ¬ƒûz|ÍüÜWŸmŽ ’1o2 Zùt{ªïô¶£?ˆÜþU|¹•hkÌ'œ`õ2ØÁš2‹ß-8ØÎvuÐ6!håYs#(°¿>)i!«ª‡j”JU¾8Øì:*lŽ¥{ù|]EžLà¦`†ïžhц&z&Gœ÷ö˹èDñs^ÿƒ‘`SÛL¹1ã0ïTŠ™9%Óïêw¼ÿ ¤·]*íëræ—ÊG×êƒì‚£Ëjœ¨~¬[ÕJlŠø•òŠÂâ¨dry"GΗ[Ö¹w}r»„J>A®`«Žäý‰q‚CÖIh¿£›*Öm4p˜kœhÁ_sV”i4Þ’2ãÖz}ôü~$,F§mŽËƒ‚Ä)?çS¿?p8ZݦmjT]L¬S ý'Çõ1Y«#,p?ñ4h86û\iÐÉõª §Ö:¢WSi#^£ÇGsQÝ&¨šP4tT* ¯]±¼fuq[׿,ÍþjÃnä²ñõYS±«Ï)õ”&Ïmß=VØ2ZaF£/oÜôÖº½ý+žY6ºt÷Í]…Ó›6_”‡K½Kƒ’sï@wØ¥´nŒŸY»¥Ð=ÙAåí'à:;Hó {WƒÅl¨ÓðufVÒ¦av™tH@ÃÓh ÐPSÏŽ Ç> 9ü +×&Þl`<–˜<–ŸŠ·—§Æ[r¾øÔ$óÆd"6=‹OáýJ˜”É]DŸ–ò¡¸â¤™C†-¯ÄPòbL‰z›œ»l®+‚xû„zûÞ0Z6ÄÁÍØQÂø¦>¤Kb2&:À«ã(–O¯åX„Ôlf½,sö Ô×w6{$ŸÝM|ðç-C9q¶º­àu%RÙƒ¯”Dc ¾8³sî ˜ù¹ûøÿäT©e¬ÙmÔ )šÎæïo¾à³Û8†~ç¬þÿ{ ˜¿7(†œéä+|*L£bRrW,ª°ÀFb^E0½TÖØgE¢­ÂîƨF«f¡•#“©é¥—®ojB|ôQ¬ã \Àt‚š¹´?EH£Äˆ0oÓa™ó/ngU_=SùÇéugæ‡qU­·_p–ĶT"¤$ÆúXcõÅê[€|«^yì?ët–H•Y­q\¥)ä»\ƒú˜™2Ü1¤´Qðl°$t­Ú ˆ©;ïí’µC Æ +XX¡Ã­¦æT «”È6õöçËÜq\[eµ2Z­|:bó¨ÅÆÏ©’PQšôe¬çVc¨G¼0i«ØC„*–²‘æS`¶)É6÷÷D¤z»y@üYÙ·äN‰·æ{'Þ¿]r„°þ‘¯·»m‡eC&"O_Ø:[ìú/×åÜÄyÅñýö&­®»’v%Y[Z­ÖkÝ/+YÖÕ²%@ØËDv(`—[ ˜€Û’4I†4™ÐЖ4Ð ÉøiÓi;M&ez›™òЗfÚNÛétšétxéC; úí®LHßlft¾ó?ç~ÿH¿jÂQÂÁßs‘6 w]'ÖäGÁò¤O›°KÿŠëáÞו½/¦G–1€Šê¨ ˆf†¡ÏM\…P‚âé(cÀ- ª8*„‚Ĺ‚“€%`x[O¸ M?¹‹öŒ¶Í¹ŒÒ…BDå®ä+˜²ü¤Ž‡«‡•+'’sª–¯2 s·¸ÁíY»L‰Ú¹ÕJÞ}>Y˜0³Ý—®ÌïûqÃFÖ 3ÏŸ)Æž9ÙšÝ;=>žÖ{nþñ…ß^aÁiws¨‹SÛŽÊõNÚ Æ^›Í'Ûϵ‚’ðú«Ý–78L]ØUÝÏYþ°°1+ÔW¿³£ó¾š3ß„3…._ðAŽ¥œvtˆFG•dMœ~(½ÞBoIñ{ø› N†ô°ñ­$Ð\@䟀 É“,¯­–ƒüÜÀf͆÷ÞM[Í8hé?ß»7é–ÿA g*3½ŸÔB™X«VFDmÎR¿õ¼wHZ3ÓÖ +óðWÅ8B)Qdåñ?±ÓØnxëe$R òÃŒ!샃²P!'ŽÙÌ°Ý ‚~5éáW« +( ÇUÙq"ÍÉ:íì‡òÚ¼ÂL$nIÇi…£ò»9—ž$}åF”ú¿Ä¯Åw´ÏÛ]9U†ÇœuJÚ65—Øõj0`òà}ÛÌXÈêgèXç¾m†=î=ÖzûšoäT4`Š”ô±–76lÍ—Æõå ߀ÙàO„s@ËI‰£IÜž4å â6Ô¨‰4ºž3" eáݨàâ°¯¯DË[×V}óÿÐ'ªq€ÑF!8†)´C¬f@¼ˆEJB`úKçKbqåXBU ®Ý¥qÜ•ˆ$ìÑj=ÚêÅ\ÂúwѽýŸLow™–ÛJ盼÷QÉ\aGLÞ@¯ö|F +uãsïßWb( §iöÐë­ÊÞËKÇ·²Ð0¶Cª„”3G)¼Ûa5 jÃÁYŸÂj’ª›âA‚òm«Pµvm­TÁ”­Rät’$Ú㛫Ó31öðZrrÿÒó&¦Ž…öŒú–ã¡dp÷Ë.c¤}¹fúã/ŸZ뵜aáË5Nß(Ÿœ¿“ZX6 +Yü—Š4k3(ú˜+ä¡(Xdã€b³–1Ã(ˆé)Ù†¦9Ô… Y°>s~pVOI£š(P‚™N±§–id ŸÍ’‹ +у·É*0A©”Íá2è‚ÇÆcÓEƱZ—:)°XX?SÀoûgrË®øøÓ—&\òÒ”55ugÓmNÌ /ÅÊzîÒRköÀÁH+Ñ¿ã½ØEç‘´2¾šÉÝmÓ +E hÅUa¾qõáo²BËP™ÃØÄ€Db-3%0^B)Bö@––ŠIQê…á1d1êQDÿ¥~7¦¡5ÄÀö +ñ|®|ð3>0ØA°T§ÎÏà¨ÉäÖ_¾ùÞÑz«úÚÕm‹o-ÖøþÃüB)sbx ~ec/5Ò˳6Û™Ý8^ZˆO]>âKæN\åÙ:2 šßAåH¥&G Ä!Èiô + 9 :ÒU˜Æn ±f‹¾/p.`&@JC›±'lï—œÏ*XEsZ5U‚ƒv¯ãŸ[{›lwîå.¦V'Z¢(\l#À;cxð[aó'–‰Åî4Qsª +>Å¥òùë§wŽ„Ýâ.–îWôøZ¿»Tb •ÃÜÖîKاp?Š0aìCŽÔzœ-M“À/L€ –òCôÈNû‰Ã‹*;ápfA'ŸÖŽ#TØÛ0l‹Àíä°¯GìN¢ |Âl$q”Ühçí †ŠF@ÇP4yíeÓy¯xUM'WŠnJðS?ƒ²Špnsö éjþË•A8Œ©s®:Ñ€€aïv;W†Î¤¼±ãÿyñ×&é “Už +A[”¬D0¯®µ(ÝåTx +tŠMÃFëàÖòI³œv2ƒÒèϾï0mŠÕø^o1JØ¢…Âùõ2}-Û +—¤ÞÝ‹MÔÀÎV=xÝ]`>¼ó Ún m,ð{ýÿFC”—€»/ÇúÝé 3¸íÊ®”ñ!DBb5~؆ÑàC.eA¬0!¨¶êðUoÞûÈ ¹jD¨²pVÁšüÀ¨€÷^=¨ÊÂp\§‘¦íRÆÿð=–°dËs·o~.ê¥ _ +µŒé&ø^T24ìESëZy"ÏÁ‹¿œ~¦› +VE±¦Ôéî§ÀX§LmÌh@=€òØ‚Jµ%D‡@i¬‹›Ð[uù ˆÚÍWøL¤Q†ÃídRHþ‹uJôÁ^Kl®wk¿Ã}¶¹ýxgO"3'C#åp?UÀw½´ŒÞÞ‘°“Æ€Ÿ~´¯wã c1RNuÕRõû4¡ûx¾æôÑQÛE£f`gí +7ù4‰«ƒiƒ!±‡Ýð¤K(KÝtã°CÍÛ-€Ùãl±æo:óÔìõ‡›°±„Ôß$SÐ-æ¡SìkWÆÃøî2œT¢S”þGvµÆ6užáï;Ÿ_Ž/Ç·øÄwßíØDZ]’8&6Á@Â2Ó&,EÙH‘H—@*˜X …V…±©‚*BÕ†º± ´nPmR÷ƒmlBSÕM“PU¡ULÚ:M¨3{¿ã$0í(GÇßw.yoÏû>½Öú6wÛEÆÒÞ›\‚âv•pJí£6)µ–e¼è…R¶KÔ’² kXzÉÈé5ô8‹?O0©Úº —ÔVa³¯×4øA=)huH“9ÖQm®ØÞëÂí2+¦íXŸ¬}øšuÅWÊ–÷ÅVœµø¤TOhí™DíÔ¬"Θ¼ÍBztìÊÉzOZ?crO—t¡¤©yuJ?©à ƒ‰Ž^YO-Ë¢åÅ—%C‡ïÕ½­ó±‚] µÿRž“™©ÖÒ¶~XB'N–ñ¶ïZ˜fk¢;!Ö™ÕÙÁT!’E4^ÙjÀ¢®ƒN-‚I›÷QJØO÷×[YB M‚‘„Q1éh4D»ñ7Q‰U—á@&”W•çÿ6‚'aS[é”}=bávX-cåŒyÆùÆ ñJ¤2ÓÛex{"Ý·´XÖVvåÇ\n¥Ke¬µŠþéƒþ™8Oæ áÐ÷é_€¿DéJØT aÆËOÅ +.–ò[ù­±v|Њ€Ò„צEÆ’_3žŒ0nO{•ŠuC߇ÛÀf?¿åm\zûùßÿïð'^iz;3ø›;'1½øÌ_h ÷~ôÖí¹»TY{ý¨_ºibp§0l?tà~¸•dDàø)Ô‹+E/‹ÝF¹CN¡ÚTw +˜ËI >ÆPÄ/… +ˆ›ÓnÊ®£œxY€÷¯YL8 !õ&L¦:áZj¬ÛØS© ÕÖ²„¯(«,-Ÿ¢ˆ¦}ßœÝÁ$~°ôª)è1È©ß»æÐnoë‹És}3½ÕP²)Oç+39_q{|z¼UWôœZk”F0¥÷¥=5]AJN$* eÏáê“å†Ct¼Kì=[-ØoŸ—Àç*ø]Ó¨T<؇c¿Àk-z*ïA™òXSÔrZ`_Ad¬ÏðŽâÈø}Ô"ÒÛY ^ÌØ [=ëC<'ºS¥]û ãì!óY-C‰3v£ áM¼§¯KºpÔÝbšÊŠ·¡Ì'ú¬ÞBôížâæýg›!ù^×lžòÛ6¥÷TwßyK4ÕhÐÁ­øÝ#Þ¨·p鹡­/dÃÏÛ¤jÕt¹õðMüz¢›qžÝ]¹p`«Ý¥Ÿ°¥ÒïÀoÀNv.IÐk8ˆ¢ŠmÈI7µàìˆ2!c‹FN^“ ýñøS“i dDÉoSësR•ŒÑ×ë»yÂm.oì Jr׎üˆ)7Úüà\ØÀßÔ¤’¥ìÕ>ÒÕÆj­·fy">ÁòùÇ÷©rJ¨R)vGýv³ÁÚ Ç{ {\«-b€2¤‹b¢¿§Ëm—̆#ÃT¦Tù™6U 嬶5Eš 4Z›)ã§5¡^?7•v…#…c}:‡ow&¼­ÛÓå?ì-•t¾k‹§æôÚ^ÆäÈT&KÑw§"^¿)ôñ±Ú²¢ÇÛ=^rÐ#÷,’¬wïH%¦šÊàëJMŠîÌ]&¹ÓçÞïßç¦ÁÏÞÇÿ¤N0Kȃ²•˜;°ïT…šAÇÓˆµ8 ”Y€Dp HjÑädøH2`HXÚÔ9¢¢k+á—ˆàã iÂzœowˆ¯mÖ$öc#Ó“»Ç%ê"ÚòAÓÝgzð¢ö@ëös_/‹¡þxýàX4öø“|ä³)D;4D3o§y),˜–bÙƧ#T#¨ ¥˜L@aÀf–:d#ô¬°†Œv_©ˆ¯òÒV•W÷Z7¬«±öÀâ +ÔÝÓÉ=é!”ö%æ¿ïµÙÆجâéÛ:ÆŸ |{&«=±ì¶n¸Š÷T»­5ÎætÇZ?}vÏ(Ž—ÂÌ°žù¿´~Ó¿E“T–òøKú>ÝŒ,\qYý‚Wè:Äw¹¬¢ŽÝàð:#G +X;©˜ˆ¶æ¤€_ÆP'*ª•<¸bkœÓP¾^úÎfkLYÉþ6ãÛÎnžtÇ+–HÇ„U9° äb¦‘…¯1—ð¾ËÉ.z€©…˜ÄÍß÷O]Í¿5%k S<ÉwZŸ?\Å-ý +Te*¡lJ¢-ç¥N4  xÜ.Éd„Ý1G`naÍ\ÐO°¬‹€ÆP +æöÑ=Äth”8ù“HæhNÃÕ­ù®üñÐìhÜÏ~#U-û]ÅD€»i +ʃ»âÇ1ŸÑrr×}?^V´õ`ïÓWÞp誒×ÿÕ¹>Ϧ¾z°æ4oÛ—û{¥è`Ø*ÃàøÏ6å‰'¥V’~ÑVPO%òYè{­´¡l\„ 3Àº²œOv9íV£ Á¨cg8.õ´]‚*·çÔ¢†’ÁëYPáÚ‰É ¬f€"c«Š©P˜•ÕƒÏ…}­{Ž ý!#Ånñ½‹ŽT¥4 `°:t®¨§õÅÐå—GæG^ÃŒQÕc$7æN]w«/ôÊnI Åh;ÌãÛÿsæ§ EGÚ‚S÷_~:mÜø¢µèÿV”;ª©Ãs˜:«o°ž–„÷>B_.sGÛ™~êø³æ©-º^ù7ú55‡æñŸÐ,ýf/£-ZÆChöOSUØ·£vkàYu)øCt‚º…|ð|® +ýøÖa4 k®S°žƒs Öô«hŠ.Âéd‡¾ðrü¿©¹…VØ3¨ÁœG³l-±DM¦'Ø¿°Pªð}˜0ðî4ÆL¡yÎ ÷ª÷ç™õºÀë+¡“Ì°ÿÕ‡aîTe>ƒýG¨Ä\oÌ¡ø–LeÑûŸ¡?AQjÝg|ESð}bó ­÷D4 kò¢däµ <}îÁÿ¥À{%xfá¿ìW]HSa~¶sv–µ™Î´œ™Ë²›4*rP¡‰œócì"œÌJ]Ñ‘^D /Š¨‰¯ºìZ$"ƒÒ»~è"ºìZºˆ.›zÞo‡i¿uWÏöœï|ï{Þ÷y¾ïœ1œ¯…©×Ž0ÆbìA£ÇD½Qj®Ð§î!×=~/°¾—Ôã’ûsþ¢“â XwJÕ6ÍkF©Ã };µXN^›5MéEÌxš`¹7¸´EXÄ]Ï<ëYV^[Ô9&~R³½ô¸Èú%w¿ôÌø¯k³Þ{ï’¼ÌwAú¡¦?ÃóôZ4×`9^¦ÄOåáqz@?½ÓŒá\åÛG¤ÄK™»ÖKùV~rˆâ5Œ‰‡*æ>Nyóì›ðœCÌxÏë9¾§½}ô”}Š—ª7éušõµÀÍojÜ}¤Fþ:cu¬¼”qú鬉R«~åaQÍK&,Ã"—^Ÿsm/ç1ÅÚJyÊ[ëÄàñ˜;ÓXƒ :}’®e5­T$È•È[‚1˽~½¹Cü¯WQ1¿ŠJØÿ¾™ï᧕͓¿*îÐê6â-xÔܶ$Ú% Ž½n= l 8¸Ô¿‚o足ïÆvbØñhÊ!Ž…>•°ó Ð|ç?þ!È#ì òÐÕ^sÃÇ'`Ù +.rLÎúp»ü «†ó‹jxTâ:ùn‡ä‡î%º8Ó¥W5—¹ {u¸•¸ápã³×ÉŸ9Ü _v8sºf~x04:60>ŠD£‘XwgoO2OgÓ¹ÁÛ´³™õ ¡0Ùÿ0Â(Æ0€q¾CˆðÿL”Ÿ1t£½èAaÄ‘fíiä86cmg`1î óȹ±uÆüÍYZÉ Ï“Tù¯ö ¯M?P»ÏÐÛ +Uþ]ÃnÍj…‚éàêœvørc8üE€üšÀð +endstream +endobj +507 0 obj +<< +/BaseFont /HWUFIJ+Wingdings-Regular +/CIDSystemInfo 687 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 688 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +508 0 obj +<< +/Filter /FlateDecode +/Length 578 +/Subtype /Type1C +>> +stream +H‰|POhÓpNÖôÏ\Ù\gt¶ºþÚum7³…­"¨¸UÅ^6Óæ×5Ø%%‰s=¬–MT0EŠ^DÔ]æAFq"zRq7^¤v…—í׃I¼xò>Þ÷}¼ï=M1MÓÞ³—fR©“ƒçŠ²ÀñÓ²44!åù„$ò¦; ûh}£r³$HVvgwgìð±>÷¾×y¨šþÞLHcv>§¢áXl$d⨅c!4F-Eã¼”Æ(YTT¼  ÓbF’ ’Ì©˜£ñ|Y +’±‚åESü{„5‡eÄæ¼`Ì˘GªÌñx“¯ Étþ¡Ùÿ¬B‚ˆŒ,tAL–T QAœÈGŒÉÚ’‘®Šª,`%9•<_,`tñ8KÕCõR¬õ7j’©íÖ+Õ†¾Õ  <Ú°U½²3Ý®8`…|`IîÛá·ƒ ²Á‚IÚ÷œmǬÕCœÜ¡¿eÍŽ˜¬Je˜ ×aÈ{Ëì›ç/7Þ /¸L6›ºøJXówëñ20ú$0ôèôÛ@Ü9Æß )rbŒÁ‘ÖÏm(A$ ôß" ûº#~(%ÒsK_!´ì‡ÁÛõÍ5ŸW_„H n@°zÍólÀ€«ïlï‡È§ÖÝK> +stream +H‰|S{PTç¿—åÞ¥Û–ÛKaozïµ´"ñ‚!¢1Š Ä$bPXyº»,ˆ" Ý…}CXAP©Á*¨fˆB¨|ä!‹ Z:Nr.~d¦wít¦u¾™3ßïœ9¿ß9ç;Ž9:`8Ž{¼³fMøÚXŸ{U©ŠäUÖÂX宜t…ÊäÜ…7\h´™_½zIÀÍ_Ãäo›ßFºb8>ødMV¶˜»+EÃ/ ^êk·¯m/¿tñâům–œ•¨äãöª5Ê 5ž™”¥ÊÎR)4Êd?>,=M¡æUJµR¥µ;ÿSŸªæ•©š¥ŠWˆÁ]©b¾J™ÌkTŠde†B•ÆgÙ#ÿwþ)>5“¹øÍ™©v§j^‘™¼HdÉz­’”•“©Q¥*Õ~‹Þ{oo¶’_Î'+wb.ÌÇü1,ÃVãØZÛ€a1,Ú‹sÀâ1ŒG*:¢°œÆ÷â—<Ê$É£ä”䉣·c™ã@h‰¾ÒvaªíŸÚ%¥Ž‚~&fVO‚Ý Q(|JÀ$‰xt;˜=&%·½¾C(1)\£í7dG2h-àì¥FÇ]o̼CeÏx»‘Š™@IHä‚ êRF :,“žÌï×ÜÍARt£TöG¿#d542}Ó¨‡‰<ùÖé€s¾NÔ%ÀÑ]¢—„¹0Ô0ùåèçƒf²$èD]è$*ÒO+Üú¹4×õþ0<¦>‚¥nÐ$¥ÒÁÑðððk66¬n ½ºÊv£g„m&0] ©ª?š‚?]ÂJÒn'ßÙ2èÒá)áûK )KªÑBk/ëÃïÃÇã’ûnãÐ:Lê/¦œò;T¹©<Ïé1Yð—}=9O÷õ§ýAµ“Yz§®ãæ„üZÞ_SÏ°Šè*?&:òpñvn<Š¶Tœ±43OJº•òИýØ¥¤ì¶îŽð*¿gƒ»6ɽ™@zvž)_®æ>I¬ðÿYO)òŽ÷Z²þø°‚§Tæ£ëÙ­…Ò.õ¸^°bŒÚ/»}|ÞÐÔ,‡péÔ®i´ jSþž$öÔ&¢¶ájE+ó¢|MW$EÑFÏä,§ÚÖ¶¿ûüöµ†ÆÓ¬™¤ö‹"@MµŠôÅlbARR$³MyúÛ§€Wýhàdź~¥V釴\×q¸h£ößݨ6Ëa&#.vd÷3€þÂ8ð2þ¹0!q)›Ó9|0;,Jì0Äv³?@]a¶š>cûª;š:™§íËßä¨6$yoÕ¢ˆ›»òYÃg†òr¹¬@w'Y+„Þ¶ 6N@½j¼fâiÔl^ÎÙr!ŒAs¼ eFy=^΃7›¾9ÍšD!K1HêÏ—´µÈ…a©ÿ¬….()Ô²T[ø¾ÍÉ1ŒïÖ‡Ïþfè‡Þ¯âŽsfq¿N. -ú;¬ìÏn¼qÊÇ$B"hic™©¢Z>¡-Eó–!)šæOxƒ÷ƒë'*βû»‰‚ÝJ]$ãÿvÌ5pÆnºëØåá æE]@\ 'CS5Z!/÷_€»~¸·š„enBžÿlž”š¾2D§iÔéµê³jëΔpgµu»YzV£‰ÏÅl’7ÛL¼?)Óˆ4+tâàm ³QD?\!+M•–r¶­²µé3R¿!„CçlÐ,…ž_­+n[‚š5Tëá!"„4'·Èe™º^aN/.Nóêc œÒH>Ï¢…Ó>ð{p†ßüÖÁ‚…Óˆã áôË&Ï`„G® Z5ôÓ“Ö_Š[€Öj!ú¶ é×ýw ¦P<='LäÖúŽ¬[ ?=‚Õàåÿ9¯ŒM‰Ùʼne<<2B¬$M ¦-åã ´Õ|Ü\ÎRS½U-Ìäß–¿‰$›ßö‹|¿¹kg(7XËeÈ"v½xD—û¥]‰ê¿_¹Øt…ÉÊöZ¯\ýŽ±–•Ê8êøˆ”ê2z¬Š;ÒKèuùz ŸßÐÉA¸ö!Wà¤2^Ü ¼LØ*)òhX7KXt¦C‡å‡õ‡Ž³¹Û2RÕy{r2 rÕ†¹×ZZ*[;¯µŒuà +p‡çî~¤ºT˜R´³8ÓÃ@¬/lÔ›—Ýe…V!Ï +~V«µÎJ¢ÖV)[“¸ÝŹÔenßÛ\›ÅåWò;áýoÕqÎ +endstream +endobj +510 0 obj +<< +/Filter /FlateDecode +/Length 2463 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜ndutí4â4v· Š%(ñ…‘0*ƒÁ(Q# +30#’à   ÌÀÊCQ^ã›—¤D‰£@ƒ¥ÙuMpݤ´ŒYwͦjS›Ó䚪½ƒ»µû+ÕÝ·î¹÷ô÷óÝs.I¸»$IΈŠŒØ ^ Î3è’R7ô VïOJÙçÚ%Ž”wÉg2‹BQ¥|öÏ…r¸=~üí¨gätÂ$Ÿ|·FŸ…MÛ›#.Z±âÝ@×21. ß žCÄðT}²VÔäs´Fq}fŠÞ¥7$åhSŠáû÷‹FÑ 5j &×âÛ€DQÔêröj bÞLÓáÿ ÚT1Ç”ªÍH2ìõ®ÿ3÷ü +•¨Ë1–¸-Sç²49xÑ(&e¦aýKŠ>73Ç ÓEhbò²´âr1U»‡ HüS‚%ˆ91Ÿ D0I,&‰Õ$±Ž$T± Ôî„ƈ'¬.¡&6âSÒ› &7 ä¿Ü’Üúe¡².÷yî9#_-ÿP>FPê[z9}‚~æ±Ì#×££°ü¦ôú&‰G¿›²rw©t|ó›R +*Ðm…AµþJ!õ³à2ÞTÑo¨Ä‰9„!lSRëš!—¥@£ +dF“à>yŽË€ÙÁ—½ÿüHYè?/Ë/m®‡âžÃsa&–„“IF/˜ûG˜¹F¢‘ ¿o¼åÈ:Ñ\yB;k³yözãUǵ™•”ugéîd%r§P ¢<9ë¡bd#•lIçí#Ï9ð·s·ÿ$Ü¿Õ÷f)aZü7á·ø^U¨±ÜÊ°#‡·°½ÃÚkì-cj4.Ù€&Ù…CËí‡Jr˜Æ—š]ز‘ñ¥ì/KaýøRZÑXRóÖ½¤(@'¤f´žR@–|¥…àK^ t€F&ÉÇÃY”ŒXŒv M@£E …Tð2@…Ü` ÊJ‘/û¼o1ò@Sv, ‰ƒé0mà/ÏÅwX)3öÌ Á9ñ$*;^_ÖÀ½|âpW»Î ?P>Ü?¼ó9!¢a>ç·¶¤(N€H4§Øh¿À=¸¤‹Ý²+míC6[¡ ø –ÃÌ à… z |¬…/›Ë0Õ·õ\u<?X`6"M‰O(Å<}T™`·㬺'·S1ú8 ÀýD`_òw4‰‹Š3îÑ Vp Õ›[óQ´5ʺ‡(è`«møá;µžïä†/ĪƹJ—òašþb[1_VUVS£tÑú"o\á0ËÅÛ†e ã”<ÇãXTe¥Ûrë·qÈãwh…M@A›ÔÐÓƒ¼ÓU©äBY;¬#w•Ò-šqâ0²–²CÖB>½DŸÆÅîé~³‰CSýýPò}“׺Z{.õ~ìÞMSC¯C>rcïÂÜ—ën wúž>W‚ƒfž>±÷T´òHN³–òüÒB>«Ä˜›ÎÅf|ú¹À¼ûäjOÇÓÞjÞVl;ŒSu˜$‹ù xŸÄG*‹—dÁYèoÇw²š´´¸øNíàÐ宂³lïe ‡ÝÇã̾ƒ^ C*|ü‚; ŸÅUk`þ±`˜:`pDCDË`@*gÑ{~¾ø~ j® +Þùß#óæüˆ +%ˆa?;­Ž|/kG¼Æ8ôh´yôî´Î›pñ‚hù_ß<Dq,žØ)CcOî ÷Lúp ¼†ÿ—~ªCüÞŠÅ+™ˆi§]³A‰7Uqluyµ½ +·M[ËenèblÄÚô„miYÚ‹kMYíq¥BÄZ¼€•óEó™ FÆöV‹!8JŸ°ÕÚkøîšË§û¹¦“ÖÒ:©U4c«((.Ïç’¢ d»ä=WòBŽRöd{Â*¥bs!Lƒ&˜J^….C¸¬õ,k¾r÷ã>úâ•Pö‡=7ç·{liʯ­W67V·u÷æ[Îð- ŸÚ·­.šCìòµÿ–¦|WІ€ï ™ª¦5WJUÖ4¥ÆyÏŸ“/Ç÷[¸ñ»ÚoÁ²lß%„n|w.¸ñ㉨ºßo‰¿ØfG­Ì•+\º½ò€ôÎÍ'-Þð]–½³±¶³B:¡vñ1ùK¨~W`ç{Üð]õ7+(I ¯Ðó?630 +ïø½½±«©½E®¢¥ª$S:±lí)ùï3{Å+vùÎôxÛžesåúÙ„+&{±~×gëÜÚyø¢ß–îïÖ¿ÕÀ¦Nþ±Z¸`2ÐÀïÎX¿{²}wÿÑÀú;-êw*«ð†Æ¤ÖŒÖdŽ¶ÖM-7…}O•à+îþ®ü=ù»ãâÞÌ‹Å~x‹´ì^¶U+–¯Y±˜ST$¾ý1ú­ô=´ƒ=7§¤(7ã·Ðo] ¾úé?¦W›>}úâél¿Ó¦Ÿ™Îª˜þ],ĺ1SnAR<g7÷w ®ïÜßy¦Ïâáù¾CäÇ$Q€/›â€ +endstream +endobj +511 0 obj +<< +/Filter /FlateDecode +/Length 527 +/Subtype /Type1C +>> +stream +H‰|ŽAhA†wÒÍÆÚ%bÓõ`B3 5Ik(‰ˆ‚¨5I ¥‡Ê6;iÓÝ8»­ÍAô ö ÈZ¼Å + +B¼‡VJ-•"Dõ ˜ƒ‡zz'‚»ñâÉ9ü¼ÿûyÿÄñ!t(;2–ËLœÈV¨*+9ªGÏè%ÅMÂvÙ}¼%–d‹!¾ùëºÖÀ»ƒöJ/çAèó÷³zÙYœž1ñÉT*qu¨£ÉŽvtg}Šà|Å0ɬ/h–u*›D‰áL©„;¦Ä tÞ…¿ƒUÕœ!ËN8­:û”(ؤ²Bfez ënò-þçV5ìtá1Mu]Þt eMpZôΕ‚>§™T%Flà\~´R&øVH‘sâú¸ãÐå+»ZkØ?ÈÑ£®oW[¹vU€E¶!±4Ü÷BS`˜­Iàšö=_[˜ìÌfŽìUɘëü0é·WoƒçÁ{ab,ñ@³þR2êævƒÚÛß×Ko†—Âw}½/Ï^½Þ>ü-ý‘…“ÃUúŸ3÷ÑÊúãµàæ M½¸0~'œcè­h¾ßÔF& +ät6ût©öC}y¾•¸¶ ÚµÕJH¿m%|þ[–}Ó‚c–e=±V´¶-Ÿƒ,ˆuÐ>}²ºû—§®ŠÝ5±øýéùùà¡(þ`ï#õ- +endstream +endobj +512 0 obj +[507 0 R] +endobj +513 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +514 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +515 0 obj +[507 0 R] +endobj +516 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +517 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +519 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +520 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/A/four/g/s/space/t/two/u/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 689 0 R +/FontName /ZWEKAZ+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +521 0 obj +<< +/Filter /FlateDecode +/Length 271 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹ùÚ†‚–-…úAÓ>@¢“ThTŒ9äí;Ñe t~ÃÌ_gF~mŸZ£ðwoe‡Fm”ÇÅ®^" 8iÃò”–áæÅSνcœÄݶœ[3Z&ð +.Áop¸(;à‘ñ7¯Ðk3ÁáëÚw«s?8£ AӀ‘.zéÝk?#ð(;µŠâ:l'Òüe|n¡ˆ~žŠ‘Váâz‰¾72‘Ñj@<Ójõ/þ˜TÃ(¿{ÏD±çf&ÊÄeä"q±s•¸"®òÈd˜x¨#“a¢.#“!Nùõž_ŸŸc-·W÷ªhxpoY®ÞS·q±ͽAmðþ Î: Õ¾Ù¯g¬ +endstream +endobj +522 0 obj +<< +/Filter /FlateDecode +/Length 13410 +/Length1 20747 +>> +stream +H‰œVktTÕþö}ÌdBÈ‹@òðN.yÌ0y¿!“;IHy‡0“„É‹ ò’´ Z +!*R[©^(UJÁ-TÁŠ[±UÛ®–ºR­«¥<Ò=¸ZºüÓ»ssîÙûž}öwÎ÷Ý3 ãñ DTWÕÙR'$禰çß í}îÞÕ}P* §·¯X¦¬ï\»0t±oM×À‚>!è57`ü”û,è]Õµ³H6¦ã@¶_w§»£í³Î…§9_f7;LÏ#¸ƒûSºû– íhyv )œsoo»ÕrPz‚û#}î¡á:UÍü¾²ØÝ×yòaÿÜ_Ãó• ô.Û/s-Õ§<ñ¥ÒËGy®ê?q?$…ÓvÈ> =´¸yâv+½„.³ +‚Œ»—ïŸÛ>_»ìPâÉnr-¦`¡H‘’à o«ÆO4™oFMw’à}ç¿/Š’l0ú˜|Çù÷ +ž2qRhXøäˆÈ¨èûsŒ:%6.>ajb’Å:Í–œ’š–ž‘™•“›—?}F=]Ë(*.™YZV>kvEeUuMm]ýœ†¹NWcSó¼´ÌÏ›²Œ>¾! Õ.gcë?ÝíÿêX¸¨¯wñÕœ¼Ü|í‹’âi6¿Áy-]‰…s—tU°¦ÙøpÍî­®§ mE7›û!×ËǼeˆ7×%Y§††9úÌWj™&_Šr"Ç¢&sñѱq˜RYUëRN0Ó“E’x% …ÓLÆzlljDS)…êÈM=4D;è)Ò…ÓÂ%QM¢*jÑ×”d%EÉUž7ÇÄ„_Móì%Å“$P %ðØZj¥nïØzÑ;Þ±öèe͹3Öàûÿ^¹¸Á3ž¦7è e;Gïл^{Þ÷Ú%¯},ìβ»mb ³@‚ ŒÌ|1~¬) AÆfÊDLB(ÂÎ+HD!÷1N3b b +b™¯ñHÀT$" X1 6$#©HC:2‰,d#‡ëÌC>¦c +˜£…Ðà@ŠQ›PŠ2”cf£•¨B5jP‹:Ôc0N¸Ðˆ&4cZ0­p£ íèÀ–`)ùK°°›°a ¾…‡1Œ­x„wäÛØÆ{úvàq<ï`'¾‹]Ø=øöâIìÃ~Œà).âü¿Å‡üÅú¿Ãïñ1>Á§ø +Çç¸B1ňú±}XKŠgl]Ìû«ø_`VÓ´–íAZG›i­§M$HÄ-j¢j¦¹4œÔB.šOTC³™ÌæJª§*šCÕ@¾4ž|ÈŸLÔÉLíb¦/ 6fl;3¾ƒÌI*ES8…P(S?-¤ZDK¨—–R ÒbšNÙ4ƒr¨€rÉNyTHùdeî'QÍ$JÉAeTDåTL³¨„ÒÉFY”J”L™”‚U¸ŸYè±eXŽNnW`%pÛƒ…ºëf~Þk½ì_Œpk°‡†i=þL«hm¥ ø ÝOËéڈ˴šVУ¼:›h ­ôÚ&ü•×ì® ý‡mÆg^ç}¾Y VE 3µ½7OÜ»È_Ã⨼Q>$Ÿ—/Ðyá +þÀû÷6ïõ1fÉ Ìž§™Q{™kÛ˜{[™‡[˜“™Ÿë°«óJÆ:ȼíçÝ]È躘ÇmÌéæw#s½y_˨d=”³6JX'«f:+(‹•Æê²±ââYfÏÊWär°tC*’4ÉG2H‚ñŠx^|S÷ˆ›ÅµârqPLmâTá–ð‰0*ö ë„f¡Q¨4!OÈl‚*‰Þ¢Q:@ûøÔÙE;i³kZ½8?d{¾Îœ?Áü?ÆZ8ʺðà>ÄzyŽÑ`ü{Y[»Xg³êî]…Û+p¿µs­m)ãôà³ÁlŸ41dBpP`€ÿx¿q¾&£A–D`9ÂÊp(ÃmêÖÕ`µIõC:’œ¡9.o“ïmtßD—NŽÀ{\VKÿéB¢ÕrûµéPµÃ$ÆjJ‰ÒíîÐÅXn]r¨n¥ã°Ý>\ï4óuæHWµÓó Å*%ݺ1¶Ø­£ÆiŽÐeG¶+ÂÝáªsª6õZ„M½Ìs'}svwÇ7¾)Çj—ÿgpÁ5¯+(84ÇjeØ|2;O‘Ãźèp÷´µjVK±¢‹ªv„ٱ¡:†Uè’ª…éã_ö¼| +¬€_ OE¨ †Š( ¹”Zk’Œ’”K“CL#æLÈù4bK4ŒðÙo ñã +fð|Þ )5š&†ø jL\FzffhŒ?w'¥¥ff¤Ç݉Ñ×1ƒ74ƒ<1•ÒhŸs{Í´¦5e›Öïn*¬)s·Î-³Ø[¿»õ!³¥¡¼µ°Vý7ÛUÜÄ}…÷ýöv%t¬.K–eË–%x% 6FF>ð…!„BcŒãÌe 6æ2˜ÃaˆcjÀ¥@P¤P(I 3a2$m’r%e “6Çd†3Í$eBÛ¡Ä^úVL¦SýaK;³¿}ï}ßû¾oë†;¦“靈[§íy¡¶û¥ÐowÌ=ÚèoØR¶bèüâågFbx}ÎÑÙ£—Ï/^ñzÃöX뙑NöŽ’ʺ䲈½…ÛâàuEÄ}:œ•6&JPy¬ÊQ'€Å@ynÌ_p}ÀÛÞ7AîÈïFÍ~éý·Ñr»Âëä{òs#gñär<Ù'•“)µNxòO6%O6ù(cH_ÔE[Ì„ãy!6¡¯ÝÛöƪ¢âåçäš|h&ÓÏá0œë³ï>xòJ¿üàá}<Û-¿W¨aTUS\ÃQÝ Âcµ œ%)mÓ=øÄhŽ;3š–WÌpž2NN›5tl¦× +¦?ë•Î³àêV=¢õ¹d +0+Y‚©’„·/궑ò‘o„(Ià’¦GPîìyòoXƒ*¦¡RâFNTÌv^imLòV[ÖqANöWUùµ5B_ª©öûk”3.<Ñ2>œM™ãZBéRÊ“ÙÄí89ÀøF¸.ò˜½õŸ÷ž’¨Kž|J_b·b²J£²âN}9§¥ÔÖòQÂh;`¢‘ðéÉ"X/1DwÐE”ñÒ™±D¤Ÿ/Üÿìö5Hm=<·`âÇ¿Y½>{ÃÑÙùksytØùè›N~Óÿ‘|è ;ÿŒüýeùmùèiP¿¡ó +ož<¦ØÞD%'eÒ o¡µf Ð" ŒsDzç|IAÚµÍ6k:X$ܨÂÑH46†²ØhþèLM¯_²pAyqqEË’öút‡U~ĬlhZ$üP>Ãfg¸I|bc·Î¤¿.[­LÑU\Á‰PããA nÞ¼Ó¤u&â¶eó4Φ —dó–4E‹ÙYnº/…1°àWªÃO +ÊÖ)eqzÈ*…(⦌ ‹„ 'ÅÍ´%‹vCÓ[;²'-žØº6-µDÐiº¿\þÚ‚@QËy÷*Hýåa†Yr°¥¥¥èÃù~è¸úhqéÒúüê—›Ë76ôMXºsÚOúw-“;ÕWêr•b7@+ïRéˆë좪ŒÇx6_–ÅL§§¾ “Öµ“\…/Ý̉2AσŠf²ðíKìÕ¤R,Ty GÆ%Ê ˜  º¨£™cPa|^Ü1H„ŠÃ©žýô*¿T %>î8Ýô5” Éß÷…”Œ•Îîßy¢¤k¶TÒÙ]úõ?o©?"zèa¹§¾·ùõ’ü°ë^o†¥gвÿÕ?½òâ¶Z«MÛJ˜3m-;f;¯ ¢órÄé¾*° FEÙj*KƒT+ͼ€yRmÄÌ[m¶Ó¬!¬ÈbšÄ É€šJeÁ—$Rb%²C0jñâ”\ 0 +’Œ*%a;ÞGb#_ÚHå/ìú}uñ#ö`àåç߉ÔøvUmçOaäzèðÓ£BóÈ·ò=®Ÿ?X9ÑJ#¿Dée.«€4rm$ŒÈ¤"2o 2aª&^–)i—•—rˆ?Ÿ„P•¨TŸÖ¥v€+ƒXµ¬EÚ8¾ìL#°bh\¡_b÷«”eˆŽÒ-t„/(ÈØ,ÅFÙÏ$@Ø*’O•Œx|ÃÚß/™wöN[áÖ쬲Âfgeû±iõýóž[Ï¥yF˜p³±ñfL`Aþó©¿vò¬àO·5VwŸž2¹ÏiØ°gûÏŠÖç6¼Úú9æp*’eð¬9õ×ÞÌâ‚”¢E{ZÞÜZCþù|YÁ¼×¾û¤¯ñ@³¢ȳÇX»‡ +Ä})&bÁw Æ!jíj`Oqò<:E çÙEšï¨@JÊîG¢n$²øDAÀÅZ=Q :¹óð°séÈ…³ZWJhÀµµ<ºÞª)rÏUf·ÛË0›é¬w¾²D*;¤É_i–{åF•KÉ)1œò[X©ßr£Ty¼x¬+ͪfƒ>XA¡˜{*ô‰y»Òˆæir(V ƒŒÄpVøUØŽ1Ãm„QœLÏ"¨ž¦ y‰&þFL¾dàH¤ +Úötýñçžœ_»pÊþc;¾Ø´òò²£Vw®¸zjpù‚c»§m®ÝxsÅå’å“Û··±[˷ͯêjWvhW÷ݮơŽî ëö.ê<3{ø³ºØPGïାÉswBn´m¨ne|CÛÔµ +Ÿr±Ó!ìÔNy©±q»Ò„í© Ç¡Aâ0¯‚½VƒvKöyôÀ‘œQçCçô…Ké¨êi/¥¸"Úeí"+ÑÒª6~¢‰és-È_sº±óö¶k÷ËS×Æ7îÞ·yOn–ÁÕõ»¯¶®Nq-»Ò¾å/›ä»?Ü–Êÿ"m3^}îÀ·ôû{w¢T¹¼“>‰NnS¤VJ=ê脱 +ÐÕìÿÇÕé}öWUKèð…Rµò¿¾ VqzrµV’j«R­ò4·ü\Á§i©Å5Lj&|0è4¨ûÛ­ ŽdŒApŸæ˜Rˆüøq‰T³¢LI5ž²) £ñ¢( 8ǧû0àÜV›íðn]¿&ñh‚ó˜Ó²© *Y0ž Ù•´Îõf´,Ï[(m84.3#Ížbš™|^R°D°\`û©E0üàV%àHº:—¸®ØiÜ@WÂ?Ø|ÑìqLª8âŽo¬›ã ä7\o-Ì+ª/ŸÌËÙY2ÙS,Bë¤Æ4ùï„û/áÕÕy†÷ûöœ³÷°—³ìöÎ.»,,¬Ë²»Ã²‡‹°"*‚ÁÈ€DI·±VMC$&jŠ‚ˆÅKªV­1 1–ª©¹´&3ÑÚ3QSÚÚLÌÔLcã4þèt&iðÐï;gQ.š2ûç|?¾÷yÞçyŸWÈý#•­ÎLø„8ï¡žÍXy{[¨Çh5(Ä@`›ŽæÈc®Öî€Ë°²ÂcßÉmh—-”ñ²:¾*a©:Å ‡åE!@Ù€' ærn ä„Û m´^ɨ磷¥d¤ôh9‚Š é{}€¡äåãþ†|B[èÍ–lÓ€`Ð'}\2n”htZÃ=+—k wGî—,U³~¿9ò‡¾£-=Üxê«Xÿ­—Š6gyž+ +ç/[½á•¦–3[â55ÕïÎï^²ú¼üR§M*&nÞ×´c±Š Öé_„Oi,Ü{§C³ðКö”ÁRAE¼°³u¥ùaÞØ5²m3Ù²|Þ«—A3 Y`æÔ(eƒ,mBýÍ¢¨ßí QìÌIΦ,Ž nöòhĺ ÍRårtÄÕ“ÍŠ·ýZ¸rýÇ›ŸÜC›G›¼|KCÛó}Ÿî«]zrtÏÚ&N,•,?LLJ€qiëòóôÖ/gu=:ôÅæÝß µV…±&òPgBÄ›ùaœ#Ö(‰©mfà9Å.1À¹ìÐŒÙRƒ`6Ý”‘nDR6Ò,~I¨ ̤°™ÜK"G‘¨h÷0ÉLý —*— ”Ú÷Woüý3-—{#2c±X3/l96wÝ®Ym¿º½wp"/(04ùjçËÂ'× +½Ni6œÄù‘˜Æè.|ýfïÛÿz6(2ò1€ª\ [ÄÏËL7ÈÍŽØLX…´F•€"¡¹Ï+Èœ£ ªóæÂ(W)öjmVÒzžŽù}–dÃ`®öÚC‚)¡Ð‡k÷àÒa_#Ò%"Îëqf*p½ÑH„D­]^‘N|ìÀrÅǸ‡'ÄòouÚYËj÷ùæUìJ”îjgÕ v½pcUy[Ïwª\)¶dL)OÍ|kˆ/_Ö"מQ­Ö–¼6{ùŠý=2· 7T龑ïë²Z0Tr€°TâØœ­3¹š;ŸQ&gU]{VÖ†Ú§rSÒ©;ç4©›×5J0ŠYLa²Ê’èÕ ô*eÀöÂ+ ~¯’† +Zïd,Œ‰‰=u¬ñob`/`-$¨á‰ã¹irÿÀµ/ã” ˜¹„ø æðö¾_,›¥Õƒîn¯Ž÷K ýç¾ÁCÂ#úÉ-Ö® ÀÈ¿—¤š‡‘šÃH()g¤P$‘â Òàã¬HÓA.MœWAíP""aŸhÉî6°¦¢ÜžuP¸õÎG¹S~‹9É/Õø­“-àË‹cz<›26%M"rç0 ¦Š 1A&ÀT†-©k¢k°Š<@,ÈB|\°×ä³P°>iâ_î}Y÷¸°(Ð ½‡VÔ΂è½ãˆtNžÄ¼ÙÖ÷@Î&Á±)gjWÙ¹]¼-h7Ú ÄÛþü‹!|Dì]9±ìà"I +E÷oñoa7A€5vñ ?t˜DnEÈ¡ ‹7Kb°0H V”TF—4ÈÖÀݲ§·øx1S_>í•20ö¹°v¡÷¸d9¼“8u§h›6Æ̤3JÀÚQ4ï•éЫ²Æµ‰…2ø *ê.< upzæüâŸ5°¥±tA™Q;Ó¶HÇÅG«[ˆ©Þ +îqâdòaãPIr½,GVÄû ÀäZ€  ,TÑú,ÆÅ8†¦ëN#‚ÎŒéO>RÚ=EÇ”LAAL0Ìû€ˆLñ OcN/Ó°´ðï­Oïj}ØŸ>Ë͇&#:2¬ñªžX>ðb˜’ XU¢©d~8 /ˆ4%T,ž»Mü2GæRZ¡‰os8›Ë=^šÅÖi‡@a²uÊ­ý¯ïd.ñÆè’N›IÊb<¯÷MˆJ#}ÄzÑ{)yªÚ†Ñs]£žCèñ²j>â×pQ¢õ>7¥‰Q1J&… æT„6öÙ¡ œöhÓÈ(I§ò@Ë'#–Ÿ?5‚Ðäo +½Mï}!¼)ßØåÒF=òaJüªowew44!t$|g´d`ßL.3!?;áS¬ÖÞ1²—õêœÄÐhÝ4”¤´u²¢Y¢–e¢ Ä¢áRÐV–ÁIûN7c—‘ÝzÍ wrá!3ÝÉé@à%Œ‹)óº€9qExã·gAë—×ÁÂ÷>vÿqËùMñŠ×û»Þ†ïó½ê?¿ +ýî¨páoŸ»ÿD>»èÐðóÛ„‘¿t,yívÿe|5©Îcˆ¡ˆl6_*á|ÚŒŽÛQôƒ\0+ߧE{ã¸ÅåÚIy ·» d¤ÿ®ÕQ°ènü?óEx³;2dfŸ6àõúŠæ¦Aç¼ØëëvwÌžÓýf[¬4-ž¨ïžûËÃkI×ÈðT?|Êj#Å¡N@gÍÓ [^z²Œ©Ñ×õ4܃Ñ^ÑÏ••¢Y^èçd}Vá2i1`ÕÓ4|V‹j†‚ ÒÑ°;£Éî ±Â'«ÓŒÄE %¢Ý̈­ÇãÍBE¨6©°Kâ.â6N#-€ÉúÑeadOè[tm=³‹¸ë®®à2,íÄñ°ù«ðæ™ÕkŸHgßgý›.trcä Ìã~áï×;)‚r+Ü.Àä®×;–صee[4)Äðð?õ‡k%žGÿÜÑrüÖOïñü?º«=¶©ûŒÞïwöunü¶c;vü¶cÇïgâÛILHe)I¦m€– ’.ÀxÆ«HÛ¤ae€:¤[)-{±RŠ´¡mjyTS»2M“¦ŠNL+«´i•àì»v–ŠEŠ"û&ñïüÎùÎ9Û‹<ϧæç`¨"…œ)&®+û™Ehj´³Lø:ðB*N¹ò:.#!Æ’(gÿ#9.")¯z1[@_53~!ü§øŽ¥gÖ´o%ïñö´ uuùOt}yùgàÎ^WÄfµZC6UHW<¨k¬†³›Þè[öH ì°”‡+/M.î9qËþàtX2=‰ÆL5|cm¶¥ÚSkw&ðN¢S·U‘¢šò « +h©“O‚´1&Üœ P* ^ORdBëÖZSMO!˜U¼xND$ +ÄŽûœÇ‹PãUå¥H,x!TAJkX[²v¨Ðqt¹«sûê¯î½[üâÄs¿já¹f•äÖÖ•g×\ºxê£Þþë¥ gû,LòÅ@Øf4®Hõdý‚a쭷6ý`õËùÕ‹^Yu`X«î9²þõÏú#žcˆÎ“} Sñ¼O`‚ C ¼¿–xxJÐ 3·Ûh ÑòR#ªÜtÚœœxì"°#„8öT§]tعôµ´x-थyN=> +¾è;磊œ”v‹¿‘ªÕ…g§›ºé3Ûº-ÞÓ=§–Óøõêû§=5ÝÛ&O= Ú\J#z¦d¨l>bð¦Ð+ñ , •‚Lv1ky?8±¤˜µ,Š F´ +uÞœ.ÑÌøÌÖPz•ü?ù!úSðÕ:ì£^'ëNÊCá1är~DÁIœ8Cô·¨Ði«4qMJŽãTAsY9Á?#æîU<3ôsvéäQoféKÀžž¥nô:3™^miæf%djSKÚÖ{ÜëÚ›³ÊâïJÚ¯ôT¥`Œ\šÞ½Ä~ÔÅÔÌóÎBgL~³krìÉ“ÕÏw'ÐwÛ4ã³øAi±*àô*À‹®G_ÒÍíxi ‡¶›L¤R âJ*«%7¯ïÜÛÚ å,¦ÔÀжݣM.ØåH8NgÂUQ4,< ù_|7± Øî¯[Þâ$>÷΃*“t^N¾¯¥­ëÝ7Š/×ÛÌ43(ÞSíØß\ü +äÆv¨!±ÈŠ˜(2õÅÔ]FÉ~‚M/Fµç›LröòÂN±«Á¨%Þ¨®¤‡\/‡1YXØôÄ¡ÓÒTu%G36V +ÜxZŒ1[ä qkóJ0`r Jxê ™Jk°ö–›†xKęڑÂЗյ‡nÏL¬}ÌN"ÕZ7ßR_ìÈnZ=²è{ìÕ™ þèà•áÖ×w8Æ­ò… +µžšÒÖùjB“çŠ lñUÇWŒ]/<-j"9u›îD†½T0ïÑᔼÛN¸¨SR (£^‰èÜZ¢~­ÂŒJñ‰@¦“R$Šˆ1)òRUÚ>CŽ)1Eâ±*Ž££ +YÇÓî†5OÄæ îïŒ ÕéêäçÖlûÓ®5‹ŸÙ°ìÀ \AvìÐûÍ5{V¾ðÎæ„ÃhmÖÆ6~>¶ïw‰_¤=½GìÜíÈÃiäÁ‹ ²(Ÿw@0ÁSLºñ”FPÈ:0—4hÐ%¯“Ê^ ŽøÀ(%¼}쀈D©ƒYùPƒXèÅx÷·6idBª¯>ãEíÅ]²;úOnoXòóÅ‹›†¬8Tr¼ãÕçš^ˆÚ4ô..1 º¯éµ˜è™­âÊUH>ýþMÿ +¯£è©¶=Í^ú`Õû›Û½ç¹ÈÏò#C'jË7ùb- 6>T¡á+¡•UgCÄ\ÑL$4o1+éWä`ý2B{pøÂÓÇ»ªƒÓ¡ºp±`·C¬vít×CI™E|!–nøغã[ÖGWfÏÿ™=÷qñÁ¾ÃO…»¿¬öñÏç&>pB©-ôŽ g®ïGOn¼1[žh0ªuóéà–ÏŽ¬œtd õ¨·ðÔ7ä2û)v™Ö|##é¡€q†ä,š‰Ü.ž®ˆÈd)aª«ˆ†×É€¨5ÀƒËLÜ0Qé¨á ª,‰ùþ.f·äQ;bR…?E,9'Ž\64-Ìçª@e•É¾Xm>_ÛëK ²#GÔžša÷ê°Ÿ½r²2ݾå‚tàÁ‡Ód•Š(æ§ÉÒû_«5¶©ó Ÿï;û;‰/ñ-Ž{|I|œØŽÄ—87ŸÜœ„˜¤iB. ¡B!£¥4RÚB¡ëH´ó` ]ÛQ&T`S·]Õ®EÛ´¢‰1¦¡iûÑÕ6©Ó¤ +U¨Âfï9¶C¡Ë(r"å}¿÷¹â6¥_jÛ1ä:êõ‚–¶¦?¤FáB¢$¶‰nÄé(ÙÙ†¶jŽP†P0L Æ£Æm­bt|âOGª 4åd{Õ8ZÄFТ±[C‡N‘Qøcävâ•iJ5û³4Ø¥‡òØ…+ºäX.Ki„\g4çÏGné[XÊ©ÑlP-7!9¬39“ùƦXl¤„LÝ¢zÚWTjkiCžNž¸~`þÊžØ{Gù3•»‡ÅóbÇ‘r)3óÕ3ý›g·µí½:{arþÜq~ á<ÉÔ´lxÑÇW)K£­Æ~fjàÌÁžõ £»k¦ÊóWÌQ8ßùÊ­O½äÚpdüÐÑ ¯WtþÙ–Å/'ž¿8yú«—És|køâëc7—ö’4‡&}™š…9‚D Ñ'¶3$n Cç)@ +ÔèÒÀ5JQ¸º„E0•àE.…AÅ9 +°IÅÆÐÉb¦]¨Æ†} +Ì¡”J2£¶üIªà(úÕÈë]‘Ö8˜^+ÙuΫáCæƒå3œm8²ó“§žþ;4òý>•*2œ)—Á»)¢â.Ôï?þèÙÅÄ΄^•9E1ù+|òƒÐÌÇû&Òe§¡Ìqëê{Y)_fJŒmÿÕìéËÁÎ2½”¿á=æå–)GŒ!/Ð&kA¤Þ‰J-§á(¶Œ‚vÄ–h± U@µIK±; €“Õå„ ˜:å² 'lSÔĬEZ Ê’=X"dù !ù—Ë;Æ.ˆ£¯½ºEpªhVÈšGZŸ|Ž¼Ûutc|awÍ“ë2§ÐZÔéK'~×0ëj'>ºS0Vš[h*¯Š?ÀÆÁÄÒÜ®ßì«ë"rJ›M«ˆ˜ä¡+’4™µ2+ʱƒ5è9§Gñ¬¨2csÆ! Ù} «1)\R“[kÇ9 ÖQ³ecþ8¯óú&»8UÏŽ®±æ{}C×{+L_MšÈ¼¹RsòjÝÁˆV1VfÕ¨ÍÓ’øv#œÌhÑ+·L£"•ÖZb&ß”ˆö#Dà·zšÁÕ¹®X­•’¥L'¡Šä‹IÕNá’Ñ¿4ek,@7lz{ëô±Ú€­mý?0~ó}ǪþÕMW¶ïýõùƒÚ{r¡EåƒÃÃÛûkºÕJ¾Teß>ü£¡äb 9~®µÇÀïyê‰ÅþêºÃÒ-üwÿ‰¨Û„•hCFDèY„ +‘šÄd €P0¤w[äzª4`‹ÔPs°’Â)îa“–ù&w‘‘z‚C+mMè¾²ô¦r¦ÝlDf]æëêx¸ÝºÙ¼ëS²Péí:>Òíð›Þyn½z6ý¯®„àÜiù»4U9¤ŠsrÞoë´ˆ)öxŠ¡|æ£Z„sr¤u± +T[„ý(‰Mk¢%1O¹,ô +*<¨Ð‘°4ˆÚ=/ÔçèUÂ<èì1¸cO™ò»#ǶÌGÔ9ƒsMŽ‹sɨîÏsO®;ØWÿøƒhcÎÁÒg‡g¢=ß©F½9xÉô%ÕG^€f+㜖+ÔÓ¬ƒ·™M½N9â`åShö«*ˆHØÁ…ªP…eÊF p§b“^¢y8´òS†|ãKCMÁ·3?.(1'úæ<{ú¶ÔênMòCBõ 8i·O‰¢3Œ?O8Á“1» Q1LQ8F‘k ýÞŸ×ÿm"&—?Lf'gžÛ4 ¢7f§I}5WÅy¹r–g‹å0W.Ts4&¸AƒvhZ¹C<ÕJ_k„‘£úÕ#Ãjd!†õ¤\ÿc¿ìc›8ï8þ{îÎç—\;NÇvÇNŒcÛÄ&@ ÑFYxË$PB`ÐñÚ R´!ÄúB¨šV‹*Š*!E!&MY…*ulk·ªC-B[+!­0±j´"Ž³ïsgãD]5iš&qÒG¿ßóÜóò{»çîÄ'œäg¦Ä…®T½9ü Ã¶ËÜÙšìóVíL6ú–O»*£î­éûže–ß÷|ê_Z»´ëXíÂc]µÃ¥a6(´ÖL_þ0ÁÜ÷êYŸ¾¿-ýÁ÷~øæfáZòx ®뜽騰9¦?®Ú ¿ƒ3ćð;HÑ–€¯H1 +:c‰ßTi²á ,¨öUUº]Ž2‘”]‰¨c¡¬ËøÌm0²lÊú@Èýô5â aÜE!›8ð—(t°z÷ÂXEÜâ´?S¹ ú/oy6®ø¼,òe©+dúj‹û\z̵ +†ô®^­9I(Œ³öB¯* ëg;íU¢nmøëk*…åŽékR7j­‰–¶Ô¹”ÍX©¾Ðd2éM Xô¹åŽ"½N¤¢n3Oٲܔ-lðÏÍ3ßšÞO±ÂJ¿æ¥]èùZÙÔز£Ò»-ÙäviºÇÿìÁõ‹c§-iM¬{ê}wìQ_uÇÑšà@GÇëÉða“§¸Áð8 ûO¥V­ßÛì9[ì’6în;Þûk¡,^7›¥Xu]zlPûŠß¯"GË[bzæŒA¯àfÄÉ€©Ä`eBÒ¬ÌÅfÁd,ñº]e2#ý½•eÂadÞ(ž¦*.P­}àhcñ„· +Ÿ¾øâDTýJˆ¦3Û‰·õþfc(ýeÛPÜõ£¸òâr¶¥#‘þü@‡ìhVäÈkcG·Uï[+IÝ´yFÞkÒŠàÐ:vuû&kÕécÂjùÙ·Ef_è.‘‰l-Š)'#阢e¢æ¨±çº=kÖýÛ½ºÁˆmϽc…ÙÊ]ÅÈWazå¤AÀ*ÙU¬Ü!~òÉ·º=ÃEuǼå=âõhÉä=SÐÄW¨_ßRW°RuKù}”âæ“ dÚ ãt¬$S%‹TËdÍ0ÿcèv¿^Tµ#éÜ.lä;A-ïáÆNÞ3TÚéO#¶¿ÞçÚ{à{2»bTìVs¡b2Ê|ÏR{–Ïî ?Vš#:¨¢¦Nv{V…$Õ+&w»½Kj"ZÎíÜǶáóª—ŸEK¢ûþ$ÎÓˆ±$$Ri‹%$2’™´•xÜt™oaæmôJ”" C_ÐfògtÍ™a ‡dÈÎàüj힟m+Zþ ‰Ê¿¦F§¯BÆb¨2VÊÌÐÝœ#2ÖL¦/BjoÎÅÞ•sºN]҉Țå ê”›h3§ãÂ8 ‚¤è¢¤t›ú1Þ‹¶ò´¯bü20à,y€œ ºùz ˆñ/ñ¹˜s„¯¶‹gh³îE°—GºKÈeXŽPzX:Ý Æ(,\ã3“ºÚ=ý0yå‹ä“Ûо…1ºÍÐc‘¾$?Ösè>$ âeÑm"(Ø=Š}/BnQmà¾ÓJÕÖ}3“°§ë¯oQ#úëaCR#EØ@!vgæ2Ú!®ë-ðýÈwRºAis‚Ÿ£fáì¸I~é)ò%ŒñRó’·é¶ƒìæû«6 Óh—"anè‡Ýw [9üž±†RÜ7á"½¤O©1PÐoc›Ò— 1w ‡ÏU¹Í¾–AóOÒߢ.Õ6Ì—ß¡¤ÐN!n‹ôÕóü£}82ù2q;!y|ÈQ)dí¾Lîú3}œWÔºèÃ^}$ }žû¯“©“×Ú¿EÿJ1†¹˜/óúBpxþyîçCf毵rPk!Ô‹+[ ùÀ®qyû¡rQý¾…ÜBŽµ:ƒl¡f^¼rAì‚<~BûÌCRk [ ùðXB­ðzÈ…×à ̅6ÌÜEœÎŠ&’¥?!ˆØ®ƒvÜ? æ˜ÇµÉýåkË]¨«›Z­«ö6©Ïž*¹j¼ø¸6µ®æú7OÌó}}¼N>óø:_üµ8=Ž×WüÙÉÏgN|2~å£Æ-̳ýóÚ‡xåó÷ýŽñû_Å™h:B”ú²òä>ð ôë' ï¥G´þôJ´ Zñþ¸¹r÷R—¡_Öô©Û?}² í!IƒÏWå'šœza4#'4™z? MNåÃÇ¿Ød¯¶o‡­Éáðha8 +®‰/âTÅ#&}„7ãy¼(·éÛq:âx4\Å{òŽ»$¸BT°p~…¨° ü†ÈŒ˜ÝëåoD °¦k[ß ²Õeø;‘½–¨4 +þ@T†uاüwx-"78)]DnŽÀ²Ì¥Ò­áUp½ê"‘>Tï'òÃæÀY¢š!¢Úåàs¼fqa5Qèu¢º×ˆÂv¢E¢z øŒ¨¾F`WÔþHƒM‹Šc5_ô_ä0@Í$ËÄX†?-Qžò”§<åÿþ÷.½@úÌï“‚?/œ²,@oò?=ô)4òÄ?—¦‹TôX— etš;£ó5ÃÉ$£ÚÎê #²º@fZ—ÑEôÿ £KÐ2º ýç¯ù‹®u«7´® +uöîí=¼ûù{“º°ÁjÚ@­´ŠBÔI½´¦Ýô<ñ»;iQûþÛ±ÿù]Q‹ÞÌ9ŠÎùïÅÕRQ¼¦`YYC¡]Z6b)\4" ‰¯&^–FFº +#tfB\~Ê +ýK€$ö§÷ +endstream +endobj +523 0 obj +<< +/Filter /FlateDecode +/Length 3263 +/Subtype /Type1C +>> +stream +H‰|TkPYî&I'€Æ‘Øiìn†‡(Œ¢" +3¦ +T*¨ " â Dˆ–ÏA@†·¢¢2ƒ€ "®Šµ£»êhYkY>vwÖÙO3—ÝÚ»?ö×Öí:uÏ}|ßýÎéspLh‡á8>?6~ÓÚ¸p_ÕnƒVgкK‘cÛb9 +çdBÎm‰‚Ñ7‘û¯e"›ŸæÞw›}Þ ³ÃñçïÖêóø«Y; ØeAAËýl6`Æ®òc—ûûûÏØ6$SŸ®av 4:#‘›¡7äé êMæ6d×.vÂÈ4FÁd[üσX­‘Õh vj ¬šßÌÒò÷ šL¶À ÎÔèÔ†VoÛùwÇÿ¡bµ¹,ÅnÌÕÚ¼„~ÑȪs3—ò(ú– }anA«1.Y–¸;Oîf35;0 ç6Ãæ`Ø\{Ì ÃcØæc+p,ÇÖã˜Ã"1L%Ä„ØV ó挩°8Ì€Ä^ãB\…_Çÿe—l7i÷‹`¿àWa’0Oh¾­#0¢„ø›x§xX’ 9$9c¿À^oÍa‘Ã^‡½÷8ö;þTV}“ûËMœ·ž7ÕB®j*nºŠ€ÃhŒD +8.‚÷bÑ0 6gú˜xšH™ƒñ>Á ‘¶²yRt_ŠŠ=<À+á”–}Ûÿ÷K€£ð2—=>yžYÞþD)ìÀ ]~¥äݾëw™{u_,›–¦ŠéÛ~—‘–ÅyÞJð¥®N-"Qt(Z‰Ö!Å#1°öxCG´AnÂo[£ÑÄêcR¶êÆÁ½†÷ö;ßÒÒ&Ó]„C)„ + ÔB§häC UP’üÛ"+!­Nž8¼â¹¸FgðAEVñoEO'ž¼ú™?µü%ò]´++™@¤¨ùâ@ë-êAGö6Æ¢T*‘ /ûÊábþÝŸÃB˜¸;Á$D¢`ˆ•½¿ÔC®<1½¡` à/Àñ•jLqš±Še?ýðMïð#ùûUß#Ïe« òÓén¾¶eìü-êvGavjü¾T& +Í{HÈÞ6¥¨ ¢T‘͵y /ŠWï +•@â0 +gtïïÁu-'F&þ›v! ô o1r€N²Æ:ø…gûš®»!Ì)Uiér$´=˜…py qø*W>E“Ós5úEt¸õ‚µ‡r(;NYœ¸!¦þ´ŽÑ!¹¨øòdÉK +âÿBp|lÞz‘¹¸u}’:p Ú¼9ñ;'xèù°œ^·A¬€(§Ÿò&÷Õ”XsÍÈμ|×z•$4b»š%G‹^"âÀãÓϼ*fñ61}¿>›þšh˜¸5ò£çkêjêÍ>íEÆæ U1 5§Ž§[Oµ6]¤ÆÎ%§lÌOÛn‹ güW(¸ÁKA>pÍ,Fg¦«DH@-×#‚ÙR.f9µC +ä³â _¡å-{Ý¥$¬úøf½ŽLh²%ééXGÇð¨üYô;´¹y„""¾}óÚ,–½QêÒ6+äA}¤dŠîòå+Ú{O2߸”³M®ÉÍUÓ²§•\(ÙߨÍÊÉÏͯ`Òjw¶ôÈ»šÚ®ÑÒ2`ÞÃ\ˆg¼Âa1Ÿ‚×åd¥Ù|¾ÄÖwíÇ%O^ý\äी(ù°îˆD®×}í=}¡…>l.Ý‘—•ftÍ.N)Mµè,ûª‹¬ˆç¼Èñ†˜$ Sd)­?(˜8BVôŒU¾¦ÀìšÇž0‡ÞÀ9|¶õUÈ Ý¯ nB$õ¥¢òà"Ð<Òz¢ÞÚFöL…æ#¿•‘ÈÞÊ(©¶d¤HÍ×]`‘ [01Hþ3"¦ÅÒ³ÕàË5þwÝ™‹_ô®ERÈ+n xàÝ|]wA‚€M…(—ë’P,ˆÑ2Ð@&Ÿ.t Dv°é˜*äA¾Z$hvR`@@â3p‚ÏF^þ‘‘¾ã«¤ˆ?Æ·’ >¼þÆsò“Ý„åT¥žzû¼i`„éë=?>)´k<¥›¾¸-¬~1å¹®¢| áȉ—xÖÚJMvk“7lÏZW| ¦¦Œ‘~â «Áux ß7f€¶£Í%Ág™ÆÕõ›OI@Eìo)üÑô¨dÌx-µArD<Üpoü•üñ»´.º7)¤Ö“Z¦¨(O²‘Í™!ë¦Æ-]ú$yr¦6œÞFHËøîäÉh?Dñ§\é ‹zŸ›^Püö¯ ùx;ÎvfÕvËÛÛG&oïo£{ÁSÔ˜&˜BŠ…K‘ãÂßG‘Áü!¿½8[®Õ™TJeSS:-í­ÂÃÔi‚B°ë©S+¬1¬•)8³sE³¹@Áb˜÷­ñZ¯ß“Cw"±¨¡säìuÿLaóµ}iA‹\–4úqxàÌåú0!SœLÉL "V4—ÓyåúÝù”ÎT×q­¯é1#ýX +î7q8Ÿ¡Œ"§Q¾×@”l/¤9ËŽÝãsb×HñÅwSácÀ׺òÏÈžŠÞbÜ¡gÌЄ”Óƒ„loŒ9ÚœCó5ÔE¯áÝs´½¥‡oMV2²5ÚŒMYúo:Ñ–c–'ä6ZäÂÿáûa·ƒk(eœÃÔ3‹; +Së6RHò¹ +ªaÐÒ?ùqûιÑ.úßDViLg.%3¸[Æ!Û±œm=hZ“J„HË*‚ +ZË‚†Ó¢Ârœ•Ýʲ»Ðî³ÊÍV\îcË +uÛ¢ŠJbiŒKLª´Iú£iâ;ö³I¿…4ý1ÉäoÞãÉó<ïgÁå¬jvÆ~ãíY•ü-Åxpå¬X{Á¨ãs ç +²¸”L׃¹î›ßtŸÍ± +æjSµ^E;u œúgÀ[- +o‰÷}å:ˆgë¤ú«=*àâÀ½öÆ D¡7ÿØ +1³w­Žþ<(ˆÊ'>Kãö'uŽðÜ4Û[×á™ä¦íGÏ ô/(6-b¯­N\›&O³$¿"‹,³b8JIWAz×­E‘(äñPx®·Œô–brwJv|rr[KŸƒ6E?TÝã~z`¿1-Ì|ײôX³ôÐâ®ëáQêdESEŽÏ7çr)y_ߘ•Åá1wWI¶7ëÍñ¨è,vaQ;»}¦¼Ë[ ’E ’Hýú웜•¥I̘š¹!xj³‡’¹Õži´«§§‚@ýLƒÔØþÁ*C*z¹±üñ€‰éÁ'öÌ R’Éþyßb½âèç\-Y‡Ô PææúF¾ËÖÚæä\­Ù‰jÆq7^Í=«¯*ä ªŠµÚB?#é)Ñ8÷sïœL-*.‘ŒG?K -¤å¸%iŸŠ^Æü aâ;Œë¸·?’Y€>Ên¾\ßÀ·Ùšƒœ»=7É[]í­Â%,"ê½´Ô‚2¼¿˜ñê;Šü/ãC§±ƒI‘è ·d‹v…†`Ûä6Ì 6<Â^òZØ_h»`@ {³3!nWþÇ©ÉEÓ÷çÚçf°vÐ%pX›Åÿµ³4…4,~¯²…­îâ)î)ø?,ƒØñ[¨úpaj&oÄàUß^íé˜%yŸ +TkX›Éf±béô:‡¸ék)Ææ¦ÉÊïîÓ Æ†ÚÆ&½c± ;Eí5m×jEƼ†Å4\¢$s£¥w5 uNrm—5vi€(Š1×UéMÜ©ý…Ñ^x¿4,h;iI·¤E©èƒ:x Ú`½ÏDAŒoƒÕŽÎVÞã`ëýùß…Ú3¿y£ÏïP[Ec³ª½ÕÖ뚨»x'ÐÄ•3Gì‰bß}]¨M>/äøM–7U—©Ê>½˜q<¾½åO#Fáèå™eàÄ2ù ò2‘ˆ”³(šŠnÖôäñW¯—Mr®/¬3 ›(£®ÒXʬtÌàû㟠 ƒÍýD„0DxIx ȇ/•G°À0O™qä¦tµ/éùR}ùùîTÉÀ.#5Ž£à»±ðâ·§»•¯'™RÛ>"Iã˜qj^Ee‚(|5«Mîcòm8!ìy.°—„8Y$Ð!Rƒ2fX—nÈ6œö«! £úÝèG¡¤‹L§!ØÇ!Çû:‚äxlkg,d¯óZ¿s+%Tùôù[(ŽÔPyŸœ/ÌËFh›’¾ É¢á’$9$eJs…C¥l_ ùáЂäÏw¤ŸPø›ë@êu ®(òüÙÊþ+ÀÙ‹– +endstream +endobj +524 0 obj +<< +/Filter /FlateDecode +/Length 578 +/Subtype /Type1C +>> +stream +H‰|POhÓpNÖ4í\é\gt¶ºþÚum7³…­"øo-V/›ióë쒒ĹŠ‡ +VË&*˜" +E/"ê.ó £8=©¸›ˆ/R;ÂËöëÁ¤^<ùïû>Þ÷¦˜.Š¦iïéTúø™äÐÙEEä…”"OÊ!!K‚å>ÚØÃ\ ’åésvøØ ŸûÞ¿Šëüš¢$ªA»ŒJµal6h7lUƨl§Ú–ÉŽÄá¾~³‘u,Ò¾çh³ÓâÄä¬ñ–³:b17”Ê0I¯Á° v—¹7Ï_®¿_ðÙ\îÒÅWâªßmÄËÀSÀÐO`œ0`iûG|I IrlŒÃ¡ÖÏ-(A$ ôß" ÷º#~(%23 _!´ä‡¡ÛõUŸWŸ‡H n@°zÍólÀ€³ÿlí…ȧÖ)ÃK<"¶öPIÄA¨qKŽ 8hïß|´R{öpÅy‡­ˆ7qÞKö;Ü×u£¤C@×õ»:K.ë_t‡)-è6¥§º“äôoz÷`=3ãꮺzš»`_Oó±ËõG€¸Ôô +endstream +endobj +525 0 obj +<< +/Filter /FlateDecode +/Length 3401 +/Subtype /Type1C +>> +stream +H‰|T{TgŸ!Ì$›ž2 ÕL;ÅòPD +¢¥ˆŠ «Ö@"A0áákp–„j+>€bÁʳ ŠA±¸H”D´h9«ëøáÙè?ûמ{Î=ßïÞóÝ×÷»ŽYZ`8ŽO \²2böª]j•\¦Nš³Z›š WO8YŽÆ¹©–Üg64å¾ÿ>˜€ÛÁÈÇuŸýå¥-fã½Ïý“’ù»±q)²y>>î.ÚsR{»ÈÜÝÜÜ&µ§ÌO‘­”EìÒ¤(5²Àí1Iêä$µ‡©£`# ûÉ–%)73çV§ËŒe·éÑ‹!¬Þy‰7Z€Ü—­˜)k»àÇvPtÙÂÀPà05RW.I»x7¥›·¾á7Ã+ï,,`s„ÔØãó»yOÚÞƒ> T«ULIQ|®¡¤‘î+ß´ÎwA|»!ÐHR#ý&…›4Äù#‚ ?] fùf  ôã'‡@õDÀÍ´ƒ€á7ÎÉEˆ.{áЄ„HzIŽ<`GQYÁ¹âši¹¤N¥W©¤(q²Ðšûàýó€ 03t—”£6"·ô|^5 vÍ¡ÞÖsiäü°µÅÉLê +"ýÂô.¦½Ê$o^ž-‰Ê¢5{uº ö4,$À@Šµ÷áV;¸õàP‡ö4;Iö¤ê¿ßÁúdúÇG®mr@ŸHÑ¢a„ tX€5P ž ¡¤*:É"O¾ë¦ät^‰¡H/B.ãç$s7ô¾Ó±yÇe®–˯Ó}×#\]×/fÅ2»¹+݉é¶UÏ©îÌ°dw\¤v-æ»ü| àí¸7_Ý·§œ¥ªOuTDZ”µEÞ4R"{^bÑ°G6°Út· à"+ïÜ¥¼g€³ôäH^nÌú•†OßT´¶²­¿V< )àqÿmbšÂÜÏ£éeÁþº–’*©È«§!ø™òгh¥ƒ= +Qm3ä¥2bTx*Íì•Î‡ô˜½$¼Ì^BqOºWí8ënT˽ò$Åp#¬Ó¸§¶·ÌK©d³³]?)7{H@"ÔKPÕ‰^¿ÝËEYäîΔ‡Iüè w*勒7~ð"žEPwxì9O§å?-<ëyÑEÄóG‰v’Ÿö㊑sOKzyFè½#âБæféšÆÝ}ǯI ^š¨ànµB*,u}û™\CÅ×õ¾W—Lƒxô’4{ù J’*œ‘ãóÞ¿SôŒÜ{fO[ê‹= ×Ö‰r…]¥Í·‡¤;¯¨Ê˜yh¡+|pÿ·ì@ˆ$ïDY^ý\ߪô”ú†­weÜIqfæîÚƒøtÛæAH¢ñ §©êÚÙFƒÇ£go^‡7!ò2ëZ}¡Uz¥²éyK}ú¾Ÿª¾”çÁ£ÂĨ‚e4úÔsÑ —û«ÁBÁÇUÅK—¯Û躺¸TÁˆðÇ(¿$[°Ån…è‡ãßûœ¥™Ú.î}:þÛ <üÆ?êøt!R¾ù +p¼bîsq{!r +tœ·â.Ìf8{¡8MÛŸÙ- n³­y?•ÁùØ(×ÕÖI!P8;†œBÂwïˆaŠÃ‰Ÿ+®ž¨§_çûÇ°™Bj°BVRÊаìUGcEÍY&—¤2Ž„ß·„2î×efíg¢÷ÆÄÓ›•go¾¼ðw+n×v*Ó¸E°-ݶ{ª© øÂŽ2æ=&rÉ ªæäN0Àÿ ~,8¼þ@6ô¢ˆ¸ÈV7=ÇM|Š-º ºxf*$'råeî5×Þ¡_4ÌŸÅRF$X³dnÐúº–ÝŒî¨.?_*^“ÙÉax ¿ÿŽO%ZuüwQôlÿ°»cÁµrí¾Slñ}â˜fÓñu4rÿaÈ9½t‡¶¿+aÅ-Ú.EçÛ1QqÍœ¤Œœ£yƒÕé„¿¤FUúÑhŠ£úÒÀ"ÇgN`Õ{»öÆY&‡¯4Ï›è%³ÊõÆKRÎ$ôÏ“ìÕïËÚÇPÆÀ=‘Š0Ú图Wïn<n¿¶)â8›«5dh¥b]æ}øªì[ñš§ß/à¢!Mbø1çD‘tH,rGÓ¿DB䀆œÁùÑõ‚˜ŒVbo¼RL{,6‚µŽ5´JZŽüb¢_ÿ—Æj jꊢ“IsJ3nCc2Þ«¥o•ÑAªåaѱ"‚Õ  +b´¾xF^‘„„BK¹@AŠXDžI‘‡U,‚ÑJ¡`È´R¥­ÇÙ—9|ô\gü=kí½Î^kïºá…xóã3 +¾¼ßçøàÁú€ë(r½(|pnäa½%ÿÛJŠœÍL>/SÔƤG4»ƒ¤©A;Ç–|„¢›è›{ðî(,ÞÓ½¡~Žœf7°*1¹P°M` ÚÓ£­8Æø«¼Ðf$u¼nû[l ´1‚@¢à¯7쉴ÔÄqÁ­lÎ UY»éîÎÚ1àK¡YHNß6¶¯PëQ“XcÈÌ×Pá*ù‰,ÐoOirÞœ˜î:tÀD•fk5RQ?îÇ׎„gw‚ÎÉ·{8ÁF˜‹+ËêšÉÖ~K6Ó@£&' ðólßu2>G£¤’5iiY§\ pÛ¡ZŒ¢Êøxîw€÷±“œV彤Â[Ѻ¸I—šŸP›Òt¥¶îR!Ý”^w‡g O9ÇË‘.Ê1Ìb¿ûX»ï §í\Pµ±º¬’²Vµ[oÈF›Ã·Ð¨ËýBS‰©”¡ºªÛ®öÊ&šÃ½hÔà€V!ø¯í ‰ŽËNK¤24ªtM²‹¸•Ù,ó‹‰N¦õÙS0)ØB”.VD¾£å4 q"X9ÎÒ +ª§ÚÖ1€EØ…E¸ì„N!øz¶ïô ‰N¡ iËŸ¼ÆùI7Â.Áî?øÐÄ抑tõZô)Z÷| ¼®ðÖ$ÁGëž#š6‹_tx~†x¡þ›|¾œzùÄöì65ú"öÜcùãº×®^°#¹xLF"ªñfÒ° ˆ—Øzÿƒ\ýÃŽï=Fã2¦ fþ„1Ú¹[:-fJ*K*(raÄ|³kP6ß·ùÄøÜ+t_çš6T˜J©mÇ]¯ŸÑeüÀ1‘Cvä¸é*#C0Öî;2¦¼ÐPN“•3BrȘ›Wœ#Û»O±+. ÈFýSN¾˜by˜T´*ç.×öõY>æ·]g4÷h¯Ë@82øø~lç¦Ëth]¢¥]ÚÒx©ßvE}Žª˜’c«ä2ÏЀ¯:¢æâé»)õ©‡¤‡âBF[ÌJ<9÷Fyóþ<» F.;"³0¬<¶^I¥œÿQÛ!kn(;k¦ Fz]¦>U&Ïl¤¡ +ÜG‘;ÐBÑ5]Á¥û¸4NÒÆžÂ6óF½„Z¯Î×RGÔ +Å^™_Ò'4œ÷F-B´åÏC¿:úúÚ.p™£*óLúÖBk¯TYE³pû/¼D-‹áäU ‚–T‚)b2ññaî¯îe\ŒVeŽx€Ô’)Ö³*ÁFb*P‡iäÊWè ]OVßé@È—l%üQ‘z¿z¿Ž{?Ó«íÍú9 +%¢Ã¯¬ÄûŽÝÃ7q4›Q +DE‚bx–FóES#^ÿæDSò¹¤ Ä“üKࣻŸDZÁZ"è=µR}Jˆ!Õ šúÓ ;^HDq^9Å/çð‚–Â¥:c^¾4_ŸWp†ÊˆI8‘¢R¦%f¥åÕn•Ô–vUwµöw=þ|AK¼ˆ5èjöñœ£gWˆÜÆìVÝåÕÐ&ó ž…]É·x°+ÇQ‹‘¨­¯©«i€xh–ß, ¶CµHSf¤¦+Qj•ˆ²VÅ€Ã0u Ž2!u^qÐ͵Èmùè2çrg©Û›ì÷o³EâÿÍûÈÏ +endstream +endobj +526 0 obj +[552 0 R] +endobj +527 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +528 0 obj +<< +/Filter /FlateDecode +/Length 341 +>> +stream +H‰\’ÛjÃ0 †ïýº\/JÚl +!0Òr±Ëöi¬tÅ1Nz‘·Ÿ•fHüý’~,Geu¬\?CôƶƺÞÙ€Óx -¯½SûlßÎ÷Óúo‡Æ«ˆ’ëešq¨\7ª<‡èƒ‚Óxz¶ã7*z Cï®ðôUÖˆê›÷?8 ›aE;*ôÒø×f@ˆÖ´me)ÞÏË–rþŸ‹Gˆ×ó^Ì´£ÅÉ7-†Æ]Qå;ZägZ…BgÿÅãTÒ.]ûÝ•Ç,Þíh#.…Kæ“ð‰8Mš$N‰Sѧ¬OÏÂÔ4ÏDŸ±>K„b½_™6b©£¹ŽÎ„3f#l˜Âf饹—> +™Å§fŸZ> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +530 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +531 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/A/M/N/R/U/a/b/d/e/four/g/i/l/n/o/p/r/s/space/t/two/u/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 690 0 R +/FontName /HZFHVU+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +532 0 obj +<< +/Filter /FlateDecode +/Length 315 +>> +stream +H‰\‘ÍjÃ0 Çï~ +ÛCq’¶ñ +!0ÒrØËö©­tÅ1NzÈÛO¶J3$úýõaIVõ±¶ý òݺÁºÞÓxóá‚×ÞŠ4Óëù~‹=´NH +n–iÆ¡¶Ý(Šä9§Ù/°z6ã×B¾yƒ¾·WX}UÍdssî´3$P–`°£D/­{mÃ6µ!?/ŠùS|.!‹÷”›Ñ£Áɵ}k¯(Š„N Å™N)Кþô‰Ã.þn½(² N2¢Ø#“!>1Ÿˆ÷Yd2Ä{æ=qžF&CÌš> +stream +H‰œVkTT×þö}ÌÀ¨À +’;Œ’û5ÜŸìiíîÙ]ó\/÷·pÌý-íõndÉ_YÑÜïou÷t·)È=Çï+mîÖÆâÃ5¥Üÿ¿7§£½«{ô Ìk™ïïèlìNž8ÏýÙÜIô8d?Ð>Z Ÿ¹[K/¢Iਂ ãþcØáw·á÷µË%n¥|eø ã ò) ¾ä«C9kÜ¢‰\t¸çäZð½óߊ’¬ÓûùÆŒd  ?!,:6“‹Š ÀÖɼ ‡$q& …ÃLÄf<ŽQÉH‰”Båä¦fê¡Ýô4iÂyáš(Šþ¢YT£o)ÉJŠ’­¼`Š‰‰¸™<:êÝK<†§H  Jà¹eTKßÜ~ðÍ…o®#º_ á¹Y÷æê|sÿß'wø‹çéuº@Ù.Ó[ô¶ÏÞ¡«>»æ³„ÝÂE¶ËwMŒaH¡ƒžÙãÆ`,k*‚Áa¦ŒÇ„!œ™HDa¢ñã4!fLF,ó5 HD,°Â†)°#)HEÒ‘©ÈÄ4dñ:§#30¹ÌÑYPáDòQÀ›Pˆ9˜‹y˜(B1JPŠ2”£ Q‰E¨‚ ÕXŒ%XŠ,C-ܨC=ÐUèDŸ›±[± Ûñ-ìÀ·ñôa'åù.vñž~»ñžÄ÷±?À^üûð#ìÇS8€ƒèÇÓxÏâžÃaüÏã'ø)^Àü G1 Çp?Ç ü/â$Ná—8_á Îâ~—0ˆ—ñ +^Åk8ßàu¼ xq —1„·ð[¼+x¿ÃU¼‹÷ð{üïó‰õ>Äñ>Æ'øÿÀg¸A14‰µcZ±¬ÏØš˜÷7ñ>ÇJ¬£´íÚDÛi m¦m$HÄ-¦JZB‹h)UQ ¹hUS)Íg6.`6QÓB*¡@2Ð8ò£ò§Ffj3}9Õ1cë™ñ d¢(2S4EP(…Q0µÓ +ê •´ŠZ¨“Z©‹ÚhM£™”E¹”MšN³(‡lÌ} ÅÑlR©œ4‡òh.åÓ<* t²S&¥R%ÓTJA/fz­«ÑÈõ¬År®›±=÷Æ<ÌÏ­…ým؈X}ÔG›ñgê¥nÚI[ðz˜VÓ£´×i­¡Ç8;Ûh=­õÙ6ü•svßzþöão>÷}.¬«"ˆ™Z†–á3ãïòixX”·ÊGä!ù + Q?¯àO¼—x¯O1KŽ2{žaFíg®íbîídî`Nne~n¬cÌkkó¶ww£kb×1§k˜ßÕÌõJæ}k ˆõ0—µQÀ:QY53XA™¬¨4V—Ï +4ùA?¤[!ß÷ÈÁÒ)OR%?I' Äâø†Ø/î·‹ÄÕb—˜&ÚÅDaDøX „M¡Z(Taº%س $z“éà[g/í¡]Ì®.ªõá|ŸìEú +sþ óÿkáë‹ûëåyFˆñïgmíe=Áª{0 w3p¿µs™m!ãôâ³Ãä˜0>4$Ø0n샿Ÿ^'K¢@°ge8•¾º>³ÚTi³Oœ=,UaY._•ã«4C’K#gÐ.›Õšd³ÞýGuÌê1cU¥@ñ¸41–kE“œf·ÒpÌá諨2ñs ¦(WI•·!Å*M›ïÖPZeŠÔdç4W¤»ÁU^e¶›oEÚÍ×ùÛ–oŽînøÆ7åX5÷úÿLνåsƒÃ²lÖA†Í7³Sñ.²/_îæÚ¼ZÕfÍW4Ѭ'Av®qš}fÐ$³®ñbåháù͚íø֭͊䶷©Dj….—&›UAfµY̪66)ÜfUò=y6ëi¾äÑ—T^Äq£ o­(DZO5käV 8aŽŠ*ÍQëò~Ïfå!§ÑÉËMÍ:Åf}ÍfÍÕB“l¼¿7d6V°1ŽÈRATÊW^Ί!×eôŽ|:ri`ø(GV9²#½‘á 'Žfwöáõîzß~°»ö>mÖë/~×B€‚kLy:@H†aCQÀh % mhÚ’ªAm,…†¨-*ªPþDŠDUR5"R”`{ÝsÇ&±:ZiæÎjfÎùÎù¾óÝÁcùÏ>¿ ïvçÇÐ5j´Å(k8j/RÁk%Ûp¸ÒoÑb +Š©$:W\ÒùÔ‚¥Å¯²Ž•Ï. ˜‘ñ:âʼè*°·`„øœ à…˜gX /RÍÀ†ÜÁ”Û‚s“÷ +RØ^€®j +È“S_ —5”U6p"1x’ZáÌ£O OÆ¢@A.ijŠT¶¶´DÂ-Í‘H yÇ•) :4e’Li7Räˬò8@ÃÃà`‚“\/~Àþý« 7F|ezê6}•ÝþÂAyåb]Ž(µ97]öMÅŽi(»k&6€ zÑub/íá°¤cѤ˜ˆãºûá­}ëé5¡ìÍ_=»Ûß7ºm§¿bWsf=Ì¢·:/Ü;ö~þ¥)vý¥üý·ó¿Ï¾ŽT—ÿ‰â—IßL= W°CJ$EÅ”Q‡5¼D & ¢E0E0M]J+¤Ҿ”Å`²˜]H +c¯G‹T‰T2•Lâ^v@‹4ïÛ]í›7nÈÕÔ,èÞ¼½ÝUdÎÉ<³¢ó‰‚ñÜR‹á2X92c3/£?®– è†(®"!j¾…1ìæ ˆ/6 +H‚ùÝ?O6¡2ìç%‡–¢E¿×M[=‹"$:8*S0€q§CÞ:”‚ºÈ Hõ%Sœd²ÌíF¿;èoܔݺËaOh5{?zêå •ÕÝò‡w ûÏN3ÌæSÝÝÝÕYA=ï~¹©nK{Eóº®Üžõ[ú?~ìГùjŽ«s:ë D“… êz²¨¢ä ôz%í²b>„‡°Ú~fAÐeâDd­ÕñHE3^؃ˆC;Åò褪œápLI¨¼Ò¨$€$“Š1˜8Æë À1•‡4¤©úz +ÕŠtßÍž×;?Fé‹ùûÃñ“éÂù©ð/öŸO÷þ0Ü×Úœ!Ýî‘£ÝígD=‘hêúÅùpþóÞO†J¤W¥Ü\µ¿Õl¶bæÒÓÝWF{ _¨Îuè7xÜ&9SIhÀ0aäWS.ÎìHl0ñP ŸÝ‚M¼Äþb“³" ž +@ã5egQp¦‘J²¡hJ +JND: +ÍtTNØà9œ™üÈ‚NØt?m“ÏØ¢•ë{'Ù<Ôô\,beòí¨'B¿•*èšüOþîª!k¦¡¿¨´—©~rà&ÁA`úNú0ÝBtVÅJ=ÍxÌH`õ,²=‚õô¬ë‰HSs *ÜLέ ¡V¢øÝÖp¸µ¹2ÜJøíÎ_G×àkì€U…¢¾†öŸ*}qÀ¬—XT4#sÆC«CÉÙŸSTo[=Q=_ýÂÓòÓŠ(ÀsK‚ €·Ô&úS[(Ò¢|C>àöì8TT.ÍÄmD e^`y^¢„D<æ)qج’hÐ,ãËÝ©i­"UáÁäZ¾U + T¹UZèǬç”û„n)ðÆtú/[!š|E ÎD¢ó;Ú~䫬蚼2ß\U^Ýžû~´¼´?ý=_ˆ¶6v8òÿÆ\>Ïžß¡Yíö”A`=À’X´éÓØa‹Ã¬Rd‚!eL•Ó™—n.žÂkÉœLL=`N³àøâ°wZ,7©ÓlF+ðj³„sÕ1Ä9QÀ+Ò> šñ¹±“—4‚¥Ëø[„bÍè°!ÍpIè^\ëòZæÀðêMePíTðÂY9Hp8™ÑväCå5^E4½.l'èPU)ßoª¢X$^ +ýˆkþOâPØ(CrÆÞûÒ+y' ?U²]ràFÃÊÚãµg‘áÏ[v¼·wÕß“=žL&Ó)gccõW½ºpÛÑÆu¿þtäâì\¤ËÏÞ>Ÿÿðv<èÆ4‚‚GÜEÌØxFoñÅ/ݼúÙsU ª%ÞY‚úÈv U¼T, VÁ¡ÂV"ÑÄ"ïtg³À¦™ù’øõp + 3=%©8‡þ`44®=täåµ#¹>;|h”\3C›ö8Š!@~t±c}bÎz:æMˆ§œª–ç™aCH§µ4bx³ˆµ¼ä¼‚[x‰¶cÙ!ÀyŠô‘ áÆ’T2‹b+3 ßG„šÛŒN—éí¶z½Èçïïß}tõ²y¶FŸ›÷ø-}P»sãñ“ nzEÜö.úÆÜà•I{GõD¿Z"çäb#m¬z5< ¨6 B½j…¡ˆ—³îBFtð-*Ü€ØÏÐNÖ‹jæáZtÙ5sxÑLûL0±½—SÁ Py‘÷Ѷa6Ûˆü³M§â¸3¢R¥ŸïljÖ‰Œ+•?nl1–M¾ÏˆÚ–ŽÚE‰dUâ±dG‹V$]Ø!¯-ñ¬‘±[åu%îÎúå /’zö9B ²:ûèsÕÛ&¾*{³‚ùÍDWŸÓªúÆ(Ÿ˜EÆñ#Ìvrð +uNÅkNÝæžôdªYNÎÓ§S8ÆKe¼S°C?j ªÊÍZÆâË\ØŠ® &6†jÕør™8œ›‹8ªo ŠÍ]OC!LfKð‘ÞQ’_¾ÇkHè[œ²Z²Ë[Úûx`dñÛµß싹i¶ÐœµT²uõŽˆA£›ycbñwP¢í¹Í9Ø_Â~ÃC<¬>­[”žž¨ý‚‹bû%<¬ï¡‡õø@4D_,ú?¾«=8ªúŒÞïw»wsÙd7ûLv³¯ìn6û~çÁfo^c"†Dl h4˜PT^&›*ÚÒj`ÄÚJ…ÈŒµvê,ÅJÛq¦ãØŽJÿèj–~wXÚÙÍììNfÏwÎwÎù5ú +CÛ•XÍÔY·!R¥™3¯]\€õŸ½—®ff~÷ÄÛ¦›rdâ­Ýâ®›žóÐóéo¡ïW§2ïüù™™Ø=}'¯í=˜ùòãñ37Ž\ð|~;Š %¨v±‚x€7€^Gâi Ú¢¼Ðð¨8ÂŒÄkaéð‡*#ë»e(©¹eÿÇQ*H6$²%9 B>ð‹ßô­¶y]ÿi[Wê…‘î™ñöŽ¯oH5hÒm=îxñ‡ÛXÇ—×¾í:˜+X: ±­ë½ç'£Â +m÷S«O<“CÉö#ÊVªU¬7‚[RÚ†‰½¹m6 ©zˈÀ{Á ‰(9T)j¹:1 ./¹åþ·E˜“!ÉÅÔGd ÓÄÀŠÏd$YˆÁo¹*ïr÷¶ twWŸèþË…¿?Wý•!«Åb XUm怶¾\mØñlÿtßm'0aÎI’t³s{O\±-ž +Êò:4֕ÿ-£\srxËîÎ$|ó:á"TJŒYT@Ë|äõìÝåà¨5`Ý&Œ +ˆ[à±ÎjÜÀZ*ÊéY!·ø–fá@äî\ÂbJôRæê7Bês‰$»(Ü|§Ósôt£ÀZãU#-íß[SÙµkã7^Î|zâ¾_4ñ\£Jvå‘ÁùÍçÏ|·ÿø?Ý6?`fâù‚V£¡åÀúDoCµ`˜~î¹-©l<(nì82´T£îºÿ™6…\Guý62¤¢¢G f`b‚ @ |uqñZ• &Žž²ÒX0Ã…³Ír"¶ìY„?oŠ¨ !D9­Õa“üå›ôµ<ó¶ÏAËEN>{6 žð‹gÃÅi9m÷g~)W«[6üèà)zÐKî[ivŸê=¹†ÆÇÓoœrU¬ûêä׶K›²ÞiDÇP#‚:ªA Ü t +`<‚ ãr‰ d‚­˜˜4XIðjȤa¥³mRC¡P—þ·kzC¥…íË;$—5ÈÜ!ô?ÜSÚθ>“%ú^$ð›è†µzðüáK+Í9f¥çtLg‘ºñÐ'sO~p¸^'×sò¦hªØµ(Nη,Ü ‡ Ú¼»_™ÿë̲À¶‹èM7?§ß¡ß¢|T=Õ)6üBPØdy0¡b#w€Ñ@’>¯BEÚ+H6s€(_†—UÀAŽ•‚Žd&êAe¦ +ÊDi&s‡éŽç¯ÃofBRÆ9²DT\¶´ç&‘€Ëïï~¢¹VÙËÃ#cNÉ8·=f·;±Ê¢Œaùðäöyþpl¹¿­Ú»¦ÉA<ÎÝTeò¥iå“M˺_~6s°Æj¢™ü +¾ôŠê±Ñá}™/@i hFjcž@¨Œ"7?½ù9SÂ~ˆÉ¡ÚÄT™’Ý< ƒCìj0jˆ;¬ÍvS»R‡ø(^ Ó +°•`Õ»VCÏRåK8+Ÿµ¨hRZ¶lÇ‹ {©Ý-ÕLƒ*æòB<‘,ŘÌʼn4%¢ÌpÕdËÈ™>o[à²oUÝì–»lxTÈ5–?QŸkoØÑ:<Õ1ÞÎ^Z¬ÛVÞ¾0ÚüÌ„}Æ¢\±b‰ÆUñúM¯§¶"ðÕéÌrkWtèØúé÷[î‘´¿yîB†Ý”_ti€p%¼ÓF¸°CòR( øDçÔõ÷‹L  HÞ[$¢ˆd,/z©_£4‘1iï¢=ÇÑáÚbEû=ÎÚÍk#K·ï늌xµ^åéÍcس¹½óÞm}û·+‹ÉÄ„®ÚTѵwðŒÙ–FMä»O?ùëX­'Ô–Ü+etòp +ypãÎuˆ¢ü1ž܉¿ÒÅJŽùLY 4¤„×Ê•v€_ŽxÀ('³<èÙé…úzsy˜¸þ6âÃéc±•.XÜSt—¯5ˆ¦Iwâì¯ì(U‰š:7j/Z©øL7üáõm=?ëìL,_¨fn¦ýéûR„­¥ôÍ2 ú²´ß\FZÈÂ%È®=~¹z½Ûžq\Ó–dÏ_zãÁeõîUiD.ñ3‹ü((?µLLUÅšAm ¼¨–"„_ͬ8BväŠf| £y³©„>¢”[]J&i._0¿|ØmíœVªå1:(¦!bµiòéˆ,’‹øF²OnôèÖc;ï6œý{ú½ÌïýO­ ®¼Ó_îá¿3“žýxØÞhOì¤'^z^à~|wË/Ô™Ìkg†k¾rmkqÒ¿ó£©ÁÙíö:C ê-ˆ7Ðöº³XÀ(pk(ÀËAÉ¢™ØÁ‰ÇnQH¡É S®'¥¼VD] +}ubüÝ‘ÚW÷[æªw¬>.ž[÷Á!ÏŒ‡·ÞuïÖ¥[šï~øòö³ƒãÏO¬³ôÔŸ¡¹Hã{}–€Ž1.5G¬sC=s{:î˜êߪ\å÷ìdH||èµ ÕA¯7fþÕ½oå­kÆÆ¿’÷LÞ5Ô'§këw’œIÀž0;Ÿ¢Òb¼œURÞS YM¬AÚñ€¯ˆ¶òX‹gUÿ!¼Zc›:Ïðù¾sŽísì8vßb;¾œØÇΉcçb;ÎÍ'!1„àd!—嵄B¶¶ƒ”´£-¶¶)ƒvQQ×v”m*04íGW±µh› +ªcš¶±ýQm•è&U¬B›½çØÎ.¿"[QÞç{ŸçyŸÇ¥£Ã¨ÅX…@ëN,È\j&y•ËÎë²¢eT‘Õ-e¤5ôˬÅRsžõM¨—UGû<L>Þœt5L¬o<°h4Þík…‡F7)oVçé®#¥¦Ì™Ì·—2·÷L56 –gºWñ +´.€6:F8 (Ý&—P ªP-å{'Ë)qTíD³„ 2QP®#K#ïÊ>*a“râÍÞRô¼äWKi¯-ªïê½ÐÒæoNð¾æ&ò½´u5åÑõÝS½ªÊ†4ûù¦fŸW~x1}m¡Ÿ',„—D·Õà„æ’VYX¥R…Š8d7AuœEz˜——3\BÊp0°tÑ9Þ”3Óü~xyÈìeT d}MäX¿ÕÉÛFK©³±óÇóÝÉö #âl'ß{àžþ¨¥mK·"ìnŸÀç ÖëÚþ‘¬¨hwFÁv‰A\À ÝúBVšÎÆ–û°‡1–0*­U‡‹<lGBž7ù¬™ ›KˆcÆjŒ%m2C72*×zô[Y®Ì¦No¼>z8s/0ˆð¶®ß¥?G¬ÜXxô’<˜j9µ±iüFÕàCb[¨Ó™OW3å˜qƒp.Ñ’?q:dÍ ÏëÌÑaéÌœp% æY8NËþ»ûá}Å]p¸qbXìÕ2X§Æ ~[/:¼µ¯¹>Ês*'˜5[[ùpoªU¤ÚYÌ[-¼ŽŽ‚ëÐl¸Ý¨èCÝè +Ì YdJn‡¹Ë—ÉTºBF9@ȹ¯P¥¾Ö÷(­F¾JÈ;ºz/5fâÓW{æ§{SAóxyÏû@ÎÛF³j†‡á[òS¾µYúTÝR±= ¶x'Â#‘ö&ºl90Ô~ðrmÅ×mÎ .œuY瓳kË|ío?”|„ä]Þ:÷1hG~[ï« ªiðë¡I¸LÍúc:Z‰\È®ÃðÖÈÎײè|ÿÇÌƯðCˆc+ÝM«k”ÜâÑvˆ¬‰9ïð`4EBî¡€^O¸N´µ1 Ù’6&¦f´‚ž1Òá<2Û…0íÉ7WàI1Nù¸Iy›Sã?™N<óù[£ï>·þ¥»/̽Èm>6|äøæ×G¾ãÌ£Éç.Œþò»ä¹?¼Õáõ¡ÛóG?yQšC—¾BMÂa¢…H‰m +7F ó@‘kät° ;ŠT•0¦âÄ)jÖ]€Íj&ŽN›1Í¡j®Pbͪ¥c´.¿’J!×ú÷»B&ͯ±0ƒ^:×¹[-ÕÀ÷Öp¶áؾŸ|&öYíÀ÷Sjut$<á•É;U³çëN ÷œøÚÙ3É}Iƒ:3G)ò[øðµ<=’.›s×fž¶-ß—ªÈŒ‹ñ=¿š<}%¼¾Ì åoxi¹%@Êc…H àdM)" T¢4êYK1e´#¦D9€j3[,ÅîVV—o@^$bBê”Ë‚œ°Í1³b-ÑZQVìÙÀ%½·ø®?_Ù;t^|íÕ|ˆUDzFÖ<Ðzø9ðnÇñ­‰™oU?±13‡þsܪI_<ùû†I®-aùõƒ‚!{*ÈT†ŠßǦ¾äüÔþß>]×Aäœ6H+‰¸f‘±+$i¶èe ¼ØÍ ¬š5 Èx6Tžß1¹Ã!Ù +…U›•œÔäÖÂx+w‚‹¨É²¡`ÂY$TŒ%÷³êνCÍ‹½¨¡G…€ùË‘##™7—zNÞ­› 1¸Aˆhãe6ÑNB’³Í+ "Zdâ–éÔ¤ÊÍØJ,ä¼ +ÑA„ü¶Û@+pU®+Wk¤d)ˉ¯$yycRµSr2áKs¶Æu£Ñ¾¦·wo¥&äX·iÜÙ;|û§O(¨úWG¯í9ð›ŸþãS3Zyûúû÷ôToШt»Úµ§ÿ‡'k»Î„º†ÏµvO=ùø™žªº£Ò.‚ÿ‰g¨{„hkMˆ00i‘†Äd¨€P*ŒÈà³ÊõTe*ÀE Ò@ÍÁ* +Ïêl°‡BÖ›Üx¸ˆ +©'¸õ"h: ·Èµù7Um²eîW%"m¶m–ýWI­Jè81°Á4¿óMšÉô¿:’¼gŸõoÒT^Hç伿N¬Ó#X±ß_ å3Õ¢¬‡ !=Ç(QM!¢($6½™–Ì|–³ÒK¤°Ú¡£i,0µÅ[¨/ÎÉ‘U”Œ¹ÏÓiôñ¦Î2Õ÷^Ù1Õä76,NuåHµ2Ï=±ñpª~çã}hkî‚¥ÏöOÄ:¿Y…ºsô’oÐTŠ<)4$º-<[ƺY=«ÖÓŒÛé°˜†"Õ€ˆ•O¡ÙŸÊ0"‡*QEdÉÆŒ°§b³A’y¤vé§ +ò/ŒÕ»2?*(±$SSþÀS©5EwÇœ[øª>qÌåEOš¾:é$ã.QqLQ8N‘~[(ý‹?múëH$B.|Ø•\qvÓ@4ˆBÜE“†*¶’X/ãdŠe ˜­k5, ¶Ï(†¦¥ ¨V†Œ3, ‘Z ð¤_8rHÉ£àO¢¸÷AH¼Ó]¼[›J¶îr{v¶F¸ºÀËWuéHæ3gƒîÚØMo½¿¾÷¿üPª×ïS×Ñ4N†¦/~C¥¾Òu‹˜zF3WÚ‡^ÛŠ/·>ëËð¥C©Å/­öbkúcÏÀxxŸ¼¸Dµèã +5 ¦£—u±ÅÀ¾2Îã*uX-$¡£$„óSGµ«2»¥Ì9 +DQ×Uá%M̉C;M’ŠFŸ£]q3LnM_¦kq¢^¬(µù™•,Ë*ÙLàJm%ÖB%M…ƒZie KWVö®ÞÒ>÷©¦'àZMJ»«Ù·»Ü£­ÿc¿\c¢¸¢8þŸÇÎ>\å%+.Ûåév¡º P*T»! ‚JˆŠµ­h}#¥‰5ÖªØÄ>ø`MÓB 1ÆЦ!¦ñƒ¦±Iký@°%ÑcRmcú©mŒ,KÿwfÀu¡­¦iš&LòË9÷νgÎ=ç̽3¥Ù«ž oÈ^µ«~qa -)˜XR_ìY˜Y{#¥ 3«f_®¯½¦¦"ñ`þY¹Á“°È6•…W…ž¯ßVî9™àV×n©êl¹ §ç=ÈRaV^¸¿ÃøŠVÎ)ƒÌQÙ²B«ä’í>¯œ.ArsɶDIÆêsB¬ì°'{ÓÝ©šë‹ÖDi2a~nvÉ[À·©—“e|pk“ŠK¼ü„È,^\R •(½ãRÒ­ÙåWWøvUW±û•bçëeRsMIøÚÎÍUîÔïôï[ŸÕV©ì 'yz+56 +_×JipcCbƱýò»zÅÞ׬œ®[NäeN›ä<(Ûa‘œF6øú—Ì¥;ºGÒ¦&OE½={muZ‹¥#´õN»}¾+-iÅ.¬HVçA›L+s&­$Š‰OiòœˆËÛï·A¹X|óŽÃç0,èŒ\Â÷ëãÊ~ƒbCô5Ö3þ…ÍoO ªñûÅœaïì¹c=á^›_︤O´ˆ.YPŠ>ù¶ª€”kC¨ÕJÑ(  S@ *nÕQ´r¼—íLÊ#lrüÒA¼ÄCT’F‚¤IØ#>Ž?,ærÎ^a‡lTŽ£Ñr>Ë£ÞBc•¯O=_ÝM=ô#_$7ùg¨ß³ž€WëC¦VÅöÇPZ©" ÞF6í¹,—ÏxÅ[à& ÄC¿{øÜ>Êfݱö,Õ}m›¸IŠh¿RAûÒ‡ Ú§¼~éÆĶýB·ÆsìW×ñþÄ«œãƒ_Ù„rùýF¶zNí4Çxáã<—jÄ­]• )›ÄóuŸàÛs™ƒ|ái¥ß7(— Ä={.Bbmr[Cz œìO’§)‹8·Y æêŒJNaËf¬OµŽ N÷󵔫áþˆ¸¨×±PäŸíNâ2óå~RŠ8d2Gs)lo6s×jö Žèu±™ÏÚ ™íÅú-jE°ý%û—*…œËùš¨/Ö‰@ä_ä~&¬Ç'îŠzÐk!½"`½¸'k!ú5  ðy¬‡Hôu0w»™c£N§¡Å£\Ôƒ¨…H;ŸˆŸ\=q„ô˜¬…hD¬v³VD=D"êá +çRÊk&n1N'4õ;æ‚ñ#mä"©æýzŽEüY›b½Â¶VǺ6j]÷·T÷t)üÔã%ÆUéu5}}3Ä> +stream +H‰|TkPWîf˜npÍma»›ˆ €$‚BL•A]å!ò`P˜‘„ /u`VŠòE /QdAÑQP±4»Æ¨Ë®µ›¬»fSµ©ÊrMÕö`mÕþںݧî¹çÞïûΩs/ŽÙÛa8Ž/ݶcKTX˜·¼P­LN‹V«> +;”œzÐâ­ n¥ì­n i„jÜÄî¿”ˆá®ü¼hÚÍqÝbÌÇ_|®ÊŽfdæók×úجÿ¼ý؇_»zõêyëχ¦©R|L¡&_‘­á·æ¤ªÔ¹*ur¾"Í—=tˆŸ‡Ððj…F¡ÖÚß â•^¡ÌÏT¨ùd!˜¡Ϋi|¾:9M‘¬>È«l‘ÿqÓÿ¯Ìá,~OŽÒæÅä ‹>9'ÍO@Qͳ¤ª +ròÕJ…Æ×ﳘ݅¹ +~Ÿ¦HÇ0\Ø{æ„a‹0ŒÂ0ÃV`؇¶ÇÂpìS“aØ6 “‹°;,Ã\…cr,ËÅN`/ñUxþÿÞ.ÆîŠÈGÔn/µW‹Åâq¤øáNd7H)™F6•TÝ´¾¹‰ Ö㦨ÊÞz|.úíqªÑ]…@þN Ò`sÞÖ’o‰Äù9„ Á'¬·hÛ Ù< š– Gxˆ…“" xzì»á_E”¸­ÌõÈðtè!·@Š|ôôÄàÕ nª2yp³#)I5x`‚“Lé±®7¼dà 2ü~n"ÃÐz´…Àâ“°*`·h²†®è»{ô.`wþî7ÜÑ[³°L +ïÇ¿ a‡eAfD3CŽ–îä`+ZB›ê›M `Ïåh)òY¿ 9š¸/T™J9 J6kçt6lÑä\ýkl %? êO ÀUˆE€¯PIgar¢“;$¨…kÛм·Açr¢øBÁÚÇGîj†[jÈÑÖ©û/¥57’zÙþ}¡§=˜5!eû8ˆ@N‚”ÓEæ~e¯jŸ46MÁ&’‘¡æà…Ãv°¹h ›Öõ¿ÐÎ0ûÝ¿ÀáõîiôÞU. 'ãôEiWWÛG7w²ýà!nKÜu&ˆA!^~è7^O#Hå¾Íë:œ%Ufkå2™ÙœÂJú«€X®íÑBØ ƒdql©«Á¹â¼aØ"… œ¢_£àŸªŠ²=ˆ·öÜi¹ÅLŸ)ÐqÇH´±-؉\¤TbàdØ£–3WúØj‚ +iHS­ZÓ¥U¥†26·LU˜Çdk›º‡ÍO8ÉzpG¸ÖŠ ©ºÅcBƒúÃvêsHr¦,µSb±»÷Îá[ `? ŸqàmZÿOäÈDÆiÒUœÌHöv„ >2D² ½tQl߉® }ÌýŽXGY‚•©¿ÍP}Õ]ÎVÖVÖ×Km´Ë‘‹ÐÅ°ÌÆÛ-”Õd”ź`.ŽFµ²» ±iƒ>ðAFùýc%ã÷ÎŽõ²&®V&ÂÐk˜œZGHÊ"È8Bë+¿4”°Yª¼ &6}àétÇíûý9ÊZÎXVUV.•t–€ËHþ „« ^$²VÃvºúTÍ….)0àˆÖ¡­¡È ‘hõ>:ñ ¶ý› Å_8p4‰ÜuöJ…·„î®6[F™ñƽ*NòW¤€eÏa)£—§ÍŒÕÕª§©7{Åb /åÜ9yy ?´ü•7,´\mîïâLÄ'±™ÛcbZ›³Y%rk†?b¾}Úxcœ»w«yæ•Ì$5óÂ4TÝÅ"9:Kë«ŠŽ—°¹š‚,&6ûúŽzóüòàPï9mfk,7– +©¢³Öª×} Ÿàc¶GïlÕ EÒ“›ÛOÇddÄÅ÷)ÆÆ/õßà,•™—b˜ùsqºùÝcÎ ›‹C2B¿ +· ‡ÞÖáà(ü „Æ´; júÈSU¿;É6מiïeš3vsÈ,lºH6›jØsu-­Ì@Kf‡š„õ!Ü¢ž¹g唫ټâNí` ,Ú¸ÎHæã¤xM!wŒ ,åbäM˜M»¶I%³‚‚_`…þ]wRB]¯ÙôÔ3è!§kêÙÖº¦ö>f¨-k—]fcaäϘŸWÈ +ˆ×ʦÄÈ￈/ôL#PBDD‰àŽµŠF›<–£ÕȈ„Î`aÉ_„·d功/W(úöYyĦÜ}ñ1šñ'ÓmÓ÷8 /›…zÝWºsóâ(ã;aãpŒ> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +537 0 obj +<< +/Filter /FlateDecode +/Length 336 +>> +stream +H‰\’ÍŠƒ0ÇïyŠÛC±U›P¡Ø<ìëîØdì +k Ñ|ûÉ”.l@çæëÏL’ª>Õ®ŸeòFÓÀ,»ÞÙÓxän½»TÚÞÌ[ü›¡õ"Áäf™fj×¢(dòÎi‹\íx…µHÞ‚…л›\}UÍZ&ÍÝûÀÍr+ËRZè°ÐKë_ÛdÓ6µE?/Ìù‹ø\<È4Þw,ÆŒ&ß­»(¶xJY\ð”œýçO3N»væ» ¢H)x»Eƒ\1WÄgæ3rÆ1Åd9sŽœ3ç‘Ìä} rÆœ!«]d4È£(FqEuÔžyO¬™51×WT_±NE:Õ‰ùDÌšiVfB¡¹—¦^šõhÒ£¹¯¦¾úÈ|ŒC{L‡Æ‡[–Ïݘ{¸–øâ>h½ƒçkñ£—˜EŸø`£, +endstream +endobj +538 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/space) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 692 0 R +/FontName /DNEYVN+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +539 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +540 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 693 0 R +/FontName /BKFMTR+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +541 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +542 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/space/zero/two/four/A/g/s/t/u) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 694 0 R +/FontName /ZHBARV+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +543 0 obj +<< +/Filter /FlateDecode +/Length 271 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹ùÚ†‚–-…úAÓ>@¢“ThTŒ9äí;Ñe t~ÃÌ_gF~mŸZ£ðwoe‡Fm”ÇÅ®^" 8iÃò”–áæÅSνcœÄݶœ[3Z&ð +.Áop¸(;à‘ñ7¯Ðk3ÁáëÚw«s?8£ AӀ‘.zéÝk?#ð(;µŠâ:l'Òüe|n¡ˆ~žŠ‘Váâz‰¾72‘Ñj@<Ójõ/þ˜TÃ(¿{ÏD±çf&ÊÄeä"q±s•¸"®òÈd˜x¨#“a¢.#“!Nùõž_ŸŸc-·W÷ªhxpoY®ÞS·q±ͽAmðþ Î: Õ¾Ù¯g¬ +endstream +endobj +544 0 obj +<< +/Filter /FlateDecode +/Length 5084 +/Subtype /Type1C +>> +stream +H‰|VkTYî&éi¡M»éö-òDœÁ#‚ʈ“QHb‚ +¾@WÁÙ™uÁ]Py*> +"p|0ÈŒ‡Ç]ã²GœÙu=êLu¼xÎÞ sÎþÚ?unUÝ[÷«ºõU7IH’$}–.LL‹OôKÈ7ëÕÚ$³1 Ö˜­ux‘'Eo©(ŒaQ8*/~»™‚W¢·¼o<ÛäEÐ8AÞÄb2ñŽtÍX—±NoR›u³>3+7P£6jÙºŒQ{Mù£NafDDˆ¿C†ŽÊp!$88xT† +1ZãœoÉÕåX„ÅÑl2šÕ¹:m “-Œ†°fEgÞê0¾G/è-‚NŸ›¥3 jìÌÔãófVÈ5«µºµy“`txþGÍø?W zƒ€c )½CKÎÅF‹ 6hƒpãè-ãC®Y¯³Å%¯È7é„9‚V—AàºÁ„Ü•˜H3äDŒŒXB R"YJ¬&É"ÆQ½eħ„ŽØO v2–l&_9Å;u;=“%?I}¥Û¥@ÅR5Ô·Ô/ô*ÚD×ÒhQ¶VÖ(CÎÉÎW\¦¸ìs©uyäʹq}á6Ã-Åm‹ÛOcÖ9í>Õ}»{/³†9´zÌôØëÑëéYì9$÷“È;¼<½6zýªðU¬QÔ!×Òñ_$–“;$¥R±Øž4RLC9ºÁ¢(ø’‚a è: eä Ù½vt Që´ØÉ:VÈ¡1#¡ j‡¬—d•4@?;Ž¾”1èm!$°P|!Ûuúìõî̶ÔÔ mJêm'Ï‚L\2²  ü%Ðl÷eÑüyÈ%ñ(¾ìòƒùÌý;¨ âBŠåKŒ½Ý&£é›b’’2À·Œ?kÛ@ÇToµ«¶‘PÓ$PèÓì*äE£ßÏ«E4xÞ¤l4S +r1žá ÅR£›ìVõüñƒ§@*Áuîhڬ蜌4ÕEDRu-íõ=Ü÷MêT¾$:.MDŠðè±A2 ~ ,&Á/¸h<„(†ÛZYKÛÀ–ÇD¼| ²'ñ7#+x›Lñòoõg»î*‡¢¾C|x¤Å¬U5"'ªòdÏñë\_“A»bIÞ*+Ÿ„È^Z1üMŸaišF7?!¡®ÂÄ㤠h8Î$ôÁd‰ø™ýt¤(GËdÈ:"PÓá< +’¡©PÃÚdOabÍùª¶ê ãÒÅêV‰&;ðº¤ÿ9 / X"šì*½¥×£çÔÁ“µ¶Óø\ß°(nQN|RÒ± +oB4•wº?ÿ ^ÿ +îƒ9]iÍ|sz|E·£ ´d_ñ +>§qd)lâ5¸á÷÷ƒ”ˆéöiìβüRcÉ”¢ðMK’œ?Y²v +b”(è b!&¼øXà‚î#rÙÚ¼›TÅtÕà­»À}uÂv¬¬ÊꌢGظ½w‹ùc¶Ã¿T5m©=ÏÝiZ™¸XŸ–⨊Xƒsi×IÚ™ÈáZ‰ Uü…‚Ù4T‹×¨ŸqÒoDí+¯&Ü8ãðC…À$„K§‚ºBü^<×ÇÉ]ñ'ør™â~_SCwòAü??ò™‹œ–7¦~qÉCg¯M‰TÎ „Õß°Ë3/])㯜:ÝQ¡ºµã‚~¹2=++E¥¸_,jÙžã͆ìMY{ø••šúKÊó'[:UÌ^\|0€×Èâ!HòϽl•µÎZg{yðIcoóÀ‹/€S‚ÿ|ðFóФ)R ¯á(pºy¡ªá”ªÜZfT« ã²,kv§ç”l/ͳ9Ãb1ž½[·0.¯xOÑ^>w—aÛ.!çjÿ­µír'7JÂ¥ ÀÒD„;&vòÝÖ¬3©\j†.e¥ƒŒhP:jî²fµ9ÌÚÔQ3Ó†»/c¯ºt›W•ˆ÷ÅPˆa;Q sh¤³‡Qh 6¼ £ „¾ +1T Ðì9˜D)†¿:{èÚ¡sÎ6úæðêÚ hÒXf×> `&Îlxõã~‰ô;U¼é/g‹ZzŠ¾ç@ù°æl;¡¥þêmåÓå7¢ªU˜Bâ`}kÏ-åmýå5µªSiËÿÈEÏÝÿ &ÿTÖvä϶fîîYÓªÕë7ÎãWÓˆ”vÒŠ7ƒ·M ?^¶9ns~©m'Ïäî/1¼ÈV•ˆ­ b rVíIçÐøyO€ƒÏ¿÷®‹»ùFp§*L‰•ó9´ÍAÞh;ZcÐØõðë£õ<óÃ>pSÁ…ìÇÓ«Â$øm=E˜.c¨¿9Àßé¾2¬ÜÖ=ú¤SÕ¾dÎqäÍEÅíMæqÊ$[~¤¦¼…ƒÆ ÁÊ£Ù3£‘ªL•·µ´|7Ï„ãA¡à‰_Nî¸B"fŠ,*Ãz%ÈGBß…‰±xv5à=e4Œ_éÞøas¿uŠÀaãa|"˜fúö.¸D¾¯œÃsÒî"ú°è r{&Ðû Œ²8$}ˆeêÏŽ˻wœá›€¡*7.ª +åÐfüOàr­¼uzˬÞO{‡²Áƒª©¼Â3èG<‚ö½acß…A€=  +4… »ñlNs ú4(g'j KsLŸ±UµyP{.ïoå`ú³o`/F!sà·P~Ž|üÀD߀t‰‚8ˆÎQ(‘F(w§e‡eçæqÅp ùÑŒP +ÞâÅ(|ÄL¨jñ" + ÈÃs£ xòš}§Ä®ô_:ÃÑÁŸÑ þËt•Eq¥áìnXeHÑ ŽÓ•nQ0\^(ˆ‚ ’pˆr‹4€0£rÔŒ 0ã ÄÈ! ˆ€€(‡€qEQC°çJØYþÜŽõeÜü ‡2CmÓ¥¹…¹õÜ£ö>kƒ"ÜRRuľûÿ/Ëq½ô»ÂÍE%&yÌËÖ{8üäàÙ9’²!dÙ'ÀL2 ìÕ|©¶4§äЫè¡=o~0!ç@!åó,QÙ-®ÿkl¬o1'2ß¹6¼$ Ó/ƒ/a+PÓßð9ý²‹ô m]rÙ¢“‹Ký ÷™€#qZñBñèÀÄÎr“\¦¯¢ÿÚsù”®È¾yÛš[ÎÍãPf0–d-ÕcIç¹»Ú ñ>r¿Ñ+x_Zâ®F³°Ù 2È!ÔÌÖz©¢ù‘rŸßÞõzë 2¹CpmŒ.o—75œ¸´/£†? æTYäÖÒq™çB»>0)Jxº§ao¸Ä~d˜Ü¼VÛ[Ïë1ûŸVSÀÑšFM_¯\ìg°&•”íÎЪrT|ØÁ]»C9ïˆËµRìSqº˜.eGo¦4tkRxÝzŽL™eKœÈŒçv`v¥«ª­NÐÇÑNþQ«·|[^Ïï& •Ôq;ãwÿAñÅ¿½Ý僿Ëá4Ã>} oÓ×óÄ‘œ’fhS³U|Œ:>1ŠÛsõÀŽ¾ììé½P—YÈë3uj5îý(V˜®‹«8Iœ0ˆµÓ±íéxz4¾E÷}¨N×6Ä^âzÎ^:´ñÁèVß Uƒ•FˆSã~+°&ö¨Ú8D HTÏ[üàÅvãshö)43Eºâ‹øêüª3-Ü¥ÊpÔà#-L‘¾4¯¯+¨>ÕÄuWEx +¤ÿoc`¶ç€CÌîÌÔ>9=E¹? ÇÑÏŠ onQØöx…C³ÝY±¤õaú€MrIÜÇ]3W}¢+ÖÔiÈÆÍkbŠõ%yù|mAuÝ®·2Ì[ §ð¡vlVغ…Ä+QÙÙά_)"û¼`„ +=p|ØrBJ:C—˜#%NÖ³TÎð¥X¦û qgkûÌEEÿBz§v•‡K´ŸŸ×®›Ã÷k>@z“5 +ðEr×ÂdÕg~ÏgŸö“`)~ÏÖÓq•÷^ã05 kq¿ÀqÞÈtÏ­ 1¼›—uûcR;ôþñì± 1“¯+Ðã; šÚ¹ÛM~î‹£ü7|$· É×áD &0ãS<ö¼¡èB‘Àº"}ßUÐ|æ +wâ¸FS(€5ó?¢«5$Š( +³é̬¹mж¸îÄL–D‘,ÅFQ)E¥ÑÓLÓÀµÒBzmYÉ¡šÕ¶\³Ôvs-ÍõQ”iÛæ£,{Hþ(¢ÑÓ?RÑŸ(0Î,7¢;+ѯË=p>îý8ç;ß©rI•mË´¯âØ“¤¡Ûó™@ dUa•m%†Z_ö Ç4}0ë)6£×‚ÆÒî!á Ó_=ûÂz_íºm¹ªÍlæåsksC÷­[ÇÄKLûÑ`ßZ¿™F“Ò2æ±Þ¬PÎ=Ú!¾Aä̬`[VSãAFΖaK€XÍ'˜óIùjLZ‹bŸ"•qÞÖq€á‚á£tOWõ¹&Ö Qá:^ÁÓBûcÒ1_±HÓ)ýnLž§ô”ÇxÏÇýÊ+qsa;ièC½”èO–3Ž2ÇB:·¤ç% ìHoRhîë ßGûï^¹¨ê4_›A€‰¬W >1ë­•xÕGA}ŠÏpȇñ ã·@àŠ‚µŠ@ äzTŠ'µ«Ð]ìÞ‰'µ*‰á5PjÒÏŽö—æŒâ‹©U" -AU,%ûGå`}PnÃ^Tædî¼cÀj‚å$Z>lÌ0îbrGªÓ!rÎÃxâ9[œ­BkþG“>E¬QêbjTÀÕ¿³‰ñ´Ûc–N¹=sœã%b‰à(çO]EFÓêGûýn¿{¹x9|£ðL$IÝÅvá䉶².÷å ™ôÐ9®wc Å|êTÁ+®—dLäH¤%²ÎØ›íϧÑÜ™ËÍA (Ã÷Fª­º#ÐÈøý µMt àñÔ±0¨å÷ùöÐkòìßËn/â7e™]ãBˆ½Ó$°â3ŸÉÑ»€îQ†‘FêAGøCøz¹+ˆ+b(52 iI©Æûï‡!á4äjaëFHÈ}Ë$‘,}(¥›Qz¢s,ÿR†ÕŒ»qKÚ&dò¢<-ÊF‰Ò˜_dö·m«Ì°ºÌC_½ý¿ÀkÔß&«ªðчa¦ÑÝñWÝ ‰Î s—Þû9S0#JÁ?meEaŽ,ËA™DÅòs™Â!^K4¤Å¡·rÓ\´]W©‹‡Ø‰ÿÓ_¯Ó)ƒS•?Æ¿ ¾­ +endstream +endobj +545 0 obj +[552 0 R] +endobj +546 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +547 0 obj +<< +/Filter /FlateDecode +/Length 336 +>> +stream +H‰\’ÍŠƒ0ÇïyŠÛC±U›P¡Ø<ìëîØdì +k Ñ|ûÉ”.l@çæëÏL’ª>Õ®ŸeòFÓÀ,»ÞÙÓxän½»TÚÞÌ[ü›¡õ"Áäf™fj×¢(dòÎi‹\íx…µHÞ‚…л›\}UÍZ&ÍÝûÀÍr+ËRZè°ÐKë_ÛdÓ6µE?/Ìù‹ø\<È4Þw,ÆŒ&ß­»(¶xJY\ð”œýçO3N»væ» ¢H)x»Eƒ\1WÄgæ3rÆ1Åd9sŽœ3ç‘Ìä} rÆœ!«]d4È£(FqEuÔžyO¬™51×WT_±NE:Õ‰ùDÌšiVfB¡¹—¦^šõhÒ£¹¯¦¾úÈ|ŒC{L‡Æ‡[–Ïݘ{¸–øâ>h½ƒçkñ£—˜EŸø`£, +endstream +endobj +548 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +549 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +550 0 obj +<< +/Filter /FlateDecode +/Length 271 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹ùÚ†‚–-…úAÓ>@¢“ThTŒ9äí;Ñe t~ÃÌ_gF~mŸZ£ðwoe‡Fm”ÇÅ®^" 8iÃò”–áæÅSνcœÄݶœ[3Z&ð +.Áop¸(;à‘ñ7¯Ðk3ÁáëÚw«s?8£ AӀ‘.zéÝk?#ð(;µŠâ:l'Òüe|n¡ˆ~žŠ‘Váâz‰¾72‘Ñj@<Ójõ/þ˜TÃ(¿{ÏD±çf&ÊÄeä"q±s•¸"®òÈd˜x¨#“a¢.#“!Nùõž_ŸŸc-·W÷ªhxpoY®ÞS·q±ͽAmðþ Î: Õ¾Ù¯g¬ +endstream +endobj +551 0 obj +<< +/Filter /FlateDecode +/Length 6292 +/Length1 9282 +>> +stream +H‰ÄU{t”ÅÿÍ÷ØW–dŸy“ìîG’ì汯B^»ìBBBL"b–„< +! ±†@ (1* Eü +*b •ÚVÏéééœÓö§ÇG›ôîÂQZŠÿvvgïÜ{gîÜû›ß΀˜„ àQ5¿&×iL˜¾š,¤^ÙÜêÎÖÕå, à¿n^³ÚÒSÝeIJå´v·urú‹!@1—ôßµ-_×êË,ŒTSÃ×íKC-­{æ,’â)ž· Ú|镤Oiï\Ý»5eV.é«(~Óò®æ4#G”k¤·t†z»Ù¿ð=`óÒ|ËŠPçÒE•_þ•ô:ÚïhwWÏê‰>¡ÆÃþîUK»±¨÷ +…N ǧàÎA¤¹ƒl%0žyK +hå Ç©ðÍKú21u<“ê ²dáÀ"¡E#–H]ÛF’\dÎ6rò‚¨PªÔš(í¤èÞ`4™cãâ“’'§¤Z¬6iJZzÆÔ̬l»#'7/ßér{¼Ó +§Í(.)-+÷ùg‚³fÏ©¸oî¼ÊùUÕ jjÖÝ_ßÐøÀ¢?ÔZòÜóû=ñú™7ßzûì¹óÞ¹øÞ¥Ñ÷?øðòGW>ûôÚõ¶-ëy OžÞ¼¡g[^x [G·G²ëï\ÝÛ» -ÀÆ]­7ž<¾|ÍÊU]Ý+>Ágk±~ÙÃ@ûSÍK;ž}qßK>òò±WñÊаL‹§¾#Eà~AEG¸ðèà ±^¶K˜o™nµÙ&&"hd "VÅøƒõîfÂ5¶“d'9gß…?S ST@ ÔÐ +Zâl4bhG= 0Ò*3b‡x$ IHÆd¤ •vµÂ‰¸†td`*2‘…lØá@r‘‡|8á‚xQ€i(ÄtaŠQ‚R”¡>ø11 ³1¸s1•˜*TcjP‹…¨Ãý¨GñáA,ÆChBKp½X‡G°âçxŒÚ€~lÄ&ü› Æ-t"O`Û°OF@݉§± »ñKìÁ^<ƒ}xƒxÏãìÇÄ‹x /ãã~…£xÇð*ŽãNâ5ÈÂ0^Ç)¼ÓxgðÎâmœÃ;8wq#¸ˆKx£x¿Æ¸Œñ>Æ|‚«øc¸†ëø ~‹Ï°kîù/ùVc-Ñg%VݶtbšIv¡KI¶¡ý‡Ù­ÿ#BÇ]–ex=xŠFÿïÊÄ61ć…ã™ãù¦s¿H¸,|%Ɖ©\&“X4Óà;ü _àsZ3FñFis´ó)Êê(ez²ßG§¹ƒNx z1a-UØEèµ?gêˆG•Ä­ íUL,ôC3‰µV¥A1"î3Ä8áïÂç‚,v ;„õB¾0YPñ—øÓü0?Èoæûùz>Žæ5<Çs#Ün×Çõp\&§cWÙ(;ÏŽ°ý,ƒÂ93ÝWã”ù?ðnâ/wTpåŽdªáÇ +~ÌÿÎÌ+)g¬e±f“Ñ ×ÅDOÒFiÔ*¥BxŽÁ>L|÷[– H¾Ö:‡}˜^m¯Œìú¸Â†ˆ˜²&«Af~Ý™ölúÊ\–Ã~ë‡-‘!ù†Ÿæ³-í¡™O#i‘¿²´ •• ÔÖ[© ÁšÜPUi–`»¬L „dT×[“dÑ?­!)ÔÒPS/åJß&åJ7iïì{GµÜs¦˜æ+½y×âÒo#&½!®Ða¡²é-ð[ÂIdÞêhšÙäsØ™—|ÃŒýkü’@"‡,H¾x9*\+E‹tÈe!K$o¹<‰Æá¡L’g74È¢ä£LòuȜ䓵Yñ»%Ð>Óa?K—£8qÁGI ëE„¥Å2Äñ>If!_+«­—ËšÂû9ìäòëý”n>ö‡}Ôa/•MYpáN ?¤<ÝÁRY2W®ÐB)”Óm¬ä„½<ùö*œ:†ÏÎGvžUoÕgPgts[ÿéé· +ç¿÷…ßǃß°“ülºÃã‰3‰FÃ$ T‰ n¹NÉD–x;RšI!Ùr˜Çíu9cy'QŒôtRÙ±·µ8­Úé®Ùä­®uåTÏïóVg”Ø\µ5Üž·³®Î骽õ8ó×…1º»kËæNMä’Ó¦‹\1Ç©M1\<3GsÉ.½Ö¬r07ó¤›~`³7©£”¼`Lmvå9Ì VÂbX·M•,² +ÊZV^¾Ëãrx=zwF—á‰u9§¸âf)=#]²)M +³ÞI6oA Wà"Ík–lÅÌMîl¦Oዘ™æ-Ð5š''Dgh¿\QÏZê´A¥º³I¾ ™m*hMÕi„ +A›PÞ¶‚S%»‹Ímc§*t ãz¶™£Ô< ªT ýýÍždA_i?#D©Õ9¥êÔÇ%ëF›6Á^¨Ñï.÷&«*„0&ß(¾ L TV=Ï›ÇWzòùª +«l&ŠâxcØHÕ—ªmZ‹6EkÖµz-˜!%ÎÌÔùçev¶rj‘Y¬dz¶+eRpµ`Joµì¬ìÛQùF;\t¢ƒ±„…má1¢$˜Âà¤0W¥ÇYÂj¼üÈ÷m‡¬Ój˜ãµÇ&iòŸàÓåJ>5$òœV˜ˆ†ñ¢ÈÈ€ÑãH#1¨ŠpZÒgòC¢ß«¾˜5"õ8âÕ ‘¸]MáIep@ùpÂ2âƽ~KX¦¯È%4 P_ ÁA\è$À]7âL…8šNf™[÷Y’´ÇÃqKd¬©¯DíâƼÔùÑäSv}»Ù*µ®øœ +†?¨ÿã&¾¹âRü¡¢›àüû†5è÷Ð,Ë?{µ^ZÚZ>¡|¡¬@¿Ä"äãPyÐHöÆ0à 8¬&­Èa3‰.¸Wuq‹ÅÀ—•Fz¬ÄÝÚ{´ì¦°RS (Üyãµëë“(¿z61~xù¼ž«þ§‡\í˜?á}¥5ÏéXW¦–úèk§—‡Wê‚G\øY»l£«ÅSs;ɶÈó@dãñ¤´‹H­œ5 ¼ÛJØýý EF23|Ú8¬BQš‘Ì8eÃvN£Ñ¨ v£ ´} š°ÒŠ!¨U‘ÈgDñ¤Ÿ–»ü붖ÙëMJCk +TŠMÙFðï¼ÇG­Ã“yκ^ µ’h1»q.Kn»™¶¸¿ÍŸ¹–³K˦äÄÎ=‡!ÞÀ—¢EÚvm¹>óÌ‘p=Þù”$W¢—­¶~éõÑõùج™ÿZkqÉ^â¾uóá/«’¢ª6 ³J< )4¬Ê—Gò…0£–úakJȧ¢EXÀ‹ ÃA¿QGcýÕAîF{Kˆèþu2p[ó%ìFRnä‚3ŸgWƒè)46qd®Ab½ÞAoÝ}ïX¥^ó?sjñ­ÅÊ‚¯³£[(Œœ<„¾­~ss‰ì¼åȘjÍ‘ŽçDa!6±uÔ•Èœ¼éã+ªÞöÅ¿äâªRY +úˆ!œíí¿§OÐj(KDY±£ŸWæÄSÒ 7ºèѨQ²K¸Ý5nÈy)Ÿ$§•å  ¦ŠÝµ +v©ñuýAÙÍ)É",Ù.'×OÄëÁ`Ðcç«Ÿ%½o ¿2æç?ø † É1ô*¾pûÌô`ÀñÒ.²¡ïMžíÌ/8\#!ó4;!â3ÐGòù!ÕÑòŠM‡ “r‹94Ý" x\a[Ñ JOºE"ŒDqÈ™F-9¥A’T1idi2<Œw9ñrØ"¨ËFEæ :ŠÄÔfSæ(¼²KRM Ž¡`„äÞƒÂÄ”¬ñÙ³G]4[)¸ñV@U9XƒÀÛŒÅK¹²NS™" +ˆ.Ï{9u}i§|‡°Öw.錞øÏKo¼>Înê¥ñ¯XSzûŸšÇnxØþ¨{æ·çª¥S× gî+ŸÏÔ=ÕäôÍÌ/2Ugö]y-ÌgLÒ ÷€ÙR±9çÆ&—kïÔ™p¼]Û_Lð:³H¦ö‰ÒÐBÃ=3§ï{quÌï/ö³MWj~ô…¾yöáçC«Rp¤í°»Ÿ“¦ý.`½Â™"ùU?|E˾s@¯¢ÙgWˆbÒÚ‘^…-¬IC®;½°@Ã]–ƒª»$é&‡´²å]Áî† +´›âØl­jŠµ„F¬äÞãÕÆtñÀö6òH%[bÁë+øëºT }7ÒV-y}ýV§“mÚ©ƒóIïX0XÞãv ¸Ý™¸·:#ä#;‹ /Xh¨ÎÕcp¬K`JS"ÐÿW6·Óžbè§w$üoëÞv–X‰X,»k‚ÌÌÜ~xÊí%7•ŠJ瀇‡š¥Ñ9[̆ƒêV>Dì k*%°¤¥w5õi-Z£êÊ¢˜4[Â&Ìa>.tq0Æ«oHˆª#=øÀ†Ic ˆƒPôpø|P™©O)œïÑ&(?6%z@¸Ûº[MyP\²äÍî¹ÑnÚ È­~rÕºíÉ&sdž·Õð"_‹ÐB"RÝZ“Ø67¸”‰Ï¶v®Õ両Í9gõb”[úðR k£º3Ñ]»uÉÅZοÌuž+«ÛÆ@÷|MÞr‘+Ƽ‚Σ9ÔxÛB.uæSDÝ›$YIŽª–§ˆÕ눈ߢåè´K/!ûqo ˜T^aœÖ¤ŒQâLD( /€œè‚=Ä«»ƒKh ÄåvÓoø‰aíáÝ›’ÔºÊÄ“‰)Ƭyb\­\‚æ×?fw‚åv±"!/m\ÌÑå…t«Ï)åV>¾\ÃúXÝ©E«¶Qöò&+úÿË~ÕÇ´u]ñsß»ÏÏ6ÆØÆÆæÃø ›ð¦Œ°˜3†¶nê¦Iûc{èðνïžësÎïÜsÎ=õåâé¢ëí*’¢M.Fê2ÉƃÈb¢C»+¿{ÍTA ±µUFq·š´{—b,Q$¿ÝÖûIq²E;¡`†¶rQcaË–ò"É„X¶–h…^Ünðõe棛ÞÁçŸþêÏ/üò'ì¯crïý’®L}ÆÁ»Øê{ëzó?øî­¹;R‡þÕÓÆËÉkVÎJCÎã¯l¦;òèBöƺ]¬T2˜Y±Ki‰Ã˜¯° +x<{A‘x…8mNâ$ÉVÁ×_×ëq·™ îü²ùžúÚ‰ñHï“‘>GÕþÆö«»ÔWv ÜšŸu9&ag×æ量D +ǪÌÅ5¥Z›h6dtû.³d3•£A‘ŽY=Ã'À@)ÌîJ-ómUjqùÀÆ«Ž¤ý¬aü¬Ëòxþ K[»+1<9v`Ô!­ñàÞ×ÆËv[×è2·¾òP‡%Ø]³gq%6×9.®ÔBƒ±Îp=ÉÅ^f<àmf GÈh3*† +æ.24TJÍŒAKÕn§Rˆh±)Òñ"Õ¡“Z·{v­3 jýQ(WEDîËõ}M[§5°Ý fšÚ*Ý9;Ø6|µ©çŠ-úð`bÆ]a¬µœ¿eâþÆ`Ïc‡Âú•å2û®—ÙÁx“½O- +©¦³=™+#a5ÑïA­Iý6óFw'N𸈬Èæ§ò]¹u0+±û^c¹1ÏH†ò»Å¤ìˆž¥¬¬&VX™—´GÒ‘æjëpzŠ?Ïf/וË=¼/Èk¯ý¢{âå–Ãak]ç}FOÝÅÌGBÇh¦N^‡Žj‹Õ}…r€…¼vÙÜQ`,U›£–…UŸ»¤Ø‰Û„ŽQÞþP3ËÞ¡7bÃÙ¬…Ͷuׂ¼”‰¼Èé-!ØU¦u9­­3W<è2„B¾Ì®]Ýk°£½Éòý5W},šZh5Û]¦’*Oæ“Ë_ï)°Ýóú¸:œHH7öT ‹l¥¦¦Ì {¶Ë]fI\ŸgÝ÷çÕ½¬Îæ#Ðíï}o² ó’õô÷O¦J=­Ûƒu:äל„âÉ8ˆÔ—ˆ>]VOgóÚŽç]ÝŽ)¹"¢ëҥدiF¾HCÊeºªÓÓ2 æÏKqÌ;)­Œ1Öú¤óa?¦é&ù°~ïˆüCìu‚†0Žà=ñh ã¤|Ž’ìw´*VôØG¼qjžÒݤKÊ* ò 4£4Ó’òóAtJÀØy²«”à”Rmø¶¡}Oñ´öN+¨¥QúúS³aH½âüCÌߣ({ÌÑ%ìå–Â4¡l°Uùª’.ÑUè8Ã-°e„&°¿Ðù¬ƒœ…†0r$¹©:’´Œîgßð»ò:ä¢X“† ÖË5ð×ê‚L²]1í~áAŠÂ„}Cšcñ¾ýÞ†?ÎHÀžÿ„„Ÿ4>IKÐ{\Óí~3 +?¼Ds»º$rû¦ Ó2_¡ Š‡’ž•ÊoRôœò:ôY×°NÀÏCOø¬¯@±÷!a3ä“øÝô‚íƒb_ìwJØŸ.iòðX Ÿóë”Èa9.ðÔ0ÀS=¬ÕpÛ q¥X»KñÖðDnðáÀP“¹LêQØ R¦!ÝÇøÌ7ÓŒz˜ÂN¥f›°õô R\ø òqyšžþÑHè„ÝgÇ–bxæâ@ÈFá«C†+Úº¤.N ]¼°õ-Äö› ´ ݲû”n­ûÿ tõ_#ö«L²ë³‰ûÿMú(¾Óó ä¦ãDúP†È¸¥¼¢ô8‘é7Dù7ˆÌÓ¥‚r" Nš'ÑŠ=le;hãÿô?D¢„½KG‰kgM"* "‡îÑiÊÞRMôôv¡³R®¿'™ +1Êò|EŽ×oËñ*h+7€óoóŒB4Ÿã%Üb¾“ãe̯åxþ§9^~=ÇcOfë9?zxÖûÈâƒé´7†z{ú“£5#SóSGfRñÔüô盢:IqؘfÉKÐ"=Hiüy)Œ[@ÿ¨«ú)I£TC#4ݧèÖ/P +²)Œ§)¹‡°ø¶ø9eþ“«ä,@›_ƒ—?㉕˜Úy‹£1ßÆÛ—,ù%]ªv^^ZŠç‡éÉ+rç£îšš¿0F/— +endstream +endobj +552 0 obj +<< +/BaseFont /WIWYXQ+Wingdings-Regular +/CIDSystemInfo 695 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 696 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +553 0 obj +<< +/Filter /FlateDecode +/Length 4375 +/Subtype /Type1C +>> +stream +H‰|S{TéŸI2@0q›Ñݪ Šº€­[@\q%V„h‚D`‚àc]ñQuÑQDP‘ B€ZåQÁ·¢íÆ•úµ+n­wâ‡=Øöœý«ç;çÎw¿;÷~¿{¿ÇD Çññª edDÔg!› :µ&Ô ÷Zª[“˜6b¸ 8ç*â~ãH#/Tðáä‡ù\q†¡±$$˜ÇEÖ— qº@}*ŸÍg±3çÎå9b?µ~žì,ooïQû9ë¯Ñ¯Ò²ªMÆ4m²‘ NY­7¤ê ê4­f:럔Ď–0²­QkH9ü«3²Z]Z¢ÖÀªùàŸoÐjØ4ƒZ£MVÖ±ú‘ȯ܄ÿs«KaùZldŠnÄS¥ñ‡FV¢™ÁWÑÞ²Z¿!%Í Ó§ÏX¤ŠØ”ªeç°m†áüÂ옆9;`Bl +†y °™6Ç|q,À Ócx6†ÍåG‹…`¡X:Vƒ=Ćq9îƒoÇ+ñAAˆ`¯à•0^¸C$…ˆ.„š¸HÜ#Ébr@¼D\)þ›«ÉnØ~}½ƒÐa¡Ãý1Æ(Ç”y0æµc¢ãYGÎ)Áé.5žJ¢ê(›³s…ó;¥‹Ú¥29¯{݆óvr›0OÄí¶…ï&¡uÒhì#`€D,ú #Îð^ñ0¹rt ï“ÜEzd‡F< +]¥g›“Q“!1ƒ@ZñÂ6‡Þ’Šð-êÚ"7i|iõy ËîÛQ¨ 9Û®à7›„ µ…ÐA³" Š–¡¨;hìmE9ÿŸJp†Å2øº¤~Vü/<›…íÈ™¾ýä.Œ…(D‚$¨_±’´NêB.(X†–(‘dþd>ƒC0àU ^ENôï^ºÝm¶EÍ£à2Ÿá—~fÒÇJ+*«¶”›7®gŒ¹‡Ò+åúÊæŸgrBaÝjîÙtD4‰î|ÔT¦™{Ö€Ÿm…ëmB(´M¥>é´Aß N’ƒë ‚­°Áï-3»44š‘3?¢ hþƒy…€‚!â&àOª"û©%/C™i=dºZlŠ8Rz 9Ðþ«‡È'©¼Fîþ9œ´ +¹ ×FÔ›/n¶à>?Ã8Y_ì[$_žªU+ÊוÕ-§ºå 8àD_x£`Ä, !’ÅTf#´7€©Q¯ZÓZ¥MµtzuWÚu9|vëÕëÁàîy¥L¾X:ô°æ\×uÙ½˜>D)C×’å‰Ä‘šæ£–?¯S-óž±*‰×œ#¥/W",Ÿ [7¹+#Ž•|/ 2s~xqìirWP½1ÿ–óÓˆÑíá/‰uЃTb´¶Ðùbˆƒ£%GKŽ®w/È%rRr““d¨th#Äóc!7ͦ ÑiR,DÁ‘“… üp;z™˜©þA^Ë¢Ž2(6j‰ôêöôrpüÇpíê\~Œ)OXý]œ<囜Ýß0§@KÀn’g Þ7Bä¼¾nóÔñÄmNËÉ20A[—èb¢í–-ý—¡Eƒž`nw€à—“ÿäøEhüŠdEyÆýNÀÖØ?f*—#vø1͆>‡ñ‹¾ß³Ÿé¨éª¿"v# ‘ ˜5Jï{3Þ͹»ùNVã1:?üŽ°ÐÌ!¢Nü‹˜$­F ”¶Z¤O!;“üå=ܽâ}†)Kûž˜«º/ˬK{î1oÑTÕ©ð:…)›>õ]³\é'›Òïv +³hJØõ¾BæNk׋ãŠwÉ=«fÈæ+Ã=Ò¾Bî=p&$,pyÜWFföUÃÙµ–ö~u™gÍëK¼Op'¤}œ?dÒQ&ÑJ¢l›/K¢Ý}yïd%fúdÒƒç÷×7Øå“ÅÚït¥1V´Á2d™¡£š%V ÈìÕDçT5d_”¿ì-k¾Àœ­ªï¼Ü¸•­·d–­gR«õÚˆ2?yÔŠ¬ Œe-]XRUÐ$sGçù{eø4f +©=&¥ïÞ?ˆÄÓ&'êM… eÞÞÈÙù×(ä*ºéZÕ¶09Zìð5üi°¤£uÛæÓL©™ØŸUî#G‰ˆFž(íïIàg½VZvš¡À>ËÌ ™q«…[Ø*äqgµ´æ^äõ6töÚ_™+7Ž?ûIö6ù~d»¢K5½9Ë—†ýiçrƲ†.ªi,âLz‰ìÑ—¹ ú#‹œP’Zc*Ô+¨Á]p°ºFr¼¢»áï4Š×ÀL´ƒüÖ»=HŽ!¯´p0 Ž ¼Ú´msSb&¬+ £MˆB³Ñ2„×ϼÉß´¦=•¿¸}ô znžÙFeð˜…VW2£K6*†¤À”w#6ûw»¤Çæ!MµÍrµ±<“á$š6ìNHëu3Á›BìrÈ׌7“úÑ'œ›[ͳl!+ gˆŠÀÞôн€<ì_3טּ£nµ$xp³oªTöò‘Ü€}Èeï§v`yWãy™_ådmæ$i Œs…A±4 D¹½Yù¦ºEÍ Û~çÅÈ&›o zBJM4-Øë­ÈÉ]{MÓù£;*å<ˆ•}IJÏK²Ö wGÈ€S-|oh$wUVçž[{«ÚÎ3'jï”ud\XwRQŸ <<_¾"k§†±$Ò…eµ…äïûb&²¡ÈqmJÁ^#Cø’Ý ÐÔð«’ÝïȧÙçâO+ó- -ΰk#ÿÃtµF5q¦acœ Z–1Š™íL½âmU*)µ­HE¬È-\¢‰BHÀU`„+VB€p­+‹’„›“€È¥°[­¸­Š-Vq©íQäèý†ýè9û§=gþ~Ï{{Þç}&ó‚¦U>šq7¾-¸ÌI'¸áz÷1›Þ’ŒÈ·Ç´žŒ Ê9¶ŸfãE…eu§®’¯îí[òÞ¶ Åô»¸ðÓl+­¼´Æ,¿ñ²Hvù–²›Kn?~þ"°ò[è•æó]q{ýmÀënRjÊ©r+f”G”í !îùñòµ7><)=,µDûˆ7îÜíº{¯é¼”>Ëjsq̘›†òÛ _#€û_ù"f`Ú=KqË"ÆW  çC¾«×MàCq«´üŽø´± +ç|®”HUó€q ‡óá¯NtWø8åáÊ»)žÃ·Àï.a8#}²¬K_ZÁ«³¥䲄š›7/§ž±˜Å @0(û Ò1ÁÚäÊø9VS×|¶‘xÁ™Õb­†èVøA¾˜°û·l{ÖßÞT_MéqB}ÚËkD„ý“—MITQá^dXä¥> Téh-¬rDåB-à°Ây€ÿ±j0sa×?FgÐÏÜ•ØOŽÞ#à–z¼€³6Jw¢ðdü)Â?Èìcâ©6P'*ÓôÅÔÕßÚo“€×³N¥ ;|{‡œúáNÛ÷iSÌŸ =rx4ðl|nq·(Kv c7 ù› gÝ¢özµæ]fÁ ʈ²@.Y¼ÉÆÒ_\Ý×Zq¶’–ü)ãø‘%ìœûX¸v2‚†Ô¦$œ±ÜºÐpñÐr0c¨ËÞ^CéP¶úuXÎÔ1WÄÜSdÜ R3Ú< EؽÒü£|#‚GÀðöÍ'£÷;ƒýËh½F—® £²@‚x[x ,øº•ÏíŒHW”_d÷%åÐ ÎY‹Â…ƒ®€zh¯ø²œÒš1MÊÁÌ­är°†Ö›EwŠ®>}E§¯–ú¤…°©]fiå=dù`þ<„)2CÑÁ/¦CMÇ(£+ÊL)J$Äj’“鸸̀-b™¯´o|—@X¥VàmåÖY²&Û0Àyqr1ÌlÂܪ\[M.„S×C/8ÿÑ"0k°³Ù^Cë¶ápÑG!ËvJÊ«(U–r¥7³ƒ¼~ÃØØL[Í5½`¶XÄ@«Î¬»B…Â:‘*/ýDå{4 Ο„Øî_ÁšÄí‡/ï·…UP…™:µJ,üU´·M…‡xTÏòж³¸IWrª„ê©è²ß"Ÿ×mv§a= šÀΪŽ:­J¡’UrYfŠúŒÂ;F®N?9ßìßÉ¿"Yãä’q9²IçÆ\E©*EjªQYUc4UU«MrÔÊ>(µŒQO¾›x¥¢Ú‚CÙ©±åÌ׃bî3Éøz$²¤G’¨Ô#5û'âxì¶HŽðÒŒŠªó%•UêŠTZøî›ôŽ:ø`.b–ä÷pHpû5 +OaÝ8”:tæ"° zC_u†"U«^À äÿ]™6>ñU?î8 mÉšØ.ƒã›ûbÀÑ;^ª/;e :Ë[¯Ý ûw Þ´³ WPVXŠZÖVnkî!jô‡Shx‰W`;ä—„&dÊ©tµ*-3“^Eh³¹9rÿž$šÁ {î#,×Iu Ñ“yºž%úQ[q£¾´°˜ú§©Ëv‹™œHƒø¡‰Dnˆ–!ÓE´ä>þH‡ü’b¿ ¼¶ñA%§Á·à7è W>[ æ¼³ï?àê6Ð'‘õvn…Âõpöf7×ü fþ·LB¤5pkp@eMŠÍð ±à¢úGobÚ—Á‡`áÆ—p¶G Ô?ÞQÔ@î, +×Eé"Äl´ÈPhÔ(bø‡Ê[“b3ÎÝñœºÅßvGA#¥1ÄÂâ?G{³!Ãœ»#׆OòÙþaÆí‹-5¤e#¹ ÎÜwÁEC®`Æ£®{5­ÇG§©sÓs2©dqÛ‘¶„½x œ¿½ß¼I"¿Z,„ZÔë «u}ŽF—㥺R] Õo`»n’gNç3§é«‚‚Ç NŸ†E¤9*«g†]ŽÔ…E 7tÍ<­¼n|Âò›«EŠÚ& K>ÿ¦ãÁ÷‘ï¿ÓÛ/ÄWµŠ›k-½¶K*m)e²`eG¢É¿ïò jŠù!‰î;\{x¯8ìà~Ÿ˜¸²Rú#“!ÐufÞˆ?½Á9›¤°K^[u„’—_̺L^¬:õE)}¢ËÕ¦ç!C•–^Üï˜á;€ ²³áÜŽ8K´p{‘ÊHà5\™£ÌQSŠÐð­äê„»¿Ñ ZkpûˤÞÁŽkÍ碫ÔoÀšq¦ž17Š…Þù×& Œœ7‘bD8 p\Ž5â „“ca8rðmèJ¦GªöeÆ"rk¬ê%‹ŒZ›‹ìÉïâfØ‘ß©ó&ê«]'?&Œè«è(o/éBÞØ\Rô3¬pA¸î7Ö¤©#²£Ð’jZÔve÷ZpÎ% +_Ï+öd„j£äáÙW3mªN/pÞE¸lBxg¹%üJG˜MP ? v„Õµ¦ å—èðŠDSreÒ º\Çápx ¶÷„Ó•)é2e2Š•~1£&í+O0ÝEèöуÖè;„fëNäˆs˜œÜ,êèîC±Gå‡R=fŒu).¬+1×þ«£a¨¬KÀÿ\ƒ˜¿QÇid'!àc—4fMü¿„¾Ÿ“àËý^¿‘qåæ•ß—Š¦þðÙÈ΋T¹|/Ù ­_JþøíþQò{ÉröËo¿ß¼¡¦f¾Ü ¬sKcf%Iÿ2ùÍ/Ÿ­^ê§ÿ(™þÝhúô鋧³ýN›~o:;P¨búw=°PèÆtN¹Iñ<œÝ<Ü›¸vqÿ¨ù±L À§à +¦ +endstream +endobj +554 0 obj +[697 0 R] +endobj +555 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +556 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/R/S/a/b/comma/d/e/g/i/l/m/n/o/r/s/space/t/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 698 0 R +/FontName /SISIMO+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +557 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +559 0 obj +<< +/Filter /FlateDecode +/Length 271 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹ùÚ†‚–-…úAÓ>@¢“ThTŒ9äí;Ñe t~ÃÌ_gF~mŸZ£ðwoe‡Fm”ÇÅ®^" 8iÃò”–áæÅSνcœÄݶœ[3Z&ð +.Áop¸(;à‘ñ7¯Ðk3ÁáëÚw«s?8£ AӀ‘.zéÝk?#ð(;µŠâ:l'Òüe|n¡ˆ~žŠ‘Váâz‰¾72‘Ñj@<Ójõ/þ˜TÃ(¿{ÏD±çf&ÊÄeä"q±s•¸"®òÈd˜x¨#“a¢.#“!Nùõž_ŸŸc-·W÷ªhxpoY®ÞS·q±ͽAmðþ Î: Õ¾Ù¯g¬ +endstream +endobj +560 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/space) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 700 0 R +/FontName /ATCFUY+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +561 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +562 0 obj +[697 0 R] +endobj +563 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +564 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 701 0 R +/FontName /IDXWCI+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +565 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +567 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 702 0 R +/FontName /SFAZMO+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +568 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +570 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +571 0 obj +<< +/C /Pa2 +/P 180 0 R +/S /Lauftext_1._Abs +>> +endobj +572 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +573 0 obj +<< +/K [607 0 R 609 0 R 611 0 R] +/P 180 0 R +/S /L +>> +endobj +574 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +575 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +576 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +577 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +578 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +579 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +580 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +581 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +582 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +583 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +584 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +585 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +586 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +587 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +588 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +589 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +590 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +591 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +592 0 obj +<< +/C /Pa3 +/P 180 0 R +/S /Lauftext +>> +endobj +593 0 obj +<< +/K [649 0 R 651 0 R 653 0 R 655 0 R 657 0 R 659 0 R] +/P 180 0 R +/S /L +>> +endobj +594 0 obj +<< +/K [661 0 R 663 0 R 665 0 R 667 0 R] +/P 180 0 R +/S /L +>> +endobj +595 0 obj +<< +/K [669 0 R 671 0 R 673 0 R 675 0 R] +/P 180 0 R +/S /L +>> +endobj +596 0 obj +<< +/K [677 0 R 679 0 R 681 0 R 683 0 R] +/P 180 0 R +/S /L +>> +endobj +597 0 obj +<< +/C /Pa2 +/P 180 0 R +/S /Lauftext_1._Abs +>> +endobj +598 0 obj +<< +/A << +/O /Layout +/LineHeight 12.0 +>> +/K 703 0 R +/P 181 0 R +/S /NormalParagraphStyle +>> +endobj +599 0 obj +<< +/C /Pa17 +/P 184 0 R +/S /Endnote_1._Abs +>> +endobj +600 0 obj +<< +/K 601 0 R +/P 194 0 R +/S /Reference +>> +endobj +601 0 obj +<< +/K 195 0 R +/P 600 0 R +/S /Link +>> +endobj +602 0 obj +<< +/K 603 0 R +/P 223 0 R +/S /Reference +>> +endobj +603 0 obj +<< +/K 228 0 R +/P 602 0 R +/S /Link +>> +endobj +604 0 obj +<< +/K 605 0 R +/P 230 0 R +/S /Reference +>> +endobj +605 0 obj +<< +/K 233 0 R +/P 604 0 R +/S /Link +>> +endobj +606 0 obj +<< +/K [266 0 R 265 0 R] +/P 607 0 R +/S /Lbl +>> +endobj +607 0 obj +<< +/C /Pa8 +/K [606 0 R 268 0 R] +/P 573 0 R +/S /LI +>> +endobj +608 0 obj +<< +/K [270 0 R 269 0 R] +/P 609 0 R +/S /Lbl +>> +endobj +609 0 obj +<< +/C /Pa8 +/K [608 0 R 272 0 R] +/P 573 0 R +/S /LI +>> +endobj +610 0 obj +<< +/K [275 0 R 274 0 R] +/P 611 0 R +/S /Lbl +>> +endobj +611 0 obj +<< +/C /Pa8 +/K [610 0 R 277 0 R] +/P 573 0 R +/S /LI +>> +endobj +612 0 obj +<< +/A << +/O /Table +/ColSpan 5 +>> +/K 290 0 R +/P 704 0 R +/S /TD +>> +endobj +613 0 obj +<< +/K 291 0 R +/P 705 0 R +/S /TD +>> +endobj +614 0 obj +<< +/K 292 0 R +/P 705 0 R +/S /TD +>> +endobj +615 0 obj +<< +/K 293 0 R +/P 705 0 R +/S /TD +>> +endobj +616 0 obj +<< +/K 294 0 R +/P 705 0 R +/S /TD +>> +endobj +617 0 obj +<< +/K 295 0 R +/P 705 0 R +/S /TD +>> +endobj +618 0 obj +<< +/K 296 0 R +/P 706 0 R +/S /TD +>> +endobj +619 0 obj +<< +/K [297 0 R 298 0 R] +/P 706 0 R +/S /TD +>> +endobj +620 0 obj +<< +/K 299 0 R +/P 706 0 R +/S /TD +>> +endobj +621 0 obj +<< +/K 300 0 R +/P 706 0 R +/S /TD +>> +endobj +622 0 obj +<< +/K 301 0 R +/P 706 0 R +/S /TD +>> +endobj +623 0 obj +<< +/K 302 0 R +/P 707 0 R +/S /TD +>> +endobj +624 0 obj +<< +/K 303 0 R +/P 707 0 R +/S /TD +>> +endobj +625 0 obj +<< +/K 305 0 R +/P 707 0 R +/S /TD +>> +endobj +626 0 obj +<< +/K 306 0 R +/P 707 0 R +/S /TD +>> +endobj +627 0 obj +<< +/K 307 0 R +/P 707 0 R +/S /TD +>> +endobj +628 0 obj +<< +/K 308 0 R +/P 708 0 R +/S /TD +>> +endobj +629 0 obj +<< +/K [310 0 R 311 0 R] +/P 708 0 R +/S /TD +>> +endobj +630 0 obj +<< +/K 312 0 R +/P 708 0 R +/S /TD +>> +endobj +631 0 obj +<< +/K 313 0 R +/P 708 0 R +/S /TD +>> +endobj +632 0 obj +<< +/K 314 0 R +/P 708 0 R +/S /TD +>> +endobj +633 0 obj +<< +/K 315 0 R +/P 709 0 R +/S /TD +>> +endobj +634 0 obj +<< +/K 318 0 R +/P 709 0 R +/S /TD +>> +endobj +635 0 obj +<< +/K 319 0 R +/P 709 0 R +/S /TD +>> +endobj +636 0 obj +<< +/K 320 0 R +/P 709 0 R +/S /TD +>> +endobj +637 0 obj +<< +/K 321 0 R +/P 709 0 R +/S /TD +>> +endobj +638 0 obj +<< +/K 322 0 R +/P 710 0 R +/S /TD +>> +endobj +639 0 obj +<< +/K 323 0 R +/P 710 0 R +/S /TD +>> +endobj +640 0 obj +<< +/K 324 0 R +/P 710 0 R +/S /TD +>> +endobj +641 0 obj +<< +/K 325 0 R +/P 710 0 R +/S /TD +>> +endobj +642 0 obj +<< +/K 326 0 R +/P 710 0 R +/S /TD +>> +endobj +643 0 obj +<< +/K 327 0 R +/P 711 0 R +/S /TD +>> +endobj +644 0 obj +<< +/K 328 0 R +/P 711 0 R +/S /TD +>> +endobj +645 0 obj +<< +/K 330 0 R +/P 711 0 R +/S /TD +>> +endobj +646 0 obj +<< +/K 331 0 R +/P 711 0 R +/S /TD +>> +endobj +647 0 obj +<< +/K 332 0 R +/P 711 0 R +/S /TD +>> +endobj +648 0 obj +<< +/K [345 0 R 344 0 R] +/P 649 0 R +/S /Lbl +>> +endobj +649 0 obj +<< +/C /Pa14 +/K [648 0 R 346 0 R] +/P 593 0 R +/S /LI +>> +endobj +650 0 obj +<< +/K [348 0 R 347 0 R] +/P 651 0 R +/S /Lbl +>> +endobj +651 0 obj +<< +/C /Pa15 +/K [650 0 R 349 0 R] +/P 593 0 R +/S /LI +>> +endobj +652 0 obj +<< +/K [351 0 R 350 0 R] +/P 653 0 R +/S /Lbl +>> +endobj +653 0 obj +<< +/C /Pa15 +/K [652 0 R 352 0 R] +/P 593 0 R +/S /LI +>> +endobj +654 0 obj +<< +/K [354 0 R 353 0 R] +/P 655 0 R +/S /Lbl +>> +endobj +655 0 obj +<< +/C /Pa15 +/K [654 0 R 355 0 R] +/P 593 0 R +/S /LI +>> +endobj +656 0 obj +<< +/K [357 0 R 356 0 R] +/P 657 0 R +/S /Lbl +>> +endobj +657 0 obj +<< +/C /Pa15 +/K [656 0 R 358 0 R] +/P 593 0 R +/S /LI +>> +endobj +658 0 obj +<< +/K [360 0 R 359 0 R] +/P 659 0 R +/S /Lbl +>> +endobj +659 0 obj +<< +/C /Pa8 +/K [658 0 R 361 0 R] +/P 593 0 R +/S /LI +>> +endobj +660 0 obj +<< +/K [376 0 R 375 0 R] +/P 661 0 R +/S /Lbl +>> +endobj +661 0 obj +<< +/C /Pa14 +/K [660 0 R 377 0 R] +/P 594 0 R +/S /LI +>> +endobj +662 0 obj +<< +/K [380 0 R 379 0 R] +/P 663 0 R +/S /Lbl +>> +endobj +663 0 obj +<< +/C /Pa15 +/K [662 0 R 381 0 R] +/P 594 0 R +/S /LI +>> +endobj +664 0 obj +<< +/K [387 0 R 386 0 R] +/P 665 0 R +/S /Lbl +>> +endobj +665 0 obj +<< +/C /Pa15 +/K [664 0 R 388 0 R] +/P 594 0 R +/S /LI +>> +endobj +666 0 obj +<< +/K [390 0 R 389 0 R] +/P 667 0 R +/S /Lbl +>> +endobj +667 0 obj +<< +/C /Pa8 +/K [666 0 R 391 0 R] +/P 594 0 R +/S /LI +>> +endobj +668 0 obj +<< +/K [437 0 R 436 0 R] +/P 669 0 R +/S /Lbl +>> +endobj +669 0 obj +<< +/C /Pa14 +/K [668 0 R 438 0 R] +/P 595 0 R +/S /LI +>> +endobj +670 0 obj +<< +/K [440 0 R 439 0 R] +/P 671 0 R +/S /Lbl +>> +endobj +671 0 obj +<< +/C /Pa15 +/K [670 0 R 441 0 R] +/P 595 0 R +/S /LI +>> +endobj +672 0 obj +<< +/K [443 0 R 442 0 R] +/P 673 0 R +/S /Lbl +>> +endobj +673 0 obj +<< +/C /Pa15 +/K [672 0 R 444 0 R] +/P 595 0 R +/S /LI +>> +endobj +674 0 obj +<< +/K [446 0 R 445 0 R] +/P 675 0 R +/S /Lbl +>> +endobj +675 0 obj +<< +/C /Pa8 +/K [674 0 R 447 0 R] +/P 595 0 R +/S /LI +>> +endobj +676 0 obj +<< +/K [461 0 R 460 0 R] +/P 677 0 R +/S /Lbl +>> +endobj +677 0 obj +<< +/C /Pa14 +/K [676 0 R 462 0 R] +/P 596 0 R +/S /LI +>> +endobj +678 0 obj +<< +/K [464 0 R 463 0 R] +/P 679 0 R +/S /Lbl +>> +endobj +679 0 obj +<< +/C /Pa15 +/K [678 0 R 465 0 R] +/P 596 0 R +/S /LI +>> +endobj +680 0 obj +<< +/K [468 0 R 467 0 R] +/P 681 0 R +/S /Lbl +>> +endobj +681 0 obj +<< +/C /Pa15 +/K [680 0 R 469 0 R] +/P 596 0 R +/S /LI +>> +endobj +682 0 obj +<< +/K [471 0 R 470 0 R] +/P 683 0 R +/S /Lbl +>> +endobj +683 0 obj +<< +/C /Pa8 +/K [682 0 R 472 0 R] +/P 596 0 R +/S /LI +>> +endobj +684 0 obj +<< +/K 712 0 R +/P 500 0 R +/S /Note +>> +endobj +685 0 obj +<< +/K 713 0 R +/P 501 0 R +/S /Note +>> +endobj +686 0 obj +<< +/K 714 0 R +/P 503 0 R +/S /Note +>> +endobj +687 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +688 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 715 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 716 0 R +/FontName /HWUFIJ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +689 0 obj +<< +/Filter /FlateDecode +/Length 1085 +/Subtype /Type1C +>> +stream +H‰|PmL[e½·poù¨­PïÄ–ôÞàŒÛøþc‹ÄØæ"Z> aÔB/£z¡íøXÊ-…¢Î°nË*›"Cˆ È_?Æ‘g²LÐ Ä–‰#$.Ïe/&ÞÖ?þòýqòœsòœçÍÁ±@†ã¸¢¨0û”º(:§ÑdÐésM\¬†­6”rUzŸKóJœWò‘ +¥¢ÎÈÀÁgï0'ƒ‡aóÏ<á˜Çz2¹aùL……ILOOŠñaŠÓb˜¤„„?¦0j=WÊ2šF³…­63oË8S gÒYX}£®ªbüfÆÄšYSOü÷KŒÁÌ°Kkbt‚yÆ ì›X=c1éôlµÎTÉp>ç?´üN1##d1ùFƒi,‚hftF}¼Âù¯”q猓5ÇÅÓä5Ö°Ì!FÏ–cÂñ0LŽQXvËÃò±,D(ËÁr±l߇׋ĢRÑuÑSsû$¿9‰ ¸w2 =·ïäîÚIèD³Ê€Oð’ˆA3øÈîñ.YâŸ! œä§)ß„|LŠ–¤¶ ¾aÿž‡ZÀµýŠIE‘¨„FE?£H8 „øxXÈ; + J¤í±ÔOCI(%°É™Çµ+ÔACšãæò]¥´}›×náðDÈâöl£§øöÄ_+ O³G{Ó³Œl±j(…¸60Ñw[ù¨ÿ·hGjæk(EedE¼.–ºë Ý £Û8,BPt¤ÿêMã#Ñ+bÔ½»Ÿ8ã(]Œ²á"Õá„P8Ö3tu çÛ—>$í¬ƒ-W l±…Æþl¯wóëòü!ÐP? $âv(‘DU$@N΂†èñRÓp˜{]#]ã]ÃAN²Kñô¥Òt8B:ØÇìù [}ø „dòe~o¥ä›ïŸ$ÚÈ‹vH­DÁ/@)HõÛ«ðÜÂdßè—´SGF½©;’[øiw•ª&Ž¨ýînó¼rqéòØ=uÓ}[}bùò¢sÄ9 BrôÕÔvÞÞ¬Ò6•UŸVfè¡å›O¦æîMJ.©:[;Zl +)ÓºÖð ùB†z©ú¡™¦;J î-¬ÑŽKÇ’oå|f¹Ò¯øª×ýý谵ŭê]%®pÅ—ó•ˆÈ:‘J;Þ)||6h®®çüYE¥ù\¾¶ û*§’"uëÌzðU¬òeÇ/¡Fñ)—ö:§2}þÍ{cÊá]è¦Û6»Íj¯S[ûïÐP)„‚KÇl[Çëxk}øÈ OhjŒwM!'›ìÍØTUÍ•EÊ“µÓË4t ú°%/¬¯Þšt«œ¤¼ác5Ù6ÒvkV!mqñVD»\®^‰Ê]÷]bAjpAœ_ +¤®`•»T+ n—„zB@êé’Høx7õ4ƒ) +endstream +endobj +690 0 obj +<< +/Filter /FlateDecode +/Length 2335 +/Subtype /Type1C +>> +stream +H‰|SiTW®¢©*Œ¦Aê.RUÃ言ì舠ÆÑ… ²ØÚ HKƒMp£‰Q»[ºe¢,¢Š (‚€"1€K—D8ÆI\p¡UÔ83z«ç‘s¦šü˜ù5§Î¹çÞwO}÷û¾wŽ9:`8Ž+âSââ“Ož_¤ÍVªj5SÕ«³—irTö® ²¸¨p=Ç1(Y<›ÿ½”€+Î`ÕsL…+æ€ãw‡fkÖH¯È*¦EDN±ÇàÑ6E ÁB”J³L-$å¨Wç sr—k´k4ZeZå'Dåä£ù‚V¯Öê쇿q²óuvA–Z+(¥æŠlé­Z%h•*õj¥v• ±wþ§Ìü?£„ì\AÂçfÛ«Äé0_Pæªü%Íè”åšµ¹Úlu¾Ÿ\⢢5j!\P©31 —>l<†ÑÆ`˜†ùáX†…bX4ŽÅâX<†ÍÅ°ù¶ÀK”a)æ!y,,Äj±'¸7®Ãû‚ö8Ü–Å˺ý741PÍÄ[RI¶RR ©: + Û»Åán\ŠºeÛEƒmሠºÄ HØI€•D:Ç€½ùš!ÓGsˆDRMŠg{†ì•|d‚\ÿ\üâ9~\ œepÐæà)!È¥ó(¥ôò_üà#PâhÐ4Þ0•ù±%MFê ÙŸf @`)a¦oú¯³òíoÅŒ78¼–°Ä/ÜÞ¢Z3u±‹â_C@*ÞÅ>C"brÕ©\K0q°©«á"ûðè_þÌ›BfÏDS‘WdŒû'”¼NVèx‹Ã p’‰ÑnñÀ&z¢‰ªñ!fÀA¡X¨`JÍ0âj[ö6ÕžôØAÔ&u¦ÅRò $Ñ +¯¶ºÖ‰OèŸÄpHd® DÜI¤±…h‰r~ %€&/A"QkeÎÂt‚¶V¶—Ÿ)os2“媊´ªeçÐtw9¬©Ó‰À ?o[.³ýÎ Æ‘*;D0é‡äý± ¼(ÚÃ@®»£»—7êÝQ(™n‡¦Èj¨/ÚñÞòØÃLÖ„Õû +yŠNº¿ _AgãÃ#ÏöxXHS@™×Ž`'ùÍí„8x&J¬o—¤Sá37ØBÑ9 3=Ù:ÈYJ›fu†wDy@ ’¬¥m¡ˆDÅ$½w‚%xç4ÎHæÜVýœ~EÃ)w$üJÊÕ’OAcÅoT —Ýr“’Æ«dŸñ˜f_о°=‹Ê $#6*úY÷`ݹg–Ô8Y¨kz{ug2r­ésöø²1q[6§ñ e,•-mì½³ÙQñÉá|4)ïÕ¿ïâ}à MÒý÷ÙB™7 +eý ú~TœÈ ç‘)äžô§ÀðEWÀ?¦äÞúlj:øòžuÐõ˜Äk8ÓÄd·­ÆŽÓ +ˆ¡Þ¥¿F‘ŸéÖ®àêguMÝÕß²ª’Vñ›)_ŠðùÈYAwE]ˆyu­çpk#g!é ;t×z˜Ål6•¾ä²ô+V¥°ªœýßþxß ‘—¯ÕÏÕ‰x Y…®×%ÆzOo€nt×_ofrAówù×XpÙ ÌæÁ»4ô5ËF'央æÐ!©è“†|n\l\É ML¥¹Â¼‹;¿»³¥›8ÂÓ]>©ó#“–žèÚÄw™ÊËò<ýëx8é…}f3Œ‡ ’Ð.ÑӖ #Õ²vÉ‘x™è‹ÂJyä;ä N·zŸoàÌÒ¨²HHc“ñ|·Bì£$Ûºk“©Ø ç’Š3²?ggfüðäÙ龻ߵ©–Tðæ’Òâ…< Ä +®`ì¼>€•öç”jF"[s@ñ>ÜP +ˆ@4b‘Õû.Uí=Å=$6f.ÛœÀÎŒk}là9v—»ùwv 6*ÝÄ˳‘úŒ‚«Ïõ¿é(tô‹Þâz†Þ:—0’í-Q’”ßû¢`Ä=š~ßÝÐq„7+I¯Ê “÷Õäpküˆ¼S×7]eoôíîìá{¾©»ýV ÝÃÜnnâ$R‡™Æu†M\ÆÆå«ÓØHåû<=üºçòͳÍÙéUœEÒ¨WÈÑ?¥Ç¹¾ð)x¸ö‡>Ú + nâzä2²ž¢¹j‹c–irÕ™‡sOvn8Á·šò”¬ý£NgK)įƒ‹ìº¸ØR )Ï’À¼Þèí[áI’²Ÿì=h#w—Vï¨àNToîboJŠåÑioNQàt!tzRšZÇHºsËma¤EYšš¨/Õ?ûO%ïiø +h´‹[4ÉËG²%àÝà$`×{ð)xû¾EyÃ4æÁñàY>)q±Ÿ¤ÝzÞßü`PZT«ƒ/ oXÿßM¾ŽR)/3“ªƒ=yWXì!ÄÀ¿—È1*!gÑ +ÞHÒý[îØɘÓÌÉóàœ&ÝO¹¹ÂRίx ce-õLa˹½,07¿Ì›þ¶¬3è˜ÓüýÕGõu§;ÚÖ×qõƒDµ&u÷b1ñ!¼)¡=ùÅJ§ËºÚu+«ò×.ÎHªÙ«áähWɸ4„Â8Ù øœA±þ}¨ˆšW™qHÃi´nèdÛŽ•}]ßýTÝQ&S½ê˜ü÷l`úýÍù]ž/µá½;(õz2èÝ?º€ ù7ÿï]lµuí r9uÙQÒ^…ûïÈŸ ßÄþÛøNØ“G»÷®[ÊšY¿3°unîÜ}TŠOA»ìLJrÆÉ?ª™Xô»ÛŸ`Ö‰õ=-mR­-mMrUYy%5E•… emË•%Võï½{Ûѽ;îœûî,ûHü–`³ÿ=£)»)½9X§´,oÜиÒøûL ¾úé?ª§מ>}úâél¿Ó¦_™Îª˜þ],ĺ1SnAR<g7÷s®ïüÜϧòðüX#òã³(@€‡Ä“¬ +endstream +endobj +691 0 obj +<< +/BaseFont /MVRFRV+Wingdings-Regular +/CIDSystemInfo 717 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 718 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +692 0 obj +<< +/Filter /FlateDecode +/Length 372 +/Subtype /Type1C +>> +stream +H‰|;KA…wuÝøXŤ1È-lÄ˜Ä Ä4ø ƒl”5;1‹q'ήb +± ,KÁßL“ÞRüZØXÍè¤pfm¬l÷|‡{}š®ë±•âêÞnqv£A\ÛÙ$xn וÄù¤Î' ·¢"+®ãÆû÷éëŒuyl\ëÓõ×·e\—[GÕæs¹LBéB¨ÙdÒét¨ Ppð!‚RÃЉë^“:&v€œ$j5+| ÈGä\Áß·€ërƒ*"`ËðÈ•û9ÛA'69¬’?¶òÏ)p=]°ã¹Ê• }°='%[px¥ŒÏ¼€¸ÈO¦ÖJÛ:‚EpPEÓÔo‹[¼Ùjó¶.uºÝß2xók³×4ÙµèFEžÝ°wS€èD™2½›HÏÜg–Ò›ü)ª&¡Ü(Û½¢ü’²Jé#5E…>ÓˆD”%C4(Ñ šz8<°†ZÖ3†YbäóîÞ²~o„®: +endstream +endobj +693 0 obj +<< +/Filter /FlateDecode +/Length 359 +/Subtype /Type1C +>> +stream +H‰|ÁKQÆ÷™®”&,FÌ¡[¦&By,¢ S»«ûÔ%Ý'o×ÈSWA0¨Ã^ƒþ€þ)‚®£«‡:tß—ÏCû¶K§.ó›ùfI~Ÿ„ZÙ=(«åbŸêªV¢d³Œ›½¶J…c1Ä¢~¶VøM§ÓÀó¼ôÀ¢Ë’¡÷=Òuçš- ¶²Ùt\hÆÓí8¤S©”§Èk¤†¡Ò7-Ü1aߨÚ%Tµ°–€|» ^„ ›˜^ˆæï5 ›€u«…)¨®ÙÔÝyŠ5°¨ªáŽJÏç6þYºnœº Šå6MP -é¦oKô ‹êØL$ •j¿‹a4Ü$ñíÑ1 ÇìkŒ\]Ï ýlð]š dgÄ_žsnΧÌ?)Ž€ÙMp&Ÿzµ“ã.ËìQqZ‘+›]ÚN¶í{[æ ûÍ®ÝÕÎÂóÃpèuaš\‡›Ñ¤s +endstream +endobj +694 0 obj +<< +/Filter /FlateDecode +/Length 1084 +/Subtype /Type1C +>> +stream +H‰|PmL[e½·poù²êØ’Þœqß_cl‘XÎqf£z… mÇÇ*_´Š:Ãî¶ ©²)2¤ãëÇ22âL– :X˜8Bâò\öbâmýã/ß'Ï9'ÏyÞó—`8Ž+ ³34' ¢rÌF½!×ÌÅhÙJc g2x]ZPá‚Ò_ˆ¡P +êŒð|ö.³rx:÷̆Ipü¡ç(W-.Ÿ)·2 ii‰Ñ^Löaj4“ïÃdFcàJXFÛ`±²•æªRÎ\Í™õVÖËhL&Æaa̬…5×zÅ¿Ä- k´–³fF/šgŒâ¾™50V³ÞÀVêÍ çuþCËþçc¬bÄ,&¿ÊèeZ«(Z}•!NLá|WJ¹sUV³‘µÄÆÓæ5T³Ì!ÆÀ–aâñPLQX$–åaùX$–ˆå`¹X¶†ïÃë$RI‰äºä©¥}BØœÀEÜ;á×î/Øwrwí$t¢ +¥Ã'¬“ˆAÓxÉîé.Yì›!‰œ¦(L†e-Býþ5<5 ÷ƒk;û)‚"P1 +;~Fp@qËð"°— J í1ÔOîD…âÙ¤£ÇuËØACªãæÒ]•¬}[ÐmáðDÌê÷l£§ôö8Ä_Ë •O³~G{Ó2«Ø"µ;™¸60Þw[õ¨ÿ·iGÊÑ×P ŠLÏ ]*sÕBÚ:Œlã°~BÆHûu=Uˆ@¯HQ÷î~⌡4)Ê‚‹T‡‚áXûê@Ï·/}HÚY[¦DYRø‹)Úuý³½.Ì%¬)‡@Ký€´„“ˆÛ9H ™þ>H€‚œ-ѳNMÁaB±Îwu 8É.ÃÅÓ—J¦ÑápÙ8bC æ6ZêÂ!¬ W, û¥Ø|ÿÑF[un +¾|%#õo¯Âsó}#_ÒN=ù–þHî©O»MêêX¢æ»»Msª…ÅË£“ôäM×ým%ôIK Îaç€)ÐTcÛy{“Z×XZyZ•®_ø…Vl>™œ½75h,¾¤îlíhnQʘÖUx´ŠCÐìçî¥êÜÓwT@Ý›_¥?–Œ&ÝÈùÌz¥_ùU¯ëû‘![³KÝ»B\áŠ.ç«‘™B;NŸz|6`¶¶çüYe…å\¾® û*§–!MëÌxðñ[6($ÉŠ[D Ò7yÝuNmþü›÷FUC7>ºÐM·mö›½VUdë¿CC…X +Z*mÙ:^+ØêÂæAybS£‚Cl +ÉÑÙhoú Emjª(/T¨™Z¢¡[Ô‡¤(i©`måÖÄ Kí$õkÀȶá¶[3JY3/Øxˆây¾—'QŸ—ŠR=±>)@”ðjW‰.$°=$Øò`OWHˆ0ð‚à¢þ`ð +endstream +endobj +695 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +696 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 719 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 720 0 R +/FontName /WIWYXQ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +697 0 obj +<< +/BaseFont /XMONEE+Wingdings-Regular +/CIDSystemInfo 721 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 722 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +698 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nPÒ$¶“iìnÅÆ QŒDÔ„A‚®E`D˜Åá¥Ã@äá ÏQ|ðEJ”8*T0Xš-רkmj-6³fS»[•Ó䚪íÁÚªýµu«OÝó¸ç|çôw/Žyz`8ŽÏÑDi¢ÔŸ-Qt)iqýÒõ{SR³Ü.Adq‘öý}†jüåó~-‘Ãm_øñ /ÿY˜Ž?ûÛ}®t4#3_xõêåAn:-? –/[¶lZ† +iúÝZAShÌ×f…¨œT½!WoHÉצ {÷ +Ó)Œ‚AkÔLnã@‚Î(huù™Zƒ"93tÒyƒ6MÈ7¤¤i³S Y‚Þíù5ýÿ”t9‚”KØš£skš|ÉhRrÒB¤,úé*©ú‚œ|ƒNk ùT_˜«V iÚt Ã¥…½…a 1ì= ûÇÖãØ'8¦Â°M¦–a, Ãi¨˜‹Ã ØCì<ðXêqZÆÊŒž„ç +Ï(Ï 9'×ʯsˆ¢±Äv]|u—dÀu™ÍS<:÷ú(Õè6ƒÂ¡N?H@à ¸•×µäk"yzáHÒ ñ&ãÞ!·F¡ +™‘7ÜÇÃq3òýп.Ž"KE‹s2yQ°£18|¢ âeã5LEßíÃ/XP€ÇéÛäï߸9 s•ðvÒw7¸!U˜1ìšðÃ¥›yˆB³{}‹½“ì©ÍAA+6!o;h¿Í^ÊS(ÅišZivç–O­d~[ QS+Iê§ Ž«à]É Á ’ûI›cÄÈéýa­|ûª–m f/PÅg +~2=ÜÛ8˜ÜæUC·Ý»ûò¾ñÚ®^®{ĉöýðŠ²íÑà jÙ@7cîfzÎBÂ÷ÿ¯—ñè­+üÊžŒç•]]í·\ßWÜÉõC€¼=yKS‹ÂCÐÌÀÇ1@¤òßæuíÛ£Ôe›Ô*•Ó¹›£úm@,0õ˜ <†€šu6 èpÑêWqÚ:äRB ¾q/ÑÚ…Ÿè‹²¸DÊÛznµÞd'š +Ìü­©D36#…’N^=¾þçaWÓ¥>®š ÃvÉé6¨™R[©µŒË-Óæ±Ù¦æîÁËÎG<õ³æ!Ü$âÀAªyÖ¨ ¢é°ËvÕÞ“Û‰øÞ[ûn²@€ç$|ÊÃûŠ¿#o6&ј®ç­àDª×7ú@¬5ÆšÅA ô2uUÒâúŽuécïžMPñ´k­.õ÷úsÝå\eme}½Ò]vRHä(†¹îºÝÒXCAE»ÄS‰ ªµ’ÝÉÍ[Yä5?­®âQÈ‹½sr¤—³KåjUr%¬½Öñ1¥xƒ¤]ŒýŒ¥òµ„ÛS¡ÏË`ÒOœýênÿÙ]-_Uf++WR% êO0a2±¢™jGÍ™.%°‘à>@Q(‘hÙOA1öumÇ.|äwî<¼ƒÙròR…Ô7ÅtW;]Ãìhã6=OýiaîS˜EÀZÞt³Hêæ¹ø®haèWÛäVb o÷©ÏXä€BЂKÀÇu¥¥¿‹·'dFk4m-ÙœùËC‹°ß>n¼6Êß¹Ùòü…œ$ýü™}°º‹Cjt’±ØŠŽ–p¹Æ‚=lBö—_óô«§/öž2eÖqUåU¥R«N“h1ãÒ/•ÅO´H#²úœÑdd$&õiGF/ô_ã]•™4¬>•hžŽñÕT"Rü&Ý07/6€·ôÍHé’"6ôsè#¶Æ/Žs-µM½ì@KF<œRÐy²¡ª¹¦;U×ÚÖÉ´fÆò¨Y²’àûdÞžœòb—W\`6¼¬„Ë”ØÃ~¸+ÉXÈ!hWù˜-!ìÉö-›”Ô¤„àWXhyÃLZšéU7>‚~=dcÕ‰šz®­®¹£lß³Å]]å®ÂªŸ"rõŽ¤¼BNÊxµìž…ü7ã3‹”¦h‰±±2¸%ÚôQÀ´ …±Tb³ÿ,½#‹þóˆf¾:©Žü(w{’Æ8úh¢}âO °IXc1Ÿ3ŸšGW½6 +GHGUƒ½ž¨¿pr˜m;a=ÚÈÓõ°–¤«ª‹ËmElJŒa]ž»×Ó“rLØwÛw¬URq%ð6´/~Ö]€YWc¾4vð A¾yÉWþ!ýú{=^›ÛŠš•í­uÝCE–S\'Pò¦¬­±,bVmü_¹åb`:¯áýÇË +•…JµÉÑí-zŽBt ,Bï˜D³žÀF:÷‰8ÉÆ"ÅZG®kNìÊæòÎ\)f‡ŽÕ:yú"Ì%­%­ûØ];îð0XIm°Ra>Þ!FË:üÄhé.gÙ‰îÎs½ç%Š(~y½͇­GÉì½ù†ìL4 -UP‡¢Å‹G‡ƒ@éŽ )™ö9 xÚä%™ž8¼9çî>Þ6Ÿ™ ˜ª™àãhòñ«³ÅZæ? cÂÏã +endstream +endobj +699 0 obj +<< +/Filter /FlateDecode +/Length 1085 +/Subtype /Type1C +>> +stream +H‰|P[LeY˜nî +ëTÜ%;¬±-÷[)m$R ­] ¶¡¬»ìP¶\f·\ŠÜ^t¹,j ݶ)î*­"E6‚"¥ÜJ‘’kÒTÐ +Ä…Š%$6ßÐgןüN¾sN¾óý98æ+ÃpWx#ë„6="»N0é9¥åÊM¾ÌèqQ‹*_1,ˆFI¨3Ìwàé»Ì(àAðìSw&Ãñît¾RZ>]baãRRâ#=˜èÅäH6>66Ö‹‰lš‘7p¬¶ÎláÊÍìkE¼PÉ z gŒfÓÊÊXo„™83'T{Ä¿ÄšÌ,g²”p«—ÌÓ&i_àŒ¬Eйr½PÊòç?´øN±¦ +VÊbó*L¦µH¢™ÕWc¤Þ{¥ˆ?[aLœ9:æˆ6·®’c°F®“ŽcJŒÆ±cX.–‡åcR‰X6–ƒ9°U|^#£dÙ5Ùsû¸¸1ŽK¸{ܧÝW´nçìXIèDÓ4J…OX#‹¦hðóÔYè!Iœ'iÏ„Ò¼y´Z¬¯ ™äJMˆmRSHFÉkãÍš²ÆÒ’“ꬪÉEº%}B ‹ù«Ë7Çœ©¬ý8Œlj½9­’7ÙÅz;DØíö;‰Ší÷ì”$ÕÚ!Ú+ùIÒ}»¿ÆiÐù·º@èî + +ûŸô? F£- +endstream +endobj +700 0 obj +<< +/Filter /FlateDecode +/Length 360 +/Subtype /Type1C +>> +stream +H‰bd`ab`dd”t qv Ôö­,ÊLL (Ê× JM/ÍI,IJÿfü!ÁòC†Gô·áï¾_¿~ù°~?$¸þ‡„#ã­çÎù@}é% +†––F: ÒLšë(€IÇ”ü¤T…àÊâ’ÔÜbϼäü¢‚ü¢Ä’Ô=Çœ°Å +E©Å©Ee Aˆk2‹R3K2R‹’é™@ýE©) +%E‰)©¹‰EÙ +ù $n«2ó€f)„æe‚xÁ%@Áb…ļ} )ù`[’óKóJŠ2S‹õôÝ‚C* R,RRÓ@¾õ üÑѽ÷Ç›½Œ@Re/s7ËŽŸ:ؾ÷ý>*úÛîûdÖï/Ø~+ü> úÄù3‰ý[˜ýÝî7Ïöc¿(ˆõÄãûžÁW?ýGÅôïzÓ§O_<íwÚôÓÙå$ÅópvópŸãzÌý¸Ÿ‡ À¥v¤y +endstream +endobj +701 0 obj +<< +/Filter /FlateDecode +/Length 603 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaCkƒ-i‹:i«3꘻³ÌŒkK‡B[’FÌ%Jðž«SHJ"ÂCz0!4IDøf} +}³]:õ~¼ßï}¿ß{<•–p„¬óÚÕŽXc<§)I©[S›rJéSG¤5-Ø5Äö•Ú½"Æ©ížísnø°–÷¿-”Tr%„¬}íP3Ì?8dÐmm-M†‹x²‰¶„B¡"†i»¤öÉ4‘Ó 9¥ÓXº_Õ2ª–4d)@ÛGFh1B§š¬ËZÖÿnEÊŠ1$k4Éšƒ +ók²D -)É©¤vƒªNç:ðŸQTIS–E¯¤‡% &ê4™–‚,E-NéWGÓ†¦Èz Ø•¸œËÈô•äŽ½#\ q­œ›]‹s÷ŠxHÝãü‚ý}0<´àÊ—Ú“…îI¦ðˆQxè‹GŠoDpÈÎŒg‡ï)ÖEÆyûµèTè0!oÁð:Ä-²¸å‚5›Š†8D-œßÀK ÏÃ0„yáÑl¶#‹pá› UÐí:±1ñÙŸÒ9z.<>¯þQˆ4ã%+¦´úïòÙÊã=ºáEõ±Ý/äÆ-ûžEž .‚Ëã…¨ˆ5g°{°w Àåë?ab b}퀸ü+QÀšQ¬è:«þ†£PÇìKµÂlÖ^Ù$àc{ûª¶ì6ñ×q¨à…Û¦}Ë„FÓ4§M¯›ŸL“nš`Òœ¹ÌU³Ì?Û×ë-Ë{ËW÷n•ÛÞö˜øG€ á%ï +endstream +endobj +702 0 obj +<< +/Filter /FlateDecode +/Length 3279 +/Subtype /Type1C +>> +stream +H‰|T{TgŸÉd&‘ʸ’ÚŒ;ž->­¨+QQ«ñMÐX$!„‡Ô*ƒ­Š<­¢¶vQò!$ŠU«®Zu×ZÝŠŠVYëâ®îô {vBOÏé{öÌ9w¾û=~÷þ~÷û.ŽI%Žã}’â—¨çWo0´º$³qd¢aÍZKp‰úáB¸Tø}ODe?ÿ9Ž„˽ ÐûB¿ÐÖ0ŒÀqi[GêŠÔiF“xZ<¥=a˜A;®ÛÆŽP‰ŽŽî¶ãTñ:ã*½*yC¦E¿>S5+}µÑl2šµ½.JŸ–¦ê†ÈT™õ™zsvpò—œT†L•Þ`Y«7«´ââƒxެש,f­N¿^kþXe ®üÆMý?¡T†t•ˆ¥JI7½d‹8™©Ò¦ëF‰(Æî(«Yé³AŸ5*!yÁ“^5^¥Ó§b.~X(†õ’` + c1l† ”`Ã0l†%°©rL-Å’Il †1ì8†oÇ°a¢Ì˜KÂL˜;†½Áãp3î“’¥’-’’"‘8B´‚4]ú€T‘»É§Ô`ª‰ú,Z6MvV.—Ï•ûzà=ö(ïñ$„) iw¶÷Ä4¥>á¥í@Q*ŠýIb +ÊÐEM†=$<§ +µ2t»ejy÷&#ѧ„³Lp„‚îÓ( ÌøWQ(Sy¬¨ê;‰E}7«MÛ¨•ÓÖ§ø¹ûÄ +SWyðð‘5™™y¹|fIUöa–F‹ýñ9¸U ˆ«øÖo —Pè/]’N²º„§NÜá…ë>vú‡2„ŠxTXö"²“…ð‡ …ÈŠ}düV’fÔKÌjúñ‡T³`Á ÀÛy:©Ô-Ü9… /!Lw£ÛvY³‡„Xxÿù?á]åÝe¯;s¾I¯åjÖ‘‡µ|y…Éñ©ñH:1ÍBÓù¹jr½L¤'~a]"Z‘N­H'§›NÎa6 —þ/’ŽƒÙ`uÁËs¥9a__(î +ñ`e!+é¥Ðv ¹ŒBÅ]1¢÷¬d…‹y9¤âùÆ}'ö:åvj¯þSC¥¦ eõ¥¹¿[T…^arõÉ›æ±hæÙ°Pd¼àÝ”WÏWºÈ}ÙռϢµˆA#mèˆm»VY]ÏÓÿØæ:]x›GøÐK´í`¶µxKΊšv:®]â/sôé+åëõwRÎs_'Gý õbç}²e1ïYÃìúܽKܘÖz )%%=X| ±nÜÝ"Þ¿‹Œ5#uã|Û 7×_ÓÚ_x˜¯r’å¹K«’X40"B|ƒ~üM_í¾ƒ<]ü›ŒÝ-ð½GáÆù—0è¼MæÎZÔ8žE!‘Cи<Šh„ö ÞÖ:Î.f[M6R¶zÛ©“J¡C¦ ”3ù¶MÅ…œÂ—={y‚Xñ”W€AïëÏÞÜ;Ÿ2»Š/+´o(TÒê"7¬sÀ$'îöÀ×>B˜6ƾ§tO¹òæzˆD£ÑïF‰QÿÇC€{è­Ý[Ímr…¦5ÓÙÈØKÅ—9˜o÷4w¼eA~lÐÌžFbÏæ8`™ è! O¸ˆÉ8sTöcM[ûç5[·–srOiO›ºº0=×é +æÆ+3ô7sdt1Ò»`’KˆvZ•á¾'XÅKÛ¤råhÎŽ`û#ÉX‡ú<¡ÏŸöÖñö0uÑ`µ¦ú³u\žŽ4¼\ð{îZÅ©Ó¼ËQwz)Á)SÜ÷Ùö“ÜbTÏäoød#—9W7›Eäüç€ñŠ— ¸õðõ½3‹æÕr; ìùyJÚ*2Zè«‚‹÷¨ÁCÜ_³‡ª±Øu€»T{Á{ƒý©~â85x Q (ôÐòÔuEy&.=Ï’Q`’Ûà¦Fl=ÏDKÈ„]¿«ö(ž‹=F°h™¢ó°“•—“•U‘ûY݉¬Ú˜¦Î(,½U!Õp©+½zï–lœ›ŠnÎ)Ž¹iœ’a(”*Pœ "‘·PZ;,8çèE(²€U×°r ~ð‘±é”Îns“-Á‘éÏu¯?öÞ²äæ¾É›¼ÏsÎÉsžsì-m.®¥—ò7Ü‹*‘U¤|®Â p.KuPÒVñ‹ZBMˆõ“Ž†æSVfÈ9pí=Þ›ˆºÎ褹Ñã¼ê ø¿¥ôî@sXtž‡o$°…t¤§äéŠ1å\ÅQÝáy&r´,Å¿Þ˜‘µ»€5‘T¿ñBMš5æ<õl^R{xj\d í ŽF ó]Ëpà=3[† lÃeÈؘ¤N.b0ÐãÃÿ8<`7`Éà6™VA/CáhÎj´-Ÿ^‹žÁŸ`ĬžAÑìçx¼F é´pãê˜ØM âéÌ)np´å($‰PÕ³þx©dE%Æ¡¹îüXÆâö¶ZRt +§¯ì RQcbîNÒav˜m̸•þ>sºÞtší“œ¬;~²Žþ$5-é¨Hæ1=Ï0§¦aŒÍص×w‡Œðð1êwÉÊÜ—«xú¯›ƒ“w3|ñ]ìö¯¶ (ünßhà|…ÞÁ´øˆæâ\«š~+ùÓ­ÊËûî°c…îÂ=ŠÔYìËiv1RT‹AWyCf¡3Âß2´è}Í–¨¾Ìn+fJÕ—èζS_8Ø:aÔ—‹é­o”…[°Ô‹–+‘VV÷ÖˆÒŒÇʧ®{p·¥£k¤Ö 5pLZYŠj ½"ïÞ?,¸Ò‘[‚¶?)ýuðš¿]4mû„Ÿ4yLÞ^…tEý¼ ”]ˆ§ŽØ1ì|QJô’°W(%RID¢«å)ϨدËÆz«êæz´< +ƒ«r)|T?,,èÇCØõ<žò¸ÄÇ1ÁÇÓÐBPcg×mÃx+±&;ö¶*¡³rŒ»ãªÈwйr%—V“1¯pýÚ‘•Ð.Ï$ßDe»+SôêèdMŸ.P1´:äÒWqˆ!MºÐ&‘dë %ÑXc®3( &ƒ±š)Ù•Ÿ]RZX˜_QRkÏ–[/Ú¼îï{~Xxþ•§x¹Éåèsk +0aíù*oÕE¼Þ–KÓAï éC» C¦½),îrO]€¦Ý!¾îé!²'þ|¾ï¼èÄàà/ºñ°¬×MŸ(žÍƒe†"Ð*´…á&Y†bq­Âa%¬Å+hIJ @RY“n¿=™Ž‰ÛŒˆe·7€¤‡?Ý~‰­é$*K4ÕYôª±Éɾ;O.U³±RÃKƒÞÕ}¸«ùg¸uOX)u”Ea£vN>êt?n 5W„Z“Su¸€Õäp¢Q#šúÃu÷A{Û±c6†ºíðÔÔÝ‘¯ +èÌÏtEÅì;eAKç10':»Þ"”Z Îb±´[H”ky`‘à+­Þ^ÍÃWã–ùLk–:b~}D¸o›£¿ì?F³Ù +endstream +endobj +703 0 obj +<< +/K [704 0 R 723 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R] +/P 598 0 R +/S /Table +>> +endobj +704 0 obj +<< +/K 612 0 R +/P 703 0 R +/S /TR +>> +endobj +705 0 obj +<< +/K [613 0 R 614 0 R 615 0 R 616 0 R 617 0 R] +/P 703 0 R +/S /TR +>> +endobj +706 0 obj +<< +/K [618 0 R 619 0 R 620 0 R 621 0 R 622 0 R] +/P 703 0 R +/S /TR +>> +endobj +707 0 obj +<< +/K [623 0 R 624 0 R 625 0 R 626 0 R 627 0 R] +/P 703 0 R +/S /TR +>> +endobj +708 0 obj +<< +/K [628 0 R 629 0 R 630 0 R 631 0 R 632 0 R] +/P 703 0 R +/S /TR +>> +endobj +709 0 obj +<< +/K [633 0 R 634 0 R 635 0 R 636 0 R 637 0 R] +/P 703 0 R +/S /TR +>> +endobj +710 0 obj +<< +/K [638 0 R 639 0 R 640 0 R 641 0 R 642 0 R] +/P 703 0 R +/S /TR +>> +endobj +711 0 obj +<< +/K [643 0 R 644 0 R 645 0 R 646 0 R 647 0 R] +/P 703 0 R +/S /TR +>> +endobj +712 0 obj +<< +/P 684 0 R +/S /Link +>> +endobj +713 0 obj +<< +/P 685 0 R +/S /Link +>> +endobj +714 0 obj +<< +/P 686 0 R +/S /Link +>> +endobj +715 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +716 0 obj +<< +/Filter /FlateDecode +/Length 3259 +/Length1 6160 +>> +stream +H‰ìVkl×>÷Þyø~` +w™˜¼~ñt ƒwlDÁ6„5)a×Þµ½°ö:»‹$A&ÐkµŠ‹ +IC¢qLZˆh•Ò@-%%EJ¤D¤´•¥8"*”*iâ~3»X& ?øQU•:Ÿgæ;{î9çÞ¹kbD”N$¨xe]Ѭ’‹q"í-hiìˆÉW‹Ž#Ò'©eMíÍ­oÝX`exˆ” Í¡­M=WŸZß³¸·µ|þk‡®”e†<¯Šœ1iÏB¾ù¾–ÖØ–ª¥ñ½DÙ¹DbO(ÜèËÊ"b¥¸/´ú¶´‹G´™D¹á/Û|­ÃE+À¢8× ´¯üÝý`Ç|b5qäM¢S퇃NFy¦þSÞc?GrC¤‰3ìc¢¢¯³iñgx–ÏÎvdç9²‚¾êäô5©ý_”v*ý˜žNR·ºBƒX¹¿"Æ÷Ys²/`%Åó1ô¤ÒÓ­ô|é%ëšþØxèÖ•Aû‰QâšE”ä‚&@Jp¼:É5ð†$×±ÿ¶Y›SI…ä§/’œQ1{,É9fÏ&9¾1v0Éðw’\ÿg’댸ó˜œU\ 4£±@$à—±ˆÏhõE6É°e!6}{¾2Ø&F®i Æ0¾.æ‹¢Ò×æ/B€°=Acxs[, D %#‰¾óÀVP)BaŠân¢t`j·Ÿ>h‚`mTË +’j¡k¦Ø¢¶À;ï<ýð\Fki URV5<ˆñÍ°$ÞQ*°Ç4ÓfDóaÜÒ½ŽþOûÿ»‡³ž¼cèƒU»„¯ÄÛiYc¶Öꇷ:é‡ÔjGÜ]xxÌ·[›îiu¤›Lf#Q_›[bþ:0Ÿ-Eí9Û -JfQA#¤Í°ZmokÕñÅêSØH¥å¢rŸî¸Ûoò ™ÃÝ®uRRùuy}HËg/Q‰^ÂÌλzÿׯKwµ”ÌÃwðu`?Å UBpûq?OÝÔÍû>4· VMWñ»9 ´ô³éI<]ôv”~hkRì ð>÷"ØñfvŒn¶Ï~?E»ûsÞÇÏñs¶u1âV[ ð>µz+ÞNz•®°7áó=ÛºdBänüòÞb3€.ö1ä« eÖüˆ³ ÞÝÈ÷×ô!ýå²E,ÎÎÂ'‡ï°sIÌÖ ŸóÀ%;Š…,ÄÂ,Âö"æ|.¢†ùÞÃM~NÔ+‹Ô~-G›¯‡.ÎÞlThEûvcðøpÔþÀ8«a«Y ÛÏzÃy6Üà|1ºná'«d(Ÿ¨›Ô~m~(EClçûDìÓ<šƒªÜ˜£9ûi#~;,<<‰^>M/PÆ ØKoÐo¬9é2]¡[èN&`Õ5Ÿ=ÈÖõ@„mg»Ð®x†d}ì ä÷6{ŸOEÕ „P}"Ëü?Åßæïð?ñþ)ÿ\HDƒˆŠ#â¸xW¼«,Sz”ÃÊGÊG*SM»S9Z®¶^ëöé©ú&}—þcýþ‹´Bºœ¨«çP#mE%OÒŠÛ«Ö œ¢×~úÔªJVbáAæb•l PÏÖ1/keQ¶e¸¢—ØËì(;…ZÞ>`—Ù_Ø_Ùg6nqãùÃõ­âu|-ßÄ÷óçùAþ +vd?Ë?àWP㿉ÓEŽ+¦·¨V‹GűSœçÄe1ˆuËPR)k”õ¨ý‚2 |‚•äªPóÔ¹jТ¶©ÛÕ.õgØуꠖaw%G£-Ðvk/h}Ú‡ÚWúX}œ> (ÔKô:=¤wèÇõýjʉÔ%©ÁÔHš“Žã—í—ßøz_Çîþ-_¯ÑDv»áq‘ /ë¼;Ï3ôPj÷YÙéulVêtK¤Òrå­RHméú5:Ê¢ÊöŠ¨¤tDï`g…W Š#jž¶ ÑO~@×·ê^ý*2½!žS[ôB¶DíbGùb|ÑVCg7é1Ìã3éí¥=¬ƒR¨;å…oí<ŸÊºÔÅkJp«ÛÙXÁIj¿øÍ¥±ø/jMÃ^W)×:pËç—Ο3{VIqQa3æ3wŸ1Í!§NùîäI¿3aü¸±¹cr²³2GÊHOKMÑ5Uœ‘ÓmTz¥9Ýk*ÓeË +,ÙðAá¡ðšø×ì¼ÓÇ”^ÛMÞéYϦox–'<ˇ=Y–\H œÒmHó÷.Cžfëj<àϸŒziÚ|…Í•é¶0 +‚ÃÒ=¡Å%Mæ•n³²£%îöº¯7=­Â¨¤8©7-4̬4Ú{Yå"f^é.ëå”2 +Y™Õ†ËmV.+Sä¹}~sUÇíšäpÔ8MVÑh4˜d,53ómª°§1µ +S·§‘A«ê’½Î7ãûNgQƒ7?Ãoø}ß÷˜ÂWoÍ‘o>l¸Ì‡· L(pžf/¯ö˜©§­öœ¡ê¡ÎÞªN—«Þš-§Â³Ûv÷ñÛ&‰¸{BPZb<¾[š=5ž‘V‡õ¬¯GÐçòZYî}Ò*£ÖcW€ lB’´tV™‰‚†ÛÒx7J3ÕXj´Ä7z±Xã&Õnu¼6±ºüÌП©Ú-ã«=†Ã\<ɨ÷¹&÷æR¼vk_U¹¬ºÓRàìÍÊNtºwtf’dŒIÃ6›ÙîCÖ·[ͬŒŒ*lS6Jdâ1LžWj=¥o,…®z†ŽÑ?o<«ÌZ5/Ëñ›„` ^»SãKj´¼¬›dQk» o9Øos3?ßœ9ÓÚ)z–™-²å¹Îs¹Ñž%Íåh­ò`P}YZîpX«Üuºœ ˜5ž±^~±QqÿÍÝÞÍܵ¶GÿyaU®œ6Ʀ1mUŠ@s=ìß{ðLÕô¤×+%áIC0ƒ xmu•Ÿ¤D +veÛ"„„&Z%ñÁ(F1’ ¾jbŒ­ßÙßÝÉU¬>¸éç>³¿ßììÎìnw†÷#”1ç(öpcÊñ¤uf¡©}Fg2ÅÃÓQ<ÎçÝ¥M­£Š•¡ºêÎ];¢n•ôçñútFf ßÙä@ÃPvÌlHgÇS¸5]x³Ù®h¤+›Îå–f¢‘P4;›Hd÷v¦ ]Ê-/Œ™Nl<µK`PV §zë€×ô¤¸ä1½©&^¥ùjêÉÌEbytÂÌ;•¢ºÆ¿oá’½DrßeZ'6Äoë¼\÷©ÔÑ~D-7jé¨åFÃb.I-‰¡±ô½t‡†ÿÚĪْš»uw“³Šâ©­ÛÙóž² ú“6ëSñºÐÞv·s›êÃÌK‰i*Ã7½“Ä»€N5u4uè¾h:U¡çùTøÀ¦zó’˜Î§B¯ÁPþ)À…Ln¼ +endstream +endobj +717 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +718 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 724 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 725 0 R +/FontName /MVRFRV+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +719 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +720 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘„ð(X9Ë5ˆdóD…@v# C% ],°›ì&YH²qwÉ>&Z`ƒN;¦ÌH¡F+ 87[phÇR¡™Ñb™Ñ,mgâàXâèTJGªéïÜ]2ÀÈþÑét¦÷—sïï{œï|ßwνbD”MÝ$¨ì¡úÒÙåg‡’DƛЮnêJÈWJ"2o#Ò4w¶´¿ùÅ}6QŽH[ßÒ¶¥¹ïâã+à{ckk8º´ÿ¢Üãïi…"|ÖÓ?ƒ|Gk{bsõ’ä.¢¼"±³-Ú,)!bó1δ7wŠÕÆ,¢‚}ð—ÁöðÕu«kà QœêŒ…;úýëaÇzb%qäM¢[„ƒIVÅ8ó]¦½Ë~äFH'ØGD¥_çÓ¢Oq//›“çÊ+t幺}ÕÍékÒ¿œß­ by:J½úrýnÄ*ø51¾[­É®"À0þÊËæaêQ­¯Wë» uÍø?<ð? uåÐb”ºf¥¹ ÉR\¯Is¼1ÍMœ¿­êpj™Bôeš3*cëÒœÓXötšãcûÒ\;Í ð¥¹Éˆ»ÉÙee÷È呦X4mNÈÊh¬3 &"ÑŽ¹¸­MÖEZZqYŽ‡c]áPICuƒßW[Ôéh aÄ‹ëÂ-›Ú‚±o­¿¦‘¸ G­á˜ ÊX¸%O„cáLÄ‚¡p{0¶QF•å:±ù›ó•‘‰0rUG$ùõ‰`"—ÁŽP)Dš¢›:±H8^"éIô½ ¸l9E¨‰b¥8F3% «‹Q§sBë XS ©ºj…-îHa<ÃðîÂ=ϪÆð“j©,‚ù-°¤žq*væ´Ð&D bÞÒ·ýŸ÷¿ÙC‚©{Ïú j—ð•xª™Êšp´ª\u2©Ý‰¸ºèèœo¶6«Ý‘Nn2¤U"Njýz° #Å5; -Mg½®‚&H›`UEoµëxcÍÛÙI§ í¬v¯îÄkO + ™í®åõRRÅgò³£ˆ½Håf9³»oéý_¿ÎÝÒR41’¯û¾På´#„ñ,õR/HùÐ ¬†.âws6:©ôsè1Ü=ôOv~ähî§FØá}Ï…°5áÉœ½l·ó|œ¶#öç|€Ÿâ§ë"Ä­Q)ð}zo½BØðy”žíS³¹¿¼WØL ‡}Ćù +h™Zq6»ùþ†> ¿³¶%ÙIøäó'\R«uÃç4pΉ¢°œµ±(‹±]ˆ9ÄŸ‹¨Q¾“÷q›Ÿ~m¡>häóÌ6DÁßÞz_À~z~«Ö¤ót® ;ãU× U§Ð†êSYnã{ù1þ›ÿ™ñOøç‚D¦X/E\‡Å;âm©Ö§=¯}¨}¨3Ýv:•ok`·™in4·›?1÷›¿Ì*¡I¨Ëºjðj¢-¨ä1ÚIIg×úcô0HŸ¨:€‘t% +÷2«b«?[ìÅÙæÑŠ^d/±ƒìjyxŸgecŸ:¸Â >‘Ö·‚×ó¾‘ïáÏò}üeœÈ~’¿Ï/ Æ!~5f‹|1AÜ.¼¢ +X)›Å6qTœçÅ0ö-G{@[¨­ÒÖ¢ö3Úö1v’ëB/Ôçê €V½CBïÑŽ=¬9NWòñÆ}Æã9cÀøÀøÊœ`N4§%f¹Yo¶™]æasȼ˜q$sqf$3–å¦ÃøeûÕMoïk8Ý¿ãkRšÂÎã4<"ÆÁK}ïNó³-3ÂTvf=›‰ú]™´L;C âajÓE¶y‰²¸ö${YTÑ:`v±“" †Å½Ð¸/ÕO¾W6·˜ó"2ýB<£·š%l±ÞÃòEx£c¬–þÁ.Ó:¬œà³è í¢¬‹2¨7ãƒwí4ŸÆzôÄ«ZŸðêO°»°ƒSõAñCšKð_ÔLšŽ³®SúàVÌ›?ïî9³ËËJKŠÝE³îšyçŒÂ;¬é.9íöïÞ6uÊw&Oš8¡`|~^cr²³23LC×gäöZUiÏØÚ kéÒb%[A(‚×)6þõ°«nô±eÀq“7zVÀ³ù&ÏŠ”gŨ'Ë•÷ÓýÅn鵤ý%³5µ>ð§<–_ÚÃ_îpm†#Œàra†ôNnõH›¤×®êjMzÄëÏΪ´*ÃYÅnêÏÊͳ«¬Î~Vµ9„Wyôsʃ¬ìË㵫-JÁ…Þ`È^Qëóz¦º\þb·Í*›¬F›¬%ö¸"Ç…*el£Ò6edD•C=²ßýFr÷ñ\j 儬Pðû>[ýj¼"ûAËc?¸uhr±û8{i¥Ïά<Îh¥ïÕŒt÷Ww{<~µZ~¥o‡ã> MIïäˆTb2¹CÚ}µ¾ë­.u÷û´Ø½¬ÎçBÖ–w·TeÔùœ +”M.E’J§ÊL¶¼JØ íLk‰ÕšÜÀfMIÚT·ÅõꔚŠ#¡¯L®ôY.{ÑTËôÜÖ_@ɺ-Õ²úFK±»?7/Õéþ±ãÒ$gÌõ$÷k+8}áeŸ~žûýž{îžçîvϳ-Åûʳ{¤1m»2*3_Ì„žQ™CÅLéðLógi²eCé¯*XWÓ¹û [«[%=Ìy¼>‘Ýó`.™jÌ ™ÜX·¦ ¯b.×tå2¹Áüò¡l4Œæf‰Ü¾ÎL±KùåùQÃŽ¥wkT»•Gîٚr®4—\†;ÝÄ«4ëÅ€ï˪ͿHC:ÿJO[Ç–”¿úáF¢¥¤ÿ¶h&µÆ+®ð`Ѽ”$ +Œ-á¿]Ê·Eðí'µÔ#R­Êvêó=Dþ=`žúDMø®’å>G rš,±Ž,_U&pŒ‘%Èò_#Ëó£êê{Á ä0óoSŸ<6_E¹žóªÜ8ÐçÈò¦pü0#^côŒªï½FÏ‘?¢^bŸã—7@±G{Ñ„·—&ŠçòüVà:À5{ŸCVŽÌ1¥üïå”â/Ó‚BÝc§Üßû ¹C4$»1CVoæ¢Vµà8Ub&Di#^áŸõ5oUPWªT¯‘±žHÞõølO tØ‘6Íú€u–5Å:Ãzu’5Éêeõ°ºYqVŒÕÎÚÌÚÈò²t–›¥Åž‚¿·Àwà&ø\Áy`i0΀Ip¼ ÆÀa0œ6ÏsÓëë}ÖiÖ)ÖqÖ“¬ÖVK°<,‹b1ø[ð5¸>Ÿ‚ð¸æÀ‡àx ì;{Zj}µ¾ f^{1Ö+Ì“Â<&ÌqaîæóÂÜ%Ìaaîæva¦…™ëå:‘Èûä½2,ëd­¬–AY)+¤_J镺tI<Ãv;áJôǵ„=?D‰lÄþµ?š×üÛ¶Ûžh\³«”x:¶Ûm×QgF“×–g4íõCMf.“¦-Œ§ÓT×ø÷-\¶—Hî¿Jkµ $ðÛ:'Ö~"T´QÓ‰š*j:Ñ°6›¤–Äàhæ~ºKÃmÚªÙ²š{Tw“©IñôÖì9WÀþdŒút¼.¸¯ÝéܦúðAãŠNÚðM¯À$ñ RMM*…/šJUªùc!>¸©Þ¸¢MRA„×`(ÿ`õqj +endstream +endobj +721 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +722 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 726 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 727 0 R +/FontName /XMONEE+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +723 0 obj +<< +/K [728 0 R 729 0 R 730 0 R 731 0 R] +/P 703 0 R +/S /TR +>> +endobj +724 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +725 0 obj +<< +/Filter /FlateDecode +/Length 3258 +/Length1 6147 +>> +stream +H‰ÄV}PT×?÷Þ÷±»`øÐJªo}XDD«AƒDvWÚ€ îj­»|TT‚UcìZMÕi›q“NllH3~‘¾“bÆ6ÔËŒÖÖÌ$cªý c&‘L2ÕÚ6£ô÷ÞÕÌØûΞwÏÇïž{ι÷Á%FD !AS«)˜VxnÀ€åxI}Û&íõ‚ljX*‘\¼ªåñu¿¹>Û$R¾N$­|¼y˪ΫOU¹Ž¿µ©1ÜpíÀåbÌ‚þµ&RǺ¾}9ôšÖmÚ\>ÏØ ý;DbOó†úpÚPÚQ’Š5ά onK”\¢äw€×Ö‡×5z?ñÿú ð§[Z[ûíƒ+‰Ò~½–˜:‘ýdrHç¤s°dŒŒÔ ´D8îõ,¬Ñ4*ýLûlHÉc¯R¡ZÈÌÈ=ÑÿççÂ==… zà;ø2H?¦:¼÷ƒÀ/P”¢¼;Ž¡"° ©‚®Êý4Zm{mÃÛKÿd‡è{¶eÕÁ_tÆøê12;F”uØãS´ ±?çÝü4?m{ç"n……ˆï–ûa·âí¤×é2ëæIÚßIº`ÍBä(uÑM–jg²A^+³ÖGœµ@G‘ï/é}ú;Kc%Ì`§€Iå;ì\â«E€é]°£X´5³ ¬•íEÌ.ø DÝÀ÷ðNnòÓ"(•ÈýJª2SmFFg>ZѾA5X¹Žž§ß3ΪY-kbϳNäÐÇA×y>Ÿ‹®[ôœI‰ÒGòZùP¿²X=àP[&…&FY4Uù°F5rn 5´Õ¦'AÛÐËïÒKÔI/ÓaŠÑ[ô+kMºD—é&º“²êšÉfKAAP+ÛÎv¡íwÐ3ìEÖÍÞB~gÙ»|ªŽS3ªg¹“ïç'øYþ;~…ðùç‚„S¬ub£8(Žˆóâ¼´@ê”^–>>™lÚJUÒ”J;¨CuªkÕ]ê³êõMׇº<¨«‚–¢ª-¨dí!ÃÞµè½ꧭ:@CÕXô0ó2?[ +²e,ÄÖ±lóhE¯²×Ø!vµ¼ z]baŸ°OmºÉžÁóFë«â5|)_ËŸç/ðùQœÈn~Š¿Ç/£Æ~5&ˆT‘.& +ŸðƒjÅr±Yì]â´¸$±o‰Ò#R‰´XZÚÏHÒGØI. 9Kž!ƒšäõòv¹]þ Nô <¨$Ú]IUÆ*³•ÝÊKJ·ò¾rKMW3ÔÉ )j¡Z£6«mêu@½ê8æ|Ô¹ÚÙêòКJ?ÿÒ×ûN÷¯ù +¥€&°K8 Oˆ$ 4ëÛã‰j³s5ﶲSkXvêOtS8©R:CKÅrj–ëD‚z±ÒvTøéTÛØ)ƒâ œ¥ÌŽ÷“ïGÔ-jH½ŠL¯‹}r“:…=*·³C|.¾èVVMÿ`7è[XyÏ¥3´—ö°6rPÔqŒÁ·ÖÇ'±vùq\ê>y;{;˜)÷‹§i¥S"åÐdœu™ÒH.9kæô¢i…S ¦ä{òrÊy0;ë}²[›4ñ«÷gNøÊøqéicSS’“àr:TE–gäñéþff‡L)[_° ßÒõ0 á; !SƒÉ7ÆÔB6L»Y +äª/!KãÈÒQ$KÖæÐœ|æÓ5ó¯®õ°eÕÈÏxõ fÚòB[–²me ·34ßø&¯f²æ3ýmM†/äE¼X‚«L/ktå{(æJ€˜Éôë-1æ/a¶Àý¾â'ÇdeVè^ŸY®{­L‘å 7˜UÕŸ7Óíæ{LVV¯×™¤Ï3“òl•Ù˘J™©ÚËh«­r¨]‹yzŽždª å%6è áoLZk¤ä™óu¯9ëÀø|O{­6`:ËzÕNRÅP$VñzƒÖj©eÝ6|àã¶d +Ã7~µf©†±[3;«wzÝÖ;DÐ|O墀Yë¾Í*cQÀ®AÙø$iÙ¬2ã7ê>ËZ£™N}žÞd¬ a³&&-Úâ>>¡¢ôäП©Â§µÝmÎÍÔƒaïý±42mé./ÕÊïöä{bÉ)ñNÇîKÇÜ)4ŽúlɆ[²i5³2ÒËqDL­^C&ÝäY³¬Wã,2êg†'ÈÐÑÕè_ÈH.¶6BÎJÖ5ãá èƒ×‡-JVò ²D브9øGd3/ÏÌ͵NŠZ†­Ef%¶>#ßÓfVê-ÉšY‰–QU“‚Åh¹Ûmír{O)ÕA1#Õ¸®Q]æq*-È štÞueØþßç¯Y5áB ¶b:J¨Â™CQ×jp/U¨Ùuž¢.q„úǨKL]Τa^ç„ÝàêrôQ—ëmê’g +m_€×-õ9ªpt"æ.Èî¸ßfKž;Xê¦.%€ùqV÷ÆYjˆ³…WÞ¦%#ìøp `;‹5Þ„?œÛtØv`L§¨RNÑ‘µä s?9+ËaOÎ#7ž‹³±·ŠxŽ“QŸúmð³Ð‹0®×êxóÁ¸Šº]y´GBï,Y ý¬øûåÛFÆñÛõNÒ¦!D2!ˆKȃ ÒT¥•í@šbE›†¦ªh{ã¬êz£ÝM¤RÔKU€T+8ACÅ£ 4Ômx„Š8pá@”âÈ™ •ÿÌ·2q +‘à€„W?ÿ¿×ÌÎÌ:“5 Ôp 5ÇÖ¬Å? ^X—‹4g}ŸµÌUQu?®®áMAî+Ø[Öí[Ã'ÖÄžþóÚ¿‡˜X"‚~¿÷Þˆú(~ŸQzæú¹×öûMÕ¾øÑûkÏÕü¯µTãO±Ë +õŒµ„®"|•å÷°¼Ø×rÆîþÿÒ×Îÿð¥ö×xëas¬ÿ/š`mÇFüSä >ò©½ù¥ê.ÜG{´ÚøY ÙØvöD`Ø©ŸD%‹ÔÁ+°_›³^þD`‡X#?ØaÄ_ìì/; +û·À6p +½gQöõööË+ïØ®=éÉAÛ™¶œgÙån™,•dÆ*Ny®Ì˜®éÌš…ÌPf¬óq«\,·+cgJ9g£ñj@Z®4-oÊtðŽí˜EËõLÇ,HÏÉÌ#9ç°´Uf•;¹þx¥U–èFî-[Úg½œgº2W.ô [ß oÏ”=Ç2Ýn‰C¯Äº÷âê‡5Â,~f3L2±AX›Öß9D,XeÖL’•pI–A¬È¦sµgBMTÏ⻀Ê6†èc8®Zh_D†Ôe]ºM‘Í ·ÚÕzmýo×__!a©oêaÔÜ%j%TµTYOGÕzHØj% ðŽè#fWÛ¬ŸÜÐÓ‘zl2d{áYz êþYX9í¹úžeD{‚Ø«f‡7ƒ¬‘¥«ñÔ lh~Í[EbX®„ú/÷ANháçHÞ&Y$Y 9KòÉ’y’=$Ã$»IR$ ’]$l'‰’DHÂ$<ñô{p|®€OÀûà=p,s`œóà4x<N€<8¨û—Áà]° Þ¯‚ÀQPîk©k©Ûæ¯ðÙÄÃ?cø/þœáÛ†_2üIÃ7 ÿ€áï7üqÃßgÜ%îRÜ!n·Š˜h-¢Y4‰FÑ ê…Q!w‰ÊÍát(Mñtåãx€t9´¹ó9oOµ6MïÒ“ÛÑ;¿a|mÆ‘®¡#U¹ ¨TW²+©R8Y¨T#Â[‚TìøŽöø%¾¤šÞŠ¥ü]€ãnqu +endstream +endobj +726 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +727 0 obj +<< +/Filter /FlateDecode +/Length 3259 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘„ð(P8Ë5ˆdóâm@d7’0’€l°ên²›d!ÉÆÝ%ˆLZ`ƒN;¦ÌH¡F+ 87[phÇR¡™ÑjÑ,mgâàXâॣÕôwn– Xýƒ?:Îôþrïý}óïûιgCŒˆÒ©“­®-œ]üÖ@‚ÈxÚû:âò¥Â£G‰Ì)DzIc{SëëWÙD>"í¡¦–­=—]ß3¸·5‡Áˇ.–ež‚<¿Šì±iOB¾ùŽæÖø–Šå‰½DY9DbOK¤!3”3DÄâ>ßØÒ.î3få„¿l ´†^ÿüž~øBgÛ£¡öÕ¿¿ó!Ø1ŸXKy“èÔûá`’U:Æ|—iï²_ ¹!Ò‡ÄiöQá׃™ƒ´ôS<‹‹æd¹²r]Y®NA_urúšôþ/vj˜‚Ñ êÖ«ô¹ˆ•ókb|Ÿš“}‰ƒø+.Z€¡'´žn­çK?©kÆÿáàžÿa¨+ƒö£ák6Q’ ši˜kà•In€×'¹‰ý·MmN-R¾HrFEìÁ$ç4š=™äøÆØÁ$×ÀßLrüŸIn2âî£rvQÑ|YnˆFb‘Ƹ,‹DÛ#Ñ@<i+ËZZdM¸©9“5¡X(Ú +øªV¯òzóÖ‡Ûš‚¸cù5¡¦Í-èíêG2“¡p¼9• 5…cñP4”ñh j D7Ɉ²Ü$6~{¾2Ü&F®k Ç1¾6ˆ‡b2Ð,D€ˆ3ACds[<Å +$%‰¾óÁª(L ¥Åp7Rº2°(µ;Ï4a°6*€eµ’j k¢fØbŽÂ;ï<ƒðô!îjZE^ Öû þÁä;FùΘ&ÚŒhŒ»UºÝÑÿiÿ÷`êÂ;Ž>¨Ú%|%Þj¤²Æ­ê‡W Bju"n‚.22æÛ­·µ:ÒÉM&³‘´RØÉAÍ_ p¤˜3g´…É "7UÐi3¬*£°ã­V_¬9•ý˜tJÑÞÒÞ§;þÆ›‚BfÀð]WU­”TzE^2òØóTl3»ó;½ÿë×;ßi)˜?Æ7€ý 'T1ÀÄý4uS7ïö¡9¸m°Jº„ßÍÙè¤ÒÏ¡íxzèìýÈÑ,¦zØëá}ï%°5àÍœÝlŸó~”v!ög¼ŸågëRÄ­TÃà}z?ô*ÞNz‰.²×àó=ÛizGBänüò^g3.öäk ej~ÄÙïnäûú€>g9l K°3ðÉæ9¹ ÏÖ ŸsÀ;N…*ÖÂ",Êö"æ|¢FøÞÃm~VÔiKô~#ÛX`¶ +\œ½Y¨PE[…ÝX<<udœU³µ¬™íg=Èá®ò|¾]Wø©ðkÚÇú&ý9 ßXgJ1[Çù> û4—æ¢*/æ¨FÎAڈ߅G€íèåãô õг8{éUú­š“.ÐEºŽîŒT] ØÝl=PDÙ¶ ýèº O°ƒ¬½ŠüÞ`ïñi¨z-¨~8Ëü?Éßàoò?óþ ÿLH‰z‡Å1ñ¶x[[¡õhÏjjêL·Ne9ÆF°ÏL57™»ÌŸ˜‡Ì_¦ÐÔåF]•8‡h+*ÙN{(á¬Z/p’^úéU0”¬DánæaålPÇ60?ke1¶e¤¢çÙ ì;‰ZÞÞgØ_Ùßا®sƒçy#õ­áµ|=ßÄ÷ó§ùAþ"vd?ÃßçQ㿆ÓE¶'¦ +¯(ÖŠûűSœgÅ1ˆuËÐîÑ–hë´Pûym@û+Éu¡çêóô YoÓwè]úϱ£õA#ÃéJ¶1ÖXdì6ž1úŒŒ¯Ìqæxs:P`›µf‹Ùa3ÌK)ÇS—¥†S£in:†_¶_}ãë}»ûwü£&± Ø ‹1ðRçÝ9ža¶¤†yŸÊάe3±R¢ë"•Vjçi½¸ŸZôz‘n^¦#,¦=Æ^åtœ›ìŒð‹AqXÏ5 ÷“ÇÌ­¦ß¼„L¯Š§ôf³€-ӻؾ_t”UÓßÙ5z3Çù,:O{ië êN9ÎFá[;ǧ±.ý9ñ²Ö#¼úvVp²Þ/~Hóhþ‹šIÓ±×uÊQné‚… æΙ]\TXïΛu×Ì;gäÞaMwÉiS¿?eò¤ïMœ0~\ÎØì¬Ì1£Ge¤§¥¦˜†® ÎÈíµÊýÒžá·µÖŠùJ¶PnRømüëa—ßêcK¿ã&oõ,…gã7;µì£µ¾ÓT9ÔÙ[ÑéñÔ©Ù²Ë|»÷ pŸ°m`²Hx'†¥‰ÝÒî©öÝlu©g]‚æ»WÖø\ÈÚòŒŸS‚²‰…HRéT™Ã‡,¯Òø7J;ÕZn5'6ú±X“6Õlu½<©²ôôÐ_¨Ò+k}–Ë^:Ùª x¦ôæP¢fk_E©¬¸Õ’ïîÍÌîtïè1I’1êf±9ÌqW Yßh5SYØ"¶lÈÄgÙ¸éç>³¿ßììÎìnw&Åû4g)öxCÚñdtf¾©yNg2ÅÃ3Q<ÎÜ¥M£ê‹¡ÚªŽ]Q»Bz˜óx}:"3†ï‘l2U?5ë3Ù±4nM'^Ål¶3éÌf²¹¥ƒƒÑH(šI$²{;2….å–æGM'6–Þ%0¨N †Sµ%å5=i.yLoº‘Wi>Ï›[m¸Ñ_±ée*÷_éiûØ¢öþh ZLoË&Òk¼Â +–M‹I¢²1¢¥¯‚·‹™ÂvÇ |ûI/õˆt«ªzÒDp7˜§^YO+d{ÏÑ‚š&[®%;P‘§Ÿ);ÆÈV d¯’í{—Ñu=à:r˜ùÈw¨W@›¯¡\Çy]îBsdûS8~˜‘¯3ÆF×÷_¥ç ¨Q¯±/qŽ‹È›  ±';×Є¿‡& +çòý–çÀ5û_@¼&ñµbh ×-Ñžº£òðö[à—¸¯jÇo†wÒ\°Ž;Má\ÏÞe´–°uö/‹ÿÌmïYî³{žåL2ÿVÏÐõ~º»Žås×Q®¸gÛ.bpYìÈ?×ýo¨Áe`M øùmZ‰ ϧŸï¹{ßKÛý¦X¾™'¿ï²•eŠùßK)Æ_¥¾Çn¹¾ ï-òÖÐê Y¿™wD9Ö‚ã´ +3éJëñ +ÿlôëy{¬œ:;Q¥rµŠuGrž§f»›¡Ã®Ä4ëCÖYÖë ë}ÖIÖ$«‡ÕÍêbÅY1Vkk=ËÏ2X^–ˆm…¿·Àwà&ø\ƒóÀÓ` +œ“à8xŒÃ`ô»mžç¦mÖ9Ö¬Ó¬S¬ã¬§Yí¬Í¬V–dùXÅbð·àkp |> àpÌÀ ð6Øvt7Wª묜x9Ö#­“Ò:&­qií‘Ö‹ÒÚ)­aim—Ö6i¥¥•’«µ*¢R¨ûUXÕªjU©Bj•*WA¥”_Ê£ð ;UÞ„'Ñ g~ˆƒç×¾hNŸÙæø¢qáT&(ñl<ì´68ž£îŒ&'–f„xcÄÔ“™K$ÄÒȸ™w:Mµ ßÂ%{‰ä¾+´F¬#‰ß–9¹æ3©£}ˆZnÔÒQˆÅl’š£™é ÿµ‰³%5;vëî&S3Šâé-ÛÙsž² ú“1ëÒñÚÐÞ6·sëÂÌˉ)*Ã7½“Äû€N5¶7¶ë¾h:µJÏó©ðuæe1•O…^¡üS€©Âq + +endstream +endobj +728 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 723 0 R +/S /TD +>> +endobj +729 0 obj +<< +/P 723 0 R +/S /TD +>> +endobj +730 0 obj +<< +/P 723 0 R +/S /TD +>> +endobj +731 0 obj +<< +/P 723 0 R +/S /TD +>> +endobj +xref +0 732 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000389 00000 n +0000004671 00000 n +0000004705 00000 n +0000004881 00000 n +0000005008 00000 n +0000005055 00000 n +0000006868 00000 n +0000008947 00000 n +0000011170 00000 n +0000013457 00000 n +0000015474 00000 n +0000017928 00000 n +0000019946 00000 n +0000022436 00000 n +0000024478 00000 n +0000026952 00000 n +0000028983 00000 n +0000031705 00000 n +0000033711 00000 n +0000036622 00000 n +0000038628 00000 n +0000041249 00000 n +0000043254 00000 n +0000045178 00000 n +0000046476 00000 n +0000046544 00000 n +0000046728 00000 n +0000047047 00000 n +0000051238 00000 n +0000051417 00000 n +0000051544 00000 n +0000051669 00000 n +0000052124 00000 n +0000052584 00000 n +0000052736 00000 n +0000052950 00000 n +0000053360 00000 n +0000053788 00000 n +0000054068 00000 n +0000066393 00000 n +0000066901 00000 n +0000067013 00000 n +0000067308 00000 n +0000068240 00000 n +0000069303 00000 n +0000070175 00000 n +0000071175 00000 n +0000072155 00000 n +0000073085 00000 n +0000074024 00000 n +0000074972 00000 n +0000075519 00000 n +0000075646 00000 n +0000075771 00000 n +0000076353 00000 n +0000076584 00000 n +0000076798 00000 n +0000077256 00000 n +0000078133 00000 n +0000079286 00000 n +0000080347 00000 n +0000081310 00000 n +0000082407 00000 n +0000083331 00000 n +0000084348 00000 n +0000085236 00000 n +0000085874 00000 n +0000086001 00000 n +0000086126 00000 n +0000086654 00000 n +0000086849 00000 n +0000087717 00000 n +0000092975 00000 n +0000093521 00000 n +0000099525 00000 n +0000100393 00000 n +0000105546 00000 n +0000111287 00000 n +0000111705 00000 n +0000111857 00000 n +0000117996 00000 n +0000118122 00000 n +0000118250 00000 n +0000118785 00000 n +0000124509 00000 n +0000130385 00000 n +0000135920 00000 n +0000140649 00000 n +0000145842 00000 n +0000151229 00000 n +0000152764 00000 n +0000154037 00000 n +0000154149 00000 n +0000154276 00000 n +0000155093 00000 n +0000156326 00000 n +0000156415 00000 n +0000156809 00000 n +0000157063 00000 n +0000157972 00000 n +0000159195 00000 n +0000160636 00000 n +0000162378 00000 n +0000164640 00000 n +0000167156 00000 n +0000170032 00000 n +0000173117 00000 n +0000176390 00000 n +0000179942 00000 n +0000183805 00000 n +0000187606 00000 n +0000191421 00000 n +0000191694 00000 n +0000192191 00000 n +0000192463 00000 n +0000192970 00000 n +0000192997 00000 n +0000193309 00000 n +0000193629 00000 n +0000193948 00000 n +0000194282 00000 n +0000194671 00000 n +0000195037 00000 n +0000195464 00000 n +0000195770 00000 n +0000196085 00000 n +0000196238 00000 n +0000196434 00000 n +0000196587 00000 n +0000197002 00000 n +0000197197 00000 n +0000197395 00000 n +0000197781 00000 n +0000198054 00000 n +0000198689 00000 n +0000199107 00000 n +0000199457 00000 n +0000199777 00000 n +0000200096 00000 n +0000200501 00000 n +0000200988 00000 n +0000201141 00000 n +0000201556 00000 n +0000201751 00000 n +0000201949 00000 n +0000202361 00000 n +0000202634 00000 n +0000203184 00000 n +0000203554 00000 n +0000203862 00000 n +0000204015 00000 n +0000204436 00000 n +0000204631 00000 n +0000204829 00000 n +0000205215 00000 n +0000205346 00000 n +0000205853 00000 n +0000206449 00000 n +0000206602 00000 n +0000207023 00000 n +0000207218 00000 n +0000207416 00000 n +0000207802 00000 n +0000208074 00000 n +0000208485 00000 n +0000208512 00000 n +0000208822 00000 n +0000208915 00000 n +0000209402 00000 n +0000209957 00000 n +0000210083 00000 n +0000210236 00000 n +0000210651 00000 n +0000211037 00000 n +0000211235 00000 n +0000211388 00000 n +0000211627 00000 n +0000212171 00000 n +0000213251 00000 n +0000213305 00000 n +0000213359 00000 n +0000213413 00000 n +0000213517 00000 n +0000213613 00000 n +0000213744 00000 n +0000213821 00000 n +0000213922 00000 n +0000214004 00000 n +0000214118 00000 n +0000214201 00000 n +0000214284 00000 n +0000214370 00000 n +0000214473 00000 n +0000214540 00000 n +0000214659 00000 n +0000214742 00000 n +0000214825 00000 n +0000214908 00000 n +0000214986 00000 n +0000215087 00000 n +0000215171 00000 n +0000215250 00000 n +0000215392 00000 n +0000215476 00000 n +0000215560 00000 n +0000215644 00000 n +0000215728 00000 n +0000215807 00000 n +0000215886 00000 n +0000216000 00000 n +0000216079 00000 n +0000216435 00000 n +0000216519 00000 n +0000216603 00000 n +0000216687 00000 n +0000216822 00000 n +0000216906 00000 n +0000216990 00000 n +0000217074 00000 n +0000217173 00000 n +0000217257 00000 n +0000217440 00000 n +0000217524 00000 n +0000217608 00000 n +0000217692 00000 n +0000217776 00000 n +0000217844 00000 n +0000217923 00000 n +0000218259 00000 n +0000218343 00000 n +0000218427 00000 n +0000218495 00000 n +0000218579 00000 n +0000218663 00000 n +0000218742 00000 n +0000218880 00000 n +0000218964 00000 n +0000219048 00000 n +0000219132 00000 n +0000219271 00000 n +0000219355 00000 n +0000219439 00000 n +0000219523 00000 n +0000219607 00000 n +0000219706 00000 n +0000219790 00000 n +0000219869 00000 n +0000219963 00000 n +0000220047 00000 n +0000220126 00000 n +0000220205 00000 n +0000220299 00000 n +0000220378 00000 n +0000220500 00000 n +0000220584 00000 n +0000220668 00000 n +0000220747 00000 n +0000220873 00000 n +0000220957 00000 n +0000221041 00000 n +0000221144 00000 n +0000221223 00000 n +0000221303 00000 n +0000221371 00000 n +0000221439 00000 n +0000221507 00000 n +0000221603 00000 n +0000221671 00000 n +0000221739 00000 n +0000221807 00000 n +0000221899 00000 n +0000221983 00000 n +0000222051 00000 n +0000222119 00000 n +0000222187 00000 n +0000222271 00000 n +0000222354 00000 n +0000222433 00000 n +0000222583 00000 n +0000222667 00000 n +0000222751 00000 n +0000222835 00000 n +0000222919 00000 n +0000222998 00000 n +0000223144 00000 n +0000223228 00000 n +0000223312 00000 n +0000223396 00000 n +0000223482 00000 n +0000223596 00000 n +0000223682 00000 n +0000223778 00000 n +0000223870 00000 n +0000223956 00000 n +0000224042 00000 n +0000224128 00000 n +0000224214 00000 n +0000224300 00000 n +0000224386 00000 n +0000224472 00000 n +0000224558 00000 n +0000224658 00000 n +0000224742 00000 n +0000224828 00000 n +0000224914 00000 n +0000225000 00000 n +0000225100 00000 n +0000225184 00000 n +0000225270 00000 n +0000225356 00000 n +0000225442 00000 n +0000225528 00000 n +0000225614 00000 n +0000225726 00000 n +0000225810 00000 n +0000225894 00000 n +0000225980 00000 n +0000226066 00000 n +0000226152 00000 n +0000226238 00000 n +0000226330 00000 n +0000226416 00000 n +0000226502 00000 n +0000226588 00000 n +0000226674 00000 n +0000226766 00000 n +0000226866 00000 n +0000226950 00000 n +0000227036 00000 n +0000227122 00000 n +0000227208 00000 n +0000227287 00000 n +0000227381 00000 n +0000227524 00000 n +0000227608 00000 n +0000227692 00000 n +0000227787 00000 n +0000227866 00000 n +0000228004 00000 n +0000228088 00000 n +0000228172 00000 n +0000228256 00000 n +0000228324 00000 n +0000228392 00000 n +0000228454 00000 n +0000228522 00000 n +0000228590 00000 n +0000228652 00000 n +0000228720 00000 n +0000228788 00000 n +0000228850 00000 n +0000228918 00000 n +0000228986 00000 n +0000229048 00000 n +0000229116 00000 n +0000229184 00000 n +0000229246 00000 n +0000229314 00000 n +0000229382 00000 n +0000229444 00000 n +0000229863 00000 n +0000229953 00000 n +0000230037 00000 n +0000230121 00000 n +0000230205 00000 n +0000230289 00000 n +0000230368 00000 n +0000230478 00000 n +0000230562 00000 n +0000230641 00000 n +0000230751 00000 n +0000230835 00000 n +0000230919 00000 n +0000230987 00000 n +0000231055 00000 n +0000231135 00000 n +0000231219 00000 n +0000231287 00000 n +0000231355 00000 n +0000231487 00000 n +0000231571 00000 n +0000231655 00000 n +0000231739 00000 n +0000231823 00000 n +0000231891 00000 n +0000231959 00000 n +0000232035 00000 n +0000232103 00000 n +0000232171 00000 n +0000232239 00000 n +0000232502 00000 n +0000232586 00000 n +0000232670 00000 n +0000232770 00000 n +0000232854 00000 n +0000232945 00000 n +0000233029 00000 n +0000233108 00000 n +0000233230 00000 n +0000233314 00000 n +0000233398 00000 n +0000233477 00000 n +0000233619 00000 n +0000233703 00000 n +0000233787 00000 n +0000233871 00000 n +0000233950 00000 n +0000234116 00000 n +0000234200 00000 n +0000234284 00000 n +0000234368 00000 n +0000234452 00000 n +0000234535 00000 n +0000234614 00000 n +0000234724 00000 n +0000234808 00000 n +0000234887 00000 n +0000234993 00000 n +0000235077 00000 n +0000235156 00000 n +0000235278 00000 n +0000235362 00000 n +0000235446 00000 n +0000235525 00000 n +0000235647 00000 n +0000235731 00000 n +0000235815 00000 n +0000235894 00000 n +0000236106 00000 n +0000236190 00000 n +0000236289 00000 n +0000236373 00000 n +0000236452 00000 n +0000236542 00000 n +0000236610 00000 n +0000236678 00000 n +0000236740 00000 n +0000236808 00000 n +0000236876 00000 n +0000236938 00000 n +0000237006 00000 n +0000237074 00000 n +0000237136 00000 n +0000237204 00000 n +0000237272 00000 n +0000237334 00000 n +0000237407 00000 n +0000237486 00000 n +0000237620 00000 n +0000237704 00000 n +0000237788 00000 n +0000237872 00000 n +0000237959 00000 n +0000238038 00000 n +0000238152 00000 n +0000238236 00000 n +0000238335 00000 n +0000238419 00000 n +0000238487 00000 n +0000238555 00000 n +0000238623 00000 n +0000238691 00000 n +0000238759 00000 n +0000238847 00000 n +0000238931 00000 n +0000238999 00000 n +0000239067 00000 n +0000239139 00000 n +0000239207 00000 n +0000239275 00000 n +0000239337 00000 n +0000239468 00000 n +0000239552 00000 n +0000239636 00000 n +0000239720 00000 n +0000239799 00000 n +0000239878 00000 n +0000240044 00000 n +0000240128 00000 n +0000240212 00000 n +0000240296 00000 n +0000240380 00000 n +0000240464 00000 n +0000240543 00000 n +0000240623 00000 n +0000240703 00000 n +0000240783 00000 n +0000240863 00000 n +0000240943 00000 n +0000241023 00000 n +0000241103 00000 n +0000241183 00000 n +0000241263 00000 n +0000241343 00000 n +0000241423 00000 n +0000241503 00000 n +0000241583 00000 n +0000241662 00000 n +0000241752 00000 n +0000241842 00000 n +0000241922 00000 n +0000242012 00000 n +0000242098 00000 n +0000251801 00000 n +0000261429 00000 n +0000261617 00000 n +0000262286 00000 n +0000264185 00000 n +0000266740 00000 n +0000267358 00000 n +0000267385 00000 n +0000267690 00000 n +0000268000 00000 n +0000268027 00000 n +0000268339 00000 n +0000268736 00000 n +0000269036 00000 n +0000269336 00000 n +0000269668 00000 n +0000270013 00000 n +0000283514 00000 n +0000286869 00000 n +0000287538 00000 n +0000291031 00000 n +0000291058 00000 n +0000291363 00000 n +0000291778 00000 n +0000292078 00000 n +0000292378 00000 n +0000292740 00000 n +0000293129 00000 n +0000303693 00000 n +0000305997 00000 n +0000306024 00000 n +0000306336 00000 n +0000306746 00000 n +0000307044 00000 n +0000307344 00000 n +0000307644 00000 n +0000307944 00000 n +0000308276 00000 n +0000308621 00000 n +0000313797 00000 n +0000313824 00000 n +0000314136 00000 n +0000314546 00000 n +0000314846 00000 n +0000315146 00000 n +0000315491 00000 n +0000321872 00000 n +0000322060 00000 n +0000326527 00000 n +0000326554 00000 n +0000326859 00000 n +0000327208 00000 n +0000327605 00000 n +0000327937 00000 n +0000328282 00000 n +0000328582 00000 n +0000328882 00000 n +0000328909 00000 n +0000329214 00000 n +0000329535 00000 n +0000329860 00000 n +0000329953 00000 n +0000330374 00000 n +0000330871 00000 n +0000330926 00000 n +0000330981 00000 n +0000331043 00000 n +0000331098 00000 n +0000331167 00000 n +0000331222 00000 n +0000331277 00000 n +0000331332 00000 n +0000331387 00000 n +0000331442 00000 n +0000331497 00000 n +0000331552 00000 n +0000331607 00000 n +0000331662 00000 n +0000331717 00000 n +0000331772 00000 n +0000331827 00000 n +0000331882 00000 n +0000331937 00000 n +0000331992 00000 n +0000332047 00000 n +0000332102 00000 n +0000332157 00000 n +0000332212 00000 n +0000332305 00000 n +0000332382 00000 n +0000332459 00000 n +0000332536 00000 n +0000332598 00000 n +0000332705 00000 n +0000332767 00000 n +0000332826 00000 n +0000332880 00000 n +0000332939 00000 n +0000332993 00000 n +0000333052 00000 n +0000333106 00000 n +0000333169 00000 n +0000333239 00000 n +0000333302 00000 n +0000333372 00000 n +0000333435 00000 n +0000333505 00000 n +0000333587 00000 n +0000333639 00000 n +0000333691 00000 n +0000333743 00000 n +0000333795 00000 n +0000333847 00000 n +0000333899 00000 n +0000333961 00000 n +0000334013 00000 n +0000334065 00000 n +0000334117 00000 n +0000334169 00000 n +0000334221 00000 n +0000334273 00000 n +0000334325 00000 n +0000334377 00000 n +0000334429 00000 n +0000334491 00000 n +0000334543 00000 n +0000334595 00000 n +0000334647 00000 n +0000334699 00000 n +0000334751 00000 n +0000334803 00000 n +0000334855 00000 n +0000334907 00000 n +0000334959 00000 n +0000335011 00000 n +0000335063 00000 n +0000335115 00000 n +0000335167 00000 n +0000335219 00000 n +0000335271 00000 n +0000335323 00000 n +0000335375 00000 n +0000335427 00000 n +0000335490 00000 n +0000335561 00000 n +0000335624 00000 n +0000335695 00000 n +0000335758 00000 n +0000335829 00000 n +0000335892 00000 n +0000335963 00000 n +0000336026 00000 n +0000336097 00000 n +0000336160 00000 n +0000336230 00000 n +0000336293 00000 n +0000336364 00000 n +0000336427 00000 n +0000336498 00000 n +0000336561 00000 n +0000336632 00000 n +0000336695 00000 n +0000336765 00000 n +0000336828 00000 n +0000336899 00000 n +0000336962 00000 n +0000337033 00000 n +0000337096 00000 n +0000337167 00000 n +0000337230 00000 n +0000337300 00000 n +0000337363 00000 n +0000337434 00000 n +0000337497 00000 n +0000337568 00000 n +0000337631 00000 n +0000337702 00000 n +0000337765 00000 n +0000337835 00000 n +0000337889 00000 n +0000337943 00000 n +0000337997 00000 n +0000338073 00000 n +0000338367 00000 n +0000339544 00000 n +0000341971 00000 n +0000342159 00000 n +0000342622 00000 n +0000343072 00000 n +0000344248 00000 n +0000344324 00000 n +0000344618 00000 n +0000344806 00000 n +0000346848 00000 n +0000348025 00000 n +0000348476 00000 n +0000349170 00000 n +0000352541 00000 n +0000352662 00000 n +0000352714 00000 n +0000352800 00000 n +0000352886 00000 n +0000352972 00000 n +0000353058 00000 n +0000353144 00000 n +0000353230 00000 n +0000353316 00000 n +0000353359 00000 n +0000353402 00000 n +0000353445 00000 n +0000353533 00000 n +0000356881 00000 n +0000356957 00000 n +0000357251 00000 n +0000357339 00000 n +0000360688 00000 n +0000360764 00000 n +0000361058 00000 n +0000361136 00000 n +0000361224 00000 n +0000364571 00000 n +0000364659 00000 n +0000368007 00000 n +0000368078 00000 n +0000368119 00000 n +0000368160 00000 n +trailer +<< +/ID [<027183FA0AF887418502FDB1D211A39D> ] +/Info 1 0 R +/Root 2 0 R +/Size 732 +>> +startxref +368201 +%%EOF diff --git a/src/Static/data/Standards/4/IDDRS-4.50-Police-Roles-and-Responsibilities.docx b/src/Static/data/Standards/4/IDDRS-4.50-Police-Roles-and-Responsibilities.docx new file mode 100644 index 0000000..ef29ce8 Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.50-Police-Roles-and-Responsibilities.docx differ diff --git a/src/Static/data/Standards/4/IDDRS-4.50-Police-Roles-and-Responsibilities.pdf b/src/Static/data/Standards/4/IDDRS-4.50-Police-Roles-and-Responsibilities.pdf new file mode 100644 index 0000000..e89cfdb Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.50-Police-Roles-and-Responsibilities.pdf differ diff --git a/src/Static/data/Standards/4/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.docx b/src/Static/data/Standards/4/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.docx new file mode 100644 index 0000000..410939d Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.docx differ diff --git a/src/Static/data/Standards/4/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.pdf b/src/Static/data/Standards/4/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.pdf new file mode 100644 index 0000000..07b08d8 Binary files /dev/null and b/src/Static/data/Standards/4/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.pdf differ diff --git a/src/Static/data/Standards/5/IDDRS-5.10-Women-Gender-and-DDR.docx b/src/Static/data/Standards/5/IDDRS-5.10-Women-Gender-and-DDR.docx new file mode 100644 index 0000000..e896589 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.10-Women-Gender-and-DDR.docx differ diff --git a/src/Static/data/Standards/5/IDDRS-5.10-Women-Gender-and-DDR.pdf b/src/Static/data/Standards/5/IDDRS-5.10-Women-Gender-and-DDR.pdf new file mode 100644 index 0000000..6f20053 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.10-Women-Gender-and-DDR.pdf differ diff --git a/src/Static/data/Standards/5/IDDRS-5.20-Children-and-DDR.docx b/src/Static/data/Standards/5/IDDRS-5.20-Children-and-DDR.docx new file mode 100644 index 0000000..d63d647 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.20-Children-and-DDR.docx differ diff --git a/src/Static/data/Standards/5/IDDRS-5.20-Children-and-DDR.pdf b/src/Static/data/Standards/5/IDDRS-5.20-Children-and-DDR.pdf new file mode 100644 index 0000000..066ed6e Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.20-Children-and-DDR.pdf differ diff --git a/src/Static/data/Standards/5/IDDRS-5.30-Youth-and-DDR.docx b/src/Static/data/Standards/5/IDDRS-5.30-Youth-and-DDR.docx new file mode 100644 index 0000000..e787722 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.30-Youth-and-DDR.docx differ diff --git a/src/Static/data/Standards/5/IDDRS-5.30-Youth-and-DDR.pdf b/src/Static/data/Standards/5/IDDRS-5.30-Youth-and-DDR.pdf new file mode 100644 index 0000000..924fdc7 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.30-Youth-and-DDR.pdf differ diff --git a/src/Static/data/Standards/5/IDDRS-5.40-Cross-border-Population-Movements.docx b/src/Static/data/Standards/5/IDDRS-5.40-Cross-border-Population-Movements.docx new file mode 100644 index 0000000..5c0604b Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.40-Cross-border-Population-Movements.docx differ diff --git a/src/Static/data/Standards/5/IDDRS-5.40-Cross-border-Population-Movements.pdf b/src/Static/data/Standards/5/IDDRS-5.40-Cross-border-Population-Movements.pdf new file mode 100644 index 0000000..1d45e32 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.40-Cross-border-Population-Movements.pdf differ diff --git a/src/Static/data/Standards/5/IDDRS-5.50-Food-Asssistance-in-DDR.docx b/src/Static/data/Standards/5/IDDRS-5.50-Food-Asssistance-in-DDR.docx new file mode 100644 index 0000000..cde33de Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.50-Food-Asssistance-in-DDR.docx differ diff --git a/src/Static/data/Standards/5/IDDRS-5.50-Food-Asssistance-in-DDR.pdf b/src/Static/data/Standards/5/IDDRS-5.50-Food-Asssistance-in-DDR.pdf new file mode 100644 index 0000000..a4c9c30 --- /dev/null +++ b/src/Static/data/Standards/5/IDDRS-5.50-Food-Asssistance-in-DDR.pdf @@ -0,0 +1,21376 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210518091142+02'00') +/Creator (Adobe InDesign 16.1 \(Windows\)) +/ModDate (D:20230308112743+01'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Names 4 0 R +/Pages 5 0 R +/StructTreeRoot 6 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-05-18T09:11:42+02:00 + 2021-05-18T09:11:45+02:00 + Adobe InDesign 16.1 (Windows) + 2023-03-08T11:27:43+01:00 + uuid:ad920d3c-bc9c-41af-8aa2-1e78b05aada0 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:28ec99af-8e45-284a-9e5a-91e501668327 + proof:pdf + + xmp.iid:8e5d531e-5228-3141-9780-d70ed1bc8ac8 + xmp.did:be7bc462-6398-084d-94e9-db2906d2287d + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 16.1 (Windows) + / + 2021-05-18T09:11:42+02:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Dests 7 0 R +>> +endobj +5 0 obj +<< +/Count 33 +/Kids [8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R +24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R +40 0 R] +/Type /Pages +>> +endobj +6 0 obj +<< +/ClassMap 41 0 R +/K 42 0 R +/ParentTree 43 0 R +/ParentTreeNextKey 30 +/RoleMap 44 0 R +/Type /StructTreeRoot +>> +endobj +7 0 obj +<< +/Names [() [11 0 R /Fit]] +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 45 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 7 +/PageItemUIDToLocationDataMap << +/0 [407.0 7.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 12.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 2.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 10.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 9.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 11.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ColorSpace << +/CS0 46 0 R +>> +/ExtGState << +/GS0 47 0 R +/GS1 48 0 R +/GS2 49 0 R +>> +/Font << +/F0 50 0 R +/F1 51 0 R +/F2 52 0 R +/F3 53 0 R +/F4 54 0 R +/F5 55 0 R +/F6 56 0 R +/F7 57 0 R +>> +/XObject << +/Fm0 58 0 R +/Fm1 59 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 60 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1730 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [407.0 1.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 7.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 6.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 5.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 4.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 3.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 2.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [581.0 11.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/8 [603.0 10.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/9 [625.0 9.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/10 [647.0 8.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/11 [1982.0 0.0 2.0 -501.343 -340.095 -84.6496 260.849 1.0 0.0 0.0 1.0 -500.843 -339.595] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/TT0 53 0 R +/TT1 52 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 63 0 R +/Fm1 64 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [255.0 1.0 2.0 85.0394 -340.157 501.732 296.22 1.0 0.0 0.0 1.0 293.386 -7.08661] +/1 [349.0 3.0 4.0 0.0 371.339 615.118 371.339 1.0 0.0 0.0 1.0 0.0 371.339] +/2 [423.0 13.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [469.0 11.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [492.0 9.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/5 [500.0 12.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/6 [524.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [525.0 10.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/8 [3554.0 7.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 6.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 5.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 4.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 77 0 R +/T1_2 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 80 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 20.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [630.0 5.0 4.0 -85.0394 -396.85 -85.0394 396.85 1.0 0.0 0.0 1.0 -85.0394 0.0] +/7 [671.0 2.0 2.0 -501.732 -340.157 -85.0394 306.142 1.0 0.0 0.0 1.0 -293.386 -7.08661] +/8 [1344.0 3.0 2.0 85.0394 -340.157 501.732 312.52 1.0 0.0 0.0 1.0 85.5394 86.0118] +/9 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [10077.0 4.0 2.0 659.055 -131.811 985.039 -29.9882 1.0 0.0 0.0 1.0 822.331 -120.791] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/TT1 81 0 R +/T1_0 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 83 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 81 0 R +/TT1 75 0 R +/T1_0 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 2 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 84 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 19 +/PageItemUIDToLocationDataMap << +/0 [423.0 28.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 26.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 24.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 27.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 23.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 25.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1395.0 0.0 2.0 -501.732 -340.157 -85.0394 -283.465 1.0 0.0 0.0 1.0 -501.232 -288.634] +/7 [3554.0 22.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 21.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 20.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 19.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [4692.0 1.0 2.0 85.0394 135.118 501.732 262.677 1.0 0.0 0.0 1.0 85.5394 -339.657] +/12 [6426.0 2.0 2.0 654.803 -265.512 980.787 -169.417 1.0 0.0 0.0 1.0 818.079 -260.22] +/13 [6450.0 3.0 2.0 -1073.39 -204.094 -747.402 -141.26 1.0 0.0 0.0 1.0 -1044.76 -176.147] +/14 [8301.0 4.0 2.0 -1062.99 -51.9685 -646.299 430.561 1.0 0.0 0.0 1.0 -1062.49 -51.4685] +/15 [10104.0 5.0 2.0 -786.614 -245.906 -628.087 -75.815 1.0 0.0 0.0 1.0 -667.559 -206.22] +/16 [10300.0 6.0 2.0 -501.676 -242.856 -84.9827 274.016 1.0 0.0 0.0 1.0 -293.329 56.6716] +/17 [10336.0 7.0 2.0 -502.022 -269.659 -85.5811 -242.84 1.0 0.0 0.0 1.0 -318.306 -261.63] +/18 [10376.0 8.0 2.0 85.1197 -340.135 501.813 127.559 1.0 0.0 0.0 1.0 293.466 -40.6073] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 85 0 R +/GS1 86 0 R +/GS2 87 0 R +>> +/Font << +/F0 76 0 R +/F1 75 0 R +/F2 88 0 R +/F3 89 0 R +/F4 90 0 R +>> +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 92 0 R +/GS1 93 0 R +/GS2 94 0 R +>> +/Font << +/F0 76 0 R +/F1 75 0 R +/F2 88 0 R +/F3 89 0 R +/F4 90 0 R +>> +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 95 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 16 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 20.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1489.0 0.0 2.0 85.0394 -340.157 501.732 284.882 1.0 0.0 0.0 1.0 85.5394 160.657] +/7 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [4441.0 1.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 175.681] +/12 [6610.0 2.0 2.0 -637.795 -461.575 -221.102 -441.449 1.0 0.0 0.0 1.0 -557.008 -448.11] +/13 [8342.0 3.0 2.0 -1229.29 -74.9026 -903.307 48.189 1.0 0.0 0.0 1.0 -1200.66 -46.9553] +/14 [9367.0 4.0 2.0 692.598 -299.055 1109.29 -25.3258 1.0 0.0 0.0 1.0 693.098 -298.555] +/15 [10440.0 5.0 2.0 289.03 -24.8031 615.014 51.3472 1.0 0.0 0.0 1.0 452.306 -39.4559] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 88 0 R +/T1_2 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 96 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 78 0 R +/T1_2 89 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 97 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1516.0 0.0 2.0 -501.732 -340.157 -85.0394 318.898 1.0 0.0 0.0 1.0 -501.232 -202.65] +/7 [1583.0 1.0 2.0 85.0394 -340.157 501.732 318.898 1.0 0.0 0.0 1.0 85.5394 78.9252] +/8 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [6614.0 2.0 2.0 -1076.22 -18.8976 -750.236 83.8685 1.0 0.0 0.0 1.0 -1047.59 17.585] +/13 [9431.0 3.0 2.0 -1082.83 -291.969 -756.85 -215.796 1.0 0.0 0.0 1.0 -1054.2 -264.021] +/14 [9461.0 4.0 2.0 680.315 33.0709 1006.3 129.165 1.0 0.0 0.0 1.0 843.591 38.3622] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 78 0 R +/T1_2 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 98 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 99 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 20 +/PageItemUIDToLocationDataMap << +/0 [423.0 29.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 27.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 25.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 28.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 24.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 26.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1622.0 0.0 2.0 -501.732 -340.157 -85.0394 297.638 1.0 0.0 0.0 1.0 -501.232 -237.043] +/7 [1635.0 1.0 2.0 85.0394 -340.157 501.732 -267.874 1.0 0.0 0.0 1.0 85.5394 236.484] +/8 [3459.0 2.0 2.0 619.748 340.455 959.192 486.156 1.0 0.0 0.0 1.0 783.024 413.306] +/9 [3554.0 23.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 22.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 21.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 20.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [4997.0 3.0 2.0 713.197 -133.228 1129.89 289.885 1.0 0.0 0.0 1.0 921.543 166.299] +/14 [5253.0 4.0 2.0 -1177.51 -185.102 -761.071 -158.283 1.0 0.0 0.0 1.0 -993.795 -177.073] +/15 [5762.0 5.0 2.0 704.882 -453.071 885.165 -187.748 1.0 0.0 0.0 1.0 823.937 -413.386] +/16 [6684.0 6.0 2.0 627.874 -168.661 953.858 -72.5669 1.0 0.0 0.0 1.0 791.15 -163.37] +/17 [8398.0 7.0 2.0 633.543 -22.6772 959.528 79.3701 1.0 0.0 0.0 1.0 796.819 -35.3061] +/18 [9724.0 8.0 2.0 -973.701 38.9764 -647.717 129.014 1.0 0.0 0.0 1.0 -945.071 62.7305] +/19 [10471.0 9.0 2.0 85.0394 -261.427 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -260.927] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 88 0 R +/T1_2 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 100 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 101 0 R +/GS1 102 0 R +/GS2 103 0 R +>> +/Font << +/F0 76 0 R +/F1 75 0 R +/F2 88 0 R +/F3 90 0 R +/F4 89 0 R +>> +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 104 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 21 +/PageItemUIDToLocationDataMap << +/0 [423.0 30.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 28.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 26.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 29.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 25.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 27.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1664.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [1699.0 1.0 2.0 85.0394 -340.157 501.732 311.102 1.0 0.0 0.0 1.0 85.5394 -339.657] +/8 [3483.0 2.0 2.0 634.961 -314.646 974.405 -168.945 1.0 0.0 0.0 1.0 798.236 -241.795] +/9 [3554.0 24.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 23.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 22.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 21.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [5037.0 3.0 2.0 -1069.23 -53.2913 -652.535 287.575 1.0 0.0 0.0 1.0 -860.882 246.236] +/14 [5282.0 4.0 2.0 -1047.69 -121.323 -631.244 -94.5039 1.0 0.0 0.0 1.0 -863.969 -113.294] +/15 [5307.0 5.0 2.0 677.48 -78.3494 1094.17 328.819 1.0 0.0 0.0 1.0 885.827 221.178] +/16 [5344.0 6.0 2.0 833.638 -125.858 1250.08 -99.0394 1.0 0.0 0.0 1.0 1017.35 -117.829] +/17 [5918.0 7.0 2.0 -1158.43 -426.614 -741.732 -19.8425 1.0 0.0 0.0 1.0 -1157.93 -426.114] +/18 [6714.0 8.0 2.0 -1077.17 -183.307 -660.472 173.7 1.0 0.0 0.0 1.0 -1076.67 -182.807] +/19 [8374.0 9.0 2.0 -895.748 -513.79 -569.764 -411.024 1.0 0.0 0.0 1.0 -867.118 -477.307] +/20 [9799.0 10.0 2.0 671.811 -120.472 1088.5 17.9582 1.0 0.0 0.0 1.0 672.311 -119.972] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 88 0 R +/T1_2 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 105 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 78 0 R +/T1_2 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 106 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 19 +/PageItemUIDToLocationDataMap << +/0 [423.0 29.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 27.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 25.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 28.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 24.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 26.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1708.0 1.0 2.0 -501.732 -340.157 -85.0394 295.512 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [3554.0 23.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 22.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 21.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 20.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [5150.0 2.0 2.0 643.465 -343.843 1060.16 287.612 1.0 0.0 0.0 1.0 851.811 -44.315] +/12 [6758.0 3.0 2.0 -1008.19 71.3386 -682.205 174.105 1.0 0.0 0.0 1.0 -979.559 107.821] +/13 [6785.0 4.0 2.0 661.417 60.0 987.402 185.907 1.0 0.0 0.0 1.0 824.693 65.2913] +/14 [8496.0 5.0 2.0 -1096.06 -331.181 -679.37 132.992 1.0 0.0 0.0 1.0 -887.717 -31.6535] +/15 [8532.0 6.0 2.0 -1113.07 -385.039 -696.63 -358.22 1.0 0.0 0.0 1.0 -929.354 -377.01] +/16 [9835.0 7.0 2.0 -958.11 -149.528 -632.126 -23.6201 1.0 0.0 0.0 1.0 -929.48 -125.773] +/17 [9913.0 8.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -330.681] +/18 [10531.0 9.0 2.0 -614.943 20.9642 -288.959 139.606 1.0 0.0 0.0 1.0 -586.313 57.4469] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +/T1_1 89 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 107 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +/T1_1 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 108 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9928 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 12.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [9947.0 0.0 2.0 -501.732 -340.157 -85.0394 316.063 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [9952.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 109 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9929 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 16 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9939 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 16 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 25.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [9960.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [9964.0 1.0 2.0 -994.961 -155.197 -668.976 -29.2894 1.0 0.0 0.0 1.0 -966.331 -131.443] +/12 [10276.0 2.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -336.823] +/13 [10571.0 3.0 0.0 -510.0 -3.5433 -77.2441 218.268 1.0 0.0 0.0 1.0 9.2126 -8956.77] +/14 [10580.0 5.0 2.0 -501.55 2.41496 -85.1087 29.2339 1.0 0.0 0.0 1.0 -317.833 10.444] +/15 [10996.0 4.0 4.0 -510.0 25.6234 -77.2441 222.408 0.567917 0.0 0.0 0.567917 -510.0 25.6234] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 118 0 R +/GS1 119 0 R +>> +/Font << +/TT0 120 0 R +/T1_0 121 0 R +/T1_1 122 0 R +/T1_2 123 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 124 0 R +/Im0 125 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 126 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9940 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +/T1_1 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 18 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 127 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10290 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 22.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 20.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 18.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 21.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 17.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 19.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10292.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10646.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -336.823] +/12 [10654.0 2.0 2.0 288.529 -96.378 614.513 -34.4329 1.0 0.0 0.0 1.0 451.805 -155.049] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +/T1_1 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 128 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10291 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 88 0 R +/T1_2 89 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 20 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 129 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10689 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 16 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 20.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10691.0 0.0 2.0 -501.732 -340.157 -85.0394 311.811 1.0 0.0 0.0 1.0 -501.232 -336.823] +/11 [10698.0 1.0 2.0 85.0394 -340.157 501.732 153.78 1.0 0.0 0.0 1.0 85.5394 -339.657] +/12 [10706.0 2.0 2.0 288.633 -79.8253 614.617 -17.8802 1.0 0.0 0.0 1.0 451.909 -138.496] +/13 [10731.0 3.0 2.0 85.0394 184.283 501.732 305.433 1.0 0.0 0.0 1.0 293.386 483.81] +/14 [10770.0 4.0 2.0 85.1654 157.323 501.606 184.142 1.0 0.0 0.0 1.0 268.882 165.352] +/15 [10814.0 5.0 2.0 85.1654 311.811 501.606 325.984 1.0 0.0 0.0 1.0 121.89 320.669] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 78 0 R +/T1_2 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 21 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +32 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 130 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10690 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 131 0 R +/GS1 132 0 R +/GS2 133 0 R +>> +/Font << +/F0 76 0 R +/F1 75 0 R +/F2 88 0 R +/F3 78 0 R +/F4 89 0 R +>> +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 22 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +33 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 134 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10827 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 12.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10829.0 0.0 2.0 -501.732 -340.157 -85.0394 269.291 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10838.0 1.0 2.0 85.0394 -340.157 501.732 311.811 1.0 0.0 0.0 1.0 85.5394 -336.114] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 23 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +34 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 135 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10828 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 24 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +35 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 136 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10857 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 12.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10870.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10877.0 1.0 2.0 85.0394 -340.157 501.732 313.228 1.0 0.0 0.0 1.0 85.5394 -339.657] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +/T1_1 88 0 R +/T1_2 78 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 25 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +36 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 137 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10858 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 26 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +37 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 138 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10868 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 12.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10884.0 0.0 2.0 -501.732 -340.157 -85.0394 273.543 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10892.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/C2_0 90 0 R +/T1_0 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 27 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +38 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 139 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10869 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/StructParents 28 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +39 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 140 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10910 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [423.0 20.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 18.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 16.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 19.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 15.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 17.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 14.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 13.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 12.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 11.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10912.0 0.0 2.0 -501.844 -340.157 -85.0394 -186.519 1.0 0.0 0.0 1.0 -426.844 -261.519] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/TT0 75 0 R +/T1_0 76 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 82 0 R +>> +>> +/Rotate 0 +/StructParents 29 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +40 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 141 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10911 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 73 0 R +>> +/Font << +/T1_0 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 79 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +41 0 obj +<< +/A4 << +/BaselineShift 3.66299 +/LineHeight 11.0 +/O /Layout +>> +/A5 << +/LineHeight 0.0 +/O /Layout +>> +/A6 << +/LineHeight 12.5 +/O /Layout +>> +/Pa1 << +/LineHeight 16.0 +/O /Layout +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +>> +/Pa3 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +/TextIndent 22.0 +>> +/Pa4 << +/LineHeight 11.0 +/O /Layout +/SpaceBefore 8.0 +/TextAlign /Justify +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa5 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa6 << +/LineHeight 12.0 +/O /Layout +>> +/Pa7 << +/LineHeight 11.0 +/O /Layout +>> +/Pa8 << +/LineHeight 10.75 +/O /Layout +>> +/Pa9 << +/LineHeight 10.75 +/O /Layout +>> +/Pa10 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa11 << +/LineHeight 12.0 +/O /Layout +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa12 << +/LineHeight 12.0 +/O /Layout +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa13 << +/LineHeight 16.0 +/O /Layout +>> +/Pa14 << +/LineHeight 11.0 +/O /Layout +/SpaceBefore 8.0 +/TextAlign /Justify +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa15 << +/LineHeight 11.0 +/O /Layout +/TextAlign /Justify +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa16 << +/LineHeight 11.0 +/O /Layout +/SpaceAfter 8.0 +/TextAlign /Justify +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa18 << +/LineHeight 10.75 +/O /Layout +/EndIndent 22.0 +/TextIndent -14.0 +/StartIndent 39.0 +>> +/Pa19 << +/LineHeight 10.75 +/O /Layout +/EndIndent 22.0 +/StartIndent 22.0 +>> +/Pa22 << +/LineHeight 8.75 +/O /Layout +/TextAlign /Justify +/TextIndent -22.0 +/StartIndent 22.0 +>> +>> +endobj +42 0 obj +<< +/K 142 0 R +/Lang (de-DE) +/P 6 0 R +/S /Document +>> +endobj +43 0 obj +<< +/Nums [0 143 0 R 1 144 0 R 2 145 0 R 3 146 0 R 4 147 0 R 5 148 0 R 6 149 0 R 7 150 0 R +8 151 0 R 9 152 0 R 10 153 0 R 11 154 0 R 12 155 0 R 13 156 0 R 14 157 0 R 15 158 0 R +16 159 0 R 17 160 0 R 18 161 0 R 19 162 0 R 20 163 0 R 21 164 0 R 22 165 0 R 23 166 0 R +24 167 0 R 25 168 0 R 26 169 0 R 27 170 0 R 28 171 0 R 29 172 0 R] +>> +endobj +44 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Fu#C3#9Fzeile /P +/Kapitel-Head /P +/Endnote_1._Abs /P +/Kastenlauftext /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +/NormalParagraphStyle /P +/Tab._Lauftext_light_ /P +/Tab._Versal_bold_sch /P +/Tab._Versal_bold_wei /P +>> +endobj +45 0 obj +<< +/Filter /FlateDecode +/Length 2805 +>> +stream +xÚí][oÜ6~÷¯àã!Prxx'híL°»É"MÛ‡`ÜñØëÖ§¶Ó´ûëçPÒHãÛ¤«Ôi¢Ç: åâ§=«“ ÍA¼Æ©}jŸÚ§ö»Ú™†à+4:ºD‘®ëù´ÌA`·KaÆ\\ÿL +ñ×—ByŒ:æT„²AGa›Ä ô …TÉ&xIÑ‹¢ô‘´ÞKe#œÕ|µ¤p|!#¼£À½‡Üº¦Ö#q!3ü(ÑÂOR9XI K©GVWCû¯ÒXÉWBªl@on“Ñ%?ÙýÔ>µOít h‹î†Ã‹9°C‡WrØvxþv‡—ª+U--•&¡XÈ\`%%ïÊq:E…Î7ÜÅ‘/$ϥ˧TÏÀZ*KŽÍ:öqH»TßpIàŠOµpÈÝÖÒF’ÒBK®2Â2Q¹`a%É=*’GEDS‘`ßÈôL…)õ}§EÔÅÙIu¦ö©ýÓºž¸íz¬ åF®Unu= gàÈÜ)ÙŠÁÀߤ²‰ˆÒäI—²´É—ƒ÷”Š-¥Š›$ŠZ3¬ét×÷¹hSü”>MíSûÔ>µ1$D{#†$ ÜVúê¶ÓWò}1ÄSi®¥ 5ExÎDô©ôŽN×Ò8©­–ju›áRZ„Óµô–2Q–YàmÎ蜕tÄëAZ‰µ+.M˜NíSûÔ>ñ´±±sž< ‰< é’Ó1  +‹Î±¸Ö…«š¦TQ*k¸¬w>À¿d¤_YòÌD¿zb,U¶™à8 +oh†Ñf®$¼™~FüáʪÅÄ-®·"¨0Ôt·ÅÀ+ŠÎ+¦}.輓g3L6ƒ’ÊEªë0ò‘ÐìÚÊ4Ù:EnýʧAÑQ´ÜÅày‡Íp¨GuZƒð¾dnN‘•^öº]I…æF02ò|¢ |Ükˆð«DäÞ|!kØ¢swîð©TžXCÅëHkÎd wà ‰+ÌA’4Ë´å^¾Ïi¯u¢X`Ÿ Ú PàX*OCHhœÒX/°ëÞˆ_±%vx»ØŽ3wóf8â9Mfö‡Á,÷úSë!ô,Ñ ÑdGY'Fø·×[caS«Ó“­Q.ùø©TΓ¸Ü(€h¦ðùÑ?Ö¤Zt:@éÚ¥`waé n Ó˜³;£Ù—Àj’˜àG™Û&ôðÍÐIz˜Ž·4Ë¢òmɺ¾”¡—-7½l5ìKêÝõhü5+‘ß$\½X`7~Ãe÷WµÄÝ´zžáŸ2ÁáÐ%^pÔ[óàÔáª~öL"üþp¤;kd4¦Š÷ʸ>´H¡k¥îñK³7‚ÆE§mi«·CkŒŒeȼ†£ÎM¨î„;V +§›„ÕÑ,„Koå ˆN¯Æ8⦩x¶“Gü„îuè]¶ lŒÓ9øAzÛøÕÖ|6¦Ó!±!ú¼mFX¸·›àøaÌ·Ø%Í Æ­%ÅŒ¬'[0¼¡›%ô^qHã`T“Sšíis œˆcâhzð²Ùå‰Dq(®xAõ·ü{݊¼¨‹–W³Xq@Kˆ.~-Þñj憨ýdªÂºe\Xk’Ó.wƒ²7Hüìûàg&ç]Ë~ö÷¥qï¨8móZ¬å%ÃõûÀün@äSÏüÜ–ùÅ)+ÞÊ€î‚0¢é3x®ÀkšŒ^µnÓn*~ÇK41õ|%3u•™Ç|g-eÐй=J”TeÂoÛ¥~ÖCºß¥H;bzrS<˜•DP`Iï :o™€ZŠ„Ðò°q`Ÿi[KžÜãüÒ6GÁ™s-prþM1Ó\£sï÷¨¾ÏÙÙбÝ”ÇÏl3§SêÛY¹3du\,va²pα[¦ÑÄïÑ;•7á¬2_½IÞ…ãÐ$‘˜»ªîè‹^Mª&-è8ß± )±¦*5õåoW7Àë°*[gInš4¯& +ar¦÷ºV– +p| [­t6Ùj€gŒÛ/ÜR#âíÎñ§?§M!Pï‘J€uÇoõÇ8ÁÝdO*p´ŽÍDø€R$›?çÜì|㹯hZæÏgX]ÑÁaº…aÝHçšz¢ò<Ï÷¾Üß}Œ¥ù¿•Ú—öÕæ­}uãµ}#´uAhï¸<Ú ¿ +HKiïCóú{óÒ¾\ÈF O:‡‰Þ\7¦·¾÷^¬$ZMoŸ`Ö<74->Á"ðVìKDÍy—ÑT¡¦H®Ùö³®SoV×°«y–5rbm4çßY{vïÚÂú„eRPѤ\$ê=méíõkb—qÌ›q´4Ž>] +endobj +47 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +48 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 0 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +49 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +50 0 obj +<< +/BaseFont /GGTKBH+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 173 0 R +/LastChar 53 +/Subtype /Type1 +/ToUnicode 174 0 R +/Type /Font +/Widths [233 0 426 0 0 0 0 426] +>> +endobj +51 0 obj +<< +/BaseFont /JFJCRB+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 175 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 176 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 612 0 0 666 0 487 0 0 0 0 0 0 0 0 0 +0 0 538 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 482 0 448 564 501 0 0 0 234 0 0 0 0 555 549 +0 0 0 396 331] +>> +endobj +52 0 obj +<< +/BaseFont /VNJRDD+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 177 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 178 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 333 250 0 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 0 0 709 774 611 556 763 0 337 0 0 0 0 831 0 +604 0 668 0 613 0 722 1000 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 0 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556] +>> +endobj +53 0 obj +<< +/BaseFont /BJEBJR+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 179 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 180 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 0 218 0 +452 348 462 434 452 434 462 462 452 442 236 0 0 0 0 0 +0 696 0 0 726 536 500 726 0 348 0 0 0 884 744 0 +556 0 660 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 0 302 264 0 312 800 556 490 +528 0 378 396 340 546 508 0 462 518] +>> +endobj +54 0 obj +<< +/BaseFont /QFXXLN+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 181 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 182 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 328 0 0 +0 0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 452 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 598 551 0 0 0 486] +>> +endobj +55 0 obj +<< +/BaseFont /RJMDZL+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 183 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 184 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 555 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +56 0 obj +<< +/BaseFont /HCKQPF+Wingdings-Regular +/DescendantFonts 185 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 186 0 R +/Type /Font +>> +endobj +57 0 obj +<< +/BaseFont /FZLENJ+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 187 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 188 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 0 536 0 536 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 683 0 509 0 0 0 0 0 0 0 0 0 +0 0 569 519 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 449 581 516 0 0 0 256 0 0 0 848 572 564 +585 0 356 417 351] +>> +endobj +58 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12093 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 46 0 R +>> +/ExtGState << +/GS0 61 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—IŽ\ÉD÷uŠüó°ÖBЩ{Q%@Íûzf™Y$°2âÇàƒ¹¹Eº×ìWºwjú¿^ÿùñÇ?ÿ•®?~¤;¥z=ÖÝù8J½GÞ×Êéži_ÿûã?üƒ•?~²³\×Ïÿýøß•¯Ä¿|õ:îVK¿J_wIu\?¾>ôéë#ç»æëQò½8(·»†a½æ纓Íc^?>=ÛõÈ©ß™Gi÷l›‰Úî½øÑë][r÷îE{V¿kíLrYµß²~`ÌìZÝ÷ݳÏÁ¼Þ´-ïÍeÜ‘±0á3&rkeÕhwòí©žmóžeÅ®q—zí{î¢ù†såªóîKãÆ«§»ŽîÕµ–zõy¯,¹a÷y|ÏÅ{qó"Ú7Fh S*šH}úÞÕ|üæ@Å“5»ºrõá3¾<‘ç¾:w­qiXÙD€‡j8p¦qåÌg¿'Ê]buëY£±ûõ<«Õ;Mgd·»å¡‰îÓê=ÇÐòÕ·‡­. k¶ÇLT¬â¶Þ›¿Ë‘–"kÚ ê&õ,×w&f’1垸Æò¼›‡™Ìž!Ëç&Ã^^†ò´îŒí‡äʉrá°@Æ™©”ë“ Vnöç/ÛÀMIÊÚÖ÷Òòhlœ¿µºËxr;S¾Ênln€…H•éŒj5¾”vUÆËêÆr +Ià:>—DVì $e\Òrr¼®¼î]¶òPú·ÃŠ‹EÔ…;,®ƒa£Ö\Žš²¤eûÍ/–Pùiø³dú k`á  +¨€n‚Ó"çk9 ,ÍÈJÇf¾Ï@È7ø ä)cµg +X§'ÕÊŽªÒöŸàZ0ßë<éÛ#¾¤à(A"ÙgrÀkëþ›U)¬+ÏhGæÅl:‰ÙbÇäÖÏWÊ8«Öou `{_¶Þp=©KŸÁ©j#óÌO‡F%Â;ä}oçæ m‘ ãr‚já½âvrAìŒþ _숪óeF±P‘xY ¹ñJjÀe¢-ç\ŠfÇ ÛR¾äˆ]rs…¯øžB%‹1·c—f´Åé®"{’  ¢ªØIÆ_ëzJ4n}öq1Ü0š51|$Ž§´w5„ê1,²ˆ ¨Çúv€ôQö¸Ø! 51ÝÊ…ºlhÕióŽ¶B.5‚–ŠMƒf&$n!´½”cqã8|fz0Ù%MJ†ÉNâî®W©)ñ¹ê5¤— °N‘&¨N ³XÌkqŒÕij¿.B¾BÈùá1¾µ (·B«b5™qy™“Dì ¦Y÷ãð¾JBòz*eŽ2J +ÆAzŽÅb3‘ëòŒR©#u«Ñ=Rˆtéñ®iVÁ `è8úQÖ·}D?’Öã®–DEíʯ¥ùR»´ºÜ@NÑóÙÉ5Ãás;).Œñjù®,›~Ô–+$ž(õ«BI!o¿é [¼¶r|4>†;“Ÿh$DôMßZzR47¢hdœ£Û{}&Žª‚éQ“Ô‰¢>É%.Ñ7žÊGõš¸~Eb@H̪Úâ{o~ÝHhµ•gÞMòDB°“–ÀÔ¬ºúÅOÕ°˜H¥J JÖKÄI÷Z².(U*Y.ø£rJ96¦ñ„àiÉ,‡(Ú~ºŽÈ˜(Iñ”¸²(XÙA¤!S—Ô¾¥Ç%Ó$sª»ur yNHÓo9X4²DLªß^ù­àßrñùz)5ÅS¿ô>Ç#Rdç rY5ŸÅæe¾Þ…¿ÅM4Ü~%¤¾^„ +à§ðíç’I€å¦Zʳ–^Ôc¡àÞÖˆUí‰BY¯§µ™{0þnù ¨.†ª¾H©Ø/ †0Ê/R¥IÆËïIÃ::[8l=ÔCs’Ï>£áŠÆåŠã ü×õj2–·õ—ÖË®³d³_LwÎu?`®ÁÆåݧ©ÎeCOŸÍ[ñm›žu…\+ô[Ô¯Cš¡ÒÙ¼=U‹ÓˆΑÏÙLÔøá{é›VËþI‹H2t¿#¸nb·}©·ÃGVWGˆª^$Ì“]‡œ±àòØ=Ü£ù-tjeÜ_Ý…¥\¾¢ØÂ-¬&H‹tˆ`£º‰Ò’x¶q +ã!+çòMÎbZ@bE+‘®Á HM½®ºã÷¨ûQ‹,ÓîK¡ŒæšÒ¢rÐ’·$çñ{øMµÆßùZÈ`#ƒZ†loØWÉÜÙrƒ*gl+˜¡ZG‘i‡!ó\©ñj_0µ#GŠ¸(%”ÏÌ |U¤©µÞÀïe¿ïŒ°)¨Îê;6åòÖ…M‹M¤:ÔÞ*&N¤"=.®ág#](‰d§qL’²ê{ i,÷ä§l${rT l° >¿:*eîYÒë_÷¨Œ6]Ôeþ+–KJ¥Ê"¥ÖÃu#¡l™À£ÑrÊ`´•…áÖVÙ&ähʈðÁ°L¡©j¿´.¿Îù³Aá´‡À«*(,ž8 àrÅh ¹9¥Ø9>¨*÷(lQó=©'²k’¸°^D×ýØ RK¹` ñ*¨ˆ6Ë-ªcQOZ&¡‡NƵ™˜qm ‘–4žž³(té­lMî®[ò$´ÏQUëü°ŒâÀa,Y¼ÅÅØ–× 9k¹ IxþоCÞ¯/êÚÐKÿØô,Q6ÅÓ¿› •Lq3Û§ SþìmXº +Ž9ö?Àܼì«ä,‚[ŠÒø!~«.‘3\NÔb,üÎ6ÿ|Ž….e€)Š†”@²/§t£ÏÙÝf5 ô4:¶P­²8£SÖorÓ|fð»²;iðÂ|Ì… Iäw¯ëÉ·Á+[·Ä©MÆ]@K‚K.9•¾êð…›~×H䌘¯ 2ðË`>S„ 9…ÿSb„G–þR›NĨUÎÈg¨ˆ‚ÍûCó1g|EÈB¾ªoSѵiB§sæâÄ…0PñD‘áÀ‚EMºûÕˆäF(Ú¹Å1í X@}³bšA,VDú[]”ÙP.ŠÚPö¨¹b'U"ô.VkJ9@$+W N² +«= +‘êT¶(‘ó»F%ÀQ„³8£%öj„ª +™ïâZHB’s%ï—äw5í %?f.#xe…*ZØ®†¯¼QîRÏ›Y¸ÍÑ6lœá}Gæh~4„MyPˆo®)ÀT÷]͵=„õÇnH¤pßêš”²!!µñè +$hRIY •¦¡î÷塾܊\î?ã…Vð3Su˜,„ﶦaÇ3d_©—¾ì59pxq°ú1X³¶™”Šr¦,jJfì°.k©˜ß¥)dª_·Y‘l^ÐBq ¸gÐñ'…u%¶+-’ßxõ<b'Ìf ¸ªÏf=ö|”jíâOçá:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½K¤Ÿw[y¹î5;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re‡zó6Åñ–÷¸ûjB-¾Z-‰„Mð#¿™û×’L¼¤uý¹?#íýĭתr¸œ˜¥ç“2¿ê›iU£fÖ÷”ΚǦeÌw‡R&«¶’vLuMÀÃÍ›$Î Ö ÔêŒqAq³aýÕzÏ¡uØŽP0Ó×ë+ êù!â¿Ã›È7†Ð9ãî°zè7‡ØòÜ·æ>ƒMé_Ã'õ”~=í^·r2o×óIeØÖîH€–‘Ͻq¡ç«›HéâüS å_5 @ÞÚ÷&õBV§i#¦‚· g˜,0"2t’Ç]é]1p¶˜Ð¸È20R‚Ãâ‹ «J<¯IÝÒüQLzšœRœF%±4’óà±.Šïqtð¹eY· IH0«‰êb$&´K-À%"ßì©* +ãÌ9PMŒÇ™Ö>øžnÈCÖÌäMh jó&…]´’ + Q3B›2™W`ÏâÎÞKhË—P`ZíÞ”áHÍ]ŽãÇ­75àVî‹ÚÕ®ôgÇ;¾’öHøDCý†Ìˆ$¬†Å‹5‰3A3Î[OƒÄW‡9Ô'qo:Bf2®¯°½4—ð¢ÁðÍ t£Êù9$úÏb™Ù™y¸¯MLÀwãx#÷íÔ‡·cc‰ïIÀidƒ 3k±œ¾ÊNke®å¾;٦ߢQ­W.èeIvç8v®ŸrI›š@¥ÜêK™@Ôöš”dõÖ¹Äd„ñЗìÇTô¬„0¢!;ú_šØaèÈàQB£ƒ©ï%B)æŠú2qU¤ÒŒx.à ð´Ä£zô§N0pdh 3E6þ[Š»{TCe”Pž¡þHž`Α$ CeIˆCñvVܧœSÜ&Z0Y~p‘ðÍ ¡¹&àõtß’øì¬"÷¯} ÄÛ¹ônM9솾d™T„HÒ|!œ©¼©B¯tOÒJÜ…U\î9ï´é# +j .WÝ­èRÉ8ÓÝŠõ»m +¢‘€3¶šéJ*"‰Y¹.æ°qª„‘ʶçíëÜEw0 £„O\f°ÁaTQzØ´‹‡‰ž’ò…_ ¡x5Ë”û Û +ëiâ [@ ³6&²# †"ýæ 3ÂyüæÐŽWv‰Ä~dwJ–a@Ê°ØÓÊ È}‰t—åZÃK‡Ž¡Èä)SXVÎ+S/°¨—‰d{šx™€·@±×^ìƒ]g’tsþ—€ðq^d÷ßÔ1›U=—ehzö ’›ÉEJ/J;\Òù ”ÙyR—¾ƒšþŽËU¬¼UßK°Y›o +f-ª9G·´`ÞÚ6g„ «V€{æAwHGã›(c h[H°&b êØŒwÑò+ó4§ ‰’98°Úø²¼ _D+Òò*?Ä8?ÿ‡yX„)B">v;UïÔ@g­b‰j—{Åõ0Çß + +'lT¶ž»á¿öçtC{Äè_m`EU%~?—¼æÖ™ø¨îuéÏ­A_Å]kVVj½^2Ý42Gì6ú#c°AbDůî ÷[z¢“ 6˜S¸‰&ŽÓ®¶•kTë5‹kK{{±Î? +;Ãr Ç¿Â nÄÝ€tTÝŒDcp÷¯¦Œñ1GRÆ&›Y– aSPáo,“Ó9×ö•ÀHíÇzíZ´"¸¢Ùîò¤ôë‚¢V„Ë4PÕˆÈ CæŽIãÅS¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bðìKT“ì_L±ãÍUMø BãÛÊoXù*1J‚êíW#Ð3Ã¥ïIlJËëâˆÆ"›=›’Š9²(°cés²úZ´LJLŸ9ínum· ã3'W—…½‘ #Á-ýM‚±–”e¡rÜŽQD}ó˜:-¤©·ßuÛé ™05êÐgUG̪„Üêîˆ[›Ø¥ÿÇu•dÙð«ô’§YÔyz›ÜÛ(Û]«*ó[²D‚¨€>ï‡çÑw‚}Rø†ê‚g&ß8ôÔh'ò%ŒX󔇀Ø÷Î9hŸu!Mˆl7ÛC0éÓ48LÒ”¿ócÀÖ¢(Áƒ,V²°"4N5N"™¹hE9H/F$oÒ›Ž•CÉw¬·‹i©yk?›üu¨ÌkùäÞ ƒb¨Έº.¹ ñw!‡vÁòNÉÇÍu—˜pðŒ€5«i 6÷ˆ[úgZ<×÷eÜñ,ðЄÊòz§¶Ï4‹nQê¾Þ(I¦:÷èÝÊÙU¡ùàš ô/wÑ2Ý]JfJSŽÐ>Ë!°!R@sIþÀè@ ü «RYi¤AâÓ§¨KšD§LjÝôüU+TN‰Ùh»0E8Ûhá"_€‹Leãã{ìß›'¼{~0ÁÍcH—½Ddy–"ƒžšû‡‡"ƆÎ@.©Æ³­9{~›Ç°mAè¨ya¼ªÊ•Xð,G+¶cK+ƒ´5ž =Þ—Þ¡t1IÕÉ7Ù¾)°§dÄî!ñð|Ä÷F Š  Ö"ä”ÇzÌ8JX93DXc Ÿ&’“éO@ úŸ ×ï+Ÿ5r¢IZ„߶÷†æ8ìÛ¤y<‚¾ êK†8ÅÖù*&‡¹G`ÓÔÃf±¦®’‹ÀIÅ@jVðÞ¢Ú~ZN7± ¥Û’~9w!¯¥é4hK teè˜À¢Ëe"“°Pö< FBdÓìå§kìÌö¿ÓƒæI–«˜(KÌ;Š—¨ãæ¡ðä.·Å¸5_ Q]l[U‰LøbÂùŽ +‹ñˆæ”P/XÇöd·DÃ2¡cNÉÊŽbXê8ƒxA`d{B-<@Í¢wšmÇϹ»­;ão®Šo_hšn¸ÍfBØÓkúS!+§¡’Û”+JÂsCYÉZCè­'WøÞe†="Lº.^+Ça³ZÛ×È̊䨽l\§·#«›üØFI ¨Ü}CwGMÅç`PŽŒ§Vh¶Y¾O䈺öx¬;EÔÏÌ€+U +<çl(z!¢÷ÇÝÜg—AæñŽ´%ÛF_ÖfzœÂØáÿŠ~¨€ŒDV\ttgå?<:,ÓOÒM,;¦S‡X2Ù3žCóPPYšxkY bÄEËÎ4Ð=hG(Éi‰?Í`X!SBŽï¹B}GiÛßI ‘I4à]jDVèï½ÐG‡)ƒ_®óé¼PuΑiD¯êX‘t%óë«Gkév¶.V¬ÿò¤]o ;RaßXT‹ÁY"40Õ/‹ÑÛÀÞ0ux£üNÆJžÄï‚Üe¬ÑíɬԘ¬(Éx×—'­ßç™W¤e$”±•aËbáñ™´ðÄ´ç/i.º=NúáZ zc~aQK· ½àæ;zÌ©…mÂ7Tol[ÍCAö§{FÒR MçÁÀÔ.8®É*ÜÁM†×È|á¹K¦0ðÔ÷÷lK}%G 45a×¥†XÖJ¾¡ -×\TÕCÓ=ÄE5{¢ïïÙ@‹k·»H租'þp˜Èa7äî°&GÎ<Ú݃1V[¼rŽf¼òž©.õ»'naÆ_ìøJ õõ»*iP4¶ÌI·—GoÊ¡þÀ –µ¦¿®’PÈšE%jFr¸(¸ÏÐWÜQ¡5M*òJ`ΈñÈŸ5¼n6Œ¸åXõè8ØÅÏtýŸŸgú÷5TXIBCµÓÕ8šӮs/¥ŸhÞ*ì Gá‰÷É”ýâK”qî\Ð ¼(†…‘ ®ù¼ØÎA¡q.›¨rçÊ$”Òð®ÀN!£‹Æ2/Ï$ðÎzá¢g’W¶îS½îñÇ‘¦ó·eÞ’™Á³ìŽz=tÅ-B࿹ùupÁ1Þcžff¤Â™Ú "“|pzÊ VÒ¥ãYZˆçá9ãŒR‚SˆA–¶óTj»]Ùï¼Æ~ïçJƒ“"öëÀŒI6±²Ìd5’V?íŽ+·®iYª­–N*R¿ñs¾ï„æ õö.V¥êºª›Sˆ„ð‡›@ýÊ âSÃS®+È°…˜/h åé~?u|5’7‹ Þ•afòhE°E$‰!ñ¤‰w[W1nµÓ‰ê~'D6_¥52Ñþê¡WˆÉ¡:—éÑÊ™#©Z›²Ïùf ölÉþ 0½ÈQµëù"™›ƒ=5]kcˆ×±q4õ:u²gèÁF¼JS–¹ ¾%¹KÚ=S¨(ƃn@›k­ÞGsì- «ÛûL&¦ü8u’\=Ç4ÙÙWôØþµHìÒ:F ·D71`÷#,ÀÉ؉maûï M®2ç½óN¨Œ›¯_œó[+ÒÄ¥…µ¹†„b3îÌŒË]u<‰©u*fx‘e”üýAžRM/‡n@OÔ>DÙU «9¯k¨’UI¢ù£ÆL4ëAŠ?~܃ý}†*×»<ªBݸַ|² +ŸG£Åa—ïJN,DÖé+¦£1h{ ?§4êrÄ• ÛÍŸ&œýˆÚÑm5#»Ä˜bÜù^ª¡J©‡‡JqZ•øéBCº4ª€UgÃûûBÂq†õÌ3­O€Iy” G”-N»â ¨iXœ3êWA$Ò=sýDU: B¦RÌ0 ÷Ç‹“;ëlírûjŸXP fÞÆUOgŸØ˜Óë—©©—Œké¿ ç«šÝ’dð­.™+2{úr†‘sL­Å *@µ>dª!Ícƒ®_’@{™ÃPj÷}šŠ$ªO0h—[õ¨Œ“;Õ¨᯵¤¾›Š(êÈՎΫ&?¢ù©ÐzÕoØc¨áØRšsØë.‡68‹H+Öôœs@ØFèJ_úä ]Ï™MýA0”ÎfÍÍ‚'ž@Â7møæèœbZwï¦%ñ‹Ž7Ü·¥µAS‘Ø̉!_•’Âݧ{X +í‚Èž°žÒÔoŠÏrEÍôºñ(g‹Y)ÏT×)|G!ÕŽUÏĪyc2’©R O•]˜›{2ÝKf(¿cX’ÏÕÜáíÉÍðBDÕï3ãêÜ|¯åYVeÅ;Žy8UMæ»:¥d†Ws³&=¼d<›¥t é B!–ÛøëÕ©žïT&AL(„-@qyßwÉ|jYü¼çi„ø±¿. XtèÖÉ4Ò|äѪéÛtó='J›=wèÿ+“¬ ÌDħªµºÛoäœÂϧ̵e®Ó}öK—§K{=D+"¿œ—´ÃT±öó¾([<’5\3礼ÉBffÎ;ðÜï<°œ5ÿŽ9¯Ÿ5‡¹žÔ‘³È*Ã~ºÀ†ör ]1(¥U­M†Z§%ÌEè”ñ8é‰)ó 9ù´B’*™IÊ:²GK¸ œ¿µe£)mj¡Ôî' Ê«Ký׫]f_Xêgª;¼«üâ’Q‚¥œ <èG¤r[žÊŽÚcÅ…™¼t…¤Y‘áùî¤@ú]7Íe¼ ÙÖq²m„­&t-–œúËù¤ªC…²,ã¿ÈéÏ ü×F¤rpM„h’zÝ¿”ð}ˆ6 ,=6µÔ—“~²ºí—óeÑB¼´óç ­¬ˆR˜·¾}¹ „·Pa²¢;ˆ!Ý-—žÙYÙrµ×ƒßqŸ”˜¤Õ Šc×áÉå±Pm¦+‚«ÈÚ'}©ÉsœbÐ{ýckÀVÈBH¬*£ºœóŒÐH¢l=E­Ãð«Çðg™î´Ô£Bó|"¥‘æ8c·›îhl1ÇZÀ}µÜu·3 +IµœúñÝ^r;ÒÙ¢6×Iôga%B7¤¡4tqâÍÍÂ(€pËNœÉ•Áõ!êGµêÕ^*£‹¤]h±0ÓaR`‹µèÈr¦6øIFêºeÕÏ¢J*‰Z¯p–v‘ØDÈÉ78ã°†eÏì:ÏIºª¼rˆ´nf'8YgžtÊfÈŶ/µõRX€\Gñvˆ£ÓòÛ—š^ ×¢d³3²KŒ•™÷¶Hsņ{&ªŒª‚6t™Ñ7dågUoà’Ž"ëü¾ ¦O†¨óm碞 ¨“á·S¨–àªýVΣp¥tð«šsÔþÙPdwÐ-vf˜ cÁ%{€Ë4Øý8¢¢¨E- B…rOm`Xó,s:Š¨7 öþÒõáÒ8…dKäA”ÃQê[_ÀÀ û¬„åOïÀ¿¢Bj¨­2îÜLY‚k±U¢E… \öfó*q«ŠjvøTæØfáÒð†Ÿg›ä -³'mÔ…@žU‡|g¡— ØÀ°µ‰® ed8E½ž—%Š\Q€ž£ªlX*ÀÕJ¶WËp+¢Ñw¿½L?E]Zn»ž{H¯Œ–Ž¯hå3öÄÃH˜+Jßö”âð›LòûCào!%bRвfÍ´û>7å‰Â¨C¯ùȱ–Rv"ñg<žêØ<@ÑðŸ[2.ˆ¡zl-gs{çxCõúŸó9Û ;4b_3gYGºUŒy +¢äeQ‰^ª‹3!¾"½¸@43DètgDx‘¦o'”ä1ˆRhŒz_9EqÛ¨šnÍ;°pÙŒ'ºy[aÕ‰€)¼×b—¨ð}=\ËEºUt úÓøfVóP¢(]𦥖ѤƒnzÒÔ“Vü¹UÕéØÅ:‘­üÌ–©´ÝL9AØþùìI¦QÑ7nÒœÉÖe¾…*r•ör#!ªž‰¹òH9yʼnÏqÈÖêz&Azà‚BǺü¼l¨WIœÂ>‡Xt»‡(…—­’ß. +oë_;ä2½kfÛ~’œP]“ÂûÉ©¥?µ¯¸¾| kõÅŒeÜnA]wÄÚ]„Ü|Öìÿe»Ìn#†a ÚÊ6`@²uv”þ+È›!A¾ŒÅú Èá·Á«;ÂMôf€ný}‹ƒ‘±ßlVƒÙú1mm ϶bŽ©½+HÄãpFX”¤äóÚÞvöåµNÚEÜ^,@ V¢5OS±TWÛèaÚëþ3«æ«"êNY~}7YŒ0CWæ1™k #rò(¨@ÒtÏø­†³…sèßé(Bu ‡+Õqa>ÖÌa +§¤–§ë?™DÍ„™,¶òzAÔâcf0Üü'¬··¦ÿªúdžS镬ۡ$æ¯E4^@[Nͨ¸¯Yrfºu4µCJgw#Ê&+upAæýÇG^[רc>á ”zéql\Ë®/!4Oú!u6ð©^Ô£;’”zÖÏ1Kâ‰Û"*Ï•´$ú"«Ÿˆªv·Ì9çv=k-ÈOW‡%Eû“)èW4MŽ/s† +Ü~ƒ`‘K=ßå# :~E/i8Ûjt±•ëY¡ïZrKâ> +/ExtGState << +/GS0 61 0 R +>> +/Font << +/C2_0 189 0 R +/T1_0 190 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒMKÃ@†ïó+Þ£^vg7û‘@ØmÁê!{‘X°…$¥è¯wôæe¾˜yßgôÕ0½õ»nB]ë{èÛÝÇñ4¡iVëZeÒ©et# 0vÒ×Ò¾Ž¤³ybæž¹ƒ„ód‘%}Îõ€ ¢—Š•‡«*b`½ò>Èí;]Ü\æ=m2m¶b§ÿ“Ú¦MwÄ¢z†ÃVöxxd<‹H²?dff(€ÞEÜ·½-y±¯™K×ü&øû­`*[U ±±Q¶€W†-†êéK€xI¨ +endstream +endobj +60 0 obj +<< +/Filter /FlateDecode +/Length 1346 +>> +stream +H‰Ü—Moã6†ïþ<ŠÉ~ŠE Y'‹›¢íê¶èÁ›dƒ¶‰“Mœíößwf(Û”`ËrƒÒ°eŠÉ÷áÌ|LßTâæi¢Dóaz~§Äì~òëäk¿Rûôqt4ý0_܈âzQ¾?•Ó‹w?ÎD­Åññé옜68„þAüEF€ŒL›†š/“RUʈæR€®\êG¦ +Áy”©LŒ¢¹›^6N¦æ œóärù<¿m®¿/ÎÏÎÏ•ÒgJ©x||,x^UY]£¹æjRT‚Fž]`3TàbjþTœK¿Eq/meDq%æRUQOÒñzRü!¡ +ë_˹,µÅBBM=/%(j¿Æ¡héIØŽÜ +±Ùq †Îf*0‰C§‡oœœÃµƒ+» aÝui=^Ù>z@ŠÔo¼ü#Û×’gÉÐÈS“-žëZ†¯.Í _2[žC mÃäB[·£´Óz¸â¬ítÄ›°šên^ÜÙè‹»W,ò¢ïdݪÈs/+òv¬¶ÐaD¡ç×^t\ÔU€=ë=ätÜÇýGy·ûŸ“aÂed:“6©Z8\¬ßn¡^œÆT•­i@™›Š£…%ìò|Ë ë;2vÔi.±Ú‹ w½CÜ&•=ч9¢smVçk)4ö” W +5/Th¾´\ õ‚R+ÔÔ”k3Ñ> +endobj +62 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +63 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 66 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 46 0 R +>> +/ExtGState << +/GS0 61 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥séZ虘(@)3#c=3CK C=sK…¢T®4.€¸á † +endstream +endobj +64 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 600 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 46 0 R +>> +/ExtGState << +/GS0 61 0 R +/GS1 62 0 R +>> +/Font << +/C2_0 191 0 R +/T1_0 192 0 R +/T1_1 193 0 R +/T1_2 194 0 R +/T1_3 195 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰œTËnÛ0¼ë+ö(Å—D +0$Ž¸mR Ö- +Õ/8HìB–á&_ß]Jql5mâž´"¹3ÃÝYÆgU½œ—“z½øÄ_˧õ¶†Áà +‰ãwe!¿lù‰[m<þY®0álRoˇbö«î á"Ëó|nG‰å©±öH x!¤âÃj+¸Ü Õ¢Si_ÊCÑ®S “ýQÛpÄ"Í„+f¸†°f‹0‹wVÌñ ÂØ×#–Ò¦ o†ÿpÁ"ƒ$á’E’r6„‹e…YøÿHë¸_ú@y„„›âH*bù´Gô'’63Ö?Hô‚”<´ß%q§>“(w 4rÄ°\¯ËÕ´ n˜Çñ÷”­æÕÀ65h¡ÝÐc–‘øš$#1!fæï¥J5â7ì®ø|‚ÿ:cýV];µY[ÃUæ²c«ÁI¦?¶ÙÍ%z+¸B’{¸½0E˜¾zñž¤Ùs^ƒCØÀTx³›VAOgò5¡¡§@ÒS°Çwè,­M_èSñ;£tðâè}‰;OŠÎäžûuˆÓÔkCjrâÝ#½вÒ4þ!ãʃƈf¼"íÈO ÈÁ¸'˜¥$Äõ'äx¦?&ÏŒû×íSŠ)¤”òí6Û]ŸùD*H-×JCÂ¥PPÍ‚yð[€ 8R +endstream +endobj +65 0 obj +<< +/Filter /FlateDecode +/Length 1163 +>> +stream +H‰¤V]oÛ8|÷¯ØG¨e’I  $M\ôâî½ÅAubÇ=ÇÎÙrÚüûÛ]Rå| ½CQ“¶–ËÙ™ÙU&§»fµ¨ç œœL~‡Éeý¸=40ž¿‡ÑY5’ SüÌó vËÑäÕ„å~4©Ô_T‹‘Mà?—ÈK—6· MjŒÅ€»Q¢Dõ}tQ.>aÖ0éÿW—“Ù„óíèÏÑäpYo–ÜlÆÎÄäÓûç˜3‚’ZÂá2Ÿ…4ŒQ(b,S™k¨æ6?? –±P˜Tfe¶Ät%¡ú’˜TŒ3‹ #ÆÊ¥$R|­~ë ¾K½ÊbÒ=&å&Úü€ÉÕ}½Á¤§óæP¯«›ŸÍÉìb6“R–Óé8«Æ\Œ\ç r“æÎêô˜P‚H×R™Õ54 É«ÉÚ .×T$pŠk‘*HöûÕ¾ip£Ò’ZŒuŠa1ÆϹ`bnÂÑ®á!?ã’2ñª!ùü&ÞtÄÛ¤ªdÏR+ë¦,W¯"Ýt–fÖÝ®¨c¾ÃI Þ¨’¤*,mvø(§˜Ç7Aˆ’Òõð7¹]‘Ûe€WŒOùÕã“x•2Þ©ÐŽ8™3³HÒAèœ@6"gNa!ða}2buKÔã‰kèrHm­)€è6´A¹ ¥B=,­Qn”˜"v$(õå7Ä)éòšÅ§œðíj Ù¤T+áïZ"G ÞPЕŒm[úÁÑn‡…è¾%ÔMt—g€ÀI6\ Ÿ’°` ¨Û€! ñ«ådÌEá/ã;‰uAŽò¬ýaÂάx$B1ŽfBÙ'41µ óÁ·ˆ¾ìËdÆÃ)|…ªoD†_ßÁ›ì”GvâÉT²qØâØ;¦Ä_[ïðšò9Œ9}Y¨*XËÇ÷Þðß_mÓ¶IÞ¶‰ým"JK™SøˆÏùè&bZ16oh̓g#üê»ÈFyÛ¦A .â¬ë>VäÐNŽò.éAÏL$¨ïûè¼ +—tßÂ÷\Thp~ÆvËÔ[Üj¯Y‰¦|vʇ6júM`áš&Ìг¡wŽ\ûßü*H›wp+pü^D®²÷_Ç*%,¬í_=6ÖgÌÃ-š†/»¬&Ž]•{w©v<‡Ž £zx[«²ô²ðÐÂy+_Uï>пOŸú§¯ žþ-Ü‹ís…XÝѹ V“VŽRó¬{¢Á†£6ÀàÑoC_£ý;Ù¡”~ÁNV§™ÊÃK½ofXG"ñ¡d8<ªÇÌò˜Hs}×ÏÏ­[ü°n­¹ +íkŸ>“ŸšÖZdlîÎd£ÆK¿l)|ÒÙÑUÇÓ.´é2Þ +ŽÏúo/øu > +stream +H‰¬VMOÛ@½çWÌÑ+ÕÆ»k¯m qࣨU[U(= %%¡Uûë;ovmoBP|¨Øì×›™7of=þ8:Î>ŸÐèà+|š,î(™.ÒócuðùäÃ)Uttt|ÊŽÇ£<ӆƿIkÊù‡ºÌrÛTu¦uIãùè{r£xBÉ“*2KÉB¥º¡d¦RSe5%Åq®•¸V„e“Jn‰7Á®aúÃèLŒ‰ÍÎtšg•·Rc{AË 6挗`®L”¼ð‚Î Æä@0ûk9èÄ¢FpìI „.2à;bcÆc¡|Hì¢l=*SàÊ‹Ò•8P½w|¡ ûŽn B‹¼Pû +Nâ +é7~»§å™$¼ +ÇŸ•¶!*-üõ÷_‡%E©,1_)1£18¤äžó³~*éœÒ +>8ϵÅÒLUØRWãýò«7ä—»æ ýY›5­þ˜†ñÝm%%Ê@³•2WÄi/À×D1èzJH­ò!Sò“õébf¯3%g'´’DcÙêO‹è\ÈëIqêk×joGÌ,(ÈOtر؅f$˜5L‹î&œô<ˆµa@'†|Ã’ÖƒBàëÞƒ%}CŒü…. ¬&–]q¹ä¸ú†Ï|z=L M¤–knª7¤ÀɯZ)œÀ¦…Û©…ÍÎk%IÝQsÛ)%õÁz¶.€ÏKì bç ž_(+Å}¢}ÞSÏĘ•Zô™òí¬¦•¡jZÐ* ÙÅü§þÇ +FÒÚ¸ï€]iu¨õ¶yVÜ'+éY5ü}æ¨4†Ð^ZrS-쬡QÝ,NND|ÛÑ8”¸&–¾WKMê]ýc[Eœ1è¾ÅÌÍá©dP +÷qJñ‘œÎãî³)·¢©ÑŽL¬7~¾Æ?ö£êu‡~sn±­~û‹ãáCÆ÷קO­“Ô‚Z†´Þ2Ñ +üÞù†>¼p-Ì)N­HéB%ìq ¼R»—iÿL•jC§…¥lX_àO’'¢.6¥óŠóãgLg¶%ö½2ÖkvG)¹ÿUJR»}9¸Ö·é˜{¸\ûg[¾~âÚ¦·¿N:׺š²;¿ô—½¤¸@Š–Í)%ÞÜwã««ív×7U×ZíâÝÕˆJiDWôO€dFI +endstream +endobj +67 0 obj +<< +/Filter /FlateDecode +/Length 892 +>> +stream +H‰œVÉnÛ0½û+æ¨9ˆI‰’€ ‡ÄA4@Qè¡èÁvÖ6± ÇiпïÌ2)/ø@‹Ë,oÞ×ôÇòŸÌÅg<éóªú{ŒaÏ Ô’ûœÍÉ‚–ˆVhNéÉz“äI@œã5åÀ.f³ˆ¦ 7 ²4#PÑw#~%Ý gÇ buî ½.ÃþÛAHýœ àL™p¦èÓ¥lU¸Ö¤|ÉrœüzÛj•ZUºlŽÑÕvDìÕÔîÖô`EoÇJ(jy‰FáÔ5×ÇõXʮň„·EI¼u \à1­à#Z‰ÏCî““xÓÂ{R™ÊÝq\m,:‡ã‰)¬Ø¡á[Oþ°¼¶D z³ßÞÔdôœ­ù[îV]KÃ…ÙíÂ\„Yœ°°Æ[×gXáŽ0¬lTÝ1¬Wéú¬ÏÏ +…4ñ¼ÏN{%VÖ Úÿq¾¤èœ/;p}]/[+žþv++ê,C‰)ÿÖD\)Œƒƒwiµ;¨[ûj½Ù'µÕ¾ê]ök53–HHd é† xU-x‰à©Ùð š’¿Sµk<¿:^¨„;ŒuEaŽÃ–ªêÈÉ°“}Ã7½@¸Ø|ŒäŒY½sAýFËùlÛ;ò>v|—>Ê…â]Wᦠx܇Í{”{o¯v’¨û—ê¶W“NöÅ%D±'|œ¶KÓ†1§%0Ѭ؎3~8˜¤mæØø¶iùìÓ µM0FŽfÈ™1ðÆkû”«ôÊQB6Õ£pèú€ü3xŠ ½òŽ7I¼P’— ¼#Ñ®ýåtü‰q¸éгMq 4~ß}ØlKxœj¸s „tâ,ˆÅÜv7„Äo;¹wLJonûJôq½-æ¸ÓK´ûúöîËS¦u¢²ZdŒ&[ÎJpé%Y&•é`îJ™\tðO€—y¢ +endstream +endobj +68 0 obj +<< +/Filter /FlateDecode +/Length 958 +>> +stream +H‰ŒVÛNÛ@}ÏWÌ£WÂÆ{³½B‚U©ª6}jyHÚÜê•úõ™Ýu6$)vÆ»s9sæì>ô.½Ë› 膓“ãÃùd£y~u.Žo.®û J8==ïãŠóA//‹²t0øRB‰øhlQjgÀ”U!¥…Á¬÷={¹lŠ +²±¨ +‡…*d4[ÈZx².4Úg×ÈBÓò;ý²_¦~=ý® |ù+rö3ª¢íF•´oBn,¹1dŸ ©)ì\a`Gv¥Š²W¡eQwù´¸_Òr|Ð2Ì&|Î-=çÂÛ1Ž£õ+X„-,Gž†3Æ÷>>Ðú «²ì®òks6/i±¯ Ó²œ/;{‚µÜb)²óð„°@M‰ a¿ÿ?Àÿ ',[¸ Y"×äc!jZ¾YGKªS®&äj)W,£òµç¸IrvRù¬oPK&Ô*7Ye\S”•S)­²\ ~¾ïU¥^‘¯f7_µÃÖF¾Î70c”± +¡ªëhmfXE rgŸa,”¦=/¸’M3j¶ôè„­¹te²ÆÖÑs?ÍP—Ô õN¢…cЩ=MJPl†dº¸‚'góûº‚•OtLª$f±)Ü ]oc/WÐ Uîi» +læÑ]ˆ1±á‘ÞlÂZØ7$‚§¡ Ñ*ý«‘ ƒÇƒñ¸Mtày2„Ÿ g×Ý,Æ¢°!<;‡±SïggÇ¡º.êÈ¡JUX:&—dâ(â,äl’œyÐ9IÉœûíûCô1aÞ<ÊŒv½ÁšÝš—@Ä 0é¨{Ý$•pL[`w&•¶‡@Ç42÷¬‹Øñ3ôÝQ¾ÊPÌýJÜP½Åa›Ñ•öÍQ#K‚»ª@W¨«÷³ ªÌRª9%Ì_Îùéè4,Œ{„e­ÄpMFüØõ…æû°`I_A!šŠ²Ü3)lC”еbàiÐuûQ ŸàL(nҒЋAM{=ˆÔÈ=¯ÇØÎJr3Ž¶¿À–÷ýcÁÝÆß*±ãyñV‡ë¢Ý?8¶DAÐ8ZI38HÖ«7÷S³ë²hÜÖX$r¤ÇæÁåµ%蕧î ÝEˆá9‚W:öÍ.aŽ—ϳÜ;\ñÉ*ý¸£ÃYw‹‰£æ¾wk‰›Œòž¶¦jDZŸ¢ðxé¥Ô5ÙgLoßmÖGC‚eXr‚9Ú†»Ì´cC¬ÂÅN¤ÅÍi¤&*~¹çÎÒ®/)ªxá2þâTwµù>ìºØHÞÂ?šDð +endstream +endobj +69 0 obj +<< +/Filter /FlateDecode +/Length 932 +>> +stream +H‰œV]OÛ0}ﯸ±´¤±8‰„x€²iÓ&MSÞÐ +ý ˆ¶¨e0þý'm!LH¤±}Ïý:÷8õ·ÑU=ºúq £ñO8;Ÿn–Í7ñ— 1þqùuª€óó‹ ž¸¨G)Ô/ %¤ø‡<•I¡•U‰–9ÔëQ¢¾µ Pã4Iµbè4)J^æ¸\e užH ~íE™ý²L*ˆÿË ÑVHI{;K•ä= ƒ(‘Ò{%DwÂé¶B'¢«×ïç"6tKOCö±bÃyË zZÒÌ xL?6Bf„=sk +‰ T¢:çb™Ó=<ùµ;òFÑgt“Qœ&Z/E\Q€wõE`Xš-dEîVÎí-ÃftrAžs‰5…º¥$UÙ”r¤DœÙ§­Õ +!R +yOŠ‹P‘³0Ç”\e´:wp­™[x6’&Å5~ÆsÒ•”CŸ Y0PßK{„²Á~<Ð|8èEdì>zX¸×…0A©wâw=€ÜÕr·üFn†¨hkºÈ ±±•'vP®Ø£HCªaÕ»©c=3Û ZX"™¹!G(ðœxŒï¯øÈlo¸Õ4X`ìÊ&B›RÉÁA-_|ßýxúÀ+|7´œBûØÌrˆ ˆ&ðg¡tÇæ6²¿hê Ê'Ö9»Pì÷ÁYÌ…fŸŸ`FYòx!ƒÈ¹×Gc?,Ì biÙÓ7•à@Šeõ8¨yI.—V¶vn¢ƒÜ;6Îøk«©¯Ò@:Ü}ö¶4Ž¨æèm×LÇ«à‚ÍÃòåžMìØKØqžàFô‘ágÿ6¸S;Ð÷Ç)Huw¨qMf± +nŸFÎ\Qú¾ùå@E> +stream +H‰œVMOÛ@½çWÌÑ+ÕÆ»k¯m q ¡U+UÔâRzßTà Šè¯ï¼Y;^‡¤XUvvvçã½7³®?OŽêÉÑ×)Mö¾ÑþþÞ—ysCÑU:T{_§Ç3²ÎxÇa=Im-Õ/¤5¥üãG™'©­22.K´Î©~˜üˆ•Î“Œ¢'•%†¢…*MÑŠu‰E­“œ¢9ÿµXP±I‹¶ŸíÛ½(o»U.©Ø¤â††Vð–¸ÞB•?ñ&ÇWÂgðа™¢KW8u§ŒÃêJ‚˻˃ݱ÷¶¤ë6á>©9Ípœ+œ)›"ÔIÏk_³ikÆ©Úí¬Ú¡Ø´l¾"ÎÖbuÁÕñcEw¼ß dáŒT~¯â ͺD½’úE*·x].-°9Cý¬Gž‡¤ ÏSÁ2‘ª½ïÕ ¤”Vn‡”²*©:)sÙ 7œáf¤Ràû2ÅÅ'JÃn”.`H©#’¹bá[`jÛ¹b˜¡Œ{ÿÀ¿DþÁ1tßSJ&b?S*3ð›'­E sj„£KeD¢¿|Œþ|Y¼ü2bI{ÑæuI*mûÈa¹Îàh‰² +_Hê ìÀH¨ +®ç¢É\b¤¾OZÝ\@Pe¸ƒÎ¥¯œ¢“'¿˜WhT‘Þ5­{žµ&gc¥3Ϙ¯´o•q,vkp­ËàSJX€¦©’lO7DýGS D¦*ZÈÌ°f2¨ŒI`,¬’&T6…ðD\@Ú››•O>ó‚F–¡8‰W:…Žt(LË{Wƒ/àÌ ÷ÅOF/ änÏÏ£‹¶ÊñòGO9lærã^ÐiÁÔ8G†«Î;Ž>*cýtÜÔò@ÅŦŠÝH "ÁÍÀ˜¹ ƒ©÷Foî(ž®Œóo¹oÐhúq²F7œÃKžñ… ]âè#3¯ñh/€ö¶ØÖ,à dëõáYëŠjÙ_÷8ǸúÛÞ”)&/h]qv0!:á·Å¬Õ;ŽójÈyžïhKæÞ®Ûr0UÚëMåˆí;;ƒ'&0Í;êš·u™‚¯þ¶+ntW4ði€Þ ®ðMÝ †¨ˆv99OŸÝÒ­¨i0l{»áùýk£ÂUQû¢Ûn(¬ËYú‹;ÁÀª"ç ‰Ë¸0J~†nu«_Û}\´3=hÿCÙk¸÷bEé¯ãT”¥c>.z mù¸ ¿ Í <: +endstream +endobj +71 0 obj +<< +/Filter /FlateDecode +/Length 1026 +>> +stream +H‰œVMoÛ8½ûWÌQ*Y¤DJŠÒt‹-Z (|[ìÁMœnvºmþ}ç I‰’쬷ð&Åù~ó†Ëë‡kÊ6ùû3µüôöÏsª5½ysvþ–g«EYèšV?Hk*ùÇKk‹²êjÒ]Uhm5­îeª.4e[å +GÙïxÙ¨Ü eÊè¢ÅqnJ|¸Uy‰k•k ¹;ºVü¯Ketý¥ÒMQá܆²r^ÑZ鮨)AV¾¡-þ±èŽ.UÞVìh1¸gËÞ`ƒíW¾é¿ò¥;¿Ü*ã`Nò•gâKUââŽÿTýr­F·X?o÷ô¤Äò–v‰ƒà'c€[¸ý¯èõ¹0'±øzMWP%*¯àõÚYö’ƒfÄSû¸tLh ”EDÑÁýºD{ðƈ7¢º nPvÕCú颯‘•và|[ì/ Y²÷÷êÃâÝjñîCeù™^¿^“IÁ4FRݵEé:3‚R–«Õ·ÿV[%jÙßRwGPÚ´EÇå&ø‹Õó`ÛSš';ND‹¸·2¿ž–Ë¢\÷wCÁPøtõnT„œAÛÅzI!Ý÷@>ìbÉóySÞ'‹Nˆ feUDGn‰ÏU ¿M5€Â´8xE7Œiœ°\• FàdqaÀ8Þ_k¡Ç;}n½œ­‚÷’i ÌÜÙ”‘þNR0ôÛ‘¢ì•€=Mc—…šKWméë†NCh}¡¶äÂV¦Ja”ÑIµS€Òê‚x-˜`g›V]]4«)f¦Ñs&9¥Ï¾c“Ú’è)hàÒÈ=©ñu¯±ßmø2츄†ÆïØï> +stream +H‰ŒRMk1½ï¯˜£*Y#­öBNBii ‡½…\g›bo±Ó¦ù÷'Ùî({Ð2oÞ{3Ãçêj¨®®/¨Z|¥³³Å—ÕöŽÌ¸µ—¼¸¾øtIuGççËK­X•õÎÇž†g!¯Ÿ>]B¬& Á‰$¡aSݘ‘kÈüa+.’YéÙ°4d~r蜾,â:ȱ&ó84(Ò?+Þµdöù·ý×YfB£wš .iÛþ8¨C`ËA\¨'î¢O4ËÙ„ñàQ¬5/Ü g¼†Gzæà{_#Û˜ù‘ÏüÔîèx%ðÓÂ6¿9s‹áMÖöÆì=}Eh JßP"žÌZ…GPÚ@õ/0H½¯çºBƾåAï7ÇìÖ‘f6­Á¨LeD[;³,Ûg¶Ð¤tèî±:.JXBümø«êgWåß9(ߺ^Ò;÷$ ÊÖ%|Ö‚äw–øÅ{ C®RÕÚ_Ùw9,;v°ÒSY—-ðXßt¸ÔZÑ¡lÒ«ÊWiË…lpÒ1ãuÒãçtÔši`&ÕsÛ­¤×'Q?••—|Êù,Žö˜þ +0éþÊ— +endstream +endobj +73 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +74 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +75 0 obj +<< +/BaseFont /UMHHKJ+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 196 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 197 0 R +/Type /Font +/Widths [250 0 0 0 0 0 778 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 0 +0 778 611 709 774 611 556 763 832 337 0 0 611 946 831 786 +604 786 668 525 613 778 722 1000 0 667 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500] +>> +endobj +76 0 obj +<< +/BaseFont /IMHTDH+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 198 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 199 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +77 0 obj +<< +/BaseFont /GJLBWL+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 200 0 R +/LastChar 53 +/Subtype /Type1 +/ToUnicode 201 0 R +/Type /Font +/Widths [233 0 426 0 0 0 0 426] +>> +endobj +78 0 obj +<< +/BaseFont /YFFGTB+MyriadPro-Regular +/Encoding 202 0 R +/FirstChar 31 +/FontDescriptor 203 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 204 0 R +/Type /Font +/Widths [583 212 0 0 0 0 792 0 0 284 284 0 0 207 307 207 +343 513 513 513 513 513 513 513 513 513 513 207 0 0 0 0 +0 0 612 542 580 666 492 487 0 0 239 0 542 472 0 658 +0 532 0 538 493 497 647 558 0 0 0 0 0 0 0 0 +0 0 482 569 448 564 501 292 559 555 234 0 469 236 834 555 +549 569 563 327 396 331 551 481 736 463 471 428] +>> +endobj +79 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 513 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/C2_0 205 0 R +/T1_0 206 0 R +/T1_1 207 0 R +/T1_2 208 0 R +/T1_3 209 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”“MoÛ0 †ïúdNÉÜå!s2w*A¦åcõmhül¤ˆá]›­ýXÖ¤ b4Žeõ±—½]J4*@ö[bTÙRæAÈ^%ÕÈÀõÌ$¢*!«%•m%Rͬ‘š[ndù˜¿Ï° ƒ;™#Wmi×\¶åHªóÌtÞ¬{¯2·Ü亻~_²ÙÝE}òEºÙ~1PØEŸ +½’Žþã#‘ì€Îãp +ïS“BL%—'˜þÊ0‘&:"Í&§t28žæsãœü0Ã|¤l{å#Ñ ’³iÌÙ—[úî¡('àˆ€'¸ ;d_s`¯éhÁžìÏž©i»$"aÞEPʆ à WrȺ$ÎÞÀ™Žãã~„Ð?"y + +endstream +endobj +80 0 obj +<< +/Filter /FlateDecode +/Length 5436 +>> +stream +H‰¼WÛŽÜ6}ï¯àc°4")Rp2Y#‹»ëÌÛz±è¹µ'si§g&Žÿ~ëBRE©{,gƒ Èt»E‘ŪSçœ:y½º¹Þ\<©o¾9ù‡:ùióy÷ü¤¾ýö»ÓïÕ껳U£šÚ:ÛÖ©ývuòæçFmW'gæ¿2êìzêÀ]í•1®v½ï•õµ÷ܯÖVŸý²úálõÃ[ØõWØt ÿŸýtò·ûFîVÿZüøió°U뫇êÍwúäí÷?ž*ß”±(<òƒ0ÄYŒ¡©kÕÙ'8ŸWe\¨›àTgûz†€‘ü{ýZwCÝ©õoÚšÚ©õFWÆÔF­oà‹Wë;]5ø|£»:¨õ¹†· þ «zNá =\tý qý¥ºÖ•íðY^£ÛÚªõï¸!îq£î8ßj¥+a)~î´Ÿá_-ž°‡á… Þ//V9æý•zÐϬBZëÄZ]µñÓb(ã›ðe¨[µþ¬àâÖâ×µÃÐ:|ðãR›ŽO¶ø±WOšÞÙÉÈ)¶ü±ãÓ!3m=`nð/c^ðŸðXTË7¦ǼÃ'¼ö¤©rW˜o‹»|Ô|Ë}Ê;«{Ø×á92U•ç¢Ù€i}RˆMøá«jðs¸égUÔÕ1˜ié#îa0ß—Ú5¸ £+È¥±ü)íé˜S<·ÅOxöx7¿LE8™ÓgçßùàZ½†¦x=máù)a›¸é¸ ‡%®¯ZLu5¤q#z`!\l—fhÁ¥ij? žár¡©€;xÄ ó>H½I÷@Ê°Ž;\O®ÕFýßYVÜ­´!lMH 6p3>àÊyÀuOêü +›ßt2~ÀeqÙ.ã—é¦8Çn¡'Ä,ƒ¤Ã A‰mSòKEý•{΀‡Lˆr~G Ê9õ-,¿åÜ7 ' +¿4 „¦î‡B§Ž‹,"ÐZ=¦Õ¼à&ÖžˆètÍʆ²‹¯$+EI»¦]" ,{¥ÊFfN"U²”öç˜ìKl°ï?hëpcÌ+±ÙH4ãiÅ+T=ÓGÝLû$ºšõ#ߢï…ÝÍ¥ Ó3Bië­8cÖû6²¾yåí1"%,‘T7a&Ìô£®:üåz æ‰ó2е…­À5%éxà‚¦ë»hk%mÔѽ})M8Âg¡³µ)0ï^Ñe\!áC:¤“§&LFNïñ£Š=(;„b¿%œõ—Çþšá}dß¹7žà÷&áù#5Cê€^†È0¡Ávê¦3l|'ìô[Ý&ïf&l`é¬=¼Â>ÈCõI;ÃH¢îºKÞœÁÉï¨_% +Q§¾ÒxtSò1å•2Ñ Û‘ôûF³ÅÎVQÞE\;úKî¸UÇÜWÚõhÈáäpDZ©1Fg1wÜ£‹äMF H{Æ×ß(=¼_L{]I{ã¡ 2C‰/¨ôÆëŶ‡Û:á󯙳òLsMÓ + Lë5ë÷kÝN0QC‡ Ÿ0hûGXH2 '“é’Îqd)Ë介Yß³­` HƯÇW+@4NÆÉÙ‚Ålc1}*f›ŠÉ8wx‘I¦p >ÔbÔ﵄LHôÅÀYxÁ]‰«’™Éyæh)a –@œ‡¿mëÔ~»:yós£¶+àUBCÑà°bÞFƒÑžzµVoµ˜,·š£® …¡è:ž£/bznØÜÑ ¯ˆÞ[`Ûp¶w\i÷ðå_´ejâ¦*Q¤¡Œ°ûúM»..£j/ë­Ð”ùÀ[«[L„ÁD@<á£û®«ûÆÄŒœ!hød_¨î´UäH饨ÄÅà=ã éÊùyA~Ù³“Tιk¬•FH&>ú’N ¹»la¼¸Â G¸gõ GÔ׎±ÎüÅæ¥}}"PÛÅsº'¶AÓö¯”0_~bPUï8„x¹8mBsš„§ƒæ>rºœ$cxŠÅˆ4ÄÓ‹™«%ú¸K1ÎD‰]„±¼Õ'T#7â;rç_‚s!#MíÌ­eµ«LtI8 ˆ¡,ÆrÅôóBPµSPùc¨r¾¶MÕ‡(¾X¿ì²× É%ŽaÙ¤Wè½nf$ÿµ™ÓLÛò´œi¶íÔéh?xÜØN†ƒqa5°_ cX¤0ÞÉ&ê_"ž?B;O@|˜g‘ßu;ðd=è„ “«g>æb¢Í(E C' Ã"ùcŠ@ϲ)%„R®Òd²gÛäd¢GgLµåÄàIKLqcNÙf¨Å.š#®2“‰†â>¦¼=0~"„„¢’`QĔޞ™&Öž„e‰Ì’ë·ôƒHcŸ™&)¢¸±ü‚Nhyö¹5|1ñFSF‹.IÁ­PðŠIön‰G¬=L<>.Cbw‰#`š ì{ÎõýùOãàf¨àõ²£{q4bÞÑÁüÍ äÞ{åZÚÐr˜EmPÌmµ1ÃäZ`[0‰å­Ë)ñ˜GAgtRÚ7ÌÈ÷©|BL'sÇÜ^bõã@@Jp?ü r™;´ù˜Ôr+‰¸}„„-LEéjSTž¦1TÇ)èwÿ t>c¹ ÊhqÅŸ%øÇdˆ$ººfªÒẠb,¸(´•¦ó«¹úHkŽZ N-²DéæX*{®ϯÏqôºŒ(_À*È=z<¥ÂW ·ð»™¾CTö ;É]ƒ˜FNgõÕȯ”¸¬W`ÐÆ3+ø›´2W4YK‹k.UŠöqÂ-,N²˜d|'PÏD’èõ7í<«S$½}‘¶™8Îôº«S1æ5²¦ÁiÝ-D™™ ìØìÙv½0È‘©u”…ÏÜ|/hâÕûµöŽ§€TZÂ¥hÁÑj,AcTÍp¿y1èŠUåTÈ•©š8­1‡ìc‹©©;XÓž€ÏÞkÝRjõ[ P $–JTd\”î’„:¼ß8‹ñ)œðë‚©HXÎ)ŠÁbN·Ž†g"n™MíZDí<–eh²¥kúch +-ZȦ-ÌÑ2Êšphnz‘ÑX*ˆâçã’nt^ü)HãMÄø1YÅZ"ÇŽ¥˜O­dç±ê 4Èx]iF¥ÝÑÁŽ’Æ Á×ÊöÍrrHyÊ \ÝjjÄyr~œÑÔ=î¯ÙcykLÜÏÖúF˜übR£v"VãÜ KÌW@68å/ká¨èQâ‰a¸ÒVú ~Áÿ)c+µ«íºgÓÆ·ô²P§‘‹pêÄ=ÞiZ°ÌÐvmQ çáoÛ:µß®NÞüܨíã +ØŒjD­À‹o×Êj’õZéÁ1«Pîéæ-™Í5€ +!\ƒ+¼10\0b‘MB&él= s±cD>ÐC’P{¦a]ÀÐ1çšGÄó(cˆjã"BMâÚraĉµ‰gÎ\–e_fs©n1½Ó ¨ï»#=áúzÂvœçלdŠ®pìlðÕkšÀŒPF1´I¯ >)¡Ú(òàññ±‚ê6P[Î$•–5Ø”ZN¶T4e㌻¡l­1€9‡Nº»tw¶ôYö^ê°r¨5<’Ê^FV©eã‹ùþˆÞ.HͬŸB½y¥PÎpƒ»|7¸€•LÏCqpÅG.œy»Pˆö(^ >/²håœuw€%Óu².áÂ{ê© .7nRWÏn8ºÒPlE—]Ö¨%ý^1ÿµ ÿc½J–ã¶è¯ð8¬Ê(@p±S®Jì¸*'4•‹u‘Æ#YÉHQ$oÊק7 .3'§¡(ht¿~ýÞwALRó~Ö#ÉòQ‰l×L_çEÚ1¦Ï‰}í´}UhŠÞSIÂ@&_‘è~!LÚù1ë!⪢ÑYåæãÛvC˼¿-äa‡2qˆé#?÷æMYSÖ±ð9¼÷ø¾0H° Ž­µ¥–±(µ!9ÕÂAÖç7§èêApphŠÞÕŒmblÌñÿcÝ™C•q|Ì×dE] /ñÖ`¢¬5eWeîví3J £r +,t¿Ã§VGbrSÀ2ÜkŒ¶ð-4Rɨˆûø9åKô-~°Å>Íu½£_\Q ):EZØ’‹á¶µ™‚bþŒ[0­înu‡GA¾Q]•;çæ ³ØF¨k)MS’×™ŒÅ*djŸ0Ã…£,öbu²K¦7T,¡˜Ç¨üÕ ÇQggG¡év\º¤TC7üÈÂríOI]í–Ìç.`ÚNôÁ>R~2„X”“"Ðà6þJ¡E˜R¦4ÄuSÿ]†3 Hè* ÄÚñIÒ)ÁVëQˆVb&AfäÙ *1†¿ßg¥^Є0ÇŸGÞKè8þ@MV‚Æ¿OT<Ä| V[‰3î;:øGZT=|лrÝâÁ¬3ÄZF(*Œ´øæ¹ÐÑódûd…ÎåýyÉ£Ðosô³òÑø×ú4È©-C¯]¢j—©†Î©m'xÓö’ª«Ò"èÞçïJOº(O¢ IY£)ƒ¿wZ^ÞP…»0øšH#QÚ’ŸJ(",¸­8ЉH_,Kr=¤ˆNT +>dƒäIë¬+l z¥ï8å—g˜óÏ.ïaÿŸ·Ÿ>_î7»oŸ~zûëÛ·UUõ¯^½*hÿ +WÃV›¡P×Ñøü„€j‡¡yA[õYhïWߧNŠYžžÚz²J·¬{æ—ƒ³g!èoˆÍ+µsË1=îî¤OG¤*}š¤›úÒ"L°fçÇqGü%xâ¦|(+að†'éZ¸¦7%ê1Üi±Ã!7¥è}@’,“H$aNiõ"ä6 è!Ãê2zh§é!B¬ù!vµƒð¡ü毟Ð)QlgvŽHy¤ªC—["Œ˜$ˆbRû 2çïhJè\æôQæ|уzß—Ë +3´euŒO;G)5 ¼”T„™.St ® º†ÅO[œôþÐôf¶XÆúýHHöWý®*Ÿ†ó‡pÕÕ§ É~,$çp¥Âz¿*X=k›yQš›Ž~¶¼`‹¬ÚQVw'³:ÃË àÕLÀËTÁ-z%H’bƒ5ÏbCšF±•á›diX+'½"Ž¢M•~ÖÛz<õ¹´Ë‘Ó cÁÚ!Á䘾Š"lµ;Å‚Tþtä´K‘£Ã0’%¯§Æ}t¦8ãì4Ð)¾#·Ø1’¾ñO€XT–t?òL‰s*?]Š å_襊QE'0“!cÁ“c„^ š6¿)›%†£²ñhUµJýq³2›kŸ zµa-hÏ<— P±ë|W˜Æª!ÿ“ïèªè9ºÖÇõ4ŽÉþÑHš©d$Í +ÆAO)óô±s’zµÙ5êpF)5x^\¬ Ûðÿ¯…~ÿ«MÙ&gq닲¤\½X–Ÿ>ÏOÅù™\¹&ïëaÆU®¤¥Ø ÚÈõñý”ö-+ž>Ô±‹)« 3³¯§õ²ÃÆà_AnãßAóF] +eëP‡*jØšÔ!É%nÔÊÆì³d~FÆ<å9ÍŠ?tc´Ñ Qx Õ8Š óÂr:ÓÂM0ËÄ©ª—Œr®Šð­;¥žÒí’¯\ÓI²ÜR‹‘’BÏI¦ùöÏÂb(>Š®þ­¬øR:Ã)–ª${…ûoÝâóQp^Ίװ²C¨3‘Ø©5žŠ<á&%w7èè”VöjY¥a»n‚£ƒŸE|Q|¡SÑ…œöê‹/‰Ó<™Î#ˆîàçù6,ÖÛĈÙHÀ"©CΊßË®;¸ÿBŒhCƒ,7Ôg"®VBh"ø:_OßaZ`°5…Š944R©lÀ<~/=JFXÎa+‹Í¹WY¾ ž QV“u2-ÎUC>ê‘‹8e'Õ  +¤m=í%]å©XOözzݧ^$9®¡¡þ¡eïQª¥)G)ÿŽæš£@¤Çî×½pËh2A„#Të„ë^.†Í€aÜÐF`@]’ÎÑMî¤É[Ýäs„±vr•ž)/N4«ÓPÙBlŽ5 þý¤TÖ±™VOH0ø>ÄyµcÙ%ªz ¼¯$Tì-1âô( C-D¢*dBÎØG9Ãx‹¸9Ýg‹§N¡Áeàp¹ +ÖÀð]m|“cµ&…}tß:g#ëç@¶¬‰ ›«©dBѱ3¹ƒ©‹‚#$=°}¤2:}›ƒç»šž£7Ïé. œ«2¨‰Ñ„¢E=ËàÈ}>v +F‰ýí3¿š4õºlr òÈœtø0QŠŠ“ˆ{[ô|k$Ã;á$½Dêc )aZbÅÛF9°“þ&€©¸h܈ë;ºïБé°ì5v½Qª÷²ÊäM¤uEr —Ý£x‡ËCúˆövŒºuËÙŠ¼cZ™†8e~MH†‘êʺ+²sŸs6qRú,?â9¨MDŒ³„t•@ŶüæWÕõ’Z-úÄJT5w G…ÍØ¿ l°ÓÝ +endstream +endobj +81 0 obj +<< +/BaseFont /VYUNYH+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 210 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 211 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 302 282 0 0 0 320 0 0 +0 0 0 0 0 0 0 0 0 0 236 0 0 0 0 0 +0 696 574 650 0 0 500 0 0 0 0 0 0 0 0 0 +556 0 0 0 602 0 706 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 0 0 312 800 556 490 +528 0 378 396 340 546 508 0 0 518] +>> +endobj +82 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 562 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 73 0 R +/GS1 74 0 R +>> +/Font << +/C2_0 212 0 R +/T1_0 213 0 R +/T1_1 214 0 R +/T1_2 215 0 R +/T1_3 216 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”TÛjÛ@}×WÌ£ªÕÌ^´Cs!´4½…PÔø‚ÓÚ.²Kh¾¾3+UµœRã—ÕìeÎ9³sVùûv¿Z4O{˜LòÏj~mîa:½¸º„ä¢NPëytÎÂÝM‚Úà 8¸„gxxD˜A’ßÜ#,wI~i¾ Ô N¬ŸøHý"Ãùó*[-”¼„<¤=R ÆkS"o­“ bé¦õsr]'×·,aÌß.“¬ä$'9ž A[cÁkBíÿ °úó7èÈ5ù;WÚªèÊòšýiäy‘ +ø-À¬/3 +endstream +endobj +83 0 obj +<< +/Filter /FlateDecode +/Length 5521 +>> +stream +H‰”WiÛÈý>¿¢?ª“Ãîfó0 øØY$ØEDÈ—Lh4g<‡Wš±×ÿ>uôQMJc†G”HV×ñêÕ«Ów»ç»ëÍöYýôÓéßÔéo›ïO/ÏêçŸßü NÞ¯OÕÔÖyøÛ¶NínNNýG£nö'§kóŸFµ¾>éê€}íU;öõе²¾ö¾ƒNVN¯ÿ{òËúä—ßÁê`ôþ¯;={hÔǧ“¿Ÿœ~B~Û<Þ¨ÕÕcõë{}úû‡¿|T¦éKgžù½0ìÅ:8Q5uÓŽj½WüòM[³[t1øºqc«z;Ôã8vè׿VteÚÚ©Õ\˜ºS«]µ¶nñÂâ÷'z¢W«K¸!©Õ6µU«g]Y[jõžk£Vê«îã+dëe«+×ã­Û+xÞÝÑ-xiÿ®¼Rúß뿦äOÄ a»áˆÍÐSȆ6Ê6m=ßMâý§F×@/ÚPDà&\@Ì·º«8B·ä¬ÅÈ÷ +“‚al´sxç»ÚP ðÓ=\4ì.(zuq¥¶zÀ›OzDðºmðØ 1·”!:r:rJmsê9§7x°‚ªÕ…6¯:rGWÆ”â!— +*âð­Z›>øïðÉZûF­Þ¨g:¿£Ò~ œ·È'µQ_B6vpwÀ‹jiiÆ£E|cêÞYWÔj.úá¨]Ó»ÙdB2â2Uöcw%çá…#H!–G¨ì(ÿCS2_6„CzÂRn8Y±(Žè°æO˜ ¸ºV7Ñ:—ó«vTú+¬ }TטhO…¦Jˆ‚“{{ ÎÃõÂCØúEÓ;î€ÆŒÇ›¾ Ñô-ûÔ¡ó_´ãhzó0âÏ7zKøºÒÔ±[ŽùVSr6˜¼ûȤ@M@z›ô òŸo—Fi_ëñnØ2£«McÇIxëè(Wâ€ZôTêɿŶñ“âì÷  >×5Î7Í |K\7R¼mÌ +SG>çábF ¡C‡v™=LÑÔŽ3ù†±ÜÃñÒ¿ÔÐ;ò§EOŸ¹nO*w9ÁL÷ê[$fm®ÐíÒ +9Ùêu3˜²$ p=@'Ud|Xì-Ew—I>ûò‡Ðg@b?%u§®µÅŸH³Ì†l ÒÞ!Š-rŸεH}›©}]™>¼áE™,Ó>äúJ“ÙÜá\ث㮘sZj &Œl¬¢žÙÆáñBÃ5ÌE7§ÈN‡Þ(ßl˜I’mM_8Ç°9nç+íÉ-£rø\/ÅG+ðìÔôGâ{1–³ !1Ÿ™”®˜iñ—]‚sLQ+ ¢ÊN„(Ñè\àÌõê1ç“ñ…µRsGî=bB´=“û*Ù“G–Bxƒ‰m‰ƒ¬îèHlFnÕ”Nâ@ºÈÔìÖ8ÌBì±»ZÖ$¾èžOŽçöø¬ ……sãtœIê¯ÏtZÿÊiIè$k™Šc{PüqÍÐŽCÝt£-@Rh‘fèJ‚röþ Y<bÑÆ ¬©¦‹äÁD)îH<¶T'&xwŹÇ:Egù@wç‘ü~Ì@Gpµ,`¸ +#µ¹¸àÑs '<Ä%£“/Ê× ¢åÙ–Ðt-úïÑRŸ!b4îìs’ð DB›¶‰ñlf%ò&Œ® 8/ôH +|DKß_áÓ/ÄX?Á‚?‚ .£g, ùkwº¥Iƒä×°ª©¸~wšg~;Í´ ©É ^ÿærjPã£ð²±@xãF*–4/Â~"‰ŒG rŸ=ïo{<›~§òÌÅGËÔÃD¦‰€`}a‡/Cy…uÆCê„lÅË4°$¹™-:Ízx8eÎ3 „ï*ÏòÈüôþeˆ)!‰¿ð6i‹ØÈö> s9÷µ­Ÿ ƒ¼°æ}³€C À¾;@¨nÖ¯»”0íhÄç5•{v5NÝkZr* fZ’Ísk­‚¬äúlÓ ²¤¨矻~zYŠ^Z³å’ì2€´ð,NÕTG œÇÝ'Úd®Œ}¢]Ok*úeeÛ}C=¸²á¦»€ÊŠùM³=o¬=K@©ÕO_³{ ˜ V–°±j¹‰IcHW Þ¥hÔ„´Æ].ð=p]J³cÞOy¯Xí1¡®VŸt;2Õ¥u7´bNus0s*qK&ɶèá‚$ýIÒ³KÛQšD‚$!… \* Çœ5¨Ús.ô.% + +ÇT_*b¡”ÏÝò%Á„0£?]A·áèzz€2zN×k€Z_“†wj½UÀ, ÓR$Á +/"°<,|YO!"°Š:.“§?Üì†+Aßž7Ø|ø +;bV!äñpØô ¹…¥&À³â¡ÒíQÊ@ + #gxÇágGÈx§©s­y1{»°µ¬)“c89 '¦é†²Û,ç›a–•ŠÀq†[º£Üqi  ¥±‡Œ-¦ò.¯ ¹äÂÃPPÙ®¥|ŠÖ+ÊDHäüB¼"Ëúº‰Å0M²”^˜d[NËö0…y? Z 9=@–A«Å™‘ˆgü+Ûš!uP¡L +Ê©xþŠ¹š‡ª—Û>ÿ…GGœÀ‰Í⪄Mxú–Øse¢òó稚x D'dZüât­8Â’4=’æ‘¥.ò}8gÉÀ5 ’îàÀíq70&`¾¿ ™Ø Æó¡} áuj!ÐÜ‚ÝSÂláîiÛ‰ÜsGܶ(÷zF°©I”0%$ùœÆ 'ªåÍ*n0lÛðàë`r,,¡øNWÎàÈq«ËÛÀÂõrLF}š&p'tû.°ñ~¦‡ÄêCPëAA?“Ò˜ìF>ÚlÛ'{hNn3Ñú¤P$˜™õã¦<¸¹DÃn€|K*ö¬R.ƒ­/áÕôGà[CÖx0M‘ª ÎSVnI#žhùAAÜOËŽS'ÛRIX…æU‹WNª°Õñn—âLømT"<Ç%äGçyÝå ¨òåÐî3±:óåK­Ô³>‚ö뾊ÏX©ý"ËB— %½ÐmjÍö&2/Õgyå–¬+Ö›ÀP«1L’ƒ? œò9wØ6p9ݨPú©¥.ÕÆYª¬Ø2hb*ÓÝàZÿSezúJj±Ã·˜[C3‡žY–’“ö»Ï¯Æ`ãÄÀD +š+â8Ÿ6Me_´®Š-¯/õÁá-ÏNv¼^îxS6Xˆ­^` —ŠÆl¨Y2ﲬt”yAãA…“TC&|ÏgVÂûbñ +òa."“n0ì¸b,h‰¤piQØÁ<ƒÒ•ÍÀH¢ïðÆ €äaêäx ã"L9~Ó›B*8p| R µ¢È"îUÞ-“À2‘aáè){©9Å +Æ/Øc—!jX¢âš–ª¸QØã³z±~`&j!ì¸Ñ#½*ìhõCåÌíîÿÏvû!wžéJ Ä;ÞD¥i¶\«ùºÊ&[ì"07Ö}A®(~n¤‚Nö˜&"ÕkÝM–x5BÓ½ÄóŽÝë`nŽ÷ë,¾e­Ê¿„d~ÖôQ/C›k*N×kÀ„Z_“9¯Ö[…W+2liB ^$ÜøQ¨²3¤ä­P'a¬D[û}ZýH섯_ÂEå ÈáK[í¹ <® ÷¹Fi|òÐ~6p[2ÃS·²Ôõá(Ú¸ø‚½ó•®z´p¦;‚Á;x‘Xù“¶-?èÈýsêíÂìš2»†³ÛÄĶ]Ù߶G7ÍjVB7 ‡t?5cFbhÒp@ÑY.&‡8sŽeÝ=1~Güb§¨TÉb´”NV8>GóÃHǦZ0¬|Á¹—…± ØUf!»:7ÑæÈÓÂR›EfšêÓ!Ô0?æF:gT m¬/ˆÏa²vLìå±ç¥¢ zå‰CM–CšX=¢#k„¹ÚÈVÂ1;ØShP&£+»¬õ—Øß=¼¶…ç¾? QË`Õl–³ýílQQ3‰dÿÇz•,GqÑ»¿¢t„fܵôÆ C@øÂcßµ!m–ùë]¹UeUw +ð¤uuVæË·à•.EÛ¶ýãê–Þ7n„×7ãv¢Ü|¬t!6Q(,NTOÞRìê–ÓB§÷j¨­SÎÜ͹¬{£³”ò6Wl¶’;óÒo1‹aé%&mËsgb’½ä]xàXªüBé.? š¯9†×îà‘m¬5å3}.¿%-Ýq¥O¢06+sêxúËPYóì7hù4?8Š"âXšZXôÛb%ÇÐòÎîÒr‹Sºáœ…Âañ[œxÏc"RÆß¾}íI¹Q·ÉU‡öÑÁ*’+zI–ÛÞScà#Ÿ`ûÐ;^ Xãì^4þ‡¾‡ÑxÒèþ{4z8¬ÑÁ7çÝûý0…Ü—w«y±Ì$ß­¼ +ÝÁßÑ—‘9>±œ"’<°Å¶Z&ŸxiRl2.üÇ&éàz'øê ;ëÍšúJw_ÁôZÙçñiÎrÓ¤lÏRPN©¥q¥p}"³=%šŒûL9ø«Q½êN9 j>Pf¼ ;ÿÚà¡Â#FKƒÄ"ªº'=f†õŒ>w\ÂC‹`†%¹Ÿ2|ÑS¦Ã,ægÚ&ÌÕx€d8 „¢°÷–ÌÐZþ°ý¶cŸ‚á‘g]»óóöÎCù6‡§ +߇š‹ÚÙ3½€ÿ)a2îJÏô´C¡“ÒÊE“•Ä„Ë+y3ªS~É"¢£u 4~©Ãr¢Òá%¦E8ˆ‚LOàJ!Ê(9¡Ót*±XúGNmÖ1¸Ž"*)+tiJ︇ÜG,‡L&›Y>¶ê÷F˜Eª°â»ŠÄ Q™¼Î† 3nƒ}@~ÄÜ5X-TR4ŒWb%¢8€H£e:m¹I1•=q~Œo@þììE0q†7ãpfb¤ÞCÿ ~#u>–œ þr9”Ÿ1äá à“È`Nùƒ¦|…hvÀF(´Ü/ íã'Ú¾»&)OìI:Áe±gGêñ.ÍGÅ—²3Žr°ÀnJm‘?Ù€SØ¿äZ¶;ÍÌy0wö@NŽâa¦f"FDŬ„ÑÝøFFì5},ú‘C‘E’݉‰Žxl¢ƒ‰ÑG®B²<å[ø9a Øæã_„3Ÿ7ïi”‹Þé Ân÷‰·&)·íjÜI¦ìk8ÔŒ:ÔÈˤÏK“´’9Ï™1ÏkÑä +4ù-4:D4}iµFÿ¨6$ÈÈRDt€|"3Ý0b>°üdïáX«y>`ƒˆÂ³y ¤‡Ñ³}Àˆûü"Ã&É`øÄ厥;ŠjõIk²ïL_–‰@.š°¶·€Ç2oPˆAþ»ÅSž„Üéwé´ÿp e»l¾"„¬5Gœ-8árd +.†½"ûa¶CÎX\v8qÝä›…-§–(|ò/ß7ww}"±¸Ú5s#Ø·#^$„غÞõ›^¼ÙÍÂ[fÜŽ^™‹¿Ú©côÃ=»¼n½#3n\BK±ÞHU'­%§ÀU/?ÁÈÂ×Ê#Wºr?tå“/]yx•™úâÍïa@¸ÿø„ÇE†{òL¬RÆ«LÌÀhFÄàst×4²0.ÖQóM¸ƒˆÿ(R{fìc2èD[úhò$°!ÈPï˜íçR”¦Ç­îµl—jž5h¤É—ÊMo•eTŽ|ÌM°Ö÷ßr-\]š‹¬ÔKtÖ@XRnO‡¥A…%“c°ä·d#¾¨îœèla×ì¹wèÛÅÓª½ƒè#ÙC|‹]Q6œû¬+ j“Y£ôrb }æ·ãQ6“¶¨"-ÛNeÒN…„3¿ù7Wã“z†ñšµè™žVëåPÖP<ŠûÅSrW’oG4J8N[±ôâ>hCøi3G,MOmuÿ¡Vû Ps +Á„ëæû=Éí^I4lƒUÏð(U݈ælDÁ¹ C{æÝÅ/¿¾ù£k.îI¯fÑ«'9Ð$‡8I3‡Ò{gi’ng Ž]¸>ùkàiñv¡»70‡ðÅúxÃOñ†“˜@rsšrs]wµ¾Ë¯Õ6_àNîekZ¦ Zk;Ã×yåÉfSâCØŸmóEÛ¥Eë·XÃdgkG¼‚±ÓèŽbd; ”ØD‹£¬4½ë¢Åî_DGLª¤h)Ú1)Ÿ6O½‹:ð€ƒ1š ÏFN‹ZNX?/šiß ™qQÃ+&µZlæ™ûæuKþ!k“åœZìˆ/íìUt~|ëóÖùz'Ü›L ͸ak"ÐYíɨ{¢ºá6º!³Ô¼¥`1gôL]…ç< %‘E€HRòŸ[ôZ " {Ô²o­3ÚÏT%¾ ¥üÞ ˜ogTÖ½¶Ð7£ä’Ò]Ly’ÒM²4xß蜂Ôrî iè¿2‡"o%fì¶ö]è¹³.̳¦}ÿ¹â\—cÑø ,öáÒqy‰ââVœä ÄU ÜóCpæW\oÒ‹£æck94‚h˜x\a²DPr³Ê$CŽKn“ô1ÔARëYXc¼¥5ÒÛ<Ñ”;²¦‘l•ŠG;6o‘ªW„ +ªž4FÎi´uDÂ[yÜ’ÈžAg àÕ‚Ô+0ØÇ™´>:-€å‚¯‰ÀÊ +¸Èmÿ¢ b Ðƒ›Ïú3ñöéƤp…+í2ÐõE¬ZäXÒI°/’ ÒÉ2 Ú‰ºŸÒÈ‚I"9m“úrø®Åª~xYb‘»»wû2º.öc¤ÝŽ½ÞÏ9Ió¶°æNÁU‚ ¬„cŸs&@Ñ ýÁ¶ð‡yœ¡&ñ¬ªó´eà¿è3àà(EX«ÇpÛzBµìùe×%G¬}óžöc3%ÜC c¶8¼/DNnœ¸_‚‚  ;GRÀ:9WK'qÄmêGs GUïeý‰íjñ3Ôh®ÂM­æŽ™æv›þ¯›Utx8–ÅЊFjÔÞÔ’4œGÉlÉÍ€ : +í»%+)?G_SäÍ’Àžh¹ +ÂLÃÉo›w­CZx‰, M¬íkËå"Ó€BŸñ²=‘Žˆë*Y›Ín&¿J|•²Ü2qã'èàm‹ÿðNò-crÐ!¦fS¡šgÙì6ÌØÜ«\ðª¥B_±óy®(ò–ÝôÝ ^=yzw¦æL¼eØ“==‘UûŸ&Yª +endstream +endobj +84 0 obj +<< +/Filter /FlateDecode +/Length 5383 +>> +stream +xÚÅ\Io\9’¾ëWðHõ(îKQ€mÙ÷¸ÊKÝs(Ï!-¥–ªTJ™²Ûÿ~|«r¡ 5>HÎä#{Äñtürµ¹¹œo^¼8þpü~öýîaóË/ìÕÉë£ã_O»Z³WgGŠIc=“ÎY¶º:~«˜fg—,Èè™bŠEé™ÖVÚ䓲Ìxé}ÐJ³³Û#îÄÙŸGoÎŽÞüöúH±³÷L±+öϣ㷷ŠÜýÏÑñÇ/ŽßÏ–WŒÏ—ͯ¯Äño¯ß0ísÝÝþiö“ÚgvöÁ–Ço5ÝHkú^3mƒTÁ*åX4Iæœ}´pŸ?øKÑ8iøšÝ møƒ0NF¾ÖÒð…h´—šßˆÆéøR™ù\4F~ÁècÏ—ì|”ù‰0A:~"¬’šVÒòSf„•–Kრ\ ŸdâŠÝ '-_²3ÑèįioöwÑ™øïì¥0^&~/2¿ÚKÏWÂIÍïp³|ù9ÞÐñk¶Y:~ǦwÐVFþÓôc6Ù² ¸\h.Øy Œ ðÃKÓ}ÈÎE£dä3¸3’.þïìo­Dw /¨"<ÚÙ·h¼URÅâT4œ TeçƺßXªàÇ{´0j'cÎÁ{/Q ü8M’š/@ü‰?AÀôcξ +£‘å š¯D£-¿È€¢6 nìIÒð;‘eä·_`ó<8«ñ2ðH‚Ž%C¿*ŠÓ“:‚ô/· Ρàà ¸ö +.¦5Ðh+5¿Å,¿…c/W“ëƒpYÞÅ™¯æ¸ùDúû‚:tº_ÔM4 ^wB'4 hÍ:åÚÉÌ/Øj.à©žFËŒ;z>±%¡' F§ÌnÒ´÷)MäΛ²ÒÎìÖ)¥¤ÏÙ¥H:µ]¢l-’Œ SIæbÍds(P&ð!ЕÈåÄ€±þ¸žøŸs°SÔÖ€ Îsü«°š$D–:‚ç¬ÓDÿèÈlS>¹†M;íBÝÖÄ“eâ×ì›@•ºΨÚÚäù5»„3|¯EWfä^:¢éÖE]ºÚ œ`+véлÅC¿4FFþ ÓóaTgµíáUºäz‘7J*•w +=¤ mÎ>¡ó‰Oƒ/ØPãñCÇ/á?_Š€âk­XM ä^ôÚZM·Eï¨¿ê¢ ,tšÚøwÑ°*ÚpâEìN/²Ãýƒ}™Ún¹Ç@­1HI½K±ÉÊ‹8>sá!~a\Ñ5:ð9;|ÖLDéùaÈk-Ÿ3 · —TLËÀßD°ÒóÏB8ƒ¶S%k_‹ÆbÇ¢’ +ó #Ðø5Ø,£ +L+#CάÑAÏVsft@Ò­0Iš+¬sҩܯH^+.dŠžÉ¬“yt°ÏQêàûƒ5Ò7<º[Ó=XÓÞ­iï×tgY¥6z@d 2„™ÝšŽÌ~M{V·¦#´_sy¥L*3™‚’jƒ“É ŽwQF3:¼]ÑÞ­èŽnW´Gw+.AĆDLÿþ›iŸvɳ`¬Ì>˜œÙù-梷°Äíìô¨}„ð)Ã{W6nŸMŠ™5Jú~uK¨ïLŸê†;·$OÖâ§1f3Z›¼Œ&LÖ6Æ*™CÈ 4$H“µÒá9o£à -“q6ê!SàSеWßöÐvžvÂm[ûï’B-4F)5º³  š;x²å‰,©Ý}?¯ü7sÜÞ)?²œèÑIì`ȶ‡vrä 'ì²ã-kÿÓ–<~óæäMü¤žï.J¯L.¼T{i¨FÖ ß^û¯ÿÉüVtw]R}¿a´l‰FAþíJž€À”~U×öcí$¯[|.ÛGˆ³2*“ +ÎuŽh jI×a¡ØÚp z +àÜs¬°¬itæ¬ÔXÁby®Ë"ƒ5ûÎBëï§ ¡J–Ik°»©E}¨î+–•PA~½9k¸$¿|GºqÀ‘ŠŒu +*Û^œéɼ•ìu ”ÇBÚ~ǪHŒ»•kHØÄŠÚ4~9¾a7TéÞŠŒjO_ +Pѵ˜/ÜÝ(¼éR´€O¿\»ýòé á˜cû®Äv¤+3ë³ Öøœ™ONfí ë…RÊþƒkqnú]ÌÚÚ¬ïš\Í®Iímx3òé]½oC”*… ¦äüÁߊ°ÅKFñô ò;D8Vì +ÎQ\KLè÷ÕŒp«Eÿ@ãH;=©%ˆ¹@^kÂ`¾+€ 8yƒŠ©j¦CÌ”s…P“ÞƒŠZ(ê´ñj«öd&©ø£ñCŽF%£ö&jâègàzà‚P-rŸ•Â'WŽº„qNq´lÁ‘"C2ó¥ðÈ8„¬:´¢å·àÏ×™-ÀK/0k¸ÖjÜ—\ÄYD¤€íVIR wí!“a§Ûk<>H¯½5O²äöÛÎdÓJÓñûûj&¶áÁðßÄšáÀ³ @W¢ž{Ôï„¿“K±,á†+M ´˜+òß«b·:Þ– Á§#’h¸ä0òŸÙ;í™% ÀíÁÝ–¨H>ŒŒª +3LaØ7¾Ké‘V{W¼Èù\dº á¿Cg@¯Æ„O›ÎÖ¯˜@|(ºd Ãç° +÷~qä äåEáR»3z#|è¾Y¢ú_ œÕJX€Ï8å³²AxiùWhÎ +ŸN<]{â6ß cÚÍ'Àwµw]DDK¥´ nßPœk@ØeÄð3_þD>`&(±çpÑyMY9ÄþyÉÇ‹»ÌØ g²ð4lªâá°¬¢ÛM äøÀÆÔæøÁ {jv•ÞµôÝß·×¼_AŸÛ¸[³¨h*V覧Ô=»ŠÏ1üábЊ€}²~ß·W„ˆÌÑ«^£·+ÕÃ×*²]µ^§?Óâ¶$“&ìf¯à)mÛk/ $v.3X!NÂ^c2y=[ÒÇWôƒJÛ _ãÏòÐ-ÖYK1]ÀeAªéiÈP¤œ´¤ƒ>s˜x8¥Pù + +Ê×ÂZ 8ÖÏ‚V1;LÌ)(jwütÒ>oÚ,Úó :oìÀ£»¹ _^—Ýæø<Ù­3iàQªÓÛœö¦·v­Ëoóþ¹1 îP~;>jCÛ<®q”……A€àWàºÁQmXñô]=§ý°ðCÏO±$ŽcIfŒ”ï^Ò&f;òÂÃr6JUÅ…Õ5vmÔpKç¼[}!SDƒí‰ì´Z6d»®M‰aø„Päu1Š\°oÂâ€J]¯YD¥ëª ᤾‡­u7ñ¿Šµf»gÓ{R¥FœW,ù«æìjUJ%rt÷à”tÀcÔ3U«6…ï­µg£ö—«v­²g£ü¡Iá¹ué eïð/ZçéùÕ 6qÖ˜œæI48/Äš„´Æ´„ƒ¡²Õ^f„ï*…DDc$‡ß¯À{¸¥^Á¬ Ež*(]¡;Ñ» ¸¬Ž*F kÖ} +h£Å’sïö(Y®f#ÿ^c5© [بàF»alP”“ÓÅç~"”ý¦ó£Ð\ÏK¾×˜Œ ”€u‹§É0¼E£9cU7MOD«§7|Zí©tµ?‚U[ªmÛ;I»Ó˜Ä\…V[›dŽ :ÁH¨s׳i ¶ªØö7.ÙŒm0ÃÅ‚Gw—Ä̶#Åa>Q8é·(œ\)€—bö mâ—ˆŽÛ³‹ü{}ZM”­méÙC¢4Ð +§Â¤8qt‹½:ÇgçHÄ_X'>ƒÚÃrvI3¿+êX³…â¹ Ô"µHFoûzÒZ«Ë|0Xr·¬±l­ŸÉ¯{#}VY?)O3Úì÷ëÓ]ëüº¶{ó4Ãao>:ù †ÿc}Ú‡ÐC]` äÖ +anPwD¹µ`pÃ4ó½*®Ý0½ +»‹m°`›UnÇ’·¦  !èø!á‘+F)Q—**M^”>E+Jz$àdŸëÎAè‘AËq†”þ%Z”óµ†ð¥kaʬ´n3²:fìãrÂ8©³Jm€_uÉâ#¸¥ðå¸Ô~ÀâYÞÍ3eeCÞè°§²'*/•O]ªü ò‚Èç7ÚÁÔ¶9å-«‚ØÍDQSeÒ·  -N£ãSãâäÂÿ‘¸=\8­ŽÄôƒqÃd-O6›îGyÀlðþ¾4®îzOÑbEéUŠMæä“ø‚9+BqfôÈ$RP´¹»Ä]«èÌO¥‰0•`6é›S{ý_4êÐàôM"ççJP¿E‚¾PÊPºÕC)邃Ñ‹ã?AdèA­Wk\Ý&”FTgTUrc‚•Á'›J¨ï4G3ó+ôK ôõ߷̨а$Ë +…²­A߬ FBê¨Ñ_H@•Ì‡Dæ²L ’©­¬Àç÷èu56@ö7е£ É÷(“ÆóŸD“‡Íl‡dξt›` ¡†Žª)$«40,ŒŽî¿uœaë$ïÂξ+sF’£üÖ  ×–ý]Š½7þB +Ô:9\i°ŠGG*U'zW'†ä¾Èµ0Âý •¤q\’&>9£Y)I44d\ø¨ú3£€ n¡*¹2 ÿ£ÞV¥‘7êñn‹×Æ÷Ñ–W>+ë1<ߔўÆX´K 2iDÀq.×æf‰|n¿¬õÑÞáüŸœù}U£OÖd™ƒM9Mh«SûiÓ5E ø¨³èT ÐÔ¯[·š!ð€òÍ”0X³Ñ{2QjfÒ3Õ'ÊÉU¦L¢º>1ûGŒíZWŸØnÄèô~¶|ñâøåùæa¶8›ÿkÃ^¼}óö­RP_ï«aöhÔ0£Û&sÀ½~äQÙé¼P:éíã ¢ôüð$ÓèÁa­$Њ4éÅM4Ueú¶j¤iãvn<kM;œÜ»¢´…ß&+¢Jmˆ}†Á¦tp°ÉÿØ`TdÄë2!±&8qŽ•ÏL”6w 8JQ¶¯Œ=Ô$ì¤3æYtÜ“¡tƒtQ¥6¹ÛÐ kWQó~±ÐñKѶª|›õÏãÛL0ÒD•ÉáWû6öú¶G»Vú¶X‰©ó÷{°ñ`¬ÑøN=Nñô"!T»”wvZï[Jõq…{{K/ÉvYHŸ):—¤:ÓÓ$¸?:=ÚµN‚N” +0˜ +Ž®ð?EáAPéKƒ#ô.²ÉX”MÚ6›\®3[àË1 ü×ÔßÂa†9°vÚªx<÷ äWàü`ò^ªXQƒ¾­RöçœöèzO5¢¾ÊS¹§7ý €?,F² ûI¿»)„À§ÙÁ ¸fP÷‹å´}(è<-à¿u=¬Pdóò両Ø6›ÊFõ¯gÓß=Q4ƒƒ§ á©ß:+«23÷LÍG£ó rT›™Ûß||´k¥™l>ÚÃ0õølÈ× )mÚ†r±Q=țت’ØNvÒÈì}«6Ôµn š!ëF0¼¤|m5j+#ƒ‰XÀsbùæaÜ’gƒa(*Ðp"„šiƒ1Sª¦ \|ºÙ) BnKŸ/TåÞà+‡ œ=´_÷N©’Wí7ÏTÌ3̳EhÇÒY“ÛӋn4‰hg9¨³ÔÖQD. ¥®ò1î™ÂŸìóé ŒÛþíZg—þ`økGÍá¡€ñpÜ'£}«ðžŸ=¶+(.b‘ß•Ñ¿9þylt0Ç+êû-û&`$€WÀàµ-&|Eç(Ñ}÷•ô¢fÙx]=Ä7¦¹ÊüüÓ£žŽq”YŒíª‡’:eG˜ʨ%ôák‘×áŸ&*–sƒuLú;_ ðö€Ç§>%–xa¿?©'5oðU¬áø3=Ì =¨6.¿?è=ÚµÒ¸j'ntȇkt4.CÆe-W;^ÙÍÍviÑ@ôsÉ4pŠ(°áàʲ+›qŒ¥÷È°ñO˜RBÄýNM¤ë¾à&}Ü}‡êi_;£]eS5Ý]ÿÀk&SÉ_s£m½îm~H:èvÿú‘ÊA³€/ÉfoJø<ÁÎä9½!¯ù¦ámWÏfo zúðfÖNØËSšh?Åáœwˆ âÈì$u»×ﯡ}Ã^ž²ºúí7Ÿèïì±²ç[ö’œ|bb#Ÿ°mû¡<Ž~ ;rÀ’ÿ†Û™æ +endstream +endobj +85 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +86 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +87 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +88 0 obj +<< +/BaseFont /AIJSVX+MyriadPro-Bold +/Encoding 217 0 R +/FirstChar 27 +/FontDescriptor 218 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 219 0 R +/Type /Font +/Widths [314 314 588 588 322 202 0 0 0 0 0 0 0 0 0 0 +0 260 322 260 331 0 555 555 555 555 555 555 555 555 555 260 +0 0 0 0 0 0 656 604 595 696 534 527 682 689 285 411 +614 511 846 690 717 581 0 593 540 548 682 636 888 613 603 0 +0 0 0 0 0 0 528 598 451 596 528 341 585 586 274 0 +542 275 860 586 577 598 595 380 434 367 583 530 759 519 523] +>> +endobj +89 0 obj +<< +/BaseFont /EWIKUP+MyriadPro-Light +/Encoding 220 0 R +/FirstChar 28 +/FontDescriptor 221 0 R +/LastChar 146 +/Subtype /Type1 +/ToUnicode 222 0 R +/Type /Font +/Widths [763 484 484 542 219 0 0 0 0 0 0 0 265 265 0 0 +174 298 174 351 488 488 488 488 0 488 488 0 488 0 174 174 +0 0 0 0 0 585 505 570 647 466 462 0 0 211 0 0 +448 778 638 0 502 0 505 464 465 626 509 820 0 0 0 0 +0 0 0 0 0 454 552 446 544 485 262 544 536 209 214 423 +212 819 536 532 552 542 295 373 309 531 452 722 429 440 403 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 174] +>> +endobj +90 0 obj +<< +/BaseFont /QRBZGR+Wingdings-Regular +/DescendantFonts 223 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 224 0 R +/Type /Font +>> +endobj +91 0 obj +<< +/Filter /FlateDecode +/Length 4907 +>> +stream +xÚí\[o\7’~ׯà# øP¼_#€mYg=c¯­É<ÄóÐnµdM$µ¶Õ²ãùõ‹ªâ¹ª/”­ÙM2ƒ ‰ÔÍCV±î_ÕÑá³Õúâl6_?}zøæðõìëònýÃìùÑ‹ƒÃß+v~ËžŸ(&õL:gÙêüðX1ÍNÎXÑ3Å‹Ò3—£LÁùì˜ñÒû •f'WÜ‹“¼<9xù犼fŠ³ÿ98<¾Rìhyð߇oŸ>=|=»>g|qÝüø\þùÅ«#f|ê)Ñ%ðf¿0©²g'_lyx¬‰"­é{Í’—Êf›3ÞÊhlÎÈù™ c¥æK¡µ |ÅÂIÖŽÏD£-¿ÚËÌo„I2òKXùBXÇŸ°Sa•4üN4ÚIÏWøÀ…hŒ‘Ž_ ­¤ççìH˜ ?‚Åš¿c7°#¬vxt’†Ÿ‹F'©ùŠÁ“¥æW¢1J" tjãeä·ì ~w|)+üÏHÃOÙL4A&~+'¿…ó#£ýª¥ækÑdið„$=ÉçÂIËl.x¢ûŽ}\±‰5|)Œ‘‰ÖÒó ¡³ÌüTèÏ÷d˜ -_³S8+ (hLaN#¯öÀ¢Czþ~ò§V3¶*A.J€Â?ù2±ËIªvóf rÛ6ªßXj“Æ{ÔÇféSÊúŒår-Œ–‰¯]`€ËõüT¸,?ÚÀå.é‘]vÂh™ùZd,äZ4øÙ–S:ùÒm ÐÀNCòõ­fÀç7B‡"þVFz¾fKsâglÆÖ¨ua¨Œ´Uƒz;<×pZŒº†”û¤/Šž4 làL€X[v ûÊ®¨oû1ë ‰Ý +°½;8,þu­ÙÆMLÔhSС«¸UæÆK 2÷$óÕB€š÷V·‚Êí¥æôeGQ¹I¼ß^ÎP8ì‡ pÓ}IÌÂáME©ï;‰"øMgˆÌ%ïFN"öNÎjÕaƒ£ˆä( 9 +;rR]Å@{Y'ëÞØÈåndµÁƒub÷«,^]ëx¦DQ£ +¦Ê±Œ4¡Î±Ø¡cQÛ °>Ë’’¡¨IÐ~,è©¥UÛF«^í^è¡>‰ s«´lVåŽh‹q8륛6iêæpÆ:gøEà-9äèغh×'ò ]à\€z€.&<‘]m‰7» £81Š¡¾÷dz:§áz6J*§·‰Tç 3ˆ4H7f®­—ú–K넳`×BSî´u˜`]¶R¬…×Úî.¼•¶wY zcö +Ì/ åïК Ï•¸x°WÃk•ðÕ|qw >Èú(´F¯âÑ+xü9JÏÿIv¾Û9¸B8ˆÓ tð4HO…(s¿GæHú“^äX#w? n«Ð“å—mgd»­á &dà÷œ-¸Å‹JïXV¡²-D;4xÜXÒxÒ†Èù ¡ùO¢±¸ÆómêßíT!8ÀxTRˆ·\á“­&ÁÏ/(,E–q ÿÜÞ]IŠ 9RC±S +ñèí}¤N”²§>}_oìÃЉ[¿Uø!²Ãw w¹‹j`ø5øŸ9ÝZîÿmâ­‹{Ü¢Î߯sÝâ‡Gî +WÅÅ–ä–’û oáv{‹°Ñ[øá²ðÌŸ°‹ÎKE¹›‘Â+þ¤;½a$ LR4Ç? K^¶J1â8€à·¨†w£$rZµ >]â$4 Ûºî-Ù}nILÚôùhÌ-˜ŽÆë)•Ù-FŒO“4.¿ËØúuRõµr7=ÉÁ)þ•ý(ÀtÐm¶I±QÅrͦ¢&·ÅémŸ܈îùAƒƒá¿¿KEO)'à³BzŸ ¢*Ÿ³îñ"vª³Ú$ÉPºY#ô´5WÈÛ©Q>7%6®MlÚÄ_{¬ Þy1j°€Á%lK 'F}?*ˆèõ0í+Ì !r’Q| +pÀ­a±®‡áÈ·.¥=Sò1¢0ÈÀñóÍ>¹É|Àð»[ˆDË‘h +5†¢’—Ú°hƒÌÉ3­ ÿJ (7ž­Lg#•‹ý +“¤ Ã"öýŠ¤dÎÃg2EÏdVŽÉ<86ä(­±ý±ÙÊ óðÜnI{n¿¤=¸[ÒÜ/9;„M&•™LANVVFå ë,cp££Û5ËýšîìvMÇt¿æ¬€mŠýRNuÉÊì˜=Ë–5&È ãNBŸ\‘Ž^š‡„vk:Bû5-¡ÝšŽÐ~Í(‡!å þ‹ûlŸ7Õ1&³ùòvK_•²svuÕ*¦ºñƒØ^Óÿõ}GWÚ"µ2ÓP¤–£Œ:x﹎·Pog¨Î‰&Ô¦ÏÂãµYDÕÎȧ/ÁÔ!i¾†Š¸tÝ‚ªÚ~±ÕÚ€‰42¥{Í)3[ cø’U±8èïblâB> +Nƒ0vDK.A÷™,Þ "…–ï\ $±Dê? ²¾0d1àmC€ d„† vV1”ÔÄ +Š“4zŸì&dE’X ¹4î}Œ|¾@wÂ>w8!Ìz «4 +½ 9ض\ž©’’Þ7\Ã:]<ÆQlî 3ëŒÌÙ@ö?>¹Ìè~,ôsŸAX²à£æÅ.0hCïþŽÌéFˆÂ%˜tÅÒ'Ôa'ÇÏÀ =_Íwº¥P¸F]]a»ëŸŸ‹‘òM9g†*ñâäv´™½ ÎZ­'üo‹ãýf[膘6]tT2E“Z¿º¾ŸÊø1Qþ‘œí… Ó7dž‚gÂààñREì“¡@H/˜Ìl'dŒƒ³Ž´¥Tö¾»¤ÄbM}‹»Î£Ã&˜Za†éØí-µ±tè}åZÕ}™åœÒ )Š]ap£á‘ŒÓ¢‰së3î6Î鮕ƹsˆ;XÅH½ßHG€‘JÁ”ñžŸˆÆ°@u®Oñ—’fÌaaàKÈÈŠAGL#?_ ^S@¿¬àùØlÄ¡ˆ¸×92±ýwŸiÌì¢JÌycà˜¥‘6x›â„ãªé< Qzl–ïÕ颉mpÛÕ‚Ld¨ê” zï׳¶â¸‡±i\ìæ Åk²Ë9Ø1¹5ØÌQr?6\xè†~ë-Øï`ž–j +¬"Uh7ž+ê(M¢D¥Ú°òž¨7ݵΰ²ÝgX­è]…ih@Ó2dZÖ’i•âL{ê§. Š>c¢–zïÛŠLš-‚¦.*þvÕ{dØúI§pþ-–YPa +ú žÄÔ4[* 9D:ÌD«´Ã 1•]v¢Ý(I˜ªê–šçeo…uk •,yZÕ´Ø¥™}Ñâ³–Ái]W!Xª YÌ3Â(5Ä„Ö)¨øíÕ)ccUâc”Éib;‰[¦_qVÒQ’§€pÓ~•K[Ì©àôæZ 8p¢ŠÄ3X®iŽ¢F}Óþyùí. „å¼ $¬z—–wº´{»V¹4«ÚØuøþfvýôéá³ùúnvy²øuÍž¿<>VJåv&û0Ñ=ÎnLÝ(ÙØÿÈÏ]a@Ùü[œ :ͶmâãÏ T‡kA¹ü¼šQ÷ùrü`ãÈ|72[ª4Ž[sÁ¡‘R2hbI© ™û~å±J×T;.lëÆ”T÷(é¡Ä(·Ñ”€@°KŒ@ÀgþV4Ìo¬ -᪌{φ_¢HÀ¢ Ò™-¿êc ^8N¢]âTÐM¬©F¸ Ã|ã i<Õª2%´ì§ ,ggôÞÞj:GPîˆ^9¨¹[u!HeCPaBVÝ ¸ípÔ€_5ž¬8Ç7—@³Q±ó‡‚f!AmKD›ð=[^ÑD¬íWA#9-´æÑfö·Ä­ñUØÙÔFóà քÆF'†:t q³ñ­)…P›3}›×ê*,Z0iÛáœÆ,LJ˜Þé‰íÝPæܲ¨‰Å~çcgr¸Ž&}º¤Û‚ÛÕôzÝda9Þj-4*…­ä-}›8'V†iŒÎë…{óz±ô‰3í*Cè=%™Œ7ÃÚÃÈåÛr·$EV!×øîióqæeÀv¦m?Ízø T1 &ùr«ž4ÅRò6]’²H1³m‘†_Îð l´è¯+ò5«'›·ôð9kõÎlþÞ®uÙ¼5ß mOþ}àÔU ºµ5@õ˜ý*ËNFBM—h·3¡!nºh;žcù˜:í…©ý^˜:LïÃÔxÇOÚdñ/èVá«$ž<æÊ´=Œ™Õ‰Å?i€—†Sˆ»Ñ…`p»Ætô¥ãg òŠí}Õy‡G¤q +#…µzï°{æÞ®•Þ!ÕÖúz­?¦ág¨Aîº7Ä‹Hâv݈´N³» +®Dkì#Á 6á\C̃AÝnôÞ®ut{aP fÇ$üŒå8äK”cúR«†Þ´!yŠ2C7¤Ñ““[?r5»D\îô'=úÄQ`Á)mÔz¦3ÌЭ(¾ +d*¼Àó?Ù—° .h/*Úyú1ÿUžÞ=µq<ñqÙvy +™7ô ö¶:ûºëø$憮͢®Ê߃+ýÒþ©­¶ñ0llÌ©˜›Ó_¾ií¬ÊÐÜ#Á¢ÖçA<¬7´Ý°è½]+ -|÷@ðøä?Ð@°u±&“ó_g_ßÔ ´ÎÒÿ47úXQ0‰‡ç1~OœîZgœþñšc +~·Í@_ß s\Õ ôßöàï¬ ’‹?\3Ð?VÔSö[à¿'êMw­4¬ÇlŽiø÷júÚf Ii”$|w3ð—ŒR +endstream +endobj +92 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +93 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +94 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +95 0 obj +<< +/Filter /FlateDecode +/Length 5303 +>> +stream +H‰ÄWYoÞÆ}ׯ˜Ço€âÌp†$ð.œÔ¿´uH²6[[¥ÏVÕ_ß»ÌÊE¦êEàHâ2¼Ë¹çœ»ÿìvw~rp´?þ¸ÿg±ÿöàáúËNüôÓó—/ÄÞóí^#šZ ÿo[#nO÷ö_¿oÄéÝÞþVýÑ%¶'{®îàø¯«­PÊÔ¦·½Ð¶¶ÖÁ—{'·Ÿö~Þîýü œúO8ôþmßlÄË뽿ìí¿ÃÞ\ŠÍñUõú¹ÜÿåÅ›—ÂÀA)˜ýíÖ²jêF[±=þ—{¡Å?bÄ`ìÐb ß´²rµ›ZVðÆF¼–mÝŠÍY™¶Äæü#Üê~“U«ñÒ•¬|å_©¼t·ðÊ-¼eðõòYxùˆNGÎo$ý¼UYÑðËüÇöO±ˉe05ñ˯°üϽ3”»âT–{ãê¡ÆPîoàëäK©FýRšFl~“•‚öŠÍ{!›Ú‰–†+dþ©¤í1äoCÉ®%å~åÿÜÂëp÷L:<úØ_ýË —õ?“7Ô«¡ð‡²Á-œ¥ñHƒ?ðjOŃ_à­3ÿöÞ‚§¯ñÏÎÇo8~<í7ø¬,žU¦óvØ ¸çß»–Jc«u‹íÄCÇGÁ_b{ÆS)…¿@{µÆBÒ)þJ™ü¾T ÅH’Š¢¾‘š>r!á0Æ•"D•E7~–ÓÛ D\CàT-~–Ž„£?JÕá!àèV~ˆuðrM/œ¦¦]’tÝE `w1†Â —ÿ¯*Jßq× ü½ö=#è‰ øà#>8– +Òù«ü:Ô¾\‹ˆÂŠ+tN ¦*g/ÃÓ7Tµ/€á¤çþ(?ÂÊÍve?Ï$”ËáAš&èÞ#Ì2Âú"!ŽI<†$íÀüš6¯ÀˆùÇ:|L+|íAÈŠ’ÅQÂ\gÀ‚GR`|h\€. ×¢Idµ¤êÑtíHUˬ|K*åGb +£léTÐTŽ/¤ÍÄÕøJÝ£#q”âä`ns;„ë\¡3l›ãqscð¥y<êÎã§ó&öÒ{Ô–JàF%èÆ%På×b Ò¨ÀAŒÓ2r$Ž^M¸ùˆ,j˸(ÂõSž^¯Ôøf½ºPqõ‡J2Þ© eŠ€Ó@AÇ@Äì%HÇD›ZÁO”ä•!˜¢ðÉÉçPýióÏmþš[—åÓÛ1ö>+üeô•4½*³Xø±­¸#Ö«a‰žº-ÒÐ⇕YÛEû¤Š Óq…áP­é8¼wÒx…òzƒPÑc2µSTŽ‘çfy3¡} +?ÍÒH—«@N#ã*häHöLdã.!rŒŸh Déã‰ã ; Z'•;(tŽ-Ê„Ÿ’Òé‘Ò9–-ºæoL%þðX|Å~°±é‰ëI°6R -#ÏØ6ễH×N°[žà&Lp³<Á¶<Ž#ܲ§¶j +ù2´¥ŠP6×ì’n°Ù8Èܤ®UÀÊ‘tžÒ©”W²Ã«;_à[¶HT`$ü•™v£Lu–© ™ºåL­.s!QVŽ)ùÓZ:J8 Z.^ŸûxÏ¥Ÿ+åÃo<~n¬g|æ‚àyËÞàé-Þmù•J“Ëd dÝÅ3èi:«çïÑc UäÂÞ—­óÔ222þ¤Sé})Ñ¡×=ü³/õ áÖSÖüÆ»à.¬ÞÛÞ×ý +ºZMÿïH&ÁPSp0'¶67#¶0#Ú›Š+.:Óq?a‡K”ÙâQ†u«¢v%vm¹]¾ŠÜÛE(¯,îcØ+ÙyÃÁwµ›1žâ‘Å%’W0Äl¨½Á¸àì±P õYÿqf×µÂ>äÂ^7zi‘± ’y­Øì{{uÀs>n¤…²”nR³ýãî–:gSÓæt® a˜öÚNG»™&ä¼ô7F‚ó«´þþAd–™Jðö²å´j;kcÚSM—9tÁgGüËïN|ØHKLZ¬t4o°¦?* 4ò~%º¦’[R3 é@ñ–̼’¶ÇDš”{ÜP}æ¿cìðÛ¯â™Ô–%Ž6½¼oD^† ˆÇóˆˆe" Ö†Ür`ÿepŒ‘¸,írt¹¨Wz)«=f$¸áó¢-²¤´TJ‹,¡ýKÃ˼ŠÎñ÷qgrÀyÿeñ¹D‹þøR¾€Å ëõ9ë-iVT‰•¦[ÀJ;€•‰XyÜE÷<;>GÏ+ì}€U©i¤léB¸Wäஂéü.5Ï50xe¹-üóXÜâ!ñ qK㨲ã)z"?“+ùvN—™Z +uîÆvþûÕÙóŠ—Ösỏi=Õ¡¯F¼«X òøäÝÙ +Le­E.´ òŽ:L…ŽÒOF"‹Ãä”r½<$‹q{œëÑÈgó[#Í°²[*éhðD²VI5^øòíu0ytN&”Ú›ˆ¨3嬡ìØ’Â׆ŽÍZž¾LµˆTúèŽ1Æ‚x3A —&œF½'ºa(­ßx±Ç[ !“C¨ÄErWÖøÅiûiŹm Më–°é\湧˜ˆÜ[ÖCSôƒ80ø*¢ø‹ßÝßúéø¾ v÷òpÌ© d(nŠ^yfO¨”‡?œ{vOÁ”c1쀟ý_O^q +7 ÝJ‚è‘õ.ÒŽàìr—V¡¥rÞ˜rÉ`†ä•'¢ :‘_(¯’Ŷ@‡*Ñ1Ýåx,"ä 3™¦‚Ñ©SÚ"_<Ø«®DRW I«E˄ЉHzªf‘‘N„Y° 3Ö2sQ$.M^Б)†²ãf|NìuIbx‚×í4G ª:Áe §[þÔ @4^_¼Å¶9ú­Êj2b’ +¦Š¨Ò†Þ[›ÌðsÄá7’øžA›‰ª¬ÁGÁ&eX\ þ§dÐ}÷]›X甆’ÜL¿ÉfÈ\üÿ‹Üâ0'½|ıéBÐ’Q w}*Ý|¸L;\ù7~Ôx[Ô>bƒ©©.ß@§ví¡ñ·M +Aó‹G c£õüÕã³w,”g˜³Ë +çþ×Á£‰u:–Ó ·\9Xñƒøe3¦ ä_S_þU°í›eØFh™Áf&|" ÷Q]èÓ™.=ál÷ùX´ÑB ˆTžµ´½¹ú÷Zò^÷µüV"šqéod“™˜?Í‘’iìãnà¡MW–ÝP¦±LΧ>]ªÅÙæ#öÃ@ÆYl%€uîë—WÕGܨ›Ññ‰š³ªtÝÍX«gðÁÌt¿÷³3Ñ¥à(sòíR¤Ç„v•^ Ô>¥&½àwà†žuÛ€J;L°@óë—ËåûûÖ/’‘Ù5©{š4»N0gñj3·ØÚ±\¯k·.ÛÝÚ%&p]æ ?l°tÊß`4: óÖÎÐO7^yzz6¢ú gœMn‚û£B†äY¯hOm=ÙÂQ°«~.`2‡riÏYWúåLl\´&³;Iu uõÖ4ROü¢çßÜ×2Ï1¨r*£S&W•j0™ü'sCö}†J|e¦Ô·‰ˆÀ"õ]9^‹“!æ£QK¾ÄXYå…Õñ0jGN¶X2ñ.M_Å­¬ äwOŽÀ£ kå +®‰Cxyûm¦Éç<:½faz³ýŒ®:<žFµVsÃJ®Ô6ÅBLpXx>˜ÓfŒä´iÇW¶³-]ær7MŸ¹ÌBv›‚DÑû,R[EÃJÖñLYîzâ.uÌök¬d“M7ñè,²àœŽ&o¦+î=þï&‚á >$(þ$“™ó—ªù<ôº sYx4ÕfÖcZò’§²»ÿð^&½qÜ@þ+<ª2Üz¹&]m¾ø"Ç2ì$Z" –•_ÖB²HvÏp`!§X“™n²êÕ«ï©à½Þ¦H‰ +¥.Ù|›#âíÃÃÞöªÂ×C^c@’EÀçLˆŽ ù|À¦^{•L뎨W\—>ã쉮Øà@GQü`ñ×çƒÇJêÁã*ç~?ŒÆ/ƒ×× ¶ÚÈçóù(«^ðÅòéŽþ‡apØøÖ#"÷s¨ ½c¯ Ÿ['ªu××ÿñ@¦…2j?­«º'ÓÎSé6fÜ’UhMÆËÈo—yÀ-E(]áIgσE±l°¨(DZ°Òüª£,ˆ‚'¿+iUï%ÉIúi7½öi cmÆo«uÔšµÂw^« ‰\Ø}`ý[>,å©8JXÔ*®ÑÚÍ ¾eŸ8)¸›iì’›;ò¨YFA¡Oð ++O–Øí¡‰,¿ðÑÇõe«»–m¯ÛU·A“\Àm¨%––£0›7ü–ªˆ}Oa€ô\Z¤o-œÅJgélÐRή­I“¡ É0cßoƒ§CeÙ³_ág ÍF•täyÊö‚ºë­xèÎN¬…oDûyB¿àëM¸øä4[I >(sÊW³.Éì?fͱ…™Ž¬$ÂK,ßèõÿt®>i,û +¬Ýà#3E‚+áAþðÒI Ì×¢,†“vM_ÞÀçJÜQ$hGž—1ýø ô‰3žcÊØÕÄÆI•K9rõÅQâ6ÙÌÈ7¡fñBÂPºäB‡jÛNŸb¦º†3Hû +E˜;Ö–.\¥>5ÙQÊ‚a…P$Ut¦º¢ÔâÄs×ìÎxÊ"<ä‹:RÙïv´rW&<š â g¶ gͲLžZJ&Z\g)}iõK#†óf½€NëraDÛfpåÚn8C*8ïM¬‰Úãù¾Jó« Ò'G\pÚ5î‰ðÀÏ•µP‡†'Bˆjæ„y/G!>OŠ7<âp2Ó@µgÕ=ÿ$V'ÙYziĉ„K"$Dd©NŒ…N´ÑH CœÌ4ú=aèˆG#Pp#ßõŠ,ê#tMb«¢t‹pÝÝ"81{«/j !RÕX „ŠøKØYJ3$µ’l+Ê‹Öƒ í¦­ZáâksÂ:Uú…nð'ÍÁÌ–1EFœ¸ýââÈKM õÊüùb3µ8Ÿf¦R>áò™ JqÝùÚ£I?Wïh@<ýÁ¤~šbZ“é-–Ö¥„ë•çáXÏ+/x)ÊÛ +¢èpMÀ€—®¼$©µ43U ¸î¸–ε1àêš«¼R/±¤®qd)ñpªñáðjÐKZD´ªêЩ8Ø‚°¾·m}AÎF6•ÛMçˆ)N }5¹Q¦B „Q7 ñÕ‰.þ,5n’ö™2›yñˆš™ÛëäÚ”’…Æ’xVkÑ?€ú#6XÑ5\5HVôªW$K)o¶Dâ ¼§Ìn©bl¬ÁÛ 6´?Â5ä"àRµÜ¶4a#ºÍ,ÙSÞ…ùo’%¹ý~;~d…ø1¯dh΄)ʳÌÐœÌVJMJ}9±žTÀÑÕ’·«[å žfw²í©sT4»¹-›.ßà)š·:9Opý±™(ñÖlnê)#œ“±ÿü<°Q“oäù1ø¤Gš0ÛNXÊP½‚Яg(ö}Fã_9;åèÀ Ý•¨‰A¡ÚŸŽ]ô+¾’•4qµ ïè'ÂÜp6ÁŠÑˆ÷,Ðh ÑR¾QCZ$ŽRCè¥ãÝÄwô›GXÆåÍ=¹mdñÐíG)¥³ÝðîÏŽÇúJ¦z+yÍV0õÁh +Ó**ÂØòRã— ¡˜÷Š& +áÁŸÙ 6=¿Žcb¿¤î3ÅæÁÅáÙ +´Ô§CDœ¼ +¥ã',ÁV•½’T?©S`çµÐØ ÙlØ +endstream +endobj +96 0 obj +<< +/Filter /FlateDecode +/Length 5720 +>> +stream +H‰¼WkoÝ6ýî_Áà+‹¤DI@Q ‰Û ‹ÝÇ]ôÃfQØŽÙľ©I½¿~çEr(é:JQ,ŠæÞ+‹äpæÌ9gŽ_Ü=¼»<=0ß|sü³9þñôi÷ø`¾ýöåÉ+sðr{И¦v¾ƒÛÖ›»«ƒã×ÿhÌÕýÁñÖþÚk¶—¡îáø¯¯;ÓŽ}=„6×Õ]à…›ƒÃ¾Úþçà»íÁw?Á®¿Á¦WðÿöÇãïos²;øÛÁñ_1€Oo¯ÌáÅíæõËêø§W?œ˜¶ e0Ï|QXŽb+AlšºiÍö³±–ß²fèêÆ­éÝPã0”¾­l_{8¦Ú´µ3‡«¦ô³«{sx[ÙÎÀK-þ8­6v€KÁSgëÑ>T›Ý^uvQ9üý®Ú8W·´œþpeÎ+iXÜcÄ7wp„ǧÂñ´Ñ[ܸÓšSyt:¸ ¸`ñÁ]Ÿ8úÃœÐáûö9’]Òyt¯µ¸®{V¹Ÿ>qð’¿ÃàHó_½¯!¾†ÂÄt}À“á®rÈy5à¢Ü6¹9«¬×aAýŠäæàâ¾oñÀÇÒ+÷˜¶âU H¶x¸Jì¿·I ܸ^®nz¿T’@¥îBð1„2,Ä1p¹=ÂRi£ü…­sø_Œ5Æìñº– R›-îYœf……€·Å„;…)âså;“»ux²M)Tãe<õ®¶Z¨B«Üñëë2£21Ao“;…äM½} ææI²}RyÚÿïœí–³íÊl;Ù-hd92G°p}O~dærIØ‘I%&_ +UÑQªa"ø +ÚZ%ÔfNhú{!`ÔAÑ ‰wcÒÁ]7,^§b +®0ä"»€Ú¼eµX #«`„&Ú„#è’a¥®WFú™2y¥±XÖ¢k3ÏÛDÑn¢½%ê–›=ã.¤*IøKV¦/’Ú’UZ23…e½gä\' äÄã}›b¢D%bm`¼Z \ó<Í·_ ÜÄ2;ñ¬ÖåŒp'®ô~% \1±œÔ5¿w¾@Ò¡ÑÓáþ}½ÚwæZ¯ü¸Â³Ej\0Å“JNúZ'œ€%>}e†Ú’¹¥ãÒ•lÓ×½ nT~ò‡Ê“â?˜LÖ%DÛ7–­ÖL—ð·]àcj.F`S‚WÍ{%•IP=iþ¯¶A‘¼Ju'ü ý:àƒG,é˜x[Ô+ŠAlŒB’è ¸Òˆ@HX"·‰d¢¹/;ö¹Ê­ÄJ7¥ç=*ñyMÍÏôx´öñ9Ư^¶gf› ºgM2„Ç^òdPžñ“ üÂxT‰Öøžâlâ3†"µ^K9›9‚’ÅêÎÍÙŸg_çn†Âzè(§ßá+éè™[‡¨°ŸŸÛq¨›0ºN`Î"%ÂÓ«Vµ[¶Ùí¡Ád£)µÙ²ç¿Ns_RO#¯Jƒ”ç#z—d¤î9ñ×ûürÕ¼Þ1¢fÉY3J4 …8S3&¿&˜ôqËÖ*ßfÒ¼ÒºÝrëÊÁ%7–ÖžG±‘åb_öij­Wâ®Uø8ÞÚ_­o~Iœ×ÐÎ|aòcü¸Œ´¢c'øi+²À5ñ;DäDôØü.‚fú\ìÍîö-7 ”…ûŽ¾ÓH¸»åkI§âwµ+¦ž]Äæµã¶„O+: Ÿq!劎aÕW{˜kN§u@E5þ:ǃ®+·Ž£¢JÀ-°¶´eÔ¾®]Q„mÃ5h$ýnÜc{8¼ZNþ+¤\î1–Ùwi\hı­•f®T+ZIÏ!!¼Ë¤é[É™´Š¶Ï‘„ØMa¼»B˜dujÓ*Ÿ0É—ÖHô/“¹ƒ¦[§^:ØâxBÝñ‘Ûšç6bõWÈvðú ¼}KŸ$>ßWƒüp¥×è‡a´nÒ áfƒFWvi'¦¶‹¤š–riÌó¨r+A&–Å»eØ´#”+ÁæQv?d晟uR‡É@‘-"ŒjµAvrQ!Ç…tœ‚ {#Í\øã)*Gh9"¢îÌ’yŒÒ}/ŽùB9mrãˆYqÄÚG ÓvÉO.ú½°äxžó{è¹Ì¹‚¿1·€Ñm¸mUrR2óI`£TÑ/<ªÂñóXº•øê§øò{ðÕƒL%|݃õÒxC¯ä4b×Çv™ŸiƒsÕ³=ó C„åú|µÇÃF×ø ˆe39|æOE—=¢®!­¼–`Sµ¬UT.UŠMµ6Ö^Â)¶Ì]²"BB³¥ç\‡´/’îvëP5ì÷½í8ÔM]( •U¾wÔûÂüÖïk€¬'°ªB¹ Më:|ðz$3–õ´­Ì¨5‰äWb}šù…2Ûg¯™ZûS;7º ñs&†tˆ )\/ +ç÷+œ#6D°0Ù¤–Ím(CB¯Ÿ’~—™—öŒnAµõ*ŒVàî&šÍÑ¿†Ì~bÔ¥4ªi’Á:€úfB{¶3Ü30µcÝ(æ \UÖ×h@’î“-3yBÁßÔo4Ú “ÔŠ‰/öN£'UÛ+ËÆ:^èŒ8˜”* "Ǩ»^[NEʦ[×lBµJ`e–ʯç.#ú,[¦›·Ì2éI/š¹3¥îwÆì>ɾÒw_˜£\¬ÝÏj]¢äaêÕh94«X ,] F ÏeZó­ @òIäžL¦é3o`.Ev'<Ø‘gOf‡lrß8gaQO–Œggâ$-`® éÁ %Z€=ôIƒ¼ø}dOHSsE7ï(ÈŒ4ý<Ã4Ìó|Óµa +Ö9ÙÐ<”BŠ­ÕËb$qšŸÂ‘¦ÔÊìvYntéãYcÅõøéÖ;;0r%ªB·U(c Uç4zuÏNœ]1q–‚õ?ÞË¥7n\‰Âûü +-C`Ú#‘"%- dwqÇ› lÇ$n;pgd~ýe=H)ªMÁݤÓm‰‹§ÎùJTrEú20Gà]Sœ7°bmÒŒ¶81,JBËgÙ.¿߀—_5L|ìô±µÂcF#ãV}{'ÈYÖk”€µ¦‘d§Á#4ÙƒXP ÆYr'¥ë“Šl1×Ð2A°ä_”!džG×]N0Äö|©‘6mÈÝlËÌü®Rœ½V#ni%v¨Ž²œ@½W ¾ö‰²=j"ô=¶Î(6‚Ùøj +€FÎúÑ `˜0>«!ï[›[ ­£©ýÿñL©Q“o|ð·á¼yµÎ@Εç°‚4„ß$Uሶƒ'.pÐ@.6c6?tAüM6¹=ú”ËÑ*S¯aU¢-LÛÓŠ¶_š‡£Î} +DR•P?‰<ü¨ žYC³±,3蘃°ûtoY4oaU_€ÿ®kSN)ç*ƒ “åÙlÀÊŒ?}n/È|˜òË‘ØËŒ}ªûÅUj˜ðÎ#yˆÚ‡Èq.nõ;>ÄeÝÊÓC«jLî;ÃhÏ¡ °D_UOŠÝ9’ûÑà“qY8€ ^î_ný´‘çlu­#àPð‚‹mââã'õ\º’â1§Žºs »ÿ(K]ñÜcm‰ã–kõ²ÂVêàœR+ªs¨÷ ¯nÁ^h¸kÉUÃÄÐÁaÍð‚ÔÂK÷xçF\Û +­Ú Bß 'h‚œÚOú™’x´7ÅHš¼y·+PÄó|vÀ3›Aw3V+ýÄÎP£±Fbý9GÓyX×í’r16Xjt4*¿M¬–Æú|ؼ~s´ýQÚ~£@¬Ȇ8Ü((ñHœT‡&OHW$ ¥l‡¿è—HjòHÜ3Dá"ƒšñV/wyVS¾ùÁgô48ÛiÛ Þ;%2uOA6÷é8%„ˆnÆ;]»É¶‘“ºÆˆÃŸ˜˜.»$æ–)?å ¤ò†ÿÀµ?5Üû +gá»C;~¯4F-p)Όڒe té­oð‡!ÚÒ#§ß]ê=@˜•m7µªæè€h%öˆžõÞ‹²»‹SwC2r˜r9˜­6N [íî™õÿMM"þb*|Ê^´F#‡½Š©R.™è½¬;ûGˆ–sÖÆ¥rôÁ@ä¹Ô_½ð] ¸ÎQÃþh‘m‘ÒËËD»"~I@H"É5®{²`Ï4™à"Ýõ¹c?f–Û6ß(–yÛ4mï_Üh“)åu§N?7¬»ä"´[i 'EX&×MaHBs"*gÊQšÊ«ëµäEKçŦ§Ô¸…[à ŠFf&.ñ¼‰ØH®äb±j€µÐ’_]Kßr)r¿ç-­dO?£ÇªÃm¿f~jÓ³í…ö¾gëÂó¡è1Ñ„d­+,ò5‡âuÊÃÑø‹¾ƒŠ¤§=^ñ!ëå#ñïO õ¢0£Ò•ˆˆ7*gõ Ø9C2ïO3§{°Y'½uÆÅB?Tôà„{“/ýèÄA`:û°ÔQös]gÈAIO˜?}@~¿KÁਠ¬ÜÐ|\ø¯¢Ma!–ùô¡UqC¡8Ï¡ 8¿ç©Ý°ŸBASüN]JL/(-X¬‹9}Á‘¥ã¾åÈë|ÇŸ,o—NÕ½õó7I1o_Ò²¡v’Œ ,[`ͯô~¦ß•Áb<ðyûÒ…¹(è’ 1’77uËÞ{î{\ïîÿESc£€t>Øö¶îXôzßfmFÙØLÒ¥êAª¹û,:×J‹BklJa8–Å[Ÿd$åº@Näž=†0øJÇå85BAœXfÄœá%U XÀºÏY?¸‹Ý°œ,5 °k 8º—@›LÎ\Ë´!$?&%ðÿà_µ¯± ab²<ǬÀ¡– øý +ª÷U-ÜÉ´ã„Tjx5¤áïƒã¤ì]ôÝJe{ŽÑ±ßm‘^Ѹ1p +ØcØ,©1ªñ¯óø£C!H"=×{ÑI(ä/†q>ønO3ê‚?æÿ¢Ëx3ª²½ ùŸ·§ Þî_†ÏTŒg;®Ý³]‰ÀÒ³==cÀÞD´ +>J¶ÿý’y3–Çÿaƒ:¯.n\¨àQ†©:À¹à¸›@Ó(6[ˆÍè ±ù‰4Ñ{Âìè)ñ‰ ü™̵Ȏx)k±tgè žï>ÎO¦šAÑŽ­¥Ïm)ðìµ²Xç3­e1ž³Ñ`’Ò +шP{‰aðNÍž|¦pA?§ËH$Wݦ²"¨°~~ý?;« ®x¢P·š·Þwñu߀*æšlé+†ˆÅ-–X1ß[.Jm×ÓE›€œŒÀ íÀqËøk¨Àðxâ1 +e#*ð—šgøŸO( +Ó#R6ëûµb¿jDž)5¢ïÛî›?âv§l»þõÿŽÞ£o^ýþþϾ»9¼úýtø[wCwzý +(¬‡ëLï÷6öþFôu(È;ˆpÊ[ÚT»ùÆ8A|¸¡âôÀc¶Óᛚ)ŠGÍ„äp ‘‡qd~ï]‚”y«þMðõîx$üÚwð]m]*|®x>ÒÛmw`…ÝÂ3±ô)\y×Ý+^Zãa~ë. xÀÜŽêIx–ųvòjÊJ÷ºS§Ÿ–\6–Œça<èOñ<¾†ºPæ?@1û±NŸÀ„! éª+:´¾È.öÅ×hŠn3²‘ âÑy=*2Á+¨¡&¥¤ãºoÄžoòÞ†“—w'#¯ R ^h@K‡âùý:_à-_¦é°\¿uXÎëA/.«lãq¹¡ˆ$¯þÓËŽÿãý¥z‚àÚñ¯‘°5ip‡…Æôrí.oU j8¼;ðɳ§“·t2;Ž{¾;«Íÿ¼Yz< +endstream +endobj +97 0 obj +<< +/Filter /FlateDecode +/Length 5569 +>> +stream +H‰ÄWÛnÜF}×WôãØ¡ØW’@ÀŽ“¬öbû°^,FòHq,iiEûõÛué Ù䈎%, ‹£»»ºêÔ©sŽ_Ýî?oÎöâ›oŽÿ*Žßmw÷{ñí·¯ß|'Ž^Ÿ5¢©•¶þ§1ZÜ^ÿø¾wGÇ'ò?âäüÈÕ­Áÿkk+¤Ôµîl'”­­uþ…«£UWürôýÉÑ÷?ù]õ›^øÿ'jÄ›ÝÑߎÿ¼Û\_ˆÕözýãëêø§ï޾Ʃa0Îü QÈ…¤(ÖMÝøg‚žB6uG TŠªU]Ý4maýke*¿ª«ºZC¸b¥ªu[+ú¢«Xéj-±oáÍN¬®ù÷¡–buVùclz©µXÝVøëÇ =ý2 ËϪ~Ýò.ðv/VŸüïðý¾ògÿ̼£ç¾Zwð7ØÉáNx@Ø9TIØÿ.†Ž5püõMŒÎ‡cá\9ŒNÓwþÿª«X]Âÿ܆­w«¿ùyµî!vñs¥`ñý'3ž-ó‹¥KX>ßÄóS´¼†›Ð +SCH ™Jí¿Oþ±6+áêøä„¡Ü€¤îA’ð#3üHUë¾q„ŸW>"¬‰Æœ=ŠóJJ††\ì&PŒƒoî Ÿx‰õ„ 5ü…„W÷W ×[ËŽÙÔ°–[qVuðaç/ì7¼ª$–ËÀ;» +ë{]9(‡™…W®+%á÷½Øã¦Afṩ”ƒ{‘ñ0‘.„€µöõò÷vðÚ®’Ò}.6â ,öe|SiŒð°ÒR9ºô…â‰9ðÇ¿§hø@:é·¹§[á¡=™VKÄÙ'>ëÂçØåwæŒû )á]‹…˜0®Àú6m×°9¯Íïkó}ëFÙp¹¾«e׆3}æ/†ŽRê3ÔB†1s}fÛ°@Æb¤$ q¥# s±uîÆ°ú + +#Û­U3XÛÀ@έÖLþ#è·B†=|Sá^Âýº¬Ú"¿0]b*¹GIÂƵÏΧë§lzH:¼Šj˜mj®xjÂùKfiž/BÖ  %e7­N×}ßØ­ç"#ÎM-~€Or1óµá°vt˜–AÈÂ" `?Ëq ¬g€•=‰$8âN…Cë7ÜÃ2 {œ£-S‡ÿPyœ[†Ëë —"m§±9}Z`qÂÞ8Ò2'~W9bH|b4WÜô%¡GV`Þ_†šöÑ¥KëˆY­—]7Dc3‹FçGWDã tÌŽ2ÔhDøY-¸)Œ/è­œåòy¶· ¸`Ï_+laèeCuNJܦz§– D‹o\å“ï ¢¿h–Ç­Ý}Ø)ÀqnçXOCXM áJâ³ï+:®ÂŽ21G—,³)×±Ñüå°Cÿ´”½ú{ÍFë'}Œ%ÿ™»aÇj&•à¯©áúçD"¡C…o-¼dä«4Pó–͸]¡ÒÛW8¶v@.÷Xw9hã94ML¯—‘<ŸRZ§•¤=¡–Ãá–ñ u–Í2ö²”_(…ÌZìr!Ú&CÃ:º¸ 4™ið123V†Übþw’£{!Ðþéú¥¼"$e#ô8zŸ*™wÆ$F˜“r0Ž“:¡Pòˆø°ª¬®õZž|#YÙØ l%tl,›­4~ªYÀXØ¿ø¡ªŒ‚ƒaŒK7¨±e×… &qFq#1Ò·þ4à :[èâ¾ Xù´dXˆ<9Fžšƒžj3…>´LP_Œ&€*&€=d»þßçÆh#,Ϲ“ÍFѦŽë¨ã\Ùq +çAIz7!X/Y©È ¤ +êÜÀ‚‚o.ÌôYÙĨÉUþB¤¨¡•3íP|á’Þžº~3 ™`N·”›ÏžjlÖñPN‰&Ú§Àf×\¨‹q1';hT̼s0ÓSþê‚u–á€fŸH;vwÊóù¿¯ub±£Ô!'ö|–h*¥ Ñ¥çuyD–í»L;'>Áì¡I]x«Ý·7 Ì!;ÛËg°ÀïHf” Ÿi$&|g÷5JIé&K¬)£ù¬N¶ œÌAí…róF +çI½0ëf¨Bí¸§µ«§…í ˆPNüB¿Û>§;X:ôW¸EB±pf‰]ð,à ˆºŽ3_Áû§z#ÚIŒÌs8×:¤}a±íȢθm™6Nú42 ¬›Fü>殌¢L¾tnXò|‹„„ :õ/÷ÀoÊ„‘js*Œ¦£¤è;H× +elh2¥É£%ò¦yrAo€cBr/äl¡”3R¥….à}¾âx¸#:3è&Ý€caŠÀ‰UÌÉ)xÔ>oùBÆ ÷dÉT7©@hò­°>nž¡­ï¸¦íÚtV¢:ùeÁ¾íHR ¾«ºšÖ-&@`IV¡_°VÉÕ¦,åJÚNBž†ÂäPEô€La¼&ÌÜ•—šÚ–÷¡r%r/çm8!ðSÐaT8>ôý”À‹›Q ØrUX]†¯sŽW`ÁM[!« s%vðM0t!­Åú®‘4|P(à4ãB¸vKàšÁi)\û\•f¸ZWÂÕÈL +Ç\æëpˆ jñõÉSë ƒ—òÏó¥JCiÎZ´Š…M¥à¶ÌG&°-8ž'[ä×ÜÓLªÔL ¯[q b ùz/2ð2£û}\C]ì¦uq£˜Ø!sʘúÅH™O(ù‘r_Ò®Y¢zU›©Þ\£´S¥°‹Þ,ZHÚùÈÉ„‘—X¶f•¸'TÅ‘q "C„t$ÜbÚka8½Ð`AŽ,RkéL1ý¯3ôu¹`Û¡p:/……ð¦àIÓ€ØÐÌŠZ7å'—ˆÚÌÙ²4_Š 9k“3ÚÜã$ió?WAþ2ýFÆó*ÿŒ‹-×[ŽnªÝîˆ)æ•{k¼|B=ÜÒ/ñÒ>×táG[º&ˆ9t”šæ`’fù«MH`Ö/e5DK;FK`Ó÷™¸/˜Ÿ“=Áü¤4Eʱ¿¡ât8Òá,¾GÑëpz~Bþ>áøŸ£Ì(ˈÀˆ ˜H¤#ÄHäÑ„*èqlÖâ=Ï ¤Gð‡!Çš”;Èè+Ø@š5Åd±#É.’Xõüªr *y £4ÊÊÞg³zˆÎ±jéú"ÍDöËNØ…Œh×-e”\É.ã4A‰û‹|PJU6â]6P3<*Æc7‡Ç¬ÑÌL ˜ÓïÐubGP*æk¼4Æä'jÉ—lŸI"-C™)ôLŽ0 ýe½`ÎæýîÝÝÙ!€OpgbÍŸf¡ìýhàŸà>-ÝxÙ}Fž÷Lx¼è~D­~XXÓšÑa%y`矲/ºŒféS‹ï{;G]ꚧÅ|ˆ6 ©%·sOÅXnTßØ +‰³qíš:ľ †C$©G$I­á0±{X¼ÙìªÄu9WëI+Áµü/SÆPÔ¹(ê^š]b£/ÄT»À˜æPZhL»ndLC€ÅÓZÀºÌYœñŒôlà[ ‘A.,ºˆ*±~{?öÅj½A"à„©¯9‰\1£ûª‰Ò¨Å‘–Ä wK4Õ±?1Qpå «y|²êÕ KÐO´µqÓúÚ•éë·H¢’Í!ó?ã½#øØâ·+“&ž)Ôî¡ 0ämû$o°ªñà%¹UŒÞAßñ;Y í-BüÈÆ1wuS$ô„‹úÿ„ ÌÚEÊl”úfÔu24]XmWöOWÒàO›WQE|)©-Îñ4©  „ ”#÷sú»ô¾ï0Iù ÆKµôýté÷ÏgCëQŒd{nÐØ,dÖk3g¾,åVžM”|ÖâUµf¤3v¡Jíæˆÿ8SSºùèÜ·£î!œXyzîK‹bþ¾C9¦XьǕ‰rrKDVX°Õø¦¶b³¨‚Wøž«ÔƉÄ_ÙÌs‘1nÂúÀGnDʇ?/'‚5 +Ší7¾ò¬^ùý™ýÛkήÈö-2ø%ÖƬ†SÕ8ö!*Fˆ+w„>~‰3Ô‡]7²Ôðäo)Ã.’9e>*äÀ”ùÿxÏê݃ի !CÖtIkEéKà±<{LÒy€¶`L©³¥jýáPTíì@EãÑïà[£Ÿ›Â~rÃHåúvfªdcŽý’£„–¡b(J°vÿBížL í|û"Ž ¦CO…_WÀâµ-}t Îz7É_±í8åóÎ÷”C3üûcQY®1½350È?‰R%€9Ro2Çëø pL8ž‘·õ"0ûŒo4¤§%ËÞ¨ [¸µ-1ŒqoI 9)¢‘ž Fóo¬ØêÕnÐ4QîmxˆÈxÔƒ¬‚â)Ü Ô~僕3±yUHq'=!Ò`Ã"¶”²žÙ­KàY¦¨ oD$YsTEÐ!Á°n£ËñTœD¨›æq‡zÍÓÍL™l &¤¡äIå£n%¸ø¯Óé¿QJntb‘çZN}ÜD’ÓgÐMJ‹q@ŠDÞ»&*Vè¨Ê[,Ôuä!AV:›;²Íò!9y…«ö—jè"…Írªè)+båf ô1éy5Þ¥ï¡Çí 90üu±…*ØEñ‚Ä#7 + ùÖ{÷Ý—øW#H¹Ö ¤YÇý­Âò¥Gù¦G…øü$*-ë±µè_ñÏg(vQÏKÕ2”Ï5úÝ 22âLkT{GY–eǵA´1šÊòÞ0ÆL¨:Ž‰F*‡¯z7‹˜¸% +/£eÎiµK_P_É.Ú`Õ”ôó†ì«ïç¤?9W Ð$%^„¼®©h‡¤©3zQûå´…¿°éwxó]~ãEJPò03r…pŒHQ@úTŒGþN-,Ò$Ÿmº«>(ÒÑ´÷ÅxÇî&’žË!Žž†$çUbº•Öa#à»ÚÃH«42Iéµ9í¿r”ÿ?ñˆÈ¼ð]«H2i°zÒSí»Q}ýºZÚƒÞU!™Ú‘Ý{õJZ’S«g]á‘dbƒ(Â/ JÞÇìqokÐÕG{|´m7®ÃåÞÕ1®H9ÓEÕ.ý ñ+M0§Ež¼Š·ÞÖâÒ-B}ª!2µÜ&2#„RxÒ&Ûd5hY54eçYq¼"i؆´Åñu¦!½˜;n߇z,›“— Y05äb`W]#ö¨"ô+%¸äš§‡üXZ¬ÞXònF"Ùo,ÝXv伌?ìƒ7vê¶.ÒÀ´}¬ÐàØr°MV´º¶ƒâþD[óZzgjø´Îz=>ŠD–Õ!„ +>šxd†yð¾$,Œ¢ÂϽÆ4ñ±cdO5kŒ°í´§â´mh…¿­Ê ð“˹ÒA¦xÚ´IˆÏGäl&F]vÄ2“3‰ï¥½zÑÒ:Žê(Øj…nG•ãn<Ó¬çMŽ¼—ÒÃoíಜ†ðË…À#ÚÌ´¢,—z5gmÔüèþV Û~T0ø *nOL…:$S ¾‡‡÷¬‚z™sTõd"”¦2Ç…E>íFÆašiÆsè.kÅ-7L“œ9ËLÚ\pšfN ;L¬G_9ôÊpÛ‘§|Éô(ón.w‡Úoº4ÉW!#N¶MS9“ÆæI¹_žÁºC9«sûò<»Q@±Êq"´'ÔLt§Ðl•‰dŠzÃv =ÞôÑ9·›pAß„‡)á!º€ŒfèÒšé†DÎ÷-®Šé("ÅÕkú¡"æf/æžUÅoG;Ože‰ñó"ãl6ßâeX|ð"´Òg™ â#À¦×tHâYzX›ž¿^VŽq›ªìž‹µ”%ÉQº…ÕwP2…{6) ¿\ÑÍC>šôêÖ¸â¤ËlU-R$G¦!óV˜Ã!ܨ–LÛyî\ß7×4ó"zÊOCžÍ©UžŒ‰+$m&Eö¼'£ŽJ?ˆrnàsÆcŒo;Uh ÿf´|Kþ'Bùu` ÷–hét_þ´»À_ÄîèVÌ‘»Š²Ø@rMÈGªìÚ<‰i‰.wÇ­²¾/gÌmÂñeËGÑ”}ßÇ¢Æi,äò›Ùý³ááa½-K9õVæ¥YÌ×,f.@0Ê„x›Ø¯‹KXÐVGn!lµŒ¾ŸûÜ  ŒA39êI¼‡Õ…äCt­}¡¶w>v¾˜«. =†õ‘Œ áö`~ÞÍŠ¸š¦a1“tfŒÉéñU^LL˜[¡ïŒÜ~Ñ%ôé +ù=`F¢U¿’~ã4c&ËMib«Ü†% ÁMƒ¢ês8„É0ñå@¬øH¹'HÈuê¦Ê+V5µ5*(]¥F™ÆÈmfÊ{üÎâf;f&6'™ +ÒÃüǨ`žñàµ|‚PS;Þ+í¿!cÎ9eÿEhŸÆÇwNŒDÛÕM‹êWÍø§¸ZztAJ¥Dÿ`!U]ž +endstream +endobj +98 0 obj +<< +/Filter /FlateDecode +/Length 6042 +>> +stream +H‰¬WÛnÇ}çWôã6ÀN_g&0 èâ,8± äA +‚%µ¤ñæ%)AŸºuOÏeÉ‘Ò¬v{º««N:çäÕþñêb{þ¨¾ûîäuòóöëÝÓ£úþû×oߨ£×§Gjjëüë½SûË£“kÔåÃÑÉ©ùw£Œ:½8Šu àO[åû¶î¢Ê†:„ nŽ6½>ýÏѧG?¼ƒ]ÿ€M/áïéÏ'½iÔÛ»£üøy{{©6»ÛêÇ×úäÝ›ŸÞª`Úq0 +Ïü„QŽâT‚¨šº1^~QÆð2£ºP7®÷ªµ]Ý÷}ÄXÞovº +u«6ژڪͣ®úÚ©ÍV·uT›3 «Ú\ëʵ¹‚GÃË#>~‡G¯p‹/TºÁ·`™µµW›[õ ;\ø¤M‡+ï5ýãqÏ;<~Ûæ’µyTðU¨;µ¹Àà›­<ßjq¿·Ú5jó«|{«n ûUÔ9üשâf•Ç $¸:üñ¢„‘®Hdû³|¸Ä@»aÇ[¹ø¨M‹—ÞiºûoVáwð܇{üñžwÙ-D¡p6¯0;p½ÏÚü>Œ±uøAN”l5d·£db¼”Ïi C¨r÷•qT:j‹™tXgÃIÿ:ý[Fãaäuò]êô\ñ@[w g¾‡Ò;ßM€öˆDªR)Z{p?‚<Š§»nvl†·ñu[ž +ŒRUΧçÃ!8Xƒ ÿÑ2K~®%Ýc‡h3ˆ¶ªçÆ€Ý.ðÞ~Q·¹=¢¼b1÷ÏðþE;̦pnrQ ±‘fá\¦³¶{©ì5õ(þÃFG·‘s$ê'Œ¥Ÿu½ /ü¦‚vÖZê£ur£ŠÕ?uŒãˆÛQ“8¼Ú±úq¡oÜÐ7+`›)C‚`ï\Ý´ÖN  tŽø‹õ ´fƒQ0Øõ3 6о}øà2ÅX„_µxóZ{‹y©Õ+õ ÇH®ÌÀ1A˜ÚR÷‚•!ãÖÀ!,aE3.áá¹Ñ”¬€{a$'Œ„UUé,P¡l+h>§íáçßÕ#€>Ü©!„Ê1ÎÓÈØ +mgžÎ¤˜p¬™ Sk–Ð t¯ž%v¤õ³Ù-,qCn¹š¶t»c5»nB<±ö¦žÊõ¦Ÿæ \®„™ìÄth  κ´¿…’8¼¯+÷­–…Aì¹]ˆžkoG5ø`­ÕЙÿªI*.(’Òõ.y^ô¸w¡ø¥|_lqþ-6–Þc&v“5Ó]»a2NS>X_&>Å6#H n$€ * Ì#¤²™€»`Væk¦k xø×{˜¨øóuö´œû„NY¶BÝD¶ÀÔ8€¡è -Ž³4È,•›çþLw›…0Ò?Û©(_Ì_ºÔ=J=[T~pˆCŽÐR©˜6TÅ]þ‡ ëêLjv"!Cò¹Ö-ÉéZ{‹«kUf7GóajçhN™HJù^7lETÕ3¾lÕ±/[†ªsUW¦pVK`]~,^–QšBá¾È›¤?‰Õ)u8%èŠEbس›@Ä7Þ³`=gJÚ)Ò’qt=ÆTš8ƒ`äR*O +ã6ìÇçå¤gï™è¦Ð‘y¤$ÔÈ¡¸x5Ny5Õ— q9ƒtÂD_­ÐOqµ~òÍ7ê'€S$”í½G5”µåz åKUìšUÔxו*ÊÛ•*Š\[`Û–]›sLaÌUöܹ` Hû~&¬‡±ÜýÁE_¦‡%ÍHÌÄ©˜i'bÆNÄLÑ&eKÆ¥–©v3‰p`Ž¡3|Ñ»’Ï-²íl ¯ÄõŸ|¬!„Wagc`‹ðý@œ ?¯$Bïf.®¶å8ŒÉAŽŸC¤f”Ø4A¤š¨&Ù"·›Ž¾C4íFEŽ/¹à½4Éy¤ÂT€¥—T‰“—FQEsöãÒF¢ý—´a?Æ7óWîžÕÔR[Š²ÅØOÎhs >ŸàuŠ|`á9Žöƒ²6XÝN´n¾Ž!ïrY4èJ€øÓ24p®³n @Þ*f ñÖxF}X†|œÀÝ-§;ÅqÆ£h7˵mDy !cÐ÷wɱ\x„YÅ;DÌÒGÚJxN|V›F —…Ú-ß™&¥yîÒï cZÁÑ[*@²a=áð ॊ ¹M »—¸?AuÓ¡T^¤0O D…äŽÉ«Mõgµ19²ˆè‡ì×Ðø#”YkÖ“´ ]T¾wYvÃ$-a?£“-׎ÑnåEqˆýÊ£ßoÞ`uºE%­†]ÙJFÈ—<3 ÷E0ñÝ@ I†Mˆß4Tîc¢–0ö„#¬[p/¯*8<¯´2~^"nC=.\@¾H?žñƒ‚(ß︩™¥n0˦`ýOpn’"µ!Ì¡ÙlË$j©ySI~×ÜÖ%Q.dpÉËìnVvÍ3†Â÷]ÝÄÞŽW\ƒÜ0´°Í!‹ëÛ¾0+÷iÚà†_æž+`r³ß=’fžb3GÒƒGyëñ¹ú¯Ï`âñ`™ƒ³/ò©O¨ìBa&ÈÖÀÿhÜÒ‹v…L˜Ç­ ç\OælKÎb:—‚W<¨‡ŒÜ8«ÏD!ÀyÀŽ^hØóEÑ.]éñ$¶ŽÓmì8tNï‚ ]Ñ`FP2ÙPŠ¾ðÃEfµÌ¡ìB“ãLù)i_c<‰ÄzÁ"ĉEp‡-Â~(¢/tè̬fXzŠöÿí) +Þ—ŸJÅ)ÐÁ…2Äl¾øÒŠnd —.ðù/ëåÒ·Eá¿Â¥XåÖËÔx²TÆ»¸jJrdYå‡=âx~ýÜ€ ìFÇÞ¸]-6Içžó€Ÿ…sUÓWn”ŠÙw³,7¨6°6“‘BèUwË%óŽ7ðQö(ƒ²èyÊz¾î­ÔO’Ò·¾¿rs!fš/œôkuq9·¾&>Óê‰}ÇÑ“¶ukñ?†^î…’'Ðqã½tz8üþ¯¿KvÂo8R¥{àâðÔ³‹6☳gâØ +¬OÔÜan:aå-!̹vw!L=ú·‹Ÿ1ßÆ-Œ:n ó ‰†ABWŽr¥)¾ðX¥´ilvÔÂ†ì¶ y.•Œâé^Ê(’Ýl´;1×ö`«Ò¸ôè÷<»é.< +Réû¿°±,¥#å?†»ª!oÿ”Á~±†‰S‘ß87¾ÅÂ`ÿ2Òo°õªë>Ô>ƒIÒ½½è çù¢.¬ÿ_xáO½#1¼í{G›úª+Š7ž=‰8õn´ó¯ÎôCµó–vE·ØPÕ#^Lo/„¨Ôž vªpjœ%9dD+®æÚ]mþ^W–„»g¸ÚrÌÕÊ[¶ºZht58¦aØE.õlì–\4_¤ã¼“$cͬÙ=ÓY©‹Op£f¯Ç²º\tº3ÙßÓíf¸ŸìÃ=aýu?Ú‚ áß"†Ôt×µl£òœ,¿ˆ´úÏXä(TQôd8y!ÑG¢åI2 œ¡0‹MÍáá[éSÓf§:hJy¯FóUœ§ Y(—Káel7Í•(.Ò²éÕm.R-æ/a³&?‚ÍL(2;J…®¤ÂQ¨pŽTØÄëõ°d`ÁÝrû€–Åkh£^uêw TÅ<:IŽ«oüwœ× ýd’ì +4‡Ëy’éHo㧕ó÷—Ýöœ¼€(Žÿ<Ã'1* IóÔ“{¥4|<:q§„Ûå'CÅ2ªvWÈ<&¾•à{üebÂýeásÉdp0‰åÒØF^„$w†)˜JÖï)Á;ÅËíT莘‚èè‹€ŒIÖ²lñ +ž™k¶ŠµE&ŽŠÛ½ìîûMK]=^)=:’ÓaÊH„w€TÈÉ•òÀ‰È ÿIÏ*È™ÛæÊøŠNµ+`÷ügíÑ‹.°gUÓ[µiÅîƒð;|0…L`é-àã§ÚŒvÝÈŠ²aK³ï+ËÌØïp•ßh¬–èóÉyIo7Ÿ³W€y8µS‘ŠIM?Üü‹Ì_›Ñ/O[¿ÀS›?Ç»ØbZ ÐàN>0i <¥±ÉßPò„K‰Qdv¢sµ8–îÍ»Nþ³­;+~/&tûj î¡ÓÀçWx½÷¢{é^”5͵Ãû3kÇ@oo\‹{zvñó‘Rݲ±€ø¥±€àæï£zôo¿ôSàþÁ~׌ˆl‡~m‡5“ï$Kq×Ô#©ûýiæ´t£·Æ˜~á—Æ{¸’Í™µRq]vø“Æ×Ð'ÞP^&MFòpIlT÷#~ÀI˜o:z©ËÁÉåXÓZ´ª+yéß‘'ü<öÍúà’-ííUÛX…²£˜½šk¡æf.U¯E xˆ†$bÌ»£œX¯]áé—.óÈ‚x胺;+'3—Úe…&ðÅ­fIÏ +§ÒèvKãR Ë\—Æ¢=¨Ò˜Ù ÃìµÒ}±5gÕRé¨àèª{’†‹_Ëv¿v+ö;¤6X¤czû‰¥MóP¾# €E‡• +L˜“þ›’Ê4œ’‘`ãÕªB±v•òžÔ©ÉmOW”°9ïe€?öDØ >£À&ußrkíu“î)€2’IJ»ÚvÙ%w+%a¼`‹7î(CǬ-CÓ’Þ`m®Éáö&¥Q$ã>Šºži-ÔqÑ5¡è¬ëІí˜ePzb„ ›Üá‚·Gx5k4Ñ9òü+*¾t ö±z㟈rƒ®²uˆßÈ;(‚ï1`D(IjQí"ÛªÿIž0u62ÕlÏd*›Í05ù0wÆûÄ~í05ë¢îyªºk#OÍ®‘§k‘ñ?Fìo¥>õ¿]¼aÄÈB€'IýÑïêöŠù(Î(rR.ó»žPÑå ÐRIqÒ WP°¾DYÖC?ðß g\tCNý[#Ê]+"®_G™¤ÇMç EKžY²æ‚|Á@3˜:˜¸<æÌ÷˜]Ù5bØr<%VÇ›Kâšæâ2nT`Ÿv·[;I²ÿž¶)ÅŸ\¶9Ÿ` 6ª¶9œUÔlñØSIøúäxÇ*Ýs ŒãõY8ñwßiã,!‘«†ø9=œöŒgôš&Ø]úØ^èöBŸ6‚ß©¢"ÉÀŸiO@Ðq6¶ÁT \£—ýèÍb±³Âóýœü,¾¤ÏJJŽ:ùQÂo¡*P®òœ€N&:u>¡1è„òúnQ‹º-t¤q$ÆŽöo‡ÀÍÀ±(•Î⟯@_äö ¨BTu:©¶¼€Úµçh83GCÑÙ-¾30QNî¼]4¸‡:AË[6&è2ž‘ vÜ£zö:6!}” iÕç(RX1Xšù‡MZ"²·ô˷Ƙ~!c «“33©ûÚݲôÃÍÿ'ãU¾˜Û®h3âäyïÐúµÁϼÌTGªªwøÖÃÀO‚›ä/¦u'¹Ð£ q¢uµ*­Ýo[ûªº•+ æÊÜÛ†i1-v7U \Ñ>§1¯v=¡—ÐÉñgwúCòÀ™Ív(¨}¤õ‚ÏÆÇÌ9 — >q +lŸÈë‘ö^ñ…˜Ó/XG ±9®ÓU!æ‹;«,ºüãÍøß1Ï>R3`ÿ‡ðyáC2ÉF·Ý8Ãg4Á[â“1-áÿð6Ý?¥áÜy;Xo {ø..♯y¢ÕÚCƒw÷îYHv7p¤i¸i\ØT,,zÚÁ`KÙ¥M0AÜžVô}Ý["_×Ý‘_1"InS)G]ç½ÓNÐò»0F¾_¢dÇ~EñEü6Eÿs”ãƳô–pf.ÄÇ môêî +S¾"4Tøé|¹¨¡ÀßI¸?ƒÙ’%…­õ)}Ž20[4)€Ud«ïAÚ“Ã~¥=*oƈûAk´¦›ž´ôž7 æ§. ¤rŒòMÉJÛÔåö l +0>˜BJ°cMÙ쇤Rk1@¤Òä)¼M§]ë–ãš¾·ºLÄÆøÜSí»‡´-g+¤\úTó¤O;½æxâÑëÞ,,l‰ãnŸX‹JàëJ07V,™ù”# øuVÄ¡ÉÌ»óêag•ˆÍ«–1ˆÈ[Þ$SAŽÆj¾ñR2þÌiŒ¦r j[xÊZãµ®ŸÓŽŠ`…CRÑjIz@æREFÿÇt.Ï„¢°'ñýIUÐ;š0EN¢’o[B'm—-¶ç‡\Šyü ÂÝ’\zçÕEùq«xˆé`íçŠé™»÷B²{G@š xA¾’§¯ãjç­rhÙ*´æ| :ªVRFGmTã²éi`Û¡d€dJÙû%YO\Çœ‡#*AdËÀwÃKüK"¶,Õð&Îø³ëån óqª‡Üýt^õS¹YrÒÛUÌÑ”$ð twz8ør༠/õ)œµ* +®7{¸lmÂú‘¼óÀQ­|*Bˉ€Á“ xe#a‹“Tà}zÐQo¦<‘p¥Mda?ÝË·`J^]S‡¡Ðî8…m'…OŸ„›ñDüM¦Pmï¬ +ö⣚dRIØT‰QNr+d « 0kWÑöCG +\$šKIž†™?k+e/Ê¥#yQ½â\r…p|(ë0Îj/Qiè¶ÏÄÆþX⼜2†doÊÉâ>äx|© €b¿Á./{d»3èÄÁ+Dü}mõ +endstream +endobj +99 0 obj +<< +/Filter /FlateDecode +/Length 5160 +>> +stream +H‰´WÛnÜ8}ï¯àc°Ô"%’Òn 7Ïî"ƒ½L¿Í,ívÛÎŽo±Ûq²_¿u!)RRÛrÅãŽ$‹‡§NZ½¹Û:Ûl÷âÕ«ÕßÅêãæÛÍÃ^¼~ýöý;±x»^T¢*umàÿMS‹»óÅê§_*q~¿X­Õï•Pb}¶(ª²ÒZ¬·Âÿx¶t°þs¥JÕeÝšVhScaÍÕb©*¹þÏâÃzñágØé3l„ëq-„Ç}\_UâýÍ⟋Õ?0½›ës±Ü]?½•«Ÿßýõ½0ÊS˜Ñ˜£â×>EŠŽyÂQ` ¥ø[Õçæt[v]g1¹_—{Y¨¶´by!mÙÁ®Ò”Z,Ïà±˽¸‘J•ðëN\É¢)•Xnh…ËkøÑášOþÖby+axñ/Œy)!‡K´Å`3]á XA!ndƒÏ¯qS¶°¯€ð×Üãvÿ*Šñ ‚Vü2Ҭÿ›p‚küÜrЬ±`§Ïµ.tþPYÜÂ"žœ}¶}Í8fÑ%&kʬ6ã\¢œ ·Vã&+Açê,³*0×£’Vf_\n¿9µ´)x<çÒÍèÀ)çvà6‰;Åoã’™$–_NTDâƒ3ìL¤‹'R·ä¶XKE‘F°Cì{Ÿ»¯æBpÉS  ‡?âÍD=úFŸN‡·¯¦û³¶+ÂbEàö™/ Ÿ¤¥•†hµ­bvê,~ç\»²MˆIUB·Øp¢¹,0X_Ö^÷ëÍÈAÖÈoÒ ÝBìÉmn\rîòEeý¨h}ä†Í<·Ó¾­jrŸšÉî.aaáõv+¦„ t54[[Ó:ãˆë›ɾúåvs ¼Ùî6—ëÝ×ý«ãÇÇUUu¯_¿¿ÂÕj}ºX +ªLì¹mUåå·ƒT¦.+WuY^¿.ÿ" +WÍ‚›ìÄ\´k(è%ȾfA%ööJÃ&Å3ï¹OØ ¿^˜É4¨wÚ¾w&Ý&I0˜¼¢cÛ=jd£ +íÇ’gºÏ>Ø—žŽ^öy쟞˜wþ܉l‘¿‰ëÑ×P™Ö–@¤?Ï"¨­Ô€ óm†#K$(\UÕ™`<"H¤¤ýf2Xôr¦ê!S1ݺ;D×,Ë7¨ÛA¿]Ö1͉#ÑâÏÎÄPøqƒ¥FÃÏš"\’ÖxŠoòÂùéûìxÔòÂHhEo£+î&L ÌE㵤ò›È-S›H_Ýó¨ZÏq +ɵÏs +¶j¦BdRÀG&eSvlñHÅÛú9¢NÝl*5=ÑHFzd¦Ÿë¹Qpê#Ì-tóâNd:]Ú€åöÈ:ûõmGð7Ê;Í Ë[w¬“ Ë5ЭEÂv™ÿI{aà@®`õtÛaûö6Þæÿ]Ãu¨aõâ&»éE!f)’áÈøN®˜œèÕNÅÐúÍ£ä럑pfA°þ‘;ÚpäÎ =ô¨/ Fu0Ï£B:_Èz`žùÞ†Ã]÷¼yÖðÿ£©®áý=eÛúŠÀ=" øûñƒ¾ç¡WU¬Sc¶)o†#ŽÃ?8 +±V~t½å92Zš Ÿ¾Ó¯§lÆÀ~ø&b'›Èæ¥rá†r¡üê\ü±À)Ëy[릦¬ì‰w«Þp‹þÞè´ 0*Xƒáäƒk:„÷ÿM +zÃt{ŽÐÄR› 8–vˆÐ,‚¨jŽH%ì˜)Rjh¼¡áæÌÃP·¦tÂtÊ äêS.p‹'ñ›Ö +n×òD¤éÙUœK§€‡Ê QÀÔ%Û¡Šp²'D +ïm[4¹ 7mÎ –ŸHÅ)„Ò c†_fÏ'¼÷ö"8õÜèê7“$nh{yà(ݘ'(ö‘'Q~ãÆŒ÷ˆäÁl/\‚ãËLºM?…zkWc©õcI; \p­fX°*ŒMÙ¹zµÉ-8àe“ÞZpÛòqöI©Ã»<)—)™?‚É/j¬H…бvB]Yþã5—½éXzÄù`¦Il«N\á<¦µO n5š¥Öe [Šyƒ[—Ä7˜<µví´¸ šdM:É&øD…6mʧ ”O‚8ìX4«³€ÒÕ´)& ‡_[áP™Ž}r Þ²iÁ•ŸÜO®ñ”RKqŒª†mzçŸÅ3ÒYèd'¨>ßñ(r¦MÿÜ<\ƒ6tnŠ±aCݯ Kéñµ¤OùáÞWìlãB ¡=!>»ãU;{úÄï8H5R'@Ú¤= djm«8pÐHDHÖ„¤F¨Ji©'(ixô“Â< +”s0u4B©£÷lÎŽxݽ¤B†õîñôp¿þšÕcê‘D+h¡ð/®O9,¨ ;ˆ¸ç£w -½wØ°ç!Ы¾mî9ÎÆ7˜_CÁ›ÿ±^-½mÜ@ø¯ð˜"Uä¾rÉ¥‡Ö=–-;mm'Sú÷å<8’»úbYÂ.9~ó=Ô‘žîéYƒwà^õ*îÊMPÙën×-Æ®]¸×nÅì´ÎÏ{瘾ÀõŒËò‚FI“—cØÏyq!á,ˆÙ$ˆÍÌ&“fgP(Ô™åxª²ØY(ŽGÚEÁ™DFX½‚˱ÝN{Íg…Þ¢ZΨ– ]*Æ™6õù=úüp4žyJLÌ^"ÐO©ãêÿšÓM€c”2¥WÂgHá3Ìkðýº +>‘÷“ˆx§òÛ5³¹"•[{çÞ8<ï-9®¾Úq¹Útȧh-Cß)ïu Ge@áãœÌ3Ùœ¯Âiî{Xá3Æ=ÁÆÄ¡9bôöÔ‡)%õ B¹@=FºV‰ŠQ£"ED¦ÑöC‚ˆ›æêïŠu§mýšïvý¤|·>°˜&Ÿ|Ïœ#·ô"+›¸¦‰ÃlîÔxÓ\ƒÐeþè)ƒð`¨ø'°­Ù,Æ–þreÿtÆš«;´¬þŸCŸ¾Ó\°×NõüF;ÍÔëŽMƶÙàä ÏøÍá‘È|0Ÿ¼ûÆtøDæ‡6ûÔ‹ §®irölB}»¶t%[ff†Vx ~ë ÞjqÌðçGøa–UŸ¨éÏ´Úw(;n释},­„²! :U¶×&í½ÚQwwÔY (]ñÎ{çIû©qè±ošŠàÔénÁë¶ÊêY+ +ÍúUX· bæƒÎ"]"3Ý5ÁŸ7ˆßa€mÉEü˜žüA:…Ó ¾ 8Uñ«Ù¥Â?$±dX²}2œB¢l}…ô上ۃg]^÷ Å;›áWzËi(V)„‡ëßSÇ‘?g 8ß”i‡…DT 2W#ð +Q•߶©ÀïÖ"¬½ü8ø…—„°K*šSÄrÇg’’‡eér¹ +Qé¥à»´úè©ÈR"—]HŒ„ÙÒÿÑï릷 Öw\³¾.U"±¾Iøi˜k™9fîc¿ÕÆ•Û9¤î˜ç©8Õ5~æ™þ )Ôïù[¥š·] +¯v-­ØqÜv¯"fn˜9^)zÀè¤D›?;ëþG¬ š*ó…ìÁs;àJÝcvwÇè1=QOz€möÊV-D‚Y~Ù/þ +ÃЧùò-$ݧ$Í®ÑÃM“uÎ:ѸõJM©ôÙ¿é͟ˬ§]Xˆºµ:…KÖ¡¥¯ 9”Z’Rk |Ï„¥ªnmª«8Y塞6UÖ>(ÔÀÊZ8Ë5eE‰sÙ\‡þü8 Ç +.óžXŽ–*¦{'ÚüaÖÙ.á¹aç¬ÆŒâ¹8û>º $ÇyÎá‹2ûƒùÎR| }uèþÔøš(!ç"å&+ñ:¦¸WÕÍÛX½÷„IaÀªa’±¥â¼rÆ70 Ñ0é(êTží=ä´+cßÃD‹DóÀ¢{*ŹØw™î9±=c]¨Í¼Â¨”-rà©™±Î­¹‚••{ƒX,ÍG–í°…tÕ!iªa>…¢Zæ›Õº÷8è-@´íTÑB…© g¥Õ`lxj/O£ÇO¢—Ž:)*C-¸P2‚¸1ÅPÁxÞá[ÍÓU’8êdtòÂá^§àÞ{ö˜XoÄ#Â3 +nnÔðu@>-NÍ!S¬â^zC#„ßgmÐ؆È-p+\ò£)ƒ :Kýü ôš~@2¯N¸f yæÿTIÝ.¡GëÜö S¢»(hY¤oLF†ÓÿÇ<™E4®€G:PÀ3RX`œŒr]0@í²—»EÇ-ˆÄ··æ‹Ñ\ê­n‡¼p pÍ.å|Bª³‘°Û++‚6’e~­’Ÿ~ÑZ¾ü\–ðJ|ÙT~»i _ï1\ìÁClðúƒ}±¡#TÅÞU7Ó§Pzö*Šßk(ýCQÁŒiJúʨàì¾Ñg oÍ“è´Š$9PŽ´IŽLh*É‘3Rœ)³ã™xç2½ôX%°øO€=žÜ +endstream +endobj +100 0 obj +<< +/Filter /FlateDecode +/Length 5468 +>> +stream +xÚí\[o7²~ׯà# ¸)^»É¬À× gs[[Á.Ÿ‡‘,É^K3ÊH–­PU$›ì¹¨k}8 Û3lÞêöÕWÕ:|¶¾ùx¶8¹yúôð×ßw«Ï7ßÏž¿|qpøÃ[ÅίÙó£Ť±žIç,[Ÿ³NIÕ[vtÂèÏ/‡¯ÓìèŒõrðL1Å陋N:£m˜ñÒû^+ÍŽ.¸Öâè߯Ž^ýüâ@Á<Š}?1ÅÎÙŸ‡¯/{¹:øÇÁáoOŸþ´Xž3~ºì~x.~ñãKÖ;3nS—mÂÿš}ÂÚ˜'=|­i{ZÓÍ‚‡66˜ cŒ~°°·?ø‘ètàD§£Œü£è´’=¿fëSÑiiøŸ¢—=ÿ,:ídß{ßy9ðkv 1üTtN~%t/-_ˆNk©ùZh-=_ŸÞ˜à”ˆ 5_ '-_ÂtÒókäñü0üFtQšññÎ(ÜÒOŸg_pMø:ÆaØaa«+åÀ/JÛ_ +meäO~& O]}ägm>6n2ùC£É¿¦]7æsÁÎðFOE—þÀ‹G_t,´m¿ üƒ‡·8‰,€u±¾m—Êhi”’G)Á@QŠïèÑŸáV¶«mуÑÞa©¯¢ÀlñXü‚•OµÁíPé‹àp†Qš¶2…IõÝxàêϱˆ¨¹à…óvØ;.,Ìø¤ø+ù3ò|ïÄ<vº“J!#uŒ>xRˆ/@äÅ@}µ‘\Kñ 5zÁÛ$Êž¯H›{¾E+O¹áøqt*-®u†¶Ö’*LÁýx+-ý5*{N»Z Êû•iàÊ„C”³..Œ×K§-^ýÍD'ñ!jÖ^†Þô!Í?ljGa˜8HgSn" ÎX=iB¿-ô= Q²Þi†ÀDÄhYÇõl}ÊÎd<“Q9&cýŒQÚúozÙ÷†ž:üá­¡õèÿ¿³´ãQ{ ë!Ö™¡7ž\"ܽÄéú—vÁÞ䇃`}ÿ8ÚŒ‰ÊÐ~to¼ÑãSŠyãq—õS]ý˜’;W©$óþ´{ù*KÆ«IŽQ&M¥Œ´×ʲ“ËÝ+ö‰IÈ#N_BõQÆ,ܨdPC¯ øh©ÌàC K{ +kù¯à +ÿZq-|‘GšÎ~ðó\’ã¿‚å8H@­_‰Lâ…èÌ?5‘Å9!@üö ÌÎð_ðƒÈ_²·ÉͼJê_0mä¿\ìyþ«¾†åp#? p·¿"芰£#á‚´à™ þ ‡ï؇­ö‘>H—ð;að²9öNYN'òvö¨¥ãìè4ÿGÊØ¿‹Îôümú|'^8Ag`ïínó·/Ù‘·óë.ïÚjŒmy»¼­‘Á ~èIÞ¯8 _ñj†r5xx÷o…NÇ…è_)äkv¼ºF@÷/ÒÆ9Øo†<ì ŠªçG,¯öš=c/qläùÏ7•šÙ²¿ãÝh +B¸¹êb ±–AE&C¯Á«D%™Nö&0§œ Þ1ÝK”èSòg¥©†8'ÕdˆS¾¢’ýdŒµ}3fв¡¢¨¦‰2Ý 1!J] ±VöÓ!ÚHU-üÆ‘tj¡šEI3Ù‹ö½ ÷ ±ƒ´û·«•þž!€^§˜,¤ô¦Ú!ahv[Øß|¦@þ³’ +ÿÓÑZ«»è´OŠÁ½lˆV +óO¶,³´slÌ ·ÑÆ7?0þ0Ç~fÈæhv´>|m“wÆIá&Œ6öq`> Òj¯ ÆݧJ)û=»?žûœÍÿãàðíÕbùôé᳓›Ï‹‹£Ó¯7ìéëW¯_+Ü÷5kx+…Qã/ïkïÞ\‘Å®½å}ý×È +Ä4^À£Ü¶knö5ø"R±Ñ#¯ßÿ÷™YƒK ¤Ê )ýM[%m´ƒš‰ÈŒÐÈz\LÇRúºðÝ'v àøÒ lTL.?E^dIyävÇÒašžæÒS!ˆôøä©–FŽ`- Ãø(Ûg~ǸÀR$ npñ¼Ï<^˜ph+5ÿÄV8öŒ½…ôáÌýŒåq ö T›§ŒÂë{/lÞt½¥K!ËÉ ã “NÌc#/à¦f%~v ‘üÿrûo•[¸¯J±×ÑVzíÅù(î÷[ÓY[¿µkÖ^í©dÌRÀf]€¾ÈÔ´:³€$g Ô²xí¤¥Ýq˜3kÈï((‡„«Î_°µ@h[$†ðùs;¾U¬¢­4F+$ÓaP‹ +ÑO—Ìzw-4•[H¥;Úv+РàáÛr^l´éøW¶ÂéÖø±?.æDßn³.ÒAöL ȹ舂êË“YdP_¥+û$ç#ä¸*'©_ä`éâèZª=:ÜÅ·ú€®f!4pó:ÑAø0¤†P—I&IRÑ@ÿ ºÀD}¹¼¼0ƒ=‡²F¼Âh‡ŒÎ³Bym,xþ˜æ¤S4Äñ'›²ÛuÙ>@—å¨Í³diæÉÒyµ‹CÈ\/Ràå¶ÈÝÁŠ§…{>Ù€yà Ⱦb ²¶~‹µYà[qô *j#š¢ÅÃÏä}{"ñê-?a·yÃV£˜ýÏrϽý&÷lÔÚkmäž{·ß=Ogéžý·ºçfÝ?øÂó³‰D5·÷»ì]jQTºVsc’Ñä#–Mr…¬•³8Ý{‰úH?ß°+r—°²ÎQÝèJ›hƒ#(Hú—×%ËÖi¹‚ú(€‘œ¸”ršd+ól·ßm»ÎhP˜ˆˆ³är?Ìó +:4à°Ä3`}vk¢b%á 1òä ³áhº»õOGcâXå">/’mµŽîó*CѪ>üvß‚³ç »ÝÇea‚¯û*:¢‡}Zþ¤ÝÀF„{$‰GY¾ÞÍS”0OœÊÔÒªÏõ›‚ê±L [Ç}Ý겨DgÖ'É¿·ºrÇ(x¯õö"‹²éBåìËÔ6µÍë{Ú(6@?ÿ$:ã©07.ÙkZ>C¦ ¥Ðéö3‡ê.Dÿ'ãÎè,À ßÖ«g(P9O–P‚#M1šEuk0Ë×E±gÉ8Î’±F®eEÆÝÀ;RÏO¹ñʧÕ‰ƒ}~Hj…õ¸¬QcêX¥‰ÅlAÅ »\õ¬³¾>’aGƒÆÒx(…&7½ÂV ¬ùMU•’ÕZ$Èà©hZÀlƒ)È,a jž°†^Fíõsé’‹Š‹[+(îÑòó‰[|§l}2•êœòÜU?+/U_mr㊠€õÔ¸­N×™­8™¨© xV•ÎbMÓYמ a‰ï¨kðÕ'6Eß‹÷ä8oÐúi…œ‘%›Ìb–¨ªdØ5M‹à{D×Û€‚ã-AVpy e’ÏK{æ:È`è_–h‹†Õ`Ø Õ´>,9ËN+Î>€²ƒé/¦‘k‘¼ v)i¼ø°è€qfê IÎDº?íé'Þ ~µ€Ý]_ ²édÒ—‡FÅ’¦Í«ìÙÔÊè_H7;êÁѧiůà+®°ÂFßÁÊ0²Ÿî·¾ÇïÑoÜ£ø]Zy–„MÓÛú5÷ÉÖE€=*:’må 8~<‚„2ëµÆ4ñ/%lN†#¡–â„3—’v¡ÛÕ:=ÚQŠÄc,f¸=úÑ5Ô-‚$¿V¸Ø°'<ç3®·ÖšÓ¨¨ +D¹Ÿ‹Ë0üb#f$G€;í;@ä<ÙÙyŽÔúÙÿ±N‚K‘¡œL$ž^ax¿FäÕÈ+¨"QX ÛֆϪE*´ˆ­€ÙBõE¡«¢$ð‘=N˜U$ÿJÐgËátWx·[ûyXx§°¹¨Î’Ÿ›'?£Ô’ñqwy“–µ9a€»í!Î!ÉÑ“Wî( ž·H"nÆSœßbÿêðþºÌ/ÉðÈ P±L³äT¦†ODT—Ðz“38½o5ürž˜ü_ ‚j¨ðË'ìÀÞ@ìcû":j +V¼X?F¿“OÔà×aD0üóU•#„#€§K˜[I®1\˜yDÎÐßû6@ û(Ý_¡t†a/¥³1ëhÑxÃD ³º¼Ã¼ÅÕ ¡y,\˜Ï¹QÅZ ¼ý7Ö>OwˆÛ/Ûj*>y{êÔf¹YôqEð嘡.dBÏì— L ^3Ô¿œö8É÷·rFs"Ì«ÌؾoàзÅù6ÈdÇJ¦.¯X¦VÂU²ñ2[&­‰cN[ã1Á$cÞæýÇ‘(Þyÿ“ÚhíÀLí¤KÔ(>}t\NÙÏnêzžçUe¬7 ,š•<`]+£ôLàÅšÕKð˜ÔáŽUÕ2Í'5KSCI¢c³­DÂõ å›ÿ¾,$À”%„~ÌÛ±›^X •Sg VÀÏð,…ÚË ÂÍyâ§ëô(.ÏçZ¦m”Jo*{†²6TjEÅå{ÑYH«áWWk’ÌêjMíê).-à&‚ÈV,g—x+ |Áa‰ï K òtf.x +nVÚ Í»Áe™…]UÁâg/4Y09wš"‰PùÇ©ùnƒ-–ì6kö[ÁŒ2A‰bÓÆ‘m¬pÍ•7m[Mó?€6Zû±ËÏ‚ڎ†êsžÇñÕ%¾Ùs•š«W•öáíɃ¦®Î’ŽÃÏ—/ßàŸEÕáÍŸz ç”ü*ÞÕuekRÿS´æïfö‘Òlå–g§a:°1ë¼t „û^%nd:'Ahw5ßAš”ÉuØíø{éUjs¨È£p–¨ „ew×D!~¤¾kz k@yX/–•©(Löp¸D3`Q®³à…‡>>ã©8é _bЕØĬÊ?ÁUΓV¦£¬ñâUñM ?A~Ö%èapgš‚eš¬qÜÓ#áqÁ†‹aœ’‚“£09êhÚªÇk†ø@^Óô± +5áÞïbnÚÁ7ÜÒ ùhÈÕ6¹âg¾·fséb७°ÆÔT'£>žì€w²ÉNp†úù7¶(|••¨Zl3žJýdWÔ1%¾\³Œ3Ò ¾)!mZ# Í\œ—|ß7yú–^% +Pf³³±Ä‹\¯7#iFô·º¥K÷ÕëÍFµÞÏ«ÖC0&Tm0KD©¾¶ù¥þ¹Ð,âv +ƒáÞäk–„&E¡{™0ãLƒ}nKmÒyVêÆudwlÈ­‡%ó“{ɸ?•Ý’å Ø¥Uw¤$¶4m韨ôjÆm]ñ¯K~YCÉ$sÏLi3©YÙTzyA+ЉÿŽ›ÿ%¡°ó-ÍõM—!)!þ†c ËÕyb` J^®üš/géë¼I@i*ÿ–ŒÖu”ê}LÕ{ò®1ÆõõìzoKtLJ…5ÑÒv±'i¶¾=!Ü.·¯krUÓêÏ]MÆ>ü]—øMïºèÁV¸j¾áï×ecÖY¦?¨o}×¥]wãe«ÒÞ^£”;ÕéFiÊH¹[xj§¾%Øâ'Ç-PFÃú´Ñ¶%–h‚fCÙšp—Û.<ßÒS¶l!œãRh¢Îwòó~‚zÆ +þ£7Zj^EûØ@½GæùYVÒš¦è¡ýîÛ"·eƒÚW­)A ÙF lÿL-mmè¨Ks€gS2cZˆ’û1> ¥K§ê÷N*R.£MkR–‰S-0m|§ì-H“Úa[.ArÙ¨iá»YWõM¯ŽhªX2×Û jÿ«#³ÎôvþщÅv'‚À7‡¨O€˜7$åÎ!¨õ|¤‹ Ù5ýN ¼Ž‚ÕŽL³Dýó„춓ɘ½Rëã±è°×+1Íf +›Mµ/T ô.Ï…fÚÑ#ñÏZ9|-C™‡©É~þycÖ™jòøüs»“?øoô+KmÚònA¾ø ä Z‘Ðò/·¬¨çŒˆ F[£S¶ö¡e¶ÌæÚ´Ö`…•6u‹kµNÓ•Ã_<Ý¿DIë\ø+jŠÌÀ<­Š£UQá{¸1>H©´Ú«TÓIçé”Ö®SÍF íÂ_ö³Z¾ÇvæÏU€œ‹]Q¡ú“èP—ÐÜf|e9KÞ€€Gþ"ýα˜üØG|CâufgUÁ4U®¤£Ó­Ôº—<>3z;,†|N…à\w#Mƒ©Ž?"E¿Í@Ü0Méÿì@)3 +endstream +endobj +101 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +102 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +103 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +104 0 obj +<< +/Filter /FlateDecode +/Length 5145 +>> +stream +H‰´WÙnÜF}×WÔc`R¬*²HA€x‰'ƒÄ³u0ãAЖZK,µ”–dCóõs·*V‘l‰öx`@&›µÜåÜsÏ=þay¶9¹Wß}wüuüóæñæá^}ÿýËׯÔÑËõQ¥ªÒºþÖµSûó£ã·ÿ¨ÔùÝÑñÚüV)£ÖgGEUVΩõ‰’‡ÏÊ—-ìmÙ(c\麦S¶)›ÆÞ룭Œ®àÛÊê¯ÿ|ôf}ôæ¸ñ¸ÏÁ3à|ûùøÇëJ½¾9úÛÑñ_ÑÌŸ7»sµÚ/õñ/¯~z­Zcs“Zöm5ÁV3ØZY±>+S•o±ƒ©­íà{Û³­µ.ÀÔR2¹Õ…U+õNu ]—µZÝë—^­.ovvíJü~õÈë7»S~¸Ò}¸¡×xÃC*Ü<Úr£ãVŸáOÜmñ§V§YÔÇÅ%q9^¯%acŒDÝ„ô“DÀØÒõ•ç¬ÁJ0äBû²‡KÔZÖ®lÙ´üTmÐDøåÃãñ8Þ/á„Š?rÖ£/<š¼Ã•#Rãï[u¢;|¿Ñ=áZ8î>Òo´f'ö@~pÉN[ƒï÷9úåLmÔkm=fèµvtþßÕ-~…_öº–DÉ'üJ§¥¨;Mß/ðƒg‹9Oð€‰V¶JžÁM˹‚÷ù¨nÚÆ݃?pù < ç> ëˆMb–c|YŠÛ©6-ÅEÓ9{µ'4PÀ$Np3øüI;ƒÂB2.|T QS§ÕTVD‰™@Ä÷po„H’WK`Þã.K ½·4«EkÏa™³ +Z?äl˜è"éê¶Ržc¾‡+_ùиQð’C,FÈšLœ(ÍG• +Áß⧠¼'@™ñDÖ c9}|̹Ôò6CSÐdr4ñujqÑá[ãžÄ‚M1À5lœ‰¢øoÜKf¢bb,Éh&ý`¤t3ß–«Éh:Uƒ5jŸjUèõï Îõ9`Ûö`;Wö}Õ0`£› [$qÐÐ +Rà§ê²™I¬—dÌÐÞÇY‚ÓRä±ý¤$XØ–¡*HÊ¡KÎUJ™ f=B·%{è²Mý(ÖÆ%^Õ¦å?ða±F ø~‡6‚µ/±UrFY å4W øRó!çÜ8.™™ß.èaå`Çh º ³K¿ç™âÔ4&Sø/DiûJ«k3$­Ô2”vɹØ}{¦¾/ÛÓ–| ®¹&… à³ÚFüüžhwntÿßàCy ÍÞPcÉZXCI!$ÕØ +Þ1Ýo¥_±AÃ/Tã!ªƒº®fQ]´¨.°>Xò!i2Bú«“I ('Í}Jëx¡ÍZÑ\#ªøÎi+rØŠB¸bi iìà?iGUz¯’—ù!] °Á 3è‰vj)×.íyCÀ>k׈ `”Iˆ?—‚•DB ‰ u¡AEt”.C|w¶˜œQ‘ÆÝX&#šÛ°sHYP¹Á4ÏŠ òÊG¤˜pï¸fäáäAˆóë¤áïTÙ¡Ÿì‡°‚ÎÎÏÄB—Š…‰¹œÐó¯æJ(Œƒ\9€¬6É$ñ+úV½SÒΗ6¤®‘ÔÙo”ºW"¾>wŒËÈyïW2…‘={#-¬}%ý½ÖµÅ‡raøL6Ÿ}ñ”Ú€Vòumò)µ`Ç;ž!Âjí˜RNaVÂÆŒËöºfØ/œ/­=<_‚åË};E ´²ðLÿ«Ø,'}ªÁ—´ lQÓ¼–/uÈÙq$é'w„im ·êEŸ49QlpŸM Rãq'J¹ŽÇ¤OÔ0ª§”°š©&<ÄÁH3­n¿e'‡n¼ OnB')xpFh,Ì)xζ©/êËÚ'P껲‹(ý$cø[ÓÃŽÉ<_Ê—£ ˆ ñ¦kAºftùÀ›±)‰pÝXIæ}>“„i†·;¥)ÍÀi\·šŠª‰ç¡ˆ:ú#Ï=Ä´–Ù:àzÚV4)­£ÝÌ÷hÖX_Lói¹×è⩸v*]o« ¥Ÿ´#€)ønñ+øàÐÖkaûiÜuHï yöb %”-†ÃQ³¾Ä’#e3¬a‹ž*¡…𠺀–ù–Û4Pæ:3Ý z ÙîS& +!ŠbÔpj(‡cc)$|æ†xöIƒ=Ó-202–Ž„³¦ÌÞò9JK”>W_?ÃTûT„»\s6¦Ìçͤ+=:1’…bmZC{ÍÉ~F ’ü?ýhZ)Œ ê¯Ë +šw»[®8?¯žPÀ/ÿ‘hQø(xËàÙVƒÃ9¤k3hm.âî.ƒ½é¡X¹Ž¨ÏãÌГî¹X áïÇ\—HpîÀ³D;i¬!ÒuZlACÜéž%“P`øQá9:â½µVw,Ô óûÕHP“Zø¿ƒïðHHœôdÊÎpKZ!K1Ü/˜hPˆØ´s¼¢—üt1>QÈIÅnEpÿÁ„ø«&|Hú‚¥žþ¨{Jc¹ÐxWDŽñcmáËÊ;Õ»,Qß‘Ó¿•V(ŒÌmâYåÌb• 6ÕΑʼn<«?A·IÒ”P/œ +¢4ž´HkhfxÁ¤- R¶j¬ì‰Q‘÷d0I[Hò†…ÊBà˜pÜ!Ž­û6¥ƒÏc%|î+Ùe·h¹ @üžŽ:Cb‡’Ád¨Ku$lþ4A3Y6æ±Ø¾Û¼}7ÏLFVŽÏ¬Îð‚T€vÅ/×òÃhÝ t W[Bn$³ v¥z£‰7ŸR͡΂ UÒ8ÂŽjZ~S¶–’¦ÞxMÆ÷ˆÄ)£*æA­'äÜ9/C£Íû}=ž"aôs ½13M€q8ŒÏu"öý…`¦N§ŒÏö¸™âÝ=Ýê^C“P¥tøukºÔžšø»±Êæ'ŠÊJ²D!W“ÉÖ¶C0úÙ^9ãV4-‘<~4‹-¨Œ=RwŒÜäÿ,“,CŽ{B"˜ãRÔ¬ŠE +ÔÕ#~´ÌónŠJß'24ã>ÏÜçg¸ïû¯ ’¿&‚0±â}¢ÿ¤s4É@wK=h,‚IÛf¶‡Ú7ý ¶S\›KÐQGó4ö?xn3—B^”6ƒt3’ùÖ3’;<#Õ<#%¥ˆu”«Ì IÓáêW ï8µÊ5žÄ‚"A…•Çéˆ&×ddW¹öÙ5M":£&SL¨^cQ +ò oDáœp™Ê¶@5M†µlà™%pNhD©„k-_? ÿ)êÍ>' +?³IÉc'\sG½˜v)ð¾0a ¿ƒûg<ñ<°¦p™•]*¾K9ó·êyÝ5] öv4MV\5#/“‘ÜŒYHú7)Ü…8ñ9Nª^­OT!Oóˆ©M¢ò/´³<öÔ„®uÍM‡)bG1¥à‚.ÁbÜ`¸Ð”Ÿ,‡¥Ø~jVļŃ¾ž\j®Ë[íZnR¶âBqxÔÂó»0m€ãµù (¼ŽÝ´µ` #M~}çErøÐZŽ^üØEræ›ïá4¼dï‚÷³(-LóSPþ,~ê¦rêørœL¢,à +¨ þ•¼•ìÙ¼…‘€¦iÙ©BŽÄ +ºà²÷:çÆâ\šs,% ækß•ãÊGÖøOo ¾´Ò“ÓS8á+…–‘«‚è'䢠²'H ÐÍû9Ó™ÙFjcêg»ÆiÐÛ9U©KßN¨/wðgbyÂñ hÞWºIª<窬eòÀèÁh™ŸàãÙÇöÔ‰üâ-‡,hŽUO".lB%ß¼²zžGiŽêìFdNÝõ«f®XÅœIÇŠŠ 9ÐY£4"CÑ‹½”w·RWàŒ£$…[zô8ã²X<ß®Ž-pf³ +j‰Üé4RuµYü‡sGj$™EÜʘEÊÄÜú¡QÈ}ÿ@s‡% Ò~Í»ÿ‹Æز#xT#äã`±î¢ÃNÑ„ŸûS©oZL—qÖ}7© ѯ<¥·AæRš4Õ16ìgŠîÊ’a0XŸpÉiƒÈL,2¬Áÿг“\Ù¢Ck¹VUŠ’$ˆD©N«¦1P茴?b¤Êy:‰¨›Á\íÉXÒ£P+J„=‰™²›¥÷OA‚¯_ƒ‰¹ xðìäÍ,R°p|Ë`¾kXVaø’HŠ]^ÝIª«Šò°ssŠ9ׯan¶Êîç˜kšÁ_$}•Yü”º${OÓä®Kq$ÄF¶ó—²c|y€·R+WrFT«­®˜_ÂÐó›m½_´“üÉIë0¿Ô:DñSõê7[áUó0×i#ÈöõP C°”@ƒÐºTž"´R'ù(—F§GïœèÌDX‡Lô‚å ä +?ÿ‘ÕŠî|ô\Õ·è“ßñ8ß5´Í#¼g »à$¨Ášo¼òA¶¼ææÞ7{ÖáYœ%Þ…Õßyîó£íéh›z3uIo.:nMÇ]ºiM~_ãÐÜ“78ìöÇä’jóÍ„±º;äaÕDcg-~ó åxÃĶ¶VˆØËpÛÏò½ÓÔp— ¼çâ(2dµUÐôœ+GÇïçKßß«_ÔeÿÓvmÔ¯‹R"GNäÈýP’݈‘>[«F¸s»! âÃY3Y°'6Š7̘#Æ$!d#‰ƒ!ÿô“ +3Žô¡‘Eñº"Ó7›\¤RŽblŽyœ:‘,«ä@^¬iš@$ùf$—ÙÒmfåƒx@ER—“÷"wÉÁläΖ¿øâwÃÁ AÈÜ—¬ZJIÎ;Ê)oñP”Kµ½ÀÐ[æEêœ&Ô©,àWUç0l¶BpHlq?,+ì—a×±+®íXÖÇê ©Z i ÅV~¹  +DK©7IÍCAü«*–öyà'@>€ð«ïF¼z‰9bÖ–›áó²¸Tõnqasj×€1Ï»½¦¦‘æ±è¿ ã €—%Hx£>PÃnÃ9 +š%É:1zã†oŽ@cHbÍÈ®Å\°ùúTzE£c©&~4Péé^Ûècᬠû†`I§!>€îÑD<•­úö'zÿLßÎLWgB–DCǤf8k–×m„Ú˜PP7ÌkHsvçÒnñhGmÛ˜vo/l>[èì,§d£È*¼;iï€#máI¼6©.ºìâ]"kÙÌ|lÆyžW°Wj»Sþè“ðˆc¼yW$X4D1LxÛrÚLO8¤ÌUhŸ4ç>©Ow ·e ÀŽ÷÷ĉf@vª]¤SU +ùäñ¯­À›Rà«ÀJ‹žNg¹É· _+`m¥—”ŸÀ.™ªh ÆC¼åc3ŒÉ¤E—×SäÙ™ß šdl\R2Mcƒ4Å%˜ÍÒL¬½»¶6ˆ± ç<Æ] + 5k$ºúÐОZ±êÀRE4gš%´xy¡BÔò 'îR(€"­@ÁNʈÁ>ù¤d1û½^)Úçü²jÛQÜ€brŸbÐj®)sɉZØÔ)”z᰹Πýß$“4&`“¿bûƈ÷¦”Ï–E=æ­BÈ lâß…‰R[æЖ½¾Q¢ ØŠl„Ôœ:ëuvƒEg] AŽCPÿ‚¤3!^ž{°7Cÿd౯xNE4ˆ§üßóÈKÕh¯ñ’be²ÀIó~N°rfš‹¿7¼wÉœ¼]xSNí®ïÃæ¯CƒÃdÀïOÛQœùkKÃÎKªþŽl¼ø½‘?aèvðǵìL º·å­Wîëû:½º”^ûœ^+$VË{·ÀÇGÙ€Þ4*´Îøþ€¾7·;yq¦>’¬«.Ó©â½ vcÎÝM×e'sqeä*––AYu4‹8XqfÎýìžsgÞAnkÉÆï’ý'ÀªîØR +endstream +endobj +105 0 obj +<< +/Filter /FlateDecode +/Length 5550 +>> +stream +H‰ÄWkÛÆý®_1w“ËypHA€Ø)œÔuÔOEÈût½+m$9[÷×÷>æÅ¡è¥Ñ…¯$rfîÜ{î9çžÿ°?~¼Ù\ÅwßÿUœ¿Ý|Ù}>Šï¿yñJ¬^®WhjmZøßZ#ö·«ó7¿6âö°:_«ß¡ÄúfU5u¯¬/…ÿð$\ÝÁø×Õ­°ƒ…=\+t[·­ƒ5«œ)ÙÀ³3#ÿ¹þËêÇõêÇŸáÄßá@Ü÷€cðÛÛó׸حþ¶:‡a¾ÝloÅÙõ¶zóRžÿüê§ ÑÁž£Fö cU!Vű¦íUS÷ü¦} Vtº¯›¦8B+‡Úˆ³Zê®vâl¦Ç¿µ¬TO¡‹µtôÊ^Â×Tt£­TÐXªñzew¾Å7ᦗ‡\Bv4î=àRµxø#?ÞI*Ã6¤£â”K­ð¥£¶ÃUðÂ؈ ©®¹†z/ñi‹y÷{V´Û%ï6¥«`äâ?iŒÙüûEÀµ´®-ž\é¯Égñ+׫B(Ò5žzZü‘ZÜ"Ë¥Ãã.ÛŸ)e +·Q€¸e…[adE¦>6ñÄJ™hŸ$| qû…(2yB+õ§¡ã†¾V:y}[DÈ£lÖ„˜="‡“¬¸`¾®—æåþv´7zÀ¯ù>|Û”×Ïg,_„òN†{LYD<ø†õßñÕÿxÌ^‹=å¯Y°Ñ®c`LuÃÜkÌ= %$MXóÜ[´g ¼‘8†»ÜyVœP(’’Ášnô׎nœØËa=I^p‡j‡½#®¤6øêNl½†@Å¿Úù¶ýKÕ}NÚ‚_Ì L@–»“gøK¹[Ÿâî#+æNäŠT–—ˆ¹ ì=¬èq5^G¼B¤Æ´¤Y·1w/ €P—Þ§ÁšËà²4ŒÅ…Œ²—Jµð’ÇÛ!¦ù ˆ ÿƒtØ NänÒ¯JÃ,åqæ²V`õ>-WA¬XM¶&ô8¢Ð?ña1.\ÉÊÛQü@^Ïu$ÖÁ…Mß(y¼CHã p| ø…{V“œ_Qa “KëFÆbªN‘Û‚¦Ee 4«-žyô°¬ÅÈãX}ÆÍêb•Ic¢–£À\p>cîì »Ç[ ü¯zƒâçð¯"¹ÁŒx¿·)µ¼º#þpí_ôŒŒzßG.ã6CúU#86¤¤Û„¡À›|Àk*š—Æÿ@©91gòøZ$£FÊÔŸ YÆi }r‚F÷„çåÜ—T9ßâÚK|˲vú¶SáZC=ò®ªQ3(uM#‹[,á|•-f¶èå#‹ÝŸé³üáÿ—þÞGi辕4¾˜\“¤ÿ!=ŽK–TÍn°“-/¨&érÏ`öQ+š^Ðääôæ&k û馜¹ôIxd¨Ú‘tŸð!ÿ3sŒ¿õñ›l–‰Rá›±t> Pd¦wyT“Þ]53ÖæÓ²œál©,Û1„Õ „[8#ëÜ5µËx&&b¶xJ°ã$#J(5S|øD“jÙ¤†á“Å2ÒK>Þu™½dïpü£ÈݬUæhï©3™ s&“ =­ÅšéhN{âYíÉ~aM|Š—1Ä_$%&¨xïÌÃ4ÜTúDèËÖ.XŽ‚¥s#€5ýÀz‹–² ¶OÑoc…¦”5£_*¢ ›7g2 yQv?WdjŠÃ&sß>3ŸY§ÇŽŽ`U1Í”QI6å–½Î5¡ü¹Dd‰›ÐZž†šà3º¾ç´±’&Ãa<ÁN¬^µl¤K‰7øþ´G$;ß“7 ƒÁ Ãmy΄,i‘‹ #¹Xt»y ¶ ìe`²ÈÑt&–µ3¡îf€Ú58Ÿx >„y “¨¤abôü[4Ícükµê¸V'ù,*•rIç6ÉHe:g½Î¹¡l ¡Ì r.|W~É)‡È®`ÏÓhÄ‘Üg©­Ÿ³‚w˜¤%A¥2~àñðçØT껄cû,ÁmÄýÄÎøÀv˜lUëpNñ šL”œ·E¸=%ð®#TÔ£.ô¦¦ŒÕË"í›Q¤ ©¦…ÿ­5b»:ók#n+[(z—¢oÀnYËÁ·Ò?Ô✎ ´!ó&x<Ó-ÑplgE¬•œ,\¹¿÷ôiQ“[&Ѥ:|.>zÆ>àK…·É¢„34žæZ¤ÓÅÖ^¾@ÿ ßCÿ±/ßK‚ÏëÓbds<ì?-L´'Ó)>a†fdÒÍ ´vØZq®ßy•¹ŸÊ +Î6L Ã3}å)˜±E§©ÙNëÊNinÖiÙ87B#좂1Ì5ÙðŒU6PM…¼@‹§¸&É@37Tro–ú¬ÝüY#Vc*‡¥-nò$ÙØÞG€í˜œÜ³ä4NÙ2°èÎ,ÇÅBg֛™éÈuÐYrÏ3)y7ã½[ž«øb5pš ‡"$qX6$2f¤×ËR¬6d‰~ç‰î3Xß1‚é™±U|âô²"gGÙð^0ëâ „7%ÔÚÈÓÞÔ[ßÔ³oÂ_À½Æ°ñδŠül)ÌùÏ^A¤~ß,”°~<%6ÎÌ@ÅÁÆ*Ç:BÜ¿ˆ÷ÒÐhòÊsO60%zâî 8FA,mëKkN•6õ7+ô1:Ði©ÒÊG°Ýr™§Ž¶‰;7Mš¼`J˜Ó-¢ µc™nQz~¾ yx¬û’¦@ñWhLdŒLº'A'ÃBYL^ó,ÄN;ÆN33Z ö8bgY•§‰£ÙsŸ“ÙlÇL½°ÁôØd²oº‚gÁ+”ÖÄ>ûQºGcOÐÙ3ùüà@Óx·0RyÂðó’ÿ­Á§5åI ÒeŠõ$+ ¹ÕçX’4êü*¢Ù“$ìæœÃ"¾pîy¿m!n¶¯öà­äcÐ +ŸU7nŸÁi6Tðžý"î9½÷ø²Á–a¼e®¨ç#ô*n¾8ö…ßËÊ ã3ÍÛš¼lÔ;± óç6?» 1oœ:ÍùÓ žF–ÌÍY2í-Y÷KFVŒû9œ…ö\å“ Áî ¸Ë3Á#ì'I¦pé\Óeˆ8_«ß4ØíõͪB:×s)ü€ +Úx‹Ž`1à­œm]˜o!¿–Žàª /âL¼–ÊúÜ@Ecí?RÅëÓðœçq6Ù^ÊÖk¾ýè­$¢‡:ÀR“¢¡ ÚÞò[W¾HòhÐY–’~”’uÃi0˜Ûžnf°Ñ`)¯%rÓÞÿÓæ…Ü@áshY=ôázŠ·à½*FÏG‰m˜(< wfø¨ãøÑ~ÛøQ`ÝXïxü¬ÌN‡ÈÀþ—ö2é­Û†¢ð_Ñ2ò^DJ"¥} @‘UŠ®m7j¿Ö°›´þ÷åH^NÏLàn<¼A¢ÈsÏù<ˆìÒZ*T‘Ð¥­D‚`0œA6ÁÕWCþß¿S({Gûªèlû$®‹Š[Š3n$ƒâJq=SlßBÀ£a8eÎ` îÿ…?fφñøK^6oÒâC)4ü_ã™{ʸàÓ{1V2ýpÔûWâãqx¦ŽÏ,@”ŽýÄË-Bº6ŒæÇ"8½ ß°oš<10¯Â¥w±sÂË9~Ñ—â|%:`fÝãýt_;¡aW¯Cü¸Ø JŒÏ%=HpÃƲ‰S_ò¤×ÔA0q\#ê\§NhZÍ&]«šìÑ*³óìÒ&,ö·ÜQ‚×Äƃë}h™¨Tp7 è¦âYÎ}É£ô&r]Yæ[‚ª£Þ8ü<>#cÐÊv1Èù_óF +ŸW(9îZ0öjÅñi³ìR¬ M‹ÀcðÖÜ+¬9B¯}ß«”9SJCÔn•:褯ÏB;»Wb³ë $ ±Ö÷s&.‡WšwÑöð$žûù/Ü)1“øÖ¤uCa®œ˜ªÂpw®ù(¯abºâã|Ê HÜíYDÏ èBsæÀN¸ƒ{êÑ‘d ýâ]5ÒÈÍêD”¦ü™<î•ßk;SuF–b¤Ï¼èížbx +âçZH˜6+2ÓÙJÉ`³â±3]ô©ÈæFe22JuH¤  ÚÒŽ8!.:c¨EÏâeøèä³Ë+x2/Ê)ÿ]Ó}ÜÆê– Û¸ †~pdƒ(™ºt™_á Ü_Ÿà¨)„¸r0.H*ÞxÁhºÞgƒûÑ€õ£hfå<íl‚<»gï%'¾b\­a pCI×qÙ¶¸¹`X8EòδÑå4á#–þëQÛ6MÒÈR¡-ûvœÌ®¥½;ŒŸÿ踮ÊTìððóÕÀTåìö$¿››7åȧÜmÏbb,+V+?thGÂоIÛ&>ûÕ ]³õ©É­2ë ]çìø ”ˆ-%ÝUž±ûûç/Ï-CÁ^Ž³ùðõrvU‘}>R²åÐÛ%¦–@w“4/!¼Ï¢uâWþ·ñy$Q8{F»å©ñÝC\f£œÜÅÜ3™`ЭÉêŠ'e0[ðIÛÁÑã³îa®kl‘üû^ÙÍ ;¨¹>jŸcV²L„‹O²;ú 8ëV°®]ä]º &ï)›í4ä…ÿRÖ¾¨‰ùÒFŸ|ÉùåE°dlž$|õRÂÉ7,Y&Ù¨pö&SZÏy§Ûvþ5ìZÑt%|$Ô_ƒÛ>a,)Tn aX#˜RÜÍç~8nwÎnE/cÃ8pGŽÃgŠ¶[lK» ö!~zaZ%›’Î)Ãïÿn±Ú£‡j£ÇÒo¹ q²<Œ„‚³’û£8"„‰“b©¼jib†hÖ=DÃÁúô³f™«Q«ŒNÈ‘Oö¢h\b=~ÜæŒ:0YÛ“A2|Å Þ#§%þÉóG®ç·‡ þ/.T×oæ/rÞù&…É8¡Ì¤½ «ú˜¨\¨ƒlG¬sî.Ûf¡6‘áî°ÜÁ˜ cëÓõ.µÖžñÆʯöJÌd½W7æzïVö^ÎË,v©[Ò0bÏݸçºwƒ9%¤üŠéA¸‘HKÛcX–yj*yJVè»a¢9ÜÐ o…þ•ådíÉ¿ñõYâ{†ù!h”bʸžÐó½¡3ö%ÀëØdÔ‚”È©‰ÝÕ&³ÜnÒüÈêQø yÏŸŽ–§ckn^ö¥>QÚT”viˆÒÕ#l/¯ƒß#Ó¦ä-Ìmû’OÞ–CåÚ jÜ”ÔÁK·)²ø”]Åt„»NDðnz8ÖÝé@MÑça@ÉJ”¼g"¹G€~#Å'ÝÂBBs<£Ò +ò2 HExQêý=—ß9?F°¦xn +§²O3[Gï•‚éí½{Þ{[xïf'⽘ý8Î<åFZ‚$+ò¨` ä`7°96i\![¸^„ñ¯£I˜Iðí-i;,ìÙí¶W°ˆYÄ]îb~e~r.AÖ’õD²ÑàSŸ`M*5Ϧmg‹¸ÁFßÐ¥–ªã1"v^¶•Y°H˜¿[…³¥±ƒºOCpæÌX¼™¶©¤O³.z2mµŒnZÓ†ðVýÈœûäÉï†2ZŽò ¯ŸÐh¼¨ŒÜÜb‡ºëÄqóÚÂû¡–1ápúÍîçÌéŸOáw¯é|j3¶JÁ†^pÆÂmŸJÈX+¡'¸Ý%2-ULgÞ*vïz*—96ò´OW*ÍϽ!«]‰ÖPž FMáÒO¯;³%cÉð€#à ½µVò×Vµöúp;u¯ïpš»(~q€5ɇhñ8üŒV¤È?²dªd^çƒbY)7®í ÉèÚÎöŽî8/¡ßp6W¯Bz¿Âz.[2kw¹=ƒ²#I½ý'À%Tðg +endstream +endobj +106 0 obj +<< +/Filter /FlateDecode +/Length 6138 +>> +stream +H‰¼WÙn9}×WðQ"¹X\ªj&­ƒ$虎ޜAÃqle“嶜­¿~îF)•”’ÝHÉR‘w;÷ÜsOßÜ~¸<;¿Užü¦N^žýX¹U=yöTMž,&•ªæµõð¿sVÝ,''/^Wj¹™œ,Ì•2jq9™Uó +^Yœ+ùðM…ygà_3÷Ê;·­oUíçÞ8³šLÓ‹“ç‹ÉóW`éO0„çñ,\½<ùeU©gëÉ&'ÿF÷^ž]-Õôâjöâ‰>yõô×gª5uéªB>¡†}\ˆ‹•xçЀ1ü¦é=kêvÞu]@×N§gzfZp|z¥ üÿN]ê0`[×óZáÏŸšn´©ðùA[|¼Å?;üs†§>óヮÃܪ魞ÕpÅÕŸž9yú¹ÁËá¿ølðÜJöùç+]´÷uèÌFm4Ý÷^C0`p­!+Ó/`ÝÍɺÂÞ^¨s •jɸLÞÀ›ÐRK–(Ìw*^U;üþVcÆçÔôR]k‡·¬Ñ³:w|+-u‹nÄË­ÃKÎbZÔ-%;`»P7:\¼¤_ yÖrhÏ\¡ÁÅñoñÚsݲKš^A$'êë0”ÿ.þ•@·V¶€U~;ãC™é,óþ{]~"[öÀj×$8B¼¦cdñš±äñ‹ +K*©È«]‡ 9R-Ö˜~xÞ(‚IÈaRaÆ6RD(¾ÅgöZÛƒ¨¯"ûª-Ýzu©ñäÍŠÚa¾×j E5è_ꂲØÜQ7 +<Æ›²÷:|ž©XsÕ£v» sEdDte§¯†¾-ð_c ·”@Hƒ?Ïã YÍ*ö/e Ÿ±-Vâ+v¾Ë‡ªkLÃU¬tô œC/ºÉ‹¸sYëî, ¥Ø ¬®TRí>qœÍÄùáÛë¡œôÞî© Þû¹îIá+£&Hö‰dYL-É~ˆºBD»­Ë09çý2N|®ëœ.ËËÊ–ˆrI|&ºç^kˆÞÖRA +nðÌŸÌ”å¼öcdéÎÅI\ö™ ‡EÍÊhã˜F/iXÍFÂ"Ý»ƒöP¬»LÔ5ÿ?%ùÛø>ü%íyöSÞÁ8ŠNá‘š,Ð,F`›±*€½^q.Xª§#d“ “4;Ïp]ñš–0Ñ'B°¾»‹‘Z (ÉBT‰l“"H]ÛÞ"Ž·…\lF“ÏþÊŠLGÉF­-¤žà ø‚ü.†:õØ?FÖ©. Œ“’묺YNN^¼®Ôr39yZÿõS‹ËIG¥ì”(™Êå»z:O¥|XU•}´ø8®Íì¦;clÝÙºqwº2„œú„A +b±vñ˜<>x¤U‘§š2ôM),HH Ò-!¼tw&†{"q½íᔎFœ•< cûŸ#¡ãï TÇñÐ ¡SÞ9:ÍH耄¨€˜ÏÕL> Ñ”ùp:}ž–ÇÀ…jx£ƒ=ç6~Í@©„6|Zé}ã™v{qò‹Óø®Yà'þµq„G–l„œ*y𠸇y‰³ßbSæâv(ºÂˆMAçéØZ9ÒdqæI¯Ķ±G.…¶9¾‡Tþøö ·¼slßuw™ÁÓé/X ³¯CîÒ4Në¬T3d®üÅŽ§-¯éš`4‹/ô³_´$£kEšäø±ëª{ݪ¹ÃòàÌA”wŽD«`ßÊÑXáƒc7óátºÐÞq}‘dPëé1ïÖãR×<^g$¡œPDã*ÏóˆðÚŒ— ƒŒ‰:öyÇ XD_Gœõì·|d*f <ã„è¹¾bÛKüÚÊï$4{b$Œì mÝÛ§³ßFá:{‡Â¹CPÚºs,”ühW·f@¹åÓékmˆYn±’,ϸ¢ÔyL³á†Õ÷;Y qx5øá/$¤&êšø¡ß\îI3ùA/Y€#‹6Ü[c¿§gƒ¯­ÄRü9iµ–Iy)®ÿ®qðã7ÙZ$ËËÓøjž´Â9hÏ–ãŠ(½(ª¸_–r-´›z3E"Û¯ÅÔ+=£Àcæ[tÛRêoôȱëJuX€Æ[ ¢¦m +ÔL•Ö|œà°é²ýá°Ö˜›í ©-\C9û˜Cö­‚j-ëÇú¨iLE fŒø •jGÎàr!œÀŒ…:MQ +ºŸÈ­ƒÙ±wëìîúø™ÝÞwf»àî°4¹î Ñ–wŽ$Z_1³aÀ3mfútúŠwÞR÷÷ŒÂ¸¨ˆŒ81¯™Cú} g¨l¥¢¦¿Æ_A¤B( ¡ÞB8 „V€`Ð4ò4"M‰Y<So­M€i‡pÿJ}ì³öÌöŒÀ¤*ÛQŒ$Í[]ËÎ#Ô ‹[ËZ¸CÓ+2IAÔ4 à~v¦6[{Š)S»=öTLêíö;Ÿ6JÙ_¥nãºÃçÊ@¥¯2áŸ#“3Ÿ¯’ÎsÄ=]!,Ñtĸ–<™ PáG¢x)Ū›Ð»ñ ÅiìùŒot˜•¶äi/ʨ´†'M¿jŒ>”­0øîý±C›X$ÂàÈ]°›à‹™8ï¹@w±·¥C.§b ˜èßKzqEzÀRNù‹G„ÄÌŽ6êòûè0]w=C òˆÏo.=åè!€ ;^Ň —'*9ÄÛ5æg*ѹBe0\Þø~@î—ÅNÖÔÊFHlW´þqQ¾R ¾ƒ…]±ã A§›ÈF£f£•ÌfqÉmHßÆ]Öƒ”%ÞeçAþ©5¯s…»p)¥#0}JéªM²$¯¾dÍ…§óÚœ 6•Ír‘(+ÎGüÕgq=G‘´LŠlM™”Ú ¥Z1Å2ç$Y>Æ{ȱ“ ¿Xãª1ç‹Êùò´—t PŸ’þeƒƒ;­> wJðþÄiëy³2Kq&aŠdžõ%³½ÑÊÅzD˸f$ItdÍÆðªz£)…aØ ±ŒUgï×Cÿþ†}MUši· .•æ]§À;"<&ñzGùÞÐ(SÎôRò•S1l,B#Â/lq¤Ûi“,o© ,ci†½nÌ1Ž-2iÆ:Œ]X >äá5©>óGrÄÂc=ÊÙÑ ã^Þ‡A Ÿbc—F=ã&óœìÙ¿ˆ8/M€ù¬Ÿ?|@“oöÆ íãÓ¼ÜiRN rêÈ}GηníO °ˆè Õg…rþ2cØÉ´½Ñý¨rŠó ¿ôNxÊ¥ÉÌhŒeh¿)¾€zØcå ‘Íú ³fyáxiŒØ]ÖŽ¶4Ž ¤SØÊ@¾äi·<à³ 9wÄ×3ÑñÈìò­§‰èi–h –c¿ÄuD‡qP +,áʳ›Ä,¯õÉŠû“ƒ×Jã½­¡¥*g­õ˜Êv±{žÓúIiõ%woò‚}y=ûPO¹aŽþžÆ˜1Í$JRÔLX•žý˞ݦ8 z ‚IËÀ†«m,Ø\I­­¤ÖÀ¥T;:%µ+צ±¤zÄdú©0Îû–F²öXiYxEÙ`¡c”OŒrÚø|ÊMu郌C1ÁQwiï/ðÍ´VUþ§^Œje%ã<Š*ktåxywLRV2b¶¨‡©\á>ÄTSo³«Töj¢²@£ yMJh˜œ–{éøgTov°‹4~¥êbAس¥…ÂyaJžöÓzí¢ Ë1 +N™Èu»Ÿx°IþNRdh +{êÔIwj_F1Î 3ëõIõV24T"ù”(韸(Y#N¦ÂPØÃò~b@E2¿%/η@¾ÅÈgJ% ôÙVYaSíÙ‘ß4Doù³f=åéjùW j3TÑ ¤çk¾R}!´¥ Qô°æžAÈy¬æÇ1Dw— –H¼<ÚWŒ„ñ…¸ïdqJJ·âî.7`HCÓœ/ °b7À뢴‹¥:‘ê–áÜ0»O~\0Qe#¹R(ê–WIrDEÊè"U²å„Y’‰Ò¡š‰îÉ[mùajkK¥†Jp~#âõy¼t¢n§‡ë´]ùÒ}øµ÷wúÑ;_ 5oD;¶ùfÆ7ÇL6hóüÒÛ…Cb‰%ÃìÁë}Ž`õYv‰ý¡Øk©ñˆ3ê^Ñö«CžnDE9:غD† WŒ‰fÊѾ½i©¥û–+Ô» îºM«µØ¡D®™8‹!Nš‚Q9 +lþßîºc§Ë9ûBÔšÓ=eý›0rtÜkm?³2Êxª#ò›E€cLa/&¿SÈw\u2?þNðó2fé.L²Ç´N\N|Ö«ñ§åp”§S¿vmNËWƒÂhv˜ÌLmœX­s= Å®¡ ?ísÎõEØ,̾B·ÀÃV=Hü†÷>U5~š9³Ë.*ƒêVÂH~ézÚ×00ºäç$SL$_³6öjlÒo•%º}ÑÂèÒàFIŸ+æIK"š‚SxmÚÖÑdÞJ-S-šÛ +âPZ²ÙîaÍÏÊÖ?ˆ'É>X†T…‰Â„Šë¨âQ+ÎYyêƒ%‚hreà ü¨¬§õØÉ%X;—Mô%+Œ‘ËmÌ¥Óÿa.퇪MZ¦Ó°;Tõ ™†«îïÒU”)MÑú01f¿A©Ôm€šæO ¦Öùs.ê–= Âl›g‡Õlsß­5v_~ZcITÖÚ3KÙäæ©+ ý}é $+ä®»¢Â• íÎ`¸HÏX9A¤ýKïŠtîH2Ró äI3ÆJÆëc4 ù&’|U\š0L=q ‹5bŠe¦.ˆögd{i‘m¢FÙž‡J¶§Í!¶i R0ÏyQž{P¬lɃÔiUÚì´vç &±Žrbˆ>/rò"œ\3&©?ÿ‰ù¥öÆ„´(³©O’Fz¦©­ÉÔ+Œà‡^Óï¨î{ð2ÅÉØÊ Þ¢Þ¿P„RŒò¡<@?fÉ2%úÔGqŒÄ$ñŠe"_Pc7¡|6-(W(lE¹Uûn±/Ö-{ÅfߢټçúFÐuv×HÐÅGÄÄñP˜ •‰ 2½(Ô+4D§;:E¢µ]™·ì +ü‚µÂkØõyÕ\؆dý8Ú)G{ƒäÅ®¡˜w/pV¼Wé’àtÎ&WÂÞûÚsG$#"0ßFÒ¨.7P‚3Üý Šÿƒ«¯^ÃØ»¿%,¸c`{€ò†«qtÝùö—ßÿñÏ¡»½üòû{óoH÷þ±"Šþ±“€JL(tPˆÙ›¥s.`} Cï¤)‰#‘ ËÃócê0/AÃêPJìrD#ŠÉ™ïãEàrŠj}áwqû3$–Q”/ÊS>+Èj®“ÇåßÄÜFÚpù² f á͆Á!Hz¼“ãñbô㇨Âe^Á37R¬µÂ¶ñÓƪ•N™XÝz8‡nMêñtFìŽì!)#%7õ3#6–S㮸_©ŠD“’’ç¶zÄ°.>þžJ!ÞãWôwJU¿·'Y~–ð{¨5þØ2eZ¦~^{DaÅžxàøÐ*RIpòèí{ö'œie¼÷o² Þ /~dv’#ŸSý4/ºEØ-í5òše·Jáæ¹âÍ7="sÆæD<ÅgßG2 Ò"éFˆõŒ)*¼Oˆ¦ßácà ±¸Çy–ßBÚºŠ$‰9TŽx‹1%©n/ékê<‚¿Fb¥xúŠW xáÓY~4f9” ]°j î=ø±Hø«R©¶ŸÞ(¢]¬ê«;€ö–*ï5ÜÛ‹ +l—MÒ†9Lw Æ'$r+Êj´ß@´î#nº'†-zF3ñÌTÜ“{ˆ4áòyç#¾'4,líÌ¥_Öz#Å$ãx/£ç}ä>""&²¨m5›ßJêdTgœ{ë$!LË ‹–õ6?Õé^r‹\r~>áJ½ÐMÎ/n½è8J.ij$ç I$24‰l K–§Ï®º®LÄÿ×è ô +endstream +endobj +107 0 obj +<< +/Filter /FlateDecode +/Length 6135 +>> +stream +H‰´WiÛFý®_ÑEÀ¤ØÍn Ã@ìqŒ,œ=}KæôÄsEgvþýÖÕIÍp±X°DM³»ºêÕ{¯6ßí¯/wgêíÛÍßÕæóîùþÛ£z÷îýɵz¿]Õª®Lãàkµ¿Zm>ý\««Ãj³Õ¿ÕJ«í媬«º±j{¦äË“j«Þ]å”leŒk•q•s-¼s»ZkWl_}Ü®>þ'ýáûø.lOŸ7ßßÖêä~õÏÕæÞçÝÝ•Z_Ü•ŸÞ›?üp¢ú~ÈCUÑWŒQû5Ç·×uÕóJ£zVu¦¯êº0²_Ö®0u5¨uUt „¿Ö…ƒûÈs Ïê¤Ð¿í +mqÅc¡ñc§î +‹¿_%íŸZ­Ï ‡¯Ëƒº,º +¾Üó¯{õPЮ7DæhOú¼Ã3,ªõ5>ѯmeÔúªø×ö¯!{Gó3ÔI~6Û­ Jª)š¡c"´©š¡n99Ò®ñ˾0túMa(´gu]”ÆP”êVõx‘/"Þ=ù#®ï1M’oËqKŸIغá%Žreð¤sÈŽé9=ÒŽƒé9¥éðüRc†Âi@xãJá+ðå¡Ðÿ°‡½ &¾¤ržÁcCGQ!EIÑà@µ~eâŒÃòÿ~BÚÉñ M¡A|ò¡à|AJ|%‰Y×ñ`ØHØ®ïc(t á}_üäïu((‚/…n8FóúCÙƒúÔœ»ÑÅ!A°ÍŸTOGûXªóBwÑBXé¬í2$¹ZW]cš Jk•6ûñ}M²/²JmçaÚ}¥LCøX)#ioÜba(-%ê ŠZÒæ0!—ò<…ð9d®OÑ);O_€Ê¤0ž¶ƒýY^Ý#`´Àß]R< vÎ ŒÜãc;ãM@‡a°ºä¹¼pVô‚z1¬FÞaãÚ¬{F7Áî­ðýµ“üaC´ªK€ŽñéÎvì8¾EOȣ˞à©?ꀟä÷ZØÌ´ðR7#¼AÍã­oªa¨ã퀕k±$/Ô?M¨¦.Ž„Òƒ…¾Å õlÂ9E÷LwêlBêôB…ú"Þx¤ó˜'-r3ìÊÙ}‘Ŭ°™Œˆ@“ŠÀ~3i?:<=ÒÖ¸íBY/0 †êÜÆÓ4'©™ß$3±çðB´öU&_${œ-pUݵ¥ Z—ËÑ¥û>‡#øl‡ª øLù/ÈÀÛ%bfÀÛÞBÒ1õ–m £Í³–W$¯àdŸÖ•Ú²~‡TØFEB Uv”]âçË¢e@µØ«[ºMª!t Ô×Iƒ‘¾Ü}R@©ôaSÉ„w̤ؑpç¨'QjSÛ ¡—rÂ\?Â\{síØ=Œdl¾ŒO1† pø±”þÚýjÏÃËAý‚ÜÆlGÌDCAáÓä=¢Àºu–ø.…ÐØ+„pÃ9µÒëý|¯{XÀ‡ÅµœîH>‘vŽªz&Ê­å6åQC1¾QiuV9‘¶’íÕuô©oksßÖFßvJ·2"üZ4BÝÓÜ]‰Qˆ²ÜòGÏ-gñêøÇV-M7öhÝÐXŒßÉqÿ›Õmg¬®XX*„NM^Piɲæ’{]¹(s q?åMLbó51ã×É9Š¤ŒNpøiÑÄ ­}L [b[讦 ]çŠDvŠ-¥W4G±R +?ñaðã€M@ÝqP¿® hb2ɦáa¶¡Ï«¢¡&« +W3ž%pJÇ9öxCû 7ËÀÓgz¦Í1ìÀdý½ŒŠ×žF¢ I⬼Q§…æâzÏâ+èç1Jt¢@¥ÿ”®ž˜aï6¢Fµ³.\´ 7êñÀâûµPÂî«8Ý,àÂ1Ñ/,ò¼AäÛdúQ’Ud<~+˜³“)JjúŠ-,_5¨U˜t7gkmFÇ÷ÛbÚräècRŽNý9–+c7Ã"xï +za tLšA¤E>‚~‚û=y,(OA M[Äo^ÂAämm^š ÑËX;†éKg„#ìÔ +/¥j’”ö(…½L6¥Œ¨7[-„½Ö#RmF`©é¦·§i#¦òj™èf¨ëÜ:;7ö;÷VÚˆ¯‘3 +†ï ›˜ñ$’Ì<òw™xYI>gïÑB0å×"öãØ+ïÅp»@r`© N„‰Ž†-üG!Viñ?Ĩ®%t=!´éêQ.Eæ#P­zJXÕP)].bÀ¤8Rÿ®F+õOsáÍÈ(kµ=SÈDŒ7(jç2m׎Dãnb~N1‘ƒð¨Å»N:ËwÔÒÁ*ø¦ QÌ™†aÎY•dɨÌ≓!‰D2.ÒЗºˆ³Ôƒï#ħŽ;ÜY÷aà»p6h¦TÕã}CAAùD΃Hª¿ôõdŸä¶ÿCr×ærGä@.ë*^¶W1ŸË0esØž&X²&Ý :Óº,¶¿/Øß0k¬€¿Œ +}âZ4ëڃ׽{$â½Ò Lø”Ÿ +ˬÖK»¨Ü:Éä«!®ÁØq([ÎõÈ¢ãà×àe²)§‰à<`St„­02Jkø¶Qp‡Š—Lk. ñ&ò:[á±< ÍLì1a+²öÄM x¥oyùÑI%ί¤Þmó¤&¿lÅ\B÷—œëÌà‘pÍ€é¿A{`QõN uwœ¤] éhL“•@µåýåð:&‚¤Æ+tÃy³\ê>i±jQIJÙnn¤Š,Ený& ÝŽ¼“7h±œÁè{>¯æI +¸t}¨R°ÕEÁ°J —è«o1Èc>Ý:1—S¸þ—­ÙŽ[Óä-×çÆž ¡–@ÖÏ‘ãÜ„0^šd“yw7!ç…€UÖ΃Þ—è'úTŠ·b^JkÖ¥c ΄) ɬp•wCaʈF§f2éë±K.ë5óv¦ÉꀆŽ\51¦ˆ ~Ž61·–„Å\êG³sN±‡aÙ3T•ØΟ5u*üûM0;¢Çbe%?;¤ï´Î-…ŒVÀ”d£ý\««ÃjóÁüQÛËÕ@hàͪs}«¬…îÛÁò¶®ëæÝ"ûØ&Çú-þò-{»lË|ð"L«¯xMWØnåÀMsL“£Yÿ­h¬ÇåúötâH¹(Q$‚)³d%Jß3/üsZèfF–#\Øéy€„îR<‘‡ñ¼õPÔ~Ìóáõ3SãbØÑfjº ,»yâ2Ú“ßXÀÿC{•ìÆ£áWÑÑRn‰¤( }ëË`€ÁtÏ sr.^ÛèŠ+(;IûíçßHþÔf– }r¹Jâú­ažàQ;Ú}Ê aŸs÷!ÀtR Loøâ¡Ê,9¬ÍÏ õа‚‚vËR™òÀÚ›5ÀBšÁ‹VÎL7´É *Ü à™¯Œôé¢öä)w’BU +b%Å¥Ò˜Rz®¬$«‡=²zK ÷©¹º[‡r<{P…Έa±Áê¹v¡äN@.„ý æ‘Æ»]‚T–ASÎ!IU5#L¢ä‚A—`\÷Ê8¯!*ÆFò!(†_T >J«9|ˆ9ËeGûµìfVêÂà­ g;MÐ!²Ó9ã*|<žç½Üe•5zªM™%¬…jÔ$ΘØÖÑ>"ÈH†¼WÃKÛ™>ší² ôÓ)á`H½ÔŽ·Ð£dLjë[‚–üG£¤°ãÏ…°É#V†7—M†àH‘è <÷žG­ÐE &´Ì¯ãÛ²$ø€â´ý‡ºµ >¼çÔZex–cÙÑ S˜ ½<(¬°É(dIõ’ÛÚQ¼ºƒ*…?Tù•ó4<@’b6Mæ%ìöQxä͆=µd)ÌÐØ#â®J{g(ÜVvú,ŽÄôo[^=ãë1÷Ìåu˜Ä4ÿ<¦£ ßUaI†µ¸Â÷ÅP-e+ƒ˜Á +¡˜eäKkW Ó,m„Ìg>¬¿jGn°£làUñH¾ÞÔ­]R¥ˆ3àä(?„‰hQhbŸÚ1Œ¦q³¢°âà +'ð8/%iSFél¹ßY¸›É‘©e4nW$·ŠÒ‹@XU¸ãyc°E†+ÍQÌìi£(Çï€'û[C:ØÙû…(ñë‚Õ5°bkl‘‹ªL°ú\°Fè1Îð7€EüQB´t0n£Ð¸‰qLà–j–²G®YZ`¢ËÌìa + íNû3Ü +e•/ 3ý‘Ÿþ Ú™Š{“×Q;yßl1‘SZLg®™tZV¯‘–â¸Ï“v·âŠZKIjn­‡g|evåpûŠdë¥s~¡`çTÓÆ–t(¨ÂP)@³¦p ÑpY=ÜJD'Ýè€7z]Ãu9*'AÔ@ ¢HÚâüzY}ä„ò ’NÛ°|CH9Åû WNˆA€‹I…¼Û‹wûUï&ÖynÛŸì’?©ý`"ØËÜ#`LbæÛIlEmÑÎ(ö$»œ¤0¯·¾/ÔGßä:憜tjÿˆ89§ô(ÉõZŽ»$[_'(‰r¦A ›Ã_î²ØŸÔñ­2ï™’S ‰” ÇŸÁ—ÚeΆß%範£No6„#v*@/TI|¾]¥C­ãaÙËåæ÷¯u´7ý¼C×1ø}Zy2á©šw<ÕÀ~+?œ +­6‡¶eh¹Veú™:ÈŠùºbÓ“kÝô§¼B}º¹ÙrâN‘f[ê®:%‚#wÌÇdÛƒˆC»‚nÒZ‡¡_ònÃ,‹1×µµ¬5;ÔÀÛ¤E®ô^#|hßì½Áàñ‰i”Üpü–>bËäزkØ2½ +ÿ×usFÓÏÕ -„°ôoN¼cÆs)^&3)"K3…Zuz ¡ C?לÂSœ]q2?¾Ûb&HÀjô«è#ðliÄÏÚv¬\“fÂ=âÆf¿,.˜=5WøèèrØéxÕÊ +Abó´ÚaÕ)¡ÿ†•ÓŒ °Hh­Â’v“ÌÆòPªƒ€l›ÿ`’‘–*_¡ ༱1=Ö„oGI gì[h‰Ã8ù ´rõ +IOšœ¡I/«?êN.&-Rô©%Pì8š,ru¢#ÎñZŪ£Z¢ê¡ŸFNÎÄQíyb˜Ë¿¼ÇzL[… r¹ÒôfDP!SŽÎƒáÁm„‡ÛyíáD8’…Ó7Ü÷ŸƒN׌c4Ò“X±DÎÄdR,–aàÌbôºÚϪb&PÁ§ÕxÚ¬CA˜#“…]¡¶ÔïQ[þß5øÆ]mœQ'°ÀÃYSǦ¼Ì…°Ìi\ÊfÚ>Å¥:…ºi\õñ¶’K(‚ž×+»Šî "’ºVGä2L:Ž{|L6ÄŒîåFŒœ[ȬúþQ²ðáIÌc]ÒñÚÚíg¡ èÇ rÑð­éø¿RCˆ +endstream +endobj +108 0 obj +<< +/Filter /FlateDecode +/Length 5505 +>> +stream +H‰¼WÛnÜF}×Wôã4 rØì ÉÄ0àKdá`½ëy“‹‘v$+Öh”ÙŽöë·.ÝÍæmLIÁ€ɡÈ꺜:ujùj}¹¾¸/^,ÿ.–ïÖ»/÷âåË×o߈“׫“By©-üoŒû«“å/ +qu8Y®Ô¿ ¡Äêò$+ò¢tbu!üÍ7áò +¾Un…R:×µ­Eisk|³=Y('W¿Ÿü´:ùé78é8¿ÇoÁ<þz·üy[ˆ·»“œ,ߣ{ïÖ·Wb±¹Í~y-—¿½ùõ­hœëº*УÏè£bWÞE¶ž«Zá Jñ«J(íòÂiQ•uÞ4C×Îo¥Ëk±XËÒåZ,îeÖàu-vÒäF,nÅ¥T +ïv2ÓyE×2WbññIfŸ¬e•;±8‡Åâ:µTŠÅA¬e¦jÈÍâV*‹ßÝÁ-î7p¼r/Xü2S`mK¯ú]–üœãðœ \3öpÓà+‚_2ô<ƒ?’¿ý„kÅ/[2kðÏI¤eV¯%{‡k 8ÞÜÊRcr¾ÈÒà5~‚&u'ÔqS}¿o„œ)ŒùÈ»EÓ™2¹ÞbJ¶ÞíO.8¡ò&ͧü×êoMÓx©:xéB! ´‚눅6EZãQBfE7¸¡' ®;q¾²Æ?BÂëXÌ £¦0þñ¯àp7¢Áp.!wtX[¸hôÎZr¹¯ð&Í*ÈtC¹Òß➀N~"h4X7ã-1õÊ¡IH+¼þ G*Æ5äÇ‘Ÿ\ˆDX%ÕÚÔ}•šò°ÁÓáú éèó´èú‹©á«SB=zµ%i¼‰àøÑE†HÁí`çS雨TÜ3ñQ§øÈ ÝLa¤(rÛ4–1’DÔ)¶Ç=4 xöðâB ®¾ÄËiZG%…+êŒHAi·Ü<î@àøË®¬¾xë³óVê¿þgK7œ¨XUþñ‚àGd‹ éJô©û*…ý?Sßñ+–«ÁƒÁÃÀñô)œóAhY +sié%m>-〠EíÒv½¯1A䊢¥”p~P“:ÁYx/f ÅâQYy^ši>±x˜²®ƒ•E–N½I»U‘ØŸ«!ÂHQ·¡•GECãÔ2GϪ6þNŸûi¥ÛiõÙ  ,oý@Á¤~A`Ù”ÛÐ'—òD{C꣔¦Äù¼¬W*ÉêÕê¢ô:o €‰²W&Ù3ÀdV+Ξõ¹ÊÃd-áF,ÄJÒ¯O4œÀKq¹£?ì0K51¾4Œ‘PÚ©pîñ%x²¾½€ÌkF!¼}çi›‡7hUÙ ¹/k +7ÁStM¡á†B]aviU wÐM(âLîÂQLâ +#Ô„¤¥h:žÇªçJ_Pñ·k٣ʫ‹8|‡LVÁÖø„'3Õ‘fÜ–&Þ]‚^£¸îD-iŠÞÁ‘í,ä™é}#¹ ÉgÔ~e<dv ‚ÌCÿŸÓ9ção-ˆõQ0Mz† rpSGèü5ùGRÀ”µï‚e¶×¶·žg\Ë3¨¾ˆÑY… ]k¶1 :A0s-Ìl2“Bôf %p/áQ&5#.ÑWuW_yñÆe@•DE»ÃÏ“U³£Œý j1ƒÚê^’ý]×Íæȼ¶‰Zk\1xI¿˜‰3kã{S†¯!´4ÀªH>†]UЊÀò¢( +ýrÖ˜³É¹Ñf`ÏfmæÙœ»—ÀôÀ³Å¶È =ÀPuÿärÜKKy_JÊÖ¥îð h¾YYåuÒô* J‡ÀeôW£,áu,„š¯ê4_IçŠd?Œ0¥a[#±AuåsO10Òt‚_ö.Š©Þæ2µ0¦ýo˜¯ˆ.“>²IKûL)àÑIÐÄß’E7žeh0„­Oyè“«_Âfº—šGoIÔ4梨yö<(ìdrSÅN×æLì4j¶L6®šhíää!ˆX7¶©ölŽK:’xûܯk‘w3^e"½yÁql¢¡š©@³ž1{'Ô°ÈjåJ\ž¢§A2û™BÔ|è$d±üý¾žW%)ódÏ çP£œË.Nø+¯ŽÊ0JÝXZ’ÔKYi¯²&I߶UéŠú}«µüî¹%©Eƒö¹Jº)§•t@iT"{“"™¼Ïì`i!þO²I\µ%–hXó[¼—šs™D‘Kçk²·>ïÖŽø2ÈÁ¶#CŒÇr|8&ãþ(Y>·JÏeÖ ß°‚5~òVˆÕƒ+î²ýÕ­ €•7˜pñͪ³6m·v¶Ø;Os#Â’Ø~“Ò!Æ +ßZߺÄó¹Ôt½Bb5,ð‘N3'zZiNjÐî8o¤¡–Ÿ©«×ÓÕE=!§9äÄÏÃÐùžÂ6<‚ñ‹Vžù´ï7¢'Š2o¿é”ÆõJ3 +TI`%_JÖF´ikðÔDÌÍ%Í–‚KÚ€¶È]*œUXcvhK 혠ïñó8ñ¡Ô0'æô”É$¿\­6ày©¦ç«KFY× ì\³ˆ.Ý*Fhšds˜Öe” ýWôf˜9"™×!¹†5fÕ_Æñ3 SFàà*¼k=0˜§R+Ö×Ñt ¡‰É¾¡SºÓZ1)^|E6L:ØGØEšÿâ!u©ñ{ `èýRZ:ðǹÊìÙ{ŒÑæñ{Œ‚Îå®ÑysŒÎÝdF°œœˆóØúv̲€`Ç} +úhfâ±hŸ5#ÓøFú½#ë,öÚÚ«Àø¤ã˜ K‘‡óè$´“ÐâoCÚûTüŒ™‚'?ËÚá1¯dI³1ý ûº’ uî)b^ózEÃ`jÐdUâµ…ò,$CñËgCnª'@Y…r×èl(›§C99ñ ÒMT¶>Ñ.í°¢¢ž“¾UNÛŸ¢•ršÛwˆ7xr)Öâ&ò!íG‘à“•‚§q +J^MyÓemYjZFþl0Øgƒ¡p_7à`w ]£³ÁP= ɉC0´sˆ)†4ñ•ÿË¡¨þn%I˜‚ÊÑøÝz>hˆC€l{ã’–œ&%¢¦³6DÅÚ×úŒ +×Ýjýv|N¹¶´œµNÂüæÅú"ýµè×yý™qÛ8ý9®«¨î´Ì!S ¨é¤åòÁ4¶*úPõ¾&‰}ô-¾ç†ZX±I•¼¨>¡Ów‰=t2ôrìwn4¡gòŒuT‹N´Q\:ŒÛû†Ÿ jPoäéµ!9½¨.s?óËÎJÁç®ò¡‹™±Öô¡]ø¢Å¼ó¶é%,¨_Še1ƶdÓdò²Cžœ,Î.Ÿb4DTä3ÜÄG¬ÁðÜþ ã©ÅEc™Ô3áÝ6šdÔ\É-Úâ´Å¡âLʃâÌð‘Öwq‚5!H¸+ñ ï$/r‘¬ý| UÔ<—:é–åfYnía¹Qú†¢I 'ü؈˜ÖÅ_*=ÁF Ý¼^Ì 'áôº<Ìhþ£ÈzÏgèaë‹âû Z¿.k¦Á}ƒ†ÁrAÏN,•#î¤\à–í=·¢ž«ötzTÅ +Ÿ-öúˆ¢î,èmÐa–IO~Km³ôxç´åšhf”p sîF$2Æ!ªdÇí3¹Pôuvàô55GCÈŠ°¦>0r8[î D“Q5¾2ί8M]éŒ6 +è „8®Ì¯s®l!–,t脇4üùi]÷ä¥#´ydÔÝ”!ÌØ|ü™ô3á´Y’[ˆÑ1gŠBôêØØýlÖ’oQ‘ðÓGâ6ò´aº„ƒ0êYgqÎg×0j&£åz1ËŠtÃ8#} ÿcìaÄ5j´g6hH=£Ð´žO¡nP–‰-mÒ•”ö¶âA׿yΣÎ"5JuÓƺiúµ¾²C྅ñýR“l#Ôµ’ ÕóÕ&Éædšñ:ú!ÏAØ­rìÏp\ÅÞ}ü°¥ùûSsU‹[è]¡g)Ð+(*ÅÙ¤šM½8¤LìgÄ™OF æжX3&ÖÌÀPoœ—²qÕs!O9-اPKËÛ°Ö91m´Ë !‘Íž×Ìa±%X´„+¾â%ÁcÕ‚S¡áƒ6†ì8µUš¬ÂIC0D'O2C0—O·NËC•y2_2¬ ºkð/þ•ßdÞsC꫈È ãO]¢º„u[¨¡n‘åZ?^ß[ø‘Ò`êÉß%î…©ïä¼’/«B…@ +å´X;±0Å­aãmák[3¦Y Ç0À—詧Ö=Iôèêåµ*Ó6­0œQh챫—SzÆ™iăj$ë’¡Ò=á²R +NÀ¦gx3„Ú_– Ë#1]ÓZõؽŠ)Ž¯R{S{ +íÕ0@Èöx̹«é~Òâ+£2-|Í Üà ¾=n©<†DšÍê|_<Æ~«ß Úo> +vß9'tÃŒÌZšµ »¨&tj*<Ç|2ç©;3ã<¹<51 ¬¾IÀ‹q³»*Fþ`S"[Δ|K'ÀД»êO,<û÷êUÝQ±ª ½¼x§Xp,¸F3N£–øR™%N©%Nâ„ø^;ÏaDøo!µ÷–¡ºŸ¬å€#Œ&ÃRszÄ~q!Ó!‚¬©×Æ›€˜›nÜeƆiƨñÐÐ÷õS¤R¸Ò^u]¼U·x¾ òÚ¥ + ªTªÐ®I +ÏãÐÆ/Y‹l'&ÜÆÄŽ„q}U7’*m/±Ò’p.¨P2Ê­Ñ¥({ä¢,üÆÏ:1³“¹•ì¬>·…eëô˜õÃIûì£:¹â 0²ÓÆs4ïÕ¨½ö Ž E›µBµ[×z¬¶ôqÀîžzµ§N¤Õ¾9ÇFB•ßí NxåöÞå¾÷Nx/L±ýb)ÀQá¾w×¥5ÑFOÞ§ 1kg Ö1 ½áýý(Íü CŽÍ9i ï+‚ÑÔy  xµa˜ì”©îwù!®âH†sŽ×²[ƒãc¼O9FІû^-Û’Ä ~ãzÒ˜¹‰ÖÓJâ¡4ªt‘ /fŸ«0™U(( é¶j¥ÊXÆ9”Š­£ÇQɶŒÈ@ ½Yė·gñ¥wt P!ã•,ù ±Ô“’Ä-â5† WÜd¦ÇH"7Û8¥Ì$áa%„h\åé-@Ô)Èmµª…ÛFá‚áé/üêa½&Çà¤3ʽ‡g~_O“ÄÓÅ.w¦ÙŠ™š4 ZîõtYbÒÖa1ôÌ`5¸½‰@Òo˜ /÷—ÊÙ¦µ†ò3ˆÃ«.'**ÈÛºŽ¡œzèbò*À-t)ÄüÍS Ã{ÚÝé‘0ÔÞWÌ52‹åÑ{¨²èMêÍÂ÷DðÝà:_òY}wrÃr#þ,bsöB!‚RoãYØÔÊÜ»˜Pu£í„ñ”ÞÍxñev¾Ö”9þP¨™á€bt´vÐr9Ú:à; rBVŠS¿m”M—Ç·™×›®×ÂpN{è\â6Üác\Ns_!v±Â½ Ý=Ò¿Ü øzË Ò6>än« w»A?ê™À[‘ªšMŒÛ‹Þ"áÇÑûè Õyy"ñŽ´pjŒ©'!{Þ½U5㬞ºÔ'ÂSù¾wzIŽd2¥±52`\&K›û&5µŽz€jÖuÏ[ðÚ_+†`£ˆíð_SR-€ +endstream +endobj +109 0 obj +<< +/Filter /FlateDecode +/Length 5787 +>> +stream +H‰´W]oÜ6}÷¯à£dd‘) ( +4uSd‘¢ÝÔoÛb1NÆc¯íØõØq²¿~ï?.%-gw žÑP$ï½çžsîÑw÷gë÷ê»ïŽ~UGïÖ_oîÕ÷ß¿>þQ¼>9hTSëàÿ¶µên{pôóïÚîŽNô?¥ÕÉÙÁª©›>}PáãòuïÀ¿®vªÚÚtÎ+ãjç<,¸>8Ô]uò¯ƒŸN~úNú Â÷ñ]Ø¿½;zsݨ㛃¿ý†×{·þ´U‡›O«Ÿ_WG¿üøöXéÆöå]^é/©ù’'Ꮄ=]ÔâZóZ­zW7vhUgúz—ûÇám¥}mÔáºZi]kux Ärx_­LS{uxQiøú¡Z ôy¨[%^3¾¶¸˜ßT°IǛЃ¯ +V˜ºÇ7zÍá㻪ŷo*Ë›ÀÓžŽàŸÏÕ¦Z9Üèþõ¸¤Ã?§•uWx +ü‹vj­Ná mvOGküÐb›Êàã;õñèzÀ=1ž•îðæø;‡mh/Ü›·ðgÌKûÄ·à1ådaµô˜’´U7!Š3uOïÀÃóÊ㵃'øà¦Zy<“‰§B:ióﮬ)‹å +O¼H—£ÁRÝ®p+xí•ÚbCN\±Åï2bÊÈ86Uýyò·„Ô'°8,"Ô mjp½n‚68»KhÛ`üoßs mÈ¡å, xßkºV›"UbµÅÕ\ÆT_‚ÒN•Í $r…Ôc™³X„Æ Rs·iÅÎ0‰t'€UG)k1k 5mñ•" #H0ž‚PÃÑÓ•7˜qk‰¬/Kiù÷mku r\YÚÿ½šôY„û&FB1®15{W*“"‹È©xqnþØi”ªz!ŒÚ¦ ´‚¬\±±–×ð`6Mí†Á16ßVÖbT÷JôT*éŠxíFA"\Ñu!_±!‘GDt‹™åõMgÞÈ&UœÚßq…!g¸Ã”¦lnÆx’Àɸ´t«¯*7#ˆÓfT`dá@9ÌÃŒ7'ðæ)“±éWáq +…û<Ý eÖ?_Â×.ç2JMø*™8дØý3ÕÊí¢–èàa¦ÎaÓ\§¥X6äÛÍCÎ÷PžD‡‰ØLã5å¥Å†n.+—ñZR +K)$|5¥ö)ÞŠd³òQñSº )"åTò¶™#j¬“jH€ì ¾ò@ä¶ÅÚôx‰Àá Ê°:IØé˜ÀAÑñ°™”Æý+M'Öê î© hD1n[¸ºxÕãý!qêÿBÊ–ò{üœïÀÀ$H}›Ý’n‚a£ÊšêìYî‚ +¬ƒ¨ì0¹•òsÇé} hé ˆ:RkËĬÂQåFî&c‚v.„±—"<¢;ÜÁâ×ø‹ ŠHÝÒ•´È’f¼2.ùœÝôæÓ|”j8±-Ám¤|e‹«³]ßsÖ#¥-‘ÒîÑ;ï:áü'Ý‘JI<K¼FîìPà s¬l’NáXHB2츈¤§“·I’Ä%Ö81i¯`ÇÏXp¢?ÙH³öfízÊ+ñVQ4H~x§¦ê~— 3ìB›ÌH’#±HE?› ++|.’¶GÒ[Š7òîfXZ+Œû{44\V +(%MÔy„êèÒ£ ž3&” 69(B»¨v^Ñ;ÍJuÄ _ᵎ²h½‹K€#"ÔüaŒ©zÇ Ëcgìwj…ñX…€égcÉ¡m>Ô„dý #¾­|1P$_šOþàú¬Ìl” ƒOýïìÄ™y!Þü~“ß=ÈÚ` +¬®šüNl<_3oÿ|8Ñ6¯P>HïŒygu»­ 4jËM:d÷Ž»úûÉç5+nã+ž€TFGT[æ-YsÁl®XϸUÝN@f—‘¹ÁjC1¦ûŒéfÍ(<%Ðäý Oç•ä,ÆVN‹‘XÙ-g°~Ä`ÁVºéêN{§<\$›íªUŸîÁjUjÁõ5˜„‡à{ɬvh¦æyÃ%þÂóR©œÙ6‹g/ˆ°Ã?„|dôaåHæ1·ÏØ“—ÙUîàÃÚN‚`¨vez +P%¨šbÐãY%γRGU¶fbHYI,œ±Z +‰¡0@šp^Ó-¬ò)àû·&`˜pÃùZ†| +Bd¿DÛ™œÓ馢ÆâöI¥Ñ [3TnòeÙgŽ‡¡±[ŒõÈ­ºWpŸS€>]¹2ZåöÔÂ![^-ºágT=røšHCȾ'K©>") l ù¶qê¥3²C ÉÂȨוå4.Ck–È”€ÏR™rºôæv4]ï…7òÀ9#ÆŸs…«ý$Ƹ4íƒosL&ä¬xZL8ñæ ý¹»µ–F8NXÒ~~ü7¶þ’I³ºB‘yÌÞ}dItrj¶iñ£áj¢û¶Å(¥¢-úÊK§˜ì«ÀÚZª<Æaö{ÿüðàŠ–jœ3£‰ÎíAMg„IŸÎÒ"è¬yfoYÿG>ÆÈm5Ìà‡ü@~ú6ÂpLiå`3NÎSâ,óv/Ce[ì•atœCfŠ†pyZ‘à>T¦%mßG«…ío©mÑËéeê-Ç•al/C?M žul•~[?„Ĉd~¾a¶”̦ۃ0×£{‘ÙØc5žÒ$ØAPËE4®‘ÿVaKýœ¤Œ|:¹ï‹ [FØe˜)Nô¤<°Ð¡Þe—G]# BA'à +JÁ0rÉ3^Ž;.Ó9qwÁÜ’iFÌlÛ”b“k×:ä”Æ•èDrMH\“Y]Š¤¶D’ÙÇUm‹n¼c$åñfå9°ÆÏÜÿSø—†É…IÇgª©/‡ŸØEa— ž,;b¢á¤˱°Vj¹ñÖüÖUꀰžXFÇpDÅŸaŒëâx"Ò0c!c`D'—üÞ†Œ›1QÚ°ÕLrï²®·Â\\$Ÿ–6³Ñb€¸‘;o÷E5Q豞l2ON×X¨–êË]EÍ_!Z#íG5P`µú ‰ÓÿW3Rpéi´ wBcg’{‹·¥™3M-+Ó…âÅëËüý¼Ô\ÈÍÏ lqdÛq±o«&t”—ö9¢•„mxpf"æ5Q6£±¸;yùò›G‰¥(ò##mö r–ôc3b;² ˆãs¶ ¸àã´Œ9ÑÁ$-äñŽªwTõÑ©¤;b¯!I`j4'õ ú.ôP{•¬Jèq7¥ó+ø‰Ážý³Àebvî¬ítº…ÍD9gh±ê—®Bc¦;OÓÆ:0ò‡ÀÙSã‹$« õ¹B5ôuƒg¦w#¦Û?Ó%´ÀH׉±k¦Û¹Ñk¶×_Ô­we½8š^D³Â™€iÑŨÀÅÕöNµ}'\Û„¶ž±Ð×tˆPmâxçÇ`¶¡´š‘ÜQ‹|F„uö7{ÐvŠBº›·êóN{±ÏNdnƒ¢û1ó¸t¼ðyÈ+È<Ì ŠÎ+Q™{>P»!­LŠjÇ)…íù6jSž¦”ŠÊg +sKïîª~dlÆ~Sšk—™%el)Ò†’i;=ß;-¢A0í~×ñ˜Ã†9T*[¤¼)äHÏÓœ@&[d부‡²Ÿš÷)“^½V™°òÌšÆ@m/+ZP«·ð ©#VfÜA’ùÎÄXôج„ÎgF TnðMN€,9#çˆÌLæQÉﶅe^ŠߌØÆî™[7ÓC¢@.÷ˆüèëEp›ôW$vÔÙàÃÈu¨o™`m0‚E“q=²ž±aüª6Ñó”² RIÏéw”½œTp‘Ÿã"9h`-†1g:£‡Á7)tUÒ¶ -¦– +vÐXò>rlR¿SAy\ÚÅPÓ%Ýø=ãA óc6vO)l&HÿËÆí<Ïc[l'ꎆVöÙº-…ss·‡ž‰÷…d\y6×QV’ûH|9BEêèfŸåÞÉ»¶ŸvŒöñ*©wò‘/c¢Ë´!¦DˆÙ‡ÐŽlæ¾q§Bud3»8ÌÑ´Û¢{wsfy±¸I\q¿Ñ×<†1-qÁ§>@a+øbXW€ÅF³ïHn‚øšÊªñÏ­!@˜®]ÎRp +±ê´CÂ’/èC‘½Æ.¥ º· `¡.àŸâ»¸/8;Œ4Y£­e-…”-!åöy ýl¤ÿ'öÐÊ‘‹*Ûšw¹Žåã”86‹ƒñ‰Ëxf‚Ûq9n«ÿð^-½qÛ@ø¯ðÙ­H½¯m.½´@àž ;·‰ã®ó¨ûëËyrH‰k9ziŠµ$rf¾ù-ƒU6s¡€%*—7*©1n†vƒTâòXíêGGìáµY¹"Ò‘ÑœžE{W'Ôu‹> kNC*™/ßæ~3’üóqoWÓÕ.üï1ʺ‹k4žmü¿7ŽÿóîL Úð.zÐqè5|àÖ›C¼BËt/Üë&Ц±ÈÖçSƒØ‡DŒðB„8Tr×`ëÿ ¯é+Ÿå×X6øÌ =²·â1«ø¢¥‚[®µ[¶¡ÕEÔÆr©Ò_q„!$YŸ3àhy…E•”jýŒgû\†a{Ðé-°[|àoÒ¤1y‡·U{+Æœ¯”\n¡5ŽZ}eè»×e©Ø×eÓ¾²Œ +50$Ç—|ÒšbÞç྄m™R7Ÿî¶¥÷L„ÙРe¸|ª.¾c5 ¹Ì·Ï pS.pÝ\ATXŽs7Ì„¨,RdÌ{&7‰ïxBÂ)ž¸[8èXíWüÞ©ð&º9ðžˆoâc/Gîqv>klÇɃ.toõ&ŽNôkO¦•¡2_É ˜î‚ £ÅàÈûbäpŸô÷«¥Özº“oâJ˜ÂGFr|©?um/h敺ÅÛÏ‚™~‰LÙ‡.Í‹K×\ü¹çãKŽÈeY  Œ÷•æ^’Ån¿ÈÄž¼v8ØK£Ä¦kö“$Ê3°nD{B1O˜„Ü×N 3ª¶0ÙmôÙÍøÈs»Þ؃ü’ÈÔ¶­beiøö¸ QbèC*I“ÿn€\ù˜S2W Õ¸¿³ÍDêj‘ÿã÷Є½Ü‰Æ©­{­¡gtE•;‘8ù ‰>„ +7ÆCz…¡!uV2Rßñ¾!cû‡›ûîœg2ð +R„Í¥³èì×å&õTupËë¨i’H/æ†b-o*÷,ºÎ°N@³‘Ù¡" TVïË4r"Ú¾Qæô¼`-ü')G½hÁà<§XÎ^(*ªi0ÇbT7O†s¼…‹÷©éÖô´^©ì–´äQb?v ¦€ÖNðË¿<üfÈEŽbÈŒ¯’–Uäãt˜> |teî=•Î^Á'%¸onAš¯œÃcž½t˜,éøøooYE˜Zi‡+ׇ4Ç(ù‡0û‰7áè~ŽßŦÞE'ÑÁÛ¸2iG!|Ò‰fmÊ}*z»e]NgaN³ØÚÍi}Îi1QnrZ˜:“ V¼S*ãÚføçÀ|ôAÏ{3Ö{“˜$MiÞ˜’a?À‰?¾“éV¢6ídºuñªò÷ w¼oð>J{²š¹¸ÏÛ,½²žÉ¡„-‡¢Þ¿ÜSaÏ4LZŸÜÕ~zrhŒCÃl¢À-$á~Y^&áz®ãÁʨ’­ßÂKâ¹+˜ÿ|ɯãÏÉ:aÍ}šAã9ŸKsäv³¿:=¿Qê"§³E™L˜Á¦ƒ6 3JY¯§TCQ){~¸qïšÐFÆÜȾЈˆ“ãìNtŒ;\–…ÆnFš +Uíú +îúÞ¸ýkÊZ¦xšÇÆ +S·EÆTÙì“=ëh*„–fvÊ|Æʇ–-yüï›=ÐÙÐu.AwŸLT4@¡7Lç40¯ÀÃU=So†¸j¸FèY½ôÚóÑžq œ´ÆrÓ£;ý!–Ó·2½å. +VÝýäûÅeÕÙ— +NåþÕtœ¨Ffv{t•Ä õþf7PçÒ¥Õ$.ÆÄ̶ZA®{ÅÁ‰˜º¸ÇäZÿÖY؆’ñíhË7¬EÅC”:Ù:¹íf†µ›IJ ‹¾æUœØü=&Ö—4„Ûì©/z:}{O“j°Âtï"e¶ø¹ý"¸d"XPºŠàe”s¸ÑNÊ2nX YXÊȽ¨PÆé,8èÌ^ ß^Ι ølüÞÿâ¶ò¨¼6•ÐÎgX±¢™Žé¡ðÐH‘‰ÃhÓ$W§]³·ÇÎZÇܹé²ð; ælº¸<¾dæ½ø™Û?ó\ÁOÀ_3~à4<çŽÉTæŒ;ÆëyQÐÈÛÉÒ§QÇÿò'ûÏ8jŸMŒÈµnϘ:²ì¡Ø5NŒâè J’cËÖßAìöObw*±;îÄnìú$²ìVûŒK[©ˆÞKƒPübÚç¹è‘ÞN©dÃ]ì…¯;-ÑoVí³_¶–Ø, ¼Í s¦®Å,xN½}‡ý2ºÌJËBßR +9½Eé/¸ù×0 ä)vTè›e·+ ÉÒÑ=§D(ñý0Á |º)xKõ=†_'BÙØÆlº×Z¼šUí¸{j!OOS>¸¨,Ç "•Ÿ:ãbÅÖÅ ~EÞZÝÝü™¼H©ª€0{Ã[­šà$bì2.Z¨Ã¾à¢‰m€?ÃFº¾º!Ós&}2*6¬ˆŠ +Ÿ“äÐ!~9.ÛvÄ}m:O’%ö¨Cwø+¾~Ÿ¹â½Hér¤T6|XŒ;M&Ë#Tl¦d†G"J×´<žµ› Ï‚ Ç£{„O{Í{ñÚ‰u? ­XVóØSó×|C=(²ˆªFR”àÎÞÓO™ !Լߥó¼¾H’Âì–>Hô÷ ƒ r)Û'dDþLA ™­.¬¾'XcÞŠ1·"-1fÅÑi$Û‰¶>7$K oý` íO ò#ïÛE3väÔÑQ ,¨<0sßÁ ¯iI6à”FK¨Š«+M eèlè=Ø ~¼3¾JÃÊlÐHÁ†wFr0y¤óÍSÁOn \êɾ¥šëè浧þ>nÝÓU3gyè ²«jw“Ùë­Á+nQò»Æ‚ TºÁÖ~ËÑ`­xÚô_zòûØ¢ÐJˆˆéѸ_“2;J™O$wθ;9iæ» óŽÍº2ßv ;Û]Ë]"yN{¦}b62®»³ß\Ѓ£Ñ}çž-fÌÆé»$ï.í lBß^¨Œ9TJ‹¤Pñ£ñ¶ +Õ‘Egói$£ôQæNB€h͹TbùfÐÙ’J·¥!íï† +$DbúÒåìá2,´ÙøÐßÒ‘¥Ò‘°Õ‘§2ÅŠvEÖ}[óá¸+{Á2íAm0V:¥ +!‚ëØH‚;ÖóÉòŒèÈÛùn$=O‰LhüDW·_Ê3ô¤Í¡<ÿµÝZÉQ‘äv¼¿q/þÞX5®„c_b®¬ûÿ 0I›êÇ +endstream +endobj +110 0 obj +<< +/Filter /FlateDecode +/Length 921 +>> +stream +H‰ŒU]OÛ0}ϯ¸±´8±;‰„V`hh›ÈÛ„¦Ò/ +´amñïwﵓ&bÕ*$šØ÷ãÜãã“ôóf·œ';89I¿Cz5~o^vpz::?ƒhTGdR‹ÿóÜÀf¥—7,¶QZ«ß(¨çQ’ÉL¨'ÞÀÉsð¯”2Ò”¶m¥µsVQ¬JQ?Dutqþ`#ʧ\,OoWé—UçMô3J¼«ñzñl\ŽDz}öõ#@ð<BÕ"T{„™éá T&KŸ¢÷ ]â~QÂ_±d!–"Q=X‘hˆ¡NË +â(¤‚x¼Jo1Œ–炳f"±RS'­h—‘äØ9žâ²4˜í£Ÿ቗; ÃßwŸ´Å"mb®%qw‚ï–²0ÚQëe³¦r@ÜÖß:^1§zÌ¥u2 ©ŠRžÕãG!æ*sžŸ›Ð½ý¬„bf€°t&ÍŽKŽ†Ä©ðš‘;"‹jYŽ^gB3WH¦‰W¦‚Ù¢Šæ#*°ÎRhGa]§%u*EtðÆ)K=÷¹O¾INM<âÍ f‚k.ž¥ƒ…*&ܾ»v\áU?3ÂäZÑò;LDI ®[³4zÄ$ÊPCÙwŒ»/Bó°;LržG–]sÊ€C[MÏÆá ¶$+Ïk˜ø‡-¥jn]y½uG<[ÎÚ‚Fpí;ª(ŽÞõ9?J{ºke–»bsR؉/u»§nM!r>­^ˆ#>[QÑ@L‘Ʊ>ÁT¨‚˜˜e¸ÿ,²þÈ‹åëYµ¦a×Ø´g +úÁÖoí+¶VþDrV]pä0§œ Ð.E-½:7x +>¹@I$Šg#û0”pôyv‡‚*gטC d¼ ¦{ðcÚ¾Rsob…z¨÷–,­¼dI6hÃzákÚÇZÎPÈ5 +Ñh <äž…G°ñáÍQ2ۈǢ-äʺxâ¤ÿ©9T5ÊÒRe‰ÇPeÖ«òuo2ø‰¨H7A\°ñ£ôúŒ"¤ß§Ö¯‚O¹§yï{Fl$èÚ'¼c.²žóÐY'¡}ížzK‘:¬ðˆë­7vòf=N½×Øà5Eω¡;äMñÚËÿoëí „áuò:/ƒs²÷½BÝçñã-ã»iÿíqGÙkßÇìžÝÞMéì;|Ùná¯Â_î§ +endstream +endobj +111 0 obj +<< +/Filter /FlateDecode +/Length 841 +>> +stream +H‰¤•KO1Çïùs\K]³¶×^¯„8ðPEÕJ=D½´$@ š(ß¾3c¯×I!PU9ÄëÇ<þóóxüit6}9ÑÁW8<<ø<én ˜våÇcqðåäü,Ÿâ†ãñ¨‚ñ3(þðÏj'ke8odÛVÆ£¢ãŸoZu™Õ²’•ÓÛ¦•2ÒxëÁ¹V6Ñô÷âA(/k(æ¢ÔRCq-ÊVZ(ß+œ¯Â„RÒ£OQZú_ +UK…„oÂ·Ò …ÖBYÚ%Ê0¸N¶tŽí/ÈOƒÇá‡Ö&¸KIÅ=*^ÀÙÃ/Üêéh'0všÚ£gÜÂAvtÞs‚£¼Á%Oöîp€iÍð—W€áTvr¸|ðšÒQd`N âÌ–4 +¹sbtÆÐ& Ãxì° 6›°îC<—SXs&š3aÓÓ^ZÀ ´&µ;x$™p´H«B5ä ¿Mp^“ÉA6e)€2”k°„iø܇¸¿`“#(+‚áeV,–°­\`å^„4çQôASdÅl³7ÖT×£°š‹ó!SB XŠmùÀ®ÉæšäØâ‘Øx«pƒ¾ìå>ÖoJÑ‹Ž$!{…–¡ò·‰ªFrUSÆÚþÖ9h>Ô¡xZõ(©Üô d #X¦Çˆw0øeM†gR“Ð[%v§ ä#š,•H7¶ð¿¡÷IS8\Š{ácÀ(òbØëf·sºØ9® §‹Ø‘’:(ÙôJš%ÍËJ’[ašaRô—/™ï§ÝyÍTû9º‘*‘ó1¸îd_ïµô9 EÈZN¬Foë7N “õÐøS!“ÿAIK+z_ø†Ís;Ĺœ85Ô‡¥ËˆUz{ÏÑw»RùûbÇvHÏӕǤcü{·é·Ëwv7É B¡¶^£Âû Ghq’„‹&rzF.à%Èöq +endstream +endobj +112 0 obj +<< +/Filter /FlateDecode +/Length 790 +>> +stream +H‰ŒUMoÛ0 ½çWðh“jI¶#EõcÆ ØÁ·¡‡´M–lmR$ÙºþûñQ²c·éä`E&ÉGºù<ºjFW_/htòNOO¾L–?(›.õÇsuòõâÓ%ÙœÎÎÎ/Ùâ¼åÔ<‘µ”ó¥«LaËŠ*76¶Î+jF™VÍÏð¶kòÚ ¡­õƇ2Pe©ë¼ô÷l¦*S1’rÆQ¶¦eƒ)([)-7wª0²‰ÒÖKÙ=JÊŠ™zʶl–`¡ø}.͘² #éå=ži"^>๢GeKÄ]s<‡ðÎîòpÓ>±äç–¦J.fJ×Àê2ÒbÝâY ™ +P­œÇÓÐ>!€•û5 —¿ éc < ™ +ã<*€wßeîõÍA°zQ2©ÄŒVÈ2àÄt¬¸Ï™n;‚k&€`¸ØKÔÎÙƒ R,cÓ<ˆÞª|Fgº¿%\‰¸.ç’ºnŽP¥ʇ›¼_>e̸“Ï͔FªV'æîUM[]Ñ‚OX2Ãh‚^A<±…sê•€sªá¶m¯P8”‹Ú6xXÑVÒû‚&ì((!«‘ +»þâ{µÒ )Nµ†¡÷ !òZ¢%Pð½àíäma ͯ¥×‰ìëÊìÓíQÓ]š†Q;/;™±œa ê¿Q5¤ã +ü‰6å.èŠÉztê8-ù¡–|xKKkÐii7J‚¿©Šøº¯Rt.Ö3äYʞĺE–Þ;fŽ^îFÉf‹@7<^q¯mÐ3Ûîø¦å–ŠÔ"òETƒ]šš˜,¥òæÎÔÑo¹Ö"Û4¡CÿÞÆ€¯eïw+®M0U,½ß¤| ÿoœ´; Û=–b¥¹¢§9f©¹¥tد¾qn|§>#`·k/Ûþ!²šÊÒ—a7ˆ:~ &(ì[ZÇZ6W+GUŸÅ]1üN†ƒˆG!ëv9ÈG Žˆ_OÄÇ‹¹,œ(Wnš'þ°ÊFˆÄ¦b‚Êmº¦ “Ɖ +endstream +endobj +113 0 obj +<< +/Filter /FlateDecode +/Length 836 +>> +stream +H‰¤VMoÛ0 ½çWð•kÉ–lE¥)† +0 ¹ =dIÚnËGѦëúïÇGɶҤk±!G2)’Ož|œOçg48þL''ÇŸ¦ëk.ÖúýH_œ}“qtz:³Åh2Èi2£<˽£É#C9ÿøa +Ï›9ç3Óäüv5ø:)]f–S+eLVÒpƒgEûÍ•©²ši8SºÁó»²9 çX9¬´µð\+“cãš6ª„ßš¶J›:ó4¼Q>kø$ìØ;wˆÃÏ©˜8¸kã°s¯L÷+öñˆn‘ß­J†Zvæ¥ +¤µÄ’‡;"±ûIe.©ì@Z½.`ÓÅ )Š¯Ã²Ë±æ²M7$üx;±À&h,h¦j¬7ªÁ\{ßòKÙ ˆÅ|”v0Y+k°Þ2¢ŒM͘ДÔåä Äð 14“¢0ÏHkW“+9FÇŠ1ÐcǪ俒¦Þ"mÒl"*39îA²RêQôî1¡ðWè|’þYaà“ª"Ì>…GÉ |³ï-Ý_ƈßñOzFsÇi? (±ájZXâ±èšBn¹aà–ÞÝX0ë¼OC«¶Ì0®ïmÌkŸƒ-Tl^ð&¢îêRD•ùtWse uÀh©/]HBýëÌ…úÉ{õª]MJYçÀ.ãüë†ZM~¼~lýœÑõKŒ¶UVuŒ†LÔωe¬ +‡<pô©¤ñ¸] XbPø¥ +Ñ‘nJe°mÂ1æqÝw!ôîwxlT&#S"üœnЃ¬tã1U*mX%ñ²hý‡ÒDŸ`%—%âr‹UTÔ½S …)nŸ¶-á@ö:á×kÔt©ôíÊÃÅÓ²²<¬'oTÊ&¥«\”/Њÿ¸¿å=CV‰¨Ôq€±ßÁ/ÎΆ¡ ÷HFïT!íÛ2ÙÉFÒxi…ƒ^ú8œ¢ÌG®µ·ˆ­˜îßjÔ -Ê–lˆ*j· ßÔ¶º;ø§ó%ß-+¢ŒNãe6 dè¨ëž‘W¬zZ/9Õì|¯€ü¸¨ûèâkäŠÄ|*î8À‰¬_Òéà÷& +endstream +endobj +114 0 obj +<< +/Filter /FlateDecode +/Length 877 +>> +stream +H‰Œ•MO1†ïùs\KxYۻή„8ðѪU‘8äV8>Ú„ Jù÷wìx?åàìîxfüÎ3ãÉ÷ÑédtzvL£ýs:8Øÿ1}¸¥lþ ¿©ý³ão'd :<<:a‹£ÉHyQ44y!c¨à/ƸÜÕUMeÓä®)*š,G?³kU熲•*sGÙƒ²&o({âÇŠðb)ûË‹ÁKë±îÑò¹Çg‹ÏS¥}>¦l£L×÷ÊáñJqT~І=-Âr®´eËWÞáh–JKvf þ¬£éoö&©h‡`O\óa³g^,2æ l~$|ð\äÊÔXÓÉd×=våeÜÇö·ÊàqxcÃNãh`òº“€ðÿsMm'2N>ƒ{ßW ºæYáuJãCå^”« ÷J5X–ÈWŠ£åõƒrâÿÂZ«ê +‰mè‘sB®ë¹’7(h• +ºn÷nŶ¯7ÊÖu9ùš¦ƒ&ûsï’Éé™DæL¹'æB›'ZÇ“M?”6H/.hŸ°Õ>!S ý°*”Hèá¯=¾–|6ÌLû•²_Ð=}„¤1fØh°aÅ0{´†¶ðøK‘m¿Ëð0¡q'B9s¤‹RëPbh%´:þ¬Ùz G;‚° SIô&—ŽMÀ @ª-{§Ö…Q3A%R»èX0€FÕETÐn!ßmeRòÞ1K(6û$rv0 {¹q‘7æXƒ0<¤?n9‘ +q¹-Mƒ?Ò‡1EùòÊBwQ¨æE¦*ÁaË>eÓÔÓD÷Up_l ¯ÐxÄ J•Zå4 UºkS€j¢)×Dþµ:ÑÕœfà±éôCÀ—''WVúÄNk ½°ïŽmêd#LkAu…R9^N×ûØ*ä’ò‘<¹-XJÛM-Ã(q”†ävj‰šŸNæ=ãíD¡Ã„³AëÇ£¶GÜ=ôçr‚\ýA ’šòMÆÓÑuªºxc^ÉÜxÄ *»õ——A†^7G’(ùh‡a’W¨6ðêz3Ý…Z‡aE˨Dâ2]­pwf^Ët[’ºwí²Xu÷þ¢¶ŠÛprËt§"gÎ7oðøùk¹ì9§D’˜ïH½HóÑeRC‰œÎqÍú^"ÚØáýæh0xV—ôO€ÎõÆ +endstream +endobj +115 0 obj +<< +/Filter /FlateDecode +/Length 760 +>> +stream +H‰ŒUMoÛ0 ½çWðh¬˜²dÙ@ÑCÚbè°;ø6 CÚ:i×6)RwÅþýHJ–fÙŠ‘CSüx|i?Ï.ÚÙÅÕÌæ_áädþe¹YCÖmòO 5¿:»<cáôtqN‹vV@ûˆPЇg*mÑU`]¥}S8hŸfY®ÚŸÿë¦auQTû¡K]Ö®kv1ô·ìQå…ö-UŽ¨²Ü°©žš:xQ•® »S¹ã3½¢ëèè€ëz•7Ú /éáA•ìÜñ%J±!F[ȶŽL†_Y>]¨Å³â¨7|Rظ”˜¯fË–Êö}¦XÈ:Ž¹ ‘¶Ê³ÿhͱ„ì>5IøÒïžœ)˜”l$ÁŽ+ØKıåE1p­2œgOŠ¹ +Á–[Šé‘¹O)sC×½)JlÑ*v1Zq%Nâ–lIñ©sBÅsE¹•IWÔÑ ©§ƒˆÍ`Á¨Z®¤õ½ýM« Ÿ¨æ‚x{„P¦Öe"ÔX Ì&Lî—@°)8ô C£·ª,øé•ePã)Bì‡S¬azJ…‚ö–‘ðà ;½q£êPŒÔÄcnx¸¹ñ\[š +ÆEZFTd€n¦ÐÃäñzÂãw~hH:þ#Ï"‰e2?ÅÊG4Ö!g% VDÀ|ØSì(“wØRÎS‚*©§Iº ÉPÇàx>Òùƒ¬ñÇ—ÛHš*&ÂŒ å"^5ôó¦ôuŒÄ*ŠôPÿfÌ0Çóï%ªÊkö–ÐOF}÷ö^D5¾:Â…eÜ_¢TL©&*µ|§ÔÀ™v÷ŽVÒî_HZðq¹ƒ=&µˆRžéÀQ Œ“H*}€T<ÞtãZ T®&_…²Öõ)RO(2oñ1ÚÕL4&T1#UÐÖ¦8jÕœ˜Î +.7 U™G .Ù,\1¤æHé˜:0Fzº¾ÿ>náý‹¸åúµsŒÞ„€ìêÃvá®U®  +endstream +endobj +116 0 obj +<< +/Filter /FlateDecode +/Length 842 +>> +stream +H‰œUÛNÛ@}÷WÌ£Wª7;{³]! QTŠ«>TU“"%Í¥ˆ¿ïÌîÆq +T¨BÂöfvöœ3gfG—“nyÛç'btuz1]ÃññÉø²“&5øCBs—¡’(úCZ@#Må*z©e­uÍ"û–;¡•¬!—BËr/Lü*ô#\ +4/g‚r9Èïé“Ÿë œôYÑ ùT´^U¯ELZŽ¤%ÏÏV9åü Ä÷æcvÖdgW„yô ŽŽFÏYuÀªQ‘”’ª¢—G"¹á€›²Ò(g#·†Ž$t?…gN-<tÒ2¾‚IÝÓƒ(/Da¥fÀ¢ÄøsÍqO0X1ø%ñ è)!¿ðVÅ­íÑ̲ÐarA–~Ÿs3ÖÁr*spÚ– ‹ÞÁ&äwÈwœ?( ׇžš·ß%ð¼²føIðZ-M<1$ï8dàÝ”ØiÎ]Ë ÒîúyÍòÞ.á…ãNhäïMÄ^1ö Œ…ö<&äÿw¬hJ!OcÒ]¶žDì¼DR„,ßhX…¤WÖ¿âš )ç¢An–IPbNÇ»X^RŠNÿ- 2œVÑWÿ(Çš4¤…-ï¬Y¾ðOWL,ä Y‘µêyïIÆÂûAá{Fg\ÄàåòƒäA²IªD/®¡ÌïÈ&±(›ÿ9càêÔ*õ€¡™óï=DÜôÐ|Ú3 J 5síb#˜—4ìs$ÏÑ!· +È—˜ Z-5gŒêmÞÑï¨WlSR‡ö¶y ½ë %i¡ã鹦ûÙA’˜ƒF O ϧ0‰p0¢jLz‹&õ¥¶d•ºÙ\û±2yqŽíFEù¯)¦cc†€^ûÐѱz{‰À©eʯÃ5ñD;}ô\’%\[:8\sº}¸P‘¨Φ" ¥Ë´¶Ü©l’ô¤Ž côýa‰?Ü϶«–ëKkv¥ýEw!µ6±Æ’”¨ XCžó€5q´Vmö: +ß(˜­³àjít´Cmd¥Œª½…” •¡|¥´ÚX曆lt±P0^f×/šîËÍÎtv‡ìzwgc½Ñs +tI]è}iÁT^b¯7ø#À`¨±š +endstream +endobj +117 0 obj +<< +/Filter /FlateDecode +/Length 228 +>> +stream +H‰LPArÂ0 ¼ç:J{¬ØŽ¡7¦J‡”¤†éÿ¿Q­]BN’֫ݵ|§¾Ÿ¬öÄG+ê7Ä?ÖDŸˆ¯Ö¿%I4«ä Æ·:ÑN\ô‘øKÜ€½:›ÐYJ~“1ú­ +çfÀ¼Ñ, +ê…öÕ Ö$¯Ä³¸‚u[?´ØSÍ›PBB³ÖÜ>×>*”=}K€Î¹‚hï—J,k|QϨ;É=Ö—@‹‡Qch”åªí§8¼ÂÓTÁ²2Ü‹æõöY\³œpÈX cnü?»qîÆé:ú`þ¹R• +endstream +endobj +118 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +119 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +120 0 obj +<< +/BaseFont /WVABUB+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 225 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 226 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 0 +0 500 0 0 0 0 0 0 0 0 250 0 0 0 0 0 +0 778 611 709 774 0 556 0 0 337 0 0 0 0 0 0 +604 0 668 525 613 0 722 0 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 0 0 0 500] +>> +endobj +121 0 obj +<< +/BaseFont /LVAMWX+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 49 +/FontDescriptor 227 0 R +/LastChar 56 +/Subtype /Type1 +/ToUnicode 228 0 R +/Type /Font +/Widths [573 0 0 0 0 0 0 573] +>> +endobj +122 0 obj +<< +/BaseFont /IWKPGD+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 229 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 230 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 322 260 0 +0 555 0 0 0 555 555 0 0 0 260 0 0 0 0 0 +0 656 0 0 696 534 527 682 689 285 0 0 511 846 690 717 +581 0 593 540 548 682 0 0 0 603 0 0 0 0 0 0 +0 528 598 451 596 528 341 0 0 274 0 542 275 860 586 577 +0 0 380 434 367 583 0 0 0 523] +>> +endobj +123 0 obj +<< +/BaseFont /HXVJSF+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 231 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 232 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 207 0 +0 513 0 0 0 513 513 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 472 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 482 0 448 0 501 0 559 0 234 0 0 0 0 0 549 +0 0 327 396 331 0 0 0 0 471] +>> +endobj +124 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 562 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 118 0 R +/GS1 119 0 R +>> +/Font << +/C2_0 233 0 R +/T1_0 234 0 R +/T1_1 235 0 R +/T1_2 236 0 R +/T1_3 237 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”TÛjÛ@}×WÌ£ªÕÌ^´Cs!´4½…PÔø‚ÓÚ.²Kh¾¾3+UµœRã—ÕìeÎ9³sVùûv¿Z4O{˜LòÏj~mîa:½¸º„ä¢NPëytÎÂÝM‚Úà 8¸„gxxD˜A’ßÜ#,wI~i¾ Ô N¬ŸøHý"Ãùó*[-”¼„<¤=R ÆkS"o­“ bé¦õsr]'×·,aÌß.“¬ä$'9ž A[cÁkBíÿ °úó7èÈ5ù;WÚªèÊòšýiäy‘ +ø-À¬/3 +endstream +endobj +125 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/DecodeParms << +/BitsPerComponent 8 +/Colors 3 +/Columns 1016 +>> +/Filter /FlateDecode +/Height 455 +/Intent /RelativeColorimetric +/Length 260260 +/Metadata 238 0 R +/Name /X +/Subtype /Image +/Type /XObject +/Width 1016 +>> +stream +H‰ì—ýoS×Çÿ ý€¦i-¢Ipb'1qHÞÝD+¤!’Ø÷ÅNÛªmÒÔ_¦ýÂÚ_6•MtEPmH BB0ö²ÐB{QU©c”’8~»/ÏžsνƤLsG¢ë8ß>Éu®ƒÉ=çyÎù"ÿe©MäŠoùÇŠQ‘('­¾OÛ«¡#-W´¥–4¨²]5¾1þ³«‡- +]KÜRÃôÁúòiUX^µ-õæs~¿1ðž…$O´$å/% +ä°ÁO\Kù›%'½DVʹ)¸jÞ-_Gl.å\™ Ö9ò‘\¿ñEï‹;VÕãÊ‘áßy, ~Ž`Èù°Jä|ÿÙ‘óa "ç#ço`]ä|ä|X»A¡jUb“e‹Ê/X®UGê­Ü^Ò /Ñne S•é|Ãz¨ÛÕå9ÍX•óÕPTu +•Ž—§9_¼U'+üªR 3þ3Y^§¸Ž[ê ˆ +ÐÐȈ¯&Ý«tWþ觡%ªC½\ÿ8UÛ#tu­(j_ DQ@=€œª@ÎGÎßä|äü r>r>¨{üâäB-»”W’Pæ|O®XNø lu=ÃÆÓ¢²Ô²ü;jév+A×zÖ†áù9_ùô¼øÁº²*ç?¯f.ç—žÕÕêoáàV)³O\SÉZºœ rRÿœë:]±›X*T_¬k¼^®Ú «z\]ŸX·…ÿ çC!r>r>¬]ä|1ÈùUä|ä|X»AáÿïŽÜ›DÂwɱd¯.û­«\–7Ér`»@Eö •Ÿ#%vQ@¬åmZréѢϥë®vWÿŠH¦ÚO¾¬#z„÷*iàëJUjU5âç|gEÎZiëW¶¿EŸ±Eú¼H_,SþÙÂZ¦¢Ô)Rð×TW¦‚‚œú颌 +%/Wð›9Y3K%Z(‰÷×9^`ªìeï«”+@IÈ¢4ð ‚õe°e‹œ¥ÈùÈù°v‘ó‘ó7²ÈùÈùð[Þ6dU´d}îÓÞíÓOÆôQ¶Ëöè²M© l`ûúÓlï@¦·Æ7»ãpz×ÀÕ×úÏ¿vèä¢M9›ÊÙþq]ó_s¾[’Uv¾ðñ†w¬ƒ‡ß|‚`]ùãþ·¹<–™ï].$˯œªœ¿¢ÒÖ5ËÒ"Ù]ZtiÿÈž73;Þ¼Ý{èv÷`º;>ÕŸöϱO\S{ã—ØXb"–˜Rö$.ìüð‡¿ç¦È—ÅÁ±B~Cì¢ÏY±!ä-aÙuås©û.G§oùòºöîíTàëÊÀê9V‰œœk99#‹œœk7°ºU;‘c eÎç-êk¢>íT»1¹%y{‹yWÙbζÙN} +6¸Z:b¤#z6l(ÓíÆDÌüäUóäNí·_-ȶhÁ/×769RÞ8­¹^ÎwÉâ/ÃLúüìÀzòÀÀ¯ ²<¸HJ^˜—9_¬¥ÞꪮªÒ,õÕÁ{·6=Z¦âWD?Ð?àlߟkÕçZ†&Z†.5ó!}>ð ‚kjÈœi6o7™w›Œ{l‹~/¬ÏÄ´±]ñœ"yå–pä™×v…ë²Ð¥œE¹’°(žÉ’MÁo9Ü—åe·v.¦>A°® ¬n‘óá +‘ó‘óam"ç#çod‘ó‘óaíU¶jÙ&*’ËæY•ó{õ“cÊ ùÉy^´Ûõ4+ l`ÍI¶ÕLó™ŽOv,¯äa#Ó‘¼ÒkœíKüŽW°%¹°ÉëRPu»ZÈó튜¯¼*ç;üU”VŽèõcÁO¬'÷[–åÁERr«r¾HNuÎW•`©¯Þ†ñ D)ÿh—þq×àldð~kâ~(5 ²­ÚÝHünà×ÔpjŒmI¦[’Ùæä NNÄÌ“}æ±/9ò’Íy¸Lü’÷GDO‚.ߦ(³-Y´TæmG&ü¢üî> z˜#ëßDÝz¦S ~‚`]TÙ"çÃgDÎG·5‹œœ¿‘EÎG·µTÙæ¤6åef[`myÙ©cœñTÌ‹jÓ}‰6Ì­ ×vsŒ ›“as:dfCÆ,Ög£úõWµOv ¼Ï+uÁ‘AŸ—pÛ +ªnW‹•9ß}šó9°Ùäøy¹#Z$Ú?ðNàëÊ ¾““å¡êÄ®ä|·LNÃæ|‡há 9ÿâ"1ëŸoø§ÐoOŽF“çbƹžÃslà×Ôžø8ÛÏvÆçı.~·31Ó­îÐŽs²ÿšT_ˆ–S0÷ƺGæ|›J´P漜_­á|Aô`‘ÊÜƧm6ð ‚uePe‹œ«EÎG·µ‹œœ¿‘EÎG·µXݪMHbKÉrئT†íԧ؈‘Žøg6´Z†èÙV#J “Sa#Û‘¸ÓÛ§oðO_‰aÁ‹75@lñ‹^,߶Ðr]ù\ey–¡¢ãæyýæ“/çü½ƒÇŸ XWî|oQ–GIÄzŽüyQN–(!.$YQE—oªûöÿªÆºÇ¢2ë¥*¨¼kpšÇ¡9% ›ÓQm:Öé~¡g…âõT»1á;Õ®§ÛµlgBª¥ÅÆgL°¼ú±­Ò°)äø¬ü˜™Šê“#æ„tœUŸ/>3á}>QT›Œêãlðòbª' +›“¬%ºÞÁ©Ý§ŸÈ5Ó¥²#®9ÑVÐåûâȼT"‹õŸHìò8#_ŠóŒx#<4Ýj®ùøw™3Û_ß3x#úÆXÏÐgmÆý-ÉË›“gú´3{‡G{ŒK[#Í¿:»ù秾sàJß[ïÔßï:¾ØjN7~gÓÀ­ï›ó¡£Ýž:¿Ý<½Ý8Ñ•øC«~^L¥y3dÌnÕnt$3;ÍË;ŒKÍG®6ßèÒ>Ý–¸Ù5<Â~/ùQä—·ÚÞ¸=øÈ[é­?g¢‰Óû~q¿éÐdȸі¼:Ûvä£Pâãöøå.m6Ÿië¿Ö‘ºýÙDÛðØžÄ¥Hrêe3³)~ë•£Û7t»ëÐ…Ý©‹ì¦äÈKG'^N]l‰_Þ›œßvðúKæ•­?½Ñ¦g:R °9ñ^8õçV3Ó¿K^é8r¢íÈ·¦n57_ÑGÚ’:RÙPâZËدóŸ6²€ãQè¦$ð1žÏØÆÆÆd“lŽØžëÍ᱄ÍJM[©Ýü¥‘M³9U 9¹Blcƒ±o !@»mÕV]uÛTÝU»;}àd7«þ‚EV¤÷ô{ÀfÞ›ñçñ£˜8óy“Á…)ZIX„<Á– f•âŸò “ÊCçéÌ›ž¯ê®ÛÊ@ÎG!ç#ç£vr>r>r>r~µœoá“.ýžœwuƬàimWI¯Fí?S×=â]:…ц®éÎé¥"Æå›B¿¥Å›{ÇâúîgÆÞͺàÊ^!O²Ãâ '8ز†Â„š€Î7‚,t>)%Ýà! :¿!0K±Y “±Gpaøén]0yPù:_'M6ï·ôŒã¾›VÙÛ6i–Ó¤šÂC÷Éž{w¤Q™¶òYè|¤¡ó ÒÈ^ÿ0í½×,EmÝ)So©.´ö#iÉÞ5ÓÄ…ñ¶[.a¤ötûÉœ¡7fäÃÐù.&[§Æk•)=3 I¢g¯çg(>F°cá’A¾ ‡Éžÿ) ïBd lë‰7Ór™1Œ‹Ðb‘­à™MÜ°†FHå®Y3ƒè›ž¯ê®ÛÊ@ÎG!ç#ç£vrþÛæüÔv¢K±‰3;OÁ-@f§Ê1ðÁmªí¿™Á_©òlåoâ/ª8¿òxü[í“bŒ3•}Ä‹@j»íF¼ú'äõBί®ó1f¬ 罞ЧŽÞO-ÝŸèØó=œÇ‡é#Åf°…÷,èÀœ]]Âù¼N)êC 6µäyº+I´'ñ®Î `Kõê‚N™× £/gíœmôÁ™]3 +¾Y»7¡“ó ʲ¬7I £5‰õå÷ðsNï\þ?ícã¦@Ê +˜7l—ÖÍÜcR^5r |جL›¸8Åç調só/™|óðä8úæéÎ)'“®õ%j|Y£º¥kD[Ö-,zäB³”ߦkÄt0·×_pø7m]ëzPªç ”°A°Oá•Kfpö1žØ„ [¢äiJMè¹ÍzæY=“Ûs*®g3>eGõ`ã3¤T°(1\Œ˜¸)x6pî Ìxˆ«“ðýèù7~=VwÝVr> +99µûó‘ó‘ó‘ó«å|›2u#­ýYÓþ¢iš¶¢i‹š–ú¯6‘×Î^Øt·¯ÐÐÕ¡ùœŠ`lÖàK׫óû¤¼‘™¥ü)'—óHK.eÕ./›Äb=Èï“ŠÐùz¹l ÍBa¿\&•u ¬:üIXRØ'”ñΘ™ydWuÁd] d8´ÔÂÿu/3çfŠdc6ñ) VqqÙÄ/ê… :ß.•ì¦Cü]c`ÓÌ,ÔúÂf9éÒn>k2u|©^Z×+NvÉÅ/X} ;“¬‘õÁ~f ¬6ú6 óR:ß*n™ýOL|˜”ãFo:ß!­Ñ|ÙHÊtMÇJ­ÚzWp©DK–îˆQ30)H}ˆ|Lx„ñ1B(@ä¼Kp ©OÒðý¼éùªîº­ ä|r>r>j÷!ç¿]ÎÇ¥øN߉}Çð©íÄÌ÷ËÁ^˜§Šä¿ß·ÈŸ­Ûó`öÕ]À‹×…ƒÌÿWõòš!çWÛùãCÙ/>×þþí9¤þú´Ï´íž£ýþoZÿUÍrtš%‹T>Ô“ôÈS)c”³¤8g’n6êb"Øê’Á¢^*@ÉBeZÍP\‚숧"õùºŽœÝ7æ£DoΤfmÌœÍz?ih¬aÐ}?ÙÂÀk!wµ69Ѩd0ÚèMšÙ”=Prc¤0±ó5Üp2 #ü’)šÁ}BibÆ\pËp&K÷¤ëºÆq6âY¼=jeâ0M(ƒ4iPæj¹Œád¾‰_s+I+%½p»Q² Q·<ãàl +÷¦_š »œ²ò«4·bÙz&¹¯}óg)õþv N‹Ó6u̵(c¶`ܪ¬‘`Ù(M›ä£\„½éùªîº­ ä|r>r>j÷!ç#ç#ç#çWËùŽàäøò×ù_|óÏó7nx¹o` ¹µË<Öö³e\(šØÙq‘oRr´’s)Ùƒòl+˜nb£Ðùx ¯ã3{¸”NÎR’æg|Ê#çœÝ›´üÄ-„að× èüfyž‚ÂçF¨¾Ys(±Ÿ›£ŽOºßÏê™q’Ÿrw)Pp¨‹Ðù0ˆ|3;j)1Ú¤¬Á òi¾ìèÐêD xdïÓ ˆ6øZ¥™Ö@ÉæŸuËsv>fàÇuÜ(u¦L^Å;Ë­Ê–Å÷È ¯2oÙÆ-Cç[¼n)Ý$dÒ< óE`NùÌÀÏÁìÁe«´` ÜÛNˆ\”ïAçcÂ=ŒŸ0s‹”´JS˜’ЋyƒTxÓóUÝu[Èù(ä|ä|ÔîCλœÉ±âÐ`ð÷]ðÇ—™¤´I̙Ĭr?$…4 ÞaðføJÛÚ©zøA'a;Ôß9>³Så·¶ÏÆËÍ` €yXÕOÈk†œ_e烉ñâ×ÿÒþ ßÏ­á?¾ûã#þ+½¿ˆ~©}ù•öÕgϵãêM³ïמž»GÕ‹ïIý‡…þL¿Ô³¿1 C”tÇ#_m \wŠŸ8À¥ÃrÿñÐÀåb³·_Çß3&LÌmÚ;xP8Lý•­û:\þKïÊ7¾»Î íi;k |t"ða«ïøØ!ßto[„›ï>׸¾_¹å¯{äå¢S9Oq?kQGZÕ ²s°U?òÁs»êñ_8¸æì¹â:}µ­¯ßå?‹Ÿì?Þ÷Àæ»ÜÄ_;üÈ~i=s“oëŽ]9¬†q?o ^ÀN\n•ïŸènõ÷Ÿ |l;zgþÇ~ÿ4Ñ­qÿ£nòææzÑ׶PZ(› +( xÙ„.3ÓõEÔ¸¼ŠŠjP@Y* €ìP +JÙʾo‚¾UÖ¶R(]†ö¹gZx“û oŒi|ïL¾išI{ΙsNŸ~ÎÓèì÷<±Š}¾0–¨ˆÌ|ñ,*û]„Ø”ÜÉ̸©xQ-k Ã^ó°—g.Wq$/iÁxO1(é?†˜Ò±½^þÝ·¾‹v>Úù´óé>´óiçÓΧï/ç‡ÍÝ ¨¸8v¶â²•T‘*Aø*+vQ¿SÕ¥ÓDQ˜¢ªaÖÆסªë˼fÊg!êšæ—äB⑶~&ì0ç† €$¨§×__Ö×dV¥ÜЗ´/ÎX`¨|øâÍ’ Âs +µ;°æ†™mxÑaµÃ"@Ñ œ»ÝT 5 ›à€O Ðg˪®pI +]•Ó]7NÝÙÛ%C£k00 0a†ë¯šùw:Ú—`ÙC}`Òwk†¸95ÿ”%\Ó5OÁ:êk òjMm Ô}rÂÜ6ä•ö¦åµÕ-À²·»y+\Ðç«ßM:]° +0eƒa 䔟½UÇæ÷ ç‡Ê ¼7@4H;ŸE;ÿÿ#´óiçÓ9|hçÿdΗ·£ qRD¼Dïe]Aò–¬%HÑ,§¸ÎÂû‚¥C!„Žƒusĺ@¡Žé8²Þ¥©£Âog„?;?Ћ|¯ö{)Û1B…¢~KÚ(ëdHÕLY;K¦ VŒ2‰ñ£ƒß'ä;C;ßÏεtL *C’à©®6'§—'Ên?ŸØq;ÑxfM!¼“|[Õ³ 6€-§ÓìÛLT/—x!ø½jÝN->b³Éíýe{Àj‡óùýl™*BôºuˆDu }}Þ ªÖ¡X<°MB\öãmôÇX×Iª$íÎбl5yWßDR¯f7l,:Éû#éÏc…¥s¨r lh“ O¢#òù®ÃºOÚP#Ó;°¸Oµ¶Æã¼ ƒ§(ŠV”Îo  +êÞsRŸAÙ°Í…VÀm#íKÐ!ÅCuôuö\pUÕŠß>ÃoÍTè° °I‚ÙÛ*zÞÚáFBqŒDÏÃô¡â>¡gº½^þÝ·¾‹v>Úù´óé>´óÿÎg+zâ6¶RýKz%WÙsÓ äãw³25 ×f| Of÷ý*@ ¡üUçÃZ9Y=¼Ëzv–6@¤9’Ùœ’5ï÷ ùÎÐÎ÷»ó{f}%ÇST´’˜üúÖÓ±U øÆ£_2GŠrCÄ÷û-Ô©Ju/KU±W¯¦=iŽT–h—á‹Íî·ŒŒD‹Dò· SS6‰¨ßd®²2V^iò"xvVòôyúÜ“Éhµ~0™S¥Êã)&È-è¬àØ8€[ÅÅñÙÙâÇuëîe‹¥Z­NËO§¥M~2¢F6Ê:ñ’²8\5¿I9ßιµµü7oøy5 NÃá¶ÏZ,Í“Ss~ovzËLí¢çdv9#9oú3é ˆúÚ¹¹k7¾X\ýŒœÿuß:e·iµXî݃\»j§×"e÷ã…ê±eÊö›n÷“òÊØŒ ÙÍ›ÛÞsÍ´RszNºñ@0*b‚.¶´ïG¯—÷­ï¢O‡v>í|:‡íüŸËùLYôFl`á£ll4 &´i ƒ_}µ>2ëm®âᵉW†8üFVZ-WÐĶF(ôA„öß| “â}ÿ¯R_(磧ÿÙù]ßœ¢ýè~ø%M´–W1‰·á:yò^¶h( ¥Ëïò¡ïgç 5ã°ëÜ:€½=¶À°êEuûà÷Œ"]¸øí˜ì®8îmF=Gηrä}‚¬n;øÇvþßÃù,¬>þº†…¿bò Ï\n:¥lùW|yˆ°9íÖÄ‘U”¼›ƒw2E¦Xǽ0 ìþ«Î?&xw« +»ÔÌUÖ‡ÈÕiAÂAžtÜïò¡ï_çó„MÝ3`w[óíÊÒÈùƒµ½½Ä͆£ñu‘Xï)eݸv÷MÈùqü¦¬ mWäü¼—Zj´N˜˜AÈ“Ö‡á5Qéå{›@Á1éI¢ª$9»ðÇÅ'-q²gKF@Îÿ´¶ÍÇ+‘ó×·òwìÖèsõI’î“buHFͥǵ=#fóXÑÁEM–Ùá@cëš„³Â긔še¯óÇÉ„7±Xã鬆'-ŸvL$϶i`'ÇI›£±:ªÈØ¡¢$o’²ÞϭºkÞ;¿=-¯KL/¯,ûìr¡Iw7¯~ežœ¨èLÎl±Ylè‹#+(«¶l˜÷¬àØ—ÍC|{zE=àÃò'1Ò1Ž¨/DÖu$£áG¯—÷­ï¢O‡v>í|:‡íüŸÑù¨¾!á³±q®pœ‹õ‡âma‡ÿ {ÐPÚýedŒ°°á¦ixа!iæâÍlB$íb)ôxÏÿ:ß÷_é/uS<òí!î ·ºÚÊ‘”„(_³„Ï#¤ÕŒ”ªpLJfðû„|ghçû×ù±—ju‹$êÏF’ùeíá‚{Lj‡¡ßó=ŒóØ +S¸ÌÀÊGvÀ7ÚÜÀýã¿ì—éW“gÀÿ–ù4ó©çÌ©u\@‰I $€ ‚VEQ–å}߬€XµŽµí83§ÕŽZP´(Ê.’°Æ$&DdG(‹È2„=!Éû$¶gÎ|²Çq2íÉ{~²ç>ϽϽ¿Wú,L=ðÅ]ÓÆ xÌ6I?‰–k҆ĬŠÍð9a 1«(5»´¥ƒô-·¦^8P’}p¿b-]T•ý }³ëFâNš“©¾è)O\ožõÚ±ºÀ·Îeð¸ˆT£9´@JnÕÇYM“Ó˾yœî‹9"ÍåÚ×°¶æY3Iªö(á“dyiœKÞ¡mH-¨‰:usd<>GÚI·Æ§×––zmµttUp®&6§ûèénÌ‚ÇI¢åžýêaÝâÂ*ögûØ眰Ž·CXX!7DãÛp¥d<‘zÊ9kÜuª3îÒS–Bó¾óܺ \!Ïòüç‡x{BžÿÛðüù™WÌË0 „±µMôü1çÊÀ'³"AÙ&kÙTÛîÜŽÒøK=Ofq~iÀÀãç¬ÒFgëÑOƒ¾!ïHÈóƒëùÜì¢:Ób Ò:ÓQÕ-®òQŠJ¶èIÄÙžƒêyTýhÅ#ãÒ›h2tlʺ¿`x¯ª?]QârkÍ…Éá+ZQõã˜'Yçt+¯Ü°#vûQi©âÏíS àòxæþ¹4éõ¢çOÙeõ éÙ5Ò¦¦Úì€åí ôüÙ}‚³ÖX©ùR¹ï¶ÜãÃEß˨‹Å·K°<žŽQHÊ®<‘Óðü ¯ýp¶12³“Gé®ió,³¬ÇËÚb)m"Ýîv’Hô3sñLy¼ðÞÌ*¾ïCÏçÉ´\J“˜Ñð|œÙ¦·9ŠŠƒ¹†ÔôN̶Ã×ït&ÊJŽeß]Ù&žß;j¢ò>K=y:›’åÐç‹DY—¯ +ÎÜK‘?‹§XÂg± aTãûÎWpë6p…ï«öQ7v™µ-¸vçu’LË.Ôí•kùÆvKM{s¸ÒûÙ ëšÇ6†wìLq,Óöõóß«l{™½[èѰ䆪!ˆ¦ï2W*mƒNØðà*ÊÇ!ª ìZùÀŠ¿·zëáõäü¿¤þís9ºt$çû”Ü +6u_»Œ§fyùÂçj`Ÿ°­àñô fÿÅÀbú邼ÂoƧ¶—Á= +­[19ß“V¼Âíš^ƒyžÒy¾[^;æÙX÷òwƒÀËkäÊY¹ÕàÞBZæ!Zy3¥ðŽé‰‹i¾~_ž.UÑ]ôÇîYÁ.ô`ÞµS^’Xð")£Ó³I²P7å:òiÅIYùèÌÁ¬KëúO‹N‰Ë®^·š^m´Ž/(ÔÇQÖð,ÛŸ„¶ðý Ýï;_Á­ÛÀòü!Ïy~ˆ·'äù¿ Ï/7ø¦xþ¤ Ò$_æ¨ï¦fÞ8‘{?M]#>Ÿ¤jˆ•Õ³Åµ|µ^pÞ´K¨ù¥žIß¿ôhpÂïùuý¾CÔ1™ ©Œ1øòn„Ìt¼YLÅhx”Î?.{ükÜùp¥yßûòüàz>WÞøY³¿>q€êýG‹Ü̦-lÊFö³¥ƒHc‰Ã=኎p¥Á¢ÂZâI±\ <‰ÁïFÈ {T]‹ê#¨ª X²m%( r‹1²¨A‚²6ž>Ý„g-a‹Çy „+beÙxª1m(:wgÔìg´‘j#jžÿ©4“Øèþ´SãÈ•­ªµÑ",é®H‰6RÖˆ6\Ý¡|³d–¬ƒE["¨A„'F ³EI¬Y5mÁpý¿OuoÌÁ£¡GÏ$üÔ¬þý*äù¿.Ïç §‘@µGÐ6„'1&ˆ5Î9‡ßaªõa)m±ê‘ªg;ó ªŠ'®üHmÜ}β7«œù¢¥·{r}Éã"Þ†¥ÎÅ¡‹÷J’¥×ãÎXÓ¨Ñúë©ûÒüÖŠ¸{§ÒÏU¥ÊöÏÛÍ€‰­•µUÌø ’®úPRÁý¤3\¥aåw²òPxºÃåÆ=”iŸÌÂ"eO&.þ!Hæ`°7ð?yþ×ó¹” Lá(ªãg¸ôÏøEâ'á9’e¨ÔÀ,Zº>/~vGDFS¬R@Z‘t±•O íü¸3튱ò% ô„)m;)S¼¤=…ÑÄd=ŒÉ¹+,}V6½€Y/ü¸» ÷Bïî\-N‡£BÕð+”|pb· øÁä6Z_Ï¿­„Q€Ž•±_îOMiþ_öØvlUÄ’œÜIÈ PhuË%·s?'7 ®³ÖîN§—uº£ÝîØ]PÜ‹1BB€$á,X‘U¼íN­"Ͼ_Bkggqg¶U;9óüpç|ç;ç{¿÷}^AåJÉ脈 )ëB|S¨camA¹!´­ÇVÐÇí×1Aÿ¤°¦½&˜ÙÁƒAÞ|ôÜÕ‰ Ônœêôx§‰ +™é®©5aQ‹‚™9k&"}W‘ŸÏ~+”ñËÉsæúæäâ­uh þÒ®:žï€ ô \\ΟÇì½F÷ˆëÓû­£Âôºð€f;ùH8“ü–þpFshLS3i¢çTÎŒ:Wäi‡Ò¹%oˆþ ²ç‰¬ªeˆføßÖ÷ùÆmöÈy~ÎósžŸóügñ|5>žŸo9Szw¼Ø“»û +ÈèÓ<g}/x¾‰ÔÃNazóª/æÑooÎó_®ã—êù·„MP—ëîµ+gç "¼Ê&%GÇ œßâ üª:ðš«ß~â«Ák™ÛY_¿ýxmY@\ÙÜðp]—Fþ¹,|w-ôãuˆ†ÇpÚ1%˜œ§†VBaݘÛؘ‡Ø€˜¸¶ùXͶɇ +½á×ð ">²›‚çowö¨fržÿ‚/˜ç¿a|ÓÑZŠãš-!’žq‹kPIvh\´n¿Ò9!³Ž¨¹ éH“Ùí.r¹vó#yÌ,x~ÝfÄ›o7›ßû»Œ¢<¿å÷³õ[“z_Kž=¬ô¤Fï «_[;Ñt¦š`lŒëý'®ß»‹;_ÐYob>RÙí–#¨ÝC…DT|ò¼”8f`?xƒ$Ëq¼œzwר£Þ)¢(­çŒš»¤g/[¸S{hÚÂyuxÌÂ¥ö4Œî-ÍiÙj¢#¥\wÁ¾³o>ŠUVšÙãàùêªö2棽8~¨îÝüÚ“2ü 5Ô—lÞ†Ò*«öà'òšæüú‹Û¸–šÎ§(¸X/BöK­Q¹5j¤?+ó6”P”‘eMœoßáÏ-Ôe}Í”ŸÿÁó•ìùœçÿ\žß dˆ–@dŒþ…rˆ„ï š@´«È-1PŒGÑ €Æƒ À¦£-€CLO‹˜Ù]ì<°“C(\gÙ-ÉÈØ‚‚ )Ø Â}A'l€æâ…Ve„€çÂûóðX÷­-IwÿÀÖ8?†Êv"Oö,„ñ0Höí§±p{5ÊðÐÔÀÉ>ë'ÏÛ9ϾžOŒgPŸH¥P>G"HTu»\ +T®]ÁùŠš`pÂÂÅÄ\l‡§›7µÍ›ÞîÍg'a (ˆI­sÔ`6Ùû99ŽàÛ0<:\ Ûó2™F•˜DpD&ËÁà™ Dq®fjÖEÄPÔÖubL§È8b1£„„™‰üÌ®I@s!aRUià®ãuo¤Ô= ²v[\CznHåKo¯B‹¯™ÙÐç†1®CÊ¥®­·C`ÃP.!¿Ï·ÙLûä‹m¹ýSø©×+çù/—çg#YâkDpPnbZ2jv†—£E~cÿs¾` æ_w$Ì:cà–LGF1ocÏò7w7…GB×e¡Ò¾ò–óv4n¹+<˜¹½¨&Ó•¸yK–Ö…ÈÌÃ2âýÊ÷šÎ_[ýë„ whÙøÇVÁŽ€®É{ÛÇ’†Îo§Êê73=z*¢uFŠÈ¨Å7‚‘½Ù»å¨‡ ɹ`fö!ž÷üÏï™óüÿ«çoø(Jt¤ +[d²”c@šAi]PÛ¯*Ø)y¶Ðž‚þTBÆvÙ( Û$Ö=u³ˆYÂj&%‡’²ªÁÝü ¶ jjcG 5$"ã¿® ŠÈ>Ólé«»‹­={¨aUý¸Ü;2z EøMá“/"©ßVÒGþÔ|~Y„¡%¡ÜÝ\!ÛdŽ Fwl«¼$¡Ç¥Ì„Ž(á‡J­³úSŇfÊì‹Pò²„ ©ùA-¹ ¨žÖ¼•69Æóì‰2 Û°€‹ÈN1Ý%¡Æ'îAã\XÆGuocÜ°OjÁô¨mØ þ¤Ó×´©&e¬ITpÃÞÑ|.*«Oî¤:uõ%µáRkD]ÁÜPÎÔÄ”ŠˆËmm*úÓbO£¨ö´ŠŒh¨£<.Ãdã™|•µ÷ì|òÍÿ›çÿèšgæùÆmöÈy~ÎósžŸóügñ|óe¡ó¬˜lÝm÷«¸9™TP³RçÔÓ<$»¯[mï`5]*©ô‹©œç¿\Ç/Õóï +½ÍMXÇjúoò½I#yóÍpcàùyû‡|LîkZF¶*üc厭ºÅX>³¿f¹Ši¼ñàÁ=áámá>fÙ’àùÀÜ}¡©k^A+j8¾? ž/s„ÿØú¨ïÍÕÕÄÂ# {êççb_HY{<¿˜îÏ·¸“yÚ•L\Nõå<ÿ=^0Ï×× ô }ÝEµ«#F”ô¸Ê•Rð½rWPåíT×±š™mNO-”¸®Xøù ö®qžV×ôÕöYÈ”Ê7*ãS…Ln,#’&[ŸÙ/%R"ºÿÕêÐ¥þ¥eò[¶fOVVWoln~ØÜcÀÿRd?SDû5LDÎt–½3 ž/ÂÓ2G·ç[ªçMÕs%Ö¯µTHïéQò="[¤°jB/”QóFû˜Ü5Žñi™+!å{äî^•/®ò &.¦úvØüšú¸„‘|GLŦAòUŽ.•/gïÛY+bÆÕƒåäÌYcíÞI‡·“!©/¦tõ•Ùº‹+ƒ»ðóùD†Oè˜Y;XD‹øÏŒ¾ÓÅÞ€ÑÓž_h,„êÉ ¨Ý2º/çù?OÞÝÍh3Šs5™²‘ŸÑ†„˜CÀ ˜Oö÷|w y:D^¿¨®EìÎK]h³k„.cÂZ: åZ¤ôä°ŸEÀ :ŸA¨³ÛÒoç<ý2‰á_pÚ9£uLjç´Ÿ–Rãb&]À¥ +¸~˜’¦D#‡W1ÿf¿ÌŸ›8Ï8þu¦“Ÿk+KkI¶|sÙXÖJ{jW‡ÁIÛÐIé”–2 -fðŠoY’-ɲë°l 2‡±ãp– ñL[0lŸWk·3™i!£Ïòzµ«Ý}Þïóy[l­Y† y@@ÀâB „Ü4(¸qäi2r>äŸM.\XNÑWžÛϽžÏ6‘gcÝ(ó¹ Áh¤…ä4Ò>“% l1ØfUðÁCØû ü¹ ¸~І tC•/×9«¤““…<¢ùbaë1rîÉ žP r9£­C î ‘÷6Íb– |]m‹¢Ù ™t³˜w¶Åþ"·¯žÛ׫g#ºö©ò¶¨^X$¬ @~úÈÛ>,O˜bøQ•à…%œ'\– â’[HòoËBÑM½G_ÙLìWû¾ +žÿfy>* > twÚÐ T¤Áü&¿À®K»[>Ùc›~Ï6eý‡Ïȯô ãûUwüþÓë—îÌ­ÜÚO{Lþ±Ý"½ßÜ·zžÄý5évõÑ«¸3ëÎB”ÜÿÊíÇÒäµ;ÕÖQå­n;ÿyï}-ϤäìÝVê&Ç™O†Va¾¸ûTºõDº'I+ϤzæìŽo£+Œ–3ÃÙ4N/¨˜S2W€×ýôþ›‚ç¿lÏ›†ØtûçÀiÿM‰ÐWì8õ®ãø;âJ蔂¿¢WTÂr)´ wRïJ«laŒ¼ ã f@Ñvæ-¡»¸£OïòV;ü çZjBïÎ1]¾‚›Ð‘>Â6VÅíªŸõ5GºýRöžôÕºôµ$-®IËÑŸÂorµíõ¶ŒÁ’®¦/jm³*s „Y{8¥CJf§†õdÚ@Îë­{N%ôâDç„Þ}¹J˜'XŠi+Ué˜Áù¬‚N•‘±RK´œö)ùIµ®:’~»5ˆÛ/–Y“:gNëšÅÅT™å²’¾†‰W®œÚ9Oˆó5LFoÑZ¦ál5¿¼¨pDt‰’Ö‘í–ÄN[JstTÙ9¨æ5 8Þ ?‰e~Cõ£ÿù² +žÿâ<¿àùßëVðüòüj1¬&uÔÖÒƒ³“¥m-;|—ç¿ã{×éÕ·yˆÖóUf_-—Ò²YÌœ,xþ›µýX=ùÑ£G(Ù¤“™ijñ×´úp‹Giõ5§¡Ô +Áߟς䯭ߌ]¾öþ¡³õ­OŒ{×ö· ¯ÜzúÍ·Ë ú?90^BEÙÎÇC¡;ž¬=yrwÙ{âžžßì +ž8½úàáCH—¹KöšG0Ÿuõ,Êž¡*{~5yÚH÷cz žÿÝ~`ž¿;§èü«öØ@!Ì[ç·YŠÈKelHÁ†µBÂèL\ƒ8ªç† ü—]Eî^œ0ã{<¿œñ+ò^±Âê7²~ð|œ=ç1rýF®г£:·ÛpEÌ9„¹ÀT Ý¡Þ ^ù'x)»ût/wj7÷i-wlwןj¸ÏvwŽ¨ž6X{åC ÷·›ûí”9¾ãÈu–Ž;%y¿éÃœ’7¶yv™Ï65zô·ÁÕué¶$-JRÝ‘“¸õÇGf¡><“q©Ùjr,iÍ™&óÙdÏnÐÔÖ³ÇÔìkƒMqhm•ƒjP®çÍéõõ?í<ÿ%{~¾×Ë‘Žö°r¬m¸ŠÜ ä§-gµ^¸¡$Š…KÍܶDp«:n§rU®¸Ú>¨¶ŸÓ:ûuŽ5íW[.êèEmg¥䌂ÌVÒ—ÜžÔ©r[DWÇæŒâuƒój%—ÅÄ Ò5U美›“z.¤²ö«é/ ÎœîÞùóxµ8SE/”œÕRWM®å +KLçˆ*è B¼pMh¸1¥mLeƒIU Yк"Z׬‚™­ ç5¢ÚéÃh‘ªf‡MtÆhMjZBÊ}`G}Þ]…æ|ù>_¥9®³¦«9°ô=ï«`R¸0êUuxŒp©áztüš€^©°Ù/`îáû€šÓQQ“˜)ý˜k\ã7:ýµBÔħ˜,ñJgJ!&0!ƒ€ñÁ0pÝ îó›Ýpt£ >·ý—³^^oÝÊ[Áó ž_ðü‚çÿ/žo`Bc×¥¯%éÒ#©æÈœš.i¾ÐàL|—ç;FAõCKÒÊSé«g’É:¬lñ78f žÿfm?VÏï<1rsm ÞãÝÇRò†ô቉ýxÏG>~°¸.uý‹ý:j"ÏþÏìo»U[;³*äè$î¤srŽã±Ž2Ê™£ïÎáòØ©­š=Ü©šrÇYGñD›BÈÍ%D]qt…Qýî7àÎVíÏ3[|ëU*«SÝï½ïç¿£·6O-,,¿zõl¦Çòí§÷ÕžO|÷~åÁêjhbn"ÌùõùeÐ2°q ô[Ó6þý£›++7 ø“y•_¿4ø4Ó<Áô(c¢Ôߟçqéƒl{~É…ý<Å—s-ûœÃÒ¢«ZÚ»íüwt½cΗ™&¡ê Û„Æ>‰‘·ä¦9Ô:§fo ¬·»1[“‚»‚ñ­„ 3 ©ŸE{%¼å&pfzËùp8…ȇ(…‡¨eBfI*ȸDó>¤,b䦕fOnÕ@Ž«R_ïhU˜[UT@Y‘Ìs.fš@Ê“9U³"SÆdÖëRó$Bu)™ͯ³G1:&)@äKé~ Rò“J~FlIIØn¢²?‡ë!,mªÒÁÏgS¹tBË´Ô5Ôt¢ëãªi%Ž–¹)‚éÓ°”“1 ¼rXiëPpWU|3F·œ^L0=Šš>‰³ «õŠ-í*kR_b÷Bç+„ŒîR™4Ö°†JìÜžÄl(‹ŽˆØfOœQ£Ð¨²žÛvþrþ¦®a2C`ÿtvø +Â&ÅT,›Å+ÇTü0N÷¬Û`=´þd ºµø¶PØXfž‚à=p²÷[ Û²ãH»®zâb>¼SðŠª=;ÝJ›—©›¨ +gž”û•|åGä¬_ÆõÁÀìC2¶?ÛÚ©©h*Sb‹Ÿ ÂyTDO_Ρ.,ß­g÷Ú#zKBKÏ`äBuã0ÃS¿Ú5Âè„ŠMí8ÜÛs,o€Ö@ñ™[ÙlGú)¸¿ùç÷Û.æó]îtæð{JO{QÛ)-õÅAWÃ^æ«=äYDÖÔ%>,mÕ9ܹԙöœê¸'[è…; ÁH+ôŽ,¨ìÖžÀÙQ˜±›{âÿz7ü…ï׶óß/ç+˜±L°™l \mÒY’yæànúòßǧej +æäÂ:¸ ÀâfrN?Îö»xU§pznî1X[že>6V¡áa ̃Òc‘\aÈqæÁ2xú¶Šu°±^A ®ƒÁ(aF”z•x3õ³^®‚ÕåL®ª©WÓ*ãt&þ“ÃáÍxÉò±öL?Œ·~ÿ'¶ÿó:óvoÍw[âÙTŠ¡*&1÷À6þQ}PôcÖFÛvÄÇ÷_Ó»÷±A}Y{®¹ûc>©)ʃ|"›e–?jÏàöß‹”ÍÌÁ§p&.1MáÜM±)n¬GÉË¡å£z¸ì,L?œŸC¬iÙ¥as\ÁBH„n©½UîjRT7K+›²øk;ÉnÔ1 +ßÝeòåK!¬á¯Ê˜+:jÔÈÆÔ|J5)wA}JABNDp®¥»Ô¼_ÍâtÊà˜ÓmR¶Ckó¨–™DJFò³Jóˆšë‚t×n‚ïÖÛ¦ÔôÜ æ:J÷b¬‡ ‚Zk ÐÞ”CÚmÿÊ@ž,tu –6Üúmy‡²Ö‡Öx³Ø.ÄáÛE&`¨ì³HYLWù—¢?}ƒ–c¾¼Ÿ›5Rã˜-$¥|˜0¥­šêÛÃÆ:ãcÐ6S”ÿc^ãPÛ| +ºWãJ-½(=ôsÕËÛÍÛ­õ.;_Æ¥`ˆ¨ˆÂWÀlï—4 +_Æï>ƒ½î9_¼øacöQ¨ éW ÀÕ Ç„ŽˆÙÈïL"§?ÛÕ'®éÇ„@…!8`ŠÌAµc\ΆP> ¡ÝÚš ¶: O¸†á᯴ë«'TÖ Þü¬ùÛîÐ6ò(?V2ò7à«ä#b«ÏX“(¬GK“òâxN]:Û0:ÂØYÚž<×MH} 7Ž˜¡ó Ox´Üjäfg šÖÁYÿ³½u>Ó/¢‡$LDåšÑÑmç¿¡õž8_Aö«˜Ž<{[WÜ^_¿Àw/_ÞË$üÚÜÒ}ˆ“Cóˆp%›÷~@Æ$öôoJ"2.-6Gs¶)ƒ=¤á½8ݧ ãúr2*®IÌ^XÑGTWWóÓ3).J*bRs€°%¡óE¾]Îÿ¡~Tw<)æ}‹à_++·¨kîÎuÕþä|„i‚Îϱt(‹U&ÏžÚi…5ª³OB,¶ +ž¼Kë@h]‚θºå(¼è¯:ëµøXX[ƒ”ªëž!\gþØ<KìÎp'@5`<1!²º÷œr 0~uø”úXXIû2U@T,œ&B8Ö;SRÓжóßÌúu¾®äë"ç¹ãÿli 'îß_ÜDþÂúúõ¾î jê:?¬8gä:Ž~yi$š|ò"ã|¸#Ä—–Nõ÷[>o) º5dŸŽîïô»—WîÃýüÉÆ“¥§ÀSÝ–ÿI'tþÞƒîk= s ™K÷ŒÏÏ0ü¶óß³õ–œŸmö)¨AéÙs,Ž’í¢Ã ûŽ æðÚCŸpá"gÌPÒ³O$Ž\Ë#GaÈ‹Ú÷ú7ûeþÔÖuà¿&é´Ó¦ŽkƒÚ¥§]„pÂÌ*=IoÓ“ô´;vš4ÓL7©Û´ö8Ž]<`c„Z„´"!±N»ã´¶ƒËâåõ +Òδ¿u&‰ãw¾_¤Ñ•¯ÂB‡°A†õ:Ãv¥Â|©ÊÖ'<ª¶„μÀVø¥. ýþ:ßáV +r»£!)² Õ ³°ájCðPG2 KoòI¨äáŽÎ +‰i¾=(t†¤Tˆ‡ú¹p^`,ÊÈ’/×R`û<ÌÍ5N°á<Ï8 <²D$¶˜ Œ º1¥©·Ž<—¸]V²ð<œc‰sÉäçÇ]—¹®1Ñ©ì8 õ¬þ¢}¼Æ±6¾Aƒûœnqø”Ú¿+$_hËTêsL¬¨0Ïȵ±•GÛw¶¶â÷îiÞÊU#nži”KEÔ8ØsÈ’ú¶îËóÍÛ½õCð|¶)à}“ðÀ^¶Wcàû" Ïy`éܵoóIwr•Þ~RffþõûñÚcQïäúâô­g4¤ (ˆ”IHˆ´Üšã"S\ˆGA‚°8öJÈO7)FK\8Æ3÷É,‘C-ž>*§B|Ô£q-²º@ÉÊÔcé÷Ý‹·AaBK]ƒÇlËì¦lu‹ÕégwH°Qnû Y|_®ÖyZ·k^dXáãW$Ö¥9'FÇ•ä8dôJ,¿;ÒuJŽú4Tô·þÅ5š’“Y{&Òž…Œýb*Å% ¼ÀµÎîy>ŸŒBˆy7ì=ÿ®ëö¾ç?WÏßëûåŽçyÄ.¦ 0[P!e¦ü±¡ìÉ÷hú¢'yŒ8-=æÕ˜ŠÎ%^wZb.ÕŸXcè" aÔ®ÑZÊ'ÁDÈÕZ{TjN³‘<@NädxVŽÏ¨È99™|<½GˆŒH‘’›Wàs*²TgOCÈ(“õh¾Ñ<ÿÒ«Ù +ÃÊÂ"½¹EºCS.iÈ¡â:ýð!½±AËK`v¨mCOΩ ×Dݽ|]°ÁYàiƒSe©›‹œ¿+¶% ·îA)Ôl=ÓúÆÿýh‡¾³N[/>àFßë»ýà)ýè Ìï°‰tœ¨qÞ¨Õ_ktÀ±SÝýwá!×$˜[Nøùo½3+&â]lQÙÿw÷C&ÊìZÇw}^ûžÿby>ÏâÛÅ/ C¢í^ÀµÔ˜Êä“cC*ÓðQ*¨Áƒr§®} ¦íÊ+öKUo\eS AW²¹¹ Ó-‰õÊÐæXÇøúŒØ“âƒbtà eü 9!"J>ËÄ®±ð +W¦êÄä+öLEO¡ +ó +­!<¯¤¾¨².°\%+cM|ÃnÛe’9‡˜ä“lB‹¤(5Nžûþûžÿm{~ð/ÏÏüðQb‰J†Íª–?4:þ’Úœø’þ]æ³-zù!ýü¯¶3g›‰^u§ç5}Bcˆ§ïÑ«4½FÓRëG ¤«¬ãrôº†òË…Jm°Jïa£Ÿ\Y¶\Ú¡?L@¶«BkBêš9¬‹°»ûjm!&œSÇD•øÖYUâXJ ¼È·-ü¬=ÆDóBӤωñŒŠ*ij²ü©…:'1œQS}I×™ÃÜnŸÀ0ZÑ5zØœcØæ'oI~õå!lúçpê:ViI±íà"TbUøtµi–AÌ0È,@ŒdåI-ÕöÊìÞ»Ÿ£!,W O1Ñ9õ›%•k’ƒ†ÙHè nºÂ8ËJãrø‹õõÝ?Ó¯jn0¥yø˜ÒY¬†“$Ûhp¼3ñ˜Þúdz¯/ÏÓrW’aðBÖ„Àš“Lc2çøDºÌVb—ÿí|ŸoÞî­²ç3ñP}àùbkŒ48 „gsçéâò*f>§Å>nÒ_jÁÛì>IgW ‘¨µä tœÑPŸªî€`c@òå–Œ ˆMa¹Ä‡‹ ?%`Àü*{¼Ö^TX&Ô= ¶þºÀ–™&ym¡FKáï2ð|ðwcK;Ên·J›ÓkbxNiÎ(AwÓy›\9†:R£›—QaOÊ°›~Ynw3õEHBŠ§jÀH»›Þ¾,£>T`~ úï––¶·omn&nl×à4Î ‹¬SuI9µïùßÓzA<Ÿƒ†TÖ ë|Jß~ü”¬ îD£áx³)%Ó%eÆœŸ>Ò9ÎÖçj{JR2Á3ôñ¨³ùÀü¡Ãl8Ä4䀋‘”PŸ€ôy6-· HM£jç8«-ÁS"}Ì 2STh ‚¼U™'•º”°5¦:½9ÖÕõNXO´õœVè¯+ý“wŸ=y°I‹,%0A([Cò×=¯;BÍ΋IШʜª3]ì€á½ž‰Çs+Ë +H¡£Ä»Gš~Ó`;ߥÇHÛ»/7öI-É ÁG{žŸ›¦Ö<›˜à£µqº¾1ÐÜ“O¸†Wˆ§»¢ ‡ºê¡2»}uŽ©}Ïÿ~Öÿ«çƒâ,C=@ò¸G¬iÝr㈆5êG:-!ÎÛC—«Lµ¹¤Õ.65åÛìQ1:XE INdêì œúk¬#¬“ÅŸ|dJe_á[<«xþK°ÿ'D”ýÖ‹ôË\q¾q ÂV~Ô¯vÌì{þ ¶ž“独Y&<,D¼\mïï_—6è¥múMßÝíë»E°ºùÄz¬lžßˆ§óè›»ž/·ý”t úb} è}ùùêÓyÍ›àͯ>{ú¨~`õ> ¿Tü“ý2ÿJëLãøŸÔ3Ó8M¢âÆ*ˆˆKÔZK.÷^¸,j“šLÒÉ1™´3iÚ˜Í4‰YjŒFEÅAQDÄ]c\ÐÄhpExç}I˜3¿Í9m3™ã{¾‡Ã½ïÝγ~lýi¦S´FÖÀ$í0£±£Ë%Ö(…¦‰&‘ø¯bž¥‹›åcó´eŸvý£vd~,Ð0xD?Sj…/êé÷ÿú%çÚ³Ë{ùJ³@cåê†bOFÃÆœGp×l8¦ÔC¯‰ÔÚ`@ÔV Çk'â4ãˆö©£¸%Y5Ì-4 ~p.„œÍÍœ¯;•–vîO6šÂĦ¬4™E™Ù_{£ˆÉ$íB\žCöÏ*ïÞ¼¾Ç³9?°°Õ½°_À!Š+2š]Г»P¥¿¸YšÎ¥‘£ƒöï„œ‡w%ÖCÎÿmESCÅ©â¢R¬jG1OÚ8š1È D?´ð°:!V=µŽ˜a€ª¾ 6Y›¢ë„T+îàQ–dÊÄ%ó?¥*/•_­5¹|ó«`+¶‚`nXæÁ¥ÇmBÅ¡ønU×÷@†wøö/Öè>ð*ˆÇÞ*ØÒå× ÏÖµOCÂ,‚µ7`õ-úÞ H–T¥’w‹.^7¼|ý*<À\s¼W›Ý|ùuÄxõ)JC(øº4É#NÞK·g&ýÀ@“8çw%æ3÷ѽóAˆµÒd=q*gâ|²¶ÊÄRš ê³ çãP¿{Ý>äüËùTj¡S†p÷4CA IÀÚSÔ|y]÷X €Í¨©Ì}Ë%}0‘Tˆ0ãq_Õ‘ªi.ªhëËÁÏÈk þûbºÜRü£É+vЂžwàJµ;GlÈ.nñ…VÃp’£hÈ•M攌§‹©›’~–ÔÎ(±H»iäÖÜ™up_¿È’Yظ3Q5yªŸ/z’Rò4G×Á/iäw¦céä[2_ìaË'˜r[T~C¢¢Y@´ +dú,EoR~Wz¾ùæÏÖ "p½° ºSeÎLÂsë™Eäóbœù¾SXÔ*(2óŠlœ{$Ö¯àŸu0J»šöxUScŽ‘Ž‹yj“|–D5r• l¼.M×ÅÅ:ɨòúÒ6X‚¥-Œ7ò•ƒt©3E;+”µ¤Jækk…’[ÑE”…%ïacf!þó›p4ÂBU ät|$JÜÏÒØéÚ皪uè°÷À¿ ÞGË vöBÅ`],µ­¶ÇãXÂú@ûæÓçß·Öÿ2ç'j=1r;à(z’‰†dé-踿߽»›VñK¼¬†.{Î!¬©eÎã…0#xÊ'iÔmÍõÖ¹í·¨Ê€ßêÊÆû•pØÛ—w¿½ß”?Îĺ×Ñä³ûàÃ.Ì£±u@\lNƪ “AÈù«`c-ä[ úà{_‚™ä=ù%ãÐ{'ðÞ9¿ÿåö6Ì)xXÕæM“wJκm pkf|_ãÍUÕÌ žŸÝÜTŸïž -Àj0è…ÖøgA¤zÊN# ­ûóÿ õ‰p>OcI"ÛØ¢GF÷tÁ»ƒà£º!‘ürTA_ªn.êdW¦Ú™"ÕËÏ}ûhx„¿¼¾º¶³Cnü\ëõFªëègZÆwÀ\EìR8n½Áà‡ÿºÚ“$ße©2Íl/…ϼÜ߇[ t¾ðÆW<…œÿŽA”_©ïJ*'6ÀÞ|ü†¼òÝ;ØÙá·½>§oqNÝçKêÆ7ÁÖ4^€Û˜˜ufmo3Ìù)Åçà,`š @coïì%¾iö£ìØFßþ&Zœ? +@ƹªÎñ ÈùP•-þ¼J„ü¯Jk¦hyŸC6óñ.n:äü?fýs~¬²7µr›pp.®|D@º9²#º¦c§Ûâ5L©r~þú¨Ø£˜fPÓ,¥Gˆ»„„=AÕ5|®h-<ÉOÑÀÅê#ð¦Ïä­ªîcZKÊ7Ö´RsbÉGâdPÇäúCÎÿÄÖGâü¢3ocHÖ#žGÌ<º¸˜)½ weâ¶<5“¸×îvùêƒfë~Þ“Y¤ŸÛAEžáçß˹…'ùʆ<âYL¡™-LV 3ÅÝùª;é"ÑIå¹lÙÍåcQE½\j’&”·e(ž³O=N' 'H;OâàO§^ê5ä|ÆE+lPÆ ‰~òI&fN—ØŠI÷ãg£oýÛoB!£ d’#ŠÑè #ä|ôr¶BQ¬=/(ø®X;˜*²r û²J§c•ƒ #šhQ(¤hÌÀÑô&í_žwp5Mðò_˜Xí‰r3CÜÆúûeþÕD–Åñ?©gºG»E0‰²ÛF!„,U•$ =ê4v»0¢íÒlDv…@X%È.[öäÍ­¤g~˜3¿Ì9m;Îáï/U©Ô«wï}ßûy˜8¿¨bhÓ_UíÚ±°ìj:_à|&Ö–ˆUŸ%Ê“°çÑ’VAë‹‘ DóJû&'··-.×¥;½LA >É7燈~-¬Ý³v!µr4ˆÓŠw1dÚS⾬›&ê΋;àüßUÁÂI¹¢n*@>©.2¶ÄPOGè"ø] ÂÚïD!Ë[>4…]/î ²Táœ9¦Ôr$¿¡JãUÈ +Ú;Ô®¹M²Ó¦ÍŽ—¯¦Ï+¦ÿUuˆ[[¥5®û««¬©%Z\'n ã´òŠæêz¬«[ÈN& /ìe]-§çVFJ[ÏðÛ«›I—U«–b…O©‚y +ñž*ï –—ôm/BϬ¹wùm˜„û0±Žž«§ µ¡XU  ÅÔÿ‰ó»ýúïòûië60þ—9 Ÿ‚FŠ“)‰W›^˜#y¢[±ì;w\è‡BÓùìÆTî}–ð§TVuÂwO±¼çÕ-Æ«–Ö­ñdrߤd•[^¸\µ¡¢]6Q“†?OÀî¨õ]ȱí€&’Œ'òo›¶¬ÈåBN§´²ž&®?söçﯿ„@gιQ,û^º´ntuϼí(à+Öt“À5“uƒžñxbˈQ!®}Ñh¶ïz¡²ŒÚµh‰*S$I2WL+Ž9„ð]çsiÛ_p:¡)<Õ$ˆ^Gð^ÅK•œÿÇŒÿWΫAG¥}Çäêм>Š´—&8‰k¨— G„½_q4G±AàüHaÓ)Ù¯”«õ_\lÿó¥^ª¨?†ÓËd+9݇¤†/ÅúÃòfjž‚ÎÖG°E]§9͇؊`±á„|<$oâ_/ÑDfkAǸõ8ÿ3ŸˆóiüZvM ^ h½î7œ³Yùð®Âðf¾’!Ë\@nðÿE§31£—Œ;hom-¸Ì$ä;‰u7w ÞíÑ©2šh p>ÜT5Âà·E +;“®jô€ü‡Ý*(YÐÍ«’¾GÈ Xî?SX¼^øհ˼€I׆ݲåÛ]@d3JνOÜ2;}V¯×êC,á-­M[,ðS¥f6†õ*5·#†]4µ‹V}¾Ù½ý4ÁK<¿éÝ:Úñ_µãñ烇îÚP[›#HÐ*m¶B—Akvû•ŸïӱDZ¢–(B©0“ àüuê˜ö0¤UÀùñ¼¶’J+Ù›\®.£+Nôì”hñ8ÇD‘uçÏ 7,ºŒ ¥ž!Ó†ðUGX +šP.ÑŸà©(„6LÁs%1xiœ¼ç0w8âòÒaŽ¶X8ñèf +vÄÒ?Ø/ó§´²,Žÿ?3?tõt'ML\@Ä-nÁ%.±EEàU\¢“ÔLz²LW:™l=YŒFcŒQ\"îh0î +jÀ]"‚Š ‘ÝÿÁd™*o}‹zõêñÞ½÷œû=Ÿ¸îOä×Q¸J26˜Á¿¾´qët 4|+üâŒÉ‡Œ"Ÿ38’¸‚•$–®ùu·ÇAt‘Ú½d¾2E0TYÓŸƒÌï[Òdóî¦Þ¬y£v-஋Ж™=T„Ç>"÷³j”›c¡³z¤W‘t€<ð[ß²”ËèÌÎܦ¥o>”·2Y©²_ä×Då×''B +GÏW~¤ÑAø ¾‚`ï/âóÇœÿu9ŸŒ€u“ð)P„¸= 9Y ˆ`G3'“%涭€W7/ç0©ýgx=,ÅÑÄ]Ù$ü²8‘ °òÀër"ÈìvÁüy¼šƒ½ÁËïŒL-šM6d‡ +Œü6§ß ‹D + Ð{ Ù¿ˆÀín¢n9¶Ð j;³ìù÷œºseíæ­mðŠ5„’Ĩܻó~ät¡C; +*™:W9Gaudᵫ‡>¨~â=M`!Š°‡Du€È¢vB|‚Ü(‚.PÀ`ß…á³$Þ,¾hÞÐÑîÁˆ"”“Dr@èPápˆhtV4,*éŠwDHZÉ¢VxI4o š;©£±YPw +öúÜûÌùÿ[·¢"ñÇ@DˆÅÐ÷Qxc±¼Õ°ÌÉtI¯ñìÉg¾¦t’°ž°RåÉÒ¶Såoâð*›Ù­ÄÙLÊœ§sÌZ›ßL Ç6úTÖh.íSi‘ßA¸ÓÚâêéÊW ~•³ëAÏßÌK›Î–·îé È UÕ×-¤äÕ^»·°fEáÛ9’ÒiɈNo +0|õÈaÖÕ¼ÛÓ2z»‹B„mÿè—ë±-Ú)SçUÜõ«=¢tH·AX!øc2.¥?~©/l2X²˜céï¯×ÖmZ†å½¤Â{Sz¢—=zµÊä÷^½¦[_#xlÃæÈÄF“é +“íìç“q°ÖÄlU"k!ëçöe„æ=hXg¢ ^3DÝï‘|%a}1E§$Óg/k`þ?Ò®£|FÓI\$\̺òøeç;ÂÊ\èš…öóòuóöh|Ëœ‰k£¸àü8L™ŒËγÌîì5¶÷ë[ã°ÿP¸Á¼¹ îl¨H.¤òŸÜiÛt»WÕ.ŠÅžÇ‹Ç©øû\émƒù=D Ž¡/QZX±ÀÉØñxò$•©<#p~kSŸÛîßs¹Kxnk,«÷ÉàâŠÝ¾éõ¶©'òD™Å«¦=>«× œ¿ïüèòm¹}Ä[Ítýù†‘–¢ÏÈmiéÞ8ðyô»ÛwMÀù}ÃVL8-@A‘ýfà xRoµ©™‚©BùyÁxPÞP®¥HVŽ9ÿ ÿÎ'c“ñõicÿšÓàõn{½¿½œË.|*~K-ŽÒÄ“%÷¶‰yÚ~kÀºÉ +Ìïwµúý·Ÿ®g2vœ@óÃ]¯øÞM,Ûºß;ë½$iˆ)x\x¥®¦¥Õl9ðõVÝ¿†ÈWº#¯öì˜wáºç§]®îÑé½>ÎÿŽ§¼ JcW-í»m¯ÇîÎÏ‘Ô­€;£-‡cÆ™Éàk67Ñá¡ü6]|¯Hز¦ÿÝ~’8ÉÜ7·•&"$>­ö£`8‘1ò½häÏÜÁ«WÛl«êDUÕÓ]÷„£eLÖçGÕ cÎÿ2ã[ãüXþ +›'ag&›ŽÄFb…M‰"Y|ž&[°Ç’EÒ_ʼnºÃÙ}' FÈ"-pþ ökŠ@CbÍçÓÊŒ3!¼–H©< —Q9ÃÀùQ˜–Ìœ ƒJT¡ê4¥½w½r“soÎÙgŸw?ÛâÏ.œŽuÊ}И˜ÚIëxØÙ¹†vÑJ¥ßM’¼ŠÊ©Íq¦2€§" ¡(ÿà|Ä„ÌÓavü8ÿ›à|, |,`W2Z4q†9˜ZÕ<áXò'gUË ÛyŠ±FXÈŒ…Žþ“ÂäO³ÉU{üù_è,Ó–Æi¹RvŽý46Uös•IïD³M9Pa©ô§àU·ö‹- T;‰„/‚sšƒ$MAܪ …õù¥-«{hÇŠ.ÎiŽ´Yf¶páC—³J/0[´à°ù6=…Òµ(âÝyZINÑ38G!fºB/¡²JúÖÀA{è 5óCë£qWÃü©Üqô²/fdqaŽdµž“(ŠgàˆA{¡Ö_Ìx’Èî?&6ßXüAPÛ³ŽIžž[ÚñŸš¼Ò¾HNk¨PÀ¢ˆFƒ…jp Rv—ò8¿ë÷ëˆó¿.ç/xþäÉñ<¥H« )EA†pÖ2)cŽš­Œ÷žä¶Š?‘‹&òuáy¯ÏÒȼº¤¢7 o~L©Ë–ÅÊ#$oÂDõÁ£¤[¯"%ÒØ<‰+ áuð´ÁB}¼PÍþŽÛÿc¶&–bœ•¨¢ù=§DÝ?p»ÙzP”XÂëÀ­%OKâëH¼ñ Áxß ð‹ ÔAĨ>˜?Iâaýš„ÑÎß™þž·J¼}€"$´ Å)qYÌî"]Ø+xZ +W‡%Pâž‚À߃iƒ;þGœÿ¿å|œØü‡Aü[ `HF’ø3™^³ì7 nû¿-‰=KJ×ýýj˙ܖXÎL6õ/îREûú‚oüôð5INïO(42õF#r»‘i]—’X 5~q¢Ö6[Jê3“Í´¶ƒ„yOË«ö=hÉ>æ@F2ºÑ¦ç ìȺ'ÛƒJ4o_ÝBVÈ*£&Ž1ÏÑÇõ­óûsÏ® ¦’« )…w8½àH¢‡$ìÜð'ä̺šYJ¨(‚þÌŸËÀ²íV´¶ì…&…œsè~õuóöàúÆ9?0s8?^4 œ'¨»U§Ñ™LøX¹Þ€ +þ=Ï£™µ¢©]T&ÉÈ*™4Loní8ܨµÓ“˜ö™«W×·ü)¦YHÎ3œ¼(×n˜!VœÎ‹’|ø&ÐI_ÊaÀ»½sf>ž?Áì•T+NæœNå¢=M,¿]ºÎëVë À<{^T)ÎÏ +î?0Égg p~ÔE¹|Ø´ígiK˵zÙn7#4fBç½4ÁðÆFh?×NÕÌ-¿Z\¡ aÊâ® ‡È"íçÿI×ÿ ç“YCQ|}‚¸©os²Ñã¹_«¹%b™@Áé³ÔÌÑ‹¹m#F#løcW¯çRÊóä«/~­\Ò/!eæ«5ûéAmã3©¹ÅŒ¼âéuÆ~‡l …ˆ_Id&¹•õZÏJž^ ~2Zàì燱›¢…ï\+6ØvÈùxÚÝ󌒳×f¶Aä†÷Qî“åLYŸÉë5¹Ý*ýS'¬ÐZ0烽çÄê…MçÜÚÚ¼ÛM»Uv™xf0Ú~~ÈzÇoU ,ù|íUón +«®°ÜòObœtsù˜PÊ-oÄã ¸ú0LÏllÐrâ‰àüSlu°@{ÄùÎõ­qþ颗'¯¿Î?+ÿ[Ö[R^õÆ»39²XáFpÚL8Ñ!ú(ì +Éí?!Ñü•¥8{»½ii}h +¡Á}”|S­"xÕ4‡1b!• ‘yUž”ÂoŽÎWQÄ€ú‘ì¡ž ÿ¤X Ç0Œ1’ÞFaÈ¿çÊC¯k£éC1 M`f+U¢<âü#Î? Î'3TT¦&Žh\ñsþªÃq·¼=9µ>:m,Q´H&ú’î}z$ŸßóOpáËR2ó}Š {Þe]¶Z77S9E!W5Àùg3J¬¨îÓD 6±µI = ÎaŸ—¯›·×·ÀùaÜaEÐ Åú—ÔWœ‘hƒ8}d:Œ?HávPùmÑ¢·×Ÿ[-ÈíÁuvÚiGÆ%´·„ÜsÝ®”§q+kžŽ¥ÁV®ºÐ²¬"ó2B Ý +ÊþIÁï£òzÇìhavŠâݧdu‡s?ݯžÂ°„ÐûÙH^_8[_P§±c@‚aã6üS,»ôqûüg—:äõ ¿yŠ…ÅðZR®)áÞ<¾h’Ç—DÕ3ûè`LqÝFëM¬HªuÀ¬°àÍ0爜Ö@nG xµDE"À*¡‚n,~¯ŸóµX‡íÛGœÿU9ÿ þ˜öù@ø~AÉõd¶êtfCãF”E„J^¥\“žWE| 㵆r^Ü®µâB°ŽÓ˜öáÔq ¾ìØ¥Jã–¯–fw p^y|hpr‹Æ¹w«´eÇ_°€¿}V\Ȭ.¤˜@ÿe¿L»Òʲ0ü“úC¯*; + +"ÈÇ$&jdºÀePÔ¤cUVº+i³bfc%±Ê!e•ˆ +â„8‰‘ˆ¢¨àÜ>ó:C¯åYï·{¹œ}λ÷~6SÙÍPty]!ð  Pþ’wýO0;DöÑŸO£>÷‡ÑD bò#ÊêAZaj2ï"îè!Ø ‘7dß@·´€ ÉÐý¤âZÇúµÕB“R ýåZ@Îø£؃7Š~3NìüIä8'0ÐÍ›>o ,‘MiÐ.eHšiÒÞ$ÑH‚ÈŒ…,€óÈù"0rþWX?çãùmTq7‰kÈà[r¥Ö®a`û(0•;x.%€l¬ P`‡«s4¾¶D½FöPåä>¼Æ¾¾²‰ø‚hLk!d'Œ”ÈZFíH˜?Šä?3âUj2ëMš°_¦Å)zÉ¢2¯;GegˆFÈÊþîd%ŒxeÝX¢¸+šŠ‡GâjŒª UY ¦ôF:ÏcD¬ÐƒR=èkʼ¼… }Oöác8—$žÂĮ`-*Y>ö”(9‘+¶â Fð>^8ƒ +¡d§èÂ*Þaåêx©è«×«SÎÿßr~ljû"éÀ‰P`C +o MùºûãÁr¬¶wZ<ŠFf^ÿ5h‚ÈjÇä?˜ÛA6@å?86Ì8²ù­ÌâFGp=z¤¾}è²pò"ßÆþåÈÕK~'ïbÞ·­†ö‘Ã#¤¾Þ@Q¦(AÁqX—\W•âTNs¶¬;KÚšZX›.øýª²ûkëJŒŽ†—‘LåK¢à SÕ€>cÜhºÓî÷ŽLÛ,9µö[¢p8Y0´¸î;ˆù!Gv´*º¼Ï»Ž–rÐí´­Ä"*8K-xÏ­œÙ„Ò×ÌÊ%Ùoʺ´¼\–1+O'ÏÒ+lgØš©½ð*ˆ4‚KÔtö<¥hŽ!2¹- +k +¸oVµ¯ûÑÁN°BA:L嵉nubGa^@r„Í霦<¸Ó³ƒ¬ì!¾0©ìI€ß%H´_;_¾¯oOÖÌù‰Rà|"lÁóõÓ` –ݦlºóï'f‹m)𡌴¬¹l«ÕêènàÙ•¼û÷jž§§ý(No/­ÏƒõZ­¨ª.³øU2OOÔÎ%'s¡Pš¬ÏÕѤƪëR0Ð7“ËTÈ@ DO«Z»Ç×Ö>ìî&Ÿôù.1KªËŸ×ª-–åÈñÇÝíŃ`NÝê*.Ëõ´š¥HðØ«^3ƒsή~=dùÜÛ›ð¡ƒSÞ xÙ4éõ.~ŠFí;;€ó1üP⸽§œÿÖÿ çãFÀù´ÒÞv' +À‹‘Hõ›- +ç/âÆ8è©´,Vο yq·UÓe29·¶Q>:rF¢““œ{Ù—o Ü®~áþäƒ@Ñݭ­½~vzp~çÀ,¯ìq‘¬æ/fÖå +íGAøëÞu»cAzûí™ü:Ôºèإٱ¾~ þ=›wÏèB=°ê]­hx­w»A ÝØßï´Ùî¶R fò²+»×BÎý›4‰™.µhç6À®ì»»)’d~½ÑðE"66™¥ã˜ânûÝýNë¤çs 6§Xü~Àùçd®$™õJù{úm(Ítýø¾Ó‘5¦º°üÁ$© ÛO9ÿÛ¬óIâÎte?¹dŒZ4Â(èC'Ç@ìFN8 ñûéG™%ÃŒ"­Û»:<ôv•ª¿ý§†Ã«ÏgU†Âh@îµ5¨üÖ¿jQ³ï.¬¢w¹Ø–µ»RojSŠþbòՉʾxø=à|:Ô›Z2xMuö¬£^q³i2½ªë”óO9ÿkp>H+šx”ȯ“×öx"‘µX…T›Ko{/äkUµË㛈'Œ:~ÝŸÃå_ud–´Ì…N8Î{X~/È,Z\ Ä8Ôî!_×ÆKßj(ñ…‘çÏA£ïO– Ì/yö£ÑM$òfL϶¥Ae'Íˈu É‘ÿAÈ¿mY^^ØÛÔôçX «¢™S£mÿ„´, qìû7l(çGŽükÞIï¯6ÒUv ¦i$ž¯§dÜ@{Š/ŠÜªq0¹.j±óVcÔDÚôÛø¥zþi)¸}| v‚ •F¿½º Ö¡œ/Ó$Htç:r©&K$Å؉ÿSYãaGK :{Ü^¬aüb+Ñ¡©Äó•—Ì™:{¥7³b +« ü×éŠnRñ ½ÄJÚIÐ]6’ÌïËP™Îäµ1• +'>o(K:™­ÒÅmçò'R*ÿöÒÍ!²¨#]fKa[©œY t™…!62aSšÜBáÍa®Œ'r +–5ÈXI’zªä†Ð” [i|nȪlOd &ê(Rsºjú"ü<zBÔ§•õüƒÕFP*'±’QÐ1AD_8EýoÄ-§œÿ½9 «Ø<€*–w‰âQ’Ò‚ƒz©¥ýIAÐBÕt™> rŸe;γgˆÐ‡T±%‰¥£ F2`3‰e¼¬p‘86¦ÔÉTÌœ)Hä›0¼1ŒÈD©t‚û=_¬IÓ•¦…9AlÁ–;ÏÊXq×Ý„ +G¼ÈH–ŽÆå¿Ãpûÿ~Us¾tåg©û’Ô”Qno&‘?•Tbaw¤q:12k¼ÜFä·2djª¢?U:”p­.¶%°‡™¥³$ñ †²Ëv& i°†$ê¢(ûȲ~ŠÌLƒ +œ[¡ÿ‰ÝLø/ûeþÔÄ–à¿hª^ÕŒãsA’ÐÙCGå9>E¶,îN: £ã{3ójüa:NáÆà踰*(l$!¤ 1€ +È"«„ˆ€ÈÂÓ‰5ïÔ©¢ë+ªr»¹K÷=ç|×ìâé½c Ÿhͧ갲k2óÝ}d/ÇÜÿm©‡WØq¹æÎÊ6‚²šE¹ä-¹¾‘G´fQ0|9[’„ ð ~`§¿×®çYÏ߃3̓\’‘™ºdÔÖÁYVÐß$rK:*{¾®SI¯TÛRpöÑjJrÂo¬• +à¤áç·IôfÙ_Æy§ ¬«ýOÑTiýc+È;å=VæÇH—€x*£r¸O¢rŸ8ÓÛ6„–7ÐÜ"²^Mð‹»Òk“1áA} Ù-Ô…ÅxDªH ÍrªYŽw+5A¥:È ‡„tˆÕÓ˜fZ à£l¤à_¢mTŠ3 +-“«fÓ<,ÑuKð é–P6¡± ÀŒÍ|ã3ö€@û8´Øñ|µëùÿ[Ï×3¿ð©âËÃÓÙE¤=[W—g}p›Y ½g79òhr4Žâ/’Ë3©Ÿ¡¤ùÑq”°ËUýJí‹`°íSóhn­L!”æõ +"/Ø1ú|284³‘Dë t¿Î ¥Gaí½X34¼Äö6Ž bïP¤¾æÀ:Q\§/o»|3²”Jz1´>ÖÆ6ØsnƒNRn©ªv*õ*>²öŽ7оâÛŠ +Û@|-Æö†$º‹"k{–þIÅÏ®¹u”6í…jíœÿ}¡]¥ –9ªªçß±ý¯/ÃÐÉIØ·K[ÐáÂê6‡z,=ã¬ÀCà™†Îhž¡)‡n2ÞìBbq-n¥úDC«ãû .ÁÙžS%7mž7iÏ¿Ú:wÄp§L{ÝXZM~¶v™§ëà›ÛÛNÇË—Ý·éëköü,SçAÂ%­Œ€çó¨®L3{²)§ïShB¹åîȲ¸DðÿFÕ’]¥~$ŸWTÒÏyœUÁóå¦ÇyæI™7GÛ'7½äkC˜Î.¦\RC§Œöˆõý<,. @^• 𰜞Ï]œ²Œl’Ó-ü— ïWâCâ’¨XëQnq»Œò‹Tƒ9äk‰¡'³Ô™_1ˆ©»xø#g…¥n©ÆªŸ]ìÌ«¨çª®*èp¾µŸ¯õG ×@õåÄmŒhUz9”ë Ñ™eìÞõüÏtýŸx¾ÀÀÌ=ÒÆ#‹-O„ÔCey‡°eâ¯Å–¹LÍK1=$$¹ž‘j=9¤_® ÉÔ}°Q³Š{0]ÌÒ/‚(Ї¸tø×%nYEDjb8ê‘ÁÇ!½FµÉ +}}.Ù-Óxä¸=‡ºRª£O«Ë¥xHAFv=×ówÂó¥æ.žúéïζ+Í÷Æ«7êÃÑùù8kÂ1pr÷ÐÐ=·û;ëEiIÍ1Ò¡PˆŠÂù-¸Õ3¸|¿ªgòÅlJò¯^ýxíîqâ¾ÐØ&+w„£cìt·ÑͶ唇2UöüÞ…ê»ÃìÉÇßnέ¬¸ûúÈò«Ešæ£'k +µ5­®aGß|‡àùÁññRKÃ1µM¦¾õ§ÚÚñ¹¹•­-°úàâêáó..^ž]ÏŸN$”t•ÐbÃÌmò¢KÑÉù÷ÉäÂÆÈùß®{h;qÚQ¬qŸ,}v¾ª*üzp~múZXÜØXI 7Ãœû©ŠG· +­í?Õÿ{zm jk`F®«“Q RcÝí@ ‹Á®[ÚF£±˜ïeøpeé·”<ÿÄékLt²s|}ýÏÿPâ5*üF|-omM¾©ÛA±dçÀ0›w:^¾ì¾M__ƒçcD`³œÞǧ×ÔÁ¹ ÒíÿLäéY¸FH/®C&ÌvŸ™IsÐø¡8dr2úÒ+R.€¯ ñ ?ÿEH„à”ñénúI,ß-05 Ìõ˜ù 4<Rn!éÒžž'û~ôA>ä“Q6Qã£é˜^Ñ'R-é»ð<¬Ä]€„ðA!€EqõaŽ…§gÀô hÂ0ƒàYvüýïzþöü_L¾öÕt%Mi¿ÿÓ‰Ïh¸´ŸÅdKÿÄ 6v·°a›:¦úäÒPq<K ÛŒ5ÂHu> ½÷¤ë lÖHG†µeÏÙ–oÎøØofö›B@À^ dXl<˜Ì™ sõ.5 XÒ»ÓŽlüÒpŠñA€§"%,Ö¾8ÖF³ ‚HŒGYôO…d >‡vrunÑ5¶Š¦6Ù:Uôƒ=Ku;ÇÚžmr`¦®ƒZ7f¸YBÖòé¬ôyòÕ®çYÏßKGX²¨^1ht¾\›GKqôáʃYùé'ùDw.Þ%+sCÞ ΃’3(1µº€ N~˜^FÉ ¢Ûh;™L&â¬ÅŽ+{'æ¡%±öQ\É ¼‡ ®_ºîóÌ ð&C›´Ð:9£¹T#Óÿ±k d>,¯¤SF¿Sß9¹Å5YÝŠ±š„B‹#—žÔæ”^Òcß·†^±/ÞÍýåÆ­×ï·ã©#Fdiä?ì—ûSSWÀÿ¦Ým§Ö“˜„„$FÀµKky„$÷Þ$77Ðíh]gÖ¡µÖÇTVK«bE "!ÆHÀ ÞD‚¼Â#B’³ßsotg;³ûS)8“;Ÿa.'—p’ó}|¾çk/g¨~Ì¢«›~Ê*ù^wý‡ö7SãM°´…”g®ù¸Óx å™Ì_h­GÔ-ŠÜûO&ÐB/".5î׶*tÏ%š€ŒåQÖ4“sÛëUÂó_Ïg}ƒå½óã.+¸ªkÙ’rÊ!Åtf…ÖœY8„)È,êƒr-ÑÙ4î×" +»„ô`QÑB%wdäÏéÚ&٨дÁÉ@”µ¾¡qnóWn4d˜ºåt§¸Ð® \†zùk²©)ÙØ–lt$ž¦ÐÞ}Oç@TXWñÜzŠÞÀ`hÍR99‰÷Ìy‹‚´R-îM< ¡Oåj (½ð˪ø¦»<ƒ“§ëIÑcg± 6Ð*›‰H9œ­ÊQß]Gsa42‹2©šý†VmƒŽy@ãÎ,öp@,Ÿ•¹ö–>.,ø×2 aÜBé¦z]séZ{(Œ–7QsgHV6šÊ |\TVÞºÝù²³qË] ÏOx~Âóž¿<_Á´€çF5‚ç+ʼTÅ4gM5nw–¡NLTË ¾¶Ybt§΄çÿaׇâù—ùBçÌH2~+ +GÈ?€](Éè /Óön…{•{R@Ž`´~lðžïI\…MLviâ-€€i‘©í„Z/ÎSÚöX â^)äª>@LøAû¹LIÑã ‚ûg“Ô‰?‘ÞÆ=¿íu;áù;êùqÃçJ=ÄBz§€±` ò!r¨" ›•-¤6œä@<\öy¾ÑŒÑy®&Ç*íoq²8~ƒHß°I÷Ç9å‘~Îá%„€D€{!n÷l_0: ¿{K­ç~É%6@¢Ãp{©ƒ¯ô.¦¤vÂ'Ç„ÄX*Ý%58S™&cå)›“r¤ëÍâ⚣ßxª™Ñ.з&QÍ©¥OR´mbƒr\JƬ åfŠí>¯„çï¬çó u"Óƒt¥÷Hïxž£»öˆ ¡\FËhö5Bƒ!”CTæî߬ž†<_EoõÄãHRÝ3Ö[ÖÑÙ!º&ÒÏ>â—ÜÿKQ¥kŸé"Bé§Ü{Šï-, HÍ®£*[d?]«¿æïX@wž¡¿ÑÁ9ZÙˆE‘ÔØ"Ò5gçà»#¯¼Ùu,¿æÌ9ßô*.3«(§àjžºj ˆ–ÐÒ*Z}9‰*¾ 2_»Ú}°²4·£¯”‡òoucu‡-Yž¡<“ùäÕîÎ)ôhé+< Ï ±Ø«eôyAEŽêû‹?uΰ›oìÿ¼¤FœÛž¡’kÆÒÈ1i–š¶Ý[žÿ;{>mõŸòaâE”[Í*3È-ÝЀâ:AkSJ,Ÿ½W·áùzO²É HµmrÂI=O+èâwIt½•è9;N„Ñ“±°úTõÞ‚zø"Ý %|2í©¾‘n™ºO¦ bTð«\W/gnÈK.a˜åú»rÊ*§ì¬ç´‰ ?ÕŠ<ßmÈ"¤zÖÙ<œWðµ!PhÜ +Æ<ÈH—Œx*%¼RM‡LíðD éR@¨vHuîãLÓŪþyu„*]“Ã<)”ÔIôè8\Lî5º=ÆÇÉ'\]~´²…f¢¾3óôE%ÍC«²þÙ*,k3ãŸt§•·ìÕÔlw¾ìlÜrWÂóžŸðü„çïÏOQ?Qö}º‡ +S«Üà:|Â+'ëAõ÷Ö¦'ïÓÙRt-"“+‰´§Ò Ïÿc®ÅóCh<ÍçÏ tŒþY”Uq«n~-ø7„2O¶¤šS4õ×êz¦¶" ÊM=Ó ù{ÈÛ|¦ÆÁg +|ªº/)}´´„VW7‚ ÇÊZÄÄmPý ælvYmêÑ›óñ*¦›ä¦VøbÖ¢ÑÁã_å]È+¨ÕP–Žþà›ÍÍ•ºZÕ_¤½3:…c‹3¡™òWŽç›©üåÁÄôúÊdhÑ@¹Å–<íƒVÝÛûûst?Ër¯ÒUË +þž®©È15L­­áEÑ?¾³oxÑ;œ¿ÓvPû‹¢¨#“–ªF¤Ô ¡¾YblÝîï?áù–ç§Ýr¥/Mß ýòãp/O4:Ú5Â×öA®apž²óÀù»^Ø'%¤ˆç#ãæàÑ`Úp* ‰aÝÛÉÕÒm¯Û ÏßQÏÿ¬çSxúó*D>S‡Ñ¹DD@¨ b3†½[=ÓŽÍ×wah]·€êÃÎOŒý›ý2}nâ<øÿ“™6I3Á`–,É+­dùŠC 6ëÜ]­V»g +|HÚ”tBfÚ”+Îpð)Û²,Y–uX–,„±ãØ“bŒ/bðñöyµN§_ú sÌhç÷AÚÝyõj÷9~ æš|’s!¹3"sF1ö|hÐø!Àp˜… Å«$ã5Ð-¦ ÀUÔÑF:šÖaÚ ³=>©ÆC‡_*ø€låïÈs2»òÀhǬ·³l/³CÁùa'0ç:¡_/D4–Î"«OYë/w¥¶ìoÖ¹zÖ‚ QÕ ‘Yè +Iì lÈk½-.¢¥pe'š~_9ϳžÿÞñÓ¿ÿü¼„ï$¾Jk“ýŒ^þ‚V¿l|LØûÔÜ°Ì>(§R[Œ<ÜñEÇ-´ú ­Í6ö#²&Tl$jâ ×cËkhþW”ÊŒíp§*Ñ +¦7>ŸN¢•ñ3_öL ô¡‡ÑÚº¯µ˜Ž™zŠ¬*óõöæQ˜"Ðü*šÕžø–½Ñ»ˆ—ÐÒ"” ˆ†ôà)z¸6û-O­¢ßÄu»NM-ƒ–OUæËÛëjœ=39æ§Ñ³`U׶œúçè³8¢âï}Êzw8;´¦KÅœ·ôpìãê†.?X\Ãq¹}¯Æå[œ9c| í曌|%TJo(0÷ªý…\¤ÆF?ÿœç¿bÏ+¿Îs7hÄ áJÛ†¿àŠÊÅæ%T&xó\)Ààh´¶´ŠN‹˜9·ÆKmÉrjPlø½=­ªÑànÕ8_F_)s4iö5Pr¦6Ñ[ØA­%NRa9ó^¹Ð$w_—y®`àß!ãB26)s eÉÈØ|…®!Z=®äœë½³Mãl~«Ø|4ød®ùNŸÂ‘älRÎÆ¥®°”æ  ¤® ã}€ÜÕä³a…;i´$vÒ·ª,ñ*kŸÒܦ`:å\Pî„hŒö$aO¶ŒÔ1hüÁÖ¶‡Kl³†HS}~õ?ò9¿æX t®ØÕ]T{m§§·È|»˜ßd¹¤àš7:_ÞlÜŠGÎósžŸóüœç¿ žŸoòÁ¿†5Ë…¨Ž}"¤¥¦65Ó­uÆÁóAò%¶.ˆÌ6 gü9ÏmÇ»âù_{gäµ]×ÈfS¿Äš h„–Ï[Aòö›¨Âš¨dFÈýçëý³ ‹ðÆnÞžÐèR×´oã¢#3Пì×üÕHþÒÒýî¾ç;Mz{¤”MTŒéèÖ½\ç­qxóË«3ÄñSÇüiüé…ið|<väO=„²y¶qòÌÕØèøÔÊ#ðüjgK•éZ•éúWgϼü¤'†˜;ÎÔ?ZXEO^¾ìÒï>·“ëÜîîPY$uÍeGâúÂäÌ3ˆ³'ËèÐW_L£5XùFlÐP{¶ÌÜ]ÁfDÏ×° Îyþ«?ÞqÏ×T‡ +÷ +yPô˜þhÏ'ŸùõæJ©Ë¥L£Þܬãû$Løc*QxèN1*²ß6Ï/â›™>b_x«%µÍÝfî-¢|„ÐóÿàÂÁ満¡Ã„õ®Æ<‰ÉN¸&€Êu€¶‚ ŸIa„ ¾'•&ìiZÈ£-h´…ÁU°Ûil‘k¨Ü+î¤-ÕRm´¶ w¤ì‚¨ò¹ F¦ŒM* !å¢@™“Ç •¦0 e3@Yzܬf}ü/p‚(ظŒ÷rÖG8„)j° jê`3)µ»W{8ªaULRJõÊ!™3 e»¡ŸBO=ß`MZ{\ÃDrž¿ÇÛæùy΄Ä5¬3ݯÜ7V½7šHÂ;xú+š=y!UIu¸~–ówtæÉîö-¯ÀÖ—ëÓkj¦¡ÐѪáÚ믦Áɧ—Pbøß„û¢Š«×ñç‚ÑÒü³—‹sʺÓI´:÷-Í=~ŒöÒ­[t+M— +Ó +§ŒûOß}}/Pž-Vòç‰'h~-EïÎm¯;[U“ÔWõìàÿ^åùÆhûŽØw¶ÌÑz„ÆÑËQô¼¬î‘¾úGroïwí°ðôú)2ˆöÔ62|óÓh-Ü_ÚÅ·+ö^Ô{º +œ]ïÛü²ƒ‰ÚÚ¾@®Esh!úS`Mý‚ûäMãþd©5C21-¿*¼JOJâŒmôóÏyþ+öül=_ÿlÁ€çƒ]õ€Òé‡Ú.gF0‡ÎyžŽ<>QbÊPAwó™ +Û ÀX7ª±Žæ ‘<§¤ÑØ·K©.åÑÄÝõ‘í’ÄzEgïÙæ¹gd‡ ë Š‹l¢»?täŸ èØv½UoHëiKB…ìÆFcõʾzÑÍ¢|)¤±gTtOà0L”›´Œj: @‚¥ f h@RAÔ.Û‰²îZïb]+ë{Ð/€ß½òÁŸ®Uœ¸[X)±Ü"jOf‹5€çW@Ëøô´×@·Ø©8ÿfګ䣕ÎÑûm-Õjº>`üùžþؾ<6RÂÇ‹L~½eHgÊG:¤ìµÎ—7·â‘óüœçç¨>á‰()Îó_Ïñ®xþ· CUl¤!†µ#usÇ¡®¿\Ⱦ›å‹CÈànU2-ZÁ÷ý•Á¹•Pýäi|…ãœÁS?ß×–bçÃ-Ÿ&g'ÇÑÊóÅEÔÖ‡uwÿ‡ý2j"Ëøÿ³U»#È™ƒÜ 9årtÒéNwÈAuGÆ™ugwËkÆ™a¹ !$$äâ’€rªQ@”dDÅ·¨Ú߶j~X–™ª¼úTWêõ÷½N¿zß~Ÿo˸Ý,6´@ÏßZß‚«‘„ÂS&2÷:¶öñ—Ø[Ðí§Ê#¹e¡Ë?8 üË ¤ÚÊ,¯›ÜÚñüéí,Õ3Qùb.:òeÓììÆâ +Xµ{Þ—Ý—kîÍ-¯AÏ_›ßõ,Òv²6p{Ô=GpWq±£öªn¹å_^¬ç3¯¢spª†è¡2B­€g““aìI!Úà©Ùïõ{þïËó¥X§¢=©Òʸ0H5urŒÝbrˆ¥ðíH¾"À¬JÕ»TºŽ›=L´]LÚ~kžŸp©å–úD¹]„ñ+ÂÙØS7œŽ¹ÿ›çS*ûRq—D;I-öÈLNÑ}˜p¦Y‚Ԛѣ˜›©vÈô~¡f’#¡èïÓ mû/»o÷ÚoÁóã,qÏ?XÏóû"îùëùÂJ3t°-¢Ê:1v½+¼ô€ïôtHl@Û\ ² +ÄøÍÏ[¢‹°€Î(ª´f#í¢ò¦Ï›±ÝΞé•,U›àLC>Þzö:ÅøÝ\SKmCtt <;,nƒ•Ý9­³gªÿ^Ý ›ÙRâ þª¥?¼ü~i7`~{ç +‡Ì}£ë  êolùùáUðì ÒÞ7 «þyå®ÎðÛ£7Õ¥BËõó·»÷þ'ä??šÂ‹Å5!íR´ëáî{­ïb÷µêŸH6:“ÍÝcSß!RAö{ýãžÿ¿õ|‘ÚI3Ú p8Ôi>æ„$ëP išñiêO*ë +U1ž|&ÅMÀ†$5£0×’£Lr6?¿AÛhéӷØd£åé\pWV‰ò»ìzùÃ=ªðñtÍ\¼éxeÍLD¢4ݼ”€$}Ÿ`^ +±ª˜ù—XsGª­§êéÕ4r)Q5'’· ÊZdHN–wÓ4†Ç¢3‘|yC Ú*SÏ2èŸÐ6úOJ…UHŒð‘I¥Úv”hMÆ{2k ÌËRä ¾lÄM5ôBx¨“Ø“{š¡Ÿi²ðð dJp:IJD5ýlõ P*™¦HªÉŸj q´„êGÙø<ãt˜~q$ÉäN$ìTÂ)AbuçéǸš0Cá§kÜJ/K?HѸ2”~>>šIŽ$—ZùUý<³“¢í`†r²ßùr°ûv¯Å=?NÜóãžç×÷üƒõ|†Ñ‘N¶R°»ÐóOV}Óˆ½ÜqJðjkëÍnÎBÛŒ}øà}²™cøÿÊ…y~k«Îñ2k‡žBÓyµ±o|uuáÝ»®èR™e0í:EtYÇWf67a0”|úÙ›™ê›µw»B±Ø2Ø‘ü…7oüóóæß0‹µîÅ 6úz#ÇÐ=_¬4×Öuzgfž¾ß±ýç?Ž./[§¦µ7Øåæ’ ÿ +¼Ñõõ‘/òLßBÏ"Ÿ^®ë‡3<À1÷6ßø¥Hóçlâ³k½ããO¶·á­©×¯ÛƒAó×Í<¥å¤ÁÉ«hþGkïÏ»…ÌÚ‡–+n‰5îùÿ§v@žŸBLî¨>ÈÕ•âÒÓ_KŠ¦øŠÙChè0îKW;hZƒ˜¡aÓçÏOz|`>6Þï&8z¦—UÒl¸uMïT‹°ÀY•“ݘØØ!1u&`ÍŒšËü z>[ÙÍE¬IUƒô‹SüšU¶@SF`.çê›!éäÔª†dÍ"Ó¸ZdÈÃí™å½Âr§ÈÌ4…Ù¥Aaiø”²±iæ—=`£W#ÇôV&æf!>Žbœ-˸àL«²ÒMýiZt ÊRz¡çS*­Ðó¥•CÙ¦aZÕ`"Þ› ·¦Ê¡ç‹ÎŽ0Ì¡®C€©òÈÌcéªþc„ûæ¡)&øÊ)^ÅDéù!Ü™hpѪ½\‹Oª òå~šÚÏÄB|íK jú¸‹kâ4 UŸ‹Dþ¡Ò;\“CRí£”9³Lû/»o÷ZÜóãÄ=?îùq~=qÏ?Xϧ“ÓT]”Ž‡…ú]Þ!B;Åê†ÌòÛRå÷…úf‘ü{~E½ïÊ·øRKîË*‡¸Úr,÷³õN…?‡œæ)Bk(½vkðIl~k}|„CfÞ®n$]îÉF[s´mt¼‘†ýDU¹¡Hî<Ô‘ŒÙ5=4e+$Ãä¦ê‡8Ša>¢^Þ¥ÈUŒ >¦Âœ[õÅ Ò›QÖI7»#œóõ}Ë>za ]~*$Ç“Ï:iÈÇÒÃ2w‰Î?CÌP ·'({˜¤‹¯ɽ2d8…ðFúÒJ˜Êát}$ g]yLE|Âòøyá]vP,õ\ãw âV†ÊËF‡©ç|©fGß'ÑÛaþ²T÷Ò/v&Ÿk=nh¥á=RÌC2HO +ÒO×2õ]7KÝJGî³µV +ùr ù7ûuúÔÆyÇüŠ›Ä±ÝÇJ+­n Œë$>0 tì¡=´’ÀÇxûm“ÌdÜ:nëâ Ì BH „Ð È5Æ4uÒ0É4ÓÖm±õGøü"„7ûÌw4¿Ñ<ûè™ÝçÑ~ž¢„ε\K4÷DtäClp楞ÒAï—Ã]·ûMp¾Áù‚ó…¼yç®óEž)QV’93›³û“'Øh#9xšÑ7Ô·úWMLñˆgBÝ›6‡æå­÷mÌT#?y,ðPÚ;¦ê LsFLî9­?­ä•T¨oôMbä8JŽƒóetUÎ<Ñ7ÕGÈÿ¨Æ{ÏÌŽ›º¶•äãƒÞ/‡»n÷›à|!‚óç yóÎ?\çë¸/1þ…ŠØ¨kË*ÖÓeµ_Qº—¡Py²(U„9›ù5·ŠËJOFå]‚4ó+¡\åõž²žÿXköýÖÐ:p¶û)Šï9_柗ñqøÓF™(X }ÿçÿ¼Îßj>W0Ü[35Ñ…R" ¯½‚W/äæ@Ö|þó¾à ÒMÎðy.¥¹8nòľÿfo›µóg>¶‘ã'ýÑsÎOÿ·»·W“‰4Qa%k`’êKy;wGÕþ‰œ kƒ% ¾"#Wí¡!Œ¾+ê]J¾wqAM¬ ü”ζ·?nt®[Èrs°Ô\¸1õžèW»ÿ¥j§<)>/rÆš®Æ¾~õíO§ â‹ukÏ4zê–«+YÏôË‚už(æÏœu.´˪®iýG »?i¤fN^^Æ|3GèÑ£p8åGÔì£cÁÁ†KÊÞ˜œ‹YðÙSܪ<¸&fª2ϺÆ]EZ“FoBÊÎH¸qóÈÆŽžbcvwRFTåÄ&âÝÔ»6îtUûeì0"t¦Ò³ ÝóÒkqñÕ Qâ3j¬§Çz¿îºÝo‚ó…Îœ/äÍ#8ÿpoàR×2‹RwLͦ%x -«ƒY‘o¾žLȹÖUPs‹ze1FN$ ¡¢š›Ò…b +z\ÍEœ)UD¹ +B—D߇ï5ü4Âddø¼‚Ÿ“03_ ̦ e ו¯¢``nH܈ }ÿçÿ¼Î7¹×!~—ë©+5Ñó ·QáXéÿì—éWSgÇÿ¦žyQ­Rˆ€ .€¢VP‹ì$7Ë K(Ø:Ö­‡éT¬ŽUë‚ìT „BÒBB[TP6Y$’Ål7¹Éo~7aªÓ9=Çex1÷žÏá'Ͻ÷ɳ|ŸÏ4¨äHÉ”~JôÅm:D*øm}+0Ë4ÑâwÌýlž—i¦PÀã°Ù1l~]‚Óuò—/W¶™ÇÖW˜kìÑÏZh/íÇøœ¶X/þ³'ŠW›TÖuD ý¢¦ôo2õóM|æÀ<øL®Åêvù)^ÝÞs#I‚9â¢R¦xF¿câ—öø§&_^¼=štæ§Ô܇eUÃêþ)çµg/ ÿ+Ùv¯—·á‹õ|ÖóYÏgùxXÏßYÏO*5ìÍ“sHª~œÄôiòó⡽äàr÷¯È=Êÿ§…ŠDÉH$W…ªž ||ñ8º¸mû³C|éÌÞ"#Ú>Ú8zþ®¢vN™"V<̨¾X[1´¿B%Ô~ÆëèâŦ8r„#f(þKvz~©áTê£Ê´xpˆ¡“÷í—¨÷KúÑÏQÎñ±áâ*Ô{Ò¨byÂM¤¸g7ñ+ïåwG‘½»Šž`}<à_ûAÞ…ªÿ›ð‡ \C$VК jFÉO>âä÷¦IfYÏÿ];äù‘Dß>A +Ù§šåwy¨šºÍ³Eš˜rý'ùÝGKÔ)Yïr=Ÿ¢V h úØ’¡yëè*îa˜?>?åÃüÁ„BÏOÍ“åWšœ¦ý86>ß’Ë…;»'-óÇI)ªþ_¿—[°ð`ÓëEÕßèxºä†5—‹¢¦³¦Àá¤ÑÇÓÈúá݉ ;°û ±ü^û< Ï¿$³ª0%ŠÍYÚÎt‘Öj,¾“y±ÿµ‚•aÏâÄ ­Ý–lâaNÑϯ^ÒLŸÚ`Íš@^Í|‚U€WJ: +»²+´oÞ„$Æç{Äï›÷C½Üš^±¾ç¬qú P&x=Î-cé 3…m'¹Íú9Ò¡ñ +šÓ j3l÷zÙÙy¾XÏga=Ÿõ|–‡õüõüDÁä€P'’Å’ò}¤E÷CÐa¡aًء7'Š=¼±Àù‚†ýüûU=KhãË~PMÃQnûçbUd±úÇN%¶ÍKÁä„=®°6¥üqRiÚnÔ~Դ±\Y5?i%¬à€ä§nÕäl„$¿eÌ–Çm“\PM¯‚Ö 'rkïÖ/sj˜õpöœ4…¯OÈé?&GÇ ¢s¸Õ“àµAÐ=f…„¬ÆL±öÛ›+àÝÿ¦l8¢ï_¾Gœ¸qg<™hßž~±Áé+€#ªôâë³ïÀF±GUKðuÝìé²Ç3“:Hë0'›ÖŽ¾\^¸×ìHÏn½V=ºlaN+¯7 ™l˸¤´ûëùÿ°žÏz>ËÇÃz>ëù¬ç³ž¿ÝžÅŒ&†RI™jÆáõÏ£ê;”¦)?ãù«ë´°TŠž¡y +=QÏ@ +¯#ªäWä–´Û†ëÖ<é8YÙ•(jŠÈ¿1L0MÌÌ=ÝžAh¿ u]£‹Ì!PÚdH½ôpÆ+>ß@²à‡³ÙõÅåŠÔ¬ò䌫9â_4­¢äÓ”o°×^PØŸ.6áéÎË&ÖÏ÷STJ©,M"w¾} ‹…— gÚ~ÆóiëW-Ú}ÄwV?—Cã“\²%…ìLK{ôs¤/üþËÚcäÕg6›m÷z%÷åGD- Ù÷k;_mØí<ÒIH6ž"ð!›v÷Ë…5”ücYÍi™wLO×Ñó‘oc ê°²Íí6lÂߥ«ûó;ÓJ²y2òOæý` ç°®ü2—S•—{#7ëÎv¯—·á‹õ|ÖóYÏgùxXÏßaÏ'ÔH<_O„Ü›òa¾q‹osø†xž!žBâxã "Ù{Â%TÚãø&§5ÆñLïa\z(”™špMƺù†-#'$Û`@Â-‰'tHØ“ÿÃüîv#F1öù-«•„Ù:;„øwÉöö?ëù¶çã|Vî–È}Bf$sx±9V0ÆÉîVš™wââ«o›8STsœ¨?š×ršèç¤7$–w]Q,¬aÉИáD¾"†4D‹ô?v*™`¢atÒ{"_~èLÇÝÖw›ÁPlù¬¨ö.·ÙJûaŽ¦Øþ-î{ïæç´¾vîæ]?”Õw SqX8’ÄÓ'‹W»gì`GzÇ 1¯ñ“ÜG T‘â{ZlVЮ¥ôÒùØóÆÞÁçNfà¡U>Lˆo¯[À뇷6Oje×5©³ÐXóòæÖÖCgõÀ‚j»l§ +랯2*ê¡ ©¨3&«ù0·éfÓT¸ÿUxŠ)¸u£Qí`FÀî[øEà¹Çï¦i·¾ë¦– ÊGÀÜŠÞ5›C31uw/>§á(Ñ%{ +kXµl}«Ð=;WZ»Ýëegçmøb=Ÿ…õ|ÖóY>ÖóYÏg=ŸõüíöüÈ¢aTýÄÂ>ísÜ}ýø‚º–±“9wÓ¸u‡sš2ø*TýäÊô|ìvD5N§çõ¢äG tÕL.Ð8æJËîúR¤­yBÍÿ‹ý:j"M8þíÖV¹‹¢RÜ"â5ਠ+Œ +È‘(หŽN1î8ƒ"Âèx èˆƒ0"Â%WB9"‡`H9:Ï>Ýí(³[[ÕS%•©ÉóÖ—_HWÒyûÍÛŸ6™Á +vˬËe0 ò1“iÏÿü¥ñ+?.¸—À¾h¿=¾õ]Rî`¬´7$éév<ŸLe~Uï|ÍK8ýKÈ ePN½¯¤¨ 8ç»ÞF¤ „%÷ýó› ++®†š´~õÍOKÜØÙ=àŸRq¡ÞŒ7Z'Ì/;Ç‘úofÊé´1ŒÅF7ä}û ?<ÃS¶¥>ú>ü¶ÕÇeÔÿšŠMŽwO¶®-Ò&6™ŠK‰…Èë¹”“©¸šVÕü_ÉÚ‚¤þr¾6œvü U¯²3ïŸÁ¶ÖóOÎÿÄÎOÓb¾ÙMX€œ½Gˆë±Í¢öP…6,µ©y,+ì¶R~¢¾hÚ|¢cLÒ*XŸ|÷˺!'0n`úÛAÿËn‘fGêÓ’ðÜlèØ^Gpž*àxCÈÉŠa)õñá¤ê„˜Šä£×²r Ó³/ø»žSŸüp_BÙEQ柛CÀ¾gð‘âH‘:üh½âã­â'‰ÿV¬°{8¶Ö¿Ï®[~ó)r>9Ÿ9ŸœOÎ'篵óùòîÀ£õ Z;î)6sý&D'·úf·úd¶¥i÷äOø$UžV£óLóº'ÔGJÚ>8O­»ÏxBù·”»›Åý6›ËX£ +bŽTïUŸ«Ð?}é~>;sn9Ÿ9ß³Îß `Û”¥öËTd4³T®“¾!Ì´Åë—цÈÕlœHñøÿ÷*wdÐûš1þUÿLÕ‡øÿð¯òGúe6q5û!³åmèðY$ýî®\¸Íþz>rͪÚØdí\«bß'LªÄB¤œóe]löiB®äTüýß'[ëù'çZçGˆÔ˜o¶ ölõD¤k°M’f?™zg΃†‘Y3 Záå,XfÀaqZðí ƒÝyßåUÕ̃5tCTJ»_VßzIç…š›f`Ⱥ‘Ír}`öH@öãüʇ ;X€Wjà ˜ ðYVXZ{A©v‰»løMmËæ%Ë<Vßo9 i‰:Ö8¿È`V7bfb…»c~˜œà¶„|yóï95>'[>»:f]Y÷ +NžÖ-øHÔ>Š +¿ã·.¾¶Îà”áߌa\Üžéý$¤*îL)›y?ÁáiÍ8'»e•Ó.°8`ñ‘¶&WÇWž-ÓOYØå…çöz ø«€»°nÆ¢˜K.î^θœìÞ»ì`Ó¾‚ؤÊs—[çŸ@ðÝ–\n3{£wÀ›1r>9ß+"ç“ó)á‘óÉùä|rþZ;?8»cCº*<£²fh‘¿Äè`3â`¶¸G§`{Î…Œ÷fìËèüÚç®Ä–òîui­ç*7¹]‹.—¦÷Åz‘©ï¯¨Ù–YVpîâø«×6»}!ò‡T/†ÿ:0ñi¤B}ì‡ïËÊÆÞNÏ[ðJ:Nkïè¨ø«Ê‡k‘úE%·æÌ.üºÆååøWâRªŸ›™eg ·bãɆ¿d5üU¡|óÖ`_Ydìì*ˆ+®Cçoʽ…Î?ÿâé’‘‘V›mÌì†9c]²öuksΔÇ$•Ä¥ë^-9Ün,,åÉ.YÛž¬fqADz,w:¬ûÍ‘ÒG;“ʾ-»«éïy÷ÎÄ]ýø¸nt4íTáfñÔ&Q¿F£¶Z—æç̸÷ÎMÝ}ÏcÏ:v/.½´®£Ã`w‚VŒÆÉA>ý虵þ½xvÝòƒœO‘óÉù”ðÈùžu>åÙÈùŸÖùÔŸ;Ï®[~ó)r>9Ÿ9ŸœïÍ‘óÉù”ð<»nùAΧÈùä|Jxä|r¾7GÎ'çSÂóìºå9Ÿ"ç“ó)á‘óÉùÞ9ŸœO ϳë–ä|ŠœOΧ„GÎ'ç{sä|r>%<Ï®[~ó)r>9Ÿ9ŸœïÍ‘óÉù”ð<»nùAΧÈùä|Jxä|r¾7GÎ'çSÂóìºå9Ÿ"ç“ó)á‘óÉùÞ9ŸœO ϳë–ä|ŠœOΧ„GÎ'ç{sä|r>%<Ï®[~ó)r>9Ÿ9ŸœïÍ‘óÉù”ð<»nùAΧÈùä|Jxä|r¾7GÎ'çSÂóìºå9Ÿ"ç“ó)á‘óÉùÞ9ŸœO ϳë–ä|ŠœOΧ„GÎ'ç{sä|r>%<Ï®[~ó)r>9Ÿ9ŸœïÍ‘óÉù”ð<»nùAΧÈùä|Jxä|r¾7GÎ'çSÂóìºå9Ÿ"ç“ó)á‘óÉùÞ9ŸœO Ïcë–×·zÝܲµs+6!åüañ¥ƒiE{“/ÇJËɯïGK®•ÿ®öJ׶ß{>´óÿ£-½ÄU„×:ZR+*_K¿z(¥0>¹@ž}yÖn~Í8ÿÎÿÍ`VnÙàüùeÿã¸QÆñÿ’ªœ8©¿z· !$Pù!T$DÄ_€ ºÛÚÞÝn’}IbÇq'~'¶g<žž±sÝ;”E³ö.£¼¶ãµ¿ãy^¾.ë$ÿá~ +¾NŽï>Cöþ’¼sOÕzTëWÍûßû°}Ÿ—ÂÕ“,ËOÞ6uGZL\R¶Ýÿ“AùW2å³ûñÏ>þö¿|ïÞ¯ïÞÿÝ·îãÎ}Tà݃¥xçàRdõܹ÷g)Tëïï4Ëý{ÁÁGwÁ3üê½û¿¸÷£ßxkŽ/0/QýÙ Ÿ¼7¿_¼ÊbÚÔÙ½k‡y‘2‘æ"9üˆýäÃß¾ÿÁÏ¥ë¿â~¡º¶Þ ®½?þq/wþÔl¿yÿÁ7¾óØÞýþ_`§µÀ½Âç?ùÜýÇIþä¸|ø¼<ðǧüaèá —â“ZdõtM×x4(jð£~õ¨ÏŽNØQ¯zz\}yÁ?;Þ>ºóù¤ (G­Å­’±ÇçCVÐj— G‡Ÿ}:àrô%‘½¿$‡§r¨Ö£Z¿jþöéñl±Ü–e%ü/¡ Ê'NàVû|Š)Á|>¦üÑ3ãð_Þ³“ìqõTŒÃžªð°Ï¥øD1²z¤û…ú)tŠ‡ýf¹+AŸ<îû›g½ä¯OÆà"Àçc²+¨·Þ瓪€^AªŠÔ%àðéé³ÚÒõ_q¿P][oéG§üQOl‡'bûäœÿýE›[Ç*i€VÀ½]LÓiÀëŸD‚aÀõ„+*…«EVO×ôwqÌÇ«WD=âFÀÍ€Ï}þ|°„ð(Š&fÀÌàöWÅxÃçWU%Î1ñ]ƒê)[fpár¸¥²÷—ä\ÕzTëWM´å_¼o ˜_^T¹(¡‰Zz[}¾HyHüZLNµÈ^q3ä“PÔ +=ÚÕ¦†Lb*…3¥Èê1 úÉ Z×x}­År×VÁŒøh‘A¬‘p¼uP.òâÆÇÿŸ¿Ëñ²$éÏŸ6J€K×ÅýBu=l½A\wtÑ^Îb`oagèaØCàK=l1p÷úü“a »UãóõýêÜ£¤vH¤Gj‘ÕÓ5ý]cÑaøŠ@0¨îÑñ[;>÷ <²Œþ?ø|Œ1R +Ï>?Ïò‹3ÓH˜1—Cöþ’L$Q­Gµ~Õ¸qùù‹¤˜ÞužÔ¾d¬¼­>£MíÖ`šbʈ±/û¶¶È Ÿj¾¨ã`W7š¢EDŠqT)EVÕOÕú»Æëk-–;}9ö“¢Hqý1X–”’:ln|ü_åóÚ*gu^`JKÊ^ôüÉ,3dë¿â~¡º¶Þ ®»?^±.“vÌ5×# +‡ZX›‰¢°ü£ñõ[€ÕŽàÔ™nÙ>r×|óÅš[+f®ðbKœx-Å2Q‹¬ž®éïÖ:·l­‘•ˆÊ†y̧^D¨¯™˜A­k³!$n/nUŒKŸƒ×PQ5•œ”üìTŸz¾$$²÷—ÃðåP­Gµ~Õ Íèlè@2  +Ú?®(ªm¹­>²¾&/i“„‰÷Æ3'.ç žÇÔJó˜àL‚åëmªùJ¡Z×Ø­uhuïXÄèåh’QÑ$*NsœRº©=Ʀíè}ÛQ;yòŸ>_Š¯ø‰r†(/)?ŶÇåë¿Ú~¡º¶Þ ®½?^¹4úÒ5ýpD†ëôö"w¿Ï?>×'óµé†S>Ò]4rR#Úš YÕë"«§kú»†æÇš—jþZó¶#5Àêën>Y$_ †"\(®}þ¶æ6KŸOiN}åó‰nÏ‚P’HÙûËa†r¨Ö£Z¿jf^®OW)B®*Nò"¥ÂüÞ~ŸO$†¨}ÍZDH÷R(š'ÐÝ­Îx©|½Uë‹ä[@ …z_×-vk]#GÝ; w}fÚ˜ï|~QŠ€fAéºíè}Ûñß}~%:£ø.N6–Cåë¿Ú~¡¼¶Ý ®½?î_—yCvXáÊ^%Í!Xý¾n´¹MˆBæϯ8‚>žZK?ó"ì…cg…ì0v“Q)¼P-²zº¦¿k8ñX&é2ÎI¾ˆqC1MšQÕ>¿‰ƳöâVŸôùŒíüYED%Ljӊk#ÛtŠÍÔ•£uÁo©_5N\ ‚ñ¼„!¸Ìš>[}~Y&uâ#ÊËzžüùéÅÄ—1ªÉgµ¼Õð*…r¥Èê‘ïjõw±ÐÛfÅ—ñ%ç†‰àƒ°"àóÍë~jnö`"‘ß4ùµÏ/ $~I(j|>X¨Á0NÖ­Ìk®Ÿ­Oðšßéà½X™Øùt‰fn ‡s¿‚m´¹û}þpbÎÔv·Ö2µƒlîoM7«?÷° W-²zº¦¿kÌáÛ3ˆà;Ô +ÒY˜Î‚¬Áp×/Ά„±-Κ˜)ɺ½¸U1èkpŒ1¥´©äàöå£ kæ¢éÉѺà·Ô¯c¹yq2…ï^L9®PíäIYæ·Õçs¹ŸSV`’—Œ¥h†— +ØÖ¤ÀÜO€…KK±p‰RdõÈ÷ µú;‡Xè¤Yq+¸d M°p |~ÅKJÆé-öùuC,˪h|~A˜fnm¶^0¯¹~¶>Ák~?`ã÷Òø|c!>Àí·ïóë@e»&5âð|d-ÝÌèb‰»aéì„©ñùŠEXð-2<‡prêW°? ™¶DÍ5€ß5>U + ÆDn@£j2dx>›ød/s•üt–¾_ðá"¿°3+æó„AœÏ·£egt¯Ô\ gf+n¯9œ7#û𰅠άÍØA°ß\ÀÝ®z.\ ÿÏ‚Ûº™ØiwÕõZ ÇU÷ižƒ‡Â£›É‚˜«®`šÓöŒÞ L&g©Í ÷?ÁMàW8w†“ýi/^/ü +ÿ.«_5Ðú窛{%6¤±ú·×çSƪfZU Ô„E€mÕä@SC?L§L1NÓé;äv±¹°¹O÷bù\)W=T¼‘¹YFЬ,«¸>Ï›¦ànøÈΡMÀ48èÐw†ó DÓ8¼­8;ªõw G,ôæU×ø7ûåò#ÇU…ñÆãW‚#'›ìò'€X ±pˆD¤…Hðƒ&$!,/"±bÁ""‚„D)’%Ä /"Yò†=ÆöŒçÕÓï®÷»ª»º«_ÕÓ]üº®g<]5íÇS:*ݺuî=çܺõ}ßíìØZI¤?Åp¸ë'xü¯ûµŒ·‰b[ç“AúâôánÞPÌ¡·¥²'ÐL` P`íDÀ&Ç+DÚf4a wÐǨ,œç­ÞJvf£‡!PA%¢Ó#È…ùg‡Yà/*…v£‡2÷ ˜*¤.J`UP+*ŒƒáÉwé:–¡|ÖŠ9xpü8šj5w\±ù@|‚QÙ¢"Žî”üùnÜ×ù€Bˆ[©hÁ IuòÙ"ìy âåå¶â j„–ž¹4õI`(¤; Î%7‚©[ÅŒp³Ú[Éý~²Zmãt®T N14þÂûHç?Âëáu>Ø»T–pmjð\ôÎݪ·£iS‘?°»÷”|Šä±€tÐK‘p$/øÆ©ØÇ{é|f[“šâø°TÖÁ1:iÏZç‹„#¨Èœ4Hfóˆ8¤¼TìËÂ@@[,ë€CA‚ar»h¦¥€eL ÔyË@lîÂþHçïK磙W‹uîMUïÚÍD¶X´áaÓùXYi{í$@DÕšN˜,ç‹ä _ÀqyÙ"_ âõzXP=hÎá‘ ï öËF Òž»ð>Òù3½ö«óÁ=ˆ”“ƒþrÅñ„^Mõç •»(ŠÏ7UP.¥Ý’ÙEÀ éÎÛmœ‚óNšRa1­²Œ"®àqXàQæ¥óSšëRÔ&„7¹•­^–¿è¬«„àÇEuÂ+&I•ÿÄA½{œ„·V¯æ +ÚÝzâtþý½šìFï|A7Ìí&š1Ô‘»£{QÞ0ÔvÛê÷«¾OcC׋¶mròH§EôàP°¬²ëÖ™Z-0½Ó!.9ZåÀÛ° ¦ª²«Óy˜ÐŠãUMã1+.nÎÖVÞ²¥u»ÜÉ„Ç,ÿR°?Ëš‡Ú Ê#iLf\Ïc56L“6ë£÷z´¸iÛŒ¥@¹Ý¦“ÆŠªR5 ˆ“ã¦v: Ç­à8ûÍÖ&ÛÝÕ í Òù©¼™”5N«Eç }¢“·&æö1¡ô„öSZ-8T! îàê^¼„³µŒ¸%ÇA¸“꺦‘'FCj6>Ëoø£-¥ÝÎÍb!J’Zàoè÷uM-9¶Únáƽâ¹3Ïÿ™át [ñúê6q`kE?±á„/î«âÇüº÷C@çoXŠƒí ½ÔAø5CíÁyz ƒòJ§Í«»ªLƒ„›1èM¸ ðàµq§Ó ó¶YmZ¯Ã½è9< 'ðZbPÆ]EáN|^7 P—6>„g‡YøAd>ÉÐöAu‘ÕT™ø”ãŽFTD¥P ¼ ¨¦€˜‡Æ­j5kÞ‘±LE›äÀlÇ©V š%/àN»è’U7nUësÛ¸ûÔù p ¢äim¤!1“6 f˜ +f­KÑöB´¯* +F·‹ ¹>Õp&1rÇRÅÿN¹Ì+¤>E 2LJǹ ïGlG:ÿátþ²,A “9>`,@ +€ ’×[Mþíz•GÑ`8ðìƒáBð7“0g 8(EÜïÔë@Sí¡Ÿ `Š!K’„ÿâØt#'ò$Ò ™,ÀvÂ2ž‡'E ìÄ$"ãQø¼eZQ2Ó2ÿNuœð™»°?ÒùûÒù)”Á}MUVP¬†52!hN:_鑧;B+ÐY0;ñ+X&2©¼W|¿ê{f¯Ë=êàv¥¬w"Îhþ¹ ï#?Ók¿:´_ÕUÔ»ú<ò4PõBä‡Ä+ˆ€Æº©7’„6 Ü–ä:>‚#à ¢SL$Zq û ¢AQ¤¬PÂiRB'¯æ¤óaFäºÈŠL@þ5]‡²üIUP† 5Ô(Ä?£Pø´á è’6G†=â&d‰p¾]«‘À§ów‘ÑxBF#¡ó×Jšj ?‘­¡ê´ –ÝŽD%Ã<Ïë÷‹º^ ãXCÑ0Ûí¼¢øƒÑjÝÜبڶ7ÑÉÁL-·°°xù²$@\Ò#•#jgšiüh0×uº]œIXFÏGÑÞ~;wú49ãÃ[f£ÌÚää2Ûü› U/y»­?1¿«ùÑJ©§Ûcôø#ö´ëóu~]1ÍÜÁ lÛU×]ç¼éûªº&Ë:6 +¦VvL«¹qOnú×¢sÓPõ(üþ‹¹ ¼¥ç?›ëΠ[²,8\•$»×ûæ+¯°'Õ0d¬¸ßz+÷ôÓ›º.ÑMÍ÷ üþˆ“}YÖ<„ áJh ’ÙÃßé÷qþÞââ±gž©8~ãå—ùi[Ý.Sq_®VYF¡hš”¿pîœÜhà@,Þ>Dþ³¶'NçOJK«Op!·RR5o xý]Ö™˜bìÞ¼¦ñÝùÜ^ó)ù²l˜,ËÔÿd™q‘é_Æ6c²ëþ~ý:›3·p 3ZͲ©K4×_—jzØÐPe†¶©Ê¼j'£ï\ünf;óñEµô[÷ÿßVÊú=¿µ-„ïÿ ñõ:?¾§óó†bõ'n5ß)Z:DæÛý=àÿº*ÁQ’T=Ž‡îRµ„³¿5 Ÿ6Á(^®•Ínî¸ø³7r_9C§Ôðð§“!LlòC}ëµ×¾tö,?Xo·éa3ƒ¢Ð;™_þŸ\¾Ì~ž5fá?Y-U*â„)Nž¼ðúëôQ”åÏ/ùÝK—àˆÏó¯¾J[üªà =@ +õ)‚j÷˜Gð2±XVãÛ.äÎœ98~ô§Z݇Ž=î´+Ž+7š4–*Õ9oÜÖùézõäsÏýõÚ5„±Ðù4~óÁ'ž}öoŸ~Š–î$ ÷Še=ÿãwÞ!FDΨ}ÚY:¿lšÜÝ^„‘÷åPÔO¯\a*éÇèä°`£šæ-¼tþ#¼^ç¿ÿÑGhòÞ¸N@Û€'`Ú¯Þ{/wêË¿ÿäcðˆÆôïüçÜñcÿºùÙŠT½ôËŸÓV[ Ð[¨}@ = vÔ_{ñÅÜñãh~fËŠ+Ð[ˆaÆ‚ŠJ³I³Öù„ áJh ’Éòg5Dz?|óMt>Ãý¯ž?üÔ)Æà?NíLÅÌ8ý¥—(Ÿs"БÎ?×þtþo?üðÜ /üåÚ56 <Ë®æ;r’=l:_»”;Ú‰Ýxæù篼û®Ûð1„=z¾îB-¡ðé)ê*yEªÚæâå_œ|êtͱæ.¼tþL¯ýê|D;ª¡ntZrÓ_•k¼úIîÄÂ?n\o' ¼p+ŸGüÿú¿Ë}ŠW8 õ9 üý*â:ã³k›õÚàpH&4‚¢Š¶‘H¤UUU´" J€bŒO.!Q ¡UÓª"iÓ”$j¸ƒ¡7G1%üÑ”’`îÛ›]ïÎÎε3;;3{ßëéovlB%–”6®!°úôôÞ7ß{ï{³ßûý~ƒOƒ5[7>þr°¹vU._ +¦À +˜¦€ÂY€8 I?ññÇ¿¸Y†Èº- õ ðÄ°|É’>Ôù†Ò¶# ú¼¥KÁq„\ñ¸€ˆAÂàD>2e +ú8)‚EàQ3<‚ п9ï`" ü™2m–ºKu~w¡Æa)-ºjí¤hoŒS2”§”„[M’rRÃWíª×§moøˆ †8tšåS0^ÈH²¶nÃûpüø IE\î(EÇמxz"}Í8æ‚nÐiüàK'¼ò‡úÖ gÇS0f®u0±¸9€j Jýêø1sCcüïi´èS\ŠóbÇLk‡Ü×…ûŸê|¨b^H­ßøÙ\Ú|à$5´1ô3ÃŶÖï‡sóqÈ{èüHL×Þ½­K±cyÅ +¤YîS´ìwG2—ȇ!Û`XÛ·¿%´óχ8Oˆ¤üPû5ó N‡\nÞøpðˆ}/¼ïéüÿãï¿×ù€ŽÒÒñÃFNŽR&: ™J‹ŠF• çæ#YLŽ½ž0uÒäéÀ+xÊ«WZ,÷ƒœ´'`†l¤µEH&|<¬¨]…º|¡ï¤9LÄô\Á_¡Î‡ybSô‘Ò@27 n»*BÏW-Ð/šž t¸C`"¼:Š‹45#ò†¯ß²˜ ÂÂÊv—Ç>câ¥v¯®üûZØßÓù·¤ó×mÝ[X8:ßÉúE¿9-õ?ñvÓùœO£<2¾DÔ¨f£‚MŽ—”ŒY¿­É áÓ©‹R Ç4»“ùèÐIÂ4tó¶&Ö£nsÊŸAð÷¹ð¾§ó{õw«:˜Ï@œd±àÏŠ»+8vì䣿 't;‡ÚóÆ òA#|Ô  |Q‡šø½Ç~–ÕÆ™ŠÚ—“ÅùdçA©ìw„fw)€ÇË6‘Øå²MBðÐ +Áo([Àïܪ•ùùÃûJç#1 :#$Ò˜Sñ#™X®x'-ΫÁ‘‡L§»êTY1‰¹¬˜úðÐ)øëwÀyqv¼øoÂ;‚ÜÕáð‚D‚1ýû«Yî>ŸÉZu­t»b'91È«Q·fä«Ä]RÌ-'Dœñÿ´©0Y÷|}xmq²> Y)tâ|;ÂË}Fûæúz˜À+/¿²†èWräÄo HžÎ©ZL‹o(Iz”•¿~Õ\<øèÙ6·7 ÆµÊC‰~N‰0¾ÐƆFÂl%¬Ñžjµæ‚Ú¥Ë=J˜ä$Æë?râѯ?a²;®Ý²ÛÅû5Áù¢F–‚iÊ£Nýñt³uP0í7Ç~Y•U×!^Ï~“k·ì¹Ä`ÂF‹Øýt›]ß×RBô0bÌxZ +"¤‡”ìŒ×I;yCÚ½Ã-’5½OÉ_œx‡­6W*[!:Ç _®óR4kaÃ(/,D‹!ÊXýú:‚°=qQ ¦ìNþ“O>Ãð7¯½…²ùüL+ +åñé±³Öïùëe'+…S3+yEmÆ2p¸^]fëêQðxŠºªª{— â¢ßܸ])¼í¦=åà|¬ž»`‘WÀ)!ÂÒŸ0[kɆ»]‚ŒY¨OÒ㧑¤ˆ­C°²Úe÷?8îB»#{A,ùŃþøö&'ë]øì +"ÏŠ‹3³¼Co vî²ÝJ´œ¹Ôs›,D~Ñ[¶á)+pÝÐnÙÙ¨û³gÛlhkêžãÕ°öxü‘ŸW/$úë)å[çί렸pFsòÒœšEDA‘M!Lï›,¸¹?úéSÝ»#“a£‚³vÉóðˆþ¨[PÐ~vò«7¡8L8lÌäV.Ý`~RJVQ¥‘°Ö/ÒÅÈ#¡ýª þâ<ÒOqü$—” ôi±ñ׸Œ:q6=W!×V Y¢<}ÎE²(ÿÊÕ_-ØíØ¢Ó—‘ŸØ-ÁçÓž=OKåoÙº ±‹½|?Ü\¸v‡z$h_hZŽ¬Pa<|œs»Î† +#Jú±iÿ¾­Îç¿ÝçcòóTåéùZ©¶*K¦Ï),ÂÕœ½œHÿ~\¢Ò¦æämÚ±³íg]nÞ´´²Ú´}7è#£Li_ÏJ°ýÿN°×èNË–¨5ÅKV®mØÄé—s9ÀsªÛk{ì1èÞ{à0ÃbNÆrŸãƒ£>È$³æ{›[PŸZ?I•T¯XïG?þúl0 E,èà²)æßsñ +“¶´Ó•sÀ½}|¶™¥Í†íYÊóñW°ôôy¤¯4Æ&$Z6v\滤§åHv7mÙ«O0É"±i!6û†sœoܹo²èõNüΣT¨+]à³ÊwýV©B'•©ÏÄ^âéæœô7ù|´ þÂUGg¿]AÌO‹K¸É0ôˆ5âóÙ¡£Æwú¼÷³W™ìÀ›|¾p‰‹óYþ÷t±\¥)™ëí{úâõ:Ÿ/ø|<¼¶´6â—X“+nи¾uSÌ<8Æs|~z®¸¹tí5rü·0\¡¯ã”}hö© ˜¶<:j¢ÒP‰?_¹ÎÀ6oý·?þ™LEI²™™“QB™‰‹æ‹$¥fUÛ|öÅ„i³Ãaá“¡é|brf’Í[»ô:²¤ÚHš’¨Þ±[ß®=gæ«¡465_aªJˆO´Ñg/qIËW&M›@$þö˜ÒüÖnÙIÔCÇLê5x8/%$ŠŽ¿?&UÂŽÇp@ˆx¨G8)ô?:xß»ÕùüÿÖçÿçP›,´LW‘–)kâØj†ÇL¾¾¸¦Wß¡s¼|8A.Ý{ãKIWšûü¥øR²…D‚¨ |H¤{O“±åЕDârõæB†3˜Kü*#;÷0vªG€a)ÙRÒ’†¡âæiÛÌ9ñÞ#›ž'“ëK…Þâó$%ëËk³¥ÊØË7¸\¶f#Ê0¡hÛNÝ{&Ê“ƒSP9pØh¥&÷ûrDc§O=¥)©rjÕaøØÉ •Gº²š£'N3d~™)&’<¥ŽPqõ„$Vh[wê6dÔ¸L©B¦+qŸ¿ÉÆLŸc"ùŸiÙJCyâoéS\¨‹+y#¿Ófyq‡sÍeŸÁ_}Þgǜ峴‡¦±ÌÑ'Ù:¡Ç¢©†põÿŒçýù¼Å{§f6˜K Œ¬ .}¤Öד§ñÝidÎ Út¶†p“µ£,P/þß}>¨eûþÜÔᓨSñ\ª4¥9RuŽDõ¨3°1.á6ÖýÞ“— lÝÖ] ¦´”LI@ð!8Ÿ,Êå)xÄàŸ%‘>îÜ¥D`úpÑ'Î]bÿ%;‡÷úíÞO2-S\cllßbÅz?MY-þÅ~¹EuÝq|åµ «¨$VtÐú¨ M£Mg2±Å˜ÔÔÆZª& ˆ/¢À ¢‚ŠHT4Äw¢Qk¯šú–X *¢"òØeYöɲìƒÃö³ÞL¦ÿ£3NgØ9³sî9çžsß÷û9›¡8ÃéE ï3—nÎÿ9œNLB§†¯UÕ:‹Hä}ðÐ T4&>Ñ]æ«£3ýGÄ,ò‰.#c—¹¸IîW«,í̃FŒf$O}Þ¢åøÊ*h²\kr4a;&>®Pj ¶6¤ Ÿ>7¶+Î'_0‘ÕuDq^Q )³kß!dÖh{„ö£±}‡"˜À¼à#H+>‚º"È©›²hD„1*)2ˆà&Üâáé;kþÂÆ–Œ;¨ª×òPTØÿ»·övµÉÛ‹=¤Ø[<#ÂÝÃõ9t¸‰%l†ÉY„›íãÛ›™iq÷éµvãV*:K› ˼¥‰k¨7zVÎ2‘KA02´Ë™­ÝœÿœOÇùi™;1…^ú7 Æÿódd6çÀQ_ ê†ó1¼$æÊ·NHYÀ'„]<(Ÿ:#RÖÆ©P(‰à9(xôœ˜eˆ6.ÃäIk7¡áLÎÁ£¡eMz–ÁÒá£ó6]P(íñ‰k‹” 'hÑòUØÓÂ{rµö›üb|ºÿˆÖÔ†w(4fÔÎXk`ç<Ž›Ø'k×~|‡lb“Nqñäʳ—–ZÚý³+fæ|ÁT«Ó¶².«°{Æ=Ù•ó¼xÁ¦ÒÍù?ÍùUj „_­±òG•+T8©©õ½Ys‡ÿºLNØÚDžÞÙ{÷kLæ¸å+yô)0$˜ "Àux5vYÄ6XÛh¡=pà0ÎÂ1óýð¹ô½·J*¨dfïf†Æf2ËÌ-EígOŒ_  =ûàFûcœÊcœ «5U¡aˆ*-ˆyy­êòÍ\&çó#zk+’®44…üé/†¨Téà|º2²?»1šl¬¥ÒëW­ÛDçæÝbK,J:³ҙͰ[Z,Y“ó,øæÂöxj27᯴tÅùÜ~ìÔ×¾²>Ûrö3“ИœºQäé‹t0þÃǹ‹¥…ÄìŠói,«©ygB¨ÈÝçàßOó0Ž‡uúnÎ8_¡1!tÙ{¡Þg/^Gº+$ZonÛ¹÷0‚B£lyE¥Ô·åd0·0}C6iü×Õo‘Ás—oˆ“sï™­µx¨Ûºó€H,»ž_b´vÖ¨šÔ ­X [åX¤oÙ±§à¼6›Û1ÌB° ‰ß/¢­É®Þ%Db©‹ÄÏUÚ‹=8‹»ÜU\.gBvðO‚¼pá}æÒÍùOÇùµ¢®Ñ40DÑ¥kù'N_„ó o—!/§.ä0'Ï_Ëý®˜Ê™K× *bz‡ói!rP‚ñá 0s~½ˆÒ´ˆhzAV"ØÛô$ôÄZ;3“›>™E~ëÌ!-ž=_ŽZ²R¡c‰Ö8_g#‹)a‘qä l†þ#‰€“‹—,k×^S ëñûÂ;ÐI™ÔÍH.‘hþé&éIWþíû"Ÿ˜¥+íhò²jÄaŸ8%Œ³. ×G½1VäæÅÞ$½ûòÿÚÞjh~„/L™)ò–a:KË‘N:³ëÓç¯Rß²ã3.Ñg“½¢sõîÁä,G…^g²ÏSF&.NHAîU*ǽ;YhǶPTKxÔ»9ÿyÿžŽó¿¢ÁS¿>vüààWÆÁÁy^è‚óûr5>ÔÇ;ÄÒIÓfaÁÝœÿ¿œNÿ¨ÞH7²*~ì4róÿïŠËÜ=d©›¶!t,Y¦%¤¤1àn¹¢R©cLÀ  5éY wÈøIårÍùky}¥·>zãíwW¤l A}ó#.‚p +îUðE’Öm¦ ¢¶=vðáÜÄ’y —íÀ€_¯~¬HØ>ÙOšœœºEä"-(®”×›)È5VB¾f'ˆyƒµ•ý#×Ñ‹Wzxöà0ÂNÐjÔ{ÐðW§ÍŠ")òÜ$É«ÓˆV4möÖNµÁÂÆZpñC/å… ï3—nÎÿ9œT—)tÄ6aŸ¼><26(h´Be$žáyW±4„ñLÌØ;ïÍšïâ&ùÚù÷ë7!¢NðO Ÿç%ñC¦œèê½yÇn¹T)6¡>ñ‡ÞÒž@þ݇r’‚ÉûÉ¡+Î÷ô’•”`¨.àSefïF›ÛÑÌQ¯‡¼4`0n]£±‹–'Ñ…× Ý˜ÈÒ„i,~Puõf!•u›?¹[^‰´B¹(*-ÎLTÔ&Ûˇ zEo´44Z±‰7Çó&íðØœh‘—/~ƒ„G-tqõBðñ£/Oœe†=_c!öFFÏŽŠ¹K©Ü.­ä±bå*[s»Vo¶ØÚ+^Ñr¾Þ›Ñd_Ÿ–É[â% ÉÈ1ïæüçý{:ΕQÚc§ÎCÚ 88Æêô–¤äu´'®Ùc£À +¶‚‰ 0„ÁšôLB” ¢IkÓˆRZ‰wO™æÃ-Âñ“Ù^0’Çhà|oI¯ä”4­Þbié”+´F[‡¾Ñnkw`7økaCŒ,º_Åêóã–ãM\âb”V³Š7ÎEÈqù€üÍ-•Þ®nh}¨TH¬š*`ä¾Ã'85p;ç‚é‘Ñì *y¨äIyÌ€_Ϙ‹]Þ­`pêº Ûllj54Øx¼ n|Ñjÿ¬¥›óšó«uÍp>àTQo®ÑZ@}Á/nÝG¬ÖnÎzö¼à‘¿©¬S+õÆÚÿ²_žQQ_iš”¡PÄP±D£ëZ"¨G ‚Q,XPŠ°fÕ`6Á£&«««£F£bÔ`C»¨1šdèL¦00€€³Ïðÿ’ködÍ9~aÎ=ÿsû}ï{Ÿ÷÷jtÜ¢9± Ÿ®Û¨%åJè*Hý…KV8:¹CãÇ’2ô-5]ú¢„yTF-XÄ@*ï>̳µ§¥gðj(æ—Ș@€Ib“èƒjB>ikŸI| ^ Í?ÂqPB‚˜Áõ`ÅB™ZSóìƽˆùŒÌK‹*óæ‘Áú‘_&¿|ûž‹›WâŠÕtõ<[V\ù7^·}öÝ×ïÜwpt[‘’Š1¼VT=_š0Xˆü{÷ï=`h…T©Mæ àÀñ¡lêe:Ÿ.\½EýÞCÇ8¼»aï…„çKiú$õ ,ú2×À5³w‹çUÖnØlëâ•œ²¶]ç :_®¯×־ز3MdërþêMÍs´•*cãú-;<ß?–BÑ©¶®Õ‚ÓÔÌY¸Œû—ÑÔ6Iõ¦¬[÷D6Ž»ÅlŠÐ{xÐ7_}C ÷òë8q2x'σÅ; }oûÂöNçÈõµ¼—sWnY‹ß€í8Ž÷Áb 6E‘±8 A!Bè1cþGL†d1ÞƉ ¯þÎÃ|êw<Æáà;ØuNaÅ[wºùø%}’jãìyë~®ÐÓ2ÉÝæ27ÊÆqŽl õøYöXÕh~(‘z½Õ‡Û®ó ÀÔ?¾Þ'vóI;z†"Ltïδ£`Fæ5Ø ]¿Þ—N,°cÿ‘"™ŒŸÿý_´ÊÈd öf^ûIdãü—1Á)0gžÀ±“@¢g—Šà”yÀ/<„ðn'§¬#` ø™~:ËÊÉ“0sv\/‚›Hh»'˜œ~öå6‘•óù+?Áj]m+‘i뱶3³“³wÄÜ…d 3ÖF'®°¶uÁ†J“Å/üú ŠŒYľèÃœÏ6fàD(>xZÎTì…ˆs1#_;x_9µëüÿGçsaÐ*¼—䔵¶bO‘•ãÙ‹ÙeJC‘Â`h0oØúÈñ +±Wê¦íÈoú«kžÊõóWp‘ŠjŽW G—*á­¶®eÊœ´RÉ$n¾µøDæ5Vá‘1[wdÔÜøÅöN®ü’J5Uý߶ðê%:ßÊV I0ðú݇öŽî›wí>#AWÛã!8ò‡2Îñšö:EaéÊÏ¿ ˜yíGˆÍØ”u›ÀuÚÑÓOg]§ÉÉÙ3bnœª¦p +Áa%jC…®f^bE¤>!Å©Qqq +„$Ó£-$çåâp +ä§E-À6ŒÁ}8+ÚÎÞ˜óº÷9%„$œ‰XÉÖµÓ™ËÙ§²²ßŸ8'Eeú9áåŸn(UWs朕í:ÿÏþý1/x°6σFÕÖ¾€·G~ 0ƒh[¬¨„ç°Øò_ïK?É ̹ “S>C –ªPãu³ã ÞŸÂ=¿®ü.[ ØÑùûÒO3í®ǘŠ'ÉZ¨)>-+£HF¾úö0敪ÔT®JÝHσ'ΣŽ0ïðÉ 6v®ÌSª¬®m6óÕT7óEðÓ™µèŸœ"¤XÒ“Ú«ŒìEÏŽ8¯®½ÐöØ€ûؾÇ$Þs(C"åɶâ›p|Ù?ÿJþuÓþUS»Îÿ}/«z^ 7¢÷Pz?ˆ,H7Ö'­Y‹v9¸?—%××hŒõjöÝDö®\øîÚ`Î-–ñ–ðÖÑt'ÁgÂÞ‚ ƒAå#I9õ©·1ÃÙË7K”jD>!„çáÄ,ZncçŒëÁ/þÅÛ¯¢WUÝ„Im_D¦ƒœø—ióâ¹ÿx(Ž[¹“óÔÎÁuó®}8Aê¤ô0´@¦øè‘x랤­±x +' È/S²®ÅkÇŒÌ+O%yÒ¼øeÄ,l|È”H¢Zã–|L18tª íÿ«Îç(زµ­82&w'D„ ·}b™ÙVèÔ¿oý…åþ‡ýz µ´*ã.¥Sš2ƒŠTÚȨ@ÂübRAdbAŠi¨¤¥FYfH BDE_Bˆ $Š¨BÈ„´LSlÔ¹9ûÜöÙ÷ûÞgß÷¹Ÿ³û½ûu*’œ„³Y¼¬ý¼ÏZëYëý?ÿç¿ +ŒðÖSx<•€SN¼'Üvtþ+éüLc9iÿ–ÔØ{à|€‡Ž}øñ§èØÓvMHºþ±&`©ã/£™Z¬Üxû×¥Œœ‚7b_tñ¥ Xlšís7Ý~ÚöH ¤dÈ^÷Ö³éò«>ˆØZïšn>cÏðoi ež=o}7ÜJX +¡ÜÉÔú‹ÕAgÍrõ›ïü6cå¯ %é‚Ûëh›å#W~êÂ÷\ó0þôW]ñôsÎ<ï¢'öM¥ruArÕ÷ì^òv×nÁœÿö÷^ë]¡Ãy’ÜêM_¾ûº[î4³´’þ_üÊ7\yø˜$ÙàéçXÈéIÞû‡dÈë϶;–«¯»Ù[9?üØÓGS{’†O½BÝ‚ùÚ}ß5$!„s.¸û;ß3›Ó‹ùìŽÎ?Ù¿W§óxð7ndJ* ûú÷’Ó»v'ßk×ný¸‘ùŽ°¡jD5Ñ1*P§ør~úÀ¬WýÍ1ÿÀ T€¨9µw¼ï²k¿ð%3À$Øüî‘¿ÅÉœ=s€$¬®N™fX,ôƒ~~Öùo{™Òç‹`ÃÁÌ¿Çö¯{Ó/ú“’qL{y?þÙ¯c•+>qM¹»|ÃmwÉz9h!3›äâ^N,é Ér~ü™Äÿ¬ó ÔÞ}ò9Ÿ ÿ”þ µÿÊ:‘°±ËpûÇGÿÊT»î¹ô*U|´Rœyî#{i£¾¨ ŠÂ»ßœ”˜ÆàXž‡jÈÿÌõ·Åüž›ÎÜG#I± ª?yí Qq QFçÍä‚9ÂØ·~õ^$)ãL‚Ûe™Àô?{ãmÆê¨S– ÜÞxî…TŸá’ˆåÒË?öÎ÷(fÖŽR÷$gÿ—§÷KjodªBúÖý? b÷„ùw}àêÀt¶f]4É-{$Â/»âãV±GåKlY‚£±Å-))L“QW]ýyÁXBT—|ôJ>?úÉ/¢x™œsø{Ú¯Œ{a&gËzël¿¹÷ûØÉß]{Þr×½÷ËÓ:B•u‡ŸÍ7¯“aqªé\ÑÇ Êu˜íÁf«½RoÁoeœ\5à?ËÕn¦ÒáÆbHrÓÌÕ {°w !Ýð»k$tcLðëtûƒÑöYƒ¶(œRgÔ^Ï•"àÔl~´2^ßÏdj“Wr ‹š|=[ ÏÒÁ½Ùj·?Ür mÏ{bÐtÄ™È-uaCH¦36Òn5Z£t¹o “h{ŸµæÖ9øz÷Úl;:ÿxt¾@Ë •V¶Ñ­5{…Z{¸5Î7í-Y j©³ª%¯%F$cˆÎb¾×Þ$}*Æ )F`žš/!;®CÈÓóÅåÕqg’qdK¾Õ×f +5÷\N,Í¡Ùr ¥Å jýÍT®5[¨Õã}Gr•ÉíÀZ{uœž¬®ýs*ñáátY>â|ñ$šy’¼¥ZïÙà V V7% Ú^Igª5>ƒM)…&n"©ªP…&cdœÙÄfÔÁ¹‚ŽÝ%7ŽÒ’ålü­ –B“sÈ-oX 4·ÍDK ¤²ÝõD&¡»(V:R^H–îm$vÇk63ìèü“ý{u:ßWxòùiO_Ù§OØ•PQ¯‹-ßÔ÷JWÚÉul‚InŒ¾)(JÈßÔ\!øy®XÑñ}SóEðÜJ:ÃÉQô-¡â”*•íñÜB hA+Ò +®¢ÐðL(¶[@{¥7Ø„˜`΃­ñb¶&ªÿ¥óyZe¸œ(±ÂÒ@vú«ž"1Ê*Ê +ˆúkõ(yÕIxVœÏÕí´Ô^æpªÙþDÛŽÎ?>€Z(-ßh;¡ÄöÊv®ÞÅ„p’ŸèçB«öP +ºùÉ`ƒÞcy>bq#PÉe²Š?^øÒRj6L]W:ü=­¾6ï;XFénc•D¡¥ËQtÒ…¦@XìC#EE2>ŸÊ&ˆ¼ÜÞ?“£»Œå‰–\%Z£Vgµ9ñ7ÃÔb%I„ÒRâÐ^QÑBqq¶ñ{+¡ÆÖbI*õÖ"ÞT+Q%9Ø]wËûK +ÓvÄ•Î*.”“Ld”Úf É'[Õ!åO^]xíë|‡³ì/8Í—Ú:ZX2µ¾ï»XíÍZÜŽdjù&ŽBl4GÉ+ò£Ò]ç¯:œ'°“ Ù _(3ÃÞÚ¸ÖÝ(4Få¥Õzo³ÚY@¦Ò›Z@ÜãéÅZ®6h¶K­•.•RJ0„T_?4ªÅ`é©Å:‘Símai:¿ÜÙðÊB–³–>` ;úŒâôW<‚4ÜE"‘,ÛbUÄSi¯E ‹ÆSÿ”ï ·<:¦Ôʶ†¹¥AªX/v—K½•ƒ‹Å¹Jk€éoHð8Fk£íÞÛOÓ9 +þ¡ +Ü+{ë˜%úÒåúò˜¿…Îêl¹mø\¥s8[k¬Œ‹ÝÕÊ`ÃóP¦¢å–F…‰¸Å0|æʽê`,àT¡­S)‚Ð$à¾#‹X.”‰$B†¨Ž +Êåã¯WqéˆkH"¶»k^ɸÕPÚ† åÄ^iÏWÅV­7óíåÖÚØሪÜ_ß¿P\¨u’°ã¸<ɳ(7BÅd›x̃çýõö¹éŒ•œ/Ù¡­9ÛÔfÊäË‘|Ö'^­Rq¶¶£óOòïÕé|<¬(¸rbWOìœfÊJ0?ÖE¶úH8DˆOoÅ íLÄpBJ/ÉÒÞP7dš?&43bJä5›œÅäõÁV2‘¤r¹âæç†ç¹yêO-VÍÆyRìVÿ«-ÇüÀ)ˆŒ˜Gãä¯áök#v%/žþ²Ogë²£¨Œ3ùæ©fûm;:ÿÿ×ùǪ}Ü>›Ñac¸ ·‡Óî°kùR’Ø+¢G°«®'»é€*±"µl”›)¹ Æ&ºzÂçú|ØÑéQµïÂÛß@¡:•Áf±»†0U\Š-õYÔüÙÙ#RÔ¨gËKz¯ÚAïø±ëxNŒÒõV×Q)&ñ˜+D5¡É%‹¢#…ƒçÙ•éeH„öÎñŠÅ6£ÊèG!à—Ž‡cãDþ÷ìµS«³Ø5gçl;i6’[U²w–T±¥Œ&4>yÅmGç‡ÎGM‰÷MM1ê'‚°1ÄfP:—Ïû‹‡½Â±ñ !¦â`’élO"Ò Ä`B>³¹Êl®™­ö©}[G£®[C{Ô^¿$û £íëÇ¥OŸü@ã!ÑÝDòÍsVº›éŠ*Ð+.­в⡅r¦V *£b/ZÄéIÞ[Q0©L}i´1“mˆ§Ñß +…ÓÈ{O†ì?åÄ{ÂmGçΧ6äëõåÍru*Go¨}M¦É„.Õ ¥ŠtÔéÅ œC¨l¸…]ãR€‚“¯·‰hOXwkqCS/ÌñjªØÄ´…ÎJ©·¦ü¨_Y.].TÒ¶Ð^×?´Xõ±žlŽ6q²r qd'ÚDÅ‹Õ¦~>•åŒ]%—¦ÊàRü‰q8®6JŸQ.’Ë…ò±QmMåjî³åf•‚òŸ„×%ï…ª‚èÏ“’w1Ì—&ΟÌ?"ç0¶É£Òámçàôló z—œjr9r¤AÝ:ÿb¿NvYŽ(€þ·×Þú'¼öÖ¿àÅ›Z-‰¢Äy(’UÅy©¡|ªÂ ·m¸¥„H2#§Èdä½7]£+½èüýû>¯™­¥ŠKû·{¼¬u‡«ÞÀ[‘†>µˆä®Þï‹.2 *Ín– $rÛI­ Ù„ÛíW„X²)걬.+c_úœ‘'x!²‚†"\½b„ÿ¬ó«Y§«Æ0Yj/f]5Žóâ©šã’}íeµ»N'öªuvS"%ù]—‹ÎŸÎµ)ÓŒDUЊÑ+ì!°¯ØäzÀt‘*voBzÂÛ÷§Û;v¸­ÀõJbŠ¦·£É›^d„&nûy°#X] µ6ùC¡w;ß”,3ƒq\ƒ¡®»¨ê™¶÷ìp~õRñ`èsŽUïhÇs®òÁaïfKxîQß´‡‘€èíOW5c$/æê2—€·šR릜ÇVÆæBœHÓH/NÝåüá¢óÿü—¿•ÄÖåRóCP§ w.ÂA;2†E¯.e¨ãå¢óCç«H¡ˆ +Í(y lY@k ›Öw*çoÈi¼€ûÂ?žËd5#¨u³õ© ¢‰grÚÖ´tèg’þ盽Í8'ݧ^º¥®É Å_ð6yk_’¾›íoÚ’Ê}­;M7¯ÃÙSº–9nê^¥›gŽðŸæ†Ûq½Ö‘-p†¾¶kVà4SQÂÎßrØgï‡ËEç¿Gç‡|ý­=¸ŸÌ²Ç—ñþÜÌ—éŠóž9Ñ®¨h2š¨™ à“ +ª•Æ2@x«Ëý©¿ÁH@©OäCZÀp©Á}²JwÅxóz7X¨÷fíìØžBÒ‡d§`–Vñ)|Ï´2ÂdvèªbXˆ._«â Bá-‹w‡Y4-âÛ¯nC¾~~v®÷0…2Úœ‘‚/¾0 /È0‘~®u¬À2Ì\ˆÃfzï×zÏ>¼åœÎ>},ÜUºuŸ®¸%7à–cõ^tþþ}ŸÎ‡É8‚¢^ò>C{è±U@.¾PÅ0Y¤‡Vñ§ Üý&{Ĥ dL¨§ X[¨õ(öµ8®¡®Õmé@€È{³Â%®)oÚcô–+LÏeùFíë5…Y‡€©R‰òíØÚy#ï°¬Õ¾< óÝ«¥¬i|d4 +ÆäÏg£ýGËEçÿoßœí”oÕ>x‡Q“m‘`oJ®Ôûóæˆn9P­êâ*0–¾­ž€˜gñ4€sHhot{pÒv½*BÑDoÇRºÀ¾ø4,þ&r×wâùlžà½2†Uá2Â8,°h§{÷‹§" [=<@%듺ÞPãoÞª{vW¼bï:*œšA.êoé€ãGšcG38pÀm°…’wXG³ˆ¹–5L=RƒÕ9G êtjGsdÜအêu±«°#܋ξ*ÈZºF’Ai]Š¦?TÅ`È ‡~0 +¡®éU–úÜžLX*Yî<‚ÜêdzÐÕà‚rž,ÏêñZ'Ùú™Æ仇þL:À"= ¹ÒHf¶‘_m*`ÉâÌaχ–èLaI‘kÀ(òß`MP¬b°E¤É8¤ÇzSM·¯¾ô¼ +£”D6;FÑ,eÿgï‡ËEç¿Gç·²õò¹hÏÖJw±ýÒüÉö‘ì„PÅKWT4IP - Ìgga§ZÁïm?×+  Øc.¬ˆí¤¦Ä +U +PB.೚¡~ý_Íɶ•n‡Ë'Þz¹tþè¤Ð½— ƒ)%l‘| W°¬7ÀS—‡éG(À–ÆFz©na©Þ/ƒæhªi<ˆnV™ ØoL–ßk¥¿@"k¼ ÊŸÂ7Œço']Ø"ÒÍ`%Ÿnöáž.n) 7ã~jÙÄ8G:ßE¹1F\vÑù?ú÷}:ª³Ø@ÔF’RøÔ8ŽhŽæô6Ê – „8Z,ù냿ޟ.ö„‚ÐEÈ`¶T7À:4ì«à »XŠØF:œÑ.æZ¼‚ú£¦zd¡ÿM§í‰ŠöÒ^+`úÓù†£‰^ž#/¢‘L9Ìy‹óÁ·“.kÝ,2‘Hdlp?\·Æ\Šô$hèw].:ÿ}: êûdÕ›í¯ã¬Dæ‚hð~d¹ˆ + Vü+Ì„±çPÂà±Ðd„É!€KM›{k{(j€^+P Ý:â„ÖúüÉBRKq +âøÒÁOìKLT àRÕCì›^Ú˜L5¿vÆ@ž1;¼~i%ƒå®6Èï†SðÎbG>à ”K¾ñ„9‰I¼e•n6³ðêºÕ«ˆ`ýµ™8,‡©}bÌ +qL Fî Xê¿Ân£âZ~¹ëŸ®å×zÏ0'-ÃRfáZ*áí[OxûdápŠ#ûG.:?t~c¼ÉöE;Û?ŒÖƒÅy~*5+!±&*Ѽ,Ò]J£•î4Ç›Wƒu!ì»î°Ègcc¬ÌN“ås¶~/žzé¾=Ú`R–ÎxË¢>Èó}‘®^‡¢9ô-ëÉŒfx辊ÀplÄáÑú%Y=ß'ü9·ÒÃpùÂèqÙ‹ÏÓcy#Yn{3ÎpÕx…Ý÷º“s€áÝ»“Ýh~æÃpúÈÕ(ê,ÿ(Ÿ ¼.ÿßÌ×lEäÓöÍ|©Œ÷gR²/ºóǯݼ#]U4¯:Y"Q]ž[ù¾==ÜKf·¯šŒÆè½îMkÃ….³nsîbð`õ¤«>ž7'ßölÛÊ·wP‘&n‹“é¨ ׯɦ¸,&;¸| Áì ä#­P‡uàhñ$eX«CBP ÿ‰sïK$Ätðèìr<šeÓ¿vÓ¾¼†ü^+7Ž +^#jÃÙýx©>4e¼Tª\&R¡A…É‘á—Ù©¸jÃ+þØ4d¼ q ã]á®\…›¹é[v×—ÙH·JÜêEçÿèßwêüéÔR¬çU ®:ÔU`lʹòP‘&D`ðׇ ¢B]$Ð$B7è[T „bßúpi;‹Øõx§W­”ÚdzeTg™=¾æ"°`žq\-~þ—òøVl/…W“Ý3‘3\ñpçBd‹s„ü¨âkY…å¦;µ~É¡Ÿø*ÿÿèüoÕ¾0¨UÚ¸­÷çCÑËD;Tªoñïb5iC¯Šÿx# šDŒeÖ0Z„°ÔÕÁµz€g€v‰¢‹ÓÃd£dǃÌÎË/Ñ—vª‰˜î’e3ÛË`¢f¶æ8¥ÎŸt=*:³½:èv +Ø®·L[V–]! €n{]wSs/ä.—„ƒx5Šv5Ò£~{GÁ2ëÿTïE®FsÍ š¥–@†HIœ×H”™‹ºãû# ˆúˆÃçrLD.Á5JeÉ¿_éü +²v0J€7Æ3X W´CátW ºÕHÕ*zðf ÐkNV¶;]ë*‡-ŸiéPõÔ5M<“Ö!³CüòãC?Ï7þåuº‘oö‡ê9ÌC~püÕãM¥;ùcþÄ1»èbOVenÂON*ì˜"t>—"G°5—¸qݘH.BáW>ÿMäÇÈOÞ—‹ÎÎïÿýry•å¨ãøÜ›„‹¹'ƒñ_p#j6‘èBðAp#AŒ‚øÈFЕø‰.ÜdçE͹÷œ3sæÙ¯é÷û13Ýó,?Õ?sB”oˆ†Ó4MuUu½ºêûýüÊÖÌ×V±yñ$„½[#«¹g‘N¸TÔ•¯d"8°(*„-«E¤ÉF tÒ$x’O>¡ Ki©F§þ…BûHî¥M±´Ñ.” á¢Ú¥ÛÅaƒÜûK4ØI)‚ÉÐ[ÑÉ^Š+´”4Z¦äSEe€ý"¶BøB8áú„žS: ´ž½ò#û ªÇ€yÒ†ö |„E¦€ƒëÓÄÏߢ„ @óÛØKjFÂÀÐIi\cØ`F,K8‹JKZB$žÈ8ù,‘æÿ;ÎÆ×í8ŸÃoÔÈÉç¡ægÒS?Ÿ•¸ ·$[ôÕ•Ý(¬Â–#Mb⧂<ÙC¡U²a¤¡},†'šßS…¤S„†óJ˼Z©~Eäíl%ýbX¬T· qúO´|çËžgH` çØoö}×uOøòJGtÍÅS†v&Ži‚i÷I«ý{ßqþGã|ÙœlAu4¡©l;þWG¤ol{Ùá¢3¬-O¢”™s!:Éqèa²l ¦ ˆØŸd +0k(¤{‹A'Ç~ÒOÃŒ4R)`夔"ž¸FïSz¨P=êÍ_FÀ‡ËGºp‘žëf+‡Ißï²ÜÐ5Ý1l‚Ñ +÷ŠeÌÂaÇJˆe¨Ö3[$Õ¨#cfâbLL„N„ÑH‚o™Žè•½ºcMø–š|E§4ȳ/Ò†Å,°<‚y‘`^b»Ì‘›4A)w?ÙÍ31…Oç£Qà:ºŠd¡«ïOýh­ÃÒ^E;ô%—(ýÔÌœnçn•4 +C†!dX$^xµ¦âYàYW Ë°hé×Ë:þd¾Hø »I°Âßõ¯A-‹Î‰jzé*ȶ–_»ñ†„l†:Ç@`áü´KªãÅØ%Ámz•—´a}ðËÝÌ+A%i3jŒ°fŽdÕ>^®Œ°Øª©›óʼýt£X>¡þœ8”­/áDéÊÏÖŒ$[æËÄM/oì¸àéöG¨Âô™#ÁKµUc+‰ëãÈôêË6{3Ìh™îhÜ+¶òd$š±ã}10•¬¹É¡ß¨ÞOœ„ö½¼Mק…_ž¹YÑ)3¬®­¨Ú)#(óVMAµ;οÅõŸ9)ø5°â†ÛŒØB›™›p§ëƒ›­Œ ·ãŠÓÁayºˆ’V'Äú9 L¶–% r9Yc"Ü•Òä¿,hÖÏÚ©ùÆtãº=ŽÍÀ‰ªôõò%ðÌ mçs¯‹°Ø«XxeC€[^Ya”añke&Û;ζ×m8ßqÂn®¹%²#¼0ƒ´=^;¡çi»·¢rºŒQr¬çðDŽèê ç‹ÒògAY‘kòùËÔáàximÙ2­–)Æz% Ö±#7ãÑLU¶Çe\ +?ãéV¡ö4Å”ã)ö!ÚN_´O)ò.Æ!â Oøö&!ˆ®}¹¥Ô¯Ú¡åÇë=25˜Ä +ª ïÆvœõ¨Ã¹³‹nÉF Fra†7{IðY Ž¼20¸]°—dš ú É3w Xȹ´SÒ~}º²RØXú5> —â¹X-9Ø1'…_ÑáL‘c—í$,ˆ\üÕ‘¸†È…@†`‡%å¾r ++':X{"1‹>4.øç|äå!­Oi§X™µRNÞ±VFÌ*-"¶ôVãŠ[‚1,©è¡—m½á".;u9 ºœÍ¼,:4[rJ˜Pm÷>óÖ;?sÓr€Žìâ`¤[Vx¸Ìøy‡ÂC×íþ+j¢í°ý«_{4œÁö¼FÅ…_í„ó·GõÍ7¾O)Õzèo•Â2&ËL“|Š®îPx^¹…·ÇN5G<…=Àíæ-ùp>»4j¼þáOïÝø9ðÜ‹¯€÷_üòk$¼“”@þåÜæÜ9üq¿ð™&ÓŸØÈz%‡:›¹‘_¬Fõv7ü…§ð<þ"È«ßxcðà³ {¢k€ Ð,‚ð¿ý“w÷‚ô?AáCÜ€@–@À KjÞqþm®Îùa½'„÷æ^zµp98NR/Ófh'hHyP‡ ð>ß)˜Ÿãs> ®¬¤Ø+ ÿÉxéóp¾úõoó•HîÐ áyDU€Ÿî¾òú#ô±•Ð…ØS\«±• +¢k8ï%ýj!ï{³WäPÛS“¸€]A\Õ_›)h³“`d$$*(ËHx]º£‘…Ý(d¥¼röí¤°‡ùÿÇ—3ò©°ˆÚëe…-",,)Ë ç‡ë£ßìY0‰cˆÎÔ'ua$^¥î8ÿÙ^·åüEÒA/‚—˲‹6§‘üâ7¿½wöòµãOœÀÓ/瞥q«CQ9œ´7éÔÐIXU¤›“BZÄœ´Äüý™:QqµpÂjGû½ü +¹ ©²ÃÃf{5[ŽMobù|‚ÂÓæhÑ>S g+úåœò|íÑ÷pŠ´ÊåÆ8³ÛœV†q>÷hª8hÓ¡Hœ‚Ï™]±S >OLð|lÆÕ~pïá/ý; èâÜý‚=3ÏZö43/y²Ÿe$b:´&a ’ïÀïèáÀÔ y¥ Á§f áóJ& ÀþÂJ0èd«ž¯C;˶œ…S!Øx£X% þÇ—ÉÑ¿¦Øc¾Tp›ÝÈKY7"‘¿@T=ísÓ=ò7Ç~‘ž/¢ + ÖêÓÊùmv9/ü5ørA¸¦%‘|Jac*ƒ¦èDmø•G¨6ZеÔè@ôöË-T®«Œã“r9§µI{DT|ñI|ðÅ‚VZ¨Øj±µijÒ“”˜4-Õö¡ˆÏ‚ ˆ¥$´‰ÁÔhµEPT(Á–Xsîsݳgfßï·Ù{®gfûÛ³Þ‹ç`)„3,kÖZ{]öþ¾ÿ÷ûâ-‰ïb&Ù$§ŸšNþÂöÕ¦ú™Ï~î[G—¬pÈ +•ŽÏ¾ ‹ÝÁ +åtrâ¬bÇ+²Âþ=÷?óW[&œ½‡ƒ ì]¬3È…°SŒ`̹©æ§VºlÅf<úÚÃÇÐüt +Ø Õ5Ÿ!#ÂBjzªŠË¦ªßû_ØøV*»œÿþœo%cd[Z©«´…§èáû¤ýÌ,¿O¿°CDACÄê÷~N Ѓµ£~üE⨱6ÝèãGO<ªS$ÕGüQ{JÔÏ»£B퉔ǖ΢ÿn²…7}õë ÝÈ,úÉ"åP“‹eÙôK÷>¸ga‘30ÊúD +®@¨Rœ¬©G mÂjÛï‘÷åŠBHBØ™CÝP&Ádâ¥9ýt2‡§ˆ†Ä>?#‰‰„¼°Ÿ¯TU†jùŒVZŽÛòCÌáqI·ræÔ_ Fø522ËP"ò –­ËZ]w7Z:îOÐä•nÈ–êÉv9ÿÿûÛç·‰ûÑVU‹jFàôsHø#ÇK{4-¯»fD0Æ–NòµÀ2Å5pD•¡ ±Eü IE= +‚Œ,3 ‡râ¾õ¼l„õ®4u;Ë7±Àî´ áÞšSd;ôºã°·¥:½àhxJÎ㬆ÍÐ`/¬ Û°#í/Ãùs·5èÁ¢ÂaŽÂ5pUÔžG0?ÚÔœMx1ÚnÜ0<¬ÑÉðS€Ãö.|ôÁG—pdŒ“óTð/®á|®F¸!$q; +g£f)ƃ½fèp zH.€g‘}b˜éŠ&G€ )¤tâÒ$ "M æÖTR}wMÂ\³¼h|×$ƒ6‡!‘)•ŽË-ꦯ'ƒMÅ!#뽺²,Y © 9,JÊF !ÒɺU9ÄË×áÑϨâÁ¡ß²ùî± „lF²=‰‡¹îûˆ‚‰v %”4\­54t Ýë^iχŽ‡*±=»›³/ÉWMwI»üQ^hf<ЬøÛŸ8¸pØO§€ÔFCGÏ~üäÜ+×n_üô…Ë¿øpÝŒQxPGÄxØ˦‚í‰#'€ŠéAêaûµÖ1Bç0ch$ÓÂI‡ö¹ ¶ýÏÿ”ï8ü‰ýì%3è9ñ°©0æ=¼ÉŒ²+¯]/í¿íÇ¿8O°Ø$êô¸8WK‘w¡ÛàÅïq v!~q*B9Ȭ.øMP:®A€£Ÿ ._.¼ó•ß^g§eôÑ¥§à|戜‚Ó²—¢4 _$»œ¿ßÎ9]ÂÚÁûjDz“!´OM騩èvËAIŠÈhƒ4n‚øÔµ€bw' Ý/·rº•ùã¼jÄdH+ö|cµçÿòÜ˸†›Œê›  ’;uö±z!øæÍj‡¿`:‰ï˜q&fj0Qæ0„˜“p`$Ú›i)êúØ“Ï ê´»“ü½r­~D¤ç©'žzžÑšª±Žà4š H£&ô°Î‡Þ»œÿÿ¶ÇùXEµÝÆ0 ìšÜëÂ…-YIž°[ä)CÁЮxT¸PB +$CÁò1{!wØä‰3ÏÃóA–w¬η£Ñ¬‘IªEØˉK§Ÿƒó L㨆³:ÿÆ_ßFQuñeZlÝ4B!­Œ]¤@;ôÎE pÂê†Sf<7uøÅ("/‚çj +ñ.›äD@JY¶©ëŠG°#G`JË,À8ùbe’Ƀº_$dLh™Î¿nÖ^ˆU:BAÅ ÛNàõ'/±ÓQšçx4²à̘jú¿Ëùï÷Û.çËÞ°¢'€QVݦ“ð±N}ÿ…Å}ÎoY“lÎb½Rع›"Î|D”œ¯‰Àâ)ˆ-~D7¡“9¸²L-ëî¥Wÿ°gáЋ®I„âi^Ñ#«—ߔ̪¢ç’é—›’Û6}®‡Kò8 +ÏFBÒWi£ø+úU= ŸpñÕ×K{ç_ºt!u_fˆB ˜Å/›•Õ ¥pG#î!å–˜á}ßýÞ”YúJùí ¿iD’ßçñóW®‚1??ÿkd¿E)¸ðv8‡$†²8m6…œî½*›Ô”²êã\PýZË¢&Ày´ ¯xÊ, ÀozÒÃx-ï®­Ñ0¢‘ˆÅÄ_ÅKÛ~×LG|&’¦62bÇWßü{iß?=w™5›v¶Þr!| ´¬XVšßªœPàŒ¡0jFý¦Ò–R+nâ÷&ª×¥ŸÆZCá[‹™ ­ÔÚð-,DÍS,Å#²Ø5Åî稺§ÃRiß‘cO†é¨ešÛEÕ‘_PpU„žî`e㓧Î2ÆîX¼M±£åþ\ô“Ï3󦄽iMŠÃ:­°O-:Y³"sÆ)ÐÎ|hJÖ}jæTÔ°ªEØ ÒÊ{ÀˆJoßX'Ä\ºö'Á]lZE®ÚÝßzç½ÒÜ‹W_'BiÞ°¡F/Í—+NàýTÚ¦âFF˜²B‘#¤[Ëe™4A÷Ò†ÊI$ÕåÌoSÒ¸#[\ÿË[{&}àEñBˆMgžû!Ç &n4t’ãG„*â#A6¯·ˆŒ»œ¿ßÎ9‰Œ1lÍO1{‘ÊÑƤqÁÿ|zÖ%Õ鎚KºŠkàMb&´áüªÑmØ©d$(ùr¹ýÚ›+íûÈo~÷ÆjYÂB°Ò:B5f€£±îƒQÑ`/MÙëÆz]x… ø#¾Æô‚÷19ivwÓññÓÏ–öÝÎ,S82çdŽðÖ“OÃùó486‰£2)L£fÏ çÿÐÁ{—ó?àßö8VÇ`00ä;ÄH0*̆†ðl†9ô`¢˜+B‡è¡xè0ŠŠ0"­˜="OV3D?BÍßÒ܇ùm3ü/ûeÕ•…ñ†nhšnPP\0®™RSƘ̌N&–“Œ13jÔˆQ”Å'1×D'Æ%î˨¸ÑQã2cLc\Æ-¸YºAzï†ÞºAíù=^’Ê3˜J*U)^½zõÞ½÷{î½ßùÎw ÃÛ¸t³HC˜ð œO㸤4‰LÅôB°ŒäI- fŠ5wb¾-ˆI„)È>˜%lEç‰â…pê$L,ÐëªL4‰ëb-ĈJ1'²FÅHZøÄPa¥„ ÛB#~Âöø‰?¸ÏøPÓàùý¼†3â02ˆ½ö1e ð cñ¡‰¼sï¾I™‘,`÷=¢¦¨d[‹Îÿ1¯'ÕùFïã»Z*¢ÚÐ:>Ýûæäé©Üä®åø@>\mõ „<+PŸÁçHx$ 0- ¤ ê$«öÔ]ºq½±q×ASí'whx¢¨ ž†;“½® ð»ü6ˆRä7HÆÓñ D¹é*,¹Ï .Ý.ÓòdR"´¶)ðÙ¥ðÿß6î` -âÿ3QSXk óK U˜Â‚Ó÷X"—’Ñ\ÅPDø©AJLÎÛ:›¾¦‰Y.Þ,’„µZµa›¨$‰ 1{r)¬ZÔ–´3£¸üE/³ÓÅv‰Ofã‹O`­Ã> IF2·Ù7vO$%Q‚bø%¨›—ã¼£®tÖÑ%¤KÖUp’ü«Z¿}rŽ3ª0»îUX‘s›ÿ®ÚôKÕùl û3)-«]׸«wJ9}©ª û°eO>[?)•NmTB +ÈÖKŽàrá=….Eë`eô†y´‹0oí̺‚‚$Òð+× +QïS¦gU9k!s˜mRZNPx­"ºÓð1a?ˆ­¨ô~Bâd…">D*Ó®ŒŽ%5 üZhD ì->{õOŽML…çä ÆæéÏ/Ñ…fæÓJ‡öýMµ®Š–`EÏÉé³ ù{šE•¶ +‹K[]kó=¾Uf66 g‚e<ùÞ‡›1;%c6?bjàËC :iH¸Ð¬Œíñ,Rß^PëÉK63;w‰$4âæ½rvŠ&‹¡âF¾™ä{@áÃöäÌ~~ñ´?j\rxTGÌþi؉¼í’ÐV©´}·^äÖ¿ŒI ’ª4F»T# –±KË×l†ä©Œ(‹šEZm‹Î’ë‡ë|ª?ïÃÀ×džEu À3±¶¡è"5kñ’wø„Dõþú­„ƹ+_x!|‚‘í»p^°M…­^ïnÒ»u2ƒýµ‘ ¡ ·<,¢MæÜ…àÿ‹kw%Šh`RUì¯zÃNès蛣'L£ŒgÎ_ßejh(ƒÐ„vîЈQ ÄZ`è¨x¼ÅÉ;jݸ”éô’Ây$Ï•k7ìba2r|2-"É“†fþÖZŸ^dH:J‰Ÿ[x·èüŸøz2ÿÆÄ”^ý^¸ŽQÈ"ÚòÜýñ±¢rDÌ„F¥ÕÌÀ$ø¹qW Ú£:tƒî`ÔÍ»b[kEÇ+×lBÛCæ©òÔge¡‘é9 š5Ì£ÒJKrZ¶) GM1GPÅÞÈy|2²J‰Z&ŒˆOÄ2‚ÿ¯ #H1É_]ãúW˜„L!UÂÔ$ ÒÊÕ[%¢ÏÜÝzõ»\x—Ü'*%![+B"cˆ8"È÷ ࢗ…x„wI|S3çöìû!ý}•«Ö­#§eÏZdÊ„”t¼b:\EÌ3£ìbÔ¸iÕG‘ZÏ>ÇOœÚ©Gï£ÿ¼ ‚^”[ö"Þ¿z+X‰Y¹,"ºC÷8d ÅR„1;è«-:ÿǽžTçCæPºÆR£wÖ—™:§ßäöŸ„Î7{|ß±hjV. Dm°7‹[ã•[Å´«bžB,É[·0¨VÔ)„ÌY3ž^˜=7`h ‹ Ýظþ6¥£¾ÄäÖTy8tu±ÎBå(€*D ‡ÅO¢Àè›`FÌSä‘ð6±¦ˆÞÄi™Ì‚?ý_$ú ÚyÆtéIïÿË_³Ýèò-_»IªýüäÌ—iÄëãRÌ®z£1¹t®zµÕ£±ûµžÆç~ÿGÁ8“è†cœT…&¿^¤¦½uÇn‚nT´Þô÷ß•'°>“ªxONÏéѧ¿˜Ø+¡Ù°µ¤å䊉,iz6K`‘[¬‹BF Cn~¤b¢‘ä5£dh6¹*&¶s\ŸR™Xî7pð7gÔ,çâžÀ**-^nw½ ç~©:ßêòU«'¥Î‡{͵Β’&‘²a‹W~#íýø(]ËV¯+­4© Öüã§%Ò°y‹–¹ê›(—ÖoßÝ\~æAïfÛ¶¼|>·ì9`tx¯Ý-‘…(äaªñS´k±F—‘=ï­%«Pàèð݆„·^úÞ£ÅnwÕ¦gdI$²*·__åJœšÁìÔ¶…÷4®‚±5·ƒí¯5:Oý£‰SÒñÇQÛÀ€‚c§•­ÛÍY°ÈO¡a¨>z\ÛŽ]Þzu¥©]§îÓ3çØÜ~î ÉÓòœð5 ®FVÍòÕFg¹ÙÔ/7»Îýç¶D±-ï0$Œ8'¡$NIú émîSç¾ +oµuoA¹É‰È·Õ47zµ¯18/\ûØlܵ¿Lo©òÖ9wqðaÝãž©vùpC£5÷ÿÝK/Á§ÅîMb]ArJž«_=™5~´ó@‰¶Êêi0Ø}Ù –ˆð»^TŽ¶ç3¼ÍSùÇ?…ä)<‹ÊMÕ5[tþ“\?\çÃÂ#¦,~­(ì Nž…Of¿½´ÜPe´y„feáDD¥Ùîò?8r +‘Ÿ91èªò6þö¥W:?Ý»¸Â@`NÉÈIËš ì±³¯à8hygùj¢Ãd÷¶íÔ=iÚL­ÅÁœ–yâÓó†j÷Ô³ðŠ‰â”éY¼‡¨¢o—TàäÁœäsÆì˜bÀ´Ì9XÃsFîÚ_@Wî¢åµ<æù¿îû_üû³ ïÿ_O¦ó'§g7«V9˜'!ïòȶó.–'Ï~!b‰((¹oÜø`¶àe%åz·¯q5j!H~èè)ÙlólÙ™G©»yÇ^c•ëÒµ[rUt°Ï÷ù¬œBpMƒ¹Nkk0ºªëM?WÎç/ëÇOy»YqŸ¯®×coA¡‘ òò9Àʺ:Œ¤gBß×%ó”EGŒ+j wj“‡wŽï¥³¹ÑÌ.=z'¥¤‹õ48^rB69ç=ÁâDÞÁ]ŽWgáÿ¯Ø㓆eêŒVÊô÷?„óÅõˆ…Mp„#•mÛuÓåKWË3?thêˆÁÉéz³³ªNM(¹LR$'‚ ¤$ˆ*3*5SƒÙˆ•Öapû•F—xÜáüÃ¥ç k<«NkMΦ 93$Òp³«Ùèôî=ZÒš¹ÃÀµÉísW›¼z[“ÊàêÃÙ¤e +.»ž»`É®ýG:uŽ;¹œõÎȘ,^nu=®S³²§FFud=dÄ;ip8œÒ“T‚ú£³¦Hƒ£î?TVÖ :›éXÕ’UëiÀWÚ¨ŒÎ6ΚëÙ9¿ÞäõÑåÊzÒmpø¢c»%‹}"AhfLÇØ5k °F +–9 iø´‘ˆ ‚¿\*¯@ë6l-ªÔ¹@}TÚÜègXµà>xì$¦UX¼ŸTToõ¼>8mPÚhÈŠŸ[/¸Êo=À¶‹öa0†ÁÑakïÞ£³0kàW¯ÛŒ¸ñUd¡*•Näü€8ëÌã&½Ë3r'J+-IíÞ».C x+{j¨¬͘Iž>ºu#³\»yŽ(3:êÿäàÝÆù?òõtœŸý.Â(»}ç¦BÜü¢äTPpøܼ|l[´zôümRúhŒ«‹ïórJÚH¤%Dý@ñÔ´‘»õDMöÆ.q ý^Ä'´q>ZrŠ‘ID“V¨bôÇð‚^½û½2 ‘ñ=Oü"±PÏÞš0%"2†)êuæc¥g¢;¼°¯4;©©T(¦}0+$4R|}¥ÿôŒ7õvOÆhil>ñÍTm¿]UÒ®ã¶=ZþGÃ)P=xOcT½Ád¤ÒÒ…2jÜÄðÈe×+ˆn*£µäìÉ[´Œ0AÊ@e÷øÞ†¦±)R_Äþ:Ï‘•JØžtGëú›—Ø>K?9—µí,:ÀÛ½~•Þ6tXæ¡i³Ro4_ýî–$4rÓöÝ„!€Äêñƒ"mœÿ|¯§å|…àUY›©mZG‹Æñ¸VpªLŽq9Óü“gÎCÂÕê@ì˜:ªs|ßc~cHêà” ¼&8$âíw¦18#ó€×àSD“£¥gxÞZ¼–¦/“þPüÒÚ;Å%ôzm ÞéƒÙà—_‘FfM™A´‚£tö&³ù¡ÆRg{\mò°¤³—þËàk72ч1{ö}5)%ƒ‰pX–‡2$§d¼ðb<+§GfR(™/¾V^Á¾ØQÉéoj~+É߯Q±Q^8Fÿ>qA‰A9€ýArü…a&§È‹†è¬¥^(¿}/¬}̺í`Øc'¾fÌ5ë·Z=-JU©³ÜÊèÍDçŸ+çs>œÞÔ A<Þ«7îpbŸoÞÎòJƒÄá£È•°‹×+$¡ó–,‡êÁx„œŸ¿RŽr¢„y»YóÙ|-JƒEmv¨êµÁ!òœÜj äFi4Íh'LØÓF¢Šv—¯~4Îç¡íâztþïÎ}_HB"6n+f˜ +…V%>ã2+Ö¬CB™»Åé£cþʘ^F ÞDG‹‹‚ÞM¬MÕ:§Jp]-u'Vª¶4Šœ¿óÀ¿ÉAøõ,lR.S´ç¹Zm8yá*~W°c?¼Ý x§_kiîÕè¬þùù«$Aáä8ì—¼ãÔ¹ËìkíÆ­¬§C ¿Xv'´å¶îËûÄÏQ·îksÑAüÅèln0¹'æ~$‘ÇT5˜˜H¡µÚ|þ˜Îñã§Îø©¡ mœÿ4׳s>çóPe\M&w³Ò`ø3Æ 6Jdo8™ÿˆ½µ1 RÙâŸì®Ábv{)¨Á7ùª5s¼³«¥óŸïõ œO"î«ÌõÖF…ÑQ­5½[™BOàvÕê,V¯朅„ò åw0þ—ù‹‘VôQEŸù­³æ-¤´F“ +w¡ÃX;ÁmÀm°|ý¶=$šÊ(•:‡Þã¯ÔÙª5VÍÓ¯"ƒlßsˆAèEw¼ïì— p”åÇ¿$,›l6'°QZ<¦T§CE„±T-•[H€#(9‚†›pßA¥#P´T aá&÷±ÙÝdï‹ýöJØl_>uœqp¦3±ì¼³ó~ïû~ïõ=Ïÿù=ã§dÆ&uÂsÜyZ8Ÿ:-C†Q¨q‚ÅקÎóúªÛëïK©‡´ÉÄ/­ÍÓ&s~N ¡¡Ö¦µMüBD XBA“E5ö÷= ŸÂ»§ó¯ÈœÏZœ7¿à7€aãËl’Fv›9';¦mÇs—®s^ÆtX—ÂV˜’+b å•ÓZú|½M§d|DòŽpÅ¢Ü5F§»ÚdÅeôV-K׬/ÕÖJÕËs!|†¹÷L.‘®y9˹®½Ž(cۮݲK¬x  „VîB¿TÎGQ1ƒác'’úñ•¹O>Ä•[%²z“’7ñuÈI;?÷·t³LƒnØñ ²êW׊Áû›wí S¨®Ü)½|»ÌÉ]Wª3¢Ð~]}c+EÔØ´ »Ë«5Ø5!±ºMƒ<{ñªlf*ìÊ÷v8ÑŠ*[]­Ø¤uÖ\Ák=ð÷ã˜VޞϓÓùW£ÔmùèRQƇG·Ѽ;cöY$ñ;¨[ž<¡Crﯡêè!¢7 åut›v6ão”äš +r&ò×ÑiáŠh„o¢Ào§¾Ëø Wo#Å#Æ¥3’I +n—Ra‰V‰ŒK’7P®3luák>ßâoFè¸ÇœÿËùr ÆÀ°| IŽÄtl s¥@ãÉOw%jȦ…rGÈêçüéáü‹Dÿ0åòÕ|ÚÑjd“æGØ™µ'«Z«IdËL4”HÄÌCG¥ªcÚÀl`LÚ$ \>1ÐøÕñSR¤Ø¹‡:ÓòñF§fÐçËËI%\™Øé)þå’µpqE­JïÞ«¯K $äWmÐ>¹! U'–ìÈFOœÂÉNc.\¿“¸zËÆðJ^}:?ó[ƒÕy±àF|BÒʵ¢_ -NQo²mËÛ¦ˆ*®¨Ö,ÓÞM"`hM@šûÛëÅ­•1Ò‘Š˜x¡•RúSænØV¦5ÛDr{Ã#èÿcÎÿ¹ßÃr~µC*zç½*‹ί´¸Mb]úÌ9JU¬ÖærøA¬R%'w’~½D{ùf±ôM#¢¾ãþ[ì0{I.FNéñ=¢äÐĵsïþp…êàWÿ¾Z¦³øB{ Ì$½Í%8mõ6‘Y¸ëî÷ðÚwl3i:.ƒ;üùÍáÝ_îw£¸7D½eVÇ¡ˆY¾†¬ùD/Oœ–™ª´ZûcŽúiüÊ¿QÄæ®\§³‹6oÐêœèŒÌ¹“˜E`²ÒêÁfªœRaé=ûãž›wîA1ù-®·rýVö ç#`d^‹Ðåò7€ú (Û `·¬[T©ç‘vDE'ð8|©_J»äÎ滞«…%Ñ8H¸O ‹Rã5Ô#U1àý…k7¥v%·­P%&IõpEx+墕ëÈq¤Ü!L¹÷ÀÑ;åúrÅê®Ç­H^Üu¡k…š_*ç—é-ÞÆÐÈñS…Úîk _#k»t«”Ǽ}_hLέÉt7Ðgàíž|ÆèòŸ½tìÉÉÝÀH^dã³—­"TW‹*Ož»$(c¯Þäo±V1¤nw ‚"-c  ?Ç·vµz€ÛZ‡ÿ}¦ z F™‡ÍHкÚè™:YPÆ1üòÄY¸è£ÝûI¾œ¾F—¿ið[oÓ¢18®VF¨sV¬—¿—ÖÄ÷òò +uŒŠJ‰ÆHäšûá +!"zþ¢\fÆC)Ÿòc΢·ï9XkóTÖØ6á÷X¬GÀ¿8vRˆŒYµyW=×Xm×[æ»”j“WgñÚ½Í:«û×]»½Ÿ³ìèÉÓß&ÿíб¶~crú»õꟽd5;йòö®48þfîäOoŽ"Ô\ œopÊô¶äg?zâtÐH IÇcΘߣs¾ÆìîØåùŸÃ)\uÍdxÝ_Iéýêà똔Ë?zâT žvÙÈoWè…È8¼€:½x&kP7ûCåf_¡ÞQmñ™Å Ml8yö[A³jýV8ÿÊ­2l {Ù:ÜAkK´Ü*]{ƒ$´mÕ¥S—®8 E¬gÂ}^¥°¢¼(RHãü%«pÕi³³+ ö·3¦ ­c˜®)ïÍÃO™„Á$ŒL‚WÒBîœ:e¦Ïëø,¯gdÎá-†¡l›W|M!ê¥:sA©®Ö}ÏÕª0»«¬´Î ºÿ9?æüÿÒïá8_²…ËÁ/ šo.ßÄä¶íþ\2uw]•ÑÑó“Ÿ}¡Æî‘‚‘bÅú +=‰g~íf-X‚Á¯¡„³³—"’ˆ6Š$ +­Ô©“2s2é‰.qí’© ÂUµöWRSRd?}Z“ ¨L+)jX”ݤýèñ3Ô·îÚÇT”|è¨ñ­c’è=wé&]Ë×nÅø±pª.âb0ÄÎq +÷½„7E¨ÛänÚÖ:¼´i œ¼áh8ȸə +¦‹–›eÚðèÄ•?b<½8QÏ>)Oÿ® ˆŒ,[ ¼„þŸ/(dfœ´Lo"èðOZÁ®®Wg‰Ä§ÿôÿ1çÿÜïa9¿Ââ‡óa'¼Ö]_¨³T™ƒGŽZ«JkL(?ÖB¼ÎZ¸\Û^cº{¾à6ŸuÞâ\Œ 9• ÄðÐ^<ËÁ,]­Nzbæ¼Hxÿ‘caª¸•wzá_+6–›=–Ìï+ÑÙ*Œv¼Z&Sx?góOÍZÀTc'ÍHèØ™™‰VX8kÑ…¶³fœ>c6Xµ3дåã}­ãÚmÊû”1”‹7Š¿.Þ*ógÌûÐè0³¯ÐÛEÜiœ®Xk…£Ìþf­3ä—Y½ø×g‡þD°"À£¬6“óH$"Àe-\J½SYð%î„‚ž OÄ`Î"ƒ(Ñ6L•ðöË=º¦+ã7"o#¤¥%T5L=G ÕX(!ñÈSâeFº¦Æè´¦j•. J+Ô3¡Þ Õ:†ªw$¹¹ï÷3÷}o’›ÜäÎ'îßf-]Öš5]Î:묽÷Ùç·÷9çûýþ¾¿5·A@¢±¥¡£Çözó-¨qîûk‚°(L—ÖêkŒ2=»ušJ‰òN•ÃV´r<© œvo+שœ.g‰­»á¸ôv/iWap=ª¡!üúµú|P¡2ÛÒ3óyw>#'xñÚ­à°˜€Ü5>ÑÃ)“’‡`˜ŸÐ뱓gÐ*µŸ.%uz|·DPÁÌÞoN6Jn06&_¼\›_hs7ûî:b»yGI¥D+ÖX,õþÃFsšíõú:gú̹ÌD®‘}Ôž™€o|åÆÝè˜ÎÛ÷”ÒFØm´=&¶ šOx%¡ßÜy‹i ûÜ +Ø{f>+ˆÃˆ\«ÅÿÇu~u^a‘ÎâÁ䫬MšÒì‘œ§Ont–½,ŽÜ¶»´¾ÅO"09(8BcØVÀ#Û²ó€ÊdÂÛƒ‰Æ¡67rªLž6lè­“fd¾=ö½?_Ÿ–‘ö±ú¡‘q7ï ‚#Î\¬`äiïµëÐ >‰ÔeäFwŒ*M¸>ºrƒ£{ïs –ò¡´ÖÔ¬¾ðùÏrürŸó¡H¬Z·é¾Pª!ÀÃXZáȬ¼Eð…q¤[hW—×zÏÌY@Š¡fLC½¡úLjÀíë-ÔB¹ñà±³``Ï2¡T Àºtí1' ‚£4¹fã±T†œÞz(d‰Ö¬G–‰Ï•ÕÇ¥e°"¢M‰9!Ý«‰ý¨;X:·p™ 420˜6;784ò•>JKdHš˜Ô¶²ÿÉÙÈ,ûGiú$“ DHY…ÆÓÒ¦ó¯ÞÝ‚¸Ý+Dz»¹ÑÿXiâ45ÿ¿ûü)³rÀ ¢ –?Þ©Äçoøjìÿ ‘)]{ö¥MZïŸ<snqû0êO®ªä!èÝg]’C§øžc&LEºÑgäñø¹ËÁíc² +– “hcHD§ÿ¶Ïïñù^?¾ûÞ´:W3qpï0ˆAâä-ZF›Aª‰‡Bí⽇¡U *ÔaïßsúÜ|6ìáWB•ôözœ°‡wp +ÌGwî>~ê,|àg&ž3?Ð[ð~PHDµ\óÄ{ë.Ž2ÒÌ[ÊÄ©]_K€)ô–>}“ÇL˜Bó¦1;„2Ùïß—øºDm4;s, ‹ê$Ó9;fÈõHxøB%ûiâ$õÀV¸lr5ðG¨H7/|þó=žÕç+m>•½¥ZeÅ>‰ v‰ÑakògþIöí;°j¬G¤¤vKJ~,mƒVÜo»‘/ÀºÊßu ‹;à­F&#M0΃]zôA´•k¥HßÀ&ÉÌf©Ñƒ½¯Õ;V¯Òæ}¤0âX¬^?”a0ãÁ¿>=« Z*]ºüã@0r§/UÐQ,ìIOaáYÜ>«¨g·ï; náú´ü%Òš_îž8&5]ïl¤Ër'/\Eæ,*í8(©ÞɯR×)Ír{/Õ¦ !;JÊàÁyñøWÈž‡kÔA5 +eÿ!#“ú kñÅø,Lfd"öü¨¶–àÈË•›÷èR2°&ņŒJ‰éÒ c«ïõÆÀ´ÙÙø|¯êêÌG½ÉÕÈ­®=’¦Îɱ6ø T‚S­‰Í„˜á‘6ï§N©U™ùY ¼Jj0:¼÷kT¿VŸÿ@¤ÁÙçRëE¹[ý0]kóþû&'jçÁÿÈ9ô‰±ñ‰ò»ÎñÅ–]Aá/q5:|mÅß× ‚¢N•_çVƒßèž¹ô/”kOéiAPõ`f~¡Bï°6úÁ1ý‡µxýøíiÙ‹q£ÆMC?‘Ȭy‹˜ÜÐ +†mó—,KOìŒ_®³Óž»ØVï¯i4fOîÂ"F¤«Úä^»y‡ 4ºxÿQì1Æ3Œ=ƒ_¯Ý:z‚ÙÝR-7\¸rSÐ>¶hågužÖ€Ï—ñrn^Öྎÿ¡}l×Ï7“8(%¨ fd È”„”Šð¿«–™U¦“Ó¯µ4iê¼|Ì{ÕJ°JeÄœQãSÁhĨ÷0¼g¿A/'öW)r¨ž¤:[ÁÒålcOú@Ûi§ÍžÇ|ð†™Ï-ü€^…Ôu‚¼Úgà´¹tƒPø…Ï–ã—û|³§•1jüÔ |¦gæ#8c&N£<¬V˜}$‰†)„+ßví–oíb‹K¾­QšQ¿Zµ=–Pi‘Á#6º…¤£Óho:]~5¨CÇí»J4F›Êè8|â ­Ùø58©’é•fwPäK·+¥À#4zð¨ñ<¥±6Lž•'ëØ+y˜½ÉÿÏŠŸ’‡‘ìóäÅkmÿc;ó'ÍÌ¡­³{9Óæ°áH"\ýé‘Óçߺ»”î¦%»Ó³ÒåaØöýGÛŠÜ=‡«FPap6Ó½~§Êèòmøz¯ ]ÌÖ}e/#fEckÄóÿÏ ù ŸÿœŽgóùy# 8Ñ;š@ݽeg€h­ºh—–Ð@¢ ¨¸ûÍÁ㨙ÊìþlÃWÀéû¤G yüÃOÖ +B¢v—žD œ¾€kÞ¢TFÂŽÂ4³ÎÕòó#Iúœ‚±ñƒFŒEó«¥ú…\!«ê`Szæ|Ax'´µDê ²ì¯«+%Ú…‘‘Yy‹1¹|LؘÃ;mÙqÐÕì—ë&g‹ 8úçJÙñóW‹®sûœú.ü7ÝHa¿Fnâ}KôÌ×Y½L ßeͧ¬ˆ2Ø›Åj+Ý»UTQ¤9žÕÛš|ëíwãº%’PõÕë¿D4ÊÎ\Ä]àvV|ºŽnyÅM|–ï×æÊn÷=’è |€¤»—è-U +Ãç0‘TE +&·ŠµŽ>ÿùÏêóÅÆzµ£µVëPÛšef—Ââ‘›ì“2²ðù‚öØ|ì¶Ý¥íbºàLÈ鸋â’cüÇÍ;@™¥ ¦Ð½|ãÞãR&gˆ4þD9ž]¿µ.ýx‡w'§àŸI(O«ÖÙ<:‡Dé±mêÿ°_î1R]uŸ]öÉîX!jðUc´ÑhÛHªµ¶ElJ ´ +¥5BÛ´µ¦‚ÄUéƒyÕ²*Ac¢ˆFliëBØÇììÌÎûÎÜ×Ì}ÍÜyïÎ^?wÆô?ÿ؆¤ÑpsssÎïüî¹çžóû}¿ßŸF·o$B÷Љ3XàѤ~ëßüì——øªh~±÷ Úò…_¿Ìx£¢š«Ð=i€Úd_ïo:»w¾´7¨‚™j9Ï´Ž‹¾ç%Ù̹|ýf¨Á lGRN“¶’sþ_u>g¡¯Xæt +šŽhAƼuÅO·÷äŸ$«‚ݲôÛë~⦠¨ƒx`Ú/ßrü´§}¶ ƒ-3i\ê÷E3¢FVD+ÆÓÅ`¥Ú‡žDçï;ÔI¨znâí~ïú§uÎ|Üp­1;Ø ‚r5 úgý#¯Ùðè-w, IiÖ¶íG?¥¨¾¸{?°L°n󶦖Ä3`Kûs7ßrþB¿›Í®{õ$Ó¾3 RXùà#X€tÿ?׊BÊpíê“wx•Uxí4h ²6u|ñ>pA~]ç_£kj:í¦­D„ZàÙï‹Ò}i/)ㆷ–¿ñó·!0-2–?pè„wc-\Ïïy1S¹2Ó¶ï|Á û&7>Kgî‚ÅHzÅ,gJÎÅK^( £{‘gZ×Ã=õÝß¿ùK_Å.éÅ7mcˆžßûÁ3¼‹¤$ӹꑚ¢ð´Îüú·¾OÙë6mÞ9¤å£ö„ó»?žsi«¹Ý}6t¾ý¯!Q/!à·ÿ|O°:Úç<õã] z\µ“Z²ƒ×ô|ùꨀ'âéýëpcÆî?û†ÛÚç<¿ç7þXº.þï^¾jæ‚¢ó“zŽçž_@¦Ïra¤©cÈŒ*¦7œD ÞûÀúÖö™cI%0iyÇ!éþò×7=-ÈOk—gZ ™HI•¦èˆ§GÂa½è\×ù×öšªÎ³Q½Vób¦ŠÎG@†„‡{|îüEƒ£Á¦®9îA7v õ HªK2ÂSOŸ9[‡÷¶î…òå«~Ž„ßñüÞ÷$ÊŽ/ ‰õ\%™Îô=áÚ§wåž•pG@Î +Öx"3Nç  @2õìOvyZ[o˜ƒ`~⹟áƒA7Tÿµääæ¢jË“Ï…e åæwtÍÃ37éàyððñ–™ c¿êjä?:êRÿUÀ@0Qͧ·÷¸ÙÆÌí¹‚³pÑ'7<úäP0 ý¡ó“ÙñPÊ¥ÉbfJ×÷½R禯-[)š%kÿÁ£µ?šMnÒøû—Øé®WœÁˆ ÅoËVoliïFäiµàü­onÏžÃÃ15a•q¾éÖÛçìÓHúw}!)S|ý÷ðtÌBÒS‰pŸ³/$ëŠ]f‹NŸýGÓŒ¹n*¹ Õ10ä¼Â©l@2_>òº»KÍ7Üv׊ф‰Âç@¹CÊåµÿuO-ãOZZÉ )9Á¨ŒIYÇ'é¢Óç1¤æ|ÅŸØFߦmG2Æ“ZY6'êr7•u0¢x£rœ­8~QÍL&Ò¥¨d¤³•˜jñ]*²P*Ur’YÇ+˜Zʼnê%9S…/"¢ †GD=©Æe[ËNê¶c—!2StB‚1ÓbRVÖË8HZ)¡æ“©B$i!ºêÒ õ‚h§Ú3£ª]×ðÄ!Z‹!þw($cœ¦û×J‹» ª@"!AêL9[vÀ4QËÅKÒóA&Õ”]"m©Æ“ägE½Âÿì ý•ÑH<•Q³ðW¡^á2s*7ÉWXŒjWC’Å“oa´I„±¤Y&ÓÝz„™a"¨Š›bd4¦R 6úpn~ÒñE¨JËO^×ùS¹Þ¿ÎGÆ€BaIW2¥ˆlp¾Çp(1׉òe8š–m” Aª«A9aŽó$qÀ Ü°ÄLP-„RE9ÏY«2qžŸp1Eu-StSC6¡€0 ¸ÍÀ4`”X@<°%™©\ ‰’=Q?;ì¤Hˆ³\ƒJºÜý§’ŸÄßOñ/`SÑæ-ÚX˜–9i Ã°`÷‹†KèVû˜lbïÍùLÏî¦Yº0°ûPTa6ì`ò.ȯëüktMMçuæ„CLTD.9Ä’˜KVÕÑÊáG8]Kl !tã4ÀmS—¬ÌIî:a9ÃM®qùÁÿ@4 ³`?×AþpÂTŒ +øÏ(· äp`„E%«Â<À,+gƵ‚ƒ¼óaì°ËÀ¶‚•bJzƃ +"ÙAõ|Õ¥-†´œkÇÇóX`:Œþ˜ž);FÁ Ä ÞÅÎTýÞ8ÑB—yà‚QAA„„#–κArÈÙR\Ëb¡‹¡!Z…„‘£R +æ¸K¾p.yÇöã$¦!˜Å b±Ãì3Ì ˜èST¿®ó¯í5U/åœpº죔|‰´˜­d«Îp$i”«—ý!Š;*¸€Éy"*ÀL9ç8 *û Â$ pJ‘>ä§ ð2Âû£âH*(C +„Ì+è¢=é—2# #à¢K6 +ªU + +PÌ[À2 &!„hÔQšO0yö똣´ *Öƒ7VUçr–'錥.³y7]˜ÐŠU¢µo'1Aµ³ì óY‡\#µY•/©µB2ïæþEÄJ~’ùyJ\VÕ üuý»(ÁÎðEª˜¸YSl +™˜QV‹ +#³Ïi¼ã²{t±C£~1Õ²‚™Wò졉:ä9N#nà†Â) ûE_cªì„5›ÆŒbZährU¿d²™|‘’-fŒF5)4íKþ›ý2ù‘ä¨âpËöÈf¼!!$8â³Æ$cð vKË'¶ò W¾!Ÿáˆ¸ò€3KOw­Y•ûž•[U×ÒÕ|Y6ÕLWOÍd5“¥§TDäËȬ̈ßï{}í²s>p–tœØΖà +ƒGÃ!£ÇcFû®›1.´O>ò؃mÖ ¯9ú†B"†v<ëÛƒh£æ„´ h9/[º•+ÞRxÂçK[Naå«–ÂùV2ïXquè^Í@wHmw¢éЉÖÂ^)<],`èäXœ¤§(˜-×ùGF”¡ç˜EßMAÒÑyÖ!Êÿa«/úÏéaÉÇè®=b”K¬ ŠºÌ eñÌí¡ç§Svœ—M^l„eX.©bøkF0Y‹|¡û¥Žœ ýÔ•š[Y33¿¿É³ñPŸöÚn"žs¤•ùy¾P<¶žŸ.ð#=Ó„ùý|¡¹»žÆ`½ÍÎ?÷ï✯yÞ³e¨Rù¾}ËrFÕ‘ýbŽ·!m#™þsQÅ3bˆ3ÝŽ“Vû+_YY×/†Á„•¦ÙHt®Ù±¤ >ëmˆ§¯ _ ”CCP$EÕG?‘MÆÑID!EŠI,'(”ÂD8K e»q”¢@”Š©˜Dô¶äÌÉåŒ g¹µð2~ðÔÕ_½ÿ‚߶mî+³ñTÌP;7œ¿£ßvœÏð'Õrby@¤¬=C¤²µ0ƈ…gXQŒÀáÈ Ò‡&÷œJ™éªíPQ"Ò-jÌ‘6ÚŽ°sDÛû¦9+ _ñg#€ð+åOª7ËJ”…—¡œ®ï[,•è09ÇzHA±ó‰‘qXÝI*Œ'ð)Žü²<Aìw+‚°¨ÀÞK8Æ¿ós.Ç#é’NÕQ¿?p‹urÆ·­ B¼„ö±á檋‘³[šÅ8ØóÓò×ã…gHá8#öu׋¬ HËÙûl:öFÜóò–ØÙªáüÝþ¶åü~8AÏ¾× *ÛNÒu< +:3¡¬Ë{vsqsœ† tÏuE“«WšÍÙ,l¶—O, Ñù0ŸþÞè;#–Ö Æ/< ƒÓ¬a–žEùÀ‰˜‡Økˆ6÷:Ô&ç.ÌÆZB«å;VÊ6šr#y$U#Âÿœ½“Y°é²Á9²€)K©IYÏ]+ô²©Ž‡nVñ‰íOl®p¦ŒtvhºQØ×r” ûAÄ ÜB*-L qîR1s8ïí”ZæЈÛîìÇ‘ù˯}½Ûøïx>5:¶Â'ðö×С踱0ùÓ³^˜]8°}ëä•æ 9rSæìúØžòο¥SO©ÿWÎ8iâaöÈH(—ŽÍµ/_ê¦Mù‚Žk\Ì)Ž8rí¾WÃù÷æüm9Pê‚tL¤ÆÌN4Ä6‚ƒîÑõAk7Gá9Æ Eò¶ós-ò‹~Zù’ID<Ü”?L* 9å1®kþ/ý›W^«vðn8ÿ!ÿ¶ãüºô³ï‘A4S &„[¬n B¬RºŒÃäxe%’Œ ³É\¡´Éœ"hsV’dr˜îŸóasxÃù»ýmËù½è_ñïú c£Ûm3Ò¼,w­xW~ñ¸f„[a[ø#üïŽ]¢._h8¿‰óΫ;ù)vƒ³à2ù›òù4ä`C4ú~ŽsÙÙ¢mgÛÞ·áüýä|Œ¤ç8ˆ§DËIEÍìâ”. Ô/¾çß63› +ØË<('Ì]EQ¥ôh» ‚2¡vð~ÄÑpþ~r>ˆngsÈ’7G äIì8ã¨b0Q-+E`QËÃaDE@BÏK[Æih©ÌÃ…ŒÓ¦á•+ÿ]=gí ÞpþV¿]qþÍNUÛuÜ4™*8ÈÍTíÀ|I÷W±$,ŒFÕ­É.;ç×.,IÑ„ðòSÚ]{Ÿ('k^¾)Ÿ³ÇzØsR¹$šTùÄö·n8—œ¿«@4 LÁ)Nõ€nR‰ž£ŸÞøÌIg‡šk%K®vA»¤aI˜—øÑ¡à’n¹¬ñyÎoâ¾Ñ2"Þ9ÑsR¬ +W⨇ãMù|#\ w" }2†þµý­ÎßGÎ':nÊñÈŒ„®i‡S™£o| F`~ô D¿o'ŠùÑIÔéæÀcB¤Iî¸IÇîª+G¤ŒKÖÕGm淪h8?9Ÿè»ˆ.GpPG!¡tº^~Z,+àGW颱R ·è'ÚK§¸–6 "Å4H#™¢ vƒØ“h83çÛ¦ÿßxOÜÕO„zêaÏ¡&eMõ vA»¤gqļ°-<çÂ(Å%k‰†ó›8O`(SUá:v”gN:ÃÚ”ÏYðž´µU…’Lwû[7œ¿œoç èùŠfŠ6²FãØŠ8…š i£oéRÝ6BÛÎO±ÒeNÈìß”O­Á±*·\"b<÷%êz?uEÃùûÉùáxÕ6cЈ&•yƒ£™¢û7ø~¼j6´O—Ëf’C¦€=§Rᢱä×n{ ç_ŒóÑðC=Ê%x¯‡¥—S¦k´KxfÛcdt ¥°$»¾÷yù9ÒÄ#+9ùÒ[ß;øÈÇp('½üÊçžyñÞ—|î+×®©>4ƒœ¢Ñ±â?Ýì¾øÉO_{ûGÛίyŸø³¯½yðijLÅÌ,$ÖϦ|Ö¤A9@é®ú9]LʹS&<>Ñpþý8¿ýŸØY–¬R¶KúƒßþžåýäÕsìòÐJýî¤]Å•çXÉŸyõ ('—”gÕæò‹SvÉ2³c_|óÛäïîQëgõ†óÏÿ{Îÿéðsc}Dxõ ûÆÛ?ûÓgI³ŒéBû,Úƒ§_xçÝŸUô–œíZ«ýÇ?ýEÄó¯÷W%³O<‹ö®7—˶b9ÉèªÔ³¯~õ[Wž~awZ?«7œþß®8ýD0Yèö?Ø/óب®+Œml3^C0Kiƒ#’J¥Š"º$­ÚRª„$…Ø!Ž µIZ‘T­J#"Q•6¡¥aI6Pˆ!!bUhÓÔ!mCjìÁëŒgƳ/ž}³ÇëëïÍAó— „dUšÑÕÕ}çží¾™ù¾ïÇË·Ôi²µÛƒ¿*ÏN³[ƒIeÍO*-ùêTñÂÿ»Î÷FG-h€ØX—ÙJ*®P²ßÁè ##fnUÁ!F¯|Uð±Äصùâ*øâvd‰3ˆƒ/>N þ}ŽÙ°XÔrIÓ!̬Ù";»îð0!’pæÀ BBÒROüÃà +[¬{,^23tû¢M®d¦ w÷{H+ ¥y¶HÂLZì##j üÉ@D‰½éo¡Ã=-gÇAìT$œêôÆ#v‰e°àPÒé„Xì¼ Öœ‚]JÈÁŸ¨Þéà@|äµSHÞ >ò&%ZÌé7ìOL°¯†„¼^ 8àRä˜ä”¢äa‘âëŒÎ¿Ï+2¸Ã,l¡d·ÝϼÇ0§t>HŽNØ‘Í,@$Y0MHwt»¸±ñG¥‚YSy˜ÌìöÚ|ø£^Øíê÷ÈP®„üf6VÕ‰ÔÁNB"£J»ÁN8!lÝ0:EÛ³î0¹X m£·ûéG…0rFXFJóH8³‹©„É&ä…åü¥9ËËàVˀʰ¾„Òç ¹#£Ì¼É)ð?éçVu>0舌ƒ (}ò÷øáío8…¾2»ƒF§¿¢f»&+ßìô ö +È`84n³¾Úa (Â#<²€ðd—(`úÀ;È æ³¦–®ÏÁ#ãZ§)4¬à2«wH@sa%2ˆZ&–A”>[é›)E™©B‡Â& X†´ÌB%BDI~é„ŠB@×{­ñ ~íA<…Y(JZªóˆœ"çb& bé +òP‚XrJÛpô@,3ù‰ÂÛŽ<¼êágé$ƒÍ)ó- )Ìÿù:øE%‚`)ííÖÓÀ.Y`MîO i@\‡‘/D‘ ‚lfò°’ f’MÀœ@¹>´õZñ{ ÇŸ1¨(i‘OQéä! Âüx»û"ÝÑötBWªv:I.êšG° ’3§Vú®A¥±À2F+%85!ô&ºšÅ»—¯ðoEçÃB^œˆ§àOìðùY0h…ƒpœÐ»´ŠÒ[Ôå‘ÅÚMUEsqà˜ÑQE  +ž¬¡•4aA t%w+ór³~ILÈKŽ²%wœv½U˜‘™XÊÉÅÀŒÎ¿=ß‹œFi$&þ£·FQþ<òÓ ‚IP@0ÁF-0¤.q` Š'>[E¸`>8­à9± ð(p +îÿø›üPøMVÖ>O ÜH…½Ý`–[nlñC!ÎdvÀS.òHf4Cž$aAc$‘Û3-ä4)±rsášÃDŒe ÐM¹ Ïèü;ô™\ç;CÈ|@ƒ”Ôw’*wø&‹@³€$k ðÜD*wàž]`ŠuŠ/B FãÅæUÕ7Š–Û@ç 4D ,ŸqÀ T~×Óòfþñµã&—  Ï]l`ÛÒ˜ÜPìÌ¢Þ±¤xAÕü´!i/¤Ã)HÕaT_Bš>’êk±caÁIu9³$9{áÎRßxa¯ës2÷Úü o GóO¹€ÏèüI?·ªó oÔE`v`튤ï5·h ïÚõ‡ýž×UG¼±¨xŽ'¤ªhpš@½ˆD+À>ÂšV`ˆÆ"BW8…X<·YÈ¥¨œÙ%a›¾rŠÚï0Y?ë2C$§(F  Ç$\%„#ðÎ ) +øã/ÌÔâq5¥óðaËž 8ˆJç„¢2 \ '±”Æ“öèÏ6þc‰ IŽ]ô?»XH’êß&íÉ,m˵…ÆpÃŽ?TË¢ö…¿¿f¯½Ó:À›¿\d•N«—ÛVFç¾ÎÄÇŒv_ÙU·ãך¼šœBÍ´"FþŒÒvîö†“6oäšN¯ÉÒªƒ­ÜâC ö(QåUµXðéw}Ñ«'üÊþ#ÙÚ’¦Kͬ›?¹ž5}–ßµq +•Ì_|îÂ?d«á³_¬ò™ŸQQ×k¹’Søú±ÓØMxHylÓÓ ß÷÷+W5ÙÓgÎáþäÛlUTשÎÙ›*·Q148aq‡zûÝÿü¸;08&•'4„Û²û?ü´M=Hªú¾×Ž9ýqŽ³tÙ×òŠçbQÈ-ž³ðÖ[<4ìR‹pò?µõ¹‡¾·Š#§öxy5ï /„ê-m=g/(“~ý8»îà %6×<‹…N°¬^WΚä±…ä/íÙÇ+’„+´Žº”£–ø3¿ðþ¿hŒ·„qÉW–‹ObLá R¹Å9³)avø:xiÌ-£óoOç#Hý¿U[z·&§ˆñÝ5ºl>_œKhìò$ŠV“?#« „žÃÇQñÖˆÅÞøô¶y‹—^¹¦ÓääÍ,ÅçÕ#'ƒãF§ßî49ðç÷Á\ùÓŸóì÷„É.œmóEI‚ß½÷€šœ¡Õ¢ëe±z}v’ãÓÜÒ†%Ö<òÏ/»ÏŸ뱸 ¬ªÛ±àžûßlºD‡Ž"dýæÍ´Bk`hí¦Ê{—-ÿøz—ÚUªy|8 ÜDf:y¬¼êæ–ŒüÏÿf·3:zâü%Žÿõ•kÀU€ÎŽˆšj5žÑùwî3¹Î‡ ¨ÌªàwGa Ñù`ÎñÓçU¤Ê-f ±ÜÐ[ƒ‰ñ3M—Uú€DR[Gß1X½ "[°ÃMhÍÒV×îW¾ñGÀmUÔÍ-.šó ¬Ëè ´Ì Ù ¦ÖN£03ÄF‡•Z‘¦$áÅßî]þ­•ji1fiwýîO4¶¾b ¤BÛƒõoHoŒ¬~œÔÚðd ø lR·®êØÕΚOE¸ƒrà3§Øúì/J¿x/Ì’rùÕ®=dù^ñCáš=øíGúÁ¤Â°úíjÊ|FçOú¹UïKª¼Œ&w¸µÇ²ö‰j®xæô’ùÌ`²;rK­&+¿ÇìÐLŸ©rNÁËŽ€Õz›÷³Î>è@ö¼bu7Âí(6Ø Ö}pÍægžûæŠU€³$'0îpÓ ŠÝÒ»—œ~÷"XÍn}ãY(æƒOZ‹æ.â1§h´²÷På ŽOÛ{âãJù–:¶°§qþ—/í!EÍö²/?ð—3Mð Ó-Uà!8Mnц§¶r¡Ãv½…$pœ PÆáo±‘±.YXaÑ?çí0Ú×UTié²k)GÂýõ'9æªÿ²_¦AQ^YeAqG7ŒË˜1³L¢qÃŒŠÆ b40BÔHEPQ&€»¸3(n£(‰Ž"ˆÈÞÐ 4Ýt³È¢§¹óÓ²*©T9? º¨ï~÷ÜsϽÐÏû7!U^ëÈÌqêš_ò>3羈4ÂKåù¥Õ$ß;|ìx ¶¢YÇåëEÙ”‹µšïá¥lÕuúü×û|Ü ÄèImYeMhØ.žOœIÁŽBÝ´¬†ü6©ÔÏeµ Q±\ÿÖÈf“.f0‡«Ä¯b°—yúô0À&_Îäî½.€UÕRÕ¤Oç :6çÎÿZ[#«:U³FÛZ±£8ySÐzçáÓ¦f·™Ù7 Õº#ü­RÕœ_\µŒþÂÐœ7V]ßrîB:Cÿpò>íä÷߸™¨”ÔNvüÓÎÁ¸è ˜Í¹óˆ©À 0´æÊ;øsŽs1ýºè;ê´m´…¥¥Šœ@˜ƒt¶Þ›b§mhÏîh(è\ðÙšaPð6¤AYßÇ%p?\2kW|»ÖÜÂV´ Âó³*¯¨lOüJ¢#(¯P´µëÐÞPí’^¢ ýU›Úo‰äº¸Ò‰NCFŽ£°’*YïöÜBÕÌ.\ãñ¤K mzÅäPÔßéóÿ˜ÏÏ}V¶kß1£v‘ñ å%·äâîÉœ~ã6ÜÛ±»´Z‰>täPú×þ£Ru3l„½zêšÙ¤e\‡Qþ!Û™=t*™YÜøÈw>tvqƒÒŠZ-ÿõ>? raéw?„€,,(xdèë·I¬ÿQïMp€ä€úñ“9lôßõ$¬o:êÌ3®Ïω›…ŠM™ñÉôÙÀ“ø™uë>Ä pLN-d…gº“+i©“s‘çÓÙóÿkýs]óKÝLç…t7Ü*©ôâÒÅ‚Îá2é³Ø‚»eŠQ1n%¢<†,ùp’#çbV´$™ôFVâPÔ³;î0©Ø”lTNÆ ”Twúü?æó!ù 1ã]—®z\Q׺°ZU©nák7öý‰eRì1,’kZuß!#™‚H³\®Ç%UÂ?X†¡;öOHÄŽŸM! ¦ ç6,ý†P¨{ ²ŸôÙçLå<(`IÚÏ¿0 +äš6Ýø‰|´í:Ráç¯Þºg֣߮؃ä!öîÙ— J"?¬Ö ±•ÐŽyKVðœ}/ïAaùi `©å<£Sä¼_PÂBjêá_…SH”Ke<àð¹Š7îÆ;}þŸ÷ójŸ_¦h>ŸO™L+©m®R>/ª¬Ã±/óôlÀ +€)Pg Œâø€,HõñÔ™ýdÍ`{̾£¼"‚™G’/gšuß³¾¸H‹”|8ÆK:mæSg8ÃaòÝ í¸—÷ìRÆ t*îÐIš‚ùœJNíbÞãðÉä¥ƾzàšS'Ø„Ò`9`È1ÁµX¨Gº¡9ømhÓ¡tïOœÞØ®#ž’„lÑjÖn<çæ—0Å*ŠÁöû?aöÄ™¶ŽŽ=ôTR'äUݪÃás‡)Õ¿Wh±Ù–½"bóŒ4?•ªk[t>ÿõ>Þ‚_CëÀ-‘àdá± [#c€6ßnà¶K®R=,,Çcƒ8Ÿ Á¼Ì¹ŸáWùøÙôù dêhâS›s©Y$1²ì¹!(Œ%°š>r²Ä{]C|µ`¯ðÒP€/¿Z6Ya8ï ´_¾Ê—0*d‰±‰5ñÔÆï[÷[Ûôª°¿MŽs¾´:!yÖl¡€Ì‰ôm‹¡yÀæ(=Ïl‡ ˆÁ~ÄÛžk69žt ϼ÷Èi(sNG#ƒèbº¸-34µ¡ª¼¢ráØ9¦™Mßû‹oÞÍ#¹H8eP³¶UÇlÐּ̼y÷ñ³âÅËW›wëÍ,©„¸“šyˤ[oz\:Gc/®ˆb¨^ÀÜ–M95‚¸nãfŠ!³h@ðùìÅã?šÊ‘NŸ'3êÆ–°7£×âNŸÿûåÕyÆaXÈ.ËEEL¼Ô`Ô:êÔLMÓÑ©™Lb“Ú±Õx£Š…xw¬o(¨Q£ÄŠñn£¥F’¦j&©2Išx£*Š‚‚ÜØ]vö, nŸÃk:ý£u&Nfœf`ÎœùÎ÷½ßû½ç ûü~ïcùü/Îçø…F-HJ©oñUÔ5`òÅèâÞa2Än~àÃÌÃ"¸·1í}p”W¢ç÷µ|ÍÆp~Ò 030zØÄé³A"LýË—él„¬æLž9wÀÀ¡äª xeêV(‡:€PðÑ‹NÂ*«ª/IZWëôÀL¶‹!_½q™ã.§‰€„°”%é#”É®b`ï¼%o3f €Ó€€ÍȨoÌš'ýKI)[Ðê”ÞdÙªvAQþ[\>î¥f—ðíG|uû|ñù„ÁÞ,U|~µµ1¿Äµ ˜DPøµ[w™OZ·ìðZ¹à“ÿÌ-„W£^| O±Yb•&3è;qò ‡3þ*h} ’Y’°‘€å«R8½÷™dI’¼)­õïÓÏ¿bu×£ ž½øo²s™I{ÿ胙PÎ cEÔü5›ßÛÃFôâ®^*9”´Šôøkêœ-f‡›½"L‚tÆ¢T‚&²ÊRdŸsþ‘£Q +Z ¼çƒ ‹§ÝÙê+Ò[ë[ïìX}›÷ÁwïÝ>ÿý}_Ÿ_j´‹½7ؽ¤Áì’™ŸeLlY }®Çâlš>;ÞÏ?šbe +j€*ÖwJl<Ü.¬0 äñÒXhP “CÂz£)€—±è,ÁpøìÿT8c´†;À'Œí× +JöÌøÅŒxEðå¼;<.NLFVH›· +‘B/ðÕ× ËPV1Ø õ*u/7)n|zÜü¨§r4ÙPÔ—Nû€„ñ‚lùÕ¯'Žye‚( R¢ +¥bx ܸ.¬wúÁ£ÔÏ$ÛŸór¾Ñ¢b¿‰ã\"Y¥_ r`Ru‰š‹à~ƒGÌ[ˆ †"d|‡€@'e \˜myÔØW±ú»~\l´—YÜ·õ¦nŸÿhŸca×ä˜7±ë «¹sßá3Ô執ìØËÏ2‹É$@¥éÙòÿúÁ§Ï~‹‹¹$aÃÉ$Í‚®W?îøXC#û#@^±¸*-l”¶‚S@zLÜ<6TmPšª 9-6UÆ”G†–N¼È×o—òˆj[ñÆ?ûŸèaϳš[PÆåqÐöTÊð×<óì°ÄäwHKBN!§ +™Yúͤ¬Ï²ÎQ>Ÿ×ä‘JxYi|¨Ð‹Õ±º©“´„LpCÁÙ× ¾ºƒ÷õ¼_ƒÚÈÏ7!ç­’*&•ÓBølŸ5o1»H~£°œ’x’‹À±‹ãHž°$Qºé¶ä0ü u‘¤¥;àÝ‘ª—_Ÿ$|[>>¯ãhêàÊëöùçó¯UúGì8”ѽ[ëäŽÛç×})·ÊøäÂ4@ÔØáÛš¾_ùåÅ`5aÊÌ]/V)w5hÄÏ–%Á7ØÅÌðÑc †u¯Nœ +»€6žœ,]¼~›Aê¶tá'Éa‘3Þ\@乫y¬Gôá®\êîa½é, ŠÀ£Ÿ]œEyt4¬RÌo§Îâ\ÐJÐêó!=ñK©™ä‹Þ^« +é 硱Ҫên—Õ”›l%&‡¥éþRåCy:}ÿú{”ÏhÿlÍfç½ +“ëJ^)Ø9–yC('„Äç«Czí=üpÊjê LVð­ ´öŽ?Qa”Z7oÑ +  Ũ³ LŸ¾ÿC¿àpáœ<þéJû Ö=œá + +ú­ß¼Z~|:K¥1Þ™§Î²ºÿÈG *RäÔYñÌ8³ŸÏ$‘–]ÒM(1Áá¼Î…«ùl‹zxG«´Ò¿ð^±ñK#‚ÒªPó‘/0YXf`U¿J‹2ê­ xû +³ÛÚÐÎòõÌî¶R£ã‰ønŸÿ_ÿ¾¯Ï7»ïYÚõVOy­³Ì䨱5Áí¬óWpõ‡Ž¨2ÛõîJS}Üü¥~ª zW#–’£ý‡ŒÄ–3¾z«Dá î!Æ¿»6lßE*¹Õ|š§Í«!?XFœ-ð°cƒ F)`µ¬ÒJ° ª+Z±÷ÈqâÙ+À#ñ¹Eåp~öüe}Ÿ.nÍb>ûF!VœÇ9 pe’ؽDâðÉÿúäm‡hÇÿnP¤h·Ó'¶Ÿ7âëŽÃ§²½6iÖƒˆg—¶W_IKq%¿˜àÇ2é}¨“/ƒõ"ƒ ×nýçáÕ¸…GѪp¯Éeò´]/©¶µúƼ6ÉOê KX‘\ÛÐÞíóíóAÄÃT Ba)÷³Yçà! ¼˜Ã—×¾“¶›q¹Á!‰OÞ”F ×=ô§£æ¼µÌÝòBnßu¨ðÞQ?Y»n34¶Ö7p·w‘½øçÙ ü´%úZ¶ ˆƒs拧%ØÖЊD ‚Æî2ƒ4°ª¯µˆŸðh&x‡º%zó+ÞèÿÜ^äÊÍ;,­N}·ÖìdµÉ{ßÒåŸ9¨¨¼Fœ3² =‚Ïý ÇK³ðù—XýàÏŸP'V™‚™d@Ê6Ô987%†x2@x°¿bÍÆÀ®åò"¤aíÆí&›RÅð:T¢Rë.]»m¨s+ï¨ÒŠÆI>`N~ ƒ#ÇÿÆÉÃY²}æÜERíׯõèÙwåªTQ¨¶v¯Ì‡E›ˆç2_okL{oñÛÒP'l$a·Ï<ŸŸ}«†üè”ü¢q¶ÅF;?óó9ù½z÷_ºr=Œâ×ÓŠ«Œ)ïî„Û´ lþòUÐ H +–mMí‘ãäÅBÃyÅÞÔMÛaòÊÔ­@}Jl|hxTq•ùfqeÐSá‹“A4À$x$Ûæ-bGê་TV—ÇÛQc¬'†`î³–°Z¢×[òsd6²28=ö-~wYe‹ÅåŠxæY +#Œ€}£¤… +`32OÑP­ÕÛI›cnìàÝ‹jŒüçÈù±^Ý>_|>&¿Z]ßÄ ÖÑZç騬ugçC˜ž€``ø€)xîòMæW¥ležI 3W®ßÂ$@æÑdó0ãihK\½É”-ƒŠ7þŽ·" +o^os§¡Ö(ˆñÞ»ïˆÑdolê¨îBzsËp!Ïü#[TÊ‘ž8y&D‰Ù¦6 +ÝÓbÔAaŒóîTþ³h[H'¼ˆ  t€Z‡«w"s~_÷ &;5K‚f²¹å8*Aq@´4t%¡coöaò-> ?:Ëeñ´‹áÿ¿¸º}þ£}~…مɯuµâöñù ü^ 'Ï~£ÑFìÜw¸ÆJé5Ô¹bãÑî@Sk +{,ó˜W¢‡±Ik7¶ÜóÕÛ!¹ÓÝÒ!<ÌGSî‚¿Á™ ‡Ùˆ|pOÝ–Î ²B; H¯olƒÿlT|¾J³nËR1ùįAhTÜ5äG‰üÔ!Š‹ÖDp?“õ-1ÅUŠ¥[¸œºe/ð:z¢@ªjC]û}ßØqã‡Ë)hGÌÜ…]M…R©J|> …쥶ÆïÙoÊÂ%„¨ïEÇNí>œQú/öË<¨Êë ã— z/Èæê Æâ’¨±ih´Úª$U¨k%1"* +ˆ hMœª™Ôk›ÔÔ¨qEp'*ŠÁ-•J\ãFe_/îw‡Ë*·¿ëétú‡c'Ìøßœùæœóóž÷|çyŸ÷9J=$¸a!cûc$:Ÿô·yËZ½… ¢ÁñýÏùŠq×/ÒZHIŠú†ViÍööÕ~,‘ù'mØÜ©óÿ—ηåÞ}$÷ H?s”šíE•µ¼Áª±¡•ûéKC_6[* kŒöQã~ü +ƒ&O^ûÍûù¥\io=Èg÷Ùàa¯Í‹[V©·\*­”º†'ZKËãrÕÂeÉi7êUZK}c9…O‘1 ¢Sok*WéÍÍOz!B鬵É>/>Aâ./Qj öf­­u_"•í>x¬J[Kz‹ã­É¿÷ïÝ_UgÅáAÃ1;zQ­¹¸J¥372Ïéçkt|":£Ò`®olÅrïC¢â–ÒCýú\jd©éÅÕêj½ÉÖæØ)S‚;2‹ lŠmž>ÿBSO'–ǾÞoÐ0þ ñÆ„†‰~ðž85¢÷€Áôà@\Â*I—nül +;ô³Äà‘!l°Bm€6„c¬Î˜˽@¦17ðúülhlâ*þgGòåøÈ¿Ðr™Êdiu–ÖIÊ ÎîACfÇ$j­mjs ùåé˜Nÿ<_m°?³Th̃FŽž“±+ô6zt¶6ž èÌ¡×ÛQ&ð†¡I˜p¬å5º9 KºzsôÖæΚèóÒ…KV0˜°b:cúÎ`z,^@ƒ‡¼26ãX yæB6˜-â«_`?P„š¦Æ6B• +ÈlQ1KXÀVÔ€F–·OÓ fLqßM†YáÁÛwàй±KÁíõ;*Ù©¬o©ã!,l2…µ +f6pMÞ/\wêüŸèy¶Îÿoí'Äž(p˜Ø ”‚4@B… ›þøcp2ƒ‰6€ +þyöžyÔ¥Ï(Q¨À}X¨©C8HÕz›µÕéß7xɪµj…4¡65ñµRc¦y1ç)ã«”ÃÌÅ Ð~ñê÷wÄü×ôàÖH„.;D(»æW(± ñB­PîüÅ®¤Ç’M|ƒbV–ÕêH––øVìˆXˆ\/ñð¢NZ;bw$Üsïq {Ù“v â­64À½¼!jš03týÂ|§Îæócu¾ëéí\â8_‘…‹ª Š•©÷ŽéU:ŽžwÔ¢÷$î> & SÐü`` ä€O¢h^ðÉ0°$&ÄqD¬+²cø„µñ“¦2]„X첕|mlw2;Ìò  + Ÿ>YÈÖâ„Ì_31ö’?u±F[Ǥ¨\a0ÛMö&ê +•n~ìb‰‡\¥7–)jyßË+àž²aãf<IHšcš®\ãá…·‚®ÞøË;÷â«ÕYÇ…Ï 8Œ«itöSiÇÍèq…Zmn¾•WJóo»ÒP dUòKHèä€àä +•¹K“ +kêH14‹jë­NšÅ*£ÊÚJ¥MEä ?ïî^ŽŒ¯Sç?_çȯ&Lâ¤DñîÙ—÷ñÓç`rNyûÞ47¹/ ð8Çu·Àœ]¡aÀ›‹â<¼F„Œ ÿÝ ¦?l¦9‘Ã'2Qøz[›ÁÞÎáþãîcK‹I/óìW×rdFGqµn^²ÊË; ´¦¡+õ‹²EØC¿SgEAÅÔUF„|;¯ÐÍ]¾}ÿA4?>àØ¿y yßÐ椹ëÀ‰Ìçï»R„V¡àÞí‡x5k^¬ÔóÉéä*!òï;`ÑŠd££ b/­Ñúú°VÃ'ͲZ-+Œ€™Í‚g¢rùÖŠ¿t—°¯³îN=J}ïÁã¬ËB@æ—{RÅéƒ ŸH¤r.P⦠b#˜ÒŽalaÕÚ ìîüÕ\\r8ÓÞ»u×~œY°t…_¯¼Ò*ú·íM•È¼Ÿ:[ïpÂ$… +½gÏþ7–¤“=*t’©Ù‰¶ÿ*í W¯k7~^RSOr‚xwêüÿOçÃH ﯗxøœºp ŽâOŒùëŽXîXFg÷ç­;`æü²ê5ë7Òÿæ™>Z6óÊM‰WÏ×Æ…At5æærî}ႼSçÿDÏÓùë?ù ðøîúmlÀhK$ú?úô3FS ;ùÍ%¢€û㸉S@&μxEîðþ?õõ ˜öNB…f9úÃÖLR ( v”|AeMʱ3$ŽÔô³³ë™ÂÍ«ç•›MMγ—s»ùîØwHÃÏ°tÖåݶû‹â6æYš1.6v“:™iksW«ã–'‘AHK“Ö@¿p,T¼ÿè ‰»|WÚQè—&iˆ)×nÞ#ÖØ)u‘S„øyùçoDÌYó7u8óŠ+{nˆ@ˆ6.W›):[;?ž.à;uþ3Ÿ«ó‘÷ˆü +åinu ¥¨”ÖÝ»øEÌ[lnqÖ5:ÁÀì˜Di??°$ÉõCFÄ/O†Šá^,[wî³6wT¾ÂêdRp‚uI€˜%&(R@vî@έ–æ¾CéB–ÌŒŒ¦©ÐèE®abê±Sôlùb'Za¶é³m4/^ýMNôE¼=õ.÷é.óö—¸Ãó]Ò3Î*5«£uNt¬´«‚_g´ª &*RwÙÈÑøƒ3ËV­ÁΘÐ0Va S""E,ˆrëA~—®Þ(.×MDm*S=i†_ßàJ­¥Öèˆ^šD“O‘4o<,¦™r<“zQµþ±B7~ê¬þÉf†~?ßsHÒÕ/åD–`c ºÑ]žû¨¤¾ÅIö©µ´ ðeež8f‰ÚtâbŽÔ¯ÏÊu›:uþóu¾Þ֢Й¥Ýz¬Þ°ÉÚꬩ³•(uŸnÝ)q÷:u>›¯ùµ;RŽH<ºI¤ž>½xßÎ+ÆEgmf.•QÂ$žþG2ÎWkëÚ褤Ÿ½äæÕ3E,ñ~P¤@ðÃÞ —%Ó4:X«¡° +-ÝN=|f”‡O ù¥5ÃÃÚà!“ߎ*WÕapùêux¨µ4=*Q°\æ·9™ïÞÃ'*Ôõ8lt<>ß öVÆÿ¬ì\ફÈýrî<ÂH¥ÆÇÕÒ *cC•ÖÄû•×Ç̈\PX¥f/ô³ñ.¾ŒysJˉÕƧÚz;oó7ø?Âþöý‡•+Ÿ°Ïürß!\åoˆ¥o<(P›éç=+:¾«_`µÞB™»(Ñû_ì—k¬\UÇÇ^ÚÞKïmK h©D1òQñƒÁˆ&‚4ÄÒ¢RiQ*Òj±š(*BЖ¢Ô4 +(¦ÆBP¨ PòH“jxXÊ}Ì}ÌûuæÌÌ™3眙sæ=s·¿3Ë4~(MnÓä~™ÉÎÉž½×^{í}þë¿þç¢5áŒÁ.Ù¿p‰vÁÐW6lbSÆ¿µýNþÒ¡0±Å_þþbÏ`Øoƒ+Ž½„^ –ŸÞ÷  ¯º|ÛÎ_@D†7K¡Žø"èëü³ÓùÜ”uÏî}Á†,¹fÝM†×Jè`ÛÏ^ñâ¥Ë/¹œ—òΔƒ>qyq7lK^:Pàaûλ@&?¾û×~*ÎóØÿ¨€Ð_²`ˆÙ`Lr¿ýÃÿÃÐrÞþÊ5ŸØ´õ{@}ñöÌ?^ajð‚‹Åæø‰  K»íû;‹F0 p `è°oÄsÃ×·àÈUþ¾?ûÔ§?wómÛ?‰ƒÙÏ~õ³fµÃ_Øç{éŸ@åÙ—ß _}ýFAü6ÏÍ» ïëüsô››ÎàÄÇ>oÉÕ_¾Aè¨>rT +mÉ…«_zã8éœö}{ö180¼’ç½»÷‚Ïã[jDÖªS&¼®¢4äœæÑ·Þ–”RrìÝqDþX8óê±wÙ{à) Nr‘nTB&H’…]nÝö2…Ø0`Ç»ïÿÏÛ aË¡k׃œeÓ ·l%CÉü>œBâ—ƒüû䤔•­;~D~á“ób i_xÙøwš +NÀÏž‡~Fã½3Eïquˆ@x¸àvç]À÷uþig¡ó‘ñ¼SÞ,}‘ú–­Z#…æ–Ûw ¾¸n…ƒØî¸ó'ä2}ãùÂ+o²ã£Oöó×í ﯽñ›k¯ü ‚:eܼuG`áÒ\¹ʘHÀ׎Ÿ ¤î?x(O¦Û 4óu_»5pþÊ|uÖUŠ:zèÈ«”›SíøhZ¦ ­ÜšLs^—¿¿Üó°?;|ÏŸïú«ú:ÿÌ:´ˆÈìiÝŒ Þž{ñµECË|äqú ˆæ5T®Ç„–S¤éÀo€ ùŒ1º<r5¥Xˆg-¥å˯Óm<¢•÷^ ü;¹YV/z]Xkñ€+B…QI¶ * „sÜ2ÈÖÉœÅf"ìÝŽ/¤I ÑB¬-VšL+7ƒøijÇí"¶ñéYHöᜃÈ.µ%¦%”ÎHO:7m¹}ÍÚOâ-™1¸àdº€,qŽq0––Kà9JfŠþ…ã!¦ñ€Ò‘¢Ã5² ¹,y­çíŠ×®÷nUȃpÛDŒ¥ˆ–¢éV;e·k9­¨få+^b*/Xy)"J(.™13NØÀ·ÙJNžwAÞ×ùçè776|Äš®ÛR”HID;°TOƒ~{ÌϨƒñ„⯴•ÕódLJñ­”ƒ^™ð+ÅLÊȘU² +Rv;iÝNä˺]§šP2(.Ð2»ã'š5H€6%$öEÞøya×ÈY¿jƒA·•ÖŠÔŸuíOò‹d!<Ž†+ÜžœŽ—ì´å\2®õb&q8 ñÏÚ”áHÖóש45ÝAæÞ,Eúµø(0¼™´9ᆵóOû›«Î—[¢È¢ö‘ú<é3â´ÔL¢Í•)Á|P©ÈQÝç|àf@&ðmÌ_@E¹'Æ&Â9« +PNàMJ€h>BW_vIŒ±Æà4bO~ù´¯—„ꃱ8 ¤±•Ï‘˜&”Ó÷ìz’7Êõ˜fXÕvÁ©={äåÀâ‘}ž §r¦Û,W'&BÅJƒœå‘ܨ}TŠ]n°®DÕã°—n&-ß›"f%òx¾LݤVFu[³êtÜ®ŠgL ¯‹ÚGêGµR©®Æ£ÙHÖB0ÅsüEÀO¦RÉ‚ÕV¦Ý°Ê- +¤ãv¨;´©ŒIÝ£1–Frk9Çéø–LГ}F =tàéÀÂe¿ê°HG»©>{Í:¾F‹U…b„²B™RX³ +nWwZ¬¥ÃÈd¢ÀÛÁ”'gÒŒ‹Èdy0žÇƬ…±§“È9_nÁØOuÜ€_\¤°\ŽÆ,çbHØ}Þ|_çŸö7W/åû”ÔçýŠÚ/¯*%2‰ZÌ,R¶„Ea]ˆTŠ¼ —BïBÅvG1Bƒ¢aW %lV!XK¾ºù»‘Ub -³Å)2È_ŠÄE¥éÓA*3EiÀ ‡Rö<8od×¾ÇÞ£áÌtÊøüu72’µ4ÝiŽEøHm"Î3%ÔK}*éÞðØ‚ª‡s\á 9•ˆñL}‘ÒC´4Š&kóMT=Nè¤àÕ¢Ge–AFç‹ÿ–« „‰„¦ÊÙñɦüe_fñÏÑ”ªG Ø0KOäem_çŸYçƒÉ'ÿüܢ嗢í{mpí•Wå )XÓ؃aX Ãr`O>±Çrï ÚD,§Y°GaÈ’pÆ„·!j§©àm*Èx (ÒæÒÎ9MÄ“Ï$‹ÿe¿NV%˪0§â@Dq 8®i½à¸¦ú‚SGœú$¢efV6·‰¸Ñ·§>n·=~ç¬òRƒ"!“‚‰Ëf³öÚk¯½Î9qÿÿ_0V‘°×ÜèùÚ†6³Å = {ÙûûZ‡ÓÃjC"¡äqG?ÍÔÝŠB‘X>ê§ëºIÙ>Ò2 +ý%Ó2Ãy~·[NŠºß³xëªj™ÿðÕŸ¼"ïAªÀyÅ«ó‘ÙR!³ãÈ«ó®ãŠæ`7Ç™kºœHÇ£ï;s ŽJz³ÂÑèG¬’rÿàÁm¡*/\%AdžÝ(’áŠè&\ç›*²)æ¨ó?Eç_LÀ*'6ô¤“Òë¢ü[ãìÀ%ÐGÌ‡Ü î:麙7ãU Â,ðôò#€Ñ©vØÐøCºé¤KÑ @9A6¸g7B¼ðÊ)LŒ» ?êüèïãt>)ÞN‰j :YÔäí³\GƒÆ†Eü°¨—¬CÒÚeÓÏ¡—d—µkPõ­á)œ Òd}@>jà±ô]°6™¯6£|Ç2[ŽËÖ/BuóÀXToÅtf™ë’\Eçƒ1mßÐÊ  \ƒhPPLàí0ßJÛždÔ‘œ½nuü’+ÞÕÑìÑàD§ÓЭ€érûÙüQçïßÇê|¿¥øuùÝšã£H¶Ûù¿àgÌóº5ö›‡–¿°xz¥à=ÐØìý¦;™*Äœ·O5À‚èßõGhŒkØu¿0Ú<–‘¶5+"mÃG[;iÙdÙ•Ü,ŽøÛßÿñâg¿zñ㟼øé/¥ýÝ_öF9Žëê„-®TÎîÌ–Ô8e~ÒÇ Kì°y¬Ë㢷ý¹0äÇ)ûªúOkä¡hxC§`–'x“¤×AD+€‹ÜØO—Q¹j%r”MZ}„™ñﮓQÂŽ¯+úŽx8î¨ó?¬óéú¾—]d—잺éÞÖî©zÙšr.üB†evYñŸ—‚ûù•ñ¦› +žoß +³]³l¶Äˆ,o*Ç'å%U™Ï‡ÐÎ}A?o?æé‚tv0® ÿ/+Bw¾¼Ã¶“â†=-ŒdE„—×OÕ»‹„‡¿7£ì*ÝWÿ|ן¬îŒÑâð<Î'+õ´¦ëAq­¶üªâÜn–Wõñþ|Wî+ ’½+vwõ§»dž-ì§öhéÔæ¡òf<‘´ñtÊllxíÙÆ#{uo{Ùò¶òZf›U‰Qƒ`2[Iº—¿P{jÐSxÏ®*Û.¢¥–ZÖ€9—¡W]þ…<Á/Et¾€£Îÿ4_Û³ek ¿)–îÍׇÓA:ÙÜŸŒ«‡êlºÊµŠùe'ÛV·ÆÛAž\V–­ùf°¸é—óp:YN·"Çë»W¹ƒßôê$âíÎvN‰wªW\¥~™ÅÕò¾Éi×,2»®^wå®"LòùþI~»†x©Þô3~G^^Ìäy?*Ùü ‚ÛÉÖ2†GPC6Cêõcå Û]f[îºHwÀ ½¤Œšh€ øý¿Gÿa_\×è`Ž™a]À èxÌìÀäÌwýœa ”×óõ}0%á ¡0v{We:Ðtƒ,úɺ$Ò Ž@–8Â.Ö ðë"ËK§‚t$·2XºÎp¯˜¸Hµ Ô'­Hds¨±÷¤›]‘1ÝÌG¦—¸õ`IP¡ù›N‚ÎÜ"!FYZï9J4 +çuà·Û¦)xnm>»€?êüïýûX?ÈvFhûïª}]©ï{ßK8qt02 ÆÀÝ­ç³5èfcËc°ñ<·À rÃÎb +K ƒ}§ü<Ž›y°’¥ƒ’[þû|¼­*·ŸŽ šŸ^éÄ*©¬q°4|îW8OxSõf6úØ<Õìƒ2¤R¶$WÞâ®æ©(É,yíïÍQ'uÁíq6Ì(|íÃ0ß¡Ñëªzy6 üÙ¤¾z¢ F{¾Šò°L ª^—±~¨‚€,£#°õ¦7wÐÿ²=>êüë|ÐDÃC0Æê®FoðÛ(d¨YkÑÙæFäŒ2Y¨e»âá*ˆ³ÇCäºðJ8,÷5ìç»Î´×0™ ¥i~3oóùê&< žÎt>Lw@¸ØÕœ¬nAnHýtý0)J"œ nJ€L®›Ý¨’Òqu<—ª`¾‚-›F¦na”-óY?¥®¥j²I"ywš‘úlˆ€äV†i'«íÅ|ëãIÝùekvï\Ѽ¢‡N²²lZ¡5O¼gƒþÄ‹‰î úËÙâ2j˜–5ÓòF §%ÆQ‰ +‡iémÐÔûÙ0§ó‘ߨúµ ‚6Œ^²l:‚£Îÿïý¢~ºd¹e愧ëÑj EOÆ9µÜ,oa)]˜ -Eš…ؽbÇndü2p~î«êëê¨àdDžN‚'›ËPòÕ¶ÚI®o:h Ü‚ä·+²5Ïã^1Òš{E]L“êÞ‘¨þóqˆ‰Ä,Cà EðÅé¤ä^@ØùtAÞûÁ @Çqö³ ò£Îÿþ>Nç·gKº÷d˜1XŸÁ ñ„¶4[†<(æ<ŸäâÛ³ŒÔ·E{ s<¤r{œñÈ"×WbÕtƒxZ£ŒÔmOösöæ+K¨®ËJy,å4þKnà,¡*[p¶ã”Þl=Î7«ë]'EM§ÝnPO¶yìRMå¡FÝòæbž¨ßqIÈ{ ûùÂ㸱—mÊnM× +0`g»‡ÐŸ]Àuþ÷þ}¬Î§¨wÔÇý®Î÷ÅÛ“R6âÓ£i6DÅæ@àÐü–à:¿©Ì0y¼><ëgÀ;Zí,â!ø3ˆ†áŽC榘ÖtÐÏJ ЇSÁ¡ÿ9e{;H9EžN&µ‡ðžä¾,ƒ^…xÔ5<ò46mÞC{ót©ñ+MG"aq¨NÆEŠeÃk¥"yŽë‚q×U(üõmÕ™-èluƒ@‰|úŸç}·k‹“g¾>$û‡`R_Uùuu2Jƒ_Z³åê¾nINFS…a¢Z·¬âÕFöGýÇîQçXç›±iN6Hädü‚/K€9Ù<‚…ñ„¸ ƒSp2,›a ú ž–Á Š Ÿrº€Ì@;ÝÜêa¶…áýdMäƒk¸mÖ Ìj`9P³$.È ƒÈ${Ã’ð`0ŒzëT¢ÂPòP—Ó#¨<µ† —b"]L{´ôŒ!õu= ôñÐ}ÔùŸ¢ó§Ëë·ÿ(ÕI?kQ H~ ¦ (h…r .8à4ÐÏ’<†f€,&à×H;äwôÑ#˜ aægT/o+vl1ž1?n±lþF’àˆ¦›¸‚ùnwœl¹+’„Ú·)þ¹¤`‡hä<õcäâTÿË~½ûºrUqwHˆ¸@HDÇŸ@C‘2)(ˆ!!Q *D m:þJzø-HÉͽçÞóökü{üÛÇçaŸs†Ïx¡S ÝHŽ"¶F£µ×¬½÷Ú3ÛßõÛ:Í®‹¨GíQœøcq +P,\.à÷:ÿ¿Ýt>š•ÔšÜ(X÷¬š¢"äžõæèkଠîñ À:"9éäì²”÷1ÃSB=ú'.(|ÅBÆi+S>x4éü£Fª‚ð(<ôœ&t,ÏÝÜ [^’VºcdA^ÁvwßoñÿÀªL W“_S_©ZHŒж@Í8>h²-3æòºÔÖÐx´¨Yëç¡É¿t¾‰·J {ta¿×ù;é|¯ÈWs|óM“¬ÔQÃe|\òžÔ­ŠjoßÝ玺¹ w¸í°C´Ã5yϘlʪqØž . O9±Æc„(7œ.OÁŸÇÓ858>hº¢ˆ0 b4œBÔþ€¼»ÁM*ÀŒQØæŠ1cÒðìT×jý™ÒIÃ+šÁÜ=»¸;N†¯ª³üÿSJ!Âh YŒù]á)¸¡·,=jMò¡Wšœ/›]‘Ñ’“÷ãÕ=°{ŠêÐJiωœN‚œ¸%¿KɽÕül X˜µcq_àða2~Ðóæ•Œ,„mQò± +a0H‡qúíÛˆLhlÖ†8³Ei"+:jõÝ”²–™"jÙvÕ# Äq)J€£ +ÄY)ÎGñê"v#~ù˜Ô,q¬`,7E”›Ó$“†¬4Oš™0 Ë|¯ówù}~ŸÎ×õ4ïN/G«{˜ÒÄ.ƒ¸ÉÐà?qûÓZ +zAZÐC¼êp9/ÊGbÀ0$·»ÀäUl -í~ÐÌòûÅàZ]ü?Žª ð4¬à hÀØüpÜP‡P×ñ“ó®¦4žVûãuËâÍëQx hJæ!1 ©©oÔ…òì0\¸ ®¾eòƒÎ?îŒCüŸ§S2>½¸¬î;ù »·Øð|ÚšÝÝùÚAàÑ)½×ù¯þí¦óIè·ªþ´;¢xÉuþçµA2.cð â°{óRÕoÅð2€iôTÃñÓ€ŠBTŠV¶TÔŽƒó›?[n(|¹QøµÞtrYT»“8/ NMj@Ó¹s6Geã©¿AQ8UM&«" +šòPb”à-É?+ q¬ÎŠbÀ麈¦u¹:³«§g=‹Ú’Ÿ]Ü'Ù…‹Æ#ö^ÔúlN5wq[ôáYgBöó›Íÿßsíuþgë|ßñ¨Iµ–"Ê9Î=J*o½[yíIåËïT^{ãw¿ÿƒ¢ã 8û¨MîRÚëü]~Ÿ_ç{?ÁüÏý[åõ¯¾ùη+oû¤™%ƒE4CôÅ}aÉ!ã­WÂq¢ùÉÏõä[ßÁ|õfWN:îžnëΕz-l³»é¹dÛ™¬¢ìuþ£ÿvÕù¾© ›6¾oˆ†Âð¿°Ôú§'­æp²<ô|c´Xø…Ðï}ð!Èc#=ÚŠHb5ç1™>æ)Atçç É·b¢ýýàü<Í8uoŠÓ^ óOkÆÏfG—6…“ohxžÚÏ®‹Ɉ¼'þã›ÿ¸;«o“ë]ëZkt¡bþ৿.o{³ëZZOsœ½Îÿ¢7în:ÿ$I{S{Ü/­l>³Ó¦«æ`V펲庑NëýÉêž2_ æ×@ën.F8u]lDVÞúúo>úíËZ‡mpV4Ž¦ãçôŠ¼ÏoŠ3ª&¿¡íü°Þ†Ïס’a~Ö껼-ä` +MÎÃz—Szæ• Cpš_ÉPL¬B2üîçL˜§ÇM“Ýy$&þ_ì×iŒUðÛ2¥ËL)‹ÔØâhwƒ H@ˆ( +Æ@Yj–RÊ®¨L4ñ ‰ˆ¥P BQ¬J Ð(Z:ûôÎ~çÞ¹sg½w–ÎrýÝy„/˜Ü†¤šÌ›7'ç<ç9Ëûžÿóþ'š¶=³n΄–ˆÕýeTÌÃÍ6úF§‡&Š~çÌи8˜ÜZºâ·Ø‰®ÜÈ”¦!Öål£uYâyíÇÌ&±®=ØùκäɧŸýç­ÿ²·û¶<šXPµáG ô3ùóé-LÎéüržý×ù©ñÆνzAõú=Éîúö,²òÓ@ÑYÄ :w•]¸mTâˆaÀéÀ©@£S†€(بԷ¥ÍPQ׫ËäÊ/~å¬Å‡c6Móƒ‡á¥ÈíM¯&Tp°œµìA×µ8uÔk~hü©g&æ/Ž5Öf°Š +‹™mÏ&ã£ÂÁun>ðÝ"?~(,'¡È,,´}$#wR_þZsí"";=þ_¼s:ÿ¿ë|èWœY“ìòB>ø(²Ã3Ì€7(]U½.QQYBÑ ¥Ã´+¥AŒ¬—[Biäˆ/v6©Kè[^P‘5².³…éWv56wõõÊ9°7|v‘Å"õØŒ%„a09‡`Zåî¦öÀ¹¦±v¨î[¼‘Sâ»|HlÒ— +"ÓZÎT|ÄË¥Wß(¾Ì jøÈkB‰ê#ÿ”ô^h?zÞ]C©îNÄXÓ’qëÁ'î\ØÏéü²t> O;9Jw·ÐQên²q‰{³¡#šnC“¥ & !gè‚·Zoê_>ãëÀx!Q@(D V×P#OxSÞ¬`0*ꌠsª«Àáë5Í‘†Ì:-Ò0Sæ¯Ö¶`ì|±ˆ®ñsÜØ19>×DæÄ<ÝŽÒËÍkÉô ¤yÉÚšSý ½3·žáš–ôœÎ¿[žÎwLrhÀ&Ž5€¤ yÿzMm H3˜9¸ZE3†Š†ÞÕk¯o´o`kfhOSS[Ï0–Fàô|k¦_ž ûuÁ$£´’ì覓béP2äCèüxÉle Ëº¡“­n-Mk¼PVÁÕvëÓ8Ã$ϸ³0ržYwˆË̺}¡jâÊ—‚Pq%i=Y~T}[·ˆÖüTÑ(>¾Ý®l 4˜åX"Ä8˜-âöù%òNl;b3¦ QÇYHžñµs?¸òx½~fÜÂæt~9Ïþëü·÷¦^ÞY—˜_ù«{’¦[HÜî~ÜØp(D°…0š 9á¾æ¼"(”pB*¡á E ă|jkbñ¡›y4ÿh±(ƒ´g…Òdpx\Z½â".³êŒ&ÊÇŸyÞ*wÜû;]fÐÁh·O%BtŸÛž #1ü¾-ò´¢2t¾Ï´[œß’.»Üšž"ð:û +é¡ÉÔÀ>’¾¾=¥B6væôª·e ™aöÞ.ìçt~Y:ßÁ¹²y#ÍïU²…bWÿørvhÒÛ?._ 'ÓY÷¸Ð°„í ˜YÍ ZCù Æ å`ã7%­h8{¯œ¥è¸W²p†Ø@)ƨԵ¦2šJá3Kì¦Eã˜o·ôô ðú®¾öþ1oé¬ÆõüÉl©$øû&Šåæ5ºBÒ¬¾æf?áºÖÛ03,Íéü÷¸åéüt¡©=©oéJve ¨8Ý×™lIõv÷åÛ3ýŒ ­©üD±gp´«whogçìÐ7¯ŠÍþ‘ÉÄüEß¾pá£ÓEvzž +É”ôÁǦߪÛkç­Ý9öTnXiTkì3fhIçÌÖÜe“9ƽ©loÁ$×Õ7œìîÕ•1sGÆ·ûÃsù}µ{;¬Å¨^Óܮˊ>ßoôßøï+­¨bu?„ÑÛ;<îÚ7¯Š×ß³¨ï²¨Ï´7MÀg*׬»î°å+íÁË®,ý„9_Ƴÿ:?50þôs/%þ‹»6ÓüÁTÔ>\9ýÑ)`p¸oÖ6÷&1AíL5ÅK1;`€%´| „Ϻd'ØÀÉ–GŸLÌ[xÛy¢„3èn†áÑk~Þ hfÛ€C+‚¢Òr*±¨~fãcKÛ€l&`1nQó3ªðᯠáØŒJÇùÈ-D¾J]gN‚a¯™žT×ÅøØÖm‡-¿uÃ3–ÌHqNçÿ?åé|(À’Hb7z5! t²&N¾ôªë-†(€ ,œõB ¦Ÿ Æûì¶í‰Š%wmzÐ tþ«»›z Ó*Ò„Œ@áË‘ŸšHvÔ!ëQJ¦—æÙ¼¦²ùYôڡ؉fÔŸøë?䦇{‹Ö¶tbøºVsOš µæF&%ºˆ]‚ˆD‘"Žþôä3âtã¿÷-;W\s‹0ñ]²ŒPòÕ~ÉG6vö Mw5uåÝYRumY— =ùéš– 7‚ÿ€ û9_–ΧíKê=3LÏ׶ö„ÎmOrwsŠ²Õåu¡#± „„öôÐxB B0-Ž¼  <š‚ˆOhòvc«8Šd*‹?Èa{>hŸ[DØÏ+’'|îijÓ´?›Vb ,æ:"û7tØùd[6Ïbïò]Øö•I|žÍ³”›×ºúÇ/ûê·V5u•ðß“ŸÚIÙ{s:ÿ}ny:ß9>å•×~k%æU$T®¾b½ã ,]}ã^yܳÛ^ª¨<ŒÃüÅËn¿{{ PE“Ñ«÷¥×ÞR"@ðHåúÐ,Š¦ç÷ìMáÏó.ºü”³Î%ìÝø¼UG®8çü5.ƒn íÙêõß_qÂgŸøÛs‰ù ½|ÍþsûöÄÁ•‰ŠÅó–,cüå†Mù©â+»jicjœžÙóÌ{p•òÇ?û9è]xéÚcO8éOüefÃK½ñ~€¿êú›KnóV¹üœó/&ïq;ί^ÊNü÷«;—ýáXúîû·dóã^vÕLs‘lÃPŽ3ÉQ+>þòŽ]ñ½ó²aó–Úææ‹/['£±|çâjœ/®ý—¦ç_|Å ²XbáÒCŽüPĵ+RâZbõÚk줱#MÞûK{ö¶Ë;”ÿçO9ýc'~.îqá6§óËyö_çŸtòé‡Uê’#TnþÉ-¹KÖÞ°â¸O…mìpW­¹ÒY3ÂÆ1Çÿ÷^^Pux`ðtèg¬x몎8¦ÔU±äÔ3¿QŸL*Á¦bAebæh<Ï[õ]èRAìøØÞ ò;îÙ,¸¹è»äò«?úÉÏ”0öþï¹ÿaXµ7[:÷‚Õ¶gv[½îz“o}w ŠóÚ†ÍØRÜ=ùXté–ÏrQ„ùú›~dPÁo!ÔÛûÇÝž¶žõmÈg.&¡½‘ú¹J Rjƒò¦ø…H¤­>Ô‚eàœ¥ù%ªª†ÆòÚõ;i¸û†,Ä7=7ŸøB4ëüß;q§ó Tšòš·î^þ+""óÊŠÚ?^4±l½(,¢T‹"}ý§¯ÄØRbn“œšV\V³lÍ&‰‘41ù.}|÷9ÅoE¹îæ½ÇÆ22A²@ûZÿ² DUYGpÂæ+LÇÔC(#鹋י9wUbj½tÕ†"5ïÍòùËX¢±©°M¸Á0tõFyim×ã wì;VVÝ@ä)Ó‚bF[²r=}ì1cÉ°‘‘ÔÈÂV’€^~ßÏ]lj¹ü×Y¹n C62\ÐYb©®ªÇÝ;`¦ðå¦ìT Œ&]¾9·¨LS§ç‡bhaÓŽ3d–N š-ÎŒ1î§c¯ãÂ-íÇøk\!ÇÀØeü”.=úåÈÕøvìæ4É;ƒA^îÞA1WR*êôi/ò•š7eº÷¹ŠÊí=f$k½dõ&ÈvSSŒò2•¶¾Yç7æóÛu~vqE|Ò +ò߇åh]¥†IwŸàv=•š:§ùÈ”7¼X¥“¦W j'|K¥È˜I¹ÿ˜ÕU·Ñ?—˜§ªd5r׉‰åî#Ñy +†ÞA³¶î>„clb2f»—UcI›â;Ãĺͳܢ¢òš˜+7X]ñ–¹Šò¨}G%R[K«ë_)+¼BDúÝ{DêT.\¾ÖÌÚþè©Xª˜|û~^(K$<%0Õÿƒ¥¹MêÃt”OÄQÀòÅk)H ð²@ÞCIäò5 ‰³qWãâðÙEjóR^J?:6‹,[›UXÂ5¹‘ÄÔjûþcÕoõO³ Ï$$£ð·8*Š7‚É&êfÿ‘Oãt>ÐÚBŠÜ•fæ)A<2 0H¦Åÿp›Ø¾kOÒ¬ƒÀU:4àz]äNìƸÄ\V­ß +Þ2sñÚ-†‡Ož'‡JP—]Èd¼ XýóMÐ_2¹×Ÿb}þ2Á—­ÝL!PΣ'vø“ÅE¢R…ê*:4:¥Z:ñ×oQJ[vÆ¡ö¿z“àë·ìbHdÁe{G³ÄÁ ?&Ÿf`ÏÖÐ"åƒ;«œ“Õq“|€w\ >.¡üJm Ź2·€;~9²“cØ!«â¦†}›ZØ7ëüFéü<•¶‡|U×ðöäJvyú}gÇ& }B™®þø¹8úKÃ#Š+µx`J̬L@åÛÃ'™ÌÙë<›Ì”XØÆàíÔÀ™ dv‹W­ÇRÄÊ [ÉaìÙkÞ²5*ík"Ÿº€Þ0Y¾._Uú<§Ð2‘嫵òŠš\UEܵ›øîØH¥©NÏÌ.¯Òõ0Ì©ÿ`â`§:hÀøäéÁKVoà0åµïÎÄ_ewÿ™ Øâc¼1q6( æb óöÃg€¿ÄÌÆuòô,EeI­ILe«´Mìp óH|íÊÚ÷ Q¡m>q>rètOž^ݸóUŒ kjÖrî’U`3`×è1 VV¾ªº^òÜ%Ûö¾3æ>Ê tD «`#«ˆmBÅÄ^Euoõ¸¸Ž› )¤Ø¸Nð$òÁC'êƒz¹ºMÌÈ-Æ—­™qíÞó³Ò³ N¨µ‘œ‡>6Ö-Ûò6aHp±Ñ¾£§‰S¡{—ö<—° dý–ö¿5žþ¯dôsjŽ„Ï-¤v<Ø‘ëó›8tsêì&6â`em9é6ŽÄAØ·jýÉ‚…aDèíؽ/Æ\Ç.† EXŒkôù¾ð<§Ê€¼°ò¾¤ª!‹?¢A_^«ïùù`ä%mnh8 4 …ùŒ<ÆÍ:¿1Ÿß®ói1‰€¤å¶½Çø­r•|{úÏìèØ[(p ñqV^»nî^@%CðÙØÌúç;JªÞ0D€èa*ºëüi?OïÐðD0ã‚&Ï'ü„:ØÄ ‰2f’73uïa6»ëåóWź÷ä€bЗ^_ b Ö`G²1õ%äÒKÒB¶""’!)gxÀI$,!œ(ÌäÔ4Eyõ«buV¾ÂÜ‚*^ñ,»€â2²h¹:|cqY•¦îÚž'À¢°ð+/Óæ—*5:·qî­Ú䕨Aøi3æ›·ŒÜ¾W]Óø“Š¸Ä¿©€I¢"¤-dvWoÞ#Yrü ßÑ0#têÒ£ÿPg¡ÉᲚ,ÎÝ{ôê?pˆJSU÷^/[¢vkj_ªÔµoÓsäŽ=úør‚«´²*¯H)kÝqÖâT„ˆ&:DcÁkÌÞùÆËïE¾òc¼6sQ˜x³´íú©ëè‰\³ú­¯ßÿƒ„!òŸ¼R’B™Å¥uú&ö?¸Î®AðŒ„² > +ôbe @!’+lÀ7´}ðìÅ`pm,k5?t À%P ÄÃxÇØÇ{!€ >ñ[?»öBÃ?Í*Ò‘ÓØߺÿ„lI™$ƈsäwèêœçY¶/ 5³¶ÿÏ“,"cŒ¤\À«áÂåkmîâ8 ®Aü¿¬ja¿Üƒ¢¼Î8¼\öÆr4*ÒˆVƒ±N¼[5^«â5n^ Þ£V´ŠX ©ˆŽ¦£Ö¤6I£65cbP„¨hÑ€,…ewAvñBŸ/§Iÿj§8™qœ²sæ›óóž÷œóí{ž÷wZ¤DV"YPÂS¦Ï8b,,c±A¶Cï•%¼î|÷ ó²*†¿4hdß¾ì‚Iç-ZN/~Ä•áë¼ðšqè#ò#þÙþà‘ãü^|™5°0ºÖ%¥ïD²`kÈû5¶ò‘ñIŽØ½ïpQ™ÕÚðÐl¿Ø§=†MúõŒ°[å¶æ¶6®ÑT[sï1•âŠJ‡ÎoÏïÉu~EmÓÇ'PິŒÃ¥–úïÌvZÐù½ú€f0–?›Ó$ˆý`cht¯ÀO ÀôöˆYü üúr]k·‰Q°¨"&kî=„êr­{Ê® 4<‰€,±p©ÌIÇí +÷š…½HTæ/]Mc^A1u)YÈ5„Ò…§âÚŇ%ØWh{$™Ð¯ÎŽÀ’84Ù” +«ÝËÛ7<6^Rò•6„ýo6n!ŒåÕt Ïùå:ÌY3k£á¯Þ–©]×oIewH,n,lÕ†-j÷çNeå ©:tþ³ökŸÎžF Á4ha)¤]µþwà‘#%ÊÉ5õk…¥ñ+Ò±éÀˆ& 75hÂ4FÑþ—¿†É;öŠ$ç%¯Ð·D¬”TXŸ#GO2ÝçÏÆ¡\í¶bí&…ÃÂqà\Ì‹_¶ArˆƒÆ“øälRç"€AÒö žY$t« KVý–5‹ëYfSrš¾sKù…ì‹øgµâ(±Î£ŸŸ•9éwìyŸ©E^ˆŽ[!ÎGOl¼§_À¬°Xrötá4g<`O®$a†n9˜:ÿ©ÿ~2¯v%«Mß–šŒ&ˆm©(ÿ¯òòÉ‘‹–xD ¸r’È ÓæD ó©£¥%Œ+4­H+_å]çõàGÇ‚=-ˆüŸý¢?½âŽxy’Aò«Ñ¯ Xu׫gEÅÊÔî•õ­·ˆ.¤Z]³ÉÑœ°9E¦ì”{¥¬Ê²÷½x>“ý +çb1ø§p‚hu8?xÔø_ ¢å?å5¶,¶#Sj—­M¤ÂÚ0(6ÛáÿÔÐhcµƒø©¾÷¨Þªª{ê`ÿ?×ùG zĘɠ ”IO¹fôÄW2D-8«ÝPÝV°º{¯>¯G.„W.ßÂUèyÄ<¨t÷èŽrflám“È0ÜÁð9’,|kzÔF; ©“˹ W˜(bþ¥“ì3xž:wQ¥q‡«óŠsrÐæ”tøû­©Å‡MävÀX4¿V×™ïÀ"QälJ®ÐîÙÿ!yŠ^6§ðÈ-ž‹[nÙÏ3çóxe‘wªª€?CÇûø÷Ã[îµ"¾YéÇOJæâ™°i;cÙæÔ×B¥FGhô›ˆüÆGmHzÊÄЀA¤ÚÂÒRÔ~]KTÁÀÑÚd:t~{~O®óù>þìŒÂÉeÇþˆÈ/CÚCæÆxöôƒf{3ê¬9©\f„ÅC8+b¾ÎÅ3¿¨Œóo^¸z³wÀËÓ߈®mzD]¥vݽÿpŠ1²Hãž“#v½wÍl³3Ãcá*0?—sÕÍ£ÛÆä€ç''ÎÐ{ú|.i%xv¸B©Cq9r1wÌ™oÄpdˆÛШEj­qK Î_¼Š`# ŠïÔ4ÜGÛwéÙ;rÁâªZ"ÜßÕÇ…ßÐÚ†àGç7Œeß™¬Ðûnóc¦‚êøé,•Á‹%‰{‡µ¡•Ê¶´½2Û‰³Ù¼vèügí×>ÿæÊu­¬ƒ¨ör‘¸R»vý7âœôjûº¤b«œ]A4›2ã_frÏ‘¯L¡Õ}üT¦\eؽï0¼…X’_pE Õ_d涓8Èhi¦>uIòãìÊYŠR‹jÒê;¯Þ¸`–VÛ8eCŽ*…SÃa:ÿÀŸŽ2·g³/ëÜ»í|÷ ª›‰Ø‘­¾5u×>ÜBuo±7q^¨p¬j~òÙ—t¥í=@æÂè|NßÍkÆ f¾}°r²ð;Õ¸=÷#ÿtW&$‘"17œ?uaß¡ó¯ÐJ*­¦Z¢Î±pùj•Ú%¯ HŠ^¢‘Ní÷ÛD²P»x"òá|ì’UämÀiæ¥|ÒÊÎŒC¤ˆÊsôäÿ—‘„ì6fÑ.s6È”j]àØñæ:n©e3"¢e*×Û¶†‹£ÂÞRhª©°7e_¹¡Ñ’ßÙYn¶r)èÕ»¯¸q0K¡¤ ­q›Pè<¤Ó¤qsrñ œü_òZHhÊ?çZ!öè|ê¤ \P/ŸÐËüÔo”Y‰¢§NõZ‘»fø `‘@ e;`hp­ÈoY'€ŒØ†‡­KOÿ9‘Ðñ¾„Χ0W´@R†à“.À»X®vCK`ŒÐå¹qëï±GÃC¼ Á³”Z*E¥ÈíG•o§g@E¡[`ã¦ä4s>÷:× +–!Sê$„*u¸=rô$c!3žY3PeC°d1ìî…~ƒhÁ[àRéй`)°÷ìo +dßë|¡äy5áùŸ÷g‘|D3ÒÈW:ßÙÐEÒùæ:O®^Þ~ìWºÉ5k“¹/ˆ¯ÊS|4 +–Ôñ³dM¢L¡KÜž:,õl†B©ÐVíh…*%•wá‰Ù~¿ª®¥âÅÞ¡óÿ·ß“ëüÛÕt¾Lힺçõʺ–RKý̈…=_èw½¸ *‚5¸åfG.à•BÅŽ®à”Á=žnÝžmî<ˆzöâ,}üWX 9Qþ¨zD>6’üPjSveÐÎUN¨w™Ê?—®1jý–Tìñœó +ŠW®ßL#kÀmTÜrŽ7Y‰#Ô»÷ê3=t¡E‹tÛuÒ EæçŒPG½”VÕ8Z¼zDÇ-+.3S|ûôWh\‘÷¢|zâËrKf¶úPJF“¤“•{Ù“ÞNg#l_$ˆ„Í)4’³(:ÿYûµOçÏ “© BäW׋îðºø­õO ãjI)Éu¹F䂾†)4îØÒŽ™2xä8ÌH1ïø)zðÈ1,)¸"¿abf’† ÷Üyq¸íáÛ© ÃEäKó:Z8G„('¡Å!¢E\B ]â“vB”è=öE&êesJ:³C`qSØ°å‘YhÄ?½4æ\ý–JÿYÉëØÉsä.#¼’¡0 ÍaLR ï°‘úûm.žÞ³ÂbÙxVN>¹,aÓvbÌt˜‘°Ä!Ù {œ3ÅSö:¿}:ß\_YÛr»ÊQn½÷ƒÎo˜±ðD T¼UnÞ°-U¦p6š,f{ó´9ôÂFd<1Ém?7&ìÓË댰¥¾3¡ËXÌPÔàt÷þè:aßÉàE$3ÐÛ?ÀÐÕ‡¦ŽAÿ!ÇŒsÇr—ûÅë1,C³ÜZ^‡ +m0"œî6–W;qôäi·ÊLr~ź$ç‚áPÿLʲõ^Þ/Áì%.#Ô‡ŽžøOöË<(Ê# ã#ˆˆÈ¥x¬Š`)(FQ1¬ñÂÞ¢¨ (ÊŒ@Ìn¼¶6ë×EwŨEMÄDkUjÝxÆÊzD7 +"Ê}sÁÌ002(²³¿¡‰»ÿøÖVY–Lu}Õ_¿Ýïûö7O?ïÓÌ|U]#ÎWRMÞòÆÉŸþ‰N´¯xÒ̳P¡{ãÄþŽë|ˆ÷ö}3)%oú<¯TŽT`d’ÿÜÉÓæÁN +6ƒšÌ¤T£‡µ÷F±CS툑>¼ + a^¸zÉaQñ/E>D‡œ†B-&ÿ9‹°f^ú'°%«F›2Ðu¨ÐÀ¬ÂÊMáq‰ oÈfW·až£?r]ÈŠ…›ûH&ßË-6»ºpM©ª“ʵT¢ñL©Z¸,+#"«Ü")¯ˆA.2¨wÒØ V)(ºùs.¯Û÷¤ ò§¦p#èë:+™ˆ$™,Êœy²¥-:Ÿ½ä—)¨PÓçõèÁBbõ0$6a#!Dùc>}®9tóö#¼ÆG áa ´=‚y_,SUixEáÓÉ>êŸuèüöü^_ç—©ê…ÎßvTª1ð¹Ðù)ÛvÁØ(|ˆžƒ†1[µ¦åö7eV€‹«GNQ%—G€F™ZÏÉQ ®·‹;WQs¤VYTYm–gÖtÔúF„½L]ï2dxxôZiµîîƒ<´ýéÌ‹퓲ryó S^iU©¬©_®Ð@à"UQئǰQ>¾ÓéäW(ÉÓØIþîC½rKÀgc‡ÎÛ~íÓùA¡Qv=û‹{%”xÿQ‰Ëà÷"ã’„p…Ð L(—ÉsÓttú¯wÅm;RY Áê” &úÍ¡O•¡:`ýbß!¡)èünÝíã'qãV€ý ¿œi¨eQ¤œĬKòà¡í- /LÀÉ,.GㆩÖØrñÇ;´ôŒ³$‰[|ˆûÈ÷¼' ÏásŽÌÌÕc€‹;VÒ‡qê[CºýOiGșڄQ °’!P÷´¹ß O>{äû0»5”/À÷aœ™x&4ÛJê›ö:ÿÿ£ó-l¾:yFÿÜØdZ½ÿ¼@§ž}µOŸÎ…!«,º:0 (Z¸R5Xzi¢pQÝÛÙy¼¦LW7<Ï+W€d$·»—öé‹» 1mÛµW\cÁöÔÙóÆOV­7J•+b×YÚ8£ˆtÆ +­_©Ñ+ê;ö¦qéHÞ¼Mbauóþ#…Æé +J¹«Cé¤ç;s— ú¯ªk%q õ™äé=^œAò9ö·ï{õ›ôXª.VÕÓ” /䨚7Mìï¸ÎW7¼(‘×J,l?œ½Qk4E|´ž×‰ÓæTÖ€ÛÙ‹B%VöÅ2-ÍÐbRÖ5¹xŒ +ZæD‘~öùžÎv½Ï_¾¡}úï“g/Jlztqè;+p9n|ŠVÉJƒö‘©á±IXqžW®Âšzðx§n=ÿ˜v”~™².&ñ7˜Hq‹è%™ÝûØ:»:qFÌß¼=•åG2Îá¼T¡#a [gËî½X%Ú·™WH@«â>±²ïÃ4^Ù®°N³˜(œÊÑ øáãK 68i8rŽ$Ùn¯ßÉÁJP2á'~sƒ¸{á†/°2&k•ÆÀZªá½ÇexÞwøk¾Iòüõ”Y|Ö"à÷ÉÀzðøi^I"+¿¢«S¿‹?þ‹5# ˜‚ž¹ðs’·ì :»f¤›§§÷Dü‹(äLÜúg&9tèüöü^_ç£í3Î_–t¶Ûóå1eý³"™VVk<{éŸüYë7o§3+_ÒÅ×ȵɊº¦Re]`èjF4üµFFrK®žÞ ‚#ªŸ4sk‹Nàtàoù•5KÂc÷ýõ›…®¼ZϪàÈx•þ9¯X1á?uÏL©‡Nt²uþbÿL䟼Ów¿ÖÐbzX"_“(±vဠ¨€º8l 稄®þ˜ÉúkÖmäœrs„«9ŽÅ25…cnP(UÚŸ6?&—Xu‡íéXÙ÷â +CY¡$—¯Á§þ¹©°JCz›¶§”äÙ”Úз~ò­´F#:ÿmûµO燭Y¨ +¥j¸Žg]“I°Oh +ʪhÅóÕ[Y˜`KL¹%rÈM00—)ÍãíÆNšãIhº®à686™¨/\i¢@­@Î{â´É3èÃɬ:zê<>¤û߸6=`W¤>gÌC°t°bj4ïKfßÇô¨TÁ‘aZÚÑST=Ò‰Âv>NÙJ=¢ˆ`º“SÄZŠÅKb'á–†Ç2H’ø\²2†b¢BÔLsóô‰Œ§Ã¾2Î]bþÎ}‡ñ#\Qe² *©l¬XÈàö:¿]:¿¼ú Ú©L¥—jžVÔP) Ðã2t¾µ#2駇%Jí®ý‡%–6™ÿx\!£ [ŠN™(–×¢+c“8TavM§b‚\×XÛhºr+ \íN;Ji`„%~ó–8úSNsô¾ïLVá9"~Ò}Ô¸ úæäúÒ¨8¸·@^[U×D+¤d(uš&ÓÜ|I'뮎=ÇNô%",Ír<Ãê„à ±›%ßôÄ"ɨµ–v½GOðÇôªº6{q#ldÖûTæŠZæÕ[’n=É!peŒÊÐBè‡å*T1@zãÄþŽë|è ÊzPIJ,º*[àã;ræBº0$Ò²«sZ¹Tͳï á‘ñà(ø ¾B~¿TÚ𛳋7h&J›™er9#‘fXÚfç™'w¶ã Ó +ÑŽ \eeíh.1~Še*ú{0OFPµjªÛÙÅ* +ò˜Ò Õ5Œ¦ )[™sêüe¤;®°2“ Ì,”*ò +*ÛüX;G,[÷‹ì¯ƒ™‡¨I˜ˆ +¥ÌüËW'yE>ááýÉ3îtà¾0&¨¸AÜÊÊïdÙÏÙã\ +z»Ãå‰\¹vÛ·•Dþ$«”­;ÅŽh;vý™X8n{ôÒo𦑠âŠ4Še54¾R‡ÎoÏïõu>„ö ÷V Û½‡¿F ªá4(:ýøé6´Ûô«<†AÉ Š^ºÊL³ð¤`NÛ©ÿJŸ‡ˆö¸O>3/ Vöþó—æUT³Š@{¤‹ñüæÂÀÜU+kàa¤>nÍj=5U¸7¿² +ÿ‹‘CÜ - 4.‰à™-˜êca‹ ¼™AÞ:S^k IÕú^ÝCWÇ«ê‘úhûßnú½VßT¡Òéê?ýÝNF2Î}¯14³Ä<ÏìÂ2.,äC;tì;g¾YÔÝÎåƒi:ÿmûµOç/ +]Ý¥«\¨ÀwF€wíú6–k=YJ+[k@ ‚‡?ßÏkc`ËîË£ÖFÅ$Ž÷›«k4_ è6ž·°ýpö"ð ?0ÄHµ‚­© +iZ„ŠõAÄ ¾X- +¢µZsæäÌýºï÷Ûì¹ÏœåoÎ.QÒæäLšÉÎ1{ø³X{­µ¿ý­={ý×o-¯Üš´ÿéogX/uͤL8œ€‰óħNžæ @bdNb$ù–]û«`Õæ)ƒ¹°÷±¹ðñÐÈÎø›ßýq–‹w3½¿üc-Ù8Êïט:Øgœy8yå%ø|y÷uûn¥üÉ©Ÿ*~§eûX"½ø9{Û†ÏFqsi8=ÁNqï¡£+{okÛ1æ_×ý?¿r–Oñ©g~F–K;Ƚÿíï7D±mý•u;mÂÃÁÃ_¹ÿïþü}ùìÐÿì¡#Ë7ì°+z‹‚úp~Õð¦ûÑÝʼnàä3ÏáÞx5›®N>ÉNGngòÕ×–çõ{ ûàWßñ‘»èºÐ¾vÿѯ‘ÌOÀo>ú½Ù½7ÞLIÀ÷¼ïöÃÇNàüÙ +7D™£¤nì×:ç¿Æ‹ŒÄBÉpä؉äÜÊ2onoøð8E]ßâp±¼BÌd!ðùýjÓóŸ~î>âY¨ac¿:UXÔêhñ”Ë¢â´èKǾž[Ú¥z ß_R7ð)ãü‹ +~-às΀,’gú¼A y"PR§òÄž»n×þ'O=_h™‰Ów~úsF‚à HÛ½·«ŒóùË8ÿ|±Xêzí³*ÌÊ}âé]»o9ùìÏY;ùšºZU>ð¡O²¸ŒhÌr»Ö|>ãüŒó¯¬ÒgûŒó·ÏùZ0iY³²Øv›f§mw -ëwï9ákÁ°¢¸ÕVü® ªš³h?ß‚ó×ÚV¾©ûQÓÝÜòîã'¾QS­E瓺/H;Ÿóë #ÂUX’œ{}ùÆ[Þɺ eÞ8ZŸ„F41; »+ÿáéÜÒÊL7 |ëmïî +ñÏB‹àÅKÝ0·©Œóù»üœŸºáœ§–5ŸÀ{ ?™ œÛöOžz>wþÜÒžoyÇMÞõþ;>¼V×’CAê¼ÂÊ8ÿbœuésÛŽROø*WÆù[s>È„d\<%˜HÞ¨¬ùûñÜž/¾œW¡ä÷Ëš'»¨8 ÷«×8ßÇ®ëß«:3™#¡õ…ÚÛ¨áñGË-íþåïÿ ¸Qê»C•qþÖ‚ðAʪêCæþPÔ´Ø(Iö¼qÈÔ/Ë.´¯‡cŽh0qO4ÍŽ¶yš¨ë:O)ËeꆹÝyeœ¿À_Æùç Èç¯7;“¦óMÓsûˆƒö‡¢Ø¶þUliÁ*”©Oð ++ãüŒó¯eeœ¿5ç׌ÁNÈ슊)áèïëšt…€íóM½ Ûz<©[QËí.ܯ.ÀùeËÏËö™¶©ÇÓuÉ¢a4ë 9uƒÝ¡Ê8k%XŠÛ6u°ŸJOÌÍá$Ì0 õ³ æì_-IÌe“^|°Ÿ®Šâñ,S7Ìm*ãüEþ2Î?_²ÛkÛ1ÿ>eMóQ]*ŠÛ0B¤úÀùÔ“1©Oð ++ãüŒó¯eeœaΗ$cP3zM{Øru³+ûã³-ˆ2b±ÚÐKª +ÂÕà}Í Wšîÿvˆ8_ º£„ó[áXêLkV§jFfo£¤º%ÙÜ™¾ÇîDeœ¿µŒhbwìí ^Ó‚ê·ZóÆì9&„ +ù›)ÐE(B/4F‘¯iÔûB”e7uÃܦ2Î_ä/ãü׫“°=How7Œh ØÓÛÓ^’lZV« +¬5.SŸàVÆùç_ËÊ8kίh±lNÉKŠ²ªGV_€Ù©èAÓ‰õxRÑý‚¼pÿ¼ç×½Áªä4œ.ÿ¦ÑVÎwúÓÔ v‡j§s>'Ó…ªªwX{­žàRïˆ`"Êj8on‘¼QI ZVë¦N‰ïÄ+EY &\®5m— ØÊ8‘¿ËÏùu»wU©aÍ©MˢĵPQqKª'C„wá`lXeÍ—üÁºdÏÌmÞ|Ò6ä7©Œó·æüÔ ó|ÿ´çSê Ÿ§ÔÁ>ãü¹8¿jöΰnJZ§å žh8ý¢”4¿í´xZ5£3M-ß6n¬ÆãEûÿ…8¿ááü–×/ëÁ¿kŠ7…¶®‹ßÒ6ð)ãü­{ó ³+ +’ “Ãù¯Vê\^B(#D°û‚û‰©E4Ri9¡ìa{ÎôÒϤnàÛTÆù‹üeœÿÆœeQí)«F¨„#J!|5ñyTô@ëL8\k>Ÿq~ÆùWR©ƒ}Æùsq¾L‹jTÖã–7nºƒšÕ)(¾ŒÁûD¼=9ÖNÓëV­0-Î/™v4!™ŠÝiI5%·Ó´‚Œó/M;óhRlÛm»K‹êF43v·¯#*5-¨ª¾Ž+ŠW×C»+ ¿ß6;Ýù‰Ïä®[ѽ^Cu)ëŠãÆ“rË`€ î{à(½TlÀ¾ áÂöF·®FHq†N,ò]óÆf¸QSBÉê«î&RÊíºùž/ñ‚‡rI™äF&Ôݾ +Ú[VÌx²¥B-$\–]³3¥‘ü™ÅzÓäÞÿŽß<Úp.`ú” 85ÐXÑ"g 8•ÔŒ˜*ôRç–&KÆ÷`ÅdB|ZJ’CpZÎ6ŒäÑÂÓé:xø¡ÜÒ +#ðÁßC=y±á5“N¶:¬¥ª×‡áÛVÇG\Úñ”Òˆõ†Þ4Â|UÉ-íÉ]¿—riåm}ÿÇ<‚ĘQò*ãü7ú]œó_ïN Ïëᨦù-3Pܸm…MÃ7ÂAU±*†‡a`‹#§Õ)*.ÀÌ¥=Ùa€äˆCï9ñ*”ˆ{×%›ñ‡È-¯¬µLÍž ‘ +6Bw$(¹$ÂjC7ºP÷ A½>íÔÏúLFHªM3R¼> Syéåüìk¹a߬\Úóì ¿f:eÙ©ëLà½Û+¶-ÕÐxî^êI/uº‹háAL'IŒY“³¦®Fc’'Ò£y1ÇY%³÷IÁÐì‹Õ¦!‡#¶ž’æ³®µ-é*(.—Ö@ä[&¯‚ø¼´Ûïü/D§L‡ðœ©ò,ÞÃν^ÓÙKã’^ž›qþ¥þÞ˜óq3\³š¬ÝSœ>’¬Ù6‰ái8!ö…QŸy˦ObGøsÒˆåR~è8Ö—ì8Œ!,V‰qÑEdnÄ̉ƒ’ è?ì×kŒœUÇñE@¥D * *ј€Æ¢‰Œ ‚—„@ D±XE[$$ñ!MŒJ”¨` +jÁ *^ t/ÝKgvî÷ûìÌN»—Ù}üÌž¤oÜЄ`ÍNNžœçnÿóÌó|¿ƒºñR7ßî£t¥ O—“ÅG•Úá¨ØY†n'VWMÿ>Þsåøõ§ßþ£{ÒÞgù{I|¾Žö<ºNš‡¢è@¢(½ú¡ˆäÉÄrr–§„e"ÁÕ &*:È0(Ë×+* ³&Øz„ç‚Ab‚@¸jj/  +"õ†ø5Ÿ¿êïµúü±\»Þ¦Ê½át#Û‰Òí¥ñ\sº:26ÂQ>Bâ-‘]9 ô’õÃŽê…¢~°ÔÉ´”ád¥6‰ÄÊ]ó»ý±0šÍ-¸™ M•ú|¤BæL5½êð—|éк T†‚®s*Šò7¼¹Y]U¬¨sPº×›·ÇJù?ðùß¿ûõï:ë᧞çQ¡ILmÝ~ËÐIîÿÕ0œ€ªåvÞ÷ÐÐq'=üÄÓÌü'Ï¿pèø·åªõT±Y™ÏVfTÜN¥J×^¿ý„·žz žK;Ds2U‹8y®¾Ü^J•fcÙ†x©Õûpf£d±ëDˤáå‰4iØvó­éê NÂlй_/4ùWºAŒD\Ù{[óƒ£|©‰ê"ÏÁfOæZ$ÃÆU˜üR7¢)Ùæ‚’´ÜJ« ‡£šÙ*&0°Ò¥Á¢[Td˜ù¥ñÔá( +'$)¾qó6»0ÿø|ùèæyÕ¨FµKƒXz• P®³µzo9[ëT:‹ëœsÏÛûÌ %v=߸í‡÷ ­;í®]›Á~gë†ôÖ|þýŽÞçO mãP¡ÙKÍÃËS™r®ÞeøEyQþö@fàÒÙ{T„Ä}± H* ˆŠœn‡EdÖmÿtAðâ¯mak{Q4š*+ È®+2€¬³%܆I,aZ\Õl+©2í¼zuvi8–cÔ¿xÙ¦GÛ[iÍå‹­Ç÷÷w¢0tÒ;ƒ_úòƯÛó†H–ð­8æÛµ­‰KždØ&»˜÷Š‡Ï´æöÅóù:‡Ïöt¾`Ú‡˜üÑtùßSV_p²P/tûæ˳6rÁ¥WJ•è8æ˜Ó3ñ¬ëX±/–£kö«~DdrZå»æóö·ºÏ?Ô`ò–ÁPp€.¸\u€¥ã©Š ;½o2€ºáöW®¹úÄÁj`ãW¤«±t*[ ~Êuáw¼TeEÊ®ž™wEìv?šÈV!:ÀYQÿÔç¾ôû§ÿÒšYð¶ÿà'8ÞîÚ½Qm!¸}&?Wï!jª\þù#¿zË;v?ù«3êÒ“ÏŽ;ï—á“ϽˆÕ£ÓE W Î2SwKJDÂñÇÞå<–(éï!xJA†ôW4Ù# ÒÍÞ_•Ïÿ[eÍ翺ÏgìG³…ÉÒl®% ±êáàÕñ0xlÐvE*Œ¥ “…vq6bàùüÖÒ â\nγúü¼2«®²/žaûó%c ì“dSúÀë‚W·Ä+ñLЂ¿Äp0õÇI=µi:áä‹.¿JQÍ)=O  ç󗦦Ãi„–æç­b~‹¾Þ¼=Vʱîó¹Ê÷O÷«·m/9ëeª '“yþE—nºîÆD±U›]Lb{Åæ­C'žÜ:´<™,ÎÌEñl5]j¹ýõžgøÿ;~ú@pûÊ–oÝ,ÒëGÅæüðT®·ÄÒ/¨§JZwY=ÄËíÅlµGDÆåöŠÝmÏG^Ñ+¯½!žoL¤ÊÍÑĔ”hfAîWVºI)Ëtåê,±ít#­Õnß^T zM³KÑdºBMàŸk½(<ÐÆ|%p›fÁµ$Ãp³©x,ôÂT®ÉR[Jš¬BÚÆ“%kIØêcÓ­—mºîÍoˆn†2—[q‘ž«á¶`Gú„„MëžFHÞÆŠz~æ‚‹ÏøàGi«u‚è¬ùüÕ~Gïó]–8Yj¦Ê-×|c¶ÞëO¦K¡USÓ•X¾Qî,Ž§Ên™mGK®[P.Z0^h +2 Zk½å±D±Ó¸ëoÞô]žd$ž·>zòÕú(nÕM´»UqÕ?ñI>ò»?ŽN^qðè,&9ðÖœþþM}8yAsZ=¤a¹wÁéï?»4³  ÑM%\ ß~ËmëN{ïíwü,ì‚·?ïóoܼU«³ƒ² YÙ¸[»¶³éo ‰YËÍ<˜°³Pî-MWfšl[¡1š*»‹±Rk"G;HF†¦ñl5?Ãø2‰çãq™6ìå©ç_D€;ïHP>â²µ)u:H¶ wåÄQ…\:åvÍçíouŸÏš Ú ¹âðQZA-|ƒ&}° °+ •L<ñÌ ^Ñ÷þ‡qî.¿ê΀i²˜z­¹¨ƒÜ°â+Î{ƒ0Ï/´¸eÔ’€3B¨Ãó©[‘ ‘|f!úçHÌ V—Ãg¿pé©g|ÀBÄ"¨†ù-­ˆìØy¯ôö<ûW‚^¸Þ½k·àƒímdÆ[É«›Mk ·½Šb· sZTŸÁãªtzËðÐœäŒÉá”dG¤ä 7ðk>ÕßkñùùlùPn¦Ï¨§sTƒKWñ”8a8b±!ñyçRsºPg¤Ye.µ¸q=ƒc ¾\[ýˆ»æ¢Õ±„•—Æ“ˆ +€ÿ›fZLˆ–8ìÍÀ+¨'ü‚³±:z«¯ÿö­è­qÐRr醣wP.3XB}*[Ë 0˜äõæí±RŽuŸ¬é9ùĆ3?„f<3p zIÖŸòîu΄_pƒ8,=ëœs?}þ…>yr°"Qï.vXÓrû‰½:îMë~|ï/˜ÿ\µSë,lÜ´…ÏÏVê–SªÙ±x1(E,Ûàí ¹ÊL?QhÃH0ÿš’Å+Oæ;ñ”Í[o’-H•Ûò È"ðÀo,WAÚ€\0‡hÂË•à7˜dìEl›Z±ÍmxKd¦‹uÆžšÀÃruv–U$ËN¥»¤CT·¨Âüf³D·YÂÒŽ!r¶0³ô\'Óyº õ’¯^Càd$Æcß7‘ò´íÅ­ÙT$)~8 +3×]5·ï±›s$–6ÃD*ŽZÎ Wn¹ñ}gŸ+ù :}ÉÌ5Ö|þj¿£÷ùX}µÙʼnT1Qløp\sõ. â!˜³Ð8 ­ +Øê¯Ä lTD“=çX¾ŽŸ«¿#ñ¤!—ñ?ǯ×GÑ +ÅÉr+¸Y­SÙŠ«%D˜mW³÷ϾÊwÞgHw)2¡>’qkE3 ¶å$/"î†÷+®ÞvÖ‡?n*ñ`ìͦխŠSG½åÆïk!2a_}D;TD‚âèCÂxò}“iK„³CX7QjÅWD*^n$‹‰j'UoOæë¹6ì±ý©ú,WÏÛgšd±”¬u©ÛXº,YÙKØ£I¬ûàãOÛé]»v[Bžá£.r3ž¸}Ô­Í h4U¦¤k>ÿh«ûü ü¶+2ÿ‡ý2ŠêÈãøp‰ÈåAÔxlŒš5jR›R+1&&êW‹èÖ •CTŒñŠ«ÆxlÐ(®Wð” ê*b<1ëuã}qÉ0ÀÜÌ}0¢ÈìçÑÆbmU¬²Rn1ÕÕÕ¯»_¿~oú÷ù~ã°Ç{a€‚ÕP|(+¨éÌØó]hxëo¶fB¹«eðmܤü• ZÂóz»To—ªà$ë=8Éí’!·ÔPpõØxÈF ¸`5ÛÀ0cx:‰uZ›V+tæÂr-a݇G'4oÛ~*%±»ÏCÅÊÎ$ l&'ïób0>?7ÿ´pìwËÔ ·Ï:b©J£4™Ý2_$ô‹ ß,Q±/Õh¥üBï`“÷4V +âÂÎiÃÿB”Ÿÿ¿}~±Î¡vÔáö¯•ê”æ.…†Bu¨<©%¿m¯©¨²ë«=Ø•©Dg2¸=ÌV¸Dá–E£Xk¸¥Ô3J"KÑK ¼½«T Òro+´ä»Bx$ŠŠy:¦Á(§:rdì/Ì—„‰5u’aãÉ xó…èÐfŽPHÎsYùyóöE)/ºÏÇ«)u Sg{5=}ñºRkÑYܹy'¹ü|~’_P³Ë·JÔF§Ö\ýï ×°î·gÑ®ÐÛâgÊ|¹·{>ôS|©;tùӽʪ1qSüƒ[0Mæ-ekæ^í~™Î¢29©±LDÑUKÛì®[ºzC£2ß@V¸z§”ztlb™Æ\ª2šœµ®Þ o%žâ-#¡PU9ec£b&·~¥ËB¥4êHÙ¹ç`I…Acr&6pí®BæÔ8$BÜž¹ïÐ…Œ—¨ªFÄLj÷ÚY9G¼ÂdþÁ+Öm¥ŸMâe ÔÇü·ñßÿs¤Bmbqû¤is ¶šëe¬Ìxn@XK1$kœ²e“ù>l;fÒôúLÇÆNx6Ƈ%'boÙÄ-¾M߉êýex´¬Q’„ÐD )h¥$Äç¤"¯B?ñ‡×KÔK‡`DG„6øü_ýžÝ烾¿F'´h×éfI§×'¨)õö]û9´éHûÇ}:‹ÑâJCQ…ž„tdìdé y˃š¿üÑ°‘0µÙ…q¦¿ýß<ðýIé.yèæ»éïNQ ä¿õÈü‚űÔg.ÉÃ[Ê|(­_}xá½údBhËöÒ">/wìJà°‡„âÔ||â,(}µOQ¥E2òóEï‘m:¿É%JA¢AM?oG!1á.nÇÉcàE'6æhOƒÍKO$0ýƒ‡ŽŠA¼Ø3/9bÜÛbóÍÛv>yæÏ…`&NBÔ[¥`.x÷ÔF{a™ºLc×Èñ“˜I?o´vS:ímÛ³Ì7_þ㑱;öÊÍ?ÝÚ˜¾¥ÐJ5–~C¢BÂZU{øDU–í¢fB­Önå‚.OÑÙk:3έ¨ÒTåò4øü§ýžÝçc•'ÎøB:~Aj­ùFqyL\¢8-É)[*TUYûÆy_%SU·xàisÁFgõ£}G~dÚ¢åk8Wô›Š]arL`!-܈ËmÖ¦ç__e¿r·øèÉó<öª ǃÞý7iц³ÊR‡ê—ÍÊÎ)¯Ï X™,uÖì…£ëžÆ28jܾ£'Ÿxøµ£¾cã8ç+pï&·dæi O¼ ·P¿ÒµÇÛ½û”cL<¼2Eï¨eR¬É ²1›«6}×~’”ùKþIä¢;1‰3DÚBP—”ªNáǼå§Ïa«•FóÀ¡#f/\Êk—;~VÖ8$iå:.1fäJ’mÛ–É×` ö׫¨¸Ä°¦­ˆA˜°ûÀQ>Š•ëì·à"-;'4¼åšÍé·îUXµýaÏ~C"ZuйêP¨‹ú4øügý=Ýç£dŒJáà_”ý‡àu—¯ÞŠmöëÖo“h–ù/TŸ|øÈqIG¶ì°Új”Z‹B­Œ+zéZ«ºnö—Khçæ,,ÓBor™HÒ’•°¢öì3€#ÍÁ&”ò¾z‡¯·TSŒˆöÇŽŸHÈpILí=xU ÔW‚2³r&§¤ú5O˜6篵ÖHoatQÓVh­ðSø|žŽ¬àÒ…9ßœž-|>’AOþ© \.X´Œ·C 7¤f¢b)[2¾·oÐÂ¥«°ý¼/ëôù`PËö¯!‚€úÃAÃzöÈw»§±bòYŠÞñˆoø»øŸÿÔßoõùÂáSãú:ú Q»õê9bœ»ÆÓ†GÇgçv×yöÊ—ùÈ“–®ä¸Â½÷FvèúÖ¥›EÔé»8Û)ëS¡¥²Bn…庬œÃhÊÂÅË0!UV70ü¸w$›„ýö +#"nÞ.!¾ø2‰ö‘ç®(ƒŒ=¹\®Ûœn4»~8s‰6Ì6:Åa¹™>o1ÂápÕ~wø@FbÄK +´z]3 )J-Á‰Ÿ®øùoHË’\Ðsæí‹R^tŸ_Z¡«Ô™•z™—ÿÄOgšì÷u&GwúŽ‹Od¨Ë=†F)R¨˜3uæܦ/µ…Æ°D‰›‚ß®²?0ØjRwî•ý—ý2ŠêÊÂxBÓÈæ¾L0jŒ‰÷5AQ£1*¨(Œ¨cÜFÌàcÜuT0ˆˆ—ŒŽc̘8qILTŒ"nˆ ²uÝt7½Ð+Kƒ@~í«š¿¬TÅšÔ”UtÝê:ïÞóî;÷½s¾ï;ÎhoVdÓÔ™‘^»]¹žY®5–ih9"Gñ–=zsie•L­W›j +åj£­Ii°öì7( d2—Ì«tæüëB+‰WôâåJ­Ic¨öîðÿ Ð*‹M¦Ð«ÊUú‘~A½û ª¨EËp~”[˜“_b©kâ²>~«ÏJä}ú0¾L©3×6r.Vß éÖë]CÍóÂ2Õ‚ÅËÝÛŦК˜œ>¿m'Ÿ“gγ3OgN˜ÜÙ§Q±¿ïÛ†ÁΦšç¼®±Áaºvçâ?#|>‘°Z¡1FÌ!È¢R%7úöîÇ’ÕÖLTxêkšó¤ªÒJóß¹´BëÕ¾ëòÕkY̧|þv¿ÁÀ ðŽCFæCWO™ùxn4™ôÔYò´!UÜÛuÙ—œF*’0$!iIzP˜2µ)€lwr'™—ÿ5^mª/ç;’½Z+¡¨47¤`lrúrLâÙž—Öm G±Ç¹ —ìhl®óhÛyBØôBY6§óƒ'MëÒ­'0‰¸yu fNÇåšuñ‡âìwærð]·aÛ~^]¡¢ŠzT™Š* h~Øöÿ.à[tþK¿Uç ¨ä’ð‚¾¦‘¶‘Lf× UnQ™©¦¾P&ï?xøø‰S`XS]Ù{íV™F T‚f¤7þd2øö¤°úÜ:úôá?Ø$ç)ŒÁ£º÷îÇ-@î¬È…ìp#ó¡ WÀX±gûØõ ìÀ½Þðý (^ @Ø¡ó.iñdPšma+XÆ»“Ïè±gê(ì£p‰wGÀ– ¹—‚Ãüo¼}]Æë®ó24'ˆ1'ªë›½¸ÄÀ½}SºØµ›±ZÓÐììæöt>J~Áâ•"I‰B§·>ÿêâØŸ§*UTU5Œ™ób˜ÁUÈ—ëL¾=ûDüi —ÅD>ò^ªÒ±¤«®§ˆßùwÚJsme•Õ®Õ$á‘ Q™ž@ë6oX£˜ä7TsIT·î>"Â9/äôA„ -°üÞ€a³æFs"à—}V®YÄÄíl².a;þ]õóæÉ3"°É*…Ú¡ +„£[¨, ‡BdìÀnìITYòD­Üx?:S-Og·¸[˜„­cnÔâVέy"Çá½Av„tç~îØ›„ƒp 4ÄPêâvÁS÷rK ­¤´/±3îçAU¬Â\*£mĘÐ÷ÇN”ªL|;È—,lÍrý¯òH‹Î/UëgG#e%”Li¥±P®¹~7›Ë½SU2 ô7±]×î$p ,“B@%( +®Ž ²Ä|ôŸW::I@Z¹”Ä¿H옩2Øå4w¡É“ [v•+…~Añ¢VÅmbsD5·¤?ÂÇ“üôó'’´Ý“œŽbÏ•ÊÐðŒb¥U?Ä/xbØÇ*#|Ä·–ëk0T¦z¤>6üc;‹½#—üåY¹–##õé1Ø%|¸‘¨a¼ÒgÀ0 +‡C}8kžXâÅy±9±mo’@CÆ<#ÏŠÀkýp¿ Ç¿M9»z®øt»qdæx3h~èFìêÉÛc«þû;¶Úè($ÅVølül3w³Ÿ‚´»SŽ;»¶¹z'›éÜ¢ó_õ÷r_a°0²J d¡2Ô+tµ…åúìgr¨aCÂv€ Xc öí Çw¿}x<ÿí씣'AEÁgæœ(fXÌ ÖzàÝFoé* »0vº>7p’­¸‹™¸Í[ùîBß'”ÿ¤ÓÑcœÜ¼TDSä* I?rìD¿1¡zCÆò¼H¡GØ£êíÝ +¼L“ÿh3%ñÈ)g÷³_ÿÇb­'˜#1é0%öÍ¥kÀøÏYÙN®žxzÂ`Ÿ©ÊŸneq¿u·ÀœÈ/0äô¹ohs>Oý‚­¾¿~›¥3s´ÕÍÈ{muM®TÔgXýZŒÿë:¿P¡E ä:;¨ê,OŠA æ ña^† ¼T®ªÐT‰œ%«ã6 üAr®]Ä‹–ǹ8¯Ùð7`y@‚q…üqn øŒÈuüYŠ¤Î½Çä<”Aö‚à? ê¢Æ§ÍŽdµ—ÒÆ-Øx²ÊžÌÐMPJÔŽÐSwñ,z’)µØQKVà‰ñks + +9‚ “²çÿÞxûºŒ×]çÃÃæÚF0vobJ+‰×¥n¦Ÿ: Ö!’Yºv3“ÏýõÅ«ˆj&/_Ë@Õçɵæú…ŸÄ¢ä1ò¥Ê‹ßgˆÝö%Ó˜l2%IeY¶†U¥…¶GØwñí=;jFA¹J¡7«ŒÕ25€\{ùÆmgÏv+â6mM´D :àµkuqRÊ1`¹SÕž‡¨Ä6 1?FèDXå·î½ÞeãæÄ| 9M`d6ø¼s2þt¬è»Œw’À#$9ƒ!í©žIþá"H +ØÇX»é3˜:€×h@RÓ¿d[1#Ý¥°C}Æ]˜+jÑ2lK]§à,ØDH À93Ï (q?OŠ˜ðT†¶O=y†êÜÞç-]u:†¢ @ü÷ê8iÆo‡îÿ*:Ñ;}n ¾ª¶ ŸSTž_ªâ™Až•«ÉÀЩîíº€äà'ù3`ø|e¤ˆ]À;ˆé€\2*âÅ×ð°å°&çD/á?#+›ÛMuMWoܱ+ÿ·£‡í†£«à ÿéóIžÄÃél‹xÛ‰aX@ˆ£{2gî/ì—yPTW‡e1Qq‰²¸a\0jW‚à‚Š *‹·Á]q£Æ‰Ã˜LÔ‰Ñ8q4&£kb&cœMƉJXD–†fénšÞwºÙ±ç£_’¿œ? *eYÅ«[¯î;ï.ç¾wîï|wmf©D œ 0sFÀC,ýUÕ>úDZDÁñgx@àSõnÎïÔÕÎGI©\o¨dZ bêÌy ª5ÿÕejƒ%'·ÀÉÙÍ©‡+¡åìl!/ünÇÞ•S9ùÁy¢e#A þÄö­ï 9{A8ÀrG!ßûëGoßË'ÅÄ'¥tE‹‘|T!A6½½üç_9â–4Á8B–¡Bc %[¡ÉÁ/…âÞO9ÅÅl…Œ³­:†uõä„BNaRc¿ãØ›\¸ôkëí³RžuÎ7Ô7œpl©XÊŸÍܾ'5czU)UÚZìÜ1bÉrœ+K*$R• ŒW.I†äåÚzk«ýâ§_P?qæ‚Lm&S”V/[¹¶·»w•\ç›Ú«Z8?)}X®Ö7´Ê´¦j¥NSßöç;9÷:pômÚH5F´”Â\+ÓÖá`ììâ~àÍlÒ +¥¸¼ùEZíõmC«„¦&CÚH·ßè e+RAè¼¢Ž¬™ )mg9þpÌ«Oÿ{%Ä‚ãŒÀ~!ÚÿçÓ€‘Í mtgê]û Ä^X"¦²qË.žÁ·ì܇‘$Ètä²ν5Fn';pŽ/œïØ㜤øìŒF©Qô v­µÄ?uvt•ÂسπƒÙ'~ê*s‹Hªøcâ“CÂ"º9¿3W×9*Nٰݵ×s¢v ´ã΃.ïŸû%$xÊ% +´ÝgÄ(´šàê?Öol°ÉÜؽӼˆÈÉ%ˆ"BTTSGèBrÕ×W 2~”~>ÃiIìÉ÷í?lµµÒ^o°Êº:…NÐê/oÝá-Ê_,–2 ó¢9¿rßïß‚ØßÈ> ÒCû°úŒ¨ÅÓæƀ$aQp>„O,k;§€‰!a}û›íÁ{u}›Àùõíö{E‧ >RR«nhl¯ª–‡…GOœ6“Å–VÕ.ˆOÄÜÐ8–Lyã­·±Qyà„)Þ•*¤²ª6&6¹dŸÂ²*Úœúð"Ÿ‚lÂ…­‡h°\ܼøØÿ.²M>¹Âª™KWßLË°Yáó—È´žƒ|Ó·ì!ãtü,}’Kêæü®^Oæ|!GÀùÕ* ¤çW+Ì…¢Z—žûEÖPZA«÷8BxßÏ/F®Á`¯çûÎÉ3èZ*"ãüJ“­`Fj’KBru$ÔÕÍkÓÖÝõÖâ„õð&6v o9Ì’_uŒDš¥Ù®75lÝ–ÕÓÓ{÷#{ÍÒú°¢ÙŒŽKæQKc“½°\ÖqT!;«Ì¨¨ü¼zïÜ%œùüË›¸!$ ÄùÔÙ /^þ ÿsê·ÒOh€ìoÞ±4"›°,C}Goؼó굯CgGòÈ©ÁË{ dþ¢%èÿSõnÎïÔÕYÎG!kÔ²w©Æ\­4Pà|BQgjH_¿ùùC·gí¿óÎß·ÿ ÎÜhx¥CE´¼â +bìïžBúèÅÝÜô˜Œ“$ŠÒqã¶,Œ?äÃù¯gî`÷–Ub7ØZK*eþãÓÖoÎ/ƒý4ƒóO&¢;í± ªŒÏ€ÃGŒªUµ$ e木Y‘±l+s %ðC~¨0BDdìô9Q¿¶Þ>+åYç|‰Òh°µWÖj•††)3"ÂÂcüÆNØšuPWß*–iàùW-ëçã;éå9¯%¦òÉS ý%+Ò$OËoîæ99{œ9™q ­¥euF&ä¯ÐÛØšúö‚ßؤô µ‰Ç:ƒM,×R‘i-A!!aár½•–tÿçµ[½ž˜²ÎÜdGØ ‰c¸W«±˜í¶6{PH¨÷ zk[¹D•°*é§G¼ªQ¸¿02ßð°ºN0n+*agXZpÆØðxfÔBþƒ™ZenJL[ïìÙO$Uá ~*M5*#nàlÁ=!åõžžý¯|ñµ¨†Ón³Ì˜;*h2øé8‘G\*,£_#ÓE-\Êì¹E|º•k6± +|ƾ4™…;9”ºï˜ñ âWОO‡“¼¦¾­\¦­ÕÙþ|ú´¶ÃÁlßåwd[]k…:¨p(“¨»9¿3W×9Ÿ²hyª‹Wļ\¦&2¿Ïã@êþî™óe¥ÚÒLèΉó7±¸Jž[,æÕîƒG‹Ä2ÂIkm2=.)•ŽDÆÒUk\½ªz"ŠÀc(Œ›wÑ…úÎŽ^Lboø˜àµ™;9\<¬@K3‘IGzÝÍ/ ³ëÚy¥‚sÄr¼è¸81MHCZÛchªWš[€vîüî’Íh/ÕZ+äzê°ý¹ËÿrëësìÔßàÎÅÕJz勤D2-q¸çp¶ð¸³wfD.`vœIY¿ÅÉÅãïW¯S/­Q°ƒÂ"bûõGar +JñsëÞCv;þÓ—Ý=eV${Šú€qÑqËñœïfn±³êÂr \¶:ƒ^–V;C}{¯ÀÉ­Ï¡?05Û™Ž·¬÷ÄÙh¹ïˆ“‹×7¹ÅJk{…Ò„äÊŒM¢:C7çwõz2ç#äîp>)Ηë«êLä‚É¡áÈbˆÞ"b§Íì;VmjÂ’“«¸g?ƒ*¢u‘q,TAF„‡ø¢‡2}‡z1>) mçmQ¹”ØYì¢hyê:~7ÁÀ¦Ô˜˜a_èlmû ñc[ÑLx$ÈéKª•<6u†F4³š©3(ŒMØî—¯þG˜ §?}ãÛ÷…匌ªã*y ·©LI"³ æÉ8³£íóXL\" èÒ£wßû…"¹ôÙõ§êݜߩ«³œ_&×#;ˆO¥UPQÉEÇAvï瓘’6ö°j ò…ð +õ#’+ët°PÚÆmB2Y£ƒ|ôÖß xyn´ x6Â+¯& ò#? åì—ylTÇÇ×¾m|@‡€h¡)4‘)…P"v¸Œ9 ápÌ(…R®+v`Ž5¡¨Ô„†ˆ!ÅøÄ»Þõîzí½ïõ ~ý<Í_‰#¥‘%¯FO3ó~oæ7³¿ùü¾!a‰Ú€záóîý%§®¢Bé?ô%+*ëRÞ¿8> W¬!É8õ]ý»?ò•P8#F{}Z¦^¼j"03üÄ=!Ì8e$šÿoÛKiï:ßìjÒƦ­ß¢ŽŠˆ‡WB®ƒßŒÌlEP$Û³ÿã +­ PÃCŒ—¬\§ǬX©ÇƒEË×xš$D5Ð;8¤3fÌHx~}¾8wÉJB‹ˆ%œè'z ‡@B3œùÛêLÚ¹£Mš> ‘ÍÊ>C“K˜åñÞ†M{eæy?!0Ò­÷Ï“¯$?xäo?:–9Lë6ï tÏ}žG'ªñ‡&!{ߧóùœÆYøν©ã«Æ“£§ÎÑÜèWæz7}#Í›ùßð–Š|ñ »`Y:õ‚âb^‘ ðÿÊõ[“»Câ¼¥'s/³zëýR Ê*0²ë˜W&’¹HLµÎFžEE*C¯Ãú Þ¡óÛò{v<ž³$M( H‘ÙB¢ŸÊE~'ÈÔ‘¯NŒéÞWËW'M'„`)÷Yš†½LH\'E˜c@žBŒ½65±[÷¾È`êû&þWmØ‚ ëñ³|-S0—"$ú‹;÷¡·˜…Ѩ d2Au#ÈÑö9¯)‚¢ÖnÙMýË{Efï“Ÿ ~)8¦;Í2­™|¤ªq þQò¨wd?ª^€Öæ3æu²sèjÖ¢•ÉKÓ9°S4U0»|[ñM;ÁÏÙIœ·„&¾å?(§ç`öéo/A¤ ÿÀp’N©Z͊ĆÌÂΰXÒ ÙŠ4Ä¡«ÐßN^œsž}›·4- (¢D­ÃŒ¯üC¢§ÍL1ºêÙ‘×HIŒÛc𰣯ÅT'‘n@.ìåÙ¡óŸõ÷Ý:¿Êì%G)¨2 ¶†{#’ïØ™ó¤”È)ËwOœåíƒòªø€’•¸ÚÐÃeäÒµ› +ÿ°ßŒÈVYæ¯G‹ïÑoÈЗí'ê:¿M¿¶ê|ž  ¢Wi°É“ç>ýÚTÒêúüÕ/‚¢º¬Þ¸Uk´ge£=‚÷fz¼’q_+©¯Ù¼þôÊu¾˜KÒÖïËÊ&È ŠØ±ï úŸ4‘öþV!Wˆsš"­ÿ®&Iôôì?xü”·9¤§ôMÛĘpõìg‡Ì~aÐULÝ•ôB!­ ù‹#_Á1I}oMÜ£0'ŽÐl7¾*Œÿ±yÛ^J{×ùÈH0(žWÿ™OƧP¯2¹•Õ6tæ—w*:EÓy» Ìâ}ó@rjb2z²QPÑÈ]!‰ßœ1 +•‹2‡ÕÖzÙ×HÂôY‹5µn“ë1MD.‰Ãæ“衲zÓN¿ÐxEH—G€ÜwЈË×âÇ“SŸ^Ž)Bbpæ^‘ª²ÆHOJYõMêÀœJï_üjö¢•T€<ØÏ<ö‰üa`$O,ï«+k]ÕögÓÌ…èü*å:«Æä¡¢6ºÙ­EÆ5Ïw¬@>±p1{hlŒNøP°¢Bȸžýã{ ÀP‰!–Àt\0 /ÐÄóO.^ Œìz2÷2Ÿp;¥ÐŸEð‡Ææ^¾Îç|X¢®ý °5_à9Ïÿ”¨a>ƒ@c¼á)¿ ŠÊ»uŸñYѺ-»1[š¾©TcüÉ…z‡ÎoÓ¯Í:ßÑTaô(M^žO‹W’ +U†õÛ÷ÊFE­zÔb¨ëœ Wý¢ž{ÊÕ€ˆ›e_W®ÏãµÛöÈ­ý¿L‹Š.ª2!§÷f!Cc é@qEµ1ßš½HGú(V׊tð|¿Á°ÚÆõÖû›­úPÐ8 ²k™ÖÜ£ÿÐ+Ö1‚O’H"²þ‰î†3Ióß¿|-$gRÀ”wæ3,€¥. £NÞ¨ñS~lÞ¶—ÒÞu>ôƒoÀŠ +ÚØ['y|- ’N`Hríõ†Z' Æ _®©FÛ[ÜMJM-•Þ‚ÎwÖKF“Ëån2X½ÜŒŽzêjƒ­ÖѤÔÛ«8z»»I¢òHk5»ŸÍäÙKÓ`k@ð—ªMO‹ÍÙˆâªð™‹†¯Eb^ÒŽ™­>‹çq© +_ñ g¨à'Hnz 4@&ƒ€b +ƒpa¡b±Õ­¾†&I^©ÅÇÚÉTÌÞ–ê'Ç„ ù^ïŽ'ŒÀçÅH2GCƒœ ++™ ªÃy\SW™,vî2,ÝÍ’¸ƒà[Š½ØF«½^¥×ã*MGƒd4{ìu’®Æ ¹?©`F²`FÌ(ô‹ÿ… +Ù› +Y"vèüþ{vïä2ëjúºXir7>Ò™ôV„ŠÓéndß@(rü>PVC]tòý²*šºj›Þê,Èl +´È“ÅK˜å?,EiC]ú±WVÖ`C?ˆ¦¿®A*oý!M¨0ôךÈ:“ç1ö<¹S8\MY†¹q’¯ÔĘ٣­¶1 öÉ‚‡L@º]X·YÆäÐÃÜSäßÑ@?[gõÈw ŽŒÞJèÚ9S¶:¦Ã 6€¦ ±ÿÅ%…W\dTvQø_öË¥U’¤ Ãàbp`À•;·þ W.\ ½Å.q! ¸W¢«ù ‚+wâNp58ÝmŸ>§n§ª²2³ò~¿×½*|"¿C3ÈTkµ=6ª‚ÈÈ/#¾ˆÊ|Þ7ØØÑÄææÅçÝ3¿ŠátÙmÔ<ª¸”2°#3m­¬sƒ‚àÞŽÈJ¦#a–Æ, Bžì›Ûc‡%·'½4–ƒB}øÑ·QœËŸµ,6¨ïóÕç¿éï¬Ï‡ R[ý¸C5Äíƒ8pÄÛ—ý‹ÚàÂT‹@°uš~¼]å–Kúy© 2¨„{0IB‚z­5^NÏþ¨4$ý2jŽúÀ˜­ƒ|ƒÃŸ9NPí¹¤Ýt*+¶66§§C3é³Þ f‘陑#ÃL¦û¬ˆPô3i—[Å]‚‰$lly¤ÄAÒò!0HÕX©zIâL£ôÇ—²ÖOFÔ#rð®úÕç_ô»Ôç/˽•oÝú8»gSo`š ãg‚G˜_l -ì²´p§¼ðœ’bëå…xÉvŠÚ­vf4÷§jô4èñðù<™úˆZno瞈8ÄFhxÕ §P}æep˜B°þt{!à ¢6úF–·‘H;ãëÐ_YvpÉy„l„ñѤZ +ÔýÞž|Õ¼},å±û|ÅV‰é…í® Õã ·Åô‚\#¨¸Ë%µæm\ãáݤ1Ü{«Ï»ãlS‚|5µ#j;,)i³'ànB~Ôsº,fNéç{,=¤Qƒyä$›j‹ùïëŽè~N¤ÇÔèúhÚW{I† ŸmzÈŠ[rã}&Ûú€w +Ñ.%[L{sTŸ½œÑ©U ¨†fÖ‡yØæ;õÒˆX{ت›yhDSì©ÝRߥŸ±R½?O~ú‹÷¾ñOñ8ã°QÏF>Ù%öŠi3·dW‰$s²%œº9ÙÒOV"a*=VŒ¥lù.å`¢?êbƒwúåÇŸ Yè®õA;ÐMˆA'WŸÉïÍ}>n¢ï^ÞÙq…%.<Эԭ +î&^v'áöËE`ƒý‚~iÜYwáùÈI5À«—c\G¹¥ 4ä#S Á#<ÈPϧNŒóJúù›ˆO6êéÄf|¦æ)ú%)xu2¯=d×H±RJÎË)è†ó¡6!Ú¢ÃyO îêcE{dÉý›\³êÞüëH6‘*ÒË÷ +ÚûÍ¥‘Ã~þ«÷Þÿî‘<ù0äRn'~±àÕjƒ%Ÿ¸:)m:“­ºµ" YÐ>ŸØn½ÿ ëN2&ã°X†¢fí4Ø[úY;{Å& 5Ÿ-füþ“3 °±Lû-òüêóÅçÃ+ˆÓtIVbòÝT#CT Ž†0™K †rP‘Ò`sê ) s:á$léÄÃs˜ <‰á2)†½ úÅ, 0ˆ_Ó DX)¬&\/óæËÊVÐ÷Žñ¦Æ¨ÃL,:D¥ÿ›IK'—÷NƼ$0²âÛ¹O¼öt’#‰qpà®ùÐIƒ$  æ)r­!’ÇÙ"Y&<çFýêó/ú]âó—Ëp3Ú;§¤¶«“×)êEºÆóÃIø @Ä Þ>ŸÆÍÔ :5öJ¿U ^šñÈ-¼æt³ˆ&~ÅS<;trîÞuyRÜ…¢°ÂRF¶´!$ÀGMÐ.iˆ Ñfjz¸‰Œ“nµŽP„¢“‘'ãð,ñƒ_.i3 ‘„ɤ°÷ïÿë;ßýªyûXÊc÷ù½+ÖXÑ)l‡f¹ù· »¨AœcoÅ2ª¤àêï­0®¶˜Ú{.Û½â 0^øãäý,3¼ºÂñÚM·C#Àê›A‡¸V ?5ƒ·73Âò¨íhÜÂa#(ÈLj9h¢@2ä¶ RÅŸô€*ÎXÉ“bÚØcËŸ‡t‚e–ɪ¢E)‰EÜ¡#³ ÁÞŸõù_û€é˜¹–iÝŸƒlFÔ`ŒôÖ .³ÃzîDD¹èg Âa„»"vˆ¹ieä«ôrÁúø“ß¿ÿõoþñÏE˜^)&å²¢òêó/ÿ½¹Ï×ûSlܬ™¾“6VT˜!û¿âc‡–ÔB]Ú0“60Äî‚G *ƒ€\ì:°å8m9H€\XÚÔ +h0 8GÁb¡{°Ç&N˜§„xÆÔÉx¹§ßŠŽ¾—žt§‘iâØé7ÝÉr¦nFƒ¯Cb°÷ÄsFÀÌÓž,âí¤Æáó™0šlÇæ- +e™…ZVH>Ûéuýð'?Ãu“‰,Ÿ´ÉYçƒïª÷/ ßÊ׳ ¸Y\âîì żž3Ù:TŒöë•ÃË+~2šÈ +³q%ÒIý›ß}ÊŒúË߸¤°™Ò ’ݾúü7ý}¹Ï-xpû½ÙÃäÅŽKàæ$¼0 L3ƒŽ ÖÆžš§ød#vÒɉSL²TܢȋU¦1¶£r§ºôd;ayPÐØJ[ñù÷^å–;¯:-s¿>ºÃj7uR<üŒ7<ëô %n(ø|¸J?€›žßäûJ´–iˆ¦]s2-7L-,BÖ(˧P£8vc:h.×ØN Ÿ6Ÿ– z“N a#0‡ä\‚tЗo\« <¹ä.ýøü/-x{<½S¸¤íe»…ß@oÊÄ-©‡vuÚ‡ƒwøÿN +[D&".´9p" œ‹ç ¾úü/üþ³ÏCûß3ÛÀj MqªÃ­•P»õQÎ ÿ{ùÈÁÐÉQ!°‹Ý`™½­ñÍâ€6Ek=jùŸ­¨9Èê„i™$ÊÛš—í¢fQh"ÛÅìËrÏbß9Àÿ­\}¾øü/2DÌž”Þ{o°Ù4(‡´á$·ñJp-úrŽ“&,…®bï¥æòGÄF¥E= Å- ?r S;Åž_3þ¹‚Ü 5Aq ¦øùÝáO·ÂŽN”ˆvT’F-ãµ×êÞÎiçLÂŽrN×È–S ©J†a«—@ƒK2n±Y 2wnœ³ã_}þ[ý]âóÝex1÷°îè¬æpOL>ôƒ‡tðJM¸H^Tx\ŽG¦ª`–¡hÈi‚ZÒ æb=òrtÁ/·q‹KÜ|E¼{^Á«Ø…õþÞI¥î NéšÙYã #äð"¾fÞY´rª‘V¼Â‚†ùÎkÓ/ 7ÇŸ`V~ŷÇ3׿ap)²Wˆ/ D"ÏõùÂa 9ÎW·'ükC3"€=§`æ ÀÌÓ¦Y1¥/¶Š6N~æ¥ÙZaþ©é,B†âh@ðZ©s¼Ê:}ëvjþ‹ýrùuãªã¸ iZÚ4Q!Uñ7ð¥ñH 4U@¨´âQ@‚J°(K°@<BHl»@HÝ Ø°@JÝÜ{}íkûz<žñ¼ßžñûqøŒOˆ²ˆ 㸑lý4:>sæw朙ù~??t!%Yö@qÑF+\½Ðù¬¬ú4¶ÅùR·[wÅvU4¹†öwœÿ üŠç|ä¥+ĵcuEF¤8ÈáèdYóÆp*P0ÅïU:²VTþŠ™hÑaÛõQªN2æCæ«ß4ç¸[08Áî±o9öoìwœ¿ç#ƒ5#SƒQ®ˆ3ÔŠ0"’4`Z·Ÿ“­møv™N¢¢Œ'SÕ# —´äá/âOr$÷扎ÅãS$§“öQÛƒÃqNÈôÓ³®žç¨ìuÅL9JŒçØó4xˆ†q6 iLÅcgkm— ¡ýe¾&«îã`EM'cilwKyÂQîËoX µÌŽó·ûÛ4çK"åh÷à ô’Æ¡SÚ’Ã%3fÝü‹lSª'« Ð/mI× 4SàP4˜tÝü<ñö‘‚;´œ.0ä'A¼¿Y×iƒ÷Œ±’1Es±X(_+ü«jt½‘àžÛÞ ¦µ–g…CÂŽF„ä|>h°n÷üq^Ñ°Kl—Ü7Ì‘ÅÒ¹ÔOwœ¿àüjÛ¥@Ãè+ªCuF™æ¤Ó6K³¸}ý6©æxÐ!ÒmÅ^oÎ¥ŸkÓY>†€.$Éx:5 ¯Áqg4Ô·¢±“L[V÷¨iwüýÅ©æSqP_4­„àö(¶ÅÉT@wŦQ×Р„a÷¶Mïÿ{ì8¿HÎ?6ºÝIE÷©c«€cÃNŠÒ"& 9Ñ¡ê¸ &/$ÔxfôÂëK`Þ¾åeœ_Ô¼z<:Ò<§/Xóšé”Mã=Ü«ÿ?±ãüÕœï¤3Pu34PJ"òˆ>œ˜(6=Ò\dƒ‘Ët©Þ oãBÒÊ6Qm{œ²’ Êãœ)@K¢Á¤ À¸uõ»ÁhT;Õ  M‡cCé$h{éÜ€‘Œ˜¿xág@þ€KhÐÉÙe¾Æ d Ü!÷É*ŒhD›ÀÚäñÄŒóõ.ɳ,6í;Î_ÍùkëI8€ -Ê#ÂÆJõë$c+›Ih”ÃÖÍ_ƒ·9%3 ñ ”–νƒ´rR)¿Ìxùá=^2!NéIÚ§ ûé¼$n +Ê*ꋦ¹­¼}ÜæN˜µgR¹À»ç÷†'îb׃¯Ÿá T+Ljª«ß ¼j$3ÕR€úäd±äÄMX³ÈmÜ´/<èœÏ“Èy”>qØ4!|žµaà=õ /ѽ¬ Áh°$é>Ôï@ÈWvœÿß8_¢»›ÍQEÄ©ËyºS»JìçHÿ±æc4Ët E% :ȃî×ʸÁ˜’˵‹TI½ãáÃpNWd{ØL_0’a]=4øÎB¬hL7Ä€8b@ED2-@ƒ1À?`_m¹ŒŠÊgŽVó¥£ÌH4‚&e¶@oÔõ›MÓéçB;Ð@À‹Êß ÆÐ{ÙˆìLø£üKW¸ªZm7!T/á‹kæ¨?,–óÙ%ÖB× ÆùÒ$ó߉^+vœ¿šóAS‰ú’ê ¬d¿a¨tÈÐIÈ–aü]Áùhi®Hn†œ¢ð}!HÅ_2ШO±@*:áy™-Ü‚g:™âtªWíT‚:VˆïЃ I3ãï`Ç:q%/ü”4èäªe¾Æi‹:ˆm¡xá&iÃölš4ÖË^±.VMçŽó·ûÛ4ç£ç˜…t +„§<¯Ø‰›ÍìîD>…ØÏÙÈçtYËÁ¿˜”©e•–/˺[=afÂîÎ+ªcG#?T³Ò44'·¤†æÛâáüV0¶²Ù0D›+eù7í :çGCaFC¨>› Žø¾îgv2¦µàA}NÉ* $`<µÿá§/•¹@ç‘¢Aõ\èe3ÈŸS4®¼üÚÙ÷~€ÌËô +9E?ÑL€Ÿv.V6™äJþâËß(>']€r’»Ý'c%òÁ‰ùìå«¥‡/TTB®·u?ëÇŽó‹ä|¶.š +DŒOþ­¿ý³ôî³Ä™‹ï/JOêVܵĴh 3‘”—B¢jeˆ%–Uïó¯|ý=O¼¯Ò2Ýt¼iÎG™eåÂ^=óÂtÒŠÛôΉç¯æ| ^Eêš @ø'?÷¥ÓçžÅsp ô ’Wp>ÂΑ1Ô ÿÚ¯›Qô‘g/—N¥ý‡öÿôç”~¼ôÈt2éÓÏ¿DûFµµéTâ4×®­‡nt—$q]ÚP<1 ÎbI ƒêÍpĘ 'æsŸ¹Z:s¡Úrkmæ_Áá¸ÉS¼Hçb±Äg¿ð•ÒCçZÎ@äw³Îö,ͳãüûóÛ4烠—®¾Z:ý8Þô½^Ó$š"‰Èû?üòÇ¿üö +^dÖã^¹ír9–Aχž»|êü“Ê‚N æ"9’{œÏgê×tûZ¹Y:õXé¡sùñÔc?ýÕï9Õƒ~½€’ù)X{nƒ›òY¯²(7–å?Òã`"®×§>ýûPUlÝíFýy2VØot<>É<‰;¬t\i_±Ø½=¥ôèEx›=ä-å¸i_xÐ9IÿÑÏý®G/þæo&c¥·]pý;oüøÉ/‡X4:Ð>Þ÷ã_ü–Güæ[õ?øÔ§à|7¶ì„«ÈC-À…ü¥Fxõ[ßcdUuè¼k0’j‚ê€Â$LômÞÊÃW—ó +AVÔ‰ÿë÷;(Z¹^à~â…Ò™óT²¼ÕzÐ_~ÉÖÁ~Çù·Ås>ûVm»¼¢¼¼¢_{ýûÙ\ìÕ´µë…%aÆ#ÀîNä‹Çߊ괜nQù›^ÿHQ`+›}ù›ße @þAC»Åù‹1RÙI5¯•Œñ ¾nœâ‹_ý¶b'eÅbu›ÖçucÇù«9ŸGȳãÈ‹Ê£üø¥y‘Œ¦íÑé÷ÿÍ~¹E}]q|YD@G!ë#i5:¶jÓ$:i4šÄ¤j L4ŠïZMŒ6ÆLgâ8MŒ¯¢øˆ¨DFk*1kÒŒè$MPGAYX–}±ïe—En?¿ß¡Lþ(Îàa:³;wîÜ=÷ÜsϽ¿s¿ç{‚Ìò­ï‚“Ä6 ØüwxP¬OîÖÆ`ŸUà­<.ÂF(ÄÄçf"aìº,­6¡€PoóuÏI=Vo+ ‹ŒFºaÌaÉSå5ò‘Í׎)šd¨Š:›Ñ C=¡â? +d*Ivÿ³Á|ð™ãã!çâŒø‰9ÇÑD&/óu"‡w’ç„c„ý;sá·?9EH ï®} =X +3!Æ`ÂÔò”dB±3¡t×¾Ä*ŽýâéçOžãmbsÓÎ||¦g/0N+©ª'O}{­ŠàçQ¯Û´#">5ÿØgì~7û&O»µÚæ{rÒKÚØd«»¥Ro­ªk¸Yc†çóNuf7eÔºÒÒ¨³8#{yj2¥“¤Þ×]ÎâùÂóŽ —Ê`왯ÿ„÷`éÕ&×”é¯* —­Ö74ÂèŒÆùY«´}úƒ„4ý¼­À x¤ 0<6™*À}[áêTa³-ˆã3u…W,HMÊŠ‚Âs,ߺû€2åh½3²VEõK’#kHÁØ+ˆÅ BOtõ|ãAqM!žÿÿðëyž²5sÅ¥<-»ÔX¸Ìžâßü§&ú¾ Û÷x×nÙœ„ô”ýzo{©Þnp߬._à öF~`ž/øÌóaG^7Ï\¨`¯ûÏïÏúj¬Jbe lVH‹ÃÕ BÂjëPHl×<ŸHJž8g`s4aÂp¥¢Ž8Ù¼ëC"5ôÙÎî ¨ôØ-ùýH> Ú`r5Ó`ò&_¦3Ÿ)*îŸJþBb÷ß©±xdŠ|Ä_r‰Ì¢â?ÙœÅÚ®òšxÎUXTÌxÈíAáBé ²‘H@ Àqo!žß»¿šçó­_ÎÈä»ó­y5e5¡Î”¼€ÑIh©ñOßC>:òéòú-»„`ód°Ã{Ä oP”#¼7žÏ“¡Ìµ[ÝÍz‹›þþ!#žž:‰Ñ4äµ–ÏÏžG?7ïË1Hÿê¢eaQ õ¶Fø<  +–RA0 ‚€Þ lTÔu‚Ç>;Kuö>ÜÆ×.%@O£o<_I¥ÁŽ2BЕš®UÒž–à¥26ºÑGA¶¨RaYä4jûû6­jÂ_ÔX…3R}0…>=³lÚ-£SªÔ°UlöY%õÊ» Nñ›Ü¼\/÷lö´Þ2¹-Þ¶Ïïß½ó|Ð4–…N€- LZ‡­ NžÓD&¼·-ÏÓª@(0.Ć%À)€‘µÒ˜’Pè [ b Hb j‡þv:,fÀÖ¢‰ì%KC ÐDí7ÙW€!»‹2f½mAþ"û p Œ25¶Y%:󼬕<[CƒÛh÷š¾ŠZ“Áî!¶ÞV +ëúƒJ±$± É‚ÒCêÐÀÇ ¨Î˜Æ^8#8,…þËÍÀjÄgä€Úü,Šå^'ö!žß-ž/Xêh +Ò ê ++X oÔZªÀ/|Æè_«â›QF(X +¨2uÆÛ؆2ð«Äž3€Ú¾#ï¹û„x³HÛئlÊÀ׮ؑL!@­z¹@¬¡‚‚ p†PÏ1ˆ„½$×0Œz¦ˆ°ÜsèñŸLÁB<СPR.q¨’JÞJî@ 7ÐÄOÒI­Oÿ›w拇èÏYü;vÁI\Å«pRôYË’ÎÌB#é°¤óJÙ W•+ +ñüýu—ç ²I¡ +|Ó «À/à\Zm’B„÷¢._Ãw—âNÊ[PAQ€ñj¥¨ÄY…¦°Üiä\EÂ@ì  È3>õÕ¿±¿ig>^¡€)0™U(H! ‰IbŠU”"d–¿Iåõ³’wX%§C|„匬Uð|Ü@ˆš½I)DS.gÛÞÃxE–¬V‚ÖÏ‘¿Ÿ^%qàRþXTºþÚ›Òô‰ýæri§¾¸¦í÷Û¿ïÛ?ùüw%žæ Ô:[wî‡ä›þôyK! öÆÖÉÓf1 %=0Œ~ÈðŸQüföBÆXÖ„Çò¹Ãc“7íØL ‚Y Ȇ?9¬_RL|*Tͤ‡~ŒpæœÅQq)5?ý¶¼@T,Hr9÷Ý5„,Ôh#Ç?ûkSPHÀK¾@.Ëi³æ.ði/\*!ŽÑpð8S ±Ô€³ÌÆ 4éÅ4lz[ƒ³-G"fÁä ø‡$&)WÁGÏ=W›=ÂüC<¿7~÷Îó°ëÂåòŽ8é?þ/{ îyj2$‰V‰Ÿ¾oÿy+ ÜØg »þ`pÁ²Õ?1¶èâu%JcÐçä}Fa8 ¿üæŠ&*QBhð£ãÀ=(ôÏLÓ(!#a—:tý–]ŒQ»øûÊ¢åÎæ À~öê·£“º|£–dA/~J{7'WjÀðåŒÌÄ9\P¨Dlx쎃Ç=w‚ÓÒçÆ'¤—Ü°º›,.?ЪI€l”ì@=UƒŠ¥œß–¬üƒFÛOyMá±é ²q &§ÌÏ~Ë…EÅ<Ùwç‡Ç$C‘aþv¸•øõ•› H|än^'ö!žß-žßÉjâòËRb#"ŽÈBáÃ/¦e0•ø€¢¦âÖª·@ÝŒÌ×ú 7VŽú(^ÐrÎÂ%+ÞDëòè؈¸”Î]Ö®ß å^ý†FÁ,$Ùìö’:|äÏ'à0]¦3Ì]ºRI +l™–‘YzËȌϚ»tÔc‹ŠKYÒG}#9{á<>ÿlç^´GF?^^c$qG¤Š‘‚bÎâlÎò#Ç9 "}~¦lÁ)H¸qµâÖ„)Óå€ý„þþa£¸7õ1UõVJÙ+ÿèIH~q)ÎOÈ)îý÷q{’ȸ^¦.^¯æi!žß³¿îò|¡‘ÂéÅ%SÔÈÛ÷º rÎ|uIrÊ€T‘ùÖúÍ 'SÀàŽü£}âRÎ_*Ã`½Âœ +–¢©*§åÙxg£wsöˆúI/¥£™Îj†¤*=8~âìe[±çî}‡Ág_Wóʲ…•#xËÕ¬ÝÇûRNâC§‚½ÂÖ z®D'.­ßºã…2µ°œBÄ>É•¬Ù'²qJ»p(%¯Þ}LdòʈI©=e®0Y"Ÿ€‡ªª_Zæ̘;H&‹á}}гMž|vqÙÔ9ߧ_»ÃÏ×àìçØ™KpĺÍ;ñ` Á‡»³ðvuìvê¼&켨0 +$¸då:¶æñ¬\Ûu"yË™R\Ÿ¬"y‹Îÿgo«ó¹)B¢DU €º`#W¿?õ”ÈÞ5jÅZz @˜«Ü‘˜Ì(3=(Œè¢çá³|‚‡§þcÌzK´T÷ cuüï“bj8{åMp›ë&¢>î×öƒ¨3êa(î×CìÈä±_ÏäñäØÙßé'z ]â™-`XƒÝ-AÕŠ”6…i„1á +æwôéÍL _Ø».Ž^ÃAˆ@hÅÃÛ‡Øcx¾ˆƒ`aæw‘o>Ì•ª‘ñp¢…j_oÚµŸD`ɪØ"E%Z~*èjò\âYð–ã°=lÊÖ¸Íi¡ç®Þf¢ð5e††¯¿ µqõä±—*uç¯òH°Îl.¯m’hÙ2 K°0'lÆùÚ4C.³P­ƒÛéKð•–®ú™æõ{ÿc!Ä×¢óªGÛÊT^m½g‡„—ëk+Œ/ ‰ŒGÀ÷èÝŸzq™Z]e + ý¡»O/U¥Q¡3ðÏG'w„"zX¸—ÄäT¬¡üI +ü'N³rpÍ|–Ç—¬øà||Е«!–„ëÁˆnŠsqk{ðÄYšP*ý»ˆ%ŽNm<̬¬mBZ•nîí£×lÒ›^“ 1æ³a~ÕõÍÅeZˆàIN1€Ÿ”š_RÂZ8¥H®&`H +¬Ü‘ñAÌ`a´³o¿±“ÁL·t=®Ë‡}iBž|à/è£LSɾ¸Í¿3êaG»[ÏþCF0™&ÀÎ^#¾ð8ü+*å†F¹Î„°ç «kš4Æ×:“Eö·èü÷ñ{w_¬Ôwðéã0Ó7˜‘úô €TF™C»g~¿!rA« ª• +1LÌOš9×ѹMN®ÄØdÃ<Änêÿ:zÄHÿÉ o?~Æè/{Ò¼t󾭽롓瞗(°ƒqÏξƒFúó‚ +Ë”¼ äã¿uòýe¤3GÈÀ䮽úû™ÀË¢ÚžU=úB·CL0¢·¹úÒ7DÌ£·­í\ +¤Šá~ãlœÜyæ¡pRŠ¦®9£èî Â&ÏìuiÛyÀ°/å ,6yV°ÈÎåÞƒ &ÀS|—U$¥§ç'ƒw€ºX>ý†ã¾ tQžTõÞ…}‹Î+ÒÆ%ueþÁ@°qÒŒ ‘µÐJ“ —®Ki"õi†/ú ³ í7Aóhf<ÍË+Q2 +®Ò\±v3øLOÈü(@Þ¡úÚ#iç1¸m÷~¶`k-I•#ú9»°°g¿AAßGï4YË?ÅÔ™ßÐlÆ7<éÐùá£Ç1 Ö[°ÌYìù$#—¨£¨­ì]c6lÏ“* !‹N³väÑ– H¥Ì!ò x‚Â"-Eù8‰=ò¤J"´7å½®ÙÌr˜Náup.˜HUp8åÄ9ÜÃ+EÈ€òò¥0.A@6­Ä«7î‘“y¿XÃ6½óg.Å'(²T©ä±×›Í-:ÿŸý½­Î…dW¹,îÅ·ï§Ã¾G¿¿t~>tôg#¾UU¦qSgÛ8¸]¿qUô$ã§8{v,lÙ½¯]‡®·erÑDÝç£ü&gä•Ð¤Üš‹‚%e`&KÂ#¢„,ƒM ,Ô¾6§¤¥Û9¸A,—(µ¬‚}§Ü<:ο˜¸¢I$wèÞ‹QÜ3iÆp¿ñt +nX8ÈÎEà ±©K,:Mm€ûÐðuÍy2Í¿ "kgk±WäòÿÈ´FH$[¢T×4"'hJTU§ó©sRxJH+ þ)ªªR€Woš8Odã˜ST†ì´èI+û䣧˜ÀÓË–H¤èÀ¹Úòåa´àˆ( ²£œƼŸñ\öœ…¡•ë·rX¾R‹Ît~…¡^¥3(4UsB½»õö4úZ+;qbÒa¹ª"zõz['wu¥±²¦¡Cß°¢Ê+j$òrþg…¢í •”©Ÿ>ϽÄï;$Sê0¨ÔVG,ZFf¹ +÷Þ¾[OøP$´(D;7Î?¯ƒäNÀ4†@@R€Dиä ejŽÝ‘ß`&2üüyË.~­bN‘oÈ…%ôP€V&ûŸ*²sݸ#U¤PÆÓÜ–GDEÓƒòly ‹–¯¦óúÝ?³ +dTÖnŠƒn54˜‘ñ&C4d 8“](gKð oñÉä  +{.‘ikQõ:Ss‘BàGçgKTü·èü÷ñ{wÿ0«@›µÅ ¾ñ¹jÿ2Ï_ºÊÖÕ ìE¢Ÿºx Ýs µ@®FÁ +øÔ@4g̵œˆˆj:}ú ˜F'ÀÂèuÿg¿Ìƒ¢<ï8¾.,¸\ry`A¼Æ˜Ø˜v4iRl½­õÅ <OåP FÔØ*Fâ­Ò$Æ 5!$A‘åX–]®eåôØ~6OÆÉigÈØñÞyçç}Îßû>¿ßç÷}‹ ÎA@Èõàˆ(&Œ”£Nœ1<1‚Y ¼iǹ£ øâ¼ðöôyèü©3çCQZ ˜Œ=i9ŒÚ¼˜¢D³¢_`(•Ø@.Zé#‘Û3[‰Z¬TúnEUýÒÕ¾©d€L"“×ëÚ”µZu³žhªin/W·€µæ^#F2â#)ÒÜ¢òùËVa‰øf`å@=“³(k‘J`/CZ =ø>?òˆ'%†ø áõ… û~ß'?eê `sî2b0a$:8"ܤ]­3Àìxl‚'¯Aaó‹+iòÙ²ÓÊÁZÂg ÏZÃFŽó\³IHto_&a =?ŽÿR*w8÷ÑÇx#ð‡±szÒ +Þs Ë¢óÕZ=”Ââ¸óE² ÀÒˆ|nf£rñ +F±4‹K#ÃG½L>¢LÈÜLþæ™Á3EHâÏ8<:Š ÅQqZ©µ£oxÌ’Èl¢?¸”_¢$áóôÑʇ°4v~u'£Ï^duò7ù‹¾ó8 `ùȱÿ乆¨g] Ú÷ D<©4·uÞûî^1“X‘Ó¯óŸïÕWϳã ?a;Ø)49{çFYÙ(ì +‹¤2ç~™Â7 PˆRZyÒº}o„¥ýÐÄÔL2ţѴ¦dæ‰ÆÇÖo b ø ua&y7à fÉtciEg\ñ®¢2þvšÄÜúÐñÓø6æÑ +~™“WàÏXÊ$&nSβ°½ž˜"„÷ŽB“ó!¸: ‚\ƒ‡Oœ2•ÖÓ®b"¿¹ËˆÚ¿_QGZœ:káäwfWÕ×êºÔ-ÝÔˆV~u£áèü¹‹WH,í8GðQ|ð'j=“toê¨mïõôñ—˜Y„rU]Üç7%RYÔñ“ †N~uS1¯LE7Uk/c±Ð”Τò–nSPÌ[²’ÏgEq`áCƽ6…J>ŸUúu¾Ðù(ö†–Žêº¦ØK×Húñ‰ÉŸ'$QÈÌ- )%=‹ò×wr¹)$&¥¡ùõ8¬Û@ "ŸcBFv>å“g>lí|Ìéy¿Áo5-†^vŸäÿ;»ÆýÇ”ÚfÈ&›&0k&³9uþìQyM\ê½$‚n’G¢ƒÄë¶Ð$„:·­³«(ˆ;äÀÒAq…š$Bb ÃÉ/3Ð*³qž·È Ø&¥çØÚ ‰½ü ­$)üªD©¸r¼d”à´Ð§Eç.^qf=”ƒ6BýÒ"Ñ*˜<ô—ãVøúö¥dÐô£Û‚§Ó`WT:ÁKfiG,”©ÔhßJËÀ²²E9Á‘µB":¹ŽbÚ›¦˜¯ÐŸÕ±‡Öó×>£25+šÎR9=k[{ÁÔÃz nEçÛÚ9/÷ô6h“’ž©ïè)©RáóZ]¾W¥ï¹[^…ýBðüaÞ¢ –áÞò×ßšÖÚk¤uåz^ÉGD4KóÜƾŠ‚¢‰E‰LüÀŽ%Ôðsø!tæ‹^¸°ï×ù}ÒùHåÉ¿›Í­–¯Þȶhu° aæ‚¥«\GMÚŠÊêÀÐHz•«ÚzŒH_AuTy–*•CÜÆ0)Ž×Ñêäìªï22OÜÓóØßÎ1!SѺi[°ÌÂŽò×ß’käQ=Í„ˆj]džƒý‡* Æ¿ú›·1Ì”,ñœ6{!3€}&‡ÏÌó R­ï1rsÞÄK‰&<öÓ„dÜ’ C‰Q£Öµ µFD—Ö¨‰Uø¹ˆ¢xÚÌù"6lÛ\!èFôqNá‘®^OÀD|))èÁZN%äº iüšÍÛ‰Ž¼â +12ïÇpضg?æ}/œZXÍÓ¯óŸïÕWµÄF Ì´´œvŠCÞr¯´Ê¤-5:D2ÿöž‚n¸à!õÜ(Ut¾ 3/ÄÝ œ™_Ì.S#ö]f7˜§ÝÐ<-­üC92P~?æÜG€ª*úã–PÝ.µ°=}–Wd?³Îo§ÈØIâš[_½‘H¨î }×Õ}<’ï|G¥irû¡Èïgþ¶çÀaÜ矎{Ëí9b¬Ú´#¿´ZÛö¨±ãi}ûã)s<æ.FÒ£ +ª‹*55M†RU¯ˆ|“òÿ/:Ÿ\öò¤78e t6g‘†m|ÈÆvîRm˼¥«Ñù +…¦¥í‹Û)èü˜Ø M¦ •M$¬¶*]—B­ã7òŸ—¯ÝÄï%é°÷†â£XÂÔYÛ‚Ô$Õ²(»Ó¯ó…ίÑ4£óçÙw‹,mw‡/÷ö™ðÚdêõ5Z©¥íšõ~»CȬì‘ôhxD¾¡ÇøçeÞ(y„=}.Ç}faíuìd½ÎÐÜÖͽÄk ­Úæö¶GÆìÂR¶Æ}Âëžë6ƒÙôUµ–]†™°‹}ùç_Šó#AQSßÚñظd¥¯@"”æY¢Ô ó—­Ú-Ó³ íd8OŠ¢ôà”[:Ÿ¢Ï•uhx +B«3„çÖ p& ?xL¨ôà}‡24&AÀ[^©ÌÌ{‘{ŸÂß/ÆQßõÔ”›˜“ éC>’ʨÉÊWH̬÷ì‚Þ¬ÛÞËIAyô$±­ªÁp¿BÓÔi¬nìPÖ·SPT7Rî×ù/âúù:?5»P"µÚXYßÆ&>Pj+4ú€àœž[HÂ…®8-43‰Udñ$¾@ À!}IÔï1fäQéâ>±M¼ wtÙ½ÿ80„ ApД˜š)1·ÚÄQu™vĸ‰¤†·R'ÿ~¯@ÛuÌ+äˆI¿õ ?H¥dæ °r€Ò”YB×®°H¦JÊÈe!À(8{*µ­l=öÓÁkíF‚´Qopú‹an/)kµmÝ ­]À3¿DY«ëj0lä8 àå/Nôdò¤ô‰…]ôÙ‹tc8­szÒŠ°OH΀ÃègöðÒ!˜ÄêNÃÝÝF¿BæÇNDþ›ïÌB ÒÄ*ÚÓ ÇÇ Ëkˆ Í;÷žeÕñ·ÓP;ÇNņ(¸4zž(£?}|‰ !Õü¼¨¢6êÄ à†·ÈtæœB(sT¹y;ÝÌÊñTìþ‰Ðöä/>Û0©µÛd¼ûøI^>["B\¿˜Gü²:fˆ…„®äJÊý:ÿù^}ÕùìîÁFs³MŒt`nëÌÞ‰£žÍ +‰<*”<5 ½ÖRfïáÙâàˆ(¡Ãñ+N—P€óÊT”A:¾‡×a!†)ßþ&ÇvˆþÆ*,‚úûeõyÆñe—K0*Þ +¢"T§61^x‚ÑjêDñNb´±ÚÓ’iÔXDTÎcPÔV©WijÒMÔ(Ž»ËÂî²÷.»,·ÒÏò:ü‘LÇL:övÞÙyÏïù=ïõ}¾Ï÷…KHv¡×ÓïÀÑ,^áLœyKV‡‹P7, ßRG¸9r'½|ý&2ÙO…†fmî`9Là + 3¡þáÃãwJ•”¿*­õ—sƼAAÛ×·uP ÊTÜ=”Hd?Òùd‡Èå2»iûnR +‚ÂWZœµö¦E«Ñù$u©B•›_ ‘ùü)õè·eU&gkINei(çŠÔô„ø\mÄÕ‰}`b{…!k¸…ÿbR“µ°Ò./t~ÉNSë­Zcý¸ S#ç-ì?døŽ]{yĈԟ<=ªï ™sLŒ˜Í‹Rmà°ù­w ¸¡íï—ÑÏÈ=… ·†è¸$/ï•Ö¤2X@0ìgÀÏÑÞñ ² +ñt…"â¤\ð–z§ç~ÊaA‰¨‰«“}ýz §.`ì;$”jcÓƒ†ÃÛ0¹Öì„Eµf…;n,öÊ­áTšð +#>t&͘‹}^Ñ™8ýÕ!A#‰Àp¡#ÇR:¿uñ3×sC»Ðù¢ jppØËS#éà¯Ò™yûÊ´9ÃGŒqE«oÓX[ÐHUZšŸŽBg×ÙÛ»tþóøýx¯±6‡Œzyú\úH}Îˤ٠üûèÍ8Yàã×+53>É4xLð*<¿jífAD•jàǧßа˜¤M‚BúADp5q„ZÆS°4·><‘wn¤ ɱ0:~Jä|t{tâ|ðćëÿù® +@~q ` Ä 3Á2nòÌÁCد-C¥®ÖÚZD¥X‹²’éÌõ·îKÜŘÑ.êý!ÁáKã’õŽvS¬«o¥ Ö½]¡3Q h\øÇN•ü!Ïb˜<÷Ž¸ä­åª:,ÕÖF9eNoY–,óC”Ê:÷¥$²ƒGÍÕz‹Òd¯ÔY4 mEö¡\½46ÉÝÓ9³(jÔÃWÔJr‡[ñÙCö¶¢V×¥óŸê|KC­Á¦·Aàõ»ß{Ÿºïé×óláµ=mçÿXÎ'iÇsO©Øm“]¡Z[c×c¤ó°Rekz,q÷^½ÚhoVj©Î…Ëc±–Æ#Á{Š®à‘i„™h4:„ŠMÚXY£#¸µ±}ÑŠ8‰§/ò¨5;hƒB7¼Q¦P3¥œSgñÿ0=‹hŠ:“Úl—úö¸Xô¹±¡EoG{ÔññÜå¢WfDUi æƶÜÓç%2¿{ö3=û$Ÿ:šÉ˜Ø®})<~”žÇäßÞµWêp²à‚½¥‡¥1 G2>2Ô7-YÏŠðgò©'ré>–ÝÛ¾{³½òÏh¤ïÖÄÿEëÒùÏòûï:_nl¤}7£ÿ£óS³NÁT¤eÂNÐ B—GRƒT­ýû·€MZæÇ€³ªVT°úgÛÊ„dÞ +€pŒÁ#Ǭ^·Kq¹"û“s4+¼aö¾=û]ûü&¡‡ #èâ["œþëeŒSfÍrøc?izPèè>ƒ‡‘•P +n9ar´ä­{¼³Nž!7ÉÐ_/[E&ƬP!3ZÄ$I7²ìƒÔãY÷­;vó-³bÀ ÔE·iQóI=š+µ¥^"f‹ÅÆ'oá­X;qHI2}Åêµx’×붼 Ÿ\¼JŸºyùËü{Ï_MÖ7?~Ï]ØwéüïÕùòºzµ…¦Ô;Ô¦&­­D®»rýö¸ SíM«5Æ€©×–m;-Ž–å«é«9q[cĬ¹¢^ˆ&EÊUkÛ2p(È °p(PUÃ…«Î”ðT>ÄËëC*,¿ùý~Þ^¼vQ^ýùxŒ“g¾ + èòw“‘&¢BQ\`l‚³:k+DÚk`èë±ëyÔZZh¯^KbÖÑ©¨1[;ªÔV|¨•ŒHÊ0PÜÚMd”3®~“™P5Ü}zP2ò±PnjŒ¨›ÉÙ*‘Ê–Æ&"T(LJ9~ÃV,ºúFÅA‘ª³9‡ŽZ—Dñ¹¨J™y§‘½"ý‰ü¯oî3gÒ–í"8™Ø¥óÚß³ê|4-Z¡û¨ÖD™ »D‘A"õ=ž«µ‘/ö7wí—xt/üì&>Æ¥”<|8Ü»+ÀNŸAÂ)‡Òxüòv1ÍÑg|œ/Ê +´Œl€¿{þÌÿË%¡ÍÖoE $Ô—RÔ¦èøu!§@TvþR$@Ì£ù¡SXTe°räÞº'åo%ž>î~/lûíè—hL/õÈ Q†üò_ü œ!J«ªXÔN¯Á.O_!oX¯€EŸ9gtÒ2ùëóB_Wž~}Ùï.ÿÿôûñ:¿´ZÏN=¶§ùâÿ^q9G —‚ÔK@>ûÞ?“ƒQˆùÒ}îÂeÝdÝé( °>üã@ºÝ/“çŸ+ìÖ½ÿˆ|2d*ëßì×[Œ¤Uð™]ØewÝ…„x!1ñM^Иx‰H0ˆ(ÊåÁ%ш1*&ŠŠAPVEÁ‰ñÅ01I”›,³3;מé™îž¾ß¦{zî·Ï_wmöi5ÀÃt¾|9§N:uúûWÕ¿@K]Ø{æeý„¬õê±1°ß{Æ{¨½28Ê›ò¤©0YÜHŽ§2@Ë ýæ¡÷_t‚bíÞ§ÑX•Éµý»Î`|t:GÓ£Ý Ï>|~T]}ÝMH¸×qVYîòð^fxéå£ÊMX¾ù–ï}õkßæA8ólúÎâáÀÙç!EŽˆ¶åö_Ü×ݸgàÌÃçËßw!·…¡±ƒÞqb¿ÃóOÉó¥‹òÂf±µŽççªK•ö&¶?>[½ýÎ_žäð?¿ëWÙb½Ò\¼ñ+7›.­'¦÷Üû›b©±º–Ôê ßø΀7†dTĸ.o%0ƒ3h6ÁFX}ûÖÛ@Tn‡ +üùÀÀY?»ûˆ±p{ýød—¨÷ïR%úî;òÀ 7z-§íŒ¼òêàiE]®¯ùü—)HS€ ” u+h¼‹\òÁË®½ñæ±™Jc©;½÷þ?ôí9Ô×?ðé«oHåjtJ·v`{_yÍ—ö8$ôõmwܧã].è:~ZBéU"lþÔ_UŠ¾|Ô'öÈŸÏ>÷üɃgý¬Ò`L}÷‡·K¤±„™€‡!ÿý£Oôõ˜Û‡>|9´ËäBÉ–&fg!óò_! yâ©ÊüÆèö¥$•Ÿ}îÅÓÎíëß³{ÿY¶ÿí™ ÷éBù®#¿íÛuzß®Óú÷øÉOï䤤ú‚‹/EÒÂÏS>‘ó{äÁG.øÀÅ?þçhToýñÜSDÎxï9·|ÿG°Ø]:ß,ϯ¥²µ+¯¹ñà¡ ÆÒ%SÌÿþ‡ß½ÿ0æÅÕ×OÌV8¬7É–»Œ½W]{=Rj¬6}æs×¹¬£Ý×Tgtî…—|ö 7ð';2Ûd)SYh,'ÁæW·ò Vw¦ÒMÔ›Q¡ÿ¯'*#5˜ïœwhÔG«.þ°IþŸ‘)Έ»Zg[ÄñM«PèMdjâth2oJÁ(º ÿÄ?` "œâþ ÿ€ZÃa [žt+ÔÏïñ|ÿ†?ÊñÏÒ ÐñŽTy)Z€t±¹À‰r$R¸ÅS')A¼#?3ý‚U"qYrP$|ÈŸ«wÏê²åzÇq$Þ¾/IÛFÙ•…Á‰)c8é›ö‡vô)ЊAνA-‰ÚÑ;¢ÓãeÞZî#6F‹a9S[9…N*—³ËÔFGÎä%a!FgºP ƒ;<ÿÝô{ë<ß#cÃ^ÐÔ çPLnÁ ,!$U„(€´1¡½$ÀˆÇ*JøŸ˜…[Û)ؤ=XPtÁÃãMBló]žÄÆ Ïჽ‘óöeµ*LÙŒèè…|‰rРʨ¶–°'ŒòaÀHt`aGt„qúž87þ(šöz³ïó¿q&º¡n¶y§‰ýÏ?%ÏGïg+l_ÞP2Ôb•INe++ÛI*[„4~®ºPm¯ MÌÎ/oçk.Ïïß÷à£O6—¶Èeî|êªþÝû#`†R0öõóµZdWc´(Ot©}€Ø÷@UÄe²E ÿI‚ÒŸdV[¦‚c3‚N¸ËÔ\ÈUq ,BÿÒ\î2ÿ\µEî¾Æ“Ùúr—Û×ê¹Ú ÐFþïa¸[ÈP#áÉ1KΊºä T?57¶±¼ÙËÅð«å5ž[â˜>‚·ª›àbB/Šò±ÉIw4}ƒžÿöþÞ,ÏW7ƒá#üãÙêD®–íUãéÂâv2<]˜k,OÎÕ,u‹l¯1€ÞçÞò†HÎ`CrÓ׿…çŽÊM¯O6"›•™‡§f¢% Îf/yð.!¦¾Dã ŠÁmL½z[˜Oå*#é¹lµSh‚bÕAö¾1>.ÖÊmt¤õÕˆGÁhûP*Ë«ðù¨>ÇÜ.ÜsºH‰²("'f…Œ³¢Ò1]âql¦‚ðW¶F¦K’ ‰NDæªK¦2K„B ×:h%zïÖc§D+ÑkLNüi;HŽ¡x^5˜ ; òœ'Út}Wi˜Ñ¦Ž©IžäYçÄ߇êüæhÙ™n°'OÏGáü³ËÇÆ`>ZÝ0‡°ƒ”ªqòíÅHbÈEFðÿ¯ÿøç‹ŸÿêÅg¿ûÓßþ~Ô-Nú%g脆 ô† •¤ääÈ<ðS|bóÈ`JfKŸäMÌÁ²~1ÈB¶æd÷n¼íÎoÎõ*±ødPgu=Ý?žÊ‹ùeqõþ¸W¨ßîß^¸C râ‘ÿ‡Ÿá Ù WCx-ô,®j +xùn`ö¤·˜^V´hkzÙ.öédWö—Ѧ3»2Tª~yW xÝšªÇrÇ”M=¦² ò„õò …=ëüè|¨Òž,ˆUyÜ™TØ£ÿaæ›æ€Ç°FÀƒ +p@œ0~ Ç#F€%ü/OO¡l˜ÂÛΨ„É£ÕÞT2†K_ʼƒ8ITäç´– +³Š‘kHöÒû‚äW$¨Ü?VÅæ8÷g[(ÊcHê(úyUc¬YH¾½«©aûPgs‘h+ÆòK¨’'[ÙÑŒ¿<;SRcPß4‘Cù¢oÕ«F³¾¤<ëüOè÷ãu¾Ì«ûºÑ%õ;“åQkp1]MÖ× +À¨ÆxN¥C<¨ôöíC¨¾<áõcõùQCÀ_cìtpæ/L6œŸJ@*¼¥¢›ÓúÊÀÖC*þˆdì5•í¾iôl-”³0Ö^‚¾$ƒÑÞ@ølX|ß‘Dâ uCvn +o:¦°Ý5ÿÙp ^ž`~®ß4Ú¹˜€bN‡å=qª™Ñ-ëÃÊÉ´ü¤Ú³ÎήŽ¢Žú>úñêæ¬[t‹ÍÎuo´$û[£yg²žûs½«ÝÈêpUìÍnîjT§„Ú}Ô…®ì€-OÈ"x›}qU€ík¤ò7‹eÌÒÕ†¨æÂï†Ëp™å>Þ¯ŽÏ…ɌԂó“Í +@5 –Wn.c_÷xƒ5(4AŸ»ÐÿÍÁ˜k¨!Å;…óyî‘š- •g8(K»«Ç­¡Ñ›xP¹JH"a£WØ΂ßî(Éu e÷çs'zÓv'†ƒEÍ­_·Æ%‘¨‰³°-ûYçÜ߇êüÖx‚`ü„½†,ˆürÿžßEÍ[1^ß¾êNk¬ž]‘úÕ(à¼I€ÙölKäwJ‚ö’- FìÅ•$vÿ¶Ùµ/ŽˆzÿÁ&‰%o:““~ƒAýa½\O€ΛSŒ6­éŽ°ï/ïTu>¬o"³«êi¨w1y7.ì +gÞyÝî«_ 'šRªkHØÇñ•ú¬ó£ó=U=;·'OÒõÊC® ¦\©òØ=jÍMÐp~SGš5õ”ÁBI«úbäŽ6Þ¾·‘H«)ñìd_ì«Ïßv²Ê*&¶;Þð¸;ßWÕ«æDÁOwÀ:óò¾3Þwº5¤ío€g£·ä/wpõö¤=3{@݇óî"ï¹úe¶»lÞ16§œŠ‘–ÇFb/Ø6ÏG1yýêä`Ø=Á /dy]Éö¬ó?¥ß×ù0Ü n0§[ö½Ùf¶»;ëNدÚÓMUM¯ªÉ¾ê.o›Åå×!ûu§(®«³Ñú|¼™‘°k¸*o«Ù@ m÷×÷úÞêîd°<&6VwüÖJr±¸1ì̯¿mMxø-ç”!K$”\ªÁæA³DLì£ÞÜBÁöUž,Ñ“­fSÛ‰Qó˜˜Ù½·DU¦ô‚“\Ø›‹™<š] 9S’̆ÿ>é²eH€–åÊP§øù]%­£¥Î,&ƒ&àesÌ©-*1–ÿäÂþYçÿ Î®&8 rê—@%ƒõé6²\£uÚ"œ‡_ãÄ,†„+J$õ`€ë!*œ„´áˆPŒ~ ;l¢iˆ/, „.Ê`¯`(Í·ùCb~FˆsóXgñˆ#g)688®ï)s‚Ÿü6$øMEŸ3¾ñù ¾“Dª—Ý¥’Ÿýº5å_?|W€\³"þ‡Ô2jÖØçbr©y»81ÎÂPïú«ÇZ|*•´_öW÷uNv¶V¼CåtÏ:ÿãþ>Tç‡O {zþûšŸ³G ÛSâv¾ì/v®ÂO†ñ#À›_œö‚óÀ™ß, †“o»%Ì„–l0ÎM ©0—g}NyÌòË ûp¢{áC+rÚŽÓPÔEzSÿ:ê€âĨ!ö!ÀòÝëΤYl± W^*ì?QÀÿ¶”bBvi¡¼ S¡¶¯ÎËÖ(ÃU•,iKóË L’< þ—U2pzt"ÁZD©xÐͳ΢µ)lÔ€íùpH>ff2"Ôówffo!'DŠ˜ç̽ŒÍ#RæèöÜ2àÊPÌÓa°ªï?ØÎ&즒Z‡F†‘_ððôÕwŠÕDm¶³m­êg¶¶Œî´†VXÝŸ]× +yv-&–Ô Cgv™é^Ñbÿ}ÊYÂAz‹«Dž æ9`8+—Î Omžuþ§ôûñ:ßóÞ¾—~¹mô‹‹im·Çµ8oÍfÇý²]îƒ9‡ ûƒQ cÆÉ`f +øœgP(’ž4Á«(çÈþƒ*ž+ôã!•¿n ˜xuÜŸ¦BiÁWà:ÀÐc4,Йï¢Ïs±êaa;pý²9 ¤+xb»ZƒÛ†!³ÒóƒÛ*ç”ܪoaàÔÐ^ñÎ|#ØqLåšÀ/DçËÚeÍ,VýäÂþYçÿ Îo×h‚b¯ÉÂýnyKçãžš;ŠIï"@Ï÷J‚gͳ 4†K÷‚Z.+²¿<`#¸‰Ð«úƒDß„#à'§>B:x~ÿ4°Yk‘'LÆPð–Ÿ'Ù¬Åü™&m@~võJoNŠ³A™œíÑš¶¤´=UOÞg¨w:·¿5\9õÅdÚÔÖn öeÛŽ_¼íôô)ïœw§˜1u§û^±&ì¥ÒO×Åæ='C…¤Â’Ò¹ÊÃqÀÖtŽW³‹S(Þ^l5<ëüûûP?ðXè=J¯¼ÄOvgº­nˆÚ¾=YÇß-a]8ä›/8 A.­† ž'4äBõã ŽBß,VâˆöóñÚÐÚÁæöÕد—Ù®2Œã•ÄˆÇœhŒ8ræ0Ž” ‚‘33ˆ„8?‘Sˆ8ÉDPQãIÎ¥Oߪºº.]÷{UwŸîêKùÛõ$M&Ðgp ÐÍf³ö»Þõ®wïîþ?ÏÚë:Äá¿9Pƒ-e‰]·…—"®øgÉVaøZV¤M`œÛ7NÃéÖX{ŸâóM­&KçDc‰ÎÏkVؤµ6iu£ÑSSKYk‹d¤éÇKít&ù>ê\‰šAú__³HÌ£æ ßyó`¼þJ2 ¼ñùW>?æ6f>6›]ÏX…L&.ñök¿= +œCàT Õ­Š/¸4^æø Ï*¥,d¶?~|p—#SÜÖÈœ}ƒY›&9ÌDK~ÞÀ< \•ƒWo@¸]ÃÃÕF¥'bU:Ìrõ‹CÄG'¨Œ®rHÏ9PØ:/’fÞßõÇ[¨˜K‘Î>Ljú°?GõsâHAh}éL–Æ.cŒŸÕöÌÀ= éÎøxå.h­HTÛ® ¬½ñù×ùyrŸÝÙò`tÈáWZCWgúØ#ŽWÇëÑX‘â]ƒµø[qã¸ë+ß~å´­’p·ÜNMiÔñ˜s9ê˜ œMI6°0Z ¬»Ù5ê1Æ9¤fÀ+b6-iØ82á“BÈ[®”7J}WN(–HH5iëSÌ$=f»G×ÜÓ›å1ùv$CQŠs¦hNOw;SŸÝ`§=Ùn“Ÿ7>ÿiýüŸÿq†ÄìåbéiÇü|UërõÆkW_Ø~—Aÿð’Ûw +(ΣâŠÏGZœôü§q°1ç1ê‘àÅáÈ +´2öDlMå¤À x’³Š‚¨ï’Æç{Œ@(’w‡\Å^š(‚Ò^oEà~ Û¿®cyzŽXØèJ•Drð‚ê³÷QœFÿ1KOØ{cñj{áž1©—¦H>Yô‚^-b¤fÞ4[Û%z”¯ÝŸç ÷9[Ýøü'ø¹®ÏçÞ·ê}nß©Öx§9ä퉩q{zÊáoÖz™ª´'Ò03T‡GFË :pf†c¶ùXþö +›6kÍjwÎaÒnŸŸçÿ¹ÍxN—¸`‘Ù£4ZÆŠüóA•LiL~L2Ò"0Ì’ž»;-™táq8v×Tgq¯n‰H|¯R÷*-¤¹,4ÞjŽ +K¼>/H+wfÙq£ÖgÝ4&…@ÏP Ôk9!x;;]™²\o“³ñ" jnÔ†Z¥:ÑžôvëÝÇôˆôÐwªD} èNœÿ`±ÊÏO¤¯äo}$P“¨p!mþ§çÖÕ¾/iìûû¼÷v¦Ä±=õ…wš£ñÉêÆç?ÙÏu}~oqNxûJ{¼ÝtfKgÞ‡{mzêÑ”ßE}°¨vgC>§]ØÝøRè1Àà‰œ8 ˘oƒî;NJÆhJ¼7Z©¢ºBNöX¦±©8í5ϙϴZmã-1b¡5 ¬‚AzL5-`›5 W6¾}]¡hUprQøg¸¿[nF­Ô÷:ŸÞ?Eˆ“W–4hÀ*ú’³ƒV=FtL —tgÊÆ“¹{ÕŽ÷Rÿþ¾³‰³ÆÈx«å€p¨a:O3¤$Íkûþ~qÖPÊŽ¶Kñ´T4ß_<ØïòçT†?§/ì½Gþ`¶ŒógÚEÚ‹óöÄ +´ægfÅ­}X; OŸuŸ ;n7†õÁQ­Ø?¼4–³Uì÷þ\'§+0qIÆ‘îüüA¥ðŽ +à |¹5‘‰B!µ~8öÖèd³Ú£/$(ü¼–Ä)KÎ:dìãçµêÊ@)™¹ßøüëü<¹Ï‡èÙÙêüKéÙ[/ýîÜþw^ûAés/‚CïxµQïûg‡…Íæ9Õ|[ˆè?.ŒÃ–æô:Œ»G—p2a‹Èø¬0·ó¨1°»µ÷öÚÒTPÐeÊvßüî÷KÏ ¬,TY… ÛÜ_dS.³?ûåoJÏÝ6¼_íH¶Ù¤ÙÅBÕì¢m[k^z{o»®/¢¦c-IC3Í(zâîá¡â.Ý*®Å_ûÑ[¥Û_³Q–§·ÔT'l´c8i_בØÆÀ¥‡4“w¹ñùOëçz>ßTw¶,Œæg«ýîl§1xæ‹_}û׿­õæ““Õ7~\zö…Þü¬Ú™6‡G~÷¥ç¿\zövé¹±Tÿú·÷ŠÇu À¦K<0fIFà1Š¸äLa6Sl‰;êb/E Iøl ÈȌ҂"DJ}¥ŠÇÉ`á÷a¹·ÆÐê7¾]¸L…ÆHîÂ)|åÕ×KŸ) +•Ò³nµ¿m/xwjm0G{u\"J¡·x¡¿ƒc=P(AÕ‰|P/èÝ·)yòš]\¬èc^-r#Á{å lÖú7>ÿÉ~®ëóË­qÓ—´ùY}pHFTZ¿xçw¥[/ï÷æ®W^ýžþ«Þw‡M<7tG˜‡µž‹ÕÈŒ{fñö¡ÑRŽU®BŒÖj’µ–|PiůŠcrÜ©:=âR&'’¿uç ͪ Δ²‘ë­_ˆšÓ“÷¶kõñqïøÒ”HŸåp†ŽŸ÷*Ý·ßù=5Q–~e;$Þ}RÿÃÓ•M£’#gѾÖrÕˆÈìreÓ{{­íÖ¨{t±Ów‰éàOïþ]‡¥/¼Tºõ•rwúí×èQÎÁìTÃÚ£ª¥°Ë7ªO³Š{ÈÉ×KоJcù-xh®»ÙÈ·d¢)ß»»MŸ®éß›~Ö}>4¡ÄFµ–8 †ñ½HGíϵÚK“€?÷Ë-‡Yð!Ðr,D'¨ùûõû"×YÅ|MÛĦIm¥/ê?¡¢ Š…¼¨–¶ŠˆÑŠhR«!–Piôð­ ZK‹‘ÄZSK„–"ÕZ±RJ$„šdó£Ùìì¯ù™Ùù=;³³›ý9~îœ2o¤/6/½<\žçÜsÎsî½çùžï9xï\9!ÃÌi’Û_Š&"W«[ŽX:˜b¦Ì¡ìš*”FrK~Ú—dy [`Øš|ö‹ï¸ãÞJûؤ³…‚;¬¡@’g+õÜ|¯ÞÛì®,£—¹8•åCA‚Y¨‘ÛÔ\$&Ãö§í†;‰×˜˜‡% åë*FjAºÒŠ­ë½5Å"!ðÅ¢‚¢” Ç&ÎO˜ÊÖÄ#ª(ô ZR›ÊÕB燱Óù†2´¸ž”¡¤vlóü-\7Ïó«½õt¥ŽÞç»?˜-Ô½ì|ûó=¼ëž|€`”€*'p\X™|;Ø8 ± ð5ü«gbÂÃøL&@;5?`„áµBJœÐG=ö--CËOºÖ ŒâvÀÏßó‰áR´A§£duG¸¹dÉ +Û • KVæ"±#ÏlážR×$ö%4EÅÉaà^uiÅgùô—¿o£¡ˆŽ&ú ›žK嘓‰]¼²×üÏ… $ñ"¶3CÀé6Ï¿%×Öx~ ©/öÀQ¾„ÌûPXÍÃÏ6µ“×ë_Ø÷¨%ÎßZ¸›ÿ‡Gší•F{åÒtÆ¢÷‡­4–zýÌ¡(¹;¬p˜8zÐ5H{€3œO૶éó§”x¶ÔãÌéP謆%¦ÇÚ°j|hBTg‹M8¼´9ÀÀ¯¥pFÈÏŽ÷ÖÂ?bé0ÙD!àÓ}ßcûo—èJ”€ˆD}´/ðGÅ-UŸèFLÜÉ  þÍÓ¥¶šÃ°•˜¨qQÚlzØMtÄoyqj¦Ðhóok +8¿ïSïo¸{ï¾ÍóoâÚ*ÏÏÌkµV°ýRÛßéçÿúO&i_멪|ó{æµÅ‰LÅS°€hŒäÃLèlÏ^kI¹ZÀBÂ`¡ ¦´Ù/’áòyç­»FÕï ÷\*KÀr5lò ‚}桯ŽÝu/+>™Åò–”ù9Úœm,¢ú¹f_‚«gjK˜¡ûãOühï}Ÿ-ê{%Sª عú¨ø¯æÊñÊ +J jg#yØí?N•ÊQ(‡¥GlÊD_QÞS‡ž™ÎW¯7û¥îê—ùFð|»›‡ø8A¼oò¹}îÔg5ú¦ ÃÊØ‹vÉ»([­¢] +;ú’H¬/ì§ø¤ÁöíbµÒçš«6|æ·;ÏÏTZþz­·ZlôLªÝ•|m¡PïÎkõŵTNAìÎü wV­åMœÇr*?~_+–Zýt¹ üYÙ¢¹´q½¹Ès¨…C’ÎJR ¸"§O>ùt¡jØZ ü››0™+5Ìé»ÓœÌÊŽ}r +µJgY$–vô"4¹Š˜CAxvdbiX2±tçÍ ÌÖË +ÉäZ¦ä¥Ú7t ú^!Þ”Oƒ!îZò:ÔÜIþ}æv÷CÏÌë™R³Š[F¼ I0sÈì5UI„Ü’‡8‰£ŠõÅzDî]–‡‡\$“¨5NÍ:(3aeNBƒ—L)DDÍõÊo½{fl×ý¿>vRw£gÁùuúÕ|›çßܵUžŸP÷ö©B]˜+·Ó•ŽžôÀOŽŽÝýÉ|}Ñ#€.@/PYX5—u~º*‘ünœÒú­‘·æ²T¶P“!Ò ðœ‰!sÌeyd{è_žÎ1!¤lâøP ‡$FZ¾ö÷wÆîØý«ODy’]Oð‹_>'+¢?u@‚äûÝgÆ?Pƒ`DK dÎOÌ:‘<ç®\‘lŠû{ï_b"»Î^šŒ–3:Pˆ$÷‚„DCJbHWü™¦y g䪥L‹ƒ0"áÔìÈ$ŽÀÃ?Ýqç=–ÁäÃ<ö +oÈY=j7«cØÔ.žÚ…Bµ…8\Q5L[&À!ð):”Ãó¥)•p9ZÇÝ.$—S)¶"„®ÍÕÁD¾u¯æªõÉ oóü[um磴tÚK›Ø>’_j,âùO=}Ïoõ7:˃ÙBÍÕ?õÆ?0¶ã<ºØ€wH¾ûµì|µ·yâ§Ç½˜šõ¯a¯T ZU €72Ç$àVWâ± +z/äapo¶ýͤ”6ã&¼Ùξo¾sÚ‰{ñ¥W-!3µ§Ž<;¶c×ìõjsI;P•‡\s¥–s"¿«Ý5̇™-Ö¾¶ÿàÇwßH.?™‡a|TüÁ©bwúRšDœÌ—I±µFt=CŠUÍTœD®#˜÷ÞÞóÇ_–ó¾’ê©~ÃçªÖKNt´ Q­Ä ˜aü ÞJ­N|gŸ7óõ‚¨ãçÈyPôérÕ]•i¬ þ;™ æÒ+C˜ü|3ºrÅÈ„•.àvçùùùÖÿØ/Ó¨&¯<Œ;²©¸Ö¥jµÖÎØe¦êŒu¯æ ­ãjÙÄ u¬­Öª¸€âVEÙ7¨CÅ*VÅ}<ÊØq«¢TY‚•$$$!ìšù%¯õÓÌýÐszŽ9÷ä¼wÿ¿÷}þÏó\s³í‰B{õ§»"Wo‘“»È½]¯þï*t¦ê£\[G׎½.^þt¹úL£ÖÔH¹UôØ>^ì%rñ{$îH®©k`ÁºÆ§¡sYärá-ûGIÉÊ®­oaÙû+ØñÎÃR};vzwîÛ¯ªµ”IU,9¯K¯·ŠË¥/ænß“FûœØ/„íÆOœBÕÔô¬R©‹Š] +0À£J9˜Ù¾7Ý¿KZ(CG§tŸ3f£ ðHª5èÔ½G’ù'^ì>dÄ8v¯×á N¾ìµmwªÁÚJäXâá1{öûù—rá4D΄­1ZËejŽåùé9ùˆ<ÚûwîƒÃç¨ïWŠ\|]¼ƒD®þbŸN4ššmi‡ò–”–MB•ÉôxªaQ‹ûÿq˜}:ÅÕŸ2xÈÒ ÅÁó3²¨TÎMáµÏ™ß«ûüwþô±“wH’âæôåš**vŸX©7ƒói³£{¾5ÈcðïÆWsOJÍÒ[šÉRC@—³§]3£æƒU©ºÖØÐ6+zw`çŸ~.¶Ì´ÌìÁÿ‡ÿIÒNN þh8ðcâßÃ"Úuè +8yf)òË>×¹KW°/]%•ŠÈùKhQê)Äù‹DÆšL`ÏíA˜BT“CÃ<-ôòníÚÓîéäÔuxÒŸPßè;ðàÑãB¦då þl:?‘3‘õ¶".¡}×^¹'Ï>ª¨fwV sy}ºâ·î‚1„wüóð14ò.ðÃõ[÷i’¨CïJs+¬K¢Â±¸}èTàä×>ÿ7ù½œÏ/¯RîLNçùû:¹ù=’ð<;j~¡^oj ž4•öGåÒ¡õÿ•]Q0胡<À™ö'÷%ËW£pé $Àù´€dHxîâ/‘“—}Úw¡kÿ‘\P +l„*èíØýMP +iS½xPZùb;hYVcÍäŒC¼); :…r)7‹$v²ûAÑA=Þ†]ñù\ôõ6ˆša¼/û²·ø«U¤9UR% +èÜC0!ž„mIõ­6{FXšp,WS…R‹A˜’ÒøtìjW%v#&„<”Hcsã^ñs¡q„M~‘t$,Ûñ ¬ìÐiÒ´YTÿ2z‚CjÛaõ)=¼_T®é¬jS«ÒØüÚç¿Úïe}¾ Xzœ<>¿BeT›¢-Ççë¬ÏÔ¦–é‘ yÖ7Ø05|>ˆ}n“\½áÆí»ñ-U*=Lxãîâ’'ÕSºöî‘àÓó/H ÀÞ(ÅÖ¤€p°ÍÒE2@’/€¨Ü~P¢37E-ø½&dJØóŒ` ±¼ù,t¦ÈYl}j9»RÄ>~»R2!óêüžI®­¯RÕa *•Fumóœ…+˜Î,Áíð¿|M<îN`òÿ?‘6BÐ÷÷®üûö‹‰ÙÇò1„Š"U¼À¶Óˆ_ oP‰\¥©³ŒlÊÅM$v¹y®MÜZT* ŸÇyº[.^¿Qcª_—ø­ )¼/šBlð€]j=…e—è…K… –1KððØuœyðôˆ¾ï Ëο r÷¹øÈ;35*VäÕþ·‚VÛRÞ~GF¶È§cjΘüûJé¢ý÷îóñ2@¯ŒKPªôôÃFB¤P%hÁäÑ´ƒß©Œ©îN;@û÷ùœíÆMÛ5z³\¥-œêžôƒ¬8§ÌŒ¾ï»›žmˆßÂsÁ•B¾;?}j|ÂVTk )©YTÙcð-Âg²6´Éª5sç-ªK¿Ž«5Ô_ºzƒç5 [Ùˆ¥&NŸØ¡ Œ +m=y.KÜ^gn´X[&ÏŒH9˜S­ãÆÚ@/&Ÿ€ñ¸¢ëÂ"`†Ý9$2‚ÈéâhOܼCá`ÚŒ9T÷eŸ–[øÜEvdúvàN¤Õ™Ö®O¤zþê ü‘Ÿ*¸l÷lY¹xr +ª‘süœÈ¹Ýª¸-œ¹Dª›Ó©ç@‰¼5:Dä 6¶PfFãÍ|$rƒ¹Åv¶àÏ{Ósj ÍÊ:Ë39öCe¢ >RåµÏ™ß«ûüJ)ÿb!&ÿàá\>ÅØd ™6[ìê 0øâ1‹– °¼[ôXªÒ¯s€áÌ¥kuh½aËN©B r +t÷ÍúDº€7·E»^;¹Þ.áqk7òüã…«àšÚ»ÿ0Õ”¬l•Ãœ³Ë·Ééè‚pÉ4böœ…˾Yg©o©©Ïÿí˜m¢"s¹PP%­žI7’‘è*.+ë=àSBÃuz3í€9ïÇó„DV2¥h{jƒ3‡Žüä݇áäYÁ~›p„J$d +ÿùç®PÅ8ñ"°=çÀ:Aoô¡‹˜þùzñŠìHØX^„‰£õó˜X˜„ñÇNƒOÈ}†mÆ|êØMeiƒEqû‰¢0µ¼öù¿Õïå|~jæˆ=3+[k´^¹~“Ïíå05,B¥3)µu‘†¬³¶âùæâ9=ãÁÔ¶1gàÉÈÊÀRÀÒÚu›°-­6D§Û›@F‚[­\øÖ6`fŒA첕ÀÐŽÒ½ÏÛ,§ÎŠìDIi¥T¦Þ¼-‰jNÞ©†§6pV©¢Y06ò¹()-BÎÍ¿9oÜ”¤Ñ7ÊU¦1›æáß ¾­ÖšK¥:;Ój­µV» +ydÉœàÜHm“¹é«Õ¸äžqÎ= ë®Ì +DÀ8*¸cïvƒdlÀÞ×p_Ó‡ÿ;÷ù eR͈O&1žçÿ²_æÑ1gY/UÙ*²Ðh„#H“dÚL}tÓ:¶´aìщû2hKŒ½ Ýtì$dF,cntìb ÚYÈ¢’ÔžªJ-©’MÔ|Ê›?Û™Ã}NŸ“:¿Sçýî»ïÞûÞïÞïý>µÑ^¤4ÜÏ-–H½w&‚h¶ + ŽŠSXV^ª³”[k(Ëmh6 èøiÿ¡%Z3Ë•uLuù°WÇÐ?#AyÆü¥’Fr옟¿|¢Ð¢Ïë²Õ [möÓRÔzõ‚Pg®Â#LµnÂ/Ñq\Hå™·á‹'=ê+_µakA©žØtéÚ­g_”ñ5:*RæëS¨Ö”Mïu3Ekq¶ÅƒÖR£®¨R›j•†jÚ7ƒƒPW8Zw 2{a¡ÊP ,¯r:¹Ïé¬ÕÅSÛN]Â~Á+Æc°×}Òwph׸֘c#c‰„1[~¦6¼ÄÍgQü:kµ“-¤8#‘5Þµÿ0õ¢ÐTðÿqïCÿAÀÅ*#ÿç®Þ–xøíHJÅÔÅë¿`*"fÆOoJÜý¶%j™ÁžÆeSÚxç£%z¥Ñ!vQâúvÕ< <ÿM~ÿŸç¿Žïå«L§ø42Ÿ­É‡)jJ[k¯3y–̧ÙÓ2=22"FâéwåöC£ãYTZn•¸ûL³ÈVç,RI-­¥ŠŒ*Ñ[¼Øù“þC“{£#.ùû¹¨•l¤ —­Ý¤2Ù:sP—g­ur³(¯¬ÍíuXû2v6«pĦð’]X†S–·lÜ{Ðp4-5NWTR9IŽwĉ0K†KdÞÛ“Sõ¶^E„»tÿ”å(ãû7äIÜoÞAB:&Lžµ}©Ç³M–°÷vÁÇZôY…÷ˆ)3 žÙ˜™ pø›t VqÂk‰*|ðˆî½`œÝ!¹t7‡CNˆ…ØÇ;¾tƒ€SÒNà=õx:]u[ÒA¿éy=ÝP4>Æ-Úu"~‚Á`EÕKþ ›ô#Î\IÇÉ)V‰fŠ‹€À zõáBT¢5¹>‡»ÏΔ4ÈO±ÖRjpí·ãûݺõìà Èl¯VêŒ4£å¡ô¢éÓóÿ{çùvøçŠu߀Z0ØÊZ +àºv'›Áâë/œ¨ELtW³­`)B¦@WÐ 5”1â¢ß§HeÁL``i`û ÑÓóŠÕ(£¶dåà‘W  ^õ,™4m.cK•pñpLmز ®1÷n×éŒÁÕˆ©S$2©¾Ò~þÆM‰—÷’5ëž–i•FkyeužBW¬1›«œ*cM‘ʪ5¿€ê“¤™ó·øµ0çNçìl²‚|s%ªT¾*ệÜi+k ‡@0tÚÄÄÉ3ÝÜ}ŵ…m²qÿfm"§Î~¢Ð€Æ?žË”ºûî?tœ¾ð¼ÞI§cáì…ñœ1³MÎJêÕdîâ¿3ÅÖâ9.w_Xý€!£LÏ…*ÿ?œ»†d[Ò!>ݶ´œë†ƒ‡l_ez ènàùoÃóa›ÇÎ\näæûí¾TêZm«ƒ|ŽŠvñ^R €ù¸H Ô€'`NPÈ3.¿—WÀ,…æVÀ&¤zÀð1=ú~òW‚< Îïxé$ÙÚvüƒ9ž(˜Z°|Í«[ªëš –C†‹jÖ¢-ËYHæ=.*K Îm†¨3x\T6qê,/ï¦âú€}‰„^>û»RŽ 'qww¿ñë¿ÁÊT‡ë:ðª +@Kq¹À2~©¶É`Ö¢x¼,O;u–ñ®±5Ôþe,¯D{æ2„D¾~ËN\ã×\íÄ>ÿœŒ(=ô¹§0ËÁºy6Y´f3gž[fà2•SZŽ°çÿV¿_çùÐûRƒƒÜÐTÔè,ujS5„L[¶:(ƒ Ó)àºHF ” ¥~@%ÌùпÓ=½š@V™‚-€ÇÓÏ¡|àðXcgLNÁC‚® –®æ5fú|fUáEô#zl“A“ü‘lÙ¹Ÿ×is3¦S@ìÅ" 0xld,:Yòimk™º—S((4á’ðÎr¶€O±5œØBŒØëœØübô—,!ÀŸîÆ8ÿ™ŠN(‡tåŽÃED¥Pzd8Ï­‡ùï´é8{ñ +j–’á±Õ¹járÖ +aÃw»é#p ĸXùõÌþðóÌ>–ñÞ¤*á±/âù×ɳžòf[ö„Ø ªŸ«Ðó¥4–Úžÿv¿7åù|S@LÐæ<ú¾¶‚WpÔrdÍv÷ ùÊÐÝF2ïœW\N 0‡vƒ&ðK,Y½ÈeV¬E2åÆ\¥Qc¯/ÐY‹ôÖ<¥Aa´å–é–­OÈ<5f8‰¦ïàa'Îdt OJ=‚wÈ<Þa5˜ÂÈØIÓ°Cx™~>“ñöäT: p×/¦Ä]ÃRãlИ_·/è:±‘ÒôšÝŠ¯¿ÅàÕ;^ÿ²Õl<*n.c®[¶ž6ï+Ì¢ÏÍ‚[ cq,€-Ê´<ž8{É÷ùÆÄ=ÄCqt¬òkҒ¡”P›¾`©hmHD‰Ñéz¢OñŠ}6Å.°Oaý†¬3;òŸ©Dç*TW<ÓY!ù +½+6–Èä÷r + +Êí{’=äïœÎ¼[f®†Òp¨¨â¡õÿÞy> w>óÂãé÷®TÞÔ5vóáSâÞ[÷óy5Ù¶÷Ÿ¤*@ æ€{ðs¸7 +pZpOyp`G˜q% ›Ñqó$RoôA0Ì ?tCÌþ|ùö÷¤%õh+€6@Š)¼ ˜I׈ +ÈcùÆ/9Ä°}ßA0@×>‡7oî¡7]"sSü—ý2ŠêÊÂ8[³·¸ÄÒ¨qã2Vâ¸Fq‹Z&jŒŠ:ˆ&ŠZŒk .‘AÇ IBLFŒŠK¢¸Æm¢£FQ4**ûÖtC¯ô +m7`ìù=®•š?âTé©J¯^ݺï.çž{ß¹ß÷þzvŽw˯ö¥©-6~1‚zªªq¸(´vµ©Qep*Œ´_º‘ÅMÜô4C`0È-bRÒù~-·¥¤xgEî=|‚ÕI@Àó)3ç¹y°6“žtêÞwÉŠµt±Ç“ç¯à6¼&Îäjæ]ß ¶dC¿žg@Håʵ‰â@$Šô +t÷=~þªÒP‡ÈÏ+×ì;òƒwP»¤ä=K=¯Úì"Ÿ—1Í:ÿŸ—×ùUÆS—3Ý<SÒÒ‹Ôf>iœµpªp f¦ÎžOQ©ødÚtì†Ì€¨÷À!ž¡‹›O J¤8È«ótD°)”ÿk}߈Y² ç®Ütó +Ø™z ö‰+;8!T°6oñrŒ ™Á[Ê?ĈG@ˆd_88rí8#”9³„GZÚ¬‚K3K 3‰þ¡apÎää—yÉ[IFx½åÄ¿¨¯Ú°™H<åŒ`8F„Yéúx¤Ÿ½Äõ‰OÜñZìp}íÄ­vó ‚ÀgÆ$&í>¿lùøùËœ‰O˶,ñÌyÏ@ÞÕ‰I §ºö G –ŸÍ:ÿ÷z~[çW›ë¡ 4$/ +Ÿ·XiÌÉSY‰[ÿù ¨dFØS‚iÈrÆ“§Ï妠~î?7¨ƒó€6 ;s‰–m;wÃ7²‚«XöûxË[ 1ÂK:ßß\d°D7H)=üŸMñð')@Z#éù´8\ë Am"fÏ_ÌfæäÑ•°åK0–AÀã SÀjY`+¿–íèõ +ð®Küœ^öÅ¢˜âe|^iPO6ÁºùeÕìnÖ¼XÒ–ƒ’ Dá#عÜ8n¢P>ÿ…Ÿn¡”¾Øõí¯‚G*TÁÿå×{9p–ÀgÊäÝàÎBOß~w¦ðŠŠã©ôk;ëæ¸#õ°¹ÞU¤2j¬(|ÛªYç¿Üó¢:(æÿw`)˜&4'°/t&7%*FÈlº¦ÍYŠ:%¨ØªC40Ÿ?^ÿY -„"*`2å'ÛRr+´JK}™¡Na´—h-›³Êlß—~Ú- øÜ•Œb•Ö7¤•²Æ´<~ýÔ¨¹x»"¾SÏ~B±ðBL`¬ÀÿC'Îá@ê¡cøFøá*½¾ÁíðD¤¢ s×>ñùÿì‹Fkƒ ÍÌë6'açŸçÿÚMŸcSÒù>-0‚ƒXña:ûßñ‚qà ŸŸ<ÏçžÃÇqfdâ̘XZØ×ÅŒ;0TòžƒZ«WqÆa îš”ÚxËia]ý”8×7H²ï.3aò£Ò +jêܲ ö%Z+¹¢ÛË µ7ï’>ø¤îÿ®R­6jlxþˆü|U ½MêTü‹&…ÿ‡ÖùŠ÷òË=½þ¾•£ ‹*uF»Ùâ|¦ÉÝýÐù ž¯€2þ•LÚãþ&°tqë7%‡„ýtë^Y•A>€,ûSt2Šfv—ÉãVo€L« ,”ª4±Ë>f|ΣRafô¢Öm"¨˜?EñÁÓ?$%õ Öj$09 öâÉŒ˜ùè|]mݵ¬l7OYRÊ.µ–°Ì-®DçkÌ ÐSµ±Ag}ŠÚ·Ö»ˆŠŒì‡"„‹@ÀãÆÃÒ2‚çzÖÚW¬C‡kÅ•A¢ ãq ¢aƒ ã>¢Î^€w¥Î 2wèÒ;rÂT6Pïûî$ÛGç;› ÏàUë6Ùjµ5u5FtuÅZÎÖûë‡q ïÚ'4¼kBg¨û¥Bkýñz–›oðö¯ö¢ð‘wŪš"%—ÎN@Y¦67ëüy^^çs‘Óÿ} ºsß>‘ \ó¨E’Ø[€ qïÎ@ÊBÙ|R2á]{¹T·ŽÝ_ïÜ«?ˆ‡¾!J‡9iâ‰ïÍÆc˜„bJÞ¦Ô~½ÿûÜâ2Hz"“wü”™íÂ:b4"­»÷{3· œOÁ6bôÄáã&3ƒÑ±Ëd>-¨ƒD/9 ‡¬K¨ð ·ÁX·tõz€•~íN.+nØøYÉn¬mÈzTBE­5 ˆ–R?rfaÆ,Æ_éØíýè…ì”Ô棟Aaxˆ«ÇÉi¿zûÿuà(× ’¶à¶ÈPh_¼r­ºIí”+4º;ÿì}T©76¸²‹””¨ýfÿ{=¿­ópD¥Á^¡«Eé)õöB…!ëa9нlÍF pFƒcpGTÌb0Í`k@ݹ… +ðⵟÁ·ÝiGAr[½‹^Ôµ—LBòyùF6½¯ßÌD“ÙaüÑém Ã8*^Á5´ß/¨àsý†OQþÊNM§Joã…VÚ‡u–1…AÀòœK +4è|™w‹´#§Ág…Æö6A·•. .]¹N£µH+*´†š:N€µHXp± ×µ¼S¾7{p‰ºp^cS8´ðW{A[ŒçÒqq¸&ÜnÍÃRŸ–þƒPz\@®í·î£.üÖ$lÉ+)Á>ÎSB˜%ÂCV¡Ñátmþt;+â×æ—–žºpU朔²W¡·ˆ•i¬daÅU*Í:ÿåžÕùüAä.Hˆ¹¿0ôò–óëé¥.jð 1ÙÖèBéU^éÒ‹ÈÝÛ¹…Þ¾AŸ$l¡ 7YèáJ•þ^™ZûØU^cW˜êÚÆ<¥¾¨J¯2Õéím;wÿ n%Ràð· +*U—22#ºõ`ÅÁ‘É@«Ã%嘓¦Ï!µ$Ì€ý®àÀæíÉ€0.Ñ(\"1¾uD×Yó?o_ Ï5ûý"1ŒŒ§ËÏóŸY¬5aZ”W@ˆ fa-ìÕž(vÖͼ—/E~|‡`iâÍò&ŽÃ=³ÓuðøYøë‹]ßâ h—r¥&‡oÞÍ£òMÚX•‘”l‡ +g+ñ”,-à 'Ü¡ÛŸ q䨱}Rê!7×äYÑn…Õ&ؼ Êˆž/¨ªÁÖ°£‡Ÿ_Rá+^¸jƒÞáÊ)Vü CðC +Õ¶Æ?ºÎOº¶Ý@KàµÀ+œ«Í§¼U8šœê .QêÕM’,ð—‘ ÓYœ #ÆNönÿø -£þÍ[Þš)à0fýÞÇÄ.Š4–<òmꌺ±öÖ¸w0(Ö}î‡ S¨ófÜyÀgòîûÊ&X4b\÷×ß`D3=:Æ/´µÊh.ÓèzxsÒô(•˜D—k,†Ú§ZK£Rï:¿´Êú DÉ! O:TˆJ‘!$½2z¢È%‰[Ú‘ñaz°ÜÿÎ n*x{#O Ò®Üò`‚ý­ï ^ÿFYRW1‹–ƒWàHWÝ{öÅ' ‘6ÈÆ(2ؤDñ5/^Œºpõ–ÄÅsÁò…hDzgÿ!@=Qh d¢;D7·ÜTµÈ„§Ô}_}cFìbü¿ùNŸ±ÓÂA›”°Á˜g£ÕŠ7Woq®ç16néjà”C±€_¾Šc kB8ŒìÓgÅ‘!nQûâD•p +›=|Æ!Hz¥Î œÖ¶X‘ú~PnÓù/ëz¶ÎG@ +Ð@ê«k›t¦‡C3Ü5A`>O!æÁ@`=)D"såøúýé‹¿à6Ÿ`“ôŒs’vû¾I‡D€ñÎÝz0† ª ¤=o c!¢êØ×ÿÜç¼b ä:‚\¥Á)ã¹E¸Â¼Euãêá«w‡.L †e8nð*ŸDŸ5ßÜd…SðÏM\Ò@äã™NnÑ#løsW »Ñ†}pERòlßyrH °CÙ#B̳…itìú²‡ÎÛ„Oì6Hÿ¡£DÂöcˆ©ÏÀ(o¸ejx&[ž0# EhŽ-•Ï¶í­m´¢ó‹5¦ªºG:K+í6ÿb×óê|þ)ØȯWäÒ33ÎÆ €ýãÃ%2¿›¿\—X¢1k­ˆ|Ô~eM3E½zc"6íx&õ@µ K”~æ’ÄÑ _õà {ŸçäHH‚x` L@”‚Ü¿K÷Ø%+ ðŠOh{¡ÿ‘Ó :ŸŸÚŒ™:ÝÅ.ž"JŽ†÷^™ î°‹W®cì÷g²@Nr‰;÷qŒruó¥&q‚Áß¾/6ˆsñ$(G\¤µXØÔ6 0Š(pAß!#(~€7óâUÌ8‰bWjí}iG©yÒ³ù—)Ng]S 6Î’Ê-­6A^¡g²40»[¢Æ† CF‘-Ë4cŽˆàGÌYÝì=”ŽŸH,aûWd²59›m{ õY0SâæwévÑR ËŽÚB 5Æ6ÿ²®gë|UU  t>”Ô×[Pû‹–¯œœ8P>~š¶›»ºmÜÐjY°Œà¸Ï]äÞ»ö¯HÙ?fñ5eÿaðNQ9 ÐuCÂ6¸(mÐò§ë¹¨ëàÈ9X¡Hé,œ=Úï=ø8 lƒ Ù?ã + ,ø3Î s‡?v;e:€ ¿Ä¸Ž©iÇEhûÄí{°ü2y?£vì9ˆ•È¾×o¨Ôd‹ÚÇ„'7œ0Ph{sÓBEĸ{´'Ö/ç"FÆ,¤MI³_&°õØ_k7'9{ùøîzØ àÆÆ/v²‰¶ìØ#÷éÈúˆÅŠ5›ðôäyÚ‡ÒOö0Txæ¸äàâµì£¥Zù8:y†Ï‰Wª ˆüF«U©6–è,E•†6ÿb×óê|þ¬€VŸhh|Ì/z^HeÚKå 3€ 8»yøÑ *èáé×¹X"þ\™û+›’vó +øƒÕ ¼œ«D[Þ×[ +5b‰£«¹¥¾6ԟʲvïA‡Že óïkªGŒ‹Jwõéˆ2!,`ÆR9Ê\Èo¸mL’vQԈؖÊÀ8ðK5 +>)4ê7æÔß*Pñ‰ºê?¿–ÿ•œü§©'Å-‡$:âŸìƒ*?qg +ÄöŸË¾I蓲%Ž®LŠÕÕL$Åt`%r¶‘£L‘zø8– œ¿ì£O·î‚Úà©v.žxƒw00ì_Ì‹!‚#‘îè|1µ1Ó"$RT®­$t»íU¦¿z»@®ðqõöïÛoìÃ)‘1Ñà{Ž¿{ojÎ),1Ždœ—8y°rŸN4.\½]‰>¬iÀ€Õ¤ßÑÍÙóî{ù¥U:sËç»R¨|ròð—8{”és••eú:}]kpGQÓÀnÂÐ×±ëÛ“B£ ‰TYîÞÿŸ§>¥ +îK7ïÙá±¾°¼:bÎbúï« M”¬ylJJÁ3cK´¦ãƒ:ý©Ç=•ÿ‘s9Ê9—éP3:$néj[e:º2dðÈ Ê +ýw”Hª¹¢©Ã?£xÚ&ÕÎÓÁÕ—I 6šXøçNJ9 qñf¸ï«Ýxž½ü3ƒ=‚£HŒ$É¡Xm`qÞøkïÐèùÕõu9?ê¿:˜nsèìEh^)þCÇNKdî¢oç¯ Ú7$²_G3/â‡×k¹J^‡ ¤Maº5™”¸Ç͸UP†1ñ»%Zm:ÿy®×ùyeú4v„›ßú­Éljv:{Lp +’{'‡ÍvP¼’W¢­y𤠼ZUeéò—^ãYXµ±);§PƦ°×vHôüÀ±½¿¯5é,§„ÇP Õ y-«®¯ªkmßå­°˜E…5Å#¿z£Hö0 "è—Š*k¯R0”¨}ë‘ÆØÀÈ‘CÈ„¸Ó8‰´ó$\ñŠ7÷J«Jtæ»*ÝÇŸ}i+-»s¢`€%9¤g^|ÑôÔÅëD$Ÿ¨¸¥Ì¢õ[ÓÀKõu¢œîÜ×¼0Ë„ûè$%}ý#¢Œg}dî8Ì)¢Ü¬ËÖnæUäÙgÈ(b‘?_žÎ[L„ûñJ þ&-ѲìÐKݦó_Öõl¼×˜Z¸ËªTZK©îÿì—m¨WÇCIƒôRÓÚ(±%‚¥(ê!_Tú¡~ñ‹¶bµÑ”¦I•^+ (Ú|(b ¥`E +*Åù¤TQŠ +ZA±bi¼É}ß÷—ÙÙ—™Ý}¿{ïø;ç¹Y.éÝ$÷º›½ ³< ³gž9ç™™sþÿßi`y+D Ïœ}^}¸9¢Ww¼ÿÞ‡ŽD“Fõø©§o™9 T¿<÷÷ÅŸ¿ŠbÜxîµ?¡„/½òk³µ!h¯¿ñoÕ•öâ͹UúI݇¿þä{î¹¹×k+»Á2~ûú*¥µmÌ+Gë~ék§1 zC¥é™ÆCG>ôåßàF<‚ +¿uæìÌ¡#2Ä'>ý9°Ôû÷ùÇÖyˆåÑȧç.ºBáIC¢É§ýØÉYÄ­¦[Êã–jkƒá¨GøàG~þ+qBÍQrï£lÞÆì÷ž}×ws˃‡)€š¹—LMPÊÃ=é{éá‡?~‰^&ÇÇŸú.M;îùìó/¸ãî}ûß}ÿg¾°”³YfåZ?èE1çïî·SÎG¾C4]EÍÐIôyöÌYTŽK(êŸÚwÛ]è-9ˆ3ŸmDöI£ñȇ?m¢™èÿù•üÿö¦š{z>ÿYH/l£ÖE<é ƒ`,ìmç„%óŸÿ]<¿š-­g~ôËá‘ÇŸ¢gÒèÑ~è«OP µQ œ}áe5ÉÄ€Pà㧿}ëÁÃäÓ9ŠMawÞs߉o>3ê¹fÞûÒ6‹¼í®~ö+‡´QõséBÒÀòHÆq¤[üâð½Ãø¤*ÜóýùC‹dCiNó7zÿ䧿 žˆÛZ +NPõÃrÐL +lñØÇyAÛr¶Û¤ìj3JJåµ¢å¬a×7èþ¥Âœé«ÌÛô)²L\òÛQœU[Ô`úM®Š¤“Cå"àœH ™¼r(ŒÎ3%O®æ¬*ÊœÊY¼Rö¦ŽÞïÐNŽ£“]ón 'Ä_¼¶na+¤ëÇÓ¦MU<>Õè1çïà·{Î7k,çd9(‡¸í|)ôDÉ"D-‘)H¸¤>P‹¤ Íñ‚®§ÉV¶¤¡xä0Sr†J.êʽ‚è,Š2Bĺè*cÑEcvZ7æ*µùT‰ùIçb"ô&UYšÞÉ”ý ^'"ye˜>ËYÐb¤ž‹A-ÌEßEЕÔý<õãÔ&3Š„ý˜ *[ëG\µÐÃJ ð Oz®èåï2ÿíBíê½±*>Å-­ u!“áý\e‡Åœ~Ûs>x/6n Ÿ¦×-û½Rµ“*9\E×JNÈœÉV|¤OäB» dDNcI«"†v% [ W$4[±DÞ{kQU¦Å6«}‡«a{=rD'‹zõá kúx‡Øí9GE9A„µbwðnÔº­å^&¡šöNH¦tK&šLW +ÓCñ«987â9¢êQø•¼MŸÊï ßj‹H_`8†ïã*¹…Âh¤+e¬ºZ&k–Kòtô&…Dp«Å•_Xu^²òA'd«ÂF‡‚‹nèwYY¾íuRfÀ*³ƒ„á^sþî~;å|Ä@ñJZfAY˜!UœSPiĵDú€R2ù¬h£¨´(-í9­ä¢±-‹Qeª)Mµn¢ìsBp—¡Vb(2®¸½Rc ˜µ6çgí Xh'MF'˜l42L„Úgºj‘Ú8Wi¬;ݳ<Ô¶ÏEÙœó9t“+ÔO [r0A54Sšª­Ñ)Iv@y­jg¶6¸‘ÂÄŒ +ú„üß”{•³è÷©¶ä™ô¦«Mé'¥à²¶<<î­ÅL»á,élEU˜3«!kV-4 ÝÃqœtÇeìvä+ò‡?±ÿÖ™‚å ü/Õ:x`ª¿œ7:ç_âÀ˃·*ÓŒwÈ‘—É+åÍsÂË'ßç£0háHÐÂçàëÈmTÿã +£êh]n{ûxgæcòõï´ž˜ó¯ý·{ÎClþ?ƒ¥ÄÁA‘5CÃpZë¶`¿¬#e•%„ÞÕ××úÉÃU<Àk+%w‹Š:¸†Ý-UÌù×å·=çoÕ­ú9i=¼QBíaµÙ4®p‚c–ôFcÂþ2ž9_~;åüIë!hÊ\Dg:)¶wBìàRBsãõ£†ÐÝЛ +ºùkhº EèQ¶Óª³àÔ 9—7–qÛÄ\Æò›^Cyûn™yðÑÇÀãQ¾p³rþV~Mà„ÍZ}-â#2÷8’ ;.$ àŸ¾,9y½µœ´ÞÆœsþèßÞå|”|.QDÆY/è!G¾ˆÐW—r—XGói3\Ðüqëu"†¦gÖïJÁahš"ç#ž«¦rªwëµ 69‰9ÿzýbÎßMà‰E 3Õö¦²H!ÿ˜óo¬ß^ã|&^€&3©0„qÚ×±W8ŸªV‘ßÂù”MP6vƤÅq¦Uç(η;Ñ[«©Jsëyò;?˜¹ý}¿ûóßóvíæåüí×{º\+¸-Òìp#çåZ?eo/ç+uP¤É_·% ˜yí@3èåìp¥à’0—0‚^4i]ÉócŠ‰×sþãçü1†ÛÊá`Ù¨®”¼¥¢;Ÿ³ÌÆš\JVjNG]åªr1[×  y›ÎKõ>ªeµ6:ÕšJðtÅ ‹Þ2'lg¼6O=ÅsþÕ8?ŽÍÀòpRœ1YòƒCÄ÷š¿ì4bο2çO\œp!mݦéwP!N˜c Ö&Û;íËcJ:™²êM΂¾œKpδÁ_h_5}õD~aŸšž ç»êfäwS:’N'ãõ—Ê5¯Y­õ¥l%èF˹ò¨~nV·ááyÀž9†ŽqøxyZØpBÉY«Áª¿˜2Isš~W¥e*Þ¤u)æü«EÌù{—ó ‚ lúv;Bp %I”}„Å_‹“FkP£Öc7Á` †FŠ dyZ/b(àB¦ÌÛ $1‘Ó©DÌù1ç_cöáüå¼ãuú Ã#öš¿ì4bΟ.çW[ÙJ È_ÉÛùJåí¥, °í5ÎG¢e†c%x–p>2N#±RòhGá1©éùΟ/Y ÎÏØÁ²á&ŠnÑmT[ƒ+<ïMÉùgÉnÆf+ÁqŠïÙHUeà‚úÓª'æü˜ó¯%°6,2g‡µ~„™µcº­h¯ùËN#æüér~²`[A'gA§árÎr›ë|È*ï´ó—ØXÆ´tr+ä á ùc+¸¨/WQrhŠþ’w¼Þ}däóêÚÂùN?õ“VXúR|ÎhíQýܬœ_p[äσñˆØ|ºT©¯Aõ ÃCЂ^ÄF ]¸ +ÿ\õ»QÂp¹þ_-V9NZ—bοZÄœ¿9’G.œN„$ö^?:Ÿ4IþŠŒ¥z‘lEãäpĪÚûûå*×UÆñé9Ñ“4§Mc#X}PñE©¾H+ZÄK¡B¤Thµ«‚-‚Š¯>)"Å6D$MRŦ©¡*%¨E[¥˜$¦IÎmÎ\÷Ììٳﳯs¿åoÏŠ!ÐœÐSÏé$v†ÅâÛß^{ïoíYûÿÿ-!… ¨†ù3µ„ù'õ(_ fív›¬Áj­Mªž)çO9ÿ4§¹†»)f”Ó,hŸ žˆW^oþ²Ñ6åüÉr~ÕŽŠš[Eˆœ†õ‹º‰W×ç—ÆV‚t£Û¥1öcXôVBAWØ +gÑó úËzœŸÖ’?àð|Á•+fèuÄz÷¹Ñ9¿Rï^µéÑ(§GiÕóz"‰ y£Á}T>£ŠÝr;¢`6ª~ŸØˆ×X2Ïx“Yïæ›Ø®Æùצýk\r•¶åõO9 ›ÏùR+þ÷Vñ{y«±RõJõNÙëä̘Xo¬qvµdH‹†NWœYRŠNkŸ{.W#àéÄV[,”ìM¼ÿFN ,•-68X[›‹E쟔/L9ÿÚœÿHú Ѳµ°±?lÔï‹EÅÆõ0Ç­ö—)çoîo£œ¿ÕzX1P¿bF¸³be+*èûÇÒ%ÈïÒ.A¾ÓOÚ„t[:žU°›øVB€m‘ij0/\F úØ1¾6©"×ãü¼ÓɘMÊ6š€ÇwT·¹×Þnœˆ!e<ê~óØÉç·í¾#53“ÚñîEEqÚ¢h5«~{¥Ro +ÁH¨~µêsU½+î}àë ##w +[Ú¦œ?åüõ×/磈$:S‹GþÔggo»D~2°7 +Y°ÃÔÜž¯}ûû›õÜ^̧foMÍïK½c7ÁãGŽ#t“åü»¾üÕÔ¶[x·éª{߃Ìí}_V÷§œÿVý¦œÿfšpOšÕ'N½˜šÝ•šÝ‘Ú¾wÊù7Öïzãü’îýé¥Ó©›v¦foIÍÎë~Z»9ÿÂ5 zbxÃZVëÿÎjcsyýŽ}úÉ¡_Ë]N7©:×ãüœÝÖb©â&;+àó5Ïm­ý¿r¾á÷*Vƒ¾lÆ^K8ñˆÃZ½COSô˜|ê¦ùþn’Gjü>{Ì|Í÷:¢h„š×.tíxÀ*5¼ÖCß|45ss¶lí5hÿlZ…ÿY¥R»EÌÀ뉂ÙÈh§–Ë.yö°¸ŒÓ²Â³ªc†=vµÄ<‚S´dñ×[ªlÄünFuõ WqšFØ/Û —TeF24J ûBÆ$3b0ÈU·ELCßìÆh± “”r+2\›Øœ×a ÷$ORf¶Zo7¯M9ÿZœI]¯ø¢¥2°ªWJ¦v츷#ÑWÈŠº;vº‚^a¤#tH“@‹ú2°ÚbµæUÃ^Ö8Ä7¿RuÉs˜·".$£]b½1üô—ö#éò*Ä$gz<à?ZÕêFcÈ©ûp„ÔÌüÇ~ˆA$îà÷©i2/*§1³!HR-õË^Îœ´;L9cœ¸Ú!å—åÁ+‚sZ]Ê&X2}©ŠX}")~‡‚Ń ùv¸–&¿ zôP¤üˆRs»¿òзäâd)2†ž1,T433öNáRW#­ “·•…1>]uÉ“‘ãŠê,”옹”lØ[o¬áˆªŒ/*V½Y#ÝÉãD܇ª(@½¬™Æ!ÅPÅ|â3_<ñÂ_k>xÙÁ\R3;}V¾©ç¯o‡Žývûm·§fæRsóô3;wòî{Ê–W¨ÙºßP ·bû%³N¿Z®YQ[b6Óá›evLS>"¥ò$ÃYù~ð)\‰¶Z6:BÐ+¼R3ܨ¿ÜèœÉ±\0 |Ýë\XU]þ}3¶Âôé¡ýWþµçÿòØïÈ SH™Ó\C÷Êv„ žzùLê»~vð*Zµ#7îßÿÐ#ÛoÞã5‡ >Æ#h\Hõv/ä¼$¹RAH’ˆò—ÌÑàón{òÔKpÎÁ#lj¹?g•„ Zy­NŒzK,GŠA÷ÆH,ŒjR•„ÿx(V+NF5P0$š¤‹ºjžDw0>[­s!‡œŠ"]¶ëmñû¿¼‚t£ØÈ52Î)PÝ.:!±ÛZàù÷W+6üèwí}ÿGH^ƒóøC³=2¬ào/Ÿæðßùž{4óµt1ê IþnsÀ»*Œ§pôä©™]ïyê¹ð +&ƒäâ2˜C ‚<Ó\QPïnÜ,æUÞ3œ;\v)çoýocœɳê²z]n3ùåöXb‹“1fT¿ ·c4Á@¬V]zèÁ—&¢z]¬/Àà^ô<¦?»²B†ÁËe[bóx#Xû<‚-÷‘û‚õüÂïœBu"zh߃vœ†>fx Yxª#á„R‰™Â¹¬êõÅ˵ÊDøâ0,åÇp|Íç…Ðcñ«ç3˜Å/?ƒû\ÌiP=UÁðÌz¥R§×yæBñ’ó™KÞÙªLÚ¦œ¿1ÎGT‹N,5 úMcö‚‰eè~«l%ë M»)%Æ1&mË} Oq"âZÉ”˜J¯ŒµŽ•ù÷³K,à'Ÿ~Žux>¯çà+=×¢™ˆ'¾€ÌJ°g˜¼3øMϺ•(ÎG*q—Ëåb.¹É~ž¿P(8]YMq.WÃ2H¦5_‹†iÍÂ,8‹ƒà#µxD‘<ˆ;óQPä‚bðQ0)¹•àÑœåqãy%Sz0˜Ž• Þ÷|þ¾ùÛ? ]õ¿®úúöóC‡ÁûÓgÎêõÈ´}Àþƒû8™'?tq‡*¯Êï k^Üb¹¨ò*.oj¨Æ4y´?H$ˆSò]Q!ïœzäž c¡– ûÈòÞVœôUìØŽfØ[á-7Gˆ<"YD¥Ùl25+zö/îØóöË4*ÊëŒãð3ƒ¬.¸¤ŠKcÌRks4Õ㉦61zÄh#Æ% £¨©ÚXëRO´¦QÑk1q•xŠ[#®ì2 0ûÊ0 Ž 0ý½óÚ~*ç¨ôCxÏ=ï¹Û{ïsïû<ÿÿÿ鑾ï0"X¬ JåœS æƒGÏ–(õN×ÞÔ:nÒ4‰_¨¾®Ñìô3EDE6ÊYDNšõhsúØdý`)f¨;ﳯ¶Î½ÿ‡Ó’€ð­»”VÐöîV/£ÄÓ0³EÇfæSÀ|ND¡‡ÑJÕÖÔælrz8šJ}= Ra :ySOÍÐñó—É\8/{a!Ör^?6c*‰î€Ü¡óãyz_®2ó@lÔ>ˆ‹ŽUh-†4€m sÞ/×ZµOµÅ¥4ƒ·h:zKT¦*“ƒQ†JÕæ»zozô®f…ÑN§å^ú‡uŠj è +à—bnje–º«±Í·+5¯·J__¬Ô\S“Ð= +¨©ÔÖQA¥×˜œ>wA€@˜7æx !ÑMì&ãhj£³¬ÖTmtPt>˜·ä/þá]¬îÖvu¾عK…j‹À䆼õvd\oêd=úz7—ûH¡“ œgñcDTöå–tv¡( vR ÞÏʤ,NáP,Ҭ E‚NIó?ãCn Cç?«çÉt>ÿË_ŸøñF!XêïáHöûÞ+·ïš\-â¿ØÁ|µÕ _UéAN*¬ ÔÓI³BmEE3‡ +z tibä‚´¦"B.P,~KÓê&]mª6:Ûã ÈÛég´H¡I«ŠªtH2ìÄH=|mv!Ex#Ø8AG“ ŠfŠÊ̇fW‹XDº$q ŸJVn»ûàQöb l†&°“+‚,8‹˜p + \¬4@ˆ‡S?ovèÐùO¦ó•·Â$ -2±­ô9Ïå[`²YиDsq•a‰žñ+¼ècœbÓ$Lp315àMo&PÙ$ª¡Ñ_mÿ/mx(D. +hóCŒÉx¦è´ô#ªV‘åYœMŽX™íðv&Sg;>Ç'a +,‡(¨tg«—¼@À=»¦õ<‡bõ®öE4GcSva)™Ùˆ`é‰sbfM`»óæ+ ž<ó“_ {ûŽBË)ÚÓù{‰éÙggæAmÓÖÔ‚-QªG½;©ÿSQ¹¥ÁƒÔWhMtnÍÅ‘9[s(6Ŭâ¼7ÊkA®…Nî•éÄN˜ò‚\ìž6~ +<.ZûsÓù –B A;®—V#nñ1ÒI‰4lgfðp;{T‚"–®ÝTª²‚]Hn«{è¨÷ÀÕ°Fýå»ôêo°¹g¥,Š‰í©³6 ö%þáa±/¤íÊÂåø + ¤\/£Ÿ]$RyD\_×/£üÀ^‹z±4¤ÃG¿/ Ž÷åýÒ·ªt¬M˜–$ô„ (i~iµN”ë‰É "ºõ9‘E´vÓŽ½ä)“%ÒšQÝûŠý+ÖmŸÉ +K*+$ª×€—‹«´Ìg‡ÿÛ‘ò‹CHOÜmd©FÈÍcçsäÿÏÓë|plÚœ…/ ¦­kÊ¢ƒ"ºH¤¡É –ˆj\a¬“ÿÚÐc®Jüe’yFöÑ› +Mþµy,M¡Ó_¶}_ªmÿѼ?ÒDüßVêü,òuÆ>zvfå $ÌL¡^cm`Øܶû à{< +K«ƒB¢¦Ìšx‚´àmÞÅB”¹§RYÿ×Þ|Àd {rÒ|y\üãyBüú‡}“™(±‚DÞ™ÉS’”i¬*Ÿ3ˆÈ `‚ƃ‡þåàa¢Nûÿ:_zàÈ).(=†~/~ЯËk à'òžÂ +WÓ³/šÿŽB5tÔ»°5% <ºg ·´Æ8ajRhL†d_˜4}. µ@à Î ŽìÊ°ä”™s™@"СóŸÕód:¿\eš8m¶¬³ðûöþ`F +? †Å¯p§•ë·à A‘qŒó><‹¬MN]ÝóLÁuIN+ßóýIˆãê…ÐX@î'ë¼mw6:ßèlBTÀMBP¤$8êÏg²Oáx$R9a(Çyh–«,è–öø2êÚ{ x>wÑòý^yD +A›Ó315qvª$(\DxÔÎ)ˆ¯é)‹q×Û•qÈO»!m;™ü_ܪPÑ@ôIeSf~ÂâoŒë#Òeéª Wai F +¤ÛµÏ Ä<|ar=øhîbÈ.÷쥠ÈîLHßåÿ¼Ù¡Cç?™ÎWÛ›kmd¨[¡³é|:sáò5#Ÿ€—JB#< ”OŸ›jr:–„ÀÔäq}_f|HtQ0yÉÊÕék%ÊG^-•Åô ŠXRè3è7¹g/JAx© Ö`…ùù’ÿzc·øAj³˜SÌútIT~yz$ðüå;Ȯޞç,k6í Ó¯SWÞ/¾>Âêñ"øq€K7Ë…Õ|Z+".žHÀmÈ"€É¾˜ˆ)zBí“­` j|Ä؉‡OŠötþº¯·"éó +®¢ä« V³ëÙɵâ +ÿÀ°EËWìvÏCäý2Ó„Ø),¶×®¬\nLÌ}°äâ2ßÝcg¿W‡^/»‹=ð ûò/D†‚elMÁ*Ìkòzn:¿Îý@evœ»TÈ…,Z¾J©¯ÓX];3q3›wîáfLNÏáSù!QݶîÚG]koq>$I¬¯ÔÚX¤:SPÈïþvÏ!p¯FoCçŸ<]Pø~¡—¯—Àã³S?gµƒGÏ@å®ï§¤¹bÝWDeÄïÆÇÅ,Qj+TFkc ®ª w‰RŸå‹oHË Ig¥ÆšºtÕ_×o©ÒÙØîÌ¿®IC£6¦¥Wëê”Zë¤Ä¤ðØžìku5ëëUF{âÇódÑÝjs­¡~ÅÚ’àˆÓ?^¡ŸäøÙf®\÷÷/=¿=®{ŸŽ{m,uèhCÛ2öi-.Ψ48à’ á$ô2”dgXÈÃÜbs=}÷¢Mç¿Î/R×!óŠTÕè=u½ Á8e¶Y<·³ƒÙ [AáÌZ 3¦ þÁ'~çqî匟!vtÀèâÚëcÚ‘”‹×þGñéÒ[¼.‰ÞÈP~ØØñŽÝz¢”ÐQ“gò‰N<`ìÜåÜ^IO&%³Ü}'¢¬r«¡YÀΙž’›žWÂÀD£<ñ‰IyöL÷ÍŽ} b°½-ÎÐ83zNêÒ³u‡Lqru#…ú5cÞ"†¢Zy¤>éq”ÚÁdÝ–ÝèÊMk:ïÑD‘•}zÖ=…®U/­Ð喔˪jz÷ÿ¼ÿ áb…ÙŸzõ~å†XnL½ëðq‚ßsä;VÛlÈdÝæ8‚'ËX5…E?Ëž1÷Mj#AiP‘ú4ÏÂáœNÝ{ 4’M£Í•‡ ïôþŸû4Ï Ëv›w䟉ՕÆ&euƒÈu/Ÿ‹•§Ó®[ÙtÞ{4 uÑéLèm+kçÛ¿<¬¬mT ÁÒÚ aŒ9ı~A¾þÁÌ¡žŒÛÙSrÚU€˜Ë4€¿®ªÞ{_¸öé“xæÏQøy¥*»X®åAçã­5´ ÝÃDA¹ ÇS”Úz®XDì£7nårFÀ‹ÚÙÆîØŸ'–ói´W€¯_0F®R•>óÞK‡.hûB©:íêM[;—ÃÇS¸,+X‰í*(S°^~©Z­®myç„ܦóÃï÷ë|øjÒ¬®·/ý˜["ù ¶ÿ# Ž|‰‘éÛÔ´«äi˜Ý>þËO?Øœ{üGŽöêÑ÷S‰ZGB9tíòÁãƒnᆠg2òäð,ð‡š\>èí9.€ñ…kï¹þaÑÞvÎÂ匉ž¢@›<åëÏÙψA¸> ˆh'%§2xa¹šxÝyO!~ò‹O,£á(²áR`»e7ð.(Ó´¦óQòÂcíÔ…ÿ‰B¦©Vjëøîîí>Öç…DQm|%–UÜ̺/²´‡„uF“P­¾=y†˜IöG¨ ÔÂf¯ œq %lŒSçD::wÃÍy½ +;é›ÛV›ÎÿŸÿÞNçs^œ‡HõÉÀÕgâN€¡ôfíª©lŸ 2ÀÊÞ%þx2ñ„ó?ì70pÂdÆãüÆÃË= þy@NÜÁxÆœ¹¨2 zãhÒ9D ©„´#´V/:#}_”iÂæ#ÝíöHàLsK”Ä…œÍ—Hˆ°‡[ß/Fy2/vA’åä‰-TCó¼6[w¦( ti'¦¤I”:4? +ŸÚA)¹™•mi儾¡ Ÿ!_z» ¦` O_HM¼( Ò<ñäò—ø_Ç#×Õ¡Mç¿Î/Ó7åÉtæª3ò_üš*§ÏCEÛݽÿ pW°ÖíO   +š> $ž>n‘[0óH/ÿaî>ˆgÚ@ú—G98lÛwÈ]¹™åÔÉuÇc`›îCÝ}H  N9@Égýëß"ç‡Ê4ú‰Óf;w~UÖ4™ÐiŸÀIå’žÿ¼óÙŸr¾B t§â€=¢â5fû^F&ººõ2;;é@w` tvÔ¸Oï@è…OÏz@¯Ó®˜óÂÆ™K ]Ì’òuš­¹­©ë?xp{‡®¢ŽŽ‘+ÖSS +eUTœÖtþ‘Sß¡á“Rxúq +_©7”(+ö@êkš³Ÿ|Øo€`p¾DŽìGd²o°1³™RÙgCFO žFÀ‚Îjâ¾c§&9x<™h…;ˆ‘/çìþ`:h]θ%²vØ·—«$φ—WV/[Ãþ³óE2õµŸ²D–v )çq« Å*óp‚ª¦¹²Þt)= ïO~œFŒù%ŠE+¾†KäUˆíˆüJÃ+¹¶AÉ¥ ýd4yûëSk|•ó¢4|ÞBG—÷ +Äåjm]¹Jkl1™GÞ°Yª¨TUÕ–)«¬\¢×Çê M´-,í¿ŠZEþòU£¯çÁyÅš u=#“öÎ}ßÊÔºB™©Ÿ'©`½5Í&.8XJÕµïœÛtþoøý~ø‡š‹>nú «c¶Œ¬O€î´Ù :ØuBå"¢ù¿ý”O_ÇnGãkjŒÀ^^Y³iû‘•Cæ½G¨â [âÌ:Y®ðç.]G߸u‡,(*S…LŸ-êh§ÒÊ+ôøЫTQÉC²ð%pÒtfdLQÛˆ¨U¤ ºº TNw,Ë×Æ<͇/XìØå}Œ…R%ã—«¿ôàëÁøSøc'µ¾>§D©Ð¿âî;p¤— ²RUg爱´ªó;Úüp=½T¦ú.õûŽ¶Ž¡ÓgéêŒÅR9­“Kä’å†ÆW¹ZUU-UTˆ,:’ÈÌuñZSÇ'e7Uµ¬‘=áŸÀ°Ðíåçá;!·6šÊ>s>¸ÑïÊêÆ6ÿÿú½Î°¶¡k`ÌË?(¿D–žyWÔÎzsÜ>` ÌÀ-ÿ=hž†±s=Ä.dJÔêõÀceíKóÕ²hŒr +é5tŒépìÔе†&Æåé‹CÒ¹ï±Ð7&ý/õBZQ ®Qþs®loß…’UƒHæåa®¨ã'„rc%¹jMd¢m§nøð°:èîÖ'dê,C£IYYC­!†CÇN–”«KeZÂÐÖM»‚ñDòy‰\#Tœ˜­»f€ÖmÚF¨ASgñ•}34›žw]ÚtþÛé|‰öe +JÿR|9Ò +¨rfÄ2P—'Q£$ ¤*tïâÕà4n‹ÐÝŒ¹‘°ý“¼bŽ$óƒo¶íæô…ÿXbwì…ÆOžIƒ9%$‘)p&ö¥Ñ L27ÁÇÒ+4l.mXýM9°ë슲¢-P.ìŠØc"€Mµ$žT“N®=B¦a¹ûè9nŒ$—Pw6ûY¾¥ƒKäÒÕÀ•UðtĆ…C/Š ]pä“RS ÷æá_Q×BYaO ó7ºú×Ïþø$6Š+[‡nG¨#êØÃá¾Ý{ÂýâQžXdåø·Å+¹’P P,ó’U(L«œ")Û"èIa3IjsÆYXEoÜBTæ +ØÎfûØ/󨨮;Ž3lÃ*¨1UOD[ëZS­qKDÔmkh$*(¨€û7Ü#516jTâ®Iô$‰u'®Q ( +F¶–†™a6v¥Ÿ™«ô퉞ÓØsdÎ;ïÜ÷æ®ï~ßßçn‹ç ­¬õa~&ê¿lœ¯Ðê¯ÝÊ°srÛ¼}wa™¾¼ª^g©ƒç?ßÄÙÅóÇŸnr¼úæä9˜ç/©@.?[¡Ë/5³‰GO$Ø;znÙy€ïŸ§Ð€÷¡“£á|ä!/¶jF®Tvôëù·I‘è$9-ƒ]@rÜ1sëÝÁ•;Ä–' +R­¦B_݈3—jŽŸ½âèìµu÷¡23ÛTVjª£Bß!Ãí=%n­ÙDÚúsfv>|㡲Ëųåóæ/içÓEc°öq@—Dz#-ƒÇ”ôŸ­C;ºÙI$¿µ,‘:9{Ä®^ωàûS <îÚ{˜š¬T®6•U¨_¨ù¿óçfÎÒïù9÷1ÓÁÉC¦Ò”êUz Þ¥k7º¸z]Hº‰=ZÝ["Åß°\t{-õ®«›÷g»÷SD N`×ÔI¼yó9s1‰ò×ߤíâ•ë^}íw2Ä‚7†M›‰IýX«ƒ£ÛœEË)q òŸCd«P¥ž"v$.-„nIT <2¼O&šÀ èÈ_ô@ŸtBÀÂó}ß ;V–W5™ð“9ßÞùÛNé+ªù “É,N)é™ }ÒT;G{)!ìd½]¬—ÄiÑŠ÷dÂݲã „ÜYË@ÿ`1a7oîàË——”‡GÏu’¶¸›[D~ ˆ!c2z3çÿZ¿gã|?8p$Ho5LVÜÙVPD§¼uç^Á'¨Z [ÿ×Ðp7÷–¨% Ï·ïÙ;¸DJSݾrtr¿œœ*<Ô·I%jÎÄt0Y["Eö¤ªA,ÿ%_ÈK æúF¥Îò—÷#Q” 4¤æüiH 5ûXýß: +‡æ\P¢%ydªÖ´eã%ŸÎÝ&ED•h‹4­) p¤5_8¸†OAŠQiŒ§®Hì]vÄàßÄë7ExÒ³­sf˵`ÙjV1mÖR 3Wéá!ù¢³C3ç?çç¨Í +c½V,.‡úøD8ê»aQNRo “d!ptѪõÀIbÊ]¹¢††q`ιö6OnºDqòEù§/$RÞ¡Ró ÙÂÍÞÕ‹»»G+ä„8­gR÷–ôOM"+-3§‰¦D}„‡Ár†>7")ˆûoßµÓðê[$øƒ_[£©Ì ¸:©ÙQͱ)×Ð?O5¬Û?`„@¸ Ñ,>iH8zPИ ™ +3x#+1<ó·ï=‡:y!)_­·Ò©Æí—šj^éÐe`à(øüÒõ[TØuð(_•:ožBñéç{¤.-H¬äbÒî¦÷˜-W¬ÛÄBøJAÁcì‰t÷°iyÅZzà$”^6Î×TÔ$¦¤ƒñK×nésêR_ÛÀ£³{RêðæÜÕd;©ÇÖÝû¨L+Yi¥ÖÒ˜£,×T>,ÒZþqæ²Ô{Ó¶=جJW©·<™¸šk9ð¼Ú¡sDÌ\Ì33·]@¨H‚GÈ¿â<( g`ùÝ©w;|[> ¨}çžm|º2–ÚXËã[ÃFù­¤¹Ö4~R¤›W@ª&ìÛ½Ï#´°)áü¥ŸŠHCƪÄëiØõâåk9kh‚s§þyö¢5Öví£O>œÏJKŒuxäëqÀyá†ÜÌù¿à÷üœŸU¤‰^°‡¹'Ge2òJ]EìºÍ‚íѪàjl3Áåà|—­Ù€“#lì÷g™beÜfœðÒµÉìºö‚y(·ëä·zÃ'YùÅ´%LF Å?é㢓¥«×3¤„í-ÛúŒ\¿•)Òñ‚Ó;83è™úÖs‡½‹˜ ]ñ†æõ”ó¡2Foæü_ë÷dÎÇèp ì»+Ñ×r‘8ä*cG¿ž¿ñé"]ìã €ÈCHwç¾#¼‡` .¶›;À_–†FZQ39-ƒÇ%«âlÄkFKHˆŒ@ pqDyañÊuÐrìÚ3•Ñw¢ƒæk>Ú"äiù‚7¬¢ ÔeçÒ2¯¸¼°ÌL¡“Öí;!E4ÉT¨ßà€áïŒc¦aÅ!G71ø·}G_8¿²±Šì #ÜÌ5 –¬$},Š]“[ :uþ2å}‡Q'0spe-ôÆÂY}ŠÅE„ºxµá%Óf¢ð¢³C3ç?çË4–B}-¯2×›êä6› + Ƶ0LU¡5gÊ”K×n´woš"x¡|Ÿdß…þÑ6‰€G‚6„os:v\Úâ•O¶Çóžc/–>é*IZAT£ âDüâLJÿ„BJ¹›%L^€:ÖJ+ª ¸zJ”³‡ÀxÞs­s·÷¦2Šàùí_‚¿/W¢XÊMéF(™q™0K0T5ð/ðHM¦'’Lƒ¼éÿö»ä>KŽRG6´ÿ4Îÿt×A>ÝÉ ×ôÕåUòCbJ&H¹pÅzâ7ùv–Ä­õ‚åqD4ÈÅê é,ùg/SDóauÌ‚0ñUÅÁaÞ²5v®ÞQó–ÊI.E³üËÃù…eú‚Òò½þØh…òªz™J£­¬ì×óõ|µN©3H¸ÌA`å†yO«bcƒÚTŸ§2XS€±î*›bï~øÛSlSnQYvzúìE^ÞmŒ¡ê!JCè?Âa؈nÝûDΘ‡nØ#TÄ«竦ºFl’Ç–oÞÍ¥ó¿Çf‹±ñK×ÓíœZÄmÙ‰t–‡¹JÝCG¼3¤×,“l䛪°e¨×=ŸpÅRÕ€?WTÖQG{!bÃL.`ÿ®½úò®ˆçP0tx'ßûïåÍþ ¶[Ÿþé÷e¸7ðò…KcÂnž­EÞïâÛ#`äX:Ô[êù÷›geîâº""f.c«àÏ¢®Ë™bJôjR¶ôƒ“PtÎèÄAG^ ÙwAÑÅújµ©îVVauc#x/+1ðw•¡†ñg·íýŠ>Oœ»ÄüY©®¢¶Wï~`Kì[xµ Ÿ>‹…Kfh*gæÒpÇžCLŒ0OË̇ òoÄ—¯¬­´æ‰ÓfÙ;ºãÆ|áЈâ½) 4sþÿþ÷TÎò 5„C%¤§ÐX€üìB-û¸bÝ&ä‡ÌÐÃ@ÿàþo£ÀåÓÑwrÔlÄ€<È°¨Nœ@'FÆÐJ©±ê1ðj䀀àI ¼A0C†êÐÉïßì—yP”GÆGa˜ñ>¶‚–1b•v³›Ä[FM,ƒÆT<AƒJ<Öc1j<¢«x⊚D#ž¨ñLbbð‘û`f`î`‘Ùß7½µiÕšª]·J¦º¦ºûëãíîçyßçÉ€–)ŒH¬ܧ?Cä­l +Úß× 3åYñ¢ÚÖH!jDÅÍGç[œ†ºæ¬ÂÊŒû¹d Aà.¿þæ Žé’Œ +MÁ¬î¯¼:uúìÚ†'Ùy%¦šD¾Zg!RtìŽÎ' œJ¿Ì”å«×[íM®=zA +Nøç¬#²Ž>1š‘œEè|þ©¿èèЪóŸOçëíÚº¡÷rÊõź]íãÈØOAÝÅ2 +õ(IùÆ aA=z5€À?þD° €ÇM‰¥)”3ÿÔ…Ó¾‘qOxN¨AOÇÎ=I…2ÿ!ÝAÎÌy‹ ̘‹ïQ‚€¬Ï40\f F…G2˜1Ø,1¦Gï~Dv‡†¯÷6s® ûÒÃvŽf' n£!#üe)Ögl¦“õñç!ýC9Øhkræ”VåªtB‰Ú\Ï¿ˆ8O-I{øvK=qÞÖˆçQÃP=÷Ï}¢ñ 5,VõôþhšåD§“þ4h(wÈ19K»ŽÝ¹" #¸ºq +q |å 4f»¥¡¥ãïúLšO¸É$ Û/ηUÛ¶&’yùmÛ—Êzf/\êåßiÿ—iŽ'Í£'ÏË<•'Î_-ÖËMÔÖÇ8VB€¹G èÖ{TD‰˜±¶‰òÑø©²6rogqµ©Îӯќ 7Ú¯X¿Uæ¡HN=nr4ç–iu5PSßýzŠJg%k+ÑZŒö'¨z +.óðµ`Y!.û‰“?ðÇ¿ @â“yKØè¡alT¦5GF“áÊÍöæ +­Êì0Ô4>šŠ›<@T.\»)'í9DóàW§HLÔ²?«ÌCùËÝ\R•R‰O“bfWêkvºÚfŽit8©ªÍ{‹JÿçŸ[uþÓ~¿]çãÆNžnÝW~ºnWmØPáHA…®ÂP7—&* ½[ödpâö½4K´¦EŸ¯çÇÎ^ÂÕ@üÿݼR¦,üyX=¬YZe¦jÐcÖ‚e_P¿t#®øúTŸšEFãÿàæ¦])ôÐçyª*¾f>(dG—B–‹|äa©æüõ›Äë#i © +Ÿæ&¬`çRék;‡téÕ¿Hc.ÖZôôÀb*¼?Ve% àk⎙»ÏÉ‹×9’¥¤C¹ÉO_ú{ðÞW&&qî|úù^.M ÀÎñÑqL„æXË:œ1ø“˜øŒ1fôgâäDI9‰ ]W¡–´êüÿÉïé:_kmÄé ¿¡5?Ò˜ÊuuH}Y[ß·‡ŒŠ<Öô9‹x¸°ð‰ùåÕ<Ÿ€.À#XyýÍ»ðܱŸ.¤ìvñÊ0E&÷'€ úã-cÀÕ›·Xôþ(pBôoرÐóæàá,E{ÐjÎß?g0ÚàYñý_Paà ]ŒØ„Î' ÄÂ;N=k>« ÎÊyÊ's*Ô¡ +Sƒºõ" r3³ +Bß\X®Ë+ÕD‹—¯¥ž~åGê)GÓ¬õ-Ä‹=‡±þöýG 'ð¤ø5+ÿ_Øv÷4§ú¿èèЪóŸOçWX›J Ž¢jJ¯@káŠp•##¢@Ì]yãV6®oõÆíȧ)Gy_ŠÀ?ˆÂ +`à P†™Bó‡Ì,>áT•º¯Ù¼ðàc?Ã'Ü>ëÀ2ü9Í_ÐîZ ÅÇB` b@¼à+ääµÄðÆ?³ð±îÊölÇx¡®©k¯~B÷{I’¹ÉÙš&vÎüÛŽ@?ûÒÏAX_D=dw8Hp2l”~í':ç-Y)bò¾]—ààþoh +*…j“©Þ™W®–Îß´ë ôüúÌe¨jiè<$,œžç¯S‡°¿íû¿”É7ìHàY…åËÿ±«;=‰qžÊuI{8Fb*Qøæ݇i® š3%õÄ9îjÖ‚Ï0Òátõ^6ϳ +²sÿ!*(>í»"¼¹¢Ûs¹É³WnÐ 8yV¦WsEvž·P¬µZ9×lÙãåß…×AW—¨¦Æ¹¹+LuUU¦à̃CB§ÎœÇRx9B@Ú™oeÞíÄ^Š n·²‘ôBžŸŒž×Zr˪ñÛ»÷eeÊÀ¡ïÑ̼ýÐÓ¯“Ô㮌ˆŠ‹5â¯ãQæ¸Ù±‘Ó¼¼ý1Ë?OŠNX²Êh²C“Ù±qÓNzÒÒ¯ZO0ïì¹+4=í¥À]qïASHOÈR|%ò‚·†ŒDÛ×6;³Š4•&ŽŒÎ/ÒX^¸CnÕùÿÁï·ë|äî‡ã£Á'"¿A×½s÷¼N’‚Lõóï¼qwˆ~4Ìúmɪ=•bJÆ ž¹‹weØ»C?@)%í=,t;°gúØI1m½Û1]H‹µë¶H‹´õ…øó×BBÇLœÆŽ81Êå3Q&È$Y›62/¿[wrX–aŽ›âíÀv,ËR¬’F²”—ߦ-»`Öâx Lˆüî}€NŠª¯pš~qvÜ =Œ<ôMzÅáoÎ + ßgÜWøa;² a©/ˆŒµwïça!|ÇBûrŠ? „×™wr¤a°ÞÝgHؘi±³C¾‹7À-O˜6S®·áªý; +´êüÿþïé:wQatPU–ÆjkjÉ÷óíÒ;?ÅБcc¦Çñyq@º'¬ vð¿óÞH`Ïoš"!˜Â[oM>$ÁÃ… ”›_À._ãá$(¸q;ÄiŸ}±¦˜²lå:d Ä)ÑŸ/<|‡Š@*Lš>ÇGÙD »HÍW)î£XÜ݇„ý„ɱ@êa[DÔ /?lÀr²zzõ Ÿ£6Ôbæ'¬t÷ ôTÖ¬ÝLˆ!ˆœ8wE”|?¯ŒaL¼D¸tÑ!‰üÌ,ÎÅýŒå­„8Âx +÷ð¢£C«Î>¯®iÎVò5f}½Õ§r¹Ð£â€ÜÃürá)$§¼8ºÿ¼;Ø à™ùtáÛïòenÞT²sŠ` +nu +ΓST!\/’Ø{/?!Ï2o? €J1ñ hÞ/P!ãYœñ÷òËNž¾(P'k+Á;+§ì=(® Ÿ+r ‘nìn½C>IÝÅ–ºH'¶è÷û·éÄTü¶°S¢ž›ÜÓ¯CúÅë"?MXµ^8sú–®®G6F¾l:÷X¤$΂ +^Ohr´ä“ék«mŽ§¸pzpþ fJQU-Ó)¬SZ]£¯k.Ó!!jð·8C|]µ¥žŠ­ÁY¡³‘ ŠIÌ¿J_Wek*©²Q©{"e +yå>!žYŠ&»ü“ý:÷‘í¨ÂnY±˜‰ˆ˜˜ÿ€”€„Ä" 3) ‰S C¤ ¶Ÿí÷æÍÖËô¾Ý^n/·—é¹üny?ƒíÀÉÓ*•N×=·êÔ­s¾ï+íôª« ÏEO0b`3„*<!e7tÔ =i?˜ïìè׿ûƒÄ`Û—Æáïÿü—;‚œáfÄ£ñê`œ³wß>©Ø»×Ÿ•Ûñ¦‘/ÂÉ&§ùõ‚é€ü¨ó?Áï³ëüæhùã_¼"‚ŽÉŒ·Û³ëÚ(k¦ëÎ\¥¯*ƒY¹?mM7çíÑx›÷—7ÝÅ®—íß+·ôÉúàéewR/G×÷ ïòñWoªj2×ó4^ê¥q¹3ãõÞ]4‡aœ7ƒ ϯdã~VsŒƒw:ó&þw."1è”áÒEg’¬ïŒ¼}^×{ìõz² ìÍ xCçdƒÀ™­çyRíš¾é!ÛI} ·Vw±7¨/÷mVM—Ýú ÆwdLbB†-XH3!¬ØŸlîƒP :×¾0ÜfŸÖú:ÿsü½X烸h­ñšÒë¥Û|qŽÃå­³c¤×¹#–6ñ7²Ë &Ù͇uT4nzP5à'#Én!*..ðÿ¼1´{º-øXqâÀ ˜¢1\jìõ}1Õû—­mž—Ú“ã #>H À# Ø^ëÏ>(Yç+I¿åÁ´™lŒ-T{Sñ‰à=-örU$ƒÍl­F²`

æ‘Ÿ1•,½lI³½Dõ×+þr ‚ø-µÇ’Ü£Hoå™Ý欎V >° И÷•öhÉàV?Æc30ÌlžXB`AF‚׋_½XTðÆÅ&Ú¨#ˆÑþU?ÚT–ÂTAjŠ¨Sb…è2 (¯TîQê4jÙNƒY@%694X2,mûÆ5ŠNÀÕ¢ð³÷èû²9Àà¾äý㋣ó£Ht +߇ © ¾|Üóú`˜-©kàÆÇ#Í+YÎåN +¾`š÷Í;E’ïÒÕm£?%ï‡óí`ºa´Æ…zŸï%C +â¤åYb¹‡‡åN!ža]ÜââçîÄoo:s²ð³Ü]º¿íòõ]ä±Éó»§%»Xr¢Ý_·]ÁÈŠ7ÿúÕ÷Ç?ý%$½Gßûþ@f›µP€¶©ô¨Áˆ]õÆÁ#o5’áim “‹Ï5*ID¨/uþ'ø}v/¥ô³_}éËߨ¦•Î +n'Ë õ÷+m²™P'ø¯†‹ù®1(öw/¾F·ÓóÜÆ«[þ n.¹/xDáÏns#î*匜>†¡²&/<* +~†ÜnÃÍý['•PõWÃ,Ý›gnN¶‘Bx;ýùîßO/A¢u)m@×9¦ÙLÍfrãF<‚œ0ôô´9Ä´½ Í@Ò3|%4åô@wˆŸ§Õ½hB,Do;Fžœ×Mn-Æp¿¨ÊLeû¼êΧ†ÃàÚ£Gÿyý^¬ó5¸AéuÆ›h2§Gn8k'+mœ©Ss¡sÖqƒ“®¡ +ˆÛ#à£àqP¿£•#ž!ïévº7(‰ª¯ +m)¯^óÊÓrÑxÑ´¥v_ é¦€µã npy›ã/´åi@:@–´'Ë"·kM}*‘ 2ÔKÔWµ—µ §S¯£Äw +lbݸJà|Q¤¥VxÔ]¶fƒ6KŸè¯úSÜgw”¿mº­ð±)Û׿lvxÔùŸN烠Öl÷(aè +Ûé^ÿÉ×^û| («õSÚr²¾%ø¥u­(`š¤’ZÒ/²Ž ‘ÜŸNýå ”VkÆ9èƒ TÃx‚ñp á¬rã …yDÚM qÜÚ“¹„ ¥Áxl!X†ûK»bŠóö˜µÏ¨éF]‡xV#JOùÇF,ÎR³µ?ÙìâŠ!r ˆ`>À ›Ê:«õ‹*³t} ¯ÅE‘†ÀSb­Ñˆ`Óˆ:3›M$ñÅÞ»¸XÜä§u5_@xáB–†ä=–¡‡ÙιønqùBéüd~Ó®úÓ]­7Ìö•vš‘ýýE3YjÆ7wùduRîäé•Þâ`Š—ÎïÏ÷×—w.…TîNæ×÷Ë}^j ºãe?]×G¯èkÃu+ÝUË”®žlËûÙM~Ñž&«Ü#ƒ¥îœ œÁ)Pu¬ þ䬮]4ž–ZçŽÛS.à¿ÜCt8¾°/!éņþüæß^yõµ¢}å›úoç»Ü”*¶¶PjOVw2k±)¬~¡1‚Ì&çƒLh8[ñ¸ë—É:ÿý>»Îž¯ÿô—¯¼úÕts-÷gµ.ˆ D“Í}y0ï,öO¡Ó‘Ï;“5û¼5Ûjã]ÞÍnNIu˜]ö¦pé:çæ­«ÑÒHô%‹:į8{—Ï`}ǺÂXaPí.îòîbÖ¼Ð2?«õ¶à§·ym¼¹èÎʃìysÜ_Ý·ç7l„tÞ™ö–wZgq[®\"€¤ÝÁ:HŸa·6fŒ T¢±éÖ„ñn%Yš6ÙälÓ|wœÙÒ§­Isº+õ ú†Á€"dؑȧÐXiæöÂÁîÜMŠËÈhAÛW»ãñê¦ÔJ|äà”Gÿyý^¬ó¡\4XÚK·m•ç8ÎQÊRªÀ o»EZúTÈÁÅð9a}—d1¿½JVýì®ÒÏØÏë£užÃ,àæøÎy‹ÏpS  ràÌq0,}Ù™•{‹Æøz²-¸ƒñq|ArS m)”,èð ¢(ÝPòS)‰ßíU´â”‡ú òÎÑ!võ6Ÿˆv$¢Wld2æû‚M0ˆÅf#HÍ~ßzv5Ýçv'Tƒ£Mn/öe³zƒ/›uþ§Öù Ñ— (“l3™ü _Û- ÜêðÓ ãMñý§{èD'/¹yÈcçÕŸm«ÝÉp¾¥íËÍ>cœíÙ` Âkd|೫NhûVš™*À¿9Y)ôÿ|ÝïL¨×Ç Ý´>HÙtCuwÀë<¯J­$.÷@ÌN·…€/Àj´ÂPÂ#õ¯w9eSïÏW÷>ÒeÕKSaS5äz’Ý6GžàÚ /†æo G…6gp^ s$üûe®,9R…áŽÁÀ`‚À—§ÀÅÁÀÁŒqp0x#\\ž„ˆºïV«T¥}ßKRíUɧ:=7nWÝ]ÐÕ—‰.EFF*3%¥¤sþÿKžHÏ‹ ò•ó?áøï9i²’&Nk(ÑF±Ãj ”‚â02:œ-줖qåü/u<Ïù×5â®`µèÿØuù²•#ù›Þb+>ÈO‡è$hóëÇ^´ å¢ÿñ²£\,`êy4 ù[McÔη+=¹ÀJ rê3¥ŸKèÄ,¸ üo\‚•0aä$Ôœöùýl0ˆ|¥âÍd;ÛùÖÏ +Yë'i®$«=½ËN€9ÒóÎ+#awRþF@ãtšÐ_n§FTH?˻ݻ°6– #½Õ,;ß°[áôÞˆx!|øÚiw¸rþyœÆR„0‰sè6™¤ú™5c+Ä&4d ×€?‰1² –_uäzh8H4BàÜŠH“˜¤À«œ2“ÈLÖê6ç’GÀ>…h·Fé§1´m´”[™Yw×rs + q›™3ñsæð `­¾5bw­&AzóFt¢ó@>fD›"OÍã†Á³¸kô‘]Æ¿¦:kæþ@5‰ßÝüdèvÜ&Nêñ^è|'&Mç]h x?µ3aQ˜ß kàŸNø4ïAS† ¾ïÈ»ÈÖƒZÄG‰5à,'åÉ»Åpÿ´ÊòùA<üÚ8½½héÓTêF-ás +t-= ÑÉ +‘Pq¥Â!yúiGõAç®#˜ÿ(<~D¸.v3¿ÀðN“Ò(ðN‡FØ™H²¾×Âz§¼l;÷Ù#lìxE' ŠŸï­6Äa­»„âñÒß¿`CÄã÷áÔÝGηýßÿÊùâü>ýé+¢Ÿ^0ô³ŠF¼9¥Uìl«‡K+Û™ÑÚÍö3$Þ›év¯íò0 ÛqØN¢Þç¢ç¨7îÕGt›6@NÍ+„‹ +|«¹Ä‚ŒS£Ï°ýÃ<`Ò¦FŸu¿8÷}Ï-b?îRt[¼éÒ<åüç9ÿ©V ìIyª!ŸRìN‚ž)n¾µ’ÕÔ-“Vq: `¥yÍUbÜb¯Pµìs¥A-^&c â#+ÁAðð©›ã'£¦‡~,Ò§“¹Ô€wÔ¾ãp)@äf„…—·I³ƒÜ0Ù\t%yúq:³xqP¿rþYÇ9œoÛáZ‹Öýƒ™#ÎâÅ„.E@Fí¨õ„`ŒñRúIM‚HÊ€¾0?ÉBÏÙJÁuv1°=ü,¹ùÞ’õcÁk0ŒbAMûÕ¥¿C_ó!|Ò6Zlîu'®·¼Èã¾ãÊù—æ|’‚Ô`5ÄN›¡–µq*£ÒOC®æéRq9öŸ»r¶·âšÚ Gp¢¤¡¶ŸØIÎ~6iFЕRLHjØM—°×œ2kzn†­4ay(VjbŒÒžy‹KÏ•5üM+Ã’ªƒBgèœú½Ï½rþO‹óý¥úµ™ï¼Z írê7a¥Ffç’œjAË`à”N­¬êØ÷Ü‘W­òu3ŒlM¡MŠ=«‰C)7_AûP=§¤ÒÐŒØP3ÆœÞit^Z‡EB'~ƒ$kEdÞ!í+ç©ãe8_÷~ –w@í;ÙÆ+¶áâ“Ÿðƒ.Âö€ +§ UG…áÐhdÐNXŽ€äk…#p7L°—SÌ…!<…€_÷Ë>|0S²Ï«fº¤9¦ëÎ\€ü•R@>¨?òÛ©µØ)îÊù_'çOÃÔ—Ê)7zÈÞ0ªœ¢ ›+ Š­F {9qr3±_J?Q²CÈœôñ;2‹ÑsïÏKá >xüV÷Èʉß÷Á§œoæð~,°›;»3“J©ä|3*)$/µ,ª{Ý/¾6ο¼t´Ïˆ"nàí Ú‚my9ýzˆ.üÚrQWl¿‰ ¹œÆ¹ëðë=^æÐHšZ ÞOᜥ¢‡í½|…Ó æ£fXGÕÞÈ·3¯Lê#m7]ÍýŠQ8_sr¾*ýœ^ú{v?.z÷”±b^¬ícß¿k_9ÿçüs¹Ì8«=ï/Ïë’Wl n+á§wªNÏîÿ!áÇÞSUƒ~Õ{ʸcûîÎâ ~¹a25Áƒ)p9§'ÈG÷LàB.g¸Âhßz{ÅJX CNƒjÇÖ€]là¤uP®47øi€pl2®œÿur¾™ïæéfâU~Øt;Á‘ Ñ3ûM¨Î‡+È ‘å+õRúIvùˆù,(‘z&ö SÏ*¤Ä%ù4Ba[ñŸD-œß-)[â>C'esÁÖƒí†Pñ‹7k ü™Ÿyy ä¿Íy£j§®œÿ¹ËóúOø{È/â çóÍQZ‰ eˆˆeHÄœÚÝO9m +FV@b ¢œ»ÍÍâzIå†ÚŒð<¶þfd’•Ð>ÌãÄõžBCw ¾X{PÔÂüP=ÅÏ7`?£Ã¹Ÿ/Ì2zéïÉã­Q¼ àÇŒ†fŒC}ìûwí+çÿÿsþ,_£Ú©özÜÎã%Iz?‹Ìxi%«©[µ9Ž•jQã¶ÊiŽÐ¥;#¤Îw +Èá-öÄÌ‚l¢–lÂ&N‚àx/ˆŒí˜S7ǹò/àS<‘t¦![Œ;]g—qåü/u¼ çê¨VTü’ ìFÒ~=˜£lž(?±A¡#êXýLPŒÇ¸AzžEMTÞc;b|B á2·úÀzü²¾Ÿc;…óYÛÄÉÊ­š‡c +$<Ì\3 áüw„åü¯’óõx.;žú ;ß@ûvº6¢–!¦ !€>tÁfÐN.®W}ú)Û^Qø›©CͨuþýÉÝOÉ)Rn¿x +>·áa-¬˜C}3s™oëK‡Þä$/µ,à| +ïòv2»rþç-ï©â“žþÓŸÿúêç¿‚½Ãj{¯{ô`1s" +¯¶FXQHN)P7£ÕVùÅú7¿ýý«o~Ñ¥Ò™ëáZGÍmï4÷õÃì—ßýš[± ê¿ýýc+ÆåYæ¡Y«ô`dÄä/mx>©€ýØLÒF1“Ô¾¸`?…ÑKO¬¼õÍ·ßÿð,y!µù¡ý—\9ÿ§Åù­Y­refíÈM÷‡?þìÛ³_&°Q\g|bc¯¹!•Ci  ¤(å(ár1‡LL8 Ä\!¡¥•ÚªRÕ´H­8”CC¸MÜ€ ”8’Ò ÛØÞµ×{ygwgï]{}éoöQzÐMkcEìêéiöÝoæûþßïëG6ŠËÔ˜]vŠœ~W«Znq^3ɱö½TYŸ5PJÌeǾ߻"ê•Z W@±©ùTJ“J‹éï!ƒpÀ´”l¶Î×g"Ô£c'ázœÄߦ’k@n"lÅ9ÿ¾ü:—óÿ•„ÿQCvo+*Š®ÚÜõZµEJÔmüÙ¯àvb1f€) +°Ç81W„û§kþ’ F䪣ÇO“Òz8t¤UçgqcÕÞéٹɺ„ ”œvZbé$)rŠ‚ú~¥ÑñþÅ«RZŸ”¬þRB¥¸ôT•±Zð’†XÝqÎð8ßj–£(¨4äQËëo¢=ùéDdB³ jЄÀÞºJ?ñ”J£Œ³L³0I7ÀlÇ­p¢Ž®Ÿ·jC·}k, +¾ŒÇ±¬[móˆÞ»i¿Öîs›Œ²£I8k¾iñµ<î’b÷5ù›â´T›ä ·p†nÅ9ÿË-±8t©µ(ùë6!È&‘ï [p¸ÁFâ¹²ÞN/]´˜œ^æΘûLZ¾ÿþ—âiV™Î²d (öã§{÷œOïo=pèmüe÷Á’ªº:q ¢ƒÞâïAz¢Ò+»¥f}­hßQ“#@l¢TèõÛ +÷gôrôÄV¥™1ý>À UY¶vOoóÖZ•:ûäqÎÿ*q>ôn ·×8ýzÙgTBOLž…MbüX>6yÓäDÌM¾f“/|ÝìPn©±ö9nêÉó—¬vŸ¥Ñ[Rz/ûMáíÓ;ƒPS- ân¢êý“—¶°K2yA²î©ì\o‹J»ÕÓ|8ŸóL™½ 9µ'a¨Î®E"Ì»ªÁçüûõëί³ùU‚‘Ù†öíÞˆ¿Eí–”57o%PŸ`{Â>…‰ü0ƒè-[ûCÌ;ógæäñ SUevKD–ý²¿‘'šŒ™ð½4‚ýŒ!”ÄÒI8ŸºÖ*£¨Õf{XU‡?6þÔÙ¿Ül°ûƒ­…E{AýÃÇN–ëÍ Æ9ÿÁä|“·Uï]¯s8Âí JD©å†ÆѦ'§öB½1 ¨¦ÆìÂÞp"[”»D?qº Þ1§ã< WêèúùëÄt-AýQt›½Ð]ôÞÍùzÙïln¯4»@âÇ ^I™0¿©óßCÌb‡ýø,¨óÛ#'o[Ñ~"ÓI+:û¾‰½à:9ÐFT:^voÚsäqο_¿NæüECn"fTáÁv!þ|zd Kì)Ø­3t Cå»#q$r‡è1D±X”™éMªÊtD®Ø}°IGŠpô™»ÐÅŽŽ@Ûè3vÈŽv X–g¶Æ‰ð>\¸9{Áâ~p[¡8ÖŒsþƒÉùµrÐâo‡ r¨Öîkå@;E006öö©³RªnóöBàÂ({»J?1]Ñ‹I×X‡úÖÏÎ]Ú½×@½Õ-‡Uµ¢Þ~w¾ðÏœ/¢»ãD"Ä°5Çèì÷«pl|öÀÑã)Yý½m§nç]]*×ßMâœßœä¢ð‹ò×%&ë|ZPce˜-Q ¼ápbÁ›ïœa˜]×èÑIWMî8WPàvj +KQG +…¥Àûœ¼•¿>’ì1§—ÈíÈ/°ó#Ý3Þ9ó!Ït‰zËÎ7Rº÷úãùKd žfµ³ß'bB6Š//_· ŸÂƒ¨±Ø8çÿ§ßWó|[¨åz½Õä Ù‘ +£ÍæÁðÆñ÷ÎK‰i¿+.±"U‡É6zb®#Ð¥ÒhWPÚùK +x Õ…—@}CÂràl 7d íì <0ñ>Ü—ˆ€ð¡8 g>\z:C7`KáÞXããœÿeÿº†óp´ý¬69‘z˜œ‡îé}0TöX…1*ï؆à„;r‡ôa´È 6Ì +hµEQXäø{¦}{Ñ~¢º í#È7öBŸ‰/±Îɦ˜¢#ØÄš¸ ›â6- 9Vw('/¿Ïàa®PñˆMãœÿ`r~ƒ§åZ½C‰¨°ÓM«Ûh«µzŒŽ ¶Š„‚.ÇÞ='¥d¾ºç¦‚åt•~ÿ8½7ê8#±ê{àí%¤„4~½ÍÆ‚7¾€óÅIí³#gÝ%´ãC”œ,ãÐ>îÌ›¹ÚÎGo)y+Ÿ?mäŒNj%1#wùZ¸MC?‘µ³_•’23úÑ›¬°µp/©+ KYºz㸩³Rˆé‹Wm@ZolþV5gÑòGnjכf‡ß¦„\V©[Ú²‚L²–Uë7ñ×â X]AƒÅ•¿f£””AKrFßÜ¥vOíSfÎ¥E+É™”ÁÃF=¬ÀsUÁ³ˆŸ\«¹}rJ÷^/ï>ÈÉÑa¹péꇆŽº\Y/¥öÀu!Ôô ¸ $Ïù¹ËØI3úù7i™`xG#Q£A{u Þ ŽÌö%”pM­1%ë­e `Vþàâ†Ý>LJÖ®GÙ‹ñ›·ÑBF@ÖÀÊ æoþºM"§ ü|óvZ.^©b)BR­Eá‹­^ÝS¬­}׮׊‰"!]øki’u\“ë³s¹`œóïók,Š¿M}ikaBÔæ)cŸœ‰^¡ZJ“:ïÙçn¿ðhÂuGB­XÿíI3D"¦•ô>«7þ´Ê(ó°R>%n¥Ùaô;.)xÑM<ùÐØÀþ·ND?qª”Üý»³³ NwƒË»bí‹R·T§¿yÊÌl¤„T)M'¥göþHîsk¤ÔtPEEZø_üv§=^vA@‘YK¦g÷<Á: Òso‹jˆáÄï}Ÿu¸…XGÐ>თðñgÕÚ©ÒzSûÖwXðjµ‰ BA[_Û'ÜúÉYóÄvÙ‹òGŒÏ +õ²ŸEØ‘Þ¥k~ 8*oÕÒ}Ü4:k×Ájþ³+ab┧s¤d'MJL§ô4tñªõRR‡O ãa`Wq)Îu'á¥Ý¢z‹ðÆ9ÿ^ã|¾È á£>½Q«}¦TõkûŽÈþ æï¼Å+œÁVÂ+ù)lðéu½Ô­ÇòrÑ%xËØ賺ÂvOdçëÅ4¦d >w‘£Ë]¾šYî¦[¬°tõ |}m£´žìKª‹°¬Öž˜Ž=8-Ï,_Ch ²Œ›Ã—cöuωû§ÌùÎœ÷ûÞþ¾÷þîskÕkܨ¹/’‹÷!•D@»rò8ºM™ƒ«"þ`@eÎWØVêßop‹O:à ¨.çSÃù&ççÂx†²\¥I?q5ôN˜Žå ¥‚GÚÍ•§Ž‡ƒ“k“Ví_¾ó6"‰fFDùù÷„QxG„—fˆ0Í2ï=z‹R‹ÄäãôB–ÑOæú㻳'1ˆïÔOgwï6ðÄÑ“gàDØíØ©aT¡ÌÌÂJøÿ))…¡Žœ¾Ìì×{úVç[wü!#K$G䧄Î!îˆúéḒ+¾),•%mÚ±)N˼ËQ`*/‹ôè°zŸԞф@0fêw-?ízï-§9{nÝu ÀÞ…y LJcN€ó$ ü¹Ùê + û?â/[ãTÉq‚e +ÿþA¬¼÷ ¡œ‰+èêûùß…“ü 8d…GO«FSçË™w-Åo=Í1FD­B ÿäãuê{G.‰HÌÖ×+b⸗ÄÇ°aÌ2-#Ó`ª8wá嘸DôV + ÿÞׯû+‰ÒPòFk©ÌËk9Ö›>{!‘4§@5|ÜTÇÚnúb”_67rÉÊõR¹ž…'MãEE ]2ÎfÖvr‹O’* …Á\n;9=§#j¼çð)fŒ^³ÉZb+iw%‡" &t˜åM +'þÍ_Ÿ°ø5붠ó°:ò\Ðì’‡ØÁc¶µzãË%µŒŒþ3ªN-Ê¿eç~g—†ŽDž4#åqñôJM»H™q(DÖÇnWi¬:Rƒ]™:)å$ݯÿú¤¶³'Øÿ² ˆÆg¯Þ:l¼—OGa‚‹_¾ƒGz˜—CºAåmÛ•Ìu$íMUéJî?|΀u\Ÿ7æÈç®ý‹/_§ÖëÌ•«ÖofòŸ‰ä5œÿ~œ¯)~½1ÃÞ±ÿ¨´P‡åL +›¿~Û.äqȨI«7%i¬ +•ùÒ•;œöѱt!/=efµ/¸^¹z?Ú‡9º‘¾ËmÏÅ +˜Á’h¹R,Õ-[+À†=[ttKIMÓ-¹Ùð)Óâ“S²ÄR8ß³~“B)O¦J?}¡ÑGÍ~\¿Ia²ÊLÖ—2I +µDÁò>#±ß³%èR,p»]ë6ø~E ú&Ð8»õ¥Z3mf‡Gb]Cç=+„l…^9…:ªÒ/ßfUkcâžàùúÒþÁ£½ÚtâdžçË×Å%º4j¾ac¼ÆR…×Ϙ·8fëÏô ôéÔýy¾Rm}Í’µj»ó‘õБóqòôªíÑ4;_)©Î5ðµy‹WÔq©Ÿ-Q€pÉ©'êx$$î3W!Ñé—×-;÷Ò Æ#–uíèÓ®ó±Bn©’iÚb€_PÝίß_ãüI¡áxktV Ñ_xut½(Šû:ñ:€»í•T%’ëÎ^½À/[Ãaé åûwptOÜwT¢0e‹•ÇÒ/S»=~¯¨PÿèqŽƒs}'—Faóÿ ZC/!sF®Xk´VZŠ«RÓΦWÄl&~Q Ø8Õõ¤L.0kÁS™sôDF“¦­6oÙ¡1”ê¬Ux‚ŽOr !ðùQ²"½RW2öÛY‡Nž—~ª %Yy2ÂÎùŽ®Ø퉳W<x1²ŒÔã¦Ínß¡ó‚ú„€ØM YyEÌÛ+`(:¯Ç§dÚÉ3fÃùÌb÷AG×ø=‡ˆBX¡™ï§]‘bu© ÈÏQÑáwq¾PFü å¥Ú2ñÛY¥G,]×´‹7)Ï]¼RWjc=“g.°×:y\»ñ[I™íȱ3t\'¤Bÿ5þRe(· ‰t{ö)TÕ†²Q“Ã~Ú¬2—_ºr‹Å'ìM1˜ÊhI:ð¡q>]¨±„Ì"«ªwêÜUÈùÑ 1 =0h¤W«öEZ+ +Ùºýç]zö¹5æ + +-};wîÞ[e,£Á¨oBè{æÒÍ¢"©Ê½jüq[jy%tkä­µ”Ã*ùrm‘ÖŒÙ|3mfNBª2Ì‹\Ê+ydj£¨PýJ"—(t4nÑ®cϾ_цï¯ß¥YBR2ã(ôÖ"Ù¸)d©õDT¨mÒÂ7hÄvÁä/ó_ jæÓyéÆO‰Ô?xšSòÚÆ +ág céšM¦ +j”#×]z ¬nIt,ß³%µMHð”çâ"ÒXŽnoêI¬Å½I b™ÝÞ.ß¾/pHó¶ú Æ©*ô%<œOY!¹®¸M‡®Ô* ¥y2Ͳձ¶&~ܦcæí2©Íê Û¨âY9]hÉ‹v~œ6±ŒÍrAGNgGßÍ_L-qÙ½qó/ {çÀéËŒ ËfÙr ç¿ç£6hZŠ& -OóŠÐ7 á¢ÆR`æñ+‰ïg=¾~š+ÅH¦ÍŽÀ$Ò.^ו¼þý…H_ú&pظ†Þ>ÂbÜ&ö‰ap•¾~Ý{õR 4RûIç*—øB¦*Æ[%r™Þ +Æ€4Ü5Æ@³+·îciãw+-årSéc‘¬mÿn_TšÊXRÌÔQ«0TLR‚ˆHíöéä¶pi4Ëã#ÛÉ.Pó8Pc^{Æø=¼||=æþ3‚©4Wr(yßÀaŒoïh,½r‡äºs*_:të€Vàì³^uèâß; H®³X*l(â¿T㎰aCY¡©¢†óÿ¿ß_ã|{Üwv»}ÿ1×ñðA¿JÎ{rî{·÷.ÿûû=·š|:~Š÷ a%Õõ1î>xØüÔn@ä ¿]é'1OQi•zɪHG™ ΦgÿÁ|0ƹØo~7æ‹YA`ðxÿ™Ä9™ˆ<ÒÝ9çè„£|}Þâ0Î;G‰ß}Ô¨±~d*ëí—‘T¹u/ž(Я¾ÍV^ÿËdéÜÞ6xý+Ž åÈK韑ŸOÏ»õYµ~+¯ €‰§ðŠ‰L›½€ÒSç/ã¶a%¬‰TæMiWþË'XOjaØJòiÂXC|™þÿýŸŸÉ÷—®±àX¹ºó>òFq~K‡ Ìøs(d’$$ÖlÜéÒ»FfÞͬ‡"Ùþ„cp# R¤¨C'wH‰]¾WHý%«Ö¡“&"ÉCó¥_¯§4¿X Òà ý Ef‘blÚÔö¼§ØÎ'‡¯Î_Ì+! +ØíXCësÔÕHú³©3>øȇúˆ|Ú™sŽN²}ñIÔ¤ª!àNnžt˜“_"uóZ·%ŠÏ™Ú^âÈ5´ÌîäÊÝÀùÁ2~MYu-nÒðäù[†‡G)UF«ÍÐò¢HY?õË I“Z­v¶/®ªÓ°‰Z3ÿp>qU¥5lÄÕ¡ã']ݽRNŸÓÌjÌ­Ò“Ž¦õî3àô…+DÀÃw¿Ùs± å5º­ikÔAVƒÛc³¯LgÈGéÚm°?)õ4^Ã%‹¢ÌAAZ1yi5ëIšüM;÷ëÍV¦¦P¡%6r¦ÌÅ@¯ß¹Ãí`íæÝX'ÞÄ'Ø£¨˜ÃT(®T+TênÎ=ÎÿñnžÈ©wĦÝà.RFH\¡nâ)ë H +úÃÐÐÒ!’H.¡² tzB1ƒ^¡¨ËVopõÀ!âà°§…e5ð'Ž½ãîÆý”=½'/c¿6lÛKZÛòL^QQ¥7iÀ˜KÈÊH±Äúì/÷;w¾qGÓ*µMC•Á²n×>‘“GvA ÊvüÔY>‘ýã°óó“gˆá¸)3|ÆúYZŸÕ'ƒ/©ÑÛmü—© V›ÍÐú’y øŠ× áöÛ®Øퟗ®æ—ÕR×ðÈMh&mé“žÝdÞvD§ßÊæ[ܪ´öÓ’³”bOp¾×;Cù:‹Àô¹ïô”¸‚÷Ì…~æþe©ÄÁ¹~¤¨¤!Ãæà£xS•Æ€ œü×EÒ1‰ÇP­‘{nëÎ}qäÜÉÍ/RÔÄ'§Š{ÝÊ+ĶLcõ•ÿ/×ÝœÿŠ¿Wã|a³WÔš­ˆ3hÝÓÙ#.)¥¢–¶Bæ£ÇŽòÁ(¶Õ~¸ \¸Ñ‹°×5˜¶í‰%Ôï–Ò$¶ï#Ñ)Úõ–v›DêŽ_ ê0<[€˜­/@,àýé’áÜi¾ºâo¤{¢%=ã.é„£'ˆ%:a.s’Cš±1˜5· ƒ..žvæÿE *zìïߣ®œSÁi‚€CY“&Oך,€8gq°†nÎïæüÿå|©“ÌòÜvž»rC,u9œz²\¥-­Ñ #g¹CaNèW,uCŠ‘Aà.rJÛë™HDnÙMeZa(høÆ]ûEŽ²Ì‡E1ßÎ[gê™sT@ÒËUš®ô“˜–*ÝœE!äT×7â;›vF÷pé2Ã3®Þ¤«³—¯3*›£bkÉIôñ¸uo,EöæbgÎϺm{¨™[XFñß~'’¸gäÈaæ’ºFBE×úAîŠóg/ +%ý°DÙØiF—32™Tlò 4¯¸’'þiÖ á2_bTfeÀr|‡C±q‡Ç[ƒ¹€t忬äÍœ|‘s/–‹ñsTù +ãÇ€XInUØPTìF¢kîÀþÞ4ÎGÐ`ÎiAî^Á (QàL`ÎÊ+zð¨‚ÄÎ} °(EÂ|r™wï?YýgÎëéÜ…]PˆÚÞVê~íV—ˆ Åa#F)¯R×,zcKµº°™·(„„®éÉâÐp‚°©¹½ÁÔÚòÔö‰¯¯T@“ÅN2ÿ³•*]ÆpËèáx(9•&j½‰ÊÓç‘ÃëõŸï‹=¸w4>é@º?CŠŽKfxàB¶r-iÄœ"H¸FßüöÐß.­ÖYj»Rcôñ›ú‘ïÂF^®Ø[_*ëM +u“ÊбK OÌ‘‘Ô»!¡ÈI!~$¸‹LN7™·ïÉAú½±Ið9_d¡L\Ò ‘ÄíÇÛ¹¬szF÷©‹é7YawomÕÚ-!ák‹öÎБÂu‰‰Ðœ‡%YÞˆ Û)Â+铉0£¯rWzAi§^8ûÂÊ ‹pðpŠ°;8Z7ç¿ç*ÔPî¾Ä”†– ±Öò¬JgaÑ8A×ï'MC¦Ð"áñ›@&Á0eæ\—>@ôŠð@7ï:À^ÜÊÎΧã&s4ȱ?b×}?c¿nçðšvæ[\Rg¨5¶•iì±WojŸ$¹j m}ËÙ‹?‰$²ý ÇÛlŒ‡šW3óÐí]1‰ˆ¡ßä÷FŒ&qF‚kà)PÊç3¾Ê/­"z)BååJb[cDîø—WÔÑó‚ö›¬¶Ù̺ï»ïùYevìwpgF¿ÎTÀ{”™ï¦ž9/¸Xs‡OÐ?ÒŠDûð“ŠZŠxErEWD^¨iW~GÍú´¾´1ÎÊ:ýòˆõ‚Þ—®á>NI©ßAz8 nu3ëHêz$å$È7~Êô¾CFb²pƒÕö¨ZGºÎüáíæü×ý½ç/B±¥®ì[Zܽ/gï’Oœb³È„Ì}þ8ѳÿ`.h÷ KíÈL뛕µ F롤4GW¯;Yùyòr®l+VC)O­Æ¨¨Ö‰DÎp>m!c‚€Ý:·>ý?öõSéMp¾À` uu2?¦€¿œÿáÁ›xÌÜÚÁ+™3fÍ—ºôÂ&îææSMâì!uó⬡™Â1ŒI<Žc#Fû"³ˆsPðríÅ‘Ó1ã>ï?ÞÀ8ûÜd1¬¡›óßPÎo°Ôš­ +¹º±åÎ7Xæ/% ë-V…Záê QOÇý‰Gµfèâ º‡8#}(ÊLbÖÂT”4úŒNòlÙsUb)H ç€†HèÃÇENÙ%uL˜h×a÷/ƒ‚©Ó•~r:8DüÛ¯º®òRåés?Ѐ¡ç¥<ß~æé„AÛQõ_u~ÉêõvÅ^FçôSQ«Í-(&½'.ÉüÔ]åS\­Ó˜ÚëšÚ°àOéŠóçÿu93úÄsä¥9qúqe“"«ò4ŒUÂ2„®€©`uÆ)Ü>Â#7QÿÞ£ò®ü—šé·²á|–‹O ™þñ¾Sç/S?áÛ0r¥ÖŒ•¿iœ +ò,ýšPqÖ۶䰔yôsòK(Ú´Û9YkB·F”HÝiÄ0xY„ЖÒÿ²_fQQYgdEQÄÔ#Ç%pCE£Æ¨*"¢¢‰îF9‰DO ŽCˆfbH5J2â2%Ž¢Qt7M/ô +ÝÍ®ØóÃï%/<Ä×Ðç;}ꫪ¯êVÕ­ÿý]rF¸%õÀgÔ¼î©Yëåã‡ð¢º* DÇUà|ÊàýËãllJ+ªÁ~ï~þ~CFÈZSã •Ö8vBð;Sg‘ÈTús—~¶wp9söbeµªZ©רW%nd†}V^Í\{¢0†‡åIÊ“âJ@zQÔ‡¶v.‚ÙuMxT“ïÐÑKV¬ih·ˆ¤ê²j¾Éžù ñ n$x_æ¾6·¸‚›Þmã®C²º–2…ÎÉõè­Òü’×.ÎÓߟã|!îs:p~S»åf^¾½sFÖ·:s+NpR†Ž,—* J*è¹÷`ºJÛ@èá16¾JNÙéнgÞý§÷ò‹ ú‡IåzÕÕ·:8¸/ˆˆ64¾àè=û 9V"Eµy…¿!Ëñ“¥+â|ƒòˆèž^}¡ú +©òüÿqptËÂ"bVãÆ@uê'G(0²­ƒëž}iFsI‡¾®I¥®W¨ XNYŸÈ€²Z±BË­ #ó­Rê0isê‰ÚD‘àÉfQµ†ÿÎ8iìÊ°u…É»9yûÇ7$'JâWèì>ƒÐÂB:‹_Û@+;óÉçô§¦³øˇì_1&›Ì tf‰5¬ñ§ÿþJÓç?U£3Ê1û¯Æùp#Pú~äJôí쥫°"J(SgÌ]äî=tGûø žñ. I=X‹N åéã/äÑqëøöê­ÿÑ°ä3qÊðÑ`Wßµ?tR |©BûïËWq›øµ´õMÅå’˜øDWÏ>”ï=|êìá½éãT¡ýC¦‡O ›«36óZø:d?yªVon •¨5¬ˆ[ÛnªU¨tïÃBÂæaB K›Û,ã&OïÑg ‰ •1«“Ý{³F Š¥) Í^ý‡Å®M)!cmC;AM 55´W)i­TÔ¦h8¯Êº<Ÿ˜ ?!Í<{9Á'ÈáE<•6N?üx•;‹Kc {ÅÚÁlpÔŸ4e¶ïà‘Ô`›¹xY\èÌù¤Që·¤b^qE[¯þ×ï䳇?ÝÈ£¦’žeŠÊ¤„jøœãà,XÃ^ûåY+b¶z|p­d1l8û?ga¤«—/`Éyuqþ›q>H8.8zõ6ªˆ¬¯ÙZCŨ¢g¿AI¥â€+ž4iʘ·§¢-ˆó¨•d‚ÿºr×r™ššiá ûÅiÞº÷ØÊÞ•T—àŒHñÇL +{w1^ÁqûŒ‰ŒM ÀÔLD‚ÙÁZjóšämVVΕR-¨ŸÿXçgþó<.*U›´¯ž–Ë=W)l]z&p׎;®!Ä0éÃNʨ«k |ÒVWkzÁ\ŠºV§k²(ë[j4pIL ŽðêøVüú- Û ¹Œ€f¢Ò…åRß¡£h¢FX)rÍ]`ü?c˜QØŸs9×¹1 RìÆ+¬œ<—TN\+ú‡‘±«mœÜ IÛƒ‚bîõÉÓÙçž(=‘…†¤lßãèÞ+¿D\ƒmr½ · +Ó ´—Bç¿éïÏqþ²ìœ{T×88þ˜O;šÁñQCì2£¯ÿðúævNÓ«Ÿÿ”óäµFžU½X¦9gQï~C ¬ªÞÅÃgÎü¥C3¨O.ðý¹oUR +C=,,…ä·î>ˆ;”Tʦ…/€gªä\‡¡•2’ò ¥d‚6ŽiéÇÕ†qZoj‰yM)Äjº¹x®MÞ‚œ2xŒ-`/(-ƒFÆ$lB«ñd‰gÀð1=}‡ê_ü@>5ªúV +¯õÜŒwálüÉÈrrëuúì%¼‹Wšp¤/¾úÖÅ­<óöË<8ª* ã/ÝI:¡³³ÏXkj(eg¨„DYdC€„–È>è0@²©(‘¨„ È’‚Q&fPŒ,AdËÖI:tzß»Óé&[ÏïåÕPåX5ÿÌLºnu½{Þ½çÜwï9ß÷Ý:‹˜W»ó…Å|°s/+a'óD?[xYÚgVxâëp1a‹`†qiêßçùþä¢ï@.lÛÎ……YŒA +²N§Ïÿ 1X¾ýdž„FMO_ÀG1R<,9ò/Ÿ+,¶zÝfÝà{ùüÿd:ŸýYòÖ„lj³½•:Qç>I aÑ`9@HÂuÄ«¯fh€¤´ŒðˆÎ€èn´_ #9 naç’8rœt¦Éi™Bh]u±â/x{ò›ï€M|zÖŠ÷wí3ØýÉi d²H½ÙK«ÑÚeòÈÔ¹àØ.Œäöqùæ= ÁÊA‰#*|&a5ñ»çƒ¥ˆj–Æ‚r`2€,}ã±Ó‚"#X%ïÈ—|ò¦-Ùj£«ÆäÎþô Î?ÞD¥Õá©O·°¨W+×näùäÙB€”@¯¥ÌÉÉ=HÜÓ±ÿuÓ66䟷JÀvº)óš%MŸ“¼3ýV™Úîkã‚O͘=_›‡gÄu=!)…nâÍÞ[])¾Ãøå…„zMïi!‡AÚJ£ëŽÚ`¤r;tþþOç§!iPÎn¿Zgq4¶œ»pY&Ï=x”³C“£4FOLŠíñ4Ï삾wÿ1½ÙC[³~kPHÔ±g`"‹Ã¿þím$òÙò«¿ òˆ yDêÜ,nv\ˆ’ðÒrÀìòÍ]¸ŒnŸð¶H‰¤Ô9abˆH¸ôöõ¸}­ð t Ñ„Îì¤ q$§ÎayÑæÙµg?‚‡brÁØ +Š+¾«:~ê܈1“)CœçuãÚÛª´ª’REE÷è%)|꫽ù®¦ß¡ó¡óå +­Ý­µºLnŸ S$§ghÌV½Ó l¢HI`yBN•)„DòNWo—Šè‡Ðèn(^…4E‘¸ìÎÉQÈrðP%ñ¯LœZ¦1àäÔùïñ°jݦGá'ˆÈ§QP¼å5[YgDôâ0áåq¯Ž̪ˆ»cÏdÏçǹÂÒºé~õ&ASÒç¡ó]þ6*‘r+¾[Ž7´Ù°1“@o­­rÔ´“lR ~>Bç§Í_³$ãyUPtõç}q‚ýA{høØÉÝãŸåñÓf/`°"¦{á•bIb±'[²w#àÅ¿„À²fã{LüâogØ:±€]û'عˈÌèð³Úÿ7Ï–ùÆJŽ¯èúÏÒ!òD“d‹DµïdïŠìòñ-MÎHìà<˜¼`éŸ1^ºvKÕE°ïp>,@³z˜=þws>&ó…°Hþ5&{|ßþ33é ¥5õ³.•)cjÍìÅ÷+Äax˜9oá´Y¯ŒŸYØÇö@évçÃGO ô¬ÌÅRö2×Òð`gÞAqnp¸<"V‡ýøóýÊz—SµÁJÅa·zAirÌD÷x¦_ÚüeàV™ÆÒЊdBù?Óoðýj=R‘Âç:`÷Ðùuö&v©ÞÙÂvíÈ;&„Ä?óƒÚÜ(n£¹Òàùè³|AÙýĹ"•Þ±Rç8ÿ'È"hŠØßž¹pÕäi­µˆbÛâ Ü«6¡1¼ºv·ªÚà¸fÓvºÉ³՘ȽøÑ;›˜enh«Ò;W¬Ý"‹è&ú ‹ÃC|¿Ó®RݼÂùŽÜÃBHôÈ—ŠK*´6¦sÐ:ÿ×uþ£êº\gg—VmxOˆì†¡˜8­Tk¥" +.þ(¦¢‚»­‚DMŸÿÆ‹CGRD$¼TGÔÂÃ;s¨j $rå•Aí÷\éMá$Ž[Z­­·¸@éåo­G‡ˆÕC’ûë)³C#;S‰x  +ö8"MGMaºYÏÀ!•±Ûwå2œ§èŒCZÏøÞ½z?G†QªF‡—Y¬„WRy2~͆­âRC”’çã§ÎJ"â¢ðÏ|ǽRBú…D\¼a÷*ëXŒ{Ã;9B0ŸÃDåЗ'bÑ\:wóæœ\qÇÂãøŸêû´Œ%f_A>sáJ!$ŠmÔ:”ÔYê~¶š·Œ”Œ`é¶Oa±ò˜žþ4ZX•Á™8vŠóÙÑÿ”žïÐùÿþ=žÎŸ³x5 ƒÑàj.Õ˜¯ß«&+Àð +pƒVzL¤ñ@ã‡{ áEh +ï,ì~îâ @‰¹ªz;à&B_p”„l€^¯¾ƒge­»Œî– Wïr(#"HÙuæüå3æ-I5·LOš•…·’ÝÔÌeŒ ™Nwç¾£Ò”ACGã$%c)þ G¬²ZËi’Y+.¦‹n–ž@èÛïï:uÁ÷ÔÚ-â™)øä3»<Ýç÷pN\¾ˆÆK`þ?Ù:tþ¯ëügS•ÍWjpT˜Ý*£ËÚ¸]£O_ºZ‰¬ÐCžr%ïèI4`ž0j<–¢·g`š…wˆòâÕŸv rÑZp1 ôçÇ¿”¸ƒÝõlá%¬Fi¿¹~“4 û²7×ç ´¤ä¥éÄÊÞ½Á’ðÒ§¯uâÔTe\òÈÏÛ*½cÐÐQ²ˆ®›³?ѶˀR ÅûuáA¦´åð]hôùK7¬ +­Ut܉è·ËªáÄtƒåPþ©Ÿî«°°<Ã;–ŒÅ+$ÁÆøèúíRœ@Ž¬ÇîG§Ùûÿìó̲º¼I3Òd +ååk7ÅM€˜dáïæ|Šž«ÔÙá—o‹ŠòËôÌ¥©Y+C®Â0Èòõ[ቲ‡ŒšTVo«w5é=-Ûs Ê.‡ŸZit=./ü·ë|ò,š”<3Ti÷6—•«­œ‘ʶÑåPÈ éÃ2™¸,)W7¶HHDoÓ¸Ì)pr§\ÝÔ¨Ór¯ +pÐœ©($ôo[Àîô–kt^_ zž& {È”·ens t®F­Îìó·¡JˆÈ%BJ$âR$˜Õæið6ÓeÍXÎFþë,εÖîk±9t&;ÝÒ +5MnŸJ«çÁÝ(UÕ øëmnšÑËÁ˜èFäëì>t¾ÙÓR^kn_ƒØKkŒz‡Ïàþj“É`»h%*½' >£ÿöØ«MÞ»Õ&«?p_c5x@eyUUguyZ­v?œ%‘êÝÙ€)“ãÉâµùDÖ`€/ÐÔY9‘F<›

­ô œÁåj¹Ï ”`.×ÙY-Á.1ªÑ™ˆ1ÑôÅ]Ûéj³Í†ó]¥–dC`²+€“t¥·z^æHÈøäYQ³KΣÎÏ\ßéü7ò{U_m.’Ei¸l¯nN›i¡ôÖ7;¯6ºãd½/õÇt~±í ¦õö 5^BÑQ6dðƒ÷ƒkhüi¡LíÔDÙM7W\pC]¼Is„7–ïè…äÂu@z 7¹…‰ÐÇAÆ1uÒÙü +¹„Bïx„3¶;ÝÖ’y²Ø‘ͥΘ °·ëƒ…ÖíÏŠ­!á]$~fvøÚ!Rp¡XWx7\¨_r³“å*áôi*1W|¬ƒÑhÂÐÿ‡˜FOŒ¯8TØZÁîÅvZî —7™ÂΊÕÇ?9zëíËj¶“Éj³o f*WÕóz²È²VwB›a 2~|¡ií¬™"èÓÆmwY7™£1Aå—¸i±#Î)ÿÏ›Îw“j–÷?ø‘Kƒj™\Ý^4úÍt~ÙLª½1ÿ ‹?]^Ÿ×{1¤;YÖ7Ú»ßtô…¯ +›ÚÓ.£ÄtÆ«bk`,Ýo”§äþ/‘lêç¬Ú©'S§. ÙÆ2L-Ïx³§ÆõòK¥€Jw4{‘É&Œ*ö*†­WN35‡Þ£eTh¬[È× ñ”°w:ÿMÿ^Mç%ÀòXFAÐëBNkŒ€>aàQ´äI-C§“r—ÀV`Ís¢)ø’\€0xuÒË ßÄ„ D ì5< J+6 +€ŽÐ%³$ž|Žòˆg{ +Øä·~ Ë]²)RÙzii#Æ×}æ‚üNç¿‘ß«êüŠßŸ_ö¦½Õ¾:\Ú#:?¹º…]ÿ(6»‹m…Po¦×Yc8oŽð&‡.ª^<úbÃ[(Í Ã“é.P\j§ñD@82„dB¸Jc,`¸!b´¿Ÿ\†B“-„PH#i‡«T—GN÷¤Öª408%‰Ký™'›¶¡¢PΙÇ+øW§,•ÍÂ(~Í+´<)7 $5ÎSíõBÿGµh©d®t—Å„’Ë‹^e?+6)@åßµ +tý¿lw:ÿ?ëü²%š]—‹R2o †é¶œÎ뽋Î0Yï;ó«úhÑ™®KÝô¼Ù'õCÒÀRH ´¡î~øˆzé¸Ø©À®ÁyØ ½R-‡h >ƒb1°=2;„“^]üÃ\2 Ž¸; …4B%T˜%w5b&{¥–CŸ”Ë!¡Ojm½Àù n{clb¢Pì?þÙ/ÿ—¿>Uƒé‚2TûR"rÆEü?Ï«ls»iqa ê4ÄU¢>šÔ,fzXÔS¨´}ôäèÞ—Ê­$®<ÏŠ­nÎÁõD‘è8ŽÉ{ôª[;o¼rÚº>-dyÜ\8ŸUºeÒÈóyÓùu` ö‚b6( M Ð(ݲõr‚J6äÏÀ¡žü´œ]gºÎjÉy#5K¥35ãxVYoò¢Ô§‹}+]÷§×ž—¡ggtLD6’Crèõ€k³ÃdNáÊ©KòÉ6‹ +“ÙÎ@­Þ_Ôzs©ä—¼;Þ²Í8\ÞJ¾Üeg•>›P¡XqÑ°WÓM–ͯ].\y6$§.2¦ïªØ›™+Á×ù"¯AmHA/ÚbX½Â”ŸpXáÁ’¥b«Xj¶ïÃð"gY4l"U0‘Q¾4gÏ•±"ãOÁAf‰‹†¹‚ƒ’ôƺñxZ.Ýéü×ÓùÎr® ³z*áï/Fvóbq vcà ÄኌÜâ;ô#2UÕ¹«¨wK5K0q­Åÿ–aÙÍW–"#ãÓpœƒÂ’æñ@[̇Îÿ>ïÌdj Á&] +œ¿t¦“]óZ¡Óü3a±~q½¬ø¾-ØŸÛ%Ds¸;3Ùr%²ñE î*DUDY¹RÀ/Ôl!ðoCÅeÝ×Rì*Â?}>s~íÍUh–û?ZcÕ®º3¶"®Š@E†¥‚\§(bW"[<žBiCA»©) "µrm›g«³|úÜ ÷/׃Ù×¢lN7íž¿=1nG‹ÞúØšm3A„•Bmà0ÂáËÄ”9YÀÛ”7 CI^;¿ÁŠ°} ÒQCƨÿC?ïÓù0 +ªÜt§üà(ª¾VË0pÏŽºŽ¾ P¶ÈrÐäLA0ÐGüÛÚ¾VñQÝnk½‡ñDÛ×â¼ÒÞ–\ƒ¿RŽ éu%R}N½I‡ö$]Ô»ÄÀ©[ ìPpªˆteÓ­¥ÉÌõÀrˆ'R_®x[ÿ¸ ÿÐù?äó^'a5‘ß¡jUÙè•÷£¥ŸP£=î/÷Ö}Q’©ƒÅ¾9˜Ð€0˜µÜÞÁ,Ãd5»kÂà0dNp¥´G ¡¸‚k‘¶€³-é"„ÿb1~:‡øg§3& +Î˲P‰-¹v]ÅçVºýXª…ˇ¤kiõvþé¦'RõSP.Ãbpþý+â[åñìÅ롤äeñ7gÏÝõ¿6¼L°O\Ý÷çTÖêtþõ®7{>+%rò|þ­Ušª˜šJü>ñr÷¯/" +<Phûp +ºAßF€N5š-ÿm:Ÿ„&­oû+ÒšÍãÖ²{7XðDu"É~2›MÃwç›F·dsRãÑùbÚÕ‹:ô¿+û®» ´›ý5UO{»¥·-6ANxo¨÷be ËÉõÈø&}[O4”ªkNÝ꓇ÎotçU'“j”p•«›ÑìÏ•ªŸŸÀÔmgäS†#º¾z¢Vød<‘Ï3\+j›.ÚãuœÖüéüП÷f›á +ûìÊÝ«ßž_àhM™ï\o ¤ãFh +Ö':¿žv‘ñ!8ÆâxO¹ÅDÈ"â¿;­HJ@¸OqóBH‹ ˜l_•J®ï Å°yîûeèOoÂP•øËX!‹"«ÛøÐùߣó£Qó¿Žõï†Qø0³Â¨Z [0ÊmÔ8( ˜GÒgETÓÒAE·ð $^?CÍàØÖ§¾-))¿~ §Ýx²:åJ…zëèš,žpŸ€ÛÞÌmìÇq…ºØ ÿc¿|^$»ª8^3¶1MÏ$Ac$nÅ!,T‚ "G£MÀ ¢èÎ@Ä•0ˆqunnt¥2:ãôïúý^U½z¿ÔûY]ÕõãúyuœÊªfPš!¯¹\î»÷Üsλ]ï{>WsJ¤— ØpAü1“ôÎÈ+ÎÿŸüÝ/磢¨«™!Ú1Z‡Äu=¨oÜ6#U÷b#Ê{n\ïÙF üTJ€€´ð9RÌ +í‹£·P7"×RJ˜Ä ‰–*€Óxdr]\DÃK•N攉# —(-'¤H-ÐkW’Œì’ˆ»®”'A}©k«rà‹¡1¬dI*ÝzÌ.É\dº«X]Ê ˆ d®–$.>ëvÞö'RzÂá(¡)+.Võ"à0ØéÛ=oEøöêä³u±¼ËêœËï–ØóKõa’{”òwçƒîà4X.|]“ò„æñpyc{spò’ºAúx®˜¶±¡ç: Æìe³=Ýg†yh†'JÀ^€ÞÖíœÞÍA}®a¡€sauâÇ?R$Æv‰"H¿ß ˜!þ“EIûäÃ^î„Àœ/w +ü‹7‰ ä3I8|ª˜ »i<-IÞ¤FÀr|¤Nüƒýâ13\ è¥àv·ëDsÅ*¥ ‰£®¢Û‚ñä‰\IþØ ³R8H†ˆä&6Rƒ˜/7„oƒd²7pýcÏwü°oØ­n…Lnë6,!­üºÀrNO Ÿ±ÀüCÑ*Î?óÏD«ömçŸÎùnQâPraç‹Ö0J›FMT£ï Ã\³# ¿g4³„mJºŠ#­(-@.È £ÃˆÎKCdÑpÔž±°4{™A™ý©ºÓ¶éÙË̺.¬¯lwÆJní@¹{=×)–ˆ3ÐLÔJ*æ½îvLlx5 ¬¬¼>àWÿl8"âPn"Rž$[z©>#ì1 ~ñ^$@bÌŸT¿@÷ põjÿ%vD˜ú«ÙV<呆1Í,TÃ)Ϊ.<ìœOzßî8°ô¦Ù Jò¿ü⫵óíƒèª_™¹ ìj^ÓtàmPü§Š%æKäž–„¦3ƒCl ö¿ðŽ`¼#!|x w“¥feÔSøü k „ÓMˆ/^ùvmóýÄÅÏ3Ï_:wñi\£ðO’Lîj=føè‚| Ã7ûN6SÛ ³mDP=±¼Tí¶lxî ]îD'¢—ÍwÛC +™Ã¾3 g¬Ù1ôΪڃbÉ$·úg>ýùÚù­äXñ‡ºãç Œ~#(:fôï~ŸU¹#ìuL¶ö<Ž·5Œƒ@sRP?«ŠóÏèïÁ9ŸùдìØŸ”ÈÊ¡íh6‚y»ÕGÊSõA\Š-x8t.$­-=‚†N"b»ˆüG?ù©ÚÖSìâ¡[+ÞnÕ5Ü"‰¬2)΂‰¨b)wèap„ZÚE¹Ä »ê¦ÃF‘PÉM¤˜ÐäFdµ£ÛþJöcœ`F’%"R†0n9±\C(OR†à|‡Ὡº«ÌÀüZ˜[Å|§gÃùµÍÚÆ–´Ÿýò·” ” +Èrz¿ÈãCÑ*ί8ÿÜ*Î?ó[VÜu‹²€Ž&ˆÍNŽ *èOóóÙ׿ójíܦŸ£«0yÊÐgÁrfg´ †Øû£#Añº£ü¢Þˆÿ¿;6bÎ$jŒ&óÈx%ÝCVEáÿ¾ß!»¤¦ ðTœ³t»eP‰ØË#Îwto¿ï…Ç +Ô§ïo7u`¾ö® _¹v}»kÁÿÐlªJ‘q¶ÜªëT7<´ÝŸä+2§pP€„Þå¢Á+†RG2©VV¾»ÀIõ Î×¢öÌ“u6_ªÝòkï~ìÒÕ—ËCv2áN×Ʋâü{?Üûã|¿àTÝðH¦ªmŽ¼|Ù÷ 0õ«/]¯=ò„›-XÍ +ƒÝŽÅ®t®ºv‚Y`KÇŠéÙÂ^à–í1¤Œ÷º6»†Áé¥!f8é9“-~0V¢Ûi2…Ì -™©«¯ü°vþ„Ìã'žû,cBã Š¶âc+Uïû¬6z~4V!oÑuŒ—j§9ĹŸ-émPÊ+¬hŠ±¼´¤t ½Ñ÷×AtˆÝŒŽõѤûž›2nC`ÿü.óÁv ègn<©kÖx¡Úq˜Ï_øæË[ïÛoŒi˜qœ$™sv2#CΪâü3ú{p·NÑ>çú0¤ç§ “cØ1d ýAêiÿØçª:k˜Ÿ? 3–t›ÖÁćøáØŸûÜ—Õ`ª¸;0ƒ–â-,y|bºÃ$‹¤0Ï ðÀ þ¥² ÎÈK¡6¸e#±Ø…J“3Aÿ¶ÛƆœ¹•{YÂ’íø'y䔸"Y8ÄWc Qh„Æ¡¼o/, ߈ySŽ‚w_tܤ르ý¾ÍÔ‡?þìëú³™r2þ/nþ~ó©ýüW¿ãÅKHˆ§„ÀY9ÀWœÂ_ÅùU{»Uœ:ç"+]"›¥x#€,©÷=ø¢€¯zn \þÚK`ƒá¥¢Ïh ‚Ï.Ùˆ<‚ÙôȬ” ¤R0}FœjŒ‹Ú#ì,ág4Wô¨ºáOD˜+)4™*«âÏ^*–HºX–zîem3j C¸F`Ž&ÌœÛzòʵë¼·ÍIdƒ®“6é G&8”(òFdÈ€—J–å˜4ÖEK–x5).'Õ¯Û-ÓÊEŠœ'NÒŒ +ΰ9p7ßûôÕW~ÐZUIvq‹ájSqþ½îýq>¸Þ4Â×^£vþÑ7ÿÈ—Îí[ßû1t ÃÃí=/ØëšÜ7 ‹[àmöÛN:þYÂ-|Ëà_-f@ÜÖ0ØnM¶ïš1ÈMcÜ6"æûÿ¾bäCæ? o'Å—®\Ûxä ~oD˜-'oø' +WŽirý 6šá¸®»A®ìwºøø÷Ú=c >ãf? 4%L³ƒ²ù9ýÝF¿LŸ_IûüÀR/›ÿô}/ã"`¹enØ¿ùÖ_jïyüÆk¿é;13ÿ¥^|ôñèVd…E³çЃôF˜5>yÊAq†¤zvÒ]qþƒp>_4xŒ¼pV"ª¨«2‚†KHƒT)D 3¤Fo‘5æ™D 4.£Æ¨\‰â^¶£ .R/Î@ô°eøqKfR"Šò êc@OiØëvH d BiñOž¸¥'4“Øà { —û9`@Pl(( ¸wHõa HEàEV—BÏô€‹ÕmÒ×.<ùÓ¿&S–ÚN©öm‡úU€úÀÿÇžýÌÅ~ŸÅ­C´å®tæ_qþ çWííVqþ霯yãATj#b &QÙ;VôÆ[­m\¼ù‡74Ó2/™^ÿÑOà|8IAÿÃ~yGG]eqü—I™L:%t—" ÊÁ]·ˆ¸îîÎÙB‘Ž@"Ke•"K•Ž*Òi»X%€+DÙ }z¦gf2-“B³Ÿ_žè_áø'dz3çw^¹ï¾;¿wï÷~/ÂEF»@WÎ’ ®Wèv°š©àðÍ`ë„°…$àÌ +Àm”pê¦ÎH–QÉôÈÐ-`;Êc·P£aÀúw¥3#Œ¬pLžftÖX½ «§˜+¬I?.}6ü +’1(18 ÿ¦f’ sʤ½@]‰N)UÂ*CN7ØÍ· FúêfÎE¤N$¹¶/’TKùËŽN{€J¹Q®Çª[êJc•Ï()TCGNô5ÊYUH^WëÃ<ÿ¾ã>ϧnò7†rróùªï}°Ëî«W›ˆ¥ÍZ ©RܵMZ«Û¼ ¶yë*²³»†‡ §ìrÖ4:ü EZ^,Ä1Å… N!Æúµb gc âÙ½­1qÂG€1 {Øš8m6·W˜ª0†­ªÀNyBÜ ¡ŠSŒ…©hC3vböèíž2£{ÐÐIUÂ~›·Ao÷i­¬ßáCì]Á{erYÇV‰ÞÎç€Þ_)(Eµ<ß]sWfûîàÉ3ÞMY{ìž:¦“s΢·Y1Ø<®@#ÌŸfó5RŒéì#Œ¡ýT(Ô#­Ýažÿ(<‚Àƒ®D4 Ã'Àq6¼ Â9ñI­šž†‹â–¥›pi¼Ofª+¼'ç½ð^Ž\/Ñ +Ÿä^ÍñdòD…0¹ \ʘKE(q„å âxc\ \Á€)‹GchìŠ[L Ë ˜€¸…AA©„‰µÙ‹\q‡À9z:GR¦ì>t²ÂärÖ4±BÔ@ 5–ê"­Õê©Ï\¼,µW¾PÏç‚í“zÔÿ$Z˜ç‡yþÿs óüóü +³Wg¯q×…ÈìFgÐ7Tjpœýò¿RdªYP¸½Öì5!bàðÖƒ«,0[]w¸Ò¡7à-è +D à%M0lQ\ ¨¯i +q„1é@äŽÃ‚PER@˜EV±ENa—%¬ï…8È)¶DÊà.ÅéðÖšª¼å+c[5ô掤LLËœëô×W:<žÚ»l•é- Š5•P, &Y0 ÉŽàZü/X(òŽ¡±ÎŸ"›•Džj)Q&PAPSP\ˆ¿På«3;}—?2.eÚœEØ_Pf4ß/mÂ<ÿ¾ã>ÏÇ©þ-$Ÿ”Jß¡{_^jøø©Œy8E|[y7&qí–íc¼K<ëÅ+×XŒJlÏnïƒÔf^4.-3&¹¯‰žÆ«­{Bj·ÏÎ_†cpëô8*·yyøXeJG)*%c§Î@­àÿc¦LgGb:>}¦°ÄìàÃÇOÖRHÊ$«6nŤŒ¹‹;öxâR~¡lRt‚¤PnÌÚí©' mèÁë`5\mrWnØÔñ_ç.—aPwŠu¶˜äNc§Î„º4W¾Eï¬Qµíúõµ›ðÿ¿Œ™,)“u÷ øSDlJdT‚“Dwíõlô¤i‚çÓÓbS7ï8 wøM!0ੳû[ºÃ<ÿQx>LµÄdʽQ€RBjT›.&oƒÀ«Ñ“3~ñ›—®ïŠ +Õ»ï½/0|äÄt¦š(3Yüðã#Rlò±ìØ#® óS2絬wNn~³†è}Gÿ‰‹æß*gšÒ¹GððmF xˆÂ?Üó©g¾½Y&ËGÆáäOd2¢²˜ý+ðP4ÃŒƒ­NàÃ<¿…_˜ç‡Û-ÌóÌó}¡r“Gïð•UºôŽÀwE¥£&e†q‰dTŒPõîÿì­rã„´™»ô*R›~H 1˜’ƒ´°V^‡ù(“Tm;C’ÁpðŸ-pXµÁᄺ&ä\ PÉÄΣˆ]¼l59ºu᛫`8[®È„v¬h,Nˆ19¨M—žy…7¿¿]™´u÷é@cr@¡×nú@Š"ƒ`°òô_J‘ª‘ã§è­.x¾ºÒ^¢5±N‹ŠoÓ½ßϱŠ”ñ¤˜vÝϾ+Ô._·™¡^p3zLuʈ i‚ÑAü^yuö[Ê_ä¼ÅS¯µyùDÍT3«/~O?jÒk°Dª€ +³Û¼×Šyá§Îó©é¨žÎ^¸ŒÿlÛs€šÎêíÕé3ç©R:ð©Ï}uÅî fÎ[œÜ¡Ûþ£§¨õ}#*îoï®Ã+¨û þ]·ÇŸ¤6:|¼:؈ÏàQ/Ý©gß=Ù]‡ŸÁ¯·»ËŒð–š‘§®Ü°ÙŸ9—¼xÙ*ªË +£mÖ‚%è¡œDÏäŒÙø!Už+Ð0}ÎBÖkCh^¸tãgs<õM·Ô†ñé3à$´kÅ•NïƬRlbÖÞì2åFWÓZjpäB¥âwì?V +U:k²/|3hÈÐÞ~ÉS­Õ3dèˆç^é¡Í~})Á[éðyjïí=t‚ñ®ýŸV›Ì΀·.$WŠ¸6zÜ(Ñk—®\ŸºóàIG  ÌÔX½@ÅÓ@k=èóüGáù|¢ì¯¾•bÛ,\±þj™‘¸òÇÑú<“—ê̲O6#aa©ÖTå}kÅš¤Ô®‡ŽŸÆ-OdŸ¡„ÿGì"ܵW?N!œñ××9EÔS¯LL“•Ä$€ˆ! ‡•"vɲ¿©Âú-Û8rê ÂÜ;b%g"+—ò®³²|ÍFÆÿ¾˜KH¢Y„Q‰d™Þ’–9WžFªfÎa”0]±öÄ;¡$ÇiTÜ›ËWéoí€AÏwéù„ÁæfkÜ” ñ×ò KXykÅ)"~ï¡Sz«‡9ù*Óm{>Ñš«K´6W ©:H0ÖV:êJWÖîÃRLò›«7Ý€¡«!Tnõ« ú­NàÃ<¿…_˜ç‡Û-ÌóÌóoªm«ßU²ù!QÎ`Úð9™B‘°uçA»§®Ü¶×¥eΗi¿¤:9¯¶)4É;û±ÓŸC–nWŽö ü‚½@î³Ï¿ô³>ýI$²2¤ÆìŽyõ5$™"&+‰PÂÁ€e’‹ŒáÑñ° øÆéÜ£¯·® º>mö‘)®UÀšæ½ñvDl‰ ð7Ù];öîOiOÏøÒ•|)Z%ED§MŸå 6èL¶3ç.2]º|»£å¹~ñC-dLVKjPÄ’æ ˜„‘èÄrzhW“wV®Û¤5WÁ$÷}r"¡]g,$ßµ”¿ŽœÎQ[ª ïîCÇ#ãR¶lßãö×ææ]U&¤`Æ„´¤BJ Š$l?Ìóï;îÃñ|žƒ7:uö<ß|×þ#</ò?öË4ªÉ+ã/„-!,Šû‚­HUjuϨG­ŠV±Ž#VGEDDDp­ŽŠ²(ŠÛ¨ÕZ«ÕÚÅi§vìXµ£¸L]:Štdß!$!!$ +™_x[í=Ç~áKrîyÏÝžçÞ÷ÍsÿÏïþ !Nò´ÛÈA'¶í¦Â_ì?jÜ”i3 ?‘ nÝÍdôÀ‘OøÇûýn丷øÇb&à½6. Âך›äÛ†¦¶â*mEMÊPáSg”þN½úL "B`{6ˆsvòNp˜ƒ ‡,GgòÖ]e*-uŠ‹Ô#6yG¹¦Á‹£\d³r³‹Ó“|…Jp”m’ +FYŽ…è74Y ++u½úøN +ÎW(JT†˜¤‡?ûÚ³gÿìâª"¥žè.n뀿º®ùàp™«W•®¾´Jÿ¯ÿÇóǎ}*kÌ4 ÊÕQ«¹H/]OûuæŸJ”:Î{Ê{å–k!|>2Å*žjSÇI·ó#çû 3i:‡Zßb)P.¥ÝÝ8Iˆ.Œ\!sítóÖêâ) 2¡}äéó~åµÙ!á„1AKOwïóÂ"9¨%ÁÌL&Ȧ£“üÀáãâIÁOŸÁãñÀ©ä$rî&vëëƒ-Åz¹pÝN¿‡tc‚º{t]¿i «Ð3'4Â*왹âíä·ç¥2ÏØød“QfŸ~£Û³Ð°c'¿ÄÞb­Û÷aË«!È=ŽUn^ W¬Š*t½ú®Þ¤©k¡þå7àü£ŸŸRéŸ?À?´_©­5þmú'Ϥ”}Y¥ÕÕõm|À¬R¥Hø(d‡¼óŸó³q¾­<+6Î1ç+k[Ô&Ëã2uA¥ž´^¦1à §S¯ÛIÜö<€ +eªZ+ç Ò¬¬B¶D©ñ °‡gÀ­€©3§Î@‡EB†Æöí{2 %Ï/«3 + TïÚ½Ÿ&"o¥);g¦¡Ûˆüäé³FŽˆCæ3t?§Ñ}‡ŽáVħœÇEð?¶L¦o'Zoìé݈ÿ´3u`þôw©uøÒå@¾B¥7)pBÀä2¥Zoj¤™–‘~ï?|œEç‡GÙÙ»ýø„˜ðVT¡¦BŠ!­ˆ©}Ra?†:õðžØžhž—¿vì‡ó!yýø,$ –VÕ¾9{ÞzûˆZE*­†Äž”T×)Ú1ÛÆùí±úrœÏÝSS×ôé?N»xt?x”Ð`h´@°¡KVB°€+£c¡BóÊÀaÁ‹¢¡Y˜¡¿½”«+uµá ±MÏÆÄí*}ú¸d‰¬sZF6¶ÿ’þû9Ÿe!…Æ0Rá©56³ +¶TègBÀÔ™c&NSiÍì3$,ZÈ«4&µ®aÑ’U‚½k…Ê@“³³)ig‰B«Ñ72“fÂö½\ ƒ%+{©Bk,¨ÐèZ‰œ^>~ó#–3Ä„"eÖÜBÀ°"ëÆ$¤°1vbl² >æLêµ±“þÀ×6´}qê;©göÏ®8¶áÑÜa¥5¦^çÜ¥‚“û#Ÿ±^œÏš¿˜Q^Ÿ | ž=}Þ˜¿d5_¸PY«­·U”µM"íwP±qþ‹8Ÿãð¬hLí¥ŽR¦Ö Ò5±‰•:cvI™²¶NUg$ŽÄ[^yµ5؜ܧŠgŠ`ëÒwÀ¼ðèJ™ú_·ì$q¢15Ÿ¿z‹úõ`Åè¨Õ4Ř ‹~—:sZü\¼‘nïÚÿ9%J<[ª¦nå†xy×>×Òïãvæüpæ« Ø–¨ôxëêí;wQC˜³º ‘Ñ/î'#§ˆÉǾ8…“ìâJ&œè=p(KsÚyàÈãÒªâ*“Ù=±É»0Ÿµ ?l€~âéÕÇçúÆ6üœ½|ƒ™øZml*¬ÔbŽ 'k\à ÿÑl£ÃAÝÆù/ù³q¾­<+6Î1ç#§Hb¾BÌ"’¨¢÷Õ™TÁÁußáOPE†ÐXÀCÔjæ ðb‚X¹’žy¥‚³û_6%·gO„TznܼCÔÒ‡ùe˜`ˆ+œˆ„ƒ2ˆƒ[—5±›sËTX‘,6$¦0d¥šv5vtïº>a•9aKE GêÙ'sXNœÐ)‘{­Þ˜ˆæ㟭âïà:;t †lOp”¯Û‚l1,PG÷u›w)-A¡¸•+jŸˆÐ+ +&¸—"b0†¬ÈVÅO4bü”±“§ãêyù‹Ì"6y5¾æô³¾*“Én¼D'~+œØ8ÿ—À}9ÎàáÕ ßß‚WÁò¢ +-`¸Z/¤vR¨XYc†iééÝßoAÄŠœ¢Ê¬ür;{£Žò.‚Ä• +Eâ ߺûýâÊš»Y‚³ÇžƒÇL͸}è°‘y¥*€¨ÆÞpET¦òæ[ÓEs«‰+óûr¥~áâD<_T¦ž· ž×Õ5³ÿ°°èƒüM–†fKÔŠõöö®Woßãh ^éæÑ:ïpzx¬"<(g‡ãBÁÆR¯¦±èW§/pÓ¤Â+CþïÆ$rˆÝ¼³[__ ]_ßÊnç…E‰$Oóôùï©ÃùÔÅëÉÜ…Kéá]¸þdVð^½}‡G¬‚í *õp>ŸºTm‚ö;Nºmœÿ[8ÿöƒlÁÞÔ$.‚“‹ààäS`x¢H¼T¢™ÔÑ4*=û_¾–Ø#ð¾½xÑsW~È,(_¿ÕwàPQípäTêÚ™øD]EÎGÓˆOFÌÌ£™²ï±ÅÂ0!h|~’Îîd2gùº8;‰ 8GúH%Š*ü†^¼ W¬‹Œ;8»‹†Ü.ÿ÷r÷®»­©ÿ‰O šëÞÝ+v…Ü’Px*‰£|UL‚¹ÕÂ[ˆjŒ[¬ëþ¯ÿž´E“uÉhÌܶ÷VÁ†&KúÃ\Ä|üÔ «bw4¨Û8ÿ%6η•gÅÆù/æ|YFóaNQlyž<{ÍÜsèc:ÅŒ€Š"¿à«¾±-fÒ™ÑÞ àEŒÞº—-8¹AéVáu”?Uàø”="«€¸ÌÇ•àÅ}|‡ ¬ ~cxçèÝx7»P´röìþ³€Ë½xÆ$mg?¤'©Ü‹½‰›DÆû¾öÆ¢ekH73=]KÌ#L£‡Qšg.]·sr\<¬…½ñ”“#Ü–®‹q—Å$Ù;ºç(´*s+ͧå×\Aú#àÐú‚¸²—òUßfy^þšµ ‚×¹ró3É•â›Bq<¥žŒ²gòùÏÜlœÿKà¾çC°øßÿy^ÝøSs‹%3¯¬¶¡mNh$="–ñ0m¯Wω06YÒ2²ŠÛ²«´JÏàÊÅIúýÇ ­:Áõá£'Ö˜ZÄi"Ò«ô %JOš¢[.{¾Š!V85>pÄ›“Uµ ~HX4lol°€÷a+d^•Õu”~>Cèìdâ3õÊMÞˆ˜óC—®",ä•ð£—ðOëZ xà‡sÇö¸Œ<.V621eï©s—§üi=g/^wvïÆfþÏ~™GEyqøcfX”MÑF[E›šªµQiM%rpCA$(î“V%6µQ£&¨4cªÆ¤.á´î&j,-7duØ™öa‘M>ã5å/“â?œœóqî™s¿{ß{ï{?Þï÷>/Î'¼·ÓÐf¤*ÁX<…àü=ɇ˜â"|¾Ñqk­Õ.Ü *®æòÒP8¿®Í˜WVû@kò5ºF€¿ç¤[æüáü+ßÝAyâ‹tµ÷‹KËjë5ºªÂJÝÝ‚RTº¶T;ƒèDšŒ(QT‡Bùû{Qc¢`Èû†÷v _„¨¡Ã( +„‹€dúD¯¨.¥Ýà1aëT"\‘ÇUÜ$YØBæh¾ÿ¬PúÄ6y„UªvíÏ&¸}HD Ë9ˆÓÁu‘v%ŠÈã$ Q¥‘w¾Í¸Ë Sl"v&%M Âg—„Ÿ$®†WØ?}IR:îùø3 8ˆWŸ˜óõåã+sþOðOæ|¹u5™ó”ó‘bÄ\Ⱦ ó¯Î_i“RŽ ŠõmFtrƼ…h,â‰úÌï/FŒY¸dS€.SË×mQUr«e[¤9‚µ Ú8¹ðVö.,1³u:pô‡¢Ûç¿ýŽ´~óv<Á cNa9§“‚,ÆK$Œ@² =QepzÚ­l¦âÞ\/êœÇç}gቆÙ5ëße–qZ^e=aPÕjn§†FÁüp>ƒ‚{üýè ¹u$‹ÞýA\"ƒøL +üßT®ö¼ü5?f9/‡â…)RfpSõ¡°‡óñ„;â'/ +K™ó¿Üîq>¼šW¬ƒíÍ-ì>NÔä—èáÕy c-,U9Ð/~ƒ†…GÅå—h¡ß_¾ü›˜åñÐ2uÄ'W7vPh*´ú†¶m»öC¿o%lŠ¿I»É`<;ÀÃÌÂÃôE±øþ‡Ðr©¾Nöñ €±u5-…ÅúE1+ +Çì¼Ò%Uѱ«¡zàÿ^N1ÔÔ †Æ·š"]MC;ÁŸ0« úı}¿¨¢çИ•ëˆmâDСR×ò7HgA¡ü¦­ˆßÉsA0ÞJåœ~;¯Ž:[€O\-"f#2â-Ñß—r”ëp ~çF¼ÁS¢rá͸{Ÿ¶¸œà,¯Ó7=nzl,¬l(¨¨ï9é–9ÿE8vííÒ/$"ºº¹]ßÔR^×êë›Ah¢kò̹›ÐIÁäƒ_=iZ0±3ÓÖnHt}éç×nÜC6ùmì4"\Ùš²¹‘±V +{„Ž%¡Ì¢‡„¨Æ!Þ¯Œ8…åää.§¸døèñƒ‡ü +{;"v%öcÉnè$‡R8àüV*J 2ó ©SÔ®»ÿz±dO¿é!vÎœ‹Šz¹(n 5 ÚÎZöéƒÊbÁ+8…åVŽ† 2îò³Á|\d,Ó3s™Mþì ÜÃ^(0Þr(›0Øã .s~7ÿdΗ[W“9ÿ‡9 4Ѧ¶NP:̈Ðù{ ‰ˆ3˜Ò3‚ê¢übÙËÃø}‘ÖžCC"b ++ªg+FÐpÁ±44-E{Ï]M·vp=rò4¢­«2p³ìƉ(-bΆÈ2Ì&ÌrºÈ‘KWÛ;º‰>Æ$,4|Yü|Cüûöôÿ™,¼ +ÕCì’…ÝŒ9ànëºÏ‹’¬í J«0Ô!yOïÐÈ%Ð/ö{o“>9̸à[¯gæA¼ûœ"i³ÂJõÁÆ‚óÙ¾þATØÍ‹äqRàlNäÓéfJv°ápIá@EÈ#ö’¹-®šöW8H–ª“g¿ñ'¨‰X%®šù²(lù.WÅÊYÑ¿øꜹ҉âbû‡s"NþúÕרe¼†„oh3r;3³qÄî•£©äÜ•ëp†+`à75XéèÞÐj,ÖÖÓ("xŠŒ‹¯yh,Ò7úÅUÍüV·{NºeÎÿ?8ÿáw54sÿ¡cDÔ®äOõ­¹%•uM’¹íE PE¦ˆ+úh1Öw÷ÌÐH¾/¢‘ „‡ÍlF¼:ab@PÖƒr” +§ÍY.YÚ¡ê)Ì/Y©Äýgø™m9Wˆö¦¿ìÆàµëH6<³œˆ0¢–Ä3êM„³¤-â_è'›Ãù<îÜ—BŸAtrœ¯¿s/‘&’RŽ0ûÑÃlËrv“¬Õd+2ÂìùÑâjX2K0t%‰HXàÅã9>ó­ñ;lÔ8òŽ)ö4¨ËœßÍ?™óåÖÕdÎÿaΰÆBÈ&ªh¡êÓ' ÝÁá‚i‘Ç›÷0îá5 Ðe-¹ åó“’ÒqëîýìSÓòýÄøâ¿2[– Èœ‚æ³ôeJáèƯ¹]/~YËì=x”CQxödªf¯^ÏdÏ€ÙaBÃM`üÔ2EPØ"”Ëuïl‘öd™ÆNãßÿyQ²°ÅIçxNYÁã¶=ÉœÂHVI•¤rI»[[Q»·üM:ùtA_ѧÁü÷ËjXKA²àRì‰ÏÞ#Çråçå/^É‹~ÂÖ˜=sù߸}ðØ)²§¨>Ø +ÿq›…=˜_~êœÐÖ4uBª;zÒÄÏ +‡Ñã}4µÐµ•]oA°ºúV˜¶ïÀ¡a‹–ò˜[¤…„/_IÛfJ+•s^~)ˆŽ=HŒ&LÈÍ”»öd-P 0ÆtÀi:À6#7²D9 °wZº&,ñVÜô~=ùýrDhØïnýHæ’×ð”|þ _bŠ2GÁÉ‹¬9ÿôâ–äüdzdôºÁÈô‡•¶GMoPè›NŒ}?[4.Ê`tOMÞnDÄ°c+DÐXaÎÜщzúÖoÜÜó‡ ¦3±åòuäL7zJA)î$ƒ±Ö°#¦ó¶bªiEo˜Œ•än‹‚дlE?ýůn¼o +MXÝp’7þò&«¼ò‡?Õ»–Yeaq˜¯ð³Öéã Âñ þa rØrqI„)8À®Û©.ßãˆ-£Ç7q îá§ØÇ,½ÑrKYȉ'ŒAƒùJ1`¸T ïVà=œïg'õÝ…nÍùq¾I˜z'94zÜž±R¤lÝ(3ƒôö±ÙN+¦ßáJ81c&ÜX71¼”1h;žÛ]V4¦II—(†ÁÑJµ½¶?d¢;˜Õ¸6JQ2¸—ΙÈïB…U˜˜.T/]X“MIÉ,H¾ËÃZ ›ð˜,Õé‡3䋽 ,‚ÙÓq€]³:kmz¿þyØ™pWym9J¼b +FðaŠa šóO/n9·Tá[˜X…Éi±B¶°7ì +Áòîtsø¶d?•¶¡‘¹”¼Ìb.¿-÷ó»OßÂF0(–F“’YkÚÇBêÄcXšé†SäÁpÙ‹§uÓ‡!Âì„kQ5l4èŸûí«{ùøK¿ÿ#Ê–P~å«ðò"w˜‡Ø¹> 8öñv½£¨—¤$â-Ã@t _—9#¬±?‘ÜGrJáyÉh +ù“ÈP +í[6Ͷò%œ01“Â÷†K³?Ú]èÖœÿ œ/¸Ûr]âŒ3ƒú”†_„Á¼`oÂTÅ0„r¶éâT‰[BQN¦Ä+y j]«0˜Le•uŽ@ÚzÂCÉx±Öö#;Î%q@è%*™Î|è†ExGÄ8‘_¨Ð¤‡…ç™N…‘÷¶˜88Û,6+¦G)nàJ¦° fa:©cSvMÓLyÝ$7Ë;uÍù%ÿ4çk9Íùs¾€½D]¢%‘)OÍ‹@0$º¢'f +ÕÀQJgzv”2‘ÐJܼoõ’u9øõï^ƒ£žyá7Ä6¿üµÇÑxZ-öuÔMÅŽP:½²h-´Ï˜tQ$ DéŠéã‰Îö¢9ÿôâ–ãüS¼¬Hb%)*unÂ=¤Yd[ë,ì'Ï<Ïm|íõ?Ë)%k /r¦"Ðλƒ´~öÅW÷ûÔ›{Ø¿¹÷ØÇ>ýYk=åòRÚŸhÌîøÙ{DÃÞÑœœLå[Ä<+W[=Nl‚‡”A®$M¸"Ñœÿ œ*£ûäâñ×]vêšóKþiÎ×r.šóß•ó·?½”€.ã_>ÿò‡ýd<}”ò3Ÿû"Ä BCV”Â$ï(gI#¡wˆNC³íx¾«÷ÅNçä‡>ÉM˜¼î&\àªùcUãÐܤïñ„‘d. {ó i fÊÇÉà4篅4ÛÖ’µÁ¥r£¸oié÷®–éVPküœÛûÃ…OêÝ Ÿ-­Ô?h:ÑX¡¤™¤ó€ŸÆŽ<èzËœ°Y6Â÷Âîøpø¾À{4ÑDñùðIBøtñ5ñ‘–«ü½tÑ­¨0½íg¯.tkÎלÿÞÉÎA]s~É?ÍùZÎEsþn9œ€¯`‰ƒ– `€XT²|¦s¯ŸÝmØ9,×ö ØãÐè]`œ€í!JJyâù®Þ@ÎÔÁxAzÄ.¨Ó™Ó‚öQÞi¹è©DsÅøÛMG †—Êÿ)ç—‹É ¶wg 'iõ +.å*Ö­›³?Q +LeÀp©è¢R:Ôôó¦ Tˆ0éLQrŽ”Ÿ.qÞ‰¦A¶2½¬f÷>@—”²þÞÐ.Aqêl™S!…ÌÙ]­6Ýg®© /kƒœ–e‰ Whd•+Íùq¾d÷É=xüß²kÕ²UÑœ¯9ÿ:‹æü‹9Ûñ†„W­Áì°Ó^Ýo{U;ªX¡ +? +c/_©›ì0(z†AšÆVw`·$­u +À@àìªGs`úŽŽŠ›-9@Á{Ž‚3Ì”b0äÏkοWÞª4I3‹€àgƒ¹ÂTÝ +¡S±Ù°,¨j­˜ø + —µ{n<ï!yÃMÝxÔ°ânÔî [΀z½BþŒö)·Íùì‹t¤ï9[c§‡†wh´÷›.d>VEÖÓpÒ¤Úé–ÞïÚ,™BwSP’4]ièÖœ¯9_ËeEs¾æüë,šówËù )Ù@žœ?¥”RMAwê›ì€÷X G8êÐ>g¸ØytݪÈÉ€â¤H5'æå9OJ¶ÿ÷Úý¶ÍÐüÛzË÷ÏHšë.o“ñëÆù‚îÕNB¤Mwàg'”Àðp©î6Œ»ƒ9)@8V®¥³GmÿØŽ`Y ƒØ!­ÀlÎÿ¼ŸžË®£™–­Šæ|Íù×Y4çï–ó¡MŽ¤&a~(]š°(°J¼?«Sn²Ã\ÉŠ·>™2¥jG /Ýy€Ý’°ArÎhGÂô`?§¢“ûphäd¢¹¢Â±„3±£aü&û×óÁQ…· 4štZë†áx†î% p’QÝ +!á²öñ ƒIEÖçJa=Œmö‘>4œ„ÁìbÛœÏrìBöU1ûl3;QGm¯nõÉeö›n+†üÝpHoYûäà=ÆÙ˱ݧIAóêB·æ|ÍùZ.+šó5ç_gÑœ¿[·$Ôº›@ª)dRR‚£@)‚’1ñBü5'Þd‡ñn¶d$cPV4;°[¬àð`ZlS2 Ž‘ ÌIr€>ÇŸ£ßo{?cþqtÜŸ(R3ʘÎ)1þ‚ßåšóÍpZJZ~n%‹¯ëÉ=XÞizÞHQ¯Ùz±ÙôF4½, (iߎçßxâ©x¤n% ~ÛÏ«ÈI®ö DÓ^zâ–Ô‘BLÿÍ~¹ÆØUUø2¦Ã 3­P THALE¨!`(¥¶´öm‚%Ø*ÿLˆñ‡HjÊ«|ŒÑD h `„±B;™;ssϹ÷œsÏãžÇ=ç¾_ÛïÎiàO™d¨Ø3YÙÙuÖ^k;{kA²P4¿“ÐüIÙ&¢BM˜A¼—_{#áϨEÈwÌ AøÿÁÕºòk×ÆúG&”ªÔ5”N þûwuGœ?ç§ Å9 Þ«4'•9©½+f£+Gæ#9ºó ÿ¿”ˆó#Î?ž%âüù9ÿC¸B3ví°\˜-T%§>“÷³^“>-“SŠ›2Ë“9µ‰¬mTÅ{AŸÏÑ íLkÅ/\µ:Ö;òAßçÇê}‰õ¯¹év`’gÞÓ§&¢\ì³nΙ,Ò·äL”‘ÞÅgüè½è£ŒÂÛ)•r âü#îµÀø›vÝë¡ÌC¿)=` ž5+Lb™yà?mjzß6gÜÄd&Ò‡lÏ<-ý”æËþ7BÔÿ 9Ÿˆ`x`ž\%4[æö+ÔV^± +©b&e‹¨ó@m*›UºÞ.ì^UÝú¿q]¬oD÷[Éñ6ìªHªîûwuGœqþ‡'ÇÔ#Î_à_Äù‘¼+ç[ΫžtháyX=¡²Û  ¡]¯†I£D-@ 9óÙá ?Wl¡ÉW+¯¼¾Ñ)ô}~¬Þ—žþ‘;w'õ"Âb‡Éy†§Wl°ßiŠO_öõ§ž~Á´+F¡|ßÞ'¡ý÷ÿ}̪@ùÿ•ó­Rs&k¨N¹PnÉfqZÖ»ÄP/ÖÌ 1›wRjá~)60òãŸ=lWÚ’bkf°a󭋆—¦eÓtª~E(zQ&5×rk´)É #«Ž]lð¹Sídt7W°&ž´fó^ZsyM$=Èä}ÝkjNV÷ÚR¾¸iû±þQÍ®¦r¶[iÅHeÝ·KÅ*'d‹IÃk0‰>ãyZ³³–q,¡)vAb}'o¸õ.†!®³: óÅÆtÖJªNÐü›ÆSªêÖÒyIÅ©~åêÕç-›É`°¸l¢ü^ïÂGó96d’£r(!Ãöä9ïUßafÎOEˆ§_xÎÿéC’ÿ\ÞóJí;wÇbƒ°}&Wûa{Z7hAþ¯^k PŸ™.ð—šg¤R»KÚ!{'r•ŸI©áwa׬ “V½xÆÌäK9«VjŠu›o‹0ÄΈîÖ&9IÁy›HªtòN-™µœ²˜Î-N‚[øO è…}<çHp6‚– 3-giC¡óÅfJó`f’<“ (švJ2]~wš‡è~ êõÇ3y-hÂù9¯†@ø‡%•N¾Ôbžc¯ú £ÒùW"äó³Q´Qv"ç–áyHžpΟ¤Lªf0‘Ö4·Æè½ ?âüˆó#YDœqþñ,çÏÏùZIÆÓª“È;`*Xë·Äab¯ž1ü¸”‡ @¦·§3@@R @žhêå-3ãîÍ*!12©Ó˜cÏ<¢ïÙ÷ÛÁ°‰©Œæ7†}†Ó²Ï£ P120: }–ž}ñUŒ<øØS¡aµ[%½"€ù×Æãô¿­Drêã’E'äü·RùP-k€VUˆ©ŒžÈ»PôÁŒ6£»þ›3’Zj‚L9»2#™´ÿvJ%X +’CD6¹"@†€7%ñ’bÇüW”0q 8­ïä¬JDÌ`>†Ð#vK›9ÞÆ$Zsš];±ÞáuÛwÍÍ›ð?°)žö¸g–ÚÿœŒS‘A‹r øqjâPRÙ°}׊/_É?.ci§çª°£ÊGóI¦48 MŒØàânÛ3ø‹GŸd‰äŸû™KÙþ‘¥±E£ç-_!)öwô-Z‚Ah`èTÚG÷Å“ +U€B5÷o?ëêXÜ3ô±O^ø9Î'' Ú_³iû²å+þôü+¬Žž~Î~ø“É´®{M£Ø²Ë"­ú ÙÚ´ýξ¡¥°XßÀ¿hôŒû÷ìg˜3K´ë·Þ~îEŸOåìbM0´+m|»fÍ·yš‰nÎþ%/½~ ôyèñ_sTn¾c7ž0Ü|ë]¼b€r’Cß׬ÙÄ é^ëÙºs7mWº½jýÍç}vå+oŽ òÕÕâÃûÆ8†œÕw0i•;” W]¿á‚_{öE,0ùÐc`ùÆ[îŠõ weð”m»¾O±ë·íZvá¥Ï¿z \½oÏ~Jž°vâ([SøÀíë¶îìù8¦N8é”õ7ßÆwŸ]«´qǧŸsÑëoÅŸÑui`ñž}c,>eZqþÑþ"Îdaq~ÄùdzDœ??烾 1 õ‘"HrÛ®ï]vÅ7yRPGßÐÚ-·€U@,ô¸ù¶ï~âü‹Ÿ{¦ûj÷ Ý¿÷I°óñ$ý“N=+œ|à‘§À É .¹ì«GŒ €ƒ§-ûT¹#Æ“Ù—ÿq0´L»ôìóó^˜‡ŠÙâ½ûÃO œË¯^È]yÝÚîLÿp¬÷$:g_p±[7lÜÖwò© 1˜ ²Â¨OlÑ’nÛ;|ÿc¿ +ˆ]»í;g]té_@8Ю´ø´{î}°‹N%©{SjÁi ­ÜJÀ‡51%3pFKfм4°äÌk×nQ a½/Qº|kËma˜HßÛÜ}Ͻ,‘±7MÇN<°ÄÏÓÏYNÒàùÄ¿Ù¯ó訪;€ã=!R¡ˆ‹mõT¡R¢"YÈ…@  Ò&¢ˆ(RPã•E‘½ÁÊ¢4 i–Y2Û›åÍòfŸÉÂô;LÿÎñOŽ3çž9ïÞ÷Þ}¿{ç¾¹ŸŸÆ´°h5ÕóWjƒì¼5ºê=ÝÒ!Ýyàëÿ÷×ûÄ…«p({a‘ÞÞNÎEê1)snðT|Ÿ¨ä~`^gó©DÎçÌF`ôÀñ£#Ÿå' jpt4 ­öÀíö…»ÝùäJõ2Í‘“5Ìdaq)ø5™ûe‘ dœÏ-ÇŽŸ É¿Em¤•Îš=w1¶§Ô×Ë`eåÛ_øþº`rš%ÿîÏDÇ÷©øûf…Z¼Rß293·ïà¡ Ze2OxevHÎf«·EcÆöl©j“»YeÖˆn6Y­èÎÉ,˜è^gÏ_õx+ÖQ=vú.µº™¹ù)ý0Øü’÷¦R0|tlrFNžÎl&•˜5oqh…ë’Û{sa~Q(C)(YËÙ3ç.ñè²Ê· övP=eæì7ßûÈp Øû'°y%H›m.+oYpM&Ýs¥^æñ +ŠÖP=^sù¿*‹!#wQL\o–æŸ9¯ ¸¢bST‚Íbó) Ž¬E«+ÞÒéí.OàÀ×L]âòµU _góç3–[·Jíno€ÿÕ&•iAa)=´25yYaiKUot:þ/ò‹ÕÞ$¤z™néªòàƒ¢zÖ\®sºo..~µýÅ7çêÈu]]açÿÜ'ìüpùe%ìü°óÍ%ìü;;¿>Ù;››F +jïó 9Á­92`EÇ© 3â ü•ë¥Üüå!K›Ìn¶uä¿çð·\¿výF´i•üï¾÷úݸµ0sËW_Ÿâöwí 6ôuC¡<õÝ$¼rÕ:…Úh0ÙG¤½0ðÁGÚŒxûà³ý\üþ‡»:ºxsU™sý㓽 èÂÅ«´oÛñ‰V°X<]d9 !M˜¿Ú¤úòÌ%â))­ÐÛ|:ƒ}çî/¨nýt_­BO"0cþÒÿÏ]®Sj­Å¥BGO_lԈ͂Uaqý$W6hL­&»Òêføz´ŒªÍ;ä +C³ZÜû剈è䲪-MjfÌ¢·ÈDÉÑ!ì›6o0ûQÌÌ®ƒÇ@~aÉÚf•qznü½¿Fð»„ò~ ÆNõ³ƒG;’ß±ëXýñ?±Ù·5—c{ Ûôi³É,ÞÀÔÙsKÊß`ªý‡{AýEË˸Ìã7³'J@‚q¢Áª-´ÐNvРÐÜn_¸Û¯Ð›m¾®^ý=9f¬èBõ.ƒÝÓ W?õ̸“éLŽŽÀþ£,˘ê=û¹ Mo‘¼]¹ +z$¤œÿá'Žuf‡\kŠŒïµ¬¤Le°BljÓgŽ}iŠLcÔ[]¬Ûà*éY±i+ǯdÏgnwìÜeÙM¦Em‘ë$kìoQ‰sƒüÓ®yºr­Õî DĤ¬«Ü¢ÐÙd Y@ÿÁøŒS‚ÅKHĶtU™\Õ¢”•‡ócتZµF²÷0I_̪òJ«·“³ gðÐGŸó‚Áæ•kÍj£ý†Œ÷ÀM•ï!?>ö¥iz«Çâêœ2#7¢{üÙ‹×xAH0ySXf«Ê_W‹ª“fäDDÆsL♽`i¤ÔMÛªuV7i߸›P.XH ˜½C~úù TiLŸšI?ŸîûRi°‘wÐ1ää‘×ÄÙ<7 I¦%o@+: ƒoBzlij³ƒÆ©™s¢S¿¿ÞìMÎN«7Àë³~ã»zÉOŽvþÏ}ÂΗ_VÂÎ;ÿ×\Âο³óÛ¬~µÔѨ1ó_Ñ¢—P1>ÌZPØ-!µ²¡7*ÎŽ?äO@VZÆO›‰ÒwìüK°é{ä~÷¥¥OVè­¢«£A®EϾ4µßý¤VµáбS1I›¶¾¯Ìp S7adÚ8Ñá3JÁâ#ë¯\Ã1û±¡Åá஽_í—¼­z—Æ$qŠïœ¼%±É¿á¡8¤gßAOŒ §µ&*ÏŒŸÒwðPå­Ì"oY J¹øcñ[\7›”F̶rÝë +ÑÙfq îN½§ á›ü¨OnBquj›Ôz«!0¤!ô߬6áÔ#¡°´ÿ0LGÏe•o‘’på؉Ó•f²£/'Œrò\DlÒ;|ïq>B6»Û‹Ö¬GÈÿiV4«…}_ŒŠß¼½KlnÖ^ú䌈n16O'Â׊vÖU|JßÅÅ«Y‡œåTqéúæ6!X5JЗwmÕfÖÕìùK˜^³¤—l¾€è¼I<|›] +Á)ÓZÙhÒ'Ïì“ši”+U‡`q¥ô{àåWr¿ÙÙ5kî’ûúËÏ`óC}~¢n‘±“3³‰ÍèðΘ“—Ðë†Bãì Ôµ¶}w­6õžU[¶‘®‘pÁè±zõ½¯Moó&»Ÿ¢3»ZÕ&ZžMŸòÇá£ëšU4fÍ[‚½6;þµü°þ¿2'¿ˆs2yþÒ•ŒÈälg½üjvDT"c¤°¹€F–4ƒ¥ÈtFÞhÖ< žw|^Á +näõaZH¸…cRFvLl¯íyb£\G0FÉ×¢2Žø˸‘i/!)@öüBbê˜7‹‡íX}Oÿ¦gå 6_Øù·ù„.¿¬„vþ¯¹„gç7 v™)ˆ=ÁÙ öjú­iüô,TÜgE`¯/Y_ÅFþJ-âšœ™•”Š?Ùô=À‰ššˆè¤•ë*a–°·8UZñן¹t MæÅ'ÓÒá½ ù5ÚlÔs/¤OUiÌ ¿Ug¥…vŽ¹ævûÂÝî|ãÿØ/÷ ¨®;Ž_»À‚`qê#€Q@"jcM±µŠObŒø@Þ ÈÃÔˆ!Õ6FkѶ“Æ;ßÚÎÄZíÔ6ISÓÄ6‰â;‚‚,°Ïûؽ½÷î½» Ù~×í$©f꟎»ó›3çüÎëw¿Ãù|ÝÞÏoÜ$¢4¿9t¤ËF±*$G‰òþ£Ç#?½v£‡¶Üz™Ðƶì݇ÁfÀ»Ï_VS—À«^Ö8w0¢k|VöÊÂ’^ÊÞa´‘":&:!‰ˆÒFÆ'ã¡ûVÓOw!£V•T…8ßÈH0³]±8TíìwÈC”àë2³å5›ˆˆxP( ™˜Ÿ4mfqe#-x‘KË×êÇ>ž '$°_ñ#øšM›ÝÃN‹­ ¢ +MÁÛßÖcT‡¾lm»…&¾ÅÈŠÑÎ>•3gҔﲢÛ.(šŸ9{>ÒI£‰¶lU¡Ò7d¦¸b}M„6ÁD²¸Sê@˜–9 ‰úòµ%Œ„›UݸuÜ#¤+òNïP*5>ylhÍȸ¤Ü¼üvƒ²¨¨¢?•êêî4’œä)­Ü§Ëëïì±R¬”÷ +lšKhâÑD¨‚«¯äî\è#“]në&"§<]Õøª…UÏp˜óïõ s~ØÌÂœæüGÙÂœÿÍœo‚ÞëeÀ^ÃÅȾŠ†-D\rˆóŸWnu7¿±›ˆŽ¿|àå²ê<Ü}Ã@B—™þðü ÁÞwŽ(¾/Ñde/Ƽ¹ÿ ÛÖe¢9ñ¯þƒˆÐüöàQƒÉf´1×Û;ÑÔèQ-:6TÙ¾kOëµ›¨´üê-Ùãó nŒ§‹”gþò¡‰{÷ôŸQ·ÙyNRK+k0ˆòÙÌŠyûàq° +vGif„C¿ûœ¨‡(l<tu[ùô©ß+«ÝÔ˺Àù¤â³{‡h÷ ãñµ›rc9s—Ñ2&ê.Må¿´.¤8@M'?i¢y|ì¶{F;÷¯VpTëÛÀ›¯>ç+ÛÑòKÄœ¿bu„V×k¥9¬ÛLfM^P¢7RÜ'®â¬ÞØý&¾êàJÛÉëÇ‘®)© &ž•»8¸8J7 +ÀùƒEKi©ÿŽd‹$÷~a>àòNÞ3ÜeãC*à~ïÂÃÎùàKí·ïíÜÕ;û|´äjÞñ38/ßê°»Ôc§N£~ää) 'P‚DòbaÅzÀ¼sÂ8£35ó‰òÚz++\iï@×Ζ_ô Ã5¬ z [¡±{ñú†hmHŠ«›Ñ'÷Œ´lb\‚;`e½È«Êº&p¾Õ}:ˆ¦ä |;5 N#1;\¨¯OË|J“â=¤SŠÒÆ®(*Aœ[_߈PŠ[ðC¶\¼ÙŽæ¾ÃG¡_º)Æ58l2$r“šž5uËÉVF%Ï‹ËVO›‘c³;Ü%•È%È$$´¤•F§eêkQðèk7ÆÆ%ì‘WÅw)—cØðŒ›‘š‘Ä~‡èö Îœ³Ye +ÉPº¾ƒM4‹fH&€áðmD$ÆøŒì´ôɈ‡ÙÕ7gÁ’œ.ÀDUY»1*Z|‚§ú’4r\úêÒxl¼;Ìù÷ú…9?lfaÎsþ£laÎÿ8Ÿr t’)ûÀ~½Œ´V_˜´pªÉ.ÚxEðø76¿ÎG“â]xô#£âL´à<_tö‚¶üd'@½WðÓ¶pž¿xt'ÏœÕhu'Þý£…fA¼€y4_ݶ]pº;oc8”Š +rÏ~ `|ðØï)Öi0Y@ø¢Ú$FWH,ì?p^X±~=<ÀøË7!b^Ûþó‡oÀÆ¡Ú f`ɺòj F¢Ë`á¼C¤±W•T[œF줳è18$ >J‡2N3~rJú4Ê¡8E7¨fÎÜE3fÍÅ +ØäíÈX"fÊ?½ÿ6=ƒ¯ß‚só¶¾~?ÇKø(QR%ÙÍð’‰´ë«ë‚ªDqV†SúG$®ÚЈ³úgëõÄ‘£7nÙ†£Cä .°–‰¡‚ÝÓ³§ƒÖDÕÇØÀøç^Xõôœ<`¼Ñ.ìo`ÎüçQy¬À'±#a÷{vηr’]ö¤Nš2k~ê´¨:\^/ÏÌ]”1mº:ÍÔÕÛ"2æ×ïF#¹aEUàa•>Ê©þ”Ìì}õm£Í=HN™°®¢‹`R‘¼Ø%®@ae¡M©þD…ÿ~D|0»Ø_PrŽÒ÷’é-ìW­wõÌŒÜüúžP/8½§ß?GÄ%b;Rp9½ƒõ?B`¨ H“]¸ÞÙCDǵ¼µM‰›°àÙ¥iÒ!^k»CDë^nÚÊI†wé¿óÔ¬¥+ Ð%¹Ö•VEÅ&šH–WŒ”€­G=–¾º¸Šs!BoQEÏ8=fF,¯y™ÐŒ 9~xB·xëŽÝP½Áéýàüœ¹‹Ÿ¸ÔeÕ ž!ÂÇ$j—‘¬®ß„)ÝfuT/{‘¥µpÉ‹³çåõZí¾áÀK¥Ú<ÁVN ¡>8__·uxÂœ¯_˜óÃö`æü0ç?Êæüoæ|#ï…ð;l<`È×C‹kÊCñ§ÞûØìÀ9`žgæ.NÉœÚCñvѽr]×e¦Õ(Þ?ž5mö‚%`T+¡ ˜÷ìÒ”ôÉ ÏID̾Ç +® â´Ì)%Uu!]XÂDó@åN#9~ÒÔB}MHA`qL7XPÇ'®šøý‡N`üØkÙšbx0»¤fdÏÊ]Œ.p8&bšˆ +ë`ñ¥Qº‘¨ƒRuÈêPÒ²¦U5Þ¡³àç¨ßË+”:` …¿v H¶½e¯U±¢Zøüòܼ|„ùhÝ©³Ã7"`”Øñ€|ÆcŸ¸ßwÚqh¡à ŒŸ Å„1XõÅù+¡#0§zæ½s8±êÆÍ8«K_t ÞØ´ß…Õ CžÉ]2sÞsð<¢E ƒ“ 4»l<´ÀýÞ…‡óy·¯Ëʼ}ø¡Ñí;t¼›t¨þ@}ÓÑ"2îÂÊé.«'~ ¢ÿÃù ÷¢Š¤ ÐF A…TÔ×¾‚5œkð£OƒIµñßì—yŒTõÀPövÅRh««©hL ôE*‚*—» rXE¬¥'±Ú¦ÑÚ4âU‘ÖM¯˜¦GjCc«UÛÙ{fvÎ7ïžy×¼¹wæõóöõH–„? 3ùæ—ßý=Þ÷Íû|÷|[ÐÜ¿éÇ°¦æꎘœAÝ⫧vM§ô íß9ú^~õw ±œ*fÞçMŸy©•¯&D}Âùí_\¹F"ñ²¹-ÛPÚ<ÿó7•Á¿¨°ùî­S.Êø¥®MÙ(̹úú-;vëN%.Ëo»³iB+æ±´ùÞè³A1‹T¼eíÂötÈy^™ÖÎé o^N“–·î@ ¹ÊyNë–½ÕkïjmëÄŒ˜ N˜Ø²pñ2A1âi-0iÑ’ô%=Û}n3xÕ+vE¶Ê—\~õ¦mÆûuSƒóÿï×àü†œ™48¿Áùç²48ÿôœÕ}!2Åö²%š¥­÷ï™ÜÒÕ4yê{½¡PJ}<û_þ5äÃG¿{Ûý-í]`g_8yòÑß÷ÂKM[~ðÌ~¨À){~u/_öWÿp¾… €Õ¶ö®·o ±ƒ²/ü%~øÜ»T‡r¡eŽzó¬~ó±ÇYzýíÃ|ʹyC϶g¤cF™_~Ûz°ùø@„ƒÛw}…S ;{ hZt±ô¥/Í¿?ô›õ…f† 8tÝ€®i³æ¬ëÙ©äk‚UJ˜Ñ­ùaÕ +)¦ž¯%$[ð…[©ðç8œOŸK>5UÃÄÖ©Lúíym¿úík>îó?ye<¿¨JšÛ:?Šæ*¨Od>ö‰¹k7ÝIT%ßúÎ|í/o£‚"‚~sË”[×lÄ~®e¸lÕZ<%økºwP‚Í£âTªæÖ"¢1ëŠkÛ.š-d QÙLHL"Ôkðÿxß…³óÓY×*{ƒq鉧÷“œíͤmjžr¤/<"f²…ZJwàóg~ü +ó“:¦}æ¦eIÍÞ´í†ýÑ´Q¬Ç“2öâË®Z¿e‡lRÒþæO öû·Mj{ãŸï'Të?Ûu·6çS®ïÞÙÖ5óX_4œÔÆ%ë#s®þa~*fù©ì˜6›Ôš|Á‡©Jf\z庞íèE»ÿ¤6Þ/†Øöæáã-]3ž|öÀp4ö°aáÍ·\vÕu0yD81Ñ}™<¥gûƒ«×÷|vѲ‘4ß½móf¡JéfÉJ¨—}òú¥«ïŒ¤³ßÃ{ñ"*™\ڽ㡦æÎá¤f=fÐòÖ{­šEÛ³s÷›î™wÃìÔr•[×mn:¯8`!Ñ#P‚æP> K̸ÔþÛáImVmÜzߪuÝKnYCùm]ó Œ+Ø0"½òºU¶F°¤Áù§ú58¿!g& Îopþ¹, Î?=ç‡d·÷d·–2K½qn\¾f3<ðnoħ1àyþ§¿9"iýÊõÝLÒÏäGùâ€ôÔþŸ5ßÑÔÚéï?¿ã£½°™?§uZÆÆ–n\¶ +h ZTÿ–æ)€ ´HÐ>¼÷»þd ÝþéEKÑÒ7" eß‹Ã`ㆥ+QÎÁE1ññ}/°Ô6í’ÿðA(‘õ)eùQ‘Q)k—CØ>:V©Å›!ýñ¾ g;ç™Q'nÐl¡äyQ6Œüh€Í|ð€ˆ­ª;$!a'j™ÏñÄpœ–ãduðXéótè'G™/Ö£ ™òu›ßV9¡:ãqþp\ͺõ 5òžfW¹Â'Ù¨+ASZÈ¿/œÎ¹užÿP"͵$™@‹¢b,—ñ‹¤¢ŠÁ0ª|26’ŠQ§õ\\2¤l¾PôdÅ’ÆfX2ò5·ê…“ªj•´±™‚çA¢Q”Ì!ŠÉ€ öó¿@}DÛ š +òüæ+©:eI1É7Ë)ûqsʼìø+™œÿ4«èÀöÑt3ÐÅ;Eâ¿ ÛN…™L®Ì`-í`TLj9ÛwPUj¶à¡‘ãäðpƒóOõkp~CÎLœßàüsYœzÎOš•”U2 _D±A>³ìmÚ¾{¤(1k·šLë€4ÿ!°Ň¦‚…@Ÿœ+þ<|’’ ŸOÂIQ³éW `à3˜‘‡jJŸÇ€ÈnºNö…e#í€å\ìW4Û†F¢iÐ >WèG dYµ·æ¡B3 l¼›ù–ˆ™¬SÆ* ˆ¤e lŽŽU(\ræ +[Ë +V)m—ûR*xê;ž÷îP,[ô\¾¤qU‡ÍÌ2— ¯¡£˜¬ïþƣͭFÂHt^ýãë3.¹ô±'Ÿf¥ãù…êHRÁf|agài€—\…b9¼ŠåѸ„S̼Jp°Xö2c1ìA0Ih9Í­¥d»2œÒ5Y¦à Ä•Éd55†ñ§”³ócjÑó©l\vb’ÒòH(™Nè’Q6 +§âÉfEsjª=šÐ\ Þ6ËI=?"YÁ<||8E?"š Ù0œÊ°JÖ‘6Aó° pò¿?*Çù¶éyð~DÈö††¤YJ¹„l³ÍL®–õþ¡˜’q½à86c6÷Ș›Íb¶4U¢¢¥çê %gyË4T“·a!3W2ù:¬Î§ €§¥/[eö€Ð쉈¶hVõ¼G›Ð +I½È{­¹^H0cŠ›6*Q9'Û5–˜Qœ:i/ÛU5W#1ÅራœI2*$dù/%>ÄŸÕ¨lS>UQ )ÝÅ +Š€á† =Û0•UPŸU²™#?ÒàüSýœß3“ç78ÿ\–矞ó#à“=’LÁ*ówAˆÀÅåk67Ml²8çH_vÕÝjl 㓺 eD4r5o(©Ñ)™-iÙ`”<(”ãPèɘl×½”Y‚!3 ²îž)(ú“Jý²bÔ*2ÒÕ‚7”Îæ=C%_§ ”J„!æÑç C îK¨ÜŸ³-,[«à+— ¥ô’—¶+\È<-g9hä½hÚ€=€“1I-Ô#šÍäb¸fãhˆAk0[DÄ ho¢Ô˜oN(m²×8Õ{a0¼7g•§¥Ž²Í[ƒ”gVì55Œœ_œí¨ç{Yô¦ë Õç£n(Ý{³üž6/gº·°·Ÿ;)èY:Ó2ÛÕãòi+ב-NÄdù<]½Äëºo‚Ç#­¤­Ér´8ŒËSŽä“M²±ÃéÝ O·u¼~¾—‹C=ÈoG B2jŽÀ¿.Àå[ÿ'•þ´bœ·ƒTüãÅ|ûª·Ø½õôoxåüý]9ÿjßÏ®œåü/Ù®œÿqΟmëþŠ—"ðê íÌPb+ÊÑN{œ ’r韔˜ÇDðûí Éë@‰Ýt ³1íW¨®àÑòÔËwÝlKÄ›g=ÌÖÿîÄ÷Óeh1&ë§ô±î¤F'»Ú|ˆ°äí0§‰Qy4g°ØÛ­TæL«gÒ1mqªmKØ(Îó_ Ã÷ýd^= ӵ߄Ùæ|?™w²U@ýIuL÷/_·Fèú]{2É·8_Fï†iàs /Çê~Z¥¬mÑwHÓ¥Qq^ËK„R¸ãÕY¨æ¨‰DÔÊ&öWFíÀ¦®µ Ï,jHkm<'†ã´T:‘Ü´aÿ|÷ò¦=-¼Gþó›Ðž,´å¡îÍ–¯}>wÎ¥ÛŶɃY…Š;ãl§«çQºÃÆh9[?#üîd‰“›iŒ¿ÎuC8˜í’õs7^+W+*`³.`˜¹|ùnõgE”¯×§¦Õõ_ÀFY•Uçp~±}ñj½ïôFÉzÿRßvãÅæ™ç¶Û÷.A}€êÊV'b”®|šu%ý¸ÂüÆN µØÑëÉ|O´£\ +’²?ÎÏ*€êý¬llÏ鲡úͳ»Æn\˜3[zig¬Þš¬'ˆçØ÷ÒGb®Ë˜müýx…ê/´¿óýl7]=õ³Ê„v¼æ„úãòø0]wQªeÐĪ‘o›_×lã53z.¡û~ˆÊ%ÚH_îkÿt½¸4ª$ÏêX_9ÿCWοÚ÷³+ç_9ÿK¶+çœóÁçݤD•s$?ߢ÷Î4ñ1…ˆiuùåþêt§óñ¼‚úˆ2€ + …âÿnº +HŒÿuî‚sè‹Þ‚lá.DǺD†%’ +¥G˃9¿æå8O|€y0Œ“MÖ g›Ø“ß&a 9íC¼f2²ÐC-úó%šƒlnBu¬ßܬnÂ(¬ðä£ýhµ7Âæ‡ñŒA²ö(;5AÚ^ž›þD^.iiJ¹<×Ø£ýæÇ™¿’— ¹ÐF& Nµ +´ÖS¸‹"—ØÛÎïC/ÀÏ`*ÂG§ƒt ï ªï'…G6»L¸ ìn.Mxí»ð¹s~àRð‰Ki ÊI³Öd&gÕ ^,Ï’ o¬"‡ +xŽƒKw晆>‹P‚3,;\Èö¹3«Gƒg#ÿhq0¡—nq^°¢zít¾Æë&àùc4ßë¦åI¡Úu„ÇújœÙŽ6:k?2©Ñ2ó:?Yãglÿ0^,¢æÉ·/x›N«'—ãoP~ó‡M8-ÇáŸûQn­ /x¿ÉìOR“ã·1È=y;Z„vÀªV4·›ñ|{R‚ùt?ÝWοrþÕ¾«]9ÿÊù_²]9ÿãœ8i  „CL¡Îl w xŸ¬öh?«Ž£lõ! +¬5šˆ—¾r—­iÁC@Ó@¸ÔO Ø&hs‚ÍáP~{þï;¾: iX`ðÛa®Aà ·âøg£òx3ȼ޾–qTݸD¿p÷¶?,6(Qðš”iÑìã½€¬ ËyŒáÛÚЄ€å(+‡4$ àí  Ø?_Z€Â•Û»q:^î:`;«sÓŸáÉ€”a¡¶‹c­8æäû¦_hš£Õ^5ßžï‡3AÆåNÙÆKÁ’]DxRŸê»ð¹s>ÆÛ%ðöŒèûq<‹Cm |8¼i‘»0jš¶uMxrÈ÷X9ÃÛ tñíò\ßEÊ-ŽµMxl;ß7œïtsÜ*O54ËŽ¬‰vµ¯¯-üºñz qnŸ=÷ÐÁ½çòÌFG7q^¦¡èñ…ä19n7bìd}Ø[Cç.?òW"…"L ô7Ȉü­zÛ­ÒX8-µ!»V”»åDÕCòŽ“—’zçEEøÈ|¼&VOMl•ƒš…Å^³€ð¿m1>‘]9ÿÊùWû®våü+çÉvåüÿËùÈ»ÂÎ@}Ñ| ú(½xÄWØç#dº3ÉQJ\½% f8öM/& c¸‹Q jþ_öË-V®ª À“Óž–½`jµi‚4QŒ> QÛ€¤•`I›J…¶€ˆž1£/ê›1<(F"SIÅ#à%Bx0ƇÞÎeÎÜ÷ìËìٷٷ™Ùs?³ýö¬ÒøÒ“c2/µ;ù³òïµþµÖ¿þõソŸvbe† )&Z€«èÇ€!ˆ ø´–dÈÇ+Ò^V³×Û± nøÈÝa ,OÝ E‰Ájx'CË A# ®Ô]ü/ë ái6ù(¬À¦b_j²à +ú +¶Ì)zÕjùý˜~h=¯6 b˜–³Œp­š 1BKxÉ“‚Ö U’8SlšáªlÙí5:Íæ½€X`˜é3K²ìBçŠd²‹Åè¬ÏîìhyÍjͬ{aA63jjG©Œd»c·Ù´IÚKI¹×$=®íç0[µÞó3€ÃÅ ³Z#<Ì«¶…ÛøLK? ƒÏ$¼8 +‚h1s¢1mBÈ~/Ä º8¦°dýl$ªŽk¢“ã/W ·ã!¾á$qhcl8Á@\§÷éN9?åüT6*)秜#KÊùës>Ы… »ÂÉààás»…’WL´½K†w¹ £Æào ðÃż'€X(Íð3¤ŠÀRÀE'kZè ÌÀâ,}!Ð °B'ÌiFcQ ¥jX” µ ïôbÒ¢²@õ F3FAk®˜W$bG3ì-•ØgTª9T+°4–˜ë,%%ÐÕ¢âàì,%j¶¿±d®ûüêip¤w¹X£]•mΈÃ%Ýã¤Á0^ªhÓ«ùÁ!gŠ"ÌgçàÐ/ €ö^w êSƒÀùÔ#ÄÆÃieBãÈ“B©Ñ妦õ_ø?à|DP¨ÐÏ’îx=R´ ÒÏ( ]Ò}&’ÄÄ“”€r¯².×AªmÉ=.+Æ\ + + 2ÊE³ ‹ˆ:a.à Ó²8ô ê³³Ü}ÏÞ~Bs< ßïŒ-¨»½\•Š€¥(F$I‹HN«P_ÇÏ1tý_~:ôàÉb©vàÞ7oÛM1—Œ¯yBKv‘oèKe}ÿ=‡3[¶ÓÉ)ÄËÈ!,‘ÏìûÒ–&i…ÿÅKÊt>•$öUnÇZ9,™¯&5Hçüªœ¹éæÌÌ|fËŽÌ̦§Ÿ}‘)x( +"Šé}ºSÎO9?•JÊù)çßÈ’rþúœŸÓÅÀºHÅö/µ äôùû­Q¬Øa^Ñ-˜X¡A#ˆB°+:Xrø›ÎnÿÐ¥BhgÁT‚uµ { aJAsŠ‚åJbap‹MñÉK& +~äûÙ¼sëV-ð4¥Å2«yE³…ÒèÇÎÙKH‚@u>zâ‰ÌÌ´ÏY°d,‹†W˜” `ÏDt6u +a¨j= ž9tôdfëN ôºã+_Ël~?sØŽŸÈÌm÷úqV®s:zˆCr2!âÈ …¸•tîBî;òHfæ}.—5PŸz*)CLŸPà9눪G\ a©8ÙëOë¿p½s>ŽŽª ‚ö`f‚‰’WÐ& +t +? òD¹ +ö\Af^2œkêÆ1Ñ&æ¢j£%9W¶ìÊ.< +ë¬H&é*x˜–}Åб“í¾åcÑZ\©5$Óê¡ÓŠ­pœ«6twðžŸ]câg÷Ú~^{‹ PSàŒîuo¿ó>rƦr4ÕJ½Çåm#jyI[eÞ£hìuãÏù fªÓFdò‡ûÕ=ú™…Â"³ÛvÓ)qFÕŠ=©kŠ5­Ùà“M}^ɶñÿBNÙwç¡Wÿþ.>cöÜËç2³Û{ú,—Êuì±Á”$åü”óSÙ¨¤œŸrþ,)ç¯Ïùv/^­ù«Z˜tzñ²l=æœðæ?/$4¢˜YI×½è{?þÙü®½¿zîEàü_— P+4û›ßÿ!³iþ¥?½ÁãÑ“ßàÊ,HU›ü‘A&H^”À- +åDc”lÕdÖb©F‹°Ä' ü†ðÁøä·î÷n»ã.v¹ÁQ'µ ¿T5)€s©Ñ5¢˜Gø¿há ¿³Q©ÈVðÐcßÍÌÎù°4sÍh,øÖîÆlÁ‘™E'ÓÙƒ¬êÀ½ëƒ^`8Û<òä÷33óüüjuߺJõFÙpïÿƉ̦¹¢îh^r@‚@8/`‰'ð$Çç¼Qü að£Ÿÿ’éÙïÅD¼WfYoà-³(‘Q¢ÔLN9ƒLë¿p½s>LyÁ¹X”¶t!U `N® J‡TéçéìA}Åi}íÍ™ù]§Ïþ…à“$¤\^–¹,èÔ%ø`?µ*×Íâ¬Ì¦l´T–ÑAÙ Þ‡pxÅHZ6ÊV5†N>¹°ÿà½%M¯Ö=#èªv¤XQÝ‚ú~÷ªŸm¶›øé^ÛϨ?ñó­™ùž>û%¼ ÃWê~ÃëÒ^ÌÉüЗËåRÍ…Þ‹šâvb¸]÷:À|o¿ôÏœûë¶Ýyæ…357â'ˆqÝïådËjy¤F ÉD:Qz°þà %­¨Aü~Ì‹/ª‹1nßõÕûnù=Œâ³¨¶¦÷éN9?åüT6*)秜#KÊùës~ÑôËv$(·Pwáêwþ½‚Þì4_ÕÜ6´üÅ»efææªÕ™ Y(úØ£ X®ÐË©… _.Bc€ +þþ0-£TðfMÑR`ctÌþøú[LüÝK¯°ÀÏ' Ò°Kf|‚ °wÐI]” »;†Ãå6é,ÍœîS2G^yãmüÅ3/€xÎŽ?ŽŸsÐÂ1™»¢Øl¡=@—£½†’ŸìNAÁ¸‘8Pòj€Y‘ÌS ?Ü:÷ð›3&/noì⇾µ07s^³à|¢4¯‹BE@ÐQˆ@NQh ËùÕÊ×?>»u‹¬T’sN6¬fÔ/¨–(ˆˆ[mÂÞÂáÈ]njZÿ…ë󉦦ƒÉ¹‘ÖZL܈§àv D‘¤Ôà=óêß2³Ûž~ö4éÇÙˆ %ØżÂ:L$9á†X\d¬0õ#ëpûT¯ô£ $-÷ûÔO~zð#ÕP¶Ó^ÓÝAEo"†?*ª¾ sUûŠŸv º­ÿÕOÝëf)Í0Çð9»,—Éú˜½@zXÝnøÓîE’š¥5úó?Þå]øõó/öô›á£Zòv$ë°&øÀ©EÞ"("oñgð°àtbI‘òð·ŸÚ±çV +„ׄ–7ezŸî”óSÎOe£’r~Êù7²¤œ¿>çg5¯d]Ak×éÅ€ÓÞO~áGyê^•ÃÉÈžz±TkŽbè¼¹õ³·ßö…üô¡”~"sÓNX(au3¼TP±aFAÚlÕdˆ¹Cì’ü²ýÿ°_çÁQyÇIÈ5Ž„DaA1¸X¬°¢,¨ˆ…Å !‘#Y"—h¥$+², Â"‡Y¹ Tg‚BdQt-ÝD$“dîû>2¹ÉìwòÖÝ¿H±Uù‡âUuMõëׯû×Ýof>¿æ¢cePdûÞbžþi*ÝÑøsAÌ#“§È™X‚µè`ðuT(-œ,6úÚ+êAç‡ÅlÝuÈÉZTÆJ…&+w¹&«ÕÛÈYMÁ˜ÂÝ ô°腩A1¾-fì$V«Í0{Û¯«,)™9„JB5y›¯© +ƒMmóÌLËB#Œ­ÑÊ°t xòéɧ˜Pa]LAØS“ÓŠF•Ù¥¶¸m mPŸ}f·y„Ùé¬éL:Ð8K#ÿÒyÚ¡~wý/ÜéÎg'E§/^ÎN +!aBxoˆÃå(Åw†\/ºß àÝž½ž˜8­J¥â“zHD:Sc·9Ž²òòИ!*6Ø9*öƒö3‚˜®fç½ÕëÞŠOžìœEö·‹x÷‚u ‘ÍÎÊŽ¼'Þ°ùÁámØLÁùO‡ÖÚdt¶U«FgKÆ¢ÿ‰3"†Äðÿ“1³rWÒ¨4™gð] ‹Aøu Pçßmûž<^zñ*bÿãÜ×éòGŒ™À³1½ï ŽÞ{ÐÐG蜜NÎ+3ò5ºÄdAœ—/¯<á~Bbuì á…ÈãÅ%³F’‘ζ™×›ï”fï£OLL>† +‡ÂÑÔ\t뾟nÉù’ó¥r»Er¾äü»¹HÎïÚùuV¿ÚÙ‚÷ª NTyCg…=ËßYÇÿû·5ȳZc.9{1$Löî{¡þÕJEÑ¢Ð;¾ºZ ¶íùä€WÓõˆŠ…å4 +¡òˆ¾Þ};l @z>õXOP‘œ±˜ÿkG=5™ÎQ²~¢(H.˜oà >.e›ýÑr­Á”O¨œ2#5›Î5&¯É@Â7tvSÃÍÑϾDç0b5hèÝ—¶` u³§¹3[‰ŽŒýMÁ†ÕV‘3,– ®¥3lC ¿ÔÖr‹ð ÞD~áÿ¥ÞdñÝœ»à úk À©)iá}ï1zš~®×-\¾ +ç×™lz—¯ÎhH´lË•Ÿª„è¸`K¨|Àƒ#È,Xƒ§¾žƒR2’ƒÔh›×änª3Øwì;Bÿ²òïÙLò/Ž†Õáp«µÚèé®ÿ…;Ýùj‹×îï@¼ùk?PšÜÀµèhi¨<~åê¿b]înþh?§Pxà³Z½ƒ»óæm)ÜÇ8'ΕóìÜ÷‰˜À’g.)B£ó×¾O—dÛî":ìØ[ ­±tj6/,²ï€:ƒSGîi÷ß3xXfÎ +†5¹[`ó‰s—™NëðK§Nýsi¦¨Í~{C`Æœìü÷6+MN(:z2TÞ÷Öq.ÝRx€ +Ã2ïÎ}G ½ÕW¯·g.Z*ôˆ29K/\¡²µp?u‹»YoóÍÉX4àaZ‹ÇæmM_Ç]•ÑIýðÑ3Ô·ìÜË-:ó9cvFxL<•*¥ñóS_†ÉâòÞ\Í +}ò˳ɃU÷O|˜|‰dfjvÉÙrgSà'rQw ÛNŽ°¹ð ÝoeÁ…¡£Fç0yÚºï§[r¾ä|©Ün‘œ/9ÿn.’ó»v>t0L¢>` /A&Æœj‹½Y°nÀß]­¨Â?o¯Ù w4àÒ݇rùS•šÒmzÊ*#y2‚AÝ×Uæ!#ÆLyuø·ù;PwñÉ/fŸÒÞDü.på¯ä‹¯é¿}o±$›]ÌŒ á‡Ç|ýÏJŒûf¹Fѱ2&²7öŸ wxû½MÕZrÒt@ŽÀu¨€XZB"#°5ÌÎÌadÆćÉé Smqš=Ó’S…ȘëJÖæîŸ8,D˺XxÙ¥oÅã’tcܳ/w°9x>R˜ŒÊé ÿ HÐZ½‘  ÿáj«Oݹœÿ–z[#¥»þîtçãROk'[}í”Kt7ð·xúØÏ©%><ê•” Ôên pÉKKƪÐYIZÙðwäõã½ååL¸èÄ秳óPÒÄ)÷=4’gQ}JÆbýƒP3ã îÑq›vì…ý0˜• +«9p+ç+´.OK@möY½7M`kh‰øÀ­ãl¬ÖXY´fÞwbF–‰ÒçÎÏ£Þ0òÑqˆºÚäҘ݉Ã…úpËWRÒéfõ´Ð~ìÌê»~û½„are-^&fžæÀ„IÓžš8•4v_{@Ì,özêZ½Qˆì»õã"^{‘÷o[Öêm 8Ì[CäKÞZ£²ø(›ŸïÑu•ÅÑ辟nÉù’ó¥r»Er¾äü»¹HÎïÚù Yçi׺šq>ðÓ{Zö5¥)2:î¥YiÈÖ>žôâÌÔ,lÿب'FØ×æç N†Ì逎æÿi|ºôítCJȇ˂õ[¸0´*»¿k™=Í}úžðütG¿ç¯ü@ÏM;v3¸•óA¸38¦ìÀçg¨ÜP[~¬R#yµ³ýâU¤ª0¹¯i¬ÇΖGËã7nßS¥±2>Dœ“µ¸_ Ëßý ì‘#4‚ãäÿe³8ÅÈÇ“ž™ü2KfXqêÂ7BTìáã_0#w»v~­ÞR£5eå.B"~ܳ“…žrÖà)ÃG?9öñgˆAkóò¬ßZèï¤fçRgOØÌû?4~ÒT1%aBäñKÞzWr~×Îw5v(4³« £Öj­6o«Ósì„É“¦Î®ßWT aò7V( ±O•RÏ«±½¤ô|htŸMÛþ^£6:ým¿ù!<&naÞJYƒÉatøtV÷;k7‚áÊju½Þž¾ O•é¬^ÒàyüsS¸{èóÓ×ëôLʃUJã¯.ýŸNEç;52;RNO­ÖlóÒÒ2öé¤[Çi쌳£¤ô«ÐèØMÛvÕ¨ÍÌbr6ÌJÍÂåÉ ËÞ.ˆì¯Ð˜ªU†ó—¿B"/µzš´œŸÖ#²uîž:wIè)ûhï¡Š*’wÓ²s„Œf°{©ä¯Y/®ù³:!¢÷ªÕëØÌß/ôŒÙ¾«ˆÙ¹$¶j•‰ +ûÀ&O™ùZ5+ 8…Þió+5:¥û~º%çKΗÊíÉù’óïæ"9¿kç×YýPïá|œÌ/†ÞÙ„ŸgÍ[8pè#˜Ò ½ +Â9+ò…Шz½Uoó$ ’¹(Oe´kÌNh”œ6là +œ°¸ã&Θ=J*•Úí¾–1ã“’^|ùZ­†Æâ’³_çÑ9yÇoöMZÊX‹A)­¥3E‰’eÄ!öÝÐÖVFhµ££*ÖÄ!hÓŠƒC™N´b7‰-û›¼y÷=ï–7y³yçûæ¶3gΙäøÃî9¿sÏsŸ{ïsÏ}ž¼ùü.à´߃ ™Ê‰¡/Gš sQÔ8™j¢t¬¾ûàQ²2UÔbcò—[ܬ,ù4Î^¹ŽÆ÷ûž‰ð£MM¤RÞùe:Ns +ä‘­;&.YÍŒÄÙ­Z¿Iò.ªnãæ¤åkËTT(Jð«(ÓÙ9N›³à1¥Á?; 2w>Å艓ßßÐpŽLI\ +hÖGñøJâ‡`·íD)“gÎåqàÇëÖlÜ&ø‡QïLÊ‘“$Ÿ•/9¿içãR­Å¥+¯ó>‹‚–½GŸ¾o£?ófvhD«=íÕ•õ™Ê¤·ºòd26XúwgX…”ÔtÌ’3oÞg™þ¾/Õh¯Ƭ&{õó¯ö‡„¶¸v+ÕÏ]¼ša5fvµ‘-uŒ6tXœ÷u¾¡£'L3Ø\Þ-шóKµV¥FkuŠ¥:üCÙ$DãyV5äiJÿîœOpTJê ̱ù›bÏ„5gϰǨV#Ù._»¡[>LM,¦Íáï%˜ýÆÔé W¸mïácv÷SqŽŸ238$’;ï>Ì÷£ +`úÞĦÃqýÖ$Cé4vÂ4NÉazâbpÕyÓ#Þß{@4k‘'—£ýr·§DgÏ+3Új<¥zÇóûé–œ/9_Šg Éù’ó_äœß´ó‹ôNB$Þ+ÔZeZ«ÂT±ûÐqÀyåúÝŒs—qïí‡*³ó‡Kÿ„ç¯\»•ý„Æ©ó?ÂkgÌÅÀAœ(‚Z }מ3ç-†%ôÀ§ÃFþê/*‚ú Ê¥ŠZOÆ™‹Í§g Ò˜ó!=°Ï“kû½=”SbÒ¬$ ^¨sxKÜ0¥Õ}îj™'¹àÃbµ ç…D™]u°ßYçAû½ ž<{>3úåÞ#ïhÁ‘â˜b„G¶Úü…Õí)Pès>^¢ä!a™´leDÔKSf'úßyÇÜ™òûÄ™Šáåm6[·i›4#‘Sž-Pèïçʿп¥¤bþ~ƒc^ë5@npHÎoÚùj“y6oÝ©}××±1à‡âÃãÆ5Netü|û+µ/íd‰Ú\ª±°^¶ªzÖ…=Æîeáví=DÙÅp—…Øòé.– i³™©F©Îx<ëÞcFF¹´i |Š “£ôlnggóö]B`Ä’Õëé,³¸B´¨û?Á¯M…7ÏÎí»öa¹a¹Îl‹ÓxžÚŒþÊ/‚_Ø®½©Ôä©3;’–ø‡DÊÕF½ÅYª2tîÞ{Îü¥Õžv¯vÿxs²ÓýT¦Ð­®©³æy·–ÅÉ#~̤–žQP¢zR(7Û«¦4l<{eݵ÷hð`¾LI?_oHé‘[âŽÎJð¯X·™ ·~¶›¹sjvÖRXöZÎ^ ì‹5V¹Á©µÕh¬ÕÏõ§[r¾ä|)ž5$çKΑCr~ÓÎ/+¯õˆ ȇóKõöÜÌüš­øè“Y –·ïÖ[¦1£PŽBPøÔ„ùoÙY‹:°„^àîôÄ…°Á‚|°TîªmÕ¾ ÎçÔî~ѲmÛÎ=@ŽÖâÔ˜1ï2â}úyüè·§ß໾~_ÂS9œÓctÖpD}k6n£sû—)r‹»@k'm•­šYä*M?\þ90ªMÚ·góÊ …JƒÞ³P /RyöAaõBT›NqŠçRv~©à¶ä/x)73G®>–©((xµ7 ÂwÀŽ¿9Y™ó•©uÅ*í¬ù‹߀"¥æ÷½ßŒlÕŽ¢Æì¬þ)ë.7ìܽO,|(…$_†êpz?—( …ÑNõÑwÐðÑžNLêퟗèl’ó›v~±Òxã~Ž_h‹µ“sej–‰žèØÑoE©Lµo¿Aã§Ì†¯Tà™-ÊöÃùY÷².~Ã>”k lȶí:¿ñ‡hke]N^[šµ:rLÏ^ýD\tßP|˺ œ11y±RW¤0têÖgæ¼¥Ú_‘ÿœ_¤´dyó|yíƹ2%›¡D©}'vTãy–ãmœO•Áf;x4ƒKäi²Uâ|2WéË å¨~Õºm:t½zí¦ÆÑQU¯ÔY4F’÷3x +ÇõÛÙ<²?5S‹Ã þ“¯¤Ø—(õ]ºö\°t5OqÊÔ˜,Ÿ‘ú…Éä•h¨n˜øë½ß"Cz¸Jbdȧ(Té +”f¨ð ÀŸS¨¢ñü~º%çKΗâYCr¾äü9$ç7í|•½®Ô\U¬·‹ê#˜¿á;r\ÿèØνú¡}É*³ówG7oÝ¡÷€AÑ1q¨^äz7yFDdËœ<”5Ú«0m».¯M˜:8!+Ÿàˆ5ë·<.*C¼\4|Ô›ÂS2•á_OŠ|üBö¥Z`¸1ç#pHLÈõÖ'%jà÷j—žï~0Ift)mµ¬l¾ÚR¤³é*ê/fÞ|Ã>ÛsØäz*•°h%#«M¶jÒÙ±Ç [ª+Ï-Õ´íØ-iùZÚ¼‹·0>匥²žÊ‚FcΟ2k^’ëŒF‡kÒÌ„ fùrå‡O‚#[ö8”yQ³´ïÐuÌÄ©Žj§|(TÏÏ‘ø8µƒLÒãÕ»ö¥ ~¡ËÖm"ÏÌ;øþ’ó›v¾ÉQƒ“YŽáqã¡i¹«>qÑ*NûŠ±V>E­ó—­üÂÎ]¾†ÉÁ9<%5 FiI‰J%î^Ö‚~z¾>tá³XnNfiÒNœª¬÷ª{jÂBª V¿°Lo©¨Ë8siÄè‰p—;Ï^Êä}ò©—¾ÿcÑÿ:ßè¨/V• >aÃã&¸j<6Wí¼EKÿÆó\˜’z‚¶Bo#¦'.f¦ŒÔ§ÍN"1$OÛhuefÝ|ùwqc'ÆŒ[$×Ð)Ú~zÂü€Ð¨Rv ³:_¦äžÉÓç(´fñtbü,Á/¤°T û¤g@Žrµ‘L²sKB¢Z_μõÍé‹£>˜LÛþÔù«ÌqݦíÌêÓÓºc÷ž}"|…ÉÅQ¦µª,Öj!78ŸßO·ä|ÉùRS˜þÌ–cyéåßAø<1ñt~Kÿ^Œ`<1f¾rü'?«ª©ís÷® ËÀÛÞÕC0yªñ—×iUÚšZ»9#{ýãÒ'¥°CO}ßµðCÕÝ›:ŽüàÿÜ6íã‡ï¼ë£wÝͧ•×äƒúzvf<¬!ÞÎût ç ç‹j•p¾p~#K8n·“}‰œÌåT!?U„3}ªÉøÛ³…<áÏpÂò«)-S‚Ï¿syAû"Øàó@YðŒ‡6]£ «lUÃÖüJâSK—­íÝ̘÷â XåðH¿k÷¾Ï/¿Ÿµ À‘gO‚X-]=Kï]1ç«fûßùÎcÛ’;>y˜ªüÉâP ²&Ë6ãh83ËOÿø§®6:”®/}å«üCw,èì¡xÝ*;™ïüÄÝ}Û÷à"?lÿdz窘ݾ¸zÞ–®w†ÆG|Q%•­ÏÂù_ßÜÏYÂq#nåû¶õ·w/öú4ÓW=Ô¾ò§7˜ÿþgáFhŸ6w,þç…Øà߸cOW÷m¾hœ¸^jXùÀj8zêEê§ÉΟ›ó?ð‹è&K8_8_T«„ó…óYÂùss~@¿¹rè´vÕ?aÕ§:ë¹Ù2Šö°/ÒoxdI²`4%]r8ÿUïygû]ÎÍo ç ç‹j•p¾p~#K8_8>sþ€ÛoMÛÁxÈüÀ¡!oÄ5¢©¢p¾p~cK8_8_T«„ó…óYÂùïÇùÙºt³¿Wó­ž›-£hõÃGŽÁù¯¾~Þ«¤â¹™Ù ùâõêúû +ç‹æ·„ó…óEµJ8_8¿‘%œ/œ?ŸåiJº4è‰$Œ„?I‚úaþV…ó…óZÂùÂù¢Z%œ/œßÈο±œ?¯Oõ~¯êæ|=_Ÿ>èò)f–¢í×2Ž¼uÉ…óE·–„ó…óEµJ8_8¿‘%œ?7烂 ©CÝP=º82ùÙûÁKì&\ÍÏ+H ßóW&£±T¢dÃöA#¯æ¦Á{ì`¿^°‡ü1w4 á+0˜U¬¥_`$ÕÕIÅUòôd6Š6»C¼Ò&ž`¼iã‘-zçhL°8—Ìò÷°ßé°ØÔ¹· C\t.¸h¸§5`¾i×~á|Ñ-'á|á|Q­ÎÎod çÏÍùÁDƧ¥´lÙKz”ÄD4ÏW¢é¼Q²™âf(iùõôXH¤r07+6¸ˆdrÉíSÌBØÈ’çª/‚ÑÖ¬›G–ðåñE'•¤7šðÅŒP<“·mO$5r‘d6¨›Øýj* ¥'‚£~…TìH=±L‘2NœyÙÕÕóÌ©°ŒûÁx¼äÇ;PØÔ$óZ¹Q¿š¶¯z£Þ¨1Nh™© nñˆ˜+©"Ʊ@L·Ê±tbû:óxvêW¯þÙÕÜñ̉çU³HyÓ‘þo|ÓÕÒ5ä …J¥`*¤`2°³ÀŸŒÔ œ”ÇpÂÂÎ1€¾í{\ :yd/’À—Ý~ò8œOkÆÓ}€îNƒƒÔwæxi èèPâÙé¨QHäfœƒëVeýŽÇà|{]Íö» œ/šßÎÎÕ*á|áüF–pþÜœ0c@;X6OªD óð´ªUrx´Æ‹°‰¨ŠeØ%êÎLW±þ'&gÛL.Žz‡ý Ÿ€aÐëmºT%üP<Î#¬ 0ÃÃä'rP™6e%‘GÏM½ö÷·]í‹à|ìp¾OQœfd<¢Ó‰©š wfxRõUÓ‚äAßXºäêð0ÞÜŒM €×ªT'6õ\öðIdkz6uÕ«Þðk{kaÛ¢3¿~…òÆCö5½[ -C6•‘‚Yn–mZxÞYHƒ€=™ŸÆÅ*’sŽF €Š}Cÿ£N§M /Rít+f–= ]™3úT“qįV©&Uô*)b@}ħìí1ŽÉ鮌‡’y»wÛÞÖöá|Ñ­%á|á|Q­ÎÎod çÏÍù`3 ÃÃÕL€|¾¯ï‚EÁ2PV÷mùø=Kߺ<âZÐájív5uœ|á—©üÌ®}O0G¶ïU’9OH&²k{·®xp-ÿtUWÛbWK÷Ã[væmÄž¡âm{@¼®…ÝŒ=…ò‡·¡å§Ÿ=Uuµ/b£5ë·RƲ•«\Kªûvõ°õ=_¼þ7+¶Óz\rûè2|±DPO ŒyÛ–Üîjn«ªµëØé3‘$ðµ¦wÓÇ>ùéso^ø··¹ã‡ÇOG’Y˜\·þÅ~GQåqoB†drm *‡!PDÉ"n .Y’Ãaå ›„@†c a‘K@²ÁU ]@®ZXñEAAH ArL&s=}LOÏ™2ûjÿtSùs‹¼ª_uýú½×ý~¯«’ùüÚ°5ì ŠÿiÒôÈîˆ×?5­G‘r5FÄà£Èx¯DJžüÞGGÕ&ÕâDHªUM¿>%â™áXI‹Î…-ÀxIþ¢,À.øøWüÃ=կɓ©¨ø£§/ðÍ6§Æ* ùäÔ¿1HÅöÆ5絿ji±Éâ°:[SщTL2¦æ—¸Ba4/‹cöü¥'Î'ñxq>q>‰®q>q~wâüί±ñ°=À êCÑzVäüms‹•ÐµsajÕ†-È{$¤8D¿ÎÂ.–x¯X^ÊñÞ/¿ºŽ|ÃÖ2§¿Ãám+P”Df)êâ¥+¸=sáóž }¯ZNƒ¾Ê5ë×my×fwúBáo¯ß†u·”íc=!°y{ù‡Tt|Eåi›àež¿ä/Üw¸U=}A›´ÿØI½•CÓò œ ¶°È-о‰%ï^¿It|¶»÷Q±‰?Åyƒ:šŸS´ˆ’'ÿ5÷²¼«|ï”téê #BÐ>®Vý‚xåëïe1I+NÌ,³æ¡äs°¿êî…[»y'û» _\ÃzèýÜå¯1»yë.A 2s¦¥ H{ 1¡ÐÑ‚´FowâìóŠ—ÉãSÀþÈ.ׯã©í;ËJç*OœƒçË>8bËþ=*p{êÓKÞÇ Ü9E= ‡§Ï+Þ½ÿ( Z\þæÖàcÒb¡X±·Äù$¯ Î'Î'ÑÕ Î'ÎïÎAœß¹ó!yàù¡Þ +ç#7 ^#ïÎS,ë™Ô·ÞHc$wn!œ_]§A ¶†Ï_¼›ÐoËör;ïsù:ôf¾ÿ€aY§!1Z…EÊ5%LJ+„pùÅ̉#ÇŒW5›áùz½ÍĹy_nµ6Çàô‘/eM‚„Õ&&-ct‘ru“9xìbrxPã ]»S‹Ý÷:†î…±¾VÔ‰)>ÐŽÕêîÉ´aãr&XžvyÄP›ÆJŸ’›2p0›è.X‚žEVÓ ÖÒŒ‰P˜ýöÎòmqxQ +Ëi1 ¹}Ïþ#Œ;ˆò ë¹ –¢ûøñ~=–ù:ÂhU°­ + ²Çþyʨ—³½í‘qþ»;÷©˜¤ãg/!Ç›Á{$¸Âöp>Þçc/tÙSgH]6m4qÙ¹³‡düÁêl¡]¡a#ÇLš‘¯gÜFÎ Ò@þj3¯¥EÝe`=õFmâZÂᾃ†÷Šxd`ܳç/%Î'ñØq>q>‰®q>q~wâüίcœž‘@×´»Ema •« kX# JÖDÇ$bÖâô8—ªÁÉ9ö©™›¡UoûØÌœACFØX•q)Vôè˜, ò_»y'%K¨V5ÊXëJ Fž™3m«³ áïï>€Ÿ×o+ƒ{-µj=¶óþF£qüü°ûGÇOkíê¬3ØP*Ê€ðQ®·VQ²˜Ò·7³^¿ÎÎöA|kÛv*6®JU‡ÅÊÕp¾Úluµ¶G8ýÏeŒžS´õÀóà:/Õsúâ—±q½ß?T‰5¸ÕZ­ŸGÉ#Èä=MfÆÓ†eÿxeSòä¿mßÝh´rÞVÜFF¢äonÚ!u è°"Q ¦°ìFõϲ¤~omÝ%íˆ×šxߦ]ïê·î7"l.ûxq\¡øß&›mN\íîVü+k4'¼:güäz»Kks.YMœOâ± â|â|] â|âüîÄù;¿™qYÝ!Æß¡¶ FÁorhoÛÌJ*:ÁîkWì…ËK©žñ|0\oæ ß݇f=!ÈâýãÄÜþ©é0-òéyEp,ïkk4ÚÅࣽeG%“߬ªá]>Áxi\ÕCFEÇF®2ù¸ìWX§§ªön+OžÑšlÀ­mëa½íMÇù/¾£b{ï9P!qãH°FK‹øÅÇH¤G'þçYÈ@Îö¡g¨èø¯nÜñ¶‡g(P0ÊC@õxŸCó*±·xü¹‘œýì*V¨8)Á#‹W`'ÅÊf+/:R¤Áù8ø7·îõˆëYŽŒ«<å)\7¾[ŽfÄÈ»o¡gE´NyŠeè›p{åf5’¿ï?lsÐË gA{VP½ña¯þPWíûø¥ƒ Q›l‡²ÑIÛQ=ãpºçÇfá;c%z<Žõ¿ÿëw8ŸÄÿwçç“èjççwç ÎïÜùf±EÇy@} Œæõ¼w~É°½Å´yZ󯌒%bJê€ç¾O Ú³ÿðéð·k,Ü˦>óìó %P +¢õz€­£zeéºhy¢ÙÎ×kôƒ‡¦>‚a‡ËÇñbvÎÔ1™Ù˜ªyPçª8ae=ãÖXg0\§·óŸ]û‘ŠŠ?qþsü¾c +Î7ñ>Úb‰Ç+ˆó‰óIt5ˆó‰ó»sçwî|_mx¨W˜ÎÏW¾ç73.]œµpÕ+ 9:LI®†EáR‹Ã+:€üôQc@JwkÎíýäåk7AbIËÙ“§÷y:•ýµuJ¯XþºÓßÖd¤vS™§ÚÉþTêðy –ðž ßhâtv—M ‚ôUªf8ÿ½ƒ•0?œÿK¼Ç,F¬ø»vx‡Œx!3g_S¯Œ¡ß©³òQë ¡ª¼…JŒYXQª +S3 H$çCøx +ï‘ŽV~àŒc¶G€ Ûµô5©Ï°¥ýSÓñ<ˆ\o0Ðh%Ô–ñ†ÍŒsYE?¨o÷®(JìS]§áíò¾O™0k0ù£9zö…±8BÎÚh´Ãó³ç/ÆFèV@}µ‰Á^׫~ŠIþ/ûõ#WYÇq|ºÛÒ…íU[L4ÑÔ˜51Ô +‰V $-Ò’–* +´¦!Š¾Ðx jQ¡B‰ h #šøµcI +m§»;÷ë¹Î¹Í™ûìõøÝ}áEw%˜]wþÉ/'ÿóœçyÎsfvç|ž÷8|os:R«½bÛ—®ùÚ. +Vuë¡{b«‡Åù’•q¾8_ÒkÄùâü~Ž8aç£wlÏ1c‡•ö ÅW¾~Ëš¡MÔ8_™ŸF}"iø¯å ïÃ> P!.’üôUW¿ïCŨÝÙ{ûa®ÆÖnxùôùœé?öԉتµ?ôx¦lWÂ6õö7-Ûï¿ã0§Ÿúܱ½é7ŽÜÿ`líú§ŸûSZ÷Áü®[>tôqÌŸ,»kÖnºé›wó~‡÷•Ædö]ûnãôãŸý‚ÚÔÜö­û8çKVVÄùâ|I¯ç‹óû9âüÿêü‚×䘶ªcš«…Ý„îÝuÿ÷±=-VsêæƒGbmˆ¬`2‚ý/¾ôŠÂíhÞPH¾êš¯^úP@_ü|ÑÆKÿqê }bƒ—àÏ£O< ×Ípï6~Æ ÅÉ×Ǻpº=3Zv’†_4êsù2— cÑ +t¿YíF@÷ôh<ÃàDÑ@¤{n½ ‹âç¬æh¦oX ?=V0ª]¢ù퉩H7«9+ÿ(=¥yÓºÏÕxÖàÔ9|SN#kVU‡7ÞøºO=·_0FòS±pšÓ,c$§+´ç +¦´(3ªGæH˜cª\Q,gñžSc®nÇ#hýj<¥$>«UèÔ¸ÄZ:ã=õ gˆßž¦[ú°S0í*ÏnUÂJ}\ šÀ>_©œ°èÖ²–ﶧ°½Y©šµŽ4*Í +Ì&‘+ÙY ½ÖŸa}2bN¶!Ü‹ Y¼çA‚Î wa~Í +êÍÉLÁT[’DÑâ[àŽtc¸8_²²"ÎçKz8_œßÏç/ìü”äœ:ÚÇðå*ØkXÍ©`2ÿ Ÿö„î™Iºiî¬óÝ&DO–ÝÑ‚ Α6äÎAÞ®ÝèÚëwdž) ;=y)§­°\eQÓeç‹•Â\㙬át"»53¦yVsÚlLqµ:1Ṍ®„õ™ÜkGJøÔÚÜ‹ž(çúèAG-†U¹­.QÓ®ÖÉT•ÆÔ,ª]öjfÂ(:'JΙT9œ˜½ý™á< Cx +†°Æ2ƒš‡‡e£ÁN„ }xX5„™éÌ t°ë“j_ÃX†p#:Ðx6­1„yX^+Šhä¦j6ÖÃpŸoÖ´3„yha£Ö@ÁUÇŠNUÏ f¾÷‚8_²¼#ÎçKz8_œßÏç/ì|$·á}Òð ^³è·(º±C£>ì?}Øp¤æÕJû€|ÎbrN¹iÝÝwðÛ«×¥4‡«È¹4çI~…p>Aòž`©…㥠­/Ø´ðíŒi&pö +´JÝÔ +ÒDÍÉ) æÏ­9%tÒ W·føùœÉîc«ãgÚ™„‚>¬rS“¼í«y3}hÁÿ<§L«VB § a,·¦fs§]nÊ´ôQ[µlúswÕ®>"µIQsÒ’Ò4µEzSìêÁiá*…ê©ž£ÚÑp z23þ§¿šŸÎâ|ÉÊŠ8_œ/é5â|q~?Gœ¿°ó¡û¢2Ÿ'çKÒ¬åÜvÖiün©:AQ ÆÓvƒÆ å*oóBW…‚.§ÃZj­èË-Àv8©€º +ø»Î•šùÞ â|ÉòŽ8_œ/é5â|q~?Gœ¿´Î73ð>eÕ±}Þëà|0Ïé|ÎC§v Ãç¬ê+ð'Ë.§£Û ÇÁ|c:R¤¯4¦8žŠ'œæ4-ŒÂÿì–ØË$ó½Äù’åq¾8_ÒkÄùâü~Ž8ÿuþ¢‚¼zÏTš +ù¿Ë©:^00ÕCzÐN¡ÂËù·¢ˆB:)ÍÃó´dŒ ¡ûn7ÒÂñѲËí°«Õœ&Kõ{[t—¥Z§8_²¼#ÎçKz8_œßÏç/­óÇô*¼/ãåp2a„)«Îq>çk|MNƒàyæéIÉuÏetÕN‡´îÝ(^°sN-m…vkÆéDzmâäë ê¥ú½ç¿Ý?\q¾ä­ç‹ó%½Fœ/Îïçˆó—ÖùC&`´ìŽ”œzÁKX>_ÿœ’òäÔ®eŒçS£z3wšÓgÓ§^;J–]®b{FeìYêƒüS£ù`2ât©~oÅùo÷Wœ/ykÄùâ|I¯ç‹óû9âü¥u>¼Gàåj×øüã… ûîˆ o™¯¿~iü¿è4ô ƒðýNt*ž¡nLGç2ú¿Ï¥cñ¡Í±ÁáØàºÇOü™Á{·%ŠÕœ^ªß[qþÛýÃçKÞq¾8_ÒkÄùâü~Ž8ÿu~Îm/*¥9º§u·gŒ€×ôûï„èþ‚¡?ªÇóôg 5-#yKóÛVm‚ÆŠ¯}rÛÕ'^|‰Ùò^çèoŸ nøÙñ #¬t¢´ÝHšµÅ®óJÑY\þ×ë™ï½ Η,ïˆóÅù’^#Îç÷sÄùKë|¬Úy;S¤4«ï9pxç#yú£zœðj7ž5þúÏWòðcO9Íiúdͪò?sr‹¬ÓºúÚ¶^ö±Ru"ç6ÆôªV›ç‹ó%ÿÏç‹ó%½Fœ/Îïçˆóv>œ&°]çíÚHÞòÛÓÉ’]®TM¿¡»µ‚é-¿d^­•-y+]½ÖT¥°CÎ'çSr>9(‡œŸßù~%PãøzºùN«‰¿¸ûÀ¡©3ùøÊu€¼lĦ¤òg?oµÈ†–­Ly-ÈýÜó;º<,HiÃáë[wa)­ÁqùšMh€€|mËöѺøÉ5ìSTQ{ìÝ÷Ð/,]µvxi5š GL!ª‘F7ñéÍN¦¤ª«¢Š™}½ƒldfÏ[híl§Ì|m¦ðœb$Å96’ùÚÂå“~¼Ó+J‰ ë}>4è/Þ9ŸRØ!ç“ó) 9Ÿœ?”CÎÿ¿Îgõ¤ɸ8Ô×’&üÜôÍ LÙ :’êã5cIó¦´ÚÿÖƒ˜ýýŸ/WÞ¹÷»p>«ÅV>·å{?ü‰‡×`ò>ú 3¼úÕC?ÅõdÌÏW€ñ/‡­z8Ùغ#P=êÏŒŸ\;îsN¿àJç/^Æøþ7CïAÕ¨«o5iš‹U¼bè?V9òè;ïÙ¼<ȇ›ªñîˆV¤?zò,S\½ëµï¦ig5pôo‡œO)ìóÉù”†œOÎÊ!ççw~@CøõïUŸlÀØ­/ïcJª®wtBã@ø¥«· ð=û_‡ÕAkx¾vÂÔyË•X؆ÁÜœŠqŸÆTYõèÅÍkùPÁæí¯`áÉö3ád¯½‡Cñ ~ñå½ H¡Ë,ðË‘¤‡•ë/mZÃöÈÍn7¶Sg±gûû¢~ëÄéX¯iÍj‰ÞAŸÓð4S9š©uøÍãb¼¯Óëû¹hvÐߺ…r>¥°CÎ'çSr>9(‡œŸßùPñ=Ÿäàt9iÂüˆ_‰=»e\P¢ðàý÷Þ1vÒá£m^^…Õ!óº9ó§?R×Ã)è,½#±¬‰zî®A½vóVH^Ðc¸ ±–/Z¶º¼vìðêQ˜’‰»€=†F§»ö¼Öé +HÑ4z ܽÆK¯¾.FR.]-­wê׿³û=ŽÐþüÅ+fÍ}LYí¬Æ9ün)j©•’'ä|Ja‡œOΧ 4ä|rþP9?¿óƒá4¼ç#ž‹ÓñåB©ek¶”–×Û°4¼ÝÑéÂOý˜וhjaÓ*XÝȘð9¯õ ‹™â +fX).C1gÁ"z_ײ­dxVéñ,„…¸xÛî}¸lÙ3ëÆŸ|åÆÕHsjôòµÛÖZ¦¸’)¯E—Á”Àñàá£÷ÜÁßž¿ˆúÓ¿ïñ*óðšld`¿¯/lz|^£ëUÓ&Ž >ŠvŸ’2ýÅ[à!çS +;ä|r>e !ç“ó‡rÈùùãAÈ–÷ºü²[ŠJFnýÖÝLqu@;ƒ²Mz»ÌþiÛ/ tQ‹øyyμ†/=Zw×æô²âäi3>;ešn$µhÂÇI K›=—eý–V,D³àæÔ€µyùûiõ†ÊGNÔk'L;ez—‡ECñÑÇWŠªFíã°–4Å'n>„ÐS&«'ÏýérÙȉGÞ>ɇÓÝ^Ñ+EýJ _ü¯Ìi˜Û¸^½ãáñü(h[ýÅ[à!çS +;ä|r>e !ç“ó‡rÈùùìÁxNçÍâ„~fÓ¶a%5v¿ÍšÝ=œ_U3¦íä/}‚¦„cÀüü§Oœú…p<Ýq§‹6ü;‡~àös >'ësç?ÙØ´½+ië6¿çëÉ>‡_äô¸ÏAûk[¶cÅÕ;vO,i#)¯Mž1«y]‹“Õ„HÎò!|§Aõ—nÜcŠªÞn_yLáèât4hIðÀèM´Œi ªP«WëHÉr>¥°CÎ'çSr>9(‡œŸßù>=-ÄMBà½`8 í7oÚWkIó~P…ö¯Ýu0¥5GŽ½«Ä² ¾NÔ7,3éó=œJä˜aeó5ñšáaåM[wáôO-CqW@ÜúÒ죧L¶ù¤p¦¿X½ñÅ¢ê±`<òããíÌð{V9V6râ›m§äX¯# `Ö^îèâÃi¬ÂeÍë[Á{%Þ‡­ð¹G?R=nêø/ÎÂc»ÄÈzÏ'…r&É môo‡œO)ìóÉù”†œOÎÊ!ççw>xïÕRþPFL˜¾-¨Þv±-»ÀØÐ5ÈÉšçÿú8ÿ­§ÝœêJ‚›·péC3gÉ‘¤—WÝž lߟÒêÏnؾã•ËîØ=±¬ÙðôŠòÊÑv¿$9'«õˆ: Þ²k6çB)|²AýÏïÂé™ÿˆ.àì¹ LIMqÍ8Œ0E•·l,~5%ææCm'Î0ÅÕ¸®MƱö˳çM¯«¿å Âö>xï–4;«á‡ôo‡œO)ìóÉù”†œOÎÊ!ççw>gô¹å8âQ8º¤ÀÜå—!À`8 êÛý²ž2!m¸#)«üR4ÝÝÃU§>)ìCz²ã6/#`†)#gv{E°Èì!vì€=¡tŸl "´]=®Áˆ# œ€:ª¤úÝî#Ö‡†§éqÁ=Ÿ„k0xÃî ÷š(0ˆY9iþ—¯”e !ç“ó‡rÈùùgï QŸžöj)8ß)~=*%ôÿ¯"‹÷n^ÔAqȼÓH™¦3(³ZÌáÕxòGí—#€}@‰¢¶ +hßøp /9ðÞj`~lˆÝ ±3¨BŒf{.šE‹Ñáð¡°, +…:…°”ÈÜñð@©–1ñ„˜BPsÑ8 +·Å*ú‹·ÀCΧvÈùä|Ê@CÎ'çåóÿ·óƒA)픓v!í# ~šü—G´±¡N¯Øï|)Ê9KãPº# ()Øƈ(Äzí¬fÉ·|ŽSÌzÿ£GŒ@øXÉßóð?Øï•¢n¤"LÙ|’%ÿXŸy×Åœø™°I¤Ï´ÄŽ#F,ê㦸£ï»nó‚©Ð~w@¹Û#àIpSŒü›ý2]N‰Âèû¿ÚT%ñÄÆà°ˆllZç“°‡?D²t¾:…[2ˆ¥¯nŸ®[ ¡‘{ã-8x><χkÁóñü*ƒçîù½—°9s£—'ûµ>\·QíÙï‘\Z¨_ìgw,É_ì"=J×ÛÓWY´”[ÿ’(vc”ŠÏœH¾­‘üû牞oVŽ^Ø.ÛözüêIìu8ßFþL‡Ú8è ò|þxjÚ‰Õ벺HÝi‹¡w—·ëŒ.(™×@o¿/a¤!çßD‘ÞH﨤ÝNJYu‘ÜoÁÁó¡Øàùx>\ žçW<ÿsÏoÍ÷âq´l"y~wáHøï:yµõâJ³e€ÒïOýÉÆÌ›“·á&|´Vß[öKµg[Ñckú®Gmú í4kŽÔ‚$í2I)¥u(—Ÿ›Í‚åíÿvlm&zmoªëèú½•û£=îÌwÏ˽õèPüoô^:£w×Ó„¶$z‰ÙhS`ÞEØè+|žÅÏÇóáZð|<¿ÊàùŸ{~géÉó¬—™ÉÏåêòj)´¬[Ö§GÙàót£åUƒÅV?ÙEÚ èiÑHɶô[H¿‡_;9ù÷Ö°iÛè7—ÏËäåó2|!Ã×I³‰œ7† ½Es¼ÒÉØØg[é½.k ßX½Îè¼®¬Am°ÔX{}H=M-NÑÆAÔË%®ºŽÙPÀ'àùPlð|<®ÏÇó« žŸíùV¼Í½AA.àùPlð|<®ÏÇó« žçÃ9x><χkÁóñü*ƒçãùpžÅÏÇóáZð|<¿Êàùx>œƒçC±Áóñ|¸<ϯ2x>žçàùPlð|<®ÏÇó« žçÃ9x><χkÁóñü*ƒçãùpžÅÏÇóáZð|<¿Êàùx>œƒçC±Áóñ|¸<ϯ2x>žçàùPlð|<®ÏÇó« žçÃ9x><χkÁóñü*ƒçãùpžÅÏÇóáZð|<¿Êàùx>œƒçC±Áóñ|¸<ϯ2x>žçàùPlð|<®ÏÇó« žçÃ9x><χkÁóñü*ƒçãùpžÅÏÇóáZð|<¿Êàùx>œS8Ï?¬MA¢3±Ñx ?íÖpi-w½Ù®3Ýö—ao´ÆÎÑ¡¤ÌüW fŽ°¦[aÏÞf+çŸ5ÕÆÞ¼ã~°Äñ¼ÃµÛíÌàéé©3~81™Lîïïãýà±N\·2ÿIÏÛk±ØîÔ"7ˆîjOãùû`¾I¬ÞQ÷xž'Ì‘Cƒ[bfÙ̸Y5$ÿÖlóÐì™b³sû¾[Ïÿ$æÆ7M@ AmAÍ!÷7æí"m{£f(yÖ@‡ÿ²ÖßêƒüÊó²ç?v­Þtc¿¸ÖÒí-öÖ:º—‡+ÊÌ2JÄhé {±™½Í×û»ZÓ”‹„nx‰Þ”5'a3ƒ jµZî +ŠétÚh4Òuâ8NXÞû" }×u´X¸^`D®ö«3YlG«íh¹®!$3x>IÏ'UÎ×ðü BGªœŒ‚HŸðSBª“0 +þ «)R>êáRµR¦àùä Ï'„dÏ'ÿ<ŸT'_Ãóý(Hø0· ¢—:8ÿ/”‰ß¢Ó‰t…x)ª–Ü' +EÕâG^Šxí8*Üåß$÷ ‚›’=×qUíâ£fþ^¥#¹Oܘ ›ÙOÈ«ñ|HóûÁG§ÂóMrŸ (U ži²çÏ“ûÁùžO!„B!„B!„B!„B!„B!„B!„B!„B!„B!„BHòŸ¯æÍœ +endstream +endobj +126 0 obj +<< +/Filter /FlateDecode +/Length 5637 +>> +stream +H‰´WÛn9}÷WðQ¢V“l²»w‚¹í`dv¢7g1päK¼c[^YŽ‘ùú­ É&»[J+ÊÀ€Õ7‹U§NZ¼Ül¯/ÏV[ñüùâ½X¼;ûº~ÜŠ/^½y-N^-OJQÚXø_UFl®N?(ÅÕÃÉb©þ(…ËË“yY”ÚŠåJø‹'áŠÖÀ_]XQµU¡Ѷ°ÖÁšÛ“™jåò¿'o—'o…þáz\ æñîÝ⟷¥x³>ù÷Éâ7tïÝÙÝ•˜]ÜÍ~%¿¾þåPJ›Ä×Åk\ꬵäF+Z.5NÔº)Ú¶uèÄó²,Í‹Ä=UÉFÁfc‹Ò´UßfSM´ió@ tþOŒ°â/ÃiŠ²¡°*Å_)¡Êº¨•³ÙÞ§³ßdÕFÌÖRÁyÅl#çJC +f[©Ê¢³3i ~ñ üÿ(|jñÍ¥¸s‹‹î¤Vød+çºÄÅh¥Å‹¯â£ÖN\K]ŠÙ¹T5Z_æÄì–U`îM_ᾡÇZãýúV¯Äßà’ÏÒ-˜·Tx0®Ñ]8ünÅ™„Õ`æ^¶øœ¯Ðà +ß®eVè©÷ÛŠ¶,ÑEXëÐå-|nq›GðEáŽwtD¸¸Á-š2hVÐÊs9oý™ç:öNCîÐÕ'¸T¼*ìÎ9räO!tV…ä–ÿš$—iPTUÔ(Ý1ç÷\a„š4B>÷×ñC:%Û »ÏĪ‹©Ï‡r1ÆÓ +#¦²³Cý·¢3:;AFés°Õ0j{ÉFtoÕ?MG=‰Á:ºD go[{(I4ûH"·9™$Ú‰$1–òdËÓÙ/˜ˆÚ×­îÕm;µnm +ýmHdñMW·®ê>®\Ž+x~'.1é6­£†ð³ŠK°#ªaí<á n3çÚÙÀ騀?#`Ù¬ÆPñà= +Ž¯º0<> 9ÝÜH®`†¬e¢ ryÀ(Ô ¾3XWè×¹@7îÒUÐLÕ×5ÚoF’5Á^“ÏZ$ŠømhãÐr1å‘åâˆÀá=Õ¨=åÒ³9µ\ŒþþrI·ü[Ê¥+x?ãבõæµÍðŒ$Ùõ“`€[²®ü ^*kÂÚBBp]Ò,[ºâ®Í-1V£Ùt$}a¦™çÁZ¢õ%´—5^…ÏéÀTùØ>Õ.ÅŠ©(N¥àXv)\k}v—ýœ·ˆ&ô†’ã•C’X–ú Êª3PG.:@£ðÚ°¦)ÆdÖ1ó}Ù™J¯ÁûÀ¨!þLUÆLè•(›ŠM¢0,}&)yÿ˜šŒêXJ©Jµª>”Rì>JÉmN¦7‘Rp‚Ôñ„£:,õâtöžtgC¸¯0€ n7¦ôÅeˆn0#¤Áÿ"`hzbªPQ~©¢ÒÄô*¢MjH×Ü·æ5‚äÁði¢âŠkj‡ª¬ÝC™CªýŽlïÓ[=›“³}„ÞJ·<} ê`…a4¾!Å`„ªÏèœì£Œôê€ò°%»”û* ¶Ån¢ BÜîéÂƒÆ ‹»+Yúúç5èYyÆ>0¡P‹Ð‡Á¨ýq0r-ª¨CadË}0ÊmN…‘UaQ4ß £Ä‹ÓÙkâµ´˜ˆ¸f)Ñ¥µæv@Üv#æv¡HÝ=HÆÅõrƒ›>NÙ´å‘ÃÁs ôÀS¯ «5u3>dɲȆŽïµðµ·3ølÊÀ…¡‰ë Õ$€Üα‹‹äSpþ|M5ãXEÄ­Ò:¬¿Nc»#âPOŽÃ +†ŽM s/T!af…z@åzÀ¢!Éi*Ž_ù…ç5‡™^;/]´ öaÙ3oö u‰ÁC£ìm÷Á/¸øì¿K hÈü"òÄö§iªî°™î(JÀe°±ä)ʈ×3A²Ìd’½åXzÝŒÉáÌ)Ï•>ñk}rž¢£¹5{-þ…,, K)+O°’ót)†89¾VÁi A©š´VBîÅD}”œ¬•…Û`.ÊæBtÇÈ`Ò qµ ½ÿ‚¨1Ù0ã°XñacAòóBÞ®ˆëZ‡;â=a+´*êºTˆÞ/›øÕ MJùNí—NDY•Ñ~hTÌ*yªn3˜ÍærZ[±c ¿zœáŒM„3~Š7_M" 9¤°Eôgdó!)Næ.î@q:Ðx·ñræa˜|düV¼AN€wo¤¡|üŽ; 6ŒŠµÇߊo”#>{–9C :!ñ)T8sà ‘öôÙŠù¶WËRhž%“8²Î9²qa_µ3cx†Ù_ûÈ]í´é¾ h[±Œ6Ò`‡iˆ®Ç=䢜¹ä1(ép:ïp¾¿é¬¿u¡êpw™Òi› ïÈ<²ï]WÏIøK´Èò»%Ñ‘wþÐäàqË +‹NµJ—Ã&•!ÝpwM +nía¶a)ÓŸ{œƒ”ýZto<ù†¨ÙïYÓX9–Ç7¢üë[õ!¨ÆåšMØ}*Œ›Œ‹Ž«íª…ù#í¥/Óx¼Mä˜ÑŠn|"•Wc‡x|¯n‘?©ˆÊRò,õUD Þx1§]Â)SW’WBès$Àk:áþ/¿Ùt”‰8Æa;]»»gªRìì7l²_ ]ƒNKþù`µÃ`QWIóšk®üÌù?éú™ðž¢6—¾çª>OUµKæþp b·ñ$té!Ó˜ÖUo5¥’’IjªfRÓt¼›H jâˆN|Öðn]IC±,ÄK9VwCjÌÕ@•©Ÿ7ö(Uœü!¦!à·ÈÊ*,ÐÝ,3Ú: +³ø›w<–Ïð h~d[¥3Fô¡7{å×Î4̹r¬=âEév*¾Êéd€Ùtr„ªì>t­~/áóZüù„·m2ÛÐÏõgä'éH±ªç g¤TCí²fi5oÇédÉñÁ!têÐ{#b"C…õ°=¦q‡ˆ ʲû4a±®¢ÀÀ½Æv“ ºãy×çY»ƒg‰ +:蚈&¹ÏÐëó­4uÚ³CÉùé'™dx´›Ò³8O“¡©†=U +çĪN†[É„ñöŒ¤&"O‡ÄP?%„êÑñ”Hòeí^¤)Íþì,åØ¡r×7Þߎ¶G.éI“ØË}Cy…ÓÖN›q‚¯&=‚È'¨œ8Æßâ„×C67_ëv͘dHØ?Âæ¡a™BEÓ-m@*;ú¢ }Ñìì‹HBkyÉé‹Ù+µÈçJ·®ì«Pî®> ûÃÒ¤àëûÌqø¨µöV§ÌaC˜X“à¶o’¥ïL9š½1Š7óð°×# +4*9ªÀy(£Á²“ACHΪ +üæá~2©Fú1nÂv¶(j&D ]orÕç/V—ö¢ºlM¸ýi¾I8^¶¥¿ŸÓ‘,Uî¾ j»G¹4 xáÏYÙÖõïº7@ ¼î :x…¬Vl<* +™0ôyjov×É*¤UœÊÃpåbˆN(Ù#—؃šK˜àh*Š€ð§œÜ³QpÑé0ïD +tf¥ñ‡ó(Uïmæ#”Ž¾7Ùa£Nâí0—:RÍÿy´h~éÛºÔÑ>ú¨@70ÐÍ t‘€/>@­ý‹Íó ~‚ÈÏ >ÆR½Ç?تNT†×w`kéõ©•šáôŸ_ù½¿ö<6èA,=õŽ~ +ÃÏŸù±ä¸øe@¹O øpg2€Ø’Ù9'do“¿?ô܃þ8ÍÍaŸæ ì;©Ò§_â8*ö+²'ízÚrb_L³Ó7ö[¾GuÝC›2Ná,Ì“ú∛avýŽAÉõ™ù¶#ðŒu•;biP>nðSùz*ûÒù¶:¡Žìž)q¡Çj¯š9Üw°2®† +WëQ¼´›5^¢´ÃÕá²$ŸÅ]ÔÐÓQþ”)è6G;Aeaáüœò¬Ê,¨ «Äੲعϩóq{ßµ"‰$0zœŒ”0q컜)dÊXT‡ÐÖi#lspÐuØ,¿QT+ð“`ÒË{ ¦Ûc@>’{gŠh°ƒ­ÝŸV×]tŸáöÃÖÔm—„ôœÆEÎYT1³ªóV<2n´5”r¤Š+zÀaQM×'®Ÿ’¨žT;Äþr¯æ#^_ æ«¨MHëè~c ‘u¸a¾™]œ:?†›A7ý¨Š®&‚½ðvt‚n]wDÂISí°"ý,ôp<~£ZiÏ%›­D/‚¨#˜Ý¥8sssPcQ¿3§ìþF˜*À÷?pcž_Ðç/ GZFãFU4ï«~\—›!®¾PP’DZŒ³”òãNK¥­/ªÎý°zZ³§ì`ð—ŠSç ä ³#ªßèÝVª¼ß2]ŽÖba}œÍÏíw$®·hõ¬Ú»í1e5D±ÌŒËÞt?§ÿá˜OŠÏÛV­CñàÓÕ(R© Ðì®lÔ¯¨óÌuvPçô?ß,6œÐ6ÔÒÕ{áZwÔ&«jkæ²Jc`ú7žúM僧›ÓÍ94‹áÛŧdª:" ÍôÆe<à”öXì×ÿÕRë—WÙžä/.¹Ý}¢b¼S¿½‡´‚„0ž›I-}*×@¸¼ƒJ ~Ü’¿@á3±Ï’î¥b|È:²adº¡gêhPå„{hË×pPA¡ô㤞F9€©@V9G)uk…Î,QøeO¢)fdýp‹µ ¾!CzÛ šYúî²J‹Ûåv¦Mê ®mŒBƒÕº’‘´0 ÐÐêW®:ÒN`¢;=ûû´eÇ¡¬òçä]þG,‚³RvµH?Rc}[Ÿ’÷™#ÒÑž;½í¯=“{æ°®–2L㎮Ò:9\€ØÛÜA åÐ ++%‚z+ã #“¦ºjeÉ•û‘sOþ Ëåäàá_O¯‹tw‚íD\'j(˜ç.ŸK¬Q:WžÞvMöLN†¥kºÂQ55’@ñ¯°p£íך¿AQ QjCq¹úH¡a¤±Z¯v5¥â0ÜÏ7G…´–B÷„48#šãö<Œ«7jdͬ<žjôáê +a7µb{ÆÑ?_J/Wµ3I›6+ +®ÀSÉ_<$edplí ×ß±DŽ¢«ÏÖ‘>\¡4ø2Œ@ñ{.¡SÇþñ@ |ìñ©‘]ˆ%$¡A»';ÓÉ­ðˆVÕ㨨Uˆj3uäKŠáðâ»å8Œ~[mK´àðÙ{Ÿ6î}©† ¤ÇÒZWÊ:Á4N¤ÌµäQR ©Ã+°> +stream +H‰¬WÛnG}×Wô#GÓ×™ƒkÇ ²p,–oëE QÔ%‘D…´­èï·.}¥±±0`’£žîêªSçœ:ûÇîÓíÕùú“ø_ÅÙ‡óçíçOâûïßþðNœ¼]´¢m´qð¿µFì®OÎ~úw+®÷'g+õ{+”X]´M«àËZ,÷'á›Þ]ã„R¦1½ë…vsÜŸ,t+Wœ¼_¼ÿNú ‚ Z|¶Ç_Î~¼oÅÛ“œý†á}8¸‹ÍÃò§·òì—w?ÿ¦ŽU`HbŠƒ\Åc|€ i©Êø¦õFtºo†aðÛ¿Iã/çr©T£Äb_4\eñI.u‹º• +~®ã‚ÏðÅâ‚; §tå«b-{ü²•¶1bñp¸r/­¼•º‹K©ºFÃý¤Æ„·)íñ­òÜߎ»‰½ô¸Ë\ºêÜ;<>Dõ„öØÃüÜŠ‹¸†ílÅâ‹4 +wÚ„Ä'9Бð×z< jŠ;àM;ÒçF<Ñi(D®)rŽøB¥˜eö§Ã—CÅâ +W§ìŠ©MÓczµÅÏ”,ˆ¡u9VÉÕŠÖ‰Ý/ Ûÿùñ±@ž‚½áïÿ]ý3ðˆÙ +bz\Ñ*ç+ø,–%²_ØØ•7í4cÛtx—°y_^¹+® iÄ2_§î©5ÖópFYîœÇψ6…¨[Ri«Å˜¥k($÷ÀŠÇ+¶P#ÜëJ¬ Ò–@¨†&TÓ1æÜ–â"€»j+ÃØ;8ÿ\ÂVðäîñ`Cð|#%7”°Ã¿/Wj¬Ô´¸ †âäÖ^Š Ø–¶ˆQíñ°Zúㇰʟô˜òæ¿-o籉ä—b.}—å‹€iÛÆ €/Ìul©P’] ”‚Ì€Þ„Bºq!sùÖ»|/—†Øã£Ö‡/kȼjÄ}`”Ä|P!2‚çS˜ +L}>š¾K•¶ÅÄ3Šy7šˆˆÞ û|ÃM>.¤5¦ÆkØp#,/¼åijÔtò„5G*²ø(¥£ÇoD¤Ä¢9&C•ÜKið  +õê7ÝÄÑTœp‘™ëjNRÇ æ{ÀPâ$%]Ö~}š@à„Pt[ä$´ü¸ê–%²`¾!0Šakãý-&1…y ZP&\‹{)i©ãY¿²Æc0h +õTäÀ’ E’`pÔÚIIƸ!¼gQ¶fhL=Ù˜Æw­û¦¶"ÇeðÁVvøóñíË,s»5âWЈ %±A©“Ó†(sícÙÖ0Á•‰¢®yë4›éúÓY†aÛôÃ!;ݨ„Ä/¤(®Ðû»LÑÕe’Á¢¤\j¦”ÄÊìqpGM¢IéyDÙÙ“ñòÁxù)ãu±!맙õlë—D5$v GÑG_gœ\k¸+µ›ÍÆÍqE{¦•YEÍdb7ïß\áZ?I²Ð‡Á ÏðA‘V˜‚BG{‡ü‡?“Ýô“]=íx‘0ì¹hŽ¸Œ"×þÉé¨àÄÜ™ÂE2 +Ô\}uü™¬õØìcl'qa'’C×:áqÉüôq;1Ô¼ +grá’÷ÎQw¯G]¸¡²}ˆãÔ,i“ WìåÉáãƒDƒãÆLloKÖÏϹ¡›yu×m[kHáäèçAö³½þ‚#`i¢Ó”Üh©€ºå‡%~%9y©cQl†ÐÃÄ(K;µ¬Ã–ýj¹Oílq,ƒ¦Ú~ÉLàŠìSÛ³¢ysàÑ«DJÊ­Ñã±r˜P”Wg”<µFOÒ9›îZŽ®|ÜnDÚbÈ«=3töȵsa¡jXtÝ1J€Je}ŒŠ£É'AT>:ˆÀ–¹bc†4^ ¶4z€ÌþÅháRÛ ‡èqÏØ~6Í!&ØÏáèUµÚÄF²Ñ^D92{%D¼4þŒŽÇ¶‘TDŸB¼ä,âN3œ»º˜H+ŽLr.ßÿ¥¶ò¹­2WÕM5;ºÆŽ?já°l¿~ˆLƒOr)}˘ÇDùŽ±)y¿,..øSÖçÿÃØ;YwItqzÜðÖ@ru¹a^ÒùŠŽ:¼Ì9™;…¯`ä2*¦e¨]Î>ðó]t}`É™êìÕ…®Ù#¹)¼Û :•ŽÀFO’{/Èγœ‘Å:ÄêL”™9†¥U…íÝL$Á›z>Áü_Â6ÔènnÁ}nô.ߎr[á]š,æ^Ü?[©ßá¾buu‚ÆŸ s\H\Ç pȧE¢ç¥á_T(+>0 kIÚ1`}î"ª¶ÛK(-œAc<_H‡?oe&/çÞÂU·Xµ| œcÚáH5Œ˜¾ë _æGÌ›:É8èR9ƒˆ¾0¼Þ:™)êÖØêNCDü™F ž´¶1ª(3aá–ÄëBÔ;™bÖÊcO…IŸ·9ŒûàsN«kR‡ü1¥ó"ôožöØåúI—{$ŠtÈ^NV8+3w4‘/™ÇàÂXÿ܈¡æâÎ×âFçØ,Øõ–ÁVøHc&8D7Ãx 7cѳܤ ãx¢ªÜ ¥®²CìÿI´»èaû‚´Âlá‘´.ŠI7»DÂwôQ'Š£U‹]íznxˆ»öQ!¢mÙ¡2Xé2¦¸é¸1ôÃh"z‡žÎLÌS’0”oP¦ÌL"v¤‰±µŽãõÛúÓç/ø{6ôºzHtG¡g  z‰Y*J05%˜Z¦ŽÍ%ÙÊ,m’:_O=*áÚÔ°l+:2É¥–<Æc  mnŸƒq¯5Ò•ù$ãñ&ÒÓh,Šƒâ&/]-M£qn` M]âêûÑÑûÅC s¹T¦ê€0¤b]ˆ°‹Ù$pB˜>Ò‘n¬)…‹ÃëxB˜‹©~† r'¸Œ§I‹é1Ͳd¤ÞmG­ôª=<è80/ÈzNÛÆ¢¸2±äqæ;¥aÚ)‘ÉO¸á dmÊ<Ù\Agm4OLÌ FcÐ=¡ßioP:±‹…xǨ¸‘„uÊÄ“ä¥$4Ñ}Ú0øâç’Xîá’nÃÐzÇ‹.ÃâÿõÛ‹±†ù{ÄÅ°íÝffJT;i»ZLQR²á»ÙŠç:í—IN¨ðL®öLA1ûrìºGga£Œè‚t°“†öƒX-ñàcP'äC)YSsòáì<}= +‰B؃äÂÍ„xÜQ|™¯x²‰íO×%·Š¶@š?—ÄD60”)é.!Q‰Ž¶M¾Š‘žq¶Ó…bk]rî:ŠíMÁA!3m`k/òÄô€Ch3—•5¯³’õpï§÷Éçzùº^dªÖ1=ÉbøÞSôÃ¥Ô1ÝÆÉ‹îdG•F•V•ç4Hì_­yºs‚ö@H¬d*ˆìR±—xˆ—” á6WÁ(ç÷>—+«œÁ?>2ålUm!¹ö‰&>N7‰“çìºê¯=­«îŒ~yôÔˆï¥bW…2°gFÜÀ{\…RÂî‚è3ŽŸä”i¹¢]C¶¶’ê¹Cf&5&ï[tÅߣ­Ã¯ù!–*îL.ÁMp¦bDsód¦Y¶Qö˜ç³PšÞÀ—™³mé…º#^hw@‚wÉp•·ì´ƒ—-Ï +‰‡'¦¸d“•ÌDovaÚcq ©IØÁÙ‡JFB¯"‹ý—-ÆEž0Ç*·óP1ã&èëeá]Ëq€É `H›’«Žt¯ÊS^’‹Ù-d«ùS,KÆ ˆ4~X9­‡T,+ÈASöOËÁ)±TÅÂùXb¤¼v¬¼ºVÞ<f/ŠCò“¼ĂÀ½J±ûÉdæY¥™àÊCA#Vx©‘Ž1Ëâ)Ñ¢øJËpCaíµŸöíÔƒ÷µÙa_NE<Œ¤ &«:p&hÜq=u¼UÎW€{±úcÎƾBc;øchlÛÆ&4f܌էj‘×F…b@ˆL^yu&<Äò5ã †]¨iÖ\Á’xˆTj£wý|À¢É&n3}I>#¹;…5pSZ¶êžýþØØE­šÎÆþ‰Î¬G«•9ý!|ÐbÇg->÷ s±ØÕ_9 ÓC¨IÑðUŸ\¹*ìQø½ÆOW¡fâjKÞ%;›Àš±jjBÜ)À +65[ðPǶÒbÒ³JŽ¡gFƒ@$Í +šûH.I?cYÿGz•ô¶mDá{~&Éœ…[[(|(r®À°eÙp-+©;ð¿ï¼mæ ™N/–%’3œ÷¾÷->'‰}n`S¬ 7b¥³¾‹óPåiN UBÍèNˆ$^—h™üì„œÈ[p$ýì@NÄ$Xr³U]ŽªfN]k×U$¢oR+’;ZˆzæÏùR¥×!•®ª¼3Ìï#6®ÓÐÍß‘Ð^³ó'Š}H"²´fB}?XÙ¯§Ñ¿VarÚšóOÎ;åæGÄ{¢³]±Í]qŸ¹bÆL\pœ,CS¬a&ß3·tP¹‘L‰ðíJžêñ2cÍQ¨¤l«ó݉c†ÏJš‡ßñÉ;&Ê;±‚(ALwC,Dk^$í"pk«— »"ÑCb.æz.ÃBܘ†^cf©¡n,-<…CÛ+?²ÕÔ“èççíSäxtÒ%]*X¤~†5ö +Ûè\ˆ`¿á¡LNÐâïëÅCèÔ™Ï/ÍU8oqy÷!0PU…ÜüO¨rvÀšXU“*h3\“šáf1œµ U€o@ÑmhzqV\ð°ã©ð+ i=Ar…ºø¥rm‰Ì~iŽ4ßáᇗ’äsKr·ï‰_Uªe±¯ð‘6¿.;ñdžþAq]¡™üÈô8·IÍ›xÚ¤N›ÐâHƒû[úºûŠŸa9¤Jd€t3lU¼ÄÐÿmŽg|C-ºàd•€%z†Rg‡RgXêÐ]8%VT”*ÓZCæ•ÏÔЖDZ7´[˜;Å(˜½œ6Ñ5Fý’¸d×Ù%ö@™©ëÈ–™xXK eÙG‘œ=ÁýðNG^ÝOyûM×^¯†c[AßlÇœ/ ÕoM×Âç-¼eX÷—¥À¨3R¬ =†¿Þ»âpÿáüÏ¿ªâþøáüÂ^1dzÄI ½®jSØ&tÅT-Àä·ªªÜïËH³QÇE#öòE;¿pÑ6? ºx„cû»ô8Å +=ÜÁÄq •fÐ$ì'KC¦Yš¾&yn8Ü™Ѣ½4‘4‘T9Âqüô´—¹¶‘ZM—¹v¹ è³V¡µ‰ôà5‘ê&-évEÁ7é ùhv<$qLpªÒ¯ìɆÆoÌÜmV:ñú2Ý‹y¶ð¬7̳]?B 8;Sq:{ƒáU[¢°\&Oòóè<’]n!¼?ËîŽ÷û0ºÀ)ND­{üŨúSOڌބOEšûZh<å1²×}bògŽÕ‰ û‡.¹VçÑ@¡R–T/OË¥jè—8Â6M[ $«ñeÒe,oà¯\Ñbuë Õ]]Su/x£]Qœ{âÀS*œVdÅæ$ dˆ0w „ÄQ"v^¡Ü z‡op‡W×AYŒæ©ÄÞ {IñLo;&É·¢R?8¯Xy[v„±|¬µßdÔV8GÆΑâ¡D×™y¿–2ùÓ(õÇ°AË„J’7ÀòF³ÝÊ ¿þN'ó'Ü´tJ¡ÙH,Õ<_ ³ÅXò"Œ‚Ïî#Œ(Üaï::);Ö³ÕâG©ï5óÛ0 +¾ÅN¤ÎZÄÕ+NÙœaL,¢aèO”u©AÈÑs{|£~I”+ ¤k¶5—Â@Ѿ뼨Á§—n†gç¬q$‡QéåyÌCE\Á¬ö™븫¦÷q²@Y%4!`q¬ l|]: +/> +stream +H‰¤WkoÝ6ýî_Á&+‹”DI@Q yu»H±»Øûm»XØŽ_Müèµ×ÿ¾ó"9”t½2‚±-‘ÔpæÌ9gŽ~Ú=\Ÿ>˜~8ú‡9útü|ûø`~üñíûwæàíö 6uå›þoÛÆì.Ž~þwm.îµqf{~°©«Ú7f{jä—'ªöÀ¿¾êL;¶•ëjg|Wu]€=ׇÞÙíï¶~…/ýÂý¸ŽÇ¿>}¼®ÍûÛƒýÃût|saÏn6?¿µG¿¾ûå½q¾mËX †ôƒt1HÇAæó]] ¼Ò›¡«êflM®ûCûÏag‡¸+ùÙ›w6˜ÃcÛ˜ÃûK»qµ9ÜØM¨Fsxb.áwÖC€vÓVðÇgó`7]Õ›Ãq¯àímðÑý¹¥“aqƒw÷ö¿Û¿§t¼páN]øh»•@âÛ@—s|5—¯whÆ:ðÕÞÙnøÖz‡?·64•ƒxÌ©…2öçÆ Ú993wÖŒŸ:\xe}w»²ï«—©îféÇ¥u ~â^ûO¿„EðòÌœ[G ¼ÅŸ”¬ƒ?¯ <èpɹù†Á¶1ˆæ«õ-¾zÄú4xÊ7ÛtU S<=ïðÌS< wƯq àž…ª;Œ>Ûwæî‡kžá7×ètÀ&¸ù“5ŸífÄWWò¹ ZËI +×.hTö¾bN<‚v(®-lh1l‚Ì%HI4Ïf-(‚î({¿ …0Bx +x#ºµ|Oß•otñB`çX7ÏŸùíж#/˜TÑœÁ•`íŸpTL! ® ŸºÃÔJˆãÊ4-‚ñ°b7b2vpŽS… ”gñ¥¡ü5ø–º +JVãž+ÆP:`ì 8„É0Ï7÷)þfmK׫Ì£aôe!ÄÓ^™J¯6tñ‘nÀxÆèâ:'kM›å_UuèV 0[‰›¾`Ï3-`¥£/@·Q¤ýÂÁƒ:x‡dd¬;Æᵤ!–áF¸‰®EÜÄy¦ÜºsùÙ<âËs›˜u ›1e>æ)è<µ +ÅÇØé=î¸%Tézè†-ÔQÇ\ªïåo)—u=Ó‘ªÕ ýÞc´_à¹cÊH âÎåë·( üSn”‰”%ÈW{†y.è$c¾hd”ªSîÝ0®×ÂcTUD‘wm‰W÷UïBgB«>tÚ6Lg9«ðû5ÞÅ¡6týg¦ÕÀ×kU¿ÀqA7E ´`z$&dœs4'{AÕ$­›Xz]Î\"ê÷ ˆbužèV¡ø‚p˜¦3 ;iÇôxkÝ7:¤‹5íu‘9?J3龈˜~b&Ô‘ƒu9åøÎÖb¥« rˆ…E ꀺ’)z³5~¾HQ7?ßëlÍ79á加KK2"ü?b#8-V¼ëŒ¥æ%ÉêEUú,Y¼÷&) ¡ô!«èØW11ÏKNkŽ>Q¸Ì…€†O‰0ºJú©ºaÔ(]‚Lâ01¦%gÆ´S¸mAc·R‡P\‹WZ˜}¦uÊÌ*ån ç …ø]2;MÐfvr¤3ª™Ø2…Y Š7p*³h2}äÉ‘eŠØášxQ‹IKÏ“&˜ò Û\¶»Ê°mЛáøø¼›, PQgsÆŒ+À¥Ó¾T:äÌd66Vu]Î}htÔR© €e(=o l{üÌ\¬+1•N‘¬Eîü„Ÿü€ù¾°ÈÔm·Ðž~&0™JÍ101 $ï£RuÛFŸ™d¿ÕñE¥f¦eC„|g0&ª±'kþ„Ghó·ãVþ,ÆèÞœE Š‘Žû§õ4vöB€TAÌö›,,&¤ky6‹ EOïÍ.Ûëx£1Qy`c`î€ù»©ŸÄß)Ý[[ò¦¤”q_ÉaˆÌn4¹R®]v,ÑÊŒÙ2±ë6S·0"b"“*Ìà¬qÞ©¸;¿¥J‚UŽ +åÝhD7º=ª=7Þ C±|giƒ +²6 3ÊL²Šðç#µò»ÈÄdÈ7D÷Ï©'VC£@c\†F³OöµYé‚Œ¢}n)“ÄÞ¢wÑøexyv 'T2/âÌ–³'Ù¡t:Ý ¹û+Ø£$&×9>ÈhÓí'£ä†;Uá;MVÏow§xƒîµRW3`Ì´Ê-ÖtrécfÂ,ü§g#%q1K¥’Ïb|k¦ã[(Ç·W¹œnârö¸änhÑ% îVúüï™ ÙÊ;„B†ÝRÚyÁ#±ë.¼ÆNš}oAmí’öм§YìÿA‚uq_[¥‹g¢]‰Ìœ»¬W½„BŒÈBw³Å¤êTfËtVÎ|Ï|nïÌ&3_»8ó­ZP@ƒÊÔ~Ãõ5jAšMhüJcA¿H¹¸2j8ã|ê,ZÃö9ñ#Q°–x‡¨K:0AÖWƒ}8ˆÏ±æ>€=D_lG?7d¼F•É™òDÅ2$ÔYÌO“©*}sJA3«›á‹mÄÌÉp§´øïköuQ„"Ü~Áš‚¬ªI2kN›5²kÁÕ—,¶ÇWu]@+ÝM¬´BC'£©cÐÓ¨¥Ìà)÷´ò„]q½4I·Ã…?aºZbw<6ÓVGO¢éÒ%ÇÔŠcjW8&Õ¤…~ø©~t¥~ˆS\Iòý>’÷¥ô'’׉4zkŸ‡S?°G¦V–=Úòìxàskº:ƒ†ÎÜ´NùñSv·Ÿ4‚ëš'Ô4ÁŠÑžó|Q·ûyð’ùg A=ów&©  •ø Ñ†C´X`@´óm:¥A²i4oèËv^›É±lº-³éê¾ê]èL&2{Ø;OϦè‰Â …i¤‚ók0ñü‹Ò£ºÊëTòÝ(¶ƒ¡ù5Εâ÷ñú},“h`9kRÇé`ÄßÌ°ú=hÁä÷z¼|¨QEgëqVØÁÑô|[Zé$¸÷ØÑ$ï\fDÎg"jÁ­í«¢¶B“2ù‡%‡Œ—T*]$³ãê¦ u % …åÆ-Í®ô‘Èl^îµÌ3,L R(ºé ÞÔih$‘žãÕ¢ëKÑ Zt™+ó7aXš€èãÓqÎzû¦ÔŽ#—~`^}icóA‚%"º @J Ç·WœÝh‹ìÝ$5Q #  +ó¦{; ÅèØžzè/‚ðÄ …É FŽ¥(¿/ÄyÿZrB&XÌQûãp¶¬¿JÓIÃÁ ø@_˜MLW•±úëÕÒÇ„ïù}LžI“ìç1Ébƒ ,$y$;’le”¬Wûë—õ «H6[-Û0ÓÍGÕW߃¦ãöDgº‘žD‘,µÚâîï‚%–ƒ•T.æÂèĘDó +3;uYä±}&þ1µ(èë¶À\@üƒßCÍ´×Ôµís½«Õv îçƒÈ"…¯)°xÓ? üEn‹4ÍE9öÐô~®—Ì;r‘a7®îõDVEhA" ²:ödQQ8UlSûb*†õsë†Ô~pe8kìF…I#ŽY* ˜Œ2?`Ê1ÌýIÜ÷dòCÂŒkN R.ÛwÀ˜ÆE-‡ +ÊX\³!ZuÆÝÖô•3u É“2)îø)f‹0p–^ÝèL¹S$*P:‡±¿Š÷ÇÄ¢Nˆ\è³fÓ\üV0ý "Uó¥}‰š½À”–)H® °Uô5ª&å쾄AÑ›'›ŸèºŠÎ#YûÇìðAå,öÃfu}ƒ|ó¼–jnà«„"rgáwW™0JéP³KûFYµrÑš¯­è µ‰ªTGDÍʹ~$Üñ´‚«sp‡’ ¡[“U“‚Ýs™c©D.×;å‚ÉÌöɹ™Š£×Èæ4Âæ\Ê`ˆŽdwÙê¡Ì¤ºu€÷>¼Øêo–Ô½‘殘™`0F¤é´Éá(=4y=@ô«bÒ‚PlqýK¸ñL‚)#Üÿ&Öb/lú6ÃP'[1º¥ À&¡æZd,"!+Ž“œÿ¦Ù‡Ï +ËqÈã"ØNÂÔü¦lø~Ј‚ß‘bµø3ÊmMÙŒ]âÖñ`=ÆDXß151 DKÖ£F=·vI,±>Þt„›’rö™ i¯ÂU:G¼zq´8'Ñ®)7NGc/x ž +pü\LJÏ2Ö÷‡À‘¸ ڑ砠Ζá/²èô"܃è:î=ý˜BžÓ˜n:Nf×uʨýÖ*ö¤†3X¼G· S¥Q)ÑkSÑ·p ã¸+¬àÇ#5?ýY£ zìr¨c"Ÿ¼Ù*°;DnB0³êK"B•T„ ~+X=F ùÄ0dä¸Wä#? ”ÙSF™hÅ·>µD¨š“‹nà‹ñ5:å)p}ì<*g·m²s{ù2ʇ¡&Z¨»lÐüœé7J„hæ„nlb5—HŠŽ˜ åµõL·â h áÕг¦Jê=+/‹ú‡˜ÙéZRßcsA<²êÔ»§’/®Ôæ<˜v:Ú5ßS7iŪáä‘&’"í†ÖœRÔR‰’>^(S…DXÈwÂ1«N%«Š9K;JQè¢,"»Ç»ôÎý¨‡úä}ŸE}n¢¼°§‘€1äÖ&àd”wà)‘Ýà÷ÿµ‡>ô¥ÜM“\dC‘,1çhNp-¿÷7Âƈ¤?B¬µÉüˆ‰‰†rXc¶•Ñ£«‹Ð +cj¦ ¬nbu+ô +ºÐ¿&|.)Œ¦Œ|ö“'Ž!Q˜‚9gëŽM1²n¿Õȼ‡‡¨ ¨‘[«/w9Ž1쫉œîgzV¶+6oÄžêÓüƒ(b÷ÂuWÚápÔ7ɇþEÀ¿Z*[ìVây©–œu©‰;Á3w™¼õs=>Y®:=ÌT‘*åúÿLÍÏÝ Rü¬hC1uzÇú­ýƒIüR´hë¯Ú…3ÃDì¤-e#{(§ +çÝèJó²3“ee{XÉ튨êÌ}vÐgï…ìÌ¡€ì<„¡°‡aö>N‰•bñÜ¿¥£)&#¨ê?ÚÃD\LªÝz\iI’èýnp™ \ÝT—DâÁ¿CœØ€ÜŸâtä8c •t¤ioe~A F­ Y  ”å뉨æçŸ<7¬?ÈÕý«s¥$Ê’Nc!sñNå0.êØBë…£,\./ÑD°†E”…Û‹‘!S7S±Nf•ñŽ“{3Òa1'5ãÈ´ƒú™Ÿ÷wÀiù×´(oø9Í Cà€½‘ÇÛ˜ªé$ÅQEf!|›â +òâ]WôkÑú¥oËó§WC6ÍÜù.¦®I 7d¡hG©€"‚ŽMÓÎÂ`¦ŸO;ÏóNhÖ6Æ÷"k¬«aÕd•¯;‰Dy`Lêå2·4ÒX:¤rŽÉŠr‘´Hµn"¿üéŒH»}Ü[š)!f3fÄlºé8¯òf˜•¥ü­E ž££ÁÍÑÀÅè +JiC +Q1n¡‰8µ3Uæ@c‡Œ½ð;MT¦£áÂMOÖq²€q 9d>Ä•(ŸÕŒ´"÷tnß!ÔQ êœ(¶6#ª†”‘³JC+®éý-èã-\—~ÑwÓœJù0Vªï•ÜüáëXŠ‚Ý”&Fùj¢í: äÑI“P­¬j&†:§¦³‘0ŠV#D”…é}¤±fÂRÐ êê/iÚSÀ×FÅ)ÒÓCUrj6„À–þk<Å5JöÕ~–{¥ä)LŠä߈r#¦ö´ê¢zvQýµNKJ@®‚&×)cøDU$eSü0ˆÐßçn\ù|K)wš[¿‚E‡ñBú“±žµl’xÈAþ`pKEg+dcÅëÌQD"s)_1TŽÐ±ù“§dIvÁG…£ñ¥¯¤!<å8|7¸¹¾lƒ_©|‡|õ°:K—2Q_c"ÚWKû +cÍ©ÍÚ.îÀŵUÆâû KÍ‹¼Òj¹â9 +¢<ô:äC)‰®iPòÉå˲3ÓÎ4 ï¡XC©ê^8“§ ƒèðÇž €øÔ)ÞOL\aÅÈØN‘†ÅŸÿÆ1!ÿ…={ã_þ&ÄßñW(ž¿Ë¿´ø#“Äý؈LÚˆèWfêžïeJØIÌQmþF-Ø:žø£&8™øL 9ÛgünLøŽWö™–×,¿ÒÂþ5þv±uë?@ÛuIÿ¿oÚ‹?ö,ìRÝê*ä3OÊ6_ßÅ©{ÍàÏ*ƒéBr/éƒõ%‰#.>Ra¤³œ1Z|<Ëg™ÿhE:% è" æ‡9s//ù‡·ß·£…ûÈpû:̈Lf•ÈFò Ó„+;–{µ~¾mEz;º–Ìói;qÆßÞ÷"°OUjª8œÉ­Úåm‘’6ºàgñ½Ï­Cyͦy»óž‰è-ÎSa9Éc\1s† +'£ ™ª^BÕæ’…âšn2Ö™Qã Е§[}ýZ˜jÑÌüv½d"Îf"uTÅì<] «€:%:—l±K&Åú §Œ“s亷pòó‚“!a*o8Ýàÿö½kηßýðËï]sûôÝæ߶ñRvÃl› ’ÆÆuÞWt¶oúÑ×ßy¦ ¤ãˆ¼§ õ ùëxúÂȃͅ·lL¥ì‰ï€ÀãEo|í'¨È%p@7_ ¾˜6=‹);=AÛ,.Œ½ùäãZÈTÉî?\âSsÅ]=ñBùà-tómçF¶Ä×°Ò¦5œÍ&äÀUÁu‡ÞûÐetI7uA¯:UV•îô~cwîxtù’¾Pžpµ»Öaù#”Ñ!lb-&(?8¿çŸcoH¼±W¦®7÷\¾¸Uè#—OúçÏÐNf:ŠGŽ¨q yÞ!<ø±E; +v†¦ÄÇJ93<øŽp„‘¤Oÿ`·ŽîX +endstream +endobj +129 0 obj +<< +/Filter /FlateDecode +/Length 5965 +>> +stream +H‰¬WÛn7}×WðQ<£&ÙdwA_’À öÂöa½XȲ%+¶4ÎŒ¯öë—u!Yì˸½ xz4M²XuêÔ9g÷÷7W—÷ê‡Î^ª³»/÷êÇŸ<{ªNžœŸ4ªÙZçãÿmëÔþúäì—׺>œœ›7ʨó«“fÛ4:¿T~úªÂ¶‹kâ¿në•1nëzß+ë·Þ‡¸æö䟧V7ñ·øñ¯ó¿üt~òÓ¯ñÄßãq£öˆÇÀ·g?ß6êÙîäï'g¯ Ìw×êôýÝæ—'úìקϟ)c‡¾ŽYAh!XCÁž§Xqûmã-a ½jJŒí·Ã0 +òFoL³ êô .â£Ùuú ÿÖÅ¿Åøm§îtØ1&½ ðÆ¥n·¿z~¯Å=ôÆÂgÞi†m«NԽƇJ‹îâotÐ=|ÿ¿·ð}ÿ>¾¼1=<à—/´ [§Nïc”´ãµŽGô%†;m „—ÛA•µ®¿ü¡ïï•8ÑA¼W°†>MÜòFwÜ øL‹`³ÀÇôHü½¡ícN0 øñAíbrb¨w§os§ã ã¦ïTL»µp»ø:°§õï´é(·>ö%q·e#²ûQcôïU…°#†ÊÃFbœ]ÆU#@5ŠýY›1Æ;ø|ˆ—j °[™´ª6„«-opNùÎÛVµŽÕV#f¿b&‚B{.|ðöÚžAðSú~î`7N,mö6]+Fßã\GÄ0B1ÈëRݪ})˜cµusµ¥•³­êÖ EIÆRƒLª¥)G1½¶¡06¦¿S0kaäšFRѶ±n EMŒu|Bß5ÂÆÃSLÆùG©"µIÌš¥K#šÐ5HKŽ.’pW5TƒQ¿Àf€ç¦<@:,cÉÕÍé!7-7ub0®\LsŠÅ‚Ÿè$ü&Óå˜BSh×¾¡¬GtUÂÇÆX®ë8*†>bÅ›@ƒ ÐY|ì ‰3Áa.SUnæxµçÈLuÉ3ÏÒt +} 33O¬ &y§å:_çÏ[¨v¼ÃoÔâbôºn3&\Ý÷¾4ÝeÜÒ›̻XwWåˆÉ ¢órõø{,+óslºìâøK›ÔäªLÃ>¨TÏ U1/®…•­™¨ K¨êbQ3ª®an!ƒoijK¤‘šœÇ3´ßL¾¿™i±Üo¬µºç- ‡u4k;ÔSbƒ+~ºr k¤ 1ñ`;;6ˆÊÄ‚ÁÌsëéùÊÓ7FPu6Ž‡{³ŸÉD,ŒœlƒŒEINcNíà(‘?ÇŒlGî{ª·ÚÈø¬¹Œ£(læGòm^I¬„š«¡æ–†^ð×ãéòç@·ý)0 E¬~† ì÷ö½*gY™·#¬ÄŒ9/Y”y¥° ¹JVÎ$1}5Ó ™Ëˆ’wºÏ'ñ9¾ÔØ ‰¨Ü™ xic”'V M~Ötq×"³óðõB/Ä 1•ŠA°|UBc¤V²|wK½\}-PÚñ¨k—Ò:!²ßAá}umò"¹Aë&âŠå÷‚ø®x1¼°²w•ŠÊ³2â,ÿ•ýÔî±Â5?åM„ .hŽ¬ç yPLk1EÛ­šñRiòÌ4JÈ¢-òÙ#õU'ê7K2:ý°¶Þ^C]jÒªRŸnôùok6bã9øÄiQÔuéœ&Q/ôp÷¤å\ w;Ó®±2}Òàž t¨†W‘ÌVË´_À®@C–T8ÏnáÇGF­m9“õ íc'S³°ÅmšhŒšô2±#Ê$2;ª“¼Ш…¹Ä ë +k_áÜH'ᱩ'Q™›Ü°ëhakt4ÛÕTÔÕ3Ë5Û~ÈhraÛ§BŒ¤ÈîçzÓ'[â’Lí¡'0ŽÏÙ­¹íÇa·*Çl€Ü“`öjitÓîbÑSºñ 0YÜï\(DqÁù8¢š‰2 L£(xoÅ™Ü$šâJ°m:šìӯȆZë¦xC<òV½9Õ÷C$ôSQ Ô6@à1/I.(*{žb‘ ¶G«ÓfXk¦ÈÉ<Ô¡­o9c;íH÷ÃÖÒÊ…Rå=†6³15kêßP÷oΣ§ôœ!Wš‡_:`»½ÑÕ`ð‹ +*)®Ü¨µ#}=£¦xVÂÉ|gÄÉòª2ZF¶t<ŸmCœA F=z_6ê$¼G¶7oTçX ä¿„?MLMtëT¯âß¡k¤lŠolV£l¨éiɼù>E½ÈA‰uM à‰A^F÷`jÿÁj”ùí&ÓǨmHAlÕsJY¥ ²…1§]qE\6wYB õÆiMØàË0ͼÁÃ`‰¬$ý}›¬ü2Y¥CÇM6%+ d%%Á•ÓÈŽ*(Rˆg@‘VâMÏ×ÌoI:ÔZv-¶LSc«[ÂVg…Ÿío”5míP¸{¦¥¡›ÞPAöjÆÝ¥™onФdf¬®ÜK¤—\$”™ølw¸y[©‘³"c¶…êÑ'¤‘k#&ˆ‰!žÐ&CåIMoˆžå…ú9ßG/PVÔ 9GcµÇùvÝ´ñµG›¸“i‹ä6-Ñ;h94BkÁdj0EÎX@“ïA’3š„uÄ éX‡Û•ê&íêŸß[Ð’¥9çHo ÎÉ)3?Lk](¯Ç”°íhz40êïd1&‚ù[}ð9C®…:]•(kêâ;í%ͳGiËU /9^“¡–è)uZRðÜ+iš[ÙÀµÿàJNòŽöb­Dš]a&%ÊÖšÉfáv‘ÛŒ@G®çhšŸRBM KU‰°dh®U‹>gP¦a:ñBÇ<…@Žù?ÍÃr)0XF# 5Ûmmê”ÄT¦ö0w€ýŽ^Bò,ÔX2¾òIfM¡rQ¤í¬è¬œä¾üT}”T¬Äj»«N«±êk¬Úa «®Î#ç1ù…4¬zðÂV=VÙ'%ûH|¢Æ#fFœ¢ªï/qÒæ„Úæ„bsJù… ÀLí"¢Å°Ù8¸Ù}bQËÞÚÅW Þ£Ê °Æ6T$»á@‚e.ÒbÈÖÂ/ŸÉ×wBNÕJøuülX„_,Uñ%õ Zö”ï(}zÌa—YÎR:Z’9ÍG¬L$KAcÓ‹äQ°/c w+õÉ¢æþšå‡ÃÂ?häí+ØÊ +óMil½Uÿ˜pqRîeÇ bj—eÜÜ<éê®YºåÄF¥\·”RaÌPxBf,„|%„*Q¹ýh¢š%˜4¦²9?ÜÐY¨Q3“\Ã=c¬ÔSO˜8Îup4`l]øa:T6xÛ9Þ^Ë Œ“Ç­„¼x é—µŒYZl4ñóÈ-SÂAÁ#‹ûβG6æA?¶•Åæ€ 9æ=¾[;UÍž%ç0¯›¹_°M3بGVƒiX)ÏÚ¾cª¥þ/a+òA³je÷¿9Õ-âæϫ㵡dãHù˪ÃÝBªÏ3OzLÍ‘uè#U¦b€°âÛqíî,œúFëߟc?Úð½šö½ *ñ8-©Ð‚¡§ÚåIœ;ŒÑµ ‹ôW@·_–P×9PqŒº»ÌìAro™ö-« [Í¢=^„Ø<|]P/X}RÊ! öGDûâ-ë=v ®IJ¾MΓy-ˬ¯glJ{TQbjöB_'B‹dí`â:C³;œÔm§lhx4‚AÄ£„wA‚-wñãJI·.f.—ªà&¶R_ @üÖE€ÖÐÙ{ÄÐWŸik‘‡Çùnr#uP­„%˜6Ó.Šæ@’Kª§$›¦v¶òœ$qžjéi‹‚rõZ›4fmM‹¤“u[ñáž`õN½ÄÛïN +NP ê•Fhæ!´AX´`Ü ‡ 0YÞ!Ë¿~©­‡‡WÀ8…ƒª[ÕŸcŽ é{¯J°jj“’QãnŸé†•hqKPc2šÒ¾ÆÈZOjÛø}{„Ñôc-ÜUé–N) O.îˆÍÓÀœÊ_|ç£vL$ØàÂWuµOEáÎI–r8‘Þÿ#¾lv#Ç­(ü*ZZ@äE‘’¶™N€lÞìNÛqàr;Uîqüö¹$/)ªJî1U·«JEž{ÎwЗ&>rnNrÕ-sÅADù­×b‹}&ËN8]$é6ÀÓUðq]Ò‘&׋âG<†}:6‰¤g= AÜ•Êš¤Ïþ&Gæ=º°‘‘#ë¼kô3uO :„ñt0nÙÁ¯€•X SÊûåÆüBknîÙƒ‹EŠƒJnØÏ~AÇD):|…È¥¹šÚ…æì;,Ì „Àº~ÅG8zÂÃ# £LûñÔö M#"m¾‘’añ]©·À }IúièƯ º¾çkFü„e¨ÎÂF‘²cXÀkþH‹$˜C`Ó÷÷²Æïòù1¾‘Û_é‰ÐšfnM;·Üg[~ÓóŽ‡üÇ-LêÁ`¦yä;aPŽ#T¡OÕÑ‚Î,3¶× Ðü!™®ÌŒ•C|`DVä!Ä~›•Gøè&9ëWÞžÒ2ùáw”a‰8 9µP™zVGóð=‚ŒFÃ@8–æ›FTATt*M[OãŸÑê°Fª$Áך¹ª¸ðRC1¼^¯¾ê†± ¨tu©9…»í×)ornC+vçG­œ)rßZ*h…$R4¢ÜÅŠÕ%×<ªf·\éJ#Zkîq ™åR ªíoŽ¨T!ˆ°–3 …¯çóBŠåÀp3uY~ôœ.ái5_o_Ê´br’kK©šÄÑûÐÉ +OQx$ê´­Û#.â9`bâ½O»%4çÚjevš¯û(!EX +/®SY32`J­(¼œC’|¼{8ó3{6‘*›Á°7œ‡=înƒÙD=š÷?GÅ{4hm‰N2ñ{Ú·ž…QÊ`úŽx†$ée3ƒ"Ü­Á¾¯'ðOÂÖf Ž?^Ä>aõ–3ë<ø¹­\´3us"vU"f¡Ú­zõ;pµª6ÕE ª3š÷nØ"Òú’¬4·í'EῶN\_æ“á´Qi„¥7ÒØŠ¦qY½!¤sÌ×;¶5çrm²¸t v¬Ga1'©Ãÿ Ϭ¯RC¹K÷¸Œä> ¹ûSHîrX<‡äë*a|§`Æm×p ÊÑ8Ÿ‰åªkoþ½çÆ.ϳeÜ°¤a¨Wæ’Z``£=$¾Ÿ‘¼I\ |»AùËŠòË kÿ%ÊŸ7(_'ú\Ê_åögq¾Î÷[œoÎs~~§)j¯:ýuBb(§L@WÍNuN¹:g³¥ÎiVäÿå¤ÖjÝaE|o +1‡'EOGç†UÏ°¬æªùüþçî-lÈã+³Í;ÿ† TÒßãßß$èŽül¾$ ðIîúxzÅdC<þ +ºO€_¿à/$|È×èTä:/¸äpÑŽ0íܺ!Ûº›žw®çMƒÚð\³€&ÌèyËþŽvjju–3&¹Y~òÝHuŽª„RµI’Q%v@§Žýï‘kF G7aGIžhûE¦ãKká¢ß$š_d¦ÜvÉùxµDb1˜`\}² ýz#þ ¬ï.ÙÓBpÀ¢ éW‹´k2©•3¿·œÝ!‹,—À7·µ°ß;õgó67M×Sܭ츗ä*)¥7ˆ®šª§ ÁéÓ$è3 fm vÔdÖ9…vª}sBñÅÃòàš%Ñ;ÆÿÊÄ!IHÄ‹^‰Š’Aí„$¹¥!²àúc~lä"Wqý—PõˆÄ_PpãY,ÝD,E4 §fc4q»7fŠÐöëŠó°Qq‰×@û¶uòê~µQ²ìvðá‚’¤s;íVŒ;C’°·ý4O™Z®š$ésó›Æ-)Ž`IQŠ?ÐD ü –xu”#L5m¡ÝãV:+_¶´Ôb›EHóqâ^8KÔ‰…ÔŠåžôÔ¤Ä+0Su0cø5$ÚT©)/•˜VûEn‚ Ëø­Ñ!½Îv_¦ìîd?±B/¬JRã›4F˜R²ü÷–[Á·ÝꜶՙ£o¢€N¸ofÏÒ+ñý*6·U dI9ÿeóe=øä—Žo„Ç׬Ӌ§W–*á˜*á1&\tœl{­M­ÃÐ×ûe¼(½[±ÖŠý0nšû–{][Ž¶r•t jÍû‘jJŸ—yΠà‰7Õ+½ ¹È¹É 4[S¸š?êÅ[Ý$âXé}"¿Û08Éð›¿hƒ‹³| ìlê#2ñQŠGJìq{MÊ¥™ ܼ!šeP4­ý2_PL‡)¶£e>ÓONï-d{èõ”ŠÈH?ï&Ó2RxAjÎpôM, Oò€g ]BºL™ÿ`U¼ïx +endstream +endobj +130 0 obj +<< +/Filter /FlateDecode +/Length 5138 +>> +stream +xÚí\mo9rþ®_Á/€›âKóí°8À¶äo½»KÉ!ˆóa$dg-É7’Ïñþú ªH6»§{ÔÞÛ»²fØl²ªXõÔSE?ß=~¸Þ\>~÷ÝñÏÇo6_ï??þéOìÅÉË£ãïÏ»y`/ΓÆ:&ûÞ²Ý “JEv~É:EûrüJ1Íί™—Á1Å Ò±>Y™z’gÆIç¼VšßqcÅùžþøòHÁLŠÿ½aŠÝ°¿¿ºUìäþ蟎ÿòÝwÇo6w7Œoïºï_ˆã_¾>aÚ:3¬S×uÂÍ~aRõ¶ÌyüJÓê´¦ï5‹N*›lŠ,˜(SJ.XXÚ¿óBGéø½è¥åwB+éùÐZF¾F¾c[öIH_~–_âhúýLÐó¿ «qL^±è¼ üÝ s}¦—‘?ŠÎÀ+vð +Ï7¢ÓZjX…•‰Kv*¬—‰f õN²ç_ÙV8iøµè’ôü¦€•k +ƒŒtü‘= +|Ï6B;ù¥è´“=³$X/m¶]ÞËE9ܱ­è´4üoÂKÇ?ײxÎÀ’4¼Žº—‰_ Ø\¼°õ+vO+¸fa ƒ¤:ÜûÑ#û*t6Ùÿqþçb5Ëfa³Y¼8?Bû `Zɘf”¯{RòÆò·¢—†ÿ—è“Ô¼CAy~)¢Ôü^$øí…Жo„ñÒÒÖm³u£e*y{Æ„t|d.;©újfô¦¼¯GÇoÉ<` +ËwðzÃ?ÂûÀ +à!4¯Óö0Q™mîRt æN¡JòÒûÖ8a†/U es:JÏß—é³&G«iŸ®ÚJÇÂÀ0‡–_&jí?¼Áav/´áŸÁ6ÿ$ÀúG²¼:Ь0ø“Àcoس½9­¬²¡~°!ôLƒãpJË`˜gG[ž× óJåõxêÆ,•’.¥>2ËFh‘—>+Èñ÷äO²oº%ùoo/Æ憢«ç¯*Å»e#Gdù-½çŸE‡¼ƒã0žex°ßƒ³rEoî¥ãTü +\å-(Jƒá)p =Ë·¬žvVMÆ—ïMÝNñ]·¸à¾ñÅyu—Œ¢Àߤã¿Ò¦·{ûóµ8Lá)Ñ=ÿe¥[ñ‹&1èÍG/mJ.e½ ¯ï:w»¨‹Ë*N\G’ovªš?°ÜQÚ*øx³?ÇøAàê’Œü=;¡WŸ«¤æoQáfVc×yªÏBŒi0ãGà -û+ðÔçF¾Ìñ !`F¸òq<Í E10-:/'5ßâ®#nFÏz ÎK®Ó[xÍhOšô­&m”ÑY#iÒƒ1\²Wt*î…––ß ƒq v +‡ìÎ¥£uzÙƒ.ûìø,ž#í$ 0lŠ³°uö ÞɃ‹ï"d÷ð¡æ×lÃN@õ4Áû-Œ¾ ‰³äIÉÓ?¬ôuñŒ‚ÚçâŒÅ%{¥uìIN¯„±¨´ÎÊ?Æà§D§l6þlD‰¦„ +®b—%xP‚ aL1ycdÌP‘EÂH@ÎfXF>€Wð.ò`c@ù!LWS§ðÁ>kA“Ú .«Ï#8L_>7½ üUlÀ`ࢂGûË‘¼ ¨Eš98¶ø b~„# ¡ð3ˆAóaÓc˜µÎLÒÿ§¼4Jë`jÜ"Ìû‰ŽB‹"›bDòüºÝ;:¨Éîa‡J¨PlmˆWùŠp²T&ž á@¯ºËÞ ¬+´ÐÈ 6È­Aª9|dl0³+)@1žé2c(›¶P£©BäÕúQö À”ªëƒÿ$ lË%[§G¯=¿29/R2ŸmÓhÓy+{ׇ’y)x=Í^-ßãéŽx¬,½ìùƒÀsmÿâÆÐõÁwÂðKAÁÿJÜî# Q©qÈ ;9õKR"bù Ilßâ·‚Tg~»óz’xH?éç—ãWö @l’ÚÚ¾8;kÓ\ +[С"ÊoçìDtšÀ>À„Ý;Zð­°èïzü{gÐuÊS :Ï}ywU&óxúi<¼ìþ‚L÷ƒ€øù‘ ˆ!ÚäÓºGÖÜ­“’vP¯Q@2ig¬tÚëÅó×1ø*˜eæ¤ûì÷ßàó¡@WûÈ9 æ½ø„YBø¬Î”ÄBb1NÎs`xmRá1‡A(†¡¢‚4íø%«LAI²FNdîHh$LäÏð|X|v™¿{?W•´Ú™†!(™X×Ŷ>°¸KómdÍiÄ¢ãu1ɪµ!«€Ÿó±À©$­ö:eïqŠå+½T?y]e›t#>”W¦§½V…4V¾8µú@ËÒÙQį0%Cò~3‰¹0;ÄV~ÁyG‘Ö!²Îòjlä é’eÀFuè¾Á\…i—m䃀×_ˆÄ+5 +xCb¶a_@p6­•†eK Í°†fý%/ìM;dµªJЄYÖÛ°œQŠÎôtÂ>·ÊXÜÄY©=éS”:$­¦vÉ»5y»÷3æ(glq0ÿ>9©µW1íY#Ñgë¶öüpæ³ê‰ÓJIï¼Naï-¢È‘ ]…9[ÙϹ 8<"²ŽhBLVG‡ƒÜFôÃîÍ×¢ÓàW÷“×ÁˆJvJOU å1ÕÀÏá™0Ï`Aù5Ól}ë£9]ÝAØ1vü¦¾õy>6agrð˜r}a/?^g±¥ŒLXr·}T2Y§1ônøÀ°Ï.Þ/5*tQMl† Ãc+8À=þïIîUgc•4CÝ(µq4s»!_§!Ú}ÍoÛO‚0D„m™})d QQ{+ŸKù£§Û l»ÇÿÏäm+ µàâ¢x/ƒö:Vî©°þ¥¢0M1OEÔž[ÈFʉUN¹rF¾Q±T\YÆ!8fÔœ¯r§‡g!F®’ThRiõòQqpªQŽ$Uh§Š÷P^…+”áˆ÷¬ÔÛU¥6ÁÖק4";¢k+ãn˜í´Þ°ò£P*ã5”7*©“Ê¥ŸôŒÍÁä÷V–LB“I³ÈJ÷6ŽVk÷{VVŠ fq±Í‘¾¥‰rgƒbE>F‡±©NwIÜF¤ÊIgðê0uj*«äaZy`f8/ÓC¼5Z“@¤žOJ$ÈÇgËM3ý©'Á³ñuÉñ•"äIfRZ"££@=þÙUÌÙžº)M¾NJ“”À.»&•F±i^ùÿÐÑoò… Ó¶—Ñ£ìÞ*„>5Ø%xT™ý¸šFîzIĩغDÔUuS®Ý­™‡“›ìvÌ ¾ 5Ö€·6¹I´)AƒÂ1áöŽ ¡´u± ½×¢JnDàá±üŒ9aáXHOà¾v\±rXþ‰¨ø'üÎ^´Þã…'D¸êìPÞž©ü~+"Ô+‰¨Ð@ûáÐXdô:D¿'âœ9„‘‰›©)Î\¬'07UëÉ3ØqTKFü´jq‘4†ŒLùdt?ÙèJS¡¢à–\zëÁÝ™Ò÷ï w]» îÔù*žži(ÜUjÙ¨¦œWÓ=ʵ›€©©^’ÚÖ‹BL +z† +´PϺ¦ ÷¿;ƒ±Ê–¢i|Qá>Œ@J[‚hñBg -Hõ`aÜìÆ'É¡Üîípݘ;¡©¿ Z¸÷÷=f§ö“ó§Ò6*B¤eàƒ“2¤ð¿¥U¬çk­å¯S·¥=‹Ì:;Â`•T2BÑDê¶l2n‹Ëk¦‹ä[H[­¦ˆÜï9ÚbÊj˜;Äàä4¸¿VÒiÙvRÔzdf›[|„í25’‰š|"àh½B“Ïìqp€•z Ñ/ŸÜå¯õçM9©-n]i3fŒH]´GXpÄ{¬/—lp’³boÜL.ìÆþð(×ÙåghžUé±(3kC{a~T-©¤ãÓĽ.6 †¡OdÜ.¸« ÉÏ´ Ñ9Hž!½ý1[¡…út±X$¶Ø ä'¥íi/P£d0›_„mšJV*y’vô‹i‡…Âú #2jbq¼˜}Öb^ÇÞ1Ÿ²JzOȂПj]2P9øŒþƒ¬éÙoé®\ST®†õÔå<º3nü¨5"£Í¶ÐÖ4TŒƒþ7•¾@¬ì+‘ñMfѯèO°À 4hp¶iöÛQº¥H»_dÊí[8S-DÎv4µeÈÒk@Ý…¹°•s;2ESúYŠR!mÎ.•¼6¹-‹|O)jd¦ªÅL›q +¾H 5uº<73_XÃS¸®·+ŽÚ)§Ž@«Ç¿O‰™äG ðµè‚ üš-öû.g}æ ²çò³§z~gò³¶”»2CûfvÿOw¦ÄïádGSS!Y}XKÇIéM-¦z&šl¼1ŽGÞ ‰Zs²s…„uãS¾¹?ÖN– F€eksðl-­sõ4ƒÌŸ*°˜jŽº†k›wN}ÃÒ5¶éW2`W“úáè‰'ڇיHhÝ€2h+ãÃ÷ÝU´2>zU§Ä-Q 1Ÿ=liÎL3=Fbúû”Ï“±C§ü^½45•÷ELŒ^yd„÷ÜÍ€ýìüIð Σ¹`°iË7!ª0ÍX=é륄{6r„+!Š«]¾ì\»€KÍJ‰+°qÂ…Q¦Ô‡ÚKÁ:ë=„ÖûY¼1CUê®ØCSoÏ'"o ­ ’Ƈ_hmÌf0´¶ÚbaÏ |‘)û] vûYäÄaY”/Ÿ¢LOµS¿ês‹˜•µ±Ú*#£òV9¬¾)hÅ0%kOLÑM‹L‚Vü²=áK‚ɯÁucõÊÀ1Ä˨Çu‡m' uÓilD=Aÿ-:¼`C*d¿ hH~Ë‹áó òÓØÖ“ß!›pU0"N·£ÇPþéê Ï}‘:`S¤Î—X4G§îÛ©x8ÛuªH !¶$khod í—Ã;6¦,¦Ka(Äá•<7âv5¢¢È„ ÃJï±ý²ÜÜŸIM!{P¶Ã§4$¹­HÙ'Ò)1E W %Z–Ÿ˜(\f¡ûÈŒ12$Ç 2Ží¶Ìª £uu„NVÂAF\É“IõL&0Þ2«ŽJªvVðS£Yˈ:kQ¦è­´Î¦¼a»íQ#iWFC`i°²¨ƒz@»4—d¯ã̼ÃÚòÙyË4&H“ìÁiòùå-IâÉáiiÄì¬Çߟð**ÿùeOŸî}ôL'/£N9vy‹wnaˆ‰}dgGåzCðºgêðÈ®2.™¤ t6ó–}¨Ñøü©‰±ÞSœŒíšÁÙô~ÇÙžî“×f´ÇÖ¸J{#ÿ'¥¡Fwo¦ºSÞ®UÞtèÿÊzûdþ­ØýÿzÏõ6qøjÛœqXO Q]Eã³:hÍô!±ËÛá‚•Â{êШ”››¶ØçKIÖ ËIɨ‚W†¥ µÉë­è€<üùkº>ö³è ûIÎ^R©!ys~šÛì¢tóœîœ- ÉŽÛþj†EXݬØ"Q&)··äÂoÏ~ö@Å`ÂðFøñoì­è¬¢„=ªÆâ0@«?cvøOlÝJ§=*¹mÝšézC’)ù ú½õB–pŒ7>!QÛóã«u 蟺]§óMPúz%ÿC +ô·¤dP1(ô‡~w§ÊòþZoRRæ¼Ý@~é9;Øíz ì) ¾0ë¯[Ì55?6"ôtts0 G‚£f¾ž³wÊ:Ì|"^44x¥¬\SÄ¢»¼‚{ºõ“—qC/Þaó­iÖµe`Q´a¬¦›hÓemºrC±˜ S6¥¸'3ÜèT-#í9Þ;mÿNYeiúøΦ ¿ÿB÷…>øñ!÷#oQ¦áPßH»˜0^ŒÏBðO +a²EçÝz!Äo~#«¥I&–×þ+\ÜWpªlaF€‹}Í™ª¡ ¬³= U™wœe¥|ýÒ"ºjåéÀ•¯ƒ-·Ø™2¼­Wjò¶l,ê)cÑN«òÝ©3Ègh%ÿ”KÅÛ»àÎÁaow¹"Yïf• z5ª©+[ãŽ}JÍÚ¸W«Ä`~›R¢89ðôÈ2bŒ¸ÄÆqû+n|›/U_¡hr½fó‘˜ÚGyéЕ£vÁváÉ’Pš•r·¢g©WýÓW/µwHFAÏ› ^å‚Źð1±lòâ ×N™Á»dÏ!hwvŠ¼„4¾å?RÅáGh·;%~é'¢†NàW~‚W9aðÏä›NØ à©žŸa¥îˆÑŽŸžÓ0Ïó¨·xGó )½×HÀœcûÜ©Úål )×+×JÃÎüóAƒ8ä³=ü­€ym2#ÊK¬9u‘¨3¤¶9àÝ寯òO|‹¦RÀ sB¾í§‘Š ÑwìRq¦Î·Ûÿ±ÁjLæÆŸ½*•$ïW<à–ÿ‘9"ž} +‚gÄkäu‘‘B:þûweä7#hÂê´¡øúLô‘î¤e‰3ìd÷qý'pÔ÷yáå +↠+Z×&/¡4–gÒ7awá;þC憧áÙ ›Uiᣘ\ó’ÈC%KÏÿÀögÀV£ë¼°ÝàPà PD!ѪÍHˆâú>Ð +°¢Ô³QÿÌ(¢Q¥è,˜«!þ˯Ãvt"ݳ k;*Rþ7«%M² +endstream +endobj +131 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +132 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +133 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +134 0 obj +<< +/Filter /FlateDecode +/Length 5597 +>> +stream +H‰¼WkoÝ6ýî_ÁW@¯,’"%E&n‹.Ò}4î§Åbáǵ“¯íú:qÓ_¿œÉ¡Ž,"_‰¢†3gÎ9süýÃãû«³‹Gõí·ÇSÇoÎ>ß}|Tß}÷êäµ:zuzÔ¨¦6Ö…ÿÛÖª‡ë£ãŸÞ6êúpt|ªÿÝ(­N¯ŽšºÑV^¨-ÿõ¤|Ý…w¿®vJk[ÛÞõʸÚ9ÞÙmL[þçè‡Ó£~ _ú=|(lÐÀ»a{øõæøÇ}£NîŽþqtüwïÍÙíµÚìn·?½ªŽyýó‰ÒmãËX„ô‚ÔäiŒ1Æ×8ø†Ö´V+m}Ýx«:Ó×Ã0xŸ«­öµV›ÛJ7p½¨¶=\o*ÓÖ½Ú| ðÁxµy_é>œusWµµ ï©»J;Xy¥®*­éQ¸vjóÞ5pã±Ú~y«Û°4\zÜJÛ»ð¸6js©Î+Ã_OOì¢ Û\Vºƒuy}ØÈt°ð&E¥ ÝÂÏu¨zøðGÒáñÂ!„wê¬ÚzØû ÞVaõ€‹z¸ÞWì®Â¯<¨×aSŠ†nð5l¢„hÕ{Ì’‡ÍbȇjÛòÕÁ¢|£á#2' <Û=VÄx§.BôNe0€O•ÕEdçU€á&JÔa^ᨪú×é_òžÁV'±=ŒaÝ…4u :{("„ÉŸ«¶Dÿpa2<*c F§tjÀ†et³Ù`›”‰J{ËUºT÷Õ0}ÊÃŽáWÎMȪAìݪÛðœ°äi£‡ s€}ÃýZýVYÌß=Ф C®©0Ã×íYáÿë +»ˆjˆ¥¹€²öt‹âWç»pƒŸ¸¬ !m%¤Sí÷95ž¯¾ñ¨2ØéÉÅA)E»ÊÁ¾Wk±Ð—Ì8W­¥ ]Xˆd!‹ë¸¸­Þ8 HÏñ¡²ÓFäP%!eî£ `þ[±~l§jôb"ýŠ¥ Çö×¥¤Pq?¯Æ–^æ» ¬ÎÔ:«<œçÃ*"þHß±ésÏ¢^Æ£^B˶t&GÜc܇–9p¯vBí¶ØV—¸°W½öܦì©AÏ»Eï:áßÚµdË’ «6*ž&+€=r©vYË =@–E–Pfr„µPÄå^]ץ̉‡‘·©f=ÑßKš1QðU8K>&Eø!|õ†©ð³¾ Ë=aY›0žÓÇI{¡„þ©„hìÑõ¸·#9öKØo­ð|¹´»Y tìÂãXn¶Þ瘄6ჰ]‰‚p–£,=d!ÒYb¦*p¼¢> fOm~%§äÈLj€žá:ª:åU9´f $D#4k•G)ùÕ- ’§G,ä"3[ãÝ?(˜Ç«Ú|óL™o™BO6ܺ48¹e¹jDá«‘ÓÈ ¼¸„3#7™ ™ÁçzÃO¿™ÎèeƒÓ[{Ø{Ò"|ÎH¯v"Ë¥vž#šaÁÝ|&FÖ~qL‰ûe©öqøhó’a¢I$ÝMN(ª™Áó=UÕïw±¹Åî˜ÛΚVÞö ‚µ"+Ô +Ù5Ó²S‚|j”ÔƒÈfà +<­Æ‹{f¢óVÓõ]•Z7Q„B•ck»Äåì m¤ÿOll*8îtAÝÈÚ¸‚ÌžÇk÷,“Ó[ç ‡V«±ÄµšZ¨´ŒQË…5°{çÀ´-Y)CÆòʯÇÇãýUÚ®œ0ƒl P,¬ïïáE'¤båmQíš5=U3øP¨7`M‰îŒCœ'µeÇEmËzPS#SrÁ‹ç8XãÆ÷dA‘YWƒo(•öB{Öt |æÂP›ý ¦Ÿ?í²Ã4Ò)ƒB‡ŽÐg€ ) ôwk]p7vÁ/‰1ð¤§ÞÓöHÞ¦@‰=”a#½êÉëYh‰¦¯“SÛ‘Ã ¾Ùo‹½âMO„ÑΞfD¢@Á“I¡>X‰§pÔeçC”v¾€Q{•s3ºtnÍÒá\¶1zðB³8G£žìY{ÙÄ)NN‰»<µàY¦È‰ß û0{òäÙsâÛÛÿ„ä ¶eW_vJ©lžËKNΨ´1ó-wM_#“ËŸ¼ ‡Õx(Idÿo›DsÚuq,›™WbҌ֚%ì´-¸þŽ°ƒžEbÑg[ƒ‰:®ìo(™\ßÂí>kÐYŽGH•ud¿£þÒXmÌúºìäç@5bˤd{ØE˲œïÄ°Bª$Ì^Â|ÀO›-fr]—@ôC.îTÙTj3• ´ÊÆ—A±ÚÅ;B…YT½0qfÿ¼{é B¼ëµf.è¦ÃRrŒÉ½‘½ÊøPD&iš³Iž’ŒÄ‚?û€šXG‰#z¯™ê稡ÔÐí‰ûËaXáó`#³_£äl4žj¥“óQÉ“bÓܳ®îY(§Í2e<«M^†L}òVp¼ VEñ±Ô=KsåJüµËJ™¡r']>±ÄBSÛrš‰›­œ î å,ó­lËý¯‘ŒëÕ‡scÊ˵õuã­rŽò„µò¤²èˆ~U¹•(21xn3"Â<²”ì-# ¨…ü?9F*“GqEšBÐTvL ¨ì Õïˆ÷ òÔA Gå¿ãL]©™ËÃDAq5fl…òŸd¾Â“Ç6<3t ³Ô².¾4w¶]臶›ŒŒu’BOQORc +"®wÐ=nœµ/±sÖ~D)Î=¾šIA3wÎ}´²tYÅ“¥êŠ ¥¨Œ‘ŒêÃŽ6¸‰#C…ÿÄ ¦–mØSeyZ"ÆFd)iÉ_FšIî9ö/Ì'ÔϪç r^ £nÅð!!´zøè |êExvü#ÃSâÅ–“…P¨>V¿Èf²ÕÙàp×ê†{jøÕÁë2YÍø„è3yOœÕJñ ±‹jõš#ZÐ D_™fÂ-Äz ,eqÊÀ.ÁŽôãcÓR5µWNx‡©½ Z6ŸD uŒ³JS­Ÿ0×ß+18”TÖê%¬¸A¸Ê+N WÄar´  o“{] 0EZ 6”ŠÁ'È… +K*_ª_P‘xuQP +Dò§xc–ß(¦9åPr„bœ> 5›È'ô„’ÕƒS,ßo•Î_ÃZrn×õPL¦ ‘)v‡–óÈa™¥¸Y=X ÛŒí¡$¤¡Ÿ% ¥Ù®Q3kl (l$àÀ§>ákåTX4O³­+º­W²³‰ìâ“@þ$¦„Hh¬ j¦ NÒwPX± V©“@MœccDÒDâä‰t/Å³Ä GÁªl¾Q¸›†ß˜º?ªmk?Š£äGÚ)<ÈMþšN„l¥‰ü•¯^ËL`*ż;ÂQj÷z[3'€òÅþùz?Åè^ +ÂŒD̃ˆÂ' 6v_6ÙÅ&´-"ò(QP!)Ibì4>R·L›‹`˜pÅ5äÞÄ!×Ñ„Ç”$3c'ZÀØrL©µÖbÔØóÛ6€ú¾Ò€…©\a'¯¨´)„ÿ²^nÍQAþ+zDUÞEšÑõ5¡’Ê+¸ŠªRk°Áàµ)Bœ_ŸéëôÌH^9á cïJ3ݧÏùšýÓ'ÒÙ¼;5‘hÜëéî¤Q=_¨ŠC<ÒO¥â§×éUÑžŒß¢dvJ5±¾ánU‹Ïâ«ukriœbã½t¦ºåúél…“9ë} @æŽV²¯ÞÔ4n±7ð(©ð‹ ´•é Ù’b¶[4ˆÀs@¸- !x†÷=Q^Þ|LF®Â¸µ +Y·Âÿ¡]ìm8Au°œðú†ºddÿMÎð‰TvY³ycùu³¢ºÔúyEP~š 5[¤Ñ +󺑦‡-Oy£;&ÝÛ1mvæÞqµboMè–uP Õ”j:0ò¤«H›¯")NÙUd–}¯')Ð¥ØÀô´Ó~1ž«x&ccíL3D¾}d)‡ÌþZe|òQrNfò¨gçTŸê$àòŠNFo y}$?°M, Ÿ¸-# ~S/í:(øj—ì«·õðDÜuMK‹™á/òo´.jO"s¨ŠGæÃ&;ȳ‡ì¡F+—ܨx2q˜8néêÄqéAˆ.)äœÄ"t +Ú`±g«H+’5ô³Ü8m¢éuz aÝò'üb è·ÆPˆªP Ó-ÁÒÀ°ä¶¬WF©’’M¨§=Ñ×¼³xËM«néž—¼¢¥)pk󧵹¢¼F½éíõ¹Nö…’‰mà–>¿E¦¼ßÚàÑ4øåyûgèku~…(ÒtÕùûŠoÂë±÷ÎôÞ‡CÍýH½öõ€^ÞÖ½Cª@» +¿p¡ÂÕ‹ê5È`‚VŒÊ"êÞôۄþáñóá¶$·š’[7t©îƒ7ókRUtãÔÑuþ`Ò YP½‚†‡+¼‚¬ õ]¦6öEmæ怭=äˆ:ôƽŒhL?Ùt8h|äï1<÷c¨$ªýìyÐ4äÐ4fÐ䄆›0N§dí¼@œä{„?͆íÁ[ÛÖ؛煠QÛ0÷†ØÇŸ’$ìyxÙç¤Dds¿UEsÆænX“M3B€vºÊñýe›ØM0ñ;r•ñG(32󑉦¸|JV~YQ + [Åõé÷Pž“ 'ê¯ÚsPª°^¨ïRÂ放–å6`º%ßïdÒ³·rŽžØÕ~uõÔ”e2€/vðƒCÃ6ÅätmÞ1@eÞ½¨{O6¤‰I^^ð0óÙì㤄?¼Ù*¥®Ia«Yƒ-7‡î¨’:æš}\í8K›J¥üŠ‡Hï{GÁB³U"K Úî?ü¥ÓÕîzø÷]]wS¥ú ÖÅvÉ\\´ÿ½‹-˜J±Ð…Ž§­†H¾2]Y¶Á29¯"µö[$øEà‡¢@®ja/B¥é%DfkУEoÔS»ËBíÕRd› ªÂÉêÅÃ<™aV*™™ªããæ“ â¢µLÚ1ÌÛ#·Ii +^…%ÆxƸ  'Ø1*jà<«Oõ¢qUGણ_ké_ØÎëñóvÙ$™.y»5ôÑ‹—£pI’ô#j¼¾U•ïøßFèɯErð7üù;êNÀªÙÑ承þÊ÷9%pgrk-†rÏꡯ¤$+kŒb+§¡/ŽõŠãìÈîP¦ñy¾ÃŽS¡4A©¥¸ul%µð{ÛP÷1Åh]ñ8›%7$’ ä·¢¸fNö¤¸'C¡OB¹äÞÀº9E½<&w^M:žÅ‡`1nĵ¹ã ÍýûÉÌ?óo,>ì4—+`š5q î#jóÍØC/¥oU ·‘ ‰whiâ8é Òǯ°”qÚ›ûÞ¨Vw +B'v×ÿ¾[©læ5§ +1¬}ÔYOé° œrP¨0‘GÔkRýø¹³$'ñŸ)Ýá°Pqe²–Ò“¥pÓ y©¥@ÅîM*È>+ÛXOÖHöµ¯ÞÚYµWÖÀG6p‡9g¬Ï:$k6ñ+™³ÙGr‡$+×_ÚøÂgðvçÓf1LV ©z96‰^Tõùç-žS•ù~MeãlØüYYÏI?%I_¦=Éá´àɲ§Š¶§ѸõHþ&8ÄëSuÇú½â¶g:Ò ~ÿP»žòRäqbæcpÉmR½Ü3ꥹ'€‘DÏû‚Ôº6¡¥ïËž¸ó´Ûˆô7*¹o2Áµk‚zòóÀÇ8™m“*=š_¬lGI©Ø~XnË}9iJŠ«IÉðs˜ˆ®ƒætk—£áŽ ð‚‰â³‰ð!a¸¸£”›n¥žÇˆÉ`×<½˜ön9–Írà ý!ÃÀ^—[a"ÏÖ•W°32GÃ^ZE¶Ê©My~Ý¿úf#Ï÷)Ïß‚_àÁQ€ß‚±£Óu„.|ÊýHF‡²ÒÄä’0‰pµ¨Ðí¾aÅC¿ùÅ'% ™+ñç{~eœ_lüw¶V+> +stream +H‰¤WÛnÛH}÷Wô£D4»›l’› À$žÌ"ƒÙÍ +؇Ìb Ë—dc[YIÆûõ[·¾‘”ÂÄK"»»ºêÔ9§NØí?\­7{õâÅéoêôÍúqûi¯^¾|uöZ¼ZTª*màÿº¶jw}rúó¿*uýprºÒTJ«ÕÕIUVU§Vµ”O_”+[XÿÚ²Quo˾®´2MÙ4ÖÜž,LS¬þ{òãêäÇ_á¤?á ؠµ°=~{súÓm¥Î¶'ÿ<9ý†÷f}w­—wËŸ_§¿¾þåL麱y¬ +CúˆAjråc¤í!¼К_ÕJWmÙjרÖteß÷ƒ{·øA]Z—=œW,›²U‹»ÂñWSµØáÓF-ÖÅ>hµ¸KSáÇOð[?¦R‹‹B·¸ä²¨ñÏ <¥gKcÊ:î«à]áIj»Ò©Å{<Üá1Æ•V-öêJÞK‹/Ã_ +èBA(Ž–Ë×<¼]Ü—«°{›­é”CÐø"´Š'¡4Š+;|¸“$7€ñ‰­Nr´Ô—î)3—ð^[>èNÝFã§÷’ä伓ڰ7œ{¥Öê ³ž–â} ëáiGQn·ÅV˜:‚š:CMˆºïÊÊõ&Äb™‚õÈÆMºqYÙÚº~ëkÕ@Ú¶kÌqŽ)‹÷»¥¼YüOZLÇTpo8¼°6 ànpêSžéí½:¿§ +Š‡~&O€ÕÃ*ŽcØ©¬b«ˆèSbà ~7…b8(æcl`XB#í +§ƒ«–Ž¹âð„=`°×0£ítF]Ìhìsê&;¸UsAç2lh¸æ46ªªl6 rk,Üä¾ ÿel1ˆø+@‡Z³âvò·%x\BIzª\Z¡ØÂyVB`û:ß¾d®!?Î/U¨’I mÞqŽ™Þú‹ÿì?ð°T+Xßb4kðu:#þ<2„#i +ø6hñŒµ°Èù…‰óà1ho¿‚>¹Çø.°¡R…#>Ôr} ‰âíûxèlÀ´‡YʃÅuP´¾o,ñšŽÿtxùp #C}pc•<BèÄ–~q, pU9¾M§{˨¼›À×ç°Ðžž6°è„¯4Lú-’~‚=y-ráXš‚ЕfŒCÕh®˜=}#Ö„0£uJž‚ÅpÙ¿Í-p7Ëh½6ÞhõTþ^õ¦sÊ9¶o¨ú/ªª²/ç©TŸœë÷ ˆÊ÷ìêy{ºj®+«Vð`éÙïÿb-ñ@I—ŠÃ^!´.½/ dÔ#pnÏ¡¶¸n=Ђ,ž®ö*µJ ᾨ²Â  &´ íyÐU”©,€Ùï‘G„g¹©kÕ‘ß±3…ﻜï]*âL‘.Ó?É¡Ê?‹)³]ÚÔ.JCOdifÀD±ƒ3DÝT¶ ¾©NiB $l<¨‚è#I€h–†|;¿p>“=èÊ÷áÄPL1ºµh€dî\öQU´Äïñ°DRIÞ´ö<æ•¢)Ǽ #…,ôÖˆÑ3ƳtBô—†x 5ÂðuIç´/'ùšs„ÑútóÆ3:WÇUãÇ\‡ÇÙ@2¹ýÖí!Y0…G“à@hDãj©Œïc…6#ïãÝûŽ²H]<.`„Ø8Ãùˆôû¢¨»’M®Qݥ˂]ÓGRx— 3öaQÓ·ß ÜÌ9ö"‰vŠ>'Ró=ë²€ZXö©ˆ<•µŒmÀá’&Ë? rWÁ/I>wÓ&¡_¼ÍpÇçÅ„›ü +nÌX©™H±3&À%s'@—Ž–SȃUyI§…±‚æ¯[BQ¤£M{ F¡†»NÚxà¬ÔVеS!Ñ$ó3ãr3ïÁ“½†S8Α1tÊYsȸ€´ ‹†:åùÜZ5OµIøÃo·IγIùž³mR;Ó&MA'9òÝbÅùÎýµˆ@#TÕò¬…ÁžºCþÈ<ANWžýƒZ ]‡ Çëzå•ßà¡cž¦ò*ɘÞË¢6¹Ô”^Õ¹^ÉL3¡Xx\aàµç³õ㩆¼éÍ÷rwÌöœ‹´v®!Ÿ@Zzäi» þÁŒÆa©Éì¡Éí¡¥ê‘?±‰dFÙ)=@1AtÇzý58 "KoÁ6,’‘+]âßĦçà-S{n'cèàÀ3‘É3¸”Z¼ek£Ø‰Ù DKiyŒ Þ˳·%LÏeÅV?«m¼ô7`µ5Ç°šï9«ö XMŽc5±KÍ¢)Í©G"óy-ã‹£Ÿj\~Ae%|ƒÀ‘±ohX¾ÿOc>ò¬,NMÿ"ÍÖómÏ»G éÃØ7–Ô”Ó©î˜MŠ\?n@;ôWVn—»XNO2·HÏ{màÉf6\ëo„kWv&"Ö™Ú¨ÆÕÁ} bSÿl@›o;´n&hq¢µŽ<&ð[7FprþÁ#çì±#“èN”[÷X‹{D¦ÆÖ ~Ylë©j{'0 f"îÄ88–o#G¾4'VÂç¥'dC(½ H6ôÂ#BüÀN4ЦÖDzök–7ë|LYn1ÂI’&‡ÁÜ;ᧇ¹”dî3³[ÚÃãISA„ÖØ 7 5o¦ákŽr7Ú|Ÿ6@Œð{9Ù¸zU€DÝweßC©'fÐÅ~BÀßÛÔË4c¾ -“?‹ÃÎ_Â|k-¦ö‘|Ï/eaÚæMšbYÚ‚ÒçºæÙÀó—:8“°étÿ?Íãùü ]aáVB:æó3ÐV÷¹$. …79mø’ÑkþæW\Þ0<1Uͦ˜t>AÇ®]*¯˜ðfÙöZhfœî a’bô‡ÛŒ°O¯íUp(Þà/kζç›—Å×ýVúmì`ój@"M“¾ø² cGò‡ºB%‰;&yÎó?a®\ìÐGOèÓŒ{·ƒ{·×ÁõµLáD“Ól\'„zN. Ð'9/‚ƒYÊHÿ’¬å ¾ÅIÌ„\sXÕ¹*×› nÐ!óÜ™›4ùÁ-ÄX1äÕÃ&ùî‘uL_n4˜CÛµýW4$J°Ÿ¸¥ÐáÜßvd¹Sku3Ù`ªîM´©ûè¶4x^©tXÓmÊf†î3[”Ò‘ít¥ÿÐ쀗b7*zaôT‹b€ûêÆrQ†Ùàá˜oø`àƒZ¨Ÿ +Í©¦–Þbb;B >I 9 «A ïý°Ç—Pçî6vKè¦Õj}' Q°}±—à£cC„+vÑ/ä½õÃöŽãš +߽ǿ ýµ¸Ç ÃãÌDvY"Ã$áS¨ð2Ìsƨߢ}‰ä6á°ÅaµÁø‰´6Cöhr/‡fîÜa>áïÝ×GL% +¶)™:Gþ>©Y¸2oíS…5jµ©) í…;¸ædGg¤µVgx?8𬰰ñ[ I”³&E\ŽÅßo)+™5´5 +K˜ÀU«Ÿ—¼M’¿œ}9ýÒŒX˜Ë™}•{Jg¦afñ ³Ñ”äå ™v½9U-Ù@“®t¢¼µà§czcÅÌϳÜäCÌÂÙ¤pã96ˆªŸ÷X“*fü7a<‚0úèÆ›¢Zãv¢v±;Ý¥Ÿ#k +¼Vt¬´°îÇ-òsæ4£ìIo’“‰ƒ3<à×(°¨`ÂQ’þž¢­îtÈkŸ 8Ï—øß@ÊÐkôÕ½~|g—8?±o)ƒdî^»1÷[ɹk"Kà?ãˆA3?zžâª3WkʇQ^zÙ>Wr[ØP?F#+àk‚aåV…: ;ÖŒŽŸrÆ‘‹iû´OËXŽ‚FÍMrê°mpâÿ~ÖïâèpÍŽýÚüZæÄwÅß™nFƒ…%zb¥Þ$´üÿ,’ÿ€^ì÷®ÑåŠ*gQLŽ%¾zŠ^àËúKŒ©VBL‹É òˆl6@âˆ.3w0Ô%oA·Êˆœ(㋱¿Ÿ¢²O²ó0¦Q{ëoÿ/Q.05ÊaŸ¿¥JähxÂÃÚ]^bUðíSªCgþu• F}€,¹OL³œO…Ûr˜`£Ï¦BA—ó¥4ȳ~‚Ù ¶–T„$@yujóV|…'DQ[¯D–?·´”äa'¢†QvÙ@Ô`³³ÏuŒô»QVJ³-ÙÊË´æà +]ÇApµ–ØÎcG^”O–êö2çNGŸ|Y*d®šÆ²:|_ßmŒ^8¡Ü–ä†Vdr]lÔ‡ ­à´òˆ kµÙ#n´X^Ú©Ý¥0ù-arS6ÝOD¡Ý\ÑUã‹ÊX´½&=˜}.¨Ù"¿è¦’Ì §á"S@ü˜½î¯\ÃM;ä¢[@§Õ3` èµýÿKä’þþ}6PÕ¨h”/­ˆ¿Ï U$ÕAbñÜò&ìEi)KjL =&¦JM©ÓemÞ¶<` +JÛ¸Rƒš5®1\¼˜–f€b}6úÐã+Ù‰½q;H&ÜÅ{&7®x#©Yê sKìÇ5Î}bç>½Å¹w~€;6Vëk牖Žç‹ˆÙ]kd_“Ã0½ö¢¤B|t‚rLbö.᧹•‡ÍÉ"ÉT¤èf.Ý·'NÎoD÷óbÀ_XÔ~Úš‡uŒÓrƒ÷‚fªLÐ\ÇöÓùdÇ`Ü2g+ݨÅ{ÜAìîûß“NLÇ·Ý™wD¨ŸZ¯‘òùæ FÐ8Ø KëŠónn¤ãYsrq#N±%&-ÊJ!9µty9$í$՚џkzKQÃ,ÌZY=’ Ç*8­Y(Z̽À™p¢Bõý°N9n²}Æ è¾no˜>ɦŒÈ@þ’GŽ×£*4’“·›0“ùý1©”èëü +PÄ2’h9@bŠ£t²QM·°m%È2Pܘ–tq¿h'ËQ›êýá’$ùñ´¶+`í['¢w_ùV•nþ…Vy7¼– +^Ñn¬Ãkê³—N¡UšŠë¯‰)õd*Ù[Vd/)ñ§Ê~Þ•èd6æD{c>¦ÖñG\û˜Y¨Ô*—øÀÓP¸ Å°MŽ4ù8“º!U:ÄOâÕ<ˆ\ÀåxÊõ’ÈÐ%¥ðm.ápÌiy»ˆè¾9Þ*£^å\ËG&àíÄLèû +3~‹’˜Ý÷»Ñì_Þö¢'òE£ðç +üaåøBî»ro²DbŸ3}K÷xº¤›mà2íÊ«‰6KŸéï=âD¬x¼NvàøX*öeA¼7Ný©Öš>2OÅJ?ǂз¤Bpïè<œýŒÚ‡ö`{ ÷BË–¹n +Èlö×›ìÂ&…©qCž£waÅb«G­üj¤Géžqm}à‘ÜWùž›ºõlb;?Áì ×ð¼ ê–örXm%³˜ +cµFŽŠÔJdv .á¹ù±‹^Ìiü¥TkÑ¥+÷Õb« ë§TÒÎP9ªP)~"wM¬¥Ü¯Ì¸æF:¥üp!OŠÚ‰:WšÛ@]lYòæ‰Z :8½ßkÑadó`ËÄè×Ç,éIŸ–„“V|8§Ä“Þ*ùX! w+‘ë–ã‚>‹Æ¶Ü§ŒV ìDù\Ú’/¼¶€¡pðb%…w¬§Í\_èL²ùI\_bˆNVÍ Õ¡O$ÙÍ,Z„$?+b/༦¹ °Õg°½‹W =îê(Ñ+i>Æ–Ñ/á1¦bÎEå‰'ŸåU£0Ç=SÉ£I.8ƒ=V¹¨íÞÌk“Êk·Ì^‰|¹]tätø86—ñø¦ >I÷â]:ß;Ë¡”¬¥"ÛO瓃±Ë’ôA(Õ­XcVFQ8qu,E+¶¥WÐù…ÉBâ"Ýä=íiõÉ…ª, «<“*<)‰‰*™ iG˜^£Éž!F½…|’" Î’i¯¬Ô3Þ«åáç ,û¤­#b"gEEà/”½a{Ï£×9Ÿ¼óg¦»ø÷žsÇJ°Æ náÁÜcf AOÕ°)§RÞ˜“ÆR!Q“Ì&Ž× @Æ+Þ Ô`HðëšVWXAkm~‚êâ ŠQËœýBLéÜ+ª5 ìa ‚ŸWà*<Û°ŽI€0‚Y‡ •„9²ºfU'<ùKÛ*4AÄÇV·Õ¢˜†3èjÚŸöBq* õчøï0xóøé»þþ®7Ÿž¾ûáoî_@æâ#ÁuA@-f‰ï óhìèνOéûÞÿu\gõn92A´8rv¹”×Ø›¯p‹÷¸¸kÄ·Ì[Œœ_ýÛÙ».ÐÒ(ÿäuhŒÓÍò¾CaQƒs3g·¸u¥°äÊ— 8„D‹ #âDÅü eþÜ͈»‰¹—Úî7̽ÏîëjBÁæÔØ™ ’‹ K­³˜£²¥¿Ì >Ò›ÄQ“Í’Ãdš”JÍïWaçÒؾâÙ(öW†XÇÔ§/˜z¸ï<ÙllÊ7©ÿ†¥ø=0$÷zàð5 Â܉‘{‚xùóÞ’íë÷<Þn5Ðå}ÝàŒõÑϹÁ¾rá­TêØ´óå±{—ÞúK£ŠŠVgn‡¤ÞÿÛÙ?;ñ)ÕJÀnLOƒz•—ˆ 6gßów•Èl(`e¶å1K6Y§CO¨’¯òñw  Ö¬N‚³ýVlÔ"_—©ŒC 4âɲc¥µÏÇÇ—#ç#Y uÈÒ—=l¤Íæ¨)œ!ÃÁ=PÆS‡ààøAñ ¶—¿ù*ðX¶YºÀlå(Bí\Сñ„£Ã;0¸£g‡}¾Ð†Š¯Àú!_¹ùÈ6@JÛð‡¯w )d¤wˆß?ÛÍšµ;õ W?¬éâxClzYB²@ËâQ’!ËL¤œ=-ÕÁ;t\»Yñ î‡Y±±@}´˜¯¶@ö¨*ŽÜ͆{-aÚÒ«üîÿ ßœ§³7—,JŸÈw®[ÇÌ–š,Zÿõhª¹ì*Ñ$]×Áï)ÜV¦l“òÅÙøáƒù"t‡÷·òEIY)ÔˆE1;rX±t¤ãt…"·œº[2oaån—t”»s1\íp¬8»åpâ"$ÓüK%r… 0.hÉ1ÅZâ3°æˆÐ±•Z¼rÿ+ÀB]<Õ +endstream +endobj +136 0 obj +<< +/Filter /FlateDecode +/Length 5745 +>> +stream +H‰¼WÛnÉ}×Wô#XŽ¦osÁÖ–½H`#‡È‹,$ŠºX”ä©ÕêïS·îéå‘,rØS]—S§Nþr·½<;^nÕ«W‡ÿP‡Žoï·êõë7GoÕÁ›ÅA©Êºÿ{ïÔÝùÁá¯ÿ*Õùæàpa~/•Q‹³ƒ²(ËZ-–j.ŸTUÔðü«‹ Œq…kB£l(B¨à냙­ôâëÁ»ÅÁ»pÓp(ñ]0ß>¾¿.ÕÑíÁ?C÷>ßœ«Ùêfþë}øñíߎ” Öd¾¾µÉ¥d­%7ZelY˜2UÛ¦hÛ¶B/^•eé^g~šO|Ólø{-^Àù€o´5èéVÛ +ílð¹¡ß+¼þZ´{ŠÏáïFi +]lðxâÑÀiú/<§†ãuäüºŒ‘%×pqá8 oL¿ìdc­òø} +‹âµ¾àT¶xt£+‹^}Ñj«ÉŸÛ,4*îÍ7©!×(â-üœ®ôŸ‚FŸ£±(ƒÝ8ð¼N€Kà¨ñÒX¥,;€ÝsÐe©d$rúoá}Gø0¿oTÂDŽ%€Ã +HÆJ= ljŒq¥)Ô;µÔ {Ó¢…kºÌáhv‹Ñ‚×µøáý²ìWÀ]¾ï"Æ6šëGűYA¹0窛—‚&ô@I h:5uD´£àîågªx*ÅP›VzMzgnk|õTý¦(Ståj2†BCÛƒ¡z­mÃCÒ¢˜ª LžÙ\¸)÷1&Ÿ{éOíŒ ¾+¾¯>LâŠFbµ¤‡¾G+:f”PC¸sc§Sê¡œjvß©{®ˆû +íÄyÇNc=Ì}Ÿ)¸9µ7ñX5^;¥¹°ŒÄ3 Á XåL_3G¿äI.gO¼$VÏà53è’377+¸¦@&b«êMËQ\U ä4qSêä@R +¬‘܃Wê8RL7(ÃmF³äýºãìïøt/畈­3£–æÞ#оšý<5õ$iÖé õSÕ¶0? ~š§ÔÏÀèdõÓNT?'Ô~¼ÞÙÕÿoñs&LÝÍ«uj;@AMhá—¸œhÀì¡Ñ€Œš A&@ô?Eg,¹J +‡!Ò õVÓ‡7/ø»Ð•c5ûþcºGk}"qveÙž\Xêÿe~¦¦‘”ax`ø†•š}šÚëp¸7GÚ}õu&~w¥”ÁçdMý]g´•Ü­_“×/v}ì^SÒÈÍGª)ñÅ&¯ÑÎhïI… vD!$÷º\LE¥GnÏ‘퀔H0¦âd7Ca©UOÇ ¸ëZíÎØË,e$×™\Q£kBœ(q@Q©ö7V¤\qeöÏ]QÖMÝÕLéIdæl°Æ·{ë]&ž;ÑîÇáÔˆ#“‘“ol„S"–•{¨¬ÉÅ+Õe%Î #"µD+ŒñÃÔ¦b_ÀÊÓÐõ†` ÓîW+›m¢ægÙÒIï +Séjixx¢ õ›5R\¥âŠ( +mLqûþÈÙY{œ9¹.ä¾(#̶™´îh<îüáB¥ ¡Æ5'lP¿¤|ve®ç‚öQ¹ÃZC}øÄœ8ÑŽ‹å“,~,Ýꬼ +Úm€])÷žü¨ˆ½4Êò $Wšñ–ÎXfëÀc‡b <¦E°ã: +1hßÏéPð„0¸4"„!õá3²úqŸv9¿Ø[ç4+¸™ï©è¼ÄÑ«ÃUšŸöì)¸â+·Í*ûdKE*tô}ªfváÅš¹4?¢™]õ¤f]=Y3ƒï{ ‘]ýyöN4ÎÿL¸T¬P²Ýo8dLÈçHâªÿñaöñ“IÄË .ñÇ{iÄN·åÆB¦d,_ÿ/†š8'žÉIûEV×3f §‘ÛÑ\}™éàÐÈ9#cõ$É1èÝJ¸¯âðÇ6RñäQè ¢È¬S¨ ÜÅ–J>Œ,4U&ÊoÄKD“xà+FÕÜafÒð¿­a 37hªsÑz®³Ô`‰ˆ ØH%FBß —±öñƒ¥%‰µÔØm6ÞâmMºmËýÛŽ±¸.wÝÓåkÒhggØlÉŒçÒº(Ò|?¥0$X `öEkKè™Lˆí3 ±¤rc©w¨1Ô6©ÙgP£/Ÿ¢ÆÑ©ÔèÍDjlvãçÙGí{3/ß’ŒÖ–¹j¤ÝYbî4"÷]½MZ©eš­p¶É0‰ËVú–µ0”<*æÈÑê®Ûhû[“›0G„ªU'8D·Q£œãÓ¶'—â\ =P¬Lš.—QÔŽ­Hwjò’‡<ËéQ#ÜjÈkGL®·/ä!4(Ÿ W÷$\ûF'ÃÕO„+Q®ßôÙÝ8ʉÿ" +²9¢†²wÿÀI% iFA&‘Œ´¶]$EY ÌîÍæQ;mîwÛ±òíWƒF$c%¦ &«'¿é_hS³û–j¡C‰ Á3l>hVí±ÅEÅÄuª~=þxð.ž÷*˜1xžôË]>µiÂ÷wÀ"î +5£h ]à2\jLc§euÄï6+ÚÇ—é°˜EÞXQâÁ•®ˆu¾èÝîN°×'Þ|ï¬Ó‚Å3ʯ—a(tp$n‚W~žœçêÅä¢äÖ _?IN}£“É©ùñYšÝøyöI[*Ñ= ›–'dͳcߨ$õëó%„¨&ªä®Ï¢H6¼–ˆ3¡¯N:‹FÆ÷L!.#žÅ%gŽÃ*ëMÔoŒ7•w*‹·fF ªq¦eÓÊ;Ô QÅ]$ÇþÆ•ok «Š=o™À&²'öŠ²´{( ¬ ß¡€ïw(UZ¦#¡­áVs¥Nb9¶¤šáÔÈÒ´¥TÙÈ@VËGK¾#B´OoKœ<Ÿ‹ŽÍù^[/º¬£¡A)÷î’q™Óeßy*vÜùT§´ã s É3Ì»D‰YžÈ1‘i_³dý§]êÛOy2áÑ\;&aÈ•ÿÞhᥦi;etB¹rH¬7¡êá›D.!ê#gù•°¸N£O2íXã2”º‰”—:Œ”:•®©rr¡­5ïTuiœóÛè¦ki]"æC>ëåz•5¬@g»¾»^²Bhû‹´…Ï(-ób*Å™d“6‘°·•ª®•2ÔuÀt%o¼i~—´ïbxþ9ƒU7{&44&>¸&K?DNˆÛÅTxæÛiä³%8ÕmQ&8uéÈ #<÷á1{–³Sö$µ$¡;gTG‰«Ý”þ¿ñb•LñÕkô“Tø;sF̈©î“Ãú3¥êHÏkÉ„ñ¤i‰<ÓU~ûJ_NÉiw˜3Ñ®Ádô1ŽÁªtüq‚’¥£KSG÷QæžÏ aÄš¶Ó]HYT@0%š`žÏ3:£‡~¿Õ-F1lŒ•É~ãZºª;’Êš@@uÉhŽUÒ qXÛ›ÂWn©œD±È“&¶%²£Ãu¥(x}ÒôoB“£‹§Ç¿nʦ?!V§ŒvJIëã ž®Ÿ c(€Jh['½>쎜é«ždì` ¸{jU0«FÞT‹Ê|M¯TãÇ+ürB¯Íž‹7Ÿ“Ö¡(¿ »wÐD®¡±¡5ÉÃ(—ú•\re.Åzåc¬Þ+Oß–*ò~ME&…¤¢ßš~à9â›Bï¼ézú É7l ±;Ó2à}Å'ÓpTÑ'ÒbŸ˜6°YE¿Ë%‹Â¡Ž&=ãŸFÙ¤~/>¢V:ý"Bny—&ëÀþ﨩G:à·›òIÞE„øH`ÿ 7Š’°DÕ¸¤#Ï­ÙÓŒ–Ê0Lç5C)òAºþËóOTd•ž ƒÉ|ôe¨í_˜<·æÿ!_ÔøEn¥l‹CŸî¸6©ÿc5¬ãéëL¢?…àC¼iÁAëäO 7pƒîÕ‡-]£_u tÐäû–]Û»ŽË°µždQ†Y,dò€mƒ©Å’‘fΧ‰;ã&Ð* m-Ó6J@†tg˜Âöz·«LÎ+-^5‹ζ' >– ¾Jàv›À—Š¸WD®ìnYD¦Ûg œç©n)U$|8g=`Ö77:“ì ÇçÏI›cð»_ÂßTv'åzHÔ+M8yat0÷u%ÚüRy=.ÈP0Òˆâã] +¬‡rVä{? dü|._>6´¼w²×âQ_rÙU\@^Ò®Øcf»Îª¡›nqý¬H]¾SU½RÕe5®É*Ø’‹ëêûyõíâ6£õŸªT2ˆ4ãü|)»œâŠä¸*„lS|Óíñ²ƒÌ#sk<…x£—½i,µ\9á¬RF±ê=†ü}”Žp•á˯pEPÁ3ÜHŸ®å8Aó'ü²×Çv]ÝY€ð–<ŠØÆ‹l¨f­I›ùQú-5|šh-íú n§Ï™íýÖôT¿ ck‡«œì-þÁÙ¿Šk¨·à¶¯$ét¡c™-–ÙÑÇf îïð².žÀÄQad8vYÎ øš^:F8æ¶T÷?øôaâÇxÐë¦éiƒÇÝ‚é”`~¸èþ°í–†Ž¶7×F~%µðJÒ’UZjA.-˜*iÉIÚeÄ~$U@ -ìÈœ˜Ÿá,°>¼KÒ;PMáâ³³ó½Ë¶Å²/Z^u+ †¨^–~ôÂÔórnÈ(ЂI(J/òpªo.Íó¶†Úµô¼%K苼Ûgw6IÃb­RTjŽÒ\vÃ{*ª1õÌ7âóÍ V ¿ü‹JuZÀúuºËrXqÉ’€‰nÌÁجñi´Å·Ñ¾}Ñ÷ ä­8 +íé$†4qR2|mؤè +ø¨"´½sJcÔnMU#wRÕ/M­ÄÄY‘ÂÜwfÑu蕃˜¸Û‘C)-¢CW¯âb6ô˜_ññðÛO`zvà¡Mó"Wë¾q,žÙ®£îßÁa“Ü×µÀX±…éý^ 8â—Pʽ§ÞÏN}ÝK†éئS¯jÆ'Õ«æ“âIuñ¬´Û›<}˜L½Q]â9Ž +÷„µít\Z:Ó¼ŒE—Ë!hÈÆ‚6sucæãøZKÆÖýJ.ä &ãàd§²ºªAà–ÇŸ›òž¢{ò$J‰xˆà<ŸVvª`ؘ°lÀû…à…»¦„Ñ—S«ÖÔÕ÷ÇÔñ>UQœ<Õ)Âüà +ÚÂv DŸäMõ{¸YcRj"ÏÎcÛRc=Š{ÊÕÙ³ø§†æ+Ïk¬ÎëÿÜø°´q%%òë‡d–žDÃÅ„»P¢RZš‹s1-n‘Œ#³ üˆ­é¿ßÆrèÆHjS­(hZŸfLi¼≮b&{nÕª—ÅT±ÒÌv¼c +ä#•PöAúxÇÁØk‘}mÜÀ¹/ßÈßK|œš—Ðð ?/L¾7ÿ'i½ "eGH@ó ¡mÌ_ƒ¯J'ôbï¤HË1߸þ›\Y%¢:'ŸÁOÓNÍ„ÊÛ´^ÈÞë +½ì¶·i–ž0+0’ã/«ÊüÏT;t4CÜÝŽ’öm-´åÖ®Í"·ÁÆÚ©fï5œ2*aÍ™`á'ž"¹û!35ƒÖÕèïWÎ{ b>Ï ÅDÃQ‡;Ǿ«[²ÄòÄßðý”K›æÐѲ?ëUÅñA^ .³Á ŒòÒAÅ8°…5ÉößJ» ¢?Ï8­®O V{ÅÐmd8J` c!³OäAŸKÑÝZ5l` è°Ñ‹‚ ¥l9-uΗyª}À+œ3†ÊsKåNþ”Þ«Ÿ­ÕȃáìôÍâ0þ`)Ú +endstream +endobj +137 0 obj +<< +/Filter /FlateDecode +/Length 5465 +>> +stream +H‰¬WmoÛÈþî_±µ@(q_I^‚y¹»^‘ô®=¡ýà…£ÈŽ{¶ìÈrR÷×wæ™%¹”m•²‚MîÎÎÎóÌÌ3³WëÍùéÉb£^¼˜ýªfïNî®n7êåË×oߨ£×ó£R•Sëýï½Së³£ÙÏ¿—êìæh67ÿ*•QóÓ£¢œ–¥Uó…JßTœV´‡þUÓ |ãé}• Ó"í¹<šØJÏÿ}ôãüèÇ÷tÒ:ˆ÷ó^2Ͻ›ýtYª·WG=šýÆî½;Y©ÉrUüüZÏÞ¿ùå­2¡v™¯³ù<óÈTÉ#~ø¦L„?ôS‡ié¯*rÇz wŽ'•6ÖL­šLuA;&ê/Úº©W“[mÜÔ©ÉFŽ~Öºàk¨É¹6~ÚtïÏuœÖjr¥‹jÕdÅVøÅ ­Çþ z¨Øà…nxßVÐê+LÖ|Ta#£µÆÉ µÔE3%ŸÖd̳­ÚD~q±LΞц’½ZóùôæêVã°k¸Ñÿœÿ¹ öŽpú!ô0õcnó2E4  F¾›> %9_ðèO?ƒˆ8xD—ãë~Rt x÷‰ükJþ=§Ë”é Øð½bhj¾ÝŠW’Í…öü}©.Ù„áÎñ›;õq©®µ |÷µ¬ºÒÖrt)ÌdÈÙ’üÐþeç׆€¡mWì ­4ÀÁІ uÊóš—|ÕÎð –j¡‰k€™KüˆU¼ÿŒqb“|¡ +èpEþ¤£¡®Øe2sJÎ#KŽœ®µ­ù÷‚wÖ|ð1¡WŸÙHÌtÜO6 Ç-'SÃ<`…V}£Œdë¨6Ha1ÒÛ&ß…ž]éÜò=KM þvE뻤–çò"wÒrš¼œ¾awfTìÚ(J ’¹2Wå·À^Žè«3JÂFõw¯Sє뱹ÐdüGâc yÇ‘+Ô±6mÛJNØ,¶yAË/XゼdŸ+Öù{Ö-ûî$j£+mŸX/5ü:%jĬ,£Ù­‡ 6¤+ +@µIð@ùº/ +“¢*j+žs ®®ÑŽý–5þ˜t…0ÿ³&WJ­A…Tã8Ñ”[œˆ.©*~x˜ž\êÈA×FÒ¶ð5@´LiµÜ$€ãLƒÎï½p¡‘n>h\›Ö<ë¶Ù³¬÷zþ^g\º¸goì®?´9¶À7ndçÜÅ”¢MiëÑ¡JtÊS®ê˜]ŠJº:ïôÀ·IÓG‹ArI8Á9îsõÝpMÃ:foœë8oÙs3gªê gÁ9÷âxò†»` ™R ²ðâœu’ŒK.é&úŸ©I ǤY†ð¤·\ˆ™­¼^j KÝH¶7¥ð¡Fù`­%j”•Fº±iøOêÎL¶WPÃŒ¨&VAï½doôsþþ‘n!N ãI¥õP›$˜ÀW9ÖÖ£[A,ËïG©Ú³ìÙ“R±4»(5´9’R±´#)õ²#™?”°®W®˜F?XàOýXø°â/I•¤±|¹S—©el CB¶éÈ@º!¿×ŽæHE” Õ \â\lês­-ˆ”Í@°÷zŠŠb®";z*#Å9“³¢ ¢E*›’t¶DI<Ó&&RwòÕÁÌP­rdiù³{s-Lÿ& âû§Q\iÄ'¥tZ¹WkD6r°ä ½0ðú¢5O²VaŠ}ºuéN7³ö¢‡ehù¤m©@ ŠvC l¶¦¥N.gA,ÉYx}-cär,a†Ê`@ßÔ¤SI‰åd¡Š4.Én«ív ì©ßuDÌT¾ñ2‚‘XA¥Ùn•nÌ‚(×îí¸”–ucŒ¢ŠìdX²>•l¼#Øÿ![ŽÒìMjÕ&ȃE—¿S_!×BKˆE-hÉß-öU©p×b)M=“ú‘Íæ“lRma˜Kˆ>wAésÑŽ7—bö¹»©Cgê3÷Fv3»ª{+CÙc`!êõ®¨Ó}³Æ¬:š¼q y3‚&o®£à,5ßØ4©|¡†¬.œËl¹^^¶˜nß0‘üóh› ’Lw)Ó1x5xæ%–2dd j󇱫÷læ÷Z8yÕ4¡Ú·…7»ZøÐæØnÊZxv$w¿³¾šê É¢í0y[ì*Aɸ@Áµm¼+å ›¦ƒT8#ˆè;ãc‘À„x>¶ãs ¤¾¡&·?¤Æî€tËæhHÝÓ!Í<žü¦Cê¨IY¬óB^§© QߤL¬úLü¨t=–1I2¼ß`~ƒRoÛPߎ\jêa»wóoÚ(Ç—ùG%ƒËx%-1nº7£RԂè1ž:þPêÔÄæ'P'ì¢ÎÐæhêĨ“É‚¾@­æxŸá[Zm¥" ˆè°4\Enç´ØJ_u¬íkÑ´IJ$Âå[D«Â,gûƒD´ŒG³:ÍHž>ÍzšC›£Ñl@3;2/Ca$¥Üçâ¾@¼Âà±ZŸÉþ”à>L´G?¶iø#RÍêŽõ¾í”`ÞÒ´G:›,Ð:àÃhìmy(öÁOÍþØ[³ û¡Í±Ø[{öÙ‘Ç“ßuQq\‡X‡{Xó[£ÐøˆŽìSG®ÓÔÚî߇ +ôV‡Qgt¨Ùt¹›5(ážDw(!¨—›ÊhûÉ„•ƒ=D9Øx(½(O¶ÚE¯¡ÍÑôªGÒ‹Â\ºZÍ*=äãfϸ̋ãɯ¨I¥Õ¨¶Lds˜*Ö\ÔD]ÓoÅxÑo®R¥_ "]°Š%ŸÅ©Ù§×ã«ÝCŒÈõ­çÊ]ˆ mŽEÌ™ +Bv$«ï ¤dŸ‰…‘þàE¹sýçØ <ÑŠ+Ë .v¿ýø÷Ó^wãµ»Õï\"¡±˜ˆT@TÚ…%uKlÙ°ž›i~qÆ¡yü¡ŸˆeËúŽ[{Ï +qaÌÂv·<“Ï6, +¡d0uÓzV¢9Ãv’ +”Nt‡·¸·è¥Ï¶GÎèw 6ÆD㜢Žæ%L']õ%³Éë2éÜ6*¹ñá…{ü÷È0%›÷“­ìn¦Ø•ýÕzæÊÈ+ª@1ÌÓMgW¡"…Ê}Ê6Õ¼5ˆKa â–$P'™ÒøW¸hGë0U~N­˜'!"…Båeδ£:KÅ «ßÉL y}õDËÂÜBÞ’†Œ‰&6 +ÉØÍÅnÔ¼–[À·‘pÚU“Ç•yßî&y ÿ7a ß{ä Ãe¨4n¸8ýäÒY×OÕ†0Çû}?è$VúéRcsÕÐf百Öè·ünçµß].œ˜ÿz.zÎÓÔÖÕ±ÌzV£öŸxž¬àôºo |…[‰-×[Tk·â·2!ÝGÐâªlòáÚ ¿ä{>ßµ».2y¶dù¤×»µ`êᇠÓà¦YÙÔŠÛÆÌm¹øEg‰°Ì¦½$\t¼Kë­ãÈÊèñ–'-¥‚•BЩ#:·Å»ÌKCwæÜÖrgªbÝ3ÈðPÅšeÝÈ6¦/¼¹«:ÒbÌÕ•Å縅y¡JXJoN° °Y¨=žðž…ù¤@§ý±¤4‰fÍ) Zy+öF°r¡†\BÙ:äÆPûT™{:n³‘À0äß°C+‘ +×™œlÓ6™¬Œ,UªÏ +î‘%šqºß™ë[Ãïº+;8šà¤ŒUšvˆ-^Ó3¼±â£þ†ÉzÕȱ§²¿@ÆÊŠ‰å–ïÍõIX©Ê˜nBÍ„-r*à.íÛ¼½(‹ ÊÜÊÒ5‹Ç½{›¾ó›EÙ3/¾·ØÚ[`•TÎÏ·áÎÚ›rcn™¬ i³ßêrÓxyw“mHtˆ<Ðê—þq~b´™·¸u¿Z‡Q¬ŽV/\˜‡„·Fg(õ?5ÒÔ2Ó¿öI_ü&õ£õžþuxÒÕt-´ ÷PŽ–Obš„L£dÂróØÞ¼/ª¹¤öÝØ›€Ôm$7Då_¿*ªi2j +ƒ±éè#S}VôŠê—÷VÙ£hŠìr`{äáàÆ[Û æ¯ÊÖâ›Ñy(bRâI7æn±WìÀÿ_£ZQ4†|Rã÷ Újªöãâ±¢b ó"ñªW¡ä½xš¶£Ð0OÉrÏ®ÂR² +û¬û¼žÞ)ÃþhGm®dé~^KöK £¼E3yŸÕ틯£9wlocdÛ×L{µ(“"-„WIGfä6¤8äˆÅy}enØ9‡Ê9Ÿ,Jý"l*³¯¹R¸®ÌNt„®Rª>v=9øPÉ_ T˜,ޥإÃÑ¥d#!…üK†°x¬õ h:¯…@ú2ô…I¾2oUHÓyË_#nP,§‹ÌOZÒÖÌsœ”IU,x¤œ5PÎzFÊJÆ'Š‰Š NÕÁ½+ðΤZ{'ß×eÚò(ÝP9a6·×©2"˜¯Øæåpÿ÷^. ’å½ú_¸”±j¤ð¸vµFÚ1¡;®@Ô\ÊJŠÜ—)ñ"Sõ,+unç™YçÄ‘ÍÚSDU ŸTÁ(ÓZÝ܇1S®ÿ:t¹]óºú¹Sx!ËO§–~=0®EÎÔ +·®yŸ#ŸE¬gö8 œÜI¬‡p^:jK{ôÀt¤Ì'ù+»¥Öž|LqÈb4¤ýV*>•W.§ÿåÜÖ¦<Obµ'[Dþ +| "7@4†oë„“ëÉŒ<™¨'ó·%y T³Âu[¿È+¯JùPuöh‰å…ª¦¥(t¬¯øhIvòØ$’‘µØˆé0â™ø¹’ÝRü˜´¶ŸHìÑêP#öƒPqpäJÍo³N|@¥š…z¤®™TC»$C“—üF^êc¯ ©TFçÁU0 g¼H GÖÜa0(zÍ-ÐÏožt"=š/<lºNaëÙúÍ-vÑ?ª&o$Û£¶Ü˜[Š´Ÿ)h(_I©?ýÑÓáçÛ>e¾Ý4Ë»}Ìz“²î‘™”Q~s2G5£ÿÁ§íEN¨½¯ï7€3ŒÊúŠ*Eír£cÖüq§æûÚòæmÅN†zùû§—Ÿv®°I¡­•Hx±&¼M)Z¸ +S4†¾XDm„<Ò•Û˜»6xøQ݆ÖÍüÝÁOW¾:sß­ Imã6à+½ ”Ôí†C¬áÐ… 8x¯ ±ý7¯t ¦1ƒ¾R¿¢À q×— ˜… ÒW†¦¼¶nŵƒ£´÷šÏ—}iH +lAñ´i~°ÜªÈÌBÑb¸ÅÙìZG8úŒô8#…©²ébOg&'HTÉ!§!dñIö¨Œ —wÀ«ÝOìÿ¸Óm¤VËZ’[»ÒMr@±S ÀËÖ“©c#_Å&_…§òÕ7rpÚFg¸f±L(ý:€É7se&ê°ÊsGÝ€"f_& U5HY[±*ÆÌò/Ks9:K¬ÒnW®@w +ž Â;çâ +ï…ÕÔø“nÜÀU7({¢*þ ³B 8c¸ø °Š[V;ðÆ•7„äŠ'”f‰ÏÊÎí²èSÈ0Ü/ì©´½ÍBÔ¯’Q‰íÅ"åºÑzKÍuÁhˆ*z›Á‡‘ ¹©À0“ªò)Såøo ^‡÷Ö +K©PËddQs›ZsÀÃJߟ‹¾½0›5{­#l®µ¾VZ’Xd/Z;€Ö:êÐZ‘ßáO®Á‹kñHå9ÇFðB#x> ^Á«ºòŸqüî +endstream +endobj +138 0 obj +<< +/Filter /FlateDecode +/Length 5110 +>> +stream +H‰´W]oÛF}ׯ˜§…ˆhÎ3$Ó @§AŠÛmõ–, +Û‘í4±å•ä$þ÷{?æ“"e:n ²DÎÌ{Ï9÷Ü£Ÿ7»Oç'g;ñìÙÑ¿ÅÑÛ“»õíN<þâø¥˜½XÎJQº2ð]Wbs1;zýG).¶³£¥ú³J,ÏgeQªZ,ÏÄÂýõMØ¢5ð¯)ŒPª*ªÖ´B›Â k®fsÝÊå_³WËÙ«wpÒÿà ؠĵ°=~{{ôËU)Ž×³ÿÌŽ~ÃðÞž\_ˆùêzñú…ø(η‹CÎw‹O á +7Âç +oðEjJõíI8b¡i“]?Ìa™€,Tøì K_Ix¢ù E²F»ÊÕÅJj¼ûÆ?þŠ…µ”GH|=Îá'‰ -HÃ6%à– ¦³N×?dÅùþNöÏŽòÁøÅ©p.»£à‹§èâèQXlk†@Hܸ‘¾ +¤çÜäîØ0 \äÞÑj"ÀÚqj`ÊØ \ó…\þ5eã.Ùx°eƒ®ÖöAfK«~=B¬3Yùõñ ÄOÞCöŒk¯¹ù¦61‡M9|UgMW%0i”ýŠU¯AXÏ-+s‡Ê<î©)ÔÃ}¸)4‡²Ì!`Kvõtå%$^èNKtëÕÛ:/HÚ‘¯ó=ž›Ýßks‚ãbLx˜Ó`(t¢y ô2Uî\âcûYsEp€“žN€ÊHVø¿®+±¹˜½þ£ÛÙÑKý'C,Ïga¤J£4@µêPV1ò¬,Ëêù$’5:98lê)ÖÛ´­'nš¥„fñ¯¡èË¥»ÅÔ“÷§Mœåêd …„IwN(›8‹Rw®ñõ:)¯‡Ã×Ðb‹h·;¦OƒôÁéG%Ó"ªJ'Wÿ`°ü¤¡—ÙÌ­¬Èÿü4õ£ña@Šæ >òM'ãÃþ8>’÷ñqN«Iåã4L>æÒÖX,*RnJÚ‰<þBº6Ì5X{‚\UœôzæŸJÆÄÈ +Y¸}ß$”Ž!ÒRþ 3}ã‡V¶„kæýÝ-=@ +’ÒÄ1Y +ÊÜãýº¬èçŸ& ^óh@×pÍt{Ðù¦“Ýý8 “ßÏA«¡6M•²‹Á 8ìzDU5vÍ´·ùÂ™È …#n3Á,÷¾:aÛ‘îqmñÀòoÑݶ§»ú8mËGãøZ>§­:ˆÓ|Ó©8mõã49ñNOÜ šIJ3pbÔ’kú£#x©TzwâšâÊ]nqGgÃ?U™A‚üª|n +I/¡‘t]3Øí¼÷!/ð7^“¨ñMVDüµˆ~8¦Ï±]ø¬Àµ3ì9©MI¨¸?Åzç>}Ž5¨,;?\ú-6ÜD`©Fyà™åñî\|sõ2 éîhã1ír`Ó¸i£ÃØà0$PgyK8*L-~êå`Ÿ*°<î žîu§Š2ààã‚Ã!¾ºŽwæxÙÒø+ÂC•lÌÓ©Qš +_I—À ìI`mÁ‰t¦y¨ÚCØÛt²6%êX¤ezôûù1fV÷Û Jºq™çá”6(éÛShŸÏÉé[3}Qž˜¶Ý½´ÕL[3B[“IŒy2HFã©hŠ ñBûvg³õ`U'žóJ²ê{†:°mçY†Êײó¨™~éó]rßh«1`J¨IÑfàÉÀa Ÿµ26CÇ|!§¡²ËB7†< +7€[‡ÕÊä—rÝbgdäA–þŒª¿u}m%IS¿ÊÊõCn9Ásº†òj±˜idµŸBlÞý=‹¦ 4½àÙ,Zníý #Ú·±1½èPw"PÚ÷<zÃÇÂu¹h“òñòÀñÓ Û•S ›Àj*d»Ô  Œv— õ~s0dNì­õxo% Ü'š®‡ Æ:·ÛeÃK¨Û<›Ž3^KÝjì(àDŒÏ —\¨ô9‘‰„󜟄Ë2žšf)FºçH¶íÔl‹üµ©F¹3ySµcèæ®NW’ð´gòW÷½vŽ‚ï’üÿ.j´{ª Z…xƒ†ÛÛCzS¿¹þ]Ž,™Íö/6M1ì¼EJ¦>òp5Áž1 S”ºzHs£Ö.j׶³yA~tß„ß&-Iéj2­Ó‘ +݃n2 &m@w/•Ý +°I¼}Kmû Зð$†¯-®§‚t#•uØñtB3ÒÀ“L•°)vð¿à±µSa×£-‡ªr¥÷Çt>J[ìu5hÙTî“8¹paBÇîѱ¬¨D¿ß{CBŠ¾ïÒ…®ì>¡òÿI¯–æ(n |çWèè9ìz$æ©T¥ !\8€ÃÅT¥¼Æ˜TLpy! ùõé—Þ³k.¬mvF­î¯¿Ç~ Ÿ»tEðaá4M0t“XÙCÑ?m[»n,À€’.æaî½ÀXr}Æz8K7;õEîºT ¸uìúÝ]‘|˜(7ìÐM„‚šÄ×%Ëìh‰Ù7¦ŒÃÝ#´ Œ{¿—xÓ9- NU<߉ßh¯xG¨‡ -纣G¯ýØÜ&ü¼îƤ¢â.ø¬Eïõ²³>þ…ÄÂ¥>˜µ!àÄã6ÇÑÍáMÙ3ã×N€J­—¦îÐÓ{¢D +#rá(Åx^rŒçŒFäèÃFÇa“´3¼@Xj qSoJª-ƒZ@£5Û>áÙ²•õðk¸òÿ'€Õ÷¶&·Z*“ïd‹!œ:ôüªt\ dæ~>R‹`Q«Á®²bôùXÅè@¾cCWÕIhÛ¿]§í +ôÒh°z·,ÌäFôY"aÈ.˜µNrŸª•IäÉâký÷çðß½½Š,›8Ê@- ´ë6x®Œx‘àç€Èd¾¡¡‚• Gvg¶º96u.A`*—MÌ…ß÷²M4ß!Û!l{ô!ÕAr³–Ž £Âl½:Ò1Ýà—í€Â¾=!'5¶•ŒL:sa3øÔw» ßT“]³½cÚ§èlW—aºw±2´ðb‚“f^tɋװ×Û$¬ÙY6'o»n oÕÏ%LÄ „jaÖ#$¹c\ßYöd$Pî^iJħùÉrì‘àD2=x™žD¦Ç‡Èt²ð+ \Êì‹2(œp0|õqëàÇlððëàßa°êîúÑéó×½ºÞ?:}j~‡¹©³÷á¢4œ§{§•™áÀyZp‚?ô}olFšfÃK=,Š—ÎCãKçü66õ'^CÓ5ÎÎä G=€+=ñüä5 3­lJò/5Ô‘ªi6Þ–XáIkç—ïîüº1Oó;¯û£Ï_ÚÚy­;µO¥Q÷#HŽ>?yÓA5é"·!9Ç0+³X]ÀÁÇN$"˜£TWL¥+êrEkšùW± ŽÖî)²|ã'Ôò> žÿK7Ëï#T÷«QÀøñ¨Q–‹£;ÜÊ·âøÛâÇH+,2߆9mŇÓð_ñ4øö äxý¸$¥¯S9Ç×þ?Œ¶:ç5†„a¥úV÷Ô¶Ú–¢€ärì¶ypÊY£µ$®¤ÃfäÔòì +‡:±Á>øÁ}îÄ£@‚:u5äÊ‘uxÒ|wûÝœ€$ô œ0å„ü¥Íœà9òÒ¨Î.•ü°:ó¤ˆó“gÏØ(¾‚ÁŒnbùÞX#nÚ=»€1B ãÀâ¿c4›BÆ,¬±!)ßwv¢¹×Näú¡ÚÓMñ–õø Üêábª‹iþÒæñµŠ)Ž $¯/s¯_RÄ9r ›i¦TQb +iS®üBf6 “½¹¼BE2:…Õœ™«‘Q>u¤ nÅ´‘~ÓOï1u²'„'x÷Þý…~óËx‹>ˆE'iøôúÊm+6r‘§i«´¨×Ûa¶±E"‘¹<³dŸ?ØšÆÜ#AÇW%Ù.η%ÞÿÊ‚˜«úuSÑ\TKJO¤YÉèDª}:¬’Q/òfi–4õ FG›<úÜÕׂG¥_uôÚ¿ñòCRØ÷ ü²¹\q)—G®Úc3'ʽ£DDº6?@…º4MÆW5âÅ¤Þ ¡²Pñ; «´5+1ÞlȆ|J;>æ³d0%zš$J$#êYÕN9¾ >Ër¢¹å¿îc*{äðÏÁò!è®ôøB¾sÛ1To°EÏyn¨Ç)̯„T}Ó£]ÅTcS§²©ccS ^öˆw!f\|iøp3Š23¾í'{E“ÝöEÏ°„ Ÿ¥"_©ª÷|o_}ÍŽ3“ü]ö»JtüneÞ;‰¬å€ õ4“Ç¥b;pٗijË<áOx‡#&cDÛhâPSÐ äW¤@nð#̧­CSBÚ¶Ug̵xU2ò¿a᧗jµ´)+Ð_YO• µ G µÃ²µ3$@ûš ‚±9Ìúƒdåæí` èxŸ°77!ÎXòdQ,Üöû:ù ¬Ú«ÔÇ}Gÿÿ¡c7à“!"‚T—ÄUŹxÑ¥™’\z—QØÆq¶]VQá–mMŠ lÜ…ì0—KÑ$¼ñ»ï¨Îæ¾VÐ 96téê6èwÀƪ\ßĬ>¤ПH»¹‰òפ§ÉŠØtÚ©ZøSGv ¥ây#úªêÒ×Ùi‡3"³ù4À?å¬Ãðã|ò*qàšv§D=ÿEó'¶lÔÂFÜ©ðÓJ‘ïð¢.ÞÆð~l¸w,ÍŤ_´‚˵0Z¬fFsÔÎ¥S¨…¶G«þQšVyðÚðÒŸÅŽ ¸@K@5wÊñ‹g+…ÿ'À¼«oñl“rQبBœ#¾.JýªÉÔg,¤ì;ÁJ ¬Æª¤#Aúm§âB\Bz›óœ€ë¶*hl¡'eCœ½ÒNL‡zͳ.{0_­Ó×ÿ Ÿe¶Š +endstream +endobj +139 0 obj +<< +/Filter /FlateDecode +/Length 2785 +>> +stream +H‰ÌWÙnÜÈ}×WÔSИlÖÆ%0h±4 ¬ÇêA2Á %wKÊÈ’¦ÕmYùúÜ¥ªXd/¦FNpSd-w9÷ÜsÇ‹åÍ|z¹oߎã÷ÓçûÕRìÃÉ^!Š\ÿ[kÄâjo|z^ˆ«Ç½ñDýZ%&ó½"/<\ŠÌ?=‰2¯`ü«r'lcòF-´Ë+aÁ网nää_{ï&{ïÎà¦ßá"8 À½p<þõ~|ò¹Ç÷{Û@óÞOï®Ähv—ÊñÙÑ_Ž…ªtÕµU I¿¡‘Šœ£}5ÞVÒZ%j—¦±¢ÒuÞ4M‰Æýct#3­s+FwR«¼£¥lÀ“ѽ¸•pJ%FS©ËÜà‹fRçZŒâQ*…OK™5ø;•ªÁƒ®ð} 3‡ûÅ/#é ñ(k|³’ÊáÊK™ñõ˜Ê¬äÅpœªó^Ê2oà±ðWvMm‹ª\ὸh@™žé_ÜHX€¾Á>x'ð ƒW±©Ñ +ü[áÝ÷h*83SqŒçÁõÇÒbôv³õ 8Nã©u4ÃáèHeðýg²Âà|©Ðì’¼øEJ«ñE.&¼=ÇŠ™¤H|ñfâY +Ϻ•ÚâŠÕ·]”ÿœü5‚o¼ê^ˆÓlA²yÑó()^×|¤[•ÆôfŠfB >­ +ÒX£['ê†×IU¡Í3{q'’œ×ø1ƒOô7­Ö„2:ô`«(=É)˜Í²>…g<3ÂÈt¸KQ“´#öT²wá#ÏşE·2ƒÇÀ/Áõ“HàdéÜÎEô!)!Ÿ`o2,PX!䆄 ºÄ#Ë~Âm¦£`®A¢Wé5Ϊ(.XôP¤©nŸØIÎ0w±"­éYd¶©ó¢lteó„?· EÙ…°µ[ \¹kÇŽ|ÖºøßÉ#Aû’IâÐZ”]Ëï¸d=íùlµ´œÀ‘ =A_5z†ˆÙäB«Ÿ¤¡ +›¡/*¤:Í=2 Xþ+MYD|k@‰_‚é=1™ö” +#cþŸ £oÐ<ÃPÛñ”Aœ#ÒÔeê»ße)LcYÓ.<ŽðQˆäºŽðµþ ó¡¤hTQªÚŒ¨²†ˆ¤xÚÚÁ!LgÉý H³ÜJšÝ¶³úÿ&wˆÏZ"¹xß̓*ã@·”›˜6¸qò½ÄÐëý:íZöu­èF§ôÒÎ܇c‹ße@x0ˆ|1m5°»i§ÁOÒùPlè”ÆòB›-Шàö È2çéηxæ÷¯ÔÕ¨‹¾\Ë”ë»01Î¥¤µ=^ñ,(¿mh”æJOs*U| Í%$Ów ñfÝ­w¢µ%X$ rÉÚÒxK_p&eg’²[ø`¯7®-(Œ53¦‹‰b]¸*QàkŽíð'¥øLMçw¦“URg™ê ‡1|–M‰ßsñÞ‹¦ ¤®ýÜF›t‡‘¼ÐM©4ì±\Ùa¹u•`8;´Ž§1`ïN.ë)½¶S¤ƒTtA*¶¡£‡.Áó5VóFxæŒÛE‰S[PbMGi¯KŒ^O0ø=‰wÃÜ+ŒI¤Ñ,öß"iB7Ø*›T“ÏÊ@:ØÊd °éCÐ÷|µG!çȬù–õÉŒV!ñ$*iËá9}÷¡B.cÈJü-¹2Üà×m”ÒQ4ùúë(²¶å¤¤:$:ºfèþ‰žŽ œSÔ VÎerð ê&ÑËw¤ó(—Q{@{@ç“Yv+³Æ‡ƶŽcZ”¼­Ž#9±¤äcz!¸~ÂŽXuŠës·ks‡ÌesqË¢dåCc\%¡OÔ¯J@yÎIýZL.…€àà…JÇP9‚µÝH¡:¥G6Å„FUGÝ\üú32nCÑ· (ãð?0GåËÍ”ÝZú}sïÏ|êVÝqkR°W9´™~\|c\Í®!­ÀÍh¡_vŸÈš|WÁœS2g|þ0½C.—«éídöuùöäÝÉIQÍþþ¾ 3F‚ ‰VÃy ÜÀŠOpÏeh9× ÌT+‹±”óz+!ÊÍ=Œßâé7ýž¦âö`;mÓëZÑ™q¨=$2ÅïŸû7-¤MütOˆQƒN½B¤å‘Zµ/¦kƒˆi¸>iúóŒñˆV[Ô«¥R×p9”TË“ÁÙ Å)No’Ä›@‹ µ'µk/ý3øé¸àœqˆGW9žðG`/6C}ƒëûµQ\™&Ú}œã–·c-ÃÚaq´E?Ž*ÄqK/wÌŠq<‘•ã¢ÉXÝ~xA$kg7EÎö‘œËÂë{e}!(¢CZ W…2OÞÐd‚OÌ©,òtãCú%£<Q·§~œ‘ò»÷ŒpE»Ö…×bÚ2º1ŠpŽ¯ÜaWÝþ·º°Ñ&ÑfÚ%ª²õ×’Ô7F(—Ž«›F¨žŒÛ4BµWx:ÙÄs΃ßÄÕ ¢©_ bÀ“MÃÊL}B`R/ã3ë(vUý¿Fq¼§B„8™„2°àSR;ŠR ÌÂþCù7WCco†"¹(’&|& ©Ê?±¦z÷j NT“Ÿ÷|Ï #RÓ!æ ?Y´'¿vV3n4-¥ÓÊ­WÈ«®‚ êÛ%¶ ¥Ý©]-Ô|ÛÀ>œãš Lá +Î]"k.‹âTA§6¥bÞ1¹Qì.‚¢Ç:Tžˆ90cnwÆ@wÖòç’ÅÀ!Šå#i¨]½:m$Ë®HôÅg3à”¡) q¯Ñqêp†˜æ mꤗÕZ˜EªnýÖ„þi†òòpk뀅šš'¤É⃦’]Ó5¢Eû.уº?!½¢¾vφbÛjÛòú.ÅÕ"k'üõKáo„g=ïSH/ä«À_í§5I‹=Çán;CÇÃÐáýˆ}00¯ñ9Îuj³A¯¥e0e,[’Ê%Œa7ÔááßhYgr9C¢ßÖZ ·»¥µØ­åIQmB®+*V›q¨â‰[ø´ÄQŒÞÌÅGÉ:Ü£é–GΛ¸ÓáAóuFœHWótÆ…ŸD/(’(¿S9Ö»ñR§Õ ç?IMÝiø|±½·ëV“”6N ÆD< ̤f…p­e-ýÔ`uÒ`a³PxóÜríà‚lvT¹D?üìgÅYó=ZÑÏRSCƹ´Hb9b¡ ~ÄU?hw„iHw¬hÒ*©‹PétpÚ+Ë6¿>“¡0ccäâÉÞ¤SP(å–#º9 =o  K˜+v' s+Ú„gÖÿçéúˆt¯R"‹ÜQ`Òw„û"Ð#½# z™}¢Ò°é”äkâZ$’ZHb„ß=÷oÚh›”Í8ñ¾ÓضÓ\Q§mdi©¨ÿ<@¦th`æôîÌU:!I戂Æûáõâã)N‡m¨]Ò%JJσôZ{ÝB[/‘u$®>‰ki¨’žQ;*Ôà¸DyP§%W²JHÃü¤$ +endstream +endobj +140 0 obj +<< +/Filter /FlateDecode +/Length 1585 +>> +stream +H‰´WÛnÛF}×WÌ#/{ã’E` Ûha§)¢¢IQȲ¤¸‘%5’£¤_ß™Ù%¹”)Cm0WÜݹž93Ì_|ÞÝÍ'Ó<žÿ ùÕäÛúagg/_¿‚ÑËñ¨€"SÚâc4|^ŒòËw,¶£|,ÿ(@Âx>*²¢¨a<…4¬öPfïàŸË,H©3]Ù +”ͬ-ñÎý(Ñ…ÿ9:ίQÓ_¨tÅÓ¯«üâ¾€×ëÑ/£ü-™w5Y- ™­ÒË—"¿~õãkÎê¾­@&}"#ec¤ôF²mŠ•øÅd‘UþŠb•Ó%8UᾫÉÈ÷ɹHuæ YÝŠTfëÝŒÞYH¶â÷ñO­OØh"óñ¸‰ZëpÕ‹%¸°uQr¸$E+·™¬PË‹éîa²Ͼîž_œ_\ô³³3` p\ɤL³qø²B¹{´Íj[T={Þ'—BšÌ@ò R¥3 É$'C›àë2«1`¢ÈJH¦"µtjk:Qá|šN¬á’=àQŒë¯::û¤b66Â’¨ÏAÞStÿ C’©¬IÒV°=fudG²%]ž‡Ÿs¡ø Šr~Ái¾o6º!­Ov*CÖ¥÷¶ÓŒ–ÕÛ6vÛÿî®Ñ 'YÑ…9/ /Ø–«–,†upäfl¥ +V:–ª ÓV-hÇPõî³à¯ôT­íI{L$ áð[>î8êuœŒ {Rñ†âÈÜ Å®Z·à˜ôÇrDM¿6AÍ6„üV8zC‹6àÖ ;±èÊ19è4L%—H%íüåbV†·BÙCÚs½ü°ö x#âÐ@ä]e‡B‰ÐÜÊ”`)H8>¥(LFž?¸¢j=°ÉSò'b”ÐΚ-”±€£3pƒ’ÿÐZEÍÕòì¸ðÁÑz`„é˜sà‹BùþpÈ(já_õ¯}ÔRg˜³p »‡EKŒ rm ±IÚÌQ7B{ Dþšþœ|b ©>x KŸiX‡±©út(­ç©=ÕÈÀŠŽÃúäʇp:õ?4~£]RPÞ†ˆ~PJ Çy"bÀ0ûÊš·PØ'Ì¥‡Œ Q5¥ÿrRÒÊ” ÚЯßÖô¨4efO·êð¬ü×%Þ®XØ>Œçó0æà<ÂhÍ„fšÇþRú£”g+ÃÕ‹š§.´ÁyFðŸ±7ÂpÿXÞ UûÉk„«)ZʽV|ü¸ÚŠŠ©4Ž¥è3©=ÓYfOGû¨/%BôvsŸ½[.É’šv”õC¼v¾_ê*¿e?|_G·|<­B€Måe{~Ç2/ü‡fzÙôùŽâà +endstream +endobj +141 0 obj +<< +/Filter /FlateDecode +/Length 150 +>> +stream +H‰,A ‚@„ïïW̱í¾uw]2­‹ÑÞC¥@$3¢ßb`˜9|3z7Í÷®igd™>C×Íw|ÏÈó¢ÜƒŠH V‰õâÎYL=éã•Ñ¿HGscÄŽ6¬8I[üé +ˆ‚òp[§L0‰Wާ ´²fTEªNòô”£…_X™_Z­£éB?ë*%µ +endstream +endobj +142 0 obj +<< +/K [239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R] +/P 42 0 R +/S /Article +>> +endobj +143 0 obj +[252 0 R 253 0 R 254 0 R 255 0 R 255 0 R 255 0 R 255 0 R 255 0 R 255 0 R 255 0 R 256 0 R 255 0 R 257 0 R 257 0 R 258 0 R 257 0 R +257 0 R 257 0 R 259 0 R 257 0 R 257 0 R 260 0 R 257 0 R 257 0 R 261 0 R 262 0 R 261 0 R 261 0 R 261 0 R 261 0 R 261 0 R 261 0 R +261 0 R 261 0 R 261 0 R 263 0 R 261 0 R 261 0 R 264 0 R 264 0 R 265 0 R 264 0 R 266 0 R 264 0 R 267 0 R 264 0 R 264 0 R 264 0 R +264 0 R 264 0 R] +endobj +144 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 268 0 R 268 0 R 268 0 R 268 0 R 268 0 R 268 0 R 268 0 R 269 0 R 268 0 R 270 0 R 271 0 R 272 0 R 271 0 R 271 0 R +271 0 R 273 0 R 271 0 R 271 0 R 274 0 R 271 0 R 271 0 R 271 0 R 271 0 R 271 0 R 275 0 R 276 0 R 276 0 R 277 0 R 276 0 R 278 0 R +278 0 R 278 0 R 278 0 R 278 0 R 279 0 R 280 0 R 281 0 R 280 0 R 282 0 R 283 0 R 284 0 R 283 0 R 285 0 R 286 0 R 287 0 R 288 0 R +289 0 R 290 0 R 291 0 R 292 0 R 292 0 R 292 0 R 292 0 R 293 0 R 292 0 R 294 0 R 292 0 R] +endobj +145 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 295 0 R 296 0 R 297 0 R 296 0 R 298 0 R +299 0 R 299 0 R 299 0 R 300 0 R 299 0 R 299 0 R 299 0 R 299 0 R 301 0 R 302 0 R 302 0 R 303 0 R 302 0 R 302 0 R 302 0 R 302 0 R +304 0 R 302 0 R 305 0 R 306 0 R 307 0 R 306 0 R 306 0 R 308 0 R 309 0 R 309 0 R 310 0 R 311 0 R 312 0 R 311 0 R 311 0 R 311 0 R +311 0 R 313 0 R 314 0 R 314 0 R 314 0 R 315 0 R 316 0 R 316 0 R 317 0 R 316 0 R 316 0 R 316 0 R 318 0 R 316 0 R 316 0 R] +endobj +146 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 319 0 R +320 0 R 319 0 R 321 0 R 319 0 R 319 0 R 322 0 R 323 0 R 324 0 R 325 0 R 325 0 R 325 0 R 326 0 R 326 0 R 326 0 R 326 0 R 326 0 R +327 0 R 327 0 R 328 0 R 329 0 R 330 0 R 331 0 R 330 0 R 332 0 R 333 0 R 334 0 R 334 0 R 334 0 R 335 0 R 334 0 R 334 0 R 336 0 R +334 0 R 334 0 R 337 0 R 334 0 R 334 0 R 338 0 R 339 0 R 340 0 R 341 0 R 340 0 R 340 0 R 342 0 R 343 0 R 344 0 R 344 0 R 345 0 R +346 0 R 346 0 R 346 0 R 347 0 R 348 0 R 349 0 R 349 0 R 349 0 R 350 0 R 351 0 R 351 0 R 351 0 R 351 0 R 351 0 R 352 0 R 351 0 R +351 0 R 351 0 R 353 0 R 351 0 R 354 0 R 355 0 R 356 0 R 357 0 R 356 0 R 356 0 R 356 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R +363 0 R 364 0 R 363 0 R 365 0 R 366 0 R 367 0 R 368 0 R 367 0 R 369 0 R 370 0 R 371 0 R 372 0 R 371 0 R 373 0 R 374 0 R 375 0 R +375 0 R 376 0 R] +endobj +147 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 319 0 R 377 0 R 319 0 R 319 0 R 378 0 R 319 0 R 319 0 R 319 0 R 319 0 R 319 0 R 319 0 R 379 0 R 380 0 R 381 0 R +382 0 R 382 0 R 382 0 R 383 0 R 382 0 R 382 0 R 384 0 R 384 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 387 0 R 389 0 R 390 0 R +391 0 R 392 0 R 391 0 R 393 0 R 394 0 R 395 0 R 395 0 R 396 0 R 397 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 400 0 R 402 0 R +403 0 R 404 0 R 404 0 R 405 0 R 404 0 R 406 0 R 407 0 R 408 0 R 409 0 R 408 0 R 410 0 R 411 0 R 412 0 R 412 0 R 413 0 R 414 0 R +414 0 R 415 0 R 414 0 R 416 0 R 414 0 R 417 0 R 417 0 R 417 0 R 417 0 R 417 0 R 418 0 R 419 0 R 420 0 R 421 0 R 420 0 R 420 0 R +422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 427 0 R 429 0 R 430 0 R 431 0 R 432 0 R 431 0 R 433 0 R 434 0 R 435 0 R +436 0 R 435 0 R 437 0 R 438 0 R 439 0 R 439 0 R] +endobj +148 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 440 0 R 441 0 R 441 0 R 441 0 R 442 0 R 442 0 R 442 0 R 443 0 R 444 0 R 445 0 R +446 0 R 446 0 R 446 0 R 446 0 R 446 0 R 447 0 R 446 0 R 446 0 R 446 0 R 446 0 R 448 0 R 446 0 R 446 0 R 449 0 R 449 0 R 449 0 R +449 0 R 449 0 R 450 0 R 449 0 R 449 0 R 451 0 R 451 0 R 451 0 R 451 0 R 451 0 R 451 0 R 452 0 R 452 0 R 452 0 R 452 0 R 452 0 R +452 0 R 453 0 R 453 0 R 453 0 R 454 0 R 453 0 R] +endobj +149 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 453 0 R 453 0 R 453 0 R 453 0 R 453 0 R 453 0 R 453 0 R 453 0 R 455 0 R 455 0 R +456 0 R 455 0 R 455 0 R 457 0 R 455 0 R 455 0 R 455 0 R 455 0 R 458 0 R 459 0 R 459 0 R 459 0 R 460 0 R 459 0 R 459 0 R 459 0 R +459 0 R 459 0 R 459 0 R 461 0 R 459 0 R 459 0 R 459 0 R 459 0 R 459 0 R 459 0 R 459 0 R 459 0 R 459 0 R 459 0 R 462 0 R 462 0 R +463 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 464 0 R 465 0 R 464 0 R 466 0 R 464 0 R] +endobj +150 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 467 0 R 468 0 R +469 0 R 468 0 R 468 0 R 470 0 R 468 0 R 468 0 R 468 0 R 468 0 R 468 0 R 468 0 R 471 0 R 471 0 R 472 0 R 471 0 R 471 0 R 471 0 R +471 0 R 473 0 R 473 0 R 473 0 R 474 0 R 473 0 R 473 0 R 475 0 R 473 0 R 476 0 R 476 0 R 476 0 R 477 0 R 476 0 R 476 0 R 476 0 R +478 0 R 476 0 R 476 0 R 479 0 R 480 0 R 480 0 R 480 0 R 480 0 R 480 0 R 480 0 R 480 0 R 481 0 R 481 0 R 481 0 R 481 0 R 481 0 R +482 0 R 482 0 R 482 0 R 483 0 R 482 0 R] +endobj +151 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 482 0 R 482 0 R 482 0 R 482 0 R 482 0 R 482 0 R 482 0 R 484 0 R 482 0 R 485 0 R 486 0 R +487 0 R 487 0 R 487 0 R 487 0 R 487 0 R 487 0 R 488 0 R 489 0 R 490 0 R 490 0 R 490 0 R 490 0 R 491 0 R 492 0 R 493 0 R 493 0 R +494 0 R 493 0 R 495 0 R 496 0 R 497 0 R 498 0 R 497 0 R 497 0 R 497 0 R 499 0 R 500 0 R 501 0 R 501 0 R 502 0 R 503 0 R 504 0 R +504 0 R 504 0 R 504 0 R 505 0 R 504 0 R 504 0 R 506 0 R 507 0 R 508 0 R 508 0 R 508 0 R 508 0 R 508 0 R 509 0 R 510 0 R 511 0 R +511 0 R 511 0 R 511 0 R 512 0 R 513 0 R 514 0 R 514 0 R 515 0 R 516 0 R 517 0 R 516 0 R 516 0 R 516 0 R 516 0 R 516 0 R] +endobj +152 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 516 0 R +516 0 R 518 0 R 516 0 R 516 0 R 516 0 R 519 0 R 516 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 523 0 R 525 0 R 526 0 R 527 0 R +526 0 R 528 0 R 529 0 R 528 0 R 528 0 R 530 0 R 531 0 R 531 0 R 531 0 R 531 0 R 531 0 R 531 0 R 532 0 R 533 0 R 534 0 R 534 0 R +534 0 R 534 0 R 534 0 R 535 0 R 534 0 R 534 0 R 536 0 R 537 0 R 538 0 R 537 0 R 537 0 R 539 0 R 537 0 R 537 0 R 540 0 R 537 0 R +537 0 R 537 0 R] +endobj +153 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 537 0 R 537 0 R 541 0 R 537 0 R 537 0 R 537 0 R 542 0 R 537 0 R 543 0 R 543 0 R 544 0 R 545 0 R 546 0 R 547 0 R +548 0 R 548 0 R 549 0 R 550 0 R 551 0 R 551 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 554 0 R 554 0 R 554 0 R 554 0 R 554 0 R +554 0 R 554 0 R 554 0 R 554 0 R 556 0 R 557 0 R 558 0 R 559 0 R 558 0 R 558 0 R 558 0 R 558 0 R 560 0 R 560 0 R 561 0 R 562 0 R +563 0 R 563 0 R 563 0 R 563 0 R 563 0 R 563 0 R 564 0 R 565 0 R 566 0 R 566 0 R 567 0 R 568 0 R 569 0 R 569 0 R 570 0 R 571 0 R +572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R 579 0 R] +endobj +154 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 580 0 R 581 0 R 581 0 R 582 0 R 581 0 R 583 0 R 581 0 R 581 0 R +581 0 R 584 0 R 585 0 R 586 0 R 585 0 R 585 0 R 585 0 R 587 0 R 585 0 R 585 0 R 588 0 R 588 0 R 588 0 R 589 0 R 588 0 R 588 0 R +588 0 R 590 0 R 591 0 R 592 0 R 593 0 R 592 0 R 592 0 R 592 0 R 592 0 R 592 0 R 592 0 R 592 0 R 592 0 R 594 0 R 595 0 R 595 0 R +595 0 R 595 0 R 595 0 R 595 0 R 595 0 R 595 0 R 596 0 R 595 0 R 595 0 R] +endobj +155 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 597 0 R 598 0 R 598 0 R 598 0 R 598 0 R 598 0 R 598 0 R +598 0 R 599 0 R 598 0 R 598 0 R 598 0 R 600 0 R 598 0 R 601 0 R 598 0 R 602 0 R 598 0 R 598 0 R 603 0 R 604 0 R 605 0 R 604 0 R +604 0 R 604 0 R 604 0 R 606 0 R 607 0 R 608 0 R 607 0 R 607 0 R 609 0 R 609 0 R 609 0 R 609 0 R 609 0 R 609 0 R 609 0 R 609 0 R +610 0 R 609 0 R 611 0 R 611 0 R 611 0 R 611 0 R 611 0 R 611 0 R 612 0 R 611 0 R 611 0 R 611 0 R] +endobj +156 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 611 0 R 613 0 R 611 0 R 611 0 R +611 0 R 611 0 R 611 0 R 611 0 R 611 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R +625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 638 0 R +640 0 R 641 0 R 642 0 R 642 0 R 642 0 R 642 0 R 642 0 R 642 0 R 643 0 R 643 0 R 643 0 R 643 0 R 644 0 R 643 0 R 643 0 R 643 0 R +645 0 R 643 0 R 646 0 R 643 0 R 643 0 R 647 0 R 643 0 R 643 0 R 643 0 R 648 0 R 649 0 R 648 0 R 648 0 R 650 0 R 648 0 R 651 0 R +648 0 R 648 0 R 648 0 R 652 0 R 652 0 R 652 0 R 653 0 R 652 0 R 652 0 R] +endobj +157 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 654 0 R 655 0 R 656 0 R 655 0 R 655 0 R 657 0 R 655 0 R +655 0 R 655 0 R 655 0 R 655 0 R 655 0 R 655 0 R 655 0 R 655 0 R 658 0 R 655 0 R 655 0 R 659 0 R 655 0 R 660 0 R 655 0 R 655 0 R +661 0 R 661 0 R 661 0 R 662 0 R 663 0 R 664 0 R 664 0 R 664 0 R 665 0 R 666 0 R 667 0 R 667 0 R 668 0 R 669 0 R 670 0 R 670 0 R +671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R +687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 695 0 R 695 0 R 697 0 R 695 0 R 695 0 R 695 0 R +695 0 R 695 0 R 695 0 R 695 0 R 695 0 R 695 0 R] +endobj +158 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 698 0 R 698 0 R 698 0 R 699 0 R 698 0 R 700 0 R 701 0 R 701 0 R 702 0 R 703 0 R +704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 707 0 R 709 0 R 710 0 R 711 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R +717 0 R 718 0 R 719 0 R 720 0 R 720 0 R 721 0 R 720 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 730 0 R +731 0 R 732 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R 737 0 R 737 0 R 737 0 R 737 0 R 737 0 R 738 0 R 738 0 R 738 0 R 739 0 R +738 0 R 738 0 R 738 0 R 740 0 R 738 0 R 738 0 R 738 0 R 741 0 R 742 0 R 743 0 R 742 0 R 742 0 R 744 0 R 742 0 R] +endobj +159 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 742 0 R 742 0 R +742 0 R 742 0 R 742 0 R 742 0 R 742 0 R 742 0 R 745 0 R 742 0 R 746 0 R 746 0 R 747 0 R 746 0 R 746 0 R 746 0 R 746 0 R 746 0 R +746 0 R 746 0 R 748 0 R 748 0 R 748 0 R 748 0 R 748 0 R 748 0 R 748 0 R 749 0 R 750 0 R 750 0 R 750 0 R 750 0 R 750 0 R 750 0 R +750 0 R 750 0 R 750 0 R 750 0 R 751 0 R 750 0 R 750 0 R 750 0 R 750 0 R 750 0 R 752 0 R 752 0 R 752 0 R 752 0 R 752 0 R 752 0 R] +endobj +160 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null] +endobj +161 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 753 0 R 754 0 R 755 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R +765 0 R 766 0 R 767 0 R 768 0 R 769 0 R 770 0 R 771 0 R 772 0 R 773 0 R 774 0 R 775 0 R 776 0 R 777 0 R 778 0 R 779 0 R 780 0 R +781 0 R 781 0 R 782 0 R 781 0 R 783 0 R 781 0 R 784 0 R 784 0 R 784 0 R 784 0 R 784 0 R 784 0 R 784 0 R 785 0 R 786 0 R 787 0 R +786 0 R 788 0 R 786 0 R 786 0 R 789 0 R 790 0 R 790 0 R 790 0 R 791 0 R 792 0 R 791 0 R 791 0 R 791 0 R 793 0 R 793 0 R 794 0 R +793 0 R 793 0 R 793 0 R 793 0 R 793 0 R 793 0 R 793 0 R 795 0 R 793 0 R] +endobj +162 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 796 0 R 797 0 R 796 0 R 796 0 R 796 0 R 796 0 R 796 0 R +798 0 R 798 0 R 798 0 R 798 0 R 799 0 R 800 0 R 800 0 R 800 0 R 800 0 R 801 0 R 802 0 R 802 0 R 803 0 R 804 0 R 804 0 R 805 0 R +804 0 R 804 0 R 804 0 R 804 0 R 804 0 R 806 0 R 804 0 R 807 0 R 808 0 R 809 0 R 810 0 R 811 0 R 812 0 R 813 0 R 814 0 R 814 0 R +815 0 R 816 0 R 817 0 R 817 0 R 817 0 R 817 0 R 818 0 R 819 0 R 819 0 R 819 0 R 819 0 R 819 0 R] +endobj +163 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 820 0 R 821 0 R 821 0 R 822 0 R +821 0 R 823 0 R 823 0 R 823 0 R 823 0 R 823 0 R 823 0 R 823 0 R 823 0 R 823 0 R 823 0 R 824 0 R 824 0 R 825 0 R 824 0 R 824 0 R +824 0 R 824 0 R 824 0 R 824 0 R 824 0 R 824 0 R 824 0 R 824 0 R 824 0 R 824 0 R 824 0 R 824 0 R 826 0 R 826 0 R 826 0 R 826 0 R +826 0 R 826 0 R 827 0 R 826 0 R 826 0 R 826 0 R 826 0 R 828 0 R 828 0 R 828 0 R 828 0 R 828 0 R 828 0 R 828 0 R 828 0 R 829 0 R +830 0 R 829 0 R] +endobj +164 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 828 0 R 828 0 R 828 0 R 828 0 R 828 0 R 828 0 R 828 0 R 831 0 R 828 0 R 832 0 R 832 0 R 832 0 R 832 0 R 832 0 R +833 0 R 832 0 R 834 0 R 832 0 R 835 0 R 832 0 R 832 0 R 832 0 R 832 0 R 832 0 R 832 0 R 836 0 R 832 0 R 837 0 R 838 0 R 838 0 R +838 0 R 838 0 R 838 0 R 838 0 R 838 0 R 839 0 R 840 0 R 839 0 R 841 0 R 839 0 R 839 0 R 842 0 R 839 0 R 843 0 R 844 0 R 844 0 R +844 0 R 845 0 R 844 0 R 844 0 R 846 0 R 847 0 R 846 0 R 846 0 R] +endobj +165 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 846 0 R 846 0 R 846 0 R 846 0 R 846 0 R 848 0 R 849 0 R 849 0 R +850 0 R 851 0 R 852 0 R 852 0 R 852 0 R 853 0 R 852 0 R 852 0 R 852 0 R 852 0 R 852 0 R 852 0 R 852 0 R 852 0 R 852 0 R 854 0 R +852 0 R 852 0 R 855 0 R 852 0 R 852 0 R 852 0 R 852 0 R 852 0 R 852 0 R 856 0 R 856 0 R 856 0 R 856 0 R 857 0 R 857 0 R 858 0 R +859 0 R 859 0 R 860 0 R 861 0 R 862 0 R 863 0 R 864 0 R 865 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R] +endobj +166 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 872 0 R 872 0 R +873 0 R 872 0 R 872 0 R 872 0 R 874 0 R 874 0 R 874 0 R 875 0 R 874 0 R 874 0 R 874 0 R 874 0 R 876 0 R 874 0 R 874 0 R 874 0 R +874 0 R 877 0 R 877 0 R 878 0 R 877 0 R 877 0 R 877 0 R 877 0 R 877 0 R 877 0 R 877 0 R 877 0 R 877 0 R 879 0 R 880 0 R 880 0 R +880 0 R 880 0 R 881 0 R 881 0 R 881 0 R 881 0 R 881 0 R 881 0 R 882 0 R 881 0 R 881 0 R 881 0 R 881 0 R] +endobj +167 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 883 0 R 884 0 R 883 0 R +883 0 R 883 0 R 885 0 R 886 0 R 887 0 R 887 0 R 887 0 R 888 0 R 887 0 R 889 0 R 890 0 R 891 0 R 892 0 R 893 0 R 894 0 R 895 0 R +896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 900 0 R 900 0 R 901 0 R 902 0 R 903 0 R 903 0 R 904 0 R 904 0 R 905 0 R 904 0 R 906 0 R +907 0 R 908 0 R 907 0 R 907 0 R 907 0 R 907 0 R 907 0 R 907 0 R 907 0 R 909 0 R 909 0 R 909 0 R 909 0 R 909 0 R 909 0 R 909 0 R +910 0 R 911 0 R 910 0 R 912 0 R 913 0 R 914 0 R 914 0 R 915 0 R 916 0 R 917 0 R 918 0 R 917 0 R 917 0 R 919 0 R 920 0 R 921 0 R +921 0 R] +endobj +168 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 922 0 R 923 0 R 924 0 R 924 0 R 924 0 R 924 0 R 925 0 R 926 0 R 927 0 R 927 0 R 928 0 R 927 0 R 927 0 R 927 0 R 929 0 R +930 0 R 931 0 R 931 0 R 932 0 R 933 0 R 934 0 R 935 0 R 936 0 R 937 0 R 937 0 R 938 0 R 939 0 R 940 0 R 941 0 R 942 0 R 941 0 R +941 0 R 941 0 R 943 0 R 944 0 R 945 0 R 945 0 R 946 0 R 945 0 R 945 0 R 945 0 R 945 0 R 945 0 R 945 0 R 947 0 R 945 0 R 945 0 R +948 0 R 945 0 R 945 0 R 949 0 R 950 0 R 950 0 R 950 0 R 951 0 R 950 0 R 950 0 R 952 0 R 950 0 R 950 0 R 953 0 R 950 0 R] +endobj +169 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 954 0 R +955 0 R 955 0 R 956 0 R 957 0 R 958 0 R 958 0 R 958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R 965 0 R 966 0 R 967 0 R +968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 971 0 R 973 0 R 971 0 R 974 0 R 975 0 R 976 0 R 977 0 R 978 0 R 979 0 R 980 0 R 981 0 R +982 0 R 983 0 R 984 0 R 985 0 R 986 0 R 987 0 R 988 0 R 989 0 R 990 0 R 991 0 R 992 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R +998 0 R 999 0 R 1000 0 R 1001 0 R 1001 0 R 1002 0 R 1001 0 R 1001 0 R 1001 0 R 1003 0 R 1001 0 R 1004 0 R 1004 0 R 1004 0 R 1004 0 R 1004 0 R +1005 0 R 1004 0 R 1006 0 R 1006 0 R 1006 0 R 1006 0 R 1006 0 R 1006 0 R 1006 0 R 1006 0 R 1006 0 R 1006 0 R] +endobj +170 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 1007 0 R 1008 0 R 1008 0 R 1008 0 R +1009 0 R 1009 0 R 1009 0 R 1009 0 R 1010 0 R 1009 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R +1021 0 R 1022 0 R 1023 0 R 1024 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1027 0 R 1029 0 R 1027 0 R 1030 0 R 1031 0 R 1032 0 R 1032 0 R +1032 0 R 1033 0 R 1033 0 R 1033 0 R 1033 0 R 1034 0 R 1033 0 R 1033 0 R 1035 0 R 1033 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R +1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1048 0 R 1048 0 R 1049 0 R 1048 0 R 1048 0 R 1050 0 R 1048 0 R] +endobj +171 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 1048 0 R +1048 0 R 1051 0 R 1048 0 R 1048 0 R 1048 0 R 1048 0 R 1048 0 R 1052 0 R 1048 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R +1060 0 R 1061 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R] +endobj +172 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 1069 0 R 1070 0 R 1071 0 R 1072 0 R 1071 0 R 1071 0 R 1071 0 R +1073 0 R 1074 0 R 1074 0 R 1075 0 R 1076 0 R] +endobj +173 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/five) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1077 0 R +/FontName /GGTKBH+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +174 0 obj +<< +/Filter /FlateDecode +/Length 246 +>> +stream +H‰\PAjÃ0¼ë{LAŠÓÜ„ ¤-øдÔídií +jIÈòÁ¿ïJ)tAš]fg–_Ú§Ö» ü=Óa†Áy›pK2=ŽÎ³cÖ™|›êo&'q·Î§ÖI üƒÈ9§v6ô¸gü-YLΰûºt{àÝãNè3P +,dôªãUO¼Ê­%Þåõ@š¿Ï5"4u>naL°8Gm0i?"“‚J|¡R ½ýÇ?lª~0ß:1Ù<Ó®LžDí ¨?oýYÇfcŠãM[¼épn–”(s½S [b:÷SÆTå±_'ôv‘ +endstream +endobj +175 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/A/D/F/R/a/c/d/e/i/n/o/s/space/t) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1078 0 R +/FontName /JFJCRB+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +176 0 obj +<< +/Filter /FlateDecode +/Length 296 +>> +stream +H‰\‘ÏŠÃ Æï>ÅÛC1ISKAK·…ö›ÝHuÒ6FŒ=äíwÔÒ…t~2ó ã'?¶Ï­5ø»ŸT‡cµÇyºy…pÁ«±¬¬@î·tª±wŒ“¸[æ€ck‡‰I üƒ’s𠬞ôtÁ5ão^£7ö +«¯c·ÞÝœûÁm€š4Ôè¥w¯ýˆÀ“lÓjÊ›°lHóWñ¹8„*ÝË<Œš4ήWè{{E& Z È3­†¡Õÿòee—A}÷žÉ*&ë21â:sYdÄ»*1&E®±^l3o#g­ˆZ±Ë¼‹|È|ˆ|Ê|Š|ÎLË}î³}ö¹…øûÄñIä<<üR7ïɪô=ɣ莱øøA79 UÜìW€†Æ +endstream +endobj +177 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1079 0 R +/FontName /VNJRDD+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +178 0 obj +<< +/Filter /FlateDecode +/Length 453 +>> +stream +H‰\“Ýjã0…ïýºl/‚[šiÀ¶I +¹Øšî8¶’Ù(ÎEÞ~u|JjHüiß Q¾Ùo÷¡ŸLþ'íÁOæÔ‡.úëp‹­7GîC¶,M×·Óç×üß^š1ËSñá~üeNCV×&M‹×)ÞÍÃn8úÇ,ÿ;ûp67‡G“nãøá/>L¦0ëµéü)ýlÆ_ÍÅ›|.[ì»´ÞO÷Eªù¿ãí>zSÎßKÊ´Cç¯cÓúØ„³Ïê"=kS¿¤gùÐ}[wËŽ§ö½‰Y]bsQ¤Wâ yÞ’·ày—¸âþ +û«%y .É%¸"W`K¶`Gv`! XÉ +~"?WäUbËL‹LËL‹LËL‹LËL‹LËL‹LË;ç°‹^{qèÅÑßÁß1ß!ß1Ó!Ó1Ó!SØ» wa­ Vè)ðær„žOa¦ S˜)s&{ô.t8Ë3ùÌ3œ‘ðŒg$ìKЗ¼ÓÔÊ=*ÎJg…³ÒYá¬tV8+ÎJg…³ÒYá¬tV8+Ó ƒ÷9aÁtSÌ×|··ÓhÏ×ižiLsüׇѤ*ü² 1²â + +endstream +endobj +179 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1080 0 R +/FontName /BJEBJR+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +180 0 obj +<< +/Filter /FlateDecode +/Length 445 +>> +stream +H‰\“ËjÃ0E÷þ +-ÛEqbK3-˜@HZÈ¢šö[I lg‘¿¯®oh¡ÇGÑhtòÕf½ Ýhò·Ø7[?š}ÚèOý96Þìü¡ Ù¼0m׌×ÑôÛë!ËÓâíå4úã&ìû¬ªLþž&Oc¼˜›eÛïüm–¿ÆÖÇ.ÌÍçj{kòíy¾ýчÑÌÌbaZ¿O‰žëá¥>z“OËî6mšïÆË]Zóñq¼)¦ñœ2MßúÓP7>Öáà³j–ž…©žÒ³È|hÿÍ[å²Ý¾ùªcVžÍÒ'ñŠ¼?^ÿOïc—Œ+WÎÉspA.À%¹[²;² YÀJVð=ùü@~/ÉËÄ–ûZìk™ß"¿e~‹ü–ù-ò[æ·Èo™Ó"§]“×`ÖiQ£c5:ÖåP—c]u9îë°¯ÐGà#ŒÄ ãñÂx™âé)ðz +<…žO¡§ÀSX» váÙÎFè/ðú ü剜¾RÖ¢¨Eé¦pSº)Ü”n +7¥›ÂMé¦pSž‹â\”néƒÆºvZ,ÝóÛ¿Í9ÆÔºÓu™zÝÚÿ{£†~0iÞìG€×<ÛØ +endstream +endobj +181 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/R/S/a/b/c/comma/d/e/five/g/hyphen/i/l/m/n/o/r/s/space/t/u/v/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1081 0 R +/FontName /QFXXLN+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +182 0 obj +<< +/Filter /FlateDecode +/Length 354 +>> +stream +H‰\’ÍjÃ0 Çï~ +ÛCIš¦6…(i 9ìƒe{€ÔVºÀâ'=äí'Y¥ƒýŒ%ý…¤¤ªOµëg™¼‡Ñ40Ë®w6À4Þƒy…[ïÄ6“¶7óãÿfh½H0¸Y¦†Úu£( +™|àã4‡E®Žv¼ÂZ$oÁBèÝM®¾ªf-“æîý àf™Ê²”:LôÒú×v™Ä°Mmñ½Ÿ— Æüy|.dï[.ÆŒ&ß­»(R<¥,.xJÎþ{Ï4‡];óÝQd䜦h+æŠøÄ|BÞí#£E¾‹Œ9gΉÌbΓSž} 2Çî)Vm#£AfE>Š}TôáüŠò+®AQ J3kbÖU¤«XW‘®âúÕ¯ÎÌgâ 36§Ð¬«IW³®&]ͺšt5ëjÒÕŠY™±ÉnR»q+äs–æŽ1®NœM®wðÜ.?z‰Qô‰_é ¬¢ +endstream +endobj +183 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space/three) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1082 0 R +/FontName /RJMDZL+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +184 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PÁjÃ0 ½ë+tlÅi²ËÀFG!‡ncÙ>À±•Ô°ØÆqùûÉné`YOïñ,qê^;gŠèuO GëL¤Å¯Q4YÇÕé>•WÏ*€`r¿-‰æΤDñÉà’↻ãÚƒx†¢uî¾OýE¿†ðC3¹„¶-Yè¢Â›š E¡:øMÛ9_[ ¬Ë|¼™ÑÞД¦¨ÜD +Ž噣ræÞÜXè¯*‚¬ónUqÙ4¥çòé¹ô\²Æ};«ñ§ñaU¯1²Ër™b/³ŽÇ > ³r¯_sÔ +endstream +endobj +185 0 obj +[1083 0 R] +endobj +186 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +187 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/A/D/F/R/S/a/b/c/d/e/four/i/m/n/o/one/p/r/s/space/t/two/u/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1084 0 R +/FontName /FZLENJ+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +188 0 obj +<< +/Filter /FlateDecode +/Length 331 +>> +stream +H‰\’Ûnƒ0 †ïó¾\/*(‡ JiêAâbíh0ÒQ ¼ýì¸ê¤E‰ýÛÄ&:ÔÇÚ Dï~2 .жó8O7o.x¬Ú%Ð f¹ïÂÛŒ­S‰›u^p¬m?©²„胜óâWxzî¦ nTôæ;ôƒ½ÂÓסÙ@ÔÜœûÁí1TtØS¢—Ö½¶#BdÛº#ÿ°¬[ÒüE|®! û|Œ™:œ]kзöŠªŒiUPžiU +m÷ÏŸ$"»ôæ»õªL88ŽÉ¨2N' s&œg»Àdˆå< çZXç¢ÍY›§Â)±­f­–Í1Zbtˆ‘œšsê\8gÞ ï™ÂGæ“ð‰ù,L/ ¹KÁw)¤VÁµ +©Up­Bj‘áFÝ;Â-£ÉÂcææ="Œ?Ì€»?X|ü!nr@*~Ô¯2 G +endstream +endobj +189 0 obj +<< +/BaseFont /EBIXZL+Wingdings-Regular +/DescendantFonts 1085 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1086 0 R +/Type /Font +>> +endobj +190 0 obj +<< +/BaseFont /QFXXLN+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 181 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 1087 0 R +/Type /Font +/Widths [305] +>> +endobj +191 0 obj +<< +/BaseFont /EKZIZL+Wingdings-Regular +/DescendantFonts 1088 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1089 0 R +/Type /Font +>> +endobj +192 0 obj +<< +/BaseFont /QFXXLN+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 181 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1090 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +193 0 obj +<< +/BaseFont /RJMDZL+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 183 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1091 0 R +/Type /Font +/Widths [202] +>> +endobj +194 0 obj +<< +/BaseFont /JFJCRB+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 175 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1092 0 R +/Type /Font +/Widths [212] +>> +endobj +195 0 obj +<< +/BaseFont /FZLENJ+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 187 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1093 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 536 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 509 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 0 0 516 0 0 0 0 0 0 0 0 0 0 +0 0 356 0 0 569 0 0 0 500] +>> +endobj +196 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1094 0 R +/FontName /UMHHKJ+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +197 0 obj +<< +/Filter /FlateDecode +/Length 550 +>> +stream +H‰\”Ín›@…÷<Å,“E„Íܹ7HÈ’c'’ýQÝ>†±‹TÂdá·ïN”JE²ù3‡3òÝaè»Ùåߧ¡9ÆÙ»¾âmxŸšèNñÒõÙºpm×ÌWËs­Ç,O“÷Û¯‡þ÷|ó>Mi»/Ÿ˜eŸc‡w}üü +ÃèÒ,ü²¿ ÏK] +endstream +endobj +198 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/R/S/a/b/c/comma/d/e/eight/five/four/g/hyphen/i/l/m/n/nine/o/one/period/r/s/seven/six/space/t/three/two/u/v/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1095 0 R +/FontName /IMHTDH+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +199 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +200 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/five) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1096 0 R +/FontName /GJLBWL+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +201 0 obj +<< +/Filter /FlateDecode +/Length 246 +>> +stream +H‰\PAjÃ0¼ë{LAŠÓÜ„ ¤-øдÔídií +jIÈòÁ¿ïJ)tAš]fg–_Ú§Ö» ü=Óa†Áy›pK2=ŽÎ³cÖ™|›êo&'q·Î§ÖI üƒÈ9§v6ô¸gü-YLΰûºt{àÝãNè3P +,dôªãUO¼Ê­%Þåõ@š¿Ï5"4u>naL°8Gm0i?"“‚J|¡R ½ýÇ?lª~0ß:1Ù<Ó®LžDí ¨?oýYÇfcŠãM[¼épn–”(s½S [b:÷SÆTå±_'ôv‘ +endstream +endobj +202 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [31 /f_f] +/Type /Encoding +>> +endobj +203 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/I/K/L/N/P/R/S/T/U/V/a/b/c/colon/comma/d/e/eight/f/f_f/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/parenleft/parenright/percent/period/q/r/s/seven/six/slash/space/t/three/two/u/v/w/x/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1097 0 R +/FontName /YFFGTB+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +204 0 obj +<< +/Filter /FlateDecode +/Length 508 +>> +stream +H‰\“Ín£@„ï<Å“CÄÏÌt'BrìDòa´Þ} c)„ñÁo¿SÊJ‹|¦ªº‡N·ûݾïf“þœ†æfsêúv +×á65Áù듼0m×ÌëÓrm.õ˜¤qñá~Ãeߟ†¤,Mú+¾¼ÎÓÝ|Mþ8Œ&®Â™ü`cêüË +endstream +endobj +205 0 obj +<< +/BaseFont /SBHBNN+Wingdings-Regular +/DescendantFonts 1098 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1099 0 R +/Type /Font +>> +endobj +206 0 obj +<< +/BaseFont /IMHTDH+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 198 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1100 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 0 328 283 0 +573 0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 0 0 0 0 0 305 0 0 528 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 452 0 539 0 596 0 292 0 0 292 0 599 589 +0 0 403 451 383 598 551] +>> +endobj +207 0 obj +<< +/BaseFont /AIJSVX+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 218 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1101 0 R +/Type /Font +/Widths [202] +>> +endobj +208 0 obj +<< +/BaseFont /YFFGTB+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 203 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1102 0 R +/Type /Font +/Widths [212] +>> +endobj +209 0 obj +<< +/BaseFont /VYRODH+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1103 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 1104 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 683 0 509 0 0 0 0 0 0 0 0 0 +0 0 569 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 0 449 581 516 0 0 0 256 0 0 0 0 572 564 +0 0 0 417 351] +>> +endobj +210 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1105 0 R +/FontName /VYUNYH+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +211 0 obj +<< +/Filter /FlateDecode +/Length 377 +>> +stream +H‰\’Ïnƒ0 ÆïyŠÛC…â´Bªh+qØí(˜i„(Ðo?W4$È/Šýå3v§Âv“ÞýP—8鶳Çq¸ûõoUÛH7]==vË·î+§J.çq¾°í ÒTt8N~Ö«c3\q­‚7ß ïìM¯¾òr­ƒòîÜöh'ê,Ó ¶$ôR¹×ªG,i›¢¡ónš7”óñ9;ÔѲߊ™zhptU¾²7TiHO¦Ó =™BÛü;#I»¶õwåUqpÒB¼Þ3„Ì'áq|\˜•î¶ ÓB G̱pÌ Â@œÈ] ß•ì„wÌ“p ˆ&°&ˆ&°&ˆ&°&H.p.$ ³èÀ¢c„ ³Ô\H]ÀuA.œ3KÀ5ÂYøÌ|¦Ÿ™ñoØ¿o†½ñfØ›o†½ñfØ›o†½ñ@ 7èÑ nM”~ÎA}÷žF`»¥÷ÜõÎâs2Ýà4eñ«~†ê¸ +endstream +endobj +212 0 obj +<< +/BaseFont /USCYPJ+Wingdings-Regular +/DescendantFonts 1106 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1107 0 R +/Type /Font +>> +endobj +213 0 obj +<< +/BaseFont /IMHTDH+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 198 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1108 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +214 0 obj +<< +/BaseFont /AIJSVX+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 218 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1109 0 R +/Type /Font +/Widths [202] +>> +endobj +215 0 obj +<< +/BaseFont /YFFGTB+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 203 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1110 0 R +/Type /Font +/Widths [212] +>> +endobj +216 0 obj +<< +/BaseFont /VYRODH+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1103 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 1111 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 0 536 0 536 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 519 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 0 +585 0 356 0 351] +>> +endobj +217 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [27 /parenright.cap /parenleft.cap /f_i /f_l /hyphen.cap] +/Type /Encoding +>> +endobj +218 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/Y/a/b/c/colon/comma/d/e/eight/f/f_i/f_l/five/four/g/h/hyphen/hyphen.cap/i/k/l/m/n/nine/o/one/p/parenleft.cap/parenright.cap/period/q/r/s/seven/six/slash/space/t/three/two/u/v/w/x/y) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1112 0 R +/FontName /AIJSVX+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +219 0 obj +<< +/Filter /FlateDecode +/Length 536 +>> +stream +H‰\”ÍŽ›0…÷<…—3‹„\_g$„”&)‹þ¨i€€“"5€Yäí{ÍTD8›ïãÈ&Ýö‡®\ú}ìëcœÜ¹íš1ÞúûXGwŠ—¶KV¹kÚzZ®æÿúZ Ij“Û¯‡îÜ'EáÒvó6÷´múS|NÒocǶ»¸§_»ã³K÷aø¯±›\æÊÒ5ñlúR _«kté<íåÐØývz¼Øœ?Ctù|½¢LÝ7ñ6Tu«î“"³_éŠ7û•Iìšÿîë†ÓNçúw5&Åê“ Î²üµ´¼cÞ ïç¬jÇ|ïóÇõ×o»·œgÌòò ŒÉ÷ÿŒá|;Y^æš`±^ÍÙN–sæyͼFfAöÌY™90ä 3ÞcýÊŒwXo™·–…\WÈp…\WÈp…\WÈp…\WÈp…\WÈ•™Ë¾íd™] ºv%èJØ• +aW‚®<{öèÙÓÙÃÙÓÙÃÙÓÙÃÙÓÙÃÙÓÙÃÙÓÙÃÙÓÙÃÙÓÙÃYÙ¢%KÁR²,%KÁR²,Õe­ “¥`)Y +–’5¯-e'ŠN”ÌkL—5ˆNtYèDÙ‰¢“ÀN: tptptptptptptptpt¶6Ö²ƒ°ÅìKàÞ÷o}GÛºóçb޳حmß¿(C?8›…#ù+ÀÌ`” +endstream +endobj +220 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [28 /f_f_i /f_l /f_i /f_f] +/Type /Encoding +>> +endobj +221 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_f_i/f_l/f_i/f_f/space/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/five/six/eight/colon/semicolon/A/B/C/D/E/F/I/L/M/N/P/R/S/T/U/V/W/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/quoteright) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1113 0 R +/FontName /EWIKUP+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +222 0 obj +<< +/Filter /FlateDecode +/Length 530 +>> +stream +H‰\TËn£@¼ósLfºc YrœäÃ>´Î~†±i ãƒÿ~»(”¬Öž†©G3MºÛ¿î»vr鱯qr§¶kÆxíocÝ1žÛ.Ér×´õ´ÌæÿúR Ij›÷ë/ûîÔ'eéÒŸ¶xÆ»{Ø6ý1>&é÷±‰cÛÝïÝáÑ¥‡Û0ü‰—ØMnå6×Ä“}­†oÕ%ºtÞö´ol½îO¶çó‰÷û]>Ï3š©û&^‡ªŽcÕcR®ì·qå›ý6IìšÿÖÅsÛñTÿ®Æ¤Ìvöðj%²\ëÝ{ý¼·ÃüËç|^ûgÍóÕ<·Áð3ñ3ðš{rêäàËÉoƒarÛ`˜¼6$eAÎœEFœçÄ9pA\â,ÄðVÐO?Å–x üBübؓ߃ߓ߃ߓ߃ß{bL--O--ϼy=ózäõÌë‘×3¯GÞÀŒutututututƒ«aaA!§€SÈ)àr +8…œN‘当SfNÖPPCaÆùë)¨§°ž‚zÊr¦]–³„천#d—å á]+ë ¨ƒÒ¿Â¿Ò¿Â¿Ò¿Â¿Ò¿Â¿Ò¿Â¿Ò¿Â¿Ò¿Â¿Ò¿Â¿Ò¿Â¿Ò¿ÂÿZù*[ÏM³tÚǺÜ}ôf}GkËùS0÷#:±íâÇ×bèg»p%¶€ +endstream +endobj +223 0 obj +[1114 0 R] +endobj +224 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\PÁjÃ0 ½û+tlÅm¶ÃÁPZ +9¬ËöŽ­¤†Æ6ŠsÈßOvKØâñÞO’‡æØx—@~R0-&è·„S˜É t88/vXgҕߌ: +Éæv™Žïƒ¨k_LN‰Xímèp-ä…,’ó¬~íd;ÇxÃ}‚-({ô¡ãY²Ø6eÞ¥eÞ?Å÷ª‚w÷0&Xœ¢6HÚ(ê-—‚úÄ¥zû¯î®®7WMEýÂjnï*£·×‚¸eïC•§ð²ðŒhf"NW.Rbå@Îãóh1D`W~âW€(¬rO +endstream +endobj +225 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1115 0 R +/FontName /WVABUB+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +226 0 obj +<< +/Filter /FlateDecode +/Length 444 +>> +stream +H‰\“Ýnâ0…ïó¾l/ª„Ï)B¢üH\ìnµ´C#'2á‚·_Ÿª•6ä‹“9|&ùz¿Ùû~2ùkÚƒ›Ì©÷]p×áZgŽîÜûlVš®o§¯«ôÝ^š1Ëcñá~ÜeïOCV×&ÿo^§p7«n8ºÇ,ÿ:z6ïëãÉ·qütç'S˜åÒtîƒ~5ãïæâLžÊžö]¼ßO÷§XóóÄÛ}t¦L×3Ê´Cç®cÓºÐø³Ëê"KSïâ±Ìœïþ»_)ËŽ§ö£ Y]âᢈ§ÈÏägð‚¼¯Ékð†¼oÉÛÈóYâxŠ¼"¯"W\¯°^•ä<'ÏÁ¹ YÀt¨à`éiái™c‘c™c‘c™c‘c™c‘#t8kµÂZA­°VP+–lÁÌ‘”£d³W‚^ =žÂ½ ö./ä0{(è¡°‡‚ +{(è¡ìÈñ«•ûUìWé¯ðWú+ü•þ +¥¿Â_é¯ðWú+ü•þ +¥¿Â_é¯ð_à·Êb†õEINëBž§¡úšŒW| Ì÷춷âئW%Í+&µ÷îûm‡ÑÄ*|² °Û= +endstream +endobj +227 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/R/S/a/b/comma/d/e/eight/five/g/i/l/m/n/o/one/period/r/s/space/t/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1116 0 R +/FontName /LVAMWX+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +228 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PMkÃ0 ½ûWèØŠôÒƒ1Œ–Aû`Ù~€c+™a±ãòï';¥ƒ dIè½Ç³øµ»uÞeàï)˜3ŒÎÛ„KX“Aprž5-Xgò}ª¯™udœÈý¶dœ;?&%ðZ.9mpx²aÀ#ãoÉbr~‚Ã×µ?ï×pFŸA€R`q$¡_õŒÀ+íÔYÚ»¼ˆó‡øÜ"B[çf7c‚Å%jƒIû ™ +ä3…bèí¿ýyg £ùÖ‰ÉsCX!¨PÙû‹**­¨•¢rÇ=ú6<Ìš5%òYoS kÎãã|1D VIö+À,¦t, +endstream +endobj +229 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/Y/a/b/c/colon/d/e/f/five/hyphen/i/k/l/m/n/o/one/period/r/s/six/space/t/u/y) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1117 0 R +/FontName /IWKPGD+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +230 0 obj +<< +/Filter /FlateDecode +/Length 414 +>> +stream +H‰\“ÍnÂ0„ïy +ÛCöºH…VâЕöBbh¤âD&xûîdP+5ø‹ìψ%_mÖ›Ø&K]½ ƒÙ·±IáÔSÌ.Ú˜M Ó´õp}¿ëcÕg¹Š·—ÓŽ›¸ï²²4ù»nž†t17˦ۅÛ,MMHm<˜›ÏÕöÖäÛs߇cˆƒ™˜ÅÂ4a¯FÏUÿRƒÉGÙݦÑýv¸Ü©æïÄÇ¥¦ߧ SwM8õUR!+'ú,Lù¤Ï" ±ù·o¯²Ý¾þªRV8<™è¢¼&¯ÁäGåÙtd]”Ù…,à%y©lyÞâ¼µd ¦ÖBk©µÐZOöà{ò=xNžƒWä˜9-rZæ´ÈiŸÈZ¼tìåÐËä<#ÏÀÌæÍ1›C6Ç{îvtú|„>¡ÀGè#ðvtzÊèù@~³— —°— —°— —°— —g ž<2xfðÈà™Á#ƒç½º`®¿:ÆB§×üÎ\}NIÇmñqÎ0am ¿ÿ‚¾ëªðÉ~çÍ~ +endstream +endobj +231 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/L/a/c/e/five/g/i/o/one/period/r/s/six/space/t/y) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1118 0 R +/FontName /HXVJSF+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +232 0 obj +<< +/Filter /FlateDecode +/Length 303 +>> +stream +H‰\‘ÏjÃ0 Æï~ +ÛCq’¶] 9ìËö©­t†Å1Ž{ÈÛO¶K3$ßÏHŸ°$~lŸ[kðw?© Æjótó +á‚WcYY6*Üoé¯ÆÞ1Næn™Ž­&&%ð +ÎÁ/°zÒÓ׌¿yÞØ+¬¾ŽÝxwsîG´ +hÐ8P¡—Þ½ö#O¶M«)n²!Ï_Æçâªt/ócÔ¤qv½BßÛ+2YÐi@žé4 ­þ/E¶]õÝ{&«˜\$ħÌ'âm™˜„xŸyYdÄ»cb&EÎ1_l3o#g¯ˆ^Qg®#2"Ÿ3Óƒe]%&!ÎuêX§ÞeÞEÎ^’ØནØ*msT7ïi„imivqjÆâc³nr@®ø±_H’ +endstream +endobj +233 0 obj +<< +/BaseFont /QANQON+Wingdings-Regular +/DescendantFonts 1119 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1120 0 R +/Type /Font +>> +endobj +234 0 obj +<< +/BaseFont /LVAMWX+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 227 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1121 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +235 0 obj +<< +/BaseFont /IWKPGD+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 229 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1122 0 R +/Type /Font +/Widths [202] +>> +endobj +236 0 obj +<< +/BaseFont /HXVJSF+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 231 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1123 0 R +/Type /Font +/Widths [212] +>> +endobj +237 0 obj +<< +/BaseFont /GTLDEH+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1124 0 R +/LastChar 116 +/Subtype /Type1 +/ToUnicode 1125 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 0 536 0 536 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 519 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 585 0 0 516 0 0 0 0 0 0 0 848 0 0 +585 0 356 0 351] +>> +endobj +238 0 obj +<< +/Length 602 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + + Antje Tonn + + + + + + +endstream +endobj +239 0 obj +<< +/K [253 0 R 254 0 R 255 0 R 257 0 R 261 0 R 264 0 R 268 0 R 270 0 R 271 0 R 275 0 R 276 0 R 278 0 R 1126 0 R 1127 0 R 292 0 R 296 0 R +1128 0 R 299 0 R 1129 0 R 302 0 R 1130 0 R 306 0 R 1131 0 R 309 0 R 1132 0 R 311 0 R 1133 0 R 314 0 R 315 0 R 316 0 R 319 0 R 440 0 R +441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 449 0 R 451 0 R 452 0 R 453 0 R 455 0 R 458 0 R 459 0 R 462 0 R 467 0 R 468 0 R +471 0 R 473 0 R 476 0 R 479 0 R 480 0 R 481 0 R 482 0 R 1134 0 R 515 0 R 516 0 R 1135 0 R 528 0 R 530 0 R 531 0 R 532 0 R 533 0 R +534 0 R 536 0 R 537 0 R 580 0 R 581 0 R 584 0 R 585 0 R 588 0 R 590 0 R 591 0 R 592 0 R 594 0 R 595 0 R 597 0 R 598 0 R 603 0 R +604 0 R 606 0 R 607 0 R 609 0 R 611 0 R 614 0 R 1136 0 R 643 0 R 648 0 R 654 0 R 655 0 R 661 0 R 1137 0 R 695 0 R 698 0 R 700 0 R +701 0 R 1138 0 R 737 0 R 738 0 R 741 0 R 742 0 R 746 0 R 748 0 R 749 0 R 750 0 R 752 0 R 1139 0 R 1140 0 R 1141 0 R 1142 0 R 1143 0 R +1144 0 R 1145 0 R 1146 0 R 1147 0 R 1148 0 R 1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R 1154 0 R 1155 0 R 762 0 R 1156 0 R 781 0 R 784 0 R +785 0 R 786 0 R 789 0 R 790 0 R 791 0 R 793 0 R 796 0 R 798 0 R 799 0 R 800 0 R 801 0 R 802 0 R 803 0 R 804 0 R 807 0 R 808 0 R +1157 0 R 818 0 R 819 0 R 820 0 R 821 0 R 823 0 R 824 0 R 826 0 R 828 0 R 832 0 R 837 0 R 838 0 R 839 0 R 843 0 R 844 0 R 846 0 R +848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 856 0 R 872 0 R 874 0 R 877 0 R 879 0 R 880 0 R 881 0 R 883 0 R 1158 0 R 904 0 R 906 0 R +907 0 R 909 0 R 910 0 R 1159 0 R 941 0 R 943 0 R 944 0 R 945 0 R 949 0 R 950 0 R 954 0 R 955 0 R 1160 0 R 971 0 R 1161 0 R 1001 0 R +1004 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1011 0 R 1162 0 R 1024 0 R 1163 0 R 1033 0 R 1164 0 R 1048 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R +1057 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1165 0 R] +/P 142 0 R +/S /Story +>> +endobj +240 0 obj +<< +/K 376 0 R +/P 142 0 R +/S /Story +>> +endobj +241 0 obj +<< +/K 1166 0 R +/P 142 0 R +/S /Story +>> +endobj +242 0 obj +<< +/K 1167 0 R +/P 142 0 R +/S /Story +>> +endobj +243 0 obj +<< +/K 464 0 R +/P 142 0 R +/S /Story +>> +endobj +244 0 obj +<< +/K 1168 0 R +/P 142 0 R +/S /Story +>> +endobj +245 0 obj +<< +/K 652 0 R +/P 142 0 R +/S /Story +>> +endobj +246 0 obj +<< +/K 829 0 R +/P 142 0 R +/S /Story +>> +endobj +247 0 obj +<< +/K 857 0 R +/P 142 0 R +/S /Story +>> +endobj +248 0 obj +<< +/K 870 0 R +/P 142 0 R +/S /Story +>> +endobj +249 0 obj +<< +/K 1169 0 R +/P 142 0 R +/S /Story +>> +endobj +250 0 obj +<< +/K 871 0 R +/P 142 0 R +/S /Story +>> +endobj +251 0 obj +<< +/K [1069 0 R 1070 0 R 1071 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R] +/P 142 0 R +/S /Story +>> +endobj +252 0 obj +<< +/A << +/LineHeight 56.0 +/O /Layout +>> +/K 0 +/P 253 0 R +/Pg 10 0 R +/S /Span +>> +endobj +253 0 obj +<< +/A << +/LineHeight 24.0 +/O /Layout +/SpaceAfter 24.0 +>> +/K [252 0 R 1] +/P 239 0 R +/Pg 10 0 R +/S /Kapitel-Head +>> +endobj +254 0 obj +<< +/C /Pa1 +/K 2 +/P 239 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +255 0 obj +<< +/C /Pa2 +/K [3 4 5 6 7 8 9 256 0 R 11] +/P 239 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +256 0 obj +<< +/ActualText +/K 10 +/P 255 0 R +/Pg 10 0 R +/S /Span +>> +endobj +257 0 obj +<< +/C /Pa3 +/K [12 13 258 0 R 15 16 17 259 0 R 19 20 260 0 R 22 23] +/P 239 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +258 0 obj +<< +/ActualText +/K 14 +/P 257 0 R +/Pg 10 0 R +/S /Span +>> +endobj +259 0 obj +<< +/ActualText +/K 18 +/P 257 0 R +/Pg 10 0 R +/S /Span +>> +endobj +260 0 obj +<< +/ActualText +/K 21 +/P 257 0 R +/Pg 10 0 R +/S /Span +>> +endobj +261 0 obj +<< +/C /Pa3 +/K [24 262 0 R 26 27 28 29 30 31 32 33 34 263 0 R 36 37] +/P 239 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +262 0 obj +<< +/ActualText +/K 25 +/P 261 0 R +/Pg 10 0 R +/S /Span +>> +endobj +263 0 obj +<< +/ActualText +/K 35 +/P 261 0 R +/Pg 10 0 R +/S /Span +>> +endobj +264 0 obj +<< +/C /Pa3 +/K [38 39 265 0 R 41 266 0 R 43 267 0 R 45 46 47 48 49] +/P 239 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +265 0 obj +<< +/ActualText +/K 40 +/P 264 0 R +/Pg 10 0 R +/S /Span +>> +endobj +266 0 obj +<< +/ActualText +/K 42 +/P 264 0 R +/Pg 10 0 R +/S /Span +>> +endobj +267 0 obj +<< +/ActualText +/K 44 +/P 264 0 R +/Pg 10 0 R +/S /Span +>> +endobj +268 0 obj +<< +/C /Pa3 +/K [50 51 52 53 54 55 56 269 0 R 58] +/P 239 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +269 0 obj +<< +/ActualText +/K 57 +/P 268 0 R +/Pg 11 0 R +/S /Span +>> +endobj +270 0 obj +<< +/C /Pa1 +/K 59 +/P 239 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +271 0 obj +<< +/C /Pa2 +/K [60 272 0 R 62 63 64 273 0 R 66 67 1170 0 R 69 70 71 72 73] +/P 239 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +272 0 obj +<< +/ActualText +/K 61 +/P 271 0 R +/Pg 11 0 R +/S /Span +>> +endobj +273 0 obj +<< +/ActualText +/K 65 +/P 271 0 R +/Pg 11 0 R +/S /Span +>> +endobj +274 0 obj +<< +/C /A4 +/K 68 +/P 1171 0 R +/Pg 11 0 R +/S /Span +>> +endobj +275 0 obj +<< +/C /Pa1 +/K 74 +/P 239 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +276 0 obj +<< +/C /Pa2 +/K [75 76 277 0 R 78] +/P 239 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +277 0 obj +<< +/ActualText +/K 77 +/P 276 0 R +/Pg 11 0 R +/S /Span +>> +endobj +278 0 obj +<< +/C /Pa3 +/K [79 80 81 82 83] +/P 239 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +279 0 obj +<< +/C /A5 +/K 84 +/P 1172 0 R +/Pg 11 0 R +/S /Span +>> +endobj +280 0 obj +<< +/K [85 281 0 R 87] +/P 1173 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +281 0 obj +<< +/ActualText +/K 86 +/P 280 0 R +/Pg 11 0 R +/S /Span +>> +endobj +282 0 obj +<< +/C /A5 +/K 88 +/P 1174 0 R +/Pg 11 0 R +/S /Span +>> +endobj +283 0 obj +<< +/K [89 284 0 R 91] +/P 1175 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +284 0 obj +<< +/ActualText +/K 90 +/P 283 0 R +/Pg 11 0 R +/S /Span +>> +endobj +285 0 obj +<< +/C /A5 +/K 92 +/P 1176 0 R +/Pg 11 0 R +/S /Span +>> +endobj +286 0 obj +<< +/K 93 +/P 1177 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +287 0 obj +<< +/C /A5 +/K 94 +/P 1178 0 R +/Pg 11 0 R +/S /Span +>> +endobj +288 0 obj +<< +/K 95 +/P 1179 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +289 0 obj +<< +/C /A5 +/K 96 +/P 1180 0 R +/Pg 11 0 R +/S /Span +>> +endobj +290 0 obj +<< +/K 97 +/P 1181 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +291 0 obj +<< +/C /A6 +/K 98 +/P 292 0 R +/Pg 11 0 R +/S /Span +>> +endobj +292 0 obj +<< +/C /Pa2 +/K [291 0 R 99 100 101 102 293 0 R 104 294 0 R 106] +/P 239 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +293 0 obj +<< +/ActualText +/K 103 +/P 292 0 R +/Pg 11 0 R +/S /Span +>> +endobj +294 0 obj +<< +/ActualText +/K 105 +/P 292 0 R +/Pg 11 0 R +/S /Span +>> +endobj +295 0 obj +<< +/C /A6 +/K 107 +/P 296 0 R +/Pg 12 0 R +/S /Span +>> +endobj +296 0 obj +<< +/C /Pa2 +/K [295 0 R 108 297 0 R 110] +/P 239 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +297 0 obj +<< +/ActualText +/K 109 +/P 296 0 R +/Pg 12 0 R +/S /Span +>> +endobj +298 0 obj +<< +/C /A6 +/K 111 +/P 299 0 R +/Pg 12 0 R +/S /Span +>> +endobj +299 0 obj +<< +/C /Pa2 +/K [298 0 R 112 113 114 300 0 R 116 117 118 119] +/P 239 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +300 0 obj +<< +/ActualText +/K 115 +/P 299 0 R +/Pg 12 0 R +/S /Span +>> +endobj +301 0 obj +<< +/C /A6 +/K 120 +/P 302 0 R +/Pg 12 0 R +/S /Span +>> +endobj +302 0 obj +<< +/C /Pa2 +/K [301 0 R 121 122 303 0 R 124 125 126 127 304 0 R 129] +/P 239 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +303 0 obj +<< +/ActualText +/K 123 +/P 302 0 R +/Pg 12 0 R +/S /Span +>> +endobj +304 0 obj +<< +/ActualText +/K 128 +/P 302 0 R +/Pg 12 0 R +/S /Span +>> +endobj +305 0 obj +<< +/C /A6 +/K 130 +/P 306 0 R +/Pg 12 0 R +/S /Span +>> +endobj +306 0 obj +<< +/C /Pa2 +/K [305 0 R 131 307 0 R 133 134] +/P 239 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +307 0 obj +<< +/ActualText +/K 132 +/P 306 0 R +/Pg 12 0 R +/S /Span +>> +endobj +308 0 obj +<< +/C /A6 +/K 135 +/P 309 0 R +/Pg 12 0 R +/S /Span +>> +endobj +309 0 obj +<< +/C /Pa2 +/K [308 0 R 136 137] +/P 239 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +310 0 obj +<< +/C /A6 +/K 138 +/P 311 0 R +/Pg 12 0 R +/S /Span +>> +endobj +311 0 obj +<< +/C /Pa2 +/K [310 0 R 139 312 0 R 141 142 143 144] +/P 239 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +312 0 obj +<< +/ActualText +/K 140 +/P 311 0 R +/Pg 12 0 R +/S /Span +>> +endobj +313 0 obj +<< +/C /A6 +/K 145 +/P 314 0 R +/Pg 12 0 R +/S /Span +>> +endobj +314 0 obj +<< +/C /Pa2 +/K [313 0 R 146 147 148] +/P 239 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +315 0 obj +<< +/C /Pa1 +/K 149 +/P 239 0 R +/Pg 12 0 R +/S /Zwischenhead_1 +>> +endobj +316 0 obj +<< +/C /Pa2 +/K [150 151 317 0 R 153 154 155 318 0 R 157 158] +/P 239 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +317 0 obj +<< +/ActualText +/K 152 +/P 316 0 R +/Pg 12 0 R +/S /Span +>> +endobj +318 0 obj +<< +/ActualText +/K 156 +/P 316 0 R +/Pg 12 0 R +/S /Span +>> +endobj +319 0 obj +<< +/C /Pa3 +/K [159 320 0 R 161 321 0 R 163 164 322 0 R << +/MCID 258 +/Pg 14 0 R +/Type /MCR +>> 377 0 R << +/MCID 260 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 261 +/Pg 14 0 R +/Type /MCR +>> 378 0 R << +/MCID 263 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 264 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 265 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 266 +/Pg 14 0 R +/Type /MCR +>> +<< +/MCID 267 +/Pg 14 0 R +/Type /MCR +>> << +/MCID 268 +/Pg 14 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +320 0 obj +<< +/ActualText +/K 160 +/P 319 0 R +/Pg 13 0 R +/S /Span +>> +endobj +321 0 obj +<< +/ActualText +/K 162 +/P 319 0 R +/Pg 13 0 R +/S /Span +>> +endobj +322 0 obj +<< +/ActualText +/K 165 +/P 319 0 R +/Pg 13 0 R +/S /Span +>> +endobj +323 0 obj +<< +/C /Pa7 +/K 166 +/P 1182 0 R +/Pg 13 0 R +/S /Tab._Versal_bold_wei +>> +endobj +324 0 obj +<< +/C /Pa7 +/K 167 +/P 1183 0 R +/Pg 13 0 R +/S /Tab._Versal_bold_wei +>> +endobj +325 0 obj +<< +/C /Pa7 +/K [168 169 170] +/P 1184 0 R +/Pg 13 0 R +/S /Tab._Versal_bold_sch +>> +endobj +326 0 obj +<< +/C /Pa8 +/K [171 172 173 174 175] +/P 1185 0 R +/Pg 13 0 R +/S /Tab._Lauftext_light_ +>> +endobj +327 0 obj +<< +/C /Pa9 +/K [176 177] +/P 1186 0 R +/Pg 13 0 R +/S /Tab._Lauftext_light_ +>> +endobj +328 0 obj +<< +/C /A5 +/K 178 +/P 1187 0 R +/Pg 13 0 R +/S /Span +>> +endobj +329 0 obj +<< +/C /A5 +/K 179 +/P 1187 0 R +/Pg 13 0 R +/S /Span +>> +endobj +330 0 obj +<< +/K [180 331 0 R 182] +/P 1188 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +331 0 obj +<< +/ActualText +/K 181 +/P 330 0 R +/Pg 13 0 R +/S /Span +>> +endobj +332 0 obj +<< +/C /A5 +/K 183 +/P 1189 0 R +/Pg 13 0 R +/S /Span +>> +endobj +333 0 obj +<< +/C /A5 +/K 184 +/P 1189 0 R +/Pg 13 0 R +/S /Span +>> +endobj +334 0 obj +<< +/K [185 186 187 335 0 R 189 190 336 0 R 192 193 337 0 R 195 196] +/P 1190 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +335 0 obj +<< +/ActualText +/K 188 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +336 0 obj +<< +/ActualText +/K 191 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +337 0 obj +<< +/ActualText +/K 194 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +338 0 obj +<< +/C /A5 +/K 197 +/P 1191 0 R +/Pg 13 0 R +/S /Span +>> +endobj +339 0 obj +<< +/C /A5 +/K 198 +/P 1191 0 R +/Pg 13 0 R +/S /Span +>> +endobj +340 0 obj +<< +/K [199 341 0 R 201 202] +/P 1192 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +341 0 obj +<< +/ActualText +/K 200 +/P 340 0 R +/Pg 13 0 R +/S /Span +>> +endobj +342 0 obj +<< +/C /A5 +/K 203 +/P 1193 0 R +/Pg 13 0 R +/S /Span +>> +endobj +343 0 obj +<< +/C /A5 +/K 204 +/P 1193 0 R +/Pg 13 0 R +/S /Span +>> +endobj +344 0 obj +<< +/K [205 206] +/P 1194 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +345 0 obj +<< +/C /Pa8 +/K 207 +/P 1195 0 R +/Pg 13 0 R +/S /Tab._Lauftext_light_ +>> +endobj +346 0 obj +<< +/C /Pa8 +/K [208 209 210] +/P 1196 0 R +/Pg 13 0 R +/S /Tab._Lauftext_light_ +>> +endobj +347 0 obj +<< +/C /A5 +/K 211 +/P 1197 0 R +/Pg 13 0 R +/S /Span +>> +endobj +348 0 obj +<< +/C /A5 +/K 212 +/P 1197 0 R +/Pg 13 0 R +/S /Span +>> +endobj +349 0 obj +<< +/K [213 214 215] +/P 1198 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +350 0 obj +<< +/C /Pa8 +/K 216 +/P 1199 0 R +/Pg 13 0 R +/S /Tab._Lauftext_light_ +>> +endobj +351 0 obj +<< +/C /Pa9 +/K [217 218 219 220 221 352 0 R 223 224 225 353 0 R 227] +/P 1200 0 R +/Pg 13 0 R +/S /Tab._Lauftext_light_ +>> +endobj +352 0 obj +<< +/ActualText +/K 222 +/P 351 0 R +/Pg 13 0 R +/S /Span +>> +endobj +353 0 obj +<< +/ActualText +/K 226 +/P 351 0 R +/Pg 13 0 R +/S /Span +>> +endobj +354 0 obj +<< +/C /A5 +/K 228 +/P 1201 0 R +/Pg 13 0 R +/S /Span +>> +endobj +355 0 obj +<< +/C /A5 +/K 229 +/P 1201 0 R +/Pg 13 0 R +/S /Span +>> +endobj +356 0 obj +<< +/K [230 357 0 R 232 233 234] +/P 1202 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +357 0 obj +<< +/ActualText +/K 231 +/P 356 0 R +/Pg 13 0 R +/S /Span +>> +endobj +358 0 obj +<< +/C /A5 +/K 235 +/P 1203 0 R +/Pg 13 0 R +/S /Span +>> +endobj +359 0 obj +<< +/C /A5 +/K 236 +/P 1203 0 R +/Pg 13 0 R +/S /Span +>> +endobj +360 0 obj +<< +/K 237 +/P 1204 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +361 0 obj +<< +/C /A5 +/K 238 +/P 1205 0 R +/Pg 13 0 R +/S /Span +>> +endobj +362 0 obj +<< +/C /A5 +/K 239 +/P 1205 0 R +/Pg 13 0 R +/S /Span +>> +endobj +363 0 obj +<< +/K [240 364 0 R 242] +/P 1206 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +364 0 obj +<< +/ActualText +/K 241 +/P 363 0 R +/Pg 13 0 R +/S /Span +>> +endobj +365 0 obj +<< +/C /A5 +/K 243 +/P 1207 0 R +/Pg 13 0 R +/S /Span +>> +endobj +366 0 obj +<< +/C /A5 +/K 244 +/P 1207 0 R +/Pg 13 0 R +/S /Span +>> +endobj +367 0 obj +<< +/K [245 368 0 R 247] +/P 1208 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +368 0 obj +<< +/ActualText +/K 246 +/P 367 0 R +/Pg 13 0 R +/S /Span +>> +endobj +369 0 obj +<< +/C /A5 +/K 248 +/P 1209 0 R +/Pg 13 0 R +/S /Span +>> +endobj +370 0 obj +<< +/C /A5 +/K 249 +/P 1209 0 R +/Pg 13 0 R +/S /Span +>> +endobj +371 0 obj +<< +/K [250 372 0 R 252] +/P 1210 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +372 0 obj +<< +/ActualText +/K 251 +/P 371 0 R +/Pg 13 0 R +/S /Span +>> +endobj +373 0 obj +<< +/C /A5 +/K 253 +/P 1211 0 R +/Pg 13 0 R +/S /Span +>> +endobj +374 0 obj +<< +/C /A5 +/K 254 +/P 1211 0 R +/Pg 13 0 R +/S /Span +>> +endobj +375 0 obj +<< +/K [255 256] +/P 1212 0 R +/Pg 13 0 R +/S /LBody +>> +endobj +376 0 obj +<< +/C /Pa11 +/K 257 +/P 240 0 R +/Pg 13 0 R +/S /Zwischenhead_2 +>> +endobj +377 0 obj +<< +/ActualText +/K 259 +/P 319 0 R +/Pg 14 0 R +/S /Span +>> +endobj +378 0 obj +<< +/ActualText +/K 262 +/P 319 0 R +/Pg 14 0 R +/S /Span +>> +endobj +379 0 obj +<< +/C /Pa7 +/K 269 +/P 1213 0 R +/Pg 14 0 R +/S /Tab._Versal_bold_wei +>> +endobj +380 0 obj +<< +/C /Pa7 +/K 270 +/P 1214 0 R +/Pg 14 0 R +/S /Tab._Versal_bold_wei +>> +endobj +381 0 obj +<< +/C /Pa7 +/K 271 +/P 1215 0 R +/Pg 14 0 R +/S /Tab._Versal_bold_sch +>> +endobj +382 0 obj +<< +/C /Pa8 +/K [272 273 274 383 0 R 276 277] +/P 1216 0 R +/Pg 14 0 R +/S /Tab._Lauftext_light_ +>> +endobj +383 0 obj +<< +/ActualText +/K 275 +/P 382 0 R +/Pg 14 0 R +/S /Span +>> +endobj +384 0 obj +<< +/C /Pa9 +/K [278 279 280] +/P 1217 0 R +/Pg 14 0 R +/S /Tab._Lauftext_light_ +>> +endobj +385 0 obj +<< +/C /A5 +/K 281 +/P 1218 0 R +/Pg 14 0 R +/S /Span +>> +endobj +386 0 obj +<< +/C /A5 +/K 282 +/P 1218 0 R +/Pg 14 0 R +/S /Span +>> +endobj +387 0 obj +<< +/K [283 388 0 R 285] +/P 1219 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +388 0 obj +<< +/ActualText +/K 284 +/P 387 0 R +/Pg 14 0 R +/S /Span +>> +endobj +389 0 obj +<< +/C /A5 +/K 286 +/P 1220 0 R +/Pg 14 0 R +/S /Span +>> +endobj +390 0 obj +<< +/C /A5 +/K 287 +/P 1220 0 R +/Pg 14 0 R +/S /Span +>> +endobj +391 0 obj +<< +/K [288 392 0 R 290] +/P 1221 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +392 0 obj +<< +/ActualText +/K 289 +/P 391 0 R +/Pg 14 0 R +/S /Span +>> +endobj +393 0 obj +<< +/C /A5 +/K 291 +/P 1222 0 R +/Pg 14 0 R +/S /Span +>> +endobj +394 0 obj +<< +/C /A5 +/K 292 +/P 1222 0 R +/Pg 14 0 R +/S /Span +>> +endobj +395 0 obj +<< +/K [293 294] +/P 1223 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +396 0 obj +<< +/C /Pa8 +/K 295 +/P 1224 0 R +/Pg 14 0 R +/S /Tab._Lauftext_light_ +>> +endobj +397 0 obj +<< +/C /Pa8 +/K [296 297] +/P 1225 0 R +/Pg 14 0 R +/S /Tab._Lauftext_light_ +>> +endobj +398 0 obj +<< +/C /A5 +/K 298 +/P 1226 0 R +/Pg 14 0 R +/S /Span +>> +endobj +399 0 obj +<< +/C /A5 +/K 299 +/P 1226 0 R +/Pg 14 0 R +/S /Span +>> +endobj +400 0 obj +<< +/K [300 401 0 R 302] +/P 1227 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +401 0 obj +<< +/ActualText +/K 301 +/P 400 0 R +/Pg 14 0 R +/S /Span +>> +endobj +402 0 obj +<< +/C /A5 +/K 303 +/P 1228 0 R +/Pg 14 0 R +/S /Span +>> +endobj +403 0 obj +<< +/C /A5 +/K 304 +/P 1228 0 R +/Pg 14 0 R +/S /Span +>> +endobj +404 0 obj +<< +/K [305 306 405 0 R 308] +/P 1229 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +405 0 obj +<< +/ActualText +/K 307 +/P 404 0 R +/Pg 14 0 R +/S /Span +>> +endobj +406 0 obj +<< +/C /A5 +/K 309 +/P 1230 0 R +/Pg 14 0 R +/S /Span +>> +endobj +407 0 obj +<< +/C /A5 +/K 310 +/P 1230 0 R +/Pg 14 0 R +/S /Span +>> +endobj +408 0 obj +<< +/K [311 409 0 R 313] +/P 1231 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +409 0 obj +<< +/ActualText +/K 312 +/P 408 0 R +/Pg 14 0 R +/S /Span +>> +endobj +410 0 obj +<< +/C /A5 +/K 314 +/P 1232 0 R +/Pg 14 0 R +/S /Span +>> +endobj +411 0 obj +<< +/C /A5 +/K 315 +/P 1232 0 R +/Pg 14 0 R +/S /Span +>> +endobj +412 0 obj +<< +/K [316 317] +/P 1233 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +413 0 obj +<< +/C /Pa7 +/K 318 +/P 1234 0 R +/Pg 14 0 R +/S /Tab._Versal_bold_sch +>> +endobj +414 0 obj +<< +/C /Pa8 +/K [319 320 415 0 R 322 416 0 R 324] +/P 1235 0 R +/Pg 14 0 R +/S /Tab._Lauftext_light_ +>> +endobj +415 0 obj +<< +/ActualText +/K 321 +/P 414 0 R +/Pg 14 0 R +/S /Span +>> +endobj +416 0 obj +<< +/ActualText +/K 323 +/P 414 0 R +/Pg 14 0 R +/S /Span +>> +endobj +417 0 obj +<< +/C /Pa9 +/K [325 326 327 328 329] +/P 1236 0 R +/Pg 14 0 R +/S /Tab._Lauftext_light_ +>> +endobj +418 0 obj +<< +/C /A5 +/K 330 +/P 1237 0 R +/Pg 14 0 R +/S /Span +>> +endobj +419 0 obj +<< +/C /A5 +/K 331 +/P 1237 0 R +/Pg 14 0 R +/S /Span +>> +endobj +420 0 obj +<< +/K [332 421 0 R 334 335] +/P 1238 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +421 0 obj +<< +/ActualText +/K 333 +/P 420 0 R +/Pg 14 0 R +/S /Span +>> +endobj +422 0 obj +<< +/C /A5 +/K 336 +/P 1239 0 R +/Pg 14 0 R +/S /Span +>> +endobj +423 0 obj +<< +/C /A5 +/K 337 +/P 1239 0 R +/Pg 14 0 R +/S /Span +>> +endobj +424 0 obj +<< +/K 338 +/P 1240 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +425 0 obj +<< +/C /A5 +/K 339 +/P 1241 0 R +/Pg 14 0 R +/S /Span +>> +endobj +426 0 obj +<< +/C /A5 +/K 340 +/P 1241 0 R +/Pg 14 0 R +/S /Span +>> +endobj +427 0 obj +<< +/K [341 428 0 R 343] +/P 1242 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +428 0 obj +<< +/ActualText +/K 342 +/P 427 0 R +/Pg 14 0 R +/S /Span +>> +endobj +429 0 obj +<< +/C /A5 +/K 344 +/P 1243 0 R +/Pg 14 0 R +/S /Span +>> +endobj +430 0 obj +<< +/C /A5 +/K 345 +/P 1243 0 R +/Pg 14 0 R +/S /Span +>> +endobj +431 0 obj +<< +/K [346 432 0 R 348] +/P 1244 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +432 0 obj +<< +/ActualText +/K 347 +/P 431 0 R +/Pg 14 0 R +/S /Span +>> +endobj +433 0 obj +<< +/C /A5 +/K 349 +/P 1245 0 R +/Pg 14 0 R +/S /Span +>> +endobj +434 0 obj +<< +/C /A5 +/K 350 +/P 1245 0 R +/Pg 14 0 R +/S /Span +>> +endobj +435 0 obj +<< +/K [351 436 0 R 353] +/P 1246 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +436 0 obj +<< +/ActualText +/K 352 +/P 435 0 R +/Pg 14 0 R +/S /Span +>> +endobj +437 0 obj +<< +/C /A5 +/K 354 +/P 1247 0 R +/Pg 14 0 R +/S /Span +>> +endobj +438 0 obj +<< +/C /A5 +/K 355 +/P 1247 0 R +/Pg 14 0 R +/S /Span +>> +endobj +439 0 obj +<< +/K [356 357] +/P 1248 0 R +/Pg 14 0 R +/S /LBody +>> +endobj +440 0 obj +<< +/C /Pa1 +/K 358 +/P 239 0 R +/Pg 15 0 R +/S /Zwischenhead_1 +>> +endobj +441 0 obj +<< +/C /Pa2 +/K [359 360 361] +/P 239 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +442 0 obj +<< +/C /Pa11 +/K [362 363 364] +/P 239 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +443 0 obj +<< +/C /Pa2 +/K 365 +/P 239 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +444 0 obj +<< +/C /Pa11 +/K 366 +/P 239 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +445 0 obj +<< +/C /Pa12 +/K 367 +/P 239 0 R +/Pg 15 0 R +/S /Zwischenhead_3 +>> +endobj +446 0 obj +<< +/C /Pa2 +/K [368 369 370 371 372 447 0 R 374 375 376 377 448 0 R 379 380] +/P 239 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +447 0 obj +<< +/ActualText +/K 373 +/P 446 0 R +/Pg 15 0 R +/S /Span +>> +endobj +448 0 obj +<< +/ActualText +/K 378 +/P 446 0 R +/Pg 15 0 R +/S /Span +>> +endobj +449 0 obj +<< +/C /Pa3 +/K [381 382 383 384 385 450 0 R 387 388] +/P 239 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +450 0 obj +<< +/ActualText +/K 386 +/P 449 0 R +/Pg 15 0 R +/S /Span +>> +endobj +451 0 obj +<< +/C /Pa3 +/K [389 390 391 392 393 394] +/P 239 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +452 0 obj +<< +/C /Pa3 +/K [395 396 397 398 399 400] +/P 239 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +453 0 obj +<< +/C /Pa3 +/K [401 402 403 454 0 R 405 << +/MCID 406 +/Pg 16 0 R +/Type /MCR +>> << +/MCID 407 +/Pg 16 0 R +/Type /MCR +>> << +/MCID 408 +/Pg 16 0 R +/Type /MCR +>> << +/MCID 409 +/Pg 16 0 R +/Type /MCR +>> << +/MCID 410 +/Pg 16 0 R +/Type /MCR +>> << +/MCID 411 +/Pg 16 0 R +/Type /MCR +>> << +/MCID 412 +/Pg 16 0 R +/Type /MCR +>> << +/MCID 413 +/Pg 16 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 15 0 R +/S /Lauftext +>> +endobj +454 0 obj +<< +/ActualText +/K 404 +/P 453 0 R +/Pg 15 0 R +/S /Span +>> +endobj +455 0 obj +<< +/C /Pa3 +/K [414 415 456 0 R 417 418 457 0 R 420 421 422 423] +/P 239 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +456 0 obj +<< +/ActualText +/K 416 +/P 455 0 R +/Pg 16 0 R +/S /Span +>> +endobj +457 0 obj +<< +/ActualText +/K 419 +/P 455 0 R +/Pg 16 0 R +/S /Span +>> +endobj +458 0 obj +<< +/C /Pa12 +/K 424 +/P 239 0 R +/Pg 16 0 R +/S /Zwischenhead_3 +>> +endobj +459 0 obj +<< +/C /Pa2 +/K [425 426 427 460 0 R 429 430 431 432 433 434 461 0 R 436 437 438 439 440 +441 442 443 444 445] +/P 239 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +460 0 obj +<< +/ActualText +/K 428 +/P 459 0 R +/Pg 16 0 R +/S /Span +>> +endobj +461 0 obj +<< +/ActualText +/K 435 +/P 459 0 R +/Pg 16 0 R +/S /Span +>> +endobj +462 0 obj +<< +/C /Pa3 +/K [446 447 463 0 R 449 450 451 452 453 454 455 456] +/P 239 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +463 0 obj +<< +/ActualText +/K 448 +/P 462 0 R +/Pg 16 0 R +/S /Span +>> +endobj +464 0 obj +<< +/C /Pa13 +/K [457 465 0 R 459 466 0 R 461] +/P 243 0 R +/Pg 16 0 R +/S /Einklinker-Text__rec +>> +endobj +465 0 obj +<< +/ActualText +/K 458 +/P 464 0 R +/Pg 16 0 R +/S /Span +>> +endobj +466 0 obj +<< +/ActualText +/K 460 +/P 464 0 R +/Pg 16 0 R +/S /Span +>> +endobj +467 0 obj +<< +/C /Pa12 +/K 462 +/P 239 0 R +/Pg 17 0 R +/S /Zwischenhead_3 +>> +endobj +468 0 obj +<< +/C /Pa2 +/K [463 469 0 R 465 466 470 0 R 468 469 470 471 472 473] +/P 239 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +469 0 obj +<< +/ActualText +/K 464 +/P 468 0 R +/Pg 17 0 R +/S /Span +>> +endobj +470 0 obj +<< +/ActualText +/K 467 +/P 468 0 R +/Pg 17 0 R +/S /Span +>> +endobj +471 0 obj +<< +/C /Pa3 +/K [474 475 472 0 R 477 478 479 480] +/P 239 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +472 0 obj +<< +/ActualText +/K 476 +/P 471 0 R +/Pg 17 0 R +/S /Span +>> +endobj +473 0 obj +<< +/C /Pa3 +/K [481 482 483 474 0 R 485 486 475 0 R 488] +/P 239 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +474 0 obj +<< +/ActualText +/K 484 +/P 473 0 R +/Pg 17 0 R +/S /Span +>> +endobj +475 0 obj +<< +/ActualText +/K 487 +/P 473 0 R +/Pg 17 0 R +/S /Span +>> +endobj +476 0 obj +<< +/C /Pa3 +/K [489 490 491 477 0 R 493 494 495 478 0 R 497 498] +/P 239 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +477 0 obj +<< +/ActualText +/K 492 +/P 476 0 R +/Pg 17 0 R +/S /Span +>> +endobj +478 0 obj +<< +/ActualText +/K 496 +/P 476 0 R +/Pg 17 0 R +/S /Span +>> +endobj +479 0 obj +<< +/C /Pa11 +/K 499 +/P 239 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +480 0 obj +<< +/C /Pa2 +/K [500 501 502 503 504 505 506] +/P 239 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +481 0 obj +<< +/C /Pa3 +/K [507 508 509 510 511] +/P 239 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +482 0 obj +<< +/C /Pa3 +/K [512 513 514 483 0 R 516 << +/MCID 517 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 518 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 519 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 520 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 521 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 522 +/Pg 18 0 R +/Type /MCR +>> << +/MCID 523 +/Pg 18 0 R +/Type /MCR +>> 484 0 R << +/MCID 525 +/Pg 18 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +483 0 obj +<< +/ActualText +/K 515 +/P 482 0 R +/Pg 17 0 R +/S /Span +>> +endobj +484 0 obj +<< +/ActualText +/K 524 +/P 482 0 R +/Pg 18 0 R +/S /Span +>> +endobj +485 0 obj +<< +/C /A5 +/K 526 +/P 1249 0 R +/Pg 18 0 R +/S /Span +>> +endobj +486 0 obj +<< +/C /A5 +/K 527 +/P 1249 0 R +/Pg 18 0 R +/S /Span +>> +endobj +487 0 obj +<< +/K [528 529 530 531 532 533] +/P 1250 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +488 0 obj +<< +/C /A5 +/K 534 +/P 1251 0 R +/Pg 18 0 R +/S /Span +>> +endobj +489 0 obj +<< +/C /A5 +/K 535 +/P 1251 0 R +/Pg 18 0 R +/S /Span +>> +endobj +490 0 obj +<< +/K [536 537 538 539] +/P 1252 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +491 0 obj +<< +/C /A5 +/K 540 +/P 1253 0 R +/Pg 18 0 R +/S /Span +>> +endobj +492 0 obj +<< +/C /A5 +/K 541 +/P 1253 0 R +/Pg 18 0 R +/S /Span +>> +endobj +493 0 obj +<< +/K [542 543 494 0 R 545] +/P 1254 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +494 0 obj +<< +/ActualText +/K 544 +/P 493 0 R +/Pg 18 0 R +/S /Span +>> +endobj +495 0 obj +<< +/C /A5 +/K 546 +/P 1255 0 R +/Pg 18 0 R +/S /Span +>> +endobj +496 0 obj +<< +/C /A5 +/K 547 +/P 1255 0 R +/Pg 18 0 R +/S /Span +>> +endobj +497 0 obj +<< +/K [548 498 0 R 550 551 552] +/P 1256 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +498 0 obj +<< +/ActualText +/K 549 +/P 497 0 R +/Pg 18 0 R +/S /Span +>> +endobj +499 0 obj +<< +/C /A5 +/K 553 +/P 1257 0 R +/Pg 18 0 R +/S /Span +>> +endobj +500 0 obj +<< +/C /A5 +/K 554 +/P 1257 0 R +/Pg 18 0 R +/S /Span +>> +endobj +501 0 obj +<< +/K [555 556] +/P 1258 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +502 0 obj +<< +/C /A5 +/K 557 +/P 1259 0 R +/Pg 18 0 R +/S /Span +>> +endobj +503 0 obj +<< +/C /A5 +/K 558 +/P 1259 0 R +/Pg 18 0 R +/S /Span +>> +endobj +504 0 obj +<< +/K [559 560 561 562 505 0 R 564 565] +/P 1260 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +505 0 obj +<< +/ActualText +/K 563 +/P 504 0 R +/Pg 18 0 R +/S /Span +>> +endobj +506 0 obj +<< +/C /A5 +/K 566 +/P 1261 0 R +/Pg 18 0 R +/S /Span +>> +endobj +507 0 obj +<< +/C /A5 +/K 567 +/P 1261 0 R +/Pg 18 0 R +/S /Span +>> +endobj +508 0 obj +<< +/K [568 569 570 571 572] +/P 1262 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +509 0 obj +<< +/C /A5 +/K 573 +/P 1263 0 R +/Pg 18 0 R +/S /Span +>> +endobj +510 0 obj +<< +/C /A5 +/K 574 +/P 1263 0 R +/Pg 18 0 R +/S /Span +>> +endobj +511 0 obj +<< +/K [575 576 577 578] +/P 1264 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +512 0 obj +<< +/C /A5 +/K 579 +/P 1265 0 R +/Pg 18 0 R +/S /Span +>> +endobj +513 0 obj +<< +/C /A5 +/K 580 +/P 1265 0 R +/Pg 18 0 R +/S /Span +>> +endobj +514 0 obj +<< +/K [581 582] +/P 1266 0 R +/Pg 18 0 R +/S /LBody +>> +endobj +515 0 obj +<< +/C /Pa11 +/K 583 +/P 239 0 R +/Pg 18 0 R +/S /Zwischenhead_2 +>> +endobj +516 0 obj +<< +/C /Pa2 +/K [584 517 0 R 586 587 588 589 590 << +/MCID 591 +/Pg 19 0 R +/Type /MCR +>> << +/MCID 592 +/Pg 19 0 R +/Type /MCR +>> 518 0 R << +/MCID 594 +/Pg 19 0 R +/Type /MCR +>> << +/MCID 595 +/Pg 19 0 R +/Type /MCR +>> << +/MCID 596 +/Pg 19 0 R +/Type /MCR +>> 519 0 R << +/MCID 598 +/Pg 19 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +517 0 obj +<< +/ActualText +/K 585 +/P 516 0 R +/Pg 18 0 R +/S /Span +>> +endobj +518 0 obj +<< +/ActualText +/K 593 +/P 516 0 R +/Pg 19 0 R +/S /Span +>> +endobj +519 0 obj +<< +/ActualText +/K 597 +/P 516 0 R +/Pg 19 0 R +/S /Span +>> +endobj +520 0 obj +<< +/C /A5 +/K 599 +/P 1267 0 R +/Pg 19 0 R +/S /Span +>> +endobj +521 0 obj +<< +/K 600 +/P 1268 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +522 0 obj +<< +/C /A5 +/K 601 +/P 1269 0 R +/Pg 19 0 R +/S /Span +>> +endobj +523 0 obj +<< +/K [602 524 0 R 604] +/P 1270 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +524 0 obj +<< +/ActualText +/K 603 +/P 523 0 R +/Pg 19 0 R +/S /Span +>> +endobj +525 0 obj +<< +/C /A5 +/K 605 +/P 1271 0 R +/Pg 19 0 R +/S /Span +>> +endobj +526 0 obj +<< +/K [606 527 0 R 608] +/P 1272 0 R +/Pg 19 0 R +/S /LBody +>> +endobj +527 0 obj +<< +/ActualText +/K 607 +/P 526 0 R +/Pg 19 0 R +/S /Span +>> +endobj +528 0 obj +<< +/C /Pa3 +/K [609 529 0 R 611 612] +/P 239 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +529 0 obj +<< +/ActualText +/K 610 +/P 528 0 R +/Pg 19 0 R +/S /Span +>> +endobj +530 0 obj +<< +/C /Pa11 +/K 613 +/P 239 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +531 0 obj +<< +/C /Pa2 +/K [614 615 616 617 618 619] +/P 239 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +532 0 obj +<< +/C /Pa11 +/K 620 +/P 239 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +533 0 obj +<< +/C /Pa12 +/K 621 +/P 239 0 R +/Pg 19 0 R +/S /Zwischenhead_3 +>> +endobj +534 0 obj +<< +/C /Pa2 +/K [622 623 624 625 626 535 0 R 628 629] +/P 239 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +535 0 obj +<< +/ActualText +/K 627 +/P 534 0 R +/Pg 19 0 R +/S /Span +>> +endobj +536 0 obj +<< +/C /Pa12 +/K 630 +/P 239 0 R +/Pg 19 0 R +/S /Zwischenhead_3 +>> +endobj +537 0 obj +<< +/C /Pa2 +/K [631 538 0 R 633 634 539 0 R 636 637 540 0 R 639 640 641 << +/MCID 642 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 643 +/Pg 20 0 R +/Type /MCR +>> 541 0 R << +/MCID 645 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 646 +/Pg 20 0 R +/Type /MCR +>> +<< +/MCID 647 +/Pg 20 0 R +/Type /MCR +>> 1273 0 R << +/MCID 649 +/Pg 20 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +538 0 obj +<< +/ActualText +/K 632 +/P 537 0 R +/Pg 19 0 R +/S /Span +>> +endobj +539 0 obj +<< +/ActualText +/K 635 +/P 537 0 R +/Pg 19 0 R +/S /Span +>> +endobj +540 0 obj +<< +/ActualText +/K 638 +/P 537 0 R +/Pg 19 0 R +/S /Span +>> +endobj +541 0 obj +<< +/ActualText +/K 644 +/P 537 0 R +/Pg 20 0 R +/S /Span +>> +endobj +542 0 obj +<< +/C /A4 +/K 648 +/P 1274 0 R +/Pg 20 0 R +/S /Span +>> +endobj +543 0 obj +<< +/C /Pa7 +/K [650 651] +/P 1275 0 R +/Pg 20 0 R +/S /Tab._Versal_bold_wei +>> +endobj +544 0 obj +<< +/C /A5 +/K 652 +/P 1276 0 R +/Pg 20 0 R +/S /Span +>> +endobj +545 0 obj +<< +/C /A5 +/K 653 +/P 1276 0 R +/Pg 20 0 R +/S /Span +>> +endobj +546 0 obj +<< +/C /A5 +/K 654 +/P 1276 0 R +/Pg 20 0 R +/S /Span +>> +endobj +547 0 obj +<< +/C /A5 +/K 655 +/P 1276 0 R +/Pg 20 0 R +/S /Span +>> +endobj +548 0 obj +<< +/K [656 657] +/P 1277 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +549 0 obj +<< +/C /A5 +/K 658 +/P 1278 0 R +/Pg 20 0 R +/S /Span +>> +endobj +550 0 obj +<< +/C /A5 +/K 659 +/P 1278 0 R +/Pg 20 0 R +/S /Span +>> +endobj +551 0 obj +<< +/K [660 661 662] +/P 1279 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +552 0 obj +<< +/C /A5 +/K 663 +/P 1280 0 R +/Pg 20 0 R +/S /Span +>> +endobj +553 0 obj +<< +/C /A5 +/K 664 +/P 1280 0 R +/Pg 20 0 R +/S /Span +>> +endobj +554 0 obj +<< +/K [665 555 0 R 667 668 669 670 671 672 673 674 675] +/P 1281 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +555 0 obj +<< +/ActualText +/K 666 +/P 554 0 R +/Pg 20 0 R +/S /Span +>> +endobj +556 0 obj +<< +/C /A5 +/K 676 +/P 1282 0 R +/Pg 20 0 R +/S /Span +>> +endobj +557 0 obj +<< +/C /A5 +/K 677 +/P 1282 0 R +/Pg 20 0 R +/S /Span +>> +endobj +558 0 obj +<< +/K [678 559 0 R 680 681 682 683] +/P 1283 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +559 0 obj +<< +/ActualText +/K 679 +/P 558 0 R +/Pg 20 0 R +/S /Span +>> +endobj +560 0 obj +<< +/C /Pa19 +/K [684 685] +/P 1284 0 R +/Pg 20 0 R +/S /Kastenlauftext +>> +endobj +561 0 obj +<< +/C /A5 +/K 686 +/P 1285 0 R +/Pg 20 0 R +/S /Span +>> +endobj +562 0 obj +<< +/C /A5 +/K 687 +/P 1285 0 R +/Pg 20 0 R +/S /Span +>> +endobj +563 0 obj +<< +/K [688 689 690 691 692 693] +/P 1286 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +564 0 obj +<< +/C /A5 +/K 694 +/P 1287 0 R +/Pg 20 0 R +/S /Span +>> +endobj +565 0 obj +<< +/C /A5 +/K 695 +/P 1287 0 R +/Pg 20 0 R +/S /Span +>> +endobj +566 0 obj +<< +/K [696 697] +/P 1288 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +567 0 obj +<< +/C /A5 +/K 698 +/P 1289 0 R +/Pg 20 0 R +/S /Span +>> +endobj +568 0 obj +<< +/C /A5 +/K 699 +/P 1289 0 R +/Pg 20 0 R +/S /Span +>> +endobj +569 0 obj +<< +/K [700 701] +/P 1290 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +570 0 obj +<< +/C /Pa19 +/K 702 +/P 1284 0 R +/Pg 20 0 R +/S /Kastenlauftext +>> +endobj +571 0 obj +<< +/C /A5 +/K 703 +/P 1291 0 R +/Pg 20 0 R +/S /Span +>> +endobj +572 0 obj +<< +/C /A5 +/K 704 +/P 1291 0 R +/Pg 20 0 R +/S /Span +>> +endobj +573 0 obj +<< +/K 705 +/P 1292 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +574 0 obj +<< +/C /A5 +/K 706 +/P 1293 0 R +/Pg 20 0 R +/S /Span +>> +endobj +575 0 obj +<< +/C /A5 +/K 707 +/P 1293 0 R +/Pg 20 0 R +/S /Span +>> +endobj +576 0 obj +<< +/K 708 +/P 1294 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +577 0 obj +<< +/C /A5 +/K 709 +/P 1295 0 R +/Pg 20 0 R +/S /Span +>> +endobj +578 0 obj +<< +/C /A5 +/K 710 +/P 1295 0 R +/Pg 20 0 R +/S /Span +>> +endobj +579 0 obj +<< +/K 711 +/P 1296 0 R +/Pg 20 0 R +/S /LBody +>> +endobj +580 0 obj +<< +/C /Pa11 +/K 712 +/P 239 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +581 0 obj +<< +/C /Pa2 +/K [713 714 582 0 R 716 583 0 R 718 719 720] +/P 239 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +582 0 obj +<< +/ActualText +/K 715 +/P 581 0 R +/Pg 21 0 R +/S /Span +>> +endobj +583 0 obj +<< +/ActualText +/K 717 +/P 581 0 R +/Pg 21 0 R +/S /Span +>> +endobj +584 0 obj +<< +/C /Pa11 +/K 721 +/P 239 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +585 0 obj +<< +/C /Pa2 +/K [722 586 0 R 724 725 726 587 0 R 728 729] +/P 239 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +586 0 obj +<< +/ActualText +/K 723 +/P 585 0 R +/Pg 21 0 R +/S /Span +>> +endobj +587 0 obj +<< +/ActualText +/K 727 +/P 585 0 R +/Pg 21 0 R +/S /Span +>> +endobj +588 0 obj +<< +/C /Pa3 +/K [730 731 732 589 0 R 734 735 736] +/P 239 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +589 0 obj +<< +/ActualText +/K 733 +/P 588 0 R +/Pg 21 0 R +/S /Span +>> +endobj +590 0 obj +<< +/C /Pa11 +/K 737 +/P 239 0 R +/Pg 21 0 R +/S /Zwischenhead_2 +>> +endobj +591 0 obj +<< +/C /Pa12 +/K 738 +/P 239 0 R +/Pg 21 0 R +/S /Zwischenhead_3 +>> +endobj +592 0 obj +<< +/C /Pa2 +/K [739 593 0 R 741 742 743 744 745 746 747 748] +/P 239 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +593 0 obj +<< +/ActualText +/K 740 +/P 592 0 R +/Pg 21 0 R +/S /Span +>> +endobj +594 0 obj +<< +/C /Pa12 +/K 749 +/P 239 0 R +/Pg 21 0 R +/S /Zwischenhead_3 +>> +endobj +595 0 obj +<< +/C /Pa2 +/K [750 751 752 753 754 755 756 757 596 0 R 759 760] +/P 239 0 R +/Pg 21 0 R +/S /Lauftext_1._Abs +>> +endobj +596 0 obj +<< +/ActualText +/K 758 +/P 595 0 R +/Pg 21 0 R +/S /Span +>> +endobj +597 0 obj +<< +/C /Pa12 +/K 761 +/P 239 0 R +/Pg 22 0 R +/S /Zwischenhead_3 +>> +endobj +598 0 obj +<< +/C /Pa2 +/K [762 763 764 765 766 767 768 599 0 R 770 771 772 600 0 R 774 601 0 R 776 602 0 R +778 779] +/P 239 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +599 0 obj +<< +/ActualText +/K 769 +/P 598 0 R +/Pg 22 0 R +/S /Span +>> +endobj +600 0 obj +<< +/ActualText +/K 773 +/P 598 0 R +/Pg 22 0 R +/S /Span +>> +endobj +601 0 obj +<< +/ActualText +/K 775 +/P 598 0 R +/Pg 22 0 R +/S /Span +>> +endobj +602 0 obj +<< +/ActualText +/K 777 +/P 598 0 R +/Pg 22 0 R +/S /Span +>> +endobj +603 0 obj +<< +/C /Pa1 +/K 780 +/P 239 0 R +/Pg 22 0 R +/S /Zwischenhead_1 +>> +endobj +604 0 obj +<< +/C /Pa2 +/K [781 605 0 R 783 784 785 786] +/P 239 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +605 0 obj +<< +/ActualText +/K 782 +/P 604 0 R +/Pg 22 0 R +/S /Span +>> +endobj +606 0 obj +<< +/C /Pa11 +/K 787 +/P 239 0 R +/Pg 22 0 R +/S /Zwischenhead_2 +>> +endobj +607 0 obj +<< +/C /Pa2 +/K [788 608 0 R 790 791] +/P 239 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +608 0 obj +<< +/ActualText +/K 789 +/P 607 0 R +/Pg 22 0 R +/S /Span +>> +endobj +609 0 obj +<< +/C /Pa3 +/K [792 793 794 795 796 797 798 799 610 0 R 801] +/P 239 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +610 0 obj +<< +/ActualText +/K 800 +/P 609 0 R +/Pg 22 0 R +/S /Span +>> +endobj +611 0 obj +<< +/C /Pa3 +/K [802 803 804 805 806 807 612 0 R 809 810 811 << +/MCID 812 +/Pg 23 0 R +/Type /MCR +>> 613 0 R << +/MCID 814 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 815 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 816 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 817 +/Pg 23 0 R +/Type /MCR +>> +<< +/MCID 818 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 819 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 820 +/Pg 23 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +612 0 obj +<< +/ActualText +/K 808 +/P 611 0 R +/Pg 22 0 R +/S /Span +>> +endobj +613 0 obj +<< +/ActualText +/K 813 +/P 611 0 R +/Pg 23 0 R +/S /Span +>> +endobj +614 0 obj +<< +/C /Pa3 +/K 821 +/P 239 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +615 0 obj +<< +/C /A5 +/K 822 +/P 1297 0 R +/Pg 23 0 R +/S /Span +>> +endobj +616 0 obj +<< +/C /A5 +/K 823 +/P 1297 0 R +/Pg 23 0 R +/S /Span +>> +endobj +617 0 obj +<< +/K 824 +/P 1298 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +618 0 obj +<< +/C /A5 +/K 825 +/P 1299 0 R +/Pg 23 0 R +/S /Span +>> +endobj +619 0 obj +<< +/C /A5 +/K 826 +/P 1299 0 R +/Pg 23 0 R +/S /Span +>> +endobj +620 0 obj +<< +/K 827 +/P 1300 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +621 0 obj +<< +/C /A5 +/K 828 +/P 1301 0 R +/Pg 23 0 R +/S /Span +>> +endobj +622 0 obj +<< +/C /A5 +/K 829 +/P 1301 0 R +/Pg 23 0 R +/S /Span +>> +endobj +623 0 obj +<< +/K 830 +/P 1302 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +624 0 obj +<< +/C /A5 +/K 831 +/P 1303 0 R +/Pg 23 0 R +/S /Span +>> +endobj +625 0 obj +<< +/C /A5 +/K 832 +/P 1303 0 R +/Pg 23 0 R +/S /Span +>> +endobj +626 0 obj +<< +/K 833 +/P 1304 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +627 0 obj +<< +/C /A5 +/K 834 +/P 1305 0 R +/Pg 23 0 R +/S /Span +>> +endobj +628 0 obj +<< +/C /A5 +/K 835 +/P 1305 0 R +/Pg 23 0 R +/S /Span +>> +endobj +629 0 obj +<< +/K 836 +/P 1306 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +630 0 obj +<< +/C /A5 +/K 837 +/P 1307 0 R +/Pg 23 0 R +/S /Span +>> +endobj +631 0 obj +<< +/C /A5 +/K 838 +/P 1307 0 R +/Pg 23 0 R +/S /Span +>> +endobj +632 0 obj +<< +/K 839 +/P 1308 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +633 0 obj +<< +/C /A5 +/K 840 +/P 1309 0 R +/Pg 23 0 R +/S /Span +>> +endobj +634 0 obj +<< +/C /A5 +/K 841 +/P 1309 0 R +/Pg 23 0 R +/S /Span +>> +endobj +635 0 obj +<< +/K 842 +/P 1310 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +636 0 obj +<< +/C /A5 +/K 843 +/P 1311 0 R +/Pg 23 0 R +/S /Span +>> +endobj +637 0 obj +<< +/C /A5 +/K 844 +/P 1311 0 R +/Pg 23 0 R +/S /Span +>> +endobj +638 0 obj +<< +/K [845 639 0 R 847] +/P 1312 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +639 0 obj +<< +/ActualText +/K 846 +/P 638 0 R +/Pg 23 0 R +/S /Span +>> +endobj +640 0 obj +<< +/C /A5 +/K 848 +/P 1313 0 R +/Pg 23 0 R +/S /Span +>> +endobj +641 0 obj +<< +/C /A5 +/K 849 +/P 1313 0 R +/Pg 23 0 R +/S /Span +>> +endobj +642 0 obj +<< +/K [850 851 852 853 854 855] +/P 1314 0 R +/Pg 23 0 R +/S /LBody +>> +endobj +643 0 obj +<< +/C /Pa3 +/K [856 857 858 859 644 0 R 861 862 863 645 0 R 865 646 0 R 867 868 647 0 R 870 871 +872] +/P 239 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +644 0 obj +<< +/ActualText +/K 860 +/P 643 0 R +/Pg 23 0 R +/S /Span +>> +endobj +645 0 obj +<< +/ActualText +/K 864 +/P 643 0 R +/Pg 23 0 R +/S /Span +>> +endobj +646 0 obj +<< +/ActualText +/K 866 +/P 643 0 R +/Pg 23 0 R +/S /Span +>> +endobj +647 0 obj +<< +/ActualText +/K 869 +/P 643 0 R +/Pg 23 0 R +/S /Span +>> +endobj +648 0 obj +<< +/C /Pa3 +/K [873 649 0 R 875 876 650 0 R 878 651 0 R 880 881 882] +/P 239 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +649 0 obj +<< +/ActualText +/K 874 +/P 648 0 R +/Pg 23 0 R +/S /Span +>> +endobj +650 0 obj +<< +/ActualText +/K 877 +/P 648 0 R +/Pg 23 0 R +/S /Span +>> +endobj +651 0 obj +<< +/ActualText +/K 879 +/P 648 0 R +/Pg 23 0 R +/S /Span +>> +endobj +652 0 obj +<< +/C /Pa13 +/K [883 884 885 653 0 R 887 888] +/P 245 0 R +/Pg 23 0 R +/S /Einklinker-Text__rec +>> +endobj +653 0 obj +<< +/ActualText +/K 886 +/P 652 0 R +/Pg 23 0 R +/S /Span +>> +endobj +654 0 obj +<< +/C /Pa12 +/K 889 +/P 239 0 R +/Pg 24 0 R +/S /Zwischenhead_3 +>> +endobj +655 0 obj +<< +/C /Pa2 +/K [890 656 0 R 892 893 657 0 R 895 896 897 898 899 900 901 902 903 658 0 R 905 +906 659 0 R 908 660 0 R 910 911] +/P 239 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +656 0 obj +<< +/ActualText +/K 891 +/P 655 0 R +/Pg 24 0 R +/S /Span +>> +endobj +657 0 obj +<< +/ActualText +/K 894 +/P 655 0 R +/Pg 24 0 R +/S /Span +>> +endobj +658 0 obj +<< +/ActualText +/K 904 +/P 655 0 R +/Pg 24 0 R +/S /Span +>> +endobj +659 0 obj +<< +/ActualText +/K 907 +/P 655 0 R +/Pg 24 0 R +/S /Span +>> +endobj +660 0 obj +<< +/ActualText +/K 909 +/P 655 0 R +/Pg 24 0 R +/S /Span +>> +endobj +661 0 obj +<< +/C /Pa3 +/K [912 913 914] +/P 239 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +662 0 obj +<< +/C /A5 +/K 915 +/P 1315 0 R +/Pg 24 0 R +/S /Span +>> +endobj +663 0 obj +<< +/C /A5 +/K 916 +/P 1315 0 R +/Pg 24 0 R +/S /Span +>> +endobj +664 0 obj +<< +/K [917 918 919] +/P 1316 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +665 0 obj +<< +/C /A5 +/K 920 +/P 1317 0 R +/Pg 24 0 R +/S /Span +>> +endobj +666 0 obj +<< +/C /A5 +/K 921 +/P 1317 0 R +/Pg 24 0 R +/S /Span +>> +endobj +667 0 obj +<< +/K [922 923] +/P 1318 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +668 0 obj +<< +/C /A5 +/K 924 +/P 1319 0 R +/Pg 24 0 R +/S /Span +>> +endobj +669 0 obj +<< +/C /A5 +/K 925 +/P 1319 0 R +/Pg 24 0 R +/S /Span +>> +endobj +670 0 obj +<< +/K [926 927] +/P 1320 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +671 0 obj +<< +/C /A5 +/K 928 +/P 1321 0 R +/Pg 24 0 R +/S /Span +>> +endobj +672 0 obj +<< +/C /A5 +/K 929 +/P 1321 0 R +/Pg 24 0 R +/S /Span +>> +endobj +673 0 obj +<< +/K 930 +/P 1322 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +674 0 obj +<< +/C /A5 +/K 931 +/P 1323 0 R +/Pg 24 0 R +/S /Span +>> +endobj +675 0 obj +<< +/C /A5 +/K 932 +/P 1323 0 R +/Pg 24 0 R +/S /Span +>> +endobj +676 0 obj +<< +/K 933 +/P 1324 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +677 0 obj +<< +/C /A5 +/K 934 +/P 1325 0 R +/Pg 24 0 R +/S /Span +>> +endobj +678 0 obj +<< +/C /A5 +/K 935 +/P 1325 0 R +/Pg 24 0 R +/S /Span +>> +endobj +679 0 obj +<< +/K 936 +/P 1326 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +680 0 obj +<< +/C /A5 +/K 937 +/P 1327 0 R +/Pg 24 0 R +/S /Span +>> +endobj +681 0 obj +<< +/C /A5 +/K 938 +/P 1327 0 R +/Pg 24 0 R +/S /Span +>> +endobj +682 0 obj +<< +/K 939 +/P 1328 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +683 0 obj +<< +/C /A5 +/K 940 +/P 1329 0 R +/Pg 24 0 R +/S /Span +>> +endobj +684 0 obj +<< +/C /A5 +/K 941 +/P 1329 0 R +/Pg 24 0 R +/S /Span +>> +endobj +685 0 obj +<< +/K 942 +/P 1330 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +686 0 obj +<< +/C /A5 +/K 943 +/P 1331 0 R +/Pg 24 0 R +/S /Span +>> +endobj +687 0 obj +<< +/C /A5 +/K 944 +/P 1331 0 R +/Pg 24 0 R +/S /Span +>> +endobj +688 0 obj +<< +/K 945 +/P 1332 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +689 0 obj +<< +/C /A5 +/K 946 +/P 1333 0 R +/Pg 24 0 R +/S /Span +>> +endobj +690 0 obj +<< +/C /A5 +/K 947 +/P 1333 0 R +/Pg 24 0 R +/S /Span +>> +endobj +691 0 obj +<< +/K 948 +/P 1334 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +692 0 obj +<< +/C /A5 +/K 949 +/P 1335 0 R +/Pg 24 0 R +/S /Span +>> +endobj +693 0 obj +<< +/C /A5 +/K 950 +/P 1335 0 R +/Pg 24 0 R +/S /Span +>> +endobj +694 0 obj +<< +/K 951 +/P 1336 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +695 0 obj +<< +/C /Pa3 +/K [952 696 0 R 954 955 697 0 R 957 958 959 960 961 962 963 964 965] +/P 239 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +696 0 obj +<< +/ActualText +/K 953 +/P 695 0 R +/Pg 24 0 R +/S /Span +>> +endobj +697 0 obj +<< +/ActualText +/K 956 +/P 695 0 R +/Pg 24 0 R +/S /Span +>> +endobj +698 0 obj +<< +/C /Pa3 +/K [966 967 968 699 0 R 970] +/P 239 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +699 0 obj +<< +/ActualText +/K 969 +/P 698 0 R +/Pg 25 0 R +/S /Span +>> +endobj +700 0 obj +<< +/C /Pa11 +/K 971 +/P 239 0 R +/Pg 25 0 R +/S /Zwischenhead_2 +>> +endobj +701 0 obj +<< +/C /Pa2 +/K [972 973] +/P 239 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +702 0 obj +<< +/C /A5 +/K 974 +/P 1337 0 R +/Pg 25 0 R +/S /Span +>> +endobj +703 0 obj +<< +/C /A5 +/K 975 +/P 1337 0 R +/Pg 25 0 R +/S /Span +>> +endobj +704 0 obj +<< +/K 976 +/P 1338 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +705 0 obj +<< +/C /A5 +/K 977 +/P 1339 0 R +/Pg 25 0 R +/S /Span +>> +endobj +706 0 obj +<< +/C /A5 +/K 978 +/P 1339 0 R +/Pg 25 0 R +/S /Span +>> +endobj +707 0 obj +<< +/K [979 708 0 R 981] +/P 1340 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +708 0 obj +<< +/ActualText +/K 980 +/P 707 0 R +/Pg 25 0 R +/S /Span +>> +endobj +709 0 obj +<< +/C /A5 +/K 982 +/P 1341 0 R +/Pg 25 0 R +/S /Span +>> +endobj +710 0 obj +<< +/C /A5 +/K 983 +/P 1341 0 R +/Pg 25 0 R +/S /Span +>> +endobj +711 0 obj +<< +/K [984 985] +/P 1342 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +712 0 obj +<< +/C /A5 +/K 986 +/P 1343 0 R +/Pg 25 0 R +/S /Span +>> +endobj +713 0 obj +<< +/C /A5 +/K 987 +/P 1343 0 R +/Pg 25 0 R +/S /Span +>> +endobj +714 0 obj +<< +/K 988 +/P 1344 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +715 0 obj +<< +/C /A5 +/K 989 +/P 1345 0 R +/Pg 25 0 R +/S /Span +>> +endobj +716 0 obj +<< +/C /A5 +/K 990 +/P 1345 0 R +/Pg 25 0 R +/S /Span +>> +endobj +717 0 obj +<< +/K [991 992] +/P 1346 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +718 0 obj +<< +/C /A5 +/K 993 +/P 1347 0 R +/Pg 25 0 R +/S /Span +>> +endobj +719 0 obj +<< +/C /A5 +/K 994 +/P 1347 0 R +/Pg 25 0 R +/S /Span +>> +endobj +720 0 obj +<< +/K [995 996 721 0 R 998] +/P 1348 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +721 0 obj +<< +/ActualText +/K 997 +/P 720 0 R +/Pg 25 0 R +/S /Span +>> +endobj +722 0 obj +<< +/C /A5 +/K 999 +/P 1349 0 R +/Pg 25 0 R +/S /Span +>> +endobj +723 0 obj +<< +/C /A5 +/K 1000 +/P 1349 0 R +/Pg 25 0 R +/S /Span +>> +endobj +724 0 obj +<< +/K 1001 +/P 1350 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +725 0 obj +<< +/C /A5 +/K 1002 +/P 1351 0 R +/Pg 25 0 R +/S /Span +>> +endobj +726 0 obj +<< +/C /A5 +/K 1003 +/P 1351 0 R +/Pg 25 0 R +/S /Span +>> +endobj +727 0 obj +<< +/K 1004 +/P 1352 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +728 0 obj +<< +/C /A5 +/K 1005 +/P 1353 0 R +/Pg 25 0 R +/S /Span +>> +endobj +729 0 obj +<< +/C /A5 +/K 1006 +/P 1353 0 R +/Pg 25 0 R +/S /Span +>> +endobj +730 0 obj +<< +/K 1007 +/P 1354 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +731 0 obj +<< +/C /A5 +/K 1008 +/P 1355 0 R +/Pg 25 0 R +/S /Span +>> +endobj +732 0 obj +<< +/C /A5 +/K 1009 +/P 1355 0 R +/Pg 25 0 R +/S /Span +>> +endobj +733 0 obj +<< +/K 1010 +/P 1356 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +734 0 obj +<< +/C /A5 +/K 1011 +/P 1357 0 R +/Pg 25 0 R +/S /Span +>> +endobj +735 0 obj +<< +/C /A5 +/K 1012 +/P 1357 0 R +/Pg 25 0 R +/S /Span +>> +endobj +736 0 obj +<< +/K 1013 +/P 1358 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +737 0 obj +<< +/C /Pa3 +/K [1014 1015 1016 1017 1018 1019] +/P 239 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +738 0 obj +<< +/C /Pa3 +/K [1020 1021 1022 739 0 R 1024 1025 1026 740 0 R 1028 1029 1030] +/P 239 0 R +/Pg 25 0 R +/S /Lauftext +>> +endobj +739 0 obj +<< +/ActualText +/K 1023 +/P 738 0 R +/Pg 25 0 R +/S /Span +>> +endobj +740 0 obj +<< +/ActualText +/K 1027 +/P 738 0 R +/Pg 25 0 R +/S /Span +>> +endobj +741 0 obj +<< +/C /Pa11 +/K 1031 +/P 239 0 R +/Pg 25 0 R +/S /Zwischenhead_2 +>> +endobj +742 0 obj +<< +/C /Pa2 +/K [1032 743 0 R 1034 1035 744 0 R 1037 << +/MCID 1038 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1039 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1040 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1041 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1042 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1043 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1044 +/Pg 26 0 R +/Type /MCR +>> << +/MCID 1045 +/Pg 26 0 R +/Type /MCR +>> 745 0 R << +/MCID 1047 +/Pg 26 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 25 0 R +/S /Lauftext_1._Abs +>> +endobj +743 0 obj +<< +/ActualText +/K 1033 +/P 742 0 R +/Pg 25 0 R +/S /Span +>> +endobj +744 0 obj +<< +/ActualText +/K 1036 +/P 742 0 R +/Pg 25 0 R +/S /Span +>> +endobj +745 0 obj +<< +/ActualText +/K 1046 +/P 742 0 R +/Pg 26 0 R +/S /Span +>> +endobj +746 0 obj +<< +/C /Pa3 +/K [1048 1049 747 0 R 1051 1052 1053 1054 1055 1056 1057] +/P 239 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +747 0 obj +<< +/ActualText +/K 1050 +/P 746 0 R +/Pg 26 0 R +/S /Span +>> +endobj +748 0 obj +<< +/C /Pa3 +/K [1058 1059 1060 1061 1062 1063 1064] +/P 239 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +749 0 obj +<< +/C /Pa11 +/K 1065 +/P 239 0 R +/Pg 26 0 R +/S /Zwischenhead_2 +>> +endobj +750 0 obj +<< +/C /Pa2 +/K [1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 751 0 R 1077 1078 1079 1080 1081] +/P 239 0 R +/Pg 26 0 R +/S /Lauftext_1._Abs +>> +endobj +751 0 obj +<< +/ActualText +/K 1076 +/P 750 0 R +/Pg 26 0 R +/S /Span +>> +endobj +752 0 obj +<< +/C /Pa3 +/K [1082 1083 1084 1085 1086 1087] +/P 239 0 R +/Pg 26 0 R +/S /Lauftext +>> +endobj +753 0 obj +<< +/C /A5 +/K 1123 +/P 1359 0 R +/Pg 28 0 R +/S /Span +>> +endobj +754 0 obj +<< +/C /A5 +/K 1124 +/P 1359 0 R +/Pg 28 0 R +/S /Span +>> +endobj +755 0 obj +<< +/K [1125 1126] +/P 1360 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +756 0 obj +<< +/C /A5 +/K 1127 +/P 1361 0 R +/Pg 28 0 R +/S /Span +>> +endobj +757 0 obj +<< +/C /A5 +/K 1128 +/P 1361 0 R +/Pg 28 0 R +/S /Span +>> +endobj +758 0 obj +<< +/K 1129 +/P 1362 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +759 0 obj +<< +/C /A5 +/K 1130 +/P 1363 0 R +/Pg 28 0 R +/S /Span +>> +endobj +760 0 obj +<< +/C /A5 +/K 1131 +/P 1363 0 R +/Pg 28 0 R +/S /Span +>> +endobj +761 0 obj +<< +/K 1132 +/P 1364 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +762 0 obj +<< +/C /Pa3 +/K 1133 +/P 239 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +763 0 obj +<< +/C /A5 +/K 1134 +/P 1365 0 R +/Pg 28 0 R +/S /Span +>> +endobj +764 0 obj +<< +/C /A5 +/K 1135 +/P 1365 0 R +/Pg 28 0 R +/S /Span +>> +endobj +765 0 obj +<< +/K 1136 +/P 1366 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +766 0 obj +<< +/C /A5 +/K 1137 +/P 1367 0 R +/Pg 28 0 R +/S /Span +>> +endobj +767 0 obj +<< +/C /A5 +/K 1138 +/P 1367 0 R +/Pg 28 0 R +/S /Span +>> +endobj +768 0 obj +<< +/K 1139 +/P 1368 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +769 0 obj +<< +/C /A5 +/K 1140 +/P 1369 0 R +/Pg 28 0 R +/S /Span +>> +endobj +770 0 obj +<< +/C /A5 +/K 1141 +/P 1369 0 R +/Pg 28 0 R +/S /Span +>> +endobj +771 0 obj +<< +/K 1142 +/P 1370 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +772 0 obj +<< +/C /A5 +/K 1143 +/P 1371 0 R +/Pg 28 0 R +/S /Span +>> +endobj +773 0 obj +<< +/C /A5 +/K 1144 +/P 1371 0 R +/Pg 28 0 R +/S /Span +>> +endobj +774 0 obj +<< +/K 1145 +/P 1372 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +775 0 obj +<< +/C /A5 +/K 1146 +/P 1373 0 R +/Pg 28 0 R +/S /Span +>> +endobj +776 0 obj +<< +/C /A5 +/K 1147 +/P 1373 0 R +/Pg 28 0 R +/S /Span +>> +endobj +777 0 obj +<< +/K 1148 +/P 1374 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +778 0 obj +<< +/C /A5 +/K 1149 +/P 1375 0 R +/Pg 28 0 R +/S /Span +>> +endobj +779 0 obj +<< +/C /A5 +/K 1150 +/P 1375 0 R +/Pg 28 0 R +/S /Span +>> +endobj +780 0 obj +<< +/K 1151 +/P 1376 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +781 0 obj +<< +/C /Pa3 +/K [1152 1153 782 0 R 1155 783 0 R 1157] +/P 239 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +782 0 obj +<< +/ActualText +/K 1154 +/P 781 0 R +/Pg 28 0 R +/S /Span +>> +endobj +783 0 obj +<< +/ActualText +/K 1156 +/P 781 0 R +/Pg 28 0 R +/S /Span +>> +endobj +784 0 obj +<< +/C /Pa3 +/K [1158 1159 1160 1161 1162 1163 1164] +/P 239 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +785 0 obj +<< +/C /Pa12 +/K 1165 +/P 239 0 R +/Pg 28 0 R +/S /Zwischenhead_3 +>> +endobj +786 0 obj +<< +/C /Pa2 +/K [1166 787 0 R 1168 788 0 R 1170 1171] +/P 239 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +787 0 obj +<< +/ActualText +/K 1167 +/P 786 0 R +/Pg 28 0 R +/S /Span +>> +endobj +788 0 obj +<< +/ActualText +/K 1169 +/P 786 0 R +/Pg 28 0 R +/S /Span +>> +endobj +789 0 obj +<< +/C /Pa12 +/K 1172 +/P 239 0 R +/Pg 28 0 R +/S /Zwischenhead_3 +>> +endobj +790 0 obj +<< +/C /Pa2 +/K [1173 1174 1175] +/P 239 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +791 0 obj +<< +/C /Pa3 +/K [1176 792 0 R 1178 1179 1180] +/P 239 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +792 0 obj +<< +/ActualText +/K 1177 +/P 791 0 R +/Pg 28 0 R +/S /Span +>> +endobj +793 0 obj +<< +/C /Pa3 +/K [1181 1182 794 0 R 1184 1185 1186 1187 1188 1189 1190 795 0 R 1192] +/P 239 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +794 0 obj +<< +/ActualText +/K 1183 +/P 793 0 R +/Pg 28 0 R +/S /Span +>> +endobj +795 0 obj +<< +/ActualText +/K 1191 +/P 793 0 R +/Pg 28 0 R +/S /Span +>> +endobj +796 0 obj +<< +/C /Pa3 +/K [1193 797 0 R 1195 1196 1197 1198 1199] +/P 239 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +797 0 obj +<< +/ActualText +/K 1194 +/P 796 0 R +/Pg 29 0 R +/S /Span +>> +endobj +798 0 obj +<< +/C /Pa3 +/K [1200 1201 1202 1203] +/P 239 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +799 0 obj +<< +/C /Pa12 +/K 1204 +/P 239 0 R +/Pg 29 0 R +/S /Zwischenhead_3 +>> +endobj +800 0 obj +<< +/C /Pa2 +/K [1205 1206 1207 1208] +/P 239 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +801 0 obj +<< +/C /Pa12 +/K 1209 +/P 239 0 R +/Pg 29 0 R +/S /Zwischenhead_3 +>> +endobj +802 0 obj +<< +/C /Pa2 +/K [1210 1211] +/P 239 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +803 0 obj +<< +/C /Pa12 +/K 1212 +/P 239 0 R +/Pg 29 0 R +/S /Zwischenhead_3 +>> +endobj +804 0 obj +<< +/C /Pa2 +/K [1213 1214 805 0 R 1216 1217 1218 1219 1220 806 0 R 1222] +/P 239 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +805 0 obj +<< +/ActualText +/K 1215 +/P 804 0 R +/Pg 29 0 R +/S /Span +>> +endobj +806 0 obj +<< +/ActualText +/K 1221 +/P 804 0 R +/Pg 29 0 R +/S /Span +>> +endobj +807 0 obj +<< +/C /Pa12 +/K 1223 +/P 239 0 R +/Pg 29 0 R +/S /Zwischenhead_3 +>> +endobj +808 0 obj +<< +/C /Pa2 +/K 1224 +/P 239 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +809 0 obj +<< +/C /A5 +/K 1225 +/P 1377 0 R +/Pg 29 0 R +/S /Span +>> +endobj +810 0 obj +<< +/C /A5 +/K 1226 +/P 1377 0 R +/Pg 29 0 R +/S /Span +>> +endobj +811 0 obj +<< +/K 1227 +/P 1378 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +812 0 obj +<< +/C /A5 +/K 1228 +/P 1379 0 R +/Pg 29 0 R +/S /Span +>> +endobj +813 0 obj +<< +/C /A5 +/K 1229 +/P 1379 0 R +/Pg 29 0 R +/S /Span +>> +endobj +814 0 obj +<< +/K [1230 1231] +/P 1380 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +815 0 obj +<< +/C /A5 +/K 1232 +/P 1381 0 R +/Pg 29 0 R +/S /Span +>> +endobj +816 0 obj +<< +/C /A5 +/K 1233 +/P 1381 0 R +/Pg 29 0 R +/S /Span +>> +endobj +817 0 obj +<< +/K [1234 1235 1236 1237] +/P 1382 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +818 0 obj +<< +/C /Pa12 +/K 1238 +/P 239 0 R +/Pg 29 0 R +/S /Zwischenhead_3 +>> +endobj +819 0 obj +<< +/C /Pa2 +/K [1239 1240 1241 1242 1243] +/P 239 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +820 0 obj +<< +/C /Pa11 +/K 1244 +/P 239 0 R +/Pg 30 0 R +/S /Zwischenhead_2 +>> +endobj +821 0 obj +<< +/C /Pa2 +/K [1245 1246 822 0 R 1248] +/P 239 0 R +/Pg 30 0 R +/S /Lauftext_1._Abs +>> +endobj +822 0 obj +<< +/ActualText +/K 1247 +/P 821 0 R +/Pg 30 0 R +/S /Span +>> +endobj +823 0 obj +<< +/C /Pa3 +/K [1249 1250 1251 1252 1253 1254 1255 1256 1257 1258] +/P 239 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +824 0 obj +<< +/C /Pa3 +/K [1259 1260 825 0 R 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 +1275] +/P 239 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +825 0 obj +<< +/ActualText +/K 1261 +/P 824 0 R +/Pg 30 0 R +/S /Span +>> +endobj +826 0 obj +<< +/C /Pa3 +/K [1276 1277 1278 1279 1280 1281 827 0 R 1283 1284 1285 1286] +/P 239 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +827 0 obj +<< +/ActualText +/K 1282 +/P 826 0 R +/Pg 30 0 R +/S /Span +>> +endobj +828 0 obj +<< +/C /Pa3 +/K [1287 1288 1289 1290 1291 1292 1293 1294 << +/MCID 1298 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1299 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1300 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1301 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1302 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1303 +/Pg 31 0 R +/Type /MCR +>> << +/MCID 1304 +/Pg 31 0 R +/Type /MCR +>> 831 0 R +<< +/MCID 1306 +/Pg 31 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 30 0 R +/S /Lauftext +>> +endobj +829 0 obj +<< +/C /Pa13 +/K [1295 830 0 R 1297] +/P 246 0 R +/Pg 30 0 R +/S /Einklinker-Text__rec +>> +endobj +830 0 obj +<< +/ActualText +/K 1296 +/P 829 0 R +/Pg 30 0 R +/S /Span +>> +endobj +831 0 obj +<< +/ActualText +/K 1305 +/P 828 0 R +/Pg 31 0 R +/S /Span +>> +endobj +832 0 obj +<< +/C /Pa3 +/K [1307 1308 1309 1310 1311 833 0 R 1313 834 0 R 1315 835 0 R 1317 1318 1319 1320 1321 1322 +836 0 R 1324] +/P 239 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +833 0 obj +<< +/ActualText +/K 1312 +/P 832 0 R +/Pg 31 0 R +/S /Span +>> +endobj +834 0 obj +<< +/ActualText +/K 1314 +/P 832 0 R +/Pg 31 0 R +/S /Span +>> +endobj +835 0 obj +<< +/ActualText +/K 1316 +/P 832 0 R +/Pg 31 0 R +/S /Span +>> +endobj +836 0 obj +<< +/ActualText +/K 1323 +/P 832 0 R +/Pg 31 0 R +/S /Span +>> +endobj +837 0 obj +<< +/C /Pa12 +/K 1325 +/P 239 0 R +/Pg 31 0 R +/S /Zwischenhead_3 +>> +endobj +838 0 obj +<< +/C /Pa2 +/K [1326 1327 1328 1329 1330 1331 1332] +/P 239 0 R +/Pg 31 0 R +/S /Lauftext_1._Abs +>> +endobj +839 0 obj +<< +/C /Pa3 +/K [1333 840 0 R 1335 841 0 R 1337 1338 842 0 R 1340] +/P 239 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +840 0 obj +<< +/ActualText +/K 1334 +/P 839 0 R +/Pg 31 0 R +/S /Span +>> +endobj +841 0 obj +<< +/ActualText +/K 1336 +/P 839 0 R +/Pg 31 0 R +/S /Span +>> +endobj +842 0 obj +<< +/ActualText +/K 1339 +/P 839 0 R +/Pg 31 0 R +/S /Span +>> +endobj +843 0 obj +<< +/C /Pa11 +/K 1341 +/P 239 0 R +/Pg 31 0 R +/S /Zwischenhead_2 +>> +endobj +844 0 obj +<< +/C /Pa2 +/K [1342 1343 1344 845 0 R 1346 1347] +/P 239 0 R +/Pg 31 0 R +/S /Lauftext_1._Abs +>> +endobj +845 0 obj +<< +/ActualText +/K 1345 +/P 844 0 R +/Pg 31 0 R +/S /Span +>> +endobj +846 0 obj +<< +/C /Pa3 +/K [1348 847 0 R 1350 1351 << +/MCID 1352 +/Pg 32 0 R +/Type /MCR +>> << +/MCID 1353 +/Pg 32 0 R +/Type /MCR +>> << +/MCID 1354 +/Pg 32 0 R +/Type /MCR +>> << +/MCID 1355 +/Pg 32 0 R +/Type /MCR +>> << +/MCID 1356 +/Pg 32 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +847 0 obj +<< +/ActualText +/K 1349 +/P 846 0 R +/Pg 31 0 R +/S /Span +>> +endobj +848 0 obj +<< +/C /Pa1 +/K 1357 +/P 239 0 R +/Pg 32 0 R +/S /Zwischenhead_1 +>> +endobj +849 0 obj +<< +/C /Pa2 +/K [1358 1359] +/P 239 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +850 0 obj +<< +/C /Pa11 +/K 1360 +/P 239 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +851 0 obj +<< +/C /Pa12 +/K 1361 +/P 239 0 R +/Pg 32 0 R +/S /Zwischenhead_3 +>> +endobj +852 0 obj +<< +/C /Pa2 +/K [1362 1363 1364 853 0 R 1366 1367 1368 1369 1370 1371 1372 1373 1374 854 0 R 1376 1377 +855 0 R 1379 1380 1381 1382 1383 1384] +/P 239 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +853 0 obj +<< +/ActualText +/K 1365 +/P 852 0 R +/Pg 32 0 R +/S /Span +>> +endobj +854 0 obj +<< +/ActualText +/K 1375 +/P 852 0 R +/Pg 32 0 R +/S /Span +>> +endobj +855 0 obj +<< +/ActualText +/K 1378 +/P 852 0 R +/Pg 32 0 R +/S /Span +>> +endobj +856 0 obj +<< +/C /Pa3 +/K [1385 1386 1387 1388] +/P 239 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +857 0 obj +<< +/C /Pa13 +/K [1389 1390] +/P 247 0 R +/Pg 32 0 R +/S /Einklinker-Text__rec +>> +endobj +858 0 obj +<< +/C /Pa7 +/K 1391 +/P 1383 0 R +/Pg 32 0 R +/S /Tab._Versal_bold_wei +>> +endobj +859 0 obj +<< +/C /Pa7 +/K [1392 1393] +/P 1384 0 R +/Pg 32 0 R +/S /Tab._Versal_bold_wei +>> +endobj +860 0 obj +<< +/C /Pa8 +/K 1394 +/P 1385 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +861 0 obj +<< +/C /Pa8 +/K 1395 +/P 1386 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +862 0 obj +<< +/C /Pa9 +/K 1396 +/P 1387 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +863 0 obj +<< +/C /Pa9 +/K 1397 +/P 1388 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +864 0 obj +<< +/C /Pa9 +/K 1398 +/P 1389 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +865 0 obj +<< +/C /Pa9 +/K 1399 +/P 1390 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +866 0 obj +<< +/C /Pa9 +/K 1400 +/P 1391 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +867 0 obj +<< +/C /Pa9 +/K 1401 +/P 1392 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +868 0 obj +<< +/C /Pa9 +/K 1402 +/P 1393 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +869 0 obj +<< +/C /Pa9 +/K 1403 +/P 1394 0 R +/Pg 32 0 R +/S /Tab._Lauftext_light_ +>> +endobj +870 0 obj +<< +/C /Pa11 +/K 1404 +/P 248 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +871 0 obj +<< +/A << +/LineHeight 7.5 +/O /Layout +>> +/K 1405 +/P 250 0 R +/Pg 32 0 R +/S /Fu#C3#9Fzeile +>> +endobj +872 0 obj +<< +/C /Pa3 +/K [1406 1407 873 0 R 1409 1410 1411] +/P 239 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +873 0 obj +<< +/ActualText +/K 1408 +/P 872 0 R +/Pg 33 0 R +/S /Span +>> +endobj +874 0 obj +<< +/C /Pa3 +/K [1412 1413 1414 875 0 R 1416 1417 1418 1419 876 0 R 1421 1422 1423 1424] +/P 239 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +875 0 obj +<< +/ActualText +/K 1415 +/P 874 0 R +/Pg 33 0 R +/S /Span +>> +endobj +876 0 obj +<< +/ActualText +/K 1420 +/P 874 0 R +/Pg 33 0 R +/S /Span +>> +endobj +877 0 obj +<< +/C /Pa3 +/K [1425 1426 878 0 R 1428 1429 1430 1431 1432 1433 1434 1435 1436] +/P 239 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +878 0 obj +<< +/ActualText +/K 1427 +/P 877 0 R +/Pg 33 0 R +/S /Span +>> +endobj +879 0 obj +<< +/C /Pa12 +/K 1437 +/P 239 0 R +/Pg 33 0 R +/S /Zwischenhead_3 +>> +endobj +880 0 obj +<< +/C /Pa2 +/K [1438 1439 1440 1441] +/P 239 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +881 0 obj +<< +/C /Pa3 +/K [1442 1443 1444 1445 1446 1447 882 0 R 1449 1450 1451 1452] +/P 239 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +882 0 obj +<< +/ActualText +/K 1448 +/P 881 0 R +/Pg 33 0 R +/S /Span +>> +endobj +883 0 obj +<< +/C /Pa3 +/K [1453 884 0 R 1455 1456 1457] +/P 239 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +884 0 obj +<< +/ActualText +/K 1454 +/P 883 0 R +/Pg 34 0 R +/S /Span +>> +endobj +885 0 obj +<< +/C /A5 +/K 1458 +/P 1395 0 R +/Pg 34 0 R +/S /Span +>> +endobj +886 0 obj +<< +/C /A5 +/K 1459 +/P 1395 0 R +/Pg 34 0 R +/S /Span +>> +endobj +887 0 obj +<< +/K [1460 1461 1462 888 0 R 1464] +/P 1396 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +888 0 obj +<< +/ActualText +/K 1463 +/P 887 0 R +/Pg 34 0 R +/S /Span +>> +endobj +889 0 obj +<< +/C /A5 +/K 1465 +/P 1397 0 R +/Pg 34 0 R +/S /Span +>> +endobj +890 0 obj +<< +/C /A5 +/K 1466 +/P 1397 0 R +/Pg 34 0 R +/S /Span +>> +endobj +891 0 obj +<< +/K 1467 +/P 1398 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +892 0 obj +<< +/C /A5 +/K 1468 +/P 1399 0 R +/Pg 34 0 R +/S /Span +>> +endobj +893 0 obj +<< +/C /A5 +/K 1469 +/P 1399 0 R +/Pg 34 0 R +/S /Span +>> +endobj +894 0 obj +<< +/K 1470 +/P 1400 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +895 0 obj +<< +/C /A5 +/K 1471 +/P 1401 0 R +/Pg 34 0 R +/S /Span +>> +endobj +896 0 obj +<< +/C /A5 +/K 1472 +/P 1401 0 R +/Pg 34 0 R +/S /Span +>> +endobj +897 0 obj +<< +/K 1473 +/P 1402 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +898 0 obj +<< +/C /A5 +/K 1474 +/P 1403 0 R +/Pg 34 0 R +/S /Span +>> +endobj +899 0 obj +<< +/C /A5 +/K 1475 +/P 1403 0 R +/Pg 34 0 R +/S /Span +>> +endobj +900 0 obj +<< +/K [1476 1477 1478] +/P 1404 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +901 0 obj +<< +/C /A5 +/K 1479 +/P 1405 0 R +/Pg 34 0 R +/S /Span +>> +endobj +902 0 obj +<< +/C /A5 +/K 1480 +/P 1405 0 R +/Pg 34 0 R +/S /Span +>> +endobj +903 0 obj +<< +/K [1481 1482] +/P 1406 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +904 0 obj +<< +/C /Pa3 +/K [1483 1484 905 0 R 1486] +/P 239 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +905 0 obj +<< +/ActualText +/K 1485 +/P 904 0 R +/Pg 34 0 R +/S /Span +>> +endobj +906 0 obj +<< +/C /Pa11 +/K 1487 +/P 239 0 R +/Pg 34 0 R +/S /Zwischenhead_2 +>> +endobj +907 0 obj +<< +/C /Pa2 +/K [1488 908 0 R 1490 1491 1492 1493 1494 1495 1496] +/P 239 0 R +/Pg 34 0 R +/S /Lauftext_1._Abs +>> +endobj +908 0 obj +<< +/ActualText +/K 1489 +/P 907 0 R +/Pg 34 0 R +/S /Span +>> +endobj +909 0 obj +<< +/C /Pa3 +/K [1497 1498 1499 1500 1501 1502 1503] +/P 239 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +910 0 obj +<< +/C /Pa3 +/K [1504 911 0 R 1506] +/P 239 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +911 0 obj +<< +/ActualText +/K 1505 +/P 910 0 R +/Pg 34 0 R +/S /Span +>> +endobj +912 0 obj +<< +/C /A5 +/K 1507 +/P 1407 0 R +/Pg 34 0 R +/S /Span +>> +endobj +913 0 obj +<< +/C /A5 +/K 1508 +/P 1407 0 R +/Pg 34 0 R +/S /Span +>> +endobj +914 0 obj +<< +/K [1509 1510] +/P 1408 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +915 0 obj +<< +/C /A5 +/K 1511 +/P 1409 0 R +/Pg 34 0 R +/S /Span +>> +endobj +916 0 obj +<< +/C /A5 +/K 1512 +/P 1409 0 R +/Pg 34 0 R +/S /Span +>> +endobj +917 0 obj +<< +/K [1513 918 0 R 1515 1516] +/P 1410 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +918 0 obj +<< +/ActualText +/K 1514 +/P 917 0 R +/Pg 34 0 R +/S /Span +>> +endobj +919 0 obj +<< +/C /A5 +/K 1517 +/P 1411 0 R +/Pg 34 0 R +/S /Span +>> +endobj +920 0 obj +<< +/C /A5 +/K 1518 +/P 1411 0 R +/Pg 34 0 R +/S /Span +>> +endobj +921 0 obj +<< +/K [1519 1520] +/P 1412 0 R +/Pg 34 0 R +/S /LBody +>> +endobj +922 0 obj +<< +/C /A5 +/K 1521 +/P 1413 0 R +/Pg 35 0 R +/S /Span +>> +endobj +923 0 obj +<< +/C /A5 +/K 1522 +/P 1413 0 R +/Pg 35 0 R +/S /Span +>> +endobj +924 0 obj +<< +/K [1523 1524 1525 1526] +/P 1414 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +925 0 obj +<< +/C /A5 +/K 1527 +/P 1415 0 R +/Pg 35 0 R +/S /Span +>> +endobj +926 0 obj +<< +/C /A5 +/K 1528 +/P 1415 0 R +/Pg 35 0 R +/S /Span +>> +endobj +927 0 obj +<< +/K [1529 1530 928 0 R 1532 1533 1534] +/P 1416 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +928 0 obj +<< +/ActualText +/K 1531 +/P 927 0 R +/Pg 35 0 R +/S /Span +>> +endobj +929 0 obj +<< +/C /A5 +/K 1535 +/P 1417 0 R +/Pg 35 0 R +/S /Span +>> +endobj +930 0 obj +<< +/C /A5 +/K 1536 +/P 1417 0 R +/Pg 35 0 R +/S /Span +>> +endobj +931 0 obj +<< +/K [1537 1538] +/P 1418 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +932 0 obj +<< +/C /A5 +/K 1539 +/P 1419 0 R +/Pg 35 0 R +/S /Span +>> +endobj +933 0 obj +<< +/C /A5 +/K 1540 +/P 1419 0 R +/Pg 35 0 R +/S /Span +>> +endobj +934 0 obj +<< +/K 1541 +/P 1420 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +935 0 obj +<< +/C /A5 +/K 1542 +/P 1421 0 R +/Pg 35 0 R +/S /Span +>> +endobj +936 0 obj +<< +/C /A5 +/K 1543 +/P 1421 0 R +/Pg 35 0 R +/S /Span +>> +endobj +937 0 obj +<< +/K [1544 1545] +/P 1422 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +938 0 obj +<< +/C /A5 +/K 1546 +/P 1423 0 R +/Pg 35 0 R +/S /Span +>> +endobj +939 0 obj +<< +/C /A5 +/K 1547 +/P 1423 0 R +/Pg 35 0 R +/S /Span +>> +endobj +940 0 obj +<< +/K 1548 +/P 1424 0 R +/Pg 35 0 R +/S /LBody +>> +endobj +941 0 obj +<< +/C /Pa3 +/K [1549 942 0 R 1551 1552 1553] +/P 239 0 R +/Pg 35 0 R +/S /Lauftext +>> +endobj +942 0 obj +<< +/ActualText +/K 1550 +/P 941 0 R +/Pg 35 0 R +/S /Span +>> +endobj +943 0 obj +<< +/C /Pa11 +/K 1554 +/P 239 0 R +/Pg 35 0 R +/S /Zwischenhead_2 +>> +endobj +944 0 obj +<< +/C /Pa12 +/K 1555 +/P 239 0 R +/Pg 35 0 R +/S /Zwischenhead_3 +>> +endobj +945 0 obj +<< +/C /Pa2 +/K [1556 1557 946 0 R 1559 1560 1561 1562 1563 1564 947 0 R 1566 1567 948 0 R 1569 1570] +/P 239 0 R +/Pg 35 0 R +/S /Lauftext_1._Abs +>> +endobj +946 0 obj +<< +/ActualText +/K 1558 +/P 945 0 R +/Pg 35 0 R +/S /Span +>> +endobj +947 0 obj +<< +/ActualText +/K 1565 +/P 945 0 R +/Pg 35 0 R +/S /Span +>> +endobj +948 0 obj +<< +/ActualText +/K 1568 +/P 945 0 R +/Pg 35 0 R +/S /Span +>> +endobj +949 0 obj +<< +/C /Pa12 +/K 1571 +/P 239 0 R +/Pg 35 0 R +/S /Zwischenhead_3 +>> +endobj +950 0 obj +<< +/C /Pa2 +/K [1572 1573 1574 951 0 R 1576 1577 952 0 R 1579 1580 953 0 R 1582] +/P 239 0 R +/Pg 35 0 R +/S /Lauftext_1._Abs +>> +endobj +951 0 obj +<< +/ActualText +/K 1575 +/P 950 0 R +/Pg 35 0 R +/S /Span +>> +endobj +952 0 obj +<< +/ActualText +/K 1578 +/P 950 0 R +/Pg 35 0 R +/S /Span +>> +endobj +953 0 obj +<< +/ActualText +/K 1581 +/P 950 0 R +/Pg 35 0 R +/S /Span +>> +endobj +954 0 obj +<< +/C /Pa1 +/K 1583 +/P 239 0 R +/Pg 36 0 R +/S /Zwischenhead_1 +>> +endobj +955 0 obj +<< +/C /Pa2 +/K [1584 1585] +/P 239 0 R +/Pg 36 0 R +/S /Lauftext_1._Abs +>> +endobj +956 0 obj +<< +/C /A5 +/K 1586 +/P 1425 0 R +/Pg 36 0 R +/S /Span +>> +endobj +957 0 obj +<< +/C /A5 +/K 1587 +/P 1425 0 R +/Pg 36 0 R +/S /Span +>> +endobj +958 0 obj +<< +/K [1588 1589 1590] +/P 1426 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +959 0 obj +<< +/C /A5 +/K 1591 +/P 1427 0 R +/Pg 36 0 R +/S /Span +>> +endobj +960 0 obj +<< +/C /A5 +/K 1592 +/P 1427 0 R +/Pg 36 0 R +/S /Span +>> +endobj +961 0 obj +<< +/K 1593 +/P 1428 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +962 0 obj +<< +/C /A5 +/K 1594 +/P 1429 0 R +/Pg 36 0 R +/S /Span +>> +endobj +963 0 obj +<< +/C /A5 +/K 1595 +/P 1429 0 R +/Pg 36 0 R +/S /Span +>> +endobj +964 0 obj +<< +/K 1596 +/P 1430 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +965 0 obj +<< +/C /A5 +/K 1597 +/P 1431 0 R +/Pg 36 0 R +/S /Span +>> +endobj +966 0 obj +<< +/C /A5 +/K 1598 +/P 1431 0 R +/Pg 36 0 R +/S /Span +>> +endobj +967 0 obj +<< +/K 1599 +/P 1432 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +968 0 obj +<< +/C /A5 +/K 1600 +/P 1433 0 R +/Pg 36 0 R +/S /Span +>> +endobj +969 0 obj +<< +/C /A5 +/K 1601 +/P 1433 0 R +/Pg 36 0 R +/S /Span +>> +endobj +970 0 obj +<< +/K 1602 +/P 1434 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +971 0 obj +<< +/C /Pa3 +/K [1603 972 0 R 1605 973 0 R 1607] +/P 239 0 R +/Pg 36 0 R +/S /Lauftext +>> +endobj +972 0 obj +<< +/ActualText +/K 1604 +/P 971 0 R +/Pg 36 0 R +/S /Span +>> +endobj +973 0 obj +<< +/ActualText +/K 1606 +/P 971 0 R +/Pg 36 0 R +/S /Span +>> +endobj +974 0 obj +<< +/C /A5 +/K 1608 +/P 1435 0 R +/Pg 36 0 R +/S /Span +>> +endobj +975 0 obj +<< +/C /A5 +/K 1609 +/P 1435 0 R +/Pg 36 0 R +/S /Span +>> +endobj +976 0 obj +<< +/K 1610 +/P 1436 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +977 0 obj +<< +/C /A5 +/K 1611 +/P 1437 0 R +/Pg 36 0 R +/S /Span +>> +endobj +978 0 obj +<< +/C /A5 +/K 1612 +/P 1437 0 R +/Pg 36 0 R +/S /Span +>> +endobj +979 0 obj +<< +/K 1613 +/P 1438 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +980 0 obj +<< +/C /A5 +/K 1614 +/P 1439 0 R +/Pg 36 0 R +/S /Span +>> +endobj +981 0 obj +<< +/C /A5 +/K 1615 +/P 1439 0 R +/Pg 36 0 R +/S /Span +>> +endobj +982 0 obj +<< +/K 1616 +/P 1440 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +983 0 obj +<< +/C /A5 +/K 1617 +/P 1441 0 R +/Pg 36 0 R +/S /Span +>> +endobj +984 0 obj +<< +/C /A5 +/K 1618 +/P 1441 0 R +/Pg 36 0 R +/S /Span +>> +endobj +985 0 obj +<< +/K 1619 +/P 1442 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +986 0 obj +<< +/C /A5 +/K 1620 +/P 1443 0 R +/Pg 36 0 R +/S /Span +>> +endobj +987 0 obj +<< +/C /A5 +/K 1621 +/P 1443 0 R +/Pg 36 0 R +/S /Span +>> +endobj +988 0 obj +<< +/K 1622 +/P 1444 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +989 0 obj +<< +/C /A5 +/K 1623 +/P 1445 0 R +/Pg 36 0 R +/S /Span +>> +endobj +990 0 obj +<< +/C /A5 +/K 1624 +/P 1445 0 R +/Pg 36 0 R +/S /Span +>> +endobj +991 0 obj +<< +/K 1625 +/P 1446 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +992 0 obj +<< +/C /A5 +/K 1626 +/P 1447 0 R +/Pg 36 0 R +/S /Span +>> +endobj +993 0 obj +<< +/C /A5 +/K 1627 +/P 1447 0 R +/Pg 36 0 R +/S /Span +>> +endobj +994 0 obj +<< +/K 1628 +/P 1448 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +995 0 obj +<< +/C /A5 +/K 1629 +/P 1449 0 R +/Pg 36 0 R +/S /Span +>> +endobj +996 0 obj +<< +/C /A5 +/K 1630 +/P 1449 0 R +/Pg 36 0 R +/S /Span +>> +endobj +997 0 obj +<< +/K 1631 +/P 1450 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +998 0 obj +<< +/C /A5 +/K 1632 +/P 1451 0 R +/Pg 36 0 R +/S /Span +>> +endobj +999 0 obj +<< +/C /A5 +/K 1633 +/P 1451 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1000 0 obj +<< +/K 1634 +/P 1452 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +1001 0 obj +<< +/C /Pa3 +/K [1635 1636 1002 0 R 1638 1639 1640 1453 0 R 1642] +/P 239 0 R +/Pg 36 0 R +/S /Lauftext +>> +endobj +1002 0 obj +<< +/ActualText +/K 1637 +/P 1001 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1003 0 obj +<< +/C /A4 +/K 1641 +/P 1454 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1004 0 obj +<< +/C /Pa3 +/K [1643 1644 1645 1646 1647 1005 0 R 1649] +/P 239 0 R +/Pg 36 0 R +/S /Lauftext +>> +endobj +1005 0 obj +<< +/ActualText +/K 1648 +/P 1004 0 R +/Pg 36 0 R +/S /Span +>> +endobj +1006 0 obj +<< +/C /Pa3 +/K [1650 1651 1652 1653 1654 1655 1656 1657 1658 1659] +/P 239 0 R +/Pg 36 0 R +/S /Lauftext +>> +endobj +1007 0 obj +<< +/C /Pa1 +/K 1660 +/P 239 0 R +/Pg 37 0 R +/S /Zwischenhead_1 +>> +endobj +1008 0 obj +<< +/C /Pa2 +/K [1661 1662 1663] +/P 239 0 R +/Pg 37 0 R +/S /Lauftext_1._Abs +>> +endobj +1009 0 obj +<< +/C /Pa3 +/K [1664 1665 1666 1667 1010 0 R 1669] +/P 239 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1010 0 obj +<< +/ActualText +/K 1668 +/P 1009 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1011 0 obj +<< +/C /Pa3 +/K 1670 +/P 239 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1012 0 obj +<< +/C /A5 +/K 1671 +/P 1455 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1013 0 obj +<< +/C /A5 +/K 1672 +/P 1455 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1014 0 obj +<< +/K 1673 +/P 1456 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1015 0 obj +<< +/C /A5 +/K 1674 +/P 1457 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1016 0 obj +<< +/C /A5 +/K 1675 +/P 1457 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1017 0 obj +<< +/K 1676 +/P 1458 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1018 0 obj +<< +/C /A5 +/K 1677 +/P 1459 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1019 0 obj +<< +/C /A5 +/K 1678 +/P 1459 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1020 0 obj +<< +/K 1679 +/P 1460 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1021 0 obj +<< +/C /A5 +/K 1680 +/P 1461 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1022 0 obj +<< +/C /A5 +/K 1681 +/P 1461 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1023 0 obj +<< +/K 1682 +/P 1462 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1024 0 obj +<< +/C /Pa3 +/K [1683 1684] +/P 239 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1025 0 obj +<< +/C /A5 +/K 1685 +/P 1463 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1026 0 obj +<< +/C /A5 +/K 1686 +/P 1463 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1027 0 obj +<< +/K [1687 1028 0 R 1689 1029 0 R 1691] +/P 1464 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1028 0 obj +<< +/ActualText +/K 1688 +/P 1027 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1029 0 obj +<< +/ActualText +/K 1690 +/P 1027 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1030 0 obj +<< +/C /A5 +/K 1692 +/P 1465 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1031 0 obj +<< +/C /A5 +/K 1693 +/P 1465 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1032 0 obj +<< +/K [1694 1695 1696] +/P 1466 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1033 0 obj +<< +/C /Pa3 +/K [1697 1698 1699 1700 1034 0 R 1702 1703 1035 0 R 1705] +/P 239 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1034 0 obj +<< +/ActualText +/K 1701 +/P 1033 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1035 0 obj +<< +/ActualText +/K 1704 +/P 1033 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1036 0 obj +<< +/C /A5 +/K 1706 +/P 1467 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1037 0 obj +<< +/C /A5 +/K 1707 +/P 1467 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1038 0 obj +<< +/K 1708 +/P 1468 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1039 0 obj +<< +/C /A5 +/K 1709 +/P 1469 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1040 0 obj +<< +/C /A5 +/K 1710 +/P 1469 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1041 0 obj +<< +/K [1711 1712] +/P 1470 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1042 0 obj +<< +/C /A5 +/K 1713 +/P 1471 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1043 0 obj +<< +/C /A5 +/K 1714 +/P 1471 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1044 0 obj +<< +/K 1715 +/P 1472 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1045 0 obj +<< +/C /A5 +/K 1716 +/P 1473 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1046 0 obj +<< +/C /A5 +/K 1717 +/P 1473 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1047 0 obj +<< +/K 1718 +/P 1474 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +1048 0 obj +<< +/C /Pa3 +/K [1719 1720 1721 1049 0 R 1723 1724 1050 0 R 1726 << +/MCID 1727 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1728 +/Pg 38 0 R +/Type /MCR +>> 1051 0 R << +/MCID 1730 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1731 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1732 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1733 +/Pg 38 0 R +/Type /MCR +>> << +/MCID 1734 +/Pg 38 0 R +/Type /MCR +>> +1052 0 R << +/MCID 1736 +/Pg 38 0 R +/Type /MCR +>>] +/P 239 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +1049 0 obj +<< +/ActualText +/K 1722 +/P 1048 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1050 0 obj +<< +/ActualText +/K 1725 +/P 1048 0 R +/Pg 37 0 R +/S /Span +>> +endobj +1051 0 obj +<< +/ActualText +/K 1729 +/P 1048 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1052 0 obj +<< +/ActualText +/K 1735 +/P 1048 0 R +/Pg 38 0 R +/S /Span +>> +endobj +1053 0 obj +<< +/C /Pa11 +/K 1737 +/P 239 0 R +/Pg 38 0 R +/S /Zwischenhead_2 +>> +endobj +1054 0 obj +<< +/C /Pa2 +/K 1738 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1055 0 obj +<< +/C /Pa2 +/K 1739 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1056 0 obj +<< +/C /Pa2 +/K 1740 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1057 0 obj +<< +/C /Pa2 +/K 1741 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1058 0 obj +<< +/C /Pa2 +/K 1742 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1059 0 obj +<< +/C /Pa2 +/K 1743 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1060 0 obj +<< +/C /Pa2 +/K 1744 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1061 0 obj +<< +/C /Pa2 +/K 1745 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1062 0 obj +<< +/C /Pa2 +/K 1746 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1063 0 obj +<< +/C /Pa2 +/K 1747 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1064 0 obj +<< +/C /Pa2 +/K 1748 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1065 0 obj +<< +/C /Pa2 +/K 1749 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1066 0 obj +<< +/C /Pa2 +/K 1750 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1067 0 obj +<< +/C /Pa2 +/K 1751 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1068 0 obj +<< +/C /Pa2 +/K 1752 +/P 239 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +1069 0 obj +<< +/C /Pa11 +/K 1753 +/P 251 0 R +/Pg 39 0 R +/S /Zwischenhead_2 +>> +endobj +1070 0 obj +<< +/C /Pa22 +/K [1475 0 R 1754] +/P 251 0 R +/Pg 39 0 R +/S /Endnote_1._Abs +>> +endobj +1071 0 obj +<< +/C /Pa22 +/K [1755 1072 0 R 1757 1758 1759] +/P 251 0 R +/Pg 39 0 R +/S /Endnote_1._Abs +>> +endobj +1072 0 obj +<< +/ActualText +/K 1756 +/P 1071 0 R +/Pg 39 0 R +/S /Span +>> +endobj +1073 0 obj +<< +/C /Pa22 +/K [1476 0 R 1760] +/P 251 0 R +/Pg 39 0 R +/S /Endnote_1._Abs +>> +endobj +1074 0 obj +<< +/C /Pa22 +/K [1761 1762] +/P 251 0 R +/Pg 39 0 R +/S /Endnote_1._Abs +>> +endobj +1075 0 obj +<< +/C /Pa22 +/K [1477 0 R 1763] +/P 251 0 R +/Pg 39 0 R +/S /Endnote_1._Abs +>> +endobj +1076 0 obj +<< +/C /Pa22 +/K 1764 +/P 251 0 R +/Pg 39 0 R +/S /Endnote_1._Abs +>> +endobj +1077 0 obj +<< +/Filter /FlateDecode +/Length 589 +/Subtype /Type1C +>> +stream +H‰|POHqžŸ»;®¹hV“ÒÄ΋@]ÿ$‚-ä.e!©¸tÑfÙÝ¡uFf¦ÔÃâa ¬I¡‚~"Vt‰òdÑ%#ê”Q—/uÛ‚!Ñ›õç¡™éÒ©wøxß÷ñ¾÷xˆñ—1¡#==C½±óM§tE”t­9¦e¥¸¦J®¶ydòÛGCm¤ó»Ã»ƒx[ [5¯íŸ˜2„¶‹qmÜ™MgL|2m¸Øáag··µµyØ»%-)ãÄ”aÊc¾ Žjú¸¦‹¦,µàîl{ÖeCÖo¸âß‹°b`Y13²ŽEÇL+μ.KØÔEIõkXshê?«°¢b' _R—%LG4°¨J­NŠæmÕ®«¦®ÈFKë¹ÄÐÔ¸ŒOaIN1NU35ÌaïoL£2TkÏZûG9x¼à³üöli`o–…yú†£]p?ßXŠé&.Ù»W¾Ç{=tQ‡³öKÎí¨Ëª —‡Z‡fìÏskOŸo¾Rž‰£©Ô•Ë+ʪPewåÁo÷=‚:BÔÒ Žòý´öÓÓë´ê}Ý´f N…[ÔϽXˆR6äâÉ‘É™ éöòÇUÞû ß œÏF¥0G²iº˜[X´–øO[jÇY1Ù›QC˜8È=)L¯ñPÿe¾›ØH¯©•ÁíNpfƺÉ/B0gتibç4Bî–^%ïI¹#Mhq¤Ç$HSä3©/'GBV¨²¸j+‹K¡Ð)ey +endstream +endobj +1078 0 obj +<< +/Filter /FlateDecode +/Length 1418 +/Subtype /Type1C +>> +stream +H‰|QkPWÝ%dƒJc%]´Ygw•ÊcTT@)ViÕJ# ø¨:ˆ!‰&ò4 ïWÐц·ƒJAA¬8((*´õEy +SK¥+:8Nû-^:íÿôWï3ßùÎ=çûæ^³¶ÂpÿÔÏÇoÝ–µ 7%h5re 6jñÕþ˜p¹Ö"2…ss¬¹¹¶$Z†rß¿/½™`žÕ0WxųÂñþ뢢yï~µž]æåå¶È‚S蹈u[ºtéz°k”Q¡*6(A§WEèXßHE”6:J+׫”®ìšðpv*BÇjU:•6ÖÒü°«Ñ±*^­Ò²r^ܯáýZ•’ÕkåJU„\ÆFY”ÿÐ}ÿ3ŠÕD²|»-RcaAz¾©cå‘Ê%|JÔÔETL¤^«Qé\—ømMˆV±Ÿ³JÕ>Œ?86[€9aîØZìkl=æƒùaX ¶Û†Íä_Û„ùcEØ[|ƒZ¹X²Ìh­1ëµÆ¬[ÜØ-œÇÏn ²¬9ãDऑ€\t—DÞp\£bQ 2™/š$öLÕàxNpͤ¥B&^ êNèîËŠ³;Ï=ôq«@Mö µIœX!œO „¿WGˆnP K:ÉvØ!”Œžª/¨?yÅ&‡8©<©( +iGÛçˆÁóH7wµ <ÄÍx.xœC½Öl|HÁìw5­­LëÚ°’®~p‡¾èVfQ>²#‡·3CÉcçjò)8"÷Lù9: MXv^ -Nâ7¼Ûú^>XðØ~îÂñtôPÑ‹þ!ĵ¼ÞØù¼G>\i ú—Ôg]Ïxm.ˆ·!R¾Oj‹y™Ô~sG‰M®èQù÷†¥Íñ×5•t< Ø• += ù“y…•y Ô‹ÌV•‡Ô;ð[WÚÇÚÄBÖ·ÙÕšA>(Iæ¼ìTgÔ7HÁW4¶9ûoN<¨ Ïn–ÕÜ(l¤Þ¬S0é"í°M“JšÖßòyÝÕ\SwÎ%$ÉùþÂTð$%M‡2Ò‡èÐ…BFíQ]øé%àů2ñÖônëÆ놜Ó3Ò =º“Z¸® ¬Çï€àfµ!­”9Û)4é‚Oí Û„!äü‡38¶ýpÚtŽ?0> +stream +H‰œViXTç~Ï]f`@`$wY„†M65Œw`dDeØAqÁ¸Å-FLjbZk­QbŒ±‰M.Ô&Öª ±±FMÛ˜6Iû<©Mc“¦­U¤gFÍÓÚ'zÏÜù¶{ÎwÞï{ßû]€ax"J§WØÓÃRóÒ¸ç*ßU ížÎ¹g?z t@ÎlX¶DY×´z/ kæ¾UÍóÚã›@ÿ)·¯Ìk[Ѭ\ü,ð? +$\iiò4ÖÿqÊ m;ÇËjáÿçõ&nŸæöè–ö%ÝÛç¼°‚ÛᘻÛ:<Èy©ÈyœÛ½ížîNá…ù‰ü¼²ÐÓÞ4»v¢ÛE<_qgG×’¡½2çâxÚ;Þ¹¸©Szýð)n÷q;$EÑSý@»h0xìn)½†f£ +‚Œû—a³ßÝŠß7](ñ ä˃ÇO¨P €HIô _ΫÆ5É·÷:¹|Ïü÷Ń¢$ëô~þ†€ÀaAÁ!Æаðá#""£Fš¢GÅ<¤˜c-£ãâÇ$%[m)öÔ´ôŒÌ±YÙ9¹yãÆOx8ß‘©Ž-(tM**ž A¶Å`’7Š$ñJ  +‡‰ux +C$’‘ÆPU‡Z©›¶Ós¤ §„«¢(ú‹Q¹©¤*iJžò²966êFêÐw/ñ$ž%B(‘}Ë©ŽZ|¾½ôªÏ>_GL¯ƾ¹÷|u>ßÿ÷ÊÃmžñ¦3tŽí<]¤K>{Þ÷ÙUŸ},lα¿kb,³@‚ ôÌ€@ÖT‚#BÆLŽˆ@$¢xeLˆÆ(Äà!ÆiF,,8æk1IH†6¤ÀŽT¤!ÈÄXd!9Èå<Ça<&àaä3G'B…(„‹7¡ŘŒ)˜Ši(Át”¢ å¨@%f  +3Q 7j0 µ˜9˜‹:xP4¢‹°]ü&X‡õ؀؄ǰc z°OðŽ|ÛxOŸÆv<ƒïâ{Øïc'~€]ø!vãYìÁ^ôâ9ìÃóØp/â ~„—ð2áÇx¯BCúñÆOñ^Çü GñsÃqœÀ/ðð&Nâ—x §ð+œÆÛ8ƒ³8‡wppïâ.ã=üïã\Áoð[|Èo¬ð;üã|Š¯ñ7|ëK£QÖ¢«ÉJ Œ­™y_áK,ÀJZC«Ù¥µ´‰ÖÓ:ÚH2DÜ¡YTEµ4“fS5Í!7Í¥*£©ÌÆiÌ檤é4ƒJ)˜ 4Œü(ˆü©‰™ÚÌLŸGõÌØf|#™)š,CQNJ4Ÿ:i-¢6ZLíÔE iåÐÔKù”GGi<Ù˜ûÉO“H¥"rR1Ðd*¤)ä¢L²S6¥ÓXJ¥,Jà +<Â,ôÚ,E—Ë°ó¸lÅ|tßka~>hmÜ¿kp«°‹zh>£´„¶Òzü‰¡¥ômÀ5ZIËèI^´Š–ûl#þÌkvߺÿÃ6ás_÷y¾Y :VE3µmƒÇ†>à·áq@Þ ’/È—éõràý{‡÷ú³äfÏ>fÔnæÚ6æÞVæáfæäæçZ¬ÆJƼœ±v1o;xwç3ºfæq=sz󻆹^ż/g ”°&³6\¬•U3”ÍŠÊ`uÙYq ¬@³ôtóåëò9Tº-Hªä'é$A‚x]¼ ¾-öŠ»ÄMâjq©Ø%fˆvqŒpGøDö {„µB­P#”ª0NÈì‚EÐ ¥ÚO{øÔÙI;h³«‹ê|8?d{‘ždÎcþa-f]xqb½dôûÿnÖÖNÖÙ3¬ºWáî +ÜÇïEíÅ\îC[Ä8½øì0;F  5† 0øûéu²$ +k?+éôÔ÷XÔæ*›µ? pVvkH®ŽÈuûŠñ¾B3$¹5r†<Ðe³&óO’lÖ»T¯Á¢ö‘§*.¥ÅÓ¨‰q\*šä´x”Æ>‡£§²ÚÌWÌÑîÒjoEŠS\-š>®Ð£¡¬ÚlÒdgŽÛäitWT[ì–›&»åÏüíÑ=ßú¤§æ_ûçü›¾.chD®Í:À°ùdv*Þ${ +5Ñéi­+¨SmÖBE-j? ²s™Óâì±ð€&YÔH-À‹•£E¶jâË[›h⺷ª¹LZ‘Û­É•CEmÕ‹ª&EÚ¬JaKÍz”yè •“è7Êð–ŠÒ'ˆ=ªE#êâsTVkŽ:·w>›•‡œF'§››5Åf}ËfÍדl¼ß2+XX‡©LÐA'•ñ¤¤ã"×t‚°˜œ†äT³ÑlLà›ø¸2ßVeÜ‚Y:qKå0ß9I'p›UæÐa é!S Ï/%%5."H¦„Ðì,Ú­Ô.tVF¿hÌ¿=Ê}°wFü +»ìý¾±ÐÖÁTN(Â#ñÌ$-’¤¿—™²Í‚:ø¹![0èHÀƒ×sËÐßi9«"‘£.Ô €¤ÇüEvvÏ5"6~lfVF:“YwÇîrÙS‹‹ Eö”3]õAMÞwüùýž·¡›Ï‰?\ßOŸE웟¡À›€§÷ÉC²–LT’n&4*¬àt¤R«@$O¢Q*fŒTG^i°«q;CªÖ ÏD:¶ÛRBB(˜°Ó{Sâ}³)3ÞÖ²²¼¨¨¢µ­3ž™®PjVÉ•/1)&‚¯Cõ?%¿.Û$±j…*ÞFò‰ÙQ? '+—Š8³F‰dù0±ÕàäHà&?;9]F +AòN»•J£Ô4òJÕÁ«@€± He1*d/Ah QE"¿#$0:­aºh+jxk·sÎêÒöž SXž¢ØöåºWVÌj])î߈L?;EQm'Z[[g}ÐìE]W¬.YÏ›»¢©|kíPñš= ï[+v˦Äb)4ˆ”öìLÐõ ð±h„Ó»í:-™™†¹|„l¤Ë0å+Ü™Z†GiÅ*±$e‡ÍœT˜šCÇÙ\ŠÁ… @¹š¤Ó²Tª–¡ì6—Ûå,”˜`²ÿ}tIOlm¸ï“®³ _£ð„øÃPàxxÆlÁ3ytÏ™pïsžÊ@ŠÑ’¯Ú2z¸5þ2ï ‹{ãƒMoœñˆ?öÞÌÒí×=xí@ãÀ<½AÙŽ©s­»ëü]àW +ÔùxÄ +›_e4" +X#0rʈL&™ÓrrÈa2`-§£”N³Viž†MÃŽ ‡ÊÜÓFJÄ ƈü‚Î,Yä(4í¨4ÂïpdêKŽ3ªŽTG_6ú V,z7TåÞW¹½Ð›F‰qÔå%/ +ò¦©ïÄ{Ì0w"Vª'Á_¨öÒ–U  |}*ʘ@™ó L¨Š–ÙøTÒ¢ç<ÙØ›‡¨¾v+-2+BÈ’EÊi™ +ég)⸶TDóBŸ×Ce¥0I» rZ<­ŒAÒ"aÁ¤6R>§¨`>6 Qü«}=¿m[>ùY‡¯ßi/ó5™‡cc ãÃËŸYÍ!9J^|£¾þFDNQrñê–¸¤å… ½\’nh7OxfÖ½º¶}¼®¸LéEW-'Y–”‡ÒÍ!¹Ô[Ê©”$ dÉÍV£]&ŸcÉæ¬\§@GÒs­FCZÍàD‚|D)t› ÔtX€ OšÍ…¾ßð‹Õ¾K¨üãøÎÃϪòæͯó/hðÍÝv¶fþYÝwh×K³¶äÔž¸Ò~v4"dW;6¿þÅ ­(?mÖªCµ­—ú«ð?•å/åŸÕo’º@=øì!Ôî +¢î4 ÖÁJ¥óJ£ QrG6s:9r¤HÍv¹‘'iäJ6H”ý`óHÁÇ’nju:„ÉéÌw¡»×LÝõhe)%˜D[݃º[#îýóF­Uð²´ZÒþîWºP¬ËÓ˜^àñVÈå,™jÅ“Kša`ù-¨Ô 7 (Í´dèe´ßÁù+àB%sT¨|[2°'ÈTd´ SŠÑ£Ÿjf̪ùW”$^rSÒJˆM~ØmðQHH¼‡4î”à^2—‹4:q•¼ÖgQÍxÚZ—Ž};tF¼}+à¶&S䵦SWEÔGàÜ7Þù~»/¡ÈCjP."ž.°õ¤)+R€ýæÔ,V †Æ¦)Ù.¸;†³üZ&ŽÔ`!ô$¯Â1Nå"3s\<ÍQ ‹X’F‹“#Æ£„Ý%AÇ…R£2€¡@8·Ëjc%¼B¨&Lf°»rJÇY°$C×þÿæ&uÎòø±œ±S[«J÷ðª*¾Sük[ùŠý—3H@§pDAΰ½=-oCëÀßò¹ªÔâ7浬:Ñ\[hj„-/EóoòØÖ ³D‰€ÄTÏ(`óÔSw½2·maÓÙ1Ofd¦®¨Óg¼TŸ\š¤11µØ´ bš½j`/F„£^i¯ û*´°£Ît+8Ìr:«Ò¬LSFf vŠgÿCxµGu—Ñûýîc÷n.û¾Én²ïÍîfŸÉf_yîn^d0 šò*U¨”(ƒ@Š ””wMšN1B‹•Fy(h­ eÆ2Õi)0hëèê´ŽŽþáØqƤ‹ßÝÍ‚©îd&¹Édæžs¾s¾ï þ­‰…Å9zRÒ±†¡2{©IØ gZ²ê$y€3ççqW%bN:öê†6®@Rldg{êDž¤-È9•]•'‚Ã/Úd~€úñ2ëæ)ts ý‹£H!Ç(÷†yxëÍèép½>¯Xy!ÈÛŠPHrLv$hÄ»91«.t2â• • 'D´¬ónÈë z]ËH6‰3ïX=ߟìY>)¯WËV¿w¹å|vê“=€ÃŸžýà€7Õ»ró׳Ÿüøooû._ôîr­jd˜ˆÈ•„²¯—U™×\ƒÒ·~=? T¼6º¥¥ÙêšÈþùÊ­ìÛ—¦²Y}ÉÔ/ªtY^R“PŠ’še$¯¥žg>JQÌÏWRB&Êp7ÿ·P¯?tZú™9:óå…¥˜}–úн¸}ø>iª=¨ë$‹^Þ"”á;)…"A.„}ÅJFä½Vb€Ënž@ƒœ\ +‚ž#ͳ‘”ÿHMa^2Å™ÿ,¢xPhpÒ<à\ QüI +©¾ÃNMÂMOq¹§žÎŠÝ½}n¯cÉ•™F«Ìô5<‹‡cËâ}¥Ý7—T ™ÎÐ×xD¬‹TÖÝÓãZÎÎ\œéÞc1Èî×™ÁRpÞkÈDœêH')ˆ…x”“XÊŠ?´…¼Ü|ÑüV–®þPy5ÅæÄãHÍ\HÿÆù ±WBaÇ?l¼bâŃYëBÀö\ñÄ<Ác.bGØ̤Ái—&}>AD+ÏÞ8iyš“‡ÏŸƒ7|á|X•’ÓŽ`öm¹VÛúä+ÏŸ ŒS½aW¯Ùsfù©U4~^¸rÆméÝ5sjå>àÜìªïý=‹|TeÚ.Á!XŸ·¯×ã–s Pò*+¶˜@![¤O¨Š'xSÎ7'67™Óí÷¿Æ‹öÁ( é2›3n׶LÒæ+ÏNT¤Ì=ÝÙ½¶ºÎ¾‘Êʃ};šXnúô»s 3ç¾dïÌ™ÕçÖ»AÿhÙœ'—*ÿæ²ß³'©fÜwþ +3к$ÂB1è FˇÞ +‡Ýl,½1%bh}C*åCœÌ‰CE?4X½t]\›ˆXH ö½è=ð‹h­·*“Ø/5• êpuðPuÔ’tÚÁ(OA0æ·4‚J)ÐÑ€)7ƒ=Qó¢\é¨âÕ`àˆŒr2ÎC ;ZeÅ›¬aÞ>œ%¼dáCöñ +E$Å:´îÏ . +z)r{»N!Ä×ÖÔypö"劋ûï|´µçÇK—6¶¯;Tóí±Ž¾ÔøLئ£÷ÂPNÍ´®Ï\J¶ýµëM}ý–oÇ‘uƒ\ŸI°oþì‰+;×{M!rIŸqÔGA©ÅéFP¬´Â€j-BøjhaµÀ™ÀPå@­h&2š7›Ôô ¥ XŸŽ¡Ýh¾ÊYóùªÀÁ‰Òµuã~ÀmˆXíúÙíˆ*’¼Šø -nè¥Í'w>^Ÿ<ÿ[vò½ì¯ƒk¯®ì}$Xæå·Œ¥Æ?ìw´†:â;éá‹gní«·¾®Îd~l¬¿Ö(ÛT‰àÎ_]?>à¨3Ôà¼Uâ½y•ÂÝÖ’®`è +gHÉb˜8ÀUÎÓEU +…LN˜²¢ãE­x(7Œ/rX8«sCˆú‰2·$˜\²…n·˜¿KXR 9Ž\54v¦S% (³ŠE±µÿá»Zc›:Ïðù¾s±Ï±ãø_'ø–ØŽÇ—ØNœ›OnNB 8nšËr!á +-…@Jé +…®%eÐ΃º¶¢L¨À¦n?¶ª¬EÛ´¢‰1¦¡iSÿôGµUbšT¡ +UØì=ÇvHBR~DÈI”÷ýžËû Ü¥ûóÜmbàrˆE î¼.›Þø¢È.| U‹E·Ñé+ôHŒ7LŽÆd>áIë(Çu}7¬*,-klC‡ŸŸ¾sxîæ¾È‡'L\{ûøË|Çq/²I3sþéÞ-Ó;Ú†÷ßš¹2>wéðˆ)Ùp™d-›^®2Uë¨âƲ€ùÂDò‘ž óC{åO{*g)š›øÕ¤Ëë®b‹3ÇŸzuzó¡æ¹‡ÒäÉÞ‰)oxñ5Á™ä‚ÞÍ7A÷ +ÉP…S¸7ˆª úÌ¥´AÐxu•Œ4³‹S*³’ö!Š0XŠ@ëe Ž.Ê\hy•‹Îk.F˨"ªÛªXyDý:k±ÔYkgJr²pŸµ[gwècæ†éÎÆýëF#¾íö ‘oht‡ªÈê<?ºN—YÈ<¿”A¸£w¶±iÈ•Ùø¯@ënІ›®%L„›pñÙN0ˆ*” ùÞÄÙ$¸TmB)B‰Ï“ÍK"ïrâC®‡AŤ˜x³·ý@ð«¥´W¨ëãÉ«-íÎæ¨ÃÞÜDþ&]ü$åÑ­í]½ÔoDû›Ž¦f»#* äWž„¼D˜w+; ëˆ2r.;¶²ÚVª(VbµUƒK‘;K>©f£ê`—Ú­UBëôÐ=´’Õ–º›Å"•8·þÖؑ̃Ê!„·Äÿþ–ªÞZ¹¸Ô"g[άoš¸ízDlñ6b:óå“/r/›(#̼!B”¨876<·)÷ÜKg^s•¼8Ï¢ù/ûë–Gß2÷ÁA&ˆ>©`±R†»ƒÜN W/:²¹¯¹>ì°IM`†\0€¾d¢•§:8Ì %ƒS¢”¯CËô¡è{ fQŠ“0·k™ —׊ZÌ]xëUAûZZ}—Pþljˆ'Ù¤™Ì}Ö{¾q6º+á¹L¸š;ÈeËXV-ð0Ž–üø67 ŸÊÃýU“•|KÅ´o4TÀÝA·vxº±×Ž?y=Xõô¡M™¡Å³)êh&µºŒ†ÐžŽC±5$–wxë(ÜŸˆ N)jtÚ¹xçÚo¡L(œfÎJ“ଥœµJZ‚̨T‰á­‘œ¥¥ð‰¶¹†ôôÚïðˆuã+ÝC¡lÔ¸¶Ý࣫îœ×'<Øš¦CˆyþTl¯"Ì„/U·³ Ù’v¦æe=¯¥!#YE¶»}´U¸bX…N<BÞƒÃaÇÔÄÏç¢/ü÷ݱ^ê|íþËg_±m:>rôĦ·*»ŽýbjáÞ±ØKWÇÏ}ó*yé/ï\}køóóǾxE˜C™¾AÍÀ>¢…Hðí ‰CÐ) + ì5Ú”€F) +ùKXS9ÜÈ&ÑÊ8KÖËØ:S¤Ç´ Êp•s(%̾-I5€¢Y@¶\AÓt¬˜F%œÃÜ-„™a¸Øp|÷§Ï½PûUpðG ™,<ê›®É;–qWêNôžzêâBlwL#Ëœ¥˜< +Ÿþ88ýÉÁÑtùYK0sxĸ/#U•™à#;;s³\#ä[x91…CŠàk ‘d€€“5ë ZQ‰D«â”Å–SÐ>ض¡J¨©"!Öz%Y]¾a@8ˆ ©N ãb‚Õ×ê™ÕD[Œ²bÏ‚0Yq×ÿû]ÃWø¡7ߘrx9YmÖÈš[??è:±9:¿7ðìúÌYô¿ÅòôµÓl˜±µGu£× —æV™Š«â°®/v~vÏïÖu9§ÍÀ¦ÕD„÷qH[€% Iê *Q‚•ØÂj5œŒÓ ÈPFäÊcL#_îpˆF¶Ba½Ä&4¥Õv¼›;qjj¦|Ø5©ÝUã±=œ¬gW×póc‹~¬¡ÛÇÜ•úoFŽfÞYê9y·n‚Dn ¼D+)7*eˆ6ÑBLí:€ÌƒhÞ-·\)#¥ÖXb ßvHíAˆÀïY44ƒý¹,\­’›('G5骓Ä&²¾©ÏÖD n8Ü×ôÞöÉ“5Þ²¶ ¦äÈçï<ÅPõoŒÝܹÿw—üuÿ™y‹*úvöºåR¥¦TfÞ9ðÓÓÁø‚7>r©µGkÚ÷Ü3 ½þºcžGÿÆóÔÂH4òA"4,‚2*'1é- $ŒiìÅbý“ê +°šEr¨XJá”Òx” Kˆz3¶."#äp‹Ø]¡I€ÜB7Ï¿#n7èAùÖ µ·ö|F*¤î®SƒÝþý7ÈgÒÿéŠ9¬»‹ÿ%LU©â’˜§Ûø:bÀŠÎ"(wù(欜©l¬Õb +C"RéiÁÌS¶bz‰žtèpH Líñ-Tåäÿ˜UÆÜgíÑÚºžréONÍ…å¹gágã9R­ÌKÏ®?’¨ßúLÚœ»`é‹Óµ=ß÷£9z‰7èk*A^”çå-WÎY8§ÖÓ¬ÅTfÐk5jé ˆ•OyÙÕ>DÂ6T¼(”­¢ZÀ©H¯d +.ý”!ßþZ(Ø–ùYA‰!–˜uVîKLÕ¨ï›úþ>~Ülžàyk™¾ç=m"#f¢"˜¢p„"Foúÿmøçh(D.~ÏNÎlˆÞ1Ó¤ÆÏUsn®‚5±E☫+ä ®O놚–îBuÑÔè`äZÍò‘a5Ra=á?6rÙ’‚GÁ¯„qò¡Wá¹·±h»"kÝf±nm Ùê*_/3Öf¾25(oŽß©¨wÖ'9]‡I§]zEåAs8æ=¾ö§Z´Î¾®íñN½c™ÿg¿\C›:Ã8þœKN.¦mì%ml“´MÓOc›Æ¶ÔÚÙ…"[VK¨]é\ÑvÓÚŠ—ÍË:V*¸!N7…Í­ˆˆH‘®„"âÆèñÃdLç)[CÄÁ8Ù±i²ÿûž““2 ~Ø—žðãyÞëyn眼oŸî¯†F+ã>ñòG‘gƒŽ’|ÇüÍò!øíK<•žÀoÕµVzr¬fÑ`.ðZJ-ùø櫬𔗺œŽ"‰¬}†É ¨I—ñ7·Ö,$ P1VVIÌOO=ž¹(6boœÂġƵ:XÒ`+¶¿^º²â·3î.ÓeOY‰xl[çT-{]çâ“κ<Ñß©yÍÉbVƒÐ~C=amt ƒÂ{¹$7ø¶Öþ- 4Âr?NQ­k­vS2c…Æ,‹Åb´4ŸÇU¼Ê‘c4H”³%›¥¬95e«k½™™øÁ³ߧà+"›URfQÚžGÖîúÖwK˶…š¼›ÖÅû¼›öo^ ç‡ò77¸k<‘»ö:OELJU¾áŽŽ¶¼Oü—Ånwn­i! コyw‹ûl®S~s(<ÚÿƒXÔPý,KÁŠêøäզȯÈÝ/€^ &É/^ÑÄ=œfø˜ñ *S&È£„ÑžÁHCô ä?É‹ý†ŸÈ†xÙ Ýä¹À »Çqß È^nó=J¸­{÷`O=öMš¡zô×À†˜àg"#îmÚº4ÌðÑŠ5DÖj¢¬ló™dOjäœÒ°k¬Ü®‘ ›òª—F>(À} +¾#²#?…ð¡(‚×5ö_uŸÛ°FI>ø’È'rÅðŠÅ¡¨ô+¼ê1¿¼•Èû=ˆ*>&ò®'ª\ UýºÌ2Ë,³Ì Ø Š> £~|²âäeG_%ÆŸwv°²ÒØsg.MÇAtA—¡çèºÍ¥ëlO?f +²™·“º€I]¤lzC×%ô¿¥ë2ôa]W ­ëlÏo»;Âmmj¤wÿÁ¡½ûþ»IÝÔi'µá§R„úi78HC´—ö¡í¤C¼oÿ æ¾Ì¨¤E/qŽê2ν¸ZKrÛV4ÕfÙåæ1[Öš1ùséDã§òØXgV€NNKë:Uõ_·-5~ +endstream +endobj +1080 0 obj +<< +/Filter /FlateDecode +/Length 10256 +/Length1 14218 +>> +stream +H‰ÄV{P“WÿÝï‘Ä `B ¼ E¾QÐZÂKXå¡XÅÚŠÖZZ¬µÕÖú–Vk­Zý@kÕª­Ýjk­¶[·Ý×tvÝÿØNggÕnØ“è´îºî¿{“/÷žsï=çwÎýåž À0¬iSgd»ôqKHó[zÊë[‰µ³&,à¨_ºÄÜ9½Ý ˆ‰¤Ëjê˜ßÊiÏÙd’=áò¦È3E2`ÓÜhhzm «–ìå7“Bµ›7‘¼™ääæÖ%]Ï'ŽË&ùÙ¯]Ø^€ñîW€k8É ­®öOÜÜ+i½¹-ÐÚøû»7Ÿ yùÛßÑÞ¹d¨[(uÚôŠ•3gÍ®ª®™3÷±y×ê¶ïØÕ·ÿÝ£'Þ?ùÁ©ÓgÏ}8xþ£ ?þäò¥O¯|ví‹ë_ÎïYþäJ¬?¾vUçºnì<‚ç§^ £[ý +Î\ÝܵthÏllºñú¶C —.ZÜÞÑÚö9¾^† (ÛÍ/Õ7¶l}cË›»÷¾µoσx§@¢ÍÏѳ!dEྠgECyáÑ!`]l£0Õ\`IJŠ +g³U„µ³þ'íÃÍ€ëìev˜ævˆÝ }Ȧ@§(ƒ +(H¨ˆ³jD‘G-tÐÓ®hÄÀˆXÄa8LˆG1‚¼Z+q!6¤" éÈ@&ìp ÙÈ.ä"näÑ…ŒÆ¢Åð¢>ø1¥(Ã8ŒÇLÄ$LÆ”c*¦a:*0•˜‰Y˜*T£s0aG-¨Ã ta9žÄ +<…§±’2´ +«ñ ÖàY¬¥4öЉ¼€^¬Ã‹XNêËx± ¯â5lÆëØ‚­Ø†íØØ…ÝèÃx{°oaÞÆ~¼ƒ8ˆCx‡qú1€£8†÷pïãNâ>ÀiœÁY|ˆsÄy\ÀG¸ˆñK|‚K¸ŒOñ®às\Ÿ†ëø_áWø ±ô‘ÿ’_` –}añ}M+ÚPO};:ÐHý|4ÿ´ºé¿XhyH³O /Ñèÿ¹ŒØ¦!†ø03˜tý‘þÍ~®pIø^4Š#¸tfej;ø¿Ã7´çÙ»H>N“çc„j?!í#ô[è47Ð ÷Щw–Q„픽&âÇ<âÌ,âQ9q«Œ| ÝÄÐtb­E®“ Š»ÄTÑ(üUøF„½Â&aƒ°Bp + ‚‚¿ÀçømüZ~5_Åy5Ás\äz¸5\7×ÉÕp霆]eÙY¶íb©LÂÌdt_ ùßñ=náæ\y ‰bø9‚Ÿñ?ˆ¼œ0»añÆDô:­&J=L¡TÈe¢Às öâ»ßÜ[×kõ5Írبšø+»$dVGU‡»1áNŠÈ¨–˜_ó*‡=“¾—á°ßûau¬¾~ƧøÌeææ@ƒÄ§Po–¿5`nè÷z{+«,Ôúa‰¯žV)æ²fIžR0½Êb’DÿÈjS ¡zF•5ÛzÛ”m½E¾3m=ÐðÈ•bŠ¯øÖC›‹o‡UZq”Ã>HaS-ð›C {K%Þh©[ësØKÍoõ 0Nô/õ[ý½Vš«/VŠ ÅJÖbK[$oÀÆ-•˜hJe&i|uµ$Z}d‚Y}-gõIªŒX‡Ý\Ú<Öa?E—£8tÎG ´"B½ÙÜÏñ½>«Ä¾2J˜·²JòÖV‡ü9ì4å×ú ®{–Ã~Ña/– p¡ +'† +)Ow°ÕÏ•ÈT %tË9a3Os›å 2NÅg:‘™cÑZ´©ô0º¹-?úD*âáì]_¨Z‚ƒÄDŽö꽑rÖ¢à ²ÈðƬ¬½<µˆyò=F®¯>¾t’¡õYEwðf²á…?­‹ÌHþ²Ð3ô[OÜU!Ö«åõJBÁ„6ªÄ"SßàÉËÏueÖ$›­§Âé./w(²­È®¤q…­˜êtÍÐßøáUªÞ%‹ñÈULaöhÂQ)™Í¤ìR٠Ʋå&*ô\Ù×Â".×eŒÑE8r‘Ź™Lk :cL®+ß“_Èò²XªÍV#äVZjr̾ƒõÞ“û;6NΞ>$èmi³íÅštA¥ósü£ÚšcT$/w(øç3u{Ï·p¥bp«® âíàÐÜz»mÎmgÝs¼ã*Cñ»é5c‡¨¦J—ä5ÅÅèÕ‘“ë¡ŒbºáŒ±v½Â ²øÚ⌜\w"#Hnm^ª5IFÙåã÷Üýï|gŸŸã‹íÄNüî$ÆŽß7;ŽÁ&8ä=„Ä@€+$¥„5”ŒiØè +- X‡–1º21Ušºñašö«´I¥[W©ZùZilûÀªÑ/5{þNŠ*ùƒïÎ’ÿ¿—ç÷üNŠç$@?µyÔZÂ׶j[ëKÚÁÆá•.ÏÃæubÑchƒ8=}UñdÂð#®@*½~³H¸A!Î,P» LAÓȪf>Mºfd{ksçA›/Ô’/GZeÙXžorZ©Œƒ«û·*ù˜^þ]ÔZž\L—¾ÿ‡… ®è;S“+V9îî8loÑK¡²=åß’òZWVCñ¡É“ ØLŠý#]£¾e´{l€ÀW^ÍFF‹ˆº~û¦É¡†«iäD_´Øq$Ú‘wH5‡ïüÒs?*ï´å–†VvéüÜ1k§Ù:_y_³½™ÔE=ý¯m),*F‡3töÊP`÷ÙGwçPÛ%tòy²†í>”óXÖVU£@œ†FêØFƒ^À}4eS€ÏúN@›Fâ” §Öå¦ç÷ `1ŠÖW ‰(?S¿>y&R™é3ȘªE²sa~g¹áó/žŽ;‹y×p?ø×¢«®{¼ö·¿eY²÷Jåé*Ÿ\$¸'P…yLI;¾[t1½¹öˆßa`ø¤WJ&42#zÓuÕåâw°±v‰ö°XÕÅTž³íçœõŒÀež; ÂLÐì Úˆô½›Jð=>†K5müÕZ­ÚÊåcïïÚsuhjgq®óä‡KÓ?Þûí{ÙL|OÆXììµ)Ý¥±Ë‡æ‡ ³ƒev0rjßþŸîÞüR~ë›Mƒ'çï-¼¾æªê;SêYêSl/mî +:¢ß½‘Ë»f ]cm4Q(Þ}è:/väT®=‡‰²)iÃ¥ “XŸOy¦sKF4]DÁ$mã UI¬o…HlD¾@ ðWí”ÞÓÓï‡îÓê”9 ®îŒ¹³eºœñ󻦲æò3¢vðÔ@&õò±w¾xÛ€ÜЀ81:ZÒLeµ»|kÿ}~÷{ÞØÀ›³&ù;ŸžÿAåž9º/MFËk?9è+¿AñÜzö%Üåúh³À>[_kÒkQk⪢Õ1ìQ£^¿Q2|´^TµÀ®Á}]7ðÞK¸2¾‘XbìµÔÈx<<2t&5Ⱥããcìõ±Dlb"Çÿ+agÙG>C·à[h®%µ1hâ:¶ÖçR8=Ž°‹F\v›Õ¢š´E½ƒ¹(ÓÄqhd-8’ø¡¹ªIâ¦O´K#PolÜËrh“‰sqì[ËPSÓîu*n‹1ýÅŸg·eåéÊ\ÁåH¤2Ë× +ÑDƒ¯¦8ù­#×aòW䳯N{¾7^ + { |‘¢Ñgó>¹¿Ãm©Xz-˜=“žÛL_½ +÷(‡eÄôCò1`Ò8)UËÆ£µè|p¡˜KâLS|OUˆ4Kó †×{¬Y Û±îÿGñ$ÍX…¶©$ ÜêÇ‚ «! ‚[ \|Ì(F/*u­­^2'ûW·ÕtׄþÙûÑJùÚ~½~qäqåé;ꄹì¼2Pú/(ϘNjbKSÝA7×ÔUø’HD‡õÈÍÝÛòïžXn&âÎU§°‚þ©¥ÛQ3yˆïkù>_=ëðd’lG+™eÖ +ªŽuÄkdUlÅ€Mz:ÌBòˆ¾+ºKG) µª¼©d`_t +2}ë Üú5ä0HÒu‚MÓ"¨žDâf<·½¹žµû:y6Ã"5” k+ÈFËFÒ—1 ›¡[m¬)ÐÊ„T†7 5pÌ-Úy(­GD+-Ží°—úÀ[åd½q!J¬ºŒ¿A‹¸ŸR¦4r]@ç`ÔXV6CkZ~´0 &mrQ#ÍŸ›‰mŸ9=×d”iÞc‰m½‡XўȨ‡þ¦d´ý›]|CÕIEÑvîÜlÒN”ÁÚÊ}¢“¤pÔô]kÅ-Û6uh•«½)»X¢œ,?ûœ¿Iž0Y¦?—Ú­œ›i“ØŽ(+¹ÿçºzc›8ï°ß÷îì;ûìø컳Mb'þï‹íÄvrþ;¶“8äš8Á@Ö:H—„Ъ¶P(…ÐR²N0ŠÖIlCtÒÔMcZa­ßVi|_™ªuâK'uR'MUãì}ïBºÎßâøÃû{žßóüžG@· €n,ÌérŒ>)³È`2ÃB9Â0@[«“XÒË5±¢^UÞ¸ &0¨#’^(å´-@öãÀ9Sí~ßã_`•¨¸©»ƒa£~ +4Ýüks½þ»æ—ÁK{åØ¿æPoR¸Jmá©]7φҤ¾87º|jf–&ͧ’w÷×ÁW%Ú¾E‘:^õ?·ûÂÂÈÌ‘»k«.…Iœ‚„À¦*„¥y¬ùîW‹€|ŒžXó_t9IÕ&Œã—Ô]„ã nk97wö +¦1Á„ØëcE–gm±t¯H¸òL" }àÍ.OU€ \Ì3¯ÚwñÚTùZ(<«€é÷¿5Ðô‚ÕŽ¼I\Ã$Mä3Þm‚‹tr aéÅ‹`¼éd Òðüpí|¼èâY¶UN¶»#Jóƒ¯Æ)ÞZ÷ÖVÎ*V÷?a-~ÂÓ—‰f^yÙÂ’x…œÂ;Ÿ?j~ÝlBBÏ°ùI°º¬­~&X7v +Ý‚*¢‚nAMŠý^JŸ‚L Šw©'ËÐ}ÈÔÊ›û^Â@©à”¤ —Œg˜yw\GE°ïehÌ€L4ýçKmž@- +ª‘ ‰år\D ¶O›Ž'ZÜ‚©³hN?Ìò ÁuÌ»õÄ\yôL£ï 3FŠõ8í+ììXÍïf?úXá]_Ù×D5þÒ$éÊÏnÝ~mÉiµZEwb!·+ëav6Ö|F§ÍOYÐü£º¡rÞ <Å#•ò‰î‘d IÄÓÊ ?ÈÄ@Äo^ Fz!Ì`qЀâw}cfœÒ7†v^¤üMËÇsPÑ¿\,}B½K ÁX$~½jªbâý@À[¤>vu»8ånHS·”b$WŸuX=>_üõ±L¢þÅ'ÏŸžTÚ|íÌ™ñþ½¢Åë O«ó?i¼‡‘¨#Ü@;C™0ç `v¸Å +;“X‘ŽŒ5ÈêT‰H8¢ ¶PƒXЈ.-D^í"„ý›5NôvdPÐŒƒ×{À¾ZÙFN_Oµ˜I ÐŸ€‰V%˜ù•Br¥Ñé¯@.^ úKEkø¡Š†Qø©@ —î¹3”â?}€&u:»zë£4ê³—öͽ772ëïÜ`¦gË'çÑ£Èò6ÚOç={®§>1ðëãWO”g{·Ž:S¹“—üÜH×ûÈ»0¹$1$ +Q€Â@½L’o/Ϩ”æö{³!À”)†ÂðB0/´æÕ¹(Ý }»œ þ%ä³ah|›r¹Mæ«cº:z¸þAC³M.ÕVRœÖ¤3ûƒÂžÙ®ñi]ï÷–«@™²­N83­Â¹qnbõñƒ=ËBx`Éns}G 8AõX3ú_D!â¢ßm +ADt¯ ¥‡±!AšÙ}Êáß‹J*‡­–D"åƒ,¶÷|wa»¬¾' ŽÕÚ¬eXsdÀBò1§0d+SÛÛÈ?•I7ƒeŸ¿hh3uô“X„©™uË¥RÞ +η”™i¥}ÕpXÄÛiï¤Ñ#¨“'‚ĀدeÈ>¤é3ùpµeBE€Q÷0!“±%uÊæR(PXö>Ì)ánr 0dÞh·Vú¿Yg„}þˆÃŸZ¸¶h1Äž«?s}ølr`*8ðTBt‘>xa‰ÜÞŸ4(†µ^û¿ù…«¾ÚW +é–TjHìna¶°ð‹}Ý>9m,©¬~ÑŒùÁ)ïZBZ5 + +Ñì›=l…†mjo%rë#; j^ßn Êœ¢æDWÏkƯ<¾"þ§2 [3 3?1TÑ“•b4¬hF¨°/ó´YþjêeÌÐ/¨«ˆÂä€>© Ã$hÍ“à‘mÿ¶Û>¹ï9ç}Ï}ß÷yϽç8 +l–qb27'âjàŽNTLu„¾69‰u"vd<ê2”âLÂ5«¬IoE¬uÔF¦Â7ýë-k7•‡ÚŠªsŽÈH*ÒT[¸!Õ§¾$ N×/TV©íAµîÒ{+{_oÞ.¬oWÕöoý™¹¯gÍu«`õ7£±-np*ER(ÛéÎá~5»:à-/sæ󵕛î¶üì.÷Ÿ\žôˆÞUsÿi¬PºË“ªp]ãV…%.þâ½¥)<·v8š6 +t‡¼¡‚ãO7èK+ÊZëÚ¥ÂJ{Í㡃Z~q°ü™òÿk£‘¬ŽÊå¯>rö˜Ë¦;}O ­ð®^ÑQÙ^j_7ØôU[{ Wµèª*…ίn‘Dçê•f;‚%m A‘ª|eÁÒüœ2±;T¹ k~OYi O­V ¹«šÒ’LH¬ò’&£¨Y2Ò< ÆruKâ«0Å«V2vÓ--N—te‡;«üsŸº­œ$#­‹ ^™t5´E“#- .[Ywî^çôskºóí÷}~UÛËïtÔ +nìnÛâ¹.éÔrOy¡ FV³rí­ÿaâÍ;Áš †ˆÄØážÌ_vJ~ÍÕhû­Ô³òëcZX¼sN@;|?ªíÏ0ýÀuÛú@—â¦Éw¸"!)}€å b–i\´faTêD’ýGeý%HY6IVêú壈H—1&_‡Ÿú=¼G”78×ÄØŽðÞËö‘f;¡Œ#!}ŽI¢ÔÒÉåËyÄëÿ„õ:¦,èRObÀÒ„´å&zÔ.‚¾QÞga©r~~ah;¸Ú‹¤fçج1žTSÆ=eéäN(ŠÃê-úÀˆ!¦= +]ý‚ý÷UÏrŽ!Lq.F¯eVšP>F<…‹ôq@-`,ÝèåüÂç-Š•vˆ±-ì {PJ!rï:À1>W™¡]”:)ÚP_ 1_°œ6qÚF¬¥èyQƒˆ2`…¾+Igx¿Bÿn1åo8ç_@äÉHÓï÷q>3Ê<œÃÐoõèKÜœ7IŸFÕ1œ´x—³$·r qâ´åmú3cpgžc‚O欞Ñ1÷3í|n’þÆ{—˜—óíñ0§iÃþ$Çɵȹzq“ËÁ§Áa'9 ŸÚ8m¨kð6‹Á¥Ð}Kq7ødoÌaLphØL£WÛ͸ ËvĬwùœ1ö7a@ÛLN§àÒˆMÄ:Nÿ‚ÐEÎh¯+ý8!òc@ødÜÛ3mƒKÑO>Í:¶Qæj‹Áᘡ—°êˆ[ã”E¬7YÛ׈=¥o™yÜóKkÝ?Àf Q–eâ²r•ÞœgF^f%ã:_d¹ˆ/ìMŽœº_ˬÛ|@_Ÿ ZMÜø5 +¨S¸0»‰"ê9tÀ)ÿ ¼_J6.úSZFÜÜ1ßå“xÀB®> +stream +H‰|TkPWîf˜0:;8Ý­¢˜€âƒ ` ¢FeX^®<EaP˜…á¥0 <yŽ"†‘•„ˆ€‚ŠKc\_a7µÆuW7UÉîž&×Tmnªö×Ö­>uÏãžós¿Û8fkƒá8>?tkddP°›"K£ŠKѨWl:ÀêâxçI[Þy6…|P…³xÑ/ùb¸áoÞŸp¶Ÿœ‡Ùàø³—›ÕiÂÑĤ nµ·÷w«ôœ‘ëܹ5«V­š‘žœ‚zŸ’ ÏÒf(S´\`j¼Z“¦ÖÄe(Vrþr3)´œF©UjtVã;@œJË)UIJ '8UÂy2ËÐÄ%(Sâ48µÕó?êþÿSŠS¥rB.nGªÊª…gF-—šà!dQÏT‰Wg¦fhTJíJ­áYiJn=— Üa¸°°98æˆa.8ö†­À°µ8¶É“cØ6 Sˆ°p[,Ãœ…¹b +,Ó`Fìî›ð6|ØÆͦDd+Ê ÛzÙ–‹‰CÄ â—„7a ¾•¬‘–<°›k_z•}¤ËUQ©-|:äíqÊÑ +ùA•þJ P`UÞVJÞ±3{ðC‚NðÔu‡¬šMH‘ÙÃ]ü(œÁQ£? ütp<Í%q™mƒÝ`[À,²ÀJ7ƒ½DzÇøƒÓ}pÅá(D|á4C½u âпÄåç[MÝ4PÃÉ!Šm‡"BƒëRØ$ºt/ûO4„ýl὇ڑ˜¶'æ³9—Wj<ÂV?C!}™ò‹a9~ÂDü%XKÔÑ{h4wÓcpæÅøÏ×þ—ga»a±¸^TïK£Ýhšƒ +PˆÐj81y§¾¶•Â®"àxw`ðÛÅ!º]Awß8úœ'°9wãìÝ¡á)X(ƒ¹1ßû1r3¢è ~G BYDP¦êFS; ØSšÜ?Þ†ìMl^v©©€•¢8³nÚKoÍ-º=íEýêÓ^iS)¸ñ-ÿµ;òAà†jùHHÿmÖÁI `=,¼°äB„°9ÙNŒžËöib[Ö7î¬ÑÛ‚ÈmË|£»Ÿ}CÛÛlW!i¾së{Ù]핽]Lo¤ÿizµ_qa$ ÈAÙdº@ß*éRGÊ¢TÌ.B:”Ëyáz`»0n…¨¯ƒÒ÷>ÓMÒõÃ?ÀîUÄšóëÕ™xú‚Ìbi¹~ïê¡Üv¦\Ä-±aõ>4òsõ@ï¹> +"ž}œn9”,S¥èr¹Ù¼‘ö–±DשƒL°é¼ó°$°™ôãŽÅ猃2ð‘€CÈ+ä»ô3uΦIÄÍ×›†é‰úL={L‚6” Y¡ÈIFÆzßÞôãÈ`ý¥n¦œ ýjöŠÉf(¨‚Òc!“V¨ÎJ§St ý—ÍYéX„pñúy£ OØN†½Žä`屉ˆèº~h˜l§`+ n¦ÿŽìé hí~5k3’¿"ÈÃÁÆ ã‚ ‹ª*Ó}ÒÒÖMß:%gÉA_UüïÕŸw1%•%ÕÕ2ih¾Àx,Ä; Hį†ÅTAfúñƒtPxïwß~5p¯§µ¸¨‘mƒâÚ¤½'iá&0’C«r‡uׇ*ë,3З 'z¹°ÐŠ½C¸O“ƒü¬éh +U%™± ;hd·Øy—±ÈãoË»yf´‹1 +åbð$Œ]ÆÛã2~HB +­dS†’“\¬NO¤£ö÷=š8íVïùTU%[VXZX$“¶çƒÓ8H¿ƒYx_p_Û©òÚŠ6‹ è°GkQ ?rE´ê;ø]Ùz“É€Ùâ#{öÝE…¹T,ÌNJu”›G豺jVú¤„…Oa>ämx×Í2¡›I~o È×Å;ÅF¢/}ßÙßÑÈÁÕy %ÏÝ`öà½Ö”I|•´=<¼¹1…Q!g±và~î=úñ£º+cìÍáÆÉç20KÈÉg¦þr ƒè e(Í9žÏ¤k3“騔¯¾fÉ×O/^îï:«KªbÊŠÊ +„VÍ:Þ ÿ>ÅZˆÀàÈ„$/¦wS቉Ñ1ÝÊѱžÞ+ì`IRO8-„OGëgbGA>ä„~^)ƒ•[›Á^øf Ä"6ä$tKjKëNœb+ë[»è¾ÆÄ™…  ’š²†ŠælUSs;Ýה̢ÁÞ/çà'‹’S‹r5Lzn¦^¯±3ƒºèö zÝÞm{Œ ‹ÆÅÈ0Ś¶ɤS‚_`©á»Ia¦_Zñäè”Ô•®¨fš«Z»éþ–ä0ku¹µ +­xŠ$Þ»bÒ³!ã—…wÄÈã·ŒÏ Bš: ƒ‹à:_J¡O\– UȈ+øàÏ¿hùÒŸÑJ¶‘Ôµ3Š€OÒ"cµc'Z&n²RN6 úÏõggÀ‘eï€Á1ImY©šé«î93B7Ÿ6¯cÉjð•eå¹E¥9t\fcºµ×sÅSb´’0í3íò•ICòa.4ƒ~6ö€¿ÈÒJé/¹GƒûÃo^±%ö_ý¨Ó.´9§¦AÖÒTÕÑ7c8Ë´ƒT\`G]0¨õ[>dKÂ.†¦²É>U˜%Ë:\ ŒÝÞÒ¨f¤ˆÌ‡eè}O€Ó¼'°…L{ÂOQ®ÁÈim”llˆ¶¤0ÿQáÒ핤wnž8i¼ð†ï²ìµÒ µ‹ÉWüø]Bõ»;ßã†ïª¿YAéKè0À…€ž¯ø±˜Ò‰FxÇïmì]Mí-r-U%™Ò‰ekOÉŸùÛ(þ[é´Ëw¦ÇÛö,›+×Ï&\1Ù‹õ»>[çÖÎÃ¥ø¶t·þ­6uòÕ“~wþÓÀúÝ“í»ûÖßlQ¿SY…74&µf´&st°µnjÙظ)ì{ª_q÷wåïÉß•ÿðf^,öÃX¾d÷²­Z±|ÍŠµÀd«"ñíÑo¥ï¡ì¹9%E¹¿…~ëJðÕOÿÑ0ý»ÚôéÓOgû6ýÌtv PÅôïz`! Ðéœr ’ây8»y¸¿Kp}÷àþÎ3}Ï÷"?&‰8*°: +endstream +endobj +1082 0 obj +<< +/Filter /FlateDecode +/Length 528 +/Subtype /Type1C +>> +stream +H‰bd`ab`dd òòu‰òÑö­,ÊLL (Ê×uÊÏIÉÈÿfü!ÂòC†Gô·ùï>–¿ +Y¿æÿ~JðèeB LŒŒ·ž;ç5¦g”(ZZé€H0i®£`d``&MSò“R‚+‹KRs‹<ó’ó‹ +ò‹KRSôsrÀF+¥§•!ÎQÈ,VHÍ,ÉH-RHJ¦gõ¥¦(”%¦¤æ&e+äƒd¸ix¬RÈÌSš¥š— â—‹óRô¦äƒmIÎ/Í+)ÊL-ÖÓw ©,HU°PHIMcF-FF¿À½Wttïýñf/#TÙËÜÍò£ãgÀŸ¶ï}¿Šþ¶û>™õû ¶ß +¿ˆ~qþLbÿÃf·û ä³ýØ/ +býñø¾ÇñýØßðç»ÇwÆïÊßy„¾_ý®÷[滑ð‹ëD‹7^*½/ýÝòÃýïì|ŽÙΔïeþp{ù¦ƒ¤žØ]ù-on[\”"·ê7ëìe‡>½:/%Ä«"¢K>à7ãI6áçNçyG%§Úøú.Y Ï÷}ゲŸfåŒg¿ë2Ÿýi&ú×ì»îO3v¾úé?j§ל>}úâél¿Ó¦_˜Îª˜þ],ĺ1SnAR<g7÷w®ï:ܧÎàá0ãëõ( +endstream +endobj +1083 0 obj +<< +/BaseFont /WMNLRB+Wingdings-Regular +/CIDSystemInfo 1478 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1479 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1084 0 obj +<< +/Filter /FlateDecode +/Length 2356 +/Subtype /Type1C +>> +stream +H‰|UkPYƒ”ÞFMSÝYˈˆ+x7ý–í”ZkÌL xôz•"?½-1]ºÄÓÓÙÁd]?Y©³““Ó'ë*õ–)âäÒLUºæX †­b!B,Ã$|_± l#VŽu +Ì‚bÁ?Ì(³l³‡ÂuÂ.s¡¹Úü6n†çâ?ÖD.1 Z$JuYЪÃÜh‡€·s:„‡Í¹ü‰“ù ›ò‚¯p&uQ` +&ÿ&š$¢?ùà…ø˜à:)“‡L‘õ‹5#ÜîALƒ`%„3vrpC¶(šE†ÇÈìiX<3@›|@Š–°ù‹¨ Îh!r’»¬Z3Î<ôß<¹C‹+ÔL†4`) XN0sä¼¢Â,¿Å„øð.æ½Æx.n·ÍTnõ´ã€ÿsð5’~¿¢9ž¾©òH¦Á?SÛ^ÕC?«ùò/¬ÞmÕ +´Íöòù…ˆ'Ïa¸üAwÁBÈùØ€çÓaÎÍ¡“vørhCž"äE”Á–à_Þp¼¶¼eÖ"_®—'HŸH æÃkzܙ䳔õ!ÄyÚqN;.èä‡Å¦ [.P».>È Ágp°Ñà^4å +»¤^VÙ)iª»ôóí¶Ýû*™ê1üDbè1Í[ìÌì6‚0ž}ž\—ò¥dSLÂçë6”ŸŽgÄYš!jÈ}<ûܼãè…{?уåÞÑzVŒ**Ô\VÆ+˜eÝ šÓÈa¶á²Ð´É,9~kŸŠS¤ÊÎ¥¶\>Wu‘mÔ﬊¥Åð?7û½Æô̦Âêßï?Ù’OîØð~ Qj,=ZÌÔÕ4|C÷œÛ²šEõ|¾UTZPVPÌÔ—ÔT_¢{ÏoYÆ¢S|¾YNž×—Å'kw§1é{32ö¤Yèˆnõ憵´gL´\Åæd{Þ}üÏDA¬!2D"¾úý4ã{ÿ'žMD©¡ìHs±¤®¾¾{6ÌEçù¡º$G—ëîË¢äj†Çj=ø#Ž°ÿ‚5k^Â/¯ø®’pH!4syš?Û¹"§ÀðÀÖùØ@sÙü%ÔÓ:וvþ~_D Œ<©:ÄO1òSÆ7Ð?ªùcŒGï Š÷ Ù™k;ûh‚ðø‚ƒã[di«#È'ÿncŒ2†¯•€UEŽ‹ + +™îⶋ×èG—üÜF®ièÈaó‹ôEÅ1úœo "MÆùO|dÉÓ'é(Aö•KŒEÌõ¢æÆ^º¬H§+dÉ°‘}FíCœè¯bdÕ¡a\JÄ"×HÄRí xöBП½åÿ •TFC×Þ^¨{ß½`õ÷ãZ].XJ/«‘TWV\¹Ü”•SÁTáeŠÈÒPá¾n¬>¸9üÍv‹oÕå{¶Kv¨v…Æ„8®`ÄÈ[ûn¾ ÁTá7B!3¿Åý(S´¶8欂QžnÌn¥›þ£Õ&Í•ï|ÉÚÑPÝQ&S½ê˜ü÷ìïœÏs~—gçÛÑðÞ”L…NýôíŽ]?ªEóÿÞÅVÛQ×Þ —S—%íU¸ÿŽü÷¹@ñMì¿ï„=y´{ﺠ}ñt¶ßiÓ¯Lg +ULÿ®â +ݘÎ)· )ž‡³›‡û9×w~îçSyx~¬ù±@ ÀyB£D +endstream +endobj +1085 0 obj +[1083 0 R] +endobj +1086 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1087 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +1088 0 obj +[1083 0 R] +endobj +1089 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1090 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1092 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1093 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘Ýj„0…ïós¹{±D]WY²¥àE¨íh2Ú@!f/|ûN’e h¾Ìœ#ã ¿¶O­Ñø»[d‡Fm”Ãu¹9‰0à¤ Ë PZúû)¾åÜ[ÆÉÜm«Ç¹5ã„þAÍÕ» vµ ¸güÍ)tÚL°ûºv{àÝÍÚœÑxÈ i@áHzéík?#ðh;´ŠúÚoòü)>7‹PÄsž†‘‹ÂÕö]o&d"£Õ€x¦Õ04ê_Ÿ~$Ú†Q~÷Ž‰"ˆ³Œ6&Ž‰‘óÄyà"q¸L\—UdÚ˜¨’¾ +ú*é« ¯N‰OÄuª×¡^§zëçÄç8ð}²0:% \äÍ9Š$^CÌ"¤  >nÊ.Èö+ÀöÙˆÄ +endstream +endobj +1094 0 obj +<< +/Filter /FlateDecode +/Length 13354 +/Length1 20589 +>> +stream +H‰œVkTT×þö}Í "0¢x‡‘çÌ8¼‘‡0ÜDTÞ"ƒŠ /AAP|`Œ1¾j‹IMµµÖ%FmÒ˜äjmb­Ú461FӘƴ1i’v­Æt-c“fµÖÝ3jVkWþônûœ}wç|ß=0CDUe­3mLJn*G.s©oíñö]ÎûàS€Ò9£uåru}ûÚ}€ÒÁ±;úöæ—½€án¿·°{u‡ûÒ³«Ó {Ig»·­åÏ3ÎE‰¼^V'LO¢¹ÝÄíI=˶7äñExÍ=ݽ­^T©@Y ·‡z¼} +*Nóxu‰·§ý³òp^«âC~ßô¾Þþå#ûdÎ¥*Á×ß·¬½OzñØnOãv±>À‡ø#>ÂÇø_áïøW)–&0¢^¬CÖ’[óþ¾ÄXŒ5ô­e{˜ÖÑfÚ@ëiÉq›æR=Í£94Ÿ¨‰<´€©šf2g1›+¨Ž*i6UQ0Ðh2R™¨™ÚÁL_H-ÌØVf|Yh,_/Òâ þÄç÷&ŸõqfÉsÌžý̨=̵m̽­ÌÃ-ÌÉÌÏuX‹5ŒycígÞöòé.btÌãæt󻑹^ϼ¯a T°ÊY¥¬U3•”ÍŠJgu9Yq ¬@‹† Ê"ùª¼S•nJÅ’&%E$ˆWÅ âëâ¸[Ü,®Wˆýbºè“„ÛÂÇ°p@Ø+¬æ B…  yBŽà¬‚"Hô ÓÚË·Î.ÚIÛ˜]ýÔìÇù>3؇ôæüIæÿqÖÂ1Ö…÷aÖËSŒþãßÃÚÚÅ:ÛÁª»îìÀ=ü>Ô>Ì5~´eŒÓ‡Ï ‹klxؘPsHpÐèÀQ&£A‘%Q ز2Üê`Ë Uë¨wØ&†ˆßåûìÑÉr_Èa·ñŸ.$;ìwþQ‹«v„Ä8M-U;½mºÇ^Õ%·Õ«¶q¹ë,üe¼§ªÁW‘âÔÒNÝWâÕQÝ`‰Öe÷O´·ÍSÛ`uZ¯G;­Wøݶo^ÝÛö#å8­ðÊÿL.¼î™C#röa†Í7³[õ%9X¢‹noWsq³æ°—¨ºhÕŽ’ »Wº­îA+wè’U‹ÔGù°òj‘%]ºË«úóÖ‹¢¹î«ê¥Ñz™Ç£ËV— «Ö¥ VMLŽtØÕ’Îb‡ý_ òÈK'qÔ,ÃçUõˆ jV¼Z)o˜«®Aw5{|ïsعËmvsº©pØ';ì¯:ì…zX²‚ï÷†ÌÆ +6 Ö]-(P¤j¾‚ ‚tJä®S‚"˜‚E[*l)³ÅœÀ…øº²ÜÔdÜ€E:}Cãù #—EÞÈʘÉêvµ9ù#W–“n•Á4+%9ÆZ¾Ì òó¬“H W"CF‹aTâˆ6…DÉLBh~Nzd€œépR}•`R 3£ðßlWkPSé>ßw.É9‰¹œÜHp‘$„\`!ËEñ²[t¹IEð‚(ˆâ¢¸êxAD\DjÕz+*Õ­ŽVwµ3ët\Û]ëm­]wl÷2;cÇ;ÛqÖ¶c]9ô=Il÷GóƒÈ÷~ïåyŸç9(ë…/Ñlø}ð‡3¨§H§sa‡&•Ñiõ†"8ä ZÐcÑ;ͲSËεù¦Ë/òáô½;oý¹£ÿƲyCE9ƒ¹ mÂ#ßî}sM3ÈÇ˶LŽÕÌo:R_´-ŸÛµ`äM_²¡¼·€4*f—ËYÊ:{¡8Âë|›åÞ™ÖÊùm—;[Æûs÷­Ìês77Ü¿9ÿÚÄÜ ÓgåR¬¢‘ª,ÞÝÔp¢Ù—IŸ9;ˆw-œ—±µ4ûÄëÁ:Ñ ö •¸¾ÁV!VÁ˜UÀÌ:“Uìò ‰ƒƒJL(h`8¤SávÇØÅ­·Ç]Ã…BwV?hÅOo|š”Ñç_/<<‘#Ù ‘ÕbdBªÀdF§‘Y¬qj‡œA ©Ób†iw Páp—£ó½5yù+Ï •Y¨ ¿yå"ózÃçS»G„§Ïž@l«ðºF¼6ׄe Ñ$VÅ—ËåI3(°9ù`0§4®,­1ŸV¿Lª›86Ï¡Gš?)ÅÊmè +ðe5ò³P€PD­¦1’ÄŠ¬Î Õ€#“ßrAœÈ¡+²N<90õ/´ØSF$„Õ /QÛY±´iñ£†TÀJ )Œà./w{ª*¹J·«²Âí®c\œ’SNèIhÃrL(–âÍtô8´†©¦œ“L~AßûwˆùHtòSŸ“W`;àÚla³2ÂÀ6è#±E“™zLC¢%Ç“ X­â­^ ÛK¦2X§â£¼ß‡èÉ£·PbÇáæìâO½öí´ GWõ¤eõf° ì‹Aý/5žúvä¦phŠ^|Vøþªðpô ’\ø ù.ˆ¸™zAÖÒCÑLLfB£Ä2VGʵ2Dò$£Là_’£sÎr‰“¶ j­AŸŒt.lKU ‰?üjŸP Ù̉ÉÕË–´FòóKÛ–uU'›ôÂsjumc;÷C¤Æ`¤˜Ž¾B eÔÏ#¿)Y+vÑ +Y\ƒŽd¯…½`|¬¬±fI³Áqa«!%¡7Ù8Õ%)’O³YÉáJE#·˜¼Ã%Ã\/B9DY8Ä¡:m:-™œ€Ùl„RI9–ÚÁA–:“µ  +•,¢³ÁS?$K$hdR ΔéÑD B’Pj-CÙR"GEÙI$,(Sòßñ“¤¶`çÝg¿AÂ÷þÓ^ ºÎíßy² ¯ÁUîS-ÙÊ·ÇÞm«>ÂÛÉ—Â@õPÓ¯Nº„g}‡Rtãºý{þ¸{Á¶*½AÞ©³m;ê¼Ý€W +¦ó1`Ä +OåáEÈÀ¢b”&%’™$”ˆø2-ËÁ€ì‰¬eu”<ͬ•aš§ÁÅÂxLJ$ÒÈRt%E2"oPç°‰œ+" +ÅU„ýF8‡C“_pÙÏŒÊÑá#F¯gÑ*»Ê7åº(¡u»ÉKA®iò;á13Â,+Ö“€/ +¦ðÒ–”¢$|kÒ“I„ɼ“ñ•á’T^MZô¬+»³°X‰HtÊ-R+BÈ’Br´T‰ôyòèpœi©jDó¾Ü·‹Þ/—!ƒ›‘ñé(p|2qQÆf#îg|@P*€O’‚(þĆÞß.k9÷YgÎÖ4[IN“y¤¬ëØÜê‘–9+Â$Kq…wëëï†8Šâ„¿QŸ 5K^ìëº}¨Ædè7O¸¦×XÑ1^WX"w#ßúßÍàH‰„ä&s€¹%•Š›d]Ê §«P†.™bœe1ra¡¬L;+C£¦LD«Ð°V18ºA@WÀ4©.ì÷ñDРS’"òÕ‰¤#Å06zºú—Ks.£È½ê-wGÞRfUͬóÎßÖ˜SÑfÖÌa³jÃÞíïä½Q{ðzÇàÿ‰€Me_wú¯C©ùÙ yí{kÛ.o­Äÿx£$»åøßï×hY pör·ž°3AƒuðŒC™x¹QŠ(Ξ‚ͬŽCv…HÐ-Fž¤‘#F.q÷A+€G\|•ó äjê&ã;ßžõ,Ÿü2Ç£•*Š0‰`muÏow#É,aàέUå¥hµ¤íïu²nדÇå.÷pœ„ M6 CÂÍs‰þ(]~25™àü#áüé–$½”öÚYo)dn/UFûmIÂ.?{H–NÐR4N¹(F~á7ª˜cV ˜–üXãE4Å „$±·˜S"þ hœ¢-ÑÇÀå ¯Öþ†ùæS‹«–ÌÚlÇ—›V_]qtÃÚžU×O¯l=68wsÕÆ»«®¬œÙµ½“ÞÙ¶¸¼¯6·äЮþ‡}õÝýŸäÌØ×Þs¶á壡‰î¡ñºá™Í;QF°sbÆêð†ÎÙ½"ž2 Ò ¨ÔH8ˆéa»µLåIPºIÀ¡V‚öé-È-µ+ƒÓcÊÊéô‘AÉÿ\W®—ù"4±*lÑ’~_¾ù‹“Ô°¥5kÝ™úžÛn=9,\òÌî oݼ7æ²ôýæë­k,+®umùË&áᄃÂ?qgÍž9¾#oì¼/f¹”¼‡<Jn«œç9BStLé êŒÿGÕÉýþÒ]^á…ÏqUˆïU ôÙU¢ÒãëU.WU…ÇU%Þf>F×à69‘ ªæ4^·!Š!( ðþv½JG#SÜÆÀp_ù˜"øñuQW³ªDt5ö’Yµ1{Q…ˆÿ^íAQ]wøžsËu/û¸Ë>`ì‹]–]Xw—Ý—e/ïQ F$Jj}ÕZ5 ˜˜¨é*ˆ8øÈ«Ö˜„KÕÔoÕÍ¡>½Y'“b…m:ZDÆ_¸Ò<¾ .ÇÊ +ß¹E¢wn¢”ˆf¡> ašˆ+86K§…Õe!ÀX€«zcN HÊiƒV+ç æawäú ZúÔ1Š‰ éû=€cÈê C>¡.u—?§mÓ€`Ðf|Zv¤õôWñÁ/^,ÛZàz¦,\|¡jÍÆ—Û:ÎnK466 ½3?µtÍòb¯E™- & +n=жk‰‚¢ 7\ŒOü9<Ü»GµèðÚöUÁJQA=·»s•ùañ«t;}’($J·–€FÀòÀS¢XT +ðS¬õ7¢~ÊÊ¢ØY”™M2œ.ìåшuš?¤:7Ê +ä舫§ÛËŠß>úKñòµo}|#ðlos  »žøô@Ó²SãûÖ}™<¹"T±â<0œúe+B¶3Û‡Ü1³ã‘‘϶î½5ÒYÆš(F o.ä‡ !ŒXc`$®D´•;¤çȇFÌ– +ÙTN€ ˆ¤B¤Xþ’P)Ìd°™|—:%Ž"QÉîa†™–ç.Ö.©ª8 +Ôï­Ùô»§:.õG6Úãñx»]¨î8>wýžº®_ÜÜ?<™Z~µû%ñ“«¥n[z6ømyÔ…±¸Jï,}íFÿ[ÿ|: 1r‹BU.  óì¹:ÒhÏ„Á(dU2( •x^¹@1ˆYƒ9L˜7FcµR¯6%a-«ظÏãâi> æÊ`¿p4X˜F(ôáÚ]¸tÂãWt‰ˆs»lv®7I€¤U½Ã-щ­X®ø÷ð¤Xþ­F]·¼é€g^í¡ÍÉÊ=ݼ2Éo¯¯®îê;ëÌ&åRKÆåd¶ýÍ¡z5X‡\{FƒR]ñêì+>úpÈØÜP¡ù†<°ÙlÂP‘a˜äñ9ÛgʼªÛet\Ñêæî‚‚MOx³r™ÛçUyÙ[–4´¦a”²˜Ì`&2è5"ôj‰˜àÇö Ô ¤|n9 e¬ÖÆ™8ŸuP¼ ñoà`?àM4¨—àIà¹ifÿÀµO,+á$Ì ü +sdçÀϖש5 …SÝ ‰Á4Hÿ¾/Fð°øpý’&óæIÀÿ —ŒšG‘šÃH(Égd14•å °Và‰™‘¦±i^1ŬUŽˆ„J ¦SÅÈæaônX(@JFõâÒôظÕ8‚¦Õ>MëÒ:Oa™D¨÷óÝ'†[ gÅT²ö‹gjNŠ£Ÿõ^}_¿üñvObáâÕgß¿þÉ À{iýK¬üÃËN+©ŒSTHËèKÄWŒ3Íç@Þ;Ÿ‚–·|…LJÖÖTç¿xû#ñüiŸÉ˜á—éAü6 „êò¸Ï&»Õ"giDî.ÉÕs!.Àù¹Ú°)›â l“ ÖsPˆe]j³€ßû [2v ýxï˺ËEñ€fÀàhe8´¢°£ßGÒçô)ÌûуGpm­[Š¦wÅÑÝ;¥Û`7¸Þ”nK>á#j×øªÉ­ß> i±ìþí1ñ-î¥(°¶'_:ÃãfƒÛrhÃŒi1˜¸<$³ ¦UCGz#8¬»eßÛâÅLù=¯Ì(õzOQ&øt@ÈŠÝ2@±:*XmçàlDz€w›=ЈèËÈ4½áI¾”–žŒšdK÷y*²žC•1·Jų⿶?¹§ó!_nSM}÷بʭxlÅÐóa&í,~›q)yqêãÑëmwnÈV¢×Ï%Z„jÁ¤!5^·#Ý… \-WÅ%¸ +®œËc…„ õ¡™MÊ`-à@nD íå>XN›ƒ:Ο܇ dÐ÷ÞÁÈО+sGæn²‡§&ÁÒ=ˆþ€aóK?}¬¾AÉSùQqH“ÔxnHñŠd[Åüp$^iK*x<ÝÚ„åVû2š¡Aè²ÚÚ«Z]n–Ç|öZ& ,½ä±²õãÿñœòR¯/íµÒiK +aÒõIdl€Ú 9Cf+-=Ç«Ì3=h">U, +C¬ÖÃZ8#êG'粸@‘NA©‹YO>4€3.uYðt1Èa`õTÄJJ¦‡.šú†B«Fþì¾/„7¤â[7;ÔQ9ÊH_-ݎž…m ߯¸°o¦–™$ÏMú”ªÍïÛÏ»56jd¼ù”Ò™æ*cFŽ­$ì(ç›T±,´ûäÅÒ[EŠË'è”–BÎì̬´Ý™ñ` +¯:)e-^J1èºHê²øú¯ÏÎϯEï~,îý㶠[5»¯ n~ï)¡÷ŽçMÐò÷+`ño‰ïÿíqïŸè§}v‡8ö瞥¯Þ¼¯dÔy1!f •—° ×Áp"Å-ð‚ºmgFâ꤃ `w:ƒí»k( ,»¹þÏTEAÙ¥„l÷ƒ‰=túÕjkÚÛ†móâ¯mjÞÛ3{Nê®xeN"Ù’šûó#ëhÇØèt×yÂl¡¥ÑIA[ã“‹:^|¼ŠkÔ6÷µÚ‡ÑŸ—Ð÷•hb–úbF_£K!ÌZ–EãÅlRÌÅ,…!LåÄX:p#V„LuRfH3ÂP(êC´é±õ¸Ü¨%À&v¤¹‹8õ÷æÇdýè’8¶/ô½mš®¾Ùe±“¾/^YË3uS'Â:î/âg×ü˜þKwµÇ6uŸÑûýîÃ÷š‹ßŽíÄïgü¶ãIˆc“  ,…h(áY¨ !RBi€BK¡4<ÚаR@U®”–n+P¤ uSË£«hË4uš*¶Ñ®lÒ¦ý1Apö]; MÇ,YÖ•eëw~ç|眯HçÞ?î棾ھaö”Äã¡Âͯú8†³WËÜ.ƒëôöN›:ŸNÅ3ïÃÜ¿¾ÊËkÚK<}ñôŸ~óò}žÙäy*55Wk£4Ö;b`Ñ`ÉÏ,b]­ƒer ÁéÙíÎé¹1’<]5Ö«ÈqiI©hK[© Ê £ãÁ?Åw¦*3º ý W¯¯­é`¤µ5p¸õÏçþv>su¸cv›Í±«#úÂ.}m…Ø›]ûjÇÀ¼j`³¥4”X,irfûákŽ{Ç¢²‘I4ÕTÀ[ÞfâuG»Û’Ä;‰ß`8TEšªË%mj y—¾¶J$¸i¸ª 4Ô@|¢¢È Î¬ÍZAŠS¼t.Dî“IÍ°( +ÄŽ[“ׇP†Òê!Õ¨ª Å^EäEÖžªìilÞ;ßÝÒ·ü»Ûï¾>üè/§\^-»öÔâ+Ïž9úqÇkÿ|f͉N “z2µ›Œ»¥Û²Ñ8ðÆ·ŸŒÚê~¼ü…Üò™û—ììÕiÚö¬~åó1ïADçÁɾ„ŒG©Dί 0IQ”#áF!PI¼‚^-êE‚™€í´ž…xiuTîA:NN .¯—>8æµÎÙ4tô~ðÐæbz˜Ð35ˆ †ÊæbF_½¿èÅÂ0Q”‹2Ñ¡$f¼3ëXôë(êäq/¦õ«l ø”ú?ù!ùS¼7¥LM|R…MmY£F³ø쾋ßhK™áö?…™á™ ÉïþêÈŽ+ûšáäF ÃH,˜­}÷rý'/Ü&ûFµ9}÷Þ=ñ—Ó"kÎ#RÕð?ØãÅŽÍ9À#:E›hJé÷yyŽŠoWÚ TŒÆ1H:•übðú`b½¶Áôj›V5u{=O4eíwápe½e…¯µ°Õ^3£cW4º³c}žåîþ‹þ8d™ÄŒ7;gèØ#o-Ú{‰þÙCc ²trÙŸØCÔÜ• µY!‰Å<‚t¢Cž"!¥Óa1•éåsR +ÄÐø} õõDÁÉ\8Cô¨Ðë Ú„6­É$pª Éñ,‚‚àψ—¹5LWWpþߊ¸¯¦ý™Ph{[»ÇË_f†2Ë-yÎiVA–±2={Új¯gUS>«*üVÔªù*¯! äìPï¶ÙŽ½nÆ:Ù7)˜ÝCÝdk?ÈT<ÞÚIßôšØÑï¹ôÝ÷*³S]ukóûð64è²µì1*BùrV0ˆ^ÐP¨~žhôPŽƒÖ¯´ã ÅJí6ˆü6K2¸ÉKºû_S¥#A£ŸÊฯW,É9_Ÿû»7ý–XÖfž|Û´g˜Ïî} -Á×7ä­K ßî̯_PøϸéêW +çÛ7ÔÒÜ主²3rÊð-ú#úWTˆª¥få¦DÂâ 8&#ȉ)å ï“‘dB^A®è´’rAO$„rpBÄEi¡Œåä@ÂîX7êŽh)àqæ”àCT týøf–‘qh–©d: j®H{‰ã4\½¼å¹†jg)OwõlÚ¶¯NÆ…[I§ÓåJº'ŒÓ»ú»O@îý Ééá¦@pþñ{¶ìR—ó“ë;¦Lk}çÕ “ìfš‰Ó覆õv=Ÿ/| +SD×SœéÄÊ)2üõð-FÅ~Šý¬ŠjÊÕ•+HÔ'Ü"9Ä®“Žøâz\\»¢ ¿Q‚ä!`Ý`/#N½Ž¤*&r$9j>ŘLd$×AJM—Ó'ÃX¨uÒ„T:£Å²ZêÒ-q`º*û{ÞœlŠ\ Í­|ì!a¯³­¿Ò£9Óœ];;¶oÏ̧›Ù‹÷jÖâÝz^Ùì<`S̘1Qçµþþ0诶F†N¦Û[K-¸Ü¸PòÓÔð ºöQáœW„S áâ.9ðZPÅ‚ +ÑytDóò3Å‚_2’oQD +7‰ƒLÂÁHKK*MT8ŽŽW+åÍ =Õ+®šÜý|KUOPTœ\¹é÷[W6ÏZºfÞÎn…’lÞ\0[[¶/^÷öú¤ÓdË몞ør`Ço’ÕþXSf»Ô”›‡cȃ}f.ç„pR  œòà)M Tˆt2d.jШ#*AÏ+œ1AFŽøÁÄ“A ì@ÌFÝÏR+¹pÃć·Í ‘”aV`ÂÝ× 7= ïþÚZ­\LwNªñ¡önùͲ®Oo¬™ýóY³êz¦/Ú=éÈæ—­[·ké­Ð[d@}WÛa)§Gw Õ »þìÕÀ"Ÿ³à^×”aÏž_òÁúiµ¾¹õˆ\âgù‘SajZ®.k‘! ' |4°àÌ`Œ9‘+š Œ,f½_!6 %ý´‡/:2|¸a:9=ª 'SbuèF²HJ,âƒá\ïÁU‡6®Ž/Ξú{ò“ÂáΉÎùQ¸Â/<~ ~ðË.gc¤9½‘Þ|ú¸ÈuþdAã•·jÌ–‡tU›Bú©ÊLxãç{v;kŒ“PoÑá;ä{HC®€‘ãÔPÀ¸" +ÍÄ ·@OˆÉå2ž0¢ôr -à6 NtZ9ˆ«Š"Dþ°eK„YÀ#{Ðf—R㧄¥¤‰#çŒu3rõùÄTgÕŠÊ\®rEUgZ”ïÙ£ñZ{=Ë£ö‘‰5ñ¾§ù®{ŽU¬h“å–ÒÀ‡sí «Û]ÿ%¼Zc›:Ïðù¾s±Ïq.¾Ä·8îñ%ñqb;v_âĉOnNBLHÒ4!—…„СÑRH)m¡Ðu¤ Úy°„®í(*°©Û®j×¢mZÑÄÓд‰ýèj›ÔiR…*Ta³÷Û!Ðñ#BN¢¼ï÷>×£A­é©Q¸P˜h'‰mâ„ qZ;Jv`¶±­†#”Aˆqà¶V1Z> ¡¥#aQ +šr°½8R̆Ѣ¡[MN‘øaärà—k;J5{³4Ø¥‡òØ…+:å0-Ki€4fЗäÏG.éKHJ—‘l¼¬0"9b39“ùž¥Xl „ŒÝ¢ozÚ[\fmiCžNž¸~`þÊžè{Gù3U»‡ÅóbÇ?r*3ó53ý›gbÛÚÆö^½09îÀ8?Ðxždj[6¼èå« ”9f­µ™8s°gýÂèîÚ©òÇ|•sÍOýbºÊïñ²æÌí¾#¾<³qóüåÀ±þ©a%l|îI™ + «¾œo‚vR¡ +·ä7ˆªle´IâxµWEÚX(§)MMPŠ2X‰€ëVÇ—iˆÜc¹¬¼63Z™ÝRN_A¿ÌJ,uÊÑÙ„8UxÐÑmp Æ„­q¦3¶wÀh<°ÕÕ0 +ŒŒ®SYž§“‡1d3O¯Dî蟋5VezÀpÝÜðЂ‡NZ%Ú 6Á ªX…¡ˆñœS+ÕÔËÜž›Çñ…m¾uû?^o²ú:$yÀ5¶‚üDXô¨;‹9i: WåÂV_Ê*‹Ìj¬uèpòäq“ï;Ù³80&$2‡‚6‘¡N¯XëÑod±’ê;½îꦃ™Û•£oNþ6ý<úhõã•Ë¾ ’;#s-'×5M]«½KlöÇ0ùüAd 2®VÂ&šò§FæÜØð¼|+g~è„÷ƒ`yžesZõ×íw¿fnÂMãâ@‹Õ*Üäqë¸bxÑñƒÍ aÁ©äA¬¹`-}­"ÕÁaÐjÔtXR=3ˆzÑ·Ì¢4%§aîªU4•\H/9âûX© ºÆÕÐ7ù|cràçMº…èü§ýK±¹øŽ>ÐyªªI\@çÍ›²l†‡ZòSµ±Yú´ <ä®[*f¡Bî:º +h:°—?þ^ÐûØþ ™Ñe[—y>›Z›æ£hWÇþÄC$ ¯zðÖqðÇ(†X†bnWï©ó«hÐç Ip ÖRV *Scxkdåk¹§|ÿGŒúoÐCˆ“÷«[‘:&©ÅÃåZsç¼~Àƒ=T ¹oü•²ÂöÂF8Å2m; œ-m'À01µPd%è= Î!£Ý ’¿Éa, §lnRcsajê§óñgÿóÖ¦wŸï|åÖ‹§^rn82~èè†×+»ÿlËâ‡Ï_œ<ýÕËä¹?¾5|ñõ±›K‡?{IšC¾LÍ¢…èÛÇBÐy +‘Åœj¸F +Õ”²¦<ȩЫ8{!6ªØ(:YbÄ´ÕZ±W9”RIfÔ–?I5E·úy½+F ÒÂÓi$»Îy5|È|°|†³Gv~òÔ³‘G¾ß§R…'32x7…UÜ…úããýÇ=»˜Ø™Ð©2§(&…O~œùxßDºü”=˜90nY}/ åÍL‰Ñí¿š=}9ÐY®“ò7¼Ç¼Ü 刑bä À$4FRç@¥ +½†Ss[NA;bK5؉*¡Ú¤J¤ØíWÀÉêó ‹LHrY¶1bdÖ"­eÉž ,a²â†üËåcÄÑ×^Ý"ø9U$+dÍ#­Ï>GÞí:º1¾°»öÉu™Sè¿GÍéK'~×8ël&>ºS8V–[h*¯Š?À†ÁÄÒÜ®ßì«ï"rJ›M«‰¨à¾+’4š42++°Õë8§Cñ,¨*crÆ! Ù} «5*œR“[kÇ9 ÖR³åc¾8¯õx'»8UÏŽ®±æ{}C×{*_MšÈ¼¹RsòjÝÁø‰V1ZnQ«ÍÓ’øvœÌ‡hÑ#·\­"•vÖRj"ß”ˆö!Dà·í:šÁ5¹®X­“’¥L'¡šä‹IÕNá”Ñß4fk,@7lz{ëô±:¿µmý?0~ó}ǪáÕMW¶ïýõùƒÚ{r¡ˆEƒÃÃÛûk» ”j]™Ê¶}øG'‚ÉErü\kžßóÔ‹ý5õ‡¥[øîþ/P· ƒDèX„ŠP‰I!¡`ôHç2ËõTi(ÄZ@ÍÁJ +§Ô¸‡UZBæ›ÜpDFê v´4 [èÊқʙv“™´™¯kâ¡vËfÓ®OÉ"¥§ëøH·Ýg|ç¹õ³éu%ÇNóߥ©* Uœ“ó~›X¯A H±Û]å3ÕÂœƒó#“U ºbìCaHl#-‰yÊi¦WPáA…‡¤±@Ôîy¡¦$Gÿ{¨¢æAGÞ%zÊ•ß9¶e>\38çä¸8—Ìêþ<÷亃} ?1ˆ6æ,}vx&ÒóÔ›ƒ—ìA_R}äH¡~Ñn¸rÎÎi¸"@=ÍÚy«É¨×i•#nV>…fÿU ;8Q5ò£LÙˆîTbÔI4W~Êo|©¯-üvæÇ…¥¦Dßœ»rOß–:í­I~H¨'m¶)Qt„ðçé/ü'x2js"*Š) +G)Òmñ§ßûóú¿M„Bäò‡ÉìäÌ3p›F¢QôDm4©«áª9WÁòl‰¼æêÀE nPïšVîCµÒÕ`äˆnõÈ°Y„a=é?NrÕ’’FÁ¯„ñÀÿ±_î1m]wÿ{¯¯\À`ó0Æ6Æp Û`‡WC½,b„ FÊJ€4²$Í£),Ú²(êÚ$UY7TeÑT¡(E(Š"&M(Š*µÙÖNU•u›¢­ÊPþh"eÕþh§¨³ï¹×&ŽAm¥iš&ÅÖG¿ß¹÷<~¯{ν5YÕ;­û³º¶F‡Ý¥û¢õžM¾³Ž’ swü«Éü‡½•Ýã•Æ»º+Ë WrªÙ„°µflùêûæ,w~ë±OßÝ÷Ûßc—p#z²<î®w=¾i+¶Ú–?,…ß¾•/ÅGðÛGÁÖrO¶btÆ<¯©ÄdŘ¯¼ÌSZâtØ +ERty¢Žù“.ã5·ÖÈ’(ëË+DOã. +ÜÄ.€¯D¡“Õ87„ŠÃf{þwJrÊþú¦k§ášÇ]Ì_˜~Ógý΋ñGÐ"âûýzµæ$!3Ì:>ð¿ªD\l„íË/¥°owí?ØpC,·-ßúPk ÔØZå´S2cúL“ɤ7E`‰Ïã´Ù²õ:‘²û²xÊšRS¶¡Ö»6S, þTDp>…ž63øµ¶(ó…Ï•ÞúÖ½%î=ÑïöÆø€wû±u¡€ÝµDv„]5ž®»ùAOYçK¾±ÎÎ-–ÓÕׄ^Wn­a5 GÎÄžÝq°Åu!×!õŒ¶Ÿ|O( W=ÎR¨¬*>3¡½E‹×Å9䨹5¤g6Áès NFÌ-7å,Lˆf©sn–`2湎B™‘~¯ÞÂ’ ócÃ02wOSW^¦½`kcሻ¯žp]$¨¾EÄKË'™õÔ/õÞí\üÓösaÇÂÊ›Yg$þ·£²­E‘¯Í¼´§ìP›x"vÛêš®½Þ m¾sÛØÜP¯¥ôì¸ð35|ïë'Ù'º+d"k«b`ÊiÁH:¦hÙÀã)€9ªEì¹>×–FoO‡}P7°¸?f,¶Ùc©³ù,L¯œ6˜%#9‹…;Äw>y¡Ï5™]5î.oóï›|&>ƒ@#â¤ø¦:ƒ…ÊZ‹rô +Srs²2Lz¼€iÆéX^¢J6ª–ÉšaÞUís¾ž]º7jzøJP‹¸±‹÷ %ùöøÇëßpí‰53ð½‹53Y¾bTò-Y™ŠÉ(ó5 ¬YôxMøñŒ 9¢ƒ*jêbŸ«öY¿¤zÅä>§{S¥]DË>Ä}lŸ|«SõòOÁ¼à‘c? +óÆ2bFì]‰„‰TÐjö‹Œd&í&7]â]˜¹ëÝÅHB×ùŽ·ä¦=ÙÍ_h ôßÒôò ƒß˜ UÆL‰ºÛË3DÆŠ¥éø%ƒ_½šòcoË)—N]щÈZäyê’h›¥“Â,M€¨è ¨t‡FÐ߶ò´çп L˜N. ;ˆ‚>>ð¡ÿË|,Æœàó€!ñ<íÒ}I¬å’îQ=2S-¨zµtºÌPµ0fWu·´{úIrË—É#·£½€>º]ÐC>%/æ³éÞ'3âeÖõ’äìžÆº—!ûU¸ï³´YµõÐÊ"ì©ÇümâÕãz lˆJ3¤;ÉÏî®\EÛÏu½~à:²•n‘YšÀùÅç¨E¸;n“W:CŠ|}ÜäÃ8›¤ÅmLº#„ ûøúªM§è,ÚÈA5·ŒÀî»[9üž±‚bÜ7á2½¬©1PpÝÊzãW ë1¶ŸÃǪÜa +ŸË ù'é¨[µ ãå_QTè ?·‡ÇEú„jxþÑ> l‰|™¸<ä¨2€öp"w#‰kœWÔºÆZÃ$ ý÷_'S¯´‡ë›ÅÆb¼Ìë uÂáùç¹_ýù•‡¼ÔZHA­…P/Žd-¤»fåY¬‡zHEõ{¹;ŽkuºÙL-¼x-¤‚Øùxü„Ž•G ¦Ö@²Òá±:ŽZáõ +¯‡[ )ì\¹‡8]M$KA.?pܸTÍ1?j“ûËç–»QW·µZWímPŸ=Ur;Õxñ~íj]­õo˜§ûº:O:ëøº^üµ8­Æë3þì¤ç³&> ¿ÒQã–FâÙ~‚uíC¼ÒùÆë~Ãøý¯âL´ Š}9y òøúMÈS÷ˆâSÚõøf´¶âüxyr÷bW¡_Õô¥;è? } ²í!IƒWåGš\z˜`:!ç5{'yM.¥Ãû¿ƒØ$í_»¡!äƒc)À6áŸDbˆ‹4ŽS±‡d!À' þ·ØŒ3r¶:+¸N”Q ¦×GÁÇlæëDYÍDÙ¥8VçœÝD¹˜Ó‚¹­¦> ÊÇöV`8‡ _öŠ±EÈ‹ý'DÅ[ˆÁ}"ç¿4\s_M pÿœ¨´‘È¿ÊPZe&*Ç<%àD•GpÌâ¾±ô—UÁÎ*䯾mÄÚ5Ø¡kkÁ+8Dê#ªƒÿuqlõïý÷ã( +#gaä:ÒœàðSžò”§ü_Á¿ãÞ¦IŸø|Rðå…ˆ•Óü» ךzâ›KÓEÊ^Õ%èÙ ]†æLè|Îjôd’Qm'u†I] ,Ú–ÐE\ÿ^B— %tú/:Ÿó×=ÛÛÚ¶µû»¾0zøù¯nRm§6ü·á˜õS ÒAðÒazžºií§êµc_Ó÷?¹+jÑ[¹HÁ5ß½øµçnÉh*¬ÍÌ—š¦Ì™§¤sâ«‘ŸJSSÝ™:?/6Ÿqøýÿ`“5M +endstream +endobj +1095 0 obj +<< +/Filter /FlateDecode +/Length 3158 +/Subtype /Type1C +>> +stream +H‰|iPi¶›$Gb#¤±»Q@FÅ…Sk< Ž‚ˆ®@€Â@t¼² +HQ¼qe×kGÝqf´¬²\u]·Æ]_³[µv쯩ï«WïøÞõ½Ç„nŽã“£5ª¤eªÍ£^›o4|®ÌÕfä¸D,GáœLÈù#Q$Úã'òÿW¹'Àû‰wüƳ^˜Žÿüz©¡€WÍÚ\ĆEDÌ uÁùcpa(;wÎœ9cp>»$Ó®c·˜Šty&6:?Ã`,0µEºÌYì’Ü\vÌ„‰5êL:£ÙÅüo@¬ÞÄêôE›uFVË ³ô¼¾Q—ɵ™º<­1‡5¸$ÿGnú W¬>Ÿåm±«óõ.*±ˆgšXm~ælÞŠaÌK†¡8¿È¨×™fÍ^‘˜´¥@Ç.b3u›0 ç6Þ ›èŽàØL ûÃæá˜Rˆ©0,Ã4,Qˆ%cXÿ¯˜‹ÇŒ˜ëÀFp +ÏÄ﹑nn¯ã……ÉÂná…ïDkD—ˆ9Ä)â8]|U¢‘l—pŸì®w?ë!ðH÷èðtóügIyÍ5î¯×p\Ô¹ê‘øÑjv£A)`¿ÞˆEý$¸ˆÑ}âQ"u âi‚ë#]rQRtGŠJ;ÜÅ«à–¼ñªû׳€£¨rŸ¯ƒ ²‚$R)àŽ;Á!pÂ$ÿÜîb^Ñ›ðH@¨…¼uñò-æ¶M{q%µ2-Mwqã-FjŠ ?¼ T*\™A"µ-@Ë⊀8Xú‚ "c`1ZÅ ?áÕ5š‚XC\JrÞø×2àïüþ*-u˜Gè, €Å”#4 +&&¢ÉaÒM‘Ö@0'‚žó¾¸FoF%vñzEO†?ÿÈ¿šû …ÌŠÈÍZG÷ RÔt¦§å:u·-{cS©TȉþôA¸˜{*L‡I@€¿܇ +eoÎv’ÆóÍ/)X øSð|®TaìbÙß9ÕÕÿ@þfáC¶¨¨0>Í›¯k}ä³bf>f“Ò·²éoˆ†áë ß{¢öhí1«E’+ úª™†ÚC{öÓ-‡Zg¨Á߯KY]˜¶Ñõ/œ ‚ñ+\±à +Ÿ + +†KV1ª­Au\§ÆÒ–rJçå„XÎWžDsA-{ §-$,üðƽˆïMt¸Šôd°­­ÿ†ü'õk´ùMS""Á¹æûÚ*–½T奭QÈÃÍ€ô~’)yçÎ?éì:È|·ãlι.?_KËžTqJ²»QŸ•S˜_XɤÕmnî”w8Z/ÑÒr`ÞÀDPƒ7Þ Q0“/Á‹äQ[“õD-ˆí¯÷†$ï]x>rTÀƒ‚YD"ßË>Ýè:r²™Þmµl*ÈJ3ùf—¦XRmy¶m5%v $päPCÜZSb³TUÐeóÖÍÔê¢+W˜›¶ö³(éër˜ÁMå?ë4$¸s0´ÖWl¤ÐgÊaоõñú…;œL'LÕÔõ‹)”‚”h<ª@Q @aðíÓÛõ‡›)lØ,ÊWz¢¡’Ã{ÈÊÎÁªø€[ÓàcænoßK˜"‡Ï’Ÿ/饻U‘DR_(ª*V1&‘öÇì­`?iÐdº ¹Û™e5ö +FŠ´ü‡—¸l †GÂɇCôH¸Xz¼B¸Æÿñ½95„ Ã\#Š&¤ŸøéØ $,_^³ø±ö摽­Ä¦²ÈãLã¢ck–H@Clo.~o~P6hº”Ú Ù#îo¸=ô\~×ô]ZݵvI]¦¨Ü¹–(4ò¸ý45dë0¬•¯ËÔGÑio9¿<øùé†X~4‚ómdI×Ï槬{õ7¼MºƒÆ_fÂÛ³êNËÎÆû×J··Ò] jLM¨¤búlä9ýOj 2˜ ¥Ùr}žY£R9é´´«ˆiæv3ƒ[7H½Z`ˆa©LÁY½+›¬Ý=rˆÄø·hqàrÃ×9t;‹ÚŽ÷Qwê‹K˜oÄè òX…|ä²Ôˆaå‡þžúsônB¦8˜&’5˜ACVÔTXwÒ; [ +©<óѶKé ø#ÜÌá@CF‰× ~χXÙVHó–õì»ÍïͤŽÒ>Š_v—°‚û‚wÈR¯7m20Vp Õh/!ÛgU[sh¾Å;Èýµü¡;÷:›;©¡–u*FÖ³XŸñU–áTÛ.Ú¶Ïvà€\ºªœ_I˜Âï~µ€ ƒ©dEqau.¥NìúåáÕîûgNVî:Æ4ƒ¯èðæ´o³(”Âw$‹Â~ ……½ûŽ8ÇBŸ†|øÖÛS\±·ñ¥™*Yç1²žDû¬â¶âÔ£«)$™Š"j4û/Á@ÜüÕG…E23@7Se:dÝig*Oµ-4ÚÄGK +Z`mÁZyXZž•÷cy…]˲»Pw¡³¼k)ï× +»*-±TLS¡[üaRÏà­‰w!þ¸¾œ{Î÷|÷œ»Ô»0›1eK4ÇHÈáûe•ü Å8±”JVl¸jÐò9úüÂL.1Ãñhµÿîw“ýyÙÁTg¬Ó©è-(—þ¼0ùP¼Þs—!†m”šnª€‹Oô:Ž‚…Žþq—W,ö%¾Dujêg)\l|ï”÷Žf‡{œóÜ¢í|¾@ÿŠÒáÀ§UÀ‰»j±šMùYd™gúó„t¦õ½Ï¡½Aþ(ù=9 +çíŽÉAÁ\JžLÌŠIHèêÈå³Ñ~¢xÜOlw…¥o;6Ÿ¨ ‡b6›gy‡zYÑXU¯å ôÅ¥9\bîW+ólcbzf¤¯,ËÊ›t¦Z,åáA+jÖà¤Û‚k?‹>²ˆ›$R¿mÌ&df&%¥/,ŽOÞœ Yã ÜÎ…í$ÍNô‚Do'¡h’†ñKEà/ºüžøxas;qDÉlÂ%m×oð–6ûçèÈü@@=8h”j1µ7µð}ÖήÎÑ™¥P;Æg(د^5'OWSÄÖ”j4EÒY–4˽}1¹¸B¸F2NÝ2‘æ æøÓ*z 3øÄ]‡3¸¯³.~$³ÔÍÔÚÔÌwYÛícÜLwN¼«z´« +·¨wS’ +ðŠbfëî(äÿŒEœÆ 6B@í÷d#‹Nøû¡£èG°3xØ÷ žG¯ü…‚=bØ»½qQ' +>JN(^|¸Ú½º$Ð1±-8.jniúvÈ1¦]b‹p’L-æfÞÑ<Þ;ÏuµêmÓ ¡cj¬Ñ«¸K±Ea….­_è·LšÓÌ)¡*úŒ^‚.Øë6 aãî>hg5SËÕ88üpíw¡áÇŒ¯ßö8ÛUÕÒ®êî´9æªÄ>~h¢íÊ9›šCì;‘¯ ñgà…lùÊuªŠOkÓ/Ätwäó4b´ˆ^.“IPz¯C$S°.o±Aj¤\FaTX{Ò`._xóvÅ<7çøÜÒ#0p€2h« åÜÅjûþ¯ý Ê8HÑOE@„ËaÞ÷pý±øry»›†™E3”¶¡öšŽ/×U–ds—ÊFï Њ¢1Ž|W"áŧ3ÎþN¾‰dÊ­§ ! Ó†…5ý¥Ž£À¬Vy˜)°â„ñ\$à Q²H ³dJ'˜ mš>KÙ£žÔOé&µSBº’.6‚\_7»ãn÷‘cðŒ¹b&‡n ŒbÛú+ÿ~þ&ò…sõTî'%E¹YÈQÒW%Y” P’$»D¢ iU¢0T.Aðä¡uÉ“ïIKUx{@éÑ{@!µ)òÚ>ÙÂþ'À^ÉLÉ +endstream +endobj +1096 0 obj +<< +/Filter /FlateDecode +/Length 588 +/Subtype /Type1C +>> +stream +H‰|POHqžŸ;;®¹hV“Ò„óÃ"ðÿ&‚-Á’.•©¸ý¡‹6ëÌìéŒÌL­{Xd˜£†)ÙŠÜ‚;‡‡±aaS±ó†'þ½kV4;­˜XrÍ”æΛŠŒmS’•ɼ† Ïù‡ªÿY…5»Yø¢®y,a»¢…%]nuS Ëq]·MM±ZZO%.dG| ˊʸUÉT1ûý¿1=ŒÎPµ3•/8? +ÈÅÃ…@žu¦¶úv¦8˜¡oxƒûAøÆQL×xðÈνÒnÀï!F]Î9/y¯£«€Üt¡UhÀî ~åéóµWÚ3iHU¯\ZÔ–Ä +'6¬Ó,z5‚šè[Gx*ôÒzÚK¯Ò¨ûõurК†8moQ–_žR‘ÖçâÉÁ±Ð4-Bãí…K‚÷2ßÝ Aø€ƒ¶jyúKÑàôì\~^ø´®·Ÿ”’çÒÚb‰™CÁÜ“ÂøŠu_6aï»Ì‹Ô¢¨.öÏwB““ù›Â„‚p‚«'NŽ@=!ä.áèUòž”ºÒWzLBT%ŸIYíBr0\–—wAuyq>þ#ÀE„ +endstream +endobj +1097 0 obj +<< +/Filter /FlateDecode +/Length 4693 +/Subtype /Type1C +>> +stream +H‰|”yPwÇ»iºg„¦gtzV-£¢ˆ„K$xp£Žr )E Ì(r xl"¬A®²Ë#ĉ  X¢&*Ŭ€‡\£¸DVÝÒÚ˜¼PÙžIª6¤¶ºêÕï½÷{ŸßñúûÃ1K Çñ%1[ÞÝ~D£ŽWÈ5©ïíV&e&ÇkLI–[ŠsN–Ü2­G¥oß¾ #¡Ëþcwm)Ýl8n9ö<1.qkj_Ÿ¤ÒÊÖ{y¹:›¬›Ùz8Ë\]\\ÌÖM¶Y‘ú‘R~$C«<”! NIHÕ¤¥jâµJÅZÙæäd™‘!Ó(3”š,Sð—]ÉÔ2¥Z«Rjdñ|2IÍ×k” +™V¯PŠ×”¥š2¿qÿÏR2uŠŒgÉ"SÔ&/\Ë3dñ)Šu<%Õ¼JBjfŠV£Vf¬]q$M)ó”)”‰†óFa˜Ž-aËIìæŒcë0l=†m°Ä¶±0[<Ã|ùËŶcrœÀÝp~?ßÀ,$¾',f g"à,Å–_’v¤œ¬¤ì¨}Ô5jŒšЂ`AœàŠ& ï +¿·r²ÚmÕ¹À}Aö‚koëc6Ö6r›<½ÍÐÂÐ…å ‰üDM"°Ýn[f;²ÈaÑñEvkìâì#Š[¹—­8oW¶Å–\Q>W@A)êd/”“0K!Ò3`ræþ*˜£ö™Çà‹xŸâÚÓ™<z!‚ÜOõIYP«¯ÑC²Þ¾~|@Ø›úéªØi\ü¿m rd鶴X72*ùn¨–±¦ì¢.Ò‚(æ~u°iÂûéÛwE$w—HùìX]Ï)—skîg†³7º‘áÔœý¼Ér‹M ähfŽÿÂŒã™òß2«ÌÌȃ]ã:k¬žgŠPÍ;Yx÷#¢!L˜Gr(B1B݇º<¥ýÔ¶WàbÖƒ£áß¿À*1…2݆=bˆ ‡Ð1i 5´úÈŠQPrܶšŸÿúÝ,¼\‰dÅ\¸yˆê‰5¹N9[Òd™r¡éàÏ=x=õÐ΄@q€/É{¼ ¬ r˜æê¯.7gÔªTšôĤš´K¬©Œ›³ñ"xEô&0ÐhT“j˜W“¢œ>®±¿<g§¨àï9½‡lP +‹–|¬–ÀÊ1A:$lZÆž dfZ–#7ä½ùúÑ/`ø·ÿë +:—ÅõŒgÛCÎÝ 9ŽF©E÷£å|ä}²„¸Ó¸)‚Ûïh@_—Ún‘° œ&_‚xVþÉüBS•û¤¶“çëo×ß•¼lØÌ­ñó@ÞÈ5 È)R Ê„¿õ‚bÐ&§ƒgèÙkLVC·Ö —Ñ™fBîm¬dKôëoë®v<ìFþÁZZJV]h­n“Œ6îöõ>ÊÆߦèÙ‰1…‹ŽÔ©¶"R²c×ùJé0àßCxÅ4¨Ç n¥#øÏô»p«èúÜrÜAþ¤†"¦D ýl}å…ª+KJ©Bu‘Z-F‡Ì½Òp0Nœ¿QÊ n*õ¥5ueÍplßé¡cݶEzÊ£ª*Ó¤™AdöÅ{ÙƒøÃëç@Å·ï©ckb>‘d|\Xø'ö07÷‘ïàÖü9¶À`¡]š"g(¸ÌM“üi»¹k]öÍOCÆ!ã»izÊsXôrÈ‘˜ï¶T@?ùöÊWwïˆGÃF=¢ÜüW†_ RKu$=½Q»ËKì<æ K¥%ÝŒgLgo)û ¥uøïÒ)Í¥8hO¬”~¢ã®1##£åû³~U±—zÄíWo¤¢ÜÇàýn?Ä[&áÌ4ñ"—9WtA×ðÙ@y}ëma÷ƒ[¯`…¼½CKÐW„![D<ÞV=mµ7.KK©ã¾É»÷+UfíùôPAfáá!¸qu̳wD|\{ò«ÐîM‘K>ˆí}¦ï}Ìš•g‡ÁîWõÁs“ü.±ÍEÚZ•Ä¤@•IèGËß ‹:øMÕOxáœçîÓO8P1CHEòïèQ£;¹œBGæÝɧԨȳ}L/D“ôì-Ÿ·œº*,¡N)N%TÄõ¢('Ñ'y}p¦2ÚOBæTÐ3š.aòë¾É¿'¡ß€ÅpÕõ›lScõNñ+?}h¥” 7X{½£G¬Ïºªª•6ŇW¸IvìÌ;¡d'åLé™êÒ«’©{É>!‘®c}¨`Ë!Š~ó|D¹nçõÉ]éQVt>×À}c8”mùÝÏÕÎ0GU‘9Qäéü#xÿ›×àÚ~óø±F–n>7HÒý§µQg=$H‰Vð_J‡ÈvuWV6°" ò¸ëýøð$g=Cð»?y£­àÿÐÔÕÅv=hz +bÀUÿÜyGzGîZ‡ì$ay'¢ØÉPæ³ê¦²¯%ötÚPÄ¢U+ÐõA]Y¦TVl€ü!Px0ÁmâœTj¨7Ìaóîœ-ÿA>TP¢@¾C 5Ïvœ„N(Bå …:ú™¡þsYF÷lsÖèÎÌ»OÝ¢OþäKNQÝÿeºÊƒ¢¸³p&c÷H’šÚ¢kHœ®íŽP +xÈ!*GÔ”‚"¢ ( °¹F`0fp\b¸dä’/Œ ÷%AatÝXñµû#Uûw­Ú»ê÷}ï}ï½ï½~'Ðñ;‰ +¹/@õúˆDô÷ø˜“Q'#—)à¡-)Ü€½ðåÿ^qŸŽ Fî%þúûi ­b¹î·¸~›„ç“ÔA°6FK”iÓL¦ªz«Æ¹eó2AÏ ý»õQ I™ª7þ¼ŽQf„ ùŒ/CaðŒXóçzRs*„Jƒ¨úß/i%eééÑríu¶º¦¸µSÜ£ýÛe¦6ЭĎÞö]êO쌛(« 2³Ž~ÑåomåºßôX”úŒ”ÆcDM/d÷ý¢f’WÔ-±:g_à‘#]ú„L¼˜Ðó,a0¬u_ñÒLÁPYû½YñMéõ.1uîEV´»[Ú©ÃìÌQVþ¥¬&z>£+ØVì¼w¿cM +w§ s­Ã!qÆízŸ¥Æ°ÇGÕI{h°{òæ•ÇD6³Vµ’ª.ñõš;óš¸äR†Ò”á+ +÷)ÜN£ÏmL×ô{ÂÇAìÜÑÚ#nâûZ»{–”1Blg Ø—ýñÎó7Ñs y°˜¾Há¼|ˆûwoTôüQ\åÅåüÆX ¼id¸¿Ú,š ¥«‹ùºÝ°šáÌÂÌÓO¶ÚÀ8‹»MEÀˆ ¤âáµ"‰tu5Üæøz©ÓR%yrüÄä±9S˜þb- x°…[å=!±pº„=Æ5z˜¦dÜF“Ô+ÊÆ&|BŽ¼F{<â#™¢´º%_C¿Êù6M w•™+2SÚmmÛ_ܬ®«ÀFɲ÷I`/¢´§”)ŠSŒ$10Ð>\q÷ðŠ^(Ya¾|08–s„Ð8㑨ÕS2XaBi³™¤km{Ä O[X0W­ÿ'úŒvò:êÆ*á®íâ$¦ðWú*C˜9¨ågæªaúŠÛ;ègmV±”ñ¿Ûü•ëþ¦ÎxFù‹2'G,ü2eûhW‡w•ù”H~"$ɇ^ýí,yÝ1 üÖ+òäólI?‘å—·FÖ+°3["‹ç°²çFaîVxV>Ë9"®›…J=¥åÌßùŠP“RPãS³…FŸ˜[ ;‹ÌŸX€Ñø½ÆÛŒGšeOŒ“Š+ÚkbnR`³˜%JÌHV$3”Ö%Á;h/½æÀÄË··Íõ¶úyå±™r•L.z§ôƒc˜uñê¦ gšÏI V¤:«Î/Ï‹¬Ñr;$@+ÑÊYK°»U˜_ÅȺˆÄ`¹mó>U²ª.Qgvýä,ýªÌÖ+/ŠBÜtv}°iˆ79Ã'ÎŒúÑEÁƒs½£åÅi©yLn?‘‘FK'…†°’ Ùîâè;ûíÂ,<¦}ðn@þ^„òj‚[ÇIEÔBúVBI6Äú5cgåi…6 ±n|6z³VSÁª½I$t9¸Îݧ¸$ÔpdDÖw'þJwöç7·°-M¥ýÀCµ€š¸§®W×0_£*‘LŸ&c¼¤¾?xcÆŸ³Ô,éšê¾°¿ÉJV%ÉÄÂÓ8ŸM#¸"¼=Èõü=hÈ"UÞ™\¦µPÓp—~\éâÄ¢*=ö/p0kØ–"‹d"d11‰'–*Ꭰ¶ÔE÷/àßž¥žz +v&œÔfQŠ/¸æwö¢Ð訰ðÒ¨ªšÒ²KlUlY#´{ÿ203VÒ÷퟾3°‹Ô´’oI|˜Õ; –“È9$ÆÇÇ&Ç/Sb¾aìÖ¾† ñ¾óÅ!Àe ç0ŒEÑA¸ÂtÔĈ‰çR .8“Ç4ç74ß¡ûª½œYtM7…™…Y¹Ìµ‚ú«môPµ—‹*tP'Ç5M®~¡É1ǘ8™4VÇýn¬Oƒ ípÈß/‚U”6ý!áLfª$>ô3Ðä£Æ ú58³rm¦ñW¬ß.¬ße=4 `“YÃN¯C~QŒ’¤4i§8©ò^î“^<\Ðò„UÜ"$^¾­Gk_¯†ÏÁþòv€ÅÚ׈e•.¢7fÏÍÑÞnÏ£?æ5/Þ`?@ÛbÁ}€ãÊ?ÂÂòÍ@¡š»Å3~¢Ü̼̆Zè-j¿ÖA?½±aâ{cåö}Sg«ÌQæ扅?¿§ä>”˜äÎsé¹ë°MÕ¤nd6Ô‚ÂÐÒ-Q>W7Ó+‘rAæó–@<¼]×z‘U“ \’¤ˆOOföÄùõ¤WùM½Þ±¹Þ?ï÷cœ˜,")–øëÇò¸Ò¢:Gð¦ÊÁ +ç«s™ÞÜæ–ûtîÙ åY–Ê{, :Õ?þ¤J¡÷~/Ùæ“T¥â¹¡V‡T¾žÉ&¥Ç ò­)Oóë/ˆâªµI·hôvLû7Ù_fÝÊŽ7ˆk+/ÝÔÔ$$ŸcJ»‰Âÿ|_ÚÌÍÕÉ£ñÀLÛU  u=ìW\‰ô¢S†úxOuü§Ü‚-ݼs <Ïú—G2Qç¯$5ÒÕg²‹Øô^B!WDÓ¾ñÕ,äƒq2V L—H ³`<¨™žÒp'°Ø 62A‘–Ä%H${i‡ã÷çY8oƒjÈy.à7Ýõ æ(=ãH<$uÍmbá–Óúï¡ò¸CTDÆ·E)1E‚''%¾"×¢r¼È'Êÿ#Ž¶ÆÍu›«·ë|_"Á÷ݳûþ÷c/M–¹?ƒ…7ÌiUj½Ívó{°É7gÿ¬½Ó«ÓƒfFÏ ½ú»Zâ6Ûw ©&ln¿Û«ƒê"š£$;ØöÔî«<êð½M‘ÍæwwuxuxH¼ioÝÞÚƒÞß»$øôÁ9ŸqòæÙ k,~7þvøÝÍúØúÿXÄ'€j +HM1ÿìÕ¥sÚZgÊMÕ…“²¥“¡5E5¨¦ø¿€]øÍõyÇ.ÌŸ× +¬Oæža\S8%_:4¹*?_>5µ:À]ª\Ÿ<ªVê§ÿ¨˜þ]oúô鋧³ýN›~c:»Ü‚¤xÎnîs\¹÷óðþ˜*òc¿(@€¸ó«â +endstream +endobj +1098 0 obj +[1114 0 R] +endobj +1099 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1100 0 obj +<< +/Filter /FlateDecode +/Length 322 +>> +stream +H‰\’ÏjÃ0 Æï~ +×CIš´…i 9ìëö©­tÅ1NzÈÛO²J3$úŸ,ËNêæи~†ä=ŒæŒ3t½³§ñ ¯½S› loæû,þÍÐz•ù¼L3ëFU–|Ðâ4‡žžíxÁ•JÞ‚Åл+<}Õç$ç›÷?8 ›!…ª‹%ziýk; $Ѷn,­÷ó²&ÏŸâsñYœo¤3Zœ|k0´îŠªLiTPžhT +ý·ž¥b»tæ» ªÌXœ¦ˆÂæ£ð‘8MΚ|'¼#Þæ‘)ï…÷̵pM¬E£Y£Å«Ù« á‚Y¼š½Z¼:z¥Í5è“0ª,²Èˆ%Áù‹­ð–Yö*x¯B ëØûɹ5tƒð軹…@-×{Í]î>^‚=‹?õ+ÀïÏœ/ +endstream +endobj +1101 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1102 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1103 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/A/D/F/R/S/a/b/c/d/e/four/i/m/n/o/p/r/s/space/t/two/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1480 0 R +/FontName /VYRODH+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1104 0 obj +<< +/Filter /FlateDecode +/Length 296 +>> +stream +H‰\‘ÏŠÃ Æï>ÅÛC1ISKAK·…ö›ÝHuÒ6FŒ=äíwÔÒ…t~2ó ã'?¶Ï­5ø»ŸT‡cµÇyºy…pÁ«±¬¬@î·tª±wŒ“¸[æ€ck‡‰I üƒ’s𠬞ôtÁ5ão^£7ö +«¯c·ÞÝœûÁm€š4Ôè¥w¯ýˆÀ“lÓjÊ›°lHóWñ¹8„*ÝË<Œš4ήWè{{E& Z È3­†¡Õÿòee—A}÷žÉ*&ë21â:sYdÄ»*1&E®±^l3o#g­ˆZ±Ë¼‹|È|ˆ|Ê|Š|ÎLË}î³}ö¹…øûÄñIä<<üR7ïɪô=ɣ莱øøA79 UÜìW€†Æ +endstream +endobj +1105 0 obj +<< +/Filter /FlateDecode +/Length 7396 +/Length1 10726 +>> +stream +H‰ÄVkTSWþÎ}$<$^bÂ% ð ø„˜H|TäQ°j /¡‚€RE±¢u¬jKk«µ´Uk­ƒÖÚ ¶jÕªhíÔªõÑ©N;õǬy-ÿ̬åš5ËÇfßè´Î´Îß¹¹'ûì}Îùöãìsö†5àQ2»,Ë;¾“$ßS+®kõµ÷_ª°t€ÿ{ݲNÓÒÒ6 &’,³±}a+§;åT3‰ÿí–%+‡€ d fkSƒ¯¾qóôE€éáå5‘@³'þ&ñÉM­]Ï'NÍ̯ii«ó!|ñó4´ŒøúV_W;»‡»@êw4ß´Ø×Ú°þ¹?‰¿CúÚÛ–vŽô@ÚNe¼}IC;æu] þ”‚O¿ãŽA¤¹ý¬ð§Ý§B*9=ÀqAø ¦”Eâhùçe×HÂF¢(ZÔcqÔTx $ÊæüçCƒ¼ ªÔAÁ!¡š°ð­Nm0ÆÄÆÅ'ŒJm2'IÉ–”Ô1iéV[fVvŽ=×áÌË;nü„‰“ + +]“Ýž)EÞ©Ó¦Ïxlæ¬âÙ%¥sÊÊ+*¯ªžûļù ž¬ñÕ¾ùÖ¶8|è“£GŽ?ybøÔg§Ï|þÅ—gÏ]8ùÒ•¯nX±r5^<¸~ÍÒzðö‡ ¯Ú°ní+øôâ–®u¨žÝÔxíõþ}-Ë:–´µ·.þ +W—£{ÑÓ@ÓKu Ío¼³uçö]ïí~wïûØ38$Óâç¨õ)(÷] *ZŠ Œ0ëb›„Ù¦ñ椤ؑ‘@4w°9©Öùƒô§O®°—Ù~¶ŸØ>vGù¦@»¨‚AFB¡¡œ GiÔAHZ ŒˆA,âŒB"F“V3’ Q.X‚TŒAÒ‘+lÈD²‘;rá€yÈÇXŒÃxLÀDLB +áÂd¸áÁÁ‹©˜†é˜Ç0³PŒÙ(A)æ  å¨@%Gª1O`æcžD |¨Å5taV¢«ð VS„Ö`-žÅ:üë)ŒhG~‰^¼€x1Ô—ñ +6áU¼†Í؂ױo oâ-¼mØŽx;ñ.vá=ìƯ0€=Ø‹÷±`?>„ŒA á>ÂÇ8ˆC8ŒOpGq Ÿâ8Nà$†q +§ñÎàsü_à,¾Ä9œÇ|…‹¸„˸‚¯ñ|ƒ«hÁ²Gž’§Ð‰å”>Xò@ҊŨ#Ú†v4]ˆ¦f7þ BóO$‹ð4–â%êý¿=WQ¶i)Cܨð§ùsFþ@§9ŸŸ'œnŠFq4—Æ$ÎBp¿Çu|Kk.ÞÒqŒ4DV ¥;Èú­´›}´Ãh×{(–“‡m½FÊ”3•”GÅ”[^Ò5‰²ÐIšFYkVëUÃâ61U4 +¾da—ðªÐ't 9Â(!ˆ?Íä‡ø~~=¿–¯â|8ÂsœŸæ6pë¸n)7—Kã´ì";ÃŽ³ÝlKezÅf¦¢ûÊO–ÿ7qzȃ ù “?zð£ý[^L6;av¢£"õ:mDx˜&4$8H­žc°Q¾{L½µ½’»±Òf¢jâ)ï’‘QeW DI¯–™Gû_"›5ƒ^™K·Yïÿ±Z’{ñ·ÉkjòÕ˼…¨I<’ÏT?èrõ–W™é„9¡º¤Jé“·IV[Š|2J«Ìñ²è[﫯.«’²¤ÛñYÒ Òñht_ý#gŠwáŸ,.¼éôÆq6ë0¹MµÀcRŒì-’y¯¹fJÛf-2ɼäbœèYæ‘<½ Ȃ䎑C_ -¦¨YvùL»åÉñÔWº²7^žV]-‹’› ˜än–9É-kÒclVSQÓ›õ]ŽâÈI71¤¡P“iã{Ý’Ì|n/ÌU^%»jª}6+ yt276k¦ÍzÆf-”£Òmà” +'*…”§;Xr%p“U¨…Ét«9a Oc[Ô *.8‚ÏÈAF¶YgÖ¥Rcts›ÿ驈›…ãwÝJ=ìó×rNá&ÝÚFW Ö„€ëŒ´"‹,.ÌÌfêÎé(àòá|tT"3pNÛ¡SÙ5çÛ\ÅRhHò,Ÿ­Ÿý[ן¿.Í©8qâB÷Ês'*è„®%t‚® Öz˜ ˆ,òßè‘žÉRó q,:*„©++ †ŠJûªòò=Ýþ¾Ž;·||÷NGÎSþ[þ‹{öø¯øo5(ØNVÈ-à”(]ÚꨘPGDdâ¿#óÍj§›ý¥ˆÓ·ÀŽ‘[l??êU ¸H}X‚Bô| np-Z5Y܃Ֆ(•””ÉœŽ¼\»·Óq">…X¶·Ìažd)µ;ÊÖå•–çf–ÎîÉ+M-HÊ-/ã6—9ì••öÜrÒ7ƒŒ©®Se£ªæJË͉Ul´K|¤Å¬ã£™Æž“mNˆ1FëC¼a)¤Þq?2éÙ,—%rÆD¦¼Ñ)R’ÚiÏs:²˜Y­R6⬀Ï/`z=oæ¹¾n16Ù¤K2j³ísÎ×M/Ð,ð7™G9ò&u¿V”㈷Dx«šmfU²pýÞ3Ò†ò©%ɉá¢W¼ZKlòÍÃIFƒŠSxU”T%íºÊÀô÷V³ƒJ¬©fµÂ7äÓªÀ3]…1¡œÇ­aAfæ˜8©8!זΡÑhœc8Wvp kIÎg¢™µÅ»ÕD¦a\G¶Z£â§“¯Š³…™™Ù¹ô¡åÈsê”tpÚ ¹ö¼Àk ÷££ÔáœZ¡áÿâºZcÛ:Ë°ßï\|Ž}|9¶Ï±ÚŽoÇö‰/qâËIâK'qS7ÍR§iCºdkRÒ®)é.eݺ¶+¬…)tZ‹¶‚ú£ !MbÓV±±ýA¢BÚ¯‰!„Ò4‰Pëò}Çi‡°òÃ>9?¾çò>Ïû‘È ³ +yE+÷D +ýU,¡ƒ•nÅ´µ¸KyY1&LñwòõoõÎÌ +âÂÑÙkwf¯ÌϬ©7ÔàiÈX†l#Å˳—Oí{i×Éý¿ JAyÞ>ÿJÕÅ49š³ž“Ó‰Xm.í’/wîÇ«’ãioå·ÇŽ„çƒ+O¬NÑÏz±×ü…1a—«†lMu»°ÆœƒO—aZdð‚£w /b%ÜÈqØÂMäI,q$CÅ "©Ã­#ÒÜøW(űÛ¦€aéëÈ–Ú»cÄÿê§ éÜ3ë;N%OzÉ›íϯ·ïÝŽû~ó«ýü6°>êØöùZÊ¿ucwë•ö'Û!KÞ(Xxcß‘÷¡¸³ÞºÙY’©?Ðwñµ«6™èB>eˆA„x— y@²"_N$. y((; +ã°Ððf#EðR.›– Œcª`ƒ£aÎÇ@³«'Û—+èâˆùxÅ W4çf¥HŒ€5ºXIÔÖp¬äð/—,EÂÈã'A P% ÞnÙç%¿×Ú£ ¯ÍÁþ9¯Ð0ò_;³ÔG›&\ÚJ·] Û´I Þ‘kˆóå+Ò»o4íÞ %3OAƒã¼gÎ,|´8ål¿I›y>3Ìw¿ ½¼©A“½½1RôqMºÃ ]ÇœŒ¦k 5¡DB ÛStÎ#ð\C­m’€è*!Á!àᨪJˆNküš?m`„ s±hTgc˜èü||éîzèé8IÁ™ð Òü%…’Í/™{*–âÇ®–ä}:4qzµ6y¾ÕJ—㼉B_=.ÍöÆKB‡…åwßkº¼ÿAK/Ê‚“ÄÑ´whybæúqÝn—Íâé#ƒ{ülë~x>Æ?…ñßÄøS†‘Ú xàÝNÔeGAà³’ s P! 0`Ðá«dÈñ ¯/G¢œÄ@¦cÜ9ì-F‚'7RÈÇåPPÃÀß°ÆÄ# žlÔôâký6 Mîü¦oÚ›Šö‹&-V'ßy«‰Ät‰®]Lm§µ~­IÓ,«Ç-v[U¼÷^)cGº~SþÍœÄçÇYë–£BX +$…LðAŸ,9íì¸b›ëdlç“É2ˆ¡‡>-æ¤06¤p3aG&<Ôð@õ?–J>×þÂÿj—¥'hn }2Ô±Cò濾{E­_¼Ð°»,R¨ËÚX™]æÐs;á¼ßb¥õ8£–ì}móÜéçTò–³Tƒ7þõû/ÈmuåÁ§Ô1j7TÁ¬…#Ý¢ÉÀ8“&oå£nšrX°EúFv‹Ì€FÈÆz²ÀnV9+Â)jì”UT#|;ãy­J‘8•;Ô£ÂkEDzþÊxÊíwé«™mS'Àq»ÐWOÅzÜu^Ý:º³÷±sáYÑàgŽÉž¨- ÚÓ­»ŽIiÕw¨yýª?x4’e.Ýô¥»mZy`¹}HS¬ Æzð7êOŒw?¾ÁÕ²ªlgigÖ¤X=¼‹Ï8ø¡~´^4ÃÆŠx‘â‘©Sàó³¨ò°tpbX‘„½ N2.Ñ£y™i 7!ž(7)Œ—…oRɲ;,Ùµr¼´r¨7~tŸ¯_9®o¿zÛNÓžÞd¯35\O5Óeý4ß~clÂ#,Mµª­oG|÷Ë–ªþ|]Yô“<©›GÅþù}W<âìviù¥fuþÒÂ*™žEŒ·›šÃ÷ZµŒm@á ±´×e3)"rÐpÒO6 U×TžÒ™ûBž!9;kŒàè™KÖåt³,jçü÷ÖÆ&ÓÒþãÙ‘'¾.ˆu*º+á_ÊD³áéç[»E³Ý_lô¿}àèBÏbÓRöüz©&sã•#3·ú–IJaEÖ|F6iÔ-P +¸(Ot ÏãC¦(¼”·ö˜æø‚õËÈc@yXH»™œÄÿ?Òè ¸|ñ„ãbÆ-#- äðyM÷Ÿ­ø›¾ç©ÈìË9ôÇð¡WÏXIt­ÕÕVÌ ®Ÿ¤o&‹KÊc“ü±‹CžÂ¨­oôÖM¯¥w=—®pòÅ…æŽ'÷%›½í»4½˜¾à’·~¹2°–ÓžšvpÊ_ËIªzªâ Wîýn¼@¦j +³ŸÚ…oIC©– b ÌQÏ¶à °›Äƒ¥¦ìX/ŠNÆ£V3‡ ÜÞ „ßMwBlľceàQfëÚá?~ mÎ LÀðè¾™I ‚—»ô“Ÿ>Uo6¢Ï\Ù:·1Wßiß2Íì)ç?Ÿ©ûÏœçƒí oÑ֘ʽ}èÚjyOfôÒA¶xøJDÒ·tüAbåz ÕZ! )L;$-t4Ôå6YgŠ´‘Ó• ”#…¯•f0Bž Ý ôé†#+%î!’Ëa6RÐòUÀ›#ÆÖQQ¯aœÆÈ£hžÚZpºçå }k«½Íx<òH㡈;M‡³Ü±Íí~ýõ²ô ÃG´ZyöåcÛƒ1ï›´G±«·Â+}¼½{¡,âðÛãT[¥>ÂóQÂ{ñㆃµEÙŒÊc,”!ØÞ¢ðáQYMÀñ KEÙŽÍ™‡–Öo#Mø<8§ðÞ<sàuËÔé¤ÓÍÔB¼²˜Y±g§4‘E‹›&Å¢1ú…j/ĉýš1"“t5Ýr ˆnz“g¤Š±o‹Î0ë1v±±¥û¼³·€ž«`ÚñzÝ+]'ú|éÿ’]­±meø|ß9¾ÛÇ—cßïvœønßÇNˆÝÖmnÎ’†´KJ¨‚ÚFjÖd[é‚”N[GW4-¥ŒÑ¢PE¨ÚT¡Žµ òc@‘&4qS‘†„*ª +ñƒ!¨ŠË{Ží´À‘òÃ_Žå÷}¿çyÞçyæ_§^e]g„Á[_5¦þO£GÎyX[Ô9òûåêÀÒ¤½øù{#uO5¹wB1òÓlÕ^¸˜[Œ„ú ×(u&áté C&ûdyøéÚÛuÕjo|¡6VJp]ú•Úº÷ïsŽL2Ö¯.ûýý$|Ô‘šÎŸáF?¼×}X¥,¼óËÂ^¿£íf™‹è‡·ÇÆá„Ÿ‡á悸Ð"û¸ L‰:&Z§)˜pŒS…`É{mø„3ÆÉôH + Ã+œ‚“ãîï )Ëì¸DkÊíøõÖ~OKE”iÑâë[†¦VJ‚³ø‡—ŒÌv¨›µ÷EdúH¡prµÄnf¦­ÁþðÜͦ#EòDÙF Y +º®üe5èýëû}O›"~vè™*2},D›ÓÃ^€°]äJ‰ú+a?­ø\ú C(eåE‚hi16°ZuÌîåZN\DJLjIT01€ô¢\[¨ÚM vú c25ª)ÖN©÷¾ÇÉ4™ÒÄÖòM¤’@¿××ï¯w¥jèÛ‘0]5ô1õÍæB1gϲššNzË¡P¥ÃépÚFø*¶vu0“<‹Õ`!OD?åh17&›l[øïʦƒƒ¼ÒS +_ÿŽ…‚ßmloÕiˆ 3gÍœSœ¸ åv®< œþÈ©ñÜ¿¬Ñ&;‚²+ef)Cëj²ÒZCC]ÆÀÔb !´â€˜9¼*|Éëê4hU«PËÉ)(ºG4&;Š“ÓI) +ç$šÌ;H>ðc˜H«OÜíl‹Ÿ9QÛ çãf¤ŽV?|Õ¸å)$‹Gz¶,ÕÞ®Qš‘ê™E]йg³ññÆ•×j¹¸zAgŸ/0¨nöê**  Ñ®’C`Ϭ9XÃs/qš.Ï×7Ï÷dÍJ@Ô‹ChxÓAÍ5W÷•E“†ÕÑ"Ú÷M5ÛœNEØEt²L2OLUöjËt‘¿Ö)3,½dοC0ñ# RGkÅ1 +:-N¨¼(ˆìèædÒà +™[áèõxl±DEÂæ‰[Ìj v£˜àB}–7n°WB•…Ò@˜R™#ñÕ•¢²²?Ó°Ú…âÜ  Ë¢ µhÕ”g7ÖÙ€ÿä~ËaÓŸc £·95\$U¢W%ª·èLï’?‚~5„ŸˆW‚º, ›Ó‘eTt(£­2ì5ª–•^BfFÇ…`Gƒ†L§xQ\ƒ¨µC%ƒ#!ø7ìÕÅ{¹ë—Þúâ/ÎÿêÇè7nn~„~JnWlrT ûÃ}¥æÓ÷Þ¼}ô.*ß?EgØoê(d£GÍÏ_Y?ÚŒR,8çQ"†+y7€Ål‚Tk¡»€ü©ìs™‚‹¨z(œ%T«,!ƒšãvlf°­påNÅ¢³‘ÁH]¢´‰»Rt0Ò¬[Ü“>–ˆä„¶÷i%7ô®>9AE¾ßÞëü.#6ñ­k¼²j6_[™Žn,”†ÑYÇ|¦²öäGz秚5A­°†å´æy$îª2Y.:©D„C/ }üZ±Î³üvOäð7†ŠÇööÎväyçžJ™G6¬Ò ‹E›•£ÕJòÊ:qÕ/*Œ@h&°Þ½‰¸[Ñ*CÚ ª- ìOÌ à¤;ÛÙt%¡õ”<77ìúbÿ€ŸëæΉ̘.=>{}³®M¢—ÇCU®À\áöÝÊLµQm~²7©Â­¤¹ôè.þ ©@T*ùTØkÖk(¤ô+T. …?g¥eÊ<x«4C^—Ónæôˆ²„f.‘SÖ×2e®´ÑÔñž ´<zÒM‹KH#BPZðÁPv}€á=Á})—Ó3õ‚»P`<×VÎU+K”ŽÏŒUf +áïÎ…Ü^]à“õêš F¾þ—Ûv9rçPÛŸŒEæf…á×…*žLä­:‡Íc? >{„çæ¡ÏÒ£¿á j•pÉJñˆëµI‘@èHHv¼ëi¸f¯è\pñ2@8 -“’×qeR… ÇÜ´ñ´jö4ϾºK}‹ÍåùÆØüÌ)_¤{®ÏÚt÷ŸSkÞ~úKE6Pî­ŸƒŠîSIàI†¨Wú“1‚´øH˜2¢|î4Š«¸ ­§e*?r˜TñN#´Úã0Ë €½ ?o@v'ŸI\ H,¶7§È–¶ÇOuÊ·ãû["®Èâ;g}3‡âËt î‰,½ma•ÉzcÑá§#ìÙÛ åM_YH*7ÖìÆî«èÐPÊXU˜‚ +æô`óƒñƒ‡ÆQo!H Â~]ú]ógå~ Ä áÑCò.Y†Ý¬X^ÚM;é.šP9­F–‘MúÄüÕ^ùâ("&$@­iÎçu À‰èïrBZ1µ®cz¿ðõ]Æa+ùó„gD¶kÆÞ[1„º¦Â±e!Ý£[þu ¹u’ƒT5@Enþ²V),ËjŒ$6ðG„ÞÿûUE†ŸùfVKkýM3c©b \LrÊ —ˆe‰A\rK+j¸þŒ¸ÊâOHTˆD â!ƒHDtè*Hé$žŠ®ÑM:„'/õ|ßRaÑ­vyö{¾Ÿ÷÷}ŸïÛ™I°mПÒ×löØ&ÙOYöãú⾘'*(7=ýÈ–§fÆ|‹c11‡.£Yc #ù˜AéŸÿË´†#’pýÅœÛPó®È¨6cDùü`á¶Xcü×U¶ÿ,"âÇ7a‰Çô‘Æ}Uka$ ß´þǵ¼`Œ]"À\Z¤s»nÒ.›}i­•ŒÚŸøº8Çëêë´³¸&C®×C¬×ÎÑÆ¡mƒY‰‹².¢kîÐ7ZÚ÷€í+Æ·ÆzÜоÐç/ ë¤xYÆP±Mñšëðéë‹ãùuÓ„˜ÄßY-ÏW¥¯À!îÏϺÒÚam©'kv’O2~é»]æLû8¯ë2^›¹Ç¤_ú“ù°¦Ye?Çyj-k.^Áñ´LH=•†Qj@=ýS´áZ¥ÛRK¹ö{-e«ôä>:JÝXC[j¨l‘ô3oÂèƒm~æu&9^.ÿjÊ<¥–*7™ëã«ADÖŒö½3²> +2ÆæÝ—ë+-å8õôö´µX«v¥á¤Z7#pL‡\æºÊ½½BŒ`‚±åüTm­K¿G<…æ4þþÚ8½ËL.lø¼;˜;à¯ðða÷È[òg=ŒsoÁÝZð ØW ì?L,o#p(º %¥@iž‡×@kUÞ8D¼ÜFÅÜüC·°÷†PgMCï€åd›¸Æ19[€Ù­]¼ç{è(a/Çù1›ä§=î'b\éùdG¶¸µèõ¸Æ7·{×9>ïqA¾ìq“|Ýãôé+n ÷t;3™`زÂñ¶V»-jIõ¦†ºû݈ÛÛ±»!4cæ߃n1€At"Ãoa¾Xü£ ­°ùE-H1ö†¸¾.m]ö;àÐî*ýȹÁ]ÚüÍUzN ¯ã¬ò>ç4ŠSeu…Å¢1(<š5ݽz6) ãÎ’Þt«:ú&ÀÓœê• +endstream +endobj +1106 0 obj +[1114 0 R] +endobj +1107 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1108 0 obj +<< +/Filter /FlateDecode +/Length 339 +>> +stream +H‰\’ÍjÃ0 Çï~ +ÛCIš´6…(i 9ìƒe{€ÔVºÀâ'=äí'Y¥ƒýŒ¤¿„䤪Oµëg™¼‡Ñ40Ë®w6À4Þƒy…[ïÄ6“¶7óãÿfh½H0¹Y¦†Úu£( +™| sšÃ"WG;^a-’·`!ôî&W_U³–Is÷þp³LeYJ  +½´þµ@&1mS[ô÷ó²Áœ¿ˆÏŃÌâ}Ë͘ÑÂä[¡u7EŠ§”ÅO)ÀÙþ,ç´kg¾Û ŠŒ‚Ó rÅ\Ÿ™ÏÈ9Çä“ï™÷È»]d4Èæò>‹Œ9gΑÕ62dŽQ£XG‘Žb}EúJ3kbÖW¤¯¸OE}ªó‰˜{VÔ³º0ã +͵4ÕÒܦ~4×ÕTW™qhéÐøpËò¹sןBÜm¢wð|-~ô³è¿ ‘k£. +endstream +endobj +1109 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1110 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1111 0 obj +<< +/Filter /FlateDecode +/Length 281 +>> +stream +H‰\‘Ïnà Æï<…í¡"MÚä‚"M&å°?Z¶HÁé@„òö3uÒÀ?äﳌᗾëÀß½•˜´Q{÷áŠ7mر¥eØné”óè'ó°.çÞL– üƒ’Kð+ìž”½âžñ7¯ÐksƒÝ×eØîÎýàŒ&@m +'*ô2º×qFàÉvèåuXäùS|®¡L÷cnFZ…‹%úÑ܉‚V â™VËШùãf»Nò{ôL”Q\˜¨2W‰ËÌeäSæñ¹JL‰:kꨩϙϑ»Ìq“k6±f“õMÔ7¹&…ØäÖMl—¦ +YÈ»÷4†4úôþørmðñ;Î: WÜìW€:/†‹ +endstream +endobj +1112 0 obj +<< +/Filter /FlateDecode +/Length 5212 +/Subtype /Type1C +>> +stream +H‰|VkTSW¾—po‚À…$\ª¹Nî|Íð,"HU˜ÐŠŠ T‘ñ…I0AHBBê°J!pìXŠà*""(>+‚,_UZ–mÅÚ±>ʬâ´cêt_zp­9Ag­ù5öºß>ûì³÷wη×% W‚$I_ÍâøäÔ´€ÄB«1C—d5Åš³uÎAHÑÇUœâÁ¢HT5Ùuä·\ +ƼDV~s²oº‚â„1™à ?"¤H…%ê7Y yÁÚ Ë8ÊÖgŽƒÌuÆÌuÙ†B‹Aorâ·Í–ÂñHáͨ¨°@§ ·‘BXhhè¸ 4:ó½\hËÓçØ„Å&­Ùj1[3òôº`A“-Œ§° V½MoÝìt¾êC0Ú½1Ï · +xq£ï·êuBž5C§ÏÉ°nÌΕÿ™ÿç(Áhp.!Ådt¢ä<ì´ &]Îb?Ek~Ï”g5êmÁ!qÉ+ +-zaŽ Óg˜!’ <%„Âðó"fI‰X‘Àº œô%ID.±‹h".Ér/ù­Ël—V—AIšäKW…«Öõ!@Ù©O©ïh m¡Ëè.úW©·t³´Oæ#Ë– ¹E¸¥ºív˜?¡aÂßÜßu¿æáëáðxäêÙÏ0L‘>K„Šnñ§nÛ©Ý’ +W±l4i¬Œ†*t…EÑð#4Ðeœ`ltŒ^;þ ÑcZìa_ȉ˜±ß3ègä¤ò%¿ öâ7Ÿ¾8þ/R2q[¨Å?;LÆ 0<#[`Ÿ¤Øé°ï™o*†D²J€/f{OœºÜ·±#55S—’zR×Ã3èè¨&Ÿ¬ƒ/$à¦e!kÔHM§QÖK#Å4lUç“P 3$Pì 3FÕHA£?Î=Œhð¾J9h¦äb0$ü±Âä¨Ü!½ÖM=ypï1*˜ðÖ#4cVLNfºú"©¦¶®æ~îNkF*_‹ü22fbˆ”)X$øƒ‡¾†`4”#í¬­ãö{8ˆzö¤®Î¯åRå³o›Oõª†£¿B|ä|›U§>†\¨º#ý/s7[Mºñiv> ‘7håÈç7MKÒµúy‰‰Mµ7!@Ã~‘p¦JÄ?ùBÈ7@Ïåh©ÙÇj&œA!R4Y‡ô1ø5ž©ïh8;©š.Ë(×êThª³^wЂë?ANÂS•ˆ–Q5‹~£×£'Tõ‘ÃŽø^Þ°(nQNBRÒþZoA4Upb ðo?ÿ<‡rzÓóÇ×$Ô&r[Š*Ê·ñµ?S°›Æ™]!ˆçàŽ/2R X"®Án­,¬0—O+ÜŸ$[¿vbT(ä!bASžþXàBî"réÚ‚¬Mê2º~èÚ pr쯬·ËPÌX"—uc°Œß﨩þH}|_Ûá3Ü­Ö•ËÓSœ¬ˆ¸—.q¤ËÙ‰.•KQÃØ +fÓÐ ^¢~ÄM¿u¿(Z!MÂþS§†¦bžÞƒ ’{ñURåÝ›­-}ýª{ ߣ@ä;3¹,?–ú®Kª~'{mÊ|Õ¬¡`ˆRÿù»|ãùÎJ¾óè‰îZõµ-gËUk †µòn™¨cûjµ²7Jø•uÚæóª3GÚzÔÌL> ˜@‚9 +„‘ü}[oo²79žU?³¤h{þAKp¦Ó*?)úõ$´†–Xæ0¥Ý]Ïe=Ém‘µBÃŽµ§íyÏ#!èËNb@_—øûº+±~²€]Ñ«šÝ Á®¿ÅÜ- ³°ù]®‘(ú•<øýø¨ÛzȤÑ­.º¤Yv¡ö|o﵃i•B=L¡Š#·­âÉBÇ…„qxè¢Ä§ûk„Ëä»÷¯õñ--ØI3LA Bîá__˜öî4™‘wj`Mß*ÇÝEèÏwéï&3dßœpvòþýD &–Ì'eÈ$ù¶e+ä]`)˜¤ [} æÎŒŽ©¹£ã¸x“½ (Í\D»“&Š»”´R±ì‡e6­R $ .…)YFC,‚…úcàNÜa ±S˜Ž‚7ê÷éÑ×Ü|xasš)έ¨/ÿNA?ÊóÉ•ù¾§Öwf),¥ÁÓìà3z;©¦8ßÔe)Ë5«-µ´æ‘úAÊ“Ïá’o5¿ÓZ¢òP{â;u_ê)ƒAP#%‹ip3;?ñÓE¦Ç¦_mH(ü[áE&¡¤±«§dP'²é8&.T˜8äÏnåÔnlýÁ8€¤ÀfÎx¢Ò-Ú(>|¿¨…ZE7ºÙ® ÐîÀê$yú\C®Ð’×PÓÄ_ï¿JäŒ #ƒ}ä{kš4‚ö¤.7OÆg ª|%XaÉëÀ™»gZKÒ“¾8²‡_ãßö‹8¨»Ù1È_®ÌÌ(¹K瀢¸{ûä_GòÄÇX;²àµ#¸vÞÈ+¨Y5JŠ«Â4 ,Í›¨CÁ|L7"!ÅZ¦>9´ÔŸ'V³æ“¥zŒ‡Ìž –·»ªÚkFÿµ<­­Óv¶ËLÝ îI-áŒi:u¶ZKß'ç}#nþ0p±ç^[]LD®¨ÏЫ3dìr PÃo_½W³a=Ì´0i ùs¶BÖþ0…¸’•+É'äcâôÂÏpRhÍk¨mæû.¬Xµ}ã˜ÌˆÚ\]~Œ=üÞçd¨øÃ&"ú?ƒÀ1ôscNM—hnä†Á¨oˆ=zÈÚŠlhßyÖ—·#܈qYð߻Ɗ«5¢†y4º´lÍÿ©.ÿ˜&Î0Ž§i{WG½%ëÎÞr'²˜0 qa™qƒ1Áè†Ìµ+FŠÊD2ÿ¶–I£^¯GO°….¢…·fù!ÑÌ‚(”Õñ£L4ËœËâÜøgf3Û Ë4Ï‘—?öYöïóæù¾¹Üó|¿Ÿ—?"Tw˜{§zzñáó÷’WUŸÈl7GÀ„0dýó–Äê`·QÄ»ÚP¸ƒŸìNs=Ñ`°S€l:ìWZEÎUV»Ó-´P–Dó/FœI…«Â®·‰Ô[òS˜z¢›€Íw _[sâ6ÞÿúW!t¿z2÷Š©¬Ï‹.Ùúûb‰7NJŸóƒOŒ±ÚýÑ÷9¼¾ d›Ú7êX:fšóÆ$·Íí=Yyp_oO=Ï`E&,Þ Ý"äèÕÇÖ¬=Øp»è’.×PïŽHq7¯=ß+„€6ý§‚^®Rœ ˜ü ÖÁFšñøáÙmÚ=7OÀáebU^õ"ñ¦– !š¾K¾~±¿â'–Ù® ¶«úvMp׊ÝØ.µšmÊ™@³ÂŸr»= Rƒèiòž¹‚­ìÈÙt÷tr65ùÃ=pßk„S†¥>P£uz@¾¸\ +ËàdþrJ/@†²ò­Ó ³ œ&Ø¿2ø,*;7àb.®Äœ#—ÿ·eAë(Z®µ~PðfC¸Ü„ xÃLÿ”²ÿv<§vÚ`×8ØæóŒ÷¿Ó‘ø"8KìUK0xqe=Y:ßê¡g†Æ~ürTòÅùËd¾.Ô–¢roÙô&æ„ãkÙµ&”AøûB?ƒ!¯—ž¿=t¡å4âW~'þ›OØÝUÄì=qÔ%¸ŽÖ—:lŸ®IḾ¤†˜~Xe­›!¶D3RE9¡8¢p úѤäE»Z2‘Ò´Žïûðy]«9 ÏÀÖŒ?;¢f³:õ¼ú—õoŒÏ? +endstream +endobj +1113 0 obj +<< +/Filter /FlateDecode +/Length 4774 +/Subtype /Type1C +>> +stream +H‰|SkPWîf¦{…™±f¬é5¥5‚‘¬» ¸¢€<7‚ ¢3È(¯Ì ˆ5 òf%j”7¢" +à«+ø6È¢%FJQ0nĬñôx!µ=˜­ÊìÖ­:}Ï=ç~çôw¾‹cB ÇñiÞŸû¬ øØ/M«‰Vh}5›c“Í!†cpÎVȱV4rFùïëÞ{Ð'_l®NŸzTŠ‘8NZZI†Ž‰Š‰ÒÄDÅMؘe‰I<ÁÎÿôÓNfûÉ„uwb¸ººNØOXOUâF5œ¦KVÇëXŸ„M‰Ú¤Dmt²Z5õŒ‹c' t¬V­SkṠ:d5:V­IŽUkÙh>¸YÃßתUl²6Z¥ŽÖne͑߸1ÿ§«I`y,64Acö‚“ùC ráQ'ªlJÜ–¬Õ¨uó\V‡¤%©ÙŬJƒa8¿0±f-ÂlqÌÃ8æ@`ŽælÍÇ°…æeg +0OžhÌ À’±*¬ãp+|.¾ /Äõø{‹(‹V‹ AðB8]¸Yøˆ˜Eì$ʉâñšŒ$ÏŠ,D*Q»¨_l#ö·ZºX–ZN +žT5éÅä´É—&¿±ò´ÚeU`=Ù:ĺ˜²¤R(ƒ„’HŠ%ÿœâ5åДQ›Ù656¯¥ó¥u¥9íÜ«vœ·³Ú9Bn¿)`l? ù¨“FK¡ˆ€a±èï4˜±¢1rýÄ–"Þ'¹K´y‡Ì…ŽP¦Å©5©R=XÈÊ^˜Ó{ý’¾3º¾ÐN¶¡¸ú<ÇûÄÚŠ$¦køí¨M~´÷ÂåHŠÂå(ì²¹»HÙBzüÛ$°R«;Aöø'åo€S« Iè»O¿“Cø2z*ד3»Ðä#G«ü‘ÔcC +Z¼D‚ëÈšþµ²ï;s?ØÎh¾‡Up ¯…½‚Z0ÒÑ°·YD¥á— FÒéŠâ²òÊ%:ÝŽí_0ºìc)å + +Ñ&ÏT<Îl¢á¾IC„“èÞ¸† ŠÒõÜP#~Î7ÛP`šK#|æl´‡A_æÌU€í÷ „Ý°Íý 1_«h°hEž1ïpþƒ9û| ä6àϪ¨,…û±-'U +éY¤ÛLÊ(RvI¼«î!òHª(§‰ëkÆ9 £€ó¶mB½y¢Vî°hø'˜*ï|ƒ+ƒ’ÔÑÊ’-DyuÛ©nXÔyy"ág®Èy3küˆxßvt4Bn“~0&eÃ-õtJuWòM||ç‡W#>ÝKŠ™<‘lôaMs×Mùýˆ~Dù|¡S–Ä'jZO^Tk`kÄ…U¹% +ÄŽ=¡Ù€ç0íHá·;Ä\­éj¸¦ºˆH„ûy-`~µ´É¨3@q›¶Mö 2ÓiÀ_Þ‹¾Èk®g™‘¬ÿ©¾²ûŠ|À·áKVÌ >ô@£ÌÍ$dÏÜ6¯õw—Ïô±R/œx³¿€¹gìzQ¥|ß³ÑEîá䤔õpCôðY¿Àek£þ¬cžn| ¿ÑÖ1¨ä5 +g>ÈÆy–ò:-åuš:¡ÓÔrŘXø{ê…ñ!¼çÑÿx ýÜÎ߃¢Þ–¥Ïò«Ë¼k¹ZY?ç éô”NI”ir#"I´Ü÷C:qTO?†TB6|äü¡3ÅyäAõ7šâˆ´ÍŽªÈÐÃÕF8¢—à Ynoré¬ÊÆÌKŠ—½Ç[/0u§Jš¯ÈÁb‘1ø[%/;îV¹±óŽÜ°ûlRµ²ArÜ]¶.co cØB­ÌoQ¼¾§qú“#3‡T Ÿ²·ïžGÎ@"ǘY±‰¹© 5´§‰35ñSÀ•uÓÛÕÁ_*ÐJ˜«á/ü£›«®¿Úqš)Ö‡RÂJ)P,¢‘Š@ûÀu&¸Ü(>~š¡À#CÏêñ·Ü(àûÎh3f_âµ;zîÆ?˜k·ª†~”¿‰ï íPvÏ«G…oà_÷­e ›éš¦B>1î%²DÌfÐç,²FqѪ܂D%µ;Gmz8lp3¹É4: ‡¡QÇÝà]68IRiüê¡l"oÀÖᨅ²‰T’B'ÊRLn©Q“=îf0¹‰¨­9zõáÐFõ貉Š )¸˜s+2…û¥CÚcr%™ØÈH~’A$r³'d šù:Ÿ4?q¹ý†îvÜ šÍÙÙ…áü” dô°,sÚç“¥ž5KÎ9€=zoWO‚'8÷ºúAy/Éö*BS|$¦`AÎõ )ܻ뼀Z9©ASmaD$‹avoÆce^î™­ËÛÿ`Ǧ-&·ô””›‘»ô€«2+{Ë UOè÷ö¨˜s Ö»‘ÿ«P¯‡ïÌ\À©¶ :šÈ¯Ë«³k½•íç™Úúcç;åWS/l­S6Äø—z(‚ÖeìS1†Xºàx}ÁÅ»þˆ¬W²Ú’@ÇPûAfäX8dáõbÉ°ò.Šdo({hXpóáó­ˆßÌ.1Řn‹;ên¯§Q©.aJ,ƒ<¢ØF„ǧî+®}<);,5Go¯÷ßé¶s—±JÊ*ÜxÒ© ;©‹m”„$ËXÆ^8ˆ½(»~ÔÕÑnŠmœcË…hÏkoÌz +¦Ü½ ·(bl©y|ü)â»y^‡M ·THVçwÆ:èäœÏQIPî:ÌPÍF`~|¹,~b“S¡¼ô î9zþp #@Ž B“ü+\[7n¶a´›×! 8Lªþ #%×O_q(‚_‘O•ûË1W×¢0.öPþ،䵩[T[æä97ä÷Sï¹qÓ]#?fÊVå™í‡¨¯(ås3]#Øê&˶ü#¾¶Àr‹³¹r­”Šsq9Z§1›Ä ’ýŽØ˜à¬ÄÆ𥠲¶ét ÄñSË"ÄYB¢]ìƒøbÊîÛ¼íÙ@Gc]£#(ÕIoA6,QöCšœ¼F’îI‡E^è!0E¯òXò–#*j†ƒ +çA+üÇF©`š e×=ÄÎìcꎠ_ïl‚…ë^ éJýÿÎjà–dì)Æ? Ù­‰eÚ VT¬ÓëÎ0?W|o¿I¯w1šÌRvôžß*4ùÛ©ŒæŒæÌi1‹%l]=¯Þ†¢G”-ÛŸ±“Fü÷ðú#¸>¢Ž:•ú[lè•Å4Z0>Ö¯…Ý€ío-=]Æ’Wÿtãzül¥ìÜšÑpêÒëSB×Óhª»ZsœEó¹ÃÔGÝöŽJF‹o«[)h$4µš†Kbî©P2¦©4Yyj†²{¦úFycjÀ$xïúo¯îvû³:µ6M-& rê!Î^f^½¾mås;@#ÒæêÅý àŽV¡™+p@4wÈ ˜ûöÒ¯K˜,“@t s+í¾®–³:“èÇ–§¯ipúf¡Ï1–D‰x-Úa‚H ユ³]0¦È„Dç…÷UÖ3“ 03©0žÞ¿W˜ÈîÛ—°Y,ó–öí’W‘Ô^n¥9{¢ ƒœ''QÚ  aQHÚ—ÑsÑäÕÈÍ~0¦u5Ù+Yí6ÍÛ²È_RRǤï$]êËì¤/_344±SẽYH ¶jMÚKL(ª¥ç¥É`¼¿ +ØçK#ÁÎ'0‰¥†ºyÿåݶ RæD¦V•.&»pF»êqWx˜GuVþ –+aÔž-8Ëô–vÛoÐÏk7®aQ…à¦WDíËIObÓå²Ì$' ôc=Gç0Œ\N¿8_ð·RO°¾rrɘïmçFÝD)銔ƒ²¼Ò`,¯P帔F$52ãGn‰ARQÍñ^}­É©¡ùÔ·CbîsÉØj!¢²¥É LJòõnõÖŽÞÉ1^ªAQ^u¶´¬\UšÂ’;ß^@çȃ³0³$„[ABØÛ!z$ƒZì·‚ y!oU†"%K5Gƒ/_†õ+|ü Î~4ÜáOÇË’=>]zÇ7ë/Ô £6v¢HW\ gºJZÛ¯Ñ ~¸6VèŸ(Â%k+±5õÒ¿4ø¢I,º`…KBØŽxU’иLY<“¦JOÍLĮ֧mò¡7Fîù"Õ”=÷ šÐJµqÑyºÎJ 8¢¶]щ3ÌwÆnÛ zd¢#õBðÁ‰Ü,Ë$Õœûðÿ@íxIôÄì·Á,Ìe\–½‹&­Bhɳ%0ó ̸>à¶jÍaáç€s+"W£W¹-þøW˜öß.˜ $Ö´5PÙb3<ˆÂEV¨ÖAÿî‹ïÇóñò!|s׿D3ÖJ}cI æþ&ˆ"´QÚˆ±5Z¤?aÐéjø§²b3 ÍòûMÞìkûQÁb¥ÑëÅäwŽövB†¹5Žp\1ÁoüÖxày±¥„4¯§¡i›Ñ4ï‘L}ÐÝl¯`uÄ«)ªÜ´£™ÌYà¾íX[Â^¼çコÛì‡%“_%&‘?®uPËx^T¿£Ð%D‘¶H{–Ð[»¯Ó§NækN²-ÂãG?Bÿ-," Õ‘YfØQåHmX„˜ü»ª‡…×c…Ϭü¦ +‘¢¦Qm¥Ÿ_í¼÷C¤Ùë_ìöó±å­â¦sŸíBzVc4 Š“÷ë£é¿ïðjŒù)í?Xsp—8ìÀžM1ûŠ‹døÕ¸ ƒ®4ñFlüî…ÍÜ DÝÂð½åÉŒ¼¤:û"]]^ðÏ"öH 7+-7™UšûX¸ï›ÐûÀ +ɶì†Ç@8àeÂJ5s»°ÈHP;¡<ª<ªb"¡á[éeq·g¡B‚j„hûË„¾¡Îö¦sÍUê>4š:©ALÌ¿7e༨$ÆÀ1¹ €N.#𣤠;rZdúî̽˜Ûj‹ª^iES Í•„£ùÝÜT;¶âŠQ/ª®ÂqØmüð30bG.í,é8ÛY\Rô+*uŸk0n8±U¦©"r¢ðŒª›UveÏ +8çE,EUŠ/2B³¢FÝ’iKïò„*W2t\x§¹ü2G˜ ( }†4‚ËÄ} +jŒçK.ÌÑ¥ñÆIJ„!Dº^&Ðf8ž ì"<Ð;ʤ4™2ÇJ«Î¨LýÆÞq%÷¾E\ÇÿŸ¦LtûÈÚßØÛÚ&ÕÖÙÖÞ W”\\’ŸŸ]UÜ4+YbzÿÚ™WŸ:´åÉÑïšßU¾ÿ’¶V8Ÿ®I©OkÌÜ´ªncÝÚßBßÏIðÙuoú¡¶‰qöæÙb?86ý>ÝË6gÑœs}Ÿöý…DÏjÖߟR¾ï¶‹+K+K~Oûýšë!ÕOÐæ¼ÍÀ4{×÷šÝßKv Ÿÿ©öÓETøúÜÒ˜Y‰Ò¿…M~óËçü®YÀ.üüÀÔ+WËÍŸ³xÚé¥ËæÊÏÛÈ:µ2cf–tljUA¡|rRM€¯T1¸‚Ú¬ÏjþøíR% ^ÉïÅËÙ…¯¿XvûÃæõ55 äøú‘*Àï¥Èuàrögkï~gÚ¸¤¥y®Ü_½]?½Ùgå%L‹•öM¨ÊÏ–OH* ´—*ƒÖƒ(Æ”ì†S²ºä÷’åì/–ß~¿yCMÍ|¹…XAÞJ’þ-öÔ„“˜A!|í‡>È‘¿E€5òÜ»OWÌmi™ ®‘k +5rjJ]^®|jJ ¨Fþ]³„]øÙóEWî-^ØÜ}úâél¿Ó¦ß›Îª˜þ],ĺ1SnAR<g7÷&®]ÜßD€é À! v +endstream +endobj +1114 0 obj +<< +/BaseFont /SBHBNN+Wingdings-Regular +/CIDSystemInfo 1481 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1482 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1115 0 obj +<< +/Filter /FlateDecode +/Length 9294 +/Length1 15133 +>> +stream +H‰œVkTT×þö}ÌÀ¨À +’;Œ€03ODïâ y‰ *2¼”—€ +ñEk‹Q“ZkŒ’ÄØ´±zµ6Z«iÈÃ&F%©±i“4]­éZÆ&ÍJ­Ý3jVkWþôn.û<îÞç|ç|ß90 +@DѼR{JHRV2·\ã·¼¶ÙÝÿÔ‡—Jä´ÚUÊÆúu]·­mh[Ú,_uúO¸~uiSwCÏöÏ¢ÿÓ@L´§Þ]Wóéìó€å*ç›äáÿçô‘€5€ëã=Í]»ªžïæ:ç×íkj­uþcÂcêúšÝ]mÂm +2[ø{¥ÅÝ\ŸöçÇ/p}7³­µ£sø€ÌsÉzßÛßÖ^ß&%„c3ïÅê|±ÿï“…;<â9z“ÎÓ¶Kô½ë³÷èŠÏ®ùì#a—píÒ]c˜dè göøÀÉš +@ ‚`D0B˜)£1aG¯L$¢0Ñxˆqš3Æ#–ù H@",°Â†‰°# ÉHA*ÒŽIÈÀddò<§ S1 9ÌÑéPáD.òÏ›P€™˜…Ù˜ƒ¹(Ä<¡%(Eæ£ P*±‹°UX‚j¸QƒZÔ¡ +ÐŽ> 6bz°[ðlÅwñ=ôbåÙ¼§cžÀ“ø>vã؃b/žÂ><ý8€><ƒgñâyÂð~ŒŸàEÆOqG¡áŽãg8Ÿã%œÄ)ü§ñKœÁY¼Œ_áôãU¼†×ñÎá×xoá<ÞÆ\Ä% àüïâ2ÞÃoqïã*~‡ßã>±>ÄðG|„ñ ¾Â?ð9nP cD­Ø€f¬#+Å3¶æýM|‰/°kh=­c{„6ÐÚDi3É1D ©œÑZLTE.ZB•TLs˜s™Í…TFóh>Q hùQùS=3µ™¾”j˜±µÌø:2Q™)š"(”Â(˜ZiµÑrZAMÔNÍÔA-4•&Ó4ʤÊ"M¡é”M6æ¾…âh©T@NšI¹4‹òh6åSÙ)ƒR(’h%£3 ½Ö‰•¨g¿ +«±”}#–¡ë^Ÿ‡ùù 5q{ ÖãÖb/õÒFü…º©“¶Ñ&ü•¦•ô(õà:­¡U´Wg3­¥Õ>ÛŒÏxÍî[×ØüÍ×âýž_Ö‚ŽUÄL-AÓà™Áþa>¯ÅCb¿Ü#–äË4@}<ƒ?ñþ]ä½>Å,9Âìy–µ¹¶“¹·y¸•9ÙÃüÜ€uXØW3Öæm+ïî2F×À<®aNW1¿+™ëåÌûÖ@!ëak#Ÿu¢²j¦²‚2XQ©¬.;+.žhòƒ~@·L¾!ï–ƒ¥;R®¤J~’N$ˆ7Äñ-±OÜ+n׉+Å1U´‹ Âð±Ð/ö „EB¥P(¨Â!S° fA'Hô6õÓAÚÏ·ÎÚM;™]TíÃù3Ø‹ô5æüæÿ)Ö օ÷aÖË Œþ ãßÇÚÚÃ:{‚U÷à*Ü]ûø½¨½˜K|h §Ÿ&ǘѡ!ÁÆ À€Q#Güýô:Y‚õ8+éôÖôšÕ†r›õx"à,ëÒ`©Ëtù\¶Ïi†D—FΠšlV ÿiB¢Íz÷Õh0«ÇHŒU•|Åã®ÓÄXöŠ&9Ín¥î˜ÃÑ[VaâçLQ®¢ +oAŠUò=š>6Ï­¡¸Â©ÉÎÉ®Hw«´Âl7ߊ´›¯óØ–oÏî®ûÖ/åX5çúÿçÜò5ƒÃ2mÖ~†Í7³SñN²7OîÆêÜjÕfÍS4Ѭ'Av®rš½fîÐ$³®ðbåláyšÃ­øæ­Mä²·¨åGj.—&›UNAfµQ̪621ÜfUò<¹6ëi¾äáWTžÄq£ ¯W”c‚Ø«š5r«ù¼`Ž² +ÍQíòŽg³r—Óèäé&Ãfh³¾a³æh¡‰6Þß2+XGd± ƒN*æ+H/HgEî:«'èÿ@Ñ’ K’Éh2ÆóK|]™î¨2nÃ$½|[åX3T xä¾±ÂAä`€üdg #[r&&‘>Î@éic)#Lg ÑA‚'n÷źú »ãÚwfuXÖóɵäõ“|B&¬IïútèâÑÁ#œYåÌvÎlôf†_€ž8ó(‘3‡ÜËcšâ3¢ÅÑ¡‚N牣©Ù;ÛãZwNÎl9:T`¡*¡ä(¥RTwúÂ+ÿ&¼Üc›:Ï0î÷;ûć8v||Ib;öñ%q;¾ç‚cç~!eY ¬@¸•´Üî]K„pëd£QÈRn”Žn]Y¥M*Ñ:µSÙUBÓ¶?*ub´±Mꪜ½ŸPF©v”£ÉÇßïyÞ÷ùÞsoúðwÒ÷þ} ŸmOOÀÏS˜-ùI5¯Ø J|¬˜¡õù*]Æ\¢.…ñ¢âžÝE´‰)Ë’‹c ÝÈÿ†Ne2\ÃîíDq}VõvGðAÊÙÀî‰Ù¤áÁœ)ÌkêúÍéÏ¡{Y­0%µ¼ŽÊì¢Í™ùªÑᎄ£¡ ¶ Ÿö·´ø+ÛÛrÚü¾¶V¿¿>c×ô$³˜;‚Ó€œ,(RäkˆZQ¯FÇÀ)¶w#[F§2UÊ3jõFƒ $‘¹ ŒÄ¢±hD–¹\PXThë\·æÙ†êêÆçÖmî´Ò_°›÷<Ÿs¿¡Ûhfù8Éqž52ŸÖ¿D'ÕƒH²9$FZG¢N—£Pe‰+á‡T9˜Ÿ@Å"V£1ª=Ê Y‘>—ÈT +Í×BA* ½ÃÐÑìõ-PâêØ|º0úˣ㟬8³èêøñ¿½YµÏå~¥*R1Q¿~ËùÔÒw_Ktt´ýìýËÖO0ï¶jæ0T–ìNY’Ërg.v†ÞñëuäÔƒ]yÝ£ßza°žÔ¥sÙÇz×–b…WLßäz¸Ë8Ùú’IA +AÐAa­FU ¸ü¬`Â*Óaàô Ø;^ +Š”.%Ïʧ›DÂØÂN,1#/É‘°ÛãFÛ‰¤·JÏõT/H±úÇé_ÿù¥}}[ÀeßTÊ“\º`Õ«Gÿ4ܹâ‡S'7Þn»¼&4wÍu0ýà +Wô® ÙßÙ?䩵È˯|¶ïÄä•Þ–­Ì +¬L‚¾¹q:H$#èO¢q ÚVNðVËèae)¤ni P"ôë +Ή&•Ë“ê¯1 ‹0ÈRE*Ù»¢±:„¤73Î<}àã¦%s‡æŽöƒõ[?Ü»ôÆáèG<ïI&Bõ—ž}êÅ×›W½}÷ÔÅG}†,»sì\ú7Ã;a‹Óo/`'îÇóŒÎ𥿾vïå@Æ‘I¶)›µI?mÚ@£;°Ü£ˆRìb‘hã51™Õ)‘À$’à+â %D E˜Š39„f< !›ò¢-ux±Ñ.ê–’RÆ¢ e:Ô({2&ÂûùÚæ•gýþÊfm>½î.éßÞš8¾]§iÓmþϺ†Uƒï:ç0êLáÅÕÌÇ{WÈhzñKRóøÇYö0ÃÙÏH£ ßvvÞþJeYÞƒ¿ðÑ»®k»Ëµ¥sG™Êœ¥'û‘Þ®p% ³ÀEb[”$Kªç@ÎÆ ¢~='E’”¼’ÿ*ÆرCgè5{djí“:óyƳ¸ž¨¢=Y§€ˆO0Ñ@" –]9¾4ûJµ8LÎ.µÌÆ1A9ƒ +®üá’yRõ°ôþ7V’I +‡fâ+fHRcOê¢}~üÒÖ®»ÚçõÿdU¼NŸh{ºÿ©·Îlääû¿œk‡ÅÊe `‰½cg÷Ò7ûêÅ©kpÑÈÉ,%—BÊfEs²Ö &#iJØØ¿L-pˆfãµvŽM‚Pˆ†È!gRâk”Ä<‹Øš÷°»žH˜m7’m7º!)Á`œÝ(}øPæ›àöt· ûºº¼#]Ÿ½û<üVN9+‹m6›¯Xë“ÒýRm¡ØW·é{©¡gž¨ÀK¶À"¼úêÈ ûƒq¿rfÃ5פ­ÞfVéG7<¿7Œš¦o²<&cTO†mZ`T²UmP$˜7rµIL-(Dä”ÞœÍZÈœ}ðÐoª…ŒäžìfHSÑHƒ†f§Ûƒ¨!c6€hpú0fê “¤ÌP½ÈGJ¶6µ]윿{õ»o§?yöZƒÀ×k•7v,¿ðÜ{WG?J½ñÏoo¼°ÌÂF¶•û‹Í¦¦þÞhwW4 ;ww›ßÿîêäêyÇWìÓ뺬?ù‡5•îa¤sa]O ã~E(Y*Ø°(æ á&Á[BÜ‚¤%‘èÜXáƒÅŒÄA`vÐÁðG;í^2.;ˆvDaþSN;/=n?Ñ©Òå2£JòªÀåË( ¼u9 I¨GEúºJ§kZ56pœ6¥îsfåÎÏx÷èb×:î¶.Ø95ºÛú¥V:›åMÿ;^…?i—èm¢IÈÕ¢J,õ¸U<‹ªEŽ'å³yA_¥@¢t ™ÙŸ%Œ|%à)»=à~ä6/éñ•púòÛÖµ½àv½ØVWìu¦GJ–5ž®ôËÅ5©~¿ÿ`jK=ÇßÿóQ¹¥ŠÍnÁ¸ÈºSã=—zN0?ú&3{—uipk˜¾Åü‚ù@QŽï¹É_…¨Æ¹– 9ÀVjrX• f‰•»-V˜ÃJ +pê àŸLNçƒsȉP)VZ|¶Ò°Ôb4*0óp®FÝCèŒô¿óhLÉË™‘0 +Z>3ei£ðɯö¾ÖX­ç-Ñ [w¾r,®ä+ºa‡C–ÃNuÚÔú_¾«5¶©ûŠßó¿¾×¾×‰ßvìÄŽkì¿;ñƒ$vì7d!B@ + …BDH)¯À(-¤.øÀVQPv[§u ºNšöj)B]Ë4uÐ4MÓÖoÕTmÄì\?Ð/‰âDÊùŸßóŒR?Ýntx}k—8‰ÇõÒ1m©"žTYÒÖóîÙÌ÷;¬´,/©ëïiì›nÊüT–*îºð2OU°”"ï?ü»Lƒ7‡€³#•(U‘j‘#Pídñí:°ˆ2f³\P™ð~ŠSÁiÞÌ"p˜ˆ`4Ðiª¬˜%Ἡæ,§6&‰'[³°cŽ ¢%–mØíƒH4¦×$C%YCeY¨•UžhÙue¯£ê¶u}zëŠ +,Œ +ƒ}ç'»t?êlÜÑ<9³l²“ùp®~»74~sOóëS¬]µti±Á]þ}Ëç©+¯zp9Óîè®ysèôÇ-$nFÞ£»a‘ +¤Ü ¬†sU6ääA¡MÈÌiðu.ÑRZ±Tyò¥Jò +òx}*‘úˆP…ö•t„±Í²t¨NÍwnpÕmYWŸî®Ùå3úT—·ìýÓþ-]·¯9:®R“©)“×ZÞ}pø…k;ÂÅÞd¨ùÞ§ü&\ç vÄJ}ªqøâ RõÔ²TJ€@˜£ qá”P«Šè°ßšå Ù@4œQ¡‚œÌ,ñ€EAÒ”0§ƒv< ÚR /PŒ tfÂùjQâó5ÐÌ耵‚9( V´Ìrš³Y5ô«*90^=9A»Q|Õyñyƒ °F©s„Ý舘nøÖ +C>íE’CìÝóÆè›ÛBÃWÿÌ\þCæóÀà+Õ+—Ê<Üwg“é/Æ„–ªÎè=uýR;xq}Ë'ïÔ[mëfÇê,þ2c«:˜øãÌpz\¨7/F¾UckºÁ|†nÞœjñ¨ +dÎ*ƒf"€ eçå +"++!zÎÈÑéƒEVâ‚t±PÎBH“%!âg”KCÁ%w.xÏâwé-IGn˜KSÉ(ReøâÈ`Íó•©Tåó5ƒÑ"~fFç.ßãÚ\íen^(®훸®›»•+Åè•¥¶~Ò¬¤úš·õ9ú|x£-™»)ëG„¢ØƒWQ[SƒnàuÐÕJ¸†æO)ÂŒPÀV‘æ%<°:{GÉ[ÛÊ䔜‘ \w‰©¹(œ3uj˜04Ã?·@ÞP/Ò²nô{¾¹Ëô¸‹(:³ÅD‚KÌ–aL6S®Ið%Á-}‰HIËEµ«²u…ÍÓ˜.46¹¤b“L¼UÒ™ +lÚäW[mMëš¡}êÅ®×îNMþ~WÝÚ/xwôK]IµNWƒS‘™ ®Ø8ßÚ¼~÷íñ«Ã“—¦ì½ Wh¶¦iùA¿½Ê$³Äm5Ž #½ö/ûÎLÿŽš‘E«ž ‰LŽüd“·Úçç,™oz¦W]»·qò¢÷ÄŠ‘5 +ºn¸á¥ã’3aîŸFÍ'¤ J ®J)o@¶8tX³¤ñ*¿’vpXsÓZ‡† ‚êX¢Ôº%ÉyTAåYçuX`U²ê–:Ï z?g±²3B{zyet•Ðir‹%mŽ†Ñöøî¥H£àwÒ(8€4º+såt>×u¨Ü”9—yñq‘ÖñD¿7Óý¯Pë>Ô†‰QvÊGyS&‡›ÂkJ­”úºwʉUm‡4eÂŽÈ5…Ç*ì|âcOÇ7£ŠélƒÍe)üêqÚ«tõ]½×šZ*“¢»1A0gyšòp{‹ÙT¯•ÁîÆJ1Ñè“èʯÏÝ„>æe¦\”/UaÑÛ‹(DˆW˜y¹\:'XMÑ-Î+æn¾üÅ—½^ESÞL øˆÙ!sÉÈB[}mdzÅ.Z“Fs¹=¾ì‡ç»ým­[ÄÞJð bò·M-}Ýl°Ò÷åIruk ^Óò—6¿¿Õ±Z%ù056#ƒª©hʧiWóÒte¼×MÎXÊ)T Ñ zb_7…î˜+ÇŒÕ9c*Á[Ç(_héŸç¸’î9»ôöÐþÌ7ž~ »~=w—Þ_õœçÑÒ‘äÁº‰¦SK#wBý©ÕqÂdþö43 ÏŒ;”r¤Ì…ˆÓ€%?6®×ž§Ãã3?sÂ'IðhžGá4ï¿W<üû5:Ü5êUqD£$À‚¯RÏ«q£kW5ÖGE§ÂŽf͇kˆìíY’’µò„C¶šE EÖ@:ØjdWA7l` ieJo¹½ód*¥1[ ²½<¡JmØý,­F¾MÈÛºzßKègê&·â||"¹­'€rñ&DÑrÞ8”S3.Fl*,Æ»¶Qú´(ÚçßäI5¹Fƒƒ‘bþ.ÜF¶¡¸ë‡Â¿|%ì_½wy¦ÿQ¬gu>ž^Xæý°½uoÛ3, àz¸ë$æcÑ +ñJ7_Œ{ŽÕV«•Òëà†Æ”àª!]Ó0rp€UCp×`BçkR?uÝ>ÃJŒßâ‡X;‡Ÿt7•&.¹Å³íZðÍÿÀ…=Ó©ì½qOfÃ×k)åLYu-j¶´…ÂÀ$²•bfŒ v8!Ëv_ +—(òÄ€…3nRÅ`sÙÈÛ“É}_]zçåöã_÷¯Ãm/_>ûïcô¥O/®¹6»þËó‡ï‘æÐÌýJ6Žs©&ª'ÕÂÒ$Á›§ϯ¸SƒhX!*å§}à”•|E1)QrupÊPB'Ô؈_NxH+¥0j.@R… èçPð;5 I‹ ¦×JqÏjü½ñ†·¦Ç>Ú¹/öðºW{”Êè`pÔ•%ïPTÉ_]|r`ÅÉ•okkÓ+3gdl…^ÿøªmêºâçÞ÷aûÅIìø;Nâ8¶ãÇ8Žc;NHã™, !D!¤BB ¤|´Ð ¢UE;ÄZZe£ˆ¡ˆf,‹âÄ&ÆDYÕ¢ªbË&¶U¡©TbTÑ AììÜg›'•Ø_³üÓ¹÷¾wï;¿{ï9#¿Û?p·×%ö[ŸŽ—•¯NnŠE‡½ëgWk~àÔ±üý1&W ˜åÄ"…Ä‹Û€ 'ƒe„ÓUb…A+i$^åä±:Rk©ƒx°´9¦gi·_!«ÏT@˜¼0bbÖ) r†mŠ˜ÄÅ6­…¤6{*a s®wÇŸ¯¾´a:Ö÷þ»›Ý~)/’:Èž[E~®ÿUÛáÞ棯ÔînO'ÿ>lQ'ÎܸËÑÒløílþ†’´©¸MeSéo¨±§õä¾×ö×·Aú¤M¢¥K!«‘ˆ!Ÿ*DŽ3™µòô¸¨]eÐIy’Ž`Žg%K21HMúⲜVkR8X%·˜3é+¸ˆßåÜàk¶y«[wJy+_jÛðÜü=¿‡n¼éõ˜þ3ph y:ûÌÉœÖMX1ØÑ?ÄcQ§U“G›€I’­Åˆ!ó!敉ëÔäqJ»ÊZlæN¹•Dðt®DH× +ÈÕ Ë,åíä^ʹ刱ÒNáÙˆM©2©÷4Ml}ñ ¿tùªM¶îþ|¸ÿ=‘oxwãõá½W~ùúöþähŠ¸zÖ­^]»B­ÔèJòʇׯëøÀßÑ?_i°½ºgû«õo²Xø澤Gù‡`…e±:#Š¢æ(çÏ…h ºJ‹\ž*ù´HEÔXæP%Oi¬Rf„¼ßäÀ7¢Èê»–Y„•n·Ðõ“§•#-f#1%šC-ÖÌ;?å +”Þ¶÷Ö¯°ûL¾¶J½+q¯­Õ]±Ãò7¦• ³ŠI9ß_«×âª*=Ÿ™T-,UH~¢u¨$XH}$Œ›Ö$°Ãü˜Ã"dm……'t8ÄÔÂCmþ.ÔêÓÛžU¼ˆsOÅJC¥Û¸Ò©<²þÍcauú‚s öÇöu¤I•›Ïín½«aËöÒ›¾ÁgÖDV¾ izÉwÐ7|7Y¨?f7»%§d—´R²^PÙm¥f“AW¤\_…ÄÊd¡©ßÒ¡ ²”øIHÞ²ÆIoÒ±mªË¹Sßjó‡’?Ï/6·ví«ò¼Úµ9Xô`жÖè‰ –—oŠÅ*BôŸ‰ûþq-w>JyžFy®ÊêO\øÓª[¡÷d°#¥¹8Š±i„Ƙ7Z.pº€´TòJ.•M¥—m R=¸@- ¤ƒmhʶ¡¹K+]Ј*GtO«Œ¦qÍc ÷”‘ìŒÂ)aÚ=ë/ðÝïÔo-èjÙ+¶ÄCŽzÏÛ¥åµeɯlšëƒt5T5t¨Zr «»ªR9­õ‘1ÚêMœû$BÊ*Ë–ÏÛ´zcòê÷7¼ßK/ÇV&=ôü®ù‡–½%ñYÅ0Úí™{Ä=D»=P«tªUTP\R¹¤Ç ÌSétT”—•Z̨'oÆdLskT$C@QQé明îÂL¤|ˆ§V‰´“øË–K«qE¹Öù÷ã¶åy‡½„¾Õ4”z¥¯ûËN&Ï–Öê¨2¹Õ«9ÇÓü0éøÔûcuÄF¶‘-Æ +Ž{jþE†¢&ÔÜ’¸Ì÷!עЫ.³B&b&E¾$I +)‚šxeÖbK¡Bà °¯€…¬1;dKj\ #E +Ðwï§às´™ ] Ii¤ƒÔkC±ËíãQת†ä kÕî5uÁ€U×EÖ„m~G×mc­ÃÙ¹ÏííìlÑò§kmE5Ê'Qxù­Ùï­ÙÞd;QTÊ??Ü~pÓGÔ®žRÐY<;†–ösãä a$ÐÇÔJ¢>DU uÊÜ:ªw˜lî³µ¬Q¹žï°nÆú‘{£ª‹u²VQ±UˆB}HIq•¼Ì*:œÎJ“8Óg/¬>`/ä®ÕîÜ“„@‰h/A—…^2éŒ!â\)Äù[° ß·cßòö/àûˆ1ª6°"âˆ>¶ƒïfsqÎÙ:ˆ¸£Ð+<‚~ËÆß…z×'À‡m¿ÛVÄYðÑ ˆ©¹;X‡ÉÏã`'Á!¶cßA)ôb;þKpázáР¿4ÂZ(E!l¨÷~we¿¬³} +še]wÌÝA}B¸~7!÷£qþ,¨ixÉí¹sØ÷²¶Bƒvà8F/Îß ?†s<àå6C=‰zÜÿ¨Åi|ÇœgáS~åoÑ Ê>ö}Y§7àmì›0>¦bê}e+{¦rÃ,³NÂaŬì5ŽëÉÚä4ÊÎíg`seÜ"j¶–2e¯˜nY7œ/ž‚8í/Ó‡ù…ÿü,þØ?ˆ°¤ã%1=Q2?80F&”ì¥c·-=ÆpDæÅ~k(öO3ûºG°ÿ1Ž7sAœ‹óEÆ/ä ‹?‹ýbP»Ïø s! 2²€|)Íp!¨×”8…ßC>dC¶{c·cœâéˆhb|`\ÈúÎÃüG;æ"fed¸ æ«=ÈƇl0>ÜÀ¹(iÏÜ]ôÓ N‘ÿ+Æý‡Ø¸†èÀç¯È1fþGn2{ÙÚb7òêfŠë²¾QyïÉ’é)û‹½×.ój¡}‹ø<×Ö'ëäb[óÊOOüõ5Û;¹ñcXàŸ´]¹ý–ƒôÞ~ +‹ê‡þÊÅ3÷ý÷ÿò3@"0ûå Ê3(w >Çö5”o ¼ <–O6cÿ"¢ï¯PŽ ¼„ŸÍžÃö¹Tûñ-| +Û£(Û±ÿJHÍ—åç)ùø~iy)%g¯äàRJ>Î{ÿ +ú&ókÿp2_ +-ˆ×̓¶=.~7¸ãx2ãw„.¼hÃ)(ê²ðûï†r*Ú)ÈHAm~vä3<(8 Px¯5Œ™v@ÑOt?У>ú¿ð¹± þ+ñ.‰`q.ÀÀ ¥¬Ž¹€ø ƒ 0 Èê00Èññ `|€A¡ +X¤Ðý¯ø+ÉâQ<ŠGñ ~Ür†2vh÷‰ØóŠ©1LõÛ€b< ÓPú\63?œÍdóCÙl@–” 2S¨’‘…̇±*`l&>o(›( e³ÙåP6=Ê™¹9<ÌÑ)ÔI; 1'±$3/?—!œ!ŒÁ‘Á‰!ˆµr€¸„!“!!Ÿ!ˆ!•!¡,VD@-%²ÌÐû?‡Á£ß 2B.ÜÖ¼b,ÖÓxõ¦±ô0w™w°L›ÄkÈлƒÙ¦UV[ Ààù\ +endstream +endobj +1116 0 obj +<< +/Filter /FlateDecode +/Length 2337 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜n0fHlq»ÛEW"Æ + + eÔD A"# 0 ÌÀŒøÀA@``yE„Q”",t"`iR®Qîµ›Ä]³Ví#gÈ5UÛƒµUûk««OÝsϽß÷sϽ8æè€á8¾Dþi"jßZEžV­L +ÓjÞ >¤LL·‡xƒÛ(G›ûBù£ +wñò_ +Ä0æ?¿;íîܱsÀñ§?lÓd [SRsø÷ýü6x٭ϼÝäÅoX¿~ý¼õგ4U|Dž.G•¡ãwf&j´Y­2G•´Ž:tˆŸ‡ÐñZ•N¥ÕÛ'ßâÕ:^¥ÎIUiy¥LQ ûµª$>G«LRe(µé¼Æù7ùÿPñêL^Àâ?ÉTÛ½ˆaRÇ+3“¼ÍC@9£Q T‹áGñh˜»óºŠ|MÄÏ! >a¢í#d÷$hZ‚œá~ +>ÁÓ#ßüã:à(¤Àíèê,”UN#$ãV8(/#=Ñwc‚›*Qöíaö$$(BûLp’)#0¶•àŽ·ƒ Ö‚L¿Ÿ[C#y0Úˆ>F„¶Xà¿ Ð^¹;Þl‘£eˆ×„î͸ ËË8XÞ6~“•LYôs¬#‹Àè +Ás,ZM …_+’ÂâQ±™°ònÀ‡ Ù +çXúµ ¡Dÿ—·4›; ‡Ò»Gî m¨Ëà2T|¸çþ‘?2þ/p„·ê†c»¸®Øíõ2æĉRÓq®æ1TÏcKlÁ°pQìF¾®°m95 ׌4lz5 Ÿ‡ FX83I=ko‘>‘ÿ€6#÷Áˆo‹OgM$5+ËHˆ +”ú>\;ØjÐû3zzz›Ûºk¹['®§ÇIU™™J–z|ÊL4©SÒ³3³‹¹„s©W:¥–Ö~VqEÀÛ¼€Å'a'C¤h²‚.î;õœ7p¸<öîÞàÐ,,“Â;±Ï‚Ù™¿ÑÌ–ÀS'÷r°-¦Í5 æV°' +´ymÜ…œÍ܉#¥æ“œ)…:ûìØ¢É9_úW_Ø9çKJ~¶è¡hØ K…X¬ÎsÒUT¶#—ø_àš67DÕœ@Aä_ÉýIÿàȘ®?¾Ñ©‚nœºûLzOw+¡ƒíÞt΃y?°¸p!ÈErÁ|¹[Ò¡Ù'NR‡°q„d°VÛ<„C€Ý¡(D½í´¡û©~†èïÿN/"§ÑÛ78ß«)ç®IÛÚšîÜ¿}8¿•íqS|øyzz£·<ÉHä¾Ín;œ&Ugè2™År•t—±BU¹à0’E-ð1° +´™\‹/›¬Rð'Á%ì +X¹]s4½ŠHqãÕ;†˜éó¹î4‰¶” {‘›”Š÷› ~5l=ßÓÉ–T`m‚˜jÔƒ‚>YzÒTÈfjò²™ }}{Ÿå!'ye„å×Ûp`!Ñ°hD¸>°›: ®”µjJèáÈŽ;‡‡ Àqvp°Ö¼ñoÈ™‘Çè’5œ ,Höz Ž…šä¦täÐAW— ÛYÙv¥“¹Û-ã(k€:ñÓÍçíElIUIMÔN»¹ Í‘Ëì¼íBY}@FYm æbhTe"Ûsãë?aÓo¼_‡¼ÿºˆÑñ‹#¬Y «’‰Á‡0u˜&'¤¶A’² +2ŽÐÆ’¦6­X“ÂD'÷>šnùònwK¦ºŠ++,-,’JZ Àm$ßÁáOðÙÊa7]~¶âJ›˜pF AÈ‘hýO^4ñUUó8› ÅÇ8ÇÈÃ/ö yKèör‹u˜­‹Òp’?#,{Kà(0Æ7Ù¬²™±-µiêeq”ØDôf¼´‡A.žÈ­x¾Zo4t·qæ\âÃèÔÝ ¬¹‹uòï3ß>ª»5Ê5Ì<—‚…¤fžšûËÛX¤@icéÑ3lV±.7‰Î¸ùG½|r½¯¿ã’>µš-+*;)¤Š2-z›Ñð5|ˆØ:£«Í(ÉHþen?‘’Û©íê¾ÅYKR»"˜ù s1†ùÕ#® ›‹A2B¿ +· ‡ÑÞÛÀYøiVl#¨è$Ï–Öýî3¶¡ê|sÓÛÉ!‹°èY[V_QË^ª¾ÐØÊô^H åP½0ßO‚{èãåi™EùZ6;?×`Ð:™«>¦UÎlJˆÕåq§ ÊZ4!Fk s¼9|—T2+(øVßt'%Ôõ »>‚z Wɺ²s5lcu}s'Óß”ng—ÙYÅDúÅÅfç±â…Sbäý_ħF¦(¡ BÁBEpÇVJ£­+ÐzäÄ{Bg°°øOÂ[²zå?Ñ:®Qô—![³öÅFèFN7Ms^6 [Œ†Ï —æÅQeo„ÂiòlY­¹†í­éº8Ì4ž3©ã¨ ©²òü¢Ò£ŒR®ý(ÛžëåâY1ZG˜šã¤’°xÁ HÔÖLz&ŽßgÀëá×/¸’o’ÿÿÿ½*«Qž{•›Ÿ“ª³¹{€¢¨÷škU˜Nû8D)ŠR°P÷iÀz–ƒyy|‚e^KŸœoû÷&ûvø÷Ø÷DpØøä'NûÈû@@›Z©mq¥·yÀ¹³‘’ °÷‰}‰x`}£Æ÷!ñ÷%÷ s‹÷#÷c÷"£øK£øK÷#ûkª¨§¬¨­÷ +÷$öü2û"÷Uˆmltrmhûû-—ø€—÷&———£—ûf—Ì——øx—÷.———£—ûf—Ø—  b_ ‹ ÷ +÷H ÷ —š ÷¯ø’ Ìw‘Ý +endstream +endobj +1117 0 obj +<< +/Filter /FlateDecode +/Length 3209 +/Subtype /Type1C +>> +stream +H‰|UkTSW¾!¹7`ä*„!×æ^ÅG1¼ +ñ‰€" (.-I „@©EP”¡£"EDƒ|ðPĪµ >QÖÈk;âèX§-±ÚZ§vºozpÍœ ]«¿fµÎº{Ÿ³÷þÎw¾³¯ˆ8"‘H“´8~Ñu\±1+Mo4øErtŽ^`E‚‡D?šA3u¼äéoù$Ü?»ýy¼«Åp‰þ+Ò‡#×gšø÷fÎ òuÌ!#ó _>(00pdáÃu†t=ŸP\`Òo,àcrµcžÁ˜fÒëüùðœ~$EoÔèf‡ó >«€×g™2õF> /®ÏÂñF½Ž7ÓtúiÆlÞàXùƒ™ñJñY¹<ÎůÌÍrX &ì,àÓru8‹a¤ŠÖ°)×dÌÒøD%¬(ÎÓó¡¼NŸA"<ZD¸„BD°1‘ &“„Ÿ„³"‚$b b‰„HÉ1 “KÄñ„Ž(#ŽáàBÑ9'ÒIç´Û题ÇŠÓÅ%âo$þ’RÉ2’4ê„Ì—¢“°_|˜)°ÿ¥”.…8Q,WÊ\=}öʵõ‰‰º•‰gt½d3ÛU…"(…©b(UÀT» +¹Shþ죈‚±}d E'•‚ ´ ùÜDðÅBž]Šߨuè{²¶åhÍiWÒ££¢7.‰ojÈåòE(~ÈBä«_ÁupãÕä6®íý% qì–«*?à~"ᣑÔ(âÈ0j5¬±ð¾}*SR]\e¨œ\1#;6ÞyalÊdD+QÀ?á0áÅ€6à-M)Ú­ÚE¼uØ}GjšªXœQØpµ¡ÿî.®©¦¾vªmûÑsìÖ¤e1YÉ+9LÉbàañ[ZàŽƒ—^îš%óL"›˜¡_™ä  JFÜW-™·.qÄMwÛÌÇ€ª*t? ù!™^NB(…ôv ‰ÖR(ýµ†„ ê3'›bºÀ›”?Ýw¶îr]—s U§­_]¯ýy{ÒCÛA&$‚‹hü 4â+SÑy½³ç Äñ¾{Ük—†€Q‚,õ«…½ªîØÐÃȃQQ–À1Ö›­í,Œ{Žx ‡¦¿†TÕª"s•u+GGT„ÀX|b7G ±°^ðcP5¶Ám8äµFˆ7t辶èÙøtGðfÿ·›Ô¨€±¨;ëqD EßßcðuÉ`.¸‹:pd–ÝEP0¨É^¡ ÔŽ ;3Yäò<åù ÿë§[·œáZ&7DaQ>nCÈdá,ï¶÷/w^Ö?”cØ¡¡æÆKýé/¨/á¥|Åv óZƒ¨Eàk× _Tj¡^J£ûXÈšÂ7˜ßî³k¤´º +<„óoý +a&x ›pùQ4”ÛÌB+p¢Ëö±]©*Ãquk¨HdÚ4ßT4×kUòÐüÄü·Øä‰R©uŽ+@ÕÃÞžX_ÕþÓ«†j >¬nžójðõ=<þÜöµ—•ò±úXg©è¯~‡ÅÃ)àÅ®€T)8U>Û9¤²V·Í¹Òé“ÐÇ$„àóðh55ÅX„E½qPûD{ñP剢^k0b§Rp’ÁS>Ât1ü×Π5ˆAj”‚V€ RÃZX J<òa)"!i¹È•ùå¦7rEãâ}&MŽ{Šu5îÖ?st>&¹ \@R Q ± vܸvP• M–Cìwš»{¹®ÎæëÊÜëëÚU§S¢›üXÿ˜åk9PóŒuŸÍzŠ<Ÿµ:}Ö¦-ÕÍ}€ó6$9’7æ÷¼MŸRý–¦¦‡BWì+r†@jë1ó·æÁÍýù×t¶JoÚn÷}­ìßtIÛªê\³pÿTvVÄŽòd\Ë›©ÁµÎ°Ÿ[>ɉSƧèÃTË(:z¸ ˱Z»±<'áîÔuŠ1w>`!î›ç@>KèG² \H›þàyeGëÉÏŠ¶¶¨Úa Ù¤Mh cQ°:I}¾Œ‰Žû{nkAš25#waì›-]EÇc‘œ¬Â‚Uø5`s x ïGƒ_B)ЭBÑ,K Ö謽áÑR”ý“îÓ ~y:•@#ßaO)’¥&Ìž›ÚÎ*ÁSJï|£ 0â(a”Ú¥`Þ!Qµi +×lÑ•¤yUR›/|pÚÜOAAÖðDÒsJo†-Ï>å~¦ÁDxW^"ä)*Z*/^RÂ<)H“ž£AÑEYªã>ä¡Ö+zØû ùÜv) +¯FÔR$WÊ»çöE¾¸Ùc;Ûª²Rò’½É¤¼»¢˜2KYe¹*g[ŽQÏfå<Û×ð‘…£ËJat°Yc½dºß_,´y ,UÈ»ÿôü§XÞqÍ|ƒÅ]ò-,à`Zõô »hU^Z.W ­˜„۸̊ÊøÊlBSW½·f¯êB]ç©sì½öeaœ¼;X»:65óÔ¹mªÊ=–½uJnÃ}¦\p³mƒ@ù]ÁÆ2e&ÃŽõlø²Kßq,½7±]-ÛË›8ù™#@’ò»õÙ©»µ,ŠõA.Èù¿TCÐÍËuõ-¸õã'd<Àù4–{LSwÇí ÷‚BY¸Iov¯Çc¶FÜ2³™) „nAlÊxl¢l ³ ­ÃÒ–V µà(—‡ãýUã%”± bp‡ÙØ#Ë6²,†‰Ë©ù¹d§åæþsòûœóý}~ßóó4áDfR@Žâ1O•Rò¹…¾~AÕ”ÈßÝròš ë!òÕpð™›éœú‚³cõW£ÅÀR§åö”Ì=KcO)ã*²Ê \zñ™Ü46>sòÇåÞoǜٙU¼Íd3˜d’× ^]´&r‹pvy¹‚<ÚÒ.ÿD ûÉÁƒäòÞzlàݵlŸim^-Sk Sß;Öxí'!f#>%êÁ[´^+î?¤»âˆ÷¢¢ckUg9uëà'.v¸·â³FÞ +´Øb¸dѲ©ºŽÞB¡¼‰vÒ’<ìó8ƒ.‰œkÝ n§83JFh½U_ZÌåóÎf°ÉùÃßòPOäKšì¹Ÿðè×›Ý Ó^C0e´LÎË$Q˜NTé®öªÄDpäÙ;âJ½ÍT"3—™JÌÜ%µ:/_Ÿ¯Ë+Ö–õipÅ­ú¯oN¹ÆÞƒd|û=&QT"1›Ï™²Ìçñ™p¹ÝØkê: æ`‰^p눡U H–°(ÐÒ +°w#䃡eÁ—kÊLóó½â· ¼·‚|Ûߎ??¨Ùî^—þ'ÀüE +endstream +endobj +1118 0 obj +<< +/Filter /FlateDecode +/Length 1541 +/Subtype /Type1C +>> +stream +H‰|RkTuŸaØYšrÇ!ÚéÌŒÏàˆˆ†!=4%…%L1 °ÈswaÑxìª »PŠ®¤°D„‚@ø8Á9¥òÊ(Ë|R’a‡N§îàŸÍÒ—>õÿð;÷wﹿûø_suÁp.dçŽÍÁKß<¨ÓjbÃu©Ë¶‹ñI3ÈK,.yºJÏ»3h*~òäI˜®? ç^zž|I…¹àøí‡A©irn|‚AX¸Òljþ3à#¬ôóó›Aa]lj´(DÔÄd½°)%&U—–ªÓÄX_a]R’0#¡t¢^Ôe:ÿv$hõ‚¨5$ˆ:A#ãµr¾NŒ :M¬˜¬ÑR‘ÿиÿ)%hSYKˆLÑ:Y„AvêMJìrY%u¦JLjFŠA§õ¾Ëƒ#Þ:˜& +«…X1“Ž=©0ìYl¶{ ÆB°ÍX8½…EbQØ\y£Ø›²# ;Màûð |ÜÅÛ%‡ ˆ â1èºÈUtíè/ê&:puE®RÁTøt ÅèƒÖÀ Œ“H@] 8Éôqå4¹wƆ5Hæ¤ÔÉ8-ädÒQÈhÞ n&¦©ºöb“þ£„]z\¼#­‘§ÎeJ}w‹Œ*0ÐM`ò™â^'é!´`mE(z6’2Ý„æAø‡©1BÚ0Å1è©A}ŠbG]I _l °òþoD®ßq¶<ËQë»7Y˜?ù軚/vÖñŽ˜]§v±ú‹%›¯W`•…áZ?øÝÂF¡Z–öŸòbÞÍ(ÌOçÍA‰‘;f…†îY‚æ©Ñk¿ x`ï€ ¸ýò=¤ ŠÔF'q䙿‡'«®)©¶VÎB>Ó3Ë£nÿmáËKNp’ks´_èbïtEøúî [ËSÍEÃÒc#~k”¸å!¹ £Vé±?I}fêKÌ„¢ úT@3BgKï]°´^RÃ&åDü$òÚ²íPz wv›¢ª¡­ì*ûû© Þ¬D[­ CÑl5ݾ¡#øñPgCs-WLÒÙÇ·(r!€¡Û[̇¹èœ˜˜0v¯Xû寀Wüfá©2ó×ö5Þ,ýÂ}ƤKÌÝÅ. ×Éî»@|vÁ”wŽ?;¨°ë÷œ~›E+# y#¯G^°¤ïór{5O ˜áÕ^XØ‹7߇S#„ ™ŒµÔVV©ÓV¢ù«-AKƼÁûû®ò²z.»W‘“(šÂØ׶ƒ›…·ö2=Ç[¿;ü# +y +æ"q ÀÔɨjƒšQúŽ´BÊbè‰üõ + ùiæž+,"_´©Z îßu^¼ZËÛ"IDmzgÅÖ]•g8 ½åFÎ5¶g°ìJßv©j54(é;×m-¶FÎÕ3Ù–CDz¹ˆ¬(m$ë³ûö#žž×î›÷o\Öì,çJò¬¹Ùj +½#ßg–ñÀU_îý€‡URÖ‹ÓYJzòÊTsÀ OJ®Ò×7V9>)äë3‰JS¿4§_Þ-´ýL@½t„Aêù>è%´lr)< ³á™`#x-›Dg+]÷A=B´T3ƆöÜ.”ýÝ#ßì¿pžs¤T~ª¾X÷IçÕÆwó>äªn(ÊÓö—E± ÃB_ÛÖº{4‰ïÓ×4ê˜ä¡ûöTV¤sÔ"ó7øøOĸ4Á Y¯‡|‡*”ÛK÷פsúsr[Ù†Ú÷WðùýŠÓ¡u¨¡›‡2P ðJªIÞ)^*í&J寅ÓÛ%&ÛÑcêcGósƽÉZ}VzFJNÆѪužU%—Ï\nîî¼<Ò /ƒ'<öô%—¢¦¼sÜá”ç,䑺¼fÓùùÐâIåÙ¥,;øÚív‡DqöïíJî\ô>÷ÙEîns¸=(qJ:9O +fþ`‰"ê/ +endstream +endobj +1119 0 obj +[1483 0 R] +endobj +1120 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1121 0 obj +<< +/Filter /FlateDecode +/Length 339 +>> +stream +H‰\’ÍjÃ0 Çï~ +ÛCIš´6…(i 9ìƒe{€ÔVºÀâ'=äí'Y¥ƒýŒ¤¿„䤪Oµëg™¼‡Ñ40Ë®w6À4Þƒy…[ïÄ6“¶7óãÿfh½H0¹Y¦†Úu£( +™| sšÃ"WG;^a-’·`!ôî&W_U³–Is÷þp³LeYJ  +½´þµ@&1mS[ô÷ó²Áœ¿ˆÏŃÌâ}Ë͘ÑÂä[¡u7EŠ§”ÅO)ÀÙþ,ç´kg¾Û ŠŒ‚Ó rÅ\Ÿ™ÏÈ9Çä“ï™÷È»]d4Èæò>‹Œ9gΑÕ62dŽQ£XG‘Žb}EúJ3kbÖW¤¯¸OE}ªó‰˜{VÔ³º0ã +͵4ÕÒܦ~4×ÕTW™qhéÐøpËò¹sןBÜm¢wð|-~ô³è¿ ‘k£. +endstream +endobj +1122 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1123 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1124 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/space/zero/two/four/S/b/e/m/p/r/t) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1484 0 R +/FontName /GTLDEH+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1125 0 obj +<< +/Filter /FlateDecode +/Length 281 +>> +stream +H‰\‘Ïnà Æï<…í¡"MÚä‚"M&å°?Z¶HÁé@„òö3uÒÀ?äﳌᗾëÀß½•˜´Q{÷áŠ7mر¥eØné”óè'ó°.çÞL– üƒ’Kð+ìž”½âžñ7¯ÐksƒÝ×eØîÎýàŒ&@m +'*ô2º×qFàÉvèåuXäùS|®¡L÷cnFZ…‹%úÑ܉‚V â™VËШùãf»Nò{ôL”Q\˜¨2W‰ËÌeäSæñ¹JL‰:kꨩϙϑ»Ìq“k6±f“õMÔ7¹&…ØäÖMl—¦ +YÈ»÷4†4úôþørmðñ;Î: WÜìW€:/†‹ +endstream +endobj +1126 0 obj +<< +/K [1173 0 R 1175 0 R 1177 0 R 1179 0 R 1181 0 R] +/P 239 0 R +/S /L +>> +endobj +1127 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1128 0 obj +<< +/C /Pa2 +/P 239 0 R +/S /Lauftext_1._Abs +>> +endobj +1129 0 obj +<< +/C /Pa2 +/P 239 0 R +/S /Lauftext_1._Abs +>> +endobj +1130 0 obj +<< +/C /Pa2 +/P 239 0 R +/S /Lauftext_1._Abs +>> +endobj +1131 0 obj +<< +/C /Pa2 +/P 239 0 R +/S /Lauftext_1._Abs +>> +endobj +1132 0 obj +<< +/C /Pa2 +/P 239 0 R +/S /Lauftext_1._Abs +>> +endobj +1133 0 obj +<< +/C /Pa2 +/P 239 0 R +/S /Lauftext_1._Abs +>> +endobj +1134 0 obj +<< +/K [1250 0 R 1252 0 R 1254 0 R 1256 0 R 1258 0 R 1260 0 R 1262 0 R 1264 0 R 1266 0 R] +/P 239 0 R +/S /L +>> +endobj +1135 0 obj +<< +/K [1268 0 R 1270 0 R 1272 0 R] +/P 239 0 R +/S /L +>> +endobj +1136 0 obj +<< +/K [1298 0 R 1300 0 R 1302 0 R 1304 0 R 1306 0 R 1308 0 R 1310 0 R 1312 0 R 1314 0 R] +/P 239 0 R +/S /L +>> +endobj +1137 0 obj +<< +/K [1316 0 R 1318 0 R 1320 0 R 1322 0 R 1324 0 R 1326 0 R 1328 0 R 1330 0 R 1332 0 R 1334 0 R 1336 0 R] +/P 239 0 R +/S /L +>> +endobj +1138 0 obj +<< +/K [1338 0 R 1340 0 R 1342 0 R 1344 0 R 1346 0 R 1348 0 R 1350 0 R 1352 0 R 1354 0 R 1356 0 R 1358 0 R] +/P 239 0 R +/S /L +>> +endobj +1139 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1140 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1141 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1142 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1143 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1144 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1145 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1146 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1147 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1148 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1149 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1150 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1151 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1152 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1153 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1154 0 obj +<< +/C /Pa3 +/P 239 0 R +/S /Lauftext +>> +endobj +1155 0 obj +<< +/K [1360 0 R 1362 0 R 1364 0 R] +/P 239 0 R +/S /L +>> +endobj +1156 0 obj +<< +/K [1366 0 R 1368 0 R 1370 0 R 1372 0 R 1374 0 R 1376 0 R] +/P 239 0 R +/S /L +>> +endobj +1157 0 obj +<< +/K [1378 0 R 1380 0 R 1382 0 R] +/P 239 0 R +/S /L +>> +endobj +1158 0 obj +<< +/K [1396 0 R 1398 0 R 1400 0 R 1402 0 R 1404 0 R 1406 0 R] +/P 239 0 R +/S /L +>> +endobj +1159 0 obj +<< +/K [1408 0 R 1410 0 R 1412 0 R 1414 0 R 1416 0 R 1418 0 R 1420 0 R 1422 0 R 1424 0 R] +/P 239 0 R +/S /L +>> +endobj +1160 0 obj +<< +/K [1426 0 R 1428 0 R 1430 0 R 1432 0 R 1434 0 R] +/P 239 0 R +/S /L +>> +endobj +1161 0 obj +<< +/K [1436 0 R 1438 0 R 1440 0 R 1442 0 R 1444 0 R 1446 0 R 1448 0 R 1450 0 R 1452 0 R] +/P 239 0 R +/S /L +>> +endobj +1162 0 obj +<< +/K [1456 0 R 1458 0 R 1460 0 R 1462 0 R] +/P 239 0 R +/S /L +>> +endobj +1163 0 obj +<< +/K [1464 0 R 1466 0 R] +/P 239 0 R +/S /L +>> +endobj +1164 0 obj +<< +/K [1468 0 R 1470 0 R 1472 0 R 1474 0 R] +/P 239 0 R +/S /L +>> +endobj +1165 0 obj +<< +/C /Pa2 +/P 239 0 R +/S /Lauftext_1._Abs +>> +endobj +1166 0 obj +<< +/C /Pa6 +/K 1485 0 R +/P 241 0 R +/S /NormalParagraphStyle +>> +endobj +1167 0 obj +<< +/C /Pa6 +/K 1486 0 R +/P 242 0 R +/S /NormalParagraphStyle +>> +endobj +1168 0 obj +<< +/C /Pa6 +/K 1487 0 R +/P 244 0 R +/S /NormalParagraphStyle +>> +endobj +1169 0 obj +<< +/C /Pa6 +/K 1488 0 R +/P 249 0 R +/S /NormalParagraphStyle +>> +endobj +1170 0 obj +<< +/K 1171 0 R +/P 271 0 R +/S /Reference +>> +endobj +1171 0 obj +<< +/K 274 0 R +/P 1170 0 R +/S /Link +>> +endobj +1172 0 obj +<< +/K 279 0 R +/P 1173 0 R +/S /Lbl +>> +endobj +1173 0 obj +<< +/C /Pa4 +/K [1172 0 R 280 0 R] +/P 1126 0 R +/S /LI +>> +endobj +1174 0 obj +<< +/K 282 0 R +/P 1175 0 R +/S /Lbl +>> +endobj +1175 0 obj +<< +/C /Pa5 +/K [1174 0 R 283 0 R] +/P 1126 0 R +/S /LI +>> +endobj +1176 0 obj +<< +/K 285 0 R +/P 1177 0 R +/S /Lbl +>> +endobj +1177 0 obj +<< +/C /Pa5 +/K [1176 0 R 286 0 R] +/P 1126 0 R +/S /LI +>> +endobj +1178 0 obj +<< +/K 287 0 R +/P 1179 0 R +/S /Lbl +>> +endobj +1179 0 obj +<< +/C /Pa5 +/K [1178 0 R 288 0 R] +/P 1126 0 R +/S /LI +>> +endobj +1180 0 obj +<< +/K 289 0 R +/P 1181 0 R +/S /Lbl +>> +endobj +1181 0 obj +<< +/C /Pa5 +/K [1180 0 R 290 0 R] +/P 1126 0 R +/S /LI +>> +endobj +1182 0 obj +<< +/K 323 0 R +/P 1489 0 R +/S /TD +>> +endobj +1183 0 obj +<< +/K 324 0 R +/P 1489 0 R +/S /TD +>> +endobj +1184 0 obj +<< +/A << +/ColSpan 3 +/O /Table +>> +/K 325 0 R +/P 1490 0 R +/S /TD +>> +endobj +1185 0 obj +<< +/K 326 0 R +/P 1491 0 R +/S /TD +>> +endobj +1186 0 obj +<< +/K 327 0 R +/P 1491 0 R +/S /TD +>> +endobj +1187 0 obj +<< +/K [329 0 R 328 0 R] +/P 1188 0 R +/S /Lbl +>> +endobj +1188 0 obj +<< +/C /Pa10 +/K [1187 0 R 330 0 R] +/P 1492 0 R +/S /LI +>> +endobj +1189 0 obj +<< +/K [333 0 R 332 0 R] +/P 1190 0 R +/S /Lbl +>> +endobj +1190 0 obj +<< +/C /Pa10 +/K [1189 0 R 334 0 R] +/P 1492 0 R +/S /LI +>> +endobj +1191 0 obj +<< +/K [339 0 R 338 0 R] +/P 1192 0 R +/S /Lbl +>> +endobj +1192 0 obj +<< +/C /Pa10 +/K [1191 0 R 340 0 R] +/P 1492 0 R +/S /LI +>> +endobj +1193 0 obj +<< +/K [343 0 R 342 0 R] +/P 1194 0 R +/S /Lbl +>> +endobj +1194 0 obj +<< +/C /Pa10 +/K [1193 0 R 344 0 R] +/P 1492 0 R +/S /LI +>> +endobj +1195 0 obj +<< +/K 345 0 R +/P 1493 0 R +/S /TD +>> +endobj +1196 0 obj +<< +/K 346 0 R +/P 1493 0 R +/S /TD +>> +endobj +1197 0 obj +<< +/K [348 0 R 347 0 R] +/P 1198 0 R +/S /Lbl +>> +endobj +1198 0 obj +<< +/C /Pa10 +/K [1197 0 R 349 0 R] +/P 1494 0 R +/S /LI +>> +endobj +1199 0 obj +<< +/K 350 0 R +/P 1495 0 R +/S /TD +>> +endobj +1200 0 obj +<< +/K 351 0 R +/P 1495 0 R +/S /TD +>> +endobj +1201 0 obj +<< +/K [355 0 R 354 0 R] +/P 1202 0 R +/S /Lbl +>> +endobj +1202 0 obj +<< +/C /Pa10 +/K [1201 0 R 356 0 R] +/P 1496 0 R +/S /LI +>> +endobj +1203 0 obj +<< +/K [359 0 R 358 0 R] +/P 1204 0 R +/S /Lbl +>> +endobj +1204 0 obj +<< +/C /Pa10 +/K [1203 0 R 360 0 R] +/P 1496 0 R +/S /LI +>> +endobj +1205 0 obj +<< +/K [362 0 R 361 0 R] +/P 1206 0 R +/S /Lbl +>> +endobj +1206 0 obj +<< +/C /Pa10 +/K [1205 0 R 363 0 R] +/P 1496 0 R +/S /LI +>> +endobj +1207 0 obj +<< +/K [366 0 R 365 0 R] +/P 1208 0 R +/S /Lbl +>> +endobj +1208 0 obj +<< +/C /Pa10 +/K [1207 0 R 367 0 R] +/P 1496 0 R +/S /LI +>> +endobj +1209 0 obj +<< +/K [370 0 R 369 0 R] +/P 1210 0 R +/S /Lbl +>> +endobj +1210 0 obj +<< +/C /Pa10 +/K [1209 0 R 371 0 R] +/P 1496 0 R +/S /LI +>> +endobj +1211 0 obj +<< +/K [374 0 R 373 0 R] +/P 1212 0 R +/S /Lbl +>> +endobj +1212 0 obj +<< +/C /Pa10 +/K [1211 0 R 375 0 R] +/P 1496 0 R +/S /LI +>> +endobj +1213 0 obj +<< +/K 379 0 R +/P 1497 0 R +/S /TD +>> +endobj +1214 0 obj +<< +/K 380 0 R +/P 1497 0 R +/S /TD +>> +endobj +1215 0 obj +<< +/A << +/ColSpan 3 +/O /Table +>> +/K 381 0 R +/P 1498 0 R +/S /TD +>> +endobj +1216 0 obj +<< +/K 382 0 R +/P 1499 0 R +/S /TD +>> +endobj +1217 0 obj +<< +/K 384 0 R +/P 1499 0 R +/S /TD +>> +endobj +1218 0 obj +<< +/K [386 0 R 385 0 R] +/P 1219 0 R +/S /Lbl +>> +endobj +1219 0 obj +<< +/C /Pa10 +/K [1218 0 R 387 0 R] +/P 1500 0 R +/S /LI +>> +endobj +1220 0 obj +<< +/K [390 0 R 389 0 R] +/P 1221 0 R +/S /Lbl +>> +endobj +1221 0 obj +<< +/C /Pa10 +/K [1220 0 R 391 0 R] +/P 1500 0 R +/S /LI +>> +endobj +1222 0 obj +<< +/K [394 0 R 393 0 R] +/P 1223 0 R +/S /Lbl +>> +endobj +1223 0 obj +<< +/C /Pa10 +/K [1222 0 R 395 0 R] +/P 1500 0 R +/S /LI +>> +endobj +1224 0 obj +<< +/K 396 0 R +/P 1501 0 R +/S /TD +>> +endobj +1225 0 obj +<< +/K 397 0 R +/P 1501 0 R +/S /TD +>> +endobj +1226 0 obj +<< +/K [399 0 R 398 0 R] +/P 1227 0 R +/S /Lbl +>> +endobj +1227 0 obj +<< +/C /Pa10 +/K [1226 0 R 400 0 R] +/P 1502 0 R +/S /LI +>> +endobj +1228 0 obj +<< +/K [403 0 R 402 0 R] +/P 1229 0 R +/S /Lbl +>> +endobj +1229 0 obj +<< +/C /Pa10 +/K [1228 0 R 404 0 R] +/P 1502 0 R +/S /LI +>> +endobj +1230 0 obj +<< +/K [407 0 R 406 0 R] +/P 1231 0 R +/S /Lbl +>> +endobj +1231 0 obj +<< +/C /Pa10 +/K [1230 0 R 408 0 R] +/P 1502 0 R +/S /LI +>> +endobj +1232 0 obj +<< +/K [411 0 R 410 0 R] +/P 1233 0 R +/S /Lbl +>> +endobj +1233 0 obj +<< +/C /Pa10 +/K [1232 0 R 412 0 R] +/P 1502 0 R +/S /LI +>> +endobj +1234 0 obj +<< +/A << +/ColSpan 3 +/O /Table +>> +/K 413 0 R +/P 1503 0 R +/S /TD +>> +endobj +1235 0 obj +<< +/K 414 0 R +/P 1504 0 R +/S /TD +>> +endobj +1236 0 obj +<< +/K 417 0 R +/P 1504 0 R +/S /TD +>> +endobj +1237 0 obj +<< +/K [419 0 R 418 0 R] +/P 1238 0 R +/S /Lbl +>> +endobj +1238 0 obj +<< +/C /Pa10 +/K [1237 0 R 420 0 R] +/P 1505 0 R +/S /LI +>> +endobj +1239 0 obj +<< +/K [423 0 R 422 0 R] +/P 1240 0 R +/S /Lbl +>> +endobj +1240 0 obj +<< +/C /Pa10 +/K [1239 0 R 424 0 R] +/P 1505 0 R +/S /LI +>> +endobj +1241 0 obj +<< +/K [426 0 R 425 0 R] +/P 1242 0 R +/S /Lbl +>> +endobj +1242 0 obj +<< +/C /Pa10 +/K [1241 0 R 427 0 R] +/P 1505 0 R +/S /LI +>> +endobj +1243 0 obj +<< +/K [430 0 R 429 0 R] +/P 1244 0 R +/S /Lbl +>> +endobj +1244 0 obj +<< +/C /Pa10 +/K [1243 0 R 431 0 R] +/P 1505 0 R +/S /LI +>> +endobj +1245 0 obj +<< +/K [434 0 R 433 0 R] +/P 1246 0 R +/S /Lbl +>> +endobj +1246 0 obj +<< +/C /Pa10 +/K [1245 0 R 435 0 R] +/P 1505 0 R +/S /LI +>> +endobj +1247 0 obj +<< +/K [438 0 R 437 0 R] +/P 1248 0 R +/S /Lbl +>> +endobj +1248 0 obj +<< +/C /Pa10 +/K [1247 0 R 439 0 R] +/P 1505 0 R +/S /LI +>> +endobj +1249 0 obj +<< +/K [486 0 R 485 0 R] +/P 1250 0 R +/S /Lbl +>> +endobj +1250 0 obj +<< +/C /Pa14 +/K [1249 0 R 487 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1251 0 obj +<< +/K [489 0 R 488 0 R] +/P 1252 0 R +/S /Lbl +>> +endobj +1252 0 obj +<< +/C /Pa15 +/K [1251 0 R 490 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1253 0 obj +<< +/K [492 0 R 491 0 R] +/P 1254 0 R +/S /Lbl +>> +endobj +1254 0 obj +<< +/C /Pa15 +/K [1253 0 R 493 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1255 0 obj +<< +/K [496 0 R 495 0 R] +/P 1256 0 R +/S /Lbl +>> +endobj +1256 0 obj +<< +/C /Pa15 +/K [1255 0 R 497 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1257 0 obj +<< +/K [500 0 R 499 0 R] +/P 1258 0 R +/S /Lbl +>> +endobj +1258 0 obj +<< +/C /Pa15 +/K [1257 0 R 501 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1259 0 obj +<< +/K [503 0 R 502 0 R] +/P 1260 0 R +/S /Lbl +>> +endobj +1260 0 obj +<< +/C /Pa15 +/K [1259 0 R 504 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1261 0 obj +<< +/K [507 0 R 506 0 R] +/P 1262 0 R +/S /Lbl +>> +endobj +1262 0 obj +<< +/C /Pa15 +/K [1261 0 R 508 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1263 0 obj +<< +/K [510 0 R 509 0 R] +/P 1264 0 R +/S /Lbl +>> +endobj +1264 0 obj +<< +/C /Pa15 +/K [1263 0 R 511 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1265 0 obj +<< +/K [513 0 R 512 0 R] +/P 1266 0 R +/S /Lbl +>> +endobj +1266 0 obj +<< +/C /Pa16 +/K [1265 0 R 514 0 R] +/P 1134 0 R +/S /LI +>> +endobj +1267 0 obj +<< +/K 520 0 R +/P 1268 0 R +/S /Lbl +>> +endobj +1268 0 obj +<< +/C /Pa4 +/K [1267 0 R 521 0 R] +/P 1135 0 R +/S /LI +>> +endobj +1269 0 obj +<< +/K 522 0 R +/P 1270 0 R +/S /Lbl +>> +endobj +1270 0 obj +<< +/C /Pa5 +/K [1269 0 R 523 0 R] +/P 1135 0 R +/S /LI +>> +endobj +1271 0 obj +<< +/K 525 0 R +/P 1272 0 R +/S /Lbl +>> +endobj +1272 0 obj +<< +/A << +/LineHeight 11.0 +/O /Layout +/SpaceAfter 8.0 +/TextAlign /Justify +/TextIndent -11.0 +/StartIndent 39.0 +>> +/K [1271 0 R 526 0 R] +/P 1135 0 R +/S /LI +>> +endobj +1273 0 obj +<< +/K 1274 0 R +/P 537 0 R +/S /Reference +>> +endobj +1274 0 obj +<< +/K 542 0 R +/P 1273 0 R +/S /Link +>> +endobj +1275 0 obj +<< +/K 543 0 R +/P 1506 0 R +/S /TD +>> +endobj +1276 0 obj +<< +/K [547 0 R 546 0 R 545 0 R 544 0 R] +/P 1277 0 R +/S /Lbl +>> +endobj +1277 0 obj +<< +/C /Pa18 +/K [1276 0 R 548 0 R] +/P 1507 0 R +/S /LI +>> +endobj +1278 0 obj +<< +/K [550 0 R 549 0 R] +/P 1279 0 R +/S /Lbl +>> +endobj +1279 0 obj +<< +/C /Pa18 +/K [1278 0 R 551 0 R] +/P 1507 0 R +/S /LI +>> +endobj +1280 0 obj +<< +/K [553 0 R 552 0 R] +/P 1281 0 R +/S /Lbl +>> +endobj +1281 0 obj +<< +/C /Pa18 +/K [1280 0 R 554 0 R] +/P 1507 0 R +/S /LI +>> +endobj +1282 0 obj +<< +/K [557 0 R 556 0 R] +/P 1283 0 R +/S /Lbl +>> +endobj +1283 0 obj +<< +/C /Pa18 +/K [1282 0 R 558 0 R] +/P 1507 0 R +/S /LI +>> +endobj +1284 0 obj +<< +/K [1507 0 R 1508 0 R 560 0 R 1509 0 R 1510 0 R 570 0 R 1511 0 R] +/P 1512 0 R +/S /TD +>> +endobj +1285 0 obj +<< +/K [562 0 R 561 0 R] +/P 1286 0 R +/S /Lbl +>> +endobj +1286 0 obj +<< +/C /Pa18 +/K [1285 0 R 563 0 R] +/P 1509 0 R +/S /LI +>> +endobj +1287 0 obj +<< +/K [565 0 R 564 0 R] +/P 1288 0 R +/S /Lbl +>> +endobj +1288 0 obj +<< +/C /Pa18 +/K [1287 0 R 566 0 R] +/P 1509 0 R +/S /LI +>> +endobj +1289 0 obj +<< +/K [568 0 R 567 0 R] +/P 1290 0 R +/S /Lbl +>> +endobj +1290 0 obj +<< +/C /Pa18 +/K [1289 0 R 569 0 R] +/P 1509 0 R +/S /LI +>> +endobj +1291 0 obj +<< +/K [572 0 R 571 0 R] +/P 1292 0 R +/S /Lbl +>> +endobj +1292 0 obj +<< +/C /Pa18 +/K [1291 0 R 573 0 R] +/P 1511 0 R +/S /LI +>> +endobj +1293 0 obj +<< +/K [575 0 R 574 0 R] +/P 1294 0 R +/S /Lbl +>> +endobj +1294 0 obj +<< +/C /Pa18 +/K [1293 0 R 576 0 R] +/P 1511 0 R +/S /LI +>> +endobj +1295 0 obj +<< +/K [578 0 R 577 0 R] +/P 1296 0 R +/S /Lbl +>> +endobj +1296 0 obj +<< +/C /Pa18 +/K [1295 0 R 579 0 R] +/P 1511 0 R +/S /LI +>> +endobj +1297 0 obj +<< +/K [616 0 R 615 0 R] +/P 1298 0 R +/S /Lbl +>> +endobj +1298 0 obj +<< +/C /Pa14 +/K [1297 0 R 617 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1299 0 obj +<< +/K [619 0 R 618 0 R] +/P 1300 0 R +/S /Lbl +>> +endobj +1300 0 obj +<< +/C /Pa15 +/K [1299 0 R 620 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1301 0 obj +<< +/K [622 0 R 621 0 R] +/P 1302 0 R +/S /Lbl +>> +endobj +1302 0 obj +<< +/C /Pa15 +/K [1301 0 R 623 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1303 0 obj +<< +/K [625 0 R 624 0 R] +/P 1304 0 R +/S /Lbl +>> +endobj +1304 0 obj +<< +/C /Pa15 +/K [1303 0 R 626 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1305 0 obj +<< +/K [628 0 R 627 0 R] +/P 1306 0 R +/S /Lbl +>> +endobj +1306 0 obj +<< +/C /Pa15 +/K [1305 0 R 629 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1307 0 obj +<< +/K [631 0 R 630 0 R] +/P 1308 0 R +/S /Lbl +>> +endobj +1308 0 obj +<< +/C /Pa15 +/K [1307 0 R 632 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1309 0 obj +<< +/K [634 0 R 633 0 R] +/P 1310 0 R +/S /Lbl +>> +endobj +1310 0 obj +<< +/C /Pa15 +/K [1309 0 R 635 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1311 0 obj +<< +/K [637 0 R 636 0 R] +/P 1312 0 R +/S /Lbl +>> +endobj +1312 0 obj +<< +/C /Pa15 +/K [1311 0 R 638 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1313 0 obj +<< +/K [641 0 R 640 0 R] +/P 1314 0 R +/S /Lbl +>> +endobj +1314 0 obj +<< +/C /Pa16 +/K [1313 0 R 642 0 R] +/P 1136 0 R +/S /LI +>> +endobj +1315 0 obj +<< +/K [663 0 R 662 0 R] +/P 1316 0 R +/S /Lbl +>> +endobj +1316 0 obj +<< +/C /Pa14 +/K [1315 0 R 664 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1317 0 obj +<< +/K [666 0 R 665 0 R] +/P 1318 0 R +/S /Lbl +>> +endobj +1318 0 obj +<< +/C /Pa15 +/K [1317 0 R 667 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1319 0 obj +<< +/K [669 0 R 668 0 R] +/P 1320 0 R +/S /Lbl +>> +endobj +1320 0 obj +<< +/C /Pa15 +/K [1319 0 R 670 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1321 0 obj +<< +/K [672 0 R 671 0 R] +/P 1322 0 R +/S /Lbl +>> +endobj +1322 0 obj +<< +/C /Pa15 +/K [1321 0 R 673 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1323 0 obj +<< +/K [675 0 R 674 0 R] +/P 1324 0 R +/S /Lbl +>> +endobj +1324 0 obj +<< +/C /Pa15 +/K [1323 0 R 676 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1325 0 obj +<< +/K [678 0 R 677 0 R] +/P 1326 0 R +/S /Lbl +>> +endobj +1326 0 obj +<< +/C /Pa15 +/K [1325 0 R 679 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1327 0 obj +<< +/K [681 0 R 680 0 R] +/P 1328 0 R +/S /Lbl +>> +endobj +1328 0 obj +<< +/C /Pa15 +/K [1327 0 R 682 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1329 0 obj +<< +/K [684 0 R 683 0 R] +/P 1330 0 R +/S /Lbl +>> +endobj +1330 0 obj +<< +/C /Pa15 +/K [1329 0 R 685 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1331 0 obj +<< +/K [687 0 R 686 0 R] +/P 1332 0 R +/S /Lbl +>> +endobj +1332 0 obj +<< +/C /Pa15 +/K [1331 0 R 688 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1333 0 obj +<< +/K [690 0 R 689 0 R] +/P 1334 0 R +/S /Lbl +>> +endobj +1334 0 obj +<< +/C /Pa15 +/K [1333 0 R 691 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1335 0 obj +<< +/K [693 0 R 692 0 R] +/P 1336 0 R +/S /Lbl +>> +endobj +1336 0 obj +<< +/C /Pa16 +/K [1335 0 R 694 0 R] +/P 1137 0 R +/S /LI +>> +endobj +1337 0 obj +<< +/K [703 0 R 702 0 R] +/P 1338 0 R +/S /Lbl +>> +endobj +1338 0 obj +<< +/C /Pa14 +/K [1337 0 R 704 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1339 0 obj +<< +/K [706 0 R 705 0 R] +/P 1340 0 R +/S /Lbl +>> +endobj +1340 0 obj +<< +/C /Pa15 +/K [1339 0 R 707 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1341 0 obj +<< +/K [710 0 R 709 0 R] +/P 1342 0 R +/S /Lbl +>> +endobj +1342 0 obj +<< +/C /Pa15 +/K [1341 0 R 711 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1343 0 obj +<< +/K [713 0 R 712 0 R] +/P 1344 0 R +/S /Lbl +>> +endobj +1344 0 obj +<< +/C /Pa15 +/K [1343 0 R 714 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1345 0 obj +<< +/K [716 0 R 715 0 R] +/P 1346 0 R +/S /Lbl +>> +endobj +1346 0 obj +<< +/C /Pa15 +/K [1345 0 R 717 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1347 0 obj +<< +/K [719 0 R 718 0 R] +/P 1348 0 R +/S /Lbl +>> +endobj +1348 0 obj +<< +/C /Pa15 +/K [1347 0 R 720 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1349 0 obj +<< +/K [723 0 R 722 0 R] +/P 1350 0 R +/S /Lbl +>> +endobj +1350 0 obj +<< +/C /Pa15 +/K [1349 0 R 724 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1351 0 obj +<< +/K [726 0 R 725 0 R] +/P 1352 0 R +/S /Lbl +>> +endobj +1352 0 obj +<< +/C /Pa15 +/K [1351 0 R 727 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1353 0 obj +<< +/K [729 0 R 728 0 R] +/P 1354 0 R +/S /Lbl +>> +endobj +1354 0 obj +<< +/C /Pa15 +/K [1353 0 R 730 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1355 0 obj +<< +/K [732 0 R 731 0 R] +/P 1356 0 R +/S /Lbl +>> +endobj +1356 0 obj +<< +/C /Pa15 +/K [1355 0 R 733 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1357 0 obj +<< +/K [735 0 R 734 0 R] +/P 1358 0 R +/S /Lbl +>> +endobj +1358 0 obj +<< +/C /Pa16 +/K [1357 0 R 736 0 R] +/P 1138 0 R +/S /LI +>> +endobj +1359 0 obj +<< +/K [754 0 R 753 0 R] +/P 1360 0 R +/S /Lbl +>> +endobj +1360 0 obj +<< +/C /Pa14 +/K [1359 0 R 755 0 R] +/P 1155 0 R +/S /LI +>> +endobj +1361 0 obj +<< +/K [757 0 R 756 0 R] +/P 1362 0 R +/S /Lbl +>> +endobj +1362 0 obj +<< +/C /Pa15 +/K [1361 0 R 758 0 R] +/P 1155 0 R +/S /LI +>> +endobj +1363 0 obj +<< +/K [760 0 R 759 0 R] +/P 1364 0 R +/S /Lbl +>> +endobj +1364 0 obj +<< +/C /Pa16 +/K [1363 0 R 761 0 R] +/P 1155 0 R +/S /LI +>> +endobj +1365 0 obj +<< +/K [764 0 R 763 0 R] +/P 1366 0 R +/S /Lbl +>> +endobj +1366 0 obj +<< +/C /Pa14 +/K [1365 0 R 765 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1367 0 obj +<< +/K [767 0 R 766 0 R] +/P 1368 0 R +/S /Lbl +>> +endobj +1368 0 obj +<< +/C /Pa15 +/K [1367 0 R 768 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1369 0 obj +<< +/K [770 0 R 769 0 R] +/P 1370 0 R +/S /Lbl +>> +endobj +1370 0 obj +<< +/C /Pa15 +/K [1369 0 R 771 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1371 0 obj +<< +/K [773 0 R 772 0 R] +/P 1372 0 R +/S /Lbl +>> +endobj +1372 0 obj +<< +/C /Pa15 +/K [1371 0 R 774 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1373 0 obj +<< +/K [776 0 R 775 0 R] +/P 1374 0 R +/S /Lbl +>> +endobj +1374 0 obj +<< +/C /Pa15 +/K [1373 0 R 777 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1375 0 obj +<< +/K [779 0 R 778 0 R] +/P 1376 0 R +/S /Lbl +>> +endobj +1376 0 obj +<< +/C /Pa16 +/K [1375 0 R 780 0 R] +/P 1156 0 R +/S /LI +>> +endobj +1377 0 obj +<< +/K [810 0 R 809 0 R] +/P 1378 0 R +/S /Lbl +>> +endobj +1378 0 obj +<< +/C /Pa14 +/K [1377 0 R 811 0 R] +/P 1157 0 R +/S /LI +>> +endobj +1379 0 obj +<< +/K [813 0 R 812 0 R] +/P 1380 0 R +/S /Lbl +>> +endobj +1380 0 obj +<< +/C /Pa15 +/K [1379 0 R 814 0 R] +/P 1157 0 R +/S /LI +>> +endobj +1381 0 obj +<< +/K [816 0 R 815 0 R] +/P 1382 0 R +/S /Lbl +>> +endobj +1382 0 obj +<< +/C /Pa16 +/K [1381 0 R 817 0 R] +/P 1157 0 R +/S /LI +>> +endobj +1383 0 obj +<< +/K 858 0 R +/P 1513 0 R +/S /TD +>> +endobj +1384 0 obj +<< +/K 859 0 R +/P 1513 0 R +/S /TD +>> +endobj +1385 0 obj +<< +/K 860 0 R +/P 1514 0 R +/S /TD +>> +endobj +1386 0 obj +<< +/K 861 0 R +/P 1514 0 R +/S /TD +>> +endobj +1387 0 obj +<< +/K 862 0 R +/P 1515 0 R +/S /TD +>> +endobj +1388 0 obj +<< +/K 863 0 R +/P 1515 0 R +/S /TD +>> +endobj +1389 0 obj +<< +/K 864 0 R +/P 1516 0 R +/S /TD +>> +endobj +1390 0 obj +<< +/K 865 0 R +/P 1516 0 R +/S /TD +>> +endobj +1391 0 obj +<< +/K 866 0 R +/P 1517 0 R +/S /TD +>> +endobj +1392 0 obj +<< +/K 867 0 R +/P 1517 0 R +/S /TD +>> +endobj +1393 0 obj +<< +/K 868 0 R +/P 1518 0 R +/S /TD +>> +endobj +1394 0 obj +<< +/K 869 0 R +/P 1518 0 R +/S /TD +>> +endobj +1395 0 obj +<< +/K [886 0 R 885 0 R] +/P 1396 0 R +/S /Lbl +>> +endobj +1396 0 obj +<< +/C /Pa14 +/K [1395 0 R 887 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1397 0 obj +<< +/K [890 0 R 889 0 R] +/P 1398 0 R +/S /Lbl +>> +endobj +1398 0 obj +<< +/C /Pa15 +/K [1397 0 R 891 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1399 0 obj +<< +/K [893 0 R 892 0 R] +/P 1400 0 R +/S /Lbl +>> +endobj +1400 0 obj +<< +/C /Pa15 +/K [1399 0 R 894 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1401 0 obj +<< +/K [896 0 R 895 0 R] +/P 1402 0 R +/S /Lbl +>> +endobj +1402 0 obj +<< +/C /Pa15 +/K [1401 0 R 897 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1403 0 obj +<< +/K [899 0 R 898 0 R] +/P 1404 0 R +/S /Lbl +>> +endobj +1404 0 obj +<< +/C /Pa15 +/K [1403 0 R 900 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1405 0 obj +<< +/K [902 0 R 901 0 R] +/P 1406 0 R +/S /Lbl +>> +endobj +1406 0 obj +<< +/C /Pa16 +/K [1405 0 R 903 0 R] +/P 1158 0 R +/S /LI +>> +endobj +1407 0 obj +<< +/K [913 0 R 912 0 R] +/P 1408 0 R +/S /Lbl +>> +endobj +1408 0 obj +<< +/C /Pa14 +/K [1407 0 R 914 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1409 0 obj +<< +/K [916 0 R 915 0 R] +/P 1410 0 R +/S /Lbl +>> +endobj +1410 0 obj +<< +/C /Pa15 +/K [1409 0 R 917 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1411 0 obj +<< +/K [920 0 R 919 0 R] +/P 1412 0 R +/S /Lbl +>> +endobj +1412 0 obj +<< +/C /Pa15 +/K [1411 0 R 921 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1413 0 obj +<< +/K [923 0 R 922 0 R] +/P 1414 0 R +/S /Lbl +>> +endobj +1414 0 obj +<< +/C /Pa15 +/K [1413 0 R 924 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1415 0 obj +<< +/K [926 0 R 925 0 R] +/P 1416 0 R +/S /Lbl +>> +endobj +1416 0 obj +<< +/C /Pa15 +/K [1415 0 R 927 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1417 0 obj +<< +/K [930 0 R 929 0 R] +/P 1418 0 R +/S /Lbl +>> +endobj +1418 0 obj +<< +/C /Pa15 +/K [1417 0 R 931 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1419 0 obj +<< +/K [933 0 R 932 0 R] +/P 1420 0 R +/S /Lbl +>> +endobj +1420 0 obj +<< +/C /Pa15 +/K [1419 0 R 934 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1421 0 obj +<< +/K [936 0 R 935 0 R] +/P 1422 0 R +/S /Lbl +>> +endobj +1422 0 obj +<< +/C /Pa15 +/K [1421 0 R 937 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1423 0 obj +<< +/K [939 0 R 938 0 R] +/P 1424 0 R +/S /Lbl +>> +endobj +1424 0 obj +<< +/C /Pa16 +/K [1423 0 R 940 0 R] +/P 1159 0 R +/S /LI +>> +endobj +1425 0 obj +<< +/K [957 0 R 956 0 R] +/P 1426 0 R +/S /Lbl +>> +endobj +1426 0 obj +<< +/C /Pa14 +/K [1425 0 R 958 0 R] +/P 1160 0 R +/S /LI +>> +endobj +1427 0 obj +<< +/K [960 0 R 959 0 R] +/P 1428 0 R +/S /Lbl +>> +endobj +1428 0 obj +<< +/C /Pa15 +/K [1427 0 R 961 0 R] +/P 1160 0 R +/S /LI +>> +endobj +1429 0 obj +<< +/K [963 0 R 962 0 R] +/P 1430 0 R +/S /Lbl +>> +endobj +1430 0 obj +<< +/C /Pa15 +/K [1429 0 R 964 0 R] +/P 1160 0 R +/S /LI +>> +endobj +1431 0 obj +<< +/K [966 0 R 965 0 R] +/P 1432 0 R +/S /Lbl +>> +endobj +1432 0 obj +<< +/C /Pa15 +/K [1431 0 R 967 0 R] +/P 1160 0 R +/S /LI +>> +endobj +1433 0 obj +<< +/K [969 0 R 968 0 R] +/P 1434 0 R +/S /Lbl +>> +endobj +1434 0 obj +<< +/C /Pa16 +/K [1433 0 R 970 0 R] +/P 1160 0 R +/S /LI +>> +endobj +1435 0 obj +<< +/K [975 0 R 974 0 R] +/P 1436 0 R +/S /Lbl +>> +endobj +1436 0 obj +<< +/C /Pa14 +/K [1435 0 R 976 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1437 0 obj +<< +/K [978 0 R 977 0 R] +/P 1438 0 R +/S /Lbl +>> +endobj +1438 0 obj +<< +/C /Pa15 +/K [1437 0 R 979 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1439 0 obj +<< +/K [981 0 R 980 0 R] +/P 1440 0 R +/S /Lbl +>> +endobj +1440 0 obj +<< +/C /Pa15 +/K [1439 0 R 982 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1441 0 obj +<< +/K [984 0 R 983 0 R] +/P 1442 0 R +/S /Lbl +>> +endobj +1442 0 obj +<< +/C /Pa15 +/K [1441 0 R 985 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1443 0 obj +<< +/K [987 0 R 986 0 R] +/P 1444 0 R +/S /Lbl +>> +endobj +1444 0 obj +<< +/C /Pa15 +/K [1443 0 R 988 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1445 0 obj +<< +/K [990 0 R 989 0 R] +/P 1446 0 R +/S /Lbl +>> +endobj +1446 0 obj +<< +/C /Pa15 +/K [1445 0 R 991 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1447 0 obj +<< +/K [993 0 R 992 0 R] +/P 1448 0 R +/S /Lbl +>> +endobj +1448 0 obj +<< +/C /Pa15 +/K [1447 0 R 994 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1449 0 obj +<< +/K [996 0 R 995 0 R] +/P 1450 0 R +/S /Lbl +>> +endobj +1450 0 obj +<< +/C /Pa15 +/K [1449 0 R 997 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1451 0 obj +<< +/K [999 0 R 998 0 R] +/P 1452 0 R +/S /Lbl +>> +endobj +1452 0 obj +<< +/C /Pa16 +/K [1451 0 R 1000 0 R] +/P 1161 0 R +/S /LI +>> +endobj +1453 0 obj +<< +/K 1454 0 R +/P 1001 0 R +/S /Reference +>> +endobj +1454 0 obj +<< +/K 1003 0 R +/P 1453 0 R +/S /Link +>> +endobj +1455 0 obj +<< +/K [1013 0 R 1012 0 R] +/P 1456 0 R +/S /Lbl +>> +endobj +1456 0 obj +<< +/C /Pa14 +/K [1455 0 R 1014 0 R] +/P 1162 0 R +/S /LI +>> +endobj +1457 0 obj +<< +/K [1016 0 R 1015 0 R] +/P 1458 0 R +/S /Lbl +>> +endobj +1458 0 obj +<< +/C /Pa15 +/K [1457 0 R 1017 0 R] +/P 1162 0 R +/S /LI +>> +endobj +1459 0 obj +<< +/K [1019 0 R 1018 0 R] +/P 1460 0 R +/S /Lbl +>> +endobj +1460 0 obj +<< +/C /Pa15 +/K [1459 0 R 1020 0 R] +/P 1162 0 R +/S /LI +>> +endobj +1461 0 obj +<< +/K [1022 0 R 1021 0 R] +/P 1462 0 R +/S /Lbl +>> +endobj +1462 0 obj +<< +/C /Pa16 +/K [1461 0 R 1023 0 R] +/P 1162 0 R +/S /LI +>> +endobj +1463 0 obj +<< +/K [1026 0 R 1025 0 R] +/P 1464 0 R +/S /Lbl +>> +endobj +1464 0 obj +<< +/C /Pa14 +/K [1463 0 R 1027 0 R] +/P 1163 0 R +/S /LI +>> +endobj +1465 0 obj +<< +/K [1031 0 R 1030 0 R] +/P 1466 0 R +/S /Lbl +>> +endobj +1466 0 obj +<< +/C /Pa16 +/K [1465 0 R 1032 0 R] +/P 1163 0 R +/S /LI +>> +endobj +1467 0 obj +<< +/K [1037 0 R 1036 0 R] +/P 1468 0 R +/S /Lbl +>> +endobj +1468 0 obj +<< +/C /Pa14 +/K [1467 0 R 1038 0 R] +/P 1164 0 R +/S /LI +>> +endobj +1469 0 obj +<< +/K [1040 0 R 1039 0 R] +/P 1470 0 R +/S /Lbl +>> +endobj +1470 0 obj +<< +/C /Pa15 +/K [1469 0 R 1041 0 R] +/P 1164 0 R +/S /LI +>> +endobj +1471 0 obj +<< +/K [1043 0 R 1042 0 R] +/P 1472 0 R +/S /Lbl +>> +endobj +1472 0 obj +<< +/C /Pa15 +/K [1471 0 R 1044 0 R] +/P 1164 0 R +/S /LI +>> +endobj +1473 0 obj +<< +/K [1046 0 R 1045 0 R] +/P 1474 0 R +/S /Lbl +>> +endobj +1474 0 obj +<< +/C /Pa16 +/K [1473 0 R 1047 0 R] +/P 1164 0 R +/S /LI +>> +endobj +1475 0 obj +<< +/K 1519 0 R +/P 1070 0 R +/S /Note +>> +endobj +1476 0 obj +<< +/K 1520 0 R +/P 1073 0 R +/S /Note +>> +endobj +1477 0 obj +<< +/K 1521 0 R +/P 1075 0 R +/S /Note +>> +endobj +1478 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1479 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1522 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1523 0 R +/FontName /WMNLRB+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1480 0 obj +<< +/Filter /FlateDecode +/Length 2149 +/Subtype /Type1C +>> +stream +H‰|TkPWîaèŒn£ô6ê4Õ=kňŠ·E˜¥&‰¤¡›‚ÖûÌLS%DË7¨” ‚I 1ÊD¹yUÆ3"^jÉÛM¡‘ʱ³¬ý×Vº­áÍ´ÛvV}6˜…Hôxh¥r§pz[|Šl±§§³£Ùº~´Ž2g''§ÖUæ-WÆ(dÁiêE’Z¶:9V©Ú©TE§(ä eÞ‰‰²j™J¡V¨4æäošd j™"!%^¡’E ‹Û„ó*…\–¢Š–+’¢U;dJóÊÿ„qÿ‡J–,°d!É æ(8EHªeÑÉòEŠò#K¬rwrŠ*A¡^¸È?xcÚN…l‰L®ˆÃ0‘ð`Ó0ŒÂ0ÃfaØl ›‹a."ÌÇ[ƒaëÄX°6]è+ˆmÀJ±¢y¢TÑÑ{‹p‹f±£¸LrR¸¬\ÕÎF< ß>¹ËGßñQoE0&`ñ{lß¡R“¤³üŸýC@Hßûý‚>õôMV„³u®ø™ ­̳ª/ÿÌÜV.G Ð,/ߟKÈ2 xÃåw"¸VbÞÇ<Ÿ{ðvh¶•LØãË yJäÓFLÿÒºJ›f#²EœùIH°P‚‡¡ùÍÑT›2þõˆ_Át7 +Æa”Üq´˜@‰ÿvÇ"nA0^:L·ÃRœ.hÌkÉk°2yòüˆÂ˜ëhé \½áµ¯E½` ?‚­¸×Dg5vyÀÀô_«ºïqßÝjz S¤ ‰í[smt=‹lÿ¬!X;ÓÇNœÏi``áswdoàÐ +GäjdU»ŽæìåÈ AiÃ8¬7£‹{mŠ0Ž##¬ƒ“ã3 ²YØQù”ÃÂä@šw‘Py›èÑW+Oºœô8¾1/ÕJ(dßÙ´Ÿ4O÷~ŸÜ²¥Ä*GrçtW×€´SÓWÅÖG®>îÀøú>ÁéNçœ4õµ'x„E-á|2K7ÎëÆEíÂ0øÃ4qS5½ûâÃÔ^|úG êB“®p‹kååíÒ†šK?ÝiÙ³¿œ­ÃKâCŽû0hÎ"dáлıÜóÄš¤/¥£â>ûb}ééX–L×kà@ßð€Mµ }XS|˜mV¥þò)øJÞGŽ!'¯/4»·±åËð² mÅW™ç…¡;¸ƒ`D¢@d-¥Z½oø¾¹sí\}%›CP_‡àTk:¬ tÙØxí¶›yâ©«>9 çÈníè ?ç5ħÚܺª…iT,³¥Zÿòn"Ö×ÞTßaÀÄ°’ƒyF÷14™ñ M OâôpYOô$›ô!úí,Pp.0图a;ŠšëÚ˜þ&?7Žjµô +Ýz±u?«ÿÆ—'%?×Âß^‹jÁFÌÏOëÔI¶2k:ßr/ 7ï0W*tJ¹SCx¡2"/’A+æ"ÍAóÇÀ±ûZaÁYŽìÔŽhø¹¯Ì²kad½jåí>l¦Q…^R·{ËùMší€<ŒršV½]5¬IP›ë…ƒ¡¿ ïh“ò=¡†#4պߙ­eC3£61Ë£¾ñË•žÇ7ä[ò9“Θ©“’uÃ`ó&?„ÛÍ·N +Z¨·ä´ô×0°EÎÈÉQˆAöÃàÜs«ðÄ%6í¾/.æ`³Ü¿~0›{nÙ–[}ÿG¦¿Ô;ÒÀ‘¨¬L秾„™6]À¢é0•† [>MH—Pã·?øÓ1ÊdEܹä¦Ëç*.rõ†]Ñ „s³ÞjÍßl +¬úíý£õä®­à7E¦¢Ü¶&¿ªî[¦óÜ–UªòÍ’¢œâœ¶¶°ªòÓu~ËRòpò¼±46Q·g'›²/5uïN+=Ñ¡ÙT·–ñŒŠT¨¹l‚jÍz€ÿ‰È‰6†KÉ«¿ÓO…P¡÷â©Ð@‹å³ kj[™{gCý8t^ªKXèrÃ}ih„Bà +X͇Àö_°Fí øù¥ÐU +%†F>‹FsgÙ#WäôÞXئO(pžÃ;4›Ë^L?­q]a¿ÙßïóˆÞ‘'µO„)F~Xÿ +zFµ¿ñè]´™ü\!?smW7b?_p\øYz%nÜÆé êÉΊŘ"Lak¥`AS£y¦üœ<¶£ åâ5æñ%?·ùk–‡EÕµerÙù†ü)‰>@D›zþ#Ux×üKÊ%¨î"S¡)Ÿ½‘ßXßÅçëõyUVªÛ¤;dÌd‚âýÕÜ‚ª82ŒËˆœ(cøj))Ó Â³AQ+|ò&‹ëÊéÔºëûº ï7ÈÄ4»T[žJ)®’V–—]¹ÜžYÆ–àÅÊð¢á¾nœ!¨1ìÕv«¿jJ÷n—îPï‰ +-9¡dIä­{ ·†D0E<ÀÐÈÂoQJ“¬-ˆ:«dU§ë3š™†êܯJ8ýž­MÏÖ0áéU]ì€IChp2³à?úQ=ý»öôéÓOgû6ýÊtv PÅôïz`! Ðéœr ’ây8»y¸Ÿs}çç~>•‡çÇ‘ D þ?Ü +endstream +endobj +1481 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1482 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1524 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1525 0 R +/FontName /SBHBNN+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1483 0 obj +<< +/BaseFont /QANQON+Wingdings-Regular +/CIDSystemInfo 1526 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1527 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1484 0 obj +<< +/Filter /FlateDecode +/Length 1280 +/Subtype /Type1C +>> +stream +H‰|PkPgÝMÈ$ŠëÒ6›ÉnuŠ …ÒhaÊ#PßÈC| È"Ñ@0‰<ê+L&Dj% Vª¶* +ø«hµÂPgpŠÕ¶X3>:#P•™¶wõãG7ø£ýÕÙ3çœ;÷Üï^ `8Ž«2r–§é>ŒXQc12-æÙ\™±Èl2ø«¬@ã‚*@P+(<ê€Î—›d0÷CPËâgb¿;šj®»7—ÚØ…Zml¤ã¦1!’‰‰™Æ86Ù`.âØì«+³²KÊ‹Í– +³¥ÐÆ¢Ød“‰Ž°²ÎÊY*ýæ«7±F+Ëm¥œ…-‹›b¿…3°6K¡++´leÍþÊdÉÿŒb嬘Åæ–ý*Û&šV¶°Ü-¦˜§§›·—Û,FΞSSÁ±ï±®? ÅHŒÂâ°T,[‰­Æ²±\L!^[ebmØc<ß‹¿”¬”Ü”&J]Ò›=õ}ÂD.âœ>i}€àx‘9å Àƒú)”_È`Œ@,úŽ¿˜Ú/Ÿ" +¦9$!QÂÊÏ_)Ñ>åˆ}\¨Ç;à5Ø!R8ú"œB‘ñH +´ÞõRÃ|¢}ð:p“,ZÈ8PwºbQŠáÞIÍÐû ÖÅ@BÝÅ{C´r¤~RÐ?Ãá©&T‡M¢V·üz¯ dúFPý¥{ŒæhÓʹ|MWœìè©Þã×éíkW3uñ©‰hš”öÆråH[%hÇàü$7!P*¤„öþX‚ Fså¨e*\¶.!­éÀK¹Ü é­]‡Nµv¿¹ppu\‰ +éäÊÁÚçBísüŠ¸Z:„J»ORÛOß©ºECŠo°‰¬ô-³°ÓpäŠêlGÏÈKÕ»hN<•µ”æ~™B£yÑ H2ÿV&H‹™‡¦Ž²µª}ÉûËWµ.Ö(íK+…yO ´jæ„€BÉ°8Œìýü¶ÌM¬êüÞzƒ HA*o»Þ}Š‚é”5¦ü2Æ çQÈÔ0Aî\çÌunÑ §(ÞíuÐ\m¾ÐÕGûºuñ Ùž¿"iͦӽ»5Îu*eíÌ|Á÷ñN˜[üg±G‰-‡UçAŠE1ZD"…͇Øáþ¦C=šš²]%Egщég~w0úNþø íkM.¨c”‚ª­R˜ýÌîßB¯þYjòÞP˜È»‰fws¯éð¶w]¤¯³!ƒA¢AÞì9èá5Mí'zèc1è+Ñ?'‡íµEŦÚê +mWUÕGNâj庮e´V_ÀYAö~ö“ì-ÂSèÊÏV)‘®VýÃöï81„ÖS"op†£—· Ò éHƒÈ¨'( 9Ë”³™qä½O–!Œpotç-SAÈFŠœht{=š«ü¥Ó—é»=ºøˆKóô]}{‡·ÎË«”sÅmIÛ«ŽM#›Ä5ÅA9Øìnr{5×¼çΠнNg#C6A œt×~âÚCçe•¦[™½y|%³ó}ödÃþÆ9.sØw8*éüí l… QŒ\¹‡vðÁóüž@%üm^.ZÕ> +/K [1489 0 R 1490 0 R 1491 0 R 1493 0 R 1495 0 R] +/P 1166 0 R +/S /Table +>> +endobj +1486 0 obj +<< +/A << +/BBox [85.1197 282.026 501.313 736.985] +/O /Layout +>> +/K [1497 0 R 1498 0 R 1499 0 R 1501 0 R 1503 0 R 1504 0 R] +/P 1167 0 R +/S /Table +>> +endobj +1487 0 obj +<< +/A << +/BBox [85.0394 72.7151 501.232 658.278] +/O /Layout +>> +/K [1506 0 R 1528 0 R 1512 0 R] +/P 1168 0 R +/S /Table +>> +endobj +1488 0 obj +<< +/A << +/BBox [85.0394 95.1679 501.232 212.568] +/O /Layout +>> +/K [1513 0 R 1529 0 R 1514 0 R 1515 0 R 1516 0 R 1517 0 R 1518 0 R] +/P 1169 0 R +/S /Table +>> +endobj +1489 0 obj +<< +/K [1530 0 R 1182 0 R 1183 0 R] +/P 1485 0 R +/S /TR +>> +endobj +1490 0 obj +<< +/K 1184 0 R +/P 1485 0 R +/S /TR +>> +endobj +1491 0 obj +<< +/K [1185 0 R 1186 0 R 1531 0 R] +/P 1485 0 R +/S /TR +>> +endobj +1492 0 obj +<< +/K [1188 0 R 1190 0 R 1192 0 R 1194 0 R] +/P 1531 0 R +/S /L +>> +endobj +1493 0 obj +<< +/K [1195 0 R 1196 0 R 1532 0 R] +/P 1485 0 R +/S /TR +>> +endobj +1494 0 obj +<< +/K 1198 0 R +/P 1532 0 R +/S /L +>> +endobj +1495 0 obj +<< +/K [1199 0 R 1200 0 R 1533 0 R] +/P 1485 0 R +/S /TR +>> +endobj +1496 0 obj +<< +/K [1202 0 R 1204 0 R 1206 0 R 1208 0 R 1210 0 R 1212 0 R] +/P 1533 0 R +/S /L +>> +endobj +1497 0 obj +<< +/K [1534 0 R 1213 0 R 1214 0 R] +/P 1486 0 R +/S /TR +>> +endobj +1498 0 obj +<< +/K 1215 0 R +/P 1486 0 R +/S /TR +>> +endobj +1499 0 obj +<< +/K [1216 0 R 1217 0 R 1535 0 R] +/P 1486 0 R +/S /TR +>> +endobj +1500 0 obj +<< +/K [1219 0 R 1221 0 R 1223 0 R] +/P 1535 0 R +/S /L +>> +endobj +1501 0 obj +<< +/K [1224 0 R 1225 0 R 1536 0 R] +/P 1486 0 R +/S /TR +>> +endobj +1502 0 obj +<< +/K [1227 0 R 1229 0 R 1231 0 R 1233 0 R] +/P 1536 0 R +/S /L +>> +endobj +1503 0 obj +<< +/K 1234 0 R +/P 1486 0 R +/S /TR +>> +endobj +1504 0 obj +<< +/K [1235 0 R 1236 0 R 1537 0 R] +/P 1486 0 R +/S /TR +>> +endobj +1505 0 obj +<< +/K [1238 0 R 1240 0 R 1242 0 R 1244 0 R 1246 0 R 1248 0 R] +/P 1537 0 R +/S /L +>> +endobj +1506 0 obj +<< +/K 1275 0 R +/P 1487 0 R +/S /TR +>> +endobj +1507 0 obj +<< +/K [1277 0 R 1279 0 R 1281 0 R 1283 0 R] +/P 1284 0 R +/S /L +>> +endobj +1508 0 obj +<< +/C /Pa19 +/P 1284 0 R +/S /Kastenlauftext +>> +endobj +1509 0 obj +<< +/K [1286 0 R 1288 0 R 1290 0 R] +/P 1284 0 R +/S /L +>> +endobj +1510 0 obj +<< +/C /Pa19 +/P 1284 0 R +/S /Kastenlauftext +>> +endobj +1511 0 obj +<< +/K [1292 0 R 1294 0 R 1296 0 R] +/P 1284 0 R +/S /L +>> +endobj +1512 0 obj +<< +/K 1284 0 R +/P 1487 0 R +/S /TR +>> +endobj +1513 0 obj +<< +/K [1383 0 R 1384 0 R] +/P 1488 0 R +/S /TR +>> +endobj +1514 0 obj +<< +/K [1385 0 R 1386 0 R] +/P 1488 0 R +/S /TR +>> +endobj +1515 0 obj +<< +/K [1387 0 R 1388 0 R] +/P 1488 0 R +/S /TR +>> +endobj +1516 0 obj +<< +/K [1389 0 R 1390 0 R] +/P 1488 0 R +/S /TR +>> +endobj +1517 0 obj +<< +/K [1391 0 R 1392 0 R] +/P 1488 0 R +/S /TR +>> +endobj +1518 0 obj +<< +/K [1393 0 R 1394 0 R] +/P 1488 0 R +/S /TR +>> +endobj +1519 0 obj +<< +/P 1475 0 R +/S /Link +>> +endobj +1520 0 obj +<< +/P 1476 0 R +/S /Link +>> +endobj +1521 0 obj +<< +/P 1477 0 R +/S /Link +>> +endobj +1522 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1523 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘’„ð(X9Ë5ˆdóâ!Ù ’dƒEv“Ý$ I6î.ÀÇ„B lÐiÇ”)ÔhÅçÆ` íX*43Z,3:£ƒ¥íL,Œ%ŽN¥t´šþÎÝ%ŒüÁNgz¹÷þ¾ÇùÎ÷}çܳ!FD™ÔE‚Jª+žQzf0Ad¼íÃqùjñÁƒDæíDzYSGsÛ[_̳‰²|DÚÚæÖMM½ž\߸7·„ÁKûΗeƒ|O ¹c2žüä;[Úâ—,Jì$ÊÉ#;Z#¼á¼a"6÷é¶ÀÆñ°1(o/üe{ -tñ¯eçá Qœìˆ†:úÝ]kaÇ|bqäM¢K€ƒIVùhó=¦½Ç~Žä†IÇÙÇDÅß eÑ‚Oñ,-™™ãÊÉw帺}ÝÅéÒ¾œÛ¥ `z:B=zµ> ±ò~EŒïRs²¯`¥%s0ôˆÖÛ£õ~å'uMý?Üÿ? ueÑnb”¼f¥¸  ’\¯Jq¼!ÅMì¿Íjsjé‚ôeŠ3*a¦8§ÛØ3)ŽoŒíMq ü7Àÿ•â&#î>(g””Ü#«ÃÑH,Ò—‘hG$ˆ‡#íErak«¬ 7·Äc²6 E;CÁ¢UÕˬ]T°*ÜÞÄ+¬ 5oh DoYU!Ã1 +Ç[BQÑPs8ECA‚¡¶@t½Œ(Ë5bÓ·ç+ÃíaäÊöpãëâx(&íÁbˆ84F6´Ç£áP¬HÒA’è{ pX5…©‘¢¡î&ŠCW¥ç€& ÖNE°,¤V@R-tÍÔ[Ì‘Bx‡à݉gž«w=Ë"*€ÆøfX’ï:cši¢0îzéVGÿçýoô`êÂ;Ž>¨Ú%|%Þj¤²Æ­ê‡W Bjs"®‡.22æÛ­M·´:ÒÉM¦²‘´RØÉAÍ_p¤˜3g;´Å© "×TÐi¬*£°ã­V_¬yû锦ÑÎàÓwõMA!³`¸ÙU]'%•&?6 +ØKTj–2»ë¦ÞÿõëìM-¥@#óñ-|5ØOqB•ÒÜAÜÏQõðþ¤ÍÄmƒUÑünÎ@'•~&=§‡þÉÐÍ}Ô{¼Oá=¶F¼™£‡írÞOÒ6Äþœ÷ó“ü¤c]€¸UÊ# Þ¯@¯âm¥Wé<{>Ó³°§³j"÷à—÷ +›t³Ù_-Só#Îzx÷ ß_Ó‡ôw–Çæ³;Ÿ\¾ÅÉ%9[|Ng( +Õ¬•EX”íDÌA.ølDð¼—Ûü¤¨×æëF®1ÇlE¸8{sP¡Š¶ »±xl$j`œÕ°¬…íf½Èá¾à…|º®ðáײ´‹úzýE`ÀXiîK3[Çù>û4Ÿf¡*/æ¨AÎAZ‡ß…Ç'ÐËïÓóÔK/àì£7è7jN:Gçé +º3PuÍa÷²U@=eO±mèG÷5xšíeýì ä÷6{ŸOFÕI´¢úd–[ù~”¿Íßáâƒüþ¹ ‘.ÖŠûÅ!ñ®xW[¬õj/hiéL·NåyÆ£Øe¦›ëÍmæÍ}æ/2Šh<êr£®*œC´ •`çØ_Øßا®pƒã#õ-çu|_Ïwóçø^þ +vd??Á?àçQã ¿Œ3E®+î^Q ¬ˆb«8"NŠsb떥ݯÍ×VjkPûimP»ˆ•äºÐóõÙzТ·ëOéÝúÏ°£‡ô!#ËéJ®1Ƙgl7ž7ú¯Í±æ8s +Pd–šuf«Ùi2Í i‡Ó¦‡Ó£n:„_¶_Þðõ¾ŽÝý[¾Æ(¦‰ìvÃcb4¼ÔywŠg™­éaÞ¯²3ëØ4¬ÔéŠH§¥ÚiZ%¡V½Adš—è‹i[Ø+¢’Ó~³“~1$öëùƼd?ùqÈÜdúÍ Èô ñ¬Þb±…z7;Àà‹Ž²ú»Lbæ8ŸN§i'í`”F=i‡Ù(|k§ødÖ­¿(^Óz…WŠÝœ¤ˆÐl‹ÿ¢¦ÑìuòÔ[>gîœY3g”–º ¦ß=í®©ùwZS\ròß½}ÒÄïL?nlޘܜìÑ·ÊÊÌHO3 ]œ‘ÛkUú¥=ÕokS­Å‹ •l \£ðÛø×î¼ÞÇ–~ÇM^ïYϦ<Ë“žå#ž,[ÞG÷º¥×’öï=–<ÆV×øÀŸöXõÒrxµÃµ©Ž0 +‚Ë…Ò;¡Å#mæ—^»²³%áõ{¯/3£Âªeº©/#4Ì®´:úXå|æ^é-ëã”6 +YÙU–Çk/±<*[ä{A{yÏë™ärÕºmVÑh5Ød-²G8.TáLc¶éL#êê–}î7»ŽeSƒ¿ +hßóÙ"P¯æÈ)°°<ö›'º±—WøìôŠcŒVøŽSÕpWß’.§^Í–[áÛûø̓“DÂ;!,•˜Hl—voïZ«K=ëë´Ð½´ÖçBÖ–w—TeÔúœ +”M(F’J§ÊL²¼Jã_'ítk‘Õ’XçÇbMLØT»ÉõÚĪòãæ*¯L¬ðY.{Á$«>๽/µ›ú—”Ë%×[ +Ý}Ù9ÉN÷Ý6:E²F]KB#6‡9îŠ!ë«­f*#k ¶ˆ-%2ñY6ÏŸ«¡¹”hœ 7\õ  £þDv™Z=?Û’‰Ë„` ]º^HiŒüìˤ¨Ú.#[ö«Ü.(°§OW;ŬÀÒ"³ùŽ<»ÐÝi/µ:²¥½-£å> ª/+FË].µÊÝÇÊ©‚ÝUãû7ëåEÇñßÜíÝÌ]+=ú/WåÊiclÓV¥4ÛÃþ½ÏTMHzm)ÄO‚!lÀk««Ôø$…(R°+Ûñ $4Ñ*‰†D1Š‘}ôUclýÎþîN®bõÁM?÷™ýýfgwfw»3¼£!sŽ¬‡Ò®/£3 …LÍ3:s¨)ž‰ãq>ï-mj\U_ü«ˆÔVuì~ܵ«¤G8ק#6kȦúë³cf}&;žÆ­éÄ«˜ÍvÆcÙLv0·|h(‹Ä³³Édv_G¦Ð¥Üò˜éZãé݃ê¶ðh¸U[ûý¦/Í%ŸéO7ò*-à{=¶Ýš¨Øü‹2•÷¯ô”slIû«þh ZJ…oÊ&Òk¼Â +–MK)¢²q¢å/Ã7‹™ÂvË |ûI/õˆt«ªzCÒdxX ^YO“¡ËäøÏÒ¢š!G®''T‘g€);ÆÉQ‹ä„¯x›Ñu½àr˜ùÈ·¨W@›¯ \Çy]îBóäûqü#_eŒŒ®¼BÏP?¢^7b_à7Ab ö2\C“Áš,œ+ð[ž«×ÜŽxMþ:âk Yh ×-Ñžº£òEðö[à繯jÇowÑ|¸Ž;Má\ÏÞ´–pu¬‹ÿÌÿî³wž•L1ÿVÏÐõ~º½Žˆäs×P®¸cÛbhEìÈ?×ýo¨¡`M øùmZpÏgï¹wßKÛý¦X¾ž'¿|´•eŠùßK)Æ_¢E¾Ç^¹¾ ÿ ö×аê Y¿™·D9Ö‚´3éJñ +ÿl èy»UN¨R¹VYݱœï±¹îfè°'1Ãú€u†5Í:Íz—u’5Åêau³ºX –ÅjcmfmdYËÏÖ“ð÷àø\Ÿ€ à#p8`LƒÓ` +ï€qp ƒ¯ÍsÜ´Ã:ËzŸuŠõë8ë V;k «•%Y–E– ¾WÁçà3°>çÁ<øœo‚ý`gwsu¨:´ÁΉ¬iŸ”ö1iOH{¯´Ÿ“ö.iH{‡´·I;-í~y¿Z¯bê>uº[EU­ªV•*¢Ö¨rVJ•¡| +Ï°[åOú’} ‘t†)9sí‹çDø©mn žne’’O'¢nkƒë;êÍhrbyVˆ×FM=™¹HB,N˜y§ÓTÛð÷-Z²—Lí¿LëÄ’øm™—ë>•:Ú‡¨íEmµ½hTÌ¥¨998–¹—îÐð_›X5[R³cînªVQ"½u{ÞWF2f]:QÙ×æunS]ô yÉ 1Meø¦—c’xЩÆöÆvÂM§Öèùc>=¸©Î¼$¦ó©Âk1” +0,Jpã +endstream +endobj +1524 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1525 0 obj +<< +/Filter /FlateDecode +/Length 3259 +/Length1 6160 +>> +stream +H‰ìVklTÇ>3s~¶1…YnL^¿x¼ë€ÛÖ¤„]{×ö‚íuv H‚L ÖµŠ‹ +“†D×1i!¢¥ZJJ‚”H‰Hi+9"JqDT(UÒÄýæz± ?øQU•z?ϽßyÌ™sÎ̽kbD”Nm$¨è‘ªÂ©ÅzDÆ[Ð>ZÛ—¯9BdŽ#ÒçÔµÔ7½u}®M”á#ÒÖÕ7n®ë¼òô +øžÆØÒ +¯¼<‡(ó$ä™ PdO{ò5È÷54Å7-Y”ØM”•C$v5Fj9ý9ýDl6Æù¦À¦ñ¨1…(çües )ôÞ™É{á Qœm‰†Zùýýë`Çzb%qäM¢MïƒIVÉ0ó}¦½Ï~äúIï§Ø'D…ßôeöÑ‚Ïq/.š–åÊÊue¹Ú}ÝÆéÒ{¾œÝ¦õ`y:Nú2}:båüšߣÖd_!@þŠ‹faêq­³CëüÊOêšô8xèêÊ }ÄhàšJ”ä‚FCàxy’à5InâümQ‡SK…¤/“œQ{<É9 eÏ&9Þ1v É5ðw’Üÿg’›Œ¸ûˆœZT4S. ×F#±H]\–F¢-‘h Ž4È…²2\ßÉÊP,m  ª-^´|yÞêps}#–_ªß؈ޫ~P!Ã1 +ÇBQÑP}8ECA‚¡¦@tƒŒ(ËmbÝwç+ÃÍaäªæpó«âx(&ÍÁBˆ8 ÔF66Ç£áP¬@Ò’è{0l…©–¢¡FÅ¡+‹R‹s@k¦XR# ©ºzj€-æH!Õ7è/=Æ*ó`ŠØ:¾ïcpNsi:ªòb +ä¤õøíPxx +½|†^ Nz_À.z“~«Ö¤Kt™n¢;ÃU×,ö [ TQ¶•í@?ÚoÃ^v€u³7‘ßÛì>U Õd¹ïç'øÛüþ'ÞË?ã_©b¨1qHïŠwµÅZ§ö¢ö±ö±ÎtÛéT¶‘c¬5Ú=fª¹ÁÜaþÄþCŸ4èÍúV½]ÿ9NtŸÞgd8]É6†sÆ F·ñ‘ñµ9ÂiN +Ìb³Êl4[Í£f¯y%åXêÂÔpj4ÍMGñËö«o½½oàtÿŽ¯5 +i »„Óð„/õ½;Ç3ÌÆÔ0ïVÙ™Ul2vêtS¤ÒRí<­Q£^#ÒÍ«t˜Å´mìUQFÇèÙÊN ¿è‡ô\cî@?ù~qÔÜlúÍ+ÈôºxNo0 ØB½æ ðFGYýݠDZrœO¡ó´›v±VJ¡Ž”clÞµs|k×_¯k«oe`Çê=â‡4ƒF࿨É4g]§õÁ-™5{ÖôiS‹‹ + òÝyS˜|ÿ¤Üû¬‰.9aü÷Çó½Ñ£FŽÈž•9lèŒô´ÔÓÐ5Á¹½V™_Ú“ü¶6ÉZ¼8_ÉVŠÀm +¿=ì²;}léwÜäž%ð¬û–gÉ€gÉ 'Ë”óh^¾[z-iÿÁcÉ“lM…|¯Çª–vŸÃ—9\›äC ¸\˜!½£<Òf~éµËZ^¿ñºÒÓJ­ÒPZ¾›ºÒÒAÓÁì2«¥‹•ÍgáeÞ9]œR† +»Üòxí%–G¥`‹\o h¯¨ðy=c]®ê|·ÍJk­›¬Eö°<Ç…Jel£Ô6edX•Cí²Ë}&±çd&Õøó2‚V0ðŸ-Õj¬<ûaËc?¼¥wt¾û${e¥ÏN-=Éh¥ï•÷·u-ióxªÕjÙ¥¾Žû(¸ÚÒ;V$¼£ÃR‰‰ÄNiwVøn·ºÔ½ºAóÝK+}.dmy÷HUF¥Ï©AÙèB$©tªÌ‚C–Wiüë¥j-²ëýج1 ›*7»^S^rªÿÏT•>Ëe/kU<ãºr(Q¹¹{I‰\r§%ßÝ•™5Ð鮡Ò$cÈí$4hs˜ã®²¾Õj¦2²–àˆØ²V"ŸeóÜÙêšM‰ÚÙpÃUÍÐÑ0úçOdÎQ¡çfZ2qƒp¬¾«wjI‘›yƒUÇeðÈÁ~‹Ûyyö”)ꤘ¥ØZd6ß‘gä»[í¥VK¦´—¢e´Â‡IÕs +Ñr—Kírûɪ`·Uü‹õò‹¢ˆãøoîön段=ú/WåÊiclÓV¥4×Ãþ½ÏÔ?wHÒkK $FxÒ Á`^[]¥Æ')‘‚]Ù¶ˆ!¡‰VH|0$ŠQŒ$裯šcëwöwwr«nú¹Ïìï7;»3»ÛIñ~„†Ì9Š=ܘv<Y(djŸÑ™…LñðLó9wiS먆â_e¨®ºsç㎨[%=Ây¼>‘YÃ÷@6™jÌŽ™ ™ìx·¦ ¯b6Ûte3ÙÁÜò¡h$ÍÎ&Ù=™B—rË c¦OïT§•Géޒòšž4—<¦7ÝÄ«4ŸçÍ箌ô TnúE™ÊýWzÒ>²¤ýÕ4-%ƒ7e3é5^a…Ëæ¥$QÙ8Ñò—Á›ÅLa»e¾ý¤—zDºUÕN}i2¸ ,PŸl ÉÀ%²½ghQÍ-ב¨Ì3À”ãd«E²ƒ—Éö½ËèºÆnp 9Ì|ä;Ô§Ž¡Í×P®ç¼‹.w#Œy²ý)?ÂÈ×c;£ëû/Ó³Ԩ׃Ø8ÇyäMP†Ø#ˆ½ +×Ò¤¿—& çòý–ç*À5ûŸG¼6ñµbh ×-Ñžº£òeðö[ṯjÇo†wÐ|°‘;Má\Ͼ´•°uö­‹ÿÌmïiî³{ž•L1ÿVÏÐõ~º½Žås×P®¼cÛ.bhEìÐ?×ýo¨¡`M øùm^ ϧŸï¹{ßKÛý¦X¾ž'¿ï´•eŠùßK)Æ_¡E¾Çn¹¾ ï öÖÒ°êÆ Y¿™·D9Ö‚T™t¥ x…6ô¼=VN]]¨RµFÅz"9Ïcs=-ÐAWb†õ!ë4kšuŠu‚uœ5Åêeõ°ºYqVŒÕÎÚÄÚÀò³ –—%bOÂ߃à;p| +΃ÁY`ƒ0 N)p¼ÆÁA0 Ü6ÏrÓ6ë ëÖIÖû¬£¬'X¬Í¬6–dùXÅbð·àkp\ŸƒEð 8æÁGàxìÛ{Zj5õVN¼ë•Öqi‘Ö„´vKëiíÖˆ´¶Ik«´ÒÒJÉûÕ:Q÷©{ÔÝ*¬êTªR!U¡ÊUP)åW†ò(<ÃNµ7áIôÇEÂY¦ÄPÄùµ?šÁ§¶:¾h\8U J<;mŽç°;£É‰åY!Þ5õdæ ±<:aæNS]ãß·pÉ^"¹÷­ëIâ·u^®ýLêh?¢–µtÔr£a1—¤–ÄàXæ^ºCÃmbÕlIÍÎ]º»ÉÔ¬¢xzË6ö¼§,ˆþdÌút¼.´§ÝíÜÆúð~ó¢AbšÊðM/Ç$ñ. SMM:…/šNUèùc>Þ¿±Þ¼(¦ó©Âk0” +0E˜p +endstream +endobj +1526 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1527 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1538 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1539 0 R +/FontName /QANQON+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1528 0 obj +<< +/K 1540 0 R +/P 1487 0 R +/S /TR +>> +endobj +1529 0 obj +<< +/K 1541 0 R +/P 1488 0 R +/S /TR +>> +endobj +1530 0 obj +<< +/P 1489 0 R +/S /TD +>> +endobj +1531 0 obj +<< +/K 1492 0 R +/P 1491 0 R +/S /TD +>> +endobj +1532 0 obj +<< +/K 1494 0 R +/P 1493 0 R +/S /TD +>> +endobj +1533 0 obj +<< +/K 1496 0 R +/P 1495 0 R +/S /TD +>> +endobj +1534 0 obj +<< +/P 1497 0 R +/S /TD +>> +endobj +1535 0 obj +<< +/K 1500 0 R +/P 1499 0 R +/S /TD +>> +endobj +1536 0 obj +<< +/K 1502 0 R +/P 1501 0 R +/S /TD +>> +endobj +1537 0 obj +<< +/K 1505 0 R +/P 1504 0 R +/S /TD +>> +endobj +1538 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1539 0 obj +<< +/Filter /FlateDecode +/Length 3259 +/Length1 6147 +>> +stream +H‰ÄV{PT×ÿÎ9÷±»`xhÝTïz1Ù¼yUçµg*‰\G€ßÒØ©¿¾ÿJ1fCÿF# é£]?„¾úCk7n*›gìþ="±»y}]$c0c(EÅgÖF6µˆ%J.QêûÀkë"kÊÏ_‚>üé–Ö†–'~÷ðJ¢Œ· ×Sdz“Léœt–¬á‘ê…– Çýž…ÕšFÞϵÏ•<ö:©EÌŒÞý~.Ü×SªcA¾/ƒôSªÅ{¸üÅ(Æ»š6!•Ó5¹¦R«mŸF[ñöÑ?ÙAúm™Cµð×Ý‹±¾:ŒÌŽcöø íDì/x7?ÍOÛÞ¹ˆ[n!Ä»å>Ø­x;èMºÂNó4í…ï]°f!rŒºè›jg³^ +³ÖGœ5@Çï¯èýe°f°“À¤óív.‰Õ¢Àô‚.ØQ,ZÈšÙzÖÊö f?|¢®ç»y'7ùi’Jä>%]™©6# +#Ž3Ÿ† +­hߢj¬\KODMÐgU¬†5²Y'rèe ¼€ÏE×-zA„¥déyü¨OY¬îw(ˆ-“BãH£lšŽªüX£ +9×ÓjÚbÓÓ ­èå÷éê¤WéÅé]úµµ&]¦+t ÝIYuÍd²¥ ¨•mc;Ñö»è9ö2ëfï"¿³ì>U'¨Õ'²ÜÁ÷ñãü,ÿ=¿Êûù§ü AÂ)VŠZ±A‡Åyq^Z uJ¯JIÉL6íN¥+Ê +¥Ô¡:Õ5êNõyu¿úŽk2A]ù¨«œ–¢ªÍ¨d+í&ÃÞµ8è8½ ê£O­:@ƒC•Xô(ó±[ +±e,ÌÖ² lÓHE¯³7ØAvµ|ú]ffcŸÙt‹+<‹çÔWÉ«ùR¾†¿È_â/ó#8‘Ýü$ÿ_Aýü&jLé"SŒ~Õˆåb“Ø!ºÄiqY `ß’¥Ç¤i±´µŸ‘ú¥O°“\r¶2éáœì‡ô‰mÂø¯?è÷µ±c²23F§§¥¦<0*9Éåt¨Š, Î(߯š™6¥}Á‚K×#0Dî2„M ¦À½S Û0í^¤ÈU_AzHï’¥jshNA¾æ×5ó}Ÿ®õ°eUAÈÏùôfØòB[–rle34ÿØFŸf²°æ7m†?ìC¼x’«T/mpäSÜ•1 ’Ð[â,PÂlüÅqNŽQÈÊ,×}~³L÷Y)˜"Û©7+«‚~ŸÛã 䛬´N¯5IŸg¦äÙ*µ—1•RSµ—Ñš¬r¨]‹çŸ2:zR©6œ—\¯×G¾4E$d­‘–gÎ×}æü-ýc ò{Ø5AÓYÚè&x‚Ê£ñ²¨Ï²VK/ î²ác³¥ß- ÿØ&ÍR c—fvVïöz¬w(„ ù‹‚d­û;4«ŒEA»ec ‘¤e³ÊLÜ û-Kxµf:õyz£±:ŒÍg˜´h³çظrï‰Á?Q¹_3j‚ºÇœëÖC߃ñ 2mî.óje÷z +òã©i‰NÇH’GÝ-4ŒølɆ[²n5³2ÒËpDL­NC&AÝäÙ³¬WÃ,2êf†'ÄÐÑ&ô/l¤[!g§êšq“pôë÷Z"C%;õ&Y¢u\FŽüò™—gææZ'E-ÅÖ"³[ŸQßfVè-©šY–Qe“BÅ…h¹Çcír{—j¡˜Ñª`BרÖ}Œ¼…y!“‡-Ï©aOæbËöŒLë8ÎÇɺfšŽœ‘_JjÖhc±É²þ‡»!áÇçã×â’œmTs"F»;'lt„°5|Š†е€6"=ƒÑZ]KÕxE…Ñâ—Ô3xªÝmz;B M5§%ºaŽ. +7%$î¡üSârÅÕBJº7E½È¤‹ì縋’<(N°‰ +ï à¶8÷3¼‹¦LKó¤e{Ò\·Ô¨Üщ˜;!{~›-y>ì`©›º” æ7$XÝ“`©>Á^y– ³ã¯À-€í,Öx~78 ¶é°mǘI1¥ŒbÃkÉÿâ>0rV–Þ9”Gn"§±·ŠxŽQŸú]ðóЧa\—¨Õñ,æ?†qu»òh·„ÞY<¼úYþöË&¶"Šã3¶ë¤!uCˆ,dÒ .!‘¦*­lÚ«ù¤¢©*ZÇ^;«¦Þhw©õRU Õ +$NÐPñÑ„6Ômø$(pàÂ"('Ä‘3@*ÿ™·2q +‘à€„W¿ý¿yïÍì|ØãUôVq9ÇWÍÅ? ^Xà 4fýœÕÌ•Qy?®Ìá± öìMk¶­áã«|ÏüyîßCŒ¯AßßnEmßÏ(­¹^÷êv¿©Øׂrô¡jÄsD%þk5ÿÓìªB­±¶SЄ¯³\ø–»ñZÎØ}ÿ_úÚñ¾Ôþú¯c]l–Õãÿ"k6âŸ"‡ô‘OíÍ/WváíÑjãgq”ÈŽÀ~,°£°ÇÛÀNý2Y¤¥<û%°9ëæOvˆÕóÓ†ÿ•ÀŽÀþ2°£° l§Ðûd¢»»GîµrŽíÚOöÙΔíd=Ë.uÊÔ䤱Šž+GL×tfÌ|çpj`xp ý «TÌ·cÄ,NOfõú+i¹Ò´¼ ÓÁ;¶c-×33/='›7f#ÒV‘ÅÂÚý•VI¢¹¯dy¨?êe=Ó•ÙR¾ Øú9{ºä9–évJz%æ½W¬½ÌÂáÇa6sAyðõÁrØ”¾gá±`•X'")6‰K²øŠl1W—L¨‰ìÜóÈFæ·ã¸j¡~R—uè:E6Ö²¨W]Zoí;ÿæ KÝM¨‡yPc—È•PUSE=íUó!a«™Ì£tT·x>»Rgíha]«#ußdÐÉö¡dé>¨çÂÊê’«ŸY‚·+è½b9”¦U=²t6V=YÇvíÂϯa³HöËåPÏåþä¤~ä<ÉÉ<É9’×IÎ’Ì‘ì!é'ÙM’&I’ì$y˜dI”$B&áÉAè÷à:ø\Ÿ€÷Á{à"XÀ<8æÀð*xœ9pH·y‘š^$y›ä-’7IÞ 9CòIŠdI/‰A²$DÂ’Iè·àkðø|®‚À»` ¼^/‚c ߟh¬i¬Ùê/ó™äÃ?kø/þ¬áÛ†?iøÃ7 ÿ á0ü1ÃßoÜ+¶)îw‰;E\4‰FÑ b¢^Ô‰Z!DTDDHà]¢|{8ÊŒ¦y¦üqŽeÆeùçѶe^;| ¼¡-ÍË –y</÷¶—CÏêí2¿q‰óÓ§šÕYöCÆùS³ÍŽ±¦ö›?ñªRfèØG¬…oÅVßÂ\2Z>5”w^_{}åõµ7Î/±D&ûüá»Ù ÿñá·ŒVe>j©áí¿$Xz¬ï éRhc-Æs¸¹u,ݛک·½5~¢ùJ„ñy¶Gºº¶tù6 B©Ž” +ád¡Bõpo +BñÛ[›¯ðù ƒ{3¦òwNq +endstream +endobj +1540 0 obj +<< +/P 1528 0 R +/S /TD +>> +endobj +1541 0 obj +<< +/A << +/ColSpan 2 +/O /Table +>> +/P 1529 0 R +/S /TD +>> +endobj +xref +0 1542 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000389 00000 n +0000004671 00000 n +0000004705 00000 n +0000004986 00000 n +0000005113 00000 n +0000005160 00000 n +0000006962 00000 n +0000009111 00000 n +0000011334 00000 n +0000013687 00000 n +0000015690 00000 n +0000018509 00000 n +0000020521 00000 n +0000023073 00000 n +0000025091 00000 n +0000027550 00000 n +0000029568 00000 n +0000032467 00000 n +0000034484 00000 n +0000037483 00000 n +0000039503 00000 n +0000042315 00000 n +0000044334 00000 n +0000046536 00000 n +0000048543 00000 n +0000051173 00000 n +0000053193 00000 n +0000055486 00000 n +0000057507 00000 n +0000060056 00000 n +0000062074 00000 n +0000064266 00000 n +0000066287 00000 n +0000068505 00000 n +0000070513 00000 n +0000072705 00000 n +0000074713 00000 n +0000076818 00000 n +0000078771 00000 n +0000080370 00000 n +0000080439 00000 n +0000080789 00000 n +0000081126 00000 n +0000084005 00000 n +0000084184 00000 n +0000084307 00000 n +0000084430 00000 n +0000084551 00000 n +0000084767 00000 n +0000085159 00000 n +0000085628 00000 n +0000086094 00000 n +0000086522 00000 n +0000086802 00000 n +0000086954 00000 n +0000087363 00000 n +0000099688 00000 n +0000100196 00000 n +0000101616 00000 n +0000101743 00000 n +0000101868 00000 n +0000102163 00000 n +0000103109 00000 n +0000104346 00000 n +0000105354 00000 n +0000106319 00000 n +0000107350 00000 n +0000108355 00000 n +0000109350 00000 n +0000110450 00000 n +0000110977 00000 n +0000111104 00000 n +0000111229 00000 n +0000111802 00000 n +0000112033 00000 n +0000112249 00000 n +0000112740 00000 n +0000113569 00000 n +0000119079 00000 n +0000119515 00000 n +0000120393 00000 n +0000125988 00000 n +0000131445 00000 n +0000131568 00000 n +0000131689 00000 n +0000131813 00000 n +0000132321 00000 n +0000132870 00000 n +0000133022 00000 n +0000138003 00000 n +0000138126 00000 n +0000138247 00000 n +0000138371 00000 n +0000143748 00000 n +0000149542 00000 n +0000155185 00000 n +0000161301 00000 n +0000166535 00000 n +0000172078 00000 n +0000172202 00000 n +0000172324 00000 n +0000172449 00000 n +0000177669 00000 n +0000183294 00000 n +0000189507 00000 n +0000195717 00000 n +0000201297 00000 n +0000207159 00000 n +0000208154 00000 n +0000209069 00000 n +0000209933 00000 n +0000210843 00000 n +0000211794 00000 n +0000212628 00000 n +0000213544 00000 n +0000213846 00000 n +0000213974 00000 n +0000214100 00000 n +0000214621 00000 n +0000214833 00000 n +0000215287 00000 n +0000215694 00000 n +0000216575 00000 n +0000477130 00000 n +0000482842 00000 n +0000488523 00000 n +0000494805 00000 n +0000500845 00000 n +0000506058 00000 n +0000506182 00000 n +0000506304 00000 n +0000506429 00000 n +0000512101 00000 n +0000518065 00000 n +0000523885 00000 n +0000529425 00000 n +0000534610 00000 n +0000537470 00000 n +0000539130 00000 n +0000539354 00000 n +0000539508 00000 n +0000539927 00000 n +0000540652 00000 n +0000541622 00000 n +0000543228 00000 n +0000545337 00000 n +0000547530 00000 n +0000550027 00000 n +0000552796 00000 n +0000555992 00000 n +0000559374 00000 n +0000563163 00000 n +0000567134 00000 n +0000571366 00000 n +0000576061 00000 n +0000581141 00000 n +0000586566 00000 n +0000592175 00000 n +0000597634 00000 n +0000603828 00000 n +0000610220 00000 n +0000616891 00000 n +0000623832 00000 n +0000631043 00000 n +0000638468 00000 n +0000646296 00000 n +0000654416 00000 n +0000662992 00000 n +0000671914 00000 n +0000680802 00000 n +0000689694 00000 n +0000690015 00000 n +0000690335 00000 n +0000690662 00000 n +0000691032 00000 n +0000691306 00000 n +0000691833 00000 n +0000692106 00000 n +0000692625 00000 n +0000692997 00000 n +0000693425 00000 n +0000693732 00000 n +0000694047 00000 n +0000694075 00000 n +0000694387 00000 n +0000694754 00000 n +0000695159 00000 n +0000695314 00000 n +0000695511 00000 n +0000695666 00000 n +0000696082 00000 n +0000696278 00000 n +0000696477 00000 n +0000696878 00000 n +0000697152 00000 n +0000697776 00000 n +0000698200 00000 n +0000698550 00000 n +0000698871 00000 n +0000699191 00000 n +0000699284 00000 n +0000699782 00000 n +0000700364 00000 n +0000700519 00000 n +0000700927 00000 n +0000701123 00000 n +0000701322 00000 n +0000701718 00000 n +0000701991 00000 n +0000702442 00000 n +0000702597 00000 n +0000703019 00000 n +0000703215 00000 n +0000703414 00000 n +0000703804 00000 n +0000703945 00000 n +0000704465 00000 n +0000705075 00000 n +0000705185 00000 n +0000705702 00000 n +0000706306 00000 n +0000706334 00000 n +0000706644 00000 n +0000706918 00000 n +0000707436 00000 n +0000707813 00000 n +0000708128 00000 n +0000708528 00000 n +0000709016 00000 n +0000709359 00000 n +0000709736 00000 n +0000709891 00000 n +0000710313 00000 n +0000710509 00000 n +0000710708 00000 n +0000711098 00000 n +0000711783 00000 n +0000713666 00000 n +0000713721 00000 n +0000713777 00000 n +0000713833 00000 n +0000713888 00000 n +0000713944 00000 n +0000713999 00000 n +0000714054 00000 n +0000714109 00000 n +0000714164 00000 n +0000714220 00000 n +0000714275 00000 n +0000714387 00000 n +0000714483 00000 n +0000714614 00000 n +0000714691 00000 n +0000714794 00000 n +0000714877 00000 n +0000714999 00000 n +0000715082 00000 n +0000715165 00000 n +0000715248 00000 n +0000715371 00000 n +0000715454 00000 n +0000715537 00000 n +0000715659 00000 n +0000715742 00000 n +0000715825 00000 n +0000715908 00000 n +0000716011 00000 n +0000716094 00000 n +0000716172 00000 n +0000716308 00000 n +0000716391 00000 n +0000716474 00000 n +0000716542 00000 n +0000716620 00000 n +0000716715 00000 n +0000716798 00000 n +0000716884 00000 n +0000716952 00000 n +0000717027 00000 n +0000717110 00000 n +0000717178 00000 n +0000717253 00000 n +0000717336 00000 n +0000717404 00000 n +0000717466 00000 n +0000717534 00000 n +0000717596 00000 n +0000717664 00000 n +0000717726 00000 n +0000717793 00000 n +0000717918 00000 n +0000718002 00000 n +0000718086 00000 n +0000718154 00000 n +0000718256 00000 n +0000718340 00000 n +0000718408 00000 n +0000718530 00000 n +0000718614 00000 n +0000718682 00000 n +0000718812 00000 n +0000718896 00000 n +0000718980 00000 n +0000719048 00000 n +0000719154 00000 n +0000719238 00000 n +0000719306 00000 n +0000719400 00000 n +0000719468 00000 n +0000719582 00000 n +0000719666 00000 n +0000719734 00000 n +0000719832 00000 n +0000719911 00000 n +0000720033 00000 n +0000720117 00000 n +0000720201 00000 n +0000720670 00000 n +0000720754 00000 n +0000720838 00000 n +0000720922 00000 n +0000721008 00000 n +0000721094 00000 n +0000721190 00000 n +0000721294 00000 n +0000721386 00000 n +0000721455 00000 n +0000721524 00000 n +0000721601 00000 n +0000721685 00000 n +0000721754 00000 n +0000721823 00000 n +0000721944 00000 n +0000722028 00000 n +0000722112 00000 n +0000722196 00000 n +0000722265 00000 n +0000722334 00000 n +0000722415 00000 n +0000722499 00000 n +0000722568 00000 n +0000722637 00000 n +0000722706 00000 n +0000722792 00000 n +0000722888 00000 n +0000722957 00000 n +0000723026 00000 n +0000723099 00000 n +0000723185 00000 n +0000723321 00000 n +0000723405 00000 n +0000723489 00000 n +0000723558 00000 n +0000723627 00000 n +0000723712 00000 n +0000723796 00000 n +0000723865 00000 n +0000723934 00000 n +0000723997 00000 n +0000724066 00000 n +0000724135 00000 n +0000724212 00000 n +0000724296 00000 n +0000724365 00000 n +0000724434 00000 n +0000724511 00000 n +0000724595 00000 n +0000724664 00000 n +0000724733 00000 n +0000724810 00000 n +0000724894 00000 n +0000724963 00000 n +0000725032 00000 n +0000725101 00000 n +0000725181 00000 n +0000725265 00000 n +0000725349 00000 n +0000725435 00000 n +0000725521 00000 n +0000725607 00000 n +0000725719 00000 n +0000725803 00000 n +0000725899 00000 n +0000725968 00000 n +0000726037 00000 n +0000726114 00000 n +0000726198 00000 n +0000726267 00000 n +0000726336 00000 n +0000726413 00000 n +0000726497 00000 n +0000726566 00000 n +0000726635 00000 n +0000726704 00000 n +0000726790 00000 n +0000726882 00000 n +0000726951 00000 n +0000727020 00000 n +0000727097 00000 n +0000727181 00000 n +0000727250 00000 n +0000727319 00000 n +0000727400 00000 n +0000727484 00000 n +0000727553 00000 n +0000727622 00000 n +0000727699 00000 n +0000727783 00000 n +0000727852 00000 n +0000727921 00000 n +0000727990 00000 n +0000728076 00000 n +0000728192 00000 n +0000728276 00000 n +0000728360 00000 n +0000728464 00000 n +0000728533 00000 n +0000728602 00000 n +0000728683 00000 n +0000728767 00000 n +0000728836 00000 n +0000728905 00000 n +0000728968 00000 n +0000729037 00000 n +0000729106 00000 n +0000729183 00000 n +0000729267 00000 n +0000729336 00000 n +0000729405 00000 n +0000729482 00000 n +0000729566 00000 n +0000729635 00000 n +0000729704 00000 n +0000729781 00000 n +0000729865 00000 n +0000729934 00000 n +0000730003 00000 n +0000730072 00000 n +0000730151 00000 n +0000730241 00000 n +0000730331 00000 n +0000730411 00000 n +0000730491 00000 n +0000730571 00000 n +0000730709 00000 n +0000730793 00000 n +0000730877 00000 n +0000730984 00000 n +0000731068 00000 n +0000731163 00000 n +0000731258 00000 n +0000731657 00000 n +0000731741 00000 n +0000731860 00000 n +0000731944 00000 n +0000732028 00000 n +0000732108 00000 n +0000732278 00000 n +0000732362 00000 n +0000732446 00000 n +0000732565 00000 n +0000732649 00000 n +0000732761 00000 n +0000732845 00000 n +0000732929 00000 n +0000733009 00000 n +0000733139 00000 n +0000733223 00000 n +0000733307 00000 n +0000733410 00000 n +0000733494 00000 n +0000733605 00000 n +0000733689 00000 n +0000733773 00000 n +0000733892 00000 n +0000733976 00000 n +0000734060 00000 n +0000734140 00000 n +0000734246 00000 n +0000734337 00000 n +0000734744 00000 n +0000734828 00000 n +0000734912 00000 n +0000734981 00000 n +0000735050 00000 n +0000735135 00000 n +0000735204 00000 n +0000735273 00000 n +0000735350 00000 n +0000735419 00000 n +0000735488 00000 n +0000735569 00000 n +0000735653 00000 n +0000735722 00000 n +0000735791 00000 n +0000735876 00000 n +0000735960 00000 n +0000736029 00000 n +0000736098 00000 n +0000736167 00000 n +0000736236 00000 n +0000736305 00000 n +0000736398 00000 n +0000736482 00000 n +0000736551 00000 n +0000736620 00000 n +0000736701 00000 n +0000736770 00000 n +0000736839 00000 n +0000736916 00000 n +0000736985 00000 n +0000737054 00000 n +0000737123 00000 n +0000737203 00000 n +0000737557 00000 n +0000737641 00000 n +0000737725 00000 n +0000737809 00000 n +0000737878 00000 n +0000737941 00000 n +0000738010 00000 n +0000738087 00000 n +0000738171 00000 n +0000738240 00000 n +0000738317 00000 n +0000738401 00000 n +0000738492 00000 n +0000738576 00000 n +0000738656 00000 n +0000738758 00000 n +0000738838 00000 n +0000738918 00000 n +0000739032 00000 n +0000739116 00000 n +0000739196 00000 n +0000739575 00000 n +0000739659 00000 n +0000739743 00000 n +0000739827 00000 n +0000739911 00000 n +0000739980 00000 n +0000740072 00000 n +0000740141 00000 n +0000740210 00000 n +0000740279 00000 n +0000740348 00000 n +0000740417 00000 n +0000740486 00000 n +0000740555 00000 n +0000740628 00000 n +0000740697 00000 n +0000740766 00000 n +0000740875 00000 n +0000740959 00000 n +0000741028 00000 n +0000741097 00000 n +0000741186 00000 n +0000741270 00000 n +0000741357 00000 n +0000741426 00000 n +0000741495 00000 n +0000741580 00000 n +0000741649 00000 n +0000741718 00000 n +0000741787 00000 n +0000741856 00000 n +0000741925 00000 n +0000741994 00000 n +0000742075 00000 n +0000742144 00000 n +0000742213 00000 n +0000742276 00000 n +0000742345 00000 n +0000742414 00000 n +0000742477 00000 n +0000742546 00000 n +0000742615 00000 n +0000742678 00000 n +0000742758 00000 n +0000742876 00000 n +0000742960 00000 n +0000743044 00000 n +0000743124 00000 n +0000743242 00000 n +0000743326 00000 n +0000743410 00000 n +0000743513 00000 n +0000743597 00000 n +0000743677 00000 n +0000743757 00000 n +0000743879 00000 n +0000743963 00000 n +0000744043 00000 n +0000744169 00000 n +0000744253 00000 n +0000744333 00000 n +0000744499 00000 n +0000744583 00000 n +0000744667 00000 n +0000744751 00000 n +0000744835 00000 n +0000744914 00000 n +0000745020 00000 n +0000745104 00000 n +0000745184 00000 n +0000745282 00000 n +0000745366 00000 n +0000745481 00000 n +0000745565 00000 n +0000745992 00000 n +0000746076 00000 n +0000746160 00000 n +0000746233 00000 n +0000746302 00000 n +0000746371 00000 n +0000746434 00000 n +0000746503 00000 n +0000746572 00000 n +0000746635 00000 n +0000746704 00000 n +0000746773 00000 n +0000746836 00000 n +0000746905 00000 n +0000746974 00000 n +0000747037 00000 n +0000747106 00000 n +0000747175 00000 n +0000747238 00000 n +0000747307 00000 n +0000747376 00000 n +0000747439 00000 n +0000747508 00000 n +0000747577 00000 n +0000747640 00000 n +0000747709 00000 n +0000747778 00000 n +0000747855 00000 n +0000747939 00000 n +0000748008 00000 n +0000748077 00000 n +0000748162 00000 n +0000748317 00000 n +0000748401 00000 n +0000748485 00000 n +0000748569 00000 n +0000748653 00000 n +0000748776 00000 n +0000748860 00000 n +0000748944 00000 n +0000749028 00000 n +0000749140 00000 n +0000749224 00000 n +0000749304 00000 n +0000749490 00000 n +0000749574 00000 n +0000749658 00000 n +0000749742 00000 n +0000749826 00000 n +0000749910 00000 n +0000749993 00000 n +0000750062 00000 n +0000750131 00000 n +0000750204 00000 n +0000750273 00000 n +0000750342 00000 n +0000750411 00000 n +0000750480 00000 n +0000750549 00000 n +0000750618 00000 n +0000750687 00000 n +0000750756 00000 n +0000750819 00000 n +0000750888 00000 n +0000750957 00000 n +0000751020 00000 n +0000751089 00000 n +0000751158 00000 n +0000751221 00000 n +0000751290 00000 n +0000751359 00000 n +0000751422 00000 n +0000751491 00000 n +0000751560 00000 n +0000751623 00000 n +0000751692 00000 n +0000751761 00000 n +0000751824 00000 n +0000751893 00000 n +0000751962 00000 n +0000752025 00000 n +0000752094 00000 n +0000752163 00000 n +0000752226 00000 n +0000752361 00000 n +0000752445 00000 n +0000752529 00000 n +0000752624 00000 n +0000752708 00000 n +0000752788 00000 n +0000752874 00000 n +0000752943 00000 n +0000753012 00000 n +0000753075 00000 n +0000753144 00000 n +0000753213 00000 n +0000753290 00000 n +0000753374 00000 n +0000753443 00000 n +0000753512 00000 n +0000753581 00000 n +0000753650 00000 n +0000753719 00000 n +0000753782 00000 n +0000753851 00000 n +0000753920 00000 n +0000753989 00000 n +0000754058 00000 n +0000754127 00000 n +0000754208 00000 n +0000754292 00000 n +0000754361 00000 n +0000754431 00000 n +0000754495 00000 n +0000754565 00000 n +0000754635 00000 n +0000754699 00000 n +0000754769 00000 n +0000754839 00000 n +0000754903 00000 n +0000754973 00000 n +0000755043 00000 n +0000755107 00000 n +0000755177 00000 n +0000755247 00000 n +0000755311 00000 n +0000755412 00000 n +0000755544 00000 n +0000755629 00000 n +0000755714 00000 n +0000755795 00000 n +0000756268 00000 n +0000756353 00000 n +0000756438 00000 n +0000756523 00000 n +0000756647 00000 n +0000756732 00000 n +0000756838 00000 n +0000756919 00000 n +0000757080 00000 n +0000757165 00000 n +0000757266 00000 n +0000757336 00000 n +0000757406 00000 n +0000757477 00000 n +0000757547 00000 n +0000757617 00000 n +0000757681 00000 n +0000757751 00000 n +0000757821 00000 n +0000757885 00000 n +0000757959 00000 n +0000758029 00000 n +0000758099 00000 n +0000758163 00000 n +0000758233 00000 n +0000758303 00000 n +0000758367 00000 n +0000758437 00000 n +0000758507 00000 n +0000758571 00000 n +0000758641 00000 n +0000758711 00000 n +0000758775 00000 n +0000758845 00000 n +0000758915 00000 n +0000758979 00000 n +0000759049 00000 n +0000759119 00000 n +0000759183 00000 n +0000759290 00000 n +0000759375 00000 n +0000759460 00000 n +0000759566 00000 n +0000759647 00000 n +0000759761 00000 n +0000759846 00000 n +0000759931 00000 n +0000760012 00000 n +0000760105 00000 n +0000760204 00000 n +0000760289 00000 n +0000760426 00000 n +0000760511 00000 n +0000760596 00000 n +0000760705 00000 n +0000760790 00000 n +0000760881 00000 n +0000760962 00000 n +0000761060 00000 n +0000761141 00000 n +0000761229 00000 n +0000761310 00000 n +0000761444 00000 n +0000761529 00000 n +0000761614 00000 n +0000761695 00000 n +0000761776 00000 n +0000761846 00000 n +0000761916 00000 n +0000761980 00000 n +0000762050 00000 n +0000762120 00000 n +0000762191 00000 n +0000762261 00000 n +0000762331 00000 n +0000762412 00000 n +0000762493 00000 n +0000762596 00000 n +0000762677 00000 n +0000762778 00000 n +0000762863 00000 n +0000762984 00000 n +0000763143 00000 n +0000763228 00000 n +0000763357 00000 n +0000763442 00000 n +0000763873 00000 n +0000763975 00000 n +0000764060 00000 n +0000764145 00000 n +0000764318 00000 n +0000764403 00000 n +0000764488 00000 n +0000764573 00000 n +0000764658 00000 n +0000764739 00000 n +0000764852 00000 n +0000764972 00000 n +0000765057 00000 n +0000765142 00000 n +0000765227 00000 n +0000765308 00000 n +0000765419 00000 n +0000765504 00000 n +0000765793 00000 n +0000765878 00000 n +0000765958 00000 n +0000766046 00000 n +0000766127 00000 n +0000766208 00000 n +0000766410 00000 n +0000766495 00000 n +0000766580 00000 n +0000766665 00000 n +0000766756 00000 n +0000766850 00000 n +0000766937 00000 n +0000767031 00000 n +0000767118 00000 n +0000767205 00000 n +0000767292 00000 n +0000767379 00000 n +0000767466 00000 n +0000767553 00000 n +0000767640 00000 n +0000767727 00000 n +0000767814 00000 n +0000767901 00000 n +0000767982 00000 n +0000768089 00000 n +0000768193 00000 n +0000768278 00000 n +0000768420 00000 n +0000768505 00000 n +0000768590 00000 n +0000768724 00000 n +0000768809 00000 n +0000768890 00000 n +0000768988 00000 n +0000769117 00000 n +0000769202 00000 n +0000769301 00000 n +0000769386 00000 n +0000769456 00000 n +0000769526 00000 n +0000769615 00000 n +0000769700 00000 n +0000769770 00000 n +0000769840 00000 n +0000769904 00000 n +0000769974 00000 n +0000770044 00000 n +0000770108 00000 n +0000770178 00000 n +0000770248 00000 n +0000770312 00000 n +0000770382 00000 n +0000770452 00000 n +0000770528 00000 n +0000770598 00000 n +0000770668 00000 n +0000770739 00000 n +0000770833 00000 n +0000770918 00000 n +0000770999 00000 n +0000771125 00000 n +0000771210 00000 n +0000771316 00000 n +0000771405 00000 n +0000771490 00000 n +0000771560 00000 n +0000771630 00000 n +0000771701 00000 n +0000771771 00000 n +0000771841 00000 n +0000771925 00000 n +0000772010 00000 n +0000772080 00000 n +0000772150 00000 n +0000772221 00000 n +0000772291 00000 n +0000772361 00000 n +0000772442 00000 n +0000772512 00000 n +0000772582 00000 n +0000772676 00000 n +0000772761 00000 n +0000772831 00000 n +0000772901 00000 n +0000772972 00000 n +0000773042 00000 n +0000773112 00000 n +0000773176 00000 n +0000773246 00000 n +0000773316 00000 n +0000773387 00000 n +0000773457 00000 n +0000773527 00000 n +0000773591 00000 n +0000773690 00000 n +0000773775 00000 n +0000773856 00000 n +0000773937 00000 n +0000774099 00000 n +0000774184 00000 n +0000774269 00000 n +0000774354 00000 n +0000774435 00000 n +0000774577 00000 n +0000774662 00000 n +0000774747 00000 n +0000774832 00000 n +0000774912 00000 n +0000775000 00000 n +0000775070 00000 n +0000775140 00000 n +0000775216 00000 n +0000775286 00000 n +0000775356 00000 n +0000775420 00000 n +0000775490 00000 n +0000775560 00000 n +0000775624 00000 n +0000775694 00000 n +0000775764 00000 n +0000775828 00000 n +0000775898 00000 n +0000775968 00000 n +0000776032 00000 n +0000776134 00000 n +0000776219 00000 n +0000776304 00000 n +0000776374 00000 n +0000776444 00000 n +0000776508 00000 n +0000776578 00000 n +0000776648 00000 n +0000776712 00000 n +0000776782 00000 n +0000776852 00000 n +0000776916 00000 n +0000776986 00000 n +0000777056 00000 n +0000777120 00000 n +0000777190 00000 n +0000777260 00000 n +0000777324 00000 n +0000777394 00000 n +0000777464 00000 n +0000777528 00000 n +0000777598 00000 n +0000777668 00000 n +0000777732 00000 n +0000777802 00000 n +0000777872 00000 n +0000777936 00000 n +0000778006 00000 n +0000778076 00000 n +0000778141 00000 n +0000778261 00000 n +0000778348 00000 n +0000778419 00000 n +0000778530 00000 n +0000778617 00000 n +0000778739 00000 n +0000778820 00000 n +0000778914 00000 n +0000779020 00000 n +0000779107 00000 n +0000779182 00000 n +0000779253 00000 n +0000779324 00000 n +0000779389 00000 n +0000779460 00000 n +0000779531 00000 n +0000779596 00000 n +0000779667 00000 n +0000779738 00000 n +0000779803 00000 n +0000779874 00000 n +0000779945 00000 n +0000780010 00000 n +0000780092 00000 n +0000780163 00000 n +0000780234 00000 n +0000780329 00000 n +0000780416 00000 n +0000780503 00000 n +0000780574 00000 n +0000780645 00000 n +0000780722 00000 n +0000780847 00000 n +0000780934 00000 n +0000781021 00000 n +0000781092 00000 n +0000781163 00000 n +0000781228 00000 n +0000781299 00000 n +0000781370 00000 n +0000781442 00000 n +0000781513 00000 n +0000781584 00000 n +0000781649 00000 n +0000781720 00000 n +0000781791 00000 n +0000781856 00000 n +0000782306 00000 n +0000782393 00000 n +0000782480 00000 n +0000782567 00000 n +0000782654 00000 n +0000782736 00000 n +0000782818 00000 n +0000782900 00000 n +0000782982 00000 n +0000783064 00000 n +0000783146 00000 n +0000783228 00000 n +0000783310 00000 n +0000783392 00000 n +0000783474 00000 n +0000783556 00000 n +0000783638 00000 n +0000783720 00000 n +0000783802 00000 n +0000783884 00000 n +0000783966 00000 n +0000784048 00000 n +0000784141 00000 n +0000784249 00000 n +0000784336 00000 n +0000784429 00000 n +0000784518 00000 n +0000784611 00000 n +0000784693 00000 n +0000785374 00000 n +0000786885 00000 n +0000797391 00000 n +0000807739 00000 n +0000810213 00000 n +0000810833 00000 n +0000811024 00000 n +0000813473 00000 n +0000813502 00000 n +0000813808 00000 n +0000814119 00000 n +0000814148 00000 n +0000814461 00000 n +0000814859 00000 n +0000815160 00000 n +0000815461 00000 n +0000815821 00000 n +0000829267 00000 n +0000832518 00000 n +0000833198 00000 n +0000837984 00000 n +0000838013 00000 n +0000838319 00000 n +0000838716 00000 n +0000839017 00000 n +0000839318 00000 n +0000839678 00000 n +0000840049 00000 n +0000847536 00000 n +0000847565 00000 n +0000847878 00000 n +0000848292 00000 n +0000848593 00000 n +0000848894 00000 n +0000849250 00000 n +0000854555 00000 n +0000859422 00000 n +0000859613 00000 n +0000868998 00000 n +0000871428 00000 n +0000874730 00000 n +0000876364 00000 n +0000876393 00000 n +0000876706 00000 n +0000877120 00000 n +0000877421 00000 n +0000877722 00000 n +0000878060 00000 n +0000878416 00000 n +0000878507 00000 n +0000878563 00000 n +0000878626 00000 n +0000878689 00000 n +0000878752 00000 n +0000878815 00000 n +0000878878 00000 n +0000878941 00000 n +0000879068 00000 n +0000879141 00000 n +0000879268 00000 n +0000879413 00000 n +0000879558 00000 n +0000879614 00000 n +0000879670 00000 n +0000879726 00000 n +0000879782 00000 n +0000879838 00000 n +0000879894 00000 n +0000879950 00000 n +0000880006 00000 n +0000880062 00000 n +0000880118 00000 n +0000880174 00000 n +0000880230 00000 n +0000880286 00000 n +0000880342 00000 n +0000880398 00000 n +0000880454 00000 n +0000880527 00000 n +0000880627 00000 n +0000880700 00000 n +0000880800 00000 n +0000880927 00000 n +0000881018 00000 n +0000881145 00000 n +0000881227 00000 n +0000881291 00000 n +0000881373 00000 n +0000881436 00000 n +0000881516 00000 n +0000881596 00000 n +0000881676 00000 n +0000881756 00000 n +0000881817 00000 n +0000881873 00000 n +0000881928 00000 n +0000882001 00000 n +0000882056 00000 n +0000882129 00000 n +0000882184 00000 n +0000882257 00000 n +0000882312 00000 n +0000882385 00000 n +0000882440 00000 n +0000882513 00000 n +0000882567 00000 n +0000882621 00000 n +0000882705 00000 n +0000882759 00000 n +0000882813 00000 n +0000882878 00000 n +0000882952 00000 n +0000883017 00000 n +0000883091 00000 n +0000883156 00000 n +0000883230 00000 n +0000883295 00000 n +0000883369 00000 n +0000883423 00000 n +0000883477 00000 n +0000883542 00000 n +0000883616 00000 n +0000883670 00000 n +0000883724 00000 n +0000883789 00000 n +0000883863 00000 n +0000883928 00000 n +0000884002 00000 n +0000884067 00000 n +0000884141 00000 n +0000884206 00000 n +0000884280 00000 n +0000884345 00000 n +0000884419 00000 n +0000884484 00000 n +0000884558 00000 n +0000884612 00000 n +0000884666 00000 n +0000884750 00000 n +0000884804 00000 n +0000884858 00000 n +0000884923 00000 n +0000884997 00000 n +0000885062 00000 n +0000885136 00000 n +0000885201 00000 n +0000885275 00000 n +0000885329 00000 n +0000885383 00000 n +0000885448 00000 n +0000885522 00000 n +0000885587 00000 n +0000885661 00000 n +0000885726 00000 n +0000885800 00000 n +0000885865 00000 n +0000885939 00000 n +0000886023 00000 n +0000886077 00000 n +0000886131 00000 n +0000886196 00000 n +0000886270 00000 n +0000886335 00000 n +0000886409 00000 n +0000886474 00000 n +0000886548 00000 n +0000886613 00000 n +0000886687 00000 n +0000886752 00000 n +0000886826 00000 n +0000886891 00000 n +0000886965 00000 n +0000887030 00000 n +0000887104 00000 n +0000887169 00000 n +0000887243 00000 n +0000887308 00000 n +0000887382 00000 n +0000887447 00000 n +0000887521 00000 n +0000887586 00000 n +0000887660 00000 n +0000887725 00000 n +0000887799 00000 n +0000887864 00000 n +0000887938 00000 n +0000888003 00000 n +0000888077 00000 n +0000888142 00000 n +0000888216 00000 n +0000888271 00000 n +0000888344 00000 n +0000888399 00000 n +0000888472 00000 n +0000888527 00000 n +0000888701 00000 n +0000888762 00000 n +0000888818 00000 n +0000888872 00000 n +0000888953 00000 n +0000889027 00000 n +0000889092 00000 n +0000889166 00000 n +0000889231 00000 n +0000889305 00000 n +0000889370 00000 n +0000889444 00000 n +0000889553 00000 n +0000889618 00000 n +0000889692 00000 n +0000889757 00000 n +0000889831 00000 n +0000889896 00000 n +0000889970 00000 n +0000890035 00000 n +0000890109 00000 n +0000890174 00000 n +0000890248 00000 n +0000890313 00000 n +0000890387 00000 n +0000890452 00000 n +0000890526 00000 n +0000890591 00000 n +0000890665 00000 n +0000890730 00000 n +0000890804 00000 n +0000890869 00000 n +0000890943 00000 n +0000891008 00000 n +0000891082 00000 n +0000891147 00000 n +0000891221 00000 n +0000891286 00000 n +0000891360 00000 n +0000891425 00000 n +0000891499 00000 n +0000891564 00000 n +0000891638 00000 n +0000891703 00000 n +0000891777 00000 n +0000891842 00000 n +0000891916 00000 n +0000891981 00000 n +0000892055 00000 n +0000892120 00000 n +0000892194 00000 n +0000892259 00000 n +0000892333 00000 n +0000892398 00000 n +0000892472 00000 n +0000892537 00000 n +0000892611 00000 n +0000892676 00000 n +0000892750 00000 n +0000892815 00000 n +0000892889 00000 n +0000892954 00000 n +0000893028 00000 n +0000893093 00000 n +0000893167 00000 n +0000893232 00000 n +0000893306 00000 n +0000893371 00000 n +0000893445 00000 n +0000893510 00000 n +0000893584 00000 n +0000893649 00000 n +0000893723 00000 n +0000893788 00000 n +0000893862 00000 n +0000893927 00000 n +0000894001 00000 n +0000894066 00000 n +0000894140 00000 n +0000894205 00000 n +0000894279 00000 n +0000894344 00000 n +0000894418 00000 n +0000894483 00000 n +0000894557 00000 n +0000894622 00000 n +0000894696 00000 n +0000894761 00000 n +0000894835 00000 n +0000894900 00000 n +0000894974 00000 n +0000895039 00000 n +0000895113 00000 n +0000895178 00000 n +0000895252 00000 n +0000895317 00000 n +0000895391 00000 n +0000895456 00000 n +0000895530 00000 n +0000895595 00000 n +0000895669 00000 n +0000895734 00000 n +0000895808 00000 n +0000895873 00000 n +0000895947 00000 n +0000896012 00000 n +0000896086 00000 n +0000896151 00000 n +0000896225 00000 n +0000896290 00000 n +0000896364 00000 n +0000896418 00000 n +0000896472 00000 n +0000896526 00000 n +0000896580 00000 n +0000896634 00000 n +0000896688 00000 n +0000896742 00000 n +0000896796 00000 n +0000896850 00000 n +0000896904 00000 n +0000896958 00000 n +0000897012 00000 n +0000897077 00000 n +0000897151 00000 n +0000897216 00000 n +0000897290 00000 n +0000897355 00000 n +0000897429 00000 n +0000897494 00000 n +0000897568 00000 n +0000897633 00000 n +0000897707 00000 n +0000897772 00000 n +0000897846 00000 n +0000897911 00000 n +0000897985 00000 n +0000898050 00000 n +0000898124 00000 n +0000898189 00000 n +0000898263 00000 n +0000898328 00000 n +0000898402 00000 n +0000898467 00000 n +0000898541 00000 n +0000898606 00000 n +0000898680 00000 n +0000898745 00000 n +0000898819 00000 n +0000898884 00000 n +0000898958 00000 n +0000899023 00000 n +0000899097 00000 n +0000899162 00000 n +0000899236 00000 n +0000899301 00000 n +0000899375 00000 n +0000899440 00000 n +0000899514 00000 n +0000899579 00000 n +0000899653 00000 n +0000899718 00000 n +0000899792 00000 n +0000899857 00000 n +0000899931 00000 n +0000899996 00000 n +0000900070 00000 n +0000900135 00000 n +0000900209 00000 n +0000900274 00000 n +0000900348 00000 n +0000900413 00000 n +0000900487 00000 n +0000900552 00000 n +0000900626 00000 n +0000900691 00000 n +0000900765 00000 n +0000900830 00000 n +0000900904 00000 n +0000900969 00000 n +0000901044 00000 n +0000901106 00000 n +0000901163 00000 n +0000901230 00000 n +0000901305 00000 n +0000901372 00000 n +0000901447 00000 n +0000901514 00000 n +0000901589 00000 n +0000901656 00000 n +0000901731 00000 n +0000901798 00000 n +0000901873 00000 n +0000901940 00000 n +0000902015 00000 n +0000902082 00000 n +0000902157 00000 n +0000902224 00000 n +0000902299 00000 n +0000902366 00000 n +0000902441 00000 n +0000902508 00000 n +0000902583 00000 n +0000902640 00000 n +0000902697 00000 n +0000902754 00000 n +0000902831 00000 n +0000903128 00000 n +0000905370 00000 n +0000905447 00000 n +0000905744 00000 n +0000905935 00000 n +0000907308 00000 n +0000907464 00000 n +0000907629 00000 n +0000907767 00000 n +0000907941 00000 n +0000908016 00000 n +0000908071 00000 n +0000908146 00000 n +0000908229 00000 n +0000908304 00000 n +0000908358 00000 n +0000908433 00000 n +0000908534 00000 n +0000908609 00000 n +0000908664 00000 n +0000908739 00000 n +0000908813 00000 n +0000908888 00000 n +0000908971 00000 n +0000909026 00000 n +0000909101 00000 n +0000909202 00000 n +0000909257 00000 n +0000909340 00000 n +0000909404 00000 n +0000909478 00000 n +0000909542 00000 n +0000909616 00000 n +0000909671 00000 n +0000909737 00000 n +0000909803 00000 n +0000909869 00000 n +0000909935 00000 n +0000910001 00000 n +0000910067 00000 n +0000910112 00000 n +0000910157 00000 n +0000910202 00000 n +0000910291 00000 n +0000913641 00000 n +0000913730 00000 n +0000917079 00000 n +0000917156 00000 n +0000917453 00000 n +0000917508 00000 n +0000917563 00000 n +0000917606 00000 n +0000917661 00000 n +0000917716 00000 n +0000917771 00000 n +0000917814 00000 n +0000917869 00000 n +0000917924 00000 n +0000917979 00000 n +0000918068 00000 n +0000921417 00000 n +0000921460 00000 n +trailer +<< +/ID [ ] +/Info 1 0 R +/Root 2 0 R +/Size 1542 +>> +startxref +921533 +%%EOF diff --git a/src/Static/data/Standards/5/IDDRS-5.60-HIV-AIDS-and-DDR.docx b/src/Static/data/Standards/5/IDDRS-5.60-HIV-AIDS-and-DDR.docx new file mode 100644 index 0000000..08dd5a9 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.60-HIV-AIDS-and-DDR.docx differ diff --git a/src/Static/data/Standards/5/IDDRS-5.60-HIV-AIDS-and-DDR.pdf b/src/Static/data/Standards/5/IDDRS-5.60-HIV-AIDS-and-DDR.pdf new file mode 100644 index 0000000..9e50276 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.60-HIV-AIDS-and-DDR.pdf differ diff --git a/src/Static/data/Standards/5/IDDRS-5.70-Health-and-DDR.docx b/src/Static/data/Standards/5/IDDRS-5.70-Health-and-DDR.docx new file mode 100644 index 0000000..32243ba Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.70-Health-and-DDR.docx differ diff --git a/src/Static/data/Standards/5/IDDRS-5.70-Health-and-DDR.pdf b/src/Static/data/Standards/5/IDDRS-5.70-Health-and-DDR.pdf new file mode 100644 index 0000000..e3144fe Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.70-Health-and-DDR.pdf differ diff --git a/src/Static/data/Standards/5/IDDRS-5.80-Disability-Inclusive-DDR.docx b/src/Static/data/Standards/5/IDDRS-5.80-Disability-Inclusive-DDR.docx new file mode 100644 index 0000000..f4c4b74 Binary files /dev/null and b/src/Static/data/Standards/5/IDDRS-5.80-Disability-Inclusive-DDR.docx differ diff --git a/src/Static/data/Standards/5/IDDRS-5.80-Disability-Inclusive-DDR.pdf b/src/Static/data/Standards/5/IDDRS-5.80-Disability-Inclusive-DDR.pdf new file mode 100644 index 0000000..46e5acc --- /dev/null +++ b/src/Static/data/Standards/5/IDDRS-5.80-Disability-Inclusive-DDR.pdf @@ -0,0 +1,9668 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20221221154053+01'00') +/Creator (Adobe InDesign 18.0 \(Windows\)) +/ModDate (D:20221221154934+01'00') +/Producer (Adobe PDF Library 17.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/Metadata 3 0 R +/Pages 4 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2022-12-21T15:40:53+01:00 + 2022-12-21T15:40:55+01:00 + Adobe InDesign 18.0 (Windows) + 2022-12-21T15:49:34+01:00 + uuid:cddeb05e-c681-4fbc-9266-eebb9309d136 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:25a69fc2-b74f-234a-8fa9-105ec3b3fc49 + proof:pdf + + xmp.iid:04122b1a-1c46-c94c-94ab-e53ae27484fd + xmp.did:04122b1a-1c46-c94c-94ab-e53ae27484fd + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 18.0 (Windows) + / + 2022-12-21T15:40:53+01:00 + + + + application/pdf + Adobe PDF Library 17.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Count 41 +/Kids [5 0 R 6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R +21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R +37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R] +/Type /Pages +>> +endobj +5 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 46 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 7 +/PageItemUIDToLocationDataMap << +/0 [407.0 7.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 12.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 2.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 10.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 9.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 11.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ColorSpace << +/CS0 47 0 R +>> +/ExtGState << +/GS0 48 0 R +/GS1 49 0 R +>> +/Font << +/TT0 50 0 R +/TT1 51 0 R +/C2_0 52 0 R +/T1_0 53 0 R +/T1_1 54 0 R +/T1_2 55 0 R +/T1_3 56 0 R +/T1_4 57 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 58 0 R +/Fm1 59 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +6 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 60 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1730 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 11 +/PageItemUIDToLocationDataMap << +/0 [407.0 0.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 1.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 2.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 3.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 4.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 5.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 6.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [581.0 10.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/8 [603.0 9.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/9 [625.0 8.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/10 [647.0 7.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 48 0 R +/GS1 49 0 R +>> +/Font << +/TT0 50 0 R +/TT1 51 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +/Fm1 62 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +7 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 0.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 2.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 4.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 1.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 5.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 3.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 6.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 7.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 8.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 9.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 75 0 R +/T1_2 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 78 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/TT1 79 0 R +/T1_0 74 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 81 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 79 0 R +/TT1 73 0 R +/C2_0 82 0 R +/T1_0 74 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 83 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/Group 88 0 R +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ColorSpace << +/CS0 89 0 R +>> +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text /ImageC /ImageI] +/XObject << +/Fm0 77 0 R +/Im0 90 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 92 0 R +/GS1 93 0 R +/GS2 94 0 R +>> +/Font << +/F0 74 0 R +/F1 73 0 R +/F2 85 0 R +/F3 95 0 R +/F4 86 0 R +/F5 96 0 R +>> +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 97 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 98 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 76 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 99 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 100 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 101 0 R +/CropBox [0.0 0.0 615.118 793.701] +/Group 102 0 R +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 76 0 R +/T1_3 86 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 77 0 R +/Im0 103 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 104 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 82 0 R +/T1_0 74 0 R +/T1_1 76 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 105 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/TT1 79 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 106 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 79 0 R +/TT1 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 107 0 R +/CropBox [0.0 0.0 615.118 793.701] +/Group 108 0 R +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text /ImageC] +/XObject << +/Fm0 77 0 R +/Im0 109 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 110 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9928 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 76 0 R +/T1_2 85 0 R +/T1_3 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 111 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9929 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 76 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 112 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9939 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 113 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9940 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +/T1_3 96 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 114 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10290 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 84 0 R +/GS2 72 0 R +>> +/Font << +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 115 0 R +/T1_3 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 116 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10291 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 117 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10689 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 118 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10690 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 119 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10827 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 76 0 R +/T1_3 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 120 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10828 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +32 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 121 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10857 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 76 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +33 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 122 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10858 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 76 0 R +/T1_2 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +34 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 123 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 12004 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +35 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 124 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 12014 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/T1_0 74 0 R +/T1_1 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +36 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 125 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10868 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 84 0 R +/GS2 72 0 R +>> +/Font << +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 115 0 R +/T1_3 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +37 0 obj +<< +/Annots 126 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 127 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10869 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +38 0 obj +<< +/Annots 128 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 129 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 12283 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 84 0 R +/GS2 72 0 R +>> +/Font << +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +/T1_3 115 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +39 0 obj +<< +/Annots 130 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 131 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 12293 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/TT1 132 0 R +/C2_0 82 0 R +/C2_1 95 0 R +/T1_0 74 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +40 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 133 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 12303 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +41 0 obj +<< +/Annots 134 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 135 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 12313 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 84 0 R +/GS2 72 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/C2_1 82 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +42 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 136 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 12537 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +/GS2 84 0 R +>> +/Font << +/TT0 73 0 R +/C2_0 95 0 R +/T1_0 74 0 R +/T1_1 85 0 R +/T1_2 115 0 R +/T1_3 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +43 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 137 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 12547 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/TT1 79 0 R +/T1_0 74 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 77 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +44 0 obj +<< +/Annots 138 0 R +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 139 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10910 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/TT0 73 0 R +/TT1 132 0 R +/C2_0 140 0 R +/T1_0 74 0 R +/T1_1 85 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +45 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 141 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 4 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1846 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [1509.0 14.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [1510.0 13.0 3.0 0.00283813 -405.354 623.622 405.354 1.0 0.0 0.0 1.0 623.625 0.0] +/2 [1548.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [1571.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [1594.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/5 [1617.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1670.0 15.0 3.0 -501.492 170.209 -84.7992 309.106 1.0 0.0 0.0 1.0 -292.201 196.429] +/7 [1695.0 12.0 3.0 84.8337 170.01 501.527 308.907 1.0 0.0 0.0 1.0 294.125 196.23] +/8 [1733.0 11.0 3.0 -488.002 365.297 -85.4823 397.045 1.0 0.0 0.0 1.0 -215.734 370.258] +/9 [1811.0 10.0 3.0 85.3642 365.017 487.884 396.765 1.0 0.0 0.0 1.0 357.632 369.977] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 0.0] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 142 0 R +>> +/XObject << +/Fm0 143 0 R +/Fm1 144 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +46 0 obj +<< +/Filter /FlateDecode +/Length 3701 +>> +stream +H‰ìWkoÇýÎ_19@¸š;¯Ý ‰‹$um¢ý`MQ²RrDÙ®ûë{3ËåÓK3ˆU×6 îÎûž{ι¿Î~|iÔår`Ôø§³§ £ß þ6ø}ó=Èûƃ³GøaºT¦rA©åôºíz6†j|1™Êx«ÆS•þ5ø?DÕ„Ê™*¦Puj¼¼†Jœ«‚6Ø0U£†Fÿsü—äEprXMužœÔÙË·“ëξŸÞ½›Ìdzß=xúäéScLzøð¡úáñ#5°¦ò¼ëøXAcSwC¥Ç¿žüŒ]±'ív|Ž{¬GMåÔðj©GàpŠáDlU«ák=ª«„_ð½ŸcÃÓÆïø(Øøˆ_ i„CpE5|†]ÔðGªát®ñ(8Á»<ÁòŠf´jø^ú=Ã÷ØOá½.Ï|1gãqç¶m¹Ë‘ +Û¶¸ùÆ‚\÷#=â%np O‡¹¾£Åh¯¸ªå]Ð+ÔZò‚F¦T¿QÄA">îÄÄø¼jà,ÎÆ#¨Q¶’«b‚ Ûx©=T‘n€¯i¡-ýÂG¢çäVãæ"Ý#¯_9ÛУÜBPa%PÃêèî½À±¦ΰZCNØàAú¢ï4–=®6jÒ­9ž’¦£Ë®}£]Æ;‡÷ødm)¼å6VKakWÐü³††"z£=…ÿ\[Î9D  Ô˜kk˜tŒ@$Òã-¡ž¿þ#Ør:œ«ÍÀy­1Òˆñ_©g$ áBSZäœÀ¯œ-3 ŒKg8=^ª}1¨šÚ÷òçµv½©„î°©·ƒj{Õ~"¨€zïÊÁW«¨ƒã;ÛvAÞŒuåêGø÷6SÁB;z¹Ô‰ï¾Sç+Òí˜ì)Ž9 @oY­DØq| +¢a”Pp'…¯3âÎñUʨq¦žö’1Ák½Ï;Ã)™4Âûà2[‚:Œ©5kÞå—Æj D8€1‘@n¹=Hsý‘æ’ÝBî Y£®£AgLS@÷¬ÈçµvLw·È5@ä¦"…Šðˆƒ_ß]Qw´5éÍ ÛŽ ²¯’Ùq¯’tÔ¾¿a • i{§¾ @—Õ?îA€?N@¼mI¢Ò˜°áåB"±U’µgÏÒ}¥={“ó+üÍêàXP.Ë4o‰ï¥¸ål¦~ä;´÷„†©nò$‘´&š{®}#–1àw%xÖÔ5NQ +CØbë¯Y8Îg4‚`EöÄ<¡Á2ȳ¾ŽÊ×xs‘(¼“G³È·S» â ûXe‹ÃílêÕðïLt…1‰EV²¨ØQl²ËM‰r¹ìo©•(rű¡Å.IÚ#G¿=¿Ü³Åº=ÓÛníÊ©¬Æ +žãriÀ…º«1Gª‰¤ â,ÖBvÐ),Ì}æ$¯$#‚¶w6¬¥Às"¤†]ûÛˆý•Rh®EÅfTz®ì¤F™j›«§l,dWd™o©®"¦;ÿ–÷ìÙ!1”>ú`%j:öæÓ±Þ:õ9°·UãBQöï59B´#E°~%°YZ„g¨s Èö|ô}Î Ö{[ +Aª?RI€õO\Žœ+I6 x*/Ò’ûäù–š“Qæ¤Ï"<«´“õ§œ–õ!2uü–n밪Ϸ#G˜Nwê n[S˜ýéàþ%O5!_Zwø™ ÊH8RfŒêbn2ñ·ˆ¶ì\7\‚ç4KvP4œpH¤¿1MìNƒ•%Ïô?±yºÖ‰…d·\ô«iÿŸŸ}}O°HAN 'Cû::BÔŒ(rWµ².#·Iª˜ ¡ ¸f—?‰ßóþ=ù>Èg¼ß·˜Ey—¶‹YAzΠñ¶ÞëÎ=ãélþ\[r$žŒ‡M~C\ÅT¡±N,ÓëE6èh;á- ‚°aD ›„íôŠ©¾*Ý5kö½Ð<.Ðlí¬ Þ°I)c=.Õy64WµËÖ´ÔdT™œ| +Ç×Wg–ª)Ý –d¯ÃG÷;< ÃŽÂFÕ¬ c è(ÂXÚr÷eY±rõ'­œÜÂ.3‡Í\ÉÀnÈZ( íI k¢÷CŠþמ„r¤d†ìc¯¸—s<µÏÆcPÉ žÞµôCÂŽ-#SÙPÖÔUL5"d1F¿OÖv¹c‹pW]×!:z®9×çÈÿI<]È2eƒ0A ˆb‚ mê7šeì–¨å‰û‚°ÓÙx¢_…ç™K"^‘‚ OáËÚÚÄHcùÒ[h¢¡äXf‰D© ´À‹$Y•Íëû¬T3õ˜æÆ~øÄ÷/X4™<ËÐiæ—™Žy.úcDúò+IPg›œ¡ÜÂXáE@½¿Þ8'³BäÖ\–7sØ"wý"Ó»X3‚5"FWtšP‡‡¢Ñ`¼}4PÛDBÛ+„ð5T:°À1ËÎz%ùNÁⳘ0ù/' V‘PTıboswE—>jυƈØ\` +I BÖžkžíÚ»lo–Ù1þBãcWÕùÖ®fnÀÆ/‰ñÃÚ*K›T=:‰4É¡&­¢ÑœRZwI†ŠØ[xë$Üun›…ÛÓónËXÕ„±º/ÏJ¢;Xʬ¥‡-æÏ÷ΨÂz;;B/÷³¯4FÉžlþžS¼™Â6- †m}G¶HÙ{­ù5²ªë ‰ñ&49Ó¤r³ÝâaÄÈÊQñÇ×Îm¥<ì\Ê°Ö€ñ¢—YÔM^ë‚x6džeæ}¡:kü—ûrémˆ¢ðÞ¿b–dwÞ3–tQUÀ¨ÔeUª"ª’†ªÿžûò#‰ClZ Ê&ŽgìÜ{æœï†!i›w~ñÿ†\wd t‚Ùkþ’u¢ÙhòPÍ‚“äÔ#Ù)—Nrû´Í4}±³âÇ[ãþrøiwâ¶Ø*—åò>] +endobj +48 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +49 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +50 0 obj +<< +/BaseFont /AIQXVD+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 145 0 R +/LastChar 122 +/Subtype /TrueType +/ToUnicode 146 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 333 250 0 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 778 0 709 774 611 0 763 832 337 0 0 0 0 831 786 +604 0 668 525 613 0 722 1000 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 0 556 291 883 582 546 +601 560 395 424 326 603 565 834 0 556 500] +>> +endobj +51 0 obj +<< +/BaseFont /NMCXVD+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 147 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 148 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 320 218 0 +452 348 462 434 452 434 462 462 452 442 236 0 0 0 0 0 +0 696 574 650 726 536 0 726 0 348 0 0 546 884 0 0 +556 0 660 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 546 302 264 574 312 800 556 490 +528 0 378 396 340 546 508 762 462 518] +>> +endobj +52 0 obj +<< +/BaseFont /CDROXZ+Wingdings-Regular +/DescendantFonts 149 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 150 0 R +/Type /Font +>> +endobj +53 0 obj +<< +/BaseFont /IURTDN+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 151 0 R +/LastChar 56 +/Subtype /Type1 +/ToUnicode 152 0 R +/Type /Font +/Widths [233 0 426 0 0 0 0 426 0 0 426] +>> +endobj +54 0 obj +<< +/BaseFont /DCGULX+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 153 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 154 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 307 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 666 0 0 0 0 239 0 0 0 0 0 0 +0 0 538 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 482 569 448 0 501 0 0 0 234 0 0 236 0 555 0 +0 0 0 396 331 551 481 0 0 471] +>> +endobj +55 0 obj +<< +/BaseFont /EYXAZV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 155 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 156 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 328 0 0 +0 0 0 0 0 573 0 0 0 0 0 0 0 0 0 0 +0 0 0 602 710 0 0 0 0 305 0 0 528 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 452 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 598 551 0 0 0 486] +>> +endobj +56 0 obj +<< +/BaseFont /FXHGNT+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 157 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 158 0 R +/Type /Font +/Widths [202 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 555 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 285] +>> +endobj +57 0 obj +<< +/BaseFont /AASCVD+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 159 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 160 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 315 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 683 0 0 0 0 264 392 0 0 0 0 0 +0 0 569 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 449 0 516 0 0 0 256 0 0 257 0 572 0 +0 0 0 417 351 569 508 0 0 500] +>> +endobj +58 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12093 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 47 0 R +>> +/ExtGState << +/GS0 48 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—IŽ\ÉD÷uŠüó°ÖBЩ{Q%@Íûzf™Y$°2âÇàƒ¹¹Eº×ìWºwjú¿^ÿùñÇ?ÿ•®?~¤;¥z=ÖÝù8J½GÞ×Êéži_ÿûã?üƒ•?~²³\×Ïÿýøß•¯Ä¿|õ:îVK¿J_wIu\?¾>ôéë#ç»æëQò½8(·»†a½æ纓Íc^?>=ÛõÈ©ß™Gi÷l›‰Úî½øÑë][r÷îE{V¿kíLrYµß²~`ÌìZÝ÷ݳÏÁ¼Þ´-ïÍeÜ‘±0á3&rkeÕhwòí©žmóžeÅ®q—zí{î¢ù†såªóîKãÆ«§»ŽîÕµ–zõy¯,¹a÷y|ÏÅ{qó"Ú7Fh S*šH}úÞÕ|üæ@Å“5»ºrõá3¾<‘ç¾:w­qiXÙD€‡j8p¦qåÌg¿'Ê]buëY£±ûõ<«Õ;Mgd·»å¡‰îÓê=ÇÐòÕ·‡­. k¶ÇLT¬â¶Þ›¿Ë‘–"kÚ ê&õ,×w&f’1垸Æò¼›‡™Ìž!Ëç&Ã^^†ò´îŒí‡äʉrá°@Æ™©”ë“ Vnöç/ÛÀMIÊÚÖ÷Òòhlœ¿µºËxr;S¾Ênln€…H•éŒj5¾”vUÆËêÆr +Ià:>—DVì $e\Òrr¼®¼î]¶òPú·ÃŠ‹EÔ…;,®ƒa£Ö\Žš²¤eûÍ/–Pùiø³dú k`á  +¨€n‚Ó"çk9 ,ÍÈJÇf¾Ï@È7ø ä)cµg +X§'ÕÊŽªÒöŸàZ0ßë<éÛ#¾¤à(A"ÙgrÀkëþ›U)¬+ÏhGæÅl:‰ÙbÇäÖÏWÊ8«Öou `{_¶Þp=©KŸÁ©j#óÌO‡F%Â;ä}oçæ m‘ ãr‚já½âvrAìŒþ _숪óeF±P‘xY ¹ñJjÀe¢-ç\ŠfÇ ÛR¾äˆ]rs…¯øžB%‹1·c—f´Åé®"{’  ¢ªØIÆ_ëzJ4n}öq1Ü0š51|$Ž§´w5„ê1,²ˆ ¨Çúv€ôQö¸Ø! 51ÝÊ…ºlhÕióŽ¶B.5‚–ŠMƒf&$n!´½”cqã8|fz0Ù%MJ†ÉNâî®W©)ñ¹ê5¤— °N‘&¨N ³XÌkqŒÕij¿.B¾BÈùá1¾µ (·B«b5™qy™“Dì ¦Y÷ãð¾JBòz*eŽ2J +ÆAzŽÅb3‘ëòŒR©#u«Ñ=Rˆtéñ®iVÁ `è8úQÖ·}D?’Öã®–DEíʯ¥ùR»´ºÜ@NÑóÙÉ5Ãás;).Œñjù®,›~Ô–+$ž(õ«BI!o¿é [¼¶r|4>†;“Ÿh$DôMßZzR47¢hdœ£Û{}&Žª‚éQ“Ô‰¢>É%.Ñ7žÊGõš¸~Eb@H̪Úâ{o~ÝHhµ•gÞMòDB°“–ÀÔ¬ºúÅOÕ°˜H¥J JÖKÄI÷Z².(U*Y.ø£rJ96¦ñ„àiÉ,‡(Ú~ºŽÈ˜(Iñ”¸²(XÙA¤!S—Ô¾¥Ç%Ó$sª»ur yNHÓo9X4²DLªß^ù­àßrñùz)5ÅS¿ô>Ç#Rdç rY5ŸÅæe¾Þ…¿ÅM4Ü~%¤¾^„ +à§ðíç’I€å¦Zʳ–^Ôc¡àÞÖˆUí‰BY¯§µ™{0þnù ¨.†ª¾H©Ø/ †0Ê/R¥IÆËïIÃ::[8l=ÔCs’Ï>£áŠÆåŠã ü×õj2–·õ—ÖË®³d³_LwÎu?`®ÁÆåݧ©ÎeCOŸÍ[ñm›žu…\+ô[Ô¯Cš¡ÒÙ¼=U‹ÓˆΑÏÙLÔøá{é›VËþI‹H2t¿#¸nb·}©·ÃGVWGˆª^$Ì“]‡œ±àòØ=Ü£ù-tjeÜ_Ý…¥\¾¢ØÂ-¬&H‹tˆ`£º‰Ò’x¶q +ã!+çòMÎbZ@bE+‘®Á HM½®ºã÷¨ûQ‹,ÓîK¡ŒæšÒ¢rÐ’·$çñ{øMµÆßùZÈ`#ƒZ†loØWÉÜÙrƒ*gl+˜¡ZG‘i‡!ó\©ñj_0µ#GŠ¸(%”ÏÌ |U¤©µÞÀïe¿ïŒ°)¨Îê;6åòÖ…M‹M¤:ÔÞ*&N¤"=.®ág#](‰d§qL’²ê{ i,÷ä§l${rT l° >¿:*eîYÒë_÷¨Œ6]Ôeþ+–KJ¥Ê"¥ÖÃu#¡l™À£ÑrÊ`´•…áÖVÙ&ähʈðÁ°L¡©j¿´.¿Îù³Aá´‡À«*(,ž8 àrÅh ¹9¥Ø9>¨*÷(lQó=©'²k’¸°^D×ýØ RK¹` ñ*¨ˆ6Ë-ªcQOZ&¡‡NƵ™˜qm ‘–4žž³(té­lMî®[ò$´ÏQUëü°ŒâÀa,Y¼ÅÅØ–× 9k¹ IxþоCÞ¯/êÚÐKÿØô,Q6ÅÓ¿› •Lq3Û§ SþìmXº +Ž9ö?Àܼì«ä,‚[ŠÒø!~«.‘3\NÔb,üÎ6ÿ|Ž….e€)Š†”@²/§t£ÏÙÝf5 ô4:¶P­²8£SÖorÓ|fð»²;iðÂ|Ì… Iäw¯ëÉ·Á+[·Ä©MÆ]@K‚K.9•¾êð…›~×H䌘¯ 2ðË`>S„ 9…ÿSb„G–þR›NĨUÎÈg¨ˆ‚ÍûCó1g|EÈB¾ªoSѵiB§sæâÄ…0PñD‘áÀ‚EMºûÕˆäF(Ú¹Å1í X@}³bšA,VDú[]”ÙP.ŠÚPö¨¹b'U"ô.VkJ9@$+W N² +«= +‘êT¶(‘ó»F%ÀQ„³8£%öj„ª +™ïâZHB’s%ï—äw5í %?f.#xe…*ZØ®†¯¼QîRÏ›Y¸ÍÑ6lœá}Gæh~4„MyPˆo®)ÀT÷]͵=„õÇnH¤pßêš”²!!µñè +$hRIY •¦¡î÷塾܊\î?ã…Vð3Su˜,„ﶦaÇ3d_©—¾ì59pxq°ú1X³¶™”Šr¦,jJfì°.k©˜ß¥)dª_·Y‘l^ÐBq ¸gÐñ'…u%¶+-’ßxõ<b'Ìf ¸ªÏf=ö|”jíâOçá:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½K¤Ÿw[y¹î5;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re‡zó6Åñ–÷¸ûjB-¾Z-‰„Mð#¿™û×’L¼¤uý¹?#íýĭתr¸œ˜¥ç“2¿ê›iU£fÖ÷”ΚǦeÌw‡R&«¶’vLuMÀÃÍ›$Î Ö ÔêŒqAq³aýÕzÏ¡uØŽP0Ó×ë+ êù!â¿Ã›È7†Ð9ãî°zè7‡ØòÜ·æ>ƒMé_Ã'õ”~=í^·r2o×óIeØÖîH€–‘Ͻq¡ç«›HéâüS å_5 @ÞÚ÷&õBV§i#¦‚· g˜,0"2t’Ç]é]1p¶˜Ð¸È20R‚Ãâ‹ «J<¯IÝÒüQLzšœRœF%±4’óà±.Šïqtð¹eY· IH0«‰êb$&´K-À%"ßì©* +ãÌ9PMŒÇ™Ö>øžnÈCÖÌäMh jó&…]´’ + Q3B›2™W`ÏâÎÞKhË—P`ZíÞ”áHÍ]ŽãÇ­75àVî‹ÚÕ®ôgÇ;¾’öHøDCý†Ìˆ$¬†Å‹5‰3A3Î[OƒÄW‡9Ô'qo:Bf2®¯°½4—ð¢ÁðÍ t£Êù9$úÏb™Ù™y¸¯MLÀwãx#÷íÔ‡·cc‰ïIÀidƒ 3k±œ¾ÊNke®å¾;٦ߢQ­W.èeIvç8v®ŸrI›š@¥ÜêK™@Ôöš”dõÖ¹Äd„ñЗìÇTô¬„0¢!;ú_šØaèÈàQB£ƒ©ï%B)æŠú2qU¤ÒŒx.à ð´Ä£zô§N0pdh 3E6þ[Š»{TCe”Pž¡þHž`Α$ CeIˆCñvVܧœSÜ&Z0Y~p‘ðÍ ¡¹&àõtß’øì¬"÷¯} ÄÛ¹ônM9솾d™T„HÒ|!œ©¼©B¯tOÒJÜ…U\î9ï´é# +j .WÝ­èRÉ8ÓÝŠõ»m +¢‘€3¶šéJ*"‰Y¹.æ°qª„‘ʶçíëÜEw0 £„O\f°ÁaTQzØ´‹‡‰ž’ò…_ ¡x5Ë”û Û +ëiâ [@ ³6&²# †"ýæ 3ÂyüæÐŽWv‰Ä~dwJ–a@Ê°ØÓÊ È}‰t—åZÃK‡Ž¡Èä)SXVÎ+S/°¨—‰d{šx™€·@±×^ìƒ]g’tsþ—€ðq^d÷ßÔ1›U=—ehzö ’›ÉEJ/J;\Òù ”ÙyR—¾ƒšþŽËU¬¼UßK°Y›o +f-ª9G·´`ÞÚ6g„ «V€{æAwHGã›(c h[H°&b êØŒwÑò+ó4§ ‰’98°Úø²¼ _D+Òò*?Ä8?ÿ‡yX„)B">v;UïÔ@g­b‰j—{Åõ0Çß + +'lT¶ž»á¿öçtC{Äè_m`EU%~?—¼æÖ™ø¨îuéÏ­A_Å]kVVj½^2Ý42Gì6ú#c°AbDůî ÷[z¢“ 6˜S¸‰&ŽÓ®¶•kTë5‹kK{{±Î? +;Ãr Ç¿Â nÄÝ€tTÝŒDcp÷¯¦Œñ1GRÆ&›Y– aSPáo,“Ó9×ö•ÀHíÇzíZ´"¸¢Ùîò¤ôë‚¢V„Ë4PÕˆÈ CæŽIãÅS¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bðìKT“ì_L±ãÍUMø BãÛÊoXù*1J‚êíW#Ð3Ã¥ïIlJËëâˆÆ"›=›’Š9²(°cés²úZ´LJLŸ9ínum· ã3'W—…½‘ #Á-ýM‚±–”e¡rÜŽQD}ó˜:-¤©·ßuÛé ™05êÐgUG̪„Üêîˆ[›Ø¥ÿÇu•dÙð«ô’§YÔyz›ÜÛ(Û]«*ó[²D‚¨€>ï‡çÑw‚}Rø†ê‚g&ß8ôÔh'ò%ŒX󔇀Ø÷Î9hŸu!Mˆl7ÛC0éÓ48LÒ”¿ócÀÖ¢(Áƒ,V²°"4N5N"™¹hE9H/F$oÒ›Ž•CÉw¬·‹i©yk?›üu¨ÌkùäÞ ƒb¨Έº.¹ ñw!‡vÁòNÉÇÍu—˜pðŒ€5«i 6÷ˆ[úgZ<×÷eÜñ,ðЄÊòz§¶Ï4‹nQê¾Þ(I¦:÷èÝÊÙU¡ùàš ô/wÑ2Ý]JfJSŽÐ>Ë!°!R@sIþÀè@ ü «RYi¤AâÓ§¨KšD§LjÝôüU+TN‰Ùh»0E8Ûhá"_€‹Leãã{ìß›'¼{~0ÁÍcH—½Ddy–"ƒžšû‡‡"ƆÎ@.©Æ³­9{~›Ç°mAè¨ya¼ªÊ•Xð,G+¶cK+ƒ´5ž =Þ—Þ¡t1IÕÉ7Ù¾)°§dÄî!ñð|Ä÷F Š  Ö"ä”ÇzÌ8JX93DXc Ÿ&’“éO@ úŸ ×ï+Ÿ5r¢IZ„߶÷†æ8ìÛ¤y<‚¾ êK†8ÅÖù*&‡¹G`ÓÔÃf±¦®’‹ÀIÅ@jVðÞ¢Ú~ZN7± ¥Û’~9w!¯¥é4hK teè˜À¢Ëe"“°Pö< FBdÓìå§kìÌö¿ÓƒæI–«˜(KÌ;Š—¨ãæ¡ðä.·Å¸5_ Q]l[U‰LøbÂùŽ +‹ñˆæ”P/XÇöd·DÃ2¡cNÉÊŽbXê8ƒxA`d{B-<@Í¢wšmÇϹ»­;ão®Šo_hšn¸ÍfBØÓkúS!+§¡’Û”+JÂsCYÉZCè­'WøÞe†="Lº.^+Ça³ZÛ×È̊䨽l\§·#«›üØFI ¨Ü}CwGMÅç`PŽŒ§Vh¶Y¾O䈺öx¬;EÔÏÌ€+U +<çl(z!¢÷ÇÝÜg—AæñŽ´%ÛF_ÖfzœÂØáÿŠ~¨€ŒDV\ttgå?<:,ÓOÒM,;¦S‡X2Ù3žCóPPYšxkY bÄEËÎ4Ð=hG(Éi‰?Í`X!SBŽï¹B}GiÛßI ‘I4à]jDVèï½ÐG‡)ƒ_®óé¼PuΑiD¯êX‘t%óë«Gkév¶.V¬ÿò¤]o ;RaßXT‹ÁY"40Õ/‹ÑÛÀÞ0ux£üNÆJžÄï‚Üe¬ÑíɬԘ¬(Éx×—'­ßç™W¤e$”±•aËbáñ™´ðÄ´ç/i.º=NúáZ zc~aQK· ½àæ;zÌ©…mÂ7Tol[ÍCAö§{FÒR MçÁÀÔ.8®É*ÜÁM†×È|á¹K¦0ðÔ÷÷lK}%G 45a×¥†XÖJ¾¡ -×\TÕCÓ=ÄE5{¢ïïÙ@‹k·»H租'þp˜Èa7äî°&GÎ<Ú݃1V[¼rŽf¼òž©.õ»'naÆ_ìøJ õõ»*iP4¶ÌI·—GoÊ¡þÀ –µ¦¿®’PÈšE%jFr¸(¸ÏÐWÜQ¡5M*òJ`ΈñÈŸ5¼n6Œ¸åXõè8ØÅÏtýŸŸgú÷5TXIBCµÓÕ8šӮs/¥ŸhÞ*ì Gá‰÷É”ýâK”qî\Ð ¼(†…‘ ®ù¼ØÎA¡q.›¨rçÊ$”Òð®ÀN!£‹Æ2/Ï$ðÎzá¢g’W¶îS½îñÇ‘¦ó·eÞ’™Á³ìŽz=tÅ-B࿹ùupÁ1Þcžff¤Â™Ú "“|pzÊ VÒ¥ãYZˆçá9ãŒR‚SˆA–¶óTj»]Ùï¼Æ~ïçJƒ“"öëÀŒI6±²Ìd5’V?íŽ+·®iYª­–N*R¿ñs¾ï„æ õö.V¥êºª›Sˆ„ð‡›@ýÊ âSÃS®+È°…˜/h åé~?u|5’7‹ Þ•afòhE°E$‰!ñ¤‰w[W1nµÓ‰ê~'D6_¥52Ñþê¡WˆÉ¡:—éÑÊ™#©Z›²Ïùf ölÉþ 0½ÈQµëù"™›ƒ=5]kcˆ×±q4õ:u²gèÁF¼JS–¹ ¾%¹KÚ=S¨(ƃn@›k­ÞGsì- «ÛûL&¦ü8u’\=Ç4ÙÙWôØþµHìÒ:F ·D71`÷#,ÀÉ؉maûï M®2ç½óN¨Œ›¯_œó[+ÒÄ¥…µ¹†„b3îÌŒË]u<‰©u*fx‘e”üýAžRM/‡n@OÔ>DÙU «9¯k¨’UI¢ù£ÆL4ëAŠ?~܃ý}†*×»<ªBݸַ|² +ŸG£Åa—ïJN,DÖé+¦£1h{ ?§4êrÄ• ÛÍŸ&œýˆÚÑm5#»Ä˜bÜù^ª¡J©‡‡JqZ•øéBCº4ª€UgÃûûBÂq†õÌ3­O€Iy” G”-N»â ¨iXœ3êWA$Ò=sýDU: B¦RÌ0 ÷Ç‹“;ëlírûjŸXP fÞÆUOgŸØ˜Óë—©©—Œké¿ ç«šÝ’dð­.™+2{úr†‘sL­Å *@µ>dª!Ícƒ®_’@{™ÃPj÷}šŠ$ªO0h—[õ¨Œ“;Õ¨᯵¤¾›Š(êÈՎΫ&?¢ù©ÐzÕoØc¨áØRšsØë.‡68‹H+Öôœs@ØFèJ_úä ]Ï™MýA0”ÎfÍÍ‚'ž@Â7møæèœbZwï¦%ñ‹Ž7Ü·¥µAS‘Ø̉!_•’Âݧ{X +í‚Èž°žÒÔoŠÏrEÍôºñ(g‹Y)ÏT×)|G!ÕŽUÏĪyc2’©R O•]˜›{2ÝKf(¿cX’ÏÕÜáíÉÍðBDÕï3ãêÜ|¯åYVeÅ;Žy8UMæ»:¥d†Ws³&=¼d<›¥t é B!–ÛøëÕ©žïT&AL(„-@qyßwÉ|jYü¼çi„ø±¿. XtèÖÉ4Ò|äѪéÛtó='J›=wèÿ+“¬ ÌDħªµºÛoäœÂϧ̵e®Ó}öK—§K{=D+"¿œ—´ÃT±öó¾([<’5\3礼ÉBffÎ;ðÜï<°œ5ÿŽ9¯Ÿ5‡¹žÔ‘³È*Ã~ºÀ†ör ]1(¥U­M†Z§%ÌEè”ñ8é‰)ó 9ù´B’*™IÊ:²GK¸ œ¿µe£)mj¡Ôî' Ê«Ký׫]f_Xêgª;¼«üâ’Q‚¥œ <èG¤r[žÊŽÚcÅ…™¼t…¤Y‘áùî¤@ú]7Íe¼ ÙÖq²m„­&t-–œúËù¤ªC…²,ã¿ÈéÏ ü×F¤rpM„h’zÝ¿”ð}ˆ6 ,=6µÔ—“~²ºí—óeÑB¼´óç ­¬ˆR˜·¾}¹ „·Pa²¢;ˆ!Ý-—žÙYÙrµ×ƒßqŸ”˜¤Õ Šc×áÉå±Pm¦+‚«ÈÚ'}©ÉsœbÐ{ýckÀVÈBH¬*£ºœóŒÐH¢l=E­Ãð«Çðg™î´Ô£Bó|"¥‘æ8c·›îhl1ÇZÀ}µÜu·3 +IµœúñÝ^r;ÒÙ¢6×Iôga%B7¤¡4tqâÍÍÂ(€pËNœÉ•Áõ!êGµêÕ^*£‹¤]h±0ÓaR`‹µèÈr¦6øIFêºeÕÏ¢J*‰Z¯p–v‘ØDÈÉ78ã°†eÏì:ÏIºª¼rˆ´nf'8YgžtÊfÈŶ/µõRX€\Gñvˆ£ÓòÛ—š^ ×¢d³3²KŒ•™÷¶Hsņ{&ªŒª‚6t™Ñ7dågUoà’Ž"ëü¾ ¦O†¨óm碞 ¨“á·S¨–àªýVΣp¥tð«šsÔþÙPdwÐ-vf˜ cÁ%{€Ë4Øý8¢¢¨E- B…rOm`Xó,s:Š¨7 öþÒõáÒ8…dKäA”ÃQê[_ÀÀ û¬„åOïÀ¿¢Bj¨­2îÜLY‚k±U¢E… \öfó*q«ŠjvøTæØfáÒð†Ÿg›ä -³'mÔ…@žU‡|g¡— ØÀ°µ‰® ed8E½ž—%Š\Q€ž£ªlX*ÀÕJ¶WËp+¢Ñw¿½L?E]Zn»ž{H¯Œ–Ž¯hå3öÄÃH˜+Jßö”âð›LòûCào!%bRвfÍ´û>7å‰Â¨C¯ùȱ–Rv"ñg<žêØ<@ÑðŸ[2.ˆ¡zl-gs{çxCõúŸó9Û ;4b_3gYGºUŒy +¢äeQ‰^ª‹3!¾"½¸@43DètgDx‘¦o'”ä1ˆRhŒz_9EqÛ¨šnÍ;°pÙŒ'ºy[aÕ‰€)¼×b—¨ð}=\ËEºUt úÓøfVóP¢(]𦥖ѤƒnzÒÔ“Vü¹UÕéØÅ:‘­üÌ–©´ÝL9AØþùìI¦QÑ7nÒœÉÖe¾…*r•ör#!ªž‰¹òH9yʼnÏqÈÖêz&Azà‚BǺü¼l¨WIœÂ>‡Xt»‡(…—­’ß. +oë_;ä2½kfÛ~’œP]“ÂûÉ©¥?µ¯¸¾| kõÅŒeÜnA]wÄÚ]„Ü|Öìÿe»Ìn#†a ÚÊ6`@²uv”þ+È›!A¾ŒÅú Èá·Á«;ÂMôf€ný}‹ƒ‘±ßlVƒÙú1mm ϶bŽ©½+HÄãpFX”¤äóÚÞvöåµNÚEÜ^,@ V¢5OS±TWÛèaÚëþ3«æ«"êNY~}7YŒ0CWæ1™k #rò(¨@ÒtÏø­†³…sèßé(Bu ‡+Õqa>ÖÌa +§¤–§ë?™DÍ„™,¶òzAÔâcf0Üü'¬··¦ÿªúdžS镬ۡ$æ¯E4^@[Nͨ¸¯Yrfºu4µCJgw#Ê&+upAæýÇG^[רc>á ”zéql\Ë®/!4Oú!u6ð©^Ô£;’”zÖÏ1Kâ‰Û"*Ï•´$ú"«Ÿˆªv·Ì9çv=k-ÈOW‡%Eû“)èW4MŽ/s† +Ü~ƒ`‘K=ßå# :~E/i8Ûjt±•ëY¡ïZrKâ> +/ExtGState << +/GS0 48 0 R +>> +/Font << +/C2_0 161 0 R +/T1_0 162 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰dŽ; Â@„ûýSjsÙ»Ü#ba±Ð&׉XD#´HŠ€¿Þ½+›}1ûÍìuÃhGh`lßTd}ŽT$}c9¦Ž©…”)²´OžxœLŒ lŒÊ‡ÒÃ8圗ß­ŽëÔ/u“=šúL,â 'yìq¹2îùꌮfngƒòv¡šŠgꆹ²[ïÿò‹±21δª4%œÒl0<¨£¯©Ý4É +endstream +endobj +60 0 obj +<< +/Filter /FlateDecode +/Length 1754 +>> +stream +H‰ìWMoÜ6½ï¯àQŽ~ymÔÅbdTûûÁÉ•Qdzџ£·×)®µ¼€ÿ¤ÞãÂ+m‹…öŸ‘)ŒUí™"Š/‘"犚)ošÂÔÁ©öjtšyM¶*j•:¯ŠJeNÿÝþ6:xýarýüùÁáÙͧÉe;ýzóüd|rbŒi^¼x¡ŽŽ_ªQ¦tûïhüßÚ"¸ŠÏiÏyË¿4_8•jƒ_k’_UMAegºÄAgÚâ2Õ9?[èÜâÝ…œn +Û ú<Þ|Q;ñ‘?]ÌuYúº(ÅzgÅ^ÿ–áÚFWÙÕÝE^ÃcÕŸN^á/³„ûõÛå®,¬w*§"˜:Bs íÖVeåƒÑ>Öœ •}Ô¼ë'͇5*›ð•°ý% ï±t'èÕf^ÌÔ[Ýà­ï cÀ7¼ðé[µS^”½æ¼‹-ø›ÏòWÙ;M5¾Áaõê°[Ì2î‰YßGz¦†ࣄg²C툩ÔlÚ>Ø´jmÂv¤ Î×àL†ªÞ¸Kr€Ëj0À© †¶9Í^±œc§)«ypå–/× 6°1}D£Ih¤2Ö +üÞüdÆ øðIáÿ?×5Åošê^Š¿I*El=Xóë„>Íw/\äEièágù^Ôc½-|?-ª¤äe¢…3@7£ß +úYs§ ´yÎà/!ëÔ€4 ‡Ÿ‘ˆøì‰?óu‰†P˜{Ò`Óøt,ƒÅçsšÙ(¼ÉÉ´-[}LÒáÓ1Æ”8F &ãnˆ\á=÷š;FcÑ\®FYÀλQ7ÞˆémÆÐJN—ˆˆÿ*ß¹£cî±gÑðb0w˜ o°ÞàÁ%øŒ =Ä4}Óܹgä`Uê= ¾dš‰™JÎ&IÜ—pi¡)QËŠŸ“ƒ¦òïꘒÊâÏW¬íöŸëîMâÕKf«#ÝŸãå°Ø®y;ÃŽrmåeg±œ ‰Ärljg (›ïÃæîÜ›•)ÙDSYÅ2»ºŠ&ŽÈж¬eÖK [s¤8êža²6%{ξ “Ë‚<ºª‘jz°»~ D8¤˜ W\c*¯´ È=ŠNX¸ÆT}é—¹ÃdßÔº+n¢‰;\âkØN;Á”EÐEWó)Õ îŒ:±÷ ñòy`nº`dë[×OgoM÷†N“ëV"!³¨†£ž]LïôèM+x3ð샱} ¨6P¢¯W<ÙAY?h‘ºÚEÔFcmÅBtCãžà8¡59‚#‰žƒ ”¿Ö*¢µyBëc£™;ÝÒ0îã Œ(rD´l ¸”¦îƒtØÒ¹\݃QÝêªLYt|yôݘE˜iœ\ê-XŠˆÆ¹r"ú&¯¾h¥ücX»H·ùƒ±TÅ£½»à\–Ä®|§`EâÛEœÄÄ㜅ͿÑã“ Ì.RÓš®Q4µ>L¦„Ÿ‘z+ËÉx©z¡ü@в{êèB2ëvå>úÝkånœ¸×f÷ʆÉwQ«0¸23:ÍþHb<Ó>ješçÞÁDH‰–Oçðƒe´©U´©‚˜ ÏŠ³½ja%Õ4N„Ÿ±P ˆ¬˜†Z@´ÉÑo܈æ7}ŸËÆÑíFvÙø¥<£Ëlú 6Û¥à£ÍvÉfWÉf‡Îfw–($ÃCA‚“_Sx ]¥“}òÙÒƦl°yÿØØm-QtÎAE×,¡ž%!˜ê:í†&¼Æ“~šÙ¬J÷@÷ìšäžYâ—!Ê-üšÂsvãª$n8gõ*¹5p›6¥‹ø:äT—I¸0Ã\#uÑ” +^¾ªC€€kñ wòòFGKÕEZehIxÊ«ˆAJRtBUM€&\vfšßu—ǘblÒ7ÜÏaú3Ͷ8Ó—}NHöÌþÀMÈþ‘öK–ÎS·\> +ßñª¾`á-gË6qkïåÐz‰¹²åÍÎ’k?Ô%ÿøB÷E¼B¼L½ô«KÞ!¹WñÖôk—Þ©TGQãj|…gI—ÉV¨ zsŸ=êï£].•ªñCK•²¿]*÷X¥:^r†KåîÑš¤¯æå^i³-•IèüJèØ®­7ZVMP16ªÄ[0|§½–Õþݳ–eÙÕ’ö˜gɸžZú®–UÚTnú :æT»h*r1ºì)*aõa&#Ö„(¥‹+\ß‘,δ+÷l \>e°Ì¸Únå™+:nGÿ 0 ùIì +endstream +endobj +61 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 66 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 47 0 R +>> +/ExtGState << +/GS0 48 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥séZ虘(@)3#c=3CK C=sK…¢T®4.€¸á † +endstream +endobj +62 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 528 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 47 0 R +>> +/ExtGState << +/GS0 48 0 R +/GS1 49 0 R +>> +/Font << +/C2_0 163 0 R +/T1_0 164 0 R +/T1_1 165 0 R +/T1_2 166 0 R +/T1_3 167 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒSMOã0½çWÌÑ–6ΌĎTEZJ‹Ê +4· +¡l[ª"(«¶ˆ]~ýθ)”vWâäñǼy3ïù¬I²þaºØLWIvÁÛÅ&ɺC>lî4h9˜BÚE¯€Ðpòò&ñJã Ž¼)€ÈŠ¶0ÞR€æ)Q£‘n",u°‰‚–µ«^/û>ݾ´Íü÷¶7 ‡ˆXÕu gç}`¥#y>KÒàJNu\Ù乃õâˆ6ù=m‰^!7íd¢F:uÆ‚ZéÜ8P[M æ:åN@-tjMµÖÁT Z~â?žxI›iò†÷p®Óœ›VK’äl—/Ú5gñþIÎù¾…É +§d¥Ê·wÄø¢èR9ãù§ð¡X…Éc·.¥v êMH…¢i +Ëçc2b»ší‚qbŸÔqþú Â? Çº’ë­Pf$©Ä˜UìŸ/“Ú‘ßèÛæòÄo,˜=6„cÿؽØQíÏBß\°º° pÅÏ`r‹0ƶ{õI\¢%8σ-Ñ‹!óÎ=Ä×;h¤â}ïóºú¤ªØëàw¸wÖGöwr.?´ÿDY±KUÂ%Ï%†/Dk°œuüV”äé¡ö2;«ÊØécvý±ÌnÜ¿þo»%ƒ"ÅïgÒ§n'?žõ,0’-ÈBéyô +CüSÖóä>ù+À 9áø +endstream +endobj +63 0 obj +<< +/Filter /FlateDecode +/Length 1038 +>> +stream +H‰œUYoÛF~篘G.P®öà.¹€a ®ã¢EûКoEPز¬¨•lE”ãäßgfv—¤7EDZ‹³ósðª+(i¬ÃϺ¶°[³Ÿn,ûbÖé¿hè / ÀtP‡F¶¾ö`œtÎcÀ¦(µèþ.ÞwÅ'Ì·Äÿݯ³›‚ëçâ÷â +A¤'„Æül•c̯cþJIUè毀Ÿè<´N*j𪠄÷g館¬E:e‹L +¥º_ÎèA3âè&áÐáf·Û»§‹‹Ù»ùþånÝ-¾ì/nÞßÜ(¥Âåå%\]ÿ…Á\ÌÆÔ k'ƒnÌXþo‹¡Ä¼{@Ž×¢j¥…rÕ‹J[ÌQÞ‰ÊÈÊ{Q52à|@¿¯ñP“†=«ÂÃW|¢H^…W¼ÔPþŒ!P>áM(çkZ0ÁKJЯ(£ò³pô÷Ç8@ +~Îß°G³®S£#Ùxö]{Vª'¾+­÷É÷[D´šnðàˆ àŽ©"ÊÕ¤ük. ¥„¨·4õ–"H¶5ƒê¡GPU£Í.b^ Ã@ø¤G°[‘¨ó“ðÑ„špÉNGþÒs„ï¡´Š®-È"üuN^Ø]Sô#Z²x%´§È9lŠÄŒès.†xößÐðAÅK•±ôw ŽK˜„Æl0„MÀ{Á2”­2†Ò|8ÄÑÉj¸ “Gj¬ýYx²ú)+ía/¸•žaAi×ùÁ*‹ÚŒê ´«…Åj2¸Ú¤"jŠˆM;= +¨[i(l‚û£$&¢7ñx¨²k¨Hùj¦5UîFåÀ=Uå†U€`‚Ž#wÆüf6„ø@¾‘A;6 µ”rR’"5ÿ·‰žøzºÀQ]tíYh.Ä# ¹G_ëD(œ+ùk¶wE“á٬IJªUŽé‡æÅ£M¦ÍÉ&ý2¤|çýšÝ‰u”´Ršÿ +àßð´,o¤Jä¾HÝïÏÓî\ \? Ï8ËB´‰³Hcƒ¬(é¸!ââÁ-N›„[ +/ll¬Š žGûs¡ú´«{*X3ø@Ý@>c”lXŠá~ëaVRÙiÀZÞìp:oùÄÑri(ïz˜,£Òã-oáÎâEiê´Urƒ#eMw5ïëɨŸë†zìÃX? « ¦‹'íCªËkfÁ›ƒV=ð¡ý—‘ÿž~ðÁùnå¦pg6Ç67ClljœÉ¾2'FœcÂ=&zvBë8!Ó•Kã²äÛætÚ²¿g +~ß4§o=œMæ\DM_¦ï„4²G _b½p4¢>B&Ön‘æméú@xB~¡ ìâPj;Ñ°;Þ2ïàô­ÿݹ=Øââ|`ƒhE +endstream +endobj +64 0 obj +<< +/Filter /FlateDecode +/Length 765 +>> +stream +H‰ÄV=sÛ0 Ýó+0 +w%O$­ÎíÔ±ç­×Á±Ø½ÄñYnrù÷@R¢d9i²tÒAàááäòûM©Kkaù%(£­7°ÜÜü,V¨L«k(hj~n€‘ôRé†^àé׊'4 ^:É™?Ò‹c›h­Ñ-wÐa£=\“ñ=ï=¢ÓÕØ…åg8"9kùW´°N(žYìÑÒç׊-*Ëî7cT´r‚sJg‡JÀ¬ÐÖW‚¨š?×hÙžœ’ƒŽ]לL‡ ö<¸¹ä„\[Žº¡_ ãÝQž†]YpÚáá vœQÍŒ(#pˆ¶*ùô+[J¦B+åáGqO³e åÙ°3Ël°±Ž}þZRá¹è®ÑÕ¢¥ÚSÑ …ËߤS.xIŵ\kïØÅh¤t1{#ÁS :f—">¤NÈAËÏN¼)øÈ•äÕ›{vsNÁpUÄ}Šò)'»]¤/áÌ3'Ä&èR^8’`=LÁŒ3{ÆV ±¡ÉÔD¶pËÙ…ªˆEG0™ŽWÖs cå(úm$jßë)uT&KW˜iÑ `I¾„ÇÅ:dÅ°¼&ÈóäÅç:ˆ¶/,íè²v—CãsIÖY÷\$™ëÇFýØ\?!ÎÀø¤fihµæÝV ÒøD³½Å䶼SÃWfØeÿ#cñ˜¬z:¬ÒBˆHgxIè2ØQz¸>úö|¯¿Ý[j6y¡ß2ñЙ2WZ`¢ŽŠ)yEçŸB⺧cç¦Í…Z$gtV&ôVI:h(aÕ—ðã)N‡X*ÝËpÂ…c)‚íb§óŸËòšÐZAóÁ¡6©hâÁÅ#Jëû÷†’ÓS"ý€A`ã)ôG´t‘ÍY¬ã}Áð–ÇØšÒ.u>×Ó5 —…5RÞÅ>%&Ç>š`†s(?ñæ§z¦0õ’ÚÜG¸i8§oA½ç8)ˆ“—ÛÚp™rvf¬\^qbw.išÊúL#a +endstream +endobj +65 0 obj +<< +/Filter /FlateDecode +/Length 887 +>> +stream +H‰¬VMoÛ0 ½÷Wðhµ`}X²†Û9·¡‡,m†6éRwYÿýHJ²ä$m³bèÁ©L‘|¤g߮٨fPìzhðO)üÇK¯œë½Tª…ÙÃÕ÷ꓨ{i Ú‹ZµÒAõ ”• +ª•¨µì¡ZÂB8i¡Úᣃj‹†=¬Ñ £÷|ÕCµÊ‘‹…¨Ùt€ýJC†s¡Ù tˆþ1ì -w°$ù¨•’ߌ—ðÆ¡4¡Ü¤PELÝŸµÆÐ/€&-·00>Ìà Œ“-ÙÇ ÿQ4„Oöh†dbÿO˜.z¡ÿDZró17O¹÷±mШ¡ŸTLO®c¦:¡4¯C‹½õ&†„¯,7_ö]¸:ÏZPƒ×v²¸0[¡Ù2û-(Ž-ñŽÀ²b²À^×—±²Mú:.}ÉÉØIq”Agÿq£ì"o a©4‹ÔúY"yé”ACE'Ê<£ìÈ~L0 ÔÒ‹;öÂ:#ÜôÆ /A‡Og$Z ÑŸlrô`FYqOý¡ßC±>®rº†ô÷™°ŸÖD—Ù°vjTDÃ.ÍdAm’Ô.púŒÑo x¼ü–šæ‘µÉ¿ƒÂvÈ;’ç÷/ÁÚ«ŽÃkfV‡ŒãhÎ.Iâ–ƒ"ß8ÅN>ʲ@Î|Yá Ô†^ß Ãד6èƒÅž[³1ïûóS×…åØ’#cR´3>¥æ±”Whê™Pî t õn9oà¯Bm?‰ +endstream +endobj +66 0 obj +<< +/Filter /FlateDecode +/Length 980 +>> +stream +H‰”VËvÓ0Ý÷+fiSëXKöž ,9Ù‹¶IÛ@CJhù{æ%[IÚ' 9²f4{ïxñᢃŸÎ#tøsâ8X×%ˆ¾³Áõ°Ø\4­Y|½èl×ù³ãCo»0Fˆ]²NŽj~˜ÍO㜠Y™¶·šïÆy롹1Þö¼ííͶÆe:x ¿L‹6šµq#ÚŒ×サ/ïh=ÀIôb‹Ë@û-:ô…Þzñ€;½ºL´Þ˜–ŒOtòö&S o¤õ†-0{¸Ò³{¸^IÔkô+¹tÐÜÁ=þíÈËÚx¶9ÀµqÙü†+|Ås‹®}L•? Ë;ÒŽ¼ôçýDZÐz¨‚`ïwP’ÇÈbäFÏ‘& +l Þrµ9Þ@ÕçØv”ã—Å›˜{Û$¤L,iîÕ-yšÁæ{)µ6CX$¸ (%Z1âxNSQ·ô/êv¢”±Ó¦ª=™PÞÔ¢RP%”¯Ë*kýÿVéí5]4p½ÄnŠ\ë %½Ì˜Ø)qîáscúžì"™Ý›QhÇQ© ŠŽq¸;“|Á§÷GÐ"ϸêà(]ô +kr‚Ûõ Šð,–€’Ü æë¬Óg1ª¸µd2gNE]ù=¤˜âF¦ŠªØÇ|>‘âäÓN«p«ÜªÌoµ +KãY’/aª¨«A=‡¥ÙÁðQ'y óŒ‰ÂWé¾5™?›—Ôb% xf©®2¢@< ¶Ý +‰6ŠV%çñ¢`P€¿¨ÌA+ÌB‹€$ÝŸÅE?*ýQ|\€˜‘4Cï ¤l]X1œ*F®1£šõcç1‡" Œ4OàÐÁ¨zóýmÀb£õ1ÜŽZÇ‹49Ïgz>ÀDŒ6+Ïæñ£œ½^! ½ÊMÔùãy6é„.¨• ^ƒh³¦uñ¹ÌP,ñ;Òîò$xk¹l»A#«•þ5²ôµêé×ʬCïј+®Ì§P>u&%š¿ôöh:6þ0r9BT +endstream +endobj +67 0 obj +<< +/Filter /FlateDecode +/Length 839 +>> +stream +H‰ÔVÉnA½ç+ê8%1£ééYÏ ¹€o„ƒñ’DØqd;øzêU/Ó;”C·{º¶÷^UgvyQeWÑì‘Œ¡Rþd1eWt¦mÈÚ¦0¦¡ÙöâcöšM[XÊvÜ=ewœ›¡0”­9¯ú¢¦l#'MÑQv‹›².8׫G’)Êæ²öE+Ö„­)*g¦›ƒ8Â¥ɮካ¢¡l/*„úÊV×¹sWáÆ"ØÖ§wÏ6ºõÙä¦Æ‰ZÿN+¶pü-½ãs0%ån‰+·0BµŽ¯é3› +©Åô÷š@º‘ò-ð³×ŸZ³˜Ô@P§{ºç =½€‘Ö,ô¢ÞrÕÀò½¡%çÓZœ»9Ë©æmÝWu–à]UšÍ˜ná¥j‘Ì+âO³Ë‹\ôRZèEr,ÛŠ„Øj04[ŠD¶ž·ÎñiœÏ)Œ1¨P18b5`«;2{8R¤€íJ%¤&7œw“ ›±¤˜xSh4SJ0…ÈœæhÈènÁ5hX86BùRg ìG¨‘ñŠ>að›ß !XDuP2h‡(’÷šæô_ÅJÖ·>ˆŒB·wÊÜùÖ9Ÿ ¸”z zËÒU‚S¢lÏý³í°ªË ¹Ö€ÜrÂë’¥Õí˜FÚ#­S¾û€4†¤ñI ®,§èŒÈÊ8NŒâàzeî]=´;Ôâ8Ú98¦“›bÚ i¢{ŠÀ,s+^–žã£ Hʺ„wá_¦B²¨W‚çœkç$®áÿÇû’â“êZàšÛT×Þ½n:ÿÓVÛ¼õ|œT±\\ìÁÀ™9yú}ð¿ ýŸÉŸ®2®õæ;?ðÞcàuxíòÚÑ×jŸ_±ˆˆ~ +0GG/Ê +endstream +endobj +68 0 obj +<< +/Filter /FlateDecode +/Length 881 +>> +stream +H‰¤VÉnÛ0½ç+xÔ‘ ’% äÔca ‡¢;±“´NœÊNÒôë; 7Yv 7Bœõ½7C->_ÔjñªjUêÊ Z-n.¾P¶U¯Š%X[iU¼©ÕZ=n+GK¶ªñ`ªN(MMW÷ }¸f<<ã¡!Û-”¶j&ÎÆQè- kG)誦« ,\5¨b eGß1ª£ªÐðGC—7`8Á¥Ú1ñ5¤¸GŒòÞªttØá¡Ô}Õªâ8¼¡3ZcXɨ6|¡F΂1~AK®Ï€‘{NÞR†G0œéÀ)mÞM‚06ÌÍ܆ر:l.·ÛrN +bË?„]Ÿµ¬ö€ œwgã–QçÏ{’ ‡øî<†×db™1æ%Ħ˜û NY)l¨#ߨ•ª®Ò‹©jg&šY`¹Õ- ÆÔ‘¤1Ô£ÃÞcÄۜधv‚ݬ:24ŒY(Å Ùt£n<÷Ái¥ˆŽ+ÐFpð‘2øB.™Ge Êñp›ëÁf7T·Mý*ˆP¹ÄPSíá”X×zuÕdÁ œõʽH? †èú +Ž+Øù‹Š¬ó 'ÛHšô3@‚òK"á¿Dâ¿œ ›»ˆœdº;"AŒ„#^ƒ",!†ýXªjCþK"{ ý0škµÄ„èØ0ú™\$¼½ RTÜ” I˜æØð®»LÒbÁëKk°äø›[E»'à@IûÃ8yA;F¶\h8úJÖWœé03§ˆå! €+žûQªÚw¨:ÅùžÈÂÍeF°’C¶VRVØŠ"¿ˆBG5æ¼ñ Å_âÞÉÜ‚žg»¢ñtå÷ç—ÿ ºÉŸF/ë0¹zbâOÔžõW€\×33 +endstream +endobj +69 0 obj +<< +/Filter /FlateDecode +/Length 831 +>> +stream +H‰¬VÉŽÛ0 ½ÏWðµ`I¶eÝ{ê©(r+æÅ™´H&E’6Íß—¤VÇ“i +ô+ZÈGò=JóOOµ¬ë模RR;óõÓ×ÙET +ÿÂì›Ð­ì`vƉž[X‹ÊÉž–ž“¨Œl`¶fK¡´4~µ•8±‹ƒÂ”®eKŠÏ xž¬àAÜ&ᣨ죺;ðsÆÑéJDw•Æs¯t§W¢êÉÎNhCÞ~†°GMΣø% îÅ_G>¾ÀI4´mÀ."ØgË­_î¼õª¥/Ƭ¥ƒÙ‚^aIlÀ7œ°Ž!ª†}@F©ÙÙÙG;ÈìÁÆi>ŠÑ8JBô6A ®° kvÑó™B,1V¶MdA–`bçß‘@J5´T…µ’FWôæʔƂbÔ>»ÈÌŽò¼Â3%PÍ'΂‰bhé7ÏM¢Ë Xo€‚U#?Té=^XJ)fÿ¯Ãw™ê¸fi8u€X,<”o¥%+†«u…>Ôƒ°²IÑ#uLH‰Õ6Ê#óh”q$ÞÂu@ÂR¤Ï“CÖÖLÛH>½!Ž^¨lžÿ=á©( 9B±UI™ à(8WQÖÇ(ĉߔ"+d”…3än¼ AjKHPKFXßpFFô­ÌòŠòﲦòÑ¿è2±‘úMK~SljLo ©$µsÙ‹bÈEÙy»Iç-iRžeÈebË}ÑCÙ‰ÅWM;-þž +«Ø‰¥L®bÃ.ÅÅ£ëYquÏ…±c¥d­fDšÇ^M<-cêX•ŽeSž¼Á欀-ŧ(\¯Œ|¤vÍlà}šöyòí‚OØ»‰lØ2“{k°º'—N¥,øöõV¹Ú\®šÚh.víy¼þ¥oÝÞWg*Î!ÉãŸT> 8à9y ¥ûë8LÚ~æ°+ wŒ}°Ï&ÑúºÜÊ>¸wùqð»;ÂK–ÒŽ×,öhC½à-³¤,Gù2ÈÞÛGþA‹›GzróHO~çYcÞº¾ÞÖxrQÑ„c÷îFµñ ÷‚w(á3Ò³-JÇ-+V&¤ôþ0(-® +endstream +endobj +70 0 obj +<< +/Filter /FlateDecode +/Length 645 +>> +stream +H‰tU=o1 Ýý+8J8Q÷¹·2ÞŠv|‰ÝÆNa;uóïKR’¥Ã¥‹O )òññ‰^?¬jXßÀ÷¶màónU\ÿ\™ÚÖDâ3Ñiœ¥ÑIÄ÷ꊆjÛAu@7ÚªWììÕ Îhœ·$ãœ.È_öýbCo€¯»A®ïÑôâÛ u¶‡ê +œ¨‘|Ž¬‡ê#Éò‚ÄWwð}¨×KØùgBÓJì‰Cä[€3^¢6 Ê Z©ÃÙjù¾Ãvâ’fïyBW@‰©ÉŽRw‹Œx|«à9‹+[.¥D\äb§Íסd£–ŒW):lJÅ)vüˆ$É'¸`#73E‹&`fsÊmü*-Á0Qƒvå?´†^c§¾"‘dçaè ΀?Ö* 7ˆ4ê™(¦0š¿ë^pÑuÒ.‚u0aSCõ H­¹ÂáÞ†9·Ãà#öS˜Ó‚È(žT¸(| 2£XvcÁÜ¢cc¤fÐZI·jÕIá³4ÀþŽrçÏN+¿ •$ØGiø¿-d¤OòXšyŒ’sƒ+ŠÞ Çm²Eâ/À·µÍ§¬%iëPy¦[Ît‰G[H"9.%Ã<®NÒ>§ Ê®|Ò‰”. ½%Œ*„¾¤vqºÅûIêâÀmLyÈï:ŠT÷EE§Úgú¤7è½€|Å‘/%Bš{‡¤*þƒž2ýY}iQTü*Á¼ftÇøw ä÷µxBNuq§[ì9ì>m~X$Û#3àftŒKàþøÅžãAiÁ5,•Aæ­{ý˜(>"é`¹"ó^[Zñ…³¡ ;t¶·ãÐò²Ì*ãܯ¤[Åøe½‚ +\j + +endstream +endobj +71 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +72 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +73 0 obj +<< +/BaseFont /BINDSQ+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 168 0 R +/LastChar 151 +/Subtype /TrueType +/ToUnicode 169 0 R +/Type /Font +/Widths [250 0 0 0 0 0 778 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 606 0 444 +0 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 +604 786 668 525 613 778 722 1000 667 667 0 333 0 333 0 500 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 0 1000] +>> +endobj +74 0 obj +<< +/BaseFont /DUZKZM+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 170 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 171 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +75 0 obj +<< +/BaseFont /SPZBWI+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 172 0 R +/LastChar 56 +/Subtype /Type1 +/ToUnicode 173 0 R +/Type /Font +/Widths [233 0 426 0 0 0 0 426 0 0 426] +>> +endobj +76 0 obj +<< +/BaseFont /HIVIDE+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 174 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 175 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 307 207 343 +0 513 513 513 513 513 513 0 0 0 0 0 0 0 0 0 +0 0 0 580 666 492 0 0 0 239 0 542 0 0 0 0 +532 0 538 493 0 647 0 0 0 0 0 0 0 0 0 0 +0 482 569 448 564 501 292 559 555 234 0 0 236 834 555 549 +569 0 327 396 331 551 481 736 463 471] +>> +endobj +77 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 460 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/C2_0 176 0 R +/T1_0 177 0 R +/T1_1 178 0 R +/T1_2 179 0 R +/T1_3 180 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰lRËn1 ¼ë+x”¢I½V =$-‚í%Ý›y8†Ó4víí×—Ô:Fâö"Š5Íèl0„!fYSŠpua3ì!Á x„å5Á=˜ÅÅW‚õdçáÃð ‡;iöºLÀ$áP¥D²æÔaI±@È*ÉÙ󎨦÷ãùx:{\›œ †¾×þÌJ‡1DÈÈ`\™s6˜ÅÀG +HÔ+ Ø5.#ìr£ÐÉ[r`¬T!¤Ž‡¥Íè|HXÀVçYÀ’»>)$w/ºÛƒSaaI!Àp/×?¯ìÀþr\‘Á®œï0€}rrÇBžœ;ÁN`G'p2ã§cad'G:zr¾jê…KÐÂl´°NŠº•H +»ÕNÁÙèäÏëyÀ¥óQi( âîæ¸Ò2k¹uÍk‚0|W/¹y)Bò©—Ò-ÞüÇî7ÆÆÚ!WÎjTK}cìküpÄ?q%öÂ0'V[ÂAÓáÿüŠ#ŒGçÕʃM¬Ì—öƒóYUÞLꆼüæV…PÝž6Û&²ˆóÛ%ŒMtnM—*ºÜzVmûf«‘¤Éî`Ü4§ímgò ¤dpÒô%^5Ååƒÿ`ð;´@ +endstream +endobj +78 0 obj +<< +/Filter /FlateDecode +/Length 4840 +>> +stream +H‰´WÛrÇ}çWÌ#¦*XîÌìÎîÆ*UéêÈÇŽ…<9©H‚… )€¥|}ú6—½ e¥\6ÖËÙ™žîÓçœ~¹8*UYXWëʩÍÅÑñïKu±=:^˜—ʨÅù‘/Xÿ4E­Œq…këVÙº¨k ÖG3«ŽÞ,Ž>Â~ðïâ¯Ço×¥z}{ô÷£— Øk![OÁOܧ\g:Üè÷™Ñu­f…úYÛ®hÔìVÛ¢U³3íà85û¤ç]áÔìZ›¶èÔl¥¶z^âŠSm,.‡máý®ñåJ-õÞÀ㶶€g +Ö5;Ñ7ú üYé¹ÅßSXŽÇÞÃo]iëŠJÍ>k‡ûiØa«ÿµø ‡QÿÁŒÌÄQ¢ÅÜÿh²[–¾è\'·\ÀöMáÕìÎ- ƒçÌÁø¶J—xÓ5ÞÀ‘aBñQgø­½Ö–bð[„IôhÐ>19ë“nŠ Bc»n²²&ˆbFQX[‚·Gx'¹¤ÞÌiM¨h(íIts æ8‡‡=×MöHõÔZŒÖ­Xƒ,Ó1àµadI» IçÄë% •Û‚¾ ©Ú§›—"4ßL„{TÔ=Š{*ºÄuçŽMÆ@B §>êòÛä9‰”úm5í“zH ‡E6^‹¸-µs˜²¯êd5–yKûLy儬~lG±åÜáEˆwÇ01aûëRÚ9φØjJA¡º«™FaÊÝÙrÊ•©ÁÒºcl ©u‹ `:¦ê8JxîéëÂ&àÝÐ!M ‰Á¸°”U&†e{£+6^˜‚ ’Z›ŽlwÙî&ŒÛ1LÔ¬Ceüㆉ¾1kТ ¹‹Í!‘"ÅW ½pi—(€üùRŽÏç@opýŽh±˜ÓÌ_Jûÿžˆ;zêzÌdndÉó°ó°|Þ¾}—w&‡GÛÊËÇÄ5ÖâuÆ–b$P"¯^º§¥î¡]^dYÏ îá&f•hNi +äo/„§¯c2¯às~Ì„¾cHó +O±Ðí{5ä2b/sv#E¸ ˜bD‚Pƒ!‚FªßõU¿æÎnÓà„﮼ߡÿ cu’Š?„1:i7ºÒz™!6Oùcb +Èëûl*‰tÜ~}¥Íày‘’ד(ÜÉb ëÙù~êô$H‰j‡ƒJÛô@1SzñŒ.ž;8¶5= 3º¢ò³X¬D­Ù0͹D7#}Ÿ$±?s\‹í<"A<©[ÙmÕ?­5ºi¸ÈDÿ—È«í”-Ëÿ _À=k‹ÇM}Æ×`„æ|®%ÉmR{韾œË,:ZÞUl6xŠíP‘ôáj5a.zE_œÜ“`Ëd{0±¬ö´Â={–ÛèŠ;·‡ràþ.RNòf¬Á2hÒ CÇVL=}$Å]‚¤…!g0Wd~‡Ooˆ«Ò@¤uÅÓn‡œxÈ“,FRù'Å 3•Ìl}Ê 3Ûðjß"F…É~= qä¹øFЬðæ!ˆÇ&Ï…þmÚŒ˜HM†•ý1ªÛž¾í™(z4àÑþ‡»Wy5Ã4ó]èP¯ÇEé¤ä6ØAËø…”yî#ÝN0'CdNbÖpšÏLÉ‘Ï4à#õ ¾j¸Øt ß»ZV,ÂóeŽ=(|ê¯]ed©Þ#ÕúÇÐ$~£ÜÓBØ/M‹éIÓ”$ýñž™àÎRª¬"‡T}ö&ÍÚV¸ÁŸ³îhÔâTɨšF¼J_áUfËïxüþnyóìÙñ‹ÓûOËëÅêËý³·oÞ¾-˲{þü¹zùú•ÖmœƒláW”˜7?ã[Ù¾!¢Úµ¼æ÷Ù·é^2Õ}Ï|È…'‰è™ò)Ú÷;iŸ¿Ý¬ÄÔýjˆiÛ¬Ö^3AxŒÍÝ·A¥ƒ–ó‰ qБ. “C…‚@0ɦ³.Œ²^&³À»Dî1£OÝŸeúL¯$ßý:¤.‡×k “t€%§u]–BÇV öó´¿ü/Ip<ÁÑ’„LæÆ>€Ú}Ê€“F€~SnÄ]&+œÆ†¥<Á ¼´ƒÝ 51’ 04ÝtyÏžPÞhg_yMÁcÌ]åmv²ÎÓ'=.pýˆsI®’eVɆ ?_§¼]v¸ˆ»ÔÍS¶Fgò +ÚJ*ˆS\=ESÊ]š" j§Ô’ÙHŠriˆ•&KÙC½ÚŽKó®V\Ó/ø‡Ñh49ð컬©6â²a7Š]˜S?ßjª_b‡dn*,ùχi@Áº°l¾lÑÍ×­åº,(éIA“Û±äÎ2Àà!‚‡ü:.M¯j=ñJ$¾ÍŽA&9²ºgFeã8;&lïJƒÍ]æ™ 'ÕÁ™p2x8bÊ‘›ÐنಃQÇô¼Â˜]v¤¥¤|ÖΊG°=°c¦Có}b¥ÞÖ›‘|9ôÌç-òyjnbå¾qþUW7M¨HÐ˶Û3cî²ÂÆ|KŒêµ´AjNÙn-5²Õ®NLŠËMÔ0)ßR‘°Á:¡$EIåü‰ŠÒ°³:”l“7×ádOåÓõóÙþóé§[áQù |â0BÊ?$c„ežVæ\ØÞcX1Î:oÂœˆƒØï¸hRctàTqõ;< >~…fí †/ßjD·žóÿ#j`Ós÷Öôf°p’8azŸÁæ,¡½h‰%5!?}ÚL;3}%Õ bT"!¾Âˆ Un1q ¶‰3ÆaÌ4ßÒƒiÆh`æs5›ÓŒ!¯r<ìW6­©¿hçCré!¹ï˜×1}w=)ƒÙ•ôR&Ë/ð#û«šéÝñba\âœ=k°¬xsƒÅ-áz0|ér%Äì`ÚX¬áÞ/tÇGBЧxg1y;ú…s¯Nð¢]3æÓïžÑì''ã]í¨§ûëï‘9?JU_Ú‰ú%ñ‚}žPæ4¢…š·»%ß¼zR?;ø.4ÔãC­£'ÒÔ†,ù-å–ÛÐoÔ·È°¥c¡OªƒzüÑw–:Ö2­]Ç kƈn”j0!Nk¨e€&ií¡Ì¡òÎÊ^Ûe‡r㇦°ì,–ÜáÉ´Ü=3™äÌÿÚ ÄÁŽëŒsGSý‘%,‚„ÑM57ˆ£9@ˉ8û‰œûšŸ]Ž +]Aµå8ÔláE°ef’N¶*äBnðó‘D=¬Î'9(²¿ªÄ† [ DÏ„üŽ.b•,Hµý缂ê!®<]å샓¢P„®©n–3ôµi=ó¨ÏBȘDFã)<•;±L‰ER$%ëð\e €2LOæ÷$cRßO6K‹ü7é<(VXŠ‹K•=Ú6¥¹¦ÂWýmœãWN0D„*sRÝ©Xõ')Çm´ÉÌmë¶í2yBÆÜ6WéH7OSÌ«¶þâxg¿þÚÔžvÄz‰¬ß¬šo*2øÀ=& +Û“vœ °‡·0C—šøl…¦âi$d9ð¡Å3¯Û‘D¹ë¼éþpÛŽ.‡ÇDîŠs“S %ûB +XÝ]`g¹«PÁK;’£Û¤³À7Tb QÒõb‹‚;“AB»b2ˆ²œDH m3ðւܺ¥7U,yÀ:ÑœOû]y€8W¾ÁÝH&¥?ˆ)Ä ¤‚蟉TnCÂp}¯.&`@lÚÍŽÐ6‘í2—pE !´OqÛÉ:ã¤+f/5n>¥]œºâMÚÆÞ몇+ÝÛAnÓØyÓ¹±ÿÑêÈ:Lîpå¾Í7^éZ¬sŠÇ,¨+-+¥?\ÊB e¶WÐßaÂÛ¤>ÌsW8% ¥XÛŸ-äVM ûq¶hGCÅèh;D(ø²êkÍONÆ +K¿/mÆ̇ èè€3$—ý:¾Ê]î².kŒŽ/+² ®pØï +kµ3ö¤[{„º¸ þ±aFÒ" kþ§EÝM%wVò¯@±}E ? Æî­+Ô þŲIIë“YÚRœÐ˜«ÏYøm–õd*À‰Ý+OÔÉOüjO.º©7»TúU¯¾Ÿ]!Úî;À?‰·ô‹ËNIÌL¹á…šUüZ¡!Û…(}pÁ¶fÒ["ÕS¦éyÀT´­‰Ün.”!+2×Åy»ëc$y8“@{™ÚÙÁK/ÎaË@´nÄ`¦C±9Tï#ÔÛÑpÈÓL´@›~€Ïa[á¶ût iXsQé +é‡sú"¯M¥ qTr˜øéG•*ÎA+ç,¡â)Âþ@ewk 8Õ²g+§§…ÅsšSjÉ- ˽®TÙ+vÖ÷ceÄÙk­÷LiT:2C¶mET4R1›1öi†qŽÙ¬’Á¹úÂÃ0£&öq¥‰ÕdÈ–vyP•?µÓ)$nÌ>ªÿ¥©YŽÀ§‰ ©§(ƒÙ3¹¾(à{¿µ)øJ…gÑ?Êó/•qù¶´ìwv"[Ó ‹vòH{DÏ)ù9CÔéâÿ¢á{µèýÏ퀓>ã±\Š¾è§/ÎÛqÿßÖ2KÙÀ•| ¾3„]i…«¯Ïól2Ý(­Q– äѬÞ"Ú}7ž +‚01¬ïéÀµfÍŠ{ô#n$]ÛZÜáTög®O1R3Â95’òjÏÁF.½£Ý§¤gL  üú9€mªÐ}šå<çôÑÍIÁÆØ4B7ùæ¶](~ô“'Nœ…’Ìö©ç‡¢ó¢ÈÙÃc-ZÇ~]ô@{7ŠìÿU¦woáÍü(ÃÒ¼ÄÓ|V+jsˆñškæþxM æŒäO˜žÜ2&’ß¡!HË(„Ý-ã>Â~Ct˜ŽQÍgéÓ_ {\Ë©æŽ]£-¬0íRÅ;(é,6ÑX«¯Y, «~ïÔ´òWK<=9²T> +endobj +80 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 497 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 71 0 R +/GS1 72 0 R +>> +/Font << +/C2_0 183 0 R +/T1_0 184 0 R +/T1_1 185 0 R +/T1_2 186 0 R +/T1_3 187 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰|SÁnÛ0 ½ë+x”€Y!)É’¡‡nC±»´¾Å-mnM§C°~ýHÙsÓ¬ØE¦$ò½'òù¼7è9$Yc puaÐ'8@„/€pË„5˜ÅÅ5Âfoø+A'…ýwIéºìP>Ïz5@‘#”µ%Ÿ +pò\P®Ì{ÄÏú{óé”zؘ¦H~ÔôD mö$OÈ0Üš;sÞ›EO³”UD3EUÉ­Ï© +ÈòŠÙG¤¸õˆ)¨†¥ýìšàìÎEÀ>9{ë©»q ûvpÅw`W’’_R²–­e/{øèš($vëÒš½âÊÅj*Ù?è¹Ü¯jÀ!ùxDÜ+Ë»±f¤©T*¿©ª¨J~Nß­r·`ŸUT9*]†íãN0qµ[Á•«8õ4iþ_ò؃ º¼}í:ÿ¤’I™³«ï— k§Fñ{wÓ_êÀA‡÷CýDÕO2N:õS2x ×Æ81Ëö{e´“ÇHI­“§)W§!b8f>žùN¼J'FŠ|ì[ùÿqê,Hðˆ·´¬Ó—‰´p)ϯá/ ªdjTÇõX&MB—µEìjw j^»¿×èØ™C©'ÌÚ¡¥M^š\±Ke+ +­Pò‹ý`úÏ +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 5746 +>> +stream +H‰ÄWÙŽÜÆ}Ÿ¯¨Ç&0¤XUd‘±” +Øqú- +ŒYº{F™Eê–#¿>w«•ìž‘" 0äæµÜåÜsÏýa}Öª¶1¶‡ÿwUûÝÙ«¿ü£U»ÃÙ«µþ¥UZ­·g®`ü74½ê¦¡]ç”雾w°àþle«õ‡³?­Ï>Áy;ø·þÛ«?ß·êíãÙßÏ~ Kžõo<]óék9¼mtשõ¥M÷Ѓn‡fЮWƒ™š¶uïùçêmU[µº­t3¨Õ᪪õØhµÚWu×tø¡³àál|{`ϤV•îÕê3läs&<豟`‰ªê¶qü÷”ü-Ëo`¹ZmüÛËJwx9 ¶T¶ >ÔcE×oÕ5àÒOº›&ü¹¬èˆ`÷Ú›ßÃÅ-yªþµþ+Mû µ“¥ i™VÖºfì]/u/Fn*²ãå0µî)„*ygÉ­'4yÂx€UZ7äœnÑ 0ÇК[6bj£V‡’ïšÜ{¬²Ò¿Ÿ« „ÞÿVÁ#m19wd ÌùUn¦ »üNƼ z_ÓŒ“Qµn̹Ña°i¯öËÌø=f—Àé_,›ï’kÃÃg­›Š p‰)².7Cg šÐµ-âŠ1½îN¦±ü•rsç ô‹öQ‚+ꯌá +߈A™É„õÓa)Ú+x ‡?rzá"ÆjÝã!£º©`Á6´ø÷–¼Á[mÉÄë[_¤÷n‹—€[ŽÑ¨9âh’¯V­vÉí>ÿfÂü·YæD.që.$ã> ä/~òÖ…+'th7Ëô>úè0gÈð³ãœ<t´äÊÀRR +µS7~àï•!ÛŸüþXÀ~¹Ñøû9ˉ¯*:c󯬠{ò¸ò¨ã¬V–|=ðf2ðqƒ?URfO9ãî%Èÿ,1U¾"ÊÞðšðy@Tl GS´ $—AœÜênŽŠ›T#÷â~$>•2B‡7ï¤Ro0؆̤ÚÉè’ÉãZm}ªà +£Ã7¸êº2\Þxü ¹4E.ýñcÞmhmw”‰í€°v$øôƒòV*T2˜Ö—\RàÓ“ Îm@Ž¶‚Ô€ü>Er¦vH%ù­Æõçê ¦? +VHR¢ùN+wv¸åŠ^ Y5GÌÉ v‹†Ç{>ÿñ‡ÞàAì,0J¬°¼KHÂ'ów‹ßájïFc¹Èõ®²˜~5ï§E[Ôäǵüz(Ëa+ Ö{öc¤¸ç›R’drRöD^rfÑ…ž•/ö·ž$]7'q: +웊 +)zº÷ˆŒŒ˜4{ˆ r·€…U +·œ\©˜ZV¥°¹D*ä¶Cqß`{U+JZyEÐíøÁps€Û EÖR·¸$.é(Ú±b$¸¼ä¶­Zs¨'ÛƋE¯°Ù`ÛGe¶S®ƒÔ‘ÙQ±v…bµ¢X¥óµBfö/Km­ŸOÈà‰ø¶•_C]d_M9ÇMÖ+ïš8¹ Ðò9ôåBÍ„²žÆ\(›ÎÒ°¥Æ÷tCÊÈŽèJ¢ÐPU—þRã!!5r‹°i_/»KvP8\!À!\ÖzX£Î`œOCÉLÇE&ö!bÞðޡÛ›ÿ7-íòþGòFû^UnD§¾R­öA¢-µun©AÕõxXË°fMÒ¨5œ1$1¸Àžé°Sñó[ïŽûéŽôyÇaÿÔê(²¤çÝôĽ< îv‰èqÌ®Ñ(ºÙKaÁòÑš|¿ªœãö<0˸pWqÿ§Æ£Í;®.®‰z&ͽT˜Á!Ý©˜g¾›Ì÷gZ*µ­Ž ÷¾RI™$Ò6PC>Ðͨ?Þ›hÊ2ùä›:{<<Õ@ºåQ×XÈô‰Š v´_RV!ÊéøøM€/jˆšA^#äC´N˾7™—¡¨ú6¤ÑÝ¢F’ÜËWß!lLoŸ".X’Q¾Ÿ¦ŒA«ñÚÙ$iNaË÷>ôo˜ ‹LÙ£â¢Wý84m*.Œänà1/(œšºþ%¥—ɸëDdt<ž¡ŸÉ#Ê+|£x%8ýA³”Ä€ªü©ØžeÓÀ²‰{(ƒø#j)ÊlN`DîË‘ª»@ä{ÒL¡„üP¦E³7]y‚½‘–ØŸ”™ —Áϳ˜#F¡çe†‡-©7j9 L¯AûÂáA¯÷“¢lLJ1Ž›öt¯dšà‡l@òp¥?,T¨™ô$Ià§sîØbÇ8Ò±;\ +·>©Øwñ'\1¼ÖËÀ5€œMô7±‰/·´¬1ÓGNæ¯÷ƒ€!›q!ÉþADƼ‰E•çu‰ò"sòfv¸,W™|p^‚øÀÞO؉ +ÎÅ0n¢fžál*k"PU2´ñ9Á_¹´rê_P:À¡‡¹ÒØú‡3C¤Ÿ¹’&6Ù~‘€G\·>7获F½#¦OŠ÷.iAŒ=õìàA3ó5ºU3…\Õ—zv€7v!žÏ†ÑI‡o #)€(Z“ +‚s Ç +XÜ~•H}±Þ^ªnU ²¤u=(?¸&È„ò—¤,–5¯Šö2 Š¶(ÃäH9ü´DçËWÊÛy÷Ò µfW”Ö]^ÒZÍ,?Šê8vÆCFµ¹<ö³BÐhéÏ­M'òç„ègh•˜ù¦†ÃÕÓH÷•!Õ;%¢À’B¢A­˜¤ü¥y=„–à{mUºb’½#ße^ÊÅÊ…”ñNºÉFÊs˜•'6LƒÉJ4lä!J!ió”Gp9‡ÖQ0‹7ÂœàýÆǼ2”—¿{QøiÉÿO9‹„j©·<ÉÖ²ƒ'Y¢ªä`d2Kxò “¡ ¶ØÃTö,?´SòUj±ÀÈ1Ö`ë” +"%ÁìlÀ EPVØ÷±`Jàj ,ÕP¹`Ãõ"©¦kù˜‚Dj“ÚÍoé\¦œsµ8õŽ ÛGL«â$]*d–ÛÓ®rYëÐDÑXt~èá» œj'Þ¢Bå.µo=3 Ùlšô Ž¡"M= (Iàâm/'ÚÙ¨5¬½OQÀ·á²™²²™é„²Íí_"˜T¦ïoL…r‡ÆŠHž(;ZõÞSŽGËcê=²gÇ#+Vï)‘ ö 5¡hÎrE”M9Yx‘”{nð[OŒ"T(AZÜ$R„ö,öôBOÉ¢v*ë%'M:AQ°ñôšrÎÚ“šOd¡hBWaêæ.2‰ºäH,Ö“M!ÍßC#šˆªæ³ƒNŠÛ6c?Âeh09¾‹™grÁÐ÷~~gå1íýVâ8 Ù‹Y* ${²z x»Ù~I·_Íáá¤P¾>i<Ñ|9}ƒ-Ã8áw‚ptztÊ1gáÿÂêý +§Øú£(øŸ GËW©Ù¢KåeDZi»Þ¡M'(]rJ-.ìü;âؾ Ž|Ã?Ì'ÛÀ§&“¶šWoÌ/^Ï{ÍÚ¶·¯5!>ö¯¹¸à¹{óš]Â÷î5irym0¾øZ¿žø©ûcû_ÖËe7n +Ãû>…–Ј¤D‰(0@›Ë¶E‘ì²±×nàØ©s«ûô幑‡5ži»òxFâå\þÿ;Ãà;GÏŒú¿i8ìxýq<ÄÐÐÇÏ›ÚÆk½?*|=  àÓóbåøæÌË…âwèÕq9X^$®íèñ:;¹‚MÇ0ê[| XíljêT˜Søú§âþñ—Àç¢(Ù–OÓQTžäýÇWês¹ØóΣtÇ[ûåËÁ ®ÌËK —*~xu0r²å`øÙD³¯ýtØÍ)³9Fpú‘Yæ¥Ù!¤ Mu¦©*!ìX|þ…Èm'wܧãa¯q¸^ZÇ##UF)2Ú&*Y߯mù\ÅA‡Z¤dža“ï[CŠË$AZŸ-è¶rw-ëÖX~1/¦ÃéQªXã’í±KÄ»É!Aôff¥ºL®Ì0Ô¤û'G-_ŽZ"wriÇ7ÄýÌì‚œž+¦s9¨üŸa!IÞo×ÕqNÈüÆtÚ +YGçÿÔCDNot \OC¸ÁiŸ¾¼â4pÜóT^=®j¨ç}…tyÚ¢¯W¶ÄÇTÓ\ŽS ³n¬þ™àâžÿm”>ý°†õ5zÉݤ¨F=î•Í’v/§:úaw)é“C`á_Åo ÇN&(§ˆV›ÚWÚ|=ì Ž^sñÜè «SýÏyÀ ^Bn€Ç¢ã—Âëáö9cî¯ë_z‹ ú¢ŸpÆ«Ñ¥±{ý[7uËFuSP õ (&¥Ç2A2Ï}’Ýã7D¬ÐóРC÷ y’€2ÞIb¡Å S#%,C}Ÿ³1WƱŸ…,G§—ûã +³1ñžp†2Ò•‡Ù—ÜhÇe?9WÝv]E ml13_x„L£¤N‹t7yi¬ýƵŸž€ u¦Ê!M³Í”šH`N+;(¸9õ¨hb\4~øÅ’ÎxôŒ#Š§,!)ê©g5¼#Z#ûß¿ÜéŠ^š¯`°¡²FË´»‰ð2íÆÎÅäùu„em¼ î«Ô"ÉhåŸøî—Õ¸èwýYˆbÉ0*|Ì󘘊øºA0WÌfyQE"‰g7Ô®#ãê4ËLkPŠu@VnŠ‹µB<ÔW>lž””²ñbɨ0ÿr4Ä¥õ¦^‚3XZw¬1j‹XúŽÂ~Cj‘;X:ŒÿWöqª²ØJcª²J-i‘dà|‘c†uÔìÐ@hXò>Ìír•ì`ڥϕ…ù*Œ¶†$iÚÊÍäÕUù¬ |X ni:¨Z>c._À³iO«Eshºäà^ÿ³÷[Mê‹êÁå²@ |ñúO—pB¢F² L‰¢Wr™Ée­ÎZ·´7g¿zwH7‹öZél.ªÖ¨g2¬9X4—'QœB1]Qª,¡)á‡Âl¨V”×}„‚FÛrøÌ#õ|v]:“".±Kƒ ñ}wºC¥WrIQ7*´(§ ÛVz¢Üøâ]>YR ­$ ýh-ásuˆ“µCh1 ?<åü7•Œ'EG @Óúà­ýÎCï@ÕL —_=2åᾪþ[<•EwÔÕ\› +ãºQ7ºÕ­Ã“(9ÒÁ_b‹Áú~ÄzßÄð¢aî^ÿÖ!9ÌHm¤1KÔçDozR XVŽ‚‹fðŽIq Ž|ˆM1îìœãˆ÷ˆJJ§O4œÆ*Æì£éFû°ˆ¼5á é°5愘î±:æÊ&¥Ò¸£á‡Ü^ U!ÄQ9ãÅÊüw–LÔj b¸UM$WVƒøUT65%,íu/S˜ŠT±ÅêŒ3ü¹Nl­hŠ}=`¹ ìË„¨„Ñ¢”'Yñ`k©\ÒE¥Y¥|JW¼¼ê²LŽ[»ý%´9‚d«gs›Ž„¸ 3‡H9›² ÔdŸ{:W„œãÆu¥ÑLÊü¹+€™®Õªl<ƒ‰×…‡ÿ7-Îx„W éF³™Åþ¼ºÐ]4¡‘¬SYÜsñ?¤\Om<‘§Ž·N]6Ζîªâîûu+iµÇ\µ@¸÷ßðÈ¢/tZoSUì»7s9bÝ?XÄa4hemój;[ñG)&ñ¢ðýM"ÙâNÖºKÉD]¤ÒòPZñ²Ë1–ç3(ÃÚáÁóiÌÆ/ÂÆ(TJcØhÞ)7o&—²LŠ¢Â4ŸêæLl†©!Q_öÕž«Ù„G Oó¤Öðaߘ8[CÂ|Ò0ÿË!Á×CBŽhóo½ÅÓRóò‘u[UóU ¾û/1—á àb´xùú»%¢ú” +endstream +endobj +82 0 obj +<< +/BaseFont /IVZTMC+Palatino +/DescendantFonts 188 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 189 0 R +/Type /Font +>> +endobj +83 0 obj +<< +/Filter /FlateDecode +/Length 5939 +>> +stream +H‰´WÛnÜÈ}×Wôã4`Òì Ùä«áÝ`ƒHœyó-.±n;’¬u¾>uëÉK /ë ÙÝÕU§Î9õn{Ò©®µ®‡½wjqòö/ÿêÔÅÃÉÛ­ùO§ŒÚžŸ m€à¿ÐöÊ׺±•íÛ¾à…›“×Ûÿžü´=ù ö»€ÿ·{ûóM§ÞßüóäÝöÚÊV]Û™AmOU#ßžü‹{ÃGÚ:ÀÞ®Ÿ<îýqã´[§6­†w6êíÚQmnµw­Q›Ç½¶¸ÓfÄÏ3݈só¤ÝÐzµ9ÕÆ·^¼ÒÞà—;mi¿[ýïí_1xºú‚77xóãƒðzCá~ÁáuC;u +ïïöü¤C›_kx NÝ)üil<Ç øy¦Î5,„g7ºé1Ô•U÷ºÃwwÚâöºqêƒn,®¼ƒ èîéÛ¿«ç¸Å•†¤ÁÊÇxì¥:ÓÍ„¯_Åwp;çÂÚÏÚXÜû*nv¿[ÙøŠáÁz<ôR7ãw_üªÅàŸ`á+ãJC[uxòozÀŠ@#¾x«'Ú-`;¹Üf£œ¥.`êvPuøáwº +ì±ÈDh«H{®1\Ò"è½xÔþ û¶€¦†¸Uðc‡kéú¯Ïø8@¾Û³“Mƒ`|ÀáQ#ÏÈðdð…pQøkÂüØwÂt Þ„qTuðÊ€^Jé¹â»˜ªl|ç/˜ ¸Ô•‹Ì‰œð´o*ái¿S9PWÅBO®sθ°} ´AJ|‘j.×)¢JpãñÁ9C3ÐOÕ)& ÜQ@+ýp¯ õÁŠKY Ç£öÕi”ª:…C‘BCtðfmÿyš,ƒY`¾WðÕÆÙtpî½ê‚6Ž° CQ †`d qψ¼¾$Ác)ø$^ã"¢²”f hð9yÖÈ™pÉ\ 6Ρö¨_"ã4+  1(-çÌäÖŽFY £XC~è ¼;â·¸©‘ÜX̹’3¡q/²@uœÑ®*ho®hkq•ø¢$¢ÀtaôO‚â†Ü£™“]Ý¥.¹A]É"‹Ny•Y«b‘~ƒ¬nÊ“–\5Ñu,ÑLÑ"œéÜ•´d7RCâ¡0#í¾æèÒSñ^ÔĤfOòV!‚TàÓ¢ÑäÊOXZÂxõ0Ðô§Û×0Pr…™ž»ž§ãyèÚqJ ÝàÔ9 iø‡öž“õ}®ýs-|8µç:”xgîƒ*N `qJ‡ÀR9ì©Dü1÷ÚÀi‡ÌÍWjvË0öBÞ6ï/¹Œ2/ï¿7¿ù•ácËFFªÜÛJÃbÈ/hYÍF·mzªº`zˆ +c¨³Q8OTXc毱‡Ï¡ƒy#­ð)‰ŸÙ5”%Àæs‰LªÉ¾ðug^°kí™ò¸P?áèÈ çê©çåeM3Eš?8÷®4MD‹zçfK–:19g3Ç D—ØôŽ}è<)ýÇ ¥ô½í+œðÈZÓ™? ±~‚/ bLJW*„Ù×3AÔ¬N&.NÛ{Ìæ=ö#¬ü rÞ±Æ7Y²ŒD‡"'H…¨ ‘žyfEóø"ÌÎÛ¿ƒ}íZ-Ê MJ_R6HA\løÄËœ‹¹•AFÊõÒ qã?Úù9!Êh[›}„#@q]K»oÜkîŽY¿„fv+fœSê‹aj?ø43ö!?ËŒs*ŠRZÀˆøŒá’D3œÒ0ÑTúå0‘8® ùû¡Ça!Añ@*A¸„ÑT=> £>è…h—žì¸…<´pç'3‹>‹ÑNå/}áëg°am;“9£è‚W?ñ¼â6w§¹‡™´³1ˆ¢JЮ­ABu‘¿Œjë…g,YìøЙŠhîsia/ö$ÎÈÙnŠÚ…¯@û±%ºÊ‹Âì͎ɹákàÐChà%bD曓áÑãÀ¼åÁìdÞÿ€zÉ|jhBÁº³†Rœ&ŽªR±“hºÁ£áÓª¯.°¸8ýtM/‡úYˆr‚ ÚïjÙN4½œuÇ&’ó¨Ñï°§³æˆBòV{hFWCk VêÂîŽj gƺp3G!~¢4j þ{ìk³,Á9ƒ>ƒøÀÌ:ssNÇ=ëEF<Áñ:9'»r!vº˜R÷%¢I®Œ‰¨¨¶MÑ¥Ø~9b=FÄFOÝÖ~wÎ^3çé>*êÌ7d¾r.¸óÀîeûó''ÿ>‰¥pƒ(>£²{¯˜ë¦eR²}Hš¥‰ÃE•‹ñDª*,,vïZ õ7•øôA¢å ¬‡¬‹Wd#‚XŽb€*Ë‹#É+F¬™cü-Œ°\ßt[j3Å~Å•¹;\Œ¡*Æ4S›#óÞqÄ¥!‹_NM0ÇmT|Q^xÆuÙŠYW•O3Ý-"ÊðæýV½”[óR²`%Ót5‹kÆ”tFëè’³Œ…~Qzغ·Ù)À!Àí¨ üÍ{P›i°ÊC&ûбØYfJ)ß0F6ÀÛpP%ÁüB³è£ª¦¦Ø±œ©B­&ÑQ3-ýÕ½2â—ꜳ¥ö¹)äpaP )G+Ô±•ûD0åÙƒÃÖØOÊwc¡”¥ÏìïKûœþ‡~sbÁÑ0Š«vekö+àÉ› Q°%ûôðÜ(—kk'øÙôfvuUÊ)mÀèòQ)Üdc%GfkÁYŽ_é ¹Xæ,ÊÞ×H°@"³ yZP}1Gô¤­ž ßՓ¡G% =³&Øy[ŒìéMeD?5Š£ºZ´ ªC/C£ÿyNHU+`Y¿6=C6õœ¾xü*Í!N:ìhh€jÕ}äÌÇ£TýU ;'x¥»$ãOˆi=A2ÎnR?¢È4„dlZæéB4Æ™høшëÕ{Ü.ó^àû¡˜5W\ÆJÓVsy‹×™[ƈ/3±<°Ss­‰“/$Ò#Y•~Nv–©+•ÌÑMô#ó­e”<§1ÇUyN~„K›-£)Ý®Œ|¤†Ÿ™Ažè0[¹ æ…†Ž߬öBLÉÄ bfô¸U¬ß(fœz¤°UÔ«9iL=-”—©þU.uXN;šN›¬ÙyötN F˜¹b¹aHÓj1ɨµ¬Ž_öÓ«‹©$Z+þÔ ]:²ÆaÓÅC.£OJÆÑ‚T¨»Ú,zÇhHŒÕ碫Ô-+É¡fá³ÿ'¿êzÛHŽà»~Å>zQ·3³Ÿ~³c]NHâ\Îr”Dɺ“HiEñ¿OwuÏ×r)RÎy H29Ó3Ó]]U8§EÀ“|ð%6†w]¦Í&²èy‡ +~Š™Hæ^éÊšo$ãqÆÜu×ìbÙܳŒYujϪu¦päÜ¢‘zƒ9N*Ê´kfœì~Òñ„9 ýÛ·Œ¯áD…èóOÙi˜ÔfgéqxÀi2 ™ÌyGm²Hdà‰g\[ÖÝ~hžé5ˆGtÄ%«š&?0Þ}Âx2/FšˆV®qlBú>«º°=½LfŽNîswò_’FªJåÒÆZ§èf‚8HßìskíKÝÚ>^tkMù âÜ|º6«p…¯í¨G=ÕlK XÓŒ•©º­ø¯Ñ”7M>­ü¢ùO•É=g×BÚ—‹Ò¡¡¾Fë¦ É¾©î’9yrõ:«ÿ§Ò8/q9åOpÀVú¨’äÕLêOûìhÇþƒHðÅ#k·wdmvI0´#ô¬Í°µûÄ`Ùm8¸5Õá8­,&äÓMUïÍAiÑCúvvZ'àæ7I:Ì™‰\31)´¢pɘSgiªwêk¼úÖó%™!9¡Æo³†ã¬K)Gô¨0²· ‡ee +T…‰S¬Yb¥Â½Ùôôü׺ÄÁÇIÕÝš¼çÚ™­Ø‘F'Õ§§DwõxÍqìªx.1CÖAûÌi@„¦èH­—%È×æ¾(™X _ýð±qv©Õq°ÎÚbr¸3ÙpG&·eµmïcçzáˆcÇ~ $/¯üµ´Âjˆ~¬TqZã µ ©øµvdžÀmC²Xh®ÅŠÓÄô…vQpyÆëä&è +ó….דÀùvÂ$õ4ƒŸ™Ýû¨©S'ÈÃBř޹¢¹ñ%É-q´Lñ+ÕÔä?%D·£!ð†í}FÄ… …*h„¿¹ßmŽ +íni ¥–ÆÐJj@:§NLí²¬+.ï¡h¿­lÖ¨ôùœ&…ê̺†~Öµ+6·'ßýùCUÜnO ½½¥iÁ²ÒìTÓÓÌà4w5ÔB'7D}Ç[ò‘ôûý>Óå¤ûrF­Ó…üû gù¸ß ÀŠ†ÞÜ›z(zJÏ@Òtõ€õüsèãþäÃÉ?’-þÌž.‘íàÃÛg }[Ì@×3ôÇ{ÂÍ äÚt}ÝpZö#Ùx昷ó•ßB¾››_(H1¿9Ѧ¼*`ÉОܴ:´V’¡r…­*y†Ö·ÔT! ü¬úP@…LÙÁ¼.)ð«âÝ97áç{Ö;úäâ½2Û…D™KŸ\ùBÌLýû’ ÷ÁöŸR ŽùcÙìÞ0ÁÎWÔ…@*AºùÚ÷%$nNkz‰OáþYBù>}óƒ|÷ŽO¶ü%Z󃪺÷V»økitYx|^Bâõz¹Ä|÷Sè“3 ½¯þÙúv4Í€î©+š šš0uÖ“ÒÃ’ê>Yãã5ÄÕ¡8ô=°¦#dí9* ÌÊ £ŒAç¡Å=Ñ1‚ðŒ¥x»© mO´”9î2 ìlKEýwiQÇÙ +7ž×$6Р˅°q2ønQVâÚôÓm‰A§xº£O Ÿ`lÓUG±k›7òm ++¿0UÖá¿ n%†·×¨/·™Õ6ãg5J€€ .ÂxƒÏo³Iw öQÆ¿}E=0$ HÞú‰¯+,¿¿¦ðª¾€åN˜S«Nª¤\311`ËÒ\Ëxëi’-×þuWÜì®ïuéb¥,y},"7ÊÀÐ\+é–b_JÇMªÖÁG#½€V¢ Ø²ÜŠ‰pÀšÊÊ)ÀÍÐÞÁê²Dñi˜­µãñLGŽ„:Y”í.P­žÀPk$‡À”Ú}áût%š~a®(ãÒž£ASŒU2•é©7Šs.Â4 ×IXxIâÑ{ÛÞjœ½ØLÓ¨O0ª Meƒå5w¢ñw>ŸŸüG€K1á" +endstream +endobj +84 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +85 0 obj +<< +/BaseFont /IMKORC+MyriadPro-Bold +/Encoding 190 0 R +/FirstChar 30 +/FontDescriptor 191 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 192 0 R +/Type /Font +/Widths [588 322 202 0 0 0 0 0 678 0 0 0 0 0 260 322 +260 331 555 555 555 555 555 555 555 555 555 555 260 0 0 0 +0 445 0 656 604 595 696 534 527 682 689 285 0 614 511 846 +690 717 581 717 593 540 548 682 636 888 613 603 0 0 0 0 +0 0 0 528 598 451 596 528 341 585 586 274 0 542 275 860 +586 577 598 595 380 434 367 583 530 759 519 523 469 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 500] +>> +endobj +86 0 obj +<< +/BaseFont /SFAWWI+MyriadPro-Light +/Encoding 193 0 R +/FirstChar 28 +/FontDescriptor 194 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 195 0 R +/Type /Font +/Widths [763 542 484 484 219 0 0 0 0 737 0 0 265 265 0 0 +174 298 174 351 488 488 488 488 488 488 0 0 0 0 174 0 +0 0 0 381 0 585 505 570 647 466 462 624 630 211 0 0 +448 778 638 671 502 0 505 464 465 626 509 820 0 0 0 0 +0 0 0 0 0 454 552 446 544 485 262 544 536 209 214 423 +212 819 536 532 552 542 295 373 309 531 452 722 429 440 403 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 174 174 293 293 0 500] +>> +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 3402 +>> +stream +H‰ÄWÙn¹}ï¯à£ +p—Šd­1¼ÀA‚dfðƒ $ks¤¶lI¶£|}îÆ­È*IccFRwy—sÏ9÷ånÓ¨¦6¶ƒÿ·­U7ç›Ã·¿5êüvs¸Ó¿7J«ÝÙ¦¯xþ u§Úi¨Ç¾í•éê®ëáýæ «vÿÞ¼Þm¾Âyçðßîo‡oözu½ùeó’.QxÖ%ž®ùô¾mê¦1j÷CiÍi5vuc§Vµm_w1xLJƒ£j«umÔÁ•ûå¶ÚšzR×UÛÖƒ:x¡~T¦Áß.*øø´2ðÁÍ©ú\MµÆ¶CmÕÁGþþ´rHO?mݪpÍ üB¯ÝWºëÏ?ªŒÁN*3àÿ·~~3;IÝÁ«#þz!«Oð<ò¹Ò=~îÞüTé3øN—øÑtü„}ƒñëº:rGÓQ„úXõø5æÞqy:üæªÒ”¥m0ím—Btðd/·x»5$æað¯•\Þâ{ŸÜ7§û +>âJv5åc4þ¼Ã|°#êZÎKjë=-¹ÌDÌ@› ^@´ÚZÉSZßÀŠÔ—H1ã‹q$¡“tjða­#‰asJàæVOdLÝô&iôß+“XKÀCqŒ‘ê¢[¤™â_V7Í^=àX†çp,L¶]‰´çZº¢k™ƒðJ…°wþñÊ þ‡Þ#qqÊŸ9$ Ýa7Ì݈ÉÍFÝ·™Øy›·9÷ +ž Ù¥DîÔ?;¥ô·ÇvLÑ°žBSa–FŒBpÃ(FÊyfÖñ(‹¤"‡Mr[açðöÞÑ©!øáÌ­`bêCj_ø [„È=š.*/G~’ÈÜ.@èêç\l?w±ã5¨Á5õ©„ \ìÓ¼/ G•øŒ|ƒMò”EI“c©Õ"Ñâ¦&,œ¯wãÖ» üü™%FÊ/— ª%ª'ßt¯¼\Ðcçó<if;7³Cd-< ’: —¤~ŠY~piõ"ñâžõÀu|GÜŧ¬çÂc‘pr)‚¬®-³´;.š§h×I ¸ à ÔŸoûÙ€æ°O49ñ50I–Ë$e‡êˆ¾nÓWZ¡§©˜–¢ž”úšùꔥ%2¿gÄURrçÇ虹ù‡÷‘¾¼,¸;¦¼‘¨ã‚^KÎT&SR?G€3Q™Y¦ÞY¦ŽÝþÿ‰ ½*NÎ'Gè7€Ú!õÛÞfg—{A¶‘¯rÛPgË®jFŠêÂãbòfJJJ¾À+»ƒÈ¹DÑÏ nìç¨,öRL…ïoì€g›hF®ÚáPÎ8ܲ?Îf9$•±ÙAŽpó;E¹Íøpýk‡¿ùtG‰TÄ°m²aXB|ÿ‡¿@ƒ1 +ÿ˜£iñQ$Œ#8c׆ÍèWœÄ¬Q(³Œ™c{îÊãa¥‹‹ »t ïcc9-qÕw,9ú‚µOùÍÛicròô<½°Ñ K)m4f®€³%4¨\Xkõ¦2´õ ¦Å{Qá8ˆÄ’ú8.²ÔÞ Ü=~€Û' ðøS¼:Ÿ–çÓFl¦B'ÿ¤ÙeOê· + ÷Ü,ç^`ïì'Ýd³‘«¼ëðvǹ—€‚_põmL¯nÈ”SÚ Gì}V§_WçƒaéÂåXÆm[$‰w軤æû!B.„…w† §Õ¥ §°HSFÓÇ{ä/ø ¼cÖ¦³èÙf°B;8áÁ1öo7Ô xókïzáÜÓh¤:ü* +yâ%Â7qÍ—»ÅFÐO_¾íÄF¨xªc˜@AÎGêégª§Îf_„o2|¹ª°:êG¼™òöñi™Xdßulá§0ù>“Ûqh‹®µÃ”]˜þž÷NçŸß0=oÎ0ýy~ˆXc}¡Õ‹ í" ç¼^…{:s+_*cñÉ‹ÊÒI÷ìQšm¢ð:qW¥2üÑÃ{^|H?"ž¢…Çr õ=mÁ÷x²Èæ¦H ®éû¿…UW€¾¥þ>œ“½ke踻„zIh +²ÿÅA˜F4¯ÀøLážÄ¤­·ÌùùSMÜîæÂçÈV0Lè²Ë•éŒ·+î¾_ý´jÏe.ÔÑ´Þ ­Ë=Œ7Z, T[(Y#¿Y8ß 2 x×¾ƒŠî7-Î^¨°Öôü°€äVw=<:ÞzüÃzÉQ—±›†Ò9Á¾ó!¼`ºU lGôªyÇgvÈ+ª¥Ún]íOðDK>*·,m™|„ùþ+KêÃhõžSóvi`‘èÖö~½kðƒ­‹¹)½„%Êÿx*ÖO âe{k˜9¾MÌ¡“Çv¼PHí¥`c§xtd©gîLw¼ûÌÀÔ©ûàn“9›‰r,&51ª“†ÁOŽO}£G›³ÌÚ–ëý~Ðb}ïð®\™ƒÃ„Êë¿1aÙ¤á:Có_¢(O~Ê[.Ì˃’ûñls ­ß$ˆ(ï/"›ÐG½ƒS}ÄÔã.©ƒ•@7×Arý9}=ÁX'jš¤g¿)Ô.m¸‰k©kzÞðx"éÙK†¿OÜí++4Oêä/i8²æ½*­”¬ã¢µ&4›ºéM’à_ªmË#îWvà^`|Ù…JŒl•KD¹ÀP)›OõQÎöAƒšy¯ˆòMÀ¥;ï‡óö‘(­ûX’Ò³51™ía3à]eá™× ~ÁÇ…]Mæ!øç®nÇ!õÏÚLñÏ©ÃÉÃÌÉ®½ÒâíçÁäŠç.ÒŠ y³@€þ.sR>š?f­si4qø‹ÇŠÅ¼³Í—Õ W©ÕeÊäG%ÝnÅ—©×ìÀçK!#->i«G{l/†:Ùûdž.‚cÖº¤e™kr0à÷³æßH¥‚]‰–¯0å™þž¡ý8 Û™ƒ×l}K‰#ÎØQM Žj|’£Š±=Í^16ÖÎX'(•ðšå€LÓá;‰Ó¤_¼p´¬|PÒÉÂ{P7K*ùl®P{yÝ]³‚ÎÄôk^Pf¾²mì×xoÞŒÀ†ðœ€øˆŽ=YC_™Ó½ " Ðm²$Z§àKŸ-‹G+yzjA‡xö‘Yi1*¿íy< +´\bÁí,ªÍ ¶ $Ò´o –‚D&šf\’‰acß—`(pë?‘ÍGÜVÁKÐÈäœêÅP”<žÓõÖYÃÉ°N¯l°^éÇÁª  +·ÀvIVa5¸™MvT“®»°¾ª÷Uß'–6cú57ó+M¶X¬gÑ6R”î}Ô®ú0³v¥]ÕËO3Èà€fHAVÒ¢úšgP_6‚'xÝHç(ÿ“UÞ=r“]mWrµÙp8Ý6Ñ.´šä’æ–üÄʵ> •ÓW§Â2ýIØ¥(Ìͺb;gC½ºäž¿Þm¾nÆ®nì¤Ú„Ü©í ›¾U¦tô#X™Í{õž;|û[£Îo7¶›ê~ÒÖ ãØòƒÃ »Q-xÓ70ÁržµÃ¤>î7‡ïözu½ùþ½Ümwúw­\gÌAM$`ÔHDѪÔ 91 ¼‘ázWiÌô-üøÓÕ®Ã0åÆ0d°2d‹¤TÍC¢©Ú¡ÿÿ½sè„>cî° ää•UËÈm‚…èl8y\®½EÆ=´ž/»ëì‰ ?¯.O´yæáF'Ó5ûÀ¨7GTÅ´îÌ4 ÝQ>EÝ|EIbOAó‘>n€fÓ5µêd¥ 8ø7å %¨…XEš0Ï“ŠHÔž¼¦ƒôŠmÝ­Ó\õ'À†SƒW +endstream +endobj +88 0 obj +<< +/CS /DeviceCMYK +/S /Transparency +/Type /Group +>> +endobj +89 0 obj +[/Indexed /DeviceRGB 130 196 0 R] +endobj +90 0 obj +<< +/BitsPerComponent 8 +/ColorSpace 89 0 R +/Decode [0.0 255.0] +/Filter /FlateDecode +/Height 1377 +/Intent /RelativeColorimetric +/Length 91882 +/Name /X +/SMask 197 0 R +/Subtype /Image +/Type /XObject +/Width 1987 +>> +stream +H‰ì×K˺Ú€ñF›5rÖ¬iããÞp3h/ÅKH‰H`òÓÅëÒå¥Ô¥ÿžß¨‹k¹’Zýû/ßë?ªÞñ×?ªWÞ`ÒpúȤáô‘IÃè#“†ÐG¦ù7  Ì{Ài8½cÒpúȤáô‘IÃè#“†ÐGÏ€ÿ†Ð3Ï„ÿ—†Ð3&  L@™4€>2i8}dÒpúȤáô‘IÃè#“†wÛhžê¯9€·˜4¼£ToêøBª¿ôª1ix÷¨ÞÈñÕTý”fÒðnQ½2ô„˜p®’ꈨþ5(”J8 W%{Õ•eYkûáÔçôøNmîß.k6!â@/¥NÃUÈØ?§skR½ÍãK\ŽÖÂШ8Ð/ §á­÷ÍñrU½§ã ¹ÇÕ”Šý‘•pÞªt¾Õ;9¾˜w\Mˆ8Й §áíIl•ÚùF¸‡åˆÝ—pÞ’Ä69ݹª·n °ÿ!â@×INÃÛß!uëªzÏÜ픈&K8 o\ls.Oª·k ÃÕÒ‰8Ð]Ò„ÓðfÅ6ÆÑÚU½S2»1ºJžpÞ¤XÀ7žêMÈs˜q ›rNÃmˆúŽ€£óâWýãÉK8 oF<àª÷f Û â@÷ä&œ†7!Ü µµ§zcÊÚh8Ð5ù §áµ‹þËÌÕ›2P»q [ +NÃkîúQõŽ Tt1h8Ð)E §áµ +6@ÍòToÇ@uû :¤0á4¼>á_˜ÙUõVÜ–Ãìñy'îXþîj@ÄÎ(N8 ¯K°õ ÷Íí°WÛ÷N3`ð©®ål‚Ï<¯kF¨vÑp +J$œ†×#Øø&—ÆvWgþEŒÖNµÁö$lT+ᆻýà\Ë„è× á@G”I8 ¯C°í-½æ6ןAÜ°Ò½Â>1vVËz.Ñ„ÛZ&D'X4è†R §áŸ ²ºopgõIºS~¬­%ÇV*wŒæ[Õ1:Âq  Ê%œ†Êßð&—&7Ö³ðÁoù±a¨]Ç‚öÑ|Ë:æCW8 : dÂiøG‚íná5º¯ÚbÂ5§ìЃ8´–„Ÿ¢ùÖu̇îXÑp@½² §á6»ß†wÕTÂVÙ¡ÓFîDóí똯²•þ<ùìªäì¶ ”+pþ¶Öþˆ¦>*9òœYKÂoóp!^-óU~¬¥Š³ÿé +Ÿpþ¦ #»Æ÷Ô(áãàÁ¡ÜÈePÚš~™¼fÓë™®ªð‚,”œþOwÒp@­ + §áoñw9íØü–%|<˜—èÿ§¬š~ßæ–µWpÞ´³NÃ¥ª$œ†¿Áßã†çvÔ(áŽ>*3p]{•"á »Ži8 R¥„ÓðÊüN¿´±¡F ¿ÍƒGë2'þÁó GnðÕQýC¾Sµ„Óðª^ûÛ°•‚Ç~éUÆH8ª¡á€JNëyínÚ¹í4–po<<›G¹'á¨æªÓp@™ª §áUø/QÑZÄ~[ç…ÃÍ?tMÂQÙuHÂU*'œ†—ç÷c×ÖfOø%x¨9EÃÖ±#I8ª:Óp@•ê §áeEÿm[Oøm:({þ‘àüFÂñ†£FÃ5ÞH8 /ǯÇo{[i"á»àñ¸`Ô!8ðx#áxGðRý“¾Î; §á¥´DÂ=­dgþaúãI©„_¶ÖÒ0FÃ0f–í­*û׶íKâ•£µ0ô¡aü®/YD×ÝÂ0&ƒ±a,¶’¥.,ÄÙþÜ?šnX'Ùg{_¨q?ÄXXû¢Oï«rÉRWÆÝZ†¡Ý®m/kÀɺ/y|Wr5µÛÒp@‰·NÃKxíiÓÌ=·!‰„ßÁ“ŸÜA×à°õãYa¯»ŸÑ il9²É½åëF¸ŠoÏ×GÇàg­Ç¦ÔÅçWO¬a¸ˆ× rLãs ñVáÏ@Ϻgk’œm¾•~z_ÅK&^™Ë"ZÒ`´¿PÞv_Í®`1 ™¿N¯úG|›÷Nà ùe)(Q½’ ?O´ÜÆü&Ž +gÈNøQÒÆÅ%óðh –d©³×So%Ψ­sÖ|]ˆ‡ßM¢%o3ÞŽYIrMôyš:ñÙȘn˜·ÔÊ—L¸2Ž8|h%"¾ +ïO%ó6Ëõï¨Tÿì€/ófÂix?=´º&~ ÿmrÆxÁÄùói8CF½ž]£GXöù+’%Üx>;3¦œJovb¶Ä“d>Æ-䜜x$œ×YJ&eW÷ýKöZä1ã£Î¢†»÷ÚNvÝštÒ^gWýþ˻ §áù^ûÙo»Û¨ðuðl’3fôjö ù4î$¯‘ô³–J¸·ÊžQ—4üGº† ¤’?¾áÄ’…5áÀäy³r*û|Ÿ_²ç•É¾g˜ºÁŠF™ï+iøÆ?¹ê_ðUÞN8 Ïãoµ^ñÎW'!áNX¤“|ÌÄ?düzÎJøIì›h“·¢œ„{Òàf7<;kOkÿ‚„O²rN}ÂÄy÷¹`‘±Ò.Ù}AîD2nòjøZòvx+ÓªùëܪzÀWy?á4\îµ™ %ÿ"#$<ØT³ûòrjÎJø¸ G-5¤TÂåO¶6 íÖ ú[›Sù‡yæB®zêÀøy·ùsf]ã.™!/¸ÿAåŸRs2.\Ó\ÿú©þñß䃄Óp©×^vh{~·tW6d)lúá b\Üx"&¿ÖѶíõjuäÉW$Mx¢S#c”lÑ65£ý³þÚUÚ¶õ㿲f—Øg-äf¤ŽÆŽ‹\žØµ÷‹ør×âR?»d‰+£ÉÛí~w¸ˆ=Zâ}ù=[ƒN¯5¨þñßä“„Óp‰×6:/Þôj&&Ü “Ná‹ìü?þ á b¯á;Æ.vCàZÃ(é{–„O¢N-í缇xšF©{ðÝ¡{ÏÙ艳œ¬§ðà‰sÌZˆa…',¬Õ3‰FtØ%Jä8~izøú#«5^²èÊèûËó3-£a÷/Wt™~íÇ€³Wþœš·þ%Týó¾ÈG §áÙ^;ºÓú*&ü¶ +«$± ²4_ø=Y©PE6n¢Â„‡Ѽ»Ø?Jñ¯mxÏ‘ZàNO1<‹ü_ipHx·óã/Ä^Që½i´"/9AxSÿÃKæF'ÜÅ^ž….ᵉ¦ÍùÀ òüûÕ¿?à{|–pž%;>-H%ü¾ ùWüq/„ÄBzv7B¿Üè¨ØªÒ &ÖgGS§Â¸½lÂÇ{©K^!á>mŸy”°ËyO¸ƒø?ûeóÓ8sp÷âÃ+5·H­Ò‡Jé¡•¸T­”ªÔVBÂW6ËBv_Þ$‚1à]ø/¯?fÆöÌ<ö8žØx=¿žÏÇÉó›É˜2ŸfxÀD×hÂñ,[AB9»nž‰¿yÑ?@…¢:dT¸r8 ’b5”Q¸I.‡ñF¸…¬@+ÜìjÓ%w•k2‰ñŸ Â·(‘MUQ=ûXµÜHÀíE®O¸ƒdÀ9§·;ÛTG¶”y´¢ó/´(zôÔ`4IÿE6MÇ߼蟠BQ²*\9œP`° +“ZÏ=Qtp/YÿÜ—8¬F«ðmÆsû¤oíÀ÷Ìm0î.¢ +Äw¬Åm»¨án꼑-e.ûôgk†{µý•ÅóÏl›f៽Šþ *•!³Â•Ã)Pí-¢€² +7ÈuvÌ¿À½áÈ +iŽ D-0¢8…·ØãÅRQ2—´ +ñÇu<`Êíàîc¡¨\RæÐaæÂáêL8A¤bgé Tý#T(ªBv…+‡Gñ‹ë¢ˆúÉ*ÜìÆ•ôSÜÜ×RøOj€Å(¼¹ä,In›TÜXQb—Ì” +‡Fa¥z,pÿ–PT.)sÞ=Ûg2‡ »n÷Õ„C‘Š±¥®P䈅+‡‡ñ+pÛ0…_“&Îû°4­¥pƒÝ—ŽVxã–·$¹¥R*j fæòÊ%¼³„Ë6ÌÚx h”ñã9 âsºÉÑ@+äIÂ/úg¨PT +Wá;‘½>åX>#^ØÂM}fø%î +8ÖR¸Y[_á5®ÁÍ% ¢næœHXÒ)zåeâ*et¼üu¸[ü4!—©R¸B‘r®ŽñÊW³ êÉ+ï Ðœç·õÞ³è‹ãú +oó .¡í%0“·‹€Âà™àz;Âè$Ç„HŸ2òÕ…“uÁóƦé(…+¹!IáÊá>~õ¼(¨xrohÜÖ¢F÷qÇu¨ñÃ(¼ËdIÔšÉO£p(àíjðFPŽaÖUxþºû…+üZSW(òB–•Ã=¼âUïs†«ðKÒ8 6êX…áÖ§ð  ÝQêi’Äå(¼†FlÁiÉC(ÖU¸©Ç+ü°p…›M¥p…"/¤)\9ÜF×FEÕN®Â‰ªµ~dð7Ÿ‡[?ŒÂ-ˆÂ$.Eá·xD ÞiĆfm…7â~Z¼ÂÑ¡Ñù=üW¡Ply +WG +¯EÕN®ÂFk¢V=Ò*¬ðoß.N D+òªˆ=|ö'qAÊPø\KAL0YS†øø +GÿZ¶Ì ‚B¡Ø8•w¸_;G…•N¾Â]„Z§¸ñ0² +ܸè¶j€ÁrPxЃh P¨RþMK ))C”@á—~Já +E¹¨ºÃ½Â½ëæ +_áæ6nm‡»¸qKVnœwâ –‡ÂͱNíªwé}é]²(ü"î…i8óQ[JÊ%P¸Ùô"pþ¯+ŠòåpYx…«_\å>æèb‰5ØŒ.A†rnŒêñËEáæ¼ÉlÜ™²Ã$)|ÌlÓ`fËK¢ +G)³%–…B‘•v¸_·¸.É@á¹µ“¶n:.AVà)ü2ÁFy)Ü4ŽÙ­œqR~ÊîÂì#1eˆ2(ýÇù +ÿŸB¡Ø,ÊáRðÊV3¹Àm @áf7× Ü´…Zt#:”¬ÀQ¸€ËrR¸iÞöuzïí9œœÞ\¤Ÿû3*ýÇÙ ‹B¡È… +;Ü+[¼Ë`^@ +¿&í—¨e‚©%ÈHVáÆ>-L-µ²*Ü4—§ô·ÆÄ,Eác<¢qÏàšž*5eˆR(ý]Œ +Ej*ëp¿jÑ÷°<nnáöj n™R#É +Œ#ÊÎèÛ2Ô×Jí£ì +w¸hGýX§“/Wá-8’„w’2D)núÇ«¢k‘B¡HOUî­v‘uTø€tø’[èèq›^‚ ¤¬­ÕGÕYÂMóö¸¦… ³/EádDZ…KN¢ +?V +W(ÊJ5î΋"ë&¨ðéð½×yHáFôti¨pÓ\‚È4mì"EáøHhd§ Q…ϽþVt)R(kPI‡{5KgkuŽ€ +7;¸£î>¹Ô˜p!…_’ŽcÎÆ*Üy›A p}Éß%‹ÂoñˆZR$Qd§ Q…›M7†?e«#{wÖje}‘S”r¡|ÿÔ|±¬OTÓ Û$ƒŸîÃWÑá ªÈXáN&á§>³¤prØæm\¨ÂMs¬küÑRnÕÉ¡„2DI>rcø}¦*röêÿ²$%Nf_ö²ÌÏ?âÍç#k¦òÁ²íªieÛ3ù…>¼”œ}€ôVÐá^ݼ,´l +7긧ã<µñÔYPøRç·# +V¸9!áµù»dQ¸¡t™„Bž2DI~ëÆð»Â%b¸²­ø"òÃùU½Yy +Ñ)Äß³Ì_7âÝG qóõ(eÇý0KÄñÀùÈš©|ÈMá¡/%g!½•s¸_7—…–MXáf÷è sŽÿæ\…_ãæ:wã¢îßù\ü]:àL…÷“‡pž2DIîÇù¸B\Ù ªûì ¸rdu&·2ÅÐsv\e˜¿vğÕdu•²ãõs†˜ã€ó‘5S9‘—ÂC^JÎ>Fz«æp¯l6‹­š1 +'ÚÖ’8UPøE¼ W¸QC£õH3Ñ(ç°"HèåáUâfÉJ¢, +ïºAü.‰ +°mKrQâðdY=ü÷Þ»m?fXk툯¢µäå(eÇ]† )Äò‘5SÀ†²ÉKá¡/%gÓ›…Š9Ü+›ýb«fŒÂÍmÜÕ º«ì0@áÜÌÃÂn6¹o~K^œ( p² +ózqHO¢, +»AüׇD…[›(¶ NCòÐûúë^†µÖŽçâhøõÉ-&oCÑŽÝON¹·?gˆ:Š`>2f +ÚP2y)<üá¥äL^z3Q-‡{eó²Øª§ðsÒGäÁs  ðÓ¸9Aá$‚H+‘¯NP¸Yà =eˆ²(ÜÏýßÁò¨p§Øþ*»&±Ø ²vÄá\œ½:¯âŸœ?WëÌAf> +ß0/…çó¯ZUr¸_6—ÅVÍ8…ºF3ç,(œ\)·yûNk…+GЈ´äu h¢ˆÂGxŒN¿_ ÒS†(‹Âý@ÿ V‡D…;·Ë+ɉƒ-Ñ kGÉÅÞ“óô”¢ã‡ó·´;›Ì|¾a^ +Ïç_µ*äp¯j6 .šq +7»´Á[¼%…qs3'ÐQa +ŸãÑÔ' ]B3E¾$ÇnÎøHO¢4 +÷þáþVá½aDD6[φUí‡Gáç£aÿy2<¡ ‡Ã]jØ Üý˜@Ãk]‰¬@GLåb÷Õy<ï¸sþ>ã¿ÀÞpx@51ˆ†—“!Ø%¼ï3GWuæõvx.è2ôþËÆë¾õ] åé‘œr–ð’“$›ê8Ü«šý‚‹f¬ÂƒNÄo @áÁäkfJHGWø|@ïàC|Ù¶oáö}`!…›}Md°°¬”!J£pï›ü‚KÁ•õn¿>…LHȲßvœâj¿ÞùM»oä—µBãÏÜÛ¦ýn}!Kx¯\¯Ý᧣G÷qåùôâNxJ]ï~å¯yçå½÷à|å/hÝIØ/(aˆ9¹ðøÕy|ïpÿ¦=ñÝÕ}ÁÕ#œhH±ù¸ò^Æ~îDzRnͳáNïÑ{xÑz[Ð_õÞûO=Pál¼Î×úî-ÿò[ÒòÔHúà ä,á3P‹0ÁIÚ•q¸W5Á«^NÄ*<ЙOÝà ÜC·èi“Ž6®ðmM;\°ƒoëxô$Ú±Ûõ%°Â§ÁBcnÏ»Óð³ô”!J£ð[/Œxu`ïýNnHi$䔳Þ'\-¯¨„~Zþ û á×=wâoþ,ôô/3ó/§.«4|,ñæÕ^h—Zp¶¿(aˆ9¹ðØu*ù›xÇó7}¥Œ$c…¯pL¢!ÅäãàèI·•=fÃÏï‘ÇÁ]Ž^É@@ádÒªÇÙàù vyz$ýár–ð"‹p“´ªâp¯\AšÈ‹x…¢ +ïs—n¶‡ýÈ¢VøÒm¨h%.Éé¤FuïÜæžXn†Þ²M¿£ÇÄ=,´"M²S†(ÂMï\õW¯ <’JpC±C +Ÿ9UéûìÙ-˜þ…çÉrʯýbYÖ½÷ìVÃ7kvcyק]2ñ«ûøb?£eœ§§ïÖròàLx¸qþüáv}±º™ÍfîÊ?vƒ]~8»Xg8’ÿ³_.OÄFw%UT 9¤È![¹l)*7¹q›Ó–ñ ÖxÍÃà5ã~áÇüå‘4z«5Ò8د¿ ž‘ÔýM‹éß(1Ÿa”kÇ\©É×GÑw ‹žq¢÷]ZŒQ½‡ÓOó¶ +¨–¬õÈâãä¸Sï# T©Y¶™'Ì#úŽîÃRcµ”Çñˆ¬b‹³^;ž‚͸ß1ûôÁÿ ½Zxß›eÙmc¦¶ñîš9·AþG4Y‹´(ý ù±êž™Œðg…™G0ÖþC,È(WZÇ\:©ïY$úV‰*ºbuBž 7ìÐ,ÁõÀyc^ÜL „û'²l3OˆfiE„‰”±UÂípE Âé"â—‚íÖ,®aiÆ6 ÍT6Þ]3mÿõtÖ"-L¿ÃIÓÜ[uÏLFx÷@&Ç>8ÅŠðöŽXºuV%8|úñ5£iÁæ‰ö¨‡jõ’3-“Ùiëad‡_Î÷ QÓ‰õ´%?æ—£ëê¾ýRýqº+n/´dTŸáÇØÆ?qx•^ÆNᣘì¥H4Cég€4z\É¢³Ë$ÇN‹l `hÒæ›±FjŽÄ©*‘eÏåJë˜K'u™Õ)q Dºkà#¢y“¬8}ÖZÍXìDäÈßË#)ÁÛÌö8uyÄViá1yA„Óÿ’¬ð‹‚Öè„&» û…f‚O¨™{äD=½H ÓïÀpÒ4VÝ3¿–Éq ‡àãÂÕÅ™Ìö¾Çô<šáÝL²Ì‡:ƒ¦í¦1BõÓ‘š”a¡%£ú<¿Ä6þ†[À›ôª0v*Sà™ô`$÷Å»HêóaÄÚÚ8’9ŠÃУR ôèíjézKêˆáB–=d”+­c.ÔňFO`š[e¤À*k㢚%k=Ôáþ‰,Û,#¼8䈭Ò3nP˜‚ç~+ln‰ÃáÝ<·†g‚O¨™åaÔÿåº-O‘Þ[¿ÃIÓ¼\uÏt \>šçÕX|‚ŽðîaƪÝgŽE#Ü8Ã*bµ¿ó¾¦1Â'n'æ&uXhɨ>Âo±?ã0•^ÖS„óÖÖ"ÑÓ†G¢ŸŒÙñf,H¬†Á¤c\¨£N¬w¤ºÀz!Ëž2Ê•Ö1—NêBD™Ÿ8@5Ȧd«Ù©ÉQÍXD¾%~ªD–m¥ÉÓ0H–#`AÏ€~g´š ¹hF%)¼9DxBÍ,ü/Cé|ŠôîZ†“¦i9Ø.O„wBN-!øáÝo6í¿t—…ðK;-¡ªÀÄý4F¸“¿ ïZ2ªÏƒðgl㸠¤W…a„w¸ÞП†@¢›£öDé +“Žu¹›9î‘O2Ê•Ö1—NêEJ¨×›ƒ úÛ®$RÍÁ ,õ@„û'êÀP@L5 æãø|•¡ç@8÷‹ö§2½Q®ƒáÁ™ Âjæzå;ÀHçS¤÷×Ú3œ4ÍÇU÷LÂCtp0ñ &ÂÛð¡rë¢Ý]Â-°vná@WæÔÃ4F„^ìÉI!NÛúŠw-ÕçAxwûøo@\Z½>Qú[“A9=Â+½Á(¶‘ˆp|„{9æÒI]ŠèùÎ9CÈ2°©'êKB£>Ÿ¶a„{'² <¨ý²ù@¾‡r9\g~GZ;¯ë3yxp&ˆð„š¹F\é’Š´8­9ÃãƼêŽéDxw³…Øb3L„w»·;&ŽžñȲŽ<ìe@¾ØÉdøu#²žìß½|†V¼cɨ>Âw±ÿ ×??ᯠ+?"¥A¸ô3 G—™±Ðáua#áù÷rÌ¥“Í +žSQш¨$^ +ø \}eÕ|‰lÎßÈ’·sý|*~\g«fZ?/[Ã3A„'Ô̽ ÒwÎZ¤…j½7ñUwÌîËWÚ¾-ª(;¿l!Ži„¯ ÛW,C¬­ï”ôñõžáˆìÖw€[¥Û¾d4íœ>ÚéùxK™¬ÀÍiDÕÓñ®ÉäÌþ…5ÿû•Œêˆ[¾ÂXݬ[¼<}ÇFþ…_ÿ2{SÆyÖÒ u²šè%( =ŽbGÓfý. m‘:§+Ÿá^Ž¹tR÷™güLú.2ž„­ze¦ +ø \}eÕ|‰¬‚Ò+ùG)©ù¼"ºµø*™_ô|PèÄœ "<¡fîm‚élEZ°Öšá¤i¬ºc"=œ!]é;IU4~YmÛ'<]¡ö Û1$v®Dœç[´¬jNoã„g×æ Õ:À#^ã °ÕçŸGûŒŒ_¿_yU½\ï×Ûû§úd§‘¤äÛûû‡—®ôïU2ª_?Ðð+¡_HÝnÁO°%ë?ó?Èë>"/J'ÇB„£ÅMÑJ^³Ò!üÝldÉϺáù÷rÌ¥‘º1ôø 4ÑÏ¢QIÄÌ€ðA¸ÂEuÕ|‰Ž>JðMrò-ÿ€ +µ]g~ÇÆóÙƒ3A„Ûkæ± ì +N‡iáZg†“þ|ºêŽ¹Dýúg¼n÷1é[dÑjW¾”}Œ’-UWøµø;}ÿÏïêå‚ÔÒ ¼E}±5dž±ÐðWqZU^2Bxäs ÜË1—Fjü¹Sô8‰”ÏõI°²è,w€0ÖC{Xáþ‰:–  ºÓoúD?†|™áÜï@„‡gÊ_æLáöšyl»‚ÓÅ2Š´x­1à ÂÏVÝ17ÚèCéVF¸®4o ßÿaÄZW:„i¿„ϤîËCxäs ÜË1—JêJÄ1ä50Œ¢iV‹ˆ ²Ò²½iV@³Öøfy=>Gø‰:– Â×´kÏ€5©ð… ˆpÓoÝx>[xp&ˆp{Í<¶]ÁéĤšmlAZ_†„_®ºcn´Ñ‡R¿µtƒ4/¢>ßbSúQ42º>á㹑ȢôAÂ#Ÿá^Ž¹d çPïf')n"“‚(QÔQ•²ô`4Kp=P´½—oeás$êX6€é-ŠÊòµÀ¼°šCQ „›~óh·šº8<4D¸½fÛÀ®àtTz‘–¡µe8AøÕª;æF}(=¼Âñ‘†1‡xÈ:W:„£…cÒ» ¸µ³,ƒ(zË!Üù÷r Ô"3Á ¥â?€P„úüP‹ˆI ð.+ÒƒÐ,ÁõèEìäX™C®‚ðô‰:à´|!ZU'EÀ«R‘Xƒû ^ž4ÐÇÿ¸©$„‡f‚·×Ìcø•™Î^¤¥h]¾AøFz¯Å_,½ Âñi$uîî;ä˜ Ý¿C7‡å°Ü$,dYîñïz}XSB¸ó¹îãX©Åi·“iÙk€/o¡‹¢%Bf­z?m|Ö„+ Y‚ë”Ñ°Qobèäás$ꀀ 4n„aØšFQOyœKQº"|Dü¶ÆÂoÅq‡õrÖ_'4š #ÜZ3màWf:{‘–£5e8AxuÕs£>”Âÿdi©œŒøË&N%éNŽEDo%‘…ôȈ.!œù\÷qÌU‘›É¬Sp(?GM5"JÔè°…ƒ\`¯€fÉRÒ”Ûh*#ó%ꀛñ$o,Rú€eeZ¹~ƒ y–“¡Tè~Rx`&Œp{ÍÜÛ ý#ê銴­'Ã7ßh#CmÂgñ/Ä:θ¦8±¢XÓ³¸!Nûâ¼)/T®rhâ¹ÈCž­Å!ZÙ¼ÈÂzdI áÊ'åJë˜+?aä­s“÷Õ£aG"€›xu3Ë-Ð-Yê‘ïÇ>¡ºj¾DMxÎ)Ü&÷<ÒKqÀþIPF ´@hQžùmÉYj oµ\bxs¦²ñ5soƒ|¥§³iIZK†„ÿZuÇÜh£%üZüÁÖ +!mA¹ð\Ü ÙÝ Õ¹ð®”Woœ[® +á ÿ] ù¢|X®‡997™Pª—r`À¤|ahtдŽÿ)O Cí@Fqá}M1+`Z²Õ£X©ñRò‘9…ð '¹©Á5J0kaD66)ÿg`¿ym(Vî¥0 áµ™ÊÆ{Ô̽ ê•žÎ^¤åhNþ´ê†¹ÑFK[ø½X]«ùEɺF‰þÇ~¹íªªdax½Ç~–uÇU‡ÚØvícl·±‰ã6*©'ï* 0 +é<þßÍ„bÔ¨QcF> +¼=t8å(ü‡€ÂÁÒ?‡§ +ÿé÷%/Æ/(ü‡€ÂÁWÒ;‡CáP ðŸ +_Jß…@ +(|-=s8 +ÿ).ßeÖo[¼ýr8 +ÿ)BÆ‚~-^^9 +€…Ð[úäp( +@é‘áp(P8=¦?‡Â @áô™Þ8 +€…Ðkúâp( +@¿é‰Ã¡p(P8=§‡Â @áô^8 +€…Ð{úàp( +@ÿéáp(?«ðYO>;òÓXhÉ泂M|½Æ³öKКî; +€òm +E³€ ÆœïšMwD:3~"WÎ#ÇpͲ³(ã[öfúPm´¤ó‡Â |›Â…°Ndð)…;3~"2®Y¶±ÂÏâ­t¡pðMtÝáP8”ïRx(~ƒW2úŒÂÝ?·Œë–mªð©È3÷<ü±âhKÇ…@ù.… ç{2úŒÂÝ?#ãC‡M—mªðçñSå5®¼;Ýv8å»î…‹e@ŸQ¸;ã'bd,Þ¬é²M7Œ{ŽBåàÝé´Ã¡p(ߦp'O)ü«©PxãYµqËÕÕ†6•ƒþÓe‡CáP ðJ¾Vá çó•ÕŠ6•ƒ7 Ã‡Â 4PxÀØ€ úŒ ­Û1 Z½IX–³$f±R!ku¤“°¦ˆ! Õåˆjkl¨ðR{Š +wíH眗†œM,5úñ&b9¿´ ++G„x_ºëp(Ê#…Ÿx2ð;q^ä×½~ñÇrt~ƒ›l`¼;Ë_Xϲû˜0ÑI&œß²i|‘Û»œp‹bŸÒ_êee*¨ˆT…äã¬N!O~Û8ö‘>îeÉ×´ÆÉEf=ê-­‚wœ¯³«LÆAb^"ó²îöØ +wì(Å¿ë”WZj¢Wntí&¼p{Írn²/R¹îÓ›[TÐUŽJ±nu€žÔNáÎöDU;²± u6±ÔèÚM„ž•ncVÑ•à-é¤Ã¡p(5 +¿*1H7NÕ¨‘Ï‚[Ž`<·ÖJœ3ÛHÅÌÔ´HÍÈ‹^xW*šX’ˆˆqed¡<íÒk®R[ÜGVŽ7ãê“Âó¶Bœ:@凞ÂÝ퉪vdcuÑÝÄb£ë7aؙǼ¨ðM9¼']t8¥FáZ‡þÝ2×A‡ƒœ Ò#¡TÖ"™‹ƒdñtºjÓ´/×vÒk¦}w¤£<»Î#³Ÿ¸qZ$¤¨æt¡ +w·Gí“ìȆ›5ÝM,6º~†ÈhÝ®\ ßY9¼'t8¥©Â¥Ú¶FSʱº8!îm1i_Š™;¦¸dçPw¤£<»¢ãTj=¹qÚüNÛãÚ‘ 7kV4±¿~† +…‡ çÉ&,Gƒ·¤{‡Â 4V¸ñ‘ŽÞ +šÙ(Ÿ±ðø$Z!jÚÉö•öå¹ôs*#彂ÂI{\;²áfÍŠ&¶Wøìç˺îÍÒGÇ©@÷…@i¬ðópÈ-ù¥Ç¿$½ê^x©`n¥då³kæˤôsVF:Ê{…“ö¸vdcu®¢‰mÝÌjN…{ãKúð2öèšÃ¡p(.Ž™{:*Dµ2ÖœŸ³«}f1i]J&,²Õl…ï˜aXé(ïNÚãÚ‘ 7kV4±¥ÂÅÎù}-ÛU)Üó&ûôm8)WÞŽ9 +€ÒXágÎ7FS„ÙÕTüä^ ä4*%+¸Xß\m]—’›RyŸ¡pàƒ +'íqíȆ…W4±Âbpí§—QµÂ=o°c·àQiàMè–áp(Mî /ɨwàüh&\„Eòð» ~¹”“ ÇžôíËXËßàŽt”÷´ÂO–n+nέÎei{\;²áFáMl§póùTR¸©Iá–C7‡Â£Ûâ²ÚãÚ‘ 79+šØNáWõ QPx¡r+ÕŠ ‚w¤K‡Â Ô(œ3Iùâ zÖ£Æ,£Ä:ÀuLf"ù0´’¥Ó\2½@8s_D覴¼;²PÞ')|«uœ¹CáçÙË>hkG6Üȵ¢‰í~ÓÏåb3‹ÚZ4sú 2ðFtÈáP8”:…óXºÍbQ¯ý¢Y6\é'°b²°³­S=MyùL^ŒÒü¹/ÅI4Ѳ™ÏDÒŒO+\~o¤2^¬…Ì´˜ó‹ïZöQ{\;²àFáMl§p1ñšÖÊ=¨X•‡ñÜìVY7§;‡Â Ô(\œ“m´Gº«-Læ…§6æù­½ìÃö¸vdà–ÂÝMl§pï 2\&¦VåA¢×¸˜ x{ºâp(JÂ#ožI`ã«Qa[Õž¿Îüw?Ž +³¥À¬Óž5m’¹í8ô¦œouÄJ9æ² +G–2Úm¶´ž"Û8¿¶î…©C“ÃPŽnÉ´ÜÆ“Âp}{;Òˆ¦ÍÌ«‰ÅF×nÂ_e)¶þÀêUù8—ümé{h:âp(J­Â=-WÌ2PÀÆåÀ€-&2}ÌF…{[±Pþ1['>›-+ +ÆYÈXH]ž_z²¡¾1«hŸ-ÆyÙ¾#íhM‚âp“ö¸v”1`Å/ÚÄb¦›°i”–Ú+šÊE5óýïw§‡Â 4P8pƒö€žÐ ‡CáP ðƒö€¾Ð‡CáP ðƒö€ÞЇCáP ðƒö€þðú‡Â @áí=âå…@y¤ð õ´ô‰Ww8å‘ÂCÆ‚o}‰t ´ôŠw8å‘ÂoÄk; +€…2^ÚáPx7ùï?~ÿû§khI«’ÿóÏß¿ÿù÷–ó(óÊï¦Âÿþë¯ÿýt ežª©õäýúõÇÿÙ/›î´q( kå%;Vìرeï]VœPB ”RÂ8 ¡Æq[šÉ‡ù\ɶd[’eHDGï9MmYW÷¾ÖcíícT d·C~—hzÔ‚²dnddIc†4§pØj/Ò­Û4åQm„¬í1ËÚCoª©pðŸðQ@p49jAY2722¢Ò—áŒp·Œó[ËTs”%g~î·²ÂzSM…ƒÿh„ã_EÃõÜéê¸eÈ ÜÈȈI[†0Â×Ái«›l­kiXžn +¤ÛöÑtEk*œ0ñG#|ž¹øï"ƒp##£˜te¸‡¨å&Z›Õ2wñÍpPèÌÚA¨³_ùU´¦ÂÁ 4Â'oÎ ÜÈÈ(.M®ÂÇü‹7n€éÃÄÞáG×ÿáг~ÜZ”2722JHO†k€ð °©o„¼=1Oëÿƒð.BöqkQÊ ÜÈÈ()-®Âø³dmn!'…ðãdŽ³q¶é¦¥ÃâE_:±œÞjÅ)L¹r6ôz±õȨ ’ºY!´—èëEŒðŸD`&1x¶oOíÑ8(5ƒr„§Çë„i'®½ +B=Ö6C¨êÅ>m–p•V›‚mj¡ft1¿Ux\iÇ80Æ-¨ÜÅ(ê"ª6Ùا!rûøÙ}6€0%dA©¨4ÀÞö ‹e/r×´íUi!Ö4948Y:SÚDÀÃiÓJ%™‰;Èô­ôHêkàç–Ý?FõYöZô5ÆÏ áéñúÔhi!èþN2722JKC†kð!l×ìt +\žŒov¡4€‹Á¶>®DF ’@5¸£7aŽYWÈý&™  IÉ25\Ï)‡&ùjòf%S7948Y:“ÀDeksIfâ9¾•aÁê´ŽÚŠ´ÀÇ…E?æоR-Z\üx6m@®û»‰äÿèýÂÈÈH/éÇp²U}ÜN |ß®W á)õþ`€·v‹±†â²t+Û6d9üè@Ïîx:¨“^CÛ.“.¶Ý cú!1zæp-wÆ£®EÇ—¤Ä™*6AÌGÕmª|5­á¦:˜‘1«¶=KÎ N–Î$0Q擈ÌÄs(|+=zÎVil‹N_¼Nø鑹h1 Ƨ%ì4ýòŽ2722â¥õ@8Þñí¨©‡PÇ‹#Üê ØæÛAŸ8.A} ˜‹©1%ðE`9äÊý;dLÃH=×ÛàN.ð¢AN‘+€U3+%Æ\-;–…Js/(³›§&bq>®sóó¥3¥M’ˆÌð­ôèVPÐß(òm0…[ +³I8qj{+ƒp###tc¸ŸÂ« S`GøzuîQ$pi'ZÂ$r5 ‚L<ý( G¬óÚg)‘5B 9¨® ­yjr­è(ë1çéyˆ‚ùÒ3LpI„f +øVz„VkF£¨>4nƒ¶9´‘¹Ë\4&áxáFFFÚJ3†ëpL¡^Ð2ÐÂÎ4§¥&p9ñRðAPNFrô£„ØZ1Ò5h”Q&ŒãRøÅ1¥uf×´d5ûéyˆúñ¥g˜à’d›QûVyÄËÔ¥ã•ÃáV,ªÍ³W°hTâñ Â¥o»Ý—®áíjÝïžžvß +Ç}×Õ½¾Ë"ž²"¹ïb”ôb¸Çgµ²KZj<1ÂWB\R,L¢Ã">U‘iúYthÜwÝôéq6#%¨ÂN³¸ƒ“£¦)kìp +,†/]nBl\nFí[åqK/|nÔ"âbîO¼¤Ä3H2žAø´óý‡Cuu÷­õ¾¡>?;Uá|O¾—UÁ[ Û[‡\–ƒˆŸ²„Ä­B]¬•V ×á˜(äPF‹áël„Óóž[‡«æ2)¥Ÿ7ƒÃ¦ >$ªÊ” ›áÍÍF8­ia–DÓóÅð¥ç0A“d›QûVyœ0ù*Aä³k›°ÅÚzI‰g0d<½~ûê?ÆnožýÇ v{þÛ¾>îþ‘_‡dìÍ¿ß70Ô#ìR/»üT ù(y$¼µ°½¥Âù)K¨Â‹.Ö©J'†k‚p|’#ÁˆS „¯‡M»F*ÍB¸C¬Ë¸k墤¢'ò”^o^6ÂiMø€€{™8z¦kâJg’š IdfòúVyLB؉ŒlPè­P›>ÎœAAEl<ÍoͻśÖ-»½†ÛÏGÞ?r뀬¸_Oïê+ÄßÀ§QÞIeù"òH*xkaûK7„óS–T~„]¬Ó•F ×áã`§ßéø>†ðe#†š\÷6MÒ¹< ïåï¦PÖP¦ôöB8ffiÿOË">±˜téLj„‹Íä÷­ò˜DëšZ·ƒvü™2 *f:Ž§5¯üøŽÖÂ/Ñ/öôN!Ò÷þçnwy°M$‡ÈŠÖ«ïÿ.Õ.â=b{éÁ÷wEú³|y$¥¿µ°ý¥Âù)K*?‹.Ö K†ë‚ð­E1B¨F0„/KpYë ƒ^n„{ÞªkagýàNŽð>ÐÒ‰ÉU¦ôöC¸ÃˆVÚpóI–ΤF¸ÐLß*Àý*oÍ+r… wø¯çô~—Åèz}°=$‡ÉŠË¿n[Á•ÚE¢ ÜK»ÜüHç£ä‘”þÆÂö—nLYBù^x±NXÚ0\„{mØÿ=¯ŠÐˆÜR„oµíœá8À™“k9ÂÇ$mRÙ)½½îV‘UÞ\óóÄ[¼t&5ÂEf$9„]UG‰ 4ÄÆß_CÏk Ô ¨f0l<½þgö=y‹(Îá@s#}ëýF8“ÚÅ!}?n÷ŽLóä½@,íNõV„ï¿X'(]® Âçp5ƒ?Ö–ÜR„Ï( +"Ž³ÀÌ6¹’#œ R¦ôöBø‡LÍÁx)š‡4ÞXéLj„‹ÌHr»ª<â‰ÙÐÞC`øþª/‚{å ²n¢ñôFøWxm¾D7Àsßÿv!}éß› Â3¿‰2e^XoEøþ‹uŠÒ„áÚ Ü«Àù´IÏqá°ñ×b‹ ÜëG±8(ÁcÎREe§ôöBx¡¹|x¼õY ‘¤&h‘IaW•Ç%\Œhï*«‡ {¢•3H6žÞoÁFu]ûþ˃ï?FÏî}ÿ7íxq}}}ä Ò‚.ŸÒ Îm¢áB]^·ÒMÐHˆYã\î9.ç"‡Ï˜>‹‡ÍÈv£®öêšOX á‚•HOTJŸØÓ«ë«ÔCa™âeþ²†áݦr˜š §ì<¨3Õš£ÜôbI–[ò ?5éÁp}> ¥ ðJÞC¨vE8œëQ·:mM¢¤Æ³2;¥·Âá㤱–N7Zz¢Ø3.0#Ë!êªôA•mØ8e‹å¹%„† ¡œAV„h<½~³{õŸ~foîŽ1û«ïÿ„~´M=ÒÝîòŸ§à »žaðGº {þMnÿý›üzqvóì³o„Héá¢Î¸ý9Þ½õÏ îøóR„ðËd”ç»ó‚ãÂX‰\(}¡á‡GÜþºûv–-Ðù êIV-è† êÿ¼Žz#¤ôDaé•à&Š‰Tüé^¥'âãË¿¸ç/FDa™’eá3g“r+jP›IÝ'§ìâÏÔÓê'Žpy¹ÜbÉ—[ø ?EiÁp}¾&¥DX¡‡ÝZ¦ʉð^x²sëõÉ㈗F > ¶#Œ¬G®2¥·±Tµm»?˜,øyˆbøÒ™¤&Âføò®J3¼BAÐÔB¨IGë‚9hX…·Ê %O'„·~…oÊwúâÞÂ]xJ¹÷ýÛ–O¡Œ/Öß±Wì…ì­—±—.ÜYŸ_áp°Y^þMZvɽ‚.ìü%Ú7wt—ÿôL;òÿJ9vWpÜ`ç\¨}Æð{ôÐÊÌè"6–¬Ú³‹_´1™/u‘U¿鉊 Wüí…=½/Ÿ®2K¶,|æ3þQ†[¾!‡™ô}b¦èbhÀEiCsˆ¯zt«œÁHâñtBøì—M{ÚºÇYuÙ]VÝÝpöÝyÕ‡Kéåä@ê–RJ¡”BH€ðªO~%Ù’FÖH²C¨þ‹Ä–­Ñ¼XóCOr«È#Û%‘̦§Œ&8Uui·åŒ›ñh4¢ÏÈŠŸuæK~½¤J(Ï,χñ€uºMr¢ î†Ý­ÉB눹¤³Ò^üátösrÕ‹ ÚU}F‘#N9‘¥ò™[«²î>p­¦DäÏ%|1o‚ŒÞÎp—cÙJdÅ=^7Ù3ÂyüTKCj»Ý4Ë‚}Bù¢5rc3•ƒ}Ê"k®DéŲ—ýÂOVå3¼d„ßV=\T*‹ß%¿]p'ÿsûøAPé³ Ág€…[ÉÝÇ—ïûâYŠŠÙ9\×)DÞ|ìû—¤ú€áÍíÓ5µ~ µ.ÀO•Tb⺒-ˆ[XB3˜ìöW½1²Ô¼Mæ¼ýG³ÕbfÀOOÁ‹ˆ½ÿ½„?½"M³;¼_ÑgM~¿‘-L5¨•:[H:>L/'„l«é|²k"3Ç^^%?+ÚD,\¥„X&'†Ä ÂçÙƛۮƒþ8åÄ•ô,ªÒóÚ¶æXM Ž!‹±x§é`} ­—áH%ŒDqç›Ä¶½tÄâ&RìÊ­~Ž`Œà4„§¡ñUõÇNw™`±ìåF¿ð“Ué /á?û +4wàú±ßÿ).ú_Zßïø ·b¤ÿ¯~Át«¦ô[­ÖyÇþhµnÍ9bå/­Ö—[5àX2qô^Ç'öóDüTyü‘hX7]÷Ç‚1×°¼ê1}ò¹uµD}èßÁ{wu'²öî3¶J@øìA(~Ààmh’´¬]ÚtÜ8FÒãÌ<½$€ mÐëôÁ»` ®çîÊ}ySOG×¢ËÞq¤îì„O"\»6bpRÞÀјà«)ᑋ݈RëåF8V G¢¸Çi•»DM×-nšeA¿Döh<ÁÁÁLmÄ/‡®tÙ•(] Xörû¾ðSSÙ /áˆú•Ê…º£Ïïåù”Cá;°W$«û”Ù”9¬ã=¥Ý»‡tñh¤ èjcÕüycë¦ÿç‘[ÊÜo!¼£f·òÝeátòï߮á–8åDŠ¸UG§ŽÕ”ÚòåbG ýQa„c•p$ +zÜé”ÕM¼,è7€È­1'#8$SÉG>ÔFýî‚bÙËíûÂON%3< ü(ú +~OSþ«Dg‚ü_‚½2›v™tÎFÚµ)º÷ìx2CN‘6´Ñæ;‹…Öi·Ü`læàË31ú[¤ðmËûI#Bä±{8—¢‹sÍÅÛøjJÄðfU3˜áX%‰‚7€Áž áxYÐo‘=Zc O0Fp(ÂUÁ\‰ÒŠ•£Üg£r~õi–¯Óë‡çA¯Rác°WT÷$ÌXtò!Mµ±»óå*™ˆ¡m•Ùˆ¼±¹œa…ß3윣.7°è¶ë@¸;N9q«Å6À+ˆðìb{#c…ŽVI”±€áY7ñ² +Cy£5r“½Ç¾H~§z¥ +G¹ÏG¥2< ü(zxKÓüéúçã¯þ—‹JåM¿l‡‚ܯoåVQǨè’ðÖ=‹6·I5 ÙÊWFj"Š¶}f#ò~jopˆ9~ÙsTáÑÕš›X_´kE¸/N9‘h,¦˽c5%mš¹˜nU3˜áh%ŒD! Xnº‰—_¹H´Æ@¾`2÷8ÂoÊã®îNŽrŸ‘Êdx@øqôómEéí·²Ý òH <ꈲ©ƒ-›t"ú·Áoé!cE@LÚÿÈn2º‰ã™á³Xé˜E„™Cá·F{Pí'N»˜]½qB •cž1ëjJ YL·ª,€p³ÙDa ØŽ¸‰—Ŷrþh±\Áh÷8„<åJ”(VŽrŸ“Jdx@ø‘t÷Ï…xë¾lg‚|’®V|£ÌjpÇNYKjȦÓêÑœnúü†Œ«ür„£m›:Dj…ŸFmáQT§¿8ȶVÈ®…ƒþ8åDšÆ‰òdîXM P[lm¤±0ÂÑJp©D¡ XŽ¹‰—žrÞhüÁ€{á²`þD bå(÷Y©<†„Mýþ×Ö×þ¯²ýÊ!…p +ñ›Q§¡oØ6Ý:µžìËÕ=ë];:–>—-+‹6y Zª7”l 5‡Â^<Ëi„'xh²«sPFáSN¤?pÊÊž±c5%@l±¹1ŃpÓ1´©n´™,ÇÜÄËâZ9_´Æ@‘`ä=ŠpöM´Q§»\ X9Ê}^*ááAA¦ ±þÖ™©†µ ]9ít#ÚŸ†¶½šÀ†÷õ¬Y[ƒCÍ¡ðÒ=-~n4¶6„³¹ÃBvÁ(ŒÂ§œ8žE±¤I„c‹MŒ4ºŽ:†V¼44‡œÇÜÄËâ[Ù­1P(q3µ¬¦»F‰œ¶¹@±r”ûÌTÂLyΙ½QMj@ÈväVvªÚJq ¶Ð:ÅÉ$kÕÖàPs(üêDœw¢=úØNu +Ù£›BqʉMðT Òô­\«)*`‹5U¼Q}ZÜGC+!”& +ʇpÌM¼,ΕsEk  +FÜÃL‘EÂðê³Q"§m.P¬å>7•Äð€ð  S>„SfïY‹ÛKº•hÏmŠ{Ú³6¼6XÃ\ZÒâÃŽ){É“^—ÿ³58Ô¿9}k²~¬#¼±ì%ìTÔ(fWÂ(rÄ)'ÒcÚÔktš€I„£‹±x“ÓjwËcr!w̬„‘((­nšeÁ¾¡|Ñþ`Ìà4„“e]>!%r¹ËŠ•£Üg§rdʇðß=êL›ßFÞÞлçNÜ™l‰ê¿Œûd9=ó6XežG8=mÓWl 5‡Ã¯M’EX ^dN{öfÇñ”þú˜´«Fa9â”Ù!Ž¬f7ƒ?ìE®Õ”ˆ¢º;‡’çñhÂ@WÜÇ3+a$ +ʇpÔM¼,Ø7 ”/ZcÀŒÌÔŠbz:š²­²»ÜÍ+G¹ÏO¥0< <(È”á ³;òvÆn/çbƒ­ÛŠK¼ÑÄ.ŸÁ>\£xƒÃÌYà×Ù§¯îº½ Âk{¹ÞºVЮÕ¢ðÇ©&^®äòê0Wáøbí´:Ñ "·9–­„™( Âq7ñ² ߀T®hÍo0fp0S—rÙg¹#QŽbùË}†*ƒááAA¦¼ÑͳSí=f›)V«Ã¤µN«uÐìÒØNo‡¢™®‡‰%Úô†&Ì|yi'‹,.£ ™¹JûóvP-jŒÂ(üq‚‰ÕqòònÑ”.Ù¢¢3º®,ÐãÞ" jëÍ «cF%ŒDy5úÊUz­Ž»i)‹ñ HåŠðc3UzÛtY$`‡»L°XþrŸ£J`x@xP)/£Ë8†M¬Çuíy=îŒø` ÙµÁ´jÜÄêy-¾Š,2Íi/Çp‘(Æ ¾Zœ%P5î µEòÚÕFa¾8õ˜jñM[Ë“#ŠÔ|S»Ã‹šÝ¡Ì¾4h^¸ËTÂLêq#¾T–Õ`q/KvåBÑâ¾`2÷ S<œx Ùs'Jw¸©¸Ë}Ž:>ÂLù”ÕÑd* <((è:6Ã_'Â~xÿ¹l~›d0gÕ:…<„½DGføëDx«Ryw¸•‡~ÿßí,Ìï‰ê„d)À)ä! <((èE:.ÃÏá+•7÷‡›9T.Â-8…<„½LGeø9#ü/Zÿp3‡êÏE¸¥§‡€ð   ê˜ ?g„ÿMC»;ÜÌ×÷ï¿2ÿÏE¸*€–ÃSÈC@xPPÐKuD†Ÿ3Âï>·3`a}ªT>2ÿÏE¸*€–ÃSÈC@xPPЋu<†Ÿ3“ÂW@xPÐÿÙ/ƒ·Ä}&Ž÷Ô#7NܼqåΈŠ‹P+?P+ºè¢ò—¿“6M“f(RÞÂvžg×43™ùf +ùÔþ!ÛÃS„¯´á?·á©¥–Ú¿d»bx²>´'a×Ķ‘C{¨|böð _8´ÇØ2 áŽ=ÅBQ‰J„k“¬´©Ü›M¶¨1‘§íYËp„~²ÿx-Exj©¥öÛÓŒðÞhËÕ8v«¢×¬1˜tM£3›aò{ªúqNƒÌÅÆ]8›]‘bFö,ÄÅ3ƒYÍŸ»*爈bÃA¤Ëq„‡“t9g“+ÖæÆT¸Ù…ÿóáÞl²Ey'îšY×ë­ÒcßìÓÙáCÙ"­qΛ O9iéÑ[èä}^TÂæY®qÍä¥;¯B¢„p9‰ CÈÄé£ 4½±¦e¿H)½î±Ùs4‘²=+DÓ ‡{è¾Ýb¸F²,Exj©¥ö3Û Ã‹ð,üÙê©{¥íz³„,…†e‘Óß 0Õ ˆ˜"O™}¸ðeO¯Úg&[)†žÂüÙU×*·JÏšÅbÖÁÎÝ ›(ÊU­¢É©`¦F8–$ËX=%¢(›'$Yºsž) ½Ù`‹èNhvØ0ñfoVÙ½hºápý·+ÖH–¥O-µÔ~h»`xbÖ ‡û¹Vz³e³1v€NEÂù3›ØØ“GRvoˆpU­Ê 9¦JÛ’Ä¿NÙƒ·ÚLß6 ®C± +‰!„£INÙ>{dó´d"ÑÞLio(S£oßIÐy§Ì~ ¨Û£üfzˆÖH˜¥O-µÔ~j;`x‚N¯t z¤O|ÿ9cƒi ëø'/ªmy:7„€žÚ dðÓ.¬.A{b¬BbáhÂ@ÿgDw/ì‘ö¦Éz}‹øNÈÓº¿ +ðµÌô¢5—j$ÌR„§–Zj?¶øž\„·éxÜg™õ™hYÖ O9?C-ÜûΥЮad•bxüäœ1O–¯¦“("Oâ€Ê+w&g˜Ãð®½éWßÇïMô-*vb¿áêöèEk.ÕH˜¥O-µÔ~n±3<±v ÒQÈÿÀ.iŽùuâ“›…\K§þdƒ^û„PÑT‰áñ3€À!ó44ä$ŠW$)SecÀ)Ô´ÈØ•Ž˜XèMö&ú"øìX®åL+Zp¹FÂ,EøÿÁnæókqæQšÙŠ?Í‹ùM ™ã·(-‘º1½”Cµ¸¾oF&äË|Ô<õ íÛ9…žê a5 š`<~DâÀíÔp +‰þ@‘¤CÉ›ð/O—”C‰ÑÞDߢB¿¦ï44íÑŠ^áý$~üfû‰ð‹ÑÍqTO¢l¾\¾ˆ3‹år´ý:—ŸÞáWÚRÏâi¯"k”– $/ÁR0·"éž|Úvf13|Þá@9nV‹yWs„7 Ñrrè8K…&†Ç¸Ên²+%Zhi–dƒü­ÂóÆC¢°&´7Ñ·¨ÁOÛ죡nVôj$Ët¯¼Î©=ÞýŠèxnÅvR”LïQ=‰²]!ü¾¯¹‹ð­ô,žö*²n†ðHñ,s+’îɧmw/Ã÷á}Ãa™£Ôú? ñ­,‡Î&UוíÊbxüÀ¸xưƒuý*IÁ+”12î¸ãr¢ëM«DߢB„¯êöèD(Âó_ ÅmDÇç:)Ñ“,ÛÂÉÛ¸…ßU—[êY<íUeÝáÑ$¢%‚¾[‘t_>m;´X¾ïù +‡åÏ-Ë:„ð°ÇæÌ‘CÁÎLÒ‹†$†Ç ò(ð þAˆÕJä~R Iš®žknlu6ëFAÛ›.íMô-*D(ñªjNô"üVü +ýýÑñ´½³ám>¯ûããïåòR{~Tpë¶#„¿,—s:ÜJ϶Ø^<«ÐôM"Z"Há» +ãiÇ~[œ ß„_ч)à1ïÁn á «/áÙÔ"î‡#yü´…TäÇ…#dÐJôª$0’¨ŽËÄŒ3«†¥ÞÜx‹ +¼âíщ>`„“¿¿Zwoä;ôÕZ×Q¹~ómù{kG$k±‡úÝý1¦öü¨à¶mGŸsI·Ò³íµÏ*4}#„G“ˆ—`)˜[¡0žvì·ÅÈð=@8Ü‹äoA1"ÂQL |eÝÛ¤h<~ˆ† ó4ÃàÔKôÊ$9¿¢·pi“ÿ´Âk´7Ñ·¨¡Å+ÚèG8±ËOxø«‘›«Õ³mÛ*ЕBhÎÈ5ÀÙ…¢æ0,†Ð1×잺OUòtÚî[eò+c"†ê%%UINÝeW îÏ´7&íÉz³ÉQ(^µíш’ =<0„Wà$ÿZßñãðåÅú—…g_Ó¯ùŸ;5¯s_ãõÑÛÑÉ…'Z¡k?rîžîRÁßßÂ#gkf$öë“âgku$ÿŸmöpä ·‡5{¶â5Iaê&=CBʱ ²€N“6_°¬è[¾XÈe†6”I ËQìé:ÿ!âšÏa¤v¾ÅÃðÄ"ÜêÔÌ.e3F³ áÓSƒ³‰Z œYMÕóä¤T…q8T+×Ã'éºL½aœ¢½ÉuÍpo6Ø"*Å«¾=jÑ\2¾‡†ðÒÓÒ;s×rTþ $œ‘zò1z#Ü—wÚ‘£qñ8æÄUa‘wdþ/œøos×3»ô³x5Èurñ2z[,C ŠTh1ï£?ä,÷®{¡‚'ÀŠûÖõãbù,îg팠•hü~{"’¿0„|3½ ÿ§¹È½ý׺&“Mv9ÒÛÃ_ØÂóz=[ùxfÉÂÔM*]C¥æ=iB…?9È[~G6Ê o¨/1,Gµ;¤ë*„«?‡ÑÚñX, O&›€ðÙàÈ—î}¬;s4˜•)¥HdNX§xêg}èÕl9tR£L,Úˆʺš¯"ãÅfH¬N"_Oâ–7&W£'Wp(÷f“-""ø5ÿ£¡oZ4—Œï!Z#aáäü½]ÓqüÛpF÷RõéçÄÿè….?®=7¡î‹ü^~Â|ݽ(qG'©ë·_Â×/Ç.‰¬“šþm/Ñï´#ˆ¨‰V3-÷ò(#œ®qõR2ü†å^¯1÷šìXdÉ+ëõl×\qårê&•*_þ(ý!êi™90ü–±à o¨Ÿ,,gś⻮D8¢p“vü Ó‰pǶøÓ·¬ÞTœo[]Ɖ=`‘caòik­öwÂuЂb<yô,kbÖ{Öªe„÷Ô\ì,’Xãk Wagñ6éÒ:£ +à/´ÖÑ•( 5ÓäÂ]Š¹3‰dfçCðð_8¿ûfôG‰ØÁPi +Ê!\ŽxRJÕín[ŽÐòîþÕä¾Ù ¼Ä· ãD¬QÉSÅã¢4Sûrö±•CnmÐ&ß4ö­±É·­¼CX<ó½¥X|€6ÏÖŽ0„'ñÎãj>ð5€M“uu%ŠpCÍ4¹ Õ¥˜;S‘ÊÑmløžOÉós¼J §,$šHSPºË~R¬êö·-Çfhé wÿjr_‡lîS&':Þh +ÿ† ¸€¾û,ÍãÝÕÓ´ÎÅŠðìŽ^بఠ+Ý}Þ«zF¥X|åÛ¼á,^Àí‹O5‰ ƒZGW¢7Ô,-áw€âÎX¤·8{Ȭ Ïw±±¦äC‹pî`¨4¥» áh²c_‰5­˱Z6ÿšÂ×!„׃¸ë¦N”¡Á*Øô¤žùÆ]›ÃÑ8úCµ@ø\ŽðÌŽ4÷šá†·†šPf‹ï|=RNãK=¬#¯dÖÑ•( 5KË%yCÝ™Št <ƒ_tå “gb¼CeÉzÊB¢‰4e»pÌÙ±¯ÄáÖåØ-™áá_Máë ÂáúT3N@S jŠE¡g&}¹3MþP-pˆ’vås¤C¸w1 ·L.”Œ²Z”/|&„ÓMs©‡5´ÖÑ•( 5K?îwâN_$¯ +ãuÏkÁy&ìn#>ÐSÕT A¸NZvêQeE¸u96EËe¸CøWÓ¥Cødƒp¸§|d¨@_*åkÏkøÍ3˜õ:·¾ÿb…ppÑÖØÏçH‹pÏ«¿†m¤.%”Ùâ¿4 ù½ø‰NõÖÑ•( 5K?ÎâN[$Ð{ô<¯uBjp+û°A¸¦ ü.!œÔìØW’á–åØ-•áá_MÝËóÖgÇðïËáµ€6Ê,ЮƒšlQè™ã°­{Þ-¬|(…C+„ ]\Ü•Ï‘áð£„d4- cÙ- +ÔNA8÷CÉOg]‰"\_³ Ç@ßpwDX‘b‹$±98x Ù—{UÙ‡ Â5NÂIÏŽVÝáöåØ-“ááNNª,>fPÎ2qЖȉï™%hâwäî*ÃxÌ„ðä2Cç†JcGžÝ‘ˆpåöt« f·ïl›á,ÞQb_Éÿ@PW¢××,Ã1Ð7Ü]$µHDäk¨V#³>Áy3©‡Hõ”…Di +*}7,œÔìXÕÓ®Fh_ŽÍÑîîä¤*;¡éÒ¦™iâ=f%É"4½Q‰ÛVïâ1-ÂçØ\qæÙ>kº9q¤ræÛò@F‹í€Ý:½êC¸oGÉOg]‰"\_³ Ç@ßpwÉ¢6:zwÍ”fð‹ï%1œø@OYH4‘¦ 2Âi8ºìÔªŽF˜£›£å1Ü!ÜÉIUV„—¡÷óS‹‰›@¥ ô³à-jš%@ü8|š²Yë.4B:WkñXå¹ä‰M7‡#ŽhçACÈn±’ÄZ3ÂÕx+Œžn[‰"\_³ Ç@ßpw±”"…z“n<¿‚ðvªd„ž²h"MA„Çáè²S«nD8aŽrl–Æp‡p''UÙ^¹™’?¢fö hŠÐØÞ%‹¤g#rc)½´·ÁÓGØG«¤ãÁ¤ÄY‰æ†½[5§á•L@¸½#ŽœÃêè&zðƒäâçÙZÒ2ÕÂØ„GñÀѦÜ›3bÜ4 Ö±•(Âõ5Ëp ìMug(žOƒY´!à«ùP¬jNÙC®)h¼K G—RuÂñí˱IZÃÂœT¥!|GB³F¦ ¶ý9ˆo]‰ éØçÏBþøÖs ï ¿Ñ  à¿#3Î{[˜#WÊàý¡Ó#m¹â‰M7‡#ŽœCè¾ï?Ï‚`(æca±D +Þ0„ÃxŸ?’x½1ûÞiø~çu­c+q„kk–áØ›êÎP¤H3bõ5|¬„_MO±ª9eG8^Ðx—Ž.;¤ê&„ãæ(Ç&iI wwrReBx“ÿš¿TÓ'„_ð}:4½‡ºqTŽG‡tdR×!Ô'±¶­ áýBá ?è_ÿ]EráNNNëЂ _¿ÃS7ë6¼Ç3l:1ú³X¼RÚJ°²*e 5Oñ箑­Ö…ðßàç1~Ö| h½Ÿ¬‹¬ksäää”Q‹1|eï^žg¿á=ž™`Ó‰ÑãBáX]h+Áʪ”1ÔåføRþ“6Îˤ3ìö¿ÑÙoáûýë³[?Éâ§C:ú{ ™˜ÅxœÍóÖ÷âû­ìŸI¶2<oÊÝœœ?ЯB6ç»áX×ê¯m:³ß—’ÌäH_M^1¿«¬ã¤Ë Û}‚oõx±xuæå•Å$÷«ö»X@¡‘Ïþ«vrrÚåexتlw—ak=!üÛ)(?†®}òóú|?~' zÿìüœtá­¤sï@ÿÝ9<±v-™.‹Ep´S}æ¿·`üøç“-f\öŸ„-Y´ˆóÝÃóâ8ù1n1j²9‹iò¤5¬ÚþÉÁ^lŒO2“#%~$y!|Á<ì#æwúÚcÕå†íF?Þ7r¼X¼óÊÊaîÛ$÷ûö»X@áNNNëTN†/á]è«»äÒz¿ÏY£ÈèBÓm…#­ó🃭³Çðáì;b‹Ag¤c“ëÜžhy `>f°á>tðÿØ/¿Ôy(ŒwbtcbssuwcòþE¯b墈ыÊ_þ&m’æ$'m +\//æYhÓäœó$m¾dwH¯ú„Œe4¿,eT PˆŽˆ”HÛJ_VãÕÈê0¸!7ÕQðà›KíÒY ‡^oÊ'É,‰”úuó°|žÌõhWâ)¢ä•’G㯀:uÊòbõâáQgÄûŽfÎÈrwrrúVÍÇð% üDœ¡ÂmWAøµçmîƒ~Uo¸s·D8¯ BØ#¼'ë’0×X~Y JS:»ž³Ñ’äë¢F£›øÿ^j™‡QÛ¨>TÆZ%ÒêWÍÃòãð¹èaˆFuNb™¼é£ñW@Î,/V/uæîää´Nš‹á‹#œnµ|× 7ðè’ïªWU†‘m¹³×d­CqäËŒp:T‹”RMΣPGâI^„^ã(>–ÜHƒÑRô°©Æk—„Æ̛·ÔÆAoÚhÃ+ çÖ—­ ;swrrZ+ÍÃðÅÞÇ*¢–†pzlª›G@çPd“Þ„­¶§¹†¼ñ$:Ä%ä‡Q:¤cW<9ÑÈjÜç5ÜäxùŸ÷Æ#&ÓИù´ðd¹r…ð•£ ¯€ž›Š//Z/wæîää´^šƒá‹#¼-o°:ÂGÛ¤©ÜÅFp„×=o¶Ú"üšŒô¹ª*òÃ(g±#Я1Õ¡ÔªO቉@hÌ|Zø¶åâãÞÄhÃ+ ç–¡õ¢áqgáNNNk¦ì _áç2Œt„ƒ9| +ÂS¼‰Ñ†W@ÏMÅ—­ ;swrrZ;eeøâ'Û熸Áý£MsÞt7ÈåVµV«Uqè]ó™NP’÷%ñã+È/KAàfü¤Cú÷UŸqW¼ÆT7†RA6ƒÉ´D ´É|Rød„§yó¥…Â^=7_^´^Ó?Ä™C¸““Óú)#ÃGø¹Gx kmzE.¶"8pè›É‚p22ç’£4Á` +APcݤ»1” +¨g2™–„6›7‡ODxª71Úð +è¹Ygób™Â#ÎÂœœÖPÙ¾8¯åóª áAÐÏ{Þ>ëÎd€Þß›3#<‰Hyx-íÜ#¿Y»¢Dxð;¢óˆü´I¿¡Ü…Ð/œ׵ZGo&Q›µZ³7¨ùaå" +\¯µXGvÒ#ÁÚC¹u£D0•Ú9'ÑT·ö‰Ðúóñht}6/]òèS”âMŒo´W@Î,/V¯9¼ælèûø08#ó) áô·tñLH1³8“rUnïö´Æ¹Nò6’Ãr™N·cº |6lX{Žk¥Î¯lÓ”8%KÌ¿$s«¨” _cç«";†/ á?@5逸‰d•=ïðÛ“®°lNtA.§ ~¨‹#i +ñåXbí‚?i€úµ$Œý¬2·ÕkiJg¸G¸——)†ðwé]aÍ«-Í9šRçªÁÄI™‚e ¼‹ ,×â4T®ÏY«Ä\G>jÉà» 1Žp¡Q½Z' R7"A<û„‘³$kªj¨NUâr/“uù˜|²9³¤˜W|}Err×òM ªéâ›CžhèˆO’BòЊøV—Ÿ€Àe'ÜofÂâg•¹­^ËS*Ã=½¼L1„Ï¥w…54 g~Þè‹æFh þô¢hʯ" Ïøà„yÆ\(‹²Þ“›y&Â묇§N9«ëᩪ¡:U©,Y;–ɺüHd?gtDKŠyÅ×W$'|œ*<¡YI›_ceÆ°ø”RhH!€ã²“î73añ³ÊÜV¯%*áá^^¦Â'һŸg½Þ`2#ÇÆ3h¾£é=_~‹A]¼‰¬±¾È-·J̅›Þ@?pr kgN9K²¦ª†êT%.÷2Y—ïrÁ×È¢bTd$ÑÔðŠ¯¯HNn¢@ûUl–.¾9æ‹O)…ºBC8j€ûÍLØ‚pô—ëµD¥0Ü#ÜËËCx_zW¤>H9W…ŽÇáT{±hmÑËñ{Yc}“(o•¨‹¼o½N?9ÞŒ’“Sæ„’³,[ªj¨NUâÊQ&ÛòÀ"&»8w¢%żâë+’“›)•pœJEÒ6g¡ï1`ñùi„ã~í ?«ìmõZ¦ì ÷÷ò2Å^›ñW…ŸOç ËEør¡½X1LNÞéÍûIlôpY´JÔE>„÷D¸y‡«¨î8!å¬È’ªªS•¼2Ëd]¨ôѪ”GÜ/)æ__‘œ\·•Ò-T[ssÔ'²¸ÏO#÷kKùY9l«×2ee¸G¸——)†ðò{S>jìe8«-8Ùáj +2ãæ }ºIoX‹|GO;¨‹\'œšz×a8Ê…ð1ëìRΚÐT^Ÿ]%®e².?½ŽɆpÃ+¾¾"-¹®˜éGÑT1E6G}"{€ûü4Âq¿–„±Ÿ•Ó¶z-Q6†{„{y™â/ŸLãþ_åï’ĹAÄŽ¤r÷ST#F³jbD«‚~ƒºÈƒðkíWèP/Âœo."g—TÕPªÄ•£L¶åá ìcN7pv-a–󊯯HN~(1ó¢}é`›ó®/j X|~á¸_Ë[%êÂŽð¦a#Q#§Ê."g—TÕPªÄ•£L¶åÁ¸VmõzÝP| %żâë+’c~¢±˜÷eKls^ņ–­˜ÏO#÷‹'Œþ¬œ·Õki¾:„_”J¥³áJ|[u»S:U/¾‘ÖR±ïªï´Œp]2çÞ¢hN(ÐÜ5Û» µ›ü¥µ ØGA}ÆZ%ê‚ðEµ ø{“ åAx+âÛi‚çì’ªªS•¸r”ɲ|eÍ0³¤˜W|}Err}ɼê$Øæ ôE‹ÏO#÷‹'Œþ¬Ü·ÕkiB¾*„÷¨çàr¾St›êÅ·Ñš*ö]µâvE8¹n“‹Ú"ål +§œ ò—5ÖZÄhU˜KZ%ê‚pwÌfÆm«Sg„WÑâ0ÇÏÙ%U5T§*qå(“ey@xÔ×á‚–󊯯ûâÉ5ÀÅ»GÑT±Ä6§!(מ*ØîóÓÇýâ £?+÷mõZž0†¯ +ág1‚óøNÑ7FxþŠ—bíŸÝæ›(_-%æ¯Ó­|Üü#'Œˆªp®YðžÖnÁõI;¾ Ùá†7ÖW!&åÆG$Ø`º°"|Eï6Îl ÐÁ:é¿N¯µg‹ÅmBΙ+%U5T—* ¹–ɾ<ñM' §^C+‘()V||}YJrä›'æb¶BûA7‡,Ÿp[3¸1€ûü4Â-~Ñ„Ñȳ¶Õk%B¾"„7‚`gø<¼¼[¾ï4}_„ç¯Ø°óM–þŠuGBÞGþ„—Ÿà†²¡B÷Ö»ÃÞËŒ6:àÉG? çy½RcÞX›äÝ›ôz/ðgÌÙ`º°"ü&~þ­+Û\“Ç/‹¥o ֦q˜_8M˜9s¥¤ª†êR%!×2Ù—§|bš4RJŠ__–’9ŒFÓÑõ͈p¬Z¢›Ó ×oýÞ€À±† à>?pÜ/š0yÖ¶z­F&ÃW„ð+ðz¿|·™Z'•JçÿtþŠÝŠŠ—9'¶q¿ÿ¢ŽhÄWÒÈ¿‚ð¸ЫÃ7‰¤'Vüö½JMDc½`sóV[°ÁpaE8í™Q2Çm^ùzÍT„·¤e¢Å¨ž=aÉ™)-U%T—*Ir,“}ù +9BN˜ý¼žRR¤ø–õ%iÉMEñºº)¶9åæœ?1ÀPŸŸG¸%V4a4òŒmõZ‘ †¯áç_OPªu"|/öþþéü#@†o†a§s¾[$Ûxì8qÛéì‚OEûÕÚ ‚‚ðz¾wÐ §Ée—õ¿÷.ÉIÒûf7n˺e3îyãÃòE=qoº ù‘ò@êŽIÏl*6•n €§J›Ê˜j3Þ”GíšË„5çDi©Ê¡ºTI–c™¬ËÃø8.dª½¦•Ô,¾u}!5¹J?Þ€ù¸aXb›ÇKNBÛæSJ¡ +S'ɵ t¦-V,a<òŒmõZ‘t†¯áÐW·—ïÕiÝoŠðüK€_oâÎeâ Üþ}¸_«NlŇbh/×C 6•0¬J7­›Pš­„ínxÂo«Òu¹vCz*lÈîtÊ#²ër£ÙkVu›ZxÑ£ñðÕ5ÿZöœù˜=UjbšZ%MNe²,šñ…ûpc„¦zµ¯oM®^7k¨!²9±ƒV7Tž0 Ÿr +õðP<ÉžË4H‰I3CøxM„óñ³}òTŽ‘$OkÒÑ¿W䯩’­.­#ˆp%0—Æ€$„ ¾ÃB¬ì(7OÈ»SѨÐÕ›ìŸâfôD‚㜱9Ç9µZ„[YYeI"ÁSG¸|àºÑNƒp/áãVù`/¼V!\?ÎÓç}<ˆ«P-GÖn¸@_D¸8É-•’ã@ê)y¯˜u´ wg«k‹Vo²Š˜eŠ'Z$Ý1ö\!¿ f ‹p++« I"xê—I5Žý.„H ïMÊÁ[¾‹Ôê²a'€G‡^H\ á0p’„c%‹sEü fœAÇyª+ÙÐÕ›ìŸâf™ê‰Î#*ßd¢ãáNY„[YYeG2ÁSG89 ñ0zÃÁ1¦ìÞ½:9ÙëFÇÆNrÔƒ†:­Ë¬iˆ¸‚fá rx€p8Éáš’CARw#³L:ÈOƒÜ¦CWo²Š˜eTÐÜ#Q³<ø5PµZ„[YYeF€à©#¼CÎöxØI>ƒc >%xÛ ñ76A8:>ìiRRö•i-ör&Õ̵£®ùXnsi @®/9jI½QÙ¤ƒ&î ‹RWo²Š˜elMÀÌ#Q}@ðè—‡E¸••Uæ ž:Âé¡?áo­è¤¯b¨!Ï4"W½Š2­Âá"]pör©Ke  _U²BjZѱyázæCWo²Š˜e‘ 'ªG¢H—‹$tÎäª,­¬¬2"…à©#| Ýþ +Ñáý„“){ìÑáèøH ÖIåF¬m–sœ“høÈØcŒD8k((ÂW– H=% tæòÜWó©«7Ù?Å Ì2.è‰â‘ iNøHU;Ž³/Wenee• ©Oáôö·;eÏ]—d„O]wꉪÇ×ÈŽ ÂÑñ‘ÈíîMsvǼU·§2f–n±Ý›»ïAEcá _Y²Lê>u}Ž acäÃWo°ªˆe\ГøÝÀ±$ÅHx?Ž|°ߨnçóó´f}tšË÷U‘5¥µeJG¿æ‹ÅürÓel‚§ð+’o/d@7¦H2Â÷! ?r7ÁSÝ1A86¾Î®Ž3½Á¦9N>ÖÏq²Ð«g%âÖ¸3£(SËÁÓø0¬W¤¬8Éáè¹ ´fÞáyòˆ‰¯Þdÿ7Ë 'ŠGƒøÇ×Øv×a_Ç—GøéðòhÝž HSÌÂ÷‡ë{ß,}ïK3÷ýûw„Å£ò¼[t«vѶÔ'Ôñ}Bª¸=ÕmVÁÓG¸W¦W½ãN¿yHv&êá9xRIKþb4ê8FÇÆï:» ×u»äΘ°i9 +Ÿ³N™þí³¹w»Í+2´¹Ï¦Ò‹§³[¿hUr¬^J ÝV÷ä œdŠpt‰q/i*PíÝ•™IG8…aCŽˆ¯ÞdÿT7TË 'ŠGôwð`BšZR ITªúª'ÇÓÓº=¦˜”¾ž%Æ_+,•‡àÝš [µ«ˆ¶¥>¡Žg¨×y€ðm©n£B ¾„O®ý12G¸ÃŽîXdÔ 2‘ã(IÑñ“ +ÖËðà¦´í „¹ý|D¶ +êÍNØ2êÓ°Q«‚N2@rlåcíÇ(m¸& áâu«7Ù?Ä Å2è‰âÑ€<×å%(®ÐA/a§ÿ\Ÿ‚ðÇù¼=½ùþ:JßóG ß'¡)Xº_ÓS„¯‡ˆº5Ž}à®~Š¶¥>¡Ž{ߟ«­™•†àŸ…ð©ëràÌ\ܽ‰ÛjöÅFqÌÄu# +x÷†=(¼ fušÝI0åÄA’bã=Ïm6›W<2»Ò‘ÆþLžÉÍÎÔvsFŠïWÍf4B¬HŽ%”§s©Ôuj;®Ht†ÄWo²aVà†jô¼Ï”5Ž…o!^ÃÌKÚé?Ö§ œü¿µùKíçõ>LßóG ߧ¸)Xº_ÓS„¯ÊCðnc·«Ÿ£m©/®c.¾-ÕmN:‚Â?\eÇ9N!MóS®t_EÙ^½¤ÏGxúЄ›Dø‡¦‰þ‘Q‘îÔ÷ûïqôzÓ5l´ÿ*8N^Ç>CÙ†X¶W/É"|u0‹pƒn‹ð?Ò›ï÷6]öHOð¯‚ð²ãôÓÈ“mˆe{õ’ ~ÔnWASµÝn—”¥vû[ð°êH?mk»Œ‹µö‘øª$$ójº4IBBÒ g…ZQ+0 º¡ƒm;¬Fƒp˜Oµ¤î†.éŠý&Æ°B›ßx"•ê¨éV—ÐxhHê;öÕi"_.¾ôë÷õ_ñßòWjÁ¿ÂŽsœJ¢lC,Û«—´ +áOþ[µX½'—ñŸZµ»Eø?õ‹}s:²· ÚÞâº^ØçÿŒÆõžƒöÇvQêY3Qõž¶/…MJÂbí!xY¥cøQÚB84II—¼%X¬£1¡GȬ*rΧûþ V«Þ,Ì áGw¯Á´š€ð8,ôFUYÁ“j—ðý)hù‡W‡ï"e"²ñH¸gÁã{ß¿æ†_§XŸ&d±=W´„d 5_.¶rüë/½ò\ èø2 Uÿ"o8ÓTebÙ^½¤U'‡[í2:bÑbÿS½¶…‘ÿMóšðO7d}Œ3ÕßšžõG#çu”„?Þ¤×Hw$ ãÆ)éûÍšéôS^ ZýéBJhà6kç, æX­z³4n(ÿ¶ä£b„ó0Ÿ.*÷xQ+‚àaÅ~ Ñ3jöJˆlú:AýHHúSOÐw¹0$!²ýØ4_UÈ%»Çg@+ þEžšZ™†X¶W/)áô(z>Òƒë5<‹è‘½¸‡ô®ò\â#ÒöB©ÇyÐ3'úE •è¥bq?|\Àãj­DC2æiø›ž›áÝ $¬†=_·Ïoþ¸rñõ¥®Éã[‰?/…bêŸ`ÂDÐY·>½±…*½…—-¥V­YZ7@=%:þíñþª æÓE}~ãKZTA.ø Ýoú;Åü§}}GÔ°ü©ÑGíëEA$„ó¯Ô¯n-Ý͇Ÿíá ùû4(I…¡û¥n?¶Ý×Ú÷BÜ»“ÜSÆÿýZMp‹pY“VÓÝt ›S¶W/)á„oöîÉÓmÐxä?Ÿ‡ÝôìúÉG¾ùKÒ^ .m1,‹Â¡DÁ|½Wáæ‰ÈÁFGÖhÎèê$&$£ŸÂ§^\Qé5Š\ î7,øœ“V%\í:ë[¼Šb5*µjÍÒ¹Nçäj/}_A8Ì—àq°¤!È¥>höûYäeðtNøvåÇ…LÄ÷³¯E‘.|òWC~c?®Š¥ßª¹hBdû±è¿~j¯Zÿßò×+àáVVˆ’þÌ.ä@\†×‰ïæw:òõ”w Gziéó«WõZìY3y.œ|bÂÇèЄ"W£—à¡DoL¬ú|þ/ûÕÒ•FDY±tçÊ]vÙºg7«œ ÑŒ!H$("*of~ùW=ž~TÍôðEPœ{rrzº»ªnU·ui‰Œ.áH@l] ŽZÍxÿg¿!^P®t±ˆj(*Ãì¦aù–º„kñÈ‚fK)e”pðØ ç†¡òl$ †xE±òµ£±$áÂíÄn]ì~\̓}— Ã¶Â ˆ?’@ÂíG%\ß¿ïHSð\Âsä@"á˨dz&×TÖÇ¡¬/ -½³uÑ\j¦æ–aÇ´±€)>DÓiÁ.?ŠNàŸ? ¦u¤„ a¥u:jÕ‰â[e7ܨq¥‹Cª†BˆÙ5ÂquI8^µÆQJ-î/³„7¸¢ÁŽËäø10C¼¢XùÚÑX–ð¶¸'¾ušËa쩦PÃêÇ%pûQ Oº{‰TÏ%ŽÝÅžQöJ@q]§NZAë_Û³81+Y,“²zìGJ8®®H âQ^“RB$­X_;o$_ ¨aò9Dî@ø&áT…Ê>QÂA†W/, Z+,„ÛJ¸¾Oa¬à¹„çøG¸ýRúžq'bbîåu‘"áÞ$hPLwæþhÅ;OyNi‰Ô £µ:x„s•‘mÉÍtƒ@B'GaáyMej&`Vgcxö!FM¡I°WŠë:uÒªÌj`¡5çˆ+Y,“²³½±]|’Æ£¼&¥„H Z± +ä:TóTóµ.ÇVÖPÃäsˆÜ¸ð±|6“po` ÂyéµÂH¸ý¨„ëû÷æ +þ¦%ü±Û½Û5‡¦¸(Ž2îDL̽¼.Ò$Ü›²†fO¼¨çÂhéw”*“\K¦ž·°/Á<‘Â7_kå?% ÏHèäBÀê´ áAæÜ•·öÇmÏ[j4 ö-áuÚ +~7¸ñKQçJˤì‘]‹ ê>3YÄ´x”×0%FWK ‘@¼bð{ÉåÊÞn¡ùVyštC¼¢º;'RÔÚBÏ^凫Ÿ7ŸFýºJ =/äø±èÛJ¸¾/‘AÁß´„Ÿ +Ň]“ ñ³àäâê6ÛBéâ÷6‰nJÂAoÜQ¼òøk¬ÃYÓiW©%ì¡9í÷g=i=,¼Ù ?\„ïP±™nHÐF! t×åÀqœÑÚó^´”ÖÌ׳?¬ø}¿–bÏ8{‹”p:mÕðƒ¶Ã/+Y,“²óÀž‰ïD1-åuî§4Zb)!ˆWÌfNgý¦ãôŸW¾s=_¦…j +ˆ!^Q䨸·ôa‡û¼‘„—'‚hLGÏ 9~,úöã®íßGdQð7-áÇ@­»k$‹…ÙÎw@ùUñ¡$|0æí¬ξD3‹¥%~ ‹šs¼ÖXó?Ç¡´²Y A…€e—YDžbŒ±±#$ÛOdOJ8B¶b¾ÝèŪs¥‹ePvÍÈçºÕVELGx­ñù™–"DÅj3¡OÐøLÂù{•C3Ä+Šu=ªšÛв'É _N£øëªÄ =/äø±èÛK¸¶‘IÁß´„Ÿµû û”J?_Œ†»‚„ƒëŒ Ǹß÷Š%á}«´ça$;–Ý zËÈ®ðö4WqØÂÊZ%|âLÙj³@C>+¼ åguÃ=Å`T7|Ó°·ãŠ¯ž öRÀäÑV}+ Æ•.–IÙƒö“šÕ„ÝòF-áµ¥4ÒSÒtÅz‘æ-ze4>“pþ+J€jˆW9êêœM¸/5«­eO%"º“ bæ¼™–?~,úö[p-¶ÿMÁß´„ß¿èfÙÿ­PøöZ\t0A†_ ÝîÏ“VÅ Ã…Ûn÷´XØ*×màƒI8´Ù›ž#½g+N³ïÏT°k•KŶÞè7ÊÈZ½ÕsB W6 ä8BÓŒZ¶Óîi„BT8DÍš£ä™`/L¢ž@3R: åJˬìaÄžã?ëúF­6˜×š¦]è?qÞ¶Óº  Ä™œ¡)¨†DE‘£¶N0q‰— 纄_=+~Žñ'º¹z>ÐÛGP×Ùiû÷üMKxVìDƒñq!þ2Y¸;‚ñíöÈnNÂ_[ ôï‘•ú‘…‹Šë¹õômÛóç øè¹›²ÿßÜ]#«‚ç¾1D¥~z:‡¯â½ùÂŒ¯¶ÆuÈ%üŸã7ÂŒÔíµ¨÷vðSñxúž7OÙÿŽoYÁ·-á»÷|üG{…Þw»‰Ö÷Ýuê¶{Çǘ„ßvÅ(ÿ†LæéCVê§ø<3_¸…ñ)ê÷ééAÎ!'ò¨WÐU™êùŠõ¾Mlð%.¾4jJ‘M$ü«NíÕKøÿCFê-hEµW#óÞPq½¹½kFž·¨„㺛~¶ïøæîÙ|[~]dâuuÁ.aâáì^§¥?–¯ŒKñäN0ú*X_‚å£A ~°™Âá)ëö§Žns_‚ÏOÁæÇsöQ(?$‡LãAQêû"ì{0_@$üºX¼†ÿ?ûivãY%‘§_¿béüQ0¾?av…/¿¢ $_±^Ø·‰y)ßë¯Eåô"§Kø¯Or pj¯‰\Âÿ2RŸ¦?ì>†ž[ß5 ŠÕ¨á8Nû†³´ïøæî(ø¶$:óÅ×Pb¿<>uƒa‘¿J?q.^ÅFGºõQôÔ|üY|†/þ1›»#ÿû^ðé61d2ÏŠR?Á÷/ã6þžT$QMäî˜Óþ¿JD“ÇJvQ¾r½ôoê;­‡’zHiçŠIøÃ×Èâ7Ÿ×©½.üPÄßY.áéÈF½èæõȼ7L¦]SPÑEcZIÛþŽoî.±‰‚oQÂÏ å•üÿý7<ÕŽK~W2S®ãó‹ ¶^¼åFG¢õa©Ä„ê0||~ƒ§?®/Žý]ßK¥CK©tÚœ‡"ÃÞm,âá·W§EÌó?öË¥+u +Ã1dƈ3¦Î™1bqQADà ˆ䂈UñJù·Ó¦iš&mÐRû­µß‰éNvö%¶ñ$’zÏ-í dŒM¿hðlåÄæñYùB&d._ë”2\Úf׆÷i¥àúIêõ÷+ø¬ãÃIœ‚rÖÌ`EÞ.fT°CHêû蟆§À”ô"ÏU‚pº‹Ýƒ‚©JíÀ +Cx³×«'òJ'(~í—:¬n.T<ª÷zº§ú?þÏý=}àI"<ã§O":¼1k`u,WîÒ/ᙑ=´?æöhdEá†Á¸Ó÷ÏÀ> + ž§'‘ÔfVpßD{êV¼­9Ù)SOÂç±¼v ýãVBòË­㦻”×+ö+Ð? Ÿ0wé!Ež«á´mÖÙñVaG¡P¨˜õM‚'‰púaÞÀu,»pÆC0‹$³„|w¡ÈŒà›ó{^rÖî»ül…„ÔÍ3@ê"Í,t‚©´2E‘à}Ó‹ÞBàxÊrüo~'Y½b¿ÄgŸwù!q’Ÿ« ánÖn"ŽïB„£P¨äô]‚'ˆpö±Î{—ÊŸK —ÒOý%Üõ칎u}ž"Â3ŒºdíÚ}h³+bHÈè¢5 £,d +¾3¶¦M1J~aø~Èêû%{Žò q—§ˆs•ìBh]P¥v`!ÂQ(Tbú6Áá%C>õì2·9‚QmÆyŠ÷X0hN\µ\8†…ÔËÓGê¬a”"'jÓ<…¥/å.¤´úÙHн¿-‘˜²zÅ~‰Ï:>œSÒCâq®a=ˆ8¾CŽB¡’Ò÷ þË7y4.»µRѹ¤†|ê',ßeŽ,=òh©Fx×ðËQ‡ ÉÓõH½†ç†ÞD7a6¡M"°¶ñì·ú¡Gz1s +÷£PZ¯Ø/áYˇ¯_˜’’©{®a=Pß…G¡P éOÂgî­…psU³ç†ôYðS•ÈÊ<™DRÏ º^câŒZ¡M²ë\¬PbÉŸI«á³*ëûåÖóá$L)I÷\e=Syj"…B%£Ÿ<5ŸeaXlu:–6ÂMsqš!ù·'5ÂÛ@š §MdHUžžDRÝ5:ÀµÌ:¬I¶WÐ +0+xSX³p +笪zM±_þg]N¾)ù!iŸ«¬#º*µ +ŽB¡Ñž„¯áK_\ئåÇaÄØ«·Þœ˜RxHEžœDR]*ëL8õÅŒ|)w¥œëû +!»lœ%YßN²ziÕ\¿üÏú>ò)é!éŸ+•xlùðr&D8 +…JB?#xZ>bß÷=WÁœa4ì‘á§ÈŠ<9 ¤¾4ÜèZÀõ‚˜‘/å†a”‚V’ôŠ=u)Ú.)ÊCëuåõËÿ¼lJzHúçJå3Ò„¥v !ÂQ(Tú!ÁÓ‚p˜/RÓ¾7Û®ï Ï Èž£`J!!yrò“z $3fú}ɽ‚gt¼ÉÆi°¸õÙS<ñYõ2µ½Âùç½|$SÒCÒ?W*0e)óÍMŽö 4µÃ(„_o·ƒo;×ï·ÛëÓA¡P ë§O Â[Þ¥´¿/Âá.Zq—I#Ú—^Aá!yrò‘zL@ÝÚcbˆ® ;Bp#¿dEQð +ɯéxè®!¬sk1‡ y½L¬_Âó>>’)é!éŸ+ßV_hj‡Q2ßZÖãw}/>78Î|P(T¢ú1ÁÓ‚pøZg¦¶¥eh"¼Eï›#ÃhÛ#¦ˆr{m¸è[ö7‘!yr‼h“Ž6ú¦Ù€‡U I†‘³sg3ý…Œ`IÑ)dèý + •×ì(ËŠ´¤^±_þiøp +LIIÿ\ùdm—©×IjVúþoï׎Býõs‚§áKø\ç.‹~ÉÐExÞÈ·'“Énhç®F>ôùîðôDô1bæ;#pè9û‡‡Täɉ¹P"ÊÚ46: ᤎv I²þO¿FþŽƒ­ÕH!'ýq§BXGlrÄÚºì624é`½b¿‚ý‹öᘒ’þ¹z=(Òd½HR;°Rð+xyoÊåêEœù P¨ÁÓ‚póÒpÕ-é!¼Á<kÎc^ô­O N«Èª<=­ø Â0z‡p` ‘ 6i˜¡~™!gUrÄX¶(2cn!¯WìW°Ñ>œSÒCÒ?W¯Úóa=ßaeÇ9øü„?ZÖ6Ö\P(T²ŠƒàI!¼Ë}¬+R4^æâMÉüÊïÄ{OÝ|W J»ƒ+ýÐ7D[㜠††FHežžŽ<”¶':+ !”á¿ÙÚD›lÏâŒ[ç/ä2ëlžmsÆÍ)5¶ÖŠzÅ~IúéÃ#NIIÿ\½j;ÁHR;°RppÇš +…JT±<)„o&vc\M&.fÌÙdê-éw†+{~*8ñÞæt¾ì“N§3òap:êt¦A7p¿ÓéO=CHHuž\° ‘%db6áé3÷¤—R¨j¼ö¬ÒBºq`ûépô/êûì_´©šR’î¹²¹ üÃÎka*Ú!•z„XÖm¬¹ P¨$Á“B8JCà¥õKJ=Âw–ug*(*IÅDpDxŠ„OtÞìÕES½×ëiØÀt\~Üë5•Á.„`Öw.nDuæÅ>²ÊÒ P( ÅEpDxŠ„O¾µvÇåãÇx}>ïù‰‹Wûzÿn«?|Ós“GxóÉ^÷9¯^<¾‘¹ÝöÚy®~±÷÷ƒ[öÌý øàÎ×òÜbΞ>É^¶uðN–¼ð?&5(;€B¡tÁá)"<= +C8«9p)ºõî¡söV½‡ØÎ>©å«ç!üjç®›â=x¯ë£í˜{ýë¾è€sš›0>—oD‹¹þòbßÓáÇyH]ª P(ÅGpDxŠ„O">â¾Î_ÅØ-ô žÿõn (?ªJ[•Ü]wÏ÷oâ.Âëo·½Á݇õ †{! ·ó»íŽmò¼ø[ïÛí–_=[ÏÞ’U6þTmäC’¼{%ŸƒóGXòøð÷º@¡P:Š‘àˆð©‹O"0#°lÂpG/¡W0¼¶G Û­ÒFèjs»÷i¹CrÑ}u¶¹é Ñ`ëÕŽQ% ¾¥fÞ+«ÀÓ;gHVZg ´Podó~N";¿)žêtÁ@]—¼(JGqž"­ºÉoç€r…ð·c{8ðHúfYÿè‚{¸÷V¶*€{ëÜe þ(Ÿ=6‹zcëËU ñ'å¥áå'€±³pGÞí6¨7²‹q†/ÞOŠúÎu—Ö%ï +…ÒP¬G„£PE ü㘎ß-kn.Þ@Çðb](l-v¿-7¿8„ß˃‘õ=÷¡g1žÊÈy Æ&]G’´W–õUUoDÖÕ=÷gºàx¯¬KÞ +¥¡x ŽG¡$Š@8ƒÖ‹ á;öŠkµí“Ù¶®÷8Ëøê°ôÍúÁÉ^ßYÖ_ºÝ ŒÏèO!qÅœsŸ»¿d5È;€B¡¢3Áá(”Dºto«Ï@²ž«wçŽ+³=ñHdopw÷MI°-ƒ6â„“"œàô™:Õa|K³½Ùˆ+¦É!üÆE¸¬yP(T¤â&8"…’ho„¿ /Ö\a{åIÊ^¾¶¼\‚}rÁÊå{—¬r„ÿ…Õr¹nYodL2;S=d£(„Ëj@„£PßSìG„£Píððb])l¼3‡ðòÅ»½äýBæGõ€,³SÊå+˺#cÂîn‚Š¢.«Žúýò÷OÛgâ¸'lLll¬ìlL¼B„ÊPJ©›B·iÓoÿåÏɶdÉ: ˜öIï3$ÒIw§»½i'žà„p Ñ.ƺ0Ù€ÔßD$ áõúÕ÷ày¥&ƒ7ñìÞ÷ŸÃŠðú/ߨ×ÿx )¾¤ÚáZ „piå@pB8‰„(3Âÿ“ÑoÔl +µ•I½~ìõ_N•ýÏ”¹€ò?ÂŽðÛ€¼ÏþÛI@éÇú) ø<-Ð&„c5ÂI¤”Á á$¢Ìÿ)à ³Ã/yã²ú>’WŠå‡ï?ų߾Žp„_€ùü<<ÓQø“Hg´ áX „p)»r!8!œDB”á·¾ÿv–؈Ùnd£ñùKá,öb¸—ö3*sÂãgþ_?‡1N^}ÿòQœÕh±á$RfåCð÷†ðE£6ØÖú§µjðTûþw¶çÏ*3ÂÏÞ|ÿ!±µÁ‡î>žþö5„ƒé£b¸„ßøäÉ÷Ÿ£¡áêŸp¦K6þç„/ ©6!«N"eUN'wg ú–UÒ—qëŸÖäߧð¿³=V™ÎàùvÃÍŸ?m?àSŒ.ÿó9ÂÏ~÷ Ár®f{ð9zO¼ð„C€·ÿ5Lèû/œÄÆ@›ŽÖ@'‘²)/‚¿„·,Ë^³!| ën»þ-eGø àÒÿuûq8¼ýþ1ÛûØý¼½ý¿ž"„xÿ»‡ß^}ÿG"ÛÙl|~üòõ‘!ÿ‰› ¯¿²ðßCÏàþh#±á$R&åFðw‚ð*á°!| ën»þ-eGxýâ—ô¹z2Û>¾Eó×OŸ#„Ÿ¾‰M¿O“é.žÅâÛ°šþèÇ+Aò¡XBmD8V!œDÊ¢üþNÞ…"Vl°/ÂǵÚäK!ü/V„‚€ñ{¶^¿á$þ}sšb» +™øtQÿèûßÓ‡ᦗ¯'z¾“û×`ñõé26‚év¸+è³pü•EÜH*æ–>Dc áH ÆH$]9ü |5è;Á`_„·-«}Às¥Šþ+ á§Ãñd8”¡{2üôUµà¶áÍðœý¾ö“áç9n2å—«3År6¼Ä·ž‡âûÃÅp¸)\ÌùðBŒ/‡ò¶D ) ‘H åIðw‚p!BøÖÝvý[JC8‰D"m­\ NWE'"„“H¤C(_‚çð•ã Vg±Épw—ôY8ËÔ9§ÑÂY!Vsl. ᮳6m—… +fÝ{› áÉjéö)÷ͦ5æ‹¥[Hiý/hè5ÒDì¯@ÂI$Ò”3ÁsFø´Y`ñí–|Ý®ZflÌŒ·Wc†Z/¾¸Çef)vVè|j[Í`ÒhÆK-Á8™dHl®Ž%Ôy%V@­çf,Ž4ŸáIä\óFѲ +Ík á#Ëêò±S°*¦êõtûŽù¶¤“xnŲÑï'¬L{ +?+j^,]Ð3–Ñš°^›š¨ûZ„p‰´¿ò&x®_”í‘°Î +ÜXuqCìWŽ^ln…[*è\ Š ÖMžt¥”H¦ÇŽ%‚Ší˪°TЬ¹PÈÙ_7x¸8טï oóø8^NVkH·sá˜oFS°ÊWÊ´'HKx:¶sY +L+½&¼×xußÃ+ÿ‡?ü$éÿ\¹»·qsýà“I2“d—½4Çüc¾Èv‘°_H¸ç–í“ÉJP»dVΞ¸ìéÑë•݆é©ëHxóIzx¦‡+O[³Ü\¾ÖXf‹Ö<ºYáØ«\+,WHxå™äw-¾ÄêµþÃÿø2¿^ð¿šðè0°Ó‚h–e#\Åÿüöךè{tYéÚÊrù{žI|×âK”®ýãH8€wý~Áÿn£ÐßyGÓ˜»䆃½ç£gw}¡·Ë]ã{žwºÔ퇾K7LqÎúà#;Ù–ç. +NžäÏÞzçÜÕ6k—òEÕ-¬ø¹+}ë6>Wÿ*¬ÿÐfÍ^²Ã姗ûñƒË×ZºÍ˧îÅ‘Õ7x._[Z®x/ÕgŠ„w]÷…kÿ0àM(ø_Nø¿h^¨Ú¿Í4;÷ÕJxô$áÿà=Ÿ(8 —®Ú ü{óŸµÒ›íINÂà*8 ×¼ð»ôßö•Zg»Ò£“pøTÁIø›ô/Ñå§ïá×ôßÀí‰NÂàS'áoÚ¨éãÓ÷ðk¦J²=ñÑI8|ªà$µnú¯ÆöÅ9[ ë>VpŽZá~¼:ç¾õü߸—ßFÂ4õ¹‚“p@@Â4ôÁ‚“p@@Â4óÉ‚“p@@Â4òÑ‚“p@@Â4ñÙ‚“p@@Â4ðá‚“p@@¼öé‚“p@@¼ôñ‚“p@@¼òù‚“p@@¼Ђ‚“ðÿä2›n›ž{_6?·ùïÜš#ážkCÁIx3¡ïß„aO©aÓ)îE×L&“—pS¸Ã5“¾µà©Vœ„7³Pª÷¨ÿ,á5“Éä%Üîpͤo­‡„x¦'áÍLô[ò«Ã?KxÍd2y 7…;\3é[kÁ!ážhIÁIx3ký–îvk?ÜðÏžMÖ€¼„›Â®¹Ã·Ö‚CÂÔkKÁIx3÷­—ü–]*µtÃ?Kx6Yòn +w¸æßZ  P«5'áïú Ë‹%„Ã…;ÄÏpuÚSpþ.Þ $@œ„¿KNxðxrÉýbþ_—ð‹+žíûùÝt‰‹—®~7á×ë«õap²6œ„'Ž¹n•Z¤Û»xûØSsý±RŽ=#èqÞÓŸ ¹âçÙ@©þ<È%<™ÌØÌ\ƒUšçã¼oz —Õx‰“9o¸pqwS¸„×Üan­(ÜLÍøt“Ýiy}$H8Q« +N¾~ i 'z;­ÜX©MäJ9ÎiÃi†Ótä"Ì»OÏßf wÙ Ý|c»¹é{»(;ù1OGÏQiŠò†t‡É5Ùì£äNËëÃ!á$í*8 O âVkóJñö=){RÂítªÏLµuÆv o~̆•Y·¶˜+ó¥`PMøRGyµ?z“d¦O™l<Ï|)è]ÜÉv‰ùÒ,¡Ž¥)ÊÂ& ?÷ôør¿[õÜäåõáp‚–œ„§tÎFñÖɼ’e¼}Pªo>³.ݱxXÛèt‡³¬¯™»Îåðª7.“Ü‹N'Óßz¾ñ=û1ëmnv#Ð×-ÊKD{åî±6áÂÆá.ûìa¶®#¥æâúpH8€ª¶œ„§L¸ã~®Ì+éÇ£‹$‡OÞ;ÙM›Èò¤÷ƒ×&¾”p½ä¸púížn­Ýz6á7:¦hžð]¶ØEOs’Ö‡CÂT´®à$<ê¾{»5T½¾RñÏÓ~»g ?dÛÃòœƒìdÛðâ™G¥5wsΟ¬vÉèCß㢸XÓ„›KOé ¾•õóõ;„(k_ÁI¸£»63Ÿ7¥¦º‚žÙö•ê…fãÕo\í Ï-MyÕïöœ;^JøElå›1WÞ*K˜{G›&ܬõH7ñ£>Y¿óH8€’œ„;‡$×ús«ÿ›1/Éz“„Ÿ«/òœïf5ááDÍ/ÒÍÜä„o•êG›&ü¤¯ôSëø›À“õ;„(jcÁI¸s×/â¤?çJ]zû®·ÇJìÁ ÷«/r¯¿¸j£ÛÀ¼ýÉ!wÉm;ŸŽíŠ”p3GXmšð­*Ö¬ PÐÊ‚“ðÌ$N_ßüÐØvß“’ÿ4á›r~ËWÝçöýŽÉ9—Y®²BÂÏéðÛ _•>×GŠ„ÈkgÁIxfkk(µ°å›ÛêNâc?K¸>Üw;R£èºê™?ݹôõæxíyÞZNø)ãí„ëo?'”Ö‡CÂä´´à$ö³„ïóCr£èá™pŸÍ–Þ_íàMNø¾¾Ü/îP_9;[ ÓÖ‚“ðœ¡)ö4n§Îšoþõ‡ ?)7A}Âõw‡R‹äô¸Ûu _)5-Ž6M¸pw•õ‘!áœÖœ„çl”š„½8yºƒ?«g!Yî^$®;ÖQ$@ª½'á9&Âû$’¥F:ëäPH½5qW¼Hx4Ö³„îÔÚ„o•šéµ>;Ù宆IÃzûRœBH¸|‡ã'™NÖ7q¯;§cH8€D‹ NÂóúJ ’«e·ýäHÈ,®Ñë„ë/ja·Öªšðõ.Þ'Jm"[è^%\õípÐs©}–pù/æVÉèm +ëÛsÒ/-GÂÄÚ\pž·´o#îÜĦ3=’Òdn¸=®–Åa9ááPN¶þVÎ+ ªáÆ÷ýãX§û¢÷o:уÃõº›ªBÂǦ¾ûÝ\ÃPçÒý ¯¹Ã…öNzAoO^^ßÆúß^á¿‚„°Z]pžw4/co{f{™ɵzn_Y¼û*áÑm¨먒ð…röÀÁío§¹„{n¼w,ßðš;|,UÎ]ZKÂS$€Ñî‚“ð¼°§_†o›ß²ê”ÙfLR¸( Gø"{ö@7²—O¯º/zq@§~röa`÷GA4‹+kOö¢`dÇÇ—ÊýT7êïðz0!/{Å)¯à)áwу y©$JS`ÁSÂgу y©ÏâçÁ{´©Ä‚K8|î^¡0E<%ü&z1!+ë„ÿ2xq€ö”Yð”ðwÑ‹ Y¹«ÏâWÁ“´¦Ð‚K8|n&áP’R ž~½˜•uÂ<:@KŠ-¸„Ãç®ë³x¼:@;Ê-xJøëèÅ„¬\Ögñ»àÙZQpÁSÂ_F/&då¼>‹?ïІ’ ž¾½˜•“ú,¾  E|ÓðeôdBNöë«økðò»+¼à)á·Ñ“ Y®¯âŸÁÓì¬ô‚§„_Eo&dd^Å/‚§ØYñO ?ÞLÈÈu}¿Þ`Wå<%|½™‘7õQü>x|€ à)á‡Ñ› ™ÖGñ§àõv3†‚§„W«èÑ„|Õ7ñ—àùv2Š‚o>MÈÆjRßÄ?‚÷ØÅH +ž~½šY}? Þ`c)xJø4z5!õIü6v€]Œ¦à)á{Ñ« Ù8®Oâϱì`<ß4|=›‰Õ¤¾ˆ¿Ç.°½1<%ü2z7!³ú ¾ ž `k£*xJøIônB&ÞÔñ"xƒ€m«à)á“UôpBŽêƒøcð[YÁ7 ŸE'da¹¾‡¿¯°Ñ<%ü"z9! ×õ9|¼BÀvÆWð”ðƒèå„,Lësx^Ow±¾…x¶ñ<%|²ˆžOˆvð$áÿº¥àíXïÖUô|B°Yõ$áÀ`Œºà)áGÑû ÁNSÁ?$ü_ÿ:õ_oKú÷¸‰P5¯ ÇÈ ¾iøqô‚B¨3 ‡}ÁS«yô„B ÅdSðïþtKÁ[µÞ®iô†B óê!á@ǼUi¼æÑ# +a‡¾(x»Öë5^Qs^I8ôEÁÛ•æk=£d1Qpè‚·l½_Óè… ç•„Co¼eiÀfÑC +!‡þ(xËRÂVÑS +¦•„C¼miÂ.£§¼Wpè“‚·n½a“Eô˜BïV‡}RðÖ¥;^SèÝ[‡^)xûҌ͢çz¶˜(8ôJÁÛ—~´ŠTè×´’pè•‚w Ùeô B¯Þ+8ôLÁ»°^²É]ô¤B–=Sð.¤);\E*ôgªàÐ7ïD³³èQ…Þ\*8ôNÁ;‘Ö¬z=«Ð“Û‰„Cï¼iÎ&wÑà +½X(8ôOÁ;’íp=­Ð‡©‚CïJš´³èi…\V¼+›M»ŠWèÜíDÁ!‚‚wfÓð÷Ñó +»ßWp¡àÝI³6¹XèÔâ@Á!†‚w( ÛÞ]ôÄB‡–G•„C ïRZ¶ƒû葅άN¢(x—6Ûv´ŒžYèÊTÁ!Œ‚wj³nÇ«è…nœ)8ÄQðnmöíDÃ)Ò…‚C ïØC×Ñ[ í;Spˆ¤à]ÛlÜ‘†SšÕ©‚C(ïÜfåî£ZµpÈ’‚yñÛè†uÿZÀ!W +åIëã›è†Fó³§5úh€)xœ§Û¸~=Öð‰û·‡9SðHO÷±:¼\DO6Éêäz=ÜP»9›8dOÁÃ}\ñ—oÞË8¡nßü(2¥àød/eœ0·oO&Ÿ¾Çèû~Œ‚gáÓÑüñéÅõmôž3"wï/ÎŽ?Ë·~CÎ<ŸWüƒƒã7—³Ùì.zÞ)ÖâÃûzwqrÔøþ¢ø2ÏHãŠ>Ú{ùåïð,G_þ}ÀORð¼ô3Þð¢ø +žŸèõfä¢øZ +ž§èg¤¢>ð +žµèAg<¢ß:ð| +ƒ¤à0H +ƒ¤à0H +ƒ¤à0H +ƒ¤à0H +ƒ¤à0Hëv+8 Í«G +¢à0H +ƒ¤à0H +ƒôêÕ†çÕ+€Rp$€ARp$€ARp¾g¿~žšH8sòÈ7o\=/îR»[– "888F +É_¾M:‰ùM'y“·{ò< Ó¡Ó4äûˆé±/ÇÓ§±¯ÃÓ’†@=-i8P’p €â¹O¸†@á$ ÿ§†@áÜ'\àp’„k8Ï}Â5 +§žp €¢I®áP0õ„ÿ[à`ê ¿ÿGàHZ ×p(’_ ×p(¶„k8G{Â5 +£#áEÑ™p €‚èJ¸†@1t'\àz®áP½ ×p(€> ×pÈ¿~ ×pȽ¾ ×pÈ»þ ×pȹ ×pÈ·A ×pȵ ×pȳÁ ×pȱ! ×pȯa ×pÈ­¡ ×pÈ«á ×pÈ©®áO%\à —L¸†@=œp €Êp €üÉ’p €ÜÉ”p €¼É–p €œÉ˜p Ÿ¹˜µØ?ôÀh²&\Ãg&öŒ3÷b¿€Œ2'\Ãg ötCKì7ð°ì ×ð)‹=ÙÐ-ö{n„„køôÄžj ö[b”„køtôŸÎÇ«»‰·Ç‰óÿÁ´TîÄÞÝÿ°={¢âP,#%\ç g0—VÛ=þ{Ø™K§Ço^­.‹8Äh ×ðÀº§ryóí—Ø+ÎÜ;?xùXÅ¡FL¸†‡Ô¹‘‹/þø{»¡áË»Íe‡œ5áLÇ<.¿ú{³¡Ëé›Ç"y6rÂ5<Œöe\Ü<Ž=ÖÐק—K"¹5zÂ5<€öU|ñ.öLÃÇ›‹"ù4FÂ5|Rmƒ¸ôæ<öBÃ*o—Eòhœ„kødÚ^‰½ÎÅÁŠˆCþŒ•p ŸÀ¯!\pŠ£=â±ßD@j¼„kø¸Úþ6ö&ÃHŽWEòeÌ„køxZ øh·{aTï–4òdÜ„kø8Zû÷ì4öÃÎ_-ˆ8äÇØ ×𑵶oé}ì%†1}z¢áã'\ÃGÔ¾G¯*±gÆ÷vIÃ!'&H¸†¤9{O>Åž`˜Èù悈C.L’p Ï®µy¯bï/LìÝ¢†CL”p Ϫ9x‹ïc/ðiEÃ!&K¸†gÓœ»Õ/±§‚¨¼Ôpˆo„kxͱ۽»ÌÁ¢†Cl“&\ÃÖXº¥ãØ£ ®h8D6qÂ5ü![>=¹Ôù³‡¨&O¸†×¹•ó؃ UÖ4¢ +p ¦1qÏœ¿¡M ‡˜B$\Ãk Ü‹Jì­…iØ•pˆ(HÂ5|ƾmÆZ˜’?4â “p ﯱn»±g¦æÝ# ‡X%\Ãûiü·Ø# SôvAÃ!’P ×ð^e{{baªÞh8D,áÞ­±kÏ*±¦ë•†Cá®á]ÒU[9½¯0m›QL¸†wH7mYÁùû«<“pˆ!dÂ5¼M:iK§±Çf ²¢áAЄkxK:h DZ§fât±OÃÿLW)hÂ5¼)ݳÝØà +3r°ÐÛð`» .ážJ×l5ö¬Â̼”pˆ#`Â5ü^:fK_b¯*ÌLåIOÓ)ø0]a®áÍ‚/ÇU˜¡ÓÅÜ`  ×ðFÂwcO*ÌÔAß„ÿ˜®° Ÿû†§C¶{PaÆ^v5<쮳1ç ¯ÏØ£ÓØ{ +3VYêlxì!Æ2× OWl7öœÂÌH8üÌqÃÓ[®Ä^S˜½µŽ†Çž!`LóÛðtÃÞÇÞRˆàôQ¾]>ÚˆõÚ”J{{ë]Më[²óg¹|ØýbÅ÷ŸÒymxZðµØS +Qì.´5<Öøü¨Õʱ^›RéªV»èzh:ß’çŸë?g·áÏ<¹ÿ)Ó†×ìÑ—ØK +QT·5|è@$>µ…Ýž›¬ãظ†Ã½½ç£(ïmºÖ~®j·F=’'ÕÞ„gþ–Œä²±º¥@÷l:·wÀY§sKBšË†§ûõ{ì!…HÞgLøëŽ÷ÍVÐéÉ:Ží×p}²>ÚŸ×{ÏÄVröï#É•Y%|'¹Õý½—îÙtnï ³æ?ásÙðú|­Tbï(IJö«áÃÖá°ã}'á×ð³<â›×á.ù°|Ôú`ý.ùÅ¡ï³™èC›U¿&߃çé‡AîYÀÛÛÿ¬7½ ŸÃ†§ëu{E!šÙ^n: ;<£$<½€ëúÛ÷j=óoÉ.×î6‚]rr¶½ÖNªÕýþO|d¢ lV ¿¬ÕΚ¹gánoÿ³vÜô"$|þ^¯•Ø# +­eNø´vg”„7>\ÿzÁÕìÖ¯’/C]ñT‹:óœU¿×jù›²Zá>o Oÿþx{C!¢ ͆›†œ%¼Túëg­õiY<¿øyë-IøX’ïÀað“NS­x Ÿ³†×§k©{C!¦µB&¼´uW«Ýmd?p‘|¼ârïÕ$|t5 Ÿyjxú×Ç›Ø +Q}\h4¼mÖϪå?ÛèŸðç–«·?ª'Íþª~MþÒÝÿöã¦Z^¯?ã°ú³zÖ~¦íWÕÚuµüºõHû8öœqð5œ%ÿýœýÀQ­·‚éå¾¾¸þyUn?Ö{õgnœÝÜV÷K'årr®‹rb'=ö­õÄõ£³ê]õb¿ùY##¾PòÌï·—å­ÆcÝ/X*íUooª'[¥nÙN˜>õäòæúóþ„ï|MÎõm¿ýÀ€ïxŸÓw=3ý.“/á(ã={èÛÐy’>?8ƒnÒaõ²õ5U/¶=þmç×Y»ozã–œ\Ýt}¡y3G ¯×R%ö‚B\k= ß¿­¿C®[ëÖ?áÛßo¥Ÿ5Ivnkãªñ`²|¯¤·±}Ýzÿ}]ÿõIåglÓu wµÚ÷ì>$o—:Ý_îúE-Û5níÜÜ?TÝjÛr×õ7n\­öc§ãÈh/Ô|æ]zz^pý²ñ¿»öß²Ÿ°î¨ñÄÿ³_~?®ÜTß"„ŠD/¨¤O塨Ïó„†Ü\rCÒæ¦iÈMÓÑîݦQ²“Ÿã¿œcÏ/ÿ8Oízvö|V³ãññ±ýýÆ›ÐbáMöÅ­4Zq,¼öeWšCÍ5s”!plë"ÐpÈ?’ʶ™QÑ*cmÏÇÃ…p}é[? Â3ß]¥^hÀ,?"I_~¥KÅô /±PÚLæAçFǼ÷)'ùó&mïð.쟤>’#%ô¸žvj7€p'¡FæÚ_h¹-Ça:±¸#iÈBÍÿ¶l9)- 4(¿7Vc@ð\¸œò~+e:uª©î¨…¯|mÇÂë_†åÎõÖÌU†À±ql‹”îŠ^ú8áCÅ³Ø iT¬Êkd¢Mä¹x¸­Ÿüà[? Â7ŸªÞ+Œ—írÓC,œ_vcî”âº&nP\ç@Lo{Á«é6a§E'œÀ«¤›††—â#®XiŸR‰±ˆzK–^›j5p±6~¤énAwÊ¡¸ô¢9‚ÓmG£hôG#hXŒ5ÿ¼>ŽÃ œîµ»æEë¬ûA/‚—{ñNfu_ãü\0ó®Y7èoD 6=%_[Å‘ðæ—=1‡k˜B¯Þš9ËP½q¬‹_³Â‚ù½<6<ßI UfæD›É3ñp![/}«'AxçKÕÂ¥{Qê„já«LòqÃÝŠ®sgÑ'’wz=„§ëôËenÌ\u3m-”‹(¡ç0…ÿgõš»zDžc’úS,vW™cñ À?#9JÚ¿C6FtPZ.(û’ÿ#®‹ÕÔ©Ö÷ÜOs>3ÌÂÍ|m7ã•Ì«¢¬Œ}ÍÜe¨Ú8öEcÞIñ–ÅóL‰jT+L3y.Të꿾Փ ¼ó.= ùùßIÇ$“7a†qŽ2~}ÊE–?ç—«$7®sÇ^ú\jfɦ0Ž\3шºSóü* +ö†ƒÒ Sä;ÐÚ•eŸc˜…Yù“Gm¹p lä\y@XÍ…1•ËòåÍ.¢Á‚ánäk«8Þ¬$C,¼bÍl“YŸbÃU-Ì( ùC`_»jz•±Â4”çàáB´>ô-žÑþ¡Xx"“\/3/—²-Ÿ3y»Í^X)Ψ.2·¹vš‰F”кϲŽ• Ç"tRº\Î ÑWrkQž]W¯vÀã….òuU¼ W’]fáî286Že‘8'1ìR$½‡"÷k} ´ÊÊD›M«=\8øÕoå$ˆfð‚Ÿ‡?gG¿“j;Ï +50-|'»@ŽËÂû —‡©xŒ ]F#Jh9„§½â¿ôÉeá –Ûô7]—±ˆx!ïÎ64}†;U&ðS–_<«s òo6rÑ‚äÓ¬Ãëš…_>äҀἓ>tÀåòt.¿sNiªü§MÕÂŒ‹|]—£•dˆ…Û׬F*6Ž}‘R`gœö,•Çð3%Ô£âUV'Ú|ZêáÂÁ?ñ­šÑ^ñ#ñ[« >€WçYz?[ïÄ;—…s¿Xò¾~ u]Æ"j9D‚»3ï¾ ë4ÝA“ŽQ8Û‚a”äwMGŽ)¼iÑ §C¥m!ò£“iá$9…4à<@|çœÏôÒ€<Õ=,õVåŒZ8ä¹)_WÅ¥ðh%báö5«Q†Šc_¤îìyÔ(Îƈj©rð´,¼¥.,üµoÕ$ˆÆð†‰ŸYu±p~{’XRC—…wA§Ù)æ׈.#µJÎËz Ê? 5"Œ¼=æý’iP'GÁ ë)ma\fq ÕÂï1äÒ€}1ÉX„Ëøâ€á]‘éjŽZøä¬ç몸œ/VI†Y¸uÍj”¡bãØ)#.Ê| $5K•ƒ'fáíôpaáßøVM‚h 7âLüÝ&˜…ÃCq¢ŽñÆeáÁ03²ó¸‡é²Qb$à}Ô©Ñ d‚¾ïÔˆ|änffÇA1­ê‹ô“¥Ö¶ÌÓØv•–û $;…4àÚºD—Ì¢$s¾Jˆ…÷ú»,ØP ªâJx¤’ õIëš¹ËPµqì‹$­ç¨\Š¤Ø6RTK•Ÿ˜…·ÑÃ…Z]}ï[5 ¢9¼àgâ¯6èEÑÂ|Ž£uÇÛeîJ“(* jEaÙ{ž¿žAÕ Ô:Š¦f'#¢Ì,J™Ž:õÔ¬aœ™Ú/•åÉ&Ž¯'rÏêÃÒ\„z[±‚÷˾Öë~ £hŒ Ø›C èg®Ð%GË-d +Ÿv¢H¿¨N£%Œ4…ng=¹¡²âJx³’P¥"V5s—¡rãT,&]ìIØ&QiôêŒÐ*+}´ÏÃ…ƒì[3 ¢A¼ä‡â¾ÅæqQ/umˆ ZçáÂÂÿé[3 ¢Aü›Š|kÍãBN<ÚæáÂÂ_ûÖL‚h_óCñ+ßRó¸…Ï„–y¸°ð¯|k&A4ˆoù¡xß·Ò<.dáÄs¡].,ü­oÍ$ˆñ=??ò-4 Y8ñlh•‡ ç[3 ¢I|ÈOÅß| Í£BN<ZäáÂÁ?ð­˜Ñ(>åÇâ/¾uæQ¹Žãq»"+íñpaáŸøVL‚hÿâÇâ÷¾e† ˆ¢5.,ü¥oÅ$ˆFñ~,>ò­2A<mñpaá_øVL‚hoø±øo‘!âÁh‰‡“…„Á[~,~í[c‚x8Úáá¿ò­˜Ñ(„…ÿ·Äñ€´ÂÃ……¿ñ­˜Ñ(¾# 'ˆÖÓþoÅ$ˆFqÃÅû¾† ˆ¥.,ü­oÅ$ˆFñŽ‹ŸúÖ‚ –§ïádáaÂÅ=« AÍ“÷paá7¾“ š…8¾Õ… ˆ‡æ©{8Y8A˜|XÓ»£Qçì—_‹ú°ÒÇÏÕóÊrYŠ R¤ """EQëŸÖ¼ò3IÛtÒL’ºëïìfÉ÷b·MÓÉÌd:ó…¶1+6“¯?þßÏ/fÞЇr-‹bý‡}*Öo‰NÔ(ÕÀ.þÿ?Ý0£¢~—þo$¯œŸ¾Ð5œ_ü‡5>Ÿ_̼¡ä:ÙËnZ}ÀJŸŠõ[¢õJ5l†K„ÿt¿ŒŠúeúÏH„—ª¹^yµÝ4ždãS&Ôc‹Ñ·Öú­"ƒ(GÃjüL×z¶­xS—¶~Û­·cý Ì¢Ôô‘ôý´‚fxDxT”©·>…é>ºg¯7Ñ=¶}o­_*:ˆ‡p[Ò>Á  l—‹|{ù®!‹~áfQêúšááQQ¦ÞFxúâü6ºe¯7Ñ=FF×Å&5',:ˆ‡pK.? #çÏä»FúA„›E©ëo vÜpeU69<«ra5¨ÍeóÓ­¾¹ÝËw§ûóZ,“æ6=–ÇÞÚôTà ˆ|Z<¡gJ­Ë‹Êå¦<ÍúñsƬ¹l·bw}^ +*cÞÝl ^ÀÞÆá7³½Þgõ^ iOè™ îG—ä_«/ݹìbz™!{ws‚ Úýöíå+VÊc‹ªK|fð—Ëð^«EGͺãCA2<"<*Ê”áõùÜ&¡ßÂ騄æy·i-&>KÙL»Î“OweåÄ&)ú`·Ús¶Öå ¬dse.ùÛ˜0ØKÌ%ÝÆr•ZþmÝ<·Ôî¦ïõ È|’žÐ3[­a¸=:.y¿"\¿g.ÑVl†!{w3éíÕV¿};¸b%í 7xEŒ(—á=®EWͺ+'…Èðˆð¨(S.„K>¬'lÖIÔòȳ(å=û.òT"N™š :OÙd%.Wº ãb–ç0k›ƒôç8a–â&Gµ>’Í Ä%Ï‹-m æBŸ>g†Û ¯í V“=}ÞelÞÚ˜wvUt>)Oè™&\Pži3u}uçR˜š±iÿGìæT܃½©ÍoïT¦ÎXI;™xc‘°d¤%F”‹Q>¸]5뮜P Ã#£¢L¹~.7“Wñ ~j™J»®‰&W¨ÉüÕ4Á€î¦› .¼+“jøØâ©ñêB®?®`OD²º,@¯[\guK¤¤îÎtŒíøzt>)Oè™J¥zEº´S×km=#—]L;¸\è&Gí¦0¸î&¸3è)ä;VÊ„ÿ˜4—ŃQ.FÀÂ5ëŽ;…Çðˆð¨(S„‹³M{Øc[n úæÖÒÎxrwŒ‘m;ÓLŒFxÆû󎸞º×·º¢ø@D²º­[Pë ø,Åô÷ª·±3‚0óIybɼ¸ôJÄRÅ™P½<Áëo©™¼÷;ÚMŒpO©×I|±šv]²;cÊÅXC¸½fGÇýÛÃ#£¢L9^Òîæf ü'Ï„~óÐaEL>t£À›¶k¾ð]òa¬n@àXßæÊS…CD²ºÝ[ÕZ>}µ/äÊ}q5Õ‚ óIybɼҌ·¯aY¸N[ó7m=3—*&à×Q79j71Â=¤^'=ðÅjÚ‹çð‰>0¦\Œ€q-:jvtÜ¿^¡1<"<*Ê”᧎ B¥ð%|UeF¾Yà®]¨á{×ßFøuUafë^ßï +eÉã¶ÐE£Í•óK7çØ­0X˜Î'å‰%ó½í*àDvoÏŒew®õäRèܹ«4j71Â=¤^'=ðÆjع'cÊبEFlþ踿cxDxT”)µ~j"\ðN$KüJ’¯‹¢,Ÿ47ÁÆY‹p8=ËNu;H¬?ÚÒ`/ÛB@Ñ}ÿ€è./öœWòpWq¾ÑÑù¤<±d¾×¾=wÖ¼×ây +ɘ Ü$sÙº[2]cv#Ü“AêuÒo¬†ZË<50ª\†÷4ÂÍ÷ÇŽÂbxDxT”)Â5HOŽòËznº9³c­¾7Š›çnøm„Wƒ¯yK®äs…4ØËã¶ÐK!ZŽˆ¯fa0¶€ÿ9 ¤º1:Ÿ”'–Ì÷šsÉëL<‚•*Zsþ:OæRˆ@ø˜ÝÄ÷dзÊ_¬¦c1c`T¹ ïi„›ï‹;(Åðˆð¨(S„?=„œä·u›È»ü%nÄ…>x‰vxÕGÇ"ºøµ@J©õ‘¼®X ×µ¸ JøáUsuo|¸ ŒÑù¤<±d©’ìØI¢‚…¹dâ~è<™K!ácv#Ü“Aßœ]±v¸á#ËE¿·"\ß|OÜ)$†G„GE™r ü†û)‰pÆ&…8#ÉÖ:ƒ«ÇJŽ47ÁÆQ‹ðîóXh}$¿+Vƒ£Ü6n±›N/°Z'’±+3"Ÿ”'–Ì#eXðh*)St ×=#s)D"Ü¿›áî zw@yàŽ•²fÚ$c`t¹à{áÆæ{*'4Äðˆð¨(S„Ÿûƒ¤ጥWøº2¸8@³m$nVvr{°®œ-=H­äwÅar{gŽ–š…«¢ÈÜY°¼ù0"Ÿ”'–Ì#-8¥É‹ßáz I6ç¼2œ's)dA¸o71ÂÝôî€òÀ+e§Äoo”KO#ܨYOå§peÊphŸ¯CìnC8ðM3£;žh][2ÞÀƒðîøÚƒÁ‡­uë#Ù\éýv¸=7Ý:3Uv&àö½–l?"u¯Ñù¤<±dI½Ì/SppRô³<¹²"ܽ›áî zw@yàŽ•²£ežx§\Ô=®EGÍz*'<Ãðˆð¨(S„ÃIO`Ï­g·¦"Šp×VM_4ë‰n‚@xÕ¿Ð W–¶t3ns¥÷ÛiPwûhº-´DÙ«Ô“öz-˜QäTf>)O,™Ç‚Ãà©hß„¬u‹Áz–\ +ÙîÜMŒpw½; Šû‹#ëëuzu'ÉÂ<9u8>Š/.²n%1P8@ Ÿ‡ÂÁGáüàwÖ­$ +ˆäÒáP8ø( p@ȣápðQ@á€"‘C‡ï˜ÂŸn7duç{ž#j-B:¥ÄaUÒ-@7ì&ùsøn)¼~°1²î}ÿ€Âsƒþh=í‹Ä3JÉôÀŽ’;‡ï”Â_7WøiÖÍïPx ]ô>7Ðaì<î‰ëÍ]…Gt¶1vŒ¼9|§~·¹Áwç&‹ Â¸é§:ÔX¼ÑlôÆ‰ë¹ +è mcì9søNÙío…²î~ï€Â”V”¾Û‡Ò-©'ó3¸ÀR:×Ì÷ë¹ +h=mcìùrøN)üw…?eÝýÞ…éFÓ>b^C=W˜ánĘҗD^=WáQ­§l €$Wß)…ÿM£ðAÖÝïPx44™ÂS2¥´¿Y¤§pŸm6À.’'‡ï”ÂïSü0ëæ?…_§öÍ^ÜgÝÉ?(\ýT…/)íl …&Gß)…ÿ;Ú\áçY÷þÜy·{’u+ÿ pôSN¡p¶I~¾[ +ÿ{²©ÁO²îý3øíßpÖ­ü+²Â/Æbnô+îyµ71è»A®¼mc¨kÚÕhº“ +7úfNé½aÔä ‚3œ@§z4OHK_SMÈ5f©ºQÝ2JÝceŒšB£œÂ#ZçÓ[ÄXÌŒ~9z¡(¹qx^¶ûtÔ}[ÜfÝK–@áÛB¥ðÒØyxV-ë¼úî=NÃ’3‡©¯R9ÓÚš?Ê„Xáž?"Mšá™TÓÊ÷ÊìJSVsæs¹¢ºÕ´æÂMZêTU§Î…¥ÛAp¡(yqx^¶ût@á6Pø¶P)Ü`ÏÍ»a0é ÍÓÒÒ|æ†%ÁgS[mê=e]” ¯Ä==i‚à ΔMkòÒúëÙS^ÍF÷S-£ºÕ^üI ¡^à@ÑXÛL<3Þ¹¼… HäÄáyÙîÓ…Û@áÛB¡ðs¡õªÚ4,{±7Ó±õÞi½ßÖìILmÌ\£ªV!lpªy£fHµÑ`ƒ½#"A`†oÊòŠ½Óöª,ÈR敪šCÅÊõÈRU¢º­±ÃyS×ô6û! Ô (3Jì ôææ .…"ÏËvŸ(Ü +ß +…˜…¾#BKcŽ¬˜Úèªm_f‡MoÔ¹ÎÆÊâ /ùqéx»¶ôl-¯æÃÆ:ªb¥³²}HfB½ðADcCJ'ÎؘýJ0?C @¡È…Ãó²Ý§ +·Â·…BáÌw½ˆGš vd™RuLª3Uö½Q™e 䦬Q®x—´Õ|(§pI±¦—(X/¶ÂÍÆÜßæqES.E ÏËvŸ(Ü +ß +…¿P:Õ#/öSÛ‹;ÊT6ôFÕ +÷ÈMÉ®/¼Ú¥•[D^͇JîcsñRb…÷)xƒKû…b¡(9px^¶ût@á6Pø¶P(¼Å£&½Dx…w”½íŽƒ£T®p²FácJGþ쉛X^͇Jî› +Y…„q>ä~D˜ùzšr¡(Ù;úA,ñTQ͇Š +[ +Y…„qþNéÜpYú?8‚ @±ÈÜáyÙîÓ…Û@áÛB¥p}h=:ó®;P.½j#…KÈM¹¢´ë‡JWŠj>”Wx¸;艉¾ì+=éBP8²vx^¶ût@á6Pø¶P)\Ój#ëáy/[g•%*ƒ{¯M¦pY©)uTøBQ͇r +—£éÎ~LGI¶PŒž—í>P¸ ¾-Ô +×´21_e-VÙѬm’.M 7%ŸVÓØKîDQ͇ú +—cá/b@b…¿Sú¬jÁ-…$[‡çe»OGb…ßÖë?ÎÏONÎõ¿ƒMŠ>_;?>8:ÿ~~w]¿4Kœ­×oWyþewyz~þ_ýúa}À¦ +O\H}|r~Q¿~âÆ‹¬pM+MØãSc/̉ÎKçf +—&›Ò ôÍoaâª7ÂeÅXÖ±XáoBcÞBPL2uø*üîúü È—Ë;eÌÓÅ¡9íèÒÓðÃ%þõI3øiùX?¾ÉקÁ&¿G4ùôÕI÷ÅŸ(ô'úÞ’ðüK\Íó߯î¥b+\ÓW”vÙçÔM¤ð¶{]š@˜á)]èî`™5ÐSTóá.+&dÊnŒåš«º¸ @AÉÒáû¦ðûË€V=NUžùêκ¶Ï_/Á¡ˆçG…Î" +ÞœH§ÿ’Mÿ$ 3&-âá"zè¬QÑ®½ÛfòDj½âÆTø—ª<0à lñþd“—eE5Ná²b]>kEH(Q¸´±&KÑ +–uy‡ÂA±ÉÐáÖV•õ~™š¸ +ÿ}¦²Üqô»§'ɺuú|o=xç¿þˆú¥äYVî.ºÏ³p“ƒ8un¤÷•¬Pˆkù]ž=XWý")\ï–샳aM³5¶Gil…³ 7÷º40Ãœ2m×ì±–oã +—Ó™•çûpH+šZáòÆÆ”Î*ÞpE¶P–ìnmUYï—©‰§ð›ã5š;ü**ü)üæú$LPþT¸{þ¦Œøo˜ÿ§ŽìÖ’ +}—‡×æuÿ¼H +¿¢‹^™}V fS]³^fiŸ}ÖÞh|…›s{%½}•@˜á¶ØèŠ44½aF-tU5ê+\Z¬Ç—šÖè1™¯S¸¼±š•Â\­9\Nd @qÉÌáÖV•õ~™š8 +\ÄÝeD° p‰ÁE…ßÅ(Ùï½$½Ài@­·qêÔÃ7•¸P \u—¯EUxÕ|l–ÆÜüh˜å…)SÃü+“µ\á5çù#Q „\à#÷ðΪšªšõ.-¦~Ò¹®©Ñ±WÆÊü0d @ÉÊáÖV•õ~™š8 +|e½¬þ>8•Äñ +ÿ{«”ÍC°”ÒŒ6_žÄˆ8uÂ7–¼P’ð³AAn:ÒfÞ²®æöù²Y‰­pëÅ—ÑJ Îà ·þÐ{µM ðˆb}7é¸,$”(<ª±«™·«Ø+Z( +LF·¶ª¬÷ËÔÄPø¯8ž;88¼“Fs +½Åq®{X¯F®^ðE7–ÿOµ>Ç)t¼¥ +ñ<­»ËS®­B)\«tß Ãvü‘Îȵ)Ïžê´àAáĆÈ…OR‰ì?ÃÌP`„Ý +?Ò9󹥧Œp‡KŒè©XЈÉÈ1² +W-D½ð°6|Z…G¢vxlþ:e}÷2x†#êRxŠgðW"¯+<#òóN1Iâà o~J¾Þ¨¤ÂU ]S[QgŽ®ƒÂˆ#;<> +÷¡#t£SáIn‘–crÂL fôj­‡ciöàu”Hž’ +W-tBÊdfìáN‡ƒÂˆ Ñ:¾eL¦x£N…÷¸³ŒpN–0Ä UO,-Q€zH{ƒ’ +W,DÞS‰!o8¥yP8ñ!R‡ƒÂ·P^bÇ¡ðbè;aŠ2ü±)Χíš;Ò‡î Ê)\µUåˆ;|Fo(€Ø¥ÃAá6ÇxŠŽ7Hû(=áOÒÇYMNß~%ª‹ú<ÂiOLN᪅ÈøD?|š…G"t8(܆Xº% +&×Rxýº!m'$Ý‘;õ)°œÂU ‘ñ‰©`¼ + –DçpP¸Í žâÔ¤^MRÅiwœ ¬p÷®㥄}vp^ΓR¸j¡ )r,œ@<‰Ìá pb_†¤‰ÂÓ¢Ï׺_SœpäŠý–„}^㼤'&¥pÕBäz¢%œ@L‰Êá pI…‹­E²Æ8!ëŠÔ%KŒš–R¸j¡ŽìfƒÂˆ+9nˆÂ‰C{ì„Nȹ"Yé K—€Ä”_^pOU p + ¶DãpP¸M +⼂_§î*d ×Â:IÔÝ1)…«"¯iáxP81&‡ƒÂmQøç%g¬ø,ƒúÎÈ„,¡ÚQ'‰c÷ô2 +W.”Æ—9¯)6 pbL­ÂGƒÖIA„„©OÔ+Ü#UtgDOìŽg­2 +W.D.×Å{AAáÄ.>î÷…Ý®÷ )‘°TÞĉé©7:%/ Wh¤jÖ52 +W-4#—}ö‚$‚ˆ!á;\|Üï ;(\ofü„¥¢ðIg–¼Ñ:)Òt…®wÕ*k­2 +W-¤“Ë p¡;\|Üï Ò +׫ÂRQ8méº;Ö'±äÄ£ì+{)…«z —ûâ­ ‰ pbIØ÷û‚¤Â§2WTø$I&Ê9;¥ìžhºÇõ¤}ŠI{ŠË(\µÐˆ\÷1³tâÄjû·~öž.>î÷9…䌥¤ð×>5S²þ`_Ö;)ZŠ3ÁdñŠQF᪅(…wÄ;!êô¯cµýÛÏ>ûO¸÷û‚”ÂIIc©)œÊ]sTm!N2ÎϨ~bG2Þ9¤®ZˆRxS¼$ΡÒí–ÿÒî÷…÷¼nÊZ„,¾®¦ðYÖSÈCÏ;Œ²/ÿ-Ä…«¢ÎØ(P¸/ï¦ùò—æQ|´NŒo…)¢h3dÄKø2Mí×›þa:<6 +¿KÒM–ú®„j@ +¯û¼Îv•ÂU éd|Aœy° +G£˜¥GÛè,jóí‘¡0…§ÍwóûV­«¨ïôÂVx¸ àvoÿ‡¯ºÝân­ÛP,GBtx\>ËP +Mµ¦ÞŒ€N’G‡5Žú¸ø”à#£pÕB”ÂÅ™‡ªð¶ã ª©<Ù{¤ð3´Vã¼{;W˜ÃÝf Íù©ØWÄÈ)<ä…©ßnúøã¾¼[àë±ìžÃã¢ð:¥Ð„•ŒÂ'i?Ý1>!<…«šRKgªÂ¯b©ðgÓ\ýÓ„¸Û,¯'6?¯´›½ð‚œÂ©…E×Ä.[èü^j;mµÄÐ…Ï’$£:c¦£pœ˜+0ž¬OÙ©Ûž¸„…+¢#›xx +×lî•žë=RøÜ4ŸTçð´yoç›_hO»ªÓGœÂ©…E×Ä.[Hþ‡?,¼—¥oèõÄ\UÔW3ÂrxLN¹í˜mð`>°ÓR“×ëcÀÓŽÀ·§Â"d®\(#QÄâÐc½G +ÿ4Mµ×•¼°ÍSøo4±«Â·?ËÏkòò;ú9ÿIßñ&$‡ÇDáDÁÉÎ(ç ×é\’εؽmÉâÌca 2 +W.T"EÆÂDP¸/{¤ð¥i^©Î +³‰*<Ÿ¿D÷Öî[&P\_.îÜuì ÇáñPø„Ä ¼9‚P8®“—ƣ­Vo4ºó[ÃiÂ;xW¤®Z¨IŠô„‰ p_öHá&(|Í!*<_[™æª"xA¿ÏvmÇáñPøXÂ&A(¼og•v]C¿úî£=s„Wh@Æ‹—y +/_=Úõ rÞ½ù\¼kEÿ«ûùâãñœ}7nß óÃÐÚøÊ¥ñŒ†·_>¿çZMvî FKüÜ-÷š†=×4í&Ðå^om<ý š^³ÍP¼ÐŒï/ã¾âìñüíkahe+ãÊXOôé>ß ãž±ΞVžßÆ9§ sæp³//\0…I|Ì›#…×í¬Î®+x}} =þ`ôÊ®|;«¢Þ‡ŽDyÔ¦ï³ÂÏ¿­壟C¦Â+ïö#õÕö»z³½öVôžÅül>—·×jå—ÍÅÕ¥Ü<ÜA¬–x¹x ubºÜòjÔô[É5>·//IjÍž‰,ÕþÚüÆ–çÛ!«‹¼Þžž-Ö— NAö˜MjÔòÊàšGÓ\ˆVç׎èv3¶}3¶¸þ‡+¨ÑOùÀ-úÝÈ»‚Ãã¡ð>‰Oxs¡ð’Õßuˆ®‘ùÁh‹Yç]h…fIR嚟6¦ÒöXáWö“²ÂgKáçKë¼]Òg(ïê~ú>¿ÜgqÙÊ]Ö{ÃÓö":ÚÏ>ñ ™y¸ƒ˜-qr1Er`,]îÖtÔtk]¿\Ïñe|P»€R» ;ë»x¾²¿mçB^3?ŒõÎ=;»çíi{3Á)HÁ^»IZáù7lí͵GÁ@¿v„·Û»…ì›aãþ^¿¿•¥èeiUôì Að‡Â©ø”7G +Ï +¦ð¥@šÿ`øJṪ*‘ñ%n’~D²öXá5l +óÃ>´ +_¬¬n‘äkÖáÛ]½@?W•|ãÍšÖy£¯©¹õÝe}9žm.¢³é祑¯i¦ýQä3o»%v.ÝV·‹Ýn·èr·¦kXÓߢé»x&c-ŽòÞ”Šf}ªåÛ뙯ÌïÛrñ]ZU컲´2Ï —°x{ŠD8ïvµ[NA{ œ& +¿ ûoÛYœ>íøÜnÖzoÆý?|þ¾ ¬[ñ¾çRîðØ)œ÷u:;R᩸qHš,ì>ÚB—²¦j¡d|rÂÉ™f ©fþ(¶ÂŸ¨gåbû2ŽŽÕåö”<[b ²¯¢O˜eÃúuÃ8‹ïm¬Ïà­‹ÖŸg«ËMý<—™‡3ˆÝ;× º~ør±òÖÓwñågÓ|ÏãásÜãÒºEësõËz™X{qóiûbÿðÂÛSòqÊ*H`/Ó¤CáE´ÏÛ¤GÔ³puâv|nwÞµ…ì›qÿ_Ú·×?p†º3o}@Š …SÒé³g˜QŸ¦?W8ù>ý‰ÃÓÊΣÞ ¯Ð”’3c¯þ³_.}©ó@fÅ’+vìܺgו?.Šª(x¼Tá¢VäöÉß´´išN’Öæ”×ãüçÔd&3“´ó×$DðŒðOæ[yð¾A§™Ù¾\ðµÈÈÿ‰ö}Ú‹GûÞàÜ‹7z£só«Õ•Ÿ‡j¡S4%Ø–ƒp}åÂw|ZÌó¡gºòrt~fÌ7϶O;›‰.TxOi.`@ƒ– J2„pÆ‹ Ö™£<¯ ¿…ÀASñ¤>õßoéÕ þ}iføï@x/˜?` žá'Ì*Ä?œ ¢Û­\“`…Ò_ ìF.׃ Fa‚ÿ`„¯˜oÅïš¡fæþ!ºê¡uâóG^{ K'<Ío£ÁQñ¥—á¿á Ú^€ùÁS ü1ÒNÍtt1p4TV1Ê3®Pšj•¡'ÐScð–Âûðƒ>c¾•gï !Ü|µÔõú]<úº^ÒA[‚p‹Åå¾yË(×à”`[N Âõ• #|Ìgæ]'™crÃœ»—dÐnrÁ{ +¤‚K'É>Œ}{;Vu°EŒ×†ÝBÁASñ¤î¿ûÊ O‹ëhpTieøï@ø”a +è{­Lƒði-'W¥R;³µÉX–eÈŸôŽjà|#X )ñOhRdü£¿z¾ìŸ‹ðWæ[ñ—ÓÌھܫÎWÀ÷ÏL<j¿`/®¶o-˶ç n^ýQÕ: œhÛ¡u»ã Âõ• #œ\2綯¥g"@ø­p‡Zäözi€’î)Κþ!O’><â¹ïÈÂC¡²:ØBýÚ„¶PpÐT<©ûþñª&Žû$¡µ`—Q1¥“á¿á,³®øÉK¤tÊçbh¯;½Gl"¥QáIÎr:=‹ÇÍ´®ØjvÂŒ9ŠüsÞ>•EÝûþø.g+¿=»"W½•x4Ô\^|<^Ò2„«Öà”@Û>ÍbÃáúÊ…¾àšO…^»Æs& _Š=…RÁ%È“¤Çdªc¸/Òª«:ØBuÜÜ +šŠ‡Ÿ}gõÄá‚ùPß“F†»­jÛý2µ”ï1<)\„¦&'Zr„Ë×sH ¶å \c¹0Â?Y\õˆnûÙ?>åžÂÙY y’ÁòäÝ! $W×ëxÕÁªã6Â[(8h*î®.ü‰3A~•,ªÑø¨$ÒÆp·Um»_¦–á½0s*æÍ``š»Ì¥_*„OŸØ5e:˜D'ç|¥R1‰ö*åðŒp“÷÷ÕÕ¨©,/ßþ 7ŒÎØ^|<0³(ÂIK} þúð.)ð轎@/þChã…R \¾ŽÀ N))Âõ• #ü-´R´1ÂÉO.xÝ +y*÷ÈÎ%È“ –ß'ùtŒöäqªƒ-TÇm„·PpÐTÜ;|Iþ¼‹=á ö£ñQ‰¤‹án«Úv¿L-5§5rj”òéÎÿZk`øp'®÷|˜˜óy§ ´§ðÊ÷¦ÿÂ#Š"|Ì^KöW^׃G PVttÆ÷âYpS \¾ŽÀ N))Âõ•Bøµ?J*ÿŠÄ‰p£ºâù¢ÜS8 \‚QþÖð´‡?˜Ÿi¤ØO‡à¿á—l÷$Ív¹/í0£Ïk¾3ÍöáòuNpJI®¯Ü ð"XÞõ¹äãÇE¸ñÉ#\¹§pÀÐl´y’Ìò·|Aƪê` Õqá-4Uè>ýZÓ=‹5A\ŸF@%“†»­jÛý2µb |:,ÉCȬá BK•ÄQA´HÙ(÷%dÞ‰mž.а(ñÙ} +íÚ¿ŽpçZ´lm/bÀ£¤-.Ý'§r½˜ðç}óäôiÂå눜à”"\_¹AàOç®êë\Cé_‡|Ž«ýúf NB·BA”{ + — M’YÞIhLVˆ[ÀBqÜ·…ðaP1ïpÕÙêgÂ8†@%”†»­jÛý2µâ |ú$¾7–œ;£„3oLÂSƒ ³QÅ-Œ 5®dpô”?e ø©ÒÓè¥!t2¹]ûçî\zVVÛ¨¶þº¨ÊFïÈóìvßh“–»ä[¡cø@þo½­U—®#r‚SJŠpmåzïêÕk÷r×",oÝ‹cg¼üàs„~º^Ü9‡6q­&ÛS8` ¸i’ìònØõ³4˜:Åqó[•ó[®>–NvïÕ8Ôä°ªG3@%”†»­jÛý2µb!|:\;ó¦ [䆓nè‡Ält®`kéìEœÃËàQœ@¦éM»Щ|ïÍÿ„»÷;__ÇÒÑê÷ù^¼¿p®íüûª@¸t!–Á”’"\[¹Aà–g³ùÓrŸWöÊùÏæs„î\ ×K{¾fæ<)÷HP‚,IvùK×®% ¦NGqÜ‘-„È×íšÕò!ÞDè»h¨¤ÒÀp·Um»_¦V7àÇPfw]O›É¡?põ€Z /¥îÓŽâ$›+ ldl-6od9†›´®þF éÓA>âU¾ ¿讉¢ÿå¦-øì „ím°UÕèëfhÕw–âzñéÜkžCÂåë ”#\W¹L໕njÓ/ڢ旼)„p? +µg¤ÚS8 +¸I’ìòUç:;“‹“Žô¸£[†§6À™U1zë«ä·Å'*©Ò3ÜmUÛî—éu±çR«Ôè) G'á;jå"¸fvË.íšÀÅóåÈËí˜àmÖ×n°®Ä/´z<¯Eù¸{Ð}RTè¦{¶Ëz•OFã4¦“n…uË°J16í)Â- ¸Ô;Ö›m?_·bŒ¶ÞmûaŸL[we$½òնǷdÒ²®7#—–EýO-«k¡’ЖM˲µ—lÛöO›jÇ"û`¿?´ÓËòíÈaô½§> MvL^º§pÀ%ˆ“ -ß±”Áb¥#}m…·> Oä8]]·ëñ&Âo=É÷Z•T©þ <‰&=³Yqtb^ÉЖ\7ÁVºðQÀ¼®tÁû3Ól¸¹6Lób æ}T¤Jó€8šæ F‘)M‡Ó¬Ï³;~ýüLÉŽB¡Pš”–á¿áO5Jæ+©Ý}€ð³ŒRC%"…Be¡” G„ëÓ‚¹8‘NòÔò(£ÜPÉ„G¡P™(ÃáúdÆó.µlf’*©á(*¥b8"\ŸÌW +Ë +µ43É •Tˆp +•‘Ò0®O»Ì÷ +Ë2µìf’*©á(*+¥`8"\ŸŠÌOrÃ5Ìõ²I •Pˆp +•™¾ÏpD¸>Ås7°e“*¡á(*;}›áˆp}*Q0ŸIí&ejXÉ(5TB!ÂQ(T†ú.ÃáúT¡d.Ndv'Ô.×Í*7T2!ÂQ(T–ú&ÃáúÔ Ð\“˜™Yþ%³äP‰„G¡P™ê{ G„ëS/`s®!‚ó úÜy¦ù¡â ŽB¡²Õ·Žר"CçbwX¼œ›Ì3DÅ"…Be¬ï0®Q'9V…æÍ(4=º9ȳùÇ-å‰R +ŽB¡²Ö7ŽרÉNŽS±Ò4=UŠÜ\¾·í|QB!ÂQ(TæJÎpD¸N=æy†‹…ÿý²iVÝFÂð.Ë첚_0?";­¦\ByjB.¡œ3! …1ßþåÓþ,YÝ–Äs’K¿‹{lKîn½2ý\ý‘Åg±X¯`†3ªÿ|Ëÿ*Äw©?÷Z†É¢ÿŒTñ4Iæíd…X‚8ú€ÏÚ”N}JÒ¯D¡ g„?V¿þÅàûïgWÊê#Ü¥}žo[Nyž<>QôVvªËã#€B,A}@ŠçlŠCŸ’ôkQ ÃáÖï?~ãøw?}v™¬n=áûü² ù#)³s~JãNëV%äÙsì%¢†XÒ8T"žB…PÃDЧØñœ/áUÆpFøÃõ› âý×ïŸ]#Ë¡§#|?¾càÈJ…ðìÈ&ãeú Ïžc/õ.„‡•ˆ¦hBÈa"èsì`„¿KA g„?AÿûùïßRüþî‡_?»<–[OAø:ª_Pݽz×âæœ]ôFZÌ,ÛSžõ´ݲ«[纹#A‰âffybµ!àøV¼·1–ãÐ,õxB¾µê…ƒV‘à”´øDøǫ̈YÂÕÏ3×6AÂ(“à| #õrZ¤êú©¨Ø.o‘…6BU%¶Ê¡V‡¸N!¼ã; ±Ãí¶lüKÐö›ñÂòb8#œÅ²å@84š],ú³¢ù¨CoZ^•¥XÍ„¾œŽÇÉR Çã¢kŽAr¬jqÑ'‘ˆfÇÖY3(´ÙíP ’å³VBhº×rö$“§.°îÖó¾î \hÆ€v£^Ñ¿ÿƒ‹ò¨w„·gÊ5¼Á~ž9·A ‚Fš³•ÇËX]ïµ]Îí…6•%¶Ë¡V‡¸N!œþƒìp»,›ø´½Áf¼²|Îg±l9žßªN9Ī§+ÙpŠ6”43ó¦ùÁÍX¢NZ§~õ,9#a‰ê™+¸œ ¡»¾áëñ˜BK–W +áv½›º­Wï§á±™ÅæZ—gîmPS‘t´Ieνo¥®çFTk—±Q•Á¬r[¥¹N"©ð;œnx7èðÊò`8#œÅ²åBx}Ö)Tû°°Ó[±Î9´uNàé´¿A¸¢ºOF7ÕP„Ðs—Ä‚|ÆÍÑK, „[õÆZáÅõ 3¼5Ex‡gÔb¶ÖT,]—I°¢[T\ à‹êžY€…pdc¤Ge°ŽrÌÕÙ_I0Âípºá¹¿ÆÞà_ÀKËÍpF8‹eË𵼆fu¹µìhÅÌs¯@['Ì>[ñUÓõO¤fBßÝ aò1"Vä0n­–s@n×»jVB\ëÎŽ†Gg¢ïðŒXŒ¶ r*–®Ë¤¡ÄÒŠ‡ë2b"½4 ±‘"ÕÖI•ƒoUó•#<Чžûkì þ¼¶œ g„³X¶opqÔšU­Dï®:XÐÖy´Pˆ4ÝDp>K‘„S¸ÉbÑ)GÀ­ìÐ…2áv½½îcM4<:Ex‡g®Å4wXºN“N5‹R8*ë“o&˜@ mD8*ßê(‡XúJ‚j‡§®ý5ªÇ¿€—‹áŒpË–7¡kíäu4ž'I–ƒ‡7"þ}‰¶ê©™0-~ïû)º$¿€µ]—õÂÙòœI]ëhxt&ŠðÏ\‹iîÐt]&½Á UöKq]¬¾³‡­$µÑLÂUo!åt¯N}%ÁµÃÓ ×þÕã_À«ËÁpF8‹eËá;ÕJ‡›«úY <·8½Q6åç…µ ߀'œ.„Ëz/­Žc½Txt&ŠðÏÜÛ ïÐt´IBŒ*BÅÅÂÇ9KˆyžŸÚ9BN8ªÞ²Êq­N}%ÁµÃÓ ×þÕã_ÀË«›áŒpËVÂ÷åÅøV6»Œ>þ½á~‰(„C»Ý–¿ùCßÌçðˆð²^@Î>ÑÔ#ã3CîÞy‡§£L*t)ӮʂàíQYû[;G Gµ·Ìrœ«S_I0ƒíðsõ¿FõD /¯N†3ÂY,[Þ‡¾»)þ¡ýœfå£$áðwMÄ¿/p!úÉ5oƒÄ?àA§¶ á²ÞƒN)l¦Þž‰"œöÌcäžNà&•Ú”Oaaƒ’•‰D—™#á„£FÁZ9îÕI×Ãl‡Ÿ®ý5ª'kxuu1œÎbÙòF8œEVÅß54×úІpè)ÿ¾D]¢·‡‡±þÄ?àN/Õ…ðK}/íD[Tx{&ŠpÚ3m8wVÉ6©Ô$Ïo½è–áz'S1Êó‹µ¢„Ž¶¾UŽ{ušÜŽ +ƒíðsõ¿Fõ5¼¸:Îg±l9®Î€#I˜cs€èBøLRŽÁaæµã«¦{G"áMÂZÐtó…þÀ? äi¯!WõƲ^ˆyj×€‡Gg¢§=óØy‡§«d™¤žNÇÕ"{PW?i<0iï²±ÐF„£­ïF•C­ÎvÝ…p»Â`;üÜpí¯±Ô®^\4Ãá,–-ÂU&·~qýlY?[S¿h4Rc ½¡Œ·îK¤‘ÂH(uhµcÿ€­Ô·E¸Ê·–õ/MÛ5á­™(ÂiÏ<¶AÞáéjµMª§ÄmR¿3æ€Ô‰µ"t—…6"m#\–C­Îv½áh…ávx¹áÚ_c©5¼¸H†3ÂY,[.„×m–Ë#ô°´.Z1Žp˜³Ó£”c4Ôs‰!mòh!<<‘F +-a´èU=à@¬/' à)Ï/U©ëœ@x]ïDÕ+R8Z ÔœAGxl&ŠpÚ3mPwv:Ú¤JsXÿ1¿•“^3jGÅwÙ\h#ÜÑú-«juˆë]Ç+ ¶ÃË ×þš{ƒ~¬RÃá,–-'Âó4£ä¦N=E^Áßx—“/†–½h62Æ–ðô:Åx `²œH#…–p”_–E€tÚ«ì´¡‹Ró¾®(¡Ît,b­^—ë+o&›ë¾#<6E8í™Ç6¨;;mR¥e2j\nÎΊJì²ÀŽ;Z¿e•C­q½ áx…Ávx¹áÚ_soÐ/€U‰`8#œÅ²å@xz–? Û¬zØ–ä—¬øwK!<®ßIŒ±(k~ŽçH˜M÷ŽD)´„Ãâï5+ÃåŒöªÒÍEøôÚ®·<¡÷™Öñ‰z‘™8ÂIÏ<¶¡¹³ÒÑ&ÕÊÔö Qä@J#vYàǭ߲ʡV‡¸Þ…p¢Â`;|Üpíoë'‚}¬Z8Ãá,–-“~Ýzϱ|:ªa{ („—g®¼:Héc+ùkLûÆÈ}‰tRh · +yÓÖzBÖQn 1G>ê`#-Á)o%§ÂÛ3q„Óž¹·A»³ÒÑ&i~Ž+n=$*±Ë(ÂqGå[V9Äê×»^ƒÒª0Ô/7ûÛþ‰ _K +e8#œÅ²åB¸Ó]–½M{Úóù6Ë6s J’Ôg¡i’ÄÆ«£$˲eÔ.7ð|5l½u_¢Q’L°„ƒ‚÷¯R¨¦ö’¤}2›%+È4ƒ ëù@ˆ& dÈÒ•ŒI†·fŠy’¨Xž¹·A¿³Òu˜T,äT¸n c®Ýec¡GÕ[v9öêp×Uû‚®0Ð_7þÏ~½sµ­,Vå’Î]:ŠÛÐû÷ºbŽ:æBŒc°qŒÐ/?3zŒ^3’Œ‰‘ñþÖ:1ž‘FJ¼v”÷ç›ùŠdÿ@Ñ5œ„YÅ Ÿƒ¹]À"Ð4œ„Y$@ådNÂ, z2 'á@ PA醓p ‹„¨¢TÃI8EÂTR²á$ÈÊKø÷Éäh._Õ¹]ÀâH4œ„Yy €Wo8 ²H8€ªŠ5œ„Y$@eE 'á@ P]ªá$È"á*,l8 ²H8€* NÂ, Òü†“p ‹„¨®ÿŠÿþ×lþÿ?$È"á*KÜ%á@Ö|¾½¿¿õÒ3¼uQÁI8 1Ÿ„ߺîõKÏðÆÅ +NÂù$|R:ÌågxÛâ'ဠPI‰‚“p@ƒ„¨¢dÁI8 AÂTPªà$Ð áª']php•“)8 4H8€ªÉœ„y ÿ2ù¹Ùlþs}ÿçfð1þÁæçÁäÏÃä|»`ìÓùÍï»ïG©0—Ÿ `i +N¼„ÿvÝ[×þ÷çéK4þé>øR=~É; †~mÆÃ\~&€e¤+8 4 +¾w¯¾Agáð—GñÛÃäNþÈû¡–Þ?Da.?À2Òœ„ ÿ#Šú©ùq ëŒn?¹îdKlý£{ƱÏâè÷×íæ§_ÞðÚ¼Z?À2Òœ„ wŸ¾x‡çâðÈý麷Á„×½1Ž‰ƒÇOÞÑY,ÌågXB†‚“p@£(áA·7Ÿ\÷Ü;Úƒ{Áyü1gì,û¦Â\~&€%d*8 4 +þ#<ž¸îOïàÜuoÕŒG¿ñº±ë>m…cwa˜ËÏ°|Œ'á€FAÂáñ/×½ñ~ƺ޼wÝo†±k×½Sc“0ÌågX:æ‚“p@£lÂEg'ÞÁëþž„ýº±D‹Õ/ågX69'á€ÆÔ ÿ“úb}3Œ=¸îwu&æò3,™¼‚“p@cê„?ºîí fË0ö[æò3,—Ü‚“p@cê„ßŃ0ŒE-Va.?ÀRÉ/8 4¦Nø/×ý•žh»Q¿¨0—Ÿ `™œ„S'|àº鉺±®û´þr†¹üLK¤¨à$И:áGâËô95Ñ4ö%8þî†a.?Àò(,8 4¦NxóÆu>ª9c®ûÇ?úáFa.?À²(.8 4¦Oøžø6=~Ý–‡G?ocßÄؽÛ¿Ÿ©0—Ÿ `I”(8 4¦Oxsà}¡ž&OòÇÄ8¶y«¾|?Ï¢0—Ÿ `)”)8 4ž‘ðæ?êkõûsÎصÿûÓYók,ÌågX¥ +N¼„ öÂãƒ#õÁæÑàz2™Üœï5sÇöÏo&“óífsk0ØÆLo^¹‚“p@#/áð—•,8 4H8€×S¶à$Ð á^Mé‚“p@ƒ„x-å N à•LQpºÏáêµ7ñÖ-ÎC&á^Ç4_ „÷{¾ÙÏ4Üh¼§/Ås¸4<Ë©+¡;‹rÕ‘p¯bª‚/NÂ[Vhµ3ã‹\[œ¤›Œê¢ýx–SWB%vF Ït_œ„¯Z‘•ÙZd‹S§£ºh?žåÔ1ã^o~ K\l–»z1$rLYð…JxöÛuoÇ'³œª¿b­^¥£ºh?žåÔ1Ëz÷ÌSO/q±YîêÅp0›¶à •pÛ;¸Ú;®^úüó©‹mY«ý"¯r±RH8M]ðL¸ã´Ä–w_úü$|H8˜L_ð…LøXlyý¥ÏOÂ瀄€Á3 +¾ wÖ,kEþØ}Ñ…ÆÆÁ8øhxb7vì^؉¾m÷¢sˆß.ä²CûX OÚrNTõ±z§ßn´ûñ½ŒNí–í&v™»öʶbçrÕ‰ZÑ;ØÙ°»ªkñ[ÒnÞ¼(ÿb‰›N?¦œ{íÙ;÷ºî^ï6íØçÐ<äª#áæë9_Ì„ï{îYVÃ9­É[ðC2|gùjf[ŽÔ9ê–Õñ—©[nùóß]DuQ{§®û3ZcušÃºÙHì2wm+¶ì*˜žª=v¢uÁ-i7o\Tp±øMg“ñ^ûÁˆõ!ýçÑÝÏÞæŸCû«Ž„˜«g|1.êñNþ”Íèúyð~P‹²µ~Ì°Ô˧üeèÄk6Rªuô ïªS6ÂÓìz9 +Çsž^»«ê8YñŠ¼~­ nI»y㢂‹Åž}L¦{½\‘—ò¢œ*ïIìôµÜsèrÕ‘póô¼‚/fÂE¾ÞËŸ¢ïDdZö®÷&x ÓzØwú‡ +˜!—©ÈŠ—Áµ`YpËm±ÃË^ÛO6áõšUk÷zÇâ4Ö©£>–¯˜Cq‘µ^ï*±ËܵW½ÞŽî }o’ÜpëÂqÆZ¸ßÄ-é6oXTx±è¦uÉp¯"¾kâRNÇJÞ§|rNGâ)ìÈíäCÿ«Ž„˜£g|!~hÇ=ïÕ® EÙ#ÿP¾øyå’/£A}Æ"p™7r%¢Ò¯¨ÎŪ>á–µ*æ\Šs¯û§y/âåŒêQ¦Bk[ ªÉrÇѺ‹Ì-é6o\Tp1µ3ícÒŸb,žÏÐ_ž*¸ÓÝ SÜVôÛÐ?äª#áæç¹_Ä„÷Eê^R¼fœ„3DKjaid§¼—Ö¡¥Š× ƒ¨j[!›£KøjPœ]õ˜ê*kí0æ‘‚µÉªî{”Â$nI·yÓ¢¢‹én:zLúSôËüÝ&\vú‡\u$ÀÜ<»à —ða·%wÜóÆd3vÔ ñ¶×V¿È„x¯škâÐÚ TÍê±÷ô ¿>î‡ ‰ƒ±?v¨NíÄÏb^›ªêjìßÇAK“·¤Ù¼iQÑÅÔÎôÉx¯]§À8ñǑ݆þ!W 0/Ï/øB%\©uü±^ éJüÒWÓ/Âœt–ŒW,ëX-óFb/¼Î¥>áñ/ÂEA";±89N‰µÉªÊ3 Ã_ºâ®2·¤Ù¼qQÁÅÔÃcÒŸB<ôõ„L ÏœÃð«Ž„˜“ +¾ ßoFê O¾@žÊ™¬yp*z7J,ÆkVð(Tu•¤÷–ÕIí²`m¢ª2ŸÐZëÄ:Íæ‹é/¦æ“þrÔZ7F|ØëÚ¶­M¸:‡á!W 0³|¡¾*ªõÞ>¾Pc‰f&o¤ÄÏiˆÉŸ,ëCrY7”Ò o‰ÈnʬÆÞg2kU=µRFéušÍ/*H¸á1Nq¼"¯Q·GNÆ°]W›ÈI¸á!W 03|¡n§ÇÍèˆÕØgõ0áÇ~6Ƶà}3Zvü¬„DÕjmÛUµÚÆ•¨ª¼|#ÆάÓl¾xQA Ép +ç²Uó"ÞsRìø¿#rnxÈUGÂÌÃlC ? ^I}#ñ[×;’ùëx¯Œ“ËäÏa¸ t£rmŒ;*QUù~z•{KšÍ/*H¸á1™.¦ˆGoÕÔƒòɧ°qr™˜­=‡á!W Ûûû[É‘Oƒ³í¿q¥½ÏƒÁ×­ây4Í#É>З¸ÄßúCYR3ü %ü"‘‡‹¨,kÝû+µlOUÙ„V¬úÉšŒÚF7»Ëi./‘{KšÍ/*H¸á1™.È^'/¹bY;éÙÚsrÕ‘ðWpëº×ɑ׼üu6¿ÿË~Ùü%Îq¼'Þ¿íE$¡ÓÈ fó9%ÂïVsž¢›,QªÂëß±K‚Oœ”€pMšbþ~nYû þ@<Â5IÞtÅ"®pDÍzÝ1ëpëÕ5ª‘?4íÙ(y +qfk¡Å0,~vF9[Oz5VMR%Ô(DÜ3Áº5F·äkÛ }šà;„ð÷#Ë:¢íÞerí‹kglÚq4£wœá?£ë'¢$„C{ìõ‰eÇ/ >q’ƃ§)á¼%Ét/áš$oºâ~ÉŸq»dÖ1})©3Q¬O {6K_„ð¤ÃkÔ‡ål=éÕYýÂÍBD]D&h·Æè¶|m¡Ï|—~ÇÝ÷¾b+àá¨hYçÊ´+v#}+Z)N¼œý~xøƒF™„ð{žaÄÔuì’à'iœ±1xšP_Ã×òÿbú)h™‹C8žäMW› Z¸†³Ëì*@Óm±¥%üq@Gé{>å0s}»°Ϊ™IÎ2L/nUHú‡n"ê"2A»5®'»© ¾K'÷=대åùZ?Øû?ð´gYÏÊ´Þ>áá`í(‘Ὃj¿pÕÓE¤¡* å´÷þ¶z$Hû±2ñçÇÁ=²$5øÄIgÑ4M¨‰³½‹â Oß…¨Þ`H÷þ—X‹E8žäMWÂÝ@ãà J©;PÞüe9³Öêì¡íy |˜¾çS³Ö!|èûÚÎ$gÙ¥·*$ýC7 wÁL°nM„ëIÇ.* ‚ï i€…=òsú&Ì寑Ѵë`ù'0ëºáï½+ÒA„Ö4sWü´ŽBWÏ©ÃB!ùY’|â$³h š&áÐ?äOËá«Õ²øâ·wp<É›®$„‡ÍR—"/}GiÍaf5`­Dýr‡_„ð‰ï·37ºNe€p#%¸@º¿ü;Ü eBðBøûk‘¢uïŠA^ýĦÝï­ÆïÿyO‹pàÚÑÑ龊¶D„?쯮¦½EÿŽ^±%)Á'NÒ8ãÆ`iBM<ìчObPï=jãøù"áh’7])nÛ· ŸU´4yídUr„@°ÍÌ®S9ÂwRÙ|{~^(ÜËïþ §â›ëó¾uüíâYxûzZ(|{C§=_ŽÏr? Å7±[0Z(ðù<£¦ mýÆ#Bç±|Œü¢÷ç…r×=Ð-I +>q’Æ™0FMnâõªé9*\¿«º+Zß~õÞï +…¿ña IÞt¥F¸]Yúþ²œ¾£íZVU GøäçWŽð¯PFß„oˆzÀÎ;ötlY?þa0¹Ö&á¥fÇso¸³'’ÚîÀãKúŽRîn½®cÛ—ýñbäò}ÕÇ‘ç=÷RYîÌæ^Ãn».Øê» ÚªoÀ–ZoéõtVØcèFNæC·¾“Úv½ãÍg^»b+Jgq5´=œ_z„׺`jÐà;œ×›O½v9Ѻ4rµ†!,¡•2gIÛ QÓ'©é ÙšZ^¿½Ô"«rÒÔ´G3i¡‘„r!ÊᨫóÎL0„k"ü`:ÐPÄDã·SY•Ul—ûÈB#¡ e!JáèV‡d]‡ð˜ïÐ()ÜNeGðá¦Ú·¬£áw‡–uÜû·áäZ(Â+KvTƼ2©ÛþêÚ”ªã+>P¤ 6 jvù–Ô+vé­àvRc#¡.ëu÷Ñ®Öë¤jÖA´oU:k¤6Û¹HwM#GPKûU»âï$‡°ªE0ºáÑ[W¨ÔCx5Ëvu ð"J hPâµËKòÁU±c]Y ÖðK¨¤ËYâ6pFÀôI²Ë>C0ù³GmC{Ā첯.4žP¢ŽnuHÖuׇféH‘hlã·ReJðáÐuñвö +§9ÀwVáKî¬ÐR"“ºê‡5+¶#Ô¬‰œi(TÚ†r®T¹­ïdä¬u ¥FÏû¬è¦wÄFBÝí"aðÄAVcbÑx±õŒ1„«ñ¶£»˜m/B ¡ÖÑ‘(Âcr¦Y · t(æ..IUJcø>`œXtéµWHlc¨4 åÖ© ß©è+1F¸i:4¡D‰Æ·së”-Ás„çÊ…ˆ"|•—ðʤ&7¸VbG¨ù­­JÀÅ„+ ¡\¾¤ñ`AKç#¡\tMÁ¥hˆ8¼¯fÇ+ÁbŸ‹ÈÓÎÇÛåãž„„A­£#Q„Çä,i-Ñæ.6IÓÁC¸]N›/$¡-ù@wYXh$MB鬘p4«c_‰1ÂÓ‘ +¾Û¦Œ ž#•©ìÝea¡‘4 e³”p’VǾc„§#)|;·K™ØB¡‚ºÛ%¿U¨XÓÛà•k„ð™ò/GxjGz„ÛvÙ%7' $é-Žyj' œÆ;æ)…ä­«#Q„ës–bèîÎÖ$‰¨¼……UVºä¢„k*Ì…“¼:šus„¦#9­Á­Ñž#ÙB¡ð·Éo*ZèÕ áPt‡ûs‡pø“3‚—5áUz‹>Ö„ÏØ3°e鬫#Q„ës–bfq­„$‰¨áûË’³ô'vð‘ŒíKø‡§¬Èáš„Jß 'yus=¹"4LGr(1·Cë xŽð\¹qW$’º 5nî¤îpàíD¶Èß/)a&Ñ#á·¼• ¯ËüÊ=t$"yc›ËyON˜üMA…ßMœŽnurÕW!\Î0c9V:-à6(‚[„[Y)dŒð³Ëø02ê€3vy&D|a¨0y?ÄpÈÝ'sÔeh÷ݱê7k=#†œ!Õñ86xÉäúc©Bxì÷ÍϹsÐF—F*®¯™Á6Ð7µ]$©HDp±ü9ŽfÁˆ[àØ¥´"å.s M¤)¨ˆpšŽnurÕS®Ì0c9V:5à×W>··²RÈá |J.eè¨Ë "gft¢]/é¹ç°ÇR#üOâ‘ô5à@}9 +ÓxZÕ„g7bHÁ6î‡8|O¹õdˆ:¯a®øÛF…ð(ßË8ßÚ3ÜÆŽâ1G)ÑU#•××Ì`â7Ù.¥HDðËxý»|'ƒðÝ€Ù£ªw™_h"uA£YR:ºÕ)ªž†pu†ÙÊaPhåvn‹r"¸Eø×”çyóì³&ÞTxÈÍê»kÂÇD¿ßðÿ¡ç†IG<Žª÷>"93—ϧµ³ñ{|ëÁ'ðü=ýµÔ"wÝ4®Ï¸¾{h}»=­ß˜d„g6bHÁž-_ïq€#àÎ]i-kDœëßÛÃÚ9”åM…pÈóù¼vÊä[;%ë#/—Oo¿S¢«F*®¯™Á6Äo²]J‘ˆ0ÊhÔS²9¿¤¨š]®©®.h4KJG·:EÕÓ®Î0[9 +­ÜÎ-Q^·ÿ‚š×ñ¦8ý¬ó<º•žñž®kõíµ +á‰ÞÌ:¸—{>"TÏ/tÞûuØx,Y¾.ð¿?u?挹¾Æ"Éâ¥QãÝ5ŒR0†Çd‘ îœ_O†ˆßqªOw*„_½‰ù’û*~_0üÓä«©F¸¶fÛ¼Iv)E +µˆ·¯VÊÔ4»\S#\]Ðh–”ŽnuŠª§!\“a¦r˜üÞUÛ¹Êà!|R¯îû¹»l³˜ +ÍÊdSP+kݲ#œ±²â”†ðsæÿÏßñA‡ðœ?øˆø :ŒŽÞ—SÚzÁöíòHw¤‘;×2¼½°}4çC®g=#–ŒáOjòr%–(KÄ(Ìû.“Œð£ã?Q¬3&þ¿¥`®‹.T#\_³ÕÛÀ¼Iv)EJêyžTâ=þÙ0Q5»¬D¸º t–”ŽfuŠª§!\—a¦r˜üÞÛ¹Êà!¼&ÃÜ]¶YL…ðcËu÷N²Ö-;Â++Ni¯ÝŽC]Ÿ˜uÇ÷ÉÛÕx|ËÏ ª«_‹Å+væíÏÅâéˆ!㹧ÜÔ³ñb±¸oˆ}Ç÷OÐþp,ÌZÏèl<¾TÝA ˜'W(SÄó‡gH†ŒÇÂÕìzüN×ÐÿßíÛѸƒÁâù†ÔF—Fâ]ŠcÔlõ6°o’]Z‘jdÍã;:ž.ñ+Rî2·ÐDŠ‚ƳätäÕ©«‡ôf+‡Áï]ÞÎmPŽ/á.˜ô7Ö÷¼éæ£æX+¦BB¹Õ@ÙÎXYqJEøÆ%Þ5¶ßÈÊÊŠ*O‚„ðQ íÌ6¶‹PeóQó ¬UR¡)lÈTj5Qf„³VVœ,­¬¬6¢\ ^Âs\Rw¶+°Lù›2Ó4ÄúVß^áVVV›P¾·/6°9ëÍÌŒðõ­¾½,­¬¬6 œ n^l`õ×öÎŒðõ­¾½,­¬¬>®¼ ^Âçn?|è¹#ø3êTÛ£¨säº^2Þé³×kÕÝá” ä¹­ê~´Ì\·ŠPÉ ˜ÐÃvµÙ‘Á~¿ Óç\&BHU>b`ÞV×Ñpj³7ÆIK fž»_uo¸ +÷~ä=cë&Mû'Õj‡©ˆð‰XØgÏ[MnµåzIša}¦­j½ç3sÍ*K©1å7E377Y„[YY}X¹¼ „³p©“=âŠÚá¡ÞAÈI8[F¨M*‡ÃP‡ÒcMDMxi£D3!´ƒÁ7 çW˜#_ +©ÊG ÌÛrz Z+˜Em;i¾ ~)l*÷™ +uë[7i|0¬ÓÕ‰¢ÊøÁ…BÄtö“†¬@“JôîÄI}nÜÈ| dX¨@.¥ÎTØ”ÔmÈAĨ°ÿç?‹ËïedeeUÁ?áC'†OÜÙgG†H:Á#J {!$¦b%rO£þH¾z€ªcL©ÊG ÌÛ²{0ÙF%:wçQïÌë‰ÉE Bø [7iü€I’rZDøc4–h6’`='iÙKBV‡a“ˆp³…òäRjM…MIÛ†&nEï41œ“Çá>¾ÐÆš“ì‰÷Œ­›4¾—Ñ›9\b[8¸\eò° X¤¹¶ha©+’eåbŒ.pÍöã@gÛ=©²ü7_(@*¥ÎTþ‘¤lC²·²²ú˜Š ø' œÞÚ¦e +ŒÜèTöá¸ï’‡r|ƒÄsð ߉ï‘Ñhbqh‡\РfÝÇ“ Î<ЄTçÖmµ=$Z™p?Ø/®*ß›¼Ãr—­PÐg¼ãViü°E¯¢x¦„ð^rcŹvA¬β +cy”¬ÈŠÍÊ +–b*nŠ~r‘E¸••Õ‡TÁ?á;UNhãÅGÿÒü„¹4$šðg$e*!< +ûà!ü<ê'†TçÖmµ=8Z‰2³Y(}áoÙÚ|?X‰pi|¢IÌi á3¨ƒŽ$ŸI‰X+øpèLÖÝ8H+7_(@*˜ÞTÚý6ä"‹p++«¨‚£ÆQL•]¸‹…m-ú´Ã£žísÏß%„ÓÐp£«D ó¡¹¯ ©É‡ ,Ûj{Øhx)ŽÎ'åâÔxˆ„py|"?þF‘ŽAZ G5ã3b­€ö¸ƒsN#µdOã…ò¤‚éM¥MÑoC.²·²²ú€ +"øg œ6N㓺KÏi|£#¼Å\šÐÈ€ˆw#”NŸÛ °àr×Õ†TçÖlµ=l4rïk|1˜F\¨t„Ë㥠ü†Îóú!ʱšq´Å*/ã… +„‚¥˜ÒÆdSôÛ‡,­¬¬ÖWQÿL„'ìÁGy?rràãã¼JµOF{Ì1®E¸Ë |'ºÀjCÊùÈ9[mÍ‹ˆ¦òv¢©ºBJ„Ëã‰&ÞÐuÝ„ûðýr‚³Ž/Íg¬<Î_yo¤©²]±P!€P0SnuêmÈCáVVVk«0‚ „U8œñß&BMÒpƒ°÷Kø±ìÒk]&„+Cš \²ÕöpѦQ8•oO*z:ÂåñÀïN9©CxÐì¸Âòé'V¼ƒ}S™ mU•{䫨–cõq8y“?JTÙ®X¨:-˜‰)‡ð m6ªíGøáùùAÎÇã»ÃŒ4d¥UþÓ ¥· ?•B þUŽop“¹“4Àû@í°D2!\2Â[mŽ_v›4†Âw.µ¥#\ÏÂ/á3¨év¤È›±Â½¸£§Ü/>[£…jD31ž² ›Ôö#ü÷rù3g‹Ëåx##ÍYiUÀ†ÄtCémÁO¥X‚„ûe- ¯=„vS¢9ä¡OÄÐJ„«BjòáK¶Ú­¡Íl6µ¾e±-áÒx&A?áÁ>Bû}Õ‰`UA¨BŸñnìK‘„lͪ@ f`*!\¿ ›Ôö#|‘ÿ‰þb|œªGþ^¾ÞóÝqKV­=qƒúäòÞpåòÌM³¦§©¦ùoî³T0Á¿ +ƒ6æu„Nèû töù ÓÿÙ¯–ö´•$ª•—Þe•wÙzÏN+cŒ=܆K¸‘óoýò©nIý¬nI"ÍŒÎ÷Ýk©Ô]§Mô[ôð=–ŠÂ]4Y—¦xDÇ:­1 â-–¶[xüeä%7ÎoáãÛÕÝ4QÂÕõ?˜÷÷+»„ûÙe\"‰2^Í8{ÕëÑ>QÉV°¤qvæ6œ¥„§ÀoJxæÏJúÌ-qðÆ#"ïNÜp<½“I¸©š…—ð?­à…‘ðŸð×¹gö‘(Ó×P$~~ýôþÜž=Ð1þóÜqîئëéû?ªkT—¦xDÇ:m í U6ç ìz¾wâ;%ÊK®œÎ=ì~{8wn§‰®®'ú^¿8v §;Å +©¦ÄÑ-Ñâçk¯€Œô‰JôR&“ÆÙ™ÛpRÂûÞ –z1:23yHÄoJxmKé3·¤ˆT\!lÌ yÇpb ÇÓ;™„›ŽBÑ%ü+xa$œ(­t½z¦Òó¹R©œE—;r݃×KbŽ®dT¿.çušFÂu—ÆxÇmí ñF¤èœ&ó9–M„—¨'àÓ9ùÿý4Qµõ_ÉÛÕ-]Z%œ®t.µ–¨TTÁѹ~W>QYµR&“2 7¶á$(¤„Ãïµz1:23yHÄoJ¸;ôýŽü™YRD*­àóCÎ1œXÂñôN&ᦣPp ÿó +^  üKØó~ë0\¡ýÏYüúùWì÷<4¼MÓH¸îÒà¡©_¨·ûÈvÉ…Fç…µŸbËÝÇ4YÂÕõWÑۗ组ÿ"«¾M1H>}‹]:g!H™§NTr€”2‘4nŠ¹ 'eÊ{¨ø_“pÛçŒ^âäþ›¤‡‡÷_$á9(ø’ð׫ʵü@p]¹ze/oוÊÍ»´ëÇ}…èVå>Ö·¿®`Ž_T¾ó%o7Ðoªë¿+ö¯ûJå‡Ñ¥1Á1B/R¾„Úóól·ß>l©Þn.`áý«ȯJå.^#†'¯‡¯>;Ÿn€’U|HYMáâz†ß[E*‚ï÷•sçËÍÃ3³ÈžÒ'*;ÀJ™@ÊšbnÃ)PJx +”^$”ž;òPð?$áÿ'0ÜYsÆǹ:²Ëb&zL”ž¥„ ¥„ç\¼”ðc¢Êö ‚ú÷‘}2Ñ£"AÂkƒ‘¿÷'ni'«ÍÂëV™¥çáåq²ÚνF‚Pízþvíëš¡çÁïuâZ–-Íá|³|é`#ñ€„-GZm¶~Ç@ŽÓÖp±‘si>-ü`é{®²r æ/ZÏŸ= +Ÿ¹ETu©®`®ð¤ŒUç{FþvãùG-[¡µ±?æEoL|OA; H¯4J[XÎ6-w ¯-[ÅƪKN'Ívûþœ•gàOšÜ>k¹Æ£`:s@> +^Jø1QHe»sœó#û,d¢G…]Â;Ûè糎¦¾ˆPk6æ`Ø4j“кïÙ­0êV‘ƒ]¥i?Zϼe™fUmd"°°H¤­ ùèèÈ8Õsi.͸&®œEÖ‘ÀàaZ¤šKm…p9Kß ŽÚ<Ú²ïû!Ô£¶‚¶ù%6J ÚÑÝé” † +¢X.oâÕÆjKL'Íx!ÿu\ !¼*w]ãQÀÏ\“‚—~LQÙ>ÎçîØN‹˜èqa•ðÿýl©¡³#Ï»Ÿ4.6­[8°ZÝÙ»öéìa45áGû”bËj­ŽLÝ6DúH}8é:ø:Ñr©Qw+Æ%¯œp+*áj¤ºK-®/zÁú—^B06öC¬Ç,’µø˃v@w%o”¡‚X¶†‡!£e‹,uz"iÖóØk#|윞÷U×tð3Wä¥à¥„ET¶ïÓÏc;-b¢Ç…MÂ[dàtªnµ³„êpqØ?5áÎ@ÇXt÷ƒaCxÒtW®ÍJ<øäÂE¯ª-Œ¦Ùn“1Ö·ÐQد»Íð«Lt̃6D +cwÞn{OºP”\àÞ4§·#z—l¹ÂÊYí÷ÈcYQ W#E\ª¹0YzÁj²£n;>÷‚dËêÑêõ¯`1 Dq§Qr˜*ˆd`o8ÙE˜µ´²+U fO'Í|ë“àIÀ…ç…@‡4Z?s@n +^Jø1QDe»tœÏGwZÄD ›„Ãýi]½5ù? ¨]4ñZ;6WÈ°Ù‡Ss›uÍ-À¦+NãÂú6‹Û»&}è#Só€‡Í@‡%“ŒÏeÍb:Ô=-ë&P-™—p5RÌ¥¼b#\ S÷‚a]4LÙÆäUp=Ž¼@Ÿä´Î!î4J 2Hh¸±ìBc±‚ÙÓÃI³ŸGŸí  Ùs_¢Ómëd^ÈOÁK ?&ž?9yÇ ââ¬ò÷Ñ1ÑãÂ"áøÙtE¹t=Å/öuÃ'Lu/N(ÝJ<´o ŒFžeØò7º×¸OA’„Âf؈0:C†3æ@¸ÒÉËîµé$s‰Kx¦^0øÂ&k¶¬ X[N=”b@ˆêN¥Ä!W=7¶†Ë.7V/˜-=œô€óí«ä¡Aà³½u‘‘pÛ™Ë9*x)á%J °Hø(6ªa[_j0WFôi?¸t`G·Ô:ä7×Ý…3J£‘g¶ÅƒQX‹mË$ 7„Í‘n˜7ŒÎ!Ç(žËÒÊ$œ»Ä%ƒèm*4âÖ±¨Ÿ«pÔj4ò,öLâñGà'I¸!l1R”Î!‡' +÷µ„5«„{ ž© ]ðå·ø{b¶ôm¯U’Ô:‡¹S)qàd$5<¡ìæ‚™ÒÃI9ëˆbhÁ–^´l¨D‰6ZªCÎÈUÁK /QEÂáŠñ"Ö’æÖŠ>ˆÃf‚Žbf…ÊƱ Wh4ò,öHS2Q a3H“£3d¨¶ûžçû\Â!²™lM!ášK|²gêÇœÌÂE7u¶®ûß^·A0cÐ:‡ºS(X+È2HjxBÙ ³¤‡“rdCþî‚-y&ŸkP”¦¥Q±Næ€|¼”ð%X$<ˆne {6åàâ´§$|«ü*Ÿ0y–a[¤qœ(ᆰ¤IÑ™Æis¼cë0 ŸÅæôŽ¸Ä'{¦^pTÇÔõf2[ˆÌøÛŠšƒÖ9ÔB)!¡‚,ƒ¤†'”ÀP0Kz8é!çñ1 zÝ"_€h ¦~¬ÕØÑFKuÈ9+x)á%J È áÕ@‚[úAÂa`/<5„Æ•g¶e“EÂMa3H“£3dØÞ“ÁB®dø’hÉB¶&I8æìÙz!¢5¡ópYO•-`Ö„x®LëêN¡‘TÁ‰ Æ™$|¡Y§ÀœNzÐyÜÒJ ƒ O<ÒÔ^ÔرFËuÈy+x)á%J °H8 ‘‘jfû›” ¾g‰FžeØ–¥8%“$Ü6žF‡çÒ„Y¼îÑG—pˆl,[$u‰OöL½Q÷€&ü”˜­K…gW¥*ÔÓc;‡ºS($VP<7Ö†'”]ÏŠŸsz8éAçqL/ ú/ /r9°BKxî +^Jx‰,îó‹ 3ÌøÛ"à$|&y0Ðȳ Û2·$J¸!lõ +§ÑṌ@¢k¦A·fåÆç6êŸì™z¡¢ëƒVšluXÛqÛ¡Ò©1ÈCÝ)”+(žkÃÕ²u«é˜ÓÃI: Øתû`Ïý XºA°Õb/²„ç¯à¥„—(À"ápuØV†ú>žèS ‡I½N¤¡³,¾¡[`öïÙ–•A™CØ Ò¤Çèð\Vü:& ûB ‚èËûq g‘¢.¥lc¦^h5 i²% â7ªŒÆàšÜ)”LDÿ¹dm¸XöG½ìZ°â)0¦‡“tIòÝvd â«{|~ +&áPðRÂK”@`‘ð8Rð_W4ÀØÚÕéS ‡ÛHÐM¢¡÷¨~lÁ¶t„-/&á¢CØ Ò¤Çèð\‰Y3b2Ø• +!.FŠº”V°™z¡cêib¶}"P[á†/Ð:‡ºS(˜*ˆŸ[ÃŲõ²O1=œô°ó8£m„BôAç; +¡ÑRòB¼”ð%X$œÌµM¨©Õq@`ðìZáÇ.Ÿ¿$ÜæÁ8 r3¶Ùâ®áJ>tdJð°dÉÂèÐ\€â?ì—K[â<€³bÉŽ;wlÙwÇŠAÁV  Ö~Úq¼ðË¿“4M/I +E”:žw!i.眤ÈÛ>z]ôW;¤pn*ú»þ;–A¡ðp¥Êѽˆ…iî…Oí¶î5ê°¢½ÎnýÉôVªA¾sr89e€î;XqÃCÇ~¥8v†î[ Ýž&éFßGxNx}^¾³³•»ô±!žNs£+»Wx& Ž +ßSs¶ã_PÁ#Aá•;ø¿y»iWºwð[M¡è›Ì»Õ­Ôºô—ê•ÿ¥Qx›…d/@ýû·'uúβ¼«×®N“–‚vð<£ù*¬º“_Ef Ž +OAŽjÀZ¶iÎD÷f +‚­:…!†5¦Ê…PV(A¾áWVd›dÇà¨ðŒò¤8g­3BöD÷f +‚­:…!†5¦Ê…PPáÈ÷þIdÈà¨ð€×Ú¢¸ØLá©X‘B1©I *ùþ Â?‡,¾¨ðT8òýA… +™28*|#Páÿ:¨päûƒ +ÿ ²epTx˜ÅY§'ÚÎ Ö^œ³y§c’ï—t” tzÞ8<i"O/[ÕŽV8Æ0;Mc¿¨}681ŒïOðRŒšF£¤!„Â5†sÁì^³Ú†$âùT8ò€ +ÿ2fpTx˜ œÅ%o÷„lç |èS’€¹ß=­z‡¶*0_²7 .´ëŒÊGM2ç³× Ç™Brè8‘ó}(9Ññ†ªBoIÆ„löYÎß^Qä"!ÖW8ìäÒïx:OÈÿ“A…#!“G…GpƒØÊׄìѾ‰¯åU‚fa×zP_†Ç£ +§ZÍ_:J" +Ô¸ˆô®«pZÊÔïò'„ü?T8‚ a²ipTx”EŽÃ4Ù±sžnÏ@çlp …ÖL¡kä_(N¤“èÔv:µÂM_Ä©NF Ÿ2Qæÿñ Â ‘Qƒ£Âc„4à£Iå íž×uÆÆ6SøPXÛQ*Üäé=(tþ¤i«@| +ŸùÝ©~Mb,”ùT8‚ a²jpTxŒ!yÛqŠ$gÓvÕqþKï† +¬R¸3;Ì1‰š"xÀVNK1Bt”ùŽ HˆÌÃóã”ÉÚ òKBö¼±ÍnŠGG£pxLèá2ǦQÏV/g‘`‘É?Fj…ás®Úu8?Bù +?¶nva+d¤ =Ýn}Û3‘¯$»G…ÇÙ#äÄéÒƒ6xíÚiÒÆf +Ÿ†»4 +z„=68Nžf&bFLá¶?±å'O­pðR·qžal[áOË×»íMÛ/6_úŸ²Áoä“q×óú3‘¯#ËG…ÇÁyLó¤@Û ¾"(µÀ‡Aɉ+î”èC‡]Ò+Üôb†BÛ…W¹Ãmx¦hDC(®®°LHI·q3¼âdze…Á¿ÚóÖ¦m‰(üs6ˆ +G>“L.A IH“6í\Ðv‚ +;«Þƒ¾k-ªDRølΧ <½ÒГ`v pßá-1!Iáê +¯¡1ˆVÏ0¶¬ðúûrùG=tcÝÖט¶’pœõØÂ?²Á-–ñՠ¿3Ù68*\â‰'º}x3%dÈGAŽ µo; 3Úí(nçi¼t…‹*¼™ë0‰Ž`Ö!|.¨¬a²3+‘¨ÂI .f'4u¬…Â5Ò§‚–÷(0j†ŠücË +¯Œ]·¯ÂîÓV‰³;PøG6¸Í2¾Tø7&ãG…K Ù‘xžÐfÎæ#!W3½îyÓV)Ü‹BÊ50$…çaeø(2—¶ U¨6‹0»RxƒÚ7W¤‘ŠÓX= +…k*œXH˜ãÏ)R~„²m…ëY¦Vï¶âìBáŸBFÊЃ +ÿ¾dÝà¨p ›ÊmÏkÏèé4ü‘ Í<;82wÖP¸3Ìy³ó#GR¸ÉÇÀ /•_—¦Â›v“÷—}Ó&*\SáÂB79WåG(¨ð¯‰°2R†Tø·%óG…ËœÃKé·O £:òfUcßoÏ ãòy¼ÛÙ7ª39ä¤ ¢,€2ÏŒê"lÞ«Âàž1³¯«ERhœÛεaxÁf†©ÌÌkB¼¹‘PáðÄ(À=7Nø£†œA…U„­‘2ô Â¿+Ù78*A$+üøîÉ]þq­ÓP_÷·ûúâŽÔ×W±eÁ?ჴƒiõ{÷þ@>zp}AÕ.,÷õ¯;9ñ8š¹õÛßî»ûÐ÷®<óµÇO/–(J¸¯U*§ϯá^Vøøáùåɺ¨‰žˆ;åaºî#­Ëע砪0~ˆœ÷±/"ºÇAÿmíFTØæ~¿¼º}ý)­< Õ"Ußñøñåϯ~LÌëÏDvÍ708*A$)üøø÷¹¯ó¾úÿì—ϯë8Ç%£Ù!`,@¬† v,Øe…¢RM©:%¢tJé+%tt§Sµ7·?ÿå'±c;'i.ïÞç¦ïûYÜ&ÇÇö‰¯âO|,#Ùœ½×²³FÆ›WiƒLˆ­žn+Ä¥œøTæ¦ »¢Ú8|îìZÆÎ5Ù`_V£³(:ªGƒ`ø¬f8Oܸ¥9˜Í½fj÷¨Wè.š†âg•#*É…´NóÆáf7¹ÈPÒ¾¢m+Áuâb«2tM1wϾéƒÁ¡pZ>Hå‹sIr>•AÚzÅK"c;ö^«ËjoâÚH;hk±Âç 9ñ9y1ç-KrÇasŸª¤k9ðþ¤C«jºI=Ìò§Nó¿Ú•Ùæ))6KõÅ3²z0º‹¦Y–½‰¹¨Ö†®³°ñA¸(sš¼Px󊶬ש}¹OçJÌÝ3ozap(†…Ó‘÷˜ ÆrÎϳÒ1i~5Kbî^«ËiG±Ž3MzJe§j’! 1ÐÅà çU¸ãp¹ººÌ \—ÊɈý8Åô{*‡¢èµ•fë1=}Λ›ÃsY„ô{Äôp*¬-šf(´B÷¢zxº~n~n (“Š:FQ¼¾±¢­+ávâbù·ÆrŒEuͽùLà›~ +€¡EáÁFmör?.dC2Ùš)î½VW­!ZoUZ˜VÑ-Y'¿Ø•Â"Ž¤!·*k.—θça‹Ïåd"[D—3]%»¤¥·'©ö™2ÛLjÊŠ WêªL…õµÑ$:;×õF_/›KæÖ ï­¿n¬h÷a¹]¤cõôZÌÝ3gzbp(†6…WÔ†KŠY› î½VW­U¸Üé¯U(7ÖDTEy=rj1Çárgô;wkR^ +3Ó‹õ¨D×½Ò#©rùæþ )4¬õp+¬¯††ÊBy1¢ :Çê~ÃÖ’kë%3µ"o­hça›b«2¶Ö³vÏžé‹Á¡pº)üIÙ„.N¡Ý`ÝkuÕx…G:*¯r·lªó[¤Z.ì8\.Í|±{ÐdOê:Ѻe£ÔùªËd*Åx*¦y¯? ‚«S«GC…ÎÚhÆ¢|à%M×y ñÒ\2»^”y´­ÒÍõá:q1*.Ó3½(1wÏ~éÁ¡pº)Ø’Ùõ23o®hça¹Ø^}_”•î{ó™À+ý18à …‡Ñ2Ž“ä¢ü*ÕB¬¹Npïµ܆…oÕ¹–ί«/òËØP8:cj1æ½å+Qð +'Y¥an®bªàÅÜéÌq¸\ú©é¨p»|ù]ñl…ùæauæ|™8s6>»ˆÆ In¸QòA +‘7–ÌÎ`zkE;Û«\¬ÅÜ=x£_‡Â`hQø¼<°ÅŽlÏôJM¸{[rf¢à>¤ø,ˆ +‘KÈ[‡¶Ç‡Ë%9íÈ+žX>«¯•Ë7S‹u’Š—ã¢6gËÓ¸‹X0"„™8Ñõ’¾ ‚©׶ag°þ ·V´ó° ±j¹µ˜»g_ôÌàP8 - +?U')Wá9F¬¸{GáF"½„uÃ¥wÕŽNsÛvs.—†º†Vä +·:©öµ•Ë7_Ä¥V¥êÑö4î"êà<*>ô¬Ã¸Z¶dvëßpkE;ËÅèC/ÓKrRµvÏžè›Á¡pZ®–ᄊƒÇ>/ +¯¯B,uÔH[Ê£òžŽ¡bÞ²õ˜ãp¹+a8~äÖtCás³3=u:´rÙf)Ú‰[¥êÑú4î"æÐau—(aI²›9ƒZ%³3Xÿ†[+Úyئ˜Z’­Pbîž üÐ;ƒCá0´(œüq,®ä†›oìájPDY®-÷^ë Þ ‡;è± kÈ yºÕmG:Áô]uU•uhË•Ÿ—"îÄ(x•Âåé0-}<¯¾at.Û,ƒ‡xEQerÝ£^!³6&ôIs=‰,Ï!•'ÆÙ•/™[/ûKêÆŠv–‹©ÞâêIn´ûæÞ|&ðAÿ …ÀТp¹Ïnèwr/P¾±OÅu-ž#KÖïµê òt)Öƒp15Òtƒ[=ï„îÒ¥ìÌvé³[–5—»Îc“ Z“Ì_«ð9uÎâ(#ùø×ÐÉe›£´ÚgNs§G½BfmL¤ØU9“|LýÅ—̭­ð+Ú}ئå>Q,¢o«T‹¹{&ð@ …ÀТð!P\ùWmìcù*¥ÉEþD̽ÖA½¡ÔQi Óó9}48C‹Âƒé¥xwÒÙHíÂ{õ>]æì½ÖA­¡8„3MÊCìÉšø,êÝ5æ8|îFEŽCw²› +¢«ê½ UÌÈešòÀ˃lÜ:=j2kS{¾H&²S†Ur} …·¯h÷aùXù<Ù*Xbîž >1½48C›Âƒ`¹O’Ý’<Ç‹"2ZSîý<Ž'l1)²­4É,6ï$á,¦™“ãÆ×ÇiȯwÚŒšò¾ñ¬-J f1•¾]㙹µæa¦„Iù5bö¨UȬÁ€–c¥2éºRncɵæ¯YÑîÃ6Ģ͑V{˜—ý™à“ÒOƒCá0´+t`+ÄQßÌi¯ñX ·è©Á¡p ð&b£o–B\<ÖÀ újp((ü£9 +ñ¬®Ã!Ž>‹ •Þ +€ +ÿhÖ´½ìFùeDÏ&žë ‘þ +€ +ÿhÂDn0ç$9å;ÍÜw=4ÑcƒCá0@áÏ`Ÿé}æ8ñ] MôÙàP8 Pø[0XŇ$9Æë±ïJh¤×‡Â`€Âø<è·Á¡p p> znp((€Ï¾¼Pø÷¾7Lî‹_Aá<>½78ÃP8Oÿ ^(üß¾7Lî ùZüÄ÷þxOÀà…Â?øÞ0¸+~¯Å—¾7À;ò/þ/ß;&wÅ÷P8ÎC¼Pø?|ï˜Ü¹Âê{‹¼ap(€: pš1x¡ðo}ï˜Ü¹Âî{“¼bp(€:ßÉ×â—¾wÀûð0/þâïòµøÊ÷6xÇà…Âÿä{Çà®ø«|-~í{Ÿ¼dðBá¿ð½cpWüY¾_ûÞhïÀ#¼tø¾·Lî‰ßÊ·â÷¾wÀÛóX/þß[&wÄù[ñGß[ àÍy0ƒ +ÿÎ÷ž Àñ_ùR|é{«¼9fðBáßúÞ3¸#þ)_ŠŸùÞkoÍüPø_|ï™Ü“/ÅW¾7Àóx/þ;ß{&wÄ7ò¥øïÝð¶< Á …ñ£ïM€ûáò¥øÚ÷vxSÑà¥Ã?øÞ4ÁÿØ«Ÿ–Fº4ŒÃµ™fãjœ002—¯3³4Ìnxy± ÄFšF‚Hc|‚þäÓZcþœä9'u]Û‚Zçþ‘qýxÿŠÞ ¥Ý,x“ðAôjB6†'ñ§è½RÚÑ‚7 ?‰^MÈÆàñ$þ=8@B»Zð&áõ8z6!Ç'ñÏèÅÒÙÙ‚· FÏ&dâáé"þ=9@2;\ð&áýèÝ„L|<ˆ?GOÌ.¼IøQônB&úñ·èÍRÙé‚7 ¯¢‡òpôxÿˆ ‘Ý.xÛðëèá„,Ü?ÝÃoÑ«¤±ëo~½œ…Áã9ü%zu€4v¾àM«QôtB¯áïѳ$±ûo~=Û§køOôî)t¡àM¢·2ðåé¢wH¡o^ýˆO7Þ“pØÝ(xÛð‹èõ„pß* ‡Ñ•‚7 ß^Owút ?£§X[g +Þ$¼ú=Ÿì®–pØ Ý)xÛð£èý„`gMÁ%J×¥‚7 ¯î¢Bj ‡Ð©‚· ?‹^PÕ¯$vAÇ +Þ$¼º‹žP4ªÛ‚K8­ko~½¡¨_I8ì€î¼Ixu=¢fTO +.áP°¼møYôŠB˜~%áP¾N¼Ix5ŒžQ2ªŸ .áP¬n¼MøÑ8zH!Æ•„Cñ:ZðIBÜL\¡P-xÛðz=¥`|(áP¼¼Ixu½¥àrºàEêrÁ' ¿‰Sغûzºà%êvÁÛ„Ž£ç¶í¬’p(\Ç >iø zNa˾½.¸„Cy:_ðIÇу +[u¿7+á=`³~Wð¤š!ÛEO*lÑøøMÁ&ÜàC½´¿êzÁ' ?‰ÞTØ¢þÛ‚K8lEº„+ø“f˪«èQ…­V!’%\Á[͘շѳ +[2ÚWp ‡­H•pÖÌÙÁCô°Âvœ¼/øÏ°Y¿'L¸‚Oiít½¬° 3 +lZ/]Â|Z³hÕyô´Â\WÒ%\Á_k7­=®°q7 +!’%\ÁßjWm=¯°aÃZÁ!Dª„+ø{mï£6ênOÁ!F¢„+ø,mÿGO,lÐý‚C4 WðÙši«‡Ñ# ópXI8I’pÿH³m{7Ñ3 r¯à'EÂüCíºÕߢ‡6âî@Á!N‚„+øí¾U_£§6àvOÁ!Ðú Wð¹& D-$wS+8DZ;á +þ‰IÃϣ绮B­›pÿÔdæN¢RºPp¶fÂ|íÐÜFo.$3:Qpˆ¶^Â|1íÔÕWѳ ‰ ÷­•p_ÔdíN¢—R¸pÈÀ: WðÅMoÿ6z{am£c‡¬‘p_ÆdòªËèù…5Ýì)8daõ„+ørž~t½À°†ÑY¥à‡•®àK{¾/Ñ+ «ºÜpÈŪ Wð<7|ïkôÃJ†‡•‚C6VL¸‚¯äyýªã»è-†¥Î+‡Œ¬–p_ÕËöGÑ{ Kyì 8de¥„+øžG°þr½É°°Qÿ%à +yX%á +¾–—¬ÎEœ2Œúµ€CvVH¸‚¯KÄ)Ëý¹€CŽ–O¸‚¯oªáÕéõ8z ažïL\Á!#K'\Á“˜Žx}>ŒiøÀ/û•€C¦–M¸‚§2½‹ÕÁÅ詆wFW‡•€C¾–L¸‚'ôj«£‹›qôbËáà¸pÈÚr WðÄ^Odu,ãdáöòôÍÛpÈÐR WðôÞeuÜ¿þˆ^p:k4¼œÔú EX&á +¾ï*þËÑéàëp8E:1þõÚ¾ ÎNf=F‡\-‘pߘ™»ùìxþgXËI=÷sôq[<á +¾Q[škXFôYs-œp߼轆)Ñç|jÑ„+ø–Dï6Tò …X0á +¾eÑNWE¿|` ‹%\Á 3 %\Á 7‹$\Á ; $\Á ?Ÿ'\Á CŸ&\Á GŸ%\Á KŸ$\Á Oó®à©¹ WpÈÕ¼„+8dkNÂòõqÂ2öaÂröQ²öAÂò6;á +™›™p€ÜÍJ¸‚@öf$\Á ï®àP€w Wp(ÁÛ„+8áMÂÊð:á +…x•p€RL'\Á S Wp(ÇK +ò\o€’L®àP”6á +ei®àP˜§„ÿWÁ 0O Wp(MOÁ D=€õJÔSp(QOÁ D¿®àPžž‚@‰z +%ê)8”¨§àP¢ÿ)xÿ`º¥ê¬ +endstream +endobj +91 0 obj +<< +/Filter /FlateDecode +/Length 6127 +>> +stream +xÚí][s7–~ׯÀ#På†pk4Je+Ž­$³“Œ­ì–½²DÉÚ˜¤LÉV¼¿~뜠ÑÝ$E+ž²8%ûA‰ÆíܾsúðÇ—Š]\³§ÇŠIc[&³luqx¤˜fÇçÌË®eŠ)ÖÉ–im¥ mP–™V¶­×J³ãù÷âøžC'ÇeŠ]°÷‡GsÅž-þ~pøãK]ÿšýΤòžß2xâðHÓ`ZÓ÷ºÉi%µq&ê_ +ÝÉÀÏÙµhZøLXÙò?DŸ~–‘ŸˆFkiø;öëø¥ÐQ¶|)Œ’-'´•ŽÏ ËBiù©0²å3v&L”ÿ ´†îÙèdäKv#¤çoEä3v)6º•/si:iøifã¤á+Ñh+ ¿¦•žßˆÆxþ‰½¡qW¸€%ýñAhèèB4QþVXÆ ;ƒó+íŒÃoÞdàŸX^ó +§Ôò¹ÐNj˜’‘‘Ÿ±Sáñq/N;JÍÏEc‚tü]ZÆ¥Ð^z˜?´ºp\Šÿ9þ ö–yé´EÑo®32xÛÏœ¶² ‰¦çˆFIe=;>eR+ôv—ªS*Æ …{)£¥† l­© Ró¢qÎHaøÇ%6 ÐÀFé€Ös–gŒ#Ÿ5ÖÈØiÖhi¢fÇg5' Ùò¸ ná¨vÀQ¦p<öš‹Æ© ;éxa)l2§)”á“âw'©å‚(t†ž /#ŸmxNxÇ_‹ò4òFîÌxÙñü£gNjsM|ÿ;~9Ø¢+áq‹[þIXXí)² H„n¥æ@ éa'ã–ÄD§ÀÉØ;Lj¸•gÄåýÈ© ð:rùeâËž?kZùr†,oïzŽµl]5svÀ`J©t Ž ¯jŽX€h#}VÄû“¹ø s)Zâ'ZÄÏ¢ÑJZþ6 \ÇÏ؈ôý;i´²#FÉÇmŒ’¾Ÿpf{-ð•éégŒÂ#\¯¦¤ ™hèèØk8˯Â&\y%ŒE½eaNŸ?¯…VÒUºe(S’ ØR XÝn§¹‰›hžy”‘_2’”û»íF‘ráRÌBú¦ Ò­,”(mÅôƒaa#Ûd[ˆ ›NÚž@çDߥ ‹ÂÎ Qa¢šv9â®ØJh3Ù5.«·G@—‹dà¿S|(Ùo…?¿tERt,“ʱ"ùØñÐe>EÕ]}gù5ëYŒôGž+ÈËØŒ!™¥r¡‡š’½H¡ä-w%¤ï—iÉLÐDaŠ g·i%¸´®ÒΆGo. ßÀrÏàKÇ—lzÓd[ÀV¸HÇß _H•;^ÍØ èâÈO…CÕKL‡ÒHÛVxw'S6QK0:þŠHF%8#„D0)íp dŠ¢ø(¬á3FúLW +k¸—1 Áè$§ Cþ¬&kYN" Š{e…aúƒíHÊi£(EC¢ØDq»%÷=´°Ð>£}ÉïçiP1¦™Þ¬‘5’¨þ·v.º(zºÃ…K[ÙaK˜h§ƒìŠ›8ÝJë|P†Ygj×=*¸ꩵV;fm¬àN*ø®¶Cú‚6Es%ÃTäšL_þsþf(¨¬ !¾õÅ0RÂ&)ñ•–rüEB‘ÐÖW>KXg¨üýU‚ª?R EVQs–¶È›-› -'­?ÉIÇV‰^+ƒ©O:o‘~:Hí€~ÕJa”~ßi&gd#k/£«qéÑp(S œ1¤¦k­Þ/®0Ë<AâßÑMð#I'SâÜÔ’ô3)¼u*|m€7Ó\Êþoe]¿Yc:EäCZÊê¼h}Ô_¿­f´´¼ÒøcÈ Xè é€H;é­ý`핽xU¶ŸÝ˜ ‚¬E €Ø®B.C£[¹½ÇÓVT6aBî,6 ÒJ7źMÄ8‘±k§tœ0\ÁHªâ†äý“Q+Àª¸åˆej│­bœÑ¹v½ +!n[$ïq¶AvhÄhb=¯5š!žŽ¨ë7)mu!n è8bÐ[½û€™Zs‘ùKöŒà3„»`ÁÎ?‹8lÛ +å6lÅV2‘©‰üüO»$·ÂR¬E;\»ñRƒÒõ¢¤ÊlÃú®ë=Ù²LÛnXå†-\ËU-;uH+»Ü‹LÒ÷>Ú?M~eV~%ê%[þ•nfBQ,_Qs#/³FûF¯ÑÑ=GôΆq,éÁ®×ƒ‰|Ûø ÂÅN[„i5°|5 wªh©*¶(lĀŠ›¨€müœ°ÕVJgߺŽ;Nthï4âFQÆJ-’Á%3¹ XUë)®dF'¨™ÉßÍ8Æ~®’Z5Ñ1ø è$%Xb;°éÉß‹‰Ù£´!l°WCƒ¡Y,­¼0 Qƒ¨ySÈÜør²eÒipˆ¦JvŒ²žÝù[aS„  +ß&KNFö‹ýÆØÃԦݭ¬J“^ˆŠA±ågÈú^îrØä.ßo Úè¸%hó9`º€i³L_w»¯¡cÚ#Ýóâ×…a¨£BÌEñßåÉdT˜i=öÄÉ«Ÿª¶$³öšÍ™-¿6E‰S` Vù)=ºÕЀ=YïÛ×–ä$ýÖG©QzµYƒÍVÅiMì·ƒçï y±.€µ2(r:fÓ‡\êÍ„ÐûF¥Ž½"åz¡ƒM:ëÖ*©Bñ‘Q¬ÉZÁä¶$,¾"î3]D½ŸåæáXWå¼PÆ£½Û½=z»M‚øÅÝõv­»î‹»®'ù²©»n¿t/i˜"¦ ò’šÏ1ü‡ Àô~Sæ•4~Å 8ˆæ•Âú)ò“aâ(qWö¢—ô„cA²B².¾Ös[•­ÛDâÏaˆÁR凚â‡br©ò ’÷›Œkíàù>½µ!_T;=°Þa‹‰í•ÓïƒiŽ1Z"j¡±©ÁéZÍ’­ÞÚl\?Lä“å'|:z•ú›†Tûèýj}êfùdØ+¸‚݈P€UÄG+Ù…Ìk„.†À4¨ö*÷Z&?Ãgµ4ÖÆ£M‘"¤…ß‘UT$^!=:ƒ\f“y« +zeÅÜûcëàcÀ¥ôUÌÒõö,`¦’Â~›r[„Š!€Òïîrè +¶j¹]—÷²9Kä×dÓµÃ\]¿% ð½HQ„ÔGb7cÖÛcKyyË%ûOèH÷Œ1Ø0œ1r] ûÕM9iš‰ª8¦Ä~[«¤ê‚ïÓZËhœMu9ö«³î£Øï3ØÇ?`Å/&‘îJ—»qí;ùS¡ +¢Ûè¥Xe +¥çÀZ¬ò,ÓŽâÄÚÚxŽ ÚaÁB¡Áˆ÷ F¨¼°äšlquü#ÙÕ­P߬ú¶Ê m<ÜHò•0qPžÙ‚1IѤœl뇌wèãc‡?¾44"ýÿw–ø–Ñóä6:P:m:ÇNçX…4Çî|„dÈ;öò ?¤òœîhG“1!x˜•Ñ¡—§ƒOa–õSMý˜’GÉÛXž«ÖÒ8§¤r­ÓìtÞU),ªÒPóâ{xd¨¦*ÊØUEéTc`qyCPí?ûcùß@Ýþ_LhÅ Ù¯oàwÈŠi'=ÿ +ìoŒÒc¿„¸f1é“Ž¿Z¶<åÈž"[b® Þ¿’Nþ†3üX4ää¿ÙÑ ÑXpz¾Ç^<ÿ±KàÏSÈôË]üÀ.Hÿ„[þœý@¼@8ù¯ ýŸQ׿e΄:6Td2xMì¥UóÊËØ攓¡u,FiBGÌ•Û´ÑJ]µX5iã¡$®ocÕš~l7k]ý 礚´iÛÁ|Ö¶$Oçû9G©:MmÞ÷©¤ÂÚ8elõwëQ +(YyEX­ìvò[”N†]Œ;x:Þü?2Ãn™c¿0¬ÑÒìxuxd¿bŸ‘éVËÖ¨0ôÑHçZKÌú­RÊ~Ǩàðï‡/¯Nß~{øýé͇“wdz?nØ·GÏŽ” +î»ï¾cOŸýp0)oÄqï9äó_~x8û[×Ïß9tÑNçÜ.[¦bµeŸ×íƒÛ–Ã#—ªJU®a¥ßtdŒFE?ZÏ+þ½èÈ,š€¹ª-ªÇèV_ÁcÑà³8 »­ )`¥ÇLx‚]–Ã^cIþ + œDÀ «k|p)À`/áëjŒ9Äk ÏÀk¹À‚BÛù¡7"Y{MÑDJGågó¬Ól¶_ÔÖKI Ë ؆o¨Öë”Æœzi·¢|q Dè|}$oxÆ`oòš,E—!¾Õˆ“i{pæ0¬/~¤Ý>Ðîý§<m¸eº ½kmðÄ2WHË·Â(¨h%Ú;D¾s6LxÿŽ`Ñ6e°ƒ±ðÑ Ù%yÀ ¡c¿y%æá‰Eƒ´ˆ¦oD‹±," öÅ–8#ÌÀ! Oƒ:ªõ+<þú”e.(ÅÜÐì1æ3X­›|CIüÄ +[W"ó¶,¥Z=Y³800š¡øMZRÏÊ´”ÅZ1éÁÓãƒGÚí%íöOx'ƒkmŽz}¤Ý^ “8È$ +axÎcšºÐdU7ËVÍñ *@ˆô-…ûÊÎWŠšž¨ëY¶Hl ¶¨Þa¸ÌwŒFO]±–Ó¼V¶Z9²Ãùኆ¯˜j‹LSH“qìÒjua†ÂY™›qôÔmK‡ªÆtX¢M¥ì.ódzdÚ?ñn5DHLH|ƒÛþ^P–¥ÖÓoD£*Ê!ȶVå-)tƒ¹¸Ì 6ð´Ðâkcû™ösŽ”åGöŠ¼7ädÃ:, ®ØŽý@3{!0ºAÅglE„OVûX¤í +euÊ0&†šŒ°™2òÅ:@—¬3»KX;Ò½+Iªg‰ÕN0»’.À¦a"fò<}’˜³§Nå%[³"ÃEcÏGl¸æu»Á<ƒUÇM‡¬˜ &¼pöÈÉ ƒ‚¢v"µ ¬$¸:W¸‹.x¤íÞÒvÿ‰±ƒÑÆXN™•Ë|¢í.÷¬›¸gC8XÀZclE%‹üH bá}¢ymÇð’\Bc•Uf£Þ^i*ëÚêûö†v3pÎì80)ÅïÁgÛ?·3(x¤ÍW£ÍƒdS™øãönÁVqʪ Àš]æsîŠcq”Á}x'lªÕPœ,èæ†3úsFÅää¶rÔè¶Y•øƒj þ÷uF÷i~arÜB¨ ÿ=½ÉeÍœ–¿¹þiA]] +Ž¦*ë@çú`©ýŒæ¦¸ùz‹M’h}9ñ—Eo²¥»y¿Ý|p¢rÎÿÎDjÛ*žrDêá¦ûbúIÜsü½ÈªNæÿe²ª[ºÝˬêp=¯ Ì#âa‚²·xv2¢ÄM_-¬Á7»3º¬Ð5€Ô¯•“ ûGc!4!ÆðUú9þ‡°˜¤H†YS ¯ êFÿƒî\­¹ï›}¤Á—¢ÁƒôrŠ– t;+Z§l§ kƒ©"l_RÑßà‡§áë%TÚx¼„{(ùÏîùAëùÖnR2ƒM”Lö”Â…J¦„rë ÍÁß9›~Ü +bø¡²S¨k 0ˆ%¯ÃzñAüu{”úvXÅžc@ Îw]ݵ‚E*äHÚlMjrâ¹wmüIá¡´ ÝÍÉ#©ÿEH½w±¹Ö‡A 8>í‚gG°X¢€ ¤UÚMò1sè²pØ} ++4¦xJÄÖÖ5™©Ø¨þÄÕõ'¦®?¹7‹Š÷Ê]£h»¸Ë.>lH·ÎqnÝŸ«€¾Ï}Þ¨ûá®çÿ…ÜõÍÝ>XÒjKWª@2b«|plÇÔY.Lµ mt@±TÖQaÌ0­t-Ì®Þâf±·;{‹ ‹¨R.bšŽ'ãY’ƒÝ.u?iÌ9ºÍ;kC[°C¶ïlÔ¦Î7txY#Ã> Ã=Òù_Î{Ÿ“ie´Á ;etËß8¡ÜVJ¬€qºÁ¿€Sõ7x Õk*ß¹gNãŸ;›}Î À”®5ÿJ9ÍãïÈÏÿ ŒÍÝî'ȬçÿY€¸é}à*ßñ¡ ™‹ruFK'Ú«jTÅo„–}íº<%ú«»µçfB973(ðé‹nuIº— ù#ý‘¡TÝweËYçç©ž/{QÕªº¯0ßìŽ}lñHÞ‡OÞý‹ i;:–°AOýˆ—‚D¬|«l.ˆ­ëã{Šë€ÖàÜ]Œêò]ÊqWìµ²^¸Œ—±†·Æ~ƒšC¼ ©b0¸ã”nú˜Á_pÁ^úr‚­×ðXaŒÅŽÆZÇ€?á2~þ‡ðoùÂÝhÇ»±sê‘fŽf{ïK8¸”Áµ¶œÐÄJê¿Fcp\+¨æ!-šŒUùtû”âæ¤ëg&¥Lä~˜Sw'‹ ^@bÂÊ0÷÷Jöe]{ì߸ÐbÔCÛ¯ãßl/ü›Éü¿Œ³¥Û½ôo†ëyE—„­J¿ÏO&Ä;9¢‡x|GAJô­+…ÞÁÒ¬{ìsR+þ^´€€SQYÜê€ÔÅúü1V)/1Õz¾ušº¢Å/,}¤çC¤çÞy0®Óv4ÑõG ƒ½ÝƒÃ®0iTE›[õdè}yéÍ +ðÙÐ’n™ˆYzà9š` ¥çU¸ª×?x•¡’Êø$%>¿¼[ÁÉ |EÕ%ÞX}îïÅ4O×Ø#ó¤P¸| .½O×Ò‹ÿPqhŸÙÒÀ;ÚT¨G»ƒ}®èP^ÿ¤Â#±Çê®Þ‡~æBã¥:øÆS 5Àœ ½¯¸t¾Àãô×x_\aI]/NÞQ¯ýJ»të1MÉòÜ]É:Á;ï‡kÍýáÝάWE%¤ÒÎæW„Ы(ØœØÕœ…×0Ù|¹q›4àƒ¾º€ä$«³(Á1¼ŸÞ# ü·®cä +e>1(Üþ ïxÔtÕsáT¿ ³‰áà\>=éâ2Þó–&hZD=†Þóp#tßò²œZ±ézyøòSÿ|ͪõþÜŠôÖ/}E…VØ®@æ'„co²Ô¬èïY>‘Œ·›"¬_j ×Lx²G¤ÿ4FÇÒzÊN‘<žÑÀ—àk·üºß­žTt™:½§®‚êEwÞ/ #¥à3êÔ9ZØÆTÚáÆœ¦›·?š›& ]ƒ`²A¸‰ì8ñê*] q“®A¾¦ñnIÌ.‘ßáÍç`a?ÜPƒ3¼±é2©Ñ¥2¦t@bÒ+mFjÁš?ùÿŽš +endstream +endobj +92 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +93 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +94 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +95 0 obj +<< +/BaseFont /VCKJMC+Wingdings-Regular +/DescendantFonts 198 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 199 0 R +/Type /Font +>> +endobj +96 0 obj +<< +/BaseFont /SVWRWI+MyriadPro-It +/Encoding /WinAnsiEncoding +/FirstChar 78 +/FontDescriptor 200 0 R +/LastChar 117 +/Subtype /Type1 +/ToUnicode 201 0 R +/Type /Font +/Widths [632 0 0 0 0 466 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 423 0 453 0 0 0 0 0 0 0 0 +0 522 0 0 318 0 313 526] +>> +endobj +97 0 obj +<< +/Filter /FlateDecode +/Length 5489 +>> +stream +H‰ÌW[o¹~ׯàS!™ É!‡3@ÀŽíÖÝM²MÔö!)²-ÛjtÉJò:ûï÷\ȹۖ’n¶bÍ yx.ßw.<žŒ”P©Éüµ6››Ñó¿¾Wâf;z>Ñ?+¡Åäz”§6À?Ÿ:aKŸ¹Í…q©s9lXŽÆ^Nþ;:Œ~ónàÿäÇçgK%NÖ£ŒŽI‰À³>áéšOŸ„ÃUª“{¡5ïÒ¢p©ÊJ+¼)Set‰*>Œ§2ÑEš‹ñJê¯Ä.~º•¥ÏÄg™…ãµL ~ÝV¿Üã¹4¸|!µI3|M´K½/è!§ ô çÅt†’3™€ÀV\K­ñ}-µMoÄ•LÊ´àÃ4~ÚJx[ÊÄá׆͆Vw´-‹:= “–¸¥ÄŸ›–W©åKøäqm-.QˆofRãñ&Ç3vÒÒFQëxnFÁ2¨ Ök2´ì.Ø]ÇF{|ÿUf†C©ÉƒMÒ_/9„!u| š‘Š3iH[ÚSÒRd4Û*ÿ3ù;2å^Œ²G¥ªôøªD¡*W€úŒõ…h&:˜¡®%’lÈ)°‹)Ò·ëàÑu—&Ñvòo&ˆ+:jC:ªݤy¿ Æl1ü ùLT§ÉÄ£U31‘žpžJŒ&û`$†OhiK<¢2DVLe&d4˜~5®69¦ë€&ˆìÞWßd 2¾|–9yÐŒMâ9 SB*´µ¦rF±øM\ÌPªlÅìœÇ¼phâªflsØÍ ,ð5RR×Ôc“ÜWÂe\î ¸Ž@–Ü^Ap±Ìa: +bÄæ‹8F”/rçô‘ºYØ´(Dn/J›æ¶‰…°ÆôežäÙ€š'yÖ—y’gjžäÙ€ÌS<ë‹tyV]_«ë¦Ž7B˜ &—"á‡{÷¢p5,`DèC-t5<}#éVô/:Ï% ÏïpR„ß·’ë7ð¦Ì×’fDá‹ÑDæNvG’À¥Qx%¡±5Uªˆ¦àSby„=> +ãî;˜iæ‹&à< §qXÇ% +ÞÇ£MƧ{czfJQ.IðÍ™ä ýí»×’îGhr†¦x๤Û×Û7èx(þƒnåêP(¯RÛV«[˜Ò•Çº#§K¸[©L‹Ü€­Uø_½%·s nbèâ÷š¾€1ÿ¤ë­ÃðãRA¡/`þ+˜Ë5zó°¸Tæ-uã*óÁÔ:‚:ÐTå™dê@È RÇab€‰ "è—°$Nñ@Vj_©÷@`,^À#éJ¦Xbˆ'“s¸Syú P‡®M'x³ÓßÉŒ¹èÅ1sEZzõê6 …¬T¦ ä7z 0¯7ø¼“‰E©„®¬1á÷s N†é›f”¢”?0?{÷»Wæg +TršŒF¶9dóÏJ©ì%`ñüýçéêÅ‹çG—»»éb2û²{qvzvÛ—/_Šã“Wb„N[l`ù ZÁÓ×°¢B…¥Z©c­4l +9nÉ~¸Gxcõóm«>@M.O/¡^Bx> b}Í¿ðX´¼ …g‡mÛ¡œÃä!l¡Ò‘ðD¤ÔŒÉª0(™CN† ¤¤ÚÒ¨)ÑX}ç’2qu-©R¬q¶m +`ÐrÚ3Eù²kJ'. oj³ãÎ0ç–°^…8„ß““wP!ö¬ý(‘Çÿ%Vý‘”b€Ž0H‹ÏÄNRZn¦RS9Xánƒš´E†|ƪ ‘ô +Œ0 ÚqEp^u ×%*" E>ˆ-Zˆ ï°Í£q?!”fÝà‚Ê\), cö;sAW)©cQ.{th•z5ÅÄ4„wp׌{Bi»…øÃ÷ùâá9nq¤‘kòyÛ=>üÖ!Jƒ‘9 k94Œ¦ ÜÆ“Øm>EŽ˜v(iS°§yÐG$Øz‹hó604Ô‡Kà~ŸJbà¢uPt¬}äE¤ñF’I8‰,£àÎ$ Mh€`ç ÷¸ùŽ¹M1‹o‡ŒâbÁR‰e?3´MÓa1¹âÙžŸ‰+>˜Ù3¨‘8&ÆÚ %uãÛh3¤#ñÁqP5…æVR•X/$eÕ²Ù‚¦=ƒðÅx ð²­m#}°4ǃîÂïÍ-*8e‡~:nhÔ`2 ѧú£˜ðQ~U +;R¸,SŸ{¼ç¨ï^Íûl]/ƒ›†”Á åqñMy é¥ážÙ4$ä1tÞ¼Ýy×<à^‹K®_°«ÀéËP²ý‰Ò(>’Ó÷é%@û“©¡¯;ö%¾hö…3Ÿ}MQïu÷Ìú?½¢÷»{Ó*$ƒ´ÜC“мMŒHë» Ä)|ÆÜÂ`z +&¨K‰nË7¾è^m°ÞÔéÃ, Ppª‡7Ò‰…8‹¡nJ÷ީ̸{¶+ɘš‰oÖ—GÇ€k>i½á"~/‰üë%–xËe-ÇâQ—øÞpÛ>ð>Ì%s¬Æœ1µÛ0Ñ^qšÍùþ NCÁ„÷éEàýœo¤ ΋î)s´« p–ÿzê3µ+þ”«J+€5o‚Û™6{ʹ¤|}ä@“G7Fqß*D~¿ö¶ +K2.;nVSìÈ ëW ¦’;«b¤à—> /0=JFhï.Wõ(N¼%Ûp·%zÐ%ú3:Η¥¼‘ƒÓÁ +“×bæ={uÛì)"§bzëáZlñÈ5qœÓ”NË`Ô3<—üx¬²ïÏã‡*pÅä†QƯÂTÇ™eDYGÉ(T‘KæT»ÆÚ´°¦[c;6$¼©]c#øø¨~U‘‚´×ØÓô¹%¸h ¾¡5« W“†ÝyÖãEMÊȾ +ü¥¾Šwè.“”’®Úq©íaÓ¸JÞàÎŒ=Èö.ö YĹ³íFRNßqù˜Þ̸Êci¦dìÆ>Ï»¡71ô&†ö´#_M§aîO4ͧØØr¾$–; ºJÉÞ1T`°A††°vÞc®ÂÊ>ý‰ +‚ã©ŸêßfAIuBÞô´>\Ø.‚zGPó¾ý +ÛŒŸE,œ*Lã\4 žÚ»eæÛ‹U0é|ïbPÄHÃÅ iÔ‡ñOwjö^ç| ç»"æGA„ĹI0t°ñßCa͸°v©š ŒbíÌHxS¬%;S‰f-¥×aZ¯Z×ݦüÉÉ;^»Z“ eÆ×ÂÎüôXß@Z[¦h{0Ρb3‹Ç^#S ±–É&>¬bÁ¸¬GÙÖ0¨cô@}ˆ§,æátƒÓ…‘"´ÃP§‰·¸±ó™ýüªéqÛÖ¢ûþ +-‡Às`’%½]Ú™E€¢yHÒ“Æßm²·ÿ¾÷‹’(iøZY Ë^šõ!–û¬ouóIØ=S¿øfÙIV‹‚MöŒ)¾üž”c¾§ õ|Bè¼U€Ëÿ)°Uðš[ný~o(•èd5Owø¤,CžTGûkŒiè7ÈñvyÀ-oÄNîqH±Ti+#‰Ís©y"¤òÍkÂðÇ©uDöTÄnØó`}RÌpQ8yÕkÉŸG%¨ÉS*­ÐÜŠžëš†£ŸŸ´·{P‘N­[D·l¤n¹†wÑ¡P,é¬Ôp`“.º‰TüŒ•fZÜîØSƒÇi÷OòÈX‹“!Îòr/f BÜ ¡]ÕýÍkŸ GN¤çÝáqdÅ<±:÷Ö!_27~¿BÞàËãÞèõ)gšÉœÂEè +ñJá©”m… ‡]‚L%}$NG§µ2@2Ñ ô‘¨9Mþ\ÏL«Š½ÄyÀÂaÇþ/¢#9§ë&å‹Üæ^ÖpNt§h†C&aý³b+¸Ò¸”lñ(ô’E4S4z¼™WÅ׊¾ÔœFÞ:µä÷‘¼Î £È†ÇýŠ…¸ðƒۗѵþ¤Ã†ðÅ3<¶kÃÝ&‚K2O”T üâŒð$–`RbÁF@ñ/ÚÉ…´ÉµÀOW³hœ£ûx£ ¡•îå¾›¬ø8Kÿþ#v ý_×B8±Ý>Öƒ/øÿ¼k家ªî‚éÏH’Upó[½Hê“3&-‹çÿUêzÍüÚ:Ïø`[ <>c‘z­™÷¿-÷8‡«ö¢ã$‘d„ø9Íò"\;Ë5ÛÂ9g‹ V^gÀ¸OA8´ËFt¬” ±e5«Í’X'ËJGºwÊ··ï¾‚-0Lãš0Ðd§][ó „1_å1aÛ¶J 8\FíÂîo~À‹È[„3ÇþqÊ…ûÕ‚Îü&úØK Aâš\f 6c.efY¼ô™o!içx„{!$Šz;‡PÚ’µ5Áý „GÍ਱3pæìU,GmPd þlÒXñá67u›N„S *äfŠW64€J2%9AIÃóèàà¼eƒdÈ|ÕŽVó`¢ ŠÇŒV |Ýsy›#^6èhORÝ :ukÛUÝßÜñícÀ%÷¹Bt$¢ #$5¸0w“Tc.AòÎ$TtYìee-l|êï5§]þý8¿[Û×B%œË¨óšeIÒþì=ȦÀ¦ðpß:«ó§…uª P+ý¿¿öZ˳Ÿ—•4ìL­zc<÷E˜¸iǾú]uåYàÊÓ1®œNЪÍúâl¿ºBRÆá!zdQÏ÷xtøë#86¼”Å#Åg¿ KŒ-Rÿ ÚFLêoî¡eGç,?CL¦|ÖŽ[<½if\¡?l‡±çà=ˆWö¼ïtfˆ÷­ªÈÀñ8(ЧX2¬m#ò‰àdYOÙjP¿.Û~~ Íž`.j_–ƒ•·‡‘ðùÁû<Ÿ¸’u§€…ŒßÊ @ÁÎÒÓ3å‘HÌ™áÐÈiîzÕ@o'ænb'„lÑ)jÔI”q!oÎV"êID_ .¡uZ—«¢¢àƈÂ3ÐÁXû7¤C»ªû›ŸäÀ%wQH®Ë­3„H”·b }ÞíÛçxÄTÁEa¾a·^Hª ³ +K¸Zø,+©h¦ÌTü](Y:8qRtPÕ¨:Óa.fªZˆ~_-®µárõÀµÌà„œ¤6ÞJ¦£yÒ>…ˆr-wQ+uM2.Íq½Ö«qžbÉFÄ›ðJ,Ń7› A÷æãÿ0ãœÐj¶áý‹ +»À̲Â$뙨ÿ £ÿÉ®ãì‚×—“}€ÙíhÐ¥ ºJA8›³„f2™J©“‹„ï©iûQW¶óÐØ!j8BUètÓÞRBÆŸç#ü›‡^](2àÕŽï.M¦ièÒ0©;rŒD=ÇR0Ñ£ÉDLüÙªR©žèq>ˆLyH_Ķm|:j,ú@þ¹Ç–t¸€×fDÍ{wTÔðw»á"½>l…¦% ÞL®» &Fj³PË%nŽÖ]2i,–Ðl¢ B‡u.râX25 æÊÁ}¾FÀÂŽßÿˆ×[ÞEZ%Ûþ}(n–¼ÃNYú¤*Þ¨ u䪡§d3ÞGámt+RóF‘¶¿‡ÇøšzGÿ{¿óÎvÐ6E7ÿWP1L<èÉ‹úp˜à Áôgùñ{Eâ  ¾ýE‘Í»‹noßQî>|÷‡d*p +endstream +endobj +98 0 obj +<< +/Filter /FlateDecode +/Length 4334 +>> +stream +H‰´WÛrÇ}çWÌ#§JXíÌìõÑŽmUR‰K‰¼$)/ ¤H d€’Ì|}ú6·Å’œrY±³=}9}úô÷ë‹ZÕ•u-üÛ4N¶/_½©Õöxñrm~©•Q뻋®êáü×W­2ÆUnheÛªm;8°»¸ôú??®/~{[øýç—?íjõÃþâ¯ßÓ% +m½G놭¯Åx]Õ¦Së/`˜Oe\WÕS½«Úš¯øçå_´U—WzeL_Þë•5U§.ßÁ§.ïõXêr«~Ðà|ƒÏŸÿMmt«.ïàźrø 4êr¯Mƒ†ðÀV½º|Ы±2êò¨½‚“G Ç>jAÃéÞÃá5XkðvÓWƒºü¬ØÚ¨Ýã¹=|Y™ï«G|pOzÕ£ðiñØ­^µø÷QíÅÎú¨k|m£-Þ Þ9¼ç(o Cê‡úâ3òï(¹YÝbHåˆÏÅÜ•†w¯5îø)½ùÁ[MLÙš“lè=I 8 ÁpÈÔŠþÜH<÷ÚÒu1¥úßë?A© ó‹‚XêΪ·PÝ x +¦vXƒ™»ñî½Åì ‚¿н6½ŸÁ ¶¼“–r÷B]ù ÝkÓáç­z”ˆ}eT¬H9á¥Ç- 713f>U„;_)0ÂßbÊ HYÿN4…5èÂõFmÉ1SÀʇu^¡ ®äÔ5ö€Ï–o‡ÇÀâ +bKA®·tLnÅ÷eo%¡ióù +$_ Õ<¤Û×¾i±öuVö ßN™½yRZHŸÅªPl·ËLIùA¨ÞPQ7sš¦ñYòbLjy®¸ÂXˆ"È“ŽÁk•õÛŠ ÍO +–·œ ^I¡{ U=) !F„³¶àn_LNëjŠøWÄP—¡‚ã+_òý(Ù‘ëƒy²c&“× áOŒ8<<ò‡Ü9%ežzœAÏM:(—ÌDœ¶¡]hCðÄgÑá+í–ùQùòÈwÈ¡WR›¬•›kˆ„ ¨#–aäXœ…³ìú4â›1î BK¯¸´ÄUmÂUhÍò óö„p"W¬è,l3ô[ß;Ô£«ÄÝ×ý6¡'K9-mÆl<ÊËçŽD‚Ì +…ÅPbfi^òuùÔ4‹SóD¥ç§fìFrà°IÐZã/ "¥;žÀmcÕ,t哧îÅ –•ô_°à«Â ãI¯ò–:&aßé!}5åU±;i³BÏ¡w ·½ãº=h#—× KE+-ˆïݱpÚøÏk ÙR tl”0Ñtšl |«)o÷Ž—ºé<„°è#›,mù´Õ!°Wu%¦‡ìh˘îJž¨%oà éF(xßG,) +ã‰È›Žþr dc‹ÇvÞýY_ ó}ב•G•qœlTä†B®MušGJ$à÷ê>H F%\HûMÈ®œã¬ó¢Þ Ê,1µéºÅ£/Ý?wþK†“P¢¦do¶º›Ñ½6ýæXÐí’öÀ¶²øl^…ˆ'å~³C¨‘N6üxàÁ€7 †D„²¤ò僊­L$sj’--qa«qc¹ÖÄèKÄZþ39Õ§òÂÊÊC´TºåÄ¥þÜú~‰Œ„-ÕS'qŒ1I¹Á$´°©$†ší¦p YHZÊžïÑPê°‰(¶¥<ûUKÂ1i±êŠ Ä?uœj#Œ6­%´îÃø̈“<§³–ú"4ÔÏBo{•dXïw8ø7#Ѿ ž‡²êI8 m¶1…¬AëXú( °IpZŠóa¿Ýé1ä00]h•(EÉWþù˜sèσtOöF©¿ˆ­%žKûŽúóêLYÍ›rèa¦éž½µSðG¬wˆõ0=ä‡À êޘS³"élj°dñË[ bä¸ЧÿÛ •>¹={à†•'Ñ"´gQ·Ò탼ÒdÝ·¤ošA}¢M=pÝ·H“CÒi¡Ú"_o‘øÎM>0Æ´Y‚_7>½…®9½+4|Oç“h3¤F/h’gX”3øŠáÆFBñDÉÃ;N•'5–kø© ëåäëÙ£ [覡=„¶ÀG•PXqˆ?°›éuAOŒî8ÜØš`BfŸ +r;Ù>'Ü*è¹<ŸŠ¢EUÂÝl÷Ÿ'´[^ãrºÏôR“b:`DÀ´XÈïäýdÜxg$m »ë©ÀJH<«w;Q¤2^î¤Gb­\.ÂÉæÌÐ~Rh±Õ¿¬ía_XµRô»‰'í;,êf'ó3À~ñògœ9Sl>!k}/ ./|жa‡ªÍPÃ9Cµ{r±‹Ë(§øÛ–'v‚ˆu¸i@dOzM.u1 ¢>¹»¹„÷°;†Pô&ÙE[&j†–”¿sT™LŸàvM_¥Ùý€ ÁwZ%œÏ+¡QD\êí0PÃ\€:Éw“Õ9ž˜š­•‹K¥á¶w4 > M§ò3Ä›"¸D‰l^?vs+ol*KðK|}¯É³ké1ÙÚ“^Ãü("·R?êþ¹mž*h—•³-˹4˜g¦ñ™]œ5T[4T1¡‹UÍ’p,ö$/ÅW´)Ü>“j›¯ ZÜK¾mË(1™WÏÈ"pŸ5ÿc½J–œ†è¯ðU1Á¶ìØ:rà 0·©¢R!3À0Ke`–¿G½I-y‰2Nl·º_¿%9ZDädU•;—¤!ѹdù ˆù5EGÎ>.xˆÀÆôÏC>¼`ý=ˆ*7ß¿Ê*C[øTƒ«áSâ&…ž,´9ñA99h2ßΑyHç`t&¨õÊ–»5snÇÂ71ŽG–ˆ8Fb“'q¶Ñê&ÇKC{?T_êÂë +m~¹-†}Áž‹ +¤±ôÿ*ÿ_íÛ¾¨}ÉeWöÅpëGÜt ™K hªÓ ¾†â31ÜÝø6óî+5ŸûûËàgÔâû;ÓkD!øIO8šV¿v Çýy<Ñ á‡;’hÿüónD.À×T%ÿ”µ;{;Þç¹*¾¢¿ö‘£i©ª’–©Þã#KrúÔס¤¶–ÔÑ +ûYQ7«ØÍʹMÓÚ†ºùpPë7‘\B;ôÖ<@?ôœjøÈZ[üOoü£[Iè€Aš 3#PYŽ7±^HU[l_«ýʘ@2}1Á‘½6Bá¶ð*e°Q„©`ÜÔ¾HC M>ÄíJ0´&92²ž8äQlÜëô#gÃ×G"u<:CC²åDˆ.\Õn¹Ú‹¡ÄŒ˜PÍ‘z~ŒS–*À‚G׉q´‡Ú踵<þ6®¸ìŸâÚR…Ø—îéµjL¤ßÁßÓ¡; mä¡Ó°³¹±õ;1¹¦CC6/Vó4)TÈ+×ü¶oa½üNON{=i‰úÆ=áž¿º•†ÝšǤ\Kh@æKY^`°Ìž(ÏN‡OpdòH¡œœFàa¹†tX”xfÑh꽄sãNoÖ!§ ®×azòퟠ×NÕÁÆ!!Ö4¨5œÏÖ½ucD“äŸWsû,·¯Ç2pÏÕƒõÂÕm}<¬Ôà=WO†OIV :mãi¾£iqʪ-â¢\´ ¸0ÖÁ£/Œ_—Èðš ŽûH¬½ºï;ñõ7çøûíBÖ’Ú§°¹cœ_sk0°ÊÀ«­”/ÓÞ¼ÝzÖiÀÖyø›‡º‡¯.ø; “(Vy„Kˆÿ„íØŽŽd®¸|käÚ±x…—†½$ù1à…d-¢èÝJͱ ¹ø³qt<°$Æ\+Ø€”)¶ëki‹§IÁþdl SÃê{Ør²(¿™„bD;Q“iP.Mà;aL‚1òâB:ßàØzxöC•„$¬$¸H *§3\?A­¸‰Hq\ ® §eQgèÂ)ÝÝL+hƒ•XI Ûe+‹G$tTà”ööÖ’?]ªPuV+?t\!ŠЙ٠˜èë1&fƒÀ„” +÷ª^p´3JÜoM¸‰ž{%w¬¥ º.)‡³’î_ýK’éÝ;”ÚÍê¼ Ø¥%žH‰c̤±Ñ͆žóäèןê£Óó:Œû–í,ü_SOö{ÖÊ|Þü`ƒYrÌ +endstream +endobj +99 0 obj +<< +/Filter /FlateDecode +/Length 4096 +>> +stream +H‰ÌWÛn¹}×WðQ<í&Ù×Çlœ‚À‰ÈC6f¤‘äµFòŽd+Êקn¼t“s‘¼›‹õŒzØd±êÔ9§~XžÕª®¬káߦqjw}öökuýpöviþY+£–Wg]ÕÃø¯¯ZÕŒ}5tM§l[µm ¶gç£^þtö»åÙÏ°ß5ü¿üÓÛßokõîþì/g?Ð! +÷úŒ»Þ})›×U= jù¤ŒáUF mU»±Q½«ÚšøûùJ›¾Õù…^tÕ ÎõÂÖU§Î?i3B`ç÷ºÃßïô´U¯ÎÔiKïB´f M”_þɯyÐ ‡q®4l¹Æ(Ýä ù’l.îð +p¬Ãëþx®›zò.\– ×h8æ‹®ùþ‹—òÙãƒoÚApu/_©+ SBMƒ¯î|f¶øÀÄœª•l +W£dÓçˆoòó Ì¥Ç_Ývp±¨Ã±Œê,ÿx¶$™‘T«¬^—„y±-u9½-¥Ä¤p~ïêšÎ6aá½í«†ÇSLÀ{Ð]Ÿ?jÝZ¼Æ£Ö#&wí cj åQô*Þ²‰i­•>$šo¿»]À®L`Œ7‡AÅtÜÝBj¥¾høsð˜âÚq¶ûôU\2â/ÏY úÞÄ;´TLj Xî’–äjêÞŽyÝ¡Ú–GÁy¸oÔ{ÁÜ;ÒHŸ#îþW®Æð?ªV;«ÒðÕ†«U8õ·zÑà·ðÁÊ×å·ë0ïùñ -°4 þP©¿M«éQ¥Ô%ÍÕJR©ýéñ7¦  Ýw£1Ú›ü褸>õ{É6'¡)ûŽ)µÒÁ§`lòÌÓ"s†/³qy•cà’K|÷6aÒ$vƒXèf±UÇŠHÑ7rãl {ÐR=GQê-ü%Â~Ã9ì0cÒ$+Ä'P\¡¬¨Ãzj,¿QXŸÏj+‘n¶ë,Ý‘¦ýÿ«\Àm›—øIî|ƒ¥6X‰'Èg*á›ïQ&¤›æñ$¥r%¥šiȡĽXƒÜDƒ’L0sª©5ou€nfueø +Bú<ÇO¼Páø•§Í+øÒcÍÊÚ†›9/óéÐßm¾’i릦 Bï9 +ß|alÓ’št‰šd\âV À„ù¡¢ë Y6ìgŵUË %_ÀÙÖ° y[¼mGÙŠ¼mí‡{¡lB¨Qçê7šsq¡[,~8 +Ëp©¨a¹¸(I°ÅjϱEouMŸ”~Èo¹º»ä/HÅä1ëPMVå½ôeÅ„ ï.(]-îÀ7 Æ]îØš²{oGÈn;X¾á;B‰;ˆ1S#Ä4–¡†žK{f p\XœNnQÈßÈÑl3ը렙,ÃÛ±aÓ‚•àuU.DÄ5ihfR+.m8~^¡Ãø‡ &â›ìš¨¥¥@¿Dy›%BŽ•O°]j |Þ_Ò¶ ©+í(bn‡=jÞÍœ¤ßÇ·µL®^M^•ü%°{¸sËE¾¥-HTçƒsÉtõ)8,&éÿ‰†žæã÷úq1EÒœ·á´&Õ¨B_Z2'%Ò’IÅV÷½]Óè*ŸáÜÚ³JÚÚµ¾j>Ï¡Ó' áù!U*ŸC l*rÄcWìõ’ãØ(ÏõŽ[$ÔsÇæ…"oÒâ }ÀƒR0¼G¦®Ë‰Ì¡N¨8" ¹¥ ÞeVÝ"ûI@§+&›Ó1Ù¼“»˜D'”@ʼnÄScþãR\¤&„fwž±Èø×l%guÌ€Ï.Qm˜ÿEW’÷©\)ø…uœw¾ânÿp›êÁ¾Á#C”p—Ì·>f!¶"í%¬Ç°¢.䮼Ö|1Úhà˧m°ÃR_©Ðö§c ߨ Ꞥ¢5VôB-ä[A/Ö¥Ntɱ.Ql›‡Í9z­Kkk@ž1ýÌ¥Á Û¨?£ï"=nĆQ†?Ýß­Xý ¯)_sÿ… ÄîéÏ éúòK÷’É'Ì$zœ ã°ÆeK6öeKÖ åØ4|H9Dúüy¡›éÀÁeÃÏ^ ïHÈxZ1có*MëÄùúÑÚŠ“3àû‰Õyb+zÜEèLyss;§~Oª~.4Oa²óÜ*Ûk¼¼s-®Ñ§ó±ŠW­½˜I„0§F0k–J~xÊ‚]Êí¨‚ŸŸuZ­Èž¤}«5Cì-:hàË°óR;SOöž¯Å™©`©â„J€ÞuñrÔ¶f +R¢µX__oŠ“·`N |ØFÜ¡çVH‹‘¹ÉxrDä +œ¦{Ékèöyb1I÷ æGhœD†ÚóÂ1ý¤ESýÔ…òþiàÒi„ÚMÔS“Câ¹½›§_¾œÓ·¾x@YiðÀ,Ù”p¼fAÇ8梴™ÛSöD×ÉnfŸ5·rÞvÀb†ÔÙ3愇%6C.¨uæ|‹bž9̸˜GT„t·ÿþfr{99ÊñÂõUÛ X €6—?!} D ù-EÌ#Grì£ÛÓ×~ïç6g'3—" ¬Ti¦<Žß¯<ÚL‚£ØN% ê‹D€þF¼ÙÇÔêdñh鳕C ÔqZAÊu˜˜Ô°šÉtå¯Æ7ž“•¡™D¼Â§¿#…µÆËðY‚|.E(êÌ RCg÷AçvŠUF¥?qˆî|&žèÄBOÚ©›O…‡ÚéW ´î B)­›QšûE)­ßOhÄH¤+å1ñH«u…V3õÀù¤Øv¯MŒÍϱnޛ؂ùÏo—5„v"òcªš³çÛR½‚ì¼JwƒfÏ4Di=¤¢>—Ñ-±Z—Ý— +(ÅçÅ_¥Å3^)F…lìü˜lð¡ ¼}ˈOŸ•°÷*å +4N§¶°ÁŒ¢ó°­ e]?c܋Ómú:¤zQè“qäÐ 2¶ÀZ©÷òÞ4d?¸¤Gn&]ßí32ÿ½®¿ÄT`Rÿ¼/îiÂU¹êìfÓ¥@ž÷x˜ érÿQß¡”(eÒ\D}N¼ÒÎ1H'žGð¸èÏØjK¨M¨0sÎÄ‘Ô! Òt¶2=pžC. 21VýÞy-º˜…ƒê íWg‰÷-/Ü{²ßDkwYêãLͺ¢œÈÉ\â£Ú {/, b’¯`t…ô¯<%DõáägÌ!™«‚¨ˆq…aðEµL=~Tˆìjî©jRì¸öfJG.e’ 12X¼ñÞõ†0áíý§ƒ‹ˆ÷›Ì©·'ЗòwØ4ø‘Â… P­¿ +(¯ `‹VØe*òØ£ãP»îmÖaÒ¬PÁåÄö˜÷œO@ƒ—{Iy‰uœ6fèKèž~xT_Ñ'b¨È¨,•D"?×쉯P¬d*<خӤ žkÄŽš8¶Ä—…3© gX,€Ú³Amóz'æM,5bH ;½ùPÔ05ÅÞî^0•ø-Úq9JE"ñÝ”«ih2x¯UÄÍA¿·-¤'[Sfº‘Æî˜UˆÉÊ©‘œñX‹q¡‰Ú‰*?àòg^ãÁôm½íÇ@SDÈAt¾ Ý´‰Uð|*’¤ÐTÅGu2ÖŽô›û®~~õ~{eOõ/í©æ¸ÈÈ‘Ù /ü“øŸìƒM°²\içðɳ·Z@ù¶œ)Öµÿ°^%»QÄ@ôž¯è##1¡½tOÏŽ\ÐH‘H¤$,ÄßS›íòÒËDQ™Åãv•_½Eó»h3@vø»óº—Mä«…wáÅ_¬HodªêÍÉ|2ÔóåÊ u÷ðgl7 ¨u¾³pƒ?€êÝC½žv¸&f ‡îãÎõRÕàåßÑ/a-À3ì'_7/%8ÞÊãO=?fËØbcø&§ë£ëG>Ä{¡¥Zw½ð—`–ƒCdHVO:ÞððE, …/+rƒ¼Ý @™NS¾×Òü&ß=ÎаÑصrÉL°ÍÖªÉçõÅüEG‡¢£¹O™å‚¹³¸†äµó:ÜÌe›9ƒw_Rc®êM¾È\ñ´UmÇ)Yøù,J®ÔÐÝpE©Ðn¢[„‚ÈÞ2¶ÊËxÂÄ÷ØEŠy+Í~ÐÏ;¾¤(ÎÖó:Ÿ†è‰õì1›´±˜4·PhÔÃ) œ˜„ ÎúÏÃB²€à¿púA¡ÿ‘¸<Ç#½t€KOß(ëªöòÆV3صH5¦¦*£úá¯à?-ùÐi¿•1PÆÓ{˨‰ö;cïl×C¾kDCðo´½:kªŽ"23%L°¾©[òQ´;¨çV ’Vv%z6âF¼-#Çôœ%gîàT“Ź²súʼû ÌÐR÷WîtÌî”æó×3b\CÅ6´+¼ÿ±¹õ¸§Rµô_›³pÂ.Nv ßÔŸ€#•?,•ýz½ÌL²©BH±v9Ã6—#=]“ƒ!§æmªÌØ-ÍÆ…~OmðÔKbSüè”u©À± P¾W…K•¤æ¨i¼Dµ“Uê“K£JÌÊò:}ÓqÄÂû©JªE?¢…áäüx';Ô¬Ïs £ ¿BÄ×~¸Œ«Q32|x0¡€1+ ²Šæ\•ìëŠZ¦‰û·&€-«®ÙYñ‹×‰4xÜ5¤=<ÏÊP Ö²í‡9&\þ\fF%õ‚kù f¥M^÷4ƒÝÆŽwµ>éâmJ?Z·#™«°[]…æ„͘’†æÙA%g¯:&8›i2™Ô5Àtƹû#gá»4xjࡃ¦†µÃMX¤äÊw§«ÿ x] +endstream +endobj +100 0 obj +<< +/Filter /FlateDecode +/Length 4311 +>> +stream +H‰´WÛrÇ}ÇWÌ#¦J€vfvgw_Ç®¤ìÄ ‘ʃJ‘o!A2‚dZùúômn{#(K¥*XìÌôtŸ>çô7»U¥ª­u ü_×N½¿^½ýþ¬R×ÇÕÛùw¥ŒÚ]­6Õ¶²VíöJ><+¿ma ük·2Æm]×tÊ6Û¦ñ°æ°Z›Jïþ³úãnõ_8—â2Ø¿ýðö»C¥¾}\ýmõ … ð¤;<Û„³M:» +gWt¶©¶/±éèÖvð{ÛãÙ?¯k½iÔz«75„·özcÕZý¤{üö‘¾]èÛzµ¾×¸ÛúvÏïÜ>\=¾×ß;èÙ¶j}®ëm­ÖôÆã×ÛÇ~õüáØëfëÔúñpЖ¶7øõ¿ÜÂ*Ûâ7—×ÖâO=â»5¿Æ›cTðàzC±Nœý¯ÝŸ!?;)MJ­1œ“åÄØ­ë+Ï9ù'†‚W¾Ñ½Z_j‹¼¿TçÚ:Œé ÒSãÓ`l’…GÝ•O7°»I‘Âj +탮qS×oaó7ê[x¬Öð'þ]¥õÆðÅL‹oîñfÝÐVøê­ùâé9zñ¢4)|‰â¨Žœ©½i¹h8Èb}7p2<¹‡WèÈÒßWîij|Š´t!u¡1Y&$rKOß©k¼K‡±l®¸ññ;ŒØe1R7îC‡˜±ôr¶Ï®&¡5@¼¦«·øïÚAd—4åÜCHà®Ã¤|$p8hÉd÷n§BnbëläG€í ¾ñ3 Û˜2õðç$lÓ”ĽèdE[ 1fÀßHð˜)§á­Å;^‡05ÔáN|kéÏN h#Ê{­>pU¾–Àp>Ä›úÁMžµ5pÞ§[S»pÑ6TÒ£:Í‹®"0ðÊ=þ…ÃZÏP…ìõeNj\y +Êá+XL›]kŸÇ¦}Úxý'M{Dô!&ˆ!ÆÀ\x?‡ +¸Ÿ@§zNùŒõjQYT1ÕB-².·Ôm@RlÏ©¾§u!{Ü•[d–Ã"niGÜR¿š[òì_`–nÄ,xU< ·æäA²œClðÀÝ Òè‹4féùÔH³DS¼­Åj±GuéóˆñIªÉ˜lÈWrsÁñEB©{ñ&{ŒÐåd…§µy•¦†M€âºd+C¥mè âŸSû¼¡ìdé–㔥jçt*§…^nòTjaÃÙ–W3l3¤å½H8üuVQB ¨Ž´ôS\Xv.Sè|òª%ñ_«'eû@@1žÀ¤r;f°cL–d;5”Ô‰q0s“0 ÚGÁ¢‰3 ÿPõš3‡ù} ÅŽQ’K˜=AÂ0)öIÚ3ñ4“÷P©æLÊgègI-¢7ݾΌšá: +,nHÝ„Ö´Æõ¡½z¢:iµƒcÚä /ÒOz‘X  {1‰¦ØFÏh•ZBHXʹ½É8©ƒåJ,oÁ†£ ÍIQñÁá"€'ÿ£ðÅ•Ê +:ÚH¨AÏ$Øó®áŽ´YÀñàS=Ç“5zð´ÉܾÏÙÓ²ÏÝÅRä8†ƒ,eµÃ÷îqhéàžuaÚ`ü ý„úÑ¢²pš‰«DA…yÏ5ò± Kìš9òZ´5)ë9ËòN¹½¸LX€§d}¯¸µ³î¤74©¸p„fh±ÅÅl~Žm•™—F_zë¡?HYúLssK›æ•’øZû&Œo5fn±?©L0èƒÊêù6j3‡Y[“9+É…‘øsNi9㬋Ž«ãfo&²#ÖõGm‰"E\¾4cJÞcÁ:äjSu Û'„³Eä]ˆΔD(svÈö39RÜ®è\13CA Q"'4‹³í¸Ã“(°Í]žtŒCÊüEã(½ÏpkŒ`bÉe‰9Ó!:yP¿Š¿)$Èq³†`£%Ꙇ—+\RNOíï°=y„ÖåÆe-aȸ½cÊÛ¸¬ÛTtÅ¡+'î ¯ Çâ Tšæê §ãKvÀœbTæ´sÉ?qâ-=ökÜu;t×í‚úe­›¦˜sZJ¬ú“0â%'ˆàLÕxe4n¢z^Ãïá™`ÚMܱÈpSâ‰Ü1+f~™;Î0H?äŽædîHÅ÷j·WòáYA2º°P)cTSÁuåTÓú +prlüáÝ‹Í\È^UãÅGÝئXœDÈô£®äº¦SM ~!÷:c‡2ONÑma5úÜ1öX¤Ù94s¶cÕD¿h]Óž…ó¡"ÒMîø¾ ¸Dj……Fè­Îìì=2"MÆVÁÈgÄD€“!õ¼‘¹\bÊåA¡0~¢?UäJ?ppåÝ êý$D¢øÈÔx–*È *§²ß9‰4_|‰¶L‡4ÊRÿ^H=gñ¤‘tÕDÑaÚ©gþ³—Ô“ϔECzp¹v;›yJoñá›±ºEUqŸ-ùntߣ|zTçr™c2imœ=%µ"Oàaò§ì•‘O -áêqKŒ¬Æ>m†pé©O·s„÷/íê˲ÏKi +i©'Òò€€3%lCg6sÌD5B[ĤR:iõ_hMû’±úYîê· +w ì¼t•ðÃm£±‡Ñ†GÀ¬[ª>™ïœ‰ÉHžsš·{î‘À§”ª£:¡K¡ “ÎXÃ.+¥"ùå¹.hZjo«… W +ÌAR}o{åœÛö=èæî øÊJ5âtʲàg<0Ìm˸<¾†~”º].b ¢Iƒ|HZéj»¶HËZ¡oÈx¢Iܸî Üœ!ò oRSËÔDYUϨVm1$;N—ºF°ÁªÜms¬Ë*‹ó20 Ïf“L 0KÒŠfÞjÂILkùd±pv±óo1OM) +r)_4p<Åh}L®ŸèÉð§œ}°kyž0ˆƒˆ*Äkb8e«ùŠ–7PrLNƒ{%†ù{Öè÷ñZ ºÓ üÁ9×52è:1ÛŽìQ>„*áÚˆðÚ·|[I$t6nbÈýoÔ÷ +Ãt-Ò튳1•šæ¢Í‡U‘‚|z$À''òÚ«d'ŽˆÞç+|) ØîÅýQN¹Ž‘"†…%"(„|}\›]m»ˆ” ³0m×òêÕ{ g³™-FUûĸ?IÊå^Ê!αÈöç$^Q9mŸl%PC ŸJ,•L‘…Wøԇ#«¿D‚v#Y×1{É©õZ·–Bmž¸'~¯$‘Ã2ü’¢ßY$m(Äè¡¡Ç\*µÞ­iEX„‹.ÂcïüLÛ²Ô’ÎO[‘i R§´c¸(· ƒ9È­BÄR^®”;Ÿpxo€'o!ØÀ°œŽ}Ž7X+csnê­¿ä=50ñßðþ‰‘»1åä¨ÈÓèÄP&hBþÊdÍ5Â9O&Žé©µÆà’iã³fJ,d%¶¥‚'0š¼˜øîïëAùˆƒ`kâª4Á(*^šÞÍüZlI'NsTn`6iˆO“y™åMKA';UЃ^q~ +5™ˆ¢PòE Ã’D=…Ý·TF&3o•’‰Š þ¡E ‚{`Ã:Ú58V•UÜ0'óg¤#9AÆ÷ð'àýZ2)ÿFƒõÔŽÁ9Ju+®iNɱäQ$)²(â IC©º÷òða¾Múâ_¢ ЦYò yY ƒªÆâQ '™Hjž'îiÓ¢cZôï¦ÅµGÈñ¤hôø‚$Ç‚MºšD2c25e67³¼Z<¯îxïæ +q Î-àŽ5wü>U4Š6jx*¦SeK€ã£[uWúfЋäÃZÔ7Ë&ìL¾—²Æ‚²Ü2e5‘vŽÒá–Üç±<,Ͻ Ñ’WÚ)Æîá,?,!Õ6†ÑL´ÈÈy¹ÿ*#ÜÁ ™;ÑÐÜþì.×dt§^á¯l"{vâþƒæJN2-Ë>EAFdNÚ·¸1‡·mÌ7Qâ!¢Œ€œ\–mß(€‹5™DÈz„ÆäìټÄú>þí:o÷«ãO§'fÿsu|f¿9ïºZYÈ:þÐØÁÄúÐãÇxwè;sv‡´…•ã—/¶ïÙôĶ£ &PÞyê•F}FÌ>¬'B*Ê KØWX:˜‹ ¼f蟯ÕtÀ.Ôv„³~ ÍG~|^s/-Š©GÀnüŠ è%1Á©tkÄ0©“{À FÅbÏñxŠ'0-ãZrî`2ò3Vú +- I08F ?ãÂû*Tl…—ú¢Žó«œ%²’ŒŠë\?“Æ”Ôîൃ‰ç:J Ì)€ ³ TzIšk“«fžI]÷9È ˆ€L0;Êpj?Ê€`* `T“s¶è5β<Â8ö …Œ2ø´3çé{Ô>;SÝ¡Àïúzâ ±Îð,3¡*\"xJ½ñè• +ÊTÓ Ñ[ܹ²æ âh&µ¬‹HƒE-} Ñ½‡€¢±¾VìßÒÁŠºŽv¸ãÃc·t‰[zi¬|½¡È?ž­þ +0¢D/ +endstream +endobj +101 0 obj +<< +/Filter /FlateDecode +/Length 3573 +>> +stream +H‰ÄWَܸ}¯¯àc°Ôâ"Jœ7oc8ã‰ív &@½T/éÍSeOÇùúÜURuÛÉc]UÉ»{îá³Õ¢QMm] ½wjs¾8xõ¡QçÛÅÁÊ|l”Q«³EÕÔMpju¢ä˽ +u{àW·ÊG_{k¼²mݶöÜ,–ÆèÕ?/W‹ßÀnÅmp2þzsðãM£^Ü-ÞÃÛÞÔ]á®ö½r-œÑÁQÆÖmŒj³^üªna¿p1Ø@†yAïMoÑtm:¦ ½óêäfqð:z¿xFÑ* ê +Ã4)LÃanš¦îy%œÝÖ6§:Û×MÓE îïË5˜·jùZƒiµ|Q-9Ô•¯Z¾TV·øþõF4& +Ö9üxªÁ|¾QpŽÃ°ÑüòTÃöŸuåjÜõ«6±jùVW¤óÒÿXý…êÒX© ~¹WøÈ:UY[Ç*u +¾¶b­Ö!âf‡©¥z &!Ìå­µWËÏš­uEŽoØÓÛ#íùm0ÐË;xB ¯ù” ^÷ƒ³oðÖÝòë ¤^_žkð ž_$c<ßòªë´K²zOá¬VMQ ‚å1\ƒÅi\ôÊ;H^ ¤â<×KpæŒQ€•iñø-&¬_ƒvèADw­¼Ô€í@Ž›=¿POuEéÜÀ#‹ÇÃ;Ûà¢K´Ÿ'ºêqÅ5s« =hÕ6:w¦øÈ€¹‰¸æ]uhò¯ê9f©Ç­=JÞ&=ºmñô„‘'|‚Ã^ Ûp*|ŽÕ' ¹èq5{r„~Dò•’U‘#ÎQE´ƒY˜¤X˜¼Âa[5¸ê nú];‹A©Sqዶž’ çÂϯP‚wâZÓAylN€ö²BŠ¡. Rªä%솖eðcª"žñ•Òl¨údFG´qŽ•°˜­ìØnE8ÆË„¢  àF™0žËaž|%¸{'PRïŠt;ÙA=w£ }ë|*£:Jvo@§@Z*,ø¤©k©n®ØAÚ:N5’JG]Ù&±…yqŒlC”rŽp&° øñ7öHÕ À딌ë} ©|¹CÂ|‡P]b>: qØ*™Øõ†¡P7áR{&ÇCSS-¡g¸jÎñ¨ËRŠèMª÷^­V° +pÂo+JÌ:Ã9GP¶je Ø·¹]lØ¥Êæ@ac¸þ‹l¸È”øc¬bW˜vzÜö¹ÙÎ0í•ÍZ­1ôëœÞŽÌŒÖ¶åùœm‹À:ˆaè Üþc,œð¤É&m‹vš1/‹’1W1Ð-eBow’ì¯kM60 ÎõØÐ÷ÚÊÅÍÅÜ:p‚¥>Ãm89·~-ÙIeÌâ’øiQ÷ŒC²z*Ð*†ë¨àL²—ÉÍ`Ó93ÛmoQBDL˜`ì7Ìgö͇9J2$F&^ +áÐ÷Á"’‡ÉPþ§Ìï~g@sVJf"‰sÂ9_«3Á~Þú]™ìv3Ù“ÕR+¬{[̽ä@'€—¬"‰1‡€&q4Ãôe“ïö&J·PÜ÷ÊVš5ÑÂç™Á½—(ž‹Ú9L5}§-Õç…ni ×¢8ÍG›%çä@RÓµ ÎZXj¶˜Üˆû;€Ñ-D¿Á¾ÓVêK#,bÂYk8®0 ÆrKÖ¼Aå/¸CòÔ´êPS".uOBëFé&¦õž{æÙ{›­.=â‚`{·|\ËÎ`[¿àg,`·Gr•8Ö­ŒmÊÞ5zwöJkMÝ*µ+êk.ÍÊyçA<º`9Ç;cö¡bŠIÔ4N²DÒ=SaäÖt¼Xlfp¹¡îõø…Î sÊìIÈàÑ–ªv¯Da˜y 1_HБ+§²KÉcmr­?i!LK':gwF°®.·´3]NÓ0Ú$Ád)×5%h–Ìž!±§K)@?½^Éü6ýŒ–Û'ŸÂ7˧ö!ù4Èg¸|ií„<&¾cÏ'bÞb„?>tãÿeèNFE# ºs€ß›ìpƒÀåJ þNÍŽ» é7˜Éûõ[‚ählb˜}ÑÐtî—ѽю s+ü;ÏòGSìT$àeºŽþI¦yÉçZý,kЦºò¬uœÊ"˜'*8º[¸ŒÅÀs@BDQßût7+DCªn&$¡Å"‘¾gSØä$©!$R ßÐEþ{ºˆš"˼¥JÒÎÛ4©ãî±1—àxŒlvTŠ8ªÞTȹi?+Ýo©ù³ïxCµŠ"u{FPž!r?œ’àEµ’Ôâ"æ{ä 8&…æÛÈïIW\••æn똸ýn =Ø؈¦ÂÃö¾î³ðøó9û{.JFòçV ©öŒò[dw`™rP)äßS5khºnµ˜^[7É’ÓŸbèn|=šÜ¾äVŠs­Œ†=8²‹ŠýzõKEJî7Š]æêMR[ÁTEc”ÁOó½­gòáøEZ.ܤ݉Ê;{Ëö[TÅ̘&4µÜæ žr†°Ê·&™E|íôåµsã¹MH较FÂmxJlHºW´Lï²ÈeWŒ¯plà¡ÞÐ$FN…Ãþ7U“:¤:„/2ƒ_~¡žrÈèž åêÎö˜Bçiµ"=Îù÷Cm5w( ´h8FI*A+‘²4š¿ a'ÙígÄX#e2­\‰äbâË”âÐZê HTœ IaRøÆÁ‡¦¥5 ‹¡"c÷¸x¬ IT¾È¸d2ï 7;ÆÊNƒñ‹Ü¯#•#QÉšõÀ Iɱáú ÷¡\°ÈÀñ:¾%Ù¸[Ø’TÐ{–k1úø¨š nvœ`§/±ÃŸÉXÎ3Gts,ÎèÙ£¡òqœá3œoXs¹M•\1»À˜¤ +Ã!e»} v¬mdbÉ…Ìe,«#…±ÏõqªÇxòì+9_gŠé¶ývúÂÛ'x‡9x³êŸ“ºÕ# +L÷,sS±¸ÚþçÑNG²Ì®\ìŸxÜãw€^4·TšÆ»ì +Å‘çìU¡ËÛ_?!‘—+À L-wjs¾8xõ¡QçÛ¸° ÄBÑC>[oêqÛ‚‹3࠾ññø—¶Ë6Ó嶳ô ïSüÿ'4fÑØoJ©jÑAKv ™}oÕÉ ­Ç¿±£3®ï‹-d²‰¸ÃŽvx(MãqÙ¾-¦‡Ašî[ödÏ0¶`ÊMðºÅ¬ì5CÙxÈ̳UÎÊU.ÁÁÊ|„TªÕ hÛUÉ·{…ÓKT|„굘uøBáŠD}ù™jÿ7ÔÊiGôñà/“ Ôòù! ‚ˆ +’zã…¶4럔«žj§‡H<°fõ p|þ†‘ü’ è¢3“!VJzHü aBŽ*ã#¡Å7¾2 Œf ƒ„WôÍhAו´ §ÌpÊ ¦ ²Ë$Oø .;/W’+È­q‡¢õP„^.=4Ž ÏØ)†æ¾E.õ2ìw?@`1&Ø PÖRøk£[+´rK§\Ñ›#~t{J¿.´h“Š. 7øIc—iËʧ‘y@ÓT^&y-ž·Æ5½D“·"ÚÈïóôàö9@G±ïVámŠ¸˜’üˆ }`žµ¢]w$¹Ÿçø¼jEaï~áÚ5ÚvAÎ9Ù] +j&9@¿cÁäœ÷Y­cm»ÿÕv¯£¶µ]ù¿ää¯Þ0|ÚË,TVí.lw´@âƒÁöÝØS ž˜ºê®]µÒd“èªl|)Ðr"˜«‡‚¤é§¸caLïüY® +õÇATò€‹HEHGU› ‹M×c÷Í +ƒøJ:Ñ ¨a»™A®€Ö)èÃ5\bæ€\¥î)JV©êÂ-îp´ ˆˆ•ÃäkT”J ­§zµG8¢>Ÿ€ C§›oÀ}ö0ßõ~Øñ£áWk¸Ú¼îªõkìR-ÞŽV”ÆãNoDÕìe¯ÎZHæöÈ“¬£¬É»kÉb+©6ŒÎû{[Þš`b3}Ô~ÉêàMܤô…Øöøvf{0}›5Æ’ÆSº¡ø˜çiÛIy-n&Hžw¿a‡«óQ¶ùr’¶“iå_—ݨ- +endstream +endobj +102 0 obj +<< +/CS /DeviceCMYK +/S /Transparency +/Type /Group +>> +endobj +103 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/DecodeParms << +/BitsPerComponent 8 +/Colors 3 +/Columns 2002 +>> +/Filter /FlateDecode +/Height 1197 +/Intent /RelativeColorimetric +/Length 228255 +/Name /X +/SMask 202 0 R +/Subtype /Image +/Type /XObject +/Width 2002 +>> +stream +H‰ì×Ï‹…Çñù <Š½I/ö*µë¥4ƒtc“ÝÍæÙ<ÊFKQq ì&5ÉóÜzõ°=ô "b e%Jv¢Û#WÏóó)fØò¤Ö¤º³³ûzñþ¾Ì |˜ àÀ £X’$I’$é§(€)Þ|éÕŽ_¼U÷Ê[Ÿ.¬oý»ùµÍÅËŸFÛÿÑùë;+“ä‡ÔùþJ’$I’¤ÃZû+Þ<~ñÖÜêÆ©7?YXßš_Û<{å‹Áh»me’ìCíVU5ý/ÿx,a×ð# ‡7_zõƒãozó“…õ­º³W¾Œ¶ÛV&ÉÁ©Áª1}P×û ôUÅu<¢ãoÍ­n,¬oͯmFÛË£{+“¤_µ#Xí™>¨ë‰z)Œâº¾C8¼9·º1éïók›ƒ«w£íáxwe’‚Ú,˲Ú3}P×+ ôOÅuGÞoæÿ<·ºñÊ[ŸÎ¯mž»º=mÇÿX™$‡¸vËFµg:£ë•ú'Œâº€£äw¿ÿË©7?YXßZúÓ—ƒÑöùë;+“äÖŽ`Ù¨öLÔõP=Fq]Àáõìoÿ0·º±°¾ußýze’¨­Á¢(ÊFµg:£ë¡z&Œâº€Cdnuã•·>]¼üù`´=ï®L=´v‹FÙ¨Ó]5Ð3a×ôÖó'ÖO¼öáüÚæÒÕíåëß '‰~`íæy^EÙ¨öLgt½Õ@Ÿ„Q\Ð?ûù/çV7N¿}{áòççFÛçÇ»ÃI¢Ç«Á<Ï‹FÙ¨Ó]o5Ð'a×T¿~ùÊËüëüÚæÒÕ»Ë׿NýXµ#˜7Š¢(Uc:£ë­ú$Œâº€ƒäÅ ï~ûöÙw¾Z¾¾3œ$ú‰jG0˲<Ï‹FY–Õžéž®·è“0Šë:õÔÓÏžxíÃùµÍs£íóãÝá$Ñ>ÔŽ`–eyž²Q5¦{ºÞj OÂ(® ØwÏŸX?ùÆÇ‹Wî Þýz8I´ÿµ#˜eYÞ(Š¢lT錮çè0ŠëöÅ‹Þ;ýíì;_-_ßNu[;‚Y–å¢(ÊFÕ˜Îèz®€Þ£¸.à§ñÔÓÏžxíÃùµÍs£íóãÝá$ÑÁ©Á¬‘çyQe£jLgt=×@o„Q\ðãyþÄúÉ7>^¼rgðî×ÃI¢[;‚išfY–çyQe£jLgt=×@o„Q\ðÿùůN¾ññÙ+_._ÛŽõ¢vÓ4Ͳ,Ïó¢(ÊFÕ˜Îèz®€Þ£¸.à±[ºqæÒíÁèÞpœ¨wµ#˜¦i–eyž²,«ÆtF×s ôFÅu?Ø3Ï>ùúG‹—ï,_ÛŽõ·vÓ4Ͳ,Ïó¢Q–eÕ˜Îèz®€Þ£¸.à9¶tḁ̃ۃѽá8Ñá¨Á4M³,Ëó¼h”eY5¦3ºžk 7Â(® x˜gž;}òõ/ßY¾¶3':dµ#˜¦i–eyž²,«ÆtF×s ôFÅu3Ž-Ý8séö`to8NtˆkG0MÓ,Ëò„Gðþûï¯7êw×õ-|ŸÿB¾ð ]ß²¯öá=²Ïöû}öÙgO<ñDð0ß~ûm××ñÂ(®{è«„±[÷0ŽWÀ·cÇR®7B.¢Âq)¹‘#:ñ‚·'@%œƒ®ñí逅 ¹c«’pÆÀ‚rK¥J¶lÙòC”y!“ÁÜŠ¤>¨¥½ÿSHâãÌ›y#åúÇë—oonÿÝÌÑÐ’CÐ÷ý Â0\Æ¢(ZÅÖœ²k€ŒÇãN§S©Tî½îV«UUUMÓ,;AÈCåc%Áuݲ3‚L¬R²,—ËvŽãPžWäÿ£ç=<ÏËïç4[ô²Ööd$IâkW«ÕØ/Tß²³ƒ=4zSj›ÿG€ÇD¹þñÛþ/7·ïÛƒ9kÉ!èû~a.cQ­bkNÙÇ5ÀÿÌf3Y–·¾W«U˲ÊNÒ ‡C¾X¶m—dbe¢ÿ]Ù¹l×ï÷·>š¦yž—ÕÏi¶èe­íi˜¦É–E’$×u“ßÇ¡¢”›ì«Ñ›RÛñ/ pY”ë¿íÿrsû¾=˜£¡m¶äô}?‚0 —±(ŠV±5§ìãà¿ ÃØë}x4•òGÄóMzEÐtX–ee…ñQO˜àŽµ¶é¯wYû ò5zSjWâó/_<íýõÙ«wíÁ ­`KAß÷ƒ Ãp‹¢h[sÊ>®àñpNJчo©Õjì}XÓ´ã&cFŸC_wIl±X$³àt]—õ6(&gÜäöÙl¶Kž–ÄÓ9at•bØ\noosr8Ö\’A …±2)Šb}Èó¼ÔAwÜeUê0ç™ía•b‘²,ó] ‡Ã")¶W·RU•%|oyô‡ºâ¤–f¯-:™LhØtÆã±µaóÏ[pm+(“ÜÈr¦Ï»?“óí»ÿÙD›ˆ$Iü,lÛ>JnpJÞ”ÚÀyûäÓϾúîgõ‡µs4´cµäô}?‚0 —±(ŠV±5§ìãÃ0DQäßré+ý˜×x<æo™ÍfGIf±XH’”õú­(Šã89· ‚D&ù{ž×ívÙü'“ÉæíN‡Å˜¦™Ÿ*M™Ó(©14J¥RIK½^·mûáæ¢iZÖ2òt]O”–:úåVj_çœía•b¿Ë²|””ŠìÕ­TUe½Y–•æº. £¹¤Æì¸E‡ÃaÖt6gwïÞ‚k{XA ­LÖ.¥ÌߢùÛÿ4ë­³¨V«geiô¦ÔvÙ¥¥xòôÍõË·Ï_ÿÚÌÑÐŽÛ’CÐ÷ý Â0\Æ¢(ZÅÖœ²k¸lžçµZ­¬7^EQ\×ͺ·Ûí²Èf³y”|†Ã¡ ùïá¢(†‘Õ £Û¶kµZV?4Ðf?ô  •ÉÏ–_Ô”úýþÖ¹˜¦ù@sÉ©,’LT–圹—^©½œy¶Å+å8Ž$IER*¸W·RU•ueYVVØd2aa4£Ô~â©ôXËYMTÍœ!XÛà +ªëz~|§ÓÙ¾ÐiÞÿš¦mõ|XVP¢FoJm—] +pJŸ|úÙWßý¬þ0mæhhÔ’CÐ÷ý Â0\Æ¢(ZÅÖœ²k¸lÝn7ÿí·ÕjeÝ+Ë2 ‡Å“¡±ø¡A !(Ã~¿O—è+•~Oí„Ð]Õj•}¥®:Ž$I÷†p‡¿Ýó<6}p]7'aÖ?EÒ÷®òëS©TTU¥UÇ”˜¢(|¦i>Ä\¨[9V¯×ùLäM&“ÔAéÒ9WjwçŸmÁJÕjµ‚)ß«[QŸ¬˲²Â(s¦iZj ?Ó­cÑâÐ,h.†aP‡|¹i‰’…½½½Íâ°µ=  ô™å&Š"¥J9ÓBQn4ä}Øu¹9Eö?åÀ²e1”?‹¬2Á9kô¦Ô®ÎÆ7?]¿|ûüõ¯íÁ íA[rú¾A†ËXE«ØšSöq l2™ìò<RoÅŒÇã‚ɘ¦Éªëú½×uëõ:  ÑÇÙìg3ÿf³iÛ6 ˜Íf•J…]Õ4í^­V‹]5 #+a~õè–œéH’´™*õÌR‡(>—ÝÂbTU͚ѽAeYN 8ŸJíâ²²=¬RS:Ê^ÝŠ¦ÃF±,+5†5[ q·m‹Ò³ˆ_ª/u±X°5¡«YÙkmw/(õŸ„‰¢È” YЛ»w«cíÿ»ž pA½)µÍ}pb¿ùíÓßÿñ/Ï^½kæhh§iÉ!èû~a.cQ­bkNÙÇ5\0UUwyVeó^×uù˜ÅbQ$Ïó$IJºa<g…Q2lPMÓ6cî%OsÜŒ™Íf,€†£¹ðWiôü¹'htv/a~:µZ¾¦ö ë:ëÁ4͇˜K¶íüNR•eyóêYUj«ËÊöîÐJIéX{u+þicY‰žT¾„FÌê*‹²?&Í×qœÍ€ÑhÄzÈÚÇ*÷îE1gûæˆûÿnÛ²Ãeiô¦Ô®ÊóÅÍO×/ß>=kæhh§lÉ!èû~a.cQ­bkNÙÇ5\0I’vy+Eqó^Û¶ùÏóŠd¢ë:ëJUÕœHÇqAH"é}½Àg•ÓU½^ga‹Å‚¿Ds©T*9C$X }È™ŽišY9ðÉÿa¿ìAÇ®8þ:u.•Ê©DR²EÄ6*Œƒ«uvÉf´óLU‹¼)¼BÞ¸rétJµ8`³EP³Âd‚]ºTëÖ­>,Ûä ‘ÃŶ®®íûbkçü8ÅŸÿ=÷|Üëë1ÍcÁõµ°Ãâ·—ÝôdJw5©Jê•íþÒI]“’¬³Z dø ô2™pB¡òd&Xo§Ó)«#8ŽÃßâÊq ÎÊlÛ.“‹Äó¿¯j;Q/Úý˜à•$‚ȯ~ûûO¿ùáË¿ýûõpAFv+Á8Ž“$IÓt““eÙ6gÇpëçš ‚ ˆ#þ yµZ¬ ‚½ªª^™‰®ëm>ŸóÅNÅžç•¥iZEeAƒ*}ß?ðöz=ôŽÇããå°¶mxMÓÄøµX–Åé¡”Z€0 Q;òSB%Tqì½·Iñ©W¶ûK'uMJ²Îj%¸œƒ¢(p›Ž¿màÑF£QxÇ)‹%ð›,kÜâÅ”ø;ž…Äó¿¯j;Q/ÚýXå•$‚È‹¯¿ùæÝãÛùëá‚Œì†V<‚q'I’¦é&'˲mÎŽáÖÏ5AA5¦ÑhþNŽ¢è`mèUEV&†aTŠ=ÏíG£Ñ]¦ir‚¸®‹JøûÀËVw2N¯×CˆYô +R¸:¿Çq0Îz½~ŽZ€0 Q`Y?%þ¦÷6)>õÊv/uR")I<«•@9U¨ª:N+Cñ ‡ …·ÛíVF€¢.Ø‘xõ ÿ¨„ãºZ­8bA$žÿ½pOˆZÐîÏÀ*¯$AÄõ|ôÉWŸ}û㫧÷¯‡ 2²{°âŒã8I’4M79Y–msv ·~® ‚ ‚¨1¦iŠüZÖuýxm†¬f½^_œ¬Å8Ýn·RêmÛ>𢠪ã™N§¨t]÷XÐl6Q°Z­¼ªª.MÓ\lg ÃpaG0ŸÏŸ©6%˲8¡ø›Þç¤Ê¨W¶²&%˜’ijZ ”ƒËG£‘Ÿ¹Adø†y`¨ì¿pÌóønÀ¾a2™\°"ñê-—KEQP ÷z=ø³„Üó¿î Q ÚýØAÄsòâëï_¾y÷z¸ #»++Á8Ž“$IÓt““eÙ6gÇpëçš ‚ ˆ3 D~3Û¶}¼v½^³šù|~qA`Çq*õa¢¾ÕjxÑeš&'ˆïû¨t]÷XÀ6çéé©líëÀ{Їgª…í˜eYœPüMïsReÔ+Ûã®™”`JÏj%P.‡}¼pØøüï~áìÍ=AEº®£~ÁˆÜ«çyž¢(­6 c2™ðžDîùß ÷„¨íþ Lä²AœË¯Ï?ûöGëéýãpAFv‡V<‚q'I’¦é&'˲mÎŽáÖÏ5AA5&Š"MÓø¿œ›Íæz½>¹¼Ñh Ìó¼‹Ó˜L&g0ˆ,A½išâ.ß÷Qéºî±`¹\¢À0 ÖÕëõІ!'²8ªªÂ8ž©H–eqBñ7½ÏI•Q¯l dMJ0%‰gµ(#À¾|ÁÁ;«pÈ 2,Š¢8ŽS\Rø›N§ì7žmÛ—mȽzûük§Õj÷Ò‚ r9‹Üó_é%êE»?½óAb|üÂùÃw?½z;.ÈÈîÖŠG0Žã$IÒ4ÝädY¶ÍÙ1Üú¹&‚ ¢ÞA (JÙgpù¾_¶Ö4MTŽÇã‹s˜N§ÇqœJ}†¨ïv»^tAzœ P*]×=©1 5°)~®ª*g 62¤ç‹EÑq(Yµ°³,‹Š¿éÝNê$õÊö8‡k&%˜’ijZ ”ƒ{üV°x³Ê4‚…·Z­‡*4Mã"kÜg Y.—½^¯Ñhä GZ0Â^öùß ÷„¨íþ ¬òšAÒzõ÷/Þ¼{.ÈÈîߊG0Žã$IÒ4ÝädY¶ÍÙ1Üú¹&‚ ¢ö,—KÃ0Ž?ëº.ÎBÇqXñÅ „aˆq,˪Ôû¾úÁ`pàE—iš‚A\×=©FDZ Çã1?r·Û­,‡ƒ¬ZÎê0gÓ»ÔIê•í9_Ÿ’ijZ ”ƒ{Á¾'5ìët:e¡ø…cUUJ°m{½^s²•5îs!KEP [ü½Z­—Ë=ÿ{ážµ ÝŸ•]‚ q:ö?_þ5x.ÈÈêbÅ#Çq’$išnr²,Ûæìný\Añ3Áu]Û¶ÍøþEÉt:eu{žwñîÄ0ŒJñd2A=äY + +áñ}Ÿ¤`µZ)ŠRh4M+>´,«ø\ëõúxU†g•ÃAV-lJÿ5›Þç¤*k©E¶{©“IIâY­/)ÔÀwÞ8Ò;)ãÞh4 +/|AA„Á`2UUu]ït:ðÏårY™­¬qŸ5ГÀ·d~Ù¡’xþ÷Â=!jA»?{ ‚¸”_üò7Ÿ~óƒõôþq¸ #«—`ÇI’¤iºÉɲl›³c¸õsMAÄ®ëøóþ¾8Ž¦i' C¾¸Óé 8‚/ºLÓäñ}•®ë–ÉZ­Ê–ËeEF£øg·Û-[Õl6 ˆa ¿²j–¢À²¬k6½ÛI¤^Ùî¥NJ0%Ygµ(Ó€”Êd½^e¶mŸÔp +ŸÏçXÎ5ÙÊ÷Y-NceON"ñüï…{BÔ‚vö@q>}òÕçþ×—Oÿy.ÈÈêhÅ#Çq’$išnr²,Ûæìný\AñA3ØßáŽãˆ¬ò<Ïu]öÛ¶1È`0à¬Ïç¨ÔuýX€^Ó49q|ßGåA2,“É„­n:â?¡Š²UÝneÐ"N|dÕE‘`¨ÊMïvR'©W¶{©“LIÖY­Ä²,ÜR*“A€2UU¡!ÇNáP zW«ÕÅÙÊ÷Yɧ×뉯’xþ÷Â=!jA»?{ ‚8‡_8_|÷Ó«·óÇá‚Œ¬¾V<‚q'I’¦é&'˲mÎŽáÖÏ5AA:†a°?ÈMÓ\¯×eâÕjÕjµ@¦iÚÁ犢†ïû'—Cdv;ÏóŽ5l&œ´a Tº®[&‹¢k6›–e«ª +®²Uóùƒƒ2 CN&$Öiˆd^¹éÝNê$õʶ@Ö¤S’uV+Á»” ¢@×u~9…³åÀ…µm{:úÿC<ÛÿóÕƒƒÊé<[Ôx<¯Bâùß ÷„¨íþ ì BŒßýéüKð8\‘ý ¬xã8N’$MÓMN–eÛœíŸk‚ ‚ >tÂ0l4ì/óf³9 ¦Óéjµ*4ËåÒó¼n·‹MÓâض^EQÆãñ`>ŸCdÔt:“ù À4MNÚ¾ï£Òu]ŽÒ²¬ãÿ}ôz=~[`wC&“ÉItzÝ€v=k-†a †í-Ìh½^ŸµéÝNêgí^ê¤S’rV+aï¤ÄQŽFÿe¿~BÛHÏ8ŽÏM7ݪž”“sÙ°`rQÛ£BPÛÝ(»mºê(¦¶R`×ٲɨ'ÓCÉQ=úP¨¡PT¬ö1eÍÑG_uÕuÞ÷Õ+…¾}«S[Å£?ß?ŒŒÞyõ¼ï;£ÇÞŸŽ4»qv@òÂãxs¡©Çýy5Ìñ¸Óht—šŸf“O]nÆ”J¥é 5Ï4¯ûÿuê=ÁR¨4}“ Ÿøѯÿê>ñ·ÿ²2‰š BJ©”YZë±5‰Éº]¼î÷û…BáRÃ7S“ ƒ³“”Ëe3²Z­žz+ŸÏÍ,&~mBÍÝnw:²Ýn'Œìt:gëïõzÉ{b–S,ã—˜_MI{'vvv666’k˜ãZö÷÷Om¬±¹¹i^{žw©]Ø“Zj_Ïõ¤R–4—{õB®ëNg0%%Œ4õär¹é`óõrj@òÂÃ04'ë¤S«ÕÌø³“Ìñ¸Ó¨¹§Ì[æ×hçwwwÍ=9}ËìaB13ÍëþO¿'X +•¦o’ò1°†¾}í½Ú§÷É7Û­€KÔ…RJ¥ÔÈÒZ­ILÖíà¿Ž·¶¶ÒüŸÏç=Ï›9É`0H3I¡Pè÷ûçU2V.— +îv»Ó‘ív;yuæã‹Å4{2]×MùßM§Óy§k ÃðÔ*¦ööö.û¡ {R+Pí|O*eIo¯^(>¿))yp­V›n4§ÞM^¸9Äéšåÿwv9æ³ÎN2ǽMs æÚ ·½T*™©’÷m¦¹Üÿé÷K¡ÒôM.¼+¬¡›·~ôÙWuïÕv+ d%5A!„”R)5²´Öck“u»øŸN§S­Vs¹ÜÌ?ã766<χɓìïïŸ7C¡P03„a˜pùôÚ­­­„aÝnw:m»ÝN.iww7^†©0y|œÙSöyÿÚäóy×uM1W°–Á``æ9U€ùSá|èë…<©Õ¨v¾'•¾¤·¹W/ˆz½^òàxÍårùÔ» 7[7]B©T2¿Îœ¼ÑhÄo†³‹ºúGïððpsssæΛ™»7ùþ¼Ð[ÞÿÆtü…ß X|•¦orÞÃ`=}çnëþãÛ­€ÕNÔ…RJ¥ÔÈÒZ­ILÖí`†n·{xx¸g={öÌüz|||©ƒ¹jï„çyý~?Í…GGG]ËÌ<²×ëE#ÓL;l^¤J†æZ³ÓµÛmSjòUïb-fäÁÁÁ´†³3§ÿÐÈ¢ÔÊT;Ç“ºTIov¯¦œ6ýdÎ%ö«#aáµZͱr¹\òwŽÙ[ç„Ycú8eŽžaj6oMw>úò4[wáä)½ñýÿ:¶'Ãáp^õ +•¦oâ€õÝûüÙï{Û­€uHÔ…RJ¥ÔÈÒZ­ILÖí²7s¹œcíìì$ÃÐ9áºîÕT,ˆJÓ7q¬½[w÷¿øçv+ d}5A!„”R)5²´Öck“u»€ì;'ööö’÷ûýé`Ïó®¦B`ATš¾‰`ݺӸÿøÅv+ dÝ5A!„”R)5²´Öck“u»€ì ‡CçDµZMìºîtp·Û½š +Qiú&€µtóöÃû_l·BÖ3QBH)•R#Kk=¶&1Y·kXÅbÑ9Ñh4Â0<;f0ìììL‡mnnά°JÓ7q¬™›·~üù×u¯¿Ý +YÛDMP!¥TJ,­õØšÄdÝ®`!´Ûm'&—ËÕjµ½®ë–Ëåø€b±8 ²®¸j•¦oâX7o?üøó¯ë^»²æ‰š BJ©”YZë±5‰Éº]À¢h·ÛN:Õjõèè(ëz Tš¾IÊ'ÀR»þþÝ>ûêׯ·BˆIÔ…RJ¥ÔÈÒZ­ILÖíÈ`0ð<¯X,:³äóùZ­Öï÷³.ÈL¥é›Ì|@¬Œëïß½÷è¹ë½ª·BÈ4QBH)•R#Kk=¶&1Y·kXDavcz½^Ö ¡ÒôM+êúûwï=zîz¯ê­€r*QBH)•R#Kk=¶&1Y·k°4*MßÄ°r +×n|øÛ¿»O_Ö[!df¢&(„R*¥F–ÖzlMb²n×`iTš¾‰`…®ÝøðÓŽûôe½B5A!„”R)5²´Öck“u»K£ÒôM«âÇ¿ù›ûôe½B.LÔ…RJ¥ÔÈÒZ­ILÖí,JÓ7q,¿~uè>ù¦Þ +!)5A!„”R)5²´Öck“u»K£ÒôMËì?ÿó'_þ»Þ +!—JÔ…RJ¥ÔÈÒZ­ILÖí,JÓ7q,§[w?ýâ_õV@yƒDMP!¥TJ,­õØšÄdÝ®ÀÒ¨4}À²)\»qïÑó^¿Þ +!o–¨ +!¤”J©‘¥µ[“˜¬Û5X•¦oâX*?üå_ܧ/ë­€ò6‰š BJ©”YZë±5‰Éº]€¥Qiú&€%ñ}÷OŸ|é×[!äí5A!„”R)5²´Öck“u»¼[½^okk«\.d]ËÒët:f'Í~šY×’JÓ7q,¼÷¾÷‹Ÿ<~Qo„y%j‚B)¥Rjdi­ÇÖ$&ëv d¦P(Dÿ–º®›u-+âʶ”³»”R©m×îînÖµ,½ýýýh3ÍM†aÖåd ÒôM ì[ÅÒÝßýãׯ·BÈ5A!„”R)5²þÃ~ÙúŽTqüvîR¦Kç.ÒŠ"‚Âh‹(Z‰ - Ï÷5Yј’ŒÞæ6ÈeJk”w:K`EÀ&eJ·nÝú#N®8xx£ÙØO;ÎKÎO§Èõ=s¾ü&I’}Ê¡éãAAANÀ4M=ŶíË£ÑË©¢(—G»&ÕΡBªiiƒ¥‰ªÑÍ\„õzMÇ¿O]î8t}ÆÂ{Åó®AyP<χÙkB¯×SR4M[,M—‰ÜËå’JE’$ß÷/ H£ä*©0P;ÄϪ½Óé(ïÑuݶí DV>‡ +©d¤" òU;¢[¸ôc XÁ%ÐòxåÀÐôq ‚ ȃ¢ª*½/ضuð}¿ßï³×Š\79Âu]ªß™z*ŠR_I¥j'˜¦ÙjµX͇Ãúªª‰ëŒ´’D'Iåe½^ÓA`OÇqXíɲ Or=ƒ 0 ƒh5;|µO&6WQaU5mÀårI=-ËâxÞƒé +ì AFùÁO¾úüË>¿lÐÐЮiä Ã0Š¢8Žw)I’ìS Mׂ ‚<(ªªÒ[ƒmÛ¹>¾ïw»]êÖëõ®\$ò!âº.Õ ÈŒïL=E©¯$µ¶Û-«yÀ0Œú +«ƒëŒ´’D'IåE×uÚ#ô[ä,ËÔDŸ_~dÏó†Ã!Ä?z.¨ö~¿_úm¯ê˜¨iÂÐ$Iºoý1˜®Àžiù{ŸþôwöóË íúFÁ0 £(Šãx—’$É>åÀÐôq ‚ ȃ¢ª*½;ض]äfY{˸f…ÈŠëºT0 3¾3õT¥¾’ÕN‚ ßïSI’<Ï«¯¶Ê¹ÎH+It’T>PdY& ÂŽ›aUINPílÆV«uI¨Òc¢¾ H=¡XÈ|O ¦+°'Ašà“ñ×oÞýçy¶ACCkÄÈ!†aEqïR’$Ù§š>®AyPTU¥×Û¶‹Ü|ßg/Ûí–ü!šþžÙlVº;…> ‚À4M~xž—»–, š~yfOš¢4¿Ú×´q Ê麒.(Žãª Ž›ëºÄ ~”V•mó•iÿ¨HòêI/T0ý~ßþ.ðfÙUÔSQ6Ô|>?o˜¹ª²^¯YÙ†‘õ)šC–óÞ/ ʲ,VŸËåR¤øÜ‘B4¶ÐêÑ‹8£ÁÜD"ΓŠøÀÙ,§~‹(•ìJØe´AMÓ8ž², z–"¨ö#‘çvWÕ1QÇ$À¿NŠ|7 ¦+°'A®ËGñùþñ<Û ¡¡5hä Ã0Š¢8Žw)I’ìS Mׂ ‚<(ªªÒK„mÛOY–E<Çi·Û¹—”^¯çº.'…$IÄÓ4Møs½^·Z-6B¿ß?Z•t»ÝÜtКçyœtÛí¶h-ÉÅ_~Tm“É„>¤@ 0Nœ »`‰Ñ…ÃáãÙétˆ¼,Ž›aE/vzôR4M+) DfWÑ犢¼^6Lâj§Àé’ÜYÍå¼÷»\.!fÑ! ¿…ìHu]ÏŽžÌf3NœÒ‰G8O*"'\ò-z­nW–eѵóù¼È Þ8›¶³xŠ,‚j÷}ŸÃ%¡^ËŽ‰:6 Ý‘`î›Át–¿s©‡ÿú¯oÞ}û<Û ¡¡5kä Ã0Š¢8Žw)I’ìS Mׂ ‚<(ªªÒ{„mÛOY–©çv»ÍõÑuUiµZ–e¥ n¦i:ŽÎGËEaý Ãà§ÇE¹æó¹$I¥ÕB%"Õº®ËÎçHĉsIGA@‡IáÏ\7x}lüõz]NÝ|ßÏmÿ襌F#~;JQ4ÏóºÝîyÃä#®v + ‡?«¢9PÎx¿ðâ†Ãác,*Œ?R`2™ˆÄ©Öár©Õüzñ·¨Â] ÀxéBø²‰¸Äãç"¨v¨‡ºH. õZvLÔ±  p꺉| ¦+0¾V©Šïú§_|é<Ï6hhh·`ä Ã0Š¢8Žw)I’ìS Mׂ ‚<(ªªÒÛ„mÛEnAP·V«•ë£( +õi·Ûy>Ÿ/—K]×ûý>{m±,+7u˜ÍfN'{ßÔÙqI’hIš¦A.hÖBjò/ø‘›h4±aÁ"O&(þEÃà9¿ZXÅV ¡Æãq·Û=Jáy^6È%]ä¾P•ëc[ÔŸëæû>­üQûGÿ‚—«¤ôz=VÊwÆs£É²|ö0OGíG°Ùat‚s œ÷~a†l¿YL†ÉŽb»Ýæ–Í)”Á¾DæÇÉmð‡ ¥R”îõâoQå»’M +ÛJ¤l(X<~.‚j‡÷NÝ ÓKB•ul@ +d$> xÁÈwÀ`º{B¤~>ûÍ7êWëçÙ íFŒ‚aFQÇñ.%I’}Ê¡éãAAEUUz¡°m»ÈͲ,êÖëõøÝn×ó¼#Ó4%I¢¹Yhê ¹¶Û-MPçápH|Z­–ëºG¡|ß×4Í0 ~©@ÖÖB^¶˜l;lµ(‰­d½^·Ûmú_¨'äì.ŠX,4ãx<Îõ¡I Š¢äº±ƒÊÖPºÚ¡> 3~Ù• ³Aµ18ü—ý²‡q]©âøvîÜ=W¸"¢‰hLñ­(‚@DBÀu +”Ò4({ ,à>\¦zJiѹ#®®\¼+|eË”nݦõÇzwÅÁGsmg<{µ7oÏO§ØÏüç|Gæ×A®¿u!_×uÛ³«Ø`‹Î°Û%…Ù@‡-ÐŽ°7ÁQäFEdnåÞE£ŸJЩ¡§7Œ +‚@\¿‘ig_ç^t‚RÏ×ÄK@„}iCůۻ=Ø A/É—Ö׿þÓ?–î=Ùgeõ%˜eYžçEQ‡Ã`»v:rYp€Èa£ZºÆw@:ëÌÎFǧøÈ4ÍÎH` ¿8jCŠÙ‹È´·ÇU‹Åâ\äuë/¤¶ÝnÏ£ÚAÓ´Zþèô)) >çç=ÜAnT:ÕFy{*ÙìÎUà¹ê)Û¯ãñ8p_δƒ8¼úØÖP )¤÷šÔiÃ?€âQ Š_;·w{°‚ ^†/¾ó½ÅûK÷žŒŒì3´ú̲,Ïó¢(*ʲ|¬xbxíëš ‚ ˆ7ŠeYøq†aÛ!I’Ùl†>º®§iÚðÙl6è°ÛíÎí 5M«ÝLÓl;°_:à [Ÿ“‚GèiÛ¶pºŸ„ +¹sl¿;Ðåú‘ªªèæy^[›eFû)®íl%DZ`©ŸÇ(¦½ÓÞ ‡“,çÑ õ·†Íåt:µKʶ :Þ>ݽî 7*jÃßE£w çóù97¶@»—ÂNx¿ù¾/(%}MˆètÂ?€4KBüÚ¹½Ûƒ 6š ˆ‹øñê/ï>ükéÞ“‘‘}žV_‚Y–åy^ÅCEY–O ¯}]AñF±, ¿/Â0Ä߇CëõZUUö„õALÓ¬ŸN&Áí4Mk?e7Úív|)PÀMÓ4Èõ†[@Ž|çù|Ήñp‡S=¹,øl·[ÜÑuÝsñ@/t]Ç¿nP%í]ð)t¿3Œ8ŽÑ§­NmH1{97í|À““,¿/Ñ߶“,XR`:rÊÒÛèár£Ò©6Ê»hÜ®±óÃÉ.Š"të|=^ +;íçPŶí$IÄ¥¤¯ ŽþDØáû¾ øµs{·ëm4AñÝüô¿ÿféÞ“‘‘}ÎV_‚Y–åy^ÅCEY–O ¯}]AñF±,Kü3Äqœ¶Bš¦Š¢Ôóùœ¿Ýz½FµÓéÔxŠ¦Óioä°ëŸ$‰H¾ªªŠo±Ûíp‹Ífs.ZÓ49"žç¡'ü=J|â8æÄ»`0¶m×CYnÐk9í]zÓgÀ1ãÇs«/Á,Ëò@&“ 8AÀQÃPîë&Š¢†>2MS$øÝn§(JCv:ú¾ßé;¢Ûz½îÕãýg³™\´l}<Ïž…Žã «{Õ?†ÿ¦iŠ[Ãt;N¸Ü¶íÎ-zÓg«SÄx¬bòa§¤WÁ¨àªÕjuiäCú›$‰ëºº®ßpéÌE°¤ptnŸ‹^ácʈï¢Oåv»Eö”5`p8.ݨÚa®Ä·~Mˆ„tþDà… Rço·w{0'¢‡Ÿÿîoï¾úÏÒ½'##»«/Á,ËòV<1¼öuMAÄŲ,üîÃPBV¡Âb±ÅHÓ´-…:¦i^Ãñx\­Vªª6¾¤‚ `Ýà_|´^¯{eã8fS“‹–­çyóD×õz9¶DÍív‹%IRÿˆSÁ®mЛ>[=äG;z1;‘˜vTMÓp$%ùó…ýÏç¬Ïl6s*|߯OPo.â±çÂuÝKu†;Œ5*#¾‹á§’-/?;È=á` +꟣wB³Í9ï iÞˆÀé@7‰—Õr{·»!BŠ/tcñþ£õçÃÒ½'##»:«/Á,ËòŸ£3hÊE UEOÏóFÉBh´£^n›Žã8¬'ˆcûþË~Ùƒ:Ž$øeÊJ%ƒ“Ã0‘™Ä°qäa Ã0#6Qvíä| ;£P\ô`¥ŽÅáK”Ü‚×Á¬:TªÔ©~,Û\¡æ5}’ÜnK²„­ú(Ïêêêªîêênø ­ä§$IœÕ¼>L/Õ4ã{{ëÉ$\›í¦iR}˜ Ïó +{žåÜú:Ž#2ot™ÎÅB[Éês û7wS\ °¼B…©RU-:G]¹Ûíh¨?|eX,ñ…ã#˜íº®_Œ¨’c¢€‘ H T™¯ùH gk'A„y÷÷Ÿ?~YkÆåÞ…‚A„aEÑ>!ŽãC‘¡éãAA–¢i}‰Ø¶]ÌÈx<¦FLÓ,ì 5Òï÷ I™Òuý>™LhÓ|>çXp‡jv»ÝÂÞ¬RM˲*‰Bv]\וe™ü¿Z­ÎyÿC°äÿÑh$âÛ¹ð}ß_Ð&óte¶†!IÒÅl)“´¹ëËÆÈIÑétÊå‰?g’ªËóò +¦JUµHÄñ]Ùéth/–£ >³ «,b¹\f·ƒ`¶³  (J®{•×ÚÜ€pžhB¡+ìáÝ1œ­Ažc4ùõÓ×?5cƒ‚‚òBÁ Â0Œ¢hŸÇñ!áÈÐôq ‚ HKÑ4>FlÛ.fÄqjDQ×u‹Ù¡Fúý>_Óó<Î(¬?ÏÏÏ©Ž’$‘&Y–Ï…¼Ûíz½5²\. { CPM˲*‰BÅbA-Ð…†¨Sj¾ïÃGÒªëú9oSˆ„É@³F)iíÄL³}»Ý²«Ï÷Š£Sl}¡ý>rû‚>ë^n,OÿÄžÕ<ïv»T§Xž—W8U—*åkÑ-v%¬#íøÊÙ܃eâx; @­Ó餚Äk;›¹Ûª’cBÜÎUSD•aB +{xw gk'A.ñæíûóÿjÆåa„‚A„aEÑ>!ŽãC‘¡éãAA–¢i}’ض]ØN¿ß§vdY^,¹j®ëÎçóN§óòò’m¥À¸Édj𠦚v»]·Û¥¦ÇÉíK$éùù9¥]TU¥:£Ñ(×AoaV©¦eYUE!i¤œpàcö‰ +Ý9ÆEÂïõzTgÏóRÆËO¦ç²œŸ`’s0й"@º‚Ãçlrz ³z.ê2Q¾¥"}~~ΪcÙ á[Ñ4M3e€HáÃ0®µvâN¦l¶ ]|ß/6…×tX -aº ÞñxL;²rw.m…á$Ib=WS»õéLbð¬JáTiª”¬E·Ø•Ëå’vƒõÇÉÖ(>Y³âµfŒÍ½°)>·Ø€6‹EaïŽál rí¬"H«Ï~ÓŒ + +Êã 9ƒ Ã0Š¢}BLJ„#CÓÇ5‚ ˆð ýø§UïyT4M£۶˘Úív¬5>///Y ´Š ,˲.Ñív}ßÏíîy±‹Eq眂ެRMp»Â(D0M3eÐuݬ|L©AG¾e‘ðÁs˜ÃܸæóùµÖNÜÉA×õ‹Îz"²#8ž—Yß^¯Çé­Ãôg®Ÿl+l7Y–9SË!`U +§ªS¥L-ºÅ®$I¢}EºÀ–©Q¬¬aY WÕöñxL•§ÓiSn± £ÑˆvÌ-qÊp¶ŸUiï~üòñËš±AAAyH!‡`aFQ´Oˆãøpdhú¸F‚¾ ªª6í‚ e™L&tS¯V«ò_^^E9÷’eYÓ4Û¶sûÒ"3 .´\.{½^î(à€iš¾ïó-€Nª¬± Ãà[ô‚¥f-˪< +>®ë²6»Ýî9MÖ Íó<¾eÁðÁ(¤Bƒ¾'¬ñ'ó"Žãœ[qê80ŸÏASÐ&ßóÂë»ÛíÀ\o§ÓijèÜK[Évƒ…è÷ûYkN'µWX‰¡ÚT9•¨E·Ø•lh7Âh4:—´°vP¦ Urû^UÛÙyRƇ[l@¬&± Wؽ{d8[ƒp¦AZËhò맯jÆåQ…‚A„aEÑ>!ŽãC‘¡éãAîx<'ä¾’[“ºÌ¨ªÚ´G‚”Å÷};aµZUnÊõü˲¶Û-¿(g<ÏÈu]°LG!Œ.î*Œ]¨Ã0Çé(î-Ì-Ѽ]À¸ýÊn·;§MT º\4{ÕbÁ , š Ù.N&6LJ™äñ¼ðú¦’:²+H†>ç|n+|„ §ERýb€åX*LB±ZtªzW‚)z}‚ÿ¯íC/—KÖ“‹›ôÚÚÉpnûWxLT¾O‰çtna~Jzx_ gk'AÞ¼}ÿaþ»flPPP[È!A†Qíâ8>$ê<šá’I¯pyÕ"H³À…¿Óé°ç)üdßžH ¤®4ªªÖ0(<¦LÓ¬°j±ep±X`DAä¦À•U’$r}Ò4­iw +¸ÎÑ«)Üñšv§V†³5È‚ ¯ ~úåó×ïš±AAAyx!‡`aFQ´Oˆãøpd¨í\†{Hª(õz½ÚFG2˜¦™=U ÃhÚ¯v‘šUUo=båU‹}ö:NUÞ"‚ ‚ä2 ÈÅC–eß÷›vçq€›akotÃÙ$ûDBò—¿þm<ýMû¶AAAi‰C0‚0 £(Ú'Äq|H82Ôv.Û¶*MªªÖ6:‚”A×õìÙ:™Lšö«]Ô_@*¯Z®ëbDA¤f–Ë%½{,‹¦ÝyÇ¡³jšfÓîÔÍp¶É>‘¤m¼ûñËÇý¡}Û   ´GÈ!A†Qíâ8>$j;—mÛNU'UUkAÊ0³Ç«®ëMûÕ.ê/ •W-×u± "‚ R?Ýn—Ü=úý~Ó¾<“É„L©¢(¾ï7íNÝ gkì AZÅèÿùüÕѾmPPPZ%ä ‚ Ã(Šö qŽ µË¶m§ +”ªªµ.Îv»Õ4­ÿÊt:má%êÁ(¿¦†adOXøx#‡‘\ê/ •W-×uï¢ "‚ ò`˜¦I¯p7nÚ»^’$‘ù„ÇEÓî4Àp¶É>‘¤%¼yûþÃ?×¾mPPPZ(ä ‚ Ã(Šö qŽ µË¶m§Ê”ªªµ.Ž®ë)?Áó¦BJQ~M=Ï£÷j‚,ËðñF#¹Ô_@*¯Z®ëÞEDAäÁð}_Qrý˜N§M»s÷˜¦I&Þí| gk'i%ƒŸ~ùüówíÛ¥BÁ Â0Œ¢hŸð?öËÔ¬Šã¯›.Õšbq +á¡‹±ŒÅ: "J$ÂþÉ],‚)Aæ'®‰]°zX X¥°Haá +f®“2å´i§ÍÌd’‡‡ŒÃÉ?I&Þ÷÷xIî9÷ÜsÎœ;Ï÷ý]À>Bi÷2ç\˜Tªª–¶{vcBœùµƒ'q–šÒëôh4Òè·ùv}]Ê gŸZ–eÝÅÀã1™LèŃ^?z½Þµc¹{è?‚ðEn<_;–ëÐ,HO¼1¾òÕo¶ûgÃ%AoYá%è8Žëºžçm|ßßì#”v/sÎ…yEo)¥ížƘ'E~í ÀI ¦AùäìS˲¬»ƒHh¤'ÞßøÎÏ>~÷.!zã +/AÇq\×õúí¢3\BE^‚Žã¸®ëyÞ6À÷ý]À>Bi÷2ç\˜`ªªf14M“ض¸`³Ù†¡ëz«ÕÒ4­ÛíÒß“É„¾/'cLˆ“¶.à'1Îétªhpø‘ÎXØ­¿¨º®ËM„õÑ.¢6ÎR\ÆXÜ-M6ú>‹9í’ëŒWéÀr.€¤9Xò¾}pû|í[?üèÝ¿:Ã%AÐ1…— ã8®ëzž· ð}°PÚ½Ì9¦™ªª©V‚‰aô¥eYõz=×ä ãÌçóSr£Ñ?›ÍE)æÖ¶í,YM<¦iš•JEâ_Ó´òSG×õ\žÆãq¢Û ÕTX–¥{¤V¤ØI³Äy¿uL=Z®£ØÔ’@…Èë0n’øüJ R +¨dra}±.bŒE}ÒSðüüœÝ¼×ëe<àµ:°„‡ à6i¤SÞÁ¸A>lÿá“ßý»3\BI^‚Žã¸®ëyÞ6À÷ý]À>Bi÷2ç\hªª¦Z &†aX–E†æçl6‹ûßl6Çq@¯×;9…ª(JaϵZͶíùY­V•JEî\Ó´òS-0N x ¦*­¦Â²,ÝBÙ8¥äQ¥Æy¿uL=Zö¦ØÔ’@µÈë0n’øüJ <èº.7Öî¢ñx:4M3u.ÅyyyI=Ý;ðÒÀÍÒ,H§¿†p;üàùô÷fg¸„ ’+¼Çq]×ó¼m€ïû»€}„Òîeι0ÓTUMµLt]'+áËjµÊÓZ­}L¡ÏÏÏ›Í&¾YiâæµZMK¢Ñh˜¦™ñ°!Ýn7j²Z­¦Ói¿ßW%¾˜•7?///t̸+JZ¥R9|¤È¯’j!íqCJ5}O§ Rr,Ë¢?F£mš¸Ñ±ºDM3n-@ñ'— í(ÎÙlÆèúX¯×?ÅͲ£`u×u”-£Õ)›Z(yÆM¨srmj†àª#7‰¯wU™fýDcþN¬,5ÿz½¦ÞŽÎŸjõ°©+§ÖSШ·Ü—~¸n–æ`AJ|ÏàîxïýÚ¿þGg¸„ Ê¢ðtÇu]Ïó¶¾ïïöJ»—9çÂdSU5ÕJ>«Õêx<Þl6‚}™¸Þ0ŒÔc‚Ežë¤¶mÓÑ'•JEâgµZÕëõxÀ³ÙL¾WR ”àDŠM- 4ò:Œ›P åÚ4¬Q]×å&’.’40 ;[‚¦5@vóÔÃ^±£\è>¸MšƒIþâÀíó½Ïþôéç_v†K‚ ì +/AÇq\×õŸKLŽå‡üÈ ³»º\ª)±©kÆã±°‘¦i©V'Ö4DðÚ½¦iÆ“I‘dÜŽ2S«ÕâÈm®8©ŽyKp:ñ©uvROaYV\E1 Cð ëºÜäX´©]¯lj0ù¾XÜêf;0{Z^‹>\þË~Ùƒº²UqüuÓ¥QR<P8¢Ë+(Ó…øAü€óx¾{Î`3ˆE +ÅD”¹<ß¹Ï.e:¬6)DRXŒ(hˆÈKʔӦM;™äâbðv²gLæÎÉY?Vs/û¿ÖÚk­ì5‡ ˆfÒ-Á8~Ñ|~øË¿<¾]“‘‘‘ÉZ¾£(Šã8I’}Fš¦‡ŒcÚö²ïûè‰3M³Tuömìv»a–jW««],|•mÛH™‹^òÝ»ápˆäƒÁ@\‡‘ÜqÎùKëc6›‰帺j©€d Ã(F™"Ížæ ¥qÙV¶Ûm‘bž‚€­jé8Ýpe[ ûjUNé-Ø1°,Kêžç!®ëò%gS™¢Ýn‡:{~†¥©žùÍf#q[1*™@ñ²¼«ñÇEAQ½Ñìì×A4Ÿ/ø~÷ÏÇ·k2222Ë—`Eq'I²ÏHÓôq,PÛ^ö}=t¦i–ªØç±Óéìv;Á ÝnÉÇã1_bÛ6’@æ‚á€v»]ÔÂ?Ã0—o·[Ã0Ð}9çÏnÇqÄ#r\]»ÔjÀØ @¥Ížæ üé…¦·Z-$ ²AÙªÂxHåyK}”jA%°¯Vå”Þ"$±,Kêžç!®ëò%lžâSï+‡¹| Ù œÏç"BYô'Pª,ïjüqAA\›Þh Æ~DóùÖÞ|òéß®ÉÈÈÈÔ,_‚QÅqœ$É>#MÓCƱ@m{Ù÷}ôÖ™¦YªB’V«xÐápˆ<8ŽÃ—ض$¹`¸Õj%Žåîî9Ùív—³äaÊe]ÕPj5,ËBJóÔéé ä?½³Ù 7 c»ÝÊeý0fâyÞR¥ZP ì«U9¥·€² ”Nêžç!®ëò%è¼ÔM&öŽœG ÁN ä/¨•Bûã"‚ ‚¸6½Ñìâ7.A4•ïþüO¯?ûâñ회ŒŒLÙò%EQÇI’ì3Ò4=d Ô¶—}ßGÏiš¥*I‘étŠ<ض͗À$ÌÃÇc¤…ÿ‘J°, 9Y,—£“†apó©¿Ôj(4H§§'¤êãº.:ï8ŽlD Ãv»\yžWUž,Mî£æÕ`_­Ê)½EHO„Ô-``˜O¾D6É"óù\'aö-ÍVú'°¶AAĵé–`—?r ¢‰üøW}|»&###Ó´| FQÇq’$ûŒ4Mǵíeß÷Ñ‹gšf©JAÂjÛ6_œ†ë÷ûH»X,¤>›Àl6»tX³>ºR(µ + Òéé ©úX–…ÎO&Ùˆ—’ UåÉÒä>j^M¶­VËÕz'{‹ ¦Kêžç! _¢SêÕj¥“ðt:½Õ ¬íÇEAqmz£%Øñ|¸ÿÍߟÖddddú–/Á(Šâ8N’dŸ‘¦é!ãX ¶½ìû>zôLÓ,U)HøAmÛæKà’€ÁpÒÎf3_’ûû{äÄó¼K5ëS¡+…R«¡Ð žžªO«ÕBççó¹lÄœápˆ\Á„T•'K“û¨y5Ô^-AÈ:d%–eI…yp]—/ѹµfÂ7<µ] ‚ âÚôFK°â9ðÕoþàc÷_Ok222²J,_‚QÅqœ$É>#MÓCƱ@m{Ù÷}ôô™¦YªRðƒÚ¶Í—À$'‚á ½j·CŽçy—"jÖ§BW +¥f Ãü¸®ë8Žõ^½zůOiƒtzzBª>l’›ÍF6bÎxj^MµW‹C²Y XàA 5|‰Î­5¾á ¬äjÄUi·ÛÔš—5Pƒ&‡ z£%ÿ㊠šÀ×¾ýøÓ7Ëǧ5YU–/Á(Šâ8N’dŸ‘¦é!ãX ¶½ìû>zýLÓ,U)HøAK¿á’€ÁpÕn‡žç F”­O…®J}" ÃÉdÒívÕêSÚ žž¯Ïv»e“„;ÊFÌ™N§ÈU§Ó©$ϳ4¹šWS@íÕâ¬CVbY–TPx@×uù[k&|èsµ—Ìn·ó À{½XjCK7Cá{Oš‚è–`j]Qß¹ÿÃ'Ÿþ÷áiMFFFV¡åK0Š¢8Ž“$Ùg¤izÈ8¨m/Ãw/zMÓ,U)HøAmÛæKà’ˆ±W» DЬO…®J3Ûíö•ê“£ÓÓâõ ‚† ʆ;!ûÑ:,®9}Ô¼šj¯v6J²˲¤‚zž‡<¸®Ë—èÜZ3áž@嫽Læó9ÔçlO Ãè÷û“É$ Ãjƒª -ñ¬¡¦ßðzŸ‹Ýnw(49Ñ-Át>½âÚtöÇ׿ÿâáiMFFFV­åK0Š¢8Ž“$Ùg¤izÈ8¨m/û¾Þ@Ó4KU +~PÛ¶ù8€$àD0\µ;hµZƒÁ@<¢l}*t¥Pjø;¨ßïëW©´A:==!^Ÿ Ðaè£l¸la;N%y +†kN5¯¦€Ú«ÅR‡¬Ä²,© žç!®ëò%:·ÖLø†'Páj/(¼r"-ƒÌf³ +CŸ<Ëþʈç 5ýö˜L&ҶÒ5¢ÐäDo´ûÈ"ˆ÷À÷ñçן­žÖdddd•[¾£(Šã8I’}Fš¦‡ŒcÚö²ïûè4M³T¥ áµm›/HNñO}†R Ë¢YŸ +]É–*ÓétÎîGÃ0àO»ÓéÔ/Ðíve¤ÓÓâõ¿ï*œÏó+þßw7ÜGÍ«) öjq`g£Ô!+á ;BоDçÖš ßð*ì£Èp8<ÛMŽãp„ ˜è¸x‹eeÄó…š~{Àk_\»ÝîQªš©7Š Eo´“ÝÚQ?ùõßžÖddddW²| FQÇq’$ûŒ4Mǵíeø’D/¡iš¥* ?¨mÛ| @ño`Hi7›T²hÖ§BW²¥v‡]Žt<óÿ>RhNOOˆ×þ€b¯lÄœÏ?ÿ¹º¿¿¯$ϳ4¹šWS@íÕâc ë•t:© žç!®ëò%:·f¶,K\~è°^¨)†aÀÿÌf³Õj•€• +ÿ„7U²ßï_òYÈÒ‚« -ñ¬¡¦ßð«ÁÊ€ x¥(UMŽÔE¢7Z‚±Ÿañ~ùÒ‡_ÿè·ÿxxZ“‘‘‘]Ïò%EQÇI’ì3Ò4=d Ô¶—}ßGï¡iš¥* ?hé-@p"ÒCÚù|.•°,šõ©Ð•T©7› »»Ý.ü¡TH¡A:==!Uöv +sà/Gäj0T•'K“û¨y5Ô^-AÈ:T <ÏC\×åKt"² [–%.¿á TØG/ +4¨ÐÇív{éðb±¸»»+žùÙ“Å,-¸ÚÐÏj:¡FU“#õFD£è–`ì—A¼G¾ÒùÞÇoþýð´&###»ªåK0Š¢8Ž“$Ùg¤izÈ8¨m/û¾žDÓ4KU +~ÐÒZ8€$àD0|x#íd2‘JXÍúTèJªÔÃáîv»aŠRhNOOHÕçîîŸN§²súý>råy^Uy²4¹šWS@íÕâ¬C yp]—/щÈ& £¸ü†'Pa½¶Ûm«ÕúûU£Jr„ÉÈH,XBr€ä9#9M†V¸ä!ëüV/±ÈŒ36°ÆöypBäŒ9"±Dâ­e’’’23;»+šÖ•úºgº{ºgyìº?•žx³õ_ÕUÝ”Ì=­Èétâ'-ÄñEfãR›p»¦õx×ðE÷°C]SiFyx\nî@ «Áoüî¯ÿ¹½ôäÉ“§·&¶ã8N’$MÓ§Y–=çxáp±½¼Ùl„©Øét´R"j£Ú -‘õzmhn: +²aVr¸*óS£ªJ©îv»ójµ24$¦«Š˜×”P)?£ÑHà‡U-çó¹Ýn ªöû}]~ʸæ::†f»©¥Àáp°P(ˆ4›ÍJF‹… A;—\¢–c ‚À\üw Å>úÿÁd2¡´ ¬}&R†|>£(’yø†Ô&Ü®i=Þ5|Ñ=ìPWçTšQW…›»PÃÃã:ðͧ>ÿãíý£'Ož<]€ØŒã8I’4MŸrdYöœã…ÃÅöòf³c§ÓÑJYˆ¨j/´“ÉDY,†æV«• Ûëõ*9\Žù©QU¥T7›Mùt:‚ZA¦Õ".5%TÊÏ|>øòñx¬jTÖÓjµjôSÆ5×Ñ14 ØM-‡ƒ…†è17*÷†•,VŠZŽ1sñÜûè³n“ÃpèÏçv»MiÁÜ3·5 H°ßïÓwtóa¹\˜7?LóÚ +›ª¢( +s@Û~¿7ww&ü ³ÙÌD x˜“ôÞby1%øa±Sý¸´WëõÚPvÉJÎ8Fd—F-ê*ún·cÑi§cÛn·…•³ôšçç‚ùƒeþÀ4±¡¸•6jÁ÷k íT,sžPeíNÖŠºyˆß¤3Q 8).@.«cçØÍ($ŸñÛq xxXàæîÔðð¸ÜüáŸÿ¾»½ôäÉ“§Ë[‚q'I’¦éSŽ,Ëžs¼p¸Ø^ÆýP˜NG+e!¢6úå˵Þq‚¾šÃW^xÅTò¹óS£*óTËYjµZ憠V×¾ +]jJ¨”9vF{½ž d2™Ô觉ç×SGÇÐ,`7µ8 +»Ý® µX, -Îçó†„0 ÕR.QË1A`.þ;Ðb½; 3Q¡(Úv].—Äßl6QYs‹¼,@²• à€ðÚè;kÚóùð2·Q/íZ¯×È|YY¡A=e‡O‰mó¿ú˜DQTÖZÐi‚,ýÉ®sìfÔk¾JÊŽ!z¯ÒüôðpÄÍÝȤ“=<Þßþ韷÷žšXÁŽ ²ê÷à«sMªæG~UMéjµ’µßïëõSÀ5×Ñ14 ØM-¸…Bë©RØB@†jA—¨åƒ 0ÿÀh±ÞÎçóh4*ì7`0(J3™L¬s»ív›ÄÑóì»ÂÂY ïhÚãñ(qB³ÙÄfQûåjë­V‹–Al0´ÝnÁ,ˆW:Y  +µP{…¨ ‹E¢ÖF¤H‹]DŽiÔ‚·n]t~î©{˜¿jãÿ +µÝn·ÌŒ 00ëý~_Á¶Ûí +Áñ‘÷K![ÃÜa“ScbŤyʾó±+j-q•¹d×9v3j>Ÿ«ùÇã±]†=<,ps÷2c³À7„Ãþô‘ÖŠÇõãæî$ŸGËà¿üõïþüïÛûGOžåȲì9Ç ‡‹íe\ …9‰;ªVÊBDmT{ųBéÐcnT¸i7òËváÛJí{ϪÙóS£ªJ©Æ;B`Æ›å|>+ôã­QøÎ2©Ž{M_«çáð/V‚¶¦Àáp(좲7¯‹Ÿ®¹ŽŽ¡YÀnj)€ÊZ(”¥˜àn·+™L&…IfxÓÁ"{‹>1ÿÀh±Þ UE¿–Ëe¡8†ñ@UUëH£"¥|Cj.û<¡pèøÁŽƒV¨gµZ†ùñxp% ¨Á v†8ûý>mUu8F£éDÂ9N˜ ÌÖ|>/ Gþ+“…o¼ÃrÈÕ’F-j)ºy›Ágâ,¼Êþ p|ì(ÿWò ów›7î I¦a6›ÉéEYùžAZÞ.Z¸aóáZ¯×¼·ˆ”ÿ+Ô’ÃeQ׸yó@?ckµZ¼!Dòñôðx;ÜÜ=€ä³àáqüª÷Ûïþòp{ÿèÉ“'O_…ØŒã8I’4MŸrdYöœã…ÃÅöòf³Fe§ÓÑJYˆ¨ª/´¯ù­•®ôÜo… ž'¸Ùn·[Y8e é6^0à¡D¯WèQó;æ§FU•RÔÉù¿ðð!à=X˜R˜Vûæ^ÓW«üðÏ:¨¯ð<$ Â0, 6Š"­E;?y\sC³€ÝÔRõµSH3zx¹\ +œh­n·+p +iG©Í¹D-ǹøî@‹}ô^€@ʲÊc0Ȳ(σ9\Õ:úYÑl|CjnR ,b@;ÉÍv>Ÿ{½cÀaÄ mñÝ[¸g ³¬±MÀ»Ýn·Ën#Ø€(¿ùp/öZ¡ Ø H&&“‰cDu¥Q‹ZŠnÞf¸ã'~ký™N§2î“’/§U †Ñh$ëA ¸Z”å–1 [¨m +yjI •š‡ç/\@”8S8s°[ICYÏ׸yó`é3¶ÂóåáqyÜÜ=€GÿÛð÷ûïíý£'Ož<}-bK0Žã$IÒ4}Ê‘eÙsŽÛË›ÍF˜–NG+e!¢6ª¾Ð2ðï¸äCz âw¡þ(+Á + ›¸Ì‡9 ÑÉüošŸUUJ5žxÝnWo:–¼Aöû=~ Wôâ+Ø´î¹×Ô.?P^æ6â áOÇäƒ “¾uñ“pÍut ÍvSK$ÄNán·S¤.ôþ-Lòb±f úMmÎ%j9F8f.þ;Ðn½ (fV«%Ë + ca=Š"—›×¯M¸auúý>±¡Á„¿ò€ÕjU¦ÝK=YxFxgÀy<ÕΫ1HÛl63äÃQ'6›MƉ²Ã•"ª+ZÔRtó6Ã@&NüVûƒÁ^¨WGž w äAfƒŸÄÿ^)À_cN§“ÚaëjQ©yxþ® gÊ®|È'iÀúкä¸aó dböŒÍÃã’¸¹{5<<.‹o>ýðùûoï=yòäé+[‚q'I’¦éSŽ,Ëžs¼p¸Ø^Þl6ÂÀìt:Z) µQõkˆ9ª¡xâáJl½Jx¼i~jTU5Õxz&Y@EðÿÓZ÷Ükj—<ÜF£‘E˜¼Â»óæÍû73šó*0ŒF#rãp8ðÊÓé”ñ¹VD]¥±’NŠ®ßfj»fçs3HÍ0 ß÷ËÔ¨î//5ðÂè$•Ôݤ\x!iÙèr¹,³€vâ ÚUàúÍC.ñ+ +›q}û¹„7ä«ùúæoÿýÃÝ£ˆˆˆÈûJv †aEQÇO)I’<§¼(¼Ù½ŒOÍÜ™©óh0…_”ÿ %ð®sìãÉÁ{ +ÏÛÆwJ¥ý×ÖùéÐTƒT«oOÌì©E¯È Íç[Ëš¶ÉRQ+R˲ôjéçëe×±eh hvj1xž×Æ`­Fê÷ûŽãds©¶m›_¨“ç1š¦©?ý îÀÆ÷Ñåc†fòƒ ÈÍU¥i°úz½& çͦگL8cGEm9üV‡ Ýû•7¸z+ù¾_æÌx<æíTãš¡CÅÕq;‹Z­V¹Qýˆ:Lc%í‹þZ§Íx;úþà„ÏÔøƒ©n³¹î r©ðì$•ÔݼW”½ÙlVi Ö` ¢2pýæÁ^Póp:eAx®o W‚ðVüúOÿøö‡ÃÍÝ£ˆˆˆÈ»Kv †aEQÇO)I’<§¼(¼Ù½Œoõܱɿ2Láå?hUðmL¾2Ε9‡ƒú‘¬Ïp8„q< iSÓöùÁI'R5dôO­U:ñ3gárêØ2´4;µ<Ïkip¹\VöpV5ß÷iV.Õ¶mó«´qòºpPbä£Fçss £ö­&ègšŽ —±_™pÒä›ÖqÒĵR¶Î|›EÍÛùi¯éŒj杻å ‰³Ù¬R¿ß“¾eY¹Qýˆ:Lc%í‹þZ§Í0—±£ï_üA¤&‡QËq<ÝO ²PxHv’ÀJên^ŸÒ‚íÂéê–Ùn·m\ª \¿yPõ¿‹þÉL„ÏÊõíäJÞ„¯þø÷o8ÜÜ=Šˆˆˆ\‚d—`†QÅqü”’$Ésʋ›Ý˧ÓIýø7 c¹\VÎR¿ö¯Šq7EM5jä8¿DËT«IƒK«ÕJ.ržë@ô•æÜ ïÀ–÷Ñ%£f’¡,cªŽçyuW_,45Ê 3Zæ z˜QC#‘f®ˆêP-η­¦3:`Ë“5¤K"¼¢‰:§Ÿšm|ÏäFõ#ê0•hzÅýµN›a.cGßúÀFM=5¼÷÷÷üÇ È¡µæX‰æ*šúê‘uî îõ¬.;”º +¼Ö…ÏHܪ¹ºàþÒ¿(¡C®o ü¹!ðÛ¿üëæîQDDDär$»Ã0Œ¢(Žã§”$IžS^Þûºþy€÷>›×ë5>Ôñe{<›Ùñ}ßMÁëÆNÍì?e_õŠÃá@Éq§ð}×]Õ´X«c]û_R¼e?2H,Ò›õÏf³ÁŸ8aÞÛ©‹@:ð ‚`8òÏ¥Á`PÖŸ†aZƒbM§Sš¾Z­r£8Tit>Ÿó¦HÓ4MF N’&¶^Ù>ý~9læŒp’¬aSèOÄ%Uw"ã¶~D¦±Ãe.åŠþZ§ÍÔZœÛÑ÷*SÃF FÈ`¡2‡53\¸=;I`%š«hê#jtK¦Ðëõ–Ëeöõ…3 +W†zšY–ÕÒ¥ÊÀkQ¯éäd29¯ÜÞï÷•Ó¡C®o šˆ 4æ7þçÍÝ£ˆˆˆÈEIv †aEQÇO)I’<§¼(¼÷u-‚ ÂÏ›ý~ßëõÊžKr]·l®iš¤¹^¯k­A¿ß§ép#§àyÎçsÞiÂ%F ±æf³)šÍf®ˆ¢±3:8ŽCÖ‹E³‰Ëå²R_Í6ÂÏêGÔa+i_ô×:m†¹Œ}ƒA¦†Œšº¹ +¦Óé•Âd2±S¶Ûm–U„C£…»¸“VRw;Tê#Ò«*†Ã!ÓT]^ëŒ"ŽÇ#ö²a9Ÿ±g5-B{®o •[IÚð;ëß7w""""—&Ù%†aEq?¥$Iòœò¢ðÞ×µ ‚ ?{ŽÇãx<>.F# 1-ËR•k-ºÛíhn¯× ‚ §ày)ÌçsÞiš¦É¨¹®Kš›Í¦lh6›ÕŠ¥™3: ÿdm2™èO¬•½×ÿ߶íܨ~D¦±’öE§ÓI3Q˜ËØÑ÷g0djøÁ¨Á<].—4Z¶OQGÒA;Ì'°’ºÛ×_­VÙh¿ß¿*ç’ïûí]ª ¼î.SÁ‰‡XÔ(ðÝXˈ 4æúöR¶‰¡=_÷ãÍÝ£ˆˆˆÈJv †aEQÇO)I’<§¼(¼÷u-‚ ÂÂf³±,ËLÁü?e·Û©/¬Ãá ¿V¡‰³Ùì\ÁóNú‡Ã!MD2yåétJÊûý>7Z+¢®ÒXI'EUFŒÛ¶y;šþÐrøÁ¨ÁÌ ©Û‡ÙªÃ…[¬«òÔÝŒ>ŽÖªëF—*¯uF•íFFôPAhÉõíäJ>ß|ÿÓÍÝ£ˆˆˆÈÅJv †aEQÇO)I’<§¼(¼÷u-‚ ‡ƶmõ©µÙl*§‡Á`@SÆãq¡Z¤cš&oSSÓu]ÆÕÙlF£«Õª2–Îh2™LÈ eYŒ¦ïûHý ešˆ21QÒFç +µ"ê*•tRt€ÌF{½Þét*4â8Fy;šþPóã£#d‰ˆ©ìr¹$5LiìpeyênF«ÓhY¥:t©2ðZg”Ž?‹Å¢±A¨ÅõíäJºæ›ïº¹{¹dÉ.Á0 £(Šãø)%I’ç”…÷¾®AAøÐA0 Ô×ýý=£8 à å^¯w<Ë”ûý~¦†Xˆ1KMÓdÔ\×%ÍÍfsîbEÏóSíÑ$çUYºv»«&ÿt:!½ÙD !ö‰¾ïÇcZvZFÔU+é¤è`6›‘‚eYç +ŽãP&;šþÐ~ÁF FÈ`n•¥¡étZ8}½^«V¿«òÔÝŒ¾ÚZÈŠ…Ò¸ŸèÜ%ÀuÎ(Ô‹ÙjP¨š~‚ІëÛÈ• tÇ/~ù«ßÿõ?7w"""".Ù%†aEq?¥$Iòœò¢ðÞ×µ ‚ Çqr/¯ù|¾ÛírjÇãѶmÃ0TÍûû{Æòx<&ÍõzMÿ?N¾ï«š¤fš&cÐu]ÒÜl6ç +˜N +pu»ÝÚñ<ïì×1hKÇñíÔ¹HaB@^‘sJó7ÁÙƒCÅ=ô|Q@y¤ÈÁ+¼9¹Ð¡Ò¥Kµ*Ã5Ï¥ÞEJ—nÕªÕÌh¤pÿ›Å{IY­e%›õû~øïìè?3»úcYK¥R‘µ¯^ÍXLvÕjÕ¯jéC¥˜d€Tå_zóæMrc©Tò÷06Ëår2FæY[À]W´“mÜhW‡.›à?“É%y̤Â`ÅÚy2Ö“l¸ü2ÌßÃÕ«þ{´º{þ¹Çd¶.x㦻ëÓ>ÞÿNø¹Q¾‚äXïYR–…gùŽŠCþ•~évsppÌR3°[a4l|›€Œ=þáç¾õ¯!„|ÿ‰› RJkmŒ™9ÖÚ¹³ðäÝ®>½{÷®T*­þV.—ŽŽ×þvyy™>íÅÅ…?þȉgk·ÛþHLÊ„½^/ÙétVŒÇc©yu Í[§§§•J%}’ŒÅd7—¶WþïÆRµKÛ"ËÙßß_Úv¹ëìì¬Z­.]ÚÛÛ»¾¾^[À]W´“mÜhW‡.d¿ZÙ™x{eOü{wrîÉÎÈ)Ãü’V¯ÊúËiÊÑKUµZ-©Ù/^6a낳l`Š»><éã§Ó©,6ÈFvCÆo]R–…gùŽ’×- —ä¿ñ[ðæÍÿŒF–ýv"Œ’Œ¯îÑã~~ûþUkD!…HÜ•RZkcÌ̱ÖÎ…'ïv ð?½^¯R©dü­\._]]mœs:îïﯡÙlú#“ߥ™Œìt:kÇL&“F£‘q!kW‘±˜;é÷û²iéÅÈÇIñK7ŽÇãããã ‘}‡_úô-VtÿmÜ(cUYýææ&åéÝÛÛëv»þ'®'c=É9Ê)Ãd’dµS¶T®ÊÑ'ÿ•Mغà,˜"ã§d/Oiò ?}nujµÚÖ%eYx–ï(¹7å¤b2U–ýv"Œ’O&°Ñ“?ýù¤ÙÕBHQ7A¥”ÖÚ3s¬µsgáÉ»]üßÅÅÅÁÁAÊ_grõòò2û„ãñøøøxi’R©tuuå“ßÄ—dpÊl½^/™¤Ó餌”ù÷÷÷¿´Š½½½F£!³­½7c1w5™LªÕêÚzÊårúrä\’ª–È2Ûíöt:M¹}ëÝg7Úí¡Ëö®>iBö\ÂxLòËn·»u=•J%9µ”a~1_*¸Ùl®=Ö³³³¥’úýþÖgkÖºëÓ2^"yœä›$9—¥jeùþ¶¬>`»]x–ï¨wïÞ®žTà^@y=Ó_@`çÂh YûLÙ=yúâoçƒW­!„(qTJi­13ÇZ;wž¼Û5À²ñx|yyÙüœüF~¿Ý„ý~¿ÛíÆót:Õy®¯¯{ÎÆ©â‘Y>w:ÊH-òéòYéwe/f;~IòÃÆzRÜ›¬¥Ýn‡Ã,7ÞsEÛmã«Ê~è2ÕÕÕU²?777þUÙ®”y2Ö#sÆÖ&_­$–¾QKg*›<™L–J’åߧàOw|k¶þ”ãkµZà”J¥ôÝ“¯‹à–lËÖ%e_øÆï¨Oîèå’X2³¼'v.Œ’¸‡Êõ“æ‡zkD!ÅJÜ•RZkcÌ̱ÖÎ…'ïv _×d2)•Jszzš>x:·Æ·©(0H`[Ïž¿>9ÿXo!¤p‰› RJkmŒ™9ÖÚ¹³ðäÝ®à뺹¹ n5›ÍôÁÃá0Ün·¿M…@„Ñ@[yöüõÉùÇzkD!ELÜ•RZkcÌ̱ÖÎ…'ïv _×d2 nU«ÕôÁF#Üëõ¾M…@„Ñ@w÷ìùë“óõÖˆB +š¸ *¥´ÖƘ™c­; OÞí¾ºr¹Ü:;;›N§«cÆãñééi2ìððpí0à.Œ’¸£gÏ_Ÿœ¬·F„RÜÄMP)¥µ6ÆÌkíÜYxòn×ðÕu:ÀS*•jµZóV£Ñ8::ò”ËåñxœwÕÀ÷(Œ’¸‹gÏ_Ÿœ¬·F„RèÄMP)¥µ6ÆÌkíÜYxòn×ð-t: ›jµz}}w½Àw*Œ’Œo ž<}qÒüPo!¤è‰› RJkmŒ™9ÖÚ¹³ðäÝ®àÇív»\.ëìííÕjµáp˜w™Àw-Œ’µ/°êÉÓ'ÍõÖˆB@â&¨”ÒZcfŽµvî,t?½Ž7dddd1¿Z–eÛ¶ã8{×uGŽ¢Ë5A”ÿ2È$©hEAqSEyhšV´–»æþžgdY.ZË;È“„çÈwžÒ«sokDTœöp{"ˆ§§ÝO/ׯã YEÌ/‚–eÙ¶í8ÎÞÃu݃Ǒ£èrMçÁ}jæqW«Àdž$IE+"‚ ˆÛ±X,Xa·Û­èN)E¢˜BY–‹ÖòŽ¢(Lž­¥HéÕ¹·5"*N{¸‚=•çC÷ÓËÇõëxCFFFVó‹ eY¶m;Ž³÷p]÷àqä(º\%Ã0 -è™Ýišõz/ëøy'w«À÷†$IE+*%ëõz:Žo͹’.Yèv»§»déH½©‚x0EE1\)ðçh42MóÔÀívÛh4NÝ [­–a1~Að{B~ÂÑ`0`ò2–Ëexx¯×c}TUq½^³ÎðÙ^jµZd,ÍfS×õübé÷û§Òȃšé©Ž¿Ø•âAé9¥u6^FjÎ&êŠú\z¦XY–ó!-|–âý²žóùüT7Løüü–‡ýïÛðóø99•±Û¤t6›:›pTÏΖÿý5ʾI²¼p¢=\Á’ìdâaøð·¿Œ7ddddd~´,˶mÇqö®ë<ŽE—k¢4à(»’$%Ë_¸&ìv»\5çJêl¤÷Ü€SÿfZ^²l*‚ Ã0Z­Vü-¯ÑhDÖ‹Ùl†R?VEÔ SÞY7ôÑu½^¯ŸšŽÂóðÕ­ÓéÄG: xwá£Ñèl,ªªæ ôÇ{÷ÈH§²,ÇÄ^øJ1¦Ói¼Œ^¯HjÎ&êZ¾¥=Sñ +!‰uÀ×HŒwþPœÒ¹^¯ã÷–éì<7K©išHW|>yà(&?>ÙV9FÕÙMò–ù…Cíá +–ð\Àïþüý·×/ã ™_-˲mÛqœ½‡ëº#GÑåš( š¦*¯$Iɇ???‡k÷r¹ÌOpÞdÉF:pÏ 8Å¢äí4W2n*‚ ÊÎn·«ÕjüK Ñhôz½~¿/˲(ŠìÿÙlÛétø‚ `È`0FhÂO¾ÿG +`0 +ïöSAÄ\†Á7M“9‰ –Ížh…Gæ9Á !/ kµZ¼ UUóˆÓÊÍf“W"ÿ’@á潜 +üVÊâ™;ì.l3d•h2™ á~N’…³‰ºJ€oÎT¼B]×Y‡ø)ŠÂzâ9ÜÊyOŸ7<ö9¯œOBä<7K)ÿõU¯×1¶ $!¥üîÅ„þÁvŠÉOÆãY"z»Æ ‡ ÚÃ쉨ßÿý›ýô2Þ‘‘‘‘Áü"hY–mÛŽãì=\×=x9Š.×DiÀµ4P|ñÁŸ|8>ÚÃå;òU²d#ü½Ï‹’·Ó\ɸ©‚(;N‡ÿZ­¶^¯ùÖÝn7A@ët:å›5%Ðêm6›¬&1 #, \˜žŸŸu]g ÂXk¿ß !¦¨-—KÖ C­|8F#,3ûyð;DºÈ‹†°>¨;§" +8•e9²Ãý¬À¿UE~,S‚Qa…Wál¢®µ|©ÏT¼Âä»{•õŒ<“É„uÀBð_2¦i¢•mõøyn“ÒÅbÁGùÖívËf@kLZN‘î¸eÜ$WyáD{¸‚…·%ñxüê7èŒV/ã ™o~´,˶mÇqö®ë<ŽE—k¢4àZ¨¿’$]4C¸‚ƒœÔÞ€ŒÙH®c§ü]µŒdßTA”—õzÍÎ~­VÓu=²Ûr¹lµZèÌþ1M³ÑhøAX,‘Ñ ™‹~¿îxá5¯îv»ß +ï¬îN ï¬[@0N½^ÇÏȦÓ)›AUÕSg&ߊ¢°žx´b­!Œ…ùƒ?ÙJšç¬à·+¥”\´†ža>Ÿ³NíðÒ·,]ë…Cíá +öD<:_|ù믿ûßËÇ ÙÿÙ/Øfš"§sg‰ÆиA–(,:7ÈèH,0oªTœ¨LrÐ)\Z¢qé‚Æ¢r…,Ѥ 9EŸS^éÖ­ÛÜ].‰øéVßj¿Ý»Ý¹?!ö«y4EâÛÙÙÙaaaa‘"Š`ÇI’¤iú’“eÙkΛÂg—kæb@¤•à~¿_iŒ×f˜L&E´$9…ý1 šˆ@}DEõ&¤ìz´ŠXí-ºBß÷ñ7´²ÇÚ+mÑÂvµØRl¬‚mã4˜ø£Ù©µN󠪶~‰£ŸN§Âßù|.BŸ +›óð-56 +–HõzQ¸êaÖPg˜s×PÞýÅbAWD&—ŠHŒ–‘¸_NGŒÄæuSóeªÑh$‡iU×¹×ëY–È1øÃâr™ êBÈ]æ€æ¾ ‰Û«.ZhÒY攟Péì~µŽ}£Þ[:¾ÚwÊi!=*ðì‘#ñ·öU <<Ê&Ai“ñP8Óà÷–¶T~-{²âbJu¼(ÊV)£ÞukâQ[ ‡a®ï!WÌ×Î/ç7÷O,,,,,ªˆ"Çq’$iš¾ädYöšó¦ðÙåš¹´Üï÷+Í v´‡Uµ<Ï«´èñxT›Ðª é+ìõÞ¿Ûû˜»uÑ©=£6-¬Â˜J¾W¢ÌlÉf³qÎݶtdÍiT°Ïè1Ñ3:7 &FžN'û„Ø[MqµZÑíÙï÷Z`TRš/8ÇJê s&ྋÆpæC•áp(ãÊ>x2™ÈÁfB“ŸƒÁóósÙ$AÈ‘H\ÚWß÷í×YÍu³ÙLû*o4l°û‚²"“•ùµ_Àáp°¢Ý$9^˜_Ïí¤°o”I>ûF½·ä`í;å´j‰4Ÿ"jý +ÃÐ2ʱe§Áï-mi·ÛŸæóyÙ 2®œ÷ŤÞukâQ[ ‡a®ï!WÌWÍ/~ÿ¯›û'MDŒã8I’4M_r²,{ÍySøìrÍ\ x·kUÍ]¥dç"±´0’Ú‹¢Y,h<>6<Ï«jq]lÈf³)³?Š¢0[Ì<èSM&KsׄæAe' ÃétZuëp.»ÝÎ2ír¹lbvšúp8¤«›1 èê s&œN'Ããñ¸’®¬&HeÎÁÛíV.„Ë«}%Ú°^¯åHü­}Eª±Ïãû¾€Áê'dWY/lí¾ hÊy°á 8rÀíí­Ý$û¢çvRØaù&G§Umá´¿¹ƒMî”ÓzTØåR|êõzv{œúØR;Å'<'Êfê”g­F‹×Mbñ¨Å„Ã0×w+æëåg¿ýÇÍý ‹)¢Æqœ$Iš¦/9Y–½æ¼)|v¹f.†‡‡­£u¢«£·5Kùf³q*Ö[4Š"ÙÙ5¤lÅÂaèJF£Q¥ù {I†a³=Ï+œýl¸šÙ†Ae'‚&¸\.ËfÆšãñ#Ñ°áphªã‚Õa˜¦;›Íˆº s>¨×2™Ð‘f¥ât:uŽWs©yYä§ñxl™d·ÛÉ‘…ùP­8æuîõzâÓ`0Ð>©ùå#°#åàý~ÿA¾¨&ÝÞÞZ¦²/z†'…·Zñ·ïûøÑi[sœö7w°ö¢@ +Xe9¹ÿv7ó8 ¦ ØcF^:óò +Ôm§??£•({B`ÙôQÀTDÃŽÇãp8¤Ï,ATèE©$³Ù¬êΠ£ìv»…ŸÐ|9·½ ƒÊÂv»m²{˜W6?öJ¼\.)†N§ÂµÖë5ѵñxL·“aÎä=þïÓQ8¤â|>wŽ?r¼çyÚWù 7Ë2‰š¬ +o+’¤°X,ÊtµOïEiˆY@ÛòEݱÛÛ[ËTöEÏó¤PÌ7*#^)N ›à´¿¹ƒµïÅzTÀª2 ñL’Ÿ¦Ó©ÝË<ƒ)ö˜Q¯¶ùÏ*õá‡]²;eÒÖu#zÔbÂa˜ë»GH½ˆbÎœ{üò×ÿÞÜ?±°°°°Š(‚q'I’¦éKN–e¯9o +Ÿ]®™‹Á|¨÷û}¢.º ÖÔƒ~wêÖXt>Ÿ›ôwpát:‰1hý¶Û­Ú+IF£Ñø[&“IEúݮéc¯×Cä`*ü[ø°)Û +hLuØ?.Âó¼ý~_8¡6C§Ó™ÍfšØ¨Åb«ä0(:·½M‚ÊŽé©Ø.ü¾Z­°.\F«+<Åž‹Ås~ì9Å0D]áZˆOŠ:G¦*"ð(÷ˆaÎõz]/Ãl6›ªŠr<Ò#ý“Šš¬`¹9)E@Q?ù¾/?!íXf¦ƒr`^ü¶|‘rÒ£e*û¢çyRïùa!c›»Šª†!ÅÎ8íoî`í;E1€ªš…Ø^zhYæ¡L °Ç .š|}¡þâ…)n1Êñn·S_JxMÙ=*¤­ëFô¨Å„Ã0×wÅœ9?øÑOó—onîŸXXXXXÊDÁ8Ž“$IÓô%'˲ל7…Ï.×ÌÅ`>Ôûý>Q×÷}³ o·[ŠnÕEM;Ñ%ök‚Åb¡'öMöç +:”åri6)ø±p¼ÅB Ú1M ÎRL CÔԻݮhË@G9‰æÕ IPÙ ‚@ugE‘e|†£ÑÈ<—²(Åxm$ŒғÞa$EöhŠˆ +§Ãœ!H/2Œq/ê)Îçsçxd99~:j_å§ñxl™DMVeùPÍ!jjE9°,¡Î óh¦‹¶|QwÌ™a,‹žíI PxȽZR…ÙNSkà´¿¹ƒµïÅzTÀª2 ±ç–#¦ÏC1˜2@àŒÏó®\ J7iëº=j1á0ÌõÝ#Äy;˜Ëâ{ßÿá¯ÿÞÜ?±°°°°XDÁ8Ž“$IÓô%'˲ל7…Ï.×ÌÅ >Ôý~ß©u<Ñú™- qݪ‹‡CMe¹\ÚUÐæh*ûý¾ªa*°Ž—)n6›N§ScCL;q(N-Én·ÓÔ »K“0 é«T¢^PQ€k˜ û<›Í,g¡‚¦²×ëiö zËÆ›ƒ·Û­s8X6”Ó4cáDñŽaÎ(Š*%@ÉápŠ¸Îñjž ‚@û*?Çcâ$e™µÆ\HU\­Vö™§Ó©Ó mùRi‡-‹žíI© óãàÔ|Ž¿‰U£Nû›;XûNQ ÀžOSÔßB O§ÑMû<ƒ)ö˜‘÷Ú,ú¼4àšÝ2ÚºnDZL8 s}÷)»Ì…ò«?ýçæþ‰…………Å.¢Æqœ$Iš¦/9Y–½æ¼)|v¹f.õ¡.è÷û–ñaAÐívÍjEtÄu+-ª6t‚ápè\½¤ÖLF£ª†I&“Éóó³]×÷}M«Óé8[6´cšÅi§d±Xh굛Ķ¨TU'¯êàr¹Ôì±4¶æ!âûüû²°óùÜi!öG g°1Ìy‚Е‘LIÔ*R‘’«7›¿^¯Ë¦²\ö÷ï&+sJ ®¤3 Ä2o—%y5-PܱЖ/ªI°¿É¢çyR&8;a E:Nû›;ØäNU²p:ZæU–”wÄYîíóT2¸IÌÈwìn·ÃÕÀ˳áшÆ{ÿFQdwÄN‹×âQ‹ ‡a®ï!WÌWÄäÿ¾¹baaaaqŠ(‚q'I’¦éKN–e¯9o +Ÿ]®™‹A}à Ð:‹J!èSÐÞÒ×ÕÔímÚv»ÕƯV+Ê*h!5ת&ð<m¯Sw¿ß›ºaڵЎi*8Šw´‡ª.Ž‰®ûA˜Ae?ßg‡£'Ú³Ûíª¿^¯ ÃF€«aW7ÃñVÇO†9z½ž æJua0HÅÃá`¬¦>3ÍÊO(^–IÔd…‹\6 WR‹¢)EDT™2-¤™–)¤Œ¶|Á–ʨ;M=Û“2ÁŠRq6›Ñ‰8íoÅÁÚwŠb€ T{µ +‚Àb¡œ ¨Õž‡bpó-•e÷ãžL-^7‰=HÚJ8 s}÷¹b¾~þ»~¹baaaa¡ˆ(‚q'ÉÿØ/Õ#Ž_祢£H„ÒPÆE$’†ÐÄ‘òïR‘&NG ¤D$¹‚¥BJCK:J”êª(èE¾’’–Ö-¶1œò•·Úß®½Þ5> OóÑèéžÙ™ý3;aE§„8ŽÏ ŽºË5ñ0ðoøÒ8Žãû¾‘_a4 +åÅb!èo·[/ãñX0,lWåÙ¡ÕŸ]¯×Ìçó¹Úí˜`‚EÑt\×-—œÏCÞTêõ½¬eäi¢Wµ,KPöS:ض* ö彑°çùÊ(G¨¹%p^ž82—ò)ÅŸìSá³°7†z“TuáDòy"¾ ~ú›¿=¿¼“hJZƒ Ã0Š¢SBÇç„ GÝåšxø7| ðÈ÷<¯„_aœV«¥PF'裯ÔñÂ7V)˜¯Q`Fc¿ßëÏk< #¸®«6‡¦Aò, Á|4é›ò¦R¯ï @'+„¤XV¾uM™ÍfŠÁ±IxåÕj%˜cÅv8ÊO• êEmæf³¹Ûí2ÕÖë5θ°ó-ËbwoÞMˆû߶mæãÈ:ì+Η"Tþ²RœÓãñÈÃmÆ.mÌŸò¬„<•’Oš ÂЉ¼Ðé]­‚Qä–_”Ká+’à8N7A}QçQ%ËWúLéÀ—¼Ì÷Ãf³aË­!bÈŒűp€¯O)-N4f9¾~E1¦U7†Ñ&)}áDòy"Ÿÿüw_þòßç—wMI‹`aFQtJˆãøœpᨻ\ÿ†7MJi¿ÂPèzÊh!}ß÷u¼ÌçsÁ°°Ÿ2 +LM¥0Âp8T›@Á4H¾Ïb, £°«EÞT¦i¬£$£™”»Ýnž²ÿv»Ñðò?:Ž“gŽ,ø²mûÊÉDí`ϳ-Ýh4„b±ßï™Ât:å?F#fhY–|•áÄá>)<\:‡÷ãû—¾BS¾C€ëºª,||À;ŸˆL5$yÀí‘YU+œ ®¦Ãçöp8UµÐéý¬T þE+LªÓé0C„$(¬×köµ\*Œ¿ªå+}¦ +ªNìˆÑž$2#äw;’ÉgãŒÇcÍqn“Rþ,äñqðåm£I…ÇMgF]8ÑŸ¼A +qçü ùÃïþôïç—w}I‹`aFQtJˆãøœpᨻ\ÿ†7Ų,´Qåü +C©»]4‚þv»Õñ⺮`ˆ^£ÂÀdä|¢eS›@A0Á úÇc³Ù”WsGgg|UÈI0Mcå%Ù÷}9Ÿø1Sy6›ñj£ÑHv×h4°L™æòÞÆ€•L™ jÄó<~cãÏnnņǭ%_h°B­qGø„“µÛí2àmqò—Õr¹Thn6ùZ(¬D˜Ž0_ü‰¦_ÁEÝn·Õ1T8—ù|.$ض-/D¡ÓûY)xdŸ0ü™æ·1ü²O™µCñK£ Âø«Z¾ÒgJ'|âGÀò¥#ó äs•!¦ DˆÀ°Ã{½?–F=ÎmRŠ¢Œú¤Ç`0È+â +*'\8ê.×ÄÃÀ¿áSÐ.)ô·Ûmf?…>Ëȯ‘S ·™ÓéT¡<ÑI &‹Å¢òÀä|¢µQ›@A0)Ñ +ù¾/#Ï€¦éঘnªr`‰1¹ŸÕDäý~/è£K-œi·ÛeŸðþS»Ý–Íqj/ãñøêÄÄÝ“‚Ó:MÀv»¦ááp€íô+³ÙL³ÖÀÅkFPk¢¨¥š:Ã2eüGG_·Ÿ +°\. ³ñsæjµb1È#ë;M¹‡•Â½¹°g(#çŠ1ÙÓ²,Í™šÆÿI[QÿL-%t6› [D¤”ÿŠ5Õß`üfÆa!• øú”¶îBl8&¬@«Ÿê0ª:nF›¤Ü…CýɤÜ뚨ýäËàÏÿy~y'!!!!)!i ‚ Ã(ŠN qŸ.u—kâaÀƒ\(Ö­VKm‚7¿\â;Ž‘_S§èDÐ VãñØ÷ýÌÛí¶ Ül6Ñ€T˜€œÏáp¨6‚`¢ÙOÉ Ÿj49¯°ÿ…ù|^n|MJl*S0,¨z¦j +“,o!ì+A;W@KË>Íf3Á|¿ß æÐ7Š ‚¨ÏóØ݋˼îpˆw#{Oº®«VÆ»‘m’ÂçA|ô'okÞØDüúÿz~y'!!!!)'i ‚ Ã(ŠN qŸ.u—kâax}}Šu«Õ*´šN§r•_¯×ú~K8Íf²Óf³‰`‹&²ÙlðÇq2!Ðù¤Àxä|¶iPL0ˆ‘SžÃá€$4Ì$0z½4K{QSnSiâû~ÞQ˜dy“ãA§Óéäéyž`.ï@Û¶ylæJRDAÂJI»Ý>u‡C܈ý~¯(ë|)Ç+ô6D½ô'oë_ÚÄíùåþùüòNBBBBRZÒ"A†Qâ8>'\8ê.×ÄÃðúú*ÔëV«Uh…þ´Óé†øEßo §£Ñ¨ô#ÄuÝÏ ŒGÎçp8T›@A0Á FNe°@‹Å¢Ýn+r‚©ù¾¥£LÊm*27^ŠeYÝnÉœ&¬V«WŽ^¯gšäív+˜Ø¶Í+ {ü×F£ðxÌšWpGaþ¤±U‚ ˆJð<ݽ¸í뇸|ñê² ÿB»þmFAòÉ|l÷ÌÏ~û÷ç—w’k$-‚A„aEÑ)!ŽãsÂ…£îrM< h"„’Ýjµt çó¹\îõ[S§rœú¸®«U‰À +ãD˦6á{:Ó4²Ûí0}˲233 ªrÄSzS‚¹È³Ààؾï+ Ë%¹Ùl +V‡Ã}]¯×ü'ÇqÔN± +Çã‘}].—ÂàÐ0ADpc§ïx<®;âÖàÙÀ*/6_š(÷ü“öíL5‚øöèOþÇ~ùƒ¸®\aüvêD*ñq§‹‹€Â#1N &y<ïvj‚Ó¥H!Ag—*]ª +¸TpBŒIÀ.UªUëV,û’ƒDeF–G–}½N¾_±W;ß9gŽfïmHµàÝò½ÿöåÛíëlAuQ9“$IÓ4˲CAžçÇ‚S…Gkð4ø¾ÏLmú1Òׇ¢(Œ—>có¶JJß>L.J$r¡°«ÕJ°¤+ +ãáûiF³…0 +Ò*éE¨¦iÖ¶h¹\Þ6ק‡ª™ øúƒÅ‹Þëš<™L—ëºçb:ŽÃØ=ÏkHÊØ%IÙ€Žl·Ûò?^MÓðïÿ!4Ê™ù;íÿ@ÓY×uæC÷¨GW Àgb8Ýø+7x·|ññ˯íÍëlAuT9“$IÓ4˲CAžçÇ‚S…Gkð4ø¾Ï nú¸ôÎçs~î ~˜´JjYVuñ`0 ‡Ûív2™hšÆ„¢¯'ú\¢&Ïó7rua<|?©’f -`,äŠÊ/²\.©9L.úÒ¼y¢.‡ªæ”'!ŽcïuM^­V í¢MUc§Ú˜†›¦ùö[Y–«¿FbmÐ º?Ð=®a>ºð\×ý Mg~¾ð?Ìpº! þ€÷Àϧ{í ‚ î*‡`’$išfYv(ÈóüXpªðèq žß÷™Á­ªª 7Š"I’»mÛ"ÞVIE©.¦š™aúq “Âxø~†Ñl¡ŒeµZuØAËå’É¥iÚͳt9T P©LXÏó½|“ùSÄClj9á²,—gŒŽœÈu]¯íöz½fêq]Wp/è]bçó9ïuиÇÛíöÑeð¹N7¤Ú¿ ðùɯ½×Ù‚ º‰Ê!˜$Iš¦Y– +òÕõÓ0Œf‹išŒÅuÝ;h‚ZG dÒí÷ûÛféx¨ÎÑ¥rz Œ—Š1ŽÇãZ#½#‘·ì8c§óLÏmÛ¾÷[ÀEèjäWX¯×®€G2œnHÀ3ðƒWçu¶ƒ ‚n¥r&I’¦i–e‡‚<ϧ +×ài ï f|«ª*n÷<¿ÐËFñ¤|…aŠWØ–.ÝøTW­aÍ–ù|ÎXèI‡\`4Ý»ŸU-Q11eY·Ó[`ìT¤ˆÑu]ÆhYÖ'®´¬Öcw‡ž÷z½êC]×Å÷À=N7¤àÝóñ‡¿ó¯×Ù‚ º•Ê!˜$Iš¦Y– +òŸó}ƒŠÜN†ç‚”¬V«;í¢¡ ‚6+X ÷c8Ýš¯¾àô¿úÓøÛíËlAÝ\åL’$MÓ,Ëyž N=®ÁÓàû>3ÊUUmd¹\òWzØ`i›4Š¢Á`Ðñ–¢(JsUWÆÀ÷Ó0Œ‹.Ó4k îõzdFôCù„~®çó9c‘ey<Û¶M;õ ‹ŧç|üÉdÒjwW7á:Ç©†ãXÓ4~½VZIIÃ0 ‚€~°,‹6§eâ;ªÍ["IÖlo>ºëõúš.pS†Ó Ið®>3_|üòëoþù2ÛAA÷P9“$IÓ4˲CAžçÇ‚S…Gkð4ø¾ÏLsUUÛ‰ãXQ&Ž®ë –+’zž'IRÇ» +E -߶°*|? ø芢HpkLW]×½ºý~Ÿ^\«Ý]Ý„ëà[Áug`±XЫ¬>i> ¶mŸ‹Ü|ÎK(û9;ýá´k.÷a8Ý®¸lƒÏÀW¿ÿûËlAÝIåL’$MÓ,Ëyž N=®ÁÓàû>3ÍUU½"ŽišüÅ ‚sëÛ&u]—±È²l ý¿é÷û ×2Þ°0¾Ÿ†aˆ-Ëj¨ùÑhTuEQ¤(Šˆ‘ßy[mMœõz}EI<µ­ãOB3’$yžGFÚrõ9½©›ìˆNàE{†çì“ÉD¼ îÇpº!µºlƒÏÃOó——Ù‚ ºŸÊ!˜$Iš¦Y– +ò7ÀѶ¯èÄîšÞhIz^_|ûãÓd AÝZi ‚ Ã(Š¶ qïöM—kªºwAø®£ßï_àG×õL÷2N+ AZ­VÚçhšÖt,¯ ¬mÔ®«ªšé´ƒÁ-ÆBnMo´$½/†Ï¿ùÏÓd AÕ ´A†aEÛ„8Žw {Ž¦Ë5Õ`šf¦ñ˜Ïçø™Íf?ôKåÑ8ŠmÛ–e­V«¦g`Æ8r×t,  Öç(ŠÒt,µRÃ}ص-g±Xˆ¢ø&Ïó*Y¸5½Ñ’”›PP?ÒŸ¾Qßÿò4YCA5(-‚A„aEÑ6!Žã]ž£ér @5ÌçóLïA½ý~TUÍø1M³òhäBG÷`0hµZ™£¸Ýnkš†ù…Céc)Áó¼¦#…°L)ŠÒt,Çq]—â|s€òèÜ óÁ÷ýr?õlÑûZÛÚe™Ï$IìÊoåÃ! ·¦7Z’ßJÐÿÉ‚ ªGi ‚ Ã(Š¶ qïöM—kªa6›ezñx|®º¬µZ­ŒŸ[\dX­VŠ¢½W¶Ûm˲šä3ŸÏùd9ŽÓtD –&zå8ÔÔ=Rt]§v®ÈO=[ô¾Ö¶LÓdË"˲çyéïÔfSRn1"²pkz£%éÄÜ”¿êÿ{š¬!‚ Ú”Á Â0Œ¢h›Çñ.aÏÑt¹ lÛδ’$•\»rQU5ã:Ô€ag]0ŸŸŸ›ù bªë:Än·kYV‰%å…åHÏój |8'SÄ}µ:š¦~>Ȳì8N®Ÿz¶hUk{VB_8|½Ùl.sòŠwø=Ò-IgÕnp þøåïÞÿú4YCAµ)-‚A„aEÑ6!Žã]ž£ér @5PN·§LBmö‰÷)z|8¶1‹ÅâÖ‘ÀƒcðÒaN§7ɦiZ ³ÙL×uQ™M¿ßo:êÂq¶òš¦•XR1 J¥µ¶AÊé™"øf©žð®¦Ã¦Áâ˜Ïçt\´Z-þét:¹~êÙ¢U­íY }áPFÒ‰P¦.vòŠwø=Ò-I‡·'P'Ÿ¼ýôëï—O“5AT§Ò"A†Qmâ8Þ%ì9š.×TëçyÚí¶®ë¶m=åº.]ßÈìðYUUëŒ:ŸùƒW’¤¢Û÷}:®EQ$3EQjŽó‘q‡%HÓ´¦Ã…œ•)fyoM‡lYV®Íp8äÃ0j’QÕÚ¾¦WuÚ²,_ìäïð{¤7Z’/P N¾øöǧÉ‚ ªYi ‚ Ã(Š¶ qïöM—k*c³Ù‚PÒ–t:åcDQ,2¦KçyMÏ ^3¾ïK’tÖÁëºn¿ßÇõDÇqXŽ4Mk:PÈY™b–ÔÕÞ5ÐtXÀ–e™u»]¾ë«3BžªÖö5½z•¬É+Þá÷Ho´$•Ü¼À­ùó?þý4YCAõ+-‚A„aEÑ6!Žã]ž£ér @•˜¦)Šâõ= ÝÔ<Ïkz6ðÊ™ÍfìàÁuݦ#98ŽÃÒ¤iZÓá€BÎʳT¥žð®¦Ã¶,«ÈŒ?R¨!¬1À¨jm_Ó«WÉš¼â~ôFKÒE7-PŸýá«wïQ'k‚ ¨~¥E0‚0 £(Ú&Äq¼KØs4]®¨˜ÕjEÝõÅ Œ Óé´éIÀC I;~u]¯Ð³ëº†aŒ9è+ýxôÁÍfc%ð?zžÇ¼=??“MɸéãTŒN‰“ÌR{¢ÄŒþ%6ªS%1T5—tP‚ÌXšºÝ®õ1¾ïçzÊjh.S—ñ2£½,SÌ’º&ÞÕ|>¿&¤ËöêQ4Mcg–‘‡^(¾©ËMÍY[Ô¶mZ6Åbapøò^¹¶—%”‘>Èb¦Ï'¾ŒG9wÿ³‰l"²,ó³pç踰Ãï‘ÞhI:ÿ²ªáËï~R'k‚ ¨¥E0‚0 £(Ú&Äq¼KØs4]®¸ Ô«ª*Šâé­K§Ó¡>üðêà, þ^­V•¸Ýl6²,õÝn×uÝ’ÇAH- ௾ï‡Cö#ƒê‹mÛ‡fcšfy¨4efL£äÚÐ(­V«¨l9Žs»¹èº~¤p&Ìf³ÜAi©Ë§ßl¦Îå%G{Y¦ØTÒ5{õ(š¦1oÔã™QÇÌh.¹6'nQê ‹¦s8»Ì³W®íe ýt¿E»”°|‹–sÙþ§YE»Ý>:ú#ìð{¤7Z’NI ¨œ¿üó¿êd A5¥´A†aEÛ„8Žw {Ž¦Ë5·…. to¢6[ÉCUÕñxL6tMk:Rx,èdf÷Ç~¿_‰O:ðA(¿«Š¢hF‘fF6ŽãH’Tä‡:ôC¿0*1åÑò+U¨£s1MóFs¡øËGO¡ s¥"[2÷Æ3u/<Úë3庮,Ëׄtå^=Š¦i̵mEf¶m33šQ® ?ñ\ß÷KVãÊfɬíe ÍfåöƒÁàøBçqñþ×uýè,ÈóÑa‡ß#½Ñ’tJj@µüþoÿúúý¯êd A5¥´A†aEÛ„8Žw {Ž¦Ë5EQØr>Ÿ_ïPUUþZ* 1Çã1ýE_ùé÷\'Ì€žj·Ûì+¹ ²,g†p]—Ü÷}6}ð<¯$`æŸ,éÁÌ¿üú´Z-MÓh•‹Öívù0LÓ¼Å\È­’ÐétøH”±m;wPúë%gêt^~´WfJ’¤+Cº~¯…|2'–e™QäÌL×õ\~¦GǢšYÐ\ à ‡|ºi‰Ò…N§EC\¶¶$”>³ØDQ¤P)fZ(Š¦“þEN]nŽkö?ÅÀ¢e6?‹¢4]¹ ×g§†~ôFKÒP/Ÿ¼ýô«ï—êd A5¨´A†aEÛ„8Žw {Ž¦Ë5AØ-r±X\éÍ4MþZ:›Í2žçu:f@£»®{èçð†Ûï÷Ça«ÕªÕj±u]ÏxPU•ýkFQÀ¶m33z¤d:²,†JžÙ’Aî×Ï%å7öËä}óˆãï¦M£¶dЦ-ˆR…Æxh ¡‹2²J@†/¿ÑÐåµjÈ ÑK@C†ˆ=zÔªU«þX¶é!Áñ [dûyk˾ßÁöÝsÏÝs'?– eYMÕ65 ã¬Ããtª ýÊöºNݘ’YmÊÁ]‚ 8ëãy^k#Žm# +ÿEì@Yëv»Å3kS¶¢Î¶{C!~å&Ë2»QT[œNo+¢æÿØ១ O<á}d8YNÏ™øPþþÃ/ælC"‘H¤ûªºÓ4Ͳ,Ïó]IQû’ý¯k‚ ‚ ^Ž8ŽÙ·Èív{K´$I4M«BI’´X,šÜƒnjÛö©OíõÖ²¬SŸõz°ÔÂZaw´ÂvM9ÃîèVK˜-GUUøz6Â|>ǾïD-aòƒœÝÔ0ŒSëCuª•~e{¼¶S·¤$jV[ô0B¬ þ= 5l ر)DñÁ„z£(:uð<#4„¨vwo¨,Ëœñ»ól;öŽ<ñ„÷‘ádz#þüåŸÿ1g‰D"Ý]Õ%˜¦i–eyžïJŠ¢Ø—î}]Añr„aȾH&IrK´ù|Ž¡,ËâxFQ$IRå àkÍÍŠJ×utÛn·¬ jQ…³EúÀN9¾ï7åÀndÆ©ÃíµT°Íâ/»éÙ”ªS­ô+Û㵺%%Q³Ú +døÖ 8Ïó8¡Ðól&Xïh4jª#8ŽÃßâÆvwl(̺ٶÝäv)çÿØvìyâ ï#ÃÉ +Ä{ ¡|ñ§o¾ùñ7s¶!‘H$ÒÝU]‚išfY–çù®¤(Š}ÉáÞ×5AA/Çr¹ÄIEQnŒ¦iF[¯×|çÑh„ξï׬hRU5I’¦ Óé=ƒ ¨YÇã1ZßßßO—Ãt°m»f5 sà×bYç …Ô„aˆ°#?%ô„*N­Ö)>ýÊöxm§nIIÔ¬¶‚Ë9H’OSEüPü•e¹²:ŽÓJನvwo(¦Äßñ"Îÿ±íØ;òÄÞG†“¨õÁ$DñÕäWs¶!‘H$Ò#¨ºÓ4Ͳ,Ïó]IQû’ý¯k‚ ‚ ^Žår‰/’’$ÝM–å*”®ë­Î¾ïãÖóù¼fE“aœ ®ë¢'|®YÙêÎÆÇèά)I8Ê4øµ8Žƒqâ8þˆZ€0 ÑÁ²,~JüM­S|ú•íQh§º¤$pV[rÞÚPe±X´†âA*«iš­ ¨+¶@>zpþè ãEǹ#çÿØùLø<ñ„÷‘ádj}0 !|ùýÏælC"‘H¤Qu ¦išeYžç»’¢(ö%†{_×AA¼a²¯“q_ +ÖbÓ4[ý—Ë%úÛ¶]³¢É0 NÅbž®ëž:|úô ¢(ªYE©LªªÖLìÉèº>åI¢óz½þ ZØ”,Ëâ„âoú˜j¢_ÙVˆêTÇ”Îj+P.ŸÏçA ä‘5M{ch=7~á˜çé³YûbÏó®Øøèm·[I’Ð>Çcø‘³„Øù?v>>O<á}d8YÞˆçû×·?ýnÎ6$‰DzU—`š¦Y–åy¾+)Šb_r`¸÷uMAÄËÇ1ûF¹^¯¯µ\.1Žã8­þa¢ÿ`0¨YÑd'Hèéºî©Ãt:E‡ÏŸ?7­­™jÖ‹€sø Zس,‹Š¿écvª‰~e{šÃ-ꘒÀYmÊÁå°oÍ +ÏŸÿÂ/œ}rO[$‰¦iè~ňØGÏ÷}I’jG­ëºçyü…g;ÿÇÎgÒ}—'›ð>2œ¬@×q_ÿû¿ælC"‘H¤ÇQu ¦išeYžç»’¢(ö%†{_×AA¼"²,ã¥ïûWÇñ<ãL§Ó.KÐß0Œî&– ÐÓuÝS‡ív‹º®³¦ñxŒ¦0 9‘»£(J’$T $‰–eqBñ7}ÌN5ѯl+DuªcJgµ(#À¾|‡ÚwQádX9H’ä8NõÆq¼X,TUÅå¶m_·"öÑ;–;ƒÁàôÌ!íårÙºœEìü·Z;òÄÞG†“èŠ#".âËï6g‰D"=”ªK0MÓ,Ëò<ß•E±/90Üûº&‚ â1 _*ßß߯Ž³X,0Žã8­þa¢¿iš5+š =N ÐÓuݳ>º®£lŠ¿+ŠÂÙ‚ éÝH’ä4”¨Zس,‹Š¿éÃvê,ýÊö4‡[:Õ1%³Ú +”ƒ{AS‹OV“OǃÁ[ªªr +Õî‹Šl·Ûñx,Ër-g鎎¢çÿØùLºïòdÞG†“¨õa!nAýówßþô»9ÛH$é¡T]‚išfY–çù®¤(Š}ÉáÞ×5AA¯ˆã8ø^©iÚÕqÂ0Ä8–eµúA€þÓé´fE“aƒ¸®{Ög>ŸŸnÄ.|çG6M³µ¢j¹è„9›>l§ÎÒ¯l¯Èùö”Îj+PîûžõaŸ¸ÑhÔŠ_8Qå­Û¶ã8æd+ªÝ—!K’$P [|Ž¢¨ãr±óì|&³êׄ÷‘ádjzL!|5ùÕœmH$‰ôhª.Á4M³,Ëó|WRžäÀpïëš ‚ ˆWd±X°¯–¾ï_ +ƒèºÞêìyú»®ÛÊ0 N 8A*¢(’$©òQUµúѲ¬ê0Åq|º* ËÊá ª6%Èÿ–M³S­µô"Û£ÐNuIIଶ‚)õI’Ÿ8Ò;ëÆ/\–åÊ +Pa:‚›¢(š¦F#øºÝn[³Õî‹zø‚̯*óì|&|žxÂûÈp²½Æ_¿sÍÙ†D"‘H¨êLÓ4˲<Ïw%EQìK ÷¾® ‚ ‚xQ4M÷Kø|uUU1N†|çÑh„ÎËå²fE“aœ A §ëºMnƒÁݶÛm’$²,W_MÓlZõéӧʜa ¿¢j#E˲nÙôa;u–~e{Ú©Ž)‰šÕV LRjrÇèfÛöYNáëõ˹%[Qí¾¨¡MÀ4¶žÉYÎÿ±ó™ðyâ ï#ÃÉ +ôF| _üñëo~üÍœmH$‰ô€ª.Á4M³,Ëó|WRžäÀpïëš ‚ ˆe>Ÿ³ï˜ŽãtYåû¾ëºì/¶mcétÊY»^¯ÑSÓ´S´†Á‰zÖ’añ<­n±XàW¨¢i•išèGÄIƒ¨Z’$éªuÓ‡íÔYú•íQh§:¦$jV[±, 7‚”šÜ–Ë%º)ŠrêÃ) +DkEWg+ªÝ5´K>ãñ¸û*óì|&|žxÂûÈp²½Ã?~øÅœmH$‰ô˜ª.Á4M³,Ëó|WRžäÀpïëš ‚ ˆ×E×uö5Ó0Œ8Ž›œ£( পjíwI’ª²,Apv9DþûõÚHzÆq|:‘F[äP§½"®"®SqD$GKm6–Š¤â"$æàÀ“?§ÈŠ†q)\AAŠSˆ"–œTªT«V­Þ÷Õ+™<™ÁÃœ$F¶vGãý~ø±xÑ£wž÷ÏøÅáÇu:Íšp'mË#‚Êv»ýPÙ|>ËçóõzÝÿ9—ËÉG}k8ƒKåd2‰è$Âç"mÄé|çCv§¶JW·¾CíTÌ–uVw +ÞñÐFø +…BôFL<<ya/..ºÝnï^ünßó«'5båÓº¹¹‰?‹žÿ»Øk²Ós=áiTvïÀ§?ûsõjD!ähã_‚J)­µ1fá±Ö.=«¤¯kðášL&Ùl6üÇf>Ÿo4Ýnw:ú5ãñ¸ÓéÔjµ æäädmœ‹‹‹àÓL&sss³V0eä ¦R©lí'((•Jm÷z½ ²ÝnGTÖëugÃùùyô²ÈÓƒbYŸÛÛÛ­e²z²V²²\ït.Åb1¨ ¯­ìÑl6Ûë¡G»SÏ Û»ƒîTÌ–rVw +¿GÒRDåõõuP)«±Y=ñð>D¾(ýÈÖ?Ô÷;Άú§Tþ•E^ûºÔ +…`„ˆž·:Ôù¿‹½&;=מFew Ùù¾`_/>zù¦ñ¶z5"„r´ñ/A¥”ÖÚ³ðXk—žUHÒ×5ø  ‡Ã\.·×ߤ———kƒL§ÓÍAJ¥’TV*•µ²Ùìx<ÞÚLø»=÷z½ ²ÝnGTv»ÝÍþûý~ôšÈtòù|ø+ò_i©qïüüüää$º‡ÎåúúzmaE±X”Ÿ[­Ö^=ÚzÝÞt§b¶t³ºS½^F–"*¥ŸL&˯—µ‚è‰ÏçsÙY'žZ­&õ›ƒp»ãl¨œÆ @>’ÿú+qq!g2øHÖ0¢™­uþã¯ÉNÏõ„§QÙH¶¼xšWŸu«W#B!ÇÿTJi­1 µvéY…$}]€Ýd29==ó×h6›mµZ[™N§qÉårÃáð¡N‚²R©Ñp¯× *Ûívôìä‰áòù|œ5™Ífõz=Κˆn·ûNç2ŸÏ×fh4û>ôhwêt{ØŠÙÒÓÏêNáñ¥¥èâZ­_^^®}=qÙÄ`å‡Ò×mNGžµ9È×6ΆÊww.{¡P¡¢×m«ƒœÿøk²Ós=áiTv’˜Ë‚˜>yåV¯F„BŽ<þ%¨”ÒZckíÒ³ +Iúºø¿n·[©T2™ÌÖ?EONNZ­Öl6‹äúúú¡r¹œŒ0ŸÏ#¾|÷ôô4¢¬×ëöÛíè–...ÂmH‡Ñõa²&ÒöÖéˆl6[¯×¥™÷0—ét*ã¬5 ñл£Ü©çÑíaw*~KO9«;…_¢~¿]î¹T*­}1qYº` +…BAþ»uðËËËðaØœÔûõ:N±Xܺò2#9½Ñçs§'žÔïüÍ°Ó³<áiTv’‡ð⣗?ùC¿z5"„räñ/A¥”ÖÚ³ðXk—žUHÒ×5À×ôz½N§ÓðÜÜÜÈ'“É^#L§SùVã^«Õ‡q¾8{!º²ßïû•q† Šå‡8õkæó¹|W–"˜Q»Ý–V£¿õ.æ"•···A›#ǨïØvêÙt{ÀÚ«¥ÇÕ˜Ãƃd_üúÍ_¯ÕjŽ'“ÉDÿΑµuîÉã?bÍ_=!=ËGÁÊû¿wîÕëõ÷Ó!pTÊî@âà@¾ý½ßœýñ«êÕˆBÈñÇ¿•RZkcÌÂc­]zV!I_פÉdâÜk4ÑÅÃá0(nµZï§CਔÝÄÁ¼þí¿ªW#B!©ˆ *¥´ÖƘ…ÇZ»ô¬B’¾® I³Ù̹W©T¢‹ëõzPÜëõÞO‡ÀQ)»‰ƒCøþ/ÿV½BIKüKP)¥µ6Æ,<ÖÚ¥g’ôu ËçóνËËËù|¾Y3NÏÏσ²b±¸µ xöÊî@âàÉ>.¼>kü·ÚBIKüKP)¥µ6Æ,<ÖÚ¥g’ôu k·ÛNH&“©Õj{õz½T*… òùüt:Mºk ew qðd?þüËjsD!$Eñ/A¥”ÖÚ³ðXk—žUHÒ×5$¯Ýn;ñT*•ñxœt¿@bÊî@ó}ÁC>ýù_ªÍ!„tÅ¿•RZkcÌÂc­]zV!I_×p¦Ói«ÕÊçóÎ6Ùl¶V« ‡Ã¤ÛVv’­¯ bÊ}ë;?ýâmµ9"„’®ø— RJkmŒYx¬µKÏ*$éëŽË|>ï…ôûý¤;ŽHÙH<Á?ûgµ9"„’ºø— RJkmŒYx¬µKÏ*$éë¤FÙHyåž5G„BRÿTJi­1 µvéY…$}]€Ô(»‰ƒ=½þÝ¿Ïš#B!©Ž *¥´ÖƘ…ÇZ»ô¬B’¾®@j”ÝÄÁ>¾û‹¿ž5G„BÒÿTJi­1 µvéY…$}]€Ô(»‰ƒØ¾ñÍü›/Þž5Gÿc¿ŽaGÎ8€ÓYiÜDqs¢I¨Âuᤓ¦9±w\òÐ+"EîèÂU :)„j¥4®"J·è*šè\úŠHg¡SΔ¯¤uëÖ3ÃÀ*ŸìËÄûÀ<æ¡…ÿOÿÂÀço>Ï[íÈ‚ ÈÇžìäœ !¤”ë”Rj“Úæ\û¸€AÐn·c³ÙìÚ³¼6ÏóèÁéñéâڳܗÎhA©Aioþú¯Þd‰ ‚Ü@²Cs.„R®SJ©Mj›síãà\–eeoµ¶m yžgõ1MÓ÷ý“û4›ÍlžÁ`pÎ<#Çq²g§?J’$×àŽtF J ÊùÝgyÿÜ›,AHvrÎ…RÊuJ)µIms®}\ìïûa–)Ö/¶Œ±su]wœ¢¥/½nEק5¡ÍÑMJnTÞQ;üjÊOE‘aÙãÏçóW˜ 2Ñ‚Rƒr¾|ûCo²DAn#Ù!È9BH)×)¥Ô&µÍ¹öq ð Ïóúý¾eYÏ^WëõºmÛóù¼èF]É;guÝÇ0Œ8Ž/´q]W·¢ëÓšt»Ý¬C«Õ*yËÉ;E=rmûjK·'Irƒœ<ÕããcVÙl6OXNÓ-(»‡ìúCï½ÉA¹™d‡ ç\!¥\§”R›Ô6çÚÇ5Àû0 c/¾ºÖëuß÷wo×Ôää¦Ói~­Õju¡…ˆëºº]ŸÐ!Š"Ý&±þÌÇ/Þ› I’”|Š3§òŸû)Çqƒišº¦Ûí>k¢¢{Ož$I’~¿ÏR4ÕÞšJzÿáS­uX½^/Úk¼Ã¶më_©ÞÏ™N§ÔͲ¬ü*­Vë¦"T£;Ð_ð¨=€ÓtF J úÍo?ÿÓß~êM–‚ È-%;9çB)å:¥”Ú¤¶9×>®à~A?m4ôÍÞÊ$IÇ1M“ÊcÏ~ÕvªVU ¹®«[Ñõ±·‡aXòöªvضmÝÄ÷ý½†Ãa~­ƒU5ñŒ± +'¼ÜB®ëêVt}ìíF#»—.”U¸Ã¶mëV¾ï—YÑ4ÍKO•i·ÛzÅ$IÎì/ꌔûòí½ÉA¹½d‡ ç\!¥\§”R›Ô6çÚÇ5Ü©F£¡_NƒÁ9­tƘþ2Žãét:NÍf³§§§ûPŸŠ¢¨üBE¨‰ÀuÝüôQ·¢ëø«Õªä¾U¸Ã¶mëV´?EeaÖrönc…SeÇ)3T¥3ZPjPàó?ÿ³7Y"‚ 7™ìäœ !¤”ë”Rj“Úæ\û¸€{äy^þý4 Ãsºé>Œ1ú˜$Ép84 £ö!Ó4ƒ 8ÐGßÒn·Ë,T$Š¢n·[ÛaY–ïûTຮþ’®zØù|®ïN§EeÕî°mÛºUö{Åq¬Ëh3/=ÕnOÇqÎo‡uF Êî1äW¿®ýí½ÉA¹Éd‡ ç\!¥\§”R›Ô6çÚÇ5Ü£áp¨ßO»Ýî™Ýt+ÆXEÍf³VÀ0 ×uËô9­€„aH« @Ç¡ôÇóì•ßº Ê”¿Ã¶mën¾ï•Ñ<ºŒþ +—ž*CqÝóññ±’žp@g´ 8éîÙýïz“%‚ r«ÉAιBJ¹N)¥6©mεk¸GŒ1ý~:NÏì¦[5z½®?Ò*ý~¿ÙlÖr È¢èpºñ´êlšf~9˲lÛn·Ût¡¿ÌéºîQK­ô½q•U»Ãôº›ïûEe´Ûºl0\z*Mï9ý¨ª'錔ìøä÷_ýqüŸ‡ÉA¹Õd‡ ç\!¥\§”R›Ô6çÚÇ5Ü#Ã0ô+ªçygvÛ}íív»«ÕJ„ahY–þu0îÃ;­àÝ»wºÆ4Mß÷õOI’Яùϸ®{ÔÃRÛìFz¢eÕî°mÛº[þ¡òf³™®¡Õ£(ºôTZ«ÕÒmã8®ª-ìÕ-(»‡/¼ùæû‡ÉA¹ád‡ ç\!¥\§”R›Ô6çÚÇ5Ü8Žó¯¨OOOg6|öÎkÛönM†ºÀ0 šá@ÆØá…ö$IbY–^Â÷ýÝúÒ4Íü´®ë–ÒÕjõâï/°Ã´¥ºÛ³ç¢æžçµÛíüŠŽã¼ÂT{Ç ‚ ª¶°Wg´ ÔàCŸvÞ>L–‚ Èm';9çB)å:¥”Ú¤¶9×>®àî¬V«ü[j’$g6Ìw³m»¨¬Õj鲧§§}c‡Ú[à8Ž.è÷ûEcA`†®t]·Ä#þ‚ÆÖ7v»Ý¢²Êw˜vµV=Úl6{©´Á` Ûú¾_U[Ø«3ZPJž ÷ã«á¿þ¾DAn;Ù!È9BH)×)¥Ô&µÍ¹öq w'ýŠjYÖù u·F£‘$IQÙx<Ö•¾ïèó_öëFq$ °3k¬†ŒdEÊ^Rš!­ÄÎ !í%•Œ:;BXݜɬNV8„ŽN„qs: I:¥ª(®ÎV×ù(hp¥ñÿézÚ¯^=×H]2!ľÑÉýKS ßÑ2ðd21•Œ±Kï÷?zl³Rz®¬ðÖ{9—¸®; â8þfSùÿÙétZ`g8Ö-t.Þ •ò§?ÿ½7^!‚ ß}²Ks.„RîRJ©}êSöu •3ŸÏÍWªëº÷74Ý!–2Ƙ©Ô?ßÐÇ^P¯×³§µZÍ>ðÅIÎ ÃÐ,|xx8WVø SJKô[Ïf3K“§2‚ ¸í<àÑBçâ½P)ÝßþèW‚ ÈwŸìäœ !¤”»”RjŸ:ä”}]@ål6›ü‡j’$w64­!–²Ùlf*c7ô±¸®{ÍšÞÝ>É5 }ß?WVø SJM·Éd¥ôyêšÍf~/Ëë>•‘?– Šj 'uF žüôëï½ñ +A©B²Ks.„RîRJ©}êSöu •“$Iþ[u¹\ÞÙд"„XÊ¢(2•Œ±úX +â86Oûý¾}`½»}’sÍBß÷Ï•~”RÓM㳧A\³]áSùó´ ¢3Zè8ð¤ûÛ½ñ +A©B²Ks.„RîRJ©}êSöu UäyžùV ÃðÎn¦!ÄRE‘©dŒÝÐÇR0ŸÏÍSJ©}`½»}’k><F{A«Õú6SAÜvžpƒÎh¡ã@ê§_ïW‚ HE’]‚œs!„”r—RJíS‡œ²¯k¨"Bˆù\}||¼³›i¥ÛZÊ¢(2•Œ±úX +ÖëµyÚï÷íëÝí“œ3›ÍÌBJ©¥²ØÖ{™nú ¶Ûm­V³×>•áûþmç 7èŒ:8Λ·ï~ùë?{ã‚ R‘d— ç\!¥Ü¥”RûÔ!§ìëªh8š/Öf³yg7ÓŠb)‹¢ÈT2Ænèc)H’äÊ14½»}’k^¡ßï[*‹=aJ©é¦g8Y3™LLM·ÛýSl{n<(Jg´ÐqÀqÞúÒ¯Aê$»9çB)å.¥”Ú§9e_×PE³Ù,ÿцá=ÝLBˆ¥,Š"SÉ»¡½ÀuÝìi½^·¬w·OrÎz½¾òe‹=aJ©i¥ñdÍv»5' m6›×žêEã@Q:£…ŽSyoÞ¾ûðùko¼BAª“ìäœ !¤”»”RjŸ:ä”}]@E5›Móݪ¾§•éC±”EQd*c7ô±ÔëuS°\.-“ø¾oŸäœ$IÌÂF£a/.ð„)¥¦•>Æse¦l0¼öTF»Ý6=ã8.¤'œÓ-tœÊ{ÿéKo¼BA*•ìäœ !¤”»”RjŸ:ä”}]@EM&“ü§ëp8¼fU†Œ±g¿4M!–µQ™Êã&×ô± Sàû¾åò/~r‹F£aÖn·[Ke'L)5}ô1ž[;ŸÏMY­V;9^Sz¯¬›çy×t€{tF §ÚÞ¼}÷áó×Þx… ‚T*Ù%È9BH)w)¥Ô>uÈ)ûº€êjµZùXBH’$çŠã8n·Ûº¬Ñh<{”ï`Ù.Š"SÉ;.¸ØÇ^°\.Mçyëõú¸f:º®›ë““Xt»]³Vïh/.ê„)¥¦‰>FËŽÍfóâ«5UF¯5­t¥e6(Dg´Ðqªíý§/½ñ +A©Z²Ks.„RîRJ©}êSöu ÕµÙl<ÏËÃÖëuß÷g³YÇYÍz½ðßF£ñ¬yD±lE‘©dŒ\ìs±@ÿ>ÿ.ËåÒuÈ)ûº€J[.—µZíEŸºÃáðYóˆbÙ+Š"SÉ;.¸ØçbÞÂuÝü´õzýáá¡Ýn{žg~éû¾}‹0 -Gq¬¦”š§ú-ÛÅqœ?½ûëM•™L&¦f:^<¸Sg´ÐyÑßðïÌûO_zã‚ RÁd— ç\!¥Ü¥”RûÔ!§ìëªn³Ù´Ûík>r=Ï ‚ฃ) „X6Š¢ÈT2ÆnèsÍFóù\Ïyî\×L&ùV''±H’D7ÉÖ6›Ík–Ü”RS£Ñ¾]¿ß7ÅÃáðõ¦Êt»]S©{^s pÎh¡sÍðïÒ›·ï>|þÚ¯A +&»9çB)å.¥”Ú§9e_×ÿ5›ÍºÝ®ëº'¿pFI’œ\kVµÛmËQ™†Œ±ú\¹Ñr¹¬×ëÇo¡W­×ëg­¦Ó©¥ÕIºéÇñ•«î9áÁ``*çó¹}£ü9B^oªŒçyYq«Õ²ï…èŒ:'ÿnWÁûO_>ŽW‚ H5“]‚œs!„”r—RJíS‡œ²¯k€ÿEQ†~êññQÿs³ÙØ—¬×ë(DZ½r>Ÿg•·õ¹~£l/ÿIÏÞ´ºØçcÌy¢~éòNx»ÝfÓê—ºf‹år™Õ_ì|ÏTÙFæ(ôÂ+÷€{tF §’~øñç_>ÿëãx… ‚T3Ù%È9BH)w)¥Ô>uÈ)ûº€—I’Äu]'E)-{œ2ù¾ïýôӰ7oöþ³gÏZ–öu`T¨º)RF̹óZ¾‘˜Y%"¢Q®7‚¶m;Žãº®'ù¾HaÏ5ŽbnnNé»ÿ~Ø×9n–e9s¦÷ú©T*ìëÀQuS¤Œ˜±w3«DD4âõFжmÇq\×õ$ß÷©3 ì¹ÀQX–uöìYEJ¥Ra_ç¸ÍÍÍõÞýÌ™3= +û:0BTÝ)£äÜù -ßH̬ш×AÛ¶Çq]ד|ߤ΀°çGtûöíO>ùDQ”›7o†}—ãf†xqñússsaßF‹ª›"e”ŒÝ¸“˜Y%""ê mێ㸮ëI¾ïRg@Øs ††ª›"edœ;?¡åê £IDDÃYã#¦êe1‚¶m;Žãº®'ù¾HaÏ5ªnŠ”‘1vãNÂhщ¬qÌ©zYdY–mÛŽãx’ïûÔö\€¡¡ê¦H çÎOh¹zÂhQx5NNª^Y–eÛ¶ã8®äy^ u„=×`h¨º)RFÃØ; £IDDÇUãã¦åë1q ª—E–eÙ¶í8Ž+yžçû~aÏ5ªnŠ”ðƒÿ\ËÕF“ˆˆþ5þ÷´|ý˜»”*‰Úí¶mێ㸒çy¾A§/ì¹CCÕM‘2~ùÕ¿F“ˆˆ>F#§åëG/WûhÉ/¥J¢V«eY–mÛ®äyž/RG +{®ÀÐPuS¤œvßýþâÙJÂhÑ‘j!-_ÿ°rµwÏU÷•­=yBïØKÓEQ«Õj·Û–e9’çy¾ôu:°ç U7EÊi÷‹kÿLM"":tJË×[®övñ\u¯lå Ì½2ï,–)Ø›OvÏé{izE´³³Ójµ,˲%×u})ö\€¡¡ê¦H9í¢úrÂhÑ»k>-_?T¹ÚÅsÕݲ•·2»eÞ,–)¿YºÔ¯øá•z‡ôK.‹¶··wvvÚí¶eY¶m;ŽãIÁ€N§öb€á ê¦H9Õ~võšÑ$"¢·j²x¾þžrµ·ªŠbÙÊþÌn™}E3å½Ò%Yq°ˆ¾r@©å~K‡nùõ×åÉ¥±©Å±©¥V«eIŽã¸®ëyžïûA_G +{´ÀPuS¤œjêä5£IDDšÑ8dñ|ýÛÊÕÞª*Še+™Ý2{E3åÝÒ%Yñu}e_©eÙR¯‰éÅ·* 6ž\è7PÝúw¿.]?tqráâda}}}sss{{»-Ù¶íJ¾ï})ìÑC@ÕM‘rzýäâŸ4£ID4Â5S<_ÿ¶rµýUE±le 3–Ù+š)ï–.EÓÅ^}e_©åHj©×Äôâ@…^ãÉÙünS÷z]î5yW× ZzQK~•[¹bìêLéÚlµÛ×Õ/»Õ^÷»Ùj"³²¶¶¶¾¾¾¹¹¹µµÕn·-ËrÇu]Ïó|ߤN_Ø» N:U7EÊé¥þù?šÑ$"½ï-ž¯¿³\mÕX¶2Ù-³[4Sî–.ÉŠ¢ˆ¾²Wj9’Zê51½Ø¯Ðk<¹0žœï6u¯×eÑäÝèô‚–^ÔÒ…Ï3‹WŒâcå×3Åk³Ñ—³µë·V?V_äKOŸ>][[[__õêÕÖÖV»Ý¶mÛqOò}?‚N_Ø» N:U7EÊ)õß^ŽçêšÑ$"ï-ž¯¿³\m j,[ÈŒev‹fÊ»¥KÑtQÑWöJ-GRK¢‰éÅ~Ñxra<9ßmêžè²hòntzAK¾È.]1Š¿ýkåÚlå«¿¯^¿u¬}ž[yüøñ³gÏ^¼x±±±ñêÕ«˲lÛv]ד|ßï {ºÀ‰¦ê¦H9¥.þñßšÑ$":Õ5Þ[<_?¸\m ª(–­ô3c™Ý¢™r·t)š.öŠè+»¥–#©¥‰éÅ~Ñxra<9ßmêÞeÑäÝHr^K>Ë,^1Š¿ùKùÚlåk\¿µzú<»üðáÃ'Ož<þüåË—[[[­V˲,×u=É÷ý΀°§œhªnŠ”Óè;ß;ËU5£IDtk|{ñ|ýàrµª±l¥ŸÙ-Ó-š)wK—¢é¢(¢¯ì–ZŽ¤–DÓ‹²‚h<¹0žœŸº'ºp„B!„BÍhQb"‹Õ/…ÕX¶ 0WìsH™ÎÒí±–˜jŽY¢tSЂVð¤R«¼Záƒ*³r‰•‹l²À$ò\²pA+/eëWWÛñµÞŠ$ÿ³Óéܽ{w}}}ssóéÓ§/^¼ØÝÝÝÛÛ;<<<::rÇuÝápèûþèDÓ>p„B!„BÍhQb"‹U4ñM,Û˜ö9¤Lç é6Õ +ˆ©&e‰zHÐÍVð¤R«¼Záƒ*³r1”,0‰ù¼vÓŽçzð¿9>AÇqƒëºžç Çù´Ñä¦}à!„B!„šÑ¢Ä +D"N­J™.À”Ø“ˆéÎ)©öXKЛ!Í +ðšÉ“OêœZ )•+¬\f’E&Qˆ.ç¹Dþ’nüáËf<׃ÿßñ :4×u=ÚæÓF“›ö#„B!„BhF‹+™ÿ~Õ¤L`ì3‰éÎ)©öXKЛ”%h¯™!RçÔZH©rJ…U V.3É"“(D—óìrþ‚f\YmÞÈõà;t|‚Íu]6¤ù´Ñä¦}à!„B!„šÑ¢Ä +Dæ¿ß~ö)ÓøÙ“ˆéÎ)©6Õô&e šÅkfˆÔœZã”*§TXÅ`å2“,2‰Bt9Ï,ߎã÷+Ö\Þ…ãì÷ûŽã¸®ëц4Ÿ6šÜ´!„B!„B3Z”XÈœ÷Þûˆ©Ž”é|/ì3‰éÎ)©öXKЛ!Í +ðšÉ“OêœZã”*§TXÅ`å2“,2‰Bt9ýü¶DJ—WÌë·z7rðŸ`¿ßwÇu]6¤ù´Ñä¦}à!„B!„šÑ¢Ä +Dæ¼__ý«”é¼{ö™Ätç”T›j z“²Íâ5“' žü›½ºéqä(À8îc®¹'¤œÉ!)SÝÕmC6J6,lv )4v¿TwÛÌFÉîø”;Ÿ€Ç™q{Ü¿”ínûûT©ü"Ñ.+Œ×"!›¸{õüôÿ Ï3¤þ`›×7½Ät{†sg4âp((Âx^¥ÌÞÿìëZkŽB¯»ì•U›é^ÑL7µÃɶ€çYÁØbÃ<ê¨×7½Ätù31©wÈåÍïXòäóÉE{NÛî…RJ¥ÔR[ikmsÜ© +Š0žW)­·Þþ™Mk­9B½¾²WVm¦E³ošÚáĹp+[ld±!õÛ¼¾é%¦Û3œ®ÑˆI½c6nEý§/Ò‹ö¡Ý +!¤”J©¥¶ÒÖÚæ¸S8a<¯RZ¿zò÷ZkŽB¯©ì°j3Ý+šé¦v8Ñq;àV0¶ØÈbCê¨woz‰é&†sg4bRïË›ª÷ÉÕø¢½@…jw‚B)¥Rj©­´µ¶9îÔEÏ«”–áôj­9B}ï²ÃªÍt¯h¦›Úád[Àó¬`l±!õÛ¼¾é%¦Û3œ®ÑˆI½c6nEý§/Ò‹ö°Ý +!¤”J©¥¶ÒÖÚæ¸S8a<¯RN¿øõE­5G¡ïWvXµ™îÍtS;œØ!·nc‹,6¤þ€z÷Ôë›nb8w†Ó%õ¹¼±ÝøñÕ袽@Enw‚B)¥Rj©­´µ¶9îÔEÏ«”ÓûŸ}]kÍBèÿ-;¬ÚL÷Šfº©NìÛ·‚±ÅFR@½{ÓKL·g8]£“zǬw>“?}9»h/PñÛ BJ©”Zj+m­mŽ;õ@AÆó*%ôÖÛ?µC^kÍBè»—Vm¦{E³<;œè¸p+[ld±!õÔë›^bº=Ãé˜Ôo©|5~v½8o£Ò´;A!„”R)µÔVÚZÛwꀂ"ŒçUJèÝG_ÕZs„úŽe‡U›é^Ñ,Ï':nÜ +ÆR°Íë›^bº=Ãé’z‡\ÞØÞÝ'Ïùy{J×î…RJ¥ÔR[ikmsÜ© +Š0žW)!ÒèÔZs„úÖe‡U›éCÑL7µÃɶ€çYÁØbCê¨wO½¾é&†sg4bRïË›»{òÅô¼½@%mw‚B)¥Rj©­´µ¶9îÔEÏ«”ÍÏùa­5G¡oWvXµ™>ÍtS;œl xžŒ-6¤þ€z÷¦—˜nb8wF#&õÎÙå¿~ôþøåì¼½@¥nw‚B)¥Rj©­´µ¶9îÔEÏ«”Í{ùgµ5G¡ÿUv˜ÝLŠfº©N¶œcÊF” M`z÷†—n8]ÒˆÏê·äòöƒ°ÿôevÞ^ 7 Ý +!¤”J©¥¶ÒÖÚæ¸S8a<¯R6VÈ«­9B/;Ìn¦{E3;šZád[Ài0¦lDÙÐô¦×7¼Äp{Äé’F|V¿5ê·6Ÿ^gçízcÚ BJ©”Zj+m­mŽ;õ@AÆó*¥òª­9B);Ìn¦{E3;šZád[Ài0¦lDÙÐô¦×7¼Äp{Äé’F|vyc6n?º={¹8¿FoZ»BH)•RKm¥­µÍq§>p((Âx^¥TÎ.oª­9B½ªì¿²›é^Ñ,Ï +'ÛNƒ1e#ʆ¦?0½¾á%†Û#N—4â|j,7~üœŸ_/ЛÚî…RJ¥ÔR[ikmsÜ© +Š0žW)Ÿ¼ó[;J«­9Bí—f7Ó‡¢YžN¶<cʆ¦?0½¾á%†Û#N—4â³ËËÿðùäüzÞìv'(„R*¥–ÚJ[k›ãN}àPP„ñ¼JyüæÏÿ¨¶æ!ôe‡ÙÍô¡h¦›ZáÄ +¹pŒ)šþÀôú†—n8ݳzçìò†6âÇÏùù¿Ù«—GªŒã~H°f$6 ìש‹ÍE$À0æâkùT٣ʌ_ëüò§b{ADgÜü Bk¶/ž¦ÑøU2ñåÈo>øÍ¡¼Æ[ï‹Ú¨öœÊe¾ÜýDÞ<}1/u–tæíNP)¥µ6Ƭ¬µµ±¶ÇúÀ@F ™¤åÞNõªØ^ÑY6?¨Ðší‹§¶Iƒ( dâË‘ßzáÀkܹ¾[¿ÕžS¹Ê—»Åðúéßf¥Î’(mw‚J)­µ1fe­­µ=îÔ2JÈ$-—yo½óA!žÛ ":³æ¯WhÍöÅÓB< ¢q%L|9ò›C/xá½Ûè»õ[Q»v*Wùr·Ð¸þúÇI©³$úw»TJi­1+kmm¬íq§>pQB&i¹ÌûðËŸŠíYóƒ +­Ù¾xšDãWÉÄ—#¿ùà‡/¼w}·~+j×NåÊ)_xÕ‹?}Ÿ”:K¢ƒv'¨”ÒZcVÖÚÚXÛãN}à £„LÒr™çT¯ŠíMóƒ +­Ù¾xj›Ñ8Išß|ð›C/x;·ÞµkQí9å §Òý¼uÿìå²Ô!ú/íNP)¥µ6Ƭ¬µµ±¶ÇúÀ@F ™¤å²íí÷>.¶DtÍ_¯Ðší‹§…xDã J™ørä7‡^8ðwn£/j7¢Ús*—ùr·Øè=}1/u–DÇÚ RJkmŒYYkkcm;õ€Œ2IËeÛGßü\l/ˆè šThÍöÅÓ´ ¿J&¾ùÍ¡¼ðÞmôÝú­¨öœÊU¾Üõj—_ý”:K¢ÿÝî•RZkcÌÊZ[k{Ü©d”IZ.ÛÜúm±½ ¢GÝüõ +­Ù¿Š§¶Iƒ( dâ7üæÐ ^ã.Q»ÕžS¾å‹/Ú÷¥Î’è—´;A¥”ÖÚ³²ÖÖÆÚwê%d’–Ë°·ßû¸Ð^Ñ£n~PК틧A<ñ£±%¾L<9òšC7¸;Ñè‹ÚSíå+—OÊÝOš7O_ÌK%Ñ/lw‚J)­µ1fe­­µ=îÔ2JÈ$-—a}ós¡½ ¢GÚü  5ÛOm?û2ñäÈk>xáÀ ïE£/ê·Nµ—¯\åË]¿~õç'¥Î’èÿjw‚J)­µ1fe­­µ=îÔ2JÈ$-—aNí¦Ð^Ñcl~PК틧A<ñ£±%¾L<9òšC7¸;Qï;µk§ÚË—/Dåâ‹çÃg%ѯhw‚J)­µ1fe­­µ=îÔ2JÈ$-—Uï¾ÿY¡½ ¢G×ü  5ÛOÓühü*™xrä5‡n8pw¢Ñµ§ÚËW.Ÿ”»ŸÊþÓóg%ѯkw‚J)­µ1fe­­µ=îÔ2JÈ$-—U¿/ý½Ð^Ñãj~PК틧A<ñ£±%¾L¼æƒ×ºá@4ú¢~ëÔ®ó•«|¹ëÖ.¿úaòìå’è·´;A¥”ÖÚ³²ÖÖÆÚwê%d’–Ë*QïÚ "z,Í +Z³}ñ4ÍƯ’‰'G^s膷q—NS»vª½|ùâÉ_þñYÔÿöÅâÙË%Ñolw‚J)­µ1fe­­µ=îÔ2JÈ$-—Iï¾ÿY¡½ ¢ÇÒü  5ÛOƒxâGc?J<9òš^8pÃ{Ñè‹ú­Síå+WOÊ]¯vùõÓg/—Dÿd¯^V; k™e–ÙÍ*e†`Œ¡uTçÒ!™,<¶zÀ¡uW#‘ËÄ­…";/¼È&+OߧÕ-µŽîïSEé9SjèF gTþÿþŸ¤Í•RZkcÌÂZZ+k½Û¾%dš•sÒ§¯¿?lψèÿ¢éVQkòP2Î +ãáûdÈAÐìûž_¿µn¡z]¨\y¥s¯tú2¹;ể~Â6TJi­1 ki­¬õnû8p”iVÎI¢Ö=lψè™7Ý*jMKÆQ2 +ãa§Íû Ñów¢Þµ›BåÊ+_äKgAõâÕ›ÑQgNôÓ¶™ RJkmŒYXKke­wÛ÷À€£„L³rîyñÉëÃöŒˆžyÓ­¢Öä¡dœÆÃ÷É4ƒ Ù÷=¿~+jÝBõÚ+_z¥s¯ôöerwÔ™}ˆ6TJi­1 ki­¬õnû8p”iVÎ=Ÿ}óÃa{FDϹéÓ¢Öä±d%£0†qÈAм=¿q'ê]Q»)T®¼òE¾tT/^½uæD¨Í•RZkcÌÂZZ+k½Û¾%dš•sOÐì¶gDô<›nµ&%cÛ(Œ‡¡L9š}¿Ñóë·¢Ö-T¯½ò¥W:óJo_&wG9Ñm3A¥”ÖÚ³°–ÖÊZï¶ïG ™fåóâ“ׇí=ϦO‹Z“Ç’q”ŒÂxÆi(Ó y4û~ãNÔ»¢vS¨\yå‹|é,¨ž¿z3:ể>t› *¥´ÖƘ…µ´VÖz·}8JÈ4+ç˜Ï¾ùá°=#¢çÖt«¨5y,GÉ(Œ‡¡L9š}¿Ñóë·¢Ö-T¯½ò¥W:÷Jo_&wG9ÑÇi3A¥”ÖÚ³°–ÖÊZï¶ïG ™få4{‡í=«¦[E­ÉCÉ8+Œ‡aœ†2 ä höýFOÔ»¢vS¨\yå‹|é,¨^|ùfTì̉>Z› *¥´ÖƘ…µ´VÖz·}8JÈ4+ç’_yÃöŒˆžUÓ§E­ÉcÉ8JFa< eÈAм=¿~+ê]Q}W¨\y¥óüñéïãî×'³bgNô1ÛLP)¥µ6Æ,¬¥µ²Ö»í{àÀQB¦Y9—|þçÿ¶gDôLšnµ&%cÛ(Œ‡¡L9š}¿Ñóë·¢vS¨^{åË|éÌ+~ñ÷A±3'úøm&¨”ÒZcÖÒZYëÝö=pà(!Ó¬œK‚æà°=#¢çÐt«¨5y(g…ñ0ŒÓP¦Aó>hôüƨwEõ]¡rå•Îóǧaíò«o'ÅÎœh/m&¨”ÒZcÖÒZYëÝö=pà(!Ó¬œ3~ùÙ_£öŒˆžCÓ§…­ÉcÉ8LFA< dêËßì‹FOÔo µ®W½öÊ—ùÒYþøÇ—É]±3'Úc› *¥´ÖƘ…µ´VÖz·}8JÈ4+çŒO_µgDävÓ­ÂÖä¡dœÄÃ÷ÉÔ—¿Ù^¡Þ-Ôn¼ÊU¾|qP:óʧúÇ°Ø™í·Í•RZkcÌÂZZ+k½Û¾%dš•s†W}µgDäpÓ­ÂÖä¡dœÄà N™úÍ{¿Ñ»B½[¨¾ó*WùÒùÁñÛ¨~ýÕ¿¦Å“9ÑÞÛLP)¥µ6Æ,¬¥µ²Ö»í{àÀQB¦Y97üìç¿“IÔž‘«MŸ¶&%ã0ñ0©/~³/=Q¿-Ôn¼êµW¾<(åüc«_<™9Òf‚J)­µ1fa-­•µÞmߎ2Íʹá×ø.jψÈÕ¦O [“Ç’qß'S_üf_4z…z·P»ñ*WùÒùÁñ©¨œùÏQñdNäN› *¥´ÖƘ…µ´VÖz·}8JÈ4+ç†Ïÿòߨ=#"÷šn¶&%㬠qÈÔoÞûžhÜê]¯zíU®ò¥óƒã·¿“7_;+žÌ‰œj3A¥”ÖÚ³°–ÖÊZï¶ïG ™fåÜà7Q{FDŽ5Ý*lMJÆa2 +âa S_üf_4z¢~[¨u½êµW¾<(yǧ_ümP<™9Øf‚J)­µ1fa-­•µÞmߎ2ÍÊ9àÅoŠQ{FDŽ5Ý*lMJÆa2 +âa S_üf_4z…z·P»ñ*WùòÅÁñ©¨œ¿z3)žÌ‰Ül3A¥”ÖÚ³°–ÖÊZï¶ïG ™fåðÛâ¿£öŒˆ\jú´°5y(gñÿد{ØDÒ;Žãt7ݹ;¤k\E'YQ ++RÄ˼Y¹D¾è´a©ÒcÃÀ œmw[:Mä’.–ÒXŠ_Øe×°x†7É%%%¥KFÃK”XŽ³ílÎ~`ýûè[xíyùóøWÃTtSÖËrò\J¼µ‚{ØÎû£9ßæñš–ži„v›Ím£M°ÛíÚ¶í8Né3f8ï 攤›”kø£¯×Ò „ÐÜTŸNMÕÆUJÑ+Šn*ISN|µ’/Š±B`ûm úÆ·yêÛ8úƒñ>´ÛDhÎm‚Ýn׶mÇqzLŸ0ÃÙxoà0§$ݤ\¼}ñåWªQ[K7BsPýJjª6Ψª†¥è%iÊɲœ8—´’/Š±³ÀVÞ}íÛ<õGŽ¿Û)‡v›Í£M°ÛíÚ¶í8Né3f8ï 攤›”‹·_®½\K7BsPýJjª6Ψª†¥è%iÊɲœ8—´’/ˆ±³ÀVÞÍù"'bôôÙ +´ÛDh!m‚Ýn׶mÇqzLŸ0ÃÙxoà0§$ݤ\¼ýöÏÿ\K7B¼«O§¦j?fTUÃRôŠ’4ådYÖJ’ö^ŒÄíw­¼óÔ·q¤Æß_ÖC»M„¥Ñ&ØívmÛv§Çô™3œ÷sJÒMÊÅ›œ(¯¥!®Õ§SSµqF•RôŠ¢›JÒ”d­$Å‹b¬Ø~ˆ¾ñmžú6Ž~¯B»M„«Ñ&ØívmÛv§Çô™3œ÷ð_–ee®Éårô„Ã{4¸¯ÃÃÃ++HËÊ{(¸}ʼ^¯‹¡Uã=ÌI7)W_óíZºâZ}:5UgT)E¯(º)'Ërâ\ÒJR¼(ÆÎ[yôµ/râ÷ÇÐn¡…k´ ÒÓ²mÛŽãô˜>3`†³ñÞÀàI»¸¸ƒKKK®ÙVWW³Ù,ïIa¦N§‡g-"}Ÿ~Újµx 3LÖKú³‚÷D0G$ݤnÙ¦Á¯ÿô÷µt!įútjª6Ψª†¥è%iÊɲœ8—´’/ˆ±³ÀVÞÍù"'bôäÙ +´ÛDhm‚ôxlÛ¶ã8=¦Ï ˜ál¼7px¢:N0tÝÛòò²eY¼§†«2™Œ ÷YÁ z^å=/Ü ›ÍN¯T»Ýæ=ÌI7©ûï×Á9]K7BœªO§¦j㌪jXŠ^Q’¦œ,ˉsI{/Æ âö»ÀVÞ¿yê‹+±×Á—õÐn¡m´ Ò_1¶m;ŽÓcúÌ€ÎÆ{€§¨X,.--¹~Êív{§¸®¡ÓéðžÆèá3 ^_¦••Z>ZÍë?ÚÙÙá=õryy9ù”e2™[Ž¼¸¸˜þÒÊ>ÖŒ°$ݤ®ÿJ4_|ù•jÔÖÒ „УW¿’šª3ªªa)zEIšr²,k%I{/Æ í·èßæ©oãèwÉw¡Ý&B Ýh¤ÇcÛ¶Çé1}fÀ gã½À“spp ‚kJ0,‹×ìt:ûûûgr䇪ªN/âòòr6›¥'Òéc,Ë +‡Ã“cè^Ó>Aív{òÎÓ*Ü~p«ÕÚÛÛ£Ï&}èg<X’nR.~~!þ ¦¡G¯>’ªý˜Q•õŠ¬›rÒ”$­$Æ‹XÁ¿ýÖ}ãÝ<õFþµž>eš-z£MþƱmÛqœÓgÌp6Þ8<-­VK×Gôu6›½ó¬\.·²²BÇ[–õð3ÂÝö÷÷]S¼^ïåå嬃Ûí¶ªªtØúúú#ÎøÔÑÛ>Y p8Ì{XT’nR.~~þ‡šn „·útJª6ΨR²^‘é7C²,%>ˆZIŒ±3ÿVÞ}íœø"ÇÜ)‡2M„>ƒF›`·ÛµmÛqœÓgÌp6Þ8F› ý±cÛ¶ã8=¦Ï ˜ál¼7pxBööö\ ‚pqqÁ{"øš¦MÖÑívÓS(ï‰àív{²Láp˜÷8°¨$ݤ\œ|ýÍ·jºzÄêÓ)©Ú8£ª–¬Wä¤)%ËRâ\ÔJb¼ˆù·ò¾hÎ9DOž½¨=Ï4úlm‚ô÷ŽmÛŽãô˜>3`†³ñÞÀ`!Y–õêÕ« C_Ð?ï<…žUÜn·ë#MÓb°‹‹‹ýý}º¸×륻¬®®Ò4a»Ý¾ýĽ½=:2OŽ¤³Ù¬ªªgiiiôÓb±øpÃär¹õõu:†N¹¼¼¼ýâ4^&“¡ƒé”§¢+ÐÌtÌòò² ^†ÎºÏzÝr_ºÔdé}ûäK]Ñjµèjô†Ót‹Ñ{N¯Ž¾Ùétn?÷ÿ\¾Ÿ÷áõ_‘î›aèÖ“eZYYÉüÔ•1hÔÑ+¢·âöñþÍu¥n|±t +½@z™£1èµÜ¹ˆp’nR.N~õýßÔt!ôXÕ§SRµqFU1,Y¯ÈISJ–¥Ä¹¨•Äx!°ýο•÷mžz7ŽÄ­Óà_ëÏ3M„>§F› =¯Ú¶í8Né3f8ï L§ÓQUÕu }³ÕjÝrb6›,]ç猞…vvv®6¹# pËé“#G‡Y–åñxn¼Ýå†Ñ4mrÌ«W¯n¿ÅÁÁÁ¬‘è½ ‡Ãt—Yº×ååå/äºéut»ÝôJ?á"×Ñë½eà¥ÿ°_öÀ‰kW§‹ºÐ…’t¼Ž’mÞ5 PŠLÈL&WO]äoa?&™J—””LÒP2³^›·Þ]ëÙk>Œ=CI©’’V#ìäDòܹ‹ÐµÌ‡ÁÞó›¾çëžsÅ•ÃṎoVwYìQTÅ/5‹®ëc“BøÛ_ì¤(pz9;…2 ÃàoA€ˆZä‡e¬¬KûW(êYÔe•Ý»|P±“-¶3Z+ShŠ… q÷<­þ–Þ9Mn}Ln| ëÇD9Ìn5òÿ¾ZÕ¯Q¨W&÷„×{˲lÛ¾q¸u¸s¸÷gÑ8‚ ‚ /‰~¿‡C>‚`†Ÿ¯,ËÔ²T*Ͷ0Ó4‰„_a¨^™ÆF 6U~œ\.7b {t"ð·œÏç©1ÛöÁ`À™‹$IAûË ( +0“9BÁ„ CÛ‡ÃáØ Ôf²ñͤó. ?Šªª>š(—Ëc“Â,ü6¾ “¢&7>õã•wÚù°ª_£P¯Rî%ïí–eÙ¶}ãpëpçpïÏ¢/pAA^‰D"Ä%Â;ÉXßp8LÍêõú «‚Œ‘H„Ïår†a ‡CXêõz•J…M­ªêØ Ô@’$ú9—Ëeˆ¦ëúÈÞáó(HWûý>gË‚ О³KµZÝKµZ…LÓ„hðA–ev zBÝ!øSݽaÛÍž¸5°h [0|gúñMßyïvr!‘îñYwý[ƒÁؤ„¿/ɤè$‡Î 6E+£>¶AžŠ¨5A¡EðCúiÿ +…BÍ_]VÙ½Ë;Ùb;£µ2…¦¸ûETÏÒ;Fjû4¹õqeãW²vôã?ÞýY;]Õ¯Q¨×*÷„7a˲lÛ¾q¸u¸s¸÷gÑ8‚ ‚ /†jµ +€®ë^_Ó4Y›~¿?ÃÂhär¹<6{,s A ^›‘]€Y¥Ra à]+ŸÏSƒ\.7bJ¥¿“.µZÍÏÌ0 ø£,Ëh¬/;ÇD"á—¶Kë©î#¨ªJ£E£Ñ±5à ؤ½^_Õd㛾ó_—ì(²œ¿$%„Œ5XžIñxÜ]…`ï5€_˜v»Íß2‚ µ&(´Þüü_iÿ +…BÍY]VÙ½Ë;­•Ñš™BSÜý’VÏÒ;FjûsródeãW²vD”wÙ?[Õ¯Q¨W,÷„N˲lÛ¾q¸u¸s¸÷gÑ8‚ ‚ /†\. +@<÷ú†A A˜aUƒÁº‘¡B?³z½N PUÕkÀn6 ¯Íp8¤¹H=óbúý>]ŠÅb~òù<5?3?`F“ÍÂ4M¶Qðõ©©YØvE"h¯Ÿe¥R¡IÇ6vúñMßù¥:Š_¿–,Ë~õŒ$%„xW—jRð_]-•Jü}!2=¢Ö…AzÇö¯P(Ô<Õe•Ý»|P±“ÑZ­™)4ÅÝ/iõ žÇÔöçäæÉÊFƒ¬­¬þµt±ª_£P¯[î%eÙ¶}ãpëpçpïÏ¢/pAA^ Ñh4AàµdÄ·ÑhPƒx<>6>x/'r,óFVU•æ5M“S¿$I4Žw•MT¯×ý‚ȲLÍz½Þ<ŠI$œÀp8¤cN?E¡)ƒApÇ~¿Ï6j‚Ô,´]@¹\æXÂÜ#‘5†2F f2¾);¿TG€¨sêa“B¼«K5)˜Bð}!2=¢Ö…žßýþÙ⥴…B¡æ¦.«ìÞ僊ŒÖÊÀ³_¸wÏÓêYzÇHmNnž¬l4ÈÚû•µÃ¿ý³µª_£P¯^î%¯¸–eÙ¶}ãpëpçpïÏ¢/pAA^ð¦ +Œiš#îÕj•®BƦ¯G#·Ûí¯x<î.ÁþdYv-Að®>ZžËÁÁµl4ó(¦\.Ó¥RÉëË6³R©ðE×uNK9†A£Ñè©Yb±˜*‰ÀãC+hêZ­6²:“ñMÙù¥:Š_¿}  #¿$~Òe›­Øëõøõ 2%¢Ö…žÒ¿HûW(jnê²Êî]þ_Å(£µ2ðà.ÄÝó´z–Þ9MmNnž¬l4ˆr˜Z?úû¿:«ú5 +õ=Ƚáز,Û¶onîîýYôŽ ‚ È‹!‹…‡½¾FƒBüRD"~pÃ0XûápH—dYæׯë:5 #«AʪÕ*µ„Ïó(¾Ò¥h4êõ•$É]Á»‘ °ÙGZʧ×ë±ã˜ 5 Ô¤ç.P'Í{pp0²:ýø¾N×ù¥:Š.¦i/‰ŸtÙ&¥( +]…œJ¥ÿ +=Z‚ “!jMPèÙyóó¤ý+ +5u©²{—*v@­•§¾p!ճôÎijëSródeý˜(‡é£üÛîª~B}'r/AxÕ´,˶í‡[‡;‡{}#‚ òbÈår¡B¼¾†aPƒh4ú¤¼²,S_ˆÃ.õz=6,áÔ¸Ýndá×?v#ÕjuNÅH’ä·:Ap—ÀìÑîõû}¨¹R©èº®ªª7ûHKù˜¦Éξ÷å„‚ÙÇ~úñ¹LÜù¥:Š.Oê0'éN +þñ‰ÅbìQŒD"¥Riš‰ ˆ¢Ö…ž²v$í_¡P¨9¨K•Ý»|P±Êh­ <ò… q÷<­ž¥wNS[Ÿ’›'+ëÇD9Lm¼ÿém7¯_£PßÜK^>-˲mûÆáÖáÎáÞŸE_à‚ ‚¼jµZ(ÕjÕëkš&k3ƒç•e™:†Á.Á× %yé÷û#Yè!„S ›qd§3,"ÓUUUý–`"~u›!X&‰G³´”„e}Ûívpߣëú£öpf83â,±pÆç2qç—ê(º° +¹V«=É—|i]×µ‡ÍrŽÙôã£Y&ëüRE8Ô"N(~Ò圔 ,Åb1ï©.•J~O‚ OEÔš ïƒ6Wþøæì—=hëXÇÝ­ºu5¸4LãfÁlå…IÛ²Ý,¨‹J yš$~‘¿‚›‰`—j\ª4lc$^ˆB&Žc; Ò¥J•.#”/ö<)sѳ-YþHâ‡Ï?èÞóuϽòÕûWîx€B¡V­>Q¶Ò{Sù”)ÝfŠ¦xîÓâUúè2™¿H´éýómá”ÉŸïþÞç¤{jÓä\‚ðaiš¦eY6O6Ï6/Þ|öŽ ‚ ÈÄh4J$!`Ê0 /_Žãˆ%˲Á“ò–¿ïþ'{<@¡P+UŸ(S齩|bJ·L±ÃoÒ…ë”x•:ºLæ/vÚôþù–pš><ß=pÒ= +µr.Á‡‡Ó4-Ëz´y²y¶yñæ³/pAA~Q¦Ò{SùÄ”n™b‡)Þ¤ ×)ñ*ut™Ì_ì´éýó­/§éÃóÝ“'Ý£P+ç„ÿ˜¦iY֣͓ͳ͋7Ÿ}#‚ ²AȲrA¼xž'.ªªŽÍÒ4Mf5M[¸6ú˜AÄRQ”w*ÆA­ÕjF#Š¢œÇjµ:³<ß=pÒ= +µÉr.Á‡‡Ó4-Ëz´y²y¶yñæ³/pAA6ø\‰Åb!Õjý½xž'öªªŽÍʲLfY–]¸6„¦i3(€X*ŠòNÅ8t»] šéÈãp8œYôÖ+2ÔæÓÒ¹ +`O½ê!†!B.—soW³Ùô·\ÉöM]`ÀÎϵV¸bH$–Iº¶;5 üžGŸWAà0¥(ôüíŸÿÎP(Ô*Ô'ÊTzo*ߘÒ-Sì0Å›tá:%^¥Ž.“ù‹ƒööog[_NÓ‡ç»'NºG¡6\Î%_˜¦iZ–õhódólóâÍg_à‚ ‚lÃᢨ‹X,Öív½ìu]§iš«ª:fŸ@(Šâ_€¦ià29N"@:w(À'תŠ!D£Q'T8&}ˆÇã^ö£Ñˆd÷2ãyÞÝÿÉ–¡Z­ºƒ@yÍfsª¥aµZ À –ãž‚µG"D„©Z­–ãÀဓ6+Ù>7óvþuÍŽâØ*¼ú0éZíü\Ȳìõâ4 âèu&™ ¦Ô…>üúßle€B¡–VŸ(StbŠ·L¡ÃnÒâuêè*™¿L^ì´·…³­½Sæ°µûû€;¹G¡PÎ%_ž¦iZ–õhódólóâÍg_à‚ ‚l­V‹¢¨Ð÷Ð4]¯×Õ?I’`p̬ÛíNl6›nŽã&Í`¤V«E£Q0Pe2ˆ»Ÿâ¡6b95ÎJŠ!@B€¯K<'–‚ ŒF#2]M$cÑ`E>Ѽ€/Ï\.7 +RÃz¡fˆ ë‚?X–uï5d‹#˲;ØCu]wR@œjµê6Eqj=«Ú>Â]³£@ÄöË0 „á]Ó4m®¤ë³Spªa0‰@F8v¼ààÍ"²L©šüI|?Ry5[ P¨åÔw+Sî}SéÄo™B‡)ܤÅëÔÑU2™<¼Ø9ho g[{§Ù¯mîä…B9r.AøÜ5MÓ²¬G›'›g›o>ûGAdÑ4-†æ\àƒgj@žç'íc±MÓ‘Hdl\Q”Éd\|*WUÕ?ÎJŠ! ‡ÃÉP†a¬€Œ´ EQdã8ò7ØûDóö"—ËM–çÐh4– –^€Ø,¿} tÞa­Ž"¼h^Í”$i®¤ë³SP¹;ü,Lžp ÙlúÄG$8L© +øú/Ï_þúS¦ÔËV(j õÝÊ”{ßTº1Å[¦Ða +7iñ:ut•Ì_&/vÚÛÂÙÖÞiæk{÷ä…B9— |Ùš¦iY֣͓ͳ͋7Ÿ}#‚ ²¡ŒF#I’Âáp(Eñ¶:A–)u@þ/þ +‰¥*ÙÊ…B-¡¾[™rï›Jw ¦xË:Lá&-^§Ž®’ùËäá½ÿ¿málkï4óµ½{rB¡Ür.Aø¸5MÓ²¬G›'›g›o>ûGAd£FŠ¢p‡CÄãq˜j4`0š$I4MG"‘±P±XŒçùf³éå ^Ž%DðI1£Ñ(˜A +UUß©7­V ìGH A¼t]‡ÖQåÎ #š¦9¹\Î + +ÐXi½^gYv,Ë—eŠ™Ä0Œjµ +öc'Όό°òí{]´ókuá# q€Í‚†/ôu=vêÿì×ÏOéÇqßš[£ª§U¯•h/M[ÿš™Ç¨Új»]á‡i«ƒ=öØmv•5RÿZ)Çô©•J ,x°ñø·Ä‘ã9r|=þ!uòØe­'ÆH>/½p`ü…1ó}ìÎà¾åÎ.uÆýÓ4=¿̈XŽ›ï¦üêÿšÏ·BÓÖ-’k¼Íª»‘l•d’©èfYKh©¢šÜ'vƒñ­@l3’Ú](´BžKRÊãœw„®ÐúãÉ^àß;::²…“““Ù¯6¸Ôñññì—š¬aÜ#¢ûºµZíÆ^ÑýÝû8ËNOOoÏ»·ä­èpµï„Ûp§ÜWwg˜ñ-ï@,ÇÍwS‚Ë[óùBhªš£EraVd«$ãLE7ËZú@KÕä~8±Œob›zb;úuk¡ÐFy,A÷#cŒsÞºBOè'{€µZÍÜ/dÏ·±7ßM‰Xµù| !tùš£EraVd«$ëLE7ËZú@KÕä~8±Œob›úÊvôëÖB¡:ß` RJcœóŽÐzB<Ù $˜››ýtóðáCÙÀmD,ÇÍw#~òðÏóùBèò5G‹äì:ÉVIÖ!™Šn–µtIKÕä~8±ZÞÄ6Õø«è“æB¡º°Á¤”2Æ8ç¡+ô„þx²8Hàù€£(Šì‰à6"–ã滿üâŸóùBè’5G‹äì:ÉVIÖ!™Šn–µtIKÕä~8±ZÞÄ6Cñè“æB¡×` RJcœóŽÐzB<Ù >F/^¼…B÷ ÷[Ù}t<pE‘=ÜFÄrÜ|7Âÿè¿óùBè25G‹äì:ÉVIÖ!™Šn–µtIKÕä~8±ZÞÄ6CñÏ¿ª/Ú¡w4X‚”RÆç¼#t…žÐOö‡)¹·{qqñÁƒƒÃÉÜÜܳgÏd0‘ólÛ¶eÏõqñüýE‘=ÜFÄrÜÎ௃š9Œä[¡‰kŽFraVX5=ë虊f–ÕtIMÃÉסÄnpyÛÛô/½üüËÚB¡zwƒ%H)eŒqÎ;BWè ýñd/p˜’mÛžó‰¢(²‡˜ˆišçØkkk²çú¸à“ –ãvþå~ôÓßFò-„ÐÄ5G#¹Æ0«N¬šžuôŒ£™e5]RSÅpòu(±\Þ,mú—^~öeu¡ÐF½·Á¤”2Æ8ç¡+ô„þx²8LɶmÏEQÙCLdqqñüÛ0 Ùs}\ð€IËq;€¿r?ÿäï‘| !4qͳH®1̪«¦g«zÆÑÌC5]RSv8ù:”Ø .o–6ý±õOÿz-´B“4X‚”RÆç¼#t…žÐOö‡)Ù¶í9¢(Š"{¨‹}÷ÝwöÿžžÊ®ÀŒ÷4Ÿ?c?~üø&…±îÊä"–ãvþå~ý§Gò-„Ðd5Ï"¹Æ0«N¬šž­êG3ÕtIMÙáÕ7¡Ä^py;°ôÊÿhýÓ¿F m„Є – ¥”1Æ9ï]¡'ôÇ“½ÀaJ¶m{Ž(Š¢ÈêOŸ>òÞ½{ÇÇDz‡‚™Ì~OŸ?~þŒ½¾¾~=óÂÅîĤ#–ãvþå«v$ßBMPó,’k ³êĪéÙªžq4óP3Kjʯ¾ %ö‚ËÛ¥WþGë¿ÏD m„Ðä – ¥”1Æ9ï]¡'ôÇ“½ÀaJ¶m{Ž(Š¢Èê†axæt'—=ÌäJî©iš÷îÝüøýû÷×ÖÖ®~Px§;ñéˆå¸ù®Ù~øcb5"ùBè}5G#¹ÆÛ¬:±jz¶ªg=SÑÌ’š²Ã«oB‰½àÊN`é•ÿÑú'–-´B—j°)¥Œ1ÎyGè +=¡?žìS²mÛsJQEöP0 Ã3§;¹ì¡`&¸§†;ñéˆå¸ù®ÙÏü+‘| !ô¾š£‘\ãmVÝMÏVõŒ£g*šYRSvxõM(±\Ù Ä¿ñÇ^þ.ó:Zh#„.Û` RJcœóŽÐzB<Ù ¦d۶產(Šì¡.`†gNwrÙCÁLpO? wâÒËqó]³_üá‘| !ôΚ£‘\c˜U׳U=ã虊f–ÕôAxµJìWvñoü±ùô^´ÐFMÑ` RJcœóŽÐzB<Ù ¦d۶產(Šì¡.`†gNwrÙCÁLpO? wâÒËqó]³ßüå?‘| !4¾æh$×fÕõlUÏ:z¦¢™e5}^-†“û¡•oñ-lC[ÙŠÚ¡é,AJ)cŒsÞºBOè'{ÔlÛöœRE‘=Ô ÃðÌéN.{(˜ îé‡áN<@@:b9n¾k^}É·BãkžEraV]ÏVõ¬£g*šYVÓ%5U '÷C+ßâ[þØF(¾ùÅ“F´ÐFM×` RJcœóŽÐzB<Ù ¦d۶產(Šì¡.`†gNwrÙCÁLpO? wâÒËqó]3bÕ"ùBhLͳH®1̪»ÿ8zÖÑ3Í,«é’š*†“û¡Än ¾åm–6>ûª-´BS7X‚”RÆç¼#t…žÐOö‡)Ù¶í9¥(Šrµ/qttä¾ÊÉÉÉ,1 Ã3§{Í+ð{¶ð?v˶míŠão+§‚K.tñÐ:϶(QLÕ¢„6FÕ@c[Ž¿¨ÂÃs„N tÑR@£Ð%L<ëÅù`옖mШÑ#G$è '¤c(Wü%Y°}~ø‰tÿçÜ{εî <²+Ne:ÎhYj`·N•à‡bÈP·ÓÓh@ cŽ°;á¹[}÷‚ ‚ r?‹è»qòkîïžµP(”‡Nn$–Ž¯U<‹ÍTá0•×ùSr}/¹ö!±òŽ_~_Ú™YØž™W2emîù) +…FÎ#h†iš–eÛ\Ø\Ú\y3鉈ªªÄ Â²l «^¯§ÓiÞ¦\.w»]bÁÙÙÙææ&„"‚s·µµß¦¨Õj•ÀH„’$©âA˜øNÇ5¸C&“©V«º®‡Œvƒ}šÍ&DîMDÓ4ÇuÛ·Pjà†@ÞX,æZ¢©©)Ø9T ~7C£§Š¢€Ë©O.—k4ÑŽ ……íe³YŠ¢\O +€:Cï¢Å¿O}$ B…ùAAA bQ¹Ž££â·ú×£g- +妓^‰¥ã/*‰Åfªp˜Êk‚ü)¹¾—\S«ïùåÝøÒÎìâöôü‹?—>Î=?E¡PCÊy Ã0MÓ²¬s› ›K›+o&ý€#QU•TX– tQÕk©×ë7_u»]I’Ç¡r¹ 7Í+>fÖ’e9ðív›çùa·°¥p ¨ìÍ+K&“¹ýR{Ñétr¹MÓ!KÄ0L¥Rñ 8¦žõ s{ t]‡“†ß ÇqŠ¢ šåÞô±"B„ ‚ ‚ ±¨BÎ¥Ñøý?þóèY …Bõé¤Wbéø‹ŠG Tá0•×RùAÞK®©‰Õ÷üòn|igvñÕ̼ò‡õݹç§(jx9 a¦iZ–unsasisåͤp$"ªªƒ +˲.ÂR«ÕœÏÃ0!'"ŽãºÝ®küf³9̬•N§}67\’¤Ac¹ V!«Jxú@Þl6ë“‚çùÛ/u?º®CÃW¦—X,v×°cê)±,Ìíí¥R©Ð4a?Ьð%íßçÝícàÑm‚ ‚ ò@‹(Ú€’™Å×b©…B¡¾ÕI¯RÅãkŽ„ü¡ k‚|\ßO¬ªüÊûøòîìRcfáÕôEXÙ™Û8E¡P#‘ó†aš¦eYç66—6WÞLúG"¢ª*1¨°,è",µZ >¬T*ƒEÇu»ÝþøN'ú¤õÝw’$yíÒñ<-,EQŠ¢„©*atê“ÉdüãÃÆn¿Ôº®3 3hð^¦¦¦à7äÖzJ, s{`“Ùlv˜-A®³³³éïÝícàÑ·AAyPˆE 4ÌŒHbí£Xj¡P¨our£TñøZ…#!(ä5A>H®ïÃß¿ò!¾¼;»Ô˜Y|==ÿ’Ïm?þ±5·qŠB¡F"ç4 Ã4M˲Îm.l.m®¼™ôŽDDUUbPaY6ÐEXjµZ¥R‰6ɲ욂¦éhjµêî6Çq®–L&SùJ6›õZ41Õ‡çù‰”º—ÍÍM/;Ã0°CI’ >ðŠ¢¼Vš[ë)±,Ìíýlß„t:í“.‹ñ6ðŸeN×õ0 ãî£ÿÑB¶AAyhˆE mÃ/~ù+±ÔB¡PßêäF©âñµ +G©BSÈk‚|\ßO®í%V?ðËoãK?Ï.þ4=ÿ¿øÂË¿þp<·qŠB¡F%ç4 Ã4M˲Îm.l.m®¼™ôŽDDUUbVaY6ÐEX8Ž#>afkkëììÌYßn·«Õ*DvŽàÛþº®«=¤ÓiÂñU7šÍ¦×¶%IêÏ‘!WÿbøCp]§€¯ªOš¦eY®ÕjpŠ\.år–M¤Ô½T*•ÞõEe³YEQ\CÒþ¾8.×’Ž£§ýÝñ? Ôܵ>ÐH׿*upµÀ)Âd$\wºþG ÙAAä¡!5ë|;~3K- +Õ£“^¥ŠÇ_T8JšBþPµäú~rm/±ú_~úfvñ§é…íé'/2emnã…BPÎ#h†iš–eÛ\Ø\Ú\y3鉈ªªÄ¬Â²l ËÚ©T*p‹ú]Ýn—ã¸þõår90£$I„ v>ÐIëõºëVý]Š¢Ð4M¸dYöwù×'“ÉèºNXšÍfÿ‡¡F^êÍÍMg%EQâø¯ªÕj„Â~EO?÷Õ'Ìím4®Å„ƒøoŠ3¨±Ÿý庻}ŒÐAAä"5ÿ`< ¿{üo±ÔB¡P_uÒ«Tñø‹ +G©BSÈ +²–\ÿ”\ÛK¬ªüò»øÓ7³¹é…íïÿùâ/Ïöç6NQ(Ôhå<‚†a˜¦iYֹ͕ͥͅ7“~À‘ˆ¨ªJÌ*,˺¼æŠ¢êõºnÇq2J’D¸`çá y†!"Ôjµ0^EQ#MÓÐÇâ3 +ÂAÂoÛ'Ô˜JÝétxž/—˺®‡ßd&“!e³Ù@×=uô€®725Ü™þ^@@ÿûпÏûÔÇA÷† ‚ ‚¡ÆZê´Ûm"K, t ÙS"Bàí­Õjý5i6›á3ºVµ^¯´ÏûÔÇA[€ ‚ ‚5MÓuýÒàÊàÚàf0“>ÀÔëuêºÂqÜP+&V$I¢ø)ðÙ"þñYqAÆ@ªØ͆ß>ú>Uj£P3¯3¢d±u§Â©?Ć '¶â›uþù§ågï—r±µ×WH‹ŸVvÏQ(ÔHe‚ði¦iš®ë—W×7ƒ™ôŽx>©ë +ÇqC­<˜8Íf³Î&0€2'.ÃE£QʶÓé0MÈår”Y– ö™Ÿ]yHµ7ìR…ÕÄ}M Lù™ŸŸ§ÆW*Öˆ&öýàœØ{\GŸKC`Éd2Ö Y.—ÍŸøw8|úîD~ …Bp7ó3ç`½}-%ó<ÏjÛl6ç ‡ÃÐ0aØ(fŽxÃOÅ©bäÜ`={ü*Uj£P³­3¢d±u§Â©?ò Aå +RÈ<û2Íuô¹4 I’ì{ØCcqÆúú;>ý\\\_#‘t0»‡n·K¸r¹ìË·ûY²sî‹ý„rR +Á +¼ã~oÜ'üTAñ*6@î¬{~öó_¦Jmj†ufU²ØºUá4Yh +ùAl$¶¿$¶Žâ›‡üƇåõwKOßÆž¼Š­¾øßWvÏQ(Ôd‚ð-¦iš®ë—W×7ƒ™ôŽx¤^¯S7Žã†Zy0q +Ÿ·Î&0€2'.Ã{£#T*—Yó +©6> IR$ñœEQœCø©)Á}~`>ÔàP(ÄŽP«Õ˜JÃ4ØÎ4×ÑçÒ$@ÈÛMöd.— 6Š,ËÄ9<ÎO§Ó÷ÎUUûz°¶µ¡=a¨·ûIÏó¬¶ÖŠ:› ¯BÓé´µõA›…ÿ6uß0í{ƒŸŠ#2Rňñ6ê +îwÙT©BͰΈ’ÅÖ­ +§ !"ˆÄö—ÄÖQ|³Îo|\~öãRî ¶öúáê‹oòWvÏQ(Ôxd‚ðÕ iš®ë—W×7ƒ™ôŽx¾%é Ç µò`âtè'!  LÀ‰ËpÁÞèLB¡ªª.#²æ'@WRmZE"Ÿ)RÅ9ŠŸšÜçæ`]X_Ÿ¡§¹ŽfAüÐétÈ>Üß߇.m>‡Ãa¸ØH–ež'èÇÚÖÜô„Yƒ$‡çyV[ë 5èl*—ËÖî'I’Ï Èlî ?Gd<¤Š ãmÔ¿É|—,µQ¨YÕ‘PlÝ©pšÈŸ$ÄFB<Žoñ›õå矖ž½_ÌÄÖ^?XýAØ8XÙ=G¡Pc“yÂÇ©¦iº®_\\Ü fÒ8âø–¤n,Ç µò`âtè'!  LÀ‰Ëpö[YÙ’$©ªê>"k~tå!Õ²,‡B¡÷ÙÿFy ‘H„ (Šs ?5%¸ÏÌǾ +Öp„jµJ¹‚$2ϾLs}. A‚š³¹ açw»ÝG‘mY©T /ñ ÏôcmkC{ â²?÷ÅzB9œM¹\n:»ßlî ?Gd<¤Š ÐÐ ª²ÿH–Ú(ÔLêŒH(¶îT8 +ÍD¾‘ãÛŸù­Ÿøç‡Kï×k±µ7W×^~û÷öÊî9 +…›ÌC°×ëiš¦ëú¥Á•ÁµÁÍ`&}€#oIêÆâæ³Ñƒ‰sСŸ„0€2'.Ã…ÃaÊVUU¦ ³â3?ºbMµ}¼I$ÙÙÙ_Eékh/Р‘&îkJpŸ(º}]žw‚$I”«t:È<û2Íuô¹4 +Ø{Ö—±V«‘m™Éd $Ë2ñ Ïô¯§Ëž0›äð<Ïjkm†gÕl»Ý®Ÿ Èlî ?Gd<¤Š PßkªO×kÉR…š=Y%[·*œ +…f"’ñíÏñ­#~ópyãÃÒú»ØÓ=|òòÁê?39YÙ=G¡Pã”yöz=MÓt]¿4¸2¸6¸̤pÄ#Ô#ÀqÜP+&ÎA‡~ÂÊœ¸ Ó£l›Í&Ó„Yñ™Ÿ]1¥Þ}{®B¡Ðþþ>üäÈ^ EQXMÜ×”À”Ÿ9¬MDQtŸXÖyÚ™æ:ú\‚Г÷ööÀƒ‡m}G*•Ê¿!‰ýßívÝ{SUœìììð<N2™ ÌŠ´ Y–I,xxgÁ¬jµšõÿà¡l`mDÑh´üÿP/ï o}ét:’$¥Ói0ì…ÃaÓþ ‹r¶…10š ™ÔÞæççMWð«Ë†…ƒÂx°‚ö“á `C÷ IŒwËŠµ:L–S"#ígŠ=à 2 y0×R­V9÷Po{ÃgоÀ6ËåræÎàþ4ßMgüLÀeÅÍ,ÁÈŒ9üà ÂÔ%ñFªØÍ€Dþ$Yj£P³§3"¡ØºUáoDBlÄ·¿Ä·þÃ~¹Ã¶‘œqœUÀ&¤`ÉtìÂ* ž+R˜˜(›ñ“ÖÃZ‰*ˆƒ –,¤a¹E +¹3Ͼش}>ɲMQ/€%K–,Ù.V/äï]c0ÞÙ}ÐŽóÃWð1ßc¾™ùf¾CesqýÝÂÚ›ù‡/gï?Ÿ¹óýŸ+«OÏ¥H‘òźÑAèºnƅɥɕɵ;“¾À%A÷g{± «õÔ + ÂwŠ†”¯‚6t—N§mº"}_Bæ'BS¾R´Ø£ám·Û"ŽØ ~UÄ×”à+?‰DÂ6^pv,ÅbÑfª^¯G'Ëm^ÇS“L9Ãá°P(Äðc¿ß·S.—ÉnÇ3Æö#h4‚¦z½^2™dCªªÂ¸¦iä|Ÿò¯¢(Ž“åS«ÕD¬± š!nfQH9³¦YúÝ.{ [T«UŽì T$N$V&G£‘g$žSf¡‹!ÿnÊf³œ‘¶l ·¶)¸Ål‚íNm ™LÆÍ6¶„›nT{Ï-«Ø-œÁ~€wˆD"ñÅJ¥ñ®S>ùÝf—wϤH™>9%’¯œ|‘ãÜöQNíäÔOK[‡ÊæÁâÆ/ koç˯漘¹û,¿ñjõé¹)R¾½X— :A]× Ã¸0¹4¹2¹vgÒ¸$ è/l–T*å©@…ïí-_l*â«‹¶ÎWÀ~ ™ŸMùJu¡P° ÞÛÛtÄ&y0øU ÐíúÊ¢(Qí„t:í+ø_ñ:†œšdšé÷û‰D"æB<¬ x·;¥R‰üNœl6+bªÕjÁ¯[H–Ô òUÓ´ñÙ!ÿ¢vÑ¿«ªÊ±L°|7k4Ãá­“Ž‹ÅÑhäh„žð´ã goРâ¹MGdÊnÐÅ¿é8ÙœÐÙÀŠ°ñ³±…Y…`{#¤SL“¿ócæÑîõz「q[qOžÏQ‰D’•J"rØ}‘^ùny÷LŠ”)“SZò•“ϲsœßéæ¶;9õÓÒÖåñ{ecaýíü£ö܃ŸfïµË/þþälõé¹)R¾½X— ºW]× Ã¸0¹4¹2¹vgÒ¸$ è%m–T*å©@…ïÔ³ÍÁ›J³ÙtÇö¹årÙWÀ~ ™ŸMùJu2™´ îõz‚ŽØ ~UÄ×”à+?ªªF²4HKŒa4E'Ëm^ÇHR*™N²Ù,{”lÛ oO;­V‹¨à3ý,ˆofÛÑN§Ó¸,`PÓ4öhXà¯ñÙ!ÿ*Šb³_3¡kZ&“©}Íp8±F@ªéê‘H$`˜ >‹E:f|u´C +:<ÜÅ°ƒÀlëŽY#pGÛ±ÂÀ +öû}|°¥Ñ¶èâSæ@»pŒÐI&ëù—6ˆ-Üâ$³£Ç‡\…`{#ª¥·]UH|µÛmü^¯×i#ø:Žø+Þh4Ȥ{‰,"qáù•H$!Y©t ±¨ùã?þ½¼{&EÊ”É)‘|åä³ìçwº¹í£œÚYÚú°ôøPÙÜ_\ÿyáÑ빇ÿ›½ÿã̽Šß¯>=—"EÊDĺñôÕuÝ0Œ “K“+“kw&}Kbk‘b.m£*|§žm7› +º'AwhBmºhî°Ï}Åì‹ù‰Ð”xª‘ÛÈx<.îfmêƒÁ€¯fM ¾òÓl6c ívÛ¯Ób±h3’Íf#Œ“å6¯cÈ©I¦MÓØóÈ‚BáiŠÉD"a«íÕjUÜ}´q¨m¦úý~&“±…‡YŒÏùWQÇ€q<ÉÏkÔÓšªªôAv<û¨Òtظ^9Ž,P‚lµ )•JdÒűŠ&åV‚èýãV=§Ì.†Æm}‘9N$Æ€=ÉñÕ*øÚ‘8ŲB—ÎûЂ+Æ\÷‘ï=Ç'ç8›Ýn—ý]"‘DÈJ¥akcHþôÏÿ,ïžI‘2MrJ$_9ù";Ç¹í£œÚYÚú¸ôøPÙÜ_\·°öfþáËÙûÏgî|ÿ—ÊûÕ§çR¤H™”X— ¢º®†qarireríΤ/pI@¬Æ–ýŽ§V¾SÏ–ÐÖm´º‚î°¥“ɤM½ÙlúŠÙ!ó¡)ñT£ÉµŒÇã⎊ŢMù*aÖ”à+?Ãᓲ© r_xn§_ñ:†œšdja7›#™L†og4‘#Éž‹~¿OL¥ÓiŽúì`$Ì:úBÏ +…v»¯Èo̦ÖøcBæ'BS¾RM7³ÕjÕÓE­Vcs ƒ_1äšZøÍ›KËsM-«¾··yœžaßžu 95Ét‚Bê¸ßlBEQ¬aØùŽ%½^¯SårÙÍN6›ô¨i‰Ïc²sC.ÌÑÑì“1ž×(ßZ:槑%…Xk6›~ö ×¥Ýnó=:BW-\(ìÁHA>éÜÖ(ŠÅ"IIšÛ%BÆ$ Ïrá*ˆï¨œb‚âvÆÀð&Çc£×ë‰G(‘H"d¥ÒÄ¢&·ÕY®œI‘2rJ$¿sòY¶!9õaiëãÒ桲±¿¸öóBùõüƒ—³÷~Ìþë¿Ýý¸úä\Š)“ëÄ‹W×uÃ0.L.M®L®Ý™ô. ÈÁÁíÑ’J¥<µ¨ðò[›¯ûGq-UUY èËúý¾ …v»]*•Dæ2?šò•êr¹Ì¦¨ÛíºF…BU±À’ñc ¿¦7òc-¢d2‰õåha²ŽùÁSœ4·yCNM2µ¤Ói·]G“H$8Fè2‚ï9'Çaø˃Àø‘kšF âó˜ìÜP‡Ë­ÎÐSó,ž|kñxœï‹†®HõzÝoØžÓ÷¤V« ‰ ‰#ȧ÷î4Éd2œë+†WA|oDâ´×ëÎö7Û{ôåˆÂÒh4ܪD"+•D°À +ò›ßþ~¹r&EÊtÈ)‘üÎÉÙ>ΩG¹­NnëÓÒãCeã`qýÝ£7ó_ÍÝ1sç‡å׫OÎ¥H‘2q±.A-:ÏðB®éM ü x·ÈO£Ñ@Èàápˆ4Äà˜‘iþŸý²‡mä8Ã0«€M)ˆØ… $ÅJ'iIY‘"ftÀ&|¿´¤—bÀR¥Ò±\ Û·ö]|tζh¢þ–,U²dy‹ÕÏ!ïíÞ ÆäîììrÒ÷àÅAÇ™yç›oþvÂÅÉ3Íó8áЈ[ vº`á1TU˜àd`5±M¼ªÁ„UkµZãpþ³ +ù|^9.V_…ƒo°=YßkTàÈôû}A}ɹã5×áôˆú8Ÿ1㚦©6ü½ì:û’‘¸‚qy­IO„$ö‘!ÚYt‹ªS~6e|"ÀAœmlÏt:=2ƒµZMò'"–ªÈ÷€ Äo?úëÇÕcéèˆ×âæá;U+ÝœÖÉ•_g7^©ëí…µçW_Î=~qçá³™{OçËÿ<¾»uB"‘®]Î%ˆRÓ4-Ë:³9·¹°¹ôæº/p"$üCÉÏXßV!šˆ;•yj†!ùéU(\ð°J$‚†(UmEwq¥ù‰Ð*hªëõº 3h[,ñG<©Édðzå‘yÆN>§áòƒ´Œ!(ÈI¯×“é.tœ|À#Ó3¸µ4›M™¦ëºÀ$N;Õ°nÕ3Äâ¯Ðï÷%7@H^áEåãÀJ±[]°=廸µZ-VŠÓCì†Ã¡ÀÍ7lþXóše|‘¢È÷Fp 4d_OÖ£úKjµ’†<øúÈÇí,H®¨:åosMÓ|}"ÀÁ7ÛƒÁ ŸÏ¯|ct»]ù° ‚ÍRµ‰ô ü~±öqõ˜Dº:bZÜ<|§ÊÁb¥›ÓösåNvãUöÉžº¾»°úý\©uçÑóÙûÆ̽/ÿüÎÝ­‰4 r.A¼qLÓ´,ëÌæÜæÂæÒ›ë¾À‰ðÏ^‡T*åÛ*Dq§‚'!^¾2Ÿ^xRy9àšN§Ã~Ó½'™L^i~"´ +‘j¼Uƒ&DQ”ápˆØø‘j™'œÓÐùéõz‰D"èHh ɾ&‰Óašçq¡·™b±(^“‚Ãt»Ý ‹Äãq¬ó+~‹ùn.]×Yeü}>¬ÛÙÕÛS¾;[³Ùd¥õz]ìð¡(˜#ß°ø\¹£9ŽÀ-Ð}A>Åæ’ÈÇí,H®¨:ås­Vóõ‰<Él#Z×OADùà ‚ÁRµ‰ô |ô—-VI¤›®#¦Üæá{U²Ú~¶ÜQË?«OöÖwç×~˜ûì¿w};óàåÞ—K/ïnH¤)‘s âƒÓ4M˲ÎlÎm.l.½¹î œ ÿìuÀ#×·Uˆ&âNOBž^¯çúP¡T* L†Ãa¡Pý]—L& ÃÇ9a~"´ +‘êÁ`€çª|B4Ms^©ˆÿýôôT& çt’ü ë@#e‹EdI¾£ ã|;Ýó8áÐˆÛ NcEQ¼Ö$ŠÄ ‹V~…óèº>b…uÎJqAˆÃFs/«¨|X)ö²«ßï™ pëv»¬T|:ôû}A}ß°øcÍuFø³×D£Ñ@œÛ¬N½^gPhȾ ŸbsIäcˆv$×FTò³)ùEmf1#Ôx<ãÀ©"Õ#õƒd“Ìéä©–)k@fuEç4Ïc„«¸looÇãq~á¿øQÜ +çF2™”ܹãk~ÜMP:‚®ë¬2þ¾ +_«ÓÓSV§¨¸;¶9+Å)'ö­V‹ÕŸ)É ´ÛmÁðÑ–•ÖëuWüÎêÀm¼‚ü\ŒÃßJ®æ’ÈÇí,H®¨:å» ”íkY{#‹ÅG¸[ž I–ª()3¾Y¬“H7ZGL¹ÍÃwªä*ݬ¶Ÿ-wÔW O~ZXÛ_}9WjÍ>z>sßP>ýâ“Ï–·NH$Òôȹñf4MÓ²¬3›s› ›Ko®û'ƒçdý;;;x€ø6Á“¤Î×VÐN Ãà;‡AcÖ4 ¯ªt:í|ná¼›†Lü ô‹H+Ç·d2éü‚·*Âëv»Â›ã‘ôû}ÖQ«Õ +g¸9*ÕhˆŽÐ`Ë Ùlâl gIœS;®vâ6ƒc¶a#yÞbq²}ŠÛöƒ¯ÆOûNQ"‘ov]×™þ¾"ÀD®Øn¬Ž)A_¾nˆÖ)M¥Rb°½½ÍÜp4 Û“â5|Ì+Âaå倇UƒÛxÉH\A>Åæ’Š!ÂY_QuÊ~Çðõ¹ŠÞN0ãµZµÅͨ-AXªv X¤Ì¯þ°X=&‘n®Ž˜r›‡ïU9ÈjûÙrG-ÿ¬>Ù[Xß_ý~®ôÝGßÎ<øZùô‹|ewyë„D"M•œKDÓ4-Ë:³9·¹°¹ôæº/p‚ ‚ n Åb1öv»-Ó$ŸÏ³&ÛÛÛ#¥Š¢°ÒV«%é£ëúùVªªª«Ãéé)«ƒ„úòuËd2òùL&“¬r¿ß¶zñ>_¤iš—C½^Ç,‰++++A˜+bˆpä×FT¦R©pûÿ¯½qøtaêµ%"KÕ‹”l¹³X=&‘n¨Ž˜r›‡ïU9ÈjûY­“-¿V7öÖÛók?Î}öòÎ㳟)÷¾Zxülyë„D"M›œKðÍ›7¦iZ–ufsnsaséÍu_àAAÜ +ð¡Çc6ÉdR²•®ë±¤Óé‘ÒVZ,½LVVVbð¼"ÀJUUõòauEñª#ãƇ](>†aˆkÊ„ Úí¶×ðù¢Z­æå€ÞY54 ‰+ü¹šK(†gá­ôÚˆªSMÓä}úý~ä¼`Æq¤È,9‚ &g©ÚbÑñ«_ÿf±zL"Ý\1å6ß©r«t³Z'[~­n¼ZxòÓÂÚîüê˹RköÑó™ûOgïõÉçË['$iÚä\‚øò4MÓ²¬3›s› ›Ko®û'‚ âV ëz욦I¶ÂçM<g {½_:ùÒñæÅb1öKÉHµ¨|+UUÕkP©TÊ©ƒNƒ`øb7D•L&YR©äjÒjµ‰„¸G™°A»Ýö>rÈŠ2™Œkó••>p ‰¯¿«¹$bˆpÞJ¯¨:Å/â•ÿÖžY'±õzý*F-Èv·ÛEHèËÕ¼Ùl²¶†a¸Ö!"–ª(¿ûÃß«Ç$Ò ÕSnóð½*Ym?[î¨åŸÕ'{ ë»ó«ßÏ•¾›}ôŸ™_+Ÿ~ñ§êÞòÖ ‰DšB9— ¾HMÓ´,ëÌæÜæÂæÒ›ë¾À ‚ ‚¸¨ªû@·Û•oX,YÃZ­6RZ*•b;;;ø"rŠt]O¥RÎï‰D‚ÕÁïã½DåÃJ1^™åóùÁ`€ño£ÑèõzÜ'v¡P0 ãôôEˆ¿Ýn#c|MÓ\}dÂ0 ?“É°Räs8²¢V«¥(Jì—À-t$®¬¬¬ˆÍ% Ãÿد˜F²ŽãSºHAšˆ‘(÷š)ºÃgÆÈ’£D¹5¹‚jÅÿ?ÆxlO¢Ã'JJš“()WwìÁ-»À.{a=þ/¹¤¤¤t9OÏNy~³7BÀ8†â?ú}ô-8{æÍ›÷¼vÝ…_òlØuPöùÍÍØؾÆÃÏþØØØ0Ÿyö÷SL ÍÕ6ÞÊáááÍÍMãR˜^¾|iNÌápÜúìP5–`Ÿ/‚ß«%„±¢™?QøTñ,¹çœ3{îÙŸB륉d!Ô›‹ û)K¡”Ö¸:×àšÖº½€ÀàÛÚÚ~µ¶¶ö }Ù/œ¡¡!s÷t:}kƒjµ  N§óêêŠmf~²³³sïlÇüV’¤6'555uïQ6771›ÉÍKt¯¥¥%v%­Fèð@ìâ·?}6« 8Žííí›Çº{+;ŸÉ½n^Õ{ïÐãæðùwáîYÜtëÙ°ñ ì[¶M›Ø!¬Þš'}ö*•JûÁÙCuïe{TÕþM/_¼WK \E3¢ð©x^ŽeeE“”Òê¹Iù§ޥwî…·®Ù}çôîŸé‰d!Ô³‹ û5K¡”Ö¸:×àšÖº½€ÀàÛÚÚr8‚ <{öìòòò¡»onn» ¥Óé»°_Alpá§Ó¹½½mn#I’1B.—³:Ðçc|Ë°qÚŸÔÎÎέ=þüúúúq£±×ÖÖØölb7ÇeŸ_]]µß½Ã±{722Â6¾÷F0ìX“““Æý2±O*•Š±A0dŸ°qî}:?å»Ø%e3ÎúÙçÏá3ï‚©“gÃöƒ³Ûtë¸lööU«Õ§;ëöW› ÎÞ>s{~b±˜Õ5{T%ØÇ5ÿv\-!4pÍü‰B«x^Žeå˜&+)z.FÒ¾•3ïò{Ïâ‘kîµs數øz"YFõrÆ"ÈþH¡”Ö¸:×àšÖº½€؆ýJ§Ó¹\®GÆéÄå好ªV«lòlXÇ|„ÿç5ìA¶Ü…‡>vÝú4÷ˆŸôÙcòÁ+•ÊS mT%ØGŒ¤ÆÕBƒUÑÌŸ(´ŠçýñœËÊJFŠ^ˆ«Ä•”/|âYõ.½ó,ºæ~vNïúÇ¡d!Ô‹ ®ë„Ji«s ®i­Û 8ô¨€ª±›Œ~óý¸ZBhP*šù…Vñ¼?ž“cš¬d¤è…IûVμË'žÅ#÷üsæ'÷Ìî×ßBÉ2B¨/2A]× !”ÒWç\ÓZ·pèQUc 6ùòÅK¿ZBh *šÉ‰B«xž%Ų’¢‰Ñ qõÜIyÃ'ž¥c×ÂçìÞWS?©P²Œê—ŒEP×uB¥´ÆÕ¹×´ÖízT@ÕX‚M\óoýj ¡¨h&' +­ây)–•MR2bôÜI{WþãY~ï^8tͽ›Þõ-¾%Ë¡>ÊXu]'„PJk\kpMkÝ^À GT%ØÄIùÕBý_ÑLNZÅór<'Ų’’£¾ÕÞ•3oøĽxäš?pÎìMýð·åBëe„Pe,‚º®B(¥5®Î5¸¦µn/àУªÆl"Ų~µ„PŸW4“…OÅóìñ–MT>Š«ç¾HÊ>õ,»Þ8g÷ǦwÑ“Ðz!Ô_‹ ®ë„Ji«s ®i­Û 8ô¨€ª±›øÕBý_ÑLNZÅór<'Å4IɈÑs_$í]9ó,¿w/ºæ^ͼòÌí…¾-…ÖË¡þÊXu]'„PJk\kpMkÝ^À GT%Øá·#c~µ„PŸW4“…Vñ ­—Bý˜±êºN¡”Ö¸:×ø/ûõÛFrÇqœ¥K¥à.ÄI„¤ˆq8‹ï2!rÈ%Sp’‚”d=(ŠË%‰Ã9&µIåÒi'•dË–l)’lé¤5e.߀J•*]ªœÁðd9ë#ñö|>®½\Þïƒoá‡8®¥ù…®9»8Œ¨h^ÓsYá#¢Dò „œ\½_8Wë•­†³¢h$S’ä“ЊL’þÅ=ßü¶gö‰wfcú¯Õ?š!'f AJ)cŒsÞÚBGèš³{€ÀˆŠæ5=—~úéß"ùBN®nÎÕÞ”­¥L2š”y%¥‹¡•ãàòa`iß·°ãÛšJ<ú•|+4BÍ‚”RÆç¼%´…ŽÐ5g÷€Íkz.+üü·ÿˆä9¶z¿p¶ÖK©†• +ÉhD.Iéb(¥—K/ü »¾¹gž™Ç¾™ØÝF¬ÐD94cRJcœó–Ð:BלÝFT4¯é¹¬ðñŸþÉ5rlu£p¶ö&¥J2e"kRúDZ)†–ƒÉÿžïö¶wvs*þð×¹—±B!äÜŒ!H)eŒqÎ[B[è]svpQѼ¦ç²Â'ùO$×@È™Õû…³µ^J•dÊDÖˆ\’ÒÅPJ &K/ü »Þ¹§žÄ†ÿöf¬ÐD9:cRJcœó–Ð:BלÝFT4¯é¹¬à™Ùˆä9°z¿p¶ÖK©†• +É”‰\’Ò'¡•—Áå£`òÀ¿°ç»½í™y2_ÿìóR¬ÐD9:cRJcœó–Ð:BלÝFT4¯é¹¬àŸßä9°z¿p¶ÖK©’L™Èš$¿’VŠ¡Ôq0yXÜ÷Íïxg·¦â¤ÅíX¡‰rzƤ”2Æ8ç-¡-t„®9»8Œ¨h^ÓsY!°ø<’k ä´êýÂÙZ/¥V*$£¹$¥OB)5¸|Xzá_ØóÍ=óÌ<žŠ¯ÿþN5Vh"„œž1)¥Œ1ÎyKh ¡kÎî#*š×ô\VÒ'‘\!§U7 +gkoRª$S&²&ɯ¤•b(uL÷}ó;ÞÙÍ©øÃÈò^¬ÐDAƤ”2Æ8ç-¡-t„®9»8Œ¨h^ÓsYdÊ‘\!GUïÎÖz)Õ°R!È%)] ¥Ôàò—¥þ…]ßÜ3Obûۈš¡1È‚”RÆç¼%´…ŽÐ5g÷€Íkz.+Dr „œVÝ(œ­½I©’L™Èš”>‘VŠ¡åã`òÀ¿°ç»½íÝœŠ¯Gå/c…&Bh<2† ¥”1Æ9o m¡#tÍÙ=À`DEóšžkh?ø‘'œk ä¨êýH¶ÖK©J™²”Ñ$¹Jƒ)5<ô/>÷Íÿ×3÷t*±á›{+4Bc“1)¥Œ1ÎyKh ¡kÎî0ÖÖÖ!×ýúoíÞÑè³ph^Ós í‡?þe8×@ÈQÕH¶ÖK©¥"eÊ’¬…Ò'Á•—å£@òÀ·°ç½½=5óäf|ýÓÜËX¡‰›Œ!H)eŒqÎ[B[è]svpkèï=‹MLLÓüÆ÷ïßrÍD"qýúucÁÉÉÉÕÕU+v +chðJ©ªªÝûExVÖzGÀeѼ¦7xWäp®sª÷#ÙZ/¥*eÊ’¬Ir)´R ¦ŽÉCÿâsïüŽgvëfüQpþét¡‰§Œ!H)eŒqÎ[B[è]svpk¨ªze »Ýîa/Mš¡qÊ‚”RÆç¼%´…ŽÐ5g÷·†ªªWºÛífÁóósk„1vëÖ­Á+e"‘°{_£ÏÊZ–}¶ë5BˆÝ{€žh^Ӽƿ«Ÿ}ö÷p®Cª÷#ÙZ/¥*eÊ’¬…äW¡•b0uHú÷½ó;žÙÍ›ñG$¹;}·‰³Œ!H)eŒqÎ[B[è]svpk¨ªze »Ýîa‚¸¬GˆÅbý~(=Ýnת¸ŒÇã¸/…³“ˆ˜J¥”ÿ399iëØ^¯µÉ>A°lCìMÓ¢ÞAPðQð°^—íàû* +Öp°\µéöö¶¤„¿Â”HváÎuŒ Adq« r&3Òÿµ°yHB2örÀEÙØ¿µ“]ÿ’]keÖþ›yº;¿òiîñ‡™å·é‡¯¦ü|ûÞ ¥ôfi爄„äF ++‚¸åêºnƩəɹɅ3Qðph6›RAO$A‡« ¬‹E)ÍÉQE\'B?úâ +¾\.ÇW*•¡ô”J%61#ó¹ÛÁ½^¯\.×jµ“““06%¢­U;Õ4-‹ñ1©T +WÄ(,â%MQ”¨Í!âN÷¨Íñ„øQ³ªT­V¥ l·ÛÒ9 )óø^ǸD@·Z‰ÀÌ>z·°yHB2ÞrÀEÙØ¿µ£¨íìz+»¶—YÝÒœ[ù8[z?³üfúûL_Þº[»ó¬³´sDBBr#…A\hu]7 ãÔäÌäÜ䙨 x8 ë” +:.ùAŠ×éP„±åd “£6Š¸N„~ôÄ }µZÿN¥RÞ•ôûýX,Æ&jš†ÌçzFgù˜ :Щj´Ûmñdh4Wkãh/iŠ¢DmÎwŠ¸GmÎ`*•Š˜xˆ>U§ÁØ].—ð|>/½óø^»¸Dp·Z‰ÀdV?/l’Œ·pQ6ö/Eíd׿d×ZHàÌÓÝù•Os?Ì,¿M?|5ýàçÛ÷^(¥7K;G$$$7UXüúõ«®ë†aœšœ™œ›\8utRAO$AŠ×éP„tjRš!“£6Š¸N„~ôÄ }Èá|>Ïÿív»•”Ëe>ëää™Ïÿ¥ícä@§a¥R‰ƒ»®Î¾Ñ#^ÒE‰Úœ"îqÚœÀÚX,&ŒÞdà¬z½Þh4¤‡cßë‚…Å­d"0™Õ½…ÍC’1–.ÊÆþ¥¨Emg×[Ùµ½Ìêîü“æÜÊÇÙÒû™å7ÓêSÅ—·îþxçYgi爄„ä¦ ++‚¸ÙêºnƩəɹɅ3Qðp@×)ôD"D¡xE!AXA§&¥29j£ˆëDèGA\âч®×ëüßR©äQI2™dSòù<þEæs%£´},è4¬V«ña…Bá + 9â%MQ”¨Í!âN÷¨Í€ªªÜÚx<ŽÆÄ·ª1ïõŠ A„ÂâV 2˜…ÍC’ñ–&ÊÆþ¯¢v²ë_²k­ÌêçÌÓÝù•Os?Ì,¿M?|5uÿ§Û÷^(¥×K;G$$$7XXÄåV×uÃ0NMÎLÎM.œ‰º€‡ºN© '‰ +Åët( +#é/õz=Óûý>¦w»ÝPúØÖ4 Ò¦ù›Â¢'''W¹(š”f°$DýWïRæLßiæß`æpB?ú¼•Û‰±¢Ýn?þ¼`‚ø×Ë,ñèc)ÇÙ¿“““^2JÌüz½Ž'È|þÄvJ¥RQ%ŸÏ7 Ûår`.ì ,©V«¹\.™LÂ0öv¨S§ÖUUsaX:Æ8Š/áÉNÃD/aã. +QâkµÔÂ7ÿ&a ؈äŠx<Á›5D 6£ã°½•%“I, —"±‡Õ<Ð-ˆ/zøAZ­úš½4;¬­c]£Ñ°V­VžŒ5w"P¢9àŪ¨\Šd@ë'®…6Pì }øj ·ùË2' ¡}îk…åv8 +ç›xÖ å:,!•È¢a=¬ÃȦ#âˆûPÓ €ò×Y3QwÜçŠey…'H-þçäÀÕùƒzÄžˆ_¥íþAwÀ À±†¬¶ÍvX;ÐBd©¸) e/ÛtÂê@[Ø|¾2Û1ˆ#´I— ̵†œpýæñ’æPw;q’KæÙê Gßîűæ2…ƒ“ƒñ—?Á¾Üýà%+üWpÍø0}”`÷¸ˆ {´Ê6Xp¾‹·q™?±¡â"0—¤]xL`‚‘Å­ÄË'àÂïÿôç…ÍC’1–&ÊÆþ¯¢v²ë_²k­Ìêçù§ÿ™_ù4÷øÃÌòÛôÃWS÷º}·¦”^·sDBBr³…A\çt]7 ãÔäÌäÜ䙨 x8àJ,ÕôD"D¡xŸ÷¨Ð:eØ °Ø0vOR+‡fŠ¿B¯—ËåÜo>°°ÛíÚjîõz©TÊ}:ôc•¡öÈ4£mA#㮜ƒÞͶñç´WhÐ.ŠÎh¨†QZÑ6[°´Ç-Û¢ªªÓêѺ†9-”Ïçýùj ·9¢Ì HèGŸ•Q¸¤Yð­w“¬Ge¡Pð>ò„Yá’p/2Óeºø)±‘PÈŸ¤Ói÷ÕQwxy²!ˆ\ƒí,þÖ©4óU÷<·=Ü8¸`î&Ì´÷w\X8pX½^·€'=~Ú(÷N«„è7ïˆ7.w-ÑÎr¹lµÍª'`ƒ¸×¥°Š`#Œ‹’L&Ýý€Ó’n·Û^\çT +®¥0 6—¸üòm¸—1'ñÛ:úÝ,ê*.’ÁÏq˜ Âeq«ñò ¸ðǹµ…ÍC’q•.ÊÆþ¥¨Emg×[Ùµ½Ìêîü“æÜÊÇÙGïf~x=ý ~ûÞßoýõoyÖùn爄„äf +‚¸§éºnƩəɹɅ3Qðp@×)ÕôD"D¡xŸ÷¨Ð:eØ °µ]Õ4Í}Š4ž7FÃc¯‡aè×$µ•J%‹ùžî:P´–^ÔZA·‚é’æŠn‰ÇãWL¥Rý~ßߊ¶Ù‚öÖßÞpݸ¹gN¡PpYÂöÆxùTopæ$ô£Odtn‡?¥ñ8I¼fͺ¡¦×ëuiºíÇE¸€øº'òçƒÓôb±ÈG"‡­:{½žËꨌ|$O3¬ÈÚÎâoJ³˜ü7>çr¹ #±¨´kn¹6.ù|#Ù™€r‰ò*VgUU]vê„­%°{lÃQ«ÕÄ]ãă6\fàüWøpFê·¡o\ïZ|¼¸¯d2‰à \$ÁãĽXB3fÑ«Ú·ðüÇ+>ÌåV†MñÛ]ˆÅÂj¯ž¾q¯˜ð¤‹ñjmµ +qcÄO8áCÐ%ýÃÆ…Ê™ð?öËß·­#‰ã*U²dI¤"Rx°-SE¦À †ÀëØ؉ [¡eKz’ڊ鈫Xܵq>Ÿ™ø +rLS ¨äŸÀ’¥ êq_¿çÛLvßÛÝ÷ƒmíSH|;»³³³;3~Ø`ˆœÅ­d*ŸÍ¯}±Ù1bdRå€Incÿ½X{Ùõ7ÙµÖÂê«Ìý_3+/çï>Ÿ]~–¾ýdææã+7ê¹ÒÓ¥‡o1òÉ‹“QÔ ƒápxdslsbsêÍy'ðh@ùÊåôÝ­ç5'U4;Am PºËU¸ñNC-_õª}Öh®TÏpý…+C›Ž ¹@ëx’S æ–)»“rÚ"¿+ºF œ|ón}å¹»ÔiH%¸^nŒòfû6Ç9!‰üécŒÕíø}zzš½hÚ†'K\N_½T*qºµZMS×0rKU®HòÍ2ìàè´–eyé"xXdâ b¿#ò™º«"ûê•š9û¢\``éb±ÈÐÕ)•J…©V«âT ¸lÊáê@J£Ñ`×KxÝçÁl0Éu=”t:í:&*¿ù‚V\šµ–¢årY2>ü9Fâ^ºS± `ÀB}Õëu6LYaú…úVÿAVÎæz¾šnýÑÉNN§ Y;Ÿð‡kÂBåÖn·Ã0ŠèMðÀCä,nµ b(úâ³ùµ/6;FŒL¤0Émì¿k/gµ³ë­ìÚë…ÕÝ̽ù»ÿûöçÙ;O¯Þj\ùúÇË×]ûnoéá[#FŒ|òâ$A”‹ƒÁ`8Ùۜ؜zsÞ <œÖ†’H$ÂLHËiÍ EÍNA[eOÄÇ P P +̆Bï@ݲ,åîhÓÁÇá+,],ñ:¯‘ÊÖ&Z·hnM\Ñ+Zb±X03@­Vûè\êz¸1Ê›5ùÛtE3rBùÓÇ·Û¡Ë V>w‡‡‡®kiª¸ˆÓíõzšº€|!‰|F*•òš&Ä°ó#‹%ÄþuÕm4L³ß鱺*²¯^©™KšÍ¦8¦ßïÓ€#¿°NbUî"À[A?çétšnnaæg>q‰ßüB+.ÍZ‹‹Où‹q6ç8Òp/Ý©äE¥ãúx £o·Û `°\ ŒCN(?_M·ŒþXZãoú‰¾9årÙ—yúDK¾Ø`‹[-ÈT8’_~ŸÛì12‘rÀ$»±ÿ^¬½ìú›…µVfõUæþ¯ó+/çî>O/?»zûÉÌÍÇ—oÔ³¥§Kß1bä"ˆ“Q=ƒápxdslsbsêÍy'ðh@SÉåttša&äÚ EÍNA[Í¢šÏÚ7ú *yÄÆÈ®üñ7j~×*¨^¯çóyîGüÒl6Ù1›uÑP8KHÀ^8t°ÇË™¢1Žv¡ô¤Ò-èI«Õ*ë +kµŽØÕ3øêwE¯hñ;q°jÇv»=Q.EÉý‹ÅÐ'"†±…R©Oy´¢š¾š„mžAä„$ò§1n·‹Ï¼­cX¥Rqõ¶¦:…SL§Ó:Š†WÀ‹§ï•è‚výÝ+ØXÂeô²ÊU‘}õJÍÔx¯Õ9#Å;ŽgmŸ=®°+“L&%Ô6È=r3”à=g³¹^çHüæZqiÖZÔN¥ÊÙœãHýt§®)•A«;z­ý~ÛqDþîu»]êáðÊKß-4×àoú Ñœ$ŒQÅ’¯6ÆÁâV 2ŽÏ¿ú!·Ù1bd"åàƒlìg!Ö^Öj/¬·Ö^gVwçïíÌ­¼˜ýöçô§3·W¾þñÒõG×¾Û[zøÖˆ#Aœ$ˆöv0 ‡Ã#›c››SoÎ;Gú .§'‰0ÒrZsBQÅoUL[‡íím¹Š¼°©V«®Zh”Eºƒz½.ê"ÌX_ ³£R©°™±/4;J‡Ôj5q!¥OF*·`ìBÔ‚I©TJ_.—ý®¨~âA ’u&Ç¥…B¡×ëq*ív[üQœJé«ÉÙæ8"'$‘?}Œq»ŠƒñŠ*WÁ»êu@:êl_ ü¢Ô20p¤·DëDèÓG=<ìw$Q±Ûíz…"Ÿ}r]”}õJÍÊ4„šÍ&÷•=øC2Ɉ8WL>R¢«‰eY~—`ÀÏl8 ¿ù…V\šµ‹Å”oÅÙœãHýt§XK2U£Ñ¤E&žëÖJ É(’4$?_}·Ð]ãoîk2™dÇwxx¨ož¾QÅ’¯6ÆÁâV 2ŽÏ¿ú!·Ù1bdòäàwÙØÏB¬½ìú›…µVfõUæþîüÊ˹»ÏÓËÏ®Þ~2sóñåõléßK:FŒ¹ â$ÁwïÞ ƒápxdslsbsêÍy'ðh Õ>+J·C€•›PÙDÐ +ÜA³dÐÖÀ–ÈU¼JTìò®6ŸÏK*"xOÒ} ÒXÁ@ç"7µÛíÂ!år¹×ëÉGR +…·P±XTjIÜR¯×%Š®[Ó騌H‡Å@$ë(:L‚K§Tý¦r*¥¯&a›ã‹œˆO_T‹žÛ1?7¸V«É營q^Ç„'Ti¡¸(vª¿AÀkïuä¯èÓÇ=ztrdUN‘¦f.2ùì“ë¢ì«WjVp ™š ¹~¿Ï>)Fäw¯½(¡¬V«;ÿyÓâÚb ÜMAÒÇõñµŠh§k† +ï·ÐŠK³ÖÒfç8Òp/Ý©Üœo<wFâö‰ÇÍ +?ÄFSå h¤ñ~Bùyé»Ex¥R‰}…Óƒ4¯‰¦ƒ߀7"gq«™ +ÇŸþò÷ÜfLj‘É“ƒ²±Ÿ…X{Y«½°ÞZX{YÝ¿·3·òb¶ôKúÎÓ™[+ßütéú£kk/=è1b䂈“Q(ƒápxdslsbsêÍy'ðh@«²P’H$ä6Ð +ÜÁoaL[TàrWSÑO¹ön”v»-Ù)ö"W¯×뢢R+\Òé´R+°[z.Q·ÛíúZQ-hÁ8E C¡KA>Ÿ÷k@0_ùåc‰œˆOߘü©‰/·W«Unp¡PÏ/ê•êý~§99îúHŸ%§Àd@úôq—‹F—QäÄb1¯³ÆQ2E×E•†éX>úc"kÓO4þaON +5Y²¢ˆÄŒ^¯gY=øV>-Þ+̆§ ž‡®h§ëZáýZqiÖZúãÇtŽÁÜKwŠs—[NOuýD_¿‰[ W‡/åç¥ïZZ‹‡W%™LRËãñx¹\VÚ¯i@„±ä7à †ÈYÜjA¦Âñçâ?s›#F&L~—ý,ÄÚË®¿YXk-¬ý–¹¿;¿òrîîóÙågWo?™¹ùøòzfù_K:FŒ¹8â$A”ŽƒÁ`8Ùۜ؜zsÞ <h77&P Ëmà:Ž)ÿ…1m КÉU\Mm4:Ë¥R)Q7‹¡GPê"ØИpºò~30ÜBøW©Æ-®[Sêrã•Ñâ€NSD$ë(†$*—¢W…»ü®ÌWø("'$âÓ7>j¢ïvñÍœžž–G”eYÜxú/ž/¹:Žƒ[±\.ßêE¥^¯»Þd4¯èÓÇ=z½^+<µZMr³ùì«ë¢ì«WjVp —ŽÛcàR¤ÛíJV‘8ÎF±p¯8·I§ÓJ;]× +ï·Ð×C³ÖÒí9†t/Ý)Î]n9Ê06¸P(ÐO´ÂÄV8Ë?Ø&ÝKø‚P~^ún¡w <\Š|>/(Ù…¦Æ’Ü!ð¸Õ‚ iFªøÜfLj‘ “ƒ²±Ÿ…X{Y«½°ÞZX{YÝ¿·3·òb¶ôKzù?3·W¾ùéÒõG_þõ·¥#FŒ\q’ *ÞÁ`0lŽmNlN½9ï ËZ}‰„ÜZ;ø-Œikà°½½-Wí¬V«šËU*NwzzºÙljª£ËàÔÇÑÇT*Å-„P—«„q (•Jœz¹\öµ¢2ZD"’õí L$.’†T*M_ࣈœˆOßøü©‰/·'“In°ü â&÷{ƒÎëÆ}z‹Eñ²Pòù¼D„x…BÁ5ØéÇãqqND>Ór]”}õJÍÊôÒ!k{}‚=9=ðnH–sEî@ +nõL£Ñà t¡丮Þo —f­¥?>Âs ï^ºSœ»r›ìQEE×ëõØ︒Îï±XL™ +ƒAw¾ üûUóÛD’Å}ôÑGsôÑš$v´R¤H«Œ|ôj‡!  ä£3‘VÎ)G}ôq«Å,,xaĘa'ñÁGÿ >úËùÒþ¶Õ¼­î®®î*gS?=Eq×ûª÷^½z%Η|Xèh-(<,ys‰û†KÒµ$_ÀcÂÂV $ÙЂýÓ_çè24Itð;mîçAö^~c7·ÞÊ­ÿ6·úqöáû™oo¬ütýî«k·ŸOßzb}ÿü›íŽ!C†.¹— ÆÂáp8Ž;8qpŒó¾Àõ€Žµc¦e±twu0¦O;;;b‘¨NŠÍEr¾qâÕjU^\…B3„P‹ETÂ`#œ†Ð§n<‹PË ¢’#¹ê!M8OÑxÖ³# Q9Šð¶¾ñÅS‘Âîm#¶m1÷û}Ê™L&¹/¡e™N§)3~ªìô2c0X–•–8m}Þ¦×h4Ø*ÊÉýØn·ÙGß›•Ï|²Õ ›.”Á=t¸FéR¯×“©duˆÈÉJ¥B—p6iÜ2™L­VƒÂn·Ëxè!õµ¥· —äè"ϯ+ZÂKw*s¡ ÅŒæÜ´UŽïV¢•¦^ÿâ|ɇ…κ¡…‡@.—ï^$ÐØ¢¼v,lµ@ 5Lß~6ÿCÇ¡I¢ƒ/´¹ŸÙ{y»ßØÍ­ž[û4ûèÃÌÃß(ýl­¼¾~ç_W—Ÿ]¹ù÷ûý7ÛC† ]*r/ÁÃÃÃáp8Ž;8qpŒó¾Àõ€¾æÆ<Ä>Ð ÜEÔÁ˜> \à9&‰ê$…7h‘®V«œ¸ú#ËxÎp†j±ˆJX€f³Éi}¥Æ³èÝ’ÉÕxPi:FÉg]1;ò¸•£ï)_<%)ìív[Þ®C +|D×¢³Ùlx·ÛýÊÙù¿G¥RI&“4¤ø‰¡‚´H|›: SØï÷ñ¥X,2÷ Tcð5ÊVƒnºPôС&éº"WŸcBh)0HÕ<=>Aó÷µ¥· —äè"ϯ+ZÂKw*Ó²p:¿eYîÇZ­&_0±AÇBvrcCœ/ùÑ‹C²ðà9m8®ŽG2/{BÔ‚70ÐŽ…­(¡†éå§ó?t š:ø6÷ó {/¿±›[oåÖ›[ý8ûèý̃·7î7¯ß}uíûÓ·ž\[~º´Ý1dÈÐe#÷Äh7G£Ñ‘ƒc'NƒqÞ¸Ðל‹©©)…tœ–Tè‰:Ó§‹ gƒÊ®{½žŠÃ^oeÞƒ1µœ!„Z,¢X Þr +ÝZ<‹Þ­Át$Wãáë‡tLªÄ¸•£í­OQÞN§9~´&ÍÕjÑ$%Íy9›Í¦âf €v»]s€$Eh*}›^¹\f •J¥ßï'“I÷g¡PðÕ‰Êg"¾ l5è¦ epAîAn•Õs6›(QDh)J¥ &ûŽ¨²ï–e‰ÓƒãkKKÜ¢‚N\’£K$~õ<ê +/Ý©ä…²¸¸ÈDÜ~ˆ-»?±¯xÛ‘Ý2`Û¶Š¶Ð|¥R)™„Òa5RáÑ.ä^7òyÑÕ¢¼v,lµ@ 5Lßz:¿Ù1dhbèà Ùûy—6öò뻹µÏs«Ÿf~˜}ðîÆýŸ­{¯¯ßyyõÖ³+ß>þÃꛥíŽ!C†.¹—àáááp8FGŽœ88 Æy_àz@_s.¦¦¦TÒqZR¡W$ê`LŸ.ð‹¨ìZÑa¯·’ïAºÝ.RÙl6wðNá ¹¯H‹Á[N¡[‹gj9A˜Žäj(&$¤cRÅ0!ÛŒQ9ŠÐÞú"AKØK¥Ç_©T|9±5Ê뮜8Z“¯8úeK&“¸4#`´õù6½^¯Ç2™LµZe?†¯NZ¾ l5è¦ epA·Øh™¹%:„‚I=ºÛ¶ƒÄq¨Å¶´Ä-*è#9ºDâWÏ£®ðÒ‹EÓõz‰@¿ßg?ËårŒ½È£P(0[豃Á ¶ªÐ|¡3¸ étZ A‹Wx4òÞ«\>/ºzBÔ‚70ÐŽ…­(¡kåÍüfÇ¡‰¡ƒ/dïçA{ùõÝÜZ+·öyîÑÇÙ‡ïgJ¿ÜXiZw¼vûÅôwO¦o>^*,mw 2tÙȽ‡Ãáh4:rpìàÄÁi0Îû×úºq155¥¢ŽÓ’ +½"Qc<8 x.‰ETv­è°×[ï«D d OQ…Ûr“ÚÀs±f•°œù•SèÖâY„ZN¦#¹êõ|2CªWÕÄn3Få(B{ëÛGØ›Í&ÇïÛˆºÝnÐ6Óé4]* +^ñÁ`ÀY)‹Ê!1ˆ Úú‚šÊ€ñ$“I÷ä:H'-K_qÉ0¸ ‡÷ ·Z­VÅ¥¨2tAoj„±ßï³%º‘r¹¤»ÛÒ·¨ Œäè‰_=ºÂK=·,KÆ4ž©TÊÉd2µZièõzbY´J¸~+cÈ‹v» €õP‹¨ÉR©´¸¸È}ÍmA¡Cä©?‘ +agP2/ºzBÔ‚70ÐŽ…­(¡kåÍüfÇ¡É ƒ/dïç]ÚØ˯ïæÖZs«Ÿæý:ûàÝÌý·Ö½××ï¼¼zëÙ•oçî¿ZÚî2dè’{ b>‡£ÑèÈÁ±ƒ§Á8ï \èëÆÅÔÔ”ŠBú “Tè‰:ã9ÀiØÙÙ‹¨ìZÑa¯·ËËË2‚(T¼AÒé´äxæ<›P Ë™_9…n-žE¨åƒ^ŽbL~Hµ¨šümƨEho}^Œ;ìПL&)?~Ž >–;G‡NN¼^¯s^¡ƒi‰A Д5=ï“Þ‰¨|ÆæËÀVƒnºPôÐy«µ—ÉdäˬÛízË52jµ=\¶mÓUœ2¶”ÍfC ÙÒ·¨ Œäè‰_=ºÂ{FjÙì÷û¡Î¥R‰©eÝ;È †^¯Ç +¦X,Êò¢\.ÓM¥R©F£áˉ½T*0$ün®Ð|¡P.þøIƒà›Çv»›%èÒ[Ãw ’yÑÕ¢¼v,lµ@ 5X+oæ7;† M|!{?ÚØËo´së­ÜÚç¹Õ³ßÏ”~¹±Ò´îþxíö‹éïþqåÏûã_ÚKÛC† ]Br/A iÃáp498vpâà4ç}ë}͹ðð‘@t’ +½"QcŒâœ¼)Ä"*»VtØë-Þ¡RÈ{Æ<[Q Ë™_9…n-žE¨åa:’«g$¤êª.Ä6cTŽ"´·>¯þ¯öb±È‰ÔëuŽ§P(Pô¶Ôh48qï9âÎZ2™ Êá1ˆ šŽ ¦‡‘&•Jq™í÷ûA:QùŒÍ—­Ýt¡ .è¡£uÈÀ$Ê»Ýns<øR©T\Ÿ}•ˆAˆÿw<°m›Èf³ÞšÇGÆP*•(C³Ù´,+ôdé‹[$ÐFrt‰Ê¯žG-á=ûß¹¸¸èžü­ÕjÝn×WŽ%<¨V«â-Ó¹.öU‚“ '9ÓvÊÄaÿ ¥£3DƒÓš/D€Óå°Ž%Ü ,øô p9BRðw’Èõh`ýV|;|^´ô„ЀŒ [-··D‚µòf~³cÈÐУ¼½ÿ_ÚØ˯ïæÖZs«Ÿæý:ûàÝÌý·Ö½Ÿ®ßyyuùŸÓ7ë3wž/mw 2t9ɽ1j‡ÃÑhtäàØÁ‰ƒÓ`œ÷®ô5ÇÆl…ôA'©Ð+u0¦ïx˜ˆETv­è°×ÛåååPúD +ÞJóxq ð\lH%,g~庵x¡–„éH®^”*ªº(ÛŒQ9ŠÐÞú(¾ZØC› n7Ϊs0p«¶ms&R©eˆÚœ ô‚¶>AÓ+•J4k…BA •Ï8}B³/YôСt}y¼½Èd2¾$H‰¾ú°, ÇD¼¾¹§˜¨b±Èþ÷M–ƸɃ0’Ç9*ÿ™rµ„èv»A™L‰ð“cî÷ûâýÒV¬r• c/..ùìR¯×9%lU/´z±fì‚– +—#Dcö&h4¾Ö#åE½'ÈÄÀ`¬XØjć.³>Ìÿ‡ý²‡mKâ¸K–*UªT)Ä_²õÁÎ8* $Y+NDzä3P*•.UªT±A¼› ÂÛì%L²»ÑÙ‰LÛ*TªT©’¥ú 7G\Þ{âÅG›áz~ø7¢ÞÌ›ßÇV…út|©ÊQT>Ì–•Ìf;SúšÞØK­·‹¿.<þ|ôï¹Òìê«é;/rÛ_–ŸwP(ÔÍ”¹ Â)WÓ4]×O N Î Î z÷âj3Åw_¸øÿ K‡´É¤cû}Ç„qŸ2áÉš3`:Z¸S0ÆÓïÈ®Õjþ…xFÒW§‘œÍ@‡ÊNÍóŒtj05OœßlIy\…(MÉïKÃóÕ•]UUzF0‰D‚ðk—}@<·ÿ«( +á¿ÑhLZÄGìMÂXôˆ'IÃ't¾5räë_§nì{7Â>è4L–ehã‘‘»×ë1¦ÉÎÎÎXÏ&‘H¤^¯{s%‚ù¥XOF¾,ëæûÆåÑeÒñ&œï‘¿¼&ôºjþLˆ©s¹ÜØdíçºIO°4ÐxnJ—ÏçG–Îe$•JÅÉ3¤< 쮈Æëv»ð0bƒwĨðÅ„ï…³—\A®Ž¥í6hl³Ioì‹[*hÿ¡ÊQT>ÌndJíLéKúÙ^jýóbñSríýü÷³…×3÷vç ?.?ï P¨+s‡š¦éº~bpjpfpîLи?ØosÖ©•Ç¡ýBçÒ¡û}ǤV«±Mxf¤žè$OG ·§ÁÐœ1Þ¼rÂ_ì‰èK DÎ6á|t;1R㙑N ¦vd¸JêÙU¸ÒôÐ9œø¾ô™\sÙX|+EQ¬a%´ÿU©TóƤ„¹Ë«¶h4 +/"‘Hôz=ÆÈ|>o¾²••¶Oè +hQ™ËåF°zÌic;À6¿H½b«ª +®À­™¬x<_Š$I줜 PÑ(LmÿˆÀçãÍêYÀ“n·k€’škËÈ—å{ÝܵM&“à-‰Œ=)MçȹxÞ#gy-à«éìN  œÆÃ_öeÌÇf ++¼5¾^¯?(ø„8‰ô§Œ'LÁXŠÝ¿/¨? †N°œCoìîîZ`1þ" J!½Aé`Ia”×b¢÷ÂÓKžAübi» šâ#½±/nuP¨ u|©ÊQT>Ì–•ìæA¦ôZ4µÞZ|úÛ“ɵws¤ÙÕŸ¦ï¼økùóòó +…º±27Ááp¨iš®ë'§gçνûÜàè3C¸LêЃ Ý cÖ<3ÒÑž'Z¸/8 †ë1®`²,»™Ü¶Œkš ç‹ Û‰‘ÏŒtj0µË ÃURϮ•¦‡ÎáÄ÷¥ÏäšËÔëuÂʾú%“Iû_’$æ½^0o4NæðÓM"â/-èÕ qŽ‘¡¢(AòMãù=úU^˜Ú¥“h4j-à0ûØñ‰DÂÚGÜŒŸˆ¼ÛíúîÖö÷‡(Ì=Gèþ½X|ûk‚ØYÚnƒ¦øHoì‹[*h_ªr”•³›™R;Sú’~¶—Zÿ¼Xü´ðøýü÷s÷ßÌ|÷Ã̽—ËÕãåç +ucen‚pBÖ4M×õƒSƒ3ƒsg‚ÞÀýN­ÄžW‡ptŸÔ¡ªª„ Üw&š´ÙljµÛ„'k:GQy¢- +Nƒs¹1¸^¯»œÜ¶9Û„³èvb¤Æ3#šû c¸JêÙU¸ÒôÐ9œø¾ô™\sÙ/F-G‰DÂü‹XZA€ÍŽö‰Û‡åóù‘æS.ÖUA°#IÒD;‘}¼,Ë×!‚ ábi» šâ#µ±ŸÝê PêøR•£Œ©òafó ]jC.®·Ÿþž|òq~íÝ܃ͬþ4}÷å_Ö?,W;(ê&Ë܇á¦iº®Ÿœœœ;ôî­V‹ØÓc±Ã~¿ïÁ!}´PUÕý¤Íf“0¯ÕjÍ8QÖtŽ¢(òD˸ÖE£Qbp·Ûu9¸%l!r¶ g3Ðí4öÆêmF:µÝÝ]—A†«¤ž]…+MÉïKŸÉ5—Ý$†ƒÁžK’dè´L‹Eû0A`O¼µR¹ÏA$¤äóykÑ“eyìøD"q=Û‚ !ei» šâ#S9ÌnuP¨@u|©ÊQT>Ì”•ôf;]úšz¶·¸þy¡økò±<ÿè—Ùûo¦¿ûáÖÝÿ§²\í P¨›,s‡š¦éº~bpjpfpîLи?´Z-bOÅb<ûý¾‡‘H„°RÅýŒ0a^«ÕØVÒ\~#‘ýAäO œ%&Zô¬#¨,Ëׂ adi» šâ#»ÕA¡Õñ¥*GPù0SVÒ›ítékjcoq½µPü5ùøÃü£_fï¿™Y}uëÎ÷ûÇ—ÛÕ +…ºá27Ááp¨iš®ë'§gçνûC«Õ"öôX,Æã°ßï{pX, +AƒÛJUÕ\.7òd÷&¶-OÖtŽ¢(º7o6›„y¡Pp'ÐívÝÌb¿9Z@äl+ž²\Œj'Fj<3J’Dæóy—A†«¤ž]…+MÉïKŸÉ5—Ý"Ú #‘H¯×#ž0̉…JAמ¸ A$¤Ø×Ò±«·,Ë׳a!j–¶Û ú˜7Ù­ +œŽÿPå(*f6Ò¥vºô%õloqýóBñÓüÚû¹‡og ¯§ïíέþx»ÚA¡P(s‡š¦éº~bpjpfpîLи?´Z-bOÅb<ûý¾‡pµ¡OÕj•aÒëõâñ¸ÓɤV«±gäÉšÎQE÷æÍf“0gÜ×ì@7e1ôG–"gò”åbT;½Šz›QQÂPUUÝ؆«¤ž]…+MÉïKŸÉ5—Ý¢X,Ò´ÿÌçó óz½Î6D".#A )’$Y‹œ0ÇŽ -ƒ« A³´Ý<é¹'»ÕA¡‚Óñ¥*GSe%³y.}Mmì/®·žþ–|òq~íÝìifõÕ­;/Äõ·« +…27Ááp¨iš®ë'§gçνû\ˆ==‹ñ8ì÷ûÞ& ú€Q(àíЃF$aœLjµ{:ž¬éEQtoÞl6é4‹E:;EQœÆ«ªšËåœÊ‘³cã)ËŨvb¤Æ3#ý +ÜÌe®’zv®4=t'¾/}&×\v Y– [Aì?ëõ:Ãœþ ó«~‚ ³»»k®xp"…E5èpù“°´Ý9öþË~½Ã¦±¥qw‰´ … W+ +kEéÄÆæ5Œ,¡õ®]PZq“8vðƒ×¢«¥£¤LéÝ›(ä&Ù 8›°ñ½1±ãá5%%%å”3Ö~wðeÙáá1ã øÞÿOEá|眃ÏD ãŸ\aAÆ—âeB†Ì3¬ÓÏ9ýçŽýSûÞ‰ÍwlÝI/nY½›øêÎÆó¿}—]‹ò‚ ­KPEI’dY®)ꊆ¢Ù߸/ð›‘ÉdT׺ÉdÒS°R© W0•Jõ|Ì ÿûÄb1ZgµZ¥?Ífs÷{fff:_¡!ƒ§Ó³ëî=²,«}x"‘P ÷z½ýÞœËåzôî z<:H´ÍR©D?ø|>ê•ê0Ü®–]êvmsˆ“£S÷ŒC ¦ÑIë,;⶷Ñ-f0ô”¢lÀpú6i\ ´¹#EÛ£eoӳˮ0 cJ±&Tø%Á<È:ýœãà̱ÿÕ¾ûÅúôóÒöÇÅ­÷ ›oæï¿´=~»åA(­KPEI’dY®)ꊆ¢Ù߸/ð›‘ÉdT׺ÉdÒS°R© ]Þ9ÄsÈÜÜœ ª±±Xlð\zvݽG–eµO$ªá^¯wÀûi/=7n4i^»¾¾N? †îÎÌÌÌt¾B+¼6=m¹èuœoMÏŒ©Tªg[ºy<ÕØ[ÔR=¥nÑ6‡89:uÏ8œP(¤ª<ʶw¢²ý©åã ôNK¥[òZíâŽp”ë<]ªMÏ.»Â<‚Œ)ÅË„ + %˜g‚9g€súϧö½›ï'ëNzéÉË£w ¼»ñÜ_÷ØÛÒR¥nË6‡89:•Ëeím`¼§«“ ýê'“É+‡Óè—jÏáô+Kû2 Íá(Ú »MÏ.»Â<‚Œ#ÅË„ +L+ÁÈ:ý玃3û^ƶû³õéç¥'ÿ¶Sí‹$×]dgÓh×mZ*•êì¹ ÚÇÒîh”Çã¡n ê µˆ~¦:Ý»(—Ëí‰Òéô•Åu¶åâú[Ó?ã…òq„B!j‚Ùlnúa}}z¥å£™ð–ÞT© ߦž/ÅÐhÙ}®œâ7m» +ýÞK$„Ư@[2™ìÞs‘ ‘;ÂQ¦t˜ž]v…yyŠí0¡Â/ æ™@ÖéçgŽý¯öÝ/Ö§Ÿ—¶?.n½_Ø|3ÿ¥eóÕZ”Gi§u Š¢(I’,Ë5E]ÑP4û÷Êá(S:üiú/®0 #Oñ2¡C æ™`ÎàœþsÇÁ©}/cóýdÝI/=ù`yônááw7ž/ï^‹ò‚ í´.AQ%I’e¹¦¨+Šfã¾À`B¹#eJW˜G‘§x™P¡óL ëôsNÿ7Çþ©}ïÄæ;^Úþ´¸udñ¾¼sïû¿ÿ³¸åAÚi]‚¢(J’$ËrMQW4ÍþÆ}À„rG8Ê”>®0 £Mñ2¡ÓJ0ϲNÿ¹ãà̾—±ï~±>ý¼´ýÑò8µ°ùúîÆ û“Ôj”GéLëEQ’$Y–kŠº¢¡hö7î &”;ÂQ¦ôq…ymŠ— J0ÏsÎçôŸ;öOí{'6ßOÖôâÖ‘åÑ»ù‡¯îÜûÁúºåA:ÓºEQ”$I–嚢®h(šýû€ åŽp”)}\aAF›âeB†Ì3¬ÓÏ9Îû_í»_lO—¶?-n½_Ø|3ÿ¥åáËÕ( ¢JëEQ’$Y–kŠº¢¡hö7î &”;ÂQ¦ôq…yaŠ— ˜V‚9g€súÏgö½Œm÷gëΖž|°sª /øÂEÑX°,ËW'Û E™÷†ŽãàÍyÒõ"À WHºó×Õ†¥í:Š^–µcùjLUB©r0Y &Ž[‡þ¸´È½÷=<𮽚¿÷|îîÓÙ[¿ý-þf%SGQ5«‚𿃢(ªªv4º=¾5“>ÀA™ +X–u˜ (ªÝnŸ+O£Ñ0çÆSõEb¬ÜårÁ››9VÃétê1‚ Œ˜mz€öc±˜yWx<žp8 ëc¾”Íf']õA®5‘txøÏÒvE/ËÚ±|5¦*¡d)˜(_›‡þøÇEîw}áÁËyöÙÜÂÌÍ_¢K+™:Š¢¨Yý„—REQTUíht5z}k&}€#‚ 2°,ë8!’Ïù|þ\y8ŽÓ'º\.š¦Iž1•}±4›Í\.W(Z­ÖÀY–IG°b#f›Œ; +€!Š"¼cÊåò©M8©j§ÜØr­‰¤‹ c4‚ÉÒÒvEÇoâ«ßLUBÉR0Q l}öÇ%ÿÆߣ·Þõ×ó÷÷n¬îÎÞúÝËî®dê(Š¢ÕAøÏBQUU;]žFßšIà‚ ‚L,Ë:N( +ä³Çã>I»Ý¦(JŸ(MÓ$Ïø*¿LdY&ÁŠMºœëA>Ÿw‡Ã°O¬‚a…£Ñ(„1 s‰5N;¸±äZIAÇhø7—¶ë(:~kÇòÕ˜ª„Rå`²L¶ýñ‹Ü{ßÃïÚ«ù{Ïçî>ùùáø›•LEQt ú!øõëWEQTUíht5z}k&}€#‚ 2°,ë8A’$†aÈ×F£1d’\.GfµZ-š¦É×qÖ~yȲL:‚›t9×X1Š¢Œ‹¯ÄgÎÚÛÛ;88¸„òÜØr­‰¤‹ c4ü›‡KÛu¿µcùjLUBÉR0Q &¾6ýñ‹Ü;ïúþƒÿ̳Ïænÿsææ/ÑÇ¥•LEQt ú!ÿb(Š¢ªjG£«ÑÓè[3éAA©€eYÇ ’$íí푯Ç ™ÄívëS†¯4M“$ã¬ýòe™t+6ér®<Ï“s¹\ð><éŠàÆFkM$]£áß”–¶ë(:fkÄ_ýfªJ–‚‰£ÀÖg\òo|ð=zë]ûïüý½«»³·~_`w—3uEQ+õCþËPEUÕŽFW£§Ñ·fÒ8‚ ‚ S˲Ž$I‚÷—Ë¥u:ðõÌ 0‹dØÛÛƒš¦ÉÈÀ)‚ „ÃáX,sm2˲ åA$Çq­VËËåà*Ä@¤>‹¢FÝn7Ô¯_µ¿ Ïç!’a˜ƒƒãx£Ñ4xž'y<á{ÈÝí³ ¤ÙlBP0L¡(J¯æÂàÀ–ÇѾ±Y˜ B›zÐK»Ýfº(z!+už7ƒ\.ø5áF›áÌ5Ìúb›õ‡5‡†„ åóùàÃÎÎΩuá½LÕÆF˜Hº:Fû¶âk(:f«Ç¦*A0Y&KÄQ`ë‹?þiqãƒïÑ;ïúþƒ—7ØÏÞ)ÌÜüuiã`9SGQµR?á-QQUU;]žFßšIà‚ ‚L,Ë:N$ F²Ù,EñÌ ÃèÁ.—K¡išd0Ç˲L®ÂÝm2ÃÝí+9uµ\.»ÝnÇ  )›‘°p8lç8n`¶S‚0L63;;;EY¥u:öëQí·Ûm›N¡ }c ñ‡ƒ]/ÃçšnÅd—‹çy•Ø—Z(ì³Áš´S@›cíeJ66‚üðDÒEp˜ÇÙïÚ~ˆ¯¡è˜­›ªÁd9˜(GþÍC\Zäþô=|ë]{=ÿÅÜêîìí'ž˜øÓãÒr¦Ž¢(j¥~ÂKµ¢(ªªv4º=¾5“>ÀA™ +X–uœ IŒ4›M2âóù짷Z-Š¢ô`AôAš¦IóY–ÉU¸»MrQI$|6¯ƒÂ0ŒÕHL86ŽóŸ 6›M›é‚ ÈV«¥Ò4MÍSdY&Wáî6ÉEQ$‘ðÙ@®F£QòÙãñär9èj36blÐ*O86Ž7 Aƒçyc~á{HãöÙðrèr¹H˜Óé„üР¤Q(†1– _íË¥ý|>oÌC~nhŠTbÿ3™ì¸squ–˸±mž (˜¢(= ¦Ø·ÕÂÚíöÿ´ý?4H®B§ãèe66‚L‘ttŒÆÕg!¾†¢ã´zlª“å`²H¶¾øãŸ7>ø½ó®ï/’$µ¬Ä{ÍÝ çÞByí|òùãï'—ßL,½¿ýlìÖ“‘›Æß8 ‘H$¶ìKþ1 Ã4ÍC‹#‹c‹“öôû'‚ b(e™;CÓ´–ãÅb±å\I’ìAœã¢(â\÷,]×1 +«0jSU3áÙÀ9hWdS/Õj•áµtð^sG7EQ0!—Ë1|à6“kµZ»….Ü~£ÑðÞ—G Nga]º]©í‚Á û,Á–ò‰Ô3í*µ%+áäN(±ZÛš~ðijåCðþ»É{¯'–^\[ümt¡0rãáõ•ÒüƉD"±e_‚ðbi†iš‡GÇ'íé÷NAÄP Ë2w†¦i8^©Tp<‰¸'Öj5LÈd2Î(ŠrOÔu£°:£6UU1žÝ •$‰á“Íf1³T*]ÀÇ{ÍÝü~¿ÞÙVétÝ +…Ây˶a·õð<_­VÙõxN.'¡K·«¶]¹\£°œ{ºóÐæóù¦h °CðÀî˜ð½¸£—uòø`Ä00»^qÝñí÷?Ï(û$RÏ´wªÔn”¬„åPb{zusú6ÿ=¸üvòî«ñ;ÏÇŸŽ.<Ä~ùîÇù‰Db˾áµÓ0 Ó4-Ž,Ž-NÚÓï œ ‚ ˆ¡@–eî MÓœ!¿ß!]×›&*Š‚Ñz½î ‰¢ˆ!÷Š`…QXQ›ªª˜ ÏîŒJ’ÔSï5wtãyÞKÍ6ð [6›=oÙ6ìöãñ8F}>_>Ÿ‡w׎…1¨V«œƒn¬¾\½í‚£ŽQ8çîé‘HÄŽBåM¿‹F£áýe2Lnò¹¬^¾ ôÁ&ˆa`v½ âºãÛïžQöI¤ÞhNí~U²N”Ck[Ó«›S+ƒñ÷“Ëo&–^Žß~6vëÉÈÍGã‹¿ÎoH$RGÙ— üçb†iš‡GÇ'íé÷NAÄP Ë2w†¦iÎP.—ÃP&“q†àõÆçóÙ¡h4Úä)Š"Nt¯¨ë:FauFmªªb&<»0*IÃúêÒÇ{Íl·sùµZ‘)íÃWé÷û9‚ ¤Ói(µcy-qö\ØçË•Ü. ‰`B¥Rq†ÏóvÒš&V«Uœ¿‰‰óGÔ´Ê%ö2À› †Ùõ2ˆëŽ¿ýãß3Ê>‰Ôí*µ%+áäN(±ZÛš~ðijåCðþ»É{¯'–^\[ümt¡0rãáõ•ÒüƉD"u”} Âÿ2†a˜¦yhqdqlqÒž~_àAA ²,sghšæ Õëužçí ÎP>ŸÇYÅb±ÉSEŒºWÔu£°:£6UU1žÝ •$‰á}uéã½f¶[©TÂh&“aûFƒávYíÉD8Ñh´R©t,² xõuš\À¹šÛå<–Š¢´  +†ó¹¨Õj=êe°6A <³ëeÐÅþ° ßÌý4£ì“H½ÑÞ©R»aP²N”C‰íÐÚÓ>M­|.¿¼ûjüÎó±Å§£ ±_¾ûqg~ã€D"‘:ʾá_Ã0LÓ<´8²8¶8iO¿/p‚ ‚ †Y–¹34MkŠF£QŒ–J%ö  nOQq–;ªë:FauFmªªb&<»0*IÃúêÒÇ{Íl·B¡€ÑL&Ãöà5ó#‘Èy˶éؾ „ü~?ç"NCKuâ<Ðò¹æ:¹šÛ«ðï¿›¼÷zbéÅ5ù¿£ …‘CË/æ6H$É‹ìKðóçφa˜¦yhqdqlqÒž~_àAA ²,sghšæNÁŽò<_¯×a$‹á{¤ Q1Á…W#ŒF£QFmªªb&<»0*IÃúêÒG×uÌc¬ÅvƒíòØ»M©TÂül6{Þ²m:¶ïêt~Ë@µZõ2Ñ&—ËáD<6àÊn—s¡xûjüÎó±Å§£ 1õï)mnã€D"‘¼È¾áÛ0 Ó4-Ž,Ž-NÚÓï œ ‚ ˆ¡@–eî MÓÜ ét²Ùl½^çyÞþF[zŠ¢ˆSZ&ø|>;*I£6UUÑžÝ eû@_]ú躎9°cŒµ:ºaï°Kl6ÝŠÅây˶éØ~;œ_}.—ó> ç@Qïs›¸šÛ¯÷‚ Ø9P!|„ÁH$b@¨9Î +ÛapY½ çÁ&ˆav½ âºãO½>£ì“H=О­pj÷«’•p¢JlO¯nN­|œŠÿ>¹üfâîÿÆo?»õdäŸFnü'ò¯ý¹‰Dò"û„÷pÃ0LÓ<´8²8¶8iO¿/p‚ ‚ †Y–¹34Ms'Ôj5Lðûý¹\?‹Å–ž¢(bNË𱣂 0j‹Åb裪ª;£’$1| ¯.}t]Ǩêÿì—MléÇçˆÔ‹¥½ õ‚ªJEªÔÅøƒQ­¨ð©\ª°IÛ±ñ0•—›¥^|ª8º‡nP6»BI6!I×!ÎÆ;6>9räè#£18ê³3öˆbÏùÿôS3Ïû¼ïó̋߉Á\Wf³ÙlÆ o…ú£ÓƒèvÙ*W–¯GkÕ´O:Hm¬Éd:>>îj¸Æж+kaÙl– +¤2Õ¯‰DBoM­*—ËÆåЯZFscpmðÅs$Ó¿ùâ÷¾a¿-œËsdTä¢Ü‘#÷ú¡kíÀ¹²Ç.¿qÜ{5½ðr2ôÔ>›ÿú#ôx曄v¨zÖëuI’dY>Qh(4Nõô€‘  +1ç‚piŒ×ëÕbL&“úÁl6ëå´X,Zü• õ&M$L ©TêbŒv—ÔHSôžG‹aYÖ`®+³%“I- äÉd2Æ‘ý*_z‰ÕÒãè| !Šbëã³Z­•JÅxH­V ‡Ã~¿¿õâж«µ@úQ¤öÕ ÒÎË1¦µŒàÆàÚà‹çH¦g<|Â~[83–çȨÈErîÈ‘{ý½kuß¹²Ç.ï:w¦æ_LÎ=±ßþÁLyÂ;3ß” „°CÕCþÃ"I’,Ë' + …¦Â©>ƒ>À0„B!æA.I¥RÌ677õrZ,-ìÒ«x½^zYj½K_ÃápÛt´†‹yZ“ÔHuõžG+Êd2Õj5ƒéŒ³Quf³Y‹¡J/M’ÍfÇÆÆŒgì½|Q“Éd[ÿ5Òé´60“ÉLq)‰D¢õ R9zI¨º­­-µ^êsë­¡jWÚ– ©)§úÙf³ ¡r¬Vk‡ù‰r¹|éÓéc-×rc0"øâ9’éç꾇/BØW gÆò¹HÎ9r­¸Vgø­céõôâOSw3wßzøåoÿò÷ÜÌF B;T=éT’$Y–O +M…S}}€`$…BÌ9‚ \C/3cccÌÿS«ÕôrZ,-ìÒk2™´–eijš…n¥Ói›Í¦^oÍ“J¥.æÑîz½^ƒ)yïy‚Á æ÷ûÕòéßííír¹ÜU¶d2ÙÚÉ@ ÉdªÕêG¥Õ´ÚD"ÑÀóü¥yz/?ÓE³Ù¼µµÕö@éAh–ÁãÖƒj¡Fµmz¸ÔÉÍÍMZ-†>Pùm›ahÛÕ-ž¹uÒ¸-´øÖxê†(Šm1t…ò¨ûÿWÝù¯éÆ`DðÅsäÅ?DÝ®¼óðEûgA“‹å1ú‹äÜ뇮µçÊ;vùc);½ðr2ôÌ>›¿ùý惙„v®zÒK¦$I²,Ÿ(4š +§ú úÀH +…˜sAÐ ‡ÃL @À §ÅbÑ"õbxžg ¡$ÕjUûšJ¥.&Ñîz½^ƒõP]½ç)—ËzKÝÜÜì*½úý~ãò5(’â/ÍÓ{ù´ò¶ž{L&SëõL&c߀®*%hÞt:=´íj£R©\\@­V»²-­?: «ÕJ 3›Ím×ÕÿñšnlF_ƒ>À0¤R)³ÙÌ0ŒÍf«T*‘@€QƒÆ9yž7™Lé÷û#3™Œ×ëcÎaY6Nk´*ºH+Eñâp«ŽÚÜÜ4˜…ê²X,jA>9ÏG¥]V«•iÚR«Õ>- L$mPŸ]¯V«ÆÃûR>­a{{[K¥ACè9¶•öÉÓ,Ô+uc´BS'“É+‹ý8íj#›ÍjûFÑ×+«Ð žÐJhUê°Ê +…è×ñÙj¹~€QÀÏ‘LÏØgyø"„ý³pf,Ï‘Q‘‹äÜ‘#×ÚsåþÙ±ôzzá¿SwŸMÜy4~ó¡íÆüÿg6JBعê!X¯×%I’eùD¡¡ÐT8ÕgÐ8Àç£Z­ +‚0èUtA¥RE± ©”¶9»…f§5”ËåÏ0Q³ C»ú‹ 0ðŠ®åÆàºâ‹çH¦gþô·{ø"„}²pf,Ï‘Q‘‹~pGŽÜ뇮µçÊ»üÆqïÕôÂËÉÐSûíôø×&gÓ3%!ìJõ¬×ë’$ɲ|¢ÐPh*œê3èCŠ/ž#™žùã_ÿåá‹öÉ™±ƒ>À0¤øâ9’é™?ÌüÓÃ!ì“…3cyŽŒŠ\$玹Ö\«‚3üÖ±ôzzñ§©»Ï&î<¿õðËß~;ðo” „°+ÕC°^¯K’$Ëò‰BC¡©pªÏ p )¾xŽdzÆâŽyø"„}² ÊÅò¿¹Hν~èZ;p®¼c—ß8–²Ó /'CÏì³éñ›ßÙ‚÷ý%!ìVõ¬×ë’$ɲ|¢ÐPh*œê3èCŠ/ž#™žù­}ÖÃ!쇅3cyŽŒŠ\ôƒ;rä^?t­î;WöØå]ǽWSó/&ç~´ßNÛ‚)öîþ„v«zÖëuI’dY>Qh(4Nõô€!ÅÏ‘LÏ|ñ;‡/BØ gÆò¹HÎ9r¯¿w­î;WöØ¥]ÇâÎÔüó‰¹Çö[ßÛ‚÷=+¯ý%!ìVõ¬×ëÿc¯N^ÛÚŒkS(tUÞ²J)< +Ńæ;˜žloºjÇó,[–®ä ÚëÒ}·-i’æ%yžó28‰“8ñl] ÖtGôæ\Ñ–ÒâûñýŸ”R)UÓêZCk¶×Ȼ^®ýâ›ßm_õ¢J«\ÙöÊ–lǵœ‚™>7R'ÆæQ,ù)ºú.²ü*´ðãèÌãá©{‰Ûîän•ˆèºùBH)•R5­®5´f{ý8P‰¼ëè…±í+¢^TùZ®lûe‹¶ãZ™K3}n¤NâŸc뢫oÃK/ƒóÏF§gOîV‰ˆ:ÈŸ BJ©”ªiu­¡5Ûë÷ÀÀ€Jä]¯@/[gcÛWDÝUi•+Û^Ù’-ZNÁÊ\š[gFê8¾q[ÿYÙ/¾Î=¹õ ¾übr·JDÔAþ…RJ¥TM«k ­Ù^¿T"ïzz!ž:Û¾"ê®J«\ÙöÊ–lǵœ‚™>7·NÍ£xò0ºö>²ò&´¸œýaxêþXêãän•ˆ¨ƒü +!¤”J©šV×Z³½~ ¨DÞõ +ôBlí`lûŠ¨»*­reÛ+[²×r +fúÜH›G±ä§èê»Èò«ÐüóÑ™GÃ7ï~wûbr·JDÔAþ…RJ¥TM«k ­Ù^¿T"ïzz!´øblûŠ¨‹*­reÛ/[´œ‚•¹4ÓçFê8¾ñ9¶þ!ºú6¼ô28÷ltúáðÔýÉÝ*QgùBH)•R5­®5´f{ý8P‰¼ëè…àücÛWD]Ti•+Û^Ù’-ZNÁÊ\š[gFê8¾q[;ˆ¬ì‡_瞌Üz]z>±[%"ê,‚B)¥Rª¦Õµ†Öl¯ß*‘w½½0ô×m_uQ¥U®l{eK¶ãZNÁÊ\˜[§ÆæQ2ýhèæݱÍ;U"¢Žó'(„R*¥jZ]khÍöú=p0 y×+Ð ?ûù/í\…¨ÓÊ~V¶ô5§he +fúÂØ:‹§ŽcÉÃèÚAde?´øSpîéÈô÷C7î|w»0±S%"ê8‚B)¥Rª¦Õµ†Öl¯ß*‘w½=b¤/ì\…èú•[eK–—S´×ÌÌô…‘:oÅ’‡Ñµƒðò›ÐÂÞèì“á[†nޛةu“?A!„”R)UÓêZCk¶×Ȼ^‰®´s¢ëWn•-Y^NÑÊÌÌ¥™>7R§ñÍ£Xò0ºú>¼ü:´°7:óxxê~dþÙÄN•ˆ¨›ü +!¤”J©šV×Z³½~ ¨DÞõ +ôHp]¿r«lÉòrŠV¦`f.­3#ußø[ÿY}^zœ>2ýhèæ=3ù~|§JDÔMþ…RJ¥TM«k ­Ù^¿T"ïzzäù—«]¿r«lÉòrŠV¦`¦/Œ­³xê8¾ñ9ºþ!²²^|œ{:2ýpèÆþ˜9ß©u“?A!„”R)UÓêZCk¶×Ȼ^ùvüïv®BtýÊ_Ë–,?Ç533}alÅ7bÉÃèÚAde?´øbtîéÈ­C7î$òWã;U"¢nò'(„R*¥jZ]khÍöú=p0 y×+Ð#¿Ž­Ù¹ +Ñ5+·Ê–,/§h9®™)˜é #uß<Š%£«ïÃ˯C {£³? Oý78óp|§JDÔeþ…RJ¥TM«k ­Ù^¿Žÿ±W'»mdEù½Èª{ @€ )ŽÅ*iÄ¥uȲ%SÖL‰b „ô&«|B6A۱ݶcGí ò¨¶Õ’,Jbq?è=<@JÜÒ-Ë{pÿá0¡ì²ç +Èo~›É”ZD_XsX±aù¹uË©™Î¹Y8MçOŒ­ÃTîcbý]|e/ºô,²ø8</¹úböV›ˆè+LP!¥TJu´®ÖÓú£{à`BÙeÏ/œL©Eô…5‡–Ÿ[·œšéœ§wªFþØØ:Lm~H¬½¯ìE—žFMÏßµ¶ögoµ‰ˆ¾²Á…RJ¥TGëj=­?Ú¸&”]öüBÁIç?eJ-¢/©9È*6.rë–S3 g骑?Nå’û‰µ7±å—ÑìndááôÕ;ßOfoµ‰ˆ¾²Á…RJ¥TGëj=­?Ú¸&”]öüBÁI¬¿Ë”ZD_Ró¢bÃòsë–ë™NÍ,œ¥wªÆöQ*wÜد¾ŽÝ|>“Ý _05wÛ.7foµ‰ˆ¾²Á…RJ¥TGëj=­?Ú¸&”]öüBÁ‰fw3¥Ñ¥k+6,?·n¹žéœ›…ÓtþÄØ>Jå’ëï㫯b7ŸÏÜx¾v?<oöV›ˆèëLP!¥TJu´®ÖÓú£{à`BÙeÏ/œ?þõß™R‹èÒ5‡–Ÿ[·œšéœ›…Ótþ“±u˜Ê}L¬¿‹¯ìE—žE‡çïŲOìJ›ˆ(€ô…RJ¥TGëj=­?Ú¸&”]öüBÁùýì?3¥Ñ¥k+6,?·n95Ó9OïTü±±u˜ÚüX{_Ù‹fŠ,<šž¿›ZyaWÚDD¤'(„R*¥:ZWëiýÑÆ=p0¡ì²ç +Îw3ÙL©Et隃¬bã"·n95³p–Þ©ùãTî ¹±ŸX{[~ÍîFN_½“ÙþhWÚDD¤'(„R*¥:ZWëiýÑÆ=p0¡ì²ç +Î7߆3¥Ñ¥k²Š Ë­[®g:5³p–Þ©ÛG©ÜArc?¾ú:vóùLv7|ýÁÔÜí?¹U»Ò&" + =A!„”R)ÕѺZOë6î€ e—=¿P ¬b=Sj]¢æ°bÃòsë–ë™NÍ,œ¥ó'ÆöQ*w\_}»ù|æÆ“ðµûSûáÊß[v¥MD@z‚B)¥Rª£uµžÖmÜÊ.{~¡@ÛÇ™R‹è5‡–Ÿ[·œšéœ›…ÓtþÄØ:Lå>&ÖßÅWö¢KÏ"‹Ãó÷"×´+m"¢`ÒBH)•R­«õ´þhã8˜PvÙó *¾ú:Sj]¢æ°bÃòsë–S3óôN5ÿdl¦6?$ÖÞÆWö¢KO# ¦çïÆ–þgWÚDDÁ¤'(„R*¥:ZWëiýÑÆ=p0¡ì²ç +Tdá¿™R‹è5‡–Ÿ[·œšéœ§wªFþØØú%¹ùsbíMlùe4»Yx8}õ?Æú+»Ò&" +&=A!„”R)ÕѺZOë6î€ e—=¿P þð—eJ-¢KÔd¹žåÔÌÂYz§jl¥rÉýÄÚ›Øò‹™ìnäúƒ©¹Û™ü]i“ž BJ©”êh]­§õG÷ÀÀ„²Ëž_(P¿ûó?2¥Ñ%j^TlX~nÝr=Ó©™…³tþÄØ>Jå’ûñÕ×±›Ïgn< _ûqjîö÷ÅS»Ò&" +&=A!„”R)ÕѺZOë6î€ e—=¿P ¾›ÉfJ-¢_«9¬Ø°üܺåÔLçÜ,œ¦ó'ÆöQ*w\_}»ù|fñqøÚýé¹®TÚDDA5˜ BJ©”êh]­§õG÷ÀÀ„²Ëž_(Pß|ΔZD¿VsX±aù¹uË©™Î¹Y8Mç?[‡©Í‰õwñ•½èÒÓÈâãéù{3‹®TÚDDA5˜ BJ©”êh]­§õG÷ÀÀ„²Ëž_(hV±ž)µˆ>[sX±aù¹uË©™Îyz§jä­ÃÔæ‡ÄÚÛøÊ^4ûSdáÑôüÝøò³+•6QP &(„R*¥:ZWëiýÑÆ=p0¡ì²ç +š±}œ)µˆ>[sX±aù¹uË©™…³ôNÕÈ[¿$7N¬½‰-¿Œfw# §¯ÞIo¾»RiÕ`‚B)¥Rª£uµžÖmÜÊ.{~¡ ÅVö2¥Ñgk²Š‹\Ïtjfá,½S5¶R¹ƒäÆ~bíMlùÅLv7|ýÁÔÜm+p¥Ò&" +ªÁ…RJ¥TGëj=­?ÚÿÙ«“Ý6² +ÃÜÈ*É®“U‚,¤-‰¢8UN,È&ƒ-K²­y&YE +È6È&Ž‡ö n˳ÛvË£lËš¨"éðîÅå¤tÉ…wõ" A.þÿ#àôúÀ@ŸJ»ž_¨Ó“ëÇ/| úÁ*GÊ)¿|)•÷,çвÌ쮑ÙN®¾I,¿Œ-|}™ºž¼98vù‹üÞÉ¿V‰ˆ:Uë…RJ¥TM«k ­¬×úTÚõüBöÛ?þãø…DÁUÚÊ)¿|)•÷,§hÙûfv×Èl'Wß$–^ÄžFgFÎo„'o Ž]ý²|Ò­uªÖ +!¤”J©šV×Z3X¯ô©´ëù…:íW–}ü¢à*í +å”_¾”r-§hÙûfvÇX{—\ÝŠ/=Í?™¹?|~#pЧҮçê´Ÿþ"|ü¢à*í +å”_¾”r-§hæöÌ쎱ö.¹ò:¾ø,6ÿddúÞð¹o†&®EÎÞ<éV‰ˆ:Xë…RJ¥TM«k ­¬×úTÚõüB]`äöR… +Q@åvù’åçx–]4í#»kd¶“«oâË/c ›#³"SwÃg×Ï\‰Nß>éV‰ˆ:Xë…RJ¥TM«k ­¬×úTÚõüB]š*Tˆ*·Ë—,?dz좙Û7²»Ff;±²_z[øndöQdêNxr}pìJ|îá¨[%"ê`­BH)•R5­®5´f°^8èSi×ó uÁàøT¡BP¹••/åšvÑÌíÙÝäÚvbe+¾ô"6ÿtdæáðùÛáÉ›c—“KÏFÝ*Qk BJ©”ªiu­¡5ƒõúÀ@ŸJ»ž_¨ ~ýû¿¥ +¢€ÊGåK–ŸãYΡiÍܾ‘ÙI®m'V¶â‹Ï£óOFf Ÿßš¸>0vÉZ{3êV‰ˆ:Xë…RJ¥TM«k ­¬×úTÚõüB]ðÙçI*DßW¹]¾dù9žåšö™Û32;ɵw‰•×ñÅçÑù'#3†ÏÝš¸>púâÎî¨[%"ê`­BH)•R5­®5´f°^8èSi×ó uÁ~ü³T¡Bô}•ÛåK–ŸãYvÑ´ÌÜž‘yŸ\}›X~_|{™¾7|îÖÐøµc§.žø²<êV‰ˆ:Xë…RJ¥TM«k ­¬×úTÚõüBÝ‘XÙJ*DŸTn—/Y~ŽgÙEÓ>0²»Fæ}rõmbùUlq3:÷82}7|öëÁñ¯Æ.ºU"¢ÎÖ:A!„”R)UÓêZCkëõ€>•v=¿PwDfî§ +¢O*·Ë—,?dzì¢iÙ]#³\}_~[ØŒÎ}™º>»>xæJxòƨ[%"êl­BH)•R5­®5´f°^8èSi×ó uÇçúgªP!ú¤r»|Éòs<Ë.š¹}#»kd¶+[ñ¥±…Í‘ÙG‘©;áÉõÁ3W¢S£n•ˆ¨³µNP!¥TJÕ´ºÖКÁz}à O¥]Ï/Ô¿4³©B…è“Ê­¬|é(dz좙Û7²»ÉµíÄÊV|éElþéÈìÃÈÔðäͱ˱Ùû£n•ˆ¨³µNP!¥TJÕ´ºÖКÁz}à O¥]Ï/Ô?ùùPªP!ú¤òQù’ÕÊ94í¢™Û72;ɵíÄÊV|éElþéÈÌÃáóC7Æ.%—žŽºU"¢ÎÖ:A!„”R)UÓêZCkëõ€>•v=¿Pטv1U¨ýoå£ò%ËÏñ,çÐ߉™Û72;ɵíÄÊV|ñytþÉÈ̃áóC×NÿÛ\{=êV‰ˆ:[ë…RJ¥TM«k ­¬×úTÚõüB][ÜL*DUn—/Y~Žg9‡¦}`æöŒÌNrí]båu|ñYtþÉÈôýás·†&®œ¾xÜÞ9áV‰ˆ:[ë…RJ¥TM«k ­¬×úTÚõüB]38~#U¨}T¹]¾dù9žeMûÀÌí™÷ÉÕ·‰åWñÅgѹǑé{ásß _;vêâï.x'Ü*Qgk BJ©”ªiu­¡5ƒõúÀ@ŸJ»ž_¨k~󇿧 +¢*·Ë—,?dzì¢iÙ]#ó>¹ú6±ü*¶¸{™¾>ûõàøWÇNýë„[%"úÁþó”výBH)•R5­®5´f°^8èSi×ó uÍgŸÿ9U¨}T¹]¾dù9žeMûÀÈî™íäê›øòËØÂftîÛÈÔÝðÙõÁ3W‡Æ¯žp«Dô_öê幩óã¸6é2».›U±oºœ‹$ËX3íLBƒ± ¾`[Ò¹è6%Óé"aÛEBZ(C’@('njdY·£s‘Äÿ€eɲ,Ѿ:’@€m ƒ*žï|6ýÞ³}@—~ƒœÁ$‘Ëåòù|¡P(êmé•ôÊ;×êG!„B!„P›æ Ê„¡iýâ—ï±¢Ð@­†àe†“h.A¹£”+l™¿gš]2N/ö¸Õ;~£ûØ•®#ö\ fàÝ“n6g0Iär¹|>_(6õŠÅâÖÖVI¯¼s­p„B!„BµiΠLš™e~…5€:µFP‚—N¢=qÊ¥\aóܲivÉ8ý}߉›½ã×»G/w _è»:ÌÀ; ýó8©Ÿ_(6õŠz[zåkõ€#„B!„B¨MseÂÐÌ>øèϬ¨Ô©‚¼ÌðIš“hOœrE, aóܲivÉ8u·oòfÏñ¯÷ü½sø¯}7x[¤_‘ßzU>íµé‡‘Ífs¹ÜÆÆƦ^QoK¯T*•w¨ÕŽB!„B¡6Í” C3{ßæcE @§Ö +Cð2Ã'iN¢=qʱ,„Ís˦™û§îôM~×3öõ¾‘K‡ÿbfå¢u‘O„õ¬î‚Ô£ä ä;Õxã Mî7¿ýœ5VTk…!x™á$šKPî(å +[æCæS?§ûOþ«wüF÷±«]GþÖqèK+w2ÐfÒ»ð§žçÓ¨v¯R'ÛŪd•M”lBB·ñV>f墺H…'ÂzVuaÖ½¢ U1®Ý³2äT}ôûøÓqøò±OÕ:­æOZË÷ÞV†&÷«>fE €ÕAa^f8‰æ”;J¹Â–ù{¦Sÿ6N/ö¸Õ;~£ûØ•®#:~a$G í!½‹êy>­Nµ{•:Ù.V% ›(Ù„„.nããV>f墺ÁzVuaÖ½¢ 1.âÞ72$®8øøiôŒ2ö©6}öþ몎`¹Þãíú/B!„B!„Ðëä Ê„¡ù1‚ÌŠ¼óÔAa^f8‰öÄ)w”r…Ís˦Ù%ãôb߉[½ã×»G¯t _è8ø…#€6ÞÉ€?õ<ŸV§Ú½ŠN¶‹UIÂ&J6!QÁÇ +³rQ+!XÏj…{Eb\!Ö}oH\ý0;øIbôŒ2õùýé³oFuK¥R¹ÞãíjõV#„B!„Bh/å Ê„¡ùgYQƒwžZ#( ÁË 'Ñž8åŽR®°ynÙ4»dœþ¾ïÄÍÞñëÝ£—;‡ÏwþÒÈ@ë¤w2àO=ϧթv¯¢“íbUÒ&J6!QÁÇ +³rQ+±z"¬g•õ„Y÷ +ë1®Ð·ò»@äÀéÄÈeâ³ôÔÙûMRÁR©Tnèñ µz«B!„B!´—reÂÐü:cE Þyj#(|’á$Ú§ÜQËBØ<·lš]2NÝ훼Ùsü›îÑËÃ细Ï;h…ô¶ü©çù´:ÕîUt²]$’„M”lBÂ&Äm|ÜÊǬ\ÔÊE¬žëYeÝ+º㺷_ Œ ÿ19ñYzêìýÿê–ôÊ =~¡VÏ5B!„B!„öLΠLšß¯i7+jðÎS«A©à“4'Ñž8åþ{õöÛÔaÀqÜÏ{™´‡=n/Ó¤Ap='¾œ«S°ÔJknICHb®ÏÍ· ˜´­…<ìÄ*Ú²e*µQ( |ËqÎñ9Ç×Èö±­Ž“Jnò°u`cüûèû'ü¤_)+ú£YßƳ¹ÈwÞÕžswÝ‹ÿ˜9ý¹ûì—óéBh´Õ-”ª •¬îWa¦“ÁÊvº#iN*#ª´P¢ÅŽâw(¾HÅ Tðœ»ç^Úš9}Û^‹ãûPªú¯«R²ÆþP¢ú2Ù´c$ƒ‘tF*Ó¢F *Å—(^¡â;$W cyâ“,Ÿ?yµ¼v½ù¶68ÁV«Õn·;˲ºŽž£?lܧ à?ìÕ»o‡ÇqÎ]Š.ÝÚ.E=-š¤xO:F88h%D®•J¦*ƒ0É{“Ñ!ÑFZ²)^ä´€œE^d JPËfÄ3)¾îøüƒîE=Þ¹E(¸i',|ÿ‡o¼ ¹nÐ/¢Jn¡¹L—¤‘nb“ê_r•hF¤ŠáäEèÑw·÷^®í¾Xýô›åû]Ü|M½¾“ï!„þ·º×ËuÜb~Ù¶W+¦è¬¢±²[“‘êŒX£…+Z¨Ð|™âT2sI¦‹Š¥ûŸi8ìÿçOÐ4MËcÛ¶ã8ÏÐ3š4íiÀ ˆ4·À úÉÏ~IÉ-4—éï’4ÒMl’Bà«Q®ͨ‘T1œ¼=úîöÞ˵Ý«Ÿ~³|ÿëÅͧ$§ÞÉ÷Bÿ­î{Êub~Ù¶W+¦è¬¢±²[“‘êŒXcÄ*-Th¾Lq*™¹$ÓÅ»’ú»Ïõ½Ãþ<äOÐ4MËcÛ¶ã8ÏÐ3š4íiÀ ˆ4·ÀÍŠ<.Rr Í_ú»$t›¤P'øj”«D3j$U '/B¾ î­í¾XÝ~¾|ÿëÅͧ$§ÞÉ÷B?Z÷z¹NìßeÛ±l+¦è¬¢±²[“‘êŒTcÄ*-Th¾Lq*•)‘éâGÊÛOZ{‡ýùÉŸ é±,˶mÇqž¡g4iÚÓ€/hn›µòào”ÜBó—îGJÚ8±I +u‚¯F¹J4£FRÅpò"ôèÛàÞÙÚî‹ÕíçË[Ï7Ÿ’œz'ßCý‡º×ËuÜb~Ùö8Ewce•›¬Ü`¤#ÖháŠæ˧R™™.Æ„Òƒ'­½Ãþ¼åOÐ0 Ó4-˲mÛqœgèMšö´`Ä š[àfýú£Ï)¹…æ/Ý”´qb“ê_r•õ´IÃÉ‹Ðþypïlm÷Åêöóå­g‹›_‘œz'ßC½¯îõr˜_¶íÕŠ):«h¬ìÖ`¤:#ÖháŠ*ÿ–âJdú{*óýoþXÛ;ìÏgþ Ã0MÓ²,Û¶Çx†žÑ¤iOf@¼ ¹nÖOEPr Í_º)iãÄ)Ô ¾å*ëi5’*†“¡ýó`âlm÷tuûùòÖ³ÅͯH¾Ë÷B“u¯—븱~Ùö8Eg‘Ýš´T§Å%\QB…âË$W"2—ÑÔ›¸òvç/ݽÃþÜæOÐ0 Ó4-˲mÛqœgèMšö´`Ä š[àÆE¹·”ÜBs–îGJÚ8±A +u‚¯F¹ÊzZ¤ŠáäEhÿ<˜8[Û=]Ý~¾¼õla㈖±|!ôƒº×ËuX¿lÛ«Å*:#kŒÜdä-Õh±J Š/“œJd.‰ô†¿üäOZâ°?çù4 Ã4M˲lÛvgàzF“¦=m˜ñ‚æ¸qÁ½—”ÜBs–îGJÚ8±A +u‚¯F¹ÊzZ¤Šáä«Ðþy0q¶¶{º²}²´u¼°qDKX¾‡úW݉r7Ö/ۧ茢1²[“–ê´X£„+J¨œJfJDºH¤_\¨>ü¢—8è#‚†a˜¦iY–mÛŽã zoþ Ã0MÓ²,Û¶Çx†žÑ¤iOf@¼ ¹¦áƒ{_Rr ÍSº)iãÄ!Ô ¾Í”×Ójäq1œüGhÿ<˜8»µsºòàdiëxa㈖±|¡¹¬;Q®ãÆúeÛl¶Å*:£hŒÜdä-Õh±J ’Kr%"]Œ¦^\¨><è£ÉŸ a¦iZ–eÛ¶ã8ÏÐóOöê¦E‘Āø—esÈ9ì%DDŒ/õÞ$‹‡ÀFÒ=q6öfVi½¨ a³a¦sÉÑ›‡€äâ¥ÉtO·ÛcÛc«U¥¶¨ÞlÙÒ‚€sH6³…íÿÇóžÕ6¿§ ; ÕPÝ~xòI+:Ú§´u²J¹IJ“∬ aäû‰b/^8å»ÑÜY$Û gÚ¡£V0ÝdäñÁÉ=Bû×|«úŒûOµ)WÓ¹ªÆ**«LyÄHw´øŽ® ¨rŸ®IþŠ.Ÿ~£?ÿëý÷¼ †aš¦eY¶m;Ž³ÜxØXmó{Ú°R Õ-à¢|C+:Ú›´u²J¹IJ“∬ aäû‰b/^8å»ÑÜY$Û gÚ¡ÃV0ÝdäñÁÉ=BûÔüýê3Ϋ6]WÕتÊ*nF1ÒoéÊ€*¿%ùQºü¹týÛóç§ ô?ó&h†iš–eÙ¶í8ÎrãacµÍïiÀH5T·€O¿ù;­èhoÒÖÉ*å&M(iLŠ#²2$„A’ï'Š½xá<–ïFsg‘l'œi‡[Át“oNîÚ›æïWŸq^µ)WÓ¹ªÆ**«LyÄÈw´øŽo©rŸ®IþŠ,½ù¢1|~º@ß3o‚†a˜¦iY–mÛŽã,76VÛüž6ì€TCu øäÇIžVt´7iëd•r“&”4&ÅY É÷Å^¼pËw£¹³H¶δC‡­`ºI ýƒ“{„ö£ùVõ™çU›r5«j¬¢²Ê„‘GŒtG‹ïèÊ€*¿%ùo‰Ò-\>ýZ{~º@ß?o‚†a˜¦iY–mÛŽã,76VÛüž6ì€TCu øä“OŸPò„Vt´iëd•r“&”4&ÅY É÷Å^¼pËw£¹³H¶δC‡­`ºI ýƒ“{„ö ùVõ™çV›®«jlUe·1#ß1Òo©Ê %¼%ùQºü…|ýå‹ùñéý_y4 Ã4M˲lÛvg¹ñ°±Úæ÷´`¤ª[À??Ëÿ“Vt´iëd•r“&”4&ÅY É÷Å^¼pËw£¹³H¶δC‡­`ºI ýƒ“{„{ó­ê3Ϋ6]WÕتÊ*V3ò-¾£Å[ªÜ'…k’¿"K_üat|º@7AÃ0LÓ´,˶mÇq–«m~Ov@ª¡ºüóÓ_þVt´iëd•r“&”4&ÅY É÷Å^¼pËw£¹³H¶δC‡­`ºI ýƒ“{„uó­ê3Ϋ6åj:WÕXEe• #éŽßÑ•U~Kòߥ+¶|õôÏúñé}XÞ Ã0MÓ²,Û¶ÇYnGè±4Ûª6e½ªú:Ee” #i鎇Te@•oHþš(]%Á–/Ÿýe–}¹@1o‚ÆwìÕÛoÛæÆqÝ Ã®†¡×CoŠvª£*’-Dj[mëR8€»È±çL…,‹¢HJ4ônÎÕtÀ’ô"I18Ù0gÀT ±+V¬D²t˜þ ž$a4i à}cð|ðÅûü^à1 Ó4-˲mÛqœ‘gì™M{´`¤kš[hÚÞÿä¯I©‹=ݵó…*½¡ø3²Ø! +¯;Í•ÜÑröil«ÝØdö–Öî‡WïÄoÕSÕB Q?P¥Çú•»lYg%‘TFT’‚œ,Ñ|›*¾¢ +'äÎ1±ýüçüñúŸ·‡èûÍAÃ0LÓ´,˶mÇqFž±g4íÑ€9®in¡i{罓R-zº-jç +]zCñgd±C^%vš+¹£åìÓØVýêæ~$³·´v?¼z'~«žªšÿú*=Ö¯ÜeË:+iŒ¤2¢’ädé”æÛ×" /Éü bûù/JÍõÝÿݼ=Dß{þ†aš¦eY¶m;Ž3òŒ=“ i6ÌtMs Í’{•”ºh¡ÓýhQ;OPèÒŠ?#‹¢ð*±Ó\É5–³Oc[õ«›ûe]Y{^½³üÇzª:@hÎëªôX¿r—-묤1’ʈJR“¥SšoS\‹,¼$ó/ˆíç¿OnÞ¢·”?‚†a˜¦iY–mÛŽãŒûúÃë_}píˤ¤¤ª„æ¡~ Ju+wÏ“4FRQI +r²tJómŠk‘…&‘o$r‡¿^fv‡èòóGÐ0 Ó4-˲mÛqœ‘gì™M{´`¤kš[hfüè'?¥…u´ˆi *åVR(^&ù3’ë…V"ÿr%×Xþü0vë›èæ>Zÿç•Ï¾þðúW?»ö·¤ §ª„f¾~ Jõ+wYIc$•÷3'K§4ߦ¸YhùF"w˜â^dv‡h*ù#h†iš–eÙ¶í8ÎÈ3öL‚¦=Úÿg¯N–›88ŒëBqäæÂ)Þ¶¥ÞÔ2sQU*,ÆØÆ ¶võ"ÉÍ!•B9O† “Pd Ì° Ûx•-[[·£êMRM»å*—ž@-ÕÿWß;|Ð|)ÙÌa'Îù׌XFý˜|’ Ñf|‰æ +—§¢‡ddŸíº›®¥µ±».Þþ¯sîÅÈô¯C“.ÿŽd&–²wµŽ’Uo»DÅ—ٸĊ%Pðð9†; £{Td‡ m5ods6ýåæuÔ•ÚTEUUMÓt]7 £aiZZº=mè¾”læ°“ó—RŒXFý˜|’ Ñf|‰æ +—§¢‡ddŸíº›®¥µ±»Fo¿qν™þuhòñÀ•Tx{bù!{W;-Yõ¶KT¼q™K¬XòŸg¸:ºGEvÉÐ&X÷„7¦ï×f¨£nÕž ¢(ªªjš¦ëºa KÓÒêÔíi@ð¥d3‡œ9{ŽJŒXF}—|’ Ñf|‰æ +—§b‡ddŸíº›®¥µ±»Fo¿qν™ù×Ðäã+Üþµ‰å#„l\í´dÕÛ.Qñ&Êl\2óŸg¸:ºGEv©ÐX§CkSßWgÓuÔÅÚTEUUMÓt]7 £aiZZº=mè¾”læ°çükF,£¾K>Ih3¾DsŠËS±C2š%Âwp˵´6vïãè7ι—#3φ®ÿsàʃñ»ÿ›X>BÈ®ÕNKVͼf‰Š7QöÆe6.±bÑÃçíS‘]*´EÖÉÀêÔ÷ÕÙtu·öEQUUÓ4]× ÃhXš–V§nOz€/%›9læü¥#–Qß%Ÿ$H´_¢ù"Åå©Ø!ÍáŒ;¸åò¯ß[½óÆ9÷rdæÙÐõŸ®þ4¾ðvbù![Vë(Yõš%*ÞDÙ—ٸĊEŸg¸C&–¥#*´E?þÕÉïʳé:êzí *Š¢ªª¦iº®†Ñ°4-­NÝž6ô_J6sØÌ™³çh¡ÄˆeÔ_É' mÆ—h¾Hq*–#£Y"œq·]þõñ{+£wÞ:oý{dæÙÐõŸ®þtñÖËGÙ¯ZGɪ×,Q9..³q‰K¡Àp‡L,KG3Tx› ~&«—ÿRšMבjOPQUU5MÓuÝ0Œ†¥iiuêö´ øR²™Ã~œó¯±Œú.ù8A¢ÍøÍ)®@Ård4K„÷ÜÁm—}üÞÊè·Î[¯Ffšúeàêß7ŸX>BÈ~ÕNKV½ío\fã+–¾ñdðÚ£Ë?z“5„lSõ´D…5‹—%XòE†ÏÓÜݧÂ;dpÓí_s-~üúÛÜLºŽìV{‚Š¢¨ªªiš®ë†a4,MK«S·§ =À—’Ͷtæì92–gÄ2ê£ä“‰6ãK4W b9*zHFöˆÐŽ+°1¾¸:¶ðþâüë 7¾ñtðÚ£¯¾ù«G”½ÉB6¨zZ¢Â¶‹—YQòˆ%Pdø<ÍÐÑ}*’!C[D`ݽ¸r‰ÛšNב kOPQUU5MÓuÝ0Œ†¥iiuêö´ øR²™Ã®œs/±Œú(ù$A¢ÍøÍ(.OEÉÈÚq6ÆWÇÞ_¼ýŸ 7ÿ¾ñtpò_]þ‘Žf½ÉBÝ®ÚQ¢ÂšÅËl\öˆ’G(2|žáéX–ŠdÈÐXw/}¢«7î™Nב kOPQUU5MÓuÝ0Œ†¥iiuêö´þÏ^½õ´q a÷MÕËÞG½ÞÂÑž£ÇÛ›ZÕæD€lãñlW²V­®w«d·»I·»Ù4j¢´›6pX €ãÃÌØÖúÍɶv2F²ü°=?ý¿ÁûJx@8«:ùúÕ§dŒ•5tRÏ’ÆI,3B‘ +4Ÿ§92~@Dwý‘Íñ…·£s¿ŒÌ¾š~:8ñxàúC2¶ÊÔêuÕNé +ç”Ò¸”ÊÉJP.³bN™ä18¤VÞ;OK,o‘µ[_kÓ«uÔŸµGP×uÃ0LÓ´,˶톫éjuëõh€„³ª“¯_}ôñ'T²Àʺ(©gI +ã$–¡H šÏS‰#2~@DwK[ã k£sÿ™}14ýtpâñÀõ‡ÅµP¦†PO«vJW¸v)“• \JEV8e„†ÏÑ+ûTl—XÞ +DÖ¾ø*?½ZG}[{u]7 Ã4M˲lÛn¸š®V·^6x@8«:ùúØÈìKVÖÐEI=KR'±ÌEZ(Ð|žJ‘ñ"ºXÚ_X›{=2ûbhúéàÄãFï½ +ejõ®j§t…k—Ò8Y :I%V,0 Ãщ*¶KF·‘õÏ’{Ó«uÔϵGP×uÃ0LÓ´,˶톫éjuëõh€„³ª“¯}JÆXYC%õ,IaœÄ2#i¡@'óLƈØ^`ik|q}ìþë‘Ù—Cwž Þ~2pãÑðg¡L ¡Uí*]áœR—Rƒ²”J¬X`…<“<¦‡T|ŒnKttsòÁÿ¦V먟k ®ë†a˜¦iY–mÛ WÓÕêÖëÑgU'_ûèãOh>Ïʺ©gI +ã$–±D :™§øcr刽,oûßÝÿudöåÐgƒ·¿¸ù—ÁÛOB™B=ªÚ)]áœRÚ‡d%(—ƒR‘N™ä18¤VÞ“±biƒˆ¬ÝüZ›Z­£>¯=‚º®†aš¦eY¶m7\MW«[¯G< œU|ýmhæGVÖÐ…H=KR'±Ìˆ%Z(ÒÉSŠ?&WrDì}`yÛ¿ønìþ¯#_¾rN?8ù›¸þ(”©!Ô‹ªÒ®]Jãd%(—ƒR‰ ŒpÂð9zeŸŠíË[ÈÚ_å§Vë¨ÿk ®ë†a˜¦iY–mÛ WÓÕêÖëÑgU'_»äŸge ]”ÔI +ã$–±D E:yJñÇäJŽˆ½,ÿ×y76ÿÛÈ—¯†gž_üáÊÍï~÷‡?qéJ(SCèÜ«vJWœ?äR—Rƒ²”J¬X`…<ÃщC*¾GF·‘õßó»S«uä‰Ú#¨ëºa¦iZ–eÛvÃÕtµºõz´ÀÂYÕÉ×÷h>Ïʺ©íIùX¢…"<¥ør%GÆ÷ÑäÝØüo£÷^ Ï<¿:õÕ[ß]¾ögVȇ25„ηj§t…sJi\Jåd%(—Y±À +§Lò˜NRñ=2ºM,mKëßT§VëȵGP×uÃ0LÓ´,˶톫éjuëõh€„³ª“¯ï ÍüÈʺ©gI +ã$–¡H'O)þ„JäÈø~ ºãlŒÏ¿½÷óðÌó«Sÿ¼rëo—¯}KÆöB™BçXµSºÂµKiœ¬årP*±Â)#œ0|Ž^Ù'c;Äòf`ñíçé£ÉÕ:òJíÔuÝ0 Ó4-˲m»ájºZÝz=Úàá¬êäë{—ü󬬡 ‘z–¤0Nb™Š´P ù<•È‘ñ}"ºãlŽÏ¿ûeøîOW§þueâï—¯}ˆ¼ ejcÕNé +ç”Ò¸””• TbÅ#œ0ü8¤b»ÄòV ²ÎD7&WëÈCµGP×uÃ0LÓ´,˶톫éjuëõh€„³ª“Ï h>ÏÊò~êY’Â8‰eF(ÒBÁ¹/•È‘ñ}"ºãlŽ/¼ûeøîOCÓO'\86÷s(SC輪vJW8§”Æ¥TNV‚r™ ¬pÊ$éÄ!ß#£ÛÄÒ†áÍõ?*“«uä¡Ú#¨ëºa¦iZ–eÛvÃÕtµºõz´ÀÂYÕÉçÃwŸ³²†¼Ÿz–¤0Nb™Š´P ù<•8"ãDt7°´5¾°66÷zdöÅÐôÓÁ‰Ç7Ì<ejKÕNé +×.¥q²”ËA©ÄŠF8aø½²OÆvˆåÍÀâÛÏ„½Éuä­Ú#¨ëºa¦iZ–eÛvÃÕtµºõz´ÀÂYÕÉç—üó¬¬!吏%)Œ“Xf„"-èdžJ‘ñ"ºXÚ_X›{=2ûbèοo?¸ñèêíïC™BçRµSºÂ9¥4.¥e%(•X±À' D'©Ø.±¼ˆ¬“‹o&¾©N>¨#oÕA]× Ã0MÓ²,Û¶®¦«Õ­×£ ΪN> VrŒ¤þŸ½:émã<À8ÎCä˜Kµo$gãP鉅mY½¨²µsçpH +‘¤kÓ8ub$nlÄqRÃN½H•eɲdÑ"ÅefH +åš$: +x·@¼ÆóÃÿ#<ÀƒO>-!±VB™JL¼ÀÄòtô +¸ƒo]ËÛÎ…ÍÑÙgÃ3¯?ðßë»|§oâÎøÊ1Bç_í¬tÕÛ.Uñ&e>)ñbÉ#¸xŽf™ðÜ¡–·\ 뾕üÕµ:"®ö ªªªiš®ë†a˜¦Ù°5m­NÝ>m €/£X9Ñsé6'*ˆüä“k%”Y¡ÄÄ‹L숎Rá¬;¸çZÞv.lŽÎ>™y2tãçÿ?û.Ûsá+oº:¾rŒÐ9W;+]µVçMU¼I™·ËžD‘ò\ì=yG‡v©Àk÷âÚò¯Õ‰µOPUUMÓt]7 Ã4͆­ikuêöi|ÅÊAˆO>ëãD‘Ÿ|RBbÛ %&^dbGtô +gÝÁ=×òŽsqstîÅÈÌ“¡ü?öM~×sñïáh|å¡ó¬vVºêµJU¼)Å›”ù¤äI­rñÍ2á=:¸ã^Út-¼¼ô¥ì_«#kŸ ªªš¦éºn†iš [ÓÖêÔíÓø2Š•ƒ£³Ï9QA„'·cÒIB™ŠL숎æ¨p– +í»oœ‹›cs/Gn>š~4põ~ßäÝž‹_Ó¡½ñ•c„γÚÿó¦«'¥*Þ¤Ì'%^,y„ϱÑ,Ù§ƒo¨å-÷âÆã{þµ:"´ö ªªªiš®ë†a˜¦Ù°5m­NÝ>m €/£X9Èñ9'p¢‚O>-!±VB™ŠL숉æéH– +í»oœK[cóë#7ŸMÿ2xíAßäÝžK·Ý‹›ã+Ç[µ³ÒU¯UªâM)|RæŲ'Qä„<;d£Lè-Øv/n¸×ý«ÿõ¯Õ¡µOPUUMÓt]7 Ã4͆­ikuêöi|ÅÊA:šçD‘œ|ZBb­„2+™x‰æéH– +í»»Î¥­±ùõ‘[¿ Oÿ:xíAÿ•ï{'¾½ùd|å¡s«vZºêm—ªx“2Ÿ”x±ä +\<ÇF³LxîPK¯\ /ÿô—¢­ŽÈ­}‚ªªjš¦ëºa¦i6lM[«S·OàË(V¢ô^þ–Dròi ‰µʬPdâ&š§#ï©ð;w`×µôzl~côÖ¿‡ÿü¯Ák?õOýÐ;ñÿ=oº†ÐùT=+Uá­’ +Ÿ”=¢äI”8¡ÀÅsl4Ë„÷éà÷ò–ka ½žZ«#¢kŸ ªªš¦éºn†iš [ÓÖêÔíÓø2Š•ƒ(Ÿ|Öˉ +"9ù´„ÄZ eV(2ñËÓ‘÷Tø;°ëZz=6¿1:ûlxæñàõŸú§îõNÜé¸íM×:Ÿª§¥*|»¤Ì‹’G,sB‹çÙØ!9 Co©À¶kñ?Îù—¾T¦VëˆèÚ'¨ªª¦iº®†ašfÃÖ´µ:uû´€¾Œbå ÍèÜ:'*ˆØäÓk%”Y¡ÄÄ L,OG©ð;øÖµ¼í\Ø}><óxðúÃÿ½¾Ëwz.üK”¼éBºêY© +o•TxQòˆeO¢ÄÅØXŽ‰Ðá=*¸ã^zåšùE|ojµŽH¯}‚ªªjš¦ëºa¦i6lM[«S·OàË(VÒ|ÎÅ9QA$'Ÿ”X+¡Ì +%&^dbGtô +gÝÁ=×ò¶sastöùÈÌ“¡?øì›ü®çÂWTp×›®!ôA«ž•ªðVI…Oʼ(yÄ2'¸xž¾g"ïèà.µüÚµ¸áœ{6ñ×êÔj‘^ûUUÕ4M×uÃ0LÓlØš¶V§nŸ6À—Q¬¤ùÝï?¥£yNT±ÉíØ„t’PbâE&vDGsT8K…ö]Ë;ÎÅÍѹ#7ŸM?¸z¿oònÏůóëÞt ¡Zõ¬T…·J*¼(yIJ'QäâGl,ÇDèÐ[*°ã^zåœá mM­ÖÑGPûUUÕ4M×uÃ0LÓlØš¶V§nŸ6À—Q¬ê¿ò'*ˆØäÓk%”Y¡ÈÄŽèhŽŽd©Ð¾;ðƹøjl~}äæÓ¡é_®ÞÛséöÐõ‡Þt ¡Wõ¬T…·J*|RæEÉ“(qB‹çØè{&òŽ·\ ιg3òÔj}µOPUUMÓt]7 Ã4͆­ikuêöi|ÅÊA Oÿ@s¢‚ˆM>-!±VB™ŠL¼ÀDót$K…öÝ]çÒÖØüúȭ߆§¼ö ÿÊ÷½ßôOÞõ¦k}¸ªg¥*¼URáEÉ#–=‰"?bc9&r@‡ÞR÷Ò¦sþ…'´ueµŽ>ŽÚ'¨ªª¦iº®†ašfÃÖ´µ:uû´€¾Œbå “sé'*ˆÌäÓk%”Yáì×KLwÀq*•S…VªÄm³+O?gÆãCG*Ú„Ò¤”7ÆöxlGÒªì i›]Ô¦UÚl*¶Ùm¦MJMBH „1x°=‰=päècŽ>z€ö›˜G[ž¶gl~}Žly~ÿÿŒø;<æ +bŽyKßœÙþÒD?7v=Õ·?ªmyXýÉ•W†Ï}ôMÙÅ/JÏß´ù–!(C-mç’(@z"$¶º &H¸¸c³O[z&MÝãÆŽGúÖ‡õý‘ËûT¥ÁD"!Š¢$I²,+Š²ž´‘´¹›Ú‡6€~s788è÷ûÑkµÇ9‚ÔØÏó…q¡l+˜…Ï)_>PW]¿€Òå§?Ú®¬åg‘­ÜaÅ„p†Ç\AÌ9oé›3Û_šz¦Œ]O k[®n¾_ùñ¿+¿-»øåÙóŸã®€Í· A™hi;o”Dy’ [ÙÕÍ®ÜÀúf,½SfzÂØùØÐ>BôŽ_X +¦Ô!ˆþ£!Š¢$I²,+Š²ž´‘´¹›Ú‡6Àqœî-¿ß¯ö8G›¢¨Â¸P¶ÌBŽç”/¨«®_@éòÓ;ï¾gq̬åa‘­ÜaÅ„pfs1ç¼ÅñÊlŸ1õ¼0v?3tŒÕ¶ŽT7sUW¿¯h¼S~éVéù›fzÂæ[† L´´•7J¢<é‰XÙ°Õ½H0AÂÀs˜}ÚÒ3iê7vŒê[Ô÷‡/¬@SêL$¢(J’$˲¢(ëII›»©}hàôZ[[ãú=£ö€`ºz½^—Ä0ŒÚãüŽãto¡×{ÞÕòüé±)Š:ö—fû_HË[´GFv,Û²·ŸšZ~=6 #êú”.oU6Ý%XÊÏ"or‡q™EÌÅc΋ã•Ù>kêyaìž0tŽÕ¶ýRÓücÕÕ{ÿ*oøª´þúÖ‡6ß2¸¥í¼QåH6leCV7O¸pgë›±ôN™égÆÎdž¶¢÷Éå¨J‚èÇ(Š’$ɲ¬(ÊzÒFÒænjÚ8¥xž×¤¸¸¸¥¥exx8«=ïiÇq\ú¾¡_›jO´×Î Ñë}ÞÕÚüéÁ(Š:ö—fû_HË[´GFv,Û²·ŸšZ~=6 #êúÔÇ·fýáϬåg‘T¸;ü&fsñ˜sÁâ˜í³æÞi=iè|¢oó×|úSÕµ{Mw˾.½0Tyå;›o‚NÜÒVÞ(‰ò¤'B²a«{‘`‚„+€;æ0û´¥gÒÔ=nìÕ·>¨»¾Ð0°R©CýÚEQ’$Y–EYOÚHÚÜMíC§Ã0ºC+..ŒÇãjO}zq·óŽÄb1µ'Úkç„èõ>ïjmþôTEûK³Àý/¤å-Ú##;–mÙÛOM-?uýêç¶v:ÇV€ò°ÈVî0ŽbB8ÃcÎÌ1oé›5÷N›è熮q}ûhM˃êkÿ­¼òݹ˷Ë. •_ºeó-CÐÉZÚÎ%QdÃV6duó„kw°¾Kï”™ž0v>6´˜»ü +P•:‰„(Š’$ɲ¬(ÊzÒFÒænjÚ8¥hšÖQyyùÚÚšÚƒ”x<^TT”ÚÞÁÁÁ}>¹ººš¾%%%è×f®f<,ŽãÒ¢×{ÞÕòüéÁ(Š:ö—fû_è0ßpø&«2²cÙ–½G.Ë/¤¿ ³êúÔ¡Ïm-úÓ%XÊÃ"[¹Ã8Š á ¹‚˜cÞÒ7k¶¿4ÑÏ]Oõíj[VòCå•ás}Svñ‹³ù;éÚ|Ët‚–¶òFÑãDzÒ!Ù°Õ½H0AÂÀs˜}ÚÒ3iê7vŒê[|x}¾a`*°R‡ úµ#Š¢$I²,+Š²ž´‘´¹›Ú‡6N)š¦uoñ<ÿëÌÌÌܸq£¤¤D·Cqqño~O,Kï-º#~˜OŠÇã9™îh8ŽK¯½þõ4;zlŠ¢Nò=.ðÀ ø Gz`²'S;–mYzär°üBúË2«®_@éòÙ;ヌ9ƒ+@ùVd+wG1!œá1WsÎ[úæÌö—&ú¹±ë©¾ýQmëÏÕÍ÷+?®hü¶ìâ—gÏŽ;çl¾e:nKÛy£$Ê#lØʆ¬îEµ€;Xߌ¥wÊLO;ÚGÌ]þ†¨ðJ‚‰DBEI’dYVe=i#is7µmœR4MëÞâyþ÷>Çëëëu;”””¼~ý:‡“²X,–ÞXtGÔçD8ŽK¯½V{œ#HMQ”Æ/¤‘&g;¦M9X¾Fn4Рº~¥Ës•Mw V€ò­ÈVî0ŽbB8Ãc® 朷8^™í3¦žÆîg†Ž±ÚÖ‘êf®êê÷wÊ/Ý*=ÓÔýÔæ[† ã¶´•7J¦òDH6leC$\Ü1‡Ù§-=“¦îqcǨ¾õÁ‡¾ù†ÏV Â+u& Q%I’eYQ”õ¤¤ÍÝÔ>´>¿ß___O%¡èŸjO4¦iÝ[<Ïïÿá¡¡!ÝMMM9™±ðÅb±ô®¢;¢ö8'Âq\z-èµÚãAzlôGRãÒÈ“³Ó¦,_#7hP]¿€Òå¹÷Ëê V€ò°È›ÜaÅ„pfsñ˜sÁâxe¶Ïšz^»' cµm¿Ô4ÿXuõ^EÓÝò†¯JëÿYÓ|ßæ[† ã¶´•7J¢<Ɇ­lÈê^$\ ¸3€õÍXz§Ìô„©kÌÐ>bî½ôÙ +T¥ÁD"!Š¢$I²,+Š²ž´‘´¹›Ú‡6€ÂWTT´ó:gÎœQ{"  4M§Ÿ +žçüüíÛ·w>H«««YñˆÅbé-EwDíqN„ã¸ôZÐkµÇ9‚ôØEiüBy`r¶cÚ”ƒåkäF ªëPºügì~F°”oERáîð›˜Eœá1ç‚Å0ÛgͽÓ&zÒÐùDßæ¯ùô§ªkÿ©hº[Þðué…¡ŠÆ;6ß2«¥t¤7ú&@²a+"˜ ášÇsXßKKÏsS÷¸ñÿìWKl×õ¢@¹*¸iÁ%"6mÅöHâgH-Q( c% ݺ)eÙ2­ï’B@ ]°hƒ2Z°EÓª-Ò2vm3ÎÇŒíØã¯(Q”ІK.¹ä’Kó£OO9Êëhf8R”iQïà@ æÝwß½÷Ýwï{—n3Ãÿùq€ZØ ìJŠMðÅ‹¥R©\.W*•jµºYÃV Û{Ñé¦MAAñj!•J-Ö€¶…¢{ {æ˜ÍæN[DÑfð<‰D<ÛíÆd2©g–ßï'Y¡§æàzc2™È¯×«-ŸËåÂá0L2$÷D óù¼öÜP(I,%â—B¡FY–Uaö+õ‹E”PŒŠb Ãp—ÍfzGaXèóù0 ´Áb‰6I†)b¬ÄéPû¥b‚ ˆûE<0Å-Ô}iX€D"ÑÐ’x<KD/ÄPÀ)û¨?2 à±XŒ¨]#Ƀ‰/ø­œ®Ó~1TÚï4â²Åbó¤az³!/~A”àÙä0†F¯¡ƒÊ…tjh*aPÄ/ð];h¢§b´LÔÖïˆû;üøáO~Í3”‡«» ¤ ·âàRöé%ûä3ÛÄ#ë؃~ÿ½Þѯ˜‘ÏÎø®Ÿ¾ðIÏù¿|'vâ܇'< Ì ””-q}—³k.p&ãšYuÓÎÀ2Ë-9¦žÚ'xÛØ}«ÿëþÑ/zGn1Ã×Þz_ZØ ìJŠM××R©T.—+•JµZݬa«†í½ètÓ>À…9¥¸4vÚRŠ# d ž*Ò»(þE1é´]­ ›ÍÆb±H xyÑÃÕqÈž9f³¹ÓQ´ ¹\ŽeYåc1¤=×ï÷yôA=Ëáh“)ƒA£F…Ãa¥UÒ¹ÑhTc!"Çñ/Ïó&“IU•( BY!%Ë%‰†ÞÁiL”Jà¾ÆtÜ7¼^¯ÆtÔC"¬±¨¢ªaq»Ý– \8æõt"’:·[Ì2ª:ᢇ½ _¤û¢ßþ¦bH€T÷x<Ú‘„…P^Ï5™aõ `F£©5t°e¦e_4€£¡_X¿#"öy¦vj{¡ZâT]kÖÎÖR®¡Ú–sò@+ÃÎK¬ÌÇi[BÑ2ç3 žzí§¿uL=˜()›äúÿ9»æg2®`Ú\a¹%vú™cê‰}‚·]½g½r§ïÒíÞ‹7œãÉ¡… Ên¥ØqÃ,•Jår¹R©T«ÕͶjØÞ‹N7íî‡Î»« ¸²â6ÛÚ›”‚¢5à™£LEí·Ï« Ad^°,Ûi£Ž:d;b6›;mE{Íf C½^†!žç5¦K[¤Î–‡ŽÑhÔž•Ëåpêõt[ÇS(T"2ñxY[è&$µÅ  á̶X, möz½ÅbQUCC¯p" +…®Äb1Õ°à¢RÏLi¨¹äш†ˆžF² ÄÃaò¯j´ÚßT E …´ #ÐhFRÃzŠšÏçêi¯@S ƒd&_Õõ¼áóùˆ0:¸¶°~GvÚq¦´KœHÂfíl!åªÝON\exù•zêC± Îg@=[ùê£Çû1ÌP*®î2v€ÜŠƒKÙ§—ìSÏl“O¬ãû¯Þï½Ó{éó³Ã7N¿÷ÿýÔ»¶ }tüÍßõ]º=0'PR6Éõ]ή¹À™ŒkfÕL;Ë,·ÄN?uL>²c½úuÿè—½#·ßµ7BËC ”ÝJ± âMZ*•Êår¥R©V«›5lÕ°½nÚ]飣eà-J¥:í +E÷Ï:eúáñÕi»šÎ‹Ì ³ÙÜi£Ž:èŽt+†Ñna&“ w’zÓ¥eG§s»ÝdV$‘ +ƒÁ M6Èð<ïÙl6™LÊjš¬ê*D@ê£Ïçƒ*˜ +F£Q*ÇÉ¿'‘H@,Â=ÑÀwŒIŽãH@òù<´IGU+3Ö’:…Yd6‹^ã/ùˆ+J¤h“:Ù‹b±¨삪#² + 1–ª!’ßU5¨{'Uk±XÂá0tÂ5ÄJºãXN©GÛþfc(»#NÈqëñ¡ÃØ)µ +¨ê 挄¼=™›ˆ€¶žzÔ²@³ ò,Au­Zæ¿ê9Õš#û?SГˆ Òƒx‡„Ä1'Cb6ˆRSv¶–r Õî''¨2heÆ¢¢‹‹‹Ò¡ôŽ¢-œÏ€Çºß?áaƒÊCÅÕ]Ò[qpËöé”}ê¹mò‰uüQÿÕoú®${/}qvøæ™÷>}ýÿ8õî_,oÿáø›à÷Àœ@IÙ$×w9»æg2®`Ú\qRìôsÇÔûo»o½r§ïòíÞ‹7¬—o -lPv1Å&ˆ[b©T*—Ë•J¥Z­nÖ°UÃö^tºiw9doÏýwHòX  8à]¦L<¼R;mWÓPž;<î:mÔQÝ‘®D,ÓÓ¿B¡P= ~¿Ÿˆéïq¨Kd4ÈF±e&ŸÏ+5ÄãqƒÁ@IJ٬RFæ…Ñh”YˆYø(ƒZ(—ŠÁ$<X\\Tu*kË +‹ÅBVÁ¿28+Ž²,«ºD¾Õïñ”HâZ¢ÅýÓd2´|Q. 1* ”6¼^/Qëñxdj â>ª~mû[‹¡ Ø$žrSD$ ².6QUF™H˜%“áy^š·Éd²YÛ" 3aÆDL£`›ˆX$©'Ö‚û?SÒ§ª¤%Ò^™êzìlùØj«mKN¶±2ìXe†¼ò H; Ê…¶å-`p>뜾É3”‡Š«"´ƒ[qpËöé”}ê¹mò©uü‘uìA¿ÿnïå/Î^¼uæW×^¿ðÏSÞ-oÿñ¸ç÷ÇÏ}80'PR6Ãõ]ή¹Dάº‚ig`™å–Ø駎ÉÇöñ¶«wûG¿ìI0¾ë?âž[Ø ìbŠM¿R©T.—+•JµZݬa«†í½ètÓîr¤R©öÞ +p½/‹v‹âUD.—Ã+Ãý-ðج÷¬éû” Áå¹3›Í6ꨃîHW-IOçb¦žT-"†“«s]Ô%2ËãñH‡ +…‚Á`‡L&“FÇL$D ˲J© F£5V)‰D¤bXšçy¥X<¯g°ÒlŸÏWÏfAˆžP($BÁ'PÌëiPE>Ÿ'j±#ÚÂDF9*õT5ªˆ¿þûL6›%j-‹êDD±•nŒiÊþýÄ°!p +H’¨ +È .«Š-..1@ =ªÔ ƒm’ÆzbÒ]ƒæzbÍÚ¹ÿ3`"É:ÕéÒPÄb±fíÜOÊ5ܦ†h˜“m¬ W™UOŠ4°V×6ž¢Y ÎgÀcÝ‚ôxÙ`†òPqU¤#þ¹—²O=·O>³M<²Ž=è÷ßíýŠùìŒïúé ŸôœÿëÉwb'ÞŠ¾öÆoœÁÕ9’R7×w9»æg2®`Ú\q–Ùé玩§ö Þ6vßêOö]þ¼÷âMÆ÷©ç}áÜÂeSl‚¸l”J¥r¹\©TªÕêf [5lïE§›v—#•JÉÚ:.np«Ô1ÀÍ¿©W ÅÇq²TAú5¥y%}¤«=gãSEyîÌfs§:ê ;Ò•0™L:;®%ÿe¿l‚ÓH®8îCªBåâ’*N).²±eK3èDRŠi76ÞìÚزeÉ’`@:PªZ7mv+¥Ä•ÞÚl‘¤²Çk/ëõëµ-d[B Q« GŽuäh>ô‘gFé´†¡gFVúWÿƒD¿yó¦ûõë×’FFF(Y±X =g(> ÑP8V&“¢!(Œõbƒ +‰&Ïó’fðùPN³Ù\k€Â†w‘«®Ëå,¡½…áñxjâž…!×›yøÀ2© +ƒ|‘’e…I€é%/!þfæPüŒ–\b<‘âñx=?$~R×6„äÒÄ@yÂà 'ùQ…B}N½×Õƒgó{ +€_d?ÅoTg3)'»L²È椆•á€*3a§à_—ÍfÉo¤¨¥: :ÖFôŽüÈÒT­£Ôžü« ˆK2\Âî[¶O,ÚƬcó° –á'æ¡ÝžoÎ|üuç…ÈÉs·N þ¥ãìg½×c}SëTTÊ´öM¦ @ÊáO²þÆ·Äx_ÛÇlc/¬£O-Ãz†¢Ýž»ìèãÁ™ ªö–pBW,K¥R¹\®T*[U¶«ììç°í6'‘HˆÎt£ÑH~$—ËA;Š®’èõzðüN¾€Ò2À…H”' $ \»æææf«@ +í=xØw”ƒ†®H[¢ü>›Ïç%=à…KyÉŠÇãè)§Ó‰™L&áwƒÁ½Ù:ä'Öû:Ñ+Dèt:%YV; +Ï +£f³™3Çq‚%¼·Þ+`(“ÉýàÀê …!“§͆äg6 ˲è½pN,yžG–ðw­9þ†çP<Ù$S]a¾Ã^Pë§yå ƒoUIK|½"‘Á•Ú85ÙS(ŸC¡P½Ç!ÕÉSq@)§ì¾|¿ëâÓøç©ó_š>øëqןN»Õ7µNE¥Lk{šL;@”ßdý+,·Ìxí/mcóÖѧ½Ã{†¾3_þÆì¹3ðÉOƒ3Tí-ᄶ¶X,–J¥r¹\©T¶ªlWÙÙÏaÚmÞ7 +FU ÿ‡û‚dowÚû åÈ"Q†HÞ¡ŽÍï;ŠæÐiKÜn·’›¬Óé¬ç/\ÊKV$AOô{>Ÿ—ü½¹\Ž`¯$~’YIVƒäP4”Íf•Lc-¢ƒ–€eYÜ@§ÓÁwe2ò<¨š7´àµWÉü+¾ ¹u¹\dcžç‘1ü­*þÝ&æ4‹ÍV=⬂ò¤vᔆF‘1¼B­Ÿæ T%L0¬·"ÐâÂô +C‡ìGUœZí)Tâôz=D[C8FÏÆãqµqî6‘r²Ë$šrR«Êp(•/G’¥€Ò ýÓiš½ÕtôÊÒT­£Ô[ùW—d¸»/a÷.Ù&^[Ǭ7^X®ÿÐsía÷•o».ýçôGÿ:åþ»éƒ¿˜ë8ûǾ©u**ZCrL¦ß*rø“,—`|KŒ÷•}|Ávã¹uä˵‡=Cßv_ºÃŒ<˜Ù j{ ‡ ´pÅb±T*•ËåJ¥²Ue»ÊÎ~ûÐnsð–OZÜü@“,Ù4pI¡´+p1¥‡äê( Õ¾£h]‘¶$‹)¹ÉF£ÑzðÂ¥¼dq‡ž‚óýÇ%¯G¡P@öN§S4JÂdV’Õà9 Õ–,…äóùÚ/‚Æ ÖÞ“S/6ðƒ,aE_Až<‚Á Ùrr¹œòðxžGÆð·ªø›CáÁH$b2™dN2ÕeCà {A­Ÿæ T%L6›EÆ.— ‚éBCúwç…¯Nþ>|bðÏ¿ûÔ>¾Ð7µNE%§µ=M¦ @ÊXeýI–K0ÞEûÄ+Ûø¼uôYïõ'–«Ì—ïu]¼ý›©Å™ ª¶—p¾yó¦X,–J¥r¹\©T¶ªlWÙÙÏaÚmNmÛo4smªd‡@¾RŽp!å†äê( á¾£h]‘v¥¶òˆðx< +W^²X–•|*¢ßáДõͲw¹\¢Q4ät: N ™•d58AECxÉ'Ne>0‹á¯CÀlÃ'×Úçóy܆ð»ÄiÁç? +‘ý(ŸÙðxžGÆð·ªøqÔÎa6›Õëõµö’H¦ºÂÀv÷OHí<ËúiÞ@UÂf³Ùonn¢ßÑ ÃÔIÎ*Bœî)·Û\ †Ùÿ•MvMeãÄQ›r²n›ÏɃ¨ ï¬2ã9 Y +(ÍÐ?)Ì®â”ûK6¦j¥öä_e@\’ávß²}bÑ6¾`›ïùÑ2üÄ<ô ûò½3Ýy!ròÜ­ƒ7;Î~f¾r¿ojŠJNk{šL;@”ßdý+Œo‰ñ¾¶O¼´½°Ž>µ ?êŠv{îš/ñ®O~˜Ù j{ ‡ ´+Åb±T*•ËåJ¥²Ue»ÊÎ~ûÐnsð–Ošÿ†½‰:|¸h0¥u ‘(7wÀöFÛ}GѺ"í +ô.—«Þ† +…áq¼p),Y›››:Nxþ€ÐP&“AÞ8Ž“u•ËåöhÈétœ@2+Éjp‚ª +£aÀm0ÔëõøŠHúÏçóÈV„ì–0-xí…ŽE«ÁÓíyxžGÆð·ªøkQ8‡Ùl·´F£¢|ž%§ºòÀÀ92‡Ãjý4o *a²6`ØÈä´”…§V{ +‚4 Ç䘛›k,ÎZ”o[²[MrR«Êp(•/G’¥€Ò ýÓiìÖh9~ñ«vÿ +HQµ‚V÷äOÚAÜŠ[¶ù–lÞ×Ö‰—½c/,£?ö ?1_}ÐuùÞé‹·;?Œœ<ÿʼn÷ov¼÷yç…¯ú¦Ö©¨ˆZCrL¦ß*°êð'Y.Áø–ï+ûxÜvãyïHÌrí¡ùÊýîK<3òh`fƒê(H8áZ,K¥R¹\®T*[U¶«ììç°í6oùŒFcÃÞ +…‚dó­uÃ>¡³…Ë4ÞÐÖ:«x<žÙ*ñx¼a·Ðf'ª@ä’p·‡B¡ÿ²_-1meg˜e–HÝ .ª,&‰3 `ÀO#/èÄ™f·“0ÎÀ\ˆ*;ªé ¶JQ§­ÜN3iÓ4%š¤qR&q¼Œ ¨lX²d™%Ëø¸_|ÐÑá>ŽÏ}`s?ý ûžsþóŸÿýÓ{ÑC$Aþpã Ž‡B!üN&“àiRl¥T*EBôC.̨Æ(†˜hÈxÑ¿–ÞTã2ÇP¡ªZ%V3©I‡5©êà`ø111!n_ð6îQW! "aK«­R,ß#l•ä-Rü…£âvclkoµ‚½±±‘51þâcÕƒlâLYH#ôœ“]BΤKÀª¬àêt?ØÊVµn‘Î,âÕ`B*WéR0¬*¶.@'¨)¬iPše{×tá3䨅åÃWš^ˆ³…×Ñͪh@ª:ôù|G"@ +建¸`l ùëåc~ƒ.‡)Wú#GŽýÐùˆ†ã“"àËIWÍÄÎÒ+èoøXµøî…ËUek‰OZ•ö%3³­ H1²¡ ]£92"ê§.ÜñƳ6ZØ¡XÆ’æ=Òœ{pÖv ¼rõ¥Û{§Úzž8¯~×zùAs÷ßO}öדç¿>qîwÇ‚_?ûUçð’M6qiq‡†r~P<ë/øbŸ4çN{^»û_¸z§:zž´]}è¼t¿¥ûn`xúì­›‘"øîÝ»|>_(ŠÅb©TÚ¬`«‚íÝØï¢]ç`[>‚£GšaˆñJÙ„Ãa½|ÐH£Ÿ‡0üÆS +åL'§ÓÉò‘Í ø ±µîEO®ÚÿS@$Õñ‡KÆ&8Ò9QMMM’$aœ4vÅêê*F¾ 8ú¯j>´vLk04«"ù`Db­¯$‡ûÖ[UXwU¯ÛkW)Wb–ãóUñøS'dƒáª:$y vnllè’¿–±±_€—¦*ÀÁ#‘H„z?íÀQáôˆ2=666RG­Êm||œÃŠ.!.8Lh*æ{5\&‡£ªØ066FoGüÊVa/º +‹ðYñÕÂ& +«„¨Ñ‘ÊPe8;‘è¨ ªIOЬJhé>)Â3‘Hð]]\0¶}B#¡—ù º†}=²¶¶Vf"Âp9àËi>¦Pæè¤|Còt: S&“IQ°ZîrUÙZå“f†Úgf¶ä÷?6  k4j¨GüèøoäÇw‘ã¸E—À˜ªØñ°*  º®À@$I’ø¦— )~\‰p8¬*˜l›^wŪôO-À GFFdï²–Çjà*åJÔˆY%‚Á *ÿååeøƒ^nxK:…ìøYÄÆ›ÏEª q(LÊ øH7ð]TVOβ t)pøÀ™E¼L(Cþêêê*‡1 èPþÊÚÊ®jU +¾Z¨6€T*e•ü>ŸO„-lŠDGw²‡ ühé­8‰DBë8–ø®NWá–ëëëZ|ðFZðM‘Þšß Ëa`5VKx ˆÒøàËi>¦@Èq]m¶^99à‡-‡­U>iaf¨}ff• š +l˜A×hÔP§h¹tßÏÚtha‡bHš÷H³îè´{à«ÿeÇïÛ#ÏÚ®?n½2Ù¾wúâþgǧ¿?þÉøÑÑó¤sxÉ&›4h‘’(÷žâ þXÆ'Íyg¼Ñמþ´ûÆTGOªýÚ#çå-Ýw½‘GÁ[+6"EK>Ÿ/ +Åb±T*mV°UÁönìwÑ®s°-R“<ÇÆÆ”íà@m˜ 7!ârÊÎ’Žs–Ïç¿Q6e@~‡Ã!~|ddD\`ÌtžÕ…`0ˆ¸¹¯0p…ldX^^6 $+­ˆÕÄÝo‡± Hƒb¬¼E{wJÔÀUÌ›ìøiªJH$fxŠçalB°y‘ËÙ‰¨AìÐ͈>¤Aå6ø$Ý£•èTéNI’”èj àð3‹x5˜P†|±C¡‡1lllPþè"”h6Cæ³â«eWð!“““ªTE2™1k8fóŒ¬nŠÈÏ–ÙrÌé:  ¾«³’×Ð/©ò1ï·æ7”õ8 â—Ö2¼n||œÞ‚2'ÂA¯œæc +.J9èj€uÉÉ?l9l­òɲu™¡ö™™mUS 3èÍê?võxãY›-ìP,ãIóiÖ=8ãxãêÙÑ÷¼=ò¬íú“Ö+[.Ý?}ñÛ‘ùͱ3¿j¾x§sxÉ&›4hq‡†r~P<ë/øbŸ4çN{^»û^¸zÿÛqý?mW:/Ýoéþö£X:xkŦCB¤¢¹Íçó…B¡X,–J¥Í +¶*ØÞý.Úu¶å#À¬a’çêꪲ=Òé4mž #‘HÊ);ˆŽ#$ž¯÷Fú4<¼±±QïñT*%®[¶Õ7Œ$‘øW¼}û–£‡Ã¡õF™æÙY̔㛪ÕÝ 3”aa0÷ ™G{w2ÔÀUÊÅÂ%´˜àQº"—Êø#:̼‚ÚјRxýZ·Q‡ˆD"U} Á‚BÐÔÔĺVÕCÔ°;Á_”Û&''iøà2³re8O )ïÕ`Bªnp:tÃøø8‡U¹’åd9áŒÄ®•Xð^Ê\µ,²©FU|µà,›—Tk ö í7èé(`D–­R?x8áɉZ—üÆtÙèwQéoøÂúyƒ†«Ë„‡;¡í‘í‘5rÊ üZµ¡¬Ça(FFFèÚê( “8ªÊi2¦d4‹Ðí$ÀT­ (§™°å°µÊ'ËÖe†Úgf¶TM6Ì k4j¨_´GžzãY›~ð´°C±Œ$Í{¤Y÷àŒ;úÆ5ðª£ïE{ïT[ÏçÕïZ.ý«¹ûî©Ïþròü×'~öÛcg¾t|z»sxÉ&›4hq‡†r~P<ëe|±yïàŒ7úÆÓÿÒÝ÷ÜyÚ~ýqÛ•ÉÖð½æ ;óË¥àÍ› ‘"ˆN&ŸÏ +…b±X*•6+ت`{7ö»h×9Ø–c”y¶tZ¡@ûZUvRc®ƒF¹¹ +ðÙQEÁÞUv +<ñvÙGÜ‚qK’$i݈.]7¤R¾Ã™zð|v.]!¨U¥± ;R­­­‘)IUŸØÌ¿dGÀ£(ØÊ„Á„È> +Ï”±‚ ì8CßPfFÙuZVtWH¢ª:Çf(<'™L•v´$(XìQÜqøï…«p åÁp8 666ÈDnQ 5z(RN¥<Vø{á–õõuœ"Þˆ(S}µ n÷Ô"6.X¿ÂïÄn |àÆJ¯›˜˜àðDÎa7ÃÿáÏ$6I5‘åaš*–ç:ZÚø^ &”¡ê2+5éZ;l/«ÅäQH°Ø€ÈeOA]4 a” ¼‰…½š¨ ᳸T—Zd‰ ÉOƒHx ^9©0ʺƌ-Îåà9’V@¶ÓPmW8òÖ!›áÆtUó3ôÀŒVIÒ,//cVÀo¶š@±ªŠªj óÊz†iP±©uEUT•ÓdLø¢”Y b)Ögå4¶üç[â“eK3C33Ûª N.6ÄÑ5š‰DÇÅO:‡½ñ¬M?xZØ¡XÆ’æ=Òœ{pÖv ¼rõ¥Û{§ÚzRÎkZ/?hþü§.|s2ôGǹÛǃ¿>öñ¾ØBçð’M6)h‘’(÷žâY,ã“漃3ÞèkOÚ}cª£'Õ~í‘óòƒ–î»®+‚7Wl:_(ŠÅb©TÚ¬`«‚íÝØï¢]ç`[>̃æ٢ϔ±u8œý1Ø9”ý³²§@S­z +Í¿Ödñö«$¶­ëŠz D¢—j[ô ‰¢8 +( ´rÄ8M"·(Ë–©ù“ +C€­¢¤H+$h+¤ Â"n¬ÄhÇíx l EJ´ÑRK-µÔR4ô˜_ùøzïÿ÷?g ïà,¤Ï{ï»ï½{ß½Wv3Ëhû ôÞÒ°)ö+Ÿ4Ì â*:vBL„ØÒ³sg.9ð…^E~>N§“^NmrÙÎ\D¶‡‰M‰Ã‘æÈ€©J¿'j ¯IS…rq_jãFFFä§]¤`»TÀ%J*Š»@x3§JÈ«M¬†‡‡åW644WòØ£è\¦Q¼áØ× .69z^6ýfQÑ2)‘dPƒkI…’Õò­&ƒœ¥=Dn*æñÈÓYr›VTËVJµ#‚嬎¤â‹GŽqbP;è懮%Uíˆ4ýÏù ñ6í‡3ùA¤¿cXn_ñÆ倀ZóÀØ`¡¶³ 9ЬÊ%qhŒ.TzüÌ'§í(v ?óI[öö “Û}¶Kû2Ë›(Íš#[4ÄA·¹ñλïY»'þçžç¬H»/ú–ÂŒ]˜¶õLÚº'¬]ãu/,Þ§µmjZƒÕžÏ\¸yêü7¦þuâÜȱ³ŸÕ]Rß?ÏÉIqn‡}qè¹ü³N_Ô)D=“öî7¶®WÖöçumk¯Þ7·Ü©¾ô}}×S÷à"çá¡XѨ$‰d2™J¥ÒéôF›líF¹‹ö‡¼å‘0³ô`4òŠ].c,’€iHq0innÖÔet2è“×ÖÖµÐÞcb7BG­‡ÃÄ”!Êkz B ³‰æ07Õäá!¬sPœãз¬6C1@XЮt„à———ÙZ8:iÜ+HRÈQ¤¼QšPÙV:ØÑÑÑl}CB1ä~AÊàIQKIØ)^b\¥¦bñn„c_Q}D/:LxoéX•‘?44¤VM¶eA‹šÅXÁ¬'ªaD2ÈÃóe2™4OïñìàÕeï/s `,M·"FFFr8œ-ø +…êŠÀe¡ýP³év»Å3‘¾( Ãÿ|ΑL·’V0”/­Xå¿âAVìÜD0º ö % BgÀÈŸä’¸2†}Mèô3çœ"F¥ƒ)Õð/ÀIé/ñCaø™OÈin?ÿ˜QØ—¡d/³¼̪vpèAã@dÜãÀo?uøcœ{ž³;ôEí 0c¦m½S¶î k×x]çK‹÷YmÛãšÖûÕ-wÎ\üþÔùoMVžûòxÓ_«.Þ¬ïŸçä¤8·Ã¾¸ ôÇ\¾¨Ó7ã¦=“ö®q[çKkû3KÛ£ÚÖ`çvÕ…›¿ÿËLÓà"çá¡XÑ«$‰d2™J¥ÒéôF›líF¹‹ö‡¼åþ<³ÄØ"BMxii‰FC«s-Œ~˜Dh ˜ØŠj=Lss3£—ÞÎŒ ŒÍ?{]z:@]0TVVVhznRÄè¡g®(L_Û±¬€é0Θ¡Ô@XÐ ×P(DßÑ‚Îå Ž%0ºfë'EÊ»í† +„ I¤aK8N¶ +Î*Û ¤3ÔívkjéF8ö;´x»”€b1œA8fW †q¨ÃŽÉd’‡Œ#Œ53×ãñˆžàéfˆ¡žŠb‚ 0Ä°¢´/öºØ,„!†ü%êXNí…âØØ=J¼8=™Ž£Æ’"ìàˆƒÒy,Û™çYnPÜB ÈíBE@hKð¡šÐ*>°lÿó9C1˜åÁ#ø"õKÒÒŠ±'ýŠB#~Á¦ˆÀ¿p}>š”¿€=#P~>Á`mŸ ý~æ–SØ$Æh›q_ò€¤7U¤Ó³ýø{}ÿ<''Å9‘®¾ø[úc._ԉנwÊÑóÆÞ¶u¼¨ó†,ך¯Ü«¹…‰Àœ˜ã +‡"åÝv C% ’@@ÏH1¹RI¿{:&2Ôd2ijéF88ôcaa!«Ú·G€úµ´´”ƒ"ö«Ö”ØBÁÁɬ®®Ö&œÏ°°û]ΠPÖÊ$ ZP± + *W>êÌ)³Ù,ºŠ?4 JÕMO§Ê@ñÒ¶9XìÓ—ù£q 9è8Ùü‡?ƹ·9»C_Ô +3v!bë¶õLZ»_[;Ööçµ×Cækk®Ü«ºüÃé ßáZ+ÿøî¿;û©£w²¾ž“SƹöÅ] ?æòÏ:}Q§qôNÙ»ßغ^YÛŸ×]b¹úÀÜr·úÒ-ûõŸš9Å"ˆî%‘H$“ÉT*•N§72ØÌ`k7Ê]´8"‘Q¾+**ò7 +…èÆ`ee…–D$`®!$s˜Ün7as[…öc‹Î†_Z½¹¹9goÃá0C^š¥­eÕÿ¯®® b§Š’^¯—p ³†þ…Ø #ü²5BX`‡+BŽ¾&gÎ[(Š”wÛ% •áááÜBÙM(bQýêÎS¾6¥©R¤áààààØ/·¯hZÊí ò™-ŒæVF[98ʉÆ8HO ¿úM¥Ý7ãðÇ8÷0g%Ú}Ñ·"¶Þi[Ϥµûµ3\×ñÂâ}ZÛö¨¦5XíùñÌ…›§ÎcúèŸ'>9vö3sk°¾ž“SƹöÅ] ?æòE¾§0íè™´w¿¶u¾²¶?³´=ªm½_ã¹]uñæïz_5 .r*ŠEp}}=‘H$“ÉT*•N§72ØÌ`k7Ê]´8"‘Q¾+**ŠaÀ€@Kʃauu5Ûi;j+J „=Ê–—#ê&“ Q­SýÆ„úØؘšðÒÒ!œÃÄ÷#Áh±ÑÑQB ®f»–0ÀÆ'Ù!,°Ã5 òF£Qÿ5EÊ»R† +Êb4èË! 4ÑÐÐ@¬¢ùªãF88888öÜnwQkS–UrU³U“7ÉŒ†“ƒãÀ q 9¨n¹ãðÇ8÷6gwè‹ÚAaÆ.LÛz§lÝÖ®ñºŽï³Ú¶Ç5­÷«=·Ï\üß©óßš>­<÷å±÷??ÕüïúþyNNçvØwþ˜Ëuúf½SŽž {׸­ã…ÕûÔrí¡ùʽšË?T]øî7bMƒ‹œ‡Šb\__O$Éd2•J¥Óé 63ØÚríÌDí®¨¨È߬¼½—€–&ÄAÈaED”Ñh$LƒA†J>§7ØÐР_Þ5¾¨ ŽŽÂø¢-p0²°°@‹á#}q…м^/a9‡‘6«[ÃJÈ å¾Â¡HyWÊP¡ÏvmmMý‘‘‘üÃ@t°)¾?rãF88888ö P&¤€–²Üîh}¯Á` +£¯®®B@ÚÚòòr Ýäà(âà‘C€_Ÿhrøcœ{›³;ôEí 0c¦m½S¶ž k×x]çKKûϵmOÌWT·Ü=séÖé?N~òuå‡_oúâxÓ箾x}ÿ<'ç/œ‰ÀxKÌå‹:…ˆ£wÊÑóÆÖõÊÖñ¼îzÈrõ¹ånõ¥[fÏ­÷9Å"ˆ^1‘H$“ÉT*•N§72ØÌ`k7Ê]´8"‘ÈÿÙ/“ 6Î,Žç¨#G>¨*^d›E[«…碩[Y<–mlhI-áTQ.‰R©¸\™%š™¤"¸ãØžx‘ml ³µ6L9ꨣŽêðdvÃÍ\}X†a¤·‚-m6b Ë[”¢($ÔØؘŒ½šÂ———w(D¹»ôû@ò»;ÄVW¾VéÇ …BR3xµÁKSºwð%eteçíWj’vM¯×#öðåËΩй«f«À9-o-iüT*Uj’•X¥;‚Á`0˜ƒÂäää怿kNq¬VëÖ™s™tÉdÒï÷744lšÚäŠÁT—öñè£ú µgŠôűö±by£±Ð,áY$Üóf×[ópØ88mx¦ï{ÜÚó°ù*sºóöIÇ'>ÿÇqû£_ƒÓg®¿ÃÂÊi© ÑDÈoóŬި•fI÷¼Å5K ¿1¾4õ?5ô>Òwßo¹ò³ùÚïg'V°êMù!˜Íf9Žãy^Q×r¬çØØN­‡ö!‡eYdpý]}X¸ù#a5ÍŽ–[ßyÂápy‹n}.åq:2öj +‡w ân³Ù”»3 ƒ¸Sµ›1$†‡B!¶DàS A ‡—ƒàíì¼ÝÒé´ò2 F$&$Vj’v­±±±/»»ö– +»j¶J2™TØQ:n«ü2À8P_;‚´ÙàÌÊ»TbG0 s €I´õΰººZ댊sM:÷e iºÖ)c0U¢}<R~:4GHé‹cícÅ +òF-yÑ,áY$Üóf׬y8lze¤žëû·öN5wÝkê¼sêâºóßÿäæÑŽ¯[º˜3×ßaaå´TÐh¢ ä‹·y£VoÄJ/’îy‹ë-1üÚ<øÂØÿÄÐ;Õê¼×ÜyçŒkúìÄ +V½)?árËqÏó‚ ˆ¢¸–c=ÇÆvj=´9,Ë"ƒ.ðêÃúý~…a¥7‡²_:@ e³ÙdìÕ/’ÖB`q§(j7ã­ÏÀ=rØmEHFÆÑét†ÃaåÅÊ„…ö+5A~פÉ'“É22ßs*tîªÙ*ðŽ˜éõzøGù C¡âUÒÁÉ“ÉdàBVþ‡‚X­Vù*àÌʇEì÷dG0 s Ø:ž`œÕ:¥Àhƒ[YÑ9AµNƒ©íã PÑ£qh0RÏI_k+V7jÑ ½HxלydÆ4üÚH½0ô?mí}Ôâü­éÊϧ.þ¤ûkàħß;÷ ü÷ÌõwXX9-4šhùâmÞ¨Õ!= ¤{Ö22C ½2Q!cßc}ÏÃÖ.¦ùòÿü{vb«Þ”‚Ùl–ã8žçAEq-ÇzŽíÔzhrX–E¦¶V«UVúÐétR³t:-½6@o”·èÔÔJþݤ¦pxæ î6›M¹;Ã0ˆ;EQ +óÜ+ ‡ÝVÌd2¼;|®`0–Ê«–Æ„öSî¾ã×Ù5ÈMš6´\©+V‚ +»’@9»µŠÃá@,ý~¿Lzp´áH".ÐE +«w0†ƒV^pfKúz{²# ƒ9À²!L™2.'µî6@Àn·Ãe;?Âà(nã0—C¡P­Ä`ªMûxTÞñ r„t“¾8Ö>V¬ oÔ¢#z‘ð,®9óÈŒiøµqð¥¡ÿ™þÚ-Ýš¯Þ=})xò¿O|ö·cç¾ý¸ýK«7zæú;¬º×Ò¦ÚF䋵y£Vš%= ¤{–ycœ6 „Œ×þ§ï~Ðrõnóå[+Xu¨üÌf³Çñ*!Ix~Êxè)¬j,5)H™]“îPêr¢ç®ú­+j4Äxrr2“ÉH———¥? pÞa(©Ú ŒÕTý ¿b¿'¿„ ƒÁ`0˜*Ó>ž©¹78ŒÏIok¿*Vµ€<‹‡%Ü‹„kÞ<òÖ<6RÓ†þþÚãÖî‡ÍW=}ùöÉ ?è>ÿçqû£í_zµ.aÕ½ùâV7fõFI:Bz-î9âC#½6Q/ŒýOô½S­Î{Íw =¿uL¬`Õ¡òC0›ÍrÇó¼ ¢(®åXϱ±ZíC˲ÈÈÖjµ*cf2éM€a©e*•BÌÊ^WZ‹^¯—±WS¸4s›Í¦Ü¾âNQ”Â…ÔyllLIžétzrrìåÚívØô¢Ñ FĶLùG˃DÙµ?]©ËUˆJœ»š´ÊÍ›7¥^~¿? B™ápþv8;Æ›¢uAkAƒ©¯¾üBˆ½úÁ`0 ƒÁTŸöñHýíñq„t“Þ8Ö>Vìƒè¨%/kñ,®yóȬyxÆ4øÊ8ðÜÐ÷¤µgª¥ë^SçSŽuç¿?þÉÍ£_ŸºøSÛèVÝ+Q/nycV:BÒ,éY°¸çˆ‘óÐ+õÜØ÷Dßó{KׯM·-ÔÓŽ‰¬:T~f³YŽãxžAŵë96¶Së¡}ÈaYÙZ­vÏc©TJj ÿ(µ„Þ(o]†aP6›MÆ^MáÒÌå×*š*EQ +óTó‰Ê#“ÉN'Ídø¿E³‚/h•R“Q¾k;vW:.uÅJP‰s÷¾­266&ÓòÐ4]4>ä¯×ëwt×h4pè ©ü9B¡»»ÝŽØïø´•JìƒÁ`0 ¦Ê´'@eßQ(Æç¤7Žµ_+ˆŽZ@žˆÅ³H¸ˆ‘9óðŒi赑zaè{ÚÚû¨Åy¿©ó—Sƒ'Ïÿëħß;ûÍqû¶Ñ%¬ºW¢ _Ü +òƬt„¤YÒ½`qÍÃaóà´i d¸ö‡¾ûaËÕ»M—oýÉî˜XÁªCå‡`6›å8ŽçyADQ\˱žcc;µÚ‡–e‘y­ÕjUÆt8 +cBH/ ©Tª¼uý~?ÊétÊØ«)’DÜm6›rw†awŠ¢æ ¬®®*_kY^^†<¥ù-!ÔÚ¯Ô”ïÚŽÝ•L&K]±Tâܽ¯z«„B¡Ýš¡(4M+Y̤¾:. f2Gi³ýa©ÄŽ`0 ƒÁ`ªLûxTö5õ€ÒØÒEzãXûU±‚è¨ä‰X<‹„{pÍ™GÞš†Þ©—†þgúÞ?Zº4_¹{úÒ­“þs⳿;÷íÇùÒ<ü¦mt «¾•ÈËê‹7f¥#¤g‘t/X\o‰á7æÁ—Æþg†ÞG­Ý÷›¯üÒt)hû‚í˜XÁªCå‡`6›å8ŽçyADQ\˱žcc;µÚ‡–e‘y­ÕjÕL§Ó‰IQÔnöÒ ¤TÞÒ° +jlìÿì–KLY†³ô)/- !SØ.»Ðlj„›ñt''!`ž)Àø‹±`ãM·{^Í<º‡™I:L’é”ÈË­$“ÊÛЀËØFHlXz饗,]UzNŒÁ­PTáßOÿÊ:ÿ=çÞ{®OâKÙx&“Aì4M«·³,«þˆ 0$8ªÏUv`ïò£Þ%‰(å®#ܵ¦[“Wx¼G÷‘²¿»]ªÙ*ðÒõzýÞ\.—ë“]!ߩʪÒé´ÜYÔxåÍ}«l©Ä`0 ƒÁ`ªŒc2Ró]zÊ0õ<°’X'R‰¢ü+6/nóñ¤7FŽ-Y= Ö‘¨™yÓ6ÄÏZ{Ÿ´tÏ5]»Ûxù–ñâw ÎoêáÖÞGí«Xµ­Ô')P AVìþ¸Ý³y—HÏ9úÞ2üÚ<ôœè´º´tÝk¾ú½cj«FU‚¹\NQ%IÊçó[¶ ìì縇ö)‡çydX †R ‡Ãò€ƒâF#‰DŽ–š¦id)–eâKÙx&“Aì]½ +Cì ÃL<;;«>W…op»Ý +Ø#í§5¯¦[Óëõ'ðè~®À»Û¥š­â÷ûåW/~—?jN€ã8õ)B¡²ŽÓé„Ù¡Æ+o6x³Ê–J܃Á`0 ¦Ê8&S 3µÇÙ†N{ ‰uR•Ø•Í¿òA¾¸Í#Ç–HÏ¢utÞ2üÖ|ãUÛàóÖ¾ˆ©g®¹ë¿Wn/Í4üæ/õ¿7^ü¶}b«†•*jŸß*°]`g?Ç=´O9<Ï#ÃÚ`0yµt:­ÓéN§‚Åív#ñ.—ë©¡£ä©¡K)Ïd2ˆ¦iõv–e;Ã0ƒA$8«ÏU9"‘R˜ÑhTˆ‡="ñÑhTkRM·½„ÄÃajÍX Êûî>RÍVÑëõ{mll ðFøð6–Ú ÙÇq*½òfƒz”-•¸ ƒÁ`0L•qL¦@gjSÏ{ ‰u"•(Ê¿bùâ6_Œô.“žEëè¼eä™yÕ6ø¢µÿG“ûaóõûMWg/üö_ç?ÿÛ¹Î?Ö;¾¢Æ“í«XµªTQãIè* üq»Ÿ·û–mc?‘£QëðË ®mðÑ÷ØÔÍ6_»cxì˜ZǪQ†`.—AEI’òùüVí;û9î¡}Êáy™ÔƒáÈ«Q%ýÇ)XfffxN—Ífµ¦–¯SWW§l)eã™L±Ó4­Þβ,bgæ `8ÀRrUxÅpYHm›››ÅƒA$ÎAkRM·‡K¹åÊQÞw÷‘ªµ +ÒÿÐÐ eÏ¢©»àA!^¨YÙr2[ƒÁ`0 £ Çd +t¦&9ÛÐi$±N¤EùWl _Üæ‹‘ÞerlÑêY°Œ¼73oÚ†^ýOM½ZºÙ¦«w.\¾yþ‹oœ®w|Õ6ð´}b«V•*j÷ ‚ÐZ0==­5;”, •-¥l<“É vš¦ÕÛY–Eìpzêsð£út•Ãår©/ ®µô‹ÖtkÑhT~tkkkZ“–2¾»½T­Uäõ—=K6›ERÔÕÕ©·ËÿŽ­°7‚Á`0 ƒ©2ŽÉHþU\#˜zØI¬“§DQþÈ·ùxÒ#Ç–¬žŸ¬#QËð[ó—ÄÀ³Ö¾HK÷\s×½F×-ã¥48§ë?ûºÑu³}b«V•Ú5žü @‚òÇí¾˜Ý»l[ Gß[†_›‡^´õÿØÚû°åúMWnÿÒ7ß1µŽU›Ú‚¹\NQ%IÊçó[¶ ìì縇ö)‡çydL ­‹lnn:NùÄ×ététúP»Ñh,±ŽãäÙM]JÒL&ƒØišVogY±3 £/?^·Û­>]å ) šá `ù®C¡ÖŒšn þgôz=bš5e„îŠD"ZëT¦,ïî“T§UÖÖÖ,.—«¼) ‘ÎÈP讽Àó„óD¼ð£²«B7‚Á`0 ƒ©&ŽÉHþ%Y#œmè´’X'R‰¢ü+6/nóÅHï2éY´ŽÎ[†ßš™WmƒÿkíÿÑä~ØÜõCã•Û.ýóüç=×ù‡úŽ/©ñdûÄ*VM*µ+è* +vÜî‹Ù¼K¤g}oa^™‡žý‘V÷\K×½¦+·~õ»TÇÔ:Vmjwær9ADQ”$)ŸÏoØ.°³ŸãÚ§žç‘1m04­ÀqœÑhüäÄD"jV˜™™‘{ƒÁ Ê²Ù,ÔŒØ].סÆR6žÉd;MÓêí,Ë"v†aâáåG?ªÏ¨’ õÁðŠu:ÝÞ’êêêâKo¶ŸµßZ(’Ýì쬚\›››ÐHÛÔZ§2e9ŠORV“A®~w ÓÓÓ|t:]z–£mÞ¦ü€ß5¥+×`0 ƒÁ`ª‰c2’ Ö¦žö@ëä)Q”ÅòÅm¾é]&=‹ÖÑyËÈ;3óºmèÑÿÔÔû¨åúý¦«ÿ¹pùßç¿øû¹_ÿé_OÛ'V±jO©¢Æ“( +vÜî‹Ù¼‹¤gÁ:òμ4>'úž˜zæš»î6_ù¾cj«fµ;s¹œ ¢(J’”Ïç· +lØÙÏqíSÏóÈŒ6 jŒÙl6‰qЬƒ*k€¥ôz½|…p8|¨7“ÉÈkÐététúPïÑ6þ1/b§iZ½eYÄÎ0Œ²Ê“o3ªO +À±„B¡ƒVƒeá<¡+Ô¬W¬i]~Ë*s}Dë­ÁMÁAÉóÂ(9ŽÛÛ–°Ž¦:•9ò»SCZp»ÝòSU€¢(x#.— Ö„¿ŽµµµCk€xd£Ñ³CÁËÊ·¯ò+w# ƒÁ`0˜ªá˜L4}©ž2Î6tÚI¬“§DQþÈ·ùxÒ#Ç–¬žëHÔ̼iâˆg­½[ºçš®Ým¼|Ëxñ»ç7õŸ}ÝèºÙ>±ŠU{J5ž¤@åÛý¼Ý·ló.’£QëÈ[Ë ®mðÑ÷ØÔÍ6_»Órý^Çä:VÍjwær9ADQ”$)ŸÏoØ.°³ŸãÚ§žç‘­×ëù˜™™ ‡ÃÁ` åA1šÊàþÏ~¹'‘çq|Ž”'ª¶¬âH­1’7¯†Î¶˜˜uÑ)µÕÑ$¦óšäBq¢jÜÉÎîN±;55Y_ÃŽãÚ£3긢 ÆšÙTå‘#GŽ9òJ²û“fؤy57 ü>õ=òÿ{ÿºÿ­×[ÔI’ðOEMb±˜Óé”H$…Vn·[LP•\.Ÿ0D˜ ñæ,Ë +Ìiš.o²¾¾^´X“ÉÉTÌ"B3yðSô 7ï–¢(ÇSÊáææ&4¿0ŸÏW& °*,A*•F"‘ÝÇâñ8lÔ[ÔI SÛ]×n FØêÂó°rù^å©Øäª(|î sU{/ÒBçÿ‡UùOvLÐü¢ ˜C¬2ÉÀZÁ“‹TxZár¹Ê„«X{azåÏ#‚ ‚ È # ÚÏgjÐ{éÞB5˜‚yé˜Õw²r:«Ÿ0¿%¦—µS¯5/Õã/TcOû®xz/ÝïºÛyî+Åéùö“m;ñiÛñkäL¨v Õb +ç4‚ mA’ èNoYÑ™ßS>íÄ‚fÜ«}¢¼ü°wø^÷y·Êôí€cÕ²â/ÁD"‘L&S©T:Îd2[Y¶³ììå /í&‡ã¸úÞïR©ÔãñÔ MÓ¥|Êd2£Ñ8÷3 Ã(•ÊR‡ÁȈC¹\.>ÛX,&07 âÍY–­!íùùùRUCCœN'à²ø|>¾Wàê*<_Ô¿Ëå*ì¼Éd?0SÞ³Ûí¶Ûí0åBŸ0£Š%€m©ü!UŠ¢ò“…)õ 035xÛ(ŠR­ËG‡üK“H$£TE½ž;GQÿï{Uxà)€¦í³رRoŒRƒ>H ¨¨p'aj»ÿ„Ãå‡"0¯ê…€ ‚ ‚4ƒŽ0hŸß¨¿t~Õ~Bo ¡OÁœ˜UÈÐYý„e…˜^ÖN½ÖL¾RÓ/TcÏ”#{Mßw_¼×uÞÝqæú±SŸýý_ŽÿƒrôIÿìªÅÎi&D‚lA’ èNoYÑ™—ˆ©EíÄOê«ÏT#ú.×sñŸÝçÝÚQÏ€cÕ²â/ÁD"‘L&S©T:Îd2[Y¶³ììå /í&‡ã¸:^îƒ!Ö– ¬„ÉdÚg4M‹(°•Ëåâmc±XaíâÍY–­-s»Ý¾ÏñˆÌJ<Ð=èIÅüãñ¸D"ã°T? ãŠéä'k®6SLñÔë¹+³6ïuUòx½^‘-x€†õï“ÚüÃ2 &^q?ªz! ‚ ‚  # ªùÓ´iè¾Èêm!Tƒ)˜³ªY:«Ÿ°¬æeíô’frQM/¨®>SŽþØwùaÏ0ÛuáNÇÙ›Ç>ú¢ÝøYÛà'ÔÍþÙ5T‹)Ì‹œ ½“-H2½Õ¯³¼Õ™—ˆ©EÍÄOê«ÿR<ê3=è¹x·ëÜmýäóǪeÅ_‚‰D"™L¦R©t:Éd¶²lgÙÙËA_ÚMÎúúz]ît“É®öŸMÓ5çàt:«Š%0—Ëåâmc±˜ÀÜ`0ˆ7gYV`…‹´u»Ý5·ˆ‡¢¨¢žãñ¸L&«Á!´"2“Ÿ°QEÍ C‹Œ Â᪃„á}%2ŠHêõÜ•_›÷·*<…k,•Jç²FÃ^H’, £Ñ¨È(å‘H$^¯ 㮸¢?U½AAaÐUõÙ”:ÜNXz[ÕH +æĬê@Ö€ÎÊ?a~«~£ôi&^ªÇŸ«Æžö]ñô^ºß=ôM'u[qúËö“®¶Ÿ¶¿F΄úg×P­¤ð;Í„H^¶U=Ð[ý:Ë[bz‰˜ZÔÐ/ÔWŸ*G<}¦û=Cßt»õ‹oÀ±jYñ—`"‘H&“©T*Ng2™­,ÛYvörЗv“³¹¹)‘Hj»ÇÁÐh4º\®X,VÇ”8ŽS*•UeBQT4­6À‰\.o % Ì ƒxs–eæ4M‹7D"PruÓÊ¢P(æççáé+åÚ3ïP&“•wXªüŠ[n‹Ú +ŽU55Øv»Ý.¾:˜)lcU¥‰Ï¤æçn7sss彿Uñz½˜EÅW8„é}ÀI’,e%þÅÆãqÞ +òÙýOs+,§üyAA¤t„A¢?{›™Ž37ô¶ªÁä¥cVßÉÐYý„e…˜^ÖN½ÖL¾RÓ/TcÏúFõš¾ë¾x¯ë¼»ãÌõc§>?zâÏGŽ_SŽ>îŸ]CµŒÂ9Í„H-HÚVõL@oõë,ËÄô’vò•†~®{ª¼òCï¥ûÝCwº¨[¿õ86P-+þL$Éd2•J¥ÓéL&³•e;ËÎ^úÒn~|>EQq0 3777??‰DÞkV‡¦i™LVæ+B¡P8Κ3±Û퉄w?àOñ¶°Àд|&'ôD¼y<'I2o.—Ë¡Þjó‡Â!g¥RYþ[K*•F˜šøFÅb1hlyÏ|ÉЇjÓæ‰F£°N¥zÓïU½VÅd2 >é××׫MF¡Pœ°,+Æ0‰äKðù|ð»ÚЂ ‚ H³2èƒ>@²(Î\×Ù‚¨FÒjNL€Y9Âê',+Zó²fzI3¹¨žXP{ûFŸô^ù¡{øÛ®¡;Ô­c§¿“LK@2ü1H~Ÿú¨˜~ï÷^¿¼÷œP[FêÚ†j[¼ªï¹¾UH)'yÆãqŽãxžAÅÍ„­„ítù>´|âóùv]æ½^ïÚØÕúäK ¥HÚWI’,‚2 +d8€“ÂÔA9~§¸6hp‡!…”P*LG¡Yœ^Â\‹˜s^ï˜Õuý¦¥&5oÕÖñ:ËHmÛPM‹WÑ8X}åAUÃÝ +ÓíšÆÇõ7?@J#‘Tº— w˜`‚F†5º– Î9Ü>ƒÙ¦tï´ÖŸÕ–ŸT×_(›ŸªÛžŸë]…”r’‡`<ç8ŽçyADQÜLØJØN—ïCÀ'^¯w×MÞï÷¡³Ù¼«ŸÏ÷¥‹à¸666†‡‡=ZŸèê’ïrÀ¡¡·¦Ñh’› Ã0ù.'G¤}•$É"(#s;Å÷Š‹oD䘩/‚r +üîÏ;ƒÑƒ; )˜„Ra‚8 +Íâtw-aνcVß5£³½×vúÔíu–ÑÚ¶—ÊÖgg›žT_}Xué^å…;_ß"º—ëo~€”@"©t/£—N¸Ã4Ò£kÉàœÃí3zÛ”®ã­Öú³ÚüZuý¹²ù¿ê¶çzW!¥œä!ˆî“Çñù®(¤!“$Yedn§ø^qñ€3õEPN× î0¤`’‚3Á¡Yœ^Âœ ˜c^o÷ëlÓZjRsãÚ:¦2¿V¶>¯i~ª¸:pæòýÊ‹ÿ9}þ–¦}¼þæH $’ ѽü1î‘ é€Áµˆ;æpûŒÞ6¥ëx£±Ž©Í¯T­?*›Ÿè¾!{W!¥œä!ˆ.ÇñíÜœ‹ ŒÌ휔W ‹€œ1õEPöÞ6K\ÅùÜaHÁ$” +ÄQh§¸k s.è³ú®í½¶Ó§nŸ¨³ŒÖ¶½T¶>;Ûô¤úêêK÷*/Ü©øú–Ñ&º#¢Îr*î0zÝF&dd‚š5¸–pçmû/jËh]ÛËÚoþWÓøë˜ {W!¥œä!ˆ.Çñ´¤Y__—Éd®ôAéärù~_Öh4±X,ßcàó(Š’Ö*˲Yí+J}¡~³Ú×Is•™49hû-‚2 +d8Ç‹€œ1õEP2ÜTKÖßu7 î0¤`J… â(4‹ÓK˜ksÌëí~]×´–šÔt¼U[Çë,#µmC5-^Eã`õ•U w+L·«ÿù€èŽ@Š:Ë©¸ÃF&ddX0¸qçŸO.—ÿòOD,Ë÷hØEQÒreY6«}E£Q©/ÔoVû:é`®2“&‡$É"(£@†sL°hÈS_åø×Ô¢Tûí+ƒ; )Œ„Ra‚8 +Íâtw-aνcVß5£³½×vúÔíu–ÑÚ¶—ÊÖgg›žT_}Xué^å…;§Ïý ³û‰î¤x³œŠ;lDaBF†5ЃkwÌaö=5¥ëx§±Ž«-#ªëCÊfïÙkê]³dï*¤”“<ãñ8Çq<Ï ‚ ŠâfÂVÂvº|Ú>cmm$É#ßùår¹×ëÍ÷ øEI‹–eÙ¬öF¥¾P¿Yí뤃¹ÊLš´KA2œc‚E @Θú"(G¾£·¿|¥Áè€Á†@BRp&ø14‹ÓK˜ssÌëí~mZKMjn¼Q[ÇTæ×ÊÖç5ÍO×¹|¿òâ÷§ÏßR~óŒèŽ@Š7Ë©¸ÃF&ddXúý:qÇfŸÑSSºŽwë¸Úü“êú e³÷ìµGõÌü?zW!¥œä!Ç9Žãy^Q7¶¶Óåûа/ŸÏg6›årùÁoûA Çb±|×J‹ßï÷x< $I¢?ÐÒ=ÈSEIK—eÙÏ~§§§µÙÔÔ´¾¾žü-o¯×‹>L>¨P(ÐÏd¿WVV’U¡Ÿ†ÔWYY¹ÃÎÆ÷Z[[C#B]h4ô¬L&C ª2<²_å¨Èd#úcllì Žt—h4ŠžE­I=¢ÇQShÎ÷›ê£ÍU²ld×p> =Ûßß¾,mkåååÉ5ƒ +ÎülÞçG"MúþAúÊà8²· tÿGû¿ôúP›èŸÐ0Ñçÿg¿ìbÓ¸²8î‡Õ +­´’v%žVÞ8NÆ_x0 ¥JØÔmÉÆIHêÄÄ® 38/ÔOlUUÝín¶ÝtÙ¦M-GUH›¸¬“88þƒ‘ü£yä‘Çða{÷„±®°.Ä%&6秿,Û÷Ï=ç̹3¿¤œÊ/1¬ $WDª¥˜RqpÓÒ&Hí…ɳÒH&“•LGjÑ35 %`Î}©sFPo‡Â[–9Cä‹ÚÑ­mN3ê¶>SóÓìðT×àª+?t\þ¾íâZÏuôÌ?ZLmî¹ÑüÞ ÃXupµ²%gDÂzAÔ9–töÎ6«y®áŸtÿÌ>TYîw^º×~áß­g}Ç„¹“¯¢êYÒ!o×ét:“Éd³Ù\.·žg#Ïævj}h#‚ åEÑï÷»Ýn£‹Åëõ‚'•JÕ:S¤îX[[3 Å_ðO¢ÏåyžøaËzˆabbþ …BJ¥Rö;Wú<Oñ\x›¢LW(>ŸRÝŽÌ].׎póV±R´Ýd2Ñë…º’ÉdUzUªœbà F ý„çXåýÜûþì¢d:Õjˆ”F,cF6˲”Ó¡l9•Ô «Ë>dEÂçó호¶¶Æ0LÙ‰f³9•Jí.s£ÑXÅJ%’É$åŠb0ªÒ«Råìh&,WIp¨ JØ]?wÄ©z^«d:Õm¤=¡×ÕÔÔ”H$vWNYý9P ˲…ÓqÓ’8¥’)› TYîwö}×~áëÖ³· ']«¨z–t¾|ù2Ng2™l6›ËåÖóläÙÜN­mAAö+,ËÒ?<•J%¼“”šÎó´AÙ—ø|¾J><].W©<Ï›(Š²žÑ +E0¤Ä1™L²q‰ñ€Ÿ^šÛí&f¿ß_lH&“ Ôàϲ™— +UÝJc±L„žË¦Jõ¼V¯ˆÓh4Ê âaY‚{&&& mb‹Çã”…jÞŸ²%Óys äwxB¡PaœâŽURÝPøÝáf³YU*•ð…RlÀMK ²›F ƒl¶‰<”z¤ºôŒGA •ß·žÑ9#¨·@á- ËÈ!rŽ%ntQkŸ×Ø^h¬Ï»¯=U_ ²CT:û'Ûûï0go9í=üþg‡N}¢²LÆ¢¨ƒ¨Izgä•„°^u£‹:ûg›ÕZg4ü´zè1;PõOvôÝmƒÑ{ëøõÈ ×*ªž%‚ðN›N§3™L6›Íårëy6òln§Ö‡6‚ ‚ û³Ù\ɇ'˲¥"ðŸ¯D¹e¨ÛM[8êv»éu!ÈÞÐ35 åh¿tO猠j­0',¿’Cä‹ÚÑ­mN3ê¶>SóÓìÐT×` Ór¿ãÒ½¶‹~æÜ—GÎüýðŸ7¿ûéÓMÃXuµ"I’Ö ¢nt‘³ÏkGfµÖ ?­zÌTý“}wÛÌw˜Þ[ǯGN¸VQõ,é„7´t:Éd²Ùl.—[ϳ‘gs;µ>´AÙ—(•Ê +?<áµD6ÏóÄ#Š¢¬‡ +E(*•Œ ÄÇ‹ ‰D‚`]J].—‹¬˜L&)N“É$9†¡d€“g‡ÿVZ–²Vޫ´Fcñ(i&àóùè¡ +wT,+µPÍûC/™Î›h@iÜ}Ð1â„‹ûºåÐ °ùËn’”_ÊC§n7-\>2d±XèÉ ÈÞÐ35 åøÍïZ´Ž%3‚ªµÂ[–9Cä‹ÚÑ­}Nc›í¶ÎtóOØá©®~R]ù¡ãòDû‡ß´žÿ×ÑÞ/ZL7›ßóüñOn­õ™a,Š:pZ‘¤wF^IëQ7ºÈÙçµ#³Z댆ŸV=êx êŸìè»Ûf¾ÃôÞ:~=rµŠªgI‡ ¼¡¥ÓéL&“Ífs¹Üzž<›Û©õ¡ ‚ Ⱦ¤òÏD"!çyâE‘¾ŠÑh¤$ãõz‰3 + b€u)¡ššš$˲ ‚äT(”Ì•Je2™¤‡ú_õ*-‹Çã¡·½ò^•M›aÒx;­<±@ ðZ ö ?f"ËÞ7°X,”ž”C7Àæ—FÝnw© Ø +·S)êyÓ’| Õ±XŒž‚ì=ãQPR-§½:gUk…·$,s ‡È9–¸ÑE­}^c{¡ u_{ª¾d‡©töO¶÷}Ûváÿì—]LÙ†¹¨*T©’UõÂRoØÇ86þ·š&š4lêÝŲ¬Œí1QÄMiw»Óíí.»e[ +Úí°«ï¥N¶díBœ±%”ÜøÒ—¾ô¥/í™Ò›lÏO~p€ïÑ{>ïùÎwÞ™ññü]sñƱ7ÿtôü‡Gν×þö¬c,:pZ+ËH>·S¬Í³zW-ž¨eä¾iè®qpÉп¨÷ Ýåym÷Œ¦kú'?O :Ì*‚è'b±Xä8ŽçyA6Jl–ØÚI£mö%FÎ+§J¥ªW$IlcY¶¦‚i& +a'Ã0Õ†l6‹ hÝzuòù<¶Q%²"‚¦ilÎårÏÖ¹R¿äN%©l»fì2³’Ó6u:’¡f°jjJÑB˜=ÈGé•­9wÏAÌÎΊd"YGÜ€¿\.WÍé•ÏT0oµ‡ù¦œœÄ£ÍÍÍ( +©dcðòèœH!52øÎw¿oý¯-5Z‰mQq+’ŸµúcßËèŠÙ1,É{ƒw _éûnêÞù\{iVÓýÉñ µ9ßÚùAë¹÷í¤c,:XZ+ ]ܧ¢â6?kóŬÞU‹'j¹oºk\2ô/ê{t=óÚîM×ô©kÉ3ãA‡YåC°P(‹EŽãxža£Äf‰­4úÐ`_âr¹ä¼rQ¯I’ØƲlMœ:4;†©6d³Yl@ëÖ«“N§ålªšêþevþÂwºk;áp˜.®Q¢¥¥EJ¯,¦!<Ù™ EQJëˆ*¿\.êy×ÒÍÍÍåQµZ½kt×fá¦mªsÓ¢UÜnwu¨,jX²Ix±tN¤$Uc¼c $A Ub[TÜZ–ÿ¡Õ³xW-£+fOÄ4¼lºÛ1¸dtÙ~ù3íÛÿмõ×coþùèùß9÷žæÂÇŽ±è`ií©I{YTÜægm¾˜Ýž¨yxÙ4t׈n‰þE}ï‚®g^Û=£éš>u-yfü1è0«| +…b±ÈqÏó‚ l”Ø,±µ“FÚìWH’Ót»Ý2§³,[Óƒ Aˆ”BÓ±“a˜jC6›Å´®œ:---„Õ\¼qì©£ç?<òÓ_é.æKŠÖ¶HÚ‘¨„ŠÛü¬Í³zW,ž¨yxÙ46.úõ½ ºž9m÷Œ¦kúÇc‰Ó׳ʇ`¡P(‹ÇñG].—xD$iþÕÉGé•Å4$š‹ÍápXiqzLð(þ»ôa&“inZɯ¯jPŸããã•9¯¯¯Ë™ÏOçD +©úaDøÞÛ,þ‡¶@Ô8%¶EÅ­eùY«?fñ®ZFWÌžˆidÙHÞë¼ct©{çsí¥YÍ[Ÿ»ðÑÑŸý®µó×Hö@Ò1–­m+D—ÕN%ìTÜægm¾˜Õ»bñDÍÃ˦¡°qpÉÐwKß» ë™ÓvÏhº¦Þèéë@‡YåC°P(‹EŽãxža£Äf‰­4úÐà ÍfÃ%Ð2§$‰_HY–­éÁ‚ DJ¡éØÉ0LÍö°­+Rª¥¥¥lÓh427ò<+õ‹ì4—ËÉ)BÓ´xìò³’l[¥R•GÕjµxÄÔÔ®†n$E aö ¥W¶’½áv»±9N+­#bÈçóxÅ‹>Éd2‘He8;;‹ÒCñÞà¦}"ãë«“““xb0”?ž‡Î‰R ÖsïÛIPC•Ø·"ùY«?fñ=°xWÌ£QÓÈ}ùMÇÕ;†+·õ}7u½L{Ï܉î™ã]isþ±õuúµ³“_9ÆR ¡µm’v$*a§â6?kóŬÞ‹'j^6 …ƒK†¾[úÞ]Ïœ¶{FÓ5íðFO_:Ì*‚…B¡X,rÇó¼ %6Klí¤Ñ‡6‡’$ñÛ(˲5=Ø@„H)4;†©6är9lp»Ý"¥ÐBØ™N§åoçÙ:WêÙiåMÓõ* !ñØåg%ÙvGG6D"‘:è·«Z­ÆæL&£h!Ìä£ôÊVò2A¶l6+R§ùì—OlwÇ}¨*.ÕrYÉÒJ+â$6þÌ`ö`‰´lJgM¯Cœ°c_Œ|ز­Z«Ýn½»q‹7ë«g•5n„“¸ÁulÆHÈ'Ž9rälg_2ÅÆ㻼¾`¾óû½÷~oæ÷C&ãð!•Jí7¤À_’Ëå"¹ˆ€MûBÂë«…YÃëTúrLcP²OÞxó-íàS½+ŒªžÖòbBÈÉRÎUjx…t<Ó ý¤³µO4ýÂ6§êó·_¹ÓÚóMËÅ[Ê ÞÆ÷þyêì§ ï|Øøîg†‘êW¡õ¼\á³ÖÁ„ôNV?¼B9–Hû¢n`AÛÐØæÔWï©zgÛ.ßnéžRvM‹£¨Z¿ Â!0Ns—Éd²ÙìfŽ­Û;©ö¦ ‚ HBÓ´ðo”eÙ’Á`4E†‚Û§Ïç+é‘Éd¼Á`0ˆ åõz…¡,‹Ôd^7òýúE2F£Â%·Û]nHjϲK¬ÕžaÓl6‹Œ¹N†aö;‘À/PŸý®l!‡Q@¡P$‰ŽS.ƒßï®Bj"é”›ö…´×WIR©”p£Çã‘~#‚ÓXT‡ìŸßé‡ô®0ªzZD1¡—r²”s…^&‡–tö vpAC?"lÕ×¾W]½ÛÖû]Ë¥ie÷WMçoœ6vÒôñ‰3ïëèdž‘êøk=/W¸Ĭu0!½“Õ¯PŽ%Ò¾¨XÐö4¶9uß}UïlÛåÛ-ÝSʮɎ¡;G7Pµ,~|þüy:æ8.“Éd³ÙÍ[9¶wRíMAA…¦iá¯(˲%=‚Áh4Š · NŸÏWÒ£T*O2™ Á911!žLJ¥^;òýúE2…ãŸp R€¯E÷Â/…5)»ôZ‰‡ 3Ö×× ˜}wT€ßï—Éd¼>”œñèÔg¿+[4EŠ£P(b±X‘' +ã» RÒ1@çÆsÇl6JÎ+¤"‹òâWÚ´P=ÇSò ÃÇ ÜN‘)¤‚˜Æ" :äµPYïê]aTõ´–¢@N–r®ÃˤcI7´¨|ª¥kúêëT}÷Ûzg[{fš-_7]ø²ñÜÄ©³Ÿ4¼ý²ë ÃHuüµž—+ÜÁ‹ é¬~x…r,‘öEÝÀ‚¶^c›S÷ÝWõζ]žiéžRvM’ô|ç誖Åo‚p8L§ÓÇe2™l6»™c+ÇöNª½i#‚ R£Ð4-üeY¶¤G0F‘¡àvÁéóùJz¬V«à1›Í±X ~ŒÇã^¯7 :@]`†ñS©”`€ƒÜâñxêëëËÍ(1òÊfJ„pÊ›L&…€!©Â«âe—^«=Ãöûý…3‚mzzšƒÑ†)4¸Ýî#^Ÿý®l/ˆ\.ç?Èd20G£Q¸ +ãÀgøE°Y,ñqÊ¥#n€"×I€-‘Hì›V¤iù‰`‰ámSX=(ä%¬/„º!Èac‹€¤<øÈn~óû?ÎU½+Œª’ÖòbB/ç*å\!ÏÈ¡%=¨XÐÐÛêkþvëÿÚþümË¥i埾j<ÿïSïþý¤é£Æ¿ê‡W #Ôñ×:¯Wø¥˜ÞÉÂâRÐ öEÝÀ‚¶^c›S÷ÝWõζ]žiéžRvMêls£¨Z¿ ÂI,Ns—Éd²ÙìfŽ­Û;©ö¦ ‚äñûýf³Ù˜>À×jG„ ‡ MÓÂÿP–eKz<"CÁí‚Óçó•ôÄb±º2Œ™Ýn÷n›\.'b÷ï%g”ye3F£2™¬06CŽÂ_†Ù³ìÒk%%ìÂ…^}pˆ=âõ‘‰•-H (Ù–…€!‘HˆS.= %–’@ña ŠnǦiZˆ¼h:j÷rCˆŒ •Å4I|@Ýœ>÷¹ÞFUIk?‹ Q 'K9WÈáeÒ±¤ZÔþ¨¥y¨¾þ@uõn[¯¯õòíæ®/N›??ùÇñ†3k¹x«cduüæõª V©\'ö và‰¦?@ØæÔ}÷Úómp³©ë†æº¿stUËâ7A8û¥ÓiŽã2™L6›Ý̱•c{'ÕÞ´A<2™¬ðL®P(ª‚.4M ϲlI`0"CÁí‚Óçó•³¹ÝîºRLLL”S©T–ôBD2™|íÈ+ž©×ë-z™Èår¿ß_8W¹²¿\+‰aƒÁúúz‘2BÌN°G¿>#§‚ S©TáÓT„Õj=HaŠЂaÊ>þ +ˆ +ö²Â` ëÝÏ 6­à,jÚx<.ÔgzzZdp©8¦±H¤-qÞxó-Mÿ¼ÞFUIky1! +äd)ç*5¼B:žé†~Ò >Õ<ÑôÛœªÏß~åNkÏ7-o)/xßûש³Ÿ6¼óaƒñ}½+Ô1²Ž:æ +ózÕ¬žNX&K¤=¨\àÛ@Ýw¯ýÊlkÏLs÷ͦ®ª+ßvŽn jYü&Ç¿t:Íq\&“Éf³›9¶rlï¤Ú›6‚ ’§èL®P(ª‚.~¿ßøŠD"QÒcµZyÃÄÄ„ÈPp»0T4qƒAðš\.‡)’ÉdI3¨¼^¯Åb1 EO( âñxDæ’ùad +éÐ4­T* Ó„_âñxÑ\åç‘R+éiÂãããPÌÂÀøJB‘Å#‘>Ñ/PŸý®l9*UáÙ E +_}>ŸÄqÊ¥#b€æ‚Ç¡Ü!A‚üÝlÚrM o!XDˆr)Z\ˆ-•J‰Ç€ Ç4Õ!à·Íçõ®0ªJZD1¡—r²”s…^&‡–tö vpAC?"lÕ×¾W]½ÛÖû]Ë¥ÿ6wßl:ã´ù'MŸ8ãi¿2Û1²Ž:æ +óÊ÷Ãê™U +ÚÀ±DÚƒºÁ-=OØæÔ}÷`¹[{fš-SM]“í=3£¨Z¿ Âñ,Ns—Éd²ÙìfŽ­Û;©ö¦-àï{0ðð ¯MÑ\¡PT;"AvÇc±Xµ£ØðÑÜš£Ñ(œW«ÅªO ÏQ‘¡Ä!‚ß°àÞ! »›Ûí7E)â(4-Äp4‹ƒÔ¦±¨9Í–¯õ®0ªJZË‹ Q 'K9WÈáeÒñL7´¨|ª¥kúêëT}÷Û¯Üií™õR^ø²ñÜÄ©³Ÿ4¼ýÁIÓG#ë¨c®0/¡ôÌ*õ² –H{P7¸ ¥ç Ûœúç˜jêšl½ôŸÎÑ T-‹ßá@˜N§9ŽËd2Ùlv3ÇVŽíT{ÓFŽ4Müü`µZ«‚WŠž&…BQíˆAäÿì×MLéÇqUUZiUõ²—jxõ ~7R-R ë$@€ „ƒ1~™#EHm6›64m6Ù „. iÞ!»$$¼…—ü2cUÜräè#GŽó¨ÛeÔ쮺cËÿ¾sx,ñè7ó¿%‰ýÁøᇷ··÷fæHx/lýëJ?ÿ³1Ïýâ—`ÞUÒƒÔ(šŽáˆTt„ Ã¸/ˆ{×0Ïk´gÉêZ°t͘SFûCëC}ó˜¶qDsæfi͵bÛ•Â-Ï+zãP.KµÿÏ@2‚ +oÿ ˜{ uÍ[º^˜ÏklŸ(o¹§;ûµ¶þ–®q¸²oÊçR#Èó¼ ¢(J’$ËòNÒnÒÞAj6È›››y@DíŸ@®‚Û W$‰ýÁºpáÂ?<77·ÿðøøø‘ð^Øúו2òå˜ç>B;I R£èw1¡D³Æ©î[üÔ½Œº^Yœ3æÎiSÇSCÛãòs÷tgG5 C¥µƒ%§®U^V;Xчr¹Xºÿþ'L„ B„/ˆ{˜{ uÍ[/ÍŽ)cû„¡åžþ쨶þ–¶þ«Ê¾ (ŸK Ïó‚ ˆ¢(I’,Ë;I»I{©=Ú [°,›‘—AÔþ)ä*¸Mr…ò¹qìرýÁÚÞÞ~ד[[[Êû붹¹y„Çd˜­])#_Ž ¼å!ÁD!5âÒÑ,®DEp*ŒûB˜w óP÷ŠÕõÊâœ3wN›:¾5´O”·Ü×5ÝÑ4 —Ö~QrêoEÕ—‘ßÿëY¬èC9[,?J*1ÉD:Lø‚¸7€¹—P×¼ÕùÒì˜2Ù' -÷õM£Ú†[eµ×?þÿ+û6 ¼-5‚Êk° ¢(J’$ËòNÒnÒÞAj6È,ËfäÍA«ÕªýSÈU‡n‚ jŸx§ãdzÆÆƉÄ÷xóæÍÀÀÀ‡~¸ÿØðð°:gdˆ­])#_ŽàW¿)E=‚‰BG·N³o£"8Â|AÌ»ŠºW¬=‹–îys׌ÉñÌhŸ,o}¨o¾«m);óeÉékŶ+…UŸiê‡*zãPÎKç’J G2‚¾ î `î%Ôµ`u¾4;¦Lö CË}}Ó¨¶a¨¬vðwL¸²oÊÛR#Èó¼ ¢(J’$ËòNÒnÒÞAj6È,ËfäÍ>¦ø¿ºM‚¨}"à‰„2U?ý-‘aµ ø¹lýëJùrŠß~ÜG0QH¸t4‹+Qœ +ã¾æ]C=¯Ñže«ë•Å9kîœ6v|ch{¬?wOwvTÓ0TZ;XrêjQõ媋¬èC¹Y,?J*1ÉD:Lø‚¸7€y–QׂÕ9cvL™ì†Öú¦j†Êê ÷Reß”·¥FçyADQ”$I–å¤Ý¤½ƒÔm-X–=ô |F©}(ò ÜA¹%‘HØíö‚c±XæææÔ>, lýëJ?zëÁOg:ÿŒ`¢Ð‘Ç¥£Y<Á©æ bÞUÔ½bíY´tÏ›»^šÎOí“å­uMcÚÆ‘²3_–œ¾Vl»RXõ™¾y¬¢7åf±tþ(©Äp$!è0á âÞæYF] VçŒÙñÌdbh} oº£m.«Äœ/*û6 ¼-5‚<Ï ‚ Š¢$I²,ï$í&í¤öhƒlÁ²ì¡õGDíC_àÈE[[[ÃÃÃ555Z­65aÊUUUv»}```nnNí2ÆÖ¿®T2çƒÌ&˜(täqéhW¢"8Â|AÌ»Šz^£=ËÖîK׌Ù1mìøÆÐöXîžî쨦~¨´v°øäÕ¢êËJ¤Ÿ«èC9X,?J*1ÉD:Lø‚¸7€y–QׂÕ9kv<3uLZê›îh‡Ëê¾0µ?®ìÛ€ò¶ÔòÒ7ßÕ~ú²3_•Ö\/>9PxâRaõ%’á*üq(׊½‰’J4GÒ,AEßØ-»˜6²+ŽïCµ²*µòCU¹R†$€Æöظ¥R&MÌ’‡bBŒ=¨¢BH‘EŠµÛ¤ÞnÚx³Më4Ût²›¤d“lœ/bà±É}ó£ýèG?ú Øžz( 3þ/âüô°Ç÷œó¿çÞñ½s”m†òk­o4—|äÅg-½Õ=lS×?NQßy³öøõ_ÿné7¿ÿjŠ?“Éd*•J§Ó™L&›Í.çXɱº™>´‘ÝÇq‚CŸ ˆ¢P8ær$ ñ¯‘HÄår™Ífš¦-‹Çã‰Åb%s†÷ûý®Eçp:ðurrRJ†ÊÜñxÜívC-Þ0TdY6JÌÞ d||ÂaÖðÙëõBΊ ‹æø|>¾9|gøBt»¬TÐîÿjHq'ëá•ÍˇúT +³f†ï¿^lž +Ìl¤Z»z+ï Tá=”»¬‚ ‚ "‘ö‰%ÐÈÀ>ü‰fpJÏ„PÛ«àš²(û<52§³½× Ok§4Ö×ä¥-Ÿ6÷þ[Õó éÜ— æ¿ÕŸôÔv|zèØ'Ž^%_Vw³­£‹¨½¦^&ô?98½= ™£lï©!¿nð­và%yñYKïc5¬ûÙ{ §ÿZßùç:Ó ýðTÛXµ?Å‚Éd2•J¥ÓéL&“Íf—s¬äXÝÌNÚÈnã8Á¡ODÕ«$¹ž_&“…ÃáõŸb±˜ÉdÊ{ýðx§™ÕÙf´Cï4ƒoÈ—-ýÏ›ûž¨-›ºï7vÝUžº]×y³Ötã`ûµš#Κ£W L°utµ§´°&&d9‚G@?2§·ÍRÃÓºÁ·Ú—äÅg-&Õ=_©ÎÞk<}Gyâ/u¦?júž´…QûSü!˜L&S©T:Îd2Ùlv9ÇJŽÕÍìô¡ì8ŽœøAT½Š ˲üóH$"—Ë Ý=hšä ‡Ã‹¥Ü; ”ðûý[w 8N)­V«8m"‘€çR¡J¹æ‰F£f³¹¬Î¸Ýîâ9= Êh4J·är¹á$I–5#A¸R©,}†Êd2é}à]Á» ÝØwÕÛÕâTRÞA('N®P(Êš‚ ‚ ‚H¡}b TÖ)‹†®»z&„Ú^×äà(=@Ùçt#³:Û{í°_;8¥±¾&/½h¹øTÝûXÕó ñì½óú“·j;>=tì“G¯‡/«»ÙÖÑEÔžÒš˜ä½}^o›¥†§uƒoµ¯4ýÏ[.L6ŸÿJuîËFóåÉ[u&·ºû~ÛXµ?Å‚Éd2•J¥ÓéL&“Íf—s¬äXÝÌNÚÈnã8ÁqODÕ«J°, ý~¿L&+rñ izc—˵•kŒÇãÙŠÛX,f4¥—³Z­sF"¥R)=|||¼Ü&—ìg!L&üuJ ‡Äãq‰®H’ÜJ8¬ZY>Ëåò +šÀ#}“|W¥]7UÉwªˆ3C]x¥ûGAA‰´O,*¾f#%ùð§¿ÐOë™j\“ƒ£xÙ”}Ng{¯³Íh‡Þiß/[úŸ7÷=Q[6ußoìò*OÝ®ë¼yèøõƒí×jhgÍ‘+&Ø:ºˆÚ;ZX2€Aƒ# ·Ïëm³Ôð´nhJk}¥éÿ¶åÂdóù¯UçþÙxæïÊ“žºwéÏÛƨý)þL&“©T*Ng2™l6»œc%ÇêfvúÐFv Ç Ž{‚ ª^EP‚eÙh4*—Ë‹_¸Ýn«Õš÷#qj‚((âÒN§~b>ç-§P(âñ¸ßïß8)£ÑèÊVó¶‚/!±½âEäo‘Hd}ôÇçóm™L–wp¡üâæ[,)Æ \^cÉ„À*t²HòÎ  i¦ Áå€ðµÐª,ËJ±'ˆª`WJUd£Â‚Š·L&%Å3‚ ‚ ‚T@ûĨÐý©Mçè™j\“ƒ£@öeŸ§ìs:Û{mF;ôNc}C¼léÞ|aRmyØtî~ïòÔíºÎ›‡Ž_?Ø~­†vÖ¹b`‚­£‹¨=¢…51!È48zû¼~d–²Íè†Þi­¯5ý/Ⱦoš-TÝÿjêò6œº]ÿÑgµÇþ`tÚƨ}(þL&“©T*Ng2™l6»œc%ÇêfvúÐFv Ç z‚ ª^EPB¡Pž8ÎD"ÁŽÇã^¯×d2±,»žÁår­–Ëå0>©‡I’_c|>_¹nÅý'‰D"àJ<˜¦i™L¶ñ ¸o‚p¿ß/ÆiKº…v‰û OÄUÖÖFq9Ø yÇC*ÁH˜,üÛ”ôfµZóöPb8ôY óŽ„Íë".»úS¤y£À^,+iOÜsÁ“’»ºPªBï ¸†û§¤[AA©˜ö‰%PÞ»=RE~ü³Z}^Ï„PÛ¥à÷rpÈ ìsº‘YmF;ì× ¾Õ ¼"û¿mîûFÝûHÕó ñì½óú·j;Üûñ£W‰Ã—UÝlëè"jhaMLÈr NoèGæ(Û 5ä×Zßh.½ ûž6÷>R÷°M]wNQßùYíÙ-»˜6²+Žç¡ª¬JUýÐ?UCø2`ðس4‘'r§äÃ,„˜¯0€±)‘,ÔHŽ"ÅJ—ÖjÓÆM›•Uš›4»n6›:ˆ!Ì¢ðèGýèG?Žg ´›$æŽ=bH9?ýûî9çž;¾Ó>IÑÏ_]Be/AžçS©” ¢(¦Óéõ 6w²ß—6pPà8»è ‚Øó,2ïjµ:‹]! +!³J¥òx<ÉdRIÒD"¡Ñh°t Ãì¦Z‹ÅR(;êõ"ÿåp8ÐCš7œeYÔÔ_´ZäÁ¢ÚÚÚPïòQ¨Œ¼…üÒD'§hmè,Ú +%á4McQ‘HD¡áóùŠ¦@E’¤4Ön·-ÔÚŧºÐRyŸAtð´Z-æDg剠 ¬+H2/ÀÀ^Aüê7f& +ª –¶åæ($×"åZ ÆæMÎ9Óè¬qdÆ@¿"‡žë¿oé ë.=jêþº¡3¨=·®ãvMûdµõf•Å[uòz+³ôÙø ODË[b¢­Y¹9³kÑ<6O9ç¨Ö4/2H÷G¾åx<. I$E{D 2cá…ÆÁ0L©íHkËÅëõ­E¬µ¼ûj.oý,h‡I’”®°¶¶&X¨µ’NuÞ¥¤Ï j\Z$JIJlI‰  ¬+H2¯÷ÀÒìxlf¢ JiéƒÜ…äZ¤\ó¦±7&çkã(kž6 ½ Ÿµô?iî}¬ë 5vM5ØïÕŸ½S{Æ_}úÖÑS7ˆ×tCŸÿúD´œU+Ý’{©Õ½h›§œsÔè¬ixÚ8ôœxªï 7÷<ÔuM5^¸§=ûç:Ûï›:¿:~ut•½yžO¥R‚ ˆ¢˜N§×3ldØÜÉ~_ÚÀAã8ìŠW«Õ¾R‰DB>K¡× –e?jwè‰P©T¹µZmѨ¼¥Úl6´š|`2™ÄÒ½ÇãñÍ»¶¶& DÊ„ e1?šHÑD2á Ãäu¢Ia΢;  ÍA’¤|x,“Ž@a¦è°r‰ÇãeŒ¬Pkeœjl‚ r¿E½ Þ1:iûñ€,Ö‰$™×{`ùÉÏk£³f& +ª”–¶åæ($×"åZ ÆæMÎ9Óè¬qdÆ@¿"‡žëž¶ô…u—5ußoè jÏß­ë¸]Ó>Ym½YeñV¼nf¸ÖñeЧ è¶ÞÍÝì^ \óÔÖÄYãð´aè99ˆÆýmó¥‡MÝS ö{õçîÔžñ×Ú¾<~ut•½yžO¥R‚ ˆ¢˜N§×3ldØÜÉ~_ÚÀAã¸Ý¿´µµÉgÉåõz+Ð A¹IU*UÑi©$I&“I%醑†Ûív…ÕÚl6,–eY¿F£É5£?Ñ€Â\ˆD"6ë4¯-‹9ñx\fqÔu®Y«Õ–î÷û1(Ê[˜Z­ÆœGù&d‘î<ÚLùé ”{ª±EСÍý–¦iÌ€f!0`±N¬ å}>²×ÌDA•ÒÒ¹9 +ɵH¹æMcoLÎ×ÆQÖ0Ym½YeñV¼nf¸ÖñeÐWt[ï†nv/P®yjlÎäDãž6Ð/ÈÁgúþ7;þ¥»øuãhÖ©ûõj>ÿ­að»cWÞ‚›²— Ïó©TJQÓéôz† ›;ÙïK8(p·'¯òY0³J¥Z]]­Lƒ4McÙãñ¸|æ'ByºH$‚…[,åá>Ÿ GŸ2ÌŒ>Qž+ *[¤ÐhB¡æ´Ùl…–ÅΕV«Ej4šÜív{¡ðd2©p¥;Æ0L‰{°úñÄÊC„Ãa™̼›S-õþÈùý~i–eËËåaXA:Týø§ú¥™‰‚*¢¥÷¢ÜÜ–\‹”kÞ4öÆä|m™1 O†^蟵ô?iî}¬ë 5vM5ØïÕŸ½S{Æ_}úÖÑS7ˆך.>h_xE·•º›3»Í®jkܳ¦‘#ý’¼üLßÿ¤ekÖ¿j/Ü­ïøcMû—º®à±+oA‡MÙKçùT*%‚(Šétz=ÃF†Íì÷¥ 8ŽÛýûAòYJõï!4McÙãñ¸|Ènª]]]ÅÂ-‹òðP(„…£ú ™ív;fFÙ•çÊ"ÝŸH$’×™L&1§J¥B¿9yÍ>Ÿ/×éñx¤¹Ôju¡ðp8Œåòûýyh{1g0,u²H·"[v!0ónNuÞ¥¤‡m8˲eg€ò°N¬ *ËÏ~ñK“kÁÌDA_Käæ($×"åZ ÆæMÎ9Óè¬qdÆ@¿$/GôO[úºK›ºï7tµçïÖuÜ®iŸ¬¶Þ¬²x«N^§œs­ãË ¯hVÙ‰›Ý‹æ­q¿19_›FfŒÃ¯ÈËÿÑ|×ÒûX×jêú{Ã…¿ÖwÜ®µM¢]y :lÊ^‚<ϧR)ADQL§Óë62lîd¿/mà Àqv³«T*K‰°,+ŸKADeºCÐ4eÇãò!»©-Ž…£ýQ +…°pT!3* 3G"®D¶ª¡PFÔ‹4£gÖ‡±pT@ÞpåSS«Õ˜³èi,„×ëÅ–B›#ãÇÌ»9ÕÒ¥PèIÌýýYvkeƒÞ-ѽàóùÐo8úÿ~—üÿ€nöìѲÙl'$‰ý. +€‚X'VŽ§êì—]LÙÇóPU¨R%«êƒßÖ _ Œ=cjñÌ"'1ùt6lÂG{x°PÓz).UZ·›7[Z«iRoÒtÝ4K½'|#~ô#~ôcü¨q†;Ì0ø#àþô²˜{Î=÷ž{ï¹·í #Áú(ZΉr„wd_¢ì äÐy<Ä\˜h´Y__ß7álÃÚža »ÕX¡+šJ¥Bþ_QQ!6Ì‘&‹uvv +?%|[üÂ+Äjµú|¾D"ñÑ¢:Nð ü.Ü¡BÒ ]Èq¤ýÈ ÎsT‹ðhÁ_*_x•ìÛ .0üìÃ$»³p«‚³’éJù›`0€yttà‰‡)j¢ËÈF°J¯år„)}‰²/RC ¤mŽ|c˜Õ3ÓÄÝ`ó×MÝÝí Ïênø´××\~Tuña¥ùÁiÚõÉÙQýÝÉ–á,+²«÷é6: × ÔÐiƒDo`þGÜlîyÕÔõRwëõŸù´××^þ²úâÃÚK_¶Ž¬a(qEîrÉd2•J¥ÓéL&³™e+Ëö^Ê]´1JAøZÔh4Eï¥(]À[Õb±~cÙØØ(]´à1§iZ¾9ÿuÆÁ0ŒÌŽ +G¥R9NéÝn7bÿAÚhµZ~Xc¹OÑh1÷ù|ˆ¹Édâ7˜á$À¤ã—@¸‚h4.dãìë* +sŸ`#äÝ£4àÞÇŽp©ï œ‡ÐñÀ²¬LsµZÍ?ŽJÕq‚_˜àw!®•nù® ¨IÜäû9•-RP4ë1ŽÜaÄ&ÍåråÚx<žB\)Ÿc3 0®‚äŸx˜¢S{}ÂÈF°J¯å]9Â'ûe_ ‡æIÛ[Ã`Hß?£ï›"z'›z^5v½ÔÝúºþæ“:ëDí•ñêvOÕ…±3m÷5çîUžÐ2¼‚¥lEvô>ÝFǒѾHeMÌú§õ}Áæ;ÿiÊf¹áæßê®U{åÕ–ßTšü̱Ð:²†urÄAxž$“ÉT*•N§3™Ìf–­,Û{)wÑÆ(x“"Õ\£Ñ½—»€µMľ׊Š +š¦†qg ƒa‹ià“§hÁ9b±É7G^gŒKfœÌ’ü¾òc}}]z€È ¨T*$*˜O~«ÕÊÿšH$ÿ,ËŠ#œíB&A8ùÒ¹C²qÄ\¹\.á‘Ã`Ž.°[…G´Z­¦³ì{ææ@œÀ!™û +&œ-rÎðþ¢:NðÏÆgO¥¥{_W&“i_?PËàFq ™hµÚX,–÷L~d .ÃE‹‹nY-£ÑhnŒY±rœ[àœâª\}N0˜#yttØSD~ðÃëû¦Œl«ÄZþ G˜Ù—(û"5´@ÚæÈÁ7†Y=3Mô}×ÜûmSw@wûECdzº>íµÇ5—U]|Xi~púS×'gG;_´ ¯`)XN¹tèyj'Ñ!Cÿ´¾ï;¢÷uS÷7·Ÿ7t<©³NÔ^¯n÷TÿÑhYÃ:9⊠Üå’Éd*•J§Ó™Lf3ËV–í½”»hc”¼"‘j¯×¢÷Rx,Ë +/ðnõù|bO6†a«ÒE Îsš¦å›ûý~Äâ—'‹Åä÷•7ðlDú姂ÕjEÌ‘ŒÀ»•ÿÎ,Q±HÀP8 æW ·Û¸êìì”h4.dãH¸‚õ##„šw_Œr@–7AÁ`i;ÚétÂAÁµ±X,Hþ‘"<.àTs•J•k¿ãñx©£:Nðeø·¥¥[ÚU(‚Àj¿ZÉôù‚¨Ò IT7EÁ¿ØHÜIrÃY$îfzΛtÝ”ãª\}N0˜#ytt +SV~Rõ)i_4²¬k9'ÊÞ‘}‰²/Có¤í­a0¤ïŸÑ÷M½“M=¯»þ¥»õuýÍ'uÖ‰Ú«ãÕí¿«ºðë3m÷5ô/NÓ¿4²á–á,¥*²+.ÝŽ°Ñ±‰¦lsä`È00£gv²ÜÜhì|ÑÐñ´þÆ_µW½5— Åcu׿jYÃ:9⊠<’Éd*•J§Ó™Lf3ËV–í½”»hc”¼R.ýÊ»ˆÅbÂ+‡Õj•c ¯!Äž?¥‹–ÿã iZ¾¹ßïGÌ%^sÒ8 +Éï+oX–Eú…°s_‘ ÷z½ˆy0DÌaŠ™«T*8Ö$‚9%€ïíP—ŠÓé”ßu!GÂU<W«ÕE&£<IÑžH$ÄÃFàv¨ðäçï\±}Fá0‘³µ‹Õq‚_˜ø§ý¡P`ºå¸òù|ü°Ýnw~~¯Åbá{ƒ³F*Ö^9ð/6wùäŠÚ¡.HŠ¢ès‚Á Ì£« S˜rsºí #Á*±–?Ȧ@ö%ʾH -¶9rðáÿìWKpS×ö¢ÓÑt¦3žNšé"ÛX~_IWÑL€ Þcü’%yÜ…Çm&jCQhH•¡ E„ +A„Â8 ~ ©–^jé%K/уG?tár|®tu¥+Å7ø|ó/äëó?ÎÿÿçôÞ5uq]·Z:¯759.5ì9_¿3hüðÔª-ÿªiÿ¼jƒoÅû5¼ûçú_·Ì0Ò*E_ÑëX[Ý“¼k‚ï¿oq"ÊwLݣܡ-?4ï¿Üø&ÄÇ«7}VÝvdõàìÿô?FË„„&øäÉ“D"‘L&S©T:~šÁ³ ž/ÆR7m­"ÕÇ Cɵ¨Táõz) X]‘íJx± Q¼Ø•Êg-¹ˆ (h©¡Øe¶9Žã¨ÃÁ`P¹®¢‰D(½‡Cüoee%ù¯xa`øE mxTÁ 4¸jõD•™ŠÄ»§_’kŠwMXúXœã澈©ç'S×(×y£¥ãZÓþï÷^¨ßu®ÎþŸÚmšÍ_ToüÇÊõ‡W¬ýØ°f˜wÞo˜a¤IŠ¾"!Öîi«{Êêšä_Fùž¥÷®¹û6wèfËÁkÍû/7îiØu¶nû—µ[OÔ´«j;bzð£eBB|òäI"‘H&“©T*N?ÍàYÏc©›6ƒV€ ‘j⃡äZTª0”„p8¬ÛÅ‹]©|Ö’‹˜€‚–Ê‘‘Š]f›¢û|>床êŒN§#õVVV +ÿš››Sâ:ø„<†ø +ßc±u£P($oŒÃá Xìv{I.Äãq5yR¨(D¶B›Í³‹VÊÀ°„ Ë—^¯W“Éd‘GGËu ]C<†Ç^n«Þ& ¿‹ Íp+E5¦………â䈤@ôͼ,K r°‘™I”C”VЀ¤)”Ü' ¿´ Ï‚*4€ßü¾ÚÜwÏê‰2*'=|Cîiäšâ]“|ÿ„ÅyßÒwÏÜ{×Ô3ÆuÝjé¼ÞÜqµÉq©aÏùú_·¹jˉšöVmøtź¿ÞýKíÖ“­3Œ4IQ‘^ÇzÊêF”Xœã–¾ˆ¹gÌÔæ:l>p¥ißņÝçêì§k·¬Ùì¯Þðiã®s«1Z&$4A,2‰D"™L¦R©t:ý4ƒg<_Œ¥nÚ Z6Dª‰ †’kQ©B§ÓQ¤ko.`¢x±+•ÏZrPÐR922B±ËlsápX.5p8”j$¾%ÆSÇÄ ø|>ò#âž7ÐRQàzüøq¡7’Ê©¬¬”gQ“'Eˆ²Ûí ­”¡$ˆD"x¹ííí¨?øº”—êx}j ‹¼Pˆr)%ߎ´J”Öª¼@Ñ ƒx×Ç F#|ˆëÈÜB>N‚7‹ÆC>Š¢P¥•ÄB4÷…jÁ!”¢dcÂïBoªÍp+…Ñš´?‹'‡¨×ëEÄ1/ iôh1‹ð# +I¹ŠÈ7ÜTx×6›M´–¯%@šAšPfà˜ MÌÒŠLŸ%¥ÁB%¢²™)&°à<„·s±,¹O²¼^¯‡áA>FáIæ_K[฼Bºâf1b1¼5hžU0hà»­ž(£2ÓC‘x÷ôKrMñ® Kÿ‹sÜÜ1÷Ü1ur‡n¶¼Ö´ÿûƽvS·ãLí¶ÀªŽWo:¶rýßW¬ýø5ÃæîÛ­3Œ4IÑW$ÄÚ=muO"ʼó¾!îýÉÔ=Êu^oé59þÛ°ûÛúgŒ/ãûEõÆ£5›Ž­|Äh™Ð1[&‰d2™J¥ÒéôÓ žeð|1–ºi3hª©Žñ¾äZÔ¨ÀxO±cQÎŽ•bÏ»¶¨±Â)v,)ÊÙ±6Rì°_¹.%·+ ¤vbIÄwq³€cYÙ±Rì@ßÅÍWvÛ¼–Hðûý…ÞQ¦„`{•g¡Î«y8JD-,,HÂápÑzÔÙf³Isñ/F²€èõzŒ.jÌ ‹< +B®cd+ÉÚDJk• à7©ßHàR08—ñ˜Pc#‘ Î*ÇãñäµNƒCr™?žÉUÕe Íp+õbqoŠÅbEË–'²ètº‚|BÅ­ŠŠ5uoÒñ)+|>_Vó(3ŠyEÁJDQ@þgmŽrÒ hÄ'R`”’÷üx#žTYpq»Ý.c<–-Ú†gAJ^ÃσÚí§­ž(£rÒÃ7äžæA®)Þ5É÷OXœ÷-Îqsï]SÏ×u«¥ózsÇÕ&Ç¥†=ßÕïªÞt¬u`†‘&)úŠ^Úêžä]|?B|ÏÜ{ÇÔ=ʺÑÒñCóþË{Î×ï ·ŸªÝr¼zÓgUë[ã«1Z$4AÌí‰D"™L¦R©t:ý4ƒg<_Œ¥nÚ Z–ª}cy)¹5*¤3>*៟—îbøX>k!œbÏ»d‘À¢D±cÅ“9/]‡ruECŽãP°‹) \[%3 *1Æh4ª €ý±B‚x<.Ï¥Ri¢b±åa ²²2oJ30”sssÒlE"‘\¼(kâI¯×«ÒR:Z®cä3·Ùlå¶*PèdüF"«‘Ä3h>ŸO^ª«Œ= oj;¼Aj,ôÊÚ ·rQʬxRÚ×”ËvIÊTÈ% oôÉ©CM¾ )a YÍ£†¿ßŸWÕûr‰"íyŨWô ŒP§D¸0/e"žQYòZ"?š2¼Åhž)IT†Ÿ¿úõoM]£VO”Q9éárOó ×ïš°ô?°8ÇÍ}sÏS÷mîÐÍ–ƒ×š÷_iÜw±a÷·u;Î?<µêƒãÕ›ŽUµY±ÖûΚáæ¡ÖFÚ£è+ze«{Êêšä_†øž¥÷®ùM|/7î½Ð°ëlÝö¯j·ž¨iÿÁmÚûÝêÁGŒ– Mc|"‘H&“©T*N?ÍàYÏc©›6ƒV€]jßÔÖS¨T!1Âáp^®ùùy(’òâ{ù¬…pŠ]fÉ’‹Å.¿ÚÀÅ9G=p/J/e<Çq2ìÔêªÓé‚Á %0×^Ië­Ô ¯ð"Ð"ͻݞ—‘bQóp”‹ÊzY£Ñˆâ_´v†"€.MEz½>WZ"cÅc¨*-A‘¥¡£e=KH¥xGå¶*B¡ EÏápàOÁæ……üðz½¤ssñÔdAj)UŸsÉ™››£* €„H$âñx`¡4¬ExF›áV(êE¦GˆÇ²g…r(1òù| +¹^ÑGþˆ¿m6„ ñáâíííâa5ùÇ}ý)ç[ ˆÊj5üÀ" éORO‰(Ô‹c~¿:d|× OHçÏMp ¼ïx¤°¼KEî…4‰TZPe€¯HEäÌ “KäGS†·mó  +-áwÕï[\“VO”Q9éá+rOó ×ïšä]ç}‹sÜÜ{×Ô3ÆuÝjé¼ÑÜqµÉq©qïHý®suöÓµ[OÖlöWm8ºrÝ'†÷>Z¹þ°Õ3Ý:0ÃH{H ´Õ=É÷?@|-}sϘ©+ÌuþØ|àJÓ¾‹ »¿ApÛ^·zãÿÙ/—à&Ž4ŽûHíɇ­-Ý,ü¿õ¤Ìà,ÆY"\¼Þݬ³lpÂBD–ʃ6!`Š°hÉB„@ƶ,›2å£:îQGÑÃ6ûGc†öÌh¦G’ñ”é_}[Óýõ×_wO«÷|¶õÌ3&oƒðIF2™L¥Rét:“É,fYʲ¼šõNÚ ½ êYJr4•Rà¢6 ¯ÄmW˜2??Ud‹²ƒ(ºµP.šž«É’}¢hºjk#Ý&z7Qëª +Itšèòè§øý~é¡ÿ¢'U˜ •§·´´PZ‚¶Ô`0Hšf;8/²9‡¨ÎÍ*äáhRår¹¤›U½' F‘>Yrr rPÆàò+kÃs&“žü°*ÈMˆ0ð —ì€`0(˜¨¨jjI6d…B!ÑÒ-‡CVÓé$Lj²*,”†G$)­[ÖçqÓ¨âAr†Ácyëáõz…Yšx‰„@ kpQîYبš*ŒT(~hƨÃu%S?2£´,„å¨%D÷V‡>1ä•-S±˜- [XXPXˆ'¿È ¼ú\eØÿ²(ì—±išƒH£c}ÙÜú‘Í3Ãd-%úZ¦­wÄêž´ôOXúž˜{›{šºÇšOüÜÔu·±óN}ÇͺÃ×jßÖìÿ²zïåÊÝÊwœ3¶—mª?òÖÓO™èOfWÄ;c‡x¢vOÄ60e런ö…-½ͧÆL'î7w]·Ž^¯kpp¸ŸWî:_¾ã¬½|ë™gL6¼ðIg2™L¥Rét:“É,fYʲ¼šõNÚ ½€Q”¸FcÑW)p ¿ß/-0Ð8$ é`¼ŸÏ§P™¨6 …XK6b<ÊM¥tUÒm*OáûGé6Ѫî°"ß“–d4zS¥;‡¦ã˜dÍÀ!Òƒ¾RV ¶&m9û‡‡‡em4‹Šfòp4©‚ë8Ž“š£ÌÛCN§Sáñ +˜L&é\QèP Sª H +Ú,¢¯À‹©ä3Çã’]±èVüÆ›‘+&“¦–––.,,HLjbl< À,á+BJ®|êp8 +‰3úŸ¬(reU=²„B!a–¦:Ü#RýÄ\¨Þ7²°QM‘4›¢Ü¸ò0ü( €3•­ÒÊ›ôÉàà 0@á%ò±w~~>×ByG¼wáB„²1Œ·¶¡9H Cüæ·•æž°Í3ÃdÍ$úZ¦­wÄêž´öOZúžXzÃæžG¦î±æ?7uýÔØy§áý[uG®× +ÔøªzïåÊÝËÛF6¿;\öΫ÷\Úrú)ÉìŠxgìOÔDl/ø‰µ÷±¥çWsw¨ùøOMÇî4tܬ?ò}­ójÍþ+U{|•;?©v\Üzæ“ /|D±”L&S©T:Îd2‹Y–²,¯f½“6C/ Cem£ÑXôU +_"‹¡‰È£Årä/è•ÖÎZ²ãQn*EÀZÑtÕnŽ‡ìÚ +ÞT022’KÍ®@®éÇi²äE¶UD‡Xàö)½Í#š[ÈÃÉC•ôªð‰DÞf0”п)i¼%“NQÒ ž­ª)H" +JŠnU!¡†I_•#­ÏçF†ÃaÑ×––ák<WÐCFü­i/ú~¯éØÝ×íú££uíßsΫ5ï]©Ús©b×ùò3nÿ°lÛšŽ·œ~ÊDg2Ë‹Ý;óR=ª÷LÖª5 y”[PFÞ«bùäMúDøêp8T #‹vŸÏ§i!åÈ€ZHøŠB®P}JŒ·‡¶¡9H C¯lnýÈæ™a²f}-ÓVˆ;buOYû'-}O,½asÏ#S÷/Í'CMÇÿÛx,Øðþ­º#×k¸_Wïû¢ÒñYÅÎO6¿ûײwþdÜþ¡ÝÝrú)=ÉìŠxgìOÔî‰Ø¦lî k_ØÒûÐ|jÌtò~s×ݦÎÛ 7êÚÜÁ¯jöý£j÷…Š¶Ž^où`ŽÉÆ> >þ<™L¦R©t:Éd³,eY^Íz'm†^ x£ÑXôUŠµ¬5™L4UzØx<ÎÏÂrä'ôJkg-ÙˆñhêÑþˆ¦«vs$èC±qÿˆà8Îï÷#€Ð¯Åc0dšéXWvúüü¼VKè/‰œ‹Å´.$RRÈÃÉOΫ¥¥Eºx oK (ãŒlôIÕ€¬ +‚¤ìåO$@`Ó¦MÂW‡Ã‘KIÑ­¢¡2 +dW[³9Kö9+{X€ÌïH.ä'D·ð‰I¤G}·TU.ãp@ù™¤ ¬fiJô”§/K~÷6÷<4u?h>q¿©ën£ëßõ7ë_ãœÿ¬ÙÿeÕÞÏ+vý½|ÇÇÆÖ¿”mâœßؽ³Lô$3+òêˆm›{ÊúòpÖžGæî1²·:FëÚ¿ã~S½ï‹*ÇÅŠ¶sm#-Ì1ÙØÂ'ATJÉd2•J¥ÓéL&³˜e)ËòjÖ;i3ôB<Gq.dêÒÒRŸÏWôUQ´óKàü[ˆ¶`0h0d+ ØÖ@Ô"a9aÀÿÙ/“঎4Žû0•ÒaR¥¹)— ïò&?½'Oér,‹ØŒŒ·gk±Ê—Qy*ÍAE£LP1xB&yL (a#¼>¹JU>ú¨£Ž:êh-¶™Énž…ÔnÛ–Eÿê°Õ_ýõ÷õòž°MŠ-8‡Wâôz½äÝ¡ÒǼû`²äÝ3ÀbfÿU¹2ðÌû­€·jÖ@0eòŒ¬ÇDåp8¶ò+!ß:É R©\.׶§_ÀU½mW‘HDºÞ(G8Þv$ + °ññÇK†|Ç—Ô&ë¸Þ°Ó1Þ`;À©‚ FGGóù)lTxb±DGЦ9Ì j…ë3 +ôE–‚ H› -¨ ˆúæóCBi–;Ëœœúu27#| F‹)pÓ¡^0a¯—ÄÕ—²Ãõ ùj! p +3鴽˷Dr_A[Z6Æab1'Ål6¿™ +p o$¥Œ1Œ„@›îÊ.ò»÷Þoí{ª +RGâkÙç8m–³ÍpÖiÖ2ÉZ^h&þYkŸ_Ýó¸å‚¯ùüݦs?7œþAuòfݱkµFOuûåÊC•>Ý·„áÇÚóT%£ Òz‰gµv(îgdŸkøq¦ÏßÚó«ºë~sçÆ3·L·ê_¯=òª¬U‡.jzé†CTe¬Ì%¸´´Ç‰D2™L¥RËiVÒ¬nd·/m +¥,..ÂÛÁãñÀSä¯Ýwx7‰i2)à™ùŒ»Ý["Ã|}>Ÿ{w-J1àyÿî3›Íùú*•Jd{³€‘ä¼A@ +…¾”ÞBTàæ’Ëåøìág„Zõz=f è‹,! ùš ø€¥ ÌòCBi–›ÄU¡BʉN§ÛÞè„ÕGì|½ÁuI¾ZHÂ#œÆ ju¹\øÞ¤tr"|Ÿl9¬gdo4É’‚9¤øý~ðófB`¾˜mE)o #!áÞ¡ìï f­“Ú¡ Uq$"qö¹W²Ír¶iÖ:ÅZ^hŸk~cúÇZ{Ÿ¨»¶tÝoê¼ÓxæÇÓ÷õ'nÔý¦¦ãË*åʃ®}ûGªÛÝmŽyªRRpM™Ûç´ö(.gd_UvœéÚÚûXÝý Å|·éìO §FU¯ÊúuMÇ•ªÃŸ«Ž_× ‡¨ÊX™K¾‚âñx"‘H&“©Tj9ÍJšÕìö¥M¡P( +e¯ßF£1ß‹šb±X¾¾&“ Y:ÎFÂó<ò&ŠbN†a×ë} QåcqqQ.—Kåóù²Âv»Ýø¡V½^ ú"KA¤M‘H5ÁÄñ1Cß|~H(Írº*THYD£Q™L–éÀn"Ž°ú +²Þ¤«&»óð§€1“®m³ÙŒ)‹’ÊÉÂÂju8›‡1ö„‰Åœ 9G„m+Ía¨”²Ä0UPJž¸~íPª8_Ë>Çl³œm†³M³–IÖòB30ÁðϘþ§êžÇ-4›ï6OßV¼Uìz푯ªÛ¿¨:ü¹òÀ_?üÈ MmŽyª’QpMëõÕÚ¡¸ÓœuŠµØ MÿÓûDÝý°¥ë^s'”õÕÉ›uŸ|[k¼Zm¸T©wýÑ>«Q•«2— |·ÇãñD"‘L&S©Ôrš•4«ÙíK›B¡P(ÊÞF¹\.}èÁ¿ð#¾—×ëEö2™,î$žç‘7QsÚøý~d£P(ÞBTùÐéth1§ÛíÆϵêõzÌXÐY¾YB'/ÓUÆøÙ”Ò,7¡«B…”…4'›æ?‹-u,Èz‹D"È&»óð§€1“†´Õ–TNb±j5™L›0Áæ2äât:H:RÊ ÃHTAÙ Tw\Ñ©Š#ñµìsÈ6ËÙ¦Yëk™dš ¦¬µÏ¯îyÔÒu¿ùü/gj85ZâFÝ'ßÖt\­2¸+þ}ߟþâ,“mŽyªÒPi½¾³Zû gâ¬PÙç~œéó·öüª†²vÞiÊd2ô0t:;çyäJÅ|f*• +™A¨ÅŽ*'0ò¯×ëó™¹ÝnüŒHœÐY +‚ÕªP(2M0køzÄø¾?›Ršå&wU¨”|Lxù ¬þË­7Ø×È&»óð§€7C­L|HRJ0'r¹œ|"³r‹?0¸\.ÔÑëõ’w¤” †‘¨‚²GhêüE;¤*ŽÄ5Ù縌l³œmšµN±–šÁç~œéÚÚóX}áa³ù^SçÆ3·U¦ïê{kþ«úã+U‡ÿ¡Ô¶oÿüÛ昧*×´^_­}*ËY'Y(ë@º¬½ÕÝZÌw›ÎýÔpjTuâFÝѯk:¾„šV.é†CTåªÌ%ï¦x<žH$’Éd*•ZN³’fu#»}iS( +…ByG1™LèU(“É¢Ñè¶]ñ<\‰¢˜ÏÌãñ 3£ÑXì¨rá!ÿn·;Ÿ4ág„Zõz=áp‚ dµêt:Ôê÷ûó9KHÆ ¥YnBW… + !ÍÃ0[Ž°ú/ ·Þ ^ÈÀl6ï<<Â)àÍ”J%É΢skŒØŒ +…‡Ãá- „ÀŸ ¤³†eOÞ‘R6FB  +Êá½ß+4ü¸v(HU‰¯eŸã@¶YÎ6ÃY§YË$;Ð L0ü³Ö>¿ºçQË_óù»Mç~n8ýՉ׻VkôT·_®’µtÝkîÏÜV¼Yÿª¦ÿ¬nwWü›¦ç‘n8DU–Ê\‚ð=ljD2™L¥RËiVÒ¬nd·/m +…B¡P(ï(‹‹‹2™ = •J%ü‚ïFM&“^¯ÏúçyäGELw鈑H¤¨Qådaa9w:ùÌÀ!~F¨?.ôE–‚ dµŽŽŽ¢V£Ñ˜Ï‰Ùl®ð¦J³Ü„®6…Ü|¥Cª‘1DKb«ÃVÿeáÖ€’©Óéváðf0#dSÀøñù|(Ï%˜¯×‹ 0;€Ý‡,ÇVBàO ±X ut¹\ä)eƒa$ª ìþP¥gm3Ú¡ U$®É>Çed›ålÓ¬uŠµ¼Ð >× üÆôµö>Qw?léºßÔy§ñÌ ¦ïëOܨ;úMMÇÕ*åʃ®}ûG*~¦šksÌS•€‚HëõÕÚg8ëgd¡¬ü8Óçoíy¤¾àk>ÿ¿¦³PÓïê{k|UóñU‡.ªŽ]Ó ‡¨ÊR™K¾çãñx"‘H&“©Tj9ÍJšÕìö¥M¡P( +åÝÅívK†2™Ìçóå´ŒD".— ÀL©Tfµò<œˆâÿÙ/·Ø¤ò<Ž÷a2é&óÐd³ O–Þr9œCS²ñ‚ŠµS±jÅ^¡JšM¦vVeÇÙq4uÆQÖ•Ùî¸8:ÞÑÖ–Þ¡i“>òÈ#<ò(—¶³?8íééí”ÞÅß'ß4åœßÿwýsþ/GD­VËX‚ÃÍjUà%ñL|\iÀ.g­Š˜»*•Š#¬e,NçÊXtò4ÝÝÝË Âá0»ckùI‘ wꮸIÅ4Ón·óx*Ô]S d·Qrⶢ݇ÚyQæñ„Lc”i„4“mCòÖ¹á=ÑòNÖôFÚøRrþwñ¹Ç¢3…§e5wKOüX\u£èÈ? ~•¿ÿïù{/È }– TÈ7/z¸æq…yLa¥cõ†~¹¾—h~#kx!9ÿT\÷HtºG¨½WV}§äXwb ‡¾TßVvL¡²Oô!/E‘H$Æb±x<>“d6ÉÜRÒ}h#‚ òQ/-z½>õŸyyyg™¶¯×Ë‘Çã1Æ.—kç²Z‹éééÜÜ\öreö‹ÅÂ]sW¥RqÄ‚µŒ¥Óé\i‡Áwu|>? rûI‘L÷†\q°¡¢è–n%ã‡{ú4۲߿߿V96›m£é¥Xºf¡PhY-kÁÞH™Ù“Ôw‘F£¯ÒVËñd€Ì—…WA,»èv»9ü#YŒºk +”â^E2‡O>ýLZÿ\ÑîCm·¼‹2S ÓXR#¤q˜l”úåú>¢å­¬ñŒ@¬û­¼î‘èt@{¿ìó•ÿ¾¸êzáá«|•5_WÑ‘o+,¨ ÑÂpÇæQÊ8L‡ÈÖ¹!9Ó&˜©K|î×ò3¿O=€–ÿ¡¸ê»ÂÃ_óU—(C_eÇ$*ËD‚ð‰D¢Ñh,‹Çã3If“Ì-%݇6‚ ‚ È.—‹Ïç¯û›Q¯×ƒÁ•Ëá:cãõz¹cÙl6ÆX§Óí\VØíöÜÜÜU½åååA\°á®ˆ¹«R©8ÁZÆÒét®jïZ­v­ê4M(bG\ËOêdθ7äŠèºåÐ(•Ê­7ñÆ=}vz[Üo4«:éîîÞhz)–¢™Õjåè9Çs»Ý™ßÀãñ@¶µ@ÎP,|g·Ø1Ž'C àÎúãp88œ#Ùºk +ıCŒåO.’<Švj»å]”yœ™Æ(Ó(e!Û†ÈVÜÐOè{eÍniãKI½K|îIùÙÿ kÿ#8ùSiõí’c7‹Ž\+8t…àâž½_À­ +Ë*ä›×ÂdæQÊ4B‡È6˜é{yË;YÓkiÃs‰î‰¸Î)ªý91Ð?–hn±´–Vߪì˜De™èCÞÄ"‘H4Åbñx|&Él’¹¥¤ûÐFAIo/.—K¯×óx<öD>Ÿ¯ÕjNg(Zk-,T- ¹FC[­ÖËjÝ4À­@ `|æååÁ•@ @èt::ÉUC0w»»»9¢@7˜ÎLOOsX:‚ Ø5B—Ün÷ʈ~¿õ.#Cƽ!WÜQ Õj@9¶$ªÞt6)Ne†›Þo PØ°ÀÂeKRIÚBÛØíöm©Ôëõvvv²sà#lìµÚži=a²‚Ýýa'F×½Z÷³-Oè|!¨…ƒR©„ÜÂá0wHv£îšå »“¿”Ÿ"M£Švj[å]”yœ¢e£L#¤q˜l”·È w²¦×Ò†ç’ó¿‹ë~ùExÊQVs·ôø­âª…j[ÁÁäïÿ2ï²u Â2J·|óZ˜¬Â<¦0RÆaªmf$×÷ÍnYã ib D§{„ÚûeŸÛKŽÝ,>z­ðÐþ‹”¡¯²c•M¢AxSŠD"Ñh4‹Åãñ™$³Iæ–’îCAAäcÇï÷‡Ãátg1O …BéÎÙA2j¿í›(0c{2== ¿ìÒžCf6I ê®)P²k᫬Švj»å]”yœ™Æ(Ó(e!ۆȶA¹¡ŸÐ÷-o¥¯$õÏĺßÊÏ:Eµ=í½²ê;%Ç¿/:ú]ááoøªËùûºŠÔW+,¨tËLj™¬Âœ˜)e"[ä†>¨¬éµ´á™D÷¤üìCQ­CPs·ôÄ­âªë0Ä•U¨½_Ù1‰Ê&ч ¼›E"‘h4‹ÅâñøL’Ù$sKI÷¡ ‚ ‚ ‚ È.@Ý5ÊAv3ÂÓ=Švj»å]”yœ™Æ(Ói&Û†ÈVÜÐO´ôÊšÝÒÆ—’z—øÜãò3…µ? jþ]Z}»DÓ]täÛ‚CWø.îÙû…Pû Â2J·|óZ«Â< +3¥3õ†~¹¾—h~#kx!9ÿT\÷HtºG¨½WV}§äXbš…‡®¸Ta©ì˜DeèCðÇ‘H$Æb±x<>“d6ÉÜRÒ}h#‚ ‚ ‚ ² PwMrÝÌ'Ÿ~&k~«h÷¡¶UÞE™Ç)i,©Ò8L¶ Ê[ä†÷DË[YÓkiÃs‰îiyÝ#Ñéÿ +µÊjî–¿U\u£P}µà 5ÿ—ù{/ÈšÞTX&Pi•o^‹“S˜G)ã0e"íKô•´Þ%>÷¸üÌCá)‡ 1ÍŠ«®þ¦@uY¨½WÙ1‰Êчà‡ÿ³WgMmfǹèä*í]gÒéBh_Î"¸°1›À`vÌŽ@Ò9‚‹ÆµlS¼…Ä6­×8ÄkÀŽq±Á˜}BB`¾ÓÙ$¦ ¬jzËŒFÊó›ÿxç¹x9ŽçyADQ”$)9H–ê§ iÀæÛ—Ë‚4÷ÇoL¤ÇO{ÃèDÛIĆ(9&H1Û”'@ºý¤{“p­YœË–¾“}ÎØýÁÐ9¥o›Ôµ¼Ô4Ž«ëªjÆ”U£y×rK¯ä_Ì-¦½!ëÀ.J]áDdzÒì6Å(<èáZ%K–ÞO¦žc×;CûkÝyyÍŸÕuT5w••·åÿT”\¶2¢ÁÏ(3Š?AŽãxžAEI’"1јƒd©~Úl¾}¹,H¡´7ŒN´DlˆŠÇ)&@z¶H÷&Ñ¿N¸V-Ž%sIgÖØ5mèx«kÐ6?Ó4<)¨½Ÿ_}GYyKQ>’[2”}ú‚ºá‘u`¥´ðQdzÒlf¶)ÏåÞ$åA+–¾³ý£©û½¡ã7}ë¯Úæ§êúÇçþö‡¼ŠëŠÒ+Ú¦ñ¢ÁÏ(3Š?AŽãxžAEI’"1јƒd©~Úl¾}¹,ÈʪQÚF'ÚN"6DÉ1AŠÙ¦˜éÙ"Ý›„kp®X‹fûœ©{ÆÐùNßþFwþ•¶é©ºþqÁ¹{ùg̳ÝP”]Í9s)ûÔßÍöÖ]”ºÂ‰Žg¥ÙÃA)Ÿì_'\«„cÉÜûÉÔ3cìœ2´¿Öµ¼Ð4þ¬®{ ª¾£¬¼¥(V” Y™@Ñàg”ÅŸ Çq<Ï ‚ Š¢$I‘˜hÌA²T?mH6ß¾\d +}Û$í £m'¢ä˜ Å(O€tûÉþ µfq.›ûLö9c÷{CÇ”¼‚¶å…¦q\]÷PU3¦¬Í«¸–[z%§øbNÉw4°ì¢Ô>êxSš ÒÌ6å٢ܛ¤kp.[úæÍöYS×´¡ã7}ë+móSuý£‚sÿÊ?šò²¶i¼hð3Ê€âOã8žçAEQ’¤HL4æ YªŸ6¤›o_. 2žúÚÔ=C{ÃèäÚIƨxLb¤g‹toýë„kÕâX2÷Λzf]Ó†Ž·ºÖ mó3MÓ‚ÚûùÕw”•·å#¹%CÙ§/¨jîZvQê +õ?³Òì¶<(åñ“‡k®X‹æÞO¦žÆÎ)}Û¤®å¹¦ñpJÕá”7eù%ß²¡¢ÁÏ(Ý‹?AŽãxžAEI’"1јƒd©~Úl¾}¹,È _}ý á\¡½atrí$bC”¤˜mŠ n?éÞ$\kç²Å±h¶Ï™ºg ïôíotç_iš~Q×?.8w/ÿìy¶Š²«9g.eŸúÖØ1eØE©+|Ôñ¦4{¸&åÙ"ݤk×ì›7ÛgM]Ó†Ã)_j§|¤ª˯Í+É-½lh›,ÜCé^ü rÇó¼ ¢(J’‰‰Æ$KõÓ€4`óíËeAfùÓߊHŸö†Ñɵó%Š Æ)&@z¶H·Ÿìß \kDz¹oÁdÿhì~oè˜Ò·Mj[^hÇÕuU5cʪѼŠk¹¥WrŠ/f_¤Ü~ëÀ.JQ᣾ÌÊiv[”òÈk®®‹cÑÜ;gêù`씧œÐµ<×4>)¨½¯ª¾­¬¼©(V”[Ù`áàJëâOã8žçAEQ’¤HL4æ YªŸ6¤›o_. 2ΟõM$³M{Ãè„ÚIƨxLb¤g‹toýë„kÕâX2÷~2õÌ»¦ ou­Úægš†'µ÷UÕw••·å#¹%CÙ§/(+oZvQŠ +':Þ”f·å5)Ÿto®5¹lé›7Ûå)ÿch£;ÿRÛô‹ºþ‘ªf,¿j4OÞ±ô²¶i¼pp¥uñ'ÈqÏó‚ ˆ¢(IR$&s,ÕOҀͷ/—™è¯V†ö†Ñɵ“ˆ QrLb¶)O€tûI÷&áZ³8—-ŽE³}ÎÔ=cè|§o£;ÿJÛôT]ÿ¸àܽü³·ól7eÃ9g.eŸúV×úÊ:°‹RTø¨ãAi6H³òš[”ÇOö¯®•Ã){çL=ŒSú¶ ]ËsMÃOµ÷TÕ·••ñ}¤s¥pp¥oñ'ÈqÏó‚ ˆ¢(IR$&s,ÕOҀͷ/—JQ~ö†Ñ µ“ˆ Qñ˜ ÅHÏéö“ý„kÍâX6÷-˜ìsÆî÷†Ž)}Û¤¶å…¦q\]÷PU3¦¬ú!¯âzné•œb_ö© çrªúÝök&¦Ü$ú× ×ªÅ±hîýdê™1t¾Ó·½Öµ¼Ô4ïX9ª(É-RV}_8¸‡Ò·øä8ŽçyADQ”$)9H–ê§ iÀæÛ—Ë‚Ì¥®ÿ‰ö†Ñ µ“ˆ Qñ˜ ÅHÏéÞ$ú× ×ªÅ±dî7õÌ»¦ ou­Úægš†'uTÕw••ß+ÊGrK†²Oÿ#¯âÅS}Ôï¶ä)wÜ>œÒí?œÒµfq.›ûLöÆî÷_vT7üTP{/ÿìí<Û EÙÕœbŸ¡ýuáàJÓâOã8žçAEQ’¤HL4æ YªŸöÙ«§(ó<Žã¦¼¬{ØË–;Ò9=¡±j•(MÉ©ÓóÖ®«¶ŠŽc*]Ó Œ8(&”EQ%6ÁâzPÛš^j§jRô¶|^õ¾üŽ¿ú¾¾ÕXYðýúaÏ^S㨽{mSÑT]:¦ÙÍ)ïåõ“îyÒ5K8?ÛÚ'­­–æ·¦Æãñ†š'ºêmE_vÙ-•ãš²è’<ÿœìÐ)mÕýtÿh×ö‡S)&ßѳ@ºçâ;vLÅv47¿15¼6Ö=×× êªú5GîªKn(ÿ¤(èU^°3'¾¢L,y9Žãy^Q%IZKXOØØ*ÝG2€Ã·+ ¾k{öî³vLÚ»—ÑvMÕ¡“±aš RL€ò.QžEÒ=O¸flÓÖöIKë{só˜©áµ±î¹¾fPWÕ¯©¸§.½©*¾ª(¼(ÏóÉ47¼N÷§vm[§Œï¢™`|G¯ÿ?vühi}gn5Öj‡tÕÚʾì²[*Ç5eÑEyþY}õÃ'¾¢L,y9Žãy^Q%IZKXOØØ*ÝG2€Ã·+ ¾wÞg!]³öîe´ESuEèdl˜fƒ ¼~Ò³@ºçç[Ç'kÛK˸¹iÔT?l¨{ª?ö«¶êæÈ]uÉ UñeEA¯<ïŒìÐ)Â5“îOíÎþkÊ?ÞqÊÚ6an~cj1®¯y¬«êXº9¢,÷4áœ>pâ+ʸ’Gã8žçAEQ’¤µ„õ„­Ò}´ 8|«±²`ø‹²€b–ìÝËh;Š¦êŠÐ±Ø0͆h6Hy—(¯ŸtÏ“®YÂùÙÖ1em›°4¿55Žë_j‡tÕÚʾì²[ê’ëÊ¢KŠ‚ó²ÜSŠÂ tW8ÝŸÚ…ýï ׌­sÚÚþÑÒúÎÜ4fªŽ¨¯~¤­¼Ÿ]~;9¢<ÿ¬ÊqåÀ‰¯(ãJAŽãxžAEI’ÖÖ6¶J÷Ñ€ àð­ÆÊ‚Ý᯶&º+Š¶£H*6B±áxLˆb‚”7@zü¤{pÍÙœ3¶ŽikÛGKË;sÓ˜±þ•¡î™þØ ¶êÍ‘{êÒ›ªâ«ŠÂ‹ò¼³ûžÔTܳw/£/šjsÐ0Í)&@yý¤gtÏÎ/¶Ž)kÛ„¥ù­©qÄxü…¾æ±îè/±É#^Q^ç1Õ¿ii}gn35¼2Ô=ÕW?ÒV=ДßQ—\W]Rœ—矣½K9=+(ƒJAŽãxžAEI’ÖÖ6¶J÷Ñ€ àð­ÆÊ‚Ý$»ü6ÝEÛQ$¡Ø0Å„(&‹ô.‘žEÂ=O8glÓÖöIK넹ù­©qÄxü¥¾fHW= ©è‹m¡r\W]’ôÊrOËþÓÖ>iï^F;[4Õæšaší ¼~Ò³@ºçç[Ç”µmÂÒ2žñ…¡æ‰îèCMÅÏÙeÿR_U^”çù4÷rzVP•<‚Çñbó˜©á•¡î™þØ ¶ª_s䮺ä†òðOŠ‚ó²ÜS¶öÉœž”)% Çq<Ï ‚ Š¢$Ik ë [¥ûh@pøVceÁ.óÞ½¦æ7tW}s‘Tl„bÃñ˜ÅIïéñ“îÂ5gëübíødiû`n75Žë_êžéŽ j«ú³ÜU—ÞT_Q^”çÝðdìiï^F;[4Õæšaš RL€Šï¸@ºçç[Ç'kÛK˸¹ñ7cý°¡vHW= ­ìË.»¥r\Sý(Ï?«r\±wGrzVPF”<‚Çñ±w/£-ºYjÍÍÆv P^?éž']³„ó³­}ÒÒúÞÜüÆÔðÚX÷\_3¨«ê×TÜS—ÞT_V^ç1Õ¿ÌéYAQòrÇó¼ ¢(J’´–°ž°±Uº6d‡o5VìJÚg!½~º+Š¾­È–Øņ)&D1AÊ =~Ò³H¸æ 猭sÚÚ>ii07¿15ŒŽ¿Ð× éŽh*ú²Ëo«וE—ä½²ÜÓûÿöwkÛ{÷2ÚÁ¢©6§ ÓlˆŽï¸DyI÷ï#~´´¾37šê‡ µCúêGÚÊûšò;ê’ø‚Š‚óò<Ÿ­óSNÏ +úÿïßìÕÙSTwÆñ¾Hå*Ws7U¡÷}=K{¡l ‚ ûÒ4½œVƒ´q ‰Kâ2Jq#bPY»é «øŸÎÔtpz:“¹¢Š–òùÔ·Îý¯ž:õnAŽãxžAEI’6d›²­\ù>Ú°xÂëéð©ú›¡šdbto +í®d66I±‰LLœbbd(J#d`™ð/ºzæ]ݳή׎Žö¶IkËSK㸹aÌX{ËPs]W5ªõ\V—W•œUö+‹ÃT0âî[C{Xj§ìš šQÌ*ŠÁe2°Hô̹ºß8»¦íØZ'¬M- ¿™ên§ÔWh+†4eçTÅaMÙwîÞø“ïÑGÞöä8ŽçyADQ”$iC¶)ÛÊ•ï£ û€'¼žNŸ°¿S>º7…v]2›¤ØÅÄåbd(J#D`‰ð/¸|ïœÝo]¯ìS¶ÖgÖæǖƦú{ÆÚ›ú£WuG~ÔT|¯>|NU|¦àÐ)­gÈÝ·†ö°T¶)4§™ŠR¡™qžðÍ:½3ŽÎ—ö¶I[Ë“ô‚fyACzÁÊamÅ%ué ªxÀP=zàä{ô‘·}9Žãy^Q%IÚmʶråûhÀ>à ¯§SÀ§í˃ßн)´ë’ÙØ$Å&(&N1±td(JWˆÀá_pùæœÞGç´½}ÊÖú»µù±ùÄ}Óñýª¯þYW9¬)¿¤.T :e®¿ëî[C{Xê?}˜2A³éW©P„ .“E¢ç«û­³ë•£cÊ./hÉ,xÇx솾jTWyESvAUrVYØok~xàä{ô1·}9Žãy^Q%IÚmʶråûhÀ>à ¯§SÀ'OS~‰îM¡Ý•ÌÆ&)6‘‰‰SLŒ +­’Á\!üK®žy—oÖéqtNÛÛŸÛZ&,MÍ ¿™êîjnè«ÒVþ )¿¨*T.8øµ­í™»o íU©l;S&h6N³1ŠY¥B2°Dø牞9—wƹ³àSkÓ¸¹aÌTwËPsM_5¢­R>§*«ŠN»ºß8ù}´mAŽãxžAEI’6d›²­\ù>Ú°xÂëé +…®r˜îM¡Ý•ÌÆ&)6‘‰‰SLŒ EÉ`„ ,þEWϼ«{ÖÙõÚÑñÂÞ6imyji77Œënj®ëªFµžËê²óª’³ÊÂþ‚C§\ÞwßÚ«RÙv¦LÐlŒfbT(JWÈÀ‘^Ð7ëô¾vtf´µ<±4>0×ß5Öþj8z5ý+iÊ/ªKUÅêÃn6vàä{ôq¶}9Žãy^Q%IÚmʶråûhÀ>à ¯§SÈt•Ãto +í®d66I± Š‰ËÅÈP” FˆÀá_pùæœÝo]¯ìS¶ÖgÖæǖƦú{ÆÚ›†£×tG~ÔV ©ŸWŸ)(üVY<@–Ü}khOJeËN™ ÙŬR¡\&‹DÏ;W÷g×´#³à„µù‘åÄ}Óñ;Æc7ôU£ZÏeMÙUÉYea¿¾j$ß/Bÿ·í#ÈqÏó‚ ˆ¢(IÒ†lS¶•+ßGöOx=àSý=º7…vQ2'6I± Š‰SL,Š’Á"°Dø\¾9§÷£sÚÞ>ekýÝÚüØrâ_¦ãwµ7õÕWuG†5ß«§,:¥.¤™UwßÚ“RÙvvLÐlœNŠR¡™YpžðÍ:½3ŽÎ—öö綖§ÖÆqsØ©î–¡æš¾jD[1¤);§*+ OYšÆóý"ô×mAŽãxžAEI’6d›²­\ù>Ú°xÂëéÿÅTîM¡]”ÌÆ&)6‘‰‰SLŒ +­’Á\!üKDϼË7ëôÎ8:§ííØZ'¬MÌ ÷MÇïŽý¢¯þY[ùƒ¦ü’ºtPY4Ppè犻o íI©lÙ)4£˜U*¥‚+d`ñ¯/ìm“¶æÇ–Ææú»ÆÚ_ G¯ê*‡µ™ùTÅÊÂ~—w&ßBÑöä8ŽçyADQ”$iC¶)ÛÊ•ï£ û€'¼žNËÒôˆîM¡]”ÌÆ&)6‘‰‰SLŒ EÉ`„ ,þEWϼ«{ÖÙõÚÑñÂÞ6ik™°4Ž›ÆŒu· 57ôU£ZÏMÙUé ²ètÁÁ¯µ7Ý}khOJeÛÙ1A³qšQÌ*ŠÁeÒ¿@ô̹ºß8»¦S¶Ö kó#ˉû¦ãwŒÇ~ÑWÿ¤«¼¢)¿¨.ý‡²¨?ý¥™Õ|? +ý¹í#ÈqÏó‚ ˆ¢(IÒ†lS¶•+ßGöOx= ×gŸak™ {Sh%³±IŠMPL\.F†¢d0B–ÿ‚Ë÷ÎÙýÖÑõÊÑñÂÖ6im~bi7×ß3ÖÞ2Ô\×Uj=—ÕeçU%g•…ý_üÊÒøÀÝ·†ö¤T¶4§™ŠR¡™YpžðÍ:½3ŽÎ—öö綖§Ö¦qsØ©îvz>}ÕˆÖ3¤);§*9£,üVwd$ß/BnûrÇó¼ ¢(J’´!Û”måÊ÷Ñ€}À^O§øŸ}þÅ¿Ù«“·&ò<Žãfúb_ú03Ⱦ/•TU<(ûÙ÷5„,|FEí (®­¶6 -¶<(-ŠÒ`³D–ÄÿSmÀ3!L“Q{”癧šáózÞÇÔá—Ïák©v´ÇÐn‹&ˆÒͬÒL8å_¦|‹¤7DzæíîY›ë Ñ2am³Ô¿2×™ªž*ëK{µÇz4…·Ôù×”9ÝŠ¬NYúéÔÃ'ˆ¦±CÇߣÿ}±vvŒ8ñWhÿå{Gyȶ9»{Ææš$š_[F,uÏMÕO ¥½ºÎwU™sA‘”§w˜j¥~Jjû²,ËqÏó‚ ˆ¢¸ž°‘°™Lê£ {€3¸/àcþôÕׄkÒÑC»-ºS J"[1«4¦ý+”o‰ò-’žÙ6gwÏØ\SDó¸µqÔRÿÒ\óÌX5`(¤/y -êÑÞTå_Uæ\TdvÊÒ:âÙZ§¥~Ú>郷çc”yk>oˆôÌÛݳÿ6ßðÖ|•ñùútÅ÷´EwÔ7Ty—Ù]òŒ³ò´Óv×Ô¡ãïѤí#Ȳ,Çq<Ï ‚ ŠâzÂFÂf2©6ìÎàZ¼€Oøê냄kÒÑC»-ºS J"[1«4¦üË”o‰ò¾#= ö¶9»{Ææš"šÇ­¿Xê†Í5ÏŒ•†ò>]É}mÑꂪ¼+Êì.yÆ·²´yVgüC©Ÿ¶Oú`ÁÄ|´ek>ßbò|¿ZFÌu/LÕƒÆÊ~}ÙC]ñ]ÍÑÛjçuen·"ëœ<ýŒ"ë<å :þýÚ>‚,ËrÇó¼ ¢(®'l$l&“úhÀà ®ÅKø´?øášt´ÇÐn‹îˆÒÈVÌ*Í„)ÿ2å[¢¼ïHÏ‚½mÎÞ:ck™$š^[FÌu/LÕƒÆÊ~CYŸ®øž¶èŽºà†*ï²"»KžqV–vJ•{‰¬Jý´ýÐçÍç~kk&Z&¬Mc–úWæÚç¦ê§†ŠÇúÒ^í±Má-uþ5eÎEEf§,­C•Óí`V$oû²,ËqÏó‚ ˆ¢¸ž°‘°™Lê£ {€3¸/àw8Hî9G{ íªhR(ˆÐÌ*Í„ãQþeÊ·DzC¤gÞî~kk&Z&¬Mc–†sísSõ ±â±¾ôG]ñ]ÍÑÛjçuUî%EÖyyÆYÙ‘“Ú£·¥~Ú>é÷ç[üm¾Y›ë ÑOˆl›³»gl®)¢yÜÚ8j©6×<3VÊût%÷µEwÔ7TyWÙ]òŒ³²´SjçwR¿ Ŷ ˲ÇñÚ°8ƒkñR>Ãé 9ÚchWEw +Dé@d+f•f´…ò-Q¾ÅøßK¶ÍÙÝ36×Ñ_댭e’hzmm1×½0U+ûõeuÅ÷´Go«×U¹—YçågeGNj‹z¤~×~oû²,ËqÏó‚ ˆ¢¸ž°‘°™Lê£ {€3¸/àó|£Ê¦üKŽöÚUÑQ:ÙŠY¥™0å_¦|K”o‘ô,ØÛæìî›kŠh·6ŽZê‡Í5ÏŒ•†òGú’Ú¢MáMUþUeÎEEf§,­CväÑ8*õÓöCÌ·µÝÎ|¤7Dzæíî·¶Öi¢eÂÚ4f©e®}nª~j¬x¬/ýQW|WSø½Úy]™Û­È:'O?“zø„¾ì¡ÔïÚ×mA–e9Žãy^Q×66“I}´`p×â¥|¶oTÙ”ÉÑC»*ºS J"4³š(Lù—)ßå}GzìmsöÖ[Ë$Ñü«µñKÝ°©ægc倡¼OWr_[ôƒ¦à¦*ïŠ2ç‚<3(Kë9isMJý´ýÐGç ÿ6ß"é ‘žy»{ÖæzC´LXÇ,õ¯ÌµC¦ª'†òŸô¥½Úc=šÂ[êükÊœnEV§,ýtêáÆŠ~©ßµÛ>‚,ËrÇó¼ ¢(®'l$l&“úhÀà ®ÅKø±TPLØÑC_^4©@”Dhf•fÂñ(ÿ2å["½!Ò3ow¿µµNÛZ&‰¦×Ö†sÝ Sõ ±²ßPÖ§+¾§-º£.¸¡Ê»¢Ìî’g|+Këˆÿ½Ô¯û¿ïƒíþ5Ÿ%¾å[$=!²mÎîž±¹¦ˆæqk㨥þ¥¹æ™±jÀPþH_ò@[Ô£)¼©Ê¿ªÌ¹¨È쌗zøïæÚ!©Ÿ¶OÛ>‚,ËrÇó¼ ¢(®'l$l&“úhÀà ®ÅKøBµ5PLØÑC_^4©@”Dhf•fÂñ(ÿ2å[$½!Ò3owÏÚZ§‰– kÓ˜¥aÄ\ûÜT=h¬ì×—=ÔßÓ½­v~§Ê»¬Èî’güƒ½:{jòÞã8Î͹òªÇãLɾ/ÏÊE KÈfd å §9`¤¶x¬ÔªU©Z,¢B)(‚ìK 7üOÏÌyòDåäØsAÕyø¾æ}ž™ß|˜ùvËòÎÊ ºpÿ’Ô¯;ð}°Ý»ùÄí¢D`EXk]À|³hË4â~emúÃÒ0bª{j¬48t•wµe·4'¯ªŽ_R +ÛFdy2[Ò4.õÓcé#HÓ4Ã0,ËrÇóü–h[´“Iê£ €}ÀÙÊ`.‚Šå´m@{/¹[8I†©¨8IÅÈÐ:ŒÁUÜ¿Œû1ßÚòñ¼¶6OX\¿›ëŸ›j3žy¤¯º¯«¸­9uCíèS•\TØ¿•tËlòÂX‘úu¾æKm—š­ óáa»%Ì7zgPÏÒüÒÚ8fnxaª2V?ÖŸ~ «¸£-»©>yEuü’²è‚¼àœ,¯S˜m™’úi‡®ô¤iša–e9Žãy~K´-ÚÉ$õÑÀ>àˆl +eð—E]ËiÛ€ö^r·p’ 'RQq’Š‘¡u"%‚«¸o]À|³hË4âž´6MX\£æúg¦š'†3ôU÷tå?iJ¯«}Ê’^…½G^Ð-³u(‹¾#CkR¿î`—ü“ùÒÛQ1"´&̇–qÿ"æ›C½3ˆçµµyÂÒ8f®nª2V?ÖŸ~ «¸£=uCíøQUrQQt!µ]ÞYY^§ð{©_w¸JAš¦†aY–ã8žç·DÛ¢LRmìŽÈ¦PÕQÔEP±œ¶ h%3 +'Ép"'©Z#‚Q"°‚û—°ÖÌ7‹¶L#îIkÓ¸Å5j®fªybp>ÔWÝÓ–÷kJ¯©}Ê’^…½Gžß•mkW_$Ãq©x°û¿Û‘¡õÔvÁU<°Œû1ßÚòñ¼¶6OX\¿§¶«ýÍx摾꾮â¶æÔ a;UÉEEÑyA·ÌÖ!/Œ%õëQé#HÓ4Ã0,ËrÇóü–h[´“Iê£ €}ÀÙÊà#üÝì$BÑœ¶ h%3 +'Ép‚¤âb1"´F£D`÷/a­ ˜om™FÜ“Ö¦q‹kÄ\7l¬48ÑWÝÓ–÷kJ¯©O\V÷*ìçåù]Ù¹í*GŽKýÀƒÝÛ½/F†ÖSÛWqÿ2ž±Ý„Å5j®fªyb8óHØNWþ“¦ôºÚѧ,¶ûV^Ð-³uÈ #¸Qê×–ÒG¦i†aX–å8Žçù-Ѷh'“ÔGû€#²)”ÀÇùBe'BÑœ¶ h%3 +'Ép‚¤â$"BkD0Š–qÿÖº€ygQÏâ~em³4Œ˜êž« Î]å]mÙ-MéUÕ‰”Åß+ +ÏËòÿ•Û®-½.õë|l÷n¾ôvD`åív¾Y´eqOZ›Æ-®Qsý3S̓ó¡¾êž¶¼_SzMíèS–ô*ì=ò‚n™­C^Á|óR¿îP”>‚4M3 ò,Çq<Ïo‰¶E;™¤>ÚØ‘M¡,>Ú*;Šæ´m@{,¹[8NTœ¤bBDhFñÀ2î_Ä|ó¨wõL!Í/­c–†Sí±úWƒs@WyW[vKsòªêø%eñ÷ŠÂó²¼ÎìÜo´e7¥~ÝÁ.ù?ó½Û.þ~;"°‚û—°ÖÌ;‹¶L#îIkÓ¸Å5b®6Ö œõU÷´åýšÒkjGŸ²¤Waï‘çwÉlÙyÂïÉÔ7¡ÏXúÒ4Í0 ˲Çñ<¿%Úíd’úh`pD6…²øŽ³â¾…œ¶ h%w 'Ép"'©Z'‚Q"¸Š–qÿ"æ›C½3ˆç5ÒüÒÚ8fnxaª2V?6œÐUÜÑ–ÝTŸ¼¢:~IYü¼0"ËëÌÎýÆàüEê×ì’2_z;*F„Ö„ùÄí–0ß<æE=Sˆû•µéKȹnØX=( ¤¯üY[Þ¯)½¦>qYYÜ«°÷Èó»d¶ŽìÜvKÓ8™ú&ô¹JAš¦†aY–ã8žç·DÛ¢LRmìŽÈ¦PŸÈ‘cVÜ·Ó¶í±äná$N¤¢â$#CëD0JWñÀ2î_Ä|shËÄóÚÚ‚4M3 ò,Çq<Ïo‰¶E;™¤>ÚØ‘M¡,>©¿ùâž$ÃIh/%2¢OŠ¡u<Å«x`k]Â|ó¨wñLYݯ,Mãfר©nØøöêô©‰ã8/fæÍÌûy‘û>ûŠUÆD˜DD#Ùƒ@B®î†¸‹3 Âìâ®0‹ZbX‚³8"#–( +rJÈåþ§¾€ÚNgK'/fJvSPϧ¾¯»ªû×UÏÅ_LþŸ îëÏÝÓ½£õªën¨jú”Õ×䮫2çkhêXÇ{è`*”õaM:ç ³*Ci‚çÛÀkXlYšoi}eož±6M[‚“æÀ„É?fðèîêê‡4ž›êÚ~UM¯ÒÝ¥puÊœ)ƒo´ÒÿçѬt†aY–ã8žçAØ‘ìJöÊUúhàðöl‹Uðÿöå×ß"á9G{ÚOù²è…»[îê”9SÖÐÔ±Ž÷ÐÁT(«´&“Ü"È4AçÃã«Xì-Úö‰ÌÛ[gmÍ3ÖÐSKpÒ˜0ùÇ ¾i¾!­g@š¯WYÝ­8yUîL©OÿM|H¥Ñ£Sé2 ò,Çq<Ï ‚°#Ù•ì•«ôÑÀ!àíÙ«àÀ|ñÕ7æà”£½í§üÇè,¾Zé_ôˆT:‚ ð,ËqÏó‚ ìHv%{å*}´px{¶Åª8`ÆƇŽö´Ÿò£ó+Fe *#†“i<¹‰%Ö±ø*]FÛ–ð¼½õ•­yÆÚ4m >1ýãߨ¾aXWKãP×ö«jzîn¹«SæLY.MUúpeÛýg¾òíðÄ_Cc+ht ‰, á9{ËKÛåç–ЯæàcÓŸþel3œçÓž*ÎW'Îק¬¾&w]•9¯(Ü]hôm¥_ó(T:‚ ð,ËqÏó‚ ìHv%{å*}´px{¶Åª8xÆƇŽöôÉåË¢ó+Fe *C[8™Æ“ï°Ä:_E£ËHÛ"ž··¾²5ÏXCÓ–àsà‘Ñ?nðꆵg†4žum¿òÔu…»[îê”9S–‹+ýŽG¸ßߎÊHÛm≠,¾†ÆVÐèY@Âsö–—¶ËÏ­¡§æàcS`ÂØ8f8?"Χ«¿Uœ¯®_UÓ§¬¾¦8ù½ÌyEvüŠüŸ+A†aX–å8ŽçyAv$»’½r•>Ú8¼=ÛbU|º³wíè“Ë—Eç :WŒÊT† ·ðä&ž|‡%Ö±ø*]FÚ‘ð¼½eÖvù¹54m >1&Œcߨ¾aX{fHãP×ö+O]W¸»ä®N™3el|Péw<ÂýþvT'ÓÅùX| ­ Ñ%$²€„çì-/¥ùžZ‚“¿OWKãT×ÝPþQY}Mqò{ù‰?ËŽ·k½ÿŸCŸý7•Ž Ã0,ËrÇó¼ ;’]É^¹JmÞžm±*>÷'G{úäòeÑy‚Σ²•!È-<¹‰'ßa‰u,¾ŠFß"m‹HxÞÞ2k»üÜš¶'M cã˜Á7ªoÖžÒxÔµýÊS×î.¹«SæLTúj¸•ÁÉtq¾Ä_Cc+ht ‰¼AÂsö–—eóùÇKóéêok½ƒêº¿«Nÿ¨<Õ£8ùƒüÄ_dÇ;”Õ×ð¢ø|hß•Ž Ã0,ËrÇó¼ ;’]É^¹JmÞžm±*>#Uí G{úäòeÑy‚Σ²•!È-<¹‰'ßa‰u,¾ŠFß"m‹HxÞÞ2k»üÜš¶'M cã˜áüˆ¾aX{fHãP×ö+O]W¸»ä®N™3el|Péw<ªýávT'ÓÅùX| ‹­狼AÂs¿™ï‰9ðÈè7øîëÏÝÓ½£õþ¤ùîªÓ•ü¡´ ìx‡Éÿ3Q|>´¿JGa–e9Žãy^„Éî¿Ù«»§¦î<Žã\ìöfwvgz±;KžÉy89ç0 !L€cŒ1$„ä¤`¡ña¤µØ¥Ú²U¬´ ®h‹J‚Œ$ÂÿÓyfÏ9auã ›«a¾¯y_çÌo>“ù +v‹‰}´p8“[\eü¶¤µg«›PÉå‹"ò8±Á_Çã9<ö +‹f°èI£‘UKxé^B‚)s`ÁäŸ7úæ ÞY½gFçžÒ¶ÝÔ¸&*šÇUŽ1e㨼þ¼Ì~NjXûtîÛb¿ñ°öÞíâ9,–åçë}‰F^ =+ü|¡ÅâùîUzîè;ÔvÜÒÿNÝz½¢ùªcW”—…‡…ûË« å±/¹ŸÂùO@¥V8‚$IREÓ4Ã0,Ën v»ÅÄ>Ú8œÉ-®2~s«Žañ\Ub*­|QD'6øâëx<‡Ç^aÑ ]C#i4²j /#ÝKH0e,˜üóFßœÁ;«÷ÌèÜSÚ¶›×DEó¸Ê1¦l•×Ÿ—ÙÏImkŸÎ}[ì7ÖÞ»]<‡Å²ü|½/ùùzVþ;ßS~¾3§ç §îWzîè;§ußkÚn¨[¿ü’[PÑpQ^7"µ J¬ý’š„ìÈ©+…óŸ€JªpI’¤(Š¦i†aX–Ýìv‹‰}´p8“[\eˆácm ËT%6¡ÒÊEäqb¯ å°X‹f°èI£‘UKx -"Á”9°`òÏ}sï¬Þ3£sOiÛnj\Íã*ǘ²qT^^f–Ú$Ö>û¶Øo<¬í·ÝÞ|¹ýçë^B‚OÍ]¿˜Î<2ž~`8u¿òä¿ô'¦u·µm7Ô®o÷lU½$¯‘’Öž•Ô|ÂÅ­ŒóŸ€þ…#H’$EQ4M3 òì¶`G°[Lì£ €À™Üâ*@$’V[Â+U‰M¨´òEyœØÀãëB9,–Å¢,º†FÒhÏŠ%¼Œ„‘`ÊX0ùç¾9ƒwVï™Ñ¹§´m75®‰Šæq•cLÙ8ªh¸ ³KmkŸºõºØo<¬í·ÝÞ|¹·ç‹¬òóu/!Á§æ®'¦3Œ§Nݯ,µ H¬}ªcWpb]ìgÊöÛno¾\Ñ|½i4²j ÿjé~Ž„ž™»ž˜þŸ ¾Ÿ*½w÷lŸÔÿ§ºõz…ó+n2eãeyýyaÄA‰µ_R“Õ˜ºR8ÿèŽ I’EÑ4Í0 ˲ۂÁn1±6gr‹« Qýî£?VzîT%6¡ÒÊEäqb¯ å°X‹f°èI£=+–ð2ZD‚)s`ÁäŸ7úæ ÞY½gFçžÒ¶Oj\Íã*ǘ²qTÑpQf–Ú%Ö~yÃ<–û™‡²ý¶Ûw¾Þ4Yµp v?GBÏÌÁ'æÀcaÁs rÿ}çÚŽ[š¶êÖoöFlâG”×ÈŽ|&­ýTRóIyuœ‹çpþCÐ>Ž I’EÑ4Í0 ˲ۂÁn1±6gr‹« €€ºåZUb*­|QD'6ðøºP‹e±h‹®¡‘4Ú³b /#¡E$˜2Lþy£oÎàÕ{ftî)mû¤Æ5QÑ<®rŒ)›F eöa©mPbí—ÙÏ¡=«b?óPöövo͇Ç^íÍ×›F#/,ü‚ϑгâïUzîè;§ußkÛn¨]ß +#^U6}¡8zI^Ÿ”Ù‡¤¶nÇòj‚ÛÔèˆó_Þ®pI’¤(Š¦i†aX–Ýìv‹‰}´p8“[\e|¤ö¡ªÄ&TZù7|8±Ç×ñxŽ ‹e±h‹®¡‘4Ú³b /#¡E$˜2Lþy£oÎàÕ{ftî)mû¤Æ5¡nùZ帪lU4\”×Hmƒk¿¤öSK÷¢ØÏ<”åß=Ÿ°`ìUaA´7F^XøŸ¿YðÌCãé†S÷+OÞÕŸ˜þŸ¯U8¿R»¢l¼¬h¸PØQZ{VR“(ÿ{ŒÛ×Ò›ÆùAo*A’$)Š¢iša–e·;‚ÝbbmÎäWŒ¿˜Oa±LUb*¡ü›>œØÀãëx<DžŲX4ƒE×ÐHíY±„—‘Ð"L™ &ÿ¼Ñ7gðÎê=3:÷”¶}RãšP·|­r\U6*.ÊëF¤¶A‰µ_RÓg:óHìgÊòûÏ÷zÁØ«½{_¢‘{ v/!Á§æ®_¸QŒþŸ ¾Ÿ*½wù;ÐvÜÒÿNÝz½¢y\åãwcî%¬cawĶ[Ë{›ó°cÃÿv6T?ÕW>ÒU<ˆM©>uCUÔ§,¸º»föiæ9Iz@’æSæ÷ZÓ89šÅŽ EQ4M3 ò,Çq[¢mÑÎ^‰>ÚHöà&_ +˜"ÿJj`úŽ¢ñüB„?BëæÃ}«¸7„{W0÷2æ^D]óHû,ÒúÑ朲6ÿÇÒ8i®Ÿ09F5Ãúê!ÝéiËïjì·Õ§n( ¯+ò{å¹Ý²ì ÒÌNEÁ·šè—Ê¢ÿAqDßÚÏŽø mŸCÚfÖîøJرvÌè1Ô<¦¬Ô–ßÓ”¨Kn©Šûck*ò.Ës.ɲÎóƒJÒý'Nzµå÷1Ï +NFŽZ±#HQMÓ Ã°,ËqÜ–h[´³W¢6’€=¸É—ÀÁv"͇“áÔÀô­¢ñüB„?BëbaÜ·Š{C¸ws/cîEÔ5´Ï"­m-ÓÖæ·–ÆWæú Sí cÍ°¡ú‰®rP[~OSú‹úÔ UÑOŠü^yî?dÙ¤™ü¬c1Ñ/=”E¿¾àîˆá=#zø—ÐŽÔ5‡´ý߱鵥áwsݸÉ1*NùT_ùHWñ@[~WX³ä¦ª¸OYxM‘½(Í<'ÍHÒIYf—¡æ7Ü·†“‘£SìREÓ4Ã0,Ër·%Úíì•è£ €$`nò¥pàý]W†ûB© è[Eãù…„ ןo÷†pï +æYÆÜ‹¨ëÒ>‹´~´µL[›ßZ_™ë'Lµ/Œg‡ ÕOt•ƒÚò{šÒuÉMUQŸ²àŠ<·G–}AšyNž}ÉÖú!Ñ/=”E÷[pwÄð—#âžÏ˜{ ëX@]óÂŽm3¶Ö÷6ç;kÓKã¤8å˜Ñ1b¨y®¯Ö¬¸¯-ûUc¿¥>uCUô“²àª"ï²<·;¶©$= IóI2ºªG˜g'#G¡Ø¤(Š¦i†aX–å8nK´-ÚÙ+ÑGIÀÜäK ;nCÚgSзŠÆó þA®‹…qß*î áÞ̳Œ¹Q×'þWEÚfl-ï­Ío-¯Ìõ¦Ú1ãÙaCõS}堶⾦t@]ò³ª¨OYpUžÛ#˾(Í<'Íèä¿–è—Ê¢û‹-øň„o-¾£[ܱcuÍñ;"­l-Ó”M¯Í /Íuã&Ǩ±F\³ê±îôCmùÝÝA‹û•…×ù½Š¼ËòœK²¬óÒÌNIº_’擤t•P÷NFw±#HQMÓ Ã°,ËqÜ–h[´³W¢6’€=¸É—@’øáØq«s*5°}«h<¿áäºX˜ð­áÞî]Á<˘{u}BÛç¶[Ë{«ó¥éµ¹á¥©nÌxö߆3Ïô•t4¥ê’ŸUÅ}Ê‚«Š¼ËòœK²¬.Iz@[qŸð¯'ú±‡²è¾…cÅF$øoõ‹—ÐŽÔ5´ÏƦ´9ßY›ÞX'ÍõšŽCÍsCõ}å ?¨¶ìŽÆ~[]rSØ´ðš"¿WžÛ#˾ÈÏ*Í씤û%i>ÉIŸ¦ìê^ÂÉÈa-v)Š¢iša–e9ŽÛm‹vöJôÑ@°7ùRHùëßLŽÑÔÀô­¢ñüB„?Bëba·†{C¸wó,cîE´cuÍ!m3¶–÷Vç;KÓksÃKSݘÑ1b8óL_õXWñ@[vG]rKUüOeá5E~PžÓ-Ëê’fø?1ïçD?öPýúˆ»;†¿Ø1„{>cnqJקؔHë›sÊÚü–_ÓÒð»¹nÜTûÂxvø¿ìÕçO Çq^¬VºÓ¾8Ý› î×i&ô&„ 0\fÆ%$ä $lHX²)lHï½’Ð1¸ðŠÿi ›ösJî gô|ô}iÍÈþÉzäAï˜*o+F å— îa}éE]ñymáYiÖ¼Óªœ“ò²ŠŒâ ¥H§ôîKˆo§cû¯#È0 ˲Çñ´»Å¾ŽátTŠŠÈ‰#®bd Š;.Ë;. ¾9¤]œrÚér´N8<ãö¦1[ã[Û±WÖ£Ï-uâ Í5wMU·Œ‡¯]Ó»ÿЗý®+Ô h +ûÕù½ªÜUN·2«K‘Ù©È SÓÉ.¿ø§s¶ÏbTt?µs†aY–ã8žçAØ”mɶíõÑ@p÷mˆ¥„m8vu¬C?,žP(N„bRt” #µ†S«8Æ‚KX`õÏ£¾¯HÛÄ;élw4ÙßÚ^Z럦Õ>0×Ü1UŽ+®Ü—ô¥µEš‚3ê¼ÓªœneÖqef§¥þ)!=ÚÝbßFKátTŠŠàÒˆk˜4âŠT` õ/ˆS"¾Y¤}Æér¶N8Z>Ù=íMïmo¬ /-õÏ,uÓŽÜ7W‹›Þ4Vüi8tUïþCW:¤+”—íWç÷ªr{äq»™Š :5<àòkKí­“ÝíA†aX–å8ŽçyA6e[²íD{}´Ü}b)$§¿ÿËx']ëЋ'Š¡˜%èA­áÔ*N†ñà2XDýó¨ï+Ò6-þ°Î–OŽæ1{ã[[ÃKkýSKí#sÍSÕMcÅ5Cùe}éE]ñyMÁuÞ¿U9'•Y¿*2BÆŠBz>´ëžŽátTŠŠÈ­áä*F†±à +ö×” ¨oi—Ötz§­ϸ½ùƒ½éíØkkà KýÓ´Ú‡æšûæê;¦ÊÆŠ? åWôîKºÒ!]ñ ¶h@SЯÎïUåö¨rº•Y]ÊÌNEšN¦ºÚ’A[ã;ŒŠ&{;Ga–e9Žãy^„MÙ–l;Ñ^m$w߆X +I맟±Ö?uu¬C?,žP(N„bRt” #b8µŠ“a<¸Œ1ÿ<ê›EÚgå“ÃóÁÞôÖvì•õè3Kí£´š»¦ª›ÆŠCùe}ÙïºâóÚ³šü^uî)eÖ¯ŠŒmñoâ£éÐîû6:†ÓQ)*"·&†‘a,¸"XB‹¨´æœ¸¦³í‹³uÒÑòÙá·7Ùw6}n©’VûÐ\sÏ\}ÛTyC^öŠ¾lXW:¤+Ô h +úÕù½ªÜUN·2«K™Ù©È SÓÉÔô ¸¸©úâ›Ç¨h’¶s†aY–ã8žçAØ”mɶíõÑ@p÷mˆ¥ä4g\ëЋ'Š¡˜%èˆN­âd.c%Ì?úf‘öÄ;ålýìð|´7½³{e=úÌR÷(­æž¹ê¦éðuCùe}Ù°®ä¼¶èœ&¿W{J•Ý¥ÌìPçö ÞiBz´ëÅ¢¥p:*EEäÖpr#ÃXp“Ö\Dý ¨oiÿŠ´Í8¥A'-ŸìÒ¦ïmo¬ â¬Ï-uOÒjškn™*G#†ò+Ò¸¥CºâAmÑ€¦°_-MÜ£ÊéVJ+w*2:éÔôà—_S4`9ú£¢I×Îd†eYŽãxžaS¶%ÛN´×GIÀÝ·!–@òû§© .¹:Ö¡ïO('B1):JÐ1œZÅÉ0N®`%,°€úf‘öÄ;ålpx>Ú›ßÛ_[ž[꧹o®¾m:|ÝxèªÁ=¬+¹ -:§)èSçõ¨rº•YÇ•™â‡ éЮû6:†ÓQ)*"·&†‘a,¸"XB‹¨õÍ!í_‘¶iç_›ŽÛ›?Ø›ÞÙßX^ZêŸIËÖ>4×Ü5UÝ2UŽ+F åWôeúÒ!]É ¶h@SدÎïUçVåœTfŸ‡Vdt(Ò©édª+ Èè4V\wz§1*š,íA†aX–å8ŽçyA6e[²íD{}´Ü}b)ì û‡ÞîùD„âÐ÷‹%DÇp:*EEpjM #ÃXp .cEÔ?øf‘¶§wÊÑòÙîùhozg;öÊzô¹¥îqÚ‘ûæêÛÆÃ× ‡®êˆu%´Eš‚3êÜUv·2ë¸"ƒ6VŽîõ÷ݯÅþ{ÊÄ5åAÉÕÄAÄMQßÒ>ƒ´M;['­ϸ½yL^öµµá¥¥þ™<îsÍ]SÕ-S娱bÄP~Eᄂ+Ò• j‹ÓžÕä÷©óN«rO)³O(³º”™âÜ©©Ôôà—_™Ým¬¼éôNcTôÿ¼#È0 ˲Çñ—VNP}ËÿAþPdb‘eHX4@Vöòó¢B›îpsos²;ØYíTnc+bhféYz‚©Ã™:CëFŒmbë´áæßûs.vC¡P8ŽD"ÑhôˆvL;‰—è£ € ÀÜy@.€äÂ24cþm`v΂q#‚bš—ÞŽßÆ|›˜oó®«=kj÷Šªa ­_DóÊÚY…cF^ýVf%µM¦VŒK¬câÒQ‘ePXôˆ_ÐÃË»Ï5uqrn±3¯#†V–¾‘mlSÖýšèONÖ¿­ù þ ߢ›nbÞÏg².«\±² ʺ9*n W^õZfŸ’Ú^H+'¨ÄåO%Ö'âÒ‘eHX<(0÷ +{ùùÉÖ¼Ë÷b¹9Ù7Éâdk2:’ÑDvg¥LÎLó2´nvV»ØúDá\Àü{ªÅŽàááa( +‡Ã‘H$ÑŽi'ñ}´p˜;È¥tþÊÏV¹W´}Ø9 Æ ¦!ö4þ]z;|÷0ß&æ]W{ÖÔîUÃ2êú€:”µ³Šš÷òê·2û´Ôö<µb\RþT\6*² ‹ +{ùùx¦»œœ[ì¬vÄx Éhb¥â²Ç‰þä$^ðÛ TÍØbAÏ6õm`ÞÏjªìj¬¬Êµ„Ö/¢ÎyeÝÕ×1Cö•W½–Ù_Im/¤•±Ê똸tTT2,,¤[÷ñ z¨ÜyÝ\ÓnîmNvyênh¡Òëd}¦g¦yZ7KßÈ/ì•Ú¦TÞ Ì¿—ðÅŽ`ˆ‡#‘H4=¢ÓNâ%úhà0wK ýðã%…cF؇³à×#‚bšWãßÑàÛ¾…ù61ïgµgMí^Q5,«\Q炲nNQó^áx'¯š–]})­œ”?—=• ‹öñóâ]¾ÇͽÍÉjgÛC3KOðL]jÏj¢¿:Y÷MͯƒÒMÏfõm`Þuª¬gõ÷¸õ‹¨sžì«¬UÔÌЉ_Ëì¯èÊ“©ãdh‰uL\:J¶Y…Es¿ °—Ÿÿ—wŸŠnêâætr²;ØdúÌ6Äx 1´ M,}€•N0u8Sçc¤yZ7;ó†Ð2,¯™Áü{‰Zì†B¡0-‰D£Ñ#Ú1í$^¢6.sç¹’—°h@؇³à×#‚bšWãß!‡á[˜oóm¨½ëjϪÊýIåZBë•usŠÚ_Žwòª×²«/¥•“©WžI¬câÒ¿ ‹æ~~A/¯›kêâdw°3¯#†V–¾‘•Ñ,«šNôW'ñ¾4¾éiV ¾ý¥,F•]#ãªÝ+ª†e•ë#ÙuΓ‰•µ³Ššªrõ™}š +m›L­?m]öX\:"² ‘Å…E…}dt~þ²;Ït—›ÛÅɹEÕÏjgg¶!Ækˆ¡Éh¢žž`¦û™:3ÍËкÚNV‡°xHjŸFVÕøî¶Ø …BaZ$‰F£G´cÚI¼Dm\æÎr)$µKX=†ojû°sŒÔ{Ôü»ÿ9 ßÂ|›˜oó®«=«j÷Šªa ­_T:畵³ +ÇŒ¼úÌ>%µM¦VŒK¬câÒQ‘ePXôˆ_ÐÃË»Ï5ÝáäÜbgÝ@Œ­HF+hˆÝDu².ø}izšõ«²_â®ýÖwYåúH&F ʺ9ªrÍ{…ãzZvõ¥Ôö\Z9Aå.zZ¼d˜Ž> 0÷ +ûÈôüü¼¼nžé.7·‹|œìvV;;ó:b¼†ZC3‹| úù˜:œ©ó1Ò< ­›’ÑÌ+è_—;fÔøîÿt±# +…Âáp„FhÇ´“x‰>Ú¸ÌäRHva§£®ÚÀ>ìœãF5Ä5ÿ®Æ¿C÷0ß&æÛÀ¼ëjÏšÚ½¢jXB]Pç¼²vVQ3#¯~+³OKmÏS+Æ%åOÅe£"Ë°h@PØÇÏÀ»|›ÓÉÉjgÛC3KOp²oªê¡È”nú{Ö3eÏÄ=Ó׳J'^V¹–ÐúEÔ¹ ¬›£C¿W8þE¶–WMËìSRÛ iå$Y<õÊ3‰uL\öX\:"*Y©ôæ~Aa/¿ ‡zyÝ<Ó]®©‹zÙÔKȺÁÎlCŒ×C ’ÑÄÒ7’¯‚•N0u8Sçc¦yi†ÖÍÐ6 ÍÜÜ;Â’©}Z^7¯Æwÿ‹‹ÁP(‡#´h4zD;¦ÄKôÑÀ`î< —Àÿ~¼$»:¥ ìÃÎY0nDPCìQóïÒÛÑàÛ˜o“šw]íYS»WT Ë*×GÔ¹ ¬ûUQó^áx'¯š–]})­œ”?“XŸˆJ†…Å? Ìãç?äåuss»8ÙìÌ눡•¥od¥¤ã‰þêä^ðÛ¬ß)K÷Nûú6N{V«¼„º>P¡óÊÚYEí/ +ÇŒ¼ú­¼úÌN·='£§VŒKÊŸJ¬câ²ÇâÒ‘eHX<(,˜û…}ü‚~þ^Þ}Þå{\ÓnîmNÎ-ê=dµ“O‚Ù†[C bhfe4ý›½2‹ijÏã8/ó2ó6óp¥û¾·§,e-µ…BÙ­ì¥ ]EPdQ/ƒ•ËUFD‘d(‰$š1Qc$#QC(B‹s3ÿsÀPîËdø}òy Í9ÿÃÉç›’"“¤pxúÚ=}lž>VOïŒmÞ–m^fB%(ª,`EÖ°"ÿ&DÿIÊ5™mä¿sù#¸¸¸èr¹Ün÷Á‚ü¶–þhð€¶`é[jH¡Wæø;:×èÀ•;FåöÂa¹íf¬ƒXÆmYF¿ÌÒ+5uK’ôqÚ Qê5Qr‹0ñWÁÎKü¼¸nL'ª†­«bj3BËéêšê U™O ÚGÈ&ûe‘|èw¹mh£_|ë\Ç—]—p¥/eæ<´©k¹µÄÐŽr‹SÛD)­xñ¤+ÂÄfABÞ]ßÈ‹?‡§=ƒ×®%P6À +?fÀ ;ŠŠ34e u)]]LW¢©Šh!…hÔà6O+®wÆ6oË6/3¡‰ÐBS¢s +èê#,ôPÜZAR‹0¹U˜rMœÞ)³|ïòGAAAAð®l%þ"ˆÁlƒ^™càz:¿Õá”;Fqí#rû0³ aÖAÌ:€eôË,½Ró-©©K’Þ!6´‹SÛDÉW…I— ¿ðõxñg¹±§9Qµl]5+¼’VÁДҷ¦) ¨Aû)9dÿÝ$…ƒâ¿Ý»Ñ/¾¹ý.+QvmÜ•¾«­Œ‡î“™{–[K(·Äps¥xê5]”ÜBto$4ñõùúFTŸ×À=éãDŸâDÕ°#O²uU¬ˆŸñ1há{-ghŽÐÕ%tu1]uˆ¦*¢…R•ùÔàÔà< +I`.%0‡°—ìŸMö߃CöË")v‘™h9$_‡§¯ÝÓÇFh]Oº¿Ò/ ÝŽ&‡†‡æ‡FÈД1µÇ7üû ‚ ‚ ‚ ‚àfÕ¶üI,J½î•9®§ó[N¹c×>"·#1ÛfĬXF¿ÌÒ'3÷HM]ã?$†vqj›(åª0éŠ ¡™¯¿È‹?Ç­çDŸbGždEüÌ ;ÊДÑÕÅ´"jðJ`.Ù?›¤ØåékçÆÔmô‹oz¿+KÄ]Ûw%ñJåÿ„¾½ÒÚÒKäî–‰âéxô´D÷VQ2ž^˜tÕ$4¡ðõh¼¸nì”-U‹ÆÀÖU³"ªXá'Xá•hÌ° +Fh9Cs„¡.Eó o?LS¤©Šh!…Te>š +58´Ÿ´m†˜CØKÈFã!ûïÆõË"!»¾Õ/‹¸`º݈¡) èªC M)z(¤WbOʹ»wïÞ¿ÿáÇOŸ>}ùòåÔÔÔôôôÌÌ̇>}úôùóçÅÅE—Ëåv»¿¬â7€õÐŒ#=`K ­ðÊGçN¹c×>B8,·ÝÁ¬ƒ¸ý2KŸÌÜ#5uKÃMqÚ QJ«(¹E˜Ø,Øy‰¿£‘WÏ©ãDÕ°uU¬ðJFh9]]BS¤*ó)AûÉ{É~Y$…ƒ®*B‡lô‹ozëèX/ñ²(´mˆh=€»œÛÒ‹7ß’šºðèéxwC»8íº8µ¨ÿwaÒaÒeAB³ ¡‰¯¿È×7òwœçÅŸÅÇ{ßCô)|‘'ÙºjVÆ ´ ¦ö3ì(ZCSÆД¢ÐÕÅôí‡ÑZhª"ZH!MY€fC >@ Σí§àî£æRsprð9¢¿‰sÑøÅÊ|ZH: +Ë «@ÏBÏõNª÷M»0>>>11ñøñãçÏŸONN¾~ýúíÛ·333sssóóó .—ËMðeýàE[0Žô€­ÊŸ9ac§W渞Î5:œrÇ(®}„pXn»ƒÙ†0ë –q[–Ñ/³ôJÍ·¤Æ.Iz‡ØÐ.Nm%_&]$4ñõ¼ø³ÜØÓœ¨Z¶®š~‚v”¡)¥o?L )¤çQsÈþ{HŠ]$ßLnÜ™~ñ­ sßW&B¯n;€¡Üxñ>]fî‘šº¥¦.©±¥—nâõÓ®ãHi%6pÍ@˜ØŒ– Øy‰¯¿Àßï×À­çÆÔ!9ѧ8Q5ìÈ“hl]+âgVx%S{œ©=†O%´Wsߌº„®.FË¡«ÑTiª"4!|EÊüƒ¬øõüU~‹º„¡)C¢ÃÙº¿¢5ú¦žW.Ý»wïÁƒOžü¯ðØ«è!虬ÄÛè‹v¨J#Õ?~úôéË—/‡††l6ÛèèèøøøÌÌŒÝn_XXp8N§Óår¹Ýî¥6ú€MJœ;€òøù}ó-ƒUEd÷Ck²~šÑ*2öá :³HßKé{(]7¥í$5í¤ºU˜Õ,T5 +”õüÌ:¾¼ýmyéeÜ´Žä;¹•˜ÏL¸w=ìÐeÆÁ ¡ûÿs&xÏß‚¢ +Üu2 ò¸ÿŽ£þÛŒAÑ?ò¦þõ¿’Öœ2}ÐËg½|Üô‰ÿïÐ=çŽë¢´$ + @Ó†7 nÁ3Èjò,A x$P˜<{À“ȨF« d¼ôr´ ž´”›†*ᦣ‘p$Eœ”»h*¸¤V"ê6ëÈ-3!‡º&„‹½{5<öJØáuBŸã ⮣ëѽø!‰è±è["Õ»´5Ožtœ¾×wôøôqhxížÐKhFcªªzð*2ëÐ0èmT²*BVIÈ*ÐHxéeGRÄI)³I.Ä%ÝÁûIÌg%ÞF+¢û3!î&ÌrèÇ„<ô¿øšÄ|tº= +==—®&JozöìÙ«W¯†††l6Ûèèèøøøôô´ÝnŸŸŸw8N§Óår¹Ýî%Ÿ´~`“ç ü+ü94Z jŒÈî‡Öd]•'2öá ‘ÁŒ¢ô=”®›ÒuQÚRÓNª[…YÍBU£@ñˆŸYGdT² +žô7­„#)b'²ŽÜbÆß ½vè2ãà…Ðýÿ‰9¼çç èŸw ˆ<î¿ý;ÿmÆ ¨t»ôê[?Ž2X¼é;z½ézH]7©ëÂi;qhšv¡ºMˆ–€ÇÐ"Èj¨špʾ¢ž†¡0ámÈòZ"£„'«âÉ*yé\i9WZÆŃ)å¦ýÎI-á¤s$÷9’{ì”"\ò]vòoxHI¨;¸Ä‚Oó|žTˆ¯L)·§–àJË£ ¦hcË/^¿~m³ÙFFFÆÆÆ&''gffæææœ4—Ëåv»—|>Ò6ú€MJœ;€ò¬ö‡?þ)<öZDv?´&맭"cÎ`Ì8}/¥ëÆi;IM;©if5 UMe=_aâËk Y/½œ›VÊ‘Üc'²ó™ yáq×Ã_aˆ/†8²ïlðÞÓA»OFåì<yÌ»qËV=3î~>þFè Ô·~o”ÁâMoöÕëM×CêºI]N‹BKè@c¢ÔmBu«0«%@«ð¤làãyРɬCò‡„¼†È@UóÐ`d•84)ªŒ+}€öC÷;'µ„“ZŒ“Ü÷uRä ý›î>}M ¾Ý+-GOCOÞݸç»æÁÁÁ·oß¾ÿþÇÓÓÓ³³³óóó‹‹‹N§ÓEs»ÝK>iýÀ&%Î@ùÖó~©íˆÈî‡Vgý4£UdìÃ,tf‘¾—Ò÷PºnJ×Ei;HM©nf5 ”õ…‰/¯%2ª YOZÊM-椱“î°ŽÜbÆß½vèãàùÐý¿„Äœ ÞósPô»ND÷ßqÔ›1(*‡ŸY'Âß}™ú>›G,Ëé;z½ézH]7]©Euâ4í(!JÝ&ÄÃhA ²šª&œ²Q là+êéLè¸Q„ü!f#¯!2pÒ6ú€MJœ;€ò|Æ7ß2¸Ò²ˆì~hMÖUq"cÎ`Ì(JßCéº)]¥í 5í¤ºU˜Õ,T5 +ø™u|y-!«ä¥—qÓJ8’{ìäBVb>3!/<îzØá+ ñÅÐçBö Þ{:h÷©À¨œ€'"ùoÏÞ²UÏ_BOáo„¾X}ŸÍ€£ –åôf_½Þt=¤®›® §EuâÐ04íB”ºMˆ‚GÒ‚¨š¼)ʾ²ž¯@=â+L8´ŸÌ:Bþ@+’×à2’q®ft¬d_¶´UÈÂgàçÓs7d”K­2óiŸp©´Ã*îÚ<¯uPÕ:À¥líW¶<¯OÉ]'®æG¯Š_íìç· GmûÈZÚeúôéÔÔÔÌÌÌÜÜœÇãñz½>Ÿ/ƒÁP(‡#,­ˆõqJcšäJ€×ù½8WÑô0§}Eç^ë¦Xãrp‘FI[IÚBÆý(¡3«µCê¶AUKŸ²ù‘¢é'EãÙ ·åõ7³ê®Ëj®f±ëÛôÒ¶ŸKÕ|žR~:¹ô¤´äxÒ–^ÉænIa—¸à (¯=q“1¹ôwÅEï9׫bøHƹšÑ‘}5ÚFÐV!Ër®q>½p[ô£j.݈™Oûäy*í°ªm(ªÖAUëÀ: ®.Óó'èÌ¥]ö²ÃΩ©©éééÙÙYdz°°àóùü~P‡£-­ˆõqJcšäJ€7ðÁ†©•gsÚ'Ð ¹£bù(ÖÅÇ8)ÆÁEm$m%i i#ô£„άÖ«Û†T­ýÊ–ÇʦŠÆ{Ù wäõ·ä{odÕ^“í¹’Y})cçÅôªói•gS+Τ”ý5yÛ'Ò­Ç’Š{$E‡Å…âüQ+Êe3v|MÐVŠŠÞ®WÅ,G2ÎÕŒŽˆì«ÑÜ%±q¥e9×8Ÿ~Lh”KÍ¥YɼœöÉë[^<¢Î);â*;âžžž~öì™ÇãYXXðz½~¿?ƒÁP(´m)B¬pˆSÓ$W¼±?É« ÃXNûŠÎ½6ÖM±.>Æ)ä ŒvÒh#i+I[¸ßÐ:³Z;¤jPµô)›*ößW4ÞÍÞ÷Oyýͬºë²š«™»/gìú6}Ç…´íçR5_¤”ŸN.=)-9ž´¥7is·¤¨K\pH”w 1—‘ä’×ÿ@ñCQ¬r½*f9’qFetDdŠæn‹ ­+Y–3p¯¦çîÒè/©#Óð­|\]¶¼×RÞ=QÞý¯™™™¹¹¹ùùyŸ  £-EˆõqJcšäJ€·±aㇲÚk9í(:÷ÚX7źø§ƒ‹4ÚHÚJÒÒ0FèG Y­V· ªZû•-•M÷²îÈëoÉ÷ÞȪ½&Ûs%³úRÆ΋éUçÓ*ϦVœI);•\zBZr,©¸G²ùˆ¸ð#q~‡(MÜd”–Wk‡(~.Ša®×Ä,G2εÙ×Fs—ÇFÐÖˆ,«~i|„o—×óÛËþ›kvvÖãñx½^ŸÏç÷û@0 …Bápx1ÂR´X?à§4¦I®x{¢‚ƒ¤ÑšÓ>¢sGÅòQ¬‹qRŒƒÏh'6’¶’†qÂ0FèGY­Rµ ¨Zú”Íûï+ïf7Ü–×ß̪».«¹š¹ûrÆ®oÓw\HÛ~.UóEJùé”ÒO“Kþ"ÝúqRñQIQ—¸ S”ß!Êe7ÑiÛÏ´•âç¢Øæz}Ìj$ã\›Ñý%Ѷçqú›´¼^Ø[Ñó.Ç3??ïóùü‚`0 +…‚ÅK/ˆõqJcšäJ€wò»?¤Êj¯å´O èÜkcÝëâcœB.Òh#i+I[Há%tfµvXÝ6¨jíW¶Šuñ1N!õöêô§;ã8ÒªVU¥ÕJ]Å÷}{f Ü7&B¸Á1¾flJ“%Gã’ÐÐÒ°lî4Ù¤´4´4”„$”Âi v…‰ÆiÇC"Tž¬JL»Ÿ—ÞüÀòÏú>ù0QŠY¦èE/QÒ?Oúf ï áyi»'m®§Öö'Ö¶_,-£æ¦Sã°±~ÈPw__ûîØMíÑkÚªAMå×êò>Ui¯²¸GQø™¼à¬,ÜO¥GB’,Føljq¤žFˆbû3üFh}}eÙ ^”H$’Éä¦hkoép8 œá5¡ ø]}$˶ºžî|Þ)¾»PÜŠ½-¸ê®QÌ2EGRÉÀéŸ#}³„wšð¼´»µ|ns=µ¶=¶´Ž™›GÍM#¦†ï'¾5¿§¯¹£«¾¡=zUãPWô«Ê.«J.)‹?Wž—矑垖åtI„$Y´¼è¼¥å‘#õ:ú#ûs†ß­¯¯³,»±±‘%E›¢­½¥{Àà€r†×„2`(Š>§˜ÈáÎ×h§øîB©¡XªàªØŠƒ‰RÌ2EG(z‰ +,þyÒ7KxgÏ´½cÊîž´¹žZÛŸXÛ~±´>27ÿhjüÁX?d¨{`8~O_s[W}][5¨©¼¢.ÿJUö…²ä¢¢è‚¢àœ<¿[–{ZšÓ%ÍI²heQØÚ>áH½ŽþÅþ‡œá7²,ËqÏó QR´)ÚÚ[º(gxM(öÇ_ÿ¦1·ü|¸ó5z§øîBqG(ö¶àª#¸’Š‰RÌ2EG¨À"X ýs¤o–ðΞ—öŽ)›{Òæzjmli³´Œš›FLÃÆú!CÝ}}í7ºc7uÕ×´UƒšÊ¯Õå}ªÒ^eI¢è‚¼àœ<¯[–û©ôÈ'Òì$‹V–\´»§©?€þÛA–e9Žãy>!JŠ6E[{K÷€Àå ¯ eÀ~’dÒ¤ÞŠ£b» ¦¢‚«©˜±¨IGHz‰ , +$|s„oÖî±{¦mS6÷¤ÕõÌÚþÄÒ6nnydnþÉÔøÐXÿ¡îþø=]Ímmõ mÕUs@]ѯ*»¬,¹¤( +Ë ÏËóÏÈòNKsº$Ù’,æPf@Uþ%á™N÷MPÚA–e9Žãy>!JŠ6E[{K÷€Àå ¯ eÀ>ûàÃèëî;BqôN±ÝcTpõmÌ +ÅDSÑË$!é%2°Húç ßá}e÷LÛ;^ØÜS¶“Ï­® KÛcK똹yÔÔ4bl6ÖêèkïêŽÝÒV_×T ª+¯¨Ë¿R•~¡,¹¨( +Ë ÎËòÏÈrOKsº$Ù’,æP¦_ã |³é¾ z¯m ˲Çñ<Ÿ%E›¢­½¥{Àà€r†×„2à½øØÖlïxáÅÑN±ÝSQÁÕTÌŠXTˆ¤#$½D–HÿáŸ'|³„÷•Ý3-ÜÓæž´ºžYÛ',mãæ–1só¨©qÄØ0l81d8þ}í7ºc·´G¯iœƒêÊ+ªò/•¥½ÊâEQX^p^–F–{ZšÓ%ÉI²˜C™~íÑë¤>ÝgAï©ídY–ã8žç¢¤hS´µ·t8PÎðšP¼/ùàCsЊ£wŠí.˜Š +®¦bV(&šŠ^&éI/‘EÒ?Oøæ߬Ý;c÷LÛÜS6÷¤ÕõÌÚþÄÒ6nnydnþÉÔøÐXÿ½áÄ·úã÷ô5wtÕ7µG¯iœÿRWô«Êú”¥½ÊâEáyÁ9Y^·,÷”4§K’’d1’LFì–ðVºÏ‚ö½ídY–ã8žç¢¤hS´µ·t8PÎðšP¼_×WZÛ'¡8Ú)öcTp5³""éI/‘¡EÒ?Oøæï+»gÚÞñÂæž²|nuMXÚ[ZÇÌ-?›š~45þ`¬ÿÎP÷@üž®æŽ®ú¦¶êªÆ9 ®èW•õ)K{•Å=ŠÂ ò‚s²¼nYî)iN—$;$Éb$Ù—…'Ò}´m ˲Çñ<Ÿ%E›¢­½¥{Àà€r†×„2 T%½u„âh§Øî‚©¨àj*fE,*DÒ’^"‹¤ðϾYÂûÊw¼°¹µ|nuMXÚÆ-­cææQSÓˆ±aØX?d¨{ ¯½««¹­­¾¡­ºªq¨+úUe}ÊÒ^eq¢ð‚<ÿ¬,¯[–{JšÓ%ÉI²I&£®~?Ý—AûÒö²,ËqÏó QR´)ÚÚ[º(gxM(Òä#i¦¹yÔŠ£b¿Q0FWßƬPL4½LÒ’^"‹¤žð;Y»wÆuLÙÜ“V×3kû„¥mÜÜ2&ÙÔ8bl6œ2ÔÝ××ÞÕÕÜÖV_×Vý[ãPWô«Êú”%—”Å=ŠÂÏäùgeyݲÜSÒ#ŸH²C’,æÐa¿ªü²ðƒT꟠?OÛ#Ȳ,Çq<Ï'DIѦhkoép8 œá5¡ H«mÍöŽŽPíÛ]0\MŬˆE…H:’*°DIÿ<á›#¼¯ìži{ÇK›{Êvò¹ÕõÌÚþÄÒ6nnydn55>46 ÿ—½:}j"ÁÃ8NÕÔ¼°æźo¶rßwÒÝB¸äÂ=aÂm G§ã 2j¤peeeØÁ•E¥q±PŠÁ¢E ÂKþ¦îjŽªéîÈK^¶žO}_¥Rɯº_:-ý•˜4Åì}.¶KÅRbô'’Þ!é$Ý&#[Dx“o¡uWÏš«û½3ø?çµwŽ®%{Ç[{û‚­mÞÖúÚxei~iöO››¦L “Æú Cí¸¾fLWýHW5¢­| )R—ÝS—ÞQ(‹ú•…} +o¯Ü—çÇd ×ôýo¢Ä{Ð…,3‚,ËrÇóü¡äHr,99Ûy8d)_â@(²É_´%¶ößsãûè´ô—1b³'Û•J‰ÑŸHz‡¤“dt›ŒláM"¼á +ýáêYsu¿wWœ×Þ9º–ìoíí ¶¶ykËœ50kiž1û§MMÏM “Æú'†Úq}͘®ú‘®jD[ù@S>¤)T—ÞU•ü¬,êWö)¼½rÏuy~LæŽÊ=qcäðG”xº`eFeYŽãxž?”IŽ%'g;ï€,åKå@öùt…ÖsãûH*ý•1ŠÙ‹íJ¥„Hz‡¤“dTh›ŒláM"´î +ýáêYsv¯:ƒ+Ž®eGç’½cÑÞ¾`k›·¶ÌY³–æ³ÚÔôÜÔ0i¬b¨×׌é«GuU#ÚÊaMÅ}MÙ ºô®ªägeñ-eáM…·WQp]îadî¨ÌÓûÆ„÷E‰÷  SfY–å8ŽçùCÉ‘äXrr¶ópÈR¾ÄPd¥o¾ýN[>DÒÉÜø>’J%&M1{Ÿ‹íR±T&’ÞM’‘dd‹o¡uWÏš«ûƒ3¸ê ®8º–KöŽE{û‚­õµeΘµ4ϘýÓ¦¦ç¦†IcýCí¸¾fL_=ª«ÑVk*îkÊÕ¥wU%·•Å·”E7Þ^EÁu¹‡‘¹iY^Dø‚50G‰'¡ PfY–å8ŽçùCÉ‘äXrr¶ópÈR¾ÄPd±K—u–æ¹ñ}tZúË1ŠÙ‹íJ¥ÄèO$½CÒI2ºMF>‘-"¼A„Ö]=k®îÎàª3¸âèZvt.Ù;mm ¶Ö7Ö–9k`ÖÒ~¯BÙXfY–å8ŽçùCÉ‘äXrr¶ópÈR¾ÄP\r7MD6sãûH*ý•1ŠÙ‹íJ¥ÄèO$½CÒI2ºMF¶¡ðZwõ¬¹º?8ƒ«Îkï]ËŽÎ%{Ç¢½}ÁÖúÆÚ2g ÌZšgÌþisÓ”©ñ©±~ÂP÷ØPó«Þ÷‹®êŸÚ«ÿÐVü]S>¤.»§.½£*Põ+ o*¼½Š‚ër#sÓ²¼ˆ²ð†©ñÞ¤ÄÃP•A–e9ŽãyþPr$9–œœí¼²”/q ”Ç7ß~§­zHÅR¹ñ}$•þJLšbö>Û•J ‘ôŽT’Œn“‘-"¼I„7ˆÐº«gÍÕýÞ\uW]ËŽÎ%{Ç¢½}ÁÖ6om™³^Yš_šýÓæ¦)Sã3cà uÿ6Ôüª÷ý¢«~¤»úP[ù@S>¤)T—ÞU•ÜVßRÝTxo( +~”{âòü˜Ì‘å…µWÚÚ(ñ6”eFeYŽãxž?”IŽ%'g;ï€,åKåÀEsé²Îx•ßG§¥¿Œ£˜½ÏÅv¥RB$½#M’Ñm2²E„7‰ðZwõ¬¹º?8ƒ«ÎàŠ£kÙѹdïX´·/ØÚæm­¯­W–þkö¿0ÿ›©ñ™±aÒX÷ÄP;®¯ÓU?ÒUh+‡5÷5eƒê+ UémUñ€²è'eaŸÂÛ+÷\—{™;*Ë‹(¼7Ìþ"š¤ÄóÐy–A–e9ŽãyþPr$9–œœíOöêô)Šã8oöEܪTª¶Üšû¾{º›á¾/‡d†a`Žž–(bÐYV†hX1"±XT Bˆàp¼äoê®æ¨Úî}/v7Ð<ŸúV¿›î_Õ¼xŽ{Àà„rÇw„ÒàÃôkÃ7ŸÛFR[‡££›ïŠlБd*ŠY§˜5*,´J…VÈà2\" g碳ã5á_ üóßKGÛ¬Ý;co²µ<·5?³z&,MãæÆ1sè©~ÄT;l¬¹g¨ÒWêÝ·uÚ²ÚÒëš’¨‹âêÂ˪‚/”ù½Ê¼ ŠœnEv—<+&ÏŒÈ2B² Fwæ–ð~Z<O©dY–ã8žçw%{’}ÉÁÑŽ{Àà„rÇw„ÒàC¦Ê»H†–ÓcÛHjë¢bttS,²!•LE1ë³F……V©Ð +\&ƒKd áì\tv¼&ü „Þá{éðÍÚ½3öÖ¶–mÍ“VÏKÓ¸å옹aÔT?bª6ÖÜ7Tß5TÞÑ»¿ÑU|­-¿©-ûRSrUSܯ.¼¢*èSå÷*óz”¹ç9Ýò¬.yVT–ÁÈ\!eî範oÑâ…èw-5‚,ËrÇóü®dO²/98Úq8œPîøŽP|àþôç¿ê݃t$™ÛFR[‡££›b‘ ©d*ŠY§˜5*,´J…VÈà2\" g碳ã5ѱ@øç‰ö9‡oÖî±{§m-S¶æIë¹'–¦qËÙÇæÆGæú‡¦ºÆÚïŒÕ÷ UCÂß¡;sKW1 -»¡)½¦)îWÅÕ…—Uù—”y•y9ÝŠì.yVLž‘e„e® "·ÇX3ì $hñHô{”A–e9Žãy~W²'Ù—í¸N(w|G( > +Ÿ|¦3Tߥ#ÉôØ6’Ú:¤¨Ý‹lH%SQÌ:ŬQa¡U*´B +—È@ÂÙ¹(Dt,þy¢}Îá›u´ýd÷NÛZ¦lÍ“ÖsO­ž KÓ¸¹qÌÜ0jª1Ökô•ƒz÷m]Å€¶ü¦¶ôº¦äª¦¸_]xEUЧÊïUæõ(sÏ+rºÙ]ò¬¨<3"ËÉ\AUþ%SÃ(\¦Å;Ñÿ±Ô²,ËqÏó»’=ɾäàhÇ=àpB¹ã;Biðùä3¡ú.I¦Ç¶‘ÔÖ!EÅèè¦XdC*™ŠbÖ¥Ö¨ð*Z!…‚Kd á ¼qv.:;^þ_ˆö9‡ïgGÛ¬Ý;mo²µ<·5?³z&,Mã–³cæ†QSýˆ©î{cÍ}Cõ·†Ê;z÷7º3·tÚ²šÒkšâ~uQ\]xYUð…2¿W™wA‘ó¹"§[žÕ%ÏŠÊ2™+$sÕÅ77Ž‘á5Z<ýö¥FeYŽãxžß•ìIö%G;î€ÊßJ€Î©ÓSÃé±mô¾­CŠŠÑÑM±È†T2ŬK­QáU*ô+Z!ƒËd á ¼qv.:;^þ¢}Îá{éh›µ{gì­/l-?Úš'­çžXšÆ-g›™ëšêk‡Õ÷ UCúÊA½û¶®b@[~S[z]SrUSܯ.Š« +ûTù—”y•¹9ÝŠì¿É³bò̈,#,s…d®€¶ìº¥é_4“¤ÅkÑoVjY–å8Žçù]Éžd_rp´ãp8¡Üñ¡4øH:í0Õ?Lm£÷mRTŒŽn¾+²!•cÞRÌ:ŬQáU*ô+Z!ƒËdp‰ $œ‹ÎŽW„ðÏ;|/¾Y»wÆLÙš'­çžZ=–¦qs㘹aÔT?bª6ÖÜ7Tß5TÞÑ»ugné*´e7´¥×5%W5ÅýêÂ+ª‚>U~¯2ï¢2÷‚"§[‘Ý%ÏŠÉ3#²Œ°ÌžÚò¯¬ž§4“¤ÅƒÑÿZjY–å8Žçù]Éžd_rp´ãp8¡Üñ¡4ø¨:í°x&ÒcÛè}[‡££›ïŠlH%Ř·³N1kTXh• +­Áe2¸DÎÎEgÇk¢cðÿB´Ï9|?;ÚfíÞi{ë”­å¹­ù™ÕóÄÒ4n9ûØÜøÈ\ÿÐT÷ÀX;l¬¾g¨2TþSï¾­«øZWþ•¶ì†¦ôš¦¸_]W^Qô©ò{•y=ÊÜóŠœnEv—<+&ÏŒÈ2Â2WHæ +hJ®šÇœ-ÞŒþËR#Ȳ,Çq<ÏïJö$û’ƒ£÷€À åŽï¥ÀÀ§Ú‹g"=¶Þ·uHQ1:ºù®È†TRŒyK1ë³F……V©Ð +)\" gç¢XÇ+¿@´Ï9|/m³võ…­eÊÖOÚ>¶9Â:KXgË´¢z2TÕ„Üü^^9Š›Þá™qDV>$-”–HJÞHŠ_‰‹úÅ…½¢ünQÞÂÜ‚œg‚‹üìÇüÌGíZ"-JIùŽrzÃ-åøH:IÇi§›'msu†°L+,SŠêIEÕ„Ü<.7É+Gq“¯ðȌòòAiÙ¯ÒÒIÉkIñKqáÏ¢‚^Q~·0¯K˜ûBóTÝÉÏêàg>äÚ¹÷¸ú6NÚNj –rKnb'¹Ùº¬ÄF–¶M¸†Æ×1ã.3ãj™±5 ňq"j;¢²!*+ýÌIo½$¬³ÊÐ_@ÿÑáúýþ@  wÃöÂöÃNvÚ€o”Á½F8ÃÎIrñ +O´kŠ´||T(%å åôFZ +åøH:IÇi§›'mHÛa%¬3„eZQ=ªjBn~/¯ÅMïp“Gf‘‡¥eƒÒ²_¥¥¿HŠ_‹‹úÅ…}¢‚^Q~·0¯K˜û\óTÝÉÏêàg>äÚ¹÷¸ú6Nz+'µKmÆ’›ØIn¶î&+±‘¥m@®¡ uhüf\-3¶†¡q14¢v j¢¢³Ðïð2ÚÅů–YÒéƒèGÐï÷`0¸¶¶vp²Óp|£ î5º(À™wž4㦱h× +iùø¨PJÊw”Óné0Ò±n´Ï‡²ÍÖYÂ:CX¦–)Eõ¤¢jBn—›Çä•£¸éw¼Â#3ŽÈʇ¤eƒÒÒié/’â×â¢~qaŸ¨ G”ß-Ìëæ>ä<dwò³:ø™y†vnÆ=®¾“ÞÊIûKmÆRnaÉMlÝM–®‘¥m@µõhÂU4¾ŽW*¶†¡¡1NDmGÔ6De½]ÍŒ»ÌI¿+,èÁͤÓwf;A‚ ‚ ‚ ‚ ÿ{Qvž4㦱h× +iùø¨PJÊw”Óné(ÇGÒ±H:H;Ýä<dwò³:ø™x†v^Æ}®¾›þONÚ,µK¹%7±“ÜlÝ Vb#KÛ€&\CêÐø+̸Zfì%†¦†¡¡1NDmGT6De½]Íи°”aþO² +éô©N}!‚ ‚ ‚ ú«rž4ãžh× +iùø¨PJÊw”Ói)”ã#éX ·@ÚçCÙæ:ë a™¦STO*ªþWËÍïå•£¸énòà¿ÉŒÃ²òAiÙ[i逤ä¤ø•¸¨_\Ø'*èåw 󺄹Ï9O;ùÙù™x™x†û\ý]®¾“v‡“Ú‚¥6cÉMìä°u7YºFVâu–¶M¸†&Ô¡ñW˜qµÌ؆ÆÅÐPŒ'¢¶#j¢²"*Ë• K¾Å¿øDf!¾3QåÐÔÔ”×ë]]]]__ßØØØÜÜüôéÓ—/_¶¶¶¶··wvvÀîîîÞÞÞþþþAÄ¿Žcp¯ÑEÀù»@/.zíZþÔòñQ¡””ï(§7ÜÒQŽ¤c‘t,vºyÒö´ÍÖYÂ:CX¦–)Eõ¤¢êyÕ¸Üü^^9Š›Þá&^ñ›Ì8,+”–½•–HJÞHŠ_‰‹úÅ…}¢‚^Q~·0¯K˜ûBóLpñ ?û~V/óÏÐÎ͸ÇÕ·qÒ[9iw°Ôf,å6–ÜÄNr³u7YºF–¶ÕÖ£ ×Ðø:fÜef\-3öCSÃÐPŒ'¢v j¢¢³^ˆ®f%6ò …=2ãéôý5«šžžöz½«««ëëë›››Ÿ?þúõëÖÖÖöööÎÎN ØÝÝÝÛÛÛßß?ˆ8íÀ7Êà^£‹€üí;\˜óLé\Šv­@‘– +¥¤|G9½‘–#‹áH;ÝLìrºÓít¥@¡PvʾB¡Ð–C+‹ ˆVQäÊ®½nŒ»ƒ²ˆÂp²—«Ñ`\bP &  ˜€)4iK2ç ä:™ëdîÌd`&Ï/ÿ/=i{ž÷ýò ªÍˆª ÜD (¢* ©ÊŠÿFŠŸ ì‹‘yd…‘¬0|ôÔÀFØnN| ãŠXß)3 ý?¤»jµZm6Ûýû÷GFF^¾|966611155533ãp8æççN§Ëår»ÝgqÅj/p¬Q‹Ï þ¡ßþÅŒøNbì–›‡¡•†¾š‰Hf²-—?¸ÔÀrØMÖ/Åúˆòz‰ŒV ž¡[bè’è;ŹD9í"]›Hw]”ÝŠf]C³ZPm“0óª0£A°áÏ‚ôK‚ô‹ü´óüõgy©gx)õÜäSܤÞ‰?z'åÄ×qâŽpb`Çbk²¢kXQû˜‘ÕÌȽ̈*Fx%#l7=´‚²ƒb¡©·Ñ‚Ë‘ 2DµQ•RK¨ÅTeEYHñ/ ø™ñÈ~&²/†GRI>†¥ôøGšÚ‚¿OFù0]£Õj¶Ûí###£££cccSSS333‡c~~Þétº\.·ÛíñxW¬öÀ¥±Øñ¼àŸð›o¾¥( ÄúN¹yú¢¡_ÎD$3Ù–Ë\i`9ì¦ ë—b}Dy½RcÔh•àº%†.‰¾SœÛA”Ó.Òµ‰t×EÙ­hÖ54«Õ6 3…W„ ‚ —éùiøëÏñRÏðRêyɧ¹I'¹IǽôN8ʉ¯ãÄæÄÖ²c±5XÑ5¬¨}ÌÈjfäẅ*Fx%#l7=´‚²ƒb¡©·Ñ‚ËiÁ[‘ 2Dµ ,¥n¢S•Ee!Å¿€âgÆ#û™È¾ùd_Œ¬È#)Œ$ÉG‡ÿ„Q…¿ŸŸSFÍ—ÓØÓÓsëÖ-»ÝþäÉ“ÑÑѱ±±ÉÉÉ©©©™™‡Ã±°°àt:].—Ûíöx<‹+V{`ÒXìx^ðk¬“e 2¯ÈÍÃÐ }5‘Ìd[.p¥å°~<)Ö'ÍÃë•{¤F«ÄÐM¤ï’è;ŹD9í"]›HwC”ÝŠf]C³ZPm3ªmf^f46\¤_¤]à§ç§žå¥žá¥Ôs“Oq“Nr{'óN8ʉ;‰;̉­eÇdk°¢kXQû˜‘ÕÌȽ̈*Fx%#l7=´‚º“b¡©·Ó‚Ëñ 2DµQ•"¥ÔÀMÔ€bª²ˆ¢,¤øPü7RüÌxdß|²/†GR‰| $=þ„¦¶0"ª8ñuÜ”S¨¶I¬ï”·±V’ç4õööÞ¾}ûÁƒOŸ>}ûöíäääôôôìì¬ÃáXXXp:.—Ëív{<žÅ«½À°Fi,vzôèùóç¯_¿ÿþýôôô§OŸæææœN§Ëår»ÝgqÅj/p¬Q‹Ï þ=ß|»ŽºKbì–›‡¡¿mè«™ˆd&Ûrùƒ+ ,‡Ý”aýxR¬Oš‡×+5öHV ž¡[bè’è;ÅúŸÄ¹D9í"]›HwC”ÝŠ‡fµ ÚfTÛ(Ìlf\f46\¤_¤_ä§]à¯?ËK=ÃK©ç%Ÿæ&Ÿâ&ä&÷N8æp”_lj;‰ý[ËŽ9ÈÖ`E×E}ÏŒ¬fFîeFT1Â÷0Â+a»é¡ôÐôô M½\¾ÔV$¨ QmAT›U)5°„¸‰PLUáQ”…eÅ¿€âgþÙÏDöÍ_ +#Rä‘F"ÃJúåä¹ëä9ëšÚò9|Nbàø:üh¨¶éïj&ʾ&#îù—óÉm±Ùl÷îÝ{üøñ‹/Þ¼yóîÝ»>|üøñ¯ìÕYL“éÀqnæÊää$'™3,¥í×õëƸ ›@Ù¡P ¥¥…RŽ3*î.DQ„€ ˆ #‡Md‘â…11!ÆHp‹[Ce)$çyk90ÇenÆ‹çŸßU¿÷{ߧi“wrròýû÷f³yfff~~Þb±,,,,.µÚ8†a†a†a†ak4yÚ0°Ã0 û“²wÝ&Ö¶¸¤ ¡ßü"£Ì8`“Ü¿¤ÏÆÐ+3ô©¡[šºˆÄN ÐwHôíh'´Zý?HÓ,Ò4‰âiu­®§Uu´ªVwE[1—Ê‹å~t5?ªŠ¯¨ä)*x‘å܈2nx)7¼„VÌ =à -¢B +©à*è;(Ÿx‚-ÏcɳrYþ9L¿l¦_sk&pö=Bøbxg0¼Ó^^iNžœ<÷;mÙç´e¯£ÇÂ}·£û.G÷T·Äæí„ëÏÀÞõ'øóØo²Ú˜ò??l4þ°!ÙÊ°l}Ò?×'Úü¨ÿ ë#ëâd²Ï¦mä·0ŒCÂÌð-~Tmˆ+ºuëÖÝ»wGGGÇÆÆ?~üòåK“É4999==m6›gggççç-ËâŠVûÇ0 Ã0 Ã0 Ã0l&Ov†ajÿ+Ñ\R†Ð'¿Èh#3Ø$÷/é³1ôÊ =@jè&’@—4ñº4±Sô}»D×&Ö]'´Ú±¶Y¤M¢øFZÝ@«ëiU­ªÆ]Æþ*Œ­Ä\(/ +”øÑÕü¨*¾¢’§8Ç‹,çEœåF”qÃK¹á%œ°bNh B +©à*è”Ï<É–Ÿ`ËóX¹„Ó/›é—ÅÜš œ}:ûqö9ÌðΰJgxdx¥9ypòÜï´eŸÕ^G=„ûnG÷]Žî©Žn©n;­v8lÞN¸þ ì]²Úf¿é£Sþ¬tÝFvpÛA6÷ØGÃ$0Œ +“¯-Ù¨®¸qãÆÈÈȽ{÷úôéëׯM&ÓÔÔ”Ùlž™™™››³X[\Ñj_à†a†a†a†­ÑäiÃÀÃ0ì›õݺïÜSÅÚ—”!ô‰Á¯1ÚȌ˒û­ú–ze† 5tI]Dâuib§è;$úv‰´‰Zm´-bm³HšDñ´ºV×Óª:ZõZU+Œ»"Œ­‚˜KåEò‚ ºš}žUÅWTòçx‘弈³Üˆ2nx)7¼„V +æ„*¤ +. ‚OSA§¨ |vàIvà ¶<%?Î +È%üsXþÙL?Åô;ÆÜšéì{ÔêásØÙçÃ;Ã*áuÐ* 8ypòÜOlÙ·dïGŽ{>µôt¼BvðN‡Íá88Æ`åèÕ®Úê‘‘‘»wŽŽMLL<þüÍ›7oß¾šš2›Í333sss‹eaaaqE«}c†a†a†a¶F“§ ; ðoßßÙþœ°YrŸKÊúÄà×mdÆeÉýKú–ze† 5tK“@‘Ø $@ß!Ñ·Kt M¬»&Nh%´-bm³HšDñ€V7ÐêzZUG«j…qàŠ0¶b. ”‰èj>ˆªâ+*yŠs;;»´´´ººêv»½^¯ßï! †B¡p8I(Õ !„B!„B4Mí$‘†B)êÈÑcoýôC™¾#»Æ»pîRóq&G{gSsVBÅSÕ„…2Ž©Œ£J¢ÊÌŒ( Ä°Â0¤¨Œªè'äå}òò^yy¼¬›é»dúNJ×!ÓÝ—éÚ³JÛ¨’»„´¸UZ|GZÔÂ4K ›2©o2 ng4fj%Ú‰ö–äb=•3#ÿ•w¹–‘W—‘[—žû5uá*ó•sådÎå¨ó—|™ ö0ç2ûê*BÇæß w‘ÛÉÿ¼Íu¾Ã÷>|øðÉ“'Ïž=›™™YXXXZZZ__ßØØðù|@@„`0‡#±R½ºB!„B!t ÓÔNi!”ꎽuêÄÙÏ”Fsv vçÜ¥æ'âLŽö8Φ欄Šª&,*ã˜Ê8J(‰*33¢4à +âr0f@Qѯ¨è“—½òòyY7!ÓwÉô”®ƒi'²JÛ¨’»"iq«´øŽ´¨…i–6eŠ +n3™ÚF‰¶¹%¹X•“ÈÈ¿Á\ÏÈ]ËÈ«‹ËeâO®Ñ3ù×é·d‚¶/l"÷’ßx‡ï}÷—?~úôéÌÌÌüüüâââÊÊŠÛíöx<~¿_`ƒÁp8‰•êÕB!„B¡¦v’HC¡ÓñSFiasv ^ɹ>JÍO$19Øã8c%TÜ8UMX(ã˜Ê8J(‰*33B† …aHQ93 ¨èWTôÉˉ^yyUÖMÈô]2}g”®C¦»/Óµg•mTÉÝ-ÒâViñiQKL3UØ”õMfÁm¦1S%Ñ6ÄÜJFÒ3ä0ù¤°‰MkaÝ#?ð5<555===77·¸¸¸¼¼¼¶¶¶±±áõzý~¿ AV8ŽÄJõêF!„B!„ÐNS;I¤!„Ðëû?’ž8û™ÒhήqÁ+9÷ÆG©ù‰$&G{Φæ¬"7NU–(ã˜Ê8J(‰*³²j„2ÄÂ0¤¨ŒPTô3}òrQUÖ-’é»dúÎ(]s_¦k'²J‰6ªä^VÉÝ-ÒâVæUÔ’¬9Yì9=ÜPÚF¯ 7vþõÈ{¿›žžž››[XXX^^^]]u»ÝÇçó ‚d…B¡HB©^Ý!„B!„:Ðij'‰4„:¨ýPQ$ɯϮqÁ>8÷ÆG©ù‰íLŽö$œMÍYE*n<ªš°PÆ1•qT¤$ªÌÌe † …aHQ9˜`@QÑÏôÉËE½òòª¬[$ÓwÅtFé:bîËtí¢¬RQÛîÚc‡;Øœ.:ŸÞÕ÷Þo-ïÿÎ:;;;??¿´´´ººº¾¾¾¹¹éóùü~¿ AV(Š$”êÕB!„B¡¦v’HC¡ƒÝ÷~pâǧÿ¤0 g׸`œ{ããÔüD“#™= gc¬"7NU‹,”qŒ%”D•9f„2Ã"…aHQ9˜l@QÑÓ'/õ2=Qe݉dú®dLüIü0ý¼N&·T¾ÿ{Û9^¼x±¸¸¸²²²¾¾îv»½^¯ßïAV( +‡Ã‘X©ÞÛ!„B!„:èij'‰4„:$½!½p2çŠÒhήqÁþ8÷…SóÛ™ÉìÛq65gÝ¢âÆ£ª K”qŒ)‰*sÌH”) CTåàK¨Šþ}"yùØ+vŒ~È&†èU#|ä8óçâââÊÊÊÚÚšÛíöz½>Ÿ/‚ C¡P˜‰•ê½B!„B¡ƒž¦v’HC¡ÃÖÒ 'Ï_VÍÙ5.Ø7ç~ñqj~b;“ã%öí8cÝ¢âÆ£ªE–8ã˜Ê8ºE)ª2ÇŒÄDɆ¡¨ÊÁ°W±Ãâ³’]tæc×™ÿ¾²²²¶¶¶±±áeùý~ +…±"¬T/m„B!„B‚4µ“DBÚÞTëÓsëTÕ–ì¼&ç~ñqj~b&ÇKì;àlŒ5‘Š«Y’ǘÑDÊ-UæýŠ>Æ&Ÿýäg?ùçêêêææ¦Çãñ±€ Á`0 +…cEX©^Ú!„B!„:ij'‰4„:ü½©Ö§çÖ©ª-Ù5.x}Î×À'Qó;39^bßgc¬Û¨¸ñíª·X^_tˆ8üìÿEllllnnz½^ŸÏç÷û@N(‰¤zc#„B!„Bèp¤©$ÒBè»Ò‘£ÇŽŸ2JòëÕ&{v ¾-çëᓨù‰]™;±ï³%°îFÅï襓6qì¹OÿMlnnz<ŸÏçg ‚b…JõºF!„B!„СIS;I¤!„Ðw®#G?e”ä׫Möìüoœß¿šŸx“cwöÿ7:öܧÿ!<ÿe¯^ã8ï0Ž Al$űÒjñVlÖ–YטËÎ!Qd³Å­±ë¶³:åÒ’ÁëäK*˜\Jða=tp-”föÏŸ$íû{ßwúòCq‹“®4éûá{~®ÏÞÞþþþx<Ïc½üµ¢(ê¾kÐQ’¹8¾NMÍ,\ßìl|ÙŒhB¥ß½ø …ñWoÕoÿ5±üàÇŸ~íÚÛÛÇJ)íc¬—{…W÷]€Æˆ’ÌÀ 05snáúfgãËÞ`D“.@ñ› ã¯"·üñ§_»ö÷÷•R"¢=cŒõòél|qùÑn§tø•'¨”­µñ¬µ¹WTÔ}× 1¢$s€ZÍ,\=m³½º½ü`'ŒS:œÊTJ‰ˆÖÚxÖÚÜ+*ê¾kÐQ’¹À‘15ýîÜ¥»­;Ϻýa§tp•'¨”­µñ¬µ¹WTÔ}× 1¢$s€£êLûöâÍ'íÕínÆ)M°ò•R"¢µ6žµ6÷ŠŠºï4F”d®Ð3 Wç¯Üo­l}pïÅò×aœÒw®Óší¬¿¶ÙZÙZZÞí—¾ ãôxTž RJD´ÖÆëå^QQ÷]€Æˆ’ÌðmLÏwg;kç¯m¶V¶–ÖŸwûÃå‡/Ã8mVå *¥DDkmŒ±^îuß5hŒ(É\“0=ßí¬¹æ¯Üo­l¹o=íö‡eWÿ=ŒÓ£Sy‚âi­1Ö˽¢¢î»%™+àMÏwg;k®¹‹­•­Å[O]Ü{Ñí]—í†qz•'("Ú3ÆX/÷ŠŠºï4F”d®€£çô™ÖlgÍ5wq£µ²õM‹·žº–ÖŸwûÃÿ(ŒÓ·¯> +stream +H‰¼WÙnÉ}çWÔ# 0[]Ko@@À–ã A0H<Ì“50$YÛDJã‰òõ¹[mÝMÊš V³»–»œ{î¹ï6‹ZÕ•u üï½Sû›ÅÉŸ~¬ÕÍãâdc>×ʨÍõbUWµsjs©äáWÕVì]Õ(c\åú¦W¶©š¦…=Ûŧ¥Ñ5|[ZýÓæ/‹?nÿ‚»ðÜ7௿ž|ØÖêýnñ÷Å;2EáÿD Û°j¹ÝÓíÆðR“®îìPÕÖ |÷N[Wµü¦UË+mÑ’½^[ujù¦‚÷ÚÖøâYÝé•ujù ð[_µjy«Ø©N5,õjùÞ{Üó7mé÷ÚÔ,9³Öê¾ÅWê«6MÕÃUWn?‡=?l/4˜×á…ð£E¾VË7êW1யÑà;mZ¼ý¶6hô­ÂSj¼ùš?ô¼Wµì=lÕ¹'«_kKf>)°ÙéÖ£%¹¿xä•Úi:éþÀ÷G½"R ­Å¸Z +àyØý !´í¦exŠépß5ع«¿Âÿ8‰=šÜ•.c@Ïu‡·¦nñXö á‰Pä|¾GD}Y,Wzóób=~ZÉ78Ò|ÂØ+Éhµ§pY2£‘7z5àš[qð  g@Hˆô£äÿ‰RsС…+CÞâ¡S¼˜öf‡Z<ô“ötí]@ä£nÜòÝgñ‚‰Ï1-[Ká¤ËÓbäw š×ëø½WS \“g ;ä‹œÝ'¤k‡Kvºc4¸oŽÚâ’!ò€wšÞ?d ‰n”9… lˆÎAáHî´¥t$óÕL B,Ž@g1ˆjê¬+@¯åÝÅÊ^9¼Ñ’Åo±PÀZFY•ÓQŒáæ’–teàŃ°¼´׃¬É°,H5À17ª¸PH"â’ÂûE]B€}gÂ" Çe±vEnÊ90^KYbE+~†b³-ã€O»Ôc™ùGZyˆ0Ø!DiOäüæánŸ*ÅY¯jCÌ`«ºµE–@fé2 3|F•ÂËgjÏ™wŠsl ëÔ6ìuÏ|7È©™ÉÍlLKðp÷”™.µšŸçõ\MI/Ò‰-C:å;æ\ñŒˆ%„–J¡¸¢Úq‹˜ËY3WÔ3¢Ü¡þ¨-Ñú4{ÿ–\~ƒÎd½+7ô‘ì5ß—½s ßp¯VÇᶜª ^`(oWê=.Ÿç)B^Î=íîiQ¼ü™NÑ…W=î½dÿ"¦žåg¼øÙ«-šã`„+rË–HÿY-¡_å"p¥Æo^î è¨VAÇ>ŸÏôHÇô¹Ž • a Q™ã"Rc`.Þ&ñÃ(-žëÐöù™©…ðÂ:&%Ñ3£Fhx‘郊£¦4{ö‘Nõ:héAø­Äüu(6Ôñ±V^WQ.ëè^ƒ¥±"íD29µlYDê8‰J¡aa»‘×á†ÇÛ/°¿ô)€ç‰op’ ‰ÆØB]bX˜¬là ;%' ˆ„[µ#~¼gãÔvG»àÓ—+4Œ¾´hgtɥ«½ïStÒ—~¬ rŽffϽ'/³6ì´þú>1"( +ÚÑa“´®æ;Æ&5Nr’;„ƒG-íyJ³HèÂI†Ðôr߇qiŽõ˜X3Š™¾¤è^£žˆ¼ é}1#ÌüÃx×AÙ’t)4Ÿ¾ËuéÉ©ý £®Ú\ÏIÔ?Ôµ÷kN">¨ëÚ­W½ƒûñw·¦nƒýzÀ¿Í°vV^xÞ³¦`á7»Æ®‡Onmolê5Uo ÑîƬ­\Út奸3ŒÍÚÅ£;>Ú¿]3ówÂIpyŠ¯äHM¯g“ÚâFS»ø›-z»†ít”·¦$ð ”2Y|‡ ˆ%YX¬˜ÜŒüêÖ >vàÕ£5íz%¾£µÄÞ¶‘n0ãˆÐæn‚OÁèáÿQ—2êFåƒO׈vZ4Š´_s–ú5õÙ2KkS‹¯]J(FègëBXÊs󌚈“¢%qǺ9Ùl¤>P&Î(¼-ŽÅQ?Û©j¿iˆ*PÙk†Ôáw©É¢­Ñ¿ðç[–­ú¨)îw3cLͽÝH5qðéãõx賓ÿ–f»;™*îÙ˜/zBDždcŠ_ +†7êºãh¼”Ð_íH¡ÿÊjxí&â«ÍÅW‹["#YÂJÐ3£íÀa”¹`|þGÚbè};’t\yÞ‹Lg –7 —žd_“®ÇcO5uw÷4`«Ë¸×±.¤Áè!?›Hí?HbY­QxçjZMGH›åü» 2è0?ÝgÎ’/Ïj'ÁÜ}pgºÕŽ2óÌÉT@†aõ[Ú懾4a] \æ#ž\›céyÔ$Áo±0 M"ÞW쮫heŠ©õŸW;QùÏé먾“/jfúKIJ˜uÔ5²®‰wØß(˜À£56ÉÈÙ@"Éåª?ÛL%ü #‡T—CŠñƒ<:U)ß3$kbÝ`ž¬$ܘºg-0éHÌ_i4@^jHžAxí Ziž±öñsp”![6ä†(t&ךâcÈÓLhÌIžNee*²7§ªWo+ð‚'X¸ñÌZ«û–óv.Tu‰Ýz”êBΈ#äDD—‹ˆ&„KÁLÝú)fÆœª)1É!ÇrÇV[âÀ_h> ¸)%¡f ö©ÔŽï&ÇOØXÞ3»ßBÅ,‡&-BÎÍdæ|·‘…©×ðïó×°_3e¿Ãð‘ ž¸BwH…˜[™%Í÷1M#úÞK„D.å…ŠÂ#Pk!õ%ï1g •Õû`c¦ R䯘&þ~q‘ìÔͨàÁ¬ãGyunسAóaÑç©#FzjhÉAÆ æL/ƒ.žô¹Q†'ýûÖL6øþ&o{#O’„æ0„›m1Ì»–#M€ÐP…½ T“chä[Z[üE°ë Ø¡Üh±àߢ&þ'‹ê Ȫ‰ðá3ïãNNofÚÛgÄÂ÷tÌ#ún ¥’,Ì+¥ÒA(á’, +2°^é;ê +v™& ÊËÊ”FÀØÌLOHÝÔ3Ëeä²¼¦ Î4åŒÈe¯•¬ämP˜#ÆãCÎxiæÂny§kf„“q,Q¢·{ÄLè…Y|ù÷ sn”›k±±…L›ŒHÁ9NÚÇJó±ïüFkº¼µµ-{AÕÁK9'ô@yDiÓŽ¥M;'mÍ,l_´0ŠÐ™~e"y1ä‚%jœ—LÁa4×\me0Z”ßdHR%›¼l.èg89Ã+·Ü½Àà¥Hî4QùWÀQÎÕB¹¨scÕÕv[^ಈ' ‡£$'-3eIs?ˆf•læsÈÏ!“ò +²Ц±®“l˜™5ÆÔ÷›å²ú˜þE£Ê)ÊvBÀ£!ÐäÍ"±®ËºŠ9‹MxÔ·(¨Óþú(¬µ¦="Ö¢Õ‚@-Àl™{DÌ/‹t3„{G%\d;Îy’ÝBÉÇâTð×=7TŽ}bjŸWZÏX7DRE/šn˜ÄSÅ°„¾¿êqã=j‰žpJÍšj‘û99S(–QMˆÿ±µgÔ.ŪvÔ;î%àMpÑfÌuìÙ 19<…ÙÄ0»ßfu¶Ôž°9™ª4ćøznÌ4´½RVƒ™N{j.oæ&ÓÓñ§2åLkOLRqŠO6ÿ%¾Lv#9®(º÷WIJ‰ŠÈy)·à ‚À¥£Èæ ‰dµ8€n½ãñbÈ*vK€¥…¨ª¬ÌŒ7Ü{®ÿwp±¹7D”Á]\9þãÍyx—]ü×ÇkàL˸¸~Ž0B,yˆ12¼ã0Ç?BüÃ}pÿdÞ|Œ ™I$ý‰V÷qO ø›~ˆŸàîé÷wt6Ky†“°5ŒW¿±B°yêF¤‹ý#ýì^®ã}ã&ºÃ%ì8ªøW L¸sý"§øBõ¹ØQyv\™€Âê=ÕÅ›ºLñ~ý´R]àüxC£ ÇÑT<ÚÁü.û¯x:ˆðýUÔôšÒ±Öì.4ú>@ú-T’?êñUß ïâèÿ1#6»KÚÛCô¢ÁÒWr§{1_E@ä}ÇÌp{ŽPsȨyUAIQ4t,C9>7Þ3OWÂe¶)“ùJ(b©ø””„eOU´¦?À.E$zñpü€ù팿³2k|~gW®•¼ÁˆW|É2¸ù“‚ Îù+¿ä-Áyí>ëÛp4’¨g±¤îð‹4Ù85Éie~9«¹7~á;xº—,"þ(ŸòËwh^æî þÔpà-,·$Òpž¬œô·®ýÜÜÑÜÜRmœNÉäø$L›“`Ÿ&Pd3Ä\‚èP£ƒ=t%#4Ï8–ÁhÀúœlÍÞÒ>ù\y¤Ýg—;hsZªÚ€¾iWú ätΉS|ÓeŸ^³<ž» T¨ôÊÿHv¼ª•“FïÝGŽ*:N„\âõÆÇÃQµ–ãsêÚù¹f©dʾPƒV>åÀ˜±vãD¦íÈŤ/ʶè§QÃVpÁ]øÀ_|dOñU/áZmòíªlˆnøS7P(Í•dÎa›…6ˆÏV=»V!øÉ î=à1–j!*é +¨»03®mýê]‚—Z»æ­åKòâG¨ŽïQCúU­‰©ß"yšìúaËÏ´´˜ÜSÛ00>ÎZbPÜÌ™¼–]™5ñ¤Y„µÃcûžéO¦£ÐeNÊ4rjMª}²Mr‡Kx±Ëœø.˜:²há”ef€Jâ.M{HNR=F8àotÎn° n;ËÉ"x£äÐ8†C÷Ü”¨Ä õd ‹Ü½çH5³Õò&âq]ßED.=-J®@„DÌNÚºõqÝîã|¼o²%F¾=ÍqÞÔÅß^2µæ¦VÂÌ[ Γ¯Oç!ì&ìF,žï]¿Ä6NWü¥·pž˜‡ª•ýÚÇÏ{_´ÒA¨Z8S¬d@m‰"â'F«~à©õ33 +ØÐ=M~¡¨åÙû +¸•{n.u 5è{©/¯C¯Œõ„±ø‡\+·ËCÓØÃÉ—9;ᵉ„†–Åg:W‡êõ‹§yh¥4yE8#%fâ€öåeMx-ž`h#K-³áŸs" ´ ³b¼Àˆ17 07"—~_|ý¬÷Çg}>=ëY²Èãj<Ô„ÀUǃÇîÆÏ/¯Ý+†ÜÑÀŠØ±V <¥¿ŸÊM[°œUm91oö3}cšsì|X‘29’H7‚õ(r°±mÏ_^Ñò\u,›$3<Žf–¥vW’$3K/ö÷N°Åp¸»f¼þ£cà‡+ Ò᤬v˜e”ØŽ¡¢A^¹bÀY?K:—cÓaô„qz,E¦ˆÙR„Œ]Ý£<Ô“ÒgáPSuy‰We"ÌLV@§/~ŽM穼3ÖYÂ|œÆ@ …»ŸãÛv{ªxš³» QZ91v¢½'–§t†ØøÕÜòI$ü¿ŽzŸ/U#«”-ÄPjñÀíß“ŠiS6Ôé Ë8û¥‘NiQ!Z.~èÑ)® ²¹ŽÝóÚ>±HÈ T­…û¬fbUïÞà8³ýÍ`?áÓ¿3FDÁêÀ’ð‰ ñ;÷Ü®øpß:nkðldìÙnÉÛ40{N—ÄWàë¼­h-7W™€ù­ÙËf °‚fɱ¥DÙ@\]X¿dâ¦Ã 7=]ž,•{{Š‡ƒH)í[Ù–‚$H‹Å¡´šA ‘͈‚ªF‰æÝÖ­àe·‡°Õ¿GÈUÞ þYGˆ±}+Ý$,Œ6# ¡ð|ö ¾´]×jÿ)ûU¦&Ò•ÖÒ +©RÜ>ýiУ\ˆŸüò¡&ø£ïF,Ï/“-.Ÿl›9Á¡Ãò&~IEC7¾íF²OëcCZêðZVÚ\êC’¹}žä(o°(<ÉâC­MO<—VJYdñð(·5Ξp`³+÷5öHx=šIýnÞbQs;kUÍÙpÎbã”(ÉdÃ%•ÞR°Q¿¦üÞ}¥½kÙ¶š V¥Œ­ Ýñ’¥¦Ü_÷±ë9…QZó,aP/îa?òUÁoQæ6±n<Ççy\5Œ€ÊkG‘ë›v\c¦C5_A Ž³…:éz§Œêkø«¶/I(•j´]—|ËEÕ9ËvCÝ!ùQaö*êušiî_ÎH½R^;Œê÷ì#ž™ìñUßZ8HS7ªô|ä]ÿYÖé§. öÿÐM õ5 µP]Ö­÷•÷çÅC¥Ùú /ŒB»*çk¥üu"¼zÿõá5=ÔS28Éî+$b:U2™€ˆðÊscÈ©•ßÄTy Xa£©,K# +ËsÈÞª|6IÛmÒyþ©¶CÞÖO4ÿfÜi ´ÓÞݧÃøžWÐÙ0×1ý¨q³ˆ•ŽuÁŸ,²VR–­v |LK4Ë’þÉ¡­Ô É)+Ș+È,»óWo8¼ßÒ¶4§,Y4È@ßJJÒæöºI0×ÂÜDú¸=av³h_[Œµ)§©Iy¨ækâhPh£d—´ÀiÁ®Ôm‘7&K­6…61Þé ·]/M4é+EŽ†®«_w#åUäâªg{;ÇŠ]œ¥u ŒOµ.pAúé «4ó€Z¬Ö£ ‡.àÞ¾gÌÝnزŒØd_’ð2?o©luš> +stream +H‰ÄWÛnÉ}×Wô#©éž™žé¬a`½^/x³IÌ79XH¢$;–d…’­U¾>uéKõÌ¢$Ç“âôT×åÔ©S¯–{•ª¶náÿ¦©Õú|ïà—w•:¿Ù;Xšß+eÔòlo^-*8²˜ìCeƒøåN™jÑó+Võ-xæÕÙwž]hµ!znü£3s«fê5ü½¨Õìó%~iÔìTÏk;¥ï=Þ¥>Æ .Ñ%¸óZ×¥¥9ÄÙ‘ï#ËïjKönä ~a!ѱP.+OÅ œ©km¨”ëxU‡/Þj~­C/N}™1χé÷+CÈåJ­)7–7hò}†¬~@'êƒÅl¬óEOÎ ¹KŠÂ7¾_XÓú¢ò³¹^þ«ÀŒáþœÄŒ&a抂3è/ô­Û­ÇhÏBùSY ‰tòT[<¸ÆöiÔóƒ/v˜›¹!Ë7ê.Ö_\Æ ü V¡¶ã™›`îûéXê¸d¬£žã/S~×±› ö…ú«¶Ú=B\vÃ@].+V¥`±.’+µ¡nV£ô3„tYƶìFÀŽ¥ˆVèŽÇOŽýCŽ> §ñµœ1 /ðV¼õ¼Ñ«ü£Jî9 œ Èõn3äúzá=žDÈåL0l³húùòx(á:ŸÍDÁ%ÒKX…“ãP©ßOø†\ Ìj+ù<³^$#ª× ?[ä(Ǿñ=‡6Í*=»y¸Ù‰?Ã{¡çà% +£â¨ eN£€ïÃ!t¥=Óþœ¼¸Ðpظ‡S=ßÖMÅDÌa’„£““ÒÛQñ ãðƒñØ7¬ +pØz˜ƒ+‹h“–oïñã|nÊ6“¡¨ìklÏ0XëÓ¨·±‹°ÇêÈTLÃî«®±·Uš/qPˆˆÂò}™0¦¸F’êÄÉ´ååi¢:B‡ý.£ë:PÙE‚"úQÒõ¦LŽOCÑG"nðüYNBÐAÓd·2¬²&F‰à58lðÑœZ”‹Ôd©h©âˆƒÂù¦‘•FÜÿuêü¦ç}¨„äíH}bŽÄ¦Ê<åF<•yp;ï[©35·½„Wè†Ms»}vº»Á'G±(BrOìé£A¾0„ÓÓñhËxÁÑV£¾–€É£Íº°iX·jÉ:ìâ~8­ 1 ×{_¼z8›J¤l¿a©¢*ÓNt>3~œZIFðçH@dNë +éO|r£[ÄUy …­ÞÏtÛ‘g„Ô…®kìÛs]Ó®ÕR¡öÂ|gi=’\hf—u<”2\Ù–`¦:n)! ¢ý®ûí£ÅþÃ¥jhëñº/Øp^2âN2K"j$³l³EfÀÍÊ~óØ`¿÷ €%“)ØzH’º¡éø^ë†ÂY¨·‹Ç #¥¦ë¤òÂÎG¡Ç4æyvÐjKÁcX€¹)…Çx˜»bL»L‚dŒz¡UòN EÀC‹Ñ¨G3ûÔƒ 6iN‰%%$&c\A@혨&Ì–B+›DÒTDH¥íY¾%‚Mó8 p +níKÑ5Ŷ2‹®²“ˆ‚WX¬¶,™ÀÓYñ²«`¯ »ru–'ªT€×I'Ù8VÊA1±ç:Ô"·š°öÚa §ärÑÇÖ¶‚öùrFôM¹õL­ÙN0Ø6!”t,E#m‰ñHpvO¦£hJÆø¬ÉŸãÝR`kLUWoDe &º„JÙ)AB¹‚Kü`ñ‡…Zµ‰\æ— ¯“l§ï„†“¤DDü-Ñ3V*étÉx5¾|‰á›èŸ®]ÙPxøI‰ËB[|ÒŽ[¯¤Èήs—«ÝÛ?(ÖLÆ*µ±þö†÷t}±–fÆØ]#Ct‘(4›áÕ7¨"é=ƒ™håÜ4±¢Ò“¼/œNL†ÁËÄ!„\2ÌØ:‰{ݽÊ,<À¥ ¸l%.›pùˆµ%¡&‹¶æÑ¢M !. +)§Ôµv¹Na}(BN‹n…·ž1‡EvÜ6Å&…¨Œi'D +XMð]µY¶]…R²‚p×Ôùbû;Ž2ê–4“D\K;^²¢r›}N’ gM¥.‡Ë ÈÉY ÅÕg|gͪ1úX—œ’pž)1¶jØ.ág‹„áØŸmƒó[Pv,@-N[E’™ãq‘jå¹QÖOY„E¥`õ°8k +§Ì…¶”º}ÅR6Ë-<Ða²4iŠëhXÅÔÌ 9kÛÀ1l÷YYì†YlrÙÙüöÉ$"¬ð6ÑÛBf ¯ê¬F¢/*‘2é.ˆfïvÃ5[Mg»»B;¡,š ¼ÉV†[S<˜¸xÑRr–'~¡XäÚ±¨|OÔe"o™ +ô¥q­j#ÖÖWÙbrÃ5ª®Q,JX݆uBÂÌ¢‰4NYSÇä +5ÒÆíE˜_nÅ8ÆÏLùÙ5ð•Æêñ)p‘%s+L¿ÏèÏ)8•„RFŒC©_‘#}ÁŸêfE—µPUC—½‡šèÞq®¦Œ1 +\`±–J!wŽw +|«œ-xæq»K½ƒèž¢ï˘ã5Z¿ç ® ª—'» ‚¼QÂ+Rç<­¥]‹?`{!Ãeð$nrcñ£kR6s׳€Éxï¼G;Z%3²¢|dD`áµfÁŸ]øÇXhð´/¹#Á È>ÿ‹ +”X·ðÓÔj}¾wðË»Jßìüd‡6U˳=O땇§íj+P½£~}QUUýTÊÁ»ë£«/~<¹ýrt±<ýãöÅ›Ÿß¼©ª¾yùò¥zõú'…“ªk:T?+|žÀ‹?ÿ +O*&õ ï7tÿr®GÕc7Q‡påpö#Ãñ ©3@zƒåÔOeî&˜|P3a×qÅ ;I6×2âï!8?®CšLúR·äï* 5αàé é±D)ÃÈBmªIþgÙK_†’çÌ¿”•r÷14/q•Úh{(ƒ~ßiÙ»{®‘Jxpžç!eu©ë"o“c1¸ÂæwH¬åÒΕˆlT~KåÿJ×p”¤æ»ÄiB6û)™Ô$¥…©ç"ªXÀ#¨Ý°lqå  Å½DEÒEQ^Wý4œ¸ÜÐÊñÃÓI«é Mzç¾iõfiIWg¿iÃmSš”U#€Ü0Aí¸K²Çñ‡uÝÂ%¥)çl¬pTã4VoR(ý‚H£ +äÊì“žòX‡¿wêb¤§Ur“p¿Tט‡1ÛLO§,_-öç1Ç7* µžå–üÇv£S4.z™Ý©®Öñ~a)“q˜éëPÐt=]Cà(ø~bJ:goõ¼Yx±W¸"kêq+ÔXl`[RÐáOY?>ÅÞQæéhn“æ¨Ñ‰š´å|>+á°Þ}WÑfº~“h®ÎþÆ’(µaÀ|äUžO„ºÖ)?- I$±E±RúD‰ 5¨EWŠ©D%‘ˆÎ6ÊùTæ56r SS<­$ܧäyÄ•ÿC¹+LJBWï¿ÌW[oG~çWÔ##a»»ª¯ÁBÊXñ°Y ¼ODBcãØ„±Ac³ ùõ{®U§º«g†6yÁ3Lw]ÎùÎw÷J.•ì+©x7íÕ-SÞÁ‹ð:ve€=wváŽä+0tùJ½\’þü(àð ¬ð–T„é,†pý—’Ÿ=Áë‡/…’ Ä0ºVçž’œRð8iÉ%2†žµ›ª²JRÒ×IVÀyaSZñXìî9{¤évÉV×e÷˜¨›b’§ sx»ºô¹ów¡ ]¡Üÿ7ÎŽ€sáõaÞssš×¿Çûú,‘ZK…qΠ²¶ýŽ¸ŸÉu&2ȬYÉ|¤\HŠ–ÌD/K«Š]L|©iŒ?®Æã]éP}¥§û4M·…Ü©¸3†o¡ê«ÔE?‹5¢,0ã΃…CÓįz°wsy`Wc77&¢ñûw²UA/ºE«Þͬ:rý Q‘ ã—†EÂËUYwÚîx€X³Sffk1 R—ز£áîöûÜ Z׶¹9ä/o­¨‚k<¸Åâä(Cþ¿Ñ}h{TL›"Ì–Ø‹ô!ék6êÍäÖ}…fˆÞ–ó.pCvpChŒ%{Ë°Ýk"3cŽ—¦1cwÉ“QF¾$Rö%_Cu+¦Ö¸ÊÖ‰Ù>‚K{üбÅçé.ÙÊLÑD)0nðºÊmÌ\ŒÀ.#qfÔK²Ù³¯N(舔ó®„Êó$”.õ†ƒè÷d/…›9žÚà „ŸÍû²Ú +†3À`[ °¡Cç»Ђ24Qv’KHlâg“Tùczº[ÆBFÑX´~»9cЄnI± +wÐOkDÏ0,^I”)?Ó´BK|Û—*$’ò4´‚j©À\¾´]yî³Á(à2æ¶Â@n ªª‰Í— +^â<›©‡Uˆ÷ÖšUò µÕðòÙ™ QÌØ›ïMá˜trV¿©Ù:QñdØù¡YÀìÝÐWalœoñCçË-îÙâjG°C‡„ÈñÊäHêQwºÇYlÙzJ©ø‡·ë• cÁÝÈëÛ·øpÀëP{î/eô#ÞôÝíªÓß[® =fVÆǶ,/ä†éÑ¢Ïý(Îýƒ ÑfU~/ð;ò¬yŸçÓò‹¤¯Ø~aÜÊ0tŒÞäË‚X>³”´ç,KR `5&ƙؖ\·åL³›8ŽÿÈ þ讀:v·uÏçiX·Û(êjÙF¸µ»Å!”sÓ +7çãÉ–¤Á£ËÉ*ê=™ß–7n«ðFe³@Ò§Âçf&5jêØÕËäö6Cíe±•¢³Å#w'L—|‹ø}S5³~œ³Á¯õ®MÕû°V^;kxYä r®Dž’cìrÇ—áE¶•p_b§l +…Ç"‰g2gbT37V¥>M´•òu%‹^Ï|„uÌûrɨ¹¤ß—KþP±º²‡ptÄJ=̱2r¾—a{5Iæ²3ׯ/™”Øð™yH£}uL£óœÇ+D†ß1 õ&ÕYs¦áeÀBô—fï¥coì™:Ÿ¤²Bj™l5?–˜“¿¿À‡ÂÁÔa¿’NË ÿFÜ%[ÐIõZ£î +Û%ºìóæ-xŠDåZI–‰´•—D,çÆÛœWiZ]Õt½ +­Ç9Ì"øü’ ãˆn‰—üƒ ‚mð^2.·VØý`먰¶}a¦NŸhË&Rp)z„´µbb¨WDT#B~ýiÅ@9ž:4Pô^\sÓª? œvlëIÙœ!ï¨ô‘¬(ˆ +bßÈ°Fõȵ3ª{$üP3bù†wÎÎJ¿S:XØ!Ž/ÏOi³ ‰ÂR®š•§AZŸ£ +ä@›a2 ³W [»XÙ} »E§pÁÑzS-VǽSXÞ ' ¢C”xÑÑe5zÚ°¯¨ÝƒZË«Mù ó—ümÜHZ‚Ʀßil†oklúÝÆF¬²Z›«@BôÌìÅ&Úg+õéñÏ{Ì[;:ðüï’Öâô´š£A}ÁmO%¿ÐÞEØŒ]D×ToX¥Lûí³t½÷¤èÝL6H»<£OÇO†,Á‹Òk¬lÚ0wÖSuÍoVêg+Ö`Ôøé™: éb¹ú)±§ü2;}êÚ¯:ãsÈ.µßoªMÆû£dœ lî­Áè—Æ]MÜò\$÷—•O-2Ñ/ƒvý/™Î +¿}'é«„ÈØ9`YÂ'|”¨~fhºtIi|¹Õ­ $Â}YîÌ&Ãnz!c:X²Ï$öpåÎ6jRË +U_ щGû¯Ë£ÁúÜ?£Q*Å«#A8Äü)§.ÂúH8ÞV›8RαÕ_>!-eìç']+ÇÜJÞ:¤vB‰žOw ô$ØšüéôT™@\X63u»ÃÌTÁØÄCº8×H9iL@ãÆŠÑ +.x¡šñØ™&–wäÚ +#æ0 +¥ÏHþÒ!ƒ#Ôz¶L§ ¿S³(T@BÙPó~fc`ŠF)åÙ^;Îo +k 6AÆqI›K­PÔßS µŒµMžÎ°™8¤·È[/Us²J‡Ê¹«éö;š=2n !sÓ0u#f‹üÉ5òAï㿉 øfÖ3§ÌxÚÚw!­ Z'¦e£ˆ©t7µm7VK“URiæ|”¨-P}\j„ VÖ¢ÕvÌ&®¦)ݤ”…c9\MÅr6y”Lñy¤ÏfêŒóêçUº[ÁòŸ™QÙb{nR„Y"EļÃ庺K¾ÎoÔ:n¨(H`øEˆÈç|­ÀnÀu>ÿ¡¾Óï>;{ð?Åœx +endstream +endobj +106 0 obj +<< +/Filter /FlateDecode +/Length 5860 +>> +stream +H‰¼W]o¹}÷¯à£Dã!9œ àÄÉ&ES¤k}Ø Ç–åt-ɵìõº¿¾÷‹rfd;éî"@¤±†äå½çž{ÎëÅA©ÊÂ:ÿW•S7«ƒÃNJµÚ.ÌÏ¥2jqq0/‹^Yœ)ùr¯ê¢5ð¯)¼2Æ®õ­²¾ð¾†5냙©ôâßoÿ3p).ƒñ鯇ïÖ¥:Þüýàõâàð 'õov´{§Œ- Sz£ÛeY[ÜüeY–îlxr}ºyùòðèìöîôj±üíöå»·ïÞ•e[½zõJ½>~£0ú¦jp×s\¿`\á—’Î0ê¼´áK/B$EÙZ ÄØ‚oJ_Œ«‹²vY4?Íþ¡ç¶hÕìoêXÏš}Õ¦¨Õl§qÉìTwøñEW…Áßæ¦JÍ®à ½‹7T³[XYtjö >À5¾±Ñ¦Å?é¹iq¥Ç;ØÝãî?ମhÔl« a£Nà8Þ"†×o´µø‡Sm*|¾Õ†ž—šYéy‹Ÿºéð³Pú_‹¿`&LÌ„w” Ãy0ÊY(xmYXÀ‰ ÞûRÃ1KYi +‡Y¹Äo-†0¯ñs§0 ݾ”œHKMqÃjJ”ÀN5d£Á* zNËÎÕ©‚`Ø5>ï´)ùrøÒZ_X5›ãR8ï"3rüŽ)sâ·¸€_K|¾ÐðV…©„LY̦æœ@&JB?Þ³´ |¶3¬ŸðnP­šªVã'„¨á=ª_…8ã„oñjïÁ©×l­Ò %àþ qø÷w[©kí°ò[DŽ' Á A¡æƒæt?x¦ . ”;u«)œ­ú²”Ò`H> ‰0ºTk„^›¤b©bK‡´¸ Òááwxh+•¨èp:íWí,î¸Ågøý§ë-¹;n¤Ì;©ìVSÉ6áR;ÅÕ³‘†¡M™ºTçrê×ðηs˜MÂÅŒÖñï”å$Y#¼eÙÒ\zi¢@Ç–VzÕ:7JS1>jË¥4Œ ªÔY8ýRY¬\jGíktE%ètK¯¾}bxò|Š]ì»Ì[M]{­©i½ÁKú4 û‘?–®ÌsG× 3ׄÌÕyæj!,IBŠ û(6:Æ×Z:Á +¤%¹‘†PUv…p,ˆLIX}SÕ·OÛNš{³‡`ºÄÆŠ ÂÝcƒ5˜¿ÈQ±ÁB=…LÙŒÁÑ'JC„´þÁÏtO  ì…êoAUŒZÃd1ØI‹Àƒ’t$Ub¾ìÔa]b½jÚ ºÆ¸ÛŒ›à˜,ì.üne:îÕ€¥°ò¸B Ãö¾R‘Ìd5O®0^0ðÚD¸¨ã‚N3@ÉðÅMçCÓ1Çź“åwjòÐ}¨MV€Ðb´ÁrÀŽuÆŽ7EÄrp`~NÈmúi.Íø ñA3ÁS“âØ€™­UاO{Õ8ÒŠµoÿL­HÃ᱘†C2©c€0È—"ø4UÔæÚ!'Òèºø ~8Š°yPéÀ‘¹õ£+çLa®Â™q’†Ì¸÷«0†ƒR½3orÙk:‹Sð\©eób&{›LÉ})îE¤<*÷U+£èÁ +¯ %ò[.-èvt÷ß4Ñ+7ã 2¶e΄Lw™úìMÕs´*vd¯lÖ³2 ƒ5,§Ò b:À†æ°JÄ@E7Ø.w/8Ž±0~åÇ"íÏx F¦”šL«Õ YjÚj3ÔM‹,aSµeâ(ãQHö­ïí¤R̼ד&Î?2^Ý{Úß1IüS×µ¼]q?1Ž®¸?eí¤þ–ÒÜŒzÂ&^K2É{ú.Ùd É‚‘·›¶‘îy±ëÊÃﵫeõÂ|Ê.µO0FGwsbV÷˜Œ©d#¨È†Ðë¿oDEï‰GIBÏÐýÏ*£vÔEsÑjS.`_1YœQ<¿jGŠ ŸWصmvî}™4j'åLæ+ k.AI‡¿¯pÔÐÖßË jn1&IYÇÝh˜0(_+a;^ ¶–ÃÕ?B8D[ïá}’ ŸØ<œ`äZÅÙà¢F¬sZ ‹©:eƒäcéåÜà‡Rú¼žê­WÞZ"j‹±CqâOð®*‘i¢;¾\tzQ4Qÿ‹ Ó²êŠj!Œ|K”w €µ|Jisþ>|’# <ÑÈ·O$O0ì™h·4ä8ÅÂ\p©¶›Ù4 u ý¹¬€ð ©$ÊJ¡ÆJ›Â“§Þ{¡x4gZ€9ãjd¶r·„µÃ“L”F.yCaªdÞÒf.NFµ)[Þù*†4·Òü™„ -õsRrÓfz øƒµæ]®¿ôÉ€ ÙÎy 'ÌH]"?*É‚x¦®+l?‘c½è´ wi±•®“6H["¼s•› ´6ó´ufªÓ–“ÔG +ë’7É•’ö7 È9sÑU/¹dç)jp0\Ë(B÷ó€˜ô©…ÁÚAÝö™ŒÇ´×$$Îà=æÅǼDÀÍ*Tа]@À×@‘‘C†6&B4Ò‚t~B ç÷±B¯_CáFJ¹ç·Šè\Mîü&°5Q¿ “лn9 *[£B¥aö‘f£ãdç$6qÚ#ͳoÔ”¡òâLäŠ;ußÓGŒ'àíÿr u¦ÊÇ ä‘˜†&ºQéšÈ­3ÄD€•»*Ò +×á Àër»·–r”§–êD°=‹"\:XP!Hh¢ Šsê®÷’ëOÒe'¸žOTÛ1íHÙ—ÈÆ*fKÅ)2—gÅî™.>K´„TÇ#RN•Ð­œs#1äY/•-£®œLj*xëXZüÇ,’áµ`yy^çcÖeëv’­3rI{ǹº~œ«½J†Ý7sõ#,í§YÚMrtÆ•¼‡'ýZ\C"ò&:©fïñ8Ï·¨?nô°†¡.vé«H¥òÜžÁIlSù4™ºÌH+òq2æ‚„7›&ɉS);eOšvTsÑþ±ò5ƒ61hYn9ð}ä +“ ' iY¤&rYÒÆA]O1T‘tý§Ç÷¡8ž©zÔ”CK0Á7U2¨‘= _Z9ƒg¾sÄånLŽ¡"¥7âadÊfÏÌQþ'µ¡+,Ռȩ1ÿ…Ñs¢¼v] ˆµn©ÂSïñ´ïQ˜ÔLãc+Íg _p€Q¹æg£ PìëþÇ{•ìÆq$Ñ»¾¢Ž.`šªÌ¬x,ɧç4 .-’à"ª›”¬ùú‰ˆ‘KU±Eû`0[ÝU¹D¼x eܳJ?Pøkè$ ýç|åèaìƪmˆ½;úp|KÍí¾¥6Ꭰ+Y}Wý,·ì䔢㗂Z€“¸¢£ +v¸b/¼'Íðuj«šwÀïËl„Ê*>ªXÜÂA]Ý]à§s%Ы½¾rrÊK2hnêFþ> '}µµwˆ|0~² Æùã]<µü½ÄžÅaYnäX;îj‰«}íŒ11ñ]ñýžI +×Áð0ÈE!´¡Ú]¼xùÓû¦ºØ¿xù£ÿ½A›éwg’ÖLÔ2¦œÄÂŽÆÐöÜ™WMÓ„×Ä×/ßߟܽzõò‡³‡Ç“›ãí¯Þ½}÷®iÆöõë×Õ?ßüXqë‡VYþ•üB/¾ýýÒ ýÕ5ÅÉQŽ›/€áOÃZÄÐú£¦ÅÁþËŽHZùh6“«Ü+VhAFz‹Ùn~P¼7@Øéô±d+ŒÎu}#+`ŒáÊ>×üôFþæ£‘Í½Ì +5áV~Äò0°ìõé‹ê'“ŠÆz¤“£½¨ÍȸÇ»¬=\^¬s¨5§éØ ³b,|¤ç ¦…È~¨EÔšêõ®U’èÄãù“jI[ïùÓ$ÒÉ™VLRdj³ÐÂ¥~R_‚˜#ÅFù'X³HçfÄÕ¸»€ÙX±hâH-"4“ø ªtèûB:Èæš,}ÎÅðE1|µ:Ëß¼u¡,Ê¡ÁrêêÎt¯Š KšpºUò¾L±OKãÄŸ³ˆÓ£´OKghyÑ#¢üPxœt|¬–hº°oN‹ž¥¯"Øä"×?èn%¸dõŠ•©½`ý 7a(Ü `-"w–©”ÍŽ¨†Î +ÊØB•c íÒ¬:ë™ÝßxðÀG÷G2ŠyG„="™Mt_&!ò{ˆzNpÒÂ;}ÑñÑ q+«#â%kG'w ìØf¦[[¹€F\Ržý,%†÷À‘&+ÛÌÔð•‡ìÊp4É‹) V +¹Õù©^]Ù¨oqŸ¡±A†T 61Ï;ÚŒëZ¡‘z¶×s?'°B(_) ØÈ—9QïsÇ=!ÿå¨ó®(‚ò_v£uÚY&ÃÃ!–QAý¯å›9/™ÄýϬç @pyf<Ët32 óÉ0_ÞÏJ#PÝ%ã™sƒˆÕ­ÎÆJnˆÙ£`šø»ž*Á>ïïõ”çÿžæß5ä—xÒ×cEŸšÙkn¥LkR ¼›Ih0ËYº!ÓÞI»ïâÙæRçVuªžNI뜔ó{Iò¨¯{‘Úä’á­C×ã¤AW®`Yò2n¡ŠÁ0jy«•çÝÅã½*í~ˆ¤×Ö˜§” §›õ¬%WÔüNõl§ºô§4L³?ú®4;Ž¸R³=ò†—Ñ;·ÁܤWÕ;.´ØzýÛaÝT_˜åÅ„ ðû2ü×Ä_~öð=›)ð +æQ9L¼Å!á9¸ìù_œø¥>>vM?x}Ù¹ÿ‘ Œdítöö”䎌çF&§¦g˜ yÎI˜¡îypãßEÍã×ñ¿¦¹)æN´Sé‡Û–^m†vÖ†…¾Xø ÓÑÍý(yt•ÌåHU´üä¦ï65AÉ’ ™ÐеãPpٷɽ¯Vy2H“ÄFÌ;µê+¢52†2š MVKï…{ÈóA&óíø<}¢PœG}†º}硦èI§gÞ\?yi:Y3µƒhyéÌ!™šŽüè cTÈDÛ\«½X­Y7QËÔ&WUåÀ°÷œ¦ë'åìÖ:–WAeÜI.h +§¼O™ø{Stüžû !é3Õ‚ÌÁ‘²Ï£µ$ÑëÚCæßeIîÆðmFw=F¶§©%õãë‰ÄÂØzŒlÏsx¡_¸¡b¾c¸j(ÌOIÊ3oÒÊm:©çÖz»ã·Ú`ñtb H#¬j÷þúÆ>\ñ|v¸¾ÔåkÝÒ?7ܺ©Üz@UÎn’3o>ÖóÒ ²¬DÙAÔŸþ¶¼à¯Ôl´#ò§Z<«(ŠµÃÀ5ÙwZø™„9°%éÞh„Y®é+ßÕ¯Õ£VéÀ<›çþÀ<³õðR%sð‹‘õùÈjKRÃŽØ,ªŠý†k:pN·4“x%Ý!šÍDRs›IçÈ™g*ŒƒZÔ¨£Ú‘¦6¯8žHxž.ª›è±¨kéd ¿Â¿HO<ˆ‚‘û'|{,— â©Vg#ò”˜ù2¿Ô»y©ÎêÆC­¼9L,Ï»þÁŸ2±B1š®]2ßA‡y'[Z_aÞÙO´eΑé*™±?:Øé6†Ú–¿3AíìšÚu³U¼Yl[¢víTשg^!R®Y~’o€ËÄ/spµípõä¶#¸2¸\ô OÉîóZû ýTV.›êKµ}¥|ªK[¥ÅÛmW£PÈrJžx=þ·j—•ÂjçfGåÈjk°ÍkyFlZ°™Sp9G +vŸçz µ%!x¤¢‚ðzˆÂ³ÕÙw‡'cÊá!ÛïmhýÚÐ>ךÍ0¥[lëŽqƒS‹ùdþÙ’@Å-¦$,O”lÝœfèr»—SF}VÓiÙâ¡h±•cì–åø™§»üÂià™À{)ð?ªÅmå2]nÈÕ=Æ/nO-ICíêÎt7»´zÛbOÑ´€ –{´ÈÍ®_Þk…É¢ºîL€¬õNôûêðgÆÅ,EXµÏ$¤XpQ¼.êŠ÷¥ÿŸ6Æ€9 Zu&©Î†^Æ©¨Ñ3âγìQÒUHü­Ýñ¶öRÙGq›=Ìn3Ï +â°\3âöeãn\’Í•‰¬®!P[LÄ×…È &_b..(€?ÉyÝg¼#ÁßNgÏ¥¬ô€å'|ŸUdz†„OýB…š&,ž‰gô…ÉÍó³=ÁxO„À¿¢Z‡¡»Ã!ƒnb5uj}•sG„«RÇÿxÿ§Ûa»ªÑï #sÏqJªh·ËN6ð~ù O´B€¦[N,-Ž…»l$”¦}íV^Žþ5MöŠ âiá¼ø—š½Nt’!µdwäCGÿoÛPí.8à5ð^»ß=E¾ãŠÑ@û ä(ÝQzɲ®,åM:[-Ÿ•Ó$rGÇ':­' +#fÂM¨=FõA¨)ðÕ„F6µ®ðøÖ>ãNéíG µ{þ+Å—ªæŸ[d<©›þ¡„ÇÙVf[6“@àòmxR%å‰Ùâ”ç´Œ2Olã•~µeMÅm„œ¶ü—Å„rØC=B—ä‰ \$VŸu`Œ9‡“Y)ÂmÓíˆÎ—rÐ6`\‚à€Dæ”çílãJޮͮtÆ“!èšTß-í-¹çÁEn±LîÂÆzÓ€¬­(òÃ릯¡(·l ¼(”î·ûŪÇïQÍt®&‹ÂÕ;õûÃZ5ç³–Ôƒå1½–Ó§°}Ð^J C¹pÊà^oPž(5Èó«çÚd…þ6”ØÚóÖC e3ÔˬЛ¿5¡çS#)iÑôÙOü¬AÀ0#gˆÉ™nÁ³öÏÔsÚyH¦®¨hÙö)¿`$Ic„¾ÍÚõ¥Vn£®×f¼ê!eLë”Ñ®QF “Ôa‡¼Sáo_ü_€ðüÀÈ +endstream +endobj +107 0 obj +<< +/Filter /FlateDecode +/Length 2975 +>> +stream +H‰¼WioIýÞ¿"?vJT¹2³Î„ØÌ2šÝÙ±›]­¼+ä£i nÚ6†¿qåQGÛc%w]™ñâÅ‹g‹Y¡ŠÜº +þ—¥S›Õlç—ƒB­®f; óºPF-Þ̲"/\©'J.nU7°þš¼ReWæÖVµ²U^U5¬YÏæ¦Ò‹w³½Åì#ØÀ¥¸ vÆ»ßv^¬ µ{9ûcöŒ\Phé=Ú6l{!¦ ±j\nŠ¼iùk£Ú +œéJUZ›·maÑêáüHg¦Ík5¿Ð¦ÆßSµÔY•;|’™*oÔüJ7y§æ7pŽ«ùf©®iY¥æouÖä­‚}lß^Ë«_Á¢¥ú¤Ü\j^{&fN´Åå`ËâÞW +> Þ¨7Ú|ç—lÈX³ÆÑÚZËËõ±¦3——ýýðˆfËFlý”m–bÓ᧷‹^:ܳ¬®è‘ +`‹Ühx 6?èšý¹õ^œiKNÄ8©Suèë}c0â|Œ# FŽeË3Ÿsý¿Å¯³b”á²OJ[÷R<ÏW‰r;" +ð# "ñÏx)#gb®bD— +²Ì¡4jžD‘„!wsµ€ç C÷4þ¤v˜p>w/ñ1ï÷²Õ 1C°<Áà¹Ñòº鮇QÜm©‚XiédÞ½÷ä-›ð»Ò|ï‘pW6?h +Û‘½KD›œf!²µî•…¡g×Pˆéì¡"úH²÷#)„ &~¾¨±Be°Sôr +è8a<=HÖÚÒ€$¬á7ãuçp]®^hˆ¹Mª<©.¸´Ž«§Ck4xÙ¦ÂÏp¾ßBÀèÉåWÅ¡¾+ˆ âBCÞ‚-*ëst°¡ã’+ •UR­tì"gYEl©]Ü®à·CûXWðÑ#u…ŒËèj(¦3ᣕsJÂNÛcžS²°™Ø€°œ©à¾Ô½ uï*“7Î5\÷5´ÂÝj”{5¯!pX±àdI<(¶çº _‚)æ–r–IˆÎ. X•-Â’`8îðè¦Ohì„w×’)\‚Ž4™…ÇT¼g—G`—6¦…GšÓR‘a}â;¯³B`j„È+ôí‚Q|-vϪ¢™!Q:WçÆÔ% "QuiNà • j V£–ØCœi8ÃÆ•‡iè4™E͹)ìÝá+•5ÚŒ ×o]ËšÂR3䎔/‚°Ž"t„eé°³EHǒâáH¦±Mè3—Š0 +Np=8Ê°´k\ð“?\‘[WÁÿ²tj³šíürP¨ÕÕlç¹}-ré¹SÈભ•­ î[ýzö¸( +÷dñn¶sðáèâñã§'×7Gç‹åçëÇ/ö^¼(Š¶|òä‰z¶û\!é7e{AÓX¸÷wxSpé©÷hßý 6c]n UÏ-©¨´:6Y™üÒnX3’² YËÜ_}5y)ñÞ¨ÐydÒmMß±Þʺžô• ã½8K?ê:u)÷UN5!–®­”@»BpQV<·Rû¢-¬úùÛÁUÂѸht}ú0K|9œ/tcxÐ’½çJZ‚²ý¯µ*‘ªÿC‚‰W^…«·C†N$`Yã®°ƒUQv:ñ‚ŒA‹ÀkxðöŽbŸ$d+„ÜÀ'6°Ê˜ ‰eFYÇ…‡§jzè¹—ß7‘[Ñ Ý„Æ!ôñøz‘x“êŽt’á~‘r.)—‘Í$¨¬Ì3 @ÉäQÊò§\Ø÷k"*õ*)õD%% ÉÊ;ŸÄΚtðiÓ[™ÔœäHû6 ŽÅ$]oEDô¦›¥ò Õ\ü(Øõï^ ”Åã ªÚF‰+‡óßI@4AØÅ)K0X¥”vŸRq$/LÊÞq<(¹Û)©õÆã1m>»*.‰=;„ñ@?ÁöM:óLᾞ,æáÈ)®ŠZ†Ê;±üM­¨¾&K…Þ‘ÚÕܯv¥àöÃ4€íàDÅÆ0’~-S d:sk p$ w=Ôßg"í ¤:lf–2—»ÎÐ3ꪩö¡É§Á|§i¾Wý„o&”N“6g¹Œ!¶ª1°qQ[þ)9! Ø¢IæÀ¨kéégT–%ðÔ9_oÇBÎÒÜ™6x“V¡45•¸N±Yûf´–‚é ™îù%™ ã8ÐüêXλ´ñ\,-`3¡mªü—ã93Åæ-êáÖ‡ËÑp¾½;ßQ%uD²˜ÝU(NØéáŠz8p.ðt|”¯Òš‚ºp•!¼f*±wƒ 6*JJV¡X¾8ƒ£U4Àp+ËðHIµ—I3W2dÄ7Þê•ßrA€i)[íî2Ø÷½¸bHî-fgM™×e­Ê +,¶­*KÐw¶S¶‚ç…tÍþ­.à;ß K ÛÒµ]ajAÖD0`ºï;Û”ÆÊ~MWB¿:YÏv^® µ{9ûþž- ¥™×FÔ5…–z攺šU0šBhj ©EÓqS{!ºú¥¦°ý¢©À_Á±(*{Ê!D!ä?©§¼"˜’ß}MŒ÷»ÔêSíàî¹&pþMcËï@- ¼à[µ‹/j´K°?Àª«p1Ûxö5*dá7Í#åKMh[ yªùt]sÏ©ø%ü´Zá"Äâ+Íõv å„äí¿à„lwwߧìÿ 7G¤ +endstream +endobj +108 0 obj +<< +/CS /DeviceCMYK +/S /Transparency +/Type /Group +>> +endobj +109 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/DecodeParms << +/BitsPerComponent 8 +/Colors 3 +/Columns 749 +>> +/Filter /FlateDecode +/Height 426 +/Intent /RelativeColorimetric +/Length 71459 +/Name /X +/SMask 203 0 R +/Subtype /Image +/Type /XObject +/Width 749 +>> +stream +H‰ì—çsMßÇÿ¼` 11j”hÑ"’Lt‰Þe¢L£ƒz/ADïBD¹z„Dï"!qõ !îçZמL÷þüNœëœïçÅž}ÖY{­gíý]Ïó]_¾!„B!„B!„B!„B!„B!„B!„B!„Bü‡çÏŸGDD :t ptøÊ|ëÌÌL{‹N!„° IIIþþþ-Z´ Ž ß—¯ìççwùòe{‹N!„° —.]2dHLLŒ½_™o`ï@„BÛpùòåÁƒoݺõÓ§O¯…ãÂ÷å+ó­1®öBadcœÙ!„Ž‡lŒ“ #„Âñqdc„B8²1N‚lŒBÇC6ÆIBáxÈÆ8 ²1B!Ù'A6F!„ã!ã$ÈÆ!„pBÍWPÛùãÇÔ {G*Ä¿A5--íüùóÛ¶m›?þˆ#ºtéÒ¡C‡æÍ›{{{7lØ°Q£FÁÁÁ½zõš0aŠ+öïßíÚµgÏž!u£½!þ.acÐÕ“'ORRRPWff¦±¶ü'ߤÉÉÉ`ïï„ŒsË×Π8p`êÔ©qqq¿çmäC6F|ª@´äó+W®}ôèÑ;vlÞ¼yÆŒÆ kß¾}Íš5ëׯ?|øðuëÖ!~ê”üÌŸ‹mmÌ›¯ÄÆÆâ~[¶lÙ§O +7Ö—]ÞâN*{¾­vsŸ¯sÞÆ7ßÈÛn¬ÂöíÛ±âLÍ¢Ž?Τ¦g¾góÞüpðïÛ­Y~¹9dddä{÷¼aÃöš¿¿dd$ÝÞ~ãû·÷Ãyÿ>²1Â"''çùó牉‰kÖ¬!“7iÒ¤FmÛ¶%ÃÏž=­bTŽ9rêÔ)ªW¶ÒÞ½{·lÙ²dÉ’1cÆP/êÖ­[»ví=z,\¸2AM¡²Ø{YÂÁÉÍÍ%»^¼x7Ò´iS¬KHHȪU«Èi)))]1äÔs€}—“iiGöOŸ>%K?|øUÏ™3‡z¥Á¥¯]»ööíÛô±÷*Å_ƶ6Áà%æÎ[¦L™Å‹sC¢sssãˆgÕè>˜2MÞ³¼ -üÌÊÊ27V}§…ŸH+ïƒfÚ_sÀ¿ÇŽswwÇcf&NœˆQ7CYÆ ¯IàÊìt07LdE’õ3»Õž7n¬¹¡WJ®¾wïÞiÍ!×÷L±àHK¶ÇÃ0#˜¿¬¡¬Eåó]¶B6F[‰\½zõêN:ÕªU«{÷îlR6Nrr2¹ Ož7U5æ­h’vv7•‚ž?¦š0u¤N:>>>Ó§O§…*cï% +äóçÏ©©©ÑÑÑXhüó!C>Œ\M™àjiõ‡˜Z`²½) è933óîÝ»ëׯo×®æ<44[N£½W,þac°ÊÕ«WÇ£d6oÞ~ü˜@M›6íÚµëÑ£GÆœûöí#~åïï_¿~}ÞÆ¡C‡xK|þeQœ5¦M›–žžn6—­qZ00`ù™Ýh!‡ç=½þš¨,Wc¶÷îÝ[¶lY£FÚ´iƒM¢úØ{éâφäIÖjñ20ÇF#9øeÑþF³†¥XL:•<Ü¿Ε¦Žˆÿg +ÎÆXîí¡‡V­Z‘å°4š=z4uüúõë Õ«Woß¾=F‚ÔG)ç/l ™÷Bl ‚¯W¯V9##cáÂ…ÅŠãJ6¶¦&—r´Äu¸¸¸0ìÊ•+ùÉ—/_^¾|ù7np_"€ pÏPEŠÙ¸q#*ŽŽvwwŒŒ¤8+T¨püøqLÈœ9s*V¬ˆ’1U«VEÛÌH˜+L ¼víZáÂ…;v옖–FôäñY³f±×8/˜ÀÌñ¶[·ntc.έ^^^ŒL|ZÛ¶m»víÊã»ví*Y²$#soÛjqBÐð¹s猙2eÊíÛ·Í&-Ð*À~§âpNa¯ql¡Ùû5ˆ?òÕÅ‹CBB4hÀ¹dNÂ4®Û†ºýc“¸Þ½{wäÈ‘ÞÞÞäêääd{¿ñ3~ƒIMMíׯ_—.]bcc±";wîüüù3SS¸ITT1øùùá7LH­[·îÕ« ór¢??U»víîܹƒª7nŒ±ÉÉÉÉ«jsìرàààâÅ‹ã…XTDDVƒÍȧOŸfpü÷Œ†å åâ—p)xïI“&ÑÈ_ϳIIIeʔٽ{÷áÇÝÜÜéŒ9räH©R¥®\¹BäøŸ}ûöñ[‚MâY«L°"ÖÂø3fÌðõõ§??çÎÛ¬Y3üÏž={x9OcAlUÙgƒÜËNDTxcv±],?ƒáç@1lØ0Î)FíBü/~W¬XxÈW¤nò§Í÷Ï1f†âG +µ÷‹?¦€lŒ§§'?‘S\¿~ÝÇÇ“@¹¯U«–ÀؘC‡5iÒdÆ ØtkBÂiôìÙcЧOªJJ +±egg‡……atΩS§ªNõï}ߧ@¯yóæÕÕÕÑ™)JKK§M›ö•æÎ{ûöm>¦âøÀø` ךC8ðE›7of|öf«©©›À·ÁW—/_†gkÖ,:çææB@53feeÁW¼Î,°ÊÂ… Éö ‡°BÁQ’……EUU‹¤ÿìÙ³ËËË«««utt²³³Y•øÀùóç+•JvOWW·°°P` „_*¼KÒVÇãèè¸iÓ&ÆOOO_²d ðƼ¼§mܸ±±±X"Rîß¿/cŒ¬‘ˆ #”8ÉâCb+Ž%ÀhŠH$^09ÆÃÛþþþĬÔÛ#k\«¸¸ö¶³³#“ ¥Mc` +M~~¾ðpkk«Ô›$k°Fc(ßñññý¨¨(8„2½hÑ¢'NàÉ7oÞšs *"ŸUâë4×)–$†Ú+=2ÆLlÁÆVVV...£Ë£(Q›¨SúúúXQê “5^400““ƒ+Õ©x| +S2¼¼¼Ö®]Ë‘Sê“õ?iczUõ]­?{4¨ñ»×Ãé?œyµ8¡¡¡nnnj@ +œÃÂÂÞ¿¯I_?µ’ï~õÐoþGŠdŒ™Àª­­µ´´ôôôlooµç¢Š˜¢H¥¦¦êééåææJ½m²Æ… +…¡¡á©S§HËÚ;Ç–ðpww····µµuCCƒÔ›'ë¿ÒÆŒs.TóÒÒR © X´¨¨¨ªªJº¥iK2ÆLTÕ×ׯ_¿ÞÇǧ³³“ìÔFû>ª”‘‘±|ùòk×®I½y²$ÖÝ»wW­Zuüøqð{ü3ŒåƒXsqqqrrR*•Ro¡¬IŠ1===äRÜ8ô<û%i[2ÆLH577;88¸¹¹µ¶¶R¤vÙ°D|qvHHH044,..–z eI¦ÚÚZ ‹Ã‡“u?|ø µ1 (‹cQÆRY0¡gmm½k×.Z¤ÞÈɮɉ1“P2ÆL<ñ·zyyÙØØÔ×× çR»l¸¢ +°ÚÀÀ@SSÓÆÆF©7R–zóæ éÈÛÛ[Üö÷÷·RóOÅÚÀïòòrÀëB2Ÿ?&—êë맥¥I»“²Æ9Æî0Ï_t`}:"""<<œnº8q"##ƒˆÈÎΦsll,…†ž/^äipp0¯III/^¼à]:>|XÔ#Ö››ÛÕÕEræ–âââjkkÕ¹š<ßÜÜ nѵùûûSzYQkÈíëÖ­‹ŠŠ’z_'¯FcDYÇ!3gÎ䟰mmm]]]©øÌU__¿oß¾ÈÈH1?}ú¤™„E‹@\Ä+ä·Ý»wãg<#§?Q`ggÇš€€Ns` xŒÍîÞ½‹÷*++±.#,4…š=˜ Æ^³fM||Dê}•¥u‘ˆ’““MLL8 ’‹|||¨wîÜÁÏœXóòòŒÝÝÝŒK—.yxxøúúr»mÛ6¸‚½½½§OŸ½ðú‚ ¨/dûššZ€‰4ËyGmß¾ñ ¸ ôP5233™ËÌÌÌÏÏžFFF»U¢Nݾ}›cæþýûa@…:º¢{UU£¿¿Ë–-sæÌáѳgÏ®]»V]]cEÍR(K—.¥I½»“T£‹1bèêê–••ÁÀoùòå8“” l€ßüûtã†h„¹ÆÔwÚ쎎ê>Þ ÅÔÔP¡²C×d<ñã0r[[Hüöë4¶ê*ãø+^ƒá A6YY[p¡a_„–%,%KAÆH‘‚BÙ÷Ѐ²Ö6¡,­‚,aK©@5©€€P˜€¤0c:&d2a>¹'¹!š™Ãm.Cïó¢ù÷üÏyÎsþ÷9¿çûdggKW<ÃÏ©S§Žµ€G‰„ÿD,ÐE¯¢¢" + ‘üÉÉÉðÞ§àÖL›zƒ½Ì˜Éù—Õå3žoÑ¢…[&ø¬Œ0Œ…¦…´7ÓF@=À4:·a;Ù¿*QˆÇ)œÚ¡›0'Ú ÄÄóܱu/vìØá9†s}\(²0hÐ e(ÞŸ6aUn:ç–-[<“Ĭ¬¬ÌÌL ±dɪ iÞ~ûmÄâ-ö˜?~X5pàÀüü|“5ªþMKK;wî9MIIA,Fˆ­W¹¹¹'N|ÿý÷ ;JÙ»w/!ýä“Oø7íx«vŒ5J«û믿Ž=zãÆ^¡œœ€4`À€]»v):ð„®“j dé| @š¯¿þ:tD›tã"ÞÌׇ­ÎV³téÒ¤¤$:lr}l#Ó$’lT¸í‹{aö„ >¬è;Vcæõë×Ë1)ѯ_¿#FàŒŒ Ô ¸ò­¤¤$Š1ðÏìÙ³¥ôÑ£Gåv­Zµd®†÷Ò¸2-®ÉòåË·nÝ*€0bþk¯½æ‰Ó½°/¤ñA¤ëÚµkÅ Eí(±¥èÈ‘#eû7ÊËË[¶l)`Ù«ƒ@M¼9‚ÜBœ÷ìÙó§ˆ-\¸q Ão¾ùÆ4ŸÈ-v%EèÈÇŽ س`ÁÔç³hLÄà¾ûžpžÞó|˜Ôò#Ê+‰àüÿÝDò»ØLaŠ÷NX9U Ń¯çÏŸ—ÌX¥´´T[g–øì³Ïnß¾í9== ‡…ž¿üòK…@æ/[¶lüøñW®\¹zõªº@)9Ùÿ裨1µ§ÒÄSeáVÿHŸ-ádóæÍ ääÉ“ãÏS2¸}Áuaúôédü ©Ý»wó,à¿GlðàÁœÓöiÓ¦©D°Š¤{rX+ݺu;sæLü¾nõµ*˜öíÛ{ðï£Gä$6l˜´‘ S¦Lñ£K9?z^^ž;rä®Ø¾}»WÔlòäÉ­Zµ*,,^ÿþý_|ñE ?:vìˆXxã¹Q£Ff¢WÀ %öõêÕ;tèt2R§NY³f¸7F༆N:­X±âq¤ýÆìÛ·¯yóæþ7o¾jØ°!oîöh×®_¹r%ηѵk×` Ç'ðó€7¾XÝõ¹«!óÝÓΞ= ïÃFX.99Ù-[jjj¯^½´ÆÑ—#Ç3"ñ‰pˆzúߥ21Ï‹Ác9CŠA>¤‰InÄݨ„;¢B©/ñþÀ «B»páBZZZ(74_Ñ×÷és½‚ +RZ‡%‚<£‡Å'æ÷íÛWÎéÑ£ +"¡æSoÏÔس¢3tèPlCöß{ï½²²2^\\LB•e‚CzKÆ?Nc­B)¸HÝñÊ’M›6}þùçV>}š ûí·Ö†QÈ€“2dpÛ¶mµk×nÒ¤‰°½ +m&•~ðàAvv¶Î4®¸šZUc ^½sç’½·nÝò+üñÇ0fìرJ9°T È„!¤fÍš—½ áîÝ»ž‹ŠŠêÖ­ HlÔ¦M›;vD1ƈU/¿ür¸Xx„~¼4sæLÏ‹-êÚµ«0•Àþ[·n½aÃÏ"lÑ¢…ü—Ÿ2{KiãZçÒx cÀ¹¯ç®…à•˜¦M›þüóÏnèÒ8ŽqVþ}‡¸åwÞ ¯.^¼=lïÞ½mTQQáyÎœ9¦ÙˆÂ?ýïR™À˜çÂüŽt˨ ŸÏ9‚â¾+.ñþÌ «#ª„Ž 6 ¿¨†Þ–””A–ÕÈÉÉÁ´tïúõëÀ@W«¡ËÍÍUF{LÀ*ùùùÔ›NjU:Oä/^<{öìÕ«Wyï?üpÿþý¼¼<A•Ù»wïÚµkõ¡kÖ¬QŒ5j +½êªU«È#íµÊŽ3fÌ0ٿ☿VÙT$Ÿ~ú©UJƒ®Ö5.$°Ó8qB­Q‰âý¥«U5ÆÈO¬’™™™••0lÛ÷Ô©Séééo¼ñÆ´iÓ~úé'»Ë½à½5kÖÄÛ¦õéÓWFCMoРAaa!ÏmÛ¶ýO#¤ ñVzS{ÈݳgOÙ>fÌø„ùC øƸA@ü{6§C‡2_¹wÐëÞ½{ĉøpc@ÎÈ‘#ÆÀ˜òòrdîz¦¤¤eq:ݹsçøÙ¸q£»óú믻,æ[ŧù÷/nY°`Aa»VÝ»wÿñÇ“°¨kÖ¬€1ÈJë‘À˜„EM†geeåææzŽIJr­H&d`[[ÛÄÄDMKûƒBœ`êáÇ›6mZ½z5W#<<œ¨¬m¡©Yí ;::rssqL*—„`+A¦íïSB2è1†è)”Ž@ÂF`À‰c®~ifùvTSSS'''&{zzø¦@ÏOOOGGG==½¹sç^¹r¥SÍ0ׯ_766677gÒÈÈ(&&&))ÉÄÄ#6lDA +QæÍ›7gÎœÐÐP&Iø,_¾|¹»»;øÑÝÝ +‡««ë‚ °¼xñâY³f}º\.gLðLHH'¨ÏŸ?lmm Á¡1cÆܺuK¥Rùøø¬[·.??Ÿ±lÙ26ÂÚðáÃwïÞ ùX[[5ÊÛÛ;33“'`óøñcàÊÙÙyãÆYYYÌb³µµ522räÈ‘° +E'00pÊ”)eeeì²sçÎñãÇã ‰rC Þ¿ Ô¦þ>x­H#7nÜ€¢WIIâäÍ›7 1¼ ºˆ-ºÔBÇ +N³×Š+`ì’’???¢¢ ì·oßü¤¦¦RÂÃÃÇŽ;{ölûãÇv¸ìEäÓ)ðý{ìCG†Æh¥S‹1Y`''§œœœ×¯_ƒ1S§N% C.\BzÕcffVSSÃøæÍ›sçÎ…ZZZÆ—˜˜Ø«nBçÏŸO^}÷îÝû÷šÈ´À \QQQaaa¡Æ*ÈžÉËË[´h‘»»{¦Z( + kQÓ×ׇ@P¦LPègƒO c68q"fïÝ»—œœ¼víZ“úúzŠ –•J%ÊËäÉ“¥PDf̘AU‚D ²Kmm-\tâĉ~;q­H'|ÐS§NKRaŒÀ‚$Hd2ÙÑ£G/_¾ Ò¤¥¥YZZÆW¯^åÊp¸&aaa€ô®]»`fÖvttàIzzºƒƒCDD7HÚ÷ÇD¸‹‹ [|÷¡}êùC$ü +ƒ[´3DD‹1¿Ž|ìîþ&}²±µµuccc[[ÛªU«Ö­[ϼxñf '£°Y-À ÍæÂ… år9éÔÐÐll``àëëK2QÖ¬Ycggçèè8mÚ4zU•JE— +„QÌÍÍ©5”ƒ™3gÚØØ°–Bàææqj»×ÕÕ±)…2Ø&¸º}û6P;a|ÿþýT Ÿ¨¨(¶ˆ‰‰122”ñþA™ñÅ‹qÏ5¥äíÛ·T¼’þèµòK{{;ô 0€Ra 6,X6c“'Æ—.]úôéÓãÇÆl +Ò8p€ ãmmm³²² …BÃ`}šŸd9tøðáææfìÀ-lÍ|`` ¨SSSÃøüùóX@“ñÇ!Èý &ÄÆÆBY¬ª¯¯‡¨)ÔœgP.((cD…tttÐä]4±Ê<øD?ûSN_+ÿ¬444¸»»Ëd2ðCŒC///›¨f†`†j B}÷îÝ(x„a3»ººnÛ¶mãƆp€»S\\ yწÀòÐÐP0é›ê÷÷ŸÒó[·Æ”˜(Öªº>u÷ürŸþxþœHù~ÑbÌ‘Á1==½â è¿‚ª×æAyæA¹Áñå+^u÷üMZ 9ÓQ2ÌÍÍõõõ³³³ÓÓÓ!:PæIÑŽŽŽcÀRº\.'“ëêꚘ˜¸¹¹‘Ò™-lll°PUUEŸ +ìJO· E>ü$×Ìfaôó ˆ¦5îÂø|à+[[ÛalWoŸ¾ªîÓõ­Z£¿‹‘«»çkz±FÆY’èïÀUó—´bÔ«©jš>'ç6Ôµôè¾öÿ2˜Lëççwþüy½^ß%œ"9<ö +¢!žp¿_´xåjzzú¬Y³À’3gÎðÞi§¦¦¯DC2€™™'GŽ´óæÍ + +"@C°XƒÎäbÚo$¶ùoˆ1,rð@ñêÀ`±õõõ®"ž4%%ÅÍÍ­°°p ^‡¬QUIIÉüùó¡_ãbŒÁí˜Mdƒ»ÄC =ì'r4VÅS߸qÃÒÒrØ›FfÐ÷ÿ:9Œ½8…¥É#Ký5“ZØ,õ*F*½¾ÿ«þws”J¥òöö1æ÷ÕÑÑQTTÂ{ïR÷Àñ§R© cS( 4îùôO…Wa00†ÅŒê‹5„¦¦¦ÐøhÃ?S<õÍ›7-,,¤Þ{ãKÆYJƘqªêêj///0ãO¿PñÚÞÞÞÒÒÒÖÖö³ƒ§x&5„óãëXŠ'ÍÊÊrwwÏÌÌ”zûeT%%%sçÎU«ÕÿW³páB©÷Þø’1F–„’1fœª¦¦ÆÛÛ;44t_(ˆ"bÉ/+ˆ!Œ!õ˜ÑÄ“fdd€1ÀŒÔÛ/k¤"áXZZ¾}ûvÒ}‚´Z­±h?÷ööv Þ6ÊœLø;_1:.**ÊÆÆFê½7¾dŒ‘%¡dŒ§jllôóó»pá‚^¯7®%~3-½xÒ””77·ÂÂB©·_ÖHõúõëeË–QhðÛ_7 ƒÉ_¾|Y\\¬T*5Q¨C¥R‘ëh´¶¶¶µµ|BÖÑÑñË0Ï…„„888H½÷Æ—Œ1²$”Œ1ãT$á#GŽô÷÷ã½S;8äÆ•ÎÎNr;ÿ‡ÎÀžž­VË$œmÖúéäý† +E‹…HY:N´œè@zDê}Ô'ˆK¢ £’’’vïÞÉÓÓÓ¹»Ø©40˜†øuˆ~& &þä¿Lª««éÚ½óY]¾|™g‘zï/cdI(cÆ©Hþ0Œ¯¯/ía¼wµZ |üø‘ìÚ+ˆNrr}}}dd$—Ž(R1·&RœáÕ«W>|`²}—€+TŸÒÒR.½{÷Ž`1ùÓxÿþ=ýJ¥’øöövC™ø}ñ¤·nÝrqqaf©·_ÖHUSS‘&$$`§ïœÀO¨àÂ… ëÖ­{ûö-ª­­mjjÂ6¤©¬¬¬—/_Â!„q•ž¼¼¼ŠŠ +Ú\"Œ«ååå%%%Ïž=£Ÿ«4ÊÊÊÒÐÐPUUEÛµk× FóæÍœ™““C$= +…‚Ÿ¢{ñmQQQqqqcc#>Ç{Ü‘Ùp8À˜¹¹9Ÿ ÓÑÑ1„¥™ŠG þc[YYmØ°H:÷îÝ»dÉ`ãáÇ۷o¿sçÎÔ©S§M› “éææ†?W®\éïï¿hÑ"‚A˜üرc\"Vò¹6æ?ÈtíÚµ‰'²¤èèhñPð3÷òð•ùøø0Dê½7¾dŒ‘%¡dŒ¿ + ³³³ã † Ή݂ºð0´»þ‡4?ããã9`Ò&o»»»SV˜SÄ ‡ªA0ÿ¿ËÌz½>==}ÆŒ”¤¤¤û÷ïƒ+“'O0¸ÄY•áëÖ­{ôèÑÑ£G'Mštúôif ²L™2…shBBÂñãÇgÏžmaaA’¡÷]¿~}JJ +œ#ŽÂ‡,µAV¹¹¹¬aèLK æÖ©©©ÒîühHÆYJƘñ«»wï ï”Q^^Nº®ªª"ÿ755ÅÅŽzõŠ6—ÂÂÂÊÊJXŒÉÊÊâ\ T„‡‡+™ššH ¹téRFFFGGÇÀ™¡8ÇOµZM¹@è'ùs€U©Tµµµ&&&q…7n´²²™((` E¤¿¿ŸQ ‡\°ÍÍÍ,•ÂS]]=ÉDÑO!ðõõ¥ºIºë²Œ&˜ïa¡ï^:=h ÷üÏÌÌôððÈËË£““³{÷î´´4b°(=B¤'`̆ °h}}ýš5kp Ÿ‰ŸŸ_bbbrr²««+—ˆÄóŒË1 Á°wtt4 wppp@@ÀÂ… Ož<‰ñ¼¼¼²³³wîÜ)rCÀÀ` ·ÃØCgZ Ÿo øçÓ“lÇGM2ÆÈ’P2ÆŒ_‘·mÛFb ¾SʽB¡˜>}:i–0Ž&L8räÂq•þ+W®ÄÆÆ‚.°ÍÕ«WÿË~¹½TÙ|q¼þ„n‚÷Š"²s”¥$$Y¦–í i*i¦f¦i'íÚVR;ÓÔÊš§ÂÒ"ÒÒÔ-55óÐë9Oe„Höû°6›,7î÷A™ïÅfžyÖ¬™=Ïšµ>³páB +JFFü³téRR÷Ö­[ù533{ôèõÑÂÍ”gÎœÁó7hàÐÜÜœõÀE`ŒF£+¤”ØÙÙ}úô©ªªêŸþ¡ÐŒáQÑÑÑË—/ojjbëÖ­£B¹ººb022òG’¡BQ‰¨111 +î¹Ôª¤¤„°(øè†ßš€d +<®­­-,,$Bz{{/_¾ ÿôãÊÉÉ †çAhž(…^¸zçÎ`skkë‰'ÈuÙÙÙø!P#""˜‚¹À! 6Ÿ>}:)) ‡Õ¸ò÷÷'€qÕÒÒ‚Áþýû‰R {CõèˆÆðððä™–óÅ™â(¼ïFÄ)%1fúŠ+.>>ž‹žá7EÁÆƆ»*¯¸KΙ3gïÞ½dcHcõêÕ\f¹“ZXXP@ nš>¹*.X°àСCÀIá6-0à*º~ýú¸¸8ýõ“N hãƹ¹¹===k×®uqq¡4ÄÆÆ.[¶ŒTOq)//còòò@¬bjj +ÞPÜÝݹÕâg’@%ùSõ°EDj¨¡¡üàƒê9Ùðs“‘¼½½===Wxƒ‚+-µZíìì 3ÇŽ{þü9¡èëë ÏiPqJJ +qEðÿ«ÓáÇáHO2ÅÝ»w o‰«°°0ˆc)==µaÌÉb…Gi î{÷îñÈØ¢¢"fd854@‚‚Ú¿ñ˜^,ŒÕâœÓ¤ô®Ec¤”Ęé+n¬ááá¤ë_€²«­­-X'8::nݺµ´´T”26ÝÒÒŒ¡‚¥IõÝÝÝŒzÿþ="xƒž€€•J¥Ç²·À­V«Ÿ”ù|Æ Ô0:211¢6mÚDÞ¦‡’ôòåKCŒÁ[rrò¢E‹¨/sssªä388(&š(1 ‹¡Ö(¹éRS'ê> ¢èL¯ááa:‰À€ßu*..¾uëÖ»wï~üø144·¶¶ÒEš››qBå"ª;::À›~@w‚Feee³Nsv:;;!–gÏžQ0Roo/6oÞ¼©¯¯gjŒI‰<öiii0 ·ü3–ëÃÂaa ÇÎzþ½8ä$BDIIIJïºQ$1FJAIŒ™ÖŠ‹‹Û½{7Éó·k äoæàÁƒ™™™[¶lIHHرc=ØgddŒ¡4À*nnn¤ñ_:ŒY³fMVV‰š"á899é« n¹çZYYÑ1å3!!!x«©©!¥¯ZµêôéÓ¤t^] „”ÆÀ9ÿüù“Wžžž NWW=Üd-æMMM31PuîÜ9E÷[j*Å7b‰Ié` T?BˆGl°„„Å#âXB4è´#,õ6Â9£Ft¯hÏ"Dõ6 Ç¡¾Áï¨N¿~Fa`èg’4Ë?«¸JÔÕÕ)½ëF‘Ä)%1fZ«¨¨ÈÙÙ™"‰Ôð³’`ûúúH›K–,ñññijjò÷÷·µµ555e†7-¤_ñª­­ 'ÜsáBB` „³wï^=Æ`<00àíí½xñâ§OŸr{ýòå bffæëëË.ªË–-‹ˆˆ` +=Y1ª´´tÞ¼y°ù–&&&Ο?¬Â‰ ¤.ØÙÙ©Tª‰HöUW;ÚÛÛ¹ÌFEE)½åRS©òòrkkëêêj3R‚âãã9eJï·±$1FJAIŒ™Ö‚4à‡óçÏÓþíËÒ:kÖ¬@"++kîܹVVVÜ ÓÒÒÀ …»mrr2Xâçç™ÔÔÔ¬]»6;;[`L`` !Æ|ÕÝ+«ªªHÈ@ÎñãÇi8880WÍÍÍ+V¬¸pá³ë‡P¡Â¸bIžžž + +„µN:Î_ÀçíÛ·Iøú†ÿ%77×ÞÞþõë×Ên¸ÔÔ + >sæ ‰hâwŸâˆ544¸¹¹ÝºuKéý6–$ÆH)(‰1Ó]±±±àÁðððo÷Y8¤¬¬ †yþüùØØX[[[dddfff?Tóöí[­VK'fjµÚÃã  €žëׯsüñ†e^^Þýû÷±7,1xkii¹rå +C¼¼¼âââÚÛÛalz{{¯]»VXXhH>4:;;oÞ¼yòäIj–F£—0`ê€ +?‡⺠+ØL¬eô` ç¨T*fQz¿¥¦XĤµµ5 Á;Ý)"r,'ÂÒÒòóçÏJo¶±$1FJAIŒ™î*//ß¿NNÎøø¸á—¥.À ð+jm*à2 èÔ¿BÐmüðö«Ž¸Hþ1`€™…˜?býøz ·Â^\á—%éýLd˜¯:jzÿþ=—Yxé¿Þ\)㫾¾ÞÞÞ>++‹ýóôãÇÉG¡pŽñoa†ÄpB”~Â[tê"hÅé ‡W´‰UÃÕòJ+Cÿ“û¾¾¾ .8pÀè[©œ$ÆH)(‰1Ó]ää'Nøøøü ¦»øwîÜÙµkW{{»Ò›-5õ‚®]»ÉИ<€yÛÓÓÓÔÔÄïßHæ›Nùùù/^Œ‰‰©««ƒ±a‰’’’èèh:‰¥îînlè0 + #"".]ºTQQÉàJùôéS|||qq1í/^àG£Ñ°H­VûñãÇššš7n¨Õj:«««YÉ$ËŸ¸hlÞ¼¹´´Té6¢$ÆH)(‰13@|A;;;òðÌ;­Ô‘ŽŽŽ£G*½ÍRÆReeå¶mÛ +ÓèèhmmmBB$Ã(zÆÇÇ…ý@ ‚ƒ°oß>bæäÉ“?¦³¬¬L¥RÑÉ€"˜ZÍÍͱ±±ÁÁÁ¶¶¶®®®à ÀÃ!JII™={v@@žŸ„x¨Õê£GBT0‚ÓðwÂ-d2YEEEAAL)((†ƒ;ΛbƒÁ²²2‡ƒÅ -˜¦Æ ©A8KJJH/„}fH/€mð”ñ¬±[!½ÅC5­[·.77÷ýWö³Ë vGGZÕñãÇI‡–½½½»ví:vìØ{ƒ<|tþʈ££#,…¹vãÆyyy8§Á4˜Á[·náxúô)|’3õÆgðŽàX.—‹D"±X wÂ…˜|ÅŠÑÑÑfff+W®|ôè£Fžžž—.]ÂñŸ«aÀ‡™Ñ+™ñyK…á*Æ…þõ˜¦Æ477Ãoñ(QFvü¸»í +>t*<&mÏÞß\]w’^Kàùâ)cË= é¤[ ¥A!eÑ;~0333åå嶶¶999¤ƒJa$-*ÒÖ­[e2Ùää伬À/\¸  +q*<>ƒ<‚?à´²²²'N:t(""2Ç€Ÿœ={688øÈ‘#)))˜J§Ó=þ"äïïyÄbq]]q%W®\¹zõ* Fñññ Ìü°kX & Ã]ZZZæ9  #%%%\.·¸¸˜\,YÅ45ægcðÏéƒqyÂ| რÁ¹’²Ò+¢|TcŒÀH±ÌËËÃ1{ÚñãÀ +ÖÞÞ¾sçÎððp½^O:¢Véïïwww + +‚00Z2 ÂIž2WT4F `~ÕÜ©pšR©ôñññõõÅi¤ÉTcÈòºKé)Yí‘Áß_i/ªµû½Úá@-gO1Ç3-)³vœšÌr€jÌ\Ðý===ýüü°WE½ýŽ±Ô / øÇÅÅñx¼—/_’$…R©ÔÚÚúúõëPñy&c² {ÕjuHHˆ³³³L&#BV¡CY‡‰¸·jŽÃ0{ƒÉXÀdîR“YP™GggçæÍ›8 R©æîIM™ññq4‚ŒŒ ++«ÂÂBÒ!¤dzz“¹ÿ>þ4}“7µ~ýú¦¦&Òñcª1¤hë†ÃHV 2lþê0F“±ð‡ÉÜHʬ &cÚPùœÆÆFÔÕ‘‘FCºÌƒ±±1èVAA—Ë…É…<“““—/_æñxÙÙÙz½Þ”Múo±XÌç󫪪HGŽTcˆ`p˜{¿ +2ø_r˜&#ªµØó&“œEMƤ¡óEª««mmma2jµ’@ºØ8 D+??=+!!tØ(¦Âøøxbb¢••ÕÍ›7§¦¦ð'éTýHÝááa‘HäèèX^^N:fd Ã>í²ŸÉjÁ]~ðWÆh2–Â^“ÑR“1Q¨Æ|šš{{û°°0¥R©ÓéH—ü/€,4&==Ý*%%err’tÌ(&òáöíÛÈ‹/Bcà ¤ö£££XO__ßîÝ»œœHG‹TcX¦cÖaîýêùm‡1šŒÅ˜LZrVÝ„†šŒ)B5æoxöìÙ¦M›„B¡L&Öµ—tùÿÓ•âãã---333§§i¤Ìgff&??ßÆÆ& Àtr˜q*l6lØàííÝÚÚJ:N$¡Ã&=>‘8ŒÍÂÆh2–B˜Ì j2¦ Õ˜¿§­­M lܸ±ªªJ«Õ¢“nv²r¹<00ÐÎή°°t(&MSS“‡‡r¸¢¢B§Ó!‡IÉÌØØîŽï´´4.—ýöí[Òá! ÕÖ˜u˜ÉšY‡©X¸ÃüÕdÒR²j©É˜Tc¾‰B¡@½µ°°HMMU«ÕPÔa"]ÝgÜv²èJ>>>èP¤ÃCYô÷÷Ÿ:uÊÜÜ™Ü××Ç9›2cL]d¬ŸŸŸÏ—H$¤Cª1ì‡ñŽ¸g懩´Õ|—ÃÌ1™ O˜LÝ„f’ô¢|‚jÌB@½ÍÎ涶fÌÕ#lÊŒ± `÷³víZ|+•ôÁQ +2¶´´ÔÉÉÉÁÁ!//oxx#,È ^æeÁv 66–ÃáˆD¢––Òñ0¨Æ°@gÊ;B²Æ+“¿X‡1|j`2ܽ0™)Àdt¤åTcjohh(âܹs¨ÉìÈŒQ`ÔjµT*Erss+++Óh4¤ãAY~@ƒ“““ÍÍÍ‘E°•JŤñ÷&o13z{{ÓÒÒ° pvv...!‚jÌRÓ‡92ë06û+¡"¶!Õ¶‹Ò˜Ù CpPk),áÒ’³êÆ'¨É˜Tc¾ Ô碢¢mÛ¶ÙÙÙ¥¦¦¾yó#KÔŒÛØÁÁA@Àår“’’úûûI‡²Œ™ššjkkƒŠs8WW×ÜÜܾ¾>Hò„˜ÉHWÌÇÆÁÐÐP{{{bb¢••Õ–-[233!Q¤½ÉA5féÐëß·÷ z…gýâzÕÒ?Ÿ··Èjo!oöS`ðÀ6¸baScX†«¬>~0Ïo‰Ùÿ’“2kÇ&&IÿJ +՘ŠT*ïܹƒÊÌçóP«Q±QüQ½QÃQÀÿ‰½0]ßè,è/R©ÔÅÅ…ÇãÅÄÄ û ‘þõ”Z­¶«« Ùkm **ª¡¡A¡P “‘Àø¯1™G?òy®2²Óà?###*•J.—îÛ·oÕªU;vìÈËËÃ+£GS¡|Õ˜¥ctb21³n÷QÉîcÙ¨\áÉ|öEçz…ÿaãw“ðÀ^TóM±?Pg敱=øÎÞ¨f†ÙOT®oä½@qΓršØÄ¡³8fffànnn¨Õ¨Û½½ÿg¿^|šÊ8Žÿ9k²QtÁeG׬&«È¸«¬F´UD”ìfÑÝ b‚ÙuDˆQª @mq‘7™òX‚ôAÛÙŸ½ÃŽJ‹íí)·¿OnL©íí½½§ç|o/æpÌðÒ”.ÝÛÎ.Ÿ\f¼k㦵¶¶+KpppDDDff&V¼@ôI“ÒX,Fqq±Z­^±bÅæÍ›ÓÒÒðgGGÚ`0 j0V¥P1ϱ*í±±1ŒyôCCÃÍ›7=‚ð>yòd}}ýÈȈè³ôiÌùØìö‰÷&l“SæIü;³½êèùÛÝà½ß¯u%c×}µíJÞýÜ=L:ö9>a4™y_)3ÆM£££˜«1c‡††â®sø­[·šššzzz0·c†Ç<Ù«fþ¹«€9X#°R`½À*ÐÖÖVRRrêÔ©M›6­\¹7³eeeø/¬5¢Ï’C´««+???)))22ÃoûöíGŽ9þü;w***ª««_9477?þüÑ£G>ÌÍÍMOOGÆoØ°aùòå[¶l9}ú4þ u„A.ú´fŒ÷õþ8²ë¸vAs÷a£è£¦ÏbÆxflÌÛ¥¥¥¸™ÅLŽù|ãƘÛÏœ9“——‡ç+++õz=æiÀ}kMMMyy9ÖˆŒŒŒcÇŽmÛ¶-000"""99«Iww7VѧEþÅn·F„7ŠZ«Õ^¸pY¾zõê%K–üÆíëÖ­Û¹sç‰'._¾ŒÔyóæ ²•.ú<fŒ÷u÷ «R +”1e ¢š>‹ãY˜Ã1“÷õõaVÇÜž’’»~ýúeË–I þ]ºtipp0¢õ’””„õâþýûíííXA°Ž`5}D?Y­VŒç©©)õÄÄÄøäxÏc¸Z,›Í&ú`+fŒ÷1c†#Ìí˜á1ÏK«fþ¹ ´ +`ÀJõBôÁ‘ÌïcÆ( 3†ˆHfŒ÷1c†CD$ +3Æû˜1 +ÃŒ!"…ã}Ì…aƉŒñ>fŒÂ0cˆˆDaÆxßCc»Oh]Ϙ¥Û®h5‰>jú,f ‘(Ìù˜-֖׃-¯ÚºZ_¤­­ÛPñ¤u{Rþj—3& êJæõª¶™=Ììg°©ÃÐ?8n·ÛEŸ¨¿cƉŒ‘ÏØ„ñßUnØsùò6'ÜÞ|è¶- ù÷ç…¨rÃö—Eº”1µAªÛ‘{®mq¼Ý±åcoßìù.:ézÅÓN«Õ&úDý3†ˆHfŒ¬z cñ©÷¶þ+xOqèþò¯ãÿ-máꊵ‡ªœ6Œc«‰ÐT†î8û^ìgELÁïcþyå®Î<Í '3†ˆHfŒÜúÇ5iÚ•¾®©Œ<\‡,™Ù\i˜_bFÚ"ë‚âŠÂw_ÍÑÖÛl6Ñ'G0cˆˆDaÆxJFV¸bGn˜úqäáÚÌ/Þô—¢0Uö‡†±²a|3†ˆHfŒw¼SŸ* ü67\ó…%ƒw­Š+ +Û…†Ñ[mlÂŒ!"…ã5î”LdbmP\Q¨ + £³ZÙ0¾…CD$ +3Æ›P2š4íBK&2±nU܃°]Ù¹Zý´•WÊç0cˆˆDaÆxÙ[ÃØÁtíòèÜ5®•Œ£aŠBUh˜úéi^&_ÄŒ!"…ã}oF5i…Ë£sÖh*ç/©aÂTÙ9Z=Æg1cˆˆDaÆÑgU;+™ÈÄÚU»„ª²sµz Ƈ1cˆˆDaƈÒkѤ.‹Î ÿTɬK¬[÷¡a®iu ¯ŽOcƉŒ¨ïç’¹¶æÿK Wôµ£aÌ–iчIN0cˆˆDaƈ5S29³%ƒ†YWú¡aô&6ÌbÀŒ!"…#\ŸaTí(™pMåº#On˜Bf±`ƉŒñŽ’Ñ~›÷»Ø»aª«¹Z½É̆Y4˜1DD¢0c|J&þdaÐŽ¬«…l˜E†CD$ +3Æwt¾ªÒuMl˜E†CD$ +3†ÈMÌ""Q˜1DnbƉŒ!r3†ˆHf ‘›˜1DD¢0cˆÜÄŒ!"…Cä&f ‘ÇÙív)®²ûCEÁƒ¯èÒ¥K_‘<ðÝfeeY­ +< "*cD’®rtttss³÷‡™÷õ÷÷ÇÇÇÿ–üvkk«;FÁc6›?SRRòøñã +ò|Ÿ¥¥¥±±±)))&“Iô¥LTÆtvvªTªäääššÑ#‚dT[[{öìÙ­[·VUUy˜y_[[æÌÞ:®š”K¯×Ÿ;w.** +#Ü£ìŒIKKKMMššÂŸ6ò|ŸF£ñ”3F`Æ=ÜvâÇ_ýsKbLâ,‰1½Áâ‹12-~p^Î8ãŒÑ£GØ”)S*++ùBYYY’ž$i¤Ã…Oø 5ÂÿÐ#/цG6l˜ÕÌ•ðýjL ˆ©S§ª#-xß}÷}õÕWÕÕÕ“'O®¯¯—N+**ÔšSã+JÆkGS4_R½/^̧~2ݬCW­*XÆ -u÷éÓçÃ?R×ý}Ú SÌýè£fÎœ ê:#Y%P™]w O»=b‰H5IŒ‰Å¨B ˜={vÿþýSSSo¸á†k¯½Ö#:å ÀàmXâ ¼ s£=á»ëwéÍÕoñ lÇä–[n¡.&LÈËËãÔ²'N¤p4_\\lï#ÕIX6úhÙwÞygìرþwF„ÍE8qQíÓŽI`ñ~ýú¡©pp¢ †£ÑmJPø|p×]w•••9¡]á'¥èÛ3¾›ëxY¼0滓íýÛ¡ÚÏþýiÓ±Þõ·ïØž}m.úgÊŒÒñÙU*üGeã¿N|ßÞó­%1&q–ĘÞ`ñÅßÔý1'''--MÒlÛ¶mܸqƒæÈ£ÞÜÜòªl)ÿÔÖÖê™ÜN¢Vñ9"½ë9rä³Ï>+‡oß¾}ïÞ½!ÙÂWÔÖÖVSxàûï¿¿¥¥%túÏÅŒ3  ^[ðóÏ?ß¿¿Yûõ‹ˆyl‹$@×O%éÅ_ô*,rðàAñ«JæòN–4Ì­©©Ùºu«Î?ÿüªª*m«Y?`˜8Õµ¶H×c‘’’÷øÍ7ß ¯C‡¬á×0Ì£‚Ëà1½´´TH⌲M¼,‰1±áùvÓ§O¿÷Þ{¿þúk¢*((HII¹ãŽ;hUuصk×—_~i˜oÚÔÔq ãDÄô.D ‰:ëÖ­#6º’}nú!iÇA§5o»í6¹ÑOü¶_wïÞ=iÒ$r¥²9pà¿ßEŒ`x¨ÓÁ˜·ÞzË=Âm‡‘ÄÉõɈQ §Bcc#Áz÷Ýw/¾øb¯NÛúD¶/¦Ø‘ñ¶¦uœqá\;¡Jê?±¶ÈeÁ¾vîÜÉ{`þ þxY¼0æÇöŽÏ´•ÕµVÔÛ»þ¾ÝÑøm^Áße–ÈÚ‘¾pç_Jš?Õó­%1&q–ĘÞ`‰À˜ùóç»TJªŽ2Ø…^¸råJ‰ÝQ’Z}nX’™™yÏ=÷Ì›7èyóÍ7=ê¼õÖ[Ÿyæ™SŽ3f +ÊÎΖÀÓÓÓÍ +™ÓíH‰c F,wÞy§Já:dÈ3Ïûì²²2là“¤aTä%Ó‰ÌF'¿ú꫾85ÒçÚµk©š„†NNyyyS¦L™3g–ð¹ñÀܹsE*¢C34Ióùùù—]v™£äÈ8°Ï=÷ܲeË쎘ëêêrss]ýŠmÆ ×]wÿ¤yꩧUT|ÉaɉÄ<ŒqNù%×M›6F²‚`D(Œ%K–Xçî»ï^½z5D!'+»’Øš)hÊ0¶`Áïèè@â÷Þ -¨¤\ÇþE¢/ŒéåV¸å@ZnõÊâ¦]_ûç&1&q–ĘÞ` ÅYÝ Ú·o2™={¶,ššú /Á4@<`îk¯½&CÊçO>ùä Aƒ6nÜ(Þxãguªñ(󧥥ɱnyʇkq#ƒYP.¦ãðpÉ%—àé}ÕªU}ûöÕo³HéÒK/ݲeK „n#5âæ›o–srrúõë÷þûïëÇBʇª@¼+µIØÖ„gÒÂĉ³²²B]xå•WàÜ^^^n©ÂŠŠ +ax-J GÊvöØcXB!‹žŽ1HI¾ÕV5ê =fÌÑTÛ;ª¯¯—ÌÕ« sçÎ ³fÍUÀY]Jw ULÃ{†1IÎç×”©S§êTVÆWSS£]~ùåvŠaTÀ!C†Lš4 °ÜŠ‹%1&;cœz¾þúë-Zäsk;MÚñLgD-ÇŽÓ0Þ`ÐB` +½£¡ Si-(¡RýÐUWŒÁÞW(Ú!A˜E*úá½~Ÿ-àç ìΟcŒ~ªªª´/ÂÆâÇ0‚÷~ôóh®30¦¥¥eäÈ‘è+`Œ›¡ÕúôéSPP¼°õë×; Dµÿ~/aÞ¼y:ULÀÛؼy3&w¨­­uB°Ù w±”`Œ‰Å’“8KbLo°DcŒe›ššä·¼¼¼€1r£|+cgddŒ=:++«¡¡Á°M›6©ÙÙÙ™™™ (,,ž\*Ék€7Pyfü2Æ(Dee鮜\©õ¦›nâe„ n¦V ÑvÃ×I¨¬¬LÛmJ-Y²D[Åyâ‰'$ù㳩nóÐCIõ|yª€—àQü2?t±¸8-«”,(«»Ûz"Ÿ>}ºíÝí5==}Á‚àÇ›Yºtix±”èf“ó›ítŒñ>Õh,J{ŽȘ,©È§§40L0 +½×îP€yZRsAR]»vmgDØëÖ­£s‹ Ùÿ…14Oä³fÍš6m)Ú”ceÁ9sæ|òÉ'@Z)DÛùsŒÁ*·ß~ûîÝ»µ;#$çâ‚ .ƒ˜-x"bÝ0†þÅï)‚cÇŽå”&EåpYÒtþ„1Û·o×v–Ç/0þàƒvtt¬X±Â9‚^¹¹¹9996õ¥ˆ8Ó$Æüª%1&qÖ0æøÉ::;~×]í‡Sí'Nžú]\'cdò¶Ÿîkð oß¾ê¸Â-¿)âá(ÿHÑ + ‘ò½wïÞmÛ¶) +ªƒ1£F +÷;æ +©Ö———+(¿Œ12­ë-/íscU5äÕ¡C‡*= +GˆötŒIMM ¹¹¹Y`c ‡¹R½¶5MbÌ‘#ÿa¿þc«®Î8ŽŒÿXŒQ !Æ&ˆ„ AXØø1¬ÎT PäWG!UFiɱ$JÇ@ ¢¢´•€e´†”9º®üZ ¿¤È`°"um-8·lн¼'ÞTÙâÒ{i«ãüqsî÷{Îsžó=ŸçyÞ§vôèÑðõ#|À8 7FXÈÖî½÷^#ÁCcô•¹I“&)Caé-[¶(p¯¿þºUÔ>ÙFùÐýD¢í*ÆÄÒ¢3yòdý°Ä¢E‹î¸ãŽÊÊÊ;v`bçN999={ö\±bx 0ð³wï^\ŸnA‚ã^¾|y°£Ö{nÆøVŒ¡7;¢7âíµ×[¸Q;ÅF+Tã×1†3¬Áxý]»vÁ˜µk×R×Ýwßm „áZá•éEEEcÄ£|饗¼âŒ%`LtãŒnRR’€#f=çªa‚ÅrØÌ’³dôèQÝòCÜ…Œ©?ÿEÕŸÏ\jýjÐX÷Ùßýé“üó_ñ2øÀi3ÜÀ€þ·Ž7Œ8åÉÿeð•k­Ž1e{ŽoÝùÑÅ‹­/ܳuŸ¯}ß¾ªÓ-¿ô•Àà!ñÊÒÒ×Ì™3]Çd6¹W"UÊ_yå•Z}˜dРAn”ÇŽsûKKK3fîܹ;vT¸'½ë/^¼X 6ò©§ž:qâ„é:uZ¿~½ð”¾&L˜ Ãoß¾ýÖ[oU5h ÝrË-©Ì&.T´áÇßxã#GŽŒÞX" Ö]¸p¡µTI¸¤¤DÿäÉ“ò9,ÑŸ?¾í(|°}‘vûí·+^ö;oÞ<åÀZF>PÊC{éÒ¥~ø¡2a.ßJKKíå­·ÞRé¤qn_{íµüAD¾Œ"5tèP좔Åüü|•BxÆ1á_ŘXZÀòß +7 ˜5k@õË~YY€ÙdL bŠ®0³ÚAäxæÅ_¤¨éÓ§“ʆ @BïÞ½‘Ìš5kà=ìÓIbb¢£·Üc=6gÎ’A³(¼¾¾>,êIËaÉ Óýz«Ï2—üêÃ!Ö(MŸh»téò‰ÓZèp€ÿuuu˜MÄqŠtëÖ ÕPcyy¹ñª¡­à±ëâp†Rð&!!¢?~Ü—á'ÚA_UUUžˆY$ßJŒ©9Û0oÙÖ¼{ÛÆTR?gÉ–7õ‡‹qò&vŒ‘‹\ß.5i—J¿1,ÊÃÍ@ ³èÇQJžrøåKØN¸â©B H›»ino±Öºó~yÕ°Œ·—¯ÝÕt{¦öÂÏlx23ÿÀG-M2ñÅ“lÑ‹ Úã?>vìØqãƽúꫧN"{•EvC$×^xaüøñê‚ ,ÿNxä‘GÜ[g̘!Á’(Yfgg3&==µ'žxBuM¬1B PäÎ(<÷ïß?lØ0IÒF<ˆ[€ üE¤ñáúë¯*M¥näž={222Ü"}Šââb¶{÷ncjjj¸'Ûë'c5j”í:tÈG㘑¬ËComäØ‘åìH>Ÿ8q¢ää亊Š +û¤µ–RØ·o_ž @Mø«MxÌ,% 55Ïœ´Ø%´«K |N´ýúõC›„­ÊS,öÒ®¿|ðE± +=T«ƒj€Š~øaòPÍ阥O¢ìP)] -±ƒóågË‘û¥cL¡vs `<>!$o§L™rÓM7mܸ±iü†³v)ðëS,[¶LŒ# +2#WþÏmÀÌ””ÅТ €“°–>'¹ê­äÕæÍ›…ž š"ôôÄBŒl.Y²tYÑ+êõñU‹ ØùoEªÙ-vŒ‰¤ßâûŸ\š»aO\5ØÌv¦öü䜢^#çWÆ…dbÇ9MºMoFš \%I?tÖòX^^ÞìÙ³Áüå„ó­`H–£îÆ&Lãˆåå—_^¾|¹ué +6tïÞ]º6ñðáÃv°kkk´:)6Çf´VĘ­;üä™wîµbeaeccës̹úϳQÒuèÒñÏìoY’‰/Æ„æ²éFéŠç¶9ÈLй¬ëR†a½œ)—b9ÓÒ$à]=üËW å^…@î5ÒmŽN~¸šI×Á”PÂ0 Žß02˜ +¹1$Ã/"­!’º=Œ®e +S¦xHÕÉÉÉ©©©á†ØÔÕ@)a-në{¢ïU®ôu¢¾}ÆH{e. á3†|ö< » ÂfÃ'b-Ø-úMšW»Š1±7})ÒØŒª1n8hOœrp *ìp7 òðס„‘ÁTpô!v¾ÒžLù S¼²"ÜMJJš5kVã×Ó~ A{EE] +;xË·°–ñM×2ÒÛàI¶é$ê¡aÁ8Sa¡°®‘ÁZTØa³á›0x%„ÝlŒ‘x³nºoL^¿g¶þø™uùmcJ˜¸¡ï¤ÍýSW®Š™dâ‚1iii×\sÍܹs}m ž““sçwvèÐaÞ¼yÀ;hc¯^½χUBÂRošx£Ï£)1,Á2ƒÓ¦MkŒEÓ·¦pÞE²¤¤D‡233o¸ázÃÒ.¼!¤|HLLEAº$w¹ž‡JckŒÙºóHÊ”Ü>i…Ÿ-ôôº•…•mc~þËß<0±xдßß7vuK’Ì•À˜6ÕhÕßxã 7Á¸èö;Ú®bÌ÷¬Iòûöí[°`ßÿsa7c>­»ý%ÃäÌ(øìï?]Ðv0&sá–¾iÅÉ3wõ™¸ ÉäWÄR§â‚1éééí۷߶m[°‰fwïÞÝ­[·„„„¢¢"K`ƒ3gÎœiEC2wò­Ï¤M?ü’d*/6·TÅ c‹O­ï Ðq= e vþüùƒ>|ø°CÁ'žwïÞ½gÏžhgúôé ‘< -RRRºvíêUbbâC=ĦñŒéرãðáÃgÏž}×]wuêÔ)))iÕªUÀÃÄšššÑ£Ggddœ:uJÕ²Ù’““—,YÆ`¡víÚuèСsçÎãÆ[·n]Ÿ>}òòòB¤X Dñ3ûßì—yLTY‡ýÃ=ÆqÁM\ÐD¢ˆ  0P¨èˆQÚD„aë(J#ÜM„Ü— "èàh3€  Š¸P‚0 n¨ + +qW\ÒÈâÖ™±d¾ª+¯Ÿ€R¢bsóRyïÖ]ν÷wÎùî²e¼7P~_c”ç +aS·x¿L[ÿ,+Ÿt1•ßÆ”TaŒÂ_m$còµHæ/‚1 §î¦^š1æÇ+„wݲÒTtÀ&àär¥%ê +Œ9x2·Q5©e)-°ý´c4¶©IÆ#ÉBC2ïuÊV1¨b122R(wîÜá \\\Ú¶m›““Ãû¶mÛÀ‰   ÄÄÄÐÐÐ7"×òòr\ÒÁÁ!888!!ìéÖ­$ó0lrr2àÁ,vvv0IHHÈ Aƒ ”J%ÿÞ¿ò±±±¹}û6ŸrŒÉÊÊêÒ¥ ‰ìùóçXèææÖ±cGooo(+%%%-- «¦M›Æ>°|•Jµ{÷î-Z0;ûÙ@ù}MŒI9wËÞç×1j†ù a(ü2Æ|'øýöÿ® I£ðûM̨yj’É+l\’ù‹`LsiƘæòC–úbLI “ÃL\¤aMF XzÆ® >™’u‹çô·{”ç cO^¿ò™G¢­0ÏO}·ëqÜÂõ_‘Ç.©êO2„1Ü _¼xajj:|øðüü|ÀËË«k×®×®]#¡Ã=zô€=„ äzº”••ÝÑQ‰o.\¸°OŸ>ééé•ŒÑ××733ËÎÎ ÂÂÂZ¶l ±¼}ûÔa.hDt—cÌùóç{÷îMMii)Ÿ‘‘‘={öŸÄ =š1c†¡¡¡à+Æqrr{öŒâ +£ýŸ*Í£C!.¡‰:x¡FgÕÑhséÒ%m—‰þД&J2Ÿº­ˆÊ¼¼<ÀãáÇ $í1æwÃØÊæÉø¦[.:c±PùŸê_+Ÿ4Å’ÿ|la¦b©œdTÚûB#a a3''gðàÁÖÖÖ·oßæ Æ\½zóž?N6l5¶¶¶'Nœà ±ñôô¤~âĉS¦Léׯ߀’““+5Cc???1ãÓØÜÜ|òäÉ÷îÝ#ê€1"vbïüÛ©S§ˆˆŒÔYuRù +s:ëÖôŵ3Œàۥ羟GQ›…Œ‰s´ë긼[B2ŸÇÎåúõë...@5yY:÷7oÞ UGGÇY³f‘/¤˜ü²ªH#HYªGH.\˜3gNxx8Ê'°ß¼y¨_Q?3²!bÏáÇÅmNÞEnüË‹Tµ,ÊÝÝUcÿرc÷îÝËò«uǶµk×ò¯‰‰É(MILL”ÏXñ1¢H‰d·k×.úÂBÕ¢tÍuI5ü²`÷v/ ÄNÎHìp͵TÛáš'(_N3Æh_85â°···››ÌÌYPC¢ôððxðà” jÝöOU +o"£·JM ®õ@Ea +â6³/X°Uȳϧ¤^³FËfòÏj•Ú/°fÇÒÒR¼›Ì"wÞIC®®®VVV8àøñãI^uª÷3EKŒù½ìU@Ã(j0ŒúñÏTg„ïå©ž $’ç™,Hæê½–¾ð1Fð†ˆr¼lÚ´©U«V+W®ä¬™EÂœ—¡YnnîöíÛa â'¨ƒ>>>[¶l!¡pd M¯^½jb }E 666&YàŒhIKŒÙ½{7ýJS°WB!LJJrrrbLœZ·­¨Vc`{Ÿ_Ma˜%µ0LSyþ$™Uqy…_žd>1„ˆS§N3¦E‹ätAüR¿|ùr}}}ÈÕ’Oq R‘—TC^}y­ããã³³³1 66•¢va€˜B*Rp“S\\‰Â™EÞ˜¿¤y¥¿ÞhŠ<2éÎ;ŒŒ¡üüü©S§ÚÙÙ!EšIm˜—fÜâââ .**«Úð)"ðë zÞ±cLj#À˜ZRëJé…?:88¤¤¤0;•gÏžÅïðAÑ æÎÄbå¶Õz”ÍS¯è„kôéÓå«ËÊÊ8„„¢%Ô-Î]è\I¯dE:tq@XríÚ5DRY• ªµ”ƒëá_Ü92éÄåãלQšN¹'~¦ÙKÙAÞ±æ ÕÆ‘:ÖlŒ;#cggg!fi]äR˜™™nuñâEȦ^‡cªÐc4 “dªf˜3¶µ2L“y2a°q^Ç5$sùJ¥/|AŒ9qâD¥&4!æ´´´!C†èééñ —J9ƈۜhLî@ÆJ¥Ÿ9rä¸qãhÀ_ü®X±¢gÏžcøe4òÇÑ5hݺõªU«8e*µÁ„D/rÓ¾}ûDðGuŒF g"4h× ÖMoÕJ£bŒ`˜1Mœaä$3z~´Ëª¸EO¾ìFÕ‰1¤Q”ƒ~fÏžZ¨áบ››ÛÛÛO˜0J¡a×L2ΑtÁèºuëÀ‘véN íïÞ½ëè舺@t&BŒO¨ßºuk`` m%í /1~XX½˜Ëñ”ôôt ÈÈÈÀO#""Jº05¨Ã¤ÄÌàà`2‚D)¬zóæÍ` ùˆ‘6wCXíÂK3KKË€€€÷ï?ÜzXc-œ”””ðYPPÀ'lØ°@Á*ø‹¸Á¤8,ï`ÿÑ£GY”Ô§4EäVî#ëׯ_½z5ÁOÖÅ{—.]ÜÝÝcbbp[¶.55•µˆ«Í±cÇ‚‚‚9//Od ÈŠtÀVfÛ¶mí>¦š1¦¾Ñ yZ[[s‘dÃöë×zÔÂq\¾|5z~¤å¢TÛ¥MšaªÿÌñ^ÉÌ¿“.¿{W7É|)Œé9;äAü>ñ0á å32•;w&Ö¡???"bã\¸'Ò¡ŠéÓ§÷íÛ¨ Xýwˆ„d +‚'ÍÚ´i3kÖ,j«±±1|"Ø áበ%0†ñÛ·oOàå)H"Ô Xná¶GÀ<‰È[«V­˜«5ßéPcNeÞ²_üƒ0ŒxÔ$ã›aâíºú “Lƒ&MšÄ1~‘e¥¡‰¢kÖ¬!È‹èA³²²úé§ÿ³_¯±=gyÇã‰âC\bÕ¥D©&UZ3±©lš­ËºDëÖléìVŠvèK‰Eš­n-ÕŽm¥b:»•Š¸-ÂHƒNö"‘uɤÄ$³3ƒé¾æw’ºc™¢›M¿4ÿüz~ç~>ßÏ÷}æÑ’û&,g¼œ0''GÀã^6f̘;w¢8þ|*%-ÝöéÓgÎœ9eee$!S³8î ­‰VÔP¦®²²²çÎ[TTd,·9Úžž8'Ož,õëßWVyïÞ½5kÖÆ7NÀžØuÏü/^¼˜‘‘Aç:4gÇòÃÕ2<c¬_4 +…K—.ÎwîÜ Á¢gq +¥Ä¦™¨l8 [ä«—³gÏš|EE……?zôȆèAçµµµVmÂvÌÒÿ—yÝG¦OŸÎ(ð4âÏÂV€ÚX‡e'ÇŽÛÐР%<ØJˆ´·nÝj›Ûå[Œy%w’åãããf gÇfy c²Ã”<ÈŒ’gÎœIÉ`ž©fff ýO™2EºW(ÄYZZš‹0¦váf†ÅÅŘŸŸämÛ”Óeù Û­[·&''ó]Ym,Y²„ŠÈF uˆ¢.\ÈHiŒ8}âöbGhø…ÙH#;;›ÞHÛSÔÕ«W‰ÀçååAý»wï†i¸`Á‚ÔÔT Ñ-i™³!芄°“ +77—ØlŽÑ‹ +Dn!$ê×pMMM‚«gϞ怽íh +üGŽi&6ÄÖ©i½m£ï•ž—c †)ÜQŸòþÁ †aÂ_Á¹ñÔ¿»("™g?@2‚1 ´K—.¨£W¯^˜aøðátÈú]‹¿+V¬èÝ»7ŒaMBãGуüÝÑNÀ`\NT‹‹‹£.øZ__ßa W"¦„ ñ 2D°èœ{6wÕDh¨Ì9Yep3×=hÄ!% ‹%f1‡tBö#ÊòKçHL~iiiù¯&ùÏÿcÎG ³¤ó0LøC2óOA2ëÜøG‡‘L{0†q*EìT!œœÃC%¬ÏW9BÔÔÔ€j UF;Ò+÷ãÀR- µFÌ3uêÔ={öiqi•¥ V©>“Þ<Ä©šÂ‰Ð‹ip*hÄ…@ j³JII‘ µ•† F¢7nÜHJJ’D¼ËC‡½yófL·ZÉD\—¤1ŒIš†jB€1̹GvĈÂùïß¿?!!!Ä©¸æù`ÃT~®]»fòbÐcì Ú±j·WZ#o·Q­ÑåB?¦}ÿþ})CC/öaÔ¨QåååâÑ„eO½9#˜ƒ‰P£ÌŽžX‹tÛµíÚªcnÏ'…·óªîc¸(®æÀœVòu:„ÍE)–lß¾µˆ 9båÊ•ò²“UN™ôCºà»Ã’Š¨aàcÄŽTN6’> Ŏ̹{?tè!|%fÖÜBœ`ÿþýH6TA®:§y’ ð`ïûöíæMNT‡L´:vì˜}*  ëB0À°€21¨#Ф'A$:àS÷îÝ] ÌM9ꨪªb×rÍšÞÖ­[g W •e+ZÕ³wálNÆxŸ[=‡ÚX‹˲ ºsL&c‡9=¿̼c>ôÃŒ‰æ'ˆaÂ_Á¹´åõï-*¯üøÓož¼ŒdÞcœ‘Sƒ¾Üž{‹…ëׯS«A&±j’§…³j2%R¤Ïp¸Á„Iš¨œšÓ׉ÉÒ'¿‚Ž´(YUŸ4 Cxñ• INebÀVä݈†PBÆ_DÑÝ)êêêÌçqäç<™†»víJ·çµ±ù{O‡c̳o¿ýó¹¿þô—Ç.íl þ¬(=ÿtʪEëÿxýoÿtzóMkÆL˜03P#ÆÒ.€Jkkk•\ºtÉQÊõ¼+œ£TËßvìØAÕ²?ë{=lŸŠ)±ª÷îÝ«20`×pÚ»džž2¾ÕQ&PM[‰`Û¶mÊMI·Œ3ëJ"Þ„ä“brb–e°†T½eË^î V¤ —ÖdÑ¢Ek×®•žš¸qÈ['aác&Nœˆ"N:Å!…p-+µ]"N^())1Ç6¢å³Ü$‘™p c4×£n0ïqïÖÈ[š››KKKTbb¢B!yþüyYÀÒT°™ëׯ7Ogd I'ä)ÃÙ";);XòàÁƒ¥!å1ÂB=¿Å˜Á˜AƒÙaûlóóòòäh`Nž<‰o%î]»vÉû0ÕÒifddL›6m÷îÝ´GáÊUÆ3 +GWZ¸+4HÅ»ë*ìÔœ¨ÚæCÃo:EÁÒ1¿+€:†RQ©¦9qâ%¨ìX Ã)¯ZµÊ´Éá¬^½䔕•!+Ú0½p_ìdéjãAQ¸íúOEæ&Fúöík½Þ…›ùCeÄÐ:±jÿ¢qQIùª [3iü„9ȘÞÉ®Ø@ïArÍS&Œç57m9ÈöŠ‹Ý5Úÿ¼cZY¸ýãä˜ðagd˜ðWpnüŸ¤½_v¸þÓ'O_H2oŽ1Á垶yHHÉ÷|†e ·Pèk¨£ÐKl\Gl> +¿ŽžPM¡!Ô M<ákø ææc¬ÐЯw%±™„n¿Šžð/°á¥ €7¡°CžǘÏnÞŸ_X9:»ªS2LøË(8ŸžfÔœýksüÞçß|ÓÚ‰1‡æ¢xÓ¦MË£‡Á²¯€1j²w×.u41ì+`Œì¼qãF2ó ÆÈ×κ-ÆÈÈ©©©J¼Ë³Ø€ëz'KÀÏicÃ9ù¶~¤†¶“›› é½+q+ôUZgÚ#FŒ0 Öäc§gwRéCe3.êèÁSyëbŒUÈ5F÷à ­|iô@8kÁ6Æuk?~<%[ sž5kÖócsBç¸.`Œ&Mš$ÕBÄÉ“' 1hÄÕµRÒáJ cÀÐ’ÑL#Ü^-!`Œ¡væÊ•+ú{o1¦µã0ÆYÊÊJ’#~¿vüøq#5’ßFþtE%É€i•Ú=*5;îÙ³gëÄÙ¹]dP¾ô­Û¬¬¬Ñ£G“PL¢†ÆqqqF×!êׯXE;NVD‹uuË?µ€V +f + ý‹šÀ9…PѤ8rú~7oÞL6999Ó¶:ò&:¤¥††ïVmn&Àð-S5ï&©7CS,J×¹ +ð` $<:×ê° !ß)Ü䃘CL™žÊ .,vÆLÄ>ÜÂZhêù´ØžçEsûî£Å¿®NÊ®œ˜¦³bŒtðãOŽúYiIÅé/ÿõÍ‹báÍ1浟/¢§ýåí¯ÐÎÑà ‘\¸páwÞÉÌÌ 6þ†=Çžǘ¯¾~²¯ú/ï-®x÷ꤺ=g]©?¯›´ü÷Ÿœùì%øÝþç1†•¡é@å 6$%%1pö+o8p %%…j+Sƒ—>"»r«†pÂÍ‹IŒ‘a™­³¦(râ„ú,//׉ ¸…oçç犖¸œLíݸî€%ä_WW'<óòò˜aÀ†Ù¿-¡¨ººZ¹|ù2‹Ž!½­ER-zCzèÒ¥‹ù=Æócr`¤––„Ûâ‘#G¸.3Çr¡°¨¨Èc˜˜ú3fÌ°!2ˆôäEvóÕÖ™!ì‘€/^¬s©GÿRƒáì’ô碪²dcU¶R[çÞª[ƒJ ¬ÞVܾ}ÛÐ&ððáC› ßÙö€1àí-Æ„§C0fàÀr±èıÆÇÇ÷îÝÛþ;&ŸªªªäÀí„¡¾CY¶lI($_Í„žÓÒÒš››‹ó‚ +¥¥¥´GTNÐuhâăPKJJp{MMÍÙèq_ xȤ¾»§Ã°DØØب²áüB,Ò"ÂââbðO *ß‹ Sh+¦à·Ø$$ÿ!«©©Ioú$Hs¶ì$ ƈ¨&œ±Ó¼yóø¶¥Y mQ™\ Oó°íì"`ŒQ\sp‹N´ ªk •ÍówëÖ{x·ü×8©aÌÓ§ÏnüýÞÂu%/¬NÿÕéïÌóÿoàú1LrvÅ–ßý›ýrë‰*Ëð0D¢¾ûÊ«££rd4Û˜% ^J@¤;^âôƒNœ€/ÒNÔ2i +P¤D ±¥Є&ØƉ‚6`1Ú$£pæã,8žTq©*ª€¦k¥R9gŸ½×^{ïuùvÍûþd€©ba1f‰½µµÎ'â„^ÔìuŒ;¯ÿ})05…'CšcÉc˜u)eߌU™ÒiÝ’1¦²²’û#EŸÎT@ŠìÚµkŸ?Î+ Š ÆAF£‘O$âIJJ"s’ð÷îÝKNŒáú¶jÕ*Κû#E{"J¸—‘ëâââÈÕ$vª0Å‚ÌŸ›› ºàx’A †1AAAà áIO! žoÞ¼ Ÿ€1t@'u +"Ár夈HüÒÍì$s>÷S².iœÌ¿k×.’¹ìƒ`ÌæÍ›™L:xðà¾}ûÀ3f'us¥]²d ULtÂcäuð€öÛ+:é@¥`‡¹ž:uŠÝ LMMEù¹sçØ1ð†vj"SHác÷Èêìp‚y0+"RbccùD°Ð@2›Íì$e‘cž>}Ê6²É~ŒQ¼1”ohœRÎ>sîÔÊ€€.tì6>€×EFF8ÐòÙ³gÙ[vøâÅ‹P +`À(øÒ¥KX‚£âöà('¾}ûö+V8tNN‡UXXˆŸ½a¼8üÖ­[³²²8tŽ‡EàÆâáDDII ØúìÙ3œŠf::lÙ²b¡šƒÍ€1@ “vvvBD¸qE¾ÂöXŽwÑ‚ƒäÐ/Õ0fåÊ•L'ÃÔyyy<³Xœd‚îXµÜDH8'Ì3s±-duž¹„……*Üz J «#±œ¨Ä0–O–Šggg¶ÚuÃu™ +cDÚ_öî9Q´f¯iãÑ‹énKu O¯ùÛî+?þT=hÿ4},ø1fH¥}"Ëëj}1ÈçÏLcX²1Ô`^<~«2LpJY¬Áxçá¯Ó€·»2=ÆyHk\É{t Ór%$õÁ$v)Ö$Ž'©ªª:}ú4 –äÉ“F²=i–vrÜ`×LR—¹Á544È•Z $óíªðJ'­sÏ¥?ÊÏŸ?ϵ”þ$:ÔRåA)>ѹ´´Gâ™´yæ̾‚^PŠÅbÁ ’9†6±ŸEÑ“‡%T"¬¥¤Aq'Ï“ŠµªÇ\Uã¤*'Nœ°Z­Rk(CÔ Ê‹â•*’Q4)FdT²:ûFçüü|ÑóâÅ ËÌÌä~ÊîQ à1ìdÛ±=¤Úb3-$ª =éßÓÓÃ36° (aÓ(%ÌB¼°uA2ª Ù‰6›íòåËuuu“f*?Ƹ%+TÉ¡?yò‡ºÀgð¼…óÑyq!vŽ€ºO#Ž;±É@=kkk9Ú9\<œc>ñäšš¬Â¶øøxz_8*³È¼¸dÂœÚñrܘàÏ¢œLOO§…ÐknnV…k¯†yx#ÑyT1›Îxsqû@ ù0³p]eTWW‘Âê°v¦àO&ŠÑL$²–´´4¨Œáx¹ˆÀ„IH dÓˆM6g,!œöའ—¶´´k;vìÈ!ôÃK°=ká«3O/Óc Òþ[ïžãEk’ÉÀ0éÕ«®üX`ø0Ã(~ŒQEj»Þ5£øcÏ_F +ŠÓ!sÌ"ð[•aÖ%—}ÃÔ{“a”™0+€þ‡ÔDãYœÁáÂR‹i‘œ<¤20¢Wå<JcÅ+PÎ+zÄñd¬ÖßáÕA¿`Æ´µµ¶×Oò³†1¢–QÔ &RICŒ§ éýU¯÷"Ækök=K ÓY¶H¿X!že.^e¬6ŠI¥¿|Ed:Zô«cK(³>égÑžµþâÇ„£Ñ¼ŽsáYKs!Ž/ÒnyR…9hÈSNPkä•vQÂ@qƒ^Uh‘ÓÔ{ƒ%Z#^ŠrþÅUhG3-â{C‘È+š1OsHgH‹ ¤],”ÕiëÕžõ~%ʵÊBøׇ§tÖf¡³¶ÚÖ¡\¢vðFöG3Õ-™c”q’ù’‰úó“ -< †1Â0ƒö™FñcŒ/Åwƒ|'™PƒYõ[뼻߬&¥,ÖpÕü Ý»»¤¸€1Rpõ%[K¹Ÿ$AiVë¯ï }rh§FëÕŠ=Q8\Ó´W{…*.†;wî\¿~ý¶mÛ‚ƒƒY ÍfÓ[%é©Í2)«Óç“Nô›à ¤E¬’‰ô‹Õ:Hn×o‚,|ÒmœJ‰Þ=é9ï’^üã8;¡Ãn‹¿éÏHsBçc’½ëþ¡Šƒg:Ï;¤óOåÓL'šò:ø’ƒÃOª\8UŠÐ¢Ìy-zó&>ÅŒQT’I<^4-ÉXÕd»`~S1L: s%÷§êAû.Æ‚c|'>Åddd´ÀÔ–l 1܉™ÔoYi_8?gÖŠQfmòÃTú€a0æÏ(äC\«£££µµµ««‹«Ÿs¥ø«‰cü²(ÅEŒQÆH¦/ñøÏ$ã˜l£3ë#Ô†¾?Ï¿ôû‡ïGeÔmʪwf˜°´êÕ»¯äX\geáa Ù˜Š¿8r²¯1½PÔžl 5˜ý6*£vá»ÁÌÁîÌû/<í^tæg†YÃ2Þö Ã(‹c>Mˆóeð¯)~ŒñË¢×1iÙ»çx‘LŒ¾"dÖ‡*"öŤ–ðÛ4¿˜ÔëÑSØþâÈô»úš¥2Œeu‚1÷‚epÈ †Q¼‡1v»}xxm³$Ì°ÙlÜ.=Ö@†'®±„‡ÙX2{™ŒQT’)(j +O1†Ì:¿µF­I6E%|›aü6ãêüþ¶¦] +Kº¸áÀM|õ+ÃdY×&—źZé3†Q)ÆøÅYüã—E)naŒ2A2O2mÔHæ˜ucF]Ä~Ó÷ÿ¬(®j+¾Ûfªš·ßõ{Ïÿ}½)þSÈ>}9hØZ½†)p›aïa ôÒÝÝÝÙÙIáöŒä‚YQQ‘`µZ¹cz¦ZZZ:::>|ø0¿$37#R`jŠH1†~%k䑺ȃ%—Ë~t|:µ+Ò?øñd¾%8¥Lð#£Ç¦4îѧ £ÌÆüWßéŸ!¨ÂuÀEñcŒ_f/ ÐÛÝŤý·>HfM’)ê胱”{Ìq¸6ÊPr­²Õ§>颼úþ_UëRÊ7©£2ŒEe˜{ƒv·FñÆ *'''..®¹¹Ù³°ú¨J^^^``àµkרû(a mmmAAA‰‰‰===ÃÃÃ(ñ–Ì%Æ(c$Óž¬‘Lƒ`Ì•ò'¾ž×°:u~c4†‰…aê|Ë0ŠW1wÒÔŽŒŒè]êžMøÌHˆ¹Þïe÷®<“4´} ÇÎxã`Ò9¨~Œñ©p‚DóŽŽŽ:8ÿB»ÝŽb˜ÞB·¼ŽÎ ñéeÇ3ñc”1’éýJ2Ù ãs»ÅGÞè–¼ë·gŸǘ¯ sÁ28ä Ã(^ŘݻwX,¼hHMì’3Q‹{LšëäÕ’›ŸŸ¿lÙ²ÂÂBqB‡ê -úT,i俳³3%%%77÷íÛ·¬ŽþIxR ØàV†wEæc”Qå‚©)ü;!™qŒ¹\ö Çáó©g’ß?žÌؘì†è¬&.õêí>gÅ«óêÕ+Ü»´´´¼¼¼¶¶Öf³¡wÂÓnܸA˼Êé…TïbO‰ÇGÅÇÇwwwk×Ú¡šöööÊÊJ–|ëÖ­†††wïÞM¿·vUfkýLâÇß Î000À Ñl6sè555]]] Šd°{ëÇ+TÁB“üïbQñqÑÇÚòêc{ÝÏ0i9A2™õGêÀ˜ÿ, Œéû}cþ‘Ý8Î0÷Ö¸ö»Ò¸Cÿg¿îc«,Ï8Ž'šbĨ1* |« 0ËK,ïQ*¢ ,°bÁU*V² 5ƒMYEÚ‚0ªEˆ‘„q¨-B[«SÁPF²ÂP\â68ûxn9kÀù‡=øƒû“çÜÏýö<Ïïú]ßkù†3Â0‘8aLPNAAqvŒ¶Ûo¿ý‘Gá{^ïÞ½{333gÏžMQ†]ÅÔëq€Xˆ5î ,ôíÉz0t=.ô„¬Ó¸Øta|lbX­ñ¦BI¸½óÎ;ååå{F†œö&¿qãÆÖ­[þù籄eMÑš••u饗vîܹC‡½zõš>}ú¾}ûBì„£šÈÇú"K8ïڵ˷»èüw´ýlió«ÛyŒI\óM?ýôÓáÇ'%% 0 GÞsuuu¨¿¶ d)<+**ŽE[˜Ë2±YaÇpIA6,Dq´p7¹áIÃÃ'úµÇí×aŒV÷ÅO$ÓkÂÖþYkÎ)Œé‘¹.uÂV “[´¥) ‰7Æ07ãZúž5knçœÏ>ûìˆ#f̘Áʾ;Ùh@—““ãÖÃ?üòË/ciˆaŒo'prssËÊÊ‚CúUZmÓ¦MÁÕ?ùä„0jÔ¨ôôô¹sçÂoÃ9yyy¯¿þ:»^ºt©ñ¡ÿÛ¨’­©GMášt9ž3üã?¾hÑ"<+<›ÞÎ<ÆDþG2Ë»g®ïû»5çÆä¾Ý}lyÊصæ­3Å0‘8aL°,jLKK;pà€Ô¼nݺþýûósë³nº"³ *JÞ¹sg]]œÖGW¤Ëöi2ŒêëëQPmm­‘„NÌ ³.ÚlÛú555n OaGc°SŒlúÙgŸ}øá‡f +UƒžÆ› þ322RSSÁÉ×_mMéÒWVV«ü:¶SYP,·iÓ¦1Ƹð˜cÇŽ?~¼éNR\\Ü®]»1cƘ宽öìÙc_g ÅÑŽ s±é$@ȦUUUGIæ<Æ$®Ù‚ºîºë®™3gúj¯½öZûöíÉ@¿¿¤å»;O‰ „À$AlRL1%Ð6ÁÐ…f®aÖ1K(ÂÄ”P´ê4%%aƒM9…dŽ?^XXØ·o_Þný7ÞxCxvëÖö„±NÒÀZoG2îÂcPÑüu—à…*'oˆ6çÔ#úBÜ9j¢_~S0&òɬê4reßqe¥ç ÆLÉßô›Q¯výJîÂÍMd˜HÂ0†˜$V´¦¤¤0ÏæÍ›Ó!ŽÝ¶mÛ­·Þzíµ×8°{÷î7ÞxcII åbÀ‹lÞ¼Ù‚ÃuØB2jÖ¬™PrMZȹU«V#GŽt!¡ØZÊfãmÛ¶Õ)×`§ .¸@ÐÉY$??ÿ¢‹.ûzàP§Nx,ðöe „/Ì>+£8~¢¸ì/=Ç,é>fÙ¹ƒ1Óÿ´¥ýo§e½²á 2L$®ó /pò}ûöñdÞËoºé¦‚‚¦ê9ðîÝ»§M›ž~úi¶ã»oݺuòäÉ>ú(M¾øâ‹ÈÁIàýÔ©S%Ò}ðÁIT"X¿~ý¤I“PýСC­@ÿ_~ù¥¹D‹”Š,ÝjT*(<[Ÿ‘Jß8\§Õü®]»VÐxS‡ß²e ©ÃÛ­ZµÊ Æçž{ÎxÃD_` hÎœ9=ôPVVÖSO=uÍ5×pìS0Æx³B¡ê «Aį3xÊ~kÓ‰'b-Aê=ˆ¬Þ½{ „?þø£>rfw/3^$sc×Æ 4ˆmíU?ñÄwÜqG¨,X@ÿ<ð€0’Œ}t‚4F%˜$”œè—rô/Y²–PÀô&L°ŽLD6®çÍ›H“Ìš5KI0ÙÙÙÛ·o÷¼¢Æ$`|h0†Îï¼óÎðõ/ÉAR€ÈâÃö¢gA!ÅØš9{w˜gžyF¨ä¶u ñòòr·233Ø"àÜs©Ý:Î ˆ ‹W²ø…ÖDŒ‰üH2ߤg—vI/Z±~W<%økÛ¡†ï~ÿÇõí†æ½}ähS&’0ŒáN;w†.,÷Ò}^xá…øÄŽD5xðà«®ºŠíD¢ˆRVV¶fÍhŒ1–2†ò#'1††[´h!›¸6å’K.ÉËË “¢ãí¤¤¤Ñ£GɦeË–E%«ß?ûó#Æ|?iö›ý2Šßª8£ IÆ„´Ni1bƒeÑÇþùçÑ”)SÐ{EEÅÊ•+qoä{\3ÃäädS‡ÞÿýéééLÞ–‘جB²w´AbðC®^½ZiiqÑ +fl¤F y`ÂY«RÚÂÄåË—7ÞÔ-’––æšu[®³b©GÒV¶p`Ê—’n¾ùf³$,»ì²Ë ÔÏbŒ7àé„6wuª¹sç:‰c”––nØ°¡gÏžâN¾(..¾á†`˜çrÚ+Väääxpª˜—^zI*ŒK.81‰kcî¹çþ¶4ïzéÒ¥­[·V¢B‹;vÐ&!㨗_~9ÇÛÁÄC–qA`1æꫯ>c KÀw9¼ÈâÉN®Ç¯8ÿ-·ÜBíxžëbn©¨TUU]yå•Êý$qñÅ+9a6Ú˜§Y³f“&MŠ—2Ï"ÆhÿúÏñeå•«7×@š3¼õéíÐác…¥;Ön«=ó['cè–À˜3’A £Fò•qrÀê2 rR·~kkkåwö;þ|j$ËeË–¹µxñbÆøÁ¨.Ý N%ù$çTQR¯ÜÁÊÄTP` +%ã=Wgþæ¶Ûn£a¹n×®]¯Š1p½¾¾ÞV¦®V­Zá[ÐK¨iS×±MEÛéóØcE~c¨ÎEË–-¯¿þz…çÎ;I—ÍÆ0«Ó!¥µhÑ‚î2yø´qãFÃԶ͛75£†Û $/8a,4šØÎ.Æ„vðÐÑç€pýó‡ß=+['c4îÊÕ¥’cìÝtÈ„|NNŽ Nüï½÷Þ´iÓà ?LJJ‚1Vã®J<ÉWðÕ¯¾ú +±pNY ¸¸Ø-¥bCC@jÛ¶í»ï¾Ë™ýeÅ:tÀÞO>ùdff¦ø’¸9ª’†IݲÖSŸ²© S˜ }ºà0¢J¥hY¢¹¹91|饗ԂÏ>ûL,s¬5Ç6&KLÝAŒWúã— c:°Uc¦NzõêÕÀ cd-êýñDZŠN01TGÉE#R`ŒœÙúcŒwïÞ=0Æ|Âûþûïí Š^yåY׉‹îÀ`¯¬(%R±*#£Ž3FSpûöm.Yê¹çž“ü‰ÿMg¡µlËw(´,`L²òbŒ¤½!;|ø°>”lñæ›oÒsœ²_B +:ö E„|æÌü<~üxÍ,h1(åÒö‚ P§¤ß¿åÌ ìBÌšVµ^ì¸V „$hjj’ÌmŠ:Œ744h6?üðC ¯Þ¹sçÆE›®\¹²5‡1ÖB pÄ‚Ï"TÑa(Ž$sªªªlô[ŒQ›ò_X%4hPcc£O!ê”Õìe_áoe©_1Ùƒ^|ÿþý*‹Ì“0æ ¬1†–ƒ$»SHK.'+î‚Â7x=z´#€þºë/ä¦1Z\Ø'N``çn®«´ÐË®]»”lìQWW3nܸhÄuj×;wî$oÚ.“ÁIx¨x+x“¨qnÙÚ‹ ,å©ÁƒÏž=Û"5 ³ÝîÝ»!“¼A®ðIL¾©k1HÕ c2bí1&ËlfÒ*1;#õ…‰¹cHî…^ ×æøݸqã³Ï>ËáüH˜XÆ$ð²n!Æ,HfïÞ½½{÷Ö'ÚȦÔصkWŒQôA,:*‹üÆdÁʈ1ŽR•ß±c'T “µÓŒÁŽ<©u%~l£è;öÝwß5gÆ Ò©l¬•sxXdË–-ð›J­©îÓð矾}ûv)—~.^¼ˆäÅçý5§_¿~‘EírèÐ!yØ]awIU 4æL>/Ü4BÆ/ÿëëëyå³(1|øå—_¬Æm¿Ü¨®®FJ¤i`»uëvåÊ•"Œé#GŽ´»i"° +ë¯^½Z 9r„oÞÅúž†ÊÓ;ï¼cÐ +ªÏĉmªÀyóæ%Œy2kgŒ9}ú4ìØ…ÛqcÓ¦MÆA¸qaøꫯ=˜0`ä#£Fúè£à4ù9 '.7â"¥Ç:7oÞü{Î8]̬Y³¨‘<<³f͉r»ƒ`ØÌBŒMC† Ì +’”,ŽÄzªZT@"6ÉYQ‹&—Ÿï½÷O¤ý¥K—:ÔúœùŸ|ò D‡Ü澩kiB„U¥?~˜’ÖnsìØ1¹©Å^úÇ=z@ YŽ$€.µ›Vˆ1ºÔáÇ÷éÓ‘ŸÉæ3Ï< ,<èq§LÏVCÔÊ öÎcŒ­( +²±ÐèÕ«×É“'EaóPJïÛ·/‡õ^¤úé'a5«í–0& V.Œ‘T%Ï#FL˜0Ÿ¨ÅXVsçZê£v¡ôþûïCˆ·Þz‹>i`ݺuZ¼šš‰Hq—áM“6_{í5½žú‡öìÙ#÷Qúg̘a}YZÂä< +’Šé‡nA‹îÕ³æ|ðÁ6•ÿ?NÉV6"]O›6íÀ’yá¦^_-§L™b\íÓA€©þí·ß®­­/Äo ÕjÒ¤I¦!óíÚµk&Çw0ªÉöâWÑÁ9¾ƒx¼uë–*ÆO»Ož}:þÏ¿» ÒžHƒ˜)ÓF"èAÎÌTŒŒÔÕÕQ»T¿JnÁ‹¨>ôR&TUU!Έ)^‰DAoj‚2!v€Mk˜ X1Fúš¬ÖƼøâ‹Ò”Þ-IÓµk×9sæHÅtµoß¾þýû÷ìÙS–ÀC€ˆÜ¥Kõ‚,ÉX–{þùç-EØ8ÆXDh mæÀ5wª† ©-Li`åa`/ùÛš½{÷æ›î5íbe4õÍ7ßx +&‘±d®ˆHàŠB>i·ÑÆdÁÊ‚1 Æ\¿~ýÈ‘#ª¿ŠOf$êX;eý²BW”/±ëCÏŸ?/¸hI–öIãdŒ-’®ŒÞ¹G±Úº™3gJ°Q”ùixõêÕVV”%üP,EYSrÞ¶m›]¬`w.éÆË^¸pACª‡ÕœnÊ[žð–WêÅ™3g"fq…u¶nÝ*ÏÛ+Ö—¢el½ƒa¿q»ä?‚A~øá°ÄßÄ^"Ú][ØK…‰¾†­#ܼ¢ûî»ï¼»SùðóÏ?7559ß'¿~[,aLåŒüˆÐ‡%¹Â2áÜI‹xœlHÔ)¸¦Ÿõë×ë.Pøáljœ*¸Z°L{åÊ•S§N566@èÇñ©&[“<Œ`'‹Û‘tɉ¤=îšÌhO;wÆÞ&Kb–Øé¶%Ç6!-k×®u׃ÉO}.¤9Ÿ3 ·o߆:Z‰øÎäå—_qÞ+Þ”·„íu| ÎTúã'Œ)iåÂë8n€A-®)AV;îܹãÐ)œðЯãÑ’ ‘«/èW›éPÑ¢E‹Îž=Ò•éEc4Ž„?ýôSj·…(Æêz^TŒ™=Úò¸[”Ø9iÙÖ”L®³gÏŽÝCØnñ€µ´Ê’©®®–]µ·eIª- c²aå˜8PùPVñK<…ÅÝùF*ö«¬Kݑߤq +4ßàÃœqI¯7lØ0m :þ|-¤Ôª->|8Ηi9 ¹IÚ"¶³BÞ{yë[PÒ¬¶ kéü?9ËoÊ+ž˜lÁ¼oñ7¼µfþuÌ7hľ…ãy3á¿9s7ÞºðV¬ûöøn1?^$üÿWΊo‹%Œ©¨…œi)̵Œ–³pÄùò0NÜ_Y]¯Jðð~Íš5^$d–—"©˜ï©èbܯ¿Í9 Õ…¢bSºÊ;2³ òê-ô?”w£ÒE0ÆŽ!òÈÒ*‘¨™è{Ï çνÃù"$fÌù7cÐø¹û÷ï \°`AttôìÙ³ƒƒƒçÏŸŸ––†§„y¢OÆ7kÖ¬¸¸8Œœø’bÿ±cÇ1(l»<ÚÛÛ°óÈ‘#6› ×GÒÓÓqðgË–-PXXˆÈ!Ÿ3F ˜1ƒ3†„ÄŒ‘9\.É-½öB2&44´²²RžþÅÄòóóQ [·n•ç)gLVV¶1M‚’’’iÓ¦­Y³¦±±OåŒIKKÃÛÚ=’’’† võêUT3fp’3&''yÜEâµ¾víÚîÝ»UÆäååaÛJâÂõEŸãÆäÓ¦³ýõüãÂò¶î×+‡˜1€OCBBâããm6›û{#G‚F£Y¹råœ9s***Ü/3æðáá­­-;;;,,lÙ²eXÈP>>5ÓÛgÌ ƒ½æ±Ñbu¼‡[`ðÂÕW©T'OžDÇv¸ðu+((رcGYY™¿o:_@Æ`iËÌÌ4–’óçÏc•,//÷÷M÷*§Kr8}ôxÒÖµíHuüooîÉxp¥BÛmwöNC™ãp8jkk£¢¢bcc[[[ݯˬJ˜üÆ'L˜pýúuì?{öì”)S‚ƒƒ#""ÂÂkjjð¶ìãS3õ9cp'»n¨ùiÕOÕiõÝ>»1úþpIÒûÿN¼---¸ ´ÈÝÙ$®¹sçâ[¿|ùòªª*ßt¾ÐÜÜœ0uêTœû,®/nìU«Va-ó÷M÷ªÓ_5Ÿ)zVPÞö›ï÷Qp«-»¨yó»±»K–\¶õ/÷Jïw`锧¡ÌŒq:ÕÕÕ‘‘‘qqqjµÚýºŒÁ`½^¿víÚI“&cnnîĉããã“““7lØ0bĬ_xœ£Ï«w†oÌBqõ‹]Çï¸ïÖ’Ý%¿H½—÷¯\²÷}W¼ÕãB™ºø›FK¾ý +÷îüéZWW÷-‰ ×·¾¾õàûîï›Îpcã—vSSS‰®±±Q£Ñôô(î7ðùÒç ­S—Ãúg¦ŸU´ÿvÆß›ðC»lÎÞi(3c0±ÒÒÒ1cÆ R‡ûuƒkŠßZ111QQQh·'cRSSF#úA¥R7.33Ól6[,Ÿš©o#IîgZkZ^®NÜî’_ÿ­¦YÛå›»¢ïc—£¨BÛ¤¶øâ‹ADDÁå;šýÕÐa´_ºÙVßl²÷¸^9¤œŒ©ªªÂZ=è”Ð-ÉÉÉVú—súôilcž6› C‡ݵkjÃäŒIKKÃQü©‚È ‹‹{úô)NÓǧfê[ÆÈlvWC«9%»þ`ö#½EqÉ ×îµ#€ý= ""RŠÂÛMç-mýÈ%¹N鵇”1Û¶mCÆܽ{{:;;5MVVV```tttMM\,rÆœ:uÊårét:½^ùòå¹sç¢a?rÆàtÌf³Õ4räHŒÄ›`§Ï®ï#³Ú:“ÝfwöóåïȘÇÏ™1DDô?¾Ì˜ „ŒÙ¹sç|°gÏ,÷*•jåÊ•h˜ØØØ¢¢"¬þ†y?~³yóæôôô½{÷®_¿>$$dÆŒÙÙÙ‹3GÆäääŒ5*55Å‚=xóK—.?>11i„§>>»·Í%cÆ‘7fŒ¼Ðwvvž8qMòÈÈÈeË–¥¤¤sæÌ%K– fª««‘†1ظxñâ¼yó222ä°N·zõꘘ˜ÆÆF¹ˆ||vÌ""3¦—^¯ooooóÐh4˜‰Ñh´Z­rÃÈ Æà¨Z­Æ¿ØÆLXn˜Þ1x-Þ­wÞ!¡Õjñ†>=%f ‰ŠÓ )b{Éêá'ÿo fëÝ9&O´|ÿµòà÷~¯ÃŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q1c„ÇŒ!""Q)*c°ÔbÁµZ­fê?øϨ¨(|¶ÉÉɨ_êwÂŒ!""o +ÉI’ZZZJJJ®\¹Räÿ°}õåSzø$ñÙ¶¶¶øû:¿+f ySHÆõ3†ˆˆ¼)6cšÚº2 Ÿ~öyƒµÛé﹈Àîpå·~þuk»Þîï¹üxÌ""ò¦´Œq8]W+Û?9Y÷³?W¬ùý­ƒÙ\’äïI‰ÀérQܺî“ÛIŸVå\y¦ÖÙü=£ƒCDDÞ”–1h–[µ:¬¶Ñ¿*^û‡rLÏß3Ç7 †÷ÝZ²«dõïn¥åýÇÚíô÷ŒÞ3†ˆˆ¼)-c ÓÔƒEö£ýå??T©î°ù{:âè0Ú7üéöòË~“ñ YcE18Ì""ò¦´Œ1w9°TÕ?3—Þï8þEÃ@\jËdu$g}{úŸÍ_ÝÑ4©d 0cˆˆÈ›¢2Æbu^«lÐh”ã¥Ëæðó„Äâr¹_ì=N©Ãh¿pCmÏè­1cˆˆÈ›r2¦«ÛùuU{Õ¿ N—ä﹈ï©ÆúeÙs›Ýéf ySHÆXí®Òû•ô=—¿ç2(H’ûA£áj¥ÖáHÑÈŒ!""o~̬¤.é»5´»Çu³Vw§®³Ç1–ÔÎjwÞ¨ù.å§ÿe¿ÜŸšØ¯þÝé­3Våy —— 0È `ÐG!0"j® 2Z ƒe*”zA„ðHHä¸á¡äA !$äØsI{'õW’ìç3;;;›ÍîùžóÝïùì¡ðÔAÄ5fYiì©T›fñ¼vèíÈ !ag6t–‘jUe”,èà€èpö5Aq‡@ùqpíOù¯þZ;Û3ª²ÚÐaˆá'¹!¿f:*äZÍ´ÓIt4{ƒ ‚¸C Æpþ>óÇìÁ“ÙüòæÅí!1svLöšŽ¥Óù¿½ð’qO¢Õ[‰ŽhPcAwˆÒù¦)®Ptê"ŸÊ½xbnEïûõ–¹òÇŸ’oŽû1ùñE"ÉâÑíj ‚ âQ3ôvã/Õ“÷þ½86¯µØ¾ù…5µ©ú™ d²o|èXö5Aq‡(Y×ÚŒ´¡ÒšÉo¨1‚ ˆ;ÞÖ§Ói2™¶··766Ô»h4£ÑhµZ¼÷PijX­V(ÙÖÖ”ÏUGNeµÛí>Ž5AqÇã nvvvxx¸³³³©©©ººº´´”Ëåqv¹yóæÝ»wËËËëêêZZZúúúÄbñòò2ôJ†¹\.‘HÛÚÚ?~\QQQVVVRRå»~ý:ìoß¾ g*++ÚÛÛÁää¤J¥òv`¨1‚ ˆ;žÒ©TÚÕÕfm.###..ŽB¡Òh4ƒqíÚµâââÿ#777++‹J¥úûûGDD$''3™Ì;wî€ö…BtCäS Ãøøxkk+È ‹ÅJII‰‰‰  KOO‡±ÙlPP(”²  Îœ?>444(((66Ž¯^½ +ÿ«™˜˜0™LÞ5Aq瀣T*Á^JKK333¡£9s&//¯±±qlll}}Ýáp8N»Ýn³Ù¬nØwŸ ÙÉd²ªªª´´4Ðð衵µµ"‘ÈK­ùˆééiH‡Î öJÉãñ¦¦¦ôz=\ગ{áØu~ÝÚÚzûöm[[Ntt4LƒÔÔÔ¢¢¢––[φŠƒ BrTZ³ÕæðÙã¾Yc ÷ÕÕÕåææFEEÅÇǃxÌÍÍAw9±X,F£Ñ`0@Üþ2ú]vvv@W 3Â=áäàà`aaaXXXRR4ÖöövFãéA#?Å‚ls¹Üôôôðð𜜜ŽŽ…BáúÉl6»ŠèªÔ—*{¸®„ë]V³²²òôéS:E¼páBYYÙè訧bFA!-2ùοúß—?]Ôm>{(ï•Rñ+5æõë× EEE‰Äáp@ãƒ^öuoÙhˆÐ A„àøùóç®VxéÒ¥¦¦&µZí¥ C É===ùùù111  õõõkkkpü¬ò à.)•ÉdÕÕÕgÏž‹‹ƒyÂç󡲌5AH,Ú°˜@G€¢£ Ô·¼¼üÙ³gæ³3ave»¡w5³LòÆà¹cÂÉÍ™åí©%ïo²m§uí~5F.—WVVR©Ô¨¨¨ªª*…B'M&ÓíåSàÕ°Ûí`Gb±øòåË +…Á`ðx<½{Ç‘HÄb± ‚ÉÉÉ êƒÛ˧€ÖBaßÜܜӆÃáLNN$xÔ! ‘‘‘ß}÷|E!G¨ï‰'Nž<9::úÙ™ÐÿFzküwôþßgЊÅíÃJþÄÆ€DíõízlNk²Ø÷3]ÛÛÛ¡ñ…‡‡?|øpssÎx£÷}„ÅbMMMååå³Ùìééi¾ƒÇ +•JuÿþýèèèsçÎõõõcØl6+èGÀýáA K ñßïR[[»µµõmC@AR177Çd2áí&:Äë‚ìììááá/]0»ª¯i_J羦ß}£Ñ[}Ûž¬­­„……±X,©TúÁ'ã4Ah¸]]] T*õÉ“'D§äðÁçóSRRÀBkjj ƒÆx"ÈŒF£)// ÉÌÌ‹Åß0 +rjŒóÛÝItBóóó999 °¤øl=A|Ýnçñx###_Ÿ3ËÛ¼WÊí›ofà~ +…‰‰‰ÑÑÑ0èDf³™BÏ…`677¹\n`` ‡ÃQ(DçæpË ¨Khh(¬6ðéôÁçú F£ÑétJ$:ÑØØøkÇ#““Pcœ¯f4¼¥|ÃDt,âSPcŽ ûײQ__Âd2e24 p b3 *ÕÛÛE£ÑÄb1Ñ";jµšÅbQ(”GEX­Vb+@u:]ii)èè7àxÿÃé|¥œZÒÙìN³ÕA’Íbuì˜ík_ +a ¯<œz.T¬¨ŒŸF™_\\âóùäèâªïôô4|,xî=&/¨1DŽè1sYYÙéÓ§SXXèîî~þüy¨ ¹¹Yî˜ý‚`NPmm-å{ýúõ rÇR69rÄÇÇ'77÷ïb„·*•*))Iî@Ú_ +Æ )£È)åø ,X° 22Òl6·´´Ø=}]RñŸ"h2™ÔjõÑ£Gå§|ø ÑhNœ8!whûOOŸ>õööNOOg§õ™¿H|L«ÕjÙr‡ÖnR0f€HÁEN)GƘ³gÏ‚1mmm’ðÇçÏŸW­Z¥R©>|È©Œ4iyt©­­}ùò%´ðâ‹" +¨Ô‚ Ú+++]]]Ï;Çt¢>t®©©1 L½FFF‚IUUU46662Ktt4Ç$SÂ=†ó›g·Ñf–ÄÄĹsçF¹£Û"‹-Ú±c‡5ˆþÕ ¶víZ¾HîÛG +Æ )£È)å°?¸»»³k*Â+zò<|øððáó²²ÊÊÊà„ìììööv“ÉÄÖh4Û·o÷î):33344Ô×× +¢3-ÉäÉ“a’}ûöA`€@:*//§þ‚1Û¶mÀêàÁƒÌ~æÌ™qãÆ1#µ,Ñ¢K—.µZT\\|üøqøʽ$ñ!0O@@Àž={„óέ””¶ËÑ›ºoÕÑÑÁæÑjµééérØ>R0f€HÁEN)‡Å˜cÇŽ•––vJ­ÆðöëׯPeb™>}úÑ£GsrræÌ™såÊ•êêêuëÖA z½þüùó¯_¿föîÝKõ¡]§Ó1ª®®nÆŒC† Ù½{wBB¤I“ —†††üüü‘#Gæææb_` iii...p΃Ôj53bùÉ“'QQQÏ¿–Âíææ&©Û€ãí7(îyyyrǸoÕÒÒBãââ :kýÛÕÔÔDV$=®_¿žO“;Ìv‚1D +Æ(rJ9&ÆPõT*ÕåË—[[[;UÀ®Cî-**š={ö®]»ÀFÆ”””ðcÍš5¼5›Íô„C***ÛÞÞH7oÞ„=¦L™B=úòå EDDxyy½yó¦  `Ø°aX³Æ˜ÔÔÔ#F` +#6l ½±±‘‚7ðùÂM»£z*Ü?,câãã+w¤ûP„7 À`0ð~ÙËý'¾”?>‹.w˜í cˆŒQä”rLŒ!£._¾œèºýºb Ÿ`2™<==;xøúú^ºt©­­-))i„ jµšz +9` +8‰ŠŠ!¦N:zôè[·n1®®®ôdRr¸^¯‡jSÿóÏ?¹¹¹ÖƒF1i]]ÝæÍ›W®\ eQÑ@&lnÙ²…S£ÓéöïßµÞcÎÉÂ,³Èè¾Ô²eË¢££A»žˆîïUSS»%,,Œ!w˜í ;bL“Ev rW›l¤NÆ9ž?Žt#ot»mñVÌÛÓ§u2K7¼¸ÑüRÄl7Þ­ŒQä”rLŒñóó;qâɧ뙕0&88¸±±‘ÄË€‘‘‘ñòåK0†„ ]päóóóáÉ“''''———/X° $$äÕ«Wp‹‡‡GjjªÀ˜ÄÄD&ÅÎÅ‹gÎœ™——WXXØ Æ|ùòeãÆ+V¬–Z,:tèJ¥:yò$fÞôs>Êl6{{{ƒ[rGº¯d0ØZÿöLt=•†_-…Ýî“ïVUô‘m·Ü‹ø®Ë—/ÃÒF£Qî`ÿ©ìˆ1ßmƒ_ÇœsÊ“SÃÓº½SKOÎpïàÌÒù7|“fntë[×þ¶Xþf‘ôu¶;c£ç]¥`Œ"§”b  Õj?~ ŠtuX`Ìš5k–,YRUUU__ÿðáCàaÑ¢E@Å‹/Ôj5 ™Ãþþý{p‚*0ÄÄÄPX§M›väȶ4üÛܸqƒ2eÊ”yóæ•––ò{Ù²e˜-++ƒ†š““Cù£GDD€1`ψ#˜ã‘‘‘žžžâwGGÇÓ§OÝÜÜÆŽ óÒŸfK†€F ÙUîx÷‰¢¢¢¨ŒŸ>}‚ñº€¸WŠ'}XV)h6¦tI€%«Óµ]²Ó`‘ø+5þáŇkjjæÏŸ»Êì?•]0F,_JJÊíÛ·‰¶ˆ-ÖiË_aG¬âPgeea“ã¼uëÖGá°xõáî3ôédJˆ¿,wzzúìÙ³9­|cmm­Ô‡ÄÙ£¤¤Dl?k„ìL‚Ãñç~„0›Î¢É\‚ØçüFîÞ½Ëæo%;>JøÀÝçÂ… oÞ¼!UVV2W³EÖì-9Ã_ìs±Ú²e 72ɇ_’‚1ŠœRˆ1;wî$oˆsÝÕaÎ/w« 6 >|úôé®®®...›6m"Û0Œñóó#-˜L¦… B þþþ€Í“'OH5ü…^–.]êããÒ¹sçŽ?^£ÑÀ!'N¼sçYñÕ«WcÆŒ¨È$!!!¸Df&Òð Û§¥¥ <˜Q$1p ² + 4hйsç@”Ÿ†¾ÂU__ßçÏŸËoû‹X-^¼˜úÞS(HÎTû÷ïÒÌÌLêQy›eºvíX(%ÿ^DÊJPPPll¬õ\ ¤`±¬ ‹µk×.°èýøñãéÓ§Ù* ¤À®?]©^ė¢äI|;ä$»` !%Â^^^‡—.ª6¨O|šþÙÄr–YA ¬Û@¼EŒ¢3I~€ p288˜3Ëñ¤'y„ÐétU -˜âiM2ô,**âüW÷îÝc8yÇÄ[JIoûöíì@B —\v𭸸 Ä ˜G!úðN:ÅñÇO†ã°^¯ ûþ×}·3’>Ÿœ# „=™ðöí[îGD k|‚àmB7þZ;C é‚ÝN(zºô.c9¥ cÈ'°ÔÔ­Ã"ÛRì’““¡£ÑHö#3pö«««9¡”Húp¢Ñ‡ÎâžÅñ¿~ýº€ƒÁÀýƒÏž=ËÏÏ'Ë%%%qÙ9„dE %•ÙÙÙ¯_¿¦gEE$:ŽH\¦¸ 25Y%&& +b +[.J˜¥dhµZr õWî¨ÛY¤åÕ«W7vW×o·Ñøøøÿ³_o¯U^iÇÿ„zQ”‚¢XÚ‹¢ Ä†¨ÄÅzL´Úâˆb=U-ѨÕzhÕHc‹E“TÅ3Š½ð TК*ƒÖà(΀à #ƒ8öC_ö$Z߸ÓÙa&ëbóî÷]‡g­çðû.Çä УGÌ©¿3qÓ¬¨¨Ø¾}{ts˜tÇñ&÷YÏñ†|åˆÁƒãXëzïM”}Î-++$l0᧟~jf~5j€ÔSxð8íðS%®ù{¦½Ô‰j#iÃÆ ù>òœZîj[__ë(¹Â|úå—_BÇHÉóçϯ^½Ú±ËS±¯2T¢q„BTYY‰X ”Ô_ýõÎ;%ŒÆ8‘î×ÔÔ¨2ÔœhYòZË(%»IB2<+ ,X`È¡C‡¦Nzûömë&îCŸ}ö3°ÄéÓ§ÝMÖ®]k¹(&0Ûœ»wï†1vÄ×>±Ösiq²µ7šmÛ¶mݺÕaÂ’£GƮśZaNå…ýÒþ®X±â›o¾QT°d5rÛ»ÝíÙ³gýúõV Þ®««Û¼y³‚ÆÓvbLšÖ‰1ÿ'­£aŒº§4),/˜hq• Å ñJ>…Þéà“ô‹[T¶(­ñèT(cÒ!¹j%—©ä9ûeÌ—,è¥ +a·0L’þäÕðE‹¹ÊåûÔÛ¹-^¼˜v¨óÏ…ðÝçŸ>lØ0[ý§&#FŒ(**RŸu =wïÞÓnnnVóI˜[ª¿Ò'b„I¼ázƒ{—,Y˜ª`ŒžŠ˜³ÕG)›9sæ;wLÞÔÔÄ0ï)TII ÁÀTãaææ«Ÿzöò¥Œ|øá‡ÕÕÕù>òœZî>mÚ4ZOÍ7nÜÈ;Φ’õ;vPêsçÎùKúýÅ3˜¡¼¼üìÙ³@‚|»\B/¯\¹âj0wîÜ5kÖ\¸p£ ¡àb£´´täȑ쌛³'Mš$„ˆ»x3vÖ¬YžYYIZ[[[PP §$E;€´±ªô!Á Šªªª¦OŸÎo>úè#(…¶7lpmñÆiNÖM‘ÆZ«Ã7þ|{w¤PY81ÓêKÀ ÂGÝl@,n1̆v8 +ZXÂÖ¼q&ëÖ­Ãf¢K1ܵk—³fŠ ÇH“¦ý÷1&[#Ò´¸1µ’Ì#†_·iæ["…é[[÷ÞŽ­£aŒ: ?lð;f‡T…Ž´þÔ¢O‹¯ “d÷ÎÙ³µÆ˜ÇÿHÉgxñâE5Y­N/‚Sa?~¼ëd¾O½=þ$Š°ççn<ÍU4 +2ðSdÈÄ[o½årJ Ôü8'"bB…WHPÉÉ“'SŠ¡C‡ +•¿f‚¾t¤¸¸˜‚"^øõ×_Q¥þæŒ1ó­[·>þøc$³ÿþ>}útéÒ… `rûöí .½‚(¶QCüóÒ¬´G‚ ÉØ–ïƒõÖ.sýúu˜!¤‘É!Cè²3tª–W®\éõ‡”´{Þ¼yF­]»Öê´9r—ê\QQ*  / €]qÇ1Rœ`‰K—.w¨0nÜ8¨àï¦M›ø”ƽFlL™2@‹~ø !jÙsèС9sæè’Ñ3øT Û¦&'í§Ÿ~‚Rn[¾²JX +ÈÆÆF/1’hÜ»w/JÑÍ„l³Ð·ß~»lÙ2& ?ûE/ê-z¯¬¬„1BÝZh;Ћ0v€Â2‰ÿ1cÆÔ××Û ú2•ãÀB´cÒ´?cÄó¿~k¼ÆI¡,I?ÏŸ3 ë¶ø”Ìã:pïÞ=Y£söäéCµ5ZØ#>ÝæÒ óÚJ>íÕ:ÆL:uÆ Ž1}0ä½ñ òÅé­£ñwB£ÁO¾O½=›BM\Èͳ—a eQÿ™i²fìرÄëçŸ=z4åò†À :¢zS„G™–”]ŠŠŠ9uê”á$žÁî4Q &³UWWoݺõÇ”Œb̺òKœÌž=[b2¯ÿþÓ§O?zôhl3c@Ò! J¨ˆ+fk-ž5JOöˆ=˜ÁéàÙËk×®+3”””àdñÀ€Àë^¾|™ ³‰:8„Ùd‡‡c¬%bû ,0д|ðŒÃ1 hwŒèVïĘ”íÀÑ-T¹Ë™Æ_З;„ØðÆÕ)¥x‰Cˆ»qãF‘Ó¡.\p³3¡`À´A2ê›u3RZ+ZÜRöœ!¨ˆIUÑ¢iÈDI'%«EfŽ­Ca ·6ÌuæÙ °Ã¶¨äéCåñoH?aµ1jûÿFSÆ…`x‘&¶ÆGwÿþ}õ™*ݸq#ÁUB)ôHr%­¤¼QT’*©Xͧ ÒÇê±o߾Ǘ‰0F&>k…1&dq5[`†…¿D‚:&ä¼WųÒ$>ßxã &D,êˆQ~-¡–&‰iBæ­`$Q¿ìtãHpBΚ$rÊü‚?ÁÍßØ{<ÇÏX¥'Ëã‚)üõ OÜŒŠ!¬²_£Øoûñ7MMÙ:Æ(AÒöÒ¥K¬JT õ¥l*OT°6 ̦Ðvl‚ç»ï¾‹º”ï³o·6þ|Â!^t Æ(ÔrÇEæĉ]»vÝ¿¿üò éÆMæqA&ÄBzR:JñðáÃÆÆF’‡…Šò>{öl5ÁTGŽéׯ߱cÇd÷ïc !©ŠòúÛÐÐàbeÂ>}ú`¡”2a#æ'Ä (¿ÇžKËcgÒJË>Õ,òå/™æk\3xë¿:{Vñ’Ož}Jº%“ëýcòxË% µpP²ÊãßJqvŸä9û!Y7±-{±\‹bæ0à¹o’ÓH ÈÞ—s¶>è,bƒ-ι­­crl!ÎP±ú7ûõZešÆüVAA˜ŠzcÇš±aëXЉ%G±FdFcû¨¨¨k{#bÇ®8ØbÁ‘±¢XÖõBe×Šà…³³;7nöÇyñãhr’6ÍsqxÏû=o{Êÿù?˜‡X4¾:bÄTáСCkÖ¬qœ¿}ûöÑ£Gƒ&ú,$¬ZµJÃlqà€ù  -]ºc§œ““àQ]@`x Õ¯_ÿÙ³gZ-uáÂÙªøâ‹/0[°ƒSÁRàæb¨Å®]»V¬Xa`“?b0¥Ð*¢Ó[·n…®î@ÍÜÙBLý:t¨FA<úöí ]À•ôÀÁLBQ«,AøGŽéòúñéÎû÷ïà .TÊ=Ù¡èýÊ•+ÑK ¹b'üÌ fţ⟔2Ec¶mÛ晞ìù Þ¿¨I¡ÀSæg2ÀD ”@>)<+Å¿'—¶í“#¸„”™7ožñç^òT“Û¦M-ðvîÜ™ššªQeaIŠ–H ©$îÞ½K!==‘ ݺu“ì²IÊÔ­[wñâÅXÆÕ¬YsÏž=ºš–ËÄçϟ׮][R»‰ðfd~¿~ýúW_}%áÌŽ;¬bXŽž>}Š#i²ºté‡h$»Z)[¿¸RrÜ£þ"tmT£¿!ò|P7~a‡¯ñúÑYñƒøƒò\,Z.éDã¢<×ûgL~ÿ(A'þ è’Ñ)ñ3Ñòü÷ß6\àsÖÈs™bû¨œÆ”Pâi ´á®‚+èÚíZÒ£GGoܸ±aÆŽÆ=@ËïÞ½[Ñ7^·nìÂ"¨!5jÔèÝ»÷’%K´o-Z´¸}û¶ò‹ ¤"¥#Ccþè‡#A¶¬¬¬Ê•+k}U¾õ_(SxoŸ>}233scðb&ÐÐêæŠ,ˆ®V­V#åq¤öíÛcSÈ•µ¶•.„q'Ô«Q£Föüõ×_SRR´œX“·ÐÁ²¼DS@«&L˜€{sO¶n§¥¥¹3VÖ±cÇE‹èY Â'‹É”)ƒõ1/›Èë8H]Ã-ù7?v}Nœ‚ÁòìÕ«WŒm›ß¸qCPq®C<(±J/ðì_Ú¶OŽà!âVžæHcȆ šÅDú7iÒ$4r +±Ç +²³³ñŠñãÇ÷ìÙ³ÿþß|ó JÃ\rªeË–f¤¹O[¶l‘ò\ƒ{ðiëÖ­Ûµk§!²gÉziŽYÍŸ?\ˆ+Ö–A÷îÝö~;tèЪU+_CÕpm=ŽN4)¢ìàþ¸n)[¿¸’S.e_ÊiL %? ÜrùòåȆ<š:u*°r´™ \¼x$2»_ÉEóÉ“'ÊÚ0nÜ8j3fÌ0øïS½zõT4{2ħü44îC~”lc°9lØ0 ZâÄ÷ùhŒýÁþ k£Œ„h ß¼yƒ‡Õ;wÄUA¥Þ0¢1ð9ÐESïyêÔ)/…ÀÇG ¥k¼|ùÒ è¦Æ;wöÌW¯^Á[ͦIfqIw~øðáìÙ³q¼ß~û-ܳäR¦h̤I“Rt®P¶ œÔ/¥­jÕª¬A_t‰&ýðáƒGEDˆ&¯ý'&¾:¡Å~¯\¹BÓšGóϘ„úeó°$Ì\¾|YIå;ÁàKÂìƶ¢t¡âÚŠµŒå–¶í“#X·XBBr?Oc‚St.7oÞôpÔ˜ÑBsúîÝ;à#gGŸ?þܹsR5(0õÝ»wùNÖ *’È$}y'krrrÌдMD…š¿ò;Ò4ÙÜr)¨ãÛœ[ùqçÎuêÔyðàA‘È*§k¬d®œ-móSÊiÌÿ‰”Ó˜J~ʇ.¦E‹™ˆÆÀe=%%eÎœ9‚JÄ6oÞœ••…ŸT¯^}âĉ +дiÓFŽ)¹Æ_t⧟~SøFÓ½{÷Õ«WS»té<¡–§é¿š6múøñãyó楦¦Â·€`yh DB׃ZÎÅClë> €ŸÒ?”KPÖ§OŸ@cœhsEÙ*¥M:vìÝ»w{rZZÚŽ;|E‡,´¨¹3µ£GÒìÚµ+Œ¥ß¶m[úpF%eóL”,À)S4—[¶lÙûX}/4œûÔ¬YóÚµkô¹CÐ*£gÎœá_•Ñdˆ:Õê—_~{ü蔵k×¢šˆ%Ûªt¡b†j(„¢yƒÓ§O[%Àg7Õ³þÛÒ§þŠ%ÅêÉ“'µC F‹U¯_¿ÆW…eiÛ>9"8qß¾}¹Ò˜àÁ?>J 0ñf C…<«‰Ô‚D\((‡ˆòL†qXÂ_øÏ ˜oê»H  +ÁÀѪÒ61%qlEMöEIú¯˜¼BžRb†©mºÔð7‘¬ BÙÂ"Τ‹ÓyŸý晀QÌU¤pzÿÑ2ñ‘,)§1%”ˆÆÔªUëÑ£GÑ)V ¦L™h ¡yàÀæÍ›# Çhݺµ¢¯ Ñ;v¬°™>}º¯¡0qz£FV­Zå ¡C‡@c.^¼¨ð]¿~CõÎ'ôà»ï¾ûñÇs?bï'iÌúõësckrĈ¶E´ºuë¦× óñ4¡n.`·ÜAE>l7a¦÷6hÐÀž,ÑE­gÏžžæJÌ¢ 2…·ûªŒb/ZWkõ•É +ò2Ec† ²råÊD?¢1Xñ78kÿþýâgîܹ=zôhß¾½`yûöíqãÆ¥ÆdÁ‚¨È† Ð䇳„…Ž¦É#"çåË—hOff¦}zõêµ}ûvÖFNºtéímë’6a7aŒÍò  ìôôt®wLLø%‚]¡æbìçÏŸ/mÛ'Gp94—\I‰Ïÿ9®+9uêTNU¨ˆЄ p¥mþbJ‚4†Y“—S€2ËA“°`P2¯…ºa&Í°¹¾CW èìà/¸s‡ÐápçZ(Ø,,*IHDœ¨ nF9"ªÑy‘ÈóË”ðôÀgŠº÷îÝ;aÂñVÚæ/¦$HcGäk²~øᔢBQ˜©å„l@É8²!{†¿rÄÉ -ƒOÇ p½k×.°¦ËìGŽÙ·oX»wïÞ‹/X•²…PÚ¤q„ þÒ×*ÕŸþYÂþ;&AÁ Ñ0é6 «¢™<Ý$Е°Öß?c"z%>³¸­O¡!ŠÔÂn~ù½ÿþº]HüIøŠá?~œ­fÍš(Âü†wLJ£—:Èè­ôS \tázÑ_¿ÆI&«å4¦„hŒ,P£åAƒé[¿øg[ÌSéWÊ9TùöU=¢°hÑ"—‘_mÚ´ñ•ý•'Ý®[ùE{è >Û™9sæëׯE<ár +¯èÜ¹ó‹˜ 6Le±9.dܪU«ùó狛˯J•*!y¢T\=zòäÉBëèׯ_vv¶:åèÉ1QÔèdffª’ˆÊ¨)3‰›I.;à9⊣8wsÿþ}4 h˜”×999ª¤MÀBØ\€}ýõ×V¡+þ2šœ8p |a5ÂÃR ¼ý¤”)ÃDù/ûõZå¶Å|,ÎèÔÞŠ {¬(v¬Ø,+–˜Ä®ØX±€Ø°+âÀ‚±+¢¢((—ˆ2ð^xð@ó~œ…ò®šcîá¼=8|g—µ×^å¿þkÓ&¯þ]ÃëׯÏÉÉa.r°åN:Y…Eyyy–L&ø@GƒÆpÛ”§hŒÀàq¶“hLaa!ÉËL„3£ ŽtìØqùòå"¶¨¨ˆ›œ…9 4())9~ü8×£%Üd¾BãÔ£RzºlÚ=sƒU…7Üþ¿£1ŸSî¨Ä)‘£CK½L¶Í_É‘&±zâÄ 9¢|K1±ˆk×®ém ^íøœ¢ ÄTg©§zŽ3j( ä8&¯^½šŸŸºÀFˆM”nbݺuÑ~êFÕÒ:è;ø‰”7n*%ÁítIÀN¬»ìD!û$«þr˜ðÌ™3•¤l›¿’ã·hLAA/;ˆ$‚6üâá„ÈšU«V©?~Òðjþüù€Ò*Íø?œœ;w.øùŽØ è\ Q_uRRÙ¿eË’ËS] ! ÙCNXZ±bB“¥¤Z/=5}q9”hÉÆyÊ-¼¦"ÐФ”!Ü’÷ú°ß|²-†ð(ÐÉÛ9a¿ÉC22ª™>}º<•¿•¦1ìSþÆ€&p<%{ȇr$oÛ¶ 3zœÖ­[C6K|ѧOŸ±cÇB*’ÍpL³\»ÁBUgRóæÍ/^ܪU+Øe'TiÒ¤‰Õä!_¾| oþzPFó…,UTQYÐܯü»¦àgŒü‘Ù¨þÙ‘õ™Ë×%%%Ê%–›móWrüY¸p!’¨Û¹sgŒ]Ö œ:uªk×®F}"ƒ¨˜*H‡^¾|yáÂYƒ¨(Óø¿"Ž¨þ:8¼âÙ³gŠ{QQ‘yÄ@iLŠ`¸%??ß’¶Žï8Q¨¸eøðáúŽcÇŽÙ‰V 0@žºwÔ¨Q²IºC8xð`ïÞ½ÝB“–-[Ò +ë4hÐãÇ݈/Yr‹ u|êÔ©=zô€ÂXK2oÞ<ÔèæÍ›øŒ‹X‰üˆŸP÷hÚ´i£F^§ÆêÕ«!ŒyýéÓ'¤¤Ð@ÁsìÈÓPŽY©¶±N‚üÀ=|/^ºfÍ”Ìf:”)¼…õà•722õŒ_¤viiiš±ZCcªßlÂRœ›jüÌ_*Ecà_` ÁûÙˆ’¤e«S§ŽWµ67söìÙöíÛëe@hÂ7ä»Zgd½ž.IdŽi»ôY ¸~ýú£GVŒt=»ví"ªôìÙ±Ñ%Õ­[7º?c­Zµp¡`×^ 6 HjÐ4›ÐØR…ƇxЯW¯^žmÛgfh§L™¢¨•WDc Ù÷GjàrœžnÈþÎH:C?«[qQš­kš³Å½,Xà9Ù6%G%hLtUx ¯ïÛ·ïéÓ§ª³üÅ1ÊÊÊ0|5wÇŽAZdär—ü"A"øCBc6lØଚ®APâíôK«‹/Nž<ÿ)ÿ.¢Ø\"ÛŸ››«.£1X‡³ÈÃĉ½ž#Á9¥°°+8zô(®Rž*m8ƒIߦ*MŽ?¾hÑ"(6Ù‡ø4OgO ?ø62óàÁƒÁƒë‰ô>z(Ö›={vÐ-ŒÀc" „ãÆ»ÿ>V6mÚ´óçÏ»æ踓þ®0é¥ÐlÒ¤I,ì^j€¬9sæ`€605U! \b7TÍÑ°‚‚5I3¤khLµâísªšd[‘¬*EcÖ®] .ÀQ…@Ú*OÀAƒ#ÓÑ鯩qPÄbÊ +„„cÐUaEÀé²eËxDZÌÛ ra2cÆ  Ï(ÄÂøŒ3fäÈ‘ÈŒëôSþ4ÜIW‚{" ù…W€”2¤1&±vVh|!ü!C¡lÛ>3ƒ#ÆÕËNcøŽÑ€¶ªdT1øÏæ ­n¦ibù”æLÍãzûöí +Iòo /l"ŠØl›¿’#}#æ‹‹‹e¨SJ!’ýúu⊟ £Û·o—k¢Z‰ÇLÈÌËË»{÷î…  m$†°ÿ~ÿ;QÖwÔ…|„S„fQIJoBHh.Ø„4ÁX„ÐÀoܸ¡Ê÷ë×Óñ +1&¯Ñ-ÞwäÅ‹€óôd¬À è£XXºt)~•HŽUì×»° .]º\¹rhü™f äŠ÷ïßwëÖ-''Gû”‚QPÔ”§8’‡Ÿ>}ZS€ßB-6,ϪvR¤°$ÛnÙ²eëÖ­@†AcÈ6®³1™M†ý¸ëºuëþWÎüH“Æ0#7õíÛwîܹÈÄ vîÜ©Êc#Ø î˜:t(£voNÜÜ\m…ÊÛ¬Y³5kÖðøĉejN`A†S„²NMЃ€#ëÕ«·mÛ6‰pŠìÛ±cÊAš"~éÒ%¹‰´à?©M›6×R£mÛ¶6ÌŸ?ìر¨ Ó®]; Á¥@æÕ«W”wæ@q•üüüð£¨ÀK=ääÉ“W¯^u]IIIÿþýi4FÑY"Ô=?éÚµ«o“VE#bVTT„Ï#iÄ‚‹#GŽhŽ¼…¨‡bAZ'vÐy¹qùòåµjÕ +E™Õ«W“0mÚ4g5wc7Z‘pðàÁwïÞmܸ‘¶öp\X¦ÂX­¡15£ZŽ*EcÀÌA´JGù@Œø,É·y5.ÉkK°"i”üý~Õ·¥¿¾˜$ÊK¿(¹ë¿p#n1Òi‹bØ  + +ЧlÛ>c˜k<Ã?|5ûXõjU?ŒS +‡ž\cÌ¢T)À¶´´ôöíÛÊèVq._¾LU]³ÿĉ&-Ù©AîÝ»§fÁv¿Jg^^ÀG/YIòËwjÖþýûÕ {ðX`ÒêŽRòäÉ“4q/4QàvíÚ•U«ÿ£‘&a"ešÁQ‘Y³f8p€ûê?ì—YH•Ý€»í&‚覢‰F̱ŒÔ +Å!µr(KJΨšYŽ N™‰!– X¤¡–3[4ÑPÃlT1´LËrJÎÿsç"<û¥ÍþÓÔRÛÛð½Ø|{}k½k}ëž·¸¸¸±±QP„ª]ZZÊx}}=×{éÒ%Б bØ橨¨`K + + +À Ј*°P•Ž +ÈÊ µµ5Væª G¥83l€«à0Tg¼ýÀ Ÿƒ)-,,âââÀ +µ´H–––~&àM¡,___˜ãq$ÎS]]-ÍÃùºª´´4àWÁå$ˆ{———ËUdffB&8ü&¹‚>ˆÐ¦†3 âÞ4Yz††|¬°°?D;â´œWÇÜŽ¦&()))´«ªªøn˜oD›r @ÝÖ sÎ"Æü©"h=5ÊN;aáŠVa %†®ŠZ6þ-kýÁ‚G\D鎴©é»Ÿ3IOO§Í|óæ ÅeÒ—hŠŠŠ:tèÙ›„üîÝ;±>•ÈÆÆ!ó›™™Q)ŽvvvŽŽŽîîîÌ711ÉÎÎÆiIÝ×®]ãhkk É 999HÔ—ÐÐÐõë×ïÚµ‹µT +žž^kk+U&,,ìäÉ“nnnt»€ó°—ƒƒƒ¿¿¿‹‹‹««+4õ# S)X'NœR»@e†C%UwTJ3VcsHé—qþrŸ¨RÍä&¹(Õ_ÜžU,a&ãà +z˜/ãü2‡¿èÇÄTm(åê'a¡¨b­dfÕ‚fH¶UèáP+n PÎF ª– _>D^!x¯¬U}—ê{'C6=rQêÊyõ݈tU,üPm'39¶Bu‡ŒHºP? ¿òwæ}Ó"Æh¿¨Ìª.?Ê¥ê"$ó£·ªW$ÉhÆ`Aª½†„­¦ïf~…$k™››S—5}ñs)•••>>>tµ”˜I?üo¥Ð¥nÙ²fðöö&ÕöÔÕÕíرƒ‡QÈü°‡¾¾¾µµu[[´Ÿ8p€Ú—›› ç”——³#5ËØؘkD-œ£««Ëî}}}  QÞÑÑÁm·´´¬^½>åáæÍ›8ww7…£«« Ç£±E a¡€€ŠÈ´Nˆ£* +OOOmŸ_–bÌo¢#//wšIW¬ÖÙÙ™““366ö×7Áî &ž3O§]²ˆ1Ú,x©ð¶———‡‡]¾¾¾ØKÜxÒ…|mZ```MMͤÁ3ãä´û÷ïÿ‘µU«0 ‰ŽŽøãK”™ššÖ××kúÖçR†‡‡322xžôÃc°2|N®½½½Äã,\ºt©žžƒ†ææfKKËÌÌLQί`žÄÄÄ5kÖEDDà½+V¬HNN¦ðíÙ³'!!a\ÙØòëààÀ„/_¾¼`̺uëž)aZ•QçCp’ììlŸ®®.Mßú‹§§gdd¤„ØÄ'jŠŠ‚1†††d )áVTT´dÉ’7wŒ755ÙÚÚÞ»wmü¥ÔI˜$66Šà÷êÕ«Ïž=cRRR˜‰6|ûèÑ£ »ž‚1($ü)Ü”••:::pþåË—SÊѧ”‚‚‚™€4¹¸¸0š»ïÙŠvb̢̹,bŒö i‡0„·÷ïßOZc„¿ýýýô_Ä)™ðùóçŸ?~øðazzzmm-™“%}}}ä·?²ðÅ‹Ô¾ýîÝ»€ ù–9´rL Dº»»yÎÍÍU(ccch aòª±±ñöíÛ(/--e-¯¦må´A´ c0‡¥¥%Gÿg3%‚E„3åÚgþ™L¦Ðà̳iÇØ]àö—5¨ HˆÐ¨Õô­Ï±\¿~=00™”çcà0fxxX–Ð0™Ð³¶¶ÆÍÌ̸Æ[[[÷îÝ,ÓBCC ‰Ê¤¤$Æñզؗ`c’““Ç¿aŒkå†c¤¯ê …Ùºuë;wØeûöíÅÅÅê_1­«à„ïß¿···ÏÊÊú-÷:_²€0†ØWÚ›Nk |€—–S¥h˜ºÍD-¢ጠaêØG->ü“_ó»ec´_ð1| êcð=ܵ¢¢ÂÆƆžËÙÙ™ìŠi½¼¼ÌÍÍ%ÝÕÕÕyxxð x$&&2îííM‚511|˜ÐÛÛëêêJŒ+óó¿”B fdd„=v!:99ùøø|øÀµð¶°°Æ\6N:EØêèè¤lñôéSâšp#/^¼xöìYºLÃb\‰1Ø:$$dÓ¦MD4îMs±råJzzzH±±±;wªÂaaaºººÑÑÑè?sæ ±O2™ÚÐ|ý£?Òô•ÏJ +Æ5ø(K—J0b ©'úô©¤¤„*VPPðöí[ñFµººZE5…§Öã{$ ‰}&ÓŸVVVŽŒŒLLJâ$8$m,¨Íic„àux Hà~ÙÙÙË–-óõõ¥‘Árrrš››qé .ñXB766.++{ÜÝÝ7lØ@jb&]ááÇ©˜»wï`¸²"âââššš‚‚‚ ÚÚÚð[}}}²"!Æ«U«V544°õì‹Ýo-ĘÌÌLìõúõkuJá’áLŠÅëøñãGŽ¡PrÏ3¹d8“ÊÜž>}ý3¼4³#5p’Ê[\\Ìî¨ÂÍ~ñº¿ õ‚J ú¾zõJÓ÷=÷‚áÜÜ܈²ÇD ÖÖÖR04 ÉP4¢L¡Pà“T7nP;(:D"Ο?ÏL„ÿ(¥±±€|`•ZŒÚ”””GI9Æd/_¾„Oà&õ‰ihuX›••Eé¡ ò–µ‰‰‰!ÏOmeöúúõ+ ñ½š¾òYÉBÁŽLºÆC¸v̯øFÄ+ø+ ÁhA[Š­ÉöøÀƒ˜_^^Ž³ñ–Éø§°ÈüÅèì’””‰Ÿð,:Ñ€{°©üE +W¤ŸÚÉHððì“ÃüÉ"Æ,™ˆ1tU´cT"ù.€œÚ—ŸŸO;¶mÛ6ÀŠŠ +333’'5‹Þô+3ñdz=ú,zC8‡¤Ê yÏÞÞ¾»»›g +Mb]]? mÞ¼™NA½k³h!Æ`A,ÂMJ÷$‚e)7 #WM"255*†‡‡%©Ú+I2@©¬¢Ö ³¿¿ß‚zÇ3)KUwØ‚ #1;Êd)¾(d”%A1·~B*cœ-a­j¾ìÎ “E3ÚP"'ùN˜àììLSÉ|MÝó¼Ê­[· ŽöööUFLƒí>)…+Åè ÏRV¸a¡ú+++`ƒ›$Z1¸R^qù ‚}}}ŒS†Xˆ“ GÌÁ4vg„ 2È. ²5 ‰bBI=’*Æ +ùËó¤†S ;ÒÂ8::æååiú²g+ c0}â¾}ûàÌ®®.ìÕÙÙI—ZRRòo%‡-D(èK¶ç/„]ŒŒìèè Á´³³Ã¸---Ñt´E$p ÿššÜŒ«àBRSS“““z èš‘Ë—/ãÒPÊÿÙ¯Óتª5Œãßý¤‰‰$ÒDˆZ„R‚e*Ö*ƒV†BD£’FÒZb!8 +u@&mi/±L’I‚ ÊTR†#-bM½¹“{Ãýå¬ä¤©^¢LgrÞ;û¬³öÚk¯õ¾Ïú?ÒDy/È àd/ýòË/%¼”NaLtâ¶Áù–žž.ýì „,,,ÄÌLÕµk×63vìØI“&…€1ÙÙÙJ£5ƨ ‰'*"êc‹ä×Ni6lØ°ŒŒ 1âÉÜ:"ˆ1â•W^±ŒÁû„yŒÁ!P“‚]‰”íÚµÓÇUWWS'õ!käÈ)#uí”qŒF¯` +õ ÕÂH8–A›6mšTqÚj¯¯¯/..¶¿É8”гwÜqCWRRÒ‹ÊÊJ“‘6œþ šA¼ Ö,ã”)S&L˜à]eee$îGƒnÞ(»¬|‚ú¦…MQUUUîÿ4ñ(†ƒ@ØßÐBë鬱­Œp•¨:Çÿ÷ùw,âíÆ XÒzµãâãë#‹Ú è^‹ö6#üiø®9sæÈ"ÉèžÞH +Œ±5Š«GTÚÍöíÛ™%F±•¡|›5k–¿æÎ /[b ªBsssm«oD2,ªDÚ°a1—WÄdÁ‚ä³_|ñÅŒ3È{iié‰',ENNqxýõ×]ÁDZxñb˜ýæ›o¾÷Þ{ô8F/ä <˜tÐ(+ +c’"þcyää :¿uëVðÃÅp=\ºt©wåçç;Göïß?`À7TȺé†iÿÆ$EŒq¬`æ€1>¡sçÎp…³«««»çž{æÍ›‡½¡¼Ñ¾eË–¬¬, c¤è„  +H˾}û8pÆdddHcà\Þ6559³ðO‡¾þúkÅ%¥{÷îípäø‡Ä)º6Î1šMŒ±¼¶àüùóA\m(Œiß¾}ÿþý{öìy×]wñ_òóСCZ¨“{NPAV¬XaëÙ%i°~ýzÌYRR¢ý…^ †Fû駟ºuëöÑGiô:zÜ=†!q” ÉH’Ï>ûÌ4 ²fÍìA§ª7Ž5Ê ïÆåp"téééZl½3Nªø6iàCN:E]W­Z•Ð5¾éáž~úéuëÖ¹¿¶äTYêHŠ^3ݤ¸ÛkrA +½Ì7 ’cÔQmÎÄ™»QP|mÇ0àÄO¥ÚÒ +c¬áÍ«¯¾úXèé˜p<Þÿ}e®´ù÷\’³ ººšŒ«zã3,,ý§Ë–-Ó-"V 8GŽ?®"" q½Šf¤0&)‚èIZiæØ‚%2jçÎ’V¢^¾|ù—_~ùä“OF=mÚ´wÞyçí·ßÆí¸ó@qšéß%K–ü'\®ÏÌ™3·e‘Ï .D)¿ÿþ{CCÃÔ©S¥qfffYYYmm­ôvÀÍž=›ˆr>Ç#š#¶mÛÆ1YfØ;ý-)Œ!_(|Òxi_`ŒžD)`Ìk¯½6dÈ#Ø‚!‚æq÷ôŠøúè£Jrv°cÇŽðÀà{ï½×)LqŽ—c±víZ}$g稫­ÏÎÎv¿zõj:¸Ã”@ï•?œàZÞ}÷ÝçŸ^%nuoQL™2%T_Ô8äz·P2BC˜£D¯ñ ˆdÁ!‡9«ÓŠŠ +&¿jm÷îÝÅÅÅ0†ì;ZZaŒýò 2:t(ßQYY©0uðÕDÞ‡———.Z´è›o¾acÉ8ôÒK/;vŒì@qàc€+pRø:x)ý7‚”¹QþEYöS“DÑÜÜì8 ÷N1çDi‰AŽ$¾Î™xúôiíÏçªÃϱøg,h¯qœYúè`@ùyæÌ "o`d÷V©{÷îÆ´nÆAï“&M?QÎçxDc$Þˆ#©„qŒ3fŒÝÑÁâgee9%é ŠøôÓOy.Ëîè óÖ[o=öØc¶Lû©S§ZQQ‘öY³f¥§§“ÁÜÜܹsçÚe‹Ð³gO +¦Æ7ÇbÇŽ¶Þh°„¦™1l1$‘p¡Y?qÑO|8cΈbØ°a(ÂuñâÅ$Š¨Ð8Æèüí·ßò#Ñgòäɪ[ÁÚ;¢Á½xœ¥=xð yî¹çØRJBIú³Ï>;nܸ¨nšOL˜\7ÔÃh#GŽ,))ñÒÏ?ÿ\?_~ùeÞ$…1‘Š¤Æ‡E<—¤të£D»RÕâ&8DÜ„ÌÿW,ó„A{ÀÚC‡ÐèÆQ999?þøرcû÷ïï Eõ¿ÅâÖûßÈbŒØ»wofffËcè ¶”þýî»ïЗÔÔÔy1xøá‡éŒûªªªÎ;c÷7nl×®Er„€wVSSƒ…äÎ!bÌ”W„W‡7BYx3oÞ¼°×l`‡ÆØå>ø `LiiiÀ“éÚµ+»·|ùòǹu¸wšs‚/¾ø"@JТÞÒð½o¼ñÆĉ¹×(‘=|:ÍËË+//¿m@4)0¦%¦Õ‡R³A®÷ìÙf8uêçÑ£GqEëÎÚý»uëÖºº:Òj'Ožtºq7»víò¸§Tñ?ü°sçÎúúzäƒU¼B2N|ô'øĉJ˜!Ú¾}»½\0Y^¡Ó*ygD”e?…1©¸JÈáÚÚZ^¸O†i‰6ƈ²²2‡’˜'``£Ø«~ýú 80Œ5Ê_¤Ã™’––öÌ3Ï°Wݺu:t¨g)—ôÐC1Vn:uêÄ@iŸ={¶F ºôêÕkáÂ…Ö¦ÑAƒÁ ¢Ó§O=&îþûïgÜÖ­[ǘÁƒÇ1Æ°Lœ‘ׯ_ÿàƒz»‰Ù ÍÍÍ40¾Ô[¶l1C×/ë- :ÿä“O~üñÇÖ!ÊFõ¯„| ‡¨5???N¼·A$ ƨt3 N3좬B‰ëѺ³>P󿱈{ +ž”%ñ—ýë)Zü4 «,5Žþ~êà¯Ð!Ø^×Öêæ`œˆ¯^K +cRñÿC2K`i,¥-W¼^’""Ž1.\@,K–,±¤”gÿþýîñÃÒ¥K7nÜÈC…ÃrÔÔÔ|øᇊø"j£ýرc‹-òuàÁ•_ƒ4EEEþœ ¥oß¾l½Ú·o_UU"ª¬¬Ü»wﯿþêˆeA,4j¿jÕ*òÈåmÞ¼ùàÁƒÁrp~šêŒ3òòò ËâÍŸ??##cåÊ•Fn‰©ß¹sç€ÓÌ™3¥J¢×õ–†­ÉÍÍåv%[¢óýºÂ·H-»aÆD/êŒdÁ˜T\g¤0&Wßb‘èYüíˆ8ƈººº¬¬¬mÛ¶1DÈE\ºtÉÌ:†¯0sñâE´wd¶ÃOW@ü—+ÆèÓ§Oaa¡AÎœ93yòä!C†444?å)ˆâzƽ›Ç!ÊUöW»þiüøñ999˜ÊàsæÌñ"kkd¯6xiéÿØ/³Ÿ¨–-ÿ>ùêƒÆ§cDAD”…h£€(aQœMˆŒ" (!¢ˆ€¢Fƒ@£ 6CsâÔæ@î—®sûv¸žs¥Ù»›ý{èÔ®½ªjõÚUk}ïïï?00 uD[|)¸1<<œri¹…Ï¡S__ßÔÔT+Qc–ˆŒQd•’?ÆÌÍÍeeeyyy±'I³_  æA=ô Ø mÚ/E?ªªª¢ÙÛÛ;99íÙ³‡-'1ŽÄŠÆÙŒ £4„MkkkXX˜£££ƒƒC@@@MM°ä/\½zÂill”:œÒH«Õzxx¤¥¥ Ô4×n6›ð”%%B¹R‡s%OŒÇJœY3ÝÉa‰HÁEV)ùc "‰“iGFF~³’u:]wwwooïÐÐÐ<ìù¿%’­F£aZ&g êÝׯ_9Aà‹‹KII Ñ–:–’©££t$¥#Z„ðöû÷ï¹¹¹®®®===Rrá%OŒáø½qfͱĔAÿÃ@ Ô/BfìírÍ,R0F‘UÊ"0A‘ÔÔT­Vû›¹Þ *‘±õz=P´€=¦b± TãééOÔQ”X¶¶¶wîÜ! ‚Ž‹ ñ¯^½êàà€çR‡Ð,’!Æp6ïß¿Ÿ”””‘‘‘™™ùüùs|GUÜLlyã¿?$zŒoé9sæLNN0eSKPjrrR´M_-Méùôé“ѽyÆr‚1Š¬R–‚1¨««‹R’ŸŸ?==-ó[ÏŸ†äIâ¥@øûû«T*z¤ŽŸôb³mØ°¡©©‰àÈŸd(Cø\[[‹ÏÌìì¬Ô!4‹dˆ1xtûöíªª*ê‘èç‹püu:ÑR`‰Ö y‚(f bÔÄÄyƒ6¯ÉH ükXEóK¡ l«Õj. ííí K‹Uøe*ÉÈÈpssknn&Dr&Ê–^¯¿{÷®³³s^^'Eêà™KòÄ\JMM嘃ô\»vÅþ©¬¬ììì\ñÙ øáĉ¹¹¹}}}=srr@”¶¶6ÞÒYZZZVVÆ èñãÇuuuÙÙÙLÅÌ'OžÜ³gOyyyAAÁË—/ùûoß¾½xñ"ëb Ì$%%ýñÇûöí{óæ ¸R]]––Y:###ÌYSSÃZ>¤‡Ù–/_ž’’ÂäæòåËô´´´ÈçÎ¥`Œ"«”ea jjj²³³#k‘U¨ƒâZ$+‘9ɇ===~~~ÁÁÁ$4©c&/œãÇ;::Þ»wï«AR±Ÿè›AUUUööö#Ò Ôa3£ä‰1ô÷÷¯­­U«ÕÓÓÓÅÅÅG¥$0_r˜™™éïïß²e drþüù7n@8îîî§NÊÊÊ¢8¹uëÖªU«€çØØØ+V$$$9r$44ôãÇ0ÉÊ•+áðððC‡qÝ  í°?wïÞÝÞÞ~éÒ%f+,,iÀ§Ó§OcàààÐÚÚ +ð¬Y³F¥RñÐ}õêÕõë×W¯^]QQ8qÕb‰G à–Ôáü[ +Æ(²JYÆ \¥;vlxxX¯×ƒ RGñ?"»âéËËË‹¨r‘”:ZrY…Š`kk 'èt:Yá(žà^]¼xùåŒH0óJžãââCBCCCK@@À²eË`Nå‡x{àÀ`Zàj#i|øð!%%¥¨¨¨¦¦ÆÇLJoZWWØ$q …CÊm(::šMŒŠŠâŠ466ݼy300%  ž8J™ŽòÉ ÐÁÁÁÔÔT;;;*æÜܜԡ2»ä‰1˜Ahá€ó]"##Á˜û÷ïã'›'==½¼¼\ p‚åäädVVÖÑ£G1à<ò*33óÖ­[¼…y‚‚‚ØfÐE\\@’———˜˜È+Ú{÷î­¨¨HKKÛ·o_vv6×ìÁ˜ØØØ—/_b“““ƒ C€[ЈÎ;wÂW\UBBBÀ1<²úèè(ˆŽARRþË„dŒQd•²PŒA\ŽH8ÎÎΤ)Ò—´u4‹†ÔºnݺsçÎQ¦¥Ž¨¥¥eãÆQQQà(Ù^p $Š„àà` ¹³³Sêð,’ä‰1*•êÀïÞ½{öì”·@ñññ—N‡åƒ|}}ïÞ½ûÜ .Û·o§L××ׇ……Qµkkk™þñññ™™™ikkãÿ‚.@‹‡‡ÇëׯžÃ‡dÂ+W®466ç –È-XrrssÃ’ÆÖ­[ûûûñmÇŽdѾ¾¾M›61–xânŸ={ÖÏϱ +ÆH"c–ˆ,cu§¤¤lÈÈÈ ‡ÙèYäŒAŽ"ù“Q›šš¸”¹»»[b$%Ôðð06P,h“pøŽ‹ùôÂG¤„¹ºº:t0–:0‹'b ·€ìììµkׂœ)äرc7nÜà€GFFB&z½þ‹A€˜a0>>Î@¡Ž'\‘À„=‚UÀ˜®®.¸åéÓ§•••Û¶mc oooê;É©îG¡¡¡Ôz–‹ŽŽ¶··ïèè¸wïHÄæ¤D²O†††´Zm\\\ss3õëR0F‘UÊ:0FH£ÑÄÄÄ3lÝêêê¾¾>rÈÜÜÜB•Â/_¾p¨}ããã„ pÚ¶m›“““ÈÿRÿ{+QCCƒ¯¯¯³³szzzSSÓÐбe—‚Ž¿ÿÙAa˜þþþúúú„„¾`ppðR¦PybŒ¢—‚1Š¬RÖ„1BÀ µiÆ »ví*((hll˜Á/UÌx‡ú.PQb¸N§ëíí­©©ILLôòòrss+//§ Jý­PLhhèÆáRÊkGG‡V«¥†$à|”_çR.Œh>:: +±\¸pA¥R9::FFF>~üXê¿+±ŒY"R0F‘UÊú0FhrròܹsÞÞÞ...ÑÑÑÅÅÅuuu?~K„ E¿Ïÿa¢¿ â•°™™™!É·¶¶VVVæääP[$Â¥V«6ŠÌ¤žžžøøx''§;w&''—––¥¯þÅnݼ´‘ÇþãTZ¥jÄ*J}©‘⠮œñ 7+ôT°«j/µB²zш¢‹/ ôVÙß6PJÏ»Lwæya2“„¾¿Ì|NNîîîJaʤ4¯‡¶K;ÃÑð™ðööö6ôçÇFGGëêêÂoNNN +…¨/ñ— cBÆKq͘ŽÆÆƪªªž?ÞÙÙž†333oÞ¼YZZúôéS蓽½½ÃÃÃ?¿ ¹\nkk+üÙC·„šššljj*//oii _¼¹¹‰úš’åáá!›Í¾~ý:´G*• +ÜP sssáî´¾¾¾¹¹îÉûûû¥!†×|>ö„á®®®†ò™˜˜Èd2µµµ½½½ô'2&!d ±ûŒùîêêjyy9dÌË—/CÕÔÕÕ½zõª½½=Nwÿ <.ÛÚÚš››«««_¼xŽNOO‡ÚùúõkÔWÀ?Q:???00PSSSYYFÙÚÚ†pOOOi‚a»££#ìohh( zhhèíÛ·ÇÇÇQŸþ/JÆ$„Œ!–’“1?¹»»;88Èåráòÿøæýû÷›››ÛÛÛ'''ºå÷ôôtyy¹··F–ÍfÃìJ\[[ÛÚÚÊçóÅb1êsü1 !cˆ¥Äf P"cBÆK2NÆ$DÒ2æôô´¿¿ee%êá?—Ëåzzzvvv¢> 2&!’–1ggg555Ïž=þø ƒ.++ÛÝÝzÑ1 ‘´ŒùòåËüü|WWWkkkñæ›N§gff®¯¯£^t@dLB$-cH“2€ø ÓßßÿîÝ»°ýñæûùóçL&#cˆ‹‹‹ööö¾¾¾>d‰¯ñññT*%cˆÛÛÛðt«¯¯Ïd2¿_ÝÝÝ¡W …BÔ‹þÅbñàà OÜíïŸßßßG½è€Xù[€,ñ( +endstream +endobj +110 0 obj +<< +/Filter /FlateDecode +/Length 5235 +>> +stream +H‰´WÙrÇ}ÇWô#ºJMoÓ3y‹,Ûå8±K\IUœrq)E„$“”dúës·^fHÑJIE3½ÜåÜsÏ}¶]µªm¬ ð×{§®/WO¿}٪˛ÕÓ­ùµUFm/V›¶im§¶gJ¾|R]aü‹MPƸÆõ¡W64!t°g¿Z›Noÿ»úz»ú îÀ­¸ NÆ_ú;UÏß­^¬ž‘ +ozƒw›t·)w·éî–î6mÓó[®vƒoñê¯;½±QëFwhßÚè€{ªß›N­Õ÷zc þ~ûN›V­?Áoµ¾ÚÁÛfPëó˯;ÑžV§Ÿ}Ÿ·p í¾Õð뵶ü–~кð|§þ¾áú?Û¿s[‰+Ç¥1žÝ2씩œŠCãÌ ^ý¬í€^½Õ¦Cε×j½ã«¯õÆ5ï‚ dßÐDµ>¯Èà²^ôhòÆ:|<àòKu…çÁAïÐxñÍ …ÉBdÔ{Ýâ ùFrîŒíð~XþÎóZü:K§¾…Ó>¿Q¯ÓÁüµGçöh¤ÃSo2W€sÆ¢7·b|å•¥3nÕe:nŒ¸æ£v–ì +xâ[u›ö¼Ò`çNU‘ʦz\z™ìq/Ýf;¹=­”»þ@¯Ýâ +p»+n«wbÕ…ª þKêN4œpªÁSÇoy•" yðqÇx‚º0=äË­s@Ë{mÈôë:ûQ¢Tr©“¬qtr!Å¡€CéI rؽ¸“õ7Xrý<{aȵ¾ŸÄ:½pZJo#÷mážÈ©Âõ¦–,©‘@/Þ@¤C>Pì:n8|^hØíÇH â2XËQóBª}èƒwíñ(³èsA9]6¶5$ÄÂR{ ᕶý€ˆ²R÷~ºyÌ>9J(¢@µK+é^ÂbÈ?zdWÀÐzƒ Žl¾ÛÈËeÇá_U½ºN½qŒ“È,Qaã\eÔ]è8k)ÊæN½ExÛêœclCI”â²B+Tc´õŒú)7ò³„¶bÁŸ¬ç8®ç€—Ý©_Ö:D"X‡oíâåRC‹†_NzBÖ1+ÃVØ_ìÓŽhý‰ú”¬*×y¦mú«‚·âŠÀð·øà‚ŠÑàÎðó­½ÇÓõ•ðuŽ÷=PF>¥ÈäPytU¢3àà1ÖTßòQï çÌFT¡]& ¡áf–ý³X³Õí'(¡dÿmó ,ô5?äöbéØ$%ˆY2Ûhº¬Ø-¹¨­eìiê’¹ÖÜé‰ÜoÔõNøù–+¬Æ ì4£«Ç²`DnD‰æX ¨ü`Zk&)iU g­ªÄ²2v Û®æ„=U!\í˜ÑP“uÖ™Š Àc‹’ƒ²t³T1rØ«?Wëñpÿ1Blý +y͈q>%Š»åé\ApIŸVzGX3Ã]í´JÇÐÔ îª•Yhå +±¹ø¬kOQ{F‘ hu©±¢ î)}•>4ù8iÒ‰’8©\dÝ=E–Ûq:A'ˆ®¡V$3Öå{£€%bÓêk‰dâò½ØYy.PRn(^ý(ÿ㪪t±GÅ8²Q:b7k'1n³ÂP·Lk×R–ÙÙÊMx *êá!½”ï-•ôŽPE¦ƒnNÇhäÁT1|.UŒ²ÿPªÈªõõJ!Ö10ºýÁ~F@•±¨ÆNÀûT ~á)ê:þ”óXOÂe €u„ªÆ'ô?÷8.¹¯T–Ù¥’êÛÌs™oÝš]—²¬Ó®çh­»Õ…PnÙÒ°û’å®Îr1¦ +‘ÅžÁVÕ8ÂbCóÓb-B*ÇôKÉJc>-ªº‹Šü_$(ƒ€ZXfñßíÑ“^@"þ¾¾êØXe,ñ2–8î{ž¬r†î›.ºÃ’0 VÓhÑݼE›GÉñEÍ5Ĕ .¶¦ÉQh:Ž¯Ë©„ønJZa‰´²XÌ>Kål¬Ä=ÛËY-·r—Ru÷OÀ%삯v^”ùø»”ö 鈧Í +ví)nýÍ +VƈiÉþ¦ÐÈCË>ÚÃX7Ó<Òösfy^‡¹/¸Ñ\fÀŽËiWdîN>-hC1‚ºOݯŒšá˜7©¼ò‘©üˆVßçâØlØû‡KˆS ¹“+=¡aI¡¦¥™‰Ê¬ŠZLXðþzwd€ZR î˜= æ¨äf²òz +!A=Ø‚9½¤¦—d“¹‘qðe'_ð–PðѺF¶ÃRq©ª§IK/P¢9ç +¡çÛ3çª{5B-i•X&bÝN¸°¥ø—ÒÏF¥™(!a‹v"èðÖêôÇk¤#j©?Ý›=ŒÕxDSiOU˜3}MÚUN•:¯®ìxJL}nˆÕ´u4\ºÌ‘O·æW˜ÞÔöbepæ$ÍnË8gúz®…! •Ú­6øq"†n[¶³Åib ú»¥¶Æ-ìRly%'T¬fxÌ4U0g/¢ÙEùænÏ„Væ\Ö¨.Îá‡ÁÏð+©9 ¹d{!å™èGnJxÒ +êˆåæ¤AÙ󵞑–a.m‰K<~!Jé=úg…ß"<Ç,<ÓGÒCÙ§ˆ&:‡æ€Îg>Îàîês?èq?8^®Òú<ÂøjÚù"ýºWˆí°Ó™ÍèX˜8Rº&¤o’>7°$Ž›È¸É^Ï#QÏ}¤Ââ˜ù™*ŒFÇÿ‡ +"3xDË^‹÷gñÆEU䀯¥ê)¶Ãq8ꡇ<žÉ깪'”b¯î›1*säVÀŸe©äÌ4yÀ‰ãzšã‰&2a˜‹ØjªJ"+ɹš©t`êt5›?tDÀp,OZB0ãñ€vÔº?ʽ'1%ñjÚ§šîÚ’dü"bø"3}£¨¡ïÕl„¡½49ËQ¸eqçW°ÒšQ%OâQï4 …ã G—Òd±ð V _oAƒÔ]€¿TÏõåêé·/[uy³bVéT5Ú¶½òp·@`€CW(•úˆ[‡Öã_ÚŸ÷µ ²ê}6ÂtÙ9Ù©øß÷xŸÅû~SBh*@¶Bì£ò˜¼:ÛÓükc¤S®V/W/ªM™q“mB :° =¼)bg qxȦl^lD¦Þ¯çð=”c÷<Ûæؼɹ@m³:µÀðg +µ(cDKnÀ&ÁpȳCÔ žä?jKÙÿ—”¯‚*SkÔ¨Öº†'Ïbjý×—\ß1sEÊFý„5Û¿¡;^h€ÔÏß•§LqÿÀOþMø`°ºÕ(ÿ×/ù¨oÉ?¢Ì…ÏŸøñÿ˜¯¶6’ úž¯˜GFbÈôÜGBHI ÚHÙUØ]­Œ´27à +_dcHòõ[uªº§g<ÆF ’ÌØ=ÝÕUçTsÈ Ÿ›òÇ1w:é]ï@×@8Ÿ>‡F—áZ'àñO˜£-œÆi2Né»Oˆ°ü‚韙Àtõ?CÇB¡OÔ®è׿B(¹#æð«cÉp^Å5ÿ-Œ½Þ‹ó<(JR˜ <ªmE¸K‰P„Àܭɨ}lZ nX­³èŽYw U}ãY9%jÓY9AÈlZÃsCS+å¥æü@!T³¹—œÓ\‹ùŸ/œcBÁᢷÄS=u¥t¹”\ÍY¶Ò³ ­0„Ñø’‚×$bt21>„]ò±¢;Úwº8š¿Wé£ÌC@+”b™R¬Š!ø³é·´‡Ø-U¨iÌÒVó´à«AOc:Ïf°^|4_ÞHnpZùÂÖ·Xåõ©Êó§P'*D/—’Wñ^%ÊÍ9W•©°°ðeàOÒ9ùUáïÅ6`…4Mµgt~úDA³ ?Ô‹+Áè•|ÒtÓ%&NÄÝ¥ˆÉ[Û’+kõZmj{8É*éÔNm4i½øõ4I +ùÏFp.}ž·¤ —.€VSn.¡[~ÓqÆhÁ®{Ägz©þ¼ëAQGйú¯‘‚Ö’[^+ŒèmÂLƒ%"]åÓhÄ;RÔs¾” ä™ ËÕ×¢¡¿]°ÌÆíÜ‚HzÇVü¢â%¯óW/kæ2Ø9ä²#HÔ=#§Í€ÒeN*Ïä£-ë'¬HnïÓÊÙÖZ9JèÛï„QƒûA”ú“{bjÏIʬ]ê-†ºšÞr"‚w€6•­lžá ÃÌÚ SŠÛ0à=.Và¼L6ZcˆÎ¬}Še|µ–Ÿ?H¿ËÞQÉ„Ç:§jA¾Ú ~µõŒpYýÓâÝuÆgæüYä{9˜1Œƒø–²Ûyhü´÷úE?­brCÍY+ö±|ë§Î‰êÉR~1J—oŠ(µ‰ v²Nƒ¯±¹-Ì…yü´³Jñ¢zU¶žâ^ q 5÷ÂWýYŽ6YJMTêÒ§k×A¡­Ä7þZ\k‚Mƒµ’ûÀp›f†Õ* …€…q-&wÓ/ÛêE¼&‘ˆ´ÇÏ—–×–wÚ2””Á$´òMt‹`M_vP€»A‡kw6Kí4~=bºäöP[FÖßàÀ¢IÜ šÞ[·{€f×HÑåk·-2Š8ƒß•o#¾V³Õ¶‚ÓbüfØÿc…6<¦ëñ>¿ñ>ÆiØ‚Q‹§kfE/Œ¢ìi#{•ÅYüªâp=‹½@Àb$§iœþ<ÊŸGÏ#‡iSìyl—Ä9ªuëÝ ¤BˆQ‹+Újšo°E‡jQEwï:S§ù€Zg:—¦¬Ür/|G£À±ûêÑS×Æò»?Ôœ!ðò±À5ázÛ¤=§º™$a™¬cb¡ØâV_KÛ‡vH‚3KþdÎ]‹&æ—ìeÍ‚±^s9 •éÔ0ݘqòÚB¬ír¦¯ñxlDUH+É«}#ªÔª¡¼@ÊļÀI©’VËEÏ=‘y"#ÑTí8ËÓŸÏM/—ধãöxv*ÚgF¸Óê€zÚhøuÌyvkÌêšuÅÏO¿È`ç+uT< 'ST£†¾¦„¸±sõRÅÄ7!ýšL7C9塼5¥[6«ç§¼¢ _1åÜŸâTÿ󬯂“ A®(¯•C2”¢}_ ÕÑ¿fÜp "¦¼Àh§IŸ¦¿éYixtþ@õiúÄR zö¨/l0W3v®ø1u=c>èmª¾ùËȦœÇ2ŽÕbJ£‹»S«x¬KüþÔÖb«ós}ŒS9âÊ“¬ª!2ÛìVôñ9 ÈÌí§·sÍ]ŠW$¯‹$õ&5rÜ„6¬œ°2¶Gƒ7A—¢ŸrþÐcçÞíf*UlÏXˆ*Z1$ê<ºÖ§±¶=Aðl)Àº9s +ê1s’m4'«¨Œ}´Ÿ³ÛÉD“$E]³O„ \¬”¶Ûf·’Và ¯'šfÔUW3_ÉŠf9:yó¿.@î +endstream +endobj +111 0 obj +<< +/Filter /FlateDecode +/Length 5637 +>> +stream +H‰´WÛn¹}×WðqxÚM²¯Ù8 6XÉZ@â`aI#ɱuYl¯öë·®dõeFò&kfºI«Nsê»Ó“ÚÕUL-üß4É=\¼þËÛÚ]íO^Ÿ†ŸjÜéåɶ®ê>;ùðÕuUkà__µ®›*ömçb[µm/ÜœlBïOÿsò§Ó“Ÿá \ŠË`güöÃë?ßÔîÍÝÉ?N¾£žôÏ|ö©ÍK«ÐáêøÍà†¶ªÓظ>ŽUÈ'þksícª:·ùì·t›¿m«ÁmÞÃ>¹õÛ»¹Í±Â~;ê¡Šnó~øà·©jìZwçCÃïÀÊ+ßéÃ^6¦EðöÿW'|!vrÜáa„”mî|‡çº@ìñEøá•ÛÁRügß{Z¿ô¸Ù9›¦¡QПh—?À)°Û“{Ô°¯=< +xà6â÷½ädç¾êrJFGAÊw!yù ïìó™°ý™Qáè?é³U„?O>¸zë·]5>{+H/ìq©I„\uøæ¹»ÇK ˜ùÄÉë1–+}ñÁC’$…çtß”½¶1a¾C ñ›ÊùŸþ•Ð]GFçî:ð.Mó±ÇØ_PŸ—j¸sñ…¦:i‘)÷=®ø,ÉÝCšéEs£v€PÆ ú9°ÃžбV„¯\Âòî±à#¾ÏL¤7à“œ‹Œ½Pcú>à‰òJa@?üNa!ÊÊH7}„ûà %¶1$~lð<%!ŒÍ“+ÔDp¨Ò +ÚfÃ9b3ÊyçÏø}”«Œô<á_ÜV ¦¥‰"hU¤n‰ sj¦m“Ã%-d”¨pOîlçÌóÜ¡”†ÐÄ0á0Hv3i½I‡3ö6óL•{‹­8¬ÀBàb`.­cÞH|×sCw„(UÝ‹SuíÖ˜®SÎW¼ÎT$+¢9ì¬Yt «/bZ˜Bß•ËÎJAQŒÀÌrþÿàÌ.Mö(DoðEë J¼÷#„ŸÂœ’²m§òÚ"MnÆŸ—fš8cŒÏY…aƒZ Ë«(Ôu»ÓiÒM@¡éƒä·XÏÿÞ9S^žò† ?.ÊVWÙÑ$;È‹ïEøxpzVœ?/Ï{,jVɃ·¸°/îdƒ?è(Æ%l³0SÇü"«ÿ(/E_ 7ðïEÉÎÍsü37 yž ï°Dm˨éBᢱ¬…hê…zè +¢¼ âªdûPÕ#K ?7¼²öo]y¿¨ÙÄ·e!À½:¦4ÆoRˆÖ9&\mf“éy+P÷ qÅk¨y-zÍíç +wÝ!óPŠÂ<ÀòÝÜ\¤Iß-3:¯·€ÆÊëÔóòÐ*lYìÁâøLSž|P릪CW˜¿!þR‡ ìs¼ÉGx¡gz2ñtv²l˜æXS€ ¨>ï¼o£_ÅÁæLp‘› [£‰ àó–ŠÍû˜€G®NaÇ5§"ÛYm'ÃÀXtnejÓl©7œ4ŠÊ ~¾J¨å&­M>ÌK8½„•ñõèlWz«ÒKûrý÷ Ïmå@Ó¶²ïÝ‚a°ý7Nf…Š†âÌt’PÍzyt[ Qn‘ˆls0¿Ý±üBK§¹Î¾0‰Djœ2nà:,<™J2QõÖ ‰ÿlòªo ÷ˆå!3:gwç–²° ½8’gÌQ±önb¸ˆ +¿"ö–—šr +Òa'ËâÛ¡ú>c¿fêÅËÏIi;“ý˜/´y8Ëݤ­Àô\ÐÚÔ¸þ‹OqÍ÷bÓ$'óâÏ%M[œ¿~ÂÃnø´‹ëÆž;ùðÕÁ)àMÐ`𧦯«êàZ ÈÐ%2X›Qhù(ËgÞ¤éÁ>¬kÀådsâÜ)ú@„e{îh¿ÄúÖâꙩMÔU_äîkþz>åünGZxºYÚâÌN¹³Z=;ŽÒe¤1×ån§=9’óoÂìRH/}¿&::–­¥dU†,¯÷yýœ=³a(zfì¼$ ’É=Ö_±<ŒócÈÉ’¨3´S·¤²{m”¬0Ï×òP¦fµ^¤ñÈDº`Þ÷:…̦3<°Ü´QßBWxM3”Ø, ;eòËvÇeë1Œÿ‰Ý Êgï4—XÿÜb§î¤MÈ^é½3nÛ¥sÍ”¬÷FYÏ’×.q²¸ƒS-/Û”í2À Z/˧c˜íÈ +îx,=ƒ?õœu²™ú%ï…3v% +)4•}i”ørçTBÍo„É·t@¦wàpáÖk•¦D`æ¦4µÖ×e™&2--9cÎá3Àfâe¯ãÿ +‘‡ †Õ(Räx;ƒÊYãË6Z­¹ðnŽ~6(þžq¡c~7D+úÍ<ÝaÝnº;Ìläl †ÿ\nõÌ|ùèqp-&g`KÇ£ÛQkêžèõ§ô‹ÃøêR_šC±àacÖƒŸY4¬6Lœ´ø‹8¥q¹9$—Gp1‰¥y9Õš!SçGvŒ}/¿ò‰ZáÜJ `…­•F$#™ [ÉIA–9=juêó ˜˜Uz;±I]rÛœÈßm|G¥œ‹†Y¢W=<=9±õrj‰B”ç=«»êÕ”TksñKn8⥲6w+=êkfŃX=sbÂ&Õ²Žäøg߆ʖ¥«|$¿p³ ”“×i3_C,ïÛ;LIFbñ +°y‰•ÿx'!-“b¡é,$†x¿~­ßåA}Gkßy‰ðÛ¶¶ørÆ÷Â,õHÉmýH1¾u…s¦ j0ë-6.„1c°í2¾AÎDÖ»ÁŽ®MÕ<æ%ÿ¿Š‡|–n}C¶â÷MƒG”a°'ØG˜æâ$ê¿‹Éý´6Œôì]à03ô +ìy~zVOWœ§À’ú}œ ¹Ä;gˆG¤X(±ðÉ¢¤¤PZgTeÃH~p»LìJ«ïné`‚U’q­!TEáɆYÃ-F­G/õ Øá6ð;^)ãÚGüx©Æ—%;꣆¤QŸÔkÖ¥,œEÜãq˱5¹¦kc^ÐZ&¥n†SŒÜ 4Ðq +Ÿ _¡N¹[ñT·Ì# í öf€Z¸i¥²¹ «rsV,Ž°BÙo¢q³”—g&f‘Ü¿Ø\ÐÏx´ÜÊ3{[õL$YÿJ»v1hÀÏD¢]eö9føeÕ^}~”œ±…ªýâ"Óñ‰.l¯;£†l´ûfMLç“Ó\óô  Šä|¾Ðýz½h°Ô>s•$´ì­;jÖmHέýâSd㢊1NbP‡­Dùè ® Ó&–-¡eËÌV¤ãA eFPF¨`úZíûH—¦.Òg‡î#niÈÎe?ßNÝj™œ™»Ên&dœôR„Žf°Ì­@X‡•lªdW³2­Ís§Ø·/“ÕG DÜAÛ3ô„ÊßT;uL;.ñ£LÑ%‚ÓEE–Q”(Ek.¸Zƒüa‘ ZÄج…ý.Ç+ó€Ox   ™f/Ñ(´Ü:  SÓÖ8\ˆ¤ªÅZ¼×ŸåYÏа$ʯҸ`ZªØŠŽæE@ä±Ï¢hN–BB{<ŠlM;XóU–3g[t+ä)n1Ñfl÷,5ë¤[pyøÛΗQ‘õò©_‹Q¼)³9yS ’¥å(¼(L‘˜(*¹¸Œ*M##N’±žÃÁ”"ˆ—‘»Ž :Ill,cCŽè‘iáà¤ïX8Rµ§ƒÜ)!Å“˜ìÌ­d‡ +³ÃF.e‘!SÆàž|:/.Š îQ…$t+ô:,)`'¡”KA@dĸ›T£"PCYA´‚ZÓÃ0nÞö†½Ë£[j¦÷mdͦÇ»m3º¤žgõàÓªvHI?³á]bÃï°ÃÎê¨ñSM| 5iM³­²®.è‘Š®Ë7l‰X×Ê¢Q89ŒRŸª½Or°úÄœø#ºÒŒhhÆd˜•q{–%i}K~z¯k)“ƒÛX‚<¾ —ºf’6K¼X®Ç…\Si2|ÿ½$w6=þdI´µx:VŠ<@«6h²rbß:…?ýø+2rʉìYö½áô¨ÜžEîˆ<–ºhTÿ§€j¹™{º îþ»¶^sµ* ¬PVsúq‡µ MÊVÖŒ,²ý”â>jz™RÇ¥¦Ô¥Ôf¶ÊÔýž¡©¿…ƒ:ǶÅņ/+L­ÑÅØ}µÈépK4|.^JHæ%æb}‚ÒÙŸpö ±d³ŸËzaÞL³eñ­a¼–bµŸg·Ž.Iô?öŸ'ñ?ô?Ðû™Ò¡¡Ÿ³ÿN ¼T…샒ÏB+šŒ®UÎxëÑÜ©WDhYæd?ß©Eе­¢jh€Å;(–Ãnغn€¿}ßU÷OÞüö®©>~9ysÖþå*à®'-b†V«®s4·CÕƒûóÓØ3BßÖÑÍd˜.ñ:Ñ/{°Ü­§ïŽÝçÇ@X˜Þ¬Ç·ZpÜÑS̤y„ÆP”m§ô;©ªüÄSÏÏÝÕËóÚóø¶£¼%ŠÅ”ÁÂ×÷M7Ô¬Úpo¸ JÌ–Ê<ÖóaÙZß +oDba›Y}f@¥D-LR;!`Z`gæššÙú”¹6,üè_”×VøÃÒ€ÒŒ>ýˆüGøæp‘o¾"9ìÍ~a:ÂÐÝÌ4ëEïq³¸r'[®ö¯g'ÿ +07r6x +endstream +endobj +112 0 obj +<< +/Filter /FlateDecode +/Length 5091 +>> +stream +H‰ÄWÙnÜÈ}×WÔc0iVqŒ¡I2A€83 ä!ZZ’m-v·þ>w­…¬^l 0n‘ź۹çžûf}V›ºrMÿoÛÆloÏ^ÿå×ÚÜîÎ^¯íoµ±f}sVÖUí³¾2òã«é«¾ÿ†ª3Ö6U3v£q]Õu=|óp¶²c±þpöÓúì3ØÀOñ3¸ÿúûë??ÔæüéìŸgoȃ–>¢m˶×bº«#~m-Ÿ´Áâà&pÉNhòß«÷E î­ÍEQÚ±êága{ü÷šÙʙնhÀçÕSa]‡¿À76=zUôUK'l5šÕœ¨ñÍCáÆÊ&ŸÀf!pøóY¾/À?¸aS”`ag¾ð|0«»b‡ío7æ °¡–=+mdžà Gðp‰Ïz:K&v¾ÐÍ›8ÄÅE¥«&Œmi“²qÅ·ªÃiþüð–ÙLþà1\ô ’Öé·ìÅÆÿYÿí Ê×;®~ /&(ì5ëžœ0[òã#_±)À¿{LDõbž‹]2[â™Ë eðyƒzXôvÄØ*³†WˆLÈ8–IJòjgvE‹§î +°ê ðu`ÚbÄŠ&|ï0Eå(¯ôŸð»kùwc.LQ£QL‡¾_àIJÍ„?¡ÁÑx”ÂSæV> +eÜI˜OEÙã0LÞcɼC÷F¯ô5ÐÐsÁØðÐÞ2¤àœø0Ýþ(öóWEUgÜ q +?ê +1ÄNáèÚWr­–€(h 0íˆ|p}¶*‘$JO+¥¼ŒqByory‡´H:)_>¡;é ôµÆÜ@¨SèLEÐz,Ò§ÄG@)8%ý¤$@xÇ?BÏ0´£Z »×QÉ —,}p•.íB¦KêÙèúͶkC7ZÆ*äŠ\wí—Œ‡]EõqôÁ3o1ø°ßG%;ߦ÷Ê.÷¡§|`Fÿ[4籂m” 'æ]μ2G=-™#Ëî!QýñD]HkùW¥U–°ò`J»†ÚSb3óƒŒÝï<"t,%žÚ äA1ä¨æ/ÅÔàµJY½PVBXÆÇïí¦‚2·guÙg“=@tQ6:&ÉžØQ8JÃy‚÷ã6šoñ´yÖ:%sÏðãNGãv>Rô„ ¼0<7š~‰;, ;Êq )?ßè…ñìwž,Çd“9‡³Ãî0ç9“÷âYÄi¾˜BepÝ¥x9ëÄ!U Äl|ÝŲÔAiCâÇ€JMزÑþˆaAäÐPæ^³4Ã<õÑF1̘lyÁ¬8aZ³×§Œ*DÜÞIZv™wL„eØ¥BKÅRˆ€AUôè,ø6âÌÆAȽ[}ÏÓ>xP뢀[O&™)œŒ¬§Z“dLFïÂt.Ò¼AêÜ{IC¼dºðr›ô§É$j®Hà )‘é¤çoIU«é@6«Ù,ᓤ"7K²©Ž¤/‚Âþ’ۆʼnŸeQ"¡šL*T±_—½¥üìe8ãàûËíBAµ<°ELÜ…1d<ʃƒæÛ“ø5‡— ‰‚:u‹“¡½‡Ýs줘ÀÝ“VT›Q*תKâ¨ä ïUò#{¤Ó²šlU¨¶Bf<REˆ³BwšÈO4›I@•„¨[9òD…á‰Ð¨¬@OЇ^ƺ£.Š ²~W ØàãJî _¯íoÖ@87H‰W†xÑâjVÃÖ‹ŠnìFÓû¡ëÌú"ï+J&ræ-EÐE!Î6œLR\òÈa¢a;%L݈R¡g¥@¢ë¢ -škXYuDt»¢–yˆÙ¸Ä—ç›Ñ5_>ò§Ñ<Ÿz„ä±L0ç翘ô ÔÔ*çh]KŠªz¤YNÒ3.ºÑqzÞJßcŠ3å*j/•ºÅxHã3Vv9\oƒ¦UUF-—ÛmDºË§L'H¦ÚÛŠ Þ{ Eé“ <®©½×`’¡I· ‰dwŒä’SØÏÕ\åt’.TmÄÎa„Å¥ •:o9ÎHºÐŒí’&’LÐÐñe÷ºtFéìtØ[Òíä\Zù\†ø/AÌ•§ y¾KÞé 0 ¹^X´†‡ùhÓè§ýE§PSÍëDó6ß®y½(,¹ÂŸ¸s3kŒ–(”éÈfÙíÛ,}ØôrÏ}Æçe:ü`é¡Úa\’IëªÑ“I®ÚÞ!±M`PŽç…h¸*š†£é𯎈î0ÁƒˆÏPo&HYýò ˆ°†²ûÂ¥A ÆßAéšw`~ØXD̘Áõ¬†Ç)ÒTf¨„ W¥„º‹X4"9þm`pë8°Š¹× Ì¿à‘ìŸxÒüŠ×›¿Ñ¥jÅ+Úögt«,Ÿe~ïXr¢GÒÑaëLxÛ¢ïÇô©—xÚ°~«LXÂxèAŸz¾ŽfØù#¨Ýh>IîéŸ÷’2%ÀÀŸ2œ”c”'E½çýGçËœa“ú–ßâžM4„ç(ÔÑP(³%O{mL{í1ÚË–¾¯E͵¤%+³†O‡ ó¿‘Ñ@YxkY«²X@\5$zKyÏ´%êýþ!–<1Ðô¿eJ|Œ(å¯ 3^‹*4OÚý ±1Ñ>¤SRp¹äieô ‡(o[ã<\Æl¥K¥„–pÝì"Ù}26›e½r,u« ›ï[žG_Ï©»IÚí<;tn©Iá½­å8ã÷YÆçïs[U=Ó´'·yBSÕµðI²µ2O‡ªmÄ`¬ÓÜL§±øôЗ↠³)دÅÔ®8,ѨŽ3³‘Qˆ4½‰„3ŠâAò×Å5^tÛLŒV£/A¶Ô}{°33Sa©Ô<”d ²ØŸúÁ#½ÈÊÆüLÛîï>mèU¸ÞâùÇy°ûw—™x6wbê‹Š 纚…‡ÇØráPi2[™ðf[J +]»üe}E[gwŠð_LýFN(8R«sŒ_£¤GÕEºp߈ÿ”`›±eUN;žŽñ qZ¼úFÉËÝ$3h­Ì ƒ3!×vû•r;ØH)o©Á‹ÏEq¿ï Ò¼a½mbà€ŸîÄ„^Ò,™² ¬÷‰¢Dá,Æs/C@8AÛGßeõ¼Mô|ƒR0bÕA¸Š··™FN)ŸÖáÈz2\¢»ÖÀ<·àøïÄLϘi 3ýh=èyçõq—FjNûÕ ùyWƒBÓ2B=°‚2î`˜ÕÃ8$Èa¬¡ŽV¹ƒ0Œ).»A†¢Y—`(Ï+A4VÍ*”™¸É8Ü:öum“BGSÑèÔ PþyJÐi¨mÊBçê‘yÉV#E¯³¬ÏÌK]×3*¾â)ÇAî4òóÎ&&æÒˆÇa©ÂÊMËa¸ÐC[Š«÷dÇWlÏH ë;$•Jó"}óËÔí: 5Ú ~zä¸ny¸\Èøõý¼—4nM¾ +A%·±ÆÓ™+Úïà]?$ü†ýÛTqÿÀoàÈÛÂ1eK õ”ÔëŒ&ØjœMóf>°-µa[Bo‰ ®x¼,²pÃñmõͼ‰Æ ÓjJN}D +™Üñ Ó8ý{:È£>ÖXÝAJ¶½^Å[œ"þ½­­,LaRdƒïóÁ7é2¸Ø¾–ƒ9ÞÃKž¶q Oš€\sa2žkhš¾0ºbpuðºjbpÁôÚBp§ö Ü0™"ºˆ^–3…[>ìº%²Z²ïƒ|[6Gïgû÷Î2–$ÃñIrÎý pwYáÀ’k¯no{ a‹Ä´ÄÄ‘öc,B¨ñQgê{Æ¡]Šr_)!òÊó•ÌúÊȯ¦¯ÜØÀ•mL‡J°lñKg_¶!y¤Ÿ¦‚Ê6=è¦Æ´u)ñ·8\ƃì?ýÿÙ?.„;\ˆmÐncnŠÉ²@þ@o²_¼_í‘üÒkâ]ºM´û)'ÄMX8òðÕB[FèŽôÏ÷XRªÇr¹y¤¹ä׶°“Á0ÙÉJÝÉXù RîÚ1Ñ?aöq¥¢¦"ZŸ¯4x«êŒÆôé¢?}¦(#f™Ñï›c³¾N‘›CìÁpðç?"-ë‡Òñ4U’³5ér!\ÈÚ/ž‘¡A”y^,L pË確Á7Ø6Ú¬<€TIö ãx´AÌÝ +Ë…¬•ZLî®hbRtSÕgwW?¿$>¿¶6sQ‘0ïVE;1xæ‚P?JkR[šGFðïQ;4r¢Ç<„B& åwÁŒ/_<óö¿üÝ´(éûDÒÿ¬sïÑDëŒd¬±:nÓ÷™[Aÿc¾L–£8‚0|ç)ꨉ°&¦«÷»9øds3a )Œ1oïÊ=k陈B‡‘4ݵäòç÷×Nè´dÎŽ"n¬÷ÿ&Ñ¢¹…½È4R‹ƒ/P©6åuL14lìAÍlÇ 6Èîi—ôÌÉ\²'éÒJ臺Tƒ,X#üã/JÆ=³¯ÁZI¦›2Žè©.W¹Š\”Ú#4¸+TrVèFf)ŒÅ Ëw§Â®œÉU‘в 'Ø)u:J©ÁM¹›é³|SJ'Üh/¼H¯Ì°»zM‘BŠ³šÍK5hÓ¹ºBR÷ž4)ß +’?kã·ôÛ5¾K™&‚&t2iG§ x¶ëÍavdˆÝïðek ÜœÝé}à%îY©ö,•-ÀÜJÓxlê(¢Â@2rÚ >á±Î·žj‡÷W&£ÿo3L=hÑ#qü.]s&“—kíû¸êí´<d‰zØê7|k\šU?…:f.rÝ DúûW¸ÐŠŸX=Ï÷|¥ça:Ã….coQOªà^6Õv*\oQ CiS‰+iʸÇÅ#SÆjØéḧŸG4NЂTSúÀ½D;ßsðÌBT¥Žp&ëc¶‹™fôg¸Õn__‚ÞG\•àè^;†W>¿„ôN"ñCú¡ßú%EcX§ÐÆ}»ÔÊž\tR;¼¨©Iþ^Ký’âÚ¯Cz'm5.øΟ!»ß-¤+CàÆÄ>"‹H}¨n=žùkx}m-/(îB†fìr¡žH‰)#p§Y„¦6Ö~ܦ˜EíPÐÎW´›oXþ‘©§Jd s‰¿Ó!!ϵ“â¤yyž¼çA¬:=DE¤¢t®v‘gÊ+\RsºsD¼†B¡pÀëb1 ‘ÆVd’]ôƒ/*T£™ˆ‡¦¦–à¯2ÓéäŸF8ø¥óPô„¥÷´\Zµe&=‚“™t§LÀž-<Û (nøþxžFáùîi…SÈiµ«‰4† PÈbž· b»àd*”¹Ô9ÈFUˆ1 8÷ƒk(ßœrvq‰~4Ÿhõé<é’yÒÂT´ËƒÀ&¡‚'Ý÷¦5ŠJnÌš6U¶ŠKÇÀE0£¦ˆÃ4µhB}Mmÿ†cqœ+Ê>©‡^¼úóÄ«wÒå®-ØRŒ­ Hm(H­~‡,§ÿ<Œ™….9]í4 +{¶Ý^sQßUŠÞ‰TBˆJë€Wá²ÃzI¢‡—»á`¾c‚ êɹC9ŸÇE!Æ-Qðc]ŽO(`/wÁÄÞ +:|&þ €úapQ€ ™€O^ȵIÅ]õÛØ45GÖÆЪ ÷š ÍL:gËÉÖq4ŒaíUÈL76œÊeŒ³i/™‚c!'øˆEý>#˜žÙ›>͆1c9[ÕDÂ7] êv=úªË]rD ‡bÉf¿È$ïþ‰bOs?LÜ{ŸØ–S«OV·Ó‰Œ¦bTèÉÊ)Ca‘/mˆ K;T(ÉYCaó´ÏjCn¡¢F%8‡‰ÜbÁžÒ{š5Æ–-9¹#êé +ƒmõQ£ôJæ@ytøtë4~4T@RNIúñ›½Xd×̶ŒÔiª“[fû¥Bƒ¬_Õè£ó¥{W|·åó‰ @® fH¨|œ ¡nƒ´xÔ«À¿”UÓûk˜’R0XÒ£l©:î4¤Z'Jõ–¿€hôxß»78hÒ¢Ø&‘K¿¤úVî´ˆýþJ¾ƒ‡>>ÁHHgÙãMž¾xò¿%ÙÂÔ +endstream +endobj +113 0 obj +<< +/Filter /FlateDecode +/Length 5187 +>> +stream +H‰´WYoÉ~ç¯èG5 Ž§¹ò&Ç8Yïš ÄÁB%k%J2éc•_Ÿºú˜‹¦ì]0G3ÝÕÕU_}õÕóÕ¢Tea]ÿ{ïÔöjñìõ»R]íÏVæ·Rµº\,Ë¢´•Z+yøªê¢=ð¯)*å;_˜ŒØª¨ªölG¦Ó«ß/W‹pnÅm`ÿzóìÕ¦T/î?/ž“ +OºÁ³M8Û¤³K+gãÃWeÊ¢å-VµUQºÎ+ßÀ窢£ÿsT륿Ž +½4]Ñ©#/Ô‘z­—mѨ£µ^V…QGwÌ×êè‚^8u´… ¸^Þ]ð– \o®wzéÑæé®iáÍ­æ/Ÿàüý¨ÿ»ú¸¾’¨ñ­ ã:rÚ°Ë&¹\ù»¦e—ßjÓ Õ[½t…‡cÐ(ú>Z 2=”pü8ü‹.v¥.µ1¸á^_€Ç[õBCàüvháõ  ½Ùj‡–îõ²Æ³Î5E .w³š~+ü(oÕN{4ÿA/É?ôËà9à(…`Þ*@×ûv£k2¬¢³–ÞÒ°ê^â];<Ÿ"z«ùsðö¾¹ìRŸB0>ènÒ¬Gé2[‰_vלË?aÑÔµhP0èýº— \¢->]ahɆ£`«ô†ñr§MMBc.s¢¶ˆ¯cE˜”5àc;€Ç¤üBÂv¶‹¹‡°žI8®)ÎuðkÌoÍWŸG•aEÜË4hi8ñnŒ™pÆž±Ë‘üä7_´³l¬Îã eéÇÎéÎážb•-š`o,F©J6Sîê”»ürÁŸC€Û{R` éÙ>;ƒiüŠ8k2Ûuž<Ƹz’Îl5Ÿs6/á¡Ä<_Â]²k$„…"H^8‡ç<ò†]¬\QâŠ'Cq"<œ‡ü~–R(} +ÈZ ÿj[ã©,:è +¹>h>À)òÀãꤰì©O—'N¦Ò™@õúѬ磙\í“ç54|¾a²žÄbGøÈ}À’XâhÏg°Ñ‹yÀƒñc@ÌQY}H¨f¨lñõslÄtÄ”¢[1ʈ„¥ØU¤Éiî¨(„½D«øbs–'ßõÙ%U"¡`j±Ã¼ÏtÜ8òþ5˜«ßØùB×Ó]3Y| ^d!‚%¦oOSb1©Z´GUI=Z¢ò|;"€¥|˳Þ'÷f†ÜK<P]¸±A>=A¯îÌ&\7Ù]+îf|YÖ#@䌩†RÚ³kO?9 >b¢Ûƒ ;‹ ÷TL|7"ò‚6 æþ’®ªºG«ãZ=㻎z½ZóÝþ ¼Y³a„áñ.Q¾à?Þ›Ñ~@nñÌ ýò‹ ²¡Ô¬DxŒÒýü 1d©mƲbÄLAñïAØÿ+“OáßQãmzÚhòË=dJG4#J79|ˆVTïtí‡åG õ€°ÆŽ­E)(þ8j%u?3á„CtE¢ú½NÔ䉛RCdù²h#²’¸Í5t,£ífJ‡ËŒ*àG¤l›gž¤e{§’ÏdãóÛ"áiÂÑòõÒ$Mhjújz“ÀªƒGɧv6¦íÈ+ýÖ3ÓñL¯ã :=ùéà&ö âƒXgRÅ?aœè™)è…¶œtqš¶FäiJmL])‹}ÄøëLÿpÑŸ©VâW»¿ ‡©49ðÙ>rsè¿–’±ŸjgÆ4¹$Õ0€Ø”¾—édJUgë)j‹óFêÍ–ðžøtÌÿ£©³éiÂ,#Zˆá:¤Œ#i¯VçJ†ð¾”^}–J®s´Í•n0K¡2Іíª>@E×úFÙÖgÍõO!‡¬Ì #ÁµÜf\_QfÜÆ ‹I¿¢|¸ù^G™ñ_׎ÊX@Šs +õ.C=ÅßÇ’Ý´nOÀ¨˜ÜG´û}<6à«zŠ¯bÝ¿’Æy0¶Ý+iBŠƒ Õñw$ú3®ö%拹úÑb–«oÎÖ,5£ì™(ôèhät ‰«r­ˆõ@X^Ê·ü¦Qa Ø’Djb=šÜ’lR©§¶7™uýcÉ}@ZNHÞ†rþÄX–Bf˜:eq$b£jŠöă˜¢› ÈìàR‰4À–oÒxÐX qƒ¿@xøÉÂp"õº>é²æS;Më’FÌÆ+ Éq"ƒ ¾\ãâ± ¯)- +¬å&y’—”¸‹yzë7Ò(ï=þäB©Å#zq¬Œc4ŸTM¼¶mÇ×þt£JÄÖëõT'ð¦¯h¦ ®š-¸îЂ#ý{¥µã»ïŸœüìà´o0“ÚxŽ +”ŸOQšnE$*€Mðþwægq?/ŠÝ¨Õ„í›3FõFKšŒ¶n³Ö!›mÍÂd—GÔ£•K&ŽÚ8#ÌØaå–w¬%x5AêA¦÷}š7¿]àéFë$¦ÍL™6!=Ÿ–u~zt\!–U•±!±™Ij2͇y“]Iµ_5TSl'—!yö$ +£™èv—YVâa´¥aTe¥³Í vJÚ$.ÑŸm±9tEožÊ;ä^< šÝt5ÇÆêŽí@hXj$Kù6ì«(ptG ©Pš¢u¢mÃ=34ºInŽˆPÖ*;h‚å¥3SÉJ¢7Ž †”¡ ã/ŒÊ‹3ènÑ¥[l¸T¨LçI Äi…¶G`¥ªc#ß³}©†]Æ-™q“Lé⌰Ôl}ÔLnBq gŠpìRü>+ü9„WÝo°´Š´%ÁARB8,yz¡Ps SNô¦Xßù¨Óõè%H€ÌÃÕ¬žSûº]6Šþ…‚`z4¤ßcu–¥^ˆ“K%µ2ò2¢™ªë*Ï–Fá¡‘ÔmyHŒ¼eÅLãÃÓ(²Ðë098¥Ÿò§T=#9êвFÃã·µ;êAlòÔFÈP¸¤giæäÙ§%ïT%Õ`¨Þ«Üä«)øÅç ,)¥‚M÷±¹­B‚ûÃ'+©»F”Ü.$†ŠX¶žÊÖÂ8a{y\ÁÎfÔ¾Öšh¸¹4›|ÅNF—0¤¡!N@Ì‚¿_ñMî2yØc¹HI¡ú¨¿fEÉu|r» Ð^!åÚ™¡Þ¨-!ãÝqHõ¦!§ˆý€fRû½ù““6LGT‚{ mzªð3úC2j·óqJƒxÙc6ô€¾¢ #^ ïÁÝd×¾›„Fõ¦>`‰2€.˜rRh>—Íùjê`1g2¡%øXX®MBdô‰àms6Š]À¯LC’™"1`²¼Ä‚Ȉ;ðÜ’Ž‹•ØùH•7ÑŸÏ$4ýÁ§Œæ9©Æ¨*~õ÷‡7pú…^zè8!ƒ '8OãÄ{k­në); Úy­“Z°¥‚Ê°v@·æ”*|+4½ ñãPLÜóǹJe*rYr¹¿\A–±æ+øß{§¶W‹g¯ß•êj·h«¢tj@×—e«<¸h:ÄT\©ízq °hÜÙ•ÿ§í²­îLáòm¦…FáŠÿýO³xÚGeèQU s¨Ê`©¼:ßÐüß´%Y¹]¼[üœmâS=l†ôöö 58PÎîiJHRÕt‡ì‰ÎáýÚ2ߟ«ÂV³ÇpDöó|sÓðle~3`f…á.á÷\Qa"†è£º]©UXnð"« çs$(ÈøO˜y€Ô¯Š +³BŽhý €Q/ BðæW ¡ëÐEÕô/x ZzËŒþF(üe àwPÅ‹¯Ô/Ôòù3óÜ ÁL¿²Œ«ÿ-/N¤9>§•­¿/Õ‰LY×ÔûÿÏ|•íÆmÁ÷|Å<š€¹&9Ã+ø±Èò`%­ÖöWZ__Ÿîêžá,¹+ËHâèerŽžîêªýú#Ž äõÚ? ‹¿â&²¼x z:>&êt‡‡‡æÅ«—æ*bíj^õ’'ÒšxôšÞdJèûÜ÷}!¡äR€_9Ô¶v;wOžó r\ˆG©\&h(Ö–¿IÉ”¬|µ˜®Jœm¿¹Z¹hÎ’;²e×yÍ’WŠÆæY¸ì‰Þ8qa:‚pÍ›ÅL{-s'Êö§U¶Zœúb#_3/%j^:Ž‚×°áíÔ¬éa6<¹Õ4lfà ÝËÕˆÅIÐ}–lôe´.•ëW.汚ØøàÒVõN{T5BØW¢G«(ÆÕ¥$dÊ6YÃ¥”°‘É5÷Q *à 9eÔ…:.’VflîR·éÃÜßA‚F¾žÊª‡)©_§&Dˆ› O}ŸöÌ¢¸{x”bYW |æ•éDX 2h‚þð’Ð8…y"Xmp1@(ۆЬÖ|û©¸A b·íµD‡¬|óâÐ1›à4NR‚T¬–š)øm+UáÅo9e6Œã-k¼œ'ÀG6œÑŽ×C˜‰a¥:6 +Ðà²ã6Y +Q¤HÇÍZ£+ox§èÃtñáÝxß“n\iÿÿ¾Œá¾ü.£Û÷ßpv´GÁàäûËW¡Ã¾!ãÎi1¢Š!ëÂepYÎe4VK•îJ÷%ÚfHõ€ \Ø{zy› 8ì´– "6^ß&± !„˜wn²‹qÆyû'lOn={¨ŠùI¨ÒqÂÙ­Îh”ÕûfŸ+SÍçUýÂ_xUÉ7ƒZ^Êÿ{ðWüþnYòê 72߃Kñå(%x®s…ÔןIã£ÒÄ–6à<Ճ΋5Žõ +ésÒK×Êp‰xÞ—¨µ£jµZ‚×T:PÎ)î`äâªvqõ½.®x¨‹‹l…?¹çfðbyÖ*&:`&Ä7e€Ðߧã ä÷ÉË>jGÚÖV:ýIšP›ïÿTGÅeö:I ⧠–PA)¿¼Jpû#[€¿EŽ7SOö©Àª×ÿ\ô?ÇËú_SÙ²!= î7äç©lÍ#|¶¿2ñEæ9\€PªÐ„ä°3â¿bÂÑ]hX½"x Þ{Ôqóæ\G¸2øÔ·ÐGÒß+þ«ýÍë,’ÁEàa.™+” µ±Sîí¥ÚXë½)ÓdŒ.ÉEzÃY‡‰«°@ZI¶KŽ¸Òk©® ì®/ !ñ5ÒIŒR+(åsä•žƒ|f¸V®Ø‚.Ek›²1eYFRþ†¢.'á2p7 ‹Ãn$@e¥´Ð»'¿š³$ízR$‰X·xÞ˜ë=KY_¹Õ‰‹ÓÞQf7ìTàsÜØ6œ†*¦y7 ùøv†úâ©Èn™˜Ó$®õ·U/¥;äV{!Dl”¯Ip´}WIPüJÓpéWÄ·-C±©í]HiÇÊÁBg广·F!4¬•ûš6tJ=¤8WS«¸b &O tÅR”…ÛêÁÙUßzál´Ú™Þ¿øëi8œéá -w't¿®/”k 1žkõCQÝ ßÒFð…Û­ÁR”4¤q\³ÆwszJÛѱRXün-ä1£¼ñþK¡–+×|£ $ ’L¥…¾ÿ¯ØBp)ŸêÊŸý“«³ôx&l"º%ÉÚʹVR˜ÃzÜê[,.LÓ~ô´¶µîKÍÓJ.r=…Áh}Z{;¡Ì” 3m(E}¥>òó"(Ú²7%ªÝê®Û!¨<ÈڹݸúŽÚ›úæ^ ~ñœ]ƒù$Žu£d@sý„¤zÐÉN¡ jE&G!åÅ£Vo¼mÆêDáÎ7|0nGo^&pnF–9:ûåoë´4A +endstream +endobj +114 0 obj +<< +/Filter /FlateDecode +/Length 4665 +>> +stream +H‰ìWkoÛ8ýî_Á&P)âC”¸(Z¤Óv¶»íLÛd1 ¤‹…;nfb7umþýÞEQ’i3è»E€Ø–.//ïãœÃ'‡£B¹6%ü·ÖˆÕ|´÷óA!棽CõïB(qx2*òBÁ—c‘…oŸ…Ë+XU^ +¥Ln겺ÌËÒÁb4Ö…<ü}ôìpô ö€µ.ÏøëåÞóE!ž~½áZ]—¢2U®K/¬r¹òFdð©K±špÿwË}añ?…×BIÖ•µÊk§ÃJÁÇc)<Ö'8>Q¢Ô>·Um„Ò¾wV/hþ/낼œ ÈvQØÖÂ"×EƒŠÍ‹*­ò¢¨ýmÅ𪢄L¤‹à5>Ú²%eÛ>Ocnþè”\µ%Uó¹çp Ÿ¥©à(%j}4~"3—1þU*›×büO!U!ÆNBD¥ÿ~åJŒÅk™Á72ÌàÿTà>2¥Ðî|±hþ`e%Æ/e¦Ñä™x´ÿƒÞ€í3ZDN²:‡7‡2«ðóYð'pò š‚¡x.uîšðå­H·¦—÷'`²/KŸ› ޮ؇#á‹—bŸl\ç|tþ$ææ…Ã_Il÷š <®ü%„qH®4šþëðo8NM^^ÿðÑ0Ô¹/Káj›+,”ŸzÔçµV< ÑÄÖ¹ƒµµyQW=h=µÃ œ}ÇN¥7¹Mv24ýÊÊw¢,Ø  ØåÇè¼Ü”ÀípcÏõŽäX«vû.Þ²©ôÎBèÚS¡›º¦GWÅ®J.vŽµÎråðXuÏÆÔÃc›(ŠE7€¢  š¨¢¡ þ¦0—Fyá<$Ñ”Ðä‡ÞŠñ1ÂôþGYàLœKà˜šSI¹œ#&Ð_áøœá'ŒäEÅKYâò´7KiÑù…Àß`¼—àÌ>Ì`rá¨.ÌT…=h üåi;x5•4ÊM4’Bž°«3“ÌÏÁ#,½g +æ«ŒÁ§ ò8C…ns)š™ÿD¹Å™ƒRˆ +ÊYTãßÄ’2ßÇ„·?´ø,¬x%ZtÿI7„ÿV‚1Ý—¨\!{»ªfJƒ"<,ŠÂöü9Є}ôè‘xòô'1ºå®¯Àô®ïžæË:Wö÷ƒÐ’SnV ˜í’c‡+‘üv8ëôø}ÿDqÚßlÓ¦~ôÁÿAü)¨¿7€õ‹Ø/¹@'±?bÀå`*ú'”º@š†kM*–/C½Å}ÁÃv›fߧR!v84ºÄàíD4þá5¬«S7l? l2•ÜÑÎÀ +w¿LSñn(O·¹ ï:…ÞunskÂäÙŠ¡¡{ÅøF˜r4þ«¤Ön$˜XpãL¸© m¨]nÖˆ/ÕtòK5Hï¿E~õ‘Þ±“*:é#ý»±ÔA7z>B€×nƒ{´~ÐÓ_øØâãyŒ‹^¯¸7 O#&(ÒÐ;cÀ +Å ihßÉ¡ Ž Ú,òðMÐ MSJLbV¶suŠ¹4‰do¢T.%ˆ,CfôÝkK¨ÁÎ&ÒkX9Ò¢, P6 +ˤ€÷^XHªÄø帨|çØ”uÜ@óèP×-§¢9Ø ?›P_‡!ÒcV#3ñJ…¥‡âQµv:d7Y…í€XWyq/€8 d ÆHœiÂÑë8á=yÒÎJPþ‘1K¾L@aÃ%lfZ]“cbÇ)¿ža.™°¬í¨•*HügÕí´óp¼߯»«ŠI ýË ¼­ ©sq¨ý ! +(ñ±àÏÏ¢‹Ñ“%¦È`&3BRc˜$/3Jè" ýÕ’ï#§X"MzÅ0AR¥Å؇Âú0==lVx5 ø¡mlئ¾Ý6ð8ƒ()Çx+$¤np¦t¤˜ÂiV² xDùù0Aˆ0´Ü5ˆTñ¥²ìlZ3„Tsן†{jó2lr~¯dh¶L³9² Ó .ó!>â¿Âú_±ôkìØþ)þÖ}«Yˆèˆ=ó̈|û\· ®ßt +ê +l‰üXïï‡LÙ?†§i8>D‘ :ÌBQ{áÄ`²oô“ë°hXÍdF ˆãlðýY¸†¢ê쨔¦‰z[ÈQApjÜ]ó8€ŒÀÅA#T :õê)ÜKI>Úû¦ç›£7ê{E)iÏL{ÇD5‘„cp·_¬“|QŸ„ó5È»Eây%º¾Ìï£ÊpL2»FugºI8噹u¸D`õ\ +p*æ±Ì)CDú Ü +üåVà7_ü½ÂÎr!g×Aã5Å€Tl7bÀˆö… p_x¤7bšã/|†ciJª²å(ÉûGÐjžÑ%ƒ`Ä>¿]g3~Šk¨å²zŠü†_Λ ¦áËŠŸOXà/§áç<8k}VX‚¨ð +*×2\Ø.ð“}Í•›IKôõçÀ ÀнPai Gã²Ä‘xÊ@>Þ"ZV¡¡Ïš+Þ¦CÀj HñM…á*ÈsÕ™4–Âh$|pH¯lƒU·Vý&X%0@HŒ³õ2¥¯ÆËp _mºÊ£æOf¸`¹ÑŽ´ #í’TgEŠˆð·‰ìn#‘±>¬Ä]Ÿ0FCp·Do»-1…‹'{: ’ì*ì1.5ž3àFL¼:A}"š{¤±w]J9š¢ò_õuÃ;YS|WåB€Kºzóð&!mÑ0é•È·W—äJU7ºß¤ÔtC?Ï—€²Ä‡Y;Ú‰")º¿CmÑ‚@u{銌3H¨¼v +×hªTµTÛTˆýÁ»Ã‰óvÞW[.r~Èç¡ßl¹›çû辚ç/9Ôß\2?›TäÇÂ}*Õ1qQë†P)ОsmC6¸ÝÀ‘í¤ºG;RÓÍë.#[ÀIîË&÷¹~kzV5×ié»â3uG +®¸y;Æ mFv WSz€nZuI¾ˆÍÑ )Wº ÔfºÇñ/™ç 9¡þ‡ùjémÜÂ÷þ +-`HÔÓ§¢hZ´@¶ÛzH.›u’뵤‰›_΃œ!E)¶9Å‘-rÈù^ãƒt…‘øAãXaJ'_|n9æFÐ^òÖÈ(‘Ûçê»L<|ƒ´bk,C‹"·ˆ(ø‘&öK‹lÆîv¢=ˆî&cÓEˆA oÃ;ò"È>ÊjÉ[ÕÒ +–’+Ög!]0ݸt°¥™±Q‹×AjÀ‹k¶2Ò›ÑØˉ|ïQ%Ÿ K {zgâ\ ´{*DÅ-s‰À”Jm29ˆ¶¿É¬æRJÆá+ŒŸÀEÚ-ûï3Ï6S¶txé©L:Wúéj]wÕ›¬IµÖ…\,~±wÒ("’D4‡°jí|GXÄ +²³E‘Æ[V±JsïùC¦ÔÃþÆ£”yËd^86kƒÞM¬ñ»}Ù>þ8iÀý27qfb,zoXú¬B« 4[%;J4>0ÅÕ|¤ßW1#Aè¸%rqØ’DÒQrë"dQ…˜ºª±)QûLi¼|9>@$ÆY…úXqLÄD‡”8!W,òÎæ <,äzqìÀ8ßPe[b!*Zêdïw’r'÷áìxéé7BðUõ…ªŸi•uŒã,²Ænæ^ §× ÒéigÏ4¨@¿¡v®2 @q\¤jõø='¸G¶éÉÑÌ11щšhOãS[\¥™X.~Cϯ§¤#•lç<“ç‡þHSàÖ—Ê=Ãd ÿgËÆÚ”ÆÈ`Êà’ôŸƒ³#ã2¼Ö*-t>§²›«„j¸êwª[”·‚ ã~ƒÑÕÆõ.L®øD÷:¤ˆH%uhŒaI°5<ß)òô”¡j"½<Œ£¥£‡§YŠ¶]DÛöHÚ“´­¡mœÓ´m'äa£JY™ìÓ—Œ?ì³q+›¨-#´jIi ¤ =쀫¯éHwpxƒ}jhWÛ•ç лD¹ Ò¡ôSbP€Ý¾Â!æ/¨¢‘QsK}°=.É°¹›ÛìOØÑWp§ +Öm*¸Bä€÷x™MÞÀÿ‹ì·k.û6/•¬qL€7VÙ¯¼ƒ{9ÞÀ2¢+<s'67äļÃϹi]èoé9B‹È P°ïî û¼„ýi¶øj¯¨!k:9ñšÎöì=$^]ÈÅâoè~Ÿ˜ø¼nÊLÈ‹³…‹S:MÞ°NDzé)ÙÃVáÇØבd 2Z5¹³c­U¯zŽ 1pê#™kšÙ±yÇÂاÏ3óEjºH¸ø(²V˜ïŸ@c´‘‚¬T2óÎ{ÚÎõt˜ê)4 ôȺ꜡Æy¦×æýY®±…Í.˺µ + ¼Õ9ç +‚!”ÙÄ,'>î²Gø<60yÈ>Á´É¶­VmèÛôH·WJ¶‹Á$5¥Ø–TNšéÁV:—€c+^JÀ~|ú1Çèêcf6æ„ aÅ)Z6' ž/A;µü,Ó„é¶zûìkj²Üðæܤ‰ÐrHûg²áèè@{¹ÈkŒl×|þ3»UÂ]ß3»L ²ö:¹, ²û9èU§šão# ¢ÿ¶Æøy™ç-bõ¢‘„@|‚hîýˆXq¡Kï=fÀ´„·ÂOt/ø•·¶/ö¿hqC¹N áB\µÎ…}S*½ûv(EøúUŽ +Lì‡]œ‰… õ‰9Ü·R!§Œf,wë¸BC¹ 4Åïd©é ´.%hÓA¢SóÃI*÷âÀìÊ[_>o· ¨ù.Ør! ÇÁŒŒÛ…€ ±kÑ„ e€òÚW¹†ƒó;KXbÃc(ïËä¼ÇIö顸ÌYùB±.d&»,Ī°™Ç°'œçN ˬ36ÞÌ)ûÐá5J!¨ ƒŠ:5E)mKóµ¢G ëX†9ì0ìø½p÷Î(}Õ*}yBΨÖ!¶Ž˜³((+ƒÃ-}Øg!ÅWÐHN“¤mUKâFåˆ5¬¾&‚ÝAQ¾¡]iTEÛ¡Q—œ%»ÛØö—Ù9,aàþ~d‡þž¿?˜%žÎ0¦Iksô» ‰*äbñµXÒû=\V=ï˜;-8j‰9ב»I¡³1~­h+Ì_Î2ÇùD§*9P¤°/{šSÆdÞ9 üo2Ü +ŸÊšùb>Ýå¿°uØÛiH4 +6 |z~þ‘>ìîù[ F…×5…r4Â˵6Òˆüôé»ÿs7o +endstream +endobj +115 0 obj +<< +/BaseFont /HIVIDE+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 204 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 205 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 636 0 0 683 515 509 0 0 264 0 0 493 0 0 0 +559 704 569 519 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 449 581 516 0 573 572 256 0 509 257 848 572 564 +585 0 356 417 351 569 508 749 494 500 450] +>> +endobj +116 0 obj +<< +/Filter /FlateDecode +/Length 4653 +>> +stream +H‰¼WÛnÉ}çWô#0ÇÓÝs}ÌÂÉ"A$kyX/’EI\‹â.%Û+}êÖÝ5R”³ˆäL_«Nsê»õ¢4eáC ÿ«*˜ÃÍâõ÷oKsó°x½v?—Æ™õõbU¥fýÁÈ—/¦)Z˜mQ›ª¯ +W—Îøº¨ëæìKïìú—ş׋ß`œŠÓ`eüõ÷×Ù•æÍ~ñïÅwtƒ;}Ľï½–­KÙµoqºs<Ô™®.ÊÐW¦õ=Éõ¸åË[•YÞZWÎ,÷Öù"˜å'»rUáÍòÎzx|e.àãòåÁ®|ÑÃs¹1¶„K-/qvg–0¸ÁORãçF†^™½¥÷2A ôE3˜ôSx´³p G¯j<á= ñhW=G–„ß®ÃY·vÕòa<„^ä;âo,<èô¢®Á¹WÖõø{c=;˜C¼ÄË,µÇËÀ²5îð`]‰ÁÜZG;¶ÁÓ×,dÏ·ðÁ1‚ÑðþVésŒàüF?Ñié"éP²ÀÞ¸£m*<ä Ï€cø#´µªF­dZÿm¯\Í€ZAzÀÊ•Î –J3]êÓû+Â^àiÀ×[ …€Ï ^äÍKü²¥kÀ±¾BN`°žöjî¦êQ ež @2>¼èÊPÊ䊠yeî-E›‚~c|äœ?‚œÙØ… :c-þü &$:Dâ^¸6o00>{ÜãJÁOþÀHE9§æ¼dQº‘€\5Í÷.¦#/“_讛˼nÏoïX 4 +ø§UúFÚQ¤ cGJ:%¢×…vf(Äz½{´-3íè¥KoíCœ ’€Ð•:‡£Ko†‰oRâõ©°füx´CŽ!‡ZO•ª“ß[D  íôc1hº¦¨’\æL¾I®3xå£ÖìÀa4{ +×+“0÷ö´P‡ Ý!C¶}®ÕLp+OƒãPµêœ8Jà~,æ‹Jzd"™cÔÂIÃä +­¨ßKÀ¿ÐR£D/ØE&‹ +#krÝg`$ ^ Iô… +1ž @tF.f¦U&]ô†.¢¤Öqæ¥ç@’—•ŽBîûpõVgÝK™ÓIR†ìLÑH°ÕÒ §–=Ž^(¥Î ()¢bJ]¡ÅV*s®j¨ÄK<¢_ØG¢‡âõÚ‚Ìáf&¾È“Þ=åu4úÝlÄØÒOÒ¾ËôÊ-ŽÈ¼8˜#¼¨¶Ì  gó´¤J–ÃV˜ðÔòL/šV»¤´ƒE;Ö*W¥G*HÕŒyŒ¢„B3Q¤ˆ¨1ˆÕ“ +OB·‘{Ú©Äã§ØÆrÈod§[™öÅBp[™•ø®Õñ‘‘SQççç2|s.Ç©½w…ð9áîcÌí_Àܲ)F/œ7—íï´N'×@8Oi,®ÔàòÉ9 Š)æ@FÏiuŽð)Ën + ™L„ù#lH˜ÀÞá”@$Ä02JƒF’«ê‰lnÆ>œ_X--ò6¼I‹7ÙØžé˜wWN#jfLÍÔľØ;©=§Ðâª؈¾NMë²xÐq³7m±œ?FÊY(Ñ‚9D ݯš5µJs§­žõçî¬|€÷S¶I135¤}‹x±­© <Žx7·>Ù^‡QkVá)5QÄòz}‰*4¬¡†ÿUÌáfñúû·¥¹yX¸†=@“|eÝù¢lëš}e Ë’4à‹WAš *<$§€ÉùRâ·¥^«ct–LýP¡Ìîp 8ã“­àçJ¸˜¡SQz[aí Ð%¤@¡Tl£°[„tE™ëØ°"ø¬pA4ì¼Ñ|H/úA=#Ö/õ¼®øt…#e‡§¶Íg«D21fc†Æ¼¨¼& š‚w¤“˜ÔÜMLâÑ FU»‹ WeE8³±.²zÎaªÎöBYG‹~ à­4›FrÒØ2ù8ŽN+6w܉¥2ˆ.ûˆ]«Q¡/Îî³XaHw râ '-Ž%£æs\£G™áÑèR»#ôþ‰ K”H +üp]u )3xe†‹^ßiË5Í–RwD(û&™æ’ݺ(jDÄ3"1Ñ“¥†+ÅsFÙ†."ãbØ9Ý©lÕ Ö¬áã±(DE†£9LH¢íò6––:ÕÙIÑ|M‰Ÿ ‘î.f„ä éH Ó±ÒÕYŸ“ J$2¦otõG+Ôø©ÈýaÌÀU_³u.G§Bx@/å#Èêa™ euÚàe]ÙAv= $©¼Á5V¤†,ˆ•Èp´î‰_&%“éŽ9Âå›–±æÀTgÄ`QûÙÍ¢è¤ÓøÇ{ovR2,õ/ï—ät©H—W2• +á„tV|k¼¥J+lÝàgkÒ³Ò$H¯©IÌy'‹ÿÓü SàOz¦V¸ÜR1”“é‰ÑNîf¢^ Ú¸ô{Kò]ð}_¯ÝÏäq}MôW´?ù +‰N€4Ò'¬Ú®ðmë¢Áè)Ò…mˆ¤Ì,áô óâŠ?ØÑé5øôÇ>îùs{½—ë¡ 3+6µìé¶û{ +3Kîz`ÁN’ÉÖ#ÒÜø}|ÀvZou…óÑ»< 7Á@^ÊŽÛ;K+oYsžd×aÝËvr)yqÏè1Ô&x:ªãV•¼Çªm¢¯‚ñ’ŽuÉÙ(1”’#^¥j€ê¾ã<¼³¡äåÃÀìN)[*·§çIâ)hþ˨|_™¹Æg°a›6<ÃE´º9`³¬§ŠPŒZÇÜ‹9ª®½èS2=wlàÍåFµ²±Mˆ­×…8Ö/¸¼v"‡â¨Û%¡Ïr¦œ£=R#1󭾪øŒ*ZOWye†ôÿgÖB21 +ç ÔÞVyÂ+4mâ&mïjNß8è*‹ŽZÜê¡ññb|hb{Ú d ěٞê¶s6‹ÓÓÙÈTAî)鬀ºˆŠn“ZôÔÑ}Ž)Ãî³öŸ¡qo£q}Ž"BTE”ýHlws<“( \ h/:²‘'üVðL˜i_†™gr\Îq3ͱꬢ³ò~âX&:JsÖ4¢Žù_t<êw5ªÃh¥© Ð¥ 4²É²¤‡ ü6u“H4óhïŸM) —ø7,ÙF>mn#ÙYѲçàž²íH“'Àâu2%óïÜð +¸Ót½^?¼<­ðÙº]µF¨ ¢íw½tbŽª®)*¨àog÷ðÙCÝxO]ÀÒÕT©4qØ48M×…Æ»Ô5@ÏÃU8×î… +zVBl÷\Yr¿‡÷€ó{ó/ !ÆSpŸ,• ·QVâí(8ìÎÜ] CÅÖÃ2 öøúÓ#„›–¼6oÞü`¸Âd…Gn7ÒE=LÚ¥¢lûùF)€@ßðFæ â»L1°Vª<)JrÅøœKÎÑ-’ /ã%¡ŽŽúIlø£BÑ´ÛÉE¼Ä‚/)Æ™Ö*á‹ù‹™TáÿZ†.´ÑºÿmnD×ñ|¡P­ÀC¶Ôý”ª†ró¿ÞĤWÕ4é'°¦’?jbR¸’dÕ82¡ÜÌ8ºäw"k{K«žòá’§¯“öö´p˜wGª Ýд²lèbtÓÉïŒêÀ+|zÃvè^®YëVg¦ƒl&d&:s^A;= VÏ°`MI +ؤRÚ:ÆÄ„7¶V6.U“=&}/W¿f=¨FzÐèÓz +ä£QO9à¬|Ë¡M9Y ÉþOœr«FF(IIÝloÔ8Ó·þ—õjéâÂw~Å\Gb6Ó=ï#A£`‰K¤ÈPl£,X‘ÿ}º^]ÕÙ]N˜Ùݞꪯ¾Ç-)àÍ¿ŽsKT²Ü‡›‹|D[A–Â.C •EÞ…k߶K’=¶ g'B€£w{)ç”ÔHÂCÞŒ¼BT”©bö‘cPèŠ eµ-v}{øŽL»'á¥6àÐ.t@ìÂ(g°ãŠ×¼Á{žŒýÛs¢–¥ˆä¥Qâ ŽÐ.G`!'{”Á¸è*œÇƒ +à°³yÞ&„G*n}˜f±õê…ÊŒ2¤\ƨüÃ{ר©ÆΤLËhÀA‡ïûp¸•Ÿ‰Š§„ŠýÁŽ@`pÉ~éÀ°¤ï°p?¸86ƒy~;”xã+¡í᧸6tÝVzhÞp­ +~ܘèã +ÄŠN‹ÀFúË^|Í£’¹îfØK4'*Žà.¨Â`úlïm»’y—Š3¯ …´t œl Nv|õüþz>í«‡ú²*N“=lÔ¹Åe¦+RÈ­ŠÝô›˜©þi‘2hÖ?›ç› ¯p…ñ¿ñ©ºšÙ"olΔ´;<ØØʯ‰Ø;L¶ÑC ^µð¤ÅZl;aÀ¨¤zS¯h”Š\RQœ¬í¾1‚["ÓäjçßqB'ehDŸÑÜŒVc<¶J“ª$Ô‹¤Ê:àÀ~¹rº&ÌåöE(&×7Î7ëtè‡mlÜî6nSsu涄+öôÛŽ|À,Ó°B¯^½kñØ·°·P—¹°ûpðnÞþoüê«žÞTdÃ<áà´€e:Lƒ÷TÀûvž³Hh8{¸ÿËDÅ£d7ç'výŒš3) 6‡Ïí€ß Nsª]7Yevh*B:ëPí߇öa;^Ñæ¼€„ÿ¾ ]Ù0f%v0¦·¹nþngÈFî]}ŸŒ›i/Ú¤ÔÍ„é‹€îuÃ…/ +Þ„Ñ9.»ƒ +º¶CäàI䧩ÇáôèüR*C¤“n$žYÓÜ*½{ëã¶w+\õ\ðWt{ M'%í +AÆKg¤`z®Ì;b]•‚*è`ÈJÇ™¨Ä¦Ã`ÐïÜ%*\ö +-H#‹ ñAÞÞ-i¸ˆî[ƒÂ‰\HØK) +é6âRˆ±qh¼ÂÓë&ò7¼Ûôs¥vÚ¶~*[om¹wäp2Ê÷ª*ÔVdI”ìD連Oì¬d„ïcàáä[Ã:Ž)1Í91M91ÁÊàöR ŽRùP÷°+ÌWGÙä^€¦øIQ»À¯bV\¹÷hï1mê—]Ûw4Ð%jLŠQ…RÄêîˆ'q¾…gf¾P`ÐêGfêîÎÕf‰n¦²K`ýxÔàe fßé8ryƦCó[;Ž”:Ê´ôêS¼ü¿œ’SMI¤¢Ç26¾ÆMEKⱄôà’g’“èîµÍðG”Q¾·0EÝNõàA\¤œ€Óµœ w°8Ôœ$~ˆ€^ӳؓ”ž-ŒxR±€Ï_<†!‘[^+z#<‚¯öPXILbumÈ£Ju™’8¿„ѹ’®r“|AÌ:ÕsBJÍ•K±ËÚOl²…üÒRtú$â95©Yü¶L×:3êæ}1Šl†»V}³‹ñÈ5˜ ã=훤]¿z"/ZóHKW¸¾œgzq,ÔJº‰ «¤¸¹œ¶tS9Nš)­q¨8Ø&Wø÷Ž;õÔ˜¶»™|¨Ëšù¶Q'H^9:3gmÉ'a¡`ÚQxþdlÊkø(¼ÿ5°Gøì÷F+² ø*²¡> +stream +H‰¼WÛnÇ}çWôã6 N÷Ü A€eI‰I¬ò@¹¼F¤Hï’–˜¯OÝú6=³\Ѷ @Üݙ:çԩ׫ƒR•…­ø¿®+µ¹88üËûR]lWæ—Rµ:?(‹²ìÔj­–òé³j‹ÖÀ¿®h”1UQõM¯lS4M knŽV—ð þügõ·ƒ·«ƒ_á,Ø£Äåp~ûéðÝM©ÞÜüëà5…¢ðăáV.ZZ˜ªÇåÆð«&ÝÙ¡(­øìÍ™^VÅ wºÂ nµ© «½4¶hÕâ^qtkÝ5>o‹^->Áã¦èÔb«M‰¿_ikÔâT›¡¨ÔâL[\³ÑÆàÃc ožh8–^kˆ~<“a«O‚=m‰¾¸Í¯Ü«ðc¼‡¿ ~xôk[ü +[ã:ˆÝâéÚÒ\è[¼bÍ'•øàœ—ÅÛ¶ñ¦> ÓâßÓ°…ë:ø¬UøÒÑPöÒ­¯à+,ü$_ïÝI—tuC/À–°Áv&íÖàÉ÷š²Bû‚Ÿï1Óð e+اã‡8ÕÖân§ÚRNõ’JGK¸Â:6ѱˆLÂc0®{ÄæéÁb©WÿEÌ× >Zʳ%\`0øÂå’îs­ÖTU¾l‡»†gîÉu¨wƒ·ù¤ ó/×ã5 Â´ô\Ý NMüj È!ºËÆíU²ñ©êRW%.yÔ–ªpAå0 î\xú ~íSÄÊMà{šG'uSçB Ï3õYW­0gkÕ £PåÞ¬©$SôÙ}Œê+xS¡ôîuOâ*3Éï~(iéo —«Š`‹P!ùëY¿b8luï^jØÌÄ„þ\³Š¨“3HTG‰í°˜€â½î£Ô9þž*Ç+L³u¯©ˆ¨ßk +õ=î_ÿªÂ¾5>X³\Ép×6Q6|øDJÚX`%ááE [ºG›À=+àYQ^gÜ«H  D‘ŸpýT‚Š˜^Ó…ø$KwšŽ‹‹GþMW÷Ÿ@Zœª&N½}BÊaN²ôBwèâîð<†|’pœ2f¹ñvl¸C@ö¸“4Á¥ËÞÀûB( ¡\Ä(k‡ªû^Þx.¼øD¹ ë¸rá’!m¿Eø2'*†91ë^S!nãâ&2¾x¾v»`Õ_ÞÁ"ßÍŽU€AJø7š)ñF2ùóDªéÎknáãìÍñc5,µÀë@_3°i€dBò#±L8¨{\þ\pÎþ`Èp Ê`C/£ÚZ©éÑn½,˲zÌ8|wüéåËÃï×÷Ç׫³/÷/ß½}÷4³~õê•zýæ…ÚÕóé%=…oÿOvÚ¿¢¬ÌÈùA)Û*ähñÖ߯è_êX7¸÷?1;ÖoY4CÑÁ0ºîíÝU)F×¹ÎÕ$²–7Á½90`ÖÑAϳdÉŽ‘çÛÑ)}Û&á·IÔ^×îònË¥7—º¤ßSÅÛ`>‚.ÒOxèš‘–=g××4ñv¦cM5q/k? +ºó'uí/ëøR%—B¬MP:þ›5wa¼«­ÚŠŠl8a’°––y°²¾o±Ô_עġ‘‰%mZ…€œÔ,ÎK4]ô‘W3PQ$‡‡X°ÿaÒ«1>¦\´Ôa|,ÙtºòÈóåìª*|ãÄÖ]`rÚ“C[÷]Ü–—òSŒ¤uÞ9½@ó–¡1{Ø2ÜP=‚¹˜$»]U7 («è,º¤ØÏ ´áÌ“$ÎÀF¶O醓Zâv™ÌD¡pÿV!–ù>ÁÑ`õüPŽ¾a0u;ÓB G‹ÀmìÍMȺH¢2jñSÎ0™ß\OMšºCU,Æê<^¸/„ÐáÚ½°;h´CgÔæÄ&o$]…çŠ;aü=ˆy8E¤Û¨ :]z¢_M:«f·³ª÷tV‰êÐ?ùù +´jµVò!´Dk®v\VËâlH¬Š½á\Ò1xDì¦ë¿¡µ¡¡²›Fvɘ–ªæ©Gà’hù9¤HN6£ö›Ž~3ˆ,+ð ö.¹Yæ1.êrÖÄî÷÷þyXÖ ,×p æ1åÆ]òF[j¤Ù3fjÚr¸Ž~‰W6 £Šœ[ØÕÚ"¦ã‘3orak7 pö¸‹lG׉;ÜãT¹CQ!~Kø¡žc’ô›]ƒK”ɱkzu‰y"h ÎT°6ívsî €Õ9D™²JlÇtéŽå»á\,î!¦Äwºò}ÖÀȤýÃXú'·žÜAð5ćت ÄSkn‘ÏuÇCLlî|OúJ+ôR§ZáN>˜”¾ÕI'›ïp­ÂÄ)Ê®¶ÓÏ7¹Ÿ¾‡i SßÒÔ¦™Qúȳ•>Õ£?Sé‡dÌãÃQú~NéÛØ Ï(}<¶’k9çÓÎtEBôâ«{A;Õ flŸœ8ë³[rS\™njßÄÂWq’Ä›ùlnœ=ä#J v9úŠÖ>"ýZVe1œžÊr,i2Î4øô†¤³‹…(Ì:µpQ¤óAïl³¼‰’åÊ&‹çHJ1baû'$ÎÞßF"à^­(Œ¥h³ïÕ7R•}SÝM¦:s"þát!˜+Ê E0oyˆû;Ï\„@(¿ßÄCg©(#ÐmÛqµ¡Dºç`«Fj+]r²P’,¿/sì–X¨.©ó*j=&ú#`Î’öÈYq SÏ/smœ¾`WsœâLi UâÅ:[v,€$"¼±­ªM[24xJNR2ð´8ðÌ÷Ç;‘3˜~k"K‡§LèØœxÒ¨¿Q§–ᶠå}^ +\·îB +P±-–I¤¤zÒM#bùÆO÷9ôŒo*Yª'²¤–+ÈbåäLäd3r +”œÃ•ùÅD³—•?+J؈xaǾéU][ H×23:=é+¸jQÃ}ÕB½Eq³~}÷y¬]ùðñ1†¹Ö _¼áJ,©Ð ÆxÃ-¿xÏËnùÛ%½dâÝj\{œáŽ‹¯mÏÄíoÙðà·«ì¾»—¾µ±ýH ü¡GÔMYñ߸®rŒxb³=РB”¦[ÝpŽ‘Ó&Èùê)N¦þΖÎä°kȈ°ÏhƒÏ`öåÀc:"%˜f›Ìk|m™®ÔÉYºÈ&ïu²N¡¶Ï[ÐΠªüfXÁ¯8Ïì[l.x¿pY¯ £ö&ç§Ç +•or•È<¨‘¥\óA†,X¬èðt`qêâ¹óŽŠ­nH *vpù8&.Žï¥Èé…÷ˆrÔ¥ž§&*7÷º­|Á"áý°µìs©‹]¨ Ýx ¿Rý(ñdïå{UcZT ØÚb:`‡R98+dIãNÎtcÎ| cjºß­krz…‡©s¬`÷Žk2°-ž|Ë”âsìpK±lÛDÓs•à®Šìq={ÍÀ‚›“à?)ÿñ~Éä4Úȱ1÷÷U>QLµXﻃ1!Ðü3¢‘²ÓøþmÖUÚ™ +XêZNÑÅ­Ž™6/n¡¥z6:ÜW“¿Jm-ÕïÅTÞr^f Çž;ø+™FøâyDð°ïuÃÔãÏÞ~ºêú~gyª etº#9á\ìוº=»’Á›„Îá3T§`µ¬ÊK +1BAŸ£ ÃÍKí´ÝCÓûæÁ‰|/¡Å\j´5kçãŒÄo‹ìÆŒ¢J1>.äà¼+[ªÍýž®#SЧ]G06Ât®ÐDJÙcX^ðBhF´þª©ØÆÈÒx¬á›lÆDò€[yGÉpòãXó„ø4tSš0..'ðÂEÉê9»-…$÷>²³#.æHè+ü^¨¨ …¦ìlZlv¸$ìÈœ«ŠU¡"¾È_q”_"G!QA}i­„‰NcÝ^'’¥G¬WƒÍlQ öƹI7KD÷{%ÂÆO±]¤C(iŠ'LÒ9‚,RâaG#IrÒˆ\èn^%`ðn#Šøþùð‘ú4@™t}"'| Œo÷étÄâ>1)kq3ªÂ¬KL~±“-nDÚÓ@¦±iq…Ñ5e²Àà÷J7LðtŽæM‹0À‘Õ&PøYŒŠ»™“ù¬N6¹š¯ÓØvÿá¢;ÑØU¦à-Â¥›Z¤oáµÀV†ŠPÞ Íðwì#Í@@µ;j½3"ÝÒ£zoó‘)&蟙PC¦äLeÉ Æ$ô"¯èaß$üŸøjY’Ú†¢{¾ÂËé*ºÓ–lÙ^REªÂ.•Pa‘Õdò€!¤!LøûH÷­‡{Ú +«éî±déÞsÏ#àj¿{þ$¿>ýkï§Ã8ÌBJšz¿÷…C¤§¾Í‰ ¥ò4‘¯ öxšç,!“ÈtuOÌé—7|‰sDð÷éÉÉbf0Œ\*Ûãu3—3yÖ^WŒrd…Û«Ã>«Y#÷Þ‘âÔK¥6¯_Ä•1®ãÀ¡qè^ìB@3ƒ²^Ád¿âÎÅ ƒÄؘ>S¥¯"PŽé™½¨}±wPPpþ¸ó†‰éXË@/Hu'"•™([qÇâT—&uÜó›xƒc!Î KætwÕ ¶*`j'ÐÒ1ª¦›2ñÍoéª2²CÎÃÅÌÑÌ5\–n=¥Æd\¹Ë›Xkæö=¤­¸ÚÍéfdŒPS/&ßfÐ]M?YÛÕÞï| 6¯ŒV HéÛ Bâغã>wöÍükk¡¶:½ô\ët¾žnyL›†0«Â@S“k5\‚ƒ6~åÒj4(³ì¼å™×1 X_‘¡Og?î\¡ª L®Ä×I}­jÚ<翪 åI3щó.Câ Ÿ¢I¼‡™Çoª©Èâ!D§Òçi¥/rÔJôI™°Ô..™g kDêâŸiš4×8r¹3ÝÏ•‚·Y‚ú;*æ3¦ÆŸZÐz¢OÁߧć?~IU=kfµ:îºÒRïŽâ\pÄñ$Æ“Š›Sã,GpgΩ'¼Ö ÷ÚÌccº ¯òTÓ&]MUZŸå7‡üö«üÎ&£PË4¦:z§‚âE…‰%åB.=÷RG7Bú­ˆH0Askiiéu.늱£Ó®äÞD´¯{*‡êv`1X"r‡]$ˆO"Û/Ü¡q@üŒÚH£æí¨gٰƲTc‹s7Lƒ¢ ¡ÃTJºC‹e$ø$ V¡Y™7`Á•MÅ ˜zPø¡ôìhF¨‡îûÝ0äå‚NZ™g5j90¶Œ[(Mõ¹ ÁMãï „ð${h“R|.Zus +=½rJ¯¼æŸN·gõGy¤Îa{ú$*ó[.™ìc2‹e¥]\  þµrÍ&oÅ_ˆvHSiuÁ yåf^ô¾3jÌáÇà2\€ÄŪÑ‚ï·Å¸ +qÆŒ­›°í°9&´7¼R‰[Çp@ñuUoŠÚ5 š°ƒbÐg®î]Nûò…ƒõ;ÐçR˜'ß2ORpòZÇdSÏw&Á‡ažl‚K˜è‡îùMwL¬d¹w  IñOT©X7¢—Ù{ŸÊó)°»ŠÓ€ÃÁ‚­ë;ïÓ $ÖS[è½éÃ}MlïãÙŽô©Ÿâ—1~˜çÃÔûècî]õ‚'­ŒÇŒ+û–Å?ýjœÆ¸f<Ç#¬ùùªë^äIR| +}”~fk7!ØZ”˜v@n”p€Í¶nDöRµN DL´e¦–ÌéeÙ5 OûPÔ‰¢A$÷Ô»Z •s „/Ó ¾âË›×Z,ésÐ…Ø®œ’ó:VóºëIp +´™~H\¨ÇÂøUTêaÕ¬Ñh2Þ(Œ7m´´àE¨ ÷[é€b nr›:/üXù}Ѹ‡±4âããKæÈÄ,¢<É[ªýLn)Ü%ݦi q»ÿ\¥ Êt±Ü ’“›G…pÀ>ppËÌrV]×Tæ<úYpäUîáËž“G8º •Ý¹ùÇ©j÷“L…–ªaØÕ¢"ÄEà„÷ú•‚Ümº_Hžá q\ÃTr%¢øH7'àJd#_÷4•dI±!Nk|ö‡î]â•Ùts"{†ŽP£nê*Ä3jÿ1,• vP½ØîP÷Ûö‚ðê£HÂ%LH(:¯ >‡¤a0#Ý’~W³.Ž(yïhÌqBI‡X>JCVuæ,4ã|…„:ȉ!Àp ^nö6Rß´î‚ô¾¬Ñÿ‹ùÜô žh X-0Á’ŸôcÊFü¤Ê¤´0eúlyÔ­ñèð Ò‰°rÞ¼Ùö8µã¶âïRòq>4;õž–tbᨲñDâªmL3¶ÿ'UvC`ŒC6[\gïS=1ì^Ñ¥ÒúMn»»2&g¨Á´US$Î=K=!¼ ™T çÇü\ë¼EVPs³Âv"œâ«"%ÃÅÒ|)4©@è&sYñ3OÞ‘¡™ ®°±Í²}ÅsºZäOº*»É‹-épÎ’Á, Lñá0I|‰Ïøyœ»%¢IÒK»»¡Ù]€ƒ:Å%µíu<%Õ)÷†òÝʄЪ+: +÷·S½/õ=ˆkþÚ…Êä$»À‚ª¨ž©o‚àë䇻_J3û)£Ô1têwúºû…ùš€Šxüdž–wÃ2Í;§·¼ÃJ%ñ½§ &CÙ©@yè8ÑU‹NàÓ\mXû„IÕ<,‰:¦¿†câ=‡´Æ¢ÓIxøFÁÌW:¦Άø€+ë½;5¤\êݘtÀSw‰B•–x¾Ù%á ŒÕð¬Çô†ÏêNxØ£ìÐÇ_ß>ô¯`êØÜ +endstream +endobj +118 0 obj +<< +/Filter /FlateDecode +/Length 5250 +>> +stream +H‰ÄWioÉýÎ_ÑÙ€9š>fz&1 ¬×ö&AHÖòÁºíȤ–•_Ÿºú˜ƒ¢¤õzaÀ"9ÓÝÕUï½zõrQ«º²®ÿ½wêòl±÷ÓÛZ]-ööͯµ2jÿtQWuÝ©ý#µ’O·ª­¬¡j”ï]Õ{x`›ªiZX³^,­ÓûÿY¼Þ_ü΀µ5.ƒñÛß÷Þ¬kõêbñÏÅK +AáIçx¶á³÷ãÑñXçq½1ü®Q¦U0m£‚í«Úš}·|£­­¬Z^hãñ梁Ò^-?ëºjÕòD¯BåÔòH¯züûQ¯àµ –§ð¡« þbZ|óHé•¥E7ô’ÅgÞ8Ö= °t£å=-¤by¢.t[õð»J‡ÒƒK½r„rûâóøìÓà>Wê>9¨Á•×t¬ý Ž1âŽ#¦w®p;‡qÀÚC‰ácÜìSüPlÅ· R +‡»Ø·}¦Ö˜0C¿7¸Õ.‹ç\ËÁñàOêƒîñ=SþˆÇ„q‹ÄL)<;†„´œ¸Òv¯vD‘â +  æeEùÊyZQˆEÍèE@úßû[¾`IÝZµ‚=àçq¥ns£!‹Hè+ž`›Y¾$Ä`B.O0ÌS®R¬¡ºæÝ.Ô_%ŒWxóžþöx_`§wx«íào¥ àîQ@:È_0¦ù\¶»r99·¢, U¬%¾ñ¤ª7ŽhßÖÕ=0öô'æ,M@ºf¦f¦9 ô¾¯:aÚR)|EÂ0SIâÉ5 ‰èx«º8Ü{Õ(Qh<Ó5è¾Ã\TpÁ³Ó@ÕÕRý¢)WR¼äG¸7q„Ð)õjñkDâübC÷)„F‘i Mg8ôÊãIWRÆcªGÆTÎ ÷TL À+;\ Ø +X÷³(-—öà:Üo9™¹çzÜò™Jt-‘d½Ð^?ÏðžÏg˜¡æ |)p*Y7ØrEÈŠIQnÝæ­˜ô‰ÈÚ–A%™‚ú¡ŒD$es-‡ 0@2îÔ@ŠÜŒe¹S™,$NÓZ$‰p€f°uX®ôRyVÊÇ:,Œ¯ä‡y&½Ïè@QÃßrz<Ëx—\r +ùµ¥PCS­¾hGuà$Þàê~ ¦ý°ñ Öd¤Å^æi÷=اè¡“B¸\i~ë~5Œy,Ûɪ§JîøôÙ¢ÎS³@(÷oÉÛGÍ]:/µíÒ[äè\ËSa`Žû^(–¾9(åK3I?¬Ç&¡”šò¶Í,Ô"‡AºûH.îõ3õW…:ÅêDDIí¸e«Xj,‚ã7<¿¡ßˆþé:¬7—À73IjŸ,˜6_ìýR7M©_lóN¸K»m]Úb—ærVøDµ¬˜ÇêájiñjÝ ¿Bž£Å[cº:¼h‹cÆðåþ—üÛ@jO‚ð^kO¯ðR=ó‚©fnät-ñ€¶)·'\€Xv«gc¶á’–%ŠÔ+î\,¹·‘„]¤ù}ÉU–¤¶r¶ñ†’˜8¤-1çYÎ1c@L›>'%Ÿ!k‚ò8ý»ºu_JD’ƒ(¬¿f«É*Ê'¾š5é—çºåÍËk:ƒk7/ñê¿00e—ÛÚÕD^'¡˜†ç·ˆ¡´¼¸eF"—Ì·¦I©È12)ù'NJ…zŽ:bìÏ2ðá¹î;š„ßÖ$ŽXp‹Òr«Í2C•Ê£.›dJ™ÇòÿF2Y&qýˆCòX$Ï©(fnå'LïÅØ&bÈqd d쉃i4Á䢺R"ýÜ$6†ñDw8 €7(-Þ/SxpÑÙyò¶÷Yí ±ml(x ªc§¢“î2ÔÙ,ŸÍæJmáÐc©ø·a‡h ö£b vØ‚€Í€ýF“¹)Úìv¤§±í7!41œ©WȽ€úY’0~6ʹ¶ØwñßíNÃXsŸ™Ó‚Œ£\KÂ|×êxØ2‡ö¿c3zˆ(TF”(Þ€~‹B9ÑðtUhgò<2ÂÖÍ”#ί£¨dãáó™bu¨·’B‘7ݤfÉ?S&ž,.…˜dS+@L¦ÉP,§œ’ˆžlPûi²ïFpäSà”¥&pÜ©LU_ªoºS©¹qΖ·TÚ¬Í+.`‚„cñ~è€J)i-€3ãfÇÍÀ½—)NIŽ™IÎSÇPnôs¢/yÔ´Ó>zÚ!¶eH¥+¬l5Ô\6*˜“(‹õÓ¤¸s´ûÝS0M7/ŠYö=3Ы«¨‹X’B.c·p¡;NþŽZN +s„©2÷·)ËB“›@'Ì ~ߨå¶Ó–kïm¹í#Z."Œ:@ÙÓ„ÙF[¢ÖíØ%ÉÉ\s.š¦›æbK™í¸ÌÍÎ2ÏŠõöߺޅi/$#úg?W×iIâóâÚ[¶{I^¾€K(MÊpµÃþMï¶Þw“Ã.EÇ#¶ìœ~Çi«“‘…z·T¬ôû¤X±#Û0ÍÆÔɪâz”ò†âªÔ¿Æ½5.TN[=º)æ3Fàd:(U˜²iiÙ*f;G?Ì;â(f¡®gt#ûù] `VwÙ°ÉXq)×.ಱœòbïÅÑü´Ø<ÅC§ÉmâõsO2 0GJ>Lewe…øž`"xm6h®ãðƒä*~—yS‚…DtlŸ0!œk„åpæ}q¢g"çlA^œe]ÿI|;Þ5ð¿÷N]ž-ö~z[«³«ÅÞö×ZAà§èíüþÔðXjºV¹ĽñðÖzñ¼®k÷<ÿÞÛÏ›çÏ÷~8º¾9ø´òõúù›×oÞÔuç_¼x¡^¾úQaª‚<)<§'°ðõÏð¤¦#Œ:ÇH E²¿´bÆðKF™:TÁ´Í ’wËN³\Ä’ªSÁkîÉ'L•¯<—M [(âÅÍ}|#ež~/ÜÆõêPn£¿˜Q܇ì{øÖ>”on ÛÚ§³íá«+&Öi¥a[BrŠ€o3cÿKƒóECã›%†V2%ži` |khßgJb:(Í‚<ÉåÒä_Üm”´ÕJ*æDÄæ ÀoŽ?¹0‚U®ƒ–hqni: f©ˆϵr!™–ˆø +ÉüÁxM–êKy+«# `òÂ=ƒ-Û¼%¨¶Ï©UWh[êxTîI £JKKš¶£qØT­;…Ã)~* Ìቺ‘þT v2Ê´s÷€^9°Õêé‡[m0 °…!Á§Í“:Cs´ôË1æ”UJ‚{´íYK¶ˆL¾Üj¶]ĭ̺»ÆWÝÖQíãdp"~@—ïk¶ûf›ö¡ìоäJ¯¨y5ã1¯v ¨°P-64SwÜGï±õY7¨[­±”ì(‰ÌSîgDa7(‡‘ƒÃï+y~ƒ@‚½>«‘OIújx QÅi¼ÕÅüQ·ÿÀAà´(nñ.bnkÙe« S\qJr ¨mÉ%ã¹$BØÑ­ µ¢˜jCœjÃTº `GÛlŽ5˜{P—Ü¥:î#DV ñµÑ`´8îòãã´à€\ ‹óù +$Â߉µqtk…â:ÀŒgÜYJû·0#FÎþ»òÑmó"e(ï–/±€ØÜRïu4VÞâåä3\ñ¹[wøêF;²"wªì¿5.>å{&¿á¦•1Í»E]FnÜèZ{1È– +D•Û>XòVGºeÖˆÊË«ET"~ÿO|µ4·má{ŽæŒ¥àûÞz襓[3ÓQlGIcYŠ’ÔãþúîX’ ¤Ø÷”X‰Åî·ß#ø‘¶õ¸³z¼ Ë%}Ræ'º¨ä´…ÊgRqÒ| ËAÆË»O䉼RűœË…Ñ^ÀÔ½€ Ö ³Ùºì8[Èwÿ1è™Rõ¸·fªGš9ôäKѲt °Bòm‘|ë\g\£¹Ç Äå-q¥®+dsŽ4J³_Ç‚*’ Úó0í{1ØOc®ðr@•²žcÖ„dm|ë¶É'hð¨ÀÒÅ£ùÏÖL»+YÃæUÖNá[Q7ÕŒ×zêØà‰¼‘rnaÑh7ö¯*œÏË2M†c.Ø/Ô“Û™¡élB`zÙ 7&/$é^rPd[lC|‰^¤cwÕ&H +òc{3Jø3jtÍ¿uŸ~ä«GpÉ›¶gò¡#NÐ=pŽ&­D¤úQìãÀTÔ´äÏpçà;C2m¨ƒ Àþõ ®r ?]èú¹)0åœ1éËUóØ‹93zE¥ÃSÞ²‰y–W`Û %¨¦é!_íÔŸÓ£?ÉF]š$çÁk[;4° Iâ™HS×$Ú!@/ákê{{.Óøˆÿ…Á¿˜P{·óÅLÑA§V›žGRžvJYSË -HOxsnðZR8ëH’:¡ö̪Ñj1@H‚hëݨ,Õ3÷äB„6¿Ë” à¯ý%ÊWl!fT(Då=…)Š’Ä-5Œ-—¶ÔžÓfÎIFXÎác×gèÓ"Ýpæ8að2*„×@s Ì u2ó]Bø·M›2ë°¤þtÍ6½µM’‡Îˆò®Ý=§™=»T“³˜€C‚­ÞÌЗ «ÜŽ1Ù"Å^'êay¢…í—Ð5J‰{"ÿ¦%º[ÔêVLk+æ {’Ñ[£ÖTÏž4¼´ô³¶¦œs<h\²o‚I,²Ë½ãÈœ Ï2'Cr&]Ó·Îw@â¯çLÊ5ú4&~æJl)\ý +·¦ÖšÆôœÝB%a`4ˆs»@´§‹ó<Ñƹ‘íötðbÕ;à´Gµ¥óøUQÃ’oýŸAhŠ‡ÞZW•0߸¦ªê¦c¸ý¦·x7C`›°åîRûЧ?Ž ئP¢¢{ȧ¢ x·k÷ ¯üó»;è!òø )¬f›å+Ñ6šªù›à/%>ðj¦ZÚ5ùŒ¯8¸ÛΪUˆúV\‰Ço]ªÚ“¨=òï T;½ã«#,’-ã·~V…FqîEœ©Â!©%íð™!’ÈÖ籠©G¬~>p >J+¶ÅÙwÝô‹xñC±*å§ì^=!Ú xWV-jåœoøá`'I(xÀIRå+ìù<¾c7µØöD›-~nzª„$#\ñ®>åÚ‡ýéGýª§g .8šÈ½nÝ»«¢&5¸áì5ÕG¬†´O[Á@ÌFéS¿Gtúµ#6å(g¬ø¦Ÿ‘+¡Ú†å uºˆå¾K«ã:Œ¸WbyÑSÑ)‡¨0ôØ{¾Ê½èbþ†ûf×üÅz¨ü§â_¹¬ + üâí“ÿä  îŸ"<î1æÔTc'Y·"T + v(U ›…ƒâ¶GRcøßf·“w‡| +ýzW¤‡½Äå +xk/qÎœ±y}’¾KÚÊk(ãSoŠ’a½ª±(‚õªQÄà£ò‹›û¢æ¦Â÷,D¥p:Ýg+ÿb%R=oB«7¿q3Nmz`¾m{ÊÃÈv¾í õî*gëú=î( ½]¦ÉD+°8dß 1Œ(³èÍnÄÕ'6ª&ïØø–õ,Ôl’3'¿ö}!¾Á÷Êá‚:ÅÈ¢1ÐÊnE*÷Tðc²S^AžS"e¡ÇU`@Vbšƒ¨$„´üa/%/‘±è8чnœˆÏnŠVØ¡#AïÚ¬fW‘4Ü«ã*ývH7ô’ !¡v¯ßpèR[ŠsE¼W/†0grUXe7:“{Cßf8ùFíÏCáE +¼—¡û¦ +h78ÅÙmÌÓrŸ£üïI\/®JŸÖëñ=´©ð¹wž÷&"oÝhcdzØêìôóXtMå­åwÜ€7oúW€}½¢À +endstream +endobj +119 0 obj +<< +/Filter /FlateDecode +/Length 5607 +>> +stream +H‰ÔWÙn»}×WðqxZÍ¥·WC¾A‚<ÜØ܇804ÒH^$2’âë¿káÖä,r.‚<£i6Y¬:uΩ·«³V´6ûßZ#v·gçúЊۧ³ó•úÔ +%V7gmÓ*#VWbÉß¾‹¾Ü;îßÐtB)Ó˜±…îš®ëÝ;÷g måêëÙ»ÕÙ?ÝîÝ^s;Ã_=ÿå¾Û³¿½Åœô ÎVtöÊí5ÞWŠÖ*¡Lß´½ƒžšV« ÎüûâiT3ŠÅ¥\*Õh±øâ¾tÍ wRø|q?Xx²Ûˆg94“XlÅF.»ÆˆÅƒ_ýDOh±âÅK56½X|–ËÖ\JÝÃç3<Ò-<ÚIwª¥ãG—˜tCÕ“/ÒåÈ­ ¯|‘j‚•[ÙCà°yz;±ÛH +ÜU´†¨’M]Øn1/عß5F´osá¶ÅoîM bX|þ0á]n2À¡no—¢+:k#î%åqüÔáMØ)ÍØo<àÇlù5§þIl¥Â«ßˆNã–Øá…ÝFx¦Šò«¿Cg)Hƒ#{÷ù"#v,@c*@XÃ)«!¡ù6†K ù®’6S­[ÝGÁbs›\‘ + ƒÇk¾å©Œ’S©Úã/Ý)Œ?#ôž é“Õ@鑼FŠÿg²Wÿ!ÙÛ4ä€gâHõÁ¬\?6)HbÁ{¹k"~´I‰`S¾Kçî2] bê©$Þ{=”Õ¿-Úvq(J€w>šúW¶pö¤rÂÏ xÏ¿c:¦TPzÅÀ­1Ǭ^J„ Šñ˜‚fªÒÓ øÐú¬¢^zIP`EŸŠQÍäñÓÊÜêfLC‡6h:5h¸þ £±=)„Sšt_,–ÇVMNÙ‡°m6ÿ£½ëãÆžØÝ@òEĤÍiËÔ¬?Ó¹žèx>$2­.ÎœGObDö @Ùryˆ4Ü# µp "•4ˆÃ¥šè"µ‘»Ò^¢ù±×ÜöÀxž1†Š^ìü ’§¹¬£”éµ¾j4ëóÑl†Miq:wi³´ñÊQùO´½x~`íé0Í+t´x·ŸOÐ4éÂk\Š§Äþ¶°â†‚þ/ƒÎ×_ueýrà5´'òñ¾gš`l瀘X ]FFí«D’ô[òÎÇuÎþ¸¶eÖàÌj8Óí4ÂÏNÐ4¾°eO(ˆ–cwÜž|Þ!zóÙø#¦Ó®ðŠ²G’ú(]¹‡ f]Ú`XÝß¹J/s'|ÇëãëOÞÅY}.ã¼Åm+%×ðÅÐoÄ{Ò§%öÙ7÷®â‘0«M̤˜·¿ù»ïp¬ ]á|¥>)á‚¿!åÓbu%øËwá†ÑªJ årcÆn]ç\ßйF¹wä4â†r‰Ó»£ÅÖЕÇç Ç Œ„nŸ (Ú›g†þ—íG¶j)°–cÑÍ)E©$"ëîÔš"*ÝZ´­Ÿ6¼Î§U\ZðgÞÖ.‰yyU&Gfr~*ç‹š¡­˜ôqÎ}ãÜTÇaŽ àÜ;î›fʨþˆ¶îH‰QÕ€ÁáIÑ–Ä"L2x_ÓWw¿Ð‰fh: xu¸XÊÕW­‚GK~–¶j]1‘Z½Só€ó÷&²¶bËiÜàXSI¼vD–M\ONÐsßÃ…'†8â”ÑâáS#†Ü„ɺ°ÔXÏ4ôR¡$y—ÈGñž°‡íŒ¿Êt:jþ¥¨Œe¬â½-™¹˜]1¯•ZƒSà>|û­1g´V +º;›Ð×¥.bÛ-¦!Ƕ'Ä6?K/{<ç86]sæø4– dPEGI{v˜¯¾"¾/-fÁ)ŸáAB +;+€R8?ÓyM¢1Ú„Úš²´f&*áµ÷’Z"ž©øÙÚ0xr7Óâ÷@O6ðý1ƒ½Ÿ0º +a„!ÿ~â#•Æúá4Œ¼:µšÿœ­U™P—iƤÆ3‘HÄQˆgÝ–eüUZKöB¥¢Éf¨Ò ÕB ¾ +a!Eú…>D¼µ"¦†.fìT^줚ü…K‹òQÂ'0H+·Çð“t:¥Ó.ÒiêÆÌ«E­Ç¶yr£ËÔD,ÝÈ!…ˆOÂüì#z¡Å¬®¹jw!Nƒ€pš´y•vwi6ŒNwª€‡ï¦ú + ï9ïàúñ. œ:nÆFbs‘BÜwQïgJ¨°@Ò¨j3æ'O¸q)Æwæ&1ø¯Àˆ<ÄɪðÚ¡Y+·c*µcÈIkî”csÖy»Í g°\­3ÎJðƒÎD&ÑÝb‹øjð¬$´ +º/“âë8·;â)ñÖ¬à^¸³ÉŠœ£‡ äSâ,¼æÌULጵFÑÌÇ8ƒÌöFÄjo>1hgÓÝ&/5𔣆joÌÔÃ5’›¯¼3¸ð²Q<­ cŽœ’XëÆ83ºèÂpÀO¼UPtYÍÜ%‰9IâÏõó9樹‹õDOqîÖA¥#„²ô +SS¢‰J¤Ýܪµ±Y‚ÈZ-Éf`9L™Y?všÁuXÈì%ár )퉖†|V,–£ÙqœM±Ž•êÔl»è¡ÂĦ^3±ó4£ÐñlƉÒA7â·Z¢‘Áö‹DW ›R;7oo;t§.z3ehŽ7óä¶Æ†zñÝlID—ûø'i,y˜nLÌ”×è`swP +Hb”ØbdíëÍÀvéøü§ÑÆ<qìí°Ï±ã‰"#\Ň¾Ü:nò`!cîdYAÖ›„”ü:ð–/ùÙã*R{œ‚Êl+y\ˆ¶|,YkNÐ5ë ÷X[IrdèdgO¬ìÏríh§Nµ³ÀÅqåLœ\°01O›1lÞnaq»ý.ˆcÊ\èCö”X÷`xÖ4XG Xe§âÕ΋3·Çim&p0œõػŠ±ó“õ´ï½çÃý hx©õCè^iqDzîà†×ªN¬šJ”6ƒÍûÚ$vòÔXQ¶å˜ÿ +VC×NJk§©-¤ö9ÄÚ i/«½pÀRˆ¢ß\1ؤåø…& äÃKÎ Ìt…¤ÅR§tÜéÛ"Ç᪦ EVñ&•¡-8¹ “!<V¥¡R¼u[é™þ™ìKt»¹C´wãOKRï©àçìî&¯ÑÚƒªÐŸ¢@ÁŸn>Á…PìŠáØðªC†·6Åf0ó,©ˆ^L1L¹ÝEGHdÜé"ÓP¤cù ÝçBÈR(ý$ {^6H$¬>ˆHD8CΡ^)Ø”Trçµ”Ìç’¿•Ã€îÈéꉒ +½“ÃÍ"Hø⯇Ÿ¯Ô'-Ü&7ºžnÛ³Åe‡«£Ãu~¥é:kÈ’¾&è bîr»‡í½´ä hîb'ñš-‰VG–Uµ2” [*td{„'Ïs‡¯n8èUK1³VÝÜ?û`ÕäÓO>XŽõu3œm†®Ÿ´*$­7Œ¾­d»T쎠D;21ƒNÀ €=êÅuf6Ê'±` ø¼Üóô™ç¡“ëΕ ^Úžî}lâ}Z2`GÛˆºf¢¢Åµ¾`Ý|ì鋱Çwí‘%Ú”‰æ?/$X¡ Îçûè]‡šD%RÉ´9ú¡d TótÂÅ$ªõuÂ& {Kí¬8>¶ä‚'¬÷"Ê¥g3Åý¿&)K”Á2ó¸îO§_á8îÿÍ|•ö¶q,ÁïúûQh©½7 XŠœg¼$N,H`#Ѳ^&¥8þ÷é®î9–—Ç’EÎÑÓ]]U­&vÓqDOm´s¼«TÀmo?b$¾‰½•w/›ƒž;Ê÷Að/a‘ß‚ÊV¶}ªì—êw}?æ‡ZLý.¼3Üšå®÷µèyÐy)c–`ò# eç_•*YGë¡Î£‰³N l’ãxkÛï&1«Ï˜—ŠÏœ—úœQ©èâè<5¤¿gÊds-Ú±ŒíŠ‚ô†ogRèÖkÌûͶbø°^v“$6î DäæQ‚hçY Ÿ-Éo˜÷¸:íAκ¯.ÞUxÿl‘”i2qsàúÄSöÊÆ +ƒ³Õ˜K±&Ž’Ó]sTP¨½6Ðý¤†d»š«IÀ~—FᇛÏá¬>ˆm8Ô5K<ÌIz{Ó†Lžý•)/¨¾êI³eäYÅþ™$Û¾ë-XóˆûHìÈæÜà”ß :*”ÃiIž‡Áoý¥Á¿(ó¹PüÀµ1RØ->H¥%¡ÀÆ™»”DŸ!äÛ %),“-v£ìB7hJo¢)Äl ‡ìW“ÖîR“Ý“GP€HžÇ‰ªµLfÞðyu·Ò`ϹÐyô®­mä0–K5!n”jÊ^óU/ñ^ ÅÞºöô…ÝC‡ršƒI·tÃXiðƒÙå¹CŠš(E®ùË-f2tò\\žzˆ…çï2ºæ½o~zG°oÞÚe%ÿÄ~·¯lÛAïËk‚lëÎDþýŸïËù¾‰Å'–n$´4e™ä„Ú¬"¼^O±æ”)>ertuôc´I®­;ÚD…ïmʹzSöÎMUF(©‰ºØäÃãV6ÞD_Wœœ÷HRöÝs>ô¹ùÃ×âthµtÎSžÙš±”ú!†{ ÷ðE5‰QEAf­‚J67„)¦ÁL¤ …6ŒáU`œR²4 +v.|Ú{¦MÝ^Ë5VœQ.ºä/Åz-ÖˆŠ8â™^Aj1ƒ\VÀ4°ûÚ`Û[£ëœµ¼N² m)Ҁɫbs5b3&©0xòÄÔÂó /ºÐXÃàUÓHõrŽ°pZ8@Ž:þ5IàëaÏ*7É÷Všgj*éç-ɶ@åMp2^Š¸Saáìš:¶Í °B!Âÿ!­«â \Ëû&âœøPq”V<,ž4ŸÁ‚&ówò{Á¹«É›/ôÄXg“\áV,)¢Æ§7”Sñ!¥$3­ÅþËtgZAE§«Ü ¹d,éXÉy#57òçÞR¯åÏt:5dâ•ßq,T vDŒ$Ë £H­% +`cŠ@OÓø`óþ4b‡ÆFçÆÒÃc!¿¸ï‡óÉ- •U<ý=¿aXÊ€ªE¯mu@ÑyU?’Ó?M'Qº¤"EÉæ…bà\šôµ|º2"%’ú…‡Âœp] ·÷ªbZ¤kvmüþ©©ÅK¡“ø€†ßÙ8Bh…v2ÐÊË VHÄ pp|¤ÞèÉ$d*¹R“©]¾Ô&‡þ0|s2Ö…zåÛqÁPGUÇ))ò*ºîÃ3¾˜h͈¹é¹M ÝÛ÷FiØ™JUqÄhÆ+óÀùŽ á·mdД–0È%΂ Ú":=ʇ|ˆÌHp{ >âŽiÀåʼ +Õ …f AfŸPŠ%!4Ï¡C§R¹©rƒ"e¦Çs‰$9 dÒoä©Pé\.Xi¡‚kMÚÉK¨Þ Ê™ùþ5¦¾Y§BÇ»uo”‡—|uΰCñf·ã>“sj!AªL¥*S.]'¢',ëÈ»OÄ´þ$jGÀ3wøÌ·HîŒMCƼ‰Ñ4§p¼7 ¾Ç­»•ÞÿJ‹¿cž:½ÈÍÔÃ{€ˆq'ÇX’µMA®¨ñfè,£ä?#Ò<½ZŒfgg§Ï¯ïF“áø¯û³—/^dY[>{ö,9ÿú"ág5e#T{†ohãåwôÍ^›¶áÊ*b•†Òò† :ºQp÷àHíÃHø…@ +¡ßjAj-@&ìàÏ£ÛÖRymog@O×Æz± $8rX‡zÝD%­]IëÍ’.Ç:ͼçNÉ¥s‹®£Ñîhq|boîá9”{-÷ZιÛ;ãCk  £ÔÁ'í q°¥åwC#Š аâ¬[tÉ5¬VèÐ5]DúOzòø¯•wÔôOœ¨5úØ™¨8¶7ÇWPfÐw7]ˆvÐÒcêŽ~c‰IØ'ž±Â3€bD8)(þD·~‘<¶ÔQO 8gvLˆ>Qløw*ⵘØôä'mß)Û\1U°»÷œª/•©º}RŠÞðS»óEöæø…)A’£©z׉Eç±Âp ཫ£?é¦ÿ.Y›ý/èYõ¢øº9,ó5¿»7»¨°±sª½ëzÌ«ÝÚªP‡dq3w¥}z è\Kvû¡Åöæø•ò9|5¤âªt +ªº©>&0vɘ“܈¯ÅŒ#é¥Bã%s|k +}Ïdð½WE ¿—ã¿õuµ{ +endstream +endobj +120 0 obj +<< +/Filter /FlateDecode +/Length 5181 +>> +stream +H‰¼WÛnG}çWô#0GÓÝs]â[EìÆ|3EI”#QÒ’Rçë·ëÒ÷R†SäLwWW:çÔëõ¢M­tgþo[-öÛÅÙ±=,ÎÖò·FH±¾Z4uÓŒb½+þë‹èëÁ¬1ÿ†ºí¤ë©m¤P]Ýu½Y³[,UW­_¼[/þkÎ0kXfv†o?Ÿ½ß5âíýâߋׂ€“nàlIg¯íÑîX 륤w¥ÍP²ïÄ ¦ºQ +Îü¸üPÉF,ª¦îÅò²Z µËMµšàósµ’m=ˆå•ùc„ﲇ÷6¼߉å®2%¬3ÿ}ªV}m^:TC=‰å®Ub¹7»š½naÍœ¯ËÞäçç—üŽoîàT Aj ÞVR×­9Wv/ÜU +_x¬ZüQÁ¾¼Ý#…uÏ_ýš•ìàŠyØn!Äan} Ùᢪ‡6â«JJˆçžÃÙã–=§ãSðÞ>ÍÚîÜ>1‚lŽÌNxÒ7©•2ßZF·üÏúŸ€;ƒ2SvókÓ+±2«&‹ Sé0Ø™òï[öÛfŸ(Å·¼Af$S—ê˜Â®0©V$L¤áadÔÂ+Ssµf˜Â1[íú+}Ò)ÏñNä“ûyŸìTÍw—‚çª#¼ jÀuS"è–_˜Ïƒ:6&ckiì;xò~ÞÜX^ ;š%oÖ¸ýÝ4f¬L™ÇØ@Ää”g#eEì©!’>‘);‘hñWË¢e-Ÿ+FPæ„;Ãî:ê‘T ±eL¤Ž/N7Hgæü*¼ôÆ:ð¼ÝœÕ·³.¯E Ù@*±òÄ@x/Š¶G +ô=•èÛÛäð&ÞÖ1>Ô43µÈí7–ÒyˆÉô/ÃtŠàpdºŠ–õ‚{{ó,uPE’R–z!Ü;šQ:&w›’’5KI54\‹2ÛµxP|øîñÎÎa|eaólå ºÀ¾>A<˜äÖr`ïËh¹†ÐreÓêçÓg0Åj"[G{R:m[²—7?VàQ3ÇS´Ò¼4碌ô\HèûÄ Àm \6[h®ŽTÀnë ++‚X' Š[ûû5fí1cÆüålÉT°¦øÊÚì1„9°ª¢ryMUš`c'ÉÔˆ¨Îj:LŸø$åÃ~ÂÓõ³žn(¯gܶó•e? Hmç:ªûÄäÉRñŽ]ûä›l#æyVBL3`}¥rÿ é¸NªHÁs»¬­ +ã†|²/+rn·ÀÄú$ÀÆ +ÜjŽ á•àJ×mZæUä˜íÉVúªŽd„Á™„ pÑaªe<æóOgs»;:ûÎ0EØ.9BŽÉ¼PßXUf»ç¹¾)øüRÒ¡–Îy3›Íã˜`ùB™fÆعù€ýŠw×ÌcŸcà´}@-õ²Bè¥}×}¶Àôí6¶2Œ§ì5ÛdÙÐÑL–Gö¡2ß¾VIkƒ¸í—†ÜYôEgqcñ•ç3—õ kÃQ«ãB(xÛ}  mVú>Hͤ®¯}·ËB»¿#lþ踎™Q³½sÇà½Íbm”Ý 6ÑE)to;@^*}±bÇèzÏ«‘iL³pLñTѬðâÆ~6“„ µhª åLDgYkø6U"ÌqIÞy²Ú‰ãƒcìWŽ™¥©0EÄ~Ž³©Ñßкô#s*†ÁÐFðå‰LŽ!mÍ¢¿2 äÊ-¢ÌDñ>®©•îÌÿm«Å~»8ûñC#¶‡ÅÙõ[#̶WÒF`\“ùhÌÿ“Q’ΰW;˜~3.~½[¼lšF¿2‘ž}xøt÷òåٛǧO·ëË?_¾÷þ}ÓŒí«W¯Äë·oÜfhºßK|b¾ûÅßB¼}Ù.¸d„È\`?ü`ùß`)&¶dè³Ùì7¢{²ZÆSä)sº“>ÒÙcª“\+ýÕ7ÊsïÛ‡fŒ`ã—†êZÄ­Ü%cÃÝDÈœZ.Ý…†ùÛòè žQ£O±uE{Ò° ϦòŒÀÁ7‡6lçøÛGòqùýE0íߦ]Ô$ô $}"SåÉÉ¢Ò¶B>‚´mËF5ÙU +w xÜA'.Žp³;OG úÔ«"2Íj +ƒxíôÂN0 0ã"5ûƦuš„ƒ™Ò¬âæ8s®cŽM‘\îo2±'¸”œ²cÓ“†Ö +cÂ{²)Ó^<^ÄUk¹jWMƒ\ÍUkâj©™jéã¬9?Æ"~ë¿Ï Íø­é aœcÉÇå/•*Òwâá_V2$|®àƒM˜%ðœ‡S»’Õòn¡]‘ºzŸH{=¹š{¹…zÍ ®÷©tŒà@Õwj¿÷>.FŽ»å +…ú`?EÐBÞLÒ96æDŒçÚÉØJSß›Z¸ø %D=aÍ \f¬Ù3Ôó9“êMª®–à+K€h‹ó ×«©Û¥’U¦ÑŒ$ÂZàœÉÀÆ3^Úû“‰ÆчQ›>”Œ tRèYtzâ‘wÑðËj9]¿/¦´µq-»zÊÆu¸DT#Ž¯IØF|e±¾•_þ[ç–;1à_íf +‘û2©´<õÆHº*½ïì@ÛÄšç´¨ÕŽ¡%];NOˆe ‘ȈÄý¡¶Uò +©_ÝÎe©ßƒ!ªáKÔui~í¸:-Á4˲Ÿ ^(üõoç•|`81ë¢u:B©è•œ§µJN ï{P;‹ö~sØ•×÷¡ð·c%A©z%ŠŠíÐ<¤†É<Ëðu žø¢çàóG(ËA“o>;®Î¡ë{f~ƒ'†ºÀ­ÒM²k@$‹G™òZ<c ¬·ªÄˆµ…žßçÊHó½fß~HJ˃í½Ä¸[ñ@Ô©»´C­W¾r†ÂNW¦BöËy˜k:°T :°°i°™r ›ä´>¬;~’ kä *Ûg›­'•¯¬š¾ºbäÞVd¾úhº=9œ§°A/™ƇLÈE¬Ž­j)Ä)-¤C•5d2 ÿÊ|| ¹*‹©,ýšÚ}ÏO[¸Ad¡k“m‰–(¡Nok‘Eå…V¤{ÌÜù¨¸r·øSŸCjO!3€Iß­…õÖ¤Œ+ã$/_u0’m‹å‚‰$Ö»„É^›kñO8¿O:è,è× ûŒ.q€7 T ¹¦äÏãé\Êæˆ÷Îmøìsä= h­ä1‚yLÒIW”5h—©Z² 2ì—ƒž‡&uL%߬ZLMŠåÜeO-O±/ÅQJ3y4 5ÉÔ fšnÐÝOdâØ– k±“uŠßQMÊ\-íVüï…2ŽæG¾¨45ºÐh™-ƒÅ0XÔCÊÚñ_›ðFMà.Oûb†n¸Têûn°„^Ø°”p›Oï:‡õ]á1 m&T†¸È7¸ý”ý>ìy)'‚¨]§ÍíÔØa*gSiléÐiUÊÕÅŸœîAδH2=±Õ “EÛŒ¶˜Ù• ”¯Hx›Š·v=ñ:˜L¸`&F¶ÒsÕJïlO,BGR÷&°œ@sIÀ—ÂÁ/:‹½ú½Û ¤Žò‰¸k–W]r¹´‡>†£`ÿüòÕ å͵¤©†o˜Ôâ°Ñ#Kï³MkŠý >"N¡2vGah&Xm£KFðø1r­eF¡ßï3¯Ì<œà9 +ô³öœ…oÏÇÝø ògÖ ?>¾.ĽcöåÍF„”å¬q©oñpªä +È¢'}«x]O^6ǤyØ!#‹ñ©˜Í·ô¦&ËßG£ÀCC£¸ëB_)±’'Îc¼Ãßß”ÆW8Þ²wÕÖ?½íȹD“%‰—Óh KÖÈÕÖsSA®[­×¼Áhb`Y9îÈ°*0õš¹ü@/soè!ní¼%ž=ÒG§œ¾×GËF*jù ÆlR6QÑÖÁ¼æ‘’¬QÉ("áÑR´´ U ßqH¸ÏLÉíÂÒÌP©+‚Å,"g­“"nÂ'à[Ćl8lvÀy¨Ò)XÙó|è°?y}n¤‰P¿A™³"o8a{ùü¯_þ`l­° +endstream +endobj +121 0 obj +<< +/Filter /FlateDecode +/Length 5256 +>> +stream +H‰´WÛnÇ}çWô#ÐŽfzî¯ã\ Ž´@Œ ©%E“+2Ü•)ùëS×¾L÷.IK†s4;Ý]]uêœS?¬OjSW®íáÿ]ךÇë“·y_›ëÝÉÛuóßÚ4f}uRWu=šõ¥YÉÓ“ªÖÀcÕ›¦i«vê'ãúªïX³=9uƒ]ÿròçõÉÿà X[ã2Øÿõ·?nksvò¯“(ƒ'ÝâÙžÝðÙxdÓÐüðdšºšx‰ GnÂØf<ûçÓ÷v5šÓ{»‚§—Ö™Ó¤§çðª‚ÞñOæqcW]%¿æô“…ö¶Çoá'8áôþ˜ÓG»py[Ñ ®à•pJ_µ¸ô?ë¿CèkÍšÝõtÃ!7QÈ«Ú¹8ämÛÀ½(¶‚è·ð0U|PÓã›;}¸±ðIGºj6§;sNÓšÿ~0;ùâpãK»š1Nخſ¸¤Á‡;óÉÎa³=üðáɶÞöÞ6tÑGëŒçŽø°3—˜N š‡Œn-«Ì{AÂgìÿ`gÜþ/@qÅ âýèº +¶+Œ‡{ixi/µÒsé ŸNxªA 'œSGÜ€«e²F +ÛM„ l†ïÅ „׸*®ÛLËZüùaUõà˜8cœP@â;²|²/éj±çîÎWÌ/澆kÜã+$Q:6y#öœYxÑDã_l/²Î ˜L"¹@C +gRú‘#†P¯óEÝ¢#XL Ï“Üø#澿âžG‰ˆ3JɸÖ[$þ©Ø‹rþoxó)¾“¿K¨ï˜×wÃq"Í1ÔPSÖR6…ï©‹þŠíFÚäTÎÄŠl&-¢Åè‹7qÇäê3阇–øþkÈâ]DÌ6ð`€¨ž™t_ÓÓ?ÄØ +»„ËvQÔwÑ/Ù*D^ EÄ e]Á*SgR÷¯è¾ñuÝç‘1åȸ¡}Fl!64Ä#ó‹`*­ÒÇ­’”Y+Õ3è†XO<9emG~!à6¦vœÖˆ=BeÖvfj“á¤&ég§ú¾VEþZâ?PÓ¨å¡%ç50gpnUˆWŽ öm íßqÓ÷™&'7,8 ŠôÔЧZz†…„-ÎÄn¾‹$]÷Z°R@tn\hÈ\HÀÎvøàuÅÞ³Ü+n.Y‹BÈâG—¾x%VÛ3¢0iº,`È›h9Õ£î´î›Cîô°×<â¸/˜§½Gò­y©ÜÖD¢!ŠãÛMî:3ØiJ $CÙ'æð»Îkˆ÷¿“Ú²ŒàDÊ}K3X¡Âì¦ÅUu0ª+—ßu9—D¿KŠ¢&jÍA’] =h7UžiΉ#&QjÃàüb$ek›wð%jîc®ˆÈÆŸ$Ë©ˆ/‰<dx"̰׺ÎvçoL /Å’ë G/­.†HäýÐ&|äixÑ厔c/ézᇽñÎŽ¿o¼Ò©¦Æd(PêP<£aZàaß^\­à¤ I³§Ž£|™B¾]Q`|T yTn=Ë“Ø„o+óï¨åâIg£Äðkúˆd4w{«f&yq_†•co§»xjÇ×¹Qm £ožQÑñY -qû+8¤Ï¡ñYdf:Eá†,[.õ€a§|Œ'ÞPÆ¿Ø^dŽ"Pf‚¥ÅF:fæg.%î=PõVP>à§õ¥‘‡e!]Ç0Z9±ô27~5  s ×ÁT†žK±§Õ¬üìËPÚ^t€¿Âe³¶ÎŒ¥’à‹®‘Jòm8(£è ÝL›4TŽJM]©§+9˜°\r­Ÿ,Ä5…–ö…ymÄàá?é‚ܹþàH™ó.@í»nFÒK,÷1-`+ð½98´R©.u|ÝB3rØmËÓJ`ú™ v;ÄL•Xas OL!êô¥÷ɺIt^©q9¼÷1òƒhx€¼7½mB 4‘Ú†iˆ—ßj÷æYö+9bÔ#¼k2zå3¸•b½Ú\‘%£æ†Mg¤~̽õKœQe‘ +ýa»¿x _ÖIS™Í»Û€ßsx‹‚ܽÚGt¡™äW9ká­bwŒ›_Pñ?[×Eîc•Ž_[  `ØæÅE˜¾°Ì‘‹ÈCu8ìråWl™>Ö@ßZP5éÇ9e8h4ŽØúÈVã™±…PcMà¹X8e—ži@ìÂk,˜ØŒê¡Ûž,×Òá°2¡§7%ç’¡‹If v¼¶fé;"tÍ ´¤0²E`$*[—êC$¯ÒõEÓ:~SÆü¸â:D´aÚáØQ0¶Š–Ã6uXÚÔ!·©"ú÷vâ6?Þíj&ÙPœÇúùcÈZ>F~º†쨴›ï&¬x;¦ÝÔˆ7“ßâ$ê½ +}í îRcÝ¢Œ5z©A.Å’QºVp=ìvfv;SŠÏcF̲4‰³+x1Ÿei.ëNµ¦›¦\k¾~†ƒcN?Wa4\x÷¥|]úÓ£4-r÷fê‹:ëÙǧ]¤¯+Ê…^ÒÐ&¤‹Ô '¸Ôr[®ñPl•®`±ÃP¨J½ñ¶_4Ñùž@º‚Ïð_o/âC©DVÍsþwâÁ'êøÂlœ‡(=Ñ®¡íFÙ¤G1Êp"¯>ƒEW>?†eŸ0­Y"þ( [.keÖ°b °V:ëÙè–tãÛ”67ï…¯DIïÍÅÆÛѶÐ&7Z…-ØeúYm´ÔS:'¡ðé…'ð(!Ÿöoh–<:V ¥±*4p48˜àß»<?¤jŠê€¼Õdð*Ö±÷ [ãa¢(±Pj3J®͉4Ay«¨“‚¹j1)¥¦ô—7ö~‹C̬•T">¢Â%ñ-YûT.È7N¾y˜©6K­X4Õ†9öKE6<‰ Ja8+òî>‰w*8L­6µiÌñG‡ŸNïòèÅÎÒªÄËpØÃ6#ÒªÔñFÈ"-C;@ÖFÒÀš3fi¹b¼øfVÖi~û'×;m러£~?³Ã„»½)2þ?\ǵÌðL¹¡Eµ“óöøÌ\”)?Ýð8ã &b &QÏø1èå´›Ãx¨r‚dCHFS>éx6MMÉPz¤)‘š¸yÁVX¹†€Éûø¢Æ½hd’%Î÷ñ ãÇdÝ,2¤Ä";,øÌ,ë¼íAð‹Ksf¹|g"jïÈñõ‘‹UïE|@7ýb»Øÿ·èk#nµ¢n-©`FŽŽ~ȶ¡À7‘kp9é¯2yÎò .’F%éJ…Ié¹ÐLqyˆÓ“›Å›ÇôØ¥ò‚…0Á †€õæŠ-ÞyŠªGDCøµ æKERTJÁÉ}ê‡,*?ñî×Qxß«.¡ø$f A3  6  T;õ“q8¢¹×´¥aªÒÍ Fí-c:3Ù…ÊA³uDbÔ¹,Lvœ¢ý?íU²·Dïú +M c›K“ÇY¯¶‘\’cIFŠaÙœ¯Oí]ÍnÎŒ$äÅÙ¬®zõ–õûÉ4ˆ§ìCX/"\0„é#¨³–6W|'s,f¸Ÿ—ä²h–«·‹[ò™â %×…ÌFþÁDáLL§C{ÀBœc6tV´…›byN|ª§©pÆ•Vœ–,”ü¾òOê«’öÊ‚¬˜cÎk¦­€,1öºVdÅÍ?6•æù­ ‡Sm¦í~7—Äv,=H“97ÂM#™»eZæ9[æð·Hø;ƒvß×K‰"Õ†§Q-±È#‰Ó üÿ/ÝÝt©sw°©cGl½yÙ‚µü"$ T´ßجîR&s)ìßš[lOEzg.£M´³ëñd+–ÌYÍ“ãñçõ<ä. å!ï­í±ŒœI2Y%ªá hóŸÓ«IY +RÌI`UD?{O†Ó{2m쉉ވx€éšÈ'Ô8&=Èqð„, ,™ÓMU; +‡äÖH›AÃ7ÊNMŒó“TZ°_䪿Â!{üÎo@±ôáW€Bò÷éúùƒ4îMcU‹{ÿ‚Ç.YŠ+ìÇÂ""P‡‘ÌUyhÌìë(Ÿ‘h^á,³Ò±rg_ÚÚîñmS4ß4³Ÿú&F’mƒä9€$_¼ágÀÒv×RaÌ›ìbNŸãP7“Œ3Ýt% RÖFñ8 +\ùP¾$ÝÅ$_GK.èP´U’шSg±•z}~Þ]æƒÊk5O¢Œª5ñOÇ÷Ž€í¯{ë¦wÓÂ; ŽÇŽšB)5…]¿å ‚¨?¢Œ\…¨f±Õ­ó‹ïÐ.ö rQíÝ’hÙ™›µÚø%+KLsŠ™ôj˜rïr)š;Í°Öë£à û­Ù Ûµ|+rÅ 8«ø>Y—³—y#€“¬µülã0p/v⨠Á¿å ò2éSG0H‚Û¤|ÇÂÑ“VyŸt(/’ØØF†é†Y5©¥˜¹X̤×3ÄÈ~)W”¯ç3§*ªø‚d—ò$H5 ÚÞGa²¾HV¦¿Wø< ù›žêWÅn*Sý¿}r"UgMµóiÖdè€dURˆƒ=t§ËJŸãåNÛëˆ!ÿÜul˜I`ox noÃä«)½ªYr©Iù×ñ‹9NÕºÆuÛSÂü®q戺e™s}¶®IŽš +s¶©XÎN NæŽíÌoÓÓQ;|,Öxdã³ë&v'Üûi +W[¥”æ¼hÇÑÉWˆ8•€Hþ Öi¡Ÿd¶^“µ hØF€0Z$Öµˆ€†Ïìµä`¡cçPCÞÛˆ”X~w †þ£m²…/›Ÿ0|„<®ô[\®ýâîj#h!¯›LiÖF@˜:³–½ËƒÙÚWTö¦ÜYsMµ׳¡”5mƒ‡r`zÀ¶íÔ­f,ô¢Sñ)¦³”û“–s>f99]ž‘Îa<Ý<Ò"i»uy^Jã5ï:ÙÉE¤^—H^¹D놉ãË:ĉ5®tô¡%ZL Å22I(gä(ͺ¯r9£²· +K¿etGÒ%¯°¤wF`\|{î y¢¾¤;¸<6“®'þÆ°²Èi+,¦i—ꦆ ú#ÂyçoÜ)oد âÒO”´Ù¾ê*Ÿnî׌Äj4Jšy ¯Gï{ïêk%3xÀŠ±¨Û”-r«—ìnïeeO'ÛëAêZíXOÍo¬cg¢¬ÍYÇUcù>ÚÌO&™VÄ:ã-švHz›"K±ª‰–}Ap.ž³jÓc»´ò}ÍbYsîd?ÿn $9UN«éS“þ5Üa‰9lújY‘ѯˆ³•Ò±Rþ¨Õ7²—imôïâ ›$ƒ4Ãÿ'}ÂN³—&›ÎésÊxßù…UTÌ- ¼ûº1©—ÖÀ³. çˆOMµÐWÕ¼õl’w4ÑšÈÖ„†—h4¡©ÿNžJÀ¯á¿ÃÐ7Ÿn.^ýüfßÜ<\¼zÛýÀÁõÔ;RöM75бiO¨ø8Àßï'äÎh’ ËUqÇ“y/ €DýâRÀÚí³ᱞ)žÈ +ÝZG;VLbŒJ™oåóŒN˜ÙtâÓøŒ{f\tiz(\*½ýE~ýÇ".m‘”@üŒ”³$‹F3›3“·Ä‘ÃÁÐúwTóm;‹¼Ðfñ—> +stream +H‰ÄWÙnÜÈ}×WÔ£ +0iV‹ËãŒ$Abwq0¬¶Fc-ž–lÇùúÜ­6²º%y ˜›¬»{î¹ßoŽ:ÕµÖyø¿ïÚ]=ÿáM§.oÌ2jóþ¨éÚ®³jóNÉÍ5´#|ÿÆÖ«~îáù<(ë[ïøæúèØŽzóóÑï6G¿€ ü?ƒ“ñ¯?<yÝ©“Û£¿}O.(´ôm¶½Óô)Ú÷#~o ¿k”éÆv4ƒW£ÛΚþóø¥6SkÕñ¥n¬SÇ7ºÛIŸêÆ|~7¾ñÆvøËWmº ož©;Ýx¼{Gï êø' WøèV7®ñ +ßx>„N»S·Ú÷ð¨kÞ øêV[|s§à°ŸïàÇžY:ü<ìðæR›=B³øiòUjgð•ÏÚÙÖà©à!…e>ÿ¤á͉ž;ôæ=þÝ££¦Çvpø71¡YCf¾»Õ3@›C–·¿ºPçèþDÏ%dÌE^‚ËgÚXôç2eUnò(̲›ñëF2ˆf,Z¸Á,ù7áIWÙˆ‘±Ý;(šogüðÒ oÊPdz¢¸žì££•@`[‚ !9z€žòÖÐâà4ÄN7a›ª‰Ô'ì6´&xAáÒßç2,Ÿ©€JÅ&6˜¶³­J(øãy/*%Ýx3acÍO@ å–¶hBƒ²]GhxÃnÕðK0ñn4gÚ+fÑ—Tx?ˆçÅÅ'úx7¼8‡„pÄ(âй¾®Yý`3Íz¨DßÔS{æKÀ¹O£aÄÑðÞ©×ûrã|\Òí¾¤W$pJúzj07ëžu°!ÿ1 +‚@U1Ì‹¬GK<Ÿæ0`J¥{i—TÍ +ŽvV„5{Ð@,§˜1Ë&>!=´"²8Âù-dÙx.8 ÈÌ’¢2öª,6[*"Óî2U1/Ç°yÂ`ùzôO¡ÇŠI*ÃÈÈb´™uø7<;±`%” ϯ°µ<ùEç&[,E#PcÚ™ûQÜ­´Rα±*Zcú}’6YÞ³Ðaà¶úÞEÉ"“«žÃý>>D²Oì÷Jos™œ3¸/%_PkµÇl"gv}62¶,–6Ø1¨¤9#OFˆúY8ªÃ¯i>[m0+o©)™ÁVó´²Seb°‚’ÇûµÚ UÚEaˆò¡PwŠA “Ö­9׬ õs£©ˆ±©\Ù¼ Y[adIP§OŠ4ŸÙË?0ÖöñÁöo]MÝñ2ó5–E¹ÿm=U†ÑEµƒüÚÉâC¬”„qÌ¢ `]©;!¯ô*äÊ©ØþÂ0‰dg -Ã{Q7 k¤¬²œ’ñ LòaXßr Ãre’›'I<÷$öÙ³–¹'¬eþIk™yÒZÆŠì×,f•©,u¶Ú’æÙªWÍ öÔLWb‰×`²Ã³ß¨^¤N‹ÃÕi¢¬.Õì5úÓgÚIà‡~Ir„8öÒ¢xD4­Ä9XæÚ¾wjwqôü‡7º¸# +´«mºµ=°Ú¢Úî{¨‡ï-«íI: b‚ŽÕ \gaqG¹EÜQN©Qiœ7Sx…¼»¢jGÏûYÓ |…(€áE0JË|I­8ü’ê ç:»‰Cóð2Ê `ï<þxÙ˜±4–ðÑìhÂñ{fåœÄ#3xQçrä=µ8u ~¿Ü^¥Ð%ݘAõól0ϲÐtóž…¦G ÔAé)ů‚S7¹øâ(šêD^»(Ó—ƒ ®¯×s”_ÌgÅ»®Ð»Ë[¦h€º‰@@çF– +%mœo¯ÜεÎjò2b®D®~ÂÄPùº]û«{F橹 *g¡ÑÂö7!±„ôâ[tåe{Rý\c“qÏʨ;I>S¹üˉ©(‰¥¢åŠm­ü)Ú¯*Ÿ2B8à«$dn—úWœÈôPØ£û+ݱXØèñÛcÝE¾Ð}üžç©d÷­ÖÞ + Ókdñó”>!ñÃÛ‘|;‚ÿ\Í™´>RœÇJµ2wJñë‹å"jê S,.HÐÝ¡Íeßäy…‹Âˆcþ¢´ ¡§Ï­¦þ°W‰N“ÑC<Žu¾Ò]){RºF~°Ø^ªbÓ¥jØàÈïß!Ï4²¿C˜ÂõÌx€¶žàÛŠíoæ…R­”`;À1»¬¶âÆe`âñ.z9¼”\¶·sȿȲAv:“³tbCŠ9yh2ò +]´qX2X{ÔÆ¡¸âsQZN}Î}«m„Ékïöñ˜U™ý +á~5U”Áêl«²ÊU|ô‡|,Ó×Snýrv|A(q±ƒÔbáH!ÅóØ‹KþXA‘–Õ + Nÿg)ÎÑ®òÞ¸ÁãL<ç>Ž}•’ÓŒ<•H_l0÷"4Æ•‚wµÆ +Þò¤jµ§ ÖhOB2Sðxy”¼³ÛûVˆ¿Šá?©ïРÉ×"U21BQÜëIÝ’¨ÂüF#žoÌdèæ=cÉŠÅ¡(ŸI†Ú(C¤{ö~ŠJŸblõ@ÊÉ@ÆAÿ¾@oÑÍk {no2€†Pˆ2ž^ý|‰YäuÐÛ¯7ï4¹¼å¤«4ÂÀ'šu8/ +·7Ô¦ã˜HSc`ýXÕv†#Ýä9š¥æ(:|@…r˜ž±d +(…_qü—÷jé©ÛˆÂûü +/±”[ì{l7©%ÐUÕ(‰ºaQAJqC7”¦¿¾s^3gìñÅÄ®îÃsæœïu‚†áüW\B2E~ÄgÂÎbàWÿxÏøÞÃÄÝ¢»‘ÓÕáN˜ñ¼> $ua³H•æráWÀ¸õY5Qà>q=`ˆLÖÍE¦%™×‘øHoÆ÷]‡[Ä^ɾÂi+>}ˆóÂÛ¬=D(É|×MçUÈ“r˜LÝ?Š÷[¬Çqž3›U!¨ˆ± Z¸‰aqŠÕ#»cì ·ˆ[>I Çêì:È¢#ENÔMêb„yç©“ô=¾¦ÁzÇKÉÄA#ü‘káÞV/c®êrØ nÇ— »&Ï¥PfJ]»vQÊ%]› x”J´-õ[j–ÙÒ +EÒ–ä•+0(Pq†GGtðü³4Øñ8ä-Ô±j]|oH éÒ…œdý,qY¤­´A?°5^ …<³^œ‹jùåÝ% ‰ ð‚‡Ëè±åËJb¶ùÔ¤ /8 +úO¹«—‚°µ¼Ðƒj©5‘U¿]C-‹xŸ§m²É†È%Ñ#†zÓÀ;?sg= mëÿ6-nÏ_íþö¡*Î7¯vÌ_ìÓúòP ^ºÛÞÆw­² Úò^UUvß‹ö“ë½½Ý_>}»;Y<û÷ÛÞÑáÑQUõÍþþ~ñëÛƒ„½ó^R¿‡Ÿøþî?©Èú‹+8¿ÆócLø©ö™ °vµKK9Þ9ŒV9Þ\P„ ©«ë“2‡±§.ߥ‚=¦ÚÝQ¥)‚ƒ¢A¼‰”“¸DÑÄAsîTãǧÀÓN¼H¤±chå„ϾÁ/&,kÔÌ u+ŸSlã^Œº•í稫J9ÞyçÃU;1:D=/€ŠjORe7µÏÒðëÕ(9ˆDJÄAé(˪ì×ÃÁ«2ÊÃ( +=(óx)6¨˜±×¡VšŽÖ ìÑõXÈ’dÕ“UÕm•Üö¨M¢Ä×\aÊ:eUˆŽ³ÂNÇ«zžVÔ$.wÏœ¾›ìâœ^À²@ßÒ2pRÆa¹‘ÔÜ {˜4èã›7Ï@¬ºó²ö¢Äj戥KyVbÍÂØ&ׇ¼Z¿é•B¬ÚX6e‹ Ä¢cˆ ­õºµxŠ¹5™ýs63FRDYô~áò¯JM¯™1½ÉÕ“|iÄ 6â2qøâ—Ó¸|ZÊqŒ*ÍL‚NkáIòGRŽ¬0nÉ9†rÎ×àÄ^gƒ¯Y®ˆñZ7eÅ$¹x€ˆ'§€.Nm¸œ3µúIÁ^W”‹±ÙùS£wícPÿrÑ;§.ªP‹ò’`JÖ.ƒ®p]Ú¢,¿qs­1I :¶çxËŸù²›ÿÑ[/ä‘Uº‡2 +ÐöFKx$ +œŽ-!ù0,nHö ò`… ™`T„Ò>âš–LÙ8\²Á†¾1Ûþc¸ç,?]™òÏE¿z½h”¬ûaÎñT)Ç;ïCü Š +Í"’头8´{^§Ñ­NψÌg~–z‘¡1ž3.´ešô!kR–X;°íØ=BÀr{RÞV°%÷yÔn.í-ˆÓ ”ÂíB¢T?GêØx!æÔý×Å'@ô3ȨOÅ|¼ 3ÁÏC¥áÝ^ÜCrIRŽ×_ã®›`náþ¾,þêJÌŸ4(s÷ù#éñV)_ô”žOë’@—€¤7Œ‘‚0b:+ñ¥ ©#åÆ#¿°äF`3{ë%ìUÉ©ƒoª¨+žj6Ó¤ÇãkK|ÎP Gç²£ó•¸)—Ư"Äûbo§À÷Yfw'Å):áaétžnhÍH—Û¦òbpŽbBÙà¬wýeª„F~‹•k~ÖðXõ¸u ê0Yr9X²çN†K~|õ¿t<¸7 +endstream +endobj +123 0 obj +<< +/Filter /FlateDecode +/Length 5033 +>> +stream +H‰ÄW]o·}ß_ÁÇ%à 9߀a Žâ"E ¤ö¢}ˆ‹b%­lÅ’¬ìJQÔ__Þ^’3ÜÕ*1PˆÖ3CòòÞsÏ9÷íjQ©ª´uëþß4µÚ~ZœüåC¥>í'+óŸJµº\Teeµ:WÿzT]Ù»5l•1uYí l[¶mçÖÜ,–vЫ_?¬¿º3ÜÚ +–¹á_;ywS©Ó¯‹,Þ®'ß[9I¾q÷Q[•¦jêíXVÖŒ°ù몪ê7nû“wëÛׯO¾;¿X_¯6¿ß¿~÷ûwU54oÞ¼QoO¿W tßô°ë,to ®¿»7žaÔ¸´¡K¯äΦ!cè+£LÝ•UW'‘ü¼üI7.Ë­®áÏWmëÒ¨åoº0¦ìÕò +¸';m\ŽáéË®ÔòVéŠþizø÷¥ÂGµ¼×=üùªXv§‹®¬Õ²Ð¸ÿ'Ý©å³î[ƒß>h3à=ÒŽÉ4°tëB±Ó½ò{óá—ÚÅØð—–¾lKw ©$•PzµåBÁ·5|iq¯{qt¸,$V;|uˆ—(ðþ +vŸÇqû¹ý_)…:×Å^KW8Lt˜ÚŽØ¸/:º‰Ë5·C G`@‚¾C'ÍFµ·ÄbÇמŽ ô±ðnuˆ6]òŸsÍœÂy#þÅïßóó;Àú‡KfÊT8<õÐX|°toôq©[ÄP@Ú’·‘Ne:‘*R”ÇÔp®f†î°9ƒ¨,!£ºsÿÿ¨£þÏö+¦£?¢hûÒ–ö£9Øýž~tž¨m-êý˜ÂÃíŽIuËj\œ‡Ù|p¡…wôCár"œG­nŒƒ*ñHX3>Gþ)Ž ÂÚ¹MQä É»@Æ\&¬:=}ïšÛíAcPwCT,׌ðB½ °ØXêÆ÷’Ûµ´ú&€Û®©ýîá%å^òn·| šU×LDS®Em+ª‰WØh<à x¦çn[« 1à7…t'HH[&tV`Þw¼…Ј_t÷…ñ3Á°—A<^¼XÀ„ªÒGž»ˆ¥ð@aé‚ Ùw|xœý;Rß‹=7~5¾Ðãiiϸ´O"Æ}†3`·\CŒ¡á·,œ¢¦J¤E0bkÖÕX\zˆæ*IieÄÆ *t´Õ„ë²áˆOzø"$S Ç ÉÀ¢Ú>D#¬á’UYïÆá¸ñÆÔØqô«vÌm¬ë¹Ê9UÓ[2äòŠ®Ÿôi]÷О[ãº@úT©ï˜lv‘Ø7TRn‡ÏPÿdÒÔŠ¾`!ž¢y)PüÞÚ=¾r«§àë= È«",jxÔˆÈgcnðR}iº‘ ¿óËpigæ{xUÀ-›!A™¨«/‹µ“&SǃbJf öÈ55'¤JÒµ¡þÔê[™N¹îÓ[LàSœ.ĹY$ÿG]³÷æ«ÁÀrFÕ/ýIÂ3Ì5ÛŽ'ÛÏúhûÙÄm4s°žü¨9LÕÍ™Dî1]µ(0âž¼=ºEå¥'猓(ï–É5[M¹T?º3ðÞ· í¸E&ö:àè9o]"R&à•š[K4•CœeÏОl$¾9‚R;;Î1Ž&¤‰)×a‚ k@Âíè]©‘»è<Ìô6ôD… æjjÿMÁHÞÜ_yTÆ-Òe‡› š¾3Ð+ÅÒGS*Èe8€àì¿.Îæå’^'wNDÎ;€\쿼Mˆ5€–»š˜ ×ó$6&$F«ž™¡f®ý0¡u{\{–ÐÒtª‰ f…`ürQqyÄŠÎUaåHT¥›}ªrÄTCÜå¸ô@SÒ WZ+êÉu <>Ûwè1‰<¦°Á<s['?B~­Ÿv¨›X§cÌEú'R´U9h×1´#ÛÙ¤Bl!å!Ö–vN-§Ú©ñBM,³‰-óÙF…@LM`âLÀòŽ,ÏL\3'ŽG.{¡ù¸#9‡STŠ7†gê¥hÄç^º£Ê§|:OsêC¶Œ§)«¢ó’T`÷/t$Ï40¦lÁaú«ŽÝ„PÂ6xpùZ¾abâþöÛ"¾˜ +.XaÔbòmPAëG—ó":®-]Óó•÷ÝÒ3ÞDˆMÊ´rQe9¶™@¥‡=“öšÕ¶*‚^m²;5âAìØ/˜$$¿±wªv ¹ð-í­‚»‰E‚÷Î ›á©ûtæõºâìof¼PµC-V:xÃÈʘÄ*H˜4§"¿ƒ’ +¡H G=:ÚKÏ%‚& nþˆi=¯Ck2ÝŒ,“IÁYy× ¦Âû…¹-2q7¨Èï3syŒt@wÔ';õq©;„Fx°Ã¾H&x‹­Äýíg+öþ€•·Ø.Ì…ƒGcs²Qó°AIQ<Çnþtì/±Qû%Ϥ~«'U:`úæl6|$Nc²‘§óù™ˆŒ‰_Íø¥,–Æ’!,µ°öåp¨!¥hHÎxÓ—IÛ@d$X‡†nM©+u~Ô.ÓDØk]£È?©Àƒ$@šWÜ 48ÌCˆ1C‰ _ä­© n]<Œmý] Ô˜H[˜pÉÛ”ê'Ý4ô±½ækþad™d `Èmp\\?ã“6%Òv^¥¬‘[÷xW¨Èqžžµ$B2*¶WŠjœW>ØvQšQv¤3Àôgº%Ñv6nÌΛ’ŒhVdV¹ÎûDügÎõŒDéx•B’gKù²@M./Ï1œñ}ŸT¨¤O¿qâ¢Ì|‚9 ”tÈúPCíTÑÍhNÕT¥ÜWâ^âþ õ'KvçânĆùþ>¨ç ˆ&Y®˜ï,€QW`ªÐ'¾Äà&Æ2j,o#æÁ[• ½œT/(ÖËRB\œ§lŒßGnðq`Êó)î!wc§ÁZ“›§ž“æÃùpÖ"Íä°»‰+ŠW¤Ñj2Ù©™¦2ò<… —8ëCâ1å´Ð›¡m+$UÊ胥g[¶v*Œ+BóÖ;Ø`Ò•H_Ì°ÞîsÛ—¼8íð˜›Öb>æŽG¹rqør•mÞÑϘÿx‡a^f8Bb13cÇ1m7tNòÝÁË +;jЄó +N’hO霨SÀÀÇ}ês2zâÅñÎúôó†SÓ-=ïoÊIM™!È×sý€–Ô¾NkχP„ äæl6!…ý"Úšmä¯9Ǧ÷ü9^±í>:IBÉ°½ˆ2Åíè-¬…ŽîCŸRUúâ€ïÆÒ º6Ï9Z¦vΞBÇOaBk°ûGFº=š;Èÿã¾ ØØèMøƒ>ÿ¸ÔítUÍñ¸ç?² %üêN{<îöùÀv‚è¼íà¹Ñÿã½jzã¶è=¿BǨ7KQ¢¤cú4‡A²@/Šu²iÒzmÃqÛ__Î9CŠ’Öäàì®H‘3ï½y¯`Á–ð¥~§v[kþèUÇ{®ï}b!~§â™BbE.kªÜâfçuݶ°ÍF +mø¡BÚ°’¶¬ Ûÿý‰Oð>\÷˜ØjîÊU±Ùä¤ïE?s_ÊÁ?eC*¤jRGÕ `]¥#8ØÃ%,p·AOYRs2¯8r¢‚ ë35O»*e§lÌÔ*+‡€Æ»ýÏŠërÂ.°gêô°ðdÅLÑÔOHVàÕ2«‘êÀ±õÚ +7j‡K‰˜¾7-õâPhÞüͶţq M€xàx(1QÊ85C‡+…¡¢Ær∹ÁõSöruRÄ¡0u §x„6 vµÙ¤ÉgÌ3©›õ¥%9”¤Û°…+·&ØïB‚Ó††f¨0Yø²À ?ƒÏSÑ +·­G Ûlª7Œ¯Ï¢ý%ûi¾$ªÇRððUÇapˆG$ŽE„L^Õ™Ÿ4>ÁÜy¼ŽäžÓA¶êžÅ5§=ô¦‘ýÀô9Ìß«\#Kø¨º³_„2QhzlÂ+@uŸ%¾¬ÓA—ìÝöÚl +Jb?b·›±Ðm‘ª°S«ûB#ë* +ÛÔÐã¿Õ{ó¥…ìV†#(ÛÅAq.J|Ç©«ôjháþ0&½k´Z1’q'«=pU¢k´^ îçVa™2?cá‹'úXp™ò?'×)þÝGŒµË.q¿® Õж8¥Ž<ήk<õ’P1Uÿ…mpœ±ÐÑ;¢¦ üɳÉ+Ú[ÑÙˆêOP¥ $B°ís3÷æ>Fø%5as”ô;›ê˜ì¡ÜŠAd9l”;¡ÌW³$tv +²­Ìïœøƒ#˼Gº… +ÿS%F)¼‹U¥nå~j—7#—q¶Låè÷‡ ‚Dô¢ËZ³93Á¢’7V^Gœ–`£b„R£ã=Re±ô›#â#n›4µq4)” .ùòé–7k¶šÉþ.ÎMÿÛýI„>½sÄ€_` ¦÷?z¹%>Fí k\Oþ [!€ïï_6&gÎsÄÎÅ»{ºçÇ"†IŠps)7ïÒÍ;½9‚š[j,KX‘O+V3Wð%ÇœÎáØÿ|ä,CפÕÿÞ&‹øjg~7•/ßgœ£Û¦Ú}¬ø?•P°õÿLSy;tCe\çï=¯Ž¾ä_mƒ„õ·þ5ÕËj¸¡…=œuïÛZ©Žyëàt×WûšË‹ k¢AiÃí¸– à©ýÕ'þÏñX7d 6¤`Ègµ==w„ þuþ? à~f\ÈÈ+ßKä=Ug·¥âl©.fÄ)ãíVŨª´pãÖRUvu7jÅŒÂFZBÓ-Šö„@Õo~)æ…×pEÿ÷m¥àtÃSFƵŒ,Er+®¬×ˆN/'J + ã€)Â_J +i᳊4™ åLQie ïáà3Ñwj¦`Vü‰3Œm¬èsC|0ú¨áÅ“ù]²nÑqv…¹¢Fe°rÁö³ÑCl݉‡CÔY©K1`Ï£ aN +˜‹´+‰´ºk€S.aá½t °¥+¤S+W†ƒÙϸ'¥²YîáøÆÝ“èà¬ÅIt _mh¥ÑV¬l AŸ´eÐ\§`/†¦DMO·4½ (âlj´â(4‡;Ñú­(ŸéâëàÆsø‚Ç0ºA'ù‰ÍR Ç-? +vÉ„jì _k•. 5k‚CX¶?ý Fñþ—ÿ¢'=óÇku\Œ;¤€›†>fb¸^üÛqL+^>óz‘õ[7m·(¸8ÃJÖ¨X—…šhZ÷€ª VVÙdÿË += +‘£l#÷„:Öžá¡ïxî~eô¦@:Yw]R7$Ý¡zíùÎ6â_dÌ{´À~‡UË®nö×cjç—±M'ÉCwÂýKòà°¶'µ¤”bëM;mýë ³+­£ˆQ:¼Ó(ÃK¾;£kÐà öLä8ÙXɃŠtèkÎëºEÉÚÀ¾~§=EšÒøW< ÃAŽ+Ú r,|L™F§—¹­^Óä'Œ ÖEšv²t-ÈÒ„wôù†þä§&>o6=þ(!ö‡ïÅO¤¾»y–ï÷°:$Õ jRZI¬ Å=¾—¥x_`™(žMâ^ˆtÁ÷ðƒ—d¹ â%SЖð+!Ö/îÑhР|žaªúT’»Û MâB–7ÔÁ’‘¸ñªâw_‰i¶V(g|©àÀæââ@þ»Õµÿ.Ç¿Ã’x> +stream +H‰¼WMsܸ½ëWà”ª<4‚ yôÆÎfSÙCbU.q*%KcI±l)¬òëÓ_$g$ÙNj«V’ݯß{ýÓÉQkÚÆw=ü?„ÎÜ]=ÿùuk.vGÏOÜ?[ãÌÉ»£¶iüãÌlä__MlXÿ MoÂÔ5“ï¼ñ}Ó÷>øptì'{ò¯£W'Gÿ†3`m‹Ë`güõççøК—7G9ú‰B0xÒ{<ÛñÙ'éètl˜p=Nß:3öMÛMÁ ~jZï&<óïÇ×vÓ5ÁŸÚs7ÇwÖÇÆxáÛf0Ç÷æÒNæxk?u#>½µnj:süÎnà³hŽ?Ãú€ë¯Í';4°âÆlí¦Ç>Zךã ñ^aá´¶5·–Öo­‡¼ÀéÎö¥MlÄÏ>Âî=®Û™¯)Ð+ Ƀ•ŸàÁˆk/͹ÝLøùUúf—okßZç1œ«´Ùuú‡ÚŠose]‡[ :<–x¼ˆÙá•Fz!WKÁñ$Új¨¶Âð uÿÁX:Œ\¹ìË]!o=.€Üž”d¸MÀ8Å$¸ o1Ñ5¡F¸™£Í®¹TЋêªó÷ž2¥ã¥«Ú óa8½¿œð€­±ÿ8ù"¼õ Ð l0öÎNç\ÆÓ´(m“Ê=«²+ øâÔµóœrG9ê0ª[ÛéÌäZDp‰ô7•§ÓOSmf‰VaºˆÏ à«Ê¦ºa9<–#ⶆö0w ø\.a}ÔXslC[AKI7½Û +âw6ཥ)6~~f7±† ¥í $ 7Öiä/RµdW]ÅR³ú¸w¨¡€-ŒÈVçGǤ0Àð#¼ÚÈ;ÇuaAßãm¾:•ì ¤Âá;@È ¼CªÊÓ…ÏÍ[Iÿ½Q܆GÁªX*§¿>ƒ¢† +i“ô 1\Ý@•R“žºõµ!à^y»Oÿ=KÇ^þøZ)òƒH¦ô÷*{ øU'ÅYq¹)CQª%âý°p" øýÉHÕœ2©†€g÷T"<V\gõPX½t öÛðý"³ ?J„BéÎ2ë7’¨=6µ¬þ˜€È& f;è¡l&¸~oàûc.9—lC Ä6¤M&(\çæ›üj=ÝûFnÈé"(uŽ/Æ÷¹A¼Ž”æ1¥bı=ŠÎ)Ñ"åÜ{Ìá9ˆ"à& þ|"O$춅S)QH½wÀ½¡>A8-6¤ÄΧö[AÑѽ¨åpž DoüÜX¿8Š`u& [bäƒw +íç©õ £H^âþÐ*ð—hã¯K>èÎ“Ý ðiãAÄ7KÂ×&uøS 2³‰­À"„uoyQE}!{Žü,)-{·"¯ýÒ9ü7‘]òÆŽ°p†¸áÚwø}‘€=2ŸÝ›¢ý¤«Œ¸K|0V¾%Z~DÝ@\,Lî.eJt‘¶H÷k×1ƒÔY[ñ$[K¼ËF-‹™º~¢Ã]ˆ*`?6󯶣Šýp+_ÉÖolövÐc .©0sÌEmé)ë!ãz%}§ÐXï—Ø.‘áÏrÍM÷`Å=³^yóƒáôšeÕxr·5E'îƒÊßÚR0ßbbl<ŒÚA¡6Aªbi‘²Žisùæ=G³î¸Ä8ŒÎSÅ®1(‡­Èó×ÂP/ác=éí³ÒE0³/:ìæÜ´ÏÍi°%[ä\‚e[gÿ,§E"©gsûi”ÅΣ{í…Ú¼eCü{+:SGáœx}@d:¨™‹î@á +Â7sW'Í;>‚»`Àçš æXz»­¨gZ¥žzB)©;H7¹juÄ3º©JQ¼Ã´dbãW ˜fZeËNMê·»TaÇ㥧§º "rȜخ†@6¾KšÃñ¥(ûKq6ÂH“ +ç #ßö}Eâ­ùE¢YðÿÚt¨½Ž<¹”ÓÜšT`¸©§¨[ñ…ܸv©6C® ŽpnYÀW2YHTÑËâÿÏÜð)Ößc1¦\Æ:k÷©hó­òïT¢ Ó̶êc–Ù‡èk.ǶNåY¹×Ä@Év&³°NZEŒjÎ´#=çÔåØ{“a :eæ÷¦8Ǻü‡H3;ñ¬fßtŸB„+xÙwkÛ{z²%8gß´ÑWwúØ+[šj•"Ĩ„y{g£?VãÅJ_í-TNXåÊ°´ÇÔCh®3S?F2õ~|ØÔO\.¡>«¾LÍ•B¼UrŽêÙçK³ÎOÒCCÖPþ’‘Ú$Y "8Ê…š»/yÍ ú¸6FHý]×´Œ¿ºÑ.qF&ÃÑœe”ý&Ä·µÎŒLÑW¨ãvVÛ pq‘V>²Ÿ‰{=yf’tÁ~X^pn~©éÆY¸A+Š2êßEQÒ¿„ç{ä¢Hšº‚ ¨u0óP…á†Ëk>˜â*‚šr2¬Ì+olRÔí+Å)|*t¹ªfRÑlyc¨HéÖó^Í’\üG0IïîXåâ¾]AûG¼ad«FŸ—ƒ’`&½æ÷ï"ˆ{Iì ¶p‡$qÏ/&óʆQ)uÍY³ˆ’h”>KµŸVFïä’%©gkÖ·øý†®K©“ƒJãÍK“m§È6cùÖR +´y ¦PWö. ‹ •d°,T’!yZ“Œ> $§S]h‚‰:(~^ØKe_S5sÀMå©é¥²çûÊÂE™Y/Nõ }:dmÀ9ǯ´Kaã¬þixLV5Ö¤³jSdâžk™4S>L]µOy=ye»ˆŸ~!×¢wÂHïMà÷_&&—Gõkóð džTtOÔ63—+ÌK\c›·²íý!‘Ê°ï€jC{ªyO¸——ºòO’6ÔÏþM ³tÅ[Y•è¬<ŠßÑê—ê2duD]ظ“6={@Jw˜ä‚@šT‡2q‘yS„kÄ×ÉðzN¼Sž¨jm)1Ûçz \±{8ª )ݺ±}va»õ”UÅ„›À¨› ³¢WnT¹ØË|!pÄ¥˜bž}CÐ`¿¤.ûœB=‡ûvxî‹ò ý})Izm»–|@ï™2–Žÿ:C#S¨Û'‰õðêI»óÔÉØ©³ͤý~&”7¸§÷f ƒ$<¾¥#ÉÝ(FʳÁ²·æ"±rÓ‰¡ã¥¸s%W;Ï|.ìùøÅÎBÇ™vÓÉØ‘ÂfhÞ«ø+$)áÙØÌ%q®Óe…KÎ8 Eh•RßIeVÄ%{ Ù9kÉÄ.Ï…ì™ÇúRBX)ö-õE.¯¬•'0^tøÆËŒ3C`¾Z™!æŒ~ÅôòA˜¡ÌœÊàzä,[ADÝ)R䶣*o–e^º=ìxm>f,Í´p[†-¤ á fìÁ|Ó|×夢S¡ý@œHR‘¼Jš«äª£jfOŒFƒ8bQÊSaœ[€QXYïØÒäÂrð—%„ïš/ˆ1I0õâÅ6hý>Á¯f@†üÄÈIˆ©èPY±(…j†·‹D%¢OnuÎb´‹­x`^˜”¹y%fÞ-Ù‚œ½D~Aá›vcS“ΦÚìb½x ö÷ß‚¾ÂÆB›­L V&½r$[à†IÍ£»iÖ¦e¿?Á>—,%Rà;æOïªÖÚ •Ú«z?†¦c¥þÐMIÌùøŽ¢ Î¥?8-]ek¥ÃôS¥c9¤&”LÃ%KX@¼«Uèt‡vt§úÙ”d+ó¬¬Y·Ï*‹(6Ë“{û´Æ ï°€KÌsw%sWö\p€´áõ“)r0̞噳1?/çÞ=¦­0^ª)qm¿,ªjkÖgfµÚÓÛ÷€Á^ÑÙÞlÌ Wnè„i +NÝ)jþy¨-³d,þt{¶b› ¹.Q¥1Ry(œÇ$õÚ‚vòôD±£8îÍgt´üˆÇUüô7ºÈ¸6‘ +XªyÛíUókÛ湤“†ñj\j:ÊŸ†¨åóZi|þ=¯ ?]‘&zþhbè™d²»èþËz•ì¶qÑ»¾¢™陞ý˜XA §X@ŽEÉ”m-;úûÔÞËôPT‹²·ªzõê½A.§ ÝKÄòñ…¾ç/¢X’ Gí.­xÏDò‰pD“"8ɳ½ñr놂ÈÈ<›P†QAÓ.©àYTð1g9”tûÏ,¾®Dh¼œ øZ qÃF4U«ÕÜŠŸ¥Sþ¨6äè²6]õ¼+²™é alæ„áÅì0}© ðºW›ŠGL•$则åsìz8mŒŸ›÷ôÛH^¦÷.`¥-(FÅŠ¦kfûhW^,C¡0ýó¤Å°Ã0óR±ÒV'©bã Lq¡-/t™€ÀFÕEÄ”z€ÇFÔåí^¸?ê™û^bcc¯mchÈ&Üb+”j)ˆXë>™¿”lø +;y@nj‹Æç?˜Ù’• £¦Î& l†  ¹-þ1Hû…A•± Í +¹Å¨aÙ²¬'g+'¦L‘,"šQBê#ê­o{øÙu­{ÞŸ}øíSíö‡³Í߃w}á æ.vŽÿp˜’ž^»fpm mà}çúîmá÷Êï?HÜx úAÔÜ·ŠÆÛ-pçqÁ+üÁY¤Ñù€°=äî‚T¦&”^ÜP"¤)X¹Y–“il<£žÆ:¡Üs2ˆ“µn“uð=w%—ï”é‹ ¿ ¹ÿ]6c +qd¯¾fÙ÷ï%@ Šh²¾ÀežæEnGx ©Á€;WK®Mu?CJëaLRý“C*Øà°ó#¡i4=ò­_€õá”’(¡È:…èˆ\ ÑögÞ°#`SŒ›š‰ÒŽ:¯(/ø‹¨f\Gl(b„Þ¢ƒ…ð?|t#‰žÙxj’k:»ø€Kp@a©¼%ÕMûuêV¼¬Hæ Qa'â +/Uy|Óe5ssqRî°ö>;š% J!vpšOü ‘=Y¾ïIM,ó=³fõ­pò„¿¿ã4 àÎ.ª—fOö-¶§ÕãJÜØíï¿+…¿áaþZJ­FfuåËõ„CÂshU_+#ª5yˆ×óL¢WG)d1৘,I„ÒQF•¯–r¹’ba™©IêB|ÏÃÔ°Ü5¸cA̧iJ? åì•9wÄäQ%‘ŒÖÓÓ³<û9tp¶uÇly#ë!:^DÿŸÿIŽŽÞÊG\Ù_/Îþ`ª–Èü +endstream +endobj +125 0 obj +<< +/Filter /FlateDecode +/Length 4587 +>> +stream +H‰ìWioÛÊý®_15À#=;É ÈC'íKÒ>[Ý…ÙqkIŽeGI}ï2Ü$Ê´cÙMZÁ€Erfî~ï9ób4PB¥Æzø§ƒ_ö•8vFúJh1:¨T©BŒŽDŸ"¤œ¿,õBk›ÚÜçÂøÔûg&ƒ¡UrôÏÁ«Ñà耳 +d|{³óz¢Äîlðۀϑ٠dçÂéêŠ~—ãêÏQ[Z(‡ÿÉÌêœr©ožó&¤!˜xRð߯è–F·>KøE oŠÔgy&t–§Öy'Ž&tÿ{p¥œöÁÈúPåªÎ²4oB X ÖÊŒ‚¸eÅmUæeÊCdš‡`ÙcpÖ론ܤçŨŠÍ¿Z)×UÊu•µ"-Xª(RíW»¹~?|!“Z1üƒÔ.ÍÅð¯Bj%†9üO31|‚¿Z žÔP/Ãç2á…·ó þ(UÄðL (¾»°âñÌïh/l©ÏZT*5=à—ºx8§dÌvz|ø›´X¦ÃÊfðMáæêÔ»RÎK™døûF‚BY*M´Žû \ý3|0©A["<šÝ2ºj ~y.=…;AÁ=€ëûâµ4øP/Ql)˜öDŒÔZëx·ÅÝ¿ÀCŽ_öÈE»eÊ«p¿"·,ú÷÷Ñï±K5tšC{Ãèaê±"UÞ‹»Tå…pPV9”<|Îæ«öpJ¯Ü&(Þö eÙ·G…´èÙe—Ú¾=Á·tßne”E¯. jïÖBÏ—C=õèrÞ÷ÆЙ¬7†0[r¦oyOfZ1슅’Í{ü²¶è­ «³^¿L^ôúe‚îÍ—ë« ]˜–ŠOÎ{ªÁ¨y0šr0Œ–F#?,„V%ò“v:ͬ±"€‡A3rÇôÞ™L¨ƒç2Éñýà2½ þÂl8€‡c™Ð4™Jêý«²W?‘‰G†a_@ÿ+ +ù_Ä”Xîå½_F,„oE=ì_š +ß«I¯—‚‡} £!v‚2D?ž*ðú#{ #kD—‚ý‹ƒéÓ§;Ï®®ÎGã/WO_¿zýß={öL¼Ø})·Ôÿ¶Þ7m¡|Ų>0­áïZT±êÁÍ7á–¦å(“3+Åèó4sªÄ÷C! "ÌÄBRñ}”åd4ºT|€_ *©¯$°U™ãŽ©„ɈU)Žá¨Çº&Ô:W’é#ãõ¸^ׄÂspª +,ÿË ËÃWj‚n%Ð`ï% +cf`žÂ™ ?&ªQâ„¿–’Ä\"ùÃkq$Eûà—}L¢ÆØsšvj3í7¼à~ŽûYü©@‡2ÞFKÔ!â¡©4¤²—[?qÊ´n3úCet#Ó9©î\Õ•«§½ƒãûÉ$â7žœ—±€H`0cý©I ƒŽ¤¦b(à‡ÈÑcŠó’MJ‡b— Æ£H{ ÉPþ!ÎÄ9üÅhÇGVÌù;ƒhrðIcô£Ö3å¹´¼­!„q“èý8Ró¹´ÄwnµRWà¶1[³G§𠜷ÿ5*Ñ©ÿ©D[ß&¨D§ÄÇ¥ þ¿€gå(t#¼. æe¶3tÙI¦ò6‚ê]îé3éP'ô®¯_ìeÛF#KcG1 +ñ©k ㉮:n§mŸqÇÙF˜Æ6á?`Â72Û{&ÍRS!è4 ŒËt, sôELWÅœ`…÷Q° #†Ö!È!Ò»–q‚²˜ NŽXJü +5[°Â¸y÷‚Í®²‘¡ì÷LiÆ«ä@G¢Û„eÛ‰í¦‰MÞafs„Ùˆ9ú&:³žÄ„U +p³ÖÍ“˜ªÛúÀ´o%17K|“ÁàvyË‚÷ÃýÆø‡¼ºqÑ«ç1—| I±tù¤1uëÄ ÀñÊÚààŽ:è2y—ËÎ3˜S¯ Ba ×6ű¯±U­·jœ×(b&.£¿ã +IÛV¿q¡¨c4h݇§lsúçô©H™{ªrÿ¨´±¨j¬¢†Ò’Ƶ†PšOYÃi4 ãéëxž.Ñê*úe¸#ê]O“ï@?*kGϹ6k½ÄåkÚ ô“ˆ¦WA3%¶úðäåO¢íîXZ’ôAJð{z3!Úfø'ÃCË|áÓüÑiY·Ö‡£eKú6@˺%n˜–%*…؈ёˆ qãdo¨Ž…o°vo`pO •=5(|Nø~ ¨,#{Bg¡=¨î5b0vº"Tç£ïÊvXñxchçMcéãM +÷ÎNÚê]O˜ dÃSÃÇ>zw+Ù4›²ˆ•MÜéµ>…vœÅûúOtFž å"]à˜Ô‚Z18‡ym~}c1 ÿMiºnMQÆNl_y¡n³Tç\ª–«q+¹®oÇPµã-õcÞ7m«þmëÓþ®õ@«Ü,q4çÑMŒ¿iÁwv¼h¬`'@Sb#”Í™)CQ~;(r·ž]Pšl5Tgâ2z;®†][]XØ‘z,C´hÝ9î3ÛŒþ‡ýjÛmÜ¢ïý +=ZÀÊHŠ’€ý‡¢o›—díztmÃNœæï;7R”Íì®7²¤zòEâÌpÎÌœ3“F´—éÛB¿ÛÞ:öƒÕš7>ZÕðÆ;c.œ_ËÎÒ.‘»í/.‡,NñèÝ"Õ”Æ?¦•V˜‘o¼5Ž`í]Ø0,FfeÕƒ¢ñ®—Wþ…Jñ (²l L\$ ¹ soረ¡EÇ8÷$ùŸpÖ ÉâÙH¢·.ã‡ÔP‹Èó{xAÓ©»4Õ$–Îáö}|Éýâ½ñD­¯QDÀßPHTàd´suµ\£dÚö*!¦R°nZSÀôEßW¿-²4`†kD×\¹ú1•+§ê‡#F×p _SOiFR3Æ·ËJ¼Õ…\® g®zõ2´bÕm>¢bû¿b=ó׃b[R±†LLµ¿ñ“–ÒÂÈà«Ü¬F_•›ðì„3'* v™Î$LN>ÌVå ÉÄߢk³a$þH@=¤4)ŸÁ°¡;Š<Y•*nÉwKÔ’[@‚‰WœxÄÊ b…óæjaMDVÚ +YæóâOº Y#Ö{ܦ†‰Ër¸]c\Šqå, Bcúq‡ZÀ ñë›5›Þ®äË!5Ô)òü^Ðtê.M5©egÄàž‘þ`H.ÛJ03¦l‹ú¿¡lëúëC¶E-*Û‚f’¿Šä÷ÒÓn½U5÷vxÔí…øYbF³nžDÀÔÃÔæ¸ý6C;mhÇrºZæ¾*¾1Q +7ÊÑD›Ž™•Æfð…€h_p¼*ÔiÏø¯‚/Ù°=£_뾚(Á3úèct)7cý¿Åzp1ð«1Å\Ôÿ Å\×_b.jqP1D03þÿbn†vÚÐö2¯¿ßÝyãוÀ 3Qã–°†Wó84L˜ •JòŒd(ŲMO[;à»ó›ŒlwKÍ[ægia@ÜàÑ’Ëž®¡^ +íßÂãËéoôTã·4g¶—çø»}?R”TzmU:¼ý99ÒAÙ«ó§ + Ú—w=Ôíà¡ #4ÊVU4€«G¾U¬,ŠŸù÷ž‡Ö1"|c²ôzá[ |—Ó[sæä÷˜üÿS ì +endstream +endobj +126 0 obj +[206 0 R 207 0 R 208 0 R 209 0 R] +endobj +127 0 obj +<< +/Filter /FlateDecode +/Length 5010 +>> +stream +H‰¼WioÛHý®_ÑŸn`(³²ÉAÀñ‘õl®±53X,ÅW<‘ÇrâdýÖÑEÒ’2³‹ %v×ùªêÕ³Ù¤åT› +þZkÄÝÕd÷ùi)®–“Ý™ú½JÌ.'E9-u-fgÂ?<ˆzêàüsÓJØÖN•SNèjZU5ܹ™ì%gLg“O ¯â5Œß^ìÝ”âàãäçɳhšeŠ”õŠðáA¨šÔÀGc§u[¶ÂÓjTò¯=YèzªÅÎY˜zÚÂÃ…,*üå«,@ÄŽØ“íÔ‰Ã×·Òˆøƒ‡ïdÑâÙ‹/ §œ6bçŽé)œ˜KÕLk±soZ<{-•Â³á +Úâ•¥ü÷ì' $Ú)ÞcF0¹­¿TɉŒµìÃ> +ÓN¤iPÁ>ÉÛ=½xòdwïìþó|1»øzÿäèðè¨,Ëÿ?}úT<;Øp_È–ÚMxGW_Âïõ´²˜¢Ù9«¨Ñ©²F‹?Hp©;_¤Aç1`†~UøyO±¨Éc:n‰øG8:ï ¸ ÷BœÐ%E—,J¹ÂÐ6xBSØî}¨— E9|s9 f|á[Q\¡* ÷äˆsr°`ç ºUÑCDH3êy#µÆ{ÛGÓÝ ¬ï¦öÑÔÿÏh¾‘Ö"P/¤F=€mƒ^,Aþ­õ]Šx$i×jŠ±î ²p¡Z²ôâæÒaùp‘dÙñ™¨è¶As .&ÔÊpþP˯hl…iÜ>kmm«3ðßbÀpì&x#!Ûpï3ü ð,ì²ë ||_(.Ï$H¨ÐyE¡I…Ñ°žA"jLçÝ…ÏÁ9B¥F]ŠRu& JÊ H°™…ë¥4¤úo²Ás‡ß.W;¼:®ìM›€ÈzÉÅXƒ’ +M –y%æQ°fàó\\Èk…{Íœbj¨¼ êùŒÝµÅÐ×Ý#å3™×hŸýsõßZ‡*ÇB“¼¦$]Éši"zBçCÿë&w¨ì¡’o%¹üH!·ò¹ï×áÌ#…\¯-d»¶“ªt(r± Ÿ/¿#ÖRˆÆð–{Š¢Àôn¥éà#F§‹A‡œ^ÝÚ.ÐüX#¿Áºw] P&羆®|Ϲ¸A䨕‘Kí|}4I÷)b¾þý;‚ZVäòxPµb/PmÁZ£Ý?ˆ„žï(µìúšúj ï°«Á¥o˜Œš¦žjü\é°4ç<ï&°}æX9~ guä6h®(Èi¡¬}Ïgðô#<VXÔ¾á5ø=|^c¦É&Jü€Î®JžØ ”çI8ÃÂç{8@u¼'¯}Á,=½¸ã•@ÂÕ0­¬*¢—ÙC‘ZÏ™3Ì—{Ì"p!øU–L˜èB`m›'z5©áð(P%N‚ÔݶéHcÔ¢B¾‰ë˜º‰Â™Ç}àh¾Ð(¿~ÅçûÌ°9°–|àçô ´bPŽ Ý%R礆IËR\zšÅ›)ÃgïóÜÄ‹"+EÜϸ)#羈°Ž÷«¼y¤SÔMW#tw‘f<·Ð/>J,Rt(1mö2ýlú‡2íBF0YTðÃ'Yç“>(K‰öeO³£å=ø(‰—ß»°YÃOD‡–cF;¹iâmàix‚ê™& âÂq1øÌü¥3z >rI{(Êg©Éÿ{`Á™>þg4€c>å…Áeu{b6@r»$‘“»A)Œ­S¾ŸýØë,~íjífÌ7[cžÀ¼\m+n«¶R£(6«w'¸× YÛfL§ÑöQñve ‚ØË4scµøU3Fxα™-ʧ`t.î|#Ì‘]fDh+²»ùÖúWŒ–@ÎQþérˆ-O{¢(—=å‰B3ä‡g†dÃ!ÝcTh/$Î0¾²$s?=çØ s®zh\è0d]ÏBdc?qïÐ۰ꚬÇÛŽÈ»ÐbÏœC’ùM¼}w!úSbñ'‘ã6@1>ê/ðë°30UβAǵÀåïB_1ax­H¡Q(®Ö«4=ë6ýmgµÊ™VBþ›V óÿBÎþ h”‚ßåøèv´U\òŽ›ºãtœIµ¶¾®á›õÚ(uÈdlR3°ÖùHÛfÆK¹½-Ö`@a`§®¦…0փÁˆ Í2½v–…¸ÅÒÄì|œõPœù^6DžTfV/ß ¨˜þutAõéÂ* æ%7>ÓsièÈ7lµ‚·Û‡|ÇMí_÷Ûò‚Ú…'Túi½K[W …º—Iø é÷ÅøX{ž1 +†Ú¥¸ M4Û 3z‹vGdÚºxÎçƒEã0$%ŠäØhß,\wéãùµØ”Dç•Ëu»™#U5ŒD#‚h ªÛïÆ]¨€aÙ¨ÏÔ.óŃôÊ÷DZÛÌ ‘.ºü™aPåA Öúõ\}8´;m‚757ŒÜ©PzBÍêÞÐoaM—«…"¿È ?°¾Ð™é÷s)ت–ßd]ó<W-Ê7ÄP­AìstÃäÍÊ/‡ŒÍ[q䆘ÂOà»OÝAÕý”žúúÍä> œ§z¾ý¸ +Ð@öÆП·{»ÚîíJ»ÏÓ›¡ë%ßóŒ~ˆqrhÃ}f ¦ã]ÄœvY­÷Zu}öÝÐ耙r6¦Ô¢Ò¹ˆTØ"+&¸½È¦ÚÔ|ZSÑzn˜¦¿Ïy6 ÕgÂ? •±oŽø@¡°Š“æk·„Óh7~H•¾{ÛÚo +µg|Q +öløÀ0°ôñ¬ ,‘x- 󳯑"¦ôµ¥hüOÉ‹Ãðèb¦‚¿Öqw5Ù}~ZŠ«å¤©¦¥i…©A­2ÂA¾( msw¢j(‰2½o€Ui›ÐÖ(;@›Ÿ°ˆiÝ$²Ê\BlÚÖ–ÿ’Á0f• S*¨j;¦ùÁ´ìH4ΉÆeg¢yAŒ7/;âMQŒ—ÊSjà:¦¤p X’NC‰hH:ìˆB¼éÄ%f‘þýÓ§1}Ÿ„¢_”ðFTÂØt è9»¡ øW7Sx³˜œN~ήx«¶¹ÂVºz‹+U õÑÝâJôEU@A+Ó¹¢\I‰õf›KÑŸm.E¶¹Ä ²>¿ùÆSùXV¯x„=r§…¶§—[V—„¤Gⶪ&À´¯'^Ú\Oêw4`½¯&ÞÙ\MLÎæWBjà†êÜX›™ÞÑÄäë^rî}OÍpÀ‚+ÆéÔÚZ_úWÖ;Ó¿³7ƒŠ†ÝI½¦u©º½ˆ€O&÷óí"л²Azw6‰À¢<Ïf±×¿£zw¦~kÅ fY6HK +ÿô [‘…piJTSÁ:žÝUy¶‡ŒHÁ ‘Œ&<ë9&Ò‡a‡: »‹"òƒ +ø‚á#Þs@ £éáDì!‘†§}IB÷‘ÿ’ Ü +N%m<§q/R+.0µb| ,y5“%«ˆfþSÂñ)È +D:‘@Y:í…k„CDÈ|c¡÷ùžÒž#‹‚§çh/Š ~*öq1²¤6ÁWxHr¼Šºë,Œ{²&Ö5“ÄÁ“^BtÜEÛh5Ï,ÁŒL;"~ñ”ð~ +'4;ö¿¼öú_í±¾¸„Åà‚<¯ŸºÁŤ!a<>Bº ÊŽü.t̼t_2ßþEÒn‚‰<Ïs@J<¬ ¡ +Šéèšæ°[>V",] h4 ‹j™`ɉ¦¸´äüŠáÒ>¥ÃKF¼ÆôÔ>ý—Þût&+Â÷ž$žü‚ŒÄ¢Ñ\4´ùŠ«¦"óð'wé Í¢¦qÞÀ7ÒòšÈ{êÛçŵÏìøåm`ÝsÜtj|Ñø}°Æ /Ñbpè>ŒTÉ*eÊV†sõ@úZ’Jëéâ=àöÃì-wßà{Izhkû/óU×ÓFßïWÌ##Å°;»³»Ž!&‡”S€Ë‘N 6à;cûl“„ûõ×ÕݳöBr +"÷¶wgº«»««èŒÊŠÿÀĦ\"æ’a]j)ÔS¤I_:q«gOÿ Ä¥ìÉoÍà27Î è8¾&IÄWGÚ#ÆŽm¤fÉ‘)Y»4Øñz5*ÁvEÙ&(H±¢Ð©þ¡|œ*Ð×t8N!¢ÕÙqÇ‘Õ[°t\_á;|óÙ’B}z>óé+*vÁÅfrÞL+S}¯ÄÇöĽÕѬ1U;®ÅŒ§Î‰9dlo[Ø ¬:Š£GðÒ¸bvÎåTúÏñ³ýºÐêz€ÕÃ× ¤e™Ê–E¾ceäGÀ:gØb/óÕ å£_$=úT®¾ùŒŸ“Qã¬ë2%„ýŽ±°‰¾E‡˜Ñ-nA ¬aŽ©Nõ +"áá¹—çÛeêÆ`©ó6æ‰ñLôO¨Tÿ[ÉHa±‚=ÚC7ÉFböí4MÌ⺖PîH%TEy¢›ú†¼) ʬÍÿ»´G<¸s2/§»»;û—«»rr:úºÚ={§{{{æÕëƒLóT5Ò.ÿB/ÞÑ/›»r}1µ‡¥¹—\Fz9Ž²µ½ôA ^Þ‚…ÑK™rŠ.ÊÂç›ú a%´úØòdLl?ôYòdø¹~±?#~`5ƒ8ßúȉSËŽeG`ѧ눰»2C%‹?êZ;Gm¹¹­F6~‘Å¿ZðjöÒÿ Îý^cú•rÏ×óŠþOpo‚\й?äF,\Siª纉¤YZ¦Ë¹j»RѧÝãy÷lBܬ¿–²7ÆXYKXäõESë…R²ê0¬ _(Šù¿¾i„<’¾Xñ¥X‚¦e„zm +#Ϩ«4Ö¨Y + ­îÞŸôc@Òs”+šÊ F3Ùk·°7<ÃÑÓÍ!éaÿÓ[¤Ä´X¥F1!1t׫ؘΠž¿¨ŒÂ+}TèÒ²¹ºQY;²‘j>^*/L)U˜PGx#Õ‘ækôÇth—Š …oPëDWöH]âSªËÿ”Úâ|ëW`è‘pZUŠ[Z\øP +èQÀÅ(Pµ¼%þ……,@ª«lCW_”âÉêrÉêS: ³ü¬eÖ÷k–ù¾êezcW:©Õ6† h¯çy 8Ò·4L€Ú±ù€VûyKÝ:ë¹Åc›ÓM7RŒ©M#6u￲±ˆãT¶×0|hm»@7·bÄr5m<wúÉwçE‚wÏÝ'ç2݈­,÷m!ïÇyk2N¥ßus3G\¨Üª0׌h‚ž¾ßää3¢|¿À%DìßsJ½B‚æ ›¢IË­¿j0„ á» &ÛÃ)&Ö1ß0mR×z)Üâ©X^(dÒºWÃc+!%jË}ôü.¸À-‘Û”z$Jó5—òNIlv1¦œáB(9V¯ç˜+î`KV<·ñÉVÄCÒö"gֱƛ[î‰ùHÇ”6¤ƒlœYV†CËpoS6w;OÐ3›Æ%ÓÂ?ÔòŸ¢$SƒDÃW“C(š$Ç#:SA¸‚Ë(d1<B;ÏŒPŠA¨×ùÖ k¯° ùûÊñTQ¹~ +ѧt‡+~®èlq¾õѺ¤å(‰^HR}ÓW®»‚Ú.Žp YMÿº)Lý~"’Du-ü^ÑÔ›žõß6¢­*EÇp¿¶|S2Ò·h®à«`Mëy»nlÀæù›êò¿mÚØ}¬æzÇœoHL#Rö+­Ï½éʬT®g5¢PÌ%º±lÀË8ÓBŠ!˜!ý Æ`6ªš·ôü†ÌÈ«¤.ªc{̪##rºfÅÈÔj¨]ÔÊÖJ coz4›¨ô‡tã#·)%)‚@”Â%.CèK«^ çù“Îõ˜ÆŠËž{~¤"€T<Èeí‘ÞWË7™pÎ8/^O ßìLAÖÎÓ. ±í=„N9µ±¯ãüê­•¢ pþj/«Ÿø }ñA‰àH½Ü€¢¡oMø} áÔæ{+òøw›öqz8ì­Ù?1áÃo(mã/BY?ÿµ9¥Þ¥Í>nŠóú¬cq;op?ž‡›ây?4‡–,ÝÖÙñ½AÍD)ã…£ðÀ±©pÕ±Œêó½ŸÕ?Z€CØ Âæè€C<{ks>ñT”G2þ —gpúË¿ b6J¯ +endstream +endobj +128 0 obj +[210 0 R 211 0 R 212 0 R] +endobj +129 0 obj +<< +/Filter /FlateDecode +/Length 5011 +>> +stream +H‰ÌWio#7ý®_Á"°jóìnÆ>³ÞdÆÙ±&ƒ…³d[v”µeÇòL’¿ulJò!ņ ÆbwW±_Üö”P•±þ:gÅýUoëÛ%®f½­¡þY -†—½ºj@þ5•ZÛʶ¾ÆWÞ× pÓë[#‡¿ö†½ß`Ã+ø?ü~ëðF‰ýÛÞ¿{¬Q‹Æ6•R­hBe10¡r^Ü{:0Ð}oMUW˜ÆÃù»nLåB)à\Sµëvp•·¡¸ì):CÕª€65«ƒ®lÌ9ø %´$‘¡u"\’èÀu" ^Þ%Á+ E(ÎÕU0!A©5HΑ”’N"IH'‘pä="ŽÂJ„¡k_µÞ%°³º„‘ŒN"ÂHF'‘`ä="ŒNÝÕ’¿‚rø×–î‚è«lÈà´®+ïÚ]’Hè +‘/Idx…H—w‰øJCŠ©Ûªuu†¢L‚)¡$‰ ¥‰P’D¥IPò. J'r‰)Lÿ¾ÃÜÕ˜»¿AÞâ-†‡€Rm¥<Ûù )à_ÓVÁ‹ëÞ $i§B°š°ŽJο•5¼…Ãjk×PÉGAkÎ@¤”*ÎR*=y˜u”ºÔø Ÿ>à¢ÙCê[BéØãž<~Œèˆ k8a)ȳGtÌXO¨ñW‡BÀQ·ªÒ­Éô?¦—LÓ-zH¹QCw$ÁæÚ† SÛ O!ü€²ÑŸa“ ~&„˼ˆqâ¼e:Î%gá-&‡é,Þ|Á00`tƒ¹s9 $I‡ˆ‚Ѹˆ¦a4CjµhΨfnG'ßöÇâ"r|-k4ÛÃÓWÙ “Æ’ò3ÊBŒ+|¼ÉD,ž¹KÀE›€µÆ#iÉ c< ì8›qÂMÎðÌp¸ëX}Æ|ªKðZÁÙ=J±·4RÖ1¤ 6pYŠUJ«ÊÀ ’F¤û«®þU¬ÿ9ô¹èÃh 3B­¬ž  m¥”}‘¿ur7šnooíœ?|]ǧcÒ¹?RÓšð$’(›ŠQuÎy2ÃjÅœÒãŒCk&Èt †=ÐÜ#)¿F Ô ¨Ð2Góf$õ€GsâÛÄDyþXB§(ŒuBÄ™àZz®°éh‘–<*ÜD;Ý+éUËjPbÝëÅ×õFO7xÆʼnRâ:íÿHW'oØ;4m8oâü;¦ÑišãLQàQfðVØ{³ñ¦¯½¼xŠ±Õä6Õdjr šLYŒ”y¢,V,:‘1Ëém‘n+ %*Vü<.cêpúZ +ã¯qTšœc ×´7†-ózoãã6ï€j{‰ë´ÿƒÄ[`¿¬¥TOt,þ¯ÚTÇæh§ k„,í¦1 ù£AÏøN +S„»ICÝu®l¿Î!èãM7ÛUjHëïUC\€¡èoÈX‰ë´¿s‰¡AÚöM žJÍr£t)£)ÊòŒ$Mdì—!ö{©UÜœ1Rù’UsÓÆâÄ;›h’ +Š½÷,vÑŽçEÅóbv¸SÓõí:öÆÛ$|•N1ŽÅlö&Ž¬ÛÍ;r…ZTâʵ( ŠÀ¶U‘mªï_²_¨^ y7—‘3ê!–+Í£“©¦9–Px}ƒÛÜMÚwZXŽ3¬Ë£Y˜`»òH¢;YjZ/Ï–€Î¤Û–nrTáqp8£Îfbúëwµ­ThŒ¨[¨±›öx<^/zÜ5p4¼”¸Nû'©ñæ¦1&.&S̺¼`cÓ8‡ÂÓL¨Nûÿ¤@L¤fë¹7btëXÝ +:mÞŒ9´éž¨SaÐK…!“Sâ‚ (^l|º$¦!$ÄÛ¡ö±H蔥º¡)¯áëÙú4Aèµ™)SyX€¦_q1¯"¸è¹e¢JX@”äÑ*U¨7(q©¸)‹`UXt›†z`Ân•ÓŒæ³4tןͤβì+'C¾•Bé³Ø¥æA½áö×M1É1ðÈCÆt%ÖÛt}…í¨Më&þ’YL)š¤ß h~©©¥¦áxÆ@V #\Ü M +0$Pešv…ž q‘*]xŒ ”Ù¸fŠ\><`¿c¥sa´‡ÈÓŽv§dû’,^Wcñ*K­qà\ÜoñÒ¨žÍâUe/ùK²xi\Ïañ\/µx•3$y.¨åOgÊ=I¦ˆãÜž\¥‘ýo.#3š'ÒÅD\‘0Ó™ªÎ\x²¥T#¦S^Š–<ã-Z¨äòü”ÀN,y®¡}Ò_º_€ºß3 Ð gÇ¢“ïB,6ÄRÚKu·a!…²M«ñœLY^ b?ØÀ°Ê$ =ì—”N§¼år4p2iqf"ì^$Ü $Å’øZaÎå~€!Es|£Ñé.©°¨Öò^jžá¥©¶Áš+‰Š'CµKL†ÄÇÛA ¿'Ýh=î ñ5#€õMaÃÀä#óR¥ UV” HLâãêo)Ï^ÿ$ˆ bæÆêäˆR«¹ô¶5¯;WR©‰pMn ú={¯Ìú嶗Ëu§*bN:zxþv³Få0Ïžµ$ˆ Ò-˜rŸËÜ +UȨ@Ù©e +²^;ÆYh%ò?âÀ+™§AM¿äé½Vz{z‹½rËÿ¡]蔼G%ùßnÅ@G‚­vG—99)v…q%Ýê‹/UÚ6÷¶¦MZ³Ó¸âh¡qÙ@Ÿ&>ú“Í´'Ç9B¿!ù6`!IV@ÑOƒ(X±CSïC­X—·¬Ø›ó?þ`,å4 +endstream +endobj +130 0 obj +[213 0 R] +endobj +131 0 obj +<< +/Filter /FlateDecode +/Length 5154 +>> +stream +H‰ÄWÛnG}×Wô#GÓÝ3=3@@–­ ‹ÝlvÍ`”E@Q´¬$+¢Ù¿uëË\DÑð8ätWWW:uêÕò Tea] «Ê©û˃ÃÞ–êr{p¸4¿•Ê¨å»ƒyY”e¥–k%Ê ìMQ«ª«ŠÒúZÙº¨k{nfÎéåÿÞ,þ€3p+nËøí7¥zýáà_¯–pÒRJ 'ëðÑÖEéºJ5`Üu¦Cãg³c=7¶°jv«çÖ>˜ª¨Ôl£Û¢U³OêD;W85û^©×zWzîñ‡­6¸b¥Á|=צAðÚ”øâ:<\igàz³8àíÏjï¾»Õ–v_¨ Ý°9g O‹+þþßåß0¼x õ;ÆÕ`\!„¦¥+~gÒK_t®“+.á¨-¾×àÝFÝÒ‡ž7xìZ[ôlCÛ‚ø .V¢›WbÅ®X^À+‚Oïl¨q?„ÍÔEƒ{èòá{…ñ¼§ Z +Gl‡— +Ì™–šË•­GƒyÇ›ƒ»Á%‡®¬tC¦X]Ñ¡ž#L§<½à{EËbw¥’eµ†Gô‘§wà`Å6\~“ †¥Ã­$Åk]¡õ5Ùjz·6†Ý…s[´EHªÐU[âÒÏâA> <Îãç…6ÞpÃîßËí·íôøõƒyvÅNß*F ”—ç:+ÚŠâžð‹€à'À¸!HÐ^@Ùáº?‹ɵ¥Èa€J|}…ÞÖi—ŠÓþM[ m¡êºÄ„tøl:Ie%aìg]QŒƒA—Ž¾ +¶ê1ä6ƒƒ¸¥Û심& Ë÷‘.호d`#¬/Ô1ÞÀ1ð­`.î ä\Z\q,(§+ºƒQwŽkq·ãˆ2$ÿ 7L:{W%p‘é†@øÕÚptXê0AïÁ„1¹àQÐöJê üjËZm5å99&a%{­Î7\ï]Ȋɳbˆ~//銆Àî‰?´ÏàLphKeñ²+ù²UƒÚ…¹íÿš8ËÅ2NÇ8ò•ÌsØcÙb%Ál%J©2˜?(.æØfï’£¸Ü·ÇßG…k1+Ü ÅZhÕbÛ»8˜Í±iR¿­ñÝ\^æ ¸Ã®d38Þ`ÊÍ Þ]FžÏf>Õî[4ê§öf ÛB‰»ŠyZàÁÕ³«Þ, ØÂq„Ìsd«¦× »¨LxÝåŒó5*¹§H¹¿ÁÊJ*|èBŸGw¬˜û¬õN&š¨©„È ZlQŸ(Õ;ä¶Ô´B«'{‰"ª‰^q.ø¨‰î¹ƒ…ûQÜÅ»ú;Bï nžçáÔ7\ÛŸ0ôy÷pÒ²;©ðà@Ð:ƒc‘Ò±Ÿ¹u¯òà Øøjï@¸£¡ãŒØ +¸µB;…Š2+Þ–ì­Ód»„®Â²ái¹Íaë5âm,ÁJ$™PÜ´ËK2æ)´¡ê&¯)CqÛ$´83FËk”R’.©f:‰hIJO2 ÆLeý"2xxÊ µTœI'J¦ƒ‹ã¤ýr'{ŸÄH?ç—Q™)]ïj´·Ø< F$‘ EæÅ êšhÂÖ "úÝ”G6"ªåÆ=בÏöŒñ˜°q:ìl”äÃû[¤©>‚Á­Z£à£_ ójSxªí‚ä)>Öð£¡×Í‚P‡' ¼¾6‹NìÃo¼½:]äñýÉ”-ï*Oá¿[T˜Ê‘¤«ðñ ˜iùg0N‰a€|ùñxa[1qº ÁÇvAlÆŽÂñVœ¢¢ë/¨}p„î]ÃÅ šƒW ¶Ñö—Ô ñ)em~zïj¿FŽíz†Ð·x}Ÿ8"[åËMéúv!Wôé¥X[59¿ ù*ù!š",¿øw‚‹¬6¯jÁUÂwb~Ü;=?=?œpÜfâXóÕ1c)ø\×tKQ–E¯ Ø𳓔ÙEX`žONðÓJšžIŽï''왇`T‰Ëe,ÄœnS+ŸÖ$DCY“SY$é…Ð;kæÐ+Ü`°½áÆ6,˜2lQzÛsqÐà„š7jhžo5 &èP†Ø4qVÞ³?ˆ(ˆL1•×;Ç‹$$FLò©ÊÕbPÐ ¾Œ ̾IâõW¿s$U…VCc[¶34¥\ïÔCûN¥¤8ƒHbWz<ËŠïeLfs5ü­*§î/x[ªË-1¾a u@÷¥êTþ×­Wuˆr oŽ—0W¾½[ݯ>®®—›OG§oN¡²Ûj±X¨W¯O*…¦jx9¢7°ñÍ?àMI'õ;oèøs£ØrŒáEàTÙñuîÈÙìGj€y“}€Ž©Ý*艣•|ÁgûÃà%UÊ£*îvZÙoøh‚r_Ir==1‰\[©-€§BL‡‹ kN ÇÇlâÚ"’oŽ6Á€…Áôóþ.úäbö;DPªŸ -TLûÜ•¡8Xa矉o±óq‘”$¸‡óˆæ^b%/ºzÿ¢‹Öšñ¨Ö æZk/œGqºUx‡y «¶.ç)Í„/ÎLO ‡S÷å›Íh|Ò9'ü¤¦ AãFÎ49tŽF»> ù'f24ª;‡†Š¯'›ÊÂoþ"¶™b™Ìƒ³ÙqhL·ÚQq|†2kd¨ŠÕIÚ’ò̽ëK‹­ž*¶mQÃŒ§7˜žg +¼Á ¡6ÎpaòÉhbP9ÎQbau äåFú÷ —,¿mÂ3ÎfÿÔsŠrÒtOC@; kŒQè1õd/¹¾ÎÚrÌ;E{(á4%NR.7*a%ä‡ÛÄÅ.ê¾Göq}µÝHå45TŠBDÝ$›Õ“l–³ÎS‚¥ÉtåAMŠâЄìµ5䬫T]B^œ•ä %'_K:¦hFÿešÑ”cÉ8Õëp¨›£º ÍÍwnAžÓ­É«NÔR/lÑBýGYÑn%Uu…ŽD¯Ñu…K¾“s‡-â?Ú¸ÀAÏp¶Hzßf·“ Ù”ɘ‰jB„ÃY˜ã¨~Ôk hc{ˆØ©žÄ×y‹Yð9$FÅyh\&´t-l›DH*ýºòq=3¥@æ.Òšž^yÄáªÉ¢©F5*n69D¡}•$ty]&£+u"je–g3>æ$µÏQ#±ÂÚ%OiüY=/<Ô³¢ybD4˜ÈM"MÇÿ"ØÑàzÜÙü9’€ÞMŽ÷,Ž·´A Tí©lo©lLiPJ¦´ë™Ó |z‰%›ðèð!ÍnaBvLŽõ³õ´ç ÎNTÑÕLÆ’Š샊,Ê×ÈO¶ÏB£>£¢½"¡òÍ2ÒÓûøÏÁø^Õó`ü‰Vú'šøDŽyÄ„í°ÿ~bÁtApÏC æGg*ŒsçÑ„ûóãj°žoÃ31/(óÂFƳ‡:ß½¦ d;…ì Pæš–]§Ñ²âý©‘KÖ^íªÅBøÃ!EŠÚДY÷XXWè1°ß×§È À5<_Éóf¡ÍQ¨ÐãÓºý:ƒøÍ 1÷¾©¾HzHsY²…Z“œ$eWe:\þZ¼Ð5»½¦Ú+Ô3Í*Ý,?wEÆŒ$ZÃ|ë%›P!oðî«ê’w1“ +ïø›„klR¾æôŒ›wÁÒÅ ÛvD ´ …]£;]*MNM6Äy$Ⱦ¨ ps‡’Œ­ˆÆHXßD!d5uUjíBð„a}+_ÕÅ®ÈÊSîóÊóž%î53Ô—À®û?¿¨ëž†·¥‚ßåÓž©màªÄôù½}ÕH'5ðyMuy¹„#-LŸ>Ò¬“§ƒäóžÙºI ¼!o9ÿ’°ãÏlø–E ¼÷¢´Ý̦ڌ´= òÍÍäy†iz‡X)òÜ+(=ŠE©¶ÙUO ÈòLû|‚\Ða{‚ÿS‡9–öLò™EÈR”')ÑäSW’蜔ÃdXˆr<þöüEüûdtú²|Œ¸Q +>6QÌÁÉ%¢Ac2`.04[‰ˆå¼«ŒŠ XaF}g4IP‰êiTMW²GVòýéaQˆ¾ÏÓJ5'XgóCDhªvËs‹šš(.<1àn8ôc°öCö²«ÜË™ø©é¥à›‹?ë›6¨NúêDù©;k'Ï¥<ßáÔë:±FÍÔõ=ÍM|Ôà%j„AFâÏþ)r¤G%}Öé†ir¾ûâ9 +xuƒL˜¸-ž½²*†Šƒi$Å87ØSýÀ¾[’”kw¶pH£cC*óIòâQ~OžÉÂTŒ¢o«]Ñ@Oeê§P¬â=š¬áډ慎‚"¸¢}‹ÈóЋÃ+mAÑ’fJ=PÚ`#n,ÅþpÂ'³@Áø)‹‰4òqÓ +1ÿsMÎr¬’˜:ô¸qcŒ¢æRl_+ÍSß‹ª9­f ±ý2³Òéi/øŠNÓ¤G­–›@¸í–µŸñ³ eU@éñ”ÖáÝiV²MýYæ®òˆ‡«$ÄÕà Q +ÖáÊïñ~+¬è·ZsõÌßP“ƒ±9í=Š7\î¶J‰aF{ žJƒ×ÕkÑ}¢E+qÞ j +ã¤f àßšœ""¢”¢·3²qu«t®Zä}¼@=K¸È†8à‰„mŽš‡‘§ò®D«¤²} 2शó|i¨É3gm8Øä”Û[…ÂŽº{ÅMþº™"O'¨b­£â“ \^U ÿ̪‰4èU_$.•IgrÂ߀l»´¥ÉÓÛÏ\cQœÒ>¨Å¤ˆÖÙ,éiNü'¿ÝöÜšËcl´(EµÙÜ4bçwÁ^UQ!:¿©nöF…(X0æ“ždÀ¤öžJsVeŠÂRñ-ëëPêëXì+^ܶǿÿÍËÞS¥‡…nÊ@±5œžòÞÕÐ`òýp”L3yÜL­-ûEó”!Í(ÁÎN;ö¦Œ¥ +×òò‰¸‘êS=@%aÉ©VŽ†«%Qå꟔Ûn– +¯ý–.\ìꎘYt*ëD?N.À. +ïáM׸V;¦ÁÎr”>2–:DÊBZ¹`ZÚÿ5öž^#'àO°TOƦ4Ä•J£ArF%‰•Uïñü<Ùªeœ¦¾iåUAbŬ¸dßR8Ý-ußãïuº·åˆÄ5_Q«Å€ÖÝd£DþÍá³À1jiMÒ +£l‹èCÌÊš¨”¹sŒ=ÑÁj©ˆ«“çÇ>ïÉß-ÒìÌžGü¤³uDüØ ÚmFxkæsÀeV’º i3‡´^BšŒ‰OÓ !Ð.šŸnßӀʩ×ììÁ-©~¢V$t|3å¶N?ìá!0–ãͲ9Î6‡jùýí©èÕÉžÁ„“ ¯KäÌ f¼€ÖÛø`æ‡w»ÆsÓ¤[¨-ÝÄØ”#Ös­&0ÛÒ]ÇóÆ¥1%ª‘,KZ)2¸n ƒ2êõÀÚ°@+Оj?j»\qŽŠó Ã[|}¢+µ5Š¶&0ÉܹDÅXad1²†1§Ö©+Ñ9>­ôYBar ƒ8£ñmS•ÒIiA× >¥\‡ªª!ùVôNH°°^É+–I5qÙ¥ šÏ&ïÒD%BkRQL›Q&\`²ØWòã斮ʮ먷¡1!Höž“Å(½ 3W­Õ/=“¨-vÕ5Þ…¬µéXRøwL( lÌ¡ÊÇzPØM\†õVÃr«Ðq‡xmX²3G¸M0 ­èPp²….Éö±§=ÑjÒGnÎ¥:£ÿúç/ÿ 0Ë‘u +endstream +endobj +132 0 obj +<< +/BaseFont /KRTQOY+Palatino-Italic +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 214 0 R +/LastChar 121 +/Subtype /TrueType +/ToUnicode 215 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 333 0 0 +0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 +0 722 611 667 778 611 0 722 778 333 333 0 556 944 778 778 +611 0 667 556 611 778 0 944 0 0 0 0 0 0 0 0 +0 444 463 407 500 389 278 500 500 278 0 444 278 778 556 444 +500 0 389 389 333 556 500 722 0 500] +>> +endobj +133 0 obj +<< +/Filter /FlateDecode +/Length 5891 +>> +stream +H‰ìWkOIýî_Q]Òv§ëÑÕÝ£(R$Ãî$™ ^e%²1„cˆm†äßï}TUWûÀ ÙEH¸Ý®ºï{î¹;ƒ^!Š\›þ[kÄô¬÷äÕA!Îf½'õk!”œöŠ¼Pð0™º.¯àüUy)”2¹©ËZè2/K.z}cåà·ÞÞ ÷ tÀݯdüöÓ“—…ؽìýÒÛ!júu+Ö=ªãUÐKÇ”PÆå…3¢ÒM^hÕ ºÃþ@fªÊè”èÄ¥,ñÛ1¼ÎáÅoRç +ÞˬÊèeæòZôç2Óž;—p^ü!¦cphBà-Ü>pPÕ‰ø÷Ò9üzäͤÍ-þŠòÊË4ˆ˜ÈïŸãæ’ä]J‡ñ +À¹©4Hx¯4~½–  ì¸A®*Q,°|>ƒ“„YƒO`³F¡s6)…ק#šïý ÿ;ø熤¿Ð!é …» +ý)J%ªÂåFUî§EQ˜gß'WG“§OŸ<ίƃÑçùÓ—{/_EmŸ={&vv_ˆTMe+Ìâ ^„_°0^Ã/3¹µkŸXrØß—Ú¡ÿ'R5è"Ä¡Ì)ôš‚¤8ƒàÁÃ)澈+I? :JŠªÁhÏ|(1M5JÊ úÄMí¹Ô%'ëî~3© +¼}N¯ Yáá<{m†°°4šåD‹¸BÝM¤b7Eë¨ µEZ¦¡¸G\·5Öí˜T»ÕVE<|ä™öDÃU¹¬nÍ|Œ%[§¢ ¨A†à7ѪžkðsI>/þ!À%®W¨Sæ¶öeÔÏ\2ÿ +:\7 +ßB4\^üvâýKEÁ÷¡Å»n“O0€·‹„?çõ$QŽ1¥¬ +jXJôWØÜ¿'‡Mò¼æúÌïß­®ŸTýHͺܣ‰þÃþ;¬yŒô¢YÍË© ¯Î5ˆd‹¨{áOaTkDuÊG 27±;«n|C|èSí* „Í×RÓå9¤?€l…Ö U!¿ÔÀPspéƒÜ:ª蜈òïÚ¥å׺Ô|µG«¯÷è*é’çÏ6%êL^=Z‰"w±zõ@I,Ù¢X‡"žá +\„^à0¯Ó2E€ö/0„Xõ¡¤ÀHá"˜PتSá~qÿ +Ú„Ãm  Ûq®ì `´'ÞMzwU +Ñìv¸‰ãQòV“‹Wà›e357jˆF :'­‹HAe‰9/,QH~@šN RYR2›Ü›O¡˜ITî˜ L5GAs  i9 L2B7Ò +fNó‡e•‹<5Η‘´imñ M¨÷ûÚç2VãSÕ²CUë;SUÝåµTõ<ÔϬÃTíVLÕ6WªPÈT×àJbÈaÿfÓ¤=Äß `:¬e$ˆ«Pa6íNbyùxµ#­+@¥!OZœÙ˜/ôsÌZ•êþ +&´6jí6žü„¡©=¿$ÀgýÒµÀÈA™B~ Zê†nð +P°yØ%üêTVƒ7¸·Kᶃ•N™J@DÐ&Å›vS`ž8ÆÖãJÍ•Y˜5û ýÀKÛˆÛA…ì„û+Ý‚Õ-m$2òE„ +Y "•Ç0†ŠÛ¸²ÁÞvõ}hÓV~¤$- € {'üBÓfê¡V¶6Õv) ÓÛ5¥›ÿvöšè>Q)߉eÖ’t~€ýÖË@À~ž¾Ý½rÜÎðAÓÉ}ãp­’ª@*¸ŠEÖ4ÏÄýQ¸t0Z…—Ñ75à°ÿÚ×ë" kS™.€L%ÂBÑ1->øz\Å’)1_ïš5Ûf Ûu2P‰Bœàš"•]H[ÂU-ZøÈö26“ÂõŒ¿&Ýt/g–粞#XFMoY²Ú†–Ëãmõtªî:–«u‹bµØÇ+V$¦Ê­& ©)w.ÛdY¡rä›ì±1Ý`zt 0‰áé2åï³32dwwH®:Ü]dî¼Æ¬ZU[î2ÃzÖÆfnÊ{25zÒ$hÔ)…VDRÛ  /AC—±´«Tœ^Ô¾ˆú™„ +¢1~sab‘ùSéxáà°a\'8 × µÐ,Gø€Õ¥ÝLP¶vkÖ“—Rë{OfN„F‘¬š‘z°°‹Þ„mÑ•g‚Ûï­>´M'á+q‡ìŠ³1“Z¥‹–'\éwÐKmøºY–°ŠÈFä]žÌõìNëÝêåÎ-/wëøËŸ±ôEöig¤y;0°È¾Ï¢‘ŽRÁ ¾7Xë +0ÍÔNØ +ô@[H¹j ”u“ÛÑí®ðjSXüO÷ã=c©þã=Äû‚o +þûêÓ¨ï“ð˜-JÐPVГDÛtxAçñ¿q ÷z¿$wXkYã¢sõ;Ð_¬¿cK #ÊÔ·¹CÿJ—^‚Ÿ![å=’Mzv12¿·v ~U<á¶l°ì€ƒŠW¥UÂ: èM¸¬[Hô[,¨†ÿ(|Ño$¥ÿú"ö œáûkx šý9p³·¡ùÞÑOP<i‰<Çæƒo< ˆŸ| vÄQíí{+è®Á»%áàÀ×æ>±0¨{ƒCLô¼m ï ÓpèG:¯ö =p7d ëÐðäH{{F@Ë1d $ìVŸxEoÉSâŠo)Зÿ&áðð³ ñxñÇ0ÏV¨=µ‡§ðM,E[ån22’,b—iWU,Âx¡…sņ RMV¦¿´\Ä”þï ÚöFŒáïþîBDL§œÚQ^O÷a–×þr/£Gbÿ >G…ßv%áµ÷såZ ¼HòÚË%½Žô’upšRÃ’%—SD¦œ°¥.üïƒK“e)L†Á-[@q—ð =IÐÏPWo>£›2WÉ™LX<£jÛÑ…í¼$HY³¬¬îž©ëe]þÈ'j{§ÐÀ°6htø齘(,ÆâÝ«ž7Š×"eàTV4pàëTDB^Âð©6-ЂǔC¬ò,Œ‚U‚oCßo©ù<(ßÊù®Ÿ1Ù5‹úüþàý\ëAÑ,{°YâCx€ð®9ÊäŒâÓØÞô¤J œ¶èñ!”¨p^2ÞãNc±pgÎp+Qt€ºùÜ3Í wæ™$¼½›¿˜"AQñýµ$®q%>ñÃ5¿Iw žûSvy"гZäŽ /¾¼{Žü„—’!v ¾+”G‰—wÆŠ'ÞY™ÑP;Þ| ˆCQF ©5s#oA,"†æ ¥ýþçÇ°reä·0+˜Ð-xs#5‡ÔòVBÃì£Е òî¦Úfú{’ÿêIÞ®é=·Ã™^„´0¹××G+B¬¯=?1Iøy$)þÇç’¶Õ±lü)vĆ@QOoÅ{A†kí€ *¼,$ߟs圌8ɤ&ŠÔ¹…q’Ñ!CEÕªy?JU_NXèå)^1…±ñSz9CýŠÎ*z˜ñÙ›ÄCfâÛ‡ Ê›M1¸¼æ½nÌõrâY¯8v³7“3X·XdM­xÆ?tÀaUÞ¿§üïšòŠÍ¸`Øvb‘ÄUW†´Ëë3INëÞœ =âÝÝw>/t… >«ñêPòŽ„Á²¬ª[BimÿŸÛø ɸç6u‘»ÛsîM +îŽWëÿó¸÷‚¾àÞ«%>*÷NMøF´ì@|æ¾àŸ3uÍÜê@’®×ý¼å/ »ò?ïÉ£š?\€2rý.lªYfSmd‚zÍ‚À£Ñ ®ñœ°á)Sðx)QÉaøT6~"þ=ãÉŒVnЄoFÑö 6³Ïð@©™cEµ1{IÌ`ðÆÒCE<ï²²O`?ܺn­hV¹9ûW*t‘†ù,ð$˜ÙÔ'mH–YŽsé(—÷6¼¦:ô¼•¨Ø‹¹Šü‚·Á?¸ÇF[Róïyÿ[äýA@c®¯™Ò@]µ,˜a1Ì•e¤þûÕ²ÔF’E÷þŠ\R.Q•õŽ ˆpcãé…g1ÐÑ‹v„CHˆf YH úû¾¯ÌÊzÊꮕ••yóÞsï9'k™Ô‰5]1›.v\ HY”Ž\®¹e®™UÆwöÄøÎ;Æwñøø¦ORâ~òôèžòïkÁ.•Û†èå‚ãr8M3¢lXåe/á1£„²Vj„‹Ä{K‘\qõ–£«{Ð;âŠ+q³óŠ &× k˜r+µ‚äÕðGPŒ ©c¤oÚáJ#˜‡/q¥Ïó¢­§þ@/Z=¯/Úºã~½¨B‹3ùέ²a –(ël{ÛÍ2PnÕÂŽ0b£}}¼äK蚨~«ÄÓ@Aœºæ€¨œU…8šÆ¨é6Ýô'+å >|  qs%ËÊyUŽ9jMòDš¢xO±çåª6M9?[5ç+–nAs¢/9Tìï¨X/“ô‰^ÔÉ(¶•sÊø‰õ¶œèHI¢‰bçí©î`W›sRö–‹ ·Æ'Rü¹'äËÛ’X^3¡Wø5y9¿F~ µ­oÖŽ‘Ä`¤Ø#´Ä©_¸gþ {A?{ä¸N°1`ëO˜Iøû´¥J3U}cUí¥áÁ¹‚0!Î_ž4t¿Ôë1çÁ—iENóWO‡ø÷n–ñ¬Â5#ëâ +_¡™OvvÁo~¶v5È°þôÿô’ëd­i +a ÄHúÝÏ‹ôN{l'^Q‰…±à¼vêé” ŠX X8ÒبbM×ïƒoÕøäuŽUžÂã„7Ë%`Ž~~ãþwÎÒµÑÒäE~ç‡×˜Ž”ÁÌiÀâ—ž*Ñdø}úîÀ÷½×VØ¡¦¯¶¦{`w]À, +îd‰+¢ä§¾UWX§':™?›`íNî•Bó˜×¥l›ŠºñœA‚(«[e†<*>I•Ž*jîytD“ø™Ôákøwë%$/G»‘îì^“ÝK{žèoãI!K!Õ®€º…# CMç1LS.ÛQsõع°t¤#<'Ž#µºjÛøðl9^~˜¬7ã›óˇõÑé§ÓÓ ÈãããcõÓÇõnçs¿Àâ—^¾qÓdHš6Ž„øœ«v^#(Z¯ñø¦}ÜÃu¦2æÒX·÷žÄoT‰1–´s\r"3!®¬Ë£–‚¯® 7c$±èfhõz'‘¸‹¸ñC\+}nöþÌ{¯°aBû¿XÓ¥:“ðåHy¼‚N!šZ€-'O e;¯ ¶`ÍÏ Œ+øêʦ¢æ:+æôNu™ qbv?q}( +ÿ²k@T&hÀT`7…ÔMN¥‡"¿ö"÷*l:ÁÁd¶`X²Ê»C9W ™„4±œvRœã¯;ª„—3 ®…­_à—‚®  N‚÷%D–H7Àÿ‹§éÚgÊ»尰üEktí¨´ICPá™!vAÄ ¯k«¡ÞÿŒzïgH$)/¨haš^³’vŸz…3õþG()õƤ2uŒÊ"D`ôCÄ®A¹ÛhÈáÄ´þÿ ¾s~7ÆšRý´‹}qƒ£³Ðj²óx*ýF*½ŸÁ÷p!%?¡ÄŠR‰Ô)f×YÚ9 ˹RB9Éðü#¢‹VUU(&²O:…ß_vúsAÍAqSGØñiƒ2ceQ$Õ¶Ø #Ó•Ó•Dˆ2­³øÇâ7ëƒâÏb(“[¯ßslëPä·]ä^Æ€q„}'J¾Ü«''À"·àYÃÈ¥©F÷¼]x)# e~ñá²0éÏÍ%§Æ!‘GíEHXȃ^Á§„ÙŽe嚎=ŸÊ?ÂcžèšÝIÉ;®ÆYœ2Dn<ÁŒg:w µ*ë§üs*HX®${‰ŒÏ +C–¸æ>awÄoŸÃO±²~hBäØBÞ¬¼P&bÖcû!¹­(‡6 µóµïex›fXÜ4„ŒVñj…!ž´2NëÄð ÖP5à ü€SLo.Ìx•R›}†j+±ÃO¢#iêçV¯mT4û4¥£ÐaÁÙe>S5F2òöF(vÓX·øÛ‰œs¦ L„úªu +ù I./º˜%ƒÝ‚´Z˜ª|pŠ;ÔõmÔu?"áÓæ7ÝìéªÃrõç$ärBYS4G&mF•qY—Ž ”Ý!ÅWJ d?©TE0æƼʜ„—f0In´$ýÄ‘~¡hÁKuïi¦‘Øì‚e/Yª9„ðc]­½GHsÿ'¥ÌE²䇰aåq-ktĪ´Ž÷^TÓÄ™ ·æ=Í3€&²ª†ª¾±ªî¥áÃÊk¡q#zÌ”oÎÁÄæÕˆßÖ˜Ž ‹èsH|\XF?W%|g@n &RÑCn’RÇ•Yîr® SS?q:‚\¤²Á4<] nǪVkâ&uð*µ[V›—vmç¡fÿ5ë¥YOô·åøŒû¶ êPy˜ß9ƒ0ƒ!•? +ÀñW4„á)q©ÕUÛ¶‡gËñâèèðÃd½ßœ_>¬N?žA«Ÿ>ž¨w;žú–¾ôâÕ[Æ Ó´¨Ÿ¡9·ì¼AP4oðøŽ}Üàð<ü¦’q«¶5­Âo`/ v—Ò¿zš,í)##ˆFÕ +…8 ì®éÒbê37bjù_ ¼¤žÍžÕ³Òb·Ô¤).`%»~&Ÿ»³ +C³NƒoJ´½ê¢o?ÅOîÙ{¶…ÁÃ;7 +@hç蔦 EET`…ÔFN©‡*¿ú*÷*¯:ÐÀ]-PR'Mbn­rÜg¤þÅFò–Ùòž“‡¶2w9‰Õ§— ~ß ÷çCb[”E[8l¹Ó«úe± ü{ÇZ{F„XâzCñ¦â®1:¸îDó“TŸáš2Ì•*wL0¾™IçÈ;t¡Ò|¿®¸†2¾ê2ãf‰Á‚^’5”Í¡´3ò®›$\ªhÿm›6g¢¶mr6s4«dSñnK+â±<‰ ’àŸ_ƒ($c¸• «;'l»N·Jß*Ü lŽèýuÃå yþ±yÞ“3‰ôHïß™´žúIõ¼>œIëŽûu&N“f%geëT4ÜœI³.5+RÓ_µ½ˆza¬n¼Ø•¯·¼x¦ìà0=óÂlî)Û‰¾†·¶@?ôNÐ-ÖÙ÷ˆ™éþ |úðvÁÔã:83iXS_g-úZ¤l–E=–¡ø¯¼øû=KlAR:<Ï'þ¬ƒ@!–úMÔcC”Þ{š!d…4ñÞ”+~hIHßR!ǼÛïbdæ jç.5n8ŸhPt‰h2{Šõ«©aÙ@ÈÖàN•ëE øš”Rž^Ü2J𳈂…Aÿ¤[|×ÔZZåÔwNN£²;vx^xŠ»TA¾£> ñσÄ>FMÙ¶¸*¡QïŽÎ®£Çèe)Ðœë9ÖÙºs6jŠ~zXâÙÈj3­­Ü~. cè¤o@°f j’˜.àHøø/$!/¹Ö×Ô®ÕÛ[È* º°÷—ÜCŸ±Æ7îÂlì:C†Z¿¡Z÷2à$pqê|¢ä˽z|^¸£Ð5Ä„ÓqÂW¼4Ð…Üòñ×|ÛTB(óÿóÇÇÿá/Ë•Ô²ÓxΙ"i&Óœê0ªà¾í.¯ë 0š^´ý +endstream +endobj +134 0 obj +[216 0 R 217 0 R 218 0 R] +endobj +135 0 obj +<< +/Filter /FlateDecode +/Length 5763 +>> +stream +H‰ÌWÙn9}×WðQR•âR €8ŽÏt2=±Ý@z0PlyIlY±ä$ž¯Ÿ»‘ÅÒ’¸{^¬ª"y÷{îáÁtT©ª´®†ÿÞ;uw1zúê¤R«ÑÓ©ùO¥ŒšžŠª¬*x:UòðU5e gà¯-k僇ïu£l]ÖunFcWëéÇÑËéè3èÀ£x $ãÛOOn*ux;úר«ËÊÕºDtÊ›¦4Á©Â†Ò×ên>:Ue‡ÊÊPyüOVʱ&˜ÒåÇLÓ–]cå â¿ Sú á£êÊ€ßÖ©Úº2øÚ«Ó:€ÿMÓ”ëÑ ˜Øb­žÎøÁ4 ª½gÚ +BU·á1g’qè_Wå‡`¹.m½W Gä{j¦)0ŸÙ6œmȱI e`F… +MiTk=$4@–ßtÑ”Nÿ©/;5þMiS©qпþ^Ô±.`ÞßÀCƒÛ~†‡ŠÏàP«Æïh©Qã©ö]éÕø¹.îx«‹LÕOº°`Ïx ®Å‡c±‚Î:<[ÛÒâ{×ÃIHŸÆ'bè{«h7lzM›àÓKõ«Æò c@Xw‚†g[úãðg_¡Õ5›Òäú¬rìªñ¼VAûŒ!áðð³"ñxð5Émw¨ßõwá—,X° >TúßÓ¿sëeIô5tCó,Ž¶*äÝzÜŽíR÷dß.cÊþ ¸‚¦½ÕCdÑ™ãC°®Æ'¶œR +EiiУc]abép›£Cêø-ÿ>‡µCM1x#n£Ÿ\ +”ÖMN‹\ÒÛ^²vSfX²æjâ·ß+×òÓÀ²F*ŠM}û‹¦\EÙ‡^€·Š‚ð?€ «…÷ÆB/Ö€N´ E 1ê:Ʀ¸…P¡ß‚qêÚÁ–Úuƒ-¹”ƒ]þÂFàî—ó”±ÐA.´ªiCi Ϫªr(§'ËÙâÙ³§ÏO×÷³ëéüÛúÙÑË£#f?™LÔÁá …Ã õ-J=ð‚0ÿV*"BQŲ)¦ŠƒŸŒƒönhÈû1fêz­®´ÁÑ2^©;m(âs]xLò© Q·œú@š(=sÝáÛJ²vÆ[âÉ3µÆ³ ÿVÝ#^ÁÎô)›«È•kÍ}~­VšûŠw|ƒ®3¤ø>ÔIÿ€R‡ïkØ@õ<×ÔÞkõ™M»VPA­ª`QÒ\iêµ@†¶x|/¡X!Z¸¢fYD5€½U-c+Š;Eð¦ÒKDtŠ¸w@C䑹áb@:4 + ²êÀYqòB>A·ØÎã÷÷àÍ€5›&À&´÷J3fG±_Z ä¬¡…Û@ÊÙÙ=q +èÍÑd>•h]B2 ¥bq;Ôä»ü¼S˘7cËÊ ^Oá­8̤ íp)õRe)# +CÖ’Õ$óA}HÏÕG¬šmd<ßÈ»…íÅ…9¯Î1]6Ë_V˱b §Ž6\lZGCž:2ظ©æ^²ùç«ZÝB%€ˆó-{ÕY;ËáûLÆæ7v0Õ4Cé€Ç>€ß”ñJ-Q¸ßï J(Õknö[ŽÆWŽÎœ‡ËÉyª“šxK^Ft¸¹¯Ê\›£ÐŽTm4™pÍ_ A¹ +Ô ¯$m©´cn”ËJÛ ^WÕ2ÅŒ}ÊðÇq’£Aõ@Àîª3° Î-à<ÌXÖ–‘9oywÒ§!:­¤/ÿE?º4Ë\Ô’‹kfx\8°H)] ¬w;sF• QŒ„¶íÁÛ€ÚN±Ú¥LÛ¬t¹°v„¶Ý mÛ‡Ûq±®É9º^ÇM#.MçK2Ýl•›æ‰Ó—Dõ +)]L)JPf/ÕI” ÚA=q2×°£ÎC@_nåÊ™ùWåêÒw-NȳѸÐÓýÊÓð/pß òß’„/y#qZ©ìK@·:7–m_A»’Ûd±Hyc=8Ç ŒÜVb­õmgø–Ë( ¹ìSõPWñõ.·j |,C'|ÕrÓ[î¶Ùe*?GÜEÐ-+r¸[aIç†Nº\—¤M’–"ü)žÜÄ)*Ö./4¾Q¥àM•=͵[fº|foÌ÷TkˆÊ†žÆâ˜aɆÝÂ)>_4s¤PíLÅ:N +m› K”r©‰/1æœ]b¿*vRŸÍÂsvÃL{W=|$hUÿ£½Zvã8’àÝ_QG5 yTU?}´d >ìkÏB‡@#R;‡ôÎ;æßoedfUõkHS^°šÓ]ÌŒŒˆœÁ‘\Þ%yóÐAÒXÀˆ89[ª³ïEgÐ9Þó^~3¼91—™&ϪOžíyNéIºSïtN°ÅôAóî|¸ÎÛ#•#†}°ûö#A0‹)lO»Hÿ®“ANR6©3] SÈœ. +‹dtun$QG¡‘œŸ9ìš©@öâ§8ÝQÌçzvÄÁ±ÛÉ3Rz¨PÚ}ᑺUÑV<&Е;>®á±ÖJÇ!zîHºX)óe\¢ñ;lÙXž•täë˜ÜnÑ´l¿€GñÕ–¯Tar9‰ü-¸¡Œ°èﱃlÕJT¬B<Õ +q-_{ß±yÐÉ6Õà’ÿ@ÚÇ×è­–Ó͉„¦ZÒwš¦° ¦@Š8Ãè†ÑÔs¼VGS«fß2Ëël*£©•ÙÔj?"?B '£ª•Y5„â)ŽgÕ¢Y\„¦ ‘>’ê d§d…µœô~<ÌëwœQê?ÑÌŽ»W¼@ò*zð¨ƒ%ㇳ%p‡ÍýU‡øþO‹> +G\0sýÓâ鎮<¡éwt¦Åß­ ¸ýô|Gô¨cÏ]áD†½Èî|ÌÓ)+ê¤rͲG;Ý¥dBf,ó—#þZmì… ¿ln RLfòp2h.,q&´âÚw¥ñd0*ÛšÍ>Àæ]!ÒCi'¡‡fK0NéÅœvD-ø?„‘åÝ‘X#ü~yEK[ì…Ʀ âÔ±"TP$«ÍfÍ×^ó-Ûokù¾6Þ×u¨>$÷šñPg=ëLàgý䌫«uŽTùüHm˜ Ê­ Ü2Ê_.Ê“Ò–;¤Ì˜C­23Gü¤ØŽÙ˜ ¥Sͯ©Ÿ±[HW|`O‘¼Ëïš¿–'³p+¤1ùlöÒ™Ï`mg}ömŸs€—TªÖöÍ@îc¢ƒí6OÂr£Y„­ú”›ÕaRÈâ©ÆÎdo笥É\šoÐvîJBN4©qÔbrTm—‡fç†ZÇÛ2¡b,$¨Ð>™è…Q ߬¸^!G£Do÷^üâ·w+`6löÆ$²f¬_™µ<ƒÒêÏ ´@Œ6’ß· +ûœ+´›\Ä!å¨^šŸ ®×m:§ Û²2S929pnndåI^ž +/SO‚º(¡Rù ?¿Ò =G¬g ’Фëd4å_JRç>—•K̼ U–[8Âq€š)؉}; Ùj8RW‡û|.Ìÿ[ÕÀ—ÂL@àRf¸”tu“š ¦|ÂbEG}ÖÉ ‰ +/MnÍÙ^}**ÂâBø§pÙßijï‘‹¼#“û3m~ü`þFÃ’½Ðûv"¯œ‘d{¢æ¿£-Û32 +«“›“É5cÖ?ž>쬋¶ÎNQ}4¯‘Y^ ¸Ø&mÐOÌ°¿u‡Þg_¤¤G“ºø;È5Z~°L÷m&¹ë·ËÆÀ·ì¯{ñV,¸‘‡ž×ËY;Œh@Id‚Ò™`8¶¾xœ¬3?S,óÌ Aç˜WDêvÓcÚfâ^}óHeìžiœ.ßÊŒé:0ò%¡û”ìQ•p˜… $ÃØÁbìÿÍ¿:yv ‹4|1Žh$lñcÑâ³UøþoU4ˆì„uuï¡«i£eÑ€ÜNtBÓ3f´3 2‚ç9šXO|lúú/ã©„T;ê˜Î[ò†¥ „.oh à‚–©Ìl=»Ë!Y±‚ëhæXöÛe“Sx,V@¸gð[Eü?o~øŸ.›ù‚ +endstream +endobj +136 0 obj +<< +/Filter /FlateDecode +/Length 5248 +>> +stream +H‰ìWioÛHý®_Ñ_P!Íîf7ÉE`’8‹ìd&»±öB²È–";£##ùˆç×o]Ý$%ÙJ²Æl0X0©fUÕïU½z:ªÈ­óð¿,ZÏG:)Ôl38™Ÿ +eÔèý È‹¢V£3•ÉÛ +ykà¯Ê½2Æå®öµ²>÷>ÀšÅ`è‚}¿À°¶Àe°3þzuôbQ¨ç«Á_OÉ…'ýŒg>{¦¥yáK\n O5í‘•mòšÏ|;\jëò †W:3`¢.N§Ú‚‰ÃµZiSåµ¾WSípè“öd0¹ÄÉg:ä¥ÂDƒã‹SmlÞ¨áX[ÚìRg ~ÂãLnå<7j£3S¦:«r‡OØðgÁ<˜/´ãR7ø˜©‰l _ m84b¬á@2ÀñWÌãË…¶^L²°ñ-\áŽW,ƒm>Â%>ÈSð¨ÄÑ5,·É:çêѧsÝ Ù´©Z“smh£)~¼¯÷„âdÔð‘zŽæÁTx68ãKhÎ<ù—gA„1i–Y¥ÿ=ú3°6ŒŸ vià}B·Ýt#Qh'ê’C±R7Ú<¢uŸíû¾H¸)Ž"î«%nX÷nÝ|{¦áhüNó*öÄ spÒÐí¯cØ+tbF{†‰â»#tÆ­h¡!'z@—¥b»|¼À ØàÒDm +Üð—;: Ñ°Tè +ÁD-u×z8Út‘ÄQë@Åq„Ø”ˆØ–Fé ìÔ‹d W¼éÝ8Ò×ÚÙÖ˜Ô tâ…û°{áà«UËz¥@/Ðkwþ{‰¬Z làû‰î"ù/!NTæßg0½Ÿ=¶,¿’…Ü!HN0èñ©b>ý÷P£S6j#t?ïZbæeÝø‘#E‡zæßDztÍ{yý lTgžœ3ˆ;!¾겈©—ŠÃûíûgBܶÕ$¥æ”Ê â=þ~§uYâ@Ž÷ ;¢5’fòeCIÜk÷¹ë•®D×Ï `a ‘=¶æ=öeì=¹çëR*]¨àÄ€DÙÁI[¯©J^Å2ÛúV²}­§`ßë—Tq] Q]âöç¸ÀöŽa´ÌáôŽg…-Se’ÑIù¹Úyô´½ 8Î2d½$$K¡^Hžèx u *|ÙìØÔu¸ÍÛ¼q©¬ºÑp9(oÙã…¾4óÁÔ o×’7zN0›£¨«)ð’'SÕk¶ãÚ²@g6»â¤“¨z¦DàéT¥ºƒ©-ô2µÛ;Ê £OâŠ,9¾Gl³œ *@‚(‹F•pÓ8…*ÖzaTá5jî¼)JüOëÓ:0¿é®ó€ˆ¬¬Tü÷=žgñ¼_”(iå!¾ª+UƒßehÔÙ‚æãY6™N@©·k’ø†5¶·Ïp~q÷š¹Ãø¦üœEɸˆ€¸”]ë•þžs8$÷œ“Z‚[Ôö˜Ôöl?0!¦¶£ãK£‚³ìµO€„טdÿTQ54ÚÃ`ÁiäœXÕ‰6Úï`IJ¨UEaø¾ô«—”h`‡ Œ„ØŒsÑK*ëðé%ƒûy"ÍH_G ¿‰/'êgÂ×ÚoTo?ê…Zëhû§Q²-ekÞKqy3)_ýK;*Tï +WÁÏ´êGÚ§${)'¾Âœ÷7!Î ÑÏÓ|R·§”l1Ïi¥øN/o›¨ÍkÀ=ü‡¶“í ÷Ê7 €ÜôŽ0ZC²&6¤)Up¸ +îÊ·sÀ+ hìÏa<ß?§€üv`NYA\Í)!Ô‡æ@ 8dsY¸ÞYÀr{Ž«ÂÁ³\°=¿öîãʃ~9@áÛr…9t[¶q­±Á´ÆzۻѽûØr÷Fëþӄݳ¶ç„f7ÊÛsJ³{£ÛsPÝš(tÛ~Éœ” çBs¡å\˜A2,fCy¹Q†ù‡kèÌtPz}—ƒerãs¬âžª¢(ÔŒ4Ê +«e‰*3µ‹•H`Q)ÔT`ÊEq ewáRêû%õè™ý©DNv£ÍœÈ¨%1ex`[Eឌ> ŽN>Ž—}wvy5ž¦Ÿ.¿8~ñ¢(êòÉ“'êéóg +R•î:Á…ðÿ_öÇѱ);Aó Ê¢oÈ[¨œðÇ"VQ(9~±G³fU[psÀâ~£VÚr³²–•SMi4SNb˜bÝÙŽÚÆ9 åšû¼îKÔ0¤ ÓÎQ ~’O]Qz JéqºÀ…&õ÷kºŽHÿÕp'»c1¡^´' Jª£—l膢©X™G™IÐ:ÕŽU„d,ÏN›ž>b<Í&ÙˆÆÔË1C3Çš ôÞ J=7 ~Žw½££x +n®©ç™i‚w®©Â=bM˜EÁϨTë268F"Êús±`pµÔ…èn/Mœƒ½oE gT*=Ǿàx³+ÈA²ë2IÔ …Šºfq­[óðF“ì¿‚8²¼¥¹›–гµöqOü9Öñ¢‹í£j´õ~Þ‚Pßo;† omÉ-€ÐÓÄ !_- hÁ葼¸»$Òìaò9K²•®¥ÃÂèª.Ù’­aò¡@r©M±E§=LX1ç„Ùå×0»ê1»~ff¶ýRf§äBârÒamÃý¡?™S*â +g(ãà ŽÆÒg¨ôe2«ËÕ™bäNÅ Ï,¥˜¬HÕÒÉ ùIB8¬ø&ˆÐ1äíð[õbUÕ׋;QÕ|ªü Êí¢ªEQ滜L ¯[lÑï™JEµêK±] 3o±ò\uÞª{n«6õÂÓe@Ì!*•.|–ô,¥BÆxì‰--NŽEtv1•-†j‡Cx¾Zr®Âú_o”X´î€À1%ú†Té>ZKfê”’:¹u £#ßéÏçÏkʺéßkº†üŸ5‘5=üº¯Ä/b’ú•4po•8eº®ÄíA>ŒHk]K +P´Ûó¨1±è¶7m^ÑÄÆ©ÙÕxÔÎüÌRW`übàE:Ñb¢Ì6ÒUp›±áu@oKZmʺ:Çä„"Š?ÄóI}ZVÙ–Mœ¤¦K.Ä—ŸéZägk_FÒø‚Û`'ÈÂÒòíÛ†™þ…² &u¥ÿ[Êw ù=R~Û!@¹ÙcQT[·@vÙd‹b{^ÒÈ}žíÍåWd Ìkj¶¦ê–_I$rT ¶Gàeò¶Mñ DNY+ù…ƒ i&paãä$ÊÏn8Zv«©ÓËx)6Ü°q—5OºÀŒë)ÊXãP˜ý†Óp7÷œren¿ Nu ù=rêîžËj‡q]ã·‰v—hAÊÚtˆ%½åZí볚ÍÌÂèm&] +mä* h\[,],–n“¦¼ù59åoŽV¯>.DKO¹,/570ÄaQ\# ©>Ql?0DÀ.aÖIIl¤"ºêÐÊ"äá7$Éž ÞÍ›Žmo‡/9Û.ÏbÖ匌ñ 4 ¸áKÃجÞóóÃ.jŽ’tfåJîX8† ¨>|]«åŒÇñ*„«È `,‚oÁ÷ +@* H6jÎ|A°/½{7€}%éÈspR¼ôŒu‚‰JfŸ^pN˜':ÇlrvÊ y@´¸Æþ¦2åKÐÒµííð˜8Sã} ïSYôU‘Œwc`9‘›`Îtrk¥i¨wàÖCà,Tq +LúJl‘ä +¬´2nçfÉþ_I””Zhu¯zµä]À±†PÎ[z–">²h<#ÛôÝä÷‚ËqâØ^ŒELGCb,éÐ6¸è4Y®ž]“hí¾TV ¹æÄÌ£UAEí‚*M ®(GÎÄiÌ{°à–ÙCÒKn«µ·äeÜÃBVjnÆÂhb4‰ÑÔ[¾L3UVj+¡}ÕÚ+&¶©0RéË+ð¸ .vÔŠ(SYÉ„‰d)ƒ¾±r B¢CFê5Ë°™oÞJña82.ñ Ë>0\¬Gí(–Ô(–c‡È“\{HïiÆøCÄ$‰JÅ!ðÜP•Îd,ÙÌðÓ?Í=c\’IC¢èùE¨0ß´ü¾!¼•›m+y'‚D* å(äÛãý>Ý\üCm˜B)•{Y2x™ÕôâO¯¼øñæ‚Ûp”‡þ ¸þéB{[/ö~ñ^™ðsÕVšºHÛTqüNÎöR±» ÏŽþŽÞšŒú}cP¥)¸iøø“ûöÞ ,Ú7xÙâ7xE ãýzaÙêöò7D0Ä¡%Ö¹e"ÝÜ›V¢±—VLŠŒ®I_4JcðŒGh0§yMf ³÷êêÚh^Sর†FÞí5Þǹnëcöq§ÿöqÝß}Üiqà>~¥in/…òÔv`©dÑþ”®*½zš©Ž´N‰|¤He ËZú—i–Ù.—Yw_¬;T°{؈|o,ê|Ú§¥ÚÎÌ"á¹7÷cž( +WUÓù¹÷dt“½ccâ ¤@ãJ‘œS–‚á÷÷HÑ©«ÎsŽÎ>ˆžª Èàhû5+U¿¤}¼;—Ã7Tƒð1da²ØA ¤­¤-Þ”7Õ¤¹i úìHa–¤ÈŽ¢ËiLß¡t%Ѭy|Šx›c„U?%j*{M<ª1¯qÌ¥@Rh0,d.Ô¹hýˆÇ,ðƒ‰‡O©ÌÓxÈÏZÈLÉ,ÈF?ÀåR¾\ºËåÜ.ïz–ó‹œèEŽ.À€½S +°Nÿ`uC°N‹Ç`N·—?ûÜ'B ÷òsŽ4#7ù† ÐÔ³Ð` ¡,Ÿý„Êö;ï­À¶g(ü‚7ªL*ŸÚwl˜=â¦QŠ{›Û¢Ïlïg»ð~~8ÞÞBçÀ34fö e¬Fá[òëð±Óëñ±îo|ì´x\|tBØ{"YI‹T^ÊF)቎„º'%õà-¸xK¯RòdÊö¦©í„Wéø§úÌà+²µ…£E­Åàèç—Ú<ínó”dÖHs±ÁzW>©'ù¸ö`Òиgv"w‚áÙ%jO•Áþ‘)ꙆÞó«ÔWÑ_Á ñØêÀœ7óæ¾ÌDÑN„ÌÄSÔó…óºL…ãzÝžÊù‘§¬ãb§×bÝß„Øiñ¸„è„p =õÄu•`+BVˆ‹SBÆ‘±·:»à)~žÚÚ“a'¶ñÈñˆ7µè]âϼ}PZÊkíJO£¸gø™²‡ØL¯ +ÕzJ+Êÿ{±w-\A§£·Ón½]ôëmÄ€°YÅðî7“‹ËÀ¯÷å×Pé¹^¾½z„E Ya˜y7÷ž|Ùz/C“*àm©mf˜îœ +(â„0HoóëÀSRŽf¸!CŠŒrhÜa-Lñ3£:C 5¢îŠò½84™‡tMû-‚Uy2ÊßB땃¯"ønÿ‡#ø†¿¾ÛâQ Þ aïÙ§_¹ë^åŽ_Š]4, “„Ü-àpáŒ4sh™9òjæ(Ö­6x—3À)fñ$S:ªxʳ¡„= ×k•ª%Åoâ[s­í[æÂæ<7ÀŒ{~çô΃ª¦R;Ði¦G¡-ÉÌ7Z ]‚yH:Ü!)e¤HXˆØ +¢(¤*ºsÜT¨ ÌP5x_8OP“O¥/ÏÀ‘ñ +ËÐõÀUù „`¥˜âm‘¨°ºÏû™oômôåýÌ.%ä›r}I`Õ:yÃËÀ©-VAJÞ² +ŸªÄõĹßZέÐ)fbl(Òªé–Ý`¹ãö‰,¬ÅáTÒ]ú¢ÐÄŠ“fJQ@åŪ¤Z—å”,ÄmÙÒ2õ9×ƹ6Ž/#¡Êô)ed§ÿÊȺ¿!dd§Åe$M>‘™|¢ʼnêöò +‹™»‚jœ€b%ã,/bÃ@™/þæOP Öíâѧ1hYí¦ÂýŒm@!}%ìâ~`åP²µ±OUþˆÕj£|àõ©ðü¿Èó)Mýá¸OD±ÐÒEäMÌ–rz#±fã[ií ´hLãêÄOA 0Œ¦Œ¢t»˯9È’Ä‚ZÐöRS2ëzÂ6 U^hõêêš¿ì."»žúüÊë•“ÚH½‹ˆHŠm5 Ëfx/äcÖÁ†Ëß#ƒ‡5Šû"írpÏG§¿&˜SÒ_§ÿÒ_Ýßô×iñäôçDu{ù›¯‹^j¹ŒÀ‡PI—<ÖA`Q!^ º-k ZþvD‹†h}`]úbWÑ…6,s«|OàaE€cªœðϹ¯¨å àÝܽ¤ÞÇ-KAÑ'>?‡+Pr ª¾Š€jâ¿O. ÑõþˆFÏÕò¿®–ÁèXÅRPøåU R¨­ªLz3i<ùÁ~L’aÜžMoC;::Ù†Ñ(<%Ùvú? ÙÖý A¶ON¶NT·—Ÿ ‹ixZîGxæ/­µÁ{N§|"Í4þzšÔl1PO0ö0þ}Ï ! ZTÌ]©Ïµ(Ÿ Ò§Mx4˜VMQ„h©v#Õ5¦1ßÞܪÁ,‡™Ï/w´—ûO€OŒ,] +endstream +endobj +137 0 obj +<< +/Filter /FlateDecode +/Length 4412 +>> +stream +H‰´WkoÛÈý®_1E`Es’‹ @Ò$Šv6ê§lQø!ÙiìØ+;›¤¿¾÷5/’’eoŠ1%qfîœ{î¹ç¾^/ÕÔƶð¿sVí.'~ߨËûÅÉZÿ»QZ­·‹US7M§ÖçJ¾*_w°þuu«ÜàêÆù^™¶n[knKÛUëÿ,Þ®¿Á¸—ÁÎøé¯'ïnõævñ÷Åë5œ´ÎÒF‡¯J{:þômÝØÁ©N±ƒð”ËWÕʸڨåçje]=àƒ˜–øŒß«V°ÓR½©´®;µü9~^é¶ÖjùúÚªå=<4øÍéYÕâNð‹1u¯–×áác¥Üü6·¸æ{eáÿU¥­,°$ÆÐâYçt†Á 4µü_xÜè¾²²y ÑCx°…ºÁøðé”â‚pv•iÔò\ˆ.º£0)Þ­ÿ‚ D|Ô'ÌœÆÌÜ¥%5¿¡‚¯;‚DDZ`†p°x‰Ó +®pVA4–mkOXhºÜÇÊЀ…ñ„Ä€«W-^Á³ˆ¬7|]º9 10š ÈÞV„ÏgġŧÓÀàŽOðå—Ò¼Ã` •^Ü(ØÝh Ž÷ø÷··¼ +>îTú þ½²eJâèñÏ&^»©´ÃÃ7]ËÐY*ÜSý._e¯8»énŒe¼»ºÅméUô²ò!ëùÊ4‰Ÿðð_¹ê)Ñ1ð ¾:Æ.dèσ¿5…ªXK;ಃŸœ‡ÔõÞ«’âK…l42®´¬îú’XÎÃÁ}ߘ¥Ôú® +¡+Àmð “6(”ªZ_,€:r𧕅šq½Zšxôly_uXXGNr}!hþQþªCŒíö0ÖgŒL8q1¤ ðwÀµÿP@$¢ó +Ÿ­hÕy+ +œØy †R‰ ŠÅhxb|W”™TœjˆhwÕÀ¬fIµEM]¨NË­:ƒ%”®® ƒÔ†û´"£®`NË.U䶊œ5-wŽœ—+,ßMVÍŒcDÀá·—p¥ã³¢Ÿ8€±€}†,@uÎ`dµÊL˜5^•O©è1Ö»tý$±'|ÍbgáMw>DeT€’ÌÝóÄØ>‹:Aþ4ñGzØønŒ~¡Äp9ÃLˆ¢Ï¿q‹ÅÅ•‹èBèÖ%+F0%âQ)é$£Ã%ªnè-ªNµE‰9Åæ>ª„K8#h»³u˽å³tQ”¡?Åv5ËŠ`/$!]A?ÂÆœD4Iœ:ÛàW&ëgIý")§ys˜7/YŠ¬;’’Üùœ+Rw¥4z”ÆßÁOó›Ëf;'›”%Î.“‘Úx´3X\ïW³dð5ô2W:¯`tm°vìÛŠ‹¹ÙIM +{ötõ¬ÄÛì&iqŸÃ.]j“jX.ã á뚢»ÀëT˜1—Ù ö͉ßÇÖRÒttïìC†iÎ!z'†ž| f‰*èêzÉsÏ5 +šg~ÜF ¿ ©V™ë¨uÛ³óh¼)~¥~”V¯Ñ Úc0y/•xk*e™† +Ô&e Ö»BsH>Ã;n¨™q 4]Á/º}†S.‘Þ¤r¸Á†×ç>3,0-ËÀ#ƒcpDì…‡qÚ 7|Äå¢y¦dm£‚ô짙}ŠGì +§óì'´Õ®h«°Œ&¤ôW§Ñ$;ì1Ö_m "̼›IV7Od@# f²Ê'Ý .†Q”uïô]Øc¹žÑ>™ÜFCW†½ ©ü¯JƉlÖöâ3?jìæNfØI/‰íÂ\¹ÇšI'ÙÉÿ£‹<ÖCR‹~Ýûyº—ö ¾hHû)oöpc((ÿ5\8»I)j”© É]k”ÎÍYΧ9£ÜÏöضá&_‚hGRç[R×æ—r;®½Ð¿Œ‹ue +#(Ýæ×eå ô™‚š¢•¤ƒnø¥b¤/%ÑWøÙÌß’Cøµ‚ÖÅNá~‚³#K«ÉáÕꟸƒžÃL¦WìI½ü櫤 %žÙãûqïQ)ŽöPY¹ÆN¯KËXÒŽù²ì;á—ÔVX+t›aEªòhdƒØ…ÌHµ£8y6¸=×ÚØX'×âxÆñì+EÕà#ªb’¯ÂÉÄþ³‡0QÕ:Ÿ–_0x]êOéÀäçC¤Ô ]ägÎüÉz­¤|KÎû9WnI×À?zÐ X*í[Õ:PHëaÕÍb©kì5'ïïN?¿xqòêüáËéõzóíáÅ»·ïÞ5M3¼|ùR½~ó'ŠÓz+ Jᢷ£o "jˆ…µuŽßú°ü¥j-× {0uüí¸i˜žÅÃ’}?«¬H`Ã|'ö;Âü¡béý^y¢ÛªrŽ¿a68J%છj½Ã7î±×ӛβx·T=)x%çÈ>4~ª¬Co.è6Œnpçp«V­L×Âœ  L?,çÊ›Ø i“L¹³áA3‚û€Ï庙(ý¾ÓŠê-ÌkÊ +ߟסÙѨPL` Šø¼j×Ç«I7Çuq„ Ÿ‚û‰Ö‹˜õ«-Ð$ ÿEκ«CêÿÞéÑ:6Ìž› ò°0iÐ2C4–¿Ü”º±Èq0DþŸXQÚ|rIqÑÓñ^‹-eo°Ø 2zVn¤eí6i´2RFÜ[¸ÑwC¹qøZÿÛrcÀç9RSXÑ°$Ÿ×6pˆ5¦“™uv7# 4ÄÑ´­V®@"úQ¨µé‰òù,‚`ÿ¬ý%Ñê±}<„‚¿Y#¨ ¿£Äò TÎŽ]"ú¬õ±{QiS„ç"{0ô¹="|+¯oU¤¡ ¶yÔÕÂC^xÁµ‡ îˆëá6Å ™,@pA –+Jl`Å[ˆÿi†.8ƒ9¿ls¿œ‡¸µkIÒ#‘dÔöå;<­GöÉ 1öØ¡¡M¸E`ç6=ÚÐ'ûQSl< r:±‚eM[œ·LòÞ‡;¼žñ’c†ÇÆjÌ´Ÿ0ÝØ qê1¦ çxËêG¤b™\h’§Lz~O!ÐÈHÚÌ6t˜KG’… õÂV¾àœÄ$ÿEà·ß¢péÞ‘@®–Q"£ŸäÔ±Pô°D§ï!—77…6§ž1vËÇvx„+þVù¬FÚ¾ª.åò)NYÄ¿›ÿHŒ}‚êTº41É=URíDP“OÄ‚ÒFœª6bçì¢ ËÞ÷Ô¯m û“Á8¶ƒ™]Ä*ö|¨öÛFbߣ飄hK>¥å–¥ÖOøÜ’² lþ4±íªrmþyɆ‹Á’÷»DîÀ¾êàêX†LϦ”÷<áåe.­ó| +ð8íIßW•s<ÙÊŽf8bñuÕ¶H8£Å3¬æ7]˃œµÜd ù0%çÈ>Í©uSwÚ`Æ•­ÐZ°·¾ÈØÓÔ 7 ýa*=ò4Q([”µXÌ8•ª‰žï²ƒ¥ØÚåN[å¶xöI0Jþ²n–"`æ à‡ÿ"c€·lÀnhyhî?//ý&%äI]cx€ÈV²Uê`¢ àAf–|ñò kà3D„ûß y.i]iáˆÏ– Gñw.`ŒþƒÅü-!Æ~„Âp + +`Ì ØÀŽŠà·ÌÄ`ÛIì1ËÎDس4þF¬4ÄNÝði|@ÿ&Ïa¢† XÑ0 ªuú*¤à„:8.ðäüŠM´Q ƒÊB‡pq3Üdf1ÑËùˆª!á‘N\óàýŽ)LL„—LnŽ÷øF óƒYé©3¾„%q@¥®)-ݧðF‰øÎou㉅dC­Œ?F5x–(Y‹J«Óf3^@NeuEPDzr9Ÿ9·ËgÉýR×c$ž¯M<•ÃîÍ;÷@³N¶Ò(;š <\r̸Ži¿îÂðk¬kH½ÔK¥ êo«û(ê ~Œèw_é M|÷·á{ x÷žØË£êˇ‰ïµ†J(Ÿ>Û€ ) q ÂBFËd"íTQΘÈA'WYŸ ñl<ÓÐÌf)!7tâ]PO„ c¨Ï`€+” ÃhÎ¥dg)ŒNGúº)ßûŒïË^¡ƒÏ¥Ñã> = ZáÔ†JÑáP†ù¨ˆáÒ¨=£%L¹FV¸~(˜•„Û¹%$“ æÅo¤ t(&%˜%2ŽõS9²kä­Ìt’à$¦•b "R%¼Ä÷FIÅýf <_üî/ÀÂ×jÀØýsµÖÉoäëO¸+ mC'}©ï3Ùxšiƒõ 1²äð¹g²þ°’+}%A_§3å—s%¹% jCsL÷4ü£ËÀ¬–ŠdÊiÉk¨ecmlÅŽÛ(Èô÷fÌî*/–Þ?cþ»g";·ŽÙù´o±Cdš¶¶šièã'SÒE,‹‘ôÜ- áøb2òž&ÖÎ>STþ÷§íô\Ï£Üõ™pÜ› ý[3aÓ>$pUÒƒ¤ú*ZEßó‹† ™ë¤/ª“Ø ˜.㽓ÛýCs'v­h8×*“ú]Ñ”îXSî±!ç½ÑVèrÿþz‡n{—ÒÈ¥s©³~Ç=ÕòV=™çjÑÕ˜ÀdÐù·‹U?uWP]ºîYÅ`¨q8È8nÞÜ^ ¦ ]KfÈØ@/­!Çô;–Þ-nà¸7G!9ÄÕÖv»­m2ÖØh”xÖÚŸ´AñN_:$`øä{Ž<ê~{Ó>¡jPA0QN·üÆŠ{EZRP;; ¯·æ|Ü +qK}ðáã/ÿ 0`]Ê +endstream +endobj +138 0 obj +[219 0 R 220 0 R 221 0 R 222 0 R 223 0 R 224 0 R 225 0 R 226 0 R] +endobj +139 0 obj +<< +/Filter /FlateDecode +/Length 9009 +>> +stream +H‰´WÛnÜÈ}×Wôã4 Rì Ù¤a°-y/¶‰5É>ÈA kä‘b¤•dk¯OÕ©j²g4bï<Ù—ºœ:uêÅ|§1MíCKÿÇÌÍrgï‡ÃÆ,owöæîŸqfþq§©çÍüÄTútoº:Ñú—êÖ8êз½ñmݶíYíÌBoçÿÚ9˜ïüFwÐÞ†·ÑÉü×›½W«Æì_íü•Îî;º¼M|Zí:óš^Å̽Ùù®ç;œ mªûÔzÓEzšdNVlºYí¸äkßDz¾Ø9¤§M.´õÐ6½éBÜØè_òpSô®NÙša󦦯}¿mÓx“ºÍMC¨û¾Ý²É7mRÓŸšMü&¤nÛM±­½wÁ¸ôÀ¼žnŠnË&ÊMݺàkÃæ¦ë¶ÛzSöÉÅMó\Kæù0nza×'ÆËøq‚†Méýqt¦lñ€O¡3É÷ô= ŒŸ£Ù­BÌìra+Wz¸º;åw­™ÝÚ̦+æ¡#Âú L™ôˆw§¼:É"öoIz~8£±öì±£ï»&;®¡=šýj ¬¸†×ߘc>‚£e«ÄæÀ†š–¬>تç‡+[ ¼ba{X#÷¼}aÞò¢€7&­øÙ5š‹¾’Eüûn4ìÜ W'x° ›WÖñϹ…ã—ÖÁ€¥ÙçÀˆT;vR:æ<“uhwAïÕÈÈFæsÌ¡mÙlv¢–®U#]”¨çX¿Ýqò¶% Tâ÷ë˜:š™÷3Kà§oÏé¼Ä]XJ˜ãØ £Ã܇{ȃÈëÎÈ°ˆ;Èü;Jû»kþFë{ôÚö|Ì®yŽ7m±sɾ#´«åÝU‹Œ˜¿(¦>ë›°¸ÙÊÖSj|븯ÍLáÝ£8nšÇ9ÝçÈ“‹•ï5úiº\r({vË[Ä´±Ô(>Îzøl„oï­%N¦µùS …1„ +@^qîÂüÂ@E@=³Îìžs˜ôF3ûh^sð7®cÐ üƒLv9ÞMiA*ßS|-}ßG¡Äõ©ÝÓ@Ë…¨O³3 Ê(…A«-hÁ×jiÞ`$Ä\Õ楸u¥¸dgùá#-^.r$ÎeåI.Š;ŽÕ¶ýjÛvÃUö €uZ¶€œ–AË®ÖlÐQ5J…Q)q„¨Yh|@e•ÇéÇ° eÎå•dV|£ÐøîøF¦²ËÌLƽ*’(Ò‚0’˜˜/¶#CÜY9ð F0àÐ%Ô²Æ1Á„AÒ[¡â/ˆ[ª\ÃÀìg+œVœ˜8XOÌ•àÖ.y©«nà²Ò@5‹§Xy‚øGvº€ÏÈäÌñ¦f]ñ™ôûiƒÁö½ç¾È!Ùe¢ÖŠpû1WF BñHü%fÞp8ºÜ„Ò…ÎÀg*Ÿ=ãÞ(09D¦o +bWòh•-Éd燺}c×L5“½µÈJÍ$-Ýã ºG*kC,d·åë(8>´¨²kÛeÖé3›°™×ÚTÊi›ÿBn-|êl@„ÜèE]òóVYÒ¥8ѳÿYB c†¿EN<’Åÿ? €ý7 ß ÁîÛI0n’`ƒhjë¦ï9½•äab êt0™L*¸öìÔ0ý%n\•oJ„ZÀ½²­ðJg̉ý¦%Ÿ gŒW]g´ã쬦չȧDríañï|=wÊÌä$WõÂtc¨ÙÜ ±?ûÊ6xž.3+çy8$ +£ÀGqëJj÷¦4Êåf"]ee!É6ácý U°8ö'ÀÂAàÑ¢Cˆá—D‚NYÑ %—O¢ö–ÒH­=…5P!#6ù1zI„Ò9¹àŒ$\#Åy+ttN·”$F'õ¬RqŽáƒvW”P.üQrÇ, EUÒ¦)Yó?³×&&(B1j áñQñhX +íð£õ]î>H +Ü.MXjsT˜…‚©»ÇÅ¢î%e--§,}±i=¾Úwk4©>rÐ)΄üÄ ^“zÆ”Ûð”ËmÈB„ŸXðœYiQwˆŠtµÿ¯yŒcŸØ,ìJþ²g»¬x|/ÈwPw:ϲ`@j5DR+K[Ô¶!R'¨ÕÀ’©le‹$%H‹!7ÕV3žo[,õ–“+ r\eR⇠#d¤ôÕOlîùÑ^[ÑWD}#f-¹…Fö^éTÄc5ªÇ U‡¹° )êIZ{e‘¯%'’Ób"3¡3&¨ÝN¤£eœj$ÜŽO:½­X^¡ AÅ\2ie‰ †õQËè½`_¤ž; ¹SöðN7Þòyt Âeø‘ xà·ä4Is‘Ý›Ûј,Ì+æ3‡ž ¤Kå«ý ~¼/Ô¨s­·Çràv"åòñk‘™LZ‚½Äça ô.Yr6B°R}œÙöyjõ)ìNa™F Éw‹;ÓàLrÒ¯Bæ…ôH¤#jγn It[Dè•iüÏIm;Ô6æFa @ZCg&$S¿®hˆgŠŽ¿£ãƒ5Z—â J1ökZ1¶o›ÞtÞZñh¶AV\g“„›´tÒ±Dx´@eˤÐß²,¨ÍÏ´·|Onx™Š'yL”˜£ä²äçR»ŽÌ㕯Ñ(>ó}KN³Ö­ËâZ3 +‰À¬ ?á•òa?áoIÀ‹öƒFøj‚'ÔÈdË>JìyIyAlWŠå5©pÀçq:(g­Õ£A0Ì;–$±Aåyé>^¤ª×Rd†S]=¦jllÒù„ÍGµZ´Í7|D€ÿÝ8¹¶Úû»í-QÈElóî’çffòÄèdbd8z£kú‡ü“u:’ +€î¬L\§œ$ѽ( + 8ÖqÖÁä+m¶øŽ.Ö é`ÀåI Œ2†ÃÃÑ“PóŸŸàP«½PŒ¤\Û($¨„ä‘÷eö®ïÊjsD+ä™7Ä”5÷®ù¢ išSÑojãl‡äF+e·k~¡Pb!ºEmàF™Ö߀&¡J£JHû…qÓfnÓ 8ˆ¥H¹pFòIy¦ä ˜zÍ÷vÚÝz9v"טO*!–Ò +Ë{i:p*|+Æã:µ’O%³–—IV’ PÔJ¢P(̬tĈ]³€IØ齜4ýGhEkóßyJ*•ð ò î•ù@³¸™ˆw6(fºuœOªì?¬WkOWý+ý)ò•<Ð÷Ñ/ÇBÂÄØ^%öʬ³ZåÊŀ‘±A 8οߪSU·o=0˜H–ÏtßGÕ©ó0\LI!“ÖÛ–fnOöíÆ PYQ!»±ÍEÇž•Ø2™P6ª^;ëRƒÇVðmËÑ4íWã»*kïÐ=úåò2fs°GåJ¼ß Ð Df{©Fœ"·:‘ªeBÏNQD’‘oo[Ñ—Fç߉¡ ã ÀÞÓ¢]`Î{IŸº¤µ¶'&„$a'©PÄ$êH?’ÿZDþk~*›(ú€ƒNDU–vçC.ÉžQ o«|À‚µUlnÀÐ.E#BR£ŽÝVz§<ùqœ Hâ`•+0¬tBýPÝ7‹'»¥B‰ÔèÆu†‘Æ$>ŸA"Óx†dx꤄ŸÄ] —+F›ê͉õ~Wmž7¥ÑSKóÌUûWZî3þ6µzj馈ª”rÌ“ö±šùÁŠóõ¤-ß8)ðוþ¾Ùw½z#P,ÞÅ•¯cÝû'O&G=E¨%Äȉïmeü»2Æ€”æ¥Zî¾Êƒ[ÔæÂ…~bBd]ìdSTŽ•þwt|½BTj½ +TÞÔ´kh«+h‹†¢"Bi°Ç”½JîHÍFˆŸ¸LÇ|–°Ü._8q}[SÒ¡, ¤Ç¥[?¸|QjS34o‘0šD‚ Zòse(O^P.w+t=Lù:Ò¿¨ƒµPû[@m7êO«,Ñ?Z¼_NlLÐiÌ}QÓvZ½¾°•­—€’&µ¢pÓË(%¡LË)Z©¢¢ ÀŽ¥¿GxÛêgÖÂÔ5v¾lÛ !ÿǵm‘ò(¿r­Dõf±£e4y¼ÁÔ…¸Æ\¦•Ë`@‰)M]d3±›ðUœð•:õû¤c-(ü,(ÕíMŠ>¬=qÑq¬Ù1b¥-ˆlæ¬õU GçÒVŒ£–ù7´«+á+Å,’i£‘©îÚ5·°dWÝ®Á°÷WŦ(MâÔjÞJ%¢90išäE‡»be6\E6íøY&Ù.ºŸ1vaß•dÈЉýô¸ùT¤Š„·¢WH@qíød_„y¿–IEk‹ÍÌÇçc]¡òQO÷¿’gKøÉ"Ïqõ·¤ÞV“ý°nže®Î f(@’XDSPÊoå¬ãNz;a/'ŒÚ?é[§ÉK–·œ;¢$ aç–ßC¶è&Ù‚ñƒ°Â_œA ­&%QÎ8üÅ’aÝ[ó+ÌìU4ãv’íô /< Ç^Íò$ Ènz¯Z8ÓkÚCã‹[kœ­E”¦ƒ@×qôo i…8Œ%Œ´¼Í0Í6)øû3y•k zØÌƇÌlÜdfqÉ‹ ÚÅÎDuçñ¸·¦T@5ÏL—Œ'€yZ£yƒ$hé¢ðÚˆî…Ö¾Ä0‡I˜®w؉¶øN§ƒøŸÈ–t¡ì ©§ÕFo€@?pfò…Ÿ9££&jÑ®¬óù¶«ŠDˆ_Øâ™ïtÿI¿o¥· ÷.ÿä cšˆOhæÅgx¬ø ›™(x^+º`+ÚÞ•QBä÷R´ }ÏnJÊ¥«¼_‹’(sõ šÐˆS~ôJÄ^¹¦µw íѪz3ýxþOÝõW¥ÑCMCê{E‡Ì =D(Jpd”¬óŒÛë9sµ[íètÖ(_{± aÝ$„Éïëür£Ö(næ—Es³ª[”*7íï•­Tè²Ì«¾še|¼Øþ„–TGšmZVà|Qh%âï¼ÕÏ2¦œd“‚‹ÖË!«a¿F smÌ9‡•eµêçUaYÂIJ°Íj§ÕîV ‘ÍÏ…ëYÇ.³~ÆIa÷šS¦2¥ˆû¹"Bq;×~àçêµ)õ®íVF4m0¢2œ·æ¥Ûh^ÊIi'“òÃñ!LovFd:Â-{¹n.†ì¿|¼³6ñ93dS¤ËqdÞ ÖìIÍß»€œºG!-´–é`¾@cgBfQ‚“{­¦†’G"•‘º`o'·ÉÞ%Šë}áÈ¢ø2±à§ HVL6;žßíņxºaõ$ºˆþl0 Qmá²k¸¹Ñ0çµ½i-v»°»`·Ÿ`÷nçü®»CÖ©A&ãAÉx&èÍ‘±öî"×gçºÕ1Ûf›Í0+›Ür>愨þ•ÈªóJH!šA†¤)Ò ¦‚¡;Œ›¿æi¹*Ž Çtÿë4{­O^‡# ±’©÷LšûUÀ™Ã œiÛ"*•Iγ9L Ú¬´É—äerWéÿrU¤75WÞÉ™®­¦2̃“ä]†ài%‚ïS›‡`%;<,Qñ¼U¯¤+êÁôU­((É÷"M@Áæ;°üQî@Dç\ÇNà?ÈÄ©. ;-\ &ø=爜2H#‰øîž„EJª[°Ÿ ¨m«Ú¾ÖLøžÊË8‡Z\ ÇVÃ6–QȦ@¸b†¸åγDI'ÁiMlÌ-A‘—˦_€õ‘—ëõoËC64š¦ýw q•Çsœ6ì´þ[Âvâ ž×uˆuݤý?íïÀuñÇŽ?&|l)»ú×ì€Åè«Æï,øü±®}O¤;‹¨ËЃ¬Jük»3ªso ö”ªìAëGR†C Ncz„‘)pBÀÛ‘mûRL ˜'pÅ99­ÞRಔž©'‰±±Í+µÇׯÇß”¥è@‘ûv×#»D†Â®"ýÒµS±)¿m2`J—ða5Â8leûÇ㨓Y.-âk&u”'‡!ð“Û—‡_Ÿ?ßÞ=º¾9<ÿ×ñ÷ëçû/÷÷©«ÃÎÎNõâ—½ŠÞš ŒÂ{ù}K\¬ƧÇàv”‹ê ï““Ê]ã†ÂSâ§.™8¸(ÏØ?Ñ£ÛD\5ÿ²íZ•†…X̯Å"j¢Ø¸…C'óêr8”ÙOQ´hé’z‹Q; ƒ±W£p²Ý£DÙåèÂ5Ë‹eQcYo¦Ç¶°óZe$Pm)ó\ˆÎ]I­N¹çIï/'ŒsÃÌ@è`˜¯‹ëQn,Cž)S~tBÛÇz’s .ØíØnˆ×4¼.ò !Žˆ³q  >`ûi½ÈJ«²"E\ʬž©]¸äÅxØXž '—Xˆ^2¶e³ÅLñ ‹•ô>ã¹YØhuÚÎâÅ®èÆàײÙÒ™e¶lê|ªõö·ö:yõ:ü?²5“óFmTR¬ÄZ\Po@‘6b¨àµP›x•…<øÉ "n@~ÞœÚ×^ +3¨}µü`p¯PƒÙ×höµÇ&"q‡®“@¤n%¶W ‡£Ç#œsp­RWRêj„º,321ŠÔ­±æSÆòÊXxp!6&¬lѦ„U0ùØt„S4,rtÊSBk—.áZÏ\?(M j·)Ræ¤4G4"! š!¢fìqÈfTæ¢Ó–àá`fï,íG¿”Í,œ™3Tƒs>Èÿr)jÛ2è£mŠÒsÈ?\¹ðÅ7Á4¦•8u íûG£.ýã³ý ÅYè§;HËÌt°nïÓœS›A¨y© ö)Ó¢‘O;¥IÛg†DOÂ*WM“–4#iVšR|cYifñƒuñå…úùÏc“‚قЯiRD“ô©¾y@ºYK¬=oP~¤ +¹õ5‡a«å ƒæD BcŒ% Ó˜³øQí»AåÁÜ¿/Ý ®]—·§€Ùsº|ïb¹e+ æŠÏÝãyïGn-ê–qlýùœjõ“f²V¦Ð¼¥ÕJs[”m1šÌÀçËKå+_ +4s3±cW¹íœ5ü q/þ«‡ÅůªwÈ°AŸáÓM˜æG.4¿’§c?«Ê|ã-ß$Í7ý4ßôÓ|ÓùMO"×h××hT›gd™<Ä5b|t®ZxÃÌØã\µƒùMéò˜êY”ùëÕ<‰»AÝ®ÅEEš1ÜC£(7»qβ2ãFIS|ÁÃŽÁAÖÕÿY¯ºÞ(’+úίèG—Ä ]Uý‰E¼àh—E2‘v¥È ¶!°¶…q,òëS÷œ{««gzlOˆüà™éîêª{Ï=Ÿ˜i/ªCÑ-à&¤•65XfÑ•8C Cê)y±fæ9í· HñA© +­(~Àp¶Ên +"-)÷t@Ñ´‚ò}¬Ë'ZîäF–]¨ò,ÙéIÖmŸúŸ˜¼«>?zòò¸®Î¯eú[eþûMtPkZ+#ôÔ÷Ð*¥ +ĈC%à…'n@SoooÓæ=ÃWTÀâxgT쯢ÐA*2›ÄN×x’<ïþª™.å”ZižNìÚ%3ùn"¥<Uè–×Gôö‰ž»®›,«Pàz†óŽvîTöýØß F™ó6ò=MÏuØ”38BÍ>5MF¯0°F]Ç’¥ÅñyOŒ4€âˆ¼&ŽmÄñjeÿÁ ‘â†B?³ùú2½m¤ã•Ço,Ô\ äC :Àï0/+ÀEö-ZcC®Ö¨Ù5¦T0Á–gÿ‡¥0üÚ¬°v¢¹WŒëÎÔ­•|äÏr^ 'Í袊iwHnSH®÷ûHnì—$·Í¦öoŽ½½4ŠM#Gy¯l÷^Óbòw–_æW­ˆ¢tj<;K±ÃzA”«×:ÌYõ„çz‰_ìÜ¥kˆû4œŸÊÒï!DÙRúík[6/ß(MùŒ`Øa6U 27 jm)ž?vÈeß1Ì|Gh/©ÚO«ŸA½"(­t›”¾›Ö†IPÓãA«W8œ ƒ(¯:ö‘:žXSœ“à&3½-¯I{ƒ=†8cÄÞ›í”k—“ÒšNÐ%ΖŒçÅÔûìêmÉÜÞr´õó齄¬iñÿBèH:ŒÎÍZF lM+\ùHƒ> +™·Úü ¡môÜQ«~Iˆ‹@⿬½'„ò…}O”O¤®ZBuEÏr®0%"@¬ÐõtV]½Šš×V϶bø‹R¼K[÷Âî¿vm ç‚o]§`Cç¯`4ŠE±ÜJÃá ¯å<ˆ†Yµdy@ðË%nÁ‰qˇ óäµ@Š ¹<ª€yýkO[g§JkMGÏþ¢Ã:ÊÊé Ô ®ñê²B醔K4¤í ý¨¹‚À«LØžÂß–hÜ'ÿ,ÆŸPÆÓÁâ)JvZÉO«Úƒ(c>$º5,a‘)ó¸‰ ¸$ýUë\€ &Šð ƒ):ñŸ‰J}§Œ±”¸Ä®*ßÁ¦÷½ÂFUõ»›˜o“l=ìÁ bÞ8ÛF¦©ØˆÅç+ét/x‰Æ%6ž}‘«rÎÂ)>¢]I2–~b¡ s71äõm7õW/Ó²¥Ÿ,ÉÖ'—Cp¯0ë:Œt@¸TªÊÔ•<§Vº*'‰ê(lYÖ·®ïÛ¤£÷†•pÝ€o+•M'®×°BÜt4©ïÕ™óìTÊøÅâ]Åô€L¾KËb1&üð¬à«ÏìqÚÅ-#ÂCæ™l·¹ó÷š»îGÌ]gæ.Þkî5§:¦!ïÚš~×òŒLâBÈË|žê òÞmû›Z@—6ð°<˜¡%Âoj¾A¨½¦A"ÛIyp°<Ø1U 8†¹þXR%d “zûQÍÁ¥C°YkÞg€.¾¹¨q­±+L–©‰1˜Ï¨¹xë5ÙaBoÁs@sµw„ìÙ +ücÓkà¬Ù´¼ÔBCÒ;ÙzÃ(Fëz@-íÈbU”­Ö²÷´`ïà»sø:ª*4÷¦®äê~+tY—cGÕN3ÔÍe{,dÛ7ûx½®Y´>ƒÉöK×{Æhz‘*T÷Ô¯®ôÓ›$t·ÀZŽYVùfd„ÃìaÀçó”s˜{ +ñ‰sñYLo›¾£HM¾äï­ÓG‹[ î=i¶ñP^ëÒßë\ªm¿:“Vhqi[Ó„Ñ6 ››Dx庒§-,çºK0Óâ;3n¦pÇØï0S64yó¨ÊÖ ôŽKâ¯δ ¹Ñ…­ù)” +"ÿN`¿£±±'äÿ­÷Èu¦7Ÿ'joÕ]ü£,¾rQ×»HQÚÊ÷-YÛµžºö¹TDn·6ˆùM¡h„"ãä^ö·pµÒO`ÿ´W²Ð(Þ"`yu­ã©ëÙ?Ô5)ÑÓÐœŸ¨“ú`Éî+P9Î?t +'Ì)†~}á¬h^£ªÒ¡U·ŒœWÌZ+–äý%µî¢Øð:ÏzÔ ±\­¨n7{eàUÞBðJãP‘‹°œ‡"‡íÄ5Z€QJòÔ¨’`¡–4Ý2[„ñMRèEI EN˜Ê€|.°ò•&S –?aQ“À¥-¡:ÝÁg¢ùÑôKĵ•ƒ»:”¥Š¾–B!KJÙ¯ÌÉÉ@Çg÷J[Ú‚6¥m³¤ ¿ý¬¦²Ç"‘F¿‡´¥h»-mí8š´•,i†¯~¸´¥{ά®®Qö»Û’=vb3·£ø7ñ}JÆ“³¤ÔŽn$ýàg¤¤›ƒm*dŠYz‘#Šf¼;•Îù!+aUlÚü8½¶{&£«¥¸v$è9§½I ÌQY¹»úÇ–^ʱ†Ûn)qbþòÑèkÍ/tcQ@v±æVÿ>‘ ¡ËªšÝÌL@ƒEUܺ¬àÃZ5iãÜ£ÿ@MÞˆ›m§K9Ú¬6%NlÑXìÕbÛVb‰ðù£øz/oi#Ø°kêó8³¡Á—6tØdžöK³ÚÕ=s[{wn›y¥MóiŒ'¥ÎÀoäê?Ôi BU6MÙŸ¬{îy[îÞԦהá®åõ§Ù"©ñŒ9ÞåË"c9 /\¡|&2“Þð¼zçZ8̹çARb8Uzž€µ#œ6€ÙhåªýÈÖC±õb„’vÖM,ñ’09R’y©1µ|Ó ¥~1t´žMž]ùe«W™^µ¨›T؉Aš„¡:x•Ö/ÞɾºRëʺso Ϲ‰N‘GFøEg°¦É·)ݵÈe,ë ONý¸±È›mú=H=TZÊ©ÁØÉ«}£*„†„ö'q·Ù¥ôüÙÝ–*aÚ’ÂÄú> +endobj +141 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +142 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +143 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 1145 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 142 0 R +/GS1 229 0 R +>> +/Font << +/C2_0 230 0 R +/T1_0 231 0 R +/T1_1 232 0 R +/T1_2 233 0 R +/T1_3 234 0 R +/T1_4 235 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰|VÛnÛ8}÷WÌ£T o©b±@7-°] Ñ>¥E‘ÄÎ¥›8ì6H¿¾s†´,'n ¢É™3g®¤Ñ)6dtgþ{®gǧ†®W3£ñT'Ýðaë¼nmGÉMGÃbv53¬ã<ôCÕtòlôº‹ž‚muË ®Õ)ج³qVû¦E¯7¨E¢ë´iš-F£Ã®@lulì>¿zP“¿ÿg½ýbÈR,/.©.«'–èWd ~`=µÚ5¢šWÖDÍÎ{²ÉéЄHýýì¬ú¨ê¨-UÿöªöÚSu¤>÷Ę-Æ`ÈÀBV eÈÆšD¶5Ú6¼È£såt¢êR±˜£ê†Þ󊪿•×!ªNŠ½SºWªnp>WL˜SPîï-èVYæOÕŠ.U‚Ž#Uàlƒƒoóg©lÒUkzb¼¸Urk~C ^0ú'ã#‚^Ý€kí ô×t¼5À¢//î løF ½Í™kœkåL>X)ë¡Y$²Ü»É|–T—@OÅÅ.>ªZdK ¯³Âçìƒ&IQEªÿÊÙ©9½)P?çпSu—!^’E +Ài’„0MÂŽñ8†s`ÔZ0ئH¬”]Î3¨v€¿ƒë-¾ügÚ¦'•ï9×E›‘‘Ls&”€ÎFÞÐ7eƒä¼8Q(­$À“ðJt¶å"\&ÎÇ^ê"€ «¶@Å[œ®_Åë—!þ/ûþ‘^”3°ªKAçn‡\”hÄ‹g†õ¡²¤^Ö®j1†ŽÆ‰Øü9-ûÛÊ»Bï¸Ñì@Åð#çsh÷•ìÈ™ÿ¿¥›‘Gí|–íG˜e{oUmô@%i™ƒœú'––Æ™,rãÜcŸÏÏeáòe¿Gõ•9öfD\”Ûa£ñp>Vl0¹+ß[ØæØý©4!ZK)Þ>pño:_ÎóâD Žøi çßÅ æè´úTu%É `©–’eÿy!í—ɯ6yÄÝŽ·Æñ©ÅÓ ‰ô/ŸžªÃrβLÈiœÏÐ_OèûJgŸ Íi|ºÍCÆ⥒Äl"[Ów(_JácRø“-ì'4ìÖ’çij-»>)¦½ 'C† xÆTKÛ´ôäó=Qççç5ßFÏÜ€œÒ (×—S^:ÛJúÙOå>1$ +endstream +endobj +144 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 143 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 142 0 R +>> +/Font << +/C2_0 236 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰\½ +Â@„û}Šy‚ÍÞÞí%±P$•^'b¡&°¹ŸÞMkó Ìs($ÖhΔ". V$œ!˜q» ^ f¸ +¦…š£>eôayz¥¬qùnQEç–8-µœSÌPcíijíDº´/3þ¿ëDf™µï·¾En9j„qE}ÓH?ÿ;% +endstream +endobj +145 0 obj +<< +/Ascent 927 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-166 -283 1021 927] +/FontFamily (Palatino) +/FontFile2 237 0 R +/FontName /AIQXVD+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +146 0 obj +<< +/Filter /FlateDecode +/Length 469 +>> +stream +H‰\“Ánâ@DïþŠ9&‡È`÷t'’…D ‘8l-»`ìµ´ØÖ`üýN¹¢DZKÀ³fººŠéÉ7»í®ï&—ġهɻ¾á2\cÜ!œº>[®íšéómþnÎõ˜å©x»Lá¼ëCVU.ÿ™/S¼¹»u;Â}–¿Ç6Ä®?¹»ß›ý½Ë÷×qüΡŸÜ­V® Ç$ô£ßêspù\ö°kÓz7ÝRÍ÷Ž_·1¸b~_ÒL3´á2ÖMˆu +YµHÏÊU¯éYe¡oÿ[÷%ËÇæO³ªÀæÅ"ý$Þ7à-y ~!¿$.¹¿ÄþrI^‚ r.É%XÈödV²‚làGò#ø‰ü”XØKÐK¨/Ðê ô…ú}¡¦@S¨)ÐjʬÉ\‚\òJNZå™Ñ#£g.\ž}=úzöõèë™Å#‹g_¾JÏ +ÏJ…ŽRG¡£ÔQè(ý+ü+5šJM5™E‘E™E‘EŸÉÏ`ž£â•ç¨8Ge^E^e^E^c^C^£gƒg£gƒg£gƒg£gƒg£gƒg£gƒg£gƒg£OƒO[“×óp~N!Æ4Ý&÷uškŒiüç+7Ï=&¾ëÃ×­‡Ñ¥*|² ÞÆé+ +endstream +endobj +147 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 238 0 R +/FontName /NMCXVD+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +148 0 obj +<< +/Filter /FlateDecode +/Length 468 +>> +stream +H‰\“Ín£@„ï<Å“C„ =݉„,9v"ù°?Zï>†±ƒãƒß~§(++-ð螪nzòÍn»ë»Éå?ãÐìÃäŽ]ßÆp®± îN]Ÿ- ×vÍt_ÍÏæ\Yž’÷·Ëλþ8dUåò_éãeŠ7÷°n‡CxÌò± ±ëOîáÏfÿèòýu?Ã9ô“[¸Õʵá˜6úVßëspùœö´kÓ÷nº=¥œ¿ocpż^ÒL3´á2ÖMˆu +YµH×ÊUïéZe¡oÿûî ¦ŽÍG³ª@ðb‘^‰7ä xKÞ‚ßî1é~Kë’9%rÊ%y .ȸ$—`! Ø“=XÉ +6²ŸÉÏàò xM^'ê +t…º]¡®@W¨+Ðê +t…Z-áþ‚ý…õ êÖ/¨ß³^z=µ<´<µ<´<µ<´”ÞÞ”ñŠxe¼"^¯s<½)¼){¢è‰Ò§Â§²'Šž(=+<+{¢è‰¾’_Á¬EQ‹²E-Ê©øúNNƒRk4Ôhôlðlôlðlôlðlôlðlôlðlôlðlôlðlôœ^Êûôa<Ó)r_³ß\cLc?µyÞ1é]¾Nã8Œ.eáÎþ +0ÿ´ç  +endstream +endobj +149 0 obj +[239 0 R] +endobj +150 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +151 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/five/eight) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 240 0 R +/FontName /IURTDN+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +152 0 obj +<< +/Filter /FlateDecode +/Length 252 +>> +stream +H‰\PMkÃ0 ½ûWèØŠÓŒ@&0ÚrØËö[É mç?Ù.L`ë é=?‹Ÿ»KgMþœê1Âh¬¸¸5(„'cÙ±mT¼WùV³ôŒ¹ß–ˆsgGÇ„þIÍ%† vÏÚ ¸gü=h ÆN°û>÷{àýêý g´*h[Ð8’ЫôorFà™vè4õMÜÄù›øÚµI½.S”’ú]'½Cë€Ç'ÔùÏ;ËÆ“ecñ±Vï<+ö+À7txæ +endstream +endobj +153 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/D/I/R/a/b/c/e/hyphen/i/l/n/s/space/t/u/v/y) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 241 0 R +/FontName /DCGULX+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +154 0 obj +<< +/Filter /FlateDecode +/Length 308 +>> +stream +H‰\‘ÛjÃ0 †ïýºl/Jmc +!0Òr±Ëö‰­t†Å1Nz‘·Ÿl•fHôÙòÿ#KIÝœkHÞý¤Z\`0V{œ§›W=^Yڨ律5vN$$n×yÁ±±Ã$Ê’J΋_a󤧷"yó½±WØ|Õí’öæÜŽhH¡ª@ã@F/{íF„$Êv¦¼YÖiþn|®!ûŒ‹Q“ÆÙu +}g¯(Ê”Vå3­J Õÿò™dY?¨ï΋2—Ó”ñ™ùL|8D¦@|b>óÈDYd‘)óyÏ÷ÌûÀGæc`ö)‚OQ3×/ÌbÉZ´’k¡É>2øÈ‚¹ÌžÂcï¯ +ϦéÀ£§êæ=µ3Ž0ö1tÐX|LÙMH>ñ+Àÿà”ó +endstream +endobj +155 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/C/D/I/L/R/S/a/b/c/comma/d/e/five/g/hyphen/i/l/m/n/o/r/s/space/t/u/v/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 242 0 R +/FontName /EYXAZV+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +156 0 obj +<< +/Filter /FlateDecode +/Length 354 +>> +stream +H‰\’ÍjÃ0 Çï~ +ÛCIš¦6…(i 9ìƒe{€ÔVºÀâ'=äí'Y¥ƒýŒ%ý…¤¤ªOµëg™¼‡Ñ40Ë®w6À4Þƒy…[ïÄ6“¶7óãÿfh½H0¸Y¦†Úu£( +™|àã4‡E®Žv¼ÂZ$oÁBèÝM®¾ªf-“æîý àf™Ê²”:LôÒú×v™Ä°Mmñ½Ÿ— Æüy|.dï[.ÆŒ&ß­»(R<¥,.xJÎþ{Ï4‡];óÝQd䜦h+æŠøÄ|BÞí#£E¾‹Œ9gΉÌbΓSž} 2Çî)Vm#£AfE>Š}TôáüŠò+®AQ J3kbÖU¤«XW‘®âúÕ¯ÎÌgâ 36§Ð¬«IW³®&]ͺšt5ëjÒÕŠY™±ÉnR»q+äs–æŽ1®NœM®wðÜ.?z‰Qô‰_é ¬¢ +endstream +endobj +157 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/I/space/three) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 243 0 R +/FontName /FXHGNT+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +158 0 obj +<< +/Filter /FlateDecode +/Length 241 +>> +stream +H‰\PÁjÃ0 ½ë+tlÅi²ËÀFG!‡ncÙ>À±•Ô°ØÆqùûÉné`YOïñ,qê^;gŠèuO GëL¤Å¯Q4YÇÕé>•WÏ*€`r¿-‰æΤDñÉà’↻ãÚƒx†¢uî¾OýE¿†ðC3¹„¶-Yè¢Â›š E¡:øMÛ9_[ ¬Ë|¼™ÑÞД¦¨ÜD +Ž噣ræÞÜXè¯*‚¬ónUqÙ4¥çòé¹ô\²Æ};«ñ§ñaU¯1²Ër™b/³ŽÇ > ³r¯_sÔ +endstream +endobj +159 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/D/I/J/R/a/b/c/e/hyphen/i/l/n/one/s/six/space/t/two/u/v/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 244 0 R +/FontName /AASCVD+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +160 0 obj +<< +/Filter /FlateDecode +/Length 330 +>> +stream +H‰\’Ïnƒ0 Æïy +×CE’¨Bªh'qØíh0ÒQ Þ~6®:i‘B~±ó}²l¢²:U®Ÿ!z£­q†®wmÀi¼‹pÁkïTœ@ÛÛù~[¿vh¼ŠH\/ÓŒCåºQå9D”œæ°ÀÓ±/¸QÑ[h1ôî +O_e½¨¾yÿƒºvPÐbGF/m„h•m«–òý¼lIó÷âsñÉz¥;¶8ùÆbhÜU¾£U@þL«PèÚù$Ù¥³ßMPyÂw;:ˆOÂ'âTâ)ÇÓX8fN„f-¬‰÷û•é >˜ÂGâL´kµxjöÔ×k<N™3áŒY<5{êR¸d> Ÿ‰h kÔc¸#>†}ŒÔl¸f#žtp£îá–Ñdá1{ F±Žw¿wøøCüèT¼Õ¯G½ y +endstream +endobj +161 0 obj +<< +/BaseFont /MRDLHF+Wingdings-Regular +/DescendantFonts 245 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 246 0 R +/Type /Font +>> +endobj +162 0 obj +<< +/BaseFont /EYXAZV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 155 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 247 0 R +/Type /Font +/Widths [305] +>> +endobj +163 0 obj +<< +/BaseFont /BBINJB+Wingdings-Regular +/DescendantFonts 248 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 249 0 R +/Type /Font +>> +endobj +164 0 obj +<< +/BaseFont /EYXAZV+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 155 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 250 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +165 0 obj +<< +/BaseFont /FXHGNT+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 157 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 251 0 R +/Type /Font +/Widths [202] +>> +endobj +166 0 obj +<< +/BaseFont /DCGULX+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 153 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 252 0 R +/Type /Font +/Widths [212] +>> +endobj +167 0 obj +<< +/BaseFont /AASCVD+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 159 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 253 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 257 0 0 0 +0 0 0 0 0 569 0 0 0 500] +>> +endobj +168 0 obj +<< +/Ascent 927 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-166 -283 1021 927] +/FontFamily (Palatino) +/FontFile2 254 0 R +/FontName /BINDSQ+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +169 0 obj +<< +/Filter /FlateDecode +/Length 571 +>> +stream +H‰\ÔÝjâ@Æñó\Ŷ%šy? ˆÐÚ<ØÖÝ ÐdìÖbzàÝï6)Ó[×Ë*´]3}Í¿Íù0e^¼¿]§tÞõ§K±^‡òG>yÆ[¸{l/Çt_”ßÆ6]ÿî~m÷÷¡Ü¿ßtNýa³ m:å}9 _çÊyÙîÍç»éö×ü»âçmH¡š—Ä4—6]‡C“ÆCÿ–Šõ"6aýš?›"õíçW—OÍïÃX¬+\¼Xä¿ÜÆ6ôŠ½B×ì½eoÑÏìgô ûýÊ΀uäý#î—ì%ºbWèÈŽha ZÙŠ¦-Âíh:#œ‘Îg|d?¢ŸØOhš#̑ΧÐ&° m›Ð&° m›Ð&° m›Ð&° m›Ð&° m›Ð&° g+˜­Ð)p +g+˜­Ð,0+g«˜­Ò¯ð+ý +¿Ò¯ð+ý +¿Ò¯ð+ý +¿Ò¯ð+ý +¿Ò¯ð+Í +³Ò©p*m +›Ñcð=Ñcð=Ñcð=Ñcð=Ñcðçi˜§Ñf°çi˜§Ñipçi˜§Ñl0;ç阧Óïð;ý¿Óïð;ý¿Óïð;ý¿Óïð;ý¿Óïð;ýÿ +÷©øÖ˹—¸¾®Ø¸¾Žl> +endobj +171 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +172 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/five/eight) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 256 0 R +/FontName /SPZBWI+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +173 0 obj +<< +/Filter /FlateDecode +/Length 252 +>> +stream +H‰\PMkÃ0 ½ûWèØŠÓŒ@&0ÚrØËö[É mç?Ù.L`ë é=?‹Ÿ»KgMþœê1Âh¬¸¸5(„'cÙ±mT¼WùV³ôŒ¹ß–ˆsgGÇ„þIÍ%† vÏÚ ¸gü=h ÆN°û>÷{àýêý g´*h[Ð8’ЫôorFà™vè4õMÜÄù›øÚµI½.S”’ú]'½Cë€Ç'ÔùÏ;ËÆ“ecñ±Vï<+ö+À7txæ +endstream +endobj +174 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/C/D/E/I/K/P/R/S/U/a/b/c/d/e/f/five/four/g/h/hyphen/i/l/m/n/o/one/p/period/r/s/six/slash/space/t/three/two/u/v/w/x/y) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 257 0 R +/FontName /HIVIDE+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +175 0 obj +<< +/Filter /FlateDecode +/Length 416 +>> +stream +H‰\“ÝnÚ@…ïý{™\D³;“HR‰ÄETÒ0öB-•µµ˜ Þ¾s|P*ÕìgùÌèó0”›Ýv—úÉ•?òÐîãäŽ}êr¼ ×ÜFwˆ§>ËÊu};ÝïæïöÜŒEiÅûÛeŠç]:E]»ò§=¼Lùæ¾tÃ!>å÷ÜÅܧ“{øµÙ?ºrÇ?ñÓän½v]nctÕ|¿¤L;tñ26mÌM:Å¢^صvõ»]ë"¦î¿çþ^v8¶¿›\Ô‹…Æ[òüF~¿“­a½ZÎl‡qE®À+ò +ìÉÈ,d1öÌ{ä=óyϼGÞ¿_À¯äWã@çç@‡‡Àž=ûô: œ…yA^˜ä…a­Ìµt8‹’üL~ÓSà)òÌy +æ)œ§`žÂy +æ©|Å»(ÝnJ7…›ÒMá¦tS¸)ÝnJ7…›ÒMá¦t³ËpÿÕ±¶½îsçÚkζnóŠÏ{† ëSüüŒÃè¬ +Ÿâ¯ˆHÍ +endstream +endobj +176 0 obj +<< +/BaseFont /FXYWBI+Wingdings-Regular +/DescendantFonts 258 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 259 0 R +/Type /Font +>> +endobj +177 0 obj +<< +/BaseFont /DUZKZM+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 170 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 260 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 0 328 283 0 +573 0 0 0 0 573 0 0 573 0 0 0 0 0 0 0 +0 0 0 602 0 0 0 0 0 305 0 0 528 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 452 0 539 0 596 0 292 0 0 292 0 599 589 +0 0 403 451 383 598 551] +>> +endobj +178 0 obj +<< +/BaseFont /IMKORC+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 191 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 261 0 R +/Type /Font +/Widths [202] +>> +endobj +179 0 obj +<< +/BaseFont /HIVIDE+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 174 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 262 0 R +/Type /Font +/Widths [212] +>> +endobj +180 0 obj +<< +/BaseFont /HIVIDE+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 204 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 263 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 315 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 683 0 0 0 0 264 0 0 0 0 0 0 +0 0 569 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 449 0 516 0 0 0 256 0 0 257 0 572 0 +0 0 0 417 351 569 508 0 0 500] +>> +endobj +181 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 264 0 R +/FontName /HENIYE+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +182 0 obj +<< +/Filter /FlateDecode +/Length 467 +>> +stream +H‰\“Íjã0…÷~ +-ÛEñßÕU&&-d1?LfÀ±•ÔÐÈFqyûÑñ)C’ÏXçú|AÊ·ûÝ> ³ÉƱ;øÙœ†ÐGo±óæèÏCÈÊÊôC7Þ-ßÝ¥²<…÷ëì/ûp³¦1ù¯ôð:Ç»yØôãÑ?fùØû8„³yø³=<šüp›¦ña6…Y¯MïOiзvúÞ^¼É—ØÓ¾Oχùþ”2ÿVü¾OÞTË}É2ÝØûëÔv>¶á쳦H×Ú4oéZg>ôÿ=·5cÇS÷ÞƬ©°¸(ÒOâgò3xE^wäø•üš¸f¶F¶.É%¸"Wàš\ƒ…,`K¶`Gv`¾·Æ{…33…ss„ss„ssDÉ +æLÁL¡—ÀK8_–ùôx ½^òFN`céháhéeáeÙÇ¢e‹>–},ú(û+ú+³Š¬2«È*³Š¬2«K–. +¥‹ÂEé¢pQº(\ô…üÞ’·`:*•Ž +G¥£ÂÑÑÑÁѱ§COÇž={:ôtìéÐÓ±§COÇž=»9tsò&ñ +ë«¢¬—Íù¹ ±MÓi2_g »Å˜¶ÿrä–}?ÿu*§q2)…OöW€ÔÛé2 +endstream +endobj +183 0 obj +<< +/BaseFont /YDCWHW+Wingdings-Regular +/DescendantFonts 265 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 266 0 R +/Type /Font +>> +endobj +184 0 obj +<< +/BaseFont /DUZKZM+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 170 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 267 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 0 0 0 573 0 0 573 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +185 0 obj +<< +/BaseFont /IMKORC+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 191 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 268 0 R +/Type /Font +/Widths [202] +>> +endobj +186 0 obj +<< +/BaseFont /HIVIDE+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 174 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 269 0 R +/Type /Font +/Widths [212] +>> +endobj +187 0 obj +<< +/BaseFont /HIVIDE+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 204 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 270 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 257 0 0 0 +0 0 0 0 0 569 0 0 0 500] +>> +endobj +188 0 obj +[271 0 R] +endobj +189 0 obj +<< +/Filter /FlateDecode +/Length 364 +>> +stream +H‰\’ÍŠƒ0…÷>E–í¢£1-ˆÐÚ\ÌÓ™°æÚÆ(Ñ.|û‰9¥#(|ܜϜ°(¥i'¾Û¾¾ÐÄšÖhKc·5±+ÝZD‚鶞ä¿uW Aè—yœ¨+MÓYÆÂ7';³Õ^÷WZá›Õd[sc«¯â²fáå> ?Ô‘™gyÎ45n£—jx­:b¡mJíæí4o\æoÅç<ž#¦î5CU“­Ì‚Œ»'gÙÙ=y@Fÿ›Ç±kSWÖ/ÝrÎÏEžâÜÏΘžbåI&ž’ÄS$H€RvIK¹-H‚v ´)д èÚƒN §NqjÉAGP:è ŸP?? ?? ?? ?? ?? ?? ?? ?? ?¿Ób$D$ü%>nk¹N×:öìJ}·ÖÕÄWÓ÷ciFkèÙÞ¡˜K-oð+À(ð¿ +endstream +endobj +190 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [30 /f_i /hyphen.cap] +/Type /Encoding +>> +endobj +191 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/a/ampersand/b/c/colon/comma/d/e/eight/endash/f/f_i/five/four/g/h/hyphen/hyphen.cap/i/k/l/m/n/nine/o/one/p/period/q/question/r/s/seven/six/slash/space/t/three/two/u/v/w/x/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 272 0 R +/FontName /IMKORC+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +192 0 obj +<< +/Filter /FlateDecode +/Length 545 +>> +stream +H‰\ÔÍn›@à=O1ËdñwçÞXB–»‘¼èêö0Œ]¤Æ ¿}çp¬´ª%ÇÁp¿1¤Ûýnßw³K¿MCs³;u};…ëp›šàŽáÜõI^¸¶kæÇÑò·¹Ôc’ÆŇûu—}’ªré÷xò:Ow÷´i‡cxNÒ¯S¦®?»§ŸÛóK·qü.¡Ÿ]æÖk׆S¼ÑçzüR_‚K—e/û6žïæûK\ó÷Š÷1¸b9Ήi†6\Ǻ SÝŸCReñ³vÕ{ü¬“зÿ·ŒËŽ§æW=%Uþ)^œeªñ»ZÇã÷å¸ØÅ\d̲2+ò–y‹¼ûçzÞ+þÄü¸ODT%ïSâ>eÎœ#ÌrÉ\" ³ {fLC CĭüÊüŠ¼bÆÿRn˜7Èô”ð ƒÐ 0 ƒÐ 0 ƒÐ 0 ƒÐ 0 ƒ¼1¿!³7AoÂÞ½ {ô&t +œž½yôæiö0{š=Ìžf³§ÙÃìiö0{š=Ìžf³§ÙÃìiö0+g)f)g)f)g)f)g)f)g)f©>ž'dÎRÌRÎRÌRÎZž7e?Š~”ý(úQö£èGÏ(úQö£èÇØ¡£Ù`6š f£Ù`6š f£Ù`6š f£Ù`6š f£Ù`6>W†çj…µE–—Ëf{ì*l»øvp{º¹MSÜÎË+dÙÇØÁ]>Þ2ã0º¸ +ßäT7B +endstream +endobj +193 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [28 /f_f_i /f_f /f_i /f_l] +/Type /Encoding +>> +endobj +194 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_f_i/f_f/f_i/f_l/space/percent/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/colon/question/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/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/quoteleft/quoteright/quotedblleft/quotedblright/endash) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 273 0 R +/FontName /SFAWWI+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +195 0 obj +<< +/Filter /FlateDecode +/Length 556 +>> +stream +H‰\”ÍnÛ0„ïz +“C ¿ån§|èêôl‰vÔ’ Ë¿}9!)*@æP‡ß¬I¥ÛÝë®k'—þûz&wj»f ×þ6ÖÁù풼pM[OKoþ­/‡!Iãäýý:…Ë®;õÉjåÒŸqð:w÷°iúcxLÒïcƶ;»‡_Ûý£K÷·aø.¡›\æÖkׄS4úz¾.Á¥ó´§]ÇÛéþç|¾ñ~‚+æ~N˜ºoÂu8Ôa> +stream +ÿÿÿþþÿýþþüüþúûýúúýùûýùúüùùüøùü÷øü÷øûö÷ûôõúóöûóõúóôúòôúðòùïñøîð÷íòùíï÷ìî÷ëí÷ëíöêíöèíøèëõçêõçêôæéôäçóãæóâéöâæòâåóàäñàãñßãñÞâðÜäôÜáðÜàïÛßïÛÛÿØÝîØÜî×Üî×ÛíÖàòÕÛíÕÚìÔÚìÔÙìÓ×ëÒØëÑÖëÑÖêÑÕêÑÑèÐÜðÐÕëÐÕêÐÕéÐÔçÏÖêÏÕëÏÕêÏÕéÏÔêÏÓéÎÕéÎÔéÊ×îÊÓåÈÍáÄÓìÀÆÚ¾Î뺿ҹÊé³Å糸ʭÁ嬱§½ã¥©º¢¹âž£³œ´à—œ«–°Þ¬Ü”¢Š§Ú‰›…£Ø‚†“ž×}€yšÕvy…s•Óor}m‘ÑhkvgÏbenaˆÍ\^h[„ËVÊVXaP{ÈOQZJvÆIKRDrÄCDL=>D68>016*+/$%)"  +endstream +endobj +197 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceGray +/DecodeParms << +/BitsPerComponent 8 +/Colors 1 +/Columns 1987 +>> +/Filter /FlateDecode +/Height 1377 +/Intent /RelativeColorimetric +/Length 60370 +/Name /X +/Subtype /Image +/Type /XObject +/Width 1987 +>> +stream +H‰ì×/T"_Çq#‘ô;–碑èy’q#Ñh4nüÅmF#‘¸Ñh$ržD4Úø£èì® +‹ Î3€( ÌŸ;ó™Ùû~%˜¹^¼ß·`¯Ô qüï?ê€:4€"êÐpŠ¨CÃ(¢  ˆ:.  x:Ÿ4€Âñ>¥áÎ,á4€Â™'œ†P4‹„Óp +fžð?4€‚™'üŽ†P0ó„wh8³H8  `ÞNÃ(–eÂi8…ò‘p@‘|&œ†P + §áÇjÂixUON¿y®šÍfËÌi{¿SÍÙ/×ùɉú×@,k §á9rxòõ¢y£ó°D·Yÿvr¤þ¥ÍzÂix.”k—MõH‡•Ú³Šú×@h¾„Óp5/ßmõ‡Õn§‡êc Âi¸Ò—‹–z~ž›úiI}쵑p®rtÙUnàèq¢>öØL8 W8<¿QlÀçöâH}0ì²%á46Ö'œ†§éÌQc ²ÑEI}r¬Ø‘pžšjK=‹Xn¿¨€O»NÃÓQ¾TÏa ¶ëŠúXÚ™pž†ZW=„FßÔGÀ»Ý §áÆ•êê $Ô:T#s{Nà ;j«Ç/˜s¢>Hfö%œ†uꨇ/`Â7õQp"á4ÜœR]=xCšeõq"á4Ü”JK=vcºÇê DÂi¸5G=t“¾ª`½0 §á&œ«.`X]}¨Û…J8 OîB=nã®JêsØ-\ÂixR õ°RÐ,«O`µ §á‰”®Õ£HE»¢>\€ÍÂ&œ†'Pn«-’Ûªúx p[åF=fÔ8ÇêØ+|ÂixL•[õR4ú¢>b€µ"$œ†ÇR¾UX UNU}È[EI8 ¡ÔVX eÝŠú˜–Š”pYéZ=^ÔÝ–Õ °S´„Óð¨êá +d ]VŸ4ÀJNã¹PV ×%õYl5á4<Šsõ`2ò]}ØEN8 ¯¦«@f.ÕÇ °Pô„Óð°*ŽzªÙ©©`Ÿ §áá”Zê™ +dÈ©¨`8 §á¡ÔÕ#ÈT«¤>s€mb%œ†‡p¦¨@Æ.Õ‡°M¼„Óð½ŽFêy +d­¦>v€eb&œ†ïQºQOS sNE}ð»ÄM8 ß­¡¦€@«¤>y€Ub'œ†ïr¦¥€Ä…úèV‰Ÿp¬ÜUOR@£ª>|€M$œ†ª«ç( ÒR>À&INÃTÕc9S?À"‰N÷k«§( Ó=TŸ?ÀÉN÷9WQ@¨®>€€=&œ†o:tÔ3Pªª `¤ §áê +HµÕG°Fâ„ÓpŸcõľª!`‹ä §áëÚêù ˆuKêSXÂ@Âiøªcõø侪!`  §á+®ÔÓë–Ôç°ƒ‘„ÓðUõðrà\};˜I8 _ºRÏN ÚêƒØÁPÂiøBU=:\¨©"`S §ás õär¡­>Š€Œ%œ†{GêÉ äCÍ;ÿ.s §á—ê¹ äDû`ö€”K8 /ÔsÈ‹* 2`.áÖ7üL=5ܸœ%üq U¯æn{Ã›ê© äF·t0ÿ@ÊŒ%Üî†WÔCÈ‘/‹„«ÿGþzænuÃÿUÏL G¾/npºH›Å ¿QÏL GFeŽµ ?VL WÎI8P<¶6¼®ž˜@®´H8P@v6¼ä¨'&/w$( +^SÏK gž’%¼÷<žLÆŽ¹Á”ºâ­ø¯æŒÇ¾o=m~Ë„¿îƒ·±á—êy äÌ8QÂ溜«Lûîøäô½?ó§+x?’îT6Æ®;ô}k2ûÃÒ¸•ÞÈžå`{-lx[2$üzë'|0ñ +¿Ó«w…é8Ë zƒø5Éû㮸;¿{úqñ‰—A’ï¼Iw*™%|åƒ7²gyØ^ë~(ž–@þ ‚î¸{R÷è½Àñbuo~:è{wœ$xì?®îÙĉøÄlЦ"x?’îTF²JøÊodÏò±½¶5ü,½9Ôs‚„]wl~.ùÆãþòëÞÛæÈ"öŠõ]ûsñ‰ç‹ö ·Iw*à†¦e•ð•ÞÈžÜÞ$,kx#µ1Õk‚„Ó¶¼U >ôüì%¸Vì/÷ânðc4Û¶é ì݇¡7îÝÇ«^r?îTÐ Ë*᫼‘=3·½‰ØÕðÛÌÇ#{¿â'ܶ?ÍO%?×`Ab¯xu/î§Þƒi/üÞ—“x ÞÂä~Èo˜U³ùU°©áÅ|rî%~½ÿ.óCÉÏ5XØ+^Û‹ÞÈ{4ŠðÄ«÷µ±ÿÙLî‡ü†Y%<›_U‹~¦˜@Î#$¼?X ‘»9ï[RÕ î֦Πÿùú{ß‹{ƒÁ ë»KpA¶Þoc¡‰WìÛ‹îÔ{xþ‰çïnð~\ÿý7v`}I»öã~øTèmû˜×¯ê½¯ßÙ&äg‹å'¼»¹ÞùõïüßÜzyÿ+·|ðKA{¶çcØ·°ÀM2Íž†7²ž@L– wÆoît´RÇ]Fhì¾õ:½¡7\Ýéóâ[óX½_áýõ÷ÃÙ›îÛøsXÎßèÌ^ú¼|t7œ=œÌ_óðgö†ßŸ£®ÿ2Y\óy1”{oŸ uttöÜo}¡â¬xË^Ìýt—é õÄìk'^Ký€“að¬/iç~8óÆ :kÏD¼ÑúîmÜ°ÓÎLŸüy wÁÅU_æŸÅ¨˜ðÍõzŸÖâçûókßå}¯ôð!ölÏÇà»ÈÆ‚7) Ö4üÆ°a‘ðÞï÷‡O£Áq—òÆYÿa9Çó¡Ö[¹ÂâE/Ÿß.çÞì¿ïzäL?ïóüþådùwÃÓʪæCµ¿r—§÷ .t?ßB?ÄYñ–½˜›Uaþ‰ÙÏåÿGqm3&w+¯\Ûõ%íØÐÿL´ùvoã†ok?…¼àÌÿÙ/›„a# _¡ÇèzŒ¡Ë¡ËޢˣË.»ìºãçEEQL dÁO â<+df2Á÷%?h±p1©Ž·h4üpäpãz6± Z 0k“–á[<œ bÒYx!®å …(žSUªò›<ž^K*¿ä^–好fjØ”y^¶Ç§PL<°Ë;¹õaèÕ5oO- MÙ—;ýYu£™_Ô9…E®B™¥¢YÊ„WŒæ3 +¨PÁÜŠ²GÉáAT¨i••ð#{žÛ;0( îËÛùEÖîžÈ²Í"a.¾·2YÄÌ€¬Ô‚ýH™óBÞORêe»õèz¸{ðÍ‚ÃC#µŸî™Ã6¨/â0µI‹ñþçßé‚l”Ö å÷ÎŒ¨Þ¹]°#R •Ÿ=Дýq%,ÅaMl>F ÃL³ïèÁ…4®YÉS-Ëž(T0·bìEÇž÷iôAJ9ą̈ÌÓ˜RjÀÒ‡Ö Jû62GtTŸÌLo³Hx¦8Ä9 +µoÒ3Ëb€wJçÒ¤—³}ÿÏâJˆ  ÔR¹æGÆŒ@^hæÊu±äØråctMT®˜Óq•Ëž°p‡|J¡‚¹ d/:RiôAžŸKöqt<\K¤Óa`éGm-Ü=Qo@L=õqŽÍå¸,TÓ›°pQ/ÝŸ"åÜ{_Ã#A éÙÔb´ï#K“^Ïæ=<|"ȧÑtJ%P¬ÕÙÂõÓÝ™›ò| Ï®eÕ•1jáù&,Ü©bYÑzG,n<ˆh†mÝ”¡Ñ eÃîœÈbáí²hŒ½¹ ×€•ÚŽ) çõVƒw6ŽTÛ#A éÙÔbä˜n¬I˱qÿƒƒ”!È7ò ÿ¨—∔w W~íÁØèbá¹,cÜÂòMX¸SÅÙ 1žÄŽ¨M‘Ĉ¨%’µp±p}5Ú¬çÙ,ç€ÔÝ.bÖ”…ózéúŠTòcŽ-|¤gÓÛ ÒÙš´0›öð¿,.„ò™tÇϤj/ +áà³,œN>K))¸gͳ𽙇íÏ|ÂÂòMX¸SÅÙ‹–„pëqyp¦?ó˜–ˆvÀÅÂ5_Ôg=—hÄÂéG [Q©·Üj®=eá¼ÞÚXŸ-<8´p{϶_Áé@“gËþ×·ˆ!‚|þÿŸò}¬èAFÜ-üJÈMμƒö1iá…<­ê¾3B8ä›°p§Š²-ìs'q~ðC´Ï}%ŒžåŽ}ÍfL û1X,háî‰ +Ëô†7ÝÒ•˜6aá¢ÞR†‡Gª_æHÐÂí=sØ~§ë0š´<öð¿¿UäsxXä #îN•ŽûO —®y^÷zhþPÔW„pÈ7aáN d/øU5ã5ö&D¤‰ÊP™¶ëoš”öƒžøúOµð'– PŸ׎OJãã´p³ÞÜXŸ-<8´p{϶AytrÐÉöl!¶ëáháó + O¨Î_ø›ð±yÞˆçQ%³h:ÈC8ä›°p§Š²´¸3kÚÏŒ1]&"·ÎªÂŠ§;0( ¢KèþD¢Â²œ;!{õÚ=`$KhÈÂÍz#º[ça pxh$háöž9l¿‚Óõ ›ô6ëáÿ|› "Ègñ + gGšÞ#ê‡\¹æY8X·Ú3içYJBî¡b:ß„…;U ô"Ê¢„qx@­è!>ÔfÐÙ.”éÁ J‚ûq%üäHˈƒ…ÏOT€—ýòR:+V—3#à•w)iK+¬asø¾°Ó®øȲ‘ðÐHÐÂí=sØqe¦³7é-lÕÃÿ¹ˆø!È°hAFfX8;ª8‹ö˜§-üÀBìÓý¹õBžåÈ~çyuÒBL盲p—Šµ^””ªëX³wz ¦_èE¢G¤‰hK^°Õöv`PÜv¤$UžŸ™éDnáO$*À  ¦Tçiš^è´«¶œw¤ È úZxÕÖ{©e½AØŸïÓ”­£ „-ÜÚ3‡mWf:{“ÞÃF=ü_/Ñ:Ù )ÈÈ ~*OžJæYx{,j¹ïd–V#I?U†˜Ì7eá.k½£‹Øí¸`fqÖ#²DŸØ:-”déÇ®eœµ'Ï%*À h?{úy<Òü€{¥É2ÐÂD°JdQv‹pYÂ#a ·÷lzÀ±K7Ò¤÷°Mÿ7AÄ¢õ¤î)áqgybmTC ¼Äæ&Ï›êDí*"òXš O]ˆKÉ,\#wƒSù”Bs+DBìïE¹<ÝëÃVFëY7ûŠ’€ K²ô#ºuu”©>ë¹Dgx’ÞÜš£ˆôDÀ]ðöìé„A ú,âõ^Ô,'n÷S4Þ©m¼CϦ·A½¦³7éMlÒÃÿë¤eò…Ø” N{ ŠRéqAÊïê·»‡]¤ßH,Wqú#~'i$‡ìóöJänìò>î0àX¾45tnÅ¿A[A˜¦ƒYŒK§tPÀ°fI¶~$™ &ž<™(…7€®„&{4'`žÒ¸llRÔ½F½]î£f$ü`¤6Ô¡gÓÛ _ ÓÙ›ô¶èáÿó-“²VüIÍÓ;ë†!ëaƒþ?ß2‰ kÅ·Þ|%háÈ‚lÏÃ}«$‚¬ßró• …#K²9÷­’²Z|«ÍW‚Ž,ÊÖ<Ü·J"Èjñ-6_ Z8²,ópß*‰ «Å·Ö|%÷w9ëÛ!+c[î[%dµø–š¯$NÓh[‰µ±)÷­’²Z|+ ‚ K°%÷­’²Z| ‚ ‹°!÷­’²Z|ë ‚ Ë°÷­’²Z|Ë ‚ ±÷­’²Z|« ‚ K±÷­’²Z|‹ ‚ ‹±÷­’²Z|k ‚ ˱ ÷­’²Z|K ‚ ² ÷­’²Z|+ ‚ K²÷­’²Z| ‚ ‹²÷­’²Z¼ KV–»W|ùS)ÝgEç²®Ël~ +™Íç{¸o•DÕò Iò,2n–„nÓ‘`ÄR’·'ÒZfqš÷5A>ÞÃýj$‚¬˜w(5¬Ê¸ù+ #¾‹O¤u¶ðŠ6¾)Ñ‘7ñéî[%dµ¼A?bš¦6îþÆÂáˆ/6ã©´®¾§q² “'«C™|¸‡ûÕHY1oè¹õo,ŽøB¤_Ë2vMëjá!åoªsC­ùv>ÛÃ}«$‚¬–wÈG|8FÆÍßX8ñ…H3¦-J]ÓºZxé8îwh•#ßÎG{¸o•DÕâMR~eáKc±pçY“ãŽÏÕ5‡9•#Ûç“=Ü·J"Èjñ¦(_láB²çêšÃœÊ‘/àƒ=Ü·J"Èjÿ×Gi7Ã4ýQ.`Èis`Ì4“Õ>$ž(â'ùÏ$M&kt´ðA{t ‡Vôö˵MU +£ÿÿz-+ÍÒR Ü,«3àô®/3"—Íöa¯sNnMâ$ÑË›`ËÅ“Uòi4ßËvî¹H.ŽÓÞ’>‰’šÞɽ–…¿a­EG«¡!«[6IߌJJ耜dGH7 #‡±)9³Ñä’šbÎø4ävR8zŠ@Æ›!N*OÒU–}ð÷?5›êÎcÜÝجW¹¥V ¸– +dÌv#(ŒeíéÑnÙ'îä”wÑu’Ähšè‡›ˆÒó}˜³~ Ì"Òš?t¥¡yðUlÖá,xü-‡!-„mî?Zë‰75üù¬æ©wÐ!W9Éuì§Ôö#¦ìr]Ì¥œæ*.£Žž*RF´]›ùMÖØR‰-eªƒ4§Zh˜?ÕòTΖµ¦G(ܲ£d–ûy§‰~¸ µMk˜E¾ïGðlÕá`ÇqÖ™èÛ¶¼°Úß%²õ@ï·ÁÓWöª)ˆßFùõŽê…‡ØUð &ã-1»+ö—ŠÝ:;%fvA¼œòãYNãꩇ'ÿéYœWqeµîãRò‹nFWêê3»Ã¶ªƒSáÑ¥iX׆’Í–µ¦§tîH0Ìy£Sž#G§‰~´ &ì{IáÑÆjyB³Óó]y'çYŽÀ÷°Q‡ÿÿ:ÀFqufÐñFÇtTÊÖžt;*”>íé‹–Û+f:òA” ¡s©¶#%™ó;e=ô£óôØ]?Nã詇']JõÅâLïÚ¯s·lˆ†ÿHÆpw²ƒ[áÚ3w,kKOéÜ‘†–#k§‰~´‰„´ãn˜éjy)u_¨Ý€/d›ÿ¿5€ ã8éÌí(Dj¶.–­]&úÐ;a3ÞãFÜEiãu|OsøÚâNŽ`¾¤CNãj\ÊÑSO¹tŒsG43ZöÁ”7N”P±že‡nMOéÚ‘Ž¨5‰“D?ÜDiÓUjùÅòC|%›tø¯—E¶‚ã SkÜ…˜÷¢UÉç@4Gäd´Ö‰ÞÛ0ÅbX)FŒ×Å(í„ŠvšäÚ#sö4“.½*nÒ»æ>Æ÷?)¢èLÅ);¼¦p{zJ׎t´,Ú“h&úñ&µzML…WÓ®à;٢ù(°çü®é0î4s]djÖÀ¯„LYÞRÌn§%m‘¤/K}ÒѨöž–ðô8¯ó~úûŒ(§ÑùïÆ‚“…žP¸==bŸ³éÕdO¢™èÇ›P”Jëzä,Ÿù´/øN6èp€°qsÝQLmç…VÎE¸£ÿ\gB¬u1I_Ò‘u.¸ ÷P{OKxzDµåVª½O‰rZñA…ÏÓcÛ‘Qk:’hÌÿx +‡ÂÓž¾J§½ÁW²=‡{,„㔡2¾Î[;C3•ðIA'Mèߤ— +ÃZÝWÒ—í$¢ÒÙÓ^ +Ÿ¥Ç¶#¢Öt$q½Â‹K3.kS8ÿ*4Ì}ÀöþŸŠÛÇqÈ ‡ÔÖË!Ñäǯ=ÿ‡©ûqit“ɦwךÿÓO"Ú;{Z Aá³ôØv¤£eΑĵ +/;µšUáQvã/oYÀÖþ +ÇŸ^3ëy+ÕI  öi‡ÿF£]U_1ŒZä,è +¯sÅ»§%¼>KmG:D­éHâJ…Ó“®*y^»E»šðÝ4ð…lÌដ#áã8â†CZBª…VõÃeøoOgM¢„ÊIÜøÄ0ÃÅ&>¥ëéËÙÃ$¼O(\Nð¢Âgé±íH‡(…;’¸NáÚXÆüßÒ­ð(J*ÚÖ%K¡/a[÷UÇ ×Sg­Ñ…«p“¯âŽu/¹M'«Å%“!}ÙHù+ì=-á½­ðVÓ­CáêÞj]vžÛŽtˆR¸#‰ë®~>M®"9ØÁ7²)‡{+„Žã€Sk4ñøADÝ7ÌBmARñå†3óï•“6vÒF¤ð%§ŸÞ í=ð>¤pÍ¡IgQx¯tk.»ÛŽtˆšÓ‘Äu +¿‹ß†Âȵ©N³FðlÉá +#ÛÀq¾i©'×ARqË”,Z•Y²^»À^eŸÁDìeªMƇ%DŽOè…sôeB»V“åí=ð>¤ð³ÔmÒ‹Â çéË.¤Ç¶#¢äêHâ:…w*Y­ÊÕÖ4™û…ÈÀ±!‡{)lÇñfŽ" s[LÅ"ʾi–Šý$ZŸ¡[«ëT£WÞA^Ÿ¿^³K«”MQ,ôœÏø¶ÂÙï .㟛¶Ör‹mË.¥Ç¶# ¢îHâ:…ÓwcÊö r Ež6…Ú­üe¾œí8ü·ª!›Ãqº©5èý°?—5½â‰»áÄ,ì²IÚúp¬ù¥T½(ùÌ}²aØŽµ7eY³þÒ—1_¢Üç9[­Yè9Ÿñm…Gôǹñ…úÚ¢ðãG{š.»”ÛŽ4ˆ¦p{×)üÀ¦ØçûªãY‹f‘SsßË<ÏÏ´Ãe øZ6ãðß©…lÇáfÖ¨E~Ý­zhå4êÒÉÚyKbL6ü·ïÇþ]Q(1kóH‹Ù{Îf|_áY'¶°+, +Ç×ålÙ¥ôØv¤ šÂíI\§ðè"f¸íT´È“^®qSŸ|=[qø³Õ €¯Ãq¶¹5ŠAU,Z©mtUGq9ôè®™1šYéb<Ša»AXןhOÈYö8 ÇÜNÉrÏÉŒzD•Å–Úû„Î&Â,”£”/Ô_~Xëy6lTìÎh~œËŽ$®pkÍD?ÜD|¦8lj–-òl”|wŒ#$qøÇËÇÑ/~ùñ”kJòlÚ1É»ùÅ.3:šÃòSž}tÄyqÌsS0öžÆŒÆÔÓñ“÷iþ£¨ç‡,22¦Ívå¸EÙüLzl;²õ‹,ILœùsl"É÷%JõUä,šÓüëog÷]%ÇÉì =à° ‡û®’‹ã`ÃQ‹ =௰‡û®’‹ã\ÃQ‹ =àÏ°‡û®’‹ãXÃQ‹ =àï¾Ã}WI‚Åqªá¨Eð‡Þᾫ$Áâ8Ô78j ¤ü%Bw¸ï* @°8Îtšçɯ‘mô€?Eà÷]%ßµàŸ°î»J,¾K ‚v¸ï* @°ø®€Ùᾫ$Áâ»p‚ `‡û®’‹ïºƒpî»J,¾Ë ‚u¸ï* @°ø®€PÕᾫ$Áâ»h‚!P‡û®’‹ïš‡0î»J,¾K ‚t¸ï* @°ø®€Ñᾫ$Áâ»`‚"@‡û®’‹ïz‹ðî»J,¾Ë 0‚s¸ï* @°ø®€ÐÍᾫ$Áâ»X‚#0‡û®’‹ïZñ.EÓì|Çð>IÕÜïM±z\êîÃý,ö”­Iä«kS„åpßU€`ñ]*Þ¥!¤þÔ\YY$¿;PŒïÖ} ¹Þr)‚w{™O~–0O™½Õ>ÓʵQ‚r¸¿ú@àXï±'­öXt¤ÕL·¤ËÿoýxžOº‚Öæöq¯Oié‡èšç­ דæqDðn`/œÂç)3X¡ðµk«„äpßU€`±žÞ#}‘©GV´Žê17ßú僮Hé¾î¿:pdOÇô§Ñ³IUë ó8"x7°× Máó”™<¯ðµk»äpOÅ€ð±ÞŒè-aý®êmIo!ÎsišôcEä >芤—s=Þ…ÞCø5!Íšþj=aGèïö:¡)|ž2“ç¾öcm˜pî¹H.öÃ{×ë»w>–Ï‹å™vÍ?UBžá“®HÇdøïñ.ŒjàK4Oûcºž4#ô7{ÐnI™Áó +_ý±6L0÷Y!ûÙ­ugW¼£ôBL/4…óÔ“ +\ñxŸÜ'õÇñå‘SŸüö°œÂ%ï*üõµABq¸Ç @ØØîž¾Ù‰‡–ú\«pìûjG ðÕ,þ&Z +_Í» +ýcm‘@î³B4ö“›ÐBU‰ÿ éjBZñ®Òþ’<Ïc}$™„uù™.[ÚlÓ¤ùìGíÉÚì® ó¤/ÎË™íâ‰}jdöiV3¬`6Ëç ®S¸åKüc¿ ¸Ue™6üÿÿ¨éÖ²²¬Lã`@]ßsB{çZ뜨à £÷-îB9ü™³eU"á¼4ñ¶ Ï@,Œ_­;° ´¸iÉ•Õ {!céºÍÊí<á{cžR! bÓŒ/jýú°á4úe|úÄ؃ÿcJ¦:­vŽƒÜÆsÂøJæÊN¾¯&ò'Ïê™o…N]œ·b|€—çw€= +Ì‹VFšÃʸ<Ö«b¶ÎñÆ©àVVüyÕY|¶‘àCõ¡l9õ¸Œ +$šç ¤n%ævÂ[(ƒÌø¯¹õ2Ðñ-®|GDÓ ´ÅŸ9Æ©˜/Æ9¶—,oÅJõ­®Zx8]¯Yáv£OøÙ„‡3‚ pÄ[š?§³¹0íÙ7Æ.9Ó¦,~Ž^ߘ(ƒÔÖÄB™kžS8.–ÅUŽ¼l­ðÂM•n¾´Êÿ úBßÂOÚÇš•qG÷ª˜¯ÀÝœjóèlf9a/°lMƒÜùœ±ÄüN¸ ׃9{›~ö¥ ¤h‹?s柊Të,(Æ=¶VJ7£W]¨`³ÂíFŸð}²gAàˆ—´ÕGzËöÇ´gw²$×\måá}ÃáçX'÷:—üýâŒZ/"?®ÕE(]?n‡¸ÀÅÑ›=-¥@ÂÊʵ¸kžpSs;·Ïã&ö?ƒká9é.Õ±éÙ}eÜIÇ*Ôi @˜Íðâ×~LÅÙ&ÆXoêÊö +íÛæÑO Yx$1¿îBAÄ}â†Fn1K~óÐÞß"t¤Y¶ Ï@´ç^µÞÀ‚b¼âàJu²Ù"óa\¨`³ÂíFŸð½²ÿ„Ž ~þŠžÌÑGï;z¥Á¹´l.èýx¢5'ºã8$Ô^™?ÿ©·S"ògü8r»¨À6ð;‹"ƒ á„h³^,z“Ý…M9Tr7ÕZqí3uµ2®ÑqXÅ‚:õb);í Ôý›ÍÀôç>™¨w´Œzˆ[x,1·îBAdÆoñP³Ñó©¤c<ÍVü°Ú‚=ŠeÕz ŠñŠƒ+55Cºu3¿P6 Yáv£OønIïáÿ©äÄ/‘J¦P•Ý•gŸ¤—üœÜ× š$ÌTgö– :¿N?oÜ Óýl(¡À‰‹GÌŽLM|àñw< ¸Â»8nÈçëÔ7v:³ìÀ÷kC™ÍÇÉD½÷i0¿Xó-¶p¤ÞB@Æ›ÔGÛG'Hi ö h–Të—¿ ¯8˧Òd‹öéhºجp»Ñ'|·$÷ðo(!Aìþ‚¾Á¡r(¹Á2t%k˜4±àãÞ6’<¦Ÿ 8Èh`®â óL,Ž_Ü«ÙÞJeÏLmy:bá· g&nȱ¸SžáhÅ”à³ðÑ“ÕÒyó-¶p¬‘…‚×ÌÍ¿ë^Ñ4ý¶ ÏB¸Zo`I1^qp¥zõåPë”c ešn÷ܾ7R{ø?•@‚Ø3™tgM«^ÚÃgòlî9BñÚI½kDÅ³Æ 2 j)lõô÷‘Å1áz`xO•?=èk_®…‹³˜ýÎÇ·ð@úFnq]Gï‘Ù •|=·£§}jµ…cˆ,̸ù-}0M¼-è3€®ÖXRŒW²RãC~µFçÓÍ +·{î ߉=üë²H{!“r«¹è—ö5*g1©vÍØGlOZd²6.¾m¥xOjÙcBáàÅê#Âlئ4[ëæ‚ËòçVd3qÿÿþR*.y¨«ñÙ ,ná½Õ +¸Ô±ND +f\€€uÌÂñ¶ ÏB¸Zo`I1^q¨…›†ÅÊ4kA»†´þmU$ˆÝIõÔõ¿Œž]OZ¬”|`¬4/výxu㘵uÎ\RØbç…CͯƒÊéY¸È˜ó<­Ž±ðxúÆÁªí¦ o¥…»“}¼[máh'…ò&ˆX¸›&ÞtfÈlµÞÀ¢bÜcÜŸãwêÌBY€f-h÷ïÔÃA8üåÌ}ô¯,“ÒÝ*Åââv˲’±A_Ò˜Qkû8sI= 5?wÕ:qÊ· ñVŸKã-|®N}#³¼˜}"³¬ÛüÉì¨VÀ¥ŽvÂ[(d‚ …ûiâmÁg^S­7°¬ç·pI×NgA»ˆ”΂À/çIô9xeG%âÿòo2º,»Çäúdž[s®ª6hámeøa°p¨ù½ÑíäØÊrŽëâ†|p¶NhW“E#W,8›+@&³£ZWX¸ß w¡° BŽ¤‰·%4óòj±EÅXǸ…?Ušs eÍZÐî_"¡‡ÿs$ˆ½"_β“¿[èàÙ]HR¡E»âäÙÃØ™4ù³Á­­‡¢QCáæg¹6jáY–ó/6ä«â|p¾N}#_Æ›É~Df3°ø¢¾½e\máh'$f¡Ð Ž¥‰·%<óÒj½åÅ€cÜÂuÃæJšµ Ý?E:ÿ¢ ľ˜ÞÎòÜœ +û…=ò³y­uùðÚ5Ñ’åZ›Þ½Ì†À¡áPókÕvgš£Eõæ§F°òØÁu‡ª¾Tæ|^•Y?œuq'ɪkUÈÙ*×ø„Wk’¥q­QXÅ\¹3Ýùh­S¤ +ôvl²¬äEåî þXbN'ü…B3*ª?Ù<4ñ¶¸3¯ª˜+Æ9+%Ë©.V¼øBÙ —î@¬Ý¿È÷=<µJÄfI-A쌯{xj•$ˆÍ’Z ‚ØßöðÔ*I›%µ±;¾ìá©U’ 6Kj- b|×ÃS«$Al–ÔR@Äùª‡§VI‚Ø,©•€ ˆ=òMO­’±YR A»ä‹žZ% b³¤Ö‚ öÉ÷<<µJÄfI-A씯yxj•$ˆÍ’Z‚Ø+ßòðÔ*I›%µ±[¾äá©U’ 6Kj b¿|ÇÃS«$Al–Ô@ÄŽùŠ‡§VI‚Ø,©€ ˆ=ó O­’±YR A»æ žZ% b³¤~ÿ ‚Ø7ÿÞÃS«$Al–Ô¯?A;çŸ{xj•$ˆÍ’úíÿ_£~½ŽöHóìW險0 }ÿeQEA°7…¶tI€zÁÆžo~@“f9•œ©³²’kÕ4U¾BäõáC‰Kè)V:”¿Šµ5ü§§d@À¯ÅOüžØyâkùU¨+Í•†±bù<ûVï"œ­C/Õ‡’P¯ñ*„2A7òkûVÖ👿Ä'—•@qÚynÙ:c‚„©öµü*|JÂk8Û¶êÎwÎÖ¡—ˆúž„{•ˆ§P!”™º‘_Ûç°®†ÿô” øµ ¾È£îÓäžþ1¯‚”'õ´ü.|HÂùiÀáÄû…8[‡^*ê[îW"šb!ÍDЭüÚ>ˆU5|½ù°qdnz=wž†ër³á^U©|N^ŽNZþ+áâø„—ŒUâqΤjþ–„û•ˆ¦BH3Qá:tlkjøš0 `Ó ¾Ç\˜vÙéÎÝÚl®!>”0ßØq±ÑÁ2õ’žÎ îF[þ+áÒø„WZÐE8[Ž^<ªAú[îW"žB…Pf¢ÂuèØ6VÔðŒÛñ9æšißÂK›Ì7à±Yl2°5õã ?$áô¼xÐ5Áþ_½0‘1üw¸9¬§á?2¶âkÌuSr‡·»‡¡†çÅ.),H¸?^Œå‹],Høö±š†ÿÈh ؈17Lq ¯ûù†«Zud™-Ŏcœe»îŒÎ}Fšf'Š¢Ôôt¾”L2'"GÖ×CJxìÖÛ…ßÍŠn{2ZÂ)Î&Žaª0š¤Y`˜„# E˱»a]¯€ªÐI¶0ÅZþ“1 ` ¾ÅÜ4™”³ üÙw5{%QRÂõ5å0ÝÒ[ÓrU£´âžyÛ­½†JóÞÆN*Kݭ߳Ȱx&JJ¾Þ^û%'a”–ÝK[8ò6/böÖv¥¦”„»õ‚Ööý=/SÑ-ÏîÿªÍLÎ&ŽÁ +âF“t×Úm´+êþ¹ê.(q%TëÆ*ég]…PNTø&+i¸3¶zŸbnš¸*´ó <Û—Ši.Å¥Ùižm¦y^º¥*Õ*-„MÜŽ’añKtžUW°“ðø2^5ÌŒØ ¶V9â®ö4)ÿ‘ŒF·=ëxgp6q F¤0š¤:¶çÄ2§y¯¢¢§¼oÜFPBU‰v9DwëúHùzÑñ÷±Ž†³€€Ä—˜[¦+ëgî,Cü”º®=p©‹;pm?íøhl +@ÅM±ò<ñõ'Lü{ÕY*À^Fésð«OS÷†YB啨xqχ¼kFvÂ,õ9; »™ýÌŽµò_÷+/¹Å$¼~©z)Xü"w¿dç_ŒG¢»ž}Ohá6³ÉcÐ5Ë-Œ&):€“PÍ3'!VÏ­VrÊ5Ò¨N¨,Ñ.‡êa’púwèGÇ` _täü%bn™øüÍg’R®éè.Uý%ˆÛû˜°úЛ¹êž”狵°žv—#¦D ÒF'ÏÛȼu$|~"»Ü3å9¥xê Á»Œ EøFäµ–ü!ë®}%BLcÕa{Ïá4æ<óŒô˜ælÆ1 W\7MR·ª£¯^¤©D!ƒÚ§ŒŒN¨ f—3qR:뤄#¾CÇ7` _täü%ßan™`RõÃoÔN«îõƒÏÌZ c˜àmJ•½V×-îÙî•a£“KƒÌ‘œu‹g"áÉo‹Róô„w%ŠfGäµV¢ +îPšq´=ñP/ļ‡«\ÄëÅÂÑ‹v ÒK7Fï¨ë.ƒâá¯[?Q©V„)L÷×5F1±ÔÇü¸„«zAnËLâ)Žz¢>ÂÙT/ÆÿNºQ’¢{è,ç³–[9ÐS6@*w”Ct§~%ÞîMÇw`i ÿ‰É° ß`n™ŒpÇÀ€ud3²fæC»æ÷ªîkñð—#>¸„ÏNDHx×Ä8º ÍŽXë|LH¸¬·¶Ž©°=õè®'*á#œMõ2¼¡éÆH:žÁt c5æÁ÷°”X9ÐS6@ªv!åŒw§~%ÞîMÇ—`a ›`_ âÌ-\_X:ÓC•íˆÆÌærѵxH8Ó$ÊÚõ^"J£ý³Ûòt;šѾð•Dáú¦—uLG2:ê‰JøgÓÇ ý€¤£IŠRX?DÑ‘ïO{í¾ 9ÐS6%C$Ü)gª;÷¨æJ¸7ß‚e5œà ¾ÀÜ2Á=¥™kH`®Ýˆöµ§ì`x²öZœ²¬ô’pHq!â¿—ˆ”ð(:”S«¡ÙŸø¥Ñ)\¯ú+³;::ê‰JøgÓÇ AÒ‘$EÝEõE׎Ôg'rÀÁÉΞ²Ñè‚P}—QÎdwêWòŽ„{Òñ-XTÃ?3 6âÌMÓžÉ!7Çãš9cföc=ŠNàYÄÝRá%áÆ7w½—hDÂáŸÞQ›kó#ª=!á²ÞÆ銎z¢Ns6ã䞎#IDlxc¯¸{.»ñR;zÊF£BÍ‚‡r¦»“¬ûK¸?_ƒ%5üƒ1 `[ ¾¿Ü4ÁŒ¢<Ç°cr$jÐgf CüÌ`>ßÅÚ˜„—i»;ƒ•ðù‰L wnO'gq~Dx¨Õ¶q WõVCtÜSÿÁõD%œælÆ1È7<]—$þkHÓ>lÆå<ø0Ò=e£Ñ¡ÖïF•3Ùb}JÂÝ +ýéø,¨áŸ‰ñù冉¿Õö6¶"ÂЫbmÛA,žÅ)á/M” ®8/ó†£Ý7iJa$ÔÂ_ì…™/LÝ:£´Å$Ü­·pú£¢£ž¨„ÓœÍ8ù†§œ.èê9ï-1´¿/‡ÀCô”F„Ú.Ë¡ºsY•p´Â7èø,§áŸœˆ›ñõåš)ÙÏ^;¶Uæ{ôC3®¥ð·j@&5%áÆ ”¶=œ’[™C÷DšR “÷ÉØÑX˜1jM "án½ ÆÕ®Žy¢Ns6ãäžNÀ!©×M(w/Ê. ÛÎé=e£Ñ¡Ž„‹r¨î\ÖG%­ð :¾‹iøGGb@À–@||¹2%yËýòùŠ/5øÌd¿±Ä&g<5ÝMù(Æ%¼bìkQzÛÉ»”‘F–„û'Ò”BK˜V¢½Œ ¿È7â]Ò´ïj+)bø9ôùõN)FžDÇ&áx…þt|–ÒðÕÆ_@ÀÖA|{9˜*@Ý{µÇYµýÆÄ­k =ö×­(¹ò ?ñÇcv¼vÿ à~æ–¢¨/†_)Y]W>–“Ⱥo$Ò”BKS¸)²,»Á¶»ÙGÄë#r­x`^wõÞš¡Þ(îŠ/ŽYÆû¨F¢cž¸„“œÍ8õæ¦!©Gµï:é~5W'*qÊ.á8¡b—SÕÂú˜„ã¾AÇ7a! _fÖüAŸ^®û¼ÊtžA½p±¸»¡WÊýõ'êïSžJ»!ÉÄÚ`;´ªŒ«ay/‘¦ZÂ䥒&áD…þt|–Ñp€ƒøò5ìŸežÌ1ä èÃ[=Ülº¡—÷»¯±\/ýÊ-N”üÀÞ‹1ú!y°lÉ£¯£ÊÌ]ï%ºªU#á^Œùö¬"½ñÐG|ì¢#l0ã€)‘õÞô,©ÏK2Ýõä_%á38›>ýÍN7BRß=Ø^¢0~—m±¨Ä)›!Bå.§¢;„u•Ø} +üÇ~¹.¶ +Aøý_Ôh45­©©I Tn²(FO´u¾?UÀ…]ÂL™ZŽ}±ˆ‡ûõ €³ÜYM2C±YÖ»t÷–ìóË¢iQßÇYÚ žŠSLô¥¹¦z^œ(3—¯'ä™ðIú š1ʾ²¤ õ„=ÎŽµÞvîO#Ê@ôÞHkh@ÍÆ·Á~ëO7P¤¨‰©S;f™'ªg—³~Ád{¿ ú+g9TvTÕU÷a`…S˱/–ððµU€Íò¶“Ü9ëš0ξ¶J°YÞvaáì’ù¾¶J°YÞvŽaáì“Ù¾¶J°YÞvŒaá씹¾¶J°YÞvŠaáì•™¾¶J°YÞvˆïïrÖ·Mdž‡¯­’l–·á$Ëâ¿5 ”Y¾¶J°YÖ>Ù€=0ÇÃ×VI6ËÚ° fxøÚ* ÀfYû\öÁ뾶J°YÖ>ր𲇯­’l–µO5`/¼êák«$›eíC Ø /zøÚ* ÀfYûLöÃk¾¶J°YÖ>Ò€ñ’‡¯­’l–µO4`O¼âák«$›eí Ø/xøÚ* ÀfYû<öÅt_[%Ø,kgÀΘìák«$›eíÓ ØS=|m•`³¬}˜»c¢‡¯­’l–µÏ2`LóðµU€Í²öQìI¾¶J°YÖ>É€=2ÅÃ×VI6Ë{Žk^U§ÿ¾ø¿áßÆ.Óæç;»KxKLððµU€Í²øÁL‹±#$çá5½Â¤2-?ýþmw oŒPÿ_êÀ¯Çs¶rkÐ%üPÆOJ_’ÊkU%Ãa%”…Û°ûqbÇxÎƚ̥Î`R™†K²àü %·EF +þ‡3ß¾´êðgð­¼ë:œJî,àN*IΟ±Óø’…óy³á°Ÿ…‹¿Çì|‰ÖYhGpÎzMÖR_gZ™K²àü %·EF +þ‡3ß +aþnUà×à9Y¹î:ñÇÇ̃:ß²pAZó—:søRy©L  ·ùÙo† ¿.ðKð¬Üèºñç™×½•-<Š¯üí:¡cbÎáKþf`áëâáï×E~ žs•]þœê®8˲£=š7%t>V8aO*‰‚$³\“yT|0ÞG-<:Ô*‰ Ž^ÎÖÔDªîR'U)¼Lþ©]’Ž^I=Q=ówPûºqÍøîJøòF|1:ã4£ödl—LØYyж‚™xøûu€_B{ŠòêÉê«!9Óv&ž•’¥·æ³û—š”MK]´êÇUñÜõÄßÂÙ5±¥Ò Q±gÅåCD¹tŸ>õs;lòýhÛ/J™Ç-<údr AVÎé:K ©’Ih™*Uz uëMNI}Q}ó·}TreãY呱9œ¼ôšyˆ˜M +ÇR¬íÑ´žîbÈO<À·V2áþÊö,À¸‡38BñO÷¢}0gÚÎ +þÏ-?]Ó‡’ºökm§Çºë¨3ÓÜü“ä$WMcb,±°ÂêÏyÜ(êÍ©13àxü:¼ÃÌYA§ê,5¤JÁeòWújmiJ—ÔÕ7 ‘Ü·n)û%¢6Gÿ¼d§Œ)RÈk=îÒ=>ÒОµ’ ;+ÚV°£Î4â•êMÞêL;;ܥǵ#¯_Ù§ÆGsŒ¹Þ>³Sñ`ßÍe,q«y^/âæRkopC4Ÿp{º?B\ÛKãµË[ÅIÍ°BY§éî®´Þ|Úaæ¬ð¥Ú_jH•4ÁeòWZXKyΊ{³Œòà))]|Ïü'9a¿uÅëÿÔ1$äæDäGY\]}:¦HA,·ÃYÊ—^—ßMŠQà:.™0±ò€m 1æá³$€¿ ??úí)o9“v åÊÛg>òÙ>ž¸(~Š‡B)fÞ^»”±|²N³æÖSzCˆO¸(ŠÏ“‡±Þ¨nr*lÌn§¶EÈ÷Ùî4ÑDj9y`‡™³ÆŸª½Ô*ÙÓ—âa¬LÞéÏ®‡µ º¤TñéùMúɱ[,gëbHÈÍ´ÿsä5#è˜M +wážbc„ÙÆÝ€Sà:.™0¹òÑmK1âá3E€¿KÔÞ.$R¼rþœqÎ…Ð9ysä—¯î‘ß]kq¹öÕLËXµwá"Òˆ·R˜öNFYx”¨¦›º^†Xø‡Ìn°ÃÍYãMµ·Ô*)ÂËä>WÞžr—9È>¢¤DTÏü&ýä*yå·Ô:¶†›#&µŒ?©OL#aÀÒkŸêëÑd\OÂÔÏjt[Áb {øÿÓ?~9üôÜW)^¹ÑVKç8ÊóqºêoZ¤±œ™º EI-¥’ +!>yH+¸k7f¤…kø¿Wo§ãÔÜÞ”ãù;œœ ¼©ÚK ª’"¼LÞé/ºƒÛ×Qö¹%¥¢Òó[˜ÉÍ—ŒiWë£6ç,wÙ á41ÄÎt[}sŽ‚ÐqGÖ?«ÑmË1èá‹H~xjãµìT®›*uß(´¸5š·mufEi,¢C5V22Ârà½6bá…)棞°NÃ;œœíùèTí¥UÉ +ª^Ëä¾ÔÙ×ÒZÈ’ú¢ºó[˜Éq¼Y+ø&³26‡ÿçñcõ8 ž˜F +©±ø  ãŽ&¬V£Û +dÈÃÿ£ð»‰SÈËgΟ‹âR {¿J?ãâ[f’{k| ¿ø=/‰>‰†±hÉSRI…°ü¦¤t¾…‹kX>ÚáälàMÕ^jP•áeòNÿ¥|ˆÿ7ò<8) 7u¢Òó[˜ÉU–i_õfõQ›ãؼÓà‰i¤KÈ) 'ÐqGöX8ùË 2àáo‘B~#Q£Y +CŸ‹¹â)!¼õ¾-äH~¯úQ +ëÍP%•dˆ©ž_«.Î ?1…;VÎýTªöRƒª£CË䛞'ðl]ß;É’RQéù-Ìäj«Òe§F‘z›óìïÓà‰9ÛÂé¸þ„ŸÕø¶‚%ñ{8Ðð“×êMÝOr&}Ž«KÛÇgïÛÖLÒ{órï=_ÖRI†˜fá…^î ÿ¨$FΞTí¥U‰Èk´LÞé¹»<òCt,ÕHº¤TTz~ 39Öý»£J÷´Çº›c1Þ bζp:®/aâg°­`I¼Î4âä|È—G,SΤÅOåìü©Ì4G9øT6_Ÿš)‘wò¶C†˜dáb®úRœ³¬œdá?RÙ:Œœ{©:Z?^%Å„2y§/õv–‘[Ó¨ôü½ä¾t·Å›5”Øû‹ñs¶…Óq= S?« m âóðÿ"}üš““ÞšçR9¸és&¯¤Sý,b1¨Ž»A°Zv ^ÈS,üÌ[‹CÓTL±ð”É%„tèœCRµ—T%Å„2ù¦çÿ=Ú+d}6á–”ŠJÏoa&Ç(ÝSöþÓ¡6çÞŸÔiðÄœmát\:aòg¸­`9<þße€ßJwtÒsñ‘G)×]G&¥°òÝM£V›Ë¡ÖÒ¼¡)©$Cø-üäŒ1\c’…‹RÒàsHªöRƒª¤˜P&ßô|pçEñ•éÿÈ’RQéù-Ì5_ûÑ=÷^Ý©Í¹ê ¼ TÌÙNÇ¥&VÁÛ +ƒöð÷é!¿ ÏIÊ.nrusAáâöŒ=Aýêþ6RùÅ#È +’ZJ%ÂcáOÆrg ÿûÙ5M±pñv›Ð¡rIÕ^jP•Êä™þðd55Æ-)•žß¢—œe¬÷ µ9—þ¤Nƒ'æl §ãÒ “?«ðm‹Azø»Ô€_‡ç åF—xn”,~ÜMù-çCü•Â3¥°1ï뤒 á±pËîä˜ZG½[xÌmƒ=:TÎ!©ÚK ª’bB™<Ós gEß\È’RQéùû±Tr)ñ-_~Ì ­€ÚœTOÅߪŽ9ÛÂé¸tÂäÏ*|[ÁrPþ-àâ9G¹Ñ%<¢•?qQš– ‹KªÎèÄ-§¹Ü(a½²ÎÓ‡˜¨ŒìßÄJNþÏ3èb"¶ÂùÜé`¸áŠr§Ð ØæËŽØ#_ÚVâG4üGZA|È1*Ì¡«øÑkC,%¯)Œ•U×7:¡'mÉ»Š‘[?Y5Ö\š¯ËR(¿+mðM ~Ö7gsÎQ.?°Ã¥Wß —²Ö yv‡U~Ί™TíP×TI³¶L¸û^Ÿ&êl¦¤Pñaÿ&Vrò2Ê›êxª¤Þí™àæd¼wZ^¤8&Ð ØæëÛ#_ÚVâgð5ü»Ý >äæì¹—áp5ÆRÙû.9ðHú)º±¦±®(´6x&P ï{&ÇÔœ›ò—/J¸âY¥ë€œ'æRµB]S%ƒ•eÂÝÇò +9ýG»t¦¤@ñÿhrúR:mN”wjÅ~Ú|]‘XÁ„Áȶ•ø!< çAÀ ‡¨MOÿ½«ÏSÿ{œ{!ÉÆÞ×b5wê–ùÐóî_Ñó«²æš0—D£;Ž=3·æÄ硯^ãDM5 L$J'U‘¬@s™KÕ uM•LV– u/Þ߇¨A¦‚“„Fè“Jáb)8I8A`„>ªA¶‚“„Fè³Jaã(8I8A`„>¬A®‚“„FèÓJaâ)8I8A`„>®A¾‚“„FèóºcʺÎkÕ»Ýß‹bÁê/åöG‘\궭‹Ðaì@ÁI ãGOcVÉÖ‘ Á´œ—Û}oÅ÷ÜÔœWß0 [U&Ô0btW» +°—øŒ8²NýDHÁI ãG£hOÍÖ‘ Áü²„o+Éj ßd¶ªL¨aÄè®v`/ñq4â vu÷]P@' 'ŒŸ<Ž©°ßn ÌïJøÆ’¬•ðmfA«ÚÄ4ŒÝÕ®ì%>#Žƒx,„peû‰.(°‚“„Æ»Ïà­®Óé9yª» >ò’Ãïacû] ßX’µ¾Í,hU›˜†‘Š½qW„½ÄgÄQq^ûoÿX' 'ŒwBa’©éñ”ÀÓð‘—~Œeìw%|cIÖJø6³°UeB #{ß®þ {‰OÇQßKtáÀœ$œ 0Þ} +ùëŠÐ!(áouSïF·`þõýþ,DEO¡cØ ¨‚“„Æ»!' ' 'Öòä¼Ã^Àœ$œ 0æOUÂXâ¿b±üûêøLKÏ:´ÚQ¥öLÏ¡X—bn–à„§^h®?s|å*µ‹Õ)–[ LlÙ "á®?Äjìïætf¿¥ñ¯yÿ«JüŠ®Ýê´š”u‡¾:Ô!ðå €_?Ç%|æ´|$3 +NNÈyjø3‰’J\x[鮕^ÛaÙEµ­ZÎ,ºþÝSÛ-†1~œæMÿþÆ"kd££¤’ïåQ—x£´êt¥Õ†o† µFÓl†ç!ÏX/X¶Ã5VI˹Z–sþ€bÅ‹U”ðäÚõËRCµY·6˜U/%eB9E*f¦ )<Î*:xo<¼…ÀÆæ£Æ•*Žñušñ!&#VëŒ:W™=‡à— eýq§|µnõœà`NÁI 9P¢¹¥ÅÔbÚéFQêu3fžûWujØ-DZ±•&wdd›£|šY÷ýÕsxxZ?'®Ą̂™»¯åòLFŸµ–Ã5‚VuÚg¯/5+^,¤ž„uj––p5Ñõ‡YU5nÓÈ1á<Ìì·aý>VÙ!°ñpùÔ¿fVöÓ×éĘ”ÿêdv`€C`û¡¯?1|ÙÕsçÿÌ*8I8A` 'J¶1Ú”7Ù¸Æ ‰lÙm)w•&V3òýC¨Ô­îGjA6Y¨¼T´Uyk¹Ó®69*Ÿræ}ºTE®ÃDŒ4'–—-¿šÙˆ‹/Uê$Ÿ±zîŒ`€è×ábÀUbÚsjçñs¸ly±¢ÅB«ávA9ÿy»Èå'á®?Ìê|ŸR›8¾Üt¿åÿ)üvf§«4Cþü…àƃåƒ%\}NüþÖÊݬŽ¬|ôIU±¸_þöC `_ÿP¾‡¨ÞÕªž7ÿó™Wp’p‚À@ŽT.g²' ­%áM> ËÞuT3Ÿ¼ïÓþÒÆ•XFFS’Â94>qo±F69MÎL[CM‡bv3<:Ù :¥-ýýf4^Aiåq£‡Î×\õ¥³ˆŠñ¥+Z,¬®„Ëu•|`ýÝ°²'ºþjì¤K8P±áõA$9j.ôíù‡Âû•–pãë´¿:×ä×øϕп¸ C`û¡ð¯_–OEŸ–gAÁI 9S²?5£h‰†Ø ׉T7êî"gv™àPK—:]½’“9²ÑÑ83çºó™oSÓt=ö1ô +ycc‘ϹŒ/á€ChÜ\Õ¨þ/ÿ‡¸±âÅBªá¨Œ\Wå“ATöDÏßBc+¥.,žÇw—Ñ º7ÀB¸¢Pù` 7¾Nè«Ó& µI™Ðá؉ rl?ÀÌ×J¸?ÿÓYRp’p‚À@•h'íÔãe“;8ãÕ(DC'3ÔC-ý(ÞfÖz³™®wÔŽ3zh㶄_Àt +1«÷„ñ׿<äÐ÷CW'ÿQò'z±âÅÒXÕp’ëòñ9í ‡kãÖxJ©Pö6Kx®M$<¦3ã_-„+ +•‘ðÂœ£¿:ÏäE››ôå„9ô·J`æë%|îøHœ$œ 0Se*„¼¸úUŠŸšy38ÔÒEû»#ö79RƒwÕ£-‡brÇ")œÇqF1õçëddéNi;Çuèà*鸜S÷bÅ‹¥«¡Æ:õ£ö$­ f5V1o–ðÒü&FmñoEâ-„+ +•–ð›5gf“*ý²óEÝ/‰Ú~(™¯”ð¹àYVp’p‚À@Ž•¥¢#^qTK8ÔÒ[ÏØL×;ªÔ[Ëa*TçyI#ŸûØZ…‡D<ŸFƒ…cŒÞqŽëÐáUâéaÏóbÅ‹¥™“ðÊT_ÂñÚ`Vý”ÖJ¸¡ŠM<†ÿfük …pE¡òÁ^Zsü¯N™<«U©°;¡¡û5y¼b Ì|ý „Ï}È +' ' ä\Yýén\ Š[Ý +7HøÓÓXÂW;B$\Þq÷ƒ—ÏqhÊ ç|–‹3ñ*q,ƒÑ;Áq:¼*çý.ÑÜXñb-Uc 1;? b@mæ­ú)­•ðÆùÈJÄ¿¸®(P¾%\ìÑsè«üL\°ýê™j%0óõƒ~Ë' ' ä`YýI÷ͲÓ+7H87•³ê{Ž0 ²G¿ä‘9ùˆ{Ï£è m¤ƒvŸË`ôŽCp\O@VuÃkñïC‹ÄŠkEÙÝ7ˆ¹µY²ê§´VŸÎGvý€ ‘Šúå{QÂ¥þ¶E}U*d d¿,#P3_?(áÀð¹¬Rp’p‚À@N–{ŨúÙÛºKyd¬Ú$ᢱûßs„J¸¸KU}^¹“hÏ¢S\úɾµŠ>t-ƒÑ;Áq:²ª E½S£ZV¬x±V”=곺ª°ˆYþ­ú)mðŠi¾@ÿàBtÜò½*á•>¸_ÿ²_®ëʲ@>ÿu“–«,KKùܡ̘™ÕWïsÿX P¸ÃЮ7‰¯ŸU¸Ûþw™gp( ak ΧZæ +©RßT¥)|`—a¯e&îy‰Z•Á°’ƹé•oÊ™ÐIŽGf³dŸw©K½6fèþnì1¬\ÅÅš³ìží-O–Xïþ¨î”æ*üæ¼of¾llj÷À,Ÿf™Âwô‰”fS”R‚BÀn­¸ L|ý¬ÂÝö?ËLƒCáH{Ë>Ÿ|’Ý^è°;7uS +ï/Yí³³#@ö0h¨pçV÷çVj…†aÝ-Ö:O”*œÉ²Ù²Ï»ÔÅ^…ÖÊ¡êä*.Öœe¯›õcKëãÝ•™¯pwÅò~læÝô°'ßC7\a‰o™Â©W$izˆÅŸó¾4ÝZq˜øúY…»í•¹‡Â6'¹ß”ÕZû¦NtIeIÝ3ººTÃcÑ>L²NòA@køƒ[µOêjŸîZQÖ×Ìf? +h?wS{ÑÑ_úE?1'Wq±æ,;A?TØ”ÃRTxOujJŒÙK÷ÍÌ—ƒí8ýÚáH|—¦*f?©pÒp)åÅd׊›ÀÄ×Ï*Ümÿ£Ì68€„°»è8Q—ú€ÒÞ©¯wewò…ä’ÁÝ>‹Tß(8ùÞð0]È:ÉY#\•Úª´§¨[ÔtO)Æf”¦ý( ýÜM]ìè‹õpç6Wq±æ,»~Ø÷ hLQáMŸT˜¦Ú3—J7s¢„Z¼Kr¥®¾5JýŒ®HÍ/)ÍUq ðÇY'¹0Ì›ã0Vý…´…ꪲ¹g%J‘ÁnNšBöž¬p'u¹ýSõ7E7Wq±æ,{ÛÏ ™Ì²AC'ž4j3%®3%FüŠéËhgö$açvÓ´p;ò+ê§ ƨ›«;ûq~ìKÒ맊œ8¥Ñ81ö}1¯Ÿ›€üõ³ +wÛÿ$ +@BØ_7ã›ê”fäºö6ö§‹»xwÔu‚KôE3OÓâ0x¦/ªHÓ£>^ox˜.d¹Ñ +H§ë-ãøDÝÎΔÌX™)fêÝm©™ÏÞî¦.÷Úš ííæ*.ÖœeïPöZ¾—±ÄœxÒ¨…™ÒéÆM‰Q ¿b¾Y‘tÇzqrv¾Ú…ã)0ùe^5%®®föU¶HáÁÅÚùHâìûb^?7ùëçî´ÿE18€„°Áôq’µmòö9·5×­äs„©¦®¶-»ˆÇÁ“e,7Zƒª ruO>¥9/õq¯b{²“Ù‹ +gR—{鱫öÆêæ*/ÖŒe7ìÚ1Ë$KÌ'Œºéê gJŒ…ÛÖ7vaãk…w÷Õ§#¿¢Ì«ŽÚU«¶ÎìʼnXC’THÓy¿ yñïË}ýÜ䯟W¸ÓþyÈàP8Â3ÇIRŸ$G¿Ûw‡ºæäÝñTŒâæÛŽžµWœ<öZèØÕF~Ê}7R¾¤VÍI«ïŽe÷ÄYÈ~pzä^©êÌÂå*/Öœe¯§XgÙx;j=lèÄF Ú)Ü)¹yŭ󮇀¯ÞýŠ²wäW”yաɤ:o¼Ä™½4{HñRGÜR:Órò¯Ÿ›€üõëŸuÂåà÷xÌàP8Âknñþî³A¼KMMûmM4êmÓmÀ<‹’~°îÉÂ@qlš}@Ï)È8¡†0îClbëpŒ,d?8•úDšª1Çæ*/Ö¼eo"bs}ŒÜ†ÎÚp£n¼‰)¹Jxßoo/À(>i²`§0î(¬(óªýø¯®`f/çß I¿zÊnÒ©ý(}¹îꔸ¯ÈÔðc¥¾¡ÅÞ¿.™oã’ÿ}:…1‰½/òà^ó/þr?ɃCáHíú®óémÖç±ÔSºãÝÕø$›SÙìŠ<¾ßú‹¿Ü²ÈàP8ÂN ãø=¾y[ õy,uj¾.°AÏ}«_üå~Že‡Âøôžü+,48€Ä§75àa©Á¡p$>½«ÿ‹ … ñém ø'Xnp(‰OïkÀ¿À‡ÂøôÆü½µ?Ïs‡ÂøôÞü:O +@âå»7ÉóíâÎÁ1¿ÝòdÅtoæYƒCáH¼|ûæJeKûFå›’¼Š§ … ñòýûŒÂ J°Ì¡p¾—ç … ñò ü„Âw”_BG@´f>€7²‚Á¡p$^¾ƒŸPx¦T¾f*€7³†Á¡p$^¾…ŸP8uM×Lð^V18€ÄË÷ð +¿)µ_3À[YÇàP8/ßÄO(¼R*Y3À;YÉàP8wö`㪠ŽãÍŒ:ªÒ}‡ +§†¡,SK>¨aÓÇŽâhü”›ƒÇ®`k +@BØ|¹ª/ÈnÔBož¨0Ý®‡éºàTêªsh+<ÌL»2õÝ€Qf©òFÚ~Ù¥x³š­7ËðEWÔNf“éo¦v{ÕM.ö gâ +æ°šÁ¡p$„ÝGæ +·­Eóþšv/ÁDݦíZƽÂwUÛ.uâúŒ23HÀçHíÊæ@¤6Õ!•#~ f2IÙÇ>6Å[41/isXÏàP8Âö#¥dÜ"½h‹u·ÐŒþ9â½åÍë|}w­ÎG}³-[…T*öñ6½©Ó8ÜE7ÌÓ4¯ºAÎ9É_]ó<·[o©.®‹{ÃïÊ¥4P=dªóQ%\f§+‹‰y +˜ÃŠ‡ÂöŸv°ºiY†T¬šK莊‰)mÉn{±NÛ5Ó…Ø\cMQ_te&ñ(¡Š Þ÷ªÄ󨘌Ï0­‹º¥ÚÖe²ýIÈLæéȪþM4 ¶ò¼øÌaMƒCáHP ¬v¡¹ø6&¥[ì¡ip$úBöl^ßeµþ…Ÿ{7)ºöžO6._*Wá^F2®V:ýSWÞÊY“1Þ¯ó ª¶;;/~3XÕàP8Â$ÝÚ‹çµ½øn[½õ„º?ÕÝo½°´~äƒéöqûO¬:Ÿ*Æœ U†M;¤©Ü5IY“ÑÝÏMƒù^œ¿€¬kp( a Þ,i]Z §½þL‹D®+»ºÜê]v~@.-¡OuI1 +*¥þšá*oš²‰¬ÉDª—|ÚþàæÀ¯à>+ +@B؃¶À²ö¶z&“Å-×úŽËÕe¶;…‡$Üê2ÁòNÚM”:«p­ÓsÓ) ò¾É6™ÈšL¨z…'­Â¹9ð+¸ËÚ‡Â6!+°bÔ7•ëz“v +×Ê$.;'Xió¼ckV^áôCÀ÷¼@©B—ufUÝS87(€e¬np( a²«F}wBÝÙR¸]M“k4 +¦ªNIÈ\}ƒ–ðÖóv:FX»ûÐ&( tOáÜ p±¾Á¡p$„m()<‹{6R™úÔd)Üó¶™ º£1ýdÞ¢.)Ná^¡G£â«ñ-…ø›h†Â9@á,á‡Âö!+°›­æ¾¡S7°öàÏ È½ª ík)[áÎuI± +Oy Uù¦œy)8œèžÂ¹9@á,à‡Â6"+°¼“kWGþc¿Ž¹Úȯ0O™2å–[¦Ü2eÊ”)·ÌGp™r»-óö#¸Ü2eÊ”)·Â2`ÆÉ€ŒY]s8Ñ̽ÿÑó4†Ñhqμ?sóø„˯^}»ºëéWG®úþúËw7·î·&üxuøèèîgš¯+¼ØÜ.¸Ðs ßö$^n‚K8D‚'qkÀVóÞΞœ¸íØùêºG÷_-Ÿ&|}íó§×Øœ¿®òCáû­ _¿ÿlqwÃÕÕO.7?kp¡ç¾í3H8¼Ø0—pˆâÖ€ÍnûþÝ“·ë7ïž}ì—ðÕ¡7_8Y]ãýÃ7×}sÿe¿=á«â~XýL'÷?ÛÅ*ãÇß¼Ðs ßö$^j ‚K8D‚gq{ÀÖ®ž?^,ÂcWý}|O>­ïq¹þòèÃ}Žç«#G_ßí]ÿÞÙ*¼›À÷Û¾ºÀí²_ÞÝ°ï—%/ô\·~ ‡—ªà‘àaÜ°ÃU.û›‹7óùÅåòþà¶c§ë+¸¸X½³¿¾Oø*¼Ÿ.æóùûÕùWOî6»]_ãòíÙå:ùׇûí ?XßñÏâÝ·/ôl·} ‡¬à‘ài v|óè­×ñ±7·÷ß/‹ûÚÎn7'}œ=½Ý£kÜžoŽöAÂ×ÿ3xxåóç›—¶^èÙ„oû /1\Á%"Áã¸JÚ¦€ï¾ü={ppþPâç³o;½kâõñÁ›¾ÿùÐÉÕÝI˳Ã-ÿÅòîÅë“/—AÂOW'ÞÞßélý¦g.ôèÃÌV/=¼°ø’ð-Ÿ!ü ¿7`Á%"Áó8›?Jé|þ8º‡óÅÙ×G¶›ŸÏÖÿžlŽ¯Î:|ݧ·|{:{r$8ùh>ßœy<Ÿ?w¡Ç×9šo¾>™?>íÉgøÆoxbÈ‚K8D²Ÿ| }ƒ\Â!’ýèͶà‘ìghÝÀ—pˆd?ü@ã†.¸„C$ûéÚ6xÁ%"Ù?дá .áÉ~þ–Pp ‡Hö £à‘ìÚ5JÁ%"Ù4kœ‚K8D²7hÕH—pˆdШ± +.áÉ^ M£\Â!’=@“Æ+¸„C${€Xp ‡Hö ³à‘ì%Ú3jÁ%"ÙS4gÜ‚K8D²·hÍÈ—pˆdИ± .áÉ^ -£\Â!’=@SÆ/¸„C${€–$\Â!’=@C2 +.áÉ^ )—pˆdOÐŒœ‚K8D²7hERÁ%"Ù£4"«à‘ìUÚVp ‡Hö,MÈ+¸„C${€$\Â!’= @2 .áÉ^ ¾Ô‚K8D²§(/·à‘ìmªK.¸„C${€â² .áÉ^ ¶ô‚K8D²ç(-¿à‘ì}*+Pp ‡Hö@…U(¸„C${!€ºJ\Â!’=@Y5 +.áÉÞ ª"—pˆdPT•‚K8D²W¨©LÁ%"Ù3”T§à‘ì**Tp ‡HöPU*¸„C${)€zJ\Â!’=@9µ +.áÉÞ + šb—pˆdPLµ‚K8D²×¨¥\Á%"Ùs”R¯à‘ì½*)Xp ‡Hö`…T,¸„C${1€:J\Â!’=@5 .áÉÞ  Š¢—pˆdPDÕ‚K8D²W¨¡lÁ%"Ù³”P·à‘ìÝ*(\p ‡HöpT.¸„C${9€|¥ .áÉž ]í‚K8D²·ÈV¼à‘ìñ’U/¸„C${=€\å .áÉž Uý‚K8D²÷ÈÔ@Á%"Ù$j¡à‘ìò4Qp ‡Hö„iÚ(¸„C${C€,\Â!’="@’V +.áÉ^ G3—pˆdÏ¢‚K8D²wÈÐPÁ%"ÙC$h©à‘ì%Æ×TÁ%"ÙSŒ®­‚K8D²·[c—pˆd 0²Ö +.áÉ^`\Í\Â!’='À¨Ú+¸„C${O€15Xp ‡Hö #j±à‘ìEÆÓdÁ%"Ù“Œ¦Í‚K8D²7K£—pˆd +0’V .áÉ^`Í\Â!’=+À(Ú-¸„C${W€14\p ‡Hö°#h¹à‘ìe†×tÁ%"ÙÓ ®í‚K8D²·Zã—pˆd 0°Ö .áÉ^`XÍ\Â!’=/À Ú/¸„C${_€!M à‘ì4…‚K8D²Î$ +.áÉž`0Ó(¸„C${c€¡L¤à‘ì‘2•‚K8D²WÆd +.áÉž`Ó)¸„C${g€!L¨à‘ì¡0¥‚K8D²—ؽI\Â!’=5ÀÎM«à‘ì­vmb—pˆd °cS+x·ÈžI¨*{m€Ýš\Á»ß²gªÊž`§¦Wðî¿Ù3 Ueï °K,x÷¯ì™„ª²Ø¡)\Â!’½8ÀîL²àÝ/Ù3 UeO°3Ó,¸„Cà6{s€]™hÁ»fï$%á0S-x÷SöNBQ1Ù‚wÿÈÞI(JÂa¦[ðîïÙ; EI8L„ Þý5{'¡( ‡)˜rÁ»ï³wŠ’p˜€I¼ë®²‡jZfOð›xÁ»ÿd%Ô$áм©¼{=”P“„Cë&_ðîçì¡„’n%7ý‚w?f/%”$áи=(x÷ç쥄’$Ú¶ïþ˜½”P’„CÓö¢à]w˜=•PÑR¡a{Rðî×ì©„‚– Û—‚w¯²· +º‘ph×Þ¼û!{+¡ K ‡fíOÁ»n‘=–PÏ…„C«ö©àÝë채r>I84j¯ +Þ½Ê^K(çR¡QûUðî‡ìµ„rmÚ³‚wÝ"{.¡š# ‡&í]Á»×Ùs Å|:phÑþ¼{•½—PÌ¥„C‹ö°àÝwÙ{ ÅœJ84h Þu¿f&”rx áОý,x÷cöbB)?K8´gO Þýa‘=™PÉŸ$š³¯ïº_²' +ùw'áКý-x÷—ìÍ„B^Ý%ü +–‚ïÆoÙ£ e\}w—p`` +¾?e¯&”ñº[%üMöŸ'0u7;Lø~¼û>{5¡Œ¿ý½ºåm$ÛÂ0hhtehh + 4 ´Ô¤¡YCCÃÀ† šÅÒÒH#ùJWW3Ž3Ý”íªÚuæ¬õ 8û}žÔìêžyÁÏ΢gZbÑ‘ph@u ϾàgÃèÝ„–­îá7 ^&\ÁÏÎfÑà ­°èDß"ä º„+øÊ0z9¡ÆѧY¨,á +¾6‹žNhe/ú! U%\Á_ £·Z`}ˆ‡Š®à?,¢ÇÂ-{Ñwy¨&á +þÓ(z=!Ü$ú !•$\Áé,¢ç‚-{Ñg™¨"á +þÚ(z?!Ø$ú!$\ÁßšE(„Zô¢orqzÂü‹è…P·Ñ'Ù89á +þÁ]ô„B YôB>NM¸‚Ô+¢Gâ ¢òqbÂ|“Ûè…0Óè󃌜–pßl=£dÑ‹¾>ÈÈI Wð-Ñ; +An£rrJÂ|«iôBˆ‡èÓƒ¬œpß®ó=¥ èGŸdåø„+ø.çËè1…æ £òrtÂ|·›è1…ÆM¢Ï2slÂ|Ÿ»è9…†=t¢¯2sdÂ|¯Îcô B£Š~ôÑAnŽK¸‚—Ð/¢'š4Œ>9ÈÎQ WðR†Ñ“ + šDä瘄+xI“èQ…Æ2ÈÕA Wðc £j5Ž>1ÈÖ! WðãÜ,£7ê3Ž>0È× Wðc]Ñ+ u¹>/ÈXù„+øñEôÎB-–×ÑÇ9+p?E=µPƒâ*ú´ ke®à§éÍ¢Ç*W ¢ òV2á +~ªî}ôÜBÅæý賂̕K¸‚Ÿ®ó-zp¡R³nôQAîJ%\Á+1ZFo.TgÚ‰¾(È^™„+xE.æÑ« )®£Ï (“p¯L÷[ôðB%fçÑÇ”I¸‚Wi´ŒÞ^8Ý´}IÀY‰„+xµ.æÑë '*®£ÏXÛ—p¯Z÷kôÃIΣx±'á +^ƒ«Çè †££è~Øp¯Eçó2z‡á8w½èó~Ú™p¯Kÿ{ôÃfѧ¼²+á +^£«EôÊQôÙoìH¸‚תóe½Èpˆi/úh€·¶'\ÁëÖÑ£ eÝõ£xok¼ÝÏ‹èa†–“~ô±mK¸‚7£3šG¯3ìQ|éE +°É–„+xsnæÑ ;ãnô›mN¸‚7êên=Ó°Ù÷›Nô}ÛlL¸‚7­{s=ÕðÁãç^ôi;lJ¸‚Gèçу ¯,¦ƒè£vÛpr1}ŒžmX[|½Ž>`¯ WðH½ë»yôz“¹âëíyô!e|H¸‚‡ëßÈ8AŠo£Aôe½O¸‚·Cïrôå~½çd¤¸ŸŽ/Ï£?>pˆw Wðv¹Ž¿Þ¯=i8$èÓ“†@‚V ×pHÏsÂ5’³JøBà 9«„ÿWà 9«„ÿ_à 9Ï ×pHÎ:á©yI¸†@bÖ ÿŸ†@bÖ ÿãO €´¼$üIà -ÿ$\à -?®á”Ÿ ×pHɯ„k8$äUÂ5Òñ:áÉx“p €T¼M¸†@"Þ%\à ï®á„ ×pHÁÇ„k8$`CÂ5ÚoSÂ5ZocÂ5ÚnsÂ5ZnKÂ5Úm[Â5ZmkÂ5Úl{Â5ZlGÂ5ÚkWÂ5ZkgÂ5ÚjwÂ5ZjOÂ5Úi_Â5ZioÂ5ÚhÂ5Z¨DÂ5Ú§LÂ5<ÂÅåÍx<žÜ¯üõyX}±éê¯Ý^^Fzà0¥®áM\Ž§÷‹è]'KÅýÝøê"ú€’Ê%\ÛÑNfÑ#=N¯»ÑÇìW2á³_®àmÃj,,,,,ÜsPaá`áààà`Ù`,,,<°Ìvnu·vœÄÑ‘|•mù–Èù“ù{I]ËÖÕúÞïŸëOÔÉ @ÊßûÏgÔ{PO[…Ãá½rñõGÙyº»¤Þ€Z+ï³Ûꨠ‚§¯çÔPE{…Ãáýpý˦Niêø}K½Ij:(×ÏÅgê| ûçGê­PÐEáp¸f.zÔÙ @;®¨·  D'…Ãá:¹üEÊtàñšzË +tS8®«êD #OŸ©· GG…Ãázøô@ÆìÀßÏÔ[ ÑUáp¸Îï©“€ùó‘zûR:+ß›/&u °3Þ3êˆé®p8|?>>Rg0{ñ|C½‰;(߃³Ôù ÀÞü¹ ÞHÁ. +‡ÃwæÚ¤_4à}#ÞIÁN +‡ÃwäŽ:yÐÄÃ9õnì¨p8|.©cm<¢ÞP€‡wçÚ¤]4â}#ÞQ€]‡wåŽ:qÐÌÃ9õ®`àì¬p8¼Ôq €vž¯¨7Ãfw…Ãá¸|¦[zÀ»¡ÞZ š=‡·æʦŽZúá õæ`Èì£p8¼%76uÎÐß©·f/…Ãá­¸õ¨S€þ¸§Þ` —ý‡·à+uÄÐ+¿Î¨÷CeO…ÃáÜQ,=ó€†}‡7ƒƒ8öV8^ËWêpàü¦Þh “ý‡×pK­„{ê­À Ñ p8¼’:Y8 ß©7CD‡Âáð +®lê\àP|¡Þn - +‡Ã•\ÚÔ© +ÀÁðn¨7ÃCÂápÏÔ¡ +Àñ®¨·ƒC“Âáð2Ô‘ +ÀAy>§Þs ] +‡Ã‹ÜQ*æzÓ04´)ÏsM§œoÔÛ€¡Oáp¸Ì…I¦ïSnüÐ/ÿÕ§p8\â‘:L àù\ÞzrP‡6…Ãá)wÔQ + ò6Д+€ô)¹¦Rˆø&íÃxñý¢QápxÈ™I£á]eÁ0^@ßèS8.¸§ŽQÈxÌ6B¨pê# +ÿÉ=?Òš>mÃQîÃjau+X;V¹F-ŒD«KŽŠC)\¬†?›¾zšæ¬Ÿé­ªõÈ>T‡?ôˆœæ™Ø u +·sÏÓ(<߇ÀéX°™èë²íÌÓ_Ö¶Ê$Õ%{5¨›C)ü¯]j™3Ó«®57éÇ®ða:üª‡4àô¸Û¡IáNÂBoötQxÔUØé¥ÕºÀå¹Ì¶ú$Èk›¦ÿ,|¦~¬ºd¯5s(…{Œ½%×ZæLßôªkÍMúÑ+|8pPpœüÛ¡Iá}EO…Ç—Ö»èµß¾ÀZòKOW{5êÁ<”Âùï+Í?þz†–Âèð«ÃG%GÉç'¥pþOÀÒ×ژⶩ¥¿¾|lí•ö ;1…Ïá¿¢€cäï‡S¸1Ú2¶µÚ¸üz¢£»…w‡Aá}30‡_x$a Àò9§pË~ó)l¦R¸ùâøÁÚ_Xécþ;O™»ÞøNxÓ´ýÀ“k¿.}¶òL§r8–j¬îÃKÞkU0ge Fݸ«`éÈeå>†OZo›ÀŸ Çáu¹g•¹éƒÖüÍßúî,y+.éØPø¤çŒâ{Å cúæ12Š´«0ztámVάFá“w^W2–ˆŠWT_x2ƒÇ‡0o9gM˯DñáTM’í{é˜æ¾;Îî‡ÕÅŠ“OÉb¹) ô¨–Ã)²ÂgAxo•¦›ZáãUürœ®xάe|“'ßd]»¥W{·²—œÊ% +}°¶¼‡í ^ùõØÈv×eíú8šlÄ-$ÍšSèrÓyÓ©ójŒ§S^ð:åäû?á·73Ó0íUá¬Ù©!ñäØ9bþÃ{…ù¨‚ð陟BnÆî²-c+ÝòĈ»£\kV¼X}ùÉQ8‡aÔnΗ¡þ霤Èα‚ÃÑOÒë¥ÔÅ*³ò@á8ü·¶ðàôù_ªpé\™ÐP*ü=Ž<#<ázá…ȹ |Ç #o浈é8G‰˜EêÆ÷Ò$VÕ(QìƒøßnW0áU³U¬Qôqùi¤¹\ÑÇôšÃÿ™ÊµD%üà·ŽÛpÖ¹’n ÅOŠ_"3Eƒ®Ü“í+äóŒÃ«¹™ÛjbªV¼\½r%Yú[ Õœ5/C݇S=Ia›K©¾Ezmçj-­²jaŽ¡8üÌÓ—~œ>Ÿ…¯¤›q¼…2ô ^NBV\'‡«mn"ç6£è:ËÌ 7G’™Ê%Däÿ'Iÿj RV%ƒÒ 3ìï¤Pžë£ì9¦RøŒe?yò%ŠgÐÜfó/7Ègóµ4”nŠŠ¢Æ+S+¼ÔߪWW_^I¦PxÍœU Æ-=ªj®n’øˆ¶¦¸ñ þ]§/ZùWYµ0ÇÈ@þEOîðð3QøVºéÆ©`³âÍ…¬å Ž7žsoñ­)ËÂÙIrRÎ$Ù™f¦²F Ñùÿ1‹_¬-ˆÙØF©»"ÎK¡ŸëãFú ÀT +çOoJõ§ +oßPú$×л¢AþðÊTŒ¦C…|A¶épVJ…—ûÛ´âYõê•d +…×ÌYÅ`¤e¨ûpê&I|a—ø÷ÁŸ‹Ì~£Õ +W-ÌQ2 ‡?ö‚œ.¶+|%ÝLÒÔfÅ›ïR¤‰W”—òW$€óRP‡‘YP¸²F Ñùq‚›7Ä +Ït±’›¯êc S)¼¬BYá;4ÄOŸž¢Áþ?1ji¨Ð•SùJ…—ûÛ´âYõê•d +…×ÌYÓ`ê?œÚIZÇ +ö›¬â^ñYXÚP®rn ÇÊ~ÑWp¢Ø±ÂÝܽ›_OÂÓ ¾ŸÄùV¡p[V¸9µÇ÷7¥\VÖ(!ú ÿ?Oú×T0žóÚØK9érFMVÙǦ +÷r—Õ +oÝ›ÞÍ7艕Y*ÆӺœµ›ž”7­xV½z%™Bá5sÖ4˜†§n’œø{ X ®Åè,þô¸Ð†r•s=ZàðïˆDN‰e¬ðiv+°âH°YÞ’aøæ(žÉ*>~Ï^,ä²²F‰bœ¤…æ‚Q %#g„,—kúÃTá^î²Zá­ªR¸ù¾±™—Ô¶ÂuÕOŠbÇå·šV<«^½’L¡ðš9k^†Ú§z’ cÂB_OÄÀù×.>zþ©¬‹m(W97Ðÿ³_6é®ÚHÞÂöR²ŒfØKè%d–a/!Ã,ã.!KÈ °ÁÆF6lP—ø*ìc~Rïó$#©T*‰ï;Z.Û÷🜠•Êo,Ü»ÊW‡NbŽXø)Ô9iáQ%Š;“yµB#* sHEÊŽ âébèÜЩn“9¶ð/Z¸ÛD6 óIëí)%røxÒÂë|§v\³pd'ùs>½ ÇR¤vL›Ô ÁsXçΆs »¬-tÁlÝÃdB‚X)QkáA£}¼”Š‹Xx¡›ZÔ…ïA/ïMTfè2Qaƒ_v\ xé¤[;Ùu2ÇŽ‰ûÃø+·pç‰ì{ÄÄÝS7÷€…êÚSÞå;µãZxd'9báöš9lÃäÁÁŠTs­ßÂÂvy7F®ÏÐ%³qÿ÷÷j#A¬ÖZ¸ç®yyK”ëK̇žšÂ?máå6ª©ËhD…AGÞÝà\ÄËÓHºµˆ'“9¶pLÜÁ2Kü×&³p𧗶Óà0US²ðrlláÍž¨…Ûkæ° Ç,RÍó*ð+^xõ!)¼þÂ3V„ÐE³mÿß·J#A¬\Z¸Ȧºz7ºMY¸r_2uhÍ!g)}ç¿äµ`Ó•w@ñÆaFsláŠɶ«œwØòâDº…÷vKª¸þW‰{@ðÇÊW†¥ƒÐh¾S;Þ‡Çw’#n¯™Ã6¸£Hòí1j@^ëk Y¸¹ËÚB—ͦ=ü¯oG‚X>Uò„…ÃE†‡Ý¦,”óÜé‹¡ËhD[á~žh€ùŒëÌ,Eú*.f“9¶”˜¸Ÿ”hÞNõÚDŠS”ˆ… —ÓÜÉ=àAÉÜ ³pÙ~éòÚq=¼¹“±p{ͶÁéà ‹$SMY; +zÄðßÁXºËÚBΆ=üÇw‰"A¬ˆëîep÷ÙÉ_ÍÓ”…ƒRfÍ+aC]Æ"â9øb¸4—oÏq§j^t½8äèu}R5JÝæƒä?š¬ý+ßy ~"Å)” ýSÐ<Õà’'Âß9e“ê…æ óÚq%<º“±p{ͶaäàØ‹Ô»PíŸ&?‡?SüaT|—õ….œízø¯–B‚X#ù3«2nîg×òV¿›²pቛÖÓyú ,â Vs+ÅðÌwiËî6ÙS;ÏB/d•lϱA4?µ¶sèEgHôð§'RœB™0äåYØï”ÝJŸ (R- ÔT¥D-òÌ"-ß©W£;É ·×ÌaFŽ½H ÂÙ»¨a½9²ýø.{+²ðízøo>‚Øg,¼¾¾çŠNYx ,¶ÌÅÿSD—‘ˆƒzÊÄ­AûqÖ#ÂÌÙ£Wµþ2‘cMØŽaZ›Ÿ+¥ô=ÝÂ_˜Hq +eÂ}½È¼×øé€þMfz=¡~,‡ùNí¸š/¶“³pkͶaäàØ‹Ô’Ëíó¼z¥fj–]öÖdá›õð¿9AOY¸ÞåÀDZ~3eá^ØYyØaºlFTˆ”D 84hYû ï…QÌ´föå²Æs¬97]’A[Ò¥‘ZËk©N¡L˜ZKôLÀ6JuUJ`Ðn_´ÁÂþýèŽká‘ä¨OZk6½ cÇ^$¥žQ_ŠJ%ªe—×dáõ𜠓Êfá;ÆÎæ[ÿÀÒ<ϳ¤Sù#cRðÆü~ô©{Èk ‚ÉXl2"ªÄ¬!Ž·=룜±£‘å#ÌÈŽêÈñkBižýaÛþ|…÷É~0굉BÆØ„»“¨Ñu°˜gFI™B×€±áE5f ÌC‡K¼SFw\ oî$ì’ŒåP³ém=8#EÀ¢å™„cÂz£×W„Х³Iÿen¥$ˆEbµðm¢_ê¶0A Ù¢‡ÿ:·RÄ"! _ùDa°Aÿ}n¥$ˆEB¾ò‰Âd{þçÜJIË„,|ÝÂæ<ü¯¹…’ – Yøº'"Œ­yx<·PÄ2! _÷D²-ÿ×Ü:I ¥š[j¾–ç‡mMD8›òð_æÖI‚X(ÿ, 'ˆ [òðÿÌ­“±PÈ b›lÈÃÿ;·NÄB! 'ˆ²ÿmn$ˆ…BN[e3þûÜ:I …,œ 6ËV<ü¹u’  +Y8Al—xøŸsë$A,•¹5† ˆÏ± ÿ9·LÄR™[b‚ø ›ððŸsË$A,•¹† ˆO²ÿ{n™$ˆ¥2·ÀñQ6àáÏ-“±T$ ˆ¢àåسÓØ°‰æ ã^Ï+oð¦Z‡GÆâOmÚ»Öú%ðB­ý¨®ßÃçVI‚X, +pã<}A8כ7Œ{=_¬¼Á[jí³úÀ”oÈã]kýx¡VTWïá3‹$A,È¥¸ÞxyvÖ*|2„l¶}j®¥‚."w6+÷žcóÙ¶âI2÷ó +O¯õ˜‡Rã-囕µ{ø¬IKÆáû—⺃þ…³l Âׇèš-AŸ›k¡à‹øœ…ÛŠö +!v~ˆÎÙWY˜ÑÂÍC©³~ _»‡Ï§±p>)®Aõe ïCtÍJИ³ãŠÁñ9 ·Ôò-tåüá5È3Z¸y(u6`á+÷ð¹U’ ‹Ã×ß‹k’çgÑÀ…O†Í}PH'2;®tŸ³p[-ßáAç—¯ÆcF G¥Æ,|Ý>·JÄbqøø_× áCš¹j;ÛåƒÞÃßmáçÉWcŒ1§…K6lá«öð¹U’ ‹Ã·Oþ^Öiá%çñWcŒAþiVìás«$A,‡OŸ,ü½¬ÓÂ9YøÚY¯‡Ï,’±\ìü>É;¨âçiضF—¼|äÉNö>ßr^ä,”ãá ¯ð:=È·2„ÔÅöM¤“2 ÌåùG–—÷< úì†ó«‰©ÄùÕ÷‚Ë£ÌÖ€Z_/L‹òÆ"{/JÒâqcG¿ù\ókm—æl¸¤ž–Lðžm™¬å)O÷ýûz"K-Û­HnŒa›ÜÍ&`ñN#y{¶ájUŒ¬‹§K^åÊ‘2^8ý÷àPϬjá£ë^:«õð™E’ –‹õs?µR¿W©eAÖ¶VÇú÷¾¥‘‰ÎAÚ¾½xÞ Äàa§äÄ´v%zÙ݇ó+XRÙ…ñ*·ì}eÚ©g‰ܺIîø•zUÃ{ ÕÏïÙë¾w5Pòóaöãx-»5Uæ’'w30ÌXm;€e0¶V,ŽçJ½ðæ‹éã2ü­Å‘3;¾î°VçAàX?vÙ£¸›ž‹÷yây?ƒZEyýO§|Ð9íE8õ!ªKœµv/aïy¡̯`K¥ñßÆ€‘€=¢/š¶¡±²1&Í´ummqý"Ðz¢™à=»ðº½:y?#Š ×9ôvq¿ÍÅ-¬¾…Øü +¶TÀ!²(bg< ôNC#íA„꼇ÙjM»Šu±ÂîY.¯'– Þ³C¸sk€u{(Ÿo㵡öÞŽÁ¿Å`Å»¹«2ˆ·³å=¹¥™ÁèZÑ8¢²ƒïùqÑœ]ã…Ãq1ŽzÇÎìøÉYëôð·ÉAl Ë—žÊí맓è•6o;-K嵤%éäLˆ“yՈྔ²mµpD2¤|}mí©É*CçwH¥T°¦­DH; éúøòNçy`Sw}x=±Lðž’\©SJäs¬ÍgÔ²[S=¤ÓnŠ€q×a¼‚‡AÉ`|­XXþ=hÙ}áp\Œk>rfÇ×½Véáß"…±Fðï\ÜmÚËžw憅ƒnž- +‘ª¥è ÙµÎ.o´íón|~k*©º¶a@kÚz9¿0Ÿ£x}/û‰±³žX&–ÊK ¥ÊpIwB98PçC,¼uM¿’¾ßá´›ª…OTŽf0µV3Ρ+v‡ñÂå¸ Ö,Ü~f×½hÖèáŸT@‚X5øg×È*è~†…_à‚â[¢³ÑùÒ½¿iUói Oú›ç•ŒÌoKå!—ƒT°¦ÝG€À¥œ^\ë‘L_<í´EàõÄ2±T^²çmÆ1LË[çfÝ…Ñ^K¹¦ÿ³_6ì­²0þÿTmmk[f­¶–üÀ ì¶3pË}]ï{l„$Ì3@¿JÓåªÝÄî© 5ÌÀ·Ö¥xxÎߘ†5Çe±`|gvõºãfƒ¨92LüÐ_ùmÔE½ðL¬sj¢j˵9¸£{ãÛ^¢®ªÜ\Üñý©Pž´•¡6w)«qL9F˜¦ëIeb©üÄcˆIäÍ «õx¯õÔrH¥2=®ÚM,áž +RÓÉ ¼k]øYèü°æ¸,LœÅ„ØüÕ뎜íix¸þÈ0‘CäF?]J¸Ò¸‘œð”ôPQ×OZ7µ·%Zå³i#u*¤Ã OÚŠ‡1I MÛ]îÀéÙtFדÊÄRù 1Ü;[Ùªgõ>ƒbìgi’µÒ­“5»‰%ÜSAj:™w­ ?‹` êã2ÿMKøbóýëÞ›Óð‘a6ý?ÈV6u¸´ì&?Ïã˜}Ùj—”nê¶ý¶„·³„/d|„/Òá„'mÅKJtôÕgGø÷†ÌtFדÊÄRù‰\vz«W©S!åcžJÓºVÂìƒâ#ü©X®J{ñC)vß镬¶i×é‹ÙHºžT&–Ê#ÊnYðj7Šw/äffd-¤„ûwK¸»‚Þи×Jù7Æ …aõqÁ¿i _l¾çälŠmix¸þÈ0‘Cà·é"i•pè‚wÙ‹Ç4ÛáJbÑÍÖ®ÜÙ¹Q26‹[“7‡C*íëÒjªÍ]«Hé“C/äóEõ¤2±Tq”ò•¥/ÙÀsÉ$‡€‹äÉZ( ÷í&–pw½; 3p¯•òSã¤áã2ý¦%|qf='g[lJÃCuG†‰Ë÷ 21ʺ,Í$<!‘çĸž][_@eðHø¨“>lmhŒ°¥2åírèO[Q"‘N2Èá2ïÓ®ÿÐÕ¨[ozYz4KÝ@ó¤k…UoQIøÐ1Uïû0\n\Ä´¹‚»ÏN›wT|„-ô§ÇÒ!¥]iAÚ!î )M—º.Aדʄ‰´Úfu?EwY_-BÂ×í&–pw½;0eà\+åGý}ôìg¤¥Ü†Çey| wœY÷ÉÙÛÑðk‡ ³5,_÷^5E–”ZÍ%<—íEuÁ¨G«ÔC5à«zqS.§® -²:$¹xé SÂÕìK–f[ÍÁÚÝôcÙÞ©ø¸-YRA¼tˆéº¸¬rKÚ'ñ‡$=¨p(….(©§Ñõ¤2¡Gb”òŒKË»€z¯– !áëvÓpg½;0eà\+éçÒEΓÃÆï(ƒÿ¸,>‹®3ë>9Ûc3þŸšÃlËÇÞõˆò<—ð½2·u'veÏÚΠþÃ]ûÔŽN^cûwIx> ¦Yôj­\‹ø[*H€—10¶zÚÓÆzûÉ~ê,9v&õ¤2±ŒÄÔºHIÒUXk«·–„„¯ÛMCÂôîÀdu®•ô“ÖSáŸ)eð—åñÁgÑufÝ'gƒlEÃ%Ã04Ö¯»¿PÊ×9)æ>¾ƒ¦yê_äƒèµÇîÚ»}3صª¹$¼»RÉþî…ÍùCšñ–T„1fî¡Æfƒ´<—it£/SdN•¹19êIgBDte:LƒÇÛâšZ.%|Ýnšop®µ’i$×1n•Y Þã²X0>‹®3ë^÷Ùˆ†K†ahì_÷áZÕõÚb&Ä '!ú¾¶;ßêº.QO/nê7Œb°â +Í¡'ÅNÓ.–@.Àí%›Ó£PñªëhYÆG,SÁ¾h‡}¿>ÁkqÒÒ¸ôuD1spÆ@<¨§%z$Š AÎÃóž'-YQË\ˆãÌߚ݄í;4ÇQAß8×J¤‘$ûK ¯{»Á{\æ¿uvž3ë[÷Ù††‡î’ -¡[Htàû"Ãüv6¡á¡»$ÃDKè,áÌŸb ºK2L´„n ÑÁÎü-6 á¡»$ÃDKèþ,áÌ#~ Ý%&ZB·è` gþÑkxè.É0Ѻ{DK8óçˆ]ÃCwI†‰–ÐÍ#:D]CçÀ0?KäºK2L´„î Ä'n Ý%&ZB·†a" j Ý%&ZBw†ab f Ý%&ZB7†a¢ b Ý%&ZB÷ †aâ ^ Ý%&ZB· †a"!Z Ý%&ZBw †ab!V Ý%&ZB7 †a¢!R Ý%&ZB÷ †aâ!N Ý%&ZB·Œï$? QdoOÛ‹óû“æW¥†‡î’ -¡;Æ÷‘ŠnAíÛRŠÿÃl‘5êöY_wãïýå^˦¹QÔ%|ãù­i+±CÖ›r¼ßÓæ#†‰Côë­yÞÅ)õD3|UàêlËÈÎõ«¾D‘„[Rlj¥'Q·úšÙ Å0¿˜4†1 mù¤•çÉ*LQ½æ#RöZÛöŠ+œÑzÒÉUkË6ù0Y%Ü‘X¡<>êùŠa~ ñhø'Ãü 跙뮪ǺS/¸™Vݽ³»†æý 6P®Û>Ù 06‰¶ª)ûÃŒ—`q01)eö‚;íe“:ÉtFØu¾¸ÚÙ²ÍáñyL“´húUÛ$ÜX©‡Ûèw^(†ù=D£á!:#ÃlúÛ½é‹çÀuÂNƆW mòUô¯áñ¨­Ã{°œÌzâm”EÐÝV«5ml…+X-å#ëÅÈ·|°$VJylü•0äÊÒÍüVbÑðPÝ‘a¢‡þtAï.–¯DëÖ?)Q”4©¼j+¥ƒ”Z)s‰‚ŸáÇÉmB" '‚µ£y¼Õ®ÿ6PÏ»ÄY(†Ù<‘hx æÈ0ñcùr¥lR뫺iû­ e¥¶º%|r@+%¼ouìì5¡£MHRÂu0xxš¯Þ–ð«”wmlû?(…b˜í‡†‡í‘ 1ô‡{‚7uN¾XÂÅh…Ûn5·JZÂ…GÂ+)oÓèû蘎6!I ×Áëáp­„—èåï’8 Å0¿€(4Ÿþ°q,2étú_,ü*Dæwëå5Í ÐN—°ã&|aœ… [.‰O¶°ûçìÆ,ú*ÿÿŽ9=|áà7°œÇD61Åù«£½! ¿ qù6Æ[šgÎ÷uIîiümø%gáÆ–Kâ“-lßáGõªßƒÑ ©ü<Å&¾·ÖÃŒ¾¸,°,Ç1±7}ʆ,\*úwŸ+^ošâ·,ÜEŸl¡ñ×ò]çã‚»,ÞþöÿÌ|î@Ø–Ә؛>eCž ‘|>gŸlaçNä³UyiðËjÿÓ¤ÿsfóp'ÒÀ°ÆÄÞô)²p /ùE ÷ÂBˆ"ßÊrôaÎÿ=sy¸m`ÔG/H.œŒ³˜ÒÂãsúÈîìà×îηìÁö´ïNw.œµ™ð«¥üƱq¬ƒˆ”ì}ÎŒÉEßcÇI—›ð4ÒáS^¯Ú?0ž?ù9èæ¸OŸgU¥Ÿðœ_Ì_xžñ3±Ëž—,ç{Ë„ÝäÞÆh ¯\ùµ¦œÙŽJ§ïq[hyDõ|Ýwø"tâcŽb#\«b&w¡Œl‚êàíóªüØ飘ƒ»õŒ†jM]ê¿kñ×ê/! Òº²HÆű¢R²õÕc^7eªåÖ–áÙË6äIÛ5Tñs=z6Qõä·fHqðºØö4ÊÊ*n™Ð„^™$3 +A¡$‘›õ­n(¾ÇMl!ý0Ñy‡ËDãN²¼óÀ‡Ìãá@S»Dý(´f%âÝÂk£Ïk»gýµ=ÁãùªÅAÕ7ãÕ¿KS)¥=j]è8&Žu™’¥¯Æo÷$Ÿt¹Ó{~ª·¸Œñäcd×8ÓYøûB•UD^ÎÀË»v³·îiŽ[&4 —@'iZ¸—j×6éCéô>î÷-¤†"Ýw¸ü~ F7È¥ÂÛ%0Ä,.4òÐ…Ú)ÄC‰V"Þ,¼¼¬'iòa%¾Q_íA³$ðvõµ7í’·©[u类aÍ©ír|ºóB&Ô¥h ŽmÝ×L+Že‹ã8œt¹«íªð'>Ö‘xiAªÕ9^B¯úظ"?þAVz*yÕsÏ_ ˶§ÒoqÌN– [è%X’ìXøÁˆ©²eà@:›ÚÂ÷‡¡y}‡Ïò÷alC™ÊûwfŸDêøE<óêÓ(™GZxªüC*u®M®•W˜|W•ŽeÔ´é¬Ä¶ÔàÆ‹ÊëY‘ÔͲ¸Ç2ˆN‰îÛEÖ'“/W[^>ÖÕW!îž~Ó9æÕ#ð«ëê³ú˜(}‘©Ùßîš ¶=mP¶ÐK°$Ù±p_îõé$¿Žž½«ëOgàq{/[H? Íë;œ¨Ç;ÜÉìD¼Ï†™ÁçÕ<~yäÆÏss YæŠJÞJ#9©SZ*ì¡¿öØTž©Å5©n+õ½±U¿Py űzO‰îû‚h-|ºåÒ®ï«M9lºMŽågFÖe®ÜŽ³[éî©Î…œÐ3[ß—`K²cá¥çíZÏ}ûÓñÚ¼n!ñ 5‰è:u¤ÞïÞÍþG¦÷ð¯$€_Fž¸Âø™6§0¯•)Ô¾:¤åUïb¯•—±B à£ÇÂåp^—²fh W׺¡8ä :%ºï ¢µðé–K[ø¹½„z^Þ|]9Æ¢µ$¦n˜rú‡žÞFgOÛ›$9¡†^‚-É®…Çz]e)ì؟Έ×ÆÜB˃Ö$¢ëÔ;Ñ$ÜÛÐ%ø+“{ølòÀÖñ*±Ô4fÓµðªòÖ‘Ô»7{mª<§„÷X83íFÍ]¿©BorÝ÷ÑZøtË¥-üj:Σ¹N9†FgyÃ̪ÂAVòÈë‡ÞSzB ½„þ$ÍÂUõç£VG÷ñÚ˜[hyКDtz/rXøLíáóéÇ«”S£„+‘åXQ]už¦kµ¥k;òKj±'ŒqžÙ,œ¿¶ðzÙw¯×½«ê ˜n¹´…K×ʸ"oºX,‡D§Dö=ê,j_­…O·\ÚÂÛ ¨y½§Òî_«Î™‘„b`Oé 5ôú“Ô…lÚ{Õ‹T£VG÷zÜ/[hyК×w˜©Áà anœð¦õð7ÙÔ”Çíªíÿ±_® ª‚@þÿT-++6KË8๠·²ƒ»Íóá˜2ï2ÀŠjžS½avÖ·j³6{ñîÉ}ñK|cjì±.²„Î-§kàmh×THø‚éZ%üF$ +Í,á,äºß¨V×_Ma‡@™*Ꭰç5í°€}G×°ìà¾íVKhÛhþ ³Ê=óÀþôcºG‚YTÃ?Üä÷ÂO[1Èí*q+ªI¸Ú_y·¾Ù߶rû5zñ–µïûàŠ¸%Üm'D÷EHð\ *$|Áta oK¦S›„³Ý"ü«Åï­)ìPRp9›?³o'ïe¹ +ËžáÛîL-¡e£Ú7œwSaBÚ!%äe–ÔðÿÝä×0·ý¥éngébVQ]ÂÕ–z/)ðÛZ\ÇŒ)ül3µ]y$ÜmDz)V—K–ðR¨ g"ÎÓRYé­)ìPRp9›/X<ûl7«ž/;x†o»3µ„–hßðý<ð—GÓ?΂þ¿»"‚ü,ǯ2†.òµ¤xŽ]~Ëå)Þ¶z/–.` wÛ±,‚CŠ•ðåÒU$|2Ï3¿þ%<ËŸº¾xk +;À)¸ƒ”Ì÷jz™3÷eÏðmw¦–вÑõ.:1=d go[Ó?Árž¤5"ÈoÀrú*cˆ_KD÷dͶ+ìo÷Ò[Ö«µ^,5Û·„»íXÁ!ÅJøréÎŽ;i1_sÐý‡J8×7U½5…*£f +î %óßnŽØ—<÷ݙZBËF ”o¸¼SQ³ f–fH‹iøg{ ‚üb,‡¯2‡˜ltcO;ÌŠ¿em±Û §˜;©uC×á‰÷i—„»íØÁ!EJøréÎŽ•‹å•]C7â×F’ðü8Š¿rªòâ­)ìpNÁ¤džtaB³³Ìðlw¦•Þ ô çD¶2má–ÒðÿÓ äb9{•9Ä/=O²Ëòï¯]îz{bÏmUd;ÞeõVÈ'žÙÿeÍpJ¸ÓŽmR¬„/–îì˜ç{*òª—’¯¯zMÞ_º›#$á%íN|Á¦™]‡Öv8§à R«(•½y²³Ìðl·^Bx3ü&=·ŽGwÍCÄró0#@bXH×ï{òG°½ +"Ò²ûÖù6¿‰w—£Þ‹ Þ7»†ÿ[{$ÜiÇ*Ë`H±¾Xº³ãrœC$KÏæÉÿkô! çCV¸•ÆF¼5…ÎXRp)›?ôóJ§38ží¶”Pߢ‰ŠÊtç°åÇÉŒ‰b §‚ÀXN^ íºiÕ%÷½®eôyä¦jÕNù»ýÆ#án;ÖEPHѾTº’ãÓ0kÔŒò.váqЧB>yó%|5…ÊÀ)8‚”Íç¼*­ÛYH8Îí6KoÆȎδ¤`>ç¯>j!¯°ˆ†SA`,oCp)ö¤nR•owçkÓœY,Ñ®Œ¬W²—Š 2jæ±¾$ddǺÉ:W‹Íâ骎›¦9Mj“÷–šë¹¦ž ™æ±Í8ŽOG¾à"ý!ï¬)ì0 {Šù=ñ: +ÇùÙpÔ›1¶³§ÚaêW…DÞ` OÝ%dµ¤>à‚üiÐðÔ]AVKêó Èßæ} OÝ%dµ¤>Þ‚üqÞÖðÔ]AVKêÓ È_ç] OÝ%dµ¤>Ü‚üyÞÔðÔ]AVKê³ Èßç= OÝ%dµ¤>Ú‚|oixê.‰ «%õÉFäxGÃSwIY-©6‚ _ÁžºK"ÈjI}®ù^×ðÔ]AVKêc ȗ𲆧î’²ZRŸjA¾…W5Ò‚|/ixê.‰ «%õ‰Fä›xEÃSwIY-©ôª)v»B{µ%GýÕ"”BªXþ81%*º€‹OmŠ“$Nÿ/hxê.‰ «%õy^57JkíÕR²¼£œô›Ñ-où?S ¢ ¸ø̦xHâôO¯á‰›$‚¬—žÕíN±#k¢1çñ‘Æ}wc‘š}¦¼«1%™+"ìB˜Ã£)Çg¾„¯ ZÓ¶HY3Ÿ<©f¿YÿKÂKVŽf¿;]ªÙgÊk³ú’„Ç…º˜MLãŸ)JøëÄjx¢æˆ ëgéÃY‘c1=O[ë´¼åpiþ—„_(}äÃã"5[°¼°U¥è/Ix\ˆ ‹ÙÄ4l‰ð3å@ ƒH OÝ%dµ,}6™Éøqnš=<Í>ò–Ã…ù_~¥ôgz^¤fË•¶ªý% v!LˆaK„)Jø;ÄixÚ‰ +fé£I?¨¨ÿÝáÿ’ð–ÒóâF? }_£ð¸†?ÿ¢„¿E”†§í‘²b–>™%<žŽÒjq£Ÿ„¢„£„¿IŒ†§í‘²b–>˜%<Šî%ü¡áI[$‚¬Ëñªš ;]eÝv7"·ÂíéÖж!¥:³øytÍ>;ÂLÖ„Qcµ˜XšgSï§UãH¤£~æ•lÆwºÃ,Ûý4Ý£9o20ƒÃÔóõÑ’½CÂË ³5å2HÓÝ›sá5¯Ír¸²Ž5ómƒjÄÌ^¤ª¹ŠœŽM½ß÷æÆÿô¢%9ßZ¢3@E¥õpÌìઠBM-¾VO5¬iÃ_‚Ø8†o$\Ó¶HY3–ÓÅúÓ¦¨Ç9õôvÛŠu—BšY>ø«f#Ù%ãØtQÙwãÀ½TFâM3ŸÃ¥ÕpX\Ç_σšO ÁžãMn‘pïà «æ™ ymf¡mF@Í<Û 1³)c÷i’´ù“Òƒ° +î2”¨»¢"D=Kv@ÕåH~p}‡å¨FÀþfúÞ@3¾”` §‚ÀXk8åÜJëáeÑKÊ£éÿû‘föí‰6²Ʊ±uþÌ#2çhžÙßX ‡L!Øõ¯»(é„TCmï „×F¼ì¢Å-ß›V²o1¯ÏÌm•±ÖÌ· Š 0[‘Ød62^(ÜE&žŸ¹° +ír $:VT„¨…c˨ºMÂßaL9üÕ€Ò¶| óÞ@3¾•P §‚ÀXÎë8¬ÑÔeVT¼ùˆKïµê¯¥˜Éúòu·#§l»Û±ÓŽ1 ­³d¯û<Ë«V»kF9â3·Ù†°—mÿNsX±)ýì}3ݺ²8ƒc·®Šl;\°j³0üíF‰7+žü/þP û°ysæ¦Ï°6a5ónƒ|Å5³iоQ‹úìKñ|“v™š‰ÎÀBÔñeTÝ&áöï0ªþji[¾io _K †/Öîä¯a9Z¼?=‡N¹íDƒ:O ‡·!2Ϥsóc?v²qÓºÃ;rWFâ3Ïìq8¬åH ^YKßöOGžYT˜ËØÖ‡õW‡yh&Ï¡’øjæß1pg/Rïó&Ù;‹çJ±jì2´1¸¢“1#ÏVIU·J8á+åðV#pÕ½¿€¯%LÃ?Õýä×c9YÒ]§oPúe¡–[±¬sj{öö ÛŸ%<ÜÑØ'ó§h¨ŠCÖsO–„B –T\½²…%܈·”çϧyc&(᎚ْ©©;W‘XFÏœ?lØ»,Š……€¾ËÐÆLX*:s„£fg~%ÑYo5÷WÙø ø^‚4ücíA~;–ƒÅºÎÏô̘Ñå~¦ŽÆg>Šy€B­“Í~öEÓ w$f²¾{²ÉmnÉ(Ð aÝZ¤Ó‚nÆ{ž/VYÖ4Î%ÜQ3K2Ò6LS!w®"méRÅ‚§£V‘éÚkHhc&,•ò´…oÕü•DKxd9¼ÕÜ_eoà/à‹ ÑðA~–s¥ÈE+5«"wWYX(Ô:M)šnŒ#v?»ìGSfN<ë©CsPÂÍx/rÜí¨0 yp&(᎚ù’™AîœEºZteWÅvŒª™®˜T±TtZåÇ’øJ¢%<¶Õðí¯=ü|3ž¬="ÈÚ±+¥ëÈJ–ï*Bšæ%á!>°„;ªÅ[Õᕧt;€)…TTÛ'áÓ8ëÄfbJ4Î%ÜQ3_2Êߦ;W‘˜j>ïæÙlöVó茥¢bŽ;;a#ZÂcËX ßþê€_ÀWã×ðA~–S¥t¹/o/X!áÔ¸lÀìÈ&áù¥_ñ8 …¼Ûþ¤Ð—WͦŒ»—0Î%ÜQ3ÿ6H˜îìEʲ’ö +UòÄw”)W–Uÿد×-Uu, Ãý¯ïÿ"úÖÅS™E Ó9dB°ÊŠ«ò>cì½0’šù†Z_ûcXw¹ó¢Š6w ¦3õvͳ#|îr8®ÆÔþvfoÿ Ûd†kvBQõÏÌsy±¾·?"¤Ÿߎp·¤7ÇmZ¾Ö%îŽçü@ûi…1ÇòYµÄâã­=çFøô6´2Ë2œ´HÕfØC9!s”sWý1¬»ÜyQaÅ,ÞŸÎäÛ5%ÏDø¼åp[©ýíG¸ma›Êð_9 +‘PSýs÷Xü»2ÇÏõž5jV„›?…ç?7áQ«â‡N7HÜxi§öT„×ó½t×`üñÞÖ—×ÌaêOöá"û"•Že«y±eW÷èêŽaÝå΋>+Ú™pk:ÓoW¯úüŸ½n«1µ¿Ù‹sÚD†{;w'”Tÿ‡Ã¡¬3s¸V?æE¸9OÂóŸh,ÂÍ|ÖÍA[ÎLÛSŠð¼úûÉö´F¸¼fÛð56±»á"•6ZßâÅM_ÌõÎü2­óÁYw¹ó¢ŠöþnšéL¿].'÷Ä g/‡ÛjLíogö#sÙx†{:÷'TTû7 9¶î Óú1áM5ß™3ù¢ÿüæÐ}b n„?¬˜CWïÛ î4 r[´nK{¶Î×<óÚŸƒýñÖžÖ—×ÌaêOöáî‹Ô´n×÷—ŒÍ¼bõXƒN@w¹ó¢ŠöþnšéHo7\õ©Îpör¸­ÆÔþv^ul!ÍpO‡#ðþ„‚2§Ns‹Ÿ"Å…9Ï>ê‚“"<·ûÖÓ¢eç®çj%En‰ð":DZû7­ù˜ÓÖáÍ÷Ÿõ|‹›¶ý9ˆô´F¸¼fÛP²Wé/R3ÕTUw™;óßfðFÖ]î¼èƒ°¢ý¯§#½ÝpÕG#Ü:ÃùËá´SûÛyÕÑ9„l,ÃýXþB=gfu¢ítýÈœ_§û×ÅQlðÎ×ú»…9P¿ÊŠG½Œz> VR´\ìïG{›HÚ¯3ãW­óûT?‹©¥QWk¾›f¾ÑÉü´Z6}–#·õ´F¸¼fÛÐ|'/ÒÙ…üR…¤y~fsѪ}—»/ú`_Ñê®Át¤·³¬úX„Ûg8{9œVcj»{cý Àh†ÿÖiüs„r*ÏL}J¢DÝš_=Å |0ÿ&iñ¥=‹¯>âÅ.é|÷aZsÓ¶þ0Á4ŒðÙµ’¢5`¢óâKsÒæõI;÷ÅT/»8Z›È­næyZwækF.Þ¯ü°9æç‘ÇÛzZ#\^3‡mh> ‡“鮈²ú©I¹9Í<Æ°ïrdpûŠVw ¦#½eÕÇ"Ü>ÃÙËá´SûÛÝë_¢± ÅÉü B5™SçôU÷¹Uù›XçYñÿTŠð¤ºGu¾[d¿Q÷Ð}b VR´\éò¶òqëÎëÌxàâÜÌô¸·Fø6ïÏ÷þ‹Ñ|ÎZ'¾0_KO{„‹kæ° OƒáäEªdÍöEQù¦Ã© »Ù#ܾ¢Õ]ƒéHogYõ±f8{9\Vcj{%bû @AÌp ÀN(¦âÔ‰«£÷+©[“*lóÍRŠðò7—¾ÿjw¨<Åož¨­Óz¯mï}æ<°zÊmí¬¾\]ª‡%öäª{ƒKö´G¸¼fÓÛÐú4N^¤Öz®KQÿæíáUPf8w9œVcbû%bù @IÊp ÀN¨¥û©³M³LmãVûδw¦E©*t¶J%[•eÙÇ¢ÿÝêãhÚ«Þ]Ï ”(µ± ¸Ü›ÛÌ}–7šñÀõádfjºÆJõ™íÔÁŒ´3>wËö‹*Æ>êgŠô4UͳÖlzÚŸÃ,RÁ¼´Ú×]Íõ#dºodÝå΋>XV´¹k8áÛÙW½yÄðBžáÌåp]±ý”Èð/wB†û>%·%”Rÿ‡ÃËüÚ@Þž=Ã}Ÿ’ÀÛ*‰ðû¬îû”Þ–PHD8lîû”Þ–PGD8,îû”Þ–PFD8/†îû”Þ–PED8?îû”Þ–PD*Ë6¿R­¿6€D?Ã}Ÿ’ÀÛò]¬ÐÓËpߧ$ð¶|×*ôu3Ü÷) ¼-ߥ + ÷}JoËw¥ÀP;Ã}Ÿ’ÀÛò]¨`ÑÊpߧ$ð¶|×)Ø<2Ü÷) ¼-ße +VM†û>%·å»JÀj›ç×Uý￾OIàmù®R°iü?¾OIàm½¼ãõ:þéžþºG‚á€äå…xÖ:ýéžþ¸V‚á€ä啘9³{O[;Á‰p@òòR$ÂÌÔIp"¼¼‰pótœ$//F"À,½'ÂÉË«‘0G?Á‰p@òòr$ÂÌ0Hp"¼¼‰pî† N„¡ŒvÙqEIzÉOjÙþb±UY~ÍñDÛêpúº¨M/˜Ý{‘%Á‰p@"ÔÑ—ÖË8½w¹íí«Ku_¾mÛWMé¢Ìî=„È–àD8  +ÉDxri:íëæ]n>]³ò›Ï‘¶ÏæÖËõÌî=„ÈšàD8 *ÉD¸ÉÛt-•ét©Zã›ÖY\\¤¦5Û¶æêkG«´#•ï¶÷"{‚á€D(%áú¶+/ærso=j}®:œ´>‰mæ"_•WûbŒT¾ÛÞ@€„'‰PKE„W¹½¸i}(¯Ó˜TŠëåHÛ¾jûÐu0»÷ )Á‰p@"“‰ðÏú:ÓúX^´>7=ò{ÆÛÚ”Ö·¸n»ÔÁìÞ@xÄ'‰PM&ÂU}j}*/Ž­\/÷Ch37\š¶¬f÷ž‚#'8H„rêExV^˜ÜýÊjù½‡­­“ÅÍ÷žB3’àD8 êÉáyïÞ¡íÚºùÌî=f,Á‰p@"”ágÕ m_R„;ö–Ñ'‰PQÖ¿´·"´¥Í‡&˜Ý{Êx‚á€D()k„§–ŒÚN͇&˜Ý{ÉD‚á€D¨)k„+­¯ýŽ¶¶O­o‹úÃ¥f÷ž2•àD8 ŠÊáÓÛë(µíªkÜU0»÷ŽÉ'‰PUÖNZ_—MŸ¥ØvÕ:¿_}c¤òÝöžB1àD8 ÊÊቹ!ßÅÅå星ŶÓv1më‹ù® f÷žáàD8 êÊá‘*ï¹e·âŸLl[œ›ç÷`vï . N„¡°„’ksç×v¤-½¾í£]+˜Ý{€S‚á€Dª,¥’ú:QjÓ|±Ø¨4˲Ó!‰FÛÖ‡S–â(Š•Z?ÑÀŸç–àD8 ñ]ÃBå˜àD8 ñ]ÄåšàD8 ñ]ÅÂäœàD8 ñ]Æ‚äžàD8 ñ]ÇB4#Á‰p@â»hN‚á€Äw%Ϭ'‰ïRœy N„ßµ 43œ$¾‹@`æ&8H|W3€°ÌNp"ø.gA™ŸàD8 ñ]ÏBòD‚á€ÄwAÈ3 N„ß O%8H|—4€`<—àD8 ñ]ÓBñd‚á€ÄwQij N„ßU O'8H|—5€ <ŸàD8 ñ]×Bð'‰ï€ï$8H|W6€¿ï[ N„ߥ àÏû^‚á€Äwm‡&^¯ãnËJíc{ßïI¶Jí^òä—›³$Ãý‰!^µ)úf‚á€Äwq‡æ¬uÚm¹j­~~œ…*·7ÿù'ÿ‚9K2\Пâ5›ªï&8HĪS¥Ýz½˜÷…ZÿŸýjQRT¢ÿÿ£€¢¢¢ ävBòè†d§Ö[9U»vèÇiÒ‡?1$^l¼ÅZþ)tžâ Q‹véï.œ}†^Âk % ¡Q)â!´ m&œ~ÉÛöoà× +ž$C/åõG—"bq¡Ì„ÓoyÛþ ü^Á“„'$P ¶]e-ëHÃPî7ªúª¿Š‰´åWwÇIøzÏ—»p¶#½¸W‹ôIx\ŠhˆÅ…2~†Žÿ'vPð$á ˆ}W©èŲWlh`¼±i?o'}sïº3¾Œ¶ü*àÞø# o{¨ë]8Û^Ü«Eú$<.E<„v¡ÍD†Ÿ¡ãÿˆ=¯ô¡·WâäQê•0—ÛÓ©¾eÇÓ ·@ÙæÑYÂÏÃ9ÏòªwΚQøÊcv¨yíâ7' T5ŠÕçNº$‚=JñªŠì8ŸúþãÁÊ7+&þÃ/í÷î¯<ˆj(áÆÙfÌ#®ŸM’Ð>)Á¢øR_¿Œ.3¿Ð8¡*E7ª:„uJÂé÷0ŽŽ¢±Æ%vTð$á 2ël6«qæ+5¿¯Â 宆ÂÝÑ|PNó¤<Žz.ßՌ⓫^V²eøÁÍÉô¢OZo£~[–¸@r%ÿ9#3á[˜éGquå¥5!Ä<¥ÈÍ·+Þ±•ÓªÄÙvôR$Ü +I<æËðw×וåÕë2Ö œPåÌKg£S뤄#þˆŽm¢Ñv~!öTð$á `³õÆ­±žR—ʶjÐè=ÏŒ³Ž˜Ëîù¢1G±)s g¶|nØ–È@Ròi©Ý  +tóJq±á‘S$O¢Ù¡îå[‰óëêwo%*á+œQµ4ÞR,ÜIPÑ”ó 8€òó¥~°°p»Œ5F T9[IÇ®ÎK¢%<–*•Æ¬Íoç÷aWOž@vÛdÜ6rVÌVê#“3kÕ 1T™Tu ãÜ›r5ßùÊÁø`Øè„Õƒç_Ýð@z%ÌÝ'÷9RMŒÇÄK×Ócîç{_ÎbY6JAC½£+Q _ጨÅhƒZŠ…[#‰¿"%x?`ݬܵ:öÒ‰5F Ô¨“JïÔò–DKx,D* Ñx;¿û*x’ð„ +™‚j¢WÌVj~‚»n$FB¹è*Q›#͆NT Ý¡E-ð7]™­cÃc£‹££7ó}šy÷RaPïèJTÂW8Ûªe¹Ã­’ô–ÜÂé²—Y w'Úe«Ð¡ê©•tˆêô[-áÑtl¥‚·óÛ°³‚' OH ‰‰¨¡æ~Ål¥¾*Û–áx…£»ø»ÚT¦å§ª®»nˆ’ðÑ\ƒ5úW;`ËYy!õ„{´T{C•†÷Ð)¨bQïèJTÂW8ÛªÅúðí‘R5ÌÑG~Í«+`õщvÙ*tA¨~ +Ig½:í#Z£éØJoç—aoOž@6Üi¹ ¹ +f+5 ßy€m£ág5¨–¹||Ž:z„„3ï|‚Kxp JÂó§xb¸z{|SßH¹ê¡ÅóŒé]‰Jø +gÛm0¾üp+$e%z]òºáM3ñª¼Ýh—­B„ꧼt¶ªÓ1¢%<šŽ­Tðv~vWð$á ø–{껳څ³•†Ü”øÕÃÛ×îÌ|‰‹ÓÄÃòsuüûµ„‡¢$ħÔôîWI°GüÀ·N LòWm  ½£+c%|» †f!áH’æ' ì]$ץȽvc ]¶ +%C$ÜMg³:ý–üD£èØL…pøMØ_Á“„'$Pà{®˜õÔw•:ÕÀ 1ôà*w7¶;wŸüïÏQë( ¼¯\ƒÑüÔüläI¸ÇÞTí Wùö6ëÞý•¨„Óœ´AÝáá2‚$Ž§ø +;(ñž…ÜŽvÙ*tA¨•°‘ÎvuŠõx ¤c;Òá×à +ž$21°-˜g@â³ÂgŽ5 ×j¤mO×µü0-áK@UÒä~•„{„¹=åÆcíÍ\¾ÝpïèJTÂiÎÚ îðp3|’Ô¯—Ó\dyõB%~—­B„:ïN‡ªÎg}KÂý #éØ&zÍá7à# +ž$>£àIÂ([±ZL9Ÿ’ZwB Ù‘yB%f¦œh|é|‚!×Îfî —pëܪl9 Ôá0§ñd‡Ì‘ðø@†Róë<Ú³br?J"<‡Î8çú`>3F¾goÖÂiì ×V¼c+Q §9 hƒ¾óí$]{)’üì ‚™»^ñ.Û….À •OyéPÕ!¬¯I8žaD£íü|HÁ“„'$P öb¦Zà5òembÐ÷ú\£!f&kˬ¬'måøˆq ç¦[‘W¥e»Á¯#üvºA¾„G2”ÂX²ñÆ@wFUië‘çÚWEvZFLÂ!Ïödå ‘y}âæü_+Þ±•¨„Óœ´AßùáVHàR¦¼–¢9š%Þå —pœPù”—UÂúš„ãÆÑ@4ÚÎ/Á§¨ +9z‡RýZJ±Ïj¤‰3›O/¦í®Òh Ëò³@¦Rd¸¸Åx”n¦+§©ñˆ9{é«\~/ßÌ Ny÷WâNs¶ÝãÎ ·BÒÂçiabÒ¯á•è2*á8¡ê)/¢:„õ5 §2Œ¢#ä}GÚùøœ‚' OH @íǪžQŠ0á®oÆv†ösó º4]WÿÇ~™h©Šaøý_P°QQ3•Y«Xì+ÑžúΙ¹’ÔêïüØ+K9—0¢WÀÚÜYšWMÓRÿÝöp†ñãÖ[õš¡¼ªv˜ÁÍ–Á:4Gów,Žp¦fUå]ÍÊê–Jx*7ö‹tWIÛ—ã°%¹{0SVIï5#gÓe°æÆ’”¨˜«ý0ž.¹¡Uv5 Õ«BwÂèð¬ë-ÂÚÃeé˜qÞÃr~oTp–p†¡Xí ÷ïßoˆa˜w*8K8ÃP¬ö‰³„3ÌŸå­ +ÎÎ0«}ã,á óWy¯‚³„3 Åj9K8ÃüQÞ¬à,á C±ÚWÎÎ0“w+8K8ÃP¬ö™³„3ÌŸäí +ÎÎ0«}çUÓìþ–!†aÖPp–p†¡ˆýý3 óͬ à,á C»0 óŬ¡à,á C»0 󽬢à,á C»0 󵬣à,á C»0 󭬤à,á C» 0 󥬥à,á C» 0 ó¬¦à,á C» 0 󕬧à,á C»0 ó¬¨à,á C»0 󅬩à,á C»üŠ¬(²7›ØVû™&&fÎ߈!Y¡à¿1úÜû†£²ª‚³„3 EìVð+®BÔo6q¢ú'3çoĬPðßýGî}ÁQYWÁY†"v/øÍû;úcv;Åg^E{p_ë‘¥¼¼ðÙ‡w o¾Ñ¥îÙœæb±²‚³„3 Eìfð+>_Â7â›óÚŒ,äå…ÿØ>¼¹àxxo“p*›/ák+8K8ÃPÄî>eµÏfOF[æ¢&ù¥„gO_ÂÍÈ OíÖÂhÄöáÍŽ‡÷6 §ŽÂ§Køê +ÎÎ0±Û¸TÌžŒ¶ÌE;LòK OŽM³s_ë‘ž:3ÌÂxDöáÍŽ‡÷6 §ŽÂ‡Køú +ÎÎ0±ûøc>özÚÓË÷ón ÿ¥Ñ×Ýß#áœ%œa(b7Á¾hÆÿ –ðèÄPp–p†¡ˆÝ|Kø¢ÿ/XÂcEÁY†‚þX³ý©y6õÎŒÇúö¸V?©)›3üÈë[{©6£@úS5í½9f„™cUKuä#K¶ÇËãVí°–‰ì€¸ízšm³#Ìuí4?^n,Ûõ·ÆXfžaØJZÙÔ¹õÚŒ„žú[ú3ôVxPdÖÍšSÓ>š£yDkå#;7g“ôMÝT¾ÁAj˜Ë ÁHÁ­EתpGíÂú ›7ºì<–ÍE§gßÔ[3®ìG:s@g g +òcݵýŒ{ßÔ²«ðFT³Ùdu7ú,ÇG¡ÕÝú Ú5³±üªè%û~¨Nƒ–‰ì€¹­‘žæù²!ÌÉvÆ¢ç ¡…Àž)N–… +{< ¶ fX—³ùµ0d—~É󇬇•ìißAcžÁ · Mjˆ ¢ŒÜ]d^ú… 6ntáy„øïC.,÷R0þ“G?sŸ@$g g +êc=™)­è:vÛõí¡ÏA³ÉM/ÞŽ&¥\{oÔ›f&³ü:ÌXr»û-3Üu[#=U¾ëôˆ9x[±dj»GÓÚ~¹3k3ŠJ¸ïi¸e‹Ñ—µ042c4p&ëaç£îeÍñÞød»À¤)‘A,‚±‚û‹¬´Û…E6;<ÛèÒóXÂè¦{üÆ –z•pßSdK?½Ã’ZhJx­fî³ ­ÎÇ•¯|xÖ> ÄÛ.0i 2ˆD0^ðaQ¤Ý+¬Ÿ°ñðp£‹Ï£Tç^‚Õë\?_-sH¡Ã3÷DSp–p†¡ ¾V¸?ݳËÿ×C;††×ê¾"›Í³ëšGxÜžû¾\ »âf˜_h/°%ðÐnÕÓ^ú_®;;ànkT³Ôò‚™Ãc9Í_6õ*ˆzëd—pßSlKwÆú@ή… WG©h‡i)l}î'€”Ü]‚Ê!Û&-&2hE0Qp2í–q,aãááF—ŸÇF¯Põsé˜ +=VÉXÄSp–p†¡À¿Ö¼ù±ä=å0üØë·²Ùô&}Ú*Õ7þyƒ™q{¶DþÛßk’ƒ˜’pÂmÍÃÞ3GDh¨õÖPu^}¯'áØ–¸„/ª…¦±F;Ø–‚ÕÓGÇô€øÛù&qÜ ¢çf¬àdÚ݆  7úÂyž©|ØÀƒ^›Ùæ ;sqˆ¨à,á C®'!þ@›?äÅ餞ÃC¢v«AGæ“$m×£3n/ÖÀ…é™ c·) 'ÜÖ€§½fŽˆÐpú²3v//H¸Ù—ðEµ°w½¥Öo*Z“B[—Oß·rDy“8xuS'ÓnÁ6nô…ó¸}fK°*zå†57Ç\XèÑ3…˜ +ÎÎ0ø÷ô¢‹3pâ¢LR·©n=ÛúyëZ-Ò‘…ÕË°%õÐþ$Í”„nklOQsD„†Ê ³×ÍÖ¥^MHø¢Zh~`¯&7¿'£U¿ÎÃ\/È rØv¾I<ƒ:‚©‚O¤]B'Œ +7úÊy¼÷FÀ‡–”ý´£ç%Zh'‘‰ªà,á C°­ÓÊÕ‰¬:¼F¨A¼w£Ð¿Í@¿`ÆíeاKNJ8á¶Æïÿ9"B -ʪjš.áÚ³%l‰wöEµ0\d¹¯?³£UâÚÝ^áõÞõ!¨ºgÒc4ƒ:‚©‚O¤]B$l$<Üè+çŒ<:­|–¯3HÊÖó-´“‡¸ÄUp–p†¡À¿XÑßÊ4OÝå$Ћžêa„·žáfÆíeØ’;Ú±©·5N§ÇÌQít{6³1 ×SçK8²%ÞÙÕžÕÖýÌhÁ#ÞÁ¿˜È\‚Ê¡Ûy&&2¨#˜*øDÚ%DÂFÂþrs¡ô:—oÀP C¥wßw´ÐNDQ‰¬à,á C²ÂëЩð»`«–Iøµ²È3I áÁüÒEì@¹­ñ%<0GDX¸•C·óLZLfÐ>7µ^6%áaÚèÌ) ÃþtÏ*x³Ä»r×1´Ð’Oðè +ÎÎ0øGÛ˜‹‰¨Í¯ëÐÀHx´·ÀŒÛË°%µ½dR ·5þ.Ü åúÓß+ oiåÆû6º%ÞÙÕÂ'ƒùJA&£•“aî.):¥ó}p+‡nç™´˜Ì }nF î§ýŽR§€7úÒyÜ ñÌÒ§¸Ás)àŸì¾£…î÷-áñœ%œa(ð¯ölµµp { +qPO $:õ}ÒŒêeÕ]½ÿ©—Ü ×;nkœN™#o†•Yd¢Ö äÚ‰ מ¢[:3ôÂEµ5û9ÑJ”&­,£>$ÔvžI *ƒèŸK£ŸH{à¬} +Èðp£/GüOÑ9)ÿfÈ*3 ? +&á à,á C¶{aµ”üŽíh[mw…Z áp?SfÔ=J`KvÖh†ˆ„Û;nkœN™Ãc±TàdG­mÉÆîe‘pÛStKg†^¸¨!·NO'£•”R Zë†8L*‡nç™´ 2ˆŸ›±‚Ûi?‡i—§€ 7úÚy„Hêª_‰(á¿gŽ(´“‡X|‚‚³„3 þÝʾöè45= ù§ÍûÚôßž\à³Ñ6¸÷"ƒ,IîàH÷t’þ›ÉθÛW²0sh,°ë¥’]Û’ð^©d_?y ·=E·tcÑ —Ôb Ý÷º%o¡ùœh‡ÉòøV.Ü.4i 2ˆD0Qp+í%’öÁz +Èð£/Gðª½õZ@°ü³Á7G:‰/á¡à,á CA|¹xÕ–yR WË%o2ϪHÒBvª¶oBK$é¿ü7ºÿ5nêHW¤ðSX‘„¯DÁ!áHˆoï¥ó¸µ›½Õ§«=ÆüJÂ7ÉÓ¦ÍRšss{‘§4G§ª]Z[ù/šÕûª‘á„$¶Ôº‹¶õf0›fIÛÙfW­úÞÐu‰ á2˜ÅÕ +ÞH¸ÜÑ‘Np“ÆÛýxöÂ<ß,ÍW(8$ þŦ#ï­>@Õç©æÈ™’|ÕW­¸{+]ƒÝ~O1Î{Âu;ÚÀ¤ƒÝuL‚¨cs‘9à Ã8œ¯ ”¢M”>š¥5Z–í6[Em(²¡Õ,Ï´Ÿmk J¬¯’‡£g[„Ñ÷=3cPaÐ4‹ùDi%Ôxwééú./„ëyRQ·ý^'::Ú‰á$ÎVk¤ñf—5ÕɳyO°4ß¡àp$„WûÒmöf?nÄ&ëžì½•®``SYyëÝ"ç Jòñ¬/®­`7’¡aU^Ηθϸùl“UeÚ,‰.¶ÆšuòJŸ…Õ³ÜY8LÒT6 OÝúL…ao,Úz×r}±×©\2׃z¶M2ÑÑùa9]»nõV˜ç{‚…ù‡„ 1ù–g݆Ksv†÷Vº‚VÂÍN_ô¦Z±’ª?(šëí 7ç{ ¿ÇaM.E¥«‹¡Õ±uŸl¤®\~øb¿C"2ÅÁŒa…ao,ªŒÌÅ–.èkçÅ£%ý2žÙX—&ûÃM’l§Öv¶Yç{‚…ù‡„ 1ùšÿtjBÈðî­t¼„ï­Õ\ÕÚréÏo›MaÅ…ÃùRæÜŸAÉ~ºkmå–µÒä–—‹³*f8³Ÿ¦†Ä›!T8èeWµ N)vÕ*·"¹d¶_ä™Çc]šì7‰³Qq¥Íôè„y¾'X–¯QpH8“ï¹ê$üHÞ:é†÷Vº‚^ÂÍE#×.ÅÕ³Ó¬nÎ7›lSËímÄzó&ß;sçËÿØ*¢ªU];ƒ«0ìMϳíeJÈ=5׺ûD`KfûåzNvtvXΖußm¥™8›÷‹ò= + @B~ã}ª”Öy§¯FZè€u´Ã{+ÃAÂUw®¥£Ú©¶Ð†ŸëŽÂ•¢0çNH”±>½ÉVt:_~øDë5lRZ]MЛêGÞ´£0×]Æ伓Kf3x>ÕÑÙa9›§Åöf¾'X’/RpH8Ò ¾»Ö§¾èZßå§ oå`8 HøŽÌú»¯ª²9¿ƒâ†gF7çNù…„—Uuê'’†–ž/?SW£áIaŸÝ v5Aoz’ªÖëÄ(ܾù H«ê9R2›Á“ð©ŽÎËÙ¼¯+Ìó=Á‚|“‚CÂ^ð}iÍi*·ÂGê’Õs1{ïÈÁÀ±b%Üœ×2úC¢vk ´ûß•C¼ñ©| |«$<¢É¾F®¯4¬L›2¥©_ÏÈ.¬fØÄž¢.ÿRUi}ÔÅ©‘…°†>ÚÑÙa9[.IøLO°_¥àp$ø|Gûð3­/•#átêTæ¥Ù{oŸö+^ÂI¬Š¨Þó›TFÓû nΗBÿ–™î—o¾+îž™Žû3ç#äW3l¢T× +·íÄ»r±d6ƒWèTGg‡l™½±Â<ß,Æw)8$ þ ÿ!olj 6ñ½²ºâßû"ç:V¼„Çd?lö²‰ÍÝÃù’8Ü|Ë/$ÜW–{÷5ÐùòÃ4;=ë¢zÜÒ çÈj†Ml8TUGeõ ë”¾ 6 µfl!lï1LutvXÁÖ·Ûög¾'XŠ/SpH8ü+†¾!©NÜý@ÂGÊ*ܦÝ̯ýŽN¹žc;‡ó½ö_a²) ÷&ÇTûÙóå‡ó*ªìfŒ­fØDk<î›óy«¾5lÉlï1LutvXÎFz¥mÉ£«u¾'XˆoSpH8ü;n¬Þ}} 7[ð‰»JxïXžš÷í=C«ãÈÖãÆá|O•ã°Ö4!áGw2­ºˆ=_vØm2¬²›1ºša»Z2ÕN"‡”þA½’Ù Þc˜êèì°’­k •Ý +ó|O° _§àp$ø—œ´ãÖ\™ ·ÞØ£S#iõ 4 ï­„þ¹ËQ ãaN·vìF'¸­½ë¯ú²²1_ó97¶èZm7¿’p½hõøØÃX_vØ3uÞï÷½’Ûa…Lo\RŠö¨ÊÚ‡¯³+_2×/ÿKj¢£óÃr¶'ÕÛ\ý˜ßR&Ïæ=Á|Ÿ‚CÂàßr³Ï^èo’ŸzcOªâl´eKÂRDὕƒpÀˆÃì×-T*iÆñ7‰DâFãF£Ñh4zÎ#m£Ñh4í1n$‰F›Ã½¢£r”‹We˜A>fxÞÿ/ì^ùºãœû>í=4£8YúñÉâÜô¿z‹‡ »}zû=}YŸ“öÚ‡ác7×­‡~Ì—Mø]ÿÍïíÖuÔ|ûŸ—þõÚÔ§[o_·òånê³W˜ro’a]ÎÍð3ŸGO¥_rÚ=˜Lø7wtñͺÝ/ýÇZƒŸdÆ»ø+!à`ÁI8%ý˜7ezëþ;ö_½áC¯ƒÿµR¾ç`ö‰Ï}Ö"Y»áÉ_GÛÃÞ»‰–%L|NÚk£î×wö]/—ðÏü0X¹©×¦>|°×I}Gâ +SîÍ„î×ww=üá =3÷’'îÁd¿¹£‹lêíþ=þÖŸî¿Â¼ø+±q.œ„Y2úÍëÇÓo·?G+ü¿Ÿ÷ûÁxž÷îôWbÃœ,8 ²džõø¹Û}Šû i·?üyߨÿØèÓ_ßµÛ7©OôÝ´ûÜœ«g°•zaÇ‹‚›SõL–zWO €ÂøQps¢ÞIÀR$ð–'75õN–"ု|)¸9Rï$`)xÊ›‚›}õN–"ဟü)¸ÙQï$`)xÉ£‚›ªz'K‘pÀG>ܘŽz(;½©—@þü*¸¹T%`'ødz‚›sõPv"á€w|+¸9V%`¥wøÆ»‚›õRV"á€oü+¸ÙV/%`%xÆ›Šz)+‘pÀ/>ܘX=•€ÞH8à? nÎÕS Xè„>ñ´àæP½•€…^H8à_ nªê­,ôLÂx[pc®Ôc اMÂox\psªKÀ:¯$ð…Ï7û구óLÂ_x]pSU¯%`˜„žð»àÆ\©ç°ÍOøÁ÷‚›õ\–ùsMÂ/x_póC½—€eI8àÿ nÌ¥z0»4I8àƒ +njêÁ¬òß5 <DÁMU½˜€UöH8à0 +nL]=™€Eâ ÜJÁÍz3‹œ8/˜‚›rG=š€=~pÀyáܘ3õhÖ¸4$p]H7»êÕ¬qHÂ×UpcêÙ,•H8à¸À +nvÕ» XâÐpÀm¡ܘ†z8+t*†„N ¯àfW½œ€ŽÇ„î +°àÆ\ª§°@§28 $pV7‡êí,p<< $pU˜7¥H=ž€\§2< $pT 7æP½ž€ÜñÇa ရ‚-¸1 õ|bqåã,pÀIÜüPï' vðyH8ࢠnÌ©z@©Æè(pÀAaÜT"õ„J[££@Â÷^pcÔ +ŒO œ|Á¹P( •Ça˜ðÅjQð\m©WÙÿ:Ä(ØÏ×?êDê‰s@ÂMÈ/á|¨t¡R@"ª$ÎAn» SŽ §àŸª±zJ…íä1ÈkWdË/á|lW=¥€@mâü  Xÿæ˜p +žp¬S`ãêêcæïüNÁ“Jê96,ª¨˜üNÁ'Ucõ ›µ­>t@hrK8Ÿ¶«T`£ŽÔGN^ §à³öÕ“ +lЉúÀáÉ)áG¹¡W pñ_ꃄiý„Sð¹* õ¼‹·ÔÇ ÔÚ §àß(×Õ êjK}È€P­›p +þ­Ò™zb5ªê#kÍ„SðEœ¨G(ÌEY}¾€p­—p +¾˜#õÌ9/©O°µNÁµ¯Z §ê£m„SðÅíÄê­òw¤>X@ØÖH8_FõB½¶@΢mõ±·zÂ)ørJÇâ½òU¯¨º•NÁ—¶«7ÈOM} ¬šp +¾‚ê…zuœDÛêã`Õ„S𕔎Ż ä£^Q&«&œ‚¯jûR½½ÀÚâõA0°RÂ)øŽ:êýÖsZVŸ"C«$œ‚¯¥r®^`` ê#àÓ + §àëÚ¹T¯0°¢øP}|Œ-Ÿp +¾¾R-V/1°ŠÓŠúðø²tÂ)x.ÊDî9­ª€¤eNÁóR>ŒÔƒ ,¡s\Q“–L8ÏQ‰ˆÃq€ÖY.áæZ8á¼xÕýÓ+õn=ò 8bÑ„Sð ©îÔNë±zÁ¬Ný¬¶G¾7,˜p +¾aÛ{µ³z_G½èÃàÛym»¤þ—` ‹%œ‚`™…NÁ°Í" §àXg„Spìó}Â)8ú6á}—p +€•¾I8ÀNóNÁ°ÔÜ„Spl5/ákÍI8À^Ù §àX,3á›e%œ‚`µŒ„Spì–žp +€åRNÁ°]ZÂ)8ÖKI8À~³ §à8`&áL'œ‚à„©„SpÜ0™p +€#&NÁÿÙ«s"ˆab¼Ž–É_Çy¤Ù‰„*Þ…2^…:žÂ !wဒ«pƒ@ÊY¸Á å(Üà³ +ÿbVယ£pƒ@Ì*ÜàP³npÈ™…zfသY¸Á gŠ†Á hŠ†Á ègðl ©Y ' +endstream +endobj +198 0 obj +[274 0 R] +endobj +199 0 obj +<< +/Filter /FlateDecode +/Length 239 +>> +stream +H‰\PËjÄ0 ¼û+tÜ=,ÞG)-ò¥C4í8¶’Ù(Î!_ÅY¶Pm šÆÒ—ú©¦A¿st fèyÆ1NìZì©Ã|pùŠÊí›”q3‡šº¨ª +ô‡ ÇÌ3lÎ>¶¸Uú=r 6_—f º™RúÁ)ÃŒ½Øôj]d»ÚË<äy'š?Æ眎Ö0.z“uÈ–zTÕ^Ê@õ,e’ÿ7?­ª¶sß– û$lyÍ‚î­Ý}éÄáÊ]¼äËp ê&fÉXöRÂ-±ámu)&ÕrÔ¯Àsp +endstream +endobj +200 0 obj +<< +/Ascent 953 +/CapHeight 674 +/CharSet (/N/S/c/e/o/r/t/u) +/Descent -250 +/Flags 96 +/FontBBox [-185 -250 1090 953] +/FontFamily (Myriad Pro) +/FontFile3 275 0 R +/FontName /SVWRWI+MyriadPro-It +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle -11 +/StemV 84 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +201 0 obj +<< +/Filter /FlateDecode +/Length 274 +>> +stream +H‰\‘ÍjÃ0 Çï~ +ÛC±›%-(Ý +9ìƒe{€ÄV2ÃâÇ=äí'Û¥ƒlý„ô—%›Ÿ›§ÆšüÝϪѱÚã2_½Bèq4–í ÐF…›—N5uŽq·ëpjì03)Pp ~…ÍIÏ=nó½±#l¾Îíx{uî'´Ô5h¨ÐKç^» 'Ù®Ñ7aÝ‘æ/ãsuEò÷¹5k\\§ÐwvD&­ä…VÍÐêñǬêõÝy&ËgÊ‚ “ÕCb2L2W™«È—ÌT[‹ÄdˆËÌe䜌ùB"ydb7·{c_ô|pZ]½§yÓ§AãˆÆâýÜì€Tq³_¨]‚j +endstream +endobj +202 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceGray +/DecodeParms << +/BitsPerComponent 8 +/Colors 1 +/Columns 2002 +>> +/Filter /FlateDecode +/Height 1197 +/Intent /RelativeColorimetric +/Length 63837 +/Name /X +/Subtype /Image +/Type /XObject +/Width 2002 +>> +stream +H‰ì×;tÛÖÆñH²¤Ä÷öÒdª3uŠ»ô4‹Ý¥'bmîÔÍÞœÉ'K2Õ“”¥êÍ[<9SÆlÚÔÉ[=5ç_LŠ"(ƒè½{ñ")ˆÄ%Áï?ø€pq/ŒøÉ'!„B!„B(mXÉžB!„flc¦dÏ!„B¾fCª#„BË× äÞäÁt„Bh9ºß››[þ<°Ë^B!´fÍ„x€à[[wxë !„Š³iŒOð›¶íÉ£.{…!„P²›$yâLí¡]wl߶‰ºMºìu"„BImɃ§jïÙ¥‚"ûwêÜtÙËE!„×TÉÇ}ˆ[f§Óé}³ZFèà`?NQÔ™é !„šwÁ–{(w ··· gpg³Ù+ï-—Ë×÷ ê¦é !„š[–»%w(7!w·/Š´R©Ìª‘¥b!ŸË!„âO67h‘Y¾)Zî—œAÎw7/Y€W«Šòð›Ç_‘ŽÿyÂúŸìû!„lsЂ +ÂÜm9§œKnAn3^|øüèøßDïYn«FUC!S=‘ù-ßôYÎ)§’pÉmÇ«ÊÃo??:šq·è ˆŽB±Ñ“–ó-Žù6ÃܶœQž!” ’SȕLJGÇ'§7VÜ-:HG¡XƒèIʧ9·ü³|Çm9£œJN)'’?<üÇñ¯'Ã[QnuÒB(Þ zRòb¾éÁ|×Ä_,–+UåÁÓ×ïäan‰Þ²Eé!G}òiÎ8ß19·5/KTó¯~xÛ”¬9 ¢#„PÌAô¥ÏÇ9Õ|ÛÔ<%j®|úäød(›r«v¢#„P¬Aôå.óÊy*•65Ï3Í<}ýN¶âbˆŽBñÑ—8‘s[ómª9á|ßäœiþû§?5e î ¢#„PÌAôeMÐÜá|‡ržJ¥MÍ År¥ªj𫞴ɬ赡qIî9/*úzD?·ç6ç)“ób¹¢üñåŠsn@t´]}ܘ~\,­ƒèô ×g=3ìšÍ3çÔó½½Tz?“Íåç?¼“Æðƒè(i5Úm7ß×äFöHªxJ³Ý¶ÿ¢6…a[ây-ñ26ãCSøsØ*™Ì°M«[‡¹&;ël¢¯C8Ã7ðqt‚B.Ñ[ôÑÒpæ N©EgÙaW´ö^Ó?5R[õ.pÒúÉm2ĈŽprŽ¼ z¬mx<'œïRÎ2„óREùìÛS)þÎ?ˆŽ’•ªÓûZWùžÝÑ +9¼9²ÿ+ 9cÃPkõÞ˜í×­S/Év—ŸHÕêÙÛº5Æèlò}ñÿÞ…uØ0Êl¢¯ƒçŸAu >!hB.ÑäØÏ/ð\/9ª…^Ó?µZÛ^á Ètÿú{ƒ¿4‰AôópN=ߣžg²¹B±\½ûåë #)At”¤êûÎæ°ÑGûUÈñçcþ¿êÙµ½lîWÉ怟IGUù¦=FwâC¨g¦E™Môuð‚gÓ¸FÏXŽèômgÄç`/°>2\];ø®éŸšð̽œiýâKÁ؆ä zly<'œïRÎ2¹|±\Q>ûö?F‚‚è(I ð ì}ùp|8ƒc¬õz&BÏÚM7?’´K&͘½ÔÇö‹ü}\wÆ×çÞÜ4FWÓè']£µ¬Ã´(³‰¾^àl®O^£gŽè—äCŸÏAŽ¹îuÔ>äHÓ>Øø¯é›Z‹œ£÷;íd…ƒ™Öß!gÚCô}gȢǓ‹sÓó=êy&›/”*Õ{_¿^“DG ª%ÞÛö/LúïÞ¥‡]°Mö+ÑÌ<ÿꌎ¨¶NaLv¥3ÈÈ3WØ¿˜uý®÷¥å +¢Ç‘ËsÆù.åü “ËËåóïÞßÒÏå ¢£5ïí¡¹¯A·›AG×ÉÓl[_§¿>-MØés›Òm +ÑácÖj}ÃzM ƒ\Ûÿwèû~wÒD¿ál¢¯C,Htÿ akrDovè G]¾À>Ÿ€jð—¬Ù¾(=è}dÚú!úZç÷|zN8/”*ʽ¯ß ç(é²ÑQ‚‰÷¶nî£277µià|jŒM ñtLöBP×u{|pô‹à1&ˆ~ÃÙD_‡X€è'„­QÈõ.eŒÕ€’ñ®ì1ÈÞÞäkº§F_ËBE]?D_ãDÏïPÏw)çÄób¹¢|þÝûù)ºLAt” Ü7·ùX§¿ûôÀ£)-þñÊ°Ý2„Ÿ¤µžaýú¬]’­ssgÛ°…Ñȱ|Œs­1ÂE¿él¢¯CÈ?› ÂÖXsít÷ü|:Wœnø3|Qºx”§ÐõCôµMà|‹rnzžÉæ ¥Šrïo?ç-é²ÑQ‚Ò]7·yGSÑÇaG„]ràÛ2DTòIuF²öSÜ"õ1ÿåY3EjL#\ô›Î&ú:„Bg#žºF!Qt½#üÁµÀ°·ç; 6á‹¢L|Wu^?D_Ï6|žÿŸýòN9øø=ƒ æ1ÏÕ]ŠLR½ë^—T™4™TWeæšLšLªt×]ª»*W]—4™T¯{©.]ºë®K—Î3H€@†ÒfWw%­%߯°µ«Ýo¿oûCåråºzS«7š­ö»¯ŸöhТFŽ}¶ÝSžš!j ‚Œ9›ÙžÚW˜Áû’Yù‘Lï­•F7M`CäÐí³I_G@’Ñý ¨ÑÇŠ2Dæ× BêÞžu» +3f³ê“_ØšõÃë&ÖF?E">¿,W®®onkwV»ó»û·h‘£GbŸm÷T§~Ô@]çäGL›*da_aVŒ}hø‰×7ñ1:CäÐí³I_?6.n‚°Fjtžšð÷ƒÈO@¢Úï%®ImdÙ ‘꣟Ÿ×êf«ýÓ¯Ÿ¶wäaFŽi<Ú+Ùí4Ic3Xż ‚ó $Ó'—½˜aÏHQÛ™Rb ‘C·Ï&})nF‹Àèö¥R"„…z]yH?¥iòš‘Ôºý…³ö2ükB\?ýÔëœúüºjûüþáý?iyX€Ñcb`yO¶¥x}:i=ÇŒâè»f_a‘ ½wKÓ@ïj +‹û=Å94E6é눛0AX#ctjnìï>’=O—RÌ€D£§ÏLçÐÚ´~0úiñyÙñù]£Ùîüæã¾åYHÀèÀQÑ7œÛèû]³ïŒaeP›8fÀ"Ž!´ë9¸ËñÅ94E6éëÍŸ ¬‘1º½KóhHÒmzçÎT^³fœÑÉ…1`Ê\§¸~0ú)öùe¹ru}s[»{Ójw~ÿÃË´p€Ñ#CêúTežfú‡G1#1oz{6Á"Êy»´õe¹VéáøŸ [=E6éëðÙÈèÂX£Kd—p/’ÈxØCºiÌQŸ™¹áF¹ÈF´ aý`ôÓAàóz£ÙjòåÓ‹Z´H€Ñ£‡J ÎHKˆ‡0'Í}……&\F_2׬È;cÜWGCèÐÙ¤¯Ãc#£ kd`Þ‘Æ4r@‚ÄÍÜp£<Llaý`ôS!Þç5âóû‡wíg`Ò¢FŽž1}ÒÛ3²­1庩*\ïc¡ U:eHþŒ¼ª²qÌ¢¢wƒ–"›î®3ÅÙpD52pF§)x?ütë䘙n;~Æ÷룟¼ÏKÔç×UÇç÷/)ÐÂFŽƒ>꺯y—ö‹ˆÇÓL¹žÆBJdÊJc_Ym{1oˆÂ&÷ K‘Mw×™âl¸ ¢8£Û®†BÒ «éPQ~æF%û«Ó0Ï|aý`ôS€ñùùùE©Tv|~÷¦Õî|þ}F"- `tàøé™ôY_¡!‘zDåcÝ~¹³= VäzîŽÇbjÎ÷†yKÔIÓôôÐr¸&5]S–CÃRd³óLq6ÜA ¼ÑǤe„s0˜sG×ÞØ6jŠ§ŽÓmaûs×ÔF?~b}~ëøü?¾€2 8fè¹Gv·ìtëhn_˜}w8›pèÌgœ"S‡à•Žš-qôÝ4cl/©x–"›gŠ³á&jdà.[þ!¥9÷hÒ…È¥AVŸÒµMë£;q>¿¹­7š­ö'_=¥âÁFNÞ‚}ê͉Û-³Ýæú×F‚íŒ[Öø¯Ôš’÷ë…‡¥Èfç™âl¸ ñ52ðF·›(”ýYeê'ˆ¶ÅF©ÌâFô¤ÔF?n">¯\¹>x÷ÝŸ$`tà4Î-÷™_Nä {ìõš“à @ú~#dÂ)<Åö܃MMYÃÕ5Œ Û>›ÝgŠ³á'ÄÕÈ@·%0©=WçsIÃÝyÑt•5I²© oõqìA[?5ú"ntþ€Ñw&Öç5âóûÎ/>ìÁ‡ 8”BÏJ/Ô++¡É€íê+ +#ýÂŒ4¹Á6’òL¢¨ýÍb T2VŽ¶}6{˜)Ì&4!Z#w“ß2·Ç‡Ôˆ›ƒ½WÉáƒÖ®É¤Öí‘kòñ ©˜ú#»[Àè;’àó_}Ÿ·VsŒÀË#[Ï‚¦D-·dòŒ¾ŒÏ_;>¯x>ÿ1o©æ +€—§GN4¤9É/›Ü£ïçósâóràóy+5gÀè¼<29mæAS#M%¿lrŒžšŸ¿;uŸƒÑÈ„9n{ÈÈ3Ò0NùÄ£§%äóKêó[Çç[äíÓü£*=o, !¤éôr%çQž€ÑÓqæ +Ýöùø<€,P¹“gÞÏ;Ÿ\£§Áóù«ÀçUÇç?û|nF äÉÊ=vLmw29FßžŸ;ÎU£Œ@VH +áÔmN£oK¬ÏkÄçàs0:@ƀѷ$ðùkÇçWÕ›Ú]³õðé_úy[´H€Ñ2Œ¾g®Ð©ÏÏK%âókâó7Äç_Ï9ÀèFßÏç¯B>o?~ >FÈ0úæ°>¿(]–+ÄçõF«ýöÏOyû³x€Ñ2Œ¾)1>¿µ}þùó¶g£d }3Î\¡¿¦B/•ˆÏ«ÄçÍvçý¿óvg1£d }<Ÿ¿ò|~u}S»kÞw>ýv‘·: + cÀèÀúü¢tY®PŸ¿i=<þ©Ÿ·8  cÀèk9s…þšÝóy½Ñj¿ýíyk³À€Ñ8$ ]Íp¹¡¾î?*} žÏ‰ÐÏÏK¥råªz[o4ÛÏþ•·4 c­h f’“ñôÅ clîÿl£'Ãúü‚úüú¦v×¼ïüä›EÞÎ,6`t(0*BJüòíÕ_"®Ñ‚L(fˆxK³ È"ƒH§éÚ²…ñhïQÁèIœ¹Bw|~Y®Ÿ×ß´ÿð”¯/‹8rä¹ó¨º>UóNf[†$qKŽ½…×]ÖÊWº®#…û~'Ä"X  /fiòq|À™é”©ùâõ*'…ÏFlᢇ!a«ºZxÁ}FOÀõ9ºãóêm½Ñj¿ýõ(ñÀ£G΄}ÞWÏy§³Ï4é^ì-¼Öèˆÿ®kŒFâ +,Ȇ +†ˆH³4ƒLf³â@g?^Åéä+ŸG›èaHØ*û'È u¾ÀèBŸ¡—+WÕ›z£Ùî|öÏ‚;9ÀèÀ‘£ñO¼vPϹŠƒZiª/”à^kôPåØB±q7E° *"N<ÍÒ Ä½óª¡U»7T¹áÿ€= [Õí®ÈÀÔù +£ 8s…îøü²\¹¾©Ý5ï;ߌ7¶Ú)FŽzXE"Í¢¼–wBÛ Ít]u¯{|òx#£ÓÊ• ÒLûë>÷LÊÆÝÁ‚l¨`ˆ8ñ4K3½Îƒ–J«²t4R”ñ”ÖèÜó+Fvá†7^ô0$lU·;åDì0z<®Ïm¡»>¯7ZíÇ/þ—•0:päÐÃÚ}C”8h©Œî«Ú¢š'_ÃúCB‰ïÄ€ÄR¹^Ü–46ÝåÙÊf¦ˆ†Ä­’ÖhOù{€Ñã8s…N}~Q*W®ª·õF³ýö—ÿÉN‰8rØÃZ60óÂv`ìfônŸÖŽÇé×_¿`F§~îy iI?N9¸+Ï‘ýŸ«|Á|梇!q«$kù{€Ñcð}þšøü²\¹¾©Ý5ï;?ÿ{ÆV=;¿¸º¹ûôë¿ü×`¸ŠDÚs¹›õ¿õKõ–¥c™êXŠ†A¡Í-_zº-Sײ“W¢½ìÛ(bzÞ´0o{“D ©TSüÕ +Ô0 '5] s®3sh¿t|Ã¥žª°œ « Î{‰‡¸­~àxjz ‚KF¼íI¿ a•¸îŠ,‰ý34•JN4NvªHtWŠçèoÞpžŸpž_^ßÞ?~?~È¢”"Ñ£ö\þ&®¯ƒ¹ýÊ‘À_2E'´£Ìô˜§ +Yfز»Öí•i§<uø4•þìzÐoð´bêZ©Ã˜ã¯6×=iáOʇw9&óÊlêRÕ*Ïç‚ì¹µÌÁr5Ø«Ôõ’ò€ Õó»J+M=F2Z­Àk¹õUÏš˜.”¹Œ;~©øF"ù<Ïgp²©ôÈL8•XŸÙö¢“¢“kÐP1–bã'/k/ó™RèÏÐT*.^‡59Ñ‹‰Ž¤x.€Þ:nŸœ_¼¿ùpÿøÃr—¬; E¢Gí¹œÍ`U GI‡¬²·8Þ +oc# ¿®–]Ñ‘NÇÖPmöâʪY*¿¨Œî +EZ³\\€±&݈ùäMºÌ¹)¦ enZæ5¿~|+'2§ ΄«®ngݤæ*ðèŽóô× ¡b¥=% œ§† %œy†–(øgh*U"ñ¶Q$º•:ðü¨Õ>9}ûîòêöãÃwÿØ9î@‘èQ{.¼YwàŽ™ËG¾K¯õ~ÌÌQ|…Ù¾K•`Xità1E–sùÜg#¾ëŠ3ic™ÁÄÜÕN›ˆîOÈ\*g>ÑýøÒ'³¤¡xÂÄÍû…D¬A¸b]ä5I!ž9ÎdÞŠkÞØëHœ?Cc©TwŸé…ŠD×R< µŽÛ'gçW7wŸ~ùåU€·÷ŠDÚs¡Í:…í}#ÿèâ|s/ )à«( 5º€áܼ¥•a)cµ[]/àÁj©G%>+Éd{i.¬‘èþtÌ•2ãÎ<4Æ'}¤Ä„LÙ©‡H?‰N¯ACD=ÞµÀ!0zך;›\•9ÄŸ¡±T\S¯{[E¢+) sžs sž¿}wy}ûñá÷ÿÚ!åI‘èQ{.½Y÷‡90SïÌ+~=t©«( ÙŽÝ"¥žè¾¶0ãš›™|VO|ÔDŸo4øúÌ\Y©éˆÌ­Ì#zc|ÒqŸ˜P”aP‘~ =°áˆØT©¤£ÆD¯¦©ÛAüK•È*dÉ.‰.¤x@?js Ÿ_\ÝÜ}úÕŸ^‰wû¯Hô¨=—{_Ó¤ìTè¶'·l¹ñó‡Y° „Á<`ÄŒµ¥A€¸âeV]cÙM5¡\Œ~ŒÎtµÌCOkÝŸsTp&Dc/%zh ÂA±gúˆ^ÑQã5/‡ûgh.ׄ*ïVŠD) sž¿iµÏ/¯oï¿ïmµƒV$zÔžËÙÄ— +”‚2EnÄo‹Š¡ÌáVÒãÔaÕ¬gRæàIpeê[™f€ç nº©òšu<šÀžGt;]-sSóšu8¾Þ`0@>ÜÊ€+ï$C?†­A8"˜ÔPÌ}¨ÇƒÁ0‡úâÂІæR©— 9ÓK‰nx@?j·OÏÎ/¯nî~ó×­±vÀŠDÚsÙM|=·×µÿ-DOF•è,4€à9ê®,}KðŸÑ°ôM—_> qg×€÷©ÀžGt4›¹‹)˜nV·¦âK'[’èCSöR¢× X±'\üÔ„3Ÿ¸ƒè?Cs©’ÚIb'ŠD×@ç<ç@oŸœ_¼¿þpÿøÃø«ÔŠ ++=jÏåoÖ Ÿ&¥üXèIo)û×’ «mîÆ€…[ó€烹 ’3| \—SèˆÙN‰¾0ðµ_ǹÊÒD‡½Ãýø|¢«5V,c³IÉßFõ¤ë™ÃcÑP’P»-U"ÏÔìåŠD—< µŽÛ§gï.¯nï>ÿø\tE‘ŠDÚs…‰>`©ÿ?«óeVÊ^ìÝTÊ⊅ëxp´á“?CyMEÄ¥îg»$z¢èiÖâš±ežgƒòáš@&õvú±‰èäø¡I­§{ª']Ï\ä< :BȬ«ßrª¼[éЉþ:ç9zûäìüâý͇û_|Y¾åI‘èQ{®¢SÙOt¾¿aƒ/9mëxŽrß²ŽXäÁÑLDÇVé;wO3Û%ÑǼaC§‰ã~=Ùž³ÑŸÌŒl+¢×ƒ&#ÂiZ 'i‹3‡¤TGÈÀXmœ™(³—ëÀ‰Ž€Þ: _^ÝÞ=|÷Ï×dÝa(=jÏEoâ@’Œ"z’¤S«fŒ …XëKž”é€ÕçM#"œ­‰.î“Pš&¾NÅa¦A$úÔt°—=¸õˆŒzN C†+……3‡tX—è#Tª³—ë ‰®x@?jÏ/Þß|¸üòŠ ;E¢Gí¹»ñ†ßÿ¨¿<£‰.8;…N]®íû–b,@GNrxã˜,¢•‰Œíèpï¬Ò`š:¾>žÇ%:âïÆ”½”èÁ5¨Gd”ò†µ}-XàHàd>C^žKt\*®%M}«-tÈDW@ç<Ó:@¿º½{øüãkÃî ‰µç +lâÐ<&†³Ñ¡c¿p9ÍM+@§ ,)Äj^ÝR +ÀjÀ9µ Â鸡}uºzæ“ +EN¥©âà]¢[0ÓyÓÁÀCkPÈ +ŽSv£àeƱÉBÕ‡gÝ)W '­êp‰®x@?jŸœ¾}wyýáþñãWÄÜ)=jÏØÄÅ>ßõÛ™CŸ´‹Ç?‰&¾Û—Úa +×ÄaiKxp”ñÖ¹F‡£cÆ0œ±ÓÒ¹ÒÒÓa9™÷ RkažýøRfOŒ9D×HäM?§× ©b ¦Î>R2§ÔX.ÙÚÏ\ŒÊˆ’ 5•JVdIXm¡ƒ%º:ç9zûäìüâêæîáÛ?¿áM‘èQ{®Ð&¾âí¥¦`7_åsöò)›J¾„õUc•MÃ,ý‰XÊ*ãd!?KÃ(Ç)8ÈMÃÓQ™§ƒ,_­“­ccMÄWÂÆ`Ru‰ÎV0¤ Å[û!ÒáÀÉ5hªØÄͳ ¡²M>äŽ{£¹ Ê]s¸ý Ññ¼RÉ“Å”°ÚB‡JtÉsúQë¸}úöÝåõíýãïz;'Û¡*=jÏÚÄS 1Û¬ò<Ÿ­™sˆžóׂ˜:æÊP`„­ò…x({ aiKyp´ÞÔU4“®m/~‹¾UÁ&áéê™;šÛoÜXñA[L²9o*&ú`W¬68äg=8¹Mñ¦½÷ËZŠ¹ÉÜ®9šÔÉ ‰è¡RÉø½ên§Ã$ú7è퓳ó‹÷7wŸ~þǯƒ*ꙊDÿÉ*[®VËï#‡¨Ð&ž¤î6.o¥5¢gh@¡¿t‰ZKs‰d$bIXwLÞJ“®xÛ^ì´£ñ•‡§Ãš¹ßú +WÁXSñ¶%e˜èƒ¡%hî¹ +=8µM8¸¡‹×‚•ÙZ[ó9£Qÿ¼R%ÉÂ.ЮtDW@ç<Ó: _^Ý~|øíßYÔΉþ“\,ØæÅÿ¿¦L_Еs½‡ó²/Ñ‘¦[9FȸҭÛêXZÄÒ¬Ä ¥`p•Ú^Ç©:JTÆéú:Jn²ÌÝXk"¾4W–¹Ø7&ƒ$]Éžõ +‘~l +œZƒ¦Š£³_ö\®g>{öCZ­vµZi¯S87Ó$éÒÄ¥«tN—Î Îp—.•óü œÊ]:w·sçÎg… ¡‘Ð.˜à í€X˜§¸çj˜yç}_Øy@L×^™Ï ï +vÏîè¤ T­zz2°×TÑèÈçŽÐÏjfë¢}Ý»<þCM+-θÑc‘çsâ§]^ÀûÃþjƲ#txqPÄ݈(ËacL{Æ\Æ?e{t +^)ÉþÓCŽ°Û@,ìÁÏA,É¥û· & !•\MÈ–7àDÉ_ÿ'.ìK9ù¿{'݃=S,«‹‡B?¿lw{ýág?S%$­ÑEûo&$Ï{óŒŸö<±Tx’.©±wĹYJn§2¦ei9ï ì?D1yZ**gô€ÐkõFëâªss;}%Ó~e$¥ÑQÿ·ŒŸî"¢¢þ,Ž—Ü?Ñè{îˆsøÙ/%ì3ãpŽÆƲ ªvl3ø+ªšÑ‘Ï¡ŸÕÍóËöu¯ÿðÛ¼’“Òè2\”üáøöY¡þ,—]«÷Ü‘Ien§:ÌìgZÉuGÉÞQe´ZF?AB·}~Z«;Bïtoï‡ù˜³íª7z êÏêxеšS-¶–¥çºáÒ² šÃ1•2úNègµz³uÑîÜÜ ¿Ùäï»ò““ÑEM×uÀüÏ‚ äܨ?‹£¤¡k57:§Z¨öC-æ¸ßØ´,À欹 +Á^ØÜèZÍÎá¼=*btO觧5(ôN÷v0ú«˜·æ*7zas£k57:‡óö¨„ÑOÐß9B¯7ZíN¯ÿðþÛ¼%W)¸Ñ ›]«¹Ñ9œ·GŒ¾úY­Ñ<¿lw{ýá‡òv\µàF/lnt­æFçpÞ0:òùNèîí`ôÅÏy+®b¼Þè’, îÇ +Xë+ D#í·æx€®¯wñ%;º¦NRmì^Ÿ é:Ê$z1.·É.~qVº®0%^f•W´Õ$ÒÝÎ-ºÓXÆ* T ,€]©"†ƒ¥}·æäî$T•¦=NY)¿Ñ‘ÐmŸŸÖêÖÅUçæîáñk5oÃUW}kÿ6¡‰EÍpƒššž€£„bj¦ÁXášðãOÖî•rcAÕ[*enðÚ&m²|ÙÍ57³ÈyA"­&’ÆèÌg…G0±[²«@Ò¼ôÖ»7žéÆÜÞÀ’ª¢n‡SbÊnô_ègµz³uÙ¾îõ‡ïÿM8p9LyµÑဣƒ…kø‚I»Dé‹Ú[¹çáÅ—|‘êt»ì¤äO™Rå©ÔA&6}+cSäµ'iŒ> öÏG£€P¦§¡‹ãPÞ‹EYUr{8œRSr£…Þhž_¶»·÷£Ï"¸¦°2úÿÜõŽh‰´ëÎèSÜöÅЛL2üë:ÝÆ`Pir‹Tê,0 ÔðyÅ'%;£ãh°ÏáÁåAU%¶‡Ã)7å6:òùNè›ÛÁèË_ILJ-ŒŒ>y‰FF×Ǥ]}(Q¡ÛŸ½B$¾P©N·1dF®Z¦È-R)ñõ#T «¼b º#>¯3z´•ôJ3?¤ª¤öp8%§ÔFGB·}~Z«7ZW^ÿáý7òñÀa +£t@kïÌvãÝ nuÄF +…³¬•3 ΀kL ?w¿ _œ8Êáæhh æ²8‘š;Å+`_n‘JŸdOè:˜ÊòøŸ™A«1É+&º;âó*£»lXyušÂÔð5÷ŽXÆ!U%µ‡Ã)9%6ú‰/ô³Z½y~ÙîöúÃß[œ<`ctˆ¡¢ªû[ ÌB‡{ècÍFpv\tåø^C3à¿@°—(k%ÅÆŽcŒ¥èÿ–Ü f‰¹E…êfk=OütÝs‚¯c‘W$"Y­EùH®uuøJ³E­šºï7êU%>/N¹)¯ÑƒBoØBïto£?~´8¹ÀÎè[ÁRÐY¿ Ì"[n>»C„ø†„ÿIPl¬XæR®#9­s‹ +ÕýäÔñWYë,òŠ$@$K£û¥zJwÐÆáA=‰²ªÄç…Ã)7¥5:ò¹/ô«ÎÍÝàño¢ÅÉfF_–¯àˆ8܉ÖL|š7fíìíÅ71¡Sn, Ø2ôE´¥Ñ%´.ÁUº„­c‘W¤ÕDä¤;|¸Ñ¨~¸€9 ªÄöp8妬F÷„~zZ«7Zíë^øþÛ¤CŠÃ VFßW»ò hŽhMd„exp wÞðEÿ$h6Ž06ñ +(Ž3°.!I‹`–W¤ÕD²3z°÷E+üBãÖ.¦¯*}{8œRQR£#¡¿ƒBož_¶»½ûᇒÎ(;}þ¾ÚÀAu7@´¦áŒáŠDîØbñƒŸ†©6Žò§èŒ>†ÙâïÞŽfyEZM$3£‡+X¡ÁˆÝª¦é«: =N™(§Ñ}¡ŸÕ¶Ð;ÝÛÁè‹_’Ž(CØݘ„§8°0Éš> ñ ‡ý¥ùMŽnã(:œXGgôüm +ø44ø¾d–W¤ÕD²2:VÁÅ +—ªRÒWu@{8œ2QF£ŸàB¿¹<~­&P–°1:îŽj»’5ÑŽ|˜!ø†„¿L ŸE»q”H*tF“ÎØ€”¸u‡çE !+£cOIKU|å¡UQ´‡Ã)%4:ò¹+ôÖÅU§×xÿ¯¤ó‰Ã–lŒŽ¦i»’5×p,âj4u¶7>ýÆQ4:zјÇÅ[²Ï+¶rBdXâ^at‰´TaUE{8œ2Q>£ï„^«ÛBo_÷úÃO¾O##Žhô86“1ÐTÿ›—Ÿ~ã(Ý@íŠÆØ–ÌòŠ­œ™8m‚_z…щK™UÅΩ¥3º'ôS[èÍóËv÷ö~ôùÿRɈÀ£=¶FË`¥ëúv?µÑÑ21š‡ +/èqëÏ+¶rBäB=}UE2ºQ”DöóFÒŒámgÏ‚² ýݻӳZ }0úÓÏûŽxN&Ñè{óbhôñ|ŸÖèZFè‘/lÙç[9!rqŒ~PUy]m„ýs*"…NS ò÷¢ÐÙçBÉŒŽ ½ss7xüòWÂÁÎɘ¢]ÍzÑUco|J£#£„<ð–0Ë+¶ò½Û8†Ñ«*£O577s=ßó¬:TDŠœæÔiòÞ§"gŸå2zXèW^ÿáýßUÒQÀɘbÝXîO¿±°&ïÀÚè[öyÅVNˆ\£ZUF—·Á„^f± *"ENsî´x²oF‘³Ï‡2ý$(ôÖÅÕu¯?üäŸòYÀÉ–£=iWb|êÇÞ9nêŠl³ÁSIatR¶ +¼ Ç¬{E^±•"ÃèW•½Ñþà¯vY/õM8Á· ›"§éÑè/pLL|ò ñ©7^¡*_ÔÝùI…Êècˆðá±À¶d–Wlå„ÈiŒ¾Å¦)p”…Ñ®*s£Ã4Lm&==‰3”ÓÚ»6 o-³9ÍñJו½3ⲟdûˆòÝú©-ôfë²Ý½½ýÆádËÑ>M|ò ñi7Q‘›`i‡ýŒÎò4¶dŸWlå„ÈiŒŽÏUà(£^UÖF‡%nü÷ éÙùí9‡=â²çFs ¡¿CB?w„>ýþ§Xáp2æˆF×áØ<ñÉ'ħÝÀŸ!Åjt(‹ðå±Æ.0Ë+¶rBäBýðª26º`ØÑ×Áçn®á¹Ñó'.{nô·†/ô³ZÃzçænðøç_’´ÃÉŒ\> MBOû!ƧÝixšcôpnÑøhÖŸõ46à‘}^±•"Ó…4±iÊÿÙ/›´Ç"Ž?0! É$“ &™L†a¬¸Ëœ€¬8\.À8;vì8'à±dI¶l·,Y²[MW·>ªÕÕ¶^[öûÊÑ%µ«ë£Õî_u÷;Pûýüª®LôD:ßÛ;€xU39ýöre?}d2þ¹ú›w߯O@gÒu#¢'jÀ¼á.ÕXqrçþû.Õ«o˜XŒ¡r³ýë]Zú]3=ί—³rÂóCˆ.榙®¢Ÿ_Õ°D÷£ÈHB5]kÓfWm=iËÇ]òª¡LÅXÌ:ò#ÆØçÅÒÚÚê÷¥œa¶‹¾4^ì`H®4C£ø( +3Íغ¶‡—eg7x/[ /ÖL©!ÓÌ/ÆÊ¥’ïÎÞþPAÜ]«ûÐ}½ ôW¯¿}÷§ÝqäLºªnDôØF¾ÎÀ¼Ó;Ÿðß3°ŽÀM‹1Tn¶íÙ6+Ôpr…¼œ•ž{}¯FÌæ¥j¨/'úU Iô˜«4P‘±°[1ƒæ#Á†u•`>ó˜nOxˆ'…¼2,Z –°žú‡+é‡5ÿ® ¨Ãíüc^¨`HŽ4}cãök«ÞV»ÌÀe=¹@K³hNã¢ýfz*¹"ŽôK¼«ºí×½ý-fQ½Xé½1ý.ˆŽþÉó/%ÐßÿULzL݈è±`¦U¦‹S;Ÿðß3pÕ3‡Áü ÆcÈÜlÿp©Cîygç嬜ðÜ“èÄŠW Fô³ªŽè^Zïì–— áÛÌ,뎯”é7Ô-QgÀZKÞô¡ò%®àÛY¹"è¶RssU"/±Û  É‘æ\8ˆOó}m˜ÏæÍäC i/³VÞZš !™>Z ¯†öîìío±nß·ÄŒY÷@ôè~¤þõÛ÷ÿ“U7":É…N8!NùïXÀb…Ì»£+=11Œ|í.»F^ÎÊ Ï=‰¾±‚Ä5`.'úU GtÂÆ]Am²®y™çð3ÏAa•àÒηŠ8eÓä`—®l‡Ë”›ªÊ.Ñ}Ÿb›äð°RcŠZeÎXZâU·¼ÐÁi#:“öD?¿ªÁˆâ½]ï+`IصL›€&«¾$›ƒ7øäu ¸+4Ì  *Zsx“;`Ùå.„à*°ÏJ±®è§™º¢ÖtìzqCr¤yŒèðøT]œ“Ï+“zubÁ7:¨¹gÇC™Éé·[ºöLù 8ê|].Íô3™æ\瓬í%µFOtÍó?û@ý§Ÿ* ÷ÛÿŠI¬Ý×WÁê|[W'HX]³yk9åIWžðß7ðZûOë[Ŧ¾‘bÆйÙþÕÔ¢>¹ç¬r·ºJ^ÎÊ Ï=‰^õP‚ëc~¹WoÆmѸÑϯj0¢§xoïô˜ÏÖ½’5åPD¯Þ¡A¨ ë¨YJ—ȼ°¯­z2¯wv¸ +'å¢òv¢AYÇ‹+’#ÍãD¯>r¦—GHÚþª9|ÉY~éñt+¢û%ŽÚP‰ uÂïÀAi¹^)€a¢Ó¹Ùþ½ÔrÖ-sȼœ•žûXðx6Ñϯj0¢›ÁÛk«½>±p}ßüX“|.‡[£´é ÎrFé`ßf]aûš5s;^\ÁÌJ©4½µÀrû°6UG(3cÚ­ÂÑÎâmj.—fú[Ý™ÆMt ôgÏ>øIô×oÞý~cýû'Ý^·"ºúÛ6Êšá؆€ñû…DWgV¹œYD§s£üSHïÞ"ËËY9á¹7Ñ»%ðÅl8¢Ÿ]Õ`DçFx¯I½´,WÂMô¶L(H!Ñ+] ;Ư͉îLß0;ëéaã¥4Y^œÁè4½µçøÔò`Ì:B™É÷–è)e–éÒL:žÂªü>4j¢›@ÿü‹W¯¿ýÅvbÒÐ͈n°{݇™•Ó~R!ý? pT`×;FÌöox‡aÇb¸¼œ•žû}Æp•Ây9ÑÏ­j0¢ç8|R·¸ÄÊšßQh£Ì…¨`FkqBÛ¼[Sfù"CQ7„¦g0$:ÍžD?àOîMßAE© ‰Þ†r%c¼Kçûj0B3].Íôتå6膻™èÐÿ8ýièD÷áïÏÑé¯ï|Ý{ª;ïüñƒšÝœ¡Âa€ï˜yx‘þ8®/nè1¬t ÛÑ Ê™DçžmŽ ßÔP3Yœ :·þœtšÝK¨Ý“‹_²ùÌ_À—IÈ n¢Ï‚êæ·'Zçqk¼D7€þ€þöý_NžI×Ñm‰>iÒu–õÎ.ˆ²V; MuñíMô4Âòs¬…üeka¢·‘…Et2æ…D‡6Gì Û‹€í}¶C‡ÍÞ#'!ºdú–ëƒÊZqk´D7þâ嫯߾ÿÛÈ4ékÿTöÑeóµÜŸÝ•ÆJt ôOž¿øò+ ô¿_P“¨‰è“îLq’çIŒv3Ð[„¦`,Õ½ˆFÝ®À6Çòˆ¡¸öÞñâ 抋˜(Î'ºWÊáœ]Âx1g9/2¸&œ ºlS +*è¸5R¢[@ÿæí/' ?%MDŸt÷‚;^bŒ„°÷+`õ":@Sÿá"ºŠÚ¹Xîåм}ÍDÝit¼¸‚¹â"&p3ÀÄCˆâ…†èÒ%Hö4ÑUf‰=O<4lRù´&| 'Ñwcȇ¿W"‡X›E›DÇ‹+˜+.b¢¼Î–u±(ÅCˆáì†!z,¬®æ¨KϱœrxK X£$ºôÏèßM@bšˆ>éîåÀŦy¹|-ƒúU¾ñvó 6€_>·} 'ÑÕŒ:È’Cx_"–Wœœù¾bIzqsÅEL„f ê#Ð@t_>dÕà +¦^Nt(ä,¢(:2»ÄßÂoVܬºAÇ­1½úG5Ðý¯›`jRoMDŸtÿZ¨½žj| €Žd^øê6)°ðñé e©·û!¯ƒ®|kxÏå/ +òÂÿ 0ƶ{A“ÒT¨‚–y®f*ç¾j&DÎ2õÀƒíÅ É•¦´àybGž¢« ÛÄ©œ Ó º—ÇMêp‰¿¤SÈH —ÔZqk|Do€þáGª€þnúÓÓDôI?E{cÛð¥×ãÕ(ƒ7á‚Ÿšÿ=*ÜDŸ…‡Ö<÷µ“rÁé;«;’3ÍyS)gâADŸMÀƒ=ü?ûe¯å8Oà³ÿ³¿3;;û3»³óíîPß‚CáâÐp¸*¸*®€Ž +n€€êë¨à¾Ší¨>bÇvâÄJüÚkAMÀVôÃè~~YËÙ¨ØkŸóšDf#dt+Ný0“Ƙ '=rñ®¿g l9ÞÚè;X“\$0z$B¿Ç…þîÃ/AèúÐ £[ª•­§ùnóøĬIè8ÔîR­Â9ädÀ’kë§GÆ<ÜýN¸åxk£ï`Mr‘Àè- ýˆýúϾ۷…€ÝÑ £;êµ-‡r7?nž7 ÍF€Ñ““UgÁ[}€ÑÛ&úý£GLè_ýàó~ì”>‡òNãÅ­^“ÐlÄFÉZ~覣÷0z Àè-Ä~› ýøôÕÛ¯®þ¹W;¦GFŽ°¼±ØÍŒhSh6 Í¢l”ìœusšæŒÞgÀè5£·Ë-ft&ô‡OŽO_¾½¼úÛA<ìŠ=S¡å…|y+iQ¦‡×Hè5î³n`ôîbB#©ÉtIrÅûÁrœäŒk¥ýÇÇÙŽ“1ó„Óe1\rmÅàݤ;±n61Ž›ï¬Zs6EE¨|mpfQi¥¹ 愇¢ërMhÓäG¬R ŠE⹤sIK¯4z"ô»\èç—W:˜Š€ÐK£¦|}Þ C#«£w—¿á…(½É­eò,2«DTNŠâÎ\`sò{œÅ²É!J~'oŽËauŒ™øÌMy·E´~6'éíW:]˜¢4T±685ºIgÈúáÔÜäÔ5äˆíµ&œ$5‹ 'œ)‰å¢N[Uzè¢Ñ¹ÐïP¡?~öüåùûO¿/è6}5:Ûhцï˜M("+£ws‘ÝïK~?L¢¬-LEEÜá*iâvz'ùY4„Sƒ!!Ƹ2†/>sˆw Ò˜ ²do«„yÕº…)ÊB)j“â2£ÛY¾S¡½Æ„ÆK¬„|ÕE2—Å(%¥×‰=ú*ô³7³À€^ôÖèþa«‡ÔE¹½Ã˜ìkn9ŸôÇ„µ± ùÌMˆw¥?×äO0g‰_Hz1$ç£øQ H—ПŒÛöÆU1ÆA@€bón©Ñ›dë4œôö«Ž%ÁªB©jƒ7=ú úKŒ®œ.u…Ftž¯²H+U”’ÒëDGžýé ú/ì-µ´F>Ž誇ÔE¹½ÃЋ2A˜(ÂSúƒÝì×€}&ªˆo™ë!ùiS[ÍÒémD÷8‰?k.ñÓrP#ïGÑ~Ͳ¡¯ªá0î=›V-K‚U&¥¨ ÞltŽ¢w»áEâC¶yÂmd˳Hëu!åb‘”i—”^'ºgôDè÷Q¡¿¾øðãÿn/ %úkt¾ åˆÚ(#£wª`n@r° ú2ˆ7£o2ègW»~6.v+ÕÐ" 7£Í€Y%Ï̧_ŠêFo˜Í ÌÌV Î ¶JQ›F7H¿Ù*Ú2£'œeõp“BŠ¨Œ^ŒRVzèœÑ™Ðo¡ß?zôôäÅëw~øï(8(=6úšµJßCÇ1ã‡ÎÆVñ”ÙpÑ"˜#·X¨*£›c4‚©f®±ŒÆ!?r‡ò ÓQ,ÎP5,DZ7%Óèµñä&*?=2£TX9>}ùöòê¯jcݦÇFY«ø èfx‘².‹ü©_˜:Ûª<°r¾¿®¬ñ&£Û…wp”žœª#Ö˜“wœòjðe@?ióŸp¡\“1é2e¿¤¾.NTegíTîÌfF”}nâJ›U1ÊÞ4ªüeÞÃ*°$XE(Umj}-)TXâÆ %‹çNÅ”%QJK¯Ý2:úDèç—WPî‹@×é¯ÑÍx®ÐTìf­Kê²–‡˜95§amÕàÄèÃÂÛ‚˜M½ed ÕTÓäì0>JCxÖò~»V•I E½–›èá ÇvZ,d”]¯uZÄ0y¢õ^¢”컵,F™¬gcÑ»*š[—ŽK›†RÔ¦ŽÑ#é= kß<á È^%ÕãPeô4Jiéu¢SFÏ„þàáãgÏ_ž¿ÿôÛ…j»:OîÆ ŸõB7#õ:'ߥ4¤ tR8AUÔY>ú*ä? +%—‘2V_@'9¿b‡Sq©Émœ<®çPÌå&;w!¨!â—0,DP}™ò’6/=›Cat!F™¬šg3ŽïÕeåëá \°i(Emj=÷ +ââFÏrGé/öpÈ)K¢”–^':gôTè'go.>þÊSo7@×é­Ñ5k\‰«*t㟽¾C>ÀÌ1ð2‚kKƱB¡ëÄÍI`Dza:²°ÅèÑŒÅr<ªÜçºDÇ:žÏóXËçâä%ÀMæƒPß«Ý ·XõBNÄKjaþŽ7lj†ŠZá%-‹Q&«æÙ ,þý´ªÞ$XEmjÝÆÛÝ OJ„†sDŸ†Y!å-®áÝÜ%£'B¿÷àèñÓ“³×ò¿B=è­ÑçñúÆb[¾[<.J¿uâ÷ÒÙÿÙ/—ü¶u+ÿ?bÇqì8qǾ¾NóµuÔY;ëÚQ»‚n £v]C;ë¨h7ÐQïî¬"(R¢$H¤H‰Dñ ‰J²ãP¤ñØâáÁÁ9ˆ¨4¡JÇl€Æù³xCbxU®½€5ã÷A‚j¯U«‰žNûå³—Èz¬qgEꢑa>¬K¤KÒÜC‰IÇ21´¸P¦¥yú¢òA6Å0ÁêÙ`¦ÏØ!rPW:ZXÍجAô>º;Ñ{saïYTwœµ‰®ú6i‹ˆþ„}woÿàùñéë‹«ÛŸþ·žVÛ«Žä0“®¬¢3&Ž¹‘ÙS›% 0Y%´–èj”^§ª'z€²) ÛÔË-™=ŠG˜e‘¼˜YXM«ËêWVŠ :ÈÄÐ1s!¦+)eŠa‚Õ²!rÆd¾SiE˜3чҌè +–è@ +¶Ññ8¦Å¢œjr_Ÿèæ²Û¡í!ºô“³·W·Ÿÿµ&=¬¶O$ºómcéJ~Š Ï‰àRÕRŒS$Œ;-d†¤%ú„ë¶Üe¨¯ÕPcê_ny,-áÎå–³,Þ)æ³öNö†r” %RL*€ƒL ø· ó\L»«‰[ëͳÉsJ*&c&úPº±QZñŒy^™´H¹} ¢ãïkàÂ8M"Ø×¥¼ÑCß&m Ñ  ïî¾89;óño›RÄj{Ô!¢g1Sy @‰Â@jä›Ñ>DŠæLm‚o2âàxÌæ)ÍT¢GÄ–n\†‘è9™ä?P›| Ôä+7³îŠ,e,°I8ëEåd"#Cçø¡ï¤oðÉ(Õ}2¦FXÝ!&2•SMšL ¡4c#º.Å•ËVKiñsûê½UÄZD7}›´UDº³C€~„~yóñÏ›cÄjkÔ!¢Wi6+y#ú쉚€ÒD=Ì©qÌ Z¢Ïªá×)c}¢Ó­¡â‰^èfµ FNŒ }õÈdqî²Ê§ØKc.ddh@š3Ó°°„ò(eŠáH/·;dÃcÌ´5WÚBiÆFtMðé¶Xùƒ¬l%%LÅë=@Õ„$ã Ii›†¾MÚ¢—@vxôòÕ›Ëï~òû5°aµµê.ÑÃ*K©³‚ïâZë+MR·'‰56S-ÑÙ¡î¥-c¢Ç´A™ËbR¾&70Ä* +”6µÛj·D™öó‡aJ†`:¥ÅlÌ­‚ÓÈÈPr\Z†âÝÐÓ,ŒÚ©t³änfÊ>IìhæDq¬â~¢kÆFt ùú¥@×´ +ûêIËåtàûʧÂe¤jÚš¡o“¶„èèOwv÷žŸ¾ywýáW“õéaµ}ê,Ñ?ú‚“-] ncjR‰®B6 Ö´D÷X"£ ËØ€èJ·,­r ¤ý/ף¨O²~íW„ Nérp£ürIn™›o) 2=kñGÎFiáàÂÅ`EŒ$_ (n›e3ES3 +vlj× ZItÝØ®tIWì [´"•/½ª}u‡‰ð…Æš3·y¤´ Cß&mÑŸP¢c ï}}q}û³´œ°j‹:Kô Výè ¾óôYÚVfÔ䛈ý…Ü %º“²Lf ·žîKtFëòˆB,SæTÞ{XÍ“õûh¿¾0Ã=]ûš¤Ô±‘\‹³Fz"Ñ˃À¼OT›ê;x¼’üxëÃL÷͘IžÝзIÛ@ôèÏ^¾:¿¼ùø[ñliÕFuè|¿ñ?Å­Ç63¾:l¯Õ4ú ¹Á@tñ&±M˨Êi¾8Þ­KŸS!9œÐëЂ=¥âG#á¨/™€!œHk¤ïûÂ,y¾4£øQ]P䀅Ã@ˆ\à °/иm–‹ÃÀ‘Ï?؈žÝT ík “ÇFI pZ®¦XØû¥}e‡ø{ÈÜÒè—¢q”´«Cß&mÑ)Пîìîa Ÿ¾y÷݇_þïþD±jV$z.”(~ª`7#˜ïÞ‚>¦NM¡¿ DÇ›Vy“ WªMËP5¢q ݲ - ÿ˜P£ËºD­Z,µã”F¾·täèq©y¢?¡DÇ@ß?xŽ~qýáËîI«æÕM¢çäBCÙ¯âÆ`‡R|áÀ(’QmÞ_È F¢÷(<¯Þ£êËCEH+¡[V6ÛÜ“â'TEimV­^‹6|½.’NdaNšË¦YmÑ1Ðw ÐOÎ.®n?ÿý ±Úu”èEJd¿ŠÛT3"³ú&¼¿ÌDÇ©Œeìe-Ò뉞—„P‡>Ö\íÖãUò+¥sº$?£ÒøxïE™u¯é$Ö(Ö!Shüf':úúá‹“³ó÷ßúã}abµê(Ñ{cVž¼a¨n¾f@d ¢cõgY=4¹Ê4c–c~*¨v›R ñ’wËÈôôõ°. «Ö)’n¾Û,r¶„ù>È‚NÚ»éÜSM½ú޳ã—¯Î/o>þf~œX5®®Ýal‹$?Å PŸHŽå@ ]Üۜ踫iÞA°Y\}Ö~.ÎRµÛYÙ }7¦ÆaéÆÙnÕy-Z2¥]!„0ŒéZ«ÛtT ý #úîÞþÁÑñé›w×~ñã×!ŠU³ê*Ñ{VŸ´e(n<Î{ÞlA_dqX½½j"ß…èx3ËÔFk•!'+]Óí ì„\‡PŸÚõÿbG˜º4­Z'/ž¹Mç°®ió‰úMçÓœš%ºôçǧ¯/®?|ù÷WcŠU“ê,Ñ#(mŠåã¡ëûúò5‘DÔ&PŸÅ†e”b§ùÈQ%:ƒwêô\1Tœ÷ìQÿ 6M+«˜,ó' ½¦“iRÍýéÎÎîþÁá‹“³·W·ŸÿúõÙbÕ„:Kô^D©X•ìF¡—­¨Z¹Jô)5Ô£’Á Ë(¤k]%zi +Ä ÇÔèöઠ¬¬\Žõ¨iNÔ(ÑK ?;<:9;óéB«o¯î}È +oµ²kåÖ‡ÖE®}B “úPѪþêˆè»T6jˆPdGŒ>5Ž{ ù×gieeõðj’èÐ÷0Ð_¾:¿¼ùøkïAèbõíÕ]¢÷Rj Ù-ây}ÙÚÈ¢Ô볤Çô¦v0[CÓ- +àC{1nßõ<œDCÏ9‰¤Š4zå°Zk4Ï.?Üúݯ[Œ$gJaôtxîî.6{»Yƒ7bª>†iRt€® F¬OWž¾¼ŸD"i“—r'ß–BŒî ½R­c¡_ß=½þX¤|$[`®:¤þi¬}ìÞ—QI$…2Ë5§ê}¶OŠË@DF÷„~€…^?i¿¿}|ùGqæ‘l‡ý5zß­kºíÃ2’l™®Þ-:… vh‰ÿ÷Ö†C.-p s†ô ¿Ì©Ee0k!BÇF¯Õ§ï®nžÿ0*Â9’m²¿FxõÇÚ½¯ú~I¶Hoâ­îoæ=ÚNÈI²M¾ ÔnS-o9±,kÒg’妟sl’ÓÜ–F§F'B¯ÖͳË÷Ÿ>ÿœ¯l$9°¿FºõƒÅfÅ[øwg™•l€®Åüçß’w9â~UvŠÎ‚‚R» D•1]J–˜~Îåôqp¿Éê ¨ ’f-Fè•j­Þl]\ß=½þ{Ûv‘äÏþ½ëÖ?_¬Út› xÅ%ÛÃXø×…e¢Œ­YøAAòJÞÂæ™M·™Ñûk_^ hÎ…ÔRg¥- ]Ì랻ѩÐêÖùÕí7/µ¤tì¯ÑǽVd½QüÍF¯¨¬$[À Ô±@_ׇcˆ§…¥ÒÁ³›ôL™XVq_‹Ùd4úPÇ ¹¿ÈöÛ—(šs!µTØÁå¡ÓW…‚Œ^9¬Ö§ï®nž¿ÿ%WÓHòaNÞwÂÛ¸´¨Ã7¯Í,0-ɦé’G:ž²2„E¬à>›Õæبуm¯ûQ¼òwŠhÎMܨ·ðÓ"!túª³·Ñ}¡WªµãæÙåõÝÓëùšF’{ltÍ¡wÁ¶žªEç&ÙÊ|ᑪSPX2{`ôö ñMÊE4ç&n” ö>Ýúzý¤uþþöñ»¿ç'IŽì±ÑÛ}È¿'Rè¥bˆ©³+tŒNn8\u¤hNiôM ½rxToœ¾»úøðí£ì"ÉŸ}6z»kqîˆ3*:-ÉF™ã‡:^U €1Xãkº\14ÚO׻츮®‡cTÇiÌeQ '3Ó Šß-ò­±j6éë`FIJAžÛÔo@¼F†ˆÑ»ä5RilJ]’eÏÑoçÎO £‹&ÕCè8„M"t¶Tuò7:zµÖhž]~¸þüóÖÕ")„½6:^%L½ö`Wvs’ÍÐ#µ+¸¨ÙÁƒŸ…ÏÝAÈh+ÀqÛ¡?t‚ûá@b-ÿ!»“cÌþÓ†~·YšlÒ×Ï·ñðjdˆ]Å'N˜CXà ò²ÙmáœñÔÚzP¡É{Aãõ&ÂÛ–ªÎB®F÷„~P©ÖêÍÖÅõÝÓë$)'{ntŒ>–‡ t©óÒA–ö©àÚÀ ßh­øÄè̃vÇk7ð¡j„‡AŒ~b “}ó€ßÍJ“Mú:BøÙ¨6o·Æ…XÔèäkÇs +TlaN;Ä挧6 Ï'+ÕÏšÛaºn²ê,äit*ô£z£uþþããËŸ-$)'Òè’rCÖ®ÿ’»º;¦kà7“Ã7ücMÜuÞq?ó'8rÁ×…Ƈæ f¤s?)Fß²Èt¿»~7+M6éëáf3çà׸5úŸŒÃ,¦ÏôŒ1IÒ¶¬QÐ!>g,µ.Ç=}„+4Wª¿‡G!ÆLßMV…ü^9¬ÖÍwW7Ïßÿ’Y’E]RnÈ"ßã^é“`èº{´`-÷ÞŒiv! +ìD´A÷odjÒ ¶7Ðp"{SNŒv»CÝá­—Mú:XâÙpjd`n0)0öHh·Yñ§Ë挦6ÅníxŽ‡«Öù^ÚFÕYÈÑèžÐ*ÕÚqóìòúîéõ?ÙÅ!ÙQ¤Ñ%¥F%ÿrwEÁ«¿¸^!û0-w_ Ó;&êö AŒ4 ÆŽ‘ÿ™@‚̃7gˆèVŽ#Áèkf“¾žÛâD52P£k=wCK­80Pø‘µÚ‚¼ï‘eõ¯côTUg!?£S¡ÕOZçïo_þ¶a‰HvitI©!Ë7âþµÉ*mÒ3Õ¡k9b/MŸûA @ƉøÒ t©']|…ðc$}ÍlÒ×ÁÂqg€¨F3²¨8§@oÄÀ­ yÎhjä³Lhtaýk“Á +Ug!o£WêÓwW7ßþ oX"’B]RjÈ® r¯Å»žNQ°‚#fsÖÈß}¶'øhà5’%Ñ3Œ…û†1L:— †Øèëf“¾†x6¼¢Û‘FŠ3Và a0´896Ã+Ü(ÈöZ@XÿêFOYur3º'ôƒJµvÜ<»üpÿéóO[³‰¤x¤Ñ%¥†Ýá^Á–°™Ó>î8t+Ÿ4’ßNäîJDqÂgÛóšClôu³I_ƒ0v€°FÖè°Ç\ˆh2­ Ö¡p£ˆ¦íج40¿þÕž²ê,äeôPèõ“ÖÅõíãë—KD²CH£KJ Y¾¹k±Š"ëº+ì±{„Ø%¾‡¨dÞh$ìßHtPð¾Îß.Šbˆl²~6éëIr ¬‘}¨ë=`£èà´÷P|ogºGHdÂ`o irÕÔYü·HCd“Ù¤¯ƒÓ7a€°FÆèÄÜÁq$äŒYvæ +§C¢Ñ±Ó'Ð[²V­?³Ñ—U…<^9<ª7Nϯ>~óòGkó‘ìÒè’r»g YTYÂ=3 ‘ ‡^Ò4¯²A(¢"›¤È&}¢±ü£»wi‰›a°êŒÕ%sòŒŽ?†$T#âú³_ìFÈÅè¾Ð+ÕÚqóìòæáù·?mG#’A]RnÈõ9PÔô +l‚D&T¼»tõåøVé þçÂÚFO‘Mú:(+¹MX#ktß%Ô‰…Ä2îu€í)ТٯltüìxÂú3}•ª³‡Ñ=¡`¡×OZ×wO¯ÿÜšH$;‚4º¤ä ðÖæ9ú?ûåΞ8vÆñǖƒ1Øã»=/;iöÙ&OŠ\ªTév?@Ò¤Ì~€tÛm•*]ªl•*Ývû’©R„%Œ±¸ #œ# @²°ÑðÿWŒuÞó¾ç¢9ÒÅCéÒ¦l^_öh㮪;„0 ßŒ^Žß¾6yÅj^¿!3¹ÍwœF¯´i£59¤LñªœñF ‘cÛøî.£Ï²ëyˆÏè|*Én˧—¿T¢ö H¬8MvÎUgäÞ|g·\a¦ +ÛûÄׄ VR§ÿÜ#LeMIýƨº:i¯XMeÞJÿÕ¸ +üöèÀet¶„¡ GC²['yTÎx£œùmwÄwÿ~Fm×óƒÑ-¡s¼ nä +¥ý“‹›F¥°0Àè`Õ鳃®t"õÈ“ù× âjHbI¶§‰¯ «´dÐq~¼™ör|!ñCw}úÓ^±šÊ¼•þ«qøíÑËèæ oL ɴꊢ¸+gºQÒhv6̃{ßýû=´]ÏC½Å6Ø™uÿ¾Fk×ó¹Ñ-¡s¼ nä +¥ýã‹›¿¿D `IÑÁêSë9ϼþh‡%gXþl¤˜Î8Ç–:î*`Œêð×…:™öŠÕÌ]é¿W÷¸n6Õ‰5°ŸUºÆ°é¼àF5“÷§ßS>û÷5zX»ž‡˜ŒÎ éÌf¾¸wx~õ5o¼ê]Ã>ñOÒ8ÜFõÇññ§±Þ¨1aÂKnNŒ=Ñ;Jà¶~ŒúTÚËW3¥ÿjÜ^{tÀnËؤf­æ^ƒDèÛw^QÙr•€E:—vßÎÞô|Myºç•Ö®ç!j£ÛBO bvk»|pzùå^- °DÀèà Ü«êƒR›ˆJŠªª²3t§(éËŠë]N›®d“ªò@GiÜÍ6†Ü ¹’GÚËWB¥ïj& +¦÷èêtßZ[sI¿wñ½oÐW8§ci•½¦ÿ}¾/)ýOÝ]ï¡_¿ëyˆØè–Ð9^7r…Ò»ã‹ë¿$­ 0: j$ƒö¸Y¥¯žNb‹Yb1:/¤3›ùâîáÙÕï´¤UbFDM¾kÔqS¦ÍÇäV³Dkt[è)AÌæ¶Ëû'nÿ•´i@<À耨‘軦;nvhSIn5 @¤F·„Îñ‚˜ÉJ{GﯿKZ4 &`t@ä èËFµ_1R›6úoû}ƒÑùT:“ÍwÏ>þê1iÑ€˜€Ñ‘Ó`o££ªjGc—)é%K”F·„Îñ‚˜ÍJû'·?&*#0: z®÷N÷.éõ$LÄF·„žÙÌïì_ÿ)¹€€Ñ1 =ì—ŽÞ‘“^LâDhô5Óè|*Énˇg—?Wu ˆU…›3¢3º%tŽÄ\¡´rqó¤-âF€˜‰Úè¼Îlæ‹{GçW¿OZ2 F`tˆ™ÈŒn =%ˆÙ­íòÁéå—ÿMZ2 F`tˆ™HÎq¼ nä +¥wÇ×MÚ1 N`tˆ™¨ŒÎ„¾Îñ©t&›/îž}üµ–´c@œÀè3Ý:Ç âF®PÞ?ùpûcÒŠ±£@ÌDjt*ôÌf~gïèüúë¤ âF€˜‰Æè¶ÐS‚˜ÝÚ.œ]~úœ´a@¼Àè3ÑãxAÜÈJïŽ/nþœ´`@ÌÀè3‘ }ãSéL6_Ü=<¿úJIZ0 f`tBCîi°Ç¬k½zØc‚¤‰ÊèëÇ âF®PÚ?ùpû·¤ýâFoÎ+SêÑxŸÖ¼Ëš¤IˆŽgsÕˆÂèk¦ÑùT:³™ßÙ;:¿þ­–´_@ÜÀèàÍ +²³I¿æ•ÖPU%(…v4<& ay*¨L…^´NÉ äþ…#€E'£[BçR‚˜ÝÚ.œ^~ú)Iµ€D€ÑÁ› ÞÖÍ?èŒìH¼u]§qCz6ÅÏè]BúA³Jöw“¦iíûégΣ¢39*X~"3:/ˆ™\¡ôîøâæqÛ$ŒÞ²æ8óÅ +o]?°œÚ³)>F—hô!hVÕõüµÜOgû‰!¿d·`ñ ßè¶ÐSéL6_Ü=<»úÙç(Œ¬>‰Soɘxëš%Rå¹£SYUwÒô¬w°_ \ge@Hç¥[‹M$F_ç8^7r…ÒþÉÅí÷á(,0:Xy줚z¯(Í–N¯»f˜xëºÚÖ´¡­}R|Œ>ŽüܬÌèM…ò ² éVTZî_ +`Ýèk¦ÑùT:“Í÷ŽÎ¯~¡Äì°Àè`Õ‘ÙA’íVµ©Û–&>ºvà—Ò F—]A¿Y™Ñ;ªg‰_E¥Nã÷+ËEØF·„Îñ‚˜Ím—÷O/¿ø!€ÄÑÁŠS}¢ç¼/RW5ÿ’Îü\ œÕiôJ%UTª!€•‚å"£óB:³™ßÙ;zý–”S@’Àè`ÅiÒcnH$d£S#?Ïê2:ËÒƒ*LñëxÜ~—@À‚£ƒÕF£§üÁ³‡v< è?ZÛÔº!ãF—t–¤wzì/+›4zƆC<3«ËèmÚhUPèœOþ[ËG¨F_3Χҙl¾¸wt~õ›ÇøU¬6;åž=ÖЭÑK™iº5Ž{½#u¦âê£aN¡Ï0«Óè 2þ!á_Aa?9$¿N°„„môuŽã1›Û.ïŸ^~ñCÜ‹ŒV‰ò;Ï.óèX×2»•x½J…mØ&V˜ÿ'^s”=7ëÈèwõËjVØE²_'XBÂ4úšit^Hg6ó;{Gﯿ‰Ù"`q€ÑÁJÃDK¼6ëé }2*ñ2z“^¶‡É²A¦Œ~GCÝfí¸ž?£\AiûgXB6ú:Ç¥1»µ]>8ûøéß1Ù,0:XidzÈuï.Úó4:ô*9“x]£—ò¨”ù}Âè +qü>xfV§Ñ–4C…½º†o/X>B4úšit^3¹BéÝñÅÍ·ñ:,0:Xi˜) ï.26w¥Ò #g/£\Âud¹§¡ö ³:®×gY'åqz>°Ô„kt*ôÔÿÙ¯›æ4’Œã=¯ 0¼ +!a„„…mÅUNvS•“j?B[¹ì-ç­$ç­ÚSÚ§œrÊmo9å¾þ‰HB¶…,èÌ€ÊÀ £î~~§¡{º»Æ5øÝÇV²…rõW¦ ¡ è°ÔŽ·¼>qŠý”N/zoøæIEw†ÚŸqªSôsË:m_ÓáM¦¬¸Ýüâ¡Ix‚¼+ºoPtE „"‰L¾XùžqC@$(:,µºó–7&NÑáH[tjÑmÞß-mѱ¢ŸÑ¡¢O9Õ)ºÕ¿º¾iÊŠÚ½Ÿ °<+úmÐeU7ÌØJv£üâWÆ ‘ è°Üºö[Þœ8Cç(zƒÎ*º3ôî3N½+zÿòzöŠÚ þ­‡&á ò´è„HŠE™ü³çßsÈE‡åÖ±ßò³‰3tŽ¢ŸÐYE?¹ãáS‡Š~Ô½»ž²ÂÖ?ž4¯ŠîÝO$YÕ 3–Êml¿©ñèˆE‡åæÄðzâ £èõ‘›'ÝÙàýgœ:TôÚ¹}ýaæŠÛIë¡Ix‚¼,:!’¢B‘df½ôü€GF@(:,·Sç5oNš¡s½Ö£ôæni‹Žýdd»‡O.ú‘½+=žµâÞ"XÝ ºŸH²ªÍx*·¹ýÆbŠKîÚ~ͯ'MÐyŠ~c_6>ÝݦcE¯ÛC?ãÔ‘8¿³?\ÎZa»²çêÌÁSäaÑ ‘-Š&W×K»\2Â@ÑaÉ;ïy{x¤9ˆ1§è—Û4)+zí£=v÷zðÔ‘¢7ìÝ£+l]û¶YÏ O‰7Ew‚î'’¬êA3žÊmn¿±Ø7D‚¢Ã²»v^ôΧ?qëWôcÿ‚ÎSô~{O×­¥ãEÿ`5fŸ:Rôþ]­+ìK{âjžGÑyVt?!’¢¡hrµPÚ=`^ ŠËî¸ë¼é7íS;–'M§¨.Š^ë8{8Å®·_ûE¿{èÔÑ¢ŸÛŸ®g¬üœ¸\ôŸDâIÑ}ý¢K²ªÍx*WÜyc±ŒE‡¥×èÞ{ëÛýa:WÑ­ž³òæÝ•³Y›Ž½ùi㩧Ž½îìÚ˜¾bÐýûÇÁ“æUÑý„HŠf„¢ÉÕÂÖîÇy€'E‡åw|5üÎw/£t®¢õ¶w^£ã‰uâ|=ûÔÑ¢÷?¶§¯¨Õ>ØŸŽ]?=È‹¢ûúE—dUšñôZqçõ8•€§E‡/Áé‡Þíÿñ¢~;f\}ºa¨èCã#·4n;\ô'î½æä¸>22éÔKûSãîçÜÎôµZ÷Þoxò<*ºŸIÑŒp4™-lU–Ä„¢ÃÂj¶ÛgÖПº'–5à†eÞRk´Ûí‹ãÛ‰±ZtBæÇN=²¬Æð ö¹ÇÓWÔöÆí‡ ž Šîë]’U=h&ÒkÅý6çš(:€7ê=Jß?ÆÆÎÔ'±1pãMÑý„HŠf„£Éla«zÈ»&ÀŠà‘+J»ñ-º¦ôã#l -^t_¿è’¬êA3‘^+Vö;¼kü¡èiÚ_¨–÷Û6ìmϽßxò¤è~B$E3±d¶P®òŽ EðÊ5¥ïw½¤´‹/ç’Y¸è¾~Ñ%YÕƒ‘Dz­XÙïðŽ Eðʹý:ñzÓ£¥m¯7μ(ºŸIÑŒp,™-”«‡¼["@ѼrÔ}„øÚ?zu¯7Î-º¯_tIVõ`$‘^+Vö;¼["@Ñ<Óº¡—^ïÙ¦7ç^ï ¼yPt?!’¢áX2[(Wy§„€¢0¶`Ñ}ý¢KŠª#‰t¾XÙïðN E`lñ¢û‰]tÍÇV²…rõwI@ (:c‹Ý×/º$«z0’Hç‹•ýï’€PtÆ/:!’¢áX2[(Wy‡¢0¶PÑ û‰$«zÐL¤óÅÊ:¼C‚@Ñ[´è~B$E3ÂÑd¶P®ðîˆE`lñ¢K²ªÍDz­Xù­Å»# +€±EŠnÝGˆ¤hF(šÌÊÕxg„¢0¶`ÑýD’U=hÆSkÅÊÞ[Þa èŒ-Ptß èŠE“«…­ê_xWÄÑDÑØZ¬èvÐeUšñT®¸óêÞq4O-€%÷E÷ Š®hP$¹º^Úý–wD@ vÑ(:C ݺ¬è†Kå6·_ý‡wD@ NÑ'(:3®‹î]Ñ¡H2³^Úý¦Ã;" AÑQtV)ºŸYÑ 3–Êml¿ü'Hn‹~Œ¢0â¶è¾~Ñ%EÓC‘D&_zþU›wC@$­æ èu€Šî'NÑpl%»±ýò'Þ ¡´š§(:K ]’U=IdòÏžÿÎâŠ]t E`ÈeÑí û‘ÍG“Ùò‹¿ò.ˆåÌ.ºå½Ž¢0á¾è~"ɪ4ãé|±²÷–wA@,g-»è €wE·ƒî#DR´@(šÌÊÕ?óæ¬Õ¼-zE`ÁuÑýD’U=hÆSkÅÊÞ/¼ð¥st§èŠE“«…­ê·¼à‹ç®èvÐeE7ÌX*·¹ýê_¼DÓëu€¥Š®hz(’Ȭ—v¿éðîˆE`ÌMÑûAwŠn˜±Tncûå?x焃¢0æºè’¬êÁH"“öü+‹w>@8(:c.ŠnÝGˆ¤hF8¶’Ý(¿ø‰w=@<(:cîŠî'’¬êA3‘Î+{oy×ă¢06Ñ}ƒ¢+Z Mf åêw¼ãBÑsUt;è²¢f<•+îìý›w<@@(:csÝ7(º¢B‘df½´ûu‡w<@@(:cnŠî'NÑp,•ÛØ~ùwÞí¡èŒ¹+º$«z(’ÈäK»¯ßònˆE`lÞ¢ûEW4#]Én”_ü‰w:@H(:c.Šn]Võ O¯+{?óN E`Ì]Ñ-Š$W [Õ¯Û¼ÓBBÑ›³èý ;E7ÌX*·¹óêGÞå1¡èŒ¹)º$«z(’ÈäK»¯ÿÇ» &€±ùŠî]ÑŒpl%»±ýò¼Ã‚BÑ›»èvÐeUšñôZ±ò›Ÿy‡…¢0æ¦èŠE’«…­êïOy‡…¢06WÑûAwŠn˜±TnsçÕßxwD…¢06Ñ%YÕC‘D&_Ú}ý_ÞÝQýŸýº‡mã:8éÈ#Ç?DŠ¢HÓ¤iš2M™¦ÅÈv[ 2 +‚ŠN<ºè´K6C‘(:uêV [Ó!]š)S¦Lž:eÒ c)Q¢îŽï¾\é½;êÿ[B>¾ã{§ÜÝߤè Yœ¢o-‹®çÍê^«7œüPu6X$‹YôEг9Ã,íîßëžÿAu6X$‹_t=_°Êõƒî££ÙUg‰EÑ@²E_}K;/ºYª6ÚŸýBu5\$‹Wôm-“ÍÅr­ÙŒÿ©ºH.Š’Å.ºž/X•z«7|úƒSÕÕ@rQt,zÑ/‚®euÃ,í6îõGÓß©ŽŒ¢€d1‹žÑó†U®7»ŽfoTG FÑ@²ÈE_}K;/º¹SÝk÷'?SÝ $EÉâ}[ËdsF±TÛï<|rüÕÍ@’Qt,fÑõ|ÁªÔ[ÝáÑ{§ª›$£è YÔ¢/‚¾¥-Šn˜¥j£Ý<ýXu2h$‹Qôm-“ÍV¹Öì Ƴ/T'‰FÑ@²xE×ó¦UÝkõ'ïªN¢€d‹~t-«fiwÿ^ôücÕÅ@²Qt,NÑ3zΰÊõƒî££Ùª‹d£è Y¼¢çÍê^»w8y_u0p$‹Vôeг9£Xªíw>9þDu0p$‹St=_°Êõƒîðèÿ¨Ž¢€dñŠnîT퟽¯ºH:Š’E*ú2èÙœQ,ÕšÁøøÕ½@ÒQt,FÑõ|ÁªÔ[ÝáÓ“/U÷IGÑ@²XE7KÕFûÁãéªsÄ£è Y”¢/ƒžÍÅr­ÙŒ¯:H<Š’E/ºž/X•z«;|zò•ê\ ñ(:H§èf©Úh÷GÓT×ÉGÑ@²E_=›3ŠåZ³3Ï>U] $EÉ"]ϬJ½ÕNN¾R] $EÉ¢];/ºYª6ÚýÑô#Õ±@ +Pt,¼è‹ ok™lÎ(–kÍÎ`<ûLu,$‹Zt=_°*õVo89ùFu,$‹Ttí¼èf©Úh÷GÓT·i@Ñ@²Ð¢/‚¾­e²9£X®5ïƳÏT·i@Ñ@²ˆE×ó«Roõ†““oT·i@Ñ@²°¢/‚¾¥Ý,UíþhúSÕ©@*Pt,BÑ·µL6g˵æýÁxögÕ©@*Pt,ZÑõ|ÁªÔ[½áäÅÕ©@*Pt,¤è[WE7KÕF»?šþXu)$ /ú"èÙœQ,ךÁxö©êR (:H©èz¾`Uê­Þprò¥êR (:H±èf©Úh÷GÓ.Ò¢€dÁE_=›3ŠåZ³3Ï~©:H Š’E)ºž/Xåz«;|zò7Õ¡@JPt,ZÑÍj£ýàñôÕÕ¡@JPt,°è‹ oiZV7ÌRm¿óp|ü#Õ@ZPt,¬èÛZ&›3¬rý ;<:ù­êN -(:H¡èz¾°SÝkõŸ½ü·êN -(:HVtí¼èfi·q¯?:~÷Tu'$ *ú"èÛZ&›3ŠåZóþàhösÕ™@jPt,¼èz¾`Uê­ÞáäÅ_Ug©AÑ@²(E7KÕF»?š¾z£:H ŠŽ;Ä^R½ $nÊ^<Tïa“}ô-MËêF±TkvãÙ‡ª+ôHÚƒ¸-¶óºW½™kvb7¥z›,¸èÛZ&›3¬rý ;|zòkÙU@zQtÜ ¶çÊW½ŸKîm%æn¤è·,´èzÞÜ©îµ{‡Ï^~.«H?ŠŽ»À^]ïöÕKÕ[º°Ú×ÕÕmŽzbþB*¼è†YÚÝ¿×rüî©Ä å(:îÛ}±_¼M•¹¯ë7‰)úO†[å_ôeг9£X®5ïŽf¯UÅ)Ä}‹;`y­;ìDüõþËÂNPÑq«ÂŠ®ç V¥ÞêN^üEe 2›ïâR÷Œ%Ὸ*oGï^p›Â‹nîTíþhúêk•@ÊPtl<ûüJW½ díkNÑ%ò-ú"è[Ú¢èF±TkvãÙ‡J”¡èØ4¶í¹ª/.ô°C<÷Âåw,ǽ{¦{t¼·Å_e_‚C…› +X=ú‰]Ì»¹|k¤Ý\}äÖ8Tôm-“ÍV¹~ÐüJe6ÜuØ,öå…í‰pˆë¨å›õqÑt{}=Û3STîÀ} nÊwõ'æXírLð'Œü'- ·¢ëù‚UÝkõŸ½ü<àñ xPtlÇ¥}5äI^À!Žy÷†`\4Ý“æÕzóõ©NAûZO¬ï¦üVsb!E±›³°ÇàBhÑÍÒnã^ôü»ßÎÈ(:6‰óÚvŽ\æ«ÛÀvN<¹üd(;hºsµëwöòðÅ [¸…€}]Þ›¶mGØ”xõx'vµmÛ«/uräÝ\ÿ“b1ÌÓÅ_Ñ—AÏæŒb¹Ö¼?Ï^¿å“wEÇþ˜<|ˆ`¦ó+œS„ÓƒŽ¢y~¶zWvîQp‚×âM‰W{bgîÝxN9únBþÜX +.ºž/Xåz«;œ¼øãM<æqgPtlWÑçŽ1ÿCæÂ^þ.½ž3œî\Â-'Úƒÿ¾\Ÿ„oJ¼zÌó/züÝðP Vts§Úh?x<}õõM=êq'Ptl÷Žs]øéõñ®ºƒ8Ý»ÄÚÆD™N¼šl‹æùlJ¸zÌó/ú[솇J¨€¢k‹¢fiw¿óðÉñ»§7òœÇ]AѱAÜ÷rÌU¤µO¯_]Í]Û®a;hºc O×¾Ø5$.ºç×ê¢M WybþE»ßÓ‚ƒOÑAßÖ2ÙœQ,ךÝGGï¼¾¹g= ⾸—c~Ed)RÑý¦Ï½cN¢ÎÏ…3× o¨põ˜'XôX»±ç‚s…G`Ñõ|ÁªÔ[½ÃÉË?Ýèã¢cƒØ®kÛ1&˜wý‹Ò^¹ž:÷ÿ*šîWÒÅ'«™o[ô³yXÑE«Ç<±ÈEß믱¢›;ÕF»?š¾ú× ?ð±á(:6ˆ¨è¢r®úc¯ß«ƒ¹òîšá>pm?Wûr—cbxÑ=«Ç<1ïg®/Š·›«µy´ð/º¶(ºa–v÷;ƒññ÷¾ðV(:6‰#d«+ÛõæzÚu¢m—ÕA~EM_åÙž;2í¹×<{¹VsL ièúê1OÌûÁÿUôÕÿ.¾ÄE_}[Ëds†U®t‡G'?¹¹G=r}i¯†ÖšäZÿìl}<|újÊÜóO‰Ë;L°á˜pñêÎëÇ<1ߢ¿ÅnÎß.£ÎÓÅOPÑõ|ÁªÔ[½ÃÉËßÜâ³›ˆ¢c³\þ>´=#öÚ¤[)º(³Þ×®}…®í»ºàëýzb‘‹a7!§‡³°¢›;ÕF»?š~çï·lŠŽã½¨/®t÷Œ¹#KáU Ÿ~õ‰íøÜ9WTô‹ ¢ûϳH”†¯áÄ‹w7¾C¸â[tmQtÃ,íîÿýrwnãºâðà‚!€’Å7EŠ¢HQ¢(ŽìOÒ&“Ôi2“"“"e +gÒ§Hü$Eºv•*‹¤J7®\¹Jc7.p7 ‹û8g÷îbÉÅÅþ¾FÔݳçüîbw?`kïäòý·÷ùò3Œfžþ¯E¡¯ÿ/êÖW>ª‘NS„FÚû«ÅW1¡¨éQ7lôˆiÈŽ@†4zOèó¹…ÅåÂJµÞêìŸ^ýäÞf Ì>ƒ[]ZPM=otæ‘é?MÞX£áFä’£`†9TŸuc²ªÕ²8iˆ `ô¥|±¼Öhož½ýôþ f d€ÁÍ>þ¿ê%Ê;¯1FSý#òi¤ Ož²îŸ-¯ +© Ššuc¬Ñ£¦ ùú½´ZknìŸ_~//}0ÃÀè ˆÑÝ> ÿù$¬ L¹4Ã_ðÿg¡sS ÿÑÊ<.9#âÆü¿…^-?I–?Ð 2z¡Tyôxk÷äâæë$ßõ Àè ˜·þèˆ= +Ãüz^|fùxD·«6ZÐ#îwóŸGjÙ?‘ EL¼±®2N>)¼krËàÊè¡/.VªõÖÓýÓןü`Þ¶£ƒl ¹Sÿ1ë3\ôXñ‘åÃST‡+E×cô¦täòx•EL½1ÃèÑÒШ=_,Wííó7¿¥^Ù£ƒ¬ w×ûG„¬7U—"°|x +íT1ø+$–Ê_VÛñ¡ÌéQ7&¤B›! U 4x£/åK«µæƳ£óë¿%ü¶³Œ2{ÃG|¬Ë'yÀy8{Ä£ôÁk%„@£W57wŸ_Üü+m=ç€Ñn îÆè¹Üâra¥Zo=Ý;½¼ý.m=çÀë( n‹´S0ÛFï }>·Ð3z¹ÚxÒ98»úeºn.£…Ám‘v +fÖèKùb¹¶¾±}x~ý§tÝ\FŸ.„Hù3Ü) ½T©57wŽ_Ýü3]7qÃè¢5í€~*é%Ho>Y€6z®gôB©Romí\Þ~›–€»8aô¡çÒŽñÀèdÓè=¡Ïç— åjýIçàÅÕOÓQp}ª€ÑȜїòÅòZ£½}xööÓt”œfÆ.¦xT6€,À½´Zkn쟿û<%§™bã‰ktï´Î£Œ^yôxk÷äâý×-0dÀèÓ¹C&›H;qÌK ˆeôù\nq¹°R­·žîŸ¾þ䇇×p=%¦5[ÌK ˆ€aô¹;£/ôŒ^®6Úƒ³7¿NÃÀu`ô”˜Öl1/5 ŒÑ—òÅrm}ãÙÑùõŸSÐp=%¦5[ÌK ˆkôR¥ÖÜÜ9¾¸ùG>®£§Ä´f‹y© Œžë½PªÔ[[{'—·ÿMÃÀu`ô”˜Öl1/5 „Ñçs ‹Ë…•jýIçàÅÕ‡ïÒðp1:½‹pkÚm? (ô|nB,£ÛZ±s…^jÀÄèFŸ=_,¯5ÚÛ‡go‘†€ó8jtq‡zTµc¿`´Å!tWòHõªzCË=˜«”Lªw#Ož«q©‰C})_\­­o<;:¿þ}"ïw55ú »tl¼ è{%zR‡äþB«L÷·Îfì4´[r¹‚„3z©Rknî>¿¸ù õš Ç®ûI-Ð÷jt¤’ý…å`®¿e6ÛnÜWIrñ‰B=×3z¡T©·¶öN.oÿM½&Ám£›‚R +ô½ê ™£da9˜n—hF¦%E<{û#ê-@.}´©d\4¶µ¢·ÚÿÍo ž¾jôÀÁþš`d3zù'Š|"ž04¤Ñ—òÅÕÚúƳ£óëßÐïk‚qÞèB[2“ê;Ô…N­ý# úyæ&›)TÂß”ÒËe$côR¥ÖÜÜy~qó™Õë ×nZØ8Oß¡q"1€êe0ý-"ŽÑ©Âœ˜X.ã@âÐF/”*õÖÖÞÉåí‘^ã qÜè¦#Cn–uMËSý# 6±ËfÖѽ…"±\ç&Ä4z.·¸\X©Ö[ýÓ«_Åy›à¶ÑÕðÆZ€ÑÉ ¦Ñ(vƒMŒv–FgZˉåbö HÕè=¡ÏçzF/WíÎáÙ›¾ýJ™Æi£“®3:µfˆÌ3&FÌ~Ž^GÎ#®Hb¹¸gÁ<Üú½’ÊÐȸ‘rú Œ¾”/–×Ö7¶Î¯>á{d'žGÎèdYˆÑíLêÑU¶ƒ¹-DÎaîœ ˜X.n`ÌÕâÖï—T†FÆ”ÓmôÒj­¹±süêÝ&z«ƒì£“ËdûÁÜÂÏÑú³õ‰åbw>ˆ”FìõäÄ„ùà‡$:jÂn0@ýòèñÖîÉåû¿NüfÙdz^ $itòÌ©5ºÇu†Ñ£#®F¸Ñ{qø#q!ÃÈn¢Óâ25AÃ0z®gôÂJ¥Þzºwúúö˨/rúdÔèBÇSKÉþöƒ•ƒRÿðs´:6ÇäFgr±Ý'tkÓot¡>½‰Î‹ƒ t£Ïç— åjãIçàÅÕ‡ol_à(dÔèÜÕìo?x°*„Þ?ôœ‡0zp.v¢óèßÚèŠ`£wå‹£V'~Ù¨0ú'—HÓ‰H¼aFPŒ>70z¾X^k´·_¾ýqàk +]¹ýíwÍw¯~^"F)Œ“‹è<úglbaô®P¾EÉÕI?JT˜q’áײ$šNDâ 3aô¥|qµ¶¾ñìèüúW¯)X`t™àþöƒioNÑÃs±çîRïÍÆèZÃÄÒÙµW¾[7PŒ¦qÏaf!^ªÔš›;Ï/nþøš€%£F$!ý£_caî £‹àÂ8¹Ø‰®s·UÖÙãwŒÞ ù~bÝt"îù"Ì,”Ñ ¥JýñÖÞÉåí¯n2jô°‰l•Õ`_œB}û¦mt›\v×ÇAúWF‡Ñ§Ýè¹Üâra¥Zo=Ý?½ú🈯q†Àè$l•Õàѵ5J‚Â’ýÙ±Œn“ËîúL5BwõÐ…Ôæzåƒç@37µî÷¾;Ø~¤¡wõÔµáÿÌd5u{ãó”;zð=ÌÜhn94%Ý +˜hFŸÏ-ôŒ^®6Úƒ³7}í-À'ž¾ä¶k²¿í`A̘ÈèDÚ8F·ÊÅîܨ]—»†´ïð—Æúè/¡×7úR¾X^[oo¾¼þ™@<2gtƤdÛÁüØðZ6­§H,»sGnm}½ÿ3V߬9Ù—Ìú诣“òì—PZôØj}w¦Ñμ¾©PtPu9tOf o•t¡Œ^Z­57vŽ_½û@<`t²¿í`ªf"£AôõÄr±;wùÞ–×}ê†OoZ¼îÿ5MHFçjc†Q¿5lz2ª<„ѧ‹åŵú“£ó_{ôI¶®¾ÒõînÿÒ‡ˆüÖ‹ »’ß3oÒk‹G犱.¶s'`Œ§´4l£B¤³¿2ôºõ4þ¸Žûe‡WÐÐ'µ4º]OB_wÀB}~i}sïøâwÌ#@$Ù6zCí•Dä·ŸØ´pü¬ÊQk¼u±»Ô¡j[rù4Qù¹ø°Œ®Öatê‰eëÕ/{Ã4º¿ú.*)c=?S¬Tlí¿xógò‰À‚Œ]9+CÕæ + J±œX™‰û¨¹Cò3¥Æ\Û¹#Í1âÛ&­x‹‹ÛÝP1UMÚ{™©ˆ›ô®ÿ‘«FMb×Só^ê!&ªÑs¹±‰üL©²\Û~zrù7s¿`‡F75c‚(ñváÃõS^è‘ÿËé…?D»¨ÎoŠxhu±»‚0׈Ú÷þ•¡É„eƒÅè\Rn1‰]Oþ5—7P2(FÉ6^(-¬lìœ^ý“Ø°Xá†ÑE #b1¬¤þ&[ŠÕÄÝô~ܲ6nâ°bc­‹Áô½Ò]7ŸÖBv.ÿùCã¶F—ity|lF§+0ŒNÓâö=… $£ßë}rª0×2úáÙ͆pЃ;‚ó§7†QeÊI–Š[]½à7øI•òâ3:Yitj˜gÎb×] Ð>>95[^\­ï¾zûß!ø ãÀè ë´ö¹~Ä°i÷×.å ®¨Úå=L£³¨5sô¸}Ot5€À4útÓèkõ'Gç?ö¡2 Œ2aÁÖÎþ“D,‹Š‹G]y¡Ò(¶¢4‚ûñÒ 9–«À¬™+TŠ »ž¨_%€ƒ0zq~i}sïøâ«øypg€ÑAÆi †¯£íEïh„Æ=IV½,B¿"ü'KÈŠ3ºðï‹Åè\ZÍÜ0?.„R[XOBYR¢F c=?]¬T×7÷_\|ˆõ„w dœÖ6×B’tä‡A#÷duú‘~EÈwa6ºè>‰í¿ÌTÆMFÂHT ÕÌ#ÂQ=É]5Åè¹ÜØx~¦T©Ö¶öO.¿1NilÑA¶!%èÁÀTœ•œÑ{C £+úS¿´¾¹w|ñUÚN.£@ÂèFÏO+ÕõÍýo>¤íà20:$Œlô\nlm'—Ñ azF¿×1úäTaîþÊÆãó›ÓvpF5úøäÔlyqµ¾ûüÕÛi;¸ Œ £}ºiôµúîÑù»´•œF€„1Œ^œ_Z´wüúi+8 Œ C}sïøâ7i+8 Œ £=?S¬Tl퟼ùmÚJN£@ÂHFÏåÆ&ò3¥Jµ¶ýôäòCÚJN£@ÂFÉ6^(-,׶^^ý1m%§Ñ aºF¿'}ecçÙéõ_ÓVpF5úäTa®eô󛿧­à40:$Œbôñ¦ÑË÷W>><{û]ÚJN£@ÂhFŸž-/®ÖwŸŸ¿ûwÚJN£@ÂF_«?9:÷CÚJN£@ÂèF/–×í¿~ÿSÚJN£@ÂFŸ_ZßÜ;¾øìcÚJN£@¨FÏO+ÕõÍýo>OÛÀm`tH˜Àè¹–ÑgšF°µrùeÚFn£Û"ÄðW+‰9©#}¬iôR¥ZÛ~zrù«´Üf(þíÌ·½ôi#ºëåúæ„.~¸bô‰|¡´°\Û>xyõuÙaFÙÈì¥O›,=ì‹À1”7ƒ,ã}$7Ú1úÊÆÎÁéÕï“=ÿAÖ€Ñ-ÑàHr×fƒŽÑï©Fvzý§$O=`tKHÛÆüj£ ö‹ÒËÒ‹.ƒg’’ÉÄ’x0ŒB’ܵÙ@1úäTaîþÊÆãó›¿$züƒÌ£[BØVÄÝ Œ>$Øe•@IJÊÃg²ø²Š0KùÊr ÙèãM£—ï¯>Ü=<{ûŽspçÑmiw%ŒH¬'™9ÇP¹+Fg)yòÄbôÀvqlú‘´ÆÁT1é—åšÑgË‹«õÝççï¾ëû(ÀƒÑ!~£'Ì3ºÙ¨c-:¿É„¯½Á²Ñì 5äß^gB©¦¿Œn?=ƒ¡}ºiôµúîÑù» x ƒ;ŒÞ?0º#´úÄW¥›>†‡AšFĸ¸ñî³²){>h¶¿Œn?=ƒ¡½Ø4ú£'G¯ßÿ0ìd½`tGè]ï” <•”?¦íï>ë?›ÐZ0zŸèFŸ_Z´w|ñþ§$N}]`ôþÑ¡­YatڎļŠÑElÛ#Þ}Ö6cà ½?£o6þÙÿ9öAfÑûFwßèêwÕļÙ6ºàV«¿Œn?=ƒ¡=?]¬T×7÷_¼ù<™cd7NÙ‰m¯¶Kit» m«Š¹úÆmŒ>Œm24„ÐÊí˜UoÕˆJ÷uÿký Гµ/²N˜Ñ…™.t }Ÿukuu“¶íP+¨¯Uh v¿Kq5£öA*E­ƒïlÕ}T£Ï4þ`kÿäòËÎ|eR7ºÐÏ2*î¦7m#(ÝÖ0‘œH$”aBôrŠ}M¨þ*0ÅU=‰ÑùÉ™Z¹`RÇ1±:fD´!]ºÞù×£–SZfvÚèÁ}Ò!ó(èý†¤½CÕeN*EˆEÑ×ÈlŽ}¬…ù¯šO-P«ƒïh5 øFÏåÆšF/Uªµí§'—¿ô„ÔÞ©‚Ì ¨QÜÁhõzØ!drz”§|àÒZO(´ÔÂÅS=I´ÑC&'Yúäœ&F¸ïC(òîŽaF'wšòÍ3{4:½ŒüÒ3úÊÆγÓk †SF7­E¼›ªÙ‚«BH÷›Ç#‘œ:D•Ôèþ&dŒ_õ$áFšœ59uè,ñ¢.ƒÕßG‰˜§…ÑK¸þü÷Îï@ÍñÁœ×¸Ï¦.%¹2@_¦‚ðÕ.£EYõ`¹—]C3ú\Ûèg70ŸcnKFï•Ü üúƒ6ü ™IÓZœž<ð_¹ðOmÑå¶öÎüvžP£ÇQ=‰Ñùɉ»é©-«‰OA.K4T×õä%óT¹*ëÿ™Ÿ‚˜ö}eJjª/ÃèÚëmx]JУ¥ú›"ü²š£/£ÿŸýriºœ(ã¸2È}d@. ̀0€ 0‚Àr™a€Ü»qå—pï`áÒ¥UZV¹sëeã7ÐÀF×®¬ÊÓ¾çä$§Ÿ§ÿÝé$œs’ÿ¯ŠáMwç¹$ürb=įãIãý¾Î?òÄÅ˯\»~ãkGÈNÎèÚœxмëTtðã)Œƒ~k†M¡©Câ媇t=™F³Æ„ ª ÁP0 8 DT50!ÎQ¬zHÚèÉ3“¬ZÊ 7·_Ñwk oËÑ’ùZ´ˆ·ñá-VñÆ]¢‡Q£ÃîÐE‰¿Ý—NÀÅP#±âå¤ÑFÿî£O>ó«?~ÿæo!c˜Ðè ÔÎv=Œõ¦N–‡KpHCCŒ>0a$G©ê!™ËbɃþ÷7>¼OùIÆ ¶žúôõGåÿÑËèN¢ô'º/íyů+H +ä‰>X`ƒ^-¯Žc=d=b§‡2úƒ;£ðÙï!c8-£Û÷ 6ʉV%$«ì™0,sºê!#ÔâÝx;8ÓK¹Ã譓‘*CK`c£ô™æH׆ó„Ø89R¼ &šßÞtFoJxV¼‡ù6Ϭ £¿õÁg/!=8)£ X;ßKÀ‰æœH =s¥‚—cl||õ2F×?³œM=«Ñý½‡¼ÒüµoÃkÈui©þ¡«@ùͦQ¿QMq‘2ìŒ>Ž×“£·Ÿ98}ØM¼¾xKbÊŽz˜qó̉6úÃ>ùƒ~ôÖ‡·þäÃI½cQt-±%ØwYA£G‚a%EªOÄêat“Üf©gÑ`#A› ÝíþÔ-u_Sceujó´‰Ê^ÀèѺpR»<¼(yÍáR-‰Þ1vŸÄzX‡ÑøÚÛÞú‹#d 4úÁŒVF'FWŸˆ5Üè&wý3Ë.ʼHÅØ5…”U5÷~:7‹ÑýñÙŒIŠ¢¹dz/Þ-Ý—ÅP“±ìóîžÙ0FÿÞ÷Ÿ}ñµ·zë¯áË’LhôÈF6Su0B‡Ñá©4zÒæ0zîE*‰ÝÔžWê?P/£w\­˜Ñí%)nôØvBÁm´úG:›«¢·²ûÒ¡!5»¶³ïžyÀFÿœF'ãX•Ñe .a£÷I˜œ]=Ž˜Ì—‘\§i&Õ`ðrŒÍœ=ÞÿÙ¡¥né…5WB —7:®+–]rÔ)±{‰/(n)Ñ}Gè%þÅ?!cX‡Ñ[íIÕ”YBB›Æ'JTÉ1z2y†Ñ³ +™ß+bšðþvçi£§{‘àL OcôðÌ”ÑõMßÞ#»»#u˜Ubë .vÒèiù›ÐKÂ7úý>üØSϾxõ'Ñèd$k0z $TBI£J›(S=¤Ûè}’·¯o±ƒ‡~%£·y 9×eôª³™À¢®Už GK=RW$ihtû™2ø Uƒvµ×…¿:ò=㥌\ÛÃoŸIŒþN +°|£C)Miô S9ÆWé2zwrõÎnþ Sß s Tizðœë4º£Dn¾ìð3µçé/ŠX‹±Ç¸®HÒ6Ñ>„žoÎ…4‘ö õ4¡šÝÓT A`]GäÚfìãSDý¡Ñ_ºúÎÇ4:Éâ®­d_´ñàƒ>4!œ(V=¤ÃèÉý<û9;xè7²R¥èŠ¼†¼qµÄ?½Õ”ÃAj¼¾‚úWj£ãº"I›=ÿ̉=h°½Í‚V´~)±:ðµ=‚ý3ÑÏm~agô/¿±û‡^,Ýè6ül„Á‡}pB4Q®zHÚè9ɽìÞœþñvø7²V¥ ŽövÝ ¦òñlÌa]1:® 'õÜ©Ąõ¨DÑëÕ̶É‹"‰Ž`ÿLÁÞèß©~éÊëgFÿ·#d Çaô:­òŒÞ´,)PÔæà„h¢\õ´Ñs’{#žÌ`,Álˆ3ŸI🕕Š´B×W<Â*ê@â+7šÇÇÎX ëBI«ÈîÎ3ú>‘(5‡WHê¸ö,Ó‡= V6úmŒcáF¿E +”€´9¹ý¿ô뚎Óè»ÚrVÑèYÕCJ½ÉŒ.4ú©`n“ð®M5úÅK/ŸýNòeMH'Gbt¤E½`õFoî¨\à"LJ˜ÛÄ»69£Ÿ ý®swïŒ~ùÌèŸÒèd$7:X,Mm‰ÓÚÁÞFÂà匞™L¬Ò×èpýnLÏìògUANøLò¦M 0ú›4:ÍÁ¾ Ô‰ÆP¬£K° ˆÑãCC‚‰‚ÕC2ŒÞ‘¼Rò4 OŽ±·iŠ·Q`£¾¡ éñ½µxµ¥N«²Œ”Ò†OÖÊÔ÷ˆ„`¢`õ¤Ñ³’Wé–S98ÂÛ4;Ðè7~áÅá.^)"ª¶ÔiU–ÑÍ÷‚>Y7úöžU.㢉rÕCÔÕv6zNroª*§BV0úµë7~y" ÉäðF¯@U¬aD»hŸ[Ìñ¶Qý¹®)ÏèÚˆ2.!š(W=$fôüNt”®ABH6ú#4:)Ã=ôJ(kÑ.Ú; ¢ÛX0xŽÑõÇHøc¶WB8Q¬zHÚè9ÉÕ2é$„ÔxF¿ïó¼ó´¼\ht2 4:Y8­ÑõVßl)‚àS …Š-Ã,-/kô‹—7Fÿꛃ™€,,œZæ›ÍžñŸ…ýÁî¯Í7]!Íõ“ä ¨§J‚s£A#c[¶Iâ]f&ʼn`^ ¸ÐÂ-¯côÇ/^~ycôFd1ðÙ" §vwý¯­|£«youýWû¼´KšQSÉŸ·'‡ãÞjû`ŠW+ì1/‰„ù$’£\ËëÄ3ú½4:)NÎNZ›Ýîƒ.at¤(—gôp:º0( ¶˜™Ä|èFûÄ(ÕòJñ~ÿù 4:)N4ºÔGÞ K½~Rj‰]¿› A$×N‰=mÓž ÛÓ¹¨{%Ñ×aÔ¾ 2bly­£¿ùÞ§_ýcÄ»œ,ž&õoÜÝÁæÐ#êœÝx{àÇpZbÞs䉗@t2Ô[à\Ì‚ý’¨ë€‡» -×òZ‰ýïe^ëdµÐèdá4úØl÷ĘK»®[o~ÎŒ .!:*>“•D]‡0uF÷ÅZ^+ØèwþVðÝNÖNNcÿ‡ac2粌®\Ö»ˆÞ$˜ð¬ +‚º!FÄ‹EE—®åZ^+£Ký÷>¹óçIÞòd=Ðèdá´Žqê7b3”aôÎqÑ›^Ÿ jÖÛ.ð\ß$^±Ì‘o WplËkegôoŸ;WýéKWÎŒ~ûÓ½êÉ* ÑÉÂñîöC•šÊèþó•%Û˜é¼Rƒ‰^IÐu0Aƽ_5+ý]Œ…F' §µ°ËæØ-sÓ½ + ƒÚs¼s³ŒÞùº~48°¢dôîjVŠ2úCÛýwÓ½êÉ* ÑÉÂQ"wx¤šÄè·\§Þd÷X†mx¥FÚËM>q$|3¤»/Øò:ñŒ~ÏÆèO]ºòú;ßþMÑ·;Y4:Y8Ú[›¿6¿žÛÿu$FoÝ<—ppX’¦ki»—ú]à“îžFÉÞèw{Fÿ’F'ã ÑÉÂFß kB£›ñL½I-uû`F%Ø?Ix‚ 0x†Ñ‡µ¼B´Ñ~ì©ç^ºzfô_Oü¾'K‡F' G[Øù?Mg6úþìXPoÄUUçØÀ$»¿ã‚Ž`ôì–×Fcô»6Fpgô¾øÕ´¯{²xht²p<{Ô:奉îK8_oÈxŒ LRŸâ}ÙØ  —*ÛèÃZ^ÑŸý?ûõÔØu`z"!$„!ÄCB<+VËsÅ +°ìnã¤ÜŒS¤Ž=nRx2“&3Éx\zœ*§ŽSdÆIáq‘Ê…™Lš›Â)’ÆgVD‚]qïÕ• öœ9èÿ*I÷èÚüz~3Gî,æEpüÚžôè ·œIÑÍR¬VÓ:û?Š®ûµ¦ÕfÒZëG†ƒh>nùš‹4¿bÜ´YcÛÎqSGîT­EŸ¬}÷è«›~£³PtÜrºz\üÕ?×¾Õ]ª5«¢¿ü¸f¼RkÞcµšfÎ6“Öše×mR7ð|¾†Ëƒ\oÝL†¹5ÛþŽÓßÔ‘;–¡èþÐèäÜò½Ýê³{´£#QtÜrºzè"£/zMs[húsv…¢?oÞNÆ+ÚIõ?,Ì‹~~KêÇŽb2ßµÑnØln}ìÛÏq3GîXú¢÷׋ž˜[.«_´}TW@ÑqËéëqÖòN7ðìÅõ³ë½vùÍ6WZÖ5›Ôt¬ñ,&C®µÈåJú5ô%þÎ9nèȪ¥èÑÄl½è‡Ÿ^á¡ ´EÑqË5ê¡{Wkûî¢EO.¿S3–°Öf¢æ%ý•—³ê?k7©ÉXÃij¦7îuiî׸J­Yim·ÛÍqCGîPº¢;/Š¾t·Xùäõ<çÑ)(: ñzî‡ëÌúÊ;¸‘­ßØË·ÒÝ30˜Y\»_ùì"@mÓÝz^ôÈx½è;Ê.ÔFÑ@0mÑûž`d|z¡^ô÷dj£è ØyÑ»šE÷5ŠžÍoï¿+»PEÁ^½Ûb¹(úH<•Ío•ß–]¨¢€`ú¢»}zÑçïl•ß”]¨¢€`š¢÷ÚEǧæW7÷¾'»PEÁšEïiÝå „Ç¦2«¥ÙE€Ú(:ÖZôX2³²^:þJv 4Š‚éŠnwy‡cÉtnýÁÑ3ÙI€Ò(:f,º?›LçîíV¿(¢€`†¢÷ûC£‰¹åB±ú©ì$@ik-z41[/úá'²“¥QtL_t§Ç?˜]º{¿ò‘ì$@i3} ^ô™ÅµÊ‡²“¥QtL[tkŸÃ3ŒŒO/¬í¼'; PEÁ.ŠÞÕ,º¯Qôl~{ÿ]ÙI€Ò(:Ö,z·ÅrQô‘x*›ß*¿-; PEÁ Ewûõ¢Ï¯n–ß”(¢€`Ú¢÷ÚEMeV7÷žÈN”FÑ@°Ë¢÷4ŠîòÖ‹žÌ¬l”Žÿ#» PEÁôE·»¼ƒÃ±d:·þàøï²›•Qt̬è“éܽÝêŸe7*£è ˜±èýþÐhbn¹P¬~$» PEÁLŠMÌ.Š‡ïËnTFÑ@0CÑÿPtbfqm§òÙM€Ê(:¦+ºµ^ô`d|º^ôƒÊnTFÑ@0}Ñû_£èÙüÖþ©ì&@e{QôFÒ-–‹¢ÄSÙ;[å‡ÿ–(Œ¢€`ú¢Ûn_ Ÿš_ÝÜ;ùRv 0Š‚iŠÞcéµ9\Þ@8–̬l”Žÿ"; +PEÁ E·»¼ƒÃ±d:·¾{ô{ÙQ€Â(:ÖZthtrn¹°[}_v 0Š‚µ½ßŠ&f— +ÅÃwdG +£è ˜±èN(:1³¸¶Sy*; +PEÁ^½ë¼èÖzÑ‚‘ñé…üöÁ£odWê¢è ˜¡è}/‰§²ù­òé3ÙU€º(:¦)z·ÅR/ºÛ‰§æW7÷N>—]¨‹¢€`ú¢÷Úno <6•YÙ(ÿIv .Š‚i‹ÞS/ºÝåŽ%Ó¹õG¿–]¨‹¢€`&E÷‡F'ç–ïíV!» +PEÁZ‹ÞïE³K…båÙU€º(:ÖRt§Ç?˜Y\Û©<•]¨‹¢€`Í¢wÝÚçð #ãÓ ùíƒÓodgÊ¢è ˜IÑ}Á‘x*{g«üð™ì,@YÓ½Ûb©Ýí „ã©ùÕͽ“¿ÊΔEÑ@0]Ñ{,½6‡Ë%3+¥ã?ÈΔEÑ@°–¢Û]ÞÁáX2[ß=ú•ì,@Y3)z¿?4š˜[.«?•(‹¢€`­EwÖ‹MÌ.ݽ_y*; PEÁLŠîFƧ×výWv *Š‚]½ë¼èÖ>‡Ç×(z6¿U>ý\v *Š‚Šn©Ýí ŒÄSó«›{'ËîTEÑ@0]ÑëIïµ9ÜÞ@x,™YÙ(ÿRv *Š‚µÝîòÇ’éÜúnõDz»UQtÌ´èþÐhbn¹P<|Cv *Š‚™ÝÙïŠNÌ.®íTÿSv (Š‚µÝjwz‚‘ñé…üöþég²ÃEQtLSô®‹¢÷9<¾àH<•½³U~øÙa€¢(:¦/z·ÅR/ºÛMeV7JÇ?“(Š¢€`†¢÷Xzm—wp8–LçÖwÞ”(Š¢€`&E·»¼þÐhbn¹P<|òµì2@M3+º³ß?˜]\Û©<þ›ì2@Mk-ºÕîô #ãÓ ùíýÓe—j¢è ˜¶è]Eïsx|Á‘x*{g³|òì2@M3½Ûb±Úno <6•YÙ(¿%» PEÁŒEï±ôÚì.ïàp,™ÎÝÛ­~_v &Š‚™½ßŠ&f— ÅÊ“ÉN”DÑ@0Ó¢;=þ¡èÄÌâÚÎÁ£Ïd§J¢è ˜IÑ­}/ŸÎæ·Ê§¿•(‰¢€`º¢7’n±Ô‹îöÂñÔüêféäç²Ó%Qt̤è½6‡ËÇ’éÜúƒ£ÉN”DÑ@°–¢÷Ô‹nwyC£“sË…bõÉײÛQt¬MÑûý¡hbvñîýÊãÈnTDÑ@0ó¢;=ÁÈøôB~{ÿô²Û® KŸôzÑ­}/8Oeïl–O>½Ap†¢w[,V›Ãí „Ç¦2+¥ã·do\±èÿc¯ÞÓ¸Ž[,,,Ëj—å%B`Œ@Œ…°Þ„E$‚…õ4¶gòò\ëî2“¿Às7—WžôvyWçO +7žIsW$mj»IãBUÐØÄ>Ôýšïç/øv_䕪™È*µvïäLt!pg}ôq3‘Ηë+ÛÝãßDw–Gjáx*Wš[nuÿ-º¸³8ºÏ¯hF,•-Ö›{ž‹.î®]^º$ 2¢Éé™êÂÆÎþ·¢ €»‘£{$¯PõÈD¦Pi¬µ{§ˆN®lŽ>n&Òùr}u»{ü³èDàÊúèA-Oçfç–[ßD'WVG÷ù͈¥²ÅÚbs¯ÿLt"pumdé’4¿¢±ÉlñÖÂænp&:¸¸6ºtIòÊJH&3…Jc½}ÿô7Ñ‘À…ÅÑ=ãTÝLLåoίnwÿ#:¸°;zpÜŒ§¯ÏÎ-·:‡ÿ \XÝçW4#–Êk‹Í½þSÑ‘À…åÑ¥áÑCF49=S½³±³ÿðÑ•ÀÙå£ZºW¨zd"s£2¿ºÝ;þYt%pfôq3‘Ηç–[£ŸDWg¶GjáX*Wª-5÷ž‰®ÎlŽîó+!#šÌ« ›;ûß‹ÎŽFŽ~¾tIòÊŠªG'2…Jc­Ý;ùUt&pdytÏðèuÜL¤óåúÊÝîÑ+Ñ™À‘ýуZ8žÊ•n/mÝ;øAt&pdwtŸ_ÑŒØd¶xkas·?8Ý œŒý|é’ä••Mf +•ÆzûþéÿDw'ÖG÷ Pu31•/ϯnw^‰îNŽÔÌx:Wš[Þê<Ý œØÝçW4#6™-Ö6wûƒ÷¢C€»£K㇌hrºPm¬qÿô¿¢C€‹£ZºW¨z$1•¿9¿ºÝ=þ§èPàÀéèÁq3ž¾>;·¼Õ9øúLt)°gtŸ_ÑŒØd¶X[ØÜíþ/ºس=º4¿¢Ñdv¦zgcgÿôµèV`ÇúèçK—$¯¬¨zd"s£2¿ºýåñ÷¢[€û£{†G¨ãf"}}vn¹Õ9xüAt,°árô fÄRÙbmas·?x#:Øp<ºÏ¯„Œh2S¨4ÖÛ½“¢c€ ›£^ºPu31•/×Wîv¾9] ¬¹=¨…ã©\éöRsïÁ£ßE×kÎG÷ù͈Nfgª ;û§¯E×kG“$¯¬¨zd"s£2¿ºýåñ÷¢k€5»£Ÿ/Ý3y+:Œp:úùÒ=çGjáX*Wª-6wûƒ‰N#®ptŸ_ Ñät¡ÚXo÷Nž~Ý .s;ú˜$yeEÕ#‰©|¹¾Òê>y+º\æxôó¥{†Gµp<•+Õ–š{ýÁ¢›ÀeW9ºÏ¯hF49=Sm¬·{'O?ŠŽ—¸}L’¼²¢ê‘ÄT¾\_¹Û9|òVt4¸ÄùèçK÷ jf<•+Õ–š{ýÁ¢£À%W:ºÏ¯hF49=Sm¬·{'Oÿ] .r?ú˜$yeEÕ#‰©|¹¾Òê>ùEt5¸ÈåèçK÷ jf<•+Õ–š{ýÁsÑÕࢫÝçW4#šœž©6ÖÛ½“¯þ .¸ÒÑ%¯¬¨z$1•/×WZÃ'¿ˆÎ¸ýÓÒ½r ¨™ñT®T[lîöÏEg€ ®xtŸ_ù‹½zwj+=À0.8£££º $„d! dd,#.ËŒŒµ\ÌÅÈXa°—xÆU&ɤJ³³ãIª™dw&“™4©vR¥Iãt©2³ë™-’"M\¦¡IáÆ‘í¥[Q|Åy~ÁûVé FG2ùb¹ºùðèLônpQwE—dU7¼‘átîæüòڃÿ‰Þ .úÁ¢w’.«šËô‡c©±ÉÙʽíƯDïu[tÅ©›¾`t$3Q,W7ëGÿ=\ÐUÑû$IVuÈ §s…ÒòÚîÁŸEüpÑÛIïo]s™þP,•œ­¬n=ú±èáà‚®‹®8u·/ÉLoU7êG߈^¾×]Ñû$IV5ÈÄÓ¹Biù“݃ߊ^¾×EÑÛIïoÝeúC±döúLeukÿøLôtðQ÷EWœºÛŒ&2S +ë{Í¿ˆž>ê²èí¤«šá DâWÆ sKµÇ?=|ÔMÑŠî2}¡¡d6?sûîýýãïDoX(ºâÔÝÞà`bôÚÔÂõ½Ã߉Þ>èªèï“®j†'Ž§Æ&çkÛ‰Þ³VtÝô…†F®æ‹åêfý询Ç€÷,]RTÝð §s…ÒòÚîÁÏEïuWôNÒeUsyüáX*;9SYÝÚ?þ§èõ ÃRѧnú‚ÑDfbjae}¯ù{Ñë@‡•¢K²ªÞ@$~e¼0·XÛny%ú°RtG§èŠSw{ƒƒ‰ÑkSówÖ~&ú°Zô>I’UÍðÂñÔØäleuëÑñ7¢?+Eo'½_’M7}ÁèHf¢xkec¯ùKÑ€õ¢K²ªÞ@$ž/Ì-ÖvOÿ#ú¶gµè­¤Ëªæ2ý¡X2›Ÿ.W7}!ú¶g©èŽNѧîö£¹›óËk»ÏÎD¿Àî,½O’dU3]®nÖ›§¯EŸÀv.YôVÒ[E×M_0šÍJKµíÆÉKѧ°ËÝq^ôvÒ O Ke¯O—«›õæékѯ°›Ë½•ôVÑuÓŒ&Fs…ÒRm»qòRô+ìæREwœ½tÃÇRÙëÓåêf½yúÑ·€ÿ³W÷¼míÆ­žŸããcŸ8vÇŽkÇuœºv7¯n’æ¥Î[“¦IÓ¤i7‰o’&mïUU†¢«‚BH0¡+àN ° ,¨H0܆ËÀÀP²fÁ5Éý9§éøù}ƒgz É\øèõ¥×®›V8–¼’/•§V·j_?Ý@s¹ØÑ=£¿_ºµÅÓ¹âàøÌÝ'‡oEwÐ\.~ôúÒëG×M+Kfò¥òÔÂêVíõ©è0šÊîiýýÒ@¨-žÊÇgî®Wߊ ©ØpôúÒëG×M+Kfò¥òäÂêVíõ©è2šÉEîiýýÒ@¨-žÊÆgî®Wߊ. ™ØqôúÒeÕ«›V¸=™É—F&Ví½>@¹ðÑ=£×—®P$žÊÆ*KëÕƒ·¢Óh"¶½¾tYñê~+ÜޙɗF&çWí½:Ý@ó¸øÑ=£K²ªP$žÊÆ*KëÕƒ_Šn yØsôúÒeÅ«ûƒáöÎL¾429¿²¹wüNtMÆ£{G—dU3-‘xª»80ZYz°½ÿ™è8š†MG¯/]V¼º?ØÚÞ™¹Ú721·²¹{ôWÑu4 ;Žîi]’UÍ0["©îÂÀèíŵíýožŠÎ IØuôúÒeÅ«ûƒ­ÑDWOïðÄܽ‡;GoEçÐ$l9zcé’$«šÏl‰t\ÎúG§×ôòDtÍÁ¾£_’dÅ«ûƒ­ÑDWOïЭÙå߉î 9ØsôÆÒ%IV5ŸiEb—³…þ›ÓwîoÕž½@S°ñè—$YñêF0M¤{z‡Æg–7ª‡ß@S°éè¥K’¬j>Ó +Ç’W®Ý(O-¬>Ú;þBt!ÍÀΣ_’dÅ«ÁP[<+ŽW–Ö«ûŸžŠN  Øuô󥫚ϴ±d&_™œ_ÙÜ=ú­èDš€mG÷üÿ芪P[<Õ]­,®mï¿<Ý€ûÙzô÷KW5Ýo…Û;3Wû†'æî=Üyú¹èFÜϾ£{G¿t#ÐéHe ý7§ïÜߪ=û§èH\ÏÞ£×—.+^Ýl&ºzz‡nÍ,o<9ü®èH\ÏÆ£{G—dUó™V$–Ì^»QžZX}´wügÑ•¸ÍG¯/]V¼º Eé\qp¼²´^ÝÿôTt&.gçÑK—$YÕ|¦Ž%3ùÒÈäüÊæîѯDgàr¶ý’$+ªnCmñTwq`ôöâÚöG/ÿ#ºw³õèçKW5Ý´Â홫½ÃsË;‡Ÿ‹îÀÝœ8º¤¨šh‰t¤²…þ›ÓwîoÕŽ¿ +€«Ù{ô³¥ËŠW÷[£‰tOïÐøÌÝõêÁ·OE—àf6ÝÓ8º$«šÏ´"±ä•|©<¹°º¹wô;Ñ¥¸™G¯/]V¼º Eãé\q`¬²ô`{ÿå;Ñ©¸˜ÝGo,]’dUó™V8–ÌäûF&æî=ÜyúÑ©¸˜#G¿$ÉŠªP$žê.ôN/Þߪ=û£èVÜËö£Ÿ/]õêþ`k4ÑÕÓ;tkfy½zðêDt,®åÔÑëK× ³%»œ½v£<µ°º¹wô#ѱ¸–ýG?[º¬xu0M¤sÅÁ±ÊÒƒíýç_ˆ®À­8º§qtIV5Ÿi…cÉL¾421wïáÎá›ѹ¸”CG¯/]V¼ºEâ©îBÿèôû[µãŸ‹ÎÀ¥œ8úùÒUM÷[­ÑDWOïÐøÌÝõêþ‹ˆîÀœ0VY\{\{öcÑ帉óG?[ºaZáX2“]Þ¨|üÑ鸈ÃG?[º¬xu#j‹§²…þòÔÂêæîÑ×þ-º÷ø0G—dUÓM«5šH÷\«,®=®=ûΩèx\Ã食-]VTÍ0­H,™É÷LÌ.oT^üZt<®áøÑ¿ZºW7‚¡¶x*[è/O-¬lî>ýäï¢ëp‹utIV5Ÿi…£‰tÏõÁ±ÊâÚVíø'¢óp ç~¶tYQ5Ãl‰Ä’™|ßðÄìòzuÿùODçààè_-Ý«ÁP[<•-Ü(Oίlî~ò'Ñý€ÿ±W÷¾m&tÇSb?~¿ÄŽcÇuì8v\7®×yqÞê¼5Mš¦IóÚ¤i“ËKÓ¼4/íõNwÀ7À H‡@° N H0 •H Hˆ ‡Žá–:t¸¥CÇN“ÞUŒþù©¾Ÿ?á»|ñz(ÞÑËMŠju¸ª|ÁHC2¹66³¸ºýø©t^ Å8zaé&³¢Ú.?½”êè¾5·¼±ûÑ‘t^E9ú‹¥[4›Óí „c­Ý#“ó+›{O¤ ð:(æÑËMŠªÙU¾`¤!™Î Þœ¾»ºuð©t^Å9zaé&³¢Ú.¿6Ouôß^ZÛyÿ é_‘ŽþbéÍVáöÖÔÅ-]ý#óÙ{~&Ýã+îÑËMŠªÙn_ |±©íÊÕÑ©…•ûû‘Ž€áëè…¥›ô¥[.ÏùÚúøåöž¡±ÙŵíÇO¥+`tE;úÉÒÍÍVQéõ‡¢‰æξá[sË»IgÀàŠ}ôr“bÑìNwu kj홺³²¹÷D:W¼£Ÿ.]µ:\_0ÒLgoNß]ÝÚÿTºÆVÄ£–n2+ªM_º?§:z‡Æg—Ö¶ßûB:†Vì£ç–®X4›Óí­©‹%ZºúG&æ³»?:’.€‘óèeù£ëKW5»³Ê_lj»rutjaesï‰t Œ¬¨G/,ÝdVT«Ãå9¬_nï¹66³¸ºuðwéXñ~¼t‹f«¨ôúCÑDsgßðøíåõ·žJ·À¸Š{ô²üÑËMŠªÙîê@8ÖØÚ=029Ÿ½÷à;Ï¥c`XE>ú™¥[®*_0ÒLgG§V6÷>–Ž€aûè…¥›ÌŠjs¸<þÚh<ÕÞ346»¸ºuð{é•ÈÑ—nÑlnoMèB¢¹³oøÖÜòúÎÃO¤s`PE?zYþèå&EÕìN·/Ž5µvŒLÎg7v¿ùLºÆTü£–nÒ—nu¸<¾`¤!™Î ŽN-¬lî}ÿH:†$tôÜÒÍŠjsTzü¡h<ÕÞ346³¸ºµÿKé ’ÀÑËòG/7)Íæt{kBÍ}Ãã·—Ö¶ÿ,]#’8úéÒUÍîtûáXSkWÿÈÄ\vc÷íϤ“`@"G/,ݤ/Ýêpy|ÁHC²íÊÕÑ©;+›{|!Ýã‘;znéf‹fӗ_Ng®Ýœ¾ûÆýýIGÀpdŽ^–?z¹IÑ—ît{ý¡è¥TGïÐøìâÚöÁo¤£`8BG?]ºªÙîê@8ÖØÒÕ?|kny}çðÒU0©£–n2+ªÕáªò#›ÚºF&ç³»o?•Î€Áˆ½°t›Ãå9Œ4$Ó™ÁÑ©…•Í½ï>—ˆ½,t}éÍVQéõ‡¢ñT{ϵ±™»«[ûKwÀXäŽþb銪ÙnoMÝ…DsgßðøìÒÚöá¤Ã`(‚G?³t«Ãéö±Ɩ®þësËë;ÿ%]#‘>º¾t“9·t—ÇŒ4$ÛºnLÎgïí¾ý™t DòèÇKÿZnéͦ/Ý_[O¦3ƒ£Ó +›{ßz&Ýã=z~éåå&E_z…ÛëE/¥:z‡Æfî®níï¹t Cöè§KW5»Ó]]SK´tö Ï.­müäHºF!|ôÂÒMfEµ:œU¾@8ÖÔÚÕ}bny}çðÒu0ŠR8zaé6‡Ëã F’mÝ#“óÙ݇¿•Î€AH½,t}éÍVQéñ×ÖÇ“éÌàèÔ¯ß{ðè¯Ò}0é¡Ÿ.]É-Ýíõ‡¢—Rí=×nN/¬lî½ó‰t Aúçeg–®jv§»º¦îB¢¹£whlvqukÿ½Ï¥ `Ò;/Ë]_ºÉ¬¨V‡³ÊÇ[ºú†Çg׶ö?|&ÞyΙ¥Û./¹ØÔÚÕ}bnymûðÏ¥Pú¤o~,t}é-·ôóÁHC²­{`db>»±søSéF”>é™ç,]Ñ—^Qéõ×ÖÇ“éÌÕÑ)}é»~- €’'ýò‚KW5»Óíõ‡¢ñT{fptjaeóÁ£?IW ÔI¯¼à\~é¦ÂÒ«kê.$R½CcÓúÒ÷Þü§t&JœôÊOœ,ݬ¨V‡³ÊÇÍúÒgWïï¿ó_éN”6é“¿p|ôüÒm—'·ôÆ–®þáñÙÅÕ­ý÷ŸI‡ ¤IüÔñÒËõ¥[´ã¥#›Z»ú¯ßº½´¶}ðáséR”2éŸq²tE_zE¥ç|0Òl뙘[^ß>üá‘t*J˜ôÆÏ8÷òÒ½þÚúx2}åêÉùìÆÎßK§ „Ioü¬ÂÒM&EÕìN·×ŠÆ/§3ƒ£Sw²»~%Ý +€Ò%}ñ—œYºU_zuM(z)ÕÞ3xszaeóÁ£ßIÇ dIOüe'K7ëKwèKÔ]H4wôå–¾÷æ¥kPª¤þ%ÇG?Yº«ÊÇ-úÒgî¾qï1KàÕ¤þeÇK/×—nÑl—Ç _lléêŸ]\ÝÚü7é^”&éƒÅÉÒ•üÒÏ# M­,€ÿOzà_qîìÒ+*—žlë¹u{imkÿ­K Iü«N—®j6g¥×_[?^úÄÜòÚöÁ»ŸH' Iÿû +K7å–nwº½þP4žL_¹š[úúöá»ÿ‘n@é‘Þ÷«œ,ݬ¨ÖÜÒkô¥_NgoLÎg×w¿ñ¹t4JŽô½_éøè…¥;œîꚺè¥T{fptj>»±søíÿ±W?q'vÅ…iCÓʦ˜ƒ©ÆÓ›a–Þ{À[»Ú)»ÙU¤%ÙHå(Q"E¹d)EÙc"%’‰”öàƒ>ø°VVùM¡ ˜23_ïø}þ„wy,€c¤ç}2ÛÒ}K×DÅ$$§gç—V)K™^Z›¥àLúݧ8Xz *Ķt½!;¿¬êNk÷àèôÒÆûÏ¥»ðj‘^÷i—¤,]k[zAYuCkit†¥pŒô¹O㳿ôÇÒuzCN¡²ô¶ÓØÌ’åý/¥Ëð*‘>÷©œ–®ÑÆÚ–^n_úì²åã=ét¼B¤Ç}ºÃ¥«”¥G(KOÉÈ-4Ö4´õ²tŽ‘þöN[zc[ïÐØìŠå“ÒñxeHoû,Ž¥ûÙ–®ŽÐÆéR2s‹Œµí}CãÊÒ?eé8H_ûLûK÷W–ªŽˆŽK›óÒ#•¥§fæÛ—>1ÇÒØ'ýì—°ýØÒóŠ+X:Τ—ý2¶¥ûÚ–l[z’}éMŽ¥ÿdOº ¯éc¿Ô×—ž–¥,½®©Ã¾ôï±t¾GwZz˜ÓÒï™'æY:VÒ¿>‡cK¿ïXz³céßy.qÒ»>Ÿ—^âXúKàqô#K¯Ó—ÞÞgW–þˆ¥^gÒ§>·—žW¼¿ôeË£I·@Žô¨Ïï´¥×*KS–¾ó阈‘þôœºôFÛÒ—6X:àõ%½é‹8c齦±eé•Î €éK_ÈéKo³-}ýþŸ¤{ CzÒslé‘Ö¥gæ•¥÷˜F§•¥ÿA:("¤}AG–® + SGFÇ%¥fæklK_\ßþtQ$H/ú¢ÎZúàˆué¿|!ÝÏ“>ô…,Ý?Pl[z¢²ôBcuCk·²ô…µíîIGÀã¤}q',=EYz¹ué#S k[ß}.]O“þó%.=à`é¹…eÕwZº†'V·Þy"“Þóe8-=Ôºt]JFŽ²ôú–®þáÉùÕ­7KwÀ³¤ï|)'-ÝSPVU·³xb~eóÁçÒað(é9_Î×–«Ó² Ê*­K7OÌ­Xv~']O’~ó%]zP¨:Bk[z~iåíæÎ>óøì²eçg{Òmðé5_–óÒÃ#´1¶¥—ܪknï›YZ¿ÿýçÒqðé3_šÓÒC¬KOЧ߸YRQ×ØÞk›^\ßþð©t]ö§ûú*KWÛ—®7dç—ܪkjï5N/®o¿ûDº2î&}ä«sZz¨:B«Ó§ß¸YRQÛØÖ382µ°ºõæcé̸™ô]à`éþö¥Ç$$§eåkZ»†'çW7üYº3î%½cW8ºô p²ô¤´¬Ü"cõ–®þቹËÎÏ÷¤KàNÒ7v 祇i¢®Ç'¥fæ–UÕßí¼gŸ]Þ¸ÿÑSéÔ¸‘ôŒ]ãøÒ#£ãS2r +Ê*o7wô Í,­o¿õXº5î#ýb9Xº_@ ²tµ²t]Š!;¿äV]S{¯itzamk÷3éظôŠ]žôk¶¥«‚­KÕé 7n–TÔ6¶õ ŽLίn>øñ—Ò¹pé»ÌþÒ}mKUGhcôiYyÅÆš†ÖîቹËηŸH÷À=¤Gì:>ö§+K÷P…†k”¥')K/*¯®oéì7Ï.­o¿õwéฅô‡]Éié!ᚨëñI©™¹…e•õÍ}CcÓ‹k[»¿}!7¾°K9/=L—˜’‘_ZY×ÔÞc™ZXÝ|ðƒçÒÍp=é »ÖÁÒýlKW+K×é Ùù%µmÝÓó+–÷¾Ž€ËI?ØÅìK¿f]z`P°ué±:}zV^±±úNKW¿ybvi}ûáçÒÕp5é»ÚþÒ}•¥«‚CÕÚ˜„ä´ÌÜÂòªúæξ¡±éŵ­Ý_ìIwÀµ¤ìr>ö§+K÷P…„k´1ñI©™9¥•uMí=¦‘©ùÕÍŸI‡À¥¤ìzÇ–¦‰ŠŽKL1dç—TÔ6¶u OÌ­Xî¿÷oéò¸’ôÝáØÒՑѱ:}zV^±±úNKW¿y|vi}ûágÒép!éûºÅÁÒýƒ‚ÃÔÚ˜„䴬ܲªúæŽ>ÓèôÂêÖî§{Òñpéùº‡}é×lKW‡†k´1ñI©™9¥•uMí=ƒ#“ó+–žH×÷Z_}õ?€'yëÑ–îëç  + + ÓD]KL1dç—TÔ6´v÷¿11»´±ýð/ÒçóV<Ìkn_ºÏáÒՑѱ:}zV^±±º¾¥óžylzqmk÷“gÒïóN<Ì{~dé~Ö¥Ghc’Ó2s Ë*o7·÷šF¦æW,;ßú§ôü¼Góâ£;žîXº*84\£‰OJÉÈÉ/¹UÛØÖ=0<1·¼±ýð×{ÒûóB<Ì«îXºõéþª 0MdtœNo¸q³ØXÓÐÒÕo›Y\ÛÚýà éÿyŽæÝG·/ÝçpéêÈèX>-+¯¨¼ª¾¹£Ï425¿bÙyôÇÒô6<ÌË~dé~AÁ¡ÿg¯~~K 8€G…Ç{ü|òCDAd@QaPÄ,ʨƒ:¨ƒãâFdE†Ð1»Û_Ùví6iÚlÓ4Ù½4Ù¤—=ì¡MÚt“¶IÛt›tM:‡&C“Ùds)èÇÝÝã{ ßÏ?ñ‘5+ÕZ}§¥§ÿª×.®¬oí¤2ùÒÏþËu— F`Ùe9½±ñ´tR(’ÒŠM»Ñls¸<ãS³ 7#Ñx2{ðÆŸ¹>ðrÁè,»ü£Ÿ—ÞÄã$%’Ðr•Fgè²Ú‡FýÓsK«±Ä~ö°ôÞS®¼L0:Ëê`ô³Ò^–.“+ÕÚ“¥·ÿêˆ/ …׶vR™\ñírÝà%‚ÑXV£_(GH¡XF+Õmz£ÙæpOÎ.,¿¾O¦³…£Ÿsá¥ÑXV£3§76–Kç$%’Ðr•Fgè²Ú‡F_»6·¸²¾µ›Êä‹ïü›ë / ŒÀ²:ý¼ô&¦t™\©ÖêM–ž~×ÈÄÔõáH4žLç¼ñ'®+¼$0:Ëêeô³Ò*¥ó%Ëš•-míF³­Ï9<柞_Z݈%öï–~õ”ë /ŒÀ²º9)¤DZ®Òè &kï€Ûë CáµÛ;©ƒ\ñ»ÿàzÃË£°¬ŽFgJ¯œÎ'*¥ËäJµVßyÅæpyÆ'g–W7·ûÙBé·Ï¸þ°öat–ÕÓèg¥7œ•. „b)­hÑè ]VûàÐèk×æWÖ·vR™\ñíO¹±æat–ÕÕèJç’Ih¹ªUÛa²ôö»<S³7nF¢ñd:[8zï)×%Ö8ŒÀ²ú9½±r:Ÿ¨”.kVªÛÚæî>çð˜znéÖzl7•É¿÷®O¬m€eõ6úYé •Òy„€Š¥´B¥ÑLÖ޷׸ +G¢ñdú~áèÝ'\¯XË0:Ëênô‹¥ó ’Idr¥Z«ï¼bs8‡Çü3óK«±Ý½L¾øæžsýbíÂè,«¿Ñ™Ó+§ó %KiE‹Fgè²ÚÜ^_  +G¢ñd:[8úéc®c¬Y€eõ8úYé •Òy„€¤DZ®jÕê;-=—g|rfayu#¶›Êä‹?zÆu5 +£°¬.GQzåt>Q)]Ö¬T·µÍÝöA·×†Â‘h<™ÎJ?üœëkF`Y}Ž~~z¹t! …")-Wµê:L–‡Ë3>93¿¼ºÛMerÅãžr½c-Âè,«×Ñ/–Î'HJ$‘5+Õmz£¹Û>8äõ‚¡p$OîgKßÿ„ëkF`YÝŽÎœÞX9OH¡XJ+TÁdéíwyÆ'gæ—n­oí¤rŽßÂu5£°¬ŽG?+½¡R: HJ$‘É•j­Þh½¾@0ŽDã‰ýl¾ôÖÇ\Yk0:Ëêyô¥WNç—KŠe´B¥ÑL–‡Ë3[\YßÚ¹{+½û˜ë#k F`Y]~~z¹t! )‘D&Wªµz£¹Û>èöú×oÜ|}s;±w/_|ø»ç\/YK0:Ëê|ô—¥7ñøD¹t±ŒV¨4º“¥ÇáóOÏ-®¬Ý¾“Lg ¥w>çºÉ‚ÑXVï£3§7–OçñAùt‰L®T·µÍVû€{dbjvayu#¶›ÊäŠÇï?á:ÊšÑX†ÑÏJo8-O”P,£*®Ãd±9œÃcþkÁP8'÷³‡¥“žq]eÀè,Ãèç¥WNç’Idr¥º­ÝØeí¸:215»°|k}k'up¿pô£¿q}emÀè,ÃèÌéåÒ˧“”P,¥ªV­¾óŠ­Ï94ê CáÈævb/“/ÿü_\oY 0:Ë0ú)¦ôÓÓ I‰$²f¥ZÓnè²öö»<ã“Ós‹+ë·ãÉtö°tò›ÿqýeõÃè,Ãè æôJé|‚¤„b)-WµjõFs·}Ðíõf–W7b;©ƒ\áè­ß?ãzÌj‡ÑX†Ñ_`J?=”H"kV¶ht“¥ÇáóOCáHt;±—É}Êu™U£° £¿Äœ^)O”P,¥å*µVo4[í©™ù¥•õÛñä~6_|øËÇ\§YÕ0:Ë0úL駧åÓEY³B¥Ñu˜,¶>ç׸¾°¼º±µs7}¿P:ùà ®Û¬b€eýK˜Ó›Ê§ó ),Ÿ.WªÛÚ ]ÖÞ~—gÌ? …#›±ÝT&W8úΟsgÕÂè,Ãè_Æ”^>Ç#’‰¥´BÕªÕÍÝö÷ÈÄÔÌÜâÊZ4žØ¿—/?úŒë9«F`Fÿª §ó Aùt‰¬YÙ¢ÑL›Ã9äõf–o­oÝI¦³ùÒÃ_ÿ‡ë;«F`FÿšæôréåÓIJ(–Òr•ZÛnì²öö»†Çüׂ¡›«±Tú~¡tòá\ïY0:Ë0ú+0¥WNç’Id´BÕªÕÍÝö«žqÿôÜb8ÝNìer…£|üœë?«F`F•æôr駧 ˧˕-Ád±õ9ÝÞ‰©ÙùÅ•µh<±/_<~ôWœþ€eýÕ˜ÒOO'’Š¥´\¥nk7tYzÎáQ_àúÂò­õ­;Ét§F`Fÿ&ÌéMåÓù„€¤D­PµjõF³µ·ßåó_ †n®nÄv‡¥‡?þ„ëD« +F`FÿF ç§óʧ“”°|z³²E£ëè¼b³¸=“Ós¡pd3¶›:¸_(üäï\7ZE0:Ë0ú·`J?=¨œ.–Òr¥ºMg0Yl}N·wbjv~q%ÝN¤2¹ÊéŸqiÕÀè,Ãèߦ9½©|:Ÿ”H"£å*µVoì²ö:œÃ£¾ÀìÂÒÊZ4žØ+Ÿ~tò œ~£ÃÿÙ«·Ÿ¶ÏŒãb ÆÆGŒ16ÆŒ˜€1'Çbbˆ 1!CMÄ0ƒk Ž1­º*ª¶j›Ô‹î¤ö¢Ò6i•©»k¥]DÚE&å"½ˆÔIÙr"„TH«”›½?Ì9¤ Ä~C}¾ÿÂóH„å ú·F:1ýð†éiéòLbº®ÈP^i®?Ñtº­Ãå¾äñú`úf!„(Ñ_×VÓ9./U KeJuN^aq©±Ê|¼ñ”ÃILï&¦ÏÌE>ûŽmNÿ‚è!D9ˆþÚ’ÖL?DLOæ¤py|H"•)²ÔÚ|}ÉÑŠêcÖF»ÃyÞÕ˘>ILŸ‡é!„hÑß 5Ò‰é‡×LŠ%R¹B•­-Ð)3U[¬'í­ÎÎî˜é™ðüg÷Ù&•å :BQ¢¿QÛMçrS‰éiéòL•&· ÈPfª±XmÍ1Ó‡ÓCáù?=dU„B?­ØÆò`”´Õt‡ËKÅRY†’˜®+2”WÖZˆéíÄôbº¦#„¢ÛV”ÖM?DLOæ¤py|H"•)”êœ<]1cz]ƒ­…˜ÞCL¿:3ý>Ûë²Ö÷ÏŸ-=]|üø!é?!„DóÖH'¦^3]¸fº6¿°¸Ô3ý 1ýâ†é¿ÿ–mZY +¢#„å úJÚÅt±D*Wdm1½iÓôÉÀÌ\äW·_°­+At„¢DßSë¦bLçp¸¼TÆôtbz61½„1½~Õô®-¦ÿâï+lûJ¿ï—!:BQ ¢ï±­¦'¯›ž–.ÏTÓõŒéæú¦û&§ƒ³‘n,³-,í :BQ¢ï¹5҉釉é)ÄtÁvÓ«ÖLïìéeLŸ ¦_‹þù;¶¥ý)DG!ŠAô½—ô’é|ÆtÙ.¦w÷öÆLG?½Ë¶²4[ý DG!jAôý´›é¢˜éš—M÷xGÇ§Þ …çýlCK-ˆŽB”ƒèûkWÓ%Òí¦7ØZZ.÷%wdÌ…#׿^a›ZJ=‡è!D7ˆ¾ßÖM?´ÃôŒ Ó+këlÍ­Îó.wßå+Œé3s‘…‹lcK¥çËKŒèèØ>9Bý$‚èû+·™nwœí¸ðNßÀаob:8{-úÅ=¶¹¥#ú"DG!zAô·hô­¦ wšn±ž´;Ú:ºz. Ó§‚¡ðü§w^°-n¢{þ ¢#„Õ ú[µÝtÎÓ3Ó ‹KËM5kã©Ómíݽýïè¸? +G®µÈ¶¹‰m¢#„Ý ú[¶ÓtîÓ³Ó e¦êcÇ›ZδwºÜ—<Þ‘1`f6ýÃl³›Àˆè‹‹OAt„¢Dë^iºœ1=OWĘn®o°5·:Ï»Ü}Cþ‰éàlxþúW÷Ù†7a-?{º&úˆŽB4‚èqh7Ó"IZº\‘¥Î!¦9j¬2×5Ø쎳]=‡GÇýÐ\$úÉíÿ²mobZ^"¢?†è!D-ˆ—v7]̘®Tkr ô%¥ÆÊZ‹õ¤ÝÑv®³»·ß㛜Ά£ܸ϶¾‰èý #úˆŽBT‚èqj§é)Œé Óó‰éå¦ËñƦ–3í.wßÀаobêÝÐ\$úÉ­¶Ž{Dô'!„(ÑãÖvÓ“×M—HeJ•F›_Xl(3U›ëOØš[]=½ýïȘ:8ž_øë=¶ ŽsÏ–!:BÑ ¢Ç±]LOåÇLÏTekótEGÊ*ªÌu '펶öN—»ïòаob*š‹Dsk…m…ãÙÒÓ˜è :BÑ ¢ÇµW›.Wd©sruú’Rce­ÅÚØÔÒêì¸Ðs±ß㛜Άç¾¸Ë¶ÃñkMô‡!„(ÑãÜ.¦óøB‘$-]®Pª5¹Äô2Sµ¹¾Áfw´ëìv÷]öMø3³‘è/¿^f›â8ý!DG!ZAô¸·Ót—Ëã „â4)1]¥ÑæÊ*ªj-ÖƦ–VgÇ…žÞ~wdlr: +G>¿½Â¶Æñˆýñ#ˆŽBÔ‚è (iõuÓSb¦K¤²ŒLU¶6O§/)5šjŽÕ7Ø쎶öN—»o`hxtÜΆç>ÿçÁGˆþ¢#„Å zBÚ0=†úªé©üUÓåŠ,µ&7__l(«¨ªµX›ZZ]=½ýž+W}S™¹kÑ÷þrç¶M~»–Ÿ@t„¢DOP;LO^3]$IK—+”*6OWTRj¬¬1×7Ø쎶öN—»o`Ð;269 ÍE:êO!:BÑ ¢'¬—Lçp¹<¾@(–He™YêœÜ}±¡¬¢ªÖbmlji=ÛÑÕí¾tyhxtÜOPG¢?ÿòî ¶eÞo!„(ÑÙK¦§py©|Æôt¹B©ÒhótE%¥å¦js}ƒÍ~úŒóü…žÞ~Ï•a߸?œ%¨xPQ‡è!D9ˆžØ6LÿcúáuÓEâ4©,#3K“›_Xl(3VÖZŽŸhjv´µwºÞ¹Øïñ^õMÄP_øðæ·ló¼ :BQ¢'º¤ Ô1¨'Ó¹<¾@(–Her…R¥Ñæéô%¥å¦jsµ±©¥õì¹.—»o`+ê<Ô!:BQ¢'¾—L'¨óRùB‘8M*ËÈÌRkró ‹ G•5Çêl§NŸqvtuÔ½#¾‰©ÀÌ*êûÛHï)ˆŽB”ƒè4Úa:A˜Îã „b‰4]®Pª²µy:}‰¡¬¢ªÖrü„;ŠzÏ&êA‚zôã›w`ê7¢#„å :¥v žÌaPOå EuYFf–Z£Íו”–›ªk-ÖF›ÝÑÖNPï]E}lõ÷þxëÛV¿Y!„(Ñ©µÃt‚:1ÇÅ’´t¹B©Rçäæ)5šªÍuÖƦf‚úùUÔ‡¼#¾  "¨/||óÎ +Û^¿>ˆŽB”ƒèÛ4=†z2‡A=•/‰%Rƒz¶6·@_l8j¬Ü‚úõÁUÔ§ƒ¡¹kó ïÿMök‚è!D9ˆNµ¤MÔWM'¨§p¹<>_(’¤Ie™Yj6O§/1”+kÌõë¨wÅP¿ê÷O¿;3ŽD>úòÎ +ÛlÿH!„(Ñi·iz õdA—ÊÅiº\¡dPÏß uw߀çÊðèØÄT š»6¿ðþo¿¹Ç¶Ü¯ +¢#„å :ý’6Q_5AË .Ôeu•úìÕÏOÚyÇñt´õ"ˆ  ˆ¿‘"HA@ADPĈ?@ÅøÅø[ÛÌæ0‡&3·C“N²sØC“=Ì¡Íöàan;I7ÛC=l²—ý|¾_Püµm“®Ðöýü Þyå<øU7Pw{†ýcÉÐlxq9²¾±ÛÝ?<úö/çoÓ­÷mèA÷ˆž–.M'QG¦çäæåQRQ¯@¨ EYsu«½ÇíñŒN§gæ–VÖ¢›Û;{GÇ?üú:Ý€ßD‡ ºç@ô4õàuÂôêù”*^D¢^žŠºÎ`2[»®ÞþAŸ<0š /.GÖ£[±Ýýã“?¿úÇ»t+žˆAtÏèéë6ÔsoG],“+U­¡ÝÜi³;{=C#£Á©™¹…¥•Èúæ6©ú/Ïߤ[òd :AÐ=¢§³«¦g¦çܺB¥Öê&‹µÛáêóúücÉÐìüâÒêZ4©úw/~‹§[sˆAtÏèiî=¨_¢.‰¥MŠµFgh7wÚìN·Ç;äN…æ‹ËIÕŽŽO~zõÇ;‚ èë +DOWQϾu¿¡.l”ÈäJ•F«7š,Ön‡«·`xdt"85“T}+¶»wpxtòãËó7 :AÐ׈ž ¥˜~uêÔ«kë…"±T®hQkt†vs§Íît÷y}þ±„êK+‘õ­íÝ}¤úw/~‹ƒèA_G z†têyIÔõR¿¢ª¦NÐÐ(‘É•*µVo4™­6‡ÓíIªš_ÀªG7·c»û‡Ç'?½:Oë :AÐ=¢gN)¨g]C½ z ‡[ÆãWV×Ö Eb©\¡|¬Ñµ;,ÖnRõaÿè8V}.¼¸¼ºÝØŠíìîŸüøËéë· :AЈžI=¸õ\õBQÌd± Ô«jê ™\¡R·ê IÕû¼Ã#£ãÉé¤úÒJd=º¹ÛÙ#XÿÓó_Ïã :AЗˆža½õ"BC¨^]['‰%²f%R]O¨n³;ݽýC>ÿØDp*4;¿°¸¼š`}wÿàðèäɳŸOÿx¢C}iè™×ݨçQ(T*Fg#Õ¹¥¼òŠªš:R]ÚD¨®k3šÌHõW¯Ç;8ìLNÏÌÍ/,‘¬omÇv÷öŽOž<ÿÛßãÿÑ!‚¾œ@ôŒìvÔ‘êyyù”j!^Ä`²J8Ü2¿òŠê-VÝÒÕípºûú†|þ±‰ b}v~aqi%²ÝØÜŽíìî`ן½8=¿Ñ!‚¾„@ôLí6ÔbÔ‘ê +•J£ÑÅL›Sš¢ºD&W´<Öhõ†ö‹Õfïqõz¼$ëÉ©Ðì\±¾YnnmÇv®?ùþù_?¹ì :AÐ=¢gp©¨_¨ž@=ŸR@-¤Ñ‹Õ¹IÕëª+UêV]›Ñdîìêv8Ý ÖGÇÁ©ÐÌÜür=²Fº¾³»GÂŽeyú{üí'ýŸ :AÐý¢gv·¢žT’TÉ*¹P½¶^ÐÐ(–65#Õ5Z½¡½ƒdÝE²>2:6˜œ +ÍÎ…±ë«‘õèÆ%ì¤ìÏ>ì :AÐ=¢g|7P'TG¨cÕó)*•FªÎbs¸HõŠÊêš:P$–Èä +Äz+fÝ„X·Ù{œî>Âuÿèx 89\Ÿ/.-¯DìÑÍÍíKÙÙŸÿrzzÇÿýÑ¢¿Ñ!‚î7ýsèÁ Õ1êXu„:R½ ©:“T½œ_YUSW/lh”H›äŠ•ZƒX7šÌ«Íîpºz=ýƒÃØõ‰ÀäTh†€}qie%²v){’ö£c„ûÓ§ˆ÷ŸOÏÎ^Çãï>HôèA÷ˆþ™tuBõGªS¨ÔB¬z1“UÂæ––ñêÕµu¡ˆd]I°Þflï0w®» ׇ|#ìÁ©éTÙ#ëëÑÍÍ­í¶áŽuG¼cÞŸ<ýóŽ:;û=Nô!ÈCAÿßÒMôÁÝT=ûšêXu:ƒUçpËxåˆõ’u±T†Y¬nÕê F“Ùbí®»zû<Þìcãà…ì ‹KˆöUÂvŒ;Òý’wÂw]__‹¬,…g§'ün›I×"TñØ %÷QvˆAA·öà©N°žOA¬Ò.Xg“¬WTVÕÔÖ „ "±„p]©z¬Öhµú6ƒÑ”"»ËÝÛ‡iB¶ ܺ“¼cß1ðHøð2·žŸ™ +Œù¼n»¥M-o¬«(e¢¢CAÐ]Ý©:Áú…ê¬3Y%lézeUuÂõF±DÖ„aoQ©5­ËÞŽd· Ù»í‡ÛŽp÷x‘îƒ)¼cà‘ðÁId—£ËlhUÊDµe% %/ç!ˆAAïïÁ5Õ¿Iª~uÒu:½±Îd•°9ÜRäzù%ì¡H$&eoV([TÕM«V§×îí¤î˜÷¤ïN,<">™Ûått[Ííz ½¾ŠÇaÒ©ù¹²³@t‚ ú îV=«ž`»N°žâ:›{{Rv¡°AÔ(–HdíØv„{R÷¶ï¦ <ß…”·uuY;-f“A¯Q)¤ôr.‹A£äå<Ì&@O÷DAô¹tõ¬Ö±ë99IÖS\g ×1ì;’d¯"dOÐ.#Û¥wB÷ Þ‘ïZ^߆ŒO¦×k5ê…L,¬C —0hÔüÜGÙ :A}l×U¿•õ„ëI×1ìÅWe/çó+ ÚIÛîX÷Æï„ïðˆxd|²¥¢¹I*nÔT"ЋéTJ^Σì,ý¿ìÕÙNA@Ñ @d 0ýÿß³ª·éYYrÏK§*ýRO€3ÔNf=îzGº®aï›°Gewi—¶¯5î¦î6ïÒ÷ƒô]¯‰—È[??ßß_‡ÏÝv³šÏÆ£´×i·|Ð):ç8–õª®Û°W”]Ó®m׸KÝRwÍ»ë»~§öyµßïvÛÍz9ŸM^‡iWƒÞ èüS­œõŠ®Û°kÙŸ eO®íYÝMÞ}ß5ð’øµFÞX¯VËÅü}:}‚ÀÕ*º^Ïw={(»K»¶]ãîêò®}w…Ÿ™Ê y§“ÉÛøu8è÷^rA§è\@1ëå®ÇeO\Ù%í®íwWw—wí»Þ$>2Ó´ßÕž'€+(eÝt=„½XvŸvÓöPwŸwé»+¼m¼%C¯'9ï´Û­¦ :EàŽt= »/{–ö,î>ï¡ï®ñÎÏ’sÓs‚À••»^.{H»¶=«»æÝ÷=K¼§«¤éz^·='è\UU×}Ùã´Gq/õ=«|’¸¡!97='èÜPuØCÚ qÏç=Š|ÔܨG='èÜÔ±°çâ^Ê{µ§Ðs‚À}üUöRß‹·›ì뽧Ó~Ò½O9ä€ÇCÎ<²_žÓ +endstream +endobj +203 0 obj +<< +/BitsPerComponent 8 +/ColorSpace /DeviceGray +/Filter /DCTDecode +/Height 426 +/Intent /RelativeColorimetric +/Length 1786 +/Name /X +/Subtype /Image +/Type /XObject +/Width 749 +>> +stream +ÿØÿîAdobedÿÛC + + + +  ÿÝ^ÿÀ ªíÿÄÒ  + ^C +!"#$%&'()*123456789:ABCDEFGHIJQRSTUVWXYZabcdefghijqrstuvwxyz‚ƒ„…†‡ˆ‰Š‘’“”•–—˜™š¡¢£¤¥¦§¨©ª±²³´µ¶·¸¹ºÁÂÃÄÅÆÇÈÉÊÑÒÓÔÕÖ×ØÙÚáâãäåæçèéêðñòóôõö÷øùúÿÚ?¿€ÿп€ÿÑ¿€ÿÒ¿€ÿÓ¿€ÿÔ¿€ÿÕ¿€ÿÖ¿€ÿ׿€ÿп€ÿÑ¿€ÿÒ¿€ÿÓ¿€ÿÔ¿€ÿÕ¿€ÿÖ¿€ÿ׿€ÿп€ÿÑ¿€ÿÒ¿€ÿÓ¿€ÿÔ¿€ÿÕ¿€ÿÖ¿€ÿ׿€ÿп€ÿÑ¿€ÿÒ¿€ÿÓ¿€ÿÔ¿€ÿÕ¿€ÿÖ¿€ÿ׿€ÿп€ÿÑ¿€ÿÒ¿€ÿÓ¿€ÿÔ¿€ÿÕ¿€ÿÖ¿€ÿ׿€ÿп€ÿÑ¿€ÿÒ¿€ÿÓ¿€ÿÔ¿€ÿÕ¿€ÿÖ¿€ÿ׿€ÿп€ÿÑ¿€ÿÒ¿€ÿÓ¿€ÿÔ¿€ÿÙ +endstream +endobj +204 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/A/D/E/F/I/J/L/P/Q/R/S/a/b/c/d/e/g/h/hyphen/i/k/l/m/n/o/one/p/r/s/six/space/t/two/u/v/w/x/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 276 0 R +/FontName /HIVIDE+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +205 0 obj +<< +/Filter /FlateDecode +/Length 384 +>> +stream +H‰\’ÛŠƒ0†ïó¹l/ŠÖÖL "ô^ìíîØ8í +Û(Ñ^øö›ñ/]Ø€æ ™¾$íŠ}áê^Gï¾±'îõ¥v•ç®¹{ËúÌ×Ú©y¢«ÚöÕø··²UQH> ]Ï·Â]•e:ú›]ï=ÙTÍ™§*zóûÚ]õäkwšêètoÛ¾±ëu¬ó\W| …^Êöµ¼±ŽÆ´YQ…ýºf!ç/âshY'ãzÛTܵ¥e_º+«,#×Ù1Œ\±«þí/–H;_ìwéU–Hp‡IeËùÈa +¼/…Sp*lÀFx ^ ïÀ»À)j¦R3EÍTj¦ 8^€ bŒÄĉ1ˆ1c |Œøøñ1&áx% 7#nf Þ +ÃÓˆ§Ùƒ÷ÂðAø˜ÎBr‚‰ÁÄàFâFp#q#ÜÉ]> +/H /N +/Rect [252.703 208.07 408.362 196.813] +/Subtype /Link +/Type /Annot +>> +endobj +207 0 obj +<< +/A 278 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [252.703 194.27 397.732 183.013] +/Subtype /Link +/Type /Annot +>> +endobj +208 0 obj +<< +/A 279 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [252.703 180.47 393.285 169.213] +/Subtype /Link +/Type /Annot +>> +endobj +209 0 obj +<< +/A 280 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [252.703 166.67 301.39 155.413] +/Subtype /Link +/Type /Annot +>> +endobj +210 0 obj +<< +/A 281 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [281.049 444.687 435.039 433.429] +/Subtype /Link +/Type /Annot +>> +endobj +211 0 obj +<< +/A 282 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [281.049 430.887 428.123 419.629] +/Subtype /Link +/Type /Annot +>> +endobj +212 0 obj +<< +/A 283 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [281.049 417.087 365.806 405.829] +/Subtype /Link +/Type /Annot +>> +endobj +213 0 obj +<< +/A 284 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [107.717 384.921 331.53 371.611] +/Subtype /Link +/Type /Annot +>> +endobj +214 0 obj +<< +/Ascent 941 +/CapHeight 692 +/Descent -281 +/Flags 98 +/FontBBox [-363 -281 1012 941] +/FontFamily (Palatino) +/FontFile2 285 0 R +/FontName /KRTQOY+Palatino-Italic +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle -10 +/StemV 72 +/Type /FontDescriptor +/XHeight 482 +>> +endobj +215 0 obj +<< +/Filter /FlateDecode +/Length 433 +>> +stream +H‰\“Íjã0…÷z +-ÛEqâHW-˜@›´Åü0™yÇVRC#ÅYäíçÒ1$úŒ¬ãïÀuµÙmwi˜mõ3Ý>Îö8¤>ÇËxÍ]´‡x’YÖ¶ºùó®üwçv2•Þß.s<ïÒq4Mc«_ºy™óÍÞ=÷ã!Þ›êGîcÒÉÞýÙìïmµ¿NÓG<Ç4Û…]¯mô­¾·çh«rìa×ëþ0ßôÌ¿'~ߦhër¿¤L7öñ2µ]Ìm:EÓ,ôZÛæM¯µ‰©ÿoßy;»÷6›¦ÆË….Êò¼%o•WÏ…u1[ÖE¹&×àyvdödä~$?‚ŸÈO`¾Ë•wÑÇÁÇÑÇÁǽ’_Áod-Ûxvñèâéæáæéæáæéæáæéæáæéæá&ì(è(Ìäs9ÂAŽ0G#B03¥d²¯ ¯°¯ ¯¼_Àì+è+ì+è+ì+è+ì+èØ7 o g€g g€g g€g g€g g€g g€g ›.žÏ)Áé´Û¯í®9ëx–O¢Ì%&rHñë«™ÆÉê)üÌ_y>Öò +endstream +endobj +216 0 obj +<< +/A 286 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [435.248 394.595 501.732 381.285] +/Subtype /Link +/Type /Annot +>> +endobj +217 0 obj +<< +/A 287 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [85.0394 380.395 501.732 367.085] +/Subtype /Link +/Type /Annot +>> +endobj +218 0 obj +<< +/A 288 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [85.0394 366.195 461.255 352.885] +/Subtype /Link +/Type /Annot +>> +endobj +219 0 obj +<< +/A 289 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [357.875 656.702 530.079 646.114] +/Subtype /Link +/Type /Annot +>> +endobj +220 0 obj +<< +/A 290 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [135.951 643.702 471.388 633.114] +/Subtype /Link +/Type /Annot +>> +endobj +221 0 obj +<< +/A 291 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [421.792 318.828 530.079 308.114] +/Subtype /Link +/Type /Annot +>> +endobj +222 0 obj +<< +/A 292 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [135.951 305.702 329.836 295.114] +/Subtype /Link +/Type /Annot +>> +endobj +223 0 obj +<< +/A 293 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [205.771 279.702 476.146 269.114] +/Subtype /Link +/Type /Annot +>> +endobj +224 0 obj +<< +/A 294 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [145.221 188.702 329.062 178.114] +/Subtype /Link +/Type /Annot +>> +endobj +225 0 obj +<< +/A 295 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [385.513 162.702 530.079 152.114] +/Subtype /Link +/Type /Annot +>> +endobj +226 0 obj +<< +/A 296 0 R +/Border [0 0 0] +/BS << +/S /S +/Type /Border +/W 0 +>> +/H /N +/Rect [135.951 149.702 286.274 139.114] +/Subtype /Link +/Type /Annot +>> +endobj +227 0 obj +[297 0 R] +endobj +228 0 obj +<< +/Filter /FlateDecode +/Length 290 +>> +stream +H‰\ÑÍjÃ0 ໟBÇöPœ¤i»Alí +9쇥{€ÄV:ÃâÇ=äí§X¡ƒlø°G’†gNgRÎʶQyÊÚ±¶Q9k¿hÏÊYÖŽõÌzdY§¨]Âza¥¬3+:d,~á_H–¼=íc,m©a.’f÷ª›÷Ô¼8°Øµ¹_Æâ}¦np@Yó¿ H"‘0 +endstream +endobj +229 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +230 0 obj +<< +/BaseFont /SORBJN+Wingdings-Regular +/DescendantFonts 298 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 299 0 R +/Type /Font +>> +endobj +231 0 obj +<< +/BaseFont /PTITTT+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 300 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 301 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +232 0 obj +<< +/BaseFont /GDXRXL+MyriadPro-Light +/Encoding 302 0 R +/FirstChar 31 +/FontDescriptor 303 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 304 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 0 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +233 0 obj +<< +/BaseFont /GAYWXL+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 305 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 306 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +234 0 obj +<< +/BaseFont /YWVAPB+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 307 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 308 0 R +/Type /Font +/Widths [212] +>> +endobj +235 0 obj +<< +/BaseFont /IQAIZH+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 309 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 310 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 0 536 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 392 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 257 0 0 0 +0 0 0 0 0 569 0 0 0 500] +>> +endobj +236 0 obj +<< +/BaseFont /BMAYFV+Wingdings-Regular +/DescendantFonts 311 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 312 0 R +/Type /Font +>> +endobj +237 0 obj +<< +/Filter /FlateDecode +/Length 12056 +/Length1 28489 +>> +stream +H‰|V xU>g&“É«y4iÒg:0)%…æÙÐR´P»€+P¥ @K_PZ(Py EEDXu°( +"„RvPXÞ‚È»‰¡»®+»ë²ìªì·J›½“Ú~¨7çž9çÞ››sÏùÿ¹€hŠ†ÌrŽ\×o >¬¬¶´îî&ÙëØ €i(›UÏ­ž²@*®ÑVÖUÕîqQ/¿…øƒ«jæV¹|+€¥ÆšTQZ>qFA@Éa2Ÿ=‰ H›$ÄÿŽø=&ÕÖÏYXjê('{ä×L++…YâVUÅ¢_[:§N¾]"¨ÝH¹©¥µ×¡ÝÄ?Hbª­›6³>´œÓq¾nFEÝA -%~!ñ%dÍGÀP·©ÛdäT䉙àDüB0ª°@ÜñE]íø +]ôfL">ž6l I—bô[H…×tod’–0RV&W(U1jV«7ÄMñ ‰IÉ)æT.·ô¬é=3zÙ2{÷ɲ;œ.·'ÛÛ7'·_^ÿGÍ0°à±Â_ <äñ_?1tØð¢OŽõÔÓ£‹ÇŒ}æÙqã'””ÂIJòŠÊªI“«§ÔÔNV7}ÆÌúçfÍž3wÞüÏ/\Ô°ø…—,]ö›å/­XùòªÕ¯¬yuíºß®ßðÚÆß½þû7ÞÜ´yË[[ß~gÛ»ïmßñ>½óƒ]»}{šö6ïÛàà‡-8ôÑá#G?þäØñ?ž8yêô™³ç>=᳋Ÿ_º|åêµë7Zý/‚7Û@"©$çl!(’B.,„²¨Ã$LEæâc8ŸÂg°§ãB\KµP'©ÓT€^Go¤·ÒÛèíôz}”>NŸà \"gæxÎÊÙ¹\.[ÄmåÞMãÓÖ§½ÇS¼”×ð±|ŸÈ§ò¼Ì—òÊ¢µ¤ P‚JÐ +!^Hz™‚[Èj„a‰°\xYX'lv +MB‹pH8.œnXó¬ùÖÖk™µÒ:å +‰‡-H¡ +ãÑŒvÌÁþ8‹°ÇãTœŽý‰ýz·Ø›IìÇHìzÎÄ%s\8öœ.±¯é{oŽÆ^—‡cç~&ö¢±¯éûáº5÷AìÖê; +…¾Œâ­OèÑ:Òå :zthÚç·Ï¾w·½šô’öñ÷üí#Ú‹î¯j[Ú¶¾mIÛ…¶Um#Û*oVܬn6WÁmâŠà÷ÁéÁ äiBPÄ@U 20.060:0*0"ðx  ðxÿNÿvÿ6ÿVÿ…¶¦¿Æ?Å_àÑúCë[ï¶Þh½ÖzµõR„pgaC˜,Ë¢}-¾èÃýáÑÑþpÃ&lÆ–‡ç°©›ç»ï㮟¥ü/6œ÷ÐH Q4l…%°Áø–ÁjX oÂvx%°‚p@ëàßðX¯Ár”Ãp6Áø¾…ï¡vÂ)8ÀD(ƒ5Pg NÂi8gá| +· >‡ ðì‚*ø¼ +Wà\†Iðwø^‚j˜ S j`*li0ê`Ì„ç fÁløÌy0æÃó°À[°ˆ°³Ã?àŸð!>Šù8Â=h‡ÂÚÂÕBRÿÁU|‡ÆVŸàÏ8 ‡ã“8vƒG.ÛðiÅðü_Â_p Ž%ü~Çž”àhÁRœˆeX_Á_á:´A+øÉr®! M¨€}°ŽÁ^h†ãð|ŒR4Î!&`"yÓ~ïÀZLW0•`£\„#p¯PÍô­o͵¼|Éeù(Áµâ Ê|”¥ÎGr>‰@dHi¹/¿¨ØG –ܤ´1i>´ äŠMyÄöa6jööaæÑÞÚP‰p>[Äk’JY"lzv¶÷'Å™íõœS«8ƒ¾—1C­K‰‰ÑÐ2 +a%4+¡šb¨°¦ç«-’Íý’õʤœ””þ%¡È»iŒ6ÑoÉJ_rR@HK÷¦™X&vÜc’eÌט¦@dIAèGRÁZH0ñÖt«ÕãÃq9&£1Î mq,Pdr™L.7(•qòp3¨6ì¢~ØbÉ=•ú/R»É©G“=­‘=Ý^wô ]wŽˆÅ¡—òÞîàù°ˆcqq•Ëþ’Ûíéq?‹ç¶{XbR"9)“_œŸ=Ôh2‰g§X³ÉT”£ˆæ"3[¡P¨cÔÞ^•R…1*Uv/Õ3=}ñ¥Q©4©Ü%¶ÌL[¦mz¡6M§³èc3zö¤)»Ý>9gÈ쬬,›-s¼›¢(’áˆ4ÏátˆÎ µc#ÕLøút£ÓëtzíÙ®5釈ˆËÇó+oµUÔ¢HÙ°!j×؉Î=pºÛê!ëív1AD“LÍZ,EGŠ­NÖ¨“ÕÉ.£šøŒ„Q²RÌÍȉLB¤I ES*LJe¢šÕÉ$r ™ê+S³RY,B‡€GÔ‹”Í&zŒ’‘*¥ªxݾ[¡eY%ù§!þ9’T³5òC´’e5rü: +: MÈH°oùíx™``3A~ôD‘ÂñXĪvÖVÔ]¸ð0DXVL/!‰“@Â6"¶W„Š!"¦®Fg²»è.)¿Ÿu‡v‡ýFkç24Z#“rŸHчÎj4öIð‹§iZÎÈâbbRc÷ÇÙŒF›‘QJI¾˜ˆŽá*$Œ‚Qèå¢ÄÊ#†Þª× ±…X€ˆ6ís™Í“Ùe0ÃÒ2i™„”H¦“GÊKDªfÙVŸ$“É’S’1‰*U¼R›ªÕZ G¨ûa¢T%•*ZJÓL'VÌ&’ªh3Ï“ª;Wÿ™6v¡|øU ¬‹Åkìäe·’þŸò*‰‘ã*ÃS¯öêªêÚ«÷½§gzº=]3®igLìر;v„X,'A9 EFˆÖ8„S.Hˆ HAY.9€$àDœ8#$„•ˆ“'|ェžê;£ßÏÕÛ«WÿÿËß èçÛ +³µ=ÛÂE²Å®#¶.À<+ 5Px1èt§Y(,ÐäMgÓÊø|µZu\g5î"SÓÉäùTu‘SüÈBă Š,™j½ÔýaÇ|üd«G‰©¬Ñ'‚jr~”HVa–%ü¶¹é¹AŒ«‚$|™­Nö|Y¼¶pÿe§¦jZ„ó~e†W®x~Ú?qc8ìc+FÄCÒéùþ(0‡)6¬Vk§»ÝÇÙ!ñ§¥¬&xk£Â{Lªc–BÑÔtó×Ø”Iï’· ¼_f<.p% ™žñ¼FŠ°G;Bn9ÆòYÃòõCè(M“Ôí‹Û‰P9x¿$Ô¯˜DÌ5F"¸¦˜7d:]ͪ­Ú*ÈEUµÈ™‰ªˆÒ¨–RÌ)ÿ>j‡÷ÑØV ÿdFRÄ81~Iþò·7cáuÙÚ?³ûm–Œ'á£õŽ¢(B‡ð²S½zV¸uðcô·…þþ=yîgÅW÷wöy+?*æ ÎŽ£­‡vúaŒ2n+¨E@”w=…JÞûYu(mÇÚÊ9+ +U5[åõ é+:ü½7ð'—ýÉdò\ÊQ-›4wZYS-™£öV!Ë•²e¡¡X”è7ÎF4áîÐi–Ì°DÑ f4d$!s¯!2DÙÍ2¢Ü´±Jù›XeöÍþ…n÷ñ.,‰H] ‹[Ö¾’óRG +—Gæj_t-óCËrÿôõJ%N’äå'‡ç^è÷Ç*o{„Y¡‚2>Çq·Û½¶©sV³ë–åÉ$sv’gÛ›íöZ% +P¬í~°¶¾þé­ßÛÛ{*(kÁÞÚÚ ,Ô,j¶"+õzýÂøä3Ý^G¸Ë…ÞÔõÐâRULr–KB«žÄ (NêÔ|Ò–"íÝj­J]ÏŒô Œj»_LÝg(’€’÷áó/­éê±užAm‹îŠÅtç •0D$«ÙÅ2mõ’æߤ|7JN½Œ€¶¼ïE²¬‰jÆF}Þhäñ6@ùtÚ¶]+qÈ¡(â…'L2æ× á[Fd–*–Y³ìz™ÐS=dLUÏ ZŒ­RaÍ>Eåy½‰Ð8x@5ÂRç±NûLƒŸÄ¢Óa ý'Tà4f»¯ÃÄ„[]´ë15Ïš~µ`òS¤<Êm/“b:ŠÙ¸°`ocÐRïL½ÞpàJü,O2iíàÃÁ`p}sýb³Ù„àm5jcÇ)·ÚíËãêµúšiš¤½fâ`”ŒŠ…<0ÊÎÌýŽeYØr£ÑØp/ÄëÄs½ùjuìym› ’H¬®çχ³kn;Ž+ç7:»•J¿ä€A§É rðÅ;ÂY£7ÇiX‹óÌ=ËŽô °Å_« Ç]‹ë×õ·qÃïÚV¬gA™%@~fIV^³Œ2 »¬½þ#¦*5ñ£\<ƒ<Ó‡NkÎ7ôe€`BÁ9&}¶÷ØgÇã ¹(™™x2–¦ð˜vçz²õ±Ò6ÞøÎí´6]×e$âÛöüí(µí²@<ÇMº«Y§'“Ï;%«¹gD4[ÍKãÙÓ½^o8>·ÿä7÷÷oV„ë9;Ù¤¼E…]­mFa$€õwÛ +ˆfJ3M3Tþày¼³òË•ß Oý¨Ð0‹ø°ÁèˆáM9›¥½“ Ldo•ZI\º4OK­ÀA†…æþ?n³Ìj‹˜'â¶(&ÂîgÜÀžAñ\R{"Õ!Qa#@).é¹xeDÒ)n‚’U$™ ¥:~6ÍÑ0j%"ŠÅ 4Uu áUµ¬á F`ps§{:‚\Æ…fDü‹¼F~Í<ìµDN΂—UôPlGG鉛¥l-2›ùÆqB^k˜µ²Z†?ÕÊ0öÕÒ'¿j~ +ü2¥sÕêSãúÉjmâË%šONó‚Ðë´\ê]ØÈ&ìÆÅ;ƒá`:¾tò‚×ý ké7·4K¦ª"“ÍÙìÏl\íõv+ñÀ4-I–¨úRE)·±³¦»ZQŒÉeÝ¥# +»ÜäÎÙ+÷&Ó WP/ÇЀ¯øú7ycå‡+€»Å¬ŒÒ…ùŒ +kîEóa¡K2ÂJsdJX=¢»Eõ=‚$®©ïrº*N€Ëq8òQß<½KÉŠU–m} )BpAË)Ãm;NË^x¨Eûb½òجv»}uMãJÚ¢8ÍjÆX²D¥åJ“é Ul•·=_ÛŠ¡í¶b뚧3'­Ør¹åÈ%z[¢ˆëg|ßßÜ<ñù øŒŽ;Š¨{šn+·…¿[±¡Û‡sÉ­¬–këkw/yq–œ÷uS–2s;¤¤ižAÈðÁÏÄìM8rî-Psw¸úñí[÷àè2" WÈ>yCøÄ£ª8€<¢ú«{æÜ8Ð>_Yz¹Ïp³Òir( ¦r–×Qñ&‡{³]£å³ïP`ùìNÇúP=Ö¥ËSïQH¦Y©ÐŠ3t»¹È–rSgVLD¹EYøHpÚÕm•ÅÀ}Jî"Ì HRw4™1 ’“76äÝgÖl»ãÅËr%. rδ2¯¹4ˆÁzY…Q]ü^c½©˜j-‰âºBLûh묓ð á˜!Ö8ò›’\"€ ¬|œsº\èd87¹Lh t[†U ÞIøÕCÛ˜jzCš…œ£S,ÈÅéýü—pÿ†\Š¢.ïð‘ç1‚ŒuI¥L–ós’=<H–ò,ÛêŸÌ>Sƒˆ­àÛF±ª6?%SËÊâÎ-æä%I² £b“L©Þ…RýJ•¡€a):†¢˜5a¢Í…õЂ½Ž ÛqISƒepä›õRjÿغzÔkg0˜D$lM™¤ž=%7%ÏqR®:jq-·©)ÉŔÚ€ÿ¢i Ý›ßÝÛÛÛßßõS­8^ó >š¥HÌ ’¶Y*5˜u4›®3®\º3Æãñ½«Ô±‡¼”Ï¿ š5AçÕ ð¬h—~B˜§¡\Š¼‹ÒÆÿh¯¶7®2ì3÷›gìñÝÞõzíÄÎÅ»±×;ë Û&½„ÒR’–&-Bj)}A@… ¨ .--H< P(â¥â­ ÔªûØpmˆ7u²2呂Q®jÁ.¡ñÀ²êÑ#G>ëÝÐ=3~è¡33¡zJø&|f>LF•RwF¶Lîú¹7&î¡Ç²‡÷¥kÞeož¢†¼HišÐ˜ÃJ¼lÌ4]Ï‘òÉ/då@Q…nvò9 |#Ûð©žÕW÷ X¶×s W·¡YÊ5ý>͇~#Kº˜5y}¾†ÝÂ@“›j–4‹B÷·‘{=_wÜ@»Ö+Ç·O檎“w:RÞ9-îÜׄ´Ð½êBñû9¶’€]ˆ=®¡i¾U¿" +ñÜ~Ö"çHô‰- ï¡L¦píè».ÜD—ÿ¯5Û×±ïï4å åwÞPWpB¿ºSI1ÚŸ«Ï^мëÀò‰íШ R¦¤':é²Í„ŽüCÊ9ìa¾˜:ì¾ÒßÔ™•2:a%iœƒe$Íø$¹À±Âtögk…×'¶§{¸Ïa”ÃÚ™\° Ò¿¡íè“þ>ôüÊsâ¥=¿˜¯ö•W0ÉK™\ç”;¶G1¦4¹d +ªV¤ +¿®enÈdô]BÊ!¥3,Ä6+Y.•§"ÇŠH|í#ßIl<ù±»Ö77ÇOÞ£ßü™¥¥¦P,/?ô¡çÚíöçn+¿{îôcëÑz¿ô[g?úV+¿T>ôà ÊžF9ù0$·ßïéƒ~dueuâÃOÝ?ÿúÿÝZbÀc@sbáË©SŽÑ6»Ï¢ÍÉêyC¦XS×{ÅÊ›¤ã–4Ø_‘fJLäB'UZ©šªX>±°°p Ó9·¥Áp8Å5G%Ò¼òÖÁü¢ç•\å;Wþ³¢q+r‰AÄ<5™J1 7»ÇÎ4›M +I]•Àþ­Þf†´6ÉIO#'•ÞG~žã ÙXÅ…b×7 =LEíá`0„½+ð]¤¨¦›f˜$”ҟ¤SÔîF]ò¶Òq c< žq*CÅ#Î=׊)k685k+0˜5™ND\¬õÛKÅ*êÛlÞroÿ¡û€ƒÍ-…ÞBB Ò2TÊ ØB‰}žÊ®PÕÙƵç%¿¡TaiÉ +ƒ3SŸ`C©«õÕB±P­VG‹òv® z{ÒJºRMnèÐ-Õê’)¶_µ]Ü„Xˆ ªŽÖAÿLÀ*8³üWc_ááüxK½R(¬.ô6? r«;oˆ·Á„/BD;óE¦*vcãÊÃày*)j0§9wfš ÊD³H<Æ•],CO’ñ8­·é„3 9Å’1I8‘x±eH>A Ð4Û°‹žáé¨û\uqQí‹Å|Þ|,:rË>°Ÿ©Rêß$”t&dв”F­¶Ñlßâ©Õj'»[ç굘ýÎÃòäUVÒR/ [¾îÆ + Ø“)þqª ÀCEÓ-•5Z-…áúríH+éF9Ÿ»áèIèEKh„R5†(jžµSLIý­„4sü`g-뇚Ù(·zëw5Ë”ntF;÷H¶êy—»€gB@î:«ü:ó}$Ò<ŠÒ]§–ïñ›®&±3™")QZ-c ¼C%ºŽÈÄ–ÑR[âs0³& &$Wü…üÍ’& õ9÷?õþiçñ é[ ¯Š6Þ}ç§; Cp +üÎ`ós¢)dζáoòªý.ݪµó¶ò;èùèE¡À¼»Z2S†“†Ê:»ú–vS÷·ãD.äV‘¡,àv'ºxéæc]×=s1g‡v2Ømb45KÕL5ñ0ÏÚãÀ\Ó\‘FµC©žq¶Ã-»nEŽ²‹·l@7Éð9: +Ÿ|y[!W wàªp¤ioÈæÜnª`éíó•~©|´´rVÎÄà–áYüÉÉ¡T³Ö]hé)3WG½¬\Ìü¡N8Jñ>7îˆ +à_6¦ø¹Šr$×­ÓL}û”ؔݮW×jõQM±s–•³’9Ëð=mß-þ5aèÍÉ{ì‹nwŒ+ÿÖèöâ;4$CQß 5r6¶Öä³Z¡ Ô)™ÖÎ[âñRæ©Ì%°Â8í© c˜®¥Ù‹DqZ‰Æä:šú½vw.Tš{^ŒãmSÒÒß ‚tT‰æ4åú©‚Çc0¹ˆ^»?‚Ár®bšž>Ai¡ÈÖ£ÜR4¼c7åó¡4|ªjë½éièMfŽ–4b9Ú¤àú×U µ5]µ~æëúVK‘Æ ?¿_ž¶%EÓu –éb%$³¸`ìjv’éŸêüpa7„ŸÛnRòEóæ–•ÕT­R)ŸÞxÞò Ãfžë~ï}ì}?XYêmæðÔò‰ø¸Â<£«ðZà:Thº®‹ræœ ²%…‚„”7†w”—3gž¡L1Štj¶§¶+ ù‡íYºÊqÛ›½Øy±£kšÇœ?:½(©be˜OÛ»x¬•G›Í“î"ú‘™¡çÕ²I÷OU*Õ¸)´ÀqJÞDØø–ÚÒÂÓR!åéM?¨{‡rr)Žßµ6]ðHÑ)v ¶”O2u–ŽO'Ô#–sù\t°Ð‚*öÕ?n?³ßƒEÚÛlÞ~mGÿÊTÉÔíÛT)È2D +ìëÙmƒQIÙ’½_/™>¸JYP‰r4Ï4¶|Ecàç0%F`üﶶõ†mÛ—œŽJR‡»~=ý3鮋Rgë3BÒ惜¸ë”µ&:Ošª2×z3}úcRÒ´†¶&:öÏ‘xjÁ¢:ø› ‡lë‰i®-Š‹ ‹7”ÉÇ@OY¾é”„N +z Zù•3vÇõ¼z1)‚J€bºwk +7_¡•5=˜mbrUMzåñôVÖ˜ËÈßóùý­{ëõz\,ôS¶¥’MqÚQïÛlË•Ž+W›qe¥Fú±Ðïñ +="¿ì²—­ù ô`¦³ó–r+zð‰Ì˨_´»Kòiâ­L‰7)èU(·3 LÃ9âM×l4×…Q)”b›Ýžqq±‡…Kå«ôˆóW$~Ê­zŒ[MÆYˆ—¹ÊEW~/þ‚êZfÞš*âú#ß÷— ‡W°s&XµÇ@É`ÕÈ­ 5 ô—'fÖ¤ûÀ/»ÇÃ0J¥PÈ5}¿æ°l˜r÷ç_˜oÈ+?vC‹-øÔq꼤õÖòò=ÃöjÕ¶3Ð,¡på¥Å`Àëò·…I¶(ÔÍk øS«è+Ë[FÃvìr–áä–\·–Y‚”›ºü·âÏ™ÿñ^-±qUxîûýœ¹ó°ç=ã±ÇMœÛcÇvÒ¤mÚ(AEI‰(ÚBUv,‚¨¢©jTBªÄ!±‰*Ú +@lXT*,JH ¡¨bÓª›ïüÿ½3wÆc{â–Ž~_]ÏÜû?Î9ßã|3ó*ê$Ï™9ÇÉ9¡ä&àŸÊEo£ßÛk.ÄÚD=ìk-ñë´Tâ î¼L‚ؽ€} ¬µ·l求Í]X ê®[qØIœ€Y<Ý-$8niXš·¾X©Vpêù@óHAyƒÅ­»R^AÃj>¦rK>KóŸÅR±ôÔ2ï±D)vlâÊÓ؉¦a"ü§7Q8ð[rIúÔêõkkí3ù‚Cm!SsªpAb6—Ýîp¡à‚ÝÚ)•JÄ°…½‡Â ñ/™WùHëŒT)Š6µÖAÃhì|èšjA¹6èJÇ0™ su-Ç­ø*Ç'] [£X…*´ø‡Ú÷Gh÷ˆ«™³Lð2Ãx¯¨–,3#\¼Gí[Ûˆ´êró*'Èá$*þñ*… +žÂu·»&v?œÞ~R7«ME¨ÈùÚra9ªÎÅĪRâ‚b‚ª–2õÝÅ:´ë·™{™‡¤_ ¥ {\’9Å(òw“¦esÈfÄQ¹˜¯Æ„¹“¸Uꤩq Žwºû¯‘d¦Œõ…1ד>¹½µ~6åjÒÆv0µ›q1 +¦a½,–¢ZŠæ¢GÒ8WðÇ÷Ìôt=0©ž™Dýl®ã¸Ì'ë´Û_{|åJ­VãXû’?‡Çñ²"_•mæ4ð5MË´ŠÚªœœÁ• K1š?–K»÷»JsÄ»[ËfÞuªÁ %èšå£õêóŽëœ¨•:¶cû~°TÌ·=×¾«°epˆ\Û÷çL™·,¤«1ÜÙ$Õ¥3Ê` ò‰DL9ï±öŠË·Ôù\½Þˆ¢h£ÁÛ8#„[POQ7 ¢±HòÏùÒŒ²¨E®Û)»~0hÊÌôÓ/‚ª(ž¡Ú݇¯Ãè­WóM˶$Ž)4ö¼_ïû¾/VçH(ƒ X.5V?@ÓÑ) †…Œº÷P<GG5ÍåÂVçÓu³¿›:ˆ3&FŠB‚¤ÆÒ‚ÌFn¶©££Á—'õZ¼ÌIH:ïœ8¦’N—Ës,Ò¦2ä Ê&#ST/ÊxhÂÌ.¼•6¿À<ñp®“bÒM˜ØÉ}CT÷ç_žçðQȤ +…óÝßM!+¡\9G/ 1*Ú¼ üÓ,œÆt8‚xâÛ™—2?¢žé;e³P6à®ÚöºÐ_LÑbZ¶×¿9žP DQUÀ ü‹ é‡H„I¦qÊʺ¦6§³OÎÞß}s–`Ý3ñŠEý.¾/ãO…R†+ÿCœ˜—­ÅðÁ/Oo€§Í}N3¡ðHå€H`‘°o¿×쫽¾Æ©z¢ãd¦†5‘¶pxfLæ‹“Èyf PI­­RÇϳ0¸ó¶“·èî´ªz ¿Ì» ÅìhCÿˆëWwïÓ|BŒ]³rTŽ§ads‡÷+lZf¢TƒmI¬Š‰}zÆn¾'1Ä"oÔƒâU¼>#R„)w37Èã'†Î¾hS‚4ÕðO?¥¿÷PzAø@XÁ)gs”Ö‚ÂLÂ0© +Ÿ™còg~îhº¨gM«äå—°b^áÿTÖ¢(?Ìô)Ò~$M“P¹Ì!M‘Û²ÚÅé’óH•rÈ<ËØÌ 0iUnÿ<œoœW I’,Ël—.±[xœÅ?L²Â ÒâG²_ﵑÛcÿÔïSª®ó{¨Á[Çó$GWôÿÛJmßýÄùÆqmsHõ½pÖ2 ™‹™Lñm2I¦‘²-«);ÓÏÆR*¡é^jð ^qåjµZm4·Îöžm4 ·¶ì¥ xqÒ²B6ÜZlö}ÏGqlµsõFãÚÚé›íVÏ~¡·}«Ýn ïŠåùùÇ[Z@×<[.—+åʹVï:±{}÷_â2v's»f/ÐÉcMŽQÛa ,‹F‹Ïž>za&$mŒ#©ŸöÇ­9¶¬Acð•ªôY5kÛéºF|¥H²©R»†® ¤KßÖ<®AReI“yÉ®’f«ÇãÖën= óÕNPì,Fm×ÍëIƒøŽpÿðš½õ v&ÉÈçå$×t»h/Š!d4ñiY¥Óñ§é5Uþµjº…^5”#°à_ÔÒ1#-ñ÷÷Â"8_._z¬u¦T,º¼âqdŽWªj§‡Úùiæ^&£ âȧ (®¥õR¶ÎMk\D«ä@cCP¦ \ÌRMmßÍ•|Íæ"{Š_[*Æx¥`Ḧhsûm÷` ¼ö" +Qæ¤Æ?ë—óù’(¸®ÛŒ®+™3þCØÖßÏ"" òa•b†ÄTf$KùB]²úã×íQá˜Û)ÙÜ I±.G‹Ab;]1)nÅTQ¦¯)˜LzçßO²Š¤Z¥r¾)*”ÔÎÙbaÁ9²Ç>eÂIÃ2BÓ„MmxÚnn¶ÂYÝ•%ŒRÌe·¹¥Ç9[OT*úS$•q³¢ICï|•ôóGq•k›ã_­mð¢Z¥‡×Æ+3á +šºmÄg`” ôè~pR}v•’ÀX2’aD²£ë‘ë×\Ç¥(©ªâë’F)¡W¹ÓÓerzž~|‡õÂyÙÄ‚I½rBÄÛšþê±X¼3›2Õ½„W‘§7§µh$^«iÞ?ÒXà0Çu1~œEzؼ&`u¬±jòü¤'N’Bì2èV=ßoeÁÏ…n„x)´Ì¼…Èq³Öl°|µòD‹ÒUõ¸ª. V©e™nÇY.Ÿx2å±³«]&2V3‹øËH"Ïݨjš6^°§‘³#ð%Ž(Ê"i•v¡{®Tm(h»° ·â‰… jZ–`pÏÙª'Î0\E‹\çD¥{.ÊE,Q,'(*gÞuË?ÃL~ïcáœø­ÌM8Sm°IAÑ÷1¯²˜G›Z+Èd,¼ÙÛ {\ CúN(•e.èýÊçé´šCõL¥«I6ç?QxÍø:ÉÈ×éGyT_NOÔéq®8a®åz®ð²µ.Ír¦(K „ Ã`†oÍPo«»ÿÍ"ºHad3z‘ñ–`™V·&4)áÞÇâETã»ø'8ÛSÝq +áëëýà;1.¼ryuÍÈIcÑËsc°1û}áþLþ˜{TÓP)HO™%ש‡½˲æ(Ó4O6³m?(jij8ü%áýÝ7§™cü +áƒØ ëg,OR¨÷Z™ÃáÎáµû×ÚŠç{@QÙ£¢ â£ë/ugÿç…÷È»B/'-h”˜Š¤%© cÀ³€äI&H,bÁOdò&¾zbE–·#g'šÍ?£‰›J­¯5~[Z¢c‘{9‚Õ·¸šH’¡69ŒHé³$ܲÆ*c …û !%FR_5aªœïÄ9æ]*-S+„ß1s—¼®.LjOC–‡Ïs¾ãàa>[M÷TQ¾Ó—vûP˜¡þûÕG‘EOUu·{Æ3žñdl'c6ĉòòÀÆd‰/6ŠœÙB + JL ñƒx$@B𱋄„ ´Bðˆ_ØVò´Ñj³Z±"(䃅έªžÌÄ& ä á™>ÝÕªºUuêÞs]p³\¦l ”zÖÕÙU ‚΄‹%+obÊÙ0h+ÿ2¢3‚(Ûģɞ÷2&¦¤'LЩkõÒ1ŒK­·$SÌbõ5¸|žWg/¢_ÁÙñ¢Ö±!!ªE¹ˆGÝëÞ£%mÅ^SöÎísä%ÐÙ#V=t8¬ו\ÁD´„A.ÝC&¸½YÏ{Ƴ"hàCò}‰Y”Ïœ\M‡c"uBCÎZU¨œ‡áyÅã5Ñh»¬$Ú½òî~ ÆbgØÉzR5a¶³žj•‡ýB:V^‡Žô‹Ó-a œÜä¬öŽÄ¨wUg¶MöMå8ÃSÈ4ʪææ¶ôSʚωˆ3Žœg8fl×ßÄ T1óç8Ïî㥅·<8õDš +l§’>8w­è¿yü[Mä¤Ó¹(ŒÄÞúcÒM·V¾-é]D°"@!S9¡Ëê#5$¬vÔ½Pôó45õxnš¨N|%Ì«°þžEýî¼Êï©A9¨ô¤«~¾ìwç†@·j6è•bílz_=Ãcÿ’ÍØH/¼´VKîsSÍ©Ï¥Kn©Î0;ôJÜ9;¡µ©§µ0¹Ó/tÜšJµe>Êt¶æW–]þVkGµãÚü,C˜ÔM˜.Î=WJ7šŒõõÛÀù|N6œº;QðÂÿLT¨9~ üN0v'œ7,jÊ„6]ãÀ®ccQK<¥.SŽa¡nšáUiM^äieÅÂå’kúŸÐyƒmÒ?hÉP®R1²ýµ"U"o”ó‰p2Y{ãuœq}6„“¦þfˆ^Éw¶°eëÑóÌ?Wã Þ¨!—£­²®³­&yeÕ‹³dz É^¢gúfgŽ¾ÄA[¡'â±ÿ +'mZ" +»¡¶Î¨¿U>|la[[‡.$B˺JQã<² ²ÆÎ.Ë.î3Eá™éŽuB)ÇIZlÈ\8¯±ãuÆ™­:J<½ðrêBéJÒŨ9 +í“Ïrª5R­½†`»²ÎãÛÎê—õHå ‰¬›ãÉXjׂ…I¨ø½ì,º°Î-Ä3£:qåÆ:{q´lb4[dœ’)ßȳîA'a‡ ¯¸5·æ;¤ÌqÖ¯º­rÂüh^d1ä÷RƒÐ_TNàùàþê¶êë¨Æ:êi|ï‹ß;¨vLªƒ¸BB@t™ÑgÒXŠO±Vc QV ¬w`ˆßçyßÊëõ¼ßÌï/!Öy"Gh"K”‰eÒQä÷£R—uVK;D¿zKõÿ0Ÿ}åôm(éÐn"´³Ü®—ÿçýuhW“Äxõ¤>êÞ™7‘7×¢Õx¿÷r}Èb¾ÞƒÛËèÏsì±þ Zˆ‘£Ý7±ßI^—‹ ´ ,w‹­zIõ$í)±ý^õO”ø¼ƒ6”õ:DªmøªzŒ÷mR69>×=|¿•}ô³Î“|÷ǺŽvÜ‚‚FdFùM€"ëeìüŒã*½CÍãu™ô/ã¶cÿÀËIì÷ó7´ÑÚWnöÝXuWO?Ôl;bWØ^måu-!}–h×Ãz}´¹ƒkÓ,0Çb~÷G¿î0Gª§Íº¤ì9áxt +¡´›Ü׃uçi[ç4ºØ~^Ö_¸WWuåA×ðîdžìÜü‡¸ÚÎd?ð:dю傤¾Ì¹¬;^­n³ÜÀqúO×NtÈ؅þ¯¡à~<àyØž\–{“äó$æIÙÚ@$ýÈZ%°ë0ŽfBûk‰ßl°s<ŽêAµcòŽm“WÕo…³Â›ú¹âh‘õªe»ð¬Z™m^õ×ÈÍöü|HæÚîYû_ÓÖ~g¸øßCÄËÄiuœìcËÁ3@44ݤÒGÌ Ë÷9}n´¦ +»"Ññ¶Ã‚½À¯€K23Ñ}Áw—>ápû^´è{Ïa û^úÉ…aù—ÀÊ—€ÀÐãÀp\¹XÝ\Öp¸†}^[FùlløøÃ2`ý!`C°ñu`ü¯ÀMo“Ç€Mo8læó­ïÏas˜ÃoJ²­Ñ$°ù‰æ_Å1೘4#D’·íSùj¢/,÷úrÄò ߪ Å»ÅñeE]u—/k´à1_6|þœ/,¿åËËŸ]¿ß¡=¦÷Ü^Þ}¸<²q㦭7Œ¬ŸÜ25¶tb×Þ]ÓwíÛî[ŠÊý؇C؃˜æùvJ¹Ý8Ìó6ò¿ [1x·žâw ¦0Ædk»°—˜¦ÉûØÂͬy'îµÏœçÛ‹ykÜ,Wp +gù½£ªü$ÀÐR°U +endstream +endobj +238 0 obj +<< +/Filter /FlateDecode +/Length 10981 +/Length1 15156 +>> +stream +H‰ÄVyT“Wÿ½oÉ1dƒ€L {ˆ¢@H·Š‚¨­%lÂ(‚Kk[´.´XKÕjÕºPµÖV«hµZµâÒ©¶Vmgêt¶s:39ž9gNOÏœ9£vÂÜDÏÔiÇ™?ç}<Þvß½¿û»7ï=0ð<¦N™–•«+\B3¿¦ZÑÐè81¸ï)€¥ÂŒ†¥KÌ‹+ÛÍ€¸’æ2›;æ¶qÚ @v„Æ¿˜;yóŸ»ü €b`_ÓÒhlÞ2aAú +ZhBµ‡7ÑØCãä–¶%Ï'ŽË¢q#À×Íoo î·—U¾±-ÐÙÁþ{À¨4’7/´5q7NÑx<Ù;ØѾxÉP&…ß„Ö;5u`vç5`´&¤ŸtüŠ;‘dw°…@Ð~¿RÑÌéŽSà¿3̶y∠ü+g·h† ¯ˆ-ê±áTex0I-–ù÷B‹¼ Êä +eD¤j˜:J£Õé Ñ1Æظá¦ø„ÄfK’59Å–šfOÏp83³²sróò]î‘£ +G)*.ñ”z}cËÊÇŸ0qÒc“+¦L­¬šV=}ÆÌí¬ÙÏy¢.PÿÚÎÝ}ß9öÞÉSïŸ>sîüƒ.]¼üáGW¯||í“›7>û|n÷ò§žÅ†kW.^ß…]Gñ<ðô‹at«6âìõ­«AxnSó­Wwž¿tá¢öŽ¶Ÿâ‹eX1ïI å¥†¦Öí¯oÛ»gÿö½}oõH´™‚ŒÞæ[C¼D¢ C,À:Ù& +A-L*…aŽ°Ñ\h‰±$%Å …ÙícU¤’ÒT5I½lÖ?$õ¿K2~ÇúØ9vŽ3ÐOßúör{ÙªwC¡( dC%"£Šr^(B¬…zŠh4b`D,â0&Ä#‰A(-H‚•¬¤À†T¤ÁŽtdÀ'2‘…lä yȇ pc$F¡£1E(F <(…>ŒEÊ1ã1òuÃdT` +¦¢U˜†jLÇ ÌD ü¨Å,ÌÆ㘃'P‡êq XŽ§°OãÎà,ÎáœÇ .à".á2>ÄOñ®à*>Æ'¸†Oq7pŸásü ?ǘ¥ŒßO°Ë(ýbу™6,@µíè@µsÑò/éæÿ ¡õG3óð$ã%êuO¯7눽Îÿ;½•-§­™åËõ'壆rÈ‹éA{0gè÷t^¸ùÙÂá[Ñ(ŽàìÌÊÔ,wñ~ƒ/IÏM²q™ìž!4Ç éABßGm#­½¤³›ò¢‹reqÐNü6SÍ¡¬šA™VAÙWN¶Š(O]”ÃvÊk‹\'w‹©¢Qø‹ð¥ û…ÍB¯°BÈ‘?Áð;øµü*¾†7òj>‚ç¸ 7Èus«¹.n1WËÙ9 »Î.ÓïðÛÍR™.„™ÉèD ò¿á[ÜÆ×ypí!$òá{¾Çÿ0ò +Âì‚ÅmÐë´š(õ0Ud„R!—‰Ï18èá3÷Ô÷X½Í3œŽº¯|Õ2jŒ£üáfL¸‘"Òýói~0åtdПĥ;÷ÿ±z Vo?ãS¼ærsK QâS¨5K‚Ï07ö{<=Õ5*ý°Äû§Ö„:BŠ¹¼E’§”$TÖXL’èé7ýÓj¬YÖ;¦,ëm²ñhíÆGJŠ)Þ’Û?Ú\r'<¥ÕG9ƒä6Ý6>sdO™Äû­ucë¼NG™Yâ­ÞƉ¾¥>«¯ÇJ ’`õÆJ‘!_I[lY«ä ˜Ã¸¥RõC]©Ü$÷û%Ñê%Ìêm•8«WR¥Ç:æ²–±NÇi:>Å¡ó^1 jÍæ~ŽïñZ%ð–ažêÉSçÙs:hɧõÜ8™NÇe§£D2¤;Á…îP1tUótJ[=ñ\©L¹PJ絜¶ò´¶UÎ ã”Q|F2²-Z‹6•*£³ÝòW¤g‚E8wϺq-ÁAÊDŽöê=‘rÖªà ²ÈðÆÌÌl½<µ˜¹ ÜF®¯!¾l’¡m¢+øu²á…?¬LO~Òàb%Ü.„ÆèÑÄSGÆ„jD&>°¯w[ä./ûS+¤ÝCe(ÛUˆõhy½’p3a,´Eý`‹;¿ /—2XfM²Ùº«r\®ŶYÕÔ¯²•ÐÛ¡vè¾Q8N·Ý0ž%‹qËULavkÂ<(™Í¤ìT٠Ʋå&z|p™¤û>ò©˜ËË5Æè¢ ™Èä\L¦5=1&/·À]PÄò3YªÍV+äU[j³ÍÞC žS;6MΞ9,èmi3%» ŽÒù¸‰Gÿî·fIÁ«_þñlýþ ­\™Ü®+Œx384»Áa›u'§~]¯g\u˜1zúìÕt{&yLq1zu¤Àäz(£˜n8c¬]¯0ˆ,>„¶$=;Ï•È’K›ŸjM’Q<8·ÖÂÝ.3iÒ +íŠè&1AþË]•íªX±Š“ùj¸»Na4W*,¬Î¹wq½Œ«¸ÿìâW[tëzrÒ j¥ ÊPÆ0U|,q–Ë8–_ ÔoùŒ)£ÓèÙ¦ËeK呆PÉÎÉsó®üÔLfM’«y¹•ˆÊËMdF".4V3y.ÑGܺódÑÉÖ$¡¢ðؾ{LUvI–)Ù –éd½ïNÚ<7J˜]üO¦«-¶©óŽûÎññ9¾ÇÇ—$N|¿Ä±ã»s³ãb‚Câ8NBbH kH¸–Æe,¨´ã:hWJÚÑ „:TueRÙÃÚ‡!­R[UªÖîa›F·VjZÍþŸ“¢I~ðwŽ%ÿïwý:›¼Ö…ˆö^Çu¯É¬•†-•ÿ¼ÐZùÇtòöýåRÌå2«š"]õ׮̧æûôá…û¦”×m[ˆszUd½ùϯq¤®J½Ì;Ø‚·øh†äS‹C¬a¤5Mò&Î’´PQx¾C-•ÂºÕƒEŽ! ¢d÷UÄã1·ÇsyÉÕ¥'Há;p(œ3 „.8&+k D½_ p:E@VÜÔämßev|Ùr¨I©Ô–ç­&m"e¡ \ß!à’+ƒïõ…ëGÇ’ù—~3Æ~s|ì”I +v ¶í©÷©ø@¹>á^ŸpZFQ.ü!í +L''Ú[GÓÚùtßÊr´å8iú8i;T!ÓãÂØà«EÁ2.Qnf›À­^X†?Hx1ªZç·ÔuRƒ&äè%kÌ"…DÙ`±µÅ#iHšÂ¨]•¼ F’zVDYØÝò¥zRaO©å$³c×SϹs9UúÌ¥³ýZåLœaêö˜N±[Q;ôó/·é·½Õ­yE°m0 ógù¢IÐW¾©<ùHªI«ù&9Ãet©ˆ•É3Ô'0xµòéu‚ëäÓ¿"®7±…LNdiŠ8¾±–ò»Ì´ÅâX=ÀÚ"HY pá$‚N3,¨ü¼ËÞH‰ª@j%t VO_ô¥,Õ¾&>Oþî„Î(,y’ð×µ64ñ+V)Žã¯&…°¼¿j(,é¸uóÝáÍ6ŽñE–{AÊ0Mwýþ;îùcãW'¯~}rÑò»!®|¨ŽÛ>Ø®ï=Øiwr³?œŽð‚:£ÕöÖ0Ìû»Ý/Îœúü(bû²ø4b+Fœ‰™AoåE0‚>¡S²\x¬J`Ã@·«ƒ6ón=Gëê ‡4qA +©*«q8 vA ¬ÒƒQFˆÍÒD—ÏäJÉÈ|Hòx ›€1®¯Ø1ä‘ú†:Ký \²eÅth(÷€Sììw×7êÚLºâ¡Þp®m6Ü–µðš=7ÿÉ™WóÛ͙ũ- +7½ßÔ®×NWÞ•mò2†°£ïxa}Ï€ µX'/<[O~yg±]D&ŸfVðÆÈ8Le“(08¬êÂصŠÅ7 Çj& MCQOB‡ªµÙÉþX„L댊,…„Ä)p‰_.U¦{ÕJtÕ³y~ns°™ÁÓûŽE­¹¬mì~µ`3t×üêí!Šb¶]ª<ùgå³³ &Ø(¢0‡.Y÷•Iw¦5䶨%Ò¸“ÇdJ çLªáâ¶P‘Vž47,+"¢T'[i`h­•°têÓ ññ 5ë@‘§‰¤Ÿ‘í£¹TÝÆ]5¡UÐ ÐR.ïwËÄåÂøæÜLûÒÇ‹“׶¾›NE'RÚ\{·YèÌ—.îžìÙ1P¦BG¶OýlëºÙ çÛ ÌÝÛÛóâÔôeÑu"ßµØ+˜¬ëð[Â×ÝâÅþ-;z:J-ÄQȼۑuNlÕ‰L‹T4:JsÜŒ¡ à)—K…~¤³óZ$]H@'õÁA ¨ÄVS!Ôk–ÏByÜU:%×DC¡{ºÝÁ<­ªÌà }»o²œ)º¥[ÆÓúç²Óœ|àH*ñý›¥‘›_ÿTƒL¡ŸÊËÆS‚˜‹\¼>µ³N•ÝzÛé?¿C§üÁç§Rù÷ÇK  QöscáòÊë»\å“y®?ýîн¤Y`®­Ñ©äN®£« $Ô^­ ·^»V2\¤^T±À®AW7p ·K1[ÊUŒÄJ?J‡£ÁbáD¢èIÛ£Ã%êåR,2:‰ãÿå±³lg¾@¶àÍ6㋆ͤýD±5.›@«PÂÊH8d«7›Œ¢NžS¹×N.,éòcA(#J?ÄWeqLúX Ød,áÆÚ³4ÑéhM]8 +M«Ó*ØÚPdèÖïwlL+'+3=6K,‘:z¥'«sircß›}ÆÞa¾øö˜ã…á¼gÐÙ –æ&§u™ïØ–"kVïsÜø#H@÷íq¸KZÞ™iæaU$›2]&µ.""#lëì@çg¢&¢RR©Œ{©Lˆ7Á^g¤6ØW—aØNPu $S²ôÆU)tu­Ê7žÀb‡U»UœXm¢ú1 Wˆ¤W¶êLÈWµM¬:4‰§ª:ðdÞv{ubØõªKæ•{ÞeÏ´”F”ÂÄþ‘k\)—æ}7|ÖãTµkºF.,M½4|xgÊ¢ô‰VCÙH=FÞIó锦Ã^wf, 7\8?öú¬¨å¸IÆœzp`Ÿ½lÙ6;À5¿zú©œyŒwÀPÆgÔ#ÆœŽ÷sã±À º–ºj{ò)Ý^• ›¬MàÒ¤X°Òj½$áŠ+›Ýé&rѱHYæa–Ò4oéﶼõ•W\>²x¹Éؤóߪ<^©ü÷¾§þ·ï½ò‹ûÀÖÓúÊ™fÿë£C¯Uþ¶1gSÅ´ »'>¸<µïH³C·H?Fn¾‚8z$It²„(§¢áÜ®\4Ј§qÃ6$Þ•"„¼ü\]H"UµßË2,Õö ¼Uè¾CîpF$o5L€AÄü`gƒ_K­³ +ÕJK-¯÷-oÔtjïþôTùÊ”JµP|Tyò¦8ª/[Ï@ˆéÏÿ „§’G mœ¯Ñ°ËN7v†…*@ÓìÝ9tÔË0µ.[U € TŸñå0i 8%£g>‘ä$ƒ™^W-eq¤âT[Åë•” De‰j”"ׄAù?¦«.¶©ó ûûÎOαÛÇ?‰íøÿ'ñIl'þ‹Ç6‰I!C2 @ÂO!, i Tí *Ð¥¢°VPµ“X[†ÚÝlÓ˜VhpYi\NÚ˜¦Mâ¦ÛÔIÓÔ8{¿s’´¾´}ñ=Ïû¼Ïû<™`ÁÆ–QÐSƒ0.ŠÖñå¤Ü.1–^"Ù+0hX»¤íëa|ªV¡18X)Ø `dIWK ÁN ¹¸‰ê|!þ²AàjÖÇcZÊWå]óóçwIæš0ñÁ=ÎtÐs8픪BÓšs8û6#ÂèêÙ¿Àûëºåí[³Ij,“¢Æ•nJcÑCEe%_©|@ð ^A¬‚Hö:$ª8ħ‚2èD¬(1c0•ëC‹wª.9 }ÈEêµ½²~§ œÅ +ðà;±ê+¢M=ÝkG“P¢1FpGƒV­©¨?²Ó©’M01˜vZwÆk?~oäéWéÅD%í­¼}±/Ùœ´µÓÔ½_Oo-ØŸ|q´”>=~«(’¥‡ 4]©HŸ(6Ó¥«íèîä­€nfÃи2õK{®,lêŒ=X¹îR„D\$ü é +ejœl|üÍ"¢¿@£gV‚W]NZªª*“®ðªZ<ú6ùfˆ‘én§Às}¨„Ê-Z…¥xØOË9~Þ#ë˜jF‹9ÈÛ¤‘×ѱN1h’ß¿­ZäT£,*ärN±Æ¡—*"ÂQ=SlöH†ö~cöYÞV—\'ýÃgæÊ£êu¹/ÊëÁè| 8Ñ- +˜s÷ôK³)6×ÿðÌ[v5fs4íêÞ±¼ä4›Ívƒxf¡°;ïå'ê+JÖÍi{ÆøGuCå^`mNÛ`½¥k$• â±´Ô;È'P,{Áß+1#=Ø»°8Ø1l 3‰k ]¨¶U¾†»¥G;LM$`‘hBèwZØ&²êJ«*YLˆÝfŠ÷ ×w@Hˆß‰O}®ôË¡£;‘ÅžÊ$¼oxërãIh“ðζ`Dèy åEÎV¨öDqÆÁùÿÀ5;¼ö³’Q¯Â)›M×ò#éÐX ¬€FϳußXpªÓy“Yʬú+™wVÿNsàÛUâÛÅt,,‰zñ‰&>€Ýmpµ+¨)3ÕÓ鄨§M]|1˜“b*HbŽ>Õå„ž;¸Ñ>¬Ýšg» ?¤ëEIÚÍ•(bÞlSAn)"v‡DÕZÉþtˆÖ»Z—®°¦¼?£(Éû/' ½Fiòìµ{~9da«Œ1|©(O,([åÇ'òù4×úñ³×ÿxMB/ÆÇk-“4¿ùh¦zÜaöòÅ­¹äØ•@<|ùü¤â´ñ¶ ì³›üÞHøÜÖpuþÑú§„‰1Ø‘;ªWVÊâï°â3ö!>) v.†×(¯¹eœ¸%üZ ‚¦²â¤5·$Ká×\<ܨ‹v¿/7\³û§£ýµ²…ž¾n6ÒHá¾B ñ;f%œû…B‹¥Ñé/«`Q.R%Ÿ)o7Uó|<_2š›Kâ·Šf £ÄºÃ«_S'¨qh ]G9lõ:ÆÚ¡·ñ&>ä )‹èuøÕd«A9ÕØàƲk‘Ÿx㇔ܤ•‘PNÓkÛ]]{8ÎÜÎ:9–õô•P_ã!}£sdì%d¹ŸIU‘vG•oÞ´½kÛù€ßΡO-£í¡f¯h–ëO-£Òœû˜²|Ãã[Lø…Ž>NVÜr[s®/?Û8– ›Àâ_}Ný•qèDh}ådÜnfikR69yßiÁÄ÷¦ñ©¬1KÐ…ÃN;u¹=,î_ÏŽ*8Q–U.Ac%†ˆ6 21ÈšŽ+A‡@úÕÑö—̹¾hñð±®èâw:.r\ªÀ߸o¦igWG—51PM(Ó²3|êžjüjpØ)ÌŒÕKõKA÷JŸ±$ù„¿ÃïO{ <…ª†Mâãÿ\³EC~Îl–f/+¥©+{çˆö¦oµ s¼ì !g CND´ËÖ¬‹ØB£W<¤AÆÕ¹ +kκÑz×ÖJ+*°Udœ–Åw/¼7?8*K—’•}{_Ä*ÚóÌt†’ñ7ê“¢ÁìÉÖÒ¿;²¸·}ZqøÃ?øýLÙÎ õ/ìø<5–¤LäÔê?éÌÚDj傽6Êjåyxd‚²# /õ˜Úõ1$s|Æ‚ÓvìÔát*/;/z*Ü÷F£š(‚û›ëßM.)"ïÉýŸërmë,ãøyÏ9¾ߎ}||‰/‰ïu|¿ßí8»‹“¸‰“:Yh“Ö‹¢^Fªµ4–®@4h‘v©–²Ž­C™¡ˆm +¬ˆ!¾pR?THTýÒ4Q!4„ÄÔž÷ØI)ß|Ž-ù¹üŸÿó{Dý‰©¥÷rDüÇç И$¸Ne ƒcam$ÐŒ£…Üƹ½í˜L·½‡&!ùç®æÍÂÑQm|twÇ¢ŽN’—Ã%¹ñêÑúÔ±ãÁz´s—¦—ÂW F«ðÞjv-™99­—{?)²l.ë¾uýÑï«àцάPsC‰B%9-P"w€TH+CÈä&¤ØÇ!Väú ß£QÊIBþ¥~†Œ»$ëoHÜ´¿ÅÞÁ¦<Ô ·³7ƒè)44z|v’&U*‹üÚ›oŸ©×<®\xeadÞÝÙefç‹Ég Ï+ßÜ\T t^±¤µµFòç§nž.ÎGF¯°ÇÒÏ^wó#½ÝGÞƒÎE‰rEEÄ»ôäqö™™” á}Ïi<›Âþ2)ŒEÐ4“¶ÛE‘ÀÁîeî}ck8Ó¢ñJ|ít´î÷ûf¾êt›Â´ëeŸúcM~¡õî»5RB÷é@éâç&|–÷i³— ìºVåôÙNëhQGÖh‚"uæ£@Ô‰#ĉʒQIǤÈáÍ£‰&Á“Å p˜\Rc$ÅøèõN€8S¨™IÈŒ†‹+…¸†‚‡ò. ‹ÉH=äL’ŠSAÐyµRJ“ÒÍFF'%—z"…¦IÀ1pP¦û+1‘‘¹» ^ì¦ÉX@¸o"ëàwv@·iΧÞò‰t ù|”¨sщz€˜ƒn‹Å´Úw.n Ÿþ÷¥ï}{˜ÝT ÿþ†!¡2ÿ¥qò%'k ;¦þt®Z>ó"eË?ýpªî¬Æ'fdS¿JWm¹[™Õ¿0œ»M«S1G¿ž1Úf‡ÆŽÖ^¯+6‚ÑvíP)Æ+õ^:1îÌO:¦fU}__òxŠ”ùlÞhe/Nñ³XüɶÅìø²0á±÷xQôEb®2nåÉ˜Ç ÅÍøÈ\ÐOdW@$1<1:MÎHFx…V¤ËJžwDà´EZp¹Îc|*ïÏþã+ >·8Öv„«kAàðH†m +-ƒ©ï"c­”0xÉ’?}Ë ÚñEm…DÊå.n”Ø­T«ÏW ,ݹR#™Pž:?d¥G,9Ýû»Ýd9½gsÞ=gè|ò0ÔתÈxWwZc.L;ž•ýwÂJˆpÅݯ÷ÁéŠè>3-cF*‚äX­Œ^³¹`ßÅé7SoÆšLϨzIÀ¾*£±YM°\ i ßy›—hR¥™ímäžIěޢË]ôÔ•‰úA(ÀT¹‚ª¾Õiç3FØøíÄáVÜ5ä÷Wpœ–N}qš/‘¬ *ÒŠV½ G[$d´FËh„ôJÄj¤ÔšÙ!‘ wçc>ó÷®L¿â6é @)R÷“qØãÇlšðÌÒ­eƒ&ôtí©è¹hrÆ[ð ”|xŽ>t¹MnG5’a¥ÓÁ~qdéæ/ †¥B¼%†ê«ô”´ +î“#ò•h6äh.`ÑØ cd´š€Ûnä ©>Í’q¤‚c“Ù%¨Ð<‡ûÅÅgŠ›Îø»·/2‡a râ÷,hq(ªóòϼ:o _ÿHÒwÌÈ5t³±øx#ýçx=œ;sJ˜úmC™ªLmߪËýQêRÅQS#NÝøâ‡W?:@ÓÃöþr-Ñy蛋c>þÏ潃1 &®®³Ö 7+á®X{ÑÀafI5äqžÃLhïúgD=ÕËáI}´|Ãf¹³øàM Ýoîl×ÅEÊÔDcÊ@0v@4{ÿ)ƒ΂ i”³>zºS(iÔž­L˜Xšë¾‡˜ú´qåPD˜.ÃñFŠsjGë0¦&žÜF‘´Å×  ­L-¥CЃA±ø½iÍ`µˆ£Ê‹6h4íÏ+äA>V@ðŽßô8¸ûÎzW_6jBêpõß5l;sñüÉÁmK5¸À×BrS,T½¶*°mÝÀb::ÝܽZËDÕmm9§ò†u‹ï]†± èµ±²dØk—í,÷•çyÒù•ÎÁ´Is}amÙé¥ÎÆä<– çÑä÷9z±ÓJ„ØÚÞMH@%³ÄáÊ„±*%òpŒNžr’‚ÏEe<û6‡¡:F‹Ë(è´T ÷‘ÙÐys€—ˆ…‹ÉàÊwÄÿ3¹Çeí ï…žZqÅ|]ëi¶™ñþ‚åÅÙ]¥]*h…)-o¬çå•ùT³Ï&ä—>sSEÒèµZ¸j̲W6Y¯çâ¼eÅøI$f‘=g[>‹­-TàŠïƒO©ŸA¾ÂCD+>]š~±§U +ì¦OBº Šsr!1¡³pÍ·· c\j/x¼â|¨K2"fâ!„¯nVþf þÖ«ÏüîÆ~‰þ8À/OÑcsR›l‹§Kè¥û“kþüÎõO= óòŸ\bRì…;:Y™†é«·±§5:aš…û%B”ˆ±JvÄb2’6¯…Q‚'"@UR ÒdšPlxÓ„bŽÚH“Š´ u‚öÚ‹ó¥JÚ &Ì‘b­»³'b)®q‘Å„¦"pƒÊÐõñ:ô£€ÎÓ¯±GfnÞ6Ë‹‡³µõVx«Ü.xËöåT¥tf§‚ˇ;5A-µFJÍ%êd´¿ªJóáV¨Ž}mäîÕ|ÝÌšwC+/ä×&‚‹{lö€:Ü?^2#+©Ð ‹(EkϨånä•‘Ù® =ØaL BAê=Öݺ»e`ÏÚƒOš%¾Ü€ÓÄžíˬU‰i%ç+6}¾XöðÌvÇLê.9½øÁV]›F/Lû«|NµËç䟫ªÍjçÞD\­"?óŸOÉšrÄÙ¯öضÎ*~¾ûðµÇñ;Žñ+¶›8/Çq—¦uœGCÖº‘«š,iSuÙ’fu—´s»ÑE£™²¶ÐUBÕVJ˜ª +‰il0PAP´1 mšÆC ñ01ŠB4UÅá÷];iÅ Áp“ã{îw¿óÝsÎïœó/îéh ÖZŒÓ6(:’¢¡Û¥—µ= á­cP¼1ôÕ{jíc•ÄÈ8ÑÞÃÊ­1‚+as¬ŸpF٬ܳÛÏ4¼ÕBÒðTÛ¬H´ëÔVƒ3°·=²£ÃWØsŸJ_{àÓ3ÕÚ^ÉììÜ•K5>3õÍáŸ\HV³Ð–>°eÀçí6ZíÞjÏl_kóÄxràñä ½qw{Ëìu<{ã}‘Ùi§}ìì]û³°$ÉGñtS-s2{Ì­ÌŒH²Õi,z¡H8˜}#ÀÁ@á´–[å¨që½1|;76^µçm‹ºñE§éÌöê—MÝ=ÎÜ®}c{÷Ø…)üÑoŒ{¶šWj—Þøø=›Mám±¡¹ h”[[•âÈ“NIo‰·’Xáe&…ü Ö¦³Gô½¬k`^‡®-*$!‚ŠMÞZÙŠh±ÈÂqoǺÖÛ±r®„Õ,ˆTúž-•“VÇz… +mœ¾ÊE\é~±Ûß6¯·š êLÚøHnÊÛ o6-¿a‚íá¾ÇĵK Û¦ØþL‡mPqDÃb_éÊè]ûGY,‘úÐå~ZzeÛ$šɵ›âïÄmèÀ"i—-¨÷ëëõUzÒÕ»l&ƒ¼;¤°Æ‹_­èÒyÄD“j3 +zâ„wÙÝÉN˜â(;\Ñ +ûzê‰í¶¦ä¥ø÷Û;åícžXÚ­ÊÛ’‡ç“‰&ó®ùIé lúrK½Ø' †¥æ—^ß6ñB硸¹eP’õ¾–‹¥?^ç:­Ý”ßAô'ÐÕ4ÅÝìÖºˆ¾ADOc„¶Z=ÓëÝuN‡ÝR£ˆj¡sò–ÎüÂé"TQ|½Që©ÕbM8¬–(Ï'k4‚i¹óŽ¤5Þ~¦)ºHX…Ÿ›Ìßñå‡å\co±Ø»9j8ÚµÜ=×׿ô.ë8Ÿ´K\y‹Û0¨+=Í2Lû³ÒY6r¿¤Ú$ÚÚ>_ºüíef;sf­R‘ÄG`Y'µ§ÃñV»hmg1Ý­ÇéJ ù<.»¹¹*#ÕµnT¹Kƒºð{§%µöˆ­b7…·hH^þoçY2dë¬ï\ OÆ|1Ó“÷¶f6]=Í!å%sƒ×=ð±Ø©PS Æö÷ ž_Hj‡z¿Ôöìgœ†ŒÝ¼sf«¯ëPÃ`eÇtâéÁP•$g$‰Å^ìïä–¤J-â*â(IÝéÖpÀ*†XÄo›kô.ÞÓKè±âJÀ몫µÕè5ŒªvG0©»lò·6¡¦+’mÄ—ZˆÜŒïw¡ +<ßD˜zöëêš²;3a§.> ”~íÜ´m±ÖÓaú⊳5*î2ÚœW£¯ôÞðå‡Fk,7üIÙ•Ë /5ñ¨N¥öT¯×cæ ’¶Ê²gç_Ï~õ—áÆ]e„@õç²wî«Ùò‰ZúàUjTNj†0Oƒ}µ"!ûJv"å9¢› ÊÉ2Ò·]oknÝyŸ® 3T`?¤)ñ"eåËtU£¥6LŒ/ Œ×Ò¼<Æ4˜–)ɾEKÂkÀüqÜ“âW°Ö Êâ9‰ûžg@E<çÅÓ”gïÐ +¨NFaÂ:üŽÊvNó]’ÏÒˆtž¦äå7i\A7ðÉHB¬½²g)'MPA±àÝuõ}AšWïóò0z¼}Jz ú?¢ÚU>Bé·¿A)éY¬1C—°–WˆÓ„|BÂ%º +§$l¥ ¬Ïu> j g¢,ž¹ ^ªƒŽ$, +ŸÂ;|W\…\ +sæ!ƒùb þºB½ÉA6©©£!î)L)ø€¡¯3ì"î× ß[ðÇ)á/Xó_÷“Ê穽ÇUÝNã›)øá9šùûyÐ%WY·¤%:/û('h™[|•r  ò7¡ÏªŠu~Îr<á³`¼ýùÚ¸ÍÏã»è›…í#|]¬÷·>-ªòçñXsŸK×(WÁrœã©b8 €§r2˜«âvÆ9–|îíXò»Š'â€ãÈqƒ³CUæ2M(Ç`7H¾²š?á;KOД²˜ÂNŽ¥j·õ4ô S†û òñ ãþQ‰ë†Ý÷•ŸU,ù8ð¬Ä—MÁWT —ÔyyM†ršxn뛈íWA'hº•×qo¤ÖŽÿ€ž}™©©x¥N4‚Þ‡6ïÂ#?B$~yŽ­T;B¤sÎüsÒ#’«æˆ ¢j‘ÑU¦šú +=‹LGˆÌWn‘¥BÖÙ~Nd¿ðï“ã^¢Ú1Ð "'"µîE"×q"÷ï‰<¿"ò>†Z×A䃾Où_' +\% +ÞE-SƒÙð"Qä Q%1ú¢MÈîÆÅÿÓÿñ-ìm:F’šk°:ÀÝ “ão ôÙÎL•Ž‡D²â©ÌKà*¼|w…W@#˜É$¸àÏ(B³^ #=YáEŒ¯Tx ü÷*¼üj…ÇšÌÒ÷`æØ¡iÿ‘¹»ççýñT*žÝÙ?–ˆNÎN>\Èf~¸!ê£)ûÑ4ùéÍÑÝ4??ÅqRKá7K;©ŸÆ(O£Qš„î“tóS²<¤äîÁ:üÝ܇”ùoÎË­}^þWÚeè‘:ííÕ©§hª5…æY±XÌTÇéñ+â–G½±ØßJB$^ +endstream +endobj +239 0 obj +<< +/BaseFont /TRRBBR+Wingdings-Regular +/CIDSystemInfo 313 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 314 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +240 0 obj +<< +/Filter /FlateDecode +/Length 725 +/Subtype /Type1C +>> +stream +H‰|P]Haqÿ4—5]§l7v>- +ÿVÁ,ÿ +,RsUêE›Ý™]‡tGg×ÔH}XmSú£I4«—2É4ÁlÉ +‹¢2_bñ¥@AŸ$¼³~>4»½ôÔ}8Üs÷ÜË% uA’¤©¬¦ªº´<ýL‡È3l¥(d l‰àfîE6“r¢ZÞ¯§pخۮÒÀû8XŒÿjI ¢Hry­DhVf] ^t$??'#Œ¹ÌË@9ÙÙÙÌEE¬`ç­Ããåš<¨ÌíÄfAd¼kEE(áA"çáÄKañïEˆ÷ Ž÷6p"bÓÅ+ó"Ç"¯È°\#^DBØù‡:ÿ³ +ñn¤d¡7f6¯"zãf³”!²Å!´º½"Ïy¬Y'mÕÍ:ŠXÎI(GÄ{ˆ}„FùQN4/ÉòäúòF€Tð`@åW˽¡Ê^- à +Àm ¬k1Âó„ÉÎ-ÝŽ¶.ÒCV¸V~M…;fäƒbr2U°ÛGÍ>~:ÿ†gNçùÚ ~š6ø@-—ƒšƒ$ˆ†$¸C‡(l®À©¸ŸÃyòûç&tBV”à4º«©ƒù˜Æ©%öúöoÑOCúµÑ¥i³Á·m¿”- ~ T2²Pø¾Ö…—5ýƒCþaó÷/îÜŒýtWòÐm4ݳfHù± ÆÏm¯\´s¢jP¸ÝÓã¿j‚h j ¾¹k%aŒ˜„8 AÕ`4®‚ÓGm­,>èøP1N÷ëŒÁÅ™{ 3¦ÂOÖÃy§’Ï=´½uYútÆÕZ¾îì1Sòr)¨,7V¨:ïÜ»ÀØÔøý¬}ÒQnªneìc°_î¢&‡õÜe‡p…æFZžÌš¦†ŸOZ Ý’Ü)Aª$I7%-¾ }•tŠÔ.U‘HÑØ)¥˨½^ã×Ǯ킽±kÃz½\ëÔæ0TQ +endstream +endobj +241 0 obj +<< +/Filter /FlateDecode +/Length 1532 +/Subtype /Type1C +>> +stream +H‰|RkPgÝ%dc+ÝŽ¤K1ëì®CE­Š|aµ´¾ˆ€¢•ÒMÂ*áLBˆò +¨4áK•B±Ž¨QZAœÚM¥2õ5V$øjÕÚigîâGgº¡ú«ß3ß9gî¹wî\óöÂpŸüaäÊÊøYkw굪¤X½nÎz~{VšJï1YÆoaŠ…ÞC¯^½RJá‡7á餶)Ä_Ì Çï<ŽÔeŠµÛ“Ü{ Ïö`è8†Ïæ‚çÍ›7Ž¡Üò$šçâvŒ|º[¡Ñé3uz•‘O +â–§¥qãNÏx½É#þ;§5p¼Ö˜Ìë9•hn׊õz>‰3êUI|ºJŸÊé<Îè¶ÿiÅi381‹Û˜¡õ°8£(8UFÒ\1E7ÞE£ËÊ0êµ¼!h ;3yn—ÄoÃćc$6 { Á>À"±±Øl-ƒmÀ6bc›°ÌWÜ©(Ecjìkì‚ózÛ+Þë”ׯ¿$K$ŸKnx3ÞñÞg¬¥]³.\Äwº$¥Þ‚u4vÌJ@úžBKá )¸‰FÁÓ†f¢¿Î€ÀÞ‹‡GXÒVx –¸ À…·Ü‡ª!‰ U¶¿¼ºN1¢£©ó‘ ¢À‘™0óÖ¥CÕ'˜\—4/…·(é÷;a¢-sQW*ÏÞ¡_4†Æ•°$j¨7 æì?÷½ +øL·ü Ì÷Ì!cf™üeûh8•j4¤¥7Nœnhl*aO˜SÄ;9,ÞIB6>è– ú¹GB²[ŒY4hWé‹[~KÔ¡¨)¯±W15­ßÓ¿_Á¢“nh“Á¢€s«Ç%n606BÞQ|WAThÊÔŸ(H®°Wx½¿tC’³G¨lggþ%d}=C7¶¶…Ÿd•uçÍÇ›º;Nç|É4ü(=”¹µ:PFE¬kýt8í55ªšôÔ¨-›ëjwˆó.+¼Ð?y y"<£Ð„e«~Fµ²õû·ÝÁêOå·ÒÎcû*kÙÏú¤VË.«‘NØåìa¡|û‘/°2ò‚ePíÙ“ï€rÝòA/˜©ÔEäXsŠó™¤µ:–^¬»ú˜…úÔ,CK©n>¸xñ즜›÷-‘Þ&¬-%í] +2«Ô½j<ê (Ï<(æ€rÌ,½OÀzÁ,KÌAG¥ò39[ò4Í+Qx.ÿ\Nûl8êO¦ŠUø~áSÉ~OÑʱõR»¥|O±¢Øºç³"&;1]k0ïÈÊÈËÚÓ°Ü¿Á~¾æ|KO÷ù!,xîDÌBg +’ ·eL¶»´XNN…³þdC0; Èáp4:´ÍqË!cêÕ[|^+õ™Øÿº{¢Ûîó$¿%”Rÿ0Ò¡æ +endstream +endobj +242 0 obj +<< +/Filter /FlateDecode +/Length 2381 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜0:;8Ý­¢˜€âƒ ` â# Ê°EaP˜…á¥Àòä9ŠDV" +*,q}…ÝÔZ×]ÝT%»{š\Sµ=¸[µ¿¶nõ©{÷œïœûÝÆ1{; Çñ¹›£vFî¡ÈÒ¨âÂ4êeÆÅ°¹8žÆyÒžwI!?Tî*^ðk¾n8Á›÷Ç]'æ`v8þìåFušp41)ƒ[éë»ÊÓ&½§åOnÕŠ+¦¥7˜ Þ§ä"²´Ê-œ¯Ö¤©5qÊ„å\àÁƒÜt +-§Qj•Íø§ÒrJUF’RÃÅ ÎD•p^£Là24q Ê”8ÍNmóüºÿÿ”âT©œ‹Ûžª²i‚QËÅ¥&x YÔÓUâÕ™©•R»Ü볈Ȭ4%·–KPîÇ0\XØ,sÆ07ûÖaØjÛ`É1l †)DX„=ƒa®Â\1†i0#ö÷ÂÍx+>dçaW"²分ì}ìËÄ ÄaâñK—0ßIVIK8ÌvÊ7]å__ÅévUd²çO…½=N@ºA¡¨Ã_Ä¡a +lÊÛ +É["vzHÐ ~ˆ²íM“¢q)Ò#G¸‹…S" 8jäÇþŸ/Ž‚ò]r–¦¹%.q¢-°q+XDVx@ áp”H@p¹î8¼…ˆ/œb¨·NDú§¸ì|‹¹‹j(9L±åPä¶Ð†Ú6Éć.ÝËþ# áÿ{xï¡v8¦›íŽÙ\/§óòLÆ#lÕ1TÒ—ùð!¿–â \Ä_‚Õ”A]°‡F³7<'`^Œýrí÷yyV¶ ŠëÔ!uþ4Ú6 Y¨­„wêjZY)ì*Ž÷¿ ÁP ‘¢ÛåTq×£Ïip»s7þÀÞš„ù2˜óCà Ó/÷³ Š^p´` ÁèÊ\Õ`n£{ª@s‘çÇ[£™ÍË6™ X)Š³è¦|ô¶Ü¢ÛS>Ôo><å#‘6šÀƒoþÝ™TÃ7£`Bú/‹Nkažà ‚å "„ÍÉ6bä\¶_#Û¼¶aGµÞDnkæÝýìÚ¾Ø&‡rÉpÓ[?Èîj¯ìídzvžv£Wîd!9 Íè[%겨U³‹æÃRÞM¸ž~Ø*Œ[!êm§ô=Ït4Dýøwpx9Žf}Éút$ž¾ ³Z›¯ß»z(·é7qslxܽÐ{îB€ˆg§[%ËT):…\n±ìc¤=& é:t vý s66’¼Ñ¹øœ±@~p +{…üoVç`:DÜÔq½qˆ¯ËÔ³Ç$h] š± ¹ÈÈXßÛ~¨»ÔÅ”d@õ^1Ù¤U`*02i…ê¬t:EWßÞwÙò•þd€×ñ80¯Ÿ3rð†­äaØëLTÜ›‰ÈÎ뇆h À~>cÁÃüñß#­Ý¯f`Aò·ƒy8Ôb<À@tR•¥ÂbºNZ[»è[ç£ä,9ொÿ¸Œô{˜!€÷wðñe°•*«)oµÊ€G´"w$A+ÞxBàØ7-7™ ˜)>²gÏÑ]tHø™KÅÂì¤T{™e`˜­Ý¡f¥FJ˜ÿæBІwÝ,º™àçñŠ|]¼Cl$zÓ÷ýœÜÝZôÜf|ÙÐce͙ħQI[#"šRrkûïçÞ£?ª½2ÊÞj˜x.‹„œxfî+³2HÎPSÎñ|&­X›™LG¥|ý K¾~zñr_çY]R%SZTZ ´jÑñý·ð).ÐBgÞ ŒÈ y1µ›ŠHLŒŽéRŽŒv÷\aJ’º#h!|*Z?;â ò©h$'¤ð›ðJ¸lÜÚŽÂ7C ö€±‘ ' KRcª=qŠi¨¨ké¤{#Yd‚.HªKëË«™³•MmtocR(‹ê{Ÿ\CŸ,HN-ÊÕ0é¹™z½ÆÁH è¢ÛBè5{c´Yì1‚(#Âkß"“N +~…ņwì&…™~eÃGO CR[zº¼Šiª¬oé¢ûš“ÃmÕå¶*´â)’øîŠIÏb„Œ_Þ#¯ÿf|fÒÔ) ¼ T×y…>q[„V o – ¬`àƒ? ÿ¢¥‹AËÙbDR×Î(‚>IÛ¡}8Þ<~“•r°IXgС?; Ž,}lŽIjJ«ÍULoU÷™aºé´ñx-KV¿„,-Ë-2åÐq!šõé¶^ÏOŠÑr¼ϼË_& ˇÙÐNøeXß "k ¥¿4vä ž¿}Å–<Øõ£‡mM9Õõ²æÆÊöÞþÃY¦ ¤âºÛkCiD­Ýô![~1 0•Ãpö©Â,YÖáeìÖæ5#Ed>,Aïëx\æ> +stream +H‰bd`ab`dds‹ðp÷ Ñö­,ÊLL (Ê×uÊÏIÉÈÿfü!ÂòC†Gô·ùï>–¿ +Y¿æÿ~JðèeB LŒŒ·ž;ç5¦g”(ZZé€H0i®£`d``&MSò“R‚+‹KRs‹<ó’ó‹ +ò‹KRSôsrÀF+¥§•!ÎQÈ,VHÍ,ÉH-RHJ¦gõ¥¦(”%¦¤æ&e+äƒd¸ix¬RÈÌSš¥š— â—‹óRô¦äƒmIÎ/Í+)ÊL-ÖÓw ©,HU°PHIMcF-FF¿À½Wttïýñf/#TÙËÜÍò£ãgÀŸ¶ï}¿Šþ¶û>™õû ¶ß +¿ˆ~qþLbÿÃf·û ä³ýØ/ +býñø¾ÇñýØßðç»ÇwÆïÊßy„¾_ý®÷[滑ð‹ëD‹7^*½/ýÝòÃýïì|ŽÙΔïeþp{ù¦ƒ¤žØ]ù-on[\”"·ê7ëìe‡>½:/%Ä«"¢K>à7ãI6áçNçyG%§Úøú.Y Ï÷}ゲŸfåŒg¿ë2Ÿýi&ú×ì»îO3v¾úé?j§ל>}úâél¿Ó¦_˜Îª˜þ],ĺ1SnAR<g7÷w®ï:ܧÎàá0ÚÚõ$ +endstream +endobj +244 0 obj +<< +/Filter /FlateDecode +/Length 1909 +/Subtype /Type1C +>> +stream +H‰|T{TgŸ!Ì… éDÌpfætm« H±ÖŠE•JµòpKÁLÄ &A1 ¥ˆAÅ*ø"¨¶ëcuEíi·ê +X +¬VÚݵwØ=g'ôŸýkÏœsϽ¿{îï>¿Á1O ÇqeTTü’¤è ¸B]vºjµN;;^½9;C›«r{yÁ¥§àC£¹¨<Àó¿×pCÿœr3@zÛóÀñ†–hóÄè¬üÛóç‡ÎrËð 9o2!Ãù(•6CÍÇê Ô›õü +Í­.O«K/P«‚ù¨Ü\~‚BÏëÔzµÎ௉ÏÖóêì‚jŸ.:³²ÅxZÅèÒUêÍéº^ëöü™ùRñÙ^äâ5Ùn+¾@õ|ºF5GdÑNd٠ݢ)Ðe«õÁsbâ +óÔü;¼J‰a¸øa†MñÀ¦b؈ca¶Ø‹Á°X ‹Ã°U– Á’1lª8]X©°Vìî—á#¸G˜G„’X%=žÓ?Z£Na›Â‰“çºÎ\cúÿô瘻d!š^Œö_¬yjAñ? aŠDˆ{‹.rKólÁÅ sVÅ{-‹M}MQ¢ðä¡Àþ˜Ø¢ø#䛜Ÿ™ÃÚÈCƒwžBÀ!¯ò“GKk4oÜ@¿—ÑÛoç—»öU±-GÚNÎÏ€rð&|È +LJõÖ a´Ã"* $÷¢Òp“쵟Õ ;2ïPB•Ñ ääöú¿žnû³æò'µ^åÒ[ǯ_P^3\Îld/¦®8ÈDÇì.^ÇA—»NŠµ?º’µ|mÚ;Üb’Úo~oë£á?÷€L^$¬U”4ØÛ/)!Zú*õ% +‰\iØ’ÅžX@Ôë®édú«“r¸b)ZîDx’)å]Q_Eÿ|ë‹SØrR^T™HÈ»L°ˆ.vXlVv£9+'™QåëüöoGìÕo~kÞ|~wÄ%˜aŠ¼(ä]ÅÓZuáký-<@2K8˜áŒx‰¼™ÅI¹)›9;´#Ùx¯˜äc{¢} r8G»Ê”íg¿<ØÑÔÍ¡‹¹[Ÿ´”C§Å¹&…à°¯"ÞMZ§6ˆÏHÞ±û!0²<Ý™¯¤æ[žAß3¼ &?ÿM'hcÓÕí× ïÝ~Æ9dt„õŠ;VPÓ¨l8Qw©½Å´³Ž=1@ÔhS&2ˆˆ^>—s¬i]û÷M^ߎnÛ¤ÌÑoILKª=¬e)4Ã2 +=CøøH„y,Ó‹ +¥¸Ò구îøÅ¢¦åì¾Ok9ûa3›l&ÅÔxƒ˜4„&'>óè2÷äün‹$ˆ­vÁD#ºLn·íØcfswälLfbó¯<æ VÄ[¤(ìqÒÝêØ2R¾µ"ŠŒ´·Ú;{”ÔþR˜8Ax@(’ç¹`Ÿ‰€?ð¡`"‚ŒD¥„¼yGšYmÝàe#­­––ííïA©?å 2¿ñJÁ$©tÆŒÇ;»J”»m»J¬ì¶Myš‚"]a¾ÙPrúþ{»u¶÷tw<¾ ±â£ëóGþä"Tmͱfk§ÙÈ]§-Í–†08èOít &¹\®.eºº¤"´ÕÁ—}ïšÄÖe¤ùL*õñš 2ï¡*áÜkÂú¿ Ê®Ô +endstream +endobj +245 0 obj +[239 0 R] +endobj +246 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +247 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +248 0 obj +[239 0 R] +endobj +249 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +250 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +252 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +253 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M H`I)äКöd…FŘCÞ¾]¶PAç7ÌüufäMûÜ€x+; 0j£<.võaÀI– ´ 7/žrîã$î¶%àÜšÑ2!€Rp ~ƒÃEÙŒ¿{…^› ßMwÞ­ÎýàŒ&@u +GºèµwoýŒÀ£ìÔ*Šë°Hó—ñµ9„"úy*FZ…‹ë%úÞLÈDF«ñB«fhÔ¿x•TÃ(¯½g¢Øs³Œ çÄçÈyâ|ç"q±s™¸$~¸D&ÃDÙD&ÃÄÓcd2ÄUâ*Ör{u¯Š†÷–åê=u'ÛÜÔïŸà¬Rí›ý +0–Pæ +endstream +endobj +254 0 obj +<< +/Filter /FlateDecode +/Length 15685 +/Length1 37859 +>> +stream +H‰|V \”U?ç{Íg†‘™>>ø†TÄá­€€â«ÖÅ-ÈËŸ¤R>Ö4Ídµ¶-3M 3ñkjêú.+ßÌ„ì¶mínµV›ûÛ6˜Î7 6þܺ߹wî9÷Üsþç»çÜoÀõÀBÁÈÂ>É… Y»Hâ¥>¢¤º¸æîfõËØ€¯/™W+ž¨œ¾@PtÂÊk*ª÷¥0ˈo&~XEÕÂò¹¶Ïg¨€%c§•—N_°¢ˆÖÓ§‘@hâò‰'7­ºvÁ’bkñMd#¯jfI1ìO¶Ö|«ðÕÅ j4œ`C2é‹3Š«Ëúj;ñ£ SuÍÌ9µ¾ý@k Ç•õšÙe5Gз‚øÛÄs¤ó.ðôó5ó5IÎuþb$cüJ0fp¾bñÃ\ïø SØ×ÐN<è_6ÓÛ¢Ú¨ €Ø…Œ_çþF‹,Ç *µF«ÓBBÃŒÝLfK¸µ{„ÍŠc¤Ø8ÙÿPž½z'öq%%§¤¦¥gôí—™•Ý?'7oÀÀüAƒ‡ öð#¿þ舑£FŽyl츢ñbâ¤ÉSŠajIiYyÅ´'+§WUϘY3köœÚ¹óæ/X¸¨î©ÅK–Ö?ý̲å+VþvÕ³«×<·vÝóë_ØÐð»›^|é÷/ÿá•W7¿¶åõ­ÛÞؾcç›»Þbw¿½g¯{_Óþ>òNó¾{ìø‰÷Nž:ý§3gÏ¿pñÒû\þð£¯\½výÆÍ[-ï'­·Û€ãÊ)ÎfÊ"2a øP…F´c4&a&Âaø>Že8 —ঙ9Ëœg¼lû»ÝÁ6²û؃ì ö4{F4‹61J”D§è3Ålq©¸MÜ#ÅlŒySb$A +•ºIÉ&EK=¤^Ò0©X*‹ebÃbcdY/‡Éf¹»ìãä9UΖ«äzy¹¼J~Nn·È»å&¹Y>*Ÿ–/Ê·œÙÎ<ç@çg‰³Ü9ýãó)'[A=vÇ(ta?ìC±‹pÎÀ~ìgûÍû° 짻I´ŠQôcï„}ý}Ø#¤¨ö)R©»ø Ø îa_ö òMgæ=ìeÎÊ;àóù> ä[¢ïFꚟ“Ðgîˆèh¯kŸÿãÝöJêSÚ'ýèiÕ^Ð¥Õ¶¢mcÛò¶ËmkÛ +ÛÊoWÜ®mÝÔºµuM«·u‡¢Ñú}ë¬ÖÉôëj…Ö°VôVx˽½¼ã¼c¼£¼xó½ÙÞ4¯äÙíiôìðlólñ”yæ{æxª<Ó=¥žQ-?´ü§ånË­–-×[®tÖÁyXï/–•¾_Á­èÆC~é±Îþ`Ã&<€Í®aÓ}œ»‹Ç=¿Xò¿ÚpÑ’*XØËa…Mð9¬„u°^…Fx9XM5 †ø¾…µð"¬B |w`3ì‚Ãwð=l…ÝpÎÀÛ0J`=”Â(ƒ³p>€‹p Þ‡/ >†Ëð!ì +ø¼×à +\…iðøž…Jx¦C5TÁ Ø3aÔÀl˜s¡æÁ|ø;,€E°ê`1<‡áuXJÕYOÃ?á+xs1à@øÚ¡ƒª6Ÿju0Èá:ÇG©bËáÏð#q4Â^pãªå^8ÇaüÿƒOá¯8'P}?©N¦àdhÆbœŠ%X +ŸÁßà&´A xè›rn M¨…ƒpNÁ~8§áx´RÍ!F nÚ“°6`$<Ñ”qð‡x9À~ñ]Àá£Ío7$ˆ}ÜŒœ²úH”¸™Ø73Xts2ÑÃť"7+ÇfÚcÆǸ1v Xdͦ¹óÃÓÞnL8Ñ›N±—ïKæf/ÜAŽ¡³Í‘ÙlÌÎøN’œñáá$±’Ðì× ·QJrzFzÑܪ¨HQl%I]ö‚Éï3Ö¿”–ê7´tZNIV|Ü£N ¤ú3†4—‹(É•š–ä‰|d(X“”Æû-XÌ!(2Ÿ’"ͤr¥E|Ïmjjš350ú Ħ1q'–¡ËU!*"E§µh z½#LgÑò:×ñ4!Réyš3<é3È¢0Ž8†C†ó4•Y'èyA/hº©5¡*N`Y±$Ú"Òí®á‘‡Õj͈f9†v±~K,«Q â *uxH¸d0ºN‹²J¶ÕœÅaˈDÅU8žãXNÅóÝ *ƒ‚8FkÖÑֱϭÓéºGDdI +8 +CC„Á`Õ:úÙí.ó„pÏóˆA3¬2#p¬Š#w¬šSë9†ï H£Ru¸L¥6Ò–a6(ZŠ“Âcy6"ÑoTXž% œš<07þfÍ%9VJƒ†ã5 ¢k´ë´Z»Ý>¸‡3×fKPŒ)¯Ü¤ µëõF!‡À±œ^¯±Ú]VòsJl¾©œ=<«³êtV-y ¡}!L >ìÃ0ôI‹6†õŒ²l6…¬„•˜3TfÐÁ„„¢Œ‚A­ +UóZžÓðd›Ž‡Ò„Þ I4&J%”ˆºHÛM£Ö0Ê÷"Û×{3Wþ‘ñªàê°çhö6õcwØGa†©W£¿õïuÒâªÊÎY>dÐâ̬ŠÄôôڜܺ¬Ì*—b]$ëFæºbÝÈf d„U]RŠ)!»Óbv‚)£œ§Â¾7ÈxfV]nNmzzY¢£Ï´¬Ìц,ÏÉ&ãa¾2º ë@€U©âÿ_®´K!zÑlêÞ#Äi0„²jJs•’@Œÿìý#[;À•å0éìý"#û‹*a»2ÇbäÝH·oߟ¯¶I®2ÜUÕuëºtÝ/}ï®éé™îž®ééé™Ýìev“d×ÝD‰£/HÀ ¢Wc1QAðIðAˆ/â‹DÍæ%` Š¢ÔŸ|ó%. ÉÌúsª»«ÝYÉðÏߧªºªOý—ïû~ ª\(tÛ½i;”S®rôžXåd±q[<ÈûÜ}LñL!ÆûçÀ(9IzS÷UQTÕÓ4_¥ž.ÊôØËŽéJÆ¿û"/#¢Ðá—pã”—¾sŠûÂ)þ¯ïý\¸ Å\¿û÷&ð·[x¿š¥t{d÷â]’º`t”0…åá‹Þ´MÑ'3@ÿÚ¾R©V ±E9»s9C^n„áÕ½R­áN©T2 sÚ_ŸèšNài§ïñk½ÞóOhŠ^ß¾>ÃÁ‹VÛ¶;ýèúÚÿ?žÞ{øK›››ƒÁðãÛ<….æz6ÝJyZ»‡ÜKü/ÀÔ·f·¦£Ò’ +¶s;}ÐÅ*% ¼@Æ#â'Ó ‡¹¶—½po{ ›÷ xD +^NÒ™´))³V6kfm˜8‹¢&Kee[TE4 j¬kžÑâS¶ +!â®bÊÀ¦b†XñÏ—øÁ€¡Y% q¤ ‡?-Y²¬aæ!?Ô`AmbÄ š,—UîŸYYRŒ‹Ü.íCîϨ¢7¦¹¾K:¬O’9³Ñ—$>×-ÇP¢L‹6íŒé‚­§¤T‹zjýdô@¹\vgÔŠ×ËV õY«eöjœˆ§W¢(@;¢âFÓ¹å‚`dLh å° !,ˆ%W%æ¨lᮺn×)–H˜_I¯6“°1ö<=ØŽ‡AÍ¢b«,½0 .8Ë­*ŠR«×ÎuŠ®GšÕ´¬Äûå‚C þkÏku~µ‚¬”Ñ™@V þÝc"ƒÄd&j’œ_à&ëË¥”â•"Õ!£-,R¦I&Nf å:9X2ÈÈ“F^*QC‘êÖŠïmDýƒ8Ž-ÛZ »{ˆÔÆpøɉl#¦% (5B8œ$u¹ª5}¿›ì¸ž‹[¶:ºÊ +G9UÖ‚ù,Ã4J¸·¾éØ*èÇà~¦à­ši¸ ~§ÉݹiUdEñ=šDCß_±ÅÈq'ɉǺÝ¢@ͳ–´:®ÛóôîŒãÊÉv{‚m t“øS&4'85ˆX \ÜÇfI+êŠê0üÚšò褿ñ·0"=ÚZè¾LéÑ0ûØb›ñg|–šay} M&éÄN„qÊEGïh\õ:Y ±&=_‰©Äë± qp‘!̬‘ Ct ²!åcʾÜá< +Û¨à_"zA°BÜÉÿåö+!÷ǪhìôûŸÚ{‘ã"Ç=\mI’Äåp‡­øòYîÉ£¡¾ Ô÷ïø—1‡\ùÞúÎ^ò8¹ž·iNo[é ëÍòœH³ª_ó9dQ5æ`k†Y/K"çgù ‹Ésj¹ã8+îðz8>5a]-ê$vJY‘ ‘u;©­\”£¢Q‚(— ôƒ³‰ƒ¿×µêšîkL ²½ $D¦FÚQf½ +×Møâì$¼H¿™\h·Ï·!ZˆØcö䛊#+r¥_ÚØ»Ž8fÈ#2ENÉÈV©&,²CëQÕÀ'm@ëÙÞÚÙ(Š¡³A*3ü‚W”µFã|‡ m»eY5C^(ieCvÁ uÅ6Å4& øå¢é ¼ +š†>Ëâ²V[G®4Ã¥™ýOâfÌÇ©¼j™.$˓ע(LÓôæ#ÝsŸI’¾ÌʦG„Púç0ä´Ûí«›*C5³Š±Fœ©ñ¢cš›Íæ¸JàÀXãÄ[[_ÿØÖcßÝßÿ WV¼ýµµÏ]  rR1%QÂxp¡¿ýáv§ÅÝ`D¯«ªod‚<ä,–´ ±­j4 »«Dž’’â›{q%&ªgDú7ºŒp»›]—EÈóR€÷âý—üb–œûiÖj[ä)¾÷ ¡RÚéj¶X†­ÎœÒýÙ7 ÞõÒÝ·Ù°'QôŽˆ¢"È~”ªÓZmf¯’éS­¦iV´ùœ2—ù~!Æ‚Æ.óò«%î…R k‘¡W ³ZæyÀSÕ§HVÏJ +ŒúbÎgW‘y–oLWG¯¢QK¾Ö:Ójž®±…‚Ph ¢ÿ„ œ,|ºð èðü,3/×{Ø<+úÜŒ5ž¸½Ü”µ¬¶—AqÒ ï‘q~NÞ†€¥ÎéjµfA•¸YœD¾±ƒ‹+++×6׬×ë ¼­Z¥oYåF³y©_­®a:õ\oÒ©§®çq%­ˆ…Œâé©Û2 ÔjÛ²qP³éÀ^æÛ™®Æ}ÇišŒÞh;î´;ºÚj7Ã0:´ö¢(Ñ, èFmx Ã}qÅ^ñüQ­3Ånh‰³Èzà Ԭ! ‹¿V-Õ,{-¬mÛA»õknÛ4B5«‚,òð[ KZø<™/3 »Ìä>s—œºÁŒ<гH/”>ü oÈ¡£DÁ0fr½sæé~È?XÔ3ò¤$\ܸ€×l5[×Ò­+˜cýÁ·>ñ½Æ&f[ +"®i o{Ó,s¼cÙiÛ³ãäpø̹]QžiFX½Q¨?z´Óét»Ý§N=òÍS§>q×xÄl»Np‹»\Ù ü€êï5Y+Àêi¡ó˜?oqo`þÿ¿ Ô–îseòåãfÓ÷=¯rOð꽧U¨*L(Ÿ-ü;ëÎÇÂlÊè-SÁÂГÞ}wù{Soyn?X7íºa”L]Œ-S/ì·í¯˜É¹Zc¿æjÕ½zýt‹a 'ÌØÖõíû¾Å¸ð?à¾^ Ô¡ßž´Ó õüàHáþCþ_ßÝýÕî.¾;¸û.÷mL«1ÁŒûçBȽô\±l3’åâ6–sØ’ÙhKG³±viì¥o’¬b¤’ ºp.fà»çkõ:E=ÐJŽ €1‚T$qòKÀ’«±hãœY¸Ø¶5¨Xu,D¯~l‘ð½M“(SMîî¯Æž»j—|2´Q‘ +#—¦D/–¡«436ŒØÀ/1Moµ-;qÃv(ŠE[;¡ú/ß=äßæ_+¼^ø5pÚ r€9·œ6góÐ1Sj&Æ(F“ÎvŠ!ª³JF)¬{m’Š¥´H˜ ü|ŠÞÿÏ,³úܦ©0„”ûþŒi¯ÃŸirG :L‡j¦…šêh¥PcÈ„$-6!I$Yà³!èÄÑ?jó‰‰ÏôOIÓÑ»tŽ%OC +0½aZÀb.8Ừ%ËZñgL±Š3e}×úñáWŸã_;üÍy¯Öض®:îsîãÜ÷Ëk'ŽØŽ“¸vcÇqœ’¬]éÖ²le š*EH°}(‚NBí4‰×A‘&!ö­Bñ‡P¿ðqª&&Ú¦išx~-ÕÐ4©|!.ÿsν×÷ÚηÉÑÍ}|îñùÿþ¿·…¢Ê…V º$&`K¡»#=B_;òà +Ë¥žïMq¢ Š‹/ âhèUb+0AËh<ܨž +žFÁÛ Ø3€ƒ‡¡÷~–úCê=à7.¯K½\˜à‚ॆavÚ°ÉlÓ‘™õéäFu4ë «?šø6búßK»4ÈäÂÍÄÛ·R•+Áµçf÷š‘Þ*<I²Ô—o5)4º™§t΃$·M špˆ!V¶  /…ÂF) ÄúÙr¹ EAkÌ—/>„™9Ãa©ùá‹€‚ÞÃ+<¢ÌÈ +M¬—8bhL5ÉÊÇ ùÛ6-œB#†0±);ÌŸ€‡BlêÍGŸYž½„Þ5}MµDÀ€C*6ѱíúÂF6; ¯g<ïd¾‹ê*åþLÁçS| iDqÔÀÄ }ð:ó{TUO-¯lyžG¿á̃çè-ÖV ݈ÄÜwîÞ|ߢYfq„‹6/e‚ÁÉ€qÃ0¶,=;ƒkÜÒÜ,ìwð¢1c›(–b-³ ?û£Íþ&_k®xz±þdcv½0ÓLK:íLn˜*ƒ+¹4²Ú±àvörm±Öjµ®íÀ)ÃÈ®¤3 ¦º»¦˜ÕD°„àÉðj»ý½O;_©œÈû5Ã0EI¤9†–ß.ÃÊ +œv<ÖàO¨.Ä,Õrùá«ÍV¦ÐùŽ¦Sç Cÿ úãÔ'ôg.ÙŸ“:31êÁJ}$ÁÄsÌ'sådýH ‘[‹Úmd »7 x¢û–áˆ`p>†TDi5£¹eÇ)YQˆ®;/A`…n;ßʵü|¯D?¨ó›: MÀöܳÎ5 ‘(¿–eM„K²¥*ž +O– Ù*ÚvÉ€·±,¬<”N§WW¿ð¼ÛÝP=EµäýÚmyeùʹ‡¾ÒîœI«†$žÉw°®(ž†ñâÞ/…ÐHIbä¬Ò'ëÏt/^ œ?æ}µ‡·ñMô™ýª?JÊcÕϱºóCÏðFûþ%I7(m\p»°€ÌÚTŽµ,O#×¥øC†k'9| 9ý˜_ž4†C2†ÒtǼDg’£0üb ŠmÞèVѲæ, ].ßÈAÞ°K& Q6$à +€«[²…°«Ô&AnUG‘B–¡hcƲæ=¿fš®ÈÍ…j¶Äk.Bš¬ùÀªM¬=. +€?Ù 3œ?+S#B` Þ‰`3€Vˆ¥pä:#R0†Ð\€dØ0‡oöfMµ$]˜zØk赉0§–3o2JØ©Èø4<^”kÉŸÁ0K `EAP¥ ‘q,ìGˬ;Ü$5E’îoÁ7’¥<Ë–ºÍ…‰*³ x¶½”ÃfÁâû+%#¶=¹D)‹¢hjZÞ +;*Œº—J¥ÊÌÏÖôG8z’X9¨ûÉ›Ã÷`%è¥ÿWöÞa¥>PŸ®{^ÕÞ„Á£…9kµc0دEô¬Áp)ó|cͱÑ÷mÕ ¼¨5kC†›mtîM'¯i&@ÊkÌD#,…G·¦Ä0Ý5ÿý(@:¦wÀ1ý +S€†§¡Š‡¼è32Ìd¡Ôæp;‘ŠŽ¬qkE2I€„°kWz•v‡_hÄ}ƒY{F‡]{TÈש ïá]Q€c½á„8$~µËŽ8'J(öa t8×ÊæÝÝW¶¶¶¶··_ýliÃ÷—=0AŠ)‹„¹¢²¡ëE—•dÎuùs—kFãêù¹N:“å…ø‰æ +©¼‚¾z/Xú/è\Ó©Sµš?üÜ…—;kè|"Ñp¶Ÿë9y  Ô^8Öh|ùÌã/µÛmI– |ð%”áÊùCh¼ŸJ!wjþèÉ¡‹]âö þ?*Z‹±ÐF?°G¤¥A"ês*éÝÏ=üû©HC´uÉ!„ÞvfuIï„ï›t€/¨?3 ŸïV=¯žn‹lQ’UÉÒôYç¶;£é¶8í‡ñ‰Á©‰äŸ”€úëôŒÃ[8ŽeQ´T˜õ +A„nf.Nqô¡-@ßó ^Ó£ï¾póBqdÇ~¸Ó¤'tïý{'QNè[ì„8ë%òh{øY­C#ö#Â\[óG¬(ðg½û;º· \¤]žNÌyÏ[Î!ný©’´FP¸pШ¡€ªÂPs¦=Çmjœ=^Èwg0 MNÑ0 „žyfž‰® +gªˆ:X% 6xãiˆß„óýûú§ƒ˜ %(trð‰¥ž`áâ»ìf£ÂB|Çòpëˆt>Z࣯4øxwP.]9\¨É2 Í P5+¨øà.ÚQ= ²LÉ7° |Pd€+Í"5øƒŸkèÑ?Q·½…lú6F’*J2ž `[ á z)jò{ƒ74[’åðIèI¢hPô;Ú¥ci°ŸhÁ`ô˜ï•™}Ž !Ëã¡0 G«˜Aðˆ1žÎOSÓZa5—›¡ÙbÞјZžV†þ~HV“^´¬š®ºÎ‚­‚­²dê_DÌ»,kƒÏ”ä°w—ç&؆®'2³K¸àf=Š¬&¬Ž^#ç;XWàû¡¿š%œ{7ðM¤ìï’È89T“4 Çžu&Ó‘3QÙIUã«ú~¬±“•ŽXå§Êt1bž _ŽÀ‘DIw”„bp¶ÆùÊìÎ[•@çÞT`iâ·¢J©~Td-àÌà_qÕhx¬â$ºá¹DKÓÐÅ×kN¦¬&g ÅQ¢ÁÔ!Oâ*l ƒÔ K=€:O¡*ÆgÃzÃê;|I1dœ7ˆì¢X“ß×Óš–VÃ&¢_ˆ#÷ñÁÇ‚å¨Ø¡}Ö›œ÷öÞÆͦ&¡Ö½wGh+ý#•êOŠîs׆¨ˆÝL w,>\Ûtøí ¶ÑW–Žô½¯Æ‹Ï¨CÖØ‘S:WÂ0byýMHÌd(£€±ÑDj\¸7 hÔÍ4Gä¡g+GƒÛkèµÉõ½‰þ<ñÑjï½ËÁýàðÞÁ º §0hØü_|+UHm§RR…¿·N·»FëÃmgµ“Œ\–ó S8ª=ôâßè2l\æ©ït»ë››ý럒N¾\.!\[XxþÜÉ‹år¹R©Ä6kɨ•®·¸˜f`ƒ +š<Óô1ö·ht™]ëä¯a_àa[ç-'O¨ íÀ¾Ö,ØZ¿Õ¬[u(äs€ºkˆ:NQ7ãŽîZŸ‰[IÙùÎè@¶?iÌã ж‹Wf_6Jªzû£èFqŽþýý§dÀ&™[å +^s¬›(.WðB£ ìLÔ +tôQÅ߯.æ»Ø±néÿ¼–GÜ·rñ—Oí‡ÊÁV´ñ-Ïÿ<÷4˜xßè¨É£ ›"@~]¡·‚˜¥ªtéLúóB[ 1](fì Œùü¦eYLKÛÐ"ºpdÿn0¯ƒƒ2“7Ìg;„Òo§oqEžÆPÓÊu8ìnµÓ6x‘ÐÙ G3èøtûmvzúhÿ^?“Þ`<7ʬP"E™ô•žì+jªÑ¬©š;Zo®Oß%ò’` +/Bº\âTviÁ`¢LDZ0”(ù&–ŒÂhqañø^´ó¶=hÇLSж;è½üníУ½•žãº©/S,¬BŒ+Pw4•*§æ »Uƒ,¥4‹ +ŽŒMÀ—¢ÆTFz?ªÕ\Ûz"MSY,è§jU +ËÛ‚ÃY\\<·Ù4š=WºEª&lF••žöUþÇ{ÕÄÆq–áÿÿٙݙ]ïŸ÷Çk¯ë:»¶×Ží¤IÛ$´Q’@%B´… +Ez„ˆ@ªÒ•z@qAªPÛKÅ‘€4•*$Pqé UÊ¥¶yÞï›Yw×ÎÆ-]}wg¾Ÿ÷}Þçy^*_–Ìx#´’+Ç>BÌ´ö>ŸD ÞÎÜAþãU⧉w²7?’rñ_Ÿ}×!ÞtÎÆÜ^›ÇÔ )z ]¤3 Â1væþ3v%ÂÏx©ãR£Qû¤-sŽ"Ì’C<Š„_’,]óõ}í]»2S*¹®ÛÈ?‹nÕð4°0É)¤]¡Æ½ìœ ú󉙹ÐâÍÎf.—Ä(_Øh{5šÎeCc³¿ó›Ñ‚ÜyÝÊéš©R^òÆ—­Ï6Ÿë7·JŦٓuf÷9§§úñý[‚F²NþV‹±Š?·œ@_ll—ËeÃ4B‡ÃÉ‚Ç.91KrS•ÿQx/óõÌ+ÀIÈ™¹ÀÉ9¡d4fi¥$£¿Òï×5bmccuÀŸXâk©Ü9L‚Ø=‡}ÙD–ZvDÁO°¹sËþ,œ93<‚S0KV7rLÄ•¤yóóÕZ§.û0ï¨v(õ ¨ØÊ2Ø@ðž_÷0:|ÊÂ{b©Xzr‘wqù)ìDCHIÔ›õIIÒ§>;{uµ}*Œæp Òé¦}°×b¾ßêp¡à‚ÝÚ.•JÄ°ÑÞŽpÎô"O¾|¨JA°¡µ+Ð5;º¦š4®>ú¶5™TæÊjÙU„=Lªt \·5Š¥Õ Å?Ô¾·_MœhøÕ,X&ø Œa¼—UK–™ΟWų¶i´½Ä·–ÌË*‡“¨ø×Ë*x +×Ý|äª<ؽ7¡xc…ïlJÐT„ªÖ£E߯9ç«J‰ Š}P-efwЮßgîfvH¿Jû $%r‚Qäï&×Æ͈£†ö>-lÌðxotÒÔ8PPßx…Äk$™‰Pc}á€káIÝÞj?Ÿr5ic;ˆÚŒ‚iÅl\,–¢ZŠæjœ+xŽã{æ@zºî›„g&Q¿˜é8®/óÉ:íöW[¾T¯×¹Ö¾àÍàq¼¬È—e›9$MFù¢?4-*EMÏj„œ‚Á• K±4,—vïwÏ•fˆw7ÍÐuj>• æëš„ÁZíyÇu–ꥎíØžç/ÃvÖÍ +ßQØ28D¡íy3&3Þ¬ûKÊ-‘MR]:£ ¶ÈB>ñƒˆ)ËY*w¦×|KÏÌÎ6‚ XoPD4¢º«ž@!h ‹$ÿ4‘/Í(‹Zàºb±ëùeDSf¦Ÿ~T]—jww^…Ñ[«…M˶$^SªïÍö=Ïk3$”¾ï/–+¾ç£éèD¬ãR÷vÄSPptT“\.lu˜ÆÍx7ugŒŒ…ø ÆÒ‚ÌFaº©¢£Á³£z-^ä¤@$:KgÀ”CÒéryŽEÚT†DÙdd +ôÆCŽ`vá­„\Ó÷"扇s=*&Ð(1=ºO`_Õ1ãüæY^> +™ô(ŠÎvÿ0¬„Jõ½€Æ¨hó6ðïÓpÓáZßÊ|#ó#ê™>v°S6 °ŸpÕ±×Q>E‹iÙ^üîx@EUÌñ/ü¦çW"&™Æ +oèšÚ‚Î>KøÛîO§ Ö]¯XÔïâû +þT e¸ò¿Ä‘yÙZá½÷wïe~%¾™¹žy‰E8Eþó¬a‰V2b8ýñ`öƒ©¦˜êr[ƒŸÃAl»âyÐUÐIP؈0`+ÉPjÓÃtüˆÀÆ£WÐ ƒÎ¦SõïУ ½7®_Þ½?,‘%1î8”ÕÇ$~ÙØæ½›–PÕ`[kbb=ŸCu`7ß•Û!o²ÆT?zuJ–b–¹ƒ˜œÇM;cÑ>‰LÒÄfiò)½½éá]a§œ–ƒ´ŽFS‰ê¨¢~jBzŒÉ§œù¹³÷y=oZ¥l¸ËUÍKüŸêj„ÃLŸ ß„¤iËÜ并-«]œ,×…”#æYÄ&`Q“ƃàöñúYÅ$ɲÌvé»…?ÜžÿËD-‘yXðÎñ^ÛwŠèvþ]û„Ð5EÁ|Êþsðëãù¹#úÿmC·î|Ææúq-(s—³{à¬ïfæ2ç3™ñm2I¦qˆcéçãî2•Ðt:ø(^qùr­Vk47O÷ži4sss77í…uô1¤eQ>·9ßì{YàØlf««'o´[m<ûÙÞÖÍv»%üI¬”˵4Ÿ®yºR©T+Õ3­Þ5<&b÷úîÄEìþÌì~‚;  ë£Ç±ÿ‹qÚ™gÑhñÙÓG¦ª¤õƒ•ÔÏãqkØÖ 1øâ(}FÍÛvÕ[¸P¯×ñ•"ÁØQ«‹ŽÒ¥okY®ARef(%9¾Jš­[¯¹³9>¬ p +Åö|ÐvÝP§¢Démáþј½ù4v&ÉÈçÅe$×ðu»h¡^às©d4ñ)Y¥Óñ§é5Uþ­™ÓtK–ؤýbÁ¿8¨¥cFZâŸÎÀr¥rá‘Ö©R±Ú38âqd^¯„°Óv^ÏÜÍd”Aù4ÅXZ ekÜ´Æ ¢v 1Ñ0eà"h4µ±›C‘âû|Íæ<{Š_[*ÆA¤`áS‡ô*áö‹¢ÌIÖ.†aI\×m×”,™3þC®Ëµ¼~ÉYBŠ™3 ¦2#YÊpÉðǯ[ûÀ1#Û)ÙÜ I±.ó¾ï bÎ÷·»bnÅT?ÓÓL&½ýß'¢©^­žm¢OÂìÓÅhÎ9 ØcŸ2ÕIÃ2r¦ › ÚÈj»…逳 (º++J¥XÈoÍsKs¶¯V«¼s²*ãfE“†Þùe é—ã*W7~µºÎAµB-ÇÆÈ™áHM]lħ`”uôè~pRÞŽÒUJcÉH†ÈŽ®®Ww—¢¤ªŠk¬I¥„^åNO—Ééeõã;¬ÎÊ&LðÊ A_Ö<ô?PùâÓÙ!!SÛû@xyz yZ öÅk%ÍÃã#­/s\çãÇY¤‡ÍkRŒûk¬šfgÙeg—]Ê£;,»„W(Ëö°”mÉ6ÐB‘G„•¢Pb|¤6m¢¥1µÑÄ 6MERùǤi4ÚJ‚1‚)ÕÔhÓHƒÖ`€3þ¾sÎfÝ©þ%“û»sî½çñó½~ŸÎØa¦OÄÅQ;[XÍa)ã[¶TŽÁ¾«†·~ÚëpûKWëpžÅǨfLôY*n‰ˆ™Ù*ÚùÒå+Ö*Xã<¤&ñí Ùq•‡ÏŸ_ìgþm¹ÚºjŒI£Nטg_íÅ?jâÇšƒÀš* ™i…ßµ¥{G"Ñ©c”ïûsÚë:’©ÆPuh˜|8W:69ÆW$>$h}I$!Ù»7¯Ýá¥ÉTé·­sɼ(Ÿ`£àÀÇ÷ïN>LUgÿ´šÅYæ®È—c)h6 D‚tgÀ;ú´ ‚zNœ,LÂÒþ؆igƒð¤Œ¬n45¸ÁlŒ¢Õü•d4¦ñ U­bÖê?;(*Ôñ¥¹œ:‚y/ël"eØm×nÄ™¾Ž·ÒLUE Gó Q•ŒdÑõA[Îc†C@Ǻªqåm\ +á;fžÉ\׳ÇÝ åJïttÖ³µz DTKº«tÙ‡£µNnÊ–A[X!¾®G;XÊv>°Åœ¢7è¬cGœÒ»’y†íÆB¸Bê¾91Ì+ñfì¼Uç{`0ºlTÑ–"»Å›¢Ž¨³Î°ƒ±J4œH‰K£ +¢J–+º¸ª>FpÆ-ª,©duڛ¶&ÈP ±;ï퇴Á¨æ•Pȼ€´8vÂo‡%h߬¶uÙÒX…=Ê‚þ9TQ¦rÐtÕwV2Õq$lV±B¡# îsŸ¬Fµ´­(ѶÛwÀû9³œNãxh`ÙZz°U\ª/, v´ÑwûqÇf›Ü ¥6DŠ‰|,Ë~SzéÉA¥Xs$ë?-”ø8/ªó†Iµ4ç7(œ‰>ï%±¼—µ0’‡mÍl×öZ”Ë®â7®?Šõ‰&ßO¸ŽËòV¯`Ké‡t -]v”Ñ댠H€  xóûâMæc—LãÕ‰ÏF*.vU›g1Øf¡d2#ÍŒ¯T¥³®fipBST…Š¢íYå®n“Ž]2Ù¨fóIGþ¤û¨ Á}>uw…é +Šk85*I)­[Ç!Qêd˜uF¼TÈ‹»kÜW–"Ÿ.qÂZ Òø,„R+ßMé‘JS¬&ä’Ê +¶õÊI¨¬í\Æ?I‡÷ÿ@)Ç‘Ç9¦DK­6qVôrLÑ£ÖðÑNÊ\Øm7§/Ý*ê`£¶žö⌞¢¾/0m_àÙ¼T>öèû(š±`"†nxzå.ÛƒL9._þ'¡ptð1ÍjŸ˜ù˜>k~ÂÏiG¹WSéTÃAEV¶ ¼q3/g£g£ùTòö6¡²]e64íé1ÄN­‰œI‡´á5T!m‘æ„;±'0aŽ>Q7]I»*=›8$Uš2ÏEÇQȺ“¹qoXtíߎ—Ó M’‹ƒÒÜæ9©TÅ8˜¬QSšñ(ŠðuÌ¿”-Ü5BéØDh]¤(óŒð–ÕkŽJÀÒGõƒìžHæã˜YåÓ$"Ïyñ z ¢·^[V¯J\ÙJÁÁZÏL‚`4¾Ñ5a~¾quéQÑl¦î=ó5aWE!×7£,´6G l¶(~^zã‰æžl¶ÁJ4W%*®…pÅšbR.Úšu¡@Ä=ÄqÅæ¤Ä5.U s5™ªXÇKšD9W›Ä3Í`åVtZ+݈ë(pÂ…v8öÒáT! ¤4«ó­Z¬Z­§J`ÈVÄòxt%UKD²pÊþŒ&Up!Üq]°‚D*Uªå4‡)b°,;8ÎLØx&¦_äIÒžò5y˜öPõÒ Qƒ©ŸXSˆHðølF³âô›ør"šñžg"Ìøø—‰ŠÁÚß:!õœ1ϪªõìèmyIdÉA¬ŸÞ7=[”—®7ÊKo/ZDdQ¯xUüÄz:i QÝ‚†qä¯P¹£îë­©×éÙ‰dsÄZ^ÊÓ²šžÅ"-ÉTGæ|-¬ï7úÍý-ùE-–„¸Ê/Ѳ8ßÒßdÕÐEíö5ìö§ÔJË°ÛÐX75¥¬ÞT_ïß÷ÎN¤ƒ•ð^Ò«‹6§’¼·É>‹ ~c¾ea [>â¼át‘¶Å-ùþœ5ùWèuŽx•þ¤4W£ÞNþ×[­þVç“œòw~¼ƒ eÃøí¾vîÇŸL,ù;…å%ó+o*]”ÿ’ßFÓAXo•.Òsö¡ò¦ò0ƈÑcÄ3tÕ4¯jˆzh¾¸B60MÞI]Ò§Yô+Z*i Ð&¾LmÖfDŠ«”Äs +ÿ+ð|?ú·K€$, ´³y> ƒþ<cò<@49Ëú 5b­„õ0å ÕzéR=ÚõÖlàžï z1 –?°.èoòJÊe”’iD‡Öÿ e{C°ç!ªã¶’Öa]Pz¤`™ÿú¬Qg`Àº¿™¹náÿ 5ÿäI ; +ì¬Â{HXxçl>Oäî" +}‰(œ#òIÁ*ñ$Qb Qò]¢4¾×=E”™üU#Û¨Qÿ”Fã³D¹ßåû‰¦ÓŸ$êÀgˆºWÍĺ·¡='N4÷2Qñ8Qïy¢ù_ êo'Zð2Ñ¢DKÐoé$Zž!Zñ¢UÏ}bXãÎ5qwTc-d|‡èžo ½AtßцˆîÇ6®#ÚtŠèÈýÐi¢ÍÏmżcÍG°·'ˆv¾O´ëÈ÷D{°Ï}ÝDŸ¾—hÿŸÁ÷Cß!úÜé[¸þÚ$€^Ž@gC#£¾…[¸…ÿ!W!–E!†ªO¸JžGdªŸŽVê– µ×ɘ¶vÁ´]´çá«°Ãxê¦å¦-À«5m‹âô„iK¼?fÚ6Ú?4mís+öí=¸}ÿÈöGÚ¶}¶mùÚµ6®_5p׺•÷ ÍZ¿u÷Ö‘G÷î›ü¤rí¥ƒ´öÓîÿV +°)—ÄP $|€0„!’!€ÁØ!òdðcpa6µ"‰ 9@\trЄ  Ît†R°Xµ”È2CBùÿ`b;ÿ·¾U +endstream +endobj +255 0 obj +<< +/Filter /FlateDecode +/Length 3159 +/Subtype /Type1C +>> +stream +H‰|iPi¶›$Gb#¤±»Q@FÅ…Sk< rŒ‚\ÃH £PˆŽ· BV Š7¢ âzí¨;ÎŒ–U–ë±®ëÖ¸ëköc«¶Ãîý5õ}õêß»¾wà˜ÐÃq|êŠÄ Ñ4Aš­]Zf¬Aÿ¹27-#Ç)b9 +çdBÎg‰ÂÑ‘ï¿*D04 ÞO¾ã3‘õÀ\püç×Ëõ¼jÖ–"6$,l~°.‡‹ƒÙùóæ͇ Ùe™út-¿ÕX¤Í3²‘ùzCÞV¤ÍœÃ.ËÍeÇMYƒÖ¨5˜œÌÿÄꌬVW´Ek`Óxa–Ž×7h3Ù"CZ¦6/ÍÃê’ÿ#7ÿ†+V—Ïò¶ØÄ|“Š/â™F6-?s.oE?î%C_œ_dÐis殊OØZ e—°™Ú͆ó›è‚MvÅüpl6†}Ža pL)ÄT…a/Ä’0,€ÿWLƒÅbÌ‚ub£8…gâ÷\H——W‚ ‚ƒÂÉÂ$aðÂw¢µ¢KÄ<âñNœ.¾*ÑHvH¸NuÕ¹žu¸¥»uº»¸ÿν¤¢ö÷×k8ý® j…\ÍhìX »Ñ‰°_oÄ¢œÄØ>ñ‘2Žƒñ4Áõ“N 9))º#E%ÈîâÕpHKÞxÕóëYÀQD…××~Y)Š‚dpÅ`8à’nW1¯h†Íx/¤ ØLÞºxùsÛšvq5µ:5UsqÓ-FjŠó¼T*\E"µ-B+â +ƒXþ £`)Zà áÕV5š†X}LrRÞ0øÖ1àëøþ*-µ›FéÌ €Ù”£4 +$&¬ ÉaÊM‘ÖB '?žó¾¸&OD%6ñúDOF?ÿÈ¿šÿ Í ËÍZO÷"RÔ|¦·õ:u·={#cU©TÈ ‰C¾ôB¸˜{:Ì„)@€¯܇(«eoÎv‘†óM/)X +øSp®RalbÙß9Õ=ð@þfñC䲤¨0>Í›¯o:qºÙ^œ·=…‰FSî²7Ư’ÓŠ¢5QÍõ ŸŸ½7T‰Ã(œÑ‚÷rNŒLüó! t¡1rƒ²Î6øÉ+Ç/Ú/{ï!,É5©ér$tÌÂ2ðz3qx ·s”&Ç&i蟢ݭ'm]ýÙ±š¨Ò„51ÇŽä1yH.*=w¿ìqÿ!¸?2$aÎ$­<ª¢ÊËk-Û™?ˆ`?Á›ž +‰àñ h¼ VÁˆpúÑr{]™-ß‚\,ósWj$ÊÈMþh‚Íz†hˆ…Ÿ>òY1³³ é;ôÙô7DãÈõAï=Qw´î˜E‚"ÆüÉÕ…ƒý5LcÝ¡=ûéÖC­ö3ÔÐï×''¦nrþ g…@ü +W,¸Â§‚á’EŒÆjD@@=×%‚ñ´¥œ&x8 …òUñ„/Ñ|PË^Âi3 ‹?<… /bûâíÎ"=jo¸!ÿIý-A>3”ˆˆs¬ý>‡¶ˆe/Uy©kòÐG³`½¤drÞ¹sçO:º2ß•ŸÍÙ(×æç§Ñ²'Õœ’ìiÒeåæV1©õ[Zºäö¶K´´˜70Ôà‰·@ÌæKðb'yÔÚl9QbÛkǽaÉã{Þƒ—ü0 E¡@Ö‘ÈûÊO7ºœl¡w[Ì› ²RÞÙ¥Éækžu{m‰Mqœ?9ܳÎÊ”XÍÕ•t™Ù´m •Xtå +sÓÚqö%}]³¸éüg†8wfý†ÊMúLù#LúÏ·>^¿P^î`º`º¨A¯nXJ¡d¤DQ%Š +oŸÞn8ÜÂHaã.`¹`¾Ò# U ÙCVu U¿ À \š‡3wûú_Â49|–ô|YÝ£ +·#’úBQ]¹†H4…´8fk£ûIƒ¦¢àEQÈÕÆ”—ÕÚ*)Jã'8´Äi[02Jþ;"GCÅÒãµÄ5ýïÉ©!æšP$!ýÄOÇ^ a xóÒ˜Ãõˆ'ìm#n4—…gš–[{°DbGKñ{Óƒ²!㥔FÉñ@ãíáçò»ÆïR;éîuËêý¨EÕÎu D I|Çm§©ak§~|}¦.‚ÞHHû*øåáÇÏODóó œo'Kº6=¥`ý«¿ämÂ4ñ2Ú‘UZîp4 Þ¿Vº£î?QSJ\C8…3ç"÷™R‘ÁüXè(Í–ëòL•ÊnO§¥Ýµ@Ì0u˜ \z@êÑ ++@ Ëe +ÎâYÕléé•C¸&žEKýWê¿Î¡;XÔØ1x¼ŸºÓP\Â|#F_X‘Ûä%—¥„(? ô6œë¢w2ÅÁT‘¬Ñ²²¶Ò²“.Ø©ßZH噎¶_ºhÄH?˜Áá&2J‡öù£ä÷ä(œ·;&s)y21+&!¡«#—ÏFû‰â¹jp?=²ÝY–¾íØ|¢‚ŠÙ|lžiäQêeEcU½–/Зæp‰¹_­̳‰é™‘¾²,+oÒ™j±T”‡­¨Yƒ“n ®ý,úÈ"n’Hý¶ý1›™™”<–¾°8>yGp6d'p;¶“4;Ñ >½„¢IþÅ/¿èòWxâã…ÍíÄ$³ c”d´]¿ÁwXÚì#œ£#óõà QªÅÔÞÔÂ÷Y;»8Gg–Z@ퟡ`¿zýÕœ<]M_XSªÑyHgYÒ@,÷öÅäâ +áÉ8uË:Dš/˜ãO«è-ÌàwÎà¾Îºø‘Ì: S6SkS3ßem·q3Ý9ñ®êÑ®*\Ü¢ÞMI.¬À+Š™­»O ÿ3>q0Øjµ;Ü“,:á¢c@ÁÎàaß/x½ð +ôˆaïöÆE(ø(9¡xñáj÷ê’@ÄĶศ¹¥éÛ!ǘv‰-Â5J2µ˜›yGóxï<×Õj¨· L3„RŒ©±Fg¬â.Å…º´~¡ß"P0iN3§„ªè3Zx º`¯Û4„C¸û ÕL-W?ààðõ߅†3¾~cØãlWUK»ª»Ó:䘫ûø ‰¶+çlj±ïD¾.4ÄOœ²=æ+oÔU¨*>­M¿ÓÝ‘ÏÓˆÑB z¹L&A齑LÁº¼Å©‘r…QaíIƒ¹|áÍÛóÜœãsKÀLÀÊ ­6”s«íKø¿ö'(à E?!.‡yßà ÷ÆâËåIìvlfÍPÚ†Úk:¾\WY’Í]*½/@+ŠÆ8ò]‰„ŸÎ8û;ù&’)·ž& „4LÖTô—F8Žw²Zåa¦ÀŠBÄs‘€S$DÉ"Î’I(`&´iú,ýezR?¥›ÔN}éJºØ~p|ÝìrŒ»ÝGŽÁ3抙¸520Šmë¯üûù›ÈÎÕS¹Ÿ”åf!otDI_•dQ‚@I’ì‰2¤U‰ÂP¹Á;†Ö%O¾'-UáiTì¥Dï…Ô¦PÈkûd ûŸfÍLð +endstream +endobj +256 0 obj +<< +/Filter /FlateDecode +/Length 726 +/Subtype /Type1C +>> +stream +H‰|P]Haq\sYÓuÊvcçÓ¢ðßD0 DÝ +,RsÍ~Öfwf×!ÝÑÙ55RÖ@ÛVú£I4«—2É4ÁlÉ +‹¢2_B|)PÐÀ' ïèçC³ÛKO݇Ã=çpϽ\’PG$IšlçKΔ¦Ÿly†­…Ì¡Žµ +6ìZd3)'ªåÝz +§ážMûf¥ÞÇÁlüÇÆ"Š$–­Bƒ2ë®õ¡¹aÌ‹`~ÊÍÉɉ`*f‡l­^WïE¥§ 6"ããØ,T\W‡"^$r^N¼ÿ^„x/âx_-'"F1ݼ2/r,ò‰ ËÕ3âE$„¨ë?«ïAJ:íáÃÌæSD/bG”õÄK2¼y¼"ÜRÔr×FÅV—zð … á¶V´ái +ÂdëVô–Öé¡+\+¿¦Â3òC 9™*Øî§&?~Ã3N—ë\õ?Nü –Ë@MAè Iž}6—ãT\ŽOá|Hùýs Ú »¬8îÆjêEo¦qj›ÕQÓò 2‚4¤_œ7üëÐüK‰Ñ’J%“ +ß׺ñ‚&ØÛè7ÿâÉ;Ê8NÔòw%/ݼGÓö(Ô1i†”k`üÜüÊ=B»F*{…ëºÎÎÀUsè4P¤5øåöÅ„0bâ€=VƒÑ¸.?µ¾8úyç‡òa:mœŸ¸73aZ-ú”µ?ÿxòÙ‡¶·nKw´q©š·Ÿ:dJ^8*ËEÊî›z¢ŸµŒ:ËLUMŒÃbœÊíÔhŸ³†»ì®ÐÜ@ã“IÓXÿóQ‹¡C’Û$H•$馤Ť¯R´"µH¥H$vIóRŒeÐQ£ èc—·ÁÎØå~½^.L„êÙTZ +endstream +endobj +257 0 obj +<< +/Filter /FlateDecode +/Length 3343 +/Subtype /Type1C +>> +stream +H‰|UiTW®¢©j§rB§ˆv%U­@eAMp‚Š ‹¢3º…FÖnÔÆ J7[‚d¨ ,∢4ƒŠQ‚ ‹¸E65Ãg¼Õ>{W°×—ž 7ìQ«ä +uìŸ7*ãäê)#Ç38?Ë”ÿd&£œwïÞùpóxùaã'j±ÄLp|à™Glœà‘ [¼l™“ý”t™–nö2'GGÇié"[­ˆ UÊ÷h”Ñ™WLX¬:.V-OP*d«£¢dÓ™Z©Qª“¦”¿e$SidJUB„R-“ Æp•à¯V*d j¹B-Wï’ÅNYþwþŸP2UŒLà’Ũ¦P`‚ ÔÈä1ŠEKìt”°ØʵJ©qX´&pÓž8¥l©L¡Ü‰a¸°0ʳ$°y&Ø ³Ç°ÅæŒc®ö3lƒ)(Æ·ŠmÀü1ö5v»†“ø.¼ÞÄÌ$Ť]ĉ֊¶‰ŽˆÆL½L«L‡ˆ@âI d»Ø\\(~b&1³1;n6nng~Ä|p†ÓŒ„­3Œ +‹‹3©ŒÌþU .Èy-¢LS>Ãè?™ABúF+àÏI$CWi˜“yâIrûôV “|+=µCSˆB—(;ñjÈUC½2;Å2hÁo ˆ´ô¹òSõç4'#"Ôñ;Ã+âê8 +¹W'ãzøUÔFCQE¬%ÑÙ÷*‚:‘Äwf&[‚vHr´VCFv)éAsW–¬¢È&©Ì~¾ ~DÄï°êGMÙâÖf>…Yï`¦ô¹ÿK$[å«ÜΞÞ@TVªo2¯Îúzqúù«ÜÐrä´fݬ 1¥íƒïº@Ñg ã^ã’ç5tÒÙÛ ý 8>3¾þÖçÅ\¶X2ñ¨ê7îH <½Ôj[îM”n)oe×lÛ¼by¤7·ÕË@Jž *³¸ ¬D0¾•ÅjN(<{àî^4 +ª'"~žxŽ÷8òvöbtqÒ™€ëÈSŒT §³Åà ñ¥ÕŧËfç:•^¥’¢èéDºÁíÆQïidit›”£N"§¢*÷Vm~nYœË—AKýƒËŠãØÄuDò™[É} Ì™ø$ƒò¶*®"lKþF³O§Kå*ás²HJÛ ?tã¼vÊj£’¨?Ï-Kóˆ +6óöÞfƒ>’"÷q„Ìc0 ,‚ÄAªÐ(6ƒ,zÛ?lyenyV©Þ ÙOž¦mx«ãŠs}{”½Ra¨¹Ê<¾èàâ³’£¦õó—û£“-ëŸIzø“ãôÞˆ m0ƒ–Úÿ–ç&À©íÊ”NrîD!é)H.ucY +Ń5š oŸå(pKïå/öà†y‹qуlúÐ¥ÖŒøøMmG×ñcí˜HøÉï:{Ýß© +}ȬñIÿ{07ìMS^›ÛĀϘ rÖsh½5òUíÊÊMd)mf?¾ ª~XÄ»ó³hT*¨îŸÄÞ»òÿ CI¡’IF×ä©SŒ®ô{×a£«˜:ÿ»ÒjŽ’·ï=%þM¢b~dÀya$ +EßîMÜ£Ù?;~r!©*ᣔôBÕT1þ›o9y¨¬B’º_i¸ÌÕÖ•6·Ko%vžeëÃ|Ê–0ž›Ò¿–sÃ>tnQUNó²c‡“ƒwÈÜMö7»9ªN`lꂼ;`l$2ê#ÊŽ»äï6#÷LéL|‘ÒÕ¼¹Ô,GÜWÑvsTÚºû²ªšmû•80~>‡~Å ûÒ¹…Õ¹Ì3}‡ÒEºÂ?Äu"©´´»|óÝÈd˶ˆ•<ZHSß·»“ç‡co^\Gä%Ρ>ôL‡ôrÝõgíMɾg%MÂË>,‰ÞR¼†A»¸ÏµïÞ& +n<¢>ÜGºvóßœü6–U(X +æiûøwÉøý¸7"º/Üñä1R¾ùX°|ÂXþSçIk1šïíe»xÝmXÈòÖb*IÛ™™í@uZÖ€|H’Ê/³J¯Ñ]h”‚—øUø²ó ØÆ–ß×^)lb^ç{„qibä—eíÌ¥ƒgËš_zZkN±9¤$5Ï—Øn´ÄpP—–q ÝæÃlWžºñð’—:ŽêÒö*“x÷^Ø•lÙ? õ#’TøÌJbÈ}DäÞõmq½ `€ÿ Vs`›åú+šÉ¸FEq:¸á29(„Ø¡Ûª‹dÇ¡–.Ì)È>ÊÞ)m»p‹yѲt'1 ѦU‹¼CÛ÷²º£ºü|)µ)­—Çzñ¡mmŸÒZuäþ-ÌB0¸5¢æí\Y7Q Ùvl3ƒœ>Cšì~¶›Î”sT»¶O‘įè™Ê¸aªF$ÞÖ¸•F:ñùÄ-u«4ÃÖ-Éâ혘ܼpí›-dšëF 5zÃE)?(vžÌ¥÷éd`%¯” …?cÿ×Ç¿¼½öh¼«y[à1.G›•ª•Rº´nø¢¬;ð†§?$âC!‰Îú.»°T:*9¡9KÙ ›Ñù0ÿáÕâÂ3lj±/R©õaœWÀBÇeuÐíyçG™×.za†„ ³bÉXÞ‡‹ÀÝŠ_æwùIñ½ã]÷+K¥c º‰¼½qyQLèWûwEr¡ÿ£±ìcšºÂ0ž¦ë)*kîêj›Ü«cß"Ó0§th6ÁéJP)œSù„Bå–R„@ ÈƸ@‹Š0†8(Ðùp*‚Cð«s2XšMæØæbÌ{Éákâ¿'9¿ç¼Ï9ïsÞƒú!ÊÌÐ[‹ë¥²«øËÛðú8,Ü6>7¡i–šâ×ñ:95_¼MbFö¬XIñJ¼+Ýo‚÷ýÁ‹ÎfÆ…°,ì‹u»¢ëO' y›Þ9š;¤¹Uëèez»nX mRj꺥Ór^‹[åzsN‘žŽÔiŽDƒ~{ÌPóðÒðݙўû¬tE^™A¯” ’z6¹Èˆ\0zÄ®åp"[YM%G_²:í×TÓ-a›Üê.)úÚwMÎקÓiz­6÷¸—®Xj ]ö ò¹¢w=Ô¬_Îëuä3s,l'ef$§4d´^hhoBÑ7ü.±UÙˆóq0.•Ì£; ªo±}gmYaA¶TkÚ©cw±Hñ/"“w9™ ?ò›ÎgS ’mÖ7hÞþT!KxU|Œ¸Jà…,ª%FKa‘²ÈTX|’ÎŽK9’¡Kצæj ¶**zêz:†{þ ›@+üÑjÜžw8ÿÐÉÔfTÐ’×a<¿ +:²<Ž×qàÏq\#‡ð!î'¥Ï$ì÷^Rê½l|©g™§ÂûeþÛWùRùÿ Ï}²! +endstream +endobj +258 0 obj +[274 0 R] +endobj +259 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +260 0 obj +<< +/Filter /FlateDecode +/Length 326 +>> +stream +H‰\’Ïnƒ0 Æïy +×C…6´Bšh+qØí(1ÒQ Þ~v\uÒ"Qü9æ3QY+ÛϽû±­q†®·Æã4Þ|‹pÁkoÕ&Ó·ó}ÞíÐ8‘¸^¦‡Êv£Êsˆ>èpšýOÏf¼àJEoÞ ïíž¾ÊzQ}sî´3ÄP`°£B/{m„(ÈÖ•¡ó~^Ö¤ùËø\Böi¦ N®iÑ7öŠ*iŸi +­ùwžÜe—®ýn¼ÊNŽc +ÄGá#óIøDœJNÊ9éNxǼÞoÓÀˆÂæR¸$Ö’£9GKÍut&œ1‹V³V‹V­ô£¹}¦̳$0b©Ÿqýl+¼e–»2¾+ÓÂ:˜swm¢iÂcíÍ{²?Œ<øÎŽ÷…Šõ+À¼Ûž„ +endstream +endobj +261 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +262 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +263 0 obj +<< +/Filter /FlateDecode +/Length 308 +>> +stream +H‰\‘ÛjÃ0 †ïýºl/Jmc +!0Òr±Ëö‰­t†Å1Nz‘·Ÿl•fHôÙòÿ#KIÝœkHÞý¤Z\`0V{œ§›W=^Yڨ律5vN$$n×yÁ±±Ã$Ê’J΋_a󤧷"yó½±WØ|Õí’öæÜŽhH¡ª@ã@F/{íF„$Êv¦¼YÖiþn|®!ûŒ‹Q“ÆÙu +}g¯(Ê”Vå3­J Õÿò™dY?¨ï΋2—Ó”ñ™ùL|8D¦@|b>óÈDYd‘)óyÏ÷ÌûÀGæc`ö)‚OQ3×/ÌbÉZ´’k¡É>2øÈ‚¹ÌžÂcï¯ +ϦéÀ£§êæ=µ3Ž0ö1tÐX|LÙMH>ñ+Àÿà”ó +endstream +endobj +264 0 obj +<< +/Filter /FlateDecode +/Length 11105 +/Length1 15340 +>> +stream +H‰ÄV{X“×ÿï’ˆ!H &D‚@(*„DðÒŠ‚€€—nB¥Šb‹Ö)j©¶Z¥ÞªÖbµúVë]°v^j­v«ëÖ=Ϻ=ëÿÙöøìi½lao¢[];·?÷}9yÏå=¿ó;ïû~ç=`†`%xLŸ6#)E74³…z¾¢’_Õàm:Þ¿w9À⡤jI‹iqA£ WR_bmÓ¼N3àd‡©ýËy –Õ~瀠µ@ü¸ºouíæÉó”ÂK¯£å.ÞHí{ÔY×ÐÒúÊð‰I@jÀW,h¬ò"2í[R]Aíêokû;c~Kú¦…Þ†šïºvº€Lj²ž¦ÆÅ-ƒí˜Œíñ7-ªiÂìÖëÔ¾ìÇ'Œ_sg ’n7k|q¤‹ZN p\þËc‚É:_á‹£ýå±ÛÔÃFÂÈZTc‘TdxÜI’ èüûCƒ¼ ÊäAŠàåU¨Z£Õ……ë C#QÆ0™£-#c¬±£ââlöĤdGJjš3=cô˜Ì±ãÆge»rÜž ¹y'Mžò̳Só§M/(œQT\2³´¬|Öì9sŸ«ðV¾µ}çîž÷~xâäéSgÎ]8ß?ðÑÅK_¾zåÚõOn~vëóyË–¿„ Ç׬\¼®;Žà`Åú»UqöÆ–ÖÕ¨^ÞT{ûÍîC –4/jljXø)¾XŠ¶ù/u¯VÕÔo{{ëž]ûÞÙ¿÷½ƒ8ÐÛ'Ñdr2ºü(?.`o5Ù%íd^ÖÊ6 LTÂ4¡@(æ +M™f½9:zèà`Àº»Yác-´Ô¤UDZ¯™tOhýïg$~Çv³sìFo½Ýôîáö°ÃTø_b%PÈ G&ŽJŠyB‰±ZèÈ£áÐÀ E$ŒˆÂ0 ÇbiF4,´J ¬ˆÅ(Ä! °ÁŽD$!¤ ip"1œc1ã‘…l¸7<˜€\äa"&a2Åë3xS‘i˜ŽbŠPŒÌD)ÊPŽY˜9˜‹çP/*q­X†åhà +¼ˆ—ÈÂ+± +/c5~‚5ä†òèOщuX §¼†Ø„×ñ6c ÞÄVlC7ÞÂvìÀNìÂn¼=Ø‹}xûñ.zpïá á}ÆHèEŽâ>ÀqœÀ‡8‰S838‹s8 èÇ.â#\ÂÇø.ã +®â>Áu|Šø 7q Ÿãçø¾À,yªÿžG –Rø5cÑãž,DÉF4¡†ä<ÔýK»ö? Ôÿ¨g>^Àb¼Jµv²Ód›µd½Öÿ»ºÈ+›ÉO[È3ËÈ—ëÈO2ŠG5Åž8Ÿcð÷t^dð³…+Â]Ñ Žà★©X0àkü_ÎMZã­{†Ø#¦=Ä~7íh+¡vfÅE;ÅÊR²A#Ù·–"h.EU EZ>E_­5žâÔI1Gqm–keýâN1V4¾$aŸðºÐ%´ a˜Ä_äó}|7¿†_Å—ò^Åóçãú¹n5×Î-æʹ8NÍn°Kôîg;Y,Óú93ˆ>bþ-îâþðÄ®?±‰öðý¾çÿ$ó|âì„Ù¥Ói5êPÕeH°"H.žc°õÑá1uVvZܵ%v[å+OQ«„„Rز€Rp|™Ä<êtÙm ô“¸x»íÑ«”`q÷2>ÆmÊ3Õy«%>†¤I<¯©º×åê,*5ÓÓ sTÙôREˆ1åÕIò˜\¯„‚R³Q=£ËŒÞê²¥–$Ë}c’å­ðttoõS5ÅwöMξèÒh cì¶~Ú6eÉO²3Wâ=ÞúŠ n»-×$ñwãDÏÅÓi¡I°¸#¤ÿ^ -"·^ryMÞRŽ‘êþª”g”&••I¢ÅMÌâ®—8‹[RÆGØm¦Üº vÛ):>ÅÁ n"ѧá—&S/Çwº-óºóÈ`®¢RÉUQæ_Ïn£!ÆCt°Ûí¶Kv[¶oçÏ¡¢?UótJ[\Q\ŽL ¹C絜¶ð4¶EÎ ã¡|‚ ÉfYK…ÑÙnþ›[¤k‚Y8÷Ðíϸ]¾JÎ)Ü¥sÝà +e +e0¸–PA-²ðÀäìÄd&·rδ,.àâÃÆ3=ç´ŸH®X?ÇîÊ·„œêë²w³Ónýæ«þGñùó×Û–_»pÚ^KèjB×øÑ5 +e¡‘éþ‰®Ë"ðD›¡dáaÁL^[R¬×—¤¬è)*:Ðæëj~pÿè4;ž÷ÝóÝ8pÀwËw¯ÆídÙÜ\ÎoƒKEªHˆL|¼o]†Yît³?æ²ìþ~šÑ1øW¶¾2%"\^§ {1a¡Ì?EõxJFZzj +}92K´ÕÚQèpæç;GdYÛ’Š¨^hͦ;Kùà_øjáeAÊl®ÓgÈ•,È”¡Ø_Á¬FE«Ò +1‚-3Ò¥‡K$ìG|²XF—šbÐkÃÃ8Z"‘s2™&ŒÖÓô©)ééã™ßVk¹Zd.¯N6¹V¹Nö4mšÉ^<$謣fÚ²Õq‚*TëᦹWfI6Eû®~}È÷ÍÙÊ}õ\®èÛ¦Í ~×78»ÊfußQ¹¶Ë5±(`1ºrmU”µ£]Æ¡z*D`r¡LÉkÔ…‰,ÊÏ6;>9Õ9œ%§&-Ö-“ÇRhÂüÃeFõ¨Ì¸ ðq˜üW; +•b!'ó”rìÂX.Gh.r<¼¸NÆå?ºîñ«ÈZ”í]ŽQa*… LPè™2êLWklSçöûïŸc_ŽãÛ‰Ø>¶ã vìã[.Øq1Á!W.ML¹…Kº¥F:BI»[atƒ–Ñeˆ¦"´U•º&iZù±J›4º±JÕÚýØNƒN«†4­fïqÒ©–øØþñ=·÷y?'r¦˜;'HÈ[@ø.ÚT8Ü¢Gvi'ÁW2•Î™l¦-Š_ofô +•V[ÀÄiÏfЫHr›Osr@ñÓá®·®Œ4Ž'{Ú›v3W°qgß<7m¡¹¸:öΩ֛ݗÃN—•Myjÿ9ÙQût*ýÖ{Õ™`ÐeŠª=-ÌÚSssþ …pÈ7—åí&u­ë/¯ðÚš¬F Ð7qkI”B:Ò%ÐOíŠÜ@Ù†¨!ÚˆXò’†§»Í, k–‰E¡ ÒÚéëŠg3¡¶âjËå—Û Wâ,‚f„Éé[ˆl7ãOüÍ×mˆ†»öº‚ñH_5Eku«×iÍ•ßÖÕ±¥hž-.-Žh[zV»a Òîn#¥þ Ö•à€ x=FŽeƒ‹‹B âm:t‚µLJ1Ð rÚŒ-æirØX .©HÌoÆÃB®®l"Úú²j +`&H@äsy‘d5oçdŒ…?¤hêL¥dd©ã¤÷²w³ÿÌ™²©xêÒÆÓCVq_–Òæ'œ”7N›Æ¯|¼Ã¾ãµAè¨s€ \9 æ’‡ÈÃß±–¢Yˆ(_²T/­PrF/ÖÞ¿¬éºýÑ'¨ëUtìH©,s ¡/´6‘XÐÅx—ÍIwÍÎ,Mò¼æßà +hmö(œ\·8JŽÿÚ.¥ CcÉ–‘#6~Íloj÷*O#ê¢ò$°”F߉ÅÞˆóO?;yqûÅÏžŸ÷üfœ¯>ÕÌïí²Zíð3woO©‚d.Y­ ”þb:×ûí}Ç?\@´ó¨í º„»{¼¤8%⧬—p”zÍ-š†-f‡]2é’€eyJ¢pÉt[Ά>öa ‰^Aª6.i™#(JõŸ{ëÈsÉÚÔ€YÄ9S¦ÍÒè‰Ϧ½å>ß6ðß¾?çk\½©áퟌBw|¯öðµNSôÜL×Nô\÷½\©]&=·*ë±aH0hBGÓá¬ÈR¬EàGÀSf–çF²V†§GJÛBÙŒö°B+Á|…B âÄ­ëàÆÆçì]‘íÕÒXˆÝ:Y´µoŠ7 *俾qóëŸ]0g 42Äo¯è' ’\V_¼¼kO³©ïñëuè»»mâ3žø~íß¿?b’øÏL¤ªK?Ú¬¾ e¨‚-³“~„÷ ¼•"é”Kë+mú$Æ$È ª©¤Ïír:d›¡l +­ Á–ŒáЀ4´ºßZôYœÍ™vðé9­”W¾+281l6Ædz `±t¼’ßaMªã×~»{}QÜ^Û×ïódr……óý©LsÐRžøÊÌK0ñ&ýèóg•“›*m£3[¦´l ºnnö;9¢=sveB¹ú'ÐíóoÀ;ZRæý•5`»GtÉRÄaG<¼MŸ ¡Hà[{s}¶‡Äö¤É‡=[Ñ”£=N;~½ü´èã“ÏiRÙ4¡XŽÞí#–U[‡z=¯ÝË‹GçÏ ‰}Ýi‹]«=Xªý÷V›û×7^þé-àÜÌ׫¥U&áçW·Œ¿RûÛú²Ï”±¶¬žÞöî¹]Þ…ÜXßø5­½Q‡—é]¼Ÿæu½¥œl éTWA˜¸ê<°O³>îÍ¢ É°°¿9©c@†9Ê‘Îå<÷ô ŒtVK²¤uvV‹uýí@¡êÍ“?küY'Y±œñR{“`Ï.®·¬¶ÄÿÞûþñêù]&ÓÜؽÚÃWå-öª÷$éPå_ =ÒÝ›ëä#­{ýLëê”ÄVxÊ{œ3—_ßw倫BÚ»è5N0} TSš2ˆ’Ú鼿Œ–‚MÄ£²¤³›v‘8A6OÚ"Ê|RU:í\ ú}wj-ÊÅPPJÆ£2këÈ/'²0Po¯Xô È(_VZ¸Ï88YÉ´!P Ñÿ{xy–) ‚­©®/–3§øügs^P¹£·§Vš˜]œ­eqóK7yóÏ>Õ)³L/¥½”w8<Ç«‘ ·Ë!ûzûøRméW‘¦æ½~ò`SÒmbph¸®ŽõW<} 5* + µ-x>ÐzØë.ÆW³Ê–_9EWv? ºM¥ á&âv±¤@ ‹Æ†™¸Ó²ÇJË vn ôÃ: €eÆÐ~m1I'㲎µõC,pÐÏ»Y¨,[9ª­'ìkß8¾ö½~$±?“›Øñ#vœØ‰_Iœø’8Á@Öf^¥‘PµÐª¥-$´@º + +T°Ñ1ÆÖi­–n€Z&MÓúe_¦QUë„4mÒ4ñaêšËÎ¹× ÔŸ|Žýáüÿÿÿ÷x9v{k<Ìê­M²Ôö’ûÛ†s€_ú  ®LE#ë^-OnÈ7IƒÏ~óð¢1dÜt}¾»(Íl,;c%½6ôm4CÄÓù¤!ëo3“Vž4ösœQ˜DšÒ,“Kt“ùžYŒÁ•©ÀG4^ÎÄ!FŒ`¢ öƒ}Í6:Ï#ˆ80gÓµ0pDݛ܊E&z…,RhðDÁW¾ÇWOÐ9L¢Ø¶rž™N±Ðš+U¯ÝÛ6’k¼¹mã>¿fóÒRm¸ÈóÅáÚÒûµÑ¼yù>74só™{Ÿ& q«Êß 8$+ÿÑëA¦°¨ÒXq¹½P–€Œæ +òȇ½®¼[ëDgBC^D踉¾|ÔŒøE¥ 4W}9 ÕŒ—C… ™‡˜µéP„hÓ¸¢^qò‰òPó×7;’5óé±Åɽ÷Gó<êïæ›K2°„Säè`Ms)P.¡Žv­¼èÑ™¿¢U‰­ùµ½Q²’Œ‘Sr©½P#;iÅ—èQ9Ö˵qnNä¬趋df„ù`/}‘® ªGŒ׫˜Ó>Xoµ¥Fý²>žÏ”EKp)µ•ÉyA•ßžº$gA’GÖ„AØî³jÎUý‘©Å²g¢!å°®—Jož.z/>— âîÂkÇ RVpPÖÁ¡™¥jý¶»ïíÌÆOÏpœhI轺“ñG²`:qª\Ÿ>ïõ *FåäÌ'6œ]ƒºé踽¼è”¹ÄãvrñiR*—Îê=0~tÙwÊé d]0ŽÿVç~˜Ë÷¥¤µ€ÛeƒœŸór6Nà,±Þ„t¦Ùh;ô‚7º]p*Í"¼J_Çk•ëh!«Fþkg 4F4[S"$`;I£Àmžµ¢“rð `ö¹çÁ$xÃ!&%¨‡ó£¥ùð Sà¸æd¬ÕÕ!+7NÒ‚¹â)-¼&›]ÿ‚¥ðQ·@a\¦”ÍÄ!ÛL ÞãàXý’¦üê^fqCÕ&f¥€‡ +§Ø½®0Aw`õJéQ‡´ÖyéIýŠ¯5qÕ<#ÎJõ`ljÃ)žûUÝJf]¢±s°¡÷~ŸP=cGwçÇ_©VÃí¬æ<;Žy3"íNS­í}, Î/á¶Wmj0ÐS”3½}lÝÅý³Ùl3òGgû7ö¹Ù Õeo]®ê\mBõ#ù´ Ëp\@l¨5‘r,„Þ†«M‚ô0Adlf=i‘.' ÀÜ°“J½fœ_êE;A1Ôªpãº3ÀV·o:l¹qõê@e´n¬êZ}ŒJcêfφs&@ ˜¤nqmÆ.]“f~&†ý;׋-– ¹_tWÃÊ]ÿ·0é r‰Ûb¯ò¹êïÊ ù£Oôv·í±Á ¢—‡vÔJ}å.¥æ¯t`‚z«mß–X·ã½?¹ì,¸4dýÒ£ .b%ÏÄ;"o Ò±^êiEÞ¶tÉÊ©Š‡xeŠ°™Ž€ßKì7´Ó" êPIJêðjVµöhúÜÛƒñ ¶«F'(Ë9£ó¡‰Àκ`³«Ñc†¦£½÷òep6ï?Éxéü–¤,Go}/ÚŸn§_8³nÓ S¤|¾™ð†Yy"|g___\ß|éþó:#‚ïHS¥¦iŠÝ™,î±›Ý^oøøD*Zù®ì•óǦåo+ûÊdn³Íäq/OŠ{ß.W¯b$*hG®¡ !gßï,`íVØd†m€ŠœMß0Ö PWDÂýåF€²ä¬_€èÖL]WÔ£)Zâ•€k󴥫ÓN`ëØRÊ[¨Ú•xcdý=ð˜ºf–©ŸËŸ¯Ýü©k8Cæ²m_k*^@ý¼³]Úß`nÌò_}œé6CÕ“U'{Jõ#Cù¤J!T€óqŽæHp.6ólx@¼ki=½`‚s|V¬[ LTNŽZë’Ë úÕ/¨>TÝôICŽC§öýŠwÝã âFó ´ëÁÊ÷Ë{ïC=Ù"›EjñúŽw<~‡£$ÍgG_2†[v ÅJ¡ʽ#û©^j3.%ˆ ® +¥lÿé¯+•òïÀÕËÎ|HÆ`:8áÙÄ(Ÿëù’§c¥ÄµoÀ†¦jã „˜ø™Gÿ$÷‘SG$‰®¼××ÊÚÚeXë·S¤¥ OÀg£Èc”æ«rÈsªõ—C{ÐÃ1c¡éOiÛªctí+ƒkÓÚ“Wzz†q ŽdÁ€òu¶»\9,·’±b(Øi/²ÒèÐÚÈä1¯ÇH«–ñN£›7‡«ŸZÆÅÝ-»ä‹g]ms!×5 Ë-áÖÆÔ@ßveW*`¢Q-žGÈÏh;Áb •lf†²F “ƒØn 46‡‡z€¢¡ô9aÀa#ƒ·Çk…á®%Ô@aÅtŒ*ZåëÞr×b–LiÑm!!»žá=¢95ОyfW¤}nkK\âõúX?{ö–™¢‘®ˆ5”+†äZØ8tÎ(ï9¸m•j¶zÂײ<ÐÛ¸ÿs]î±m]u¿çÜã×õ#÷úúú?¿sã·ãëWlÇqb—:‰×:iB“´nÖv¤,]héD¨°fR»UkÙ†¶¡LŠPĶ? +ƒmÀÐþá1¤þ1!Qõ!Mˆ +¡ Ä b8çÚIÿåYÊïùý}¾ŸlÁKNâ/*Ú1îÃ\7}n5Ë +§ž­—¶Ï’Í[ÂùöÑóTËý>€(è‰Bì%²™z?\pª€ˆr߈û;w…h +”cÜ0¢)¤¥¶ŸûÖµµñɈ°²]^|BÇUhßÌ€³õÅ=GžnÎrZÖ™®%ßýòW—ê·îç­²Y]-ž›ÞK´ü‚ÆÙüÏgHêv¤VÎéÁ°ËD[}v¦ÍÀ¨R†AfDÔÉ“fh¥` +lf#… \P»ÁçZ#Ÿ€±Ö#/?ùê|*#ÏŸœZz?7I¦~Ü*¥¼…ðžçLÖ48>Ì™Ö*b3æs›çshÇ5™nù™ÄÉ?~5o•Çzc{»6}l>)ªÍWëS'N†ê±ö„–"WLf»ôöjvm(súˆQíÿ´Âäd-qß¼ñà·U‰ðM wf…ž¡*D —‡úq ´À+BB²3”Z^JIT\ ³¸_4 +}­Rê/õ ø·œqÇÙ¹ñüáˇ;˜@îæl Àëîî ø;9=‰ NgSo¿úÆéJ½æ»xãÐü ó•9o{™ž+ =v|&®<³µ éo¿`K÷ÔCïžyùla.:¶ý¨3ž~ì†W¨ìûqçbT©,…0ºG±1íð¾ÏÝkaTJ>Lh‡7øŠ6†AgˆO7Øpëú Ñ1#ƒn_o)“" ›féétQÖG|ìTÞYo’xË‚ùJbíl¬ ÝV¡êöZ"Èó|@ÿ‘!??ûÖ[5¨OŒ€»H,^ºõøDÀö²úYqϳªFëíÙŇ½ES¶HßÅû1LÕ©ãÔ£å%³Æ•Àåσ‰&ƒ‡… vj H»€ažðû'ðp¦@3“TB”&ø†FÀå6‹™~2Ä[e·†By½V‰ r«‘á”piQã +¬¤G ÓùƒLb2£òvðFî&oÒ7™ôÈA=<·iÞ£tÂ8Ét´<ç²u)0‡¼6›eµ÷|Â9ûÏËÏ}{”ÝÒI£>mJê¬lœ¾îfí×ÔÎWKç®ÑŽüïOÕÝÕÄÄQÕÔ/ÓUGîµÌj88<š»ô©¸«ÏÈWÌŽé‘ñÅÚ+uÍf(Öª=RŒ Z£%û¥¹I×Ô´®÷+#>_¶®7œÉÙì¥)¡±þàþÀŠjÙ¬®¯H>g—–%EU fʇíŒû¬¸¸™Ì…‚ô°;ù$èÈp†œFM‚Ç/¸¢‚Âz°ppC ðX:Øý‡¾¶ëlÈZ;©®YÆ ÏÁ¡ŠÈ4.´ +o}˜kŤÉ/q…?~Ý¤Û ŽDÃa…1œË]Ú,²7S³½‚¸ôþ•dÂyúˆUl9î½?o±¼Ñ·5ç1µÿö1ØêlWùŽiÏŽ{j²›!»RD¥ì”HEÊÞ>c»€z­dAz+ÐQg{ThÍáÁ´’·«™œ’ì^Sê2]¡ê&iG>¨daÌæf5Éòâ ½ù† 0¤ŠGwv€÷h2Ñô<Þ‚¯®MÖÀ÷Â"Så‡uõ›íV>cƼÓJ›MxF‚Árw§Ñ*Þé•/DzñøtD$­p06ÆÌôD¯Ó,PJcš…  Ã¶eƒW9`¸{ö»ž³2a<ã$ät&Øñ/‚Ìm<xÒ<ÔÂþb/ŒÄ¸à˜pêÅ9zåEï 3ßà¦ã‰Ãôß܇ë‘ܹ3ÒÔ¯ÚTyj絺:£/—]5=æΩ[ÿþþÕuö•jÉöýÀL‚ÀùÉ¿7?>7t(Žô †s³SÞ²½[y¶&Vêqx™Ύ*EåQ¢»9üoÕg£Vµ»(þäUÂ5mîîÔÍGKô<ŽÆ’ÁÁ<ØÅ­ØÿŸÊÖ—i¬-Ç¥l)âÙV4‡Ez_,%-,â;ï8¦^†g Ž+¢Ò‘6„Pž~'ØèÇÃoà¦4”u\|ØìQé•ô1ô`H.~w2d^ädq1[¶ç®€|ÖÉå“_ºlÝys®“ÌÆ,@©þìYÓŽ;—ÈŸܱUCóB-¬¶ÄÃÕíU‰mqý éØ‘æÞÕZ&¦oqŽåœÎáÞ~ +/KD/‡µE§Än?ådù'ž Z÷wVÚ·ÓŒ¥èbŒßt¢¥öæäþÄÚɃÉïòh¡=› ³µ}Ÿ‰*¸’YêXyÂX–ûx†S§ÜP +xèŒï@<È'.$Çô2J\-Ʊç +¸`…\¸¸ +Ûª|ÇxþŸt<,›,Dm»ÓJ*è¨Fwf›ù¸¶]{Ý –[Å’ˆ4–p¬´¹‘W—çRÍ^‡”_zK†.š/Õ"Us–½²Åú}—æl+æO£q“ +võbyF<¤!—‰P÷ŸèŸâ| ”Š•\šÆTàLë°÷€HÁô* Ç¤9¯öP + X7Q‚û÷%Χöƒ'‡#:| ÃYB^ö«÷Õ_ýÅS¿¹õ»_€ß÷ ËSh|FéPÝP\¿ûµá“7o|tæÌ«t™I±ßç°3 Ë×nEk´#ˆÅ® J©ñr¶‹Å ~£Å–ŒbVQ¨„°fÁ4¥Ùô§)Ž9怴 ŠÇD=²1¡6.i‘m„ÎäZwvO†(G™p¤.×¥¢ØתÀ‰£(üƒqWä|}gôèË·­ê±…lmc6r³Ô*Vü‘çrªÜrg§BËÇÚ5I¯’g bós™>ë«êÒBd6\K'¾^¹s5_·²ÖÝÁðÊó•üÚDhaŸxîÑÇ1M.Xj À&¢½Wø/ûÕÛÔu…Ï}ïÙ~~qÛ±'Žãß6‰ˆã8±YBl7!@’™‘¦‚h*BŠixÐA¶A—ÂÆ"ÚªC¬cbh›P'¶u¢ÝDծ괪BS7ªiÕ¦nCš¢jšhÕ"æì»Ï&£íTµRÿØ{ÑÉ=ï¾{®Ï9ß9çž«”Ë>æG” ñbúy…©FV“`ñÃ6w*xµ,6ÛÝápøýÅ’¿¡ûQ1[³ádK…§ËóÜ\euç¿m…ÝYÿÙ¶AsthôÙoöWDSì‘¡PÆ–0\´­[í–o2ÙLáµõ=/}Ð<·tCxÑ” d2ÞÚà­¶%&ûuz’ÂßQ«hä8Cxëoy]õuÕ6‹±Lbdk‰³bGÉàŠZ«îôÕ¸ùà¦Sì7ÙÝ7ÞÀ ixªÍK0Ô~tÁîÙÒÜÐêª÷l>èN$ žg|}²\î’Ìö¶ÁäH¢áÜXÈí5^;š™•3_çF—ÛÛÜãrv+mÎòº©Ôʦ±ÑXÏÉXÆÖ°©%^kv:w”­ÒÛ‚ŠEÑèýÌY¥_¢ŒAùFgµ¦ÑbÑ_¨âMNûòÝSÍ•€šÁRWÀ³¥ti½S¡|Ëwšb×µ œ÷l_5£VyšrOÕ˜äHvÂéWšLó¯$oK õ莈<7[g]q‰mO·Z3ºª Îp,U¸<´uû '‚R +½Cîõ‹ÝH5'bK·Åb7úš`²ÖêUÜJ½R¦¾¾Öj2h6ùøݲÔÎðg%z_1¡˜Ú ø¼N†8á½kG¬ ¦T®Ó +:ö³Ä7ÖZcç#¿nñlÔ¬© '+CeÃÖØž™X´Ñ<83.}—íºÐ\/¦¤L@jzî7Ýc—ÚvGÌÍIÊ(®æ³…¿ßä:ö.ÝÖ¼‰è¢«iŒ8ªpZ냊_ñ¢§1B[Yazo½£Æ^e³Tè{B2tŽýGgþ g÷•¿ÓǨõ´ÒR­ª´|Hy¾X«Lómëc•‘{çC ¡žh¥°ãÛãÃëtD“mèÊç»V‡Ì=ûÚç;¦S÷<$ýµžŽÙ$®¼ÅaÈè ßbi&ÿ¡pŠõ?$©6‰ÖUß)\øå<³ž8±Ä-KšÅEx?FÉ•O¥ècA·U4®®Pjy)¡3‰è<ÎÚšjk…¢eT¶)…uEëõÕQ5ÈBl5}ŒŸ¾’Q/½L½‡´·OØìé€]é z +¶¯è^BñVÓ÷ì+“‰Üžv£Õn¨mpÞî»p¤g¨ÂrËí‘tƒÙ¬ðBo#Ç +ÖµúÙ™.g™›%Hr™eóÆúɆÁR¥GÔ¨J%ãNEz«I¨`6&Ç,ŠMöà戮@j R€×Y·Ón3USîõÐrÌ•*ìfiï𩧯C5qyÜE1ôû¼‰mW£OÌ´Tu¬W~'à#7YözNƽ6m¯¨•ÅþÂ{Ó¯wÉ0eÝ´I×–4½'Ë©ïžF²)÷®uŽÉ#¼Ú²­’,4ã~Y4Õà°Ô2és4LSÔª…é<’œ¹}±Kh¾v­h1ÈyiüÛ*:ß&Q¦?…Ýam/ÖiI¸#¡qlDº§‰nÏê=w×s]{×”è€È»tU˜„†¿¥ ñ, h.ЭL³¬r˜ŸÒ˜¯¦ÍÓb­G˜§ûÍ /“ëG1ÆÄc¯ƒ4€÷Æ1¼O‚òxÓ0{“@5š>0ìÃGTÀǵ/ÓyÍ)ê—NÓ„&JyÍ«4*õƒ ø‡5HVì3²§(+QNgÁ·›ê÷œ4£Ž3š>ô‚ úšt úYµa@÷JKÅü-JH±Ç$Ç^N!Bcš›ì”ø{jÎÓè8!™`Ëa®óQ 9 àË‘à¤èHÂ,º÷ |ÃK`Í d°^ Ã_—© 2YÈÆ´5ÔËý"(b÷Ea’Åxú]ƒ?Ž +ÿÄžAÜO*?Lyè=ªêv¿™€ž¦É®ƒ.ÙÒ¾9è4+ÍÑi‹²‚ÌâK”=¥ù9ôYT±ÎÂÏOø¬ÏA¾÷n3ä‡ñ»9è;Ûûù¾Øïan|šWåOã;°æ>—®R¶„å(ÇSÅ°OÝqÈ`­ŠÛMåXòµwcÉGOÄÇ‘ãp U™ 4¦Û»Aši@û~góQšÐm¦°“c©ÚÆm=ý”æ>ƒ|ZÜIsÿ¨Äu Àî‹ï*–|x–â€Ë&à«*†sêºamš²Ú,xn뫈í—@iº÷q,§Ö†O@?Dj?@qБ" àD°øUh²Þ@Tj7”è/EÒýô£I~´HúN"ÅKTÖBdè!*GæÑÆwßO¦$‘û›Š¥DV#‘ͺNTõ»OFÕçˆìÕ´Õ6Þ"rÀ³NèR_ z¾H®³DnD…g+‘¿ï]$òý©Hþ3D¯­ èBF®˜.RC?Q£ü)Sçÿé”øvö“¤æš@œ€UànÑaÌñ¯zrù 3S©ƒÀù[‰·"/÷—x-øŽ¯õc%“ôà¼Ë<£ M•xŒôX‰1¿Pâ%ð¿*ñZð‹%{2KêPzÿî]î½Ó÷Ï̸#‰D¤/3°î¾Lxh|j|ß®=¹tnjçÇ›¢¢4ìßM»ÈM{išî§ü¹)‚]ÿû(C´Žîæ!‡îã´ë÷P²9¼ï¤,äÀ>üÛôÇ”ù4W‰E€–¾/ÿ—'YkˆKm¶–r‹Ï›Ê}ym®iJÌçÓå:yYì|Äÿ[€˜êGW +endstream +endobj +265 0 obj +[274 0 R] +endobj +266 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +267 0 obj +<< +/Filter /FlateDecode +/Length 343 +>> +stream +H‰\’ÍŠƒ0ÇïyŠÛC±Õ6iA„b[𰬻`“±+¬1D{ðíw&Sº°_˜¯?3IÊêT¹n’É{L “l;gŒÃ=W¸uNlRi;3=nñoúÆ‹“ëyœ ¯\;ˆ<—É:Ç)Ìrq´Ã–"y BçnrñUÖK™Ôwï 7ɵ, +i¡ÅB/mzIL[UýÝ4¯0ç/âsö Óxß°3X}c 4î"_ã)d~ÁSpöŸ?ÝrÚµ5ßMyJÁë5ä’¹$>3Ÿ‘3ŽÉ(&Û1ïˆ÷Ì{äí62äóy—FFƒœ1gÈj 2Ç(ŠQ\GQŽõRšYs}EõkV¤Y˜OĬ_‘~uaÆäš{iê¥Y&=šûjê«ÌÇ8ÀǤh”¸qùÜ“¹‡€+ŠÏ"Ò9x¾?x‰Yô‰_²w¥ƒ +endstream +endobj +268 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +269 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +270 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M H`I)äКöd…FŘCÞ¾]¶PAç7ÌüufäMûÜ€x+; 0j£<.võaÀI– ´ 7/žrîã$î¶%àÜšÑ2!€Rp ~ƒÃEÙŒ¿{…^› ßMwÞ­ÎýàŒ&@u +GºèµwoýŒÀ£ìÔ*Šë°Hó—ñµ9„"úy*FZ…‹ë%úÞLÈDF«ñB«fhÔ¿x•TÃ(¯½g¢Øs³Œ çÄçÈyâ|ç"q±s™¸$~¸D&ÃDÙD&ÃÄÓcd2ÄUâ*Ör{u¯Š†÷–åê=u'ÛÜÔïŸà¬Rí›ý +0–Pæ +endstream +endobj +271 0 obj +<< +/BaseFont /IVZTMC+Palatino +/CIDSystemInfo 315 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 316 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [3 [250] 15 [250] 55 [613] 68 [500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 601 +560 395 424 326 603 565 834 516 556] 238 [250] 259 [500]] +>> +endobj +272 0 obj +<< +/Filter /FlateDecode +/Length 5512 +/Subtype /Type1C +>> +stream +H‰|T{TgŸ!É$ +DÉ0,fhfVT´"XŠ €PЂ"” +’@Â# yø(h[ål×U„Vä´òZ_Õ¥¶X»U˺§¸ÛEkÙ½ƒ=îûÇþµgιç»÷žïÞßýÍý}8&´ÃpwY«\³j±²À¬Wi¢ÍÆ%aÆ -Ãroàœ³S8PÈU¸ Ç^f‰à«YðÂé¦ÛïÈ0!Ž ¥?N¤lÓë +L:­ÁK­2­2šøB©ºö­+|K—.¶¾l¨Æ˜¬e7dçh3³ÙµµÑl2šU9Zš‘ÁN—ÈfÍÚl­9×| Õg³Z}ŽNkfU|2UÏß7k5lŽY¥ÑfªÌé¬Ñ–ù7åÿ´bõ–¯ÅÆô6ocÌfU7_Å8ÝEmÜaÈ1ëµÙ^Þá7˜´ìrV£MÁ0œÿ01†9J1ÃæJ0O)&Á"gaF ?€c<¹˜‹Æ^â4îGáix7þÐÎÃîS»Á[‚Á-á&á‘Tô‰è"‰hKÄ~â­â^ñ¸„¼#IôÍp˜‘4£s¦bfÉÌ1{‰}˜}¡ý”CŒC…£À±ÀqH"=$µcV߬©Ù³ß›}Ïi¾S†ÓcÙ{²jG†‡È¿8‡9v~FyPÔ‡ÔQ¶¬‡û©çí¼A™+žŒž*& ]¡P0ÁXÔGÍ™úƒxŠHš>C0â}‚ë¥l'dó¤S‹¤ÃE`·\‘ —ý‡¬æ­7pŠ ˜ôu!ãT5´×¾´ŽÖü,Anľ¨\¥I•fMîÖt–të:wåŽü§ !wD¯ñò{¿vKcºâ€˜¬ +Vo^ï#_òÕ›àÿÝPõ‚‚ 8VP¹»r·„¬Bšq*|{÷Ÿ/Ô56|Î (6t¨$ùyi»Õ4y¤†+¤Î}¦Kט³ôLfë®&«üt­µ]!EÏ=táȼ@vÔ¥o/N´þŒ¼÷ºîYjrÏð‘HQèžãMP%h‚ÛÔ¨z.æ/ï0ETÿ™ö¾Ô¶¸¸MlÜYM/#E“¡yø1¸#€j +Ò&õ¢JûU/’˜Ûb¼–€<Ð:¹ˆBAhŠfPdù×h1ÑðWP@"„G€7 +cJ˜jAóÐÂôÐèèÔaXTÎÀâÒ¶áAZz’Ê‘÷cDA(ü~üß@í}á’òÓÒÅDõȵ»@9i©)¯.• )%žvýn1Sc9zð¢µÊZwž¾ÕµVŸkc…«ågéæ¶ ºm“8Áå1:>õ¹–pœ»,ú'?ô§y!kágÿ£|ÀñÔ‘O ¾ˆ‚Åã`æ£ý‘'™ +1yÿfKÓÀ üAäß'rY†ìbšãnð¸Ää“ÕI±+åoxÁ +ŧTLê…®r¦«ñLO¥âÚ®}Œ× ëÓ(ܲ‰´—(Õ£ãR´±ñ6¢át¸¿T×f kââ_ËׯÖ¡e¹Ü=Ûž !âÕ«”"ìöq¶–:8 ªF\z±ªýìy ©iëèê‘?Œº‡\WGåå¦*¬¼ˆjêÏm¥{JNäèäú¬ôt­‚Ô%ÅØ\žåJšn ‚טȳ}|ûX:>EǦø3š>…´›ßÿPž½z ÊòdÕ"ïs¾Jõ¢P,'vÒO„¶(ùW?ø— TT uÜEäØ‘öן“XˆÃê£[Žª;»«´ø#Á&^ºË@ »Íol(,Ao€/9q»‚ÚoÜÿ òïkÛ»™kÃ¥!ùhÌ•àã +^ÄÜHÃéÁkò!ý[ë 1ô¢C>þPÍ?? (ËŸ>³´ÒwÛM›·lO d¶öäÄÈ)bõ†¬ð¬‚2ËnFZ¸d\ÈðÓà+àNƒ‚*Ìܼ7‘Fn†7ŸÞÇþΚ™fpUš¢ŽÑh;ZŽœÑN´ Ð|ØóýªÊFúä#°çâ`~›?­à'°ÁoÜÏ Ö°†«ÃÌ­®'@ÉÁ~ÛÃw{ÿËt•5‘gáBìŒÒ(!1¤kºñEÀET¼Fp<Q•Æ& `b«Ã¡F<‘CåQwÆa=× ×Ýr¼Ö¦ö5õ°v_P«¶òOú׿ã{ï÷}ï}-´„L<ˆ®ü´ œÌE"…l§°ì)·Ôð0äñ t7‰è?n: +f!U³Ó’!rAT*ÁwÛŽ°—ÖHÞ +4Ó³÷ú½‚¨z§9f–›L·tˆ&ý8¹SI A Â,¦>,ww;8SÂÀÔ€zªÔ=Ž’Rù8 ‡²ÙÛ6æ®åq°ßc¢ê¯nƒüïg3t§Ä*àëwsöûñ˜D&Ë“M¢itÍøŽáÏÁ™ö¬ÜÚ,r È pƒbm_^ò©Ìwö(ÞÐà ÈÇàÕ@/Æ|(¦öu—zF€öæózdÜîOÞ¶P‡|Ù³ú[T{½ÕJð|0¿%þxüM0 ûƒ—A°š¬;öe?ïÚðj£žbdØp%cárõßÝÝm#ÑUácF\:á/~°˜>üs?á/9Ëv˜*’K&˜h]\”ê>lÆͯš{[;’ÎD•:XdmeíWžª;Ršc«„Úå_íÅegERLÃyÓ)þ¦étb˜:bEüt!œåæÈ«,°õ8ÐjÙõ• +Mí=í}Â~yÌËE8 Iô«Ž/mTŸ¨:ÞÙy.5ã¨PÎLIì"ëtÇ{ŽG™Ç0è'>ÚPµe•:zõ†¯BBËÊb.‚ÈØ®v°”ˆ +KI¯ô +®½ûÐæ’VõÀIWµv?‘pL¤¢ŸH½e¸î_Þävgþñâ‰C¯^• D/š<5ú +8’JÆUì„Ñ(·±Ð¥ ÇN¾I¥­è¬?60òSÉÓ4“·:ì`uO4÷“»&A­ +'³Hdç f'ø£?LÄá)fRÍß×óNî/•× ‘‘ûY¯]+¾G%ý‡iE¡{f·b£ +&±d;àOìb¬`ä¡é“Ó¦¾t0²†»úÛi¿†S*:|¡íyëD] >ˆÞ鯧ÿ’Öµ*U8?Ûá»>hÇ*=°—~Sb¼…ð˜Á Zë¼5.c½n¥›‘ÕÕ¦Uk"ÀY…Á,DàS\B& +‚ØËÀ•5ï?±·ŽdZg]{8ª9—ûaWØl³œŸ)¡F›¥ÏœÎÎÆír]\Ú*ÚukSúIMË,PÑqÐ;ŒÁ +7EÿŸ/5 {y³Û¥ÆÀ0-O“6)sŽÏ4«aš dK^áß9[R„c̪¿ì?ÏßÝ»:IÜ.Ãfdç£\-o™z%ømÛù²º*ÁÂÊÓ +"yË÷0K‘iÊ4f ‰†ÄÍñ|BRiÝ•ŽÒ.“Èe’¹¯‘ä¤ÓÕZ—v2,ËÈ6¥Á|¥¼e×u²Ñ N\Ò´òdúÿ +3EcöŽü쥛VmPE¤h§c#ŒëðjE¡¹ ¯@h*¬­làoÕ„Oå-ãc—…D¯­l0ÆL…j} ÔŽ‚#]y5øÈoHca"3ycö~Fxós±Ët±µ‹¯?º=«„¬Â!`ùâuÑ»cy ñ@GŽcßy‚oÛ…Ââ£"§§Òå«‘\ÁÁD5ih)xQòä=‘ +,1ÊjR¢ÊÂytá…“Ì„½^Œ‡¯»T)äúÝÁ ð¬±ÚØvI-µË(&½BÞ’aÒïÐ +3×®æCc.þ|ÿdÇæꄘÑœeÖg©¹)`^t¿}gW #a6 µ— °”ôm9xD NáàŒ¾8m~ŽƒÐû¥'v¶8/hg2bVm_ÂÏ ;þcŽhêV4äi»Æß´†­&VJZu²¥´.ÈxÝRrz ý=dò‡eçÊêΰîÈÝC6t8’óÙ¥IÊOࣿÉX/FÇ~¡N‡ý¯õ:ɸŒZ +å ÓH }~ÉIîRºBþ:gcdë7¯ª˜ÃãÀ‘£p}êN—›6TˆyëØq‹ã‚~]Z’(¬G³¹ézÆ5þö½gÿ*^j)½ÿ›ŽÈäîä5äU +胇&]®^XcHLŠãç­i½#Ê_?;sþÒéŠM±EB^–Ù`Psš¾é¦ìltó#¥´+éO#[dÞ“_(-:|¤žo-ž'b9×É`ÔŒ¿Ù¸aû¶aK†V§Ó8ôåð)í•®ío—Vª$ã(² ”ÒéÓéKì^ÏBEäºï¢Íâ*SUÂ9þ|UÍi±É”XÉs!}K!»…=$بâõ>’ôfëÎÁgø-Ôó£  ‚!’Áyìhµ-u›V¯%søRzäÿˆ®ò˜(Î(îvÙeštݺa’žª©Õ–iT(*Tª€‚R*Bw¶Õ½Ø©°°S¯]†Ãª°Ë±bí.®bê]é!ñS[ÓØVûÆ|üÑ7Kl3™dò¾ùÞ{óÍïýÞïmVÒ¹^IUd»RJ3 o¼ta|c¥{½´än< q~Ok =×R”É“v|¥–Äæýõ\§×ïëfí›Òxríý4ħݘ»µÄ¹§Œ+·ì®üÒˆlv¡b]W» °`g_Cé ™L‰…bîÇÿ¯}¬˜ñtuA%? +aÔM7ŠMû=\‡×ßy†l)Ìà‰O9y¦§ÞHX´.g%J]P¸©!†WK쨟`¢<É!Y rž$ÇÅ#¼ß†×æâ¸5t#X ‘Y¨Æéow,^2ï³U«VlûþáÝöû÷hȲ +ÈBšé€IöWL“¨{p•¬×ãsµHíh ™†Y ¦yéˆHšý{lZvYîVÎ…‡'ÜŠ$µAÌY‰“S¢×ãöŠ‡¹ ··ë,{«{UÊ»Å9Ë#4û<µõR c‹©…¶ba"¢ÿ-È _ *÷Pº§Ä°{€# ¡z VC°¬ 5ƒ#QóÉR’ô4ñÅõp[è/R0+ÊQk­qp›Ûv²+‹/üÜ=|'tr{ña±]…Œ@*Q3˜:öºž°Ýr—[½Ü€·70Äip¹êyˆ£E»Pgaó³JÒŒ|5¥ëÙ÷«†L¡Ä"1)ºZìxŸ«‚•óIŸ¾²çŠå ±wo>ækï$vÏ:n–ZcüÇ›zÎœÙckáÚŸkšJ>mXÃ’è”ô$¾vu_γí㯘›lÆ£yOÁ†ÕÇŽ”r ¨ß›!J53Õ#òoú©+HÔu’O§7æwì⌾þ¯ÂìÙSãkÖ¸ì{]f¶ÀÒ>ÌÃ2üAQD±4c²ÃëIJ½1ŒÂ!©Ê,E^A¬ ’ïh[­­ºŠ39L»ŠØµågà¡5ôišÌ¾—ùÇ£ÐùÀQ¥E™¥kÀ@¹ú]¯Å0ÔAa"N=²GWæA>jÑ „a…lÑùT©Dea/rnqnFe!ôUõÙú—C¥9¨È‘üb_©Y¡ë©W¶OS¶ÇQaHÅ.Òò=W•11˳QÊ ‘T®Á,ÅõLªˆ¬µg;r„l¬qÇuÐ:¸r DKå’[ž%Û¡,8‡—Š!ßÀÌ‹°ˆêÙ£>¤„z‡d5ðz$ù|RÊuÉ(MáyH¥Èð rÅh ©Â÷­&›Ñúú´¶ZýÞ³@qxP®WT~4š­9hs;÷Å5Î}·×h4•ÛÊ-¦*sMÑz 5_ + †~ºk‚ûŠÂÉ"‚PêÜ"à B}Ýæ8åì\‚!\Dƒ´ª9EÝò¦œÑÄ&Ríþí]ÈV™†Ç£Ó‰v¸èҒݦÒÏI"ùÄÀÄÂæ'ª€œ¡Àeý\9ã ͘ÿïR*ìQ¨Y‘C•6ÓG£±²,äüúrGÿ/çúlV׉ ú¶$SÊeÉìi–¯xÕ H/œ~¦ +@“: ôñÐôŒfl’l‘`¦$I>‰"[¤Û&³‰Óx4ý(MàŽoÚ¨P§QaΤ?½ Z­|q²ü·þ_my +endstream +endobj +273 0 obj +<< +/Filter /FlateDecode +/Length 5117 +/Subtype /Type1C +>> +stream +H‰|S TgžI2“ 0@âdx2Sµ[KEñV·Vžå¥ÁZÄh‚D0A">ÑZä•¢+È[DQX àBˆµ* àEë)®Ö¢h]_k{'þгìîéÙ³gÏœsgîïÿÝïÞŽãPú,_ôQHš^§Ö„ë“<‚ukãSl!†cpN.âX{y ü·uoçpÛ‘Ã;ÇË¥‰ã¤½ãÐÏq±q±:ތڿ¤d‹Ç`§üñŒ)6;kÔzOagxzzŽÚY¬&iµ–U¥R´ lPâš$}r’^¢ÕLe}ØQ«×´úTÛá;†¬ÎÀju)ñZ=«æƒkuü}½VæèÕíµ~=›d‹üÎû?¥X]"Ëc±Ëu6O•ÂXu¢f’4ZeMҦĽNk˜:-P‘–¬eç°m†áüƒ‘&`v˜ÃX › Á.½ðx<?Œ·ã7¬ÀO-x!œ-,v‹ÜE›DO‰DÑDô‘žd™LfoÄâñsI¸ä¸¤S2b7ǮƮsÌÜ1ucž]9¶iìkû=ö½öÃÁ{Š)9Kuç¸Ë±ËÉÕi…ÓQ§œCœ+‘ÔSºVºEúÌOf‘ý:. <ç4÷ì4ÎÛI§…9".Ó>œIB>ê¢Ñ|($`ˆD,úŽ›3¼_ »õ8ŸyÔp뢲zDJsrë,b 9,™Ep3¹xˆ`Ä2HñåAø|¦íç!7ô_TRÖ9ÆcF© ²ŠÇÖ9ôîd„oUŸÜç"[UR{ +ÈÒÛ +­GŽÖ‹øµ6!h­!tÀL$EQn(òrî›­l#çý3a¡,îÙ½×Ê߀)íÂóÈ‘î{xœ!Ò ¢ü@ð@¹’˜ØœPZŠ¤ó&ñ7¤ Çk@,¼„èß*ïr±ñÁ¶ªy‹`+~v ƒ…VÃîV1•>ˆŸý^ø$>RRQ]³µÌ`زy#cÈ>œZ­ mõ1âéœPØ°††[VE¢#:‚*L7qƒÍx“®œB?v„O|íbÐŽü'“_*@þwÁvØäý +‰™=íÈ‘W0 Ša! „ ˆ¸ø UX‘Ê=ïÈ1J!Ý,k„t¹ÙªŒ%eב£ïAíϽDIæ´p·[qN`ròÔŸ'n7à ³‡^Ã8·;1¯báÒd­ZY¶Ž¨®í8Ñ£A¯ýÉ¡&,„Ø æi·ÀùfÈm‘ÂO–‹l¨í$ZÛrE]ÿéÙ“ ž¹%LžXöòî±Öî+n·¢ï *4|£>AYOTk¯úVñ¨Aæ9mµ³JÓJʆž>Y‰°È]8%§ïƒÛžœ‘Ýpð¥³ê2ΖtX.¸ž½|ÒÒãvsEßDõ²í×)KuDùÓFÅÍÆÕ¡Ë êσ™å‹Á…ª‚.²¡rB×ó5¶•é_ã ?ºt<;Ë/Ãqî¸ìçéô}”NXH´×êEÄ(sÄ‹÷îA:Ql¢ï‘ :u ¡¨Y’Gi¿Ñ•D M.Ô‘ t6Ã!“tÀ E6±ß äÒY5Í{Ï(žö—¶ÿ•©;QÖzÎ ³-ª?+yѹ«Õ–®ënæíI®U6j#J½‘+2vÇ1æutAqM~›âÅ Ý”¡KݙɤFtŸ”½ùåQÌ{Hì7)>)·ÀÈPƒ»Z8k ÿ[¹Šz³Vµs‰-œc`1|ίüXÔiÙ¹¥ž)1R#Ëf+P<¢Ñ¾ωà=p¹¤´ž¡`^†‰{iÂÌœ¿EÈóÎè°dŸá5ÙtùsñêÑÁçn¯6Ü^v^Ù­šz9*‚—|õåŒy-½ïXË>>1á)²CŸf3h9‹P‚Z“[¤¤¶ç˜ ÃmÀBn"7–FUpšMèÁˆ¼2¡sÐU$•ÆËp×£yr3Ü…b*†ŠÑT’‚I{ZàP3tÛZåüx¬øF«40í&wècv(P KùÎI°‡ÐKm;·40Å&âàÆ%¥¾ +”†(4…!¼qú¹eLе”ûªÙºwç부Åh€„§`õ¢G¼Ì0ÈIРÙê,ðˆ)TY‘jõ2ŽÒ|—cõSësLVêÝ¡^šÐY+Í“þ6çjL*÷ëyi¯u‚,Ù:Cn&cø•ZJ"÷aWBÖ¨›nJ ‘d‘›/®%<@ïs..d¿nf²z A´ìrïºæ“å>Çæ6MWôÖå$ 8aÓ‹Ú¿U÷ó‘lßBä´ÿ +fä\Z•Êýr‰ßävNj–EÃ89<Ë@”ÝŸqO™—ÛØîúW(O´ÙºzHÊ¿—;¿§ò_LWiPSY&Ƽ0¶›øó¦ßs—±Eh7´Q{DFvl”%,*A¡ Â6[¨ Œ¸DÂ"ˆ¶J6_Ú .´XÚŠ6¶Ë0jÙHé zu±jn°¨±*ÿ^îwîùÎw¾s®zü­˜ÁO¦ =7]ùq1¾ÿì¹Ã&+ãû,|x5´šD+Ñ$Ar “ÐdX aüö€ Ù#ú–)À¶½ò!ZŒ¦#÷EhrCn®0æƒË#ü_F„ùƒ &¸k­4œ7»ŽØ{ò§ýg©Ç÷N570g/”6´KÚ”?œ£kcý*Ü© ð¼cv;YXv¡°‘úÐ#6uMŸ =´›UcÈëFh2~y}è˯ª˜[¶¸$àˆÒ¶™È<Õ¬̸×\j«><ýsû ›Ö”€[/æûrW*"0oφ# KkŠ.Sïlž¹h]à f*!ÊÈ5qÈÄë`AÏòë/’ò‹·SÛ)˜yçù›·͈ßÄÌ5DîK®ÖÞ^{CjV]f”(ÂK}(D,ûÎùë[€'cúeÆ(ÉRß § å§d´H…Õ$2ñ@fÆSÚÁ<$‚DÓpÆV؅ٟS7ä8"ȱæ± /¢-ï=qO‹aìØJs³Ã‡ç Ѳo¿C|'÷.ð ¹yBÑ™×⬵?ÀéʼnPéZ,ºMF±è¶Ïßá¦ô°- Rï'>ƒ¾€Ž¡(°êDðêÀ ®¥ +¨d¨Æ=@pX©ÝçʺŽÞ°úÞë”ó»aGÇËDb\<ŸùÃvIߤ¬Q­™R@äÞV+Vqyµj£AþÂgòÿ"&:8;!š.Ù.¨®i.hÌ*_ó½Z}L}ì¨D‡ý{I¯ÎŒÝ±Ì‘ÇfQˆ¿â1Þ¼]@^­UedJ]jxi…fΘÍ{ÖK'`º›+Žž`D7?»q~gÅÎm(ŒD­ja]ò¦†¥çì„Ü2hFŸ3Œëk³\­¦5ø¶Ú…‚B]£®¿$á^ ¥Ã:R¥Î.È¢Å÷ïHO¬Üà°/»^ >l ö.e´Yš´,‰¨(·â °ÒÈ«cá—f>çjRS| X'éÞ ÎÈMüDÓž9ýÄRq¤ŒÎ6²·e®¥œ—tÀFk +¾üú=¶?ÍòÚψPÞÈü aâ=aù0Ùc’Dž¾,Üw¦|ï^]bg&ï b·f%$011™þ«%rOY÷°ŸPtÉL°ÒÄ-4æŒÒÐ˹s +Rܯ^.P&¥ôÊ|jãŠÜÑä§Óa³ÖFK5£YG ék6Íö•–UÆÓé1‚ÄK™×¨Ÿo•Ô72&Cu'ØIÀ(÷6k šKtª!Ó ÒöeО»ýc¼)$z6Œ¸Äwž¼{ز)°‚.ÌÔ¨Ò%¢VœÑÆ:\ÖQ-ËïÅ®ÄåšãEÇ鎊6ËmêMÍ +7ղРO4¡*26>7=‘NHWÈ3mÕÐg:‰aJ°ýþ«Ç—¿ÂžÎ)¤Ã +¼2žr"“Ó•ÉÉ%©•Õ%å•Uªr¦²ÉŒCôÈ‘»#G¢‘Œ<°CWc°­o:üË3 ·A:ì*DâYÒN:9i[Öfµ­ø-|3t‡T`¼”eå©ã'*UÉŒ(èÓ´Ö<ø0 +Kú1Œ)a¹!¨HÐN 9Ôàe#\Hàùà©ÊP&g«¦¨ñåO`{ 9ˆ³ +³ÎÄ—#´äŒt—Îú›ôWq¯• ¡×–éèÖ²æ+·¨žzÌÍU:…¥…zLYK™¹±ƒú£ÞÙ0è —„°ñNICâ3å;è4UzJfž¤ÊF/jEÄ–ïw2jBlÉ*ˆ"42M|ÔhE>…®eÅ=Ö¨ÍD‰V_xŒ¾^Þf¾M ŒV¤N^¸"+ü£‚å4jÊþ +x.ºcõ›áöí\6‰¾@6.hšûç\˜øì€8¹  )Ì~ü±oF"Wd·ÂÅiηÿ†ñÿi…1 Â^ƒÖ¦€¿*gÔlú{QÉ x¡sG7îwÏaL[úÙ- yÇY“êÍ!ˆ$4‘šp Eê +K´:ZÜÿèÄíQ³±A“|¡1«½Í¿)ì4:DtýóhŸ:¤Ÿs³†ãZˆQ}ãGP¿zîsò¦¦¥Ôl4~5òCÓûœ`ÜÓ¶&K£%ǪòÓò2é5ò€˜õØ[Bß~û_û^ öÁů’ˆ/æ:ðòH^ân+Ñe„^£×§{tl[uøÐõ!æ²ð྽÷Qÿ ÷O±fV«î·²¡ —ˆ¦â¡»ÌÄkgáï,¿±ŠTžoÈb©77¯=¾a\y–Y:®²YÒxÞØi>—ž­§Ë‚Ò¤X]õ·`?ÏÀ†èG;™î]çwm”„nÛâSª—ã«]hà ˜ùÜ[M\.ëEm°⭕I´¢ìLÎEêLeÑ?õ̾ZA~vZ~’jìdà|e@_#µäÔçZ¾ï¬¸‰ÛˆMFŠ®©y©y*:\¶–šÿ?ºË/¤©(Žã.¹÷:‹x5nl/QDPöWúKõPYN*û§M§ÚælWÝæu›Ó 3³‡Üm›sk›N[Òæú;£Ô úEˆFPjôп‡s×1êÜ郑=]îïr¾çÇáœóùÜâ¡rà=ƒÜýMýôýÀ£»>áÎÕ_Z‹ÝÅB áÛ²´±¿8åà7QZÊYS v9<ƒÁ!"`rùÕ*´·Mö–>Š$÷!M‚úÆA>ù"µ7¶‰ +y…ÁËâƒ?ƒ6l÷€«Ï>ˆ€}õ 3Ç£øÝ4ÊMG¹Gñ5ÐoP°ÇjòÐ5Ýc蟬>:_Û+T6Ÿ8~¿º×ø8´Óäáø ²ñK=Â4¡î€ X?þÞ`[‡ëúâ&Ü}¦MãQ¿‡$ÝÃmàÈ&쾊õZC™^ƒæ2tVù+€˜&UÓ‰ëmBâ®)Ö\Ót®^RßPÞ"Óe—¨tLii‰Qgu¨h®¹Û>¸õá X–€Ÿ4’1|ÁšOÖ¨Q°õº)lê†)à%Mnnìá—öˆœ|R¢sŸÔ_4á­ÞVO«ØÀ$}1ˆÁï…àrn¡ÜÀ@üD“pÿ´Œþ##`gË\Šâæ°¨‹ß›ØÚÓŠø½aô°ÿ·èµ%áwˆ%ÁZ™‚")åDl}å±fj¡¨*ÿÆeÚ¸p×P¥|jó nNã0;¢‰ 3ô. +Ø^ÀD©W±¥±iÔ°«ü¸#_ +Sép¡ü d=5Ñ×Ò×”¹[}¶Òö‹Å%o c-†Óöbin‘Q[&W°Y™]˜QÄWvj_/z0Â}‚žìù¹É²ùìߨ!~•æÔ0LE`v~ìtÕÕÙã`f˘‹ +Mµ¼¨À Y?AOxߌù®ÕÖÚeÔKg£Æ¯Tk[ÔÒ¼ÓÕegå§N³¶J*gwDͳL0½32ÀÍ2Ð &#_"!–uË®…0a! +¤ÊŽ/ÄŒ ü•P>['Äx÷(˜ö×Õºd¿VFc{‡FiË•f*¥%reA…b‹¤b&ÆÌñ Vsçãpx’ãTÒs`e¼”„Jo9±ÌSpb¸qÁüžäè|°=íç? f²æ +endstream +endobj +274 0 obj +<< +/BaseFont /FXYWBI+Wingdings-Regular +/CIDSystemInfo 317 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 318 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747] 134 [891]] +>> +endobj +275 0 obj +<< +/Filter /FlateDecode +/Length 1059 +/Subtype /Type1C +>> +stream +H‰|PPeÞ½cWÐë’[–nØævµrîPÄc†(Hp )âB“<¸n€;Ú;P±¸„ꤼäÀB8©ý8H+9~‰©á`bcØdΔѷðáL{ôOõýñÌû<ï¼Ïû¼Šø‰Eƒ4»2Ò2’6¥Tpz­.•3†%™}ú3<…òr?«DÄ?-!a +t,]_JÁÀÈ“àZà§KßÊŠÎÌ¿l,ó ÌLDtôæPF®à¶Pf³J¥ZÁH&NgÌaM…ÉÌ›˜$C®‘+1rZ3« g⊊˜ ñ&–³øÄã0zÃêÍ,Çh…f¾^˜çXcæ´:¶XË2F_ç?4ïV1z#x1é½iÌ‚hb´Rp1®lÉ5–Ìœž5…+5oT”°ŒšÑ±yˆð”H$²IDR ’ŽìB„ïCR7òMDÝèÑV‘M4{«ÑÃ?ð ®÷ˆýxÛbê² x‰„± ÷qÈÀ‹$ð‘å–UËxöJ b¡ÀqþkÒWA“6>R[øé‡e²ÓüßÄn€ƒ¿0¢ cþÃñ–+»¼}gûž5[”Ïâ€\ŒÂbðp #Úö‡ÕiÞ}µ¾A^uéÀáTò2¹ +‡A£0éç5Wù¯¦ÑßçÀssbgi:1V:AMó¿€€Û{/ªÏÓ úÓÃ!ÞáÛŠ!ûge®êSãò£¦¬cÉ\»î(‰ÿ2}n/=¥;™—ý¢f÷Gî|…ÔQ3Á‹'…¸gæˆI°p‡¬æØÊ,*&gðG€Ï€µ@Ö×][û1MôwŽaÄdkeN[6㡆Âèõßm^O‡ÓMK{jÆ@Ä(ó¢=¿‚Ê[b½G(ÞW‘Feê>9WN[»lš\þ`‡ ¬ëDÈdæ°ª £á³ÌH$ò^îpõ)*À}ò¥ ûa°]qãØå›3ÔùS¥¹´ôë¿z =3îˆÁˆ„P Ÿ‡[ :žQ @ 6þùúCø]›DÞíŠÑ@,Ê6nß÷Í Ä S€xDI7¸,|ĬµLü® ÷ŠƒÏ=0×èÝiêýÖ††fúè,f?\c¯£’32“ŠhNô7÷7õ6õúÇãïdz¥zg*ôÊ¥Œõ*€^tBH³…¿GZ Š%⓱)|¬Çê +lFcHÖ‰ì:ÝŽ#íŠ&/Vo­j¨¢ +«:Nv5¹›»é  þx›ƒþ¸cÒëkáËËdƒ?ýüV¾œ|Ú1¦,6á5*ÍÒëq9Žé¦ÁqLgÀnìp¡ímsy‹¿¸rNñN”Ta×ñæ³-_|0ä¿É¥ÕN¾Ü ÂNg§‡yΛÎU +WÎ[’€FÉšñÕ?¯Y”ñjòÎ òd +endstream +endobj +276 0 obj +<< +/Filter /FlateDecode +/Length 3304 +/Subtype /Type1C +>> +stream +H‰|TiTY®JH%ˆ]È)tRLUÚvÅ ‘ÍVPpm¨¨`$AQ ÔF 2*$®(Šn-(‹‚» Ú®`£‚:Ý­Ò +-­":£·˜‡çÌ‹ôþ5§Î¹çÝwëÝû}÷~ï‘„ˆ IR9=(,(pÊðYk 1í\ƒ~¤Z³L«µEUK +J;Á¥/ƒ<‘ÕÅ®ì¿K%pG]Žµ._Õ:"’|Ò6YŸ€O/_‘¬3nœû›õøb½G¨ÜÝÜܾX•¿V¿L§R¯MJÖÅ%©‚â£ô†½A“¬ÓŽRùÇƪ¾¤HRtI:CŠm³“*&I¥‹I^¡3¨48¸<Ÿ7è´ªdƒF«‹ÓV©ô¶È_ÜèÿSJ¯Â¹T¡ñ16OŒ7“TšxíhœEÿ¥J”~u|²!F—4jôTuÈÚÊG¥ÕE‰?‚&GÑ Ä áJ# bŒ˜°#¦‹ˆ™B-#†áÖ³ˆ¹„–¨$’ýI ùLä#Òˆ2Dy¢zQ«x¼¸ÌŽ±K´k•,” äTõo©¯tµô¬ô®l†,WöÔ~†}žý§>ãú˜úÜrðr09¼ìÛÏœ]-¼©&±X-ζ2»çödR`E7ä»$ÐN!ºÊ€ÍéÙ)í¡"¾¬ÁaŸjÛ +Ù<] ÑLH~AÃ.q1Ô2^°ë…”6vk:ÈRø$‚\ G»‡1h„'rA< +7?E.àÊÂè&è: ÃgŽd—»£áÈM7vò´È&p7óàuñY=K¦ts©$ÁA FgpèæRÈÝ·p8Ü–X(:û½ùŽ„N\KXãüX¤7ª$ ùOSPÊS^¡ããu‹¹rÉÑ’ª¢ì‹ ¾ã³<'û¢‘h€_`ÿIsìoç×äI !ÅBp÷&Íœš9*ÃwÕµlZpÄ ä¨D-¨/¸÷ +L±¿ÇSdž½ŠË¤òZ럃KžÌz´ û ‹¼{R˜ ËšMüëÞí9\Eþ™ãÙ‡gB'ù. ™ÁÓðÂP·Ã…·Ù©N…ÂKÅ/‚¨™;H-þÒw{IÐ +Å~ö’€‚º jIA;SßJí{+s.åTÈ,TŽvÏ’ÜeWÑ·ýi˜ùÏ·‚ñ5ÙrøœÅfKåµ­Yè÷éÄ{üÝ›gZ¡¯¤QOƒ¯r5³<Ž!'6`ê–M¡<ÈÝ™mŽ[+XÕì…†eñh∱ÈÃ̳­ëx:/» ÂßA@—-»X¾aÐN€C]=.Ÿ½„á]è„ÃNŠÎÁ”*º`vïÎK˜»fC~WÏß)mÄõJíw{1Ÿ½@Þí%¥UÆÂ×w$ÊP,`PŸ© +ͪ{³@ס>øà×Ó9ðt&RÜ +úö?‰Ð½DŠk©ÓI}þØ|<TÇúckMy¾î§øK‹ʬҺ÷nµ(o¤\Š>ÁŽÊse§nÎX‚Éy1Ö½GñœŸÖÄøOŸéÃPtAz—ÞEÖ`9OÅÒ?s’Y}êqj# M@¼™w ÙŸçÇ”iÔ(+JÏþZwi͆#\q§äàŠÐ¼ íD®sAÅ7Ç–Æ-P†DFO˜9§àpGï6þ®NMOÛ[œlWk<ÈiÂ|ç-Ŧsç•(ýщÜüf¦¬^Î/),©Þ™mÎ [ÅgHÑt3"g!¹RQåÿcàÛº+?œ.欔"mW¨DQõ=Ld2²Ò37q+ŒËW…³ÚØC—ÿ–ßbâéfã›àaðkX‘êThGEŒwVTíx„_Œ9eדêX¸&ó0ÔìՉ؀°ØÅq¼ Î!yO.²ÐjZÉJ˜½–=–Ýܵ}Ê«Ù¦3S8#wä6)‹†µ»‚{ÃÍÜg¹µ/$룗eÌc}§žþ=“o¶«Þ~òÁÏlSDO?Fº?À¾ j;Œ½<’1gÂPá{FñfK°ÄDU&G–ûc*߸"Ä5¯îV;Î[4Ô€9šñsççŒåFIÏÖo¨eï5ì»p…¿r±ðÑ{%IÏîY*-%õ³Þ´.s¹>*n 맹÷¯xÓyåöƒš²˜ˆ\Ί9•ô£Âáë.ÜT² < ¿õÎxqžÚgÎÝ–ÃÊ-=y™½,,GÇ°X*ñmõøÑ'6>c}—¸>uMZòÿˆ¬ú˜&Î0.c÷¶b-ƳZzænêQœŽ0g sÎD@es´Âq ° ¥åÊGi"ÎÑãpF´B' 2E'Æidc62 jð3êËsæeÉÞ«[–Ë%—_Þ÷÷|Üó{žG)WÅÒ¹*•9ÿÍ/€9ôcˆ/™ñœi³‚~uõM”&9+3%µ9ólosK'w¦Òز›‘{"¹²¤·m•ÿhàßzb,õ ˜NAÂÉp6Â. +#ÒB­…SqA“ص“Ž©÷ùïóý^ö^ÚÅ/y¹ÆUýö·ž GTp‰.±V`O»Û:~f®4ïŠæp;ÁûbMCÀ¶×·µö0#Þ]>Np9ìðË{2lÙlž%?¿0[éD—L;;b˜pÃ7)¹œÑö[Ô"T³»:qÛÛ¼þkÞ—Vú®/¯]$¯ Ýr^Û˜Mñ‘ö’P{°2ìò'ñI)&2*é¾òÛžñÙ¯üCøó©BÊ€ö‡nÉ®ÁK/#òÑ_+€%Äsÿ /?à¡š{§?^·LùyÒoO&ÚïMÕãH|õÆŸóÿËþùu¬×ïZúöäãC:®ÿ}Ø+V>Ãï®Íؾ—s"z¢üŽìŒ+É•£ƒÀ$R©u.wM{I8ßyù½'ruHÒæµ †ŽÁbÎá®t :5^B@ƒ‚Ï÷úìÑõ×åiW‹è1ÑUïr³—ÝÝgF˜·ÓYÇÑõ TÐc.[Yu1“»/*—«@tKÅcê=Tc¨NܤS‡ÛÀý~ðŒ¬:M~Çe„ÍÍk¸Ê[É}a§”_ÏkhÓµzÏõv™‹YÏ$Õ•(Æ1˜Ú°q5WÛð4M9j:V˜¦KÏÝgˆ?úc«ÆÁ¶—0<å7 *ÿI鉿¹jPƦ,6çÄ™¢>¦ëTí÷G9çÊÁ›&&ÑÜ6ÂA:2ž œB=οŒ–«xî5ãvmŸTIñydqX+x6Ú¾OÏl6^œàà(Á»8l"þádÿ`{£Ü£ +­§`rv;û‡uêª `¹Ð-ÑÙn›¦ÍÌF°E2Sx>ú WQt§ÕÀ§”ìQ:PI·­ËÒû)T‘M§¦Š,_•Dö&ñM*Ý)Ê×ß—¯+ÐUÐSôM±¿¾¿n”,Hî¯ÝI ;†±^ Á‡2õl‡3¬±||i<‘?d*º²2´KÑ8DzÓg“ñ’!~ˆ¿¸ŒZµÝ'`¿Zi¿¿ÏÑ5¸¯ÅÕ,D¿> +endobj +278 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.iso.org/standard/50498.html) +>> +endobj +279 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.iso.org/standard/50498.html) +>> +endobj +280 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.iso.org/standard/50498.html) +>> +endobj +281 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.w3.org/TR/WCAG21/) +>> +endobj +282 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.w3.org/TR/WCAG21/) +>> +endobj +283 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.w3.org/TR/WCAG21/) +>> +endobj +284 0 obj +<< +/IsMap false +/S /URI +/URI (http://www.washingtongroup-disability.com/) +>> +endobj +285 0 obj +<< +/Filter /FlateDecode +/Length 16051 +/Length1 24941 +>> +stream +H‰äV‹ST×ÿ}wwA‘Ç‚ÈU¼»ÙEEQÝE>P¹k|ì²€€ŠÆG4tÓ™…LÛdœ8ij­­i2Iô®i2˜¶ÆwŒ¯Ä$&&>Óvj::igRGO¿»¨IšLÿÞ3çžÇ÷ûý¾ï;çw.Àhô„ÚÅuyùuDšÐEm4¥Ö —â˜>͹{‰Òi"- …´„–Ò"ZŒ¨ ŸQ1~ŒòÒ2ÚB[©VS-Õ‘†Ÿã—ø)váØ_c~…Áû{ñöáUœ¤rõ‡*h>¶P5U’ fIçÙ—øDEqü·rï5ü#ð'Fw˜cp”£p'Æ †ð9¾Àuü7 D$‘‰ÌM±GI”B2#¶“JšJÓhÍe ßÃäxÿ(­eÌÏHïHïJWM‡«’¦¤+v%K™ª+n¥GyÕf·eÙ%{”}Œ=ÑžlO³§ÛöJ»ÏÞ’yúæ×·¤Û’Æéa/_f¿ ¤‡¾…ôçê¤_â/øê[H-Œt4a¤c9ºÒšÂHgRg`#]B+i€¡5´‘žd¤—i’’ªŒW”Ò¢ï!M`¤ã mf¤¿E·Iñ¹8"Ž‰â”8-Ίsâ¼xO¼/.ˆćâ#qQ|,>—ħâ3qY\WÅ5ƒb(ÒEzáHÿSÖÛÁ«.ðú³â ×Ó‘÷)qRûï>qwóÝÎ;}CEC3‡ +†f MÊR†Æþu048wpvØ^n×_ë/ +ׄKÃj86<òòÞ„m ODmý ü?ñˆÖ¢5ËQË%Ë‹–ç,;-Û£šçZvš®˜.K&é’´Êô6—Ŧbi—¼á•âo↸|çì3wÎÐ5j°l“R-ë"¢(DñÎß+Õ˜'3íA?ïÞf§FÞë™òùôî‚ŸOönf«.æµxŒ¹j#³Ùz–îaí.ôpÛÅÌ•Ï̲m¬=<¿þžöff>C{žAË.îíãomŠ”žmd®ÜÀ4Oqog.-‰Ì61›|w¶èK6ûW©ß-Ó¹dð|×øŒusl93îqtðé|‹%Û9n7#íƶƒÙù+fæöb[$v%\§2÷ƒ-ÅÉ5ƒëðžý'×KÌHà'æ_ÙÌÀøZ0¿Ò‹äf»Éï+Fø~!þÁzq‘Qß[ÆÍEÆïAYMuUåü +ÛU>¯¬tÙÅE…³f̘ž?mjÞ”\§#grö¤¬Ì ÕnS&¦O/§K›’lMJLˆ7:vTÌÈÑQ³I"8õdG®S©«ôÞ&_®SOwi¤“#ä—_ÑQ«éäó¶é&‡l~¼¼@Gƒ¦K™ …Ü[ªÈ6o|_,wŇ` v[ß0®h²ÞJ*ÑòX%ɪ„F‹`ƒêZ¦èqj¹æQ=>Ýäñ©Z‹7d6eª™Uͪ 6û›p¤VS㋯z‡-{_—ˆTJü-j|‰¦ ô8×òeŒ1%^9,۔̟UjJ¡W˜”Y0 «¦N{øw$¹2¹Š½½çZoS[ÈŒdµP§äsBÒ,^á½ï‹Ku)Áá¢òªjnü!³%KÍb?„¨×l62Ë+‚¾àüà|Ÿ_W‘‘Oõ´»sµBekY~Ýœ¥VVF&|<öÝ3²*Eï]ª…zË‚ìYÓ–öTÕÓ/Û<^¶çVmn†ãq{ÜüY=•µõh#=ÑÕßÞÂ……òƒÄxB“­µÜÆšxð²zT÷+Y=>†C ‰|+äA-ÍuäÛ¨Ù³DSu_¦xt_Ÿ[ŽD›¿ÄnùPý#%¨qšeŽ˜W3 ¶D,^º ?ƒj9ëWå8©ùÛŸ~“L‘ß3·›-j’lòŽHH,c!?ï\ç0à†SÕ` 7Æ(äA0ÐÏÃP¬9³ü'zªKÓö;¶Ymî(C“êQt_­f“}77zo@n×Ëü>¯WöxCò‚nÙxsÄ÷³$ëàxãk¶P\6}™ªç8dÞpÕ¥^@—]}ýbÖ²€üªÆ÷yY^˜ëT…óÅ©óëè/Œ8¢)f‰nspÊd©'&4)››Q¹ÎØPVfЭºG‡²'-Çá)#²Õl& ÆGÎMŸ¬¶ô³=>.—²¤D6|ýº|ýøè.ÿ (Î3Ž?ïíwÇY¸Ï]6‹àb8NQªPt2w6MA Š±Ú4­$Ó”$“š¦Ójj3“Ú&u&56ÆÝ=€èi´jS-6N'ý=IÿhÛdÚÉ´*GŸ÷á ˜ÖÃùøì»Ïî»û>Ïó}ŸMà‰€—Ó Þúòc·6¥ÍxŸ_¦«±8LóÄHÄQ*éí^},QŽ:Ë’­ MñJŠŠ3Î-Ûg^HÐÒœ—Â3Û¼Y¯näwi{Þv²Ã ÅvÅFKÇ;£jls§é°&0’øZQuƒ‹ÂÇõŠÉqÝÒÑDW,KÆ7c¥ðOÌe)O"nQºë5-5ÒvÖêA´¹µ¤®##¨ý[#r%Ý³Ä q†x›x‹x“ø⿉׉ïE¼Fœ"þ’x•x…ø "~ u|€ÿÿœŽ.//F¼@ŽOx÷µ_!~™øñKÄ/w¿@Wm'{+Ù#dã=æò5®/óêM maNª& …;VD¬Ë‹{RmlµgTMqæE30‹’ÉÁ “r,9žÜƒæ¸ŠÙ?:8¬b}\Xåñ.Å«vñJR3ÀÑ^'m=ýX³:|:®¨|Iraƒþd²w4ÀL$ÐMŽñ²UIþ;´¸×Whøonº³)ÏoPå7u7Ér‰'šìÙ°‰ß÷iŽA]èÇÝ›L–øH\fm2´qU›˜½Q‘H(¨FØ^¥jq@Kn3½’›¸j^Ãæ«Mèîè¿Êy?~Iî½üèäüýîéW9ï§üŸyqaÇ6£®]éR±Ø„û˜¬¿Ð¥&dýÙëÈþ6ÙùdË}Ü´ùûÑB“Š\VQýΣÚ-©C­>…à…õ±áþÎSà‚zè›3‹ z¹ùS(†nü[‹j?ˆÇ©Úp ëäÉ1ØÙÞTÔRÜlé^Q¼VÃ*¡»»0RØnYÓåêƒu…ë‹zÅîW€l1£°<§;l¡Øq͔㲈nÖk£Cº ºµj—¼Ÿã%$÷Œ—&ºÕ¯È£HTÑ.>'ßM&a1ÈÞIüÞ\œ (שúµS_UK‹¥E’rtSÜÀÆ&9®F÷$ðM'`)ê4ß–©Ù˜˜ý°b®˜€ýó':œè°`i1ÓbñÔòî‚)Kp§ÇŸ%,Þl ê U²ìÌ\ä¥ÆPvÐna+î¿…‚+6b1J™÷Øí\XíhÜ`€]»ƒÙ™|³À&`¥ ÷‰šÁ¬:ÏÃ?Ÿ½jZ%QK =™6­Ÿ&M—&ŠB¡æfOŽ-Çf“ú7xOµµö>Ó–ùàë^—?û™'¸ða š]¶ì´Dð™³ó +wæçæÝn +4/Ӛך7f2œ þl™‚¥+’¾æó*6e¥Ò?óGKd®Ê¦ÙØaá ȃRøêܹwæ(ËÎqÃÌ¥9=—æ(gwÆ>Ç$±23¿ פ̰õD¦ñ=Û‹`œì‹èíØIa÷š¯bK–`“ 1·áÆ÷pë¹Òôu¾Ín\‡µÒß +ñƒ¬ýžÖdwøï×´e{Ï!­ÑîèÑ´&‡ýSY ªêª`pµå"š«¸…aœýíìMëvëA¨‚:ÖBoGj TÒSÏEŠç½M=£q(3EZ1K(r¢NóYœ¾žÈyì ÃÇüa)Í“P#Çkj,¾:ï¦!USRSbú,yÚñ⒀檑ìi) F–|…É|~m¸hÈ4¼pɨh'€) ˜[;á)ñÖÕ aä;ÈÝÉÝíð¶áàîpÎÈGwQ° "wwh4æ 4e¶ KË_nˆbºÁ¨Ãì(~%Thf ,ÒÌ„`( ¥ ¯¡‰†Kœ€­¦ ¢K±ˆ.‘»ØE<[à’xŠ4³¦¦"·Ûã±ùÕJ[3Æ¡Z*A!gÁPsˆ1>ȶeŽ<Ü+Xø±ÕªVŠ½3¦e=`¾/Ÿ½)>eý&T¢²µbvßË Xy,“­:w6–mÌ—ÇÇlº)–ޞȱrï"o§f›&±¿ðJ·Ó†-9æÀŒÃÑzüÂ86Mµ¶Ú¼< “˜=‡¦S­U­U¦×–§¥üUáV #zÌUXXÕŠ.fN‹x„¬pÆÈ h¢ ­Á5âF°}¤%aB}?¨ooI¤š‚uõüz–RïoXŠhŠqIIï~â_¥˜QVÃÇãceü¶Ø›ÊÏs‡&`¯áv3ijZº>E5RòWW7[ƒUnOI1>}ÐíqsC­ +f#"›CË—á·ŸMð4„üªzùhayOo.+`ªþ;þàö}ñGšÉüõœ#X_Ûµù©£×žyºwíÎm£O<˾ÿò›ï + +"†å¹Ç…3c+åÜ•kžçùÝ99!g®Ç#¦g®žyeÇ‹sæ¹™W Ù¥×ÇÆð•šýu™õ5Lö£sJb»¯Jð‰<./›6ŠWn£x©Ùx¹ÌŠ—ØáK›šÆò”ÎΖb4 —SºÎ »Mšâ%tÀpŠ»§ÙIŸXê6^¥|…õIg× Eagᬡ°œ]¹Âp4Õ^R ”ÿzÜSv)›´+* ®n— +—»@Áõ岬›ý~$ÀUmÿ\ô­îËü!s±?±Ï?tqg±Óéla]oef3WþñµkO¾»ös½¬ƒU‹ìQö÷€DâG–5ežÈœÌÜ̼¿z#j„Q£>ÄÌ.?èŸÈëêOäu^6¯k²ë4dæÑ:9£°‡²Øñ_¾«6¶­« ßãk_\_Æñ·ãØNì$þJ줩sdk“¦-‚¨+m•tc+£•˜D)‚1¤‘ihb* Ñ¢©“hÙ5ç:¡I‡ºPÂ`ª°V0ö©Œ­ÓØD›ô†÷œ{;^Y>¬œóž8¹Ïû¼Ïóœ‘ôœÝá²™ã±æâ,G(î.0ÕY;ü¸ÉP¢\W±«3]õã1JH)÷5óQO™ˆÝ°°ÕB3³•†ÆéÖ &Zc_KÎS‹íÑ6CîÚ%»¥Ü ÚÊÉë²,ÿPþöe®+Å[_:÷'(GòäOgž dËêÙ6ùŽVž¬îªLÓFдëãOlÄ Ë  ?ä†Ð÷Üô5ÜÄMÜôTÛK³zŠ[EÅí·R‰àV-OXDqŽ)–GÒW˜<Ü#ÊÂúo1[ÈÚ 7 +‹°^M¥,eE +"Ì1XFR©l±¤/wç»R¡HÐKÐ#Ÿ‹Œ ™pÌ+Ð[î?ö/‚cóØœFkë²bs¤¾."3Žåëçô„!Í1A—ÌTGºº =ó•n…ž ‘ o%Xéﯭ"•RÞª]¡`7i#«gõ ²‚`M¬°$%ù–—ç<ÃÛ“éª×t-ÂMÔ)¬Žî¶û£KûçcI&O¦q* ¿~Ì–˜ÒœÎƒÅE¸½–ê§ -ÄêtÈÑ™I&Iâ9*E%bë0D1Xz +Er¾T çàx™+dC6U™kÆ]f“1Ëé’»G¿þÜ‘cÏÜ ›5–Pèò© üì[O<*ºÛúÝV w¯£gߦ@=4úÀ¡õôzÓ½wŒ¬IßQÔëï]²"VŸÜýÝ£;wN±€ñàL/€2õ2 M9ªOU¦—”ŘÕUT™Ó-™éıE3{Do%6«Ë$j_dXa[Yá&Ž%PPBqbßÐÔ$ij45Ö™–+µ+ØÂZ-*¨ C…Í!%Ü·*àŽ.@¿-RfÑ8U´o= —p_u*–rÐ ÒO!_2€”Hœ"_š·åòoÐ?ÑãGW¾é6›MýhìÆ)ùùB¦õgžðBûWž0=qâœ)“ ;ÞÊ>GäEOi´ª†åŠò ùUù¿ò¿PåÙƒG3:ql–ÍÞ¿÷aämm Á|n¬mÜeÀ|îD¹&]ÛªkL\Õµqµ*ûq‚ò|À8ÐUØ%.WK%cE™A™Á’£ä*F°c§£¯Df³&Š¸‘ nf€ê vŒ}!Z bÚ"ÅVp‡FhÔªâ(GH± Å!(¦zh±‹3ð¶=¤Ø o›êL£ª`︅›ÕÂñ(1ó2ØQÕíê-£íñöxÃÑLt·ÃK«[ ]ÎÆÂ'‰\ŸÙkŒ`0|¹¸¾9–½¦ŒÔ™ÇŽÿÔ4Zv9ìãšÆ©×·¨8sdÍÅí“ò3òÌdãžÓq]{K¯¶Õ;%B/«" ^ïôzk½ž›BïkµrKã¢×üÆ]Í{À‡0s¾‰&ºQç\ +ì[ EUØ°_ـƲí0‚l75üêÖ†{|´mÞ ÙWIŸ‰ã½Ž=JÛÈ{ÜõFùI£ÜöÿƒþVT¯7£zésàjB‡b±±(ÐÜ,|ÌÓ +®~õ9 ¹èlØf]t6ê-ëcÉFÈêÉë9Š‚!AMãªrOÐÁƒêáAg]ÂÂ+¯D1oæÍÁ_󹄛 +÷6ñðÄ:†>1Ú*ZVkK&=DµÑa>0ñãÙ“'nœØÑÁŸ½y*3´v‰ݺùúƒe§×~ù7ù¯Ž~ã‹ÏCë¢à΃ð„IæMîÜÑäÎÕ;QˆWÜ9BÝ91a¥îœhO@šñøÁž4„‰kú?ãšØl£XX ìÙœa·§ÉÑ|{„‰´§ùÃÁ0ñ´HÝÓ¿ܪi6Y\ã`6{YTõ²­Sví…ÓNÞÏ·ÇhíqªŽ‰šSÁ ö/†§ÅQô E¾†â*ŠËOQLÏòÅU ½-¥ ŠRÞŠ=À”|WöˆóƒÛFG ’á2;<\ÅŠr™­ú†ý" ——é!@:™7HLÄÑ8Ý‹‘½€‡=½rIUÉ÷ûùÞ äÃÙ^ZÌ“b(go'•Ð×q–tƒeF$ï(\P›³ñ6–‡L´Ý¿¼¿–:6|¡HŠn#:;—J§ØôÖ£R%ÍÃÃ\ö‹¾Ê°X1ú„?þÙG"‘‚—(˜'îýÅ™44¢!xÄKî¼>o ­¬}Ãd= WÌõI´€¾qgM“Ÿ»³œv€'-§»kž´™@z¶&RdQiFÅ K²P×MLP×ã@êÁ”‚`J˜ÒœÃé4$HB]º9£Ê@~Çí”ΉŒWqal ‚e{cT ú)OÃM9áNÂÎXXM(‹p=ƒ­aeUr: ÔTàÆ•÷¸Ý.fÓµ70£¦Üò®zÁâÑä«WþGwõÇ6qžáï³Ûç¸ÉÙgûb‡˜ÄG|NÎØ>;± NÈ 4ü” +B»f0 £Ð•²j¢íš µh :µLÕP¥hêF#º»3i,c™Æ4Š@Z¶J•&ö£«h×mêURgïûÙ&!¨¾äòýxuç<Ï÷¾Ïó–îLì|Ô²nûÐ=ùvÿª OdëÜ™ƒÏr¯ô ³æ­×­·J7â+ÛþóαW¨{êÔ®Ô¬$eTkd@µ@¦ç¡Úõ¨vW¼L´‚jÇý¨*m÷Pm‰D U¬Ù¸êà'Œt–ÁÚ°æÖ,¢©¬é¹°6,`Q!Œ¡¾4´á“êøâ Î!Ôêâ{PGj7ƒ:Ò‚P—ß.¸«²@¸LÞ0=ÂÅjˆÿ>´‚¨Â¯F¡äÄt¶3˦_ILïù±³N~tlq®UáÖåò^ۻ븳óÒ_èÑ£¬Ÿ`>ó}û~2¤W>¿%TzïÖŠd Ö‚¿ÿìäõ°eì§ÏðL½=[å0J¶Ì|`sA-ÈU*;Uª|å+•àqSa|ñºÂøZRÉ‚a“g|ù!õSÙž1Ò Ý-oÈÏßäARüÝ¢ìö§Ð^¹›š¡qNMqÂEZ•¥Tw&Á€:¡±m€Æ¶)XilÍLÏb%—à*ÇJI=Q– ‹zý“Q¢‘]}{6\&Û ¯Ô¿y è–y_9â–ñrÚûu~‡>ôM]iÞFÁ¶4BšÆ.CÒòÛLjqâ‚Å X &/‡p%¤í†m>çÆINcÂNÕÎ(pþN à…ôBªEeUȨŽK¸¬ŒG;;rÙE™t@dÞðÍè‹}?x7 .ë6nn,8ZJçþ´ú×jfí8Ûâ|È×U¾¹!Ç…iöêÊS)ŸËÅÙ~3ÞñÃCGúz¥¶-Ú“RìW¥©T˜vý1ÖqâÄsÝÝ-mÛ{÷Ç3ÃwcáM…Â&Ì¿}sÚwçå_¬ÜKÌöUÁù}Ugû*÷’æµ`¸ëÜ.÷ +¥h ÖQ²›¸!Ç!%œÔiHÖYÓíÅy :7–nÍQVâ®ÌÅ&ÈÅ0¨³éÂwN A¬h˜kM0Òë&Fœ.ââÀ[MŽQòqÎ:ðO©ãa/àmòâžgvåVP‘‡”Ë©t*Ž ¹¤ù¹EÇ&þý½åî–.ÁgYcél uÕ×v™œð„àN?ûìnÍ*Ÿï†m°1öÜ9»ýܹgâSgw§,÷u¯fþeß +(/#¥2ÊjåžJ•{ÇT™ +ê*Ë­âÄÿlYÖÀ+9‘µ=¦‹€Nê¶ £Þƒ®†ˆ›p·:(fм¹%l³€›YÀ2k`hh‰ÎÁ·˜VÓ*ºô_»M7ŒeÉÅa™k"èGp Í2!.̉s¾««KsµMÒ8Í¥åñ³ |ÐSç‚[‰Ê¦á‘*”a2¾àaÀÕÎ74spOEUÕa5Šæ¢sZ&H +úßï‡_ýù«™È+ü‚{’¶¨î­ºðúÍÜžõë÷65¹å/Jw릴~ˆÆo­[÷mžãlÇ¿\<¬‰ÅÖþ¹}çtˆÍjG×´}þü#Çú6Y>¬äâqdïµ™ÏÖœ I‹¯Ì­²—"ah´.—¦MÊØ“uÊØSi¸¾\ eÆ^4Ê ¶­íÑÜqÅ×ì\"Ú<Ú e\õÓ^xºîï03é¦bFKCAÂ:/BéìŒB%'™4¨¯šSE‰U”]ÔYPbлÃ"cY‚Ö+‡v ÄÁj·ûÄÀFÉç¡ 9<¥æãÊêÍ6oõYDw°ýÚ…íõ¹e“öͧ–ÅÃ+¼ödk¶mÿwWx¼µ®@«¤9–?ùªº9¯ä»üréØ@_Jm}"“~ú;íØSšùÑõMkÒ¿ûú/Ww©ôiÿÁ~?p¸8Gj‘•+¦±å×íU}`l-4ýŒ-ë`*N.Ü5ˆz/'‘sw L°ÁÙé(9mx­€ô¥¸UòZ½~;šV¬šºŸ×Ém#™¤¿íO{ž¼Naµ¨-ð3ß{úb6“¨ÞDKª»Yz´Ú5–•Ÿªû”TðCÿg»Üc›:Ï0þ}>Žc;9¾žÄwû$vìرMl'Ÿ$`'qH½!Œ•2ZXW•r먄@b¬]é®­P×ÉÇN +±Y#kÙ¸”©AZ6it•XÚM“úWÁÙûÛäÒ)ÂÑùüCÎû>Ïïy?WÁ /]Á0¢é“¹}/ŪJÓ³)åxµi5ëŠj`ô H(¥NÇÔ‡ÆÎ8tZ<Ðßtqôæ‹Ã?9|9~è}¿lC%­fª×F¢klVš–©OŸÛx.rè}ÏB¿ÅGP +×.¡Vw‘Z3Ej±Ej­ÅŽ¹BmY¡†„Xª­TÜ<­¬ x|¹œP+q‹×©èûé$¡'P‹#âW- 'P‹+ŠßhEV3¿Äo$â/ÛØyŒÙX"~–Nëd䊈? =É¥“¹tb1΋p^Œ3[b Î’ gI.ApÆ[màƒ^ðAlá…c2T•Ü!š‡\q.'PN¢Ú©%¡ôvÇ}¦šÑ=Ç)öÒ¾_²¹6¨3v÷ÈF’#ædà¢FbRol×ú…ݯ3†Åe»¯?}>¨×1Ìî·¹†•£½)©÷ûÖKãüÞ7"òÔ2£ž–c$I]kÈþç'\ÿš`йm÷±¿4vŸ:ûÎ_wœMôF߈ ëg3¢õëÈ„.##šÈ²a‹¼žg¹ø•˜ÉÂÒ½ËÖÅïäèTß3i›¹6[_ï®›ÎÍä²âð2–ˆ?Ûf¬ +ûs³ü&±ÿ&ϹϹ” Øà9œµ¶n£’n1ÚèÙ©éYzjöCÏz“t)@ÏNÏÖóî=%äœÚôz©DL^º +¿ä:ÕÇ.©4– 1-ÇP1UˆE\N\¼€™Ù”HðñòºÝœB›ÿÇõ>ÓjoM¨ ”¤¹×n?|‹Å,ºp²Ã ~¨}ŸÂbÊ|bîJ¥²yë*¸wÇö ?¤¥’€ÿÉšw_?4¡,'ŽÛO_ø¬ºÏ¶gåÑöÿ¼tðà¯Vh̶cøØ!}Pa¦­ÊZ±‹òh}úŸïm­®¬bDé#;jÚL£Žl¯i3F#ߌì=»¿×³3ºÇä8I’_;7KÝ,û äÀÇÿ¡R[ +sB$¤–)„®,ÎڿϘZ)!œœ@,†‹ó±Tü#ßb€V0)ßšllƱ˜«~R¦DJ9É rÈ d¿¢ì#2 ƒ3_Ñéàö’eƒÉ`¢ï ËeÔè&™ãu7B–\1p&Î˹!OH¢4Ãݼ²>ÊÅB¬„Ôd„š±}¦,â)%]œ'¤U¬C8Ù-•j{¼\§Æ˜ê‘ ¶µo·Ü (WKn‡Ô¦®P•Ô*DÈ{5a½ÅìiÐK,'oê“šån‹Ùkà>[Š‹ÇcXiÂÜŽ#ù/>Lcc짿Y÷5Ûôë­Ê¤Ò +H‹ÄÜ¿E–²,²Âû›%õ÷¢Ât0%ÔŽm*¨‹n*” gaAõ9ë!Eq\VÄã¼Çv Ñ~Þ© g̳õ•*r RÑWá –ÍùͼÇ}WÍÂáú“lrh<9ž.lbh<1žNÛ¹wÄŠ®c<ªËbŒÄjmXÛ$jÀãÒcqq]®0†µBÚ-"½®­ò•4ë”ûš‘A¿¥UýÂÏì± +1>ìr*”].—S©èº÷}ܽg‹×çÜ54”ø÷$9oìŽÖ,/klõùZÉ?Ð- º}æ­Uèó%u‹/Ñ­½¨[[Ôd½;cªÛ–Tœ÷Báô«ãßRèdlniqÕó Ì+¼Ý œ¬Œ2ÑŠØÝ–CðŒ¾?2…üQæ5²p4,pf¢Œ©ž¯ˆ•g*£æz*kŠÂæòÒ¿š’1ÙaK”)Ï„ì°Ï+š_…þ¯¬ƒÂQ‘:éPú…B¨¥‹HšäÙA¯ór •±«G6ÐÞ>h½]·óÜÌFv͛ ¾:gXg×™:}ÚÍíkh¶¯ôø-}­¤u^ÚçžJÛ×øêÆV;OZCÝ~ÿñ诱;jSnwªûgÏ;êL½æü'‚¾1êšûJ$.Ðþ%]2ÕýiIÝÊ¥ê†vÌ«[Íbzâ“R9’ËH“$Ð$)eÊ‚¼y¹>$"¡ZÍ‚Zá…ÂtnMþ˜1€Ã·µ¯ÞfÉ­•˜[¿[PÈïb¯è“Ò‹~³ekÁ¸Ñ¼Ipî_e¨4€¾Zò&ƒKôæ)êm[‘“72Aoá¢A«€“,™îZÐÏö^E#“UE¢?Ÿ‚÷€1oróîïf¶wàDÂE,¬Ù´ùê¢úÀ—µ˜ÚÚaõÃîÎîÎN‚Pô—¾Ã|,Bnpzœž]Û#6~sgçÿø®úØ&Î;|ïù㜜ãœ}>;Ž?âÅəĎ?ŽÄvœ€“O „Àƒð¥ ZXù(I§Ž´„FÚ–PU°N›ÄÐèf_‚ V—å´ŽA+ÔUÚÔI“¶~ˆN¢-Rµ‚³ß{w ÃÕš³ìËë7±ßçy~Ïïùy'‡v{3 D ï®ÉÉžþ=W<®ŽîôjŠÏèí gå@v›j{‡"<öé:§CµÈ÷»]öVh¡ßpW¶À\!ÅÕ~¡-ÿ/UÇÑ…ûZ'°ßL\,`Eû•ý•*û¿—<ŠÛóË@`?‰»dº¤º$ç€.oFÉ$0É´i â.ÒÆÄ‹@^vy\ž'M1ÀM±.ÇMÑ%zÄ:1 6ÅfÕ3b…ý-Í°®‘ŠEr^˜Áä¬Ôh‚I¤¿cÝ­§÷ÈeóË*Áævmâ 'ÞrÛÌr3ŸÀŸÿ"Ók Ïòî–EТýÛºV7^Øô¥ 1۷𩦠ò$GÔg•4©]D¹Vœ®KZ9Mš2Zå€:9}O2=&i§I§ÅÔ\…‹¶99\[hÖ 5ƒ·2wñÞ)91š´°÷ŠÃeö9inošãÌÚl€Š‚Ǭæh ½¢YœÇV9[åDè‹«!cˆmÏP(6ÞÑƘT>3þ#d6 §_éÜ;RDz»†ö¬h +Y¬h×[oϵ¡£Íw}~¿ž8±öìµ±Ñ×­…׆Ñ rá‹ÇÐ\ý…ˆÕÈV ÀeNZxYQ ¼¯(°UÅæ€d“è0Xì; b&˘4Gxå©2°!•M%˜ùl1h³ÚË|ÃLNa<›$ÂL³4Æ&:6À½˜pJca/¾‹{s|€Ô`“r؂؈ï^#b:$&î£ Áà›k/OlSY1RuN3ËV¢¥E"+yÌ!àÿ+ˆL3<%²VÔf"ð"‡Zà³2\k¿”ülJá ÀWÈ‚²Ø \ +d® µ˜ üƒ½ßU|Çoau‚å)Âà/l¶Û½“í]ÉŽdjœEæªÄÆÜoâbŽôÊÁ-­e•1†ÙVãñø™þ8FßZVd¨ôŸª(Åmå|?9}dªù? ¾{l¯o00ºp Óoe)Íã‹ Åf º†VDÌÇ‘¯˜~³Š_õÆñi»çðÈ3™áŸð.p·ÊoyÌʺøEY7ÁÌ+>f®¬š+ v¥˜[·˜Œo>[QÆÜ›« ¡`¨š+s3Öe5N““3¢fU¯SU³¡ÿc$Ð`µ,Ž >^†qÑ:öZG’Ôé[‡im‡qÑ~‡ÐÞ=ê +Ã,¾Ô Í!”ÖSép$Ír]ëM~¤ø", Ÿ’7Á‘_q‡Ð"BIÂCc¥Ÿ—Br0™ŒP“:kþIbä +°A"x¯¸LØ@ùnsï·„œi€]dƒ¼kê³k„HìnÝ·±ÿ*±#káAó³ÆZ&„?rÎX‹/ƒ¾#ÃàÈ©õAq! ñ\ƒ¼j‚" x4À „ÄÔºñŠ—£Ä4ñ/ðІ¢ ¼ÌšÞ.DÊF©éç¢åQN‰Œ1( ¸äQW!”|Ö=´bË!š® L§ciØÉSgêOUYŠiCÄy0¹o¤´XX>>ž¨Õ– ÝáÄ÷à EQäç‚á­ºy¾”M†»ËÉÏVX{’Éõ3ÞÚá}@(콿˜]Ä3’ÙE0j>t®'ùп.5Ë--©yÈ€zG»Æq•8ô(—»‹.—˜m0Nææs9I‹Ô|Ö@AHÂA1ÎF}qÐr,Ç­Œ!¡|¾(¥ÑÿO¢ö󧣫.é®Ð%ví.ƒ»$´sYw©}ëIW n¿¿Ÿ;Õ×› Òôíh‡Kll{3ÞUanþP¯Ý;ŸÜÖžNWÖ/—³dzá­]ó!±‚¸¤Ôú’’W*µ©AV2ÁªJN©iâ¦ÄÊJN‚S—B¥×€¢ÝëRRM•¬7£ËÍK‰R¶ãH(úÈ$Tò Êr³>¯‘Æ5Ï°pAÍ?Â5A‚Àš™õÒFŒµY,fEFôŠ´h”Ó8l)#»R"+c¸Hª CDüQ¿ž"äùïéùÐnC3­akqåþ?:kËbmíE}Á: ÉÙûåð]oó¤HM°)ÿÕ…fòQí²[•\6«qå?øË`'*ò%½õ=‹ÅšÿbþKîkD®îÊ_jµužó ¶á~ÙK"ìÈwÀUˆÖW©ê’TW «®W=Ã(…e¤e:ÌÅ–K=øÆ. +ëF¶Ã¥Ñ‹ä í ˆåÇlƒ±àÏ´þ‚F»Rbéw‚¼¿(â ûªÅQ½ÚhšX?ñàˆ—9Ö¹'àÆp*•ÿù¹Ì‰\U=##zƒ^‡P)]}#kzø(úéGºWE®cåÏìË?zü~w·rJÝkàŒ›ˆµ§Ü¬œr©w´©§ü.Z\o“OÙ §ìTO]µ´àÓ²òi}Ô·ž–5`=Äb~¥~ôz®ÞÏ+(X°—(Eb4^Û´æ¼ïì¨o2ùB¼¿XpÒíµ†ÖÚJÑÈžûaSt|Ìefõ#ƒÎp¦Xy¹¹¤1:öïFoÜ:Ø9žîrÏF’9³»®™ÏL^¥)gEß±Œ”‰®¼ž¿s}ó>TÙ\$¬tÝŒo7¬eo>Úµ+2t½þWÝ(KsîÁÖá—¾~üÞÔézoþžõZxðøÍCÍ?!½® h]D±‘ðcMtIVÅPÆ*£˜D¯{¤Œ¢ª²4­ƒ”å'vI¦ÿ²_õ1m]Wü<¿gž1)¥‚Á!˜¸ !`2‚‚ûFÛc·¶â«QÂÇ3àÔ| ;fY–N™Ô/&´eJÒÂÖÒ&¨R픬!6EKÕ¬[¥®Så%š¦uUWíªM£ÅkìýÎóceé:©Òö_ýô»¿sî=÷ëœ{Þ»v¶îÀu2Vz;òn17ïÎÜ<¼|´Ì‹9*9««ª«ô\D&:J‘‰/W¹ª]•¸ÍsòÅ B{Ò_H:Ý8ÑÊÒ΄üïæ -%9E×: ²h -1‡s¼÷ª?ih¨Å»ßí¿ÇšU`6›×µ×­ ?o/É7g޺Ƙo©{ø.ßúgG½£­ÉÅ“-C9jòÍoô_~罃бüÈ'ßþÖ`eå¦^ÿwõúÍ=sM¿ò¶&/¾—üAò£äc›ïã¼#l_úÓ/"ßÜ{ë]£,ñ/fÿnï +ß(¼qÁd‘ýߤÙk½ä7^ 2)Éùä3&Ë!Ê“Vý„ƧӒ±@OI$”Hè”ÈÅtÄ#<ŽÆD5.“ÓøZêŠô.m7vÐnÌ«@¾[ +_£Á %õÌ—mXH-¡ÝŠúRy:uv0Û\f´å¢­úôEô}Bž¦#àr´íÊ1Θ÷9O[CzïQqšLâ"}MtS êìØk‰AIž•(PžA¡{ Jjv9wbüjÌU Ý›kè[>Û\Œ×Ž67úU`î +p.l®ŠÓ©ÚJ¤Ë†p±îKÒꈂ€¤û­‘mXFÛÑB¢ä ø©úAÔï×ú"zÛ3ÜÆ{kèœÖ6HV@Í2ÖÂã{´x-¤>Dý!Ô?ŠºÃBGr^Ó’9ƒh‡&£¯.+z}#ωy'¢T8ÍÉ·t~]ç7ôö:fùÑÔßQwcªÅsÒñüðgÙJ+ãóÊ>åµÃþË̬¯Ô¯0çŸiîÏ2ìfX×âÀûM³™™sÏ;çŸù4§.2‹6•‚©?CŸãƾù<ÂþÁ›X¯aݤPÐØCvÎWΙ4§Þ_Ñ9‡9nfŽç63ÎñE–Åãô=> ìïÏã•Üçü»™á;ÞkxXHCØSÀa _ú#ÃO˜øbN‡ý¥£ èçwE@ DÐw?¡år mXÿ³@Ú÷a\Ÿø µ[è9A¯Ê açi?çi㺺UN>ÏÇ€3¤=”^çÊši9½^äwzíoëkŸÓ÷ÕÞJrQÚ èŒc°á¿<=ôýÏ}>^ýqCLôˆïHI)iŒe,É;ä¨5µeþÐ_>ÿ›‡ïJÂa +“LûHÂwo-ÍÄb?‰ÚõÈLé÷*¢ºôíŠ?¶´ZZ– ·êrä!´ +R&´0Òe*éš.([(Ñe‘*‡.K»u9òà cã&üCÃ!Ûær[µ¢ls(N[£o2à …-}öM¨U¶ú@À¦™m¾ o"ìS«šwµ·Þß]ÑÒè ùGÇM¡¾€à‹ÔRÑ8  òcKÃ"m¦*WŒ¶‘¥z#ùh’(CxÔB}°|å©T‹z´ÀŸŽÔ4Ø£dËfÚEípçýÔMÚ8 „^£Xƒš sãïBŸ!\NÚ<_¤çÿËVćîz¥jøóúÙ_}6^¬¸"“ cÕc´&Ú‚Ë)oØÛ`insÇDq¯K¼¤A—lVN)W1´÷ŒâQ¼ö +ÏËÛvÕ5z” ÓÍÌxL}^5ÀpH}DWÅ+óàГC—Õë>iô«{\b†OF3÷ì]¢"R½îóø†báÞ)<çhØ{^°P@°jú+ÈçTõzܱ¯l¯èª°–v/a‡¨H/êՕ原Š¿?_4†\5jm f¼v¶6â<é<êœs䩶ñŽÙŽHçÉΣs3á@x6ùÄã¾øÐJÿøl> +endobj +287 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.washingtongroup-disability.com/fileadmin/uploads/wg/Documents/Questions/Washington_Group_Questionnaire__1_-_WG_Short_Set_on_Functioning.pdf.) +>> +endobj +288 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.washingtongroup-disability.com/fileadmin/uploads/wg/Documents/Questions/Washington_Group_Questionnaire__1_-_WG_Short_Set_on_Functioning.pdf.) +>> +endobj +289 0 obj +<< +/IsMap false +/S /URI +/URI (https://interagencystandingcommittee.org/iasc-guidelines-on-inclusion-of-persons-with-disabilities-in-humanitarian-action-2019) +>> +endobj +290 0 obj +<< +/IsMap false +/S /URI +/URI (https://interagencystandingcommittee.org/iasc-guidelines-on-inclusion-of-persons-with-disabilities-in-humanitarian-action-2019) +>> +endobj +291 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.ifrc.org/sites/default/files/2021-08/All-under-one-roof_EN.pdf.) +>> +endobj +292 0 obj +<< +/IsMap false +/S /URI +/URI (https://www.ifrc.org/sites/default/files/2021-08/All-under-one-roof_EN.pdf.) +>> +endobj +293 0 obj +<< +/IsMap false +/S /URI +/URI (https://askjan.org/publications/Topic-Downloads.cfm?pubid=962628) +>> +endobj +294 0 obj +<< +/IsMap false +/S /URI +/URI (https://apps.who.int/iris/handle/10665/207694) +>> +endobj +295 0 obj +<< +/IsMap false +/S /URI +/URI (https://gadrrres.net/wp-content/uploads/2022/10/CSSF-2022-2030-EN.pdf) +>> +endobj +296 0 obj +<< +/IsMap false +/S /URI +/URI (https://gadrrres.net/wp-content/uploads/2022/10/CSSF-2022-2030-EN.pdf) +>> +endobj +297 0 obj +<< +/BaseFont /OXWOSQ+Palatino-Italic +/CIDSystemInfo 319 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 320 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [2 [250] 35 [722] 37 [667] 69 [407 500 389] 75 [278] 79 [778 556 444] 84 [389] 86 [333] +384 [545]] +>> +endobj +298 0 obj +[321 0 R] +endobj +299 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +300 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 322 0 R +/FontName /PTITTT+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +301 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +303 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 323 0 R +/FontName /GDXRXL+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +304 0 obj +<< +/Filter /FlateDecode +/Length 423 +>> +stream +H‰\“ÍnÛ0„ï| +“C _.c@`Ø àCÚ¢n@–hW@, ´|ðÛwG#¤@Èühî ëu²;ìC?ÛäGÛc˜í¹ºnã=¶ÁžÂ¥L–Û®oçu·|¶×f2‰ŠÛ®‡á<šª²ÉO=¼ÍñaŸ¶Ýx +Ï&ù»ûábŸ~ïŽÏ69Þ§é3\Ã0ÛÔÖµíÂY>šé[s 6Yd/‡NÏûùñ¢š¿S°ù²Ï¦»p›š6Äf¸S¥úÔ¶zק6aèþ;/WÙéÜþi¢©²w-NS¼µ©òtÙ뢼#ïÀoä705º˜ª`}ú"'çà-y«\f ë¢\ pI.ÁŽìÀòÌ{KÜëèïàïèãàãèãàãèãà#¼Wp¯P+Ð +µ­P+Ð +µ²heí Ø“=ø•ü +fNANa¯½’=yf~A~Y{¾yöÍ£ožÙ<²yfóÈæ™Í#›g6lžÙ<²yfóÈæ™Ç#Ï5yšÁgËïuÁ@¬¿> +endobj +306 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +308 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +309 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/J/l/one/six/space/two/u/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 326 0 R +/FontName /IQAIZH+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +310 0 obj +<< +/Filter /FlateDecode +/Length 270 +>> +stream +H‰\‘ÍjÄ Çï>Åw‹I¶M H`I)äКöd…FŘCÞ¾]¶PAç7ÌüufäMûÜ€x+; 0j£<.võaÀI– ´ 7/žrîã$î¶%àÜšÑ2!€Rp ~ƒÃEÙŒ¿{…^› ßMwÞ­ÎýàŒ&@u +GºèµwoýŒÀ£ìÔ*Šë°Hó—ñµ9„"úy*FZ…‹ë%úÞLÈDF«ñB«fhÔ¿x•TÃ(¯½g¢Øs³Œ çÄçÈyâ|ç"q±s™¸$~¸D&ÃDÙD&ÃÄÓcd2ÄUâ*Ör{u¯Š†÷–åê=u'ÛÜÔïŸà¬Rí›ý +0–Pæ +endstream +endobj +311 0 obj +[321 0 R] +endobj +312 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +313 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +314 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 327 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 328 0 R +/FontName /TRRBBR+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +315 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +316 0 obj +<< +/Ascent 927 +/CapHeight 692 +/CIDSet 329 0 R +/Descent -283 +/Flags 6 +/FontBBox [-166 -283 1021 927] +/FontFamily (Palatino) +/FontFile2 330 0 R +/FontName /IVZTMC+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +317 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +318 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 331 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 332 0 R +/FontName /FXYWBI+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +319 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +320 0 obj +<< +/Ascent 941 +/CapHeight 692 +/CIDSet 333 0 R +/Descent -281 +/Flags 70 +/FontBBox [-363 -281 1012 941] +/FontFamily (Palatino) +/FontFile2 334 0 R +/FontName /OXWOSQ+Palatino-Italic +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle -10 +/StemV 72 +/Type /FontDescriptor +/XHeight 482 +>> +endobj +321 0 obj +<< +/BaseFont /WTWONF+Wingdings-Regular +/CIDSystemInfo 335 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 336 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +322 0 obj +<< +/Filter /FlateDecode +/Length 601 +/Subtype /Type1C +>> +stream +H‰|PMLQÞGéV¤¬‘¸„Sào€¶’RÅC Á ˜T[¯`Ë.°Xºdw)6<¦Jcöb”„ƒá¬ž уc ဠ‰+MŒa¶ $¾­O¾Ã—ù¾yß7“!\yGñÇ“=Éd²9–×””×ÔÖ„<¢¤ÕŒÔ¥f¥Ò»ŽØ¾rû°WÄ£8½Ó»sÑ ÀÊÁ·Å²j®Œõ¯]ê(óôTGG[‹ƒážn¡m¡P¨„aÚ)©i™&òº!è´'Û¯j£ª–2d)@;3ZŠÐ©&ë²–sÄ¿[QE§²b ÉM±æ Âüš,QCKIòHJ»AU§óøÏ(ªd)ˢײŠÃušÊJA–¢–¦ô«cYCSd=ìN$ó£2=C%y€cïäB\;çf×ãbœÁ½"Òð¸°h_$ ,º +åöT1¾;ÅÃ4¾1 +Ý`ñHñÙõìò½¥¢È8o¿ +&,Þ€˜E–¶]°nSè… {xiá%†0/<šË#ãdi.sA â “›“Ÿý÷ù'çÎÎÇ€Ççµ?Š‘V¼ÊcÕLÓƒvÿ]>÷Qùb¼G7¼¨=±á…ü„eß³È3pÁp¹`¢±î6b/ö-cø rã'ÌBO‚ØX' ®<Åj°n «º/¨¿á840ûr½0—³W·øØÞ¾šm{„-üuªxá¶iß2¡Ù4Í“Çëæ'Óä›&˜4oîÃsͬðÏ¥û¼oåÚþíJÛ{Èÿ0vÛ& +endstream +endobj +323 0 obj +<< +/Filter /FlateDecode +/Length 3278 +/Subtype /Type1C +>> +stream +H‰|TiTW®êêªn‰”#BÓåTµ¢‚âÐ`tpAAD‰â‚t£m¥iö­Q£4ØèѸ±@MÌ€ôBÓ­5ê¨QgŒÑ ¸D4Êgpnu^3g +rrN~Ì™SçÜz÷-ß½ßwß»8&•`8ŽX¼0&2&lRx¶N§ŽÐ%O ÓnÙªXâ…Q¸à-~?”ASPÙϧ&áê0p¿4ʳà #p\ÚÕ“°1aArŠxZ<¥š6{öôÉvæ  š¬š0hgªBÔÉ›5ª¨ì4½f{šjiR|².%Y§×¨ýU!‰‰ªAˆ4•N“¦Ñe Lþ’“J›¦Òhõ[5:Uœ¸¸E+ž×iÔ*½.N­Ù§ûX•<°ò7áÿ„Ri“T"–*:I;àEéÅÉ4U\’zªˆ’<%>9=I¯ÓjÒü§†F­ÊNѨf©Ôš ÃÅóÄ°aLa,†Á°±l"†MÅ°6_Ž…K±([‹aÉvÃ÷`ØDQf,‹ÀR0v +ëÃqî”’u’’c’"Œ8At‚4IúT‘ÈgÔxª•ú,@¶@v^.—¯;‡àCV9:ä©ïQâÑíïìŠÅ–:…WN\´cD©T(vE¸‹)(C—4’ð‚B*ÔÁÀ€ã> sSÇ0‰>%œgFhÀ£Q'¼@‡Ÿqy2§Z€ªºV4rGx +Ârãä´á~¡“xi`ê+Ž×È­NKËÉJåÓJ*3êXŸB2qƒ@ñ |ëÒ’k)ô—~-IG¬Â3 nvÀM'û\„ûŒCE<*({é×Ë‚÷#B>¤½A2~—šI&fµh­øæ„KaÕ-À»y:¢Ô&ÜkƉƒyÛÐ]“¬ÍNB¼ÿâŸð®òþú7ˆ]™¢‰ãª·‘u§Ú¿¼Æ‚äôü$€–¢EüŠpr»L¤¿°~‘NH§F¤“9H'³ŽuË¥ÿ‹¤ùx¬ðêBi¦×ŠûB˜ÇÈ@:(´ÇH®§Pq è=YneB&©xq¬åpã!‹ÜDÒ|ª­ˆíBé#éÚ"›à²‰ªÂñkL–&ªp%‹–ŒX«EÆðÇKŽÂœ¾ÂJÎø¨ú}mE šŒbÑNð ®U <ýÝV¡×ŠwÙ……¢k/³»ÝQr^Ô´×|ã +õ›“Ï^+ßl¿}‘û:ÊÿOh¶ò“1¼} ³ÿsÛ~qcb‚æ•ðh +y¢Ä8õÞ}ÉýA©Ú­pd˜|„wT GÀbEOúá}íPKѨûx†+0s`W—+é´»eôóÒë›2„_Uêj¼ìŠXx×^ʉ -¹»û!gÚÛÚ¶Ðùá{pÈ=ŠluÆ¢§”¢rôÞ¹8cɶê?G?zUcÈ ý'ê~Í­1|ÙNtyÛáZÕ½§ycÍĪÀòˆC™r'•²À©ï˽§=])7Éœ¼pù¹ÒžÝštŠkR¯ªžÁ®_¹{ÇfÞ®eöU6ìocß~7vúâ•>¼Š¢gYdůءÂN472©·².³0öÎ?õF8ÑÊO4o2ßSv4ÝürKVAWe%Ëõë*ÃXDÍ^à7õFàþ•Æ²qžrVx¤oäêꎞ- +D[qд ñnwÑbuçÆC2EÿÍ`sÐN¶Êçö—¡ÍoCÅÚ+@úÄsÂøuîI24{îDøß„yœ0IFû¬;3àü­^'ì±+òoïÝMF‹Y +dORÿ…øMÑ…I›¸ò­d}ÃÙÃÍ,P{?¼NY(CkL– B©p,k]ü÷û-Mµ\¥È;JÀŸQ8v‹Š‹¸Øœ kƒÙÖŸ¾ 2à*úŠyzÿ@T!ÆÉ™^vxڮȃ¡Þ +GÙ¤‰Zb¾”xŸíü1̃qA½È30Bþ1o„¿Æº{Dü-Æ8£–; LeÙѲ#Ü÷µß8î°€_™€$¼Â†‡MC’?„·ßÍàŒGŒG+éñâ ²á¶vñþ]f © ¹‘,"ætÁp o¾¦£)¯ Ž¯´G³ÖUF°h¬ø:Æýè ümgÍáã<]ü›Œmíð½]áfºÖ2è¢QfK_Ó2‹E~¾hæ^ùtûG÷%GG=g³- [(cƒ±ùŒRè‘ź2yÆÂâNáÎX¶!T¬xôkÀ`øÍç}.F/«äË +LÙJ:¼ÈÛÌð¡·Ùák'!,#c:Xzð¨òövðCÓÐ力Ñè'¾À=rÔªâ +ÍdAÊ–üE¬_ÐðçËÌÌ·ÛzÞ² ?5nI O#±çËÍ°ÞŠ?²0Â[Äd̈9)û±º«ûóê]»Žråfò`~ÊÁD6!¾ )‰W«óW„(SC5·ÝËet1ÒXáC«`1ü*C§,èÅ+㤑²fÆžŸÌŽF’(x<<Ÿ\<ë¨çM‹)4fþšñá±UŸmãrÔdÊ™«ù_±n”7Ÿå­æú«0L ™¢Ói2›Îp1¨É)Îþ$— M[¡^Æ"2ò`¼â(îä½nÞ·+^ˆ=FÐǺõ2EoË—IÏÉLO/Ïú¬þ¿DVmLSgáÞªj¸Ô•^½wK6 ÎME7çÇÜ4NÉ°FÊG(N‘H[ +(­œsô‹"YÀªk X¹?øÈØtÊ爷¹É–àÈt‰çº×{o YrsßäMÞç9çä9Ï9ö–6×RŠKùîE•È*R>Wa8Œ¥:(i«øE-¡&Ä€úIGCó)+3ä¸v‹ïMÄ]çaTÒÜèÀq^uüßÒzw 9,:ÏÃ7ØŽB:ÒSòtE‡˜r®â¨îð<9Z–âßFoÌÈÚ]ÀšHªßø ¡&Ísžz¶ /©=<5.²öG£…ù®e8p‡ž™-C¶á2dlLR'1èŠñáÿ@°°äð ›L« —¡p4g5Z–O/‡EÏ`áO° bVÏ hös<^#t Z¸quLì¦Gñtæ‚78Úr’D¨êÙªôã!ìzOy\âã˜àãih!¨±³ƒÎë¶a¼•X“{[•ÐY9Æ]‹qUä;è\¹’K«ÉŒÆ˜W¸~íÈJh—g’o¢Ž²Ý•)zuô ²¦O¨Úré«8Ä&a]h“H²õ…’h¬1דÁXÍ”ìÊÏ.)-,̯(©µgË-m^÷÷ƒ=¿@,¼ÿÊSH¼ƒÜärô¹5˜°ö|•·ê"ÞFoË¥é ÷†t ‰¡]Ð!Ó‰^‰w¹§.À Óî_÷tÙ +>_‚w^ô +bð?ð‰ÝxX Öë&„OÏæ‡Á2ChZƒÂp“,C±¸Vá°Öâ4bYP ©¬I·ßžLÇÄmFIJÛ@Òßn¿ÄÖt•%šê,ú ÕØädߧ—*ÙX©á¥Aïê>ÜÕü3\€º'¬:Ê‹¢°Q;'u:·š+ÂF­É©:\Àjr8ѨwNBMýáºû ½íØ1CÝvxjêŒîÈWtægº¢böÀŠ Š² ¥ó˜]oJ-g±XÚ-$ʵ<°Hð•Öo¯æá«qË|¦5K1¿>"Ü·€‡ÍQ‚_öŸÃZ³â +endstream +endobj +324 0 obj +<< +/Filter /FlateDecode +/Length 1950 +/Subtype /Type1C +>> +stream +H‰|TkPWîf˜nP2&¶“iìnÅÆ QŒDÔ„AWE`D˜Åá¥ÃÀÊÃAž£øà%Š”(ë¨DPÁ`i¶\£®µ©µØlÌšMínUN“kªöÖVí¯­[}êžÇ=ç;§¿{IÂÓƒ IrnDxÂöÑK5…]JZ¬A¿lþ”Ô,·K”8Rb<%?…¢?ùüŸKäpg|ÿÞ„Ÿ—ßlƒ$Ÿÿm£>ÍÈÌ?\³fE [†LËÅË—/Ÿ–!bxš~VŒ+4æk³bdNªÞ«7¤äkÓ‚Äð}ûÄéFÑ 5j &·ñ- QgµºüL­ALÁÎ >oЦ‰ù†”4mvŠ!KÔ»=ÿ£¦ÿŸR¢.GĹÄm9:·—F1%'-gÑOWIÕäätZcPðçqñ…¹Zqµ˜¦M'/â‚XDÄG$±$># 5Al&Œˆó ’‚ÅC%4D,a ß‘ñä€Ç232Nfô¤ «(Û!@š…¡´Ú/p÷*{õ;T iº~'¥¸YK$ ‡ +›€†L˜dõ­8cr© ”†Y±¯ÐºEŸé‹²øDËÛzn·Þâ&š +ÌÂQ­­D3¶ ¥ŠI^3¾áÇaWÓå>¾šbÂvË™6hØR[©µŒÏ-ÓæqÙ¦æîÁ+ÎÇ‚âG ÌG¤I"‡TóìPCD1a·/㪽/·Sñ½·÷ßâ€ÏIø\€¥ö•GÞ\t¢1]/XÁ‰ÔonRÌÁk´5‹‡hèeëªðâûŽwíãîKP Œk.õ7úóÝå|eme}½Ê]v!Rbræ’nÒŒ Ã8ÀZ*[Kø½ú¼ .!}àÉĹ/îõŸËÑÕ +Ue¶²r•¢³”c øÌ »a@¨Lª†(¶ÚQs¶K\x£Pd8 +@4ZþC „}YÛq—Ïù¡]»Žì䢷žº\ûV°ÝÕN×07Ú¸]/(þ‚´0ïÌ…"à,o»YŒ»y!½/YXæuÅv¹•ÈÛsúךà‚Ñ—KÁÇuµ¥¿K°PŸ&dFÅŵµdó:ä'7=*~È}ý¤ñú¨p÷VË‹—*pÒÌ‹çöÁê.iÐ)Öb+:VÂçV ör Ù¿ÿR`^?»te°÷´)³Ž¯*¯*Å­:M’Åü|Jâ_*‹¯dÁ#²Ðú-—‘‘˜Ô§½Ø]pUf^ŒãpøT¢y:vÄÔS‰HM)à|Ãø[ܼØÞø›IéÂ)æôÑ[ãïNð-µM½Ü@KF¼€œ8èÝPÕ\ÓÀŸ®kmëäZ3cÔŒíƒ4øÅ<¿7§¼ØÀç˜Í/+å2%vFsïN2 +G)ÆU>&GK){²}ëf•b#øYÞ2“Á3½æÆG1O¡‡n¬:YSÏ·Õ5wôqƒí{·º««ÝU8Í3D¯Ù™”WÈãŒ×ÊîËQð3>·à4À`Ä@0ÄÈà¶dcÑ'þ ÑrÔ2Ì +æü¿#Ký ˆa¿8¥‰ø$wGRœqôñDûÄ]A!b`“°Öb>o>= Ž©z lŽÒŽª{=?PñÔ0×vÒz¬Q`êaÍTU—ÛŠ¸”hÃúèñÚÒVÔЬjo­ë*²œæ;A!oÊÚÖÃ!võ¦_ •[/Å¡ó>p¢¬PUx°T›ÕÞ¢çˆ)Åè=“DröSØÄä>•&Ù€¤Cëéõ͉]Ù|ÞÙ«…ÃÜÐÀñZ§À\‚y´µäu?·ûPÇ]æÿ”‹@¤F,„TX@vHQ²_) +ßå,;ÕÝy¾·ó¦ˆ¿ò§7+ÐØvŒÎÞ—oÈÎD³Ñ2¥â°C²8`±ÃáèpP(Ý1á ±i¿‚¦M^ØôÔáÍ;÷ìòñ¶ùÌå PÏG“\›#Õ²ÿ`¦Ïë +endstream +endobj +325 0 obj +<< +/Filter /FlateDecode +/Length 360 +/Subtype /Type1C +>> +stream +H‰bd`ab`dd”Œ s pÒö­,ÊLL (Ê× JM/ÍI,IJÿfü!ÁòC†Gô·áï¾_¿~ù°~?$¸þ‡„#ã­çÎù@}é% +†––F: ÒLšë(€IÇ”ü¤T…àÊâ’ÔÜbϼäü¢‚ü¢Ä’Ô=Çœ°Å +E©Å©Ee Aˆk2‹R3K2R‹’é™@ýE©) +%E‰)©¹‰EÙ +ù $n«2ó€f)„æe‚xÁ%@Áb…ļ} )ù`[’óKóJŠ2S‹õôÝ‚C* R,RRÓ@¾õ üÑѽ÷Ç›½Œ@Re/s7ËŽŸ:ؾ÷ý>*úÛîûdÖï/Ø~+ü> úÄù3‰ý[˜ýÝî7Ïöc¿(ˆõÄãûžÁW?ýGÅôïzÓ§O_<íwÚôÓÙå$ÅópvópŸãzÌý¸Ÿ‡ Àºö¤† +endstream +endobj +326 0 obj +<< +/Filter /FlateDecode +/Length 951 +/Subtype /Type1C +>> +stream +H‰|P}Le¾£íFs¥à±Ú6×7ŠñƒÏ•$² ©™²”-¦1°²P[zåZ[*¸¬ÐÂÄe9'$bÐ}š¹,LÖ ÉȲL51 â\d¸hœ3šßuoÿðZÿñ/ßä}ò{ž_~_I(s’$ -û[/–în§«UàËí\¯»“÷º2Y³d$%ƒR2i\ƒ§LÊóªàºÖt7¶9$¹¶ÕÄûåâîž ÚQWg)Ë 5‹µeÈRUU•E+jtñ²GA®7€Z|‡xÁÏ Î çª@^/ʶ pB(#þ»rçöprÊÉn·\/p.œ.®×)xŸÉü‡výÏ(äö!¹Úïsg˜=(‹äô¹*å.|vÊ!þ _PpsŠÊ=ö¶ˆŸCÏ"×EÈ$tD!QDl'J‰½ÄÂAl“M”ÃVb–X&•d„ ¿Ë³¤þâxvR}íª +Tmleø{÷]\R·ËǽÆ^°ªæÏ^ýäšñöéW÷™'jšêq9~¬a—~§šŽnÁû›Pü+yhƒN!ÙRO2ƒ‰pÜ«8ZïyÅžÛlkë ØzkÀì] äõÖ[XisôuyØ5³¹ú#˜fr§æg㧌¸6bžë¼ùÓ¸ùƒ)ñí“ìÅ/-\1~{iÿÎúζ—Ì4Šþ)­É§9369a”Áy=»}þéé0;ø”jèãË£çŒ`ؼ/›¥¬UÓxLvÃ&W¡@±Z ). è›ÑûÍ!i \ø5h¡ ´E‹Ò„4À`-þ‚z+vøX”õöô8Œ¶¾åu3œ’õ‹j\½~àç;KÉósì$UÔ?ݨ‚ÿ||iÅ@'JCÒaò„4 ?{ÒvÕô‘ÄȘa4626̾ùºß"}ÑÐØÂãúÓÇ“3K—W’‹ë߀M¶ï¶ë©çñ»Ãžáî£ü£1jda賡O«á==}D”D(Eñ#‘Â]âw¢Z–úE¨ÈJ¹²ôƒ˜ÇÎuvhòâšü­m Íß:©ÑHg‘Ž1ÿ0§2Ä» +endstream +endobj +327 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +328 0 obj +<< +/Filter /FlateDecode +/Length 3258 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘äAx(œõD²yñÙ&•l‚l°ên²›dÉcãî’T&ZpƒN;¦ÌhQ£œƒ-8´c©ÐÌhµÎ茖¶3qp,qp +¥£Õôwn– Xùƒ?:Îôþrïý}óïûιgCŒˆ2©›•Þ][2·ìí¡$‘ñ´÷4v%äË%‡™Ó‰ô%MÍío\Zjeù‰´šÛ¶6õd|OâÞÖ†.<}n QÎqÈ [ È›ñ8ä‹omiOlY³*ù(Qn>‘ØÓm æä±Å¸Ï´·tŠ{Œ9Dùûá/;‚ía{Qå3ð…(NuÆÂwÿî¶`Ç|¢Ž8ò&Ñ­ÂÁ$«<Û|iﱟ#¹ÒGÄ ö1QÉ×Ã9ôâ3<ËJçåºr \¹®nA_usúšôÁ/wkƒ˜žŽR¯^­ÏG¬ü_ã{ÕœìKÆ_Yé" =ªõõj}_H]³þwþC]Y´^s‰R\ÐH£\¯Jq¼!ÅMì¿mjsjéBôEŠ3*e÷§8§ñìñÇ7Æö§¸þVŠàÿLq“w’sKKÊêHc,6%dE4Ö‘hG±\ÙÖ&}‘æ–D\úÂñp¬+*®óùV­ònˆt4‡pÇ‹|áæÍmÁØÍêÇ2—áH¢%“A 7Gâ‰p,’‰X0nÆZeTY®›¾=_é#×wD_›&Âqì• @Ô™ 1º¹#‹„ãÅ’‘DßK…`Õ¡FŠQ”⸛(]XŒ:gšXò’ÚI>èš©¶¸#…ñû Ï<ë óÑ*ÀG…´Þð¥Þq*rÆ4ÓfD bÜõÒÍŽþOûÿ»‡SÏ0Þ ôAÕ.á+ñV#•5áhU?$¸êdR»±ºèؘo·6ÝÔêH'7™ÊFÒzH'5-XБâÎœЖ¤2ˆ^SA#¤Í°ªŒ"Ž·Zu|±æ öcÒ)M{[{Ÿî¤«o + ™îêZ)©ü¢¼8b²¨Ì,cv÷ ½ÿë×»7´”ÌÏwð`?à UFOáá~’z©—ŒúÐ<Ü6XÇïæ\tRéçÑÃxzèì ýÈÑ,£Øà}ïå°5âÍœ½l¯ó~„v!öç|€Ÿâ§ë +Ä­R£àú ô*ÞNz™Î±×áó=Û zWBä^üò^a³ö1æë ej~Äi…w/òý5}Hcùl9K²“ðÉã;œ\Fgë†Ïià]'ŠB5kcQc"æ|¢FùÞÇm~JÔkËõA#ÏXd¶! +\œ½¹¨PEûvcðàXÔQüqVÃêX ÛÇúÃi6 \âE|º®ðSв´OôVýy`ÐXo>f ¶Žó}*öiÍGU^ÌQƒœC´ ¿ +£—? g©žÃ ØO¯ÑoÔœt–ÎÑt'Pu-bw° @=cÛÙ.ô£ç<Æö³öò{“½Ïg¢êQ´¡úÑ,wò§ø1þ&‹ÿ‰ñOùç‚Dºx@4ˆ¸8 ‹wÄ;Új­O{NûHûHgºít*ÏÈ7î3z€½fºÙjî2b>mþ"£˜&£.7êªÂ9ÔH[QÉô‡’ΪõÇèU`>Uu#©Jî`VÉÖõl# °vg[Æ*z½È²c¨å}àv–ý…ý•}æà +7ø$^8Vß:^Ë7ðV¾?É÷ó—°#øIþ?‡‡øeÔ˜)òÄD1CxE%P'î[ÄNqTœgÅ0Ö-K»S[®­×îCíg´!í¬$×…^ /З-z‡¾]ïÑŸÁŽÖ‡,§+yÆc©±ÛxÖ0>4¾2'š“Ì[€b³Ì¬5ÛÌ.ó°9džO;’¾2=’ËpÓaü²ýò_ï«ØÝ¿å÷%4•ÅnxPdÃKw§y–Ù–á*;³–ÍÆJý‘®ˆtZ«¡ â^jÓD¦y²¸¶ƒ½$*é0»ØIÃâ€^`,í'J6·šó<2½$žÐ[Ìb¶Rïaù +|Ñ1VCg—é~Ìœàsè =J{X¥QoÚ6ßÚi>“õèÏ‹W´>áÕ·³Û±‚ÓôAñCZ@ñ_Ôlº{]§|uà–/Z¼hþ¼¹e¥%ÅEîÂ9·Ï¾mVÁ­Ö-.9sÆw§O›ú)“'MÌŸ—›“=~\VfFzšièšàŒÜ^«2 íY[›e­^]¤d+EðEÀÆ¿våõ>¶ 8nòzÏrx6}ó|Ô³|Ì“åÈe´¬È-½–´ï±äq¶±Æþ˜Çª—ö°Ã«®Ír„q\.ŒÞ)-i³€ôÚ•]-IoÀƒxý™VE8£ÈMý™ ™`v¥ÕÙÏ*—3‡ðJï’~Niã•]ey¼öË£R°E7²×Õø½ži.W}‘ÛfVƒMÖ*;»Ðq¡ +gÛ¨°MgQåPìw¿žÜ{<‡…Y!+ü¾ßÁz5Gn¡}—å±ïÚ64¥È}œ½Xç·Ó+Ž3ªóŸ ª‘îþ5ÝO½š-¯Â¿ÛqŸ ÷ÉÛ†¦‰¤wJD*1™Ü-í¾ÿµV—zÖ×#h‘{­ÏïBÖ–w¯TeøüNʦ” I¥SeŽ¶¼JØ$ítk•Õ’ÜÀbMMÚäÛêzejUù‰‘?S•W&ëü–Ë^1ͪz¦÷çSÒ·u`M¹\s½¥ÈÝŸ“;ÚéþñÙ)’5îZ³9ÌqW Y_m5SYk°ElÙ(‘‰ß²yÁbõ/¦dãb¸áªgèhý $s–¨…Ð r,™¼LØÖð…ë5Á”Æ(ȹLŠªí2¶å`¿ÊíÂB{εSÌ +,-2[îÈ ŠÜ]öZ«3GÚkÑ2ZçÇ ú%%h¹Ë¥V¹çx95@°»kþÅzùÅFQÄqü7w{7s×Úý—‹«rå´QšÆ´U)Íõ°ïÁ3Us‡$=ZJ 1“†`ðÚê*5>I!ˆìʶE< M´Jâƒ!Qˆb$A}ÕÄ[¿³¿»“«X}pÓÏ}f¿ÙÙÙÝîLŠ÷#4hÎRìÑÆ´ãÉèÌ|!SûœÎ(dŠ‡g¢xœÏ¹K›ZG5ÿ*CuÕ;ŸtDÝ +éaÎãõéŒÌ¾‡²ÉTöì¨ÙÉŽ¥qkºð*f³]ÑHW6“Ý–[:0„¢Ù™D"»§3SèRni~Ôtbcéƒê´òh8Õ›S^Ó“æ’Çô¦›x•æó¼uûú#k*7þªLåþ+=iYÔþæÇ?‰“Á›²™ô¯°Âƒeób’¨lŒhéëàÍb¦°Ý2ß~ÒK="ݪj§¾ÀÃ4Üæ©O6ÐDàÙÞ3´ ¦É–kÈTæ`Ê1²ÕÙÁËdûÞct]c7¸Šf>ò]êSÇÐæë(×sÞE—»ÆÙþŽf䌱Ñõý—éùê'ÔëAì+œã<ò&(Cì1Ä^ƒkiÂßK…sù~Ïsàšý/ ^›¿Žµ|-ÚÂuK´§.ÀèŸ|¼ýVø%î«Áñ›à4l¤ÃÆNS8Ƴom%ìC}ËÆâsGÛ{šûìžg9“Ì¿Õ3t½Ÿï¬#BùÜU”+ïÚ¶‹\;ôÏuÿjpX(~~›W"èÇóéç{îÞ÷Òv¯Ë×òä÷ý—¢²L1»”büUZÐè{ì–;à;ðÞ !o- ©nÌõ›yK”c-8N˜I‡PZWøc@ÏÛcåÔÕ…*U«T¬'’ó<1ÛÓt%¦Y±N³¦X§X'XÇY“¬^V«›gÅXí¬¬õ,?Ë`yY"ö4ü¸¾×Àgà<øœ6˜Sà˜GÁû` C`Àmó,7m³Î°>dd}À:ÊzŠÕÁÚÄjcI–åaQ,¾WÀ—à °>çÀø`{OKM &°Îʉ—c½Ò:.­#Ò—Öni½(­Ò–ÖVim‘VZZ)ù Z£"êuŸºW…UªQU*¤*T¹ +*¥üÊP…gØ©ö&<‰þ¸H8óC”Œ8¿õGs"øÌÇ §*A‰gãa§­Ññvg49±4#Ä›#¦žÌ\ !–FÆͼÓiªküû.ÙK$÷^¢ÕbIü¶ÎÉÕŸKíGÔr£–ŽZn4,f“Ô’Ø6š¹ŸîÒð_›X1[R³s—în25£(žÞ¼•=ç) ¢?³>¯ íiw;·¡>¼ß¼h˜¢2|ÓË1I¼èTSGS‡NዦSzþ˜O…÷o¨7/Š©|*„ð* åŸ °‡pn +endstream +endobj +329 0 obj +<< +/Filter /FlateDecode +/Length 28 +>> +stream +H‰šÀÈŒ üÿÿÿ`@L Xœª +endstream +endobj +330 0 obj +<< +/Filter /FlateDecode +/Length 6229 +/Length1 16499 +>> +stream +H‰ŒW[lW>çÌ™9s¿ìÎe/Þõ쮽N\ÇÙ‹ÇÇIp°)")"$Ñ>¸¹ +EUhAT!*ÔªEBHå&¤‚€S¨Z¡EBH</½!ÞEâU *ñÒØüçœY{m§õŸÉœsfÎåÿþïûÿA!d¡/#u8µ¿wꛋ?…ž›ðïä¹ÇMo}æ³Ï „Mhû¯]ºòó>y +Úh¿ôÈç/>ô‹ß|Ú#ÔùÑå «ç¾¾| ¡žãó—¡C{‰.Cû´'._yôÆ—V“uhÃóÚÒ#WÏ­¢C7aìÀyûÊêkÆO¨Ð‘¿ÂóéçV¯\xo¡ ¡Xãʵ뮽Š7¾ŠÐÒU§Ð÷Rá‘wÈ;Ðó;ù?žA=œ¡{üŽ~âØ2_ោ¼µ~÷•ïã*~“üRùû¿ë½róW?û5ZC3éþ52ÙúU[#­kkäXºF'Áî_=¿¶ô±³kÊdë`µñ©Æn}0=›‚û5¼ìç·ûÖðÌ­}#ãú3zM"4H4±©ùùÁ]­7?È~ïÚiXœŽ÷ºAÍq©>¡è€Æ'&¸1ÿ²nkš!1Í!=}Fv]oßøÔN-NüüWø¶Î@`#õ,3±1e±nYÀé›xx.G’A4¼GÞ@×Ñ‹ A‹é’WùP °â¿–¼Ž Ü’TeS’¸îÜÜ@Üóë ±6•m¢˜tƒh„¹õÃÅCÙöðä»È¾E2V°í²C J¨Ú2³’$¥\Z¨gš‘}zÕ©îépZ¤ðŽWw½Š½Ç‚û-ý€U4Ð ÛECPEÑ(ÕUèáÀ5­žÅqì~6Ylz^ æƒÉ×_œ×lUÕ9²õzýø4ˆ_Š)œíãCŠ ŸÂ ü¶ÑÔdT´XŽ| ¿Î\MÓÈ4aÓ6ÓÖ/¾ ˜søä9˜ˆ‘R©t7]¬Vª†a-®àÐÑÊÆ?ðwÓ߃ Óš +;Ýf§Û*§´¦t¤€Ik¶r^IRõ¶H•ì Þ6žÞÆʀÉ5"ŒA­eVáB ,Îð³c ‹U¢©hüŒª¡*B´À'¥ûÂbX«-Mª\ã4à”î23ªÂåÐÒ@%½4Øw²ÕlY¶]ñr–ÀCf!pç)‡I¾bê0[S-*µBòåðà0o +Œ%Œr< ‚#3‹§+•JðÉIáL º^«ÕÎHqÒ²¥&H(ùdY‘ñ†yN_f¾€ÛNÙ•¡D­wÉ2pðëè À/ÛÍ’`Tx“-áÝôH.´º¢¯»CxG1ëï`aÉŒŸ¢#¢k4߆qïRg™I¥dø;’j 9Õ¸‹ -™lVj@§{ìÁ^“pàcH‘ä/àÊ 1+Á›í…B¡€IR ~Ýu˦LLÌþò+; yçÛVA—év+»>øõ´Ñøx·y°\jšªó(–"¢e\ò§'1£@WˆB•å±¿2; }ÒX¬V«†iÄŽ '+²¬²“«ÏÜœå·ð›èúÄI,•9”â<”ä&ЋN¬ÛÙÍk™ˆÙŽxØeýL>›H¤y”ÈŠk>/2Lö®À¾1¶ËŽ-;±àæyØÜÊlºnÍ'uB ³xºQ°à¼|0/œ©ÕkpêjÀ<žAe1Å+%`ìØ,¨~0îÃTnÙß^—KååiYOñ@¡BfÃNƒ‰ ¥7!p(Sé’ü7ž¦§ú‡âdÒ-8 uó}ˆ×¤¶e¢ »µX.—¹Â&wðiòz<±öVVŠ¢k½A·q4¯|øu¤Ü”¹1€ +t'‡ÌìõCYõö$?ù5çmÆ}i$uÈÅO±'¶Ø$…F^ÍÐ2Aÿ‘ÈØô÷¬fQ*ê|옪ª¾u<­¹Œë-($‘rÌ‘"Jþp‚» +j +×]¸ïÍÖoß… ²Ôä•+ã4U\£ñøt2ugE5aUeXåuDµ‚ÒõÛ$…ÜõúºÃó×PF{{Jw)å»Âeâ+a¨f\£Â\¯¶%6QHÚ£Ò˜iÛ¤o7Cò5†È$À±.ÞVµHÐwn¯ß-ŽT5£…m–ö`ŒØ4Œ’—“ÅR5ønp˜Ô +‰q~/j =]LÏ"Eý ÒvÜ€ÊÉÚ«Gf?:>>. `öI¿ÃË*=AmQ!1 +ô5MË´8|×ñÈ Ío7A@óZ^ÿÏÞ•r…ëî´»N=à4ƒ t¦Gq4W?ï¸ÎÌx¹m;¶ï{Jñ„çzø ªXNø~Å…7y5§Û0mò¬ËÏHA-Ä7tÁ”UÓ]äk¹¥ö‡Ó´EÑ|ƒ*1 +P-hû „Æâ)ÿ0_>#%,rÝv©´×ªàM*Š~ñU¥©ªghöÞ;OC¡7W›–m)’SZ5¼Ÿv}ß'õ +O”AL—½Àࣣ@ c¤Áwì!ÈàðEu·*Êêx4nvM½Ÿfì° †16š……ÿßÔ÷’£ììÎ|M>"E‹tìü—÷j‹qã*Ã>sæ>ãí±÷bïÅö®×!;ïæÒ’´ˆ†´ +ä…*B)­ª*(E*ª@B‚òÐ>@$Ä j…UI…ĉ"…—ÒT$P*^*„P¥¾ÿœ3³c¯w×Ù”®ÎŽÆö̹üÿ÷ß÷ï=¦LI§#åY‰´k¤DÙd +ôÆ© G0;ðV¬Øˆ +Uá‰Ó¹öiI#4J`Ž"°}ö”fn2Î×NÈò1ȤW«Õ_!+V«€£ghŒ¦|ÙþvN:C Bízî™Ü·¨gºï`gl`>‘ª=b¯«½v†³²½Úÿåi¦X’_DBTωÉtx%Çv0ÐÔ–mñWöØ›ƒ+“ë¯xÔïâûþM #]ùOÚȼb-ŠðÝß ÞÍýD»–;Ÿû’ˆp†üÛ¢a©LlȈáŒ6³ÛL3ÀL—Ûìÿ¢ìûµBa¹è$(lD°•d(-.ô0?"°ÍÑ+ÛŽAg³)Žv‰¢W›[ŸšZ)„3žç/+@‚¶1±kº­™éãËì±íc÷emdV±’à¢Ýĸèú\´9h‰üŦ$“„Råêu=³Û³¤ÌU‡ûa)%«±µ´ñLXO²Î#)­€¾É¦ø¦Wra|>/ÂÌúùŠGwß´ÁK‘ý¢ìÐ AÞJ½7®ŸÜNKd¯¦:c§úÇ/ëÇd¯'¦ÔtÄ–´9-±žO :°›¸`;äM·DââúïNÈ2L±Ì-ÔÀø<Þ7ílŠöîHdLÆ6KãOY¸û_þ${‹íÇ)'%Â8«£Õ‰DuTQ?4!ÝÅäÎüÄÎì}Ò.¹ÞtXY)ëîù¡¾Ç•4ÓÈ7!ir…»#׾給ÆËõ=!e›yö`0‚¨Ig'¸ýe{f<Âp8çžç¶¦O‰[øÃcíߌ5Õ½äcîÕülw¯m8Et;€®}@èš `>dÿÙ}w~ngDÿ¿mèÑ[€±9¿[ *ÜåÂÝ÷pÖ·rK¹“¹\ñmI¦±…cé•Tw™Ih¶íßQ+îtnnn±±xñÁîÙÅÅÅ¥¥¥‹Gü•5ô1¤eÕRñH»Ñ+„€ãH«¼°¸ø™Õ÷š-<û©îÑ‹­V“ÝÐj³³mZ \ãÁZ­V¯Õ7»çð˜†ÝÛƒ¿k{°û«¹[Øý7¶@×F5:”ÿS8]n‹h4åìÙ£W'ª¤µáJê•âÍqk mkÐèv”ž5K¾_/¬œšŸŸÇW‡±£V'dóç¬Ðkà¦. %×Õ•[¾¹;n=,£ve®S (ŽµãVTlp*ŠAão°ÛÛcöâ#ØבÏÓû‘\'²ý)õŸK%ciŸÐM:|š^3õ_¸EËöt.vÀ7ŠqPÏÆŒ´Äo§ÀÙZíÔGšLOMð‰xYÖ+a§ ìtäÞÉ匾Š|–€–õ‘²CÒ´*Q;‚jš2pQ4 4Ö¦›-‘ErF[<%¯Mc)XXaj‹^¥Ï^zÀ@”%©É¿C§+•iAЈÏ!™3ùC±U,6 ½’¡‰ o‡·è@LuA²”/àRàO^nÇ­úùi_Ú€tÛzÜŽ¢ˆiÅ(:ÖÑp® ü¹ËÀdü=,Åø|½~¢> ³/?8U]Êì±OêdÑsŠ® › Ú­Ay2à¬0ÃtÃP1¦Ê¥£miéqÎæCõz]vNXÖÜlX<õΗ¤ß‹«\]þjuM‚ê µ8?–D d†m4sÝÙˆOÀ(kè3Ðýल¥+OãéH†ëyÛŽƒÂ|(J¦iÎ!nQJèUéôlœ^hïÞa=yBw±`‚WI\»lÐÿ@=ÚSW'³C,7w÷=ömäéäi5Þ¯ƒYÞ<²X•eŽk[=."6¯I1nt¬J5e~²'I!véwæÂB¡Y?cT;Ũˆ—Šž[ñ9i–‹ó>X~®þP“Ò5JUG¹,—E°¦›ž›ÇM>ŸßSÛûp%®`gv„èhXÝâ¯#ˆ4þ^éÄs®ëã?Ÿ_,û±ãø\VåÎàD¥Uí†kU;Ú.ì"¨‡Z5šs=9Ü3'{Cx*Ì8N`Xqß[ï˱H”È @•Ÿ ‚Z('j¦r÷}v\{6÷8œ©Õ_§ €hÓ°¨¶Sñªˆy¼n5£ò†l‚…×»ktk5¥ï„REæ¢Þ¥3Ñi­<á™ kq_òŸÆ^r¾N2.Øô£¾¯|W³éq©8a¹„{Q›§ˆæ@HeWÓ¹( ª džoÝ¢Ý2×ÿ)!¶Fa3†}Mðó\¯3ÏâÝ÷µ“@ã |ˆ¶©í±î8Sá‡õº¨ì¤¾ã"‘+Ñ5!' EWÁs­¿6ù=v{",=Д +2écît_(vyž¿3G¹®»¯Qj¢)+K Û¿ÄÞ\gŽñ+„bƒ¬?à…Ü0 Þ«5YW·'¨Áïç÷‡…UT D|t}mû×Dwöom–Ý$ï +½µ qb*š`&7—Q}™¤ B2Ab¡?‘ýÑu'ô$@V¶ÎF%ZÌŸŠÑÈÍ eVQkõÙ¯/³Ô:kÒˉ|]ª çŽÙeDJ_"áÖ-éT[ÒO°ŒñžéÂ0BÎóÊC Dz«1ùj…ð;fî×µuUñÉcÈrú¼ä;ù–³ÍÛ¡ #*wúÌà¹Cj)nË°-´ƾ'ß6°”ÎôZ‚ÅaolØYC÷ŒÁ_9ù ÝÌ[–¸~šèÐJt½¦¥ï¹6Œl[)|…½ÍJ¹ÜRI¹ƒÑ$ª ŽKâ}åq¨!JU®gbd~n¸lö„JŠ›<+{;`kÛ ) 4zò>k¼P•€ùJÖW"!Óbè¡Ûdmfñ †Î*ô!<$ÏÏ ‹Rƒ´«®ñq²:f…+d’apÝÿÔ4Š¥ua‰.x +ÕObLû4jx^M-w·Š!ž …™²À†ýŠ:aòœÜµ"Î~Îjù˜êfðgÈ“6J¸f/v_fbû„íKpn`Œ‹¥IßhCNÙÿ¡]Àòvk¡vîèÒ=è¦Î.èbQj$]3ð7ÆßØÙpÚuCÓ0i¿ÙtÎ]Krèà†½TaX® ßüOö6ù±¥ñ-Ó¦›¬ð©ÆHðb; Ï^9Áf³OÙ0’^AÕJFÎÚëjixBÕTY=¶ð}Q®æ´ä®$™ +6BÃtŠ´gÐOòAô̳§S§ËèUŒ ÑH‰¬kW¾¡”b_µ#ËÌ3_ÿt Â_Ü0Ž¬%2?‹M‰^½„LÉ7E¦(MÐ’t]ûé5¤®÷3eþ¤è•‡ wž!i g\¯hIàU³$$©® ݱ/&&öñÍb*»BžqÁC;Jð²å†!H;ÉÌÀ¾ÀZLÖ·¡Y›4 »)Ps0Ø?»/ŠÒr 2ù¤˜R}øhà×1ÿÿØ/—Ø(«(Žÿï½Óa:f¦™Ö;Ó–¤%m“B!±µ¶•FBG:¤)éÈ«HCH 5e$1*ÑY¨‰»êÂÑ….ÜÂ1©$,\ÕH % Ð~þÏû‘)QÙ4a¾Éoî¹sî9÷žïq%ÃΩҳÙB—)ö 9çu(RšsÕ Ø„yúá 8¸ß¥eû>®ª¢J Š¹ß²­%±YW"ªxµ¿¿ÔËë}ëìØÀT›kxèòò+KæOóÅ*Ž ¢]Y¹À)/ïMRG­ÖQŸàžï•PIäÔ lUEH³yí&ŒN\ Êb€dÔdô~ôr|œõZ–#¬ïáøçȉ“Ñd=É.±G8~Xt©Ó'vHú úš8WL¿Ž”¾€¤ "I9©»È}Ö_BRåHÖ[Ö‹¥>óâæEÔš:Ö÷².å—d=šô êh/¢/#ÄØCú DI5‰Ñï]œ7Dz[| _ œ_õ&o™þ¤h¿Mý†ÛéCF"¨ÚÀuï +ë ‘Í ÆÁvÝÊþ)ÎÑC³ìû†±ŽÒ×P§·!h†9&€êEìúdѯ÷«z–]2¿Ämc¿àâr1‰ÿnýþ}´þ•“æÜi„TšgÙ´÷ÇßFü*ƒöZéË0ËA"s¦è×ûº€vúÜȽ©Ì/èà¸WݾÜ÷îš!4‹ìr¢”GET‰]¿^u›HØêÜE3íÇeÿ%÷ÊôQ&o¸‡Çýu²kó;yÁ®ä~`ÙkI¢[ðõeÍeßñµ—·9¸“q½qD£Ä.9ìæê œÂ[.“~)ØÜË1Ÿs¨Ùú@üyd¯|ì>dQC´+S³Ó®qÕÛ0ª/Km3¯¼Û’³’7åkÅ{ *ûõ –½’gÞÊ£ÖUßDìQíÃ_k{8dïÿ­ +OO~½³¶Q·ÿ;ªV]Ö}T Ôt‘÷€Ø(P»¨;Ô_ŸÉwgÞžýØ04 dVν1ÌoÐ6=t±ìfÏG*¬Q*Tø×(9…hu‚=ŸhþT(¸SL˜OaÿÜÒÿ,dø­Óàäå6')oa¯ +T³Ö!'+~Wu²F:Ù°ý3'(ïä åŸGæfOÎÌfgÎ MLoß1™ŸÈŽtŽO›.ûç*?*ç0‹“˜Á< +ü?ÌO¹C8Íÿ!Œñ7)Œc;v`yÖ²ÔèdË4Ž‘]ž¥…ÝÔ<‚7mÛücÆ>AïÊ;󗈃ë +endstream +endobj +331 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +¸ «› +endstream +endobj +332 0 obj +<< +/Filter /FlateDecode +/Length 3319 +/Length1 6244 +>> +stream +H‰ìVmpTÕ~Ï9÷#_@¤@ñÄkÉ7 `d7’8©’ÙÕ"»Én² I6î.@Ê¡ŠtÚ1eF +5*8€àÜlÁÒŽ¥ ÍŒuFg´XÚÎÄѱ„âTJG«ô9w× XýÁN§3½Ïž{Ÿ÷=ïy?Î9÷Ü%FD™ÔC‚Êïn,›]qf$AdæC{oKw\¾Xvð ä."}akW[Ço>Yde&ÒÖ´µol==½é¯°=‰öF(èœß{n!QNäy!(roÈx² òÍ¡Žø†Úe‰Ç ‡ˆÄŽöH‹Ú‰i'ˆØN´Óþ ]â^cQÞEØËNGð‘Õ÷ÿ¶Mh§º¢Á®»{Ë¢‰ÙŽŽ#o=ú0²7ɪš`¾Å´·ØsHî +éWÄ ö>Q٣٣´äîåsr +r + r +z}ÞÃé Ò‡?]У #<¡>½^Ÿ _y¿ Æ‘ öŒâWQ>Chý}Zÿg>D>Bd¬OE.: Ë}¤Ã˾cúsÑÏù\ÒàdîQó‚vM*º€+Õ*?;5¤i•Ÿ~®Ò@<šñ8¸ýB]Y´‹%¯ÙD).(R’kàu)n€7§¸‰=½ –¤¥C +Ч)Ψœ=âœÆ³'Rï-Û“âøk)n€ÿ3ÅMF¼ø œ]^>OÖ‡[¢‘X¤5.«#Ñ®HÔG:KåÒövÙn Åc²! F»ƒÒwÕ²Ú¢UáζZ¬¤!ض¾Ý½^ý˜B†c2Ž‡‚Qé—Ñ`[8FƒúÁtŒ¨ž«ÄÖ¯ÏW†;%ÜÈ•á8Æ7Æýñ`Lú;epq´DÖwÆ£á`¬TÒA’˜÷r`X=…©…¢¡Z+Å¡«‹R—s÷Cë¤Rô,¥v@RtmXÝ8F))ˆgÖݸ`YCòÒ*ZFµT„gãÛГ|ƨÄÓFëáÍq×J×;ú?mÿïL݃xÆ1ªv [‰§©zãŽV͇W3€Ôáx\]dlÌ×÷¶^×êH'7™ÊFÒJHa'¿ÌïH1'f'´e© "WUÐi=zUFaÇZ­:ÞXs:ûŽô4íŒv¯î¤/Ÿ2KõßpÕ7JIUåÅ+F> +f³{¾Ñú¿~½ù=@ óð­ü>°ㄪ Ýh´§¨úø`Ò†æ Ù`uô¾ˆ³1“J?‡6ãôˆ£YLÍèo†5¾{T‰¾<™ã£ÿÔó{´¾?æƒü?åô.ß:e‘Ô‡¡Wþ¶Ñ‹tŽ½›‡èIô 7Õ(xîÃ÷ù2› ô²÷Ù(¿Z¦âÃÏ:X÷!ß_Ò»ô7–Ç*Y‚„M.ßê䒌֛!àMÇ‹B=kgeÁçü6xð¼ŸÛü”ðj•ú°‘kÌ7Ûá.ÎÞT¨¼}»±xpÌko0ÎV°&b»X?rb£À'¼„/Á¬+üHø´,íC}þ,0l¬4÷¦ð­ã|Ÿ‚}ZHsQ•1V ç­Å·Cá!`3æòazšú需ô2ýJŤ³tŽ.cv&ª®ùìv¶ +ðQ¶…mÇ|ô^…ÇÙ6È^F~¯²·ù¨:‰vTŸÌrßÍñWùkü|„Ä?$ÒÅÑ,bb¿8$^¯k˵~íí=í=é¶3S¹Fž±Úèvšéæ:s»ùCs¯ùÓŒRšŒºŠQWΡÚˆJ6ÓJ8«6£—€aúHÕ\IU¢p;s±¶ð²û˜u°Û0VÑ>ö<;ÀŽ¡–·wØYögövÁÁenðI¼h¬¾{x#_Å×ñ]ü)¾‡¿€9ÈOòwø9Ô8Â/¡ÆL‘+&ŠéÂ-j€&q¿Ø ¶‰#â”8+F±nYÚZ¥¶R[ÚOk#Ú‡XI® ½P¿M_„ôN}‹Þ«ÿ;zT5²œYÉ5n0OƒÆ»ÆçæDs’yPjV˜f»Ùm2GÌÒ§/M§G3Šé¾l?ûÊÛûv÷¯ùj£Œ¦°³Ø Š °RçÝÏ2ÛÓÃ|Peg6²™X©?Ðe‘Nwi§i•¸ŸÚõf‘iž§,¦me/ˆ:LûÍnvRøĨد‹’óÉw‹CæFÓg~€L?Oê!³”-Õ{Ù¾ot”­ ¿³Kô"Çù,:MÑÖMiÔ—v˜Ã»6Äod½ú³â¨Ö/Üúv+Vpª>,¾O·ÑDü‹šI7a¯ë”§ܪù æÏ3»¢¼¬´¤¸hÖ­3o™Qx³uS¼qú·§Mò­üÉ“&æÝ›“=aü¸¬ÌŒô4ÓÐ5Á»­Ÿ´gølm†µ|y‰’-?þ«>=ìškmlésÌäµ–U°lýŠeUÒ²jÌ’eËÅ´¸¤Xº-iÿÎeÉãì¾ðÇ]–WÚ£¯w¸6ÃÆA((Àéι¤Í|Òm×t‡nŸ þ23ª­ê`FI1 dd‚f‚Ù5V׫©dá5î…œÒÆ!+»Îr¹íZË¥R°E¡Û°ïYáq»¦xKŠmVÝb5Ûd-³'9&T턱jÛtÂÈ°*‡zå@ñ+‰Ç³©ÙW”°þïzlá÷ª9Eö–˾sÓH~Iñqö|“ÇN¯>ΨÉs‚ê®ô Ôö¸\^-·Úó¨c>æ“7L w~X*1‘xTÚý+,Ö”„M  ŽN©«:qåOTç–‰&U`/™jyý®iy”hØ8X[%k¯í))ÈÎIÎôÀø )’5îjës˜c®²þrª™ÊȪűe‹D&Ëæ… Ô-¸€- `†ËË0£aÌŸ/‘½P-„^˜mÉÄ%ÂF°FÏ_«ñ§4Faö%RTm—±-÷/ÖË.6Š*ŠãgöëÞÝVºô+Ge—ÕÆtmH[‘òÕl·ösXR5»HÒí–HŒô C0¤pÛê(5>I!ˆìÊ´E\ M´Jâƒ!QŒb$A}ÕÄ[ÿwÎîÊV¬>8éowιsgî™Î½ÈÊV$bÕ׫'E´ãÖâÊZíý O´Œð°?h2Š'pPrË y(¤îòX.JiìX#;¼¤´>GÑ ‘¤åH©ÌB!Só¬ÊŒ2ÅÃSa<Ηì¥M%ëŠþÚªŽ}[,­v•ôçñútg]îÇ2ñDÝ@fL¯KeÆ“¸5x3™Îp°3“Ê ä–GÒá ?œ™5ŒÌpGªÐ¥Üò˜nEÇ“û4 ªÕÌ£aUµ'œº#É%‡îL6ð*ÍíxcGfi®¿bÛ/R—ö¿Ò³ÙKÊ_ýðG„h)î»#I­ñ ++ÛçYÉóoõ\ªÞO÷ÖÑüùÜM”+îÛ¶–^;öÏuÿ2½¬ $?¿«áóàùôð=·ï{i»ßË·òä÷=K‘¦˜ÿ½”büeZT¨{l—Ûà{pÞ¦Ag Ê.ÌÕ›yW+ÇZp‚Ö`&íGi3^áŸ]ýjÞ-§ÎNT©\+£ÝÁœã©¹î&è¨-m†õë(²VVËJé—kd¹ôI)=Ò%Ï°Uå4F_L3¬…A2ÒAë×¾pNóíÜe¹Ã1ͪ4Èx&°Z"–ã¸=£Éi˳šöú¨®&3WHÓ–G'ô¼“Iªü} ”ìñC×h¶‰~›çźO…Šö!jÚQSEM;ÐæâÔd Œ¥¦û4üצ­š-©Ù±_u7ž˜•K¶ïfÏ;Ê|èOJ%cµþáV»s[C#úUiÓT†oz9&‰•jhkhS)|ÑTjš?æS#[CúUm:Ÿò#¼Cù§¶˜˜ +endstream +endobj +333 0 obj +<< +/Filter /FlateDecode +/Length 24 +>> +stream +H‰ZÀÀÀ Ä삧ˆ Eb +endstream +endobj +334 0 obj +<< +/Filter /FlateDecode +/Length 7246 +/Length1 11641 +>> +stream +H‰´–}pTWÀÏÛ$ˆ›dR!÷qIÈf7¶%ìÛò!aÞ‹VöewIR „òQ¨ãL: íÌÛt¬ÅÆQDœ:­Uz7HÝ ´ÅŠV­ŽÌ´ê¢ÔvŠÎh­5®çžþtïÞß=÷Þs?Îý8÷3aÜ°dãæ†eÑ–þ}Xò#Œ[ãû÷²‡ÿ°íJ €ËÜ>20üØ™t€û€Â#;nï…Ê9³'Š &íÄ›ç: +ªd+±`aàÐ Ì¿Œù…ƒÃ{¼ÂQ¿ê-€<ÏŽ]qûÒî+ªßÆ>=Ãö‘¼5ùmµ¿E}¶ÓN~ôâz¿ö#¿aäÑäHfKj7@°ó›Aq7)Ï€Š¼_õ6f—d +mÊ Øî*Q<.×åõz ݸë×ÞÍ(À>qy¯N¾‡óMW¹[ïÿóóA¾™oz_÷^ó~Û{Ô{Ì{@FÏCÞcîwÝï¸Ü®k®mîó6ºW¹ÄÐk™}/û—ì;“W&/O^V~¯ôz¹*¼û¨*ò”=Ê ®.Ozá$ŒÁ L7ÁVx àaX_†ã`ÃX¾vÁNØ»¡BìÇÚ“¨½ öbº >‡ùcQ;W¾ÿ¦öàÓ¤} +žÃq”Na_S¸wéVX VÓ(-‡ÇÀ€0•ö×î*m¹g¨EûZ(Þ1,Äò^Œ_ƒsOÂ+£pvÀu8‹5‡qÝ>¤ô$Îí9ø ¼ÛÐRD¾+w +  û7Ô+¢\x0xQ3 µ«³£}]›Õ#k[×<ô`xõª–æ•+š–7.[º¤aq}(X¨]TS½/ÐXÕüÊyêÜ*æ”—ùKKŠ}Ÿ*š=kfጂü<¯ÇíR $Ê‚õ!Öæ8b´?VóuSJÐq6Ðm +%f +wPÕr? è5…«º¸¥³IÕ¬&õVÑ}ið;#þ3 +¸@ñß( › ¨RêgéÙY§—ë}Lñˆip#&ÜFŒ›I+íqWóêŽgŽ“°x­Ûä¾U²W+7²uÚ¥(PîsXØNr_ØdzE‘þÙ>œc¹]P56®(®^ÞlqRÅŠÜ´º6›§¼ÀeíehíMÓFûÓ(ãÍB)WÀS\º[X·lѹΜ\àت;íñÖð´3“Ín15M€ŠõmN[ÌY笋قÅi…”7†¢õ!ƒ·q­ÆžÞÞN1ÌÇnåqfLŒö˜éÑV-ëÿâP7ÆTÍ°p¼(×¢8#jD±[QÚ"_nO~ÛCIÔhnVooŒ‘øƒ<¢¡&܆ßàÑq¿â7b8¥¸„µ°àkêCpÆ&“‹Øf“"–Šª´ÚØš)÷ƒÛ¸FÌ1q›U\1Ë”&iDi¥.ítxõ;ê‚ÁŠ P”ìá§_UÜ ÷>ÅM—ê¶ +ŠKZç¢Øx>êC¹ ât:qÔ\"sŽƒ'>†Ùô,Ouä)Q¡›‚¡Ý³<‘Ê´B?7˜ˆu›šÊÄ LÄh\­v̲TÃJW68QUW,xk—TQ”öÉÞ´tè•ÿ©BÔU£ Ácä Y:·qsÑ1˜¸^3E3ô˜5Ã1ûñ¦ÈnåN©M~`J¾ƒÇˆG‰ÏŸ#~…x„øì}Ú~‹x’øMâ â7ˆÇ‰_'ÄÞÙvq/qñQâqq˜Zí yä$ÉØGb¹*­àô3ÉÇ%|ðFQߤ:#Ž¾gˆ;qé£å¥‰e *æ8v˜í0ÃI9c(¦8žþ!;!F·t¬,ÕT•7IÓÆJ@É{îêÁ;+`“©qùŽ8Ò±Aãôà‹x- Õ˜!¯-'÷¿6hM±:ˆÿÜuëQžz L—0QNn¹lŽîtmî“ýàtŸ°…»_or`Ì'KzL¦„„¥WËd?˜gYúÀtKA5š€ÎIϲ"HÀ šÎŸ_g‰r}šÞ‚)=Ù¤ð~zT9Õß}õLéi÷v´ýÚÕ(ÇO>|ǘx:Ê-&> y=ÉÏ<›dÖ-e@YÚG M>Ð#Ý*z¿‹èíêCè«ÏB1¨°ÁHôDÎB ,†îœX +sa£~hÇЉÞÞÆü麖@‹‘‡ÃŽ´6–6ûWºÚWû;a´¹ÛÛ‹×·º:¢%Ý°¾xCéFO{WÉ +xÖâ'¦Myí-^ô™Ìd" ÷‹:=ó¥C÷Vïgƒ8wÜ/sÆR–%¼5ÂD/•cÊ×dª€©À Ê¢]ñHLÔóˆh«£Å +ê1‡é}f?lœ×Ç,´4KÐOËg™>62Ù¿ÎË}dàù©ŠÈ´Šÿ’]þ±Mœg_ßÙcÇ9Ÿ}>'N.¶øG.©í8ñ$Ô†€'ÊVBIÂ(e)Û +¬kY+Q)k'¦ Ñnª„ŠP7ß™¤I+*S˜ “˜¨Æ¦nd«&mûƒ…Vb?4Aqö¼§üØ%¶Þ÷yßóIŸïó<ï÷Öê ´°ªÓ ÍÄ]`O+œôpé’ôxýc]@²W.GèÞeRjÚìAwÁÆÒ?¾ —nCº¥?.ÝÑïÓ¿šP N€!Ý® Ö.mÄU¸y—ž[Ú¥¢ZVÈoCÜŒÃZÕª4KËHÑÅR³-²¨3‰ý©Kà5’3ø[¬cKäšG<šœ tb‹@œHh|€WEYž±óA™ °U%¶„”zH¥z‹>yyÐeÅ„ ]Qêƒò,ÂŒ°CžxWKJµQÛn"Û«ÐEÅH¶[ÐGJ5l§©*Š&Û9»EÂ+±×Ô4®[¨ShºRZ"@ã~Üg½¬ò¨AVðE)Ä–—_2­pôÚ£R4l±Ó°%H“-U4¬Z8¶ çã8µ9‚Àø$/Çb~*â‰P†BñÆ$¹ ûO(|Ú('{Œ?Ü»÷GÆÇ3>“\v]K6<™0¾26vÔèo‘$ÊU> ½·èÙ»æu!½!i0$izÍ0Þ[~÷ÉAJGæz½ä¥喙M /]º¡oןp¿ÔtÄÌŠŽ^$ÒDÇ“*CtÄ–£é(aÑLâœjÑt¤‡RóHDÅEš½¤˜b0u¢wÎÄ^ÇJÃ^#rœRLô«‹ø=‘všh“…!Š³ _ÁÂðuÅãÁÐŃ –‚ç*†h1Í[ȤÊô>¬˜Ï’¦Þà Ìt×_)=óÜKØZS¿·¿zº¶~½Ô2–°­Ze ¨jžäèþc^ÞŽGò'¦.~gü§Ç"/¤œ Ÿ¨a9¡vc<±qÄÝȲFîµ7¶¾?p(7 I@ð–þSGý¸i™!½Âp‰U„Õ‚JkC*ÐÃËØJC´)¥X ¸: ƒyâ˜ØEvQiìH)­°Ø†ØO ™+ +oe¯²WÔt" <”DšíVX¹Ídœp©GÒˆŒÓ@)ŸÏϸQcƒº@úXqe\¬¢Ý`IºÐÏ·’$¶à˜CûÈì𿜅vФTÈ– +™R¡­Dy8^Ö¯WQ¦ ©éª"Oèjg»•.xŒbÇëá¹î ‰ò|E¾ÀoØ®f3]lww1›Î¤‰¼Òè†öPçÐÚƒàõû::ÚN"¶˜O’H_ˆ :†ZÖLÐ4ŽÇý¾(iÓä´Ã +i)ñx$þ~kP+ðûÒæ=lkok¶«)»6'²½ Ùð ›¡žÛÚc;ð¶'Ä»Úi}nòƒ›Sߎ8xA˜<•~lèòtf¡Ö-LJÙ³ó|ÜÔ¿Êå`M=ݨ¶rMuå¿}r/߉øvL>»ÿwÞzý­;GÏ &~rô …µ’¶¶µu-ù@ÏŽ,ýC“Z@#èóG¸"¯‘8Tq(͇²{­„çyµY˳ö +0g:¥H$ߺф" Ρ‰§ÍœÉƒolx3Ã#`üýòLO/Îdü©íkÃs©iUë×õ@tv 7Ë5#bkVÖ°’Œ“|;æÊ JO<çV†s9p†»ÜÞÜÓÓCÛ'ó³b}n`]ã+„„Ë›WFˆõèÍi#j{˜;#8"‘XœÓÆaAˆÅi%â«ÈÅ€& C Üÿ@ˆÒBO öÙªDÛi롳’ßêìÐÑ’|û£6®.BSîÖ] 1ú»j ^vëîùw¼1‡Û»ÓN9_þÀ)g­Ñ Ø4‡Å-œQu+¶sOBNÊ’óÚ£yÍJÁD+™Ô¬f%ëý¬–»¼r(yZ’¯rl4¤Ó!ÈŠibÆ)êº;:zIŽKLÍ´šFÇFG%ŽÄcøA°å¯/Wr‰Õ‘\#¥ÉoeçÒ;%÷ë*=gªœ§Jª^Õ¾nŒK“ž·lqE[g/MHÛ|Ðê3Ájvn0?¹¦¡¼Àh¼xKh²zܵ¿sÕÛã·-øX'µ=>ôP×;«÷¹ó]¤ O| åiÿBe´–Æ»H¾zúêÆÁtÙ.jÒe»X/(ãçkÙcí)õ•Åž˜|=f9Ëò‹C ü}‘Fþ¡L{Õ¼JÓG7†2Ó2ÓSìÓœ#e”6§8ÓÄ1ÊEBKH·ªòF(Ǫ¬ªª¸ö]ˆÚ·2ÏŠÓñ÷H +Û—%%ßnI…!ö ¡L£€lW(}C‰´0ä«õÕšÆúBå.ynl  Ö–;Öö^æ@*èøÕò„PµQqa¹lB‰("|ÌÈÉåBÖ•*Kûž>è¿Ì3¬ ½#99irù+NQ“Ðé]ö@øïÇRscÍÓŒÓ,¦òßÃ3g~3œ“"”ù¦g$è zslEAECBUQùZ«azçY¯g™ÙR¿xû]ÍÃÞ«BFLlYn®kæìÍkÃWbb‚o ‚KxZ.‹“gf†ýáËáì‹8†Î-ïêÝå’÷îÁ/·$,ø‚Œâ¿ã±¦(žÈ˜8gH×?‰kùÙ[HÿÜÄ«DwødøECú>2_¢IÂ~Íó +¥aè§_J$ØQ“v½žÕ¹©IÓ/Ø1× Dx®Ò6ð›ÐÏîÐ4F^ÿ@' PÈë6€СÎ{Á¿IC‘bÞGÆDŸhÇÉ¥=¹&ýæi×Ñfœëý $Òž§6;ò%΋×ôGNcÞ‚ñéúÑkà“àMbŒ¹$Ì­C¿ýa¬=®?LG€ó0·‡}fáÜ—y?ùÊÛÄÃd‡i©è¥¹sà­v;<"Q@)7-Ò¸#]à3^‚ýKpV úð|†µ%X3„ýÖ`΋uNœíNÏ-ñp$‚9»tU3ئʒä1¢ @RåVÇ)÷÷R¬Ž¨R¦±V¥ÝêxŸ‰sî°žˆ"= +¨â÷U|Q¯`¬ï‹üc·Y§²>'¢ÏûyæFõ9ðž~`/ët2°NY÷…Oãœs¬Cœ½FÁáUü¾Š/ªóMŒµ6ûðmÖ7ëz2(º¾Œe=«úž +,oèöϲÎ't1ÆY㪌nª÷¹¥öo©÷êUewX¾dÆwC_d|ÿâ>ûh3û­ô'Yf¹l¯,S¾;ø0͘ûÑñ(fb›æõLƒïgÜ—õÀïUp,cö5¶wö7¶yGÆ‹Ù´K +FþŠþuÖËækpËgä0 <û7µ›ÈÁþÊ>£àÈõhŸ}˜ýh*f}±o3†1->K?b[`yŽú>ûßT Ùñ[ƒ€+€~„6Ëâ`?`«ô1톜nÅ \Xÿž + ÐË€£X»‡÷ý ¾„¹4Üÿ%@.æw`ßVñ.­Ò®¤Yú;ôŽþŽpö´ÆùŠöÍGߢ¿£ùøÀ1À¯¤£ô¨rÏèi\¹/ü[¹ûõî'Ô÷ ȱÀ–6T 3Èú.š€²MøùÿÖ4.±BüƒÒ¤ÝJÓvê¦ë^ã¦÷ ù¾}ß¾Ûfx“k%a?õžv„¼ÀUK=1¹Gœ¢céQµ®"ªPª+N¶”ŠžBK W©´t;f)½Ú§ÒÐg*­¡xÁ®Ò"…*-Þ¨Ò:Ъ;w÷vmoßÖ=»%/»Äí.-t»²ëZ ´vw®lnÙÙÜå/Ê® +²e¶`vWk°µ«§Õ_´bÃú«W9W6š»·ïê,\ÜÝØÞòmF©š:i7õRmÇ“¶Q7eÓlj¡<àâdTJ…øu¡_G­ôðÛVH+©œ;ñÛE~|ÖfSfÀ÷w ʽVàVàü2ç +Ú@ëñ»"uÊûÝXµ ÷)¤Å yl;öoÀšv'ùœo³òÿÄ[€ˆ˜<´/vb.+òÈ…V燲ÒëW{C¢¸Å#^p A>Öý÷5·Ø½eÐís×8œ¾7J*ê|n!_fÓóÿÚ¯c»ÿ ÿ¤_ìöÄìmÿEûUÿíViÏ@y£GÔµ +Á˜Æ-§)“ü5Þ3È‘¸XÍ!´S´­æŒNÁ"÷ÏÂÊý°CÏû¦Ëž¥a ŒãWj Xq15 +M#Rè"“µ¦ .B¥é‹KÛ´8%ƒ¤ß!£iÓ*v²iSiÔÕOàp¤Ã­>M<øý8¸ãÿ¼,¿˜«ä8¾Bp±4õÁTÒ¸$¯dB†$HÜ´¼.â¼)z¢#õ¥ž4Ü’^Æ%³ì•­¯õ´æZØò,çG'˜tH›\ü½'qæ:Ås“i@=êÐ>íÑus‘{>®38n2C&`<ÆÉv²íJ§ûؽu±ë¹N€×£Ü`'T ¡™¶[¶Ý +clŒ³GÇ–¡†Â†0K°‘‘^Ez ê³i¨õûvã¶R©Ù¢6E¡ØiÈþ& +¡Eºj”jò 5Æñš˜[Ä•ú"îç"|³‹ ÉÓ¤€VtRÔº¼Ô‘ V&Ä#EᦙŒÂóŠ¥lu¼S`Šªq& Ý•#ÝÁ ÜÀð ¼oÀðàøB§Ê¿Sý`¿^‰ +endstream +endobj +335 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +336 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 337 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 338 0 R +/FontName /WTWONF+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +337 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +338 0 obj +<< +/Filter /FlateDecode +/Length 3261 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘æA€,žõD²›ÈCÐÌn”0òÀl°Èn²›d%ÉÆÝ%¨L¬¶âvLÑBV@qnŒ¶Á¡K…fF‹eFgtPÚÎÄÁ±ÆÑ©”ŽVÓß¹»d‚#ðG§Ó™Þ_ν¿ïq¾ó}ß9÷nˆQ6õ“ ò e‹+NŽ'‰Œ×¡½­­/!_,;xȼ’H_ÙÞÛÑýú«l¢?‘¶µ£kgûÐÙ{7Â÷(Æ®Îp0ôÉþ3+‰òF!/ë„¢`fÖ#?ƒ|MgwbÇÚ›“å‰=]Ѷ`ádá$[q¢;¸£WÜf,"*ÜÙì°ì6 ¾űÞX¸wÃ®Ý +;ÖMÄ‘7‰~} &YU¹æÛL{›ýÉM’>)Ž°‰Ê¾™È› ÕŸâ^Q¾$ß•_ìÊwõ úºŸÓ7¤}¹¢_Ãòt˜õ:ýzÄ*ü 1¾W­É¾B€ üU”/ÇÔÃÚР6ôU€ÔµàÿppÓÿ0Ô•C£Ôµ˜(ÍAJq ¼6Í ðÖ47qþv©Ã©eB +Ñ—iΨœÝ‘朮`¤9Þ1¶/Í5ð7ÓÜÿWš›Œ¸û \\^¾LÖEÚbÑx´=!«£±Þh,˜ˆD{Jåš®.ÙéèLÄeC8Žõ…C¥ÍMÍÖ×”4Gz:BqOC¸c{W0vÙú +‰Ëp$ÑŽÉ Œ…;"ñD8ÉD, +wcÛdTY¦‰í߯ŒôH„‘›z" ÌoLḠö„Ê ê,ÐÝÞ“ˆEÂñRII¢ïåÀ2°:ŠPÅ(JqŒvJ@W £^ç„&ÖC¥°¬¡.@RtÔ [Ü‘Âx†á݇{žÍÔ„±ÖS •€E0¿–Ô3NgNmG´ æ],]îìÿ¼ÿ·=$˜º‡ñL ªv _‰§š©¬ G«ú!ÁU'CºˆÛ ‹NÍùnkûeíŽtr“él$m‚qrPë7‚)î¬ÙmY:ƒè´ +Ú m‡Ueq¼Õ®ã5糟NÚIí$^ÝÙž2†K]uRRÕgò³I£„=Cf³û/éý_¿N]ÒR´1?¿oû9¾PôFãq¤A>’ò¡%6X-ÅïæbtRé—Ð=¸{éŸìýØÑÜH­°·Âû8ž•°µáÉœƒl¯ó¼—@ìÏù?Æ9ÖÕˆ[«ç´˜®GU>¬QœCt'~;îîA/HOÒ=…/à0½J¿SkÒi:CçÑ\@ÕµœÝÀš Æv³Ðix˜íc#ìUä÷{‡_…ªSèBõ©,ïçOð—ùüMþg>Î?æŸ ™b«hqñ¬8$Þoi·jCÚSÚûÚû:Óm§SF¡±Åöš™æ6óó§æ~óWY¥4u¹QW-¾Cm´•ÜC{(éìÚ0ð2½ŒÑǪ`2]‰Â ÌËjØ& …mfÖÍâlÇTEÏ°çØö2jyx—fecŸ:8Ï >›—LÕ·‘7òf¾?Æçûøó8‘#ü(—ŸAãüjÌb–˜/|¢h·‹â~qX§Åö-G»I«Ô6i[Pû m\û;Éu¡ëKõ•@§Þ£ïÖô_àDOèFŽÓ•c¦±ÊxÐxÒ1Þ3¾6g™³Í«R³Âl4»Ì>ó9nžÍx!sMf$3–å¦Cøeûõ·ÞÞWpºÏ·e4—Æi¸KäÂK}ïŽó³+3ÂGTvf#[ˆú€Î‹LZ§ fq;ué­"Ûü„°¸v{^ÔÐ ô¬ÙÇŽŠ€˜ÏêÅƪT?ùâ¹Ó ˜g‘éâQ½Ó,ekôv€¯ÆcõôvŽîÀÊ ¾ˆNÐC´‡õQ f¼Àfà];ίbúÓâ%mHøôÝì:ìà<}Lüˆ–Ò,üµ®ÆYשP}p«–¯X~ý’Ååe¥wÉ¢ë^» øëj—¼jþ÷¯œ7÷{EsfÏ*œYŸ—{ÅŒœì¬Ì ÓÐ5Á¹}VM@Ú ¶¶ÀºõV’­ ÁiŠ€=ìš‹}lpÜäÅžUðlÿ–gUʳjÊ“åÉéF[ú,iÿÑkÉQ¶¹Þþ°×j‘ö„Ãë®-p„\.̾¢N¯´Y@ú욾Τ/àE¼áì¬j«:œåqÓpV6h6˜]cõ³šJæ^ã[9Ì)c²²k-¯Ï^kyU +¶(öCöÆz¿Ï;Ïåjñ¸mVÝfµÚdÝlç–8.Tí,cÕ¶é,##ªÃî×’{Gó¨5P’²BÁømlQkä—Ø·X^û–]ãE÷({®ÉogV2jò¡ÚÉþáµý^o‹Z­ Úÿ ã>îsvÏI_QD*1™|PÚCõþéV—º·´ ¨Ç½®ÁïBÖ–o¯Te4ø +”•!I¥Se¦ +[>¥ Ü)íLëf«3yg›57iSÃN×Ksk«ŽLþ…j}2Ùä·\öêyVKÐ{åp!%vŽ¬­’k/¶xÜÃyù©N_‘›&93¦“ð”ÍaŽ»bÈúB«™ÊÈZ‹#bË6‰Lü–Í‹W¨[x%ÛVÀ W CG#è_ ™·Rm„^œgÉä9ÂA°&>¹XLkŒâ¼s¤¨:.SGö Ü.)±-R'ŬÆÖ"³JG^êq÷Ùë¬Þë8ë V;k «•%Y>–‡E±||®€/Àç`|Îyð8ÞûÁÎîæš@M`ƒ•/Æz¤5%­cÒ—Ö^i=/­]Ò–Öim—VZZ)y¿Z§"ê>uº[…UªQU*¤*T¹ +*¥üÊP…gØ©ö&<‰¾¸H8 C”Œ8¿öEs"¸m»ã‹Æ…S• ÄSñ°ÓÚèxŽº3šœXžâõSOf.Ë#ãfÞé4Õ5þ} —ì%’û/ÑZ±$~[æåÚϤŽö!j¹QKG-7sIjN Œfî¥;4ü×&VÍ–ÔìØ£»›LÍ*Š§·î`Ï{Ê‚èOƬOÇëBûÚÜÎmª4/$¦© ßôrLï:µ¾}}»NዦSzþ˜O…nª7/Šé|*„ð åŸ \5pn +endstream +endobj +xref +0 339 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000325 00000 n +0000004607 00000 n +0000004941 00000 n +0000006763 00000 n +0000008812 00000 n +0000010848 00000 n +0000012829 00000 n +0000014823 00000 n +0000016832 00000 n +0000018888 00000 n +0000020890 00000 n +0000022912 00000 n +0000024909 00000 n +0000026893 00000 n +0000028891 00000 n +0000030950 00000 n +0000032961 00000 n +0000034971 00000 n +0000036993 00000 n +0000039026 00000 n +0000041062 00000 n +0000043060 00000 n +0000045045 00000 n +0000047081 00000 n +0000049107 00000 n +0000051093 00000 n +0000053092 00000 n +0000055104 00000 n +0000057141 00000 n +0000059127 00000 n +0000061126 00000 n +0000063138 00000 n +0000065137 00000 n +0000067123 00000 n +0000069149 00000 n +0000071189 00000 n +0000073231 00000 n +0000075259 00000 n +0000077283 00000 n +0000079336 00000 n +0000081374 00000 n +0000083359 00000 n +0000085388 00000 n +0000087307 00000 n +0000091082 00000 n +0000091261 00000 n +0000091388 00000 n +0000091513 00000 n +0000091990 00000 n +0000092466 00000 n +0000092618 00000 n +0000092842 00000 n +0000093250 00000 n +0000093678 00000 n +0000093958 00000 n +0000094377 00000 n +0000106702 00000 n +0000107172 00000 n +0000109000 00000 n +0000109295 00000 n +0000110169 00000 n +0000111281 00000 n +0000112119 00000 n +0000113079 00000 n +0000114132 00000 n +0000115044 00000 n +0000115998 00000 n +0000116902 00000 n +0000117620 00000 n +0000117747 00000 n +0000117872 00000 n +0000118467 00000 n +0000118698 00000 n +0000118922 00000 n +0000119378 00000 n +0000120154 00000 n +0000125068 00000 n +0000125604 00000 n +0000126417 00000 n +0000132237 00000 n +0000132380 00000 n +0000138393 00000 n +0000138521 00000 n +0000139085 00000 n +0000139656 00000 n +0000143132 00000 n +0000143200 00000 n +0000143250 00000 n +0000235376 00000 n +0000241577 00000 n +0000241700 00000 n +0000241821 00000 n +0000241945 00000 n +0000242097 00000 n +0000242382 00000 n +0000247945 00000 n +0000252353 00000 n +0000256523 00000 n +0000260909 00000 n +0000264557 00000 n +0000264626 00000 n +0000493174 00000 n +0000498996 00000 n +0000504674 00000 n +0000510609 00000 n +0000513659 00000 n +0000513728 00000 n +0000585476 00000 n +0000590786 00000 n +0000596498 00000 n +0000601664 00000 n +0000606926 00000 n +0000611666 00000 n +0000612112 00000 n +0000616840 00000 n +0000622043 00000 n +0000627368 00000 n +0000633050 00000 n +0000638306 00000 n +0000643637 00000 n +0000648447 00000 n +0000653555 00000 n +0000658395 00000 n +0000663057 00000 n +0000663108 00000 n +0000668193 00000 n +0000668236 00000 n +0000673322 00000 n +0000673349 00000 n +0000678578 00000 n +0000679044 00000 n +0000685010 00000 n +0000685053 00000 n +0000690891 00000 n +0000696214 00000 n +0000700701 00000 n +0000700784 00000 n +0000709868 00000 n +0000710019 00000 n +0000710132 00000 n +0000710260 00000 n +0000711739 00000 n +0000712132 00000 n +0000712403 00000 n +0000712946 00000 n +0000713218 00000 n +0000713760 00000 n +0000713787 00000 n +0000714099 00000 n +0000714425 00000 n +0000714751 00000 n +0000715088 00000 n +0000715470 00000 n +0000715841 00000 n +0000716269 00000 n +0000716575 00000 n +0000716890 00000 n +0000717254 00000 n +0000717658 00000 n +0000717811 00000 n +0000718007 00000 n +0000718160 00000 n +0000718575 00000 n +0000718770 00000 n +0000718968 00000 n +0000719362 00000 n +0000719633 00000 n +0000720278 00000 n +0000720701 00000 n +0000721051 00000 n +0000721377 00000 n +0000721703 00000 n +0000722113 00000 n +0000722603 00000 n +0000722756 00000 n +0000723165 00000 n +0000723360 00000 n +0000723558 00000 n +0000723968 00000 n +0000724240 00000 n +0000724781 00000 n +0000724934 00000 n +0000725357 00000 n +0000725552 00000 n +0000725750 00000 n +0000726144 00000 n +0000726171 00000 n +0000726609 00000 n +0000726714 00000 n +0000727233 00000 n +0000727852 00000 n +0000727962 00000 n +0000728530 00000 n +0000729160 00000 n +0000729606 00000 n +0000790254 00000 n +0000790281 00000 n +0000790594 00000 n +0000790901 00000 n +0000791249 00000 n +0000855364 00000 n +0000857360 00000 n +0000857760 00000 n +0000858218 00000 n +0000858376 00000 n +0000858534 00000 n +0000858692 00000 n +0000858849 00000 n +0000859008 00000 n +0000859167 00000 n +0000859326 00000 n +0000859484 00000 n +0000859764 00000 n +0000860271 00000 n +0000860430 00000 n +0000860589 00000 n +0000860748 00000 n +0000860907 00000 n +0000861066 00000 n +0000861225 00000 n +0000861384 00000 n +0000861543 00000 n +0000861702 00000 n +0000861861 00000 n +0000862020 00000 n +0000862047 00000 n +0000862411 00000 n +0000862537 00000 n +0000862690 00000 n +0000862929 00000 n +0000863473 00000 n +0000863888 00000 n +0000864086 00000 n +0000864480 00000 n +0000864633 00000 n +0000876780 00000 n +0000887852 00000 n +0000888040 00000 n +0000888856 00000 n +0000890480 00000 n +0000892953 00000 n +0000893572 00000 n +0000895573 00000 n +0000895600 00000 n +0000895905 00000 n +0000896215 00000 n +0000896242 00000 n +0000896554 00000 n +0000896951 00000 n +0000897251 00000 n +0000897551 00000 n +0000897895 00000 n +0000913671 00000 n +0000916922 00000 n +0000917739 00000 n +0000921174 00000 n +0000921201 00000 n +0000921506 00000 n +0000921906 00000 n +0000922206 00000 n +0000922506 00000 n +0000922888 00000 n +0000934084 00000 n +0000934111 00000 n +0000934423 00000 n +0000934840 00000 n +0000935140 00000 n +0000935440 00000 n +0000935784 00000 n +0000936104 00000 n +0000941708 00000 n +0000946917 00000 n +0000947115 00000 n +0000948266 00000 n +0000951662 00000 n +0000951753 00000 n +0000951844 00000 n +0000951935 00000 n +0000952026 00000 n +0000952107 00000 n +0000952188 00000 n +0000952269 00000 n +0000952363 00000 n +0000968505 00000 n +0000968709 00000 n +0000968913 00000 n +0000969117 00000 n +0000969295 00000 n +0000969473 00000 n +0000969600 00000 n +0000969727 00000 n +0000969843 00000 n +0000969940 00000 n +0000970061 00000 n +0000970182 00000 n +0000970455 00000 n +0000970482 00000 n +0000970787 00000 n +0000971108 00000 n +0000971433 00000 n +0000971526 00000 n +0000971947 00000 n +0000972444 00000 n +0000972793 00000 n +0000973190 00000 n +0000973490 00000 n +0000973790 00000 n +0000974123 00000 n +0000974467 00000 n +0000974494 00000 n +0000974799 00000 n +0000974875 00000 n +0000975169 00000 n +0000975245 00000 n +0000975531 00000 n +0000975607 00000 n +0000975901 00000 n +0000975977 00000 n +0000976273 00000 n +0000976461 00000 n +0000977153 00000 n +0000980523 00000 n +0000982565 00000 n +0000983016 00000 n +0000984058 00000 n +0000984146 00000 n +0000987493 00000 n +0000987594 00000 n +0000993913 00000 n +0000994001 00000 n +0000997409 00000 n +0000997506 00000 n +0001004842 00000 n +0001004918 00000 n +0001005212 00000 n +0001005300 00000 n +trailer +<< +/ID [<0692373A54415643816BE8F5032A65D1> ] +/Info 1 0 R +/Root 2 0 R +/Size 339 +>> +startxref +1008650 +%%EOF diff --git a/src/Static/data/Standards/6/IDDRS-6.10-DDR-and-SSR.docx b/src/Static/data/Standards/6/IDDRS-6.10-DDR-and-SSR.docx new file mode 100644 index 0000000..325e501 Binary files /dev/null and b/src/Static/data/Standards/6/IDDRS-6.10-DDR-and-SSR.docx differ diff --git a/src/Static/data/Standards/6/IDDRS-6.10-DDR-and-SSR.pdf b/src/Static/data/Standards/6/IDDRS-6.10-DDR-and-SSR.pdf new file mode 100644 index 0000000..a0c33af --- /dev/null +++ b/src/Static/data/Standards/6/IDDRS-6.10-DDR-and-SSR.pdf @@ -0,0 +1,3076 @@ +%PDF-1.4 %âãÏÓ +1 0 obj <>/Metadata 807 0 R/Pages 2 0 R/Type/Catalog>> endobj 807 0 obj <>stream + + + + + 2009-12-09T17:05:41Z + 2009-12-09T17:05:48Z + 2009-12-09T17:05:48Z + Adobe InDesign CS3 (5.0.4) + + + + JPEG + 256 + 256 + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4AE0Fkb2JlAGQAAAAAAQUAAhHY/9sAhAAKBwcHBwcKBwcKDgkJCQ4RDAsLDBEU EBAQEBAUEQ8RERERDxERFxoaGhcRHyEhISEfKy0tLSsyMjIyMjIyMjIyAQsJCQ4MDh8XFx8rIh0i KzIrKysrMjIyMjIyMjIyMjIyMjIyMjI+Pj4+PjJAQEBAQEBAQEBAQEBAQEBAQEBAQED/wAARCAEA AMYDAREAAhEBAxEB/8QBogAAAAcBAQEBAQAAAAAAAAAABAUDAgYBAAcICQoLAQACAgMBAQEBAQAA AAAAAAABAAIDBAUGBwgJCgsQAAIBAwMCBAIGBwMEAgYCcwECAxEEAAUhEjFBUQYTYSJxgRQykaEH FbFCI8FS0eEzFmLwJHKC8SVDNFOSorJjc8I1RCeTo7M2F1RkdMPS4ggmgwkKGBmElEVGpLRW01Uo GvLj88TU5PRldYWVpbXF1eX1ZnaGlqa2xtbm9jdHV2d3h5ent8fX5/c4SFhoeIiYqLjI2Oj4KTlJ WWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+hEAAgIBAgMFBQQFBgQIAwNtAQACEQMEIRIxQQVRE2Ei BnGBkTKhsfAUwdHhI0IVUmJy8TMkNEOCFpJTJaJjssIHc9I14kSDF1STCAkKGBkmNkUaJ2R0VTfy o7PDKCnT4/OElKS0xNTk9GV1hZWltcXV5fVGVmZ2hpamtsbW5vZHV2d3h5ent8fX5/c4SFhoeIiY qLjI2Oj4OUlZaXmJmam5ydnp+So6SlpqeoqaqrrK2ur6/9oADAMBAAIRAxEAPwCbeU/KflW58q6L cXGi6fNNNp9rJJJJaws7u0MbMzM0ZJJJ3OKpt/gzyf8A9WHTf+kOD/qnirv8GeT/APqw6b/0hwf9 U8Vd/gzyf/1YdN/6Q4P+qeKu/wAGeT/+rDpv/SHB/wBU8Vd/gzyf/wBWHTf+kOD/AKp4q7/Bnk// AKsOm/8ASHB/1TxV3+DPJ/8A1YdN/wCkOD/qnirv8GeT/wDqw6b/ANIcH/VPFXf4M8n/APVh03/p Dg/6p4q7/Bnk/wD6sOm/9IcH/VPFXf4M8n/9WHTf+kOD/qnirv8ABnk//qw6b/0hwf8AVPFXf4M8 n/8AVh03/pDg/wCqeKu/wZ5P/wCrDpv/AEhwf9U8Vd/gzyf/ANWHTf8ApDg/6p4q7/Bnk/8A6sOm /wDSHB/1TxV3+DPJ/wD1YdN/6Q4P+qeKu/wZ5P8A+rDpv/SHB/1TxV3+DPJ//Vh03/pDg/6p4q7/ AAZ5P/6sOm/9IcH/AFTxV3+DPJ//AFYdN/6Q4P8Aqnirv8GeT/8Aqw6b/wBIcH/VPFXf4M8n/wDV h03/AKQ4P+qeKpTrPlPyrFqOgJFounok+oSRyqtrCA6Cwv5OLgR7jkimh7gYqm3kz/lD9B/7Ztn/ AMmI8VTrFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUl13/jqeXP8A tpSf907UsVd5M/5Q/Qf+2bZ/8mI8VTrFXYql1/qM1rN6cSKypGJX5VqQXEdFp88shAEMZSpXvLqS 3a3VEqJpVjZj0AY/OtcjGN2kmlDT9Rmu5uEiqqvGZU41qAHMdGr8slOAiERlaY5WydirsVdirsVd irsVdirsVdirsVdirsVdirsVdirsVdiqS67/AMdTy5/20pP+6dqWKu8mf8ofoP8A2zbP/kxHiqdY q7FUi1pW+t8hyDmFREVru4lG23scuxcmufNF380c31b0zy9O8jRtiKMK1G/zyMARfuZSKF0ZW+so CCDFbtG9R9ljKzUP0ZLLyRDmlmoa3eQ6reWw1H0IY5oo3+GH/R0Z9OUNyeM05i4l+3WtNqUOGOMG INfjdhKfqO/42VPLmsare6pLDfPI1vWdYGZYhHIsItPSkT01D1kWUua7b/D7DLCIjsnHKRO6nY+e zfRvKlivCIEuyz8usM1zHxpCNmWLflQrXcYZafhPNY5uIK667dNZaddS3KRvPcTmSOIo/rRxzmMR ws8ah/hIFBxdhuOhBHhiykSNBba+dTPHFLNaR2qyFCwkuAWCO7oXX043UhAlZKsvHod8ZYK6qMtj ktn82X0kUNzZWsREvpcEknor+r9QNCfQ2b/S+KkGnUkdsIwi6P45oOQ1YRF75geXSbTVLWUWiTSy OFPEtPDH6oQRmReHKSitwqCRUA13yIx1IgpM7AKgfOVxLBdmOzit5oROIEnnDNK0S8l4Rwo5Lfzo SCvfD4IBG6PEJB2RumeZJdSvlskto6fvTJMkxdVWIqm37oVYlgeP8pBrvTIyx8ItkJ2Ut0vzLqcX 1SG9hlupL6S3Aad7eIok4NZE9KgZKj4E+3s1cnLFE3TCOQhqDzjfxWSCa0S5uxEJXpNxG8Buzy42 /wAI47Jsa0PhUpwi+afENck80jV7jUZ7iC4tlt2g+yUlMoYCWeA/aiipvBXv1yucBEM4yJTXIMnY q7FXYq7FXYqkuu/8dTy5/wBtKT/unalirvJn/KH6D/2zbP8A5MR4qnWKuxV2KuxV2KuxV2KuxV2K uxVplDKVNaMKGhIO/gRviqnbW8NpbxWlsgjhgRYokFaKiDio38AMJJJsoAAFKuBLsVdirsVdirsV dirsVdirsVdiqS67/wAdTy5/20pP+6dqWKu8mf8AKH6D/wBs2z/5MR4qnWKuxV2KuxV2KuxV2Kux V2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KpLrv8Ax1PLn/bSk/7p2pYq7yZ/yh+g/wDbNs/+ TEeKp1irsVY95i1TzJYXMUei2K3cTJykZkd6NUilUdO2KpP/AIi8+/8AVnj/AORMv/VbFXf4i8+/ 9WeP/kTL/wBVsVd/iLz7/wBWeP8A5Ey/9VsVd/iLz7/1Z4/+RMv/AFWxV3+IvPv/AFZ4/wDkTL/1 WxV3+IvPv/Vnj/5Ey/8AVbFXf4i8+/8AVnj/AORMv/VbFUx0PWfNd5qKQatpyW1qysWlEcikECq7 tIw64qyjFXYq7FXYq7FXYq7FXYq7FXYq7FXYqkuu/wDHU8uf9tKT/unalirvJn/KH6D/ANs2z/5M R4qnWKuxVi/mm9S1u4VbXX0jlHX0lt2m5/EfiqvTwxVI/wBLRf8AU4y/9IUmKu/S0X/U4y/9IUmK u/S0X/U4y/8ASFJirv0tF/1OMv8A0hSYq79LRf8AU4y/9IUmKu/S0X/U4y/9IUmKu/S0X/U4y/8A SFJirv0tF/1OMv8A0hSYq79LRf8AU4y/9IUmKu/S0X/U4y/9IUmKu/S0X/U4y/8ASFJirv0tF/1O Mv8A0hSYq79LRf8AU4y/9IUmKu/S0X/U4y/9IUmKu/S0X/U4y/8ASFJirv0tF/1OMv8A0hSYqznS 3EmnW0gnN2GiQ/WCpQyVH2+J6V8MVReKuxV2KpLrv/HU8uf9tKT/ALp2pYq7yZ/yh+g/9s2z/wCT EeKp1irsVY15muL6G6hFrc6bApjqRfsquTU7ry7Yqk317WP+W/QP+Rkf9MVd9e1j/lv0D/kZH/TF XfXtY/5b9A/5GR/0xVpb/V23F/oOxI3dB0+YxVv69rH/AC36B/yMj/pirvr2sf8ALfoH/IyP+mKu +vax/wAt+gf8jI/6Yq769rH/AC36B/yMj/pirvr2sf8ALfoH/IyP+mKu+vax/wAt+gf8jI/6Yq76 9rH/AC36B/yMj/pirvr2sf8ALfoH/IyP+mKu+vax/wAt+gf8jI/6Yq769rH/AC36B/yMj/pirvr2 sf8ALfoH/IyP+mKu+vax/wAt+gf8jI/6YqzTTWkfT7ZpWid2jUs0BBiJp1jp+z4YqisVdirsVSXX f+Op5c/7aUn/AHTtSxV3kz/lD9B/7Ztn/wAmI8VTrFXYqxjzRZXFzdwtDoqaqFjoZHk4FDyPw05r iqSfom9/6lOH/pI/6+Yq79E3v/Upw/8ASR/18xV36Jvf+pTh/wCkj/r5iq6TTdRlYNJ5UhYhVUH1 +yAIo/vPAYqt/RN7/wBSnD/0kf8AXzFXfom9/wCpTh/6SP8Ar5irv0Te/wDUpw/9JH/XzFXfom9/ 6lOH/pI/6+Yq79E3v/Upw/8ASR/18xV36Jvf+pTh/wCkj/r5irv0Te/9SnD/ANJH/XzFXfom9/6l OH/pI/6+Yq79E3v/AFKcP/SR/wBfMVd+ib3/AKlOH/pI/wCvmKu/RN7/ANSnD/0kf9fMVd+ib3/q U4f+kj/r5irONMRo9Oto3gFqyxKDADyEZA+wDvWmKorFXYq7FUl13/jqeXP+2lJ/3TtSxV3kz/lD 9B/7Ztn/AMmI8VTrFXYqw/zlbWE97A13YXt6wior2n2VHI7N8Lb4qx79H6L/ANWXV/8AP/nnirv0 fov/AFZdX/z/AOeeKu/R+i/9WXV/8/8Annirv0fov/Vl1f8Az/554q79H6L/ANWXV/8AP/nnirv0 fov/AFZdX/z/AOeeKu/R+i/9WXV/8/8Annirv0fov/Vl1f8Az/554q79H6L/ANWXV/8AP/nniqf6 f5G0C+s4rtorq3Mor6UrgOu5HxDh7Yqif+Vd+X/Gf/kYP+aMVd/yrvy/4z/8jB/zRirv+Vd+X/Gf /kYP+aMVd/yrvy/4z/8AIwf80Yq7/lXfl/xn/wCRg/5oxV3/ACrvy/4z/wDIwf8ANGKsis7WKxtY bOCvpwIsacjU0UUFcVV8VdirsVSXXf8AjqeXP+2lJ/3TtSxV3kz/AJQ/Qf8Atm2f/JiPFU6xV2Ku xV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVJdd/46nlz/tpSf8AdO1LFXeT P+UP0H/tm2f/ACYjxVOsVdirHvMWqeZLC5ij0WxW7iZOUjMjvRqkUqjp2xVJ/wDEXn3/AKs8f/Im X/qtirv8Reff+rPH/wAiZf8Aqtirv8Reff8Aqzx/8iZf+q2Ku/xF59/6s8f/ACJl/wCq2Ku/xF59 /wCrPH/yJl/6rYq7/EXn3/qzx/8AImX/AKrYq7/EXn3/AKs8f/ImX/qtirv8Reff+rPH/wAiZf8A qtirv8Reff8Aqzx/8iZf+q2Kpx5d1TzJf3MsetWK2kSpyjZUdKtUClXd+2KshxV2KuxV2KuxV2Ku xV2KuxV2KpLrv/HU8uf9tKT/ALp2pYq7yZ/yh+g/9s2z/wCTEeKp1irsVYr5rvvqt3Av6bOk8o6+ kIXl5/EfiqgNMVSL9Ln/AKm5v+kSX/mnFXfpc/8AU3N/0iS/804q79Ln/qbm/wCkSX/mnFXfpc/9 Tc3/AEiS/wDNOKu/S5/6m5v+kSX/AJpxV36XP/U3N/0iS/8ANOKu/S5/6m5v+kSX/mnFXfpc/wDU 3N/0iS/804q79Ln/AKm5v+kSX/mnFXfpc/8AU3N/0iS/804q79Ln/qbm/wCkSX/mnFXfpc/9Tc3/ AEiS/wDNOKu/S5/6m5v+kSX/AJpxV36XP/U3N/0iS/8ANOKu/S5/6m5v+kSX/mnFXfpc/wDU3N/0 iS/804qzzS39XTbWT1/rXOJD65Ur6lR9vidxXFUXirsVdiqS67/x1PLn/bSk/wC6dqWKu8mf8ofo P/bNs/8AkxHiqdYq7FUh1+x1q6uIn0yOykjVKObtOTcqn7PwttirH7hNZtJTDdS6DBKKEpJ6aMAe mzKDiqn62o/8tfl7/gov+acVd62o/wDLX5e/4KL/AJpxV3raj/y1+Xv+Ci/5pxVsTX1DW78v17Ua LwPivjiqY6PcWSySfpu40Vk4j0/QaGvKprWtNqYqm31ryf8A7+03/goP64q7615P/wB/ab/wUH9c Vd9a8n/7+03/AIKD+uKu+teT/wDf2m/8FB/XFXfWvJ/+/tN/4KD+uKu+teT/APf2m/8ABQf1xV31 ryf/AL+03/goP64q7615P/39pv8AwUH9cVd9a8n/AO/tN/4KD+uKu+teT/8Af2m/8FB/XFU2gMDQ xtalDAVBjMdOBXtx47UxVUxV2KuxVJdd/wCOp5c/7aUn/dO1LFXeTP8AlD9B/wC2bZ/8mI8VTrFX Yqk+s3+u2k0aaVpwvo2WruZAnFqnbcjtirHL231jUbg3V75XimmYAFzPuQBQdJBiqh+ib3/qU4f+ kj/r5irv0Te/9SnD/wBJH/XzFXfom9/6lOH/AKSP+vmKu/RN7/1KcP8A0kf9fMVd+ib3/qU4f+kj /r5irv0Te/8AUpw/9JH/AF8xV36Jvf8AqU4f+kj/AK+Yq79E3v8A1KcP/SR/18xV36Jvf+pTh/6S P+vmKu/RN7/1KcP/AEkf9fMVd+ib3/qU4f8ApI/6+Yq79E3v/Upw/wDSR/18xV36Jvf+pTh/6SP+ vmKu/RN7/wBSnD/0kf8AXzFXfom9/wCpTh/6SP8Ar5irONMRo9Oto3gFqyxKDADyEZA+wDvWmKor FXYq7FUl13/jqeXP+2lJ/wB07UsVd5M/5Q/Qf+2bZ/8AJiPFU6xV2KpVq3l2x1mZJ7qSZGjXgBFJ wFK132PjiqVv5O8vxtwkvLhGHUNcAH8Riq3/AAl5c/5bpv8ApJH9MVd/hLy5/wAt03/SSP6Yq7/C Xlz/AJbpv+kkf0xV3+EvLn/LdN/0kj+mKu/wl5c/5bpv+kkf0xV3+EvLn/LdN/0kj+mKu/wl5c/5 bpv+kkf0xV3+EvLn/LdN/wBJI/pirv8ACXlz/lum/wCkkf0xV3+EvLn/AC3Tf9JI/pirv8JeXP8A lum/6SR/TFXf4S8uf8t03/SSP6Yq7/CXlz/lum/6SR/TFXf4S8uf8t03/SSP6Yqmuk2ek6NFJFa3 XNZWDMZplc1Apt0xVNVZXUMpDKdwRuCMVbxV2KuxVJdd/wCOp5c/7aUn/dO1LFXeTP8AlD9B/wC2 bZ/8mI8VTrFXYq7FWH+YtPjuNUklby4+pkqg+srcvEGoOnBdtsVSv9Exf9SdL/0myYq79Exf9SdL /wBJsmKu/RMX/UnS/wDSbJirv0TF/wBSdL/0myYq79Exf9SdL/0myYq79Exf9SdL/wBJsmKu/RMX /UnS/wDSbJirv0TF/wBSdL/0myYqn9p5M8uT20U0+mG3lkQM8JnmYoxG619QVpiqt/gfyv8A8sP/ ACVm/wCquKu/wP5X/wCWH/krN/1VxV3+B/K//LD/AMlZv+quKu/wP5X/AOWH/krN/wBVcVd/gfyv /wAsP/JWb/qrirv8D+V/+WH/AJKzf9VcVTq2t4bS3jtbdeEMKhI1qTRVFAKsScVVcVdirsVSXXf+ Op5c/wC2lJ/3TtSxV3kz/lD9B/7Ztn/yYjxVOsVdirsVYrr0ZbUnI8zDSvhX/RTT4duv98nXr0xV LfSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/q dR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/Z Riqrb2NzdzLb2vnEzTPXjGgDMaAsaAT+AxVHf4W8wf8AUyT/APIo/wDVfFXf4W8wf9TJP/yKP/Vf FXf4W8wf9TJP/wAij/1XxVkVnDLb2sME8puJI0VXmYULkDdiKnriqvirsVdiqS67/wAdTy5/20pP +6dqWKu8mf8AKH6D/wBs2z/5MR4qnWKuxV2Kpfd6Fo99Obm8tI5pWABdxUkDYYqo/wCFvLv/AFb4 f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/ AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+F vLv/AFb4f+BxVVtdA0aynW5tLOKGaOvF1FCKgqfwOKpjirsVdirsVdirsVdiqS67/wAdTy5/20pP +6dqWKu8mf8AKH6D/wBs2z/5MR4qnWKuxVJ9Z80aZoU8cF96nOVea+moYUrT+YeGKpd/ysTy/wCE /wDyLH/NeKu/5WJ5f8J/+RY/5rxV3/KxPL/hP/yLH/NeKp9pmo2+rWUWoWvL0ZuXHmKH4WZDUb91 xVF4q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUl13/jqeXP+2lJ/wB07UsVd5M/5Q/Qf+2b Z/8AJiPFU6xV2Kse8xNOLmL0tBi1gcN5ZAhKbn4BzRvniqUcrz/qTLb7ov8AqliruV5/1Jlt90X/ AFSxVwe8PTybbGm3SL/qliqMg1nzFaxLBbeWvRiSvGOORVUVNTRVQDqcVVP8Q+af+peb/kcP+acV d/iHzT/1Lzf8jh/zTirv8Q+af+peb/kcP+acVd/iHzT/ANS83/I4f804q7/EPmn/AKl5v+Rw/wCa cVd/iHzT/wBS83/I4f8ANOKu/wAQ+af+peb/AJHD/mnFXf4h80/9S83/ACOH/NOKu/xD5p/6l5v+ Rw/5pxV3+IfNP/UvN/yOH/NOKu/xD5p/6l5v+Rw/5pxV3+IfNP8A1Lzf8jh/zTirIrOWae1hmuIv QmkQNJETXgxG619sVVsVdirsVSXXf+Op5c/7aUn/AHTtSxV3kz/lD9B/7Ztn/wAmI8VTrFXYqw/z lHYPewG7j1F29LY2HHhTkftclO+Kse9DRf8AfGvf8k/+aMVd6Gi/7417/kn/AM0YqukTRH40tdbj 4qF+AIK0/aPw9T3xVb6Gi/7417/kn/zRirvQ0X/fGvf8k/8AmjFXehov++Ne/wCSf/NGKu9DRf8A fGvf8k/+aMVd6Gi/7417/kn/AM0Yq70NF/3xr3/JP/mjFXehov8AvjXv+Sf/ADRirvQ0X/fGvf8A JP8A5oxV3oaL/vjXv+Sf/NGKu9DRf98a9/yT/wCaMVd6Gi/7417/AJJ/80Yq70NF/wB8a9/yT/5o xV3oaL/vjXv+Sf8AzRir0TSBGNLtBEJFjEKcRPT1QKD7dP2vHFUbirsVdiqS67/x1PLn/bSk/wC6 dqWKu8mf8ofoP/bNs/8AkxHiqdYq7FWJ+brtLe8gVtbm0kmKvpRQvIH+I/ESjLiqQfpOH/qbrr/p Fl/6qYq79Jw/9Tddf9Isv/VTFXfpOH/qbrr/AKRZf+qmKu/ScP8A1N11/wBIsv8A1UxV36Th/wCp uuv+kWX/AKqYq79Jw/8AU3XX/SLL/wBVMVd+k4f+puuv+kWX/qpirv0nD/1N11/0iy/9VMVd+k4f +puuv+kWX/qpirv0nD/1N11/0iy/9VMVd+k4f+puuv8ApFl/6qYq79Jw/wDU3XX/AEiy/wDVTFXf pOH/AKm66/6RZf8Aqpirv0nD/wBTddf9Isv/AFUxV36Th/6m66/6RZf+qmKu/ScP/U3XX/SLL/1U xVn+kuJNMtXE5ug0SETsCpkqPtlTUiuKozFXYq7FUl13/jqeXP8AtpSf907UsVd5M/5Q/Qf+2bZ/ 8mI8VTrFXYqxrzM98l1D9UvtNs1Me635QOTU7ryRtsVSX1tZ/wCrzoP/AAUf/VHFXetrP/V50H/g o/8AqjirvW1n/q86D/wUf/VHFXetrP8A1edB/wCCj/6o4q71tZ/6vOg/8FH/ANUcVd62s/8AV50H /go/+qOKu9bWf+rzoP8AwUf/AFRxV3raz/1edB/4KP8A6o4q71tZ/wCrzoP/AAUf/VHFXetrP/V5 0H/go/8AqjirvW1n/q86D/wUf/VHFXetrP8A1edB/wCCj/6o4q71tZ/6vOg/8FH/ANUcVd62s/8A V50H/go/+qOKu9bWf+rzoP8AwUf/AFRxV3raz/1edB/4KP8A6o4qzXTTIdPtjLJHM5jXlJBQxMad UoAOPhiqKxV2KuxVJdd/46nlz/tpSf8AdO1LFXeTP+UP0H/tm2f/ACYjxVOsVdirHPMlnd3NzE1v osOqqI6GSWRUKGp+EBmXFUn/AEXqf/Up2n/I+P8A6qYq79F6n/1Kdp/yPj/6qYq79F6n/wBSnaf8 j4/+qmKu/Rep/wDUp2n/ACPj/wCqmKu/Rep/9Snaf8j4/wDqpirv0Xqf/Up2n/I+P/qpirv0Xqf/ AFKdp/yPj/6qYq79F6n/ANSnaf8AI+P/AKqYq79F6n/1Kdp/yPj/AOqmKu/Rep/9Snaf8j4/+qmK u/Rep/8AUp2n/I+P/qpirv0Xqf8A1Kdp/wAj4/8Aqpirv0Xqf/Up2n/I+P8A6qYq79F6n/1Kdp/y Pj/6qYq79F6n/wBSnaf8j4/+qmKu/Rep/wDUp2n/ACPj/wCqmKsy05HjsLeOSBbV1jUNAhBWMgfY BFemKonFXYq7FUl13/jqeXP+2lJ/3TtSxV3kz/lD9B/7Ztn/AMmI8VTrFXYqxPzba2NxeQNdaVe6 iwioHtAxVRyPwtxHXFUh/Rukf9S5q33P/wA04q79G6R/1Lmrfc//ADTirv0bpH/Uuat9z/8ANOKu /Rukf9S5q33P/wA04q79G6R/1Lmrfc//ADTirv0bpH/Uuat9z/8ANOKu/Rukf9S5q33P/wA04qyC 28i+Xbi2ina2nhaVFcxPIwZCwB4sPEd8VVf8AeXP99S/8jGxV3+APLn++pf+RjYq7/AHlz/fUv8A yMbFXf4A8uf76l/5GNirv8AeXP8AfUv/ACMbFXf4A8uf76l/5GNirv8AAHlz/fUv/IxsVd/gDy5/ vqX/AJGNiqf2ltFZW0VpACIoEEaAmp4qKDfFVbFXYq7FUl13/jqeXP8AtpSf907UsVd5M/5Q/Qf+ 2bZ/8mI8VTrFXYqlOr+ZdK0SZIL93V5V5rxQttWnb5YqxXU9f0TULtrmPW9Rs1YACGDmqCgpUAHv iqF/SWkf9THq33v/AM1Yq79JaR/1Merfe/8AzVirv0lpH/Ux6t97/wDNWKu/SWkf9THq33v/AM1Y q79JaR/1Merfe/8AzVirv0lpH/Ux6t97/wDNWKtfpLSP+pj1b73/AOasVXLf6S5ovmPVifm/c0/m 98VW/pLSP+pj1b73/wCasVbOo6SpKnzHqwI2O7/81Yq79JaR/wBTHq33v/zVirjqOkDY+Y9W7Hq/ ff8AmxVr9JaR/wBTHq33v/zVirf6S0j/AKmPVvvf/mrFXfpLSP8AqY9W+9/+asVZ9pTpJplq8Ur3 CNEhWaX7bin2nr3OKozFXYq7FUl13/jqeXP+2lJ/3TtSxV3kz/lD9B/7Ztn/AMmI8VTrFXYqxrzN e39tdQpaaxb6WrR1aOdVYsan4hyjfFUl/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2t f9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu /S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+ qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8A ItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKs10yR5tPtpJJlunaNS06CiyGm7KAB sfliqKxV2KuxVJdd/wCOp5c/7aUn/dO1LFXeTP8AlD9B/wC2bZ/8mI8VTrFXYqhLvStNv3WS9tYr h0HFWkQMQOtBXFUP/hzQP+rdbf8AIpf6Yq7/AA5oH/Vutv8AkUv9MVd/hzQP+rdbf8il/pirv8Oa B/1brb/kUv8ATFXf4c0D/q3W3/Ipf6Yq7/Dmgf8AVutv+RS/0xV3+HNA/wCrdbf8il/pirv8OaB/ 1brb/kUv9MVd/hzQP+rdbf8AIpf6Yq7/AA5oH/Vutv8AkUv9MVd/hzQP+rdbf8il/pirv8OaB/1b rb/kUv8ATFXf4c0D/q3W3/Ipf6Yq7/Dmgf8AVutv+RS/0xV3+HNA/wCrdbf8il/pirv8OaB/1brb /kUv9MVR8MMVvEsECCOKMcURRQADsBiqpirsVdiqS67/AMdTy5/20pP+6dqWKu8mf8ofoP8A2zbP /kxHiqdYq7FXYq7FXYq7FXYq7FXYqhrzULHTwrX1xHbiQkIZWC1I60riqF/xHoH/AFcbb/kav9cV d/iPQP8Aq423/I1f64q7/Eegf9XG2/5Gr/XFXf4j0D/q423/ACNX+uKr117RXRpEvoWRPtuHBVa/ zEbDFVn+I9A/6uNt/wAjV/rirv8AEegf9XG2/wCRq/1xV3+I9A/6uNt/yNX+uKt/4j0H/q4223X9 4v8AXFUfFLFPEk0LiSOQBkdTUEHoQcVQt1rGlWUvoXl5DBLQNwkcKaHoaE4qtvNd0bT3WO/voLVn HJVmdUJHiORG2SjjlLkGMskY8yhv8W+V/wDq7Wf/ACOT/mrJeBk7ix8fH3hKdZ80eXJNR0B49UtW WHUJHkImQhVNhqCcm32HJwPpx8GfcU+NDvC3yn5s8q23lXRbe41rT4ZodPtY5I5LqFXR1hjVlZWk BBBG4ytmm3+M/J//AFftN/6TIP8Aqpirv8Z+T/8Aq/ab/wBJkH/VTFXf4z8n/wDV+03/AKTIP+qm Ku/xn5P/AOr9pv8A0mQf9VMVd/jPyf8A9X7Tf+kyD/qpirv8Z+T/APq/ab/0mQf9VMVd/jPyf/1f tN/6TIP+qmKu/wAZ+T/+r9pv/SZB/wBVMVd/jPyf/wBX7Tf+kyD/AKqYqpT+afI1yALnWNJmC/ZE l1btSvhyc4qpfp78vP8Aq5aL/wAj7X/mrFXfp78vP+rlov8AyPtf+asVd+nvy8/6uWi/8j7X/mrF Xfp78vP+rlov/I+1/wCasVbHmD8vgCo1PRgG6gXFtQ08fjxVr9Pfl5/1ctF/5H2v/NWKu/T35ef9 XLRf+R9r/wA1Yq79Pfl5/wBXLRf+R9r/AM1Yq79Pfl5/1ctF/wCR9r/zViqITzf5MjRY49c0xEUU VVu4AAB2AEmKqUvmTyFcP6k+raRK9KcnuLZjQe5fFWpvMfkC4Ia41XR5WGwL3FsxH/BOcIkQigVP 9N/lz/1cNE/5HWv/ADVh45d68ISrV9X8hPqGhNBfaO0cd+7XBSW2KrH9RvlBko2y82Ub96YOI968 If/Z + + + + + + 1 + uuid:7a3b836d-8924-449c-985a-e8b512aa68fa + adobe:docid:indd:eb64be31-37e8-11db-a775-c50f3d60f3d4 + proof:pdf + + 9457faaf-3771-11db-a511-a0ef076711c0 + adobe:docid:indd:84d84e27-371f-11db-8174-8932fe65661d + 1 + + + + + ReferenceStream + 240.00 + 240.00 + Inches + + uuid:8BD9D92AF6DFDE1181AE847E65F56612 + uuid:8AD9D92AF6DFDE1181AE847E65F56612 + + + + + + + application/pdf + + + Adobe PDF Library 8.0 + False + + + + +endstream endobj 2 0 obj <> endobj 233 0 obj <> endobj 232 0 obj <> endobj 331 0 obj <> endobj 449 0 obj <> endobj 565 0 obj <> endobj 734 0 obj <> endobj 564 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 607 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 657 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 712 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 723 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 733 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 745 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 758 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 769 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 777 0 obj <>stream +H‰ìW[oÛ6~ׯàÓ@ ¶,ŠºXEQ ·ÞÖ¤YänÍ002íh‘%W—¤é¯ß9$e;’³klÃÃ")’‡ç|ßùxôÉr‰KBæ‘(öH%­ŸIaάÉQâ’´&Œ:-¬É+è.kk2c¿º08[Xc×q=2KIäÁ]T#„ÿ¶ò<'ŽÃ˜ÌVÖGÚãУ³ÇžG]û—Ù[ëdfýø˜W¯ž’ t˜“Àá~Œ‡[èG ®HŽÎ,× ÈñÉ)±‚؉¢)ñ¸ãùñ©˜X˜XŸqÔUGgä­³žàKçaŒ;|LÕÙ"Ø<£Ü·g¿Y“d-ŠçÏ'iÓŠ|&?7Ï_ž¼|é¹.ñâ9<>"%8óäšh€iÃȜ8C³9DëMÑÈe%ì1si#çä8«Eµ+Y4#›G”ËUy•åÙ3'+ "Š9¹ÙîRNx!ªyM¶QçÜwBÎU¨ ߪ¾'»1ãxÊÕ•¬Ä(V!„<³î«=âmÔ#oêøÌóÔÌïÖp½æ\Ø}žÃC¯ w"å3bsF_U6›R) 9Rý÷w²P Œ->“lUê‘ Äá¾(F:¬x_Ÿ„…Ž·Aò]VÜdÅòÁ&G帬æY!šîÍññÅC3‰î/ÊJ=_·+¡Í&2m«¬¹×Ó PÙk«cæÓ¦ÊâÒåQ–6àÜÂHßÔu+ë‘é|^Ë*“E*Í€²®ZçUV‚•LÖçL˜?ÒnùQ‡Ë ¨Ãj;ÀÁ +Ý+ ‘wÓËÌ©±¹Î)›1¶Ù? Y)ó>°ðW¥c„pl†vݽ+«|®’ ¹–äC‘ÝʪÆH• rX‰9O;‘·m~¿EÍpŽ§=NQ§G̱¦ÍÖ,eAo Š"Cþ~ !ì €w< :Â)ÄZuë¦ß«Ö•~ ¯väуE•¥Š#Á.GT§Q, +è™l H7ª}I’äìÒVµ²RÞfsY«[‘·â*—ª“u¶¼nô›y%î´•…^´RJ£Ã©òÖÝ„ç<À€û:ƒÅ à_q;‚]ñ-Ò/¢biR5®î&ô0b‘ÃâØ¡ÖGŠ«êF4R­ïÎGlß7áév eùi#MñÕJâ<¾¤µ”z°(äg:ìRMc‡HýE›çd.‘åõ¥ýÌ ŸVÁà¬1}'ZGä ô…Ê@h)oáùR+ƒ¤/¾5¤×²Ò‹*;ò1ÿ`ôÒóØû³‡Ö*²ÁóÍj]Vp­¤º‹¸¢í25¶Þß{×Ùú™êÎ̲#QËŽ(»Áõcô!œ}JÛbžuO! ð¹å´é)RcûBBôWº­%ÎôÓ\¤x‡ªþiV× @õ3Ý} ÐßræáyFz@ù?þ.Ëy-@HGJ˜~(ëò†ä¼vÈkø]rß/–ËŒ|G~²™S‡ áx—5ø¤QV¹XŽžLº¢'$  +8wuvcC»P—š)æ$¯Ä½n\Iý·0Zk°Û\kÚåu7`ÞtÔå‚sÆK@Îl7³cŠúƨ|j©ËFË1¯3s”T¬Eª(…ñœ}^@^ä-Šà²ÍæÈïø1"K±&]C\¯DzS7åz÷yS¼v%\F›¯vú˜í£á7ÁQdŠóŒžé`È i‹-Ì8¦C«J +íd#ªûñ+(~@GøÒÏô$• ¹Ü.ÎÅ>TÆÁV•€[¢»ðý­­!ÔtÌ`FSUŒ„PŒl­֮˺LË4“XxŒÀ¸O’IÆÈõ~éG“¸¢¬õwâ{n(êÚ%œ~o– ,ȹ¨Ä`ëõ¯ÈÆøo€/ýîoÃ"7ŠÆýG9€•`÷ûCÍŸo¾?tAÇöÂSïc>Cð­Fr ›ô`›û§ÈFn¿à¢“=Б=:¯÷»‡.{íƒôÀz}§Æ›¥'˜wTáJ°Zéš‘ëJ‘¨±¶×ŠÅž™ ¸°°S>bÙÞi– ñíäü"™Mö±Ÿ¨rp!àsÎ|Ñ~ +ncã:~˜Y€á%‹ÌKíKcN_Ê+%Z@èäÃBÞ­ìàhá£cêòØömÿíÛ¾ˆ| ¢Fy Dâ1µí<ñMÜ5ZPSœ«Ï$TØcy+órØ'YK9¬~¿F²úÐý\ߣÖþ_¨Š½þÿ/õ=Ü¥ß!fÞ ô/Ù§-F¶…Å®šZÍ#VÁ@ÍLÕ²°£fA_Í‚?R³>/ö«Ù&@> endobj 40 0 obj <> endobj 20 0 obj <> endobj 24 0 obj <> endobj 34 0 obj <> endobj 31 0 obj <> endobj 751 0 obj <> endobj 752 0 obj <> endobj 806 0 obj <>stream +H‰\“Ýn£0Fïý¾l/*±Ç­„Ú¤•r±?Úì>'‹´䋼ýÎç/êJ‹>öpf›Ýv7‹-¾§©ÛÇұOñ2]Sí!ž†Ñ¬*ÛÝrŸågwngSèæýí²Äón> endobj 805 0 obj <>stream +H‰”U{PSW¿nA¹æ!Ém³®ß®b}ÔR*>**¢V /‰F’pCE¨In¼7‘G +ÊC!)($$­u‹VWØÝîV§ãkÕn«Œ¶³«ÝsãaÖ½ 8£ Û;óýqîù}ßï÷ûÎù B8΄6®ZŸ÷öZ…J¡S樣t +•2ÝÿKÎH8Ì„~\]Ïϧ¢QÒvz ¨ŒgÇŸˆçEú÷]¦Öä*wdëð)é¿ÅgÅ,˜7ÍçbŒ?ÆÌ ÄÙXYˆ1xl†:-O* t™» ú{~:¿LS¸$üo¹cѱÊqÂq¶È¥Øo°o(|~|ñ„åê„+„wD¢[âZɺ‰¢"¢z¥?àáx8áÓæs.^ =>­âp<äÂ)p­FwM¿ 1iƒC{ U^߯O ²®‚I`2˜%DôkÁ§ÞŒ\0¬ƒèÔ‡ïLšWÔ´=wtÞB1ÌZ'ÁÉáp8Á©ÉÁý½‚½+ˆ÷>J*/¶9®^ÿò¶û¾¨Ô13 'q…sx‚OBê¸Ç¯ ð77‚°·õ‘ÝÏ°íX=@Aˆ`±cgv}ÑIOƒ§¥© A#Ú~a‘]϶>Ã4˜ûéH±ì+à§ð Çü‰2 /^Üg‚û0 íÌÄüÈ=¾DÌˤù6°=aO]Aó¢|#Šyw‡z(7ÝÞÞN¶óåÎÐd+ZHí«°‹íöÚ§ô` +,ÜSp-J•X‹ âÂý%9¤4ÕŒªC;¨úlÇY²ÃÓZ ë^›©\d¬4#Îõ¡ÂÕ¸€æº¡…*n8(77iÝàí ÕãŠd¶`2šƒ™GL ™k»Pñù±Ïx§V%ÔÄK6Í0¬ž%ƒÑ“ø.†Iÿ‚Hê¿ë¼|Sjo/)G·,ùP3CƲ=Ÿî€Å`óŸþRœÙͶ+†õ£‹yî7ãÞ&ïG,;}ï’À/[oäd·P-tKo/ÙË—Û¹·.Vw|%â¾ï̃T8¦®”qã-ñd|š‚Nç˱­fõvªúPn·Í#‹^WÀd9ü*7®/«\'«¦tµt°?à|'hþDëŠìïOœX.ЂûÆíê"É.Ù ¯©5-%c%YÜNPJWÑUGì"ê“6k»¤«Ï¢£e³Ñ“\륲‹ÕçxØN:_Ci%˜Þ²t)9M“Ké$XEäQ„Ĭ¾8œ'Ûs¡‰È1kXõzV½—j§{ún›ûøòÝ4uZF;(e·~lï®èäi¸ûÖÒK‹ÒÍ"Sj*¹M¢H³ÚReU‡«j¶ ]N¤éWý’“{ÌsÁ oíi¥]#ñ¾Aë¼xëó¨< vƒÊäýåpÞï¼'4$Ú{à€ÑXb.°ì0 MjÔCuÑÞ./ù9_nu®´¢*ÊX]#f­¦«¤g@:²©ì-.ð‚Ñyá3àËš±gÌ©«"-¥t«.šÿ,o‚å7Gi~sèËC™_³Lòî¢âUód0bvåb¸ŒŠëûþ|ê˜WŠ1ÇËÊkh[¹ÐRIÚ+ŶÃ6Ê&mº²ªò¨UÔZF;Q…)Í¢P(¨m|¹Q}†l!É“¨’ÌnS´lkM5RtccÙÈ^ñüP]~u“^-àð‚&´ÚQ﨓Ô7su–>ù±Ä‡Ùe¡\£ŒQ,{­­Îõ|ÿê[Õ$9wõÜv^·¨¨ˆ,bå¢o&\:‡F`ÓzJjjC®® Šõm±F-ÐV+ ¸ÈÀ×±taÀúYºÔûÒŒ²Â¨s ¢ÑŠ4ÖY™m¹G¥¿ªàQpãü“³]qô™,“¥Åhg®óë}˜ÈÀ332ÙnéØÑz [M9¢2”á•ÂÍÁrgTu£|pîçƒ!gg©–ÙPðPÎ$ãÅ@ ¶Ò!ÏGTÑ¿£÷ÐUtÂz!HžÍý†6^YN¯¦w¯£“èlzíÎLHÜ>ƒÃë–¯åR-èŸõ³‘Æ8 ß‹eø~JŒ±½ù&%àǨ +“Çâ®÷L·©}>‘ó«Õqo/•J,vFŠ J¿§ú +_‚Ÿ€70æNôñ¥B '™HÆ“È}좜û–ñ³ï,z t¯j tÏÕ΢ú]ÜeÂÓ×@úŽÖ¶£3gG-ß´m –Â1¨@,ík9óZEw›t»Ý¸›‰$Ç:ÃRMUÍ’~z'ðñÿåøòXˆ|¾©g=ƒ?‘HdÚA2‘Åÿ-ceð’ÌqG"§ºìÓ ìnnüˆ:@õòº8¦ñ†“Ž®'#É–ŒÂýSúÍ4²æXÒ£R쉚¨êÌM@–n‰]Æ´÷@²­' {^¦KÔP%r¥˜RœB]ö9Xñ8¦'ʉÁ/cš íMâÀUäÑôŸ>Ræu +ÿ7å…ùª§B¨û¡2‡ðnr&.è4&̨#•ˆ&L ù8à=èb%¾rå +rEø[rú=ÈÏiž49ÍΛ Á|ºÞ‡‚EœõA×+ãxíWçÛ~öuۇضdzíìöžOë’ÌkÉÓO©ð)øàÜÁ¯-¡^á¾ßÅXKØŒäÃÎ÷÷¯Ú±ݲíØ&ïšÚ°Yª* ĸ¸ €±÷ÎàPa5È¡X/Æ d†2B‡Ý=ôÅvýÖy!+QÚôê uz½Ž'yëºÈ.¿ŸÍæõ¾Ý&HBj̤ÓìÃGÙÜZäÌÜfz1X ÿ\~Á3p>¤Ú!#a$‘6{C7)$!_9ðt&Ʀ‡¿UæÅû Nƒ9M0ûŸ…Ð(¾FEP_µ³7w.ötQˆ¤¤’³§‰lÆB¤ªº\«b%xþÕYä¿I‡ƒpøø##T™Dž™•If²—\ø Î¢0íô·˜öêö +Æ8ÍgÀÕ¤T<, +þ²y¿c¯mŸ`œc²73Éð"ø-eªoiq¸IA‹#ŸÈÃóóòÉ»r ,aˆß0*÷­…I‰¦®“Òo,Çp¦gcªqjñhˆ÷6¨ñ„‚'à!Ïé°œ³÷p]’Ì¥hRlß»XLZ*A/@6vÇüãÒxwï€pl@Ó¦PC%Yñ)è–Šó¾ïKîõcV·³®muë´v¬Ic«®D"Tש¾ªÚ9 âfBžJ  “÷`ÊøŠMIïìˆäæ¤Kh1áq?['ŽcMmíu.”1˜Á¨º^5”æšKÐ%¥©{0záÆ +:n/’FÆ^}úwßšÙfH“§9œ‹HÕm-¾–vŸðþ¤º5E© +­†Rcs}+CêˆfJKCšoƒ¬[¡`¨âyÌžF•{É79ð)2žáMúýŽCy©ÂÌ‚Ò+“¹•Éå&!O$?¼|ïÂð„PÓ*)‡$¹{rÓÑÉÀY/é3wcM“<ÇYÏí /·Þæ¶8Ð^§,?1%9U†®ÈQei¸Q´ÿêñPM†Ð(f5NP0Ïäj8Zo×[øJƒÚ &¸øQm ÚYzý–&¿¹ÝÕƒúºËKí˜Õdñ8 nAƒ"»^Žª«pËW¬ßªRjª5ÕÕ²j¹NZS ˆâ‹+ «Äj])ÿ>G/Úü…h w(‡¡GZÙÔ¬Â*õDuÅî•@onÕ[Ñã^_76è;ï½ßùh¨=/¹´ß5 ‰úKØ= +I]÷Q„¯Å*„ƒÑCð³O±á6Ü!$lv†:$Ù‚5ÌF\D¢rü^ÎçTrôFfÆ[.aR!Z|n¡ÿOK`YrÃì1:¨_m«‘ tÛ_cWŠ¬¢?â y›Xs“\©Ò×è¥ø.Ró™MÊÁ“©OTÎãpyniÏøÜ%Œ “¿º¬AnŠ9[r7¨€òçrvˆ ˆÈ4.¹¨Œ|™eWÎøÚàìC‘;c,ÐÈ!Ù¾rZ•ÛEPBIPÀÏvª[ +ª-…žÀj·]‡Þ¨¼Ã¿åv3‰‘3X³Ë oÆAžo‰Ø$ÅÞ&ÓH”D6þ뤈z´!…±wa,„æg¡4¨ê•8x¨ÍÚO&ªÖÐx«´ß…)s³ÉƒSY„ÔG”o®ÐC +'à›wþ¼Ðx2ÝõÕmô^ñ•ŸqÒr6¹(+‡L'QôÎw¾d÷Ç›k¦¦æÚákCx³7d¦Š€ç»«Éå¹{p¡¸JÁÅ2H›úSya1\zæQÂJ¸žáý⣿ߤ9[<¦vÒœ'øe>™vp Îqj9XE¹ÅW…+³:_DåÃÂmg\êï¦ÅÇúàâ+h¿îÎ×É%äÒ·‹Ùc.ELÿ¦ZóÍ+v¦ˆ&”™FdYµ![¸)dfet¶“Kà‹«hER×ø70ñäÒäbpšú-qk7 ˜L­Iƒå–d–òqAÙñ<ñû”Àçm®AÚ·kì  ÒàòM|å‹&U¡ÌAs¾ÄížCÓgÇhA×éÆ}­Ü‘úÄ’¿ Çªq¸v¦¼ ü!W1ôyš|¢€&éŠ+û0ðÉųá®Óø™îŽÞqt*7í`ØB[©}îeƒ¹Ø ŒëÁ³ÛÒÍqkŸ-Nk9Zf;†íù}IQÎçü£hæoŒ :Ò¤P·ÊóÑ­¹%;ÊJÜûNzF5¥ñ•gè§`´.€»TŒþaed‘½ˆ^ ú +­6»×ßÛyþ4¥Â¼rDz¢ºVŽ)õ” +n£·œÀ­hÿHs#úÒ£†RÌuÍ5˜$<ÌêÚãµBu¹‰Y¥(ª9¡5È™”µž$a¡(*¢ÏÜ„[ÀðîÇŸ0ê¤õb Z”»F¯ÍÄ{ØñD_":d®g–‘Ë°æikçSæP¤ÌaI™ƒz˼ŸöÁµ1¸Lcgî(s5lj<ñ!Våæõ?ÝSHSÖJ´ +Œ0x~“ÏìÇÁš1z¾Öm•AgÃÉeWw[Ea}~ú§@;‡w“ÎÄbs˜ìXS¹ŽóÊþßáUÂ’²cX¦èü˜à²IøÂõûl0®ô# ]-éÅ!jhàÀ)h¬6ŠŒ´F½¾A)ƒN…ƒvi¹üª˜Ló%V[ÀÖ†ÙÒêÝÞz?æoi4ðF²é7[^%—£Ûú2çá÷àK0ûËê{§c í«8¤PÔ©T©²ö·YÔ–B>;÷OCÙà"‘<÷,ø\QbhØ6ÝülÄÌÔض*ÈÕêBåQ)‡U*ÙCfä`ù²ó½}¦=8Ðí÷â“34jçÔ¤!âk£6ÿkÖñ¼aëôHq¹ôUòÇhvËúk÷.CútWª²êøºŠ +toûá³ÿeà"ñ +ˆé2arõü®ËJQ«ƒnOV>.Šß‚]û ®†§ã²APÓÜ¢£2e¼ët>_tnGJ,îµ£XG<êkÁ‡Î¨Z­æH±ã +W…5u>ñCfÏP Ú{!af™Ó<^­ÄŒƒín³ç.,Mje“Û›µ¶°/ÍÖ"jâú[˜¯•)ñ½ë|J$ØÒ b#ž• îÜ]´©JU@¹ÑZ‡ƒ]DBåÙ¬þtŸ0Y“2Í)ÛÄУ!w2êu :z°¿ìÌÜ¥‹£ öàDôrhŽnÀ%3 û O]m`qH¦ìÀ±­åy¬}ŇKj0™®-‚»Ò=ðzLñÆh:®rÊä„Ž“Ë^ŸåF‹ÃnµaÞ¦¸,]Bê‘zIƒDŠòÝœXtxäd„ëŽö…ãFó0ùk%§&“€µŸw4ïÆá…,*ó*ÿ©~`Mì:|/-û!s˜Øþÿ?ÜÀðŸA¢a=°@>~;{†ðÛï™?vŠ +œ¸vꊉ39VÎX>c‘ô‚¥-¹S䧲 ¿¸ev׬®Ú$ûÛ{›¥„ß%VXuÔÉ™ÿQ†Ö–ùSëçÍZ4iÚ\¹ÕóÖ.ߺªiDt&kmyc{£tCÛ”é3zæLÙ&ÿÿÇåêÉåõyuEm’í5åÒ“–³ö5×L¨“®¥mwä3ö®_åÜŸ®s7NÿÞßÍö}é¤?ºÙËçÿtÿ»oê÷©½ßçMýsxçV®ûÜ?:D¾ÿ0Ɇt¨ +endstream endobj 32 0 obj <> endobj 794 0 obj <>stream +H‰\”ËŽ£0E÷|…—Ý‹ÊU„"uç!e1Mz>€€“AšDÈ"?¾Ü¨[šHÄÇÂE*ÙNW»õ®ï&—þ/Í>LîØõí®—ÛØw§®O¹k»fzÌæÿæ\Iƒ÷÷ëλþxIªÊ¥¿âËë4ÞÝÓ[{9„ç$ý1¶aìú“{ú½Ú?»t†¿áúÉen¹tm8Æ}«‡ïõ9¸t{Ùµñ}7Ý_bÌ׊û\>Ï”i.m¸uƺ?…¤Êâoéªmü-“зÿ½7aØáØü©Ç¤Zlââ,SÏjçÛ¯yçy6ÏãÙ“=XÉ +~%¿‚Kò»"ã»ùš¼3g"3_’ªx›9‘ßÉï`ƈ-¸¾ÀzẎÈ99ä,dÓ_à/ôø‹‘ ÌZµkÔ"t¸ ÝnÂ5 +=žÂ5 +Ξýô觧³‡³§³‡³§³‡³§³‡³§³‡³§³‡³§‡§ƒ‡ƒg^¼Ê^)z¥Ì«È«Ì«È«Ì«È«Ì«È«úØ`æUäUöJÑ+e¯æ=£ì•¢WJ7…›²Wó>Sz*<õ±Ñ+}ì?8{eè•Ñßàoô7øý þFƒ¿Ñßàoô7øý þFƒ¿Ñßàoô7ø—È›g ¬)s2Ö”µ”BF-¥’áS>ºmÀ[ö!8 “ˆ£o÷y4·qŒWÀ|íÌg§¾ëÃçÍ4\£ð$ÿc!À +endstream endobj 781 0 obj <> endobj 793 0 obj <>stream +H‰¬•{TWÇ' y¸B@†˜ÈLTX¥õ­UQËâ¡"V­­¢˜H‚ ‚. ¯À„‡–—E-" @@ˆÀaµ¾P¶>V)ÚÕºk‹´z<¶§7ôâa'h{v·îã=3ç{îܹß{¾óùÝßâÂFX,ÖÄ-›¶†}ðÑÛ2•,I¯™)ѨeñÎ7“"–ÃÛ.M?ÿ4Ÿë‡ n È\˜prÒ´<‹ZC5 ­r×î$ñôè@ñÜ ÅïÌpê¢1 rjÐœ17¦cóA‹Ç4H¼\®Ù©o0è’jxU|´F› ÑÊ’òYbñr•J,qî¬K:…6™™ý9¥X©ËÄIZ™\¡–iãÄšñf:É ˜®`ŒËWŠeñòÙ­XÉøu{vê”r¥L«Tèf!‹¹ž âÆAD,„@1‚LqGæs‘eŒ !"D‰ j6¢G3‚\E‡²šÁ…¸ |¤¥bU²ØÞìv${/û»—3Žó§Êe©Ë×Üpî—¼!þ€@;Î0îùodã§?ízØ-Ò­Y¸Á}ªûqPûv{Î÷¬BÝP• Ï½’¼ú±TìÅÄto…ËÇè}K|ŸáEFѵIé~ýNSˆ Ò‡<(ßž?ùö”À©süÇû“þÿì€Èß¾O ™\É?º'Ü<ÚyÔ=¬÷l¹Bno§¢]Ý jxøþòó¯¯~ôôÚŸ‡þºªwiJÂn–/Þ´I¿(ì½ô¿ôôzð9éØ Ÿþo+Q}÷ˆÞÄìa57š7Â~©æ +A¾þ<°wK7«ý‘õ߫LJ7fà%$Òt"Õb²š*Œ¾åÆ’h9›¢ˆ!‚¿Xñ@òDÐk»wó!~)¦a}L +•žF¬\ÇMÝ—».ÛV%%G…†MÃ!ëþ"àuûF}ÇyBi’¶‰Jx¥etÑ~òÑÕœO¹É©™‰"Éƺ“²½Ãzñ^‘_i¬$læ³æŽ,Á±Â#jˆ‘öÇiwÞ](Ð*·'KEs~wÿñõ†Óv+ù4cMUrU䦵r-IÕïëiÀmŶ‹„¯ÑŸÔ{ž¨ô{G,†V÷üÉÖ__€JÓÊã2âÒc³|ïÆïXy0ÃG8¡ïÐ{^ú +•‚¸ƒà%A`ŽVƒ%-`*•¦Ôpá4èçÁpF܆KA D‰×v°ŽñÛaz,8óà4àF Õ)‰\ €-p*\‚ÃerЋ‰z +Îõ¬JÅRàŽÅR*J™•ýŽ|ÙŽÐ +Êçô¡Ïî\¸×ðØWân±>]Ðâ°º>cVò‹Œ\f#°ú€€<ŒXÃñÚº:M­J Q«k4õ¤ðÎp¬žõÈñÇQ9‹­ã^~ŽÄ{åÆ{Ýéuƒ±gÏé¸F€H´»Öh5âÝ–’Jq¿´T:5$<½Z…8IsE‡ëðT""Ëy#÷æ<ù0s¸ °á·ƒ|ï°§EýŒ³ÞŠ›,F;½ßæB7“ïR‰ ïÒ›‡=& \‹Rš\*Y +¹ºÉ¥i Ö¢³:a¶â‚|”nì¢G¤ Œ?ÒEQÌŸez`ü|!Ó샀r¶Ôg}+`ü©{A¢iÉÄÍœuЫèv½¬ZT–V¨¤yEÆæ|¢\W÷:BMT½ôÃqï°‡øðSã¹ã\º7‡'8~ËqD–zðWxé¡íŒ½ÓN¶1ÅÌŽ–¼N1¼ +N6PåèìjrÒâ!q¡ùT™³-‡Q„„ç¢U;Õ¥¥8ìvÈÿ¿ ˜]qѽ¹ 3Úæ}¾°\ÿ6tÚ 0oê¤ÌÞ§É[ßvTóxýǦ#_³¥ºH—U¡—¨¡pº« +ÙåS}ý/å<TÇ4¨ 1ö³ÛبïÌL\;3ÀµR +…2 lö‚­ì!Dyÿ?£ `yÔdfjÄY@r@£z€éè{0$òaZ#6³òÀåŸDÚù»†ZGÚÁZVfëjÚÓÜ%`øب?á‘#³GöÿÇ&vhŠêÍûT»§©±Ö1l?æTÿæÖLVá¿r«¡I[£„=€ÎTk$ V2%#ÓdiLÚ÷)#Ó£þ<ö:RL“ÅÜ¢äïY$fÕO|èpü=ˆý‰Jr@$x(@\B –Âp¸œë¾`!|$u¾5"°þ&sSIt| +®„ +@4X^½„`5!<7Õ<Ÿ+ç¹ÁDÿ£Zïbw€Ò÷7t×J¿ùSÒ‚W¢£" + õ…„E†Ô´·“íRx·¸N?÷Ùá…D?ŽŠ%c7ndÞâfËÙè¨ÞAZ«ë9†œÌÿÁx~>…1ªœg}c´=ŠñÂ¥lÈ[µ!îwB_¤"UÒŠÊZZKè4­Em;Z +Å ÖÚŠ›Õ¶âNºƒéìì$°ùL¡±´Ã„Ýiûú˜#ù4í"\„kù±Ÿ˜˜X&þŸÁ­jÄ7(Ô>ùføÒ“3‰ÝäÆï·ÙNÑ>ã°eoIÝà\)…!ðé7áâ'ÀÒb;÷7ÍŸsJž_¶iiddÿP5^ù1¢HçgPiºt¼¤÷Lá'RîA¶è +xð—yà/š ì+8¯)mèŒä› û>y¨J½÷+ ¹¦aÂ+›QÎK<ê艷AbïÏžÆ.ƒÆ™ðC±+¹çÛàÂÁb¾Ë¬Ígc$ÒÃÇfŽÔÄe2J&Å.S÷¿ð—ü5k k¤u›™Mq’¾ñ"bgÌ .)·×M+÷¼VuâÞ\ù´§Ýf—Œ Á¨»¯¤Ë×€C³«2x…/¤B [5žÅÁÙõx!x»‘k»¦îžÙ·Š€ûÄø"ÒXk4Hš[Œ-4þ @I&“’’ÔrŸ¾•jª´)Ä ÆŸÚžÐ±±%F<Îßu¼ã¨ý¨; V³+Ú÷Û:v3bW`¯ŒÊ$322Y`ïA=ÒFµTH´zŽó§(6"d³fb1«BÍ`\õ÷`ÈÀŽ³>°EäXk툌ó̓Ös·; +±žºV«¥ƒ»a2©,R&Ëb2aôˆ[ß\S"Ñ×ê©Î÷«’³k¬{ç@ñ˜v€³ÜŠ•ÊHø$<Fò±³Ï³½²˜%®VC;ƒŽÝJ¥’))©ÌÖÀ±{ô»É¶jKŠ<áo4gš•õs‹Ç¶×¶—£½>L£½¾óÞ2[èIìì&¹Y¢Íj( ë¥Ý´»×M¹CÂM&ĉÖÔ!éüôl«$ô^ê°GÂZQ}ØàÅíŒËÚ/íçë¸e:¢ ”\¡ å\Åzµe YäfƒøÛHà×\(@²æeŽ‘_4ìå’ µ!rnŸB® 9KÓéí¨±éç÷»Ê¹+mÈ ã¸æeåD‹Ógàùdvyº4_SÍ-3é)ÝëvS½!á 6í^æ ò˜X¨„óÆçÔ²ú 7‚·°úqTMl² +ØT.Uè(ˆá µo•(n]òkÊ[Y˜Ûânì5sHê.tŸ9#À¼¥D¨Ô}§‡ ;ê¾–èE—°P:E‹Õ¿ÚÆ=±ÁˆÃigvµ3&3Ž)ÁO¯U¿‚F§ÃA:µú³“ÖI‹˜´R--…‚ðô#pž"µr{ +¯@þ€:«l=&[]£É,nµ5‡¥×ßOxÐ£Ø |5¸F§)-ÑòäŠ"¥4-½gÂëö4í£ÜX!vh&ò‹Ø—NM{¼ªÐ•“À~Û^ô¥Š´æ-ªxm|¥8ç´ÃP\@øe(VR¶“*%wR;Øx‹n ÉóŒ–HžÚq÷3dÄíùü´G} ŒcûS6«s·ñqÜuŒv9yþëÁß¼ 篋ŽHXÝ»¾¬:ÈŠÎqÞ¸ÇûçÂb€“¢Ó³ oÉËh‹•ÊåeÙDŽ&kGZšõ’¾x+Àç>²[êñÝîŠfD½-M#—¾¸ô$XæŸwŸõ|TPh!ê×#ÂK\ºYÎÛ÷€®ç:žÄÊØ%ì[¢¶¹-IªÎÕ—dË‘-Û“×-‘`pþéçÀ3Înº¾ÇÊ@ÐWÕ‹§ó3ÈO¢AM—kÄ5Vª½KÂúÿÅy•G5uåa¾<<µÑæ‘3&±ïUíTÇ­ÖÚb[ëFml+‹lQ ’BHØBH`ð‚ !ˆI@’ý÷¥è{ÑÔ¿‹7¹“å%³éßd6yÉŒz”L€¶íë?µÓ{8lAëJ(ÃAŽØÇ–®Coøq81NQ¨áX…à2ë ­²aÁ¸4•ƒl—`À3 üæy°?c@-䪷mÎ^£)䥶 ÖŠ­¡×èd">”=§ÎEÐ?qÅR‰Xl“R”ÝFQ»˜Ñ››îN=>øË9ß›lû¼=€ è,Õ²œT\œ“–›-ÈÍ/ÑåF!ÒßÞÔÖH¸öXNœãcg"è.e³S”Ô&K¤b±]Bìú1kñ7ÆZPu4¯Dy«Ä-f¾õèÃ9ôAœÔ+äÅ+©ì¡‚8I¡"ƒÀÎ/_Å”•géãAêýçÂ÷3s1>ì$÷ÿL&ìœ7†XÿcZü×´fWË]ô"—oãèñzÆ)ξÀ‡ù˜}ÀsgÀ9Pðól0™0ÓÜ_ûáÈ?> âöˆkøÁ> Ý£—õ¹ªòéÿp¤gî{Ùö^À~¸ —>Ÿ€@(šÑ¸¯È)°Ùô•5` ".ëëLŸŸ<çÜôèÄüœ,»¶h B^y&)û¡¼¸\_Ž;kÚö +n÷Í…Èò÷×FTw + 6õ0äCôKû}™½ËãG¿òÜP/Ü®ñô®FÛ·}cnÅ•“ë¦pãF8E£Î&®C¾HˆYó:v׫`Ž/cÕ˜KË«ˆ['/¤}ºa=œ(>×ÁËg;uvi’šp6œ6&›8•ÏÐrGƒÜÎT&oe°—‡÷ÍVXizIÎC4¡Ø×Ç:÷u6[ei•¸•…í.“ÌnÐdè³ÒÄk“®¢ïêSÖ š\…J*ˆQÖí#˜1¹ åà+…H+ºGÐЉçUf©DÙ[T¼RI‰TÊÇ–¡& (û»¼þ°Ç·&©<˜ë ‹Ç«ý ÑðÏV~òfÖž38èz&uð4°ø-0½«ÙTïÀ1ñÉ£ÈfRB¦â6&á©g$<ÛmÊ ƒ)Žn€!Ìä?„ ÐÀ?¹¦†š¦zS7Õ&kEdr²H—<éµT´Dvh·k2ùÙ…iJ3]!‹ÈˆäÁA;RX½ÕXί.×3V³[‡8Ðx­Œ×Å{·ºI³ÖiÈå {³–É]ÑZÓâÏïC¨s w;àd0™q@à3nžD%QJjêÖrm™o6l:¼Í7NOÆÅÅëâ¼qd=Yk[È» /!ûYWAÖŽ3™¦Á_}¬ºcæ“ö£þXÿ)0¿þð{Žgóa<™”$Ò%‚ClÚ*•Œ¯&UTâ_ÂWsb²b³cyX DAG¾-ߦ¦xé,vÎX3½¨ò±Ó³ l -Á@;(ã‚ )ßnÔ™&Çû,8~Œ`ÿìzowäA¹^j%-¤EYÁð0 .¿ƒKµ&¯0ŸчYçNw-5xu*Fý¾»=o»²Bó”XuV ³1 èW¥9º¼JM%Ï;Tž¼Ë§8F°. )¸¬e¸ëæb# h'RPC+ø“Þ\‚·>xáè{ì$kI“z‡Þ¿7;}µ"RZÄ#Y¹é•Æ«Y²Í6Ï.Þ}V£Ä÷I‹ñ+àû‘ ¶äW ó¯%ÿj@–Ô‰^õCâÀ `¿cõÃØ¥µß™gv½-\Ñð½ôû"Qý*µ¼ßìRÂ;¬&ŸŸ;¿wâd9á’†ïÛÌX—ö,é]ºd ¤Oé­íiêïœ*Ù9­köl©ïÞìßURýÌNj.L Ëfõb_Ú2cÕĦOœ,9gÆÌþmÒ6EÙËw°MÿmÁÒÞZ_S]ÏQ”•]–#œºj߆%ÛÖÍ”ß7Ç体8„‹~ûþPÅLߣÅ0“ +–ší Їïý—z_8ËAx“ ê¸\¢*¹ßìÇô‹p^Vï”Ïÿé:ÿwßÔïS{پϛúçðö}\÷¹ïOãáýþPäÇrQ€ËßÊñ +endstream endobj 35 0 obj <> endobj 796 0 obj <>stream +H‰\ÑKkÃ0 à»…Ží¡8>!F×A{°¬? µ•Î°8Æqù÷“ìÒÁ ‰?[VPdylžkÈ?ªôÆjÓxó +á‚WcE^€6*ÜWñ­†Î IÉí<Û¢ª@~Rp +~†Å“/¸òÝkôÆ^aq>¶Kí͹ÐÈ ®AcOzíÜ[7 Ș¶j4ÅM˜W”ówâkvE\ç©5jœ\§ÐwöŠ¢ÊhÔP½Ð¨Zý/N?Ó.½ú +>œe4‘OÉ'r™öKÞ/óäœ]$ì2¹d¯“×ìMò†½MÞ²wÉ;ö>yÏ>$bÁ÷ʸtê0<ú¢nÞSKâ5Ä^pŒÅÇM¹Ñeñ#~ˆˆÐ +endstream endobj 795 0 obj <>stream +H‰4TiPSW~!„D–¨<^…I’D-OVú‡oM{XIŽÕÍ¡Š·¦·̪À kýfqý œÅÀ•p#ŽUÆȘp­J-S¨˜ÉRejŠ2U¢–Å.gqR6{Š “©d©ilöÿ†¹Š‘0êTI¬L!IMd”ǘ]lZ­M‘1âÏIrì +e*#gªNĨä±rIª\¦ZŽa6°¹6æÄJŸ[‚)±9›9—m>¶ùžëÅͶµ·=ÈÙÈç¸0/‡pÄšêê”õIŠ¥BQ«l¤…šfë–fÎE tX¸!–`î#'ðgàMC0pÂÁ  E>È­¦àK´Ÿ@˜l¨ðÅ›«[‘;r{!Œæ½ÇÜ3±÷œLLõ…kÝRCl/àEäÝA¿§ÜÔ~Žjâû)›|O–QâZ™Ë3µ>n.'‹ŒYjÕñ÷œÉ9’G‰sxJ~Ÿ¡ÏØÛÓ£ëvôæîL³Ýw†_-xøF>¸þ®÷À^ôl{}ø«“ +j÷†êt^ǵku½ä­A˜ÆS– Oü<¨Ìã'Ïd𶢠žñÑMÃkòj‡^×δë[tuy,£¯ÔWäWæW*«½²brbH!Ê솩nˆt†{™Ë`Q\S[|™|ѽ‘ñG6ˆ’ÉËJtvz¶øL­Ü Á:ø\F ùÒF>>ÝÙÔÛuW4¶íúê£ÑšSiThp©–×yëRm7y§Sº^,YŸA s«ÓïZ—kê5ÎÐ8ŽGZ㇈\i¢NFB4(è)xMáeæ#JäÂîbÝZäé†G§ó U µ$øÙUŸ×ëKi„ñC³“u±T¹î¢¹£¢¢À­6·þŠìïñ‹Ìùz3—™õæ|³N€G¢°ABŸ”¢#¥IFc<ý>êšíXíýðn–Œ˜ØŽ°Vˆ¶àSÖO¬ ‰ÂÆÂjsžñ5ŸÊUHuq¤$Îh”ÐgÏòL{Ò•¢ý1}bÕ-+@/HdxŒ„@‘à= +ó@0ñ9D†Ÿ §uÆo!ŒÕåfâ#1zN<ë÷ÒѾºÄ@28jÜÛLåEeô¥ó7nBèL{ §«…kͲ&kòó|vî/Øçè™Í37È•¢/t‰:UoWò˜wÍTb„$p¯çŸÎÑÈÑ´û¢Í¬‚ÌÙ®Ýåú&r6³NiP X!3.ÍÎ ÃQã51Ž¿Â'¬± %¦CëýoRøÓ›c·ÇE/7ö-Cž!¾!­~>Dá¯Äq;£‰Â—A[bgùì‚ž^Š?‡Á¦xd´{"¤»W±¿Fõ̶jt¢\^£\(~×[ȧôó0l¯£ým{‹ƒ5Ïfˆÿç]~ý +endstream endobj 25 0 obj <> endobj 788 0 obj <>stream +H‰\“]KÃ0†ïû+r©Ò­MÎQ(ƒ¹)ìÂœþ€®ÍfÁ¥%ë.öïÍÛW,´}JÞÓ< 'ùj³Þ„n4ùkì›­; mô§þovþÐ…l^˜¶kÆŸ¯éÙë!ËSñörýqö}VU&Kƒ§1^ÌÕ²íwþ:Ë_bëcæêcµ½6ùö< _þèÃhff±0­ß§=ÕÃs}ô&ŸÊn6mïÆËMªùK¼_oŠé{N™¦oýi¨ëpðY5K×ÂTéZd>´ÿÆ­cÙnß|Ö1« +„g³ôJ¼"¯Àäð#9ý°*™/‘/çä9¸ à’\‚-Ù‚ÙïÈw‰-óy˼EÞ2o‘·B0kíT{O¾¯Ék0ý-üœ=<çu˜×q^‡y…ë¬K˜ä…yA^˜—)OO§ÐSà)JVð-ùL¿pÏ{.ôø ýþÂýì¿r-Šµ(ÝnJ7…›ÒMá¦tS¸)ÝnJ7…›ÒGá£KòrjžŸ.A¥n7¿=ÚœcLí9‰©/Ñ‘]ð¿§f蓪pgß ̹֚ +endstream endobj 787 0 obj <>stream +H‰TU PWíf¦ß‘‘Ð4ê ÝãEPpQW! "à7cÉ F ‹I°³³F‚lˆ¢ %? Ê ”BÝŒºŽ #ËN¤e‡µüm-Öm|Zµ²µkj¦êU÷;÷Ýsνï6MÉ(š¦…˜uÑÉkWûÄjs µÙéñÚ´ó£òt™Z]¾6s 2]ò¤¥)r‚³^•¾ +a¦QÔî+.°}"Ô¾{bê„ ·1PETÞƒ>ûƒ¬õÜ oõ‚ÐÐõ²Ì¼­Zu’!¿@ûa¾:N—‘§ß‘§O/Ðfú©ÕËrsÕš1|¾Z£Í×ê ÉÛÿ‘Pgç«ÓÕúôLí‡éúíê¼mêÕÙº¼Ã­zÙJuº.Ó?O¯Î&±ùmÍÏÎÌN×gkóý(Š&?Ê…¢&*(EÍ’Qó(Ê—¢ühjE:PË©5r*‰¡ÖÓ”1€’S +Ê‹ +¦Þ£©´'ý%Ýé0Ñáw÷e²PYš,Wv@Ö+w‡ÉGfs1hjDÿRLSÔ(®+†Øq­£Ññ®““Ö©Çés°ó篜­ïиF9þ7¾¤{í²^óù(ã“¢¬]üFÅÃ#ûnÝS ú+ÞÚž@Ù_ú#%ÖUŽî*¢wC‡lwgFP:º‹‰CÊ’2³4h¦ÏˆP,Êà³2’j!æÁòrÐà$œTŽ3q¯ÅH0‚Wìƒ@µÏ [Þx&¦0U3Á›W–4JÍ= í:{û¦ÔÌÏëfb[FSìíÊ9¡å ÷8*KŒV©ËBŸa»(“VY9|ío?þ糧žN~p«í*Pªë;%2;)«xµþ ï5ÅÅGl{_³žO\Ï„¯\¶OVIêq)pÚ\QGÌngÅ%â9ðhcE¶¯bá!׆ÄÖ”iŽaÂan7È`2xGÙ¦oØhÈÒñU¦ã΀Ɋoÿ¢Yc¿™Ý¾£DЉìû¤¸œ:< B!}?ÀoÀ«Œ3•gGðä•3ð4<åzL´~ùX`JB|†c°3Ï>IȹÐ-ê÷qK çø|ã¾¾£D}"]¸TP)³H-ní°ß¾Èξ`‡¥9PÅ}^:G퉕% "ICE)°/þqlÅb“`G ®ŒÀ^ž8-‡´T,ŽmÂI°E`‡!à2¸‚ç—‚²Çh‘nZè›"ÔÙeà?êÁ‘° â>Ýw‘6óüQ`¤¶A )iZa½€“Òh…+Xénb©‡ô®_€¨·âz"ÿ´õ5ƒ”)¤JƒÿLj0øë}ÜÖP8º¹è¿»£›‘rïÛo õ¾€dü„yŠðÇRäBã°?cªàC&ÁˇèQòe=ä¹ ÁÂ7rF$˨œ1½‘“ƒñ\„g¾¾ÁT‘EºÁG"œ¥÷a*IdzI}$ÔðºBåõ0—Kà FHYJ„tY Á2†Î·sëËϽ0Òq q€W!1Š{†[R#|“·üV˜”GHà |aq#Åc勽ï Vjû±Â»Z؇e¦¬êu_—Ny‰ +¿úøpåƒ +PN®¼–Õ±¦Ú‘Ü‹‘¿n°ª€‰6c9KÆ’Œ ö-1˜÷5¦AÄ´_:ä„nƒegï²÷¥d铪ÖÜÂS=q\ž'°wñ×0Nx³*29-†ganÏÃ~!aßK‹ 츴C(ÏÞ…:<„'À&Õ½ó­½<{ßÖ”B‘Xíj¥! ­ã£®ÄZ_'EÀÊ7®")u™9±þYf·fq© ¢lì÷à&9s_(Ú¯|£KÛlÜ_Ìc&›aÛWnOYªò¹ðü‡Îæ‹M¼ ±…+ö¶Oz64îýÃ>¡Gñy垪rÏƆF:WŒOq0vOIÆJþ„wplûÚu×jŠÏüØ^×Ðt?s¤·úÄ)Ge™%±[ +±@H‘[— 6‰ì%r1¸׿²ÅîXY±Àðx¶47pýˆ½d6)2jÛ3º=Áµ&È °ÏNNÕm*ªàÓ`¤Œ!·þq!ÈÌôI46™ÄKNÜu=(°݉ý± +¯î + Áªs ø™F‰%‘Q^¿õ_!õò±Î¿4¼—¿Mî[6Ù¹‰„¸°ÕOŸ‰•¥~EàÎÃIÃãO«Ð…âÔæ žØÇ€—`9Ž¸ˆ`»Û[[kbZi\¿bÌ|Øj† 3Ý"Â:Rw¸ÏVœÜ”Ø{(:×)Ä8î´¥0“Ìö_ñõ: S®¾åÁa³Œà:À+ñnòAÉ1²Ðý6Y¿‡Mʱ›ýo –úºïø³–x´8+}±°:"ÎJ>{«Íàl‘æu'Zˆ¦å6â ûvJzn\ƒaQ@ðÇ@ŽkØÇÐÍ…!öÁÊ*Źò­‰žxj&™Ž³£÷ã42š~hj«L1hÛÞL‘a¿E{èR¥Œ°ª8ã)O z»!h¬%ý˜4)ò›¬‹pDÈzí›ÿÐYu!QDQX±¹³Xl⸠+ŽÌºQ¬ ­«bji–)µ’e(iùÓCf‘­¿‘?)¹Ú&(VZ­–ù°J…´Ëâšbe2å*açÊ݇îŒJôÌù3|ó3çûΙ‰ÛGÎ n$bÖÙü›YéE¹Fa½‡Ò¼Á¶²Ÿ‹¾v1ÀN!¶Ä駶lócþŽ#»H'‰¸–CoA©D$Õæá€tùqƒN™Mtt÷n²!öŸã:¹&3« »DpTv§ñ'3.6ªMˆ›tîc•›¯•Óçþ›¿F† öY‚ÑNãd—gï ÎxõRéÐ>á ë—uZ´·º|@BÈ EªèÊP€¢såë\‡–(ˆ¢B©V’ðRØ3Žc7r >™”}Êû3 ’Q¼‰PG²úKˆw§«D¨5£3Š_ó ~ûA QYÀîDv^^TÖ’‹æG²ia…c)bƒd?®—Öóhö}ßËžöƦ6»7År½-7ªÍ•üñ gO•HHǺ¥#åÊ|‹EØ+&‹ò cðv•³©<ˆž×%di‰×Hù°QÍÍ]×&¦]¿Wñn˜ª7ÓLxH]ù0̪¡+ÕJ‡–Áj¸ë üdoíqt–TÝ0ŽC\²¤±MEÕëF(åÑùégÖóa”mª«5Uð¹5¯Ô°´àÒžæ%[öJÙf£p…ÆP`±‹9‰#/ŒbÜ>ìÑæ`мyûtÐ*²ò£Ô•Í«8©Ì³ûÓå꿈`¶1áHëN¢{H‹“h¬„°æeXXöl_Sxï¿Œæp*cFßÝ© ÝÅD¡Xz0¡Hú éå8šÆtùEd×ZàC|ª*›)®­¼šÏ—VÝ2W« l“Åb²ñ?¬®ÕŽG)ãn™]³ÎL‚Æ=¡kÞ«ç«  +‘›îŒ¾“:ê±ÀŒ‘ ú ,k9’iOZ§[ÝCm¬Ë[ÜŠóüp½êiæ +endstream endobj 21 0 obj <> endobj 784 0 obj <>stream +H‰\”ÝjÛ@…ïõ{™\ÙÚÙ™„Á±ðE¨Û¥µ+¨%!+~ûîÑ )T`ûÚ=þfÄl¾;ì}7»üû44Ç8»s×·S¼ ïSÝ)^º>[®íšùãnùn®õ˜åióñ~›ãõП‡¬ª\þ#=¼ÍÓÝ=lÛá³üÛÔÆ©ë/îá×îøèòãû8þ‰×ØÏnå6×Æs +úR_ëktù²íéЦçÝ|J{þ­øy£+–û5eš¡·±nâT÷—˜U«tm\õ–®Mûö¿ç¶â¶Ó¹ù]OYU`ñj•~+YÁÏägpI.Á;ò¼'ïÁ¯äWð9 Tžùù~M^ƒ röd²€9€éæáæl`zzxzzzxú-y ¦‡ÐAà t8BƒÐAà t8BƒÐAà ì• WÂ^ z%ì• Wý èO O€O O€O O€O O€O O€O O€²FEÊLE¦2S‘©ÌTd*3™ÊLE¦2S—LÖ¨¨QY£¢FeŸ}Öò ˜µ+jWÖ®¨]Y»¢vå{Q¼c }0úüþ£¿Áßèoð7úüþ£¿Áßèoð7úüþÿÿ[¬ÖXSd¬)=µ”BF-¥’ý2h…‘K'ƒûœçæ}šÒ(/ÇÇ2ØޮŸ'Ì8Œ.íÂ'û+À‚ìL +endstream endobj 783 0 obj <>stream +H‰TU Pwß@² 1d]ƒì.Šg1“˜r­‡JQ‘Qäë¤  >NÑVG©žö°Pd¬µø*-ê¨ ¢rZ=ÊÙÎÔiEééYã[|tîþÁ™^;™Ì6ûÞÿý>Þ{‘QrJ&“ñ ©©óçèâ,¶K‘5Ç´ÈRlÑϱÛÌsífwD°(“&È1‹^v¾LWQÔ†n?X9¶û·Nš¬vmšk/\ã°æ­(_Ï ߘ5Ë(F›íÙ1u³È’ïã rìŽB»ÃTd1D1ÚfSÜñN1Åâ´8Jȯ¿b­NÑ$9LfK¾É±J´çŠ‰Ö{ÑšB‹+š +Ì3ìÑJrÅÙN«ÙjrX-NEÉȇb<)?%%RÔd/JïA½AQTPÑZÊJQvŠ*¥¨XÂœò <©Ï¨{2Y¼Ì&û@ö‰¬Mö_×=Öy¼ð|ÓsÜ_>WÞ«ˆPä(úéq´î¢G™P&‰9Á|˼ðò÷Jòªôêðæ½?ö>åýoŸ‰>™>ÛÆù³;æëëkòÝíä·Ä¯ÜïŒßS¥\iQ6)‡Ç/püwªEªU깸¿Ã¿ÍP­WÏQ¬T‚WÈCAƒx G¿Wï>|@>»@ÅÖ³µ°Lê厵ìÿâØÁ³c]áªÕüêâ²&…óóÊ–}Z˜<ɱõùÎüµæÀ„çÚÏìkí:%<îã¾½Üv¡_{?õ:*y¶V|7Ž« m±Ðœ«`ëÃÒÒbõ³£âo]?xú(Ï.mKS€žÖƒFÁÎ>}õ³Û÷´¨¢ 6,]k㕘/Á4‚Q} 4ìrv?dŒdq¾jÐøe9[–·büø[ó×.­ãñO%/JeçAã )$2&Ô£¨EñêB#ï¢ÃAg"µy¸û ãÿŸ4ÉÉ’ßGÝaä0R‹‘6äÂQGò~ã)Ѓ¨ÑúP0òÊj0ʺHF97 æ÷€ €QŠP>²3Ðêyžrè­àÃü.‘°1‚ŒŒ§î,)+•UÁžUÈi Ï +”ÓÊ*†¤ÃC²½Fñ„™’/ õ{º?ÍÆùü; &¬MM\X~æór˜Ã툂¼Zˆ‡÷`{ÆCŒÂ¼õ˜€¼ò£ý%RÕÌjH€ö& °ÇF2‚öfdErž>p‚G«HÑjK[ÝUy˜NªJÃzgKÓ‰SÇ¿¹£¼}èÊZPÆôãdÔÍÆ×øBà™¯·íìùG`{sÁâ9ëW%¦ÉéŠÉÓ3ÞDµVŠ£•CkJ jHÝSO³ÿPÉ¥8ÏFBUÐÉ €‹“0¯£¼@G€Ì`o˜åÌ̪!ȃI¬ã‰ž¯,fŸÕA&÷ö!œH:ï½C0qðAέٟòÄ¿á» {;µ D\$ÓÅE¤¢q0án)¿…aŸÍ.ω ӲäÁoq×éè8°rA¼}¥Éd?rgŸUâ îÆž®ÞÞ=é±qei eúø1 ´¼Â ú1½†Ã,'Õ<\þŸ@X·R`D; ÝraØ<#ÎD¶Cê£MB•žRųÃKË>ÿŠ„¬‡nî›]WnõÕ.~{¯+¶¤¤<6ò`!ûˆL/»¿+À—r.jhv9Xä¿>)·WƒFÚ8¤> +šMD˜×@U<{“}Ò®™émhïl?`ÍÈÙ°ÂnãÙ«–劬Œ2sœÖ ªz¦³®¹õÏ>hkWœíª?Û¥ïywQDMü[èË1ìPã/c{Ö0ÊÒÛ:²¿ï«¥¯<«å0>:¤ÐGÓiLÉRà|ú{Tq5ôM¼£ ¯¨vÁª'äRŸµZÈ8Ng¥ó°™&mqaä2®DÔºÇOêo8vùž‚fžA7ÑÌ}I÷qÄÆåFÙô4y7Iëép†‡g:æ ©´òJ…Kjq©[ÉíóÈí<1ç!ûTÚ,ås?¯f£­ ˜ù-h"ÅCH>Á `Ká’…ù'ÀY{nßæÙ§½û³¦Êáj—´Õ%»D.M${éR”ÒÚE¶÷_!7‚0SÀõcè®ÒàñI8ñúÏ¥‰Ó„cÆø@ùFµL8{ž'¿dIzðÁ½äÅFrn$/w¹×t‘µç·±¤bÏocF§ +\3~$—ú4 ˆ>ÔÅvåP#må`ê‚A ÃÄT±º•Xó}çš.~!ÔÐlY¼Kâ°"øцíx'-×^þ?¾«5ª©+ Ã=¬“E¹&e½©J©Õ¶¦Ž¬¶:-ºDÄUŠŠXyÎJˆX_%@ð…u£ByTQPPE‚¤>—ÐÎÔ™N¥eêØ—9éZ³Ï ¾~Ø,îÉ9ûœoﳿoïƒ3TÞì…æK‡–ëåûíÂê\Áj›=„¥ fÓ.ðŒ¦>´‚Ά + šŠ&–£M,é¡k +ŠdðQ\À¬e%ð‚?:¬gÇê upVgxãnë‰3³×¤<ŽÆUŸë8,º°m]Eûl+þÎlüÐÈÛi¶:O2sªt¦®6ö˾L}ìKÝ=£ÿÕ"¨¯žî–/°Ü¬üdþ¼Øõ!ìöX ¦ÿI`¹ô_u'ù¦6~áû±èƒõqúªqÖq\*_jÕï¢còó“l¦?‚aI²}^ŸsÇ“2[ßø«»•ï)®»ö3Ö°®°œþ’¨\[†Ùª•ñ1 ž(<,ƒTuO½¯Í¢p ?u¤‰: õ]y– ¬Ø|ø”¶¡øä7¢pÏa ЃxÀ˜·X«FO÷G=}éëå0êc$öÏñGRiƒV'~<'­±C,åe ~ˆi&;uCˆÅÂà|>ø«åâesÿàp“âäß'q‰s'OCA‹ªìʳ°H”v¢÷;yÿôåé¾Å1¯jÈ…@©Ü¤È—ö+óÑ +ü~‹æ` a×Âa}ë,粉¯TΩàØÐÚ}ƒ™J50tK…X»…@ÃLD2M,dšà`†<˜í¸Z6v4·sMrÓv\¾&Q»¤1¼ˆ/>V»Gìâ_ý,eîX­j—¹wV7tÿÞëU‰í(IŽ ²§Þ“<Ô…|CYeCSIJÌ:sFÌñ=#'œy39&ÆWûÁÑ™¿\¯·µ}%"‹Œ»6í2¤»c7`®É¶ŸÓÂ1¾ïÓNê7~újê)nFnaa_«þ(uíÚÌ£'Ï–n; ï²|isWÙeôÃt“W*êk¨Õ™(-ejð8Ð~¹ý@õ YAAYíà!R‘â j~óE+Q]glÕ×ò=DBdø÷” 3®JÐ[ÀÈâaÆÆÍý‘¢w‹äBŸ„…=T ‚a M¦Ÿv¢^€ï×÷a¬ˆ•cª16jI–Ðó‹öΖý¡áâsðŽ<7g^ûåÇðƒdx¨ª ’N¤F iLˆ+ ×!,?”E¡™F¶ø×ZWz®ÇðÁìï`Tï³óÔ5<Ì\Ãè4˜Hµ¨.Ú}(Ï‘ iï‚—w‹Ø¢/Ü–¥[‘~媾‘ÿέ”?WtÑqqÔÌ|ÖOc6÷þøHqDå] ˆRpwï¬3¤Æv ¾  7§@ü7oMIÍKÑMY¶a¢>pþ[]¼ÊNÿãOàÓÔ~šÌJ«›Þ0Ó¡º¤Zµp4È·%G–¬Ñщitõ¢Ž¹0üTcʼnJ½ÕŸ,3­…é{ +6ë…ÔÍÛl%ZVœOL¾Ž™võŒ¥}¼Ð@«h=jóÍ—Å+é+†ôÅK—n¹~ƒÐCX¨,°¾*›? ’öŠª3'KŒa¢“GÆóý+ÎL[ù—¨dÑìªÑ°ÖôŒð:â+ç™Óµø³`¸Îúõ–ÑÃÿ‘ô¿§‹ö«ƒw&­Ü¶=׺]|Ï9x0§HžG›ÔK7©È?ok—€&Ú*Ï»dV„wøækÀÓdÞ$tÜÇî2Ž£ø­§QœEúÆôY6BT,/ˆ +Ž2?Yœ™›^®¿Q£…fÙÛr¥²úT}aJ´èÉÆüscIÇÿgÕE∄£h!ŽÌ¨šÅº¥«L+ã°“z[û³ûc…{/ˆ£pZŽdDêòÜK¸w•Y³÷ŽªWQ‰w%æ: jšïæ‹0¥õWäfPÔ¯ôÝl=6.Ö3±¾ç~g[É2LWí¦e¡î¸Ãñ:éd#Lï‡ÇPyú~ÛÎ¥j\f´’UUµÆ–!fë…¹ÃÖ#62œ}e/ŸÝþÈ“ío0¼Où”¥¸¹›|˜“=!þÜÆ5¥aCÜt³¥¶´± +ûõÁúáÍo\8.Çï.¹ÙZ~ÖV˜“cc_Þ¶­yÛt!±ëÃYèoÜd âåàyÙÁ“ŽÄÐ{¹þ ÿ´ƒ¿:÷iüSÄýomÀõl85µ +oƯ’‹*4—UhëªÖž.J +Á³Œô·Ñ—é¸ÐySæÔGÞM²ÕÇþÌž§]•h\™RsF,ÁWëÂæ1º{!Ù…¤»HT¤3½L„ãTq0†}U™Ÿ_-þÂçlÝ’³E÷ÉÖâ=œB9€·1Å]â&…˜žäIÜaÝr‡’ ä„ȘM¥­¢ÄãÍ°d{>ò‡Kç]¨bê/SB±[Z „4xKm!ïKj› Ð;k9˜J@'ÕÊu L¬s7‚A±w{jp²CòÂÚö­Ó‹ƒw¸³•Þd-ħèD ³î‘é:m¯´L ÒHõŸaº|Ö«Ô†ï«j|H7øwSöE}¡E6¶Bïâ½ ´‰ú«ÛŒª©€À³zÐH9lóùNwÜÆs OO MKY›¾.n‡8ŸØ_~§_ LJÄN /œV™mƒÑ6bƒq6{ìu:öñý#@|)o¤ +¶’’ÕÿY]ÃR +endstream endobj 19 0 obj [/Separation/PANTONE#20541#20C/DeviceCMYK<>] endobj 768 0 obj <>stream +H‰ÌW[oÛ:~÷¯Ð£¼ˆ‰Ôµ- +¤NRlqÚfcô¡Y,‰±µµ%INš¿s¡dEr’´ûbÏPäpîóñ¯‰k¹Vè +J„UéÉ7«˜|XNNç ×Jk˳¬:-&§]Õ“Ó¥÷—w×qE`-S+r …à¿"Ç M'‰|ø¾Øè{½±Bkºü/݆~ HEÚäŵҵõ7k«lÖº²®ª2Õu­k<ƒ—zæR¼Ð&IËÉ¿XÍùÕ\Ì¿€Nõ`ùÖg«ÓXÆ®ú‘%¤ƒzùN Zñ/X»˜üõŒÆŠöÔè›,ãÀID?1Ùjõg¹Žt%œ\fûüüÚREf-tº¯ò扦¬¬k}WVÛc–Ÿ.vªx÷îô,möj³Ô?›w———Âuåû÷ï­çsËÜ}ñÈ^´<éD¡0KIÂMˆÁiÁÓ(÷CÛX€?Á±M@J·™,™áA<÷ݧ³PØŽ7 a»Ó/?õvÈ« À!‹Œ­ tÂDZ°æ'‹»IàGŽŒ$…¢ˆKÌï‹áCÓ¥1=0Ñ"¢åÊÄ·"á‡dÅE‘eÃÙv<ð>ËJècrâFŽF IñÚ¼ù™h¹®›‹–pd¡ïö‡ò'T91/ÒÍ>Ósͺšz±]îWërß´kš‰m™í7†Þñ¾û<ëTÚä©Ú0«ªínÓ^‚yHD½_A-6yYÔ¯,v:Ío\¥Ì§ª‰QךyN±ç rÝì³GØ"<ûÖhdV©¦Ê‚ÿïÊ}Å +Õ›lv 3^báH¡¸¼•’–E¶O›vW¢¼Ð>»[­U‘×*NøÇ}5í}‘åf]Ä\M…¶£âË€¾gwx£€rÛío7yJµˆûÏõ¶L+¾:|+ï¬yY¬J ®®÷»Ýì©\nÖym±ãÞK—Ç´õ”žø9²Ðú5õ¥½hT£·` p¾}ûH‹d9ü_Qèò€6H”îoèÚ2ór_¤ù†hÕö P¨a`ÚIÊ¡YU+Ö +S2ôËÈ +ÃÈ ƒ ¦ÈðX[S2‚NäK{|ؓОï6é°ÕºÉ‹ÕßUÿ„ž‰üÕsÿw{ ù á»”Ž«¤FÆ&á,BEðØ¥¾¥SÕãè|à„nÜ p£‘ˆ–±8½º^,O‡Ç±OÛ…v“I=e©7öXà°%ý+<ˆ­|ÉŠ›é[cÇ!ïÅÄî9 ©G^¿ëíáÁøt“'A:„tæI·Tbo„Kº¹­Ê‹FªHÛº üP +{5=O$öN«n#÷<¤jsáÃ7xn¢›‘ìÃŽƒ²]géŠHP§öz¿…>Õ¨*WħUØæ ‘kµÙèzî ²Ðkh½LªªÀŽgº³éóÂ~P´¸Ö*;oøȽSÁë95ÌvÌÔ§{À0Û–9¥SäÛŸö›qI‹¹Ë£¡ßí·|øOð 5v ¿P´jf ùb%šÿìw Àíœ]àÕÇÙG]hèî'ü 3„Â-WÚ°ÉQ;CXZî0ߘ\d•û©È÷a?€#uà¿ûÜôÁ`0ð‡XÃ!ÈqæùðMMpqÃâhdã×#›¼Y:"lã4î.|ÿ'U<Óòúo¤Ï[ºlæ{€è¼'Ž…0œXÆk­ÃL­©Œì3@ÿÛÛÍãÔó<ÐCjòf®¶–Àæy¹ÝæM£µý +ãüCëúù뤑ÂöŒÔxê!<¥"51Š9!b;oˆû6MŒö¨ØþhÐÖî͸O +'J¢çG×Å÷[Ä'M~¯‰…ú†‹MdýÀ>6–¿z†±íÌñ|Gm¥y¯ÜsüÃöcs.¶?+²;]#º†#ëI'ßI:àu깎Ÿ´…MÞUØçË E›VÃŒ|Fn|¼ G¸/Ĉ=ë =ëÃkÉ—}Ü6ÔâWpÛ û¬-“ÎŽÐDÑêå8Õ^;FÝÚ©J #o{#|1²}Y‡ýÓÏ6ôúð:ÔLC™æe†/ ®°CîsýÀ¼yx½ÞÈ<80¯˜ì5Tæ ¡òƳ¿­s~µÒrïnÆ$F5F¯Å5¹QÞ…½É^rþîeÝÌàuO™0O ÈéfúI vHlïh°zW¦ûš|`ШÁEµùRp®9©ÌÆ-\È[²Ñ÷ªWMÉ{Ïϯ͡¶Àú/5²„§Žê×Ã?œÛÿo™ïŒ2ÿêwe~øMÿJ¦®ð¹JÓǪ„¨˜¸€€”[xh7/g%¯ÃF® Î{5Ï+´ÃhžD5àr¦¯Ûjé ùXÞëŠ Nm«å)i–úÚà5ÌrH©³)@ ìó³9þ|ÍQ$ëÖ¤¸ñã"Þ+¨Ðï=Cù¹g^{öÅžç1à¹y0L‘B/\üÉgA“¾]Ù½pjq~…Ç Ê3:ô 4è K>ä2 +£þ3V-Dƒ/S¾Ázº™¶X V:åñXfÜ1žL‘zÝA8̶1˜vâñŽ1ÖMÿÀ‰¢¤½ö(ܾ‚­·º:÷¼ðULO.Øö—Œ O<¾Í Ö£KŽ°DKa»ÝLÌéÄÙnrPBm*éùãÈ,Ú(wÛ<ÞÚ8‹Ø„¹}bÅöâb~cÃá£ÐÝLG Ës¿…Ùa0BÊGPZu®Fã$¦}vu÷QBG/æ_ êž-Nˆ§úéÖhiÞkÀ^™© ÉLƒ¥ËJmõ e3e 2›y´¾àI¼oàÆ«ËCxÒ…–¡R~5!wûhˆk½ÚoÚÞ‡ ŸóÓë‹ÎQ¬h{ …ëD*VÈ<†^ë%w(á8Þîà¶Êîè1ÐO:Ó  ~"’:Ëûfq;Fª×i=4–4õ\»ãè^!A•è‰{Ÿ„sà&@é]Ÿ§ÞâÊx^¼ôÈykЃŽIó¬c¦}Ü1×·Ô•­¥íA*î¢Ð? O˜v"P o½Ê0™¢{† àep(>à)'œ éû Å-5½aÃtãÞÄâãAÀsÜy¶†mUví+]mUA3€x@A\J5¬)|Öæ ' ‹My¯~äÊ°&SðC¹oÖØc¥}vWfno+G׶Q ™ÇFô3æd™Q©¦À #Q´%é®Í \sÌ7„ó<æ%;úgÐÌ×*¯êg¾ÿ nUFjÃK”ÎÐZús¤«Þœ…á½.w4G¨ã_k@+í™ØK×ǀìúÿ:I;G°á¿Á•%i÷ È#‰UýMÆ _´0[0ꈇˆs\Œø‘Où0í[$£Ä.ÃÞú:<ùx|IHÍ·wŒ| +·Úç™b\éSxáÏ@5 +0PÕ&W˜zÔ½`…ŠþÓü>g1u™æºá¯ˆ|ë|µnþÇzÕõ¦DÑ÷JûxŠ\ œ:R­V $¥Í&d!íËæŘÁX1 Âv²é¯ßsçŽað $júÂÜ;Ì—ïç9¬ÍÕÀèÒ78$+*¶È ¾>9çrC ÒÐåñ2Ã>=Hó¤ç¸jZ=ã7¹Xå¹Bª½Ð9Ó›î1Ë )@¾Ýÿ œ3Ú=4àŒ tÂfÃ`ýúŸ;èŸ][´ï_N2Š×Ví¶–2’>µñ:¼ÔéíªŸ ?óþ¾Ì˜î†Î…[ k˜B+W->ÉHP¦ˆÖY Ò¯·vwžt^]ÒîúŸ¿k-t׳ùëÚó~k&§Ô¢€Þyà%Bn5£èk`¯é¥RQuÒ¥±œ‰T…w+kóOA%´àÛäþÉFi$u[ëGÛ9®«çºÜäe„ü/Û†T_– :YCs7™•œ +õ~é= Ø4î4 ¨/£.õ‹4ů×å7ôhïä7FÀ„;a=2Oã¼;nÒW@>{‹­‚*é~P’‰B¥¶†¥Ëu&Ÿj"ÉÀU!᪠¯EUU +…ö ª´ÈÒû?V"Ks«§å{ rQÑQ€»:×"!ÎJâê £ Å»ZsµI±E¯ÒÀÜeí ¥Ñfo¿ IB“„( ;ºEÊì!-ô-ÊiR«£Iÿ⠾ǴÆëÀ4­¯7“»ñ¡]NyîI/x NÑ·x~Ï9££4‹¦™Ð7DÅ©–juvGs7^'ÊŠQU̱ŬQÍqVÒwëb¬Ÿcª$ÏyqÁqãùò¯Uô˜—S;‹ëAú§U}­¤<ÒgÕó÷õ£T_ô†YeGEæ݇>ü/ÀOéÆ +endstream endobj 22 0 obj <> endobj 28 0 obj <> endobj 29 0 obj <> endobj 792 0 obj <>stream +H‰\“Íjã0…÷~ +-ÛEñßÕU Æ&-dÑv˜Ì<€c+©¡±â,òöÕñ ƒãOH'ç\I7]o7Û¡ŸMú+ŒíÎÏæÐ]ðçñZoöþØI^˜®oçÛhùmOÍ”¤Q¼»žgÚ‡1©*“þŽ“ç9\Íݪ÷þ>I?BçC?ÍÝßõîÞ¤»Ë4}ù“f“™º6?Ä?zk¦÷æäMºÈ¶]œïçëCÔü[ñç:yS,ãœaÚ±óç©i}h†£Oª,>µ©^ãS'~èþ›·BÙþÐ~6!©ò׸8ËTãûT'U‘-ãø‰¼&¯Á/ä—È%×”XSæä\ pI.ÁB°%[°’ìÈüH~?‘‘­\‘W‘…¾_¡¯ÀWè+ðú +|…¾_¡¯ÀWè+ð•gò3xCÞ€Y» vËÚ-j·ôµðµôµðµôµðµôµðUfVdVjZ¥V¡UjZ¥V­ÞÎ ÌÌŠÌʽRì•r¯–sTî•b¯”u)êRž©âL•5*jTÖ¨¨Qow"^ Ê±^‡z3;dvÌìÙ1³CfÇÌ™3;dvÌéÓ1§CNÇœñƒËz»•¸¶±»ÌOO´—b;,-¸ô: üO—Nãd¢ +oò-Àöììt +endstream endobj 780 0 obj <> endobj 791 0 obj <>stream +H‰lU{PSg¿nP7À’Û‹ä^{!ˆhQQ×WÝU®R±­(´‚€@xÄðtx&Ü$7 ! "Ê#ˆPºlQ¶]±UŒ +²RÝ©>ìŽîØaÇ/øítöv»3;ûÇù¾sÎïœó;ç÷q7„Ãáø|½úCI–Dž‘# ŽÊ8š.wÞ,w‡Ü +;ß̾Y…¾ ¦tæôÞãËüi¾ÓH.Ë-ÎwºˆV¦‰B¶n …¦Ê’¥¢Åriv(2'E–Ÿ+Ë—È¥©kD¢Ð¬,Q´Ó¾@--æ+ØÓÿb‹2 +D‘<_’*Í–äÉÒDQì±¼8W¼GÊ:†îIrR×ÊòE¬Áñä‚ŒÔ I~†´` ‚pØñ@/ñ^‚øq‘wd  A ®H˜rÀ ‰wA²d3[8₸"«‘}È)Ž/§Íe½Ë3×R×'nGÜž¢»Q%w›;×=o‘Çbÿ%AKnþjŒ÷ÔcÊSéïõݯ­Þ%ü•üÏ0ìÁ[Qoý„Où˜—n\zÞ7Ó÷ ±ˆ¸IòÉÛËŽ/›{; +¡î +iÑnÑ=¿ežž0tpjÀ~Wá?±NôÂŒ Æ”YQªJQ +èä¼À½+yÖÌnQð§f±$¬}jç!9Ç;»Îéé’wæÈ +òr)Ïe–9¾…3d]“®@ߌCb +D`—¬€d`Æjˆ×ÂáRaU6›AÓëçµ Æm†>á•Z¨‡„ž'h‹R1·£°§*&±Ó ,ÆÕµÕ*ªRY¢MU'ª}iÅâäîzö×3ÂŒênÜUðÄz=ÚáNëu©ºm¥QP]§4LŽ(÷ ¦·®‡ªhäoHÜ] 8T¢V+ ¥¾XWFÕÑ`ñ8zª££Ñ@ºÌ™€=Qáø鼞Æú±\‹§’™ÖMß¹«¾;£nМҞÖ61'y´­ÍL¤×’0š Ö€`”­[h™ž ^‡Ï@Ïm‘ 'Š)º–N¨‰­N°Á>áêõ¦s­_šN ê #®“®}´NˆåŠ?þV@•,AÙ†ZÁ„Ô³i¼°§Í`¯ºÀFœV‹Í1'#ŃÃUƒ$öœÂg¼!¯%à Ä^Ùºï}þWâÇW³+šFJ™^y¸4IOûv°˜'{[G Ñ8Ð9Fþ£ç½¸qûÖ)ªõº +a­\£ª‘k}O¶[ºÙÈö äoL‹µ·d![ã5 rÔ;ÏŽÍþžëÅú€íÿ’.0”¹ÀPŸmž¡^õàÏ %ëäL3ÏPuýâ¦;v±ù&­6 Ù{M£Æ¤mКÓBgi™L+%uŽØª†÷s3b~Ý7ÁÛà*Aƒe.1v’Í€ÇÅzu£8”soÏG€˜Þ:µ/ÛDpŒƒwíµ…ü‡Ý ÕŽ½è~8]Û–jNlI”·ö”“€¢Y°éÇÐo¡W¨4SQ ÔÝgî×Ûú¯°á¿°ÒªA¡ÑˆbÔ&Mƒ¶YÛÌ46ðj (ö"šk><œÃ㉫kPc‚6æ ñ¾j K5ѨåœÕ:MŽ-p»8"tÕ–ø±ÛÙBZç$· ¼½…Û$è±»:ˆ¹Še0 úC3÷ÿ°}ð^¾ËwÈ_ÞM:VZ]A•”ç¥å´6 ¸}¹AoôÍû—–lX—V‚€ÏZôúFª·qläùøÓ°õì ·*o¾ŒšäßïÂî8*ç6ãÎAݪ=DJ¥ #bý©ŒT'5¨”¾ú\]V:‘¥IW§Sÿ™P»cºŽ^­7š{IÎíj×°Õ)¡;ŒC‰Ô©Ð¦Eg67©ëy⺺K`1X^½ûl‰}s^þ%{â8`n¥cÏ/Mø†{ë'…}ôÅëpëº!öàÚ™§Ÿ~OÌì¹ÝüÖÿvyØ°äa…=?Z Ý@WÂÞ€w=ø›Íéçc?HoOˆd Ö¼õŒuoÿêú°Ý~-eãÎ$q +ê÷–ýÓ„ç‰f0]›ô°ºäRˆq7HþÀL€ýÁ_ùC^Ð +¸z»ÿáÐùÓIÊ|ê\[OlƒŠ=Gªh¥o§CŽÿ`{ö,m„Ji)]IeUÆŽ 7ÅO}#œ×FðrÖ)¹Øº)‡à—ô«ƒ/Ý~I7AôüN•ö9vò+æ2±Ë äâ0z;MGt-Š-lÑåóŒU÷Û úâüe·ÍåÆV756œêžZ Ì¯0—É‘fDص íŽhT”Êò8*ŸëÜÇ¢‚…H—™?éF.¨­ÿ‹”ÅM+ëÜ!ÌtXظ¥GŠ’ŠPx×$&jÉä†Ipõ§ûª´4öe[ø³Ó@5ÿ³Í‚";¾O¥:@Õ²z§¡de,ná<ª­“éÔu¶µÓ<ñH§±þ¬ðŸ–¯gf €ANÿj¥sdžž4~}ã{ =AT¬6š>œ “ðÄÎÜ/8»`U_T7Ö”‚º]ù!b¦ãL[«î пˠ߾P_g,jZÔŸ‘6t9£·P†î³ºóäÇò€ƒÇŽæ ‹srTÑd$×ì(³ÍáVÎècGöY×¹Çx• Í;“ÝH˜íö²Ï— ,ÿˆ\/Mº*Ô§0•R‚­¨]ß뇛‡lÑûÏCorË;Çb"…!aÐ…€ `=ûž®c–ö–k5m-WÌ:›O;v>c•ë Ã„Á ÕY)}»Õ0H‚s^îAMÝY_!ÑR¨^3Crë½­£nßv]u‡Ž¶îª­µKÕå!Y „wH‰D${oî//$P!å K¤®nˬ¢+ƒíºëN­[·kg;«þÒùùÇÞ¤)>fçþýûýÎùœó=ßsÃ`–ã|ò´Ŧ¤SIuèý.ñæ/„˜ô!x!¼Ã#Ôéð•Ð C |Ö£ýgѯÈ}ú-ÔoDÙ4J®¤\hð+÷?ÇPêÎí¤Áa…£½sÚ9asµ•Úòzßõv LBü[z2ÔT§ôöÚ—®ót Õª]¢ò„ÝUñ8ZÆ 0~¯¾Åݶ ï8Gkmd³–Õš·qFäÊcêhŸþ´ÞÜm!Àœ×åÁ›b˜ÊÃZ‘®b„g`Œ„±|Û\èò³^Î ì‡*ËIó¬V¬“#4Ê:í0Qw…ÝeG‹´ˆF‹“AÒ4”.û\TL!qþœJ™£y†Êa­©ÒÕº +m-™6>©]6ƒ¥ŸƒþAºÖú$ÜrRa©6‹ª,t݆(8þo +ù?¥Àõy×èRœ›B ¸Z7þ€ÂB-¤ÑÂÇQ€Mê(ë <ëžçÿ*PvyA€†¡¥y£´¥²XœÀ—–SeDyÖ‡òM8z-ãö’½p'Àp¸ýÚ%Eæ(iRÞf53™™F@[ÃçAÝ4%®kC‹p®Ýw#’! |a0 †ßí©wתæŒCÜΰ-ÄIÛ Dž‚ÙOç¦îÙ¡¸9‡–Æ—Ôg¾€u<¬:Ù³kÉãjSćSÈ×Y`¤T"Û lmÿqjî«2µIIt^øç߯_ýòRo»¨µÛd>Y7…ÅœùŒ”––*:jZˆ"Qøš70‡?êLÂh®µxDÏÕOŸëHgRèÔYÕÎU—Àrª³Tî|·À87‰Y± Í¡…Õê`=`xØC;fó˹àˆIgáÀSÚ& mU7`¤ö>TÞçÎüÞZhKÿ耠)ÌÚV×VßËú(†Yï§óç ¹aš¤5HÒ?ø’É\™¦3µª™<:³¨䇯Te¨2J3Páý¼(”¨zC*¨˜)¦‹Ó²|ÅÇ4¯‡®Õl£|Yµ–V´’ÒrÚЩʥ³CñE@×OÚ‚ÃsØÍ \<#|èL:ÓOÏ øÂû7›é¦êf­ˆn§»Åp„#M7€6ƒÅ`0[Žš:k:íQÌdÒ ™ x6+ÝI­2k¹ƒ(@iZ‹"Ũ—^át¡€žW¡PPÀÐ2ýœFÄ¡õ×N82™ÈI8p óÁȹ• ŸNÖ÷X%Þà²^à Âx¢Ç0‚1å…mû×£¨âR£EIRÔÑ|ž®©µš3â­aä\¶ÒV‘;õ;©ô}Ç5çl„"þÞûglv#~ˆvŸ<âþ9öFaj9ipã7nÉoëžß j T$UÎß KPŸ^lçtÝlo¥[f¯âí¯4÷䑨:yp^í½ 8/¸¦,jCOÉú*á19õ«Ý?Î¥çÇcÚà¤S>‰ÝÀ¾ Ä„ÜýŸÔ^0'(#¯E߸GÛv½øzúfþ•bû \|Z¹Füܺ=¯o¸J]+5È4S†¨bnì3ñìn]œÈPÍ;äQ^Äážð©;ð™u/w’Ø7(ÌýÖñ¯Å:wëò`~¬ƒ±ª_HÏ»%Þ¥µN˜4 “œË"0ÔÍ 8o°ëñ€WòÏ‚1¶p†õöÑ´ƒ®fô†œš7£¸óÁŸMæ3ãi£'8ã1[Z*ä’˜+%…INIaSpÌƦ¦²i8E3ñLŒhæ÷rÍ”¡›ÑEÀÑzqg›vÅq¢PûJùÎd ÚMÝ B4ß·æÂÕc“' [¿¡÷¿âëžZzSO,½5üèêTe&›—x8z9åœOÂÀ\ãìÁåÁÁ–ü¨Á}P3œî¬ö/í¹œë€…ã˜ ëƒS0L(S¦ÆïÀ·+}c^‡¯‘ìoü´æ¤U0n~®÷ªœÄHaLCŽI£3ä9$U Þ3P-:ƒÁvÊTo4ÕZD5VÇÑnüªëÀzRÁWoÑÆ)Xßûò}·Š7õ&Þj·™[ Læëjm±ÙEL!]D˜u¼:¶8ÇgÌ­‰K¤ðÒŒZË€8â˜Æ¯–ÖÂ:ÅÒ¿C×lˆÛ‰]ÂÖzì8a± úÏqÿ¸î_JüåsÉi­Ý9d ÝÛ.Þq[ˆ©×0èÙJ 59åá•´{U½øy[ýÇãäçü0\"¾»ý;´d¿´ü’PÈs T + Ÿƒ¤á3à [2T;”ù”(䜪Ÿþˆ1S&ȬÕ+òÄ¿ÖøËûçy/@½}Aàù3B] OSt°tŽÂ¡àßpÕ5×؈7§ÂLÖ2¤ nBÍ\›'ðYD”‰×›gMÄ×½“,%‹³¤Ä‰ÑÆ;1ß^émi:NDô‡ +õª'˜:÷ˆoScC÷ -„ØÄÙK_§–4l +Ù+^S] U¥Úô÷·àˆ¿ïÞw$ôÁ8¡M’Ó‡G¿¸qwYž(û1Zq3ú?»¥ñ©k-ŸøOT†ÀzþB9¨ñì6íœç½ “  >ðŽp`Búš†á>’)ÿ]µ +ߛ²ñä¸Ùv.Àá¶û¿VÖðTE»s?ÄÑü¸¯a8 EaŸÞ5™ÚH¶–=Z/†¯¬èzoíÆwŠDîÁŠMéb EI—'ÇÚ›;ˆ”G9ôr®°ìOzÅÒ[ã˜óÖma–¾T[Iè´šê"Z6ã¯eÓ›ñIÎ_=£#3þÌTö˜ÊY]HWÃ4ýøj j*=òÛ\´Èt9Æ’œí9Ž««¢n½tu««¥n½-.ØÕuqAV0r QL˜œ“ä$Ä\NÈLB€@¸*J«GE3ã¥ÖzYgÛaìºT­ÓNç =v¦' 2²E¥ýÑÎä×™É{yž÷y¿çíä~ðK§Ó’:;Ar«ô ¼8Ë„óÀ f ¡/à·*åNÄÌT×ⵇ†ÔšÈèù„B¦+…sŲO“Ñ/Ò$eØ/ØêÃêìBÞ!ûH(3a·v¸ŽSCy} üü_} ½Ûìídüö³« ûª&$@ÿH:ƒŽýDõQFuQJu\Ƥ¿×‹¸“`jÆ¢­ï,¾’ß«@qômB¦pw!Ÿ—~JêÆúã„ܲ´Ür)[)S–ð=HKûú[¢y'*ò×`¹ðŽ"S«Ïcku .&x;pÿŽ_ÕPaCé¿SCÏLœs.¿Q“uê:Çe ßõܼzMÒâMëßA¡…/¸‰s³íìÓ—,_¹“¿s}Öù«}Æ…hXÖê£Ð G“ò ð0æ¡«o硈د+×WÓ˜×â-#¼!Öu]“Þ„˜ôýç0ˆ6|¸h©fCÕ”×Ú—+±n +ÒÊ–TVHYYZ¦¨Œ ˜SaÊnd½ø|±·Ä=Ž½÷xMjûN/ÂH/‘^zºè^Úü]x×x9Bâ!×Óž­Ò¨qÒ3¥b]ÐöÒOƒÒJŸ7žþWÓCÌRp’=Mè56º\"—P( é9÷Òc£&vûñOPÁp5ê¡>ÊJLªªÒj« ³à}» l¸Ï§šVñ’´5˜G)ö‰ƒ[=X1è)Ž@–áI±XÁ¢µýUXijšÅ}_ü. íêM?“ê‘ 7ÅÙY¹•†³Éhâàú»é}l°|âÓùÃçŒÎ1ëÔ4涵 –ïÞÏ•Ù|i_clŽæ…fꜜDa¤ðÎל3Õ´àÁ˜2h¶Br( ýf± ¦É5‘)¡é?ÔĽÆôŸ¡Ôç¬WDô‡&³­ o{aÛMdÃÂjóxNÀ7MY__ñÿ0g‚¼üeÂsË`Á!e¥ …êeÒðÇû,•áÕZ»ø”è¥Ñ89@û#í4þo–T7Ö×ë[pË}Á|QÝ·ÀЭ7»ˆ³ì,õ.øÄ€¨§`Xºô>5›Bâߥæ"@BíãÄïøÌ?¸84 ¦ŸšKEQ+7¤}€ÆôPn +`ì rΆÑx]W¡ãàÇÀÏ9MÍ ˆ³¾Í÷xèk>õ5m犒U×tÝü=•¥CÚ 8v|½~úøŧ<ð£7âwJ×¼@^×óšÉ¨(‚øñçˆû^@<ïEÄc¨Ua?»ÅýÅÍôrŠ}€Œ'åqG$ªïõp‹4ך̈«¾µµvzËå$j`6hÆf„vO±æHiÞ››õñv2?z-SsÂLÅv>kÒôº}¼Å¡7KqèÂI«ÎÀ‡n¹¿³¼ .ß¿ûu +¹¤ï›-VF2)¨ïã]<Ó â8¹­a ˆºRïpyhõ• ºP-@B,¥¾J0¶©½,Ô{,Èž¤8¢,Grò3„©ðžü&{ªpU{îñÀ쩉É%ÅÁDúŠ•íÔ&° ºV¹œ¦ÝÛk„ì^&ÙmíìøŠ ]º ~~òÏS³Žë$BoG³#üv\*PàùB!! _F¡-8Ë›*åûIG›Þ99'{ð`]8£³¨Jx…k©mâ4¤0qØÊ(:—ÿ{;ÏQ¯sˆw°êLžµj±:z^eC+×ÈJyy˜+ iá-u}·±±¶–k·hÀL¸…I- öR\ê§Â|vLÏØR@[´1v$rŽAÈ?zr‚Ȥæc_Nd#9ÿ‡„Œ9“ù90ä#ÿÍÎQÏš&[ËÏ«p7ÿ߯#©mt£28@¦é”†œôŸë ¬çèF'uÔ ¾4õiØ€4>;eî™ø¾Ç0GϺYA ç_ ¬½ºm +endstream endobj 23 0 obj <> endobj 786 0 obj <>stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream endobj 785 0 obj <>stream +H‰bd`ab`dd”v s ñÑöHÍ)K-ÉLNôK-MÕõÉLÏ(IËþfü!ÆòÛêwÖ¯u¿¢Yeöó~/Üù½F¤`šs~AeH¹‚F²¦‚¡¥……´4“Æ +Ž)ùI© +Á•Å%©¹Å +žyÉùEùE‰%©)z + +Ž99 +A ½Å +A©Å©Ee@Q¸C2‹JŠSRs‹²òÓ|2óòK* RuŠrÝóRôó‹2—&g¦d&e¦ë10001221óñÕÌú7ëwæ¬ï&³Ø¾Ïòrʟ۳ثæüŒ›ó;k:Ç÷¥“ÞOúór:ç®SÜßW‰ee +endstream endobj 757 0 obj <>stream +H‰ÌWY“ÚH~çWÔËLˆFèD¨ÃžnèÃG Ø~poL¨E5H%FG·Û¿~2³$xíØñƾ”²Jueæ—™_ýÙ1˜Á¦Å<ßb)ï|b²s>ëôGSƒ…3ËBÙé_Aw™uú3ówg‹NÏÐ ‹ÍBæé®ËpÐ`+ËÒ}à³YÜù¬ º½¥éf·gYšÑý÷ìmçbÖù×±S µzÈÜ>ðmæê¶ããåjÅhŠ+¦£ÛŽ¡»ì™9ì†u\_÷¼!³lÝr<æèCÇ-[X8íüyDQƒ®n²5žn6t]*͘iÚº=t‡t7¶Í4ÛêÎþèô§›@¾zÕ? ó"ˆfüKþêòâòÒ2 û·ß~cçãëh g^Ü€ˆ˜ê´¡‹F4uÍæ`­72çË4èöLCËùœE¤qs™ŸtmOcc'"_Ë9"‘,s6ábw)Osø¤óŒm­nÛŽ>°m2Øã¿4US“]›Ù¶¯û& b×fÌt@ƒÇüŠ‚Œ¯ÕßÏ3ý¡{¢\…÷pJ¥‡º ÑPÂãŠË9èD›”[ÛÚ”‡E*ò—º—'©ÚvÂI+yÖ5MSå×"¯)•5PÑÏÚI ³mí +%Ž¬¥'llNÕ-{æ@·=›õLÝHÑÇ£³KTî„ÝMGý»ñ›ëÉ ûpÛ{s;Mκž£}Rÿë;¸êÀaHµ½—¦ãÂËlj5pTÇZÏ"0nï´|êWiÊUžoNûýççg¼>ƒ…®úK²p×j½¬´+ +`R£–¬Ú_f™Ë•QõpÿSOYñØÔì«™ íìºöšUË5½ò÷Ž&¶×´Ï¯åyûK5«9ïus†}h§æ¤æ…ÿó6uÔlÝàÙCeðó$• í:™’îWÊ6’/#°6I„lÛ„XWd4ô6YÉ,KÊ ªpiE ¤5*Séâû åÎ }¡…wO°¡X®rê% ú@š oG”AY™"HSw ¼ìxBÙ)»O… Å&â Ï WYœQž¹OƒrþiIEIS½Ðþ=?HAzˆ–×(>ÐèÆà IeÂþï›â1a€Å&ûaô[ݲì +ýMð×*zY5³…êÃèWÇ5'»ºã œ¶=ãž«{8¾SÎ:+GtÔ‡¾÷Ç*‡P(QUíÙC}8îÓ(‰8`Äòµ‹9—JzŽ¡ƒ£› Osd +'üäiùû_yô„+ê'R ë«ï×AÕ5]­Àæ›Mˆ ë:Žv‡Ò6››¬ž·Äf…M^¯HPZÔݼžÂë±iÝ ë¤õ¦´âåØdú›Ô+ªúÌÄðœ½úuF$ Ôü1IÖ =‰'±i +5öŽBv‰®€¿©ûñýáv ¶ëþH­û™Ì º{²á ^(2½ó® +Û²¿JbÞ€¤ôwú²T;›§/ +x=ÓÑÎ"â;®Y’×Ò®SAùÁv¹\ +Õ=Š6ÓÓ}£¾ý­¯0ïÈ@†\õ‰JÁf÷I–÷F‰|0lO„¹úyσ?"BÖ×t¦rXäp¸çü÷"g‰&ñ4 +–ÒlÏ‘æi .‡ýè¶üÈ~¶#«T¼ë¨þ:Îúsž"R¹8’Ë×\þ*æ¯[·6!›øpš ³HUÏóÌgûÚmÓ÷-˜É–¥Þ×& ¼ÔŸ›b¹ Vjöƒe™ž¯„\#ÇtøsÒÿ¬ÆþQðŽ4¬´hÒÀ™ ÅÀ­û6)XMFF@€·mݱ_Tòë›@K®Þe ›ÐÃF¯Fݤ¾—%^-éd"#ˆœ:,ÿHY÷P¡/è×ò~ßàYWŠ£rÉ):}íî™K%•O_›Š8)Ç&˜ñ^¤l?=(ù›Žn j[½Gú/êwÁz¿»,ß¾z&Ðؼ¡”`Ó«¥´ž²Ý…ÖæÇv£DÍ䛧MQšîÏ[ìŸKc×(ØÄõárzý„õ¼´¾]ò¥z Yºµ_K‚EŽÐhÛütJý7YV1ùâ TjÁ)±Y%÷…/0Ëð&xÖ./já°§\M],U´7ÒJIIAM§CÊOid{„b·ÕuÇ;ù–à › ž>'i4':‹$˜)‘?ˆ”ó4˜/Lç'ìm½|gÛÒ›áÏ"­€l­Î–sŲW8XÄðöØUTÇÑ2ØôbÝ1@hgýñxòKS£Ï@,á¿Ñv +=k“óÔw¯‚ +xæ—FÙN·šÓ) ?Õá²²;6 lô£…º‘ž=W…ÛÑÆ… ©vcçZda®Ë^™,@à} Ž¼ì_FœL[m‚[Vk®Mz%F„ÜQeÚ¦c<'{U¶azöëï'Õƒ`R¸O"5p¯zpƒ8럪Ñ:Æ°³d{[oÃLõg+Ã5ÃC²ãaFŽkã½Eå«Àh”ˆ£üÂÂùéo¹*$Úá° +GÃÚ,gß +€öüÃЇyí7îf¾À1ãH½«Ù%R³&žvIFáû±ëÂ3œ/¿40 Ï*.ÔL¢¤Íú‘öÐU›n¹¨ê @qÂ!Æ{‡}¸¥O\Þµ=Ô>P¥ ú 9"׳öÁ +ýEÉkTï¼H·£²ØôL˜ÇI˜*èbÂ;T=Œ6üBì,“réu¸/e ¼K²ä)9Xrð72ä‘ñäùHQø&ÍŽïx-lþ=¤YÛVÄc/òpµ("¬üÚÅcÂÛlÍÓ ˜Ýz;Y5\­­V•2ŸD¦yÑdK=œP8[–eîa +ôûl‘ +*Ö!Ï#‹RhAµ\Jm»¨¿å90Œ5Õí*J‘±€x„"y]/ª‰$ÑéíÆdo“½mLö0¬¯.oÕÿ霽ê…jªÈÁËÍþÑÑÌF¤XHVA|r(s·žN +¼à>x¼þäÌ ©l¡Ã·?O‚<Ô¿ß…5h{ÿ朡ü=éø&ò@6nL#GîÆ>æ™$Í1G—¼® ÞúA‡dœÞy‡Ð;ðÛàEBŽî‚ï=>û¶¥±1"z*‚ü,ò —b¹‚|”Q‘Žäýß3dé;¹`: ö` +Œ`…¸øÔµàBi‹Å°IRäŸ/ùw戥îTñ ¤øZaß-ñîj lSFw‰VmI= (X» ÿ’Í_¼W»‚0ìý +KªDIh§ÀèX(ŠZÙ¨¤ðÁàŒRø÷ÞñÑYÁer™Ím.»¡‡©Qe[1·cWuž“v8Ö$ôƒ"·çÓw‹m²ì@®_XKÉ\å=Ùš¨ø +×}Ú,;oUt[·ç'<HG=qŽò3è”6½"y[A÷ÿz‘émR¹!ž¬/kà¦,šÀ üÎÏ)“-%=câ×¾ZŒƒáÁ•+­¾ÍL³•¨6¸Ä}é ñ)Qià7LOÇìªÑCDZ Í–ƒ±¸ÈG«Ѥ:‚ôÒ”Ö ß%Ú|÷K¥D‹ynYl¤T}x +‡µÛâ©ÿ^˜,ûš™3ªÄ–—„Àq,ÌãÀyIÎÓÆM€§psÖ +endstream endobj 744 0 obj <>stream +H‰œW[Û¸~÷¯à£\ÄI$%{èN’Å&ÍÆ^ôafQpdÚfG¢¼’ìÙé¯ï¹P¶ì8è¶/â!%žËw>ý6ID"ò4Å"­üCøÉ«ÉÝý2e'R!ºÒOîþ +Óm7¹[¥ÿL`qµ™$q’i±*EkJpÌt§h˲xQ(x_O¢ŸìÑV"ÓÕ¿è4TðŒ*STýäü³ÙÚN¼¸~'š~g[ñ¥mJÛu¶Ã=xhÅ#Òôa5ù™Í¼_¢™ËûÏ`“/B‰Oâd±œ'q® +‘ÉíRñ¬â'x»œüö|kèÈŒ±Ër®ãE6Ÿ_¸,»³«`%±L$ì\­'Ñû÷_…ñk±´å¡uý+ +}ÓŠ¯vÓ´õ-Ïï–{ãß¾½ûKÙLµ²¿÷o?~øø1KùîÝ;ñãû{Îþð ÄQ¶Ry–)))† éË,S{rT Áqn Œ¥ÓJf¸÷=Dùt–gQœNgY%Ó_W%ìŒ+­5¤`•s¡ó8_Hkj¹ØL´*bYHJd·Ïÿ#}2# ù#ò—È…¸—å2E¿¢Ï¦wïÄ4‹JãqxÌ2ù`+óÔ´¦·¿âÒ¾©\é,}…™„a{pk[9Ï‹HÓ8¸z_ÙÚúžtãJ³Ág7€eÄE ã™2lÄ,¥”bõlk§é<"”ö•ACA"p…¾h¶­©k{ùÊúîÀûiÚïLÏ[¬)í³µ{ç·´Ðìm;Ä`´ÿïzËbÑt–êˆ N¾µµl¾oÁ5ÄCoMݱhýŠ~Íçy;vž—Ö-/ì[Sö®4O1ØÆ—á%™HB×¹®?¿ÔSèpxûDG3Äï÷]¹n‡ùS9§\Áðd}¹«MûÜєŷÄ[(Ù£©!Ãò” ¦3ÀŠé`„£b8æH™ È J¹ˆÕ¼ÈD>_Ä…^äTk™8á&Ž¥Ò±‚ºÍÐg“ riªêuš¦iô†Ö) òœTy+©ŒÍ l/‹S„€I 4~8q1UC93Û¤WVŸô%1T1}ó=N!3jÖjˆæ†žµó®>Ô$Wt™ „ù€á\<0Ùð~þôeçÊI}Ã{ÍÁ‡•åò+p:ºjøÏâ:/äˆÌ(¨ìJö?¸Òöû¦í!ɸ:fØm®GA|ˆ¼µk*‹¡ @AÌ ê"êz¤­+yŠEï©Vqf7è7Nà W)®1ìSºÊ7Yž¯©ší!ÌLÝ ‡…2*¢Úø×€‘pÆØ+ƒD†^è$xÞ³Ý5ÕÚ¯œ?6ÕÑ®‡YØÀC`(›,|ΉaTW7\†[CÁeuÛ峎7Xèm¹ó_ЊõÑ!‰°‹¬sì"–8¬Gk»±Ì6Ù1*ó‚õ<©´Ì&¸è|×»þ@Õö†—žø«5 Î!¾À‘¸%|P¶®§°éP ž™æt2#í‚‚]ßÔxˆÌ†<‚DŒu#v@&y6ô(úfì`wÙc'ÄÈÀ¿0ÖÍéß¼ÈfvÍ!àÖ9t*˜ïÀPO$3oe) ƒfÏA’”ã$!M4GpÔmw½¨!¿Æ»®3ÈÜKꊊ[§'Cä@Šî‘<ê ÉpöEŒJñ0½* 1Ãn&OôˆéO=7Û’h5e¾OO]‹ÎSØ—Jfû/­íÌ€ ‚°,¢%t@LÁ^ìc>ç{ëÉëq¹õá®à%ê Xdhƒ0îÄq×Ó ½B´w¡& ¾fÄÅm_–2Âè: =+ ˆà ¦ÙˆhùjtÓ³”ëÇj¸ßM£+¬s[O+-•áXÍ8Í`ƒˆo9{ D2êÐ.ƒ@‰Q|˜:7šDÀuë©£¡»_S ?ЖãÄahTt†¹ŒÌ>¸i°APlö# +¾§_q7?Î÷\;¤E²ò›¾T«Xç€*µ@”pe× | î4¶žCvÕ|>B7@×xãXÖ‘©ºæl4}ØSt¸ÂÙÔˆÁ 4¶š#¡!¦»JÖôËgzy6Mù§  -#üR%ß6;tÛ«Ð<£pðpé…¿&œs‹ü2A¢/˜òa•½úê RÔÓÁUkîˆ`龩kÿt7ÂAJ?r8æé5è÷ÓËþlõ'°‘~’P ÊïÐ:qÉŒÃèbà!D Ìdà·žZQÐñ˜ÈÜ•}L,ößï Bšr5ÝŒV“Ÿ'ÿ`êq¦; +endstream endobj 732 0 obj <>stream +H‰¤W[oÛÈ~Ðÿ0TaÑE‘I`'A[$hc-ú°.Š19²˜P¤Â¡ìu}ÏeH i{»‹¾pÎÜÎœûùøc‰H¤2›<YüS4‹wÛÅåûëHVH!lÑ,.?ÁôÎ..·òß,nw‹UF±Øb®×¹‘Â7Vqæyš‹íañK.Wi„r¹Šã Zþkû×Ňíâ/½ñíL¬Ó0Í•X‡*ÉQ¸ßx7®ßYDáZ<ˆD|‹un6™ˆU'‘„Y²v_¸x½øñ‚¢‰.Åw|]Ît]Í„”*TÙ:#Ù6À4 T´Ü~[\^uóæÍåOEÒõÖüÚ¿ùøáãÇ8ŠÔÛ·oÅ»«÷b<ùá3ø€äІk4¢ óÚ–`­¿4½¹ëôr%£ 7¥¸ª¬îú`šþb©6¸2‡ö¶ª«ÿ¸3UÛݔ⫩ü«¸|ÝÆîJ+ÎVW* S¥ÈT`ÿÓTsM|›)•‡¹„¨ðm&dæpk:6ÊÉ0(ØKã31?#׎=£O6qF*K9Ü~jó«x÷JüÍ,e<ŠŸ¿ˆ²-NhAKvøM¯KÉ»ÒãmB™ áüâxúéÛÒ·£oO_±ŒÝênœóÎÞ»«×Þ¼ðø›Ö<½¢ï'ïdãÑw«žÉÓ¸¹Êƒ›8V4Û>+s9y\Ì‹ºÕËj<Œ«Ú{±œÙÁ—‘OXúVžÞ•gÝæY¾y2Ú'7‹™ÔÕıÛ÷ùï<þ>þy8­ÆàÄJ†1”¡íÄɱµýªh›]]½°mQ™¾2¬žPßþÉÍ’x`*—KT¢!Ò#?ÒÓMÊ<‹9·{#0Ù³àÚ»éu÷¸údÓé^Š­;ðÕÛ®ã[‰ ö$T×Tz8° eñßè–Ypª‡Y»sD­…Eˆ©¾Ó­°éÚ-};Ù¾*†ÛUã°ÏM¤R´Ç¥\9ÙÀ¤PH¸6&=_QY0ZöMËk¥#›ÆXžö¤„òuPN5h„vÇÑšÉcW5Euœ_¹kïM×è¦p뤌ûªØ;fuíÂcT¢Ât¶mì…X®S¸FéOh(K ¤=ŒPª*R‰fÇÓ-ÄÐäÈu¯{3°)êSY5w4#ea„âß3UõÖÔ;>«9N˜.ŠöÔô$%”pýTV½”ëà?5~ ~ r€=‘jÇ)íÒáüØé¹ý¸Û4í–JyLH¦OVø)Æéãô01 1ã]:w7}’Þ(ñs12 µã5=Þ=DçüìF¥éÝbÊù¬V3]«¦ktã8R³f”y&†Ï}e.§zVßçBbH%C°5Ð^¶²=D ªz>ƒàB~HjXÙŸº!ª«îö½%²i»SÃ3–A¾PRõ Ç*´æ*5-–\î™dÐàcÈþŽ'išvÙ¬(Së£=_€¤my÷ì§ß[³bJeBÅ`¾„ËO<Ç—³šoÂXÅ +.%¡Š²ñO EàLb@|…›“aÔsTça6CŒdçÓô*FÊØY<¦ 2—¾­ÍùÄ9ÒÝŒ£ïZ©ALVtsf +¢ë³ÿÌòôÒŠT™sdLp©›^2Ä1'Œ#ü Â Cäǃ~@8ƒòŠûkŠƒÝ©)é¿g`ìz–Û&[ãsÃùñh÷âIŒ¾ˆÑSѱ$Ò÷Ƙa˜Å½{€V€\.ÜòÞð2ý“%.‘igå¡˳~+®Ö‚aدWgà?µ}høKNœ/=WÉ ÜÀ¹S +~c/xq‚úqRîŽ+˜ûßû/åå²ã4 …áý>èZT;СÑ[Ewêáëãe¶µŽ%¸Ã‘´û¥õ)XMnæd‘­/&^JžÜø—Ëœÿ韈39¶~1 ¹$=SJþ‡EÖÉ1.¥³)wtÍ®mö#÷ž=áu‰qe;è7~áVšjPÓ ‚ûy±A­ÝîñbÕpfb†ð­H¸¿=Ϥΰj‡áâöjM« YžâW¤2­âub + ]guZKEJ¯‰8{…ˆÓÒÄY¶^KUzp’NJ±¶´Ñ³=BFŸ]ÞïäK\©Ø{W)éA®YºÔK@äè‹Õ…‰¯w•LL{ Ž57¿™‰“ļ SªáUU‡ø ê"›ð¥Á.“I°Q¦h§À¥ñÒB·.ýÃH …~àn8Mûºuí°ÞR`ŠB`m`3ϵ@FR Пk™ñ^„ýqtº¢bu-X-ú`œDB5ÀrÉ|Ø¥ð–¾b «ÌÄ"‚@I“úäë C²ñFAgCÁ¤s;iûc!“6mïsMì. :Æ_Ýpr ñ4E¶¸VT¢ù}Tà]'!Í}Ñ¿¨T šõMV-ctTy @@…¬÷,õñŸçIlò¤X™y /$ü³¿iž¯ãºDª0eœ&ëzâQ$±ªÝRU+Šîñ¡z B”_ÀI3ózxâÐ#sVg n}¦Þ +Qšw§Î¾HÏJÓÃë¬ø KõžIgÉñäΑ ˆtZÝE/–ÞW¿r<8ŒG³8À§ïwßî~ 0Yl +endstream endobj 36 0 obj <> endobj 37 0 obj <> endobj 798 0 obj <>stream +H‰\“Ín£0…÷<…—Í¢‚PûÞ"¡HÓ¤‘²˜5 à¤HAYäíLJu¤"%||øºÎ×»Í.ô“ÉÿÄ¡ÝûÉûÐE®±õæàO}È–¥éúvº_Íÿí¹³<-Þß.“?ïÂqÈêÚäoéæeŠ7óð£~‘å¿cçcNæáïz¿0ùþ:ŽŸþìÃd +³Z™ÎSÐÏfüÕœ½Éçe».Ýï§ÛcZóÿ‰÷ÛèM9_/)Ó¿ŒMëcN>«‹t¬L½MÇ*ó¡ûvßV\v8¶MÌêE:%²€×ä5xCÞ€_ɯà-9½¨¶Ë™Ó)qI.ÁOä'°%[°#;°’üL~Wä +üB~ÓÍÂÍÒÍÂÍÒÍÂÍÒÍÂͱ£CGG77G77G77G77ÇoâðM=<…}}…™‚La¦ S˜)Èf +2…™‚La¦Ì™ì.è.ì.è.ì+è+ì+è+ì+è+ì+è«ì«è«tS¸)ÝnJ7…›ÒMá¦tS¸)ÝnJ…O…œ²X§²äÍ>stream +H‰´U PSé¾î½>bT®Ñ<ÜÜಾ‹8ÛukÕŽë{uU5Oˆ$’I ¡f±^« üˆð‰9¾ a0Ö?Ë{‹¾… Mî1À5tŽ¿4ù­IáMÞ%ú ‹A“’j’NWÌÎŽŸûntÀ¾´ñ´qA\Ÿ´ñÒEJ½\%]o1šT:£tyºBoÈÐd&•r–TºH«•&N6JTF•!›]}Rª1JeR“A¦Téd†4©^-]Å.›,ª˜e*ÖqÑRYºòzƒTÃú³äFR#3hTÆYÂaG1¡È”0dz"sPdñdu²EDƒ 9Ç2„„!8ë0ƒ³†£ç0!!¡³B[ÃŽ¡s°ù˜¯ñöȨ‘ߎZ1ꯣ=ÜùÜ›c²Æ<ãuMûpܪqOÆoÿmøm‚žÀ› çgL”NTO’Nê¼'¨F O‹6ˆî‰ãÅôÐ!ûö[µâÏ h`ÍgÀz)ü,í¼Æuã:qо9ÇùáíG]ûŽ5»ÉKS¯-¼·pDNæÎÂ41Qg³øø- ÚÔ„¤mÛõd®ÇâõŠº4õJ€ vó÷*uQZÞN«A2ÿÊÒë wF\ëüúâ}Ñ@²weêö"^’ªB·m-Îԉ䵊C[$ì…såK6NÁ‰] Fÿæ×]}BgS}r1ã¢x6àl8ÕÒÚtB˜ÚjCó³òweŠ7­k8!#;Î>ûsQ­£†ª‘4õS%Ý${˜óðž“UËöJ×m§¶‰órËé\Žr•æä¦Û­B6v8|Ê)ù¡7àdþ/î÷ÞòÞµÖ ’ó6å§ØK?Jƒaɱûw xC«Á&©çC{ÁE~±!WQ ®*€}XÅ麎šF{5»éPˆåtƒØP0Dòåj•LÖ¬ik÷´´t¨›å$oÈàÊÌÊáØÁÕP6¨äCÓ?²Ð¯1`ÌBy®2?2Õ†ø‘S6¤Ï· 'ü(˜§ f} çwA u2öŸŠ,öB›CòQªÆè^¦µµ‡ºÊlÆN­k×~[£Öúž¢?Á`J<ˇV¤[ô™eB]Àå íaNœðPg.[œh>W}XTÉT9÷HÚA +ÆËü¿ÁJîÀxÒ²  ç,Èíõû€Æâ g7D€%`:$ÀLâ8žðObO?Û Ã椮’šóÊ]9¤ïZ˜óPÝ &ÿ¶-ýý™ë3âHFüfƒ2~sÙ1ªº¤¢P¸»€Î‰†6àÚRk®]’fAMx3ÝÆ´Ÿ9Cuq#«1Bþ¸`Äâ.8¡‚dpâñƒSwÜOE 4æèlI1ö#GµT¹™YÎäm²^ñÝíãt‚™~N[ì :¸ì+~A-ªÛ bÌ&:SL|a£3Ù?â×°}O¦ÚÚ¨6n¤£ñãò&ñù~Úé%+ªj@ªÄL1hµÈž,Þ±ƒfd$hÀ™#‡éû°¦z»ÞIîÞ‚z1‡‡ò”³Óäá¾£ÀŠP3•C¥Š—cYY匉¥ÝÚ6µ_x7˜é“‚)~×pz ß ‘mÆJ—»RâÆ[©ÄÄD&‘)ÇÏQèiGc‰Vx®Lnß.†Ëâ@X4œ~’øû­{¦äÖïT@kt\Uìk@¾oõ<Aðf?GÊv©Ÿƒ #á€1l~ "BÁ~Ÿ—ßNß]+qUÕ¸Ž1ÍN—;6Pk?ÜÀȹ‘Š ­5¥®¢´Fã2GFq¤´ÈVšI©Ë +¼¾À|Ú!@®W;3›«´JX\ë8Þ. 8½¿žîƒ©Xw½Ã±Ÿ„ ov‚/#„0wä™Ib8K2Ót«eüçDøþ2ÿ¸@ìÿß±U2ȿĆ÷sÈaþ•­Ï» ¬ ²_bþ›Qºw9+vK¬Þî–Ñ%dnÚ͸ÝSnnd¾#£±1›„õ`%nPœüY Óî[qCKétZFÇ4à%¶‰É M5áZ¸JPRʸH°úÍgݲìeqBs›ûáø¿mÛy¶}當åìá±ô\öÔûïÙlýRGöû.ƒ"éþZEuuE;c)”.]èʼÔ\¹E Wñ0ÜÎîJùÂÒ&T8”B¡`ÜÈ×åðÀË +)),, ¦’HRã-t+ÓÒÒBµ°"z 9˜ÎŠ’êõ=› €yH¿W¿7£Z/tcuÞ#=‡:Àßû#’†bß°îú_Ðp'|å¿f@¿OßOt±³àEͽú +Ì×AŠ|9$B skr{R[ò­]‚Jê8IyšD¾Dü5"U¥R)Õ÷ðYµºâCRÚwvk:…z‡žÒÿFzê{ÜÇ ˆé*03Ô·pp%Z` ‡6h“!˜€…UÊp`f8ð ‰\">‡ÓþIi•G5u§Ñ ¾<<:©òÌ $ž÷ª´SÚq©€v î ˆ+UÙd1¬e B!1 „- K@d PÖ„ED±*ŽËXmk]ÆZQ‡SÇeΗö1‡y¡Â íáwÞ9ïœßïÝïÞï»ß%I{_'ÝI› `Ž`߸S{it*­„Œ.(Ü`16øëcyŠfÝëÿ|*Í+®VãþC¿Ãq[ضu))ÙÊ"-­$‘•Jt\˜ÿâXú熥D:s£|“lãèj½3¹rÏ1” %p|Ê°ð·P¾ÕMÇPÞ:çë¸lû®U„X¢s3’¨ÿ Ñ+ôJ}}ƒ¬ž>™˜š•ž+̪3Ôäf¨¶º§ÿ[ßœüø(þϦÄÏ?czyÊò2Ì%-†ïÑ…¬2Àrivc|Ø;¥;øáË7Ž p)|l®Ã'<Î;T$S¸–†7tr®vœyŒcOœÕ9Žˆy:û|A=.Ñ ÇwlV»qI[r¶;¹|ÅE¿ÇTù£?rŽ_æÇY¾Ög¥çšº®(<ã„J†¯¹œ±Nȸh¦fØÓTž¢ðØŒ¼F>Ì_eZbfÃ,fuMfz.‘-É)„ª VmL啬®¼n±Êj¡|‘ÌÖn‘ráœÅbIÞ,oåë6¦êšB—­²Îϭɬ次Dæ4ÿîð ×Q}ÍÀœŠjŒ>s꽞M"ƒN°6Þ‡­8tNsÒÄ(i›è@:“kÒ‚ ŠÉçǹñd³u”ˆÇ¯ì§dr ,ÁîC‹é;½\ /ãä«ó‹xOÒŒºÈ÷É_wt0j~!-ÐDZƒhèò SÛ n(l°À®A I¢©Õ—+­ëéSûåÁ²ˆˆ ÚrƒÑ.)R&/%q’R‚øþ8¹üBÙúxªË’Ÿ}I.p©»nB0[Æt2ÍEdjyA.G]¢Ö*p#}¯Ïx4õRL#Ì°bèG¤ŸYlÔup*c/š]¢цXß`ª»ó»µ',°¿Ë´NcÔVê”Ö ômÞòYTdˆÒge‰\—!àäéRþÞÐlDƤÌç1‚5óÛ“;’»,|˜ü¾??À‚EVó|š'zíÈfABÆ-Ë6`¹èa °0'*p°ýÒ}Á1¡Ÿ |9XѺæÏnêÊ35E8¶ÿñ€ÄM%B°•ŠeMm5=šÍ(/+A).”WZË 2c¦!Ó 4æØæ ÏW·¬Eûá{Ñ ¨>£¼ÉÏnT•p¿®=°žÀŠÈå3Ñ<./Vg¼Òªî-":5‹ÿ•|m¼‰ýh˜QKÓl+d´'X>D‚%V +‡~òa‹rÖÆ ƒ$ÞëCh¯©)…;9Cö(öÉA©³ØÇ|Ê) e­õHB£‘ßÇ=ÓÞPc$ ÕíúŠn ]Saç—œW®wl<£bp÷ýˆçÌ:][i÷Q£‹³Kì»ø—5Rš¼Ç¿?^7k†¹ÃŒÍ»T’0q ‡­:•Ó•ß‘¡µÒŠÈàò¤I<Âó0B¢ÄÛ×sH¼ |ØÙ¥)oÅu¥ ©¼hq4—œí÷üÅ5ÝÀݺÓ)YDîvªÞ§N-‡ãM«/O¨×Hm‘J_“jÊzIš‡ð’rC¹¡Â#Ÿk½À˜½v¬Œœq™œ ¿ÓÏÔâØ_^Þ—¸ÐÚùÒÚ•ÔéÙoFÔñJ‘JZ`--k+èS¬ lÏ]<¯eQÿî¿UtûŸƨC•8Ý7×aM/gÍŒð{X ˜9œ…XvÇUÑâ4 +³>î#ÍyQ¢#1¸W$òñ>¡«#‡\tgØõÔõðònA’î—Æ]´{`¸ »Ù7óœ=ˆ‘©Œœ³øIMçyœÎÇ-Ãfî4l!#ñ"x}O%J}Ëbì¤iEFvJª2…/ ô"\ݨT¹Ï_’¼šã‡Æò£ŽD¦ZĢߩ²•§JÓpiZŠ8^ £BÅ— +£²£Ç(»J—WÄå¼)ý$TÂ\T}þh";è-óá=­h»xì¸@PŠç",2‚,íïÁK]°ñœ¸Ç²êɧðÎÂW° +Þ slÐ{åbª2Íd«.#R^¤,‚›&ÌT¤ØSý!wí^îîÝÂPâ`x”÷ÎÖö=—ø8öÄeÝ$Up41ž\—Ô,©kœ I)¢¸xI•ÍûØ‚Ý5XöwÇû8ö\è³I*ßL„§hJJµšâ|B®.•rŸó<˜—d–IŽQÿ’Þ'ÙýÚM»ö$ïݲ)¹¿·WwæA]}ü¿óØW”ßë¬k¬Í#rÊ›•_p µ™r ñíÑF±+Çu…ÿVœ%mßïF³§ÿeþô{ŒU‘$^B³Ú>Êj;ÍjÈĆZÛÜjh*óKp]R^ô~%L¢VÙTOŵ·´ ¸£}ÒžÐ&¼:ÚOÈ‹ÈLŒ!œÝø‚ z:dž€5äF7ÌÁQ°Í U ¯ÀÞòØ“VÔü|÷jš±§&34-g}\° èèÄ_awΙþÀö ÷ h kkkl0t„ÕSQÁ ¯7t½ ¨ªø‰Í~ãL!è´@˜~FÇ< Ð×’ 7ýR¥%-‰óëg> »úkÊ4Òˆz«2ã•Yó$52‡é+Z[ÜŠ‰âÖ)ê”uS‹ Va½6#ªâ”ªg÷Uî;E}øçx$zÄmMÐøíåS‰œnKbW&5åY5ý¦ÄNN—Œàw›t›µÁð‡æTF g“ËW~H:6ývð8=x +`éêûäŸÅÐ6öâ °½ÑŸóòÉKùÑú­v˨í£n߯xñ¦y&Ôþlt^F:L]|ï˜Ë‰Æ¹\+8 Ø€¨º.½Ž[QYp¬¨ÑU•Wè*KëK:,´ ø͈]¥vãÝ©ÆaXö[÷&mâpÌÆîJ°üáåÓFÇqdyî@I_ôv ×Æ«KÌbâ^Lô…nqK–©1‘)1s*r×1*+-]¡GËJ ý³ÝÒ†ö¸»þ¡à(Ë +´c8Ô §Yâ4ì…™5i25‘7SƒO›#Ö»cÂöþ÷ûþ¾ù=O¾Ï繧¼Z£óÖ`Ù{8·¢j½C±ÎüÇz¾‹ž/Ì2žò°ÅÄ–‹xÝÃNý‰Þ^«Í€-Эà×- «Ï¹z,ÚÂoÕjÊ[s¥ZóµÂÝÛš®bßbwá_p B HuÒJ/×7•‘×挷] +Í—`~(ã¡u­ívê½£RÞFWAâ—w€¾åå¡eýï^‡u?´ÍìI°»/¤€)êJÌês“7f—œŽ0É·%(\?Âëi状¤\Ýù¬ÅŸ™ÿçÙÉXl”ü´è~·7àÐS.éšm Ñ[27Ð¥ðÕè%ÒÍw»[ºŸYCÝV¶ú:úªô¢_†ŠøiÿÿRP»®lû€2ǶŸÀ±Ü®¥fX{.“pÜù&ø<¸ôØ:åÝè{Êï%mNK¯Y¿ïôW· PÚr綔£¼· +Ïȇáa…×™3x ²BVšQ|;\MòÒøq!ò¨…³°KWÈÒð¤ ͳ &91’ŸöÚ=vÏIâYxøÒ” ù°ÂØ !¥ÑÈY£‘ÕÆ)v’m¢•Ðï­XùD¦ ¥L|ë ¾†$¥Ò—KðåFØ(ßß#Bž/ˆy·âØ>&.ªºf®‹5›»BfU÷2 $.ì×¹ë';eàép›ŽؼLÂÛàä9ùˆ³9æl'X[m=€žŽêb|,F~¬ +RÅRT›Šï&4˦9q(z‚¸kå? +ÀMxhì‡ëøà”_Hè$!* “9µ•æh–¦©­¶æØ8':¥N6m>Õó&hëë¢LúîéÃ>ƒ÷´sœÌø§ôŸA¢4ÀÖò1á|>stream +H‰´W]SêH}ϯ觭IÕ%L¾Ù²¬BÀ{ÝUd ^Ü­­Fœ5™`&àeýöL‚‚ÀâCîƒaœîÓ}Ît'/ +Û t `Æãlb´û…D‚ a´¿â¿3i´'öß''µ¨ãÃ$ÀòAQ¿ŽX¶ƒÖÇ +×3ƒ\²%K¡æäíMxV&me’\rñϘ„W^>A^>±ÆEž0)™Tg”S»vªmi81þ¨`ö#3ꓯàÁ¼!v»Ôêx8®¥pyVQUOŒ62^$`èŒÍÝ®o…N·»2¬q;’E-—ºxr25È`p±˜BÄ’EÁË•”y7ì1/²}‘·£y,NNÚ½¤\Äé„ý(O·çç¥îéé)œ úPû^ápƒ-Ûµ‚ŽS;vBm¼¦“æo³¼Ií[ >øþ8·!ÓjoµJZê :wO:f«ãË6[ŽC¨ù×ä· ÂÞuåû>&$¨LvÁïXÐœóBÅÅ£á{宦YTÄ…õóéS¡»uè~Í– [Ô =ÝŽŠâžô„`?ÀtÒû4Zϲý Ê.?<¦í¦K—<RoÛ/¯öLמé¦gXŽtþú½›5Ñ~uèÇ”ÒpÇ]‹†ágŸ‰²ˆÓ*Ç‚'±@5Í)O4Ü p­êd˶\×]ë±A,S.ã"‹3„ô¦,ËxÊÿթӪDŽv ã¢d³¢šÝA¸–Ó^¨7? ¬Ù²}²XOvH…y—ßÞ +E™PQn¬KV–)S.>J9þýº±Éq¥rù#ŒYœ°gÆæ\ÌàzΊZÓµ»C¹'ÃþõRÒ‹Þ¢h ÿÃ$yÆèçY¶ª"Ht„wN–[zŽÊ¸dò¸š¿ž}oP 3&¦LóØzˆ%›Â’ç) Û'Z{?Ÿß.¾·{ƒ¨AXO‹ Sbz„«´åSö'uƒ„#°•š]òÂì’…lÇÉË‚W2œÞ.Wbª7åÙN\4úírÜd8ùB¢ ¿@ªîŽú›WxP (‰‚ÏžÊOPå¡É,¯o6Ó÷ÙóvÊ…šÚ®pÕd]p´·Dà¼,qO¬W§íº£¬# ëÍu¹[!÷„>–ÍÕ …·qš®Cž§X3VÈO” +ruÑä*øŽ¨«×…P¯GU£•,YvÊ/Ãæ d9Ö§¼P…SñË–qºÐhŽÂE fDhŸØìåúõQ–J£³ÕQ×£Û³¯Ç-æu1ªZÈ{7.àl¡+˜òãÚ_õÔî¼àKLdx)˸XA’ghŒ³O4¹¨w©ZÏ]s-ŽÈ ¯`ÕZ5©*eðÊâùg®R5ù²ó.˜ê{£ªMú›ãG÷dbÚ¶MòÙdûÇ*ƒyÁŽ_C©:íÞöº“›ÛQsšÙVòQZnGƒ&»ß‡{4`K–æs]óÆUÄÞ‘í¶æM`a l|}ù³Òã?'˜Þ©>éþ`ˆ÷:¦ +endstream endobj 711 0 obj <>stream +H‰ÌWKoã8¾ûWð(±¢‡%Û@£ƒž¤³“Ý6ñ¢“Å‚–h›cYR›’ÓÞ_¿õ d9VÒÓ˜Ãø"²Jd±XõÕƒ_žðDìb2 ÄN ¾ˆ|ðÓ|p}ûä‰Ä_“äƒë¿¹2ƒë¹ÿ_˜óå`ä¹^ 托¸Q$P +MbøÆ *ÜÙ,ž‰ùvð›Gqà¸þpŽ7üÏüïƒÏóÁ¿Þ:ÅãÝSÅn< Eä†ã*·ä·O¸ãéö×çFâEŒÅ/bÍÜÉd*‚Ð Æ1v§ãÈ~aãÓàëõHu_lðtÿÕá.ÍÍ„ï‡n8¦¤ÛÄÂÍœ`:œÿ>¸~*eþáÃõ§¤ªe6Wߪ÷ŸïïÏ ?~ü(~º»GàÊÏ¿Àðù´a„FôÝY ÍS°ÖC^©ÕNG¾çT*wÚÈÝVnU^] É#îÔ¶XèLÿÏ®ÑE.džŠG¥»[‘ýTÁ¹K8Z= Çn†d*°ÇŸ4Õë›tm†3wæ*º6þn¨íBíØhF†AÅþÜÁ¾ÏËü£«&(Y„Âäæ%SéJ‰­ÌÙP+…¦=Ú‡·ÇbâÍÜ©ü¼é GƒðÇô XÏ7@âZøž5M|êFA0±ŠŒc6_‹#ßÂ4_Ö*ÃQè;©Ú«¬(u¾bZçËàCp ^œïÌ´9˜JmÍSr7ô§ŽbB-‘€ý•iö¦öWUØõ™±³¤È2•TŒ4OŒ|7”Íï@»TVRTkY‰eb¡DmԲΈOO7âÁÀeÏ–b«’µÌµÙ +‹2“‰p Y7ÚUkmJ½9÷[<õ/Ão¬Èû~{@ÃBV<^žÈ’ˆb¯ » Xh*šÔ¥ÝRðf°»’"öÂX£Ƥ@£’z§«CÖÙÁh{²lÆFÆvÛ¹í*:ýµc»»ÇkpŸHUBšŽ¶rÀ»iCºõI^ˆOH‘÷}ò³ÜƒAƒé)ü^( 2˜pÀ}ØHDÐ/ºZóþ‚V¥øXÊ1”uµ.ÀKZñi¸û<”Özµ;m6 þCç,Y¶Ò«\€9¨]ídn@&dƒãéæFô„M]ˆ‹H‘ï¹m:|çUÉѧ¦É1” a^Éb.'œY×4‚2µ—ä°2LTEs‚©tUã ¦Ï? ˜8è8*ÏQ@ŠÊMÝd¸ÒFx¹Ó¾¦.K€®‚˜Åâw8Qï•éÉoÑlrŽbEÞwÔ§6«ù‹T}­9]!Ùfyc:·ë!šSžÃIÇ~ÍòÖ2ken‹Ý¡9 Íö…næÅ^Ùd†M¬Íé-´ÌQ‰˜"1v6ꀃÎS½×) Ãh¯ƒó2†#:¶bJN1+Â0Õwä¥ERãsÜRI«”š“bg:¢4ˆ}„L8U/2…Õò˜c°bZ\e°›)¹Ñ¢÷)ªM匷Nü^…žÌ Ô_ù¾;v©A½¯ÁFùªº0Žqã_]VÄ]ăgòˆï +LÉ~“%LÁ0DpøÓ†8F© -EÔ Sp­^èçJ–Øf!;Ošì­ˆ‘M@˜ÁÆ-dïÅŒOÕ¹TGH8#Tý¤$C@`ò[¨ê«f”D®}]•ÇÓè2ÜayíŽÓ”?ô#Gâg…1 ᡃ³õ)Ú  y»‰f ~tËËÚõ»aòvƒŸ?5~èGr*œlñS¶Rt+ž$W-¯h7­â-[ògôylyËvïîÝ‹š–L::7‡ÓŽÃ[‹«ž3íÕ*N?’žËÐi»øhDâ]õ4ŒŽ„C +6²‘ÑäBÉŠ¼‹È&ñwb¬I¬«Ün!iØ Ï4ª„aC‚Éšš\Úòµ¨áUZ™JÀcâÎÆqØ&àˆð­,e‚Í‹} b}¹¢?eQd˜«v”Å ÿ“RÐ%ê¼7c=ßõÁê½CHÿ4î#Hš§W`pëŽ3û„µ)G£¨E6–m*É»™,ì>(ÛœNñhD±'/…ö=}z8Ž.Äq¤È9jƒÙ˜Q †Ñ‰.í«ŠºØIŒlØG]Ø·q‡{¶eFo]•vû£ea*Åû7yñ’)H‚ï7¾ô¢]bÔ€£µÎÒÆ%¤ Yë²÷}B®¼ w"$“A¦GŒf£³ÌðTU÷TíNÃ÷<†ðlMà”´§„á…”pVä{©]9æhe÷qbQdpâ²õÁè¤a÷xÙdOœPÍ8ÙÏ­Ll‹6ÆW.4d‹$+½êˆ8G‡ú&±²\5¥ºE1à ý\ç·F%õ'P™* Þƒf ðéÓ?‡H¾tù}í]J`{ßì6·†3çß¿ÒÐi¶€’/²³„òü¬Éÿ3É)0>v]yE,î@4½DŸüù•Œz\÷iQI:ðø<©Ñ’fCÄ}ÑV žå®\š–L» +G +°ÿ#u†>f¯dI#¤ Àj¹ ™lLU”%ÜåyØmþ/ÀEùè; +endstream endobj 656 0 obj <>stream +H‰ÌWYsã¸~ׯÀ#²h⡪©qÍØ3;“ÚM%c×îÃ$•‚(Hš‡† åU~}ú/Yvœ'ï Ñ F÷‡>~Ì<á‰ØD² D­f¿‰röñ~vusç‰Ì_“•³«Ÿ€ÝšÙÕ½ÿo&ï73Ïõ‚HÜg"q#Bp ¢Äõî2YÀÿbæü¬*±¸¸ÿNC(ÒG‘ÎϺ|[eÄ£nv¢jvª¯«L£ îÁC}{(è¤O÷³°š7w¨æÝÍß@§H<Š…øEô‡©çÆ‹D¡‹z-Ü´â/Üönöãƒé0qjY>±“uQ•Úð]qf_å:#<à °Ê– Òaêq§³QÊ4r•kÃœ¤/FÉ6ïiÁ„##Oa|P5{cÒ†Ï*,¢ í êâñHnyQ»7Ì#pÀ~²aå5Oüv± â´žSŠ F’ió†yD<Éd<”×ZæÕ¶U‚ÍÁPR¼s-PT©€@È ¼É¤.@?pƒÌÈäø£´~«Akm`õpµë!:wxƒh»—¾9ÞXsÑÔLñQ'hØîqLÇ´¸ö*§¹µ6M­W-ƒ1!ƒ'§‘QÙ<0öUb= U[ûlñ|Þ]5ÄÆÞ3±´ß¼ˆºSEAˆY,àýu‰˜Öò3.`Tjt0Á!RGÕ–¢*Ç«E·cWÄc6bž —Sl +ƒ )UÞ–„L“í*)Ñ™fl +Ô቞+J–¦·OÓV×ËF´Ø)”ìB¿¡ ºb§‘UÑï³lôæH 9ÇõÚîæíûªÁUF€’0™µmÁË4KÞçò4×qõ8ŽYj +hœ’ãÿkUT+ëÿ¨õ¥ýZ"±“vƒ W@MÀˆ|s¤ÌNv‘ˆx*â‰âéüô]ÜÔô²mv¶4¸¦èýÁªØÛb]¦êÒXpåz°ñZíU‰66‚mO…ŽÌð 4gpBI™¼=ìH ï5ùŠ9~µUþ »)@Öàýgìó#ï*Á5´SÄmT!s+n +ˆa;3_hkD±/9ƒ0­°/£ä¶´º"[LYduvú…LØ`“]ìP=[ì‰å°~í”1£œù¤,K› bÓîÙ¦¤@:©ì`n'‰NNA1Óè†RˆA¾/$×´ô±*Pl¯ =‰Ô5…IõP#¸ÔQ²¥Í%À7ËÛ5\;IºÑ™PÅ>¯Ž¸FTû=`¡-ù¹<ø"‰Ý0xûœmõx}ÎöÓqÒ†¯¤/€µ€ËftÌUSC§Ìÿ ƒƒO·Gb0<Â@áñšHÛ®À¯Æ®@ã²pȳ^ÿ7{•i,˜^™»3™ã3 0|½-Ô70`ÆÌuCh |Æ ŽPÍÐÃU}Ý`W`_äX΀´ÀC«¦‰)gÒ8{'äjYnÕ¥øòõWQkó`{?}ü•š ôtÀž†›Ü™úìL_0¢D>Q€®üîÜÝ}»ÂÈÀõñ”…Î ¡ _ƒÖà® uxï'X —‰»X¼9TIp¿Ž¿rwº/q{Zå9Dô<ö§å¤?e7mÍÓ”QûéIå8ô¶“¸|MSöLN¿$GæGcÔå¹ØÌmb@”U–¥"±Kœrу¨x“ÚƒÃ3á$Œwé§oï#Ò#yÑG_ÈHø1ô&"ðS?·ï)šÓdZüñ3ÇÏ +?mÿ7'÷l‰Ÿm/ùq*e7]GK†ªŸ3=›õ§Õg:·˜þVýZ²ê—¨éáû©äêÌAº·•ê¯J{Oî!§—–S%­ˆÔ0£ éȃ]HTsÉ}ô›$Ù®vÍäž9x<¦¥„ˆ!A]­~WTá#z‚æ0uñ¡¿9šIèe4SQ•žlCÕbå +]éb‹y:—X×s¡‚1&uvUkÀL—Hç”RÇ]‘¤jÜpê ì5÷-„Ba>Ѧ0”>&¦õR7MþÁœô_昂Hã  FMpP*8{'ã$œ8«j­í9Z/yeÅEcÆ“hrF…²$yzìÔK¶8^ô´ÚŽò¦ÍðCÍ 7@PáMêØ€²“®‰âÉm›Û,ØE‹°ÚʼnÓÂ檡wF‡ζtŒþ¥Bžâ’ìÉc â…-ý7G ëá½â1Îcˆ·CŠ%¾€¬¼Uì`äªÐлš» š^+òdp$¨¢íf+»ZÓv2ú–—LO[ªs3c3éUm\= ”Ó +ƒ ý¼ÿYÿÞÒ¢8åúÏ÷ÝнGÜŒKsª&°â j£«öÆ&*kU½±ëž/ ýdá†qôæà°zD¯G;“ÞŒ§,€²]&‘ªÜx˜¦î(¶4‡ÄZ]æŒ!H¡÷èê jhPv°¡ ü´«„‚#äвKž8AÙÓ¾yÀï™ZÐ_,ÜôOP¯³á‹>ÁÚy%ã–YÉCŸÇºEô²ö°›GŽn­e^mÛN½_ &U6…SúÝ¿FæѸÏ8 AˆmÕµ%¿n,QVÍ¥%³ªÍ»¥”äyÁ  /* +ˆ¬NôOԦͱÓÍ{YØ\É +çìÕѺÄæcêO1žMÊ`QÙ ÙÅŠ £L……ë65B°n”í• +¥PÒ9lyàá·/ÌX ïEh}èµXZ_aö*ÓhÙŒù¡µü†Göìz °#"Ë•¬1—“<ÕØÿe»ZvaدôØ^*Í?Ðá’=´º2øÿ9 L¨êQ,0Ž)ù”Pv*{Ê1Ö8Œ¯ù=ûX¿…¶ùŠm¸mìáÖ»àà¬É*#\G˜›µ„Æ´¢ámcZkZh|AOI¨=‰‡ç;z ËSù]çjÒWŽ¼³Î É4é.‰õÕ5Éð)z›<Ÿæø©º—"µ÷û?8WÄ +endstream endobj 606 0 obj <>stream +H‰ÌWÝÛ¸÷_Á§B.b­>,É.‚,î²É] +äÐf Üõ(h™¶y«ŸDíÆ÷×w¾dsw½¹´}hlÎPäp8ó›áÌo“HE*U,Õ™ÉϪ™|¿š\½½TÙ«X©¾l&W?»ë'W«ø_L®¶“YF‰Z•ª³L¡"røÏAT’„Ëe¾T«zòKOgy„ñt–$A4ýçꯓw«Éß_:%âÝ •åa¾LU¦ó%*·åooqÇíÛŸ&Q˜©5WÕ$[†E±PI&óBÍÃÅ<“Øx;ùí…‹F¤z¬îðôøÉá.ãÍT§aºÈ¤[báfA’OW¿N®nºyýúê»Ò ºZ™Ïîõûwïß'Q”¾yóF}óVM…+ß}ˆù´a†FŒÃe­6`­3»NOgq8³Q7¶×]­kÓ¸WÓ´Ô©Ûµ­ìï²Æ¶ÒÍF}2Öߊӷ>ènÓ«³ÕÓtæiJ¦{ü¦zzßfiº —1 Â·™ŠçpƒÒÔkÓ)°Ñ’ ƒŠýg'|pÉD¤I&@§@"OcàÍÍ'à›çÁ¡›Æ‹ -MßËÌÚ”zèpíVˆíÐll³nc*}ì_±#5‹Ã,¸ºÙnoQT\DA­BÑ)¦*'¶boìnïLŽå  {pÕ(£í.rг¥œ¹^é58µmP;·7Ê»RÈ{rƸ1õAÂÒÿ=ýúoè΋À³÷>ˇ’˜ÖÛá¼EŸ½Ú=1oQé)ð(-¼I9äÆî‘þ{_¤¯œœ/‹‰(FäÍž_›ü>OŒoo™/uC£m@—|0Miˆ7ºÜÑ‚a»i1^KzT4bÁ™«?Ã)ìÿ(šV»1ººn Ø|C ÿò?ø·Üøn‰¹}¾Ã¼+ßzðtÙûË}´ÞÝÌó#·ž$_#ÿæ|‚$ÈíébÁ¿n3™òQû“Æwˆ‚!Óõ{{`–FÍÃ92QB:„êhï_xîœé‡Ã¡íœ|¡ BèŠBˆ–ìÛ¡Ú0ÍàÅP7¥»œÃ)ÿ^÷mwpö^øRtiÝ‘9~ŠóòÞA¿bÚ6e5ŒOF4ç‹'áÓD”²½²µu´37Î|hxä|?TzLB/ê .5÷¦ê™f ÁÁŸge[¯µ£ƒ¦eà,¼\ Ó'Y¬'X´—õ¦:±qŽÌxz-ûû¡'Uƒ‚²£Ó¶ÑëÊPá(~®†Ý^f˜¢¤~AÝ­„,Á‡àžB¬›ßÌCTQâiÆ]/¡êñR'™®í‹$º)϶ë²l‡Æi,GÝésÕ·¬8¢Ùuv=8V)K ±l%!Có§—ŠX=l$¤|¬KÐW³R(Õ¸cšË[ôàö-¸Õž´¹ˆ + +—î´ãSWHõþËÍQ*Ei6¥™ß:ÌsHi2ç¢4ŽC*çÿV醊9Tdc‰*÷¦¼«lïD±¯.€ÏgeI8_ŸµB BQÛVUû@Ï)û2n†äZj†^œNç=ÍIN–ͧrœ`›;ˆ3ŒØ<øyšed–v ÍkC럃Ø|ÞCÕbú ýP׺³=9'—¢­µœÇ Nj.Åv ÐA[ÃHɱè*&¼€ŽI¹ ­lÉòk}祭G8§“c†ÐD8œ`pnÏ}\Ì®ˆÏŽHóp¹È–'§‹Û€ ÓûBAwt©ƒ¤n‰ÈUš/Â8‹UF‹9ôqyF}Üö¿k§¾F“§ˆ[„Y’£")wy'eã0KO½í/Ÿdq˜XSÄáôÝHµ4˜fðâETžA© FŠ] Š¸öóÁtŽ%Z‘²ç½ÙµÎR@iôB -€QzǪÑãÑ+HgT/Ÿ’>7l$”îZ%9RÕÚ­:*Éòðk:æ±ÏæÑ7â3Vä‹>ûN®ÆE.k¶„æ”À3±“ü:EXÝ™}[m0€¸’lîÛJÞ–ˆ¼CU¦íË¡gƒ²ù ¯UtJììd/;ë‚=_÷ê\˜•öÞVàÍÒx¬Pî£äÀÌŽ3~ËYF7¶g9—Ü'߈Y‘/ºñ¢)‰ƒ)¾È=©ŒaFÓÿøðUÇÙ¦ 74ËÀ'ÝœÄ\£œ¶ÂdŽ׿ŽuL"UîÖõ”@R +·?wß©òÚ¶c1s­ž›?ÌúM˜_ùŠÌ—ÌÅ0>jrzšâ¼vlÑÍPbÀðTKÅŒ£#gðxÑ[slê98ªäð²Õ›ßHEþ¹)äúÊ‚ž32ò׆hŒ`ÔÊ6^€Å}UE£Ÿ‘^yÈxÀ ÅTZe ÷»E¥ÒîR™0ƒW?ÆGÆŸü¶÷,kžcñxMŒ§7 hhÚð‚èsà0Ö` Ëáhºš—áÍ`nÍŒõ¹ñ?Ž»Øle í…‡Z$*r¨í´ê!Ë¢Œ³ÙUm)Q_³Ÿá)ùFŠQä‹xú0Í‚~jZ5Œ-üøYø9á;áq~'kµðá Œ÷ðÃù +~ƒÐNöŽrqm)ß:O¶ñdµ²ß úEO'kë'òKïìJÖ_Ò“ÏMR2*¾Å‰­w[÷Ä*Z$Œ›FË ]yÖ¹“9²giŒŒ±ö8­?X¬Þ’‘M枆zG#4¼"4Ïco@¯;Ψ ž_n<8óå’¥™ã#h<'„$§º†ƒ4\×ÓY¬òWóqØN—Ù©˜O¤‡ëÚ]§ëzlãÆ#N²c‘ÉÄ ã꽡bæØèÚBW¹6p?ÃÍà@íÖÆÔíÚVöwM 1³<Ïè1TrËâÿ€¬ºÿKo!ÖzE!í‡Ö—-&Ld«¶ÙÍ0Ý1 ¸`‚ŠKÏárç¸LÄP±uµ¦ŒE½uFä©­._hù~ƃ3*æ@xuGgRÁ»ðžÆP€}Ö'=þÈú÷dΧ† +¤½! ³ÁNö‡éP™ñmÂ/GN¥š0cH×iK6C†\ó¼ÌƒfÎÀêr V‹ÖYê3nü ÃÔcÃeˆ??ªÀ@`KÄ<,bYý¿™¯‚åa ú+9¶Žˆ":^ÛsÚ 1jF Œ„:ýûnvSxØN½¼Ù}Yö‘°ë}žð¹Ðp5UË%VX‰Fëºw6ðÝP“ʹÿ &‡ñ—´*¹/£ä;у®µq]£ª«r(BåsÏì7‘i>(ÁLÒÍÊͱ¯«èÿƒ²ÔP,]åtØÐÂÝ5},å9W3ÔÖѶªÃN3)†ÕУˆ6ÙÓvªèdÌ•ê´ Iž~%¹$ç…¤¯ R|2/Ê…ZÎH¾Ù<—ƒú…OúŠÑ3ZƆÑÁì9þÆÙ+ØÆ cÇx¶|-Ø(à—ë°}ÀsDÕÛ.‰á÷7ZßçËH¼gìarNòät`ß6°¸å‹Y!Êï3!|Ü0fŒ[ÀMÀØzÐg–ÈÊl dÔƒ½f“èó«ã[´I¦ß <-\kðò‰æ D~#˜äXP½>PŽ©‘ñT•-î¹ö»˜á€¼ð~£½v¶µõÒa‡ÉxÖ} +0FAP +endstream endobj 57 0 obj <> endobj 58 0 obj <> endobj 802 0 obj <>stream +H‰\’ÁNë0E÷þ +/a’¦É ‘¢JЂÔÅDáÒÄí‹ôêDnºèß?__‘Ë3ã;“›­·›­f›½…±Û¹Ùßw/¡sv7‹ÂöC7íÒ·;µ“ÉbòîzžÝië£i›½ÇÃó®öæ¡÷îÖd¯¡waðG{ó¹ÞÝÚlw™¦îäüls»ZÙÞb¡?íôÒžœÍRÚݶçÃ|½‹9?×ÉÙ"íÓ½;OmçBëÎ4y|V¶yŽÏÊ8ßÿ:/s¦íÝß6˜¦@pžÇ%òš¼oÈðù üLŽÅ›åC⸘¦\$ŽKä’\‚™["·â]îª +r^’—`%kdaMAMa¼ ^/ˆÞ%¸K*r²€YSRÍ{ò=¸&×`ö"èEÉ`ÎD0áL3ö%èK8ÁL”=*zTjVhVjVhVjVhVjVhVjVhVjVhVjVhVjVhVjVh®1«"_ ¦.Èu2Àן†¢cí·ÏºKÑbÉÖÉ[pÕàÝ·ó§q²1 ¯ù/À“Ëg +endstream endobj 801 0 obj <>stream +H‰„TkPWîfèÛø m“8ƒ=£Âª "ñ­+¸ŸËºEDGiqx 8ˆ)‰šìCØ€Æg´Å6t!ÅC!¾ÖGHеP¢ QÃj°¬:=¹°µw³µù³ÕýçÞ{ιß÷ó]šru¡hš–GF¬ Ï´LL°‹i–Íæ÷ÅmâÔµ[-I‹¬I1ΈñªžV½\ñLùËÎ_|˜qµ»~XÝ¡ø­¯¼†Ÿô \hzoÎ"kr†Í»5Í8yóã´Ù³!1ÖM¢qMFjš˜˜j KÚlµ%[mæ41Æßh IH0®vƧW‹©¢ÍNva´¤ÍÆ4›9FL4ÛâÖ-ÆpK’5-#Y4†,5š“b¬6£…ä¦nÛ”j‰±˜m1Õß ›¢hòQn5JCé)jEùPTEM£¨é45‹¢BFSkܨ)„>åBi(j9M%Rû¨#Ôz,J惡D¸üÕ¥Nª)ÓtºÎs-t½ÄÌa¬L!séGîÈ‚*Ðv ›Âv¸qnnv·*·gÃü†­Ñjq¶ºvøôy\¹lV¸•\ sDó#)³O Úð—x[†`a«—¸§ÓæõÑÏÍsÏß¼0³Z#IôuX¥¹E<¬’ð*ôküHJé3#-ö.¶;ìét6Ôi²³ø¯;ìÌfgÔôy‚¨`^A8ÎÍD"lˆfÔ 6!možäÐIô5ºÍK‰wè` ³&b+¶†OÄ~<ÓÂÃLzÐÞ€¨›È¦3õ–Úv‹nT ]Ñ4A¢‡W> 7¼˜&G´yÀ+á/F[EðµHÐ1xQ­¢¹æ©@ èŒ¹Û +£Z“a8ž[`ÀHÁÿ桼ÙÞÆ<|Ñúí=’Ü)A³äA’ë•- +§:ó;Á{|¥á=Öü©å€]¨E'ö­ÒÝeÿe¿‡}*ä³Ü«'ûëï<ÕçüK“,’ úxh†wÙG«MØ+(ežA{%KrIg”$”…»Ãu·B2oþ-9‡Ý`60Oo÷*ò|À)aüY†k¨Ø(·é@sçlûÏÕ0 +‚+ïâw°ë¼PÌú6¬/tX®»ÝZï¯ ì½òûA gò®ª=WéŽ5Ãó‚@Ò3Âã&0D-½c³aÝëÕ8²2# «' «|48Œ}>°#/Ýã[Å|™;Ë-ûVÝÎ;'! Uœ:òwAb7¥íHš¯ÓÆeIVIM”<¾Tl2ÄË\ü ŽçïZ¯cVàNcmÊ´PƒŒnmêºTî·a¯=:KÀLÃU…¤ÇGÏÓÍùzyÏ÷”ÆR!qiqì¦~^VZð·"á$ûñžr³õ»vï?bAÇsU6. +K¬nþÇ¡ÊkeBkŹŸ¬K0fI¹v5G‚¥ée(R¸:nçEOùgRµ.ô`ù™®*``LM„øí9–¨5Û 9P)"Á¾ëÔBòXMÅ”·ÿÖ.˜ +ïžkýÉà䧦J´¬@ž¢vø=“]L¾±­0|+»{W˜âIwdŒÆvœ‚Cð4 Ó¬?º:á ‘:E²tyÊŽhWæ o¶ÇÔ.Òc>»â`W‡gTa´wj”–ƒD\3x˜~¦íqÛ…0¼0WÀS·N÷÷N +Æ +ÚYì“`ƒä,](oU¸WíÐÀ7—’ûÝ€*Å”Ÿ {Íß܇ÝñðÕ“q0^"aÐ œ +ë_¶Dä¤D>m.u +ZœTaW3%˜&Ñm²¦ÍSV3IÁÝèâ±ÒÓŸíÏÍ)&Ý/Ø•™—¥_¼mà +Cp¨¥…Õâp |%5VÊr²Ü!Ã.™{Öe<,©½Òy¿jöÃâL~“­?NàÚˆÑKxqÏ‚sØkéfy© Éx žˆ'Jx¸ÿxòjM©¡À„0½e]Àõ„X”F‚5¹ØÆ‚§Ü JÈÞýÉ'ÙøıJ{]9Ö‰gÌZôè%,ÀµL-Âkà>™¾H& +a;þŠÉQ-C`Ñét“¬iœ¤û +¢ã%¶8ÿ1^\Ç%Ríº_yûþ­£Qó…þdÉ>VnÜk¬ ýãdõwìsý¬Ù1+Ä=BªÝc«Ÿ£_¾>ö; 9Ä÷DvH.RxP-®õÿÉ…¸óm$­ðW|¡hÔw ”_ ¸c{[ÈPùb“„ÝAo ÜÁ$˜syì4iR\7ø‚ét÷‹§ƒ°‰Øa–³VÖ“ö^$êÊp2ýÆ£[ˆGGyq?Š¬Œò\ï -[êãy¯½*pƒv5hqØÙqß9©ý€V?èIÛÐ’W V:ÛC-&„FØá-Éã°œ¬@”L^äg¤ö-u$ÿ9{#½ »ÍZ¼ì´x3Eà^¶&0—ÓÊ-Ö­Š_· 8±ñŸB™˜É¾¿"ø¨ðçý“*î…䃊{õ?óYù¾³wüa|qâ…Ì?ØÄv³}g«Õý“ Tªñ#˜PUÀl= ¨‹¨k7Û' XÞº‚S:ãŒï·˜gˆ+'žï ß97°îbû­ð}!0‡NYËú»XԱư}—ú=‰•Ïõ·ËÚŸºP×ù:Ib¸ÞŸ%Õ!¬îåµQÒõ-==µò™ì]3ftÍ>±néåùòßÍ~¼ªã3î^û#z-㬭ßs·2Ïû~díïYlߧÿˆf]û{sæ÷NößÓÿD³òÕOÿ7ýwüôï¦ÓÙ¾/ôfÒŸ3“Ù×rmäþÞ"òÃJ À3‹™ +endstream endobj 448 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 460 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 475 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 516 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 549 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 563 0 obj <>stream +H‰”Wmoã6þî_Áòa­•(K¶¢Àn¶½´Û»ÆE?4‡-Ñ6Yrõ’lúëï™J–ì‡ &9"‡Ã™gÞþ˜E*RY¬Õj£Ucg¿ªjöq;{w©¼U±Rm^ÍÞÿËC;{¿ÿ¸ÝÏ¢0Ò©Úæj¦Š˜Ð¨ÓUkpÓ:ܬ–ø~š?Ø'[ªLÍ·¿ómÄà‘XÆÄ2øÁUæ`[õ캣ª»£mÔ?›:·mk[:C—ÆþRº0`Nßmgÿ1ïîIÌû»Ï)UÏj©~T£ÄÉ: +³åJé$$¹–áRÉ/^{?ûã+ +x-èDŒé““unôz}õd5È­o”…I”à䶘Ÿ>ý¬LU¨{›÷ë^hÒÕúÙîëæôÖËßߟMõÍ7ï?ä]oÊ­ýÒ}óýw߯£(ùöÛoÕÇOwÊßýݘN¬'á*Óþb2sob(-½¶òÔ´ãCS•j Zl»3~(ßæQ² ƒtî· ›/2„ñ|¡uÍÿ½ýÇÄ`\¥i +…¬„åZ¥Y˜mÚrC¶ØÏÒå*LV ›V$Ãmü/›ÆõÂËŒP3X%M6*ÙÄa”âH¬Ãt•ª8[‡IšÐáÿ§í¯ÉÈŸ'¸&J6Kµ‚nt–Ĥ”ß‚ÊÚBÍq¤ƒ®öÛvfWºöèקº™ÇëÀŸ÷´Úîi åµì)\e:WWÃI›MåÚSzÊö8ùåó°É¼ø™Ï™j å¾¥Ø,‘ZÄÐ÷Jm?Aò3_X?¹ã40ü{-Hu`¢ì,eË£«:Ûˆ´¦dJÛŸÏuÓù¯¦<´òìqêKòâGs>WtGáþd–5ÙÀ˜©Gñ‚·ð¤á Þàêo[¬W!òsW=ÕåÛ…W2’ÊÖʹ¿¿¥@ +׌ Ý“ëœõL'ê®”¡íšù:èá§beÏjgZç70èMÛ¿È…­:·‡y’$8˜sË–ã®w¥ÌÚ—Ê2Ë@{r¡•%k ã@ÉëÓ©¯(ÌÐê!h­ì¼xrßõ…|üXÙöË!þ\`ïöÁÉûÄo½) v¶¬ŸæËå:øp·[6'}'Ƙ÷UaøDPZ¡Õ{´Ža úÝp²‚æ:hIÖœ+xÆ/¦ C#ð#*1ùq¢bVf¬I04éJûdˆ+çºtù O÷9Ùçºylyéd0•¬N„èáÞÐx§ ΓÅ#^;qÈTöØQ6±¡œ|‹&6šá„åï–¦P‚mD£X‘F]ב-ùXã7¹“+M3ìyF@£ˆ,÷ÃQxÄ{ö’Ž"zLÅä˜"îÚ¸]ßYZŽÓÀV`–³X´á((µU.{Žb‘þp¬ûŽ(ÞD¨ùÄ[ ÓÒž`ßAIið·ú•C3_-ƒw¶‚!` ò´ýþ!JV¹cXÄ°s9Gž )eB"b¯àaŒÔJ®‰e&´ñt + ò2ä5'ã*YK`Ê‚Gû£­(¶3²`orT"Ôu|¥üNª†,>tàþWçûz –ÞTq,)óQŠ<·ÎRIÒìââÞäÚÙXøâ®ßØê€GUô²>‰4âÁòcßÀaÝ¥„‹(;^DÙø¤Hce¡Þ £¦Ë$LÖ«L’âßG.ïæÉ*P¤C`ô`UÕŸvðI`Þ‡-„À‡.Â!SPÄñIe¶F„ŽÏuL’ÜEÀ/Kp´mÈ’@2”PÙE¬Á(^’XDûs\óyäÞªŸÎ¶—-©‡à§Ï¿||˜£¦ÈëCåþ´Å×d!Ö\.@~ñê\%úá°Õ´Ê¨½CôTˆgoˆIp8|RI9X5¹Ðèzröß.‚°5CôŠ¦«.YNôC?Û#bà3n.êʪ‰ö¢N,¢äkÔ° ù18—¦"Ç"ùß,=¹QC¢n©–‘ØžD)åÃ8z ÁëªiÛ®IsFž:ÀìoÛÅ™ºÆ܇–,‰‚Ý‹Œ¬Mš°:iâãÄú‚š³keáü¹Î¸R:ë÷O@–D×Í–?+žÄ—·ÅØâµÜ…S-w¯ÒþèKˆÃ¼²_zùÚ¢É+ žîdŸÇ®"·cz,œhþXÕÏ(â²ÒWíž0{HaÜרu›·ÚRJ¤Â$ 8aáœÌÚ¯ƒçóÊ\ûä;&Þ6`L$ ó„_È»zJSd¸– "fO.·o¶¨(¤ZCÕ½hÑËè’Þ¸ÒàsÞyA`¿ø¡ìD8ZS 5C~â€Q²²e±Ø™Ö³nÚUyN°üƒ«%"øžãè4-k¾=»XóKz‘³5†Û£ÁˆåÿfTï~·Z=£!`,®‹ÙK€b¤ƒÿ^5½ Ã0ô¾_Á¤dîÛ$Ž›vä’²Të(-¢åëßïùÙ ¥LâdÇuR'qžŸ<Є‹„sM]3E$ÅM.Ð"¿çÒIRIú+R%ÃL§ÿSVÅ·Ú!ܪ½œìæzë·á²ÒkO„Ç6­&©E+U°Áü-3š:i{)ÙÁª_…Ðës0šN•‰7Cã2yè1u]VƒQ¯±·ŠWrO²ÆÎ@̧Ê„cM{ïžüc™ÌF/s7SFõi}†¢˜‹ˆE-¨‚2¸&&É€Á5è …$A”ÄÜÑ lˆÎpÞµ°1â›X‰¬Ž¸ûl«ïUÊK7Mž¶}ÕÙ¼ƒÐ¦Yä3kÓ<ZPcI'.K,"d[Z’¯ö¬Àë¨uf¶EÏç‹Pªüb_)b‰¶¹w… ¶elA%»ÃØ9^_Ãeb/ô !õ]-!»å¦LEÚ°ZüCƒéÇow! ‰Úµ„,úEY ýÌ£ÛäÀ(‡ Qåå‰ +ÚÞä°¯B·P1Z£Éc§™"ódË¢¿âL.•ê¼Uñ+‚*†S^Gß3+århœÖ›û•»9` ­'ôÁfjŽ61¨ü~ë÷̼¼©lqsPm.”m¢9™êOÄœW%–ˆ¼\cÉË”"œ‡@•Ä ¾èlßT>è©‚Ëš°¬] +ÄÉgu{ŠÚâ IÀo_OO \³Mõ +endstream endobj 26 0 obj <> endobj 27 0 obj <> endobj 790 0 obj <>stream +H‰\”ÝŠ£@…ï}Š¾œ¹ü«®š€2É äbØì>€ÑNVبs‘·ß>ž0 0~bwÕçÁ2Ýîwû¾›]ú}šC˜Ý©ëÛ)\‡ÛÔw ç®Oòµ]3?®–ÿæRI7î×9\öýiHªÊ¥?âÍë<ÝÝÓ¦Žá9I¿Mm˜ºþìž~mÏ.=ÜÆñO¸„~v™[¯]N±Ð—züZ_‚K—m/û6ÞïæûKÜóoÅÏû\±\ç”i†6\Ǻ SÝŸCReñ·vÕGü­“зÿÝ·ŒÛŽ§æw=%Uþg™j!Ëc‚»>|~eÆatqŽä¯v‰^ +endstream endobj 779 0 obj <> endobj 789 0 obj <>stream +H‰l”}P÷Çwïn÷ŽdÝ›xGn¯‘5܈uÖS±¶ø†€·TÀrÈEEÓ4© +c'´Z­ñ¥Íh¥¢†(áÄà);æßP Ð&ç(Æúìù€éÚd:ÓÙ?væ·Ï³¿Ï÷û¼„JA$Ée网>kaìl~M_Y²¢p>¿ŽŸ<·äÍâÊôò2»?ä'’‘”ô*œϪŸM¥^%ˆwnÃê¨s(<¨ËÔ}¬ë I q„ ¹šº5´)tdLˆN'•Á{†Âú®ey˜ÌÞ¯%‰ ">¦kmï–ÿj£f…ú¾gφ²Ô:,ÃiUÏôNRp+!Û—ÏFc|1Æ g@® c`¼©…N†pâÀbK3ÄÝ„pÓy@¸•M8—}ñMœ¸bˆ‰†xS}Û1-´ð—Œr^ÝÙïQöëÿ/Œþ Pªì‘µA© þ!>ˆð eÑ:Ll¨òU9Éwà´6ûV±¸m¤ŠhØæ«¢tÇßvùyB„}¢ò Í™ÅoZ™ +ó©<[õê4C±šÙ±ç½¼Hç–{Ó.H‘.²VªU,(¤HªžÅp$…ϱ‘õÐ`§`;݉vÊC㛾|j†œZ'ÀIv agý&Éhä‹bAE3ÒöâII‹–¢‚‹¤m*¤åJaQl¬m*9 ¤­6òh0ö^‡1÷ó=S?ôO”tewó— ÿ¶]E“ Ѻ[o >­æ¡S\(2˜ûÒLØÂbÈ{y3-Æ ó¾‚°ñÂWCóè^[f 'Òý'`ät¤°¾D +"MÌ}{}¦5p:¯¼J ¤Œ|VTžÕC* öÓ +›`S„¢ÃTZ´±ßÑ`>—›±zAš¹ñ´îýÿÊ%_$~/`;œ„ýî‡]Ð"àSZç}[¨ª‚.οd^æbZ¥èb«Õ8#'!öGbÓö¯Öô?qÈ»ó¿Æpãÿ2sLk·xúÖG\=Íl@­K"p½M­»%×K ÃéWpXTJãõ¢/ߊx:¬#ù"HpXÞÞ òÄå;I·¨tкU²•ñNr¢rÌf‘sç Õá“tØ:|@´½4#£âŒ×ô¡U=:´ùÎjE¹úw@«ð¹¿¶HñP§©,ÿúÒR5’ÖêoTÁõ2†lóEɧP[w[êv“D)ST^a"äÞš7!o1˜ç‹ êG"dÀSGtTüòé(TÊ^ÖÝ“þzÏ/Ó5JàSÈyGT¿,gD!Gô)¨ùÍh“²á½¢Ò>ö¥…ù%PÐ ÓÿÃwõ5qgñÆ]@eNÖ &ç®mGéØFjuÔ»õD(: ! ¿D(hQÎñøƒBµôj€Ñk{‚¡XQ‹¥è¤ ¤ˆ2âù#zêõ¬ZÛ;½Žosß8so7xçýÑ›ÉLöÍw¿ïûÞû¾Ïçó4dÚHyYw˜RÿÇ}sÉ6²-nîTåN1’oîŒÒûPf”^VQ? ++§QKÞ™Ãë{Ië†þ§Ìíú‰vl‚‡°±út]€V Ü ˆ¹l×a,¢èO³Ihç0U¾óqîþõ“®Pë›?:^~Â~mâNµöì[5Øþ??lÈ9«7§®3ÿž³#†Qùªž;VjÅ\ýÅbYmëÌkÑ Ó!oÃ^“R ìp«pPKâf@ ܇80.½O‚ü­% Ã|WÏ… ®ù–l K–Øz”["…0OöRú£\$J+ÂeÙÛ‘7àGh,“à˜Ìœå›å¨=ÆëÏLgò÷5®Ãmì‘CÎÆ£úžîUÄÊý¯?ÌÁmùôáµÉNÚé3›3OÄèIp²Q+m ãX÷^H1Nƒ`íþ¢ç¨sKÁ!öpn-BG’G𖌟s°vE¢R;æ¢\¸ÛÔ“¾Ó{jËíµ¬H;ÊÊ*ËôqËóÌåÀÛn™èd¥n¡-b²F1]d¾ƒBئ=WxpmšÎ¼2/6fõÉkì>ÓVšŒ2@® ÷zÖñ‹›PCf·jLŸ–iÓkj»ÔõyÁÛl±¸Ÿ~”~6|fL&Q%5e^)À°R?䥥~ŒÞÕFµlòÚ飯Fp~TRj/ÕçlÙ×ÎIãºn"á~”*”Ôü¼ :z LÞ•å\Mß8eVÞ¼H@D/Ítü&Õc,h½ÃJÁ˜PtÅ ”]¤ªI aƒ8ßIͲž¼äË–$XÊ–Þ¨¥QU+]TÃø°!ê)5è_¾f•HÙ2 ;5Q¯ÿç7G+ÈT톩á A^…&˜ µ¨n¯ÜW `2©%¯’&£@ ›5!Ñ$Š÷N lö´Å)ËÖõŹú’’ÊÊ.….¯¯/oÐ{>?òÏf"¤!yd Ÿehýd‰­×Oÿ_¾¡VPUH;Õà°J;:¤´Þ›QOlõ`¨ÇI­únµ¯«†æƒÅÑP6^2jÿ-ÀÖ²Cc +endstream endobj 548 0 obj <>stream +H‰ÌWIoã8¾ûWð(7bE», P@WRÝH]@w<èCe0 eÚf•$ªE)©Ì¯Ÿ·P²â,@c.¹û[¾·ðïE ‘…‘È‹Htjñ—hŸ6‹Ë«Û@”V„BزY\þ +Ã]\nÂÿ0¹Ù/VDbSŠÜOS·‘A›ÁUQäEVˆM½øêeËUy~¸\E‘,ÿ½ùmñy³øãµW>½iægE,R?N +dnÏ'®nñÄíÕ—Eà§âA$âw±H ?Ï×"Šý(ÉE⯓Եpðvñ÷+‚Äz(¾ãëᙌ Ë(™ÃØ×éšxËáZÌ‹’åæÛâò¶•Í‡—?—ý «úÑøåó/¿DAüøQ|º¾ OàÎÏ¿‰„üê0E%†~‘ÁC›hë¦éÕ¡“ËUx½Ú‰kmeWËZ5ýÅ2Î=q­j³Õ•þ¯Û£M#d³*=?ŠÓ·=,ÈngÅIëqœøY“ª@ÿ§ªÎ%™ë,Ž ¿s‰0 JUoU'@G) |"о!Xwš_¯3Ú‡X #?ÍáÒ óóŒ˜þô™Ž˜é0pÌ¢^’4y”ûQ‡ ÞÍQ‰eîí”Õ‡æI]·•BsHÒ1Ì ö¡ëu­›Rf- Au¬¶CÛš®Gro:쮯ÿœ½½¥‘=š¡Ú±µV)uúq26¶À ض¬ŒUÕ#Ѳ¾&H?èþHDC¬áË0h;m:Ýkeù@ÛKÙÊò4}çYÅ·2?” *+feEà`ÉšA +¸?iÒ»ãL<¢(ÜæülóWïÄÇù#~–ÇîØúÙ±»¥O'Õ÷ª!ª?ÊÞ)+Žý$ ŸhK–½¾wF™WËGê;©­"ª4M âes€D½¨Û«n®=Ü$u’g¥;²§î¤mX¼‡6]úÇe†¨Xañ5£ìS &ί‘ó¶¥;Œ,Á I<áHÄt¥ce?Tˆ˜Ùw$v>Ñ7 oR]/µ£¥Uö‚È»(Šwê^U¦EÃ0¡y¦[vï$!·B˜^×Lgñúwb?½¨HÎóaÈq9<åÝ,ˆ|PI!J¬§ãÒµwË1U=1bÕÙ£n)EžbÞ”u7ý3‘æ™_XtëÒb–¦\zü³ s.Ð+5Bùoª +— +JF:3ÈrŽŸ˜sçTD„(×cÅðBµZ®ïQ(ÛK¤¶à±ÇS|Uä𸚹¿°%(œVfìC¤¦”ÒЕN£sLpÒ¸»`§á<ó4Ð'€þe~ÅMc{Ý8²b yà’»¥€ØAŘ0Ip³%Z]Ùl¿) íÊú§²f2`RøaZ¼2?opÄ­3èÑ îëìó ãeg¬]•‡:û]WÕ V›´øë2Æ`1Q€“ +ôÕÊà#EÁ€Ç¡–ÍÜn lœúá:rÜ “VnÍYá×)k†®„äBåé^7²)5˜.&6êT¼n]íõƒjvUKÚÁ „üþ‚=#x)Lß=™Ÿ·ìy³qõþ‘{fÀ¯žª[ó’O!ª£ä(P=!Ãò(ë=ÑäÀ/ض„,;z‰Ër>é›ÍQ[᪆­zÅ/È #ôÇÎ ‡£€’ \±f£´h§Ý@¹ aÓ@î°BZ¨#,Žö5…¿„Ïxn¸¤ˆA'á»1œãçÍH:y"H;G¦ÀÄK!¬Q2„rêºcÏ Æ˜àÍÉ}kvS_0¡•’;:q„Ï”P‘º7³Të© †ðTÙ²Å'Ęi;zú“È]©´T&>˜î;²1âÇ<‘ +.34.‘ÀOÒ8TR/8g’¥~åïÇÆÌÏ[Îyž¥1òœGÖþA7}ŸGSWÚÌ4©~´PYÛ²#)NuP—¹e0„U%8 HÏó^o^ñÊÑ&ÜÕyøÉ“M¯! ¿Ÿ‚Åñó¦›}¾—ÕÀZSÓÖô` †ªü¼Í{RZj¨È±$=7üˤ¨„Pð¨þ´«AR‚§^Q={,žÙ19Å×çú?‰ßO½áøy³Þ€Á +c1ÿNå3ŸàOûUà1~zÎU?¥%ݔՀ•¶3÷S‰×ñÏH(´ÿ©ÜàOÏ$ú‹L¾…ÏŸ>O㬎“à•ïCœæËÕòÕ á›zµ>µ‘£CÌeHÞPÛPÛS«¨ífór¶ª©5ÏV+jùNKí@m;kÍìæþýˆEš~ƒ`Y68'Ñ°xž­Y´Ÿ1T ÊL®tfú(«J5ÅC¨8˜À¤CÕ*H`~!ÂýK/jt6œÓ®Ç&öS™JW´îˆ,㇣âo'Ç0>š…¤©ƒ%¡`å¦Æ/† úŒ®ÒÜÛjðç¦T(|p?4øƒ8¹~x;_pÿ(Mü0XÎý?òC.®¦@°ÎÎÝ/xÃõ¢8÷“ ŠùÚ›ÚáÿžÔ?š'%÷cšGº6““à©Ñg^mM¥ËGÞ(¿3DcÞø‰›ŽkŒ]!¥öò;ú#Œnˆp%Ñ„èõcàm[Õ?(ÕMOà{Ðc$âÓ#u¥i D±ý ðA4V4@ÄM;v=òqÆÖy¼È½NÛïØø7iHž| +dùÌ›p„²ä'EÎC@Î|;Ï9ªå£²Êìžz‰Âß È·Ê³ÑW‘ä0 yôàt„“±ajûȽäÎöü™ÆÿúÂ=ÏVꂇnñØTÓóøÎYH‡ø»¥Û9‚å0Ä‚ª-ʦ¯>Ù¨+Ƨc{]/w`¸3 ÇN Ÿº6^ѪRc-y,;(PŠ«š¡ª˜¨Ñ³È„üFÏù•C4iÄÿH¯væ¶a¼ëWhtîbž$R²5ç:dé¹çŽ]hY±ÕÓÃ7þ÷ŃR 3íÒAAâøéÕsOºš˜ +¾šŽ¸×”’aDܨ=pײ°yÇ#b_¼±G’B[¿[D}²É¨æÃÐÃ2a°êÈêÊÁWÀ“»sl'ìØ=²`N‡Ö±€^´;ŒñšùÆÙãÕ§ì|Ì:oM{œÇÓ¹5® àèÛÀ¦g‰ÒE¹H­;vN7°õf»ú‘e)•}Àd$±Î߯ñ‰ ZŸûE(ÍwKáÍÖ›~M`ƒÁýO`ïl*ÛŸe{évÿÊIó³ðã +9hª¶ö±1²à`;ÓøôŒ7Ûû A%º¸Ý§:È›©„rçîÄÕÌÚéÎÕ22ÊXò>žé’Ô* è¶ ä[ +Zè@z[{ñ'œšÜPÝenŸ*N #÷@>3¡ÂíOöDÛ`Ï$ŸjDà|‘œ¯i ;ÄŒ›æøöiŸÄ•ƒ»ªÇ¿N2ýurN¬©áŒjâl«´)0¯fNË §Ó@‰t Ú þ•hC´'z"Š(o˜:?Å9•ã ÷kZ¢NÐ:tB.U¹@…ü(Ö^ß +#/=Õ½|M´kß«Àw§7ùÑÝ”üªåÂA8úldwb4ÜšÏ+šÀÒiU0?‘à*´I—JçK­˜c…¶Zð<ÿ<ƒ&°óEzl†&=C“@ªã61(ΰ1!Äã„ð림ÎÜÇÍÝ×v£r.D‰1ZXÕæ›B•if0pVš0Lˆ#þX)$šó®Ê +? ùò=úÆó;Ž~žˆŽMªÒ"Å=Jx>zW]„#üÕÔ¶ÌÅ2SÆíÔ]O}œÔFçh?©Çó|èÕ‰ÚF¢÷NÏr—sôúþ[ÍÂ8òß6…z~£Ê²ˆs¥óx¬a§?  +endstream endobj 515 0 obj <>stream +H‰ÌWKs㸾ëWàHmY4ßSS3µcÏì:ÙI6#Wö0N¥ +’°¦Hú‘_Ÿ~€ekœÙT¾Ý ÐhôãëÆ×I ‘…‘˜ç‘hÕä7QMÞ_OÎ/–(Œ…0E59ÿ Ø­™œ_‡ÿ +`òz3 ü JÅu!æ~*PŽQ:÷äE‘ŸÏø¿Ÿx¿¨;UŠLL¯§ÓPÀ-Š Q¤÷‹®nåVq¯íNÔv§Zñk[ÊepºCñ@$}¸žüÕ¼X¢šË‹¿‚N©¸‰ø$ãEàgÉ\D±z%þ´â/Üv9ùú «MÝîOÝü|ÙÈêÍ›ó ÛÉòZ=Ø7?|üAüöí[ñþòB¸³?|rä­0öçYäŽbî\ FK½"Ï¿ÿƒžçz"à˜ Î1‡s¢,Ñ$_¼Ÿ¯þqþãÕåRLãÌûµ† ¯Þ¶r¿W4sQwU¡Ks3=#^îUYŽùRmµ)¥Õw¼­¨÷{m­RüÇ› žWJÞ½—$Ü›qÆÍB?Ž@·KÐm¯*+¦Qæ­êµVÆ'úBßé’(SZA$"MŠ«†û MKúÞ*^d%ýß*–ºåÛv qº¢a§ÊFW[^_óé.×<ÑN^gìq›ÚXÕÒb¼Á±î7Q®:8w–¢l`#¦ÉDÜÕzM»‘kiS¨Æêº2 ˆ².ú¹½ZkÉ$zGUí Ü3ð·¬·ã8Vr󆎦kšºµÌ upD<>z¹ü|ÊpÍ8‰Ð|¸ä…•÷ü;qµUmϦñÜ÷;–! [•:€h…¬d%*] Дr~£× +ó 2Åîpn}޼߻=‹ý ý¹ý÷6«ñ¢·ƒºŸz;ú‚)¢Ü³Dc–ÓD +å¿ê0mG{FÓ{"kúúŽDi"yI3ZØŽòqÕÓ­‘ÝhùX£gËÇRÖ‡éÍHŠ}&ñ·ÿ[Çü×ãŠ'vM½rô«¾ÍŒäÞxD¯F¶k62êØj¤võìð—æß-ëfêònh˜Ç ysCžH–ºÈða$ëórÖôø0€¸ÕÖ¥B´AzhR\‚%sÀ›;YBé®è*ÀD踄†–í¾noO™'«&¯È<¬Ï÷™gšÄžÄ*#á;Œ‡&׉… ƒëŸ,5K¸uµ†Þw º†pž,ÊŽÛÈñâ&û”üûêÊÙ¡jEíµÖmiÈiw]Y©ÖÕ%èg ó)ÄOrx¶¯ÇKNŸïóxH1¹êo*+ ÝhÓêš¼QZ·®XåzÝBåÃp7P)w°Ÿ$´Ìú·øY†õyÑ2?×÷½9èbwR—CÀÍ뮅ʦ¢ Th5n |E}hÓASQ +ÀSfÉR?Ï^‘YXŸÍrY HÝû2x¼®ÙçÊåcAl# Ê]ž;˜ +ó mÕ·eð§öY¯tɹÞ*j1KÀÌï «4òƒWÔY;}¾£ÄÃ6sÅôv]WŠxì‡Çg׺™ñ69˜¬W¿ƒ©ôÂ$LckjõFãûþÞ벤ù¯Öû¦TØP«õ;1ÍP…цþî(Õ7:jòŽ«f;Hv׆uÀ2XßA{¯·;KKdQÔ]e9iÐÇß(ìZtEÄ®xþŒódlžòó+ üÐ|Š¯ tbôn„Æ,té}8ç1œ°ˆü0N|Â’_%TVf‹þ]òôYâ^%=xU©î¤›žŸÈ²Ï–UE©$·|;É]Π´7ãw+¸#ŽBö«‘F^C +ÔÛVî÷x +L©j'«Â1¤>NnpsX…è³x ./?ÓH +À¸\2¿Ó%o/øž’Í2LÔÆÌŠÎò,*|ý(gn!þàŠ]‹#<Ÿl«WU4[ó?bÊ÷«Ú=Ž¢tË WíqË€¿Õ¶C'~Âû8yºEB=4ªÕ¤Î)Óá#MŸÃÂöJZð¡™½|¤±)!é ]é› žìåœÝŽ]2Pq`Ü¢]ÎZ,Tò–Q`äÎÕùÐï<ŽrnдÄ8Á[ÎÂ(ô®*G4¢³èJ8ežxgnVºqSqtÝo9X°g±5e†ÐÅ5I"ÝhÿÔîd¾6Ö<3,q ‰ƒ&Ú+YLùÁñ!àwÓ+u%±’9d‰OÐ÷–@è¼b|{¤8 Ñ-qÛ‰ÙÊÆQêêáHŒ7 ÊÏ)²våIÄÈ/ÃáÈÌŽ#É*³ç:NgqÎУë>‘”Æ@Ρ‘ÝÄ 8Á-_?ˆ±2W‘­R¾ˆ¹|xž?´A@² íkÌÍÔg¡#Ziœ"ôÑÁ3'ò§ûfU•¿õ§‡º€÷¡/G0¶•»ÐõLÃS¨ª@Þq»nON`bc€À/À쪶¨sþ•üÔë·Uøt"rÕ­·ÔrÈ¥UAa‚€Ä½$ ˆuÖeg±ÃG,LõÁpÁÄÅ[^£ÖG{]7¬›¿×vGÄ!qugw´ŒâyÐéàAçnš3 ÂààšèQ\ÇGÅØ f,Œkµ¯ °4ÙÙA+£ñ¤+ÎC»Uj2z> endobj 500 0 obj <> endobj 804 0 obj <>stream +H‰\‘Mnƒ0…÷>Å,“Ed´(’…”¦‰Ä¢?*íˆ=PKÅXÆ,¸}Çv”Jµï³Æožù©ynŒöÀßÝ$[ôÐk£ÎÓâ$ÂmØ>¥¥¿íâ[ŽeœÌí:{ÓOLàTœ½[asTÓ·Œ¿9…N›6_§v ¼]¬ýÁ‡ êöÔ襳¯ÝˆÀ£m×(ªk¿îÈówâsµyÜïÓ0rR8ÛN¢ëÌ€Ld´jZ5C£þÕéG¢íÚËïÎ1‘‡ÃYFÂDqŒLÂDù™„‰Ç‡È$ććÀçÄçÀ—ÄôQQí#“‰‹Àeâ2pêY…žUêI¾MF§„áž‹\œ£Hâ5Ä,B +Úàý¦ìd\áa¿ iV‰t +endstream endobj 803 0 obj <>stream +H‰D‘}LSWÆÏ-Ü{Ùлѻ[ —; à@ˆAeL–ŠÓá@c²9K{;úe[Zˆ«L§‰ÃEY–ɨ3sŽ…P2'GpÃìÃàUXIXefYØ?üõ8]²Ã–¸s’“<ïyžä÷¾/ƒRuˆae×Þšúêmë_QÕo·˜w«mjajµ·9+Ý.ë¿ldðšT²…8–Ï-¿Êf#t4±ZŸ€ã_-ŸÒ¯xNTº=^û;ýJž%_))++VLVw‹ª¼Þáó«NŸR岸½·×ìW­EŠbr8”º¿O©S}ª7@« »O1+~¯Ùª:ÍÞVÅmSªí.·¿Ã£*¦ŠÙeÝàö*všõµµøìV»ÙkW}EˆÑóhÚ…jÑT‡êÑh/Ú‡VÓv‘¥ÐO3ºŒî3"ÓÈŒèÖéu½º?ád‡©ŸN<0‰Ÿ”V!à “pœM~œúH  ,5™ àR& ´z˜›|&¢± q¤—@ Œ±$ƒ#r› Ãí•ÐLHƒ ò5f˜¥à +è–Æy(°<$d«“>Ï.`ÍÃcS÷ ]ÎåZm¬xáØSr?¯¥~Â߉þüË÷çvÊ.^ ›£ .ÒZ3n„cqbñýTz©¨É6U™Ðß •R@âÈ j„¿¹;ñ«cQÏËr’¥Á˜†Á²Ú7]o{ä“œ8=™ËSâ8.ˆ3ýÔ_Cqûá¼DÊGIäCÁ(¤A9”7C)!ÅÍ$”Ë€ ™›ù5²™¤“ìPÕ‹[C?B¶,, Ø”Àò +H?×v +2 Ù.þk©)—g«Â|,ä©0ý[kI q;67qõÒµ¾œ.î ”ˆô®iK½ë:ä‚pnúžÖûáea(¤áMšþ‹…’EÈ[,YïŠÓØ€3¤ üOŽ8É&)ÛŸ-h™uËâïóöò‘è!KÖ>—sOMÛÀrïú ¿n¨žfî[à³])¿(‹Ó;.°u}í½ÃY×ú®|×c9 ‡xA9‘ÀBœ™¡³ø7IyÀÝ×Á»_ž>ó™çÃG|pØhëìÎm>¾ + "…&^X%*§°-øÿÄvˆÿÛ×Hr_kvîßïé»%cAT“œ1[üÖè¥kåÓœ0Dª»K-A}7.»qL‚Âä7¡fÖÞé{ßfì|¯««3Gô”òâ`8ÒŽ!%ûtžƒ<|3“°\i2 sE8B‘¥¦©‹ÀÚŸŸ}p6y³›O<(Ž?…%éèlω +endstream endobj 474 0 obj <>stream +H‰¤W_oÛ8÷§à£|ˆQ²d ( +t›ö¶ 4¸‹ ìC³802mó"K®(Åõ}ú›?”LÛIw}!gÈáp8þfø}‰Hd2³<ý.ªÑ/ËÑíÇE$ ++¤¶¨F·ÿvcG·KùŸ—ëÑ$ +£X, 1 ÓT "2h3PÇažg¹XîFß‚l<Éâ ”ãIÑøåo£OËÑ¿ßÚ%âÕs‘fa–'" “iŽÆ­yÅÇ®X|¼Ea*b*¾ŠQš‡³Ù\ÄIOgbΧ©kaábôýƒFdºϸ»¼8#œ¥?™2 “y:'Ûf NÄñxùßÑíb¯ªwïn?m§Ê¥þѾûüéóç8Š’÷ïß‹_î>ŠQ PòÓW qÉ St¢ ó 6Z®À[_ªVo5žÈ(hõJÜ«šÚ骽'³@Üé]ýdJó?'cêJ¨j%´ñ—â𢅠լ¬8y=I¦a–$ä*ðÇßtÕåI|Ÿ%Iæ¢Â÷™S8A¡wOºࣜƒ†ý½¥d1yºªY ”€.ŠÂ<œ†iH¼?¹H•¢¨w;c-0–¼„Úc§4GîLDœ´Gy˜Epo¤ý^9mã<¸»{ÀÎÓ‹¬þal‹„©°Ý©êˆ}½Æ¶Ýj^ÒUmc´å1Eòà*Õ<‹ñ<€…Ö©ß7c C…¶V»ûÄD†I +¾“0&ÆY HN#ÙYMCmmQ×4µ2•ji~S¿è¦ÂH£…]»­Ó’9Y¯c¬©†ÓfH2lrØn¿¯›–­B¨èÈsóèȈ'eÈÑépçƒxÞíœäc`µ#¿€ÜB ÷•ø÷5§ó”ŸSÐ õn4,á©°ŸJNÆv†ôË£‹õßÞ¯ûû3ã¿TœÑµ|ç8²®›á\ãð|Eau°ñDæð&ÓÁMä$;¦]­ùb×uÁ0êœöbVÌ«Š:³ÃëPx¯ ÝXsdñÚ¸1 ¬ŠºY +à‹‡ «/õ ­Gc—ÿÀðÚ»ÍT±…ÛÇðØ7ÆLÈ‚1½Nÿ8K¼õ8 +–ãœø`‰Á7ÝÉ—Àй¡?;7ð;u¤þì¤ÀãIQ^W™–Åð\Е¦z&âlš×rüJP¼#>`¢P{UôÇÃÏt¹@èj·/õ sÙ¸`°y² »^%²¦‚KÜ‘e‘'}¬Ñt`È“Ì‘t6twz­«B?Ž‰³]±%B±šß:ä‚W« m˜ ð¢}ùƒ.Ë¿†"öˆ”A©7Æ–pÒ7À^¢0/¦dÒÖ…Ñíq,yèNïu@µa–üý ·¨Á¨í s¢ÐœA8À×Ä“ïÖ7` +VÃðHÃU„È©¦µD¡?¥óŽôÑ «‹®¡Pd¦E¯É@«ª‚×p0[Ó‚HÇWÒÌrkx—ãú­.÷—°qákˆøÉTÂ+·ÝdSé°©S3¿Ò/º¬÷˜Åü„ýâÈà)±WÜñ+â¥QÄß•éV™ªW±[¼%öh[½.ˆq¤4km¡Â`ò¸µ—û„i­.×p~R¸NÀeÚgóÔÏæi”†qšÌ9›C¦§BaÁ.À¸î#ö< žüéõZ½{I&ýIY1ÏÃ8žº¢…ï?™Rð<­V+v+g~á§9¥P'¡¢I•¥®6š8zôS@GÝ8«¥×s§ˆE‰C¥»5{š2¼!¸b.};æ"æ •ÐŸE¢%Œ}i©S+"àÉZïÆ·­<]S§«-¿ í±âT·a›³YóËREýºÃ7‘ò0FZ +V¹ß•ú¯TÓ8 +e›±ý¿c¾Õ +’à$‹ÀsguJ9Î0SîL«s†(5åÞ”+ÆëåþÅáAí`æeµzí»kÇ‚RgBê¡ó°Ž|!=d³ÄRþM¨²hÍNG^‡ñ ýpZSrN\"D™ÞTêó´3¥¸+éñCô"ß$ŠÂ\æó?WÁä_ãÉÌ¡Es…(…=®$o£Žð°‡GVÞxq%ϨÓyXÕþ|—¿ŠIñ< çyä’›Wï'~àïê=Kt_ÐYà×Å-ð?«1ßZœðË¢/A‚¯Úƒq,¼Ä Sô߀y¬Ç^­Wù}Ap(j9›á{‘œ| óJ»ùé3‚ïö†† VTÍæ¡"ŠG”SšÍ¶…JÓà+óþgXÖÀVýJ4ö­Š:‰úÿ +â-TÖ½wà÷[eŒÝÖ]¹bú•—ˆÃO®gTÔ^á[_™óÞ8ªkÕ³ÞÖ%'oVªÜ®T§Òת/§ †£óÔµT¯ÏxÙ•€ð*ºG>’ú¢;­*]w%ó¦z©Ëçj ¤Cª)Ú9Ø…á1£?Æ©šaÀ<÷°né—¥œÉà_ÎùXYüш 0ëÚmÝôù’Äø{ ~KOs”Ôà+<çO'*½N¤N½š~ð{•PtVý„QqV™Ñòä˜Äê˜g©´ëgì¾v<jQ|ŒHŸTêEPµ²6—“øf€=”‰ÃžwÑ%G÷s‘ÿð˜@hõ¦gƒûÅ?µÄQg üpª œ²v²{p5”³â\7]ÚÍ¡Lß/Emå¾b“x +;_M¬¼iKô–ÚšÚŽÚÒ“|{ žˆÖÞˆòèÒ›åÍ6Ô¶Þ6GOž?Íxî6/¼õÖkYÚ×¢<½<[x‡¨¼YãtWúý3¬½UÚYv’¹#šÛoÜ\i뮜ík;xöÇ2’˜l‡µ¿z§8xk_Îôd+×A 4¢8f¨`Õ¨C…WÄõŽ…RÑr…øüb/”c~Xqÿ€€ÀÇB²=\DŽʱ{zXóB´jš0´A"l¥½ªï¢5ÈG^JÂGÚžþ@–êö^¥÷3W7Ô‡QœšW ù¦/HP>r#Kå˜wP žPe½Á*RÂ#±ZŸª…ÄU i˜AQ¡æ ï++WJÃ_ÍIÓ?•á…È·1A2lJ“<­öd8à– WÂ%BÊ8ÔÍ3‡ó,¡Aú³8;óÆ€¡± º +ãÞTT­ÿtü?éU³Ô0„ïy +Ž^ŠIH ¹ê8Þú5¡Mœ$­ññÝ?¢Þ<Á.°Àîòñ-5R¦lb”õé8Ö 'E¯œá?>“O1" {^¼Žè?í0;$ï_a}·UÀcêG¨*8Ð ¯N¹YîQ ì¹°Š‘º§s¿|… íÀSx6Së´,%䔸QÅnJÞ#‰É¤Ð6p±™$Ê6{er™ l š·#Ñ9Ë?-ΟxœCnCZ/¸;~ýJÏVrV÷Gfi2ò¼¶Òô'~d¨ žY§˜‹ïIìËa ›ãå ¼±ey”8Ç'ˆ(¢&æÀ(=ø ˆ9Ýásóú ¹•¯Ç˜„ï‡!¾Ónj¼È­ßûEÂÃð‹%]/²Fšƒ¬4¥tè¿_IˆÐcà4fETã³ã¾o/M44ìÞÀrX‘°Ó(†íåÁñìÝúhnÈíè-ÜÞoSÕÌ +Ë57SrûŠÃL¡L9”tI§K®\¨S@¦ªV¶Êt–Y‹…Ë!œÕEí$'4+R““_4€˜G^“—„6ÞÞ?%JJEU€M›¡qØŹZ5c‚##¼(“J•ë¼¨ÕÄMqÒtÉ6ØÅ -vMª-ŒØ­³?̬7é’=˜û¯•ÕÑÈminTît][Uj“Îvú`à¦yù +endstream endobj 459 0 obj <>stream +H‰œWÝoã¸÷_¡G¹ˆ}Û‚»›äÚâöpݸ‡Û¢`$Úæ­$zE)^÷¯ï|P2'éµ/â̈ç‹?~Ÿ…^èåQì-‹Øëäì7¯}\Ï®?=†^i¼ÈóLÙήvkf×ëè_!×›Y„qæ­Kod*Á1ΖAƒ¶8Še +ÿ›™ÿ³|–µ—{óõ´*ø†*#Téÿ¬Úob+wPýÎÓýNvÞ¯.¥1ÒàÜ4²›â†>iº_ÏþÁf~zD3?ý6eÞÁK½ÏÞdq² +ƒ<]zq ]i°«ø §}œ}׆:f¸GNVYPÄ«ÕÙ‘½Ñîø…³Â X¹®fþÝÝO´•÷(Ë¡Sý‰^wÞ¹Ñ]óÚɯ÷¢½¹¹þPöƒ¨×òGópÿð‡ar{{ë}¼ûäÙ½ï?éD+J‚eÛ㈔ÛƒÓ²ó(»¡šyY C̱-@”v³Y²À…¸îw?Ÿ/òØ¢ù"ŽýpþÏõ߀ò*Ë2pÈ’U®¼,ò"ñ@–‹Í,K—A²L(|E \a¿ÿGøëŒÐƈ_˜©·„ãÅyá¹~÷[)+ãÍÉÒ×!3™Ø ýÐÍ£•oy3pä Šóeê,øI=ËvT!z¦¿XehäAwßìnU×LÉg]?Û-jÝn™› +ädºQzy‹(HÀ“ë;8C©Û²ŒÒ°{Ó9`ØKQJ¢Z¹Õ½=L0W$ù&¹ü¡žTMlj2<4{Ýõ¢í‰ë5 ²5“PJ‡ÃD×+É …3¡Õv¹Úîúú8_D¡Ï/ÒÔÆsÿú/`8E%‰ü'ÞCTĹa–bùfx2òû@ +¥¤€ÑšÇ-ðŠDÒìáü¢®Ä–ºiT–°>ŠŠ!$u!}–ï»·‘åN´Ê4¨‘g~)Z&FߨJZÁNd¨IóÝBº,+Ù–v¢²°©Ù)£•Ì£•8>éQ ×­UŠõh¯k*öÉy”Ž†mÁ“$ m#¦Ô[TBé’‡a  `¬Ç[>J¡¬(%`¢ì"(“Òïƒb‚|Пõ©»Éƒ¶ôrwnÏ  F:ŒøÜ—?öœm$qh¦bn©’€Â…+ܱ†ë“XŠ +î)ûƒ”íûÙ@^Šs¿?hÏ0 ÑßZþƒÉPµ+dªçÁðpj¨‘ŠQ?dg\ýîy_A_§b€ƒò‡é ¨"«ýã×lEM‘«iaËFÛe# +º!Š}‚÷ª»ÀiÜ‘›÷/¢tà\fÆ]׈r 3âŠÅÐ( 65â(¨—i,ÊZZ/¸¹Î£(¢ bYø¿N;ó@ä$²U'-“ë:æ¸~€0¢±uK©‡È’4‹,f|Pis¸…=ü¬±:Ñšñ¢ŽsÄL›$–{„dQd«0çMÖó"<Ó:_¹®_ùî.Èë wƒ- nÂZ +"àowäµÊN¤¤€ù{¬ÕÛ¦$9¦üŠêGjSS£Ë.û©I©D`—H_é ëÏ‚sãSì’½äõ;WsJY…¢’ã%lÐp +*±‡µ»ìÝv‡SÓ:Iù†‘è,RÂyîÝoXÔò\jÄ0>ñÌÁ¼ÐÁ ÷îNT´0nm6[MT|ééRJÇKé­‚´í,/ú5ÊÎ JÄÙdºG¡.Kûsoå¢Ü±„ÚŒÜVQÀ}¨)ÏŒåÏóh\ý^êpŽA»¤$;uÛñô(‘¶]o±Á¶‚ô›§?cÄ1¶?]ج ßžg½Û©à,Ú¶M›`.‡¯và,ŒÛòÌ`U ¨±Æ7¢ütÄò@4Ú°¤Vß$B8 uk‰®k}°+Y¥JŒåfà倣öµdh“òƒä2'ZakKÖè4† i¤„à«fh¼J6ºì(êtµrZV†aLÝoTZ!öoŒ¸xQÀ(;Jiz&!tggj'“ˆ›ìºbÞæ\EÌ)uà.Û顮쿪âpBç|º4R¬G's.u`ì3¨©¼†¦{ÂH ˜fnØ©Úª(¿ÉΠ+“Kïßÿz\ÌžV­x¢K6É\¯$ˆ»÷¢¤Ã,ø8¨ÚàNPãl:__W,;¡©iy©NìRprý.p5ºT=çâ‹ +.ê¶W›#m‚ñFåTH<'ĈC òÀ;ZJœ Ñ¢{L–žk€Jhó€Ç·Yõ>fÝ‹£5,H@çÑô²!’Á1"žWib‘ŒØ_X@ÝgÙfF®"¤€R†æÅ)|†€ˆÐ|aAüi&åóeüÏž-Üœº'qdü„€‡ ÷7`¨U¡pìÉP[”ÞôÓ›ÀžrÌo¸ÕÊe\oo…ײõ”êç ;]Ò8íI– d^Ì‘­È–VtVZW$€Ú‰ðáWÖCE³ %Âg##J¨ñ&öçn¸Hc×dÙ@ðÅ÷v BWLM-h¼¹qàhü3î ìJd¤^¼ê^j±ç¸ô)9à ßï–1µQ„helì@O‰½üˆ7:Ô)ÄOºâÎçÿs05ÎÓ /âå ¦¦ SïÇöû?ÀÑ8]Ñr±²IÁ¬ñðHÊnÄküO0Œ³À!"O¢å”S¦Œ™Ôi^ÂÍ8¿D–¿ÙnœŸ]ŽxºœO—Þ<ϸäÙù#OÝ·)üuq#°dYn“6ÏØ©®óìd]‘>’HH;‹†F·šýü¸íÍÍõ‡_$kx˜Ü<Ü?<„ᇻÛÛ[ïãÝ'Ϧ÷ýg _´ꀚ¾5}} }¥í‹ŠèÝ…\ýL_áh¨É“#q×¾µ{ïÐ¥£§vÖ²…{çoù†m-}«7Î28çu5óœŸ0Ž–­cÇÑY£œ9_Ã$wTKç×¥‰îQç¯ëŽÖ‘›?q¼½5ý¤A_HÜ}]ÍcË~õöæÄ J,6š¯e†Î``ÍRØæ׆'#NléÅ©ÿ¡kŽ,‚"†˜³Übï„›(Œ„¡ªèÄKæïÝâ¶ÓâG¬y´×ÒMÄE f,ŒãÙ%nuœî=BÙÖfâíJÛ9^[d! ’oÜîçÀgQdÖ%@K +„‰ÐË[òpÂyô!χ+^ IÐÑ +‹å`t -\˜‹Ü¾gÙ›õÒÒ'DòxËl%ìÙy¸q¥Æ‡vˆŒ§Úg]{ë]p?ÙÅŽ)ÀPëâóÖ ¼ ï`þÃvå6 Â`ø½§ØV) WØCß6i S¢$a[o?ÿöaí^j .ƒÍç y[ w?ßPu|´E¯‚ª†— +¥Éf„ KoHÛº4°ðO™¢2œ•ýÅüÛcÍ{'hwã`ÑÌ/gS®4±£ÆèœVkq3y¦I\haâcsYž#…èMú§[ê‡ÒqŒœªß.©C-#m~Ç}2+ý=P9eQQŸË³ª¯µ7URØÉÇ:¸_Kíl®0ìóÖ8ž;ÕØ•ÜAuí õ¨ñœŠÈR¢¡m%¤S\œÂˆ-–Ž®¦‚µ#XË€ˆóì ê¢sS)Y}³µÇ8!´”L(Rˆ-òã™0E†Ÿg¡·Áƒ&’öÔäHKƒº›,Þµ(ÞõµB“Þ`"1þ¹ÍwŒ¥Ò‘kªçŒ©;4úåç,÷{¯åƒ'ðåä÷'9´ð¹É¶ð?¸±¡ ö—÷ÓÛéW€_Ú· +endstream endobj 330 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 346 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 371 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 422 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 433 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 447 0 obj <>stream +H‰¤WYÛ8~÷¯àÓB^Äj>€ @ÒÌd °mû0½XÐe3-‰Ž(Ùéùõ[uØÝyÙ…²HÉ:>V̈e‰Õ&šýKÔ³O»ÙÝý6™¡6«gw¿Áð`gw»ð?LîŠÙ"ðƒHì2±òÓTà.D,¡]ÂVQäo6ËØU³?½å|±Œ§ò +±eì= ¥°9 T=§ê³~xV˜aŽ†-RÇa-ÍeÃÚfž¸a‡M…ņ–Éa«lØ€þ¾ñ°•#,Óã++ŸT¦Ÿ‚x• ZGa‡`œz×ñŒá ǵÔMË*]ˆ(#@0B‘­*:f#˜÷qÈ;h"uV¥9á}æõÖé/c® \[(Þ‚KBùÁ2IÁz-@LómrYqbÀ.ÐÓ +;]jˆºG}â¡K‚ hÖ+ã„ÕÉ©¯î°ú v¬¸ˆ‚‘€Ð‚NèFÄXÇþ-UaÚb$;š2ç ·ö8$šî„aã}œ§ü>Ön¿þºÍkîá&-èöô‰^™+ypy£&— ^p8=À1Ö.óØÎ-µ]vä´Âã“)!¶f’ÓÕÁ˜Üãê!%Œ0×ñPÚûRÛ£ÂGOŸ8o¦}M:b¾¡íÔǪ°Gžks)U~PÌãÜyÔV1‹¼8¼ÖTZâ_¶"Flífjõ³£Úl9r^Ÿ:VDÅÙð1†tO©œuÁÖM°Ž×C°Ž±Â"çŠñ¬­Fǰɹj€Q¥ \ÖÚV¼ +¯Çr÷ïÀÚp£÷º¤:«Ï!ó~ˆÌBH6«gw¿Áð`)N&}œt!= ùuŽoË$A"XáÛ’#3GeŒÈ©ènÀýIÁþo/Ô`»!‰~ˆ^ð4þ¿G½?>:‹ò÷<•jã޺؇qâ/“t%’p퇫uÈOݯn+¸gã•÷±h4ÖêÔö²w8)¤È_lÑÕ™“ !s2¦Wl⽆1dÍ!ìpÄG€ÿ^©Z@P·ºÐ*çXORO/`’n\ÙmAQP¶ ÑcZ‘ÉQSPAx$Öú$Ùƒ¶Yg-0Ú‹E¼F™ûò9Ûí(²áŠ¬Ô-&o$/žip2ZµV5ìÕHÜø€ Ö'œ…ô­ÃN ¿Ì. Óh#) + T@>¡P2Ïà„ÍFóÐñtÙ(®°ºä"+0ô³‰à·;¦÷Ô•,.K‘G÷§hL%Âä)Š–኷;5PEGA°€·_z#ntjšìÙý7gn{l½*q…’†D‚jÓ¶h>Ѓ„ùFÈ\ÀÞˆ¬÷K']ƒ§áÌÍÂœ3÷AÛ3„Š¾üW^g¨iC«3 z3ÂïJU{HT„;zi¸Wîô¦©@PÛ•íƯÄCO Ä^E"ž„3 ßëþ™9Ø’¤+8 Éà^»¤ìFŽ!® i:kuA<4Q,ç×öêÖ…ëÞÀ‹ÕyŽˆÄË@p索dÍv—1‡<È7 4hÕ]–Oî ‰<ÜŽ†-ömdÉÇH0¹r=VYMÔÚPré .T†P‚7ª%TÓ¾Th€C‡/ü:$ "k\þ•TyX§Ó ºùÕå.ÔäÆ ´ b•µÂÊÂ*:Â;ô ¤; Þ6zßácDËb/dÊRÿõ_¾«e·mÞó>Ú@B˜ÐÑEo)Z gÙ¢¶DŠÝäë;û D9iO\RÔ’.wgÈ—&#`ÑôWûPÀÏ5$ôRAz)I¼òjçSÛP&èx‡‚Çém ‰(7JJzz²h’¬-aÝ©\º¨†|ÿes…³RK¾(l.¬ÎK%©L0N{dÞ@8b9»UÓ ˆ+ˆ]k™bcòî¼ ÑGñþÈî iã'‡!<ß³~­u¨î¤Mõëá]ÌBBŠ1À$…ætý[ææÔg½%N1˜3’;Ý!OåEÊ¿ÀàéxšJfÆ\…™²WE†2uX%ÿFì³kêÜéò[£—KK×çh;ŠPêŒÙ\˾h¬³¹š!Zó€ô¿p6˜u™,íµœßTˆSá–P8@0ªJoJ—znù|Œ'WïÍ&Îï”Qâ=Â~H˜{*lq­ÓÏÒÖB¿5¬neP­H9Ò·ƒ2)³á’²syâ½äº F}|‹åÃFn­¬£o?Ô’Û‚+BŠþÙKûÙu‡ ‚˜ˆ`0úÿ$ÕÐÛ ß%]n/~8ÑtŽ ‘“”Œ»iEòþ „d ’kqÚöD‰9µ• £m»AW?È&ÑVÜzû•,#o¸¸Bu݈Þ!—òÿTšè4e$–N&°¶Ä„'Œy#ÎëÉT{4ü3F)cÊ2¯5'sžé‘Ãئ<¯I8ÒigÛw˜¸pv½H =ÓIËYcE«æ(pkãcU†mK(ÝÅj¹–H Fº?:i{C¼/ê¿hþ"³Ì_·SIþ$è$é8ïˬCÝ,„¸Cp0f7IÇ[Ž1Í.­ìzLñ׋Ô/ºŸ×G¦ª>&’¼á¸0'Êë-VáP÷-Jï-uŠgÇóÑgÂõî“Ûù‹F„TüÎÐ4éx"IöÁ$j+ –xõ©ãR3¯ ÐpËôïí¸­q&ò‹‘ Ìmâ¦í(Ù${熨Áäñ?ð~”€!p= ’#ÃÂ="Õ4gîƒ ’ À´ÈÈQ Â9Á§Ø põX=A4V!Ìh僗[¼Âˆðy͸Ï™ƒ üË0a<øô +ÉŒ#“¦Åþ ù-]«½Uå–6ß~ßü¼ù+ÀOyøø +endstream endobj 432 0 obj <>stream +H‰¤WY“ÛÆ~ç¯À#˜Z`q«Tei¥”R–KéòÃ*•š†äH8h °+æקÁ wm'yÁtÏÑÓÓÇ×ß8i9Ù&rZ¹øÕ©ov‹Û·ÛÀɵ:ŽÎëÅí߀=èÅí.üW“»ý"ðƒ(qv¹“ù‰ƒBpŒ’Ì#Eþ&[Ázµp’²tRg¹ûJ·¡€o(2D‘îOªþ&R;Oª;:Mw”­ó©mr©µÔx/ Í¥x¡K’Þíÿ`5ßnQÍíÛŸA§ÄyrVÎGÇj¯?]eNû¨×Ê_ƒVü…×n¿½`€kE'jLŸ¯­×³';ƒÞÑ…±?b8¹+îÝÝgGÔ…³•yߪîŒD×´Îg¹oÚê¹—ßnO¢~õêöǼëE¹“ß»Wïß½AüúõkçÍÝ[ÇÜýî#o…±Ÿ¥‘¹8Üpãb0Z2÷òÔµö¡‰“D0DìÛ £‡Òm&J<<ˆçîÝt饑ë‡K/ŠÜ`ùÏÝß'ã*I0HÆ"×N’úé&v`nµA_ìÉ*óã,&÷ÑqóýÜ[o„¨f?~ âÍÊÉà™Q‡ø¾{÷ÔÔ²îô³ôâµ Þ¡ñáÌcÑŠ'UÌbÍãvû™ ùý$ÛNiÉlwl—!lëǦï†9³(0Úuw1: +-}¦9™Í¹Utrài´+EFàx¡§ÎîtΛúK§*Y B =DM‰ò¬•¦yP¦¤¢(HAÐYRmíÖò{Oüƒìž¤¬‘ÄÈ%Ó{×®¢¥†DÃKVUô‹ÏÔÔýéÔ´ cœ¸rÇöêQòL}T`ƒûÀ ošï,=ºšdG˜úY8Äx:äñù¨‚±C{îÝ/KŸD~à¦\¤ß™fFwhæñ©0ªZwªë;Õ€ i&'‘ŽˆB î¡^¼ñHór¼—Ü°ZÏo¾<ÿ i8‘Z})Ú’ç{-÷}IäCq5ºÕcו-WJAD~¤IcE >€·WvŒSHǵÑ>¾0¡ëf·[î]Ž™@~7ò&OÇÐùÄyphEUIçNju¨op‚ð¯4r“?Ôâõ¼ tü0uYÎÂ!!´€Æ€Ú«4f@Øø‘¿Œ3k”yAA/°šÇÓ˜|bR€ãq$~€ 4 s§ã|…Y"jÞÕR O#ƒD5{(;qaffœaE‰4‘ýN$`Qû¿"!šDÂ~ž|ËUàÎÃg84¾,‰™À“Ô4C#à]µÐÓ'™+@¾,§éSS*0%æ)p²~T|AÍ sØq l!yTùqéYTÝý…5»%t 3pîñ^ 9¥$ÑÐsÎ'n{TûŽ +0“ûñ"°8 Lq®E¥r[IQ3ÅNa\~W +$'Ú]c>F®‹šG´RÝ)¼ÙÁóHï¶Ëlåú<±ØΖÒ`rU8^„Ó¥Ô¡Ž ý`Öøö$±Úã{kú([Q–ÌèTnÖ¾rYÐ̳qb7ònX”LH47KaLQ^ ¡èCB '¸~ãÌàç Ý1u¾¡—¡¾A*èo)!< "Ó—P%Ú!A§f²$rVkC¨*h$&AdªP2 ¡Ä†%ÊÂï“,Ë‘SÁþ ÊB'–¸—Éx¥ç7‰ $n-†‡ÛÁ<ÚÎ×ÀÀßä±)¡æëaà ê}F,ÊMòz#!ùbICÐ4ù¯K:ÊÜçWsÜNsÈ"Rè'ÁÌ +þ±4'Ó­6æý@äæüFÆ /’6ú6(Õ—æ0™ƒÆ ©§™71hOŒL‹rºV’ÉõQ–sˆ²]™—¥&–`}€Xö™ÚgImªÎ˾e®„1~0…Ò¢­šà¶UƒôoRÂÞðû-hUõ5ÅhE>.CÈײ'=.»Tëèç;ÕxùaE|ÅDò24¨#¸ÝH'6<à}„"D<%£/dü!öy׳™Y”8™SÔÝÂþB† +æÍ¡VúòzÊØÑ°æwkú6BýÕ¯ûfjzJ !51d¦À¡F« ‘lãq¾Ô Z¶æ¼0}+™<£"Ž‚í)LæT§çqBý­nž {8€nQSˆâc³…þq/‡Î.]»?.¬ù1ç!,Gè´dmdÅJ¿góWĨÔ«p݃8é >$V¿¢GˆÈ[0´â¤ +úgðºú@ÖfÚ’G&½£ ¦3´Ä>q¿¡kbÑG?~ز¨1º4KcY—aö¼ê{æ€Ëm7df, yöÉ»±BY#Üpyªá!‰)D'¸0lÄ ¼$© ´Ž²˜•'ü]Qußôºä2V™´œàYsÍävšÅ×^wHY“‚¤BQcàó ¯ú¹ø·/ë;ˆIô˜­ú†'öxÉž›lš©&yÅg'‰^eóT§| îÚóhûèùžóÔ(.Y¦LMÀ£’OCy¶U˜›tÖÙ¼¹Ó4…1è™.c¨ÑÙXß!ŽÎ<£âÇ<ãv-Ãp‚oÕÃï]Y¿Wt•¦ ÕBl«@FK¤émúšo¯šÛ0ö7kQñE[ëúÄÙì&ÁÅ–{—dÞ¦sT6½Œï¦¨œRp‡¦E„ñÓÌpÔ5“›X³‰w>:á‡ZÏ?-!%W5 1B3Ë*‚:{Là'·Ç8:z´«T {ËÒ>e¯¬ç·UvßÙÎX5hù+™ö œ–ê­Piµï­.´åÁ^¤­¼QýÜ$£øzþ¬ó\­ì zêq®ä¸¯³ õü1ÅŸ0ös-0Šá–²èyÝÐÜäבxÈÕýômuù,€–¿õ²Î ˆSªv0ðŸèÈ3~‘¸‚ä +§ª Ü<|epš·ù—Ý¿†–¡=õiò£*½žØq‚íºµå†ÎùøYŽYàŒ¯Œ~‡H¸‘Q>¡fxlÙØ¡“}@‚ê"·a×­r u¹–¦Ù8PÞq<:ÌuÙd§¦ÉÝ®h¾ö!eÁÄÚ#…éßs].«z{Êa%$O¾Ì صÿ||®k±¾TÕAƒ•G7ãÈIØ|æY "Ie^vÆi°•²³öP«âœ€èLt“%6¢0I‘St^Õ–_4ë%í¿;tßþÚÛúcªÝ€'ó¶>~¸&7[7‚!H›lO„N")8•šGL Êt”pIü¦ô˜“ 9“z1£*e8õN÷äiágr‘ÿBˆ(Ö©”26i–DÌtñËÙóçWr .ɨÐÓHK‰»$$™Ò4Û™cw$„üPŠ2Hô”Vv6.ªHAæìáAŽ'lʯàöÑ xï=pü[õŽY”BÆßÏèyòÛÃ׋HJ‘ÞͱOþÛ¯7Áøwú`¯Îr +endstream endobj 421 0 obj <>stream +H‰ÌW[Ûº~÷¯à£\ÄZ‰ºX‚I6Is€´YyÈWæÚ<‘DQÚÍö×wfH]ìµ÷¤=}X/æeø}3‡¿/°4älsÖÊÅWV/Þnï®V2fŠzqñš;³¸Ø„ÿ + ss»X~ÀÙ¦`k?I®B•¾),ŹŸçiÎ6Õâ›—.W)÷üp¹âÜ –ÿÜü²x¿YüýÜ.±$õÓ³E’ûëuÆxäóxÍb?‹÷…‰W‹ßÏ4 ÓCöwÎgNÆÂ0ò£,Éȶ5, 'óÂl¹ùmqqÕˆúåË‹7E׋r#t/?¼ÿðAôêÕ+ööò[x G¾ÿ UÜ ´ † ‚úy +m¶€Ö§º“»V,WaàurË.•m%*Yw/–ÑÚc—²Ò7ªTÿvc”®™¨·ì‹Tó©Ø}ÕÁ¢Ý6¡E±ŸFAxüI¨ŽO2Ç,Šr?Á+昱0†²º‘-Œr |çTA~C`wÈgY +‹¬ý,ÍXr?YÃêqêçYˆ¾ý“F‡¡N4¯98_k‘ç~?Bÿs_vj«€‹’u²Øת€š0FƒD±Jü›PÇù5!í8œ¨2íä~¶N»ë›e’€ãDwDëÖtT7l¨¢j*º½¤²i—aæÉ•ÛÚö•¢®U½sÅÎ-¥Ø½>Xe+ïd©:¶õ-‚¾ÿø•ŠB×…l†ÿÉÛ¬lúOÙæÌ×lº!x_è)úÒ6ШU§1ìáƒÆ Ah]{FÒðO——_®ØfäèC yìÇ$@;^Dá8Áø ö/ø+:b"ÁpcÂàhþ7wG,Ã!,1"¡añ7‡ïõÒ?€Ö]ñijdD„B{ɯÆ[&™WaMãÇà§ÿ(°&Æ?äX{1¡Á{ü¨ñ_úã¨Y{Ü.¯G[¶øéñSŒfÈñ£ÝÚeÙ¹4c7þAãÄáÙhH9.ªÆE©VÕ£ÍêÐ41.0™!GK÷ã85ö͘@Ù·µçéì/ð-ðá3é-*|ã<a¹WÝž}Dq¬ñ ÔnIÿŸ¾Sh¤™ÏE/{þP/|ò¬áA1,¾Sž¦‡‹‚@¸é·;ÙYÑ¿ª}kŽ¤m#ÖÓë圓âŒR×»UÛ×oÔ¢.ÄA%‘ÂÇ=%ÛcÊ‚ž½urõ`//;SCº³=AÏ?Nþ_ºò?3dÍx$'H=2ZV0 ÅıÃÒ¾±b‚ÅAn ?Ôµ“äãØ5×gê¸U(ÊžÛûfQ­•F÷ma7C°±œ¸¢^Ó@\˜ëåtïG©ŸñÐÚoO7úôÊý78pºbЋŒD²ê$ªJž’'žp?ÉŸ‹< ö<-O_÷z|b62Õ„¼«j(îè}ÙhUÊöä-<ˆŽ›Úi|¢ÌOÓç#HÖžŸ|à HM—$k$ø^c“Nß‹v{ü A4TýÔ ÁÁÄî0_¡=/ô…‘eIÎÂ<÷9‡w˜øÍË)7ôéÎêÜÕCîRÌËYZÙÍÒPõ('¯·³1ó”t>FÌ’T39ï©fýõÌÃÆcs{ì0p¼Pe:uÆ1¹=õ'Ð0òл°TÆôpb•BJ „Â]Ý ´Ë0ó$ÕÁI±¸±-¸Bä®´3Eç¢BŠ¶| d¡;ùÂþ‡ÞlP¦7µ)êtƒDÜÝ ºïš¯Â0÷ª^¶¶jº¢lu}•{H¿ 3ûéÕÎÜ6 ƒwÿ +L/æéAKöœ)K¯=gkE¦-¥¥ÊN{þ÷Ń´¡(×´ÍBâA+Ï’³,0 ô__VuXB ˆr}Ðó|Ýf(G*bælk½íÄB³ +r]yöÆfî¤1‰ñ-ã‘ÆðS–ãAzcKcCcE#Ë<‰¯Vh`I'VNBf¤±»³ Û³+Vì5Š½ÎBf'4Kk{!Ù 'üÕBÏVøÈ__Äî'ñµzJ±£ŒÞüëYøÛü…ïãÍÚ[,ãûSè•žð?ƒ°¯ù3ÏËÜòyø'ÃV½ë;:¬yê#—KŽ¸½*Óø[ƒó§—Ï=qxý1‹%‹óΞìØ5Îúå:çÁSˆ/pæzA|Ëæó¬ã/Öé¹% èé‡Ä“åâQÅ[I€å … g_‰B´RY“õšSa~EX9ÖýK»óGôƒåÜL¼¨ŒQm㾓­†"SÍ_vöØ‘´»á“s‰íŸQÈ>Âiå_îÁ®íµ3eÜ™àeg2ãÁb†ÑmKé°à¥U¿ù¦Ø¶å^t`9F}w¡x{Ë\9–3;–ÞŒA­Þ5ÆÌly¼ÑؾSõPS%Å·?Sœw½óÔ©æ ½j^xîª ¯çÁ«vLG‘8¨Ÿ§Æ`G–ë& WDê”%ÉUµ$cï¶qT#Dѱrˆ÷â€÷bö¢Ð+Æ +D˜Lç1à¢|³Òë€q3õ08'îrìÓŒªJ§yøÄ#|J»nï>ñ+Züˆ<‹L¢“<Á]Öð0Z'QÕ(íË ¶]A%¥fµ]…ÚE½ØõèÔUoë"7Ùz_é™îRVþúq5ã8‚q¥…Þlrçý–¿›”µÑkà5äd•Lr2É„ÏZ®™™gb]h“Àsô1kË>þÓ2>„ª€È̓ÿ[€;þ‡ +endstream endobj 370 0 obj <>stream +H‰ÄW[oÛ8~÷¯à£´¨ÝeA€æ6˜E[t/úÐ ŠDÛjdI¥¤ù÷s.MÛIwæi_(òˆ<çð\?þ˜ùÂiŠlŠ^ξŠfv¹š]Ýù¢P"BÍìì7XnÔìlü×âj=ó=?LĪ™—d‚ß0ɼ naè-³þïfÎù$k‘ +wõ¤!ƒGd KçCÕ<æ©Äs5lE;le/>÷m!•’ +Ï Ð@ EqºYÍþ`5¯îPÍ»«O S"žE,> +£q´ð½4ÎDy¨Wì-@+á¶w³oàTQK ûÊÑ"ñ–ábqpe1éË÷"?‚“«ræ\_ySŠ;YŒ}5¼àdh{ñE®Û~÷ÚÍÏ9??{_ c^¯äÏáüöæö6ôýèââB\^_ -ûæ#L-o‘—¥¡dÄ\»Œ–zÙv­¹h"’>!ûv Ìè¢$MGÉâ¹oNêÎÓÐñw†Žïþ¹ú·å°}\%IɘåB$©—.#´x‰¾XÏ’8ó¢,"÷ÑqK=’û|Os¢ Æ@0Ÿ$ÑRd¥©ˆƒÐK2ˆÎ4òR?Å“—ÿÐñ‘6£¯=OâGËXd`à E¾9òâQ¸±Ó®q¬ÛM¥† +® ô6|:Ù«¶i )`Qä]^ ÷ñ?íz–u½_UM^`.TU­·1燶wƒ…SBºàfZH>Sä Éi•d{_Ì’S¬®AÃ]þÂÌ/œb›×µl0ûp9ló&jÛŽuIÓIŸ¼,Yde©7¡7[æÕîºZîd3äý Qîî¾ðÙb¨žª¡’Êcúûn;__Ó­c¦ß!”Øå/"¯U+d#ïý(ÄšÿïDÑêûƒ†ªm¸|XFÙå ”ÔGh¦›>ßí@ û‹ +kg'“³ËÙiA”À„œ½ôÜ(s ^¹AˆðBªf#Ö9f³¢%H…ѵU3(}ñ_D¤R€©ôzÄ¥Qæ¥á"c%°¸ó$åø »ªÎ© ‡`šq2ÌÉËðÝXYê½c캶çÉ#þp ¼ {´}ÕèMnà;“ká«Š»7DÎtÏmÿH«{GII³ßáw|íh'Ä^èºM5QÛÈñ&‚Þì„þÑ–oñÖ¢ÙP‘óÙ¶ÿ‘ªÚ4÷®G«Õ¶R4Q†•>¬MˆI¥XÍ9+7…o Òžó< ZþæÝt°¯À`dZ  ò’S&EÛ²o”٥ٰêÈۢ°Vï˜ÒÝH%]çVs*Ëä pCq‰ +[#íS˜È§¼s}Ý=sì î¾Ë#Cq£T»èØ#¾Ní.8:ç{ñBÿšŸœŠ‚éر8ëØ/„‡ÊþÔ7çÞuC‡¦™³rÌÝi™ãä "U8”ÓÏ' ½A†áŒÔf¯Âa0Ëâ€osÀ­0Rö|é¤4æ8ë̲5çGÃ|/ëÉœ5»WÎçæèÖ ­ã…â:­à¥,*1¤”WðÙ¶ÏôÅ`…’?F aL‹}ñçºè\sðP^Õ\µeisLáÌU"±øš9£%ðZ€©k¡3VE^Ú˜JÏ|* ôäª-ªv.m»«Š©<{âjóT—…n£Q(ÍÖZ5Q•r¤¨ù<ý—g˜¼SÞRúW?ìcpÛQÉõˆÅ6+à7]ú4ÓN¢þ´ÔÅÇ; xM¤cˆÜBÓ@’`ée1øVw±€ûÜd®$(G5ß*5FA-mþëþ”ø€7ƒ8döŸ¤,Ñû±]¼x­­ˆó±‹ ù£lh ©jKô*–Ì},Ô+Š•ØÙʺãSuÀª×ܱ´!Ñ.½í"ò V펬rªá§ŸFI¦Öv¢íØ«iÚ3j"~€x=rí…)K¤«já\p¯ Ú92q„·µÎ•ø°j;‚8¸F\ˆZ±lÑQwxÇl/ žá»ÍŸä¡ÀÌdìLî¥p>¬_à2ÐOc¾sƒ‹4_œmx CŽÃÎ Ù"Ü$àÄ`0[Z³O™}¹¡•†v$÷É0(ß’F³ñpßžsƒ4›×F—ÞЮqFÃæF:V~ƒaµWw¯PgÔ^ù;¹û[JÃùHÉܲø¤†4—‡LÉœ»/¤Ša×û¯ÛªF¿/u@-ªÇy ¯Åk]ÑaúÀ;«¦¨ÇR–z¡?{ÄËÃ\ê—r«€–DÊ‚S½ â ¡‘pˆçTðŸOüel~"`0㊊ XM¦¯CÐ0öÂ,ýÛ4xƒ†Ü,IŠ žaÍÐ&Ÿµ^÷îtm–lß{ h‡Æì0¥'NÐþ¸¦‘KÏf¬óžÖ]­¸à-ë–‰Pð=šhH¼k2 P¾cGd~¶³`}ðòƒ5û›Tf(wØ|‰a8)Ô麊ïDì2ŠþaQÁö]ks  •ÂC…Ï™>¯Ïvc=L ú¥Z8¬NV Ù*ðD¥ž„¥Ý£mE'¬-›mNð…ùÔë5)˜ ³¯•,Çio9v5t,Œ5)¿76 × û—h^¿Ä?û’Êv=ЖÉÂn·VŒ«´n€WRh?„¬¸ƒÞ]‚¡¿ ¼€+=ÊÚA}¯üäÀÒvÊ|G‚¸«jfpþè¹ç›p½%›ö¹–åFŠMn0U)Jn‚–„]¥Vr:^¶?OòÐIÞ‚¿½¹½õ}yqq!.¯¯Äl©á~!{iwÕjð%é~7aï«PÑK³é}uÍøoŽq ±Ñ˵ì)îÃ05öJ§r·r³Øye3ÿ€Ðƒ·vçˆå?Û†Æn˜˜˜‚pB?Q8éÎBê4€*¤ì¦ÂI (¨À€”€ÏŽ9@Ò{ÝžèÛüæ}¾ÜÄÐLîíí¼Où´¢Z\Q Þ?ÃGœ{žœ<+Ê;IßdÀÁ{óê}¾ŒÚÇdkŒŽVÒÓµÝï„ßGñ?µÀÜÄ’ÊkOJ’zLn«Z(™„I¯3ÓýAÈ@›7JÊ){¡d̯NRPoî¢øRGš³yA£è˜l”H'mRMU¢kLE2Šs nû%Øm;8 +^ÀÄÓ_,©!±|-¦l­‹²y¹mÕá2"Àž¢Í‹Æ zèÛúh@œ£9+Nm*™ó©$ò$À$S)Yý{±„é„´Sé=Õ?q!Å{t;‡-÷‰–á–L'|Q*ã8¶I$fwØßä= }Vöã%JT_ €ªf„Ü+3 ¦75„—ŸÎ[Ë‘ìòå)I¾xu¹DUðЖ¬#c,Ò0–a–ˆp-£˜”koþ^¡^Ñd¶Öè’$rµÞƒiºâR‹d¸U2Ÿýúõ? bñ[ØùT$ë¥\§)mNå&FýåŸ^-‚H®³L„2Œ6¢t_÷•‹ãâö={ÙRFá2¾cïjÿÜún?ÂŽÊ:Ž¥${\ Ù`¼v^M¾Ø8^Ê0Üd +ì­½ ì'íø¨þ0=Ò÷h +endstream endobj 345 0 obj <>stream +H‰¤WmÛ8þž_¡Îaâñ» (Ðδ½.º‹Þ$À~è,Š£$îØrÖ²'3ûë/²£$-‹ƒI”(êI‘ôŸ“@" #‘/"ѪÉïBOÞ¯&·wË@F„B˜BOn?¹3“ÛUøß&WÛÉ,ðƒH¬ +‘ûi*P + 2h3Eþb‘-Īž|ó²é,‹~øø1 +‚øíÛ·âýý˜x9?ü +C< äP‡)*1ô´Ú€¶>ëNíZ9…ש¸/lkY+ÝÝLãÜ÷ªnÖeUþeyÊF ©7âA•îVœ^v° Û'­ÇqâgqLª}üŸªº¼‰«³8^ø‹¼ÂÕ™¸A¡êµjèhAŠA`Ÿ¥ì ÏD4ý|žˆ$Œü4›Ä¹?ÄøþÂŽN^’‹›!ª(Is‘G¹eqÈ~¼|÷eš'Þïbå^Ñ讆s¯©ˆ.uÙ•²+Ÿ•!º–¯Ô˜é¹Ü(¢¥¦¬ÙZ†ÌF£mÓZÑ mÚ”êMÞß?Ì–ËÞ¼Åe`ïŒOÆfóx“YD¦˜…~åìQ÷êYUÍ$ÍÂÔ«Jý$wˆ©µêŽJi&ðÀFËŠ©Ó…‘ºkêº4ÖíNt:$ˆí–°]±1¬Ì=€!½¤çjI½FSW+‰»R¯k°-µéÊ®gH¥!–så4ÚÇÉÕty´EiÓÓ:1š]â}RϼjEK»RÑ!r`¼F©0I{UcºtÄ™ñÜñ†&Ì¾é« ÁL5 ²e¡Í–ºïlxIc”1øÂy7)úµ¢Ž?q¦ +Œ8WêÁî¦à {lÔ”Ü"ö6#e°)±Ùa£ŽÛºÇ5ØÜb³›‡í€ƒvÍyûŽIh$6õØœNö‡­$è6_¦sÐè0O;ŸG„´Éõù躯Ã~3^ž õ#ïfàXŸiFƒbÜC#©G~=w­±âœí4"¤µŽMµúXˆL…žQEß–Ý+ÜûÕ”†ˆGXÃPxŸá]-y/Ƭ˜cV˜øyÄÉÂK(ÿœâ(ÙNXf/.X¾y$»ÑÔ-›‚^`dÀ¹›º,h}Ì)øÔnh} Nˆ¹åùtn³˜—þ-°ðŠãq:2—ù1äàžòpÎý0KcÍs?ó99Þ?P2ìöJÚÜ)ód§Ä¨otAðöôàI`<)€¶Xä|Òj¯†°ú!›‡R«>N`ô‚®×ÕšŽ ³{»G£‹ôJLc8€‘co#c¡0(¸¶öÛÀÃÄ ¼Y@¶lÙ>c‚#ç# ¡‡zAL]7¤q‡ȺBèí›#vÝo ³œu€Ëðô• +lëº×Ë(¬Ô›¢=THæ2e6ëö³$÷£e×o^yø¾y¹r¹…‡?y pêóÎ/3€´–`DŽScä'‚;H'}K™ˆŽ9vªczÇJïLR¦ÆË)ÚéÜëË#8ϯ-jP5öfˆoF€ÝÔÌv˜aÆõˆÔºÙ€ú|&þÝ!ƒ·˜~n8á’îqp¾«¬UYÐ[5<ƒÁžœ ï³µÍÌæìÙÈÄÁw’g”Áz]TJÂýãÐÛôŠztxè*Y<Ñ…îI7ÇJmvÌq¥P­¦2$¶þ=é¹a6ödëaèñTÝغ*¶îälß)Èêh¶ ¡ èÌ”»}GAEÓëNbå ú‚õ!Dü(<€ª}y]N­Hù9¤µBVvÈ¥Pî>N¤Hýypzq´íd3 ØÒvÅV 8æ²6SÝàŠSϲêG3» /3~öרϞÀ|a=wŒîTÂ4L4ø4? ø‚0èÛ5–°84ªÃfØɽ-ÏTËä ®ÔöF0vÊ2$©tÍg˨\Ž_@”aMy¨>/‰U3Nq½ ƒ³Â'¨Â䕢걾D‚ÅîúJröÂ9Rô±8ªs6Ä9ÈÏdDFJŸQAŒ—¥LÈŽ:~¢ñ _‰ª°çõ†¹«r§Ï6 d¥‘Þá!¯¿cÞ}¶Ó„‚FÇ^eùF¤ºÑ3^Í)¸[c}ûönˆÂ@Ĥß.øA +†¤äï3p‡~˜sú­£˜Íá#u".Rù7ïëò~ËFHÏRàoÄ™¹©ÆÈŠ%þPÞÛ,ÁßÓ´pŽÐ6k/Ü?·$HáŸþ)iCuðn»ÛK]bJ¾¡j<¤û¡÷ëÿH z­¾=W`Çìý?âUÌãTì‰éY ú(×=ç`W)ÖU߶(µ¡œéä:ª×“,ãzîŽÉšÚŠZE­¡VP{¤¶¤¶£vﬖÎ^WÂŽZéÌ g†Ï­þÃ{“3l=µTó ?lV&åHW?9Õ/œ3´3ãÊÑWqµ kç¬ÖΉšV_U–üBíì +ï]_I–’î +ÏwGBép^kÖEîêáàÜ—%<_apù3S8r%ð®Wë{Ãc¡ð`+½cÙAÂé?FïÝ!F@±1©>E ‘¹ÈÆ³àžž_]QHð}x kœŒÚÔJà‹åÕ+tÇhàø² Zl.Ÿ—V;~ò ÚB8‚| ¢ŠÎUô”«ãô¡9@Øá=ã%¾ÐÄðb¡€—GÓ(õœ@:JF¬•ÂˆÑ€@ü¢Äl LG‡–ªvÄ  €åˆgƒ 2’z[¨$ÍðŸr©á,†+Pá§J›!vn[Y«cÓ> ¨âªR?±¦ÖM·§CïKY{Cõ)þ\U ÃŠ­ÑÖÀü‰=z÷Ÿß}‚ÐW9Å,.^G ÃâûHH ã—ë Œôˆ'ûÎ/îág²UÔK¾Ð MDni.MkÎý1@„=7¹šõ½M+·TÛHñ ­¬I_¨’¡Ôâ«é—C¤¿"=¾Ð9ž 0ZµE²i1E° 7_@Á'z£¶}%Öm‰…ðZuGt£ª±…›ÿu’‹ +DG:龓ÿBÌŸ–á¢mfýAfŽÒÄ_,‚„“ßÜÏù&ø€G¬Ù;k©åŽŠªñ¿Êþ<‘ÕÃÀæUœdÇs?Š’|H¬f,©¡–ƒØc¸W/Š}¨8Õ†'Ö–Ë<q†?˜8¦rúó"5@RTUu>3ŠéÀÄ */žl {’vP T7Îc¢j½V¶5 +Ê2[`Á ùéÕÒã&ƒïùsL¤ âŽÕ¶×JÕ®ÔCOȆ.6ÀVûïûù1ds©zÛc{^û3ݪ/m[Øá\pS¯|×j'¨üÑÁ]ƪ„Ê\p±âPjYïP‘Æàltnw ›}LaʨîñÉ7yoÙ>oAú7rïíé1G^âR“ìö^œ¦½u,x½>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 249 0 obj <>/ColorSpace<>/Font<>/ProcSet[/PDF/Text/ImageB]/ExtGState<>>>/Type/Page>> endobj 262 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 295 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 306 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 329 0 obj <>stream +H‰¬WKÛ8¾ûWð(/ÚjQoA€éN2›E2Ȥ½È!,h™¶™–DG”ºÓÿ~ªX¤,Û=ÙÝA.bñU¬çW¥o³ˆE,ç1+–1ëäìkg7«Ùõí]Ä*Ã8c¦jg׿Âtgf×+þŸWÛYFqÆV+ÂŒ!ã¬y Üâ8\)ì7³à|5ËÙ|õÕ¾† î‘%G–Á;ÕÞ‹4ìQõ{¦û½ì؇NWÒið>ÊÝ£ø``9½^Í~'1oïPÌ»Ûß@¦Œ=²”½g£ÄI…yZ°8 Q®4,A*ú‚¶w³oa€KA'bLUNÊ,\Æey¢2órÇgÆŠÂ$Jàæj3 ^½úÈD»aw²:Õ?!ÑëŽ}”[Ý5Ïi~}wí‹׿Tý ê•üÞ¿xóúÍ›8Š’—/_²›W·Ì½ýú=oñ$,òØ=Ì3ËܹŒ–zyêÚQÑŒe1 1ùv ̬¢ö5% ¼ˆ÷>ù|‘ÇAÈç‹8¢ù«MvŒ«,ËÀ ±,Y–‡ù2a°–.ÑÛY–aR$Ö}àEtÜÒ}­û¢Ðq²Ƈ˜O²dÉx™Ãmð7à F§á2âxõæÿô|âì9×[ž‰’eÊ +°Lœ'Mò9Ð[6_ð,è÷ʵëæ¼ ôp¸ò;ò‰(aw$M=Õê^ÖîX¯i¤}£»þt]µ½jÔFôJ·´qdÇ-ñ¬¤?è·qu#»S>¢ïes˜0GÇElÁÃ$IÙêhçE¨,Ëe°Qæ0ôÒ„4}ï”в›ipEËòû¢ÒÍZô¢í -5≈/QR@Xºß‹ÞSRuDÖÂoï…»¼–²%JWÕpPÒÀýK¡læ)è[«µìD¢çI`z¤wO4³~ƒSSc†´ôÏwP):‡eUÜýgô'[Ù:&Z·~8€¿†3œîkÚ0ƒÝ¡ q²¢ Ì©Å3NTéä®sžNòàq¯j )‚FõjíÎnt/AQÛ™ñ ƒ'ëZ6Æînô#qÝìX«–ˆ/p“¨·€Ww–jôfÀ7QXÌtQIÜ#\êA,ñ0˜™Û ýž»=Ñ7Œc*‰ÎYЉåÈÇÐ"Y† `°7ÔÓí_fÁ®¬¦8*óàu¥[ݨŠfåĪ_æ!­Þêæ#Šî‰–îî>£F +3¸T -¸@‰ÍÆíŒ[ÎX«Œ ÔßØÁE|™!±Ï²¸Üšv×\ôXoãÜ¥!MÆ$<"3YíE«Lã 7>ʺžˆË=Ñ5dʆaÔïiYô˜ø6ž/NQ-Ÿ+N±u÷Ôa¯Ûôhoˆ²2°íµ®l—ú½†ç•4Wv ָ̂Ù$ÆKr5Œ_Ó+„? ]Ü?¨ÍRX±ITóY\Š6ÍmŽhÂ1Z;Ãtæ˜0÷8Úá X[ÉŽ"ü˜ïQ‡c(X7òÓqe…±Ã¹ ‡š $ ¿Ä} ë- +Na£9Hÿ?ÂÉÄyðáY|@¬% “AËY¡7Ž»¦ÑE¿¥ÜqQ¹pX|!©‘À«WŠ¥OL@dµk-ƒ™ÛKÚ!+áëx_ʾ@ÑЋ{[JDIMgœÐ#š—`RwÜìõPoœÓ½EmÊÁZ@å©H×@ì„jÕÒ+tÊÜ[‚¬¤«¶êÁÝýé`c–xÊþ‘jWqiug‡ÂEòÈ€4öW¦ô9 ¨gÀ¥QþLÁšp‡ cšÒ”²Yh›@ɶÒC'v7ŽØ ö;ô²í.*ùeœqh¸×ÂS•+#>²0½èsÊÇ!1’]+ÿÌØcºãÔdNxÉ'9áäÓ-þa,³yì›Ø÷Ï5à¨òýFù£vÃuþzvÞl|ðq ò8ø÷oøýàÔŽƒº&!­%a.Í=»V”춈Á²°³ÙŸdó‚ó0KOÊÍLh´T[¹*‹…Øþ `+GÙec¦Â>ÛKeÝ•øn·(•¡ÁiB ìç\Ëãùàïèåi·88­>'N£âT1`5–…¡ª„ '¥fǤ‰Çvô«¬0:qw¨öĉæOzèÝBoÂÝãU§i7—À3yÞûÁG*#»…L!çâí4d‚ä,<.‚*HùùÑóFµ6'ñÁ›a³“صÙø€Ã—ÍÆ_²i玳S|Éòs˜Îé¿Fè:wé ¡{î°ÛQè%>>óÔ&í”g½–ÏtÏtG¾ ¥‰ ¢4qøax¶wî4\£nˆµl%þö4ÝÒÙ†f[Df®%@ŽÖ0™Ÿ–L ªí_¾ 1G+û]Óm´‘ 8̶Òe~yI¬!'=¤Z9z£{q~t’#n×è ´ýAƒ.„ÆQ€†ÀØ¡lGÁ~h¬£ôÍþ0EáÈ%ßÈê«‹»3U *Ñ„Úµî¦õÅeé†ÂÕwj?`-è\䀀EPUû+ViÓ/ŒÀÖ…ÊûÇàp¥÷®úARø:{±Ê@Ò0Sµ³ë_aº36“²ÿZþ“8 +ó%O±<7ú;KÇÔu½:èáPTVk›†a2Lþ£ª‹~Áþ­¬f¿Ïœ\<ÊÃx¹dñ2 “Œ3 „ö ̳Œur¶}›¡l9Y±Œqékg7+»Š²Ü£jüLµÿåÏiéú9TŒ<Qi?þZùÒ§ +Wÿ>o7jûäb¹“zØùÕr'xd²Ý"¡»Š~ÄÆöWÑtî2 w, ˆüÔjáç¸@O>tŠnÉ«yVødô^´¡•chéBÕ±'œ_f6Ý]¦Oþ1á¹FÃEZ6¬ìkä:ï³¼“´øI>ùûγòäçÎ;qÚ/FÔ[ØÍS+¹e¾}‹g­eÿ] Lþc{i”wps4ìN"ôX™daD=‘Ç~Rváö¼ïPFç´ Û‚X߉êB™Ÿ÷#È}!-sÿbÐ$›½è€›õ62iÇ›‚äþpžÇÁ¢Æ8z»eF_YÍøĸxPuZ³{#{«lNàßÙÓ<Ë‚ç‚&† KV¢ÿ„ ±ò\düIÐŒ>×Ù|? i⻪¸[9þ‘µl/$C—ß’òàOæ«ÉM ÷þ”0ãcÀ<–-“i2i<“+R&†ñbƒÏãI»°9ßøÆEVÚ]=Bú”7JTG—óßalÚj©‰­/áþŸRûË{±]›ž›ãN§(”I*©Ys¡ÚøVÁ`€h’ø¤»ÍU\u~íùû×_Ž\Ù£¤u®ÛnçGÂMV<ëFúAIÖz©Ë?ë/?Ú¯Œ¹~è¹2‰C­úµ¬Ío€4¾ñ=ÉDÚ½s…Ðe.L¡*ît…–†ë„·hÿSMBKÉ{º-`ž¦.| {Ù‹•Å¥÷DcÃfÚ3Àÿ·9~døÈñ‘âã„–¨}UHí™= ud ’íðQ1;ÈÒAÉ{> ã Ë–|0§Çnªªa¶föLmYlÉ÷ŽNè½ ¿à•“ƒ– ïålmÏN’*ÚSï½à ï½ªX‚ØlºW±ú!8dã³gVO +S×(`îÜ1Ó4¾Ìy2™68mÂ~PE)Õ´jD÷™d§Oñ—Â5+òôÔjQˆ@lŠe5§õ­Âl ÉÇsÔÄwYNß*=¤9MÀ@‡Ä…Áª›Þr²—f•ººžikXù‘…ù Ýl k64Ø¡Ž†Àô¹¾R),Öš†É#nÎí\¼ÑÜ‹¤÷Ä` íZ1©ûMkøÁ¯þBÛK)5Ýͺšëh\ÆŒc[mËÎP!!cysÚwŽ[wë"/Ó}ÕÖÔ‹}ŸVz0 "UCê 9@u´]“ïZ“|ÔðlÒD%4®ÐŠ±ˆBŸX%ê,ìÒò~7yaª1®Q¹~"µÂXR·C7ð¸’íõ·ŸDœ­Å_Ëô+J<7‰c®ˆ)®·ú>×õÌÆÕO\á‰ç%0*Œ%XÅÀnèß ì +þXÙþ¬ÀÞèûd`Ó3öêŸPU°± +endstream endobj 305 0 obj <>stream +H‰¤WYÛÈ~ׯà#Œ8dó ²c;ë»ØÌ(ðÃ:ZTK¢‡‡Ì&gVùõ©‹uŒ±A¤®.vwUWW}Uõ}æ;¾“ÊYfÊiÍì‹SÏ~ZÍîž|'·Nà86¯g÷ƒéÎÎîWÁ¿}`®¶³…ïùÊYåÎÒ‹cO!"ÿŽRÊ˲$sVÕìw7™/åzÁ|¡”ëÏÿµúûìãjö·¤ø¼;uâÄK²Ð‰½0ÊP¹-ïxxÂO¿Î|/v^Èùřř·\¦Ž +=-ÈK£XþaãÓìûõIõÀyFéÁÅá.ÃÍœ ½0SÒm ÇÂÍÜ š¯¾Í~÷îþ¯y×ëreþèÞ}úøé“òýðýû÷ÎOœ™ëàÊ¿‰€6ŒÑˆ—% hµk}®;³kõ|øng6·Âê¶Ò•©»»y¸t¦jÖEYüGÖMíèzã<šbºÙO|ÐíÆ:'«‡aä%aH¦{üŸ¦º¼ÉÔfa˜yY^1µ™DpƒÜTkÓ:`£Œ ƒŠ½%Å(Är<ã›,Uäùaš°»¥›éÃ#™åééÑÙÌåk]àn]ãäMm‹ (@fáÇñEà Èù‡¬Í¶iq—¡C6}[Ô;‡9lf$5Y™¹mžPôö½ý©ÞIšyÁ2’0ù²/JãÌUâv{+xåN·Gš€ÀÔ5•.jKsMÿ9¸E«Kæä輌Ü;šŠÎÓù qÖ¸‡½¶†÷äMU ìw/7Äa†As΃VÖ¹iQ— q·MÞ[bãfúZU}]tGúlõÖ‰Æć¦,rR˜¬,@Ÿc=g+B©xžáCYíVІ؅'Ä}t­k¿õ8ì6‚±ˆbwÝÐ)ôè8¯t­w£Šç¤,ìÅÔ½aFÞ”¥ÉÑZr”¶<¾š²¼àãù…µ½öÁ´¼iOêz~€Ár®6^j±äKÁXÔyÙ[z#˜5[Ì 0íZC\w–8¬7m+Z¢ø¹ ¢@à ¯Aö¤£i(›=grHMN¡Ë9È`Ù+=7&/H¯J?£„ lrc-œ¯Y¼£KÛ8¶ØÕÅW?\æ ¯Ç'Nö„GGpŠ8 ½8Hƒ!¦Žê'“³[¿ôemZ½†™\o”ŽÈÒo`¼„G YÍ3iÒgØ×Â[!ºÍ)‹$™.tí ÐÕ`vfüá<¶™±†žOÁÿ¢:ÙÜ] (­þzšß^ˆwjž½îØ›¦öXó|ÇO ¬Fb-k6àÛes0›Ý½#k3YJ-Ÿ)Ü‘W#T…)2WCb9àÇ×¾r pBrf.œ8°°!‚+œâÌD‡ˆ2^¯é|ïy}s@cvˆË9õ¥iÏE'Ý€4g)wÝå†^'ƒ…€.õ+¦Þ2žä!¸®ÙÕ$óárŽ0 ä½As¸«G,2Œ…Lîµì§ÿgsüÖmÈÍR‚¥>Aƒ©íà˜)›ÆÄ·€õëú¶Ö^¼p4 {§ùÄõÓáÁ~l숺½îˆ¨Pi׌}Â݉¯wF­°ÏDl’›×Þ.¡oAÓ¯ ø<ûé„?£ƒJ½4àºËåRî„®70d±ûK~wšYØ?¥á7yM áiìé ˆ,s°|œ}÷ÑØÖ%XÛ¡…îˆû›nõ•âl#Ñ<®ôú:÷hóÏÍ+DûPcð5 s}Ðùc}H]øª@4uy$bÍë(·›|£¡Û¼éÐã[«¥·ôƒÒ»/ ô¡œÞ·˜C‡ß~àç!1¶ÃÄÑÃï ¿fŽ)™wЂN˜ãd?30>¿Çq ý @ä²ÔÊo?NP-+»Q<‚›é–z²b”TÊöZ~ÃÂüî¦J·²°¸± §Œ2G-¬íÕ†[ûJù WÖ¢j!<.‘¢ozúæïK!Iî¡.ò™Ç¼•7HqóÄ8‘pN¥]R#Tàã3c}äq p1/ê«tTÊšVn‰ûõ±âVðÚmØÍ0.S/°äª[5M+F +Æ.QÖµ‰pRu(›£x2ÌO]“´(¬°Çô'¾]5ȼ¥¥ô‰P +î˜Ï<Ð}(7؈ªþðŽ¾»9Öº*rË3z /d]º\ßÝ›òpK¿ÑM‡€Æˆ¢ØVXmi 4’Øêƒ<) 'Ö%x=ñ7 §‡¦FÐ*ЧU$(M%2uy´è^0áî ýl˜¥ó¼ékæRÊ. œ‹ûGÔôß.JN—7j©ŠêŠùž^P Œ‚ð¨LòèÃ;ÌÛC¦àdžÈ5‡me!EMâÞk"rhÖÐ!DÖ°abŠ ›Iâ¼YŠP*‹ã!íÂÄñP}b§—9a<Œ\ïmÈaÊUg<ñÄa{±•(ÅÙ)âȓgN%jéO Vo9Ýä”È'T´LBfy&=&…¢!"ÿÏ"‰„È¿†*à T5&ýÈ?/ÏÎ^k;l BØ¿ªUòF S‡:†•wì}¡`Œ€y‡@+°PSFoÂÕˆ„+Í¿œfÝÙ 5ƒ¡*¤b´7³ÿX0.Ôò¬Zºcmoy.ÕòÜtwÌ;O5WgŠ¨¥TQK.pk…@ ëúQÁ‹¥×ñ2~àe*QC:9ÿÜôÿ%½êy†èî_á1•èáø+ñ\ !TT$–.QM¥$”þ=wŽM“Š1DòíwöÙ~ïâ1õÁèhGôŽøŽ¸Ömv{¿Þ.øËÞ>‘¨ú¦n«aïû?i{i@Xµ)‹OuºKTãùèªNZ"ˆ¦>š!¶§o“ìQ«±qÒÏànÓä¹v h) eûˆÑ}%lÜaWÕ?Ø$4oƒŸhú6»»Z{LÆ">R“ji3û;0“úÈ|n÷£ÿŒYqþ@ñSMéÏá4D·È=®14š½†‘zy8øÕFpd J5÷õÀ.oбóÓQ€$4´+JÇ°`l®è@2MX´s8 i;ƒÑ!T I¶ˆFPÏõ{d!æfõÀÞy¼j\çÛœÀäO»îõôl© t†KÚñ.™ËdÓ Žµl“pi/'\% °Zý‚{†3Ò²WÄû7Ìlq!qó! pXPë_Œô-À€ñAr +endstream endobj 294 0 obj <>stream +H‰ÄWKoãF¾ ØÿÐGzaÑ|Š"0 ãG0‹Lv Èa¼X´¨–͘"5lÒ3Þ_¿_Uuëe'Ážö®.’UÕU_=úë$R‘šÅ‰*ÊDõfò›j'–“«ëE¤*«b¥lÕN®~ÄöÁN®–ñ¿#0—›IFI®–•*Â\‘Z“¼ãÒ’$,‹ ï·“à'ól5SËßY x"‘1‰ ~ªÛ'ý`¬úVªM¯>÷]e¬5–þ!¥±SJ +–t»œü"f^/ÈÌÅõÏ°)WßT¦>©½Åé< +gY¡’4$»²p«ä‰Ó.&_ÿÀ¯ =2ãøÈé<Ëd>?9²òv'gΊÂ4Jñçr= nn~Uº]«…©Æ¾^ˆº^ýj6]¿}ëäW‹nß½»ú¡FÝ,Í÷áÝÝíÝ]Eéû÷ïÕ‡›kåtß~y­8 ‹YâÇ) w!†ÓòÓ(‡vÐ\å –Db[B”µ9”LéGúïK0»˜Î’ Œ/¦IDÿZþã(`\åy‡"r®òY8+S^VR,6“<+´H9|ˆ"®tO_:ILb `‚˜äi©Š8Lg3•ÅI˜@g\†QœÑŸþÇÀ§Î‘‹<q4 “ðL2KcrÉ—`±3U}¥E¥.¦q°5ÚŽýE<€qbØGÝ4L­ /c»6ý ŸLËÛ¡ãÅ´þ7á>ê‰oÝÖ}¨^›¶êÆy´>•1 ›ØýÓ„£:…K¢’`ð"ñož1iݱ<Î<Þ¯^xeuûÀäéYè]ÇËÚLíP?lõP[‘¹1[ÝYuÛ•t;ØËc±ÛƒXý¬ë†­ ¦„'RÌé²·÷öêILæ^›¯£d³ÑUÝÔCMÑD«s¨5²‹Y[Ýo5Þ "éÇ|³íVò k/OÞ‘¹Xœsžë5*•ˆ­]þ¶±†élXŠ¾nà‡µ0Ä]ukc'f<ÕƒŠÕ0±s*v}Íg#¦ÿy0½>üÞ툶¢€c &Ÿ8úιŸLeûÌ÷é!8Pvc³f’pˆ¥n©ðáu^€‘º†× šëßóÊÂ*^˃ÅBöG˜2öð…¸ð8¸u[!*õ3}å¢8~ïê–=‹pЃµìc—l·†þ,s>Ê#@¾0pïIçKÞµ] Qí3ŧkuÃLûTSãÒBéÊ ƒM²†3…èõ¸Õ÷¼Ùã- tc;&xIð€°·L‰ATÎ!’¹É‡Ipb«ì;ÿ‰(ÚÇG6ÏE‘! +b¨Cöž†÷WÓ ë(ÓDÐKÄYñNÇ ú¤D§‰¯Ñ©w«O'þ”Œ†ƒ‡Ñg18‡úâ„m4˜¨?ȪˆþD¤°ÅûøC;ÓÛ®mülkÆ5;7ž{çÆs_½„Þ[»jïSo€[9شƬm(¾5 Ʊ´ÌX¡-Gi™©9»_ƒíÜESg,S[ýÂk·Ðõ¼{ð¨t{”®™ù^“”A¾ç*UJ\!åëÉ ‚½¶þ3ùï0øok§€Î´/Œ¨B¨SÁ¸£†2iôŽ>Ëə،™§£% Ö•±‹3ò}v„ÿ,èkûD+2œ*äQài‡riXÊGœ`qÈ„LšbLœenøÎü`ïЋºäîë ‰Î>ù°e®+M¸ãIîæ$:÷gœÿlyaïb•«Q8Äúòä]…&ѵ®|ˆ°œµpj©ù¹óéJä'ÚçXýõ7µ)iâ´‚!èq +$0ºg³úáq­ŒP$«k¥v0j'ÛC¤Ÿ£S‡ZúÙ©l:tR§Ú¶B¡LdAGÜ?€Ñî×áDÔ@ŽP5Júõõ,þ¹Ñ­Œ:IéfØòUÒåNB”ï§%t[†/Hi‚¥ŒÔÚç<Ï•9<+½sÃté&¶e|D¿nÎOùƽá¨Áž„Ûì¥põ‹†H̽ÕØèž·zdŽà·îÔY8éqrÙÞT†Z‘ùP÷lrº#õ±¥˜ 9î>If{¯æ~ÆBC¹Ú¼p\å~d°n0$…V–Ô#ëžEÁýòZ­0]]$‡ +¬ÎèÞá‹ ¥bÀܵÁôÂÝ^«O°‹d8Û>¾¡pÁàb(SÌ_5µ}T[Sa”«ívoÇÁÆù[æÛGMI/X•èû°ã¶„Óÿ=ìlFòça‹³° náñKu‘DÔ‚{ØZý—øªéq¢÷ü +ŽDÚP8Àµ«ªí¥ª´R/{ +ÄÝX ˜šd³é¯ïóØ€“°]¥ª)rø°ÇfÞÌ›7j/ µ—ÈðÝÚâß‹ô!tÇ€Z +]ÐÊqz1¥Ž¾V£3‰luúåÙÈ7PëŒE64ék† ]Øw}¬è€<%ã89íK\Ö ¢ ;µJHejŠ¡"ÑBeÑLîÑÛ*‰Yý³µÀ|Z¾Í‡îYTU7ø“Û§?ãúô¯ÛÊäRÉ›noœc“»Wwð 5—:.ˆÀ{âZUZ§5\ÏDǹñáÃŽW¢áÞÆLXk’Óì- +; Jø†óMw7SßëÖÕ`¶ƒÎàö¹¦ÓZºLcÞäŸ=$p-‘öc¶²¥¾+']¦YÀ’üÖ€šcd×z7i^V²²¡®øbpè Oã ±„ôŽöëB…܈ ›dꂉ•®$á~°ÇÒ·ÐDV ŵG-ƒ¥7GŽ±º…OÈ%eeš ʯ-ü¥½‹noôÿye%|ôáSÝ…bd¾¢Ñ£± Ñ<ßѸuÞr_i\ÐX:ókÇšìï†kæ7ŽÍα).Þš]žÈ‚º°fÞnþjA:oݯàÎóÎyb¾bïxC8k6êzN¹Ä*9’¯´ˆ­y] ± æ«È†ìièE(©+vóУc$W†Þ£ÿ]I’ñ/ q00z·=Dšþ)†¨»¨çhŒ:¡;Œ­Hg¯âuþ-ZG±3uB”`ØáŸ4Cšøä£ +¦7etŠw4Ùr¶«šêP´6:¥¬‹õn >qÛ•Ö\^¿V¡dž¶^OÜwcøŸáÔKà"K¡”9“)¨¤œ8ë÷~7JìEȽÒT‡¦Ð,ùüñÇ<üqý—¯ôÀÁ.„먣bY Ä€[,‚¦É‚8YÌøϦýÏ –Ynì-—$ˆÂ¡ÚÐÖ÷ßèâàÍ~y¶ÇôXÙj¥ÃH'^YÓîõlYšzQŹWõ·‹þ^OªfÛÙì;öÒ0ˆ£0™°w¶þÔúŸý?츧ú#Àç Ú +endstream endobj 261 0 obj <>stream +H‰¤WKsÛ8¾óWàHmE0Á7§R©šØIÖ[3©L¤­9Œ·¶` +1& ™(Þ_¿Ý P¢d{r˜‹Ð €î¯»¿n^À–ŠeEÈ:åýÎZïýÚ»º^¬ì™`¬/[ïêLw½wµÿ àãzë-„l]²Œ' C-$¤ð›‚ª0äE‘lÝxøéb™†>‹eúÁâ?ëyÖÞo¯Y ìîœ%)O‹ˆ%<Š ·µ;®W¸cuýÙ xÂ,f¿2/)x–å,Œxg,æyœ¸_ظò_q4 è‚= uqá#ø2yÆ„ˆx”'9aË@-xæ‹p±þÓ»ZíeûöíÕÏå0Êz­¾o?~øø1 ‚èÝ»wìýÍ5ó|†+?ü +"ÖÆ0Á +^¤`h½hݶƒÚur±?¨ »Ñ½ìÙ¨vx³ˆ2ŸÝ¨ÆÜëZÿϭѦe²Ý°¯JÏ·âçÕÈnÓ³SÔ£(æiQ¨ 3T—žÌcE/°b3&bð TͽêĨ À °€§‰e‚•0ÃòëaìóæçÛVheÇÃéåþþçâ3"åA;”éQ^Öƒ[õ·[;nU#keåéVhÏ ÌÒÍN¨¢°ƒ¦í¼’õ8J8H] X€sÿKlòàéDWì¬n´Å¬˜TÿÆ-ÜØÛnCOVÛZ?¨ÚÍ€àN:PÃC‰jƒÚITiQ~¬é©ÿ/Ï€c5l !@xi#pxq³wû¡¢Ë›Ö+ÛåèµùèÙã)…w5¦¦øªŒàu)à±êž^,ð&‚ µ}Í-ˆSx¬‰"Á¤&Šóˆ•wuÛìÆ€¡ß^}š¾øôƒ:TG¹k£8†I‹4OXžñ$‚¼NÒ;‡î†§%úPÖ›]hû îg¿à!Uâ›m¶`pª~ÑðšÓx8ÂäóñšAý#ö¿œÔÜù¿|þB Ú%¼˜àÂ5=ÅÙ+,ŽWf¸ÏºûËf<½û‹jà™„WºE’øöò¥2ƒù‰Ä¶³«ëªƒK¿ÙWÀŒªî w¶î®W+{†ç ëËv~å¡ÖA³±$!Žxä‹ãœ d1ê$ @D®h¹ý¦ÙÔôì‡8›>Pg!.‘áÕõgÌ{dâ"`+< ƒ©ÿ4Ðx^@fy¬ž¦ËiŽ‹j¯òV“zôë¤7 +x–ÆѤ7=é½Ðsn¥ò¶ÈÇ¿«æ Å1‡Ú€#¢(R–ðË·Þÿ-gÒ +endstream endobj 256 0 obj <>stream +ÿØÿîAdobed€ÿÛC  + + + + + + + + + + + + + + + + + + + + +ÿÀ ÀÿÄÒ  + o!1AQ"aq2‘ ¡#ðÁB±ÑáñR3$bC4%‚ +rS&c’D5¢T²s6ÂÒ'E7Fâòƒ“£³dU(ÃÓ)8ãóGHVe*9:IJWXYZftu„…gvwh†‡”•¤¥´µÄÅÔÕäåôõ–—¦§¶·ÆÇÖ×æçö÷ijxyzˆ‰Š˜™š¨©ª¸¹ºÈÉÊØÙÚèéêøùúÿÚ?Iÿ/#ÞZ-;_èÓžù~ÜìaÖ:óý¹ã†ƒÎŽo»;Ëðîyㇳßwü´©$ Îcßá§9.­¡.'K ‡8ÿ-ÛÛ^tØiP4çå‡Æß· 8÷·ÕÏ6·û9åÂÈÖÞ<àøMô#œdÁ¼ÏÝ·…ù†L¼ŒuŒù]Ð^þ¾þF¨Éª;.ƒõúy|”XýžÜƒS’7Wªò9ab;|9 ò!,.¿–¼zU–M8P;“Á³.aƒË(`£ +—"çŒY²”'_ïæ~–Vü´ê ñǃ¶‘P(kiÌóg;µô÷âc8gvXX­¸ VçÙ¢œµÍ¿[ñS‘:¨*£1¸ð3„û„ð8ιx²/o‡ ?_ráDm,5ý~žî¦ÑZÆìÆüL ±½µã ºsœ¬#·0F«»Ù¯$«nœçrǧ0U×Þþoi|óqØóÒÔ…wøò ¤=šó áÌLàÿ9ИÜÇç!"Ýù&¶øre4GÃ’"V#òäªZ2çµøåîÞÚs$t¥œÈ‘í¥»sƒ£xÎ2Ò>>ÏF[½ß¿œá‰ðþ<çÐ÷ðþ>‘•6µý¼“•rl7OIv_¤ëÌrÕ1ÒçÙÈõŽºäy¤uÇ‘ÝÚöבå»ãßös€owC¡·³Çœ••|>Ùí䘉=¹>Ì€}W'NJ§Žôrm^ü’gä}\Ã$›W[_jÜ9×Çõû¹y¼¹-ü9Ùƾ>’‘½œr£¥eŸn>áΠ>‹ñG„ÄÑÚàߊŒ%<¯ûñò†+ €u×N?a“yc^ÃŽ¦¦&¿qZÐ÷éñâ~²¡Žƒ¶·ú952›sz#!¿m¸œÄhEC{xÛ.ëáßê׶²Ú\ó„1œÂúñΚVÇPN—äÃ&ÏçÌðÕùBÀý|A›^ˆ‹·þþ(h:ˆµ"߯íãÝQlš‚}·þ<r>zZÉ#ø þ¾Î nh_-@öx{9Ûã¤èǹîOê³2³{žbŸ:2‚/Û^'ó>n5¨E·iÜÛû8‰GœU©UÒ÷à­’ÍR²0[^Úö௕f“@ÿ_,Õ)îßœZ6‹K}<‹ZÅtöž'±J–‚O{¿yÉï&áã{ý:hÍôÐ8 +æ€Ñ“nÜFâ3’M‰Ó¿köËÛ¸øñ¦º+üoƉ\;éÎ'K{yÇÍ'AÌO5õßÙÈ•%—ǹþŠà4þ齃íÛ§ßÎ(‚Äß·³™eÓ_¿’©!7±·qkrH¥¿~dù}ë® sƒSï[i~ý¹ŽJB ΃œFYÁ7=ûòU<Soé.êÐü9:™÷ |¿¿örLmkw¿ìæ˜ÇÚðÔónTèmß’c˜aß™Χ’#©ß¿†œîZÔ—¹#ør$•b#£7ÖbM iqããÆšŠÖ=Í®xßRçxÔû9 +ª×ñúyh<¸“͘‰`~¾ýY a¯ã®¼,}VÊ-;9·ÝÀ{ÀÚ'+{[‘ kóšàìý‡~wü’B;s±„í×·:8uùãEb³Š.ža棈ñ~ίKØ>È”‹ƒ¦‡ÙÇӚO.­ø'àôÅcðäžÍo~5ÐAç?³ïþŽK®Â|ðoo»ˆ¼Õ—¯û¸]ºó”¼È[Ýð®üÄôwþîüÄiöÿw8$ÁOnezpßOnpJ‡’— bonr0˜Í¯ãÎ;ל³wÓœJY†–äyÅ›Og8==dzáÌfŸôs ðiaáÌ ksÉPÈ"#“)g_ÏŽtµaFŸO$Ljˆ?M¹)1/>ÚvöóÍVÈ,u˜¥—KsŒp³Gogêy*ž¶ÓÆÇŽ”;ÍȲ߸^>ÿgð⇠ÀýÎÖñöqï  ~Ž)pìw {IãÝ vÞüÈô¦‘¯Þàó„•v=µÓ*ÜM¡íñäYJŦšü9J!kžçAÌSìÿ[ÙÆê˜D£K_øs +B]ÅÀלg¥òN᧴ý|o¬†×µ>ÞN¦Œlè|HKJpÄØû9ÈÈ°ß··˜* I5 ü·áÌžAª«¿%ÑÕÕ ‹iìøðFéÖ!PŽ nÕÁ¿.×HðÞþ<™4ÏcsÈ55l/ªüj©™¯¯~e°ßæ2k¯ÂÜQQäÈàTp¸F §³Šì +$ÚçOo¹~¼H5Óéñã´íÑø_¸â¨ŒI¶·öq#™q4Vúñ!J’þ÷ôp5Ï­H` Çl߆X÷ÔØñ ‹PÆßXãTÔ§Ogån5Õ‹“§ÕÆZøü¶6Ôr!“A§<Ça"ݹŽK‹xs†E¸æiî/®‡Ç˜ZRGñý}¼ì! ÛÙÌÉ_Ùüy–5UÖÜJ7€¢ÿG2üµûéÎqÓïmosâtç‡4µ^ÜÍ V¿ë¯2œ=GÓá§%ÒÓìÐéáÉqS:xwä­@Ç¿×ÌrÁ»àmȆ0§]9¢_)¯ððæQU߸ú9´ Üÿa2×ÐßW:}œƒY HÓéý{óòIä[•'[ó˜$Öó˜¯áù_˜æÀšanþÞãë怄>Û~·çi…›ýݹ.žˆ¯_áÇ)™k|9:QÏß_e¹°nŽƒŒÀЋ}|NbJÆý­Û·f$›o8îöAÛ^O¥Mý¸áOÎÀëû9-h˜ƒ¯Ç·:j1mqßÛȵ8a-§o¿%¤ ãÎB-~ašÚ÷¿>b@BÛ¿ÖyŽe`º¬ñ£`ÖíáÆÊ–0Þ܉:‚M‡ÂßÃœ’œÜd.m§;+}}|yÑŒÈÝûûy…éƒ\ß½õæ€[Ùùò4Ñë~ü‹'¼Ö<"îýüá÷óŒa¢:s2­ûý^ÎK…ör\SìïùŽe™|~«ŸÙ¯-¯ù^¾ÏÏœŽa§cÎ?ÊíbÝ»s³†ip9 6ã·<(Fß×·8¶=¹×òµ7ïoéçm†*›÷ç3†-ˆ·ÓÎg +Ú5×^tØhøŸ»žþ^¾Í/ûyØÃ}<ëär9á…ßêÔs¯å[EíÎŽçŸ ¡ïØs‰Ã¾»ó·Ã‡nq8uÏ·,ÛNuüºþà0ëøwçM†îî>îtØjxaƒ‹,•D#EÓÇ‚> Mîëâ-nd«¦ÛÄÞl‡bý\ ñ9ÚÈ'ûø¿éÍÊ ¿ÛÁO-eÿ6Úqe…d•™A#ïç*Þž,ÂÛxÑ[ÒÈæ¿»Æî¼Ag>Š,ŠÖ^LècÚÊ|O²ü,Ý[éEop‘Âéœ2ÿÉÎÀ‹XÛŒ°`ášÞ<—ª{qæ9GmyÆ£ R–ý|j©§\öö_©ïÌr(sß·#Ëî}<êî×öòHB Ç~f§¤2_NÚó2ÒÚÆÿ¯ÑÌѦáaß¿1È‹ò²û ç`£Nÿq¶§œí7þÎtÑßÃœv÷óç áÚ9¢Ö¿÷s‚SëÛKßÃ’)Ü/HŽRÛNJ‚[‘o¤M†V‹Qß’¾4þŽd°úÏ3ÒP‹€{xñÏÃD–¿TXZ€>:(p¬û…¸ ¡Â|ýøùE—„6ú­aǺ +/Sü8ùCL¬¢ã·ôó%vŽ¿Äþ%KföëÆ*öxëØoªq-äß_F®®3.¤éÈŸ7çÑýüâη½ù•?Jnöó7•æ¡-Ûµp…’Ö±ïíäèâZxÀ–ç)ZÞ öÓ˜g“`Ó«œ£ÏááÇ#5Mð¶¼{¢ÉòËb¢Þ¸¬Ê™NZ&R} {}œò† *# +×úxóQ“d…nxˉ`«n0bTB+þ\uË1y.—aáß‹8£F«¥ÿ]97pÊo®½¹6)Ì|t¡ÅZ+áÇ–ÅYW^ö¸'‚Hû¼+)•Kkߌ•Ð‹Ü~¾žrŽ/aÓÃM>¾e +û-É´š~ºrr!÷ó0¥/¯3EG`N¿G~s=ßüÏBnÞ'øóÍNcû&öñÎH€ïúó.𣾟³˜¥}ÂÂö?Wå˜ÃáõžAšb[B|~ŽbZ§‰‰ñúyÓÕ¸'êú¹ŒÕ3´xë‚a‡q{öð·~-0¼­M ŽÒX:6‚ÁÛÎÕhçÛéþîA¯éààhm¯ñã!“L7Â×ñã5NV +·×§·˜?Û°ñÂü‚4æO–M¼9,$j{žüêj}sÈupÝnÝÆþv)ÐãÎ’[Ny°°Ý†œíp0m‡:l3`íÎŽÇÜڗÂüð¡$è;óÍGouò76µ¹æÃî-nüèáúè>þv¸qçG>Îuò]/ÎþH ç¢ }=œí¨wt¸v¹×òâG:4÷·:4BÜâØhap9ã‡nì8§ÊT—A§lŽÈ4ðçJ»êâc4ÂDHâpF­¬½¯¯œ‡‚¥:)·ܯ!Ž8=,ašqö‹ŽsØ$œž’ €ÕÆœC$‚ßgŒçOVu6QôÀã:t†:µ>åûénLôÝ'ºñ‹|G ϨŸGÂ’Y$†3}ma§ ýgKdÃn¬›Hð ñ£ËOH{ÈPa67#^*rGNeÌ3 Ãܶ^é|J8c¿µ€¿y¡F¡AhþñŦIèZÅV¥S_£†K¦ý6ù×ôvÐxwূàŸ*¢âÜHLk§n0cýÿ§˜òòom{ß‹Ü+ócí­¹Á B-qÀƒ«ygt màx@=Xå²Jm­‡ nj…©*Mô_·ŒRÊXóƒÝþ®@©”žGY +žÖú¸åBvuã”FÖúyšüÒÛÆ©póKîµ1ÑS„k[Š| +¤ŠÜ‘ÀÚ/ôqK…åÙu6'á̶ *Ÿ²Olj¼Z…ìn4øñ;]¦: s̱ç5Iל ”+r\ +-§çÉ0JÜßèæMÂúrUVï§ñæ ÛmìoÈ2\smo¯:Y7žÖ¶¼æ²ÿ_£n$ öçÁ›áÌmß¿1Ïí s‚aΔ{×äˆî;÷ñäÚXlÀ ëÉôñ_½ûI‚+‘oo~M§£ÞÄÛàÑߎT8hcp5ãÞ‡í ‘¨â‡ ¡Ý­¾®(°ª{xqCAF£ëãÌtÁ,¹ã†N|?¤ñꞘÇðñæY© ÜcÅpþã[ñ;Œa¦0@úx’ÅâK >Œu¸…ï÷ò$ÕŒ‡R{ß™©ë Òür§­Ò×ñíÎÛܞǰ†˜²3ÜÉ‹ˆ$„Xè|=œæ•+acá~cóDúý|u¨ˆ;w#^.2\ù†%……µûÿ£‚¶Né»âÆé‡o×ãÁ#*ôL·K}\°Ž•Ç‡(ÚŸxäÊœ–¾]ˆÖÝø‡ÎyB%V°!€à=›j k5ÅŽžËsž[ÍQD ‹Ý}žÎ+àÌ'K¥¸ë†LìAûøõž`Úÿ3,â56ïÌÓã1ùVݯˆœý˜còþßoiðà3›3röSþÞ0¾?¼w¿#Öc…”k÷q;˜1-À ’=—âcu_iÓŒõ*’øë¯kã ÚöúOÿßÆʸïÞßÃ&§ +?SÌRS¥Ç82 í øó«{¿Àž{`ÿÀ_-1:Žt(ȯõó±þþybßòä„]·Ã“£¸µ‡†¾<•÷:iÌñF]{_´{NƒOabñ^Ç™Ò`âý¾ç(ñïúëÌÑEæŸÎýùÍ¡Eä*œ<Ø«ÛÈ5-¾­y­ L|4„e21×™)i ì4ît¿™‡­:Ôñm…a£°úxóM…†úûéìäú|9½¯úý˜0÷Ô9ÌÄ@æ×µ¾‘ê %~ç[~|å&u±íðæ1…“ÛŠ,£†³®½É· *”lÒ9ƒ¦*8šÌ”¦Eøq« ËçÍÆüZáL´šZÖöqK‚ã« öâ×Í‘€øºËXÔsoo4Å"ý\Ìô1ÏÚÜQ—£·øæLWÄoé÷˜§Ýú¿ÒE¬ŽOwÛ÷pu«¤ás3Ðþ¾ÎÌñ–šBºZÝõïÄÆ–Úª /îƒÁ¿§Ù1B¢ö´ÐpvÈ=6D¯~¸NQŠÜYdL¡ žöîx6å\¯Ä,4·'ÀU4ðä:Ú_—ŽÿWxòý|å•tƒéà¡€QÝG%âxVåàaÕ Éáõg”šG”ÛÀò½:©„š*ƒãfþ'ˆ¿ãΦï«ÙÈ3ÆXØsF\øýLiÉaÃ;ñA—0Ýç}¸»ËØ0DâžòcíßËHJ›C\åÛNAÄ09q?Ð2“qoȘuÉ ·Ç‹L—Ôèžp<&*`=Ño£PR¨µ‡ÖyŠ¯ +óX…'sP.¤Øë~¹ƒ’øœ¨¦h€·ÑáÈþ[w<æ:}ܘ’2ëôÎQÔÚs(© s¿™6æ)ª<ã`,/~`iµ±æªì4·¹Æž_0“É1/·½¹ÏÈYtífœá$BÃêúù¤Úmìý|yÁÒÿYæ/,‹~Z|y&(7 {?.J† ‡óäÚ8¶ÖþÙÇi‚üy:†ˆ>ƒéãÅYoßX^XßÇXzÞú\þºqë ÃÈÔÜz¢¤Ùô|/§ÓǬ=Ôkà4ú³ŽÔ¬%·m;ñë ˆ6§Ä[‘Àª5ínr²“§ˆ·ñ8!úž%ñÓæ16û´â/2R‚ »oÜB_)öëãßѯyäˆ*Á:rHÄ<£r{{9«.l >ö}‡üÈÅq}9:‹g]¤›xqÆŽ Ë§sÇŒ2ê$Ç] ¼4íÅÖTÉ•x‰UÃèïÁÓ¤#’¢Q¹t±ú{pÊtÏ£GËPü¥‰´}\y“§ëZÜeƲ?“ ^™ß&‚Zêöß…ó¬9>à›ZÚð.Ã"jyÊïsß‹ì³(¥Œ\éúéÅ–SÖè|8ý·2̓«5ÓÛÄöaÂÚš6`t f.Ꭰð.ÄëŒN@@ùíþð?ÞyŽª­‘Iøøþ¾Þ1âµm7}>ñ÷ñ®¯DﯲÜj˜3k§³Oo!T…ïk£j"fØqº¢ 6¿O1y`s‹Óÿg1,½ïÎFÖ—×Ì©JP?§û9æŒ |>Žpò +-½¾<èG¹‰s,15û^Þ߇&¤[ö¹6öû9"WÚ92œ0ð×¾£ÂÜÉ!PH#û>ÇSît#á¨æˆ¾šéÚÜç¶ÚõýÜq¥‹r }Üæñ-Οw1MºÞßèþÆêȬaÆŠ¸Zæß_ÑÆËl?NœwÃiMK€n}ºpEÊQ0ºÚÖ?Ðx `Ø[*Ü[P‡¨pF6>ÓÇ\?0¿´[Tù}äÖÞAŲ³½î;þÑÄž1”LwÓïâkË>Khºw׌8®cíãúøq‹ÃMŽŸÑÛ“@"k/{ò3D¿×¯+Xø5VµÅ…½¼dÄ?†ƒ‰üB!r|;q¹£1‘ì×O§žU+úüxáG5»þ|{ÂÁñý­ÛŽñÆ ¹Û™|±´\x÷æhàCôŸáΦ‹hÜ!mÞúóPm¯Õ¯q8‹Xq‹€aã¯×õqš¦áÈupÛ¸ú9Æ4¿ëÛ™Õ,4?¯nu*m‹~ÞpFø‹ĭÑá¯8H,¶ ò,ñX~Ëþ¶ã}\6¶ƒÙÆʵ¿åÈ“Xíæ2NºëñçbâÄøxû9Ïͽ­Î×Ðê9Á&ó ·áõòõ…!#žFý»sšÑûoÎ_(GcÎc§9-&þÞdù0Çš@IÓ¿9%ös£_Ï|ŽÞvhn{äÃJ-íàÍ—ðñC]mÉUpn0ã¶Û÷éÄ^:7½¹')(2ií௕鷢ý\~«Âw¡øö⨘ÉÓÛÂ_êŸ'¬¢ScãÛèåmzÊ–¦CmI#óà9UHÑòOñæ#Ýñ<ôq5·2£‘ í÷òfFepH׋¼»‡²"‹Xwà“€à`Ôž)(²ãU§cû-nO¤Èåì äÔʥ¶iô[Œ˜–QŽçK[ÙÄNbÁ‘ˆ#Ø~Yz‡Eý w·<Ÿ“…!G†ƒ·~+èò¬ˆ”ébO¨r”’jVÊ ïÛÇ’N)Ú;e¸žÆhÚ n ÏìåJ­·K|8…Å0à žçîãD±Y¹Ò«Ë™)Îó ½¹%¢ßsȯ+O8  9ÂZÄëo»˜^¨µííðæv¿g$Юšv¾£“éèšQ{iãðäÕ£1.¿ßÎR‘­¾¾E–ˆ¿·0´Û]9Ø£Àý|Δ‹Ûò<‘5Ïörm5+F>ŽT”ÂKw¶¿Oi)‚ÛÙ§h‘A¿‡°è·><ÐÒ…xß÷iXm8‡Þ. ¯ÉT¿¢ú-Ûøû8ñE9”ØÔŽ>a3ùqCEÔ~|å4·Öýø݈¹:xq9‹S³ãíþJæJbÊ{öý{p7ÍÍ}Àq;S'”þ sœX‘FóçrÖ3 žÀóókqbmõó’è¤1°ê¹øñÿó*äÚ¾'‚ßL²'ÏL¥…ý½¸b²GLF¶§P8`:=Ó…YLJ‡ 6IÊPÑÃkk§I—–%ºŽp› ¶;ƒfaíú´â_Â4ÓÛðâÂʃkÛ¶ºqš²ÆHüøË[].5ã^!:~i®€J1:Qï_ïã<ñ•$ÚúxóXxý|“Ln?o×ÇÌ*AºÝ‡ñú¸ÿHÅî5?U¹ ÓîúùžÚ¤õvçu!v’>ÿ×óãURm7·#ï!¯ßÆêêR;{4ã&!LTƒùÆJ„± øqº­øuïùó8Œ=:m9¨NzVG8ÌÛxs ¨m­¿¿õÚ·ßüxÙVF¿Ÿ!ÎÁ~˜Ü’5þà若·8 .oã{iÎ&{ßM{sÇp"Ä_’Ó‹ó¿’ÛÛœ…8¿<Ô—íÏ-5~dJoÎþH9ŠO§œÅ0s˜Hç$¦øs¥§¿‡9­6½;ùBo«œ…nuòtçŽ=œïù]ûi~tpÒ;óÃ$Xó§Ãö óšÑn¹ï‘·8ü™·=òøs¥Ã· sßËI6ÓáÎ/†íO²Å)O†¼\aQYœãˆÑ€8Ó‰:÷â#3âÞR‘~"1¬ÄMÏo«ˆ,јeO²Ü‘“s}T 7\ê80å¥m¯³‹ìª_ë~||¢êx°÷ûqëê˜Yßãíà…€gñ_÷µñלñÌ|Jº7,ïˆyá…ý¼z»'èZö×O«„_Ôó +j½Ë؃ßOoþ›U‰¦Ôj õá–èK$…[Æý¸apID ãŠ:)‚}\ôô"ü°J‘v¿‡$ÍP»I¾¼NcÍ`MüxŒÆɽ¾žLÉúÉsírzUâ±hïÙË óéÜp©zŽÊb¡$Òã^V漢ižÖ:ý|,ŽV^ö~ÞGùdÞÿÑÌ.÷Úöñä{–'îçjš}<ä‘>Ÿfœ›ADd`Ðñî:k4 sœ´…ýškÎ.[Buæ9h@ÖÜ‹UL¶ûùÆ8ÈnÇã̑¡nMχ%Aœ™ùFýíâ8áDÀÖý¸åHvÛ·oÖüvà Üë~=бCpš}çŽ0T·Ã¿'ÓÎ¥}ž7ïÉ´Õ[M¸ñFþ`öÛŽ~ŠÞáÛû9ÂYŠÖö}üÁ<Å”éȳwú8ßRÖ$r‚ÇóäyXAñÓïã­ k_ÙáÇj9ÅÁ7ü¸óOB#Ó¹½¹>“F _™gÁa¨]¤jEïü_&±|¹òÌm¯ëôq’z#–ú§£¿muíÈíÝžÎqŽý xóœñ²­¼=ŸO1…Úö"ÇKó,diÜiÌÈY…Å9yŒGfœé´¿íætÔèž;-“ÀßœÎç°=¹¡Yt#¸øòDúøq¾xŒdö¿‡#Jûô}/ÞÚñš½T’{^猕ñ€ÞÍfA{[¾¶·žEÝ¡öÿHBd$vçS¡Ûí¿#9$éÎ +Oöó¦öðíȳI'Ùߪ^ú_è·n7Ô÷×ãÈ’!ãîÂWËúÿ§œ{^üâÊößòæ9m>üÆW^à}<Ø ¨ÈðúyËäç!C~wòËó¸è-ßò·2GKm-õsšÒ[¶ŸO9ü¨:ûyËå€×Ù§<(¹ÈSßãÎKH-õßœ…;ù;sß'o£žù=¼èQi~{äí¯9šc¡°çš}G=ò¥¼9ÈRÜÎÖ”ÞÎtÔšøs¯åû…;ù yУ {uç…)'·°]çQñâà § +ƒNüÁ6Åâ;0ÔY×õp3Îx——¸ß¾/ŒùÌT_^@‹|Pƒkþ¿Ç‹l™Ó¶¨ ¦œZšOn··ÙÄö;N^í{G!êy§6$Üw×ûxõ‚uPÈâͯü…Õ1ºÅ‰¸âölò• }׿ljlךc +l}¼ú¿˜Vx›oŽ¾<(½s—ÒuàA‡Á+†¼z)œ†TØðÀålç ¤0n,)sTdm&ßOý;Ì)+-¯Áo/âI³S¯Ífî3cr‡SĆ2ÛÏo8åF;ÁàÅ“€(ŸW}>õ·3Næ!.ÝvË~zI§~WŸ«œŠËG+XhxF3NÔÕd{GÝÆLBŸ·!´*ÈïÌ"ŸqŸ0ì0°÷…ÏÙW*´›tïÁ/%å3W(R/moÁƒ%eÐìý¯n+,558PºŸáìâë/àˆ²ýzqðát“Æ|jƒæÛ]O±ºDXÍÀ×õ׈|cŽ9w.€s2ÂÑ>ÂG3QÕ,k¡ÓÙȸH„n¿ªk–G'w£‰üÍQåDÄ÷Óvy¨Ž8G`OÂüñ&ònXÛN0´/RæÃNÜéð‡¿#ÏBðŸhÿ»‘Èò×Ù¯#4® ô·Ç˜¤›qÓé½ùÆd<äÌög£„ø‹û8¢À¨ €;{xä´—ko3¦#/qíç¤Â$[~~<Á=!…{qºjf-¡Óêæ§1›ßáÎK'êäªxÀ}ÚrTtì˧3SÄWMGÓ臘ãÆJ÷µ½¼w§0¾žËò\Ooi×_¹69ö_^9aî&žÖ¶žÞ>Q¢ÁãÞÿ¯³“ášëo‡&ÓÔ•ýŸHäªYöëãý¼œ˜•Å´-Î3b‡¦ÞjÄkÕíû8šÆªD—#·{ñ#Ž{«on¼J× äßéuØ00Øvû5ç›û<9ÓØŸötÀ)÷Ô‹öýOþšSÇ ÈIµÍøe:cR Ÿ‡Ã†§4F­“¿ü‘ +ÀâßÛÁ?-T"­¸ÿ J úy‘^=O¹™Ä:;Ž 341cÀ+¬Y¹V&ïûxMz¹™Übxu#áãáÆÌ«šÔ´=¸¾ ­ITã¯ßÉÐNü9ÎIwøxrEÀ,~Ÿ»‰çP%'[Øð;Ìñ€Ýõéã Á°ìælu·½ñæ/'`Ünoû~žD«C· Imm¥Íµä*Ë5½¾ÞC’â翳áÇìó(ÛØwãþ­¯ß¿Ô\è>:òe )Ü{<8å 6Í-õü9  …¸•Å°f$¶—=øÇSBÈEûþ¾ÎCš—c¬s¦¶–ÓÙíüù†hHþ?G"²±ïo«"l}|ò¶¶žÞdYŠrV¸±½»ßÇ™©ÎÞÇ_ïÉ››v·ÓÇ<9ƒ{ý<’e\×îãžÑm-úû8ù‡Ç{xøiÇÜ> S¾œVåÌ4mÅæZ¡Y¶ßSÚü^à˜€Óèâ¿ÊÌlM¸¡Ã2ó$‚ÜqªÀ'ljÌCx¯íã)‡§¶ƒ‰|V‡k ÕÄÆaÃ|Åb‡ÜË…,.M¸”Å©YAã#D 1¶£N&±ª·¸½ÅôþLbvëßîúxÙ.¶üi«ÃC‹8É[†-¯ñãDÔeúyŽ(öŸgÖ8í@Û^ä[éðâ›°a{Ûúx¯ÃéË(¿nJ\#S¦œÁQ‚!ðöñ,xqŠ¯{ÛÕ¸qˆÛÙíã%‡²‚túuã%eô?¯Ç4Ìosõøs€‡Êü‰æ`·íãÎ%w û4Óèäf]§Ùý#Xßòæ6*Æ÷íÌ/µµï㧠Õ:û-ÈG¼éÈì¤ö<Æ`"÷çO¾¶ÓøóF'éös Ñmu¹†HJêÆÛ +|¯³ŠaßNviEþŽdZkóšÜÈ)ý¾<ä´»†ƒœš˜ÞþÞqºóšÓxÿo9-8Eøó"ÒƒÎB›]uç+Ï +Ko;ùKëÏ|©ó¡H;4àxwçb—ÇNxRßK9ÈRá§;ù@Þåò·ç_.X|Gƒæ5Oqí¸g…5jÇãÛ€¾ÀMô¿œó€µ¬Gm.7äPö2_\—@ZÚ€ ý£õׂvÕeªQsãÁä٣ÎIàç–ñ¡2[à/Çê|@Lºó+/¹Ä¾&w7²”…¤ãn 96KªðCÀ‰#œqÚ?1Nœº¹€‰ÕôöŽ¿V9 ÏC.–ïáÊÕêÎpêÂ,™‡SÊ%o‡8<Ž¢ç’hðã^ßGùS.|ˆ#Aíræ æ°Ó@; /ó@°ÔéÁ·¦9]P;jx0åœ>4Œ|Hâë-áhú_“±JTû¸šÆiÑ‘m|xˆÇêµþî$1ÊŸsNÿq/c÷‡`ãMo-©>:s¼O1Z?ý¼g9ƒ_ÙÆ\ߘÅ}<{k}xç,cçl/p/¯Uµ-ZÁF iÉtôH«§³™‹a7äÚ-€ïÆÊÌ8ÈMüxÝ5/”<…%1½ý–·8¤f3íúy–Ô0ïÉØ|$°·Š|"/$[é⦗ ŠoxãŽpáº[ÛÌUø8 íÖÜgÄpËáÆZŠp°íõr.Òæöí‡=áoKŽ—[ >E†–·'&Ckà/ã~MŠ…b±#áÉÐQí=ô䘡þðäÔ¥ øw׎tTb><Áð€x\[)‚´`x£ÙÌôØ;ÊÞ¼Ÿë¡ä˜òû­Öÿ³’/£Cìæ)2ÛÈm¯!Uäóìý¼h¯È­ :wã)Ó™$6ÖßÉìC¦Î¿Ã±ãMOO&]A?Wkrt´¤³-ôqª§’ŸÃ·0 lGðy<—Ø~ï Y +p›X_ݱþŽ”æ!:ª±ÔÙÃ9Ò¬EPþ¾ð [pÙņ™[[qI<$[ßóç +œÀ¡{ñ!›³˜Í¥gÃA¸“¨áhê¿Sª6Pl~“üx[ú—Ž‰ª ˆ¹îoûx›Ã³Ë8Rn éÜqu”úŽc; $xïâ×ÍÐÌ>®9 r";þzò/(RÐøqâK#htËÿw8ýRÊ×íᦸÒUXn'èç‹ÀÿG==1vî5ð×Õtã[ø¤q¦¶˜Æ/¥Ç·j!±ÞäS¹aÇ £k¿Ùz)ëßößÔ´"ƒâ ¸ï†a.€v×Ç“… ü_‡Çq¦¿Ÿø#:}\b«£Yo´q®¦‘•uÖݹDx{-ȵ0î:uäZ˜EûéÌ {oìçE Û[ëõsÌG~rŒ‘sßÙÌê +éØëÉ0½··~I%{é»OÏ“)çÝ©ïí­yFVR9Œ Qۘʭì;yËgðæ-‡oÕÌ Ân;öæ`¸×Ç› {s—’9osH…­Îi ûþ|ä´á¾Žsh@ð·<)Ã[œ„¹‘ íÎ^NŸÎÅ8·ÓÎ-saÏvøs“SvçIMÏß_:ùOf¼ð§#·9Še"Çœ¾UFùѦRmÎþXnv) …¹ßÊîç…#!·;v<èÐíòfֹ⊊+%3$6R|xf€8ú¬ÛEç+{5úø’ ¢ SsíÓ^ßOŽŒà+W {;pg¥ÁŽ5À_V¦#õð*êÞÃo Þ!„b·b‹o¤pJéçHÍfÒVý¿‡œ»ÑÂÿ“ïÇ©z+'ÙN!3JŸvœó¾S4@Ú㾜³¾CZݸõK ¸}¢Ü³ GÊÉ{t<Ç犜,Ûq°ì8,tÓ¨Us•ÜÚ£†Ã¡y¾J³,xf²^.ïëÅÖ1+9Ÿšé§5®K}|tÊ·}|2|¥Qx$å’qjMñÞÜ z„‰ôöð¡úŸÊ¢L:RqÊ­õE—ÿ—â/árOçÀv(íaÉ4´åØqöŠ”H>xF‘E‡»‚[£,¾><úu…±xÆÝ|xÉ_˜·iôq£ÆVXɸñó6.¨¤“oÛÄv%Ž-JÛÙìâ/4f0€uµ†¼ITãéN—ðŸ§ÇU9ååq±´Ýìç†d~å»wâs5gf©rª{q!ˆTɈ?};ëÎtôFÃøý<›MBPf’ˆ}~®D–Ÿ‡!KH¦ülÄéõí§¸Ó=‚}¼Àñ\\óš('øñË ŒJÖÒú~\Sàñš‹ÏŠÌDbÄ_ŽÑ2E¨ïΧ$öÑÆŒR ÷úuâv¶œHÇn¼ŠiÊi÷“ý¼Ë¨:ò]%1œÔqïü½-ôwcÃV²‹òu._y–ÖÓ· Ë!­{‹xöã•.L2þï%G“¥&Öãþ ’¶X…7Óèâ— ÊrnéüøóO“_´/û8áG‘ÙAߎ”y ÿ‡^üÏHÖÛ~<•&NV^ÚéaÈç$–¶–öó“d£nÚ{y£#|/ìŽ4ã‹îètµ¯Æè¸ÓÃï·ÓÆ +Èü¶µô·kiÛN7Ìžý¹XVÄoënC©‡[v_§˜ZGnv´a95Ç8¬,G~ÞÎrX¾í;ó4 \ ~È&·~ÿ_÷s*Oìííäì6fi@?p¿ëÛŠ%˜¸µµÓÙÅþY ù›mÔ§‚FWÀ¥—mø#åL +Hûë¯~ÚÞü2–cAد‚†û€[ÃN8&ÆÃÄs…E1½¼y¶˜:5âG0S¢+ÃLj¯ôñ‰í”맳*¢ç]¸Ë[Mævì/ßN'«ðýÝïñäpµ•¿‡$A“_ÙI<õgN¶³©ö%³Ož›÷¿_~!ñœ°ô­khIø[N3˜Ú˜‘caã ñãžXÑ{ßCúý[àUåÀ¹ñâ¿ ¨w½ûqÒ¸±µ…ûs´«!ý½¿‡1,4:“ì`Äp¿1}·ì~Ž'1?hö~Wã-L5âk¦Ø8ÓQÞßPäg@}¼éßr‹}|*í¾Ÿï曽¼|~žBe,N¶·#Ô9ûý¼1- r6Û¹ÅA=´úyÅÁak[ûyÎ4$[½»ó¦§û¼y‡Ê÷y¢þÞl&ñ’yÉVÚsšžrXIçdþ¿dHÂóRyGáÎ~O‡;‰7§œÖŸ™JÂäs—–;ó—’<;òW­6ºkμ£AÏ|¿`yÚSíðç?”÷{sµ¤ánwäs±J‡9 +kxsŠ@G;4ÆÜìB´ +{xrE 1 Ǻ(HïÆüÉN|¿ãÀ³8ÄUÚâÜCãðŸ$ýß1þŠªÇøptè&,)ã$Ÿ€à±6jÔG±LÇ–H#Uó +ÔDÊ8ÙÒžœm¼ÖSïxgzwÒñN‰eð0ŸÇÙËeMÓNÜ +3ö^E qíðáz꾑)°ñá|ÎøXv"ßýQÃöo°ákêåÊI¿5s4$ŧN3IÃäP×Ó‡/ÓŽ>µ wíÛèñ· ®@«F¼RÑß’19l§^0839öqó-C²A§Œ ›Q~®ÙT‚Eüxª¨‡Íˆë¥¸gªÊÜ,Þ¡p™¡—NÿG*«Ö¦YjjÝÖî[…¨SÙŠÛ·&a4ûžÇÇŠ/ s§€ý~<\åU'_ü2^P© lC¡Ÿ^˜ôÞ¤T/˜6ð}Ã:u4+[@ðä,O zµˆöñ¢»j.Ú[Óg¸÷·cáÄî`ê]58%\h{}\ +³—YiœµÜ|8cÝh†šK«iá߉lWªÕ’YÍþáÆJ¬í%wf²óÇÄ_½sùóFk’¤mSs~b§/)¹ñã•gkØñö—±í­ýœ—ü˜‡‡1ÕanØXg+p÷^àƒß^B©¤!µöÛŒ¸¨(û¸ÇT†7×KsºÎQ'¼¨ŸÉ7âŸcÔöâ–†u +íß’~l\wæQ\|>7ÖÈj øýÜlž#ÀrU#é: rM-+N4»ñë Ã÷‘a§Šl/ ó,£èþŽ)ð\¬e=´øñOA“w¨nxù‡týåk¿¸GLÓìž©çFÌÇÃáúü9ÚÁ¶ÞÃo×èçf ¾ûs£+Ϙž”©¸àTGÞþ:ó©$ñ²üðr~Ÿ‡:þ|UeÈ ív? =<ÂuÁ=¬³¿Ì£–™¶YF¶ï¯Ü©”ÞA¢~\òÖV–+q_K‡˜ÒÖ×ãÎÓ´[ëä)Æ܇^Uþ¿_²¥B,Óˆy7Öߟ™‡6×Û~¹–¿Ì¿„Áµ½üAãeI*OìãMld-üu¿jT¶ƒÃ^ÞIÃ0w¨p,~Uàùe’ãîíìãí6TÚº­­ñ‹ŠàhÃÝAñ¸¶zÈ°Õ]•,AÔ[jÊí &ßɘ ÓH-{__o9oR£]ú8¹ÀêÅÀ¿ÕÅ+ßâ$[Ì'_£ëQU5?ÇŒøŒÖöúøœÄ¢vöÓëâo‹[[ã~&1Zc|{q‚µDzžÞÁ§ àb2Ü€mÌ2Kq¦¦Ü…<·½´Ç5¶›öäJ†òÀý–7æ +‚öðöò;O×ÃœTÞÀóň: 9Èû yçœ% ÷¹q#ÓOôÛ›»©ÓÇP¨ö{9‘'Qã̉2do·œ‡~eTs,Qøó'ËÞÀó$q ZÜæ±oç~AæO'O§·< $ó“A~à󵈋ë§<‰}yÉÀÓ„ïÎÑ/§9,&öþ<È”çÇžö¿ðçmOsÏ4;IÓ¿;ò9×ËyßË‘¯3PÁïÿ=RF³ +]°p(ÏŠbr~±—_)†¾

ÚŽÝþ=¸%tÓ1^ýý‡‹óu€îy·3³!±â/i1êŸ'ønn‚ä1 :nðÊd¼žª«o‡‡Ô9uiÒöâ{7Q€N¥*ſÿ _W« M»ö¿LÙ›iðà+Õ +PªæÃ…‡©žó0µõý¼ ñˆ¿2Ô»¦_a¿‡¦$eýCéÓ‡§$Ç·KðQÀŽÔç,Z}…¹Šžö$juâ‹.Qþ”pOËÙWïâó,Ÿ-âͼ|HçJ Á¾Žþ´`1FãéådzëÉgs°˜›û8Ië©~^¡ð:qÃÃýýÖ×ˬ©‚|Û·¾˜äÁ$µþŽ¾˜t±Z$o,_O¹¥‰î–Q 8'Räc„/ÃN0fî™E$d©sÏMZ°6bxõ#«Â1±·Ã^y×®W#qúxcµ³TµÄÎ Y^ý¯ÈN¯‡8»2‹9Ó<’hOoo&ÐR¹{÷â‹÷á¯ŠÜ 8ùM„’EÀã’àBAØ{y¯1›Ø¯ÇŒ˜Î!ï§Ó߉þ-ò¦V2=Ø_áñà‘–òY“¿Óo×^+°Lˆò=í¯qôñctýÃxÛèý¼Wà¹##Š*NŸéØ}O'ÅÓõ'øhxãIVÿg·érVÝ‹}˜¹0Û°<Ê™<ÅØ_œªá»¯åÏ6Y­ãÌO–þÞF“,ŽÄ}\Ã&SÀ>®`Ÿ,®Þ܇>SÜ>ÈâkÊB@tÔ_[p6ÍùP#û8猻åp.8æ¬(£Ÿ¯æb¤=ín7R·´öãÎ]å7½{{ON2Èà‚tñ׋¼¥ÔÆ¡¶æ6·,«Ë"bHïÇqÔ(ä>¾Ï#VgÊl-íâ/9ç¨é”Ý®>›ð%Í™ Ö³{>»q Š®ðM{ߌõA£bIÓ±þÎsêYt×_nœPáµ{FŸÑǨ+/·’!Ô|=ŸG%CGßÛ¥øçE…™­¡ú ¸áO—îýí¯#ÁvkßœŽ +¬/ãÈ“á,ZÆÄ÷¶¼…Y†Ø}:'q /a$}Ïî㶫.‡¿³è·ðšbíýið™Пo:­Â¤q¦‡èã5n )×ëãN%‡=‰:[ããÆÊŽ÷ýuã=t ;6ù~ö·øó)'µ»xó”V¹ÔXß^üË1ðÃ’}X\{y¦Hkh5þc4»W°#·ÝÌrSÿÖü%1îG×ôsAú¹":sr>»r~@×Ç‹¼‘ƒù{[· K2™˜‚F–09‰6Ø\ØxpRʘÀ¸û‡¸6_M‚ã’çÊ›âümÄ°s׉¬n”Ò5Çn%±œAšàx_¶xÇZFŸ~ù³8ìÿ!±¬Ðgñµ¸–ı ›}ý|išMÄüy +}¬ïoãÆÊ­Ý»û4ý>q¢ÂZ«q·¿Šü¹•šÀ ^þ4b¹›ËSböq9ŠæñÚ öÿw§Î,X~ºód^-ÞüŒØ§–{éÌ°ãCÌÉ‹ñæh±A~üÏ'®œ•OW¿ÇêäêyKüs¦O3úy":~dò,;s±OùóšÓƒôó±NmÏ +{ó¶¦ç^M;òyÈE»ˆ¾»sµ‡yç! úù؈۞ÎÑ6÷¹æ@‚þ:s±á‡9%1'Ns¥ˆ‡Ó¿é඼ƒ˜"ý<ºŒ =øbR–Vöñ‹Tç ñïÅVV­xÓ¾¼}—v¿~f4ËÞæ߯NJŽ™dQ‹U‰b;ðÖôŸ' +H”{ðkÊØ_” ÛŠ +™Å,gˆ,é‹„¿n^ÌJªÿAáZên.kå"ãmïôð-Í’’ ×·î«N¶{÷,D`ò·Ó©â¾ŒÆuç ³!E$Øž/LJám~®þŸ)XŽƒ‚f &ÕãZþc‘ß’°Ú]ý¸¤ËÔûäÁ.x²À[kŽ.¨[zq5SoRx uKA úy^^¸2€š'Ó¾ïáÊèÌxO•ˆ:{Iw0J3$ {8'ô÷iäF¤}\3¾úJø¢£ϼuÓ‡#¦]ùh£ºØ(‚® ‘VnÛôg&¾QnAã9@ÎíàYÔ<*µü8õ.³ïÒà›ð¿õ3*ÆÈåEˆðà1Šà÷$[é·qLq×u´ m¥ü9‹ùw˜5ïÎáÃÊ›}|xðòÀiß^)pl+`ÛŦ„€ýÞú´à”0•-üx%eL›X}C‚nUË{€6îà‡—rª..tâ×Êu`x¥Ãò¢¢ñÿ ÊÊØqα§nMƒ/ª‹Û’¡Á5íÌøçÁÐÜÂøJ[·0K…E®œŽø|gØ–'sÌsa膜W…¨]nB¨Ã¬;q?˜0¨ÞÿÇæpÁâ(Mµà?Ÿð…>ÇLñF¨çO8f¤òdzÑ)ý|y$‡NH§Åž?Ç*,vH­{;a¹Šhœ{Ä×PÐfj›‹c}yêìÍRêlÇAÄþ+Q5U÷_ÛíúÏëQa«5ˆÊOÃõeÅ©¼xÛ§w{Ÿ¤{8ûA;0Ôñê„´¿G³ó⃤i¬c©úxûA„ ¿XVŒEdž¿>ÐåÐMLJ~gþ@ê-ì?W8ßKZÿÝÈ•¸PÛü8Ñ_†%¿·‰¬K QÈ~\NbtŒ§Muï§Ôr6 Né~Þ>Οgê.¬Gm;q¾v¿×΢‚ZÁú1¸öÓ’i²}}U†Â5û¸áIÒFºÀ‚?‡ÃŽô~Ÿ+fû{¿‡ìæz¯N©L—}ÇÇ¿ëúaI…’7ê~<‡6KAد³Œ¸¦5! mÞüDælÔ¨ÆÇOáÄ>)µAÐøûxÕQ;Tw?IäGc…ù²4¥¼y·÷ç +|X/ß’F({_™é±‹øò|>ô­±6RTžÞ>ž›z>”Ñ'¸¾3xNJHÔm<¦]W·ä9Õ^R%t^$³Nd¹+nýLËï +1µþ®9ã + Å6÷¿~SÊ»‡Ë…ã1Qª‹q=‰ÐomF¤3bT~Z\‹ýÂG0TS9²“h?ljìrüGÌÙNÅXð'ê5•®{ðê9»1Ô‡ Ü·:û?oiÆÁðøó*Aü9ŠRºør} 7#Ž”ñyv¾ŸG°êrö#·o¿™ê©Eìxß<#ÆßG+è‚û.ã=m9Eº÷ã&1 +t`¨b·Õ~:á~ø‘ôkÅ&¥­qáãoX&樿³¿x. d7µü;vâŸÁ‚<~®ü°&Pn=ºòråó!í§†œÃ]–‚žÇàxÕ[•ÝÇn5W噑cľ3—X €,?>$q¼”‘nÜe’€‰—äÚ1{‹Ì­…+ÆÇ^ Ù7 Hi¯Ô¸o˜4·;Ä0¯Ñè¿wñ !aMÛ÷q7˜0”ª[ ´à_›ðæpÊEî×ÄU^bs¥®uÓAqÈÒ½¯áȳaªn@±ï¦º}|íi<½Aü9.RÇP/á~:ÑP&ÀH×·25 ðøxs Ø94טÓ+Ï.›MνÝÉ ’ªe"è}¼•K“*—ÝøëÅ.Uh£—òã¥6_ò<; }üQåü)UÁÜzjÃbûGl` àÉ”iƒ­Àöqa†Aåxâiì½´ã>1 {éÄ6mÃ÷ƒÀ3¨´â{ø]M•Ú"}§Ç^ùžFýAâO«!µÓâ8×U)XžFYXxýÜ›F…ío»ø-fK8«À0ðiÅ55!Pwj?‡%Ñ'C§²ü—ÛÉ>Î7âñî×SqÄ>i¦$µ»kÀ—¨*iâc¥¿»€¾j°7=ÍýœM¹´ ÷ðýmǬ>@–&Àxqûª½œr6öæ:Š¦Ù§ðúøÝUYbGo…õ·ê*B }¼mª—qã> ûØ“§×ÆŠÝtau1+].mà-úž-):…@ƒ(·ÑýÎcźτÁŽƒÙý<@æßPljÉ樷³ÙÀŸ7uÖŽ£vÉ &ü1ήùä…$û,x˜Ä³ÕEYЛñªl^Zƒbo~bóCtìú9†HÀ½ÿ.lC.èy¯Üšs&5´Äê9™qÀÚrn‹ïs¯hkƒ(p‰÷õ_Šz'³qçÔgb6 ó8OrèyÉWO9…·9,\ì&œíRüç7לÖv°ïå¯ô|9Í)Ê÷çoîüñ¥çMNWAÎÒ”¿:ùB<9ÈÒ‹s$á\qÊ(öxߎÅxþ³À{©±…ÃNŠíw'ãÄv8 g9 +`ÂÄvÓ‹H]GÇ‚?ErÄj‘í¥ølzs•E:n +Ù{%øõR4\BçŒQbCoî¯f¥€0¿·øp­u3éØ^âä›ü8㘈[Ÿ×QÀó:bAAÙÀª˜‘˜_S{߀Æ/N 'Úx—Æ•ÒüåÓhÚlH xÿÃÙéò¤1 x[ú8g2(,£Ù`x"á +|£Î›§úø£Ãb·ÑÅ ¿‚\qQ„$âëÖ.rÆâóý 3åø›NÿVx/ŸN×Ò×åZz‚ÀÅ<Ú}£»‘ú3‡1Ä×wÙvå‚ú_éÀXQØ •óáàèæ\Ž‚™t··Ã‚®Gç‹ñê— Ú÷'Ë„…]@â[4ኪtºŸI€·Ðxç|À›\ê~®Ý\ÂV +éèáUÍô?é-oiâr· ßÛÕ ¨¾¿Ç‰,J%½ßo8a±°7ö(p×ØAøŽ+p:€x-0 HFu¿´3(_mþ<–ÌLÙ)0ó-µÖçÛü8àp6µ»rN^0‚@ÖÜOâØ l7±ð–^V±ÓÇ‹¬™–^%Ç‚ÎCÉî¥|oÁ³"eSaí>ß±—Ìxñm‚àÂ1r4áºqÒ!´iÛž2ÌÔõaOôòe5Y:ƒÉU«tægœmý¼Ä*6æ¤Ý¡ððäJy®ÜQ ^Fi¯§8-Ø[ÙÌžò›ñ3ŽØßîj`oo9ÞC iÀO?R^F·,áHú>¾0Ç@X j=¼Í )^I†¥ÇÂçãÉ”ôöÒÃ’ciö‘߸4»£Aí·%Ô(r-­ûý\S#KiƼA6³Œx•1b ì/õ£‰º¨ 8ÖÿWíã® HU¶œX`¶‚MŽœ^åè€A¯m;|8´Àâ*ãì⧢ݥ¯Å6AçÇ`ÀîÀ·’Û- ×à;Ûê2€=¼/ƼO*ÁíoÙÄ–5•KÚÚñ e&l¤[‰LC)'k}?­ù†‡%’ý¯÷qg–hž N o v]Ñ!­ßŠ|86ד֙ÈNq“5€‹q?Œd戛׶œ@çÜŽÒ'š"Öà[e†§žÀߌTB6Õt?³¥¥ñ·$QáaÎÞçïäØ0" ¿#íä¸0†SííÛ’"Âœëìü¸ûƒeÿš¸µø¥Ã2; a÷q⃧lÝ—ê¹ïùrd]0ÙßÙÉStúzx°Ð,?³êr|‘iÉ> +Q¶·çúŽ.ò{š'àíÓœY=ËÞÚ~|²V +›|8µ¢ª¸ïÉâµUm÷q³©óGfÉ©:«àì;w¿ þK†ñíÀ«3Òyš‘¯ëýBâ°É·n6¨3IûùÚR–n×øq×¢Ðø5&¶œTa´Û~î()#óRÊ4øóÒSºãáÈób.5Ð 9Æ=Í5ø¯. …øgú­êQo¯åÀ:e:}ÞÑÄßï[_m¿?9P=Ø[KvÓŽ´•„cÇz°Ã_§ëçªjL‚Öøq®¶¨\›èy +¦©¤î;kÈU’KxŸoëñãMkø__oÕCoÇUr׿‡‡³‰ŒÙŠ%4EAй³v¨Ü éáÉX?V1,%Bù„¯nü7ZkλɾƒSÆúÞ¬×T鸿Œõ¹Æ¢±®Ìy\NY{öúyˆJ|ÑÎÔ§9ƒq¯9°ø{w˜³:Ÿ§—ãb3®€r<™‹ÂüýeòIç:lÂ%µ~?`õ¬ßqC„Õ?,òü…¶ßŠºÝßø|$[P)ò@Œxó ‹_g2ˆÉçE7d ´ØøsÂ=yß—~dŽ2½¹‘c ÛÀó˜P9ȧ·;Ùo¯Iç5MÝùÉc$ß¿9yVç–"9Ù„v)…ù1(ú9Œùzp êld†·¼UvÈß߉ vïú8í®%ñ:ßóà™‡QŠ‚ªpøô6ˆc·ÕÃ’#ÑÁ‹js†œ™5ñ7â› ƒÝÓx:]ýœ2Ü7AÅ6›d‹|¼Þç&âp ð;ÎÔ€£§…kÔæ*iŸKèoʶõe€5$ïâ?o úgÀSªGðf×Oaå’zt„è€á«È-ä@¸$a +¨Î+0ªÕ _ÃÇÇŽÉ\ÐŽ?`$µ‰ðøñAM¡ðç +Ú`táÆl!Mî=¾<[àÔàÚÝøùM†ùºZÜv£Á•ôs¬{-#®¿wÇÛÄ&tËjÔÄÛQÀ“2åXÀ ‹ãÄ&eË?*Oˆñý|8•ª¡hž›}ü—€a­R×±öíãņ•âí©6ÓŠL+§0#B4ýtãÅ'IŽ=Ûqóé$ØýúqQ‚ôø¨Üx{x«À:d§R>ôñKM¡6EýœÃ_ÓHö=¿¨âC0dq³ß&eËŸ+!ñt¡¤ {ëcÅÎHÌ’a®£ÙÁ‹#ç-€'‚FšP¶ÇŽmîr~4^úñ)™±_5;ðê.#椗öY¶?9šÖ±Ôû8fj!‚äq ÑÆã…?¯2G…aaÇŒ *GÃÙÅ>……±±Pá´N<ÒÒ”><Í%“Q¡ã3G¸xýÜJcSHŠ@=õðâ_˜Äºëôüx‚Ìð, ¿U¸fL¿óLHMuâ:»jBH½¼]9†(¶äêi€¿‡snOˆü=¿—9Ê_aã^ X'`‡{q®i˜}§^G’³xðý|xßY “_oõ“ì×K|8™Çqå¥S¨ú;p7ÎÙ•H¹ú8âµ&¥‰?w «ÛêçWÝãέ‡9këÎÕÞÜȱùÊ!¨ç&<>¿¯œÈÓžŸ mÏ(ü9vc2!‰…ìO1C,Ÿ½¯9Ô׫FMíãß™òíRËc~9je_·ø-´ño—i~Ïø|:Ž>áñ^Ü{§Mëñäˆã'AßœÌAO2¤,Öös“Sû;s’Óîäi¹Í!œãŠÝùÈÆ;òŹØAÎJƒì·;\û9ظ<äFãÎAO~v£™DZrB¥×ØÌwŒéÀ›©Û¯ðà-Žª¬Ý­Ä¶1M·ïü¹7%ÆÑ¿<‡GóSG¦špÓt{ XÂð|ÊtÁ}T3¬1ñœñ_.6ú8_úÇšü˜Ï½¯ +GU3#âl7\w>ÎÇÆ!6ëû}½øšÇزÀ¿<b>Çf5†ù’1>ž:ÒÕˆ5}¢ÇØXq÷ÅÐêN¼U`8§šGxMHe×SÉì€x^üâô!À>'Õ¸ZM…¾ï»‰ Û…E5Å…øfL²q±DcYxÅá÷4»h8ï†`>u‡8~Si$n¼QáyH±[ûtâ¯ÈäZëߊœ/-ùDP8´ÊX<–½¾ò~UW¶—à‘—2êܼ_`X/—kû<8ªÃ㣓m£ááÈU¸•…Éã6!Û±ã5V`»ëíç¡Ì 7ÚãÆ‚~×еÁãÝ>$wäèj÷÷çR¨aôò,±ør\ú8ß,±¿:òÍtçŒûyµ=ßoÍÍïÄf@A··vx§î8 çØœ1ø|xæ¸>ËéÆÊID? žKþÄËå±öøßœé¤òÏ{ý@}ÿÑǪzb}¿G3Œ8IÜsŒØXÛb8щ`÷âüLc84g[vþž$qÌ A&ÜJVàaX½õ¿ê9›¦·¸{Ž(°˜—¼Ø%BJ ‹iÅ> À¾ºŽ)pªa(×Ûß·=‹S$zw·ùÞ4hÊèGöð1ÌØ]Ïìâ#Â,ÅmÄv1“÷H@Ôñìuã®”H*-¦‡Âü²OOäÄ‚¦Äêà«‚tíi£®§¹ãí.B„jWN:a¹"d8/O‘£è·ÑÇز0§#NJl-ýÛò4øm>í¸‘Î9M,HPn<8bxa‚Ri~@’ˆÆtñäœ* Ä×¾£Šì3š3{ý:ñ—³ñÚ.O‡Ð禑tk}äÙ§·çÆ<ÅŽû½ï~™Ú¼Hç¿ô÷à[˜Í&ã[üåÊÚëÄ~3…ok©×Ãøs>þÎel,£ZÃ^ä~¾Ÿ (Fœt£¤,ºýÜå5ªé¦œbÇ(Éyâ?¤'CÄî+…ù†ç‰\sóIÓ‰ oSû·?"ñ¼07ï¯ص¥{€y‘ûwúøíK(e¶·æmlEôör%Ñü>¾1â0ˆÁ76ûøÕ1e'‘ê‹m'_iâ77æo–6íã¯<Óœ '^ÿ×LjŒSz²I&þm‘·kÌmîµùÌF-~ü÷”-ÎQÂ[áÎq5ÎsØ/~y"àvç-—þÞw·øiμ½ÇNrP]}œ¶s¢7$žüÍC›–C«[]|x¤§Çð›é¦œÏ”ñ«L5ñ¿ÑÁƒ$W¤ës®œ[`µã¾—øqi–êãņêü}ÃÔ›i~=SÄHä¨éØe‚";ó(ˆsÛB9ÞÍ£œ–nr ÎÂó’FyíšÛœÄdiÏyw<äbÜ/ζîç%B ùËÉÎkÅ¿‡9,|æ±Û¿nIHì8ߌGú3~ÝLŠÀØøpÌZsoo˜¼$1ñ¿&e˜ö0¿‰àÅÓ -:ý\5ý&êÛƒ†[`‘ƒðäêü@*wàeÔ|À!õáWë¶q$¿r_¿…Ó«j×7ñýmÆJ¨oßC­¿oØå%ã$ü£¾uÚgµµï¡âÁî-úÿ¸Þ a0±ÓþnÃDNA­¸ýÐ, ¼êE­¸ðéô¶€Gáoσ>R‡ËÿOøŸpÞ<ÒÃäÛèâ³,U†ⶀn·X“ÅDZ+|8’ÍØ~øÉöpë†^•½¼¬ß\Y]ÞIMÓõp±ôS0ÿWñ‰´÷´üÏçÃíéשѲ.ãr¿O ÏJ³üU©¿Lµ›e>Š˜1Ä•;ñ¿Åâ1V—$“ ¿9§N p%ê>aZ`Bžn ·óªÆ'²“íýoÄ'C¹ˆÐßXŽ#·‡1:m· w¿x¬L£õûøÉV7_ÀvãME Iü4æ(Ûa±î;}̵{½—…Õ´Œ ŽšqC…È[K}'‹œ±b†·âà ;o£1µÀê}œ’ QÆœ\4‚ÚÛÉÜRœÔ\ñ5ŒÐ¬‹ ññâ^¿. 4^b‡§†F¸Ð}¸ï‡äQ +Ü)n=På»iñâ»ɶÚÑÇêL°TØŽüxÃ2Ð[Y{h;qc”òñ÷ZßØx)å "Öïíà‚á{-û8§ÃiRœiɆeŒs؈@IâÅûû8‘Æó'-{ñ/ˆf ŒuçTµwÏN(ð,ÈÓ6‡Šì7;G˜N)æ[^(0úïïãŒRè®æçOMq¯"IF:xr;Ò|~ÄðžÇ‘kiôâ[†ÇØx†Ìôå/ßžzˆ-χ‡|ûNÄŸ­¸ç 8µûq4Ôß.}šxøs$lo`Mïo‡<ú‹÷ðæ:xØxý\›O!O`'Ãèä¸ë•—ÇË[)—ÓÈsÌQ¯~7ÔUo6ýÏÃ&©.Här  ÷×™èè·‘¥ÿ.<àôÆàöøv⣠+¥h­ûX9 ööño—£`×¾†ÜXàϳé⯠œ…ï¯ØKécÜvâ‚„õëÇHRÚžd’•¥]ÿ.6Ôáăaõq;á%Åí®¼Jã89#èâKÃØ_w}xÕ$ ¯¸ ~{Ãe¸ÆÂßG°™öoíâÃ.ÔßGXLW¿ÓÎ8°2ƒáÄn?†<ìEü¸ˆÇðfŒÊl{'j°}Eï~5É‚ªJ}Ño2^µSmeýoýœ²MÊ ðD¢ÊI/îö·Ç’†M$j?³’ð̦Ðɨ⿠+ËE#áÉráVü‰5¹z-O3žà7Ÿ0ß"Pm­ÏçÄMO–Úö¿8ÓÔïÐê=¼ITU‡°l[Èñ7âŽ2‹O&&bn×Ç1œÊŽ·öögØö$j‰:k§¸¹#Kñ;\ŠÃÛ®¤ñ5]J¯!ø_óç(¨Á°À|y˜áˆ>Þ:áXFÍH½¸¨¡Ãü±ô<ÑakQ©<•&¬4Ó+0ÆŽú vã+Hc£‰ºü4TnàžübÄ0r.-oãÄÎ/ƒ•:$1Ì.Ýõ¶¶â2P2ÞýÁÓû8„Í4Ck5ú¾¾%£žÚ¿èã¥ëv¿°ÿo%Fà-Ø|9 Ä`Ž÷k~g·1LÏAL¥¼Í@íÄF;ÕJT6CôŸéâSëp»ÂÜFæ¨Lm+5õíVäüyÖãÇ^a ´s„‘ßœâxöó MÄØiÌ¥ZÚsÖ·9ù[ç6€¿¾ ù»r_óâÿ/Wo]å™îÞÜ[á-®¾Î)°•ãõ${ˆ#’Ò2½ù—Ê·ndXÉþÞsXïãÎawiÎÖy‘bû9á;s¿,)·ÏÙÆlO)]¿‡›# »Ø~¾Þ`4I$i÷ß8oLntþÞ>„-ùŽ³p]«jž0O·N&±úÉ-§9x~ÉÓÇïâGÄfcØß™°§¨b>Þ 3E5”“À»< {ÛMx ç¡veøæ‹oÓ¸ûø˜¬¥S­íýœŠÃwcÛ¿1<›>žw¾ý<ä1¿·ÙϘXs…DÄ\m¿·‘¦Ä =œŠ%ÞuíÎ>Fï ó5=:»÷Ó¹±ã-íÓ¸ãþG¯çÅ-+0që +2H—ØLþ]¸­ÂjîA¿*ðJ TqM…Ô >þ(ðÚ±§´S†^8¤Šýüyt°øöãN!J²_^'1¬)v›%ñL e'Kñ;ˆàB3~Ö¿ÇœhéŒBÀiãnÏ»ˆ|o9à¸vˆ«p{ên$ñ¾¿Qá_chö!1ßRrÊߣ7öwñû¸‘Å:ňb_ {vÓŒÕyÖ¾­µo×ãȘ¬“ ±¹ãEv#{ý=øßQ;Juæ"×SkÎ+­…¾:óµ"ÚüyÇ`ðñîy‰?Fy h9‘HÜndAäv íÎÚ©Pó Õ¢1ðç1 éÈòbN;‰¤¨×‡›0;/§Žø?'™¡ø ™f¹æŠÆäøÛÙÅîX¦2ªžÄþÞ }=˜„ÛÛNÙmÀ·,®§Onœ]`ñ–"Öâ§[_Š*hݯÉK:ó.À9ÍSÙÌ‚;÷ç ¶íÛœü½£ösM9ÉRÜïÊ¿9yZs³:«ž ·ù` 9ØŽßsX¯ÌžX^ý¹ÈE§9,büÌéîr+ÐÀ«©(6Ÿ£Ã€vjl­ì¿Ç‰ÜF5*qÏažã[·¹2¸ÇRšö#†ß¢Ø€*ŸF¼àÆ6§~ÜkÌ9"þ·æÒ#nöð³æ +Ö¬˜žäž3¹ßã§ÝÈÕ`áðãn$<ñ´ñ‡ _oåĆ:¢BÖñî~Dã¸Gž¥­}x‹ÌrtÏ-ú–8R@ö_ÿ ÖF¥X‚÷pPËQ\ñq…‚ß(ðèôã´GÊÒÜ•Iæúx¶Ê”ÛTi.0z{ÅVÑÅ wMxÏŽÓÜgn©a`ÆÚ{xD}_åA:K§ënU¿Z°Óƒc.ÂãÞý¼Wô{5y%nÖ6ïÃ3Ó\æU°úx4å¤ONkü;û8"à=I¨ec­´ãô@­·¿q\äò©±¾œGflÁ$Ëß¹âC¬. &üIb@OcÆz§UŒäèª@=ûøq'‹×²/ñöq3‹Ôïm?>1ÖÔlïØžý¯~1Õ·Ž¼€å_û9Ÿ +Â<É.<{.rö6Ûn¶¶œYeÜ@C[_gXssŇ:«ÔT ¥Ï>Ym{^ßp|5\ >®b|³¯ íÏ ’Ÿ³üy:—(ÂJÙ@þŽ?a¹R5°Ûn?Å–"·8Í•¢[o;‡(Euדé°Õmmn9Ñ`Q¿ÂÜr‡.kiõqïÁöíâ‚’ˆ¯!§ §‡8×Ò‡_gØœ"ÖÞ&ñºÉcÄf9àGjruÚöãž”<°=Ï qQeÓìoúûx¦¡ÁŽÑ§6r ´Sáô!-ÇŠZ maÇJZƒ’¡£ÛÉF‹pæ hAä*êÚ4â_XÍ0éÀë6D +àGž"%‰·lñé~ÿÃ^lb¯iíúüx›®vü¾ž7Nû/a`9I6ïe¹êr +y"4Þ¢Þá úý¼"É᧳‘ž"«~Öý{r7Ù=îoãɱGçX£“) ¿k{8õ†P©·ðãöFð×^<Ó¢ªèøÿ<Ð!¹Wðó{XñA†»U=ô׊ÌfQÞÿ¯ÕÅF/b>î(ðê“ôgpú€¾7¿#¨·ôsº™šUÓ¿"T@Ö¿ªh„š~~â×ýmÀŸ£ÊÖöëƸèÄloüy—`ìç IÛȲbF=ßÌk‹¼š“õG¬ÄC4Ô×2ŽúÜl«¬bð>pë'E+ “@t7¿x×Y±:†#Ì?OxÎ|­Å.V?_Î%,„{Ä󴔸'¿9"³ù}<”°˜½ãß·1Jâ„ß­'žo¯8Ääx{9Á÷ÙÏX~cœooÜêCðæ9oãÎB]ûýÿÜҬ&—¿85a#NqYžVÛΪwÀ ôäŒ>“ç£$‘áÈTù3Ç|W —ÌP=ºxr.QË)Wíndž¿rê··rú‡–ÂÖKOÑŽœrT€¿ +Y2öà“–"%}ºðFʱâ÷ +„x¥Â#=Çtèvëß’<Ê#Ü9F-ÎAvóš/9y|È" vçanyËËל‚Îü°;ò·ÝÃKÒ|`QÓ©>À8¿¹v÷Nælæ ·²f¶¨-cúž•WÕ¸Õ_Z#íÆJÌ[a:÷·ëôóx…Åïôñ§¨5þ¾'ë-!¿oë0ïqŠ-úqß +¤Üx»Êô›iÅž¸¥ÃÇÊ% ¼‰ŽS·àoÔL?ÌŒéíá9õK–>f)M¾¾U'«¤ÔU®äxŸãÄ/M1‰Ô_Ù~^›ã¶ + ï§|ŸŽ ­Ï€Óèà•€bÀŽýø¨¤ÄnºøóLÛ׌¸¤[¸Ã]{k§ðîrOn&ñpìö}»}=¹Ëùx[_·°O"Ôá„ê>ëýn©!4Ü4»õi¯ê%&ââã·êï%ÛS¯nìû 1DÁ ›CPøM@núûx¤Âª­¥ïÅ>!Ð÷×·÷i{kÎq\;u#›^Ý´ã^/,4qd`¨;’mÂÝêoÖ6 ÓxZ(ä€7±Öü¯P´«³¬Ò¬26Öcão\5WÕÔù¦VïØÉN}®Ã˜#|uïÉ8†t—cv=øÑ."Õ_ìæ=ÇMyÜIºÞÞJ†ëõkÇ\ ÊÞoÛèç³$È‹¥€·õ³—c®‡™©J»y†@Ôòk¨ç"‡çÏl·ös­¾ÁpyŠB¢ü-O1¹eMÞ™â¢c˜ºáÌùj5ÄK!ûyºžZ: ­ ¿q,$â4{Çp-~`Épù3lanušpe† ñ㶕HUÇðšuj²£¾½¾ŽÜ¤L»}¼Veôó$²M=}òâŸ|»„l¶¼^ez=‹üx#ejceðâó ‚ÖöñG…B×Åü‘íÖÜÈÏ9¬Wä± ¼æTìç4[ sšÇsÎü«iÎHŸ9¬vïm¹à-¯;q»^v°ßœü°9ÈG¸xiÎk#ãÎjºó‘ŽÝù®èíÆìE=Ûp2ê,~éà!›!Üçéâ~ZpënFº8ó…¦ÉþcƒFQÌ¿-­ûÙÅ0Íe”XýÜLçÚP‡¼é6#'s߉LJ§höñ;Šâ½ñâzª¨ÊÖ·’#‘•;÷ñæ +ªsõò aáˆçSa-¯ÈU8X'NüYôú€YGkpWËt–Ø?gx8$ߊÜ$ñ_‚0ew¤‡{që +ƒiO9uE‡Øº q瘩ãþÞï3VÁæÆ. ó­™,¡òßÍÇ%»Øöå`zÓÈ`šE]TÜiñøp¬å›ÐÕðƒGNñR±ÛÙkpiÊ8¨P—ö÷ðNË8½ìGÓÅ~‰XÇ5­.¹¶@RäöÓŒxŠâk&Äøq-Œ8`~·ˆÌÆJjs¯µ¨ Ü÷>›hì?£“F/p-nEž¸H{ýÜY0Eä/òæÜ™I@ ÕÇJ,'ÍÛ’“ém9*š†Ü—8¼>QäšiŒc“ Ä·h96ã§&ÇŠùg’Vs ˜¹¿1¶)»‘«k.;÷âo© +8‰Ì’huïÀ³<¾Õ°öðÏj¢Vý{Ž™¶K9¿k߉\I‚Xö½øÇ^'K ø{9þgsí·%áèOkß8u6æ¾¾ÍxíKB\X\óœ¸YÃòä*š]­íä)èM¾¿o8 +@÷$áð÷ö4øq¶¶øG)hÙP_õ·¨iš3kòbÀÑk­ï~K¦÷†–íoh꾃ìŸ)pʽßk[ñO„Ô5Ðéßô¥Hü¸¢Âª¿_×^?ÐJ>>°ÿØ0x +V[‹ƒ`>ŽWGWzñ‰õ.­¥‘ÉSØ^翺êâìmãÆš×$kÌ4ŽvÛØyšçw‡ÕÌë)úy’%'^g,y–BP» +£J7 ëÆì_0½X·³¿·N6«î¹öòD-å÷¿$TZAßœBo;vØ9ª° ?‡!KPm»ÛúÛ™‘ÞŸÌg©0“‰PéÝ|xã’0Ï™¡“Oæ+ l>»N×íôrVqŠ&™M½—”#j:mEµ·ÙR¥^R··9g%ÞÔÇ5~~“i»ÆJ,.¦‚©‡àûq‘Y¹ÕtÓ‚NSK(?Fœz{N³ àÙÓ\1dUÓǃ>ZÁcxïo)²ö‹§Ç‚[¦PWãŶoãÇÜ& çáÅÜ[™Âïñç19¢iÎÖ;ždÚ~<ì%õɳœ”iÎEó’ÆH¿<#¹ç5M眒"9ÞÎrHïÎkQndŽ ó(€sçKÅÓ•Ê6ž}C€Xþ\³0g­ŸÍÔßMxÉÏb|-Ûú>î&ñYw/o§‘ÇæGßÉTªÖç^d#Ý£˜ä"3~a¨²é¯ÑÈÏD Ÿ‰Ôño‘¨¼´WŒˆPqOƒJ+p¹/n,2ù÷GÕÅ'Žð„}7âÇ.KeÅ]ÀÇ\6mx¤ÂÛN9÷ÅÄžj¡]fÀñ¸µÏnWÏ«¾ŸŠÚJ·îü¹_øÖØ&$SµÏíâË%Õ°íõð`Èø¦í ðNË8¥À±±îx±ÁñrmõqEEVdéäÊ„ýý¶ã$l¿EøœÄU=õíÄ®/îûl4ñ¯ÇŠ¼C(úõñâ–Ž5ú¸ûA{\iìøñC‡I·¿£M<9Éj ÅùÑaßǘ'‹jñ®±„ ö#'”ˆæ(j.lm~O¤šãAǨ(/É0T+ ~ãPàƒn1cS²?g³ˆ<Û –÷ïÀÃ3–‰­Ú÷°ârj—ˆ‹Ôr~ ˜êh›ÝÓÇáÁ )u¢'[±±7²—Q €KhFœ^`¹É%íÇ3‡ýîB«®,/~ü‰üÉ”“~xbŒ××ǘªjŒ·¦ŒÍõs€§}ïB®§ ¯±X¶<6WÚŸn·ãl¨øs‚ïôqÒ‚¥W]oÜ÷⃠Ÿö(h*-kqëÄͬx™êï_0ΖÒ3Ë *Ü{r¸}\~"†fªš +yˆK°ÓÇîá2Íùâ¿5JdžB×Ô‹éÆC!“¿"ÌúO0¼m~`XDO~âüèo;íÉTàžãQÌÛAÓî#ÇNb©’ñýMÖ®|??ã΢¨<ŸLû´ïÉ +vÎ-0U:øòMy‹‡#ÁV³ðäü8„,¬;»x.±@ÊúÛ±öò^ x|mÔ>ŽgË1­Pfñööµ‡ÍOˆYõ¹ÐŽIÍøÍ*È¿k½ùŸ¦5TÞ[wÝy‡-š Ë-õãå^ ¸Œzqúýüˇåÿ–JL +)Nþ6äÞ—cB)‚o {x6d¹îàßèà÷Ó—÷õþþ]5”šë§Ü¡ òÏ°ëÅ ‰¾[e©¾Í¸·ÃqC„(o?B·Ê‘û9‘Tû9È!æ‹¥íÎh9ˆ­¯; Îż9‘4Ðó±cáÎamÎÂáÎB;Žv"<È©´Û™„Ë™#Œ6œæ±kÎ{:d·q´ð7ê$^éðà=˜)ǘ~ž5¥1ÏB{_ïäœ6l9š +§Žt¨Îºën4fX¶ÆOåÄ$Ör>÷ØKÝAøq]—¦ ña„û N½¸¯Ë.6/´ÓXqã–üSao¸>Sj¶ãNh¤ºöà7Õ T+iÂgêO# +Êi½ßÊáë¾El-·MÇ^Úq‡/Sù#Q§§ˆ4Ex&e¼H« û÷qo—ñ çëâÏ“pÄþ\x”™#þŽ2ãJtöq3ˆE¡ñAÄÖ!Bj<³ÙÄÖ7€HòvïÆj¼©)›·ëndÂrÜ¢[ÉÓåÙc=­Ì H :£ÒàÆt¹ú¸Ëä:Mb-n;`ln~#Šì»ˆ`¦úkÅU6+aqØs?órÍ{òjbÍïÎ/‹™{Û˜jñg ðæ1–Œè~qÚƒda¯øÀ ò].cö_2Ϙ[o~s¥ÆD€j~<›EŽ]{ñâ—¯%EˆyÆ܇]&â{ñ9‹“µÕùp:ÎTÞbo\ÿ‡3¹#î<3ÎðÈmqáðâ.»t`éoé¿jØÇ'×÷óbía¥ûq×vüoðÓû¸®ÀãÞÿ·Šü:ɧ‡Ç’“ËÐr=NXZÖý}œj¬Ã¶@äY)¶›ÿw$RAïX xñÛPŠn;Ò‘`ÑßÛÇ(#ÖþÁÎloý¼Æê¨?‡;¦b§îâ“/¦÷½½œYåð«cÅN›l8ý@¶ð°¿ën<Ò£^fi®=œìUÛéçœÚtç 1ŒxÙˆ×ì{~|h¨¯¹ñïÏ,ûI<•M\ÚüsŠ°0óŒµÌÚß«1vMA<ÆåI:Ž7VÄç¿ê"ÞNùª|;{8ß[DF‡Õ¯êðýǷØ$ÞÝù&’ˆÆÖ¿ßÇœ1|µãí,Û@ÖÃÇèàêÔ¦Ò9˜Ì¡õñ±íÛ•{êÃÖ.%Ôºé#Šf)khOëõp¼Vb²×H]É'âyˆÔý|yÁªƒsˆ“wÑÎHÀs XIü9Æ)Ä‹§qßœÑU%Ç`=œÊ²íÔóÖks¶Žàñ9‹G¶S§~EAãùrM$›M¼y2Y¬¿O‡ÑÈUU·¸ÇGJõR.„ߊ|/‹7…¬§Žøu*y{”jGßng¤£ùØEîAímr–^5hÑ>¦ÚrYËG•íÛ·5”i_.å:ßéµøå 2²ma{joÌôØzÓénü—å¤z\|><ȵPà7ú9Áñ¨£ñN`|Íg]=¿­ø×–«M R°í~:ÅIV¿~>ž×~€jAúø8tʺÁ~àé’fó‡8skôž-rÃ[oÄñu…1 {8¥Á¿0 ¯ÓÉ9Ì §œöÜs’ s’¼ä©q~rHüyÚ€§Ns=¹‘†ãôs Öç5<ïNeHI¿3"{y‘T/9¤^<æÇœÕ7‡:xÏq4Üž¡§ºÜñ˜·Èy:!«œ*(®–ל( ‡ìäï‘+­­ÉtT¦Ç²"AQôð9Ç©Ú&6ÃÛÌU~Ñsõr9£Ú{}\ÁQG³Q§1y$SS’@øøqi–ã²oP>aÈc#Ë,RW^+0È ž,0ê€Üu¡o1{q_–oµx¨¤Bxó†G´qE… 8mˆæå¯9šÃ^ÿÙÀãÁ„lw è{ßlj*Ü5‘ÍÆž?BZþZxqÏ£1ŽÞÞ+0=ö¶¿,°½P^ÿ8µŸ^uQOãÚãdzSÚr$ôþïnFHö;Ÿ¿û¸áBÖÚqâŽ=ßdÛÂúòlr”ñç)'Soo·Çœ ˆ½$R²è>)2û)P??×éâÏ7·ì⧰7"ÜÃ\©ú¸ñ¾Ý9ÂQ´iÈ-]±¼}œÅ%p};|9‚JË·~7Vb*nÝ~5ψnrמ†­†·ÓÙÉ0Ö\÷ÔrWó=º5ïÎ2ã[üy¯,mÆLb©˜XýÜNbƒÍݧÑãÆ*šVFìuöëÏRaþaí{wã­=Qn:QÒyd[N=RÓÚ}Þ=áÑ•ÿ_hä)nJ¹äˆæp}·æhX°×@9" +ö:xs“ÎSÛ§˜¤®e6ä +ÜD¸"äü8ÛWTïƹªAo¦ã‘g7Sá­0‰ŽÏÿ­¹oÒ_ày +hí{ß¿#I7m|4æ iA>Û{xßU†–ozŸ ‰·$­ozÚó ¢HÁ:ž¼uïé^#³êªm®··€ïʹõcêž»ª8ƒÆ®vƒm ôøüx¼Ï)¹7¿1;Øó\ŸãΕl>íÛ4ì-Î-1Œê5ðñæ8å1¹øòL5:ßÇ™ÍnÞúwçrV‹\óÆ1ßœ_0'€ÓÙÆÜJ T°nÜ‹Ûß’ ÃNs®$'©‹UO¶þÐwïÈ•xR¨? òò¡s~ü‹U†tÓ‘ÿ—ì$rD½ôqY—( Q§Ô˜}»:ÒÑ›£Š, ùcŠÌ%ˆaÅM‡KxñC„ãâ8¹Ë~à¿tTVÓŽôpí°ãæo‡0ïtòMTbÄqÃú«€yñ¾ž„›Õ>F²Ü ¶pà =K(_ør/–À }\\e,JöÓöðBË•dè-Ü_ÛÅî]œŸ¢ÜVáäºvú=¼“SCº÷äIp­÷Ó‘äÁ.÷s€ËÞd—íÉpeƒºÿ_%.[ÚÝ3®[ -ÆüS/„ì8–Æ2ê m8Ç0½ÚÞÎ%ñH„dø|yÏ !ã_>R/—og'¤j£éä¸ 2iÜñâŽØxkÉ‘àÁWP'Pa>iÔqÊš‘bk[™WYƒ’(puŽÆÝù?ùBK¥¸ãG€FT rkåäià9*‡»|8ñOFÜÌ2ú[A§2Te¤t¸ñæ%ÊÈ ùÈe”‘8Å”ÑXóË•ÕÐéùr~–R<~'”ùye×™ãˉ¿ÕÉ4¸^Jl 6‡‘*2àÔqŽ£,ÝÎœèeÍËkxû9‰òÐÛÛO‡ê² ©Žaƒ'*5€·%.T¿o%SeÁMáÇhp£kÛŽxiRtä¹pàGñ\=ž#³]¿œÍ„n$þºYÛ߸‘§‡ìÇ€‚äžþ–Zß{ƒsnÖã\ù|G©ç*,(EôqE„Ъ‹ž*°šWuÃèãŠÒmW1Ρ ¿[òBíññã}\ŠRüoyÂ~Ü™CTNõãÅIöŸ£éäÈ^ÂݹÕT›Èèç(™,o¡øó-ÔØ_õý¼R`ŒO¶Ý¸¸Ëb ø® ¹þ|y¢p‡^ÿ xíOVXøüyšF ÛŒ˜™òõãDø‰Œ~|‰WŠ¶¾¶ãmn ÁN£E[9ž:Ö[s$8™=´ä‘ZÍpt¿8Þ××ê<ã$Æ[ßOeù±»÷ãu]“ãÈ’`û¼2Øü9:,µ‡ÝÉôØK%³Žtt;ê8áM CãÉôÆúrJþ“·$Çwð±ä˜Ñ—êÓ’ÖÀ›^üÅ2•7'èã}Tût·k*Ô}|o’°‘ÜxAž·Ë:ë§÷r4“™MÏíÏDÝÏ<ÀF4ö_ªT-¯Üó÷|#¿#¬Vµ´¿;xOksÞWð·8=)½µç„ZÿW×Ì3F>r$“²¶ù×ÌHú{}¼î½%¢Œ3øørR`2ÍFgPN—·'tãlÂ[ÌÜïÉutXK{‡P~¾Ü…˜²ü˜Cßi³ ß±>ËrL’™#ïáÏdLãX¤TâäË"&Ÿë5¿o.+¨ÿ….Œô~ +št1Ï)Y¯¸ ß°?WžÓ©0¹%§¨–žBÞ÷Skýc^LªÂà þïù“†{}Ž3G‡‰=5×Ǿœòá…‡¶üÇ>HÔr3a6±#‘ªpS!íÈ«€Ö#ÛÉt¸)íÜñS—ð€ªt˜Mƃ“ãÃ6y6šŸÉâ‹;€ʬ&=Gx®-Á*ÒïQ§T´Æ;|xãM^;á‰ãÇ|;¿'ªoâ[7Ðn$Û¿¢`¾j6Ç +g©LŸó0?»}§„7¬xÐÕ°µ¬mýà‰¢“Äën(òÔþT£_¿‚FW¨ßn¹jMÀiõéž/ÇèiC($nsR›éÎ×[öæHðµ¸ãK‚Ûɱà"O ó¹ðO(vïðã)…¾Ÿpâ_Á )Óòâ2aé°í§n!qÜ5£“Û[}\i‚qÇzëžúñÚ†¤_áá§ðXDÆú[ôñ‡6·(h•‡n9áØb…¹Ïne§Á¤‘ _ãÉi…×Q¯ÑÉ0Pîk[ŽTô>XxñÞ†€/³Ž´¸z²v™Ó VÐÙÉ°a~Yµ¸åK…†öiɲàÈG#¾¼öç£Â}½¹ØÃuíÏhþÎJ¦Âvwã•5$¥;ZbºÛœÒ§^u,Vð„ô7o§¿3&/ÛœWV6·<Ùa\ýžc|¬¾Èúùïêð½¶ó0ËÛÓœÎå€-~s‡ òü9’Z ã1E¹9Š‡x#·¹‡ Ôƒü8fÜ,8`G×õð<Dzïš{v¦¯RyŠ‹ê$)È=œa®·ííófrecfú/ÄN'™Z®à~<`Å¥’´tãUF<ÀÀ¸F϶y†–¬aÓÛÃÉ¢€Aú9³G’ç_¯˜ësOˆna«Ì^b\»‘áÇËG´“ߊh–ÿ=e3åU©Þ¾ŒTªd#_ìážé47HÏ…Ç FCŠiìà‡–ã!mñâï-G{qc‡(·¸Z»qêX_ÛÌ»öó(;{iÏmgç ,9ÉEÎœæ¢Üæüåmç^dŠ2u·3F¬{èyÍó*(äNs[ŽdUÛÎAO9¸øóȶ<ȯ90°ãU|]þþ º·³]l9š–-£¸™³7—³}zqçûvðöqIKMaÛ¿qÊ-ÀþχÍÉñãzP§8Ë…~že‚€vüç&–·#¾ßãÌ2àÀ{=œèà`ó*`v7·˜& n(!Ãl;s›Qm7øsÑìúxåH€¿ø-šÇ‹  ŽYA,£Š ;rTWsÃ[ŽôÓŽ0Ž5fZ/:?£–tÂüÈۅǯ_Ï´ñ< Þ¢rƒQU¾ïnüª©<¶#ã¯ÕÌø[yn-õpFÊ“’¢ÿܵ.ŠO @=žX|yÁ°’¼àp»ö_9ÿ,6×Nv HN¤s•4:¹Î RÏ~LR {§œ%£ruç_&Ï̱ámkÛ’#ÃÜÜ—O‚³›Û“!Á9Íð%“ö_[ 9ŠLÜÁ> naþ[·‘ª©6›1âôš$qº=‡¸õÔûxfŒ#xbuþþ"«°ä‹wöò¹s[ÛÙ¯"Ôå› [Qý2⤶‡Ûg*-a¥þÍEv’äëãûxùCRÑÇ7.56öJŽ#S{ø©£Þ¶í§$F­oòmDh|}œV劦]½ø»Âêørq¨Òÿ¨ç1[Øbš°°°ñî(òÀÝ âƆ DÆhýÛñŽÓ ž7ÁL_ös#Ð[NrZ ¼È´EÇ<ØY&Çœ”ætÁ‡2C„€Ý¸û„á¢Ú<ņ>ÃSI´q¾xÅïãÎxa 'ÝÅî_}Öú8²À-n/²ÄÞTcŠJJ­öq‚@8凸¿°ñ~8ÁÌx…0‘HöñšðÍ€WrðšÒýøFýOd®Ì;ÿG +Vb¡ùz‡[~ö¿]ù†"¯ìÖÜ]e)ZK øðQʲ ìÓ¿\¸8ÝÅ–›@u§K4äêXmké~O‚ÆÜ› wñíÉI+~=å ‹6k—ü(<}¼0>†ƒT>iÎ] +xâm«~þ+=~é´Ø¦O,©ö‘aÂÿ™£ó iüx”©Â¼ÂY¿!È3ÓXØ}•ƒÂχ·Š|-¼¡®–׋|³Vª–׊ìkŽÿ¿Š,%øïªÞÖ·3#¬¿_ˆç9ÝBl-ÈJnÜÇ w•¥õúxë‡â{Ô_x}xqÇì:¨\q÷a%ïÉ*Å©ðçª1êZPIaÆÊüïINº{xq?ˆuj +rB‘÷ñƒëLKûÀ}|g¬ë‚6›¾î3ÖuÒ(˜†p/Øß’°¾µÁ!øøXñk—z©à{ýþã™âíΤíÌ/‡[‘êpõä)(­Æ¼B„(â§÷Mûñ#ŽR€;q)‹Òù·Cæ®'ëjµ·Ϙ`˜¾¹ &áog³’ð¼2|Hì‚6ŸRßØñœÕd ™â˜}ú³ÔÄ[¿èÔ³þWâ >þ!]é#TÖâóÕE¢ÈpêS;"±¹Y-Ê ð×à4àáÒúü¯9b—2düR“Âk7,S@ZRD¶øf§›kÇ*\·k‚$òdô2PJb•7]J·Ö¦Ç™}­ìç€/ßÎkM®¼Í5Ï%REqa­¸ãFtÜ›@A¯‡95Jk÷æ4«T<âÕ€ù[œã« +mùòRÕ¯·ž5[­â9 Äb ‰žWXÑu.ÆÀ¤éÀ+¬~¹ºÒ»¬•B¦Qv"6‹{XþËð<é×âËñšÖŽZ4÷MÑÜ»j<<vàWê;ñÜÍøJ—Êô1“”6ÉìUX_A¦£†Ó¿â{—ýsåVÄ+0ø)1x#»Æ,K€,MÀR.{_Œ”^±òn i*åj)ÚTÂÿÛOÜx%à-K›`aÕVFuý³Ûþ"uúm{s˜ŠJWÚêTOçÉÌ5·2I…¾<Ã,Wäy£±°ýO1":¯“¨o!íÞ×·!u:FÂòíT¿êÛÊõI˜[1çjé\›‡Û£ðR.cÌ‚1"Û€`çž¡F¿1OZ¨;ëÆùåz™#¹Óǹs$ÌÕÀ¾ŠHµ»ñ_åj<ätìÈðýoÉ9'‡ó‚¬ h”cÄ&ƤGìHøx{}¼}z\_æL‡iöÎ]BÉ4Ø}]5É%—ÇŠl?*GM[\[±×ÙÓŠv®–ðÍOH?#Ì«EÛNgŽ•WÄ[éæRñCûÀxó¿ætÐÜnöìæ @ÑWDÖ66ú8f<ýQ•Ç • ,GÌ_3½d¬{ÜÞÿO:c5P¿b{ðÔå<ëE0/p5½ü9Ëzþ`\~(ÚúkúþÎrlmC^à÷ñäÁ¥c~<å\a:ØpÆô~’z-„£†s¥S¾ñsì#†#§õ{b½ûŽ9oºØ/ÅæY« ´ß^/ð9<À=½ø«Ã sn=BšwædKŽeœÕç=ºÛì±ç8×2¬ïùs „Û™môs" yÉT_œÔs*¥¹ÉlÖç0¶ç!qÎÕy’0.G·±¸ásÏ¿‡VvË20‰dÖÄ ð-Ìþ˜s~]kËC!¹MOÝÄ¿õ.¯r²Äѵµ¥`ãµÒ›7Ê\* Û§ø=)Cìâ—£úýsHZQ¥ù’(-,O8T«Ó·ê°äRíïðç ÄŒL6žüQ`ø¥ÀïÅFVY»ñþ dPÃvn#3¯X£Ã ]à}| s?¨Ô§Vc(ÓãÀç4z»Š”gFáý<³/¬xar~cÃÚ8ƒÅýpG$OùŽ$ñ¯]ÀiϳSÄ6eõçY#²ýgíäl½øâÐ8Þï¶ã_»Àp|é®á‰º‰'Ÿo wOýWA^€ùãûpeÉ^£¡™éíãíà­–zËMT£ßüx¹Á³Õ5p½ÅÏÇŠL?Š­n×ãÇj@š´º\óƒÂ1K· ÔE~E–uÓX”7¿øÌSÄ–8ƒeøÅT\ßãÄv9©zÐêGT#xñb©£k~†ò#ðÙEûïÀÞ|Iª7Hä³I$Ü“í×½ùŸ+!mx¤O-Ñ…Ã)îýuá‰ü-:›B\Ù”¥‘Æ[ VÁ Ô%T*ž\‚ú†Åo~Àhx­Ë_ˆoUzq4qňšªZw²ÑV*ÔA·q÷FðdQÿe>Î?L¾¾r'©Vr•À1sÿ"•“)¥˜ùG¨b»O²9mìx:×`õ˜:“4Oÿéú]OÔO1Æ‚þÍ®îÜ̶Sá¯3¤¶<ÊÓ\ó“°þŽE’¨î¾ïpZ×Ãös¹±CJ.î¨,nY‚ÿÄÖkõ ”²*o¬¯„|Ããn}^üT2žMGÛ+™xØiÂIê'ñ νb¼KTéôU%@á|Ʊʼ}÷TÌò›\–ׯ‰É…ûÈÄ{5æ,/1½4§qݵû~Ž+ý6uB~™çèª)ä1E) +è øü8#zšÅ³3M4Mu`žß5të¯y£¦Ò£PÖËÓp¨ßN\£ø¨çª*uŠµÖp¶±#ámnÙñe¡Å°õdm ‘­ˆö}’ þ«p|éo¬ž˜õy„tõëI+6ÎE®|;ƒõën +o—e­Ì£©¸x8ûÝùqžº•©Ž×R‡ØA_ãÈ­NA¸ïáÉØtgCÚæßwº±JõÙj­;þˆÛî< ¹+C›kÕ¯q; 8ËJÑV-‰ÔÏ|±‹Nã¿0Ô°Q¯jêÊ\ãΨ)fÄî©r}œYeœ¡Ä¿oÂýÇÓÅn]¢š®©¢›a¡XãžDéÕzTÈ“U®oÛ¿‡Yo¦TÙbGd@7ß·&&› ›ÍڪÙk³´q »c­í§ßÄ/QstX¼Ôí¼&ö¼TÒç:h ]A6ñ?A¬Ï"ÙOsãÆÚŽ¢ˆ²m4ä*®§ycG${yN¦NÚ"ÈyŠ\ó_($DÝôטÎeÅößË;nu7ýœÉeÄÕ™4ü³Þi’±Î§èú{ñ“…±7¶¤ðBÉ~ê×îà©– V +o£Šhjäaï m¸ÙŒbFn߯ÓÄ>aÇd,ÖâcÅ¥¯ãÆ,Ož;ÜŸÌñ’§ 7 öäuÆj$?hòn‰É#[Ç·`bÀkß^ Ô™+v–ñì8í‚哯»ãÁǧ(…iññàÇ’&:ƒàGðàã‘1?-l}œ^eúí‡ÀpEÊ3™Jß‚f_m8Klkñî!É›ó2¡ä9…ÜyÈ%ÅùÉE2#í7<ΰۜí»Nr1žsŽñóš‚MÇ2ç%G9ZÜæ¢úŽv ¹ÍŲ̀×<âë´7V®¼Gç +}üñÊxÛm—]x“Ìm·w×ÄÄsZn ¹3hâÝ)ŠŽAÅ}¼Aft ‘úžBÂT_èã¥ÔëíçM^rTÒüÍ ZÞ<Ì‘[é¯åÉ0Ä4äº8Å>JZÚqçùkíÆÜS6Ôq˜)Ì xÓA=¤×‹<¹([‹\ +bÿn-òåX[qQI/™¯'FÄ›që :x©ÂÍÇ!Ó’U.8ÛRy±“Àï9á>dm§ w^2‘ªG6ÖÇ„ÔQ|>ªS·Äýv<“Ê“Aõqó.Fñðࣔdó@Á/-ɨâë[)hb/ÉÉôäˆSP-É b-ÎR?—¯³‚Is VŽŽšf%« +® YÖ|øHP\Ÿ¤ðréϯ +ft;£†'£~°è³FÄ–æàþÞ–u1xT†½üx2`µ‚©öÛóãÍ9Ðg9²ò<¨Fœ…P—äc§Ç˜œZŸÙĦ7ñ'ŽÄ\q‹(»}|CcD-Ç·úxÉîm{rD'2<Î`¨§¾œ‹=&žÓÈU4÷ã)¼;w¹ýœJc…nÖ'‰® NJ|xÓŒÝAàšÁ$þ¿7a*{ûxñÜ-Ή×AÎ ÜÛ·9Ã'3Ã)SÉÔÚÛ·p‘¹þ¾-rÕš8«PòDZÜl¸àšè¶›ñÏäÍõña•ë/n-°IŠ Ž,p*«Å† ;×4í»^>á@ØqO…ê¼rm¯$Æ=Þb©‡rÛˆÜÓ†Ü_Ë0§‡Ç©¼’PJÀZÀŸ\C4óeù'o-ýšðFÉ“îU¿ìµ=…ûñ}€Ê¿Ñ©â®ƒT›äˆEï~fS±;öæç¿Ý'œ4ºðÆtÅîWƒ >¨>Žsç¹î{žçLûòn]¥®òŽ0c& ÄVÛTý#Þtô·‡âÄ€âŒÑéwÀË5;–]¤˜æQIJóZh™~6$q–¡ÚO5Õ«¸:q²X]MÆœÄæD¶š_èæcˆ/BÎ-Àû©cŽš&÷´ö}|*> }E­`[Ë„³­þ¢d¬•ÂµÉøð ı™qiËÈosÎQMåŽý¿§“`¨Vúù.žm=¿ÛÌë¸{y`’m~Ü—MBíbEíú÷ã¥+ßQÉ_*…­Î@cñæóf¬nE»XðDè'©|S*cQ‚Ä£¿[g£~¸ÓA 'R/¯mxx:yŒüô+ÛÃ^.©u$ó1Ó˜g]£¿ Ì/Ì2 lÄůñâWAž%q6ŸtúøÇSs§}yË;…Ï~d¦…f"ýø÷„ ðüø ¤¥ÚñÆ +e·~gŽ˜‘m=¶örTCz=¼ïŨ²Õ µ•³%=4 ´“HlªæIðRy^>¿}}Uõ‹ ¨ËxHj\*vÙPàþ–¡U¯f"ÛPÀu·½~|½°¦ù{‹ ?â_ÇèóDâ×=ïkÛœ“y[¹ö}|‘Lï·ëã¥ù0ÆÀû~þsù†‹^âßGov’¥»Ÿ¿¹ Þ:?o<-{ÿo1Ïíì+cóƒ­%ôš±°ØÚQÙäbeÿ4Ï…ÿ–{ø©ÿù‡“®Ý5‡…36b¬’2ž[_è<ç†ã¸ƒ)V¾rNŠbTîÈQ‰n܇ψotdmN—:s†‡âPVòÈ*~ñ÷ðd8Õ`ôÌ[ ·ü¸Ž©Í-±“µÏ`x׋"Íï1±ü¹“+`¢ª`Ê/ÃÒü¹´kºÄü~ŸíâÂâ¤û´Gç ¡Sog,Çi\ñ-‰P’¤ÛãÆù(Œ½Çq§ÕÌ4ñÉ…µÇôq‹2Ò%C–Ž' €ÞÜÈ—=¹ÌR²xkË¥éZºsÃStÐ# ¦œW原¬`{¼Saù=vý›qW•²ÿ•m>Ž,0,DGÓÁ'(ÒØׂ>NY€â¿ +m‡¡gUó’Žd]y”›ó’‚Ù/o‡9*[Côsš(nsAnsUÜy’ÁO2#xsks÷»óלÕm¯2#žÙ½¹‘FžÞy”ÜV›Ž¼Lf˜ï÷wâŒ\ý|JãlcŒŸ~xõ]Ëvã,ÞlÃé¿N–Dß«øpFX—gøò÷â4ƒvãfmìã¢Ëîû9Áæç Æäs’J¿~I€–¿'ÂÃ@=œxÁ,dú<8#å*pÀqPSjq§"Úñœã¤ð1®r•që.V˜ìocÅî_Ävx³ËU3n.ð™{Åî?áq•·xrÙxã»É ÛžuÜ8Å™(ƒ%íÀ§¨Ø8•œ'þ£2RÔC1¶¦ã^î¡à …Õ0=6ã-³­ïÅÎP¨±ðOËU¶ÇÇ‹Ì»SºÜWáA÷ãœRÜiÌÑMnd2[_Ëêê[ê⻤Sù•ødúhÅY~® ԺƿG2sÜ÷=ÏsÜ÷=ΙCwäZ¼š°Ë߉¼ÇÒL?4j×öð*Ï~“ðÚÂ^$ØÃÙ~ÃÓ¾)¹1©‘EþqâÊÒÆPüG1ièFæ=½œ :Ô8pÈšÏ`ü¸Nzÿן•ÂI¨= _\úÛ6##~’÷¿×ÀKÅd¯rÒ“ãÎÕ•>íþ’©£š]}Ÿ9Ðáò¿èðbÃîãÅ& ¿èrúƒáíãÍ&UF¸åG•Q€Ðü9’|§q÷߉üsj{‘~$1Z͆ßWi±f¢¨§t7û¹f_†×W …w }<µ^‰fWO¾øpiÂ¥2(ú9"W9‚Eîyf¿0¹¹ãv&,8•Ç@±$ñ˜CÄF`“j±øp7Ì“l xœ†´‡¹×û8áKRwú¹!jYO²ÜâõzÛ˜ä˜5ä*ÇÐøq‹ow¿¸ä–¹:öâgrÞ>ü1ž›ÿžu§§óâøöS‚b8x1îñTà„Oæf=ÐÛh½¸I=ZúÝÆúÿ^ÑÆZ—‰‰§¤ ‡ƒHÊyîmaØXp¸bµÍZ剿s®¼i­ +Ëã þ·ã­üż9.5%mñüíÌñ³!°&㜡Å%Oé䥨¸Ó[s+Ø-͈æH/î›ü|{s›F$·²ý¯ÎpÒ +µÆ€ÛO¿XŽKÇñœIipØ¢VV*²%•çvi +¢ª«1s&U¤­É5’¶‚TPlÅX2½Ètd,Ž§Á”‘¡×N/°ÚÀWÜ·c§é«–îÀü¯ùs‰­ó;öÿ³Ãx“%@°ðøq#™`²1·ëñãçLr¤´ŠØ†$J¢Ù¢Œ.5Ü£ˆî°ç 3Õo¾ÅãE¹íô"ð¼U¨ÛÊ·—’OoèæARÍÜýüè8žg‚"½†žÍwR;ó̥ƣÆߗØ%UˆØëÌ&‚ÿw8Æ<³køéÌØžkà,ƒ°¾ŸÑΙZaP´ÆeXȵûý~Þ8arÏ8î6›¦„oø{2®ÓÉF?wAö´çT´¤©ê<áTžjßW8õ8Œ7ñâS »Ç‘¢;Á'œ°Y?Òζe"ÿ‡ÑÍ„zC&7•pº…½¤¢†·ÿsqë4eªñ‡ÉGVá`ßß•]ëƒðqIJœõ8®X÷£giM=Éq-îÞå‡Ã„C2dìW%V5=|SJº‘Jý`ÕȲ¯ÌFU¸¹è¾˜îKmñà»Óœ^§#ÉMˆÀþ]] žlM{ãÀûn 5=küañœé’y +̱” hÚû=ºöåyfLâjë&©‘¯$Î]›âxß–³«•e‘íkpÀe ;+ÕÒɲ㲈ä÷Âp2vöüy&Jû•—¿ æ h+W÷t>7â7ð·;ˆ]Ãâ|>¾74x 7Ú·r\W£ÖÈ-¥´ÓœâÌØ]‚_èߣ’¡Ï$g@—°ðþÎL¤ÏIý"…ܯm{ó¼:ÑãôžR…÷F£êâ#.aß.H=®N¿On`Ìr¾¼Rô‘D¤ÔÛõ<²ÉþWºt°#°×“1,YÝ;ƒôq™È®$Q)(&±uÓ‚_KzÇJÌñãØðBN±@GùAÌuI§«¿¾ÂüNã8Ü`ÙÀæ< ­GˆãÜt^è׿0ONÛÈÏú=yÊ62ñäˆ^Ç“©œ}zÀ¥³‹ðHÊ5am~(ê*®ž=¸ÅŠâ¯™·ŽUïæKqíäÜ!öÅŽ[¨þÎ Y)Ô¨öñ{‚ ì-ņ#^?PG·´üŸß™Xs¾BÅiƒ¡s”8Zºç—|Ø¥¸î¿^r¿ÊT Ûw³lTÛ½øÿ±G_ÙÁ#)Uîçëâ÷-ÔaÅvSeWb¬ ~H‚£œä¨ §!TÌXž-:<å§7ñþž®™6«õpf£Ö%ú9—žç¹î{žç¹î{žç¹Ó qb/Æúü³K\ ׿YÇ¢ô¸Ädy`ý…Ó­þ›Fj]Ñ=nßw+ûÕ§Az‘¼æZI*b[ûÑ ›h$~\¬ßPO–‰¥†MÉ"’ +¸*Ãê p¸bøËâ21vöéôó<-X||;qAƒå–mmõñCG—Gˆãµ&Xc} ú;qëÊŒ£êöqóËHú}œPá™v=¦Öín?á™b= ‹qöƒ&¤£pXrMwO]“ÝßEø猡-5È[|³€¾oÚϷõÓˆÚŠ†…ìtׇGðÈÌu/*Æ€•ÀŸ¯ÙË¢ôëS)§‡wøW†;œ„ú¹6InyŽIHäJ‰mÈï(]8Ùˆ¸¹âc—xü¸ŒÌnv›q ˜¤¸< ómB¿‘Õj~Ÿ£“)jÇ~ý¹29îæ9ÎJ¯-t:ó̃¯€ö~ÞG–k‹÷ã&3S¹t=¸Ì5±S_{úOêy—§Ù4©’ªï¬mЈ¨_ω,vJl¤äbÕ´ZŽæ²®úNØši?äÞ#ó'ª^ŽdV`lFME…S5…½²Ôíïáhþ< sß⇗ðdÙ—°$Þ;TbÕ,Oø‚› >Ïp[…Ç«^ª3Ç\ª bµóH¦ábV*€Ø(°DEˆ2©·byêªàu½ùÊ+.%‰“ ‚CºMoÝ…{ê{ÈFÕ·9Ã0õÕÓEEKRÑÀ¡a‚!eQí¿vcÝ™½âx•ž±§÷æ ûGÞhW@{ký¼ÇƒKò—¾ÓîüG`Q/Âúû{s ˆ6§_ˆçM$øÛÛÌñDÀ[Ã’Vëa­¹š•Y…ÛOf—æf§6#Ç@tý¿O0Å(¼ùrjLZžJj¸<Ø*b4õQ¬žL :;¤) IEdfV]ÀR¤ŽLIJ¶ ºž“¥©¥Ã(’X)’¶xªjŠ¼Ï3¤Š8#ݹì#Uä’c®ø{•þŽô— _[_Q÷§™ª0†U±:xXx_°KcHôªVö7<•a‘`0üÍa‹•Cà< ÓÄžê,˜É1ƒd°â¯2I7VˆñäêN·ïÉô÷"àiíæ_+Äxs8—ÝþÎró6v>ä’Xó'ÊŸaçOFMü9éÈÐúüy+™èÞæößð@ÊÙŠ0É)Yù½˜Çu? ói¨Scì¿ä˦†R½Å戮ãîÂ×äˆð‰è ùž,Çu#öü9«;NŸFŸÛÄþ7‡±BÇO×áÄN-‡ëÆö¥³7ñæL2ˆFÂãOyt†T#êWGðÀ<´é%ê<³îßþÜ00T1òZÎ$Œ«€CÇûx ú…ôu“ºõDÑUÒFX Q¨ò¾½Cþ ¸ÞWšIð,‚äDÞðÓÃ]GÜ?£Ùƒ£òš\Z©åŽö¸Ðýèã>rÏ1a0Ü9Ö:ð*Ì9ñ«Ý€c¯³Œñ «»ëǪ<´"ã™~¢¶Œ…‰ØÖâ÷—=âÆý·Ž‹æ ïôëãÌÎ]ltøq!›‰‰eïkÛŠÞô‡ +ÏTfWŸl–¾ßÜ úÑ‘fÉul€‚7wòâO£5²±f°¶ž‰ZÒA#(=»rF˜±$7&PæW§“qcñ_|ˆ&3ÚA:ÆŒáO-4ۀО?ôö»ä6È×?·†#%U ww·×§:ÄKDûø˜ÅdWïÜñŠ¢ æÄxñ¾ª ¤ö·Ãª _fœ[‡ OÓƺŒ9AíÈ­† úyÔTˆ¦üoűD£{§/º–åø`Ž‹Ç|*‘ö/É4‘0kúß8u9߯n;P¡O¿Š|0ÛŶ æãŠ\8Û^9Åïs:sæB¤s°¥¹š(ì=‡™næB?.v9 #œ†¼æšr nv„xó–࣊¥NplR8ïûy豤Âü“&¯Ìë[îmÎ^r0Ðò k„¿Ù«‚ˆÇÃNqêE->Þ½Pë´±8 ¯Ò8Wº­êR*7c¸Ÿ ð +Íþ®ã ÇCíæ^zòƒ¨¹×â4ເúã£Ä-i/õñaƒzº¥¬$oð¿~>Qz—†¬{óX宼Ã!ûWOx'Yâ oõñIAÔZJåðדÆ% _ÙnsŽêTûyeØy.–Muñã•O’Àß·yc kñþ\p±’jµá é¨òÊß·z#x—èæ^{žç¹î{žç¹î{žç¹î{‘q  IHuâÜ:…ÐJÍE7½ôáõ»ø)dQt’´ôËGîÍíp~/o§•ê¿ðê?BfyðyF%MrDn¥eP5ïö[òásÂý9bØíbjGŠE*ÀüA¶œ~‡"+ÑÇ2*òMþ:ó,uÑFmìÖÙ©ñe½­p;ó<8èBE‰±ã¥iØÞǸ^g¾Ðâ·Ì-(SÅ¥&,ÍØ'èø}>ä±½3E!66æG`ºë¯ÕÇ:ž‹¤JúÿÒDĈ)A*fÛ¦æoƒi¦¯b†¼OcÙª«3Õ<Ó½ØØ  U‚¨Ñ@ì8Üw%µ×•¾—ç! Ÿ{g˜ux|mìæ ‡Ê8•F ßG£© k þ\“àE½œÏ Èä¨TIñû‡%S¨Œ’Mý|y&Z„Ä èO9Á-9m1=þ#˜g’‰˜íu÷ç*\j_q$7û¸¬Ê˜õ&.’)ebd­®À¿Õ~)é0ø±RTÀØö°¸·'E’jÝC¥ˆ¸ñþ<’09$K2Nº[òøqÔÜ^¯392‚~#’èN—nĶüä»7kxHJf^ÿw4Çÿ“LýZðXªÊ©›@xŽ‡¸·&¶G8d=¾êàƒÑ\Ó©‰¾#ÇŠüÓ†ùj[¿ëáÄ-!F ñš©ÀkËõ¿!É8±…U0 y +¥„¼ƒ'éº yÖÖð<åALk.}œcÌTLæÇîæÁðà*#6Û˜)ðã§0ü(<åökÇ:J0ƒ^Ü— )¾¼R`°ZÃïâ¿MŸO¸R–t…mÉæH@:ó–ëó<"ãÙÌŠ·úyÈ ƒœ”_œ€^sÇœˆ¹ç#ntÎ#6äÌe)Ç~4VæÀ¾=¸ÙWžHñþƒ&v÷¹ºƒZ–æ :¹)6na®0¡ÿ(=ù>“­‘J·Þ ¾7ãVgëÜTÊÃxéà/ÕßT0Q!>`íâxTz¿ëV&qæƒß[éá^êÏ­¦¨FT}ü.}Dõ-YŽ± +÷'M8cYÊ»rÌç_eøÛ)P¯pÄ#óãÖÔ\g >ìÍqí׊ì¿ê#Âíw×ÆÞÎ9_ÕeM1[ɯǂfQõxèEå_l¡êÏÍQºQÁG(úŸZ²£x$üx5tï¬Ûïwབྷqñ^€÷ã§s©æH'±ž9QÔŸ¯Žt5íöî,°¹·n:ÇPdörE+”Ól˜CÆvµííO*ÓÕ¯áëš}>,ÓÉbm­ðøðÈúaô¡‡ÒÊH-m¤{x{ú'Òl +ŸÑÃ;0¯“Døqj*zG¨­#ÇåÅí¥õäYñq~üã-¿Ã‘ëqkq‡œ²8Îõ ê&Ž ?Äuû‡^­z½É9rÉP$aì*£ó×îá{Ï?‰S£ÜÑDmFë°>7öq/Òă,õ0<^cȲ©ŽÚÿ‰v‘§‰áœ§Àòîl¦auÅߦó+ÝClÁ’ay¤„Éjf„ù‚ÞÒ¼£Û¦œ3\Ñ"@uýÛq)[¾bY$’A óLä£Ø.A,|úNœ.¾§½gâK†\6‰ÌxzîP£C'…ä>?GnZÊãI5×@Ýý—çæÊH×û¹&'2wÖߟ%­'ÇQ~MŠ=ÚkorFgQà~¼sÞx‰I:(îÆÚ[¹¿BL ¦5$@ÔtŒJIP|$qmÉÄØÉáîÜ”nuÍõ¾°Í3Ä ¡U@ +ª ª°Kq…Ï–m̱ßÇÇ/áo¤s˜bE½½ùÚ› _˜¥}÷}ÜçIúû\ ‹ŸË™*°“r><.s§§cØXq¾§ª¦a¤sÙQw1>À2ÖRê|+òt%C8Œ +‚·Öäw·Çîâ‡+zjÎæj˜ã¯‰¾Xíi ¤‰\6Òî6Øß°$ø(°OLùf||a•¹„¼ñ¤m4FT¦³K Ubqask‘qp5<—Ÿ=\JWó4ˆU aòÞå÷F÷¶Æ]mpL¬·éƒªX¦ ‡âù;ƒ¦¬šx™ª)^š(¼¨ÒU&PÓ'éÈØw5<‡YJ7HöÁ¤ðÌŒÔ|{ðb\=j¨ŠÛP4?¯1dL²%šöñÐ}<£Ëì°­ñøò/|Ä=¼8g\¡7·pãan4ý~žK©Í1ÖÆ@Ó‰ ÈÑT øÿ%ëÔ¾ƒëäZ,Õà8áM“šR4ïúŽcÅðå¢çêãTfHdºèGn ]!êA*«6¶ñೈcbÐÝE˜ƒì7ú9 ¦ø©ƒ+­ÁþÎ ø¹SÛ[•×ãÀç4шŸiÒÿ%k¤ÎæúxßQUk~‡<¤Ÿ÷äVvspSÎMïüQFÄX A:ó† 1¦b‰âo7NÑÎHÒüØê<2ÈE¹0Ãnß_'Sá§onqJ t—vê;rm5£˜UÞ)°È¶n>PÔ"O%ŒYµ¹ËùÂ{y’<]O%È«øƒð䵪WÙK.9ÏÍ_‡9 P‘¯9¤ŠyÌ~s'Ntò…ÎœbDZå€{q ™³ÚÒ“ïq˜:¯6¾gŽ£‰ W­±F~ݾ¾0â}‚ŸÞ2ÿÄfkõWK‡¡ý0_ ûëÚƒõ+Üþÿ©¿š%šß2¿òÙgñ £­„Ú¤j;nÓÄ·Rÿjh#b*ÿ‚áRë§âYŒÊc†R×ñSÀ2uÏÌÎI‘€?ÄãâÓÖ»±¿´ó­·×žu·8ºkÌ”ä§nIAÏ2„ÔsŠUÏFAF+õž9aQÄpÞco§‹|—êZ¦†t !©6ýœ8Þ›=EGŠ_7½¼xu:EÔT­‰Nëý|0Ü@U kßèã<Štþ<™ Ö?Ó¡žÃø4~pãìT7µù™ðÁnßG1¼0íÆ3LaäÌ&r_ÛÁ§Ì + ๕5 qm…Å ·'¥”òT .9)73Ætç.{‘1X<Ô#ÛÀ×:ážllü¸Zºï—„ñ>øIzÕƒ:±¬-Þßyââê;{8é—ƒy¢Þ‚.\ˆ•ñg…S4j5üõ㬾—KÓ¢K[PoØe VãË^ŽÎªßwåÃ;Ó l'ýç_£’yî{žç¹î{žç¹î{˜ê+"¤véælf–¬Ù\¯’CíÎùî{ž"ü‹[„A\,Ê>î]Vôå…uŠH&‰$W ¨?Ç•ëÿðK‹âB–k’Ditm?yE­ôyVý]ôë‹ô»z,Z• ”)!‚·Å[êíßÖ3ÓÉ©îb 0IKSBÛXG'ÐLÁwn*òö c ôßöðuôϘâ¨Æm·Äu¾¾®…Îé +Ùƒ¹Á[Ÿa•¾žöš~Þ$òwÉÍ‹‘VÊÖ ððÓèá“é6GGc&Õíìàç•ó†‚ÂðGmHâÛ,õ¯ q³ÌKè4aý* [LŠm¨íÌ‘SùMãÎiî4¿rVgÀr[y®F%ö I¡_ +i$ö_ÝNö-¨cÎÙâ«0ÎÏ<¯+µ·;ÄØ{x“5-#ÜŸMÂâ5fJqY(AäÓ3Å…þÉÙnBƒ©çu‡Ê¯‘<¦§;cc Æ6u“þàuëÎÂ:h;ó&å=ÆŸÌT¤CãÆüCŽ”_p«ƒ©ÄùHä˜v%T•¿Óíװד1®žb™všŒb¢:(§*Tï¶·í~?gŽ™a}0ÊQbéNõ²Ô2•ŸÍC\†;Eµµ…írtàÃÒì¡‹byµ‰OO,”ñÊDe·’»®À:ò\í:jÞ›²fÀ2Lf*ÙÕNÑÅL¼ôɪoyT¬wnUbB€ ¶ë^Ÿ=3Óz}­Äj&Ä£¯«˜Šzhà˜À¦'Úæf.VòÞÛS[Y‰½Çµ]%È4¹ò<ÅŒ ›ž3äÑÕ´Y” HªHäg-eÒì+¡Võs ÈØþLùº†‚¥¢¨Êu™ÒHå»å¼¶‰$ÊÄ’€ê½€ÓŠ¼ã”rî~¢¨‡Š–· žeJH šˆ¤wmÅSb½17Šö*šnî9?¥˜†MÎyR8°šJ?å)R­°©] LXIUHYê™ûìÄ‹NèE'Kñ<©”àÃ`Âhçh±Õˆ*ªd«2«,•3Àbx™Ä·(§l^ð!xõ-ôÐ÷K+rÎZª|V³¾z¿æ’æîH­¾Puˆ„m¸c»[CšsuVi¨dŽáŠŬ>¾7JÞ_qÈÀ’}¾ÞIŠ¸Ó¿~eAå÷#O»‘êÁ±äIUAÔs•¦:vû¹lv:skßëä9ñªý¤/ƒ[O¿“ðŒ«]˜h¥«ÜZ8ü_¾Ý¸§ôÝ”©s¥T­4E„}¤"ë¯úwмËMijÆc¦F,Bx´qyÕïN]D¬Š­åjp–ßqµYtÒäéohà¡…d\/Á –™#Ú7n*ÀÙôüy?ÓÎSʸdrP`RÇ¡!ã]ŒSpwŸ¯Ùß“hóFBÉ©°ÛSÓWÔ®×—jÓ’Þ˜oñ>=øíÔ¾·äîŒbtËŠ$M4ãÝ•Ö&eÅ\.ëÞÇŠœ÷׉ÒÊ +jŒ^%ŽIU©åp“,4u‘—zíOqO›ðþå¶ÃqüFª ©æ—u>öŠt %Ê23Ù—mïck|xºnˆåüg¨x~rª’/Ÿùi©‘œ'ÌG¸°b‹}ÛW@ÊH=´#…‹Ô7@±Ü¡€Õ`æ’JÜ6\FZ¨e”C;32\“` ›¦‡nÜÏCYÒürJ=Í僺"MÁCÛ_LÂälM‹1»Î5D•B)$XÃw$^ßWæÜŽö6å¨~YPá;Æ1O÷·جGu‚5{@,GÓÃéßœjEµä'{¯˜ä˜*ÛÇ…ñwé|ÝBÈÅàBí¹²“¢ê{xÛ•w=X\j[°ü¸¿É¸&‹|‹Ç*’™„ŠIÖË +8…L$ ¸µ¯ÅM²ð®=–¿´ñk'––[1`·[ë§ÑüxšÌb(A‹ s/N…Pº®–àôözf$=¼Mâ8 Ð÷ú8Üس\¸á‡á~IO×Å,pÁûwÓâ8ÇY†>;%Â’/üy6—¥©(½¸á‡tÎ8ŸzÁ# ej\HÝŽëX\ëqoÏ^d¦Ëóà€G"•=Åô¸ð<k}Ê`lGº?_»ˆ<Ò#—Ã]x„ÅÇ–çáÆZª»9 §Ýsñ¹‘¸öòbA·CÌÏL®¶±íߌx?Ë=ÇŽ¼eÄ©©®>l¦¸uü>ÎÆvíÌɆðç?åzè9ž<2öäˆ0öS`8åMƒ¿9ËŒŠaÞÜÁ>qX¼mÈRu#¸s¸³ê=îL¦ÏŠN§ŽØ~sY|xïKšã°×¿$ŒÚ‰ûßW=ýn|yÊ<Üây" Ö„÷äÈ3JxžMƒ1#ÿÑ1œÕ +DuàiŸ3ôp©ÿ.Pë,xfößÛ…·©Þ¬hð¢û¤µ»ëý¼³—®¼:‚ÿ¥$ˆþžÓñ7,L"|ÿëcÌ{–2úý\s7T1|ÊÇÌíöGƾ¢G'{_ÛsÇŒ?â¸@²JÖö̘¶{Ä1qï·~2¼¬æçÇ™£“hæqV[îæEªy2G[¿$G‡‡°•oÌà `>¾yèŠB©VQÆêÙÅìxÜÒboÁ‡Ó¯VÎ\ªìtåŠúhë"bp¢†=Ç ÿN³:â/ßż3/ÑÉQI~Ü›MVI·¹@‡°>:qY {[Ç’ ‡±º;¡âZ®ŒÆÖ<ÇD›&zrÆÊ~òt{âƘ•½‡&Áw‘~K·9sÜá:îFg + ¡¸uùˆÚãÆü%£²ÃDÌÖ·L8ì•ßSoÏŠ\Œ¬¸ `Ø »Šü.2ÖðÓŠHLŸ_'ÃA~ÂÜ•¡Óžl%¶éÅ_IheŽ¯Qú߆k§ÊUÓÁŸpô¨~—ÏsÜ÷=ÏsÜ÷=ÏseRÑÆY€ájõaêQºqK$ˆo´ßéøð§ôƒñn ª®1U";ȳv66Ðöá¿é® ;… 07Ñý<°¤a¸ê‚®?.?CP•êoÎ|÷=Ïr.)ƒSâèRU ·…ׇៗýFa² bFRC[±ÖÌ^Q¬oJÃÒ5%/4ìäAT€˜ÚÄØaµ­áãÜpÄ%W×_ìæ:@~qä ãžMêfP¯Ž¦YÊÊ ¸#QõðÃä^§U瘕¡oyfm‡êï~)*1hµUR»_T‹_ÌÛòãU!ÊuF¥tcÜisÉ•½Žaâ?¿‰œËøf JñÃt6,{'2G­¬ë‚W‰š¨ºr¿Üxdzqø ÖaÐï­G1Æ ±7·³ãÎßñõÂpH^Ÿ ¤—Ïnb46¾§_áÂ¥×ҨY–_ô¶‚7¿»Ô§…Ï1õCÍÓ神åc¯¾Ä›ýüÁ‡Êò¨f<˜%±µû÷öòZÏnpi­cíÒÃöóϲàkíã}k’Cvç +\CÉŸµÆ„qU€ã•Óß‹\?ùèîÍsìU'‡Rú‰>{¨ +—Zh}Ø’úí·k·rxŸ1™Ä÷í®œÃä©7ïõóÄ,gãùóS˜%#Á…ÇÕýœÌ*÷ètörd+¾üÈm·3$Wã6ÁÓÃ:é Þ®–?ÓÄý6"ÕÄE0íãàÇöHzo%}–äx[ckj~žN¤‰"èﮞÞr’­~ǸŽ`HÖäöî|4ãfež»{"û¨»Ï`oÀrf#ÓìCÃ)+dFª“”CIÞÍrÅ´»îqÁ³<ú^Ç32a”TÓCASW•L‰!Ø•£¿˜ë¢†ÓÞ6¿½]ÈùCÂÓÇн=ÀA1ž7i=õ_.SÀ°ý!° v#}UêÅ'N²÷ó™TÁ0 @”íÝTGÚdEU#¶„[]G0tó¨³u‹)ÉŒSáñÉ39Eù¤÷¥–bJÌÛ—q w_‡!zRÌùÏëqé¤v®V$¬pÂ×(ÊÉ;Ja{Žgêߣ¿óá›é±U«þ[Lc‹æ"uŸÏ]®Ä˜7(K°:À+_¸à—×oNØo_ðˆ¨*–¢€Àãå*éê™6æ 23¬Š¡†›£ca¦œ0,,­…5 `ÐM“(¼RÔJM(§ifŽT-ºÛÈ> ›5tÓÎé«-¾‚ZÒE¾²¾¦DI䜻2­§hXFSp7]÷ÜAàOÒL¥Þ†i+ê¨&›Åë^DW•8`§(vÄ#I½‹±ÜÌÄ +@_…{=ç6Æ.‰p—$bu7ÖÚ_‰jxÌ~8ˆVH‰HLò\{ƒÙðøó”†Ôùr!Fï´mýÜÈ(üÁç*‚×Òß_ ÔÖªûmÆê¬IõØŒ‘(b6« øqAŠôº¦,ÊT5 1Û®ÛŸgp=¼[¡ÿ×\» ,…i¦PrßiÓ_‡&éM6RÃ(Ìr‘ˆ¸$}c_çY7¨ùe1¹0šd>ãÙSmIÐ÷ä¬uoÊyŽžš–‘¥…˜ +»•®luðÓÛm8ý×<­çÌ8ðâ‘HFæBHà¤8t[(â¸.RZ,JvyZçOx('P>¯aôÿÐi:AŽÔV´³T,¤ílÔýݸ¹Å}8eìû˜aƪâ“æb7° +Æú\Þ×Ó‹~£úuʽqHF/ Éä2´d:§cØí¸±oÓÅv`è†Wêîü£‰¥¢TXEe +Û^ëot÷ú¸ýÔ?GY?­¹Ÿ)HÓÃKJQéæ‹Ê2¦Â}ÒÇB-àF‡™:áè«Ì-•äË•LÙvaw‘ä/$,õ.m¥ôúùÞ®Î]%Ì8ôÙ“ 8–R:Ú‹\«mU–-¡®ìMˆýãb8@¿ ‡ ŒÒâш œiR{Æðšû¡qŒËRè’·ïðàeŠcu¸ƒÞI¾“Ȩ{žs+nc Žç˜Æ½´×œÔ[ïÝôó‹Ëåó¹—Žtm/o§ŽÔX1káÇ:,xëãÍ&[[Ž9Òeµ7#_ÙÌÃ*ƒÌsdãk¼[ŒxÞVdM<|8ˆÇ©‘õ¿&©7×™ð¼a𪅕 ˆáÍôgÕ÷Pn-õrÇúž’zhÉ#°à×O™bhÁiÌRç5¦ìF¼Â:š‹Û¿¼…ã­ o£‚f ‰|Åb‹z_XÕ7ºOø/o¢ˆù¿ðXéÕ1(§ÛÁƒ*‘aÅó')§&Ó.Å·3Aß’¡íÎ|÷®ÜÇ4þÞC¯„  5+c¯çÎQLÌ?­¹’“4€$—e½ƒø§Ú><å"yOrtµÁú3ŒAPjmÆ\oXÖõíÌC,OŸ1Ú:[^¹Ç‹mDce-`msÜÛAáÁ¿"úJL ¨‡2oªe&o–÷ž•"O5A}P—Õ†—P=âGØæo è>K‡¦„˜"Ó‚Š#*ÇS ’ÎX’P¿ºCÝûAõÔLG1Go›kð×O«ŽÐ`‘ò“8>a{ŽÚ¯Ý{ó=5DFú ÎFŠ~ÂÚxߎ´ùz¡‚–Ž_µ#Þý΀÷üüxÇêcŽL“Rønèf ]c•{)û:Zßqå}âYÚ£M’¹f¶º÷?_ßk¿{øóÆЧÙôs…-\”ÇréÛ“!—æ[yî‡#ÕUˆ¬/n7TâB1§ÇuXŒµ`„Àjy/ ÉU¹³3Q©‘Ä` £‚üýÃkpZu¯fCVܶ¯m ø·Ìõ”½2Ë-Q!±Mˆ·Õ§ düå_ÕŒ ÒF¾D¬R;®Ugâ}Ñùr^j‡T>\οâWàMžq—Ãp¨Ô{»‡ý#3TâŒu! ïOè‘©Í€¹ý¸«¡ŒR&ã§ÑíälF¹d‰ð7#òâv|X‚n}¶Ï¸{Kr;ñ£.fIh)š0c4Sã-ºçé䜖\< ¸úxñQ4˜‚²ŽöâF,±^ó ßúžˆG[C"ƒr/c~J‡"Œ.ƒöð6Î.i‰ö|>EâUL·ú<~î2Ìï!:ýü…Ä\_áùqû£ØŸÉUv·‡ÕÆÊÙn1 +¸·hyª”÷Ú Mý¼Né/my*8‡ngJ1ìÓœÍ*§‡ñÊÈ©#ðài3,hýH,J›ôëΫ=OÇ“ç[ëâwõr”÷´Þ-ÄÕ_¬pÚ[ßýnzÖ0Ü?K¦ƒVãÞë]¿Ë}öœUà­â—¼ú}$h;r|Ñƽ¹"DÜr¢¨µ¸çI&áÉK¸g)©Ä¦ÖïÈ™‚‚8PÜXžÚp*ÎÔI5ô×ÙÀó€ÆæÞÞEIÈӂߥüìØ vÒÚn<±N„õ›Ë§Œn¶žß£ƒîÖhõ“¸æO«€^ÿXã\^ 2€ÝÚÝøa:+š~|)Ý~\‘ZdßËÜ?ߌr:=ÓØq'ŠüƒDždÃOx-ä…Dœr¼ý¸ºÁÿIn9O%FÍ ¹&!§9óÜ÷ âôâHÈàgž°*0· ‡\r¢Õ¡÷| ?Yr‹aõ.à[SÛÛÄöV¥‘W_è௓aíq÷ý<2äˆÓ‹Œ§™{*š“ âë-ä%{]uøñc†dh’Þèâ“ÊQSÀ=E†ªâ³P€9+žç¹î{žç¹îaª®ŠŒ]¸Íùñ)âm¦ÝÇ~R}B™©Üïþ<¬T²ç¼ÉMI¸°yEÇáúôyÐÚJl"›lcT_¹Ñº_(^1÷2õ?ÓÖˆÓ7ÌÇñ„#ÕoD2~JžZš70L¦ûâm†öøx_€ÿG¿ŒW¤Õë Õx‘€¾ím÷ëËô×ø†åþ£À†:¤,@Órÿ ߆§$uÌ0©)¿ø²§¬Ž©n¤¯™yîx‹ðõÑì·ÔŸU#I Dn…Y%Eu"Ǹ`G5qõ‘†ÓtC¨•ø~îÓ,„Ç6 + &ÃØ£°öp9ÿÀñA‰>]ZòPDð@êc’F˜‚ª%Ø–7"æþÞbxww°æ)f!Úñ=Šæ8“±¿Ñ¯)"ıÉ)Yê ´}oÛM~<ã‡Ó>+†OZÕ'ʧ,²yJ ˆÐ {m©î/ÎXf[þu”$Æ"Ï:±ÊÖÊ{P>Ò€A¸ìt`Áp$¯”áõµ>eu<’HRC R´&M Õ]®5ïáã̵C†_lD($o *“ÿkºügÅú§åÿòõÔ±ÝDžsü}È·›þ¶ãEO©ü•‚ÓE_TÄ\yp¬Ÿø9œù3êäY}OcØŒDÒáTÑ‚Mutó“í÷ X‡ÕsÆÌO¯ºµ½êü&6†š­o¨i??g&êF6èZ\ÛQ‘´âÄŽÂ4½€?ÑÌÔÝc©Š[ å‹‘b—]Rº¡?q¬ëv!‡Éæœn¡Üc—­t+sutsfZÞÏÀ‰Z¡´žpŠ£Ê>Ñìä‰fYÀ+¯ìäfm„Ÿg=ó;5íÆüG{y¥lZ©#bAr,/n.:kÓ‰«q)…\e`[©Rk{Aðâ÷.A†ä ­°ó½¡½í­¼m¥ÿ>O˹{2õ³'ã‚H¥‘¦Kx÷?@Qcý/“¥&ž*ÚRÊʲ©A´‚lEÏsÅFQÀipº5JtlØ|- ÓkUý‡8Ë[K‡ÒȪxÈî%³SIµ÷yoPlGˆÚÍáí3]'üUsÎE‰1‡AŠB-y! +^ÃÄ2mkŸ¯ëámüi}Wô·Ö,'†Šáßïä:µQ¯Õƺ½‘‚Ié律fÃVúŽüÅAL«-µ ž9=RÔÇeÐmì<1ÝèNœh›û +8(eŸGÿ$­,qèš@ðâ7¨X™wtN¶Úm®œs‘ {ûNœDbg"ÿÛÈ"Ÿß¿ÝñãÆ LH±õâ‚)7|;ÛÛÆüf§Ê6âwªi÷þï%ñD˜EíÉXfÒ%ÈÔódÜ3;Å1ž(ð|Ì’xn7N¼q8ü +½ÆìG4$JH6àW?T«j/kýgœè:_‚ZüVeî´KI¡cÅëó*X1ã69ת©Ý&öâ/ëuc{Î@¿aÆ©:“3do¿¯Tj"í!ûùš´UÒjž9á~£êi;³_øqa—ýVKÎ~²xëWê$âý£íöñšz‰.)srxˆ¯©5 ¸øž5ã[–ÜMòtT× ó“á¤wÀÔE5·;–„ Ó·ôò$ôå!K;Q{öWdÌ™<‹½‡ÑÅF„JÖµ¹&¯x;Ø_˜Ö5Œ{ÇžIÑOáÉTµIk\Ó~>aë¶1Ìü÷=ÏsÜ÷=Èø•rÐDXð,ÏYùŒ¥â'ÇɧbÇÛÂÏê+4SÔSºy€|mÂ+Va¸VrZŠ©”€n>Ã~ßO>µ0 ¿O Jà*€/÷pÇPúáË_-»æQtîH·ñà êwñ ˘%;ŸœMöaý<«_V^¿#ÏÕ²ÇI#0$ß…š·ªÕ’×$Ÿ×¿:À}BæX•8}CBêA6:ÃÇéWñŠÌNž$Ä”/Ú*Mûû9c^™?l«ÔG†6¨)#û¸t:{×,;B rƒ§~-â™g[©¸øs— +7â×ê÷/úgéÕ]Etá,¥UF¬ÎÀ€ _Ry«‡W³õgV3^-Söê¤.¶Ð{/°ú]æÇõ¿i°â¯§…øáMInü—•¶Ÿüɪ4P9.‚ +ؤ^ñú»'º‰™† †>ð¶ëxž3NÒÆ÷>Þ`tó4ïÌÔØB³Y´ý¼“±iŸ·ê9(˼kß™éá ý¼š‘â-ÎmQ0»6ž=¾îq9Ó¤2.—í¯:—>Ñ¡ ¢FÚáßG3Iã¢[ù2 P›Ÿ£¿9aÝp¤ÁfMñöÐŽ)áë> ZAi=Æí|íSOGŠI=;Þ7bÈñ¸?_1S×®$£oÚwp,L +1ÚG‡nuŒgˆ0¯pï¨wâs|o¡­©w|”‘D|°X–øéØ °èxµ‹¤9w¤©dQ‡ù;g°$™J‹©½ËÛk®€‹ü8ë’zGSÆk¦’c1­Q«ØlV7a%͉6²‘ÉÙ# +ËY"Š¹hŠ +ZWßRdý#n‘~ÃÝ6è½ýë‚oÏd®§`x†Q‰Ò¤¢* È)¡<²nÖ kl{\IЋ_™2vû*IˆÓÒ/Í3º$@ ñûÛ¢cö´:ƒkÀ׫Æ36%ˆÆc“Ï–˜;h_eŸUî6î+|8ÃMXñÈX†Ý ›ˆâ–«3ÖfÉEd¦Y5‰X…*T{¡okMÏ´ñ%œ¦òTýüwôÍÓ;©5óɉԵ5 8W–ERÒªF›Ž‹¹ìI±÷U…®G,7¡„oZ?îf÷‘†¶ÖâÜuË>Œ2»R_ºÏ¾úØÑ>:ùñY•=2ô¢•ÐÍåÎd6¼Ñ׸¶ÑØyÉcq¥Æ½­Åæéw¢Í²Ó·Ì¹œSHÀ¡_yÂXj=Ç$zˆè¯Gº;”êjh¨ázÙ¢Q~^ßrÁÕüô±¹;E¾ŽÜJ¥LE×ösÛöÜíæq$ŒY¸ßSŒ†6My†JšÈ„±©s»m€'¿ü7¥”ôu³»E&Ð<« àuâ“Ìõ˜Žp8HF(˵Šø\i èdÙ²¦Z—&k¯kÜ»‚–5ž¡Ë4Â쪶–à;Õ®¨Pf:i)gpv¾¦ã_Ëã̸G^¨0¬:àæ‘T!'¶ŸGñn­ã°%ØAð(üø˜þ¸RÔ0ä¨{ë±I¿×ÇL> o?è”@¦ù¶öãÇXzK™1uJ)O€Ú5?Mù†£ÓmE{þ’¹…¾×½ßú°_KøU5c²ß[¹ø ëxï¯Äñ{ôs¥ P‘IfFÔ-®OÆ×Ó‚IzkÑ31ÔRÁ1 +Y’Dmñ¸±á±ég§ÏN™æ‰d“ ¦A +D[AÓ°±[ûtçïé ÑMOcµ3w0ÔL +‘®š°_§…ŸÖ7£ßO&Á×0ô÷7×C.ëÿ/„ñ±:û® +2Ì-ᯜ3}T°ÑCš)£©¦q´UGµgŒŽÄ5Ðëb,xeÿÿƒ%zÃË™º¾½ž·ÊOE[b±TSœÊ“Dn¬ÄÆ[÷cbA6XDhÑÆñ ¨TÁnÖâ“ Ÿgp~“É©\²ßÇõåó¥Ïb>?O#cY†Ÿ§2Êlª.mÀ«4ú«Â)ÆŽ.>6à}›}a`xLežpÆÖx_:Íø†AMæ%;íÜ,ø‡­êñUg-$GC¨ü¿o;¨¹s5RyêÀ.GÄÛøñªLáHˈÌvè|o§o3tÏ-ÕSãaÔw>Þ +xýP¡R5?ÂÿÙÀç4’®IâN²o)É¿¯·#üã ÛÙÛŽøl ‚÷$%Ï õñðæX(ZQŽ¾6ç)ð²ÓÄö7„F—k_Éjø•ÁSìíÄý~Ó5Ïké~HL²Å.€Ît°4‰rÁ—ÿLÝZŸ"N©-š {wýž=Ϙ~1'u”­õö>ÃÀwÖ6G\.f’1¡7·‡~í%þ'áÄ …M-~FÃûHø À@‘×ê°þÎ?ʾTwÔx}\Mc3ÆÆÃ^3‚«˜'‚9~žf¤–(‡†œ»L±Õ¿™#ÞL·ÔPæá‡ßÅ}P€Q¯3KÔuŒw1Χ, ûÂÿ=GêÒª“ºÀo \:Ôcm=ï§Ò8LúÝÔ©+Õ€ ëÞÿO Îa•±‰><‡KN^f–2ŸG0¥n×Ú;òtU"%׿#ÕVñzVã­1ç„&×çŽv!°×’iÒÖ½øû…,Œ¢Äñá v[{yz-ŠoÄÅ\<ÖðãÞ‡¢ü|‹z„º)?G#Va3Cö‹{G%öçRØ©öñª²`€ñ×!ài\Zw`8'e”S[iáÌ™‚¾*Böq'ŠãsLOÝƶÄÙ¼9Ó×ä¸+ýáØ[Žt•äkÔñIâ ‘s©<19{L!ÓÝ]uñÿ0ã¹òFŒ‹Üð ê~.1:Òš Ä 8ŠÍ0Å…ÆB€>6íÊÈõYø†Ò,í 2‚ÛìÇöp¤goSÓãUFa%›ÃS~5Rz»Ì˜Xµ<„xÞþÎ{õ{žñ…ÙóÒ"Ÿ?ÓÄ–/œñ\ÌÛªªešÂÇ{±‹›H'ÙßœÞbo«­`‹ÇN8düÚôXðWÉÝSŸ +u‘£¯f AöXŽïM_Šré#¢™¾b1`BoßµÇ,Ó_ãâ‘Ç'h›Ä•ûÇ>­~1y)`rUÇUˆH³}9D_Š?âEŒúèÌžYcHå£@Oé¶ãð)ÎöúíÉuA¿·Žƒ†u·ßÈòç¥ µVöý§“ðz|S0ËhãÓÞoÙÇš<­OJÁª&iOø~Èü¸÷f£Àiª€iìÖÜ3>4ØÝk¹:È &šsœq›ßNL‚6P{Ÿ«™$‡wŽƒ˜æÅâ£ñµ¹3\µý2ä} }|sƒÇ1:TíäÂ.t¿ÀòV (±|%«Ä­PPkÒöøxñAÓ<¿‡f¬ZˆégH÷‹}vµÇú)×VÓMüÆY.Â;€ÄØ–ßgz7Ó|bR•Ž²ïÜ#X×u”ûn7nø¿úeénºŸžZÆIabLq”÷–Þ,Ú‡8àÞ“+ãÌÓTT„ž‰´ +‡'Æá€xƒãÄQý7fx˜UÃ5 ¤O/W!~Ð + Ûhï~EfÔ]Ž¦F}¢6÷E¼ b@·Õ̸Þ)Q,šÐë{Ǿäxz‘5e^)#|´!·í:Ø#Ã[º.~3OU°l™‡bóá±ÆÒÒÇš©m’<è J@÷ˆ!l×7×±îšÏ]FÅ–“¨Â`-GRÊ^&d6òßoeÕŠ0ð÷âÏ/úhê6dÍéŒÒ*2XZ&j©¢‰Y@+µ”’öÝb-üF¼Mä®…Ñäìs*yùiãxÕƒ‡` m.§À×N,²ÇI0ܧÇF¦„;Fº†f]¦äê@‡aáÌ8~‡až\pD¨±ò­‚–bX‹“Üü9Ǫøbãj¡Y~À¯ab ‰ð¶„ð¸bÍDäxo«’ðLWÉ`·ú€­·àx>ú9Ë´y—%ÇI4ª¦|BAŠ6F¥h¶{ò¥[f ›xžÀsh/Š«.t+ÒæX©D‚†„a³âµ¼Q¼²ÏWW&æ6Èo{kX[š÷Uzÿ¢Ïrflr–Šªz¼Ñ™±œ¨cïO+–,O‰-«}ƒ‘q^¢fºž¡%$¬ ¯ñáîéå]>;†RV ûj ün?gYö—}6õö}~Î9“ÞÝÜ[Ãèâ:ºäwŽ6 ÊáÓÅ& X&@cá~8C&æ×·¨#Ú·íôéÌø¥BÐÆl[ñ˜1ˆš6?ûx‰Ä3 [ˆ;¯ÚÜ`¨Í‹#nÆÜSR*ÆÃgziQ†šßõÓ“rÿPéÌMØG g¢_SÐ +É0Ú¶Õâb{ëüx:ú˜Íç< Ìb_êÓëá1Î’+ k÷à{Ší.l<{ò${IÐøqG—ç¿Ýý$è=¿G,?§>¡v_Òi§ì—×1*­Ü}ÿ-izÑßµùƯ®ü§ÑÄ–këïËò–ý}¼:—êÏqæ_¿ §Tº¾qÞýîOíà›óÅ‹ñ1%?šÜàhü¾ÜÅ:]H¾œ‹A’SɸBO"¼×ñíÈX£^>6èüãß’ ¢i›@xå‡dé«€›éÅæOèF27Uñ½ø±ÿ3Xn_Þ»žÝ͸Øpª*!E¾1üJY©ÐCÂ0“] '·îŽtJ\ó%öƒ·Ç†;.z_§ ¤»GsÄ'Q:± +„~¿_ì_¢¢™îQãúÛx‡L>]4^%1~˜NÌlú¸õrðR” èÄŸ×è㤘UFÄx[^zH˜Ÿ€ÓŒÙƒ«qÄŽ'Xa:h<9â̧¿%RãGF¹ä¡™6©kÌØ~{hYì88äÞ´Râ´‰údb@ºî×uµÓ“1®¥DñX:³’lm;éÀï©g¨ó[½îO3¼‰($ãO£ˆ:·"÷ïÈô8Y™·ßT˜9Œk~e4>:òE==¸°éM2¶-²ü¶oFt~U$ÞÁùpòôÁ¶ªß‚Ê#ã>c­ +âFº«Ìo8`S gý¶à…–ç ¯ ä8‚žR÷‡ÄqIÜß™ÖÃéÎQy“žç¹î`­‡ÍSÄ>mÁA¾—à!Õl¦$GöØðžuï“ Üáo´éÀƒ΂–râx2ô§3 +Í„váŠÉ¨•[Á3.b”XÚü[`RïÞüSáó¤`y"|r(†§N6Wu“ îÀ[“°ž±á’¬ë÷ñÒ.§a ù }cœ*z±Ò ´ëÚýÇôñ'œ=[dü™<Õ1¢æî£öðŸú™ÿ…t«¢ÈñG_ÓÞÂ8•ïô-ÿg+ë¯ßð¥ü阫ÁË´â8ÁÕªE®° ‘Á ?ð£Fš\{t2“© túˆ}|59ñœÊÙî0ÖÆK ØmÅW⠆㋹j‘‡{îFu×u>JÄNºøÜr¸½{zþ|j–¢&ÜZàm#Äòºse«Ì5M<ÌY˜ß¿ÇS4“hu·ðã$»ÛŽ´€rt0í67ä•‚âãøߘä€ÛÇãÈ’à&³·‡³úy²ëÓ5ÁíÇ\6¶ZkX‘n(0¼Å,${ÇŽ“õ§ +M-߈¬ßÔ*ül4m+íbM¾î&b7ó¹€QÚüdÅ1ãJ,9 ˜ôâ5‰ú¿QÅf •~EKOö‡aú÷æJÌô0c²äÛ°æ +<åSšjRØG¼÷"öøéÉÝHtÀi„(åôî|Mµà{M5œ¯^f«rJ¶àÄøÛo†þžI¥@Ú÷ýœ“$©×NüfÄ3;Ï!Š¸“··´ò~Sɱã8ËÕ¶çÚX/ÄxvâæR£Zº)¡òÚä)¶¿MýŸ³Š\‘ Áê)jdB»b5=ûÛ·9tÕ0J *t¢]Â+€‹ºÂÚènnxïÐìã;MTR”ÆॗV#ÚüøëÒyñå©©ùÈ‚)b±Û_x‘k_ÙÇd¼Ó‚ãUÖL²ÂäùhªIýbEþ‹}<}Ë}>Î86izÏ™ßLßb"¦ã^û´O¯Šl$ç(ókVK:ÍFȪ"ÚnN¶³`,mßN8f#8ay¡g†4þZæÒ¡;œß÷B‹’ОßßWÝ“)cUøfQM‡³ª;Ãsf#@o{vÑÀ;ù„´§C¡ïì<1½ôÉž0ŽŸa9‡êh²ÞdÄ棠ÄvÝ&"h™WBTÞû Y$áI(Ösg§Œ·Ó£5JÅæMY KTdmêûVÚ¢û öìM~1Rb¯•|§£¦‚T…”&ãM–+aØG‡5džJ_. 6Èû&Zš™,/{YY‘íñàcÓl<ÒgŒvy—ˆqF¦É½ï¸‚äxƒâmØñUŒu;ÂH_>7¶Ÿ£>f–ÿRãóïÄž!ÔªZ™ §¥’MºêwÒånw'RqêøŒ"Žb‘J·˜K¤ZÄ)]Mýœ +3¾@«Â"ó‚^?„¶Ïeïco úuú{óئ$µÐì~ö°7· w¥zLcèåldñµUEmMF1B°$ì÷>ë#3÷졶ëÁ«®ˆP*zo'J²Æ3[K“Ú2“@+Iç·›<TùkP”M)'Ê,w`HB…Kê~i–Žˆ ¥@R8nÖÞ¹Oú9êo%ôºª›Ç°¼nlZžA4”Õ´¤,/.šj9â=ô/¹¾#ƒ‹~&=2Îtèk†?¹Ý*(rÍI¿·yÂÉב)ýfôKÍZšh¤.§pc„`ñ:°7¾èpÍø ò]/®¬­˜Wdu>l,,b–8v›ê£P~«ñ/zÉʸ<ÄÓatåÈ;¦ZXƒ6£RBD~»vã!ëåÒKÁ Œn$lP~‡¹Üh¬üAóÛnöÚ¥ȱ½”ßOçÈu_ˆFxª$Ç+DH î£Ðv¤@Û‰¬cÖPñö;ñ˜Ý2HGü¬<8“Æ:Å›1»™*ä×K© ëñ¹?Ÿµ«Y‰ßÏ–I?âlä~g™rýÑG"…âþ|³aÉØtæKk§}yǨòÔωÚ*GÌ8‚Ľɰ?Oü "CGE2HþYp7HÒþ·å³ÿÂj¿ '3Sãù‡4EjTÔ¤4ðȧ—ÛP×¹Ô{@'ÈOƦӗªQG–– +8äaöê*Q~þá6㦼ÚÔ⮧Ž0t +^KÈ*GnL£ô‡,Œ­U]#ƒÜÅ¿7#ïâ· ô‘–hК·*Eýù”}: ¸×Ž±tS¦2Ú¡ÄŠÐ<²kõ°vƒé>XER«•û;‚ø};­ùó–)êÇ,àq¢a±6Ð7:[NÊxŸâ%Q„#|½ *ÄÿÅwòqøó7âMÔ:¤&—dkþ¬q/ðRyüJzņëZWOoìxq™¿>²ÕÝWxÉÿïÚyÅÿŽ¼a{|¼ÁP»H"ߤþ]¸2ú|ÿ…z°ôæpÜÅD.êzÚ8j#¹Þ³©_u€>7#‘ªÀ¶ºßŒù£ \^‚ZsÙÔßÙʧüD=7×`©¯¤ˆ°,C€n÷áGmr®7ñ¸ç,Ê_o3¥=­Î¤„. _ûy“¹?wG¢,ÒsTùgk˜nÙ:pÀc+üË +>Õ…ÿ_glÙG`4±ñâF®5ÝôþÎ5×Ø6îâä‘É9qÚO,(©FÀÖðãÄ0Ї~&3½[¸Ú;§ü[ ©¬k­ùÈÂOuõñGIhæKmoñŸLÑU+:µÍ‰P¿ºé¾—’4”Ÿx}ëj>þ:cþŠæaÿoÊN•f>–bâ¡I²5Ãö¿ wO³åVjÀ%7¸×ï< +3Ê‘!ÓN¸¤Ž’oÈôÕÛ×~)ræ ®àùû>¯Ë'Ÿ ¾Î$qÚk±ðïƧ…g6¿_ÛÈU÷6?O ËLŠ|ù+¬’aó ¶Íø6d?P[ü8!ÑõûÜ¿™pyõ +°£úü/ÀÛ< ñŒ·M!í­Íø™Æ2¥6óqü8Öù6‘¼Ü9ÀéðX]€±ø|xƒÅ£ù÷ äJl± m<s&]01âr|7Èm:ðð<Å4:\1¦Ð ߎ8vTj¦ï9;¦SÎÿdëÅ&7ÓÙèá=Ζ·n 3\ž˜çêâU°¹Mþž=á”>X—$ ÚÜð¥Ôs¨èŠvðâ롘 µ¸ÊÀ[èî9k^“€£‚î™Tyk÷Ô¸’ÜcÌx€±øñ+SZ¹/šòŽùa®Wêà«’N×ú¸(åGØ‹s-ùîÜäœÈ®óÜ÷:eÜ8Ϙ0ñ2ÞÜ z€ ‘´í~ÿR/̦{/×Â%Ô™%ʘ©Ozã‚·Bój¼J÷ïüxdòh +¯üGŒ§™vÛ[ñ`P¢Áßp°q5›½V`ÙV6–¢pA&æÚp²uÇñÛéIÙ©å¯̧Tˆ4„iã´i÷ð«ugþ]–±â‚ ÜxŒ?Ž¼3ãÉ™ŒÎô±±è :q+˜?¬âhV›Ë‡K]™ä?§®küQº×›Éó1‡ˆ7q¶Ÿ}øgOPË©,N'ŠUTƒ®×•öýÀñ*õ×Ï TÔ”?W$QW üøëEˆÍ@áâvŒn¤áÅV× Çr®Aôµÿ8bþ¦³-t~\•êxc™’§0Ld•‹ßë×ØÏo‡0ù@?ÇhjÔXg&Gˆ ø}<Í5zÛÇœ£Ì4ç÷¹šÃ…ïíïÉø~a§B4úü>?2Å;XØ[[ý\U䎙Ub´„²º4o¿·uÚ=¶îœ*`Âòýe,µecž@-¡?Uô¿òÆ!‰Tb³Á$8å_Ñ1F]ß$OÈ}'Äp 'Y&$Ü÷×ý¿.*rOHè2Û6ÔPܨ÷úø!e¬—IG'èâQ{\÷âÃɆD`RuÔññãÝCIo6¦ÿâN¿ÓÇÊp7Ñ«éÀ×R/÷ñI€F°¯¦ú «ý<^弓aŒ*¼rß@U¢“èµÿ_(dô±‡â^Ju±¸!ƒ(7ÜbïÊûõÓøç¦\{§Ôm‰P²¼µ8j:yð°»3S«FF¾X;ÔöV¬#ªÝCÀò7áM’a¨§Ž¢I£À¡¥û6†­q0åϱ‘£u~Ä]ñ ýjÎyO +Å9*ˬgE¥_5¬; €}%¾®¹Ã­O‰¹L+(šõR¸ð÷#þV⠡͸ú³KYò°JÄJ/ì:5ýî& ¯—# UYç5ÍÆæ“Sܯ§¹;5Ó纖¤À©>jEsoxéÔ(6½ÍÉ·À_ŠÈ™ž¢Â¦³ ¢ÿ“ŒüÃýåáÈUyO£gùÌf¢¤Ä :Fë{DböúøÝGäL>6žž™§1 1‘ÞçÄy‡ÛØ':†2ÖkAWMÓ;8°Úm­ÈƒñÄøq Y—ÌVePÊtlooLx‹SeŒN‰¨j”‘$`ë&Öl‹¡ÚPùk¸jn9IK…QFhG¨,òHMÛg`¾Ñí:ýüJâxT•s„ú_½ô'N5c8{PÀ Ø›/€òú¸!ô/§±fˆÒ)C’û{•ƒMGC‘öµ$?» [xq˜ºEˆùÖòŠ‹r?/‰ãOù‚Åñ;²(¶·$û>=¾âyôã˜hã2€¤w*^ÞÞ0/O±(›kÄÚñâ‹ÈñáHYÅ÷i¨ñã•>TIâݳNüò帒Į–µ¾Ç‘±ì7…BÆ„¼h¦®>ñÅæ\Í1ÌšŸbÆ&r’º­Qï& 4£À$Ñ~­÷ä±›z“Ó²'«Ëص8Q¸È)ç+a¯tR-ñ¿N~*X×O&ùy*'ˆ S–zJúøm½8~*Øe•V²(Ä ‚7ݪŸËˆoÆ6µþþßLÙÔÇÆ–m¯õ<2ØLŠ–"H¶ÁÖßÛƼk+Òл9ÜÄ“£÷øý\FfŠh”•>NßOl{ž•Êí:¿^1UÔØ–tµÎ£·neÃi£Ç,ª ¿ÃPOËŠ:¬ˆiè†Ñ¥»ÕØYÚúƒs÷[˜¶,oo×·9ƒ- a.Ç~#ª#hÚç^q5 ­ñ䎟V&˜iäk….í$Õð!H0Ò$4¾_¾Î-°ØôÜÄRú’¸u4p+~ŽÛ{÷¶žïÂíŸú—6`œÅº‰þAš­fïÎÛä#¿°L)q!…Áðú~›ðõø{à}qÃ**—ôryešË{ØT§Sú1QÓZZBITk\‹qž<"²“©Ô~Þsz8P w‡F5±Á4@jAüÔŽ 8æ3&[Äî· £õú9>³r‹±þ‡¬MJ5ü;sE¿~ÞÏ0ùl¶[¿– Ëíàm¥¿>0f¬a„~Ãk}Gh£ëâ{sºœQœ|1·øòþéñ¿~7=mE?‰æXq f$Û“(çu ën?`ØÈ”vþ0}4¬8^ºiôýH稚ÞÛŸìb—Ì6ìmí¸âW¢/qŠ²œîÐs•)5ïðöqãúÉçGbu·çÆϪ1q(°íáÆ꺶-{æöâ²²‘UH°ú¸ÏYM²÷ñã&!qŸåØ›“ÌÐSØvãDwíǪ£NKI¶7;j¡·õÕ…ã&%.ëŸoë£2DjBÿO3Ða-#ÛŠŒ//߸ãÖ‚<úq†½<ÁüAá†é¶nŸ ýƒóã¶oêEJ)Ð pνD©PĶ·â£©•;­~p^¦T/v6økÌ5R©MAûÇ!ÇÕŠ©Ûa:)òv3%|—øŽ 9jMãndÆ +°öq-‹R¤‡ÛÆ-‡˜Ü[Oo9áøpb¼w ]€[Ž6V5¯ÅÆ]Èë×íÁ§Y` +äÓOÙÃï鶄A ZZ÷ÕÃ9—êþ]nÜ}‹8Á™k„j}¼J1g–Â>CƒÌ‰x*erÅ~೓)6€x!`1l^()ÛNfW-Üó¯8{yÎ7¿~s ÎJüä²s’¸nrç¸Í™iÔ¥øu¦(V™Á!©))%g,ˆ¿ El§Ê“R)îyÇ=zÉ‹/P°GUw¿s“ׯ\X–,Ya–Ýþ<,™Ó©˜¦uœÉQ#0¿kŸªü`’2EïÈòÄ1ïXr\w~ÜÏ‹éÎaý¼È¢êM¼9•E…ïÉê×O‡&SD¦ÀkÌØ€40•:üKb•·oÈÑ>ósáãÉ>bÄ·?O"×bö6KýCœipšŒD©:_Š\'%¬Úm¦œQ`¹Z4caØxxñGE—d’f'Ùn;ÒåhÀÜ÷úø¢¦É“yjšŽÜx—#Ë(Q¨>:kÉ/ÓÉ%‘Jû¡{éßN9aý?”±÷}ßëÄwV²Q ¥,#²ëo¨p¯æIÍc/monc¥Åü¦Øfd–ž1mñã~9š'œ÷Ðq7WVÓÞæüŒÚ½ütæd›É]OÓÈóÕ4„ˆÖúóºL½_ZEÆÑgqÜ.j•\ýW0¦*F~÷:`ñâB—ðïÏt× —0ã‘D¨Ò´±6ö¯EúÙö#<Âë„ÚT£؃¨#ƒÖPèÍ._§ó6„HÀÝ#ŸßèàSêW©øPòðÉYêÆÁ5öxŸ¤ð»c9Ú²²o6¾rÄ°¦Ã붜xȸÍwRgò)%UÛa¨¹ú;ÛŠÊ®…5ƒUÌå|A`¿ÛǼµ€e²»ÎÖdЛn#ëï~(kzÑáp)†-Þ¿ëáÆÙ½L&R‘Å;I±,ôò\Þ´+°ÊÒ¨#¸5â÷¥¿ˆ¥n´‰ 0$t\ÙÁ(~(u˜o•:Sƒ¨ßf±wøÛÁ6o]Ýõ'L´y§¦‘…­óÄÌ $n¶¼bÄ}úcÏ‘=NÕ4s GÉÖºmö9uû€á!õ£†â¹~ p + Jzªx™„-6ÒáGq½Bƒ§ÀšlK…¼Q‘¯ÚmÆÄ…¿ñ<:ëc¨Žkª[,UD´µöøul)UCT¨Þt¤í$nk/ÃùèwÖ&UêFYþi„ÑâÙ&¦ ”ž“­”á2H¼ñÑMæþ»F@¹µù?­Y¦ýJC.'†ÐTÔžLvaãy)E —ïbO~àð³çNý¤¯ ò40ÂĆf¦Å)Ù}¥VΘ¯YFs}˜{Ï_Rç݃ +¥i {ÊâÆǹ°ÃuÄs;ÇULUÑÏ$‘Æ*j¶;2 ‘±F–·ˆ8ŇfšéR%ó¢ŽbDm.¨ÅIÓQñàµÒL1 ½LÌ^Êb~£‚Œ¸ŒÒìb‘ã§3eˆ«d¸"Ì{è?¬û†I…×J„_Ë°¸×BûøªÌ³Dír¦ö*±™ÞÒ\kí·1ªH)¼Øj"d 9•v-Úë}Â÷ÓN6ÔਠΞۃü¼…5 ”.%Ž×B +ßÛ÷[Ôü?éüqJZ¦XÂKÛMºx}']^ϳc5f€Ÿñƒ/`?0Û˜_3Ó,)p‘¨&ØøëÛ‡Ÿ +éÔY@‡yþ®Ý¸‚̽*Ä1ùwJJ§ÑĦ/ÒŒ3mÒØ›xøñ˜c‹›õ_hb s{káÉO”püE/·îøøqQ•²’PÀv‹þ?G:Ä(Ê“},{xÛˆàiV»Ýon0×$4—°¹ã[cÿ.ßcv¼xËÙðQ8gBš÷Ûq÷ðÈt®rÑÄ°³†ŠA·Û¡ÓNßSyQ2nÄ O²eiÐä9g?-I+jZö›pšø"ÛÙí<:Ʊç +ºÐ5?7ψm_íä ñú»˜`Ê.y>Œ+°7ýo~-²¢îQ§sţѤøtª@?£akÊaüHrüx6js +í !½‡ ŸÊÁÖÄ‹ŽÃ˜*©a°r{xpXô~±ÿYö}Ãsñ±Ó‚ïU òªˆ×C÷q$3CR]°üNâõ±Î¤Ü_ÙÆÊzß-A'·)êõ=ø昞ÈÈÿgù²¬J,ÓÄL¦9¹6%,£¿Àq³Yµþ#Œ•¸]CÛ –]O‡³’¢Ã&O~<•I@îMƾË3, }Þ<ºGY Ù_êú9:Cæ1 xÛõûø„Æ)ÃýC‰œNŠúÛŒÕtÛÙÆÚš7þ< 1ïä:å¸7¿g•“±ørõìÚxpRª¯n7T@kÆjú­‡— 2±°ç1Eäøs̾^œ•I6Áûy!§kÌSUmÛÈÍ/ÈòÑ4·°äi°Bç·:‡±½¸å…a8«Ãp½©Û··Ž1áÞQÚsš¿ÊþÞL¡Ì*ÝùÞ+›ÚDïáíà{šñ¶ªc¯×Ĭ²•øÛÑÒšÖúø¤Àð¤B/¥¸)e)#§+ÁK*KÉqß™³ "p-θ¨Ãò·3e’®n?.`›S n¬Á¯{¿˜(òáiFœºu—šž×ׂ¾¿/Àr+P@ñãVÝÚøò%| +×·~6U" #Kÿg2àЯ˜ ]eøâM½¿3EÆl_£‰¬Å‰šNÜkÁälIÝÚæÃN{€HN—øq+˜°d;øq0É)ßQ§6ÕV Y+&ù›n4<]Ðå5M-õñcÓ<©äU†+{ŸÃ{Ñ·JEŽÚ{>î Xv,L`ˆ}–SqúëÎEè ÆÛU[Bn;ò¶ýStÂlƒŒ2•*øöïÀ†y^gn>Òã*°|xÇY˜C9íõò<™•_KžH ZŒq½Áaí·érxò]»{x¡Áð&FÚ‘êºqæŸ,Ô<+p$=œ‹žò› +0ÞËØûx. ôLAðäi­Kã–…ÿ éF]Íý\̘¦' +M5Tâ@Ï:[»€|l€_ãÃøœg|…ÑÞ«Ö|”qùóS«¼*¦ðÄ`;±|m¯+Ë®§ª1ÉÛt`HD°¿ÀiÄÞBèoëjŠ–†%µU¬~¾+ÓðØœHj*÷•~ˆ2¾íýGf_I™‡ c‹Q†)£_!&ÃÄ…çŽ5]+­¯›Í«Ä‚if +¶×ÇV&Ãê<ê“djKŠ¬NGÝ«Yˆ7'¶G&Òd®`0yrHÒÛüS9×Û«qæ›4t.Œ-é¢6í¾B{}GNwM׎„å¹É8]$„÷&íüW·¹WÕ¯§8@Ip|>çS¹¯AqÁ*úÂô»‡²a¸`_fÆñú¬‹êëÑ!"¥~‚€@ÖE·~âæ#Û‡ŸÒæøxú¸Ê¦¦ÊiQO½¤Œ==%Pßþ貃 ¬Áˆµ¸O}LzYôe‡a8éËÕ(kiéëE)§ÄÞPÓFŽ"*VB»À6‚.ÖðßFœ,ùó'ˇ¨o”g-û±-‰7íºÄ}üLWa³RT…þO$m½œé¯·B97ı*XDQÓD x©ðï}@ÓÙ÷s& ‡M‹Ó´“¦ÕäÚà×k 5ñä{ +©†¢PBÓ4/$Š¼¬…B†6½†ëõ›ð$Ì8ö˜Eë _&9 ‘b%|çÁt>èö‘à/ÜŽ"ñŒûüÒU”"ÃÜ£ºªFIR¨;ia{ëíæĨñlÉjÜÍÛs9Ð> í©6¿ØM8Ã*=ãu{¡¶ºÜ}|}8ä©k iøòº“ÛÃãR*ºØß¿ëùñcšr«Õ\%ÖþÁßà8_:¥ÓÚÌN¬µB« c¶ê4×Æ㈊ ³/Kë#—jj0ª AßI Er¦ãÌF÷A×k~À§W2/›q**ç–id’IY¶ªò0,UTû ›è-Î85~%E &#U ¡¤P±À‘Æ¡m®€-÷©crO%àÐ>BýcQîï>ói¾¼x|V¾½ì70¯‡};xs• mlu +nwi`Xߘ:„Wc‰#%]’Æùíqü8Ä w(á8}±Í\F)Ñ E%ƒ +¸`EÁ¹ã.]ËXƒâ"®¡šªf‘A,r1“m½×:§h¸¸¸Òöàó‡zsŽCb2b¸’He–ÞöÈâ@eŽ°UÜ}§ŒýRü?1L=#·ìlVþÏhà]üÛʸVUth!o؃Ü}]ø `Ô’ãU»€'[ß‹ + °Ìª´ç +釔ê{ߎ¶ Ç<­ÍµÑPÒ¡ye6ÓÀß–#égÒÍ?Jðx±3(gb$Iࣚ°jl:"âÄÛÇà?³€÷Só™… +Çìî··€vuiqBÒgÒö·ßÀ¿1Å4lv>“ìäBJcï-‡¶þ?ŸÙj¸ÕȪ¦ÿAÑÁ»ÃJ-½·õüøË]„±v -ìöÿ%ó¡ù|A·qìðâ +¦¯x>$ßõl–¹hÚìA×°<:Žd\Z_’Ç%ò<Í™mcnÿ·Ž¸6Il“˜ž:9DôÆKÄëÙ”ZÇMÆÞ< ¿.”ÖäL×I‰H¤C‰R #{we°ñíqý´ŸÃ7£òô{¡¸$&Éjaù¹ïºs¿_ˆ JšæìMÀ犵•~ŸA©¨1 Þþ'f‘¥½ýœ›OØ´qÃŽÌ/úé§çÅV^¨òì<{ß‹:JÆjvûJ‡*oñJÀÍ2Ò{˯‡{ð¢@ZÍ{ëâu·"Õ©’ÆÚ¨íÁoÑJ£fbÖgS~Ú ÝQ¦µCu×NÚ_Na‹Ë¹Fc5NÛ®l;ñž<Ó±ìM‡°¬Æ¤\›ÛNüw\mdéÚÇ8£üǼ;Ç2ÑnÜvÃ^=[Ã™× †{’;øû9ʷРü³QåÊdÔ€öñÒ ¥§R4#œ¡¢£ŽKmV?g’ž‚páúû8°éVg¤˜H·ŽßŸ=TY½¦üCâðû×ú¯Æ B—~¾=ø×UNƒã«µ }ü%ññä¼>ë ½øÑ[„û8Ù6ÄÜ»|Á¯0Mg6äi(<íyÊ,¿°_Ç‘±,(ý¼dštç Û¹ÓÔØž`–{÷=¹ÊŠ}ÇŽÐÁçh9”ÑØéÎÅ:[“púo,‹qEC+§ÝÌçiør5RnãuL%¯n7WÄæ÷:q9ŠB¤ü£S­CØqûÃÿWx~„êGØ tp°½ô·œŠ«.ø¥hüõ¹Öç‰,Ɇ\•âZ³í~B“-¬ î|;qº«.Çö[˜ip•…[ñi–”SqeIP¾X½ü9 PEÏ%¨òï¯Ã‘'¨ ÜéÈnѯÙÇLÉ'[kûx¦Ãká@À¶œ“[Œ"'qĶ7ŠyâÇÃNrÊõ¨ˆVýì{ò|È®·öøþÎ4â0 +–°íÌÉö¸·³ÙǬ±€3J4Òãƒ>QÂV×Nã‹; ¶ŸÇÌ¿*a³mïÛ·¾‘â3 ½ûX[Óî㼎`M<˜íAvïÌù6WR=œ²l%@úGLƒBJ­þrìA@â» ŽÂÞÎNì9†¢ F/È55[Ï!I‰,~<ŽøÀQ~q\tß’é1¥<ŸM™îægÍÑ øñê@5< +ú“Õø)¢{„§Õw©šL&’[¾¿HåUz­õ@¹‚­£W÷Eô¿ OS^y ¾—7ã&3Aˆv×N2y^a>Î×ç£Ô›}|Ç$^Pú´äy –Àb’¥ïÎPáZöí§)ð9@¶šû9: ɱ=¸áO!pXý\›M„$nu¹>•KDI׸¿&Sa0,-¥íßþ{ˆ@ )ñöqµ>^œÇS‹„_t»¤˜În+*@þQµÛiìxcúqéða1np¶ã·Å.WRíìà{ŽuÈÝ®¼ã‚õJö_o§ŽiŒÖLor}9ž9jç6%¸çƒáudX9ø ñ]€e‰‡½¼X_[ñcdj™”Ì-¯¯Å^—ql1ÁŠBÄxwâÿÌ™‚ 5ãx‹hlG²Ü!¾·qñ*©ª'ü ><+okéÌôMWàmáƈ:‰_[L¥£Ä¨¾^_õvHX|{Ž?~ ž©¿Î¾uªÇ˜’¡B^ö +ôý|GôC>tã¡ŒÁPfKåÔù@ØßU(x>Ãøôï§Ø0¦¤¢;h<àÃóRx uñM›Ü”tûTûIcùðζóNf„c'°Óøq–<ÿ˜±µß$’1cs©=þžc±jù=íß“%WÕÆä}|Ïþo*š=ÅO÷qº«)NMìOßÎqtò¦º0ÁIø6â-Äá‚<8ÇW’1¨~îA—–ãÌŒm¨íñ<2>Rƒ,¬u+X“¿aU”-Ï`§‰ÜÑ1£Ç]t–âÆãQƼ»€Tcµ0DîžUPOú­¯ÕËiô›< —hiBQ5±ö1³ƒ•+‡ºTøxëãÀˬ6Dy¢]À ®ó»Sÿ?ßÂË™ýDÓ`Áʹ½É±·†‡õñà/›=HŒVw¼«wîk粿Q“-wú·þž ¦|Ó ¢›1‘M—Pl $ëÙlIøsžgËo‰…«J°#mc bP¨Ü{-Íõø=œ,Oéä”øèVÑËOs·Ü±ÖÄ›\{ÃÄ‚±(pjT¦3ÌàI7ÐøöúϘ zy[qQ³7€ß¿·žÁ€Å«ãE&æþÁûO ϧ š¬ñ8\oog?Opd¥ÃÑ´ݾŽJĪS¥ôñú£‰LÉ“áÇÈVÚ=º^÷íÄNcè:©1ZÞ"×úõào™úIÛ¬dapìÜý'‰wè­V'05,h,UßYxýÛó<-¥†ªH?òià!—è£ÂÕX( 3cJDË"éȸ˜òÜÜwäÂ)oô߇OðÎôÚ32ÉV µÀ‰X_OZ‹ù\$ÀhÃP1š«1Ôëqkð Ï5õ•2±ðRlôñâ>Ÿ©zé!LS8m´ùvRmþ NŸ·€O©<ƒCñg£‰ÅN×#ÌRX0íÄî_é¼õØgÏ Ñ$‘½ØZÝkñKÓ¬ä§"@7­®¸ú¸=ä8üø”ãü8ï‡äƒŒÖl,͇ooý}èÔø<‹ÔÐÿg|§toˆD+¦ÙKæZU@KÛîþ\z±éÖNªË4¿Õb¢U*$J“aíýEøôµéÃÏ‹Tq´>c ŠÝö ýánæý‡Ǧ›AJµâ¢' +b¿¤êŸìöñ×ñWü8±<ë‚e,&$´”ø¬t’9SîÁ bì~/Ñ{pÝayR,µ‡AE…H#XÔ Pû‡øÖÁ¼uã3Ó•ÓÄxs”Ž;ø|9…h_ÄÿLHX ÙÌøl¥oØX}?¿Š¬*¨ <®ŸÅÛ‡™—n«©ö“¡ú,O+ÛÍË;ŸxÄóMKö°øðvü<`¨Åqé¥s¢›xø þÞ¦¿úA#°'O¯V<ûÄ^9˜„üBã4L×ßÑÈù’j:öñ¿ôñï +ÏBP~uLÀ³xöý{tغ=˜}|ç$ îSÛ^u.e÷oñço›Cw6#ÕY­‹ ¾ƒÌ e–@¢×$wös5F`e¯õñãQ3œ˜l^jƒ{X{qKé§4MŒH\ƒïŸ ùŠÌww¿{ñ)_òIÔ|uíÆ*¸{ÚÃ*©B÷ìîa’ _ž¦˜Æx£Ã*P-Ï~Kj Ì5æX\H‚`¤xqÒ–´-ÞÜÈÕãǘg®°ïÌPËçOqš¥ˆ8•Äë “È4RümǼ¸F-ÇÚƒò¿ÓÅE>2]E¹!j~dXñŸÊb8ÏSˆ5¾†øöê|9ž“hÍÐr|âÖü’ùšF]¤÷ä +ÌXÍ >¾oT¾bÊt³ZQpÇØ9VÞ¨ (iû¨¸ doQX¥DŠ—ìnÇéá…ôýˆež¬cP¨ˆ]TX .müyax/¡.Žàxp†z34ζy·°o­k}¯ÅWðÔÊX93ÐUÊ)çF +% +å_B@ÔxûyI=`è½OMqi©™Ã cµ–ö:éíïÄå#Q­¾ñÈØâER·í§ñá¾tÖ¯Ã5ÐÚ7£¡UEÚ¡}â~#ÛÇŒÁU nÛô¶¼Mc8²Ò¨÷¶•ínöân¯7¦»-©×ŒUyªiÚÊF·öž1×bB¡ŠÉrNœd« ³‡Oªü~èüK„â¦W¸Ú¦ÜqÏk.qÄÚi Ú½†–øsIOI =‡8â™zÈ…^ÖöŽ'«2„  ÔŸg}ôÅ[Õ)ÞHÐù1›_ÀŸìàá¤EÁÓßc¦„îäZž„PR3؃ܛ~§œeÊà?H§À›öâ§+e ?1¦Â›Y…õ—9Wt~/ú;¨x÷ã~!“èp(ÉTkÄö/S°íU°?Wßæö ORğ출qÀúMXú›îÐ-oaøpbËÞŠ0übŽI£]¡i÷G–ÀØÜ©GÓ~÷áSÃ=u/¬U5؆…Ë= CRIW! œ†Æ5f#{ êxÛŠ~…úOÏ“æeJª 4 +Í#µŠ\Ü ¤wíõrĽ&åÉU˜£t#Ë>ýït¿ßÁ»ê0´–T[Øæ8T½P¼˜„l³ï²–¸î·9: šú¯‘q,Ƀ +J:,*ªYég«6H·óʱ²¡$m°Ôw:p Ƚ§ÎÙþ—Ädªòf$M,f1²è͸~Œ‹ k~qê7§L_¦X²ÓÒ‘Q´3¬Šêªt&ûC\{>î ]¯‹Ã¬¢YÜòÛºÆÖã-Ííq¯ÓÉ}bê~RÉAG™Rb-$• ż¶ÜÚ,—&àÁ[›ÿ˜ÂÕ5 ÉQŸ—€€˜ j@[è5ÓØæ•Ÿ0פŒ Há¯ÿ‚ÄvP>®@›—‰¢ˆ- s­†ïi¿{§2Må±íºå‡{ŽÃû8r½;£,qîmqáoÜ8¹KY(0Ül4ðÔ{9®¶‡OgæšÃZЪ ~Ö¿…ýœqˈ 1Ûr·=îqƬ˅R×#Ù.T·íÛ^ÜOâkCGçJ@Ø-®–â0uF“ÃY?Ý(£C´P¿ãéwU€¨†?%}Ň~ÝÀ'_¸kÉ”þsM…:i¹Aàj{‘¦£K|@áèG¥ÜËÓü±5dó ŽZJxÖä)%,Ù·÷r¨äÃq™0š‚®…VH¬.­àoâ,AËÌ0ÜaW{Y‹3jo{ö½»Xh/§$º 6þDƒýPX{ßm?~I¥êŠàôMÀ¦ÐWiïköþ®ÅBZJÌ…ÿ)&#P4äå¾–×KXiL1Dxô~|z©ËSc4žj±bxÃŒ¦Õý ly#§ùIºŽÓÒkïH ì¿-óÓ–A¦ÈyzX†ÐôØqG™p1:›øÜð:Ι$Oj}¼3vPz +– vâOÃê¨îð’‡À©#öð4Ï9n£0¹’¢ÎÃ[Ø_õÓŒ´y6¦auQìÓ’è°öŠkŽþ6ø$åœTÐ@ qA–s´˜}r°Ðn¿lé“$ê-[AÈ×ûo¯|ýГ½”í$Û鸒¥èV!PÀ¤¤©ð¾žÏg†zvÆ(çG @Ü;{oúý<³?EÔ5bºžj‚JÅ·_§Ûà ×Ì9 rªY}õ6QÀR»/3^àëñã&%”žRw)â~L“*?cßÇ_pþ£< {ö·#ÉÓù¿³øóÑd¹,úy›ÈOæv6úxªÂ²IEãæ“YO~Ç„Óñ€ôÕýbËRÌÊGm@±Ýùò¥qŒ·ò,CÜ2’‡n0b”q&£ïážü<0T‚žJ¤n.ÀØÜŽß ½Dbó1ýGüvÒ=…ì8–Å£÷H=‡½·â_à ÷þÛsÄA±þKRbr=¸­É7®x S¸‰ä,Jt¼xÉTÞ3íâ2ÔZRxÌkKŽt»[™#€“ÉTÔÅμqW1§ì¿0ÉZÊyžNÃ~QE‡oLJ|xÁé¸ûø‘Æ`ñþNb5€ÞÇNÜi–´¯sÌ XÝÁ±çˆHšßãÅ^Z®ù¤]~þ) K[^5æ³ÛO'ç+ãeeJ§oa\L~àý<1…·³ëäyq’£CÌØ5cWÍnü[`TæÃÇŽ³À`Kø[Ñ HÀ(ðj?3ïâÃ/, ñCI‰Šq©ú¹ÕvhòE¯÷ñ×¥˜šâ5 “sºÜ;] ËáÑ=ßgÌÛ ¹:«(—·XÍ W:k~<ä8‚¾Ÿ_Œ‹N,·‚þM à‡ƒÛèãõ,ÞXçuWxË‹âÂ0lx”Æó +Ä;ñçeŠ÷m~ž s7S Ù­õñŒõ…iØÝÇo+:ÿ0ÖQ§ŒX¯ªx(Á¼ÃOõ¸uÖ.˜Úý¯íá:õ/øŒGJ"©¹±þƒÂÖ.¾f­U¹y\DÄés¨øëÄä·ÓÉ4øfÑí¿è°âÀi¯!Âw×æfËúè/~M‡*+Gï^ürO¥¬g1Ó,ÞIEaq§…¾' `JžKI ¬%‘cbv¯ûqž³"j}Á÷q¶|”;ì±ã}NMh¼>8ßU–Š©ÒÖãaÀ·³™bÂ<ÇŽô¥¾#T”Šm¦‡ÙÂuø¶uF «“f‹zêÊ»Iï­¹M8Ä3æJ¦;‚î$Ÿ&á9Bƒ æ³›w:öü¸ký7ÐSa™QtðöŸìä\ù3T?Éøñ‹EpM¾¾&q˜®§pã(ãU„ÇSßÙƪ¬ž.n4ú;ñ§Êk wâcÀ¤…´¿n0ÕQOKíäTj†aÞ×âÓ¦mqÊͲkŽühý+ÇQL*Š ¥Iµ¿]xÛYÒÈ°87˜¶û ­Ä6/*QÏ¡û¸í„gTŽÊ'B?¹$fTÂëì¦ß/ñ Y+…ÁÐñ®¢a‘¡ý¼m’`·:kôò#È·útÓ‘g°'¿ T¨a­¾¾DxÓOÙÌrÓ†½¼yz}Úp7¡©½¾<[dZÀ\ñ{M”@Æ%ºiľ9Šy(o§8î g˜øó"8åIB]y,Ò×éöó¸çUsž@·#TNò8¬¿$ÅS·^;àЧÜ2ŽR3[ŠŠÌ©O,6Äxð=ÏYxÒ^ÂúžXÑ1=½¼k +Ó=‡yk.®vÔž9Í6û(ù6ƒ‘”0üx%ôã/Xx+á8OËFcn;”ÚŸÇÛÄæ;­õ·où† Gn!±g(~?³Œµ2€}¼ÇR“¯9™ôüøù“êʧ°:}ü[SÎ5cÕ!EdžœHbxRO³Œõx’ÚÇ‘F*£á®œç.(–øß‘Z§ÌckñW!3N><)0ó‹iÏWÔŸ#aPyoaâÛ ,œ¥_!yÆÒžö-¸(e'¯ÕÁ–Üq8–ÎF®ÆSĆfͱө±àaœz†ƒïp*ÍÝTÝ­À9u…{Fxë„1)÷ì ôà3Ÿ½HšÁ_€Ž~õoT›•Y»À©~¢q|¬‹#XgÚŠŒ^_6rYŽºøs,tŠº[Ngz"ØCùmb5rv£AǺ ¡ã¥"ÊMûöãöKÁÅé kiWq¿€7?Çʕpì5R4¶ÄŒ ;\ 8ú†ÌôÔ&%Œ€Ä›õð²õ/:ÙØ›ÛûøÔg@Äû>?ÙÌSu)Ƈ^Eëæ[írLŠ9ô¹ñä˜ñDcö¼oÉôؤ1uãΙ`„{Ësã~HÌš iÍ–Ä‹^Ü óMTJäöú>Ö’ìC’yX›Üɪ“Qî±2 ’o§ÂãöóÔ4õFÒ: µ_£˜$I&] Üø†¾¿_1 +WÜ@;uÔü9ÞLôÒ…>ñ$rO ÆMô#ˆæ¬+–­YPâœZ˧bÞ'à8u¦9¯'ã–®šKeRAHâ£Áe£Áíùo±ÉfÆ'òa¨Óþ ƒ?DzWINµ3 ¹ ëìöppój°Ú-‘©b«ãôq'2oZ±ƒMUPpôÚDeîEûŸ»€_©,Ÿ‰t{j5“æƒ\¤ŠMˆß ôqŸÁ« š+ÿ„j —IéàË +ªÂ׿~ü^Ïš#¨+}F—·ôq¯©8¾Eƒ’ $öñ·ÑƼÁO-Inn¶ökíã®_Ê ä€êš\“mF¼ úçѬʼnI#PJ<©>Ú¶¢ý®;p Ë ÅðÙdÌ!›G#An*ð®cytÓN|·lÃþ öñǦ†ÆgÎx¬e+¥ï#0ÜJßö§Ã¿–YôƒK’òòÑÓ¶54îMɹö’u=ø眓‰eIH*@¹ ØŸ³¥®Gü¸’ªªÕKŸ} "ݵÇŽùy\û«®ïtF‡·Ö|>%>±ú‚IÏø…DFôôeh©íâ”Ãcí ûšÿ™§™0G—ëÔ’†¢¢!éæŠHÑÑ¢¸‚Û\[Ý"ÆÇNNÏygÀ°ûJ‹•q­´â'£Ý1~¦âëN~ÁoxüIááè§èzOk¹ñ#†g*±¨µ¸¡þl‘¾ø˜ÌØåͯn÷ñâb²¢@o¡ðâ+ÂV´·»§·‰ÚÜœ²µÇ~fÁ²ªÓßu‰û­ôqA_U]Èms~7cÝ:f-¯k ñ8z5ˆJÿ¢K/·¿áÒ¬G/SN•Oµd;”výÑ¥¸ õÏ5Qà“J€QX•Wµ×w…þžØìPË1Ûãp »ñ™p/!îþÃðã~ Ô +ü­ (žÎú>‹paÈ]o“0VÓn¥„)½É ÓË;Á°uÄ(¡“Cº5?G:«Éæ_ÝãUf@s{/qlšôãUâsËŠšmâwÀ6§n5M‡˜˜éõóŠ@ðŽH8·ÊFÄßAÊ·ücú‡.2`¡_²fVo¼‹pˆfJ3‡¢•6àm™ómzJ°@Ü-ßÛãçéß1Ã\X÷j@€·%æꟙr{ñ)ˆ¢±ñÐñ?‰R„k¯³Œ•wkïçkHb"ÂÿÝÌ[€×Ài§•îWC~üMbq‰ŸÃO3ÖáÑÈ-mxܸMûˆâç¤ôéOV¤›ßÓ11‡¤m{¿qÃᣅÂÛOt[Q­šä)RãÂæÖã¬+{Ì?Ì–@ÚÜk~ÜXeÌú&Ú{n?cZ”¸<4€§^`’ 1 +{q$2û| HÄ›ÙÌR¾¶ös§¦þæ £é§ü>b~®*²¶!ä·{q{ƒâ~j‹ßáÎX´¡cþDc8!׊>—Äd©úmÁ÷'Q]àƒ–à#m½¼YRTyC˜«ñõ¦ÖüLæ,ð°£kn}Bê²Ó!µúxg¾²…ÜIº…×5¦f!Æšêxu¯l»¬ÃïþÞYß®ÒMu >þ9—©âÒ0×ÚxƒÌ&J¢XŸ‰ûø”®§Z‡€{gª„B@í§ÝÈ$ Üxx[™¢%EÛ‘'˜3Ÿw»OÑâ9:’µUµ'Ùmx¡Âê×PO°,apš¤wC~ +5ž§æÁèÚÌ âuíĽ]«Ïu&F%­p8Ý™rt¹Ž2ý…‡ÌÛ“«°9H±67·œõP_Ýæ*LNe:ƒùñÞpqƒ0‘nH‹21"äÛÛ¯¨1Ç"ÛN¿Oêg–ª›hF½¼Gðâ6áHI*@øŽ$«°©$$ýWæÚŸÃãÌ€ˆõæ3PeñçTqš©•}§^nôm±d |Eûpe›¥‰…ÆtŽ0ˇ|Œ×¾ ñq“©Ej)*°[-À¶—ÓáÄz£ˆ+¥Ç|S!ÇŠÈE‡Ù—¡±´GBoãa߀—P:~Ø æ÷…¸Ã„Vü‹ZÚûOxN3,¿ÓÇJ +ê€nIL½"=¬Hø{9™¨ÃØø߉¶ )¸s{øøß“Ú£„vÛ·ÇŽø4É`¥Çˆ˜s. 0ä \}„q9X®î·¹½üoÉÙ)Å^7L y«‡³Ó4•Õ¸’Œ|´@Ä}zp]Í9'ÍNÉQgQ}Gíöü8]3DbÆq·¡§÷w³îÜ ~¡ãÅÏH}¶)–¢î×Ü ›øiÁ’>„ÿ-¥Š}žÏ x!óNq|‹Ä¬ê=žÏ¿ˆŠ©<© £|n5¸Ü¿ÃßPòņ}ò íÜIãV]é>%[%Õ‰ð¿ì¡ÒV6BvÛÇNßÜXaÙ9iØsØkn/húA~ÂÂÓ±Y†›|>¯îàEÔMX²ÈË:u&Ì·Ab]"Ì5 ÓÉ3IðqÛ‚·§îž>T*'Ý&Ó¢\Úÿ@å¡zé]oTÖÂ#] as§Çÿ‰¿§zlí¦ƒ TÒKm)·i`%ÇÞ 9XY§¡Ÿ^±q™òÚÆÕtþö!‡Hq"w(G´^ÞÑo’ºÿEÔJ†„G%-féK[M2Ù€‘v‚/©Ýô7ðàç¡“ V `.;{ øã8Œ•fÊv{qŽ¢„T\¿ûøk¯1I‚QùDŸt)¹ 4Ôö¿Ìéš 5Ž‰ +ûÖ,öëô +·¬ÏPeIß ¬­ž©$(c©eÙóÑ\Š—P\E{]VÄÚÝÍøZú£5F%@Õ•Ó+ËVefX“lq@«@þä`mX_OoŒ‰ˆÿ+¨™wµ¥@¶A rO²ß_ó-jTT‚û‰$°×¿ âxĵ +#o }öïôò ,‡Ê“G£!¿J›Ï–YéŸLk ¦¨@6ÏJ¿f:øw቎8K ø[ˆ¼Íë÷#µïkq7QCó JÛ¸?v½ùœQ[᧰Ø}üîƒ µ·ëÚÚdhi"Ü{[óý¼Ncõ±LÖR ЛŽÜLÕP×bçu,õ±,V5úÙí¨O9'4ÕF‹EB*,ˤs)Qñ%ö鮼z6”É Š)j°x"q!P?xv$kà-Á-çšQÅ<ëåȺm ØÜ$½AôÒŠ¢‘¥@ }A[j@Ô_êîÞ7br¡‡ ¢û_˜Î;O†‚G‡…ùŠ‹­Ì ÅÐ}§’0:iò=O›[Z ±R=§ŠfêÍÛg[ƒ~,zm늛 .€ë[‚noõ!Ó¯UyV¢Ÿæ…& !/.ÅÁ喝Ÿ·…—+u~hÔÇTA’6ØÄxí>+Îr¦Ìîñ· l’ÔZö½žŠNžlÚÛØ(ïkp?ÌÙ}kœH-î›ý`ðkè.sòcXIÔ\XðOª¬‰í¿íã> Þf‚ÇŒ5‰rn|yH…ïk{8lXè íÎ4¡×Ú|{q‹¦(Öm°O&Ãî@?IæÆ[xû8½¥  7½ÇÄs‹È±¶¼Nf·1G‡áÉ4˜H“Xf >î-r’|¼¢þ^ÑÈj‡×ÇŠ,«üÂÆÜs¤ÈMJ×#“^‡ùbëo‡~1fðŠMíìào™1ÇÇ¿©é¾uý£†CÒÆå–ÓQüG×JñXR³ß³‹Ø³S`ݹ’lÚv÷ãL8ª—¿r/¯Ç‚·KððŒ-ú߃ÆRP±ôqsƒÕ%5$âY˜B4?ŸÙ—<ˆ¿{óàUÔ.¬-Ò[ëálê¿]e¾¾¾¢õùÖÿ¤?EøçÞµIPÇô¿ü ó.}šºþù7ñ>ãÓâ\ Ø/ôöá£Ê™RŸ¤E¸Éœº"+›Ë½øæþŒ-í靖ڬ;c×èæ(ò}4${¾‘I–io¢oÉôØ*ÖòÅ» 8óƒa‘S Q~î*è<…]{v·]@Š*‹‚¢ÖÓF3H´òñâ«XôÓïãN%´Ÿo1%ZöíÇΟÓ-f!ûóáØè.&‘F¨  5â·>gsD, +›w¶¶àj3;bUEõºo_ Dïn*1ŒYc‹Ý#Æü +sÖ&evb|}¶âZ—hFëZÞ'œqLÏçDA][‰+K]|4=ø ×ÑH•$ ÖúqE‚`µ®çÔwÓ‹Ì›b w¹kìøqAˆÓIN¶ ‘Øp<Í çÈNÛ›øò:aé¡ðÓ˜±Š–cïqMÓ\1g_1™“à4ð¿ú–CÎkƒ~þÑÄÛ7¶ mÉy1Z›‚VbH­ gÖ#é’¢?6ŸdÆžždêŸ\j›ZZ2Af±Ú;ßO¯öpOʽ4ZùEæ6f&×¹ïáÁ×+D€ À 8ë‹apydZÉìC¥ª%CðâW1ô3ƳD»»’o¯g<ÁÐt‚Ñ ÙðþžLÊý)‡ –Î];û~îwœ§¦‰––”ïs ÛõsžÐ,cÚÄ¿ñýGÞzVÌ (–í íîZÂçM-Á¦:‹üç/Êb{H–q®¾î¿¯Ã…¦ôy‹-æ,×aˆÍ‡GæbPïΑ£m>Z•ý'rËÚë{j8Žé~!Q_Ž|˲ª½—Ì`‘‰ ´ö$Ž÷:ðÌf¨ÿšák Ô­ƒç_¸Â„v>ññþ‹qª¶C­ `>Ž9§)‡†¦â׿ßÄî2UÔèMñ·Œ#í¶÷½‡zTòã·²ýõ·oo·‘Ú¼RH5ú€ñã>tͱÐEvpì-ÀÏ7úžÁrb´4Í• ~ѱûG‡ž¥êª”²Ìȸv¹ Û°}ÜNO×¼r& +µó¬ŒÃPåî~ {8í‡ú¦ÌxI2×ÔÇ26øêœ0·Žð¿}ûðYÉŸˆ,ÝVÃc‡¨Z¬B­r$™…fÛ`Yl6›ö߆_%õuz‰•¼Ï5]—Ý6>ßwíiÜh|xç"Ff$†f +Hƒaü[põ}ŽÅ’ºiT­7“üÎxhÇb¤ù“}B4±>¾<.-©Ç}8bئa"¢ŸÂd¦Xª7Æ…åO2‚²)P´„‘÷8eNUçìíOGMAæ+šoÑB†G%@]¦DY®¸Ü“¢›ÎlCýžs´hb¢®Š9…ÙnÄ©ed%H,·ü8lzû…I–2í$µ7ËVÆ« ξãû— +¶${{Ž&½2QÅ…,ÑGÆ®n /~ X&#òs‹kû~®MÍêôë½u·ÐIUûØ}jdùpU†œlÅ%Jq¸ÜGã™…Ôm[ÛÆã‰Â•XõE–çQ~GÍ=C—§Tòˆ‰§×ùð±gük¨™ú¯Ïj¦Ž×`â³/õKÀèÖwí +I¹'ëäLÃQ›³í3CE!…XûÆÆüËéë¥yÉs0GómpepT øžÖ<5ùÿ¥uYDê„aow×ãľž$¦Ðv¿·ÙðQA›"­×yQôøñuÐlfG4@db!§bîƤßïઞµ…5iÝ5:kÃ=é§ÕÕ.<#F˜kñáÐéçQãÅc_|aâ8» (š~0ã™e%õp.ÏÙD@¬ê-Þü 3òM¸˜Äª¼Ùº¡^•ý Sßâ Y&cê ÝiQñÔŸ»· žfª*ÄŸ1J FžË—q™2õJ²›-üŒ§ž"Çbv¢Ã^;UI½~=Çê8ÙTvä9‡Äë÷r+ÄTø[Ž˜NT›[بð>ÞJ©éyœX©'Ç‘¢èüu•1¤¬Q»Üü>¾ $À2îY­‰Ìq®Ë[@vý!úÍ?ÊÉ e,tXÞþÝ}§îàG?S)qjPL—=½–ðâ6«’C;FŒBÜ÷åüÐVÊOßÅ &0³­ù>:¿8Zü‘ç,šßN`y6ÿg"ÕMföò µÄ xð#¦}¤}n³õÞ(·ûý¯ã‘կP ¹ýÿm­À5uzLEì¬N·øq%[›%¨rÌxÙ_›xÓ&&g=ù&vûړΫã²j;ëõq?‹íE6øÛ‰¾bjGSÛèæt‰ínMÀ2óã•j–6ñÓ‚%FS§HÂ*iÛëøs&Wéúš átî8bzY‚µ-8_nåÓW¼½ÿ‡Πdèö“·¿Ã^¹»Ž7&ÀñŒ Ž¹‰Õdû?Göòy£m¤…6ñ·8¬NuSß·;liÑob¿s`ùå!E¼zYK{=œEcuV'ŒûÍøåàãN%,NšÝ +ô׈â%$d&úÚÖñöðÕôï¡•X50J¼kÎ=Ä`f¸67°â3 éMu$çÝ=ûœ—•ªp¸ýðGÔ8ùˆa2Ë?GÜÓ“'«”Ø7··u;¬­…P)°Ó‘+ºŠb»A?%:‰ÐÎÜå‡çÆÁ¯ôq«3æ&Åõomïâtãb;9…Ç·ŠL‡šù€P;ÛòáèôS™S¡|:K l=ì|>®:âÙJ •›<Ê°QYVðï~ü1™K§Æðä"èËb‡\.?š§R½ÀðæJ¶I=ÒmÆ©±1÷·%ÅŒ Ží­Ç‡~3âù’‡ ‰¿À{8b8ÅFd­•Fkh,8¥Ì}@éïG)–z颊P¢Ä‹Ÿà~þKʾ¥ðœÑHgÃæWAì?«™××Zt‚Dž¢¡#Mß¼- à•ˆúÀÉ>¢2Ô‹K,OTPËpêm¥‰×CñקJz‹SSÃ\B²ßSã¯l¬”xl€n×î©ã½W_èiYõ=¯§ôqŸzØØ NÖ+o‡½Â¡Ó<â½!̵ոÅ<È*ãeŠ0ûRtge¸*.-ã¥ÇýCê-F^Îx~/újHꢆ¦•ÚbÈCŽëuRûr¸ýuäì^¿2Sãæ§é$ÐÂÌhá{ym!×t=¼;\›ð8È]:«Å(bÆ|¸b¢ÃCÈáÛtµMÒ ›Töotj+¾Q§u¾×°Ðøÿ ò PDüûß“0Ü6LA.¶;l~¼WXñ{ÜxðÛ~™Â(qlO ÙªRÆ€”Þ{;~®LiE==†€k§‡ìâ+ÅB'R=šr5.%‡Þ;Op{s<ÕpEô·{}œKcx—ʆplG·SìàU™èŽv«µEÞ+ë} ¯Ò5×àA⧣=éî^œ”Š™ž[1èfpú±¹¹±Ýâ/Û^ygËø:ˆæÃi¡€») Ùï¢ÃUµaü/ÁTt¦8õ©‹FhŠ–e”µÀ‚4:Cv·‡ϲ¿Ic8n€QT×ÔHVŠ—ÊIC©EÕšBV8×Ý,ÆÃBMÍøY½[tç£ؽMq¢¢®ÇåF2­E=<Þé`d¥Ç#!Ñv’’Iâ' x„Ù|K ÈI/¹uµÅþÿ.ú‰ŠÄë'fºáÂêë9¦`ϸ~TL"œ’öÔò6gé­hcç(b.tøñ+WÐê(‰U¶Ó¥2á~—)qBHPW¹ö~|:Ié«Ò 6:üx`òI2öT§+MaȵÀbênF¦Æ©Þ¼&=Sʳe³Än3×ZL^šF§)kMØöïà*ÃÕ´Xõ|²6æš[ƒ§«OèáuÌå·Óð CŠÂ.uÓCÇå©x÷óɇËX}Õ-úøñÒƒ(°Mò}Üò%,*7[Oo·8ö+A†Çv*¢Ç·n§õf— º°¾¼ sªhpÔm®ÆSØ(íôñÔ_S˜æ~¤͵Pw`=ãð&ý¸Ë—sÝc]È];[óãîŠG+Ø5ÍûñÛCR#K¯×ì梵͹‚XÈ×òäiÖÞ߯‘ç[þÎFÔÄŸÙÇ xÄÃ_è1å”oéñ2à Þúi̤5µ¿Ç˜*ä'O‡ªØ³é©öp6†ˆƒÅ&Å7àšsdس’Ç¿~'$ÄÅûò â{ôjñãõ•€7œ×ãÍ=9w·€ç*Ø’4-n%1úˆI@æWñ¸žyK·™f–°à…a ´Å[ói¯ñçUT\.Ð5ïÌtùD¹ÐôñE•2±£»ŽÿÅF,n.õõðâ‹*@˜”¾è°ÒÿOü‹…â~qg=8ŠG³òàcÔzö¦V?]µýœ³¾?LIK÷ÒçŽ?˜bw:XŸ{,Õ­l£N-i¨Ék_N5ãø{ÄÄGôñ5UŠu²ýOb*c[Žç‰ ÉRO~!±©|ÂG…ïÆÚJÛÃ+ék¥cò®ín@:{y`ýè…K*4·‡ëìà¿E¥…,q1ôÖ +ÿ ý=¸–¨é--)û=µíÈÔ@\–÷VþÎ;a<¡¬]®.yÕ_Epú÷ý¾ïîï̘oBàgS€ýœPa½ ¦¤¾–úy ;ô Z'º‚~€y^^°zmMBóBÚ[…ÇÃ5øŽ}4…éØ…÷T›{ó>rš—`>6°ïÄ–dT¦vŒ¹©ñþÞrªg¨‡u¾ž2ËDm}I<•E—¦˜v6íÉo–jvè¦ÜWô‚ ‚H¤~î½6Çjzm\•°ßjý =œ9½8ŸëÖjäU: X£^w‘zUýJÆXÃ,†67XÉÑ@ö xT͇u6bõê÷c`-­þž'± +Æsqáû=¼üÛËB¥€ök§؛͎ͱ â{ƒ{òn'€ùvÔ]¤ ¼,=^é?ÔzÆ5™MN–´ÓÃrÎKƺuŠ•ÈOgp>î2ç^›cýQM¬wmì¹ïáÁßÑ£<{.εU‚“¢öЧ·¾°ô†³*„©Pl[¤®ILõM<¾|A X£VŒÏönOîû:߉n„Ò9k§Uø‚t#à¸ÃaV Eî°÷æ* ¬,Ì,N¶=fI²örYi‰YoO¥}Xê9høNf‹>`±ÖFv3ƒ½7µ¼Aöü³ÞdÆR‚Ox‹›5½¸Ô1äÁNì ¹î/ü9ÕNfRš{< :ñ=˜sÊxaú¼I×c±Ðµþ¯Ïk³V’Ë®ÝE´×ŒRõ»0d™6Bä¨'Ü|-ØöúxÙ‹z›Í˜›Ü7•û¾ã8Ð_¸ ¿G$a½aÌXýB œ•ö»Ú ‚o¸ƒâ/kqJqJ‰-`'˜nª¾è›gn”Ãéw&À’MüuÞsêWR¨r†SŒ×ÿ¼Ô1ùŒ ØHײF?Öw²r{ ÇÔÜËžd«’_ÒŒV©êeÜ7*Ë-ÁòVÙ¹lvètâÓ#ôâŸ&fºZVs7›´ŒT¢´·–¬ ÷……¯mx(g*gΩÒè·må®ÎI Gnãõ¿/G~ž(3i\>º¼á4˜Hâ, %+²¬neDevFRobÞÄ‹_‹¬ßÓj\Vž» ªx&ZW‘ $€Ê,‘±k€ÂåA×·Nd ý:õ.ƒY¢ ˜DÄ©w0"ä-§³‡ÿ8@µAdŽÄZö±a‹0è1ŒM¦BÔioãìâK«j‡î‡ë׉œf¯ÎvNÞ?ÝÌÙo JIvøøñE.6`÷{‡2Ó昲¡:iÌꤩ‘ìÔ“ úϲîx¢í±ãgímà}ÿÝÅ/Nú¿…å¬H6!2E°°$ýzvíÁÒž|8aoQƒÖÇ1 +X 6>ßiàAŽuj:š9\a6aØØxp êþk¤Íò‰À±†¸×Oéý¼ñIœT%4¾ÁFŸâ?q…Sa¹fŠ†0Š!‰·NªåAV‘¨à?ˆä´‘È·ën/:œqŽŸb1•» 6¸ÒÃãËôÅë¤eXÔTF|» ûâߟn ~.xfG¦.£Eì¦ç°Iö{xg?Vùç«rÁ$Qü½<åK–{Vö‹\¶½‡cãÄ«®­Žš`ÑÕA>í¶ß¹Ù‹_Crtø^½úïŠ*C¡¬/ïßê׉ì•ëz¡°b²ŒTªm¥¾ŽNÏŸ×9žbÛ‰7¸>ÞX«4÷$ò*É»é yÂHu?ǘ*aøÏaµ³á’‡±àÏÓf|}WÌ÷@SÜðMÃèipôðãVfÍqSŸiñ=OÕ9)ÚÊHÄŸ¿‰N¤uïbèÛ‰ý‚ÜsßQê³ Än°×±?¯n&©(Z­îu¿sÉÿÉŠ­ýœÉ'‘áÉØm‘2ßÛn-þsæ`óäYˆû~L㾬¶]|ë}cõ×7R=QÏ\¬©'nÙ«ªõ˜Ë\xı֘’ìO1L_vœh–¼xžGž¾Íì‰SUæ\§¿²dÿ2Hïŵ%(ZßW1ä°6ùRF;£Š8³ éìþŽrlHÔ)=ÇñÚÁ'û<8f¬ÿ"͵[jû]9à êœÔdØÜÙÇ*n®KS-”Øéîè³ëà£3 c<ÍI·‡õ5‘ÒǨÒÚñÔ<Üc…Ôkî“ßör½ýgbf«Ï'âxP©±§J¢½õà½ÓjØ$§^Ás¯ÝÈyº¬A+¹]A< 3Ž:óvoÜÅ”!þg)Þ|tãÖl# ýœiËîjHÔûmÁ[ e¸1Aï-ý¼ZPôÄÍ"à Q#ýˆâFv7ø ñÆ^ŠbÙ +ujê é7ØÞHÙGßõñg…àÉWËht·9äž²cž”ñµ’ ^‚cúD¶ëx\ÞúpÚa¾¯²&cJi`c’fUhÚßiˆì|u<žš•MÕ…ø™Ìð«-Æ„kùñ8KË·{ëÌG8]×Óâxý‚åêLì5#û9Ž·1ÓH¬©·M.{¹£ÃÝŠ³}šËŒÑaùkc¬ªmãôëÅgM¨2^\÷ÙãfVhÞãâ}¼3½Îùo0†ŽhüÀ£Ý¿ì¿Y’,31A%-B®îN¯äør¾%"Eö;€ÇãÀòš¢ZÊÕE:??ÈñóÖTm—²¥-*ˆÁö‹Ÿ‡ ŽRÄ`I¶TD$6é{ƒàEˆàUê'¦2TÑÕâËú8O—:_ÞBm®Ó© ›iÛ–sø~f–ÏÝÂâ‘ÄNb [ô`4·kßëâÎzSÌÄêM¬xÁš°hq07ø _é=øƒê®$Øe"Å ÇÐx Ç“ræ ˆGŠ×ź¦2JÎ76Ûÿ‰5 §pGþ©ò†Wë£RO@õaÕ«'zx‚…(јâFbX€l +€.µ?òCÆð1Umn1"TÔM +…C,þTQ 7XÒö[êo¯…‹|Æ1,›.\Ž¦ØmEzÖÍM±éQ +n,™` ÷7mÝ­¯Ä1„O´.ÖØ ,výíôò`-k?üÇ-‰og‡ŸGTk]Ÿ)â÷£˜hÂ…¿ˆáùÊÙŠ§&ǵºÝÒÚ{>þ&³–p¥«””6¾¤{>i Ì!×V¾—½¿ˆí~r¬Ä£‘nMˆ‰Ÿ„Âôp€ŠZ[íM½ÍÏÇC§ ­:ÿOl?ù|&Šº(à©ø xšÌ9­è +–ÀôpåäLÆ™Û)RÕÞ@m,³õHËu$ÞÖâO®jw ‹~|Lã5³èt>Î1IJK¾§Û~GlÃòDÜØf¼o­ê&s+€­saÆyýOáxSÚ™|ç'²ûÚŽ&ñίçúvÃÂ>áTm…a™ê';i&·¯úxäý%ê–x1€ªyoo€ørF/•zÉé–ù­)>D6iV7,ö{8Í…zœÆ:XÕu1¼M(÷‹)¾:Ž>Sç)e„–¿ë~MÈ>gÍs¢{çêàñ–z›üÖïîm÷~½¹Ö3ŠÓc¤î·÷q&P™ë$nêtGßÇÜ'¦8åC‰ vìÄkõxqg•ð9rÀg¬”/´^æÜMu{­ùg.SŸ} ©nt×°øðÏ?‹Šåì)è© <Âãu¬«nÖí©·ÆÜ,ýqüC³ïZ©––ª©0èÈS©àGœó3Õ½âziÛë⧃(ÓÙ~)!Á’hµdÅðLúq©âò¤ûx¯Ã+ Óìæ:Ê–_§’Îǵ­Ì‚[M9.,.~¾zEÞº}ü‡4;¹£·ðæ©É û|yÔe”|8é„T¼Î¹'M><]™ÜÍ$AÒ‘ÝXhSQ¯êúg˜©ÉŠ}üVÖã\QÚt×’iiü½o£œ¤‹a¿]=ÍbUݸ`ºSž£‰–ím?‡9z¥6¤{x us¨ñ„{7´p§u“6­`moìàBÍvæhÈÊ ‡2#{y˜vï~wºÃœ&ºò<çND˜žwߧ3 +Y$ð:ñã.e™êZä8»Ã0´ÃVÞ?ÙÌ¥QN$±Z»1*_±çšr-~HÃéÝÍÏèéôøs,€Âw{5á‚ôÔj*lB(¦`§p¿Ó~\?¥’Å!ˆ£p5áÅÈb +ˆ€ /0¬‰Xíx—,ÓÒÂM€°üø^=M¥<rÝÊ—õŸ™)(±T`Ið¿Äð'ÉUF¢Ÿ_xËÔœ,M}#…Ë©YgÍ›{xÕà%Xéc¯#ÆÕ4êI·yO©µ8CÄðjé÷XãªQïÛ°ïÁ§$õE%*7û<~²ŽjI“CõñßÇTüOâyB‘~ü º¥™ä£„¼M§ ÙÖÉ •”Éo qŠõj®¹Ï¼~³Ì4¹Í˜í{ûO2Íš7þãe~?¸4Õc-!Ðò ¸¼{s„uÎN½­ÎšF{që%bÿË*Fû…=ø*ḄR ±ÐîãN5m§é™ŸòûPCpø_z¡‹}ßW«<Æ“™ÍîÇ +¶F/Z#„wkYEûž ³–hð|7ÉO5fQr^Ö-ðHf8ZUrß]»“Àߧ&BlIíΰŠÆÃ\‘ß“kqi1U±:u—IJ‘ôðÇôw-â­¹iŸƒ%OÁ©æš½c5o+ïkí×ì-ÁŸñN¢ÉxÎUœ@д…=Þ×¾œ«\£„Ø{£ÛôéÇÌã‘F9†²íÜP\_PAïĪôk ̸|sÆšÕŠŽãcáôéGóL­NÇVT  wúø͘¤k }8ÆȨÖ^þÞ<å¿NÙǨn¦z ‘ï{3oïâ²OÃãž&±ŸN}Tèf µ”5"¡á×jî$…î,4ïão¯‚ïD½If,Ã)LM)Vᔟü8éÕNLn]æú%òvZjŒF3¶×Àÿ×&{\SŽž7%͇…®¼ž£ #˜)PMÁµ»km³ÄFêzI%4’S“2”*ÊÖ-µ…˜\ F¾?ÛÃiøwMWú)…NnþUMR©ñ1ГáÁƒÌØ« bmbO·ø[˜ž+}Ê{ém=¿_¢ñ`ÊëìNƒûx€Îy4ÔÄ6+]õ{OÇõ<@VtLã’]àÐ Hž¾Þ5`ÞŸPÖî„ň.ß, Σ÷T÷ñ¿?T~’…q, +šºz‘ç¤@–hؾÃBt»Xôð_JØöY•XŠÆÞ|rLb,[bÆ “¶§½¾þ 3GO«•žyâò•Ý†Šßhµì4¸Ç2ßò÷ ãPᨿˆ6ìx!z.x?Î~só +å»ÐÉk[[nþ<;¸Øòî ö°¯ôð1Ï”RÒ!³àÛÄu6lzRQÿFÇB­Øýö=áùÕZÈÄ}»ŽøvcÍì,Oën=ÒfZhrŸ¤øý{ÎH‘…:ÜÛ_e¸æÜRIªÝo†¼cK#ý£qõvãþM¬˜Ý­ô7úí¯<½œ!¦Ã]€ ØëâÇ@·µ½§ÛÁ‹ ôã‹`¹vjÌM^šyE¡¦ÝïG ø;¯îþê÷ÔžOQmOOq’')2X£*éºÌ¿k‹5ÔÙk45mX”Ç,î¡Ef¾T±›»m°¿e)³iª–„mžà °•e`,nÀƒã¦£Cn+ð yg]HÞ@,}§ÄŸ§ÇÚx¡1CL‰¯병ªP +›ë{q#˜jIbn>g ¡<ëüß(ÏJÌ ‚k ë¡áÁ6ºU¯ñþHæ]Äw¾€ñ#?Ë>>Ýl;ý'ŒµU;Åõ¸öŸ¿‰Œ^˜%ÊžÚû~œ`ø4‚M€07ýtà‰“:ƒƒ`EKL‰·ÀëÅU©¼+#Íío=eßVz€ù”_i [ŠLÇê¯"PкµY¬‘×Dct½‡înç·.£ÕaýDV©‰Up‡~ÃáÀèÒÉJvmÇk;œ›ƒ;(%äðâÛÓþZÌùÖÛª²èì4?Âü3ýôÔÔ±ù¸„—$ZÀ}Ü^f¼Ù’zWJKÉ ÐÞÝíñá[ë—â=—rüO<Ñéqe¶¿·„󫿈 ~igZff¹6:ý<3GVqÜÝ+™€'°ãNƒÉ\÷77:ø÷ãåX¾–íÅFZÀ@äÜJ•“·+êZžMç°ÑÄŠ«Ö5Ï0\5™À·˜]•ú9>–°D ÏÕȘˆZƒ~ü`Å£òÛ·ð&Ü¿O9ÔÂ_¿×ÈSB·ñösË ~âÜ“[GösŒñíÔžBh„‡µ¾žq07#ÆüoÅq(é…¯¯‡"Ñâ±Ê5<|ʘ”8~# “î†ú=¼¶¿ÃO À3Æ#“cܪº›{;ý<=¹kÑv[Ç¡$µÇøGôs^0ý;væŠ]¦ÇK7Ô¦Í>îbñVÃfãÁ(õy0ë=»x~|XI×Õ–nðöð8êU~t1 ßNüsF`lRCôñ™dó4rs2›s,d“~fBOÓÎD_èç —q¶œ!ç¡Ã¤©m8ùƒåöŸ)°Ì”V¾Ž9®òÖÃîçu&ÃŒÕg•Äž"ÏPçÃ^gÁòËÔ8ÝÅÖ\ËÉD·#êâ’ Õ–äLOJt"ý¿oø¶ey´ã%UdóøÛèæM$¾<Ê´Ü—ÞüxÃhié|±Û·0b ³ÇÛÏe,ÜÙOŽu6³ ëáËfü==NÓcqÁox[Æþ´Šgø±H”ƒ} IÐs†kÇVŠ•µ¶‡„›ÖÇWaÂ($»xŸ‡)‹ÕZÆaÌLªÄëß™zužã(-¯b/Å&d®ˆŸ»&vÀüÂN†ÿ·–3y-b>¾5M„«ørØÃs­¹ÊŠ¦| ÁSÁ7 uUᙉ6·ðá†é—V¢5ëÁsbÕG¡°"öâ{Ç´§ûø–ÍôSâÂÀß…ã«9ÐÔëûøWFПéäW¯dñíÏ7aýüÅ&*Ï¡<èUyÂÄþ§™bQý¼Ïn¿³™| }¿då,>(2þojD !'Žsf2èn8—Ì©aaĆ-NÕo}8ÛO„'çÅÎR¥0üx$åZÃÎ.°¬ly|“/¸ëÇL7òÉãæŽ Høq]€Ê+_m}·íÅ6‡ÄŠ6x¶¿O³‹Ì¥Fi#÷˜›w¿XaŽÇÃAÆÚʵœkà8“Ì´Ê q˜"H~Èøs[A½ôâ¯/bp3)+nÓ~Ž»bŠÈæöø[„›­TâBV`j-ôñ Ó.Œ7i%¤†Y]¿z0ûI·ؼõYt%TL¬Ú’ÀýãO»Œ•}?ÄólÑÓPÒÍ<µ ²%Tox±°±ÝùË®‡ÇXý>acÇòýe%»ì.‹~ÛŠßmþ<”¼Ë¹{ÇŽ¸Sž¡lºëkZüq«éõ^ :ÈRÀþ|2Ÿ¨·ÐÞkôpTÁsn1ÓŠ?¢cÜÍôŽbÎw̽L":ê†qìý{q÷%ái(v6 q] E¸~£ˆ v)ò$gAx$:¯´xªü4ž—3•6jÁ \õI˜qrA-ï÷¹ï9/5U¢Y)=ü|oÁq'ç8ëaÊÔïRÖR1ðïm8IúÕŸŽpÇ&”t¯íïÜñ3ƒb #wã완{T\“amNº ßKPù]áfFt–páH;X?Ù6Òâúñ·0æ©0„*¾ëîø;ñ(½y{,ãk‚;Ÿg%Sõ&a¶BÊ/c{÷öxqîŒ%]ävÐÆݾŸ§æ\Yb‚ñq‰Ööö÷·5ØÂÒÊ4¹µ” ýgÇŒ™»iÔ„Ñ‹ÓÆýþž2åìÙ…Jk£Z ¢UE®¥l@#mϼ||>#¨…Ö­B€K¾Ôr{ggYª¨&®–J4)06:n#K4þvôK.Þªá,i%öÿÅ/ìáæÌ,×$ë}xÆ\<{_Q­íßïâÊÿ8 ‘Ií¥þÿ0É–¦‚Ë$ û‡¸þùsùŒ9­¨ñíñíɸü£@Ûo¨×ÖIWV·f$‘ß_‡ê°š‘{x÷þÞ4ÖÔ¾uÖÝÊÜñï#ÑcÕBˆ"` î }'ê6’²¥&PÍ=§’ …œ{€Æ¬ÀF­~Ä‹±÷‰íkpÊçüó%@A7Ú¤h~}ü¯ŸYTËSPÍ}lMþ»~\,8t¦’IÑOíà—q”Ú×¾º[úÔM[Õùr®ÇdGAVPÊt'¸?OÃc¹†BìTý÷ãe64Ê/»¾·¿´ó#Š3­®M‡ áç‹|Çó:mA 06ñÓƒ¶+|¼ŒŽh­‘˜h¦Þ?ÝÆø°Ã—nßG·Ã±œe°å÷EÇcÄFeÇ&Äd:mö{xŽÆ²­\èÄnüuYWM6µ¼{öç|›‰V`ÚŸ»éãžÓ¬Z*€,oû§_ ý;ʵԔ„M ǵùËrUUˆã˜›¿žúT\wɨ¬„³m`JûAúìÑÕl·Ðz ÎT” p²õÇñO’…Z*0À›íÖçOÔp¤õSÕþkêk¶çd OssÀÁé+1fß+3ܱ¿3Òåy$:ƒÉñå¯)»xñç À‹Ÿ†Ÿ—éèmümÇ\/tvÇ^KÅ ,¦Þ™G„Ë j9-÷›‰>Ë7MÎàÈØ­pÂã?üs–h31Uú¸–Ž‚Z÷ÜÞ:ò}>!×C~;àTauo Gj%òvør U3‘¯Ã’aŒ¸ãv1C¸<>ñ̹pm$öäé¡.tþžbùKÛÚ9Î*pG;’-§]mÈÕ/`Úª.~þ7bøºÓ‹÷q#‹V´§‘hjYMÿ£Žb¬~_Dž½q/NxŠ¤ãΦ,ºø®¾>ÑË·ôKøåÞªáQ¼L¡öj»…ô¿(Ö +Q"r5nF¾cÅ¡ò®{q’»µÇÓÆÉñ #ñäy35M96cn3bxôÕw¹ã<²_SΕ¯ÌÐéɯ3Æ„o3Ænr½ùÂEÞ-ß’0ìª Û°â§.åe•—M>_aYÈMÄ[áߘëhÅ+Xè9vT>­ÛƒJºom:ÔÔKÀ{Ôiñãöué½=M1÷m§ñá[ë¦Sþ[3FG`HïÂéœp¿”™ˆ_‰ZÄÛÈo5ô¿1™Çby&•¯nO‰wüm®œ—ó%ÁanÞÞg0 [¿156æËøs*À[±Ó˜ê°ÍÃú9 +læþÎcƒît׊"” µ­¯¸D¾OXÀmp9‘q‚š~\rÂëå¨ Ü(ß×^*p'õíÅ6^õŠ`¬D²n¸µíáõr~9êRlB Jéão§¿íâ/ëED×8úû>Ž4£½cny¯qnö<ÃP"¢©ÙÇcï;Ý•I¶¦×:öÓQÅsêV+˜rÅU(%)Ÿjý#¢“u6ÜíÖúŽî¢î¥ªunÿW>„é<Þ£RL~ÌQÎÝí©‰”~mï˜gYWÞ[Ù᧸¥çºëð·~7«b é¯³^ÜË ->$ˆÕt?£ú8Û‹àÜnß¹× +ŠÛASáû-ÄDÿ= Y&•EΛ›O¸ñÏ.Ôâ2J¡ç•µÇQðqÁð*(Æ7Kܵ½ÕêOåß^;`t±ÄäÆYØè]´¿°iáðàÑÓÇ\ <×Ý¢• š¿c¨7Ñ{Øž:ãÙêD£s~ú[øþ\)ž¤óÏܱöý_Iú¸^é#a;x‹ñy” —7¶Ÿ þ¸ºÊøZ²îÃúy7‡¢f¸ÓÛĤ8›+Mõý¾“óÍ/s~ÿ‡^"ñ抨Çg€›}àðÂæùC"ÿÜ qõò¶b,{§Û÷sÑfy¾“ð­¹ÕKGXÇo†§’©i>n={ïùr6)–¡—í/×ôñ­:eO_(fkôr>`À©éN$ó@/ßûù›-I9 ÖŸgì“ Åv2 fnÖ¾¿—½!¨Æ! +/kxýÜ{Àz7‚ôæUPKLEÉcÀƒ­þ¹àɱÉKDÊJ‚¤4íÛDŽ˪lÌÝU¨o}•ÞçS¯Ãˆº.™Ë[&ùI$øßõû¸ñKÒ¸Pj¶#¿³ŽÐä`:VÔoÛãÈX†ÝF€ó–‡«ÜhHðäñBvç((v‘oI«§W_»ŒóáRÖ ¹ýœpËU©½‹7åÁ7éã¼[u=…¿‡&¯MÖ" OðcÄr¬rn:üx–Å)K3ÖVdž!`nG}8‚ÎØñrmÛ[q3†`ÒbÎXŽþÞ:Ôai@—µ­Æôý#qÆ—lm`~¾HžC0Óê?p‚›Ê7×Ùn9@¤ 8VSy þ¾Á†Sˆ_gÑÉŒyÁ”)·=¼G©<12éáÌ2 MOnÜfÅñ}¢ÀéØ&jêZfï~G4»»óQlÛŽ3ÕI6bcÆÉÎœ‰+ ó¤7<“&À/ý¼• s ¯<À÷äÜ7 36£‹œ•Óê¼Ë X£6ñ ÁŸ$zv«·¼me¹rFgÁ?“©R;|8g|Ih¼F¼BÕ效RMþ<‰U9—BoÉg“3WÇM–.lá¹è×£¹ë¨Qšn/Ûøs[}3W(žEŒ{¾6Ô}Ü,Y‘ß ™£on'êñ0;sŠ8 ndƒÞoè䈓w9mÓžíμݠ󄸇”=œl­ÅZýì9 ÏæøêyÓ\òFS%,Á ‚ Û·‡ OU’ejÁò‘öF¦Þ?O-ÃÓ÷¨è1<5dóÓ¾îcëw¨ø>NEóFª|ySÿˆGV4]KÝcÂE<.ϸ{ñà Æ&£"äñs•3«F@,{_¿Qcæ©~×:Ž¸È +’[õþÎEu àèuäˆé· yª‘J2Õ@¿§“à©ÙœQdœÜôŒ#'Bà[·snY7KpÅÅi Dì~íºGŽšÇ5) €Ü[µþ¾ÿY9%²þ*ûÝÇû¸Qóå +±cooœADmƺ‹Ì7äšV¿ÃŽ´d>žã#TÀò\Y{Þü\ô÷£€YÊøw·ÕµEm9­íû<8õ{§–6 +#µ†Ÿ¬éÒÏæ5Jxðê_N Á·•m~‘OåÈWê·×Á#¢sÖáUªÆ7 +H GÇ@sšTÒF x >ï +M‹:j>ž6cXÎô6k|xæX‰oÛ¿ÇžÁ3ìtmmÖ°ñ¿‡ÑǤëM=v·ÑúøqƯ´û-»óæî«ÃŠ /sãÛN`‹3|ÅÈ>Ëþ¿Oµf­º©¸\}›ø|ôêoR(¦Ä‚´®#X‚×îGÛzcé5“Ó|¬ +"D¹`¢Ãèðᦣ£Ž†0ˆ€-¦œÊ¹ãÊÊüy²Ö›ãÃ"! ,ìN€öF½ù\C,RåȶF¡G{g1,6Ôdp +êEø‡¬Ãi©jl€('Ù±hÆÏ«ÙáÄv!Eº[âyÏÄ$ÁÛr÷ö,0lÿó1ض¿Vœ™Q˜­w_¿ÇŽ])ÅVƒ3@Ía{¯ßoõÉ…º¸Ð2ÜßQÀ÷ÎG/¼mãÎt™²&mÛÃeô:rDÙ‚,H¤iß^HŸ1Å´2éÞúñšó\P¥þÑöøq— +ΑÔ^àü?oð¾¢½×R;ö7û¸¥þ¿ÁŠÅv+ºÝ‡UYŒ¼Àv-e¿À xð8ë¿^¿Í„MN¤Š¢·$÷_‡‡ –{Îõy¦ªI¦¶âN¤øøó7G³$tÔEÍ>:\áõ‰a”xCb,¾E$F¢O¢4,G×k‰ªŸY˜üýb̸ž3P ž¶ªj¢u&îå€ú…‡Ð8<~9šAÓ¼^…˜Ýk„Ê·M­§™‚½©œ›~7â<àðfÝî ئ½£ÃêàO˜2…^¡nO}ÇljŒO+cT—²–þî0×R×@HxØ5ÛŒõ•u+}ÊtørÏ5IÚ>®+2vCÅ1°‹O 2ÈÛT‘Úç¹>À5>À àƒ¢§ ( <4Ñ”Yi‹»Ûýf$ß]-ÂלºÔõfÒ=ë\vïíâ“Òt‹‚ãp÷HAú{ðÚI‹ +¸·}ÝÇêxÛW¹”ãÆŠíßKsªdÜ.§ÂÖ><‰‰É=2’×·å÷ñ šÝª<>›‹ß‰iio³íäü(üõ²xü‡*|VF§Uû*§ìß½ý£ïâ“"ÖÓ‰ç÷a¡×ê¿%c}o—)u; Á$”­%Vya°%’g7üJÃ_j›qIŸsQ¢¤î-m~Ÿ xð³u78ýYK÷½ÇÄx[Œô*ÕG¼okÌ89Ãê l*Ö éù yÞNãÄ£™3B%DL¦Ý»ÿ¸ƒy»|>îI¤ŸÏÜ= Ë&žb-î,±•÷ˆ×Àü3HT¬Tû-Àg?aÏX { úœN«r.Àvú¸ç‚õ=¢3kñö.²¶~‚ } Þ((±ˆ«ÛWØ9ƒÌÓböq‰æ$ž§k-Ü?¼q9˜+fÙ¼O°{8³é_B±\èÊî¶äqíÞü3Ý:èTZ• ¨-¹ßSùñ³­>¢p”P²Å"™= Ý¾þþ¦zµÆú›VñS¹òõ1>=ïÀñò˜œžlÞó6¦úøüy™²LTlOnpþN‘‘e|-ÎB1ks cmˆŽÿG&¨*Ö<éäZµkòûi Ç3ÅŠ#/~üçoœNÝl~žJ£ –¿ÃÝbY^¡#†§ RÝù‡ÕOØ´»Xñ3ˆÊž3Ö½´ãU\·'¦<‰+kΣ·nM„ß^N¥¹·%¢€9ÊÿO$ÐQ=CØuâ³,eé+*cŠÆïoãáÃãé7Ó þZ*]-ù||x3b](‡¢ì ¸{ýÿ¯QAp©iû¸V:™˜„Òªsßóâbž®ÿW·™Ú®úoÇ¡“õ30üË¥âRûùo™?ÓÄ9{FØ XÛÂÑë/)Å„á“\ÞÑØò­ºÇ*CŠ0_iâ53s2¿‡~g§±Ð§&D4ÖüæÚ[¼~ï#Th³Õ ½ùjw~rŠ›iþ‘ò¡yԑ쟖³%FY«Y¢6`~=¯~_Lþ´>GHÙÍÅÅïý¼uꇫ/ætÌ“p|xOºáÔÎÜØßSÄM5k_’”yžÍðWîãþ \è,Ü{¤¨ÝØëÉkrÓé)ˆžq©…Ÿ'±(þža§rËký\Œ1O˜86ÚCið7å£úÏQg*8Ò÷ (?vƒ‡**N4‘£럢ƪŽjˆÅÎÛü{ò´óÝ1¸#PH?W,ÁJT›{tâ~¢B„óqÌÔóûÖÖ玘s×49Ó‹öä 4íÎj/og2 Þ9.š‹Ìè/¯·“âT‹²ß^ÿ©ã~+*¸6´0ÖÄàØõs¡ahöðÜú2êTj"_BÀ[_«Ç†ÎÑâ°,—ÐŽAÄPÀí~ý¸VT‰&¸:ßCÇì¿J’sðöqÄ¢éùq?Q†™V¹å.RZ®Çõý{ñÏʃÞrOjj#ˆ­¯‡ñ¤jæ£ëñâ~¯¥õ™…጑nàxðÎ>ŸksV(iåVE.x2t3ð¢ÌÒ-K€OÚñïÁ‡ü+ëpp†•E—À‚ðüøÍúfÄú\C2Ûà.;qžlÒÔlûÂú›ó©s4uÃN6WP¥wÆúñ‡ÂE*{?·ˆÜbC |5ïý“ƒHe"ý¾ZÐR-Óöñß Êø–a¼t‘—=¾‡›:‹˜ –;v×òà«øYt|s=|"u¸Ó¹7æÀÝ ÉñåL!@§üÇUUlîlª.Iøp°z™üYzIéÜKMWˆ§Í ¨‰HgÝì + ïÊØõaêøz°Ä¶Þ:h·Äš»±µôÓë· ¾sÇaÁái%>êÜð¼ç_V´•âš°-~)ò®6sDbn÷±öÿOÆ*O§óMÔ¸7ø\Ž2bÕK¯³'’ˆÝIïõ}ÜuÃs«)³ kÇì±›L½4ŠmúU=¸o³H¦n€þ¶àIž²ó×ÄB1¸_趜 ñZüc*9Ôº{‹^Öç°®±ËHÖ`Êo¨#Ž ÖÙpOo êxÏ_Ô…¬SºÂçãìî5ãPÎñA¨:öïÈ}W0n*lO·’2ÇUj± ($’EõÒü2¾“r㘟ÍÕ(fEÜßNú‹‹pœ~!y‚ W¨“Ä‹qX‚}Ç€ ^¹K‚ýýœqÉ +ͽD}øMÓªûÆ`DñÞÅWî¿7HóFqè§O+(q†Ž9&ŒG†_7pabX€Àî5· +¶|‡çYÏ{. \îrÎeÄpÆ$b¥ˆ·ºÞ÷äxoó(©Œ•­à<<~î ±JY)÷06köþÎE‚qò²Ká©·moãýƒYH€˜ä\{Ÿ£Ûo‡ñ̨“%í§o²méâ3ɤÜ;ê=§ú8ãÒÞ‚â=Oœœ6§‚3ij–ž/øœÍdýPKâÇ0µBª)é¥F‘o I;å»m-fb~É÷@±< kªct?á à5ÖÌã´ì iÜaàq ÒÌa°: ºA³àG æIÎ+ˆÒ 6Ð}|RKPô 8×\Þa·qÜ}ÁÓAs¨çx„¦T ‚5âC¢G¾Ÿkýúñ•0è%}w¢Ü~Ëy^’nMîtú?g6¤EòÂq¯´ÛÛn;e–†„Ÿ,Zì>’=š~¢ü3†.sO^<©Hiaµÿ⸑­ƒ1þþ Þ¢1ßêíL°0"ád[éuq¸£¸¿Ã…ê£0™«ÕØßS~ 8 Q¬qËqpA°úxÓ›è£8“ȃnà úmnsËuφÕX›H2LobÀX€þž9úXê¦!YÔì:iˆ/k våçjÿšbF ßû¸æR—_xk¡â#ËžsQßûx’Ʋ‹îÜ·wã)¬®ÀþωïÇ,+«aì7íãµOT©ªFòÆã™0\Îó*ÄV¶·?³†¡¾š „,³*±° µÿoñ0˜%Óú}îmÖú~\ýMzÒ¦Ãc–š”‘·p÷{ß„·9æœS©Õ$HHŒ›‘ss~;e\¥ âíO³Ã’¦Æc–[^ÿ—34©T>?A¨ÃCw]{O ͇{Gñqí¶¦ßßG¦¤6œoÄ©¦£¿ìãKù„‘cqÎèhdšKÄö⯈2/ãàx·ÉùWæX_µ´à•—°%¦Ú´·xqXô:XrA¯YÀ¿Œy‡¦ÃÐÞÄðêžuG,£ÃÙáÀÅþyô×^5Ã…<ò\ñCƒ`~Qaãž$~^˶2æYÍþîf†é¯ÑÎÞò1öߎØi.ì祺½¿>s3íúG~b–°B¼ê†?±×™¶ÙµÒÜæ)Œšvç©Ö…MûüXî>d6N3†jƒòA ²üO8µ)^t!k»:[òçiÈ6µ¹¦‹[røvîÜ2ô,À[˜ñw Lj¬À¾ñ>[‘~9ÓÈHrR˸rD™ˆðäØ‚À ×ÙÎþt¨¶—<àkKw<Á=A© w¿{rfD!7ñ⛄ð¿Ôcj,yΦâÃKëÈUtëJ¦þÿgõÒ.ãa§ |³Llx®É½E—,*ª›mÒÄÛǃæXõ"Õ4H»ˆ°µvý{sØ÷V›Cb,Òÿ#¿®äK©ïqog?ÂÏ$Ɇu ßGåÔùjlHO\~\Ê¢Œ|9;…×ñ6õž›úU‹bBA‘RLêOµc$~|Õg£YÇêp“Åg’¦®¦Bîó1b7.tÛ‡·(Ô+á`áÀ{Õ>h|*âCc·öpƒÕKSS˜ÒY›7oD«Ëáª/û qKŒÊ­s§¸•FÁq÷ýú8šŸuC‹‹øó e Hî?ŸõµBÆÞÏ£ÊòÇ-KX«©T\ê-¯‡þŒÇš2µ5Dgí í®¶Ec;‘ÿØÆp*ÀoÕ=3¢­KÚ×ú8˜Ì}#ŠœCkû>ŽþÖgÊõÔ%„ntí¯&ƒžK3ép5àÓÞ†ŒÅ–bM´ý}¼_eŽ“A‚M»´iÝšÁT÷6Ó‚êó-ô9<ªÎ+Rëåí„í.;³›p¸õ£ÊHÇ&Å+"e©#Ü¥­È–ÿUÃ# iŇ@zCÐJâ—]h>ìs247àíTP~“~)ºµê, +œ7/ªƒy&1t!kq÷p3ë^?%<s°fHÁr?Ä@?Wügý!Øn~ž6ô£3¯Ió½&IXË4 ²é÷cÃß1æÀ[ÝaptµnFÃpió`§…¹"ò<±AÐÛt“2 ííÜ{y"N€æØ0êÚ‚â*ÔêLU²ü¼TWÓíþ{‚;µîÀT³¶|è™›¢¦ßÝ VWÜt±g ÿ?üIä|ߟ:V”ÔU8Î%P®±3¬±ù>cDgÎ)ëî—ÜAj.+bù7©^œ±Êfι­^Dw†“¥®£Ž§Êe À$‹¥K €Y=àJEæúŒõûã¹~š*ÊdÂéÄPS@ Ä—¸Tm aØÀF‹1 +Œ%¥I Í$†ç¹/ðîZ©>_{i‹í?ÓÄŽe¢„lMî{[ÙÀ›5P¶V&Q´ÓíàÓ öʈ¬u·n 8ncó£ï¡ìy(V ¼±ìGöóÔ«Ùy¾¿rÚþÞ1b•½ûv·åƆª(÷î³ûO²ýnò=€v¹ú¸ø˜¦Æ±:ßéÓëç,C>C” 5,wl×è: ÿO VBÍ•Yƒ6͉³~’yÙ‰¥¾¡Ë%Êž“ºqë[&Õâ9‡­ËUØ-$@WCu”¢˜¼­¾¢šÑÎû\í/«`À” q‹Ñáåè·¬Ô/&?Ö>$­E1`qíê³b±È\•±"ÑnîüzÅøe\ï‚5E3ö˜¤„1“ Äq<*G;-¤uTÒÆl$‚ÄwPoÂÔLÝZé#5`ÊØÕT-µÕè*dR{‚’Ä’E"‘¨dfR5‰$ÂfXª£’ Ž¡&âsÿá[îUM‰¥ *…ÖÂÿ—òÀk–¢ob>“ÀW?á…Ëæ.¡Ž¼[z¢ÇR(K^Ñ’ÚrÉóÅÙ€µ‰?G˜”Ntw¶ÜdÅ Ž²Oxm"Úö׌¸ŽðÞû&s µ(J‹{?§ˆÌC¦8ž4HŠ3aض—ú;ñEÓßMx‹TœÜø 2Ý:é­.[(\n"Çõ·eÎT™v—sûª£_o w©_Uµ ÐRó7øváj˜Çg3ÎÄÜÞÄñß ¡Œ¿m·œñÜ\Ò'»ìû¯ÄÃc˜µüoÇ,3faã~< +²ÚžB¬«&±ŒQ¥ý§ñU>íHøs¹“ϸúÉäà Gº¢äñÿÊK{MGʬ-<}Ôý_Ç‹Œ¯†*çðâ–\])P[¿bO;§¬ù~âÃòãFgÏ«„! á߀þwêÜò¨m¸Ž+SŽ¹¹ \ëõó6ª=õäºJM§ÄkmxñG"è5¿³…onÕßå¯ôÚÜÏßôó,kaqãíä¬,ìk{×Ç é™íìäyá#¶¼kªvÔû93.ÛÀqá Ú×íȘÆ$˜z›$1ŒÀÓ›_óÓ!SP×ñÂŽ“jó?•aoÎ@þóˆAo‡14:_òçèÁ4`ß‘¦Œ[ëᢾϣ˜qW(¼Ef ãÄv$Ä1ãUCä9oȳxò4¯;ŽÄòm.œq¦דè©üæº#’Æ;\ª÷:>›t)hpär‚䮇Æ'ÒïIip)ŒÒ'¼H:øk}8a1éUì/Û…¯ÖX"Ápyìä¦× [•׌üù†½É_Jn9’6·ïKØdx†f‰œnÛ¨XåÛz2Ì”ÙwŒ©  ±6ÓN½[ëT8v#ÚÛOc§oíå@þ x—3UÉO·.ÖÐø_^YÛ™)ØžO.>‘ý\’€ÚÜË[|9ÎCqߘo­ùÄ(^vcÙζۘäPy…£Á0×Nq7iÎM½É4ʼu¢Ð[Ž€«sõs2~L¥6ù(Ip<9&*‹§ŽUI䊪­—ñŽmt×ÙÇ*ztã•=aAí㥴¾ñû¼xåð>Áõs©½Ó§ks ÔÞäs Õ%Iäœ=ÂxíA ¨–Ê\9Í8“ãÄv¯‡sÌÍŽ„[÷ã]v,õfÄéÈu,€ûy…]B“§0Á‚Öb2îÁïÉ´XµFSå–"Þß»Š¬35¼ƒnïÏÛÈ•ø̈÷ ðî‡:K…¼|x¦Á³ÛÔXá~ü~‹ùA=¹ÂyœÛSôsˆ«qã¯{ߘŸh;q}Ð\и./¢ÞÛ‰íúžX÷Bú‘E‰Ð*îSqít;$ÔÂ6a{ öðMž¿Ï_o‡'CQá¡ã&'ÊöïÌ´oÑ‘ì6·³‰lÏD¯-…î[€¿¨5Y©WS§Ò5û¹dÞ—3Æ:wFo¸„_ùTq߈vŽ'1 +@×·ðçÚ÷uýœNæZy›p*~‘ÀÇ2Ñ°f6?8Ñ‚äüC1Ô§…Ø{@;~ýA¿°kìƒTÈøþSÁÄÑCI¿kÿ0ÝHª-ÝCò©{p<Ïý[Ëøl¥*f“šþô@˜éU»±¦¬ÿ~9t?¤Y#Ô¶}°Üs7¬VjÊ…Ræ"¿¡¤²+Èûí}¡tá¹¥Ÿý!69†áÙWÏO\Ž•ÌeÕb‘QóS<’¤ŒY„Fá”í{bÁÖʬ½èû$?™QOQ‰ˆ q'˜Žû˜—7[þöº\Üðœt[ª¤Ì4˜”ÀH‚O>es}ä\ëí×êâ£4ç +ÌïŠTWJ-æ»;is`€öq–§|MvîGñã6bÂ"­†Ä\¹.Iì©>À8j="Qg Ï +*ømU O íå7•ÿT±‰@û)þVOQ¯úLk +éU4¥n%’õbòй¸X–MålǾÄ\µ¸ûÔJ©0ÿ¿Fh<ÝO’›'p6&¬À^ÃNN´e®€dEtÄsôÓÇmè­\äÿ„Ã’ ´;œß¿!d_Äs.d —TÃópŠ8ëã¡59L®!Äc1Ô·Í!ug•,¯#«´Sx!9ë+ãx”˜Ö?ÏÕìD%’º¢fEE@ ÔìŠö(P¢€€µ¸]úù×é:ïŒÁ䯑GJ-~èí û‡kñQ“+wàq.ÿt3›øŸxß·–´)v;Uvªx~žDÅØ|@üø‹ÍXŒEXib=„$pJÙpƒ ßÝ:hð<r¶lgEÖújAøøñQI‡±ößØ;rQÆB‹žÄóMiasÛ鿇jªU'¿ÔxÞfÜ|u<åIˆ¸kt hjݵ·Ôr¤uBêxÑ]@±î?wf…¡ÓSíñÓqºz&ƒÌ‘Eõ­¨ä¨”x#fÒÞ'õÓŠ +~±Sª€€Ü÷½¸õƒõP²îß³KkÜñ1ÕÞ¯TÖR”W X×CÀZ—¯ªw•‹k` þ¾MYfZå¥[‚{q?˜+ÚfÜvãV²þ·ãŽ+¶–Ð qÂZã{y‰ê„£_ÆÊúT'½¿_@’!·nr¦O UñÓN*0¬$P@:“kž+ræñÓÛÅ&„Ã=Ï`ƒúy> ¥4d…q‹¬’™®ZëƬS>dÚ­o ÷â3æw«nï}8Š¨¢|AîE…ûrLXtpßÙÎGe׿ÑÎèþÕþ¾:Gú5¿Ýôñ;š*ì/§Ò^O×ÛÉ4w{xãÇ“<5Ôü9Š0ËÜxÿN|ø¼;øsðÇ(öq²¶ÃOo=H°°?w·’qLyiI +{ñ!Œã/3‘~5ÇLÜr Êú¸ã +;9ãÎ2¥»ŽqÛðÆWwÃœ fãøò<à{›ò4ÉÔ*Hør65`{kÛ‰,jšìx“Ĩ÷^ÃraŒO!ÖPðã]D;IäVSÎÒ=¼ŸL¶r£ƒÌaÅIä§ ¡®›œb®9œhZö>ÎY“驨•`öqÏÄ!ÊЛX[èz™×\ •/ ×¸·„CÖ¿©èq¤šÚìAP/τʪ±ëå.æäêyņÓÏ#[‹Î†ãßÕÌ]%mÁüùd}õ+OC…*‡ +7)ñø‹ñ5ê;ÕäÒ¼qÊÀl?SÊ÷êq“:âoPÆâæßH;¹&±äÔ··’"½µæU%Ãœâ7ç2w|yÀ{xó‘Vç!Î+ïntPžÜÃ"}Ü‹S¯8 #Qß™øO$ÒÆ/~O¦_o°êV­uEûDÁ;.t§ÌŒ3 “ây7tÂl0y¨-mHí§BôÝü9ÈÏky&ž«oÇ’Ö®àkðäzº’VÞÞ6É5Ûµù²1&·ãMbµ3·Ù ¨Þü³O@þ¢¯*‘É‘B®‡¸‚¾bêoóTb ô=þ<*ž«%\VÉ7"àp«f +;-mx„Ìtþ½ø’®„ÂyÇ“iê6›Ûêã…4û—Kñç +§içÇ·tPÛOÖäèàòƺ`ª”(Ó°öñ¾¦}¿O0 +Ÿ9´×éäÚ8Ø[Çîâ‡€Ó Xrjc+·Nzä­m9=&0­‡~`“O¨Rxç‚tãÌ Aà”}<0e2Ù­o«ŠŒÃ‘ˆ&ߣOýX¥þWQ½tú8œÁs)GÔñE5bÖG{öÓ5—Œé{jy# Ç)x©Ã:ˆ‘(×áÛ’ORQÏ~úÞÜóg–©½¾›Že¥Åþqí¨âŸÌ ƒF§Ä“Ã1éÿ¨uu4jiÜ­¯pO¶Úðbº‡Ž9}äf±=´'ú8º~¬àYnæÄu^ßPáFõÕÕ|®ðyÔéúF÷tQco »˜Þ·w&˺ê=‚÷ûø`²V`Zˆ€>Ïo«%*nÕÆú©¬ _[}zq1ŽSèt×öñ³ + >nà,|8+d>^!á§ì©=ÐMÿÝÎõ(ÌñÖÌÞTE€k{/ãË(ɾµè§ÂcZiw‹ Fœ›–ÿ\7-WªÕÌçÀþ·à©Oø–äZhÁš©[[Ûúx_½fþ6™ áOOIV$¨u!cŒn7·Ãõú9C¾§ú©]ê:Wã5 ¹ª¤÷î ÑG·^'òOId ªZ©mö[psɽI\*‘ãÂÖþî½fņ);I½ÿ³€¶c¡Y/ì7ç.f—Ë5@|~ŽyK8ÇS†½ïߊ +Z”#½øÕ™0x~¾†Îbѯõ~¿GÅ)`ïð }|ú•@q æÚëÃè¨ ]“…3±Ý o gÙÏš¤GßÈR¬„dJµ»ø1|:J¶²€ «}c 7>Àäxuƒ§¶Yã¿}}Ñ÷p/ëü(3.gœš §Øl@, [Ä(T+½JüS:—ž›n”Ønq²Ïù(í§–‡Q¡<.`U8ƒms`N¢ÖñŸXëßèÓ™céýìmãÅ’b ±À±ú8±É´çÃ"Ð?nÖÜg˜s™#þãˆë¡ïüxÉ_Fd$þËñ%™ð¨—í!Öߟ1`¬¸{ ƒcņ™V@‚ ïqßèãìx–ÚÛTâ;Ýÿ.E\I¤KG8=YAof€r?óD…nM€øñ‹3f‚Tíïùp*ͳM‰LwK >š²áÆê㥉wË¥“]|M¾€8~ú†ÔôçåŒ(Ž2ì¯stb¯ÐââÇëá6ëÿIéúu™«0°7PÈí-?@ìJkRá~®äÔÁêÌR hØÝÚý ÷t^™QÔØì é¯o¿Ã‘Ǧg©3mÀ)æ®”2D7‘à.t}&ã‚GL? ìû˜ª¢8ÝM60ÜÌþl w>ê{ ý,5ãçW²KjÎ MQóqÒYûBïø›ioøž†ÞÎIèži^šfD’Ou%²›k¯êxnh³4XÄ+$n5Ó“¡­b·¶¹ÛâãO5â5q02@[žýGÏƬBO…€â;Y§pìÀ¯Þ…zMÏÝn‘–áuRBMŒÌ†8þ¦“jŸ«‚Y} gþ‚áf¿†3)b#rìøm#áñá^Íá} õýSÄÃb{_s~?]¹"y*œêlH"tã=t¾kŸíþ<Ë +DÜÜê—H.OÏ0K£w +- äÊ,V:„÷Mü1TKûÀ_Ø"EµÒ¤Q«<’0TU$Ÿ8£©év7‘Þ?Ÿ¥–œ8º–] ìÊܻƒ‡PO€'Úxø øw’ØÇÊû§˜%Ì"SapuÓŒ¸ýyh´']8fl]é$÷M´ãMb£ßry-ö§o§·!Õ>ÓôƒÛŠïoiöxrm;,OoÛÉ•2º÷øq'™êŽ$&³ÉôN¢k G‡3IT-anCš¨ïµ8dÀÇ~çTM®¶¿ìä*‰|Á§{_òT²>®7WÊòóÃQCƒGMaáog3~]Iãkÿ„ö3i¥Ø›}b’-ß^r@Ê~<Í»…:ÉÐÛ^Br3H—_áƬ@ëùp`ô•ÖgÉI)ý ©¿m{wíÃ]AÕZzøAVúEøõ{9ˆ6ÝF·<ó='—¦üAfJm·ñâ3cãÆg;3ѳ1üV圧%}t¹HÖã™a¢jYak{yÝC•[ ~Ÿ6V×îGÝƹjv·nü„áÞíü;“ý¼s¡Aæ¨ííãí]•‡¦šIæ $“ âßÊsɸ¶–öñU€tÉ¥œü8!dŽŒR×5 `uÂËè²ÖCeÚô<Ë.3A€AM5ý¼@õ7©°{Â2×ÂûÔŒY±§&ãÙnëXôRÛ¾¿)ð<Â[Ck{*j¾`Ü@Š’|yZ·Žúó5t’}üRa2~g¹{ +–K?.fÌ´•ªÜíQ©à™Ð¤MA'‘c©'NøŸ\† L$2©töLjŒñë#Å”‡)À ‹ ð×M8WºåÖëô¡"Ñ“~ÀëÀÒ +£A(qánÂO3茀Öþ<ð¼Á&‡Àø[]yά.ÒGo§8œ7ðïõó.YË5Ô–E;GsáÁC/á˜VUQçËæ:÷éÅ}]ð<""ªÛ°íÄP=Ma1t MøÁúä| Ú(å*­ ±>Œ2½5;ÖÖK%|±!"Pª[ê7°?ð>õA…tâ%—pñ@šFF„謣wÖx„ëo\2ç¨Ì¼*Å)¢{Ûcb½¾O£èáθ×ó:阛ÙÈ÷íÚüc’bËoáÆœg €Ý…¸¿è÷XªpõZYÿvÊ =ÀöðsÊùÙ*T_±ðIégF³7^j^,•êi$€¨E'°,t½µ°×‚•á ÕlöŠ²TRÑ¡½î$˜¸(þ<úeÿ ÖÁ–uªÌXåeJ‚ EÇ›xï½¼;=œ6ýü4:SÑ «…`ÑÉ(y¦!#ŸŽ÷ ~»ðÃåN‚×RÐR$)oÞï÷±ø¯æ:~—ôûz¥÷Ò ¥¯rCß¹åæ æ˜åkÞæÿöñº²Ràü9›ùF·´òKbk):ßãÏ5Xþ5bxãÈJo!âx«ùDƒ©ÓŒb Ò^ÿ4âÃ.ÌþX>Þ:üÐAkðÚ~]£êž`©Ä*T0ƒjG}lu&ÞÃÛêåœc~„r×R²ü”u4ë$s%™YAú,N·ßo©ŸÃßôþÒÔP«ÕÑ)f°_ÒF öÓí~Š¬Qa%{lAî>ðä +º‘ ½ýœŒ‘î¾–¿¶ÜmÅꥉˆœz;ëà;7Å6Ó`tïÎ媰‡Q3=ý¾ÁÏ@¦C¯€¹ã­,[–öæ,B§h·y†aãùq>‰»S¨ðûù-Ûo‡g0TÔ[ž¤C3ëÇØ?@£¿°óC–o‰äsx}Ã-ÿo#ɆûßG:ùKvç(é¶ÚúxëÎÍ8ÿÔó‹ÇåÞÿÀó‚IçDí&üàVâÞÓΘ/ncÚ{x‹sBÜ\ývä:‘ïkü8>Ð>–æeÀŒñ!}«žF¢£oŽqp>¾5bXH@mÄæ-„ \qŽ§#^FzMƒ“0l(ÕÉ~öâ¾› ùxïks¤œQL°ðÂt©+‡RªnA<¨:°!§Ü^â×Ðÿ>¤:ÒÕ±²¿q±™+Z­Ëoߌ.×<å3:[œ¨a3I§˜LfÌØ”Û#âk˜—#¿1R¶¼’²6<ÍNݹ>žKÓÌéï9!c6·9¬!þÎfàÙÌéOp9”Q€9ÄÑ•:ó£èÓî¿#T¡ñãu` ÎémaáÇouyÊOs·‡;-n\…[w¶Ú_9Ô#ˆ@CÈN﯑çú¬EÈ,H7ñ¿¨êŒÊ/úýüæìd]oÌx~+.0Út¾œú{¤¨`€ûÄ€-÷pÁôûÓÎsê:ËOIî{’oo»óÿGq.›)|FÃou^ßüÉÖvÁH¬ hmÀÛ;ú„ÄŸ-Ø·öð6ź¿š+Zþi[ö^üÅ‚ŒÙ¦3íµÏ~Ž„ú6Ƴdiä&ç¹»ƒf\ô×Nä Û‹­µnæÜš³”©Èœ-Æ–¿´w<:‘êF“˜VŽ2—µ€:ßëâ>«ñÌvBþY +Wp#úòúx*ú~ô§˜1ÕŠ eÉå¦óB¥T´è‘9×…ȹûV±·~HúK™º M X P €ÐåPvßkÑX[·~´fœ4Ô„®òUŽ  Ûâ4áTõ5¡®ŸÈY (Ðk~Üq.rtïÄþ+Fô’,ñ¬¶¹á¡ôylë$P¥4¯´LÃj1¹ÆÚnâúéËÈý ÊÙ"äZëëvûÈ›ŠnñœØýfÃÙ~1õÓÖ%g¦ 0Öã‡ÀèÖá(!)=\ÿB‹ï©:r»½Qþ/ÝJSd<-°q3ž¥Néd>ÐÇÝKø„éá=ÆòæaÏ5-S‰Êò»Iv½Éî{÷ø÷空oU±ä¨òlp{=ºr\YmnuàËç8öG¸} p<}œ\tߣõýY­Jh,&UŠIW½Í¿Eôiíu>Ó§‹ÓÇáß”pôSŠ¡‚ˆ·žôNO˜ê¶ßQS!_0&¥¤!c^Ƚø%ã×#Ô»PåºÕžx}Øã…dh‡`ÂC=C›Y¥ +Šµ^ŸWߊ-Òõ| ,4)‹Ç)J¹áŠ:˜©lC#Z‰ïs$¶Øî¯Ù,IG±î ÕKˆcí$îf1Œ’;°Õ¤s«1û‡`¢éµ. +6„Š|±–c¦ae Øñ“‡“¥Ÿ…ÏL:O…aX†eª«©ŒOXC:›ƒåÇp0Ðíï/mmÁ'Ô=é“«ÂépÌžŽœÅ$4(aóH¶Û¨r -¿¡7Ööáë_ª=dVÍ‚e;Sát¤±ñ·…Ž¿YðàY•1|Ç”"©¡ÄŽÆ‰H°7ð Ž!5‘sÚyÅév› 9Šzbu>ÇðÓxÑŸ1.k§ÓÅçOº‘3@:€oðåæ~^”úuC+"'Lìu¹dÜO¶ü3˜OWð¼{zš0dE,ªc©+áñç/G=tÃ:߉Ô,ÑXA4ìqcxÎÒlmãü8m¨°ª +(T}œñ ":P/ÊFÿ…/õ忪á±±‰¦•`#± 8cõinRY«f~ýþþ)#©2©$g â`°$xþºóRàX~žI–m©køq°)/»êæi¶­´h£±-~.òú¬”ê|y’Y‚-þO,ËðÄË Ò³I#-¤¨&¢SmIb>áËOÈxµ=N +È6J븩ï¯cÈAÈt¶‘ÒhÃvøp†ú¹ü30LÜ$ªÃ“åª '|@ê{ûñåzu›£§¢u† +úwòÁ÷f@J¿·ÐxÖf¢‹pÚn'*3ÁrÅýœÅ.$+SÆÙåý¶æ&”ϧñæH©¯¯ð䈩vÚü’¯îéÆìR}ß_xÛ³6„ßøq²8Š9Üþè嘆 O6¿]dzŽ™zœ¾¤wã•yò¾ø|9ƒwš/®Ÿ·™c]½ù‘¬M¹Št¿Ã˜Œa{ O~p’;¨?ÏžíÒýõæ9ØøóD ¾‚ÜàÑÛøsƒ{½ùÅaÌeÀߣ˜åQâtíÈÒÄ éÁÒ”/ãȘ̪VÞÏ$ñV--½¼›ƒS‰#éIî[ïÓ˜½ín'q,7x6ÓŒ¯„ù‡Añãf!…yg·ÇŠŒ™–?@¬GÚ×UT"%âo‹a¿Æ÷ã†OÍ2á M‡ˆâú·¬RÏѦŸÀß6æ)qy bHGbrž/ºw“~eqãÁWL;-DK ³Œ9—ªQÐ °×N™ß­ˆ€ÿW,w¨U››²äñ†£ç«MîyÊ<g7$“㯰¬<ÂA¸¢¤‚ÿqçsÎwh4äiJ~^ œ2ŒYždu>ÎŽŒz6¢ÎøxY"ap8™ë¿áa…`ðIPÁSÇݵøMs_¥*̽TÖFòÁµÚÜvÊÝ"¡ËÏúeÄ‚~¾ÜUIˆÑà±m„kÝ€àGÔüêPµÉøÿG,pTãŽmÏåf„n$ýÿÌv$Ÿ'ÜØw<})ú9›®ó­V */¶ˆ}ß5WRîß»:_¹ðå†aYŸ#zUÊIY_U -$Q²0Yn- +ý£§³¹ÔžR‹îfëD8F@¦’–™ÉGÄfcçØØÞÊðQÛÇ…èÍV??ÎcuÖT»ôÎÏb{÷öñøeŠL9v*…vväÜ8r/à êc¥”+Àî'Û6Õ–eAq$«{ ‰rªÖTîT“~?Y~¦0¬éy7§«1¢[«KÆkd*©qg0¥É 1$*è,šéî CÑš5ƒËŽJ’&ÐA>ŸÑG`Óß‹¼ 7Sæ;¤ˆ¶{5övãnnÊq¤‚EPÊÚ’#!ÀZ“S§ÇÃ^p©ó+Jû äiÉKÛSÛ8B…øßÄs´b ×i?Ÿ1UÆ°.ë÷Óê8`ê´hÂö¶£ÙïïljSa÷·ðäL^·cXÖöò v`ÄöÓ]y³ ØøÏâ_(ÜŸ-+þ¡ø®á“3ý>Îx‹SeÜeÖ\"¢rL45ìád‰›_*êA6D‘I;C–ÒBÑý“pu_3°,,EÁï~r‚1€²ÃœÊ†<á,!‡ŽºânZÁ¦©¯)à@wI#šçz×Êô^¹úéŽf`ÅðšY#ð¢À…4´K·z¯™;K&æï¸s¼©ƒcyzÔ- lA¬…l¢Ö7cî‹~\ö|êþBé4ËW™qvªš1þóS± qíaðð²z‹üT¦Ì*Ôyz–:x|iï¡$û×ájÌ~ óÞw˜¼µóÛØæI'õ·’Á‰ã/iå‘înw3ÿIà§Ñ\¢šR:³JløÛÙFzº”˜ÎÆGcbÄßKŸãÌòB´ÂÞÍtæ% !øs„±‚ßÌS)`mÆÈ°)ªkàŽœÓJ‘í¿}î¿>lÐl·M—2]—·ËÇâJß_ßË +èÇH0~™dJx¢‚8ŒP{À=§Àw¹×ˆFÙS-QÖUUÐ*ÈÓM#<ˆ. ¹±ø{è9×8] ¹Ô€M¾®kÿ +ëñêoQ’…Z Ò:Ä€> 9_¹fAæwû¸©l/ìò3M¸|y¦ RÖíÏAWó]»s BÇéä u•Fü_§HC{O9noôanßÛÅOLr‹güÉE@ Úi”9ÓE_y‰¿Àré?Þ¯Pqdl¦Twí`5Û÷Û‡O;t¸TÔªD¸AÜ.Õkq]ÓÜ + ÅLÐN¾Õ¿Ð8—ê7§úÌ8)†õö¾<.eôïAœ•âª§{¨ý£•ßë𚫨y«pÑ9Üæ/Üoèú¹^}VékéYLV’Zríu=íb ¿p<]Ùl~¿‡'¼ÆAz›C¯o×N8DÁ;žsó•NœãQXl þ®2╠긟®‘]´¿ ¼ûnO·NCª¬ ðä¥óXíâÓ.P•Œ_ÙÎXÔj—#·ìöò+Xw·~dÜÛ¯=槷œ]þóÎ÷ žtÂüæ±–½ÇnßtÃmÅ»{yŠb ­á©þÎD”„?p¿8ìóˆM}¼Ç²ÃCÌEQuï~ ôÓ8ÕNÁ¥´â~Góe½ümÇŒ%@"þÞ(Q|ÅúuãV1ö¼xÑ=8‘nD—/­»ñ»Ã|Ùm«>þ/°Œ!`@Ðû9„¨7â35=™@øžFÃ"#øòmCí^0âUã%sy µ<Ͷ½¹2†33[¸â‡€¼žl«¯ñI¼ÎÜe¨a~q…µ·2Ô9ÛÈÍ.ÞL ®ÜÃÊ6`ÚqÞ”ƒÜ_™CÙuú¹Í[s qÂ0¯{“ÎfµQ.ylQntäæ[;KnE®ª ¯ê‰'ÛÎt¤ÛáÇj6¨'^wR›ˆ·"¸×]y†ö·ùw´`_µ¼x¤—3¤ñ}HâÆÈn~¾eÃ1a áÅ–^ +n?OÑR¡tæÁîÇ_ÙÌÔ”"»ý>$ r½ú助¬`;ßïóüsÀ¤jÉ€Q÷p`éÆR’P S§Ã‚¥1‡-SG¼Gn$s†~r­n×à_˜sf,ö[Û·~1>Yzd:ó Ë‹3Á‚*huöó"áB;\òDBö¶¶ïÉq@ÂÜîZRßO"ÉNTwâÇ¡TŸ¥˜äSZ-Ãrý'–ýèëÔ™ðT•ÆcíÐ{£‚U3FˆÑ33†Òú‘ìá +õ Ÿhi#…Gs¨··…Ë6ç‰<ËßêþŽ1b¶¦HÈ×îißP×b;öä*HÕ@#ǽ¾ÇŠÒy¢úßîã aàÉÛú8åC@H½µ>Þ9ÓS?€#Ãõý{s2ÄR߯~w$É ž/:)‘*_J¥% +ÞÞ¿ÕÃ+ˆz­Å²Å”a*5ïaµÔ^¶VçõÓÕu ~-…„}'“úUÑúÞ W¢Æ§c8«ko»–é‹¡X7FK4heq{},{ž YãÕöXèÕ’¢É¡Ú·6úm§ïªoÆ·Çeš‹ ŠPžòèÖ_ÊÜ"=Gê¾fêÕCÉU3Ä·öñ7K”%ë{ñÎ< °X›iû92 ±ÛNúñ‹&Yïâ»*b5X\‰u}ü˜¼ê¤~ðý2t2«cµbî¦V;"¿ùWR-»_ò`}½»pÕõKÔ^Fô·ùÕ¿§…ËŠŽ+ÕÊ€ ‹ì‚3ìûL}¼ >¤ú«œ½\fÄq©<2 Ãã$$1öU4µø¡é¾I¥ÊxPT ÍÇÃÇ™qŠø£~Äã%eJï6ðÓ^C‘ÌšC¬€€/côr”å5ä*Äïñ侞äÙ3ž#,LLpªó: ¶Ö *§qæ9Ñ/§rt4ÙV:<‰†Ñ>]^1ÈO¾°Úæ?hî7i_»·saÎxfhþbƦu1ÓSZj`ABé¨c§¼Tût¸öÀ·ÕïWêòÆh~eÎ+‹ª©E61Ó³w!5Ûôð:ÉùVšQˆ!Ôi‰ö/°r®™ëd çRGúƒ6F±ÂÅK›mǼ‡›êc¶šëoó&sX©˜!&ãQÀši²v”ƒ{›re 5ד²ö(”ÈP)?ºµ…´äÊúq!V·ã>;†3¥þÞ(0Ê.ž47 @·¶Ü—*²k¯Àò;²è5ðÓ¿³˜Ìbº‹íäzš;½û{ò,”þX$ýZsŒ4’Im"†\nFÜ0*A¾ž<¸ŸÁWñø§è.‡ôó©RË&‹O†cò9sIGvï{ÉRBÇ=ÎŲÈ6€âô(«"ÄbYb`èà2²C.#B7wæ^{Ç^ýMeÞ‚P™+ÌÀ„fð•³ë#>cž­jŒÙŸþ]€Ãv1¾3>—ÒþèÓ]oÂqÕÏ_>=4£AGÏO!HØ +øXjO g_\ËÔZ*Œ?£Z +i.(E°=¯·Þ>Þü&xîaÄóA–ªG•ÛÅþ:s¬;ó¼;qa–òòÛ¶¼wªÀ:An{¨jbOb}‡Šì1XäÞ{ò]VùÍnq“xÒöט¦@uì80"ö>ßÏ‚/£,Š½JêŽ I/ù4©„nðøÛ—……G(%(̱JŒµÙu_¡ú¸fó¨·Ä2ÜT0’f©PŽä…:¥þ® ^–r}BËÒS@cHÐpAø|O(üÉ> =Vu úu–ê*@ݱ>ëéÏšƒúñê³õg©Ø½{ÁªdE¹¾ˆäáÀÃ.1W×Ç· + âÿ7ÖFÔísÈõ@T)#‘(eZVÛíñäô«P7~\gƪ/õŸ6Å ¿YrFZÏÃ릯œ3$˜S²|¤¿‹6¤¡tåÜúÃ)ºQƒÍ1|Ì ‡ÄŸ=Fœ4T˜¥=uÍ wåÅ–NÊ”ÍL²®ŒG'TÒIO}ÂëÄŽsé6œ”îPøÛÇ€ŸPý8UaaÍ„‘ßèåz~)žš0œÉ–f+†C{Û^ÞÞþ¥êšoä8ŒÔÝü· }GŽ°M¹N¿·œ>sÊ<“*’%»mùÎLD|l;ߘf¯óχj1¾Ÿw"KR_èäÌ¿JÕR}|]Ñ?ÉÆÀq·¬ P˽'0=Çog1•kô_œ®N¾íÎkÏ2m9ŽOw‘&!É·†¼#†ó…Åż9æ}¼ïm´·8° ¯·Ø¼¬ƒM86Üõq‡0L\ý:q– ´—¿ÕÇü=ֿÊ8SjéáÆeÌ*,·LØëÆ|ÅŽ ¤añ?Gµ´Ìàyl!ÔŽ@­¥XïôöäSÓÛœ¢ÔŽp‘uþ<ã†k9ÐÑã’dÃÕRÄD©¢øjx÷•2(©•L€Ûú8eº œ«úsM²^ö>â‹©^¦±|F¨*½¬4¿ÌÇŸj166¹ké}xÑÕçt§êælNé"6ŽÙ­ÃIîñª– ©7ä™Ü̼hšCý|xÂé‹éǘ°ý>‘ÎÁ=Ïy) FP̾ï~Þ'‚Å +åʨ±Ï»¯TñÙ …ÕI¹ï§ëíàU€aUåz¢)a}Húxbúc“¡ËèÇ¿Á ÌŸ)kptíÄ×T}PK‡@Ôоßi¾Ÿ_ÌÅ™+³›—’F ñ¦—ŠšKØý<Ÿtmúý\Q(POr^F—¨~XƾFŸW/Br^éU$s´wšÊBûÁ©ú8ë×ïUTSû!e¸Ù:4-nßG GYs^eëEKKS#,l~ÊÜXxp<~ŽSÐ× ò=FE†.ÂÖíο«"",·øsªì!>Ý ÃA´iû}¼zÂ×ÍчÖ8ïÕ»kÞܲ901©UÚ ‹ Ø||mñҜG-t¯ ¨ž\6I Y@"g»HGe j7¾§…3¯ù¿êf¨Å)÷I0øtRù@ø¹¹,çSÄ_ÃÆ+Y½µb{ñ{Œ*`´Â%&ûnmÀÿÆZF ÚÇ·Ñƹq¶½ÏÇœk{ýüÎͦºÛ˜ê?§˜#ÁäħHa[É+E$Y†¾÷öpXÈxTYa*$@ìûÈôŠ»dœü¶Å²5“~;Wæf¯ý+5Ò0FîÃà¦ÃÛây2<ÇMòè%!b‚##ƒ{YWs_é6ûxWð¼äÝcÏ3â5g}œ<~lHP°/‡}~UWãfJùÓökÌF¦I&[ƒbmáÄ×R1AQV v]}6—ÍÃä¸ëX_èæ<Å6Ä=½‡Œ°QybÇÇ™ã1@»Ûœ0xÌ2•M×Xþ‘LjK´d··3*ý•¿Úu_ÏáÅlqﶿuÆŸ·™>Me÷m§êuæ7„S,~?·˜ekû·cðüùÁ`–§Ý#Ýñ¿ìñãVq͸vDŒ½\O‚ ?Bð;¡ë»f¬^:yËQHÛMˆßÍmûo§ƒVX˔؆Y6´EÒu¹d>íÀ+cîÈ;}?[àcøÒã&Æp®–çÚ¡>R"¢À±)i(å&ÑQÔ˺ÏÞŒ…‰É]¥nãÆ¡ÁiÞz†Ç,ÌÄ&÷á'õ%ø¥µUL¸nLxä(Æ)kY7Ƭ ˆK‘¸øi öð‚ú§õñ†tXTWãu­Wˆ8fÎæÝkÚײ€·Ç•EêÃñEÏþ¡%–™j<šBl#Q¶ãèO¯…™¨kqÙŒ¹Ž¬{ëÇJNŸT 9Räi)Íô>Þ8¶\ùE kkÇœ +™iö“ã­þŽ+F³a37Š‹öâ*:0¯ß¶ƒŠ¾ÄȲ&×RÆVkxöÓ˜g +W‘%BìmcÌ1yBúßè·Wà?éÒ~¼õŽVQµ(inÏÜ)‘Öÿ ØX6 À½ åo*XÒMå€@.@¾ž nùs£Y[)% ¥E#ÆÜRÅ +S F s,Ë©=¹_ߪ©ú'ÓÌCi±=Ëvï<Õsťƫ^y ÚG.ÇâÆÿ·’ð&¼ _ãÅJTyc_bª¯I€^C˜…ÿ.@«„±¿×~y«ÃGõ÷>Þ7Ö9~ü ý%¶ü]àÎ#¥¿³·-ïðjô‰L™zž¢©/$¿¤ø“HøXinYm§åT1špÇߟý/ÁC*Á:• ¦Ò{ +?È¿—§èƒÃžLHŸrQÎ2àñÍïFlx”Ï5 †ÓH³ ,|>ªÅÓ¬xvFÊõÎÌþâß]H6¢ +¬uñšégoßrÇã¯(j_Nf¬]Âç·"¬¤1öeI‹û<9ù›Ôö¿Ñìäù6©ö÷âoªøé~63yœä±™âŸ*a¡Eûxñò®r‚ßWj‹ó +xâ¤vüäÈIý|yæ°Ó*î<ËåÚÜñ]9ª]‡OÙÈÏw7½ù‰yÀ …ùÚµ†¿G=qÎ2{ÃúxÛ‘åê|x6J +%χxïb8ÝIO½¸¤Á¢ÙköãÈ"ñŽ¸’ç™°ØËžÞÏ»“ªiNÎݹ‰V Xÿ1â8™¾œg©Ä·)×·R^ªsÉñ©õq¯œ9ã=KûxÝP×<ŽÚó”{[˜Z˜ÇèÝ•mo¯ãÌ5¯»u¶{ß“½¹3+éȵB×äUb¯ÇܧnžŽ¿u\âÈá\Ÿ¯Ãúx_jæi“ß¿]9Êòb³†ÛØðÆd ¶˜ NèǺºs..âªF#Dì8õÚÚî6G·dzZlÜ(_oÓÅqÍhÊÝû0ýœ…˜óèÂ)v†÷ØjGf¥ñš­Ä’/¯¡•ia h4ä+@Óë<ñœ5µ¿%àxFfªD 7ðÍtO ÖéB²‹¨Ó¹ãïQú†ôþ˜H î§mõ {O +¶gê7õ§¹ÖíßRÇëd‡ýq®¿Aà{êÃÔ%~?ZpÊI +ÒDÄÙIÛ[±C¯åÀ÷Äg¨ˆnk†]¿XíüxµÉ",-ZyH -÷kÆÚnª¾t2É°¸Û‰üF1ÉŽB‘Ýî~«ó•;2kìñ京HÒÄ]@b-`M&À ØÚä‹›><³.¾Âk36YÊÔ’äÜÏKæ(iãþc„W¢áñK; g}KPªZÊ•į̀NÞ åÒ¿é›,â¸]IÌ´ñ«b'IiäˆÊ „¥§vEc¥EÝ¥«…;xÁ‹¿“NÑбY¦ÚHVÊ·ìZÚhk®¼‰Š1ÀéÒ9¿FÆö oxý*X¿·=oÌ'Êõk¼õn´‘í'»Zàx}¦áÄæ”é2½\QÆ IRBê|;xÉŽMòx›é¡ÖÞ6ç:LEÑI_ÙÄŽ7Rj',Æàß‹®™(l&W½.ŸRŽsÅ#Y›u´þ¿'ñ:—¿ÕÎx=;NK·&NU*[kkíãÔÊAÓO ŸéãUu’¾œ§˜µÆ€·cáÅ%4-+(>ÂtÓöòbÄ)”ž÷ÒÆÿw‡#ÉJg[-ìÝÏaôq¯1æ3#ĶeŒ7Ù .[þ"£Sõp1Í]nÄó90᱘":y­«·ÄËùž"q|—U2´®YÜêYÉûøÑ…EIFÚÄsªÛ4aq£ èlu·cÛƒG§®§ÒÑLÏ6çEhNû1¼mmu]A¾º÷àíM–¤ê,*ŒñÈ@Ð^÷ð,¥¹·¯Féí&T̸íBåÜ=·@g‘þrXíµ`–{ïx—À5Û²“aÀÃÕÏ«˜=0á-OO4+"®È‚HÐÛAã~UçUz‡˜úÿ‹É[[$’™‘¸?Ç™²¿Kc®âçãñâÆ&Á@=Õw0bØT{€26±»órl€ÛÞ±ú9'_5ýTÏ9¢£ð‘aÄtQþÛõÞ&+ê‹7~bˆ_¿'á´¾l–·8\+šžb«š÷¿ TIíæ[k{8áµ¼9"Á´üùÌ.œïÈ,/ôéûyÞÒ£˜e; Í'ÿåÈÍ¡··ÙÎœ[5¼yØR£žfµ­Î?lg±Õܽ¼x7J„'±ˆöÓ‘¨iìt⎂ªÜ{ÞGæzîã˜l&úñоŷ"U=‡«uã|Ã[sáÌÈÖïÌuBãì¤7ð¹¶7£bEïnC©Œ¿‡×Ì HÍ̱Ò1?O3ÇA§ns§¡#“©©‡‡b¥{s"Ab9M Q¦œÇvöòLbÙ]mÛ˜¤¹?G#OnüŠi4Óœ$¡²žBš“k9’ +O‡'RBW’nSêíÏ.æïÌá\÷ñ‡­x»øñ¹jK1øñË ÷x¨À&Ör}e‚×N¸eê¢Çñœe_³§¼Û•Ê1·ÕÆJl/ËŽ,q:–§_`—œÕŠdïôßUk~|PÐU—_¤ó<²n]GnB¨fœâc*lMïðæƒwôžc˜ƒ^GIǺºg2é…oVq¸0Ê}g sØ~^£ÃV‹+àŠY,k}ª56Ô“aÃŽú=²ÎòXKŽUwâ“‘`ÊBFm„ÞyYòãÂIÓkË™W/Þúò~8é¨&Úó &hómÍþ®L–°V§ÇÛýÜk­N㵸ß!òͼ9' —;¼oÌئc’$îxı)k&ÓÛÁ¥Ô2®Ëü4úø`²åc¬x}Çó`JxÈ‚8ãXÒ×VˆÇsØj~'·~N­:'güJêOßnz +³¿{ñ›4Í%CJÔÕŠ6w¾¼w¦¯ó"·f¬×éíɸTrâN"@I#õ<ºÒW ŒNÂÄIð¿²þ<qJÚlµDYÈVícì¿ç“ÔΤI±™w/qUøöq ”kâ—Vsî©¿ßÁ;Ä¡­€µ­ãÄôµ  s›$Óêã|”ànÚó©)ãPHïcÄÕ4-ßS§'Sα—„,2±*ª:pd%Š¨$ ÉïsùpÝdº†È½>ù¶!Þjs)`Au;u~¼ïŠ4µ‡pî×ã–YÄ£m¶Ü„í¿³‘sÏTÚL7å!¾ùM‰öÇ·zu…%ZâçB=œÃPá[ÇN`ža+i}{ý\æ›Ù¶öá’ü)=.ÉêçÔWÀ^#% 5Zâø£j(ðµ¸ÚÀI*Ç¿röáÇë§â“Ô™:ÓŽæ ³]N 5_“Z´³GL#2ª°xÝÊY"u$Üá‹Ïž¤zë¿)åü7ª˜4¸rãÔõ`õµÛ¢›È›åÞZñÄfz¨ò«U­£)S¯çÆå«Ø¶×ŒUò2ÞÎ=:C^Vo÷I$ ·ìælT˜Rÿ½õq8ôÞlÁ~7úxãþòGð‘71*ÇUÝýüRá”…cûCO¥ÿ‡³œbeÄGî©? tý¼}‚ˆÆ×ØÄ•|>¿çÎñ¡M—)Z¯™!‰¾ã`}€w,tìÕÀ«:ú•lE X$N¤›|ÄÊ4ꦺüOoðð=¬Ç* õNóJÇWrXþ³N*°L¶(@·ÕÇš¬,H–ý\óÞRzV3(ÐÞþqãÓ÷Aq~µâÑÇGtD`ZOeˆÓúyjýéÑ|>ª”K8UÚ|IÐ |8“õyêÏ0ÑM@ •s"Š3î¢Úå˜ûîxZ1¿NØ–c×ãµ"ª©®vî%P>Þ%ëºyì¡MŸW9S`Á; 9ʺ„SkÄŽb¬ò™€ý}œK½[1úõæj»¼'éã–^€É +ߎøÅ3MO¨·ÃŒtôë ñA€Föúøæ 3 µðçb‹‚;ëÏ2-ßó/ËÏðãÎ1AÜ\Û0Ù½œç"[Kë÷ó mÌuRyw>ß0cu¾ïÄñ=+™›’© =¼|8¤Ëô:n=O/–žÏË&}o};r$àÈ~ê5*ß·¿&GïZß³“) ~ýþ±íïý¼ô–Œx~ÞFyJ/ÈÒ˸éãáÈr9¯ëìæ2-÷÷ç}u¿õ¸ßÃqã öxqÿ•Û^/r­i÷máÁc(1’ßGë©bUÔw¸â33Ѭ¬~ŸgóѬnJ†¼…\Û~ÃN1ÖÕ²±9Ùï¯ áéþªøUmJîˆ-ã§,›ôa„âô)iEˆÿí÷Zß]pô7Ocž§ Ü»ygµ¾i£cŸfŠUØà؃ÀÏ`“ß)Qvþž?ঞÎür”‡æ)vßÇy^>ÎxųA¯çÎÁ¼Û°äD€+^ÿòbcÒ&šžÿÁ«"?Wz®QÔ´tѬn×ksõsdNŒäx°\6%€÷s—\0|&F²éí漿ŽG^¦ªÇ“ §*»ï¼/…˜ß•çKˆ3 r}=Y#Ø}œÁ[Q¸x q T”qCATJƒ~s¨Òö?·ïä ßÙÉt”¬úŸfœÇ]‚m~®`Ã2‹ù§Ý&ß +>Á +ŽÖà®”BŽ”Û½¼³®+å_a×·,oð)ü6S«Îxs5\Œ´P7nE>Ò;òÄ:‡ø~eŒÅHÐâXB[R"Oãkò©?ŸBy;ÓÎÌO€Ð«¹Y!Ü:_E=­ðá Äꢱ^ãöñ˜j'¹ï»Ž˜eRÏöxü9Æž¥À]I60Ý ôÿÒ¥\å‹1µ­o`ñàµ6!6PªvÔ«€ç¨n©¼± +8ŸVœö±´” ®oú߈üùbÄkÁ­i¨ÖçÀ\žqyÅÏ84»ÍÇ8Î-¯çýÆ# |}œezrf v¿oH¦¤IÏm9gð›¯Kfœ×gêÌ«ý`ÃpˆS ¢’T§‘²b²Ôâ–ååŽ,n +v‰H±±‰üoz9Ñ¿ÐÌW4`¹xeÜmki¡>B=’W™’Ja¶VW$°Œ‹ƒ§(‹«s +Y”\wæ|…PÒ@Öø1bXZG‹4’Uý£‹ü¦\áÓ}–ßG˜‚~6îyÂ+­Èä¤M@µõ7ýmËü(+±N~úÔ6ÅWÕRe&VûZ'Vè4'ož¤ëmÑXý“ÁÇðuô©•=bTf\™°e«Â%wó:aäTÐU¬EZ~‘|øK,OÑ9+gÔPüs}"âOÃqØ&Á×.á¸%.I†KR‘VA4¯* ù”o1ÅÔ&¨@¿3þ'ëÎ5Ó:¼ÇƒÖ¼øZÖ˜pÌ2©Ï¾‹O53½Š/™ú4ÌT%|õ5Ю‹þ!ÕËMÔÌ"l3Ò$b”ò5ª£ì¤’I†t?»BIò˜Þü¯\‚oV=-^9€DsnXŒ4Ÿ=CÔ±Mëh…ÞÊ î–ñ72Æ4:¿u«°çïI›ƒoÞOˆ¶«ü1ÌXfhPA6 <ÑnülJ‚TnèöpÌÎZR:ó’0û¹ç7ƒY ç¨%ÖÇŠ\"[ ã¢G8˜¬{s”h5þæþíü‘ÛNLˆîöó#{ÜâÚ0­ïÌÆâÞÎqR[œ¶Û„Ýß·:hïÆÚåØäŽcˆƒc~8Ókõsžá~Öç™wöäLU®¼Kb¿lò"íÇŒ=5ãî¶#Ç‹l®ÁJŸg·‚ü­?O›1­Jho1Úõ’úüx–¨œïÆœVpFžÎ'kêlÄ~½¸ÏY)#ÛË*ü²¼±[®ÆžPÖowë×òåÒtg¦Ô9‡ +I5…¬GÑćª>…að`Óˆ#$>£o_XY'p@ ¼‹M½œ+µ¸—ž×'‘k¿~(09·hxî×o8Ĥëû9":qny[NquúøÛ‰îPxÕ#§–ÿÿ ½ôêUÔD|ʺ’#;ÜÓA¯/)á‘ÐR +E”põ¯œ!Àrôä‚S­íáÍ^ÿŽ§ õ: î °¿A¹ñàMTPgÃŽõgn¼á<÷6ß¿ö^Kñ÷p¨9ÝUVœæ—`¢ã˜9EìO"¡Jõpóú ô#…õ?) F¦,“±Hhq»Õo¡<[ Ó.!GLïHO¿±Kñ aáíáwÏYÌQÀ"Þ6<Õ£sülÌõˆTk~KËÕ;âÓµ¸°é.üë kª›}wþŽL­£¢6÷Tk q Ÿz„)‰C(omíà ÔÊÓ4¦U;¯Ü÷¿Óĵ]x«¥!‡ð°Ž_eÏqÁ' Ñ*öÓ‘ª ‘/ߘR»oÚü¹ÈV™ ¿>O£G–=Wá¯8ÓR‰n¶ñãf%P˜Lr;ßj)c¦¶ö~\ÙƒðVô}ÔŸA~°|=’Ž¶«ßÖÒ»¼2C5z¤žJÉfF1F 6÷±ÛnøSg«aÔ<Ç—rG“äIGâX”ƒ”“E…X®c¸©ø\r”:ÏUçV êy—$U˜ƒÿÄmÌ‚¦*¦*¤oMWê׊ΞVKY€y­£I#\xhmÎÚá»}üÉKr?;qÇ˸®i«ƒÃ)Þª¾®Xé¨éãžY§qQ¨ÔÝÀúïËñë—á¨Ý&éRȦ†i°|½@ WÒ.òؤ»š²ªd@HY$f!œA"ãÅé­½Dôa›ržWÁ)é ÊâQŒkDõ¯T•5sÉ¥_ôÿ7Ë@”ôÄÄÞ÷¸Ôý|sŧWRG á°©;˜«Ç‘+%ý)oñ7ç§K³Žy[Ü”'ÚÜ°û>Ž;byJ‡`òB…‡bT>»s¡— D°G¶ÂÜQ–ãÜÛþÍy“ùj•Ú£òç“ +W¾ŸwØΞúy\5—ݶ·°àñé{¦1a,k*R÷®áÁ¢ δ®õ &çK>(=FêœÝvê!‚¦f–š‘Éî%K/m;Xxq1Õ¼u«ªì4UÐ|ðLPáòì>ž X64µÔáÐßNq®Ìa¶ŸÝÄNfÅË›§oþ}ŸOë~uALÊÿѯ§’ÉÛ¿‡ôñÃE¨ƒáÇE¦ó#¾ Gôñž¶! m9#§nÎÒíí÷qVQŸìóÅnփž¢u.#EmÊÓî¨ÖßHà'‹bõùâ¨Ë3¸è5·ž‡á'£ìA±×ŠŠùÍî~NÊFw$ßóã¦vÌBŠ”`}—àA™ë÷Þú“¯·ˆ vO1χ”•íÉ4DoX[‘¶øþ=´ã"åéÎ 0±<™‡T†··™ë(øž2ÖÈb{®ƒy:¤Õjtð⊯:ü ûðÙz4õ—t>¶(æ™å£&ÅX“°}ý­ðå”ô×ãW§¬PöA}~°xmº=ꂪLû×Û{þ¿O Rê™ãVŽEÜ@ÐKÍÙïú»HÅ›Kr£¿¿Z+è*’9@–A²$RÇÇ”™ˆâSc¼ò±i$%˜I-¯#¹ 8œÌá\‘ÈØ\»GÑÇê-ãÉa‚w$ò%dÛuøx|xÑUZ5┳uKcoáÅf^  +Û_ljê5Þ7M=ÚãNFfÓãÏ3ÆãŽó¿É1Ln-÷s?Ì‚¢ÞRæ_Ôò,Ó1:‹r„î±ýœìuþÎpq´ÞßO01ÝÏ°›þ¿w8tó òío…¹Î;9·Ç‘qg[ìÓN +Óâ{~¶ä CYH?e×q¿ßǸ›bò)6ÐM»0TÔØ÷äš\EbñÓÇTâ¾n¿¯åÆ j°XëÄÍe`˜c­Û¯8͉…ñäsVÒtUÈæ’Ç^bvÂÛ9>š«Ç¿%ŠàyÌTŽä󩥿nA«f—äi›w1XsÈBžÜäÇNB«ÅDëŽ(p=|‰v€MùÏrõóÎ÷nû9À½3ÓÉ»øòl[·$ßž¹#ÛÌVð·2Á “SÉ-g­ ÕOƒà•%È(µú¹­çâ5ÖHsfozxZâ77×òá~‹YEùš¢ ¾¾)rÛ‡±7â…0þêž3sôqÁonݾÇ,D_ãÌ(·"ÕÃçýG8á™VLr²*hÅÞi1ÿmÍ¿ +L‡ô‹ aØzí_*1p4ÖÇv\åMAK¹¤W÷â¹ê_ËÙJ¬Íö›ôèæ´ýHͲgLÁSZææIÜû.xß#¿Ó¯$Ñ×ó”ÕA5:óÛä øqò„’£œ¤ƒy>›sÐÒéìýtã¶,Àx|x¤Ãbj‹(îÖëí˼ü"ú3W”rM-%p T9 îø|8nz£é®<dž¼[dd`Q¼Aå1~)žáéŒsâxEâ³^XH°úG³Š?øLG£ªþ«çÌK9OK§Ã¶ÒRÍ/ü\K + xX~¡Í‹ð*9púeÔ]E´×€×­ž®aý2ÊUu2’†(Ë«šŸúÝëì~ê.!‹-ÈV!®Š¿ÛÀ㪲ë÷ñƒ0Ö8˜tÃÁK§Jl–ki7äYFÖ$}'’hÔø}>ŸðoI5Þ£½BÒæÙ“¯©š@6ê˜ä†‚rmåæ"÷%ñuåÛáYû©žYÓ3,˜þdm•ôª<Úu$›È–P^Öf*ºZOÝä Ûé˧ž±¨dƲudTUŒš!HÚÿ½öVV$ÿ”NýÈ~>žz5Éž–z³M™3Þ%<"š¢8ÅM“TíO1Êéu}®‚Aºût¿ M7¦,k¦n¹‹¤Ø´rÓT°2áÕ3 i¤Boú7 ûÂöÚä0´‹Øû3ú‚é×ZŠåÞ¦`í‚âbꆥX*ßýÒ +¤÷‘Iñ¾ËèY¹è?V½*Î*òUzcø Q‡T82lûVŒý†b;:ŽHIŽ¹¹>ß7 ÞOk×Nzht²ßãΰú£‡U#ë£kox³¥ÅЀ§P/r-Éi"Í©¶žÛó ô¨ú¨7Ööös +ÀX½ˆñ:s%>=cŠ7v?º ’~¡s̸edõiL°Ê³Iö#’)#c¯üxOn ÙÑïÊD³âµ çt†3pÓÉæ'ðã>*b}ž†µlG$aóßO*Ø”¿ÂÜg«ý ìxù’ +=ÇX%'žÃ‚>[ÃßËí©ÓŠl¹by.a=Žäcmu¸j½6~$rep”¸ÕÔ‚š.AøÜváýè«Œ70¢TQÔPX,ºÙëBÁ¤Ý @«}×í§(‡ñõþ sIJG!zjoq~-ssùð}šs.œlÆÓrûn>Ž0Àÿ-1µøÿ…N·×ÇK[ÙáÆüQì·‰úÉöƒogj&,~ž:àSsôq_F,—"UVi¡üùZ£¿ßÌ&q'3 þþd°”s$CÉQìñ䈯og³áÌŠÀXkÌïwû¹Šhw ó„q[èæP7j{üyÑ‹¿Ž¼Ã-=m?^üÆa Üv±1m{^Ü…ˆ‰µ×û9žŸ^7ãŸå ®-Á"¾¸qÆyq2[ÛǼ4^ü|I.¢ßw1ʃ¶ã‰*üX£g8G‹3è9,×€¾Î5b³–é&ëä¹Ó‘MQ^c’}ç“(a2qÎ<8ºj9» òþžA4Œ9£d½ù嘃̱TëÉ V;ó‘¬Ý©æe/Ì.¤žÜàÂÜò÷狑ȵGÃœ(WÞ⛋`㨓My†Iì9ÀT[¿;Ôø{yÁêÇ™©ª‚Ÿ£·'SÖ߷3+‚5ç!osÉ·™ïoeùÂBcÓØyÒuäã㮜Tû{Üjªžîy‰' §&ET-ì·³™£©g2 +µ¿1â2©éâSÈmÈÂKq÷ ¢ :Ç‹¿…¹™*Z-;s¶ÄÊý\Ÿ‡W“¯·ŽTõÄ€;s9¬%t·Çµõ;¾Æڦ⋠Ù&^¤g\7@OP€ÿÄA¹¿ÝÍ=tR.`t‹H•I6· ÌårÖ[¸•±ø±z“§É9b¹–KY[ïæºYó8M1ºŠÉ52¹>¯§=HäÛörDUZÿ,²«Ub‡uÿ[rz5…<ªó„°«‘^=ß{üW©((œ‚žòg*ãñ#üC+:áO% ª¬Ö÷ :kãÂ.ôrxbRÿ oáÌPÕymôwæjŠ€ê{ëΰÉ7‘oã©1.¼È+ÂØ»’i$5ß³Ž4hc±à—éË&¿P³m ‰(,ð¾¼ØËÑ~´0Þ©$j-à´á Ÿàºw±åcþ4´ð&W¨ ,Á"Óí6O§†CðLôi†zFé5¾GžAó3Èà)i%%΃°·³-,Dî ëÊ~ÿ…úÓ—#䉰jITUV2Äv±Ô鮂ü׺²cæØx|oߎXdªƒ½ííöþ¾p1Ó»=Y­ÜÆÓBÛmº<8j_Uù/ÒW@qœÉ—dŠ,GËé’ñ‡–otÞ-( Ϻ ¶¼ÖË-¤¦ÚNíÃÞoiîOßÀ﬌iÌnu³xüy‹/Ô£DOqúß±R†BüðmÏRŽß£iÌd­µÏ@úùlŸ‚_¬®Žæn˜§G±U9[–µªÆ'V)PÒ‡†I¦{íB¬B'*Œª¢& +,¢/PÝHô‚E>g€cx+±b%e Ž‚Cfð—ô}Éž œfžžâíƒV¨;Å2…y÷­4ë!$ûÖ÷ímc¯1Õú®Åò$ßÕÞ§`‹5Pò |IçRO}72Ø­›¹‡^æ!á–ÒÖ!Ó”9ƒ¥˜ºùsÚOåõùôs®¤ªÉï=‚î¹_³½GfÊïRYC«r¯Õ< pªÐO–Ó«µÓÌŠ`wE®‚Db‡ü~›CéÛ¨ž—éMv@Å?œáÆòÿ(®e`È@#åæ&ëvû»’ǽ~›ý\NýÃðZˆR‹ÍÕTñÏM›š:\?ý"pÆ˺óyqÜ‹w·5ú­M’OcÉ5¬€+ÝÑÌ=ç´°öÛ‹—¯šñ\j¾v¾ËüoÅ+ ñ¾¼ã[Qæh;|9Ž°ÄŸË™FF ÛëiÌN.¨°û´âž‚:j¥ÜnßW&EB¶Aß¾œœdW_O‡1$;^Üÿ  ™ß¯ynâóâù“,±‘u) +–׶›­ßNlÕÆÉž¨¨j²¾bÃ骩ÂlÕÍŽëexž×GSöJ‘cÊõûèÓ6ú«’®V“À¦`”Xª­¬[O*¥WHä@~ËÚâÇÝáh¢Í±ÔÒí«±-­ü}¾>< ó¥$9ŸF‘¯ ycÛo÷ó>fÅÒ‡” ÔŽÌß0’ ›[_íäm±‹8³éÚ@í}"â‡{öãSžMÚ{92’GØ9Žeap;s£H×:ò~­°Ø÷ðäÊ?vMo‡'b‰å '[ø|G³‘ò~!rÈÄZúñÔηϊ¤¡GÙfñâ +ƒ-IRÛœ’NºøñMƒà2-m<8¡Â°ÏÒ¥×RE¯ôðT (Â膟ÓÇ ½†ùב‡n܉±áy@؇µGpuöñ+˜d¸[,mÅ4(,/ìíÆŒÉú4>AbÕ'qœ(*/o»ŽBrWø‹ËŒUd±ä^Ø „¸â§-Ñ|ÂTØ彯Æüc Úör=&^ó|Sà…ÇÓȘž +a×]8Û=9‹˜$;y¥ï§3P¦£Šl,„M{ŽIž[vãm]aøóÎèmÎiZd·³œ~jç¿$Á1=ù>š[ò|·«Pß_GžsY‰ç/˜'áÎֳܧ¬2­¯Û•1‰ ¾·æJ 0Hà[]8¦Ã°_-{xs=E”¾ÛéÆúÊmß‘hg·ŸN—æ*M­ÛÛÌ’k¯ Ô\ê íß‚¢<ÇO•ú…GU%®¬“àO6DôÕúls‹Ëq¸ ,§ƒ7ZzåKEBÞ\¡YFªO(+ñžõe.h¯› ‚bDŒU”í×·+^)J/ÅîNf…7>œ[eXÈU﯅½Þ÷öüyÜ>è<ïç€Ö÷ðæjyŒÚƒÛ’Koüïȳŵ¹ê5[øñK‡VχEe•Ôžà1`Í´¬¬ZFcí,Oíà_šêLäî¹O²·×É´íxõ?A‘ü©íÌT +Û’ðöâ‰(eñöòMÛ¯n=áX ŠÂÚñÂ|=bKðú8w¿?NÏÕl÷Q‰Ïx)âòÑ›üEµ#îïËýèŸN£ÊTBõqg˜'Ž‚‰É÷l§_«•_ø’u§Ë™· LY•éÅH+¼‹oÔ%þƒÃ{éÇÕ}=>ŠX¦@ 0ö}üZzÏèæ8éš­ó&±¬O„b’´…bQkSNÛž2M¯¾3ÛhïËô¯ê¤¹cLW¦˜³ålÉ2Ï„JëÉ­ÎèQÎè‰í$%´—Ð\µëB³oê¯Tð¥1Mho–$‚Uÿ¨]Œ/ã¾½Ìjx£Å=-We¨Ž?Ò|`S‰­#P™„´s;!máÂÏqà +q¶“ÕFSê<‹–º¯ƒG†×ÄÀ#ÕDL O駱´W·ÚV(ÇàÓfhè!M]”3¦^špeço=V9/—s½JëqöY@ݽ­nk…øÁzÍ·úñ‹b4’—ÁpRø. ¸ò©äa,Ãã<×kÿ„.ºpœWþŠ¡ä¸Á½­ÆúÇJy÷)×]Ööq_ÒÒå÷Wwñ[^)ÍéÇúÍ©ïÌrÅãâ9Ä š-É$ÅDóàm­É·íæ +ê& +öù—VK¦Ú}žQQGnÞÿSÉÊÇo~ãõúyÆâ3â}º÷áûüº5‡ây‡Ï×Xp8’»/›:—”ë¡*Š£à[‡Óo¦Ž©by—2õ šl; šªH„ªñ΋rÿêˆÑÛBXžüYôCÕÞLõ…’æ¤Ä`Žx'E†º–ª4xÛu½É®º‚>kÂ7øŽ~QáItÖ&HÚ£ ’RÑØ Ø’¦ãü“±Sû¬½¹Z¸”õ¸sÉEˆE-%]3’ Ñ£•H>*À~â5OâF™jvR„ _° q 0™÷èEÿ^üló]8»éûyXSmíýü‰‰íñ¿ÌSù‡3Ç8Eø 9©:XÜxsª''íñßBÞÞ8Á +Ò¸><“X«T4¹ðíÄvlɵ5—Èʧºƒký\b§È‰@{kíî~þOƒmðäÚ|+n¤}ѯ áõ^ÇŠ\:³r}>Î`Ť!ñâB®]Òr~l÷ãíE––ðãdµfSíð猿ǒi©AøñÆš†ÿÓÉ°Óyvörj(Qr/ùsžÑ÷û{ó‹ QaÛÇœ}‡Ç¯~gF¸·æväÌK-nNÂöâ3`[¶—øq%_EåÖãmJ9Â7ãÎX"Yííàƒ`»i¯=ŽeÃåÞÖâGÂŒg·+© WãtÐînK¡‚þ~£-ùê–,8×*–'˜ÄvçvÛá̈;rm4Düy>–#ôq™·ÙÉq­='º~êàžv–kŽw†Äf¿_«™¶†×ÛÌ3ǧn5ÕS©<< ù‹aG8I~ÜÂÓy¦6ñלã³qï¡ÜÀüG˜n¯ÓNöæO ( ¼x—Ä£ +Üm–0¿O$Q©öú9> Eù ‘o‡"Õ nÚý…;Û’2£Î˜ŒOëð·cË+ôëö·"Â(ñ9 +@©0¾¶ð'û8)z˜üI)æà ƒ6ß´¿>T—^:‰SÔLr¢¶f,dv"þ›Ž )ä»ØûoÅfߢÞL¤ˆ—-Ŷ^0?>>C!œ%Æ?³‘ÐùuïÇJ +.—þ<š´ÎF¢Üã%1a ç:*Cï:iÎU•Œ‹§ÝĦa¨ó\‚tíÄfaŽàéü8˜«éÌôoe··Ãjý×çŸo~OËõ";qeKŠ,b÷äÈq´ñ<›MšR¡íÎ5™€Ö'ºuºÀ£ÁpŒ·OL7í ZÖ$ß–ù•1(f§U½˜Üaë>hþC„ÊíØ+Ívÿ^ª6ÎÔÔîX,Þm½›GÏ€öMê.`Èôá©kê`#PFøó¾ úâê>aÿ—ÔârM¡‰!¶Û±áqÌLÒ+©&çéï߈ʃå6‡è™C&á¯:ÄHT7ì5æÇ¿ð•ßGY› ý“2ÕÏ\Ó0­†™NæH£¼q—aâÀ·ÀZüµSRŸn-ßG+ïññê&”º3ŒmUKS²-…¿eý¼Ök9?•‹Øì`Â%øñÆC¾&ÙÆÌ£LWëïôpOÅä«œ]šv?ÓÉb¡ ˆ·‡n:Ë#/ñä|F¶)IëáÌYz‚*êÈÑÅÕØ»w?<8>“=muwÒegÎà˜ÕCѨ½E k½M3'°+’È|R-ìáLõ?×*PÕbo"0B*¨Úª£½‚8‘Ã$ÙãpxËŸ¢5tŽ½Í¸à“˜$×Àž(â˜öpYË­|”›éøó„Änƒýæ?DÁsà>'°à†‘ÃKXb·»N«¬~ö¹úõäœkF]«p†¤_5B‚b²;äŽÌ’!du·b¬¶e ö ƒãÿèãñéÎ%†,»ÔuÍÙ|……êbDÛ8a²¨ܲ}ö=Ïw¦N¬ôÿ®²MŽô?5F*éÀj¬&v‘ +)ýÙ ™<Ô[è7«ÇØ+/~øýaeÌÓB0.«àɇÉ(÷$’#=, ~ò:hØt›hA+‹[²Wá™ÐLz§.â3ÕM›áØ4†@WNc‘ãkýˆ!fs!É*¥˜Øó]ZZxè)Ö5ê¨ÇA§9¼ª«ßœ~m|»{ŽFÁ!& ³xŸ§‹Ž–À´xŒðÛÝhƒ©øný‡Šš—¼§Ç_ˆïÌÉ@ÌÁ÷æZxE0¸^þ7º»çéNIG°»Õ;BSi kân-p¶âGðóéþKè¿Lè²^5‡- eB4“AY³™ bw°³‘ð7ÖäÞ¨z8Ì=3cU•«è˜ÞJ ¤_1÷ý±Å»+ÃÁ +¨ŸJ½2õ‡Nøvc  ] 1î`iêéß_òríÜ=»X2F¼¬Y_‚—U}>ÁYˆàÑXpztyšh6%\.·š ½‡v‡x=ì8Cªê7Ä/ßè?·oT |8"äÂ`ÀÔží¯#TÝüÂ&WÞÎcšªø\D¨@Ä|xá†Q5îÞ3bU;¯ýMã7cÛ‰ªÁ¸éÈê7öçÔxøòf)·³éäŠÅܟljÜEEù_iú8ù…Kº;väœ6Ÿt÷ú¸#ä¼,ÌáU|GÄPR;Ûˆ¬Ãˆš‡#[q’c¼’Oo§‘ü¯8ß÷2¥;(?¯§˜ªÎÞüoª97ý~î@`û{ó͸ìç$›7c0ðÐþ\N¹òdþŽ?`•·_éælLÞ3ÖÜFÖµžãÛɘd›ñã…D…ì5·2ÓÒ’5 -…Èú9" +[<>™O :XOXoÜhn9È{œò°q§ÇóçR¥ÅùŒÚ×íÎ7 +/̱µÿ§è.ç&M{s¢Aýù¿o‡0H@$kõxs†í§‘ª5M~›rH {Z×#uÏçÎFÏ ÓÊxe½ zqªÎJj¦SHðáØȾ”¶@§m´öqö«Òx˜WOøŽ²úsm‹`O²Ü,Iéñ¤œ‹vý¼ q|­-%NƒCánG©Ã%§_2âf2WòK¾üQÛ˜)”É(ࡨ=)£Œ÷èç×yR12_¿³óÐùÈE¼8†Íø.—·‰ày˜°ƒ 7âNºŸi>·²ôþEJž ¹IÄñ 8åR!‡N"³kq‹Ó…k{8ÌÑîn8a´×¦²@E÷2äÇoÒ•¿ú ñAÓGæ=·5ØøjI?ÓÈÕ´~@ÜZÝÉ>=­ùq’¾2uµþ6þÞBmí¡úÇ1eÜwéî--„ÕχbTÆðÖRHÐ̇ظö©ºŸybžŒ?áAµ0­>Wêý8ž;ùRcÑÂ¥¡FUHˆÂ[]áØÚßË6¿ +ãø‚'âÕ³6Àe|»òÜ4F;)–¤Æê¬+‘uEQíáVû"ÿwÙ¦ptíÆX¤UOsÉØj€÷öð@È”ájZa§è6ýììãªVÚC»µõ'Ô²$Ëî÷6ÎÜ´¾p¹ïìæh"°ö(ïÌ8‘G`.luâ;„Wº0ÒÄöøñÛ¢äû4ý{ñKA-À$ƒo/Ë ü½µ|ƒ0â;éðú’JweSæȪTl -¡'ÞðµÀñå¦z‘ô‡˜:]RØÎU$±…ÛçÆ––AßU6dïï[C« /ÀKÈDõÍÖL-*ÉA”‚ק’ñÍ1ºu!´¶—:iÃá6sÊ}xð:ò àqk€F|±ñãÌq…a÷q‚ †}¥©¯ÇÙ#”G‡i%^þÎO‹Ø9.ŸXøþÎg$i­Ï=[^BxëÄÞ3_æ&+ä.OñTÒÖâkM­§ÝÌ6¯™ªSÏŽÞÎ3T±NœsÀ"ù…¿~*é¨(Ó’`¥±ÓŽ0F-añãΗÝÅ®U˜©#¿ÕÁ¯¢¾©³WEH&2Ó\^ÖÚë´žÜ\uC×%oP)š%wP˪ÞúÛÃèà)QŠ’IšûßÞ7ú8çM«&&÷ïÄÕLà±îN¼ˆGú#Äf?šüiÌmoY÷ü%‹Ó9ÖQÖØ蒣˯¾i{%MRŒ'p…ÀkãÍ›¡™v€éonƒ™×¦ÁðÉeßåíSc{xsUÏųÔeO¨Î´bŽÓù°PJÔÈGmÊl~áaýü)˜þÙ¯Ž|™}¼—å‡{[N;ôð1{‹}ÜUbnYî5±î8ÛQS¡üŒÁÏ~HÃðIkŸÇëâ— ÊaEØvú¸<ô#!E•0æÅf[­2ù«ñ‘‡º>®üú¥ËŽVI4²3³1']OúÙƒMý¶ñæJ?wáÌ8º‡Bn Ç×À‹:SZûÛí~¾<åIPLzŸ ¹¨ÕåúCÜÂøxË’Ë3¾Óá¯<‡Ni°tT ¦¦O6F!7$cè±ÿ‚¿³’±ÔV(†Ö6ú~«jƒm×ÂÇŒõ’¼ÏeÐø÷ß‘*€@|Mµþþ7UHm©ñí®œdÄ« °áÄÝb$[PyW{xý|lÌɼ[]8˜Ftbpé'OÛ‚NžÔÎ{{£Ùqb~®cþ`ñÉqß’hs¥m-ùüxó†æñ:î—EÓéæJÌú¯ö;_ÙoãÆÚìç¼:ò4q3¸.аöëß´Ô†a¼µ”vû¯ðà…éפxש ÛA—0¨ÚIë¦HØ‹."ÃÌ”žÀ"Üëã`;ógÏE^‘òLzI‚áE¢¨¢@žtR2Ë`@¹ÓàAÆ÷à±çlG#Ö /1:8—ݦ­ +&ŠH>ÊIðìÞ 5b}®ée|¸¶UXÇïTÐ1²Iãx›÷Ø¿dø[a¹Ÿ$z–QMWŠ¾®"”45P¿µ[GUÁøŽGű\çÐ2LdÆ°ŸU3ö°[yŠˆ ó¶éÎQëˆþ{€Ôš*ù½U3m$®––3îµ»ÃpöŽR¿ü)Ôö3YGO”%¨ó¦šB*ÙlŽœÞÖÖÛõ_”Ã-G—TÀ‹‹ü9²3ÊTÙI¾–ஈha°¸Ø þž6Ö{ͯ"¼w<à`¾§ÃöñÛ ÃÀ`O&T,Z¯ÕÆÖpM8éNà }Ýþ®K‚c};ÚÜ‘0×]yH÷_öph€m/Ì~^ã©ú¸µéÞ]Qi÷‰¿&gGÌÐÇLj¬b{Úãõ<`¯žäë©ñ¦¼“q§˜µÇê8Ÿ­k½»[éæ5 Žvl éÎXéÉñ¸t×Ùn3cˆ/~3Thl9#—ßãÁ)Æ7ƒÞÚðWÊQ˜ ߯Ñß‘³ArEûñ•)µ$림ΔêWãÎ5eíúž5WÔ”û¼8Þì>7þÞ;%(Ðöú¹@[_gçÌ¡XßNx6Õ×O£œÄ–ÐO9,½¹Éç¹½´çŒ‹Þö<äd)ããáÌEîmÜ}<î3æ }c™c$ŽdÛo§ØyŇ³œýýù”ZüÁ:•ÖÚ×ND”ÜúãÌLÇp·o0ãO²ÜOaŒecÃ?ø{äEÄñ(d+ݯۗWé3'GKLƒhãÃ[—2r4 ¹æ<Ë•ž&Ó[p­z‘ËHнÖþ<$ùï%«ÕÉu°$«€Vòš«6ÕÓà8flºÄmo§ž e‛~\BÇ„)nÜÇWƒ²‹È˜mùaà©‘)<´ø¾§ 7×éâk‡Ì›·‡)ÚÒ‰¥»q›§R<8‚ÎTÄõð/ÇâØçk'“°Š3,ë§ì™FRÅ%|6·’+8‚ÆÐn>Î7ÑŹ€ãåV·Üá(( þ6æ2·>ÎqaÌ ó”zväˆÚÙÁÜmÎjåtíÎî sÎÖøžt(·‡·™#nÜâAç%“ÙÌðHä”›p¹úµæ@ÀéÈõvrDA~îu`÷çiNÞ`4L[œ¡¤!ø«ËPùdiì॒åP¿s>bì~þyº2Kq ÖÜuËÔå›^,°Ü.È ¹’ª›bh;q®¿ +ónüi›óe n ùZ8—M@qû1¿ËS|£€ÏQ+|âÞÎø«‚ÇÛÌMiGÊÌòÆÛñÍ1pÇSÉ”5jÛNL­Ì L¶¿Ýùwç +<زžþ>Þ=ÒãB`-ß“i±Û·¡¯X”7·÷s5&`†f÷N£’jk’¡/{{xÈÏæÆJÙ¸?W±ßáÄî/Ýy_’#×Ù»¸¬wm9++Ê#Ó‹wýÑnHG,;rT3{^ü|ÂÆû}üY`‹ž(MO–¶øvç,6š8Ûyþ‰›qÅŠ2ªtøð7Åê˹ã4’ÞÍ}¼Ã,¢]ljÌÁ Áþßg8½>Öös5@ ù)zh7Nî~€~®?ârMøÔÒyÏoþ( Ž,9AÓAÎYk|ÝAA,dqºßáõðöpÅõ“\µ‚¥$+dv¿…ÚÚŸ»p±æºÀîIb—K”Ýñâ³ú­ü¶-´1E¾¿U®xíLchQ<©ÀîØ_ØK[†ðÙõs/¥|ìõÏOO2…•–ÌÑk€ µSânã—…é×ÕYõO+•ñ“Qq¯p;«€}õðöŽ¬×L©‘#Š*zÆ0Mb’Û÷£'CüG1âo8ôF7Â{š'oÓÂ?ã—cúE +NáØÛ“~"z•‰¢ ¶= ±‚®‹ÇÐt>Ër.Œg>ˆÊbÄÕñ|7÷*á_ÓDü[&âß¼ ü@â{«ÒälW›3a•‹O4hK=;˜ÃÛ¸’1`X[¹‡·šÂ~$}y¨õ Õ_.^¦’žrn#b ûNŸp¤âò¬5z÷ñ䘙jö€ùż|…‡ùÒ)øÞÖà©c¥í­ø›Å_Δƒ©éËö~žq©,iõŽ6VÔøû8Ý=ßáÈ•LY@íñã|ïsc­ù‡mˆöxóƒ#˜e:‡ðæ2H~£ØÄ>z^ݸšaäÉ~?asù±X Ûëä,f0 üyŸ+Õ€üV¦ä çç¿:'+ ó‘a'ntî}Ÿ@ç{ô×õÓœVa{_™è#z²-áß’HøÿFßä>ÓkŽsŽªÇSÉ`$è?>q”\;øsŸa·<ʽïÈÒÈŒMù¥KÚÿ_1‘ ûxÝ›jtÃÂ÷·06oíáÖü7ª"I`?Ë—ôÅ]§CÞàxð×äZ¨ä…Iííæõ$f&#ÀQÕ‰-r-¯ —Rk£ó ,5à'œ‚VŸ{ÛÀó2eÅ*{[]~®½V¢JowÇõgs¥Áæjüªìã &þ‘Ûèà”)¬£¶œY¼zëÆ1MçOqÅF Eîo |8ã:„CÆ T‹ñš”HÃøp0ÌPìéƨcˆãî\¥L-Ák*Rì„}\{Å##ì¿Ù¢ߟ8ä^ùãu$vkþ½øõD»uäØ“p·8½¯íç–ÓØd[iÈòhyèûwä˜Zݹ¶¹ÈI~þ<ì1ç&kîç3q±öó9’ÿ_8nØMùŒÈw^ÿ3ÃQÛ’}æt›wÓ~u1 +9î~®wkÉ"šÀ‹s‹Rª7·œYž>`$_ x½ËÞ_1™Œ‹Àû5]¯ü8‘I—^(r½8ݨâÿ¦Yrev ¼|?.BŸ/‡m9 +/y³ Ž/0zQßµ´¿³Þ$°ÇaÛáôpÏU‚G#æ(Þñäx$ ñÒ:¿—sËEü4ñ×Ì6[ßéý|xߎæVa´EÀ±æy,_áÁ#.HfãŨZÜÚñ=ŽæÃ#¿1eÎÕ¯‰ââšf’{rd‡_áÆŠ©.u#ó[ieÅã7"ÝÇEÕ¹– Tr5z[÷ðäl*rn,°ÙÌË{Úúr|[žÇ·'RGæ?ʬ‰’×þž*0”1ñã„R’Üœõ†8îO…Çn#sF)ç“Ä•t÷cqñãTÒn$/ÓÈå™_S§!b±ù‹§2îP“5bB0¤¢[è¿o¯‡{¤=IÎÝ8¡„Pb•T‚|©E‡´^ÜúøÅõ¯¥“ªOW+MÕjc³‘ì–×éà øˆþ"Y›ÖLÖÄ´”ÐÂb×o‰·aáÂÍF<ÐIæÓ±¿^1â±y‚ßÛÆRæ˜Û‹nšÓˆ w:wäÌ^¥™öŽüåAA1Ý!ã™Ìô´+uýmùøñ§Îψ{©}|~¾ Þ†rb˜ûâvˆm[‚{{ÄýfÜUúÍé‘A'i:{{øpÇf½í¨ï¯äur~Žüôj±‹ß¿³œd%£ëöñÔ_™Œµ´ðïÄ]…t:UŽüþ A6…ŽÍ%üAð:N°ÒAWZEË”ŒŸ`³ÊGÞ«÷ŽsÄjZS¯Ý§f²›þ@þ|4ñŽö{9‰*ÞäiìÓ¿nG¨©H¬øÛ]TNâu¿qð>KâÕÁ\€¸Í-CNÇáìça"üˆ ¦š~Þ$1hÎâ1ÐÉe¿‡LA +­ÛÃÛÈTqŒI?gøó=gbƒAΩp˜Úö÷˜:Òå[Òñû¸ó†áûQR8äe:\ŸY=õã·ò¸°ä²7”ÚÙ©>ÝO9y€ûÊ·b,·7ñû¸¶Ã0ßä4) U(»X¡ð·N~¢ó/§Å vÅ +›ËâÅ­ØhDZìA´¿O_‰–Jõ5 +axÝ©1 +w1Ûfÿ°ÕuñíñáËé_©ìÅÒªHã¬Í°ñö%B<õOƒØxHà¯.’=Q@¸ŽP!Ä#¢«€…¨ˆû~ðö«9§«“ Ñ"æh¾rìÿ1¤V²ØÛôÑêVÿ⯴Ž¿Æ»ÕUèOª±<h©Ä!)xì¡ÅƒX öŸ5ÖÌU :–sw}ÌÆýØ’IûÏ ßI²BÀXþÞbËu»êQO·õ·üZRʺ^Ê>>c«™» Ÿ£œµ·ks2\ks~LL=ê立“©¨|¢E» ßœk)œŽß·h!`Äru"{ýïì'ÃŽr\‹ŽüÇ!/Û¿³Ç˜f•”‹x´èþ^5RnÄÜ’xµÍôçiE>êöú´¿ŒÊ üx”¾g};ëÆš£rOÝƺù:«ŒÕÀ·ÑÆJËÔr*°oüÈ«¸ó— ÞüÍ ×W·˜qKȚ㌧ʿ$eZ6@}¼ú]ƒî!­}=œYæÅ*iìâP£N凿2¿èµ·!ÖÊYìWRc—wÚ>…,uuí}@'Ç’ Ë3J.Ìuû¸å…娩 äÖÚü8j=?à©Óü‰üŇ—-s8‹þ]kënöÓWPq¦­î~Ñ:ð:ÅVï©·çÆi£*×@yЙ—Cõs³1døŽ'ó…0’2 ¹àwcÌ=‡‹ŽŒâ-] 1rfEHÇre÷@úØŽ É5QHðØ2R.Â@óecô¹?UµÓ‰|Oi/´á~ÿ·ß1$§RF½ûbòÝ»wøó³Ílu:óªIøkn3cU{Á߯lj^Bħǣ,¤òBIºúŽ@Å#ضÔ|xœÆWzŸm¸×Nâöðøž¸e#Tà”ÊC!™¼.I²£øòdmŒ@¸ïne¥Ã i ¿Ho¯ê8íA‡•crª½ôï¯ÇŽtÔñQ4?˜<•,_ØyZÓ4–&Úñÿ#R-mG˜uXõ?·èÿ79”“c¢×áÅ^U¤Ž‹täP_‰Øê**qQY½¢’#td%Xx÷ßØðÉújüfsŸ@*£Âñóøz0Pånè¿ëÿZÿÈ<³ßM>°òO]Þ<[.W +jëî:­Í»0Õ\xkØðÙôãÕý\á©1Êa%‡ùh×Ý#ýe7ïðåÿÂýH^º ¹v*RQ¨ŸÉPVrH¿…ÿ£•ÝÈÍ{ž"³ +âÄq*>ÌZ5`-»øppÆÑc„}ÇáÄíH/Û^p¤¥’ck“ÇÜ/.3Gh°Õ€ >þdL5u·ëãÈ•ÔÆ?Ôq:ó +yȵ¸õ‡Ó+ ÛR$ËÀç~—áàt¡­®ž>ßo0glaH hEÿ.y–­¿ŽŸĆ#U²ýíð%s$›§·³“rûíŒ_òãÿI3«å R9Yn/Ë2ôWê5'T͹6ñå‹t›ªBª‘ã߹Ǩ¡ k°ûøXúÝš¾nCïv&úðºu H¿Ýû8Ö˸±>Þ z‰Š +Zw$ð½cx™®¬:ßR8¦Ë´÷xá‹Â DÚüHˆCOìâ»-€£ŠR/êyË ¦Úx¨Ã©n¶ïñä l…½´âCµÉü¸œÇP؇nù¶ ¥o.ÃÅ.@”¼ßwL»>ØǶÝý¼ÍKîwâ;`E‡Äq˜@-§Äå[Ž¸}X[Žôïæ-‡3èyÉ-ãÌ›WõÓ³H9Á[™£{s½áyÐ}yÙqnr HÓÛÎ;ÉûùÙ}§:HçF_¯ùÛ­ÎqMq¯3 ÉþŽdj‹w'ÛÎ S}>c%͇8ORTwäY12¾?Ÿ%aµžaïÅ^w[Ùûx­ÂŽŸ·Žõ&ñý#‰Œ|n Äb•nÿG'à»ZÄ÷â×ÄBµì·#ÅÆà/ÇjlGÌO£ÀñãMÈXû4älÉX)`m{À£6×=ÏØÜ¡Éâ^¼Ç‘íR‚4ãsìÔ4W8nÜl©&ãëäG—NDª>jŸ§Œ•Gi>?O8+ÛœdbydÚç˜&)ä/'Í~)²tä­Æ¤›ž8mq{ò[b !°ÏoS¤ŠErã_tm¹Ðw¿k[K}Üî6(E€¾½Î¿ÙÉJc„®;[Ny+Œzo‡ìç ª¤[S}/ÏAI*XÞ÷6·3ü½”ÚÜéÅæ_¡èóßPäü6Oq`-ߊs8¦¢6¾œEc8Ÿ +Û~üGbγJXÜßÇ’²?PóL«ã¬Á+f£š6 x˜€H?¼·Ú{øŽYo£_Çɹbx3ÂÈÕ±.Ø0”Xê½Ê“â ì{inW'¨ž¼Õú‹Ï¸®d™Y>zrÑFÆå"_uþÛ Ÿ‰Pa´Øl{ÞÀÛÄ÷ãf+ÔèجVþŽE¡ê Óµ‰Òö¿pÌÈgûG¾øá%\5÷LⲤ•>égiaeMÖ·×nw]Š¢ÛÂþmùÆFÐ{£·r%ëå÷—[é~ toò”À¢ûFæQ§ÓÆXeÜuýG2!°¿s e”µôøq;5ÅLJ9ᦂ¡\ ëãÁO ‰Ó£·añä„ŠkM¤a¥¿. ¾“ò@ͤµ.?CH¡Ÿï½‡ÝÉm͟ͱ¤³(ø Ö:è–ý¼äí{éúþ\Ã+Ò×·ÃÛ¯!ÖSÚäzý¼4úù¢C*oÛSÆêºÒÂÖ h||8ŸÅj<ß¿N'1Fî?‡0A([êäÏ0?w!Ëe[Ÿ»¿j½ò~Ž&q3°ž ù9ÕpšqmkíñöŽdJ÷v6[ ýgøó0©!EÏ×Ï&æÔÎU.¦ú;¿ë5T )'Ãêâ§&áïŽ×"`=ãðà,¦¥É¾‹î s” ½‡Ó¯&ã8‘4áTöâ'§yX±¾š÷üøÁˆ‰™í¦œ‘„Fƒùs&aŒËø_èâX·—'{[S¯3NâdöŽÜDg(¶j;q+%I—O¯îà›“qö› ŒÙ;ë~;Sç¦ÏXöwz¶¶£óã®3¾ž'tD‘ljf–Ðjyš’*¹RŬ¦Ú›ò\4¾C'ïüøõüͪ€@,NG¨„‹ý]ùž‡Í6, ü=¤ðDéÞJ•žæÃÇCÅ¥URÂö>Ž!sÓ`r{Øýü ±jÁkûo¯ªå]HO TÔmý:s¸çW[}<…ˆ6ѧ«_kÃÙ~AHšNHV!ìçRTXXjyˆÈÎoáÎe‹ÆŒNìÜ\ô~1¼}ºpOÄñ3 !ú,?gd7¿#Û˜Þ2£Og1´Dëo¿û9Íc#Nx®Õטç]ÚŸG'yïÌE݇"¹°Ôs© ç…Ü¿˜ÝKkÈÕj{n8ÈE±ùŠ–K£œ˜o~=`ÇËSí↙Ĩ,>¾s–ÿb’HãïáÈ5øÒE Ó^6Í‹ù­¥ù +ös¥ù+Î`t·><ò³)ŒqãRaâ6¸ˆçãþ[˜hx´ÃWu½§óã#¤fRG³‘%±ä:–×j½àG~7Nm¯Ç‘å”_¿!ÖÉa~FJƒ~þô K}cûù +i|IøÛ½¸Ý<å”ÚÝüG·Œ˜ÅiÚvøxžüOVT×í~0b3ÆßÂüáJ v:x rPb«m>óBPš_ŒõL>Ëq3Š>óÁK"TµF ½k%´?á¸ãÜtÞè!‹|~'ĤrMµúyš䮣^Úÿ6ã•o9Ãà9“.áb7à¡‘05ÁèÚ~ï/º/à?»Žµ òh.oom¹‰Œòî½µï÷ÿIÆ&m„}\OÕ¯,u'ÃŒÕÒ œ‹iÎéÐB·çX£‡‹¾¾%îŸo˜Q˜àǘ­K2l:Žœkš-ݹ…ÓÇîç.ãNpXÇ<æ#Ûðú9ÁÁ·×ߘ&cÈò{º¯˜gúý¼Œæãøs†€ü9ŽCm;[<¶íÌ‹ñ£]×úxÚ[aæXÞçŽÔOä¨øž?`Õ~ðøó-n"´ë¥½·ú½œObXñ“@xÙç=Cru6ηäˆè60ãŒt!…Õ~pz?W<(‰ïÎb›™bºxvñæ,E€èä +‰û{9åoË’¢ÅÇ$Ãù”ûþ¯'seKÚ8•d;¸ñBG~GˆJÃjÍêÃK Ù¨æ(–ï¨öž¸Q¼Ùc@÷¹öðTÃó;ÍN©¦ÿÃœ¾`»xþÎ'óMaHXû +÷[qe ýLd©v¿Ì¢ä"÷ð₽?B}¼Cc­åÏÇœ­%żx¼Á†ë×^=ÅÃñã¬ò¬{øq“B¤éýL×ÂA=þ®1âéu6à{œß]ìJŸ¡é‹ZCôðgÀt@vÓ˜qõf×ÆÖâoQkx”ÇS¿آݭÈñ(SÉTQûßÇ*v$òbÜ­ïÎÓÈó±<Š_ÞíÎã÷Ï;Û}9ÓÃÙÎ%åÎI¾7ç4ŠÿO2G&Üçòàó¤}<æ”àvä˜)ôä¸iþþgxö óƒKe‚ ç™j(ÌÃN3b4f"GѨÀˆÛ[ñg—%°^,ð¦$ÛÇiÁÛ‡ØÒ\ox„{[½øÝP½íß‘Þ1~HÁ 5ªøpZÉ8CDª,~<Ɖ‚þs5Wp|xĦ¿j›x7×܆-~I¥q~IÖ܃[¨ãuB\ó•â~.òåOº,?[qAö׿z;¨ã¼°‚>žF¨§6W/‡³¿d_,~\‹0 r%@#^A¨r¼m¨r îA<…#ï'œi;íà‘Óê1L ñq z¨Ú;ž+rÞæÁr5?Ã36ZY[^Üel(–ÓÚ9‚¤íÆÚ¥.yh5Ôò<ñ¢÷×NHéöý`Æbˆë»áÃ1_ +á”±À¿º-ù5WVÅE ,u±±œCæä&übÄ$ +-ã~0bH%íÜxÿ€Öúùâå¼y†¨+§8Ì xÕö;ñKÒ¼@ÑÕ”¾cÁ Tw‘ñ·½-ÂÓÇic‘w pîº. ¤ØpÁuZCE†ùq$íÛµ” Üro-ÛéâO˜Ë~'1]„XØëߌ5‘ØéÈÒU}/©<ç+'ÓúßœeÄÙØ–·ÑÁ  {å)êñv²¼„ÒAÞál Ì>“µ>ÜZÑ›°'[øK£c]OþŽc©™iF¶ñ>ÞÜnª­ÜM›øñ¾ª´w¿qôñª¦Fÿ3WÔï§ËŒ¸•E‡ëðâbÍf£˜àq ä¨¥2£·åÌ£XíÆLMö9¿Ç‰ªýOÝ/¯ó(Ò3kY»é¨nm/a æZkĽ¾ÛÎ8”ö_CÆ|YŠ€ÀéÆJŸuÍΣœVS`oõs•D¡Ó_XÙ¹>?—!C `.~‘ñxDÈuøy¢“å§:q˦•Gæ/Üqú¹À$¯3aØ]ÜãÌu«B»P}|îž«žú‹Ÿg˜>0$ûÇ¿§PãÄ-og—í̶x‹ýüá&Ý5¿1³íbyÅâyŠ°ïNÿ@÷ðì{ó,QÉ›xòDDs”‡rñ-™fäxü8Èâ玔m±9‚0yÈÜrnŽ>máÁ¥¹˜ÖV)¿kpÅe +Ðñ‚ÆßÄqBõ!WCôñÔ<\R@äžÀÿ«žñC_TÄpÊ3m—îà¿’æÜ‹ô*ªFè~ù£Ü”xk¯ßÇ,©%عxoèãú£]M¹:ž@q³^çêâsƒ_Æ,iŽÞs“¬HÝøùÓÆò¦?OlQå9—BË©¿˜šííĦbI^#1?µÈÈ%R¡p§6䨜|yÌÃNEªør# ™!Œ-Ì…È‘0æxaÜ4äº{Fuç«*TZü‚Ò]´þŽOÃéwñö +iíã~=íì4ú8–ŒÀü{ËîVÞ߇˼¾7ã§Aî|mùq7Arx‘ļ~¾@™.tíìæˆÛŠnŸ` U86ñàǀႆ-ÞÞ0æÚñ ìtàc˜«Äû<<8¨uûü9¥ UÊO~f„«w'’Œ£n½¹°Û‘’0ó,Tln)òóê£ÇŠì> àiõñI„‰@?ÇŽ?4—ïôsdÈN2WÎ ã|Òkñäi®;ò|ê·Ó3Oc§!Ìä¯'”\éñä)dÝ}y›SUP‹í<rn +LCï⊃´¡›°7â³ùü8d:x×öñŽç3!;n?·‰úŒÓ-ô½½§ú9æyZúža|Å#ß¿0¾'-@=ϳ˜É)׿LÙ^G¬zÖê‚¡¾6à‘˜³Þ|íÄŽ7àVæÇŒÓ0QnÄñ«—híã¡ã6 åñêâzª;=Æœâd°ýmÌÞý´ãF)ýßµHc=ù—Ä b|uàdžÎ*âVR88zIé“f +¦¯—Ý…Ó¸_»KýüUzŒÇzʼnM–1÷__xµq“ããľ+ sì°öÛ‰Ì@‰^ÞÎ6ÔDê~¡ÈÍi çŠm:aª‡x²‹± ,Úõ87áø\¹g¦Ãƒ4±%mmä—“·}é)ÌW,5ƒÎª*¬¶°íúÛŒòÔ<­¯¨øD•K,5>'‘jahûëñƒRû€í¯‡+æÞ ¾w+äòÉ®BÌÓ, ¢žßG1ÜGÌ€’¢ã^w#ö¶½ïÆ\f?£õøq=#snr–KOY΀»1ðñý}¼ÃÓ,.zÊâTY@Ô;qiG„Á „“}oÛ’ÚˆÎ,µ¸äšL"8É-s¨äØâUog °×¿m9›ç€ïùsÖhl=¼âµÊ­Þöñös’¿ÍHuÜmÛõïÁó¤yM2娔{Ö%zÅžŽ%xã$ w¸Œ"F$êÃÙÆŠœ0¹$}|ƒ. +û¯áÌoBÐ ¯"ÔÕOìäIãÞ·ãt¬`6äiÞñäYãÛ¯o‡"È·öždD9²‘Üju⫧ØcM)síঌhékÚÀq?#\ž`’]Í«îös‰í~×ðçŠØs‹]oqÏÜAæ5æ)=íy†Tߧ"Ì¥ÖäF6æ6÷¯~b"ÿq`¹æ9ÕäÕ6†âÿ87pä¬"%­ÛŠê ü…éÉoykcÈ5¤Æ{Û‘j3©×úüy ³p{Û^8ÐUµrû¢à‹ó•\3B;káÆšùH¹"Üj©’íÈ• qÈo³A¯!±,Ý»ñOÓì¶Õ5A‡<·ƒšHïkrM{“ú;ñŽ®ªIN×íõò3QE8¹<Å& |4ä)òòÞüŽØ*ÚüôjSø_^q–úž Ù §Ë™v8” án| '^'±l{Ïs~AyŒ¿­ùŠcoÚ8׈^Çãà5ãeX$Øñ?ˆ¡ÜO{r’mú>Å;ì~¾B­PAÓ^0bñm¹ñø[[ÌL³ƒNFÅéê0èƒjíeÚI°áÞéÞVÿ5ÙeKÿ•t(ðÓõ<:•Œ>+_+°>ñ?–œBbóyVÃÙü8œÅز÷ðí~'+ç1÷×õíƺÉX·"ùä·~vÒ´g]4â«¢z\wYìLt+ç7m\û±.¿ë{ßð<i°TÃã€?çñæ:Èü¥#üD~ÖãmMΆÚv¿!M&߆ŸõrMR©?‡êjðïÆúÀeÛðã~!Çý<‚ê-ýÆþðäi¢ øsÑ’ 0V.å?5,ž[ý<zo…ù‰þŽ*1Ú°ˆ«ÛN߯ÌRÈF¤ó Aðçj»{ÊüðŒs­¥G0·¾t?poona‘‚b}¼9G ‘œu6ÂtwƤyÆ]11$ýrI¸ïáÛuK{ékñ¹FÉ8©Ëþô_ÓÇ&ç·2¤[;~ºó6U5®xÛ\;Û·qH¯{xñ²Gd=¹[uôæ:«•=¸ÃŠiÆj¥àßè¿%Ž¥æZh$Ö:cç¸ð÷º>ÿáÕլÏ6ÂÙ]ÝÜ/ù†µ¤rÇÛĶ3RSuÇ{ñ3‰¸këÆ F^ß6ÔÝ»iÌ +ŠæüêwÛ pwôïƒ.MÊ‚ª¡›Λ»ˆc÷#¿üHîað ñU&'O~âþ—Ãø|v°7?4ãn #ómª¨½Î¾Íyss~5ÖÈXö øñ›%VæÿÖü`­÷{|9‚&·&¤¬šs'uú8ɘŽïÚ4ây,¯ÇÚ Dßñ--ÅvWàð?ÜöŸÌsŒR‡¶£O»˜$Wso»ê⣤™kùþ(­ ¼qûÇéð׃=üÌÅÏaÛÙoìæZ¬NÀkÆÉæ ’>®q£ˆÈÚxýümÍ8§ÍÔÁ¸Mvä:î Øvøò5¬Úø÷æ:†Òþ6ü¹Æ).4æ*øCíziµ×œ"’çÙnd–5pO ¦óêU~<2mËB/ÌxÌÆYκÜ‚AqË™`ˆþè¿2$VíÎÙ-áÌ%»s«´ê|y†YEìçqá¯#J»½‚ýµæ€äYÒÇwðæ›a¶¼ÂnGÑ·?w8ÊHäZ—ðíƺ 8Ù0ÚüSeg%x÷nøs-€];Žt£¸çnÄ(µ€äJ‰9±¯¨ækû׎°Ë˘å½íõéΆ¼—’¢€ÚþÑÈóX?Ãœd€)Yò.–µÏ2G`·Œy’  =œ`^úsÊoÛŽ4¬vbDæURyÚBIùz Q²ñs†bÛÅî{r]^2;ü8glDÕJ~OræóÑ!Öí§—Dò:ÉI’âÃÃèöqI›²VÓm¿—¸¦HYXû úþ£‰LÁn + p8ÎYE"Rmo£µ¾žY§ ùW?¨ãf¥ãÁÓ¦øòQÆ¡­Ø~\UãÙMˆ¿Õ9æ0Æíõñ¾lÙÃB ørN`,tÖãu˜¡ßîähq'ˆøûxá?³éäZ¼xM¥øëÓ¬<âµ—Çíà‹&›b9éA¥µñäJ©B‹÷ãmK­ÿg Ô¢¨Ôñº©wß5b(ÑÆ*¿t÷äC.ᨠéÈóÉm/ôñ¯[úž4V Ç%K“òµF*Ð3½k í£ï ž*3îh“É£ [“{öúxbÕIPIÀøñ1ŠÈÀ;q;V/}xÏU 'Àñ¾¤-ý€öðæ9f§ÙÉYO*MÔ,V > H•À‘‡îF5v>Ë ?^œ1íDÎDKeP5ð +”}@2ÍV»¬À{y¢ 5ìM¼{ò+I~ÿW"M(Ô­È·0TÆ$]9¢B`ƒT×Àë$$X‹XiÆœB=ã±ök~1×Èör*1ðû¹-Ì‹%–׸ú¸ÑËgÅ͸èÍ´¹âË*ÝpX?ºOÞÍÈ¿0)æŸu¾×Óáßœêj¼ØÉQ{p]èÎ]—Áw¿ùYÏkjââŽ;iáûxÕZ +¹öwûùf ¿G$EUü¢ŽINŒTíèâ7 •ª¥f¸ÔŸ¿“$`^Bù²ÄßAÌSÕG9C:Ø>þpÄ$­—·ôq;Œ°¦q‚\A iíæ©'±ã>`´ËÇŽ™cBEh[¸Õoùñe…ü9Åg»÷ó¦’ì<>ù:š{)'ïý§ÇP­o§ÇŠ¾ŸÕ(Y Y„f`T6«¡î8í> ´±GHjÄmÏ×ìà‡OUMCL‘ée_ÎÜNæ¼}J’×NxÍcLüfª—eïõ}ügÄëß·êe}&GŒéÎåê9ÚC+mß™Jxw_=="LM¹ð” í6ä*ì4¨íÈ‘Ó7³Î<€w ?§™òvkj·Ûèú¸+Ð/ÈS\éaaôž1ÌÆf7öó”qŽÞßo3ÇÈö{9Í”×ý~Âë´þ¾<3-÷r<{þÞG{ÞÖ·13=£˜÷ƒôóƒÄ~\#'o#ÊMõû¹BíÎ%ï§83û>®`•ïqØq¶¯¿纰â‹)›’Ï]ßÈùVˆ°Þ +y.”_ʪ¸Œjøñ¹å +æݾžs‰· ò=CÝtþjÅ ×ÖxŠå­ÚÆü +q¥ôæ [–F²x SF^=xɘ"òÓ¿ÕÀï4|“ãÄ̾ós=?%ÄïÉ +·þžsWçR€ÀòB‘ÈÓs…¿>w{èyåPN¿G;0sRß_Ϙžœ©ï̱Җ<Ì)mÎKN;rDpŽIôg™|îv*6éÏ +£'Ôy6™ØxãAVAïÉ’Õ4ãuu^áã¨öò H2[Ç‚G¬]Ëô[ÙŽU™/Ćd‹R¶üGÔSúûoÈ“R{s¨ *Â×àõ–²ë= +÷QÈY“)yàßão»¦mÉm?‡UÙZxÞËôqº³žœj/ƺ›£{äV`;s€<ñm9€{íÇÜ2šöã¬jSŽx°¿'¼Å¸ÑŠTêAãED¥Ž¿O1Gãýq£¤¸ã¾Nƒf)†€ð÷ú}j©Ð =ÑÅÞh˾siáØw·ø¾\1Ü[õñà})E(b4ð½þ¾™ëX øp(Ì%ke<Ç„à77ÐqUƒS½5ˆ¿³NOhg™l×ƺü6Sru×Ãï‘|×ÏAà:ÿO2ljDúè/û9ÈTFý¾îc¨‹p?~fÊØ_ó\B$=™€àÕ&F\ £¶ëHøëü8ßU\ñ~`I~k[éÎRÓÅμ‰Q±ÇÄ7Ôe¾¾7ÔIc»ÃÇuÇ×ÆJÄ1‹ýCn÷6ðæ9XžB«>`×SÈ48 FgÄ!¢€^j™$·µÈ,{ÃbéV¥Á©´0ı’‰¹â5Wÿ) ‘u/&„Ÿ¨ð1ÅœT ¡l}£N%ó ¥Mè õâB¿&ÓÜý܇$—:žÞ‡SQ°Ÿg³‘ZRÿ ^›r…}sUâ1’¨ R©ÖÌÍiéÚ ìÝÁ&§ h—Þ7Ò×úþŽA–‹å×sAÓÕÕH‡ÝxŸúßåª/áôün9f·oÖðäv©k/cnGz?¤r,¤oqn5ÖN—'½õãexó…‰ã"}šr"€?^ü—°·‡Çœ·ZÜlÆTqúéÆ0ñÂf0ÑÏøQ0apøé~Eÿo!Ô ný¾þKʒ㉹;Åþ kùðsù—Êò*^á@øqãùôUª-mGëAU½ï÷ñ±ãy¤ñÓ^eÍu0‰OÙHÓ‰*)|­·Ã™ëgkȤ o§áΛ_œÒ&ññ´çÜ‚÷ýmñãcŒìûø‹ª¨dcºýù•'ܺò$Û×My.×+®Vðí¯Ç‚… Gš7Ç™j˜žp§fÜ-õqÂ:i{¾ÏãߜƔ¦ï 6æ4©Ø(’Äv׎X>#|ö}ÅEûû8ÙE× qZ’$):ß“ªº¹»í÷úF~§©cmuú9ÊlV:à +ýVã]\2O{iðæðG?W2. í{ùBëq¯·˜ê(¯·j0óm·Na’ #<ïæì¶öžüPÆA­ûòÕI¹ã}{Ô7Ó§]5ÁÈPÞÑùñkŒ#$*¿YãJRù†à[Ç’RoËÍhÔÜk§1<—¹ðþ<<›E¾7äbÆÆ×s1a¯qÈî~áõò<¬ üþþqk‹¨ñ·1J7‹{=šr,ÿŸ"ÏÜ^àr3œñ”«œ$ Gœ›}o«÷~ž5Ô›>eIŠG½ÿ§œÌ„ žÜèÈX|9À¶í9çŠâüÆè܇P¦äþ|çO%—OÖüÌ b-¯2@¶ÔørR’¢üÍÙ¥øÕ^Lr{2A eä¸-ߘ±*)•ry’Î 9xûxru(ºq× ÂÞFYåÌ«,½† qwd9Ä©úŸ±¡é³N—ÛÜr+Ó6÷x•Æºm&¾é¿ÃˆÌÇÓ‰`$mí¯¸®Vzc¨·"àÔ¯ Eˆñད!!ñâ÷åÏ•aáìâ9Ñù¯oi×™2î²ß—ìH4 wãÖ3‡õöñ=ˆO±}<ÉK6ësÕðøñ£]àÜñ `7|Äž\‡éãl cÁ7§5ã]~ðÕ0xÇši?·®e»Èx›•ly‘X 䈤öó2Jmõó£0]yæ’â÷ú¹†I‡#¸àË΋_žÛœÒP~¾dÞ-Î,.uætˆ}\ËiÎÄ`üå}GrIJˆaªööéÄ6kÉqJN†ã‰:^• +¹ Û¸q“6ô°Q)²÷øflžas§n$«ðƧ¿åÈ. +›s„’n:sÔiæH⯠¡;A¿Ð9’XŒM¯÷ó%5g•§ndlGNúrDÛõägPÞ<ÍK¸ëk®œ‘„ƒdet÷‡¦z†–ÅΡmÁË ó$[áãÄNgÃ`žßGn©ÆcìÑÂßÔ +Ç,ß_·ˆÈf—ã¿Š|W]?QÇXh¬mõòT8{!µ¾™FkÈóå¨d‘úþ\aÄòÒ£ñ‡Ú1p"`Ô³VÔ„'‚-NšX…LJ}y++åÃqhXßÝ{‹ü8*bxŽå.ã¹$xþ£‰:•²_㧇;Š˜D/ÈØ‹>ßíã}T§oj$fñÒÿG Õ}»ž6T¨,x׈DGÃŒóX·íñ<‹Q{ëȳ%<}Óàø6g|_’5ù$½:9ÐÈúnÿ¾<3¸—Pé³$ß0ó,ž+f÷ú8“ÎõŸÌEŶ÷ÓÎ;Z)Áí§¹ƒóÔñ=-T#íw=ùR±A¿Ãõñäq8ïon¢üÇób1¹É + w,M€úÉá Ã(ãé¦OƒÂÊ~UOœâÞôîwJ×ön÷Gú q‹Ì•Ò\£5ÝL—ßpoôöäMÎ{Ÿ«Ç^KŠ)7>=ùXûµ×NF¨‚1v¾º|9¦¯§‡ÇçŒÜû.7M®N–ñ«m ÙÆLFîn;r wíÉ0±aÎ[¶‹w¿±g$[ÙÆûg“+Ã< ÷m8!բī{mP>à#_6Añ<º)–~g5N¾ìkúž‚œU±={q:ÕÒáä­ûvæx±¹[ü§cÉôJ*pn}œ‰Š«m ƒÛ^&j˜Ó9#îú9 ñÒ­¨íÉPÕ¬ßhØsœ†"¿­¹™Üß·:”:øööñ§´ªMïÄ.;x\økÌÕ`Ø}|ãYú@{wãMJì7ÁӋ̉½D + ¿€#Š*zy+šÖ7ÒÇŽðaqa‹¾g a©âG4uJ*6òé€cíâ~“Äqù.\ëØ ñâ%öo n?9|Œò)RæÇ™òþO‡©øy8ЈæmÎãk2âù~¢‘w¡6ørp© 6sÛMy:¤4MÅ^ÎÍŽÑ®œ¤ÐÚüÅ,Ä m·˜$ûýzr;Áb ¹ª!/¼]8ÝUÂ?§Œ¸¶("Ї'®i»9Ç ƒçªQ< àË’°”ˆ<9/»ËcØv·#ßo³M~þzYƒ {9‚Y‡íäy$÷ïÌ5˜îæ)™ç~®a–ßw08óGë§1³Ÿ¯œ>­ysì¿"Ì·:O"?»§‡1—°ý¼õÿ.GžýÁðä +°×ƪžÿ_rß¹ßÙ~>E)O¿œ’]Ã_ϜϽ¯·ÇžÜ9Þûq-ÈÕètæ(ÄÜ”‹u¸æX–ã’£K-ù—°Ó¿1%÷´çtQÜkɱǵ¯õq³ŸKwâyô<ìkÌoÓ’©Ç¹oìá…ÈÝ*L·Nü2ÇF6î |G8H;~·}8©Ã:`![ÐvÓb=+vQoe¸˜ÆºP#äþááÄjévŒv~_yÓ§ÞI>çåÄäï*¨Øvøqw“0£QÛ‹” >_Õõñš¨KJç°hÄmkiõpGÊÅG$c²ÞÙľ3)¿2a2 =¶Ó’]·ê8Û^ÀG·ˆìåO¹×À‹5ÀUÓÆÈ Á¦U[‚ß‚îû“ãÆ|Ú¶±µÜí~'j#¹æ]§SÎqÎjÛ¹é$Ó çÛ¾žv±îàÐ_ösg8˜Œ|ï`<ÌŠyÈ Ÿ£™Pî:s,oog;óG9ó†þþÎyP·nK‚··“"‹ËÓ™w…:iÎ/=ÍùÜnÇ™f¶ß/Ëœ…0[àx0PÑo¦$Ž'ñü<)íðâz²DÞÎA©>¾eËø_ó +è ÝÀüøurnUxl`‹£œ1üÔwö}ܳ†…Åþ®wåP€E¿o³æ_ò£:ZýÕÛ€ÎsË +¯`àk™²©Œ6Ÿ—˜¦ðÆ™!aá¯%àTÅäÞ<]a47ŽÄ_ž¯Â÷ê?.6O@܉$w¾Ÿqu#ãÏGMÉÔ´†×äúxØ[áÇ­†µu|J?Ä/§O§  †2Gî£êàω¢Â½­aÄNl`Ÿ`>z¬V¿r8XºŽ}÷øý\CG‰|³÷µ¸¢Às4j¢çá¯x^-@÷ï¯çǪ.C©ø÷øra@‹üoÈ8…b„`-ðâcÄE­ãôñ²¢q0¹Qô›+¦/[{_QáÁÛú¦() +;q&ØT9ÚÁEûväz¹¤{@Á@Áõ<žeˆ£èãv#Sè?‡^ýCÅ ò”ßØxÉU!asíãuA$j~®6×{Ã5Ëkûxß '°íÈõÆçãÈîÈ4<Ÿ”&lZO%åtaöJ³ }ÄqóÅsŽWB¢Y"‹Ý¿9RõÊY"1ÖEïvÜ¿´y1Ú|gÞŽE×À›Ïž—–¡wß·"Ï•êuoéä*Œ¼ñy¯n,}7dŸç9²9ä¿“‡£V½¯mñØBÓ+)ø€Gì~¾ä(È.u.º1>$Ÿ4­,ô~ò²›kc¡þŽbž}‰ºEÛñ¿1&É5\{~ŽzR¨šè|HíÈ̵#SÈ“º©¸7ÿ[rDà-ÏoéäZÊ{½µ?G‡ T¸”4âRm·ßÆŠöó ¶Ÿ@gÔþ¶ä˜Ào:-s ã~"ᇤ`$?Oð\4LÁÛ_8¯¯ðíý%…ª­ÀúxÐÐÈ©ÓãÉÔPH¬I7úO3ƒ!¹lCSmG!UÌdOíâ?3Óm¹ã"9‰­~HŽ£Í¿#×DtúoÅ7Mæ _ÀñeQžiðjk€ ž ó7_˜ä÷تŸl9—Tê}¼PeÜ8B4úµãÕ"ïR=œæ´÷¸ïíçHIEê9;ÓH9;{þž<ÏYQ@ª{›q/‹å6¬ÜvýÜHb˜4”’±ïÁ¡½4¨ÄPJÈlVúöà™.GX=ݽ‡³Œ8¾LuË÷'+09©‰°:üo˜I÷‡ñb*`G³N&±<‡TnêT—·°UòÖçóãŠÏ¸jtæ'¹æx\/õs²áO·Nx¾ËóÛÂ÷ñöó©VÑÛÀ;|9š[’ÓAq©ú9$l;}êca§«Ûq×Ùðö÷—)Ú/n'1Ê5þ®51±ç4íÔÌÔèm{_– Òü‚¥—ƒ¦UéÖäïØgNÈ[ããÇŠ|„TtsoOͯa1b]:2›m¿Ç^!3¿NDhúkÀ'¨Ù –ú|{vàSY• +NoÜOÂ0_–q¦œS5.ØïüxŠÍÄÄàÚÜh ¯Uo¯‹l³‹´v·'âuþz“~'1J€ÏÉX4äŽO6cý<…‰Ù¸âS4Æ3§‡<ëOïħf¿Ý4p}<pF/ æØI¾8 g5#Þ¿0Jâüç¾9–Öàë´~|ÆX¯:G#™A§Ã™Áç"¡Ç8´;þ<ãòûMþð‹Û΄s’É};žrÎF]Üä\“̉öä¨)ì/nK‰BsfÛ§84¡tæ)<Ï…ä‰ëñãI}­õñsÓé@˜xvàå‚íjAôq›0÷N#±gØx×;^ÇŠ~Œá§Æâö{ððat¡i@ÚÝþ‹q«¥(¤xÄ`Ã~r¥Tx›éý¼SÓà!)ÅÀwíûG@Õ¨öð,Ì8'˜N–6à}šröå?_×Àç4`; øñ_†ìJÁ)5âÇ dAaÉAn÷ðæ(_gçÃÐinG|Nž<î/i:s<y^IŽøž+z=€ÿ0ÅZàpøôSù*TÐvâË™J{ý_Lj<Ó P@ðøþ§€T¦Û¼ûtágês[pð¿êÙ˜|oÉxtÒ/kñC†âòAog¸.hµµ>QÅ‹ —ãáÈ•òZ2~‰ÚÖfkÜr+’ÑÁ‡Óó²–Q­û÷ˆ4åÏôoùž„¬„~þÝ8ãS§¢¨dAÓõ¿$á½F¡«6WzƒŠ¯ì8 üyÔ¦9[í _B•<Æ×°ä*¶ ¡hªÛãõq²°xwúøÜl¨ä”p ¼8³’¤þ\‡ˆ6½¼oÃ(M\¥ìv©µþ³ãà ýPd([Åßkñ¾ +Ïå³j;ñ­àÄ ,º;qPšbOì·"ÅQ¸XûyŠ¢œ=ßéäcPñ°¿ÝÎnRbluã^$Š.?>B†w„Øsããà øsôb›¦Ç±†Œ$CN¤ \µÜŽÖÓÛÅžrÀÅ+±]lMǘîOŠDñTF²+wV[ÿÙó(WÒÞj)w„²¬RØYTY@ÑTX<;ñ!IÔxá&¡žAþ.Ú}ýv⊛z˜Ä›®¬;©¸?G3 n¾’{x󦙂è~ŽBÄ*¼-og×ÈÒÂk5öé·Óý<ã=/–E˜‹x5¿³Õ¢ûzníkrš/qÈÓÚÿG‡*‰'µ„µøÝ8nr€m¯:sñúyh[í[êmÇh°ø°êm ôóžÌ6¹ŽK1a¦·ø)º+ÿX3-,=Ç™¸ý\0D•jf—Úº_à¼>î#æƒ{Ûmþ<,͇j¹Æ¤E‰¥ÏÄî#DÔ’]|Aû¾àõ[Ÿg"ÍP®uÔò'Έ[oÕÏU®àO‡æ!‰û¯áÉ4oóºû=Ÿw9T§”H¾ŸÇ5uBæÇÇX¬¢^%ñH6¹?Èîó,S?ÑÌømO’[ãÎä¨Eñç*\WÊ6SãÇ3±µ$¾bySös hiEøë$OU"©øqðoåÔ)ûÙû8ç¬mêñÆ+®Óùñi€æYi(÷K¦‚Äñ—ŤÅå·aðâãÓ¾Tþq™iÔ‹ÙíßQáËÍ8 xV bÀ[·k{>¾y’€)¶ Ÿ 3=0„“ãØûxÄ# ÆÚ™DV׌õÒùÆ¿¯·‰üK Š«¸îx‘Í™Aa[¨ú8Œz_–“^-²ži*¶k[¿ëóÊÕ¹;­ñç³”Ÿhþ<™4³÷øs†`l€ý\3ON¡†3îÇÀ§R²G#mP-ãn¹ö€áJÜóMMîG×Àó,ÕBÞ‹Œ­)Ø£ÛÅŠì@ð·ŽæM{Ÿ‡ Õ’|uíÆŒJÜqš°Üp9Çp³ öäì‡!‚`><rœÁ£ôòFe;£àg›cÜXýüBb&üÁ +›ë¦¼›N +‹òb.Þd §ñç[›ÏìªÖýÛžtôõ%g§:x {8âyr³cæƒã­+ÃßuŽH?¯Z6…&Ë »ŠÃæX6ŸO#f!"¤ZÃY~½°ê•nÄx ÕãBhFÝn>“ΰ¨L¤å†þ™Q0Ž‰MVVÍ[];_Ĭ~àÿ•xœê5"Ë30ÒÄënÙ…>TßÀëÛÛíâ2×­ŠµÁ×Çntòjoæ…a~ä_øøñ'øFìGŠ\þ^0žªÍDÁ+b)¯²~ï²~«qi„æzþ6 ,1"úE¬Ã~\ß];@’/0›ý?W"ù¾Cuä:øõ¸:Û˜éªÌz{|3Ö±‘;ñ5]PÊÇÃ'«¿ÕƼEw5N¤kÎ0Íå·=%G‘¯0Æí9藺úe½¼xè)ƒp3 +%ÛÛácÌ©†ÛP5Rd| +Iäó ôN-ëXŠbŠBéÀ]0¥!ü^úý=¿gÃ>p;XŽÞ-¾Ï¯ˆ ~ˆF帟—h—¿Ã’©ëþG#Î;ò,‡qíȲ)MyýÍO09¹>ï#Î5öŽF+s¯1H×äiŽÝO#£€Ü™éß™b;¹"ßÛNI–æ´Û™Ãénbi®Ö?Çœ÷mÇ;:ý‘ƒmog×ÇYn=œÍ—î>u$ûyçm9êosS§1¹4ŸØs yÍ4æF%’ÞÏo9RÈ;Úü¾î–ÈŒª>¾ 8=R‡%|⦾<âõ€~ÎqkÌŸ?n`«0âsfí§™¯VŒè>¾ýHÁïÛòámë¶'6ýO ¶lƒÊr¼IC‚5Däž*ð|9éÀðãüGjßÙÌ4^ûkǼ.ŒÉcm8ë%¿«)>ž4ÕÒ;xÓ`¢¢=¬×‚Éð·Ø2Š:‹5དྷëüÄö ÛدúDw¿ÓÄ.g¡ó ·˜¾Ê{q¼FTÿL‚=Ã’iίaÎÒo/·;qÏ ÔxsEs¯8< sÀTsŒ±¿1¼{´æ7P¦üàoôs*MíÓ™üà{ó4S[öó<3éng‰¹ÏÍ +n9Æ×ý}¼‘ +iÌÊ·ÓÇ’a·m9* ZÜvÁp¡3ÅþS¬E¿]x¶Û µ¿SÄ.q&;ŽÖ¿ŒgWÎÙ‹%I†;pÎ~A§Á&˜Žò¿€·</§pxõ)¤Êw(×øpÎY!•°âÃd¡$7ÓÆê;• íà€Tµ !·ºlsVDL~/20"úp/ÇòÝVçz›rfWÌ?,vɯ³ŠCŠ†³)oË?ôƒN£ÓæÀi$sÊmþ´ïÀç©ÔÌ„“aíï í àAœ*Âi{ìü¸fy¥ˆ'Çóàc%jscØ÷ãVW!ê +ûÇÇXíWS•pøëÀñ¨e¦«X¢¹ à(=®}žÏ«ŠùèñŒ¶Å7œ–äÝþ€þϧœ©³Ý=3êÕéßýa¸}D^ãêâ‚=•‰•ÔƒªGå§ßÌS1s÷ü9®k)·‡ÝÆiæwcñ>'˜*bžÚ÷ý}¼lÄËìGþgïû¹ŠVo8R@kçH¿ÆÁtøž O…=>Ô[*‹X|8œ©ˆÕ^ýõæ:(ö1V&Ì-~cƒ š6"ÞèÔ׿ gD²’ä̱qïLDnúëÎxë6-=…ÀørLX'òˆ.ÿ¼>ž%±Z…šF+¥Íöñ›ªòþ<X¹¿%R²Ôv܇ŠÈ7m:{8Ë]ïwCðöñ¾¡t±ýmÈÒj,G~6ÎZ#a¥3ERãÇxÊëqn4HÂ=|•9:ûy*šŸ¯‹Ü›„´T·?½¯&VS0ÄÙ¦&¦Ç—Mx¬§®Ž+$&+ƒ·ƒ¿¡‰>wÐÛkðõæ\¦Œ›vàÕ?ôI +¶¾ß‡Ã€¶q’îßîâ&¾ ¤Ÿn½øÅ_!#^ç_¯‰ÚÊ‹¾îÃáýµuâ!̈+¦š~þ$s-VâT}Ü`Šˆ©¹æF§Ó˜Ù5çqDK[Ûɳá®# 9Ì´Ú 9èñ© :žM§Ìe(3J°Ûsõñÿ «5Ãèæy`aà>G¨Œ¯èä)n ¼;ó ¥WÛÌ20µýœ*n>?W0˜ŠƒÈµVøßúyÛo1¶šóÚwä&`Ç’ —xäˆ'Q•${&¢nçoÇÑÎ ¥ºÛ˜Šo:îç?8ŸÏHt¹ïÈ¥·o'°×ÙÎk QðçU`m§‡:‚§æ„òLLëÆlNO1»ò# ¹àœíPöç;YyÜ +[AËÛé¥RÇ°ooݯ<7)×ãÉK‹Òú}wü¹ßó2G÷óÑâ–ñûùËù‘·8¾'¼kãñ<ƒU6ðOÇŒ˜Í0¨R8çü'vóm,~®žµa¥ ~\çÉ0¨ë)ibm íü9ž°ˆâ°·0aW-ôqW€S–ÛìãüôPHíÆÌBŒµì4ã%DXëßµŠªñâ/7ѭΟUÔæ–{oÞI†;xÛãÉ ú1ÏùÎ& oõý™º|tæU6µ»s$m¯¨€ý¹Ì`.9`•Í†Hx{ðHÃ1ö¬„Ür.)Š<[¹à÷Ðf"Š;û8"fŒt¤û~³å¯}}œEcn…¼/¯¹žBÜk®¿ ž™¾k©à‹V”Û^zdíáÇ;v)8w~)èéš„kÞÜbÌUÍ$›oÛ’h“iUöxñ꼧&5dr-V²m/áÆjü°’pËz+ËBŽn4-~ÐM56‰ ÁSaq¨ñý|xÎU[ýÏ€—QjK; è8ç“´ñ5E;«~ÞwW+ ¿3ᘓãÌ];ó©&óºrOæXP•ç Tù|xw=áÿ犯۴±Äka¥¾îY¡ß_ñwúý¼:%B ÂAÚú|y9+5µ±><³6‘nýÿg®¤.ökö"ý¾³twcì7Ó®røq¥|–e:w:ðKÇ2â±k)µÎŸGÜã“êl£Ûü|8õ$"×><s&[òØé~&,(¨V:Xߊº¨‹@6›[Ç‹L›‰šÊUöÚÜpÆ2Í;(×Ùíàyšº ô`½6 \øþ|Cb55˜)*ìå½úRŒ¯§¬­qö°àçþ +G<ú‹‡¬ ’l,oßÇ€n~Âc€×Ó&fG¦f¿õàk›œaogrÚ=å¸öqó«HⱸÂF£ë˜ž?ŽäYx7º}t|÷OåÅ­OL³ùz“Ž’I(kci#’2$*GŒïE%—ÞŒøkñ=Ts“²ß@ý0T£áÆÊǹðöò–µúëÈï!MF¿³ý2Á+_çxCcÛ»ßpׂ¤tTíðã>+‘üË”wÇ¿~&k°©¨žÌ-kñÛ%P¶`¯†”¶Ào ën:È*)JÀÖ$ +-Ì{ÙŠñ³5â$µð6_¸„悔þŽ5Ö %"ÿw!ùb›¸¿°r øƒE{Xöä_˜z†¹7<Éçö^Gª_2öãuDBþ+ʺÜ[ÇáÆÔcÛêç*Ïô”=»}¸Ç\<ŽÜ…PåÄò _½~7·Ûöó¶ARÖðw¡£,·h¢×ëã,[¾÷:ü?QÉÜg89k[ÛÌXƒ˜o$`4ìËÉ3±OÑÆ:—Ü×äiZ眣væuŽýùÈÉôsŒ [·ÝËÈÈ•Nß ”˜¿º,~<Èq–_ïçc+­ÿ>xãZý­uçŸ#BØÛUŸ«˜eÌ›t¹ñäYñõ#ûx…ÏÉ0`{ëÂÛÖè|ÈÜ«…?Àñ»nøéÄ…%_”ÞËqG‡Ö†\sup#CÎEX¿qžU‘dµµíÅkPxÛx ¿Üx™®1·ñ<ĆaœË{öà˜G'çùñWj7ª‹énÜ°ˆ÷Åô÷ä V‡sìâ_Ãw¦œIâÔ>Q¹ïÛN6ù% Çns q¯8²o»˜ÈéÌO¦§˜žM¾<âj­Ï-e´ç5¨×žj€‡˜™Ãúr-A¿Ç‘ï~v}9•-ày&9/ÉQH9™vý|â^K¥;›·ÕÉq-µ'œÌºsœ.IïÇ|=÷1=¸«ÀæTÜÖà…”1®ÿÕÕB¢ Oa»ÙÀç>Á‰î;} +±@L§éçi›OL¦¢20:8)eœQ"ÀnqÄ2ŒÍ:¿¼?[ð|é.^zZEb>ȾœSæ–ÙOÌz[­þQûÆÝÿ³“ªžúqy÷žüàÓ‡:Ø~¶á¤ô•MT@øžœNc(¸…Çj +ßÛÄ.p¬3 ûø[€ŸP'»°»ý|³“†m|9 -Ò%kØ÷ÐqN¹!jTh5úùòi§î§¿1I‚ÉH;{oÈ×Kr<Ö·0=iŒiÛú9\VÌ.4áõôe!8==À>êû}œ³xÜ.–ŸÓÀÛ0Ó={jÃó<zm¦ÂÙ·Kñ1›ñ ÎÖïñöp9ÌØ»HXßOgüøæ õi߀¾víñàU›×æQ5,vã©·,»Ò—M×!tþ’+X´c¿Ä Ÿ¯ŽXÍGÖýø‰Í4 +ÇÆã±ñàAÔ,<Eµ×òÓïà;šð´¿¿ˆ:s4Ü•hb›ßP-ïAE FIË1Sô—/¼k°5,¥m Ö¶§QnýEÈ´8ŒÎÒB»î}ñpooh·Ë“Íù6¿ŽŸŸø¢½;"Öökùò¾îE”®¦üúk—†‡G¸{î¾c}-ýÜÉæib¬zmqúûy'ÍÅœ+‘cÇzÌ*“ëðãÿAzV­Ž5AÖ8Fônø^jˆ#qûõï¯%æqC—©6„¾·¿‡ ÑS\­"¤h'î׉ +Ì`ÄÆþ÷ÑȟΖ é¥ùÑo˜^Ezß_o;4±®¿Ç‘§ˆ_ÂßÈS”AÈó/»}/ñäJ‹ ã6!–×ððçí·‡ bð·îãCl$ ò<ªXq¶©€~uM!VâŸA<#ÛãÉ°ÄGo§“©b…øïIçÛŠ<öb>³Ç9+:}~îJ’±÷ð?Ö8¬˜¸'ÄÛ0 e·0ÉÜéýü0Ÿ‡Ë|¾aKÚþeø~º½Ž”à + · +Îybem;ãÀç‘n}€øq)ŒH³ÛðâC˜.‡õöqֈЛ߉”¨ó^÷±ð<•OVØö>|¤ÉÑ´;ì;÷ãn)…,€‘Æy(>\mÎ&"Ç[|yßÊ<™„â ¾Ûü8èîÍsÈ´¡Á6×2ái)··‘i²øj¥¸ÝùpÄôc)¤TÊ@ñµøï˜0±‘nÄߌ²`Ë#xñº¿-î÷­gôñ?ˆdð„é¿ŒXžTÚI·+pvCßêã}MÄ,G*›w×ëä7üÆÂüPIøò3¥9Áîòl){r|Ö¹:BØó.ëÞçœ%;9Œžþ<èÇýÜäP‘üyÔ(;{yÏË'Ùâ óm~DÇ!»€;qÇå!QãíälFmŠnxÅ+{O10¹ç8y%Pµ¹æ¶ÎuL;òîr½RÒØŸÖÜQ xÞÜéñí;ëánpþ°Î?ωñíìç˜~§˜$Ì ûò;æ?fþÎEŸ”8”ÍxŒóÀ«¨42WÄtúx[º­ƒµ+±ð7þîUx‡ËÌA6äÊ<Ät<“üäÉÌøv*ªHôâß'b·+ñâöš¹ +‘}=œoÆjUÇåÄå\Š¤ÛO§Œ˜¼ß£¿˜ÕAc¯xÿ¿!·=8·à·—Ð4cÚ9Ö-M±o«‰l`*“íâ?P ã¾áøóˆ6α#œØüyýáãÈóÜ-Ì2|9‰O‡=ælÓ‰Hç1)+̵þžEm9ÍAc̨Àf†`ÄžHJ‹s’ÈSáÌ°‘qÉQ1:Û™Ö{/;YMô?Éïåž9ÑO­¼xïG^b«Š¬µ˜œkÅÝ6<›$s…wž­ü8‡ÃpYsxŠ1v'¶œòo§+Ôy†ämÁ %zC8ÍTI*wn ö<3‰é.LŽòGqnê¡KR€-ˆköⲫ§Í•p­Å@¾€ø s{{–:é§åÓááÛëâ3'”Môüøfê¼?³Vm©óolj¸ðó)¿&Á‡² 2*´\ãY[1[xñ¾šwII=øñ…bÞKwÓØx Ãqa!ïÇ$¨WíÏ1$ÞÚsƒÛõ׆·Ò„‚*íâ_á~xÌÿèã[ÿ­ø„ǤØNÝ>'ˆ<áQ±n{Œ÷=™‡ßõpÍÒçùf¬ÓMÁC-âÊñ ÚØ_ïãĆ•ð×k0ˆßÙn5V` + Ôq®¯,«Hú8ÛS”Ùûáƪ¬™Q¸X_¶¼?~0ih°zpò¨¾špfÍÑ…k×O¸”>eBž÷#O¯ƒ~SÛM…)¶›;p5Î5gs{ëÀï0T²ßP/qÄ&ho=[áÀ{=‹Ó‰žä·êx £UÞ ÁÛO×_‡-AðÑaPÀ4Úƒøq˜$1;ø}üCæbUZö׿\üàÇhËwÏæê¨Üf˘îÀË®‡“:iÜ‘q»N7ÔÓÉU e?™ïÉøNc“ +y„ØqgK™!–¤Fì¤Ûêå¬d!GÓœ3á…ÒØ|L*uûø€ÎTci-ãðð·|íD‰r~ÿìà3ž°  ÛÆã_£€ÆqÃü§í­õâv¡Ìw?WV…±z¥{1üà…ŒQ3Ĉ¢Ê½ø¨ÃŸœ d]²ÜS²æßG~KŠ7m~¾<LjÃédð«ù4Û–ÔN›ÃÓì“€aQ¨µGv7&éMlj•šÿ,õ„1½Û‚[±öð+Ì™nrÌ@½´ì5³]’2E¼SÄ–!„¼Lt±'™²_‡Hdäg|ƒèì>³Á–Hq®8Ä°‹9Ööþ'tÇ[éo3`ùÂ\ÊÌ !h^ãîïÃÑœç…Qeå÷ÕäÉ$_·Ü7Ó¬Z›8„ê†nˆ›×^ßxæfVr7[ÙÄõV?¹ˆíÈâÍP-{k~q9†ZAÜ‘ÎÖÀ¾ó7}m¯9ŒÙ0¾eŠKûÜƸ²9ÐëÎ2bÇèæ9kVA¦§·"N‰*ž÷nŠ-íõžf­ˆÈžÞç‰zõòä+o£‘&ŸbØq¶°qñ牢=¬}œTäÛN…~)"Ãw|=¾ÎJ‚ŽÍ¥¯íÓŽØ]Ÿ%Ïb/S§ÀsÔ>ÁÎåmêuÓîtÿF®€ñ㥆Poo2JáMýœü>Z¬wx[3¿qÃ¥Õº’ÐmÏÏ…ã:ͱ›N÷øñ ŒApO³Aõñ-ŽÒÝ4â;0Æøg:ÁÛ‰úwÞ}ërdlY”/…¾óÁg4¡[µ¿>7ÖR‰/í'ÙÆJê/[˜!¦ ©û¹êµXâ$Û‰Z|LÒÖ_Âý¸µ¢¬Z˜ÃwøsdÊàûxÛO /Ç,:0µHGý~¾^Q)¦XžÞ<ë5aëôxÀi‰'¹'˜ž@#ÃÙÈ’Ó,¾‹W¤ËØÿŸªrxöÓÉüÃ’ö† !qŒHÉxÅUA%8íÈR ¼Â÷o£žîçQÅcÉtÐöäêe.y1ZÚv †¼ì‹s­Üí.nyÈûùÔ]ìy2’˜È4ÔqÒ(D {xxñŠTó'×^JŬ=œhÅ¥¸·Û¿8Ü©æXy$j-ÌsYøsÔ†ã—qC†4KÇðç#_g2&À_^rl¸úyËùI?W:8aQÛN`|(¯aãúý\Å&IÓœ }GÆ\io¦‡øp?ÏÙ\Å {8ZºÃ‚ÇëöëÂåž(š’v#Mxš¤ÅÌ/Ç8±cnüÍph7è!ðç PŽF“O¯œUïÛNsFó~Il=ŸdVæu Úg2‡#¿$G5†¼æZöÇ™"ð'’U¯§'Ò6ËM§‘ŸèíÇÌZÓõûø¯‡Ùñã&7]æIðöñQéï, F±§"æö†£ åСTìáèöDŠ cw“kéÃEO–)ñ 8 ‚¾ÁÀG©ý(†ŽF2o–çÛÉõ5+åÛ¹øñ3BckøqžF¹¿$åœ7ù® ªo´jxñÔ¼…U•±¦Õ™§Ä\bÊ CR‹X _Ûíæjh­sü8é†Uü¸:ÚütJŸÑu|àíkó*ÈöâÿWýA¤ÜÈÃK5ù&ìˆ\wæ)ç/rNœ;†ßOѬ\&ÞÛøðtêä„“}ÿøg ³M§´ÿO8ÐHÔ‘kžÇˆ¬Á/–„øq˜d½ïp;ð,Î3–˜ü8ÉLÖã¾ 02}ºð@ ÂBÛ·#I™ßÇ¿~D«¡#óä +¨}ŸgŽœjÇÉŠ;|8ƒym»Øx¨Éø¡’-¤~|q«˜@íÜq¾-\:RÉúTúxhz jHÀú}¿­¹'9R­ÚçÉÉ(öêN¼9+ôÿG"²k¯oíæqN¾ßáÎIJ Ðq·2a±¼daÓˆLK/¤ä’-ÄÎ?–Ö0mn#1<0ÆHŽvËþ|åk÷Óœ¶˜í§:ÃœSSý<‘ML$:vý¼wÃé<¡z¾A +xãÄÝ=I–bOÇNMÜߌ؜»ÛXkέ~g¦¿$X[˜*ņ¼îœiËìƒ- O%Ç–<̹xdt(°æÙmt6'œ[.¨ Û˜¥À•ûìäs€ƒ¨Âp;é···‘§À€ðâ+¨¹hy[ÃèáZëf!$[Ã…WªtC¿¹e)!äŠJò¾Þf5l÷·òö>ÔÆ×øq]ƒæ›X_™ë³)™®n7>8×:ý<î\Éq}9˘tûùܹdW­í{ò€ü…Gkj8!e:ß-v“Û™³5^õï÷p7ÌUD&êç`oßœ5<弑np—¿}9ýîb’Cáíç01±ç ×æAqÎOsôë{ò<Ë´\wäj™=ß ÌÆüâºòDZkíä„RÚs<í<ÊÇ[|9Ò|y”=»vï̱ýù-H<ͱþp¢rÂÞsÂi ®;ñEMI壿%ÉW±xÉŠâ$ÞÇ[ê8/zY©Y£Õc¸__o ‡Ni¥‹4íà ӂ±:jÃdž['D*h—ÙýœMõ+ÃUR¦À߀ߨ¼¼”4ŠÒÚý_ÛÂ…<¯ôÛö;eáÀã9O}ÄðÎuÙ¬}£‰—óÇŽ´Ø ÉKaÎÚ-Ú‡:1¨sì£_o³õˆ—Ôx|8×RUIððä'¨0›cÏGŠºþ·äÚ|sn—áÆôo‰ŠÌ22×ÔëÃŽ/ú óÍŸ¯ãÀ÷7M­þ 6ÒÞ<qù79äL)nö¿ÓÅ–þè¸ïÇ´}ëÛÎ.ÛŽ½¹ÀáÎËîç$bºH¦ª’9¶âݸx}4Ô4˜D߸>>Î.sSÄ{-ùŽ#j¶!ïr82ÐašØûœ +óDŠ ÛÛúž s;ûoyŽcaÀ¨Ê#…ˆ¿Ð>3ß„öDþ_„UâL¦ó¹³Ü)°·Ýà Ÿªýöb~=¿g\qüÃsØû~F¤4”zøÿGV §€âC?117ñäì&¡¢[·ýéõR3¦ A"“ó…20ì$þC–×ÕÚÏ–w\jÓÀZÇ€®d“Þ¸ðßÀï61†Cìñ¶¼ sä-sú›ðÎPXüo~!¦Ã›¨Ùm<~þ*òÍÒ³0·¸6Ç\^ŸÏ…÷f/Ìõ”U·b?QÆŒ[/¡¹ãN2Ï@Ðø|mÃø[d›zÕ‡Îè0ÚJÚîöÚé“}!çÞOQõ¢º²V¾íEňUGÖ-ÂÙáÑ6[ØÚ××^#36’.Õ¾£fyÃü¯t÷øOŒ×ú6¹;ªL4S€-t)õžÍùŸãÇé΄[¿8*\Ü{9ÂEû¤}wã&?ƒ+ Ê/g¸Žcb,~¾6L +ë~ÞÍxãÊ&˜ßKûXõ*Øvâ?0aÀ¡þÞù¢”F§é×mKLÆþ{9ÉnGÙA°Ôs"=œâTxs$4å¸ë‡aá í¯Ç“Ú;i{|xÛI¶ñâ{ ŽÒL¨uŒqŽ©÷1<ÀÄ›sË¡æxOnLDÞÓ¯0UD¥n4ö}üõ,w[ߛDž|9œa{ndL3á̃ µ¯¥¹Àa„x}äØe¿w‘ß Ô‹}\ŽØfžÎ`“ ÛáÈÕt‰N¦ÿWî¦ÔF°½ +¿ZŠHMÏ{þ¿— +OYeTv·‰ßt‡éæHùÊW=»s…=cBÜv Æn;ñΗ2þ<Ê\É¥Ï$At±ñäêjŵñ⾆¡ᮜezð%¿&Òc+€ßÃ’ëñqP–ï~Öâ71Gsý`ª¦ üyÁRãž±Æín`qÌdn=¾Žqòù•#ó"°QÏyÁ0ÔKÈÓH½ù¢@o~Dr ç(m~JˆÉ°-¾6ös#:Ì[†§óç5=2Æ»$ÁÚÜ• +éìæU÷5äê+Å>LB^ÚiÇy§DËq·¯XÍÁðãe]É¿ßÁÓN>pÌ[ËcîH{û,C Ù?ùäj@ÂoìáÈ]¢€­Þàžü1]>ÈGF. }šò¨jÖ½¯ÂõêΛäÛhÝãÂKœ阛w?Pâ3n Yò¤oùpÌÒÝÈøߌP[“!Ÿo×ìä…{ßš•:Žc @y†W¸þn«,þ{yX­Ì?Ë·ÞýÏ;8mÇnF¨ #ÛÃmèŽR¸r\Û^|eÏÊe¸ær< ³R˜‹h{wïßÀïPg¾ë‘qÀ‡žÎonüá…ÈŽÂÿ$ /p8ú„5­ncd+÷s‹·ë¯9Çìç%:Økýüçæ{ÂÞ$^ÿO¦I÷aP(ÿþN¡†ãíâ:•·â°öчññàÉŒIåa @_ÛÀ—1>ûÞÇ^#±ˆ &Äé§ÕÄ6j_,5ôðü¿.ÝJŸ|mo?_,;ÑFI§ÔÊWixUˆ"Ú¶§’óíEå!N§æ7#(?² …>Îî`¡ÓÛ€Îr«ÜÌ<8âD×L«ñ·˜-§¦ nw‰?“$È2>¢ütâ ßû;pzü7°3uÇ/¨]˲Î~8$×_,[«‘ÉTÎW°&þ,É£éÄoi=‡·¿Ì혭a§·ãØpÎkwXüx€LÃKGPbvÍÚúõñ]—äY¡ñ=‡d„I4vÖÚßêæv]ïì#Ùß|ªÏq¦¿—qO¨û¸j * Á˜êÈ ¦M +›<Ú½ä{uòGnýgq6à߯¶ÖàŠÒ¬²7»¶×Òúƒ}>›øñ'šà’À[¾¿U¸õ +S{Úþ>Î9äì,o¿¿ؾ|¨‰¬#¸ö†þÍ-Î}`Ĩô(¯ñ$ßïóã®ÖJsþU;÷°Ü?ìãÅQ°Ê¶eRÝ€:[ê#PãÐW)QnÝþŸ¨ò+†G=ÛNÚkÄæ%‚¨»ñ–· +huãrüÆ׊µô ñïÏ‘V*°ðÞñös-~[J´ßÜ¢ÚÜqžZyð涪oÉøx®†t„ÛØ ¿µ¸?g/NY³"QÃY, $Ǹ2øÀx‡ž!¬À«{XóCsk›{9Ä›‹_êäI^žï·n×ã]~=L‡¾ƒÙÆ:üÌÆþYÓïãUv%$‹b×ökÆj·ÜßFv¿¸Vkª“jÝb.¼.Eío~qJs³úy+ˆØ+Œ‚Ýîtçs1{[¿$ÒF_B>ò r¼Ó…Pl9‹l”Ïôxókˆî©fí}IíËYÉ´Ë„ápB€]cïÕõŽ½bFaaáÀ[1PÈ•ïâ÷q=[H·ÓÄŽk‹ËÿÑÀÏ7¯”š‹Ÿ‡ Ô¡¾ÿ»‰«„úù/ŸÊ˜®¼0iÑéî ·ÃèçR8"ú›÷ä8PÔ·ck÷æjô0¥¸›Åc „Ÿ¿ˆìF!¼ó -à7⇠Ä<Øí«ÔZäéðæJI r/ÒçÃqéÍKR&š0áÅvm¥f°{|tâKƒÉúÃøq9‰D=ÏÄ—r|>:rJH +Øûtç(& Æ\Í[Ü}|IÕâ^é¸Å‹U~%±©Në{xå”(<é”Û‹LOùzk‘£vàw˜pñq“nÖúy&' ,9˜E~x M<9“[ ~s'w~r +Xßîã%…È·ÁòżyŠi5·ÃõÓxÅP{8ˆsôó&!%ž3Ê÷<áq~x(<“ žIS¥ü4çËïÏQ·› 8¯a{ó—òão‡8´BcmǸú9Ò+loÉ1PïÓ¿:“$b“'ÃãÈÕ˜jÓ‹Ÿoy¿ZÃëà'Õ,䨎IúxWzÉ›Ä÷±öÛ…oªØ×ÍÊÖú8wnHŒ\énw2ÜáÈ®6÷çpT˜°ªß;Ç ÛÎrÔ…ù|XÆÀö<}Ë¹Ñ >S§œ1,U#÷”ëÆÇÍ_¥üx£ÇD«ß¿;ª+R/È5TAÇnC–a°ä9VǶ¹‚F¹æ+uç¬X|9À=ΗÐó¢öçŒöþÅ%H=¹†Iˆíôò9sß‘ªX‘Èí©ç8Ï%ÀÃ’ÑÂóŽð¾'êçjÄéñæH–úžI‰Aøò@kó$o´ŽdV ‹'ÐIæXxÿo\•Íe/mm¡ä,ㄶïx^ߨâ3®ó nóOÝÁãÓK%ÇgG½myfž“²-NL±È¾b‹XøŽÞ›ä¸*ãB4>Â8+áytRÀ}Þ%³F~Ü'¾¸‰†­ãaü8I³p {w><3t»oôþ¿WΠVb ·,Ã\­)úož½c:ý<È1@5Ïvqqôó³‰^Ù)ëwy#ÏVúùŽUW×¹ðæ?–¿8Q~ƒìçÔ…#ÑM1s­¿¿†{Ñ\¾]"4kx_ãcÃ]T|Ê -Û·÷ñ˜`Ü/ñïüxçË)<ú€ nøp ÇØï#ãÏaјÔqC†ÖÉ_«ŽÐc›ß·û¹* d7ÖÜÉóêßYӜҲ'·íç¥`ÃOÔóŠÎ¶ö¯ÔIáâô¿3M…Ân4QüŒÑw&÷øK+b±n÷ú8-æöaöû¿Ãf3)”Z׿~&qOpñÓÞ{Và\ |xbøyÇqJz_´&ž5¶Ÿ¼Ãèå¥e-0 ±Ok(E…¸€Í²‰ð׈\mn·øð?ͤ Ï{û{p$Ïõìtðà%ê‚;_õ?%0Zc[ˆ øðD EÀr>!Ff¦v¿o«ˆè#Þö:kÇÌ2Ýü8j? ×õeÒÔØuSÚÚݶ/íááê‹|Ã9·Ë€Îi©*M‰ñø_ˆ\Å)™‰ \x_ök_и ÷·<óh´ÜöñàÔ +c-Fë÷¿ñã÷Kz’´V¥«6=•þ ±5åVâÜç!q{^ÿÙ¢ŒHO·¸öób€×éÛ· 7áqî6eÜÔ|I5f÷ðíÁc«u·r¤ßB<ç{ð ÅØ¡6;®=Ÿ·¾œIf 'Cð×òðóóùl}âÃ÷‰ñ×·ÑÀ[:Çæóàw‹8§“áìøò%$±WJ±…;Ü…ÚI°×éäê¬z ¤‰Ð«Â›Ü4±¸6¹ör41Ä×óË©d¾â<>IäZˆ«iJ°ÆJ,€WF&ݾŽo1jï:Sì5W§š·:Øq1ŒQ›“ƶ‹]96‚vNÜ•,»˜xü9Îœ1‘|nGñáÍôÉC¾‘6ÜZǵø¿Í¸~Æ: |8ƒÇàò´ÛSßöñ‰ ’@¶¿]Ï·Œõ—ÃéþÎrÞA¿ntó°#]8šÌÕŒ7}ÜGUbgo¿èã}d—'«œÍ=®}œ\ôû _0_ÃÇ‹ÑèX™Š›uÚÜHN kÞüçÀiÉÑtÓéæEs‹ûžE˜ÿprÑÌ-.œÃ$ç^cj›sUÛ4Ì{öç%RÚóÝ…íáÈõðäGÐó”g’»@·2‡ç(ýîç™áÌú9&1o§œÄª¾=¹“͸ï̈ý½¼æ$±×îã¾ZÃÛªEÐ4á¨é_Oj;I÷}Ÿ0uÛ$>›Ìµ»ëõp»ÔÈZCsÛNe¡ƒÎ•Gµ€ûÏ,cÐGGãÄV&ÚH* ú¹f½ èôP¶^ÖïÃ’zl´è¤ X_‚YP$Ȭє‰”ÙxFýw`IM<Ì|6o‘U›Ã_ãÀ·9Ìt·o¿€·QjÄDë÷pÌ ÞßO~1üùsqÌ‘Ô1Óœ„ã§9$Å~®eŠµ“’¡ÄXkûy.*ñndó½œì¡-sáÎ2(?O1m÷¬8b}V„ŽÝí!ú¸n|ÅÕû8‰Ì'Üb4þÎyåÉøÚÿlû³5­ý£ÇV+L&Žúó% R<~Gi)¬8UÓ €9…HŽœä+ä]ñÔŸ9 l©æDÌÚ›sÑf?|\þðáòô—Tj0˜?â#øpXÍqmÄ*T1h™Oï_éûø.W~›< 1Q©·èâw ±ôžùúR\/Ûò¿]* þ°gÜ*b©Iÿë÷rÏs .„ăK(ûínY’¤ÈÄ‚¸Á*°ð=Î2‰—ûx õ3Ûã{Ôp ε¥Ë\Üÿo1tÎ…+jKµ­ØpBjXjàøò5 +ÓÄT»ãÆ?êÁdÞ9ÑѼ>é‡7ðkÁ<ÌïUéþ†Ç>Ã,ßÐœ6J+#0û;{x f¨ÚVc`-¥¾WXçºXûob|xÏryQ0¿¶ãÙog¼õ&·&×àC‚ÊüI”ôàñ„Îø;ÅJ‡Q +$ø•×^M|hBömäÇŸŸ +¦-½†ý¾®6`O\E‚Me{ßáïøWÖ¦!‡æ‰/þë†-ÿè]aý¼ú›Q²’< ú|8âõgq «ˆÜÇX5ÅÁúµøøp+Ï·†½¬míïÀw7DIkk§\À–r{q³o+§`;JŸò¸âèt°Q×™¢'}H>b’6ÙvªØ{~¾{Ë‹F~bIX + ÷º°@#ØlAMIî =øך°¨Þ½’=D*‘þª¨’¹$f7 \cý'çËØž U¶ïdÒâàÚÝ´}npЛ[ÙÉGz‹ûoß’icv¶ù*–€ÌnF¼ŸË_Nq0¢ s¤Ä©èä$ê}¾Î2æ|dÕß^ÈœN]Iá»ü2°HáˆÊÃí1:«‡¯$nÇóà]ÕÚ‘3œ 1É6>6< óCôñ‚²üッ Ö¹·\½;˜‡{qI‚Ó«¥þ¿ëôr.f–ÃÀ}MMMs¯#=>Ûéõû8ÏŒQ\qé½þf†‡hÓ“)0òÇÇ“è0¿Ó¥¯{Ž?K¸p4ÑžãNÜóö#Ü~>Þ9Š-ä€.5âV¾5ÖýÇ*ã täFÇ¡ðñæ9*v(#óJfy‰$xq$°1<ˆ±‰môñ‚#æM®–<zoA½­ß¿ëôñã7“»o³òâ+¢߈ì *IgŽñ·Ç’éê k}Ü’^Ä_žÜd6tð»xí8…4þþu3‹\G14… »ŸF·›ñ··m8ßHãeƼ‰ˆË¼ò-ùÕ¹Í;rD*^HM̧ž¬cç ;A¯6’l¿aÛëäyð3} ×`^Á¯">ÍØkÎQàVî9"p'Áƒg0c4ž"}¼ú§Viî/—×,ëòlþ÷·„ÿ«ÝJe ïßëá{ÎyæLBCf'èÁÀ¯9Ïe:øý_WN¤T’Äg<ÃTZB0ÐÓ uã”X~š÷øs™¢°íÏBGcÌoFTéááÎ"'Nf†B&ÂûÇ~HIXs„έ~cóý}¸6zHÄü¹ÝIýïâŽ1ªÃì5÷Iâ'5KµM¼OÌÞª÷ú>ë½@ˆ(m?oÌIUd'îç¨Oo;R¨°<æ`¹¿8É^D¨qúù‰é.{sØz¸ïÈsPÀ|Gñåƒú/¤qƒC¯î¯~݇n ÙÁDk§ÕÀ›1Wùñ°6÷Çj*ÿ? ï¦ß¬éÄ!þVÿ—åÆÒÌÑ‘~¹ô’çÀñ§Ókº¥…©ì$‘­ÿßÓËê »!EÐü 1×S§s¯¹ŠP[éúŸà8fy×_o€àÕ +Õ5Ž–=øfºï2Bº^üËE,¸T+°XÛ^ýÏ2Ç›+ nì}œw‡’² ^àýóÁ3âîq©dŒØ`>Éìãœ*)©Ÿi;ì#¸¿p§Ôº*“À8ïßÙãÇæH*Få=ûpø~Tf‹&f©È-¿¡‰MÁû4’½¯ðßùéÁS©Ž$žM  Öëoïàc‹ÈMdz]~JfYAKö=ˆ&ÿwﵤk _°þÎÙµ7n=¸æXìÄŽ2áh?˜A}?JšŸøâ«1OdÅÀé2º¢©SmKêí Ÿ£Æ玞sVb²Ü°±P Ŷûº_ÚÄñŽiDµr¿ƒ9í콿gœ©‚|¾…”‚Ã{ií:õkÇ'¥§Žç`;u> Ÿ¯ÿQ¥Ã媊•Jàßh¿Úðð=ŽœËþcŠ¯™MSætWQü?£˜ªz\'éáÚÝ®»ÔµMc7¨ÃQ^åµ·i·ÃM.'æ ù96ʬ‡Øà¯2ÇFöX’{X÷áƒ>–«¢Þ^&mʧÀ“¨økÛ†±ðňßÆv2Ìl§9˜¥"Ú÷ñDbÕ·k~ÏÃW/1ÁÕˆî?gÝÃ…)£¥·Ãèà?Õ‰-ω?WLUþeïohâkAvDæit$_ÿÜÞCGq§ìÀ?HÀß¿e»óžþ.ðšˆü‹Ž8åLÆ$“a6<›ŠRß_o‡Ç•k·Ò9 +¡q¯€Jº}üKbQì˜[“iaXø}q¤§UaË“¨"ƒhÕ÷ðßzXÄ‚ÑÆI½í÷8&u3j©ÓÃK|xãgsu=øœ­ŽÇ^2âQØxwOšMÇÛáý®q’M£^a‘‰Ó˜\ß¿1´{¯ÎöáÎÊ(ýóF=¹Å½ÓÎr{}ÜÅ0$iȲŽqäˆEù"ÝÛ’T9Íyë\sš–õæE4ç8—q¹æT·o ¾65JSV7þ²žštµ©(…‡ÕÀw×nKò0cî¿ÜyS=A£þ_ŒL¿ë_™úsÌãT‹~ò¥þþ^áÙƒ‘ƒOݲN‘áÊ®­Á—¦ Ž:TÓìKñ!ž#ÔìÖð<«ŸÄûÒ ¶º[•Ûšêw9=ÇÝÀ·;Î@#·ˆ¿£¾íÂýÇ m Éí×NfÃ#¶‡Ö¿íæe‰N§î祋Mä*”Øy¸fösšÌ.;rd6Sìúyœ¨ør;Øs­ºx(zdÄ.&Ëá߇ƒ*Ôyô {öq'œŽåÖÚG¬Ó(Üomxg¦ó¬tàIŒÊVOg9ák~þÞ>Ñ‹ ö¾ºòP^c•»‘&Œ9¹ø}|Æè-nþÞpe¾¾·14{ØÚƒùòÁ=H£€¦Á»‚Þ~Œ*_·³îàÔãM(6Ô5dž¼²<1 )>+mxÇŒ$ ýßÂüOcàydŸË}@ÌÖ¯ú4¥ù®¨ÑžûUÛ·ÂÜ>}C˜† +}¸b‡k’~³ˆ¬ÏR +° +óOË«X|xõ;·öpžõõª}×·ÑÅ4ô—EÐr/È)mäÚt0QáÇHé¿F×·íã=eGòF,¯ŠžX?क़$Ì/3Ô1or²ž3ìÿ#ÛÁ¯9Ö¬Ò9½ÅÉàeŽN±ƒa÷OøÔ­9¹í¨#¿<øÄ!#ÚmãÀW? !ïÀ_:í–RØzi|U$caß^ÆÀñòjÃ5Acã¯ßÆʤZÉvøxߌÓåØ ¯c¨@ÚmãmGTøh*>®Xoá+B”}Ç_¶üÅmߥ¾>Þ,sÔ˜‹ßA¯}8c6m/§°ið:}@ôå–²–^žž’I m=;0©.ÅYãMÖòÁ °•·ø€Ö÷án®Æâ|=j€ p û0¿…Èø{}¾ ¸b„JãÞ– Ø’I °‹}ウ\«héÁf¿Ä>ñÛŠ¯Ë´”+KUÓ˜+¬¿Hã<õ—z‹i¯áÆ JnNs‚°Éß“cŒ9µü|9—åZÖ¶„ñ£8FÑF±®¥¿_§‘?I‡ÀÃöqšñ}X^çï¿(iÞ¥îuö_–gøt`ÍI€nËßê2xÜ¿-½ü}¼º·ˆî$ð½¸âSvµíÛÄî7QîÚÇÈLÇP£ˆ,ÛS²2õàgŽ½Ü›q•œ’?g$ÓßgŠü ÓêG!à¬â¼…ÖÇËQÔ¡¶¼‰T¤Úçîïôñž¸”ž3WÁî›øq=YJXÛ¿k`(÷íùqŸ[ïâ| ÉÜü9‡§Ü¾ßgòRŸ™ñ#ƒŸNR“_Ìy´¢‹'¢?3%íÛœ³DB*B_Ä~ÎX·ée<åI‚´ÚžÃÙÇŒ; ¨$|oÇ-«Üb–¨Üý|3ß¿‡#ÔU*ý=¹ZËéðæ!#¡æ:ôܶŒc¹ñã}[o{ò9‡;AáÌán/ÌÔþïí—*>aªQ³èçXw‰Ÿ6æl4¶žÁ&Íánc—/áÌg.ÜóËÙÌ°å²¼ÍíãqÀÀ‰¼O W_°ƒ¹ÀžVw­šiišr_{¶ž!¬í+¶î÷ãlÇ^aos'~H¯ÌŠl9ŠO8*ëÉ4ovãÍiÉNšr5R4ä*…ñïȯ¨ösº|9‚AÎóÓhdÛÛŽ±I¥¹étæ)ÇÇœnä±[œ{éÏqÛ˜Ëo8I×ïçAn9Š¢Öä) ~yG$——?ÙÎhIïÛ™#R£½ù’ èæ@»EÏ9±ïÏ)¿~JÃàjÉ•vey–ëø{ôi(°HI]nƒà8}²®Hò)”û£ò.~½2°Ÿ q©°=¾ŽS/]ðïåÙ‚EïØmÈ]&E“0Ò)×ô«üy{‡-è`¸µÀåt¢D£èไ¥‚ñÖ¡w©@ub¬RPµûXÿT'â_š|ü`ÆÆçê#ª¥}í<>ùÎ[©¶¼së—Ø/À·€´‡ÙÎTjW¶œŸ$üÈI>ìÎHט'»ètäY©Ø<9Mñ}\òbE~×3œbþÍ9ÀbÅÏ2-}ô½½¶âç xЧÇ^×·–@®Щ+ß^ÜeÎrÝK¥øæÂu×_aöp,ζeo£NØáÝ1··’0U$xéǺ`EíáÉïu!Ýȳ¨ ¯Ôy…κiÎ ç]íæس}|?þ‰ê…^O´‹íQúÿGþªTyQê-¥¸[º•‰\Ÿ€°ý~Ž=ÌÌp¨ÕŽ [¾ºxñûS\ÛüxœÇèÚÇ·>¡DÊZ×Ðò_¡êo˜êlVÒлŽ pñçæÛ Ý¥‡çÀã»v׈¬Ì»¼|x u¸,L{{p½õ+mÇ_xƒËÔ¯4í!öýüzš©Á×NwOPV2|Mûó”5¸úù&›Ô‚u¿±öóísßørÀ¿äLÓº×Ó½ípoñÓƒ^p˜4Î ìIðâXÙtö#qÙ…\éãñà]ŸëVe ¶ÔÝG©ÜŒA¿m{pÌò™f< 3b ®>·öð1Í °žàž&ðõ§jøB´™THŠv³.á¸{.ã¦EOSU4evª(·#mšË{w#·<¢Lé^ôm*Cå$òÈò.šV"ÝÉ `·#žèµcÐãÔ5JêyE@ãXÆëxýºóêJ¼:Z27yªâhžFR$Y½îÌÖ6úoÀ+8ÌpÌ CÝBˆÔû4Ú ø•¥„Ò-2[_}¬Aöô_^ +QÞ(@›÷øÛñÈJxéqqßè·ðæu¤+blM‹ ½š[™ +HÚ¨ÕZàŸ¡¼~¾>t›§µ½PÍ4L$^¦t ¬­ö7Ç@Goo-—À©²vO‡@%4a,;\ ~ãÄF-g~ß8ÕRʉì·¾¬º‘{ =œ óîºæÿ½E‡ñ¾¢Ü/}B‹HIx™¨“ˊÿn<åÓòP)ïÉß×ô¦m¦ä 4׎X_P)k͉·ÃèúmÇt¬†½{‚£qJ1"Xv·o ñ=K‰I…Kµ¯¶ýýƒ1â¨ÈH û9;Ç<Æѯ+s£ÝÔëù{xŠÍyÆ¢:•-­Ž—ã&%žå« }NO4•Ò’0|-˜­Ç{rÐý`æ—.EÎÕ½þû8.gYE<,A·ºmáÂóŸñ¬”ÛÂü±Í!ã&/×]Eµâ2€/îàq%÷€@ãVîl/à8ÆË®Ÿ9©15Ç{qW€Ë+S}#™r}3 +¢{ûßWÕ2îoü9†OÒ[ïãV#Fm~÷ðûøËŠöøq=UJdxò}@5ö}üãXÛ;ý]¹«övw·†ŸÒ«²ÒF{‹~wàÙœª6Ûþ§öñˆÅnúñŠìÖÓŒ˜”:|x͉ÓyJM¾S«r¨vßµ©¼ÄyåµùœÆœÄæÚøób3Ó½ÏhÀNk5ù{ŽAŸCÛÇ‘¥·nE›Þ<Äþï8\s«Û’hä·¡ ¯;•­Ì[‚ý<ð~rùØçç9Ø^x}¼‰W¢ëÈw<–‡NÜͱ:s:/~üÍgï;Ó^tM¼yË·ÑÇœ…Hq j’+ZxÇüœ9~Þˆ:zàÞèÕAFœ6ØNXò`x_…›×YùŒ>M4×ør‘ý\`g +Ì¥¯ êx’èÌfLÉF-þê½þž_á÷¨!ø¨ñå‡ô®ÞR‘ðృêŽÌ»—?¨\HQaìAð<¥/_™¥ñ<Õ,{´QúþZð¦æšíÛ­} ¸æÊ >Çîà;žHó{><«bCo:¤:ûoÇzhA¹œÒ,ƒOmÏ1O@væ ¢Ûôs„táü9Õ^h5öߌõØa½¸Û4/ ÓœQÜòJîïÞÜVôRyŽÝÉLJÿ¥Ó5EwñPmõru$¯‰àQœ¤÷»9Þ}¡¸ânZcíü¸ëƒ P·ŽJá~:ýä²ãk{9˜1?¯žjq)<Àô××NašÏ‘ü«‘Ãåè~F\& ö}úpTêÖ døÛ¾¿G WSªDJuý¼{ô­˜ 4E¾Ë›_ãÁŸ¦=ψ¹â[R‰¸ÓòàCÔR oÏ^8ú O3©w>7æxu³ìž\Ä~¾ø°1í~ÜAg Y]‰?GÕÀ7«5^\FÆßÇ…¿©ÛÜ€t<Ë”hRšŸÞŸHÄ(Rcî ÉÖûþþs(··ÝÌ,>ñïÈJ_SãÛ–ø#DÐeLÓ­º¢•Ô÷½Ñ‡ìàå›0ÐÒÚØ“ßKüx‚ƨ°DãžT%¤ªñ·œÿVÕrÉ!P Gðº‰'—ºÇ·à9˜jƒË§´óEMM+Ýïôo!ÖC5d»"‚nO€äzÌèØØêXÞöäY³œX»]–G‰â‹-f¶”ˆæ¶¾'–9ø`Í¿¡ø–ÒY?¬•7Ï÷ÝDtÖÖ6ø_“óÔjf`< ¶œ1˜C³XÚàëìðâCdì öñšè˜_赸æÈH‘¾›iðài›—i7ïÄœhu¶áLjéÞ¾sass}O9ÐásÍYº"åVFÛ¯‡üK·ºNöÅU-ª«wÓ°øpF‘Ö¼ëð=¸uFOz†—’æÄkßá~3ùŒ\)F€}g_§‚6X. œRÓ›‹v>ß {/É1³©{^Æý¶ÜËˆÕ û¯bÓúŽ‹¦éŒcÕxÔëqJ¾\dÜj5>Ò>ž<×'̾㦽Éâ+›i ö×·ÓÛ‰ºæÛÄn=T žÜs½Z…&Þ¿·€–}‘™ÎºYéAßžFÖöãÎ[ÂçÍSyqßË_´{qmO“hé“bÆ µ‰?Ÿ1¾›ÓÌ}Ë¡ö¯¥ÉøÆ.ŽÌ>7ç,7¨3P°†¡H#Mn9>¼Òã±nB5×O‡^²«6$”?ÃŽ˜bGÔ›qM‡É+k&ñŠEª¬akØ[ÛÆú¼˜d&ÃR=œ—†äÁ ®;q÷ÁšTø‘}><²ÿD8p- ú¬=SÅV$e]{ð ÍQ­Añ:÷â'„ñðíÄæ`qo¿Qúû8†Ì*eµí¯¬ÝQy½í¥þŽ"qÉ {8Ê®I×NcŠm®.|xªÁ±¦Ã·€ãÆNV Y»wöqÒzôSý'˜ÛS¥üyÔµ+:|;_éãf!Gç8ÓQ†•:sšEä(îmáÌUIæ)n4Tal[à-ÃUé~‘©i£_íúx/æ ÷16·‡Ç‰ŠåÝqÜx5ÖFoúûxÉ[¼|5íÆLZ>ýûÛáÄž6ºÿÄÕb¾¤rŹ…‡3UBtïÄÞf’Þ˜a—pPÞ:ñM‡Ô\Üžý¹>\cÉ[ƹ§=Úÿ_3DPè?SÎH@ú><‰,ÖŸBžpý¹j‚Ús ÒÛ·1Üð÷ï|9š-~uVÛ19Á{q¹8þÎsm¯9{s<·&~Þp¨`TáÈôjžn(¶^eŽ;ó2€ƒ.R£ìØ{8d!ËÌÜ -ÂÕë+½U‚ÚëððåzþÊòa8ér¶±?øô;4R{|À@ý~—Çè”ÇEÅAíË éj~~ÁW ]IÚ8ú¨©áÎoou¿åzÓ¬fú«x[·Žž<-Ë–=ü?> ³,›Pž¹àíÀö¥÷Iù[œé”Û¿ Ü ùrLr¯‡2ùª¾‰Pê><Ž*ÕǙڹ-ôr[$ÞÔy›‰6¿ôhx +çI<ÒúûxcÔòÖN©¼IN ù.Œ·†¤[líï1öñ訤MÌ.O·™°Ì-ªÌqsà=Ÿw%TP¾šo¹®ŽŽ@Á•KÄž$k2v%@»¢M£ü>6æ¡’Õ càxňS5$„ÄM½ŸÝÏay²£ kôñû Íú– \ñÚ‹6Ä{Úý¹<ãвÚãèçT¸ŠÕT"ß»-ü|Fœ³¿GTæ‡)¯`?.Cê†$Í;_Ú{þÇv9U¾àž#ñ‰X“ì––â_”8#óâ:La„ýÿÀŸ00v6íðˆÜl~×ã8kÞǘÖEóuâÛ*Q­|vA¥õãÆ%*`énÆÜMâ9ŒžÇèäDÇŒ¦ý¹6Ÿ0/‰äÊ|~9|y6)¡©¸ïÎÍÊ47¿#Tᬋq÷sÊlEÉ<2~æU§KiìíÁC;ØžäÄÖ ¶7ïn6Õøÿ3â,þÒ8È¡Ûoˆ¿øüw].5#Ûâx“¨¶óñæDuïÌñ­Óèâ'=Ö«9¿ð;§Ò¼S‹o:lP?Žœ‹.+r5Ó“hq3NÖæYª7wûù¢R××NEy4iÈÓ9öwæ$ý¹Ôd;s4qëÉ( Ôr5tÀxËZû#8næHÛ™±æxlH䔹±'Ç^zE²G£_zà\sq¡Jo̱@tæe¦½¹ž:b9**¼ìУ|©µ¹†Z+Ž5cn=vÊI*I§{ÿW§ª~™ bÛ[~¾Ww_2jPÕoñà7‹a Ó·'‡o8Ú~ùçÀæ #<àG;ˆûÃŽ” u·ó„ÆßÙÈs‚Iä7ÍyPÝȲµ¹ÀvHç(˜ƒ~:Q¾ÑðörV [·0µ¹…ïÎÕˆ<ʬ~eëç0ħœ%˜}4¥Ï!Tê9–çÄ/Ép Žü“'û9)ntæEíÎÛÞïÎÃ_ös"{­ÎcèàÃèo +þmÔŠ6÷I?˜æÊÞòþÌ¿N¶ì£øpÀÿ(T‡êáuõ;‚ +ŠWO)ñ-éÚ¼ÒH¢Äoõð¨úeÃüüá°ÑX^ÿñ!Û—Çè^—ɤ„ðŽž—F|µú¸)àçhדje­ýœ.^°s +Á†Ë~Àùr’=TW®)™ªå±µþ|/Âý™c¦¼Cf%`맜÷H×$}zp2Ä G)úO9ÒË­¸ïN×ÒÜÏå{¿Ãõ¿0HZ>ÿÓÌSJÄi÷ò»ÔÜëñäI¦uíá̲A~rJÏo;2æ&„£Š^“+CÄÄòÁú3ïP%ýš_Ãør7T&+àž*UÜû8ç n7ú¸U‚$'¾¼qÃØ[“PkÛ™Ò&#ëþ<ïʸñâ.œïæl>Ž{æ·wü¹‘'ÜE¸xýG|fÐ.WCw:xð±u†]ˆÞ=ÿ>^Ÿ³òüÞ ö:[é<=sÈ*pô?GçÄveos··€¯Sä(øý\{ü5èf|ª“¶ÈÔ_ëoof~UßG´ešämx‹ÏSÅGHÌÃ]§¿ +‡X1sPîÿ×êàU‚Sšš‡–Þó¶Ñð¿8\2azkË ›êì92)ªÿ]¹žFIc+¡×ÒÐÄ ý\àôE»váøü%«-ÒlÃH/tÇ£qÿCp膿NÎ>gÈoRö êOkkÄ.)Ïãõ{xÁ‹Ó(‰»_Àwöq›diwø[_»N¹µËFÿo·>mÞ q§$Å»¹ýÔs¯ÑoÛÅŸÍ´CM³æieT'üš€ßOs¯˜ò†`Ÿ-âqW@/äÜ*ÞÛ÷ 0¿²ßŸ]eê„MÁÒšò24¬ÂÁµíñ&Ü ó]O›YNF›X ÷=¬Q­ðäü¥1ªÄ`_lŠ4úyl˜‘p윗$ «áþ¯KÄUæ7ð'øöàiÖyIr-ô ñŠT+–ðøxšÅ‹4Œ@ÓˆN JDe;_Ž;v]>î"ñÙ‰cÆIÛjéÌxRFp§K›pcË8\85®;Qfáp>î9ÓfD–ÄÛ“ª)ƶ׆ ’§Œ§õ·ÌÇ.ºk¥ÿ.&ëæ7>'ãôq¾Eßkq¯ˆ/~ÆöFgטÉasÌŠºßãüy.ì-ßÙÌÛïü8ÙŠ7º|<8Ó/¾yŠe·1_m¹’7¸æE±äŠv ÛóíÉkd`G³·<Âê~ŽD¤I›–ŠPžÉ!‡$%*ûoÌé¼Ì‘ý\í£¹çF;‡14@óu:ùFüz¹ƒ¥B¾ïùpú¤Êµ4¤Û¿~Vg©\°>i€öŸ‡ ¶dËò@ÄÛˆúú&ŒëÈmNÈyÅ£#NauÛôsùÀ§“ðù|åLjÚüç1<‰P„òžî§æüùC·˜ƒk§;ÝÎHÞ÷(_·³ŽhxsGŽvZÚs}¼óTíç©7Ó¿8I-ÍùŠtr#©¿9Gß’ ä¨Žgß½¹È.àO9ÇÛNr¿9§2¦¸`? ú3UÔÊ[êßOøæ˾‘hGòhGú¢ß—yè­Oõpõ … ižããùr¦¿¬ž²,†×º>³û8Dý:àOGã +º@Ð÷‡/GÑF$4°§E=]4D¼0­@ç³`£§cÂ=ëë©ÃÃd÷ÀѼ~•Ô¼U±ªé¦&åØ›öñàYÒù×ðÎ#1¬<¸¿†¶øp7ϘfíÞ=ûðÌù;üy7úxíLì¼¾åÏ<ûeðú¹¦¿èæ Ì2@^ÜÅ% +›ü}¼ÀØuÆœÃ%;G¯8Øߊ®ŽEçcqéâ?WM1ÓGB€ßììâ©y·Í¸ p<><1úÿ˜bu>3œ€·ßÀö¦MÏíדðÄ|Gi£ ©ä´†ËncšÇQÌ¥ùŠÇÙÌvÚyï7i·×£%‚âþèññ·>®Y#Ð[N÷þÎÞµT‹0_ˆíÀo§˜Ã3ŒöÜÛGô_–€¡­ÂU¼,ðâk§÷·nœz¼Å믟†>çc5µ$}’€ 1á¦Îö’sÜÜö?%ªðÆ’ìný~þýcÆŒâS¢Ü~§êáRêívÝê·þ¯‰,)|ˆtîyÍç`/~u=l‚£Äóž¥T/‰ãÝ*Ç»xý|á^‰PÒÇÂüåCJ´+¿Ø/ÃøMãåzÃQïçàõKkèJ¼Mõöá¶Ä¨[­f–á™­oá¯ó=tOåÞÞ< :‡Ä…˜n ¥õà Ôv#‘ì6ánêƒùmMÏaߌ’Q.%_à¹ïÅž+%'÷WÃàœòÕùÒ_Ç’cª×Oüéj9–®~ÛûøJUH™37F¬6 G“oµK:“ð¸KqeÔ4e©Ý£®·°û¸€Äç%Éïbu¿÷q‹”ˆ‰QãÃNùÎPXÚúuö} ³„çc[·ÝÀ«56ÂN¶×é¿ß~AÈMLÎ< {êßÙÅžWÕ®ó¶8ÃI%ÿ‚ÿ™°úøÓ‰T|ìÛF›ÍÛ¹6:øûy*Ö;Ö°þÎyqHãf7a~ä|= ÿ™£0™g_,h¤1Ýây—-fš¼Bñª•bIFöŸaâÛ êU H´Ècc¥Ž¢ÿHâ žÿ#2È/}ô{tã,ªÄ=ÆšÛAÞý¹3‚\K¦‹UOê§üC¶–×ÛËÁ"þ_‚SD.@‚ßðÙš¢æà÷ðú8g:½îm¥Ï¼}~rm€÷6#ëâ÷Á ÂhV3îir|NŸA©q;쌀ýüzÃZÀ`·NLUÜ}¼Jç!.$ëN ÝÎß vþÞ=Ña‘a0ˆ£(‰¾¨æ±–hYÕ¬í Nšpª…kœÉ7¾Ís{òä‚öÓÙÇœ*¨¤bý¹:’³iÜ?.9AŠÊMøs˜REÛŠ.‘Bµù‚™;ûãïå«t¾Ã2¤`\vÐ{6ñž*|é^þÛãÄ-0?}†·âKc$?gx•Zî#¹¹7ú8„êëÀËm¾:ñÏbFœ•²œ9•¦:/aí<_K ã?dø}$qm:ÞVÝßG¸´ÞdÄÞâþ<çM +‘ks”†ÚD¨¤=¼yx?G"¸×œL¥uÏ(ñé{ü8áM˜Ù,/p-§ ߦL[ù*§ÙÁ»3ÇuâûAýœKUÍ¡×Ç‘ydò&âĶ¤víÄæ(Jn'1$ÜH×ÙðâWˆ)?Æ:ÂTò.+VRO{q[7™9$Ž÷¿9“qìç [Às‡}4<än¼ô£mxíG)ØžÞVw¯,¨q”tU¹ øk­é«ÓEv)œ#”DDk%÷[ãËô¹Ó7Á)£R5·~Ì„µ" =œ^á Ž&º­Œ:†C{Xr«ÿ^¦|ã-8o¶Ì!Y¥Œî}¼Gb¾co'ñÜ:Ñ›øp3ϴ˵‡‰àž(‚Hmñâz„oeøõFn4ä¥Ä|yë>¾y€æ )ôö9‰é¾¯g1ØŽ¿„þ&!ëƇS55dCÛs nÞÏw–Ÿæ{€’ Ô| Yê%»Ý‹wâ7>H²&Ó¥€¾§Àð¼õV§Ën<@-ùÒ¹EeØ‚–7ø|8Í—±XóÕ5·7o¬ñÊž¤˜ïØ6¼ÍI'Ü9%§ +,ùߜϯ~gYJÞݸu9þs +ÎP¥‹[ +“ó¬N ]AV†sÛÙ¨ø~¿·ˆRöÜ?_&3=*msÜ‚/o׿œäÍr{žöíý +³r›mÒúžy²âþïßíã&ŠTabGn­`ß q\øœÑaèiG˜Té{Ãé‹‚ÄeÜÍÝ´×^Üp4@ÞúßÚ>Å&ÞÂá{ñ†l×Ê\ Ô}\õÔ¯cØòsÓÅü@ägÃcß@}£Ne¦Å±|üKíºÞøûšü½,çl[ÏøM$Ѥ¡ªÜ4 †¿ÑË£Æ_È£U"ÛcUü‡ŒÃREÁ·k\þ¾Dcò¬:ÞçˆlÑ*16×èý¼ó< Ÿ¾ü@fJ¥±±3}A–çÇõúxË” ]ˆ‚ÿeMÎœTT+âš“î múøÛ‚/¥/Jø§©ìÀôtòü­ *‰+k6ƒ±{ìPM·‘s®Š5>μsðŽè¶/’„xl²Å‰½9jz¦–bòHSÝsºÈêHÚ¡ltå^`µÓÓË=4ö ´l=Œ¬Tøö¸æ&«Žƒähºx}Vדj1X¤ŒŸà!Ô,ÄÙ£+s²/Ž—ñã-PqŒ¿žüsê<¯u»LiL~6¾¼rÂqtÍõrq­Yñöqwé¯ 8žk§[v¿ÑÜrÔ0ØÆ–à½Ñ§o™Î¨<ôëõq)ŠT…Œ÷¯ÓĆe—v·ïsðâ#–R.#3Ø÷ ôp0Ìmî[ˆln@\‚{{y‡̳áHʆÂ÷Í–rí^9;J“ßÕ85e"êžÏáÆ|A¦R ùxÆÚè92 z'îuæSSßdûyŽhŠ/¨=ùº”\éãÈRÂÈ5æ Þq ·NG2£Ç_‡´ðÆg¶D¦ÚíâB¡€&Úý<3FW­‰ô"ü +36èÆ㉋+îæ"às=ýüu§“o3¤›¹Ó2ƒÈ³Ç¸q¾{û9CÎ7çEC}\âé~H¥Û·©e¸æið<Ç"xýüè ½¹Û1˜¤Šçœ %ùÚÓ_Çœü«ÜUÞDu×ŧ%Btæu¯™‘¹•žsPKs˜ïìç8Ç×̪wíá¨ü(hM_Qïßj§æÇ›"zS§¶½ŸÑÁòXÈ€ÿÄxužð7× êk-ŒWØEÁ¸þT‚!À£ÔN"Ôød¶ð§Zøûâ¹£:…Ûé?ÙÂãŽ(7µâgŒAì|8™Ì3Õü8gº¥Ô[¿Œá¹÷{uâL0Ý:áÎã•3/õiÌÛ@ú|yŽH½œÄìG~q"æúsÁ¡æ9aÝ­¿g#—Ú~7ç/7asÃOè㥭ò^tƒWk›ðÌc9gùmËk}\3Ž¬äoÝÄf3ìVíýÜ z‰†ìV6à[%>ÉmÇÌ:F½¹:4Útþîa•Èûûó ±–=ùÑB1ƒ˜*- <çEy’âþð·,ÒÜ›pˆHð@<>Võ)㧠Z©ŒìÀo >=RãŸd üt<².€Ïó¸"_¾ÏÙÎYÞËíµõÓ¸þŽ=O¦óo¥ G£Ì½_ÉÑ2 n@Çén)³+˜Ë©ðøü<8f/)-scñ=ôàM×öйÃü<8Os,ÿÍ1M·ìIÓ“šœ>öó2a-´‘~Úñ“¨jy¶ yØÅmeÖü­~ÿB–¡»ßÙãÌ.÷}wöðrü3ëëÖ[{Ÿ~y£6îwÓJ9cAwù©P €äqŠBÅJƒñ·~Üú…Hë8ûBýý½ûp·õXÞÛèñá_ê:l’Ý÷µ¯õóß-¨¿IaáØ8Æ»mÉ°Ìf¨¿·™¢»i¯Ã’Ô¡ÓÄs„»Kÿg—à·V%Äs'Œ¸Uàü!­(~ÿ:ܺ‡N#’Ö°$~ú~ºXµ!$’,¾ÍÑúü8šÌiÓ :éááÀÛ:Mï2Žà[Cñüøg6$Âö¾¤À—6?{ûOÃŽ=,ËÐb±Ä&[Ç$¬ÎŠ'qõÚß_2çìkùÞ%4„XÈm´vx€ðëFÑÇ6U ö{÷ÏQD(£Xmïö:kÛîçiƒšT ðïñã>)…Ü€ Ó˜£µõ·; +W_¯ëç‡~–·Äpdü>r{f­a¢Á„eœèmà5·–÷œÝ®l5àe™*L‰¯ÆÝHúx‡Ìò»Âÿ¯‡¼Ó*í±?VžsLû{\wàw›fP[Nÿ®œnʘQTówm ¸ Å¡þ_L6­Øè‰&ÀrÂÿÞ‰â~Ÿò ¯ˆRŠÅÅg29‡í*:"×iïí¿n+ýBú©ÀòBâYºi ,Tt!„Ð7»úPŠƒûnTYQ{ò©2œ²ÕÇ5L¦òJÌÌ}¬Ä±úu<›% 3J’ÍØ |/Æn¤ãôøù`jÝuú¾¾˜deŽ§ÛÈX´Öïȸ~*uÄžM|xôè¼±Ü8 óuñU†„òƒiÛ‚¿¤"˜†r., iã©å˜cŒ)°XTëú?Ñn²©¼â4ýmÄõe]»xw‰\h‚Çv·øñ9Œ?GüþÀÄ@ÖÃC§lË0·ìâ”n7ã§M²<Ù²`mîƒÃ’zOMbüM¿.8â}9Š¡l±ÒÜLc½J„;@×Pâ#è<Äûº}üLb½!¯¡>íþãÆẔˆa$–ãéä?ç2S5œ9•q¥›¿=æ,ãÃ^Gš˜ý<‰<%>¾/EΤŒxo§†c<Ò²S©°Ôq1ÜO³˜71øoüxß[,½¸Ëˆ’NžÛž'quÚmmx—Ä®<=¼Mã*×íâsº-øš¯&½¼xåJþbßO‡3(ï}.qÛ·œZÜÇ*óªfØmÉ÷[Ÿ«‘¦—pøXéÎ(Û%Ó€ýÇ&B··Ý~r™¿^܃TçQÆ VªÌ‡9QMuæZâ;E’#sðæ;ßžÝnfïõòd±æi>Éú9…o&¼ÝkÝç íÎwÝðæDpyÙqáÎ>Îy¥s’çNAÆw=þŽÙç ZµbtïÂßÖþžAŒ@èÀ[öü+¹ÓÆó3Ó^ý^èu k)¯·…;«}8ùûWÛn™‹ zJ‘ÄÖ …tãaÔéÈrjy‰%PxçÚo3€ç 7 ÷æ +….-ßÓûyCncnu{s¦Õ{óªw³}6àc×ú&­¡yQþ»2+áxÏÌ6bÁÃ…w+ý|=ž“ëø\Ch¶Ño¼_‚PpÓ0$þ¾>/Ý[Ë?4 ôú?g ?Q²“Cˆ®†ÅÅûûx}ý8DbÁã½þÆŸw&gOž¢©1¿õñáÍèn\þE• V ù4rv%Ó¸þŽ¹–¨¢¿wÞ¶cè¥S¥Áá`¡ÃZjù$o 8䬴à“ÈÒcê.ì2ÎgvcÞüã*×<í¦'NdI7ç5ˆxw¶¼ýbã.õ‡,O§ü•!BO²@ÈånZRÃRWÎï#Ä6 ©ïÞ×#Ùðà{ÔXS“o ~î®D;þ^,¹§ý3¶‡1ÔZ™ŠnÆü–õi‡_ 4çTÒš™¬ÇN=QÒÛ¸µü9&¥?ÈÍï‚g Wàá™ÕÊÊ6JüŒ÷¾è +…íÿ.Ï ßQá-XÆ÷ÖÇàœ 1º„V*£±ìOÆüIfgÞ½í}{€osù~| ³‘Vm.}?§>rcãí'OÙÀ—5=—¿½"Â)› ¨’}ÀRáÒÔ ¥icŽ;‘áy.}¶â6º©ª¥&Àîíõž‹ò'…î[÷>6ã4Ø[F.ÏÃœ2EÏ9­1•‰û_Gìá£ü$ò²â]Qó_É„í'ò·,=Öb:w?Y‰ö©7¿åÄf,N¢ãˆœÄ¾v§ÇÎm›h;Ok¿îb›ã©¸às¢B÷ã¾M54$ø‹ÿ&RÖÇIˆA,£r‰pø_öp÷t¿«Rbø\K†bMX´NAM}}¼ßSmÔ +zl!§iP€ÒÆâÄøŸf¸]©0•¢‰bQ`£_§Çæ! +?½¢ÿOž¦ã/[:ÀºªxÍP~N=¾Ë[Œu­çIkñÏŒ.½¸ñ cOó•t1¤e˜[˜é2$X¼>hb¬|9Š£,âXrYMÔ~ºðRôAAYI•œ6Žÿñ yg›áÐëþçÛk$9ñïý¼HV1KßO£ŒX¬e½ã¡âÿHr=¼@õ&1ðà9š* ŒG8Æ—øðgè´Ð†Û¦Þü#©XbÔÚüĵ¢C©ä¨*Qô?—'Sà0V­¬ üyÈt¤îu¸û¸ŒÍ‰ã%”ïÛwÉxdLB{~Ž8Þ´‡Ü•)‡2üÊËÃC艗嗿Ú#·´›ðÏgÚÔ‹ðð3­MãñäYX6¹ä:—ÞlA¾¿¨ãuj~%ñØ…Èý{ñ-‹§–I'¾œLã#r“~&ñ?thx™¬9äœ6 0ž8«nösžÍßG1¸ wúy†TOîæ6[7Ù]ˆO£‘'úù’ €xã E9"2_êæ +§Û§jf7ã.0ÌEù‹˜’8èÊ\s‘ï'˜6žbsÌÔört Ÿ³œä¶Í9–3$„}<ÝTMÌ‚aÎM*Žqj¾<âk‡·˜žµG86 ïÌOŠ)=ù»VScáÄNhŸxn}@¡18朡åFÄýTÉï1`ÿW +×Wºa-B¹ p{€5ácê§L¦ÃÞû¹àAšpY(N£ˆúå*ÄrƒœƒÉtIsÇ­ß™ÒÀ÷ç%*9ŠQaý7ãmJ‹òšó s‹78ßNpSfŽ”A·a7^üèŽp7¿rÜ/Ìr6ÑÈušC·9!¿‡$­Û™£6:s’f·<‘ÜÛ™b·2œÃŽýù‘Ü8p? jчæ©Xér¿]¹¾—ñËÐEs¥½¼0½7{éÀÓ¨Ó‘¾±nN³åÆ«rÁnG td$ Ø xcºsT‚EmÑÁŸ*ã  x¢\Ƥ}®EÌ(™‚¡ÔøpœúÇôñk¥r"ëá~V?]zM‰dzɉöN€ý\1z­©®„w¿9ÏÞ þsSO1¶‚ÿ%à˜RVÂ.5âc?`‹M};qH +0ãÅ;ß™îßÙÎ$Üs‹~ÌL7ߘ;÷së/^ž0ÁŠfÜ.¾ŸO,¦ñ ?_oÆìÕ‹yò5þ6â­±µþŽ4âØyd6ü¯À×Îc_O£˜ØŽrA·¾¼åáîû>þßGIü® Üh>¾Ü³…ŽOÒ<5à#ÔL=f,-~ýIÉñÉ(k ‡á¨èµ ÂÑMÁÛû>ÓÏg(Ã)ï§ÇõþÞ5Ø/ó\Zž Y&[üEûpðˇ.„EèŽÚxÙ¨†r4 øþ§Žo›ËÝðàÖé—å¥"þ<@æÌ3åþó1û‡^¥TnM­­¯ÛáÂ¥ÖÙZ6’ú€N—Ó…ÚŠŽL_TPI7|I·"æ($¡Äµãb§Ç·9Ðarb ­ÿ_‡íâ§À’”h<Ë.žÀþ•š¢¤vÃøqÿF—°û½¼vþQ%ûW¹úNž>ÎOY0¨4 +>=ý¿&™À#Ãòçå÷NƒûyzU>üOnB«Âmï/ë¯0Ü ðêþ ˜*Tãø¥X[˜‘ÏüD›~|:ùʨBXŸ§Æ;>õ'[x’ÅOš q™æh7wµí§n¢g7èÓˆ<É2•ÔZçõ< sÅp%­áÛ¹N¡qŠŠžÀ^ÇøñGQ‡SUöö wþÞ2#cyp£™ÕXèˆû¹ËG3UÖ6ùœÞ÷Ýù›ž:ã„4ÝN§gP³$8q,ÍwÚB(×ÒÄ'2¹¹îo̵IkñªóX·pÈF/¥øçJ¶>ö¼‹™*vF‰kn7ìÒ ¯îà‡þhÓ„ßM‚Ü ±÷ù‰Xm¸œÄ#<;_‰|Á&Ëu?¯ã¥i cÞþÎýOŸ~àlHÒݸ ftòK_ãsĬt ŠU¬`^ä^Ü0ý:ÂHž÷ú<8§’´Ë`ŸÜàò2µÇ%ÐNÛ­sõñQƒÕ¬O€ðý{ó¼[[›-À‡©òjÙš*p\&âJü?|󛤩¨Xë{Øø_TØ£T{^cÄ(ê9GörJQȃ±á˜ôK+$@‹9ïá¿Î‘ +š6ýß»O×·lf#Ÿ4ÈuÓ¿ÕÌNlŸÑÂû™ð梘ƒàmƃ{óÊ–Ó’©"׎1Æ;Û^ví³Ætמ”iÆê /È2ëÌ,yÄÜsks¥S~9PêGéÓNu ÚO8n\ó²¥yîÂÜíF¿woùŠu$~ÎD¨ínD=ùÊ29ž;_’‘>Že@^e[©<ȇw;[«œÃ}Ü̆Ü5_†uY¥ÌLVú9{¾•q‡l:"oÛú8fhq50øŽ%ó5 Uà]œ2#âÜõqI楨ܣÆü²nY†EŸ&àXÍ@[ì⟨’P ¿hd`8Ýšò¼’®>þn¾ú;¥Í©!òÁÜ;þ£•ÛêƒÐ;” µ1îPIÙ©¾¿— /Tò&1–$eª§’+‰HÞ™ž‘ƒÜ|8 ÊxkmÄikñ+ÔèÃÆÝ»ûxC£ëØñÊ °ÖÜËiÛᯂÖvÃůa§Ìû‡€Æ÷ïÀ“4ÒµmRÇíqm~<1Ý?¡ù<=A×ÝhÎí´è~'êãOJr×õ§5Ò©¬gÌúÇoφ«7â©FGîÝài™jÞb̧¿\ãýÝþ£À«§çã^÷·ßn9û,ÕeªA½-sßÛùp9š&byê ié@ñør©Ð _áÌ´ñ<Æö·'AÅ×Q~u*7åÎ+®‚üUtrô™¿of'EãÿK)ˈê…é1 ™u$›ßÃõ¿¼|<Œ]µ'AÀë©´¦XÏ{‘{ž¹Ó‰›nMîIñ<rŽ‹04Ïm±X’}ƒ_ÙÄßÏ Ë‹Ë*è¯#7ÔIâs–¢ +Äø~Î7Wõ1œL}—þÎ6Ub˜Î$·Û°|o~@“¯˜]œÛ‘¦ÁeˆÙ‰<\úYÎÒ.¨e¼nä-1C;þ©Mßòi<·ïQøgòÜÅ[ÑÊʤv¶í<}šðÌ1b@Ð È^'^ÜHæ +v•I6¹ÖþiØxð*ÎûCkî‚}mc§~ͼýÍÁ·o×Ãtø_õ‡¦¤$íšxãcãfaÊü:§G…ÔU‚vC j|¸Á¹ÔêÇýb-ô [ˆ +L:¹xÚMnç[h=ƒøñCG‡¦NXêTjŽ§°úðä*JÒä¹×oo§’iª’>ßw$ @Žþk¯åÏ|àcßê皯ݰ=µ"ýÿ·œ–´øj-oo~{ù‚8±öþÁýœ=ŸƒJln`ÛÙþæ p©Îþ÷=Ïn ±ù™Ôé§ßĶ*Yû 8ŠÌŽï{û<—GRoac×òãËVü´CµÏýZχ¥*º’4¯Ã¶™ãª iÞåÆë¼eYê]¼ ?ǜ藎ðÄ^+{9—ÃÒ¦[žÜVE•"˜o‡ÓÁ¿Òž0æ +,ão¿†¯3 þV—öp&ÌHªÌ}½Ïªm‰¹öÿg"ÔÔ‘{ý6ã}tÍ·hÓóã(Œo¯ïâkŽä“¨µ¸˜ÅT&1UØÇÂÜObï¿]‰~;ᛟ_£¨ û|9gœÆëùwäiïoèçE·(¸çqCïrtû9ÌåA·Ž‡*%¿DšKŽFr~®G®ý*2å¿è%·æY qáÌ.5æw ôäÈ^ݽ¼äÒ•]>#‘¢}ÄóqßçsůÌrc6ñÓ‘'ƶƒ¯j³~C›1FlÂG0ËŽî=þ¾a“oÈÓã þÜcÆj/p8‰Ì¹M+TÙoÀs¬Ž¶2v÷%Þ¤zH(evÀg¿XòøÂêàÜ@ù"üå[&SAaɈ óŒ·P|yŠ&¶ºó›ËÈ5cAíäo~aqsÌdXÛœKl:ó #Ž¸lwBIÏc÷s‚tÎ u—OÓ˜ãýßáÇ:,’ÛèãÍZÙáÉë‚›væq‚1Tå­\_êâ'8úx ÌhÁ£ÿ¯P_†–^Ïñ0x57ìõú¸@½@þPÑV4´RI^åE­ãðâIÿÊø3ÄQ‹(П€ïÛ„{ÕgHªºgXðÈÖ7ßÜ!¥1“áÉ‘Æ;ýzó1OÔóÆöú?o<À·~c’]¾#NC«—hïßNGfÐß¿8‚ǃ7£ùŸýœ9ãJôVñ·n%¥ÚïiïÎQC°ëȘ½¬~þù­<ÐÖñºƒCä¹&àñ-CukqÅ@t$óÏK÷äyËk[êæ-¶þžuØþ|âT)¿]#À=AéËHôó–SÂcñ²ƒ¯&u¼A·‰<ú…Š,›»v¿{wà9_Œ|¶%›hÃÃãý<2y#Xx:kÿ_3ˆj’Hðñä¿Nø„8fe`ö$Çuú«Ç‚¦gÇžz†-ð¶œJcÕÀ-þ¾!³v <£~¿W î­iffÓÝmÝíØèâ³Õ¦D†I[¤Pû—ØÃ…=é?ÇÇñø½À è{sÜŸcÐL€‹xs„˜e¾¿o;ù;wâ¿¡ØÅóæN¼˜¥øé2“Ëuêúˆ«&µµb>Ÿˆà]‰ )'±Oë~½QI˜{œ+`¥ibrG°át¢ƒÎ–¬^ÛŽÛý\G +·Ã·ª}¢Ä}ÜyÉy>|qÌ®/sÜðGÂz{IƒêÞó[¿Óðç:̹OݽÛvøòØ- cV¸øëÈR`ØZë»qš * +Y΋½MÀ ®ºwöràzωGœÅ.$‡rWÑQÖ©67ùšt”öý®¸ä!¥c 7Ô‘ññ·˜ô`k^ããõð)ê!b¢ÂÇ¿ÝÀc<¸R@>ÞÞϯU~-& \“¡÷£mËð:ÿO9¦%SÍyX|/Åv‰%!QGº,;[·0㉎ ¶òM¾Ž`ÄJ x÷ל£ªXŽ£ës‚âC_<>žsÆߪüðÅÀ=ï~wüØEý»s’b…χ´ÛÇéå‰~ ´íS–±¹#ý'oÓdKðÇçI³v ßéâ{hOÕíâO©*l;›þ¿G9–R¨O}?+p1ÍÈ-q~9®]›¼;Ž9Ψ‚ÃÀóD:³˜ò^0‹A)+]”ÞÖ¿Ò8e3W¬ +üs/½1‰ Ò a}8\1ƪ.ϼܛ›i©âSÁÞ¥‰–$ê{ߘaËqCïÏÏH…¹Ú/ì¼x–ÄjK¾œÏ†Kcr4ãý&DZ¯ÓÉÁíõqŽÆzÃãÅ eP=œ“S¡¹övà›éz·ËÍ1~ï ÜrÁ1¹ŒØ\6_áÀϪYd#Ø{{8›Ç*…Š¨øiÆ© 3~¿ÛÆû:á„_R‡ÌÇTdé©ñày˜ì¤þÎ1ám­àó•g+ +vû=ÇoéãÚÌ@:ö›L„ -ãǼ¿‡‡`Ä~§™1EPÅ»þ½¸^:ûœƒV…¬</L—³'¨ê?/ …Nžó¹Ú-cr>Ž7z«ü?³?¦h>cžžMÄ]"$²ÜÚäöüûp¤ÁŠ5[ ò`bn4½Ç=”ô—ÂÞß/)¥D[kõooM8€’¤ƒ¨ßÃUH'ÂWèþ< ó ec~×úø›«oxënC’B÷ïúŽCªb·zGÓ˜)õ'›}|ù~dŽµÀçO;? ÕÊOê]€ä:‚ēۑؽ¼yÄ+··œ<€s‹R»Ç‘ªpÖqÈr` çMy…²Ã9æ3’÷wOõ!$”ÖÚ;{8L½Ttéd!<=ŸO*çÕ0ú© ­f?Ç€<íT1äºmW“ \ s QÓ‘L‡w3Ó¿"Õº7˯1:Ìnºóë<ïmÈã¾ý8ñg0N9‡píEÀør]tç‚íç‘G0Ë-»r<Íqo"ó”}ôä¸Eù2°×™ÃñæUk9ßa~Üè.ñ¡ç(À^gˆÓ‡Ãð^Á+ŒÔ5»8åòzuÊÊ”Q‹pÀatyKÉÉ—Üθ/…ùÉ0örDX +'‡3Eƒ¢øs*aª¾æ”KìæE£QÎb™O;Š|9†§§«tˆ^ ôžƒ‰Œð½õ_£T´ò«F¶±¶žÞUâyЊZ¨UŒ ðúyX˜îüº©Ðv‘•CvïÎ{l;ëΘ©×_éæ$ÚoÌ3IqáÈò®ïèæ'@Môמu) ñׂW¦êóCŠ9ö4X>h2AbÄé¥û9Ο[\žÚò^ŠÇPEΟÙÈŸŽ`u=øŽÄëc•Ü­µ×€ßU&@æÿÛÄ,¡ä°ûøåOPª9ËÌ/monüÆ©~p–.ÿÌk¹×N +þ‘pC‰æÄ\)³Œ•`ø*ÚÃÜïÀ§«¹ÌR†×ÄÛ÷ÑÂïŸ:†)Pà@?Ñõq SŠ.%P$Ý€ðÙt·c…#m5<ã™°¿.úq'‡Ë&ŒÓÏ «ØŸƒw¿üS ‘Ñ_½Åþ®&3${¿èÓþvÃŒß[¹¿.4hçÆßÇ‚†uÁcÏý†b.ð‚šên·· #C´Ÿ»];qºº/2p¿GÕÇ*:5@·Äß™¤¥ð<ñŒm/Ûž„#O ó Øä[ÇÊ>†b­†õ/H¦Å1Z;ÁL ÿ[OXIšyC¯· N¡¬×63ø|L0íööéÂéÖœ1i"–ÂÖ¿ +ŸœÑWÈhdãÎ –h*$,Ы17⮔Ň&Ô aà  r>#‰²>Ž&±Ik«œí6f“«p73r¸žÖ'ëäZÌ ö• +u{o§-— ˜çõß¡™:²÷uÁâ§r57¤–ZkŽØ‡¹žð3ªt×ÛÄV;Ÿ¸–>Í?.}F•A#Âݸ繉/áðúxf ÓoMÁh¸ûøùDÛœ)ýâùŠª¸WÕmýÐl>Ì5Ø¢G¯åȲbâÚíç5ÜŽ÷ýœÈ·ë~rE•é<ä²È ¾®eIÛ±'âygß‚uÉôÛ™M¼ÊÆ»h?£ƒ¦yc):€n~»xñ ‘€¶ñ¹âcˆp~Ž#s»2ü?/o ÖÅIí§Üå&À{÷ýG ëUï°'Qãôó®”a»KJF¦úñ},^bÚÜmÅpƒ*¹ã4¸`Tû6·‰ãudvöß^5²¬Ì}šq9ŒÏ浇1 ¾aMæÿ^œÅF‚Ü|ã²}<™;˜‘ûq›žÓa{ž*i± +b,Ìí¯¿“#Ž)û¸·ôú‚‹2Dn.~¯ËIEF ûD/ßaìàg‹DRF'ÛÔq9‰JC_ú9†:•×M8ukz¶dü qél¾ßo³ˆ ÇR½¿G0z€•ƒƒ¦V«Ó(ÎÍáðäwËå¹…òÙ<ÂrÃû¹åËl¼Ì¹xg8 +ú[˜fÁ +nG8>½¹Áp‚Ó™ Ó±ãfoÁL´ÇKhxR=Pef–7ÓÀþÞT­l¾Ôsϧf'óá[k¯<\¯%RK~üŸ ÓNc¨E<…8ÚyÎ9/s~ãØêG L.y…»s†Þq)¸ß¿8§~=a:[¦œ0ïÌ*škÏ ÏnÓǘÚ{ýÜÃ,Å~p·ÝÎýIäk€yÎ2ד`nH ‡9Æ}§™—<æ Àç­¯Ñ̈û9ž-m9b?7ŠTßÁ׿ÓË÷è#¢M=œðÚ0‘ 9)iöó’ÓÛ·9¬#œ¼‹vç~G;ò¹á¹Øì÷–9ÚÇ~@Æb܇€G[©ËK§å]~#t°ÉÈ×¹úõå>gŠ?/˜®ßÇŒ"#õëδ¿nqs´è9bAÔ}\ÂÊ[Ãœ|£NÜÅ:íðïßœ/åßòàƒÐ=#’4[ð{Ãëü‹Zâë~Üäø©§V'Ç^a ÌL—=Ç{q‡9ç#¸n}¼NÖgŒê~ž=DÇ~j] õã/˜MÏÃŽé þ‡9l4ïãÎe÷ü>êI½®yŒáõóÁ—ÇÆÐG8ŒÏPWFnœrTÂ0¢m½»vÞŽ½æ÷Fk.³…7æ©$ª6$è~ïg2eNI«! sy¾þXgH#Û„.û›(ïúüxߪ’üq™ÁX_Ýp~ãðá™ÁðÂVK†¶Dfz{¶?w“ZÓ»Ûm»*‰©ÛOoÙõñ’N©É—2…F +©£6å·Ðo÷ðªâ4 [§½Úß6USùU>Íy9•Bد~p»“ùb˜l1y›‡¤ÌÝÿ¢ütéLŒùßÛ«4¢µû_æ–ïÖÊ¿“­”l~ŸÏ}}WÌ-Ú Óêâ[1ÂbŽÖx^:ÿº:YÖá®~®Ü)Óˆ«%ø5íôñE€Gä ·sßîãØv·0Mœ{~Þbjo,^ÜÄÐ{»»}6æ£ó=—û¹‚JUú¹`Ÿ‡Ìï]Ъ8ûü¦%ˆÁaþ5&þO$æxärÖ¶ºÛÃêâ# °ïµµ¹·°hxu)ÕµX ?ŒúÅwžþÃÀ˜š€ÉëöØiÄ>%k‚~È×Ùáõq˜ê€ úþŽ™º´ À÷à[+#Ub{’{ðÏ•`±ã÷Kkb¨¦ +¼4?ÝŽ5Ó·ÓΫÌ'ß×ljðþ\àoÞžTy´©íÓO«ŠÊDas¨ä¤­òͼtý{qó +ªº÷Ûûøuÿ1ÑXxÛ€ŽYåHOÇ3GcìãN+1µ¼8ÝM›%¼>îIÅP-¼tíÅ×Ej#¤©BßUø1ã™Æ +&,Úíâ¢9˜Væ)X^ÄgÖ /Î` t~®™‘ÇšGˆ¾ [‰zÅññ¿™>¾FšßÇÇk`Ür8ˈR_à=¼Lãä §‰<^+û/Ħ0›ZÞ?¯n&±5µíáÈî7Ž;ÐÄ$öýq4ç8rþÓ¯;4 [Ncšé~q24`†Ñ¥®±ä +ÊíyNÄë̈„÷ç"œàë~üÅ2{¼ã@Û_ŽaŹÜmy‰Úüá ä…caÛ˜*¤°äh*Žno†¼Ì0೜ ç£ Î B-ۘΧœ¿—€9°ÐO1š‡1K‡÷æhFœÂØpüàØxðñç%dz‘1ìÕ@A->¤2iš94ðör¢=d¦¤iÍ»–ÖÜ"“ƒØëcÌlÇÇ™éS~:Búo;”îî5ã|úh=¼åëìçR/‡ Ô ÀúŽpcÎ6$Øs¨ÀJëÇêx÷/ÑÈõH{üŠuçký'˜d”“nb2Î!¹š8oߘ*ND“¿9DÛy6ì9![w¿™ÞíãÌ‚ä|6¿`fs­õös1Žâ㿇0ή§^buµûëôó(vì‡84` ;ëÛ‡×ð½®\W¤xÍ(4XÖë_ª’#ü`Gcõð·JÇ !ìuñÓ,±ÜqÅê\¢ÂºmÔüK{~<áò¤€ŸßÇœ' Êï䯒Ÿ£ãÌéOî›û;[yL¢àsƒD]J‘¡=ïãÎaÛã§85ŸÑË@ü!(“£Ów÷ªäµÏ†ãn +9Ö2ëÚàqŠ¦Ô'·ÿ_&1ÒcŸëñâ 7+*’;p%Î1Eþ®YÖ·pm|/aÀƒ:U’ä›_^2eŒÉWÔÞ3îø¯‚®Uê|x°Úà)?·Šµ­IãñŸŸOouóˆcû¾Gc5ÅÁb{žLÊsÓÐÓ<Ìl{Ž&^y1J’ç¹:(pØÚ%üv¤e—CkÚÜÌôQ8¹^a— ŒénF—Úl¤Žsþ]QГ§'ä“565NÌoïÛ–#Ó9lº„››¯N&3dê%6¶‡NüNÕMçÈn{›q›5)òmÛéÒüs4€ÛÇøð2Íш7knô·'N07ùQðà¥Ó¼|Õ~®TX‘m'¤k#ßóŽBÄ\Û˜hG¾>®dÅ[Ì<›„ca.¥oÉ8Î~«ÄcÙrúˆ|¶0 ?kóׇû§µb£Ûã° }\Cæ|ÓÛáÄÕQüœƒå–'˜$ƒnž<‡W~4âp\³‰Œf"ª[ˆÜq'á߉,f=·Ó^%±s©ãJ‚­õëǬ&_.ÄqCE0ñì~q¦–=ëýÜÉ"Ì;öçRà‰ßõx9nÃëã]fTq®§ f=¯Ì‹Ê=‡9$MnÜïËcõžp–àväY˜¯nÑã%_N8GSaßž’¨9á(µü9èšüË¿o#UÈyõ·7O +‡;•½í9À€ßÎ<ëÊ><ïåÉç%¥ÖÖçG7ðçg ¿8>~b“ +ø`|&Üä¸A<͸öæYðñ‘ý<ºí“V¢&²ÜÛãÊŸüFzdš¥‚ÿ‹OÏ•U™èÍt‰ÚÌtãu¹š±°ã•+nÊïã~@™ö7:I ÓžboÈÓr4ƒÛÌOîžq$Žz3¯0_téùqICN?¿‘+Pðöñ®¦A#¼€_ïæ"×ç‚ÜûyšG‡%¬bÖ¹­{ñ½¹Ê O%Æy\ó"{ÜÏßöó$#Og‡2¯Ñ̈-¥ùš Hå”~`œB¤û$ßo6è<,(£úðàÁJžç3ÃóÌñÇ´sš¦œì vç"ºó¢„ó­¼ñŽÜä/:ºó¢Br.%ñýY W†O òº½xåÁS‡Ï¦ºÿÊRõƒ,Ìs k]~ž5p•$xŽa=¨×øsê9†M8MaÈÕGaÎ +ÜWô×:˃ÈQß¿·‚t9ù+Uµûw<£Å`1Ø›~~BçlAR¨ßûøÍW«DGë¯ØŠüäÄørU¾ÎIUaÏJÞ?Ÿ#Hä€9BA±=¹Á®n=½ùŠgeà»éï­Õ0Kí±Òâÿõ½`“4Ó|j¿Y®)*$$Ü‹øû8¯Ã⨜5Î’ò"ÖÖ½A[`>­xodV†Tin"ó=Ŭo÷ñ§£–©Žì£Çµõáž©¥Xpd¶Ð=‡êøiÀÇÁ#Þmsã÷ñ‹ÂÒ"Ýüx‡ÌxpÀÜ|Göp9Î8tqDö¿mxW:îßË%b¾ÍO·SÄnRq$[ž0˯ÕÌ2FE‰ïÎ6fÔüâÈHÐó YÚ; +Ÿ‡Î)ü«­ÙvM5©™ä*iG,#6å7£q#_{»²{‘sÄ”ñÍ#•$ £Ç°àUž(&›sÝBÜ\Û€ïRËæ«öÿ«RüµLl®Mþþ;à $@ßÀqêž=…»s;X›øc{=À=‡"52î;´"ÞÎc– Æös „©Ð}6¶œ9_ƒÖ(k!Î8hµ¾_ ­›\Ç-D-cß´€}ܺƒD´Î×»é¨ñÒÚp7Ň¹vw~Ýxõ9kú]V±WÔÚÄýÜjcßsã~ÜuÊ’†=—¸ã…,]1fÔ=aô-#‚Om/ñã£Â±û _ÛÌ‘Óö¿nyáÝkƒov)-p€¿;L.çQáýßO2®°€ös©0ÿ(\ òÏ +ºo'£Âõ@øñwšÇŸ#é¨ïáÄe|  ’l Ïñâ[„Ë{~\AæØ47×ÙááÀs¨åc{wà/œê +|;yº¦Ò78å¼¾k ÞÉæZŒ5èlѯ­¸¤ÊÙî§ ]•ððâ‚«0C]ƾ=û{O™›0$žâþéüøÆëwö<‰OY4©°=œuÂ)£'¶§Žâ®:u¹ïÎI˜bŠÃ’àÇ"s¡î92š¹&nús:”‚?>d1{ÙI‰BÁ­ï‹ßéå‚ôZqU–†»GÕ âo3S—¼u°ã!‡`×°ñøñ-œq<ìPO··XÒmRoØiñàYž¤-¸{mn™‚BŒ|xËMT½ø°ÉUËÜ_û8"aX’Ôí×^?Ò×› ~<›$XÛá¯Þ·U ©´øð*›޿ÇqWNE¯Ãœ("%õðçŠâf¿ U>)oËÙÆ ;_^ãO‡€!´&ÇÄò;nO0¶×`¨„0ü¸ÕŠB/§‡n%ñˆîO¸ì`OøÜb?«‰L[Ü‹w=´äÚJ–AúŽfùý5?GÓδx‹òtË#|}œ‡$HÂã±À[}ÜîŽe[žüÌp‘oãÌá‡"MƒÓÑäÁ¶knqXQmyÓá¤öç/åÄknv´@xkÎ&O1K†—<É +ö¿Ã›œì óÆ2ÜïË?ÓÏ|±æD§s:EÜçDÜȱ_™#¦¿9ü®î{äî9Å°à|9×òûÜç “`E¸õ{-yѶž­¿Ä¦íW†Ô¿ºÇ·Ã”—×|¼p,zU"×:ý_!¯sÌ5¸ãDwZüÍ8q¾¨ óŒMcÏ3[˜d;‡ÑÌ, æ,9ˆ_œxû‚Ú3¯ÕÇúj«ß± +‹’xÏW5Ï#™wüÈ‘ï<“;¹. +mÝùÎQ°iõq®µ·7¿9ǧ$ÄmÉ1YÏ2D¦üÏÝÜó0^e »_sDÏNÇ,“ðÿ4ªÂAo¬øó`Žƒ ù(þÁ‡-ù$›ó’¥¹ß}9È s¾{×^üî÷çÎj·æ*èýÃÀÓ©ôÛá/­ì#Í ›N÷Ç”‡êÒˆSæW°± ø[Ç€Î'Ö:ríñ·çÎkú_`dßìøó«)ø{9…îQȲèMù‚CìæmyÉd*t6#“àÌÁmu_ÏøS$‰rE¾ž@ÆóCb ºúý|g—•üoñã¶Ìí'Ž¯„vל@^u,{E­©äZ‘m|×Âj:p,<·˜¾Ôó¨KBÛ—B>®=?êd¸^Øäcoiೆb0f(®§¸·åÆʼ¢ë\»{ãÃyé##E…aɺ×o×ǃh¤Ž‘M€GüÓR%($êy)T¯ó*u&Û¤÷á Ä¡Ë }‘kñ ˜P ÚkÛˆÌsE¹ ìí߈¬ÅˆBªma}~<º‡€Ù¤$jxXzåHi$ŒÛ³ƒÌ¹y‡’ºXáǸœG³ÙÎW¾£¿Ã˜Ù³œK†íõöçn$}CîçF˜0>ÿÂ*¼Qu3¤ÿ”Ü©OÓM=<àýÊ|-߃¯S 4îàí ¹6×°Ó†5k”ÒämcÛïàmŸ£óo¦¢ÿw ÇV TI,Öx³ ^ü€FT¹·{€â§§H’ç¹ú-úÛTÇÞÚøó4f6ï¯ù›ÊXûé¯3Á¨½­ùßÛÎ{ÒÆö6ÐsƒWA;¹£1SS©·ˆøònu°í å¢~Ø°Å:$²þ÷ÌIký'‹ìØ¢Y[À€Hq%ÛCôž'ñCä)ñ°ïÛþsŸÍánÞú…9PoqôðÏuÁ.}·àO®¨Ø ’Hµ¸²Â°ÇÃ)+Yˆ×ë‘îê/í'˜k°M݆¶ã-O¸'áÆWª‰öó4Y>jâ7 û9«&ÕR 6ä0²Á¡}<è«¿;;wçkI Ô\s$5µ½‰'O»™t^Üò5ûs©$+Û‘*œ¡×¿8‰¶§ØÄ›[]y› ­°äÓX§¿oãÎÚ¦úpóÒßtò#ht·8Yí®¼ó´k§ë¯8—Œ/{{9Å¥M×úéμÄï{v'Ž>ßsùȯÍÊÖœ£s‘§ÜonsZ"tæH°òy•0òyš<<ó˜ÃÉæEÃíÌðÐnʘw9ü‰<é¨,y×É[œÒ„JŠ†ÿ_H£=»p…zÚËqO‡Ô©ºÃõør†ýoeñƒãåÔZìG¦“œàaÇ*°íÌòù¦äûyMùÑkkÎ ÌN6žba~b°nrE±t›G'Š‹ŽBª«/}y’Çœ£€“úžK§§-{}<›Mˆ¿‡$(ÛÈÓ‹6Vrwç8Ƽ• +ßáÉq®Ṉ̃©_eEó2%ÅùÈi§9ÇoÏ’i'ãË!üþoXmþè¼Ø ÌRŠ?£ƒ&×_»’;óšv ¹Ê÷çißœî9Á—o8±ç¿<£œã:óvª~Ž½EƒÌ‰­ì<"¾µè­A1··öòŽ½h@W57nÄþ|ñ8 ‰ý¼n ±…¹ç=>®ce Ü_˜$?ÑÈó)anErlmÈҵͽœÆd¿~t~_;WÚ|yÈÇ]O<÷Ç‘Þ÷ø+2ʉvýãÝU(Qm#Êý]ù‚rSã~A¨•}9V,oεmO‡8…¿3&ÑqõŸ¯˜Þ·Êiíâ"uið)•^öàÁ—z‹M‰"IÞÖ#ïá«ô·ÕS§‰±ãN^ðæJ8{“%ÏÝÃmˆR¼Ñ ¶ßèâ¨rEI¶ÞóÎt‹ $ ñ½¸ çÞ´ÛÝ${uïo§™ú{œ$ÌÍrú¼±Ò!/Ü©#î:~WáRÄ¥ˆârm:n6×éäè¾Æ¿ÓÎRv¿î懰ó ’\rcmkžY?àMÓ òÎXdzc§»_2aôïmvS ÒXÛ±w üWƒŸV±1_I ÕÑ@Ðû;ƒÀÛ3cŸ?xöÚÝìGo¯ˆ<ÉOQ–^ÇNã.y šWr7½¿_‡ _òÛIkï) íí¯ùJQ%:“ð<}Ü[_f¤ý}¹ÌÈQqÏHXv·np¸B×)Dúù‘¬åáÁËðÌÇ—ëž»AU}½À¼´30ûÊoðÔui 2¾ï'ÝÔ|oÀ‡ÉV?ÞGÕÄsUe½†¿Ÿ~¬Ð]d·Ç€”°ù:ãýü—…ÆÈBß±×^=Óԛ駳Žôó8ßèäÊJ†Q~þòjT,Ì} ež¹_¸Û•Ø°BBŸm‡†œdÄqÇ}欒Vñ6ÐsSÍ!×KòÙ¿«¯CLm©R|4¹à‘›ãRM»’=ž#‰æ^úË‘ëpO3O€äOêØ‘¯aÎi„yRv½ôç1‡¬Ÿhr#”¡­ÒÖ>O«r+Óßi{ç1üÝM þ<Ë neù?‡3ÅF9˜RÌ©F-Î_*çkL«ßœÖ§NdŽ02ˆïÏU¹Ñ¦ç8à¹×™ +ˆEþþ"º•ˆ„ý!þ²qDj*Ÿ¡µúyFž½Ý*±6#üdÿG 3ó”Ž4WJ•®8ß;kÌd9Ñm§ž¸ñç^ae#˜€¹ç(î·¨—p±ää;Ç"ËöçQQî6=ùžKéÉtÔ›GnJHöáÎû—êOÓÆê¾Fe7æHVç’âMmnHKe€ |ǫuæO9ƒs~s].9*”Xû,Ÿð´uÕFýä½¾¾_ßA¨£·ëÛƒ-›S’·ƒÎÁ'œï~vŽüîúóÄó¢Ü÷nzÞÚ[œ’3Ûœj#º‘Ä6}¥ }%¾±°!U‡Éõ÷ú9F¾¼2ÓaY´5´!¯ÿ!xp¼â‘n½´øq¦P£°ÓœUËp“¿ìæ H<Á1ÛÈs›Žœ‹5Ï{óB§žòÍùÈF[OãÎífös‹XÜý;m'ÙÅ.PªÚ¢ç^*ä³(=ýœ<Û W ÕHXëÛ·"N"ü-ÿ…¹Ò°6ø_ëçi5†‡‘ê*JO"Ní/Ð9€Dd¹ñuÁ³5fq_‚g@½EÖäœeU‘›Sì$ðúe¾µÅ™¨³©6ð·2ÒãPȬä¿ôg‡8gè€÷–ݧ´›w7t„(²€8u:5Y¬@¹ý>¾¶b›jo`£°· +öpÏÏWTcSa»Ç½¯Á[¢XêÓ¢A 9Ï®x¤˜¤7]46ÙÂÌIƒpÃ÷µ?Oë§WÃóçk´ ÷_8Ê›ÛNüÂôW×ÙÈ’eÚì~®*J4ßQU*A +nò0UyåÞz}éU'§NŸáÙbú<.RSþ9ßô“±>$ÈÇèàa˜e›©Árͺݮ{}ÜDbØ Œ ¹×±ôöýéVa©øÚÖúxf üÃm-â~Ÿ¢ÞÎ!3?–äƒã  _ÇÃÃöð(êÕ­)ïï xxýÜqzQP®T]ã`4öZçîæ !‹‚}ºqG…Ñ‚ ã~:(Úm¨ÛìäÊxU†—Ößs.7XwáüyŽª£Ë]|GëÛU*óoc‹ݧ´kÌ‹ƒYoãÎŽŠ¶mðå¨þð­'Cȵɪ’ÇënyµvÈ凅ôúÿµ®ŒNîÿ0WÉæ¡7½¸€ÎðìÜ{}?G ÿS§0ú¸æXþr¤!ì¼ÉLèæòøvíɱÖ4ÍôòTo¼ÆÇÛÉÙWáÎ °ßœ[ks m¹ñæ)mé§0G5¿‰ös¶‘d½õ6ö[·0M‡ÅQkŽÿ_ Tå +y/·•™0¡²ñã-^SGá}{ò Šcî$K¸\iÃå趖ùxZæê-÷O9¦bïkøÚÜLb.Qmnÿ_!UTšxÉ7¿·çQqg³Øén9£ô»‰'þ —žÃ“hhÙX)¿q%©)ÍÀñÔq+ [PÏq¦¼òî3üî”Gsúý€éÅû€ãÞÌm§~?aX\S°Óîäì[Hâ¿ÃÂÜFÖÓír5ÓÛÆÙ€Ü-~bÛv¿qoò‡ÑhŽ¼˜ÇœŽ‡^q-´{oõs‹ÚÎ~p{œv“Î76·:½Žœé­Î¶ØÛøsuõ™bÇ™£KŽHDËŽÜÌáÏløsÍ¿<¹Üi{ó*.îrZv>Éòå;hÈä,^o•_§W3JÀ¯‡+ïÖÞ}§¥¡©;Çf¹å'ú¼Í‰âlªov'N¡ç:xÉs¤`Ðs%@ÚãuCXóyÙ×vñà ·18çq[Ž”BÇ^OŽ+.œèS^çœÄÑúý\Ë[Mù™tæ[Kyy,9Îÿ U.¼ŒâÜËÇ$ s6ë9’6¹"#¯Ó̉îŽrPOÇ™onI¦û\²ïÀj¤©¨6¿¿ßëåúôoC>Î TƒÝW3¢°6ç0„Xs ç! çj×<ìÛœKÎW^w¸óµa~dq”]x“Δ¾d-ôp¨z¢À]šwå,~%Òb>vÛZúÛãÂQŒ©nãKqŠyë~qúû9ŽMuá"ß¿0J o"N ïÈ’>#˜Ãwç}½ý¼õ͇‡93nþžcy,tör<ϸùñã'×{Ö¿èûâÓ]9 +­-ȲÂþîC©]†¼„Àoéç“nŸ0Ë3ݹˆ¹»s2Â>=ùÛS…`æ9QT}]ù‡kU/ßN]7êÍVÆÒnÖ¿×ÁS ëqž˜Ävñ,=!uLàYñ$•½Ù€}„ë÷ðöWõ—œûðmmÛ¿X:ƒN #±øpªg\B›–`H¹Â×<*·'Õ;²MÁýÿ>eôéžë?Å Ù‘ô#_‡ nvȳVÐ+Úä¨6··Ã…ƒ©9oùn ¶žÚ¯^A&¿O9G.ÐG3¬û…Øøó›N#†ð€èju[ª­ŒN©rý?ÌûÂëó^8GÒfG,_©ø¹†“Œþšc¨À'S÷p*®A*ËnË`>Ž&ñ=Àx€>ÛÄn9&Ö`çè×^ݾ¾ÝG§Hå¹ÕA {~.]J‰¦§{i¯kðÁCU*ö÷¯­ø¨£6íãß™Rf,o¯Õ§:&í{ß·8LDßEù¹çãÈ“NÃNEªÆ%Á6ÔÇpÔî³)Ѹu7·å¬úœ‘$¯žP6÷·ùA¾ß]ø]óN„“îö×Ç^ÜDæJ„„öÚuìNœ ³|G™·]‚ÞÃÙqÀ3¨4R`µ 5PöúíÆÌ&ï{qE‡Uv=¿·ŽÔìéä¤Aß™ Jtñðç^T`–mnoôsŒ¹ð7í§;öèyë(S}}¼á·y$÷¿‡,ûð¡°è£}*¥øwÖâç4ïiO²ý¸•Ä"{-¥€Ó‰üMw)¾¿×·ÑV ×öwï÷p¼uHïßí¿‡ v§É™åÈ”ø·}³úy6ŸX´¸ä¨ñOzäÛ·÷s/ó“Úÿ`“0ì']9Àæ5R ûûyűá)ÐéÎÆ(§[ü9Ø©WÓ¹ðçb@šýÜñ­Ø¼ò×ìúÏ9Å\ý¤óÞ|R-³·#O…ÓÔØ}Ãë2TZËãÃév¿k[êãæ?™;vО'±GTS¨ú>®'±iÖÖ¾–?!sl"}ÃÛãÀ9ÀHaÛˆ,­X=þž+ŽHíÔwäœzZˆ‘ÀƶÂK|x§é뺽Á6¾¼Zb8£:Øxo/ƒÍˆM¹†¼–ødt g ÕÕ X_‘©Yß¿ cÕ‚rTxqš ÈO'¥%Ç8=!þîqùv1¾±]¾Z6vúxls T×þ>N¼1˜Â=…Ž£·ç]·¸Óú!ËïsÌ{ºwãÆú³{‚8ʼn £áð¿ØÔexˆÌkrÀßêâ ]HãDQon8QS^Üv¤@ÓŽÔ&~ž<áXÙ‰ï~OÄs +Ô%Á¿•5E‰7ãUL·#ú9„¶ÐçÆêÃï|y+„?',‹Ÿ¿žü>Žp4·ÐýÅ59Äb>Þp’=¬o§:*HíÌfÖçV7çHðçG·nnÉk9•@½¹•,¼Í ¯2£}|ÊaÎÉ'œ]ý¼ì6¼æ5ÏÛÜrDv¶œåÎHO¾³ÈˆëÂÉê#9>7±ì=¼©OÄ'Ô0¢Ž¢%nÁ¼yWY»—3Ö¼ÏxÜq¨Á»èæX`ÛÉÑ(<áT/¦×Øӽùí/ÎÍÛ1¿1I§11·<–ÝÇ\:Þ= +O@÷–âÿpälçÉ™èÞû¾=ïÀ‡2a2aì÷&ÿÓÀŸ«}5›ÃÝŸßê |x‚è¦^ªËØô2Hžè66·- hÅðÅÝ÷Aü¿§…¯ÔUŽšV}¤÷ñà\…v鯀çO_íýœâæâ㜅Iˆv,n6ª‹’N€âIÓéåÄ~>—ª=(tÒ +Jèö⸫Šêð?sr."ã´þ'8•IÇqj©û¬`¢‘÷~Þ$1\9©¢(mï_úx—Ì$ +m¯³ÖsÅ¢ÃQà?¦Üs¾ g¿½p|n[pêeBË(ïãÀF¢§ÈÅJ7.–øqM†T£ïöòfð >ÓõiÌ{Äg¹çlÂE¹ÖççQ!ös µ»žúŽBÇ)>r’U·tk_è<µN¨Jù§,auÍöê°ÚÝM¬ ´±½¾«ŸìrŽ6¹½»/ßÂüDæm“!“aáoîÎ ñwBl šã°à7×l5¡ +ÝÀ`OÀ7öñ5…2Î4vÓŽ«JÔàmv«¹Fây…ËkþkΚ"ÚvÎYgá/;7Gj«“èûD ™¥½ûô×^#ñ]ZÂÿŸñR5Ü5øp>Ïn¬Œ@7e,H><á+$Œy.ž¦gד©Œ¡ÖçÇŽTqJuö÷ä§g#_p{|9Ä)ñ¿·(oÚÜí¥d×·9A1y&c°î8oý&VŠÌ¡µÅô·³'éXüx‰ÌFMÁ׉ªæaG¹•J¡øü~ ólͧÈ,7ùªÃ¥õâ®Ze†œî¹L>Þ;~ +ñvÎGÇ“òþ&hÅøªÃstulöqò†Hd g1ãô Z·[ž&+h$„ëÌS£R@[î¿Úì¥~d ¥$_·'ÁO‡ôs¿+Ì×óç5¦S{ð^ôµV)kBñ|>¾‚⯠øðàu¡ŽC ñ†¢BA¿ënD•Š÷ò5D—6ý{òKÙId¯ïq§åÄÎ<×R=¼CfW ›öðâ>ñöüxÛF§©)ÉøqÂ*pùž_·‡~eG6úyÜ“–íìäyŸÃSÈs:³i¯³˜›Ck}|n­>÷%Ð1ˆÉ3´[Š£÷ó‹Ö¬BüÂqE'°Ó·<+Thl~žq5J~Žu$꣜E#é×èçAÔXsÀç"¯~nÌhç8Åùs‘aÎI%¹š) æ%sÍ-¹ÜR…™AnsI¶ó2Tðç6ªRt:|yŽY•ôâ;?I¶íׄÛÕž*ô°JAì5å~!™Þ¢\rZ{ý¶aõ_…pÆ·¹ç¡ne†-Ê3¢ëõsA²‘n7LO1+sžƒ_o<º;ó¾ï0±×(‡ÓÇl8’GiÁãáÏ\ßëæD{ó›0?O0K)]G"É6ïtÜsѼYãÈR1™ 7ä¨Oôó6Ûøs&¢J,Å%‰‡»$ˆvÀ¦à‹yžñú9n9¯¬®¤–®%Üòƒå­·Oìà_WO‰ä,0RºD^¡Œ²B_ཀú¸šÄ0·Ä¡óHamI@8çÜn +höƬíbn>Èú~<sÆ2Ê¥î.}Ÿ¯Ã€þvÌ©D¯söàSŠbCvÛ¨S…ý—àU›(Ú›=ë}G8löQm'S9¶Þ÷Óž’FFµ¼4ç_,û|mõr+3)¸ïÌCný»}üÇPþz‘a®Ÿ—- "æó‘Ñ<·ˆf|&š&üP)¦=µï ?O<Ňì ï{¾6ðîo§XÍ1 °×ÝÐÜñ/ˆàmf¾„ö:kÄRº|s&:(¿ºJéب¿ì¹à“äg¼gFScð·0R—=³™cˆÄ-áÎd•c¨¶–úyÅIM< gŒïúIú¹Í·¹¿ìæK‹ŸÏC |8m{h·–YøE2ÍÒjÆ6°«“ë7ïñà™šVó1QÜû8–Ä)Êíü¸™Ç#c¥øg c  kíú8u;íâ>ïèágê|æž³Ø.x˜|Dºû9‚J‡Ÿ·3Óa6¦üŸOƒ%½ãÌ«€+=ï§çÇJ,5ãÕ¿@;ü8éO—¶¨¿$KK *|OæŸ]-nEz7Muç^`˜Ëª 9ÅÛÍŸŽHJq¯;U<ã·_§‹žƒâF‹E½#ò<;¹Jq]†Oqà>kr}=8á̦œ¬ó@1 ž4âµ, ¹*¦æµOÌËRO<* sÞ{‘{ø󧨷8=aNG5ŒO7wÞWœã”sóÁùÈH9LWœ–^xÈO<²¯9‰Åõç?šík9Š¡íç0Ùê,ðšz¸Áš¢m®‡ør‰<—QMÍ)C¤‡ÃãÂÅ=¡×˜lG~d¬-Ìëï‹ò-iºñºsnÜÇÎZtO;Üâã˜ZÃNqU ñÏ î8ñ[v·8±ãæ…ç–Síú¹Åä¹æ »¿£¬wç"¥t‡X¼‚Ço9ÅqÉq›s(nIÝþîgö¼åºÃösµ`Þ³™b[žIˆ~¶oÀ» +ùl1Iýàüœyw½ +8ÿ_ ´¯î£™ÄœçæŸo2|ÂóƤ_žYÁ<æ$SãÎ^bŸtdP{ó¦•SãÎ SnÚsµdxòv0°Þçˆ|ñ›Q"o{µøXý@u8`p\ }¾ÎV®\츦õ ‡¹øòº³ä*•,G‹$k£¹øøò9M½¹ÅšýùŠC~Aªšþ:q²¡Ë›þºò$¬O~üÁ&š÷טǽ§9*{ó‘6ç nƒ‘jh<•” ùôðQÃ,ðiì×îâ”ÂæÇŒµfÜÅ%^ëû9ÒK¿QÛœš@@íÎ .ë_™oëáÎGh¿0TM`O··"½ä'Nf£„£g|¡öÑǼI÷&Ÿ¯ÑÆ=ë÷þÞCÄC}O=”3î%Óêßš¤«veÖÌ=„_ƒO½a‰]c¬BˆçÞ6¸ +2WÒç*C=3 »X†¿ ×^1)ð·(§i¿Ñn xBÉ›ºt²«îuKXð©õ #TE\ ½ËvÖýøõ;R@Ö#NzN`©]ÄÛÁŸÐ[)úÔºYk%Ðâ@PÕÈÇj fÝ1ð@=€7åµÅÖ ˜ütp3=ˆ>âkiØéÄþ}ÏÔx›5K0;´U$(Ðp9Ä(q\å5š©Ò—þ)S´|H·º„aÙ^þ‘wva‡o»…'­™Ö .W+ ·{§ fê|µQ”ˆ–v>XÖä–6â‡À_ §XÜkmÒáõð4ë \p×€ƒKÌXT»‘~®ÜuG-îß´ÂÃÄs“pÔ¯0Nê4ör3?÷‡8½ù`߆¶gŸ9ô:¾Šgó“âRAc.)‘*@îù$Àê98ÐgÚH!‰Ð÷¿ëü8‡Äðó¸.[ÀèG×~6Uá .ƒSÜéìð¿*pA>õòïæ)[Ÿ×Ç…“©yn›âË-¯ ­g$h5ÐØ{A㮶íä•£[é¥ôïÎ’•YŽ–ð:xsL2JcT*AïÎhñ s‰*‡M~<ó{úžzTyu'èå—~ðméQð5r÷ÿ‰üx(我»ø‘Äž%î£nÒö·Ñľ0Â0l/~ùÞò±ûý\ú›O²)—ø¾¯ÁúbG´ñ ¿~<àX •¤Xq[G“‹/½¡ä˜ò„1Ÿ}íÌñÒàøm÷8o¬e|׃ÒWn‡˜¥ê=;{¤CªêTR ¸ã|ùÝ÷ùƒúÙ\îýœáýg‰Žõ_®f‰¼yÛc¨ú_ê¿:\eoßïçŸ moÎI‰ ðèz=‡æðPI·º;ý_ã´»(ñþ›ð?Í”„“áÆ9)|µÔka÷q‡Ã…A:Gíþú•Kü¾Ç‰í¯n•“29>?b£ÄçÃd£Ên-ÁB¢É›©¼¹˜± }|8çì¨e܇· ;EǼ½—_g'ÕûÜR‰¢m4>Ȭm§8³xßœZ §ê9ÄÕnç&ö×œàŒžKŽ˜(·yBR¡G´kǼAîŸ@îãv,¤4íÆJ’/oߎ8R{·ö[ŠŒ¡Ô¬W"©Zy?F߸{¢Ý¹ 2g ³L›æµÿ_o²Y±.ŸR½2ûл^ÄØ®žôøreÄ[6Ô­CÝù‹E@óH_AnÜ‹WrÝù¶!Y #ö ¿‡ƒÒߪÔ?–¦có´Š +ë…£”ü(¹7Xg.£TÑÖ÷ÝÏo }à,k~M‚0ß“#£¹íÎÒnÔó‚ajìMµ¿2¤ Züä¨ þŽvë¸|yËÜn;m®O}y› Ä \o}~®€c5LºøwøiÇüÿ‚súß^ø‰;þ¾A•ÊÛÎä\ûy‚¥~øÇŠÁk.&³Gaþ³-8v7saý<„êOçÅ ²kߒЋh5ç&7æ9ëßB}œéfÚ,yœ8cΚÌu½ü9ÅÒÞÄêµ¾¾a—FæP××õ¿0UGÇ‘ƒíç*üðŒó˜‚üìCμ£Ïù‚Xï£ò‹77o÷ÌíçF¯žjо>áüÀxs¶ÄBwæ7Æw6æ ±Áôò+f!~qlÅn`—2ãÌ™vø󙔯ˆæ&Í$µÆ|Å›×Ë"÷úøõÃ6F¨×>¹[~´jâń׵µÞç„;=`›ˆ\ž˜å +ÄÄxñ’h¼¦çb[ò-O¼y +m9ŒkãÎJO=·žó±ÉÔ”co8KGng¤‹n¼pmô{yÆ^ae·;HÇnd*N¼å³Nr`×ç ýÑ~Üi­mO!¯2ÁÛ’QoÌêI6æx¼Î‡içvéæE}šû9ÉXý<ÈŒ[Oiå©~9¸QÒ"ü—-ÐlÛæÒ%ˆðàáA™F5ðäÈó&ës'õ=¼Å&e +4äVÍVçc7_žþµo8>nÓ‘æÎxýÜ‹6qÚ;ò NsÚ;þ|ƒY.†üGfœÈò‚oÀg¨ø½DèÖ¾¼/™û$ÔfiŠº=Sôß-vθ>Ëèoìåú›éL¹J²[‚'[i§ +ȃiÈ,›°ó¯²ãêe8ß,eͯo‡1Ȥœ…9žE$“¥¹ÁHíÉÈ?H9Æm;roº ¹ÞV’Õ@pTËŽ;s)V"üO×RÞülžŸa'îæ6{óçBký|äþøïÎÆÃû9ŒBÇÙÌðSëáÉÔ°m=¬;s,ÑíöqU“d, iÇìF@þÍ4û¹‚0]oáÆœIƒ›4U6¶äÊ61â9)e¸ïØÎFݧ‡ÕÎ55è|xù‚þš˜ \Ûøre|!ßÃóãð*öøß‘*´íÌRû©¯ÓÅ?CºÂÝÇ>eãó©'O&²/ †SßtgÞÝG>5—ÿ˜ÉT2yñ˜¢™$‰#p +¸ëÈu9ÞKü²sµæDlu{_mü/À÷‹ä]„äƒs©àQ_I>dÇPSÂó{4k©<*ð91œç<`y[jÊ…õÍÿ3ã€`ƒ(s i&ÍL`ÝŽôðáEëÍËÏ(>éÓOˆ<¡À–½¼™ qißž–•F·øväi¨ƒj}½¹¢Aí!>äy0ðèoÈu8bòøh>}Ü& y‚Zƒ˜‡œ¢Œ–O,Ñí©²ÈÃRø{ñq˜* +Â[ÛìàP‚¥‰ûüyˆáöB~ž%3=w¾Ê4 º¢•®;và1™‰ì ïÆV”“o2<›O9A‰´ÚÛûyÉëK|xõ‡È{=œuŽ ß’–;hÏ9 +Uq¯:òB绘h>®tñØ{.bvúþÂÄ·«œ]¶ü9ˆËänMµá¦ôÇŽùð¦º[‚¶zQVxžø„'y¸ú9T*omGÝÌGÝ?³‘¼»m4ã^*¡”üF§‰œm Æo¥ÇßÄ`„.áã¥øf„Úär&5â‚‘ôä¤ckó¶×^p`W¿#»í?·™"˜·{Û™–bÂÃœìï~q9T$›én`™~ûëȳê{ëáÌ6ßÎ^Yœ„wÐsÛ5ç´½Ç8ì×2ûyŠU°ãeNÍÒÆ9¯»œdÌñüùŠLÃ`|ÉkëÌ'3\‘~q|Ïo`Ÿ3o!T怆÷ñä ³pRuävÎwñüù†Læ}¼ŒùÉ­ö¹³™c«r%ftؤîíÄ&xê‘¢Sïvøð½õ§­I*0/b/¥ýœ"ž¡³úbsH ßõ-9΢2¤’.OåÀ§1²¼„o+ rb­ûyŠ©·Ÿo!Îws°ç yݬyÄ9%·qÚM9ÉáÞ/íçJÊ?_o%Â4úyÆsnbbtçi¯2œío§øó [ÝN¿Wªßqúù›s<  ä”Ks"‘×QÌÊ=¼ä·œìM¹îã™éšà{Hå~³Íƒí¶žê§^[ϧüÔÉI'éàíAœ +Fºý<œ¹ÄÎmœm¥Ï1>mcãÌ2æWnǘ†`˜µÌ‹˜_Äßœ&ÌÛCÈ’ãR±µÏ0šÙdÒçžbò©çF’Y4óN\j¡¯1šGYpV÷ã[ôFžSrƒë‹›zOU‡:ˆÅÀör´ŸOI‡SÏ2Åb»ˆ6å]cP|´Œ–µŽ¼kÕûk̶ÎßÃÕ'v‡˜UÓ˜jGf>m˜__12ۘܟãΣµÍ¹˜|?>u1öqº¸m_¿žË¶¤ +Y|í±¿$âTáõ·n1Vûöñ²²”“®¿6OSíæ—o9C>£éäضÌ>ŽxRê>9&(›÷ä¨áݯ0Õ€¾<ÅQ)ßǼÇ×^D½x§¨ÂS-U°ZÊGip÷b?I%žŸ_$•*l5z»‘)°zåÅ¢M±“­ü6Xˆ¹ä©d^A:(´€ôßîà=™*#ÈEÄ1{ì -pOÝÀ®— R`¹ÊŠ]KTL¬ë©µ‰><5ØÎ0<)ÑÉHÐ\n?_`-ÂSêu z£å°³øw7@øq%€_Éè{¥_7KZÚwç66·83î:8J.{r<‹¼~ZsƒF$_χçðhËÇ‘3–$Eä|K ¦¹¹5LÖúÚA«ƒjS`Rtg™˜ßÞmMý‡‰ß87Ö÷$ûnOÑÀï6E),OÇNÃKxëÄ6+^Žö|äåY£Ù­­ w¨œ4e¼ÁË¥ˆüOèçtÓYñ?^ŸÛɪÁÀÜä´'QâyÛÔÆõút·!×c;l/~üh¬Ä˜ß[ÆÙæ.E»9‚¢1ŸñZÿpåÅ~ùx厇aq‘bëæñ"úñ]›‚XjMÏ|Ë[µMΧêâ3˜H :…¿³önIrm­û} ³Ðó#u·‡ WX©[ÎðÿG_Ë‚ ý'Žø]ò~(¨‘i×K}Ç^KŒµýŸr¯¯<@aùóˆd>χ"TE®†Çǘq?–ùãÛ ü¹ +®+7ÕȯNOÕÈò [·"Ë»þ\ˆÑxsªXwÈ x°Ÿ,?Ò~!Ë€ö6{ÎõX*-nÀvâGʹ‹•)”4¿ëáÄN:‚':ÞÜ z“èÛØuà+š¡ôã +¡¹<ÆîÃÃNp-Ì”)æ¿m8´ÀhýÀÇ@;rcI¹¯nIô¹ðç2×ú¼y‰´ŸëÌL46מköñæ"Àý\Á#Ì äýüà.tàåéseÚ¾Í>îüfÕTJç_ˆöñˆEæ>ÿ‡ÃN5Kd[jy‚@OoãÌÚ{q»„•7íÄÆ1 PoßSn!3:ì¹íÀ¿5[Ì${y +°ãÝ#øM…ƒ wæ]›{s„–cû9HË ža{w¹ç$›gÖ;ó$u[Ñ̯Ø÷çL7o1½0=ͯÈuݽœâ”ìtµ¹“Èòïðç +ù[ž(1Iú¹ÆÃœ]µæ ìGg]y¸lÙµ|?>F›7ƒ{žE¨Î4ÝȯGø¯íäisŠ“}ÚófõnÇ‘Ÿ9(¿½Æê¼è/¡íÈæö>7úù\Ú[ǘ[61Ðb9•Øb|mßÇ¿!b¸ûŽ¼:©‹TH¦Äžü)ývÅqÙ‚±ñøð§õb8¤íßKñ‹e:Úö7 ô‘ÄýLkä{m&þÎ0ãÙ:§ rŸe½œIÖS˜É¾šò¯ìðäiÏ1\ó˜nr·:íϯ'ÐÔ ¿ejÀºbZ€íÇ +Yƚ󹈷#–>Þs‰†¼Ê–"äs2myÓ]µ>ÞD­oŽ¼h«>>Ž†ç“)M͹1AííÌѱ^f¹Ù~yF¹’5¸ã®^¡5uÑ'øœÏ–¡øxôµÅ$nW]5å™tg)IKJ‚ß Ô8L¡Eþœ(%]5ç 9Àa’óÂfÐó,xDǸä˜0WörB`,Eù’,»sÌÉ—ˆ<“_R;rDx*Û’!ÂŽ£™”/2.£ÙÎêp¤š^÷$¿:R˜ÖT6v?‡Ã”#×¼¨ùC1TÀë¶îHúÉâY¯Öü…X÷ú¹V=íñçG‡#N¾gnE•6Žat'÷8´&Aý¼Äècúoη‘Ûœd›pïÈu¬-~pÀZ¥ৗo$cÚe[Oìã5dZê9 +H¾Î7×a·×N5UP4}ù І¿%RMåö¯ãÆüBP„ëðâƒ#ä[ëâ¦aïkû9Ž_y{éÆšõ ºý¾fª÷ˆÐ}}¹žîŽLÃi·±ú8ä´€oñä JÊ¿W&ä '•‡°›qã;ÔÛ¸Ðñ†¨¹SÛg +OÇë ÔÚãÛÈPícõsزnOvàC)!ˆ#PGá¤è¯x³e6XÍ’í‚>ÎùҤȯí:{8\úÒ7È,nom_‡tƒ‘üx¤Â”•÷½¼x¤¾ÞMA¿Aðçv Þý¹ÂC»±æ)ˆú4äy¤Öÿw1H.5æ6u¼y¥ïÚßÝÌ ´#O¹Ó‘æˆ ò4”c]-~fÁ°ï˜¬‰?Äê?>X÷@°×Ã2²ikíñøDÌE$êI¹ïôñ7<[I'Ä{-ÄÖ3PÁΚ^ö¿aÆ m`Ín¹î&–/Ç€îq¦·Ñ߉–V·»÷sÄÇCíç#ù/€< x’8¸{QÀ±<àºÖä” û9ÇÌhoôó¢»¹á¥Ç8I­þŽEg×]9…—O§˜ÌdëÎÔÛ‚?§¬@Qb%I:‹ðÙásÿ0ÃÐéĦ3Ö#·\ßOeù€{Ãè·n`•ê9¶ :wâs¤.ûq›!1îíßflŽÒŸg0ÿwŽôŽ95>žÜÎ.þÞru §Ç˜¤[s ‹¡$-aðçqÌñO»^üÎŒ¬ºý]ùÛX|yáQáßžòG€çï‡: ¯œIó„{ag¿0³Èó8ä …ù¶¹±›¿"Išøéðäyó¹öû9|qÏ0¾6ootqfoc“c¥ù‚JÍÞ<Å$àkðíÈÏTOÕÌF¤ÞÞÞz:›}æj‹v?W"âó™##áÄrÂj‘m8õ7¦-‹§Ñnu~œ~fBYo…´ç“Ò¼3uÿ“yÝW¥¨)".@Scm8u¯£_Ë £µ¯áÂ·Ô ±üžCôñ6¤þÎG”y‹QÎc¿9knu¥¹æ:_œá’Üô’çtÏcÇZ ÛQ§‡3NGd±¿<¨ñ<Ì9!òçk ~žC¬7ãUXÝÈÚß“iZüp§7O2ZýùÍ;iÚüæ4ç¬oñç(Ó_H‰BñaѼù®a¥Aâ÷å×ú È"tÓjø{G,¥™pA€à‹K‚‹väå9Úàê5çÊcNãïçGD6:ó˜¡Q¯9ÇDœæ EçeU=œñ;u¿9$Ëo;3¨ùÜuÊE‰·90P;ó—ó$øs˜ª.¼½W`ñâx|æÝÕ¿‡(/ñÈë€æ&t»XÛÆäð³»É¿kžý¿[r]4<ââêG0J÷Ðèy‰µ¹ÕÃÜó‹(Cȵ3‹þÏ`iEôæ)Øò%aÙÛ·;ÁZÕ+ùpRËŽ#AÛÿ'I9‰þžÜ‰ˆþ“ÃäÙ¬G3 +E©þU‚ .?Gk2éñ„0c :iÉÔT̶äúzn×çuoå)þŽ1ÕNdcàx¦É°êâºF ;s¹.Aã$É·‡ªŽ¶™Ex´Óû97pŽüv¨u_«¿ñGúxrfAkÔ‘ÚöïÇÌf"¬{1T)Ý~Æün©mOÇÇõ3_ûy”†&ýûýüɈHLvm‘ªT€GbŽŽzÙϽ„Ѭ±â;fž¨!/öRAï-¼/{kíç,õê¶,ÞKG‡´,À¯(a¤(ÒÿG/ÃÔ%.\ë%-.*±-&3añ›YbŽøZçüL» ?â5Þ¸:)ƒÔÉWWŠŽ8¢NÝÎÝË|aôò±jÅ-:Zœ‰e° o¥øóQ +Z‡_{øòîo×ÙÎBÀwòæ Ò×Âè¯}{r<ësnpQo×ÙË#üIÑ,[mÌDÜöﶛêïúéÁW2Òü´7µÈ:ŸèàÔìq s©ÔÚýýšð ê`5AÁk {o 7ùÜJj{Èïuk~Wý\]árÓ*“~Çé'Ù¯Çøq%Öü^\Z’íö•Jµý„›p4éUK%èì4ú{*å—Ì÷æ6+&ªMÏáS¼ˆñ…m $÷·íçN‚I¹ñ>Ï£œBï&Ç^ç“rõÄ1JXíöê!ú\ráqúù0Ì‚œ|{þÛp0ÌTó<ÆàÚþ0Íú"Ö¶ƒ¾¿7b/Ûæy—ÈfÄvמec4-ûuýtáëÙ'{\Ÿ×ÈZFÝ!y°]ϨÎÓÇ:C¸ñÂ-‡$.£Äüçî8íoÖÜÅ-ìtÓ‘ªS]ù…Á"ö7ñ¿8 loÌÐTû9f^Üñ׿9möžp`þŽccaÈòÈ}¾:pi6žüÂòiÌ%Ç#ÊÖæNmó»ûžv*ÑÏ,¶îyÇqos€ˆÈyæ§`5ðç !>Þtb?Ÿ0¿ný½œÂaÉôOŽJ\°s©0Ô‡×ÈSÑ”Ž3âø ©"üJâÙænüo=4H²ŽÞÍMâŒÜ¯ìãVmÉ°Å ÷@Ó…_ÔR‰¼Í=ºðŒuÿJ@Ì·à »›i¯0MÌ$k~w~{w={žvyâ/μÏo2Ò/™Çz…Ï$J-Û‘å^pDÝÌÑÆW·9€WÇœe{ý~<‹>ºÜo©RO"¸7æzrWŽ4²xrR‹~rSnv4¿;Û¼ëÌ‘÷ýG$D†à߃¤¬1lÑp®?>^/£Jé(¢[ZÊ>:ÙÖ8—Êø«E¹“ù‚°×µx¶œÄø¢¯r9Šla/pØä%ˆþþgø• ÿGìë‡{ÇmµïãÀÛ3P5,$^Ü.½n¤u7"Æü°™ ›ƒÅFIv¿ otãÉЂÚ÷<à„!ï¯8½Ïqc}‡#ԽǘX3otzeT½ù1v·kó‰÷Éør%D·°xó ‰¸ÛKó[ëã¦F"…kðáå,Yª°”³hþú9* XŽöæÏÙÀã;PY Ç~!~H€Iöó˜pq¯åÌK†ý|‘‡S^÷·ÕÇHlÝïÉ‘?…þ¾r5iÐó¨Ÿ^d2ëÎ-9<ÆÍcÛ‡êç@Û·:‹s‰K¯ñæ|2¤ÑNŽÙ#è· oC1:‘AköíúøñS›a +Å”GñâR®04ã~BmOëáÏ ·‡2ÁOzÚøë1ç‰ü”°ïoãÀ«0©© qßÞnŠÄý<ô‚Çâ9Ëý£˜™nb’Âöñæ>Îcö‹óšOssØüy. QÌ";Øñé3ŽÁ}ÜêLæ?ŧ0IœÂ‘ª3¸ï»¦ÏÁG~a|ö=¿Ÿ8œïã{s™èßóäyóÉ>?ǦÏnN§06uyüyŠLäíûÜÃ.jwýïãÌM˜ÚÚ·1ŒÆßâ?O1¾<íÜñ/Õ t¶&¿ºyT߈eh™f?Iœvy@œŒFݵæ&†ã˜$µ"ÌבäaáãÌL7ëìæ3 ù‰à@½»}<‹*ƒqÈ“Ûœ°£þ§‚6ÄÇõI˜ØØó-+{¼_ûñ²e ó”D[Ž4ÕÇKóœøÏ“ôñ¾|o¿{žCŸi­E©e«˜)›c_ŠÜ“`@?x³Cöþ<çR'ðú8˜Æ\Gª…¾þJÁ'ò´ïôñÚA¨ÖÚ}{¨„®4ÒüMbçsý\á“%1â+ííÅ^ac<œNb³ù@ßïãÕ7ì{ør;ϼê|~íWÓÆÜň ¡=Çaßœ¥÷·åÎ,¶¿8ÆU~žeÿ—:’=ÄÚÜе]-¬"ßPãLë¸;}ÜÂ×@Eù¤nÍy‚K0·1L©±r<–Ü´@xêPzf˱ûUX­õñþa.Ÿu¾þ>õ'3Œ+ +`ºÛ_`ðábÏu‘ãLÇÃÇ_¿ˆ<í_ƒaF0н\Ò¸T†1rÞÉEͯܞÃ?¨^“æz:(±)èÅæ*:¬žkÄ ¶ã©µí~ü½;fL÷®Ï²·U« 涾Û˜óŽòÒ4`[ê×_‡ðÓ€> ÅêâÚEØ8KßC¡ú?>=©¾ƒCoHØXh,;Û˜¤ý'½ù‚kÞÞ6¾œá°•ÓSì·9y{îêƒô òгèZÊâm¦¿Eàs™äVVÐéÄEmøÛŒXœJæËouâ6Sü½É7½ÿoôp,Í*ý¼8õŽ„ÚÂýÇ )öø_Š¼61akiÇšr#_gYÀðíÏ<À >þc{‘¯†¼Æ,{Ûëøs¨î?§öóŠÇ»ãÎ("ßU¹ÚXó§ï§"È刷8» 4O8¸·³õî’cI:½þÉ¿ÝÃWÐÜcùÖ´ðú8±òv1kZÚkÛ‰œf¨Jä_·o§ŒUõVñÐû-áãÆlF«}ÇÓoo11´[ˆ ݜڃÄN)Fbr£ìóÂ+o=ywü¹Íg¹ïãnIŽpâÙ¢³ ,÷3ÄH>̲mçm:öÓ˜šq}9Yõ?F–¼¦¼Âõ»Ç‡ÑÈ“Mí:r3U<ÍM]¸÷¿¢ÄƒÌó¸/cùò4õhÚŸ9êUºsõ© Ï€CçŒÞ”ÊÄ5à%ÔN«|ˆk1Ðé÷p¾õ+¯õÈ@cô_€wQ:­UŒ+\Ú÷ïÀ+9O&"ÌIxqUGn܃,væ&R9Á‡1H–ÂÈW·~z#ÌŠÛ»s’Öã® à_Ôq³q©ŠÇ˜Rƒa¿…ùÍc™´<…4–Óǘî<àì@±æ<Âão1yÍ ÑɽíÉp9ä¤o»™!ˆ9äÚu¶œÊ~Lr©#Q{‘ËôWÑÙ°Á /¦–ørÄú1µKôÁ–Š­ h<å.&Àsó7=85\­­ùz§&ÜÂìmÈòNêm~üí*ÞÑΚ¡¹iÊžöä)«—çœkžv“ÞÃ|Ùð¾¼àÕl5ü¹ÃçéߊÆ'éâW«X‡ ø‰þ•QëÿeíbN½¼O t„ÈoíçXó× wú9f¿²Ü‡<›¯ÈÏ%¹ˆŸdŽ!'ÑÎKO¾ö‘ª`¾œƒ:•ððñã]cÝ´s¼8þx#`2~Œ|9&s»éçtò?G$ÊC%ôíƪÈ3§åȾX:ó4gÙõs T¥›éãlÎY8™=¼÷ŸµyÂ'ý&ƒŠÌ'¿b~¿.i”0{uöóªÖ v׉lT{ßxÍRw‘¯2a•LšqEDw•n=Tɺ-|8•ÆX+¿‘²Ä¿ïÅ,x¼Æ  ÍOÙƒÛíïÄô•|y掚ó$Ü÷°ç«=ëøøEH€:óÌþÍ?9w1,MºÇ·3ÁHÊoÜ“ÌânüXàS+aÑ`+÷ùò$ñío§èäI£î}ü9S´`Qc{óCXŸ®Ü‰3…_kkýü;¾úµJÃi kɆ××AR£º<ó™ãfø:8±ö‚8¦ê‡PpÃâ;Yd€öÓ±·°øðƱf§•WW&ÄûüLTa‹½d„“#iq£}ŽªŽÝmâ8#u*|ÑÒù°*y#CÆÓHÀ¸‘U‰*¡º h>ü ½5äŠî™ÄÑTÝ¢ â ZëcqcÞäqAÔ‰Iœ´ÌbŠãÌø4®vƒþªƒo oÀ8˜h³(‘'¼¾Mõ$ÛŽAö÷æa"îçJ÷Ï1ˆ_]}·ç kØèp9*8¶ }—øXÿàßé®\¡—«3­lc}zù4ŠF«ß]Å©ú-Ã!šNKb}§–e­1î¹ð7øñ+TìEô×_»UÄ©¸@g:Ó1ckÙÉ÷ |ëðà#ÔúrcköÔp§È®uøñS‡Ä£o·ŽhÁæd]Çéç5U+ôs‹sÎ-‹û9-íôsÎ6.œƒV7žý¹†Ä‹“Î$îíÞß©äyrRyá7†ƒœDDÜÏ4 ¦öá“ôZ²ÑØ÷iôpHÌU¦”1í¯Ãˆww«f'Äñ·ˆ§q%1’töñŸf]/ÄÎ)BdúΞŽqeØ=¿qE +;’y˜)ó°;pEèn=ò3lÔk£· •$ÿ=C{ø &«ý׸Öü.—¹æ*Š•Q¦Ÿ@ªÜVàŸíâq'¿xÝ/{Ÿ†œ óÝ;%þž!–CÉôݹ6™Ä|— Üá~qo{ú9ÆD±æ7@O0I ]yå$s=2î·°ŠröPÐQÙuÓœ¦¦ È“íéäI$ב*ê@ì{rË¿^q'8¸ž)qÛ‘åKsd…HT×™c6:ør\=žÎM§=®xãCFZÖ×ÙÃéG£§&t½ÛöòÎ=9ôÙpÔˆ…#h_ vGÂVž mkÅBIåžr$ánbfèOnbnäj‚ë¡)(lyÉdÚþŸ‡8¼Œy†C¸jyxo~cÙ¯ìç +ìçLÑÌEKó ˆ 9Ò>ÓÀû¯˜«Á‡8½½Óôö<©¯\y„TË"Ümß…l5Ûãíç E¹ÂI¾®G®t×ûy¥Jß‘ßÝæÐþ|çá{ýü’µcM{hmÏHêÊxß^ÕÆÇ÷¿§ž ÖAð<_åù·F,<9.Cv<ç›Ü_“`býùª§ä^uå¨cüon`œôq² Ø»˜Y¼yÄÊ}½Æ¼ãÞÿÑÅfLžÓëñà‡~w×NÜáŠ5î4âW›¾½¸ÏUïo1FÌš8¡À+n {;qI=š!ãqõñ-Ž6×ä ŠWÇm.x%Ö>œ}õ·y’;|{ñ1[·ßÆ÷º?>xÌÈAdóÃÏ +¿9Ç vû¹2(ѯ©íÎqÒßQáÎbæ:‰|‘a§9¸ÖкŸÜ“à;ÿw3Ö¦Ûø_‘* ½¹x÷±¾¼á<[þ:rD¦A­­~F‘ö~ëiǬƒÔ\c¥ÕrOA.ß9sD×1Ì€Ü+€{ƒª·ÚS¨<²G¨j Óh÷|ILS°(÷ÿ„o}~žü‘˜³=IùØå¦keEÜ‚þ.¤|@6äŒ&§ )4l$‚AîHš©¿°þÎãÇ™jñ) „%]u^Ö¿n:ä|öù·0QÐT€<Ȥ§ˆ‹näéÚ@úmÈ=EÀ 5AwÚ+…f$…6×bŸuOÆ×øð¶õ̆¬T¢í°a÷ë×^))¶íÀ€Aøs˜`‚ýÉîyľý/Ρ"Qk[ãõüy”mVØ|8¨èïMŸ¬» Á"œBª8Ç]…½ò>…—S”èºW—i0Z $H›G´ x}ó¦+½ˆ·}Ó_-LºinÃŒ“NHîE‡ VÌ g¹–û‡kþ½¼xæšr­üxuTÜáÀiX³€tý¼VP!P;ûmÉèÀýÊ’_[yÌJ:ó©GnÜÇk||8°Üm§8LÌW¿ÃNB”n7¹ïÌaA7>óE´›xó„TÅÞà^Ç’qùüyÊ:!¶ÃÃ-ƒÙÁ“Ò~!äÈñ=ý5úÿoŒßLöñíÛµ¾þ#éé¼»¿â?qàa#ÃN'ë"ko¼ñ–¾~ý‰úxß6u7ÒÜeÄ0à„µ½š=ål©K¥Jp »›[ŒÝwèWùª¸?mˆeú5ÓN“.Ô'i-ðäü9.4ì90k§3E»s§;‘˃ Ðs£¶£éç»F¼íâÜþºs¦:s°,yëßêç^eû¸ëÓüdÑ⊠ý¯onŒ‰êèWêíÌx²l?ÿwë§+s÷òÌøyÊ°˜Àøq¢´ïãôvã3Áöp/ê =Ѭ8È»%¿nM§nJ¦}uäè%fñ?_2Æ-Üsš{£áÎv*5ü¹€"ãÛÎ2) a’0¿ÙÌSE®ŸW#J¤y…‡:ÜË…<‘H¿™£œãÎK!S}~îbfì|9ÁØ*ŸÌÈ@·"ÔÇ›1¥_ösƬŸg;5&ÚtÓxó€žüàÀŽpeמ¸SôóÊ@=þîpq·õ¿1½Dq÷ðæ)*b<âeSÛ¨¸çMµ¸ÑŽ¡‘<~®=KÂx\Û°ïnnµeï(±Ç€¦/‡ˆÜ~Zñ‹§I“èâG¡f½”÷öq š¨^Øø߈ÌDylG"/Î÷ó½ãžh÷s‘kÌ,¤xrV‚VO˜=:Çn;ÇP"[ò-Ep'•˜€#¿ TWíõr)–úqó9àçžkó,+¸}á<ïäY ó”Q‘ɆÞ<Í{µöòm:Ç: +F™€öðº/ÑŠ¬ÏP®Ñ›}‡ûÒÇC“§ŒÀöéùÒ̘”1¡Ú4·Ì:/“ˆ§$ ‡;óCiÎ 0^c5øó¯š_o×ÌRU)îyZ¤cìäv¨ös”UêyÍåõó cZmçSÎ^I#Çžx Žpz;}Cœ”øsR‘ÀŸÔ´N˜t†ÿº‡*Ö„²=kk_é×…êÆ×מiXxéÌFf'éæ9%-ãáãÎ ëk›~|‹Pö'‘d}}ŸGöó‹“ãÌñ~Hm¯ñ9ì5ã%F¬tç*z@~<_eÏÒ ã”´Åˆö^úsÉ:rTgiðïΪ”8ÐkÈ¿#Ý ×ǘjáô~|n¨·~Þ‹#«˜¤{M¹Á¯YN«lžÞ xßû\sج¶½ûÛ·³‰šüyæ¯nüŽÕ6:sµ¯ wäšÕâié6!?Ÿ8ü,Æöï~0WBXÚ×þÏAž˜Iû¶ör-Uôñºº‚é{þ½ù,c597JȾÔDíðïÄçZ:­]ŸgNÚ!%GÄéü8Õbæ[¯‡Ç˜ 7aÇú5òP_Ne†òÉ(Þß_:)¯íç! °øiÎ1®Ó~tA½¹Óh¶öóŠè9ÆG±¿nF¬¨·m<9 ª4µþÆáªèæ0*¨Ó]lÏrÑ»_ãÎ{9ÁÆÏãΗñŠä{9ÄGsÎ!+áȳӒ{óÓ’m~e‰ æA ñç3‘gÃ~cˆÜ÷—S½ÇqÛ…c­ø–ÌXx‘ÂÝž¥ŠØ_^% ƒù‹ibêr †{\ð4ÏYp%È35§¸Ò°s"Ó±çkJyÍ!ÙÎ3GãnE‘-É8KÊj)ôÓ™«*¬¼h¬ÄŠÆé«üyÁe/íç2Û¹æ'Ç­Ï2 OÇ’i㙌ïÌ/Mo†¼êQ~Ü””z{3%%¾®g‰}>^tLV­.×òáíôÃÒØeU÷tú¸w:GÓ£‰ +n9c 4*ºvöž=É+1íks‘¯ñøs¯8Ÿx«ßèç—=‡8µ)^ýùѧ`ÝùÄÑÜ~|àÔ£ˆHáÎÂoÎB;ó"Rü9’:M¾<æãÛ¿;’ŸÍì/Î2P‰5æ 0ãõxð7õ —¾g soÝ<¨]yLÐUÊÖµšÇë<,¿&%¿€íÎ?ËÂwæðݾ r”ª‡Ú;}ÜÀPªÚÂÞ<‰:Üväp›¬>r ãõs%‚_ÛÎÞÄh9¶ E¸ÇQ£óÔnÁàƒ”$.‚×±ú8ý$%»mߘÀãÎ6 ¯9– {9¶#ÈÂTø|9Ža¾çõ"I)Ð|yаçšÞÚñ×-϶qàx'e¹¿F·¿9â‡rÜûmÄÖ*nO'¸Ó¿1#]´6±ðä¯7b‹qU„Ö„o¦œdÅŸsÆÚQj”ÿ‰ãÁG ”0øéÆìÑJ nNã^$q(ŠŽÝ¿.5TÆMÇn7ÔÓuäw·#< â þîc1i~tÐiÎPÔ˜õ>à»SW ;nmuk‘kÿ…‡üGŠ¯KÝ{­éÅ>1—³ÆØ.Ë*$#wÊUYTT(¹ý¨ *Ü“`Öºê}=dõº‹3tî å–’óc"H˜l¶äu÷[Ãâ;U,Q;™ÁQ-´ð-p{ûOñæ)Ô«_ÙÈî¾H¿Ý¯<î ßoÑÈxzR«16P åÓþ}#Nt+ “WÄ*e=‰2€öÿ“‡Ýȹû–¢b_SôÛˆªòê„_B/ôqªJ…V±;­§8Õúx£‘k%ŽŠ’M‡Çˆš¿ž•‰Ò猺 ª}žýœº¯Ox͸UzËb;¼o{ñï_60o¦œw#Añçh÷íáúé¯:×ØXÖ;sŽûxëÏK!µ¯ß˜¦san÷¿:GÒÀøßNIŠ¦ú[Os/ͯ·6,°n,xωf3··Œ5„ÊN½ù|]Ï}ÌMG˜á7µýŸHáò QŠap°í´~î4cØi‚3o«‰,^0ÊOðÓŒuD’|;r0Ø~\ê§W·ÃŒ8›ª’- íÄÎ:¬€‡¬ã‡øþÛq$f),|9"‰€”iÇs(otwï¯&@Céä‘uñç>þq‘îÞ2]uç@ìÞyÀ½õþ<â$¹ÛáÌRˆ¾žC’BÚóŠ·¼cñá…è9ç@‹ßAÁ_@É~×úûŽ%q;1*|8Ù"ìÇOoǘ]Š¶¿]¹Å˜‡!b´ãn½¼8„ÎÔ„ÀÄ‹Ü_€¦a‡ÊœÛÛÌ4ϵ{rdmG%Óßw&C%Û_ïç3íýtçEJéÛy›{vç0ãéçˆó/§8Êþ<á°kíüù†Xì5Òü†ë»ánpkŽuöyÊ3¯2Ç'ñïÎWsƒ!?O1²íæ ››)o«œã”xg­§neó]ãÙÏ·xsœqxÞÖçOo88טÄvü¹EÙ©ðæ7`ÞÞe¥·‡$í·ô[œdeK¯11RÞÎ'óš¸î-ÂÇ×üÕÄöï¯aán^©á•±½¿·Ã‘2†"`O~-j°Ô’/AÀ@À?;a[$kéÄÜ}»ò@¦ +9ÓR_‘æˆ)¿#ËÛ‘e^uHþSǺ +Ý-ÌÕU[‡*?H×<ÂÈ¿;P9…ðæU¦-Ì©Ga§ÓÎÍ5´<Ë z{y˜œÇ'åÎâ*5?Ç’`ÜäÏ~üÆó‘g}Ìë‡bH¯`/Ë-ô…Y|H׿ٿK ‹å×v—øpB‚˜ZðÌ°¶¼Ç$ýÄ`}|åä߸æE‡høs¦€yÑŽÄxs‰¤¿ÇœL<é¨ÈÔó‹BVÖÓ½¿W2Ç ó:S–6ÍòfÚóÉFyÌÓ‘ÌRG´Ä—UpÏæ8dƒØ§ør©ÿ|#IXãõð‹ˆY¼ä·#‘jê}ûñ¦¦´©¾œ‹-_›~D’}ç˜üÒ<&¿=ç9™G™§‡0UFlMû_ŒuÉ´ó/cÅÞJȼU~ŽüÄÄ‹k§15¯â;YM´ñçˆ÷‹[jÆüÁ5Ž§‘* ¿!Íw?W1Aæ +…·qðæ|˜U/ÝìàŸ7èì í~e­;n'qV÷ö_ŒÓ }ºþÎcŒÚÇÄ}|Í#Yx(´w?áíÈ™³Oš_.U6° ?š +€! âçvIæ)ß¿!ȺþËs‹¶üÆÍÏç(͹Ï}Ç9=œÆÆ㘈כ*¼|ã°!öó$Gp×NdÎH~Þd•¿/¯™ö¯`yŠ`½½œÁ1Q‡8¬Š@çš4p{}\‹-*ÛžP«cáÌÀøó yÅ”(úxÙ˜0óW¶§^MÈæº6ºûxSúÏÓaCY}¾ÙÀ®ZårZݾÎK8øŽ;§ôñŸ3T!IæÖà!›ë?™LÄ{{q’5 Î̶]G0I0¿"TL/áȓʘ^ǘnTòM5[)ïnJ5Þhל†:s¦Üyž:žÞÈ´Öä„€xó*Ó s›D=œê8TxsàGȲ9#^üâ.~È…­~r30ÂÆRxç—ÖZyU ƒpFœ?‡×Rêj"Dv» ¯³NY¯EñÙªé“Çëàч£Ì ›òjÀH'·9-“,Ÿ§ 4øó£BWœZO8ù$žrX®><ïåî5ç¦ áÎ֌ۜÖj9•i2$ð¿9¬´;A<ÄÀ/"Ëm|>hÌÔËWHë~ê‡+«×þNQÊvé¯+71P|•l‹kçõ׎Öãf#!׌µ,Tž` ‘¯81'êþÆc·;^sH®@øòR@c6'·sÎktøq=‰~üˆŒoÅ–F–ã‹x×zêlG0ÊA:û/Ȳ¤Žüé2oºÚý¹pr0‘ã§çÌR(Ç·#´bC~p’˜7Ò Õ%î3`°m©_§‚ +æ5ÐòDŘh-ôq‡R/§j¢>ÏϘXî6úù•¬È õâ˜`þ<äÓ…[{tç©k•A¿‡‡'/“7ˆ¿1ÔÐ)Úé~GŽƒÈ`ãB¦ãêá½ôËš[¢Ž6`n wýœñJeùc Ó·Òxz=›´µôµ¾®1âtÛÞÇëäjP‡Ø=¼ƒ[ y‰üy¦VR×ðâC0.û‹x^üs^دn#ñ9ŒÂÖâmc4Óý|PÀáÀòT7[Ÿgo2±÷{ÜyÅ~?Ç;^úý\â\/nüêäžüé­oo!Ô9ÛȬ@øsÊCkÌ!Ca§åÅçD±MT¿¼<~ÙÃ1E)j5öÐ8щÄ_·n3TX}~ÎGî{ÿgPÊ—¿"UXƒ÷Ø›ñƒ„ʦÖà3Ô¬<+Ü{OÈvK§{rm3g%µù&96ó²€öúùãk~\ân—û81íùyßšO<­{vçSHG‡"J/süyŵæ"¶ç-áÎÁúyÌ>Þr nq½:"ç›) ËÏ4Z_„··÷Óœ•M­ÎÐØs28ÔëÎ2y Û¿8ªÜs,`x}<Å2Øxó §êç(eÚ·<äÓçe"Äöç$E”2f¼¿Гn¾å•BHG +oRê× ‘É6ÔëÀ«ê$q‚ âOÆ›fãÆòü³Ý˜ß·³Œ¸†ÔøÏ=aV×ÙÈÏU¼ò;ÍÌLöç^e‡1²žuæl:éÌ‘9nLHM¥—[ru<%{ó:Ò·;Zb¢ßt.9âA<è·×‘ª¥$ò“[{y"™7Ÿˆä¸©·ÜÍ[¸·3ц=¸ë…àãpÓ†»Ð$Ii¿øÇnZï§ÆF¤ŽÞûøa0¸—É^IX€î9•P ó¯/q¿8ÉãÌÂ~®bdÓøs‰€“ÎüŽuåXÜâ#ל•Eù%ôç1îeX‚ŽÜæcösƒ¦ÞD©ä9–=¹ŽX¬/ÌA?yÖßG‡¦]ŒG3aºÌ§‹œ&]ëñ¹.×:q›BoðãEL;Ï"È¢;ŽüÇ$»Aú´â›->è@ñ·"bŒÍíãÆZ“gyeüÚ!í°?ÙÌxeQ†¤¯‡ÃãÑÖÇøñ7V:rõÒüÊ•$[ÙÃyž?Ùtµþ±Ì5°éÚüjŸ¹¹ä)°ò;üF¼Æ¸—¥…¹ÈPððà•†Kó8tL|TGeØO0T¥ÆÝOêVç_Ëer‰¿#Ë!½Ïèæâö¿2B×ãèæI…¬=Ÿ¯×Îç``7¿oÏŒŒ,ïõÿg1KÚmÞÜhk†%OqúXÑþ²¢çïäŠèØâÍ~Ì›®;X®ùbb·Í¾±ü8˜ÄåÚM…î5ðÓÇŒ•@›þº7ϵãžFTAíf6ï<·ž”tÒN#°"BÌ`óf*t,ýÏß~ØmUSbû±#{k¯˜–fù¥$X[M8Ë%S›6‹Üó¼[ZqhÚÇÄñ–‰ d¤µ»µ{éõó+Š +`Ⱥiúž"qi<ýÞ'^ÿÛƼÑ2Ø=ãcÚü:§Œ-*N€ ×^Øi7Ü/Çœ%}Ð=–ñãÄ2•7êü¹˜O}åÎŒ¡´¿Ã^vçOÔóŒ®o¦ ó‹ÊÍõj9²r@¿c¯jæ0ü¹Ë1æ9`pyÚR–RoÈS¿9ETÑøòd8¨Aô~|θ¨~Üý(gE£ªò™»7o`¯‡ §ÌÇ_àoq¡ãdkiíú8“Æá%ÚÚ þÎ4"»øãÈU.ûCªª¶&ÃáÄžc9#¿ôp3ÎÄ…öx߉º›{oñ%òæ¿ðùDª?á;GÕÎLÖçj÷ø÷çN¥MµïáãΊ~¾tí°O0MQqoEv2§8°Ø.yÄ.ÓkóŽÐ«ñSôª_/úÁðá¤Êçæ)þƒˆÓX?³Œ•a˜·Ã˜¶m{xÿG;+æ_ï±äJ¤*ÞÏ£õöq–µî úŸ„îˆïßöp%«S†üËJü›N×ä¸ Ï†¼”¯îŽw»K~ºó™°×òç $ßÎ,ÂþËûy[iöóµ;¹é aÌ{¦ÇœJß¿1È<9À 󢺞u~x›s°vý|éûse +kÜqÆ*c =&œà)öý\ñ„ðçž0{~ºsŽÿg1ÈwíæRG9/»ßÃ’#¿:• r,ô㘂xrÚvóÛøs0,„q¿2ÈDxß…ÿ­¸\•¨Ài¡á ë¾P­ó¤±Òä[€¨éå\¯v[‹øñKäÈéâ÷×^{Ëñygh¿‡á…˜˜“Ä>/Iäê8Úús¯nayMôæ|.â…íÅõ'KbÄÜÄþcÉ ‡-ÔßáÆŠZ#ºÜu¤ÂͯÉÑR¹”,ß™ã7Ës·³sƒwm9QÈóNÈ;òUP'‘Úkž8ÐN +Çz@²jO%¡™F­~ü}ÂbF#ÃߣÜË ŒX÷ éå¬úqÇ®Ž#÷pÎe¹Œð ;rk­<²†æHØ} s¹&^ÂÜÁ¼6ƒœ )çAA6çj,l;ó„±êmÌ/Üóßg™#œ!¿9üÖ–ç5áÏ +‚ÜÆÓ–ñïáÌ3ÜÀ ÝÎMDloùp·úÉË^~?Ñãñå7ú¤ÃŽGø…þƒü8<—:è?o!U þ7ä9cãý<Æc[j}œâÊÓõ·8µê~Žy%þƒÎ‰'Ä·ßǘë‹*kľ*»\òëÅKŸË“OØ[o‡¾‡N6r,«»O§˜XìþŽwÐó$ =¾Îb™úñç/w£‘çB£˜e¢ÛuÎC{ó…5o–Ê}‡‹¬½X'Œ}u&Äü8Û‰G©#u6@|~iÄké5YaÅ>MªócQìøóž. 9·ÕÆY⽺qc•ô?@·8³”˜Ÿ£“ë‡ÌÅáĵd;‰¶‡¶œ…:±o¿˜|ÏïæXfØ?^Ü•Àh{s)ʽïÎ"ãëæ (‰ÒÜÂô*· óLb/Å6P¯xWü@ÚßG÷òlÖÜ 6íØ{yˆ~¯õíÆÚËßéíÈ(“µ¾?ÝÈ’¨±øsFI×Ù÷sœJ[Ä~Þs-nÆÇÃœêýƒ¥¾hQãÎA,5íñà›’ü"’Ǻ2ßâ®Âßu¸ñUêÄoýZ[ÇÃNGÅ@WÙýŸÓÄ®.£U&Þ›u +RÎuþÞ(°v £·m8í gKÛ_e_œºÃœWtGµ»Úüâî{s§¯ßÆÊ÷Ø{xÞöskÛúyå@-ìçF;ó2G¹,8ßWFµû¹J2½Ç#È6ÛÚ9á+ ÓÛÅLót¹k¯¡#øðôt³6ŒÇ‡¨¿€>ß(1HM4lI&âüBã&iþ&üc©qîö¿´þºqšy<¶Ðßòý¼ÇW/™{÷&³ª£_×·ñàOÔ¬Ic]«ßqÓéâ‹twñãn/CÉXA²ùñÖ&<ñŽÃNsÛ°ý<ã´O:)³]9Ši½¼#–:éÎ!‹s©Úwæ;oíÎѧ:s7•‰§íüxlrL&J.þÎDų‘­ÿÑÆÏs]tät¹m5øƒ~dY câ>Ž@Äe[l~Ž3ÔI{ÛÛĦx¡5QmÀg3a¦žs÷ñ¶“iÜŸ«Ã“©e)¯$£‚/¦¿³œ‡ºo9ßq×;ÚÇÛÌløs‰éã§îukxsçç³ÎÛèç¯~q–㶼Ù^•A7Ê´î ¹ÈR¹ç3ãÎHW˜Ú |yÀÆT\s…ÊüyàKdPG;:Žv±©î9ÈÀŽœè¯ŸVÑ+aòé{©ïìå3zÊ£ò1¢G‰oÀ]JXö¿"Õ­õ¿ T 9ýÓôiΊƒáúýÜÄdf°ðçÆüæ¶ÜÏíúyŽºÅ;ñ'‹xž@F·2|–žÇ¾œ°P«½ùÝJ…µ¿>A©’ÇáÌÆï£ù„rD6cÎêã ½ïaÈBPÜæé¼|y +ª·ñãN#Å¿!Ǽ>ž.rŠ™Vçõ·~^ÑrO W(×øq?±„ißÙÄÍtï¸òœ‘ÅwO=ô?§1ÿ´u½ý¼dé©â£%IþŠOÓΧ›l§P9"Ž¡f_ÃCÆÌb¬m­üx×:öþ\… ×·ÐyÐFëýíX“ß¿&S2E5»žu5XòíÈUU«ÿ.4b8–å"üPô¢¨ÔÅS>!­õ{~®)t”ÚÚóT[Ó¿ëßÙû9u ¯´r4ª4¿1Øý\䨿åñçb¹×¿~d”m€ñ²%¸ý½ùÐqØO˜VµF²ãô5 ½Åìè¬?;ñH?GXš\Éoªü;ùñ;²mÄ®12Zö7Ô}a®”0?…ÑAÕ?4ÚðÒJA#ÚÊ/ÃaÕœÜV¦MubuO +ç[1‰ªèØï,GÓð׃e>9"åXZagxÅÚÿgëôp8Êôµ˜„’¹:“{þ£‚ Æc ÂûÞËnÿ…¸â=Kš0ÄÞ:øqßÌÒÕØ{ÜØö¿3bU¤°¿À›‘ÄSzži¡ò“ì}}þld_Ú.YûØä‘ã¯L›_’iØÞÓ``y*&Ó^e:Ÿ£´·žû]ùÅ…µ<ã‡9|9˜¿ÑÌn¼â¿³‚çñæ'üàMÏ;¸ç·ΚÄXöæÉxˆcÇXë€]yÇçw|/Î…eþ¾xÊIæ7žã^t'Ûœ·†çh¹Í£+§‡³žTÛáÎkΜȰ9ï–²ýìS“¯·ËL +Û_˘… ñç7¦_^1æü=Zû¦Úð½õn†%g:ü-I©†—q¸î|x æœÚ(Ž†ýøæ^¢y—u×^"q¬Ã-q¿‹1¤Š>(ÛIûœqk_Y´!&ߣ?Äó¶Vƒ Kƒï1bëÞÜGâÌ iú߉¼B¦À†'O‡“º×DswÎLÛc–3 1ð¹_ë49é4¹Š4 ê-nyÓY+¡Yd^TU¹îIÀpÇçZ…`pFF¥VÃÞ+.“Kr-Ç*lÕhÀ¼øšà­Žž6à[†a$V¼¨¿)³m48ŠÁ¸/¯©ú9Ç;ãÓPÆä^ßØ~¾xŽ+>0×$í—íà{b;ˆY| Ôñ¯58w +<-ßx-Š)ö~;!ÝôŽsG_òç4O‡;^Úûyuÿ_o0J÷ãuvš÷ú9`.w¼‘§·œn¿Ÿ;Ýe6ør)b~£Î„¾Ý4çD†×¸çUZüÅå=.Wü¦3°“nÿÀðéVj5#±ÃÃÎ`©cPâÖ±ÐßM0BÑV©'@X”Âj‚ªoo§ØÕ¶¾>"³d{ #ÛúéÀ§7a¦¸ûyÏ)Õy‘¿a΢œÆžÂG0‹Æu°ã¬fÀX}|æ„knöç%‡8íµý‡Ç˜¤ccû9ÀO:X}œH Ì@[¿:k6¶ñçžg‡²¤‚øúÝÿ³†o*c ÐØëìÓû8É‹b,$$w·Ò9üçÇÑQu'œ¿—üyÄÑ{`¡©«‘œGS ±c}ƒ–eÖU‡Ãi䈌ŠTŽÚÜéaÀ ?Hë!ÐmFœtèÞ“å7U7±nß éÄÝ]9ÃU˜ø“ßN òÞ¸ænˆ¶»VàÜTu&7‹pµô?Ã}NÔô²3³Ûéöð8› d¬!M‰ä z£©#¹ï¯pÈÍ…¼-®¼tE'¶¼Î†Üäªú>žy/·˜˜¨ì‡1Ieííã]dšÿO#y€ŽxÊ;ay‰_AÌ‘8=½šr+ÆCàn9Ó Qùó ×ì;~Þu(=¹íßpSt7ê°üÿ£‡/+çè1<(:è>«~ºñ‡2V¬.Åu¸ñøÄÖ!Ž´qíú¿o"aᇾm¯êyÄKè<8‘ÌrªÂHì5àqŽŒ=Ÿ!媨*5¹ã¾jÃV ·{vâ3›|–¶žÎ;À7dŠ;|yÝÉ'ãÏ=ÀÓëæ6s¥[ŸãÎÅMôç º|yâó€üt<è ÇNgæ4µçK0:}<2NfB{?»UtíWï-¾<Í„Ñ5û}ÉŸ)úÇ·›ÛM ”ìæ9)ÕQq¯qcà>Ëä‹»™pš¿–®…»㋬\…™×§ÇÒ£Àò-T`ú÷ãuWº=ºr½ÏßÌYÇÇ°æ ì§Nvò2é~u;óúøÔæÿq!nmɘ YÃ+©ç[^9‘¿äàåÁr½>ZM¶$£°ßããÌù‹ô´ªnIÞ|mà8€Çå1|8–­9mAæ5‚ý¯ýååØÙÉéßÔÜ×-džWÉþ•L6®ïÞ±øó/PÒIe$éÇ¿LÐ.%„WD¬ËgÝc =ío¯Œ™ÚˆÆ¤-øœè¦Ø–l‘ÿGÇçýsê–Í1 ~ü óL_%No{{xä¼³F0èºØsŽkÈ5uU’D‚¸“Æü& ¯~ÜxŒ\?=9Î×7¾º~\æì§OŽ¼éŽÎÇÙáÈÓ³_KÛ‘d±ÏÓƺ‚ÄÿGeuíΚ6:wñös‰Œ‚<3@,b±^Üä¦ÚñY‘q÷†@­áÁ—( Ä" }Gn(!ÂÅ*Ý´·ŽC4„xwä¤ áÌ­Ä÷Á2•1b4ʼn±û¸×‰a·ÛÛþuÁ-n!ê 4ìmÌÔr~|>•‘¯s[Ùμ«/:e¾ºÛÀýñb~íyÁŽïÎÜâNÑü9ÃB5ç¸ÄË~pu÷¹Ä­Ï8Ø‘qÛÃœñ½¹Áî4çVg6ñæÑ‚Û^v)6x_žù`|9Æj};s£>ÎqùF'µùÈP¸<‘1¾½¹2ž œ§g×ÎÊðçiMðæOåãn£^qz£òæ  ±íÌ ›·1˜ˆú9‚Hw{8ËŽåÕÄoq÷p;Í}$L@µÒ÷×·GÓŠÎÉ_êç—Ó2Èn°Øýæ¾—÷·ùmðþÎL¦ô·áäéÿö}\ŸIé{gû—åÇœ/Ó/åÅ +úx¦Âb¹n>HfÜ›ÙÀ{¨±SS’4.ýU©£bݼGqÀš¿€¾Û€9Æ,JT¿xÞ<“ÞÃáÞüMcS üHf +ï-{ð9Í‚ím8™È<ÇæØó(Ÿœ&~G“œTr÷;Úó"1›CQµ‡øjLâ»Ä #]ZÇN yÔ6=“”,s¹QàIú¸)`~·qXlZ÷ïžúîzÏrg+ôž +9ÕôrVÆÛ•Ï·‡¤]H‹0CŠàîÇÛkð{Ê2ÇZÍÁöqOáÌñaÊ-§3 +P9Íh”Û·9ü¢¨ðç&‚ÞïÈÛÎ.~<Æcç<àa¾¼ä´×ðæXéH=¹”S\éÎÖŠÝù 1a_5Hʇ+§ñ#éé©¡”„'Få7õ 8n'QÓkŸãÄ„öãÈÒè9Ž¿ÑÌ{IçhBxó,rãÞÜñŒ±þÞuP·3c pIã$¦çNb¶Ó¡ûùÆCå¨ÔsrÜ{rjÍt·~A©‰×ÇžSºü“V_·<ä*Øó +Ù–Ú}ÛŸ«‘Ñ‹‹}܈ÊCžeYî ü9é¤Óè¿ôr\À{øq¦ªR÷û¸#à•B« §a­“i=ûrL2˜Í¹že_Ãuê µµã}Rk~ݹE }ÁìæºßÇ’iÀ:ð×™+@HHÖÞwCtöó­Û¹É Öß~ +6«ùŽ\§këˆýŸääeÿ•HãÞe—f¿¼çOÛ^XºÄéíûøÅS_«e`·öý}¼â²—íütæZ{NŸ¯·’â:wæZ‹˜Oˆïñãl–[üytïmº‹ÿ3àXå^X¬Š®™¶Kº·×Ûèà½?ªá˜(Õ+"s"­‰[ñœºª1ôd…oâÚ[‰ZFz –xؤˆÁ•ìGì•×üG5`¦µY$Žêáô{xŽ«Â’™<\–<ã}Ÿce×ç–]-~u´£œeŽüVYIÓêãd†ç¶œÄl=á÷ó«øý<ÆJÚý¹Ô`og1ObOksˆb÷þÞpi»X}üƃ¯×~pü5íúŽtÈF‡îæ;˜e¶§œ \%Ðg9h Ü’8®Ê=AŠö&÷·~+ª'‹K¡ÔŸ2WáD/u’¶T¯~Ǹàý± +\ׂl¸¹Kkô[‰ìs"¦NͶߗ÷ð1®¦Zy°väwKwíÌ/ÚýÏ:c¸i§ÑÎwŸÛÎѶwçjws¢mÌmÌs âçèç”n#Çž¶ÓÎí¡öðbôôX Zát¿ñàËWƒï:ŽD¬¢Ù®ŸÐ8É_OåŸ×ÛƉ¢»ZçÇõíÎ3ÀÞþ?³‘Å5üºs ] r>Ž1UÆ®{|gÙ.Š´íß~i§Tr†ÒÜŸß¿3Çrj{ߘɷ9j»žxiÎ/ï|}œÃ*žp±#œ,9âÁyƼàFß…ùæ°<ëÃNc «›M6¼ä 7ôs)§{9¸|¶¾<‡nòAöß“`ŒL æd¢ÛÌ‹Nó<âM9˜R-¯ÎÖ–íÉ0RÒÜ™ßh s+`í&¶æ90 ýœô9oiÐiÉ”ùd\\qÆŸ+‹væq•$A–Omè²ò¡íÇšÌ(‹øsšá¤Že\#w‡¯W9kè$ÓºžP?â7’VÍr1Rçõú¸Wë[kß\~<Æä·Ϙ­}­ùsŸ•¥Éçp£ÛÅgGêCÕÉô"ÿÛ­ø¥ªqSB B0„´ýœÃ)kߘBž?ÎPTýüå<··Óƺ÷fbN¼oxï÷óšÜŽpføÙÎ.tç)ˆó ò¶í<£ÉÒÝþïg8½¾Ÿg86¿8’oü/Ì@†¿:—SnÖæ$Qq~E©GÕΰ÷*4â×#fé(¦ !¿k_‚:˜´!Å·oo³·çhnÖç>“u¯.ÌÿÉùpEÏ=u¥Äi<˜¶³0ý—àw‰Oó-¸ömmõr-ÃxëÌMaÜÛž½þ'œZý»ó£¡¾Ÿp?üé¦ §1¿Î +Ööó tïÎ ëͦfüÈ"#’£K wä ^œËÚã‘Ó˜Û·0èžO‡éðÙè9(`ÎyÎ<‰ñä¸p£nNƒÝkò}&‡©°÷&C—wxs8Ë +|9–<¶ª-ngƒ/¢Ü›«¥‡2ÔëΚâíÌH‹É‘U"w·2.(Šo΋€;öä*¼X2c8õЋëÀS¬XŒ“A #ÄÕ¯Nªsy*¡½¦‡…[ô›U,Ít&÷>?uù‚GÈ@òοO£ôS$†ÞQ6øqI‚ú¾¦Ë‹l¿èŠ8À¼òo˜'¢ècµàò¿Hãô‹à ^GüG7¢ÊQÚÿ öç(}Ó!¸€{>Ïöqç ôuK¯=¼ôqëôƒK 0‹ö¾ÑÇš_H4‘ؘþAÓŽT~’¨Ó´+ìÑ|8íEéJ’-|•ÿG¡ôµH,|¡áÝy2/K4‡ýÄ}ÜÊ},RŸ÷÷r_¤êI. #þAþjªôGò +àG1²o!äK£ô‹Hºù ÿ ÿg¨½%ÓþDiþ¨ãÎé.m"òY_ÓgÈ[lZìöpRÉý'ùËZÞpLžÐ/n<¦Wr;wýUg2C•›ÙÉPå2GkH‡)g3 ªÖös‹eB5לY(;s$p§äÈrõ¼?.HLÞÏTvä‚ÛÙSÙ—°íÌð`þ<ý@å® :_Ý?ÔAøÅôÝpŠùjö$ÞÇáÊéÄÇÛÈ3 x÷æ~瘉ÙÌmßáÎ2{_bçjãã{s"LwxöäZë;_sGmy„.Ù Ÿ&ØGqÇ Vp‚äëôñŸÎßqù_žÛ¿9íÙÚÜÆÈAðÞxÉ´÷äz‡ yÈ=¹ŽIn}œî:‚m¯&ÃS`OåÇŒ¯S½Îšýî(°Î‰,6÷E‡)zI>»!ɱôÎΊ9ôÒ&dsæ0.¶çO!ˆý‘Étù4Ð(Jþ§D£·å̱eɽ¹.—+ƾ•YÙñ䈲â§eÓ¿$.\¿p9ÛåuoÝðæÊ{¯3C’!¿aÉô¹¥¸çCÓÈ ì8ÿ‡ôö+}‘ÇÊ ‹ßwértqþï`Ëj†œ”™|Û¶œ÷õký^s‡.kÛ’£À6žÚó À@íÎÛvçOösò~r‹EäƒÆ㜆g™Ž-¾ð¦Dðç$©þóÉ.¾Á&"Š4âCª’.!@ßG)¯ñŠÊ_ÌèjNÛ€ ü¯Ê~ÄTCßãÆ©%±#½ùZÎksÌ(°<ÆÓÛ^ÜàeØó«yšýÜå ν¹Æ¾25·!5œ[¿Ä}<Âô­¸,²„›bÇú93—Í{8ÛLÆÙâA÷}<æw[·Ž¾Î`r[áÌO¸û9yît"ÜÇæ’ÖçA:s­ý¼‘O/ê>>ÞC¯M·ûù’5æ ñ¾³Þm>¾Gs¸o1&÷ç„¿‡Ñnsò@ßm¾ž)ºe i* J>¢~¾:¬–coáÌÐÎFžÏ8Õ1o§kÍÇ!±Ú6ŽpwkëÜ}üê6ß'kßÙ¦`‘ÄûI¹¯ûtç2·>Þpu±ø>ôÅÂc)ÞÛúüýœ33 vbáÚÂÜCf7“ÄÝjÖ'áÛ‘Ìü9’8Îv Ü/ÎA>üy‘GßÃKq¶¤“ìñúy…_`µ¾ƒÎµ½ý¿w:wÚo¥ïÌLÅ>žc–]çNeÀ1åØ„Oìq~ »ƒ¨ýð ÇÇŒU²y,uï¨ä˜÷ïõÛœæiÈÖ·!Õ°¿Æüƒ)¹ÖüÀÄ®‡œOqÜóšÇO¯œZecâyƧ^b.ösƒ±ÎyÜ€à—‰ÄP5þqÄekŽÜ`¨AýŸ`T¹îlyš<­O†¼n¯Ÿæ^ÝÇoïä*Ø©¸ö_‰ìV=„߉ÚòI×õýmÆlN›ÎB‰ÈÒP =ùˆÓªiÌñÅ°ûé~üí¡byï’环¥»óË—QÏÙÏOYw_£“©ò2vòl91c´«’éòTqžÃ™†Q^üëú¢;þ©)×Ùðç?êžÑÌg*“{s¨òqaìç8²{!·ìæq“OÇœ£Ê­¹e6¹ïêãEÌð`l{ŽO§Ëǵ¹ evqÛžþ©;rL<‘ÉÔy\!ã½ñçÂ@ãÄJ‡3­$E¹ÌÆ€wæBèšó‹ÔD5¿1¶!o;8¼K¯ny±„µùŠLq9ŽLpZöävÇ~Žpñç3Žžp“ÜuïÌg·8ɘoãÌRcÊÇ¿çÌOŽ€;ò4¸×³ŒyÃ5tlºVGâw“Ÿ0ÐÔÙu¿‡) 9áÏ„ÕËdb5úx–©•‰öéÈŽäbi9ê‡1¢/cÎ"BH¯çÉtˆÒ{qÂ’‹~§ÙÈXº„¿bœ«ëõñÁ"(°ÙÓ^9T§˜¾®A”ç%÷FŸw8Èuïðæ&Üßõøñ¾®Q{xÜÒžÜå Ü|=–æt€ íneŽßG2ÇNoÚÜqÀ•)ûqF%÷-ãÛèäÎóà9†û9È6îH§÷H×P&åöC¯ŸËŽÀq®¢¯Ì<ÁLÛgKßí[õŽaÛ}?_£žŒlmÚ¯ëôóº©Ï—û>ž1ý¦>&üäÎ[^Öü¹âÇûø÷ÓG+ŒÆ}©'ü¨£‚6e˜1_ ¨í¯‡çĆ7úF$hO³ŒÇ{Ø\sc 7ç$Šãÿ~r•Ktí§ÕÎ!{sÀÓ¿ñå¹Ï#©¸?Üã+ãnpf¸×êçR4:sÒŸ¿·#n(CàðkŠµq 2ñغýÜl¯»éßœé謻¹Š©w B–êtä*¦25¿.@‘‰æ)4 }\Ã$§Äsƒ±··˜[@9É\©ýœî¨‹ mìäv÷ÏÑÏ1ݧ8–Ú-Î ©ÐéΟp$Ìo®¼Á9ñäJG0Ñxá’¡$ñÇ-9ù›_éïÅ}kù›{q·.-æ+{_™kcØÞÛøòÃ_ªÜénFíÎ-½ùÃi<è¨^pk¾ƒ˜$ïbyÆFú­Îû¼ÈFëö¸íÎŒ¼—†EçÔFºX}Ü:^ž)Rž…HБôþ½¸¯Å×Ì,ºñ+˜¶@§òâf«¸#˜b_1¿1ÖÔí[{?_o!ÀPO"UNxýÜNbÄX“ôñ9ˆ¿³uvßwΈ=ÉÓ‰(Ç–þÍy:/{êæm×ç·ðç¯{Û·:ßÎ!ïÎñç‹_Sί»tÛÙÎ O<ÄÛœ\óÑnúy„ ý<Ûá1ÔC{óϘ‚žüÇ.gÇ‘j3¶—ä ñõa¡äglj>ÍmÎŽ>[ÇîæDƤЃog3¦b*5nt3 ^íÎC2§ø‡:9›o9Å™½ÞæÜã&šÛžó]»ó‰2{yŠVb{÷çk1±íÉÐ1ì%G‚HöÓ¿%Ç–äÐŽJ‹,È{òLP“¯$ǔ˙“(­¹>*«[Ý׎ty\8ÕÁ·9V‚øsŒ™|)íÎK—´æH²øös:ååðó,yiOqÎk–PénfL²ƒÃœãË‘ö·9ÿWbðä2ô)¥¹Ïú¿ýÛóå¸ýŸ—:uè9* Ã’âÂPøs/ò´SÏ$ŽâÜëËUÉ¡9ž:ï/áÎc)ãΟñsãÌG~üÄøé¿0œu¼O0˱ñçÆûó—ó†aßœ[fñæ7Äûó¸¡æ#‰?ns“ÂüìÖÈ|uç*döó–Oiç3p’¥‰°ç50T!‘JŸg +7®›ŒV’£Ý½Õ¿å^P«¬Ù71Ê,Fâ|;ÿOôpªNœŠö'‘æ~`‘¬æ$ 'n8aøo™ñ·(𱧙'˜@¶Î&ñ©÷µ¾‘Æ åMøë…Ö¡·¹z[‹þa¨ÇåÆÉ5ïõs7q}lmý¼ç¡:ƒÌrG¸wøqª¥w7‡;@çòú9Ó Ÿm»ñߧª£‹Æë ûãnË~… ¾¨·Ç‰¬YGÂÖ?—ꀾ§Nýù?–/ññç?3fžÇ:¿€ñç#mÖ7:s·[ö>æoo16 kžpfÒãîæ%‡1¸#ãÎœmïÎ2K··sÎ –ï§=Úo9`R•ªˆw÷…­íáÏè$àaãà¿W’ÙAb~þ$1×y¤6ýtãleHý]¼yÇË(¤·†¼jž HäÖÜÅS.íÈÌP~ݸ–Ç+$}?¨Sôq‰Sg°ç( ù˜·‡;ÞWvûùâÖçG]=}9ÕïÎ%´·:¹çÜã¿òç[Åùçm£˜]šç›\6<ÇÇîæ9q÷'¿#ÔcÒ·0IŒ¿q~t1Vfú9ÜuÌG2¥d„s¯™{v*$saÎ÷»yÔj÷æuŒß½ù2Žܘ´ÁÇ9%!sÛ·%SÐ3v丰–qÌŸÉX÷ó³—ZOM£Ë HÓ49sg‡£ÀWÙaÉ0``ö›€ú¹50 <9›ùoÝ·2Gƒ*ŽÜ“£[r\4@IJqkxóÒSƒá÷r4ôÆý¹‹fÞt®äˆeÎKŽÍÛ™’;}\æTvª¾#—P¤sÌ"íßœ>}Ps¡ˆ¯<âØPvç¿—‚24ëôXÛöqƒ=ì>­xÉU"±:ò ptÓ^t’ÈýmÎKrZÀ>žtõ¾ž5âQëùr&â£èç¼ðtöó¯2÷æ9dý¼Àı<ç_‹.“bŸ),±Ÿuâ¦Jk¨k÷:󜲷ñ·"OºÄhxÛTà5½´ørÎ@ÓK÷æß³˜‰Ã%—éøò;¶¼Žîèû¹Î'¹°s-S!mìøs<àÇu¹Ð7úyÁÍ®yÄy‰Íù[¿×ÈÓ›ƒ÷s=øãº=£’cöqß*•߯çÇêÚ–gaì?1à€¤ööß™±U!»}|‚úiõóÈ ¯³œnÆÜÄóyO0¤ºëÎíþÏÔóň?ÛÈí1s¨Óœ7…ì><ëÍÛìïÎbRƒO¿ŽY{Z¸¼}ááßк?÷جAû:huⶤnÞ^$q‰„luðOn5ÑQüÌ·bHÁäÕÁF<¨í§p<4ã5Lþ÷‡ëãÌ5•:ãû8ÇŠbAPGÓÛ‰wµõÔwâ[Åv½¾«sÔ5bK}<ÍZêc6ñ¿÷q™G!#idÓNH_»œ·xó£r=p9Ûvçn4O<åjy¶æEÇ…ùÉqWñל$¯væ#PÍÎ`—ç$'œÂã$vçJæz{ŽÜ—HIïÉKg<äaÎB=Þ™¡ 3rTX!“·3 ¶ÌyÎ<³·’aËVðä…Ë&÷æHòá·aÌ‹—Šû9Ì`VÓNtØ)ösƒà…G·áÎ?Ê5âw¨x ux{‚;ʆü]úg Ù~±€d›rqw³2ÿ…ˆüùT’t×^f§¡ ß“èð½ºøqÆ(|‘íæ*ºÁýbÄ1o3AÈ‘–™­ÏUDmâ}¼m¨/1ù¿Ã™¨jÌ2 qy€V™TÇvMÇ·8<$Eù†XNÛöäy#ü¹ÎJ=í§iÂí¿ÕÏKJ>“®ùémôxsćñ9•ôuIþ<} ¹~§‘€ÓNa–Qìûù‡}¹%Ü7üøã…Ô£ãÌÕ©±®o÷[®»ZÚóÑ¡fOãǪŒ³é»‡êðYãŽÊ§‡ ’úžy‘¡øó¢ÎIÓëç¡‘¤:‹rMP( ¯!3ù¦×°ú9…”‚|/̨®|9ã"¡··˜§ëÆú÷6µøÑZýî~<)k¡ˆ÷?W8@Åos{x|9Êy×ÔkcáÈÀ®ï<|yª0Úƒýüo¨Ýã÷ò+~Œý|â_wën@˜ZCðïnpw¶¼é˜X€Ç#-ߘÙî9†m#MsÌ0\7 ;Ç3¡ã¦\$Ïo(*â +úøó6ä¹?Îx·è›]oáðãTíìç¤uÐóÌÄg1;»ÛÌR°Sôs˜›Û˜ävo ç$ {{s®5טÕïÎÉ#Y1M^'øðòtiDbÛسء  Ú÷Ô[î?U¹ÈW±ÄÔ1íCbÇøq¢jÙK¹¾¼sòÖ0>îÜ`Çfý®/Ä–5ˆ–6¾¼Jãµ¥¯ã¦¼GWW™¥°û7ã¦?–·î¯ºØ}|GfYµ·´ò îäŇ9xó××Þ[ó¢9Ñkó‹8â^àØóLëç)úy‚G?w0»qÜyâ×æ×`2‘p4äÊ|¼I×öñ ³aÛ^I\¶-ãÎC,ËWÃ’áËw’bË6=¹* ®¸äØr²xŽI§ÊÉìíÉQeÕ_§“©pUŒvã…>-ôs/ò ùØÀïÌ‹DŠy™)€ú><•ÑÎf5˜fµùŒÎH—s™ˆƒíçe¼¯íæh$Þ9‘Ts»mñç8žÜÌ’€-íç&“^sF#™<µ#žZUc§9|—8´F3ôsO°ßÙÎ?c̉·ªñ2§éäñ#‘f©,mÆúÆfä "cðæzD>'ŽGÛ^JXA:yæ[s¥ òDkuøó$`ý|ì±C§~pugðçLþÎeŽžBt—$£^KŠÚ×íÉ0P–ïÉ´øo·Ž”8h=¸íC„g¡Â Û™^rˆùï-NyZ#ßös«§1KR‰®œ‹6$Ÿw"KŒ‹[NC›!¯§ùó)BçàyS‹–gS–êÁï´ÚÚøŽQ^/LÕuRþ#¯×Ì”X9U¾¼u§£ +¾Ës±&Ýæ +ŠšžÜdÅq _¿L¾k\òm+»ó }P_¦˜±·nqV éÌ‘^àñe•ç /HnÙ‚4íÌn ü9⾤óÐEo£ŽT° ~‹üy IÚþÛ˜êeP8Ù_^°ŽüMâ8¯šÚ›}ë˜Ë8×Ûn)âq"h~¾A’]¿ÙÌNäo8?O‡3#îN÷äì +S'ÖÜŸT¹ãuC\÷·Óðæ8ÛaøýQK2­(îonÜ•7_ <9UÞßpZUS¯1I‡¢¯Óí6äX¢Úmá̯L®,9®”3éȾSDÞ–½±äyffog1OW}ëj ˆ¿ <¥ø"äª.ª‚ÔHýœ¤,¶öÿg2HCFm§ ¼· ö¶œÉ!Ú¿W T#f¿ÑÈÅ~w ¾aa{{oíçKo¯’èáë¯0ãhËb~Ž7²ë`y†XÈæð]Ç™#‹ÙÌ€mÐ÷äjÙ<‘ºý¸,AX+pøžú>ŽuK-ˆóÓ‘1 +9ÿ§sPu#‘ÑZüÆÎôspIÝtæPü‹+:xò;Úwü;öä‰Ô¼zò¾¾ÎvÎÄé¯1‹‘Ήܼèëa~p'˜Üó¶¿ÑÈÒ9ðæ»òt üÏÓÇ<¼Ã潸¨«"úë~c¡¨-.Þ×äÌTyƒwÃ_×ÛÆ:¶+¡<î/ts© #^afgþs‚–¿18'6‹aô›s ØëÌriÎ%¶üyØPý»ñó"Ý1(ÏLJ¥¸ÙJû[Š c¼&ݽ—à}Žâî±·×ßljö•kA}4ãÕ"Æ£¿0ÖUÝtµÆŸ­»q1ŽÔyÍuÒüHW ’uâWb÷ñ%S ¦}{ߎøx/íÌu$Æ¿%s§è$ÛÇ<ä 'JóÀÛ@yâàŽa’M¼Âj7‡8™€çM.ß«œByÄŸÎ,ƒÃ˜ùînK”Ô~íïɱåeñrTyqvæXòøÔ[™SáÎÓAØs,X(]9ž [’#Ãã^eŽ™™R$Íkß¿2!@9ÝyÚÈNs[Üç…ü9#ËQáÎh4Óž•9A´žy@<‘vç"·æ*”æ8fòO~IZ•nry,.9ÒÊ_·×̱½û÷æeVíñæx®9•ÑÉ kó“{ÜÃŽI§®†3ß“ ÅÑ5Ó™†:€wæ3"­õ·!×f£¿ªsO÷ó 9ÕXý®fl؇»r4Ù²7ìÜÀù}ýÛÝÌâ ÇN&º‰\ËBÆýÔò§ÿKUà•*X¶¾ÞSÕN‘Jæß¼8MSr<³îäi˜ bÆçž5Ž.O#O[æØxžöçˆÿ_9ÔMasÜžx*Ôx‹ŸÙÌú¥57lju¨;µç1!½Ï0K87ä +§¹æ ¿¹°áP·ñ¿'Ã,s5Ôê$½B©úÇ# ƒôŽyç%l=žÎF‘w|~‡#1ëÛœ–MªmƚƼ¹ÁÚþ6æ#í{qÛ 1Ênÿlù1¸´ÂŒò­´*-ô‹÷û¹  Žÿ*Ü‘Û^@žM¶¿nG€{éÎ$©_œ•I'O‡$@vÜÇÖ#ÃN7&ÛsÞ@øa’Ÿo†¼òöÖösš&Û‹óÎGaãn,öCñ<²gÎ`ѦœuÃaP¤žünÆ&χ 1Óâuæ9P°øF™Ž£˜L–:‹{yÄžE˜í=¾<‹#’9èä ŽJÜör0`;[˜ä<Æ=à< cÎ,×øsƒ°æ7?_0=ÇÑðäiNœÄù:nHï'`oz§ÕÅMh-o€ó –uñäüf[ØáÆw`N¾ì[û9Že×û9€&ÜÆ÷^c™@ïÌEÏa§8–ösƒµ½¼él{éndŒ…øñã(:-zgôðÊdüÛ ·¼xõ6g5ñ8•ÌµõÓÇêãvŠ(—¿Ÿ:<‹­¾ž6VâvRoãúøqŠ¶§Í¿Ç·ÑÆœN0ºáÄŽnÛ†ÀÎ{[µ’bµ[µµø²¢¦>U­nu[Ø|-ÛˆìÊž©¡çiˆ+s4uWñæA0'SÎüá~üËææTïßœÃÖç"H× ‚žeŽ¦úƒÌëU´iÌ‚»p‘¡Ç2 yŽZu"ÜÄ)üy–4_g99°äYe½õäf7Ío¨òBƒm{sµ¯~ÜΈWOo$F¶̲_™b$ó2 ‹ó&ÂG:bGna’˜°äypòÜâ¸NîrW9¦:|-W¿9.£œÚˆ)ç…"©ä˜`AÞÜΈ€wÅP‘¡æ4x€íÎÚhùЫAÉõ‘~f\N$9ØÅ#M@ç¤ÅÑùldkíäIq§‘§ÇžE—2­»ÿO0ÿY–?r\Þîyų‹sù©ÛÛ÷ò$øüÒ_Ãê&’}IïÎ0Æç’'$ ó˜Vù&š;væV‘cîxÁ™zƒG€!,À|oÂñêÖf•©å +îÕ ëëÖ}Pd’žݺú~êü]dbG‰þ<%Aל«NA­¬ |8ÃWVgo‡:£¢2uäÙèÝ8ÕY‡1=ùJCæ ,y–™LÛx¢Ê¸[gPÔ†[ü9Ü3mkòT5>h×NfAç^ä{9ÔPZävíÈØž )F¿wX¦bývâwÇ ß^5O\\ó‚HIä¼-ŒrƒÅÖ+þ6íÎç}O0I5ûx_œ×ÖþÁ§3Ç7º{Žf˵V”©·êd. ÿÆù‚yŒÊ>×'y¦Ëe¹Š¢¤ü5ägžÊoõóÓ·w1n†¿W;i¶‹xûyÆy¬-~f§›áü97Íî}ÑÄë('Bò=D¢ßG!HÆöæ& ñcÒz¤+,l;Gí⊯/SÔ̤û4ã5V [0 vðæ$–¦‡í®áÜ‘Îqâ+Rºs‰«òïíç”Iõs*ÇQÆÚÛ´Çòæ6ŠçÛnüñˆxç‘U“¦nþýôÿˆ·ø}@5G꿇öó) :Ø0Õ³«×ÇÛÌRØ5ÀëçA +j;yT‡·’)\1¿ñçe7/††ÿ— Sç~üäñøþ\ÄúwúùÅÔoÏ/sðç ŸOñ§;TiíÅßKjĘ[) mnÿT5ë´ê=œiÄj|×6üþ<‡$óŒÀôÛ^Eœn"¹ÚåμÁßÙìäz† >ErG×Ìi.¼—ço[r"¹çeÁ¹ÁÛõú¹Ãv¼àí΋\ó½ïí·0HÛ´æ œáד!6Άü›¸Žpx§ª“p÷öó epÅpû8Ð^ÿ;FÿÌU'q)˜ä`W˜žk_œE­¯ñæ2Ö?q-»ãÏFI½ûöæTíñÎe¥ÄM "Ü2¿PL›uíÁ +ÍI%5ɬxɘ1¯5®9 ÆÚ'׊Q˜Uâéa¦¼gÄs%‰N7E‚n~¡ÌU˜È'_‡Aª—;5 +;ñ‡.S«Ï°ÅЦUˆ@­…Š’O¹¦2Ó6Óɱɸs6íÆàó×·=pNœÇ1µíÈó^ÜÂÎKsÚçdëÎ, çvÜñkó¢-ÍÅ¥®`mÌoPÄÞ瞎R3+?Óùó¹^[iÌO$€Þ÷æjYdíÇ +`ãÇ’wy’/^J†ä{/̱›ó +ÏK&ñÌ öÔó¡6ÞÜä+‰íÌñÕný\—OPWøòBÖÜkο˜mÎb¹|y™j“ïç™Ä£NE©Œ“§0 ØmÌèäénKÞÌŠ_’"‡w$EîvÐíç,y•o2Š…cÎä«FñíÎDcÇœ¾5ñ× EO;lASÙÌ3c +£¾œ…&5nǘÎ3%ûó'óva©çc¿8ÿ:QãÌrfQ{óæ’ºwæ'Ídp|ÌÏÏ }‰æxqÇù•±æ·~b|ÀÜÇ&?'Ñôó ¸¼Ž0ÉY+‡˜%vnæüÄêO86ç¿2ªç1 ‡==ù–:PºžI†ŒwæaL–í§1Ëp‹-Æ ÁÔj<¾¤±o¯zÕÂò;±•@¹J½Gm÷_ÛÁˆùŽ®o`_áÎê&Yï÷s¨’. k~|eÄ0(X¾ïѧ œ‚ ·ÕÌ M$C÷óŠÉ*‹ίï_^ß_8µR.ÿ‡1Mˆ"µ»üy+)ã6Å©‚èLŠjx¦‰Õ*ì4¹#žª˜—oøËZìþÍ?·íXóÇofºŽy£-á ñçeök‡9G¨øsŽ$þlW·ÇÕÂŽãM9ÛJŽ£œ$û7ðï÷ó€·{ßœÍÈ¿0L÷þÎ5â¨Wt¢ 4F~ÑFÊÄ»œ^…‹kßÙ̆2?ªd$ó‹üS=¹¾ãryÔæçNü†ÌÄ[˜·nfV;O#ÙÛÃœ£ŽvæüÆ9ç[Žc‘þ<ÆϤó§˜]¹Å $ÆÚs8sôžIÃæ 0${8«‘ÉAôs3ÞE=ÿ³Ž8¤šxñ¦RI¿byÛ~Œß‘ª o ó6Ó©ý{sòGÓnce#^ai.yÖâÿG8“§9ÆÛ~þeŒ†æ*æs¼7z#`|oÅîYÎã ìãÍECU%ï§ÅCA%®{ñÞŸ%¾><…ŠU‘ß¹üøÝy¿ÑΤ•‰ û"æ ­3?ɦ¡+Mø$ÁF*16ïßÇN7bÀB¿²ò/ÄÔFÍÉ2©“­¹íÛM¹ŠBO~a“˜šäó‰6¿=»_ž<ëžç¹¸‰Œ!ׄ É0Ä«à9%!O‡;hO:ùBýùÊ +1~gHŠøs)[Žs_tvæhµöòD@ó=íßòçpG1›pÚœvç0mðäˆgÖÇ™L·]9ÃVîy•IaÎq±ËNÝ.~<È*ÿ.q”)çjûÚ9–:²ºe8ŽÏuüøF{ó4‘O2ŒÂ„èyŽ\qW[ŽF“0„^G|Ô±üù³h“ǘgÌæßkóæëNÓ«~|ésWúߟ8¾j.~×0œÈ÷ç†*Òé~edŽçž\P¡±<÷óQí·;lI[¹çF¹}¼Ç%P<ãçã~z:…‘Jöæo4uó sß4€kÎJ^×ç/9|9ѓΕ žrò€çr@¿ óµ§QðæE…@ös"…[r@½­÷ó²É¨aìæe‹áÆ\÷+ÐR–QØ£•ßø‡ú§­é&W$nÀ¢¹> r–zÕë£8õNyVKLM¬Æä_òà=‰g +œJBòÈÎÆþó ÉÈ|yùË·9 `·³œ—'û9ËçCŽ`’kéÞÜ÷΄‹> Î{ò4³±ç ÎÄ^üé£aÎ%9’¯ü9&8ÀíáÉÔsy,8÷MUqü9×ó)Ï$E‰?SÈõx©K{ö„øÓ¯± ÌÀëÆZ¨›@y„SÊ<:12[Cη0äŠ 6È8¹Á&"1ãÎsÊKwæ#ìçLå¾7æd”G‡1Põ"ÿÑÅrk T›_Ç‘ž÷ñÃ$À_4À/Õ{C©˜Épl=‡˜š© +í·0ÆÁõ"çÃèç aC¨W³4Æ'P4Ó·|Ön÷Aæ2KMËDÈӛ^ÓÇßþ&8´ÄeVÜv oÎÇbSâßm8߈5¿aúy<é€Ý~p6±¿8(#îç(Ôn'žÜ§œ$}ÃÙíäißqïÆÚÓwú¸¦é=O•U"ûSöñeN¢9Mí¯ðæ{%ÿ>7b5ža·‡Ãobmíü¹ŠfºžBšMÇ¿ÓΣm4þÎq™­ßéä9œsXó$ýßÛÌ‘ˆ¼oÎj Ü.M¼4ÓÉ1 +i¿Ñý¼“Êß^H‡å¹&—ãvz_ËŸÌ&Ööo*wñpL൞k0÷$ìªGoø×”5ŒDÏåcÜv’6ø€O"Io1¿8 šs"íçz_Ç™VÜëõ<ÆÖ¿8œív\÷ç#·˜¤µ1i»™cµ¹Í/ÉoÝõqÆ-Û5ý~îc­ó/Î4þ}¹Î¯uµ¿ê9kó”ù&?"þ÷3/É}wæ¾KoÇÃõW›îña‚íØ/ÛãÎu7ݯ·-õí{øsŠÞã™=ës þkõíÅŒ6ò¾=øÛUÊü‰>ëëúýÜt û¼~žAů»_ÛÆÖ¶·öžqKþ½¹ÂK\óî9É/MÃ÷_N÷ä\×»OgüÅQºÂüÀÝùÒø{9Åûr4Ýø&ôäËü·ßï·òðä‰{Ÿf¼Àûöékg0T^Úýw¿!=ìmÛõöó˜ßm?o;mÞ6ã`Ýæëõ_ßw×Ï/%`ï|¿ËGÿ+Ž+seþa»}£kwû_×ëç:íúöú»[ªwk߶½ù +´oðíôs^ÃõûùÁvÜý<ðïý<èvÓêç*›ùõGÆ­8áÝôäüCÊÛú_×O»‰i6|î—µü8"àÖùaýø˜Ím¸ã÷Ýõñ´w䘻xó$wç(÷}|â/áÎ Î ckëÎ÷=Ï{žç¹ÿÙ +endstream endobj 257 0 obj <>stream + + + + + + 8 + + + + + 500 + + + + + + Y + + + + + 0, 0 + 255, 255 + + + + + MoNROVIA, LIBERIA - January 17, 2009: Liberian National Police graduation cermony for Class 33 which contained a record number of new female officers, 104 in total. (photo by Christopher Herwig/UNMIL) + + + + + UN Photo/Christopher Herwig + + + + + Peacekeeping - UNMIL + + + + + + + +endstream endobj 248 0 obj <>stream +H‰”WÛŽÛ8}÷WðQ^ÄŠ.–Õ^¦sd0™ÝM˜‡éÅB–h[Û’èèÒçë÷T%ÓíN€…aÞD«N‹_g +Ô*ŒTºŽT«gªfv»™½~w¨¼S¡R]ÞÌ^ÿŠî¾›½Þ„ÿ 0¸ÙÍ?ˆµÉUê'Š„P%©FEþ:]â{=ó~׺R+5ßü—w#$2$‘Þïeóíu§žÊþ LЭúgkrÝuº£5´ih7¥ =–ôa3û—¨ùîŽÔ¼{÷tJÔ“ZªÏjÒ8¾ üÕ2UQì“^KÿZI kïf_Àµ¢Ž®ÉñM⯣›› “Õ¨wô ¬Àƒ+7ÅÌ{ÿþ‹ÊšBÝé|hËþDÞ´ê‹Þ™¶~Éò×wǬyóæõ/y?dÕFëß|üðñcñÛ·oÕíûwÊîýá3šŽ·ÂØOW‘Ý8 Y¸u1@K.½ìºv24QI„*ß®!Œ åÝl”,h!­ûË[Í«ÈóÃù"Š¼`þïÍoŽÃÎq•$ IEäJVþj+Œ-×ä‹Ý,Y¦~œÆì>x‘·¶%»εÊK‹¢ D Ìà•$^«5þjF~’&*\è¯hñíÿéûÉP¾† +¢ƒx½Ti´òÓä//…ɉçs¹¶í0‚W¨yËeÆeå´.s.KgdÏ¥¬-¸Ô\Ö\.·ÎªÊiwä÷θqä«+ +g¼svÝ.[GšH>ýtUïìÛ:3]K{gÕÞ™ùCý9&ÇPô¶a`Ï'7&7k¯qÓ?vóðÆÛé¶löj­<ým‘›z›õYÓw<’qùhª¡é³öĽü`Ê\ss«û'­n—M¯÷mÖÂÐ7Ü›qÝgÜvèœó '<È>ãZ„~Çjój‡¶Xê" €gùXVeÖØnU‚Y˃1E7NÈšW¶YŽ³rÝöÙ¹—VÇ9[mÇ–à0ÛJ×°"÷íðÝ UïìȪJ7ÄÖ¬1a^k]g'òp òj(´tŠ²³ÛMÛ—¦Ézû¥ê­n;é˜ÝXßqšOãðÎ1ãõº˜gòÁÍ6kØ:¶cuÙÁ¨ü€ÛFüëÉ¡‹péA9Ò°’ÞÙ}Ô;¶¥A¯Ôô‰Ä¹ÁÞ¦†è +v +W|ÍqŸD]”c²aMÿ|?Òuó7Šî±,€ùgµô>|£[R6AwŠBCF¬b†ÔÍV–`xŒDú"NÃàÖNQ*«Ê11î!µ|ª¦Í–ì AÖu‚$Ûv¦=žɳc–OŽx`zg'” víÚ`ÄÙÖOºª.G(Rš¬ÉËÑaUY—}æ®}t¨s MŠ—4vZ&ÖίC).bôñis°^“nÙIU±-+¢ì¤ÕÛzh¦=.w,wRWì{+þ|FÐ1vHë!}‰^ýÐ6œU™¡WäCÝnWQë¬ÁáÞ •Òõ±2'2ÏP"NF` +ȯó²Dét5\ ÁñIÇZ`*_h-džáê9ËÆà=BläâØÛ1;‚1tm¶ ¼ï6̘r®{.¤Å?†â'^^ËÅËŸô; TÜÜÊêÜ2  ©N2ÃéìKÄ£ÊM)C=ˆkYSoA¹ÑD‘ì£ «æËЃK„¦XBosÑ‹8FŸ£ug¦¡­n4M#øн¤*ånìeÂpAÖR4ÓË‚1Œ×?gɮ͞€ÁݵƒýCËMÓh©–Ð|ÔòMˆ ²ž§KÏçîÇ¡)ä~I&ˆ§s›Lú.Æ“ÓW½4ræhÖõÅ«è’ÒçÌZFC-Ö¬n*Î¥Úz—šCó„°Õ¶—Ãjæ*n·¢^΂ɴ8õ~™'œêð>ñ9o<¿Ä—°â:ܤq|6;Ž„Žc: ¸ìÍQÛaÖÃ17ÑPL2ëe†x¡“áÌ“W:k+»€óÓ#‰ðeÝofk§´®œ`¾Ä¶‚ãî£(•q7’* Ý}vs`dùã§å9¿ƒð²sâàùz™°…ðól¯ý/Ô3g{ß §Å|ú¢j|ÅR>È—šà]s¹ë•®^ô|ÆýÜwáå‹“f&#öñyýÐZ⵬ñz£—ç;ä±ê®Š“º5ßT4)ißiÞ'‡äw¦ªÌ<½=©¶Üú®üNîÅÙ¿Z¢ ‰nù=¸ú¬í[‚ê0XùÑoÅe '¤KyJ¼§¼vÊiq/{ÈkÇëºæ“j4vG á4Û¤¸ ÝnšÑÚ……ÚQô~pÂãGl!ÑÉ()œ7¦W›â|Ù \g ­øŠB\FQ¸N’àjЈÔÓ¡¤ÛÈ~wpá¯Èg*½ëID¦*«^ ¥¸¹×>-äÕ›Cy6f°–SœøÈIÎÚ~Õõ< +µ“3ýá•ÅžÚ"UÁ#F4©ƒlI:ÙSΪðX髳ÆjUˆZŸ&Ǿâ>À{2 äGÅðnÈ ó:O„wŽ‚?(RcÞÂ[3KÐÅÚ|ɃÌuÖÖ®C;‘e*—‚ ™êˆ]Šy˜¼ˆQ :.ΨÿÉÞ+.B½ÝcуxA9è$»wÑb–—hE’r€pNXÙû r^@ê"ࢠHꞢ¡02E ¿´H6ñzlðS »GsVjhì#µ?Ñ)‚ví@·âèmf*¼!­ÿ &Sºª˜Ñ»þÔ.”ÌÐ…¼?ÑýÍï†m‡,Ÿä9çàï;g<·‚fÙPÚLXÁìÑv +Q\”tê[à‡-Ð\Uèu8à²Ç9Ímuϥ톎aþ@z ày©›üÄ °ÿð€À••)Úw 9ÐFGDèÊæ»ú\á3_à«áRq¹åR;#…3R;óefÉeå´;g~áȹ÷œI¾3ɧ»ÜÝË•“;#Ç«½.3.ì2öNÎŽ­³IîhÞ:{É.÷sgÙaºö¯àpÒŽòõ+—ƒóU6襳ʅÉÁáó•¶Úq•jçË5ŽÎ´²wLpÕÞ9HåÎÌëUb¸ûõx¥Çã•9ƒclÅN/ÑÙ ÜôŒbmÆ«º‡²ª„6, m`¡pTZ%ã,÷ŸYÈ‹þX2qá—û^ÈbÄ]¨EŒ‡Iï©zæL4ïMVu{#EY' +ªáûòtî(t£à¸]áA–X¥ãéXrñ$•Èš®x=TË"`åW‹ÚȽr7¦éQð›BM8·Oý䜒ESŸé Z¡3`ï €MÁj/½x´©Ù7¹­ÁO)BPñ¾ÉX†Ýè ÷Ñ8ü¡ =§3€,ѧëðWó¦ ]¥–@þ€QtÈ÷ôÌž|ÊÿÑ8†×„‰Ž—ôQ…\¶Ë½v—ÂŒ¶:©‘Ö‘Nš×Ûu!b«íj¥ß•¹ßiØl]µ:Û^9}ÿ KŒÕð0›õÒ  K‘M´Œ òám¨šhçF…ç¦=ÖÅj­j.›„ÄÁC»–ö;5§'¹C9¬òZ—Táx'®æ¥^îfmt±OÂS¥dÙUD. ÷9ZˆÎä’%Î(ªfYïW:þPuU¯#Ø´ˆu]YJS HÜpÐÐ-›ÒËòA¥$w1’“Œ†rs¨•`BøQ5T¥ß.·y‹ DþÝÕxdceE”|„°D­E¤7¨è5vnM<ÉêcĶZûá„  –ÔµÎZh¨’æöõÌ¡ã”Äv¿þñ~{L·l¼y: âyd¢, ’(3H¿Y›9¾xŒWz/ xâih’,¤®¿¦ñ>ÿ‚žD1µsÀiš©Á Ã? +f“˵¿üdáh¼£˜ÉÌÓIÆqfæ“Ìdššå–WßzãY&‰ @S;uìtT{ïöö’I0 'Ñ {Wó/­o°íÿagèÕ?Üþ…g +endstream endobj 133 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 143 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 158 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 173 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 184 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 230 0 obj <>stream +H‰ÌW[oÛÊ~ׯØGª°h.¯Hb§Çç4E 9qQ¬©•´5/ +—ô%¿¾sYR”lúP¿³ÃáìÜ÷Û“@"•¡È¡hôäOQM>®&矖ȭBؼšœÿ–[;9_ÉÀ\m&³ÀB±ÊEæ'‰@-D¤ðLAUú‹Eº«ròÝK§³4ô|9…¡Lÿµú}r¹šüó¥]þ{.’ÔO‘Hü(^ qþãÓÿX~úû$ðq/bñEL’…ŸesF~g"öçqâžðãròãG2]Š[Ü]žø¾ôž )#?š's²-µà™'ƒéê?“óå^UïÞÈÛN+ýоû|ùùsÑû÷ïÅÇ‹Obâ ”¼ü$n yŒa‚A”þ"…VkˆÖUÕêm£¦3x­^‹ cUSªRWíÙ4ÊOEZâ ± ý$ƒŒ,Љ~|Ñè¾´ÀÒð4æ’’‡Üfa +E 4ôcý BJÛ¨$¾{—ªÜÚŠz#..¾ +SmjH…»Ñ?:ÓhL•…E¡ï¦2õTÕ +Ëå×Cœa“§" $e#ñƒ9¸è§IÂÿkÙp>¾P‘D{¨È…K¾%&*…˜:3\¦†’Õi +MF…ê-õúÞtž½7œ¯rãÃV?u#‹Þ„lÆkÜøîý¦UÑî°ã§³Øk;;ªµÞ-’oÁ-6ãUÙùªª[½“×e‰3nÓU9¶Úµg¯§Oó'oÂA6ãuyû›®¶7˜&V70¹çÞÉõ3É‹ÞÄ„pf¼Î·Ëu—s9BÊÎWÓ,öe*SmŸñO¾Ñ!_=: w¦ÕÊŵ§í^çFºû(6ø‚º¥éfˆòjÑî´Øפêøi0ìüèÿŒàПS¨]MnîëÊ +@/½çÏŒ¤d¾x Ž²¯tôª¾/ôz«±i‹zTáeLªÒTú9³äMø›ýÊ„»xoŠúœ³ʸѳ!Ï ­$•oÂÝôõ°æBïuµF÷äxIâìMx¿ÝücW·õSG¢71^ØŒWVáGS—ºmL.Ö†&ªiU!L¹o`žRå`ú3Ø>^D~&ÓŒ¯¤™Ÿùt™ú6 cO·-žIaâ‰ASä® dHàÌ'â 2Ký9ÜSIã·©”ÒiÓÙÜ3–^Šž{Õ´&ï +ÕÄÈk8*h©Î:iÛi¦*zÜaÉ}mÛˆ_Qjòöð÷Ck}ZýVßë;p¼žÃêÊòÄ›aXgRt$3éGÐ`rkî4™“ B8«áºyFKÓÒkßàL¯ïÌZ[b(z–ZU¼†a‡/]íT•³ã‰‡G)¡Û¨iÇ¢VçÝÀƒE ‡$ ÛÖ´³0p™ ð¯þ‚Æîؘn»ƒä6µ ‰ö„U»S-S{ÝغªtÁ˺ӽˆ#ÔÞ9µ£ZǼQùíÖm@“{ÂÞÂسþP1GêËPre82ÈÈPÄIäÇaʵ-Ãþéªê¸ âl7Ù0q<÷×oüY™¢#«z'jÌ Zy>—C>±EZu R2ôa ¡ò¼i™‰f‰d……âZ†ß+˲®˜V½!*ºÁcÿØñ{ •WÔ{¼òÒÓ /½Á-6:?©Byȧ¡¼@Ïq”‘`kÕMᾌŠ%<.渤ã¯CŒÝLç^g¡šy}3(X¨eRödg¼^t•ivI¦º i#¼"¯S 0— +F 12ÉõÔ»ëgЮζ*KŠ}êÙ]Ýk"oXYîŒßtv#rÀCè9f¯ÝŽô:dÎm:ÔÃSc!W¦ìJð0KkÂR/1Á¦dŠ¦p' SÖg +¼µšISåE·v Ûm`e¹¡¤?£ASa$ÖzT +T?:n¾,ò*rˆ~‡U®ö*ç´Ã +=Ä7ŒúBsá†uAcX'#8.þ9 š`ÀêãOÛÖN™…? +gKݵR2ROeâ=àc†5>J|ÜàCᣨjXZ|ˆi8g¹nø@<ÞÃדÊaY‹4ø0ƒf}ÌSƒp;(8l^ ╃‚ƒo}gHËæXón&ÞÝ°lM["fpÆ"?ºcÞÁsPðeøZ T9ü[ŽrÈUò£3L` QÙËC1=*qÙ÷™¾S\âÒLÓ™ïá|´ÔŽÈÚôßXìu^f^ŸÜ·|nFŸÔûºiÉ’4âà­”7 +?Xâð«hîñ²&—º)Ý—BݳŠ +˜ø1w¼›z SðzêÓêSƒW\£hÁÑ‚cèèt>¶fkÝOÛ>ž4`y¢¹Á…,ðæCÇ ñ©CCÜ©¡c~<܇™ ÷0§+o L;ØûŒ×»®TîSc¶;ŒÙ;>€Ô \×Ìh”pFá àa(S,é¿lø}¯H$¥½h˜}8v@‚§  +n-Ÿ>‘s$êaQ”œ¤9£s.êQ¢9(öC µ´ÔZ\]\|]Š^8\â¥'x4H„Á‰ È h8³WÓEà5óŒÌ¿Ãyjrí_OO±ö®?Ýa’ø©DìÉ {Π{Ùí±¢ñ‰QéëK­Ñë£â¾7í@”Bå¢ô p=Œæ~¶)syÜ>³Dö¥”@Ýh]1eëܨÂü¤¤¡tÝÿåD;놺һ3u¡«ÜqÓsåy:˜ÙTÝôé7™uñ›†|ÀÆ ƒ9ø`­±$šÆ ¹„âjÃ[”$̵ˆÀÏ…ä èPœáøBÀ:š²_x”èúp‰#og¯ñÛÕ7z› +P!Û+œV–¨¡•€F8æ ¿ø6 ´¾s` |Ué4TÌ$ÀÊZ^DŸÎ‘Ò`ÎdF;Òÿ@[Æp›uð‚¸ýWŽ‘üY­[Ä ÀºªrÇ%HñHˆäŒ>AzQ݈> X ”deOÇ,™ •eÝšÒÍtN¨c´R?ààůí®ÿîwµè·ƒ,`nfp©4ˆÀí±y +"¯fÂD[»ºáº‡j^ãíuóÈH÷é• +úŽÏãÐtçˆ;"¥7î>@m…ÙþƒŽ…ƒÿœÅÞÐgà®› gX§'gc8ô!î£B&.N’;‚¶Ç}åZÍjj¢Ÿªo¤ºš>“ª CÄÔž (›ª¶úŒŒŠ‘Èš2MóÞ{û˜CÞhÚ0gh÷±˜®Ü= Õôr¤îNtèwקÇ=pYmÕ–|K¨ÍìÑóWK¤ÿËzµôÄ á{~…ÀMl_AUOEB‹Ô —m6-H!YÂþýÎÃÎ& …C¹$öØþÆž—?‹…ðu×Ë9ñZ{¦/—; –<¶, jgtqàO˜?^Àm·çÙ}ÓCfjxißDe*ãù"Öy‹p|%ÞOã1á°HX& Ì Ã~ƒ¢–«daF¼€á7tÛ¦%%«äå1yæ’’¡[*ØÏd˜m‡[‡³!,E»‡Ô8òˆ°Ã˜KGÎ["_94ÒÌCÛuk‰t¡’Øåë„Â¥Ûöý,l;Ì7²ÓKŠ‘¡i¦ýl·÷îH‘ËèfFEE$Sž8ðï§ÈO‹ ï0q¤•( ¶¾»‰b8_≜X«Á[4%æõ|HeüT†Ð9;%¨%´.ŸÚ28;·„”—q®6¥jFEÔ‹m_|ù†‚ßã’ò B0¸á¬öe•‰ ËÒGâÂÀJíbHçЩ|Ïa¢Ï#BžÞ7ŬôI%2¥\¥+_:*óµQÍcA#x]GÀšm\T]î^äþ}ñ+#n®®¹qPŸL“~ƒðG8[êàÍpöw²| ¾+q±Ó±B cô +´ÅIZ<ÉÏô•Q!ýP}qyû±Wj§ë-;²Sì‰S,œ:ÅòÚduÐΕá“,ö +í]ƒ‰[ÿemv´Q¨á «ÿ`=( +endstream endobj 183 0 obj <>stream +H‰œÙŽÛ8òÝ_¡Gy«Eê²0A€™t²È`z ÌCz± %ÚæF‡£ÃÞ¯ß:(Y²»±Á¾ˆU%’uü¾ð߉…t’T:^üåT‹ß¶‹»÷ßÉZG8N›U‹»¿zhw[ñ/ˆÛýÂ÷|9ÛÌI¼ÈÁKp•±ï%n“ÒK“þ— ÷}Ö…;Ëí¿‰^ð ¯x¥û‡©¾©ƒn'Óº;êÆùÜÔ™n[Ýâd*,SdèÒM¶‹°˜ï7(ææýŸ Sä<9¡óàŒëГaâÈÀC¹Bo Rñ´Ý,¾¿b€[A'bLUÖ©Éu2SÙä–WÆò½Ààä6_¸÷÷_UåÎFg}cºgººq¾è}Ý”/i~·9©êíÛ»_³®WÅVÿèÞ~üðñ£ôýàÝ»wÎo÷ïËûÀo‰ÀKbi§t·õ0Ø,š;yêÙQÏȉ$,’]›Â]¤'1³A²Âƒxî«/W±t=±\IéúËnŸøëVQ=ØtéÚ‰b/NhaŠ®Ø/¢0ñ‚$ ïÑo©ýþÞ»Ž\!x›pÖ‘çiè$2ö’ ÜW7ñBo$®ó§êúFÀ ­û&ÓŽ^ +ßýq*jÓ©ÎÔiˆ,f¦Ä·¡BÀÈÆO½ "f³=jg¹®) +}.ëÉåD¨÷´TV„›¥X»$/D͘¬:‹+{~×v*+˜SW3“=nÝCÔ™3ÿÀäC9­}•ë†”£ø RϧÀ(Z¡ëW–´^°ŽþÕ-M…¼#ß=‘,u{LȦUguU—&#„%Îê³nž—B×#òûºêø‚‚püOÀh„ñìÌÆg“[‚zq³cU¤¿éwªzbE…$íLÕëœ0+k³\»½éJ]uDF÷ÐÞr§:U¡¶€’aíŽ|¥«¨«ƒ©ÓƒgSºÊ´GؽƒŠ‰ÐOô§–eÝþ DT,„ƒAØW…ù¦‹gBЯ°(>¥õ”˜›V5¥B‰ïr]Ö;S˜ÿØø‚ßfÏ›ª# Ôªj *ê–„lŠÑ#‚…‡å¬Šž¤ã˜˜ÚÓU;ˆ¹ áá/I©7 –Í#.L]…Qh:Ca x{¬û"·ÿòܺÎþd¬Ðg…öGJ×(S‘œ—ÿß{Ã*mOV‹jž%'Óy6êAwt j3&ñêVl0%„3jÐœÁ•¥$[J^"¶ÜD®G[ÀVœ¼°‡è…½´SE ”¬ +ó’* }×F¸UdéíÐwÀ¿”À/öÜæUjW7 ¥s™@€EÑùÆŸ ‰Û¥ß'ù§ÆÀ.»‰ªqÎzË”Šþ:švye§È‡ó5ŠÌUb¬º!WÝØRp¹µ €Î"ýuìD)4¯0¦¦%ÄÐ[mµži!×^€Á¢4ðüÊ5Ui, ÝÍÑ&_Î8øùÑb“uŒ³E˜—ȪxnMË'B¤º¶dRž~MÛöÚÞ7¸É6HCÐ4˜Å&ñ;L«¤¥„5>OT«ýïvk/ŒD2´ÃˆÛáU}sÀe]AQy­ÿùÑë 0’ÂókÙÏua2Ê{4´©]aÚ#¥¡ °r¹ÒO´6ÈÉmG%¡!ÐdÀ)k©ËnZ‚1ódÀ%X™„öCâE££é†;ÔórÝDà^eP8¡1óu¦êô¡±IøÎÞÓŸNuÓ : ÌÇÞQ†Lë.Ðò™`Áœ¤šéñ³iáB>oxâÿZe|ÉØt±Ù@í ¦¡óB¡Æ³†»éÁCà0þ˜Caº \VÖ,1®”ÛÚQ"\÷}aCYjaö“øìy¥Xö€ƒqêh‡_f:f@€f1§CÈ:ñ$cÙõ9ôÌ–àG×x¡â8KW×´B<Û»ÌáH&2Ÿ§„»®1»ž §EÿX]«Ç¥7‘ñR;V‰¼I€ÉR¸²s$SÀzm„û3®WÊîm5àŒñÈ@®ZSGÂÅ©}óÒPÉ †§ÜŠm¥…÷Ð>˜ËxGJf«ÃeSig]Ä´ö†Y²Å!´ò2DãÈ®ì 5»¬p¶ÃýÏÍõ˜Ξٖ•ÐÆáAh" øl(¿`TT|VrÇàáR»LB×úóçZRùž¤ZRÌ-é‚ÃÉjxA±ùÐtêÀéxÕžü×;SH/‰Bû4ûëhðÉ$ö Ö1d„„L.½¾47¯§c6á4”aù»š¸!…kCù  ií¦Ö(«‘aMËŽÙ÷±®¿ ® Š!84·IOzƒT†7îÁ¼¦!ƒ?¸š©«)´#UÍNå|ÔSxa½Û1«'ÙIÃ}(çEØ#R$u(í<3Ôlɯf;‘xaÚ½ྺK:yÔʼnÛ_*±§œÐ‹(ˆz¶Uª.r^]ìPe¹M£ŸÍs0-–Êø@ØZÀl°„š¡²GaÀ`ö³;êÊ’&£"cÝåÖ¶3]o=I‡š+Æ;è®g€Q$|.Tü`¹ ’_n-¼hXcË-ä<"ç¡ŠkÚÙ“DÑ÷¢'#ý›éªíùýàÆÉ[fp Ë5{ˆõÝŸÜ„ˆ\…A6 Üíªz,J¡rÀ•óíϤH$ÈNn„0kÁsçÙÒwÃý*ù­Îùu4¦À“®ÊoB¶ÏtâÃÄù¢ b9¸ xÙ“ÄøØ—ªzíµˆóìP Ý1û‹)¦ÅuÌ_½1f)»Š†®Ù(@àRö'›GÓ0@lâí/L¢@½2‡ ½D„Öá‹æÀ£ÓwgtÓÍß ,/B‘´¤¤å0Uò¬;áWQ2­aL°'—×"¬e2Ó2¹$5ÀS™òÿ5ƒŸàñ¶¹Ñ>$Cñ‹¯´w½`w»Ò¿1®â˜00šzeYLÕß.SgšÖØ$ü½Çà×0љۙöÃr™&èYc«¤j€¦éðù€½“µítCÿ»lrÛ.Á„„/AÖ\=Ôy_è[s…žŒ‚W‚å'Í%ØZÔmááAC|{2IfßϵöY5êF(š9R/±,ºâ +Sˆ°¿®Eô=¿¢Î Üå4fƒ‡E)r]F‘Ë2•:ƒÎcÚò*]‡™‰ÃÜ&“xòá’C¤ôRø³§T ‘Æ3+ Ep•Æ¶>ð0)Hˆš• lž¡×– ?ºŸ6”倌c>À³1 æúþ /Y®[äðÊv2FÀ6U€8S„¯ ™fF¡wQŠ¶fh¬Ëˆü—õjYn†¢{¾BK6ÑHBy›L¦«v¦µgºé†bœzâ€cB›Ïï}¶›´µWzp9‡û87dT. d|ÿKZWá¸2ì@WQO¶£#Îdß·tY³ª¹m_Oc@.TþFgöeLôgdØ@³åf +†žè$ÆÏDéÅåÇš3åÇ¿‚Û¦lªíXÔù¦±»Ä¥êÆ8êš:žò/2Ca‡I”hy5u¸XÂé²$~¯ŠË²“¿Áxš`ólJЙT~ˆyÿþÉÇ€M­Z!½÷3ën_#Å,S8ô+ɾ$Œá‚/åULz’‚ öVë0 þ­GÿV±ëQc¥¿ÚÃc8f3á½?GÑŠµ/¤¶ÙÕ(&¼Ì:¢Ø¾C1¼ ½Îõµø8Å{“þa—ãœåU[iˉW»¸ŒX4Îÿ±þ‚*ìÕˆ=ÁûObÿ '¾ÕoŒïPa +endstream endobj 172 0 obj <>stream +H‰¤ÉnÛHö®¯¨#5°hî¢A'N2i ƒL, ‡ö`P"KR%ÜÂÅŽòõó–"Y²ìn4æRë«Wo_~,<á‰ÄÄzˆV-¾Šjñf»¸~{牬¾]V-®?ÀöÐ-®·þ=8Üî+Ïõ±ÍÄÚcXh‘À˜ª p7›d#¶åâ'Y®’Àqýå*oùŸío‹wÛÅ¿_úÅãשˆ7Ù„"vÃhƒÄíùÅÛ;|q÷öÓÂscñ("ñ»XÄw½NEºA´‘›F±ááÝâÇ ŒzDº/¾ãïþ—‘3áû¡¦qJ´­-pæ¤Ëí·Åõ]#«W¯®o²~ÅVýì_½÷þ}àyáëׯś۷bá„|÷;,¿ÏøQ„1ÊÐw£þÙæ ¬U¯­\®|ÏéU.nu'ÛR–ªê¯–áÚ·ª¬wºÐ¿ Œ®+!«\|QÚ~ŠÇw=\È6ïÄ,ô0ô]/ŒHR ŽÿSRO9±E†‰ú`¶È„™*wª £  óÜ$fCà*Øõ.Pôišˆp¹Ì‘¸ñT€}„>Òøæo’0Ù¾gȥŤâu°vÄLÖ[ïÅrµvú£¢ùöö ÍM»ôS§y—%ß”òD³®hÊTÛËq-;ÕÙÏtÎ$販¼êi×Õe c(xT²©+F³¯[Ö©'V¾&àŠ·@+½RpY‚å,#§SÙÐêþ„k8eœ‹Û Ùg"ð +Wùlo¸%¦"g§ +¾Âùú@âÐÔ=@kYàVíé9ÚšìS áYͤ互d§;Õ?*U ”-šòÝÝ—0XÎ8;‹Ï*óg…%qꦱ²Â@y.yÊÇ¢P J’8m=4Ý„Ö˜€G(Ÿ·ƒ$òݵŸ¬- +l•¤“.aùx4²07u¹“¨Ds-íË\e…œ$‡'l{^‘‚aÖ†`ÚØR€æ+?Z!éÌ'ÚÕÔ…ÎÌ_³<§”ð2J T¡ÈìààÛëŒÕ˜8û¡ÊP9í2´S˜ ßTÆOrÕ«–Uø;èªhh¡ªn%¨ê²)´Áu¤9R‹©ÅGµœ“MŽú# `ÇhÈp°=êŽ|Q(Ú”C×ÓbÇû¨-§N2W?Ùóí(=Xf²‘ù lúš¯ É{ö|m¶ ú­®tGi_Ð>Qv.©Ä[ ‚óŸÄ›ú§˜l2d›t|Ê+³‘:÷K—2H@N0bÆt±E©…Í{@öSoî&沘fºiË¢  нFûF¨c=9-wü\òs0Žó_ßÈ»é·BVÄ‘³B’W—4Wð/ð³òcv*˜Ñt6 ‡¬#çŠÁetÇ&ˆÛz„-Ö†Þ ²pæ·†\ïÌ c6B“ny9+9Øþ¨%¬³ÌxÃÙ`.ÎòËg_­øÀì­´7Ý©âËIŸÀÍÇ;Âà²ÐÀÀÕˆQà‰Uó`vûî½0ß €%˜@2'YuF!ùJô-$/4ôç¦Õ5å‘Nõd5Ƭ`3Û ß/—‘Ñ_Gõ¢q´NSªž¸Œ/F1éáçó2ˆ&iTHõ¬ÞìGYé®7¶Ée‡eÁLÌÆdœý0r“(†j#܇µ®IP´ÄBb]¶Ñ€Œ¹Ï å›”oÄ綆à9\'Ü;·o>Ü/Å£ìD!!ÆYôn&RÀ5˜Ë2ˆK—ÑÆ(ÂÆ?P°ˆ¶ˆl6öO\+>5Ä«=žÖÙС僋T''€;UêAæ/D Õ%¤óùÂûñ + t¦ŠHÔ¹È'6ضá¢àèÎ9Ù{%E?´ +Ùj!6GL£ÿ$˜‡ºªÜa–ts‚`&*u¨ Xùä¿ ÏÂn¸vý(æZš‹îÉÂVæn”#F"UÞ²3ÄLú¿êGõ 8 i*Ø™¤ÏU‰×%–}ºêúv ó(± +Éïë—”js!壉ˆOŒÔõ™þÞ¹ùôù~iHšt•XCãrè3¯Ñ}»ZäƒBãA(èAiûY˜À'žS»‡`ÑQp8(]d6pJø”XŒ8PŠ>J"6÷XB Ajžƒ'`s¥þ…ä!Tý€H‹'²F[â PAk;5-@X°q4j þ@£°Njk½ºÀYÒØÐXШ'üç40UîÒ ú74ž¬{8Ÿï¬“K’+ëÛK&˜Ì½uÐèYã†Æ«™4›óÞz*­u÷·ÅùÒ’{iÝæ ³Õ^h«±`Ž6û­-[÷bb}cp¶–>´õ¶ ˜ÓÌž3qn…È©!–Ži1 e®ºFC!ù¨qÕ*°óª®VvûBý\Í-”;©æ™^à‹Ú)l“ÂÄj“x_ï¡奮°ÜaRÂd*ó`É š;,^¦R 0 ÙOïx‰¹íÇ_ O¦ +Lìæ„0Ì2–zyÞ!„ÐBj§ª•9²keà`] in !J‚´+(³¸ç0ó£*Šó=¼€<Ä Ú¡?’h’¹ä…¥I¯Ü àASwS ïöµƒF¯4˜¹_׫úöt®' +ÇÐ +P)> Wʪ!§m_SruÍ ÷q´lZ,%³ñ)uŸ´2%ëPôæ@7F‡÷hÖ.Sgн±6Ô¿Í¡\ÍYtW­,nΔº(†œÄ‘“u‘a_™3v€˜g*øNwÇqu„ a7MÏ›}VCâ +çn’&ld6 ¨X—’Ï° €©®xÞT¢ýy› +®Ü©ƒªHòAׄ…4ó…ûÂÙ™ÑÏLjõQ÷G¨RÓ¦N ¹Ýô)÷é¹ï3tMS®,¹œ#.ëTª¿¤1V?òô c#æd¶Öžé¼©{t&ô­§t;­î¾wT"Aä*ÓÖå(¼ËÎöê±SGf1k8ƒX{õ³_u 4´èП[»üô´òš¬`ÐÇEg_U²Ô~¹LWßÉìÏÇÆ°â mÅOT<÷Óx?–4Nq2§dÖÆ ‰à̪l åÀpÚÁh¾Jœ¯&þ<9ÆDV£Órp·cûí3–jµ¤ LlÔ¡ 1aψà,ìLAçO`”¨}õ'M;ʼnN:ÕÓŒå/ÎUÍ{â“NCòg`¤+2Ö°&¹©QuS¨3 ‰sC£0‡ø饬vüôjgn†Á»~Gg0O¤HQ\›ëХמsסYtŠ»µeDzûø÷Ń´a[¹´Íà €|“{ðnÎìˆÏL!AÅ ÖÍ¥­Â<pa¢³ -žØòbÉ× +g0Rïæ»÷Ä ˆ¿Í‡å—BøÞîÚ+g @šÊ%oêW½ñ¯®xýDîê@÷7š]¼[$Ç9àχ%3¹ØP›8,ö²d[§ ÄB¾ÑÜ xœKÍSžÀ›[bs›p§w±A<å8uÎ3ܥTf‚¨À; m=¦q²<ì—[á.õéâ4züSCe+ •€Õ:ÐÊI’'ìå–ÑæëOÉé_JÎÊè|ʇ¿ˆöhvú”ð{+Z2›&2P|xX>q2ÏÉ`Bê$cìdãÀ¿Û„S;Æ„Æ@Øòßs’Â&ã¤üœ@r^©ÑHŠ(‚Â' v«¸:cUü¶Q¤wŽ àN!<ìvÕö=T_Í÷;+4£ÔÐõ8™”y2ñé™:žœ‚™¡rµWÖJ¼@¦z¢-ÑÑßD¢KÁ+¢¢BÒ 9kÛý%$S¡m+ÖtÂÖ£à;ae¸Z ºë÷ÂÞõ $ò¤ë++òŒ+ñ•w}Öe%÷µãJ¦mCókCµ¶I’ѹ?]ÄמèÑVðüu}µr/tn‰î„X?ª¿ëDWÂ×4ÿþ?\®|'v­eIBœ;N!§‘ŸÂŽà¨«ÓŸ’’½ädGØÕ š ½§¼'ÆUº.›¨ <S£!ÌüêÆ€*DöfÚLJÒúþ®ø̪g·‰ù©ŠgÐNH9 +`–0U©ƒõêÖ~YCqÒM„Ç¥­‹j•ÿNó\´*Å,«GÏOzQ]íª½zέ,ŠGÐ÷f5gÎÑ-•Á(tŒµòP5¢ÚÍÁÔ3­¬U!Z}Q}ñîNF`üâ# eѼwn ¥v±J½B³ ¬š—ÚÖ!cê’‘”Ð ¼3ÿ‚‘+cuö­7ÿojÎo®ÉÆ8rñ•6&D +endstream endobj 157 0 obj <>stream +H‰¬WYÛÈ~ׯ觀 +Fž¢´0 x}¼ Ç°;AÐ"[R{ȦV¤FžüúÔEŠÔÈØ8È »ªØG]ýUõ“@jF*[Fêh&¿)7ùy=¹» +TÞ¨P©&w“û¿»k&÷ëð_×ÛIàQªÖ¹ÊüTá&8FóÀÏ"Ø-Šüe–Àÿjâ}2O¦Ts5]¥ÓpƒGÜ2Ä-½OÖ=êiÔÙ¶{U·{sTŸunšÆ4¸ åP<Уޯ'ÿ`5ß®PÍÕÛ_A§TU¢~Q½Æñ"ñ£$SQì£^‰¿­ø Ö®&|Ç/¨149^,ý4Zd#“U§wtå¬ÀƒV®‹‰÷îÝ¥]¡V&?mûŒD[Õ³­Õ-ËïWí^½º“·']®Í·öÕ‡÷>DA¿~ýZýüî­’³ßÿä ZaìgóHÎho‰0ø,yÙÞÎT¥ ‡v {‘t˜$É âºß½ùt6Ñ+c­ÛÝÖ4X÷T—OrŸTi÷ÌÊ®ÿ +:â½"¿Ì3ôËCÏmÞ2ÐÇÖ’‘ÀhuÓØMiÆÒ³)˱dÇ^?„?˶{ý$«7Æ8¦*MÓwLµ)îX\‹fü× ôÞˆŒ.K°e&¡wr^œ4ã©ãZSÈœÚ a›æDv‘t+DÓŽLêf#(1ÅñG +ó™©Âä¶Í*ÍÞ—º’óS©¨n«C}lµk}b×{œ =ÚÍ©5Ìca0®Åpo”‘(ìMܲÙ`'I³«€æõhÊêÜš–Þ(<¤bSˆ7¯×QQĶ4´¬ÓÂcGRíñI𙬱 ÉûL}I:ߛѪ'[žBßÊhÇÿɲ…w®rœ¤Ën/<¯»¤¤Ü/,v3DXÒšÇ@´â‡¦mXDq…ñ†ŸH\W0×æÌÁ9À´'ãÀUh( +ß;À†¼?ƒt¢Éú sN”Á9nN1§JŸã›C&Ú} ÉF×+æH×êþÑ$¥©HßXRÆú É^ÞfJܽ;ꪒ`¦o~œ.¼iÆ~CVnÉ€ÅPÓ;Ãô–÷ª˜hg#¬! ÚÆÂÕ%'°m±¬ÝŽ eæ(»°Kr´ç™%|»€(ÔêÛNºbu{³§^'ŽÓ2•8‘óJ ¡XÁØ<Ú²lºéL@-P¼°Ò¶[ƒ)J´A¨q3>Ÿ™½–mÛ°Þ©KâB*xÅQŸ* °ø}GôçEº)ø å^ŠpÊEø#(1'ûÐ{‡R;~ø‰ên‡2 :Ø×õ±°¬¹ú °ÐTB¶›(Æ)pË%ë°– zÔng†ÀQo¾BÏfŸ(¨8J­RŠR! „±ƒé„¯ˆ#¥Îyû ˆ*Î\-…áíïŠÂÞXG&ï3óAÛò$pÁÊU¡úìd…F+ä†"_ég&dá©leëîGN½  nB9½Ä²Ù‚ÐrÅêu…»ÙÒ…$- @`›#4ùÄ}li ;“KÝ Ž04ÛË{°7ñf"Þ¼ð¬cÙM‡d©†;òƒãV‘¸¾ù‰w0 ÍÉ–·#·%p7° K¸ùðšJã öX‘€œ¾§ÝÎFjG¿¼Õ›OÓ,ñ~{˜b;äµj½.³Û˜ÐßO0ôë qÞ0C–"ëD‚ +sg°¸ÂQŸ…ïNÝÌ–bØM¦œáÕ»cÖ ×d9Ë/]ÆBš Xcáà#`ëÞÝÆüAõˆ +ÿ“\Ç7 %Ò°ŽR‡ -UOÝŽÊè­^a1 +Nâ½\Í7óP.)Pð¿[6°!Do-"$ô¦1 ›Àý(,À(È»;fÁ†Z8üÅðQ/9k¥!4ܾx -c<0ãêFËåǨ×zÙ“ëº+•ï! "8°ü¤×`Ã]áþ9ºúâ3NŽkÝóá3‘WeÚ!g:@ÎxùA°ì̽»«bFÞ³Ó•…ÝA'ìGlÑÝB~À’!á"cC6f‹÷>‚ã&wˆ…©j¬Ãÿ&èûo=üío} o¾4Kâêéi†1¶È]þ·ŽÆu¿6ÏB€ÚŸÛgi†A’›cË¥9á!ZúzÝmÂ×é¯ñȾº"'ÅšvÕÝŽ¼‰u[ÂÜÜ +|‰Ã¤G˜é `Ê.ñ²®.‹<¿t3Âë³ë¾Gr5ãwïaJ÷¶d\–7 ¤4c@"÷9éW‚ç[D5´¾UÝCA2B4Mí.Î4ì=ð÷E ³]MÓ…÷…êœéšÒˆßQÈZEôPšQà€væÛ©áåÍh’ô,ƒ=Ì7(,ÕFã9M7±¾U„¸½ë«=`ùY6~ÁQ²‚+ „ø,ø­‰³² } Í´H0€ut£©4v©ÜºÅ|ˆÁ `ã)5º(DïæÖp.4 NþoÕ`9çCº¶·ïÔþÎÓ€CÊI”fd œ¤DB$st7 ›!ê# ÀJ]÷ +ŒQ ?É"8e]L¼kô üd)¿®¡ö¢Ÿ%ÝòàE[ÀZ²j/`¤®¾t|w< e³îUvýÚ˜…Ëÿ°^» Â0ôž¯Èq‡A \7í:i*ÒÎlMEU -ÕZõïgÇIºí´ â(~ÁØï ™Ëx(k¯9Bží|å ö²Ÿw',ÿè+]ÑOÒ¢~Ë5<½:õûHÊ›õru<…°ë{OxlBX"79Ì[ +è{%š2Œ¿Qö}GîÛãq‘‚…QJ÷ÀÄì‡úÎiÝÅÏEþ“ÃçzððSô%®ù*ûìCcJýª˜B·‰=eYÁ¦4d´¾©-³½(BCóG˲Y±!.ë'µ›b9}jÙ Ã>ëĪK¡Èi„®—µ(+ÍÜ>[¶aG§-t!¹i$N½ò‰=´)S0¾}ãS)ò¥!ÀR;uq'¥<ÅætíØ‘{fÁU‹ZkpfQ¦áï£[8²¬µ1 ʆÁÌ‚ÝÃýû¬Ÿÿ!ð +€ƒŒ–0€+óê‡7€Ëp´ã¿ã¤Ûü`´m5 +endstream endobj 142 0 obj <>stream +H‰¤WÝܸ Ÿ¿ÂžbÇñ·ÇAà.›)ÃuwŠ{hŠBëÑÎèbKKÞÉÞ__~ȳ»¹¶è‹EÑER$Ô·UÄA™¤AU§A/W¿zõónõêÝm46H‚À6zõê#Lvõj—ü+æî~µ‰£8 vMPEE "Jø– *M£º.ë`×­þ–ëM™†Q²Þ¤i¯ÿ¹ûëêýnõ·óîmP”QYgAeyÊÝóŽw·¸ãöÝ/«8*‚sŸƒUQGUµ Ò,Jó*È£m^ø/l¼]}û¡1©ž_ñôä‰`ËhY$Y”m‹-éVX° Ûý¾zu{úÍ›W?5níN~wo>¼ÿð!ãìíÛ·ÁÏ×ï‚UàÊ÷ŸDù ËGèÃ$Ê·pÎnÎú¤<ôb½IâÐÉ}p­¬è;ÑIí®ÖYײ3wªUø5Êè@è}p#Õr+²oüýÞ³Ó³,‰â,'O;þOO=µdé²,+£, Xº,Hr° ‘ÝìðQMŽAÅ~t0“ò1IáÅ1]I•æ`Ò¶ôÑ‘›>j¯ô!8õJ7êÔJK>xÙŒÌËGùñ…ü¸Œª$óѼ;Ê`V¡y½è×É6lŽxÐ:-Ãù0Zrozb š5¦;Ñzy”ÚªÉÿàêplÌQò_íˆñ÷_h—8ñ&#š#1œ¡ß××74ZÇ»¬¿ä8Ø$ v°»]ê +á…ZB,1‰ˆ¸ž¤7 ÍÂöWþÏ—8+åwu×Ê‘ãz¡íI̪—¬`ªiÌ XlÑ£Q´í£g˜³¦#Hß(N0rv}};Òµ¬½X βm7§VhØ1ë“æ‘mÄÅwVêÆO̽gò`O²Q`LÕð‹ãÞ4îL^‘. +9‡B%iÂÁàɼH¢2­ª Ü¦QšÅ9ÅsS øQ åEm«6UUTec =ÑüV6ìO'úÇ¿FðÉ&K£m¼oËÃG©!ìÚ/išÂ…'Ix#O¦wDBÆãp{{C£â‚¾V4;@h^½—p‹nàƒ‰s'1X¦/ò±÷ ör)­i¥èY®ƒÛꤗ‰^Gí7·Jvæ)8Ý« ôí zÐ{Ù[¬U”GÀA90Ðõãx‘ÀÀ†,ˆøähP,[uè²×ÅHÈÑØy-&e+g—‡¼OR­½rµY +Îqg)5ÑdŽgóš{ô ±§é² Ðtr"Í}áäΰ¼;a/UÌ0´¼ÂÇöòA¶æÄ& ¬®/’†#»~ⱚDÔ\3|VÕÞ{54<|ZÙj‹yPòLÀ^ ‹úÂÎúÂÌI'°`ÖŽ¥Ëm!Å‚¯ò1-‹ èV ;œ(€Ñ§ÞB +'û¨ùÆJÚhÊÐxÂœŒÀ3átKæ‚]”E”nÓd„„!?¿®Ó<\”;º±Š]c¯Gg7p!rÿš8ä³Å +Ê®ŒË0 k½!ÄÅzŽü#àÍÁOEñŒ‹!Â! + M°ë,—JTl:cÐÊÑOj ¦UÌÃËHUdY”—UÁ†ÿvT-fó–²Ýø€ £ˆž®ã•:€WS†:f/R +f¾X ½¶ü—¥:ÙwÌ@{Q¼ì;Uy½)Â'µá©Ð5p¦Gä,Â/¡Œ‘zÀ^Ù(†³'£™Õ˜¶…ÀÅ{„£iÊïpã@•yë<çÊ—5±?xä㌣ë æšÀE q¯%lÊ “Î0%ïQò=&σÿi§cZàl´…¶uc1ðyà…ñÈ:bUÄ™?„gn3$°wŒ‘äOìgçr„Òc(iE1…ä—uDóOúÁ´Ts‹"\„Íéx[Óà)ÈÜÑôó +T‚erÅL¬§hÛ쿬Žbz$‚q}ÝxÖØH tüØJ„PÄôﮇÆ"e™…„ˆ“qøcê1æ¢ÈSIÃ~§°0Òyž3öJK§MUí2z¨JfÜdÀ€1N¥º—AÓ³rG"¸*Ô3Ø'2å +´»Øäo),D)¿{ŠpKT ]šP¦Œ‡@¼d“ïGaä:óÅVKÆÅGÀû$Œx-×pº):Á/'Ñ°M%ÛYN½à"ÇÊÀ…˜ºôa4ˆ×D;ɽñÉ`/V Ñ)­ 'Vþ?EŒwƒjyeg ïÀÞ4EH… ƒÕ‚uO ›á }J²Üã‹•,i¼W°ŸäâKÇà^(@=ŸÇ=õnùWßsàÊ K,òbzɤ \ CE ‡wŸ{|M`9–dèxQ#÷H‹½­ü6@7 fMç{‰ÿ?²2ŽÒ7 $6ÉÔÜgHøÔ‡™z·8 cu +Ÿ¸Yxð÷ é‰Œ_M«šGÿÞƒ‚Ÿ0ëë¼–l•×aøܦ¹Usò»ã: ó{Ñ0†M†Î¾ÿÍYZ¾´1Ÿk?•×ˆXŸ¡‹»ü ùÏm-¾³ø ÜŸ“gÏúho Œ†òsªîÏK‰ ÚGé ¨€Q]µ’ÿÜ=Ò°|HÑTÊÓÿ2u,äÈ42 ¢M§xÛä&\6½@bß¿˜u=ô¡’þ|£ïÀež¾ó¿Ž«=}Y£¹õ27% ÑÆïœù×Dó÷fÁ iûÿ–èÛÅúhü›%áO‹õû'ZÚÅW-¤ÒYïã» yz&mx¶~¹R?³Ê>“¼äü¹7¯Ò–k–šôÿµ¬[$ C4´ë_µ9·r4SñÖ}g/ðPÃ`6¾)f€È!—Æ©±Ðç#ŽXi¯¼d…~‰rï®õXj@«ši„7}ѬÇ*WE³¾l¶-óΪm™:Êöäåûs–¸MyßÄòÏ<ÈIoý¤/)”Wá™à)ltqœ*u˜ŽôKó(xð$}‹xv#C+zž\ôg¹!!Eª¼>8·G3´ûñ$¼½'Õ{+„24Wª3½`ăQTÒ”žÞµðöÄæú^¥-xJQ÷½|öRý°7ó(­ëtÄÞŒ±w·®ò{ÿ“èAG¬R„°¢ijœ1Ycöðñ¯Á^Ü J¨N× +Áñ +Âá)"ÿÇg]²-£ºÊ‹.g¾ìg•3¢ñ‰3-zvÅ[b\nip²9jÅ e6g +Ð÷øˆ€±Cƒ Á£‰çùf wÌ*€§Ùã+uzÛÑòK +Úb¡Z"0 SÈvñUÒÜ÷„ J"–û’hzâù$ƒqÿ¨¡ÐØÐLêÅêŽm©ßÆXFò¨¨|lQ”]¼?gH™°ºÈg DÓ€oĈ§ï»ÓQXhÙ)ÒÁ ÈÇY†Ç±]‡£Ôÿæº +rà=¯è1‘âÌ¡ê±Rû€Jù@jhBDlËq¤ø÷ÝÝ0é صaaavæLâQÿšÉOÑÙ6¤À˜ì çÊñ†‡d@ÿÙSœ¢êÒb¸Ü}8˜(%(DBJõ¸“ƒVç@Ý4rŒRçž¡È„ ÊH«è|>ΚÚ(àìa›ù¤ÌÕÏ0Aœâƒ)¹•ÕÈÛz…áSEÐ0w@Ëe‘–ÆOÀÜvŒÝ\bFG¹ëmÖ‘¦ó†®!¢´•ÀÒ¡¥¹Uƒà«iŽWŒóuÃÈ.6£Sü\dN×F©Ðµè8¢I¡?Í祚¥„-Œ1©{¡RU1íÙ3ÔŽñpu :+^ÒŽöè=/%ç´yw­äpJœTˆáÜâ(¹—¦1LÑÒTþؽ·Û ßòTŸxŠ]Ö®[7Å1“û–uJZ…û€’/ÐMÝ3cˆWEò»”µ˜‚7­“i5«D´·Íîp!hݯ/Fq%åØI²tÉöCßCˆ’á¿›ïÍŸj(ñ² +endstream endobj 7 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 50 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 64 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 90 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 122 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 132 0 obj <>stream +H‰”WYÛ8~÷¯à£¼ˆÝ:-L®Å,ffwÓò,´DÛLË’#Jít~ýÖEYv»g1/bU‰G±ê«ƒß'¡ +Õ"ŠU¾ŠUk&ŸU=y»žÜ½»UáT¤”+êÉÝßݹÉÝ:úoÂõvÎÃ8SëBåóLá&8Æ‹pžÇ°[ÏWy +ÿ“à7óh*µPÓõ7: 7xÀ-#Ü2øÍÖzgœ:Ùn¯šnoZõ¯¶)ŒsÆá<4’CñÀ€vú°žü›Õ|wjÞ¿ûtÊÔI¥êw5hœ,Óyœæ*Næ¨W:_‚Vü…ÛÞO¾¿`€çŠŽÔ_9Y®æY¼Ì/®¬¼Þñ•±Ây&°r]N‚÷ï?)]—êÞ}k»'$º¦UŸÌ¶i·n~wÔõë×w¿]¯«µùѽþøáãÇ8 “7oÞ¨·ïß)9ûÃï@Ž¼%ó|ËÁí-›e—N{v¸g¦²†˜]»‚½èžt˜€d† qÝ—`1-â`Mgq„Óÿ¬ÿ1ò×VY–=Øt«¥ÊóÅ*Q KWèŠí$Kóy’'ä=p"úm%ß?õÞ<‘›gâ,"–Ù¦ºÛÙ‚'›Âsý2e÷ÇXI2A² ôŽ‰†† k¥ÁîÄ‹–œfH‚V€¡𬦲Å‘”=»†x\«2p—Ž~ÍI¶FóÃX4µ¨ˆykÆð¤ˆv7º”è;ž)™Û˜ª91éú$ÉŽ™“~’ùÝ^‹¬´[¼ÑÖ0ˆj ˜½Ö°åQp´ð˜YpZ‚Cµ×L¦4º$=ÍÓ`NÓnU…(â(ˆ†€(…(O#Jï­ÓíA£Ù|¢“BðE´ÃÍHÊV È‹Œ#i´ ¨¾p4Ô ³ßzÇ„¦¯ÛþˆèX4`˜ƒÑ®çëÏÑE¾`ÍÐœUPçÅ}{¬z>òd4˜ÙMgQ8À.A$ G ÅáÐ×VPü¯ ¨4þ­\Ã<ʶ«žˆ…`åy蹈î]Á9º€óx2…,Q|¯Ý€àh1èåQÊ%•;Þ‚`–æËx +RœWhuí¶Œ‚Wƒhû5Lòâˆ[@ôNÖü`{ •ßÖ²„‡sÒÖ¦/5íÓ4Š¢¬‡fþe´úV&(죭¬¦}WT^%¢ëŠâ›¯¹Â ÙhLUŽy@N_•LoŒŒÚ5r†æ¡¢†‡ÿlý†5šfdæK]KS¸ožûˆŠâ‰üÚ6®“ð.ýdvT¿ÛËÔ1.PÀQ ÄÝŽ%_Á…¬Ó"£„'Ç5²EÑ´¼®Du•Ðr_§ˆé%f>t5P¤=ŽMݵvÓw,þÖØš¡½ä¬¿ d¢­ Þ ”/´•½8„xù¨-ÌK/ZË’š.É* †ŒnŸñǃ4ùÃçWšîH0âÇç +Ì8ø­šz‡vmëK5á<´”ãþ9|KëŽ^H‚Ê÷ÉÄ{`Ê‹4‚ŒæÇìÊ âÄ\. %ÊÊp0ºN*È.-'l’ª|‹ î kÐŒÏÀñG éË÷ +YÌ_¶€¼Ó¢×³=ƒÛìö4UÍ‚¾dTŠÝ N˜,š“;O‚;÷•/‘Âôëô:ó^u ­²ã±‘qê|+§@-Ò(0ÕFIÞDàÿ•j—& é‚«94ÈE?)©]¼ðåb—F‹yå\ë>ïm…™aíÈ1ÙBµÑd3Ôšƒµ9¡¹QB¡qfv “ÏU.“ŽþCGðŠ%å…¾,ãd”y¼"µ‘ Àn…±¨Á6.]à“|œPÀÃ@© Æ-v£§¦} îÐxå€Ù™ú£ªâdŸÏœo ï,=d*Ìë¸9oWðlgQ¡dpô…7ÉF/µÁ£þVMÓO Ú6®–k ˆúZû(# éMÅkd‰Þô Gô9›¥é3µIÁ€LœlUÉ^¨a¼æŸs_ü‚¸÷6Z9\Ʀ8Ÿï-lÓ¦C D-Ì÷Å)a!õ51¥Š˜"âÒ •JŽÁ_ù+0¡õv× 2gÊ%Øçptn°oÁ§ÆE›CÉÙÍ7tý#¥ßô4•¹hwuÕ››Ë·ý92¢qsÈ œJM/ñÿD›ÿ‰™G¯8‚þYÒcÒ¡ ¢Ca|þæƒ9Cz‡ ×Ñ¿½‘DÐh¼îÝÐ4>"d]ÎvNVó0Ãt³.¥DÎDä/P"N¸ÎRibýØØRÚ¥q㜂E‹¾?¸91j(Ÿ~š43é8Lg©4LPU°s£i|Ò Øƒª‚Þ¼XÐ+ëö܈e\Â`¬rÙù­³çI d]3 +¤a-cE@!YÂÆ8oçüÙWµöÆËtÈZàý`Ø•–¨’æ°Û†;Z ðñ&KìPXâ; à*}¢ÑÔCš`¦1¨ óBÍ@ô¢-wôZ˜-I5HQvoñÉ‚½l‘8~³ Ù¥´ Ë4 +ïlÜCàŒ¡¾Ÿ§?ïX@tn(5ì¡sàî}tlœÅ€WÏÂȇЕßÑÃ#M.³Þ_(ð1„L¼Šc*ðŸ 4µf×ÞªïÿçAÇñ|‘s£ð%¸ï ã¶Ç÷ƒßho’Â_¬3Õu.ë„ ù uüŽ»þ,Ø5šwâ"@‚Ó¯<™ªšqG-=ín&egY…„SB’o& Ç^#¥Ã ˜Ên 'nepšæÇb‚¥AÖè¢hzq"‰ÆÚ˜ÒO–ÞÚZY¯I[)˜±ãàí ôÑ+4p[ ª”DÞ06N×<Ž*-pd_/šhà7|Ʊ‚õÂ)?À£×ö¼ ;.ˆQ.ùȸÑC ¤¤‰š½",ÄGæRÖp­u}@‹Úû'n”K™ËÇu-ç8ú×Q +íkog3ìðœ0/€ª÷GCð‘·Žr|-–pvE¢4ß{Î5À!˜k¨6–°Š»þˆÅSæ½*¾ÏU•&Z®Q8‡RÀ“ïD ôŠM2và¿% nWr]@pÐOL¸sbª9úLÌÖŸÀA—ø*’à+Ò-“˜íÌ‹™èÜcá?f·Ì;N‚Q¼-"s•ÂH¼Í“¼üP€õ„ˆÒJ/,¯9?ßc~Sv\îÂf?àÿvØõB~FÐsÍ/¥Y¿Ö<º¾Ø3U@›ˆÑ•Ñ­°¥i­–éÒp"M/ © +>øÍs^ó8A9÷@Ùº„QöšÒ%¸¸ð°µ>ŠË!‚<&#he‹‡¼ÿÇv¥0ÃÐO᧦¥ØÇ0Ød&luh§I“týk MËKòÞKèg9e@p2&RÚÚ"mª0FYñqÝeI¤É£Gzê5#©² OG8¯@‚¿à$ŠSBb¤†µ «²qxwTÑœ~§îî+‡¾¬gÖD¢½ìÐÑ µÁ€c¥OºáLHN’µò\˜fKfÏçÔùÖÐnˆQ„«ý蕶“IPƒ£§˜ã¿Ú°ôºŒzyÒ;gÑØÏ6qKØ:òas¹æÑE6Y êy+D'eŽ½Äõ^ÜŠŸCÐ +endstream endobj 121 0 obj <>stream +H‰ÄÙnãÈñ]_ÑT`Ò¼À0às²f2;Òbf‚€j¶¤S¤†‡½ÎקŽ&EIö`ƒ<ä…U]ì®®»ªÌ\áŠØóE’ù¢Q³ßE5»]Î.ï®­ð„he5»üËM;»\zÿr¸\Ïl×q}±”"q¢H BbøÆÀÊ÷,‹3±Ü;ZñÜŽ}Ëñæ¶ï[îüŸË¿Ï–³_ß»ÅåÓ©ˆb'Î9A˜¡pk>q·À‹»O3׉ċÅG1‹2'IRáŽ&"tÒ02_8¸˜ýxGQ—D÷ÄÞîèº š Ï œ R’-¶ ™Ηßg—‹}^]]]ÞÈ®ÏË¥ú£»z|x|ô]7¸¾¾·÷wbf ÜùðPäï14a„6ôœ0…{–ë—ªS›&ŸÛžkuª÷ºÍ›]¾SUw1KÜ«]½Ò¥þ·Ù£ëJäU!¾(==ŠäE?ò¦hÅÁèAà9n’¥Àÿ£¥N5™š,b'ð (¦&^Hµ[©F€22 +öß]ìóÅžk.$dtRâ'ŽÇŸ® +-ó®nÀ~h­ë†`ÛK©Z¦éŠÀªî¶„äÍÜK-•·-?Ó²~Ö…®6D‘eÞèî•ðšw[Å|e½g¬^33ÙégÝiÅw¡³–ºz"vèÌ'—Lè +ÛC-Äòd¦-0 À£5œ¾…j5‹XÐZU Û.ïxû~™×yE@ïöuaÑ Û›ŽdÀµ6dsÕJux Ѿ*TÓb8 »A°¹Y,½‹‚/ÿò²PeŽñ×nõ^“¥*qÿ…Ât±øâð!Ÿ‚fPcÿ–ÍY¸!›*²àÁv[÷%“VŠ@E7åeùJËú¥RÅÑQ´Ôf ¢b¾¹AÒ1aËl$[Sö;TR*“1ö¹ŒèS;ÄØ[ÆöhCÙC@ðZÖ}Õ5¯sÏó,‡I«_Ô³jæIh]0….&>Õ&ß(Lo^¯^O6`V7ƒšÃ »]_Qøñ––`ÆF—AÌKm F~Wh5$Iˆe-u‹fÂ5¥!9Tô¸m‚øî÷ÃÁÉmOÊÐö®¤Þ—j¸·è˜R9¼$ŸŽbã¦ìÈ” œYÏZ½ \™&³Úz§æô7§-j«eIT’<£0oIðÌ‚ŠŒ¤ɬ¢ÑÏŠ.«Wßf¦bF/£8 "› ¼¬°ØI ¥™!JyÁh·%«ƶ†ÈŠi;üU‡cˆÀZnAð¼2)¨p_Ýv¶¬+d£eÇDU=stÖ†I{qd6Yö&'ëEåO„ h¸džÝqQBÕvºë)9/ˆå`ÿQ 2ßç’¢+ð­|WW›¶#ü…° œ õ‚7Š˜µ Ì%ˆã»\±À”fxV/ !œ©®ÉE×ÚqÜn4ÜÍ:Ù„‹„ZÊÛZjÕ‰”åV±h…®ñ©b·RÊ\Sà}²ÞTºUÃý-Ô4o(j¤ÍyE÷tRv»WRc%‘Ï—ªjõ¡ÐÛ¡Ñ ÿÁ¯~ tÛ¼3[ŽÍЦ[W½.»)ªK1p1{P¤F¯Ø¯Ôþ'eùXz2"¥ |Wæê‚V’Wmk·˜dõl8pp=, F>©m]bOpˆò¹Ñ5ÖÎ9ÜÒï±ÑÎ 73†„ZXÖ{®yc(sL.‚…‰D6hÂ(ήÖ(ôš™’ÒšÆ<,Ù HbCL­J¦ƒ’=·pXLc” Sƒï0GÆ­üÛ¼¯þŒŒ~êÄÉEéûB‚Qµ6íƆwSvÉ4ÕÑ8ûAr¦Íÿ±WC’™ŒT,â3\Tê¾eTž…6U”¹Ò(êãOs©ÙLñ=åj‚ôÐiØ·TÌÁL;ÓB­_i4 ÍHŽ£‚±$P7€}Ý™b‹+…S´¡kПš< Wö¦Éá¼f6k*ËŠåYñ-¹ù#û±h¦gŽ¨it<4)38f§czvÔ»23ßšq9›ŽæÙÏtJœh(Tžûv~f8õ êp†ƱðPü‰ÍTÝQiq¹’Á±Uò ‚§ã¥Pbój@úÁ#°0§Ú£Óæéˆ(—A|¡âÐ{˜zâáUƒ mšLÓÓÃu”YÇcWJC¥ä!Za0'Ç¡ùi”B æÆ@îÚ•ôp¶šÿgïY¢ZZ@vÍG.œÌ[W¼Û„,Ï;q(ú“Hw W@Yõ„he5»üËMK;CS¶#'‚°p!TSðl*?sb"v¹K…Î’~Õìvùs§_.öyuuuy#»>/—žW®ëf×××âöþNœFêD>Ä ¤%ÂÃGØ=¾°<' +b®s_­/Š_qHÆ@ƙĦë`x¶?¨ +zHÉ+`¦`i6s(Õ”Ño•¦ÀôSn†}À?«\ª'¥öä7 hfWÀó³ÙqQ~Où›ûQyî¤Ù/¯àBà$4™uLO F(Pä“vp^2¾ZâQ­(¦é=qzÀïœV,I—§Åè­g›<÷’uuný¿GÝ ÈYÔ½l>g²o2à;Á†+c°>V•¨)©ò ß&‡;Ì@øR-ùŒf–Ðö µÅZvC79D1Ú×mgOvµ5ô>¬ÙcÈœ¸,8ì +ÿa¾ìu†¡(ü:epˆ'vÊTÁ„T©¢l°DTHMÞžû'Ž}ÓvÌÛ´÷ë¹çlNŸ§c'òg¾Y^’“›jg +‘—\ƒÍZ/ô"×ñbXSL/NfVœ ‹“aqz Eé¥#9À%¶É& Tã” ¡êEZõ-wL”BÑ“:AÑ7i=/K„Í+¹ä¸Rùô- Ù.€~‘ÒF ˆj×È2}jq«}Ö„ý¬£Â;ªû¶%ÿÜðÿÎYÊÅ‘L+ö!nu|ƒŒÚý­q2ö3Ü?:Nl¢EÚnKرïÏ É=8Ü·¯o£äÀåxúE¢©óéñ‘~Ò¡g×Þƒƒÿa +5‰8¯TY]6}`)„f…ûÎ5¬*+ªÂïÏs+Ÿ€‚´{Ú?ßBõ?Cp5_Uæ™dÆÔ#˜ &à{w¿à¼uÓ,€_zw•†)îUÊø¸3§aŠ5LqÏc¢Xè‘UÆG¯0Ó­ƒÃCC¦ÌäÁ±¢½ >­¬GŸcD.!²8å ! ÃYX’…byàÄfY¯Ûƒ«Àì«“wS÷$7¾]@±™aqŠ^ŽÞz èÑ‹œG/•Lé&Mœkz¦ÂI~ð5O\ò,Z#  ÅiÀ`V +ójå„É œÊ†p 1Äix»ÇPÙCeE -‘aÒBÿÆ}Û6…°Ì*}BØ9(f²u²†êMuò2œ:±¯7Ùç¿ÏÂ|Ø +endstream endobj 89 0 obj <>stream +H‰ÄWY“Û¸~ׯÀ#•q€‡Xår•=¶S›ÚÝ$¥òàM¥ +’°& -AÍ‘_ŸîxÈ3ãLžüBþ¾>ðÇ"a ˹`E)X§ÿdíâýfq}s›°Ê1Θ«ÚÅõŸaxp‹ë ÿw“›ý"‰‘±MÅŠ8c([‘'q!@šqY¤ð¿YD?ë;]³œ-7¿Ói(à+Šä(2úÙ´_ÕA;voú#³ýQwìo­´sÚá<”‡CñÀˆ$}Ü,þîÕ¼¹E5oo~2vÏRö 5–ë4iÁ„ŒQ¯4^ƒVþ ·½]üñ‚ž*:Sc~e¹.ãL¬‹‹+³Aoñ±’X&vnv‹èÇÏLµ;v««sgúGìô¶cŸõÞvÍs7¿¾=©öÍ›ëwUVõF?ôo>}üôI$‰|ûö-{ÿᆅ³?þÝZ\ÆE.ÂÁ’d„ÁfÙ%ÈsdÇ{f,Ðm ²èžtX É +7â¾/Q¾\å"Šùr%D”,ÿµùË ¯‰VY–=¼éÊ5Ëò8/%ƒ¹´D(ö‹,-bYHB@DÜÊð%ô’8H¢R€ë,ÎdɲärÎR.â¬È/Àük‰[ß¿üÀx°ü<E¤à Hd™²Bä`N¶xo`ý[°;‚|}{û™í[Õ˜ÊÔ çð$EY²"IbQ¸|²NáŠy–yü *¿@”$IÊ‘(e 1¶œó8p± ÆŒÅĤÉq^¬=¾ÝQ-WitÿÏe½î:eZ¶ÇIà2^}‹ýGfZš¬Ïº­L{ åÎüG“´$¥?wšÙ½ÿ5x…#¯˜84X,¤”?Úb^WZìö\a\ÛŸk†Æ«XªÓšO §³çþ^ØNU½¹3½!óz!ªeò†uçÓÉv=Ym‡±ÖžÈZ>X®(ìŽñ‡­8ø‚d› N£Ûí­éȽ© L\-e1姼*;:i[ÏQé»s…x¹g·N³Îå Æëy7PÐØVÕìÎ8è¼ÀE ½=×;vêìÙiZ²UÎLÐítE³£/TÝ—"…¬*Ûlýœj{‡±3ž°º›¸/³x¤!é]úÁ*ü¬ +£3œTòìA—FÕ×!xÑà‡¦¬Ì “ýp¸‚¯ƒk¬F6;ØlNµÆ8¡ºåŠ¯!ÜøxÜWÕq–0˜ÕPËÁµ^ \oç®ð$>i¨²¨¥ï‘¾j6SÑ×Ìfôe³¿–¾Íì{ž­÷{{ú>Îö:úꙿ«{º‹=ƒ~Üâ?}¯Æëпñ¨ª +h½ÚžM½Ã=8ãHøFù(y J_ìîœ9{¶µ;ÌSCTT¬ÑªEŒ™nª­(P~o7³µ›YY=AgÊh;›¯¿‹èœ7»Ù|=Cú@2çÌŒ7jƆ¹dÏ°ýlæÃìûù:ÜξŸ½mÿ4TîI—:Cá™ñ2æyR"¸_¢ÍrÏ’ç@PpQý["sˆL~ +¶NC(¦bâ‘ÆàØçÎzX©zß±çêH½ñ«¾»Z¿ ¼Ã<‰ƒ“½‡H1_+ŠôWþXäÝI–qBï‰1¯ÂP 9„Í¡E e!»°mUHÊ8©H+5÷º®çcº2´{¨žÂ„ò)/ãÒ6[xsúí^ÿ ¥ +£Þ ûM~oÚØ]áqÂ'—#‘éHdRn›jë`Oì7ÁÜOÞ„–Äï‚åÀI°QwÖø;‹ˆ½Æ¯ô(U× `y9kwW—Ö×»€KwÐèD«ì¡SMµÛŠË'î8Þ¢9;0ÛjÍ£­öíÁï>·;<gІØ*ßTx[ßÅEƒ8O¡„¦s´Êú•;ÀÖ¢òó¨qo*U_ù±³•±+ Ë-¼f&G]7 -g´€ânÁä4øÇ¥0CHz®Ëà2jT÷Uû©{ƒt‚ÎVcÒ+Ò(`'ÇãÀ—ภ¯dMÅ:Ø5yÙ®$eU¬££½÷ÐâÑ÷Ô6œþ_K:,7me;(õ‰’8qêðÈ +]‡XmõøüB×" ø¼ŽÎ•™¯¦ÚÌ×eS9:깇Яœƒ F{pè ò@õq¿½bf,PÒklkÀþh¼©¾Sõ™~Åt† 4÷ù b°Ê¨4* #»ý]£E‡áÞ·X Pc¶€Žì!ÕPzºØo½ŸKô8`§ª€Ó½ÂMLt"Ê=UM³\ÁCÉ,«ÞÃ]/:†€€U'mÁFÒ1Àg>Àç1܇øжÅ<ƒÌb./ ŸÂ3 ™/&¥¹à’³4)b‘ ™ÁïóöÈ)¡JÓaŒA[0™þà}fHs7ÜIŽ=´qÃÅl;3ÙŠËX^ÚªÕH`éƒ4T$bçHdˆRô‡¢‚!åµÂ« gV™ÏÓÁ(_Ñw$Õ÷¶û:_¾Ó­ñ öŽ”ƒ òc~Úe)‚Z"äR‘<©ö}” M­î—¥ˆâW   –r¸\˸Hºù÷Ñåi\–÷dQ̺pòO^Ûz}j}PÕã\5@+ƒÉPää6Ð4"ÝÃùé­îïµn/îIœ¾òÝKà"–E~óˆÆ[¶LƒÙ …¢¾TÀÈOÃz" ñÅiê¤< ÒìJcè¡O>è …¤ŸôíT€âÈï­õ³ ’‘OÔuTéàœƒ6µQ>zà,Ýœâzí7@JÒýã+`^¯ã"ðÍâ‚”‹ï£\r¬Ø ØÃc!&”QôTh­ƒj~Ú6õàwM±ú«¼ºáÆTÑϨNI”^+($óR^ IÐÈ2šø*–JHÑ®_Ís3',ѧFסm®7ý™rLL3ð‚Q£+€Ô¸ÆÑ®‰ÇLd‚\:<ÆÜ k«‘+ªÃì&9êê«£®O×p}U£B~’J­Â§ð¡°ât¦j³z‘û`ÇÉÐÒÉè8ž‰S§pƒ©x.Èœ:CVUÙe8Dé‚w^1Hë­;…€œðƒJt µI<½Oªé…Ç=·xx6H&ò2.€fžX2ñ‚7»9ªºÖí,„±§P¨.\@OØÕê%”6g÷í;±tê389ñº,3ò»e†˜ò¨=7[*ý{$Ø6˜6XvVWáè¨0N`MŠÑ +ŠÉAyÚB‰™cp0Ô©Uõuÿ´ðÚÂÃë¢X› +ËäzL=˜­©q)ç<ÂâTÂÓQ«PÙ†Ôƒ“P¯¹POáΫÀ¦e^­Õ·Éò±óÓ÷G݆Þ¯–å¶axïWô˜CâQ(ʶzïµÎ$@KLĆ–4¦\ÿ¾‹e¹ã¤¹˜ Ì‹Z¡Î«îÕQ&‰•l ºsýÍd¤¦†æ®g²& +7’–>¤9ѵ?S®j°ŸÒnÀ0ê•-*¥»í€ ¯^W{P·ŠÚÎd7?eÃåiHbŽ†±´+ +’…¢+O58ÊÏŒ…™q dR·2Ç8]öAAE§ç2…‰¤>­LªôÔÈ@ZzÓ Ã ÈϺà­NÑ·‚¤%Ž)äaw /mz 2QÑXUKÓR *íf¾±œ& ëF‹êŽß½’+Œ´îÌš~Ð0±Ê;…J¡_Ç ¹šãÇíPð›¨8¤óòaQ<8ü€ÌRÁáÝéˆ<óDý‹¼d“;…L'[Íu«Én9ÛW,p„`|þAWb´o°µÉ9%ú3½öòQ_$ ‡Ñ\1‹ö•§NÇÔòXâ@4ÊÛÍuÒÔ>m­Œ8Ç}Æú=}›c‡š¢˜_Ñ̼Díqº”¸ŽãëÑù8~%Ä媅4n[ýÒÄóæ‚Ü4e”»•G´•1•þì¼Öò4§0uA±§ I&ªâs),˜i?®f=q$¹£ÅÊ¥÷Ú>-¥ÉPPê ”Fs¤ÀÒytB1xQ/#ÂãQCQ"ŠÎ¥,´"ô ÃÚñÉ©É£… F¹#ÚÛŒwz?6±Úh¨§gJy@œÜË_¨ëÌ )ÃXµ™·M.½%%Iˆqhn¬Õ+a*0ú€m ‹J[¢ìoVÖ®®ëášZƺ*·ØbVµÍEZLx¦Ž¸ÐS¾§‹y윲ǵWÞ?®-ûš¨Ÿà WÙ„y;’ xQ&Q49òR¢ó.㪜۠>®DýSš¯ DÁlïoõ§.pF®×3‘&¹õD ÍZÈ×ÒJÑÈŒ„„½;‹°Óü^²êU2Îñ5÷£4ŒC nŠt/²V^yùxºròjP?hå¿Íe•fÆ°e¾N£â÷ëÁí÷0m%Ú§.$‘ž(GmSõËñ ÄÎa¼›ßeÔ¤ÙÞ¹B/M$‡± é@Ø!ÆúòëË_F!— +endstream endobj 63 0 obj <>stream +H‰¤W[Ûº~÷¯à£\¬Q’eNq’MŠ'hÖ@NŠ‚–¸6]]¼Ùüú~3Cyeo (`˜39÷¿Î"©LÇjµ‰UkgU={µ½x}©¼SZ©.¯g/þtßÍ^lõ"lnïg‹(ŒbµÍÕ*\.Qa ÃRqn6ÙFm«Ù_A6_dqêù"Žƒhþïí?go¶³ýŒK$·×j™…Ù&QË0I7$ܽÜx}G7î^ÿ9‹Â¥zP©z¯fËM¸Z­Uœ„qºRi¸N—þïf_¢hÄ¢kõ…¸ë+¡Ë¨™Ò: “õrͲ­@šñ|ûyöâîhê—/_üž÷ƒ)·ö[ÿòí›·oã(J~ûí7õêöµšŠN¾yèk¡O&\’ u˜®Ág[ÀXïêÞî[3_è(èm¡n]gÚÊT¶îoæÉ*P·¶jv®tßý×ÔÊÔ…ú`Ýô*mßõø`Ú¢SOFOFIÊ–‚9þOK]k25Y’da¢S“)BƒÜV;Û*ØhÆ!Áþ7Ʊ0Ö‘gÈÀÙI«xf(ÅŸÉóf¨{³+­š/–Agó¡uý##÷MËk°Y/•V×w¼ms,­À®?4CÏpẼu•« }z•Ž —¡,Å ‘Zè0IÔö’µ¶;Úd´È¡ƒÃPЈƒÖíÄX ±XÔA;”¼6÷ô_š‡ù¹õ)ŽS&O¶IÄ6Y¨c-Öñ`’Dá*ÞlÔJ¯Cd+vIÂQü3›&I®6Q†;I˜¥‘7ŽwÒ1bä¨á­Húdf†{QÐÕy9¶»>qlçz4¬D° ò‹Xƒêh."|r…mqstC~ Õ0VØ{[çö†`X„[àD¡F©C{”eéöt–/“a×ÁN‚4a0¿ÙóæcÛ“Ëm7ò"鶃(–ºÐÈHÚ€tWŸšòd‹3ê)}¹Ugš´#·ßøº¡ }ôØž¾×“›9×õ­³ÝÍb«´{וˆÉ…sšAÏÂqø¦Xu[Ú“a²ØÉÝÉ•vMî,ç ]aíBAþlêEç3åüÍÃeׄ ÿ%«ÒSsÕ±i{æCÂRÑT3Øž“œÔÙ '×!£ndïÒp£ +Îfô~¨sJDøÝÝ@¢­ +ÛEk:O©ö¤ýG”-×ÓÑÀ÷2ƒM½¡4á„Ä«|±‡¦”HÅˉµ2¼úoôäzv ¡²œ |ZLwŽM‰S¹)+œ)›ý@ñî¿åO¬~¸h + +äÕ·aSï•·1FU?Ýím~¨™ aä»ÚÔ¹#¼ëj@l(b®ø“ÜüxpT˜’ „á\1´@§:Í©¼ñ)Ά»ƒ¡Þ¶ûqtã œ=‘È„íDlÃé +œÝ‹µÙ}¶ù´zŒáµx&*¥ÕŸÔGÿ×Á ›†ÿˆ‘áQªÖ¸òÆ»š—¼©aÔŽ²Øíí­.„^ßÙ¢9öÕ9 +Ô¦½½oò¡›Æ×寭(þöÛ"oª¡ÔêdKrcÃMõö‘>œØøð”öte⦠çÜ&øœ8@š{è(à¨Ëü™’—Ö´\Ì a8º¸<&¾ÅP¢öã½«léj(J¸mM9Rcs ÈF¡ ÓÇï5²V¶pCµÇ>K¸Ù5ÔqW [–ÍG0&‰ÕÖò• ¦3+h•¹¼EÂä"…ÞùâÄ;Û?X²!`Ž›Ø·¬×LÞ›ü¢f^JÜÀ½{  `H‘²1©¸Àú¥R} ïIJ"·DŠ‹4 ^54³è,…_Ù®‹Õ(NH-±MžG)])Ï>×¥“K½­TUȪ«H„ÁúÔ€Çé7é4€Ø:Xy&ÚCžï–k=0 rÅ®ÉÇ;\ Yê «ê÷< `-2[q÷†K<. ;bPª:Ñq'f”NU >mJÅg…S¯Ö +3|oÚÇ rW¹L_~$œLIÆ_±ìE›á(¨¯fGÄ™ã¡{<_&ÙX’ˆšø~šLÚiÈ(†uîÂçG3á*óíO+Çô"ΤDºÝÀópÎD¬¾ °iøœ¥RZ +‚òDÂu‚QHðÕƒ§ÑÁñIõ`6øÎù1|rÉŒßñ h1,ÇݯJÕ“#“è<ºô)ñNĺG3íºTŒä>9hì*öhŠÙ"ß³ž!߬y•)Š8p©ëídö©wjN⌘7Hw,Ò‡zÛÕ‰°Å쵟H4Õ S0À +óEó€ÀùÎ^Ñ~ªÐ¾lŒ'ö‡®'‰¨ìfË ¶\гñ­@¬ãß«$Y(û0X4ü4I—å’RèšÁùÝèèi¾o:/¢ºvp0r_>εÖÁÍ/[% ‰Ï”Ûigt]7È4ífoiº Îà0ÿMT@¹Â¯ÀF–žlÙÏä'C00™÷ ?VžÌ÷ûд_Bõî^AÒbÈ)¾:TCŽŽQA¶¢¸šd!wé 8âÖ¨š£:Ù¢@e¥ÞxUü¨¡¿qÙ‚æxDI6Tårs49÷§ÅÓ Ìy¤ØÉ”pV8>Z£ñÑJƒ!4ÓZÞ»¿$LÖ˵J–I­× ½vÿ +’P‡s¼¸ÔÇ,ÕZÒ}AiT<Ö¦ry§Î­öï,0qI=æ…KáAÀ—$ ãM’ *ã8@Þ.Ž%'“uÒÛ 'ð¸Dý!TŠ~ñ4–Ȧ½§³È.­©Ÿ‹ÒÑ“ödG¢RkGêÖ»’‡Ù§úú¬9ùh¡ãepÁ›6ü« så3B]“üå`Ÿ®ÎÏK¼Q[¤zÇ]“qÉw‚α[Ž—Öäö[šë)SŸ7|ð²OK +±ðìÍD¼™…:ÖâJÆQÆÉ*Q‰ŽÃõŠR´šék> +. Ž–ð;ü­C\õþî2Äå¼DG#3¬ ´Y.^C|ò™Çi“,±\)C߇ ODFs‰á”X¬ÃÕ2¾š¤$ë§÷ë‚&i3æ7{È;óWáwe»« ,ô¥­dË{?F †¬9zOŸ‚»ßÿ˜¯Òàã§ù°Âô/sßßµŸHŸ*ÔÕËïÒ½ò²AGå¡–|‘ÔÔYEô©Ô« ·jÑ­«FZþárnåUÃQ|&Oä(¦Æ‹Ì“ƒŸÕö¿ÑšZf|°ó¡ìrûËúû Í‚æÈMðeãN]Çé2Ô +8¸.È®b18B8ˆ£«#Œ MBcù/ëÕÒœ6ƒïü +ÍLÙâõ|l3Îô™6éô’ <16Áv)ÿ¾Ò'­Y ôÔË®¤ÝÕ¾ôø„ÀD½ Ô<|çtAÿØ$ü&§~™³‘ãy 8—²Ô(!r‡±s—W‰b‹ò°ÅDîᙡgn6æGxJ e|azÖ«S˜q5«Œ‡àVunŽ.Ô-¸ød¾jœf7yUâ¯ü†;ú›¸LÛ)ß·ÿ,éXuŒð&ðÆ€Å?ÄÍâTqdÊ5n_‰ˆaˆ@ÏÆÝ›¤ÏÒõ5ʼn¶k™‹â‚,ݨL¥èXÖ¯…jjЩasØ-d¾ž ‘æ6p: TžÐ‹?©þ<R *”^ñh¼ñiH+Á‰¦”buUÊk§>|rÿ5‡§|·Öª¤¹ó°¯„ÆÆYX-ã܆À’bÓ©3ªâÏ0زK%… ÇôƒÝ Ê|ÌÎØÍBúçÖé*8~Ãbét²ºqô(õsñ²#‰`‚(u‚öØvÅäSX˜#¤µQSËÄŸ÷lì²f]1MU®$ÑCfj;¼äSöÅF@B>’M¬5q~ >!”r‘éQæwM9Ð%¹¬,Ɯ܂eÀogapbʽ]P¿Œí,Ü6+x'‘*õ3[»°Ç…D;º3å#NNÄüñ2«Â>stream +H‰¤ÉŽÛÈõ. ÿPG)h±Éâ& ^f&Œ‰¥Aî  È’TÓ)³Èn+_Ÿ·K¤$w‚„Ö«ííõ–¯_ø" ¤H—R4jòwQMÞ®'÷ïV¾È„0y5¹ÿ¦;3¹_ÿôaq½øž/c±ÎEêÅ‘à(ßK%`“Ò[¦ì&Ó_Õ“*E"fë?ˆ"xD”¢œþª«Çl§ŒxÖí^Ôí^5ⷦΕ1Êà$X¢HpJ˜~\OþÆl¾[!›«wŸ€§X<‹H|Žãpy2J… =ä+òÀÿAÚÕäëwpÍ耡ÈábéÅr‘ŽD=ßòBY¾ú!Ü\“éû÷ŸEVb¥ò®Ñí ¶nÄgµ­›Ã-ÉïWǬzõêþMÞvY¹VßÚW?ýøÓOÒ÷Ãׯ_‹·ïß KûǬ„^šHK8 ÜÖ ³xlä¡eœ±ˆ% ’M»\$'³N2Ç‹xïË4™Í9õ‚Ù\Ê©?ûÇú—½ÎnÇ1èƒU·\ˆ8ñ’e(`-Z¢)¶“8J½0 Éz`D´ÛÒþ_´J²ä2$`âÐóS)Ò z˳¥Îæs¸ô~òå%ãÌæÑ „R!¡h`¡ ¶®AÀ"öüp‰ø"øex³0ŠuÑ• +ÔPQª7 ýN˜o;`lÍé÷dü!?ñ"ðA¦³žþt?…?TuøkðGÓf|ŽÖ¶nÚ:TÚ¦ƒCP8ÌåÕÅÖÝ83ÔÌä‚מâãµCOGrüƼdø{twGün,Ûq|„®µ3©ÜF9f£t•û]P£Ãç#Å Å>øaê¤øîõV3àÓò‡za(ÙK‰* 1 ä´¤0‹R6Yþ¸´ Ý®âSºÂà’µº®hžÙõ]§‹¬ÊMìÝTeÖ*>³éZ mZ]å<1ª5|iËчµua`8\z>…ŒLW+@é¹ð3M¼@üP-¤©„:=” ŠAAëo¾î`á{AaxŒ¼8LB~ÞDx½W4¢ŒKˆ3CCU·4¶5 `(ëŽÇŒþ›²SÇîó¬]Ùt  -{‹›×‡’"Ï9’`dCD—ëc‰–s<Ö„£P O‰ŒGFý¤ ÕŸ7z·oíívŸµ =ë²dÈtÇcÝ´ý{¯ÀPÑ5,Á­=~ªÙ鞧Ì0ûë?ÃÏŠ!-ãÈ<>Pjµãµ=øݶ³óºj›¬Ð9*Ý^"9ad†(RÝÙÝhy³žHäÐý0êk§@iH‹½oèx G¡·ÈÑ–å@ c3v]²Z}Vàñ‡ƒ2ã{¡œ³ÙëvâŠRp¹T&ìr’3×,0¹ÁT5sGk…ÂPTiVò’m6 Æ…¿'MRÿÏ™-ŠS/}›AßT•ú&f‹é›YãCK2H¦É0Ëx(!P1D®€ÄšÖrÄËÁ8ƒQ¢Wi»gZ'cßõ®¨¢U[ų]YˆN§ ’è\Î×Ø9ÙIy µGKìÜà–-ÇLj°ÇlTÃ~01A‡8ö—Ðcøð@:sí|Ú>ÀÙÄKÐǪ“JAZsE®vWqlê]žþÕÂB¥#ÕŽ’J±a8ùòEV<-騗ón´û\;Q`ö e`ö`äÝ`©îÊ×h‰Tm·Ùé¼Îz'˜Õ„jto?kÕˆ8EáBTõž7'»kÁ +ŹYÁí0$S…!»”æT SN|¡*0^ VÊLõså´&ïø¦ÑNá•x!o!/³j×A3Aé…DHÊ/À[@æ¦"ÏÌJñW³YÕ§cH‘b5à¸_KÀD•ºRæKØjÎ*NzAdH¦h®0Ã<>ñ¥y‰Þoö/ Ê8¸ãŒ7û*çk§  zǪÝ×…ás”úaÑU®ñ½æî="nNS9·ÁK=ɺ(-(ü@× 8Û¬Îj=çI¸ £2@T÷(_kâ[ÓlH!2ºòs\㈹hgó<îœ5‚«{ Ø4Y‡{ë{ƒ­³ÆdăñRcÞ9æÄo ǯ%=ÇY&Ž]õz&&zít x8<Œ2±×£‡?ý_9OBi–,%§šSÞ[[HK*¤ÿssÏþv:“±ô©o+9*â Qüþ‰†=!0²rózWi²—MN˜‘ 0iàµ!ܪo-Ÿ§0ã£:ÑXÔyÇ#ÿ$-sxlðÖy_}£\ ÐFµÏJU/‡Îa`óP{ü7õ/HžDáBÈ(ôÂtÉ°|¹Žc/õ£XÈpá-á¹²é*je!.|ÀšëdùäLÖ0ìÚôɽ>òªßâ¼*»õ8­î ²r‡Akžxi8ŠöºzªË' + Ét.qð¹›ÂYŽALUdÚUGÈ)\„”*Gù‰ây¨{À<ž}°X´½­ŒÁ}…nÕvÌíuð†ú"2AW.¶aãìl—†âd®w¥!é\ÃÛ2NxØ î]“Ë‹ÔåÝ"¡ÐøÃ(áVø,¡Þàïñ…ÖÝzr„øî‚:9¸3¥[«¾{Ï8$è£;¸wÒšÂm4 cÈâ¼x¦Ú.ÊÅ€‰öÏYÙ…fi¾ÅÛÛŠ¹©}saí3àù wQÃPÄþKýŒá›¬¨’)DÕP^"/¬sÂxýÀ`ѽ/€)ŠÀÈX‚1„Æ<ãý½*ù”àÆÛMFíÜËa +&¶˜u©óDêÜuR›D|_ïqGŠgv2P‰±²2]Ó_‚$‹¨mha8¨Bw^Ÿ1Æu—Sçš‹s0 +WezÐÐ}E0m{éÁÀíAaÁ@ ‡,àÊ ™îx$NqiÏÈ +°dYØð©m™^5D¤rby:ï õàZÏ ºÃÞèY•åüUW +œ“JaÈ!SCƒ†Ù¦Få Àödá¶&w¢æêîªY·‹é¾~ÆÔàP‘À¬g®Å™ÊòýÐn2YƒØTÃA™’`Íš®lyNÍÐÆ–PÆ⺪ø±­l`„E[óóëk(ŒTïöd_FüNÀ×.+Á1“Ck:5¡èC[íꬴUÔE•<ˆÐTVÌ0äJå,g ÍéügUaõ€…–±x—Ý£¿a=œ¦¿~{dœðzæè»Ô:šŸë²©µ»²ßèŠ~=+îg>õ660 +ç9 4ö6ãñúêà ¤U…Á‹ØO®7t!µ­…çx=ôCÍìɪ/ÇÅB²‡Aá÷KÃmíÉcš#±~K‚]1Ïöœøöé ™àp€j,ôQO2׉°gÍ3»‡DA}¢\e~Ní—³^…Pj••FïŒÍ”6‰e±j@'±Ú³ø”ÐkηèýÇ• +endstream endobj 38 0 obj <> endobj 39 0 obj <> endobj 800 0 obj <>stream +H‰\PMkÄ ½û+æ¸{XLRº'ʶ…úAÓþ£“ThTŒ9äßwÔe ÐyÃÌ{>‡_úÇÞÙü=z=`‚É:qõ[Ô#ÎÖ±¶cuºVåÖ‹ +ŒyØׄKï&Ï„þAÍ5ÅÆxdü-ŒÖÍpøº GàÃÂ.è4 %œHèE…Wµ ðB;õ†ú6í'âüM|î¡+u[Íhop JcTnF& + â™B2tæ_ÿ¾²ÆI«ÈD÷D³MC‰‰»¦`J„ۊیϟeVïꥬ~ÕÉïÐ:àö ½ÅHþËΊñlÙ:¼­5øÄʇý +02¾xÚ +endstream endobj 799 0 obj <>stream +H‰bd`ab`ddTô +ó ñqÒöHÍ)K-ÉLNÔ Í))JtÎÏ-(J-.NM)Rø!ÍøC„å·õï¾_5¿ Ye&jð~¯åÿÞ&¸áGšHÍ4çü‚Ê¢ÌôŒdMCK  ii& Sò“R‚+‹KRs‹<ó’ó‹ +ò‹KRSôsr‚@z‹‚R‹S‹Ê€¢p)d+$*•’š›X”­Ÿ¦à“™—_RYª T”£à讘—¢Ÿ_¤ 4 ¸4©83%3±(3µXø„ÄX™Åên(ð)tgf\óžù»¤ÃwfõßÌì|Í~zÀ¸ü뙯ÌË¿‹‰ê‰¿þrï¶Wr?‚Ù¿3E¬16ŽÌúÍ$÷u†èò™sf/˜Y•/÷'½¼3+/»så29¾e?¶^uün-ô]è«ð†Ý?¶ŠÞü³õëÏ6ုäŠÀ& ßg¾þ µåûÑïWEßDÎNÌË©-¯ûľ¤þŠ}åEr¿¥¾~çd‘~PM#)ÄXîO$»éÎØgß¹œ½*§Ø$ZÖU”—ѽj…Üwcö,Y>±ªHŽ¯væϘ™¿õ&±}_?áQÿŸþnv¹ašb3ÿóp^ãzÍýý¡È÷¥¢ÙÆËe +endstream endobj 778 0 obj <> endobj xref +0 808 +0000000003 65535 f +0000000016 00000 n +0000017437 00000 n +0000000004 00001 f +0000000005 00000 f +0000000006 00001 f +0000000008 00001 f +0000471462 00000 n +0000000009 00001 f +0000000011 00001 f +0000023445 00000 n +0000000012 00001 f +0000000013 00001 f +0000000014 00001 f +0000000015 00001 f +0000000016 00001 f +0000000017 00001 f +0000000018 00001 f +0000000030 00001 f +0000053017 00000 n +0000023669 00000 n +0000047787 00000 n +0000057192 00000 n +0000065234 00000 n +0000024230 00000 n +0000044092 00000 n +0000099634 00000 n +0000100190 00000 n +0000057375 00000 n +0000057834 00000 n +0000000033 00001 f +0000024933 00000 n +0000033805 00000 n +0000000041 00001 f +0000024686 00000 n +0000042011 00000 n +0000074471 00000 n +0000074979 00000 n +0000489755 00000 n +0000489966 00000 n +0000023558 00000 n +0000000042 00001 f +0000000043 00001 f +0000000044 00001 f +0000000045 00001 f +0000000046 00001 f +0000000047 00001 f +0000000048 00001 f +0000000051 00001 f +0000486805 00000 n +0000471881 00000 n +0000000052 00001 f +0000000053 00001 f +0000000054 00001 f +0000000055 00001 f +0000000056 00001 f +0000000059 00001 f +0000090767 00000 n +0000091260 00000 n +0000000060 00001 f +0000000061 00001 f +0000000062 00001 f +0000000065 00001 f +0000483099 00000 n +0000472265 00000 n +0000000066 00001 f +0000000067 00001 f +0000000068 00001 f +0000000069 00001 f +0000000070 00001 f +0000000071 00001 f +0000000072 00001 f +0000000073 00001 f +0000000074 00001 f +0000000075 00001 f +0000000076 00001 f +0000000077 00001 f +0000000078 00001 f +0000000079 00001 f +0000000080 00001 f +0000000081 00001 f +0000000082 00001 f +0000000083 00001 f +0000000084 00001 f +0000000085 00001 f +0000000086 00001 f +0000000087 00001 f +0000000088 00001 f +0000000091 00001 f +0000479607 00000 n +0000472649 00000 n +0000000092 00001 f +0000000093 00001 f +0000000094 00001 f +0000000095 00001 f +0000000096 00001 f +0000000097 00001 f +0000000098 00001 f +0000000099 00001 f +0000000100 00001 f +0000000101 00001 f +0000000102 00001 f +0000000103 00001 f +0000000104 00001 f +0000000105 00001 f +0000000106 00001 f +0000000107 00001 f +0000000108 00001 f +0000000109 00001 f +0000000110 00001 f +0000000111 00001 f +0000000112 00001 f +0000000113 00001 f +0000000114 00001 f +0000000115 00001 f +0000000116 00001 f +0000000117 00001 f +0000000118 00001 f +0000000119 00001 f +0000000120 00001 f +0000000123 00001 f +0000476392 00000 n +0000473034 00000 n +0000000124 00001 f +0000000125 00001 f +0000000126 00001 f +0000000127 00001 f +0000000128 00001 f +0000000129 00001 f +0000000130 00001 f +0000000131 00001 f +0000000134 00001 f +0000473408 00000 n +0000453544 00000 n +0000000135 00001 f +0000000136 00001 f +0000000137 00001 f +0000000138 00001 f +0000000139 00001 f +0000000140 00001 f +0000000141 00001 f +0000000144 00001 f +0000468411 00000 n +0000453918 00000 n +0000000145 00001 f +0000000146 00001 f +0000000147 00001 f +0000000148 00001 f +0000000149 00001 f +0000000150 00001 f +0000000151 00001 f +0000000152 00001 f +0000000153 00001 f +0000000154 00001 f +0000000155 00001 f +0000000156 00001 f +0000000159 00001 f +0000465342 00000 n +0000454304 00000 n +0000000160 00001 f +0000000161 00001 f +0000000162 00001 f +0000000163 00001 f +0000000164 00001 f +0000000165 00001 f +0000000166 00001 f +0000000167 00001 f +0000000168 00001 f +0000000169 00001 f +0000000170 00001 f +0000000171 00001 f +0000000174 00001 f +0000461895 00000 n +0000454690 00000 n +0000000175 00001 f +0000000176 00001 f +0000000177 00001 f +0000000178 00001 f +0000000179 00001 f +0000000180 00001 f +0000000181 00001 f +0000000182 00001 f +0000000185 00001 f +0000458600 00000 n +0000455064 00000 n +0000000186 00001 f +0000000187 00001 f +0000000188 00001 f +0000000189 00001 f +0000000190 00001 f +0000000191 00001 f +0000000192 00001 f +0000000193 00001 f +0000000194 00001 f +0000000195 00001 f +0000000196 00001 f +0000000197 00001 f +0000000198 00001 f +0000000199 00001 f +0000000200 00001 f +0000000201 00001 f +0000000202 00001 f +0000000203 00001 f +0000000204 00001 f +0000000205 00001 f +0000000206 00001 f +0000000207 00001 f +0000000208 00001 f +0000000209 00001 f +0000000210 00001 f +0000000211 00001 f +0000000212 00001 f +0000000213 00001 f +0000000214 00001 f +0000000215 00001 f +0000000216 00001 f +0000000217 00001 f +0000000218 00001 f +0000000219 00001 f +0000000220 00001 f +0000000221 00001 f +0000000222 00001 f +0000000223 00001 f +0000000224 00001 f +0000000225 00001 f +0000000226 00001 f +0000000227 00001 f +0000000228 00001 f +0000000229 00001 f +0000000234 00001 f +0000455438 00000 n +0000139647 00000 n +0000017626 00000 n +0000017531 00000 n +0000000235 00001 f +0000000236 00001 f +0000000237 00001 f +0000000238 00001 f +0000000239 00001 f +0000000240 00001 f +0000000241 00001 f +0000000242 00001 f +0000000243 00001 f +0000000244 00001 f +0000000245 00001 f +0000000246 00001 f +0000000247 00001 f +0000000250 00001 f +0000449889 00000 n +0000140033 00000 n +0000000251 00001 f +0000000252 00001 f +0000000253 00001 f +0000000254 00001 f +0000000255 00001 f +0000000258 00001 f +0000153848 00000 n +0000442872 00000 n +0000000259 00001 f +0000000260 00001 f +0000000263 00001 f +0000151587 00000 n +0000140438 00000 n +0000000264 00001 f +0000000265 00001 f +0000000266 00001 f +0000000267 00001 f +0000000268 00001 f +0000000269 00001 f +0000000270 00001 f +0000000271 00001 f +0000000272 00001 f +0000000273 00001 f +0000000274 00001 f +0000000275 00001 f +0000000276 00001 f +0000000277 00001 f +0000000278 00001 f +0000000279 00001 f +0000000280 00001 f +0000000281 00001 f +0000000282 00001 f +0000000283 00001 f +0000000284 00001 f +0000000285 00001 f +0000000286 00001 f +0000000287 00001 f +0000000288 00001 f +0000000289 00001 f +0000000290 00001 f +0000000291 00001 f +0000000292 00001 f +0000000293 00001 f +0000000296 00001 f +0000148111 00000 n +0000140824 00000 n +0000000297 00001 f +0000000298 00001 f +0000000299 00001 f +0000000300 00001 f +0000000301 00001 f +0000000302 00001 f +0000000303 00001 f +0000000304 00001 f +0000000307 00001 f +0000145027 00000 n +0000141198 00000 n +0000000308 00001 f +0000000309 00001 f +0000000310 00001 f +0000000311 00001 f +0000000312 00001 f +0000000313 00001 f +0000000314 00001 f +0000000315 00001 f +0000000316 00001 f +0000000317 00001 f +0000000318 00001 f +0000000319 00001 f +0000000320 00001 f +0000000321 00001 f +0000000322 00001 f +0000000323 00001 f +0000000324 00001 f +0000000325 00001 f +0000000326 00001 f +0000000327 00001 f +0000000328 00001 f +0000000332 00001 f +0000141584 00000 n +0000120396 00000 n +0000017726 00000 n +0000000333 00001 f +0000000334 00001 f +0000000335 00001 f +0000000336 00001 f +0000000337 00001 f +0000000338 00001 f +0000000339 00001 f +0000000340 00001 f +0000000341 00001 f +0000000342 00001 f +0000000343 00001 f +0000000344 00001 f +0000000347 00001 f +0000136056 00000 n +0000120770 00000 n +0000000348 00001 f +0000000349 00001 f +0000000350 00001 f +0000000351 00001 f +0000000352 00001 f +0000000353 00001 f +0000000354 00001 f +0000000355 00001 f +0000000356 00001 f +0000000357 00001 f +0000000358 00001 f +0000000359 00001 f +0000000360 00001 f +0000000361 00001 f +0000000362 00001 f +0000000363 00001 f +0000000364 00001 f +0000000365 00001 f +0000000366 00001 f +0000000367 00001 f +0000000368 00001 f +0000000369 00001 f +0000000372 00001 f +0000132510 00000 n +0000121168 00000 n +0000000373 00001 f +0000000374 00001 f +0000000375 00001 f +0000000376 00001 f +0000000377 00001 f +0000000378 00001 f +0000000379 00001 f +0000000380 00001 f +0000000381 00001 f +0000000382 00001 f +0000000383 00001 f +0000000384 00001 f +0000000385 00001 f +0000000386 00001 f +0000000387 00001 f +0000000388 00001 f +0000000389 00001 f +0000000390 00001 f +0000000391 00001 f +0000000392 00001 f +0000000393 00001 f +0000000394 00001 f +0000000395 00001 f +0000000396 00001 f +0000000397 00001 f +0000000398 00001 f +0000000399 00001 f +0000000400 00001 f +0000000401 00001 f +0000000402 00001 f +0000000403 00001 f +0000000404 00001 f +0000000405 00001 f +0000000406 00001 f +0000000407 00001 f +0000000408 00001 f +0000000409 00001 f +0000000410 00001 f +0000000411 00001 f +0000000412 00001 f +0000000413 00001 f +0000000414 00001 f +0000000415 00001 f +0000000416 00001 f +0000000417 00001 f +0000000418 00001 f +0000000419 00001 f +0000000420 00001 f +0000000423 00001 f +0000128993 00000 n +0000121542 00000 n +0000000424 00001 f +0000000425 00001 f +0000000426 00001 f +0000000427 00001 f +0000000428 00001 f +0000000429 00001 f +0000000430 00001 f +0000000431 00001 f +0000000434 00001 f +0000125776 00000 n +0000121916 00000 n +0000000435 00001 f +0000000436 00001 f +0000000437 00001 f +0000000438 00001 f +0000000439 00001 f +0000000440 00001 f +0000000441 00001 f +0000000442 00001 f +0000000443 00001 f +0000000444 00001 f +0000000445 00001 f +0000000446 00001 f +0000000450 00001 f +0000122302 00000 n +0000094520 00000 n +0000017826 00000 n +0000000451 00001 f +0000000452 00001 f +0000000453 00001 f +0000000454 00001 f +0000000455 00001 f +0000000456 00001 f +0000000457 00001 f +0000000458 00001 f +0000000461 00001 f +0000117288 00000 n +0000094882 00000 n +0000000462 00001 f +0000000463 00001 f +0000000464 00001 f +0000000465 00001 f +0000000466 00001 f +0000000467 00001 f +0000000468 00001 f +0000000469 00001 f +0000000470 00001 f +0000000471 00001 f +0000000472 00001 f +0000000473 00001 f +0000000476 00001 f +0000114084 00000 n +0000095256 00000 n +0000000477 00001 f +0000000478 00001 f +0000000479 00001 f +0000000480 00001 f +0000000481 00001 f +0000000482 00001 f +0000000483 00001 f +0000000484 00001 f +0000000485 00001 f +0000000486 00001 f +0000000487 00001 f +0000000488 00001 f +0000000489 00001 f +0000000490 00001 f +0000000491 00001 f +0000000492 00001 f +0000000493 00001 f +0000000494 00001 f +0000000495 00001 f +0000000496 00001 f +0000000497 00001 f +0000000498 00001 f +0000000501 00001 f +0000111971 00000 n +0000112362 00000 n +0000000502 00001 f +0000000503 00001 f +0000000504 00001 f +0000000505 00001 f +0000000506 00001 f +0000000507 00001 f +0000000508 00001 f +0000000509 00001 f +0000000510 00001 f +0000000511 00001 f +0000000512 00001 f +0000000513 00001 f +0000000514 00001 f +0000000517 00001 f +0000108743 00000 n +0000095655 00000 n +0000000518 00001 f +0000000519 00001 f +0000000520 00001 f +0000000521 00001 f +0000000522 00001 f +0000000523 00001 f +0000000524 00001 f +0000000525 00001 f +0000000526 00001 f +0000000527 00001 f +0000000528 00001 f +0000000529 00001 f +0000000530 00001 f +0000000531 00001 f +0000000532 00001 f +0000000533 00001 f +0000000534 00001 f +0000000535 00001 f +0000000536 00001 f +0000000537 00001 f +0000000538 00001 f +0000000539 00001 f +0000000540 00001 f +0000000541 00001 f +0000000542 00001 f +0000000543 00001 f +0000000544 00001 f +0000000545 00001 f +0000000546 00001 f +0000000547 00001 f +0000000550 00001 f +0000105323 00000 n +0000096041 00000 n +0000000551 00001 f +0000000552 00001 f +0000000553 00001 f +0000000554 00001 f +0000000555 00001 f +0000000556 00001 f +0000000557 00001 f +0000000558 00001 f +0000000559 00001 f +0000000560 00001 f +0000000561 00001 f +0000000562 00001 f +0000000566 00001 f +0000096427 00000 n +0000018158 00000 n +0000017926 00000 n +0000000567 00001 f +0000000568 00001 f +0000000569 00001 f +0000000570 00001 f +0000000571 00001 f +0000000572 00001 f +0000000573 00001 f +0000000574 00001 f +0000000575 00001 f +0000000576 00001 f +0000000577 00001 f +0000000578 00001 f +0000000579 00001 f +0000000580 00001 f +0000000581 00001 f +0000000582 00001 f +0000000583 00001 f +0000000584 00001 f +0000000585 00001 f +0000000586 00001 f +0000000587 00001 f +0000000588 00001 f +0000000589 00001 f +0000000590 00001 f +0000000591 00001 f +0000000592 00001 f +0000000593 00001 f +0000000594 00001 f +0000000595 00001 f +0000000596 00001 f +0000000597 00001 f +0000000598 00001 f +0000000599 00001 f +0000000600 00001 f +0000000601 00001 f +0000000602 00001 f +0000000603 00001 f +0000000604 00001 f +0000000605 00001 f +0000000608 00001 f +0000087686 00000 n +0000018532 00000 n +0000000609 00001 f +0000000610 00001 f +0000000611 00001 f +0000000612 00001 f +0000000613 00001 f +0000000614 00001 f +0000000615 00001 f +0000000616 00001 f +0000000617 00001 f +0000000618 00001 f +0000000619 00001 f +0000000620 00001 f +0000000621 00001 f +0000000622 00001 f +0000000623 00001 f +0000000624 00001 f +0000000625 00001 f +0000000626 00001 f +0000000627 00001 f +0000000628 00001 f +0000000629 00001 f +0000000630 00001 f +0000000631 00001 f +0000000632 00001 f +0000000633 00001 f +0000000634 00001 f +0000000635 00001 f +0000000636 00001 f +0000000637 00001 f +0000000638 00001 f +0000000639 00001 f +0000000640 00001 f +0000000641 00001 f +0000000642 00001 f +0000000643 00001 f +0000000644 00001 f +0000000645 00001 f +0000000646 00001 f +0000000647 00001 f +0000000648 00001 f +0000000649 00001 f +0000000650 00001 f +0000000651 00001 f +0000000652 00001 f +0000000653 00001 f +0000000654 00001 f +0000000655 00001 f +0000000658 00001 f +0000084822 00000 n +0000018894 00000 n +0000000659 00001 f +0000000660 00001 f +0000000661 00001 f +0000000662 00001 f +0000000663 00001 f +0000000664 00001 f +0000000665 00001 f +0000000666 00001 f +0000000667 00001 f +0000000668 00001 f +0000000669 00001 f +0000000670 00001 f +0000000671 00001 f +0000000672 00001 f +0000000673 00001 f +0000000674 00001 f +0000000675 00001 f +0000000676 00001 f +0000000677 00001 f +0000000678 00001 f +0000000679 00001 f +0000000680 00001 f +0000000681 00001 f +0000000682 00001 f +0000000683 00001 f +0000000684 00001 f +0000000685 00001 f +0000000686 00001 f +0000000687 00001 f +0000000688 00001 f +0000000689 00001 f +0000000690 00001 f +0000000691 00001 f +0000000692 00001 f +0000000693 00001 f +0000000694 00001 f +0000000695 00001 f +0000000696 00001 f +0000000697 00001 f +0000000698 00001 f +0000000699 00001 f +0000000700 00001 f +0000000701 00001 f +0000000702 00001 f +0000000703 00001 f +0000000704 00001 f +0000000705 00001 f +0000000706 00001 f +0000000707 00001 f +0000000708 00001 f +0000000709 00001 f +0000000710 00001 f +0000000713 00001 f +0000082432 00000 n +0000019244 00000 n +0000000714 00001 f +0000000715 00001 f +0000000716 00001 f +0000000717 00001 f +0000000718 00001 f +0000000719 00001 f +0000000720 00001 f +0000000721 00001 f +0000000724 00001 f +0000081221 00000 n +0000019630 00000 n +0000000725 00001 f +0000000726 00001 f +0000000727 00001 f +0000000728 00001 f +0000000729 00001 f +0000000730 00001 f +0000000731 00001 f +0000000735 00001 f +0000071000 00000 n +0000020016 00000 n +0000018026 00000 n +0000000736 00001 f +0000000737 00001 f +0000000738 00001 f +0000000739 00001 f +0000000740 00001 f +0000000741 00001 f +0000000742 00001 f +0000000743 00001 f +0000000746 00001 f +0000069072 00000 n +0000020390 00000 n +0000000747 00001 f +0000000748 00001 f +0000000749 00001 f +0000000750 00001 f +0000000753 00001 f +0000025696 00000 n +0000026154 00000 n +0000000754 00001 f +0000000755 00001 f +0000000756 00001 f +0000000759 00001 f +0000066159 00000 n +0000020777 00000 n +0000000760 00001 f +0000000761 00001 f +0000000762 00001 f +0000000763 00001 f +0000000764 00001 f +0000000765 00001 f +0000000766 00001 f +0000000767 00001 f +0000000770 00001 f +0000053202 00000 n +0000021176 00000 n +0000000771 00001 f +0000000772 00001 f +0000000773 00001 f +0000000774 00001 f +0000000775 00001 f +0000000776 00001 f +0000000000 00001 f +0000021551 00000 n +0000491166 00000 n +0000101090 00000 n +0000058645 00000 n +0000034698 00000 n +0000026961 00000 n +0000048678 00000 n +0000048070 00000 n +0000065802 00000 n +0000065505 00000 n +0000044874 00000 n +0000044375 00000 n +0000101174 00000 n +0000100473 00000 n +0000058729 00000 n +0000058096 00000 n +0000034785 00000 n +0000034061 00000 n +0000042619 00000 n +0000042267 00000 n +0000075755 00000 n +0000075235 00000 n +0000490580 00000 n +0000490258 00000 n +0000092028 00000 n +0000091541 00000 n +0000113008 00000 n +0000112649 00000 n +0000027045 00000 n +0000026414 00000 n +0000000114 00000 n +trailer +<]>> +startxref +491331 +%%EOF +2 0 obj <> endobj 21 0 obj <> endobj 23 0 obj <> endobj 25 0 obj <> endobj 27 0 obj <> endobj 28 0 obj <> endobj 29 0 obj <> endobj 32 0 obj <> endobj 35 0 obj <> endobj 37 0 obj <> endobj 39 0 obj <> endobj 233 0 obj <> endobj 500 0 obj <> endobj 778 0 obj <> endobj 807 0 obj <>stream + + + + + 2009-12-09T17:05:41Z + 2009-12-09T17:11:55Z + 2009-12-09T17:11:55Z + Adobe InDesign CS3 (5.0.4) + + + + JPEG + 256 + 256 + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4AE0Fkb2JlAGQAAAAAAQUAAhHY/9sAhAAKBwcHBwcKBwcKDgkJCQ4RDAsLDBEU EBAQEBAUEQ8RERERDxERFxoaGhcRHyEhISEfKy0tLSsyMjIyMjIyMjIyAQsJCQ4MDh8XFx8rIh0i KzIrKysrMjIyMjIyMjIyMjIyMjIyMjI+Pj4+PjJAQEBAQEBAQEBAQEBAQEBAQEBAQED/wAARCAEA AMYDAREAAhEBAxEB/8QBogAAAAcBAQEBAQAAAAAAAAAABAUDAgYBAAcICQoLAQACAgMBAQEBAQAA AAAAAAABAAIDBAUGBwgJCgsQAAIBAwMCBAIGBwMEAgYCcwECAxEEAAUhEjFBUQYTYSJxgRQykaEH FbFCI8FS0eEzFmLwJHKC8SVDNFOSorJjc8I1RCeTo7M2F1RkdMPS4ggmgwkKGBmElEVGpLRW01Uo GvLj88TU5PRldYWVpbXF1eX1ZnaGlqa2xtbm9jdHV2d3h5ent8fX5/c4SFhoeIiYqLjI2Oj4KTlJ WWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+hEAAgIBAgMFBQQFBgQIAwNtAQACEQMEIRIxQQVRE2Ei BnGBkTKhsfAUwdHhI0IVUmJy8TMkNEOCFpJTJaJjssIHc9I14kSDF1STCAkKGBkmNkUaJ2R0VTfy o7PDKCnT4/OElKS0xNTk9GV1hZWltcXV5fVGVmZ2hpamtsbW5vZHV2d3h5ent8fX5/c4SFhoeIiY qLjI2Oj4OUlZaXmJmam5ydnp+So6SlpqeoqaqrrK2ur6/9oADAMBAAIRAxEAPwCbeU/KflW58q6L cXGi6fNNNp9rJJJJaws7u0MbMzM0ZJJJ3OKpt/gzyf8A9WHTf+kOD/qnirv8GeT/APqw6b/0hwf9 U8Vd/gzyf/1YdN/6Q4P+qeKu/wAGeT/+rDpv/SHB/wBU8Vd/gzyf/wBWHTf+kOD/AKp4q7/Bnk// AKsOm/8ASHB/1TxV3+DPJ/8A1YdN/wCkOD/qnirv8GeT/wDqw6b/ANIcH/VPFXf4M8n/APVh03/p Dg/6p4q7/Bnk/wD6sOm/9IcH/VPFXf4M8n/9WHTf+kOD/qnirv8ABnk//qw6b/0hwf8AVPFXf4M8 n/8AVh03/pDg/wCqeKu/wZ5P/wCrDpv/AEhwf9U8Vd/gzyf/ANWHTf8ApDg/6p4q7/Bnk/8A6sOm /wDSHB/1TxV3+DPJ/wD1YdN/6Q4P+qeKu/wZ5P8A+rDpv/SHB/1TxV3+DPJ//Vh03/pDg/6p4q7/ AAZ5P/6sOm/9IcH/AFTxV3+DPJ//AFYdN/6Q4P8Aqnirv8GeT/8Aqw6b/wBIcH/VPFXf4M8n/wDV h03/AKQ4P+qeKpTrPlPyrFqOgJFounok+oSRyqtrCA6Cwv5OLgR7jkimh7gYqm3kz/lD9B/7Ztn/ AMmI8VTrFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUl13/jqeXP8A tpSf907UsVd5M/5Q/Qf+2bZ/8mI8VTrFXYql1/qM1rN6cSKypGJX5VqQXEdFp88shAEMZSpXvLqS 3a3VEqJpVjZj0AY/OtcjGN2kmlDT9Rmu5uEiqqvGZU41qAHMdGr8slOAiERlaY5WydirsVdirsVd irsVdirsVdirsVdirsVdirsVdirsVdiqS67/AMdTy5/20pP+6dqWKu8mf8ofoP8A2zbP/kxHiqdY q7FUi1pW+t8hyDmFREVru4lG23scuxcmufNF380c31b0zy9O8jRtiKMK1G/zyMARfuZSKF0ZW+so CCDFbtG9R9ljKzUP0ZLLyRDmlmoa3eQ6reWw1H0IY5oo3+GH/R0Z9OUNyeM05i4l+3WtNqUOGOMG INfjdhKfqO/42VPLmsare6pLDfPI1vWdYGZYhHIsItPSkT01D1kWUua7b/D7DLCIjsnHKRO6nY+e zfRvKlivCIEuyz8usM1zHxpCNmWLflQrXcYZafhPNY5uIK667dNZaddS3KRvPcTmSOIo/rRxzmMR ws8ah/hIFBxdhuOhBHhiykSNBba+dTPHFLNaR2qyFCwkuAWCO7oXX043UhAlZKsvHod8ZYK6qMtj ktn82X0kUNzZWsREvpcEknor+r9QNCfQ2b/S+KkGnUkdsIwi6P45oOQ1YRF75geXSbTVLWUWiTSy OFPEtPDH6oQRmReHKSitwqCRUA13yIx1IgpM7AKgfOVxLBdmOzit5oROIEnnDNK0S8l4Rwo5Lfzo SCvfD4IBG6PEJB2RumeZJdSvlskto6fvTJMkxdVWIqm37oVYlgeP8pBrvTIyx8ItkJ2Ut0vzLqcX 1SG9hlupL6S3Aad7eIok4NZE9KgZKj4E+3s1cnLFE3TCOQhqDzjfxWSCa0S5uxEJXpNxG8Buzy42 /wAI47Jsa0PhUpwi+afENck80jV7jUZ7iC4tlt2g+yUlMoYCWeA/aiipvBXv1yucBEM4yJTXIMnY q7FXYq7FXYqkuu/8dTy5/wBtKT/unalirvJn/KH6D/2zbP8A5MR4qnWKuxV2KuxV2KuxV2KuxV2K uxVplDKVNaMKGhIO/gRviqnbW8NpbxWlsgjhgRYokFaKiDio38AMJJJsoAAFKuBLsVdirsVdirsV dirsVdirsVdiqS67/wAdTy5/20pP+6dqWKu8mf8AKH6D/wBs2z/5MR4qnWKuxV2KuxV2KuxV2Kux V2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KpLrv8Ax1PLn/bSk/7p2pYq7yZ/yh+g/wDbNs/+ TEeKp1irsVY95i1TzJYXMUei2K3cTJykZkd6NUilUdO2KpP/AIi8+/8AVnj/AORMv/VbFXf4i8+/ 9WeP/kTL/wBVsVd/iLz7/wBWeP8A5Ey/9VsVd/iLz7/1Z4/+RMv/AFWxV3+IvPv/AFZ4/wDkTL/1 WxV3+IvPv/Vnj/5Ey/8AVbFXf4i8+/8AVnj/AORMv/VbFUx0PWfNd5qKQatpyW1qysWlEcikECq7 tIw64qyjFXYq7FXYq7FXYq7FXYq7FXYq7FXYqkuu/wDHU8uf9tKT/unalirvJn/KH6D/ANs2z/5M R4qnWKuxVi/mm9S1u4VbXX0jlHX0lt2m5/EfiqvTwxVI/wBLRf8AU4y/9IUmKu/S0X/U4y/9IUmK u/S0X/U4y/8ASFJirv0tF/1OMv8A0hSYq79LRf8AU4y/9IUmKu/S0X/U4y/9IUmKu/S0X/U4y/8A SFJirv0tF/1OMv8A0hSYq79LRf8AU4y/9IUmKu/S0X/U4y/9IUmKu/S0X/U4y/8ASFJirv0tF/1O Mv8A0hSYq79LRf8AU4y/9IUmKu/S0X/U4y/9IUmKu/S0X/U4y/8ASFJirv0tF/1OMv8A0hSYqznS 3EmnW0gnN2GiQ/WCpQyVH2+J6V8MVReKuxV2KpLrv/HU8uf9tKT/ALp2pYq7yZ/yh+g/9s2z/wCT EeKp1irsVY15muL6G6hFrc6bApjqRfsquTU7ry7Yqk317WP+W/QP+Rkf9MVd9e1j/lv0D/kZH/TF XfXtY/5b9A/5GR/0xVpb/V23F/oOxI3dB0+YxVv69rH/AC36B/yMj/pirvr2sf8ALfoH/IyP+mKu +vax/wAt+gf8jI/6Yq769rH/AC36B/yMj/pirvr2sf8ALfoH/IyP+mKu+vax/wAt+gf8jI/6Yq76 9rH/AC36B/yMj/pirvr2sf8ALfoH/IyP+mKu+vax/wAt+gf8jI/6Yq769rH/AC36B/yMj/pirvr2 sf8ALfoH/IyP+mKu+vax/wAt+gf8jI/6YqzTTWkfT7ZpWid2jUs0BBiJp1jp+z4YqisVdirsVSXX f+Op5c/7aUn/AHTtSxV3kz/lD9B/7Ztn/wAmI8VTrFXYqxjzRZXFzdwtDoqaqFjoZHk4FDyPw05r iqSfom9/6lOH/pI/6+Yq79E3v/Upw/8ASR/18xV36Jvf+pTh/wCkj/r5iq6TTdRlYNJ5UhYhVUH1 +yAIo/vPAYqt/RN7/wBSnD/0kf8AXzFXfom9/wCpTh/6SP8Ar5irv0Te/wDUpw/9JH/XzFXfom9/ 6lOH/pI/6+Yq79E3v/Upw/8ASR/18xV36Jvf+pTh/wCkj/r5irv0Te/9SnD/ANJH/XzFXfom9/6l OH/pI/6+Yq79E3v/AFKcP/SR/wBfMVd+ib3/AKlOH/pI/wCvmKu/RN7/ANSnD/0kf9fMVd+ib3/q U4f+kj/r5irONMRo9Oto3gFqyxKDADyEZA+wDvWmKorFXYq7FUl13/jqeXP+2lJ/3TtSxV3kz/lD 9B/7Ztn/AMmI8VTrFXYqw/zlbWE97A13YXt6wior2n2VHI7N8Lb4qx79H6L/ANWXV/8AP/nnirv0 fov/AFZdX/z/AOeeKu/R+i/9WXV/8/8Annirv0fov/Vl1f8Az/554q79H6L/ANWXV/8AP/nnirv0 fov/AFZdX/z/AOeeKu/R+i/9WXV/8/8Annirv0fov/Vl1f8Az/554q79H6L/ANWXV/8AP/nniqf6 f5G0C+s4rtorq3Mor6UrgOu5HxDh7Yqif+Vd+X/Gf/kYP+aMVd/yrvy/4z/8jB/zRirv+Vd+X/Gf /kYP+aMVd/yrvy/4z/8AIwf80Yq7/lXfl/xn/wCRg/5oxV3/ACrvy/4z/wDIwf8ANGKsis7WKxtY bOCvpwIsacjU0UUFcVV8VdirsVSXXf8AjqeXP+2lJ/3TtSxV3kz/AJQ/Qf8Atm2f/JiPFU6xV2Ku xV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVJdd/46nlz/tpSf8AdO1LFXeT P+UP0H/tm2f/ACYjxVOsVdirHvMWqeZLC5ij0WxW7iZOUjMjvRqkUqjp2xVJ/wDEXn3/AKs8f/Im X/qtirv8Reff+rPH/wAiZf8Aqtirv8Reff8Aqzx/8iZf+q2Ku/xF59/6s8f/ACJl/wCq2Ku/xF59 /wCrPH/yJl/6rYq7/EXn3/qzx/8AImX/AKrYq7/EXn3/AKs8f/ImX/qtirv8Reff+rPH/wAiZf8A qtirv8Reff8Aqzx/8iZf+q2Kpx5d1TzJf3MsetWK2kSpyjZUdKtUClXd+2KshxV2KuxV2KuxV2Ku xV2KuxV2KpLrv/HU8uf9tKT/ALp2pYq7yZ/yh+g/9s2z/wCTEeKp1irsVYr5rvvqt3Av6bOk8o6+ kIXl5/EfiqgNMVSL9Ln/AKm5v+kSX/mnFXfpc/8AU3N/0iS/804q79Ln/qbm/wCkSX/mnFXfpc/9 Tc3/AEiS/wDNOKu/S5/6m5v+kSX/AJpxV36XP/U3N/0iS/8ANOKu/S5/6m5v+kSX/mnFXfpc/wDU 3N/0iS/804q79Ln/AKm5v+kSX/mnFXfpc/8AU3N/0iS/804q79Ln/qbm/wCkSX/mnFXfpc/9Tc3/ AEiS/wDNOKu/S5/6m5v+kSX/AJpxV36XP/U3N/0iS/8ANOKu/S5/6m5v+kSX/mnFXfpc/wDU3N/0 iS/804qzzS39XTbWT1/rXOJD65Ur6lR9vidxXFUXirsVdiqS67/x1PLn/bSk/wC6dqWKu8mf8ofo P/bNs/8AkxHiqdYq7FUh1+x1q6uIn0yOykjVKObtOTcqn7PwttirH7hNZtJTDdS6DBKKEpJ6aMAe mzKDiqn62o/8tfl7/gov+acVd62o/wDLX5e/4KL/AJpxV3raj/y1+Xv+Ci/5pxVsTX1DW78v17Ua LwPivjiqY6PcWSySfpu40Vk4j0/QaGvKprWtNqYqm31ryf8A7+03/goP64q7615P/wB/ab/wUH9c Vd9a8n/7+03/AIKD+uKu+teT/wDf2m/8FB/XFXfWvJ/+/tN/4KD+uKu+teT/APf2m/8ABQf1xV31 ryf/AL+03/goP64q7615P/39pv8AwUH9cVd9a8n/AO/tN/4KD+uKu+teT/8Af2m/8FB/XFU2gMDQ xtalDAVBjMdOBXtx47UxVUxV2KuxVJdd/wCOp5c/7aUn/dO1LFXeTP8AlD9B/wC2bZ/8mI8VTrFX Yqk+s3+u2k0aaVpwvo2WruZAnFqnbcjtirHL231jUbg3V75XimmYAFzPuQBQdJBiqh+ib3/qU4f+ kj/r5irv0Te/9SnD/wBJH/XzFXfom9/6lOH/AKSP+vmKu/RN7/1KcP8A0kf9fMVd+ib3/qU4f+kj /r5irv0Te/8AUpw/9JH/AF8xV36Jvf8AqU4f+kj/AK+Yq79E3v8A1KcP/SR/18xV36Jvf+pTh/6S P+vmKu/RN7/1KcP/AEkf9fMVd+ib3/qU4f8ApI/6+Yq79E3v/Upw/wDSR/18xV36Jvf+pTh/6SP+ vmKu/RN7/wBSnD/0kf8AXzFXfom9/wCpTh/6SP8Ar5irONMRo9Oto3gFqyxKDADyEZA+wDvWmKor FXYq7FUl13/jqeXP+2lJ/wB07UsVd5M/5Q/Qf+2bZ/8AJiPFU6xV2KpVq3l2x1mZJ7qSZGjXgBFJ wFK132PjiqVv5O8vxtwkvLhGHUNcAH8Riq3/AAl5c/5bpv8ApJH9MVd/hLy5/wAt03/SSP6Yq7/C Xlz/AJbpv+kkf0xV3+EvLn/LdN/0kj+mKu/wl5c/5bpv+kkf0xV3+EvLn/LdN/0kj+mKu/wl5c/5 bpv+kkf0xV3+EvLn/LdN/wBJI/pirv8ACXlz/lum/wCkkf0xV3+EvLn/AC3Tf9JI/pirv8JeXP8A lum/6SR/TFXf4S8uf8t03/SSP6Yq7/CXlz/lum/6SR/TFXf4S8uf8t03/SSP6Yqmuk2ek6NFJFa3 XNZWDMZplc1Apt0xVNVZXUMpDKdwRuCMVbxV2KuxVJdd/wCOp5c/7aUn/dO1LFXeTP8AlD9B/wC2 bZ/8mI8VTrFXYq7FWH+YtPjuNUklby4+pkqg+srcvEGoOnBdtsVSv9Exf9SdL/0myYq79Exf9SdL /wBJsmKu/RMX/UnS/wDSbJirv0TF/wBSdL/0myYq79Exf9SdL/0myYq79Exf9SdL/wBJsmKu/RMX /UnS/wDSbJirv0TF/wBSdL/0myYqn9p5M8uT20U0+mG3lkQM8JnmYoxG619QVpiqt/gfyv8A8sP/ ACVm/wCquKu/wP5X/wCWH/krN/1VxV3+B/K//LD/AMlZv+quKu/wP5X/AOWH/krN/wBVcVd/gfyv /wAsP/JWb/qrirv8D+V/+WH/AJKzf9VcVTq2t4bS3jtbdeEMKhI1qTRVFAKsScVVcVdirsVSXXf+ Op5c/wC2lJ/3TtSxV3kz/lD9B/7Ztn/yYjxVOsVdirsVYrr0ZbUnI8zDSvhX/RTT4duv98nXr0xV LfSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/q dR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/ZRirvSb/qdR+H/Z Riqrb2NzdzLb2vnEzTPXjGgDMaAsaAT+AxVHf4W8wf8AUyT/APIo/wDVfFXf4W8wf9TJP/yKP/Vf FXf4W8wf9TJP/wAij/1XxVkVnDLb2sME8puJI0VXmYULkDdiKnriqvirsVdiqS67/wAdTy5/20pP +6dqWKu8mf8AKH6D/wBs2z/5MR4qnWKuxV2Kpfd6Fo99Obm8tI5pWABdxUkDYYqo/wCFvLv/AFb4 f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/ AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+FvLv/AFb4f+BxV3+F vLv/AFb4f+BxVVtdA0aynW5tLOKGaOvF1FCKgqfwOKpjirsVdirsVdirsVdiqS67/wAdTy5/20pP +6dqWKu8mf8AKH6D/wBs2z/5MR4qnWKuxVJ9Z80aZoU8cF96nOVea+moYUrT+YeGKpd/ysTy/wCE /wDyLH/NeKu/5WJ5f8J/+RY/5rxV3/KxPL/hP/yLH/NeKp9pmo2+rWUWoWvL0ZuXHmKH4WZDUb91 xVF4q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUl13/jqeXP+2lJ/wB07UsVd5M/5Q/Qf+2b Z/8AJiPFU6xV2Kse8xNOLmL0tBi1gcN5ZAhKbn4BzRvniqUcrz/qTLb7ov8AqliruV5/1Jlt90X/ AFSxVwe8PTybbGm3SL/qliqMg1nzFaxLBbeWvRiSvGOORVUVNTRVQDqcVVP8Q+af+peb/kcP+acV d/iHzT/1Lzf8jh/zTirv8Q+af+peb/kcP+acVd/iHzT/ANS83/I4f804q7/EPmn/AKl5v+Rw/wCa cVd/iHzT/wBS83/I4f8ANOKu/wAQ+af+peb/AJHD/mnFXf4h80/9S83/ACOH/NOKu/xD5p/6l5v+ Rw/5pxV3+IfNP/UvN/yOH/NOKu/xD5p/6l5v+Rw/5pxV3+IfNP8A1Lzf8jh/zTirIrOWae1hmuIv QmkQNJETXgxG619sVVsVdirsVSXXf+Op5c/7aUn/AHTtSxV3kz/lD9B/7Ztn/wAmI8VTrFXYqw/z lHYPewG7j1F29LY2HHhTkftclO+Kse9DRf8AfGvf8k/+aMVd6Gi/7417/kn/AM0YqukTRH40tdbj 4qF+AIK0/aPw9T3xVb6Gi/7417/kn/zRirvQ0X/fGvf8k/8AmjFXehov++Ne/wCSf/NGKu9DRf8A fGvf8k/+aMVd6Gi/7417/kn/AM0Yq70NF/3xr3/JP/mjFXehov8AvjXv+Sf/ADRirvQ0X/fGvf8A JP8A5oxV3oaL/vjXv+Sf/NGKu9DRf98a9/yT/wCaMVd6Gi/7417/AJJ/80Yq70NF/wB8a9/yT/5o xV3oaL/vjXv+Sf8AzRir0TSBGNLtBEJFjEKcRPT1QKD7dP2vHFUbirsVdiqS67/x1PLn/bSk/wC6 dqWKu8mf8ofoP/bNs/8AkxHiqdYq7FWJ+brtLe8gVtbm0kmKvpRQvIH+I/ESjLiqQfpOH/qbrr/p Fl/6qYq79Jw/9Tddf9Isv/VTFXfpOH/qbrr/AKRZf+qmKu/ScP8A1N11/wBIsv8A1UxV36Th/wCp uuv+kWX/AKqYq79Jw/8AU3XX/SLL/wBVMVd+k4f+puuv+kWX/qpirv0nD/1N11/0iy/9VMVd+k4f +puuv+kWX/qpirv0nD/1N11/0iy/9VMVd+k4f+puuv8ApFl/6qYq79Jw/wDU3XX/AEiy/wDVTFXf pOH/AKm66/6RZf8Aqpirv0nD/wBTddf9Isv/AFUxV36Th/6m66/6RZf+qmKu/ScP/U3XX/SLL/1U xVn+kuJNMtXE5ug0SETsCpkqPtlTUiuKozFXYq7FUl13/jqeXP8AtpSf907UsVd5M/5Q/Qf+2bZ/ 8mI8VTrFXYqxrzM98l1D9UvtNs1Me635QOTU7ryRtsVSX1tZ/wCrzoP/AAUf/VHFXetrP/V50H/g o/8AqjirvW1n/q86D/wUf/VHFXetrP8A1edB/wCCj/6o4q71tZ/6vOg/8FH/ANUcVd62s/8AV50H /go/+qOKu9bWf+rzoP8AwUf/AFRxV3raz/1edB/4KP8A6o4q71tZ/wCrzoP/AAUf/VHFXetrP/V5 0H/go/8AqjirvW1n/q86D/wUf/VHFXetrP8A1edB/wCCj/6o4q71tZ/6vOg/8FH/ANUcVd62s/8A V50H/go/+qOKu9bWf+rzoP8AwUf/AFRxV3raz/1edB/4KP8A6o4qzXTTIdPtjLJHM5jXlJBQxMad UoAOPhiqKxV2KuxVJdd/46nlz/tpSf8AdO1LFXeTP+UP0H/tm2f/ACYjxVOsVdirHPMlnd3NzE1v osOqqI6GSWRUKGp+EBmXFUn/AEXqf/Up2n/I+P8A6qYq79F6n/1Kdp/yPj/6qYq79F6n/wBSnaf8 j4/+qmKu/Rep/wDUp2n/ACPj/wCqmKu/Rep/9Snaf8j4/wDqpirv0Xqf/Up2n/I+P/qpirv0Xqf/ AFKdp/yPj/6qYq79F6n/ANSnaf8AI+P/AKqYq79F6n/1Kdp/yPj/AOqmKu/Rep/9Snaf8j4/+qmK u/Rep/8AUp2n/I+P/qpirv0Xqf8A1Kdp/wAj4/8Aqpirv0Xqf/Up2n/I+P8A6qYq79F6n/1Kdp/y Pj/6qYq79F6n/wBSnaf8j4/+qmKu/Rep/wDUp2n/ACPj/wCqmKsy05HjsLeOSBbV1jUNAhBWMgfY BFemKonFXYq7FUl13/jqeXP+2lJ/3TtSxV3kz/lD9B/7Ztn/AMmI8VTrFXYqxPzba2NxeQNdaVe6 iwioHtAxVRyPwtxHXFUh/Rukf9S5q33P/wA04q79G6R/1Lmrfc//ADTirv0bpH/Uuat9z/8ANOKu /Rukf9S5q33P/wA04q79G6R/1Lmrfc//ADTirv0bpH/Uuat9z/8ANOKu/Rukf9S5q33P/wA04qyC 28i+Xbi2ina2nhaVFcxPIwZCwB4sPEd8VVf8AeXP99S/8jGxV3+APLn++pf+RjYq7/AHlz/fUv8A yMbFXf4A8uf76l/5GNirv8AeXP8AfUv/ACMbFXf4A8uf76l/5GNirv8AAHlz/fUv/IxsVd/gDy5/ vqX/AJGNiqf2ltFZW0VpACIoEEaAmp4qKDfFVbFXYq7FUl13/jqeXP8AtpSf907UsVd5M/5Q/Qf+ 2bZ/8mI8VTrFXYqlOr+ZdK0SZIL93V5V5rxQttWnb5YqxXU9f0TULtrmPW9Rs1YACGDmqCgpUAHv iqF/SWkf9THq33v/AM1Yq79JaR/1Merfe/8AzVirv0lpH/Ux6t97/wDNWKu/SWkf9THq33v/AM1Y q79JaR/1Merfe/8AzVirv0lpH/Ux6t97/wDNWKtfpLSP+pj1b73/AOasVXLf6S5ovmPVifm/c0/m 98VW/pLSP+pj1b73/wCasVbOo6SpKnzHqwI2O7/81Yq79JaR/wBTHq33v/zVirjqOkDY+Y9W7Hq/ ff8AmxVr9JaR/wBTHq33v/zVirf6S0j/AKmPVvvf/mrFXfpLSP8AqY9W+9/+asVZ9pTpJplq8Ur3 CNEhWaX7bin2nr3OKozFXYq7FUl13/jqeXP+2lJ/3TtSxV3kz/lD9B/7Ztn/AMmI8VTrFXYqxrzN e39tdQpaaxb6WrR1aOdVYsan4hyjfFUl/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2t f9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu /S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+ qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8A ItP+qGKu/S2tf9TTY/8AItP+qGKu/S2tf9TTY/8AItP+qGKs10yR5tPtpJJlunaNS06CiyGm7KAB sfliqKxV2KuxVJdd/wCOp5c/7aUn/dO1LFXeTP8AlD9B/wC2bZ/8mI8VTrFXYqhLvStNv3WS9tYr h0HFWkQMQOtBXFUP/hzQP+rdbf8AIpf6Yq7/AA5oH/Vutv8AkUv9MVd/hzQP+rdbf8il/pirv8Oa B/1brb/kUv8ATFXf4c0D/q3W3/Ipf6Yq7/Dmgf8AVutv+RS/0xV3+HNA/wCrdbf8il/pirv8OaB/ 1brb/kUv9MVd/hzQP+rdbf8AIpf6Yq7/AA5oH/Vutv8AkUv9MVd/hzQP+rdbf8il/pirv8OaB/1b rb/kUv8ATFXf4c0D/q3W3/Ipf6Yq7/Dmgf8AVutv+RS/0xV3+HNA/wCrdbf8il/pirv8OaB/1brb /kUv9MVR8MMVvEsECCOKMcURRQADsBiqpirsVdiqS67/AMdTy5/20pP+6dqWKu8mf8ofoP8A2zbP /kxHiqdYq7FXYq7FXYq7FXYq7FXYqhrzULHTwrX1xHbiQkIZWC1I60riqF/xHoH/AFcbb/kav9cV d/iPQP8Aq423/I1f64q7/Eegf9XG2/5Gr/XFXf4j0D/q423/ACNX+uKr117RXRpEvoWRPtuHBVa/ zEbDFVn+I9A/6uNt/wAjV/rirv8AEegf9XG2/wCRq/1xV3+I9A/6uNt/yNX+uKt/4j0H/q4223X9 4v8AXFUfFLFPEk0LiSOQBkdTUEHoQcVQt1rGlWUvoXl5DBLQNwkcKaHoaE4qtvNd0bT3WO/voLVn HJVmdUJHiORG2SjjlLkGMskY8yhv8W+V/wDq7Wf/ACOT/mrJeBk7ix8fH3hKdZ80eXJNR0B49UtW WHUJHkImQhVNhqCcm32HJwPpx8GfcU+NDvC3yn5s8q23lXRbe41rT4ZodPtY5I5LqFXR1hjVlZWk BBBG4ytmm3+M/J//AFftN/6TIP8Aqpirv8Z+T/8Aq/ab/wBJkH/VTFXf4z8n/wDV+03/AKTIP+qm Ku/xn5P/AOr9pv8A0mQf9VMVd/jPyf8A9X7Tf+kyD/qpirv8Z+T/APq/ab/0mQf9VMVd/jPyf/1f tN/6TIP+qmKu/wAZ+T/+r9pv/SZB/wBVMVd/jPyf/wBX7Tf+kyD/AKqYqpT+afI1yALnWNJmC/ZE l1btSvhyc4qpfp78vP8Aq5aL/wAj7X/mrFXfp78vP+rlov8AyPtf+asVd+nvy8/6uWi/8j7X/mrF Xfp78vP+rlov/I+1/wCasVbHmD8vgCo1PRgG6gXFtQ08fjxVr9Pfl5/1ctF/5H2v/NWKu/T35ef9 XLRf+R9r/wA1Yq79Pfl5/wBXLRf+R9r/AM1Yq79Pfl5/1ctF/wCR9r/zViqITzf5MjRY49c0xEUU VVu4AAB2AEmKqUvmTyFcP6k+raRK9KcnuLZjQe5fFWpvMfkC4Ia41XR5WGwL3FsxH/BOcIkQigVP 9N/lz/1cNE/5HWv/ADVh45d68ISrV9X8hPqGhNBfaO0cd+7XBSW2KrH9RvlBko2y82Ub96YOI968 If/Z + + + + + + 1 + uuid:68697f0d-08da-49d4-bb19-ffe8bcace1d8 + adobe:docid:indd:eb64be31-37e8-11db-a775-c50f3d60f3d4 + proof:pdf + + 9457faaf-3771-11db-a511-a0ef076711c0 + adobe:docid:indd:84d84e27-371f-11db-8174-8932fe65661d + 1 + + + + + ReferenceStream + 240.00 + 240.00 + Inches + + uuid:8BD9D92AF6DFDE1181AE847E65F56612 + uuid:8AD9D92AF6DFDE1181AE847E65F56612 + + + + + + + application/pdf + + + Adobe PDF Library 8.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 808 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 809 0 obj <> endobj 810 0 obj <> endobj 811 0 obj <> endobj 812 0 obj <>stream +H‰\“Ínƒ0„ï<…Í¡‚Þm$)JZ)‡þ¨i€€“"59ä·¯‡‰Z©HÄñÎx´,éz»Ùún4é[è›Í¡ómpçþgöîØùdž›¶kÆÛÓôÛœê!I£xw=î´õ‡>©*“¾ÇÍó®ænÕö{7KÒ×кÐù£¹û\ïf&Ý]†áÛœMf–KÓºC4z®‡—úäL:Éî·mÜïÆë}ÔüU|\gòéyÎ0MߺóP7.Ôþè’*‹×ÒTOñZ&ηÿöË›lh¾êT9Š³,.‘×ä5ø‘ü~"Gê`}ú"'çày^‘W‘ËùÄq‰\ pI.Á–lÁô)áS2C‰ –gYœeécácécácécá#Í&¬óî÷+úÁDîäG€äÍQ +endstream endobj 815 0 obj <> endobj 816 0 obj <>stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> endobj 820 0 obj <>stream +H‰\“Ýjã0…ïýºl/ŠGšiÁÚ¤…\ì›Ýpl%54²Qœ‹¼ýÎñ)]Xƒ­Ï–5|GŒÊÍn»KýäÊŸyh÷qrÇ>u9^†kn£;ÄSŸŠe庾>ßæg{nÆ¢´ÅûÛeŠç]:E]»ò—M^¦|swÏÝpˆ÷Eù#w1÷éäîþlö÷®Ü_Çñ#žcšÜ­׮‹G+ô­¿7çèÊyÙî³ù~º=Øšü¾ÑUóû’2íÐÅËØ´17é‹za×ÚÕov­‹˜ºÿæCÅe‡cûÞ䢮ðóbaƒ±üH~?‘ŸÀò¼%oÁ¯äWðÙêÕóÌ6óû +ßýrfŒ+r^‘W`Oöà@`zzxz%+˜ÎΞÎΞÎΞÎΞÎÎû°>>>>>>Â\‚\Â:‚:Â:‚:Â:‚:Â\‚\š‚šÂš2×d.A.a.A.y!¿€™QQ˜QQ˜QQ¸ÿ‚ýWæUäU:+œ•Î +g¥³ÂYé¬pV:+œ•Î +g¥³ÂYé¬pV:Û€†üì<´¦ ÷Õ÷í5gkùù˜Í½Ž.ïSü:‰ã0:[…»ø+ÀÆtçR +endstream endobj 823 0 obj <> endobj 824 0 obj <>stream +H‰\ÑKkÃ0 à»…Ží¡8>!F×A{°¬? µ•Î°8Æqù÷“ìÒÁ ‰?[VPdylžkÈ?ªôÆjÓxó +á‚WcE^€6*ÜWñ­†Î IÉí<Û¢ª@~Rp +~†Å“/¸òÝkôÆ^aq>¶Kí͹ÐÈ ®AcOzíÜ[7 Ș¶j4ÅM˜W”ówâkvE\ç©5jœ\§ÐwöŠ¢ÊhÔP½Ð¨Zý/N?Ó.½ú +>œe4‘OÉ'r™öKÞ/óäœ]$ì2¹d¯“×ìMò†½MÞ²wÉ;ö>yÏ>$bÁ÷ʸtê0<ú¢nÞSKâ5Ä^pŒÅÇM¹Ñeñ#~ˆˆÐ +endstream endobj 827 0 obj <> endobj 828 0 obj <>stream +H‰\PMoƒ0 ½çWøتPÆ`‡©êZ‰Ã>4¶Ã"…pàßÏ$U'-Râgù½ØÏüÜ<7Öàï~R-èÕçiñ +¡ÃÁXvÌAnY|Õ(ã$n×9àØØ~bBÿ âü +»“ž:Ü3þæ5zcØ}Û=ðvqîG´2¨kÐØÓG/Ò½ÊGÙ¡ÑT7a=æñ¹:„<æÇ4Œš4ÎN*ôÒÈDF§q¥S3´ú_ý)©º^}KÏD¾q³ŒáKÂÂÅCĘ(#¦@8qÊS^¦>¢JüjãWEÂEìë´MB ƒ»MµxOãV£µÍ”±x_¼›j»ìW€DAÓ +endstream endobj 831 0 obj <> endobj 833 0 obj <>stream +H‰\“Ao£0…ïþ>¶‡ +Bð¸•Rš´RmW›Ý@ÀI‘ƒrÈ¿ï<^Ô• üYæͼ†l½Ýlc?ÙìWÚ]˜ì¡] +çá’Ú`÷áØG³(l×·Óm7?ÛS3šLÅ»ëy +§m< ¦ªlö[ÏSºÚ»U7ìýÉ>RRöîïzwo³Ýe¿Â)ÄÉ涮mè­ß›S°Ù,{ØvzÞO×Õü{ãÏu ¶˜÷ ši‡.œÇ¦ ©‰Ç`ª\¯ÚV¯zÕ&Äî¿óÒQ¶?´ŸM2ÕâU_Îs½ŸjSù¼×EyM^ƒ_È/ÊK7³.ÊžìÁ+òJ¹\̬‹rA.ÀKò\’K0c–ˆY +YÀŒ_"~ùL~oÈ0½•ðæèßÁ¿c^‡¼Žyò:æuÈë˜×!¯Ð³À³P+Ð +µ­P+Ð +µ2kåÖG0= <Ë#ùüDFŸ…½ôJX— .aÏ=Ö(¨QX£ F¹}3ýÀ•g½õzzöðìéÙó§gÏžž=<{zöðìéÓç§O]0@·IÁ(éÄÛŸ9m/)éˆÎ¿Å<›˜Ê>†Ÿ?gF«*Üæ[€tAפ +endstream endobj 836 0 obj <> endobj 837 0 obj <>stream +H‰\ÑKkÃ0 à»…Ží¡8>!F×A{°¬? µ•Î°8Æqù÷“ìÒÁ ‰?[VPdylžkÈ?ªôÆjÓxó +á‚WcE^€6*ÜWñ­†Î IÉí<Û¢ª@~Rp +~†Å“/¸òÝkôÆ^aq>¶Kí͹ÐÈ ®AcOzíÜ[7 Ș¶j4ÅM˜W”ówâkvE\ç©5jœ\§ÐwöŠ¢ÊhÔP½Ð¨Zý/N?Ó.½ú +>œe4‘OÉ'r™öKÞ/óäœ]$ì2¹d¯“×ìMò†½MÞ²wÉ;ö>yÏ>$bÁ÷ʸtê0<ú¢nÞSKâ5Ä^pŒÅÇM¹Ñeñ#~ˆˆÐ +endstream endobj 838 0 obj <> endobj 839 0 obj <>stream +H‰4R{LSw½—KoyÖÙzµ¶îÞ+C* +_Cˆ8”Íá‚–[ú ÛÚ[0h" ,k‘)èpE§ ë +"/;uêè„T6'&bÔèæ²éŒù®þøcÅd9Éùã|œóåñà ÇqyÖªôÌŒµ³2¹BÎj0šbW˜ +5üª±ÚTA‰ ‚Ñltä­ùmœè} «òDÂÎq`ïžü\:ÖäJ6™K,}¾•ý0/†_²xÁì1^ôŽ—Œñ’¸wÏ&iLj-›UÂ[µ[yv1Ïd1›,œU«™Ã²I……솱=<»AËk-ÅõW¬g9Öjá4Ú­œ¥€5éØ´€l-1kÙ¤OXΨ™k²°†À(_¤æ g1hù9†€Ã°ñ¡Xd /F`"lfÄ:q9¾ Ê ê&0ÂFÜg%”BÞqŒ‡h*Së´×j¸Ø~¾­í’®UÍHʽÂ$/Þ°"Xå„}{×ÿøbU¼,%Uã9 v +¦Í¤(4zZˆäwJˆý&IK*:„Ìí8dƒ”p 3©šÑç—e‡Ž¾loPªÙ½‹AâÏKw¡0Z%¨é¯ðõUú"¢;ÄHjsu3Ð"îm®9SK{Ä’Š×pæ9—ABêWTŠ=¥2Åb6;fÆ)îqÛ{õ7ÅpB׊l®¼x3ͬzsA/w·œ<ëSúNççælB“–1Ë7Ö|µ]4Ts¯vȧÒ-Ae÷„öçR¸ä"ÈüнÔä¹Þ£A!´^C$Þ)¤Hã|U ¸ÿ…ÔëâdûÊêäÄDGbD´Î©×)r^séÒõPÔ\[_ûjHôhôá˜GaÐ+my’ür$@ì™lÈ+Qó{4WxZöxÝÖ,U¼‘ÏÖý ©>þäÚÓi'hÙ³ÎSÞ¶»Š›Úô-BDl + +ed¡é¨k–fc–âãœÜÔõk/?<ë>w.ÐÓ $µÆ]ÔÚªèëv÷ô]Ü’¶Å’Ÿ¿–®tË7A¤ÃD¢àõˉ«¾[ç7¢÷–š¿XŸž7­=G½†ý / .嚊b’‰¤ñ݈€°Ž“ ý?2H¾­DZ]U"’ìp½ùÈ…ÊŽAÅ>œ£ÍÅ öN€7Ô hHì +endstream endobj 840 0 obj <> endobj 841 0 obj <>stream +H‰\’ÛŠƒ0†ïósÙ^ë)¡ B±-x±ÖÝ°ÉØÖ¢½ðí7ã”.l@óe2‡?™DU}ªm?CôîGÝà ]oÇi¼{pÅ[oEœ€éõüX­=´ND!¸Y¦‡Úv£( +ˆ>Âæ4û6G3^q+¢7oÐ÷ö›¯ªÙBÔÜûÁí {(K0Ø…D/­{m„h ÛÕ&ì÷ó² 1Ÿ‹CHÖuÌbôhpr­FßÚŠbF Å%ŒR 5ÿö“‡];ýÝzQ$ä¼ß‡)pÅ\NÙž’=™câ„9!Θ3âó!pÆöŒìÛ3²ç›Slž2§%ç—”_²$É>rõᜒrÊœ9'–Ì’X1+b®+©®äsI:—<1ŸˆÏÌgâ s¸´B±EkP¤A±EkP¤Aq-EµÔ‘ù¸^þã–© áµÀ³Çúî}hïú¤Ö¾RG{‹ÏWçF!Š>ñ+À¹«± +endstream endobj 844 0 obj <> endobj 845 0 obj <>stream +H‰\’Ínƒ0 Çïy +ÛCÅW ­„Ö®•8ìCc{JL‡4Bè·Ÿ«NZ$ð/±ÿØ Žåsi» ‚w?4NÐvÖx‡›o.xí¬Šb0]3ÝwË»ék§J®æq¾´í ò‚rŽ“Ÿaõd† ®Uðæ úÎ^aõu¬ÖT7ç~°G;AE[úÐKí^ë!XÒ6¥!7ÍÊù‹øœB¼ì#Ó GW7èk{E•‡´ +ÈÏ´ +…ÖüóDZ¤]Úæ»ö*98 ÉŸ„Oĉœ'|žD³ÖÄÛãÂdTžJ|ÊñZâ5ÇëD8aN…SæL8cÞ ï˜÷Â{æƒðYji®¥E§fú,L?›gñÂdˆ¥nÆu³­ð–Yôg¬? d¸Q÷ŽpËh²ð˜GsóžF±Œ™w¿³ø¸!np@Yü¨_‰è Ë +endstream endobj 848 0 obj [/Separation/PANTONE#20541#20C/DeviceCMYK<>] endobj 849 0 obj <>stream +H‰Ì—ßsÛ6Çß5sÿ©›Æo~sl·Í]›Kcuòtnh¶x‘H•¤ìúþú[¤LÙ²%ö”ªòŒ R"¸ûáîwwOίJkD0E¨N‹ÑÉ÷pá¶D¢ iÃPeG7£ßž^ú„ŠÑÛ騻oJÿMEӛф`ÂÐ4EK‰Ü]~¡à¿‚[ÃÆ(ƒ¦‹ÑçH'ŠE˜Ž'ŒEdüëô£ËéèçnW~#©°2IÌ… öœ8Ëϯà‘èêüýˆ`‰î‘@?¡‘4Xë1Ž™ÐHàXÈö?Üxõ¢#Ä›JÑWÇ€:Î'|r.ÉÖ§Î%D)Ç<–±7RÃþÞ¥wEco«d<¡$jl†.ò:©ÉÂÍ›1׺°‹ò:Ÿçÿm“—JŠ }´yÿVwùª/’*«Ñ#N 6\xÿÀ‰oèg¯®ç_„¨R»¸¶b„˜ñô?~'Öîäv¡¤ÝÆ/Öœ4ÓX°QŒQw+·RLˆ‚›¦`¼¸øˆ 8"GƯ®ÂyöP$‹BÖ4¥?¤eQçØãN®íMYÙ{³U•·~Yu_5Z›!‚±·-al“Â`®©:X $ŽÌ¶ïT`k^dË·ˆmL×…ì§z®²½º‚ {—ÌW£æ^Ôà ¦.É)6ZYaÛÏ °†ïä*¶öcqÇõ²•NˆážvîC‘”¢dŽ¤K­ÄÁc÷)¡c†rßÇò×Kìñ¼¶IÊ:øW«å²¬šÔ”E…ãdÎÚžÁ¸ÑØjó»4Y&)¨¸ÝUë”Âàu x[†ÁâðÁ>¤ õ͈˜çÈvW4؃> cÈa);’ïéȨ¼/lUÏòå€At˜Æ %3ôp±|̨Ýð¦G{;âçÕ Çëv÷Ý“(ä&ªCüî&!˜@&JÊ¡Ë=æ£"î{‹Âð$žábú :ŠÅZš?Ì“¢hµAwj £Ðb„u:³é×y^7¯«€*Õ fÇô[¨ÀÏ Åè™ÜV{(ݪÔ´t£ï-hD2¢Î/;È$h “X°o]ìY3¸ûÎöØoî¿Þ."|-"ýnÙ‡6m[98.ÛxÐÇÅ8 +ì$`H¬Ô_ “„·göžxŸwÉ®•]KÆy¹X¬Š<õ* ÁâV7`‘–¥‡ŸåÅÀvÙÄXr†8 £,†‚pÊC°öíl±¾4ÒuXŸ7É.j[©ønUd.,÷–Šª8ô^ +džò¿f‘Ûõ¸!ÀûŽàñàrk;§×qÚ[7˜¸‚wgçåra‹æ¿°,Ëy¨‹:ò!mërå©­ýÕô:jª$$)Ü 5A³«0ü’2eï±}”=Û·ÌgEaGg§Þ«èìúº²w¹OòÚ_y­íå1ˆ3 JzÀ îÛV­;ËMgØæ¨ÖG(ÙFGBЈèíi8þÓ>„Å/ïÃ1+Ó• ÃCS0¯( ŠI´Á”#×%÷ÒvõM¸§Hvâ#EŸúÃw«ª™Ùʯ+›d!o»á–E äò.œ çšC÷êRˆcv¯CöÍm²Ý¹|YdEÙØ×—B„Å :¦H¯Ü¯ Ò{ ÏŽÂm;9ËTmÚÕܵã;÷݈ýÿËéèç¥+R ³uÍ,ÇDƒü¨ÏD ÊŽÞŽ~¹MeHæ.}BÅèíÔ_u_½:A0a0è¥È´Æ¸#ås¥ J>–ZÓïÿ5æ$š^®c%n÷pÕPhÈ« øÕe’Îл‹‹WhQf«¹EyÒUUÈ û¼™!{3žˆèƦ º©Ê‚dBYâ®5Õ³ò¾@Ð鹫iyy¶ôßÝÚ6RáßYí¿OÉë1“moš²´U^fÐ:Îçn‡äjˆ½·Ù¿Óª¶Uí¸šgð¨¢^Í¿/h#ìŒ>úœZt¦WÝÛkTç`£·¿¬ÐjÙ™]ŸŽ[Û8¹Ä1í¿ø5èIøª³Ó)̬i–§''÷÷÷Î. ½YVA›qYÝâÎ/H'ܚ΀h§ÛŽ.$jJt ôÊy†M™þÝ7ÐKï}•ßÎô…Iêd„8a*Ï‘ÿ¾F€e<ÎãÎf~yÿ`Ný•5 +endstream endobj 850 0 obj <>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/ExtGState<>>>/Type/Page>> endobj 851 0 obj <>stream + + + + + application/pdf + + + Adobe Illustrator CS2 + 2006-09-30T11:18:20+01:00 + 2006-09-30T11:18:48+01:00 + 2006-09-30T11:18:48+01:00 + + + + 256 + 216 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgA2AEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYqhrvUbK0H7+UK38nVvuG+SESeSCQEnufNiiotoa/5chp/wAKP65aMPewM0F+lNfvP7nn xPaJKAf7KlfxyXBEI4iW/wBE+YJ95OdD/vyT+FTjxxC8JQ99ot5Zw+tMU4lgvwkk1NT4e2SjkBQY 03ZaJe3cAnhKcakCpINR9GMsgBpRElX/AEV5ht94+dB/vuT+FcjxxKeEtDV9esyBNyp4TJ1+mgP4 48ESvEQjrbzYhoLmEr/lxmo+4/1yJw9yRNOLW/s7sVglVz3Xow+g75UYkc2YNojIpdirsVdirsVd irsVdirsVdirsVdirsVdirsVdiqjdXltax+pO4Re3iT7DvhESeSCaSKfzNczyCGwhozGis27H5Ab DLhiA5sDPuTjT7WeKPncymW5f7bE/CP8lR0GVSIPJmAi8ilQu722tIvUncKOw7n5DDGJPJBNMcvf MV7dP6NmpiVtl47yH7un0ZkRxAc2szJXWflm7nPqXb+kDuV+05+fhgllA5KIJ1a6JpttQrCHYfty fEfx2+7KjkJZiIR2QZOxVJ/NP/HNX/jKv6jluHmwnyQ+i6nZ2emIJ3KlncgAE9KeGSyQJOyIkALZ /Nvx0ggqni5oT9A6YjD3qZptpuoxahAXEbJQ8XVhUfQe+VyjwlmDay60LTbipMQjc/tx/Cfu6fhi MhCDEJJd+Wr23Pq2j+qF3FPhcfLLo5QebAwLdj5ku7dvSvVMirsSdpF+dev04JYgeSifeyS1u7e6 iEsDh1706g+BHbKDEjm2A2q4EpfqenzyVuLKQw3ajfiaBwOzdsnCXQ8mJHclVr5nuYn9K+i5cTRm UcXBHivT9WWnEDyYifen9reW91EJIHDr38QfAjKDEjmzBtWwJdirsVdirsVdirsVdiqlc3VvbRGW dwiDue58AO+EAnkgmkDLrkaWjXRiZYjtBzIDSN7Lvt75MY96RxMTurue6mMs7cnPTwA8AMyQAGom 2T+XtKFtB9ZlX9/KNgf2V/tzHyzvZshFOMqZpZq+tw2IMaUkuSNk7L7t/TLIY7YylSRWmn6hq8xn mciOvxSt0+SjLjIR2YAEsmsdNtLJOMKfEftSHdj8zmPKRLYBSKyKUNd6jZWg/fyqrfydW+4b5IRJ 5IJASm482RAkW8Bb/Kc8fwFcsGHvYGaCbzHq8xpEFU+CJyP48sn4UQjjKGvrnWZoR9cEno8gQWTi vL50GSiIjkgkqNsuoLEzQQs8T7MfT9RSR8ww74TXVAtEw6xdWw9NreGndWjCn8KZEwBTxJna+ara gSaAxAbAx0IH0bZWcJZCacWt/Z3QrBKrnqV6MPoO+VmJHNmDavkUpdcW2laqrAMryJt6kZHNfCv9 uTBlFiQCkFxZ6lo1wJo2qlaCVfskeDDLxISDAghP9J1mC/TifguFHxR+PuuUThTOMrTHIMki8yaV 6sZvIR+8QfvQP2lHf5jLsU+jCcerH7O9ns5xNC1COo7MPA5fKILWDTKTrf8AoyXiwmS0O0hQ/HG3 cMp6j3rmN4e9dW3iR9rd291EJYHDp3p1B8CO2QII5pBtVwJdirsVdirsVUby6itbd55T8KDp3J7A YYizSCaYrbGfWdVT1zWMVZlHRUHYfPpmSajHZrG5Wa9e/WL5kTaGD93Go6bdT9+OONBEjuv0nTl4 NqF2KWkI5AH9th0A9q4zl0HNMR1ZdGxaNWIoWAJHhUZiltSvXNaFmnoQkG5Yf8AD3+fhluOFsJSp jNs8P1xHvQzxE1k3NTXevjl55bNY82cwmExIYaekQOHHpT2pmIW9Zd3lvaRGWdwq9h3J8AMREnkg mmN3vmG+u39GzVolbYBd5G+7p9GZEcYHNrMiV1n5Yupj6l2/pA7lR8Tn59hgllA5KIJzbaFpkAFI RIw/ak+L8Dt+GVHISzEQjlRUHFQFHgBQZBklHmn/AI5q/wDGVf1HLcPNhPkv8s/8csf67YMvNMOS aOiOvF1DKeoIqPxytkgLnQNMnB/dek380fw/h0/DJjIQxMQkeoeX7qyU3EEnqRpuSKh199sujkB2 LAxpBnWNUJU/WX+EUG/6/H6clwDuRxFG6HqFst/6lwfTlkBUyAhUYk1+JQNvnkckTWyYndlFx6Ho v6/H0aHny6U98xx5NpYLPJEl40lkWSNWrET9oUzLHLdoLKtF1hb6P05KLcoPiH8w/mH8cx8kKbYy tG3twbe1km48xGAWX/Jr8X4ZCIspJYtrGlCKl5a/HZS/ECv7Ne3yzJhO9jza5Rb8uXYjuzaybw3I KlT05U2+/pgyja1gVNpJ9G1WRYiSindT0ZDuAcNCUUciy63uI7iBJozVJBUf0zGIotwKpgV2KuxV TnnighaaU8UQVJwgWpLG/M188rw29CnFRJIh6hm6A/IZfij1apl2gkW1he3x6qvCM+9K0+8jHJuQ FjytT0/SI0j+u6k3pW43WNtmf598Mp9Aoj1K+S9fV76CzhT07NGB4dKqvUmnTboMAjwi+q3ZTzVt SSwtS+xmfaJD3PifYZVCNlnI0kGjaZJqNw11c1aENVyert1p8vHLpz4RQYRFp3q2jQ3sI4AJOgpG 3QUH7J9sqhOmco2kFjqt5pTyW8qFlFf3TGnFvEHwy6UBLdgJU1b2uo61cmWRqINmkP2VHgoxJEAg Alk9jptpZJxhT4j9qQ7sfpzHlMltApFZFKFu9VsLWommAcfsD4m+4ZIQJQZAJXN5tgBpDAz+7kL+ A5ZYMLHjSvUtdnvoRC8aogYNUVJqK/1yyOMBgZWu07X57GAQLEroCTU1B3xljBKRKkyh82W7ECaB k91Ib9fHKzhLLjTW01OxutoJlZv5Ds33HfKzAhkCCrSzQxlVkYKZDxQN3PhgASwfU7X6rfzQAghW qtPBhyH4HMuBsW0EUUNkkJhPqOoaikNoBWlF4r+2R3bICIjuyslkWlaLBZwH1AJJpBSViKih/ZFe 2UTnbZGNJHqunzaXdpcWxIiJrG38p/lOWwlxCiwkKZDY3kOpWJJH2gUmj8CRQ/flMo8JZg2EhtNQ m0q4lsbpfVtgSGU9ge4r2I7ZcY8QsMAa2bvNLQcdQ0tvVhUhyg3KEGvTrjGfQqR1DfmYJL9UvI/s zJSvy3H/ABLBi6hZqnlu/kS2uIQOZiHqonfjWjgfwxyx3TAsihmjmiWWNuSOKqRlBFNi/ArsVSK/ uvret21iprFC4aQeLKOX4AZdEVElgTZpKNfJOr3FfFfu4jLcf0sJc0yt7u207RYBKgknmJlSI/P4 WPtsMrIMpMgaCS3V5d304aVi7k0RB0FeyjLREAMCbZPomljT7dpp6CdxWQ9lUb0/rmPknxHZtiKS Od5tZ1UKlQhNE/yYx3y4emLXzLLbeCK3hSGIURBQDMYm24BR1LUIrG2Mr7sdo0/mbDCNlBNMXtrG /wBXnlnLeJaRuleyj/PbMgyEWoAlV0vVLjS7hra5U+jWjoeqHxGCcBIWEg0yW41C0gthcSSD0mFU I3LV/lygRJNNhLG7zXNQv5fQtFaNG2VE3c/MjL44wObWZEq1n5VmcBruT0wf91pu30np+vBLN3JE E3g0LS4aUgDnxk+L8DtlRyEshEIPzLbwRaavpxon7xfsqB2Phk8RNomNm/Ltvby6WPUiR/jb7Sg/ rwZSbWA2RVxoGlzA/uRGx/ajPGn0dPwyIyEJMQlF55XuIvjtJPVA3CH4W+g9Dlsco6sTBAXGo35t 2s7qrFWBBkHxqR7nfJiIuwxJPJXtXt9Tuq37+mY4t5FovPh3atd6YDcRskb80slEYlcREtGCeDHY kV2rkwxX2l3NazrNCaOv3EdwcSLCg0zewvor22WePauzL3Vu4zElGi3A2vuraK6t3glFUcU9wexG AGipFsUsZ5tI1Ropv7uvCUdip6MP15kyHEGsGinWuaQL6ITQ0+sINvB18P6ZTjnTOUbYzbXd3Yz8 omMbqaOh6GnZhmQQCGoGk3v7u31HRi0SiOa3YPJEOwOxI9iWrlcQYyZk2EP5W/46Te8bV+8Yc3JE OaP0O79DULnTWPwB3MHtxJqPpG+QyCwCyid6T7KWanczLBbyTN0jUsfoFcIFlSxDRJWbWoZHNWdm LE9yyn+uZOQelpjzb8wqBrExPQ8Cf+BAxx/SsuaGVLvULvjGvORugHRVGw+QGS2iEc0+02xtrK+i t1pNdlS88nUItKAL4VJGUykSL6NgFFf5nvjDarbIaPP9qn8g6/fgxRs2sy35ZsPRtDcuP3k/2fZB 0+/rjllZpYBOGYKpZjRQKknsBlTNiF1NPrOqLHF/d14xg9FQdWP68ygOENR3LK7W2itYEgiFEQU9 ye5PzzGJstgFJX5ltrJrT15TwnXaJh1b/JPtlmIm6YzAYujc2jSVyIwaV+1xBO9BmQ1s202ysra3 X6qAyuATL1LfTmJKRJ3bgAi8ilCXOradbGks68h+wvxH7hWmSECUGQSLW9bs721EEKvyDhuTAAUA I8a98ux4yC1yla7Rdcs7O0EEwflyJ5AAjf6a45MZJtMZUnlrqlhdECGZWY/sH4W+40OUmBDMSBRW RSgtU0+yuoGa4ohQVE3QrT38PbJwkQdmMgCwlwodgp5KCQGpSo8aZltKc22gQ3WnLcW85aYKeSUF OY349RTKjko0WYjYSZlZWKsCrDqDsRlrBHaLqTWV2CT+4kIWUeA/m+jITjYZRNM1BBAINQdwRmI3 JH5osBJbrdoPji+F/dCf4HLsUt6YTCt5bvjcWPpOayW9F/2J+z/TBljRTA7KF7Z2t9ez2spEV4tG glApzQgGhHemGMiBfRBFlIpYbrTropKtDQqR+y6NsfoOXAiQa+SP8rKP0lJ3CxNQ/wCyXIZuTKHN B3lw0OszTp9qOdiP9i2SiLigndmsciyRrIu6uAyn2IrmIW5A6+xXSLgjwUfe4GTx/UxlyYlYSele wSfyyKT8q75kyGzUOaZ61bS3eumCEVcqoJ7AUqSchA1G2UhZV7m8ttGgNnZ0e7YfvZj2Pv8AwGRE TI2eSSa5Kvle3dlnvZSWeU8VY9TTdj9+DKeiYDql16zalrnpKfgL+kp8FXqf1nLI+mLE7llyqqKF UUVQAoHYDMVtSjzNfGCzECGjz7H2Qdfv6ZbijZthMrfLFh6Nqbpx+8n+z7IP6nHLKzSwCcu6opdj RVBLE9ABlTNh9xLca1qYSOoStIweioOrHMoARDSdynV55dtJLNYoAEmiHwSH9o9+XzyqOU3uzMEo 0zVLjS52trlW9EGjx91PiuWTgJCwxEqbvNZ1DUZfQtVZI22EafaI/wAoj/axjAR3KmRKItPKkjAN dy8P+K03P/BHbBLN3JEHa3o9jZWAkhVvU5heTEnYg/RjjmSVlEAN6NotjeaeJZQwkLMOSmmw9jUY JzIKxiCFt55VmQFrST1KfsN8LfQemGObvUwUrHXb6xl9C8DSRqaMr/bX5E4ZYwdwgSIWanqlxqlw ttbKfRJoiDqx8TjCAiLKk2mtt5btlsWimo1xIN5R+ye3H/PfKzlNshDZI4bm+0i6miFA/wBlg26n wYZcQJBhZDJWtLPVLJJZFDO6UEwFGB9q70r45j2YlsoEMSvLKe1uHhkXdN+Q6FezD2zJjIENRFMn 8tXnr6eIiavAeJ/1Tuv9Mx8saLbA7JpLGksbxuKo4KsPYimVgsmJ6O72GtG3c7Mxhb33+E/fTMme 8bao7FHeabd1MF7GSrIeDMNiO6n9eRwnomY6rLS/ttXgFlfUW4/3TMO5/r7d8TEx3Cg3sWtAtpbP V57eYAMIia9iOS7jHIbjaxFFIZXMkryHq7Fj9JrlwYM20di2l2xP8gH3bZiT5lujyQ+uzJJp15Cm 7xCMv4CrA0+4ZLGNwiR2YhH/AHi/MZlNLJ9avYtPklaHe9ugKt/Iiin45jwjxe4NsjTHLa3mu7lY k+KSQ9T95Jy8mg1gWzSQR6fpbCPZYIzx9zT+JzEHqLdyCReVLfndyznf01oD7uf6A5dmO1NcAyjM dtYjqzNf656CnYMIV9qH4j99cyYbRtqluWWxosaKiiioAqjwA2GYzak3mi9MVotuho05+L/UXr95 y3FGzbCZXeWrAQWn1hh+9n3Hsg6ff1xyys0sAmV5eQWkJmnaijYAdSfADK4xJZE0wzVdQa+ujNx4 KBxRe9B4nMuEaDVI2raJqosJyHUGGSgcgfEPcf0yOSFhYypk8+qWaWkk8cyScFJChhUmmwzHEDdN pkGMX2t3F5aLbyqtQ3JnHUkV7dO+ZEcYBtqMrXWGvT2Vo1vHGpO5RzXYn274yxgm1EqTvRJLsWs1 3fSEJIealzsFp1A7A5VkAugzj5sc1W9+uXskoYtHWkXIUovyy+EaDCRst6fqEmn3DyRqklQVNfn1 B64yjxBQaT7TvMqXNwkEsXpM+yuGqC3huB1yiWKhbMTtL/MWnXi3Ml4f3kLU+Jf2R0AI/jlmKQqm MwjPKt3PLHNDISyRcShJrQGo4/hkMwZQKdzQpNE8TiqyKVb5HKgaZsV0GV7TV2t3258om8OS9PxG ZGQXG2qOxZbmM2sU8zQmHUknTb1FDV/yl2/pmTiNimqfNkUkcV/p/FvsToCPaoqD9BygHhLZzDCb i3mtrh4ZBxkjNNvwIzLBsNJDIdGv470H1/8Ae2CNlD/zoadfcZRONe5sibYzmQ1M00qQRWllbts0 kPNT8qEj/hsxJiyS3RQWmkXy6qlamVyF9gQQv6snPakDe2NopE6o3wkMAa9t8va1S+uWuryWc/tt 8I9ugH3YIihSk2n+k2f6P+rcwDd3jEFT1WMKWNPfpXKZy4r7g2RFIrzLLw0p1/34yr+PL/jXI4h6 kz5KXlWLjYPJ3kkP3AAYcx3RDkm8jhI2c9FBY/ICuVBmxXy2hn1YzPuUVpCfdtv+Nsycu0WqHNlm YzaxHWWa81z0FOwZYV9vH8ScyYbRtqluU/1PU4dMgjATmx+FIgePwgdeh6ZTCHEWZNMRvb6e7maS ViQSSqE1Cg9hmTGIDUTahkkOxV2KqttazXBdYULsilyB4DATSQFkkUsbcZEZG60YEH8cQVb+sT+j 6HqN6NeXp12r8saW1mFDsVbRijBl+0pBHzGKpvpeo6hd3ht5XM0U4ZZVbYKpG7DwplU4gC2YJKno FxLBqaxJRllPB/Cg3qPuw5BYRE7swzFbmI62Da656yilSko+jr+K5k494tUtiy4EEVHQ5jNqRebI q2sEvdHK/wDBCv8Axrl2E7sJo3QJfU0mAnqoKn6GIH4ZDIPUmPJAalZ/pJbgxgfXLSQqAP2k6gf0 ycZcNdxYkWkVjcG2vIpTsFajj/JOzD7sukLDAFTggea4SBftuwQfSaYSaCsn1SZbfUtLVdgpZaf5 L8UzHgLBbDzCWeWLr09QMTHadaf7Ibj+OWZRsxgd1nmK1FvqRkUfBN+8H+t+1/XDiNhZjdU8t6cJ 7g3Uo/cwfZr0L9fw64MsqFLAIm1vfr3mNZF3ihVxH8gCK/STkTGoJBsq3mxv9ChXxkrT5Kf64MPN M1bQbm1i0qFXmRH+IspYA7sexPhgyA8SxOyvqN9afULkJPGzmNgoDqTUinjkYxNhJOyT+VZYInuW lkWM0QLyIFa1r1y3MDsxgyH69Zf8tEX/AAa/1yjhLOwxXTpYn1/1pWVUMkj8mIA7kb5kyHpaxzb8 wSG41SiOsicVWMgim/v0644xQWXNLZ4HhkMblSRvVWDDf3FcmDbFZhQ7FUw0XS/r9yQxpDFRpPE1 6AfPIZJ0GURbMILeCBOEMaxr3CimYpJLcAhNatLe4sZGlFDCrPG9aUIH6sljkQWMhswrMtpdirsV diqL0uP1Lr0jN9XjkUrLJ0+Glab+NMjPkyCsqwWuuRrC4MKSoBJUEcTSpr075HnFeRZb9esv+WiL /g1/rmNwltsMb80SQyXMMkUiv8BUlSD0Ne3zzIxDZrmn1pf2htIS08Yb015AuAa0HvlMom2wFA+Y ri1l01gkyOyspCqwJ607H3yWIEFjM7LvKzV01h/LKw/AH+OObmsOSDmvP0f5jldtoZeIk+RUb/Qc mI8UEXRUvMunLFKt5EP3c20lOgfrX/ZY4pdETDvK1r6l29yw2hFF/wBZv7K45jtSwCjrV562sckN VgKop91NT+OSxxqKyO6XVkt7iqnjJE+x8CpyfMMU/wBadb/RoL1B8SMOQ8OXwsP+CplMNpUzluLd qkw03SodPiNJpF/eEdgftH6TtjAcUrWWwpQ8pxVu5peyJx+lj/zbhzHZEEX5tB+rQHsHI+8ZHDzZ TS6x8uzXdqlwkyqr1oCDUUJH8MnLKAaYiFr7nyzcW9vJM0yMI1LEAHemIyglTBCaXpMmoerwkVPS 415AmvKvh8slOfCgRtH/AOErn/f6fcch4wZcCV2tg9xe/VA4RqsCx6fCCT+rLDKhbABfZabLdmUq eEUSly5B3A7DGUqSBaHuIkikCpKsqkAh1qOvahwgoKnhQ7FU10m+NtcPJApMRVnuENBRVBpRt+5y ucbG7OJpNLXzPHPcxQ/VyvqMFDcq0JNPDKzioMhNOZYo5Y2jkUMjCjKehGUg0zYDcwmG4kiIIKMV 32OxzNBsNBU8KHYq7FUdpeltqBdUlCOlCQwO4PhTITnwsgLU5dPePURY8wXLqnPtVqf1wiW1orek z/wlc/7/AE+45X4wZ8CX6ppb6e8aPIHLgn4QRSnzycJ8TEikbB5XuJYY5RMgEihqUO1RXInKAkQU tQ8vzWVs07zKwUgcQDXc0wxyWaUxpNvKgP6Ok95Wp/wK5Vm5sockB5sh43cM3aROP0qf+bsnhOzG atpFyNQ0ybTpTWVEPpE9wPs/8CaYJjhNpibFL7CUad5ea46SyligPXkTxX9VcEhxSpRsGP2yGW6i TqXdR95y88mARWu25h1ScU+Fz6i/7Lc/jXI4zYTIbo/yzKkqzWMu6HjKo91Ir/DIZRW7KHclmrXR udQmkrVQ3FP9VdhlkBQYyNlkPle39PTzKRvM5IP+Suw/GuUZTuzgNneak5acrfySAn5EEY4eaz5L /LUnLSkX/fbMv48v44Mo9SYckwvIzJaTxjq8bKPpUjIRO6SxzynJS7mj/nTl/wACf7cvzDZrg3ru uSvJJaW54RoeLyAnkxHUewrjjx9SmUkotLn0blZnBf7XIVoSGBB3+nLSLDAFkGjz/W9Iexhl9O6Q EVIr8Jau3tTbKJipW2RNikBrmlizgtWUCvHhKyjYuN6/Tk8c7tjKNLv0LDdaYl3ZV9UL+9h+1VhQ Gnh448dGivDYSlYZC/DjRgCSDtQAV3rllsVoLEcB0J+X3nChkGgaNPHcrdzcPTCkx0YPUnatRUZR kmKpsjFE6xr8lldCCGNXIAMhavfsKZGGOxaZSpjNxO887zP9uRixp03zIAoNZU8KHYq7FVW1uprW ZZoW4uv3EeB9sBFpBpExXqvrK3bISrS8+A3NK7ZEx9NJvdm2YjcxTzTJz1FIxvwjAp7kk/0zJxDZ qnzZTEnpxJH/ACKF+4UzHLalPmp+OnKvd5APoAJyzDzYT5KnlqPjpSN/OzN+PH+GDKfUmHJZ5mgE unlhQvAyuR34t8OHEd0T5Mc0u5Ntfwy1oAwDf6rbHL5iw1g7pj5nuFE0VnGOMcQ5so6cm/s/XleI dWUyhvL1uZtUiNPhirI30dPxIyWQ0ERG6N1iI3ul22or8TqoWan3H7myMDRIZS3FpXpNwYNQhkBp vxP+yFP45ZMWGMTuhAGZgAKsTQD3OSYstnK6fcaVGDQUaF/fkFFf+Cocxh6gW07UitbhM2l3CjqF 5j/YHl/DI4zRTLklflO4Hp3EJNOJEg+kUP6hlmYMYFu681oA628VXDUVm3UqO+1DiMPepmk2m3wt dQW5K/AC3JF8GB2GWyjYpiDRQrtydm8ST9+SYtYqmPl+cRarDUkB6pt/lDav05XkFhlHmyrUrJby zkgOzEVQnsw6ZjxlRttItjeiakdPuntrmqRMaPX9hxtX+uX5I8QsNcTSnqV62pXvp2sWzEKKD4np 3Y+GGMeEboJspkPKkRtVBlK3XVmG6fKmV+Nv5MuBK7vTdT0xfU58YyQvONyKnr02PbLBISYkEJe7 u7FnYsx6sxqfxyxDQBJoNyegxQ3WgZWXfsehB74q0ASaAVOKp7oWjWd3A0szlmVx8CmlAN6HbvXt lOSZBbIxtH6ta6ZY2EsqW8YlYcI6ivxN3Fa9OuQgSSmQACE8p2prNdEbf3afrb+GSzHoiAZHlDYx CM/pDzCGG6GWv+wj/qFzK+mLVzLL8xW1jfm2cGS3gH7ILt9JoP1HL8Ia5p3pkPo6fbxnYhAWHudz +JyqZss48kBZut9carGx+FiIl9lAZaj6d8nLYBiN7Yo6sjFWFGUkEe4zJakRqczTahO7bnkV/wCB +H+GRgKCTzTjTom0/RLi9b4Zpl/d+IB2X8TXKpHilTMbC2vL94kckumXFCjswQN0r0ZT88ckeoWJ 6IDVdNk067DJvCTyhfwpvQ+4yyEuIMZCluiQLNqsK/sKxf8A4HcfjjkNRWI3Rnmm4P1+JFP90gPy Ymv8BkMI2TM7smRkmgViKpIoNPZhlHItrEtO52WsNbk8eRaAsf8AK+yfvpmTLeNtQ2KWyRvHI0bi joSrD3G2WAsVuKHYq7FVWzmEF3DMekbqx+QNTgkLCQzz14fQ9cuBDx58z04kVrmHXRvth2p3A1LU a2sW7UVaD4np3OZUBwjdpJsr9H1FNNuXE8O7fCzU+NadqHBOPENliaZXa3trdJygkVx3A6j5jqMx jEjm2g2k3mq8jESWlD6hIlr2puMtwx6sJlJIdLvp7c3EMReMGlRSu3t1y4zANMKKiBPA3IVjYryU 9DQ7VGHYqp4UODMK0JFRQ08MVZP5UVUtpWZgGlb4UJ3KoN2A+bZj5ubbBLtZvX1K/S3t/ijQ8IgP 2mPVsnCPCLLGRssnsrVLS1jgTog3PiTuT9+Y8jZtsApD63e/VdPkYGkkn7uP5t3+gZLHGyiRoJZ5 Usz+9u2H/Fcf62/hlmaXRjAMiyhsYhcn9Ja/wG6NIEH+onU/gTmUPTFqO5ZbK4jidz0RSx+gVzGD axbyvORqLox/vkP0sDX+uZGUbNUDuh9cgWDV5Kj4HIkp/rbn8a4cZuKJDdV0TS2vrgzzD/R0ar1/ bbrT+uOSdCkxjaJ8xXonuItPhNVVh6lP5zsB9FcjijQtMz0QWvW722qSMtQJD6qMPE9f+GyWM2GM hum+n31vq9o1nd09enyrToy+4yuUTE2GYN7ILRrOW010wS/aVWoexFNiMlOVxtjEUUDrknqarcHw bj/wIA/hk8Y9KJc2VaNJ6ml2zeCBf+B+H+GY8xuW2PJJPNNoY7mO7TYSDixHZl6fh+rLcUtqYTCN SwstYs4bk/up/wDdzoACWH2gf4ZDiMTSaBSTUtGu7ElmAeCtFlX36AjscujMFgY0gMmxdirsVRbX 97cwQWPKsakKijaprtyPtkeEA2ys8mUaPo8VhFyaj3Dj438P8lfbMac7bIxpVv8ASbO9FZVpJ2lX Zv7cYzISY2xvUtFm04CYTqVr8G5V/oH9uXxycTWY0l0s80zBpZGkYDiCxJNPDfJgUxXx315FF6Uc zpHueKkjr8sTELaiSWJJNSepOFCrBctDUBEdW6q6K3T3IqPowEWm1aabTZIPggaG4HdW5IfobcYA DadkOk0sdeDlaqUNP5T1GGkMl8uaWsMS3ktDLKP3Q68VP8TlGWd7NkIp5lLNiOrXcmp6kkFv8Uan hEOxJ6t/n2zKgOEbtUjZZRZ2sdrbRwR/ZQUr4nufpOY0jZtsApQ1m9+qWEkgNJG+CP8A1m7/AEdc lCNlEjQSjypZ1eS7YbL+7jPud2OWZpdGMAnWqvw025b/AIrYfeKfxyqHMM5cmI6NIY9Utm8XC/8A BfD/ABzJmNi1R5prq9i99rqQJsPTUyN/KoJqcrhKo2ykLKtquqw6fALGyoJVHEkdEH/NWCEOLcpl Ktglfl+1a41NHO6w/vHPuOn45ZkNBhEbp9r+nG7s+UYrNDVkHcj9oZTjlRbJC2HxyPG6ujFXU1Vh sQRmU1Mr0i/g1GSOSUcb63BG2wZWFCcxpxMfc2RNsc1QEaldA/79c/exOXw5BrPNPNPuZoNBiuIj UW7t6kf8yFjUf8NXKZC5UzB2TO6hg1PTiEIKyryibwYdPx65AHhLM7hIPL981netaT/CkjcSD+zI Nh/TLskbFtcTRZRPBFPE0Uqh42FGU5jg020xnWPLzWyia0BeFR+8BNWHv8syIZL5tUopJlrB2KuA qQB1OKp1p3mC5sz9Xu1aSNdt9pF9t+v05VLGDuGYlTI7S/tLteUEofxXow+YO+UGJHNsBtjXmdrk 34EgpEq/uSOhHf6a5fiqmufNJ8tYOxV2KuxV2Ko3T7O1ulkjeb0rk0+rq32WPgTkJSIZAWozPdwo bOUlRG/Lgf2Wp2+/CKO6E0vdfaTTIreNiZ5EpcSeFNiPm2Vxx72yMtkd5c0owR/W5hSaQfu1P7Kn +JyOWd7MoRTvKWbEdZu31HUUt4PiRD6cdOhY9WzJhHhFlqkbLI41t9M08BjSKBfiPcnv9JOUG5Fs 5BK7meafQLq7lJ/0hh6cddlQOFAA/HLAKkAwPJItNUtqNqB/v1P+JDLpciwHNkWtajFYNIIN724A 5N/IoFB/ZlEI3z5NkjTFiWZqmrMx+ZJOZLUzLQ9ONlZgOKTS/FJ7eC/RmJklZboikxyDJi+raWJ0 e/s12qwuIe6spoxGZEJ1sWqQ6pPb3EtvMk0R4uhqDlpFsQURqskdxcC7jFFnUFl/lcCjL/H6cjAU KTJOvL6+votxB1JZ1p/rIMqybSBZx5ITy1qfozfVJT+6lP7sns/h9OSywvdjAq/mbSz/AL3Qj2nA +4N/XBin0TMdUZoGrC7h9GVv9IiG9f2l8f65HJCkxlaaSPHHGzyEKiirE9AMqDNgt61vLeStaIVh JJVfYbk07DMyN1u0FV020s7qURTTmBz9moBDewNRQ4JSISBbIY/LOlrTkHkp15NSv3Uyg5S2cARd 9pdnej98nxjYSLsw+n+uRjMhJiCkNz5YvoW52sglA3Xfg4/h+OXDKDzazAoK8bV/TEV4sjIpqpkW tD7P/bk48PRBtA5Ni7FXYq7FXYqrWVs11dRwKwUuacj2HU4JGhaQLTPzFcWEjRRQkyTQjg8wOxA7 H+Y5XjBZSIQFg8FvexteRlo1IJU7UruCR3GTlZGzEc2cRyJIiujBkYVVh0IzDIb0n8w6sLeI2sLf v5B8ZH7Kn+Jy3FC92E5KflrSzGn12UfG4pCD2U/tfThyz6LAdUH5l1Iz3H1SM/uoT8fu/wDZk8Ua FsZlG60PQ0CCHpX00PzC1P6shDeTKXJI9MlS3nN04qIASi/zORRR/H6MukLFMAh5pZZ5mlkJaSQ1 J9zhApCeadpYsYRfXa1mJAtoD/O2y19/1ZVKd7BmBW7Jcx2x2KpDd3T6TqxkIJs7v4nUdmGzEe/f Lojij5hgTRbv9Dtb+P61YMqu+9B9hv6HGOQjYqY3yY5PBPbu0MyFGBqVP6xl4ILWQnnlKcCS4gPV grr9Gx/WMpzBnBJbyMw3s0Y29ORgPoO2XRNhgWZaZdLe6fHI9GLDhKD4jY/fmJMUW4Gwx7VNOn0u 6W5tiRDyrG4/ZP8AKcvhISFFrkKU73Vb7VWit0SgNP3aftN4n2wxgI7qZEsg0jR4rGKrUe4cfvH7 Afyj2ymc7ZxjSB1by2JC01kArndoegP+r4fLJQy97GUO5B2OvXti31e6VpETYq2zr9/8cnLGDuEC RDIbPU7K8H7mQFu8Z2YfRlEoENgIKKyKXYqk3mlE/RytxHL1BvTfoctw82E+SB0vSLG40trmZXLr z2Q0rx3+/JzmQaQIikiy5rdirsVXQxSyyBIlLyHoq7nASlk2k+XEhImvKPKN1i6qvz8TlE8t8myM O9F6xo8V/FyWiXCD4H8f8lvbIQnSZRtj9nql/pZltmXpUCN/2W8Rl8oCW7WJEK2jaXLqFwbu6q0P KpJ/bbw+WCc+EUExjbItRuhaWMsw2KLRB/lHZfxyiIsthNBhEKGW4RDuZHAPuWOZZ2DSn3m2cf6P bg77yMPwH8cpwjqzmUktLO6u5BFAhY9z2HuTlpkBzYAWyWy0mx0uL6zdOGlXrI32VPgo8colMy2D YIgKFncyavqyy0K2lp8SKf5j9kn374ZDhj5lANlP8pbHYqhNU09L60aE7OPijbwYZKEqKJC2JW17 f6ZcMikoymkkTbqSPEfxzJMRINQJCeR6ppGqRCG8QRSduR6H/JfKjCUeTPiB5oZtKudKu0vICZrZ D+8p9oIetR3275LjEhRRw1uhfMkAS+E6bx3Kh1YdK0of4HJYjtSJjdEeWLx0NxbqObFfUjStKsux FffbI5Y9UwKeW93ZajA6Ach9mWFxRh7EZSQYlmCCx3UdKutLnFzbMxhBqsg6r7Nl8ZiWxazGk30n X4bsCKekVx0HZW+Xv7ZXPHXJlGVptlTND3mnWl4vGeMMR9lxsw+RyUZEckEWkF35WuYzztJBIBuF b4W+/p+rLhmHVgYIcajr1geMvPiO0q8gf9l/bkuGJRZCLi82ygfvbdWPijFfwIbIHCnjUNX12G+s xCsTI4cNU0IoAf65KGOiiUrb0rX4bGyEDRM7hiaggDfGeOysZUll7NbTTF4ITAp6py5CvtsKZOII 5sSoZJDaI7sFRSzNsFAqScVZhoOmGyteUg/fy0L+w7LmLknZboikzytkk2reYYrblDbEST9C3VV/ qcthjvmwlJLNL0e41CX61dlvRY1LH7Tn29vfLJzEdgxjG2QXd7Z6dAqkU24xQp1PyGURiZFsJpJ/ Mt3Kbe2gkASV6yyIDWnZRX78txDclhMoHy/betqKOf7uAeox+XT8cnkNBjEbpiNJk1C6kv75jDbk 1SM7NwHStfs5Dj4RQZcN7lUuNe02xj9CwjEhHTjsgPiT1b/PfAMZO5SZAckjmub/AFO5VWJkdjSO MbKK+Ay4ARDCyWX6ZYJY2iwru/2pG8WPXMWcrLaBSKyKXYq7FUs1nRY75fUjolyo2bsw8D/XLIZK YyjbEZ4JoJWilQo69VOZINtSKsdYvrMgRycox/up91+jw+jIygCkSITWe7tdZsvRQCK9j+KKM9DT qqn3GVgGJ8mRNpLY3DWd7HMQQY2+Ne9OjD7stkLDAGimuuJJZ30WoWjcVnFeS9C3X7mGV49xRZy2 NptpWrQajCUYBZwP3kR6EeIr1GVzgYsoytL9U8s1Jmsdj1MB/wCNSf1ZOGXvYmHchbHX72yf0LtW kRNirbOv0n+OSljB3CBIhkNnqdleD9zIC/eM7MPoyiUCGwEFFZFLiARQ9MVQ0um6fLu9vGT48QD9 4yQmUUEm8waXYW1kJYIgknMLUFjsQexOW45kndhIABdoOlWFxYCWaEPJyIqSeg9gcckyCsYik4i0 6wiNY7eNSOh4iv35UZFnQQeo+X7O7b1E/cSk/EyjZvmNslHIQgxtU07RLOyIdR6k4/3a3au2w7YJ ZCVEaVL3VrGzBEsgLj/da7t93b6cEYEpMgGPXmt6hqD/AFe2UojbCNKl2HuRl8cYjuWsyJR2l+Wl Qia9ozdVhG4H+se+Qnl7kiHej9V1aHT4QAA0zD93F7eJ9shCHEylKkm0OKW/1J7y5JcQ/FU9OR+y PkOuW5DwigwjuUBqt0bzUJJF+JSeEQHgNhT55OAoIkbKZW93BotqY6CW/l+KRB0TwVj7eGQMTM+T IGkpvNRvLxqzyFh2QbKPkMsjEDkwJtZbWs9zKIoELufDsPEnCSAoDL9I0eKwjqaPcMPjk8PZfbMW c7bYxpMMgydirsVdirsVS7WIrN1jF5H+5YlfrA2MbH7P0HLIE9GMqSO88t3kXx25FxEdwV+1T5d/ oy2OUHmwMEqeOaF6OrRuN6EFSDlnNiqT3Hr/AByD99+1IP2v9b398QKW0402ZNS019MlYCeMVt2P t0+7p8sqkOE2zG4pJg1xaXFQTHPE30gjLdiGHJl2kazFfR8Golyo+NOx91zGnCm2MrRN5p9peJxn jDEdHGzD5HIxkRySRaQXnla4jJe0k9QDcI3wsPp6H8MujmHVgYKCarrmnkJNyKjoswJr8m6/jh4I yRxEI6DzbEdp4CvuhB/A0/XkTh7kiaNj8x6S/WQofBlb+AOQOKTLjCB8walY3NgqQTB39QHiK1pQ +OTxxIO7GRBC7QdTsLbTgk8wRwzHia1oflgyQJKxIpFyeZNKT7MjSeyqf+NqZEYpMuMIKfzam4gt yfBpDT8BX9eTGHvYmaBbUdc1E8IuXE9ViHED5t/U5PhjFFkomz8qzOQ93JwHUom7fSen68jLN3JE E/tLG1tE4QRhK9T1J+ZO+UykTzZgUhdY1iKwi4rR7hx8CeH+U3thhC0SlTEHknuZ+TEyTSH5kk9h mVsA1J7dyJpGlCyQ/wClzispHauxP8BlIHFK+jM7CkihnMPxRikvZ/5f9X398uItg3Fa3c5/dRPI T1IBP44kgLSa2nlm4YepeOIIhuwqC1Pn0GVnKOjIQTnSPq1HFnEFtF+ESmvKRx1NT2GVTvrzZxTH K2TsVdirsVdirsVWyxRyxtHIoZHFGU9xhBpWOXB1PRJP3LGWxJ+AOKgex8Dl4qfvazYVo/NVrIvG 5t2Hjxo4+48cicJ6Lxue/wDK8w+OELXwjKn/AITHhmFuKgYfLnqCS1vHt5VNUNGIB/2Q/jkrn1C7 K9/a6dqEayLdwi9AoXBCh6dKqTUZGJMemykApHNaXtm4dlZOJqkqmq19mG2XAgsKpO9N80KQI74U PQTKNv8AZAfwyqWLuZifensM0MyB4nWRD+0pqMpIpsXMqspVgGU9QdxgVBTaJpcxq1uqnxSqf8Rp kxkIY8IQcnlSwbdJJE9qgj9WS8Yo4AonyjFXa5YD3UH+OS8byRwNjyjFXe5Yj2UD+ODxvJeBWj8q 6ev23kf6QB+AweMU8ARkOi6XCarbqT4vV/8AiVcichKeEI0AKAAKAdAMgyWTXEEK8ppFjXxYgfrw gEraSaj5nhRTHZDm/T1SKKPkD1y2OLvYGfckS295eSGQgsXNWlc8V+ljtl1gNdWnWnQaTp6mWS7i e7oQrD41T5AdcqkZS6bMxQWM/lsytNcTvdTMaszBwK+wAXD6+my7Kya1oEH9zbmvisag/eSMj4cj 1XiCnP5tFKQW+/Znb+A/rhGHvUzUraPVNakDXDlLNT8QX4VPso7/ADOEkQ5c1FlksUUcUaxxqFRB RVHYZjk22LsVdirsVdirsVdirsVadEdCjqGVhRlO4IxVIL/ysrEvZOFr/up+n0H+uXxzd7WYdySX Gm39uT6sDqB+0BVfvFRlokCwIKGySHYqibWy1CU/6PFIa/tAED79hkTIDmkApjb+Vr6Q8p5FiB6/ tt+G345A5h0ZCBVJbLRtNaslzLJOP2IiAfpp0+/AJSl0TQCi/mW5VPTtk4J2aVjK/wB5w+EOqOND DVdZuZAiTSM7dFj2/wCIgZLgiEcRR40/XY4vWnv/AEF7+pK236xkOKPQMqKETXdUgl4LcC4UGgqt QfvCtkvDBY8RXT+YNXaTgzi33oVCUp86hmxGOKTIoqO016eP1YL9ZV/yJG+7oMiZRHRNFAzX2uWc vCaaRH7BjyB+Vag5IRiWNkK0XmW94GO4UTI2zEExv9DJSn3YDiHRPGVaKLy7fn7UltMezv1P+s3I YCZBOxXT+U5RvbzhvBXFPxFcRm71MEtudH1OEkyQMw/mX4x+FcmJgsTEoJlZTRgQfA5Ni2qsxooJ PgN8VRdvo2pzkcIGUfzOOI/GmQMwGQiU7sPK8MZD3b+qw/3Wuy/SepyqWXuZiCeKqqoVQFUbBRsA MpZt4q7FXYq7FXYq7FXYq7FXYq7FUtvP0laM09r/AKTATWS3apZfEoev0ZZGjsWJsIVPMmly/wC9 ELI3fkocff1/DJeERyRxhWGu6GnxIwB/yYyD+rB4cl4goz+bLVRSGF5D4tRR/wAbYRhKmaUXmv6j c1Xn6UZ/Zj2+89csjjAYGRS7LGKY6Zol1fEP/dwd5COv+qO+QnkAZCNptPe6bo0ZgtEEl10Ync/7 Nv4DKhEy3LMkBLILfU9an5yOfTU7yN9hfZR45YSIMQCWSWGk2dko9NOUneVt2/s+jKJTJbBGl97p tpepxnSrD7LjZh8jgjIhSLY1d6dqOkS+vbuTF2lX9Trl4kJbFrIIR9rrFjqUQtdQRUkP2W6KT7H9 k5AwMdwkSB5oDU/L9za1khrNB1qPtKPcfxycMgKDGkpy1gi7TVr+0oIpTwH+62+JfuPT6MjKALIS ITe382npcQfNoz/A/wBcqOHuZCaLXzTphG4kX2Kj+ByPglPGFOXzZZAfuopHb3oo++p/VhGErxqt oNS1Aia7/wBHtOqwLsX/ANY9afrwSqPLmosptlTN2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVL7/RLG 8q7L6cx/3YmxPzHQ5OOQhiYgpJceVr5CfRdJV7fst9x2/HLhmDAwKG/QGr1p9XNf9ZKfryXiRRwl Wh8sam5+MJEP8pqn/ha5E5QngKb2XlqygIeYmdx2bZP+B/rlcspLIQCD1nzBSttYtQD4XmX9Sf1y UMfUolLuQejaK963rTVW2B693PgP65OeSkRjbLYoo4o1jjUIiiiqOmYxNtq7ArsVaZVZSrAFTsQd wRirGNb0H0Abm1BMPWSPqV9x7ZkY8l7FqlFbo/mCS3KwXRLwdFfqyf1GGeO9wsZJvd6Hpt8vrJ+7 ZxUSx0oa9yOhyqOQhmYgpTP5UvFJ9GVJF7Vqp/iPxywZgwMChj5c1etPSB9+a/1yXixRwFEQeVb1 yPWkSJe9Ksfu2H44DmCRApzY6DYWhD8fVlHR33p8h0yqWQlmIgJjlbJ2KuxV2KuxV2KuxV2KuxV2 KuxV2KuxV2KuxV2KuxV2KqdxAs8DwuSFccSVNDvhBpSGOQeV5hf8JjW0X4vUGxYdlp2Pjl5y7ebW IbsmRERAiAKqiiqNgAMx2xvFXYq7FXYq7FWOal5ake7VrMBYZD8YOwQ+Pyy+OXbdrME7sLKOytlg RiwG5Zj1J6/LKpSs2zApEZFLsVdirsVdirsVdirsVdirsVdir//Z + + + + + + uuid:2B33F0FE6C50DB119CE1E28B838B7E77 + uuid:03293ec0-50bd-451a-a1b5-698a56823ada + + uuid:cdd5dacb-d42f-4fb1-abda-54eddce82611 + uuid:7FF02B150240DB11B0B0DEDD5C19BABB + + + + + +endstream endobj 852 0 obj <> endobj 853 0 obj <>stream +H‰\PMkÄ ½û+æ¸{XLRº'ʶ…úAÓþ£“ThTŒ9äßwÔe ÐyÃÌ{>‡_úÇÞÙü=z=`‚É:qõ[Ô#ÎÖ±¶cuºVåÖ‹ +ŒyØׄKï&Ï„þAÍ5ÅÆxdü-ŒÖÍpøº GàÃÂ.è4 %œHèE…Wµ ðB;õ†ú6í'âüM|î¡+u[Íhop JcTnF& + â™B2tæ_ÿ¾²ÆI«ÈD÷D³MC‰‰»¦`J„ۊیϟeVïꥬ~ÕÉïÐ:àö ½ÅHþËΊñlÙ:¼­5øÄʇý +02¾xÚ +endstream endobj 856 0 obj <> endobj 857 0 obj <>stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream endobj 860 0 obj <>stream +H‰lWËŽ$¹ ¼×WäTŽ(‰uÝYØ' øà³Ñ^Û‡žÖ ,0*«¦g.]M¦Dñ QŸ>ÿ½oå´ãøãí·Û§¿BñŸ?nå(Ç°zÌUÿýzû÷íÓ/ïÿ|ûõ_¿üü—ãÓß>—㧟?·ßoÍâ¬Q±º®vN‹£ÕÎÿ8~»Áêô´ûûamÚá1ÏecµÅÙbÄñöEÇáï9«÷r†­£%æqogÔ8úYæ:îýŒŽõ·~â´ãîgñ…o½…æþÜÂH«42Ê:ììsw;§‡œy»ÝG9 LŽzÎpáîë¬Ø:Ú¹Nô€¥ 8z?þÄ÷yÎ1©h­ã»Ÿk¹ÄÇW|·³­uŒ~.¸ó~»wlÀ±cœŽ@¨ð&§‚ ÂΊµ™„{mà§Ó@­Æ›Ÿ:o"±ª=oÈÈ{…yyÙì]¶[=[‡mã‚o—§é6ƒ_£ÈÙ–á" aôe©"…Ć^–FE+øÞëÈÒ^Žè»Ÿé(ðRÁ25?ÖQFÍꢢ²Èf‰ËÀŸJ¿5ùÛôpÞvðëí¿7”/¼}©>(<2xTΨBÓøuL€±/ +XùvƒIÄÉF=RÀ.³~ ŠÜ¤u ¡@3Á¥¨¡/£àó@ýÜ™m? ëÄ`}Nd¼w +P`E†JÅB…BA¹¹È[éÇáøŸmóvƒ¡vVÖl¦Ó«šÎKþ2ñºƒù6'Èbgè¤ +wpÄi:þ£Æ +Ç íU lþN´O—lÀ T‘€9µÃMµÃš¥=ðŠ§ÂƤe+\6JqɵNÙ€Õ0í#OuT„r˜ý$€ {¬4ØyŽî4ÔÝÊé §QŽ<ݱɽ¦oÕÐ[®XŽÀ¹8—B4‡ùPî+QTöì@ÐK+éâEŽ©„:@aL4€¼ˆKn¢Ôæ³]ßá 5Gî¨F®"Ná…J>$—W ØÁb’ä,¡ô ®Pz BY„¾4í…Œ©3:.YEÅ5¤ËŠ«„é•Y¨k¦ßYÂÁ3×Räó4o{‡+{ˆ£±åAÚ‹g°ÝЂ †AÑ+PŸ`€&¬+4sš4•ÖÙ%&“÷¿jAéCï (,‰Ê˜¢]ýEd^¼K‚Vjî àë)7ž¹QϪäÆØê… rY™‰”F@‘;[Vh.a ôØ™yhZ’'ñƒz,^S JìmÚD«¸)Pt|ºoØ/K¸Ê3(£âÄìwÝk\¡J¢>†,#ÎEœd ©A!7Õ«3ëÁ&½:p¹Ê)v¡¹Íì4ç‘h¯Ü_ub€--6fòlóBåêi0,ºÈ†µjW€åž¢˜QA¾þr$0Åž!}.˜«&¹õÊ\iâ±€Øb³äB KÄ^ß\Š¬9d6Ää%g‡çŽÔ  pmÜÕ¾ÁÂL´V­W;sŠC­Õ8†@n<êÑj¾‘ ±CmÙF`êd‚l“7/dSš®¹#J’Îl¸:Ÿ€½ÀD¸ÃæÝGn`9ëÞ1XÅ°òDO"›% ãdBð=2\õÊ*Y .¬ìPhhšÊÄ,Ü7tw‚9À5”ƒ\'çL›)¶F²OÉpв W›l4†ùPSÛ>•ß Ç}(%иVLM+ ΰ]&Æ*yÓ¨ÞL´C³ˆ”w°‘êZ– 6Øh°š€]üg“ ;’€è¡.'v VУÌÀöZ{H§Cª+רW ˜Ë_7 ï>hmè¬ì‹ÊÏ̲S¡6‚­¬=¸û{½â§ ·Y(@H¼º¦ëºÑžœ ”wkBFª®½¯¹FÌ6-!EEfØ«âW+`GViÖä® ÷ËŽV,uWÕ$ËÃAd%ê˦KÁ±Úu¸l¬ÉV °‹¤5–PÈà Ù©R‰óÊçÁ3?ŸµŸ§Ú„Hì„ÅÉœK8, S× eÝ”Y­Á÷Ešˆä÷Á¦™·ÜØdYøÆa*pûä´#3=ÁžŠÙÔ©cÜ$Ž~<°Ø¡ )[Vi™BO+–£à˜¸•1>¦½‡{ù°Ñv#hÚˆìD¶ÓbBö«å2Ì™åò&Mó!£¤JÔ­È;7ä#ŽZchÍ͹žÓ~rGY±(Ë^ñöéòË|ûUÇËhµS’#a¯—QŽœÊI'íì Õ=®é½õŒ]O,å!_Ÿ B,šÜ0í–ºO ÏGYÛÇô©êñýæɧ…ãß5M8LÀèà[+5ÜÃ* ®¯ºŽ—Jµtﻋ€o1òC}€Ú×Ûàø`êÀÿ®5>¶Ï:ìµ E½?ìÓü]¯÷í½&9Ⱦ#öÕŸs£į[Š`@¿b—«&;ËÍÕt¼²% ©+ƒ])Þу²Ï×É–wöÔ\ + Éte<ïâ’©Ñ þXPó»,À™á¯61¢ðñûíª0¤.Æäa˜ +òâÐ,J¨× …‰ˆC|½`rm+±T1õ̤zšlµ»hšSW> ´·1×ÐŽì`ÈSÑ•ºé[‡ÞôPq¶$§XüÒÅ=þsÔ†«ïÒ8@G¾¥œ—&çüGxkØÊÈm<ˆa˜íMis®{EÓ} Ïíw œ‡^"£é‰Âxdê~eüp߬°„B+žÊÆ°TìœO[Žw¦§$bÃKmb„aÍ¡2_«îi`xä{«§}äÔ_Ø­qR¸dà{¥,1ÑVÏk™ÈhzçTÌΪß|l7DDzó{Í3Jί×p Œ³¨—rÆ+©‡ƒâ¼‚ *LýТ±B€›PA‚Rwâ—iÄèfv™С†'0Îf{gÝà£)?›Í©È‘´é"ãžš¤ñ ¿÷gä ÇK%U‘|‡qÑdá9P‚úMÿ€CúsâPx#ïÖªÇë]QÇó»OÑë5¶’D¶—œZÙi ÝÚ^NE‘¬_äøv+{ŠÏÎÀýɯÈoà=µ®‡\Þcè­™s}/ìtï%ùžš’o€ºÕ®6à)j×س&;Vw¿P§MÛÖ }7t7¦§&Åâë¶ç¤¤9²@PÕ˜‘P–°Ë²“].køh-®Î×ê(ÖÔ‹Lõås—ô¼?FÕ®gI¢å3È,Ÿ’AôûM–/èØ„Ê6é|ë@U‚·’ òQDëÐèõƒ*8›­YEˆžô.Þn-}ݯ/76ÖL¶ïx 04rØEª¹gÆd{¬OùýÆšä…vc0‰ÇUY·ñ2{äÿŸì*Ç®$ǾN¡ t=.àv9mô¸}þ‰ÌŸUmI‰Ï Dä Òî%±ÏC@ Nš5†9÷Å3/$ ¸€ƒ;Ç»»±hKH3òŒy•bvàeÒû£Ñ8=PÔöÓó²Î¢=Éø#7¤~0ÜüTÙÿÄÑ£ž—º_’~Ü*ä¢ÇËÑZAZÙênv”HWÞ:P_9äk OÛÓ›èÆ-+ r)maýe·ÅåZ5¸¸[n&At{;TY •hkðQ »)’!5EM¨Z=dâ-ÈĶS]†L£Ø¥ájt·­]Û&7Åó¾Ú|%«…µçqm¸Ô>¿;»–¦æá%¨ëîãeÿx&RÛqåTày‡ºK͹-î.ài•Æšf¿×Ï­·&–,47ñ‚kzW•­p#4kªA”VÎYâõ+öŒlñæ£Ó ÕT°0-µ²„ái]Á)nßûÁñHŒÁEßE¤ ¡Ü3°LD–¼B ÕMoÝÏ`¹X;BŸm öXïäÙ +pŠ,mêT!ptç Kr g©G¶Œ€â”|3°þœc[Ör¦ßõu|[d‚M”iê$˜rõá„,!oÚ[+±÷o„‚P)¶™åxȘæŠé,R¡öcRó:=]m—# È1ÿy¬d.QÌ`λÞïÒР֧&a•QÒ`‘·þ 6Ÿ"  ¶3ñ"Mê>)@h¿nàâ{Åk Š¢R½±S¸`³’òpF4:ȵôe 7 o·lÅ­ = Š¾GïG±¦?€IŒ²/û9_Yñ(ªB¦8K@åùä~ôNösM‘SÍÐ?æ®BH {·%Òý¤¯³íºößurIlQ I“ÂTúþýaDžiÞ9“}.Êçl ¾(Ëtoæ&ـ몤«;Tz¼Ç ÓJ-< ^°Çx´bi”ö²ñáÖdr7ÙÇîó72æ)•S‹‹]’” ÀÔçp@%Jr°ËTté׶)é<6å ý¥;6mGËÍ2c@NÓg#ªqR‚€<¸t>Ä–‹0âÉM@þ ç›ûþÈ‹þý™ŒâÚÚxNÐSê[nóó¶fRÕ²o64É{1¾qMb¸û"?_ÛnŠ5ß¿—‘žÕw¿îí lŒÜZÏS¡j)Qø:Ë(”5ÐEÃY?_ì1ïQßc!Ø ¹nÂG›ú"cý|åMÀn ol3fÅ1ïXý|áY×çǤû!»âï²!ÁWQèwÅ¢À©ôÝë¡C~*aÀt'³½ní*MŸŽºÁ4 Q‘OðÒÝž6R~ñY*«$S¶{àC° I…ÎMõ4ÜdRÑ!SxZö†É4_˧½ÀqË +Š[ü9 ÒÅídÖ n@JEaMr6,r>x È-EQ§+wѳ¼ö¿u^mñák0eÁêŠ-B‰f¥¨ðBþÆåH¿H߈AÌ%\E* jfû14ä¨5_M·0¤¿ZŠ- íFm“ÙêK1qºIåÁÃOPW¥©¬RáèzéÎÚv%<èqSWNÄçÒYFømÌ£×nñ¤ü­R}@½JQ"ƒý„©F ¢!…‰üz„Áf£*UYƒ¯ü´™°Ñ)ùõóò`ó›ŠPµ Óð[ +QFHóò˜|œ”x¤Ü,àe\˜‚éܽ^¨ßÁfW|ƒ¤°ð +ƒT7¿Ó;‚¨\ìmB˜tGóeUÿæcI@'J'ŽA/ÑlÌ(UÐBg¹Bë@ì´„NÀ«HÝ9,+v¢ú†ær³Û×â;{0€XJ>HØò> ZÞŒF\û—š-X÷’v‰&‘7äŠÀŽê1ê)—ÞFÖ´"±¯SQ‘"Â"¦í•²CêUµ{i#ê“Ž0½m‡št+¨<¸–FûËÀ´¦oòéQö(%˜’³ÅŒšm–´¯B—Ón};É“àSƒP/‡¶­2ÜFnÔÕí]Ù‡ýùú„6 Üå^@s:`DÝ*]H(Ö$é)GX»(m?þGËÎP3p¶yá¹~W77VRê—¦JHZÃ>llµ¥\¾Í´òÃ= 0•˜µ2òÌeöïÏònQhí×2þ Iö(ƒÐì|eh°ÑÐý¡ÉUk òÆÎî©ž{¬+ËD×AD¡ñÔS•;­ÌVv‚œ\«aÓ&zÌ¥p?Ž´ì‰fOØÑe…òz#`9Ý‘®Üµ"|ç¼´ÍÅUK¬¯’ó¶Ñ ²iм„=@Õ{îwDdª¾œ7м‡MMTdèêtr¡<Ž’‹úÛIXl_5ÊšƒmxýŒB„Žu4pq¨€7P³ö×Ȇ‘žðYfyušG8]`êÛŒQºË²å¨Ð…ÞCÔYPz6¾tjÓ‘Ömä>1<–²¿ñ ê2ÂþcS¥Úo£ØïñôQ%é(Uw€O¶’›U?“0r„sÌ£)1à•DDh^ÄZEr_è§eÕk¹à4ëðê$Ú#ϬIÈ]!BÊÄa󀱨[õ,å_sð‚tì‡ÒxWb×A‰‰(¨› +333,$"ÓÛLJtq!LËät::üL}ÇÆYÐóx/`â‡W³ïuíý`0ÛSËô]«5q U Ú4U„ +Î"؆Æ0¨í›¶Ö}0-:ów${é<àÅ´«<ç˨½z½îðˆ'B³j¿QœEèÝt)—Fq¨ú›¢%0²Zé·…¸'ç¹"¾P‘î§ðn÷‘È +7WGЄ”lò]t +iI› +suìËö7‹=†þªÃуÓÜay¬“—âºPÒ+çÝ +á7ZŠúoGù©ƒÔ«HÝd,Y©DîÛ [­FÕã:U+™×˜i¶“GÂg¸%µ½éé°%±R¤§Œè +Mx¹¼áû 1ÂvIùÌ£~ìß™¶ßÓÅ4Lù"¬õ’úæ—לãbi…·+Xª]_ ÅŸèÜ}ÙÄ*d@¸ø\}£ +!£’`ÓJ« déÕo²4§«B%N lZëmtÒýK¢qd Â¯_KÁ9PS›>ú6¤8ÔGã•ûÑ€GðBóâa¡x¨ Õ%¸ñš(¶NOåÌ^¯ß…¤k«J…zÜ*,úG +'cm +ºM1¢š´5¡Qáœ(Î'¿ƒÄ”C:2Å¡*…S©…ãTDC:í ”ëÎïZ±¤eçX7VsŠ4Ø ªŽ¼jTñç-=Ï(°ÉÃN]*›ÕKaü©%Øím¨4WE_®ã4cªµ¢̬¤*]ñ…IÕ_Wx[M†§’Bж¡0Ùûé„”Ýuû­Cn7ôxXÄm³¦Q­åKZù‹dQ`1[Ë®¬Z !”%óùãÃÔýè1¸ôÌPR3âíÕüÑîqEËIPU´™Z&s ±³é2(œÄ¦†g™ôèöx…7ÒÈVŒçzVlÀû¯˜P2½ rˆjdÝ€ª%MÀUönU{ó|Â[\É‚xT*°”-çDZmÆÌFv@jhÆ‚Üÿ1]û¢ÆÎm`ƒdÊ :=^=ð=7Gâ‡Èz5>}šÌÃÙ>ÜÊU†Î†° ½&v +å`a«v³>Eµè³~ΤŠâ”jØêC¨‹ÙHœÖ¢©^8Ož-70È‘6‹ÌÉ1nÅqBI¡–mŠWÔ2nå×m­_{ÆXHÙßÇäbþzc†v}¾¡$’L< lÍà ìòÌ€eµ"›“ûÀÏ‘ÑYû;R ¾–ÉÀx™†Õ†Ï8ÒçÖxVHàòWcÛFS¾QoüÊŸ´€õ£jŠfÔx£®ç9oˆ(|ÍìR*#‚”Gde×7ãÝ×ýFÉþjT؆‹³âŸŠà{@Y®l‹KQL¹ÆQPPOV÷. Dú¥gÎWY0æ®\è“‘†HZÔ±¶9Ê’H ZæŽ3Í€Km1VHb«Aƒ !ý¬fA²ä¬±Ñ8Y{î0%ÝÇéçÁa/úŽñÏéÿá!ÄgBtJ]RnÕ7ÄÙÚêõÀ¯çqºËNý›N‘%_Nú·MÒ—‘Óv–­'b¾†JhÆuPõ"ñ½£‰NÅëPmF|\ZacúŒ±Î'b¦^)bÃÝÉ›Ô{÷§V™œ;"JýñÓ:€t‰ïõóY¯ˆ–@sÊfèæ’m¬.Å:¥@iBÍ/n­ùAULø4"©ô—xRIÖëIK½¡ùìa•½”h\\'›ç}vÄ[ÈIn>¬‹Z+£Í«1S³¦þ¶æh>‹!o1”¾,­6¦Ó§ •ü­ˆ„15> Ë£–„93B›èn!¢æDôϱâí‚‘Èîd“—%ar$…Ä5Q?Ѽ@$òcžÄMë­ ô´·Išg}ì Z]á‚·ÔíG?®cx +Ž7`õ¨Ùö¾å)aN\ë{Ñw4Ð6šÊ@؆ެֱ‡Ö¢RTÒƒtÖ â°¸<|¡¿Fî=q-ãXµ"øÒ$¥ª¿˜­Üâ»E›?…XÌ{¡Ž )|µçs ˇe©Äûö_ZW°á"sR ;úðþ¦ôÄ*ë•kɹ=h ¾´’Ä2Hñ±öl¶ls¤¶ N$bÜ@`<×’-ÇÃt€’ò3ñýÞ’®ŠIš— sFøÑù¸Ü–]xÍתQŸw%*8Õ°èã5‡z:CVDÉÕ2´¶¯²‚ñÏðÏGA3¾KY/ŸbÖ×Eu ‹ owgGqQœ‘L#7sö]V8ÕÂS±ØôÓ¬^ȇ«Qè‡/à¶J¸ëÍNB'}çÏG „€­!exJ‹~LʼnEY&gåâ¾Uÿ#.ul½¾NI›ÅÞªmÝûÏ ŠÅÐÎŸè‰ âû·Ûú :¡PB÷W iGa©J™FS¸”B)ïRé+–¶RPqÒbzEhÓ†>²Ü<ΚPRº™ÝhcýÉÒÖšl™ËÑæ]}_Š1ü“•çÛäH{«Ùƒ2ج +€iö=|¶¤Ý´¼ŽHüR}äV|[/ŽûcB*nó6nl5K#`/3ΑêWtÁÈFOßÛÄœ@3;bàé4¼“5pÎÞNÐ]\ÃdŠ¡›Ñ6/ ±1ü†|"êZ§rà¡öüfŒÈ#ˆÊq&R½Ú¨(–´“³@8¬^U”„È`!aÙ¶HçÚTM²dÓëm]÷ˆ<4ËâBŒUAˆ˜{(Ò‡_?wÐUæ’Á´x9”D LŸMË›z_ÍšëéFy¥ârøqŠÇ +' +R…¡{Ç×ÔŸ*?0Oæ.Ý—à¥ÅëX°Îx††‰¡þß„Q:Q"¥‚%½ô~Ý­ÐÂ~}üËqüP¼R„ÐH€Ž¡Ï²uãiÝ+P ‘?½D²câìH*”qÑx +oeà™ûª‰Ì¡FüJxS¯çRД۪œ‚Ÿ+¨*SrYBw:ƒóµ‘z%Mµ|++j?äô)ð <’k©™Ðq_9ÈXÑ„ +ë¶2é9M …3( }ŸfXWŸ6‡ï¿çøïg¹7>Sß1•x`ùvŽ.•iôÒ,­Ü,Áô·òhª¢9Ï”'ÊŒ‰êh0¡Ì{¢Æ·97ŠuÍ#aá5&š[K+&gXÃýüë¥îVÒ¢zM/gÅÍ +Ä“_ÒOÄùjaÛ^/ ‡Êÿd—Kn9„÷:…. ƒï$1g00+{1}û‰/’¥_v£¶ŠU‘•ï× +3mí·¥jK§—0/[5vSÖÌ ¢…zú³‘µjkFK¼Û…ݹ\÷±¥Øc<;Õ³]àf(>o‘Ùîcÿ¹ðú¢\Y¶SZиrªÐ)_Ò­jçºNÝ@ “Õ,)@hÇîxdß,¡Séº[?3ÇVå·m‘ÛÞ}]ÙG}¨a/*bÃ)"’/+9‘­Yªñx˜*¿åOè¾æSÓÑ „fM4J_GÍ‹¸¤X.ø4X·ÌèݲR,4°>¨·åoÓ|¨•ðxá­ú}~ÎD0ÓhP‰Ý]-›qHõÉ*(\9ÑøÑïá5‡ï&ÁD®¬8ÉÛ qäZˆ,˜2ñ¬¡Mnk÷£†M“µ•ûG7 f3úr¹¼²Üelê"‹íÎ.7ëö›~ŽÓ¾6óþRÓ“$¼o>¬h+Îû«#+Ý“IçsÒœ’ÌïoK÷>½}®»ÄF­6Q¯w‹îK™¹P†'">nßèÀÄ­Í?NÂIØKþÒ‹ÁUÕ†fÎI¦4’1ì<,‚Zæ·{6 $þ„¼#0–ga]– #FÇœ¼Ø î~ø2›$#ñ©Í S"˜.Åû¿j%Õ»±–$à7f⸑µ—š)7Öì"‰ð†Ý§»?ßæ›·¹¿Þž7Þ™ÀÀ×ûûÄÍžsÁUìHt×ç›]Ïp¯N1Ý“g|_[§Ê›€„–rØîo9U½&lø»b›òdéõ黶i~«ïÍ9º>øä¡ÒÄ Gž\:¬D6n íñýZé×Ê努(ý" Ĭ/ê?vOjéÎ+,d;ÕéáûϺ*ÎQöÉqÌëêäï¯<&Þ-*ˆ.m|-aÍ9‘éÓž6òy‡±1¹¬ÁÄ\›ó†lo³yŸÎŠÝo…ðwq$šT,°ì¯PÛ¦Õ)ÔÐÓíK,¹S-v²æ»ªÁ,g·©Ê©Ô;³Ä®šÆM 5dð–ÂaItÇIo/ȹ„ž¯K0ò\bîËñó¦Q‚Ûäç´‹Øg¹êy³Ì½üùö þ.èK ì¶7æ}¥™•­•ã 4‚Xµ¿õL¨®ÃCø%?Ó²˜sý¿&\›ùZ ¶9bí¢³U8Û ÜÄFòĸ+º“R8ð _O'ÖÕJA!,HmÇeŽ}ýg5 ^žL$+—¼ÀùTá$¨»ì¯TT&B¸Åyày37h$ÞL{¿œ‰"G܃è ÅQ›«¹*óKä«á°N¥!Æ“¬£ü˜Þ*†õ$ÓÐÁm°¢xÙÒ~8󯳾ý÷í?oÿ{¯ïEÿU}®ÌÎÔ+ºÊ1D¿ñÓo¥…뇽_Í\¦®¬pÞØiZ–ÖUoÊw!êqÇv•Cäžz‚8¾qa_œ€Q{‘ôÙ,«Ëí ÆDkÃôogC©A°TѤ§Z¼S€úß„gµT‡d¢Åh}83ZŸ42¡vúߦºéØ£*5K¤mpžð°Ê¾õ-H¬šªpÊ|¥¤¦CÜXQ탰`[–m%=DÁx\Õ·ºÖˬŽ˜ Ø!Pª%×H¸ý@NRæF” KëÍ9O:J 2M®0žvè°€uE ð¸^ÓÃgîf¸Í?ôdm^ Çýoíªð8WY)›üªÁ°îça/èq Ê>„ H§©Z©ýZ“N õçÄ ¸pú—V}z“ÍËfIN¸:=M¤¸3<)—‹\ŠfîÖRêžr…{$…H!du¶~Åb5p$›„åíÁ^[¡„sÖ¢& Sƒ¾lRUÄ©ç-{d6Åžp]#±Y2ìaZ¡ËwTk§‡“šý…CFìØh[øÚj!šn׸X“4Ãfµ¸–Ã2î#Ib_+bØz©>½ËðÇ'Vݯ%çœô‚0DGæ¤$´jâ»äü¾•ò\™ þXð4¯Õð9{8ñ ‚ŒüõšÃ†‰ƒ•ä&ñ›àÐcc|+”xGfåxúº=¼¦­$áâÃè½o­œ +¾Õ¡Æ<7W5j~fÆ&ÇÄó¼E…YôJ¹¶šä09¶%Kt°­Í÷®æáD‚ÆkMåú/]ïfWrpðËq4ýKM­¥«Žx ¿KØO¿µÅõ˜ƒÉ"kzVÙí½,”Ç®Bò´3aïdŠð Τg~Kš6ÌZÐNNO†°yǵ_Ô¤1¶v a;½ˆý²Ùqüуpc#:jr†–º]ãíÑ/?µ,jq89<¤¸ˆ¶DœÃ-Tº¿½ZÄf§¢SPW}¤šždRžÀ¶3*êãd˜ðÊÈÿ5jŒ@MSÀ>˜&MŸþŠh‰‡»iU×é„ìb°J7ËðWr‘¦;½¿Hå¤t5ó5=*lÿ¤nw”}‚gć?Fdû›ü~´ s0käÒÉ”ªS¾R†N˜/ZmÂf½ +*àšÉ´}8l‘m}>yT“_ËÉŸ¸\—‘5pÚËnÙ.§J 5A9?{Žgµ2¬î¹¢ãišöÚ ‰yÒOf¾îe5ý4GøFéàà<ƒ‘WÉô¹ÍPÛ“ORãš“Zª]ƒþ°s©€´T¨4!œ´ºüˆäjÑÛÖ±ßa3ëÙixýº¾û^–C^ ’ß×Ì}-Ř/GÙ4›^~˜^P+kºÐ’4 ¤—ž +£¼ ìí\°£«P{|=Ÿ]5õŶqJWÎà¦B ô¢5ì}älDË~ªX~{ÅöÃ+ô@~¤NCbûEÒ¤´Î…ÚäÝ ªìiwq¨É0mg'eAž‡ÚóQLãt*˜@¦-,ì$ãÃIÔ¾ÝÒmë“9£y˜9³Mp!‚F6.“c䶣N5zöÉßçLñcÔ×ã„‘“/7ÇëG_ÛTKÃÃygMtVÍë6FÅd,lÙÔ‹aM½PdOäEš-ýÒ ?MD½)IG·r^Ñ"9€â±=®1vnB9¨æË:ç-Ÿ¾¥úاæéµ;i„r6÷¤ç¤H%Õ@ÞÛ2íqLb§rœ~¦R5aÝ-à™]Ó>9äʬ"N~P½P7)¼€³yæ«Pó¦Ôׂi¡{ò¡rÚN/$s²sÅ u’F¸ÆÅPk%×½tBe ›++BÙiܘ)O3op¨úÞi’—?ÙukŽ[ëξÝ-ŸT@ AæŽðÎ8Uò]ÅŽ.}¥9ˈ£ —;tF›îÇ@Þ9ûù}ÎÂeú{?ßz¿¬eI®N­Ô¼Þ²Úk`˜[,{äeÇÜ$Ÿ±ÌaÂF¬azaY’‚8±`¤ïtwÌAÉnD¿ã&Hæ¸!‹WϨùÈF©²IVÏì?ÇÂNœpµÛ O‰ÌM+gµ§~8žA[n0K+ט +½N•´ñix%aV“Õ 3Ù´0¡4g“AxšÊÆ5m¤"wn±@¿2ò~‘[Xt†¬ëâÍ•åz|Îzx9Ž¡¾&ʼ™¨»úíÙï e¥ßk,ï sÍüîí«VS§ã̦«Å•Â¶w)€=\“â[všIàú²Ë¥·ŽãˆÂûù³tמ~woÙ$@‚È2ÚrLɈd0пÏùNõ%ik%ÝæôLwÕ©óxhõÖ4…µdª/–)¹ØT7 Ö}¸¾mV?¡©Eô",Öк̣Øs>qqˆî0€|r-ê ‘téu¦ªû“yK‰£6#h<9_0íø1¯º¬¡$xè·.·Î·8¿5Ñ9¢ðd½vþ~tâÄ(Ò+±]i¶^:% +,|jŠ…ópq~dšÔíÌ!X麿[ýû‚¯¹œZ6š&qbü6~†æçùÔº›ÃðêäkF½x"éb_2ŸŽ +‹¿”2“«;A=j3¦Nß…4µj`3õª¡z™¦g@%±Ð!“”;é§Ãê¡cĽR范ÐrPr§X”¡œ ö6‡ËÕY5¢+F¥ÏìiDíu©! qœ‹øn­¼5™‹]e!Alðt$0b‚Õ/:éLÍT8i.•' +Eÿ4ySèÇc‡'€§é§Nî…]EUIâàaÌìB*ìØCÓÄM©îÚÒ±¨nåÒŠDÔbÂÆ\QÚdj'‹r9-鵂nš;>”¤ÿˆ©‰¢åŽ>¬Md: ¨–$§mdò[,Þ°DyKñ¬ì[az¦ÚfªC¹¯"¤ Ž, +k° b…ƒÈ®ì}åéÀ½%ü;8T‘b+0È&Ÿý‘ÎÁeҵũ /-RW7€°w7®·¤‚qÛÍçØwß–œf(ìÀýÃõmØÉõ—§À‘à~1Á¦© " `®Ä$©Ï6”qj|îâ#Ç+AP„ö•¨á6¹?"õŒ}Qä 7§¯d›ù^È&Ü>Çú¯°¨0¦:ãûÌÎX¶¸ŠjØ,Œ¬Øà`ðpP³ªªTÿ,p,$ãi„6è®ìèbetæ£<:9_Õ÷qr÷¥'oC?µMwÐã&Ûen‘X57V³`ý‚ôT +È$3E®Q‡]›8¬êÂð;¡Ø•ýŽ:Ü‘›`“!‹:öÍ‹w¸Ýz«Ùd™íoÀ]1HkÙUZ&T—IŽoÌzÃC¦4·Oµ"ùAl2*sgŽ1®ê*-`ëHáùUyœ˜—ŠÚõôÚ uO¶‡m(•$ V,I–”:RÉJ¤ÃæÜ$š6ù¬næ¢.>µÈ.ó~I°?*i ÂW4…Ã]n¦§ds’¨Wùèuþ‰AÒJ'ß|ðR¯îpñS/TÏBjÁä÷çMÕ¤ääÂ…/šžÎ×ôŽOßçõP!µ?a]SE~¡ ™’3YtLg<Š]KÀøNØ Èá>š)¶Ýlj¨ºHDÇŽM÷÷Ѓ+Ÿ/ˆU ¥ â…Ãe[oÅP(þ~ í¹Ï¤ÃL f$"Ý‚ø€Kêø)¡ö”§áI¤ÚL‹Šæ¯"‹I³]ˆXäÂ`ZY¡1ÒFumzS7fÜ‚©Û•+…ˈð_V®þÕµÑüDÆ‚è‰2™1V*fN Q8ˆ)FÐœ{Gín«Ð[Štþ]l6R2{nŸ­ã2—•€>œ%À jÁK˜Xÿ´R›¡vüÖðth¦Kzj¡Yd€V¦¯BXì5‚¯ˆD7,vÚåÏ°¡U,•ÕªNUä¹4š¦-¥hÐÒ¤£‰KØäH`†ó„#‹ÕT¢O•ì¡ÇJ' ¬ŸŠ&!'Ë°¡Òs\ஈ÷B(hiŠGðJðÕ¨1%òê6$]1ψ‰ö‘<6©Û»]6£ÏÞ5}KÔÂMª¡ªÝ=j¯ø~F¦Yú²=쎡Ÿþ:Ô9-4Ȝ꥾_$ø$“ûaaIšwû¡ŠÛ;òñŠýDƒ|KJ­®€™nYº{Í ´áò‰¹zŒÍ§Kjže,eþ”é9Љl¿®<DªË¢&D`}Ë‚d»¦•óN³p›ôñv¾TðØÓÿ£4£­VììA°ìNB¹Å™•ŠBcØrp+ùÂï•¥©v,aýrA³mH´]aöÏßüìÍX|»D¥q5#ùC*ˆ•PD•ymý/öÞ‡Å×Y+/·ZÕè#auµÝ‰¼mkè:Zc߀ì|§o[i°:þ¼·àDêT/.Rᬾ—öf1{9Nœñ—wú%˜D–j'†yÐÑQûæz“"œa$¤Žf:v#Üën d¨I”GæË ò—³ñu °ï|P y´gÉÁqÈ +Îð†EÌ +²¹ÿ ¨§h¤v½TÑ=Srì™Ã ·ì­XÊ:T‡Â*Ì]aÜÔ +:zóœE¤ÊLní¡>‚&ö$›ž‚~DkyÇHâËI¾ä²pÝCè]O;í’Ý“4ˆW/šƒ´–„ý +9i¡·ýLNa¨¨|¥©ù}qm‰;Úˆ»Gjä–­fÎœ²'‡›]s' "sŠšÕÃ…ÉG­µçĺLgÊMOò ü!x¹ÛšÞúÇÀôÅÛ 5  šÁ2Îh«îŠƒ·h¦DÏäV^»¢’‹¿³KÜè†Ê§|£aÆæ™B4{–æÄu°sbI]âíÊ{(‹¢,ëð‹Eòh¯ië’îÒâĒʶ\.•˜ñG]™S*¼ò´Ì„Úû¾{;;û«)}>™ÃKiŇ£ƒßðø\”ÆφX^o`þ=F=Éj^RWwzµÓâ*Y}§ƒÅsü:M $ÔÁ9Æ«0òxñ%ŽÒ‚Rý% ðRãséîRäËÖýÈ ¡?5cÏé \!ÍLB'xÆÃRugÑ€GN“QtÀ^ F™½Ò8Œ‡Æœ,®,ê2†þâbÔX¼©SF‚Öch'\ê|!«§6cŠ¼)W“·n+}±Õe©ôjGoIÏ0v+ŠS`‚¤ëÜ]T“jÚ,]²(—¨ãSÚîHñÚ%´Ü4äá Škòb¨^Ï$ùØ9]]ôÎÝÄ)dC†á48 +uooȶ$ó øà›8Y˜¼>ƒ 6ÍìxfO¿ÂçeÑœ ^œªMÌ ¾ÁÓ¶äXèBßÐm÷&†½Á¿"·mkîw½S=´mƒRf º_4îÍPÔä.¨ÖÃ3¹çä«Áy>~8þ~|ÿ×?úç¿Çu^'çûéñøçùñøãÑÎóó»Çwé_י·A]„þðîXO6ñ/HU× /Y2òðáøæ/ÏOg?ÿðð¿ü||÷ç¤óÇÏúóOþ÷ŸÏÿýôëûó—_ß?~:ÿöé—wŸ??~fMû£|ð¿éû‡ÿ3_5ÍãFôîªüžRP*âŸ$}IÕÚÉÔ¦j§6–“¼9Ð$FbV"’òØÿ>%a-Êw4> Xݯ_ÃÝw7³(¸™áŸÁìæ|’Á§@?WÜv’à“Ç,¶!pOœjvô ‡zŸ÷* ¾ÓÊùG ¶þ²W ™ +p¿¸"··wAVÁL盦ì^ŒÑÕMp§?ÖÍÊî`Ž•·x ‘à€•Þ™hçÌÎHоdΛ^Yo¬;ýÕM/Æ•¢&SÅHH'`eMþsÿw‡fÿKä–¥»U€…ŒØÅ¢@}¼’Âзآ‹0¨¦ýóMlóÜ9ϸu½gŽ(ÉÇÔÔÿtã<”ìàþöêá-è&SA |æ4æC‹¤ºƒÊ ¹ˆƒ«@(´Ü~ð¦®:]uípŒšý¤ÛFÛ­"o+‰îä“ؽè6”{å„'?ÕÅf©­ÙæõÚYæ4f¬ÿ‹£”Oys‚}$õçHìG[TÕå_¸Ðß/ø/Nx Ÿ·à‚%Rn6€Öú#I “¡€2›%lEJî'èG‰nVíŸÍ´Ð¿D<®Ê®¬«Ö,X<1<>6ú©Ììú DQX”Bk%QrT”²o‚è(ü¢°¥a"‘ÄÐu0âËJ†Q(z8ÑñQÓ¯ ¢ÉÐŒ\;{?I"Ò è"’ÙgeŸ­}®½õf‚”ð~‘Ûç‹}ïë¹÷¬ísãý¾ó~ùhŸ¥}.=»ó¾xí¥›=¥I·ÌÔ\Næu]l­'ÝT.Ì<[÷éšå ·‚¶c¯uÎO64¯""à¨D‘¢_3ÙƆŠïâ '†n§?d[µcîïS¥›vQ®¯ít©ç ªU–¿Ø©ë"£^GFžŽŒÆêH•BÃÆ*àÒ´™âé6 +9ï³$>Šœ<@Žüº™;imëÅz™U˜æ:0¨xeø ïÞÿ çÊëÚ†'j¼{ÓJÈ?º!¯ÚÕ%¼v~œF1%‹S8®Ò‹Õþ/]ñO\Œwšø =‡®®öRÓ«´60±o&ÍÌò‚-Äï…nÜìQCÁêW;¨ìNÊÂÖ«Ú¥ÖÞßÛºL¸¶N¡pÇ/©8Üc4‘¿é¢ãš(ÐDÈÿ=ÜâPÍ*[A™€ÜªuËm¥ Íi§›•[E¦Hs¡YòÊè—l{Þú¾«G©Wp 3m$*òã¬i›GL¬.œ9wj³!ü"?Á'ÅBÁ½H’_>Áû}Ç€ì(9 +2YÅäÞêoEÙêjžÍu¾Xê•@®ÛH#e)“2Œ˜:±¿£‘£ õ\ÒA1§žØ46zYJ\Ujë5œÖJ‰~^/ë²ÛáY  +ð‹CÅàÓw€ï(p=¿Iz\¬Á,&wYõ«³ „ºòëÈyL@C!(„_ŒÓË0AÃåù`´þ‰ŽC«¡¥øY—9+¯A½y¯¯0ï 9'«¬êâ|ÀeJÉh@S&œËo±càôý}Îxˆ’xKÿšPJ‰î: ³1£" +)å< 1z(./§IÇCö;™Ó­²Í¢±?ï0òI‚SäýSSó‰¶øó×ø'Ål³6½Cj; ¯Ï@+¡Ÿ§y½zD¬W]»o,>•Ý¢´íDâº2c´:‡rí^v³ÝÇùL£BšaoS‰H}‡—h\ç"LÕØòtê†ÒAÂIÉ:¾Ü5髾À.9ÚIýkHû[°¦w³gß +Wð§ð„!2K?›ŽÎá”nÞG{ÜèQÜðêpŠÌê¼´Ê´¼UQZ;ÝE±êƒXùੱ!Ìáò<É0’iî…¥çÓi,[72I·4ý^WEß õZmmÚÚ'ÛÉ’ÛÛ;;öupdç¦Bñ8€ßBÄêÛ”¿1ÀzŽö¸²ã¸²!\ã®?/^Ú2w2˜’§6t†Muíl.Œ¶k& Ùäݦ¿‚ó1ŽÒ*J‚˜†‘H??§Çb<^ÏÇ^לÝÌ¢ oh8m^]½{•yk·LÝ–Ó(Œ´÷y ÝÖ´¶RŠ@¥Â%ê¯&SøN¦‚ÐÈzö×û«\ý‚!• +endstream endobj 861 0 obj <>stream +H‰\U PSg¾ä^@!¿—Æ 7Wŵ˜ILÙ­‹¤XyŠU^[Z‘1€Q ˜ðXQ·:¢”êê UAjÕâ[YTZÔQPD´>º”u;S¦¥£kMÏÅCgöîìvw2™?É=ç?ßù¾s¾È¹#“É„¤´´ùÉóô Ö‚2k‰-×ü¶µÔj˜g/°¼e/²¸#¦HA2i¢ñäEç‹ E0Ãlèñƒþ°- mòDoµ;hÓ[öâÕ[þòñÕÜPñµ9sLbŒÅžcÓV;K¬…N1±(×î(¶;Ì%V‹Qc + +ÄTw¼SLµ:­Ž2úë0ˆ6§hKf‹µÐìX)ÚóÄd[‘½du±UŒ‰ÍE–Yv‡h£¹ÎÒ§Íb3;lV§‘adôÅpžŒŸ’fªcð`^c˜ß*˜-cc;Ô3L<íœñ`<™Ï˜{2Y¼l…¬JöÙQz„xTx<ó4y~,÷“GË»áŠ%ŠnVÆæ°gÙgœŽ‹årw¹/Î+Ö«Ôë˜÷Dï­Þ‡½‡|ü}R}ª&(&,›ÐâËøføÖøø-ð+ôûÔï[¿çÊ åNå „ÿGþýª¹ªJU‡j(àÕ€œ€æ€^õ$µQ½V©¯J‡‚5ðŽ~§ÞBø€ +|v‚Š4:X*õòÇZ÷}~ì@™Å±®xå*aUiE³Âyx}ë^-L‹âIC¡³p­%(iùùö³{ÛºNë÷ñÿ¸ròâm탴¨Høfª1ggÑÉź–<iKO×FG5$ÞºqàÌQ,9™®k‚DœéþìÎ×ZT±E–¬-”X(Ã]4I}4dÙ™£ÙþÍ]ÍàƒWЂ2ö6NE}\ ¾"ƒÀÝû`ǵ¯‚Ú[ŠÏ«Z™œªKÉPL™ù;Tk¥„ñV`ýðê2¨V7‚€ióS驦X!—¯æ0èf8 ä¯y| -¿nª×ÕräL_éKßj! ú2NDmL,êа}uçz:šŠ2Rš±HÈ2°äoçØú”ä…z'6¹²ýï[tî¶am(£\Vrݲvñ(²´¿&E-‹ÛÇxØŽ3(¢7A/e`(‹ëÇ)(ê'àyÖ`@®v3b¤xÏKQ£Iü˜‚%ƒ«Æxð,9r{SË© Þ=+Ð{Öª¥) ßïïСðG6ò Õ>’Ú†Y Ï' dðmóš¼bݶ^W@ýKvZ]`V×S­ ”Bë<'’”!µð¼Åxfz®ÛŒi˜…1-ïéÈs»ý=Ì’5Œê…YÎ<§nKûÓ®û÷"Û½2C‡¿ÁnþqÓñËy~©ÉªxQ¬ŽH UW·ŽS#õJÖ$%x6цPêpñ"Ì/Åh/гû!ë&ØÁæx7³z2ÇaRéÊçK GȳzÈâß8ˆ“èä½{& åÞŠøD úÜo<ÐÛ©]ä%º[|dê2$Ý/¶päYÄšÜØ0-¡~‹¿¾ÿHGÇþ í+Ìfû‘y¶oò7wwõöîΈO¨HOJª¸Ø'Œ1º õ%BÆù9sxœ\ûpÙ?ƒ`Ý6H…¥ã€0tÓ…aóM8I‡Ô=ÍG›uµ6vÚúèhŒ,©8ü% ©‚þ›WoõÕ-~ãA_jMM+=þx|áÁJ½ˆî.Ù×è^\Ô°dXåÿþ¬ÜViã°ú(h6QR^U=¤Ÿ A¤´oázÛ;Û÷Û2s7,·¤ÛºL‘YaIÐZ@ÕÀuÖ·´ÈÐÉvŹ®†s]ZðžEÔ$¾Ž¾B G¶ƒ¡þG[ÕpÊ:ÕzêÚw©|5Ò—ž5r˜É½RÙ#H™,¦Œf+0ŽýU|-Ûwtä•5.Xù¹Ô^š +]Ä™Dº›Y:P‘G@þ(ójd{ñ¤ÛÇ®|­…àÙgÑGÀM,„Lá¿`oqÄ'äGêrØòšv­ÃžåˆÓ¥±Ê«•.©Õ¥n£·Ï§· T–‡ä©´Y*äZ zÌÁ‚b4b!¶¢(!å8L£CX4Z‹ßYXx + {÷;yÚ»/{šN9Rã’¶ºd—é¥ÉÔ‘.B9 i]Ôµÿ yùŒY:¬G×Í‚ÇÇáTå?”'ÏÐ-—ÅÒé;’Ú1íÙóý{ø%[2€î¡6Òs#}¸ÓmÏ•”Ök¿Ž ¤¯ý:flå°Ò5ëJ!lp©ÏЀB]¤ƒÚB­´•‡é 1 “ÓÐ7bM•,V }ç›/}®«eIE¢Kâ±rÊ£y阛žg _CÍåMˆûô«ñ]­QM]YØî¹`,Ê5)“èMÕ”q´­©ã«­‹] +"b*EE¬¹\¹!¬@¿›ŽËO*L¶™ƽ$ÙöIcî]+LÉjÿã_= ø¾Ò†ë?`÷z÷*«éψªÉ]±X­ZßÉ£ +HS'òÔ÷ú<˜% +·Áø}7Ly˜ä #Pٕ縠ª-GNk›JO}) +÷ö¸@=ˆ‡Œ{Ý]jìÌTÒ¾Xc>@Zÿp4m±6xMÒóÒ›»Är^ßGXfrPÙh3 +Œ®G`ÀÿY-^±8‡Fš§†ã>…G\»xÊ8Ôc/PžƒÅ¢´ £ßÅd¬ ̸ø®yUSI•fE¡t@YˆVàÿs K {;ÛxW%—Cü¤JNLJÏîÊR‚¨¤W*ÆžØë*æpf"’¹hb%³Ð³äÅ\÷Â=¨q–¹“g–GµBÈuiœšÉbD 9Qz¼~¯Øÿüqê;㵪ݖþ9½Ðeú{¿O5Ž <–8ÈfxKòRóMÕM-e©±ë-™±[Å·LœpöÕ”ØX?í»Çfÿx£ÑÖñ¹ˆ2íÞ¼ÛT”á‰S€¥.Ç~^ Çùº©ÿÄ™k¨·¸™… }:äý´u벎:Wq¤ã XºÛ^ô™ÍSe—ù;è„™fŸÔÓWP§³PX*Ôàu°óJçÁ`êE½²ƒƒƒ²;ÁK¤"ÅTûÖK|dmƒ©]\Û7QßP."Þ´:Qoˆ6ÏÇŠ*ô:©!-‚5‹ú¨@ãRšB?êFµ¿/Àx»ÆtS\ôÒlêŸ÷§ÝmÂ"Ä_Á;úÞ¼axW~,ÃCMeðr"5YIsb|y„aù£( +­4ªÍ¸ö†òóµ˜8†æ~ cúŸ…˜¯®ãaözAgР$ªEmÑîGqŽMg¼¸Gı|ÑöôøhÝÊŒ«×ôÍü×åüù’KŽK¢g²)k9¤ÿ»ÇŠ{ *ïi@”Bzûçœ%u¶ƒEEy¹Eâ¿ù‚Ô´üTÝ´å'냼ÖëìtÉ?þ†'<ü~*k¬gúÂD,‡&è‘êÕ±`+ß‘U¶VG'§ÓIÔ‡F:Þ‘§›«NVë Èróš0Q8™‘¹·h‹^HÛR´ÝV¦emùäÔÈ×nÂQÚÏ M´†6¢2ÚzÅQºŠ¾dÌX²lÙÖw0Ù=”¥ZÁ*»«²ñÃ鬪9{ªÌ.ºxŒg"ï\yvƲ¨¿D§ˆVÈdO†õæoa”Ï_ºÀ‚®Ç Æh?J¦FÀcéOP‡ìJ^µ}G^Áñ|î¡C¹%:ð>Öú^ºEEþYK»ìVšh©¼àXÞà[¯OS8x•Ð…ð'ÊxŽâßzÍY¥ß1PL™e#DÄj‚¨à‹‘嘅èãþ3Vh•#$W«kO7§Æˆ®ÑlÍÿj-éøÿ¬¾d\™j­Ä‘]·D·lµyUq“á}ÂƧ Eçò `=ö…Zùó›Ö–‡óÒMʶúòæœTÔ€ ôÇ—¾ ¸pBÎß=r«½òœ­87×Æf¾üíÛò·ëBã6D$±Ôß¼Å@%ÈÉó±ƒ7©÷qÿþi‡u:oh~KÄóoÀõm<=½_Æ¿š‹.¶TTijÕŸ)IÁ»‚ „tÐé„°ùÓæ5FÝKƆ5ÏùØž¯]dZ•ZwV,Ã/ÕE;ÏgT÷A¢ É÷¤Hez…'¨âPŒø¼º°°Vü‘Ïݶ5w«îÃm¥Mz8R¯c»…M +5?©“t¸Ëæä "Á)‰Q±›ËÛE‰Ç—aÅ2þBÔ·—ϾXÔ+A¦„b´P éðšÚJÞ–ÔŽ? wÕs0€Nª—;˜Ù´n£bßöÖàf—äƒ]í+—oðd'}Éb\ZInÑÉ$P^,a ô‘å¾mŸ´\ ™ÒhõŸa¦|×ËÔ†ßTµH/ôÒöõƒZü²±ª7ëe -4@ÝA`L]ÓƒFÊeθ<ñ¦9’§ìq +¢ÿ“ô¤•ºììü‚l½je~¦v‡â°¤RÖH*ð  l„ÛœÓåA=` O7ÒÛœÊòLãíßkøîg„@(y^óBhÕ<§1ÛÁ‚WæI9J°xH9àáÊ!솞pï0>½!¤[r¨Û2ɺŒõñ;ÅüàÊ»N-h°ñöj|ΦÊbŠ±ÑPL°¨Ú÷pŸË±ŸwŽñ…üÑ*Ø1FJQÿþôÀÕ +endstream endobj 862 0 obj <>stream +H‰bd`ab`dd”v s ñÑöHÍ)K-ÉLNôK-MÕõÉLÏ(IËþfü!ÆòÛêwÖ¯u¿¢Yeöó~/Üù½F¤`šs~AeH¹‚F²¦‚¡¥……´4“Æ +Ž)ùI© +Á•Å%©¹Å +žyÉùEùE‰%©)z + +Ž99 +A ½Å +A©Å©Ee@Q¸C2‹JŠSRs‹²òÓ|2óòK* RuŠrÝóRôó‹2—&g¦d&e¦ë10001221óñÕÌú7ëwæ¬ï&³Ø¾Ïòrʟ۳ثæüŒ›ó;k:Ç÷¥“ÞOúór:ç®SÜßW‰ee +endstream endobj 863 0 obj <>stream +H‰TU PSW~$÷+‘òx*‰¾µ¢( +. "* à*” ‚V¥bmÐ@t°-RšÍZXd—VuDêO‹²VDE‹2¨Û¨kŒ,›Ê“ ëø7³8çáÅ™½Ð];ÉÌ÷îwîù¾ïœ{MÉ](š¦…˜ ÑÉë×΋ÕïÌ×çe¥ëâõëçGå2ô†\}Ædº¤¦%9Ù¯‹_‡)¦QÔÞk°c"Ô¼sbê„4¯1PYTÎ.“1ëÃÌ<Íœt?Í‚ðð ÍŠŒœmzM’)7OÿQ®&ΞcÜ•cÔåé34š;wj´cø\VŸ«7æ“·ÿ#¡ÉÊÕè4yF]†þ#q‡&g»fm–!'Ï´K¯Y±Z£3dæ5Y$6÷ãm¹YY:c–>7€¢hò£<(j"C©(ê]5—¢ü)*€¦PT° µÒ•Z'§’Ô&š + PrŠ¡|©ETª@ÊR¥ÿcDøõ>nmÈÙZðßÝ‘­ÁH¹ÿí7PŽº_B2~ªx†ð'Rì„v…Âfü\QÏ 2^>Hw‰’¿(ë"‡È-¾‘+D²ŒÈ–7rr0žƒðÌÑ[Š +²H·䑈wé˜JRÁÁñlR 5ö(ÀƒP"àRiHR!6h°¡sãÜ:€Fàñs7ø€›× x £¸çh 95Â?9íw ¤’¥cL®XwOUã¸<9N`ïã¯aÜðVUdòÆž}Œ¹}ú„`„ý/-‚%/Á£ Âyö>ÔâA<¶¨zÏ·tóìGc +iDbµ§†2´ŽxrkMŠ€Õol³Bˆ•na)7<àꙓ€»E'ðFŒãN3ÀÃL2ÛÅ×÷4ø\'|ÓKC—¼kÏ~^‰÷’J¶îsÈú&9¤l§5ðj®«ýž?k‹G‹3u‹…µqvòÑ[kw›4·3ÑF4­to؇°[2rã‚\L‹‚B?z`\£À>„Nn b®®`ΕnnITã©d:Ί>€7’Ñt¹±µN°Ä íûÃ0E†}šþÐ¥r!aU-pæSj º;!d¬%ã˜4)ò:‡¬ƒpDÈ~ãÛÖÞÿÐUu!QDQ8ÙæÎb°‰ã*82«Q¬ ù‹­–f™R»h +EšFêöYdººFþ¤äj› XmhµZæÃR(BB`²¸¦Ø¤Lùƒ†ŠEعË݇îŒJôÌùwøæ;gÎùÎwëÈYÁƒDìÃ:›!'³8¿LXï¡´o°ÃôsÉwX ¦‡qQÓ[Å%Ýße4,Ò="ºóè”K4ReNH_7蔹đîþñM.Äþs\§ÉÎ)Ê-FÌÆî þDÖÅSe ⦜ûXÕægåä¹ÿf"à +û,ÁhŸqªË«wŒ³Š^:8$¬@$DôËSV´³…$€„ EŠÕqæUP‚²sõë|‡–(‰²R£Q‘ÈrØ3‰ã7r *™’Uª{³‹’L¼‰`J 2Yû%$z2Õ"ÔZÑéû%¯xÐ<ƒý ‚Ø`w<·  F*kÙEó#¹´0ãDšØ ‰ë¥uÁš{×÷¢§½±©MàîN³\oËõj«™?vþÌÉR 9ò…ztŒ\™ï#ñ {ÅTQÞ` Þ®v65ÀÅG$åh‰b¬b´LÃÍ–¹® +Lθv)¡òí(Ýl+áÁ°ú~˜5}—ÁNW–Þ®¿ã ü8ÜÚ3Òi<,ÍtÃ$uÉj:»„Òž›yjo±ÞÆÙ¦ºZK%Ÿ_ÓñRË‹®ˆ¢yÉ‚½lÚl§P&½—Ü8ö\ÀHçñaÓ›ƒ!äõ›'ƒvi‘U¤SMF7¯á“W;ö§Öê¿„`v0‘HëI¡.¤Å)4VAxó +,®xµ»• +àýWÐ<60VôÝc`¨s‹âéÁ‚bè‹P%Çq4¦ÖMR]îÀ †ÄuU.SRk¾RÈ—WÝ´Vkôl“Ífqð?ì®4‰Ç)ãn™=d=˜ÚФt-(úq¡ª¹áÙÁèáÛ$©c¡ ÌùDÿÍg#Ù6ØiCð¸u¦Õ3Ôƺ¼Åm¸À׫ÿ0²y +endstream endobj 864 0 obj <>stream +H‰l”{T÷Çgvvf—dNÜ%;[¬DÀ{ÄZ‚€kÊÃÈcÇ€ +X lT4M“ª€{Bk¢5Ûm¬¨!ˆ¬8\eÚ¬¢">BÄ´ÉrC½³^Ð΢INÏé™?æœßÜ;¿Ï÷{$¡V$IòiY/'Î_¾@X_)Tä-^¦/*zµ°"±´Äê ù‰l$å@5ÎÅÜÇUgÑ/Ä›·|aÔM8Äš{@ƒ”.Á6)Wb¿4ø–kfú>[>½¬NäÙ‡¹Î^>•Ávw%ƒÞ“.ß…‰w³.Í~¯Ó°®žýÇ;o€Lü’8!5u&‰y°óÜé.cÏɬ9³W¬Œæ×2™°P”×ÛÈ£"”*µïtÀÂ^1F^ŸÆàáÑ5tÖ`©ÈA±ÌÐu£ 3NxÆñ¡’Ä€q—Ù–oÝ‹8v4ŸÒŠK-ínùèœñ›Æ¸Pœ”žÝyËCê#TÀw A0Xb{Ìü¥-sƒ©ºîÔÒ°W|öç'v°z´ÃŸ¤;ÂÊrœ|‚sU/½„j#ÎËÆ—° +Ë›Q‘<;A€.êG¿øôÜ—+øê:¶î:óÕ ‘•/ŸX•¼‹Ç:¼Î ëw™Ø‘Á-E–Pž•Ã +ûxî@‘/'d8¨Sî@4c,Rxä7˜©u2{áWwá}˜iZq4X3Žé´Ã»vE~®¯{Jôp2¹¾¦+ýýM‰QÑ9‰KΕ;¦ÔÝnÇ‚¼oÝCo~od½ÉSž®}ÿèúÜÚ„ó“¿µ ŽÏ¿¼ÑT­aFþ6?&ÆÀºî@/w½¡õzÏñ̸ø5™óâ„ÖîgÝaõ˜¤8´Âã‘âëÌàÂêÎ'ƒÚóNÃKPå«@‡ƒ0h hÀÀN øu‹WòuÕ4nݱrV¨‘u%Y›/íPª@qèãþA×1ÅžBKXhQÿ€gJÁ>ÐçdsûäÉœgöØ£Õêñ!ÜR;,wÙIשŽãð:,æþª9¿÷ï§M§éÖÏöØ[ ß%w)VN\:ýk”|ôÉ…>ç§ó…-+…|S^•^µ.ÁP¨awoÇÅã—èJWZE9ÄNÖÈ5ð°—•B×1  ¡ñ îåœLXiØÅt •v2øª;‡ž«¤ÖŠÐ$Â1 ÍcO¾>V~ÐR8-fù*Tñ!Lº¼å#%.O_ŽÞLj:Y owÄû9ÎYxfI¾²¯áóˆÿ¤_E“ —3ú›oˆn`— CZ&±Cì}ylãÐïí¬yã”Å_ÂfØ|ñËažº×’ÆK x¥=Ä)2i¬Çú/†{&vÀìz^ïR–ÈC‘TÛ$ª-â°žØ[²À­<Æ3R:÷æóI¸«–&¡™ŸÌèßù^.ù,ñ©ˆ­Ð‡D<{ QÄGŒÞõ†XY "\xÎœmg›å8èäª487#*üGbÛòïæÄ(±ß[K¾Æ ãÿ2óls—töæ‡|ÃnB]&pcºFS©—,B»Í£à¨DÉ“%wN*¶ãQhOË‘@†£ÊÞ®Wf-ÇF:$Ê1Àè×*VFÚÈýäJÔ~XÀ!ïÈºÝ ~&ùhêèGd¬ÅIIeç\¦R5ããšc{¦VRªÔ°Ÿx:`› %p–Nñ,.]-ëR=m*º§>‡Q[ÜS•S¨©½%w9È‹’œ,Q˜`¥·+û »ƒéº±`0˜Áø1=]­¼Üz)ÅËÚ{ò_îydÚÇ Ü*%ïð˜ŠîS䌩”ÈÃn¥Ü oR1ü¶DÙÁÍ=·B¾ê¡þ¿|WkPWv¦[P§VÚA‰Ý&–’˜Œ¬ÑRÙZuå´˜Aä­5(kùÈDC60AA@ÅÇš¬ "j0mÇI#¢”è*ë1š]Ý”§Ù;VíétÍݺSÕ}ºûÞ{ιçû¾3 "S‡ÒË:ýÜùÚ1‡l%[#æLqŸ‰[†ä“;ë®}(0îZVPO„e“ÈðEÎ戂 +w Ó8¡ó9sZ~DŠÕGXŽ˜=@º)@ œQˆ9m7a4¢è/–ßbÎn,úðóŒýë&\£ÖUv¢à¤íÆø0|͹÷KG`ùÿòè`ýuT)åân2’%«äBo +F4ÄÎÒ›’¦rd¸ÌÜnHT;ãPéLv2W™ëR¨T­&²›L ¿ šO¼Xæ*©€Ÿa4Y©õOžÁ2÷õ í¸ªðlšLê –yü^°ø“Ÿ‰7¬Òöœ¹ÐÏ2×û¿‰É©‹ñðßF®^‚‰X‚É ‚+Ä ŒÔSHß9¡Î©ü5dÚÕã®vÀ4V*w•Ñ“’,z}’ã9+•a%)ìÔæ(>—•íw‹2ÖÎÌZùÄgjÑRÃ×…÷¤“÷åƒ&%Ì–?ó!‘Ï‹*´ÞÅI¨mcÐÂIj|·/k ZXlRÖÓ)_˜ã{§;¬—i`Ý‘²ç²¨"¡´úhåˆStÄk´I«ÞfåSxx– £xßg¢ˆ‚Ä43§ŸKޚ뵧{„ëÃ"vlO³²D•©bšÿª hŒzø½pøÊ—,b2{3Sóqsé{q9ûí:{û¾.Ñ]~ '^–H¢`¡i–i~/>&È’ÙØÑY[+V²üÞ/w×—ï>8ÁŽœbå·dKÛyXãë!õÉuø ¨ì³Ó‘•çÒ;uà}~ ;@¼'¯ˆÎãlPi¤DW hKm»ØºšÄ‘øèÕÆȘZˆgè¾gÆêI8Çœ%†ózðîिéW“>Bⲡ8RrQé@7"©›ð>©SõR$ +úaÄË`[F ×Gÿ«/"Rºˆ!½;L_‡ÑòoìL_‡'¨3‚(ûÈÀºÞD“~Ý”¦Ñ–6. K]eZÏÚ(á“ô“á:SÂZÓ9 5¯øåÂî<1×ÿg¢Ì–µ¦5¸Ó$OÃ:“Ü ØáTÖÀ! ‰èšÞàÝõ"À°ø!ñö”•, óm—.9¢ä²D-ZdisŸ Ȇ¹ò*Ö—ø|ì !öØ©è½M+º<è CÜñ KI_ºIöºï<úÇÐDpϸ!`ÆýXê8ÚÀ;\s°^×Öº’˜¹_¯ïØc¸+o€k ZäEØè³›RN†éˆOœ.ƒ¬«éxë^l H.v`nýº­¾fsÖaöhF©%@K↰‡gcîrDwî˜ËrâîRÏ:Îtí)+°•±"mÏÏ/Ê×E,]aÚ ;ÞpÇH«ãÜyó­ãD0ˆI"s²a«æ|ö¡5‰ZÓ²áa«NÝ`÷·Ðd” +ðr\zж–®Bõ˜U§2~a=Ö =_Õp¥å«¬Ø\q?ý8éœÿŒ°¢ˆ­J¹–…n%|ÊK‹=øìׄÔnì;¼ß^\‚Àü,Ïj³êÒ7ïkä¤1[ð7BÝtTý² +šÚÀOãß’Ö'8ª¾¯‘yÓBÑ@i¦)0ÁfȪ»ÇJ>Pha·´>stream +H‰dU{TgŸÔÅ°d:H2:‰Ä*êúhí*[©ÚV‚ +‚„Wb €å2I&/((¢<‚¸% ËŠ²kŶb¬(•êéÚníܵ‡=~¡ßžž@w÷œí™?æœï»÷þ{ ñò@X,–ÿ{ñá‘Ñkßg‰åÒYÈ~éñt¹ûf¹‹`¹ü½àØþãÌkÐebI_ Ò|Áot銸n#M„,W™çv®JY- ݱ#T–*K–c”ùrIv¾0*'E–—+ËË%©ë…°¬,a´Û>_-É—ä)˜Óÿ` ¥ùB±Pž'N•d‹ó2…²4á~æX®Ì•„ì•0Žao Å9©dyB)ãŸ29_š*çI%ùë„Å|ÈbñE¿EH Y‡ ëYH(‚löDÂ}‘/ä°’ Û˜ÂÄY‹ìCêXþ,«ÇF¯=•žO½ŽyM¡{ÐRöoÄ;s÷Âe‹V,úäWC>Oßå”úÆøNýÚæ'çr¯aË°û¯½õš ¿ë_¿dÝ’³I_ò~â ˆ›K3—þcÙq2˜|$|Sx;ËáÀÕ UzÒp5~écÇð@/Nòª,eÅÕ)*•|"xߪœª™í +îƒ, k}0ˆç´Ÿlï8¶«CÞž#Ë?‘KrN•Øf¹6Ö€tŒ{C#+A‚=V° +, ¥k!®†ÇàAE6ŽZAëçjPã·AÿCðêJÔƒ#Î)ʦRÌî*è*à‚²qì ( ñ•º²š,WéR5‰šŠB±x¹·ùu ÑÃúÛ·‡5C>"ƒmó¦ ‰úT}‘®ÜÌ«4©Œã|×~ï1ºÛÔE–ÕŠó6'¾Ï;R¤Ñ¨ø*ƒR_Bš(°p=ÝÖVg$Œ4UâNÀ™¨pýt‡ ^M`½X®ÍßÓ;NOè'î}¡ùbGS«=­;£k ëë|‚(ªÎH¤60š Öƒ”©[`›ã¿Š˜„œ×£N)IJM%TÅU&ñ˜`³ ËùæÏ,gx&ãÐÅ[Ä“l`¹¢cïÁ2XM&‹Q¦¡v0f5LÓδIìeØ‚SÕf¥5¶>’§ì¬è'°ç >øÀú4I쥣óþÍ/ù?l¹þ›=ÑÌ,’ªôò£ÅI* Á¬ïn6yfs_ûñ÷®wâwÅب¨4èËj¹¶ºJnVÔ·Úk;™ÈcN©r·$D„ÇÙ€W²€©qž5슛cÇá|ljuc=Àñ Iæʘg¨Ç1ÇP·¦ÿ¿ %ëåt=ÇPeÍ=þçÞØ¥ÆÏ)UÀÜkë´]­ÎB[æ;KÉd: ¡wÅUÔ¾›+ý-ôÞ +W¾×ðj(Ýw™vL>l¬[?ŒC9ûà<üIà§×0Mt×(xé.à>îÍNlº ┺%՚ؔÀ+mî*$ „3`ëaßBß0I†"_ H?¬q.0ö^eÂj§ªûf3Š=ÑX´µºF]#]Wë¤6¢Øt4%Ò¾4‡ÎôUV¡æ]ì!þ»ÕÛ©8²Bmçíö °Á;E‘ak¶¹›- ônr;Àôè.`9ÆA—ÓÓÅŸÄ¡H“à +håÃßïœ>/^‚åÀ/ô“7’2‹+ËȢҼ´œÐw¯ÔÌ'þ%ÇCÄ›×Ã%å èOM†>CÙ]72tŸ˜º¾‰äf…ëÇÏösv`÷\å³Ûp÷ î Ó!$š–°ÞTZ¢—«U†\}V:?K›®I'žP»g¹…^¯1[» ÎîhÕ2™TÐA±ᙪÑZºIoµ6hj|D&Óe°¬/_<¦ÄžY_÷²3qÐwÒF±ç—ÁV|óýM€Cb߀àÇ~aßØ'ÀÝ8û—kßñ'÷Þ^›Þ\>(~œFbÏ+¡W ôä;kñÁŽGv¸ý¼c'ƒù!;¢ƒ ‡î÷¸öpËf3°+ äâ0z'EE”Å +ç7èÊÚ®ÿ£_sinƒÎ1„æ²ã*ÎOwŽ lPú÷Wé+ÄÐV;$è؃vFÖ)ŠøeªÒx2íÞÅÂüùHWè?è‡.õiìÿ‹”ÅN+iìÌpÙ˜¸Å&)€0x×&&j‰äšNðåŒR= +Úêz²mÜ™ P=yx +sÌ€B;y@³¿:†T3Z§%e% nÁª£n×··´Rc>¢¡vsÍ9Á?mO'gøƒ¬ÞµFRï |]÷ôöw|€u­&ãtÑÔÑ„½ØGäÎý¢» vÍ%M]•QÅ3UéKð'`:N·4ëÏý› úØyÙy&s‘@Û¤¹ÙÇw ½°ôYƒ4vžÓ_ îMɃeÏQ +”99ÕÑD›v•8fq;kxÊ•}Îs6t +¯° 'ŽÇ¦@/f‚}ÌÓ%Ëÿ +„n']Rèr Ÿ©¨•YãkxLÍÑ/@?bûºÌØ(Ah¸4zðaØļ­§€çˆ­µáZCÙK³Á®ÝÏÕ:ä²àŸÒ&;ihµû Àÿæ¼Üƒšº³8¾>B¢¥P½f†Ü[ïmuû¶ëª;t´uWm­¥Xª.yÈÊK ïA${oî//$P!å K¤®nˬ¢+ƒíºëN­[·kg;«þÒùùÇÞ¤)>fçþýûýÎùœó=ßs3¤èï‘Ï %(:) )ºCçs⛿cÒ‡àuñЧCWB\ 3á°í?‹~EíÓm¡û#ʦ9Pò%åCƒ_¹þ¡8¦€RWN'­Ä+ìí˜ÃÆ‹š¯­Ôö×û®7pc`ß2“Á¦:¥³Õþ‹ä¹ó§ý£Ví’”Åí®Š%Ðòv€õypø–t»¹.¢ã£±RÍNcÚÆ›T€«€­c¼ºÓ:pµ s\—nŠb+k$ÚŠL‘u€2 +F Ý\ p’ ËÇyx°]ª,¤Lpi Nöàë´™ÁDÝ2x— -fÑ"-Nˆ ÓPºlsQ1Åùs*¥öæ* Ä Ly•†¬ÖVhÒ˜ÌiÓ“Úd3Xú¹A0èdúgm/“_L*ÌÕ&I•™©ÂaA‚ýÿ¦÷S +|Ÿ÷x ¾…Á¹)Ô€«uã(,dÑB-|ؤî²Nÿ³®y¾¯ü¥—ø¨ëéQF0ʘ+‹ð8Ọœ.%Ë2>”o"лh¿“ì…;¡†Âí×.)ÒG)£Jÿ6W>“™q´5|ÐMSüº6´ˆàÛ}7’ *‡o# fÀл=õÎÀ*PÕž±ãà ×Bž´Î@(ØýLNòŒ›qpa|éA}&à XÇê“5»’<®6…B8…¼ùºA%±rÍÀj·3¶§æ¾*c›”Bwà…þýúÕ//õ¶KZ»¦óD€uS0PÌ‘ÇJi‰¨ƒ¡– +W¡…(…®yS³…C Îh& ¦Z³¸@Dà\ýô¹ŽT6‰IžUí\uñ/§;KäŽy‹\þs“˜ÛÐ\V-vÎ †‡ÝŒ}6¿,Žµfæ÷–kêGDM!–¶º¶ú6Xæ×E€Ìr?U8É Ó$-’¾ÁGôgΕ©~:S‹šÍeÒ A^èJUš*­$ ÜÏ@þLUbHå–±ELQJÏ¢ø˜ô0µå[ptBˆÂ«Ö2J’QÒ^š#U9LV0¾0èüI[ðx»ø+‚gÄ=‚IgšãÉáy€Ð_pÿf3ÓTݬ‘0íL÷ G„0ÜxXI`Õ›õz“ù¨±8§Ó~ÐEl:—Šf³r2ÌÑ*“†ÿ?Ðk€R”Ƶ(G½Bô +¯ t¿ +Å¢|6ŸÉ—É€ìç4¾¬¿vÂÑ É„OÂk˜†Ï­ùt²ÞÇ*Áÿ†p”óèO†=úâû‹I/lÛ¿E•ÌJŠ¦æ ´M­Õ¼o½çಕ.´ŠÚ©ÛI§þè;Î9g‹(ñ÷6Ø?c‹°+ñC´ûä‡ Ïq4xIcËI½‹¸qKŽ[÷ü­P—s@EÑe‚ñÍ°õép¯ëf[+Ó2{•`¥©'—BÅÐ!€ójïMÀy5eQzŠLÔEÑqÉ©_íút,=?Õ'òIìö?Úß æïÿ¤ö‚ñ8I-™±› ´m׋¯¡§oæ])¢°¿ÀÕ‰§•kðçÖíy}C¦k ˜Ô¶Òƒl3­(âÇ>ËíÖÆHôÕ‚CÎåEºŸY×ùr'…}ƒB\oÿÿóй[—ó¢í$ˆæQ…yƒxÞ•éYZë€ “0Á±, sBíÜ€s§;x¥ð,ãÚIGHoÃØ©ájV§Ï®y3‚?øÑd?3œ6¸3³¦$³l2…9“’ØĤ$.‰À¬\r2—Bд!ÝËFIfñ/×Lé»YÝ°Aì} —p„py`W ß) +µï‡Ð€”ïLú#]ØÔ'Fó½«a\=16y’´öë{ÿ‹_„ô|ÓÒ›zbé­FV'+ÓÉ蜘4$ ÐËI×à| +úçg. î”ÄG îƒåévÿjßÒžË9vX0ŽÉ°>8CÄ2erìb»rÐ;æ±{©þÆOkNZDãFñç:ÊAŽD5¤˜42>MžMÑÕà==Ý¢Õë­§Œõc­YRc±í&®:¬§ÂXõMŒB„õ½/ßwp+¾©7þV»ÕØØJb2oWk‹Õ**d ˜BÒ¤ÔqÀn?>cnM|"Å@bИð°cå>µÜ¿~Ö)–þm:/`CüNìp–cÇI³yÐwŽÿ¿u­ØøRü/ŸKLiíΦj˜Þv|Çm1¦^âg+3Il¨áÈ)· ¸Ý£ê%Î[ë?§†Üç‡áüîöïÐ’ýÒ²CJR!ÏÉW)D |:RúÏ€åH`jæÛ 8€×2 ¡‚†œ\K<±îõ¨D)U”u$)GïD}{¥·¥é8Ö,Ô«î@êü#ÞqL ݃Œbg/}9œ\ÜHrÅ\æ^|Mu¾FI–hRßßB á¾{ßQÐ cÄÖÌì†"òÅ» ©²¼CYàhÅÍÈÿ¸mæÆc$¦®5â³7>Qüë…Oå`¹f´ÁHÇ<Ïe¨Ÿ\uþwÄÒ×ÊYþ£Ø²ßU«ˆ½IK›¬·án»ÿ qe@U¸;çCÍù†RPòé]£±âj¹£õ8|eE×{k7¾S¤ sVlJÅQ4”$\žkoî ÃP.m×ÉùZÀÒ?éKocŽ[·ÅºM%©Õ”W2²-ÞŒOòþê™ñ×@¦2°ÇXÆik$Ú¶©ÿñÕÔTz†×Ýæ¢E¦Ë1–älÏq\]u륫[]-ëÖÛâª]]Wdƒ —Å„‰ À9INBÌå„\À$ˆ„«¢T°ZqT43 µu™m‡±ëRµN;/ôØ™ž$ÈÈNVh´3ùufò^žç}ÞïyA7x“¥ÓiI ¹z^˜‰¥Ã9`3Pw>à·*åNÄÌTWãÕ‡†ÔšÈ˜ù„B¦+†³Å²Ow _¤HJ°_²ÕÇÔ™ù¼-B:÷ñPfÂn'ìp 3¶Šòú@é•¿ù@j‡Ù×HûÝgý ³_€F¡&AÇ~¦ò£²`oe +\¤¿×Š»·ÃÔŒE[ß^|3·Kâ,èÛÄtá¾|>/õœÔ!ô‡Ç‰Ù%)Ù¥R¶R¦,Êã-z˜<–öŸô÷$ónUä®Á²á]¦&ŸÇÖä@]LðV`èž_UWfCé¿S}ÏMœË.·Q“5êÇ Â ß÷Ù¼zÍöś֟¾‡B# +_pçNó¥{n^¾r7÷úŒ+ý}Æ…hXÖêãРžÇQyFxè óÐÞ†·ŒóP@Ò•ê+iÌ«ñS#¼>Ö-]ƒÞ„˜ôÝ—0ˆ1|°h©fCÅ”×êïW bÝ<¢•-)/“ ²’”tQ 0§:Ô1ÜÈzñ•Bo!ˆ÷àÉšÔü^„‘^ò"½t¶Ó½4ûÛñöñr„ÄQB®§=[¹Qã¤gJźªí¢Ÿ¥!”>g<ý¯'¦‡˜Åà,GèÕ×»\õõ"—P( é)÷ÒC£î/kðÉÏPÞp%ê¤>ÊHÚ^Q¡ÕV"f0À{vØ0ĦšT5iæQŠ}âàVV: ã†e8*«"8XB84µ¼ +‡V£øü¿OdC{ºR/&{$à ñvVv¹áÒ4©wýýÔól°|âÓùçŒÎ1êÔkÌmk,ßwˆ Ê'2ù½]19ššG¨-:ÂHám“œ3Õ´àá˜Òh®BR( ýf± †èzÈŒ”ÐðêáA}ê/PêsÖ+"úCSÙÜŽ7¿´é&²aa5{{|˜©íÕ]®êUâse嘠Œ­ÏÐ(ò"N’æh‘«%ÄÏp¨Ðçà ž‘ÛêÖ€i7k.­¾y•!Pç«Hˆ¥äW Æ6µw…z—Ù·+Ž+K‘¬Ü4a2¼?·Á^†*\•ž<0{jAb³Iq0‰~â$A;µ l‚À*0—Óð±{g•ÝÅ$;¬m­_±¡ëƒàó1˜u\'z;á·ãzž:Ï + aø* +¥8…3¼¸©\Γ§g TÁZð)£ WxÛ³ÚôN-ҎЉ0®NÃÓóDÞx„FÜ‹[³CMçÆn +`]aCaœ&¸ªûÀQ5“šÏO‘áR·ÇpÄ/ +‘ µ6Ò‚[cæéuíWn~ÓÒų¨=zŒaÖÚ ÇI'N†1§Ÿ>BAÈ ¹.»‡K±ÀºÁ‘žë.¯ƒàÚÃÕ™"ÕÕ©Ôe¸ìx ¡Œ™W‰øUbÊ.¤å÷îü&³¥B/R¦Vp ‹—ÑùíxKeäúJnl6å½6ú㸾^‡NPÕc¨LVÌ?8sé¯gQð¸MCø"Íz[äܜ쑗€uáŒS˜EUÄË_Km§ ùIëÀVFÁåÜ?ØyŽZ›@¼€MS§ãi‚>stream +H‰´•}PgÇ7Àf©Ä¨ÄصÙà¥Öð§=ðêõÔ;ì(â (&¼’á$€˜lØMx§‚€/ÈùR^CñëÚÖ»ó®ÚëY[ì)7SíÍüB×›Üp¦ÕÞÍùÇͳó›çå÷|?ßç·Ïr7„Ãáwl‹Ùµ4\®”kSÒÔþkÔÊ×€¯ç8æz0~LË÷…ß o HgÇL0ÏÛœ«ó}?ñvM²¬U§çiRö$k¥‹âK—½í犿˜ŒÁ®0'ãdpÐd –®NP+¥[ò2µ‰ªLihZ¼Z“®Öȵ‰ ˤÒÕJ¥4•9S‘˜™¨Éf{Ÿ‹”¦dJåR­Fž¨’kR¥ê$éûl·6/=Ñ}"»põ:©<-áçj4…]Ÿ™¥ÈLIH‘kR3—!‡m† 3Ý‘y"BAx"~(²EÖÌB¶`H +‚¨$AV²&!Ʋ.álä¨9”î–ëÖãâþÇ6ÏÐQn'¶Ê3ÄÓþZûŒe^ïð8¼HÞ³™v~(ÿñ¬òÙ^³¯ÎQÎqxÇx;)sÝæ>œ'žW÷zðëE>a>•â0ñßð8üìüˆùŸ¾Q(q“TKƈûÒŒ?Ÿ}kò? { e£¯CþUïóàeƒ9_Þ½#hÖÁÓ BÿwþúhààñîâêÂ[ï}õžgNÆÞ’T\ФËsŒ +{Z•É±»âÔDAWžÅ"8Ôi—€œ± ?ÐT«4âÔ½ùÉ/o„܉¸ïyëÌ×#câÑ– Éqe*µ$9ÝSž¡+âï°)Ön[(f溼nÚ6pI"PéÏŽ¤àµÜQSë©žÞÎ>E§óuhQVѾ Ú:8Hðdu\·¿<× 0s+ Œ?±þKaqªŠZ™Ž3›}A ðÌ€•·®åE •o£½ÜÊþš?Öu•×‹,K×WãL +³‰Á˜|¦ ÞeæBîÝ{X?fÏhaØqçG^ðÀ×áÅúðgà=þã"5DÛíC¤'«åˆ1”‚–™õ€I%VTüÌ6¥Z0„½à›Ë÷ á”}{?ˆ‰fb—/fbÔi•iß0Çí@;÷¦U”ÔOɶþz[œ Ò!‚1š'!mí§úqÁCäìM}!MÔüíâ +n!aAy5*¸ƒ˜”iÔÞü|c.ή0F¬#ýsµT.ø“ŽÊ`Gð—´ýÄYõõ‘}<™±íÊNüâeÊd!*kê!MàjýÑ2ruéN|÷nŠ–ЊÑGPG\{±—~K©ÚDTí@-\cÙUÁ6º³‹÷f<·<Í%sÈd<”›•UAk >ø&ÓÉ‘è;P/°£,{HM0ÕÓÐí,ô˜Ÿ#ÿؼjø?ñúarczy±D_¦ÓgIQ<ÖG Ó]&Ïñd,Ö”AëÌúŸòc»U ›¦Ïý4àéIÀíÓ€QÏÙßÔ%ˆ´‚ó’· –8¤°À阮`c"“ýþÛªÍÕ’,ÚCFGGÓÑ<™»@¢§m”bF„È¥q8³>–Âêé +'ÿüü+íÎÞŠ¼×/°&à¥"'Ž§ãǺNÖù´ßRö.rri)ö÷…+àë‹ÐJµW5HÌ5õæãt·IdÁÆ­dø¦­´‚'‹Ÿt²^o.ûœìs9™ô‚“ÕØBÙpXȵµñj~Ø+)d1ca®1grcs)ªàMùàøÇ4þlzóÿ}ê_ð¼ÞÛbÚÿ„Þ©ý „ ¾aßpá«YŠ™M•UšÛRÚ!?ª††uPtGLJdOÖ‡íNokË&˜E÷@ñ'×C[Í>‚ñ^LeT’*•’VñþÍy•5‘§Ñ vK7ãГ-’žê^T-£gÑî4AKÁ‡4ì2Æ,ݤô‡€GïÆ7ž½ô4Ú›žJctí¹LÞ`fÀA³|‡çÒƒàtŠQ©ÈLAúÿó`¾ik83à¢òÝ~ô¯¶ ÞëÖ-ËÌÔS™xv¶%"Ë*ÔV|ðìøÓ†xw¥v¹r8?ÜMôÀü„àX@õ(˜;Á¤ÿó†:óæÙPï9ë7-ÀUj +Í•1¹æ dÓÙ([}YÏž”ê³òs +‰b˜k¤Wƒ;¶?ô|/"€ øò­ä§?žp¿&ÒnƒœY,‘ŸÏè@®õþFÍFE ¶ëÒµ½}(ãƒÏ«àóçfÀi® ò«Hlè~Ýqú!†Ü?zFoà ¼!;÷¤þ\I=¦6AÕVýQÚ‹@Ïw!ðÏ©8“¹~•JÎ]2ÛâÃ]ÉXî÷_ˆ9fÁ¹àbäÌdµ<Áòz ½ø`sºsÆqkjór +q½Z¯Ô†m\êr~WÑ1•Ác’v2é5u25i•ºhg~0µFÐÆ5ôêŒú"½AP\X›Wƒ‚qRî»n ùíÁ1~Ãv®L$åô¸2Ïå|ê÷Àêþ»`-:ßqÚT0í%M/¤çÜžÐ>ÿŠ%¿aÇ[Qô^åOôt0¹ ZœGù9U +[¥°ØX\¦Ãºó¡fØW»ŒzÑÕ1°]sDSa €r ú–kn06”6¸!½ Ê©6ՙ˫(A={j‡6†LJŠf7îÒ@•Z‹R&”eFËÃ1zýOˆ1÷WQÒÝ-?‡Ò(@™»®ƒ>ÉõqN„H£¶¤Ph´Í:ÌÁÞò*šz•4…I€ü]á–;Ì«ÌÌßÄŒñ¥qÆ8sœà×x¬ø˜ù¨ò{Às.39Ì­” ½-XG&‹ã¨a”­5W!Ths4 +lÖÀxˆä2ôBšåí]n!\y„<\áÆë—ÿeI‘ò…+»Dœ›îm€çkkña~,Jøa9!Š˜T·øÝŠÐ(!R¶¬ùËëÖª‰Ø»_F¥n*D*é1—è±àWÖê@\ÁÆï8o(;Ÿ„Á¸ÏzhWQ²ro*$†>ÛNøy éɷ怩=vcýy¬ê˜¢ ’&†e$ “7÷õãßÍüëE ñ¡+Sâ SÕvžÃ˜ˆÜ2èÀêÀ'8Ò è•˜Ò»—#Çï3Rè3³¨L4E¢‰ +Âýü™\¹=\±H§É“÷Š³ÜÒà? ú œ¦ÍÒdcšìL•DA2©â+ƒêèv_³ÄC(‰nOÁ/ăƒ`"l<·¯"#ƒÉpà“º¶ û«Š +¬¼1îßÒÝ ¸ÿbXyVÕí~èÑðÞ¤ç`x/¸"ý¾Ès_ç!çX¾á¤‰É$4›ÈÓeãÈc_[l€y+ºy3ŽG&&o®mßrQŽ!|—m²û¤aÌaY³c®ñÙ É2•{$Bš¡-ú;ðS{Áœoƒ;>§DÈ*v5ž˜i²T˜MåŸÖX¡-EŸî9àjÉ«Tïg¾GÐÁÇùWÌ«6mÉغfUÆ•S§¬§/âÌÕÕÿzŸ¿r^ÕÎÃuExAU3u-5çiMø}*?¡ß¼ðµOÓžÝ{µ]3ú¯<×ÇOø#ª*Õ2ŽUµ}XÕvVÕ¸×Û ˆàºæV{S•JnÁ¬²¢”B¦0µº:ª©žÉkoh@÷hºã›°š”0sº')OšŠ/ô‡À xd¢ÙèÞ¿)¯þ¨¦Î3Œp¾\Ü<9g¹Þ-?\¢ç´®uZ­u;›Î–cK{vV;éÖY‹&Q‰ÒtQH ¼i"‘$Ü\H˜\X„$PP±bÙyꜬÛÜ\»SºÖu•sè´î»ìãŒ}ízøãþsϽßó¼ßû¼ïû¼¹‚^ößâš´p–/áÉÇp ’ââ¹üå"“ŸóKˆš£¹elº†¹HäoóߢöŠ5û†þþDÏÀ¡{ý\Ô68©»ƒÁÌ`Å •× ©.Pšj*™¥¢g ¸ÆÅ(ú‡º†ûT#£GÇ T€ÎZú×óBNõŸƒ9©éŒÛ­cãžžXl®$âZÈê˜éä³-–l˜Ó+ú¥Ç®aÐóÐ,F¹Î®ösÇ¥~&ì+â)ôMÑJ ú½Þ$ãuÄü-j&?™»okéÖQt’¢n÷ì"bQDùφóÖ›zîû_$‚^·Ü|–‹É w“mB@0Ï+ÛèlÙn½M÷£pDúÞÊÎU~Ü÷ÄV>”άš‘¼Kþ­Š]±¼[@žÆ/þH8î¨ØQö$=§æ—+yj±õJžÿ¿ŠÍ—#nñKžZ˜/\gæW /é‡+à^¸" ›·b +múþ´­] ‚›?þ ~>ø£Ð:•{êiê¾:xÿïG^ÿÇu7z8÷'u«Q‰Qs +j~[RÎãÓ9±OÜr ¿›@ëþÌW#À1k¤áz‚|ßѯ+¢±@{ª+ÌuDñ¶x"4”ì Ìò äì>\¨b߇b†š×Qàÿ—ÌfÍY$_`ÞßžÎÛ3Èž/î’¶³óÌÜ2‹ùYøÑ•îKsí¶—e4ÈA/¤™ðÚ«Ü•ŠËÊŒ&9 ÉŸ/Àû!)’ô?§§ÃöŒãÓðB’µñuòOä'ð?ð2åƒb.ÔxÕ +´tã^$zºO;jÅ{ÎX9HÖr6<ŸY½{/›2)ë/‚QZ*FFjG×þõÌþpO|sXE~òÃ0Ðù¬­ÝòÁDÇ;Ý'*Ë•< εþ¾©<'úMŽÁLêáä+Ý~“òÔYG¨«²;Ëj+{Zko¾óHäï'_÷õ+«%UùÍA™Çè)1ÊÉ‹?%~¬eÄ{Ø]}úØBrßõ6Œcº +WRdbí‰í03ÊùYl“Ê/ý¡þ ÿ.iáù0ˆ6Õô¡:»ÒTY\¦W<Úð›ó*È.tãp]¸œß’–4óqô|o1–ÃÔ˜ˆéazظ°˜,‡M¡ÛvDöª¤ˆbW1]\lð/»OG¤hàg55.›Ã¢z}×n¶™m/É/GÄfäÁ@#Þ<<øG­KKkµVø1FwÐASЈç¶|Æ" N#5TcÈ_¦.‹BƒìPäµ1ø¤JÑ»à“ +¤ƒ)¼…ü›_ ´¶¸e½ÂÁz—Öë ½pðk4`]-õåõ.']§,DÀVP¥«.’‘I¤„£`—hÚY¹Ï²¿rŸŒ‘ó`) }¯øšäþ€ß¯<)¨v©iµz°Õèˆ:â +Öú^”‰Ç'õ½¼(aMZ"˜n„ßO6ÁÝxÕB™h¥µ¼¢Ú@ËÈgõWˆê ÇÞû›”lš@[çæ<£¹›­îånóñp­tŠ@W4Ø2 H®%PZÈúY»J»ËB2ÒUâØTaªÏ&ù +×ëö*º"Ž]¿RÍø¿Ëüõô8ŸÉ‚áUª&VÇ´ÊYÆǺ• !KCk4jF A·¸‚•l¡ nœz ôg`O…A­S””²Ç*Tö†Êµ ¦ƒ«‹)nœ²tHóùýLWK+{DÆ é6â!c4=Æ›w‚.Öi“;ñ†çP®F^ ŸÜbé³Hzù'H-Ü6¹z~ëv”iÞÎVK-#ÁãÞl²½ùRßγ٤¶ªÀÕæ{}"žë½“‚“y|LòÙŒýîÇŽæ~\5C9|;o îÇË€ý€®A«@Y0C4Ç,wºôK9‹µé'o (·mV§ÊÁ>=‹hjqÇXóU¨|qî¶ïä¯Íã¥Æ'µô|u"þ Šl?ýçs0³óœp7Á¢C;«Õõ2ûc…«Ì;؃Rï¼ÇbkhrsÙ˜÷Ê»"Èz¦¸f™̠#ðdöÀÔ[Þ¥Êö§ŽéeKßüݽLÌÃåüw¨ÿ +0_p½0 +endstream endobj 867 0 obj <>stream +H‰4TiPSW~!„DÀ¨<^…<}ï¡  àŠ 0.ÑJµ®À`!Ö%$„`‰)U†%!I‰a¥¶,eqAí¢2ˆSTDÄ6µk-?ì8í‰^gìÙΙù~œïÜ;ç;ç»—ƒ¹º`Oˆ“DíŽÞ+M“ê”éêÐØ-Ói?'Éqúº¢TýÎö.Œ7à +»gBæ,È™sqOî5]T»EaÐ(“’uL ,ˆY¾nuÈ4®ýˆáÓ¾ü#®`Äru¢‚‰5hu +•–Ùž.Sk2Ô©N!_Ê0â´4&fú-£Ð*4™löÿ†¥–‘2:T®PI5©Œú³“Më  +Fü#M—/Sk%{T{,Q«”+¥¥B»Ã8l`³0lÎ l&+ãb<ÌSaw98-..׸ ¹y®W #d£œû àÂ좵±©¹YÝ”¦ÊP«T êZ¨osnnãœsÀe÷È æš !à¼× œX˜‰ÂЂ äŠVRðÚG L1 @Ô?øüÍ¥-h>òP Œ}Àæç`89˜ž:×¹¹žØfå%X J•ß[e»xšj凨¯rw®EêSSȳu‹'Àão:ò0!ŽÛºŒ¥#£oüõÇÈíæZš%WíüöÐNþ$Ë9ƒˆˆIJÑSþÝ;î‹~ú±ëa_z(%¼0SmœfTOrß \¢nÿ¿À— Ç‘`1ld_¸÷ÈÆ´¶ß짣ÄeÐæDAŸ]Ðc"@õç0¸ôŒölGD˜l× +öר{»µ«RVÙâgËÞ÷•ð)Ól Ûãé~ÓÝáá,ò†·Ä ¡:~Ù +endstream endobj 868 0 obj <>stream +H‰¬•{TWÇ' y¸B@†˜ÈLTX¥õ­UQËâ¡"V­­¢˜H‚ ‚. ¯À„‡–—E-" @@ˆÀaµ¾P¶>V)ÚÕºk‹´z<¶§7ôâa'h{v·îã=3ç{îܹß{¾óùÝßâÂFX,ÖÄ-›¶†}ðÑÛ2•,I¯™)ѨeñÎ7“"–ÃÛ.M?ÿ4Ÿë‡ n È\˜prÒ´<‹ZC5 ­r×î$ñôè@ñÜ ÅïÌpê¢1 rjÐœ17¦cóA‹Ç4H¼\®Ù©o0è’jxU|´F› ÑÊ’òYbñr•J,qî¬K:…6™™ý9¥X©ËÄIZ™\¡–iãÄšñf:É ˜®`ŒËWŠeñòÙ­XÉøu{vê”r¥L«Tèf!‹¹ž âÆAD,„@1‚LqGæs‘eŒ !"D‰ j6¢G3‚\E‡²šÁ…¸ |¤¥bU²ØÞìv${/û»—3Žó§Êe©Ë×Üpî—¼!þ€@;Î0îùodã§?ízØ-Ò­Y¸Á}ªûqPûv{Î÷¬BÝP• Ï½’¼ú±TìÅÄto…ËÇè}K|ŸáEFѵIé~ýNSˆ Ò‡<(ßž?ùö”À©süÇû“þÿì€Èß¾O ™\É?º'Ü<ÚyÔ=¬÷l¹Bno§¢]Ý jxøþòó¯¯~ôôÚŸ‡þºªwiJÂn–/Þ´I¿(ì½ô¿ôôzð9éØ Ÿþo+Q}÷ˆÞÄìa57š7Â~©æ +A¾þ<°wK7«ý‘õ߫LJ7fà%$Òt"Õb²š*Œ¾åÆ’h9›¢ˆ!‚¿Xñ@òDÐk»wó!~)¦a}L +•žF¬\ÇMÝ—».ÛV%%G…†MÃ!ëþ"àuûF}ÇyBi’¶‰Jx¥etÑ~òÑÕœO¹É©™‰"Éƺ“²½Ãzñ^‘_i¬$læ³æŽ,Á±Â#jˆ‘öÇiwÞ](Ð*·'KEs~wÿñõ†Óv+ù4cMUrU䦵r-IÕïëiÀmŶ‹„¯ÑŸÔ{ž¨ô{G,†V÷üÉÖ__€JÓÊã2âÒc³|ïÆïXy0ÃG8¡ïÐ{^ú +•‚¸ƒà%A`ŽVƒ%-`*•¦Ôpá4èçÁpF܆KA D‰×v°ŽñÛaz,8óà4àF Õ)‰\ €-p*\‚ÃerЋ‰z +Îõ¬JÅRàŽÅR*J™•ýŽ|ÙŽÐ +Êçô¡Ïî\¸×ðØWân±>]Ðâ°º>cVò‹Œ\f#°ú€€<ŒXÃñÚº:M­J Q«k4õ¤ðÎp¬žõÈñÇQ9‹­ã^~ŽÄ{åÆ{Ýéuƒ±gÏé¸F€H´»Öh5âÝ–’Jq¿´T:5$<½Z…8IsE‡ëðT""Ëy#÷æ<ù0s¸ °á·ƒ|ï°§EýŒ³ÞŠ›,F;½ßæB7“ïR‰ ïÒ›‡=& \‹Rš\*Y +¹ºÉ¥i Ö¢³:a¶â‚|”nì¢G¤ Œ?ÒEQÌŸez`ü|!Ó샀r¶Ôg}+`ü©{A¢iÉÄÍœuЫèv½¬ZT–V¨¤yEÆæ|¢\W÷:BMT½ôÃqï°‡øðSã¹ã\º7‡'8~ËqD–zðWxé¡íŒ½ÓN¶1ÅÌŽ–¼N1¼ +N6PåèìjrÒâ!q¡ùT™³-‡Q„„ç¢U;Õ¥¥8ìvÈÿ¿ ˜]qѽ¹ 3Úæ}¾°\ÿ6tÚ 0oê¤ÌÞ§É[ßvTóxýǦ#_³¥ºH—U¡—¨¡pº« +ÙåS}ý/å<TÇ4¨ 1ö³ÛبïÌL\;3ÀµR +…2 lö‚­ì!Dyÿ?£ `yÔdfjÄY@r@£z€éè{0$òaZ#6³òÀåŸDÚù»†ZGÚÁZVfëjÚÓÜ%`øب?á‘#³GöÿÇ&vhŠêÍûT»§©±Ö1l?æTÿæÖLVá¿r«¡I[£„=€ÎTk$ V2%#ÓdiLÚ÷)#Ó£þ<ö:RL“ÅÜ¢äïY$fÕO|èpü=ˆý‰Jr@$x(@\B –Âp¸œë¾`!|$u¾5"°þ&sSIt| +®„ +@4X^½„`5!<7Õ<Ÿ+ç¹ÁDÿ£Zïbw€Ò÷7t×J¿ùSÒ‚W¢£" + õ…„E†Ô´·“íRx·¸N?÷Ùá…D?ŽŠ%c7ndÞâfËÙè¨ÞAZ«ë9†œÌÿÁx~>…1ªœg}c´=ŠñÂ¥lÈ[µ!îwB_¤"UÒŠÊZZKè4­Em;Z +Å ÖÚŠ›Õ¶âNºƒéìì$°ùL¡±´Ã„Ýiûú˜#ù4í"\„kù±Ÿ˜˜X&þŸÁ­jÄ7(Ô>ùføÒ“3‰ÝäÆï·ÙNÑ>ã°eoIÝà\)…!ðé7áâ'ÀÒb;÷7ÍŸsJž_¶iiddÿP5^ù1¢HçgPiºt¼¤÷Lá'RîA¶è +xð—yà/š ì+8¯)mèŒä› û>y¨J½÷+ ¹¦aÂ+›QÎK<ê艷AbïÏžÆ.ƒÆ™ðC±+¹çÛàÂÁb¾Ë¬Ígc$ÒÃÇfŽÔÄe2J&Å.S÷¿ð—ü5k k¤u›™Mq’¾ñ"bgÌ .)·×M+÷¼VuâÞ\ù´§Ýf—Œ Á¨»¯¤Ë×€C³«2x…/¤B [5žÅÁÙõx!x»‘k»¦îžÙ·Š€ûÄø"ÒXk4Hš[Œ-4þ @I&“’’ÔrŸ¾•jª´)Ä ÆŸÚžÐ±±%F<Îßu¼ã¨ý¨; V³+Ú÷Û:v3bW`¯ŒÊ$322Y`ïA=ÒFµTH´zŽó§(6"d³fb1«BÍ`\õ÷`ÈÀŽ³>°EäXk툌ó̓Ös·; +±žºV«¥ƒ»a2©,R&Ëb2aôˆ[ß\S"Ñ×ê©Î÷«’³k¬{ç@ñ˜v€³ÜŠ•ÊHø$<Fò±³Ï³½²˜%®VC;ƒŽÝJ¥’))©ÌÖÀ±{ô»É¶jKŠ<áo4gš•õs‹Ç¶×¶—£½>L£½¾óÞ2[èIìì&¹Y¢Íj( ë¥Ý´»×M¹CÂM&ĉÖÔ!éüôl«$ô^ê°GÂZQ}ØàÅíŒËÚ/íçë¸e:¢ ”\¡ å\Åzµe YäfƒøÛHà×\(@²æeŽ‘_4ìå’ µ!rnŸB® 9KÓéí¨±éç÷»Ê¹+mÈ ã¸æeåD‹Ógàùdvyº4_SÍ-3é)ÝëvS½!á 6í^æ ò˜X¨„óÆçÔ²ú 7‚·°úqTMl² +ØT.Uè(ˆá µo•(n]òkÊ[Y˜Ûânì5sHê.tŸ9#À¼¥D¨Ô}§‡ ;ê¾–èE—°P:E‹Õ¿ÚÆ=±ÁˆÃigvµ3&3Ž)ÁO¯U¿‚F§ÃA:µú³“ÖI‹˜´R--…‚ðô#pž"µr{ +¯@þ€:«l=&[]£É,nµ5‡¥×ßOxÐ£Ø |5¸F§)-ÑòäŠ"¥4-½gÂëö4í£ÜX!vh&ò‹Ø—NM{¼ªÐ•“À~Û^ô¥Š´æ-ªxm|¥8ç´ÃP\@øe(VR¶“*%wR;Øx‹n ÉóŒ–HžÚq÷3dÄíùü´G} ŒcûS6«s·ñqÜuŒv9yþëÁß¼ 篋ŽHXÝ»¾¬:ÈŠÎqÞ¸ÇûçÂb€“¢Ó³ oÉËh‹•ÊåeÙDŽ&kGZšõ’¾x+Àç>²[êñÝîŠfD½-M#—¾¸ô$XæŸwŸõ|TPh!ê×#ÂK\ºYÎÛ÷€®ç:žÄÊØ%ì[¢¶¹-IªÎÕ—dË‘-Û“×-‘`pþéçÀ3Înº¾ÇÊ@ÐWÕ‹§ó3ÈO¢AM—kÄ5Vª½KÂúÿÅy•G5uåa¾<<µÑæ‘3&±ïUíTÇ­ÖÚb[ëFml+‹lQ ’BHØBH`ð‚ !ˆI@’ý÷¥è{ÑÔ¿‹7¹“å%³éßd6yÉŒz”L€¶íë?µÓ{8lAëJ(ÃAŽØÇ–®Coøq81NQ¨áX…à2ë ­²aÁ¸4•ƒl—`À3 üæy°?c@-䪷mÎ^£)䥶 ÖŠ­¡×èd">”=§ÎEÐ?qÅR‰Xl“R”ÝFQ»˜Ñ››îN=>øË9ß›lû¼=€ è,Õ²œT\œ“–›-ÈÍ/ÑåF!ÒßÞÔÖH¸öXNœãcg"è.e³S”Ô&K¤b±]Bìú1kñ7ÆZPu4¯Dy«Ä-f¾õèÃ9ôAœÔ+äÅ+©ì¡‚8I¡"ƒÀÎ/_Å”•géãAêýçÂ÷3s1>ì$÷ÿL&ìœ7†XÿcZü×´fWË]ô"—oãèñzÆ)ξÀ‡ù˜}ÀsgÀ9Pðól0™0ÓÜ_ûáÈ?> âöˆkøÁ> Ý£—õ¹ªòéÿp¤gî{Ùö^À~¸ —>Ÿ€@(šÑ¸¯È)°Ùô•5` ".ëëLŸŸ<çÜôèÄüœ,»¶h B^y&)û¡¼¸\_Ž;kÚö +n÷Í…Èò÷×FTw + 6õ0äCôKû}™½ËãG¿òÜP/Ü®ñô®FÛ·}cnÅ•“ë¦pãF8E£Î&®C¾HˆYó:v׫`Ž/cÕ˜KË«ˆ['/¤}ºa=œ(>×ÁËg;uvi’šp6œ6&›8•ÏÐrGƒÜÎT&oe°—‡÷ÍVXizIÎC4¡Ø×Ç:÷u6[ei•¸•…í.“ÌnÐdè³ÒÄk“®¢ïêSÖ š\…J*ˆQÖí#˜1¹ åà+…H+ºGÐЉçUf©DÙ[T¼RI‰TÊÇ–¡& (û»¼þ°Ç·&©<˜ë ‹Ç«ý ÑðÏV~òfÖž38èz&uð4°ø-0½«ÙTïÀ1ñÉ£ÈfRB¦â6&á©g$<ÛmÊ ƒ)Žn€!Ìä?„ ÐÀ?¹¦†š¦zS7Õ&kEdr²H—<éµT´Dvh·k2ùÙ…iJ3]!‹ÈˆäÁA;RX½ÕXί.×3V³[‡8Ðx­Œ×Å{·ºI³ÖiÈå {³–É]ÑZÓâÏïC¨s w;àd0™q@à3nžD%QJjêÖrm™o6l:¼Í7NOÆÅÅëâ¼qd=Yk[È» /!ûYWAÖŽ3™¦Á_}¬ºcæ“ö£þXÿ)0¿þð{Žgóa<™”$Ò%‚ClÚ*•Œ¯&UTâ_ÂWsb²b³cyX DAG¾-ߦ¦xé,vÎX3½¨ò±Ó³ l -Á@;(ã‚ )ßnÔ™&Çû,8~Œ`ÿìzowäA¹^j%-¤EYÁð0 .¿ƒKµ&¯0ŸчYçNw-5xu*Fý¾»=o»²Bó”XuV ³1 èW¥9º¼JM%Ï;Tž¼Ë§8F°. )¸¬e¸ëæb# h'RPC+ø“Þ\‚·>xáè{ì$kI“z‡Þ¿7;}µ"RZÄ#Y¹é•Æ«Y²Í6Ï.Þ}V£Ä÷I‹ñ+àû‘ ¶äW ó¯%ÿj@–Ô‰^õCâÀ `¿cõÃØ¥µß™gv½-\Ñð½ôû"Qý*µ¼ßìRÂ;¬&ŸŸ;¿wâd9á’†ïÛÌX—ö,é]ºd ¤Oé­íiêïœ*Ù9­köl©ïÞìßURýÌNj.L Ëfõb_Ú2cÕĦOœ,9gÆÌþmÒ6EÙËw°MÿmÁÒÞZ_S]ÏQ”•]–#œºj߆%ÛÖÍ”ß7Ç体8„‹~ûþPÅLߣÅ0“ +–ší Їïý—z_8ËAx“ ê¸\¢*¹ßìÇô‹p^Vï”Ïÿé:ÿwßÔïS{پϛúçðö}\÷¹ïOãáýþPäÇrQ€ËßÊñ +endstream endobj 869 0 obj <>stream +H‰bd`ab`ddTô +ó ñqÒöHÍ)K-ÉLNÔ Í))JtÎÏ-(J-.NM)Rø!ÍøC„å·õï¾_5¿ Ye&jð~¯åÿÞ&¸áGŠHÍ4çü‚Ê¢ÌôŒdMCK  ii& Sò“R‚+‹KRs‹<ó’ó‹ +ò‹KRSôsr‚@z‹‚R‹S‹Ê€¢p)d+$*•’š›X”­Ÿ¦à“™—_RYª T”£à讘—¢Ÿ_¤ 4 ¸4©83%3±(3µXø„ÄX™EC*®)ð)tgf\óžù»¤ØwfõßÌì|Í~zÀ¸ü뙯ÌË¿‹‰ê‰¿þrï¶Wr?‚Ù¿3E¬16ŽÌúÍ$÷u†èò™sf/˜Y•/÷'½¼3+/»så29¾e?¶^uün-ô]è«ð†Ý?¶ŠÞü³õëÏ6ုäŠÀ& ßg¾þ µåûÑïWEßDÎNÌË©-¯ûľ¤þŠ}åEr¿¥¾~çd‘~PM#)ÄXîO$»éÎØgß¹œ½*§Ø$ZÖU”—ѽj…Üwcö,Y>±ªHŽ¯væϘ™¿õ&±}_?áQÿŸþnv¹ašb3ÿóp^ãzÍýý¡È÷¥¢ˆËO +endstream endobj 870 0 obj <>stream +H‰D’oLSWÆÏ¥½÷²áî¤w"r{uÁ„ e©  ¢ ìÆ&ZÚ[m,mmùW™ â¢%KŠDP7‡l0¶X$sjpF7Ìt«¸’¸êÌ>t_øô8Ùif¶ûáäääyÞ÷÷>ïe:1 #Wl¯ª­Ü¸úmÅÖª4[MÆ-J‹’]¥˜­-M%»9¦YSœ¬&Ķxrñ6 ¡ƒá—Àö2ô&~µ\}Y.q8;\ÖÝ{šå S¦œWX˜+ëÍŽFE~·Ãݬ4¹år»Éár:\ÆfÅœ#Ëz›M®‰éÝrâV\­ôõ? +Ùê–r³ËhVšŒ®½²Ã"WZíŽæ§"ëËd£Ý¼Æá’­Ôënit[ÍV£Ëª¸sý”ŠV¡×Ñ”‹òÑfTªÑVTƒjQÚŽêQ"Å!Ê@Uè ú-2ÉÌn¦‡¹·4Î÷@•¨Ú¦:%=G!E3 œ¸k/Õ)„ãÄ¡hŸúù]0ôD =õæpªIXŠ¯¡ú"¤êáóH4‰PÓˆ^•XfJš«ô%8y•Êàoîn`ìâÔs“e©-‹Æ0^Xýžý§t„g§ÓyÊÂY!f„ê«(ìœÖ’¢+tþLȺB³)‚¢4›<’»“fS$J‚ÿ£‡¿ùß $ÍS¾~ƒçH“YÓ +ëÂXŠŒÐŒK)ÈI©(î_ é¼8WîåÇ<ÎÉâT¢y%©"ö¹mn\¾4¨ëåŽÃ-Ñ~¤/¨µ_†tNÎÞ¼ExI=A¼.¨ù2’7óyóâ=q'áDíYþ¶-DÒˆj㇫òGç’øÇûí¡}¦eõö¦­U-£?K«ÛøW/TÂr`ýüï–‰¢s’8»ù,[3Ø>XvytpâÇ~Ó.ÉCóöc!Ä<¤a|Š´Aò˜#qß´Ý=ìø)Ä{èÞŸjéìè ø$´² "Ùz^0xÂ%3ØÒöÿÄv%Íÿ»®Éè¾ÚØ´c‡s𦄓诹„'º)Kèæ•áKç¤cœ “Êð–Ö…Æ6çˆã><¦…ìè÷ž¬µÓý‰%µóãÞÞNèÌçÅq¯¿ßëO•wìT^ƒ |-…°\~4ƒõr98ƒ<þ…?©ñÃJ?_œx|"zÍLJ_”]¯àóÚKŒ9‹ +endstream endobj xref +2 1 +0000507651 00000 n +21 1 +0000507745 00000 n +23 1 +0000508028 00000 n +25 1 +0000508299 00000 n +27 3 +0000508582 00000 n +0000508865 00000 n +0000509324 00000 n +32 1 +0000509586 00000 n +35 1 +0000509842 00000 n +37 1 +0000510098 00000 n +39 1 +0000510354 00000 n +233 1 +0000510646 00000 n +500 1 +0000510757 00000 n +778 1 +0000511044 00000 n +807 6 +0000511209 00000 n +0000530572 00000 n +0000531006 00000 n +0000531118 00000 n +0000531232 00000 n +0000531775 00000 n +815 2 +0000532263 00000 n +0000532489 00000 n +819 2 +0000532811 00000 n +0000533272 00000 n +823 2 +0000533804 00000 n +0000534052 00000 n +827 2 +0000534404 00000 n +0000534766 00000 n +831 1 +0000535105 00000 n +833 1 +0000535545 00000 n +836 6 +0000536059 00000 n +0000536313 00000 n +0000536665 00000 n +0000536927 00000 n +0000538261 00000 n +0000538686 00000 n +844 2 +0000539119 00000 n +0000539523 00000 n +848 6 +0000539926 00000 n +0000540112 00000 n +0000542374 00000 n +0000542861 00000 n +0000566292 00000 n +0000566504 00000 n +856 2 +0000566826 00000 n +0000567010 00000 n +860 11 +0000567307 00000 n +0000584057 00000 n +0000588387 00000 n +0000588744 00000 n +0000591649 00000 n +0000595906 00000 n +0000602404 00000 n +0000608571 00000 n +0000610042 00000 n +0000617268 00000 n +0000617852 00000 n +trailer +<]/Prev 491331 >> +startxref +619091 +%%EOF diff --git a/src/Static/data/Standards/6/IDDRS-6.20-DDR-and-Transitional-Justice.docx b/src/Static/data/Standards/6/IDDRS-6.20-DDR-and-Transitional-Justice.docx new file mode 100644 index 0000000..f2d0044 Binary files /dev/null and b/src/Static/data/Standards/6/IDDRS-6.20-DDR-and-Transitional-Justice.docx differ diff --git a/src/Static/data/Standards/6/IDDRS-6.20-DDR-and-Transitional-Justice.pdf b/src/Static/data/Standards/6/IDDRS-6.20-DDR-and-Transitional-Justice.pdf new file mode 100644 index 0000000..06c23b1 --- /dev/null +++ b/src/Static/data/Standards/6/IDDRS-6.20-DDR-and-Transitional-Justice.pdf @@ -0,0 +1,1798 @@ +%PDF-1.6 %âãÏÓ +1 0 obj <>/Metadata 749 0 R/AcroForm 813 0 R/Pages 2 0 R/Type/Catalog>> endobj 749 0 obj <>stream + + + + + 2009-12-09T17:08:57Z + 2009-12-09T17:12:33Z + 2009-12-09T17:12:33Z + Adobe InDesign CS3 (5.0.4) + + + + JPEG + 256 + 256 + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4AE0Fkb2JlAGQAAAAAAQUAAhHY/9sAhAAMCAgICAgMCAgMEAsLCxAUDg0NDhQY EhMTExIYFBIUFBQUEhQUGx4eHhsUJCcnJyckMjU1NTI7Ozs7Ozs7Ozs7AQ0LCxAOECIYGCIyKCEo MjsyMjIyOzs7Ozs7Ozs7Ozs7Ozs7OztAQEBAQDtAQEBAQEBAQEBAQEBAQEBAQEBAQED/wAARCAEA AMYDAREAAhEBAxEB/8QBQgAAAQUBAQEBAQEAAAAAAAAAAwABAgQFBgcICQoLAQABBQEBAQEBAQAA AAAAAAABAAIDBAUGBwgJCgsQAAEEAQMCBAIFBwYIBQMMMwEAAhEDBCESMQVBUWETInGBMgYUkaGx QiMkFVLBYjM0coLRQwclklPw4fFjczUWorKDJkSTVGRFwqN0NhfSVeJl8rOEw9N14/NGJ5SkhbSV xNTk9KW1xdXl9VZmdoaWprbG1ub2N0dXZ3eHl6e3x9fn9xEAAgIBAgQEAwQFBgcHBgI7AQACEQMh MRIEQVFhcSITBTKBkRShsUIjwVLR8DMkYuFygpJDUxVjczTxJQYWorKDByY1wtJEk1SjF2RFVTZ0 ZeLys4TD03Xj80aUpIW0lcTU5PSltcXV5fVWZnaGlqa2xtbm9ic3R1dnd4eXp7fH1+f3/9oADAMB AAIRAxEAPwDrfqx9WPq3kfVvpN9/ScG223Bxn2WPxqnOc51TC5znFkkkpKdL/mn9Vf8Aym6f/wCw tP8A6TSUr/mn9Vf/ACm6f/7C0/8ApNJSv+af1V/8pun/APsLT/6TSUr/AJp/VX/ym6f/AOwtP/pN JSv+af1V/wDKbp//ALC0/wDpNJSv+af1V/8AKbp//sLT/wCk0lK/5p/VX/ym6f8A+wtP/pNJSv8A mn9Vf/Kbp/8A7C0/+k0lK/5p/VX/AMpun/8AsLT/AOk0lK/5p/VX/wApun/+wtP/AKTSUr/mn9Vf /Kbp/wD7C0/+k0lK/wCaf1V/8pun/wDsLT/6TSUr/mn9Vf8Aym6f/wCwtP8A6TSUr/mn9Vf/ACm6 f/7C0/8ApNJSv+af1V/8pun/APsLT/6TSUr/AJp/VX/ym6f/AOwtP/pNJSv+af1V/wDKbp//ALC0 /wDpNJSv+af1V/8AKbp//sLT/wCk0lK/5p/VX/ym6f8A+wtP/pNJSv8Amn9Vf/Kbp/8A7C0/+k0l K/5p/VX/AMpun/8AsLT/AOk0lK/5p/VX/wApun/+wtP/AKTSUr/mn9Vf/Kbp/wD7C0/+k0lOb1b6 sfVuvP6KyvpOCxt2c9ljW41QD2jDzX7XAM1G5gPxCSnS+qf/AIlejf8Apvxf/PNaSnWSUpJSklKS UpJSklKSUpJSklKSUpJSklKSUpJSklKSUpJSklKSUpJSklKSUpJTk9Z/5R6F/wCnCz/2xz0lK+qf /iV6N/6b8X/zzWkp1klKSU0c7PtxrdlbWuDGCx8zJBcGQI+KfGAIWk0zz8u3G2NqDSXB7iXTAFbd 3aOUIRBSTSHE6nbkXsa5jW12l7RE7gWNDjP3p0oABAlboqNcpJSklKSUpJSklKSUpJSklKSUpJSk lKSUpJSklKSUpJSklOT1n/lHoX/pws/9sc9JSvqn/wCJXo3/AKb8X/zzWkp1klKSU4/Vmn7VuG4O NTRUROrxZxp5KXHsslun6hlU2NZj79rH2FlrtRAZBcPxCEIndMi18SHZ7AwaC6+z+w9rdh+BRl8q Bu0c7q+VV1LKxxnejUy6tj/bV+gYX4AB3OYY3i+z6c+XCMYAxGn8tVplrv8Ay0Z9A6r1PL6lZVmO e6j9M2lzm1hj21DG9N7NjQ+XtsLzOmuiGSERHRMJEnVhh/XQ5jH2sw27KwS4tu3c1W317f0XDm1a zBE8Iyw8PVUcvEGb+q9Q/Z+H1T1jrblerTUazVY2kZD2N9Q0OdH6IDc0DTtKHCLIVZoFmz61uf1G zp7cVjjTY1lj2XboabWY7iG+nMixztDHEpe1pahks01j9bMi1+K+uprGZGRj0WAWtcB6rrhFbvRh zv0fu+4R9JH2hqg5Nktf1xL/AFnnFaKqG7n2eqXDWizJEbaTx6Za/wAD4pez4p93ds9J+sDczBy+ pZhbjVV3ioAua9tZ21sINjNCPUJ9ybPHRACYzsW1ML6232UYtVuOw5T/AEqb99obtuc+ypzdrK3e 6a5gDg+CdLELKI5DQVR9bbvQdY+muywU1XFnrBm420ttiqao2NP0nPd7eZ4CRxC1DJo9Dh5BysSj Kcz0zdWywskO2l7Q7buboYnlRSFFeDYTIJUkpSSlJKUkpSSlJKcnrP8Ayj0L/wBOFn/tjnpKV9U/ /Er0b/034v8A55rSU6ySlJKUkpSSlJKUkpSSlJKUkpSSlJKUkpSSlJKUkpSSlJKUkpSSlJKUkpSS lJKcnrP/ACj0L/04Wf8AtjnpKV9U/wDxK9G/9N+L/wCea0lOskpSSlJKUkpSSlJKUkpSSlJKUkpS SlJKUkpSSlJKUkpSSlJKUkpSSlJKUkpSSnJ6z/yj0L/04Wf+2OekpX1T/wDEr0b/ANN+L/55rSU6 ySlJKcPr3Uuv4WRWzpGG3JrcyXucxzodJ09r29klOZ+3vrr/AOVbP+2rP/SqSlft766/+VbP+2rP /SqSnrmkloLtCQJHmkpdJSklKSUpJSklKSUpJSklKSUpJSklKSUpJSklKSUpJSklOT1n/lHoX/pw s/8AbHPSUr6p/wDiV6N/6b8X/wA81pKdZJSklPPfWTLZj5NTXdYd0ya59NtDrd2p90t4SU4/7Tr/ APnps/8AYR6SlftOv/56bP8A2EekpX7Tr/8Anps/9hHpKV+06/8A56bP/YR6SlftOv8A+emz/wBh HpKV+06//nps/wDYR6SlftOv/wCemz/2EekpX7Tr/wDnps/9hHpKV+06/wD56bP/AGEekpX7Tr/+ emz/ANhHpKV+06//AJ6bP/YR6SlftOv/AOemz/2EekpX7Tr/APnps/8AYR6SlftOv/56bP8A2Eek pX7Tr/8Anps/9hHpKV+06/8A56bP/YR6SnsOnPFmBjvFxyQ6tp9ctLDZI+ltPEpKbKSlJKUkpyes /wDKPQv/AE4Wf+2OekpX1T/8SvRv/Tfi/wDnmtJTrJKUkpwfrDfmVZNQxr+n0tLJIzXNDiZP0d3Z JTk/bOq/9zeif57P7klK+2dV/wC5vRP89n9ySlfbOq/9zeif57P7klK+2dV/7m9E/wA9n9ySlfbO q/8Ac3on+ez+5JSvtnVf+5vRP89n9ySlfbOq/wDc3on+ez+5JSvtnVf+5vRP89n9ySlfbOq/9zei f57P7klK+2dV/wC5vRP89n9ySlfbOq/9zeif57P7klK+2dV/7m9E/wA9n9ySlfbOq/8Ac3on+ez+ 5JSvtnVf+5vRP89n9ySlfbOq/wDc3on+ez+5JSvtnVf+5vRP89n9ySnrOnue7BodY6t7zW0udTrW THLI7eCSmwkpSSlJKcnrP/KPQv8A04Wf+2OekpX1T/8AEr0b/wBN+L/55rSU6ySlJKef+seJfkZN TqulM6iBXBsfZs26n2xuakpyP2Zmf/O1V/29/wCpElK/ZmZ/87VX/b3/AKkSUr9mZn/ztVf9vf8A qRJSv2Zmf/O1V/29/wCpElK/ZmZ/87VX/b3/AKkSUr9mZn/ztVf9vf8AqRJSv2Zmf/O1V/29/wCp ElK/ZmZ/87VX/b3/AKkSUr9mZn/ztVf9vf8AqRJSv2Zmf/O1V/29/wCpElK/ZmZ/87VX/b3/AKkS Ur9mZn/ztVf9vf8AqRJSv2Zmf/O1V/29/wCpElK/ZmZ/87VX/b3/AKkSUr9mZn/ztVf9vf8AqRJS v2Zmf/O1V/29/wCpElPXdOY6vAx2OqGO5tbQaQZDIH0Z14SU2UlKSUpJTk9Z/wCUehf+nCz/ANsc 9JSvqn/4lejf+m/F/wDPNaSnWSUpJTl9W+rnTus3MvzPU3Vt2N2O2iJnwPikp5nqXROj9PynYzen 9QyQ0A+pUZaZE87ElNX7D0j/AMqeqf6/2ElK+w9I/wDKnqn+v9hJSvsPSP8Ayp6p/r/YSUr7D0j/ AMqeqf6/2ElK+w9I/wDKnqn+v9hJSvsPSP8Ayp6p/r/YSUr7D0j/AMqeqf6/2ElK+w9I/wDKnqn+ v9hJSvsPSP8Ayp6p/r/YSUr7D0j/AMqeqf6/2ElK+w9I/wDKnqn+v9hJSvsPSP8Ayp6p/r/YSUr7 D0j/AMqeqf6/2ElK+w9I/wDKnqn+v9hJSvsPSP8Ayp6p/r/YSU910prGdNxmVMfUwVMDa7fptEcO 41SU2klKSUpJTk9Z/wCUehf+nCz/ANsc9JSvqn/4lejf+m/F/wDPNaSnWSUpJTzX1ouxasqkX9Vy OnE1yK6A8hwk+47CElON9r6f/wDPJn/5t3/kklK+19P/APnkz/8ANu/8kkpX2vp//wA8mf8A5t3/ AJJJSvtfT/8A55M//Nu/8kkpX2vp/wD88mf/AJt3/kklK+19P/8Ankz/APNu/wDJJKV9r6f/APPJ n/5t3/kklK+19P8A/nkz/wDNu/8AJJKV9r6f/wDPJn/5t3/kklK+19P/APnkz/8ANu/8kkpX2vp/ /wA8mf8A5t3/AJJJSvtfT/8A55M//Nu/8kkpX2vp/wD88mf/AJt3/kklK+19P/8Ankz/APNu/wDJ JKV9r6f/APPJn/5t3/kklK+19P8A/nkz/wDNu/8AJJKe06Y5run4zmWuyGmppFz53PEfSdOslJTa SUpJSklOT1n/AJR6F/6cLP8A2xz0lK+qf/iV6N/6b8X/AM81pKdZJSklOH1/IyqcisUZ+Jhgsksy QC5xk6iQdElOX9u6j/5d9M/zW/8AkUlK+3dR/wDLvpn+a3/yKSlfbuo/+XfTP81v/kUlK+3dR/8A Lvpn+a3/AMikpX27qP8A5d9M/wA1v/kUlK+3dR/8u+mf5rf/ACKSlfbuo/8Al30z/Nb/AORSUr7d 1H/y76Z/mt/8ikpX27qP/l30z/Nb/wCRSUr7d1H/AMu+mf5rf/IpKV9u6j/5d9M/zW/+RSUr7d1H /wAu+mf5rf8AyKSlfbuo/wDl30z/ADW/+RSUr7d1H/y76Z/mt/8AIpKV9u6j/wCXfTP81v8A5FJS vt3Uf/Lvpn+a3/yKSnqMBz34VDn2Muca2k2V/QcY+k3yKSmwkpSSlJKcnrP/ACj0L/04Wf8Atjnp KV9U/wDxK9G/9N+L/wCea0lOskpSSnE67iZuRkVuxunYuc0MgvyI3NMnQSRokpzf2Z1b/wAounf9 H/ySSlfszq3/AJRdO/6P/kklK/ZnVv8Ayi6d/wBH/wAkkpX7M6t/5RdO/wCj/wCSSUr9mdW/8oun f9H/AMkkpX7M6t/5RdO/6P8A5JJSv2Z1b/yi6d/0f/JJKV+zOrf+UXTv+j/5JJSv2Z1b/wAounf9 H/ySSlfszq3/AJRdO/6P/kklK/ZnVv8Ayi6d/wBH/wAkkpnj9K6g6+tuR0Pp7KS9osc3aSGE+4gT 4JKdr9gdE/7g4/8A223+5JSv2B0T/uDj/wDbbf7klK/YHRP+4OP/ANtt/uSUr9gdE/7g4/8A223+ 5JTdqqrprbVU0MYwBrWtEAAcABJTNJSklKSU5PWf+Uehf+nCz/2xz0lK+qf/AIlejf8Apvxf/PNa SnWSUpJSklKSUpJSklKSUpJSklKSUpJSklKSUpJSklKSUpJSklKSUpJSklKSUpJTk9Z/5R6F/wCn Cz/2xz0lK+qf/iV6N/6b8X/zzWkp1klKSU4nXsL6xZORW7o2S2ioMh7XOiXSdfoO7JKcz9lfXr/y wr/z/wD1EkpX7K+vX/lhX/n/APqJJSv2V9ev/LCv/P8A/USSlfsr69f+WFf+f/6iSUr9lfXr/wAs K/8AP/8AUSSlfsr69f8AlhX/AJ//AKiSUr9lfXr/AMsK/wDP/wDUSSm70fA+tOPnMt6plsuxgHbm NdJJI0/Mb3SU9CkpSSlJKUkpSSlJKUkpSSlJKUkpSSlJKcnrP/KPQv8A04Wf+2OekpX1T/8AEr0b /wBN+L/55rSU6ySlJKeb+s9eG/KpOTjZ97vT0OH9ECTo7zSU43odL/7gdZSUr0Ol/wDcDrKSleh0 v/uB1lJSvQ6X/wBwOspKV6HS/wDuB1lJSvQ6X/3A6ykpXodL/wC4HWUlK9Dpf/cDrKSleh0v/uB1 lJSvQ6X/ANwOspKV6HS/+4HWUlK9Dpf/AHA6ykpXodL/AO4HWUlK9Dpf/cDrKSleh0v/ALgdZSUr 0Ol/9wOspKe06aGDp+OK22MYKm7W3fzgEcP8/FJTZSUpJSklOT1n/lHoX/pws/8AbHPSUr6p/wDi V6N/6b8X/wA81pKdZJSklPO/WXLx8fKqbd1S/p5NciuljnB2p9x2pKcf9pYX/wA8eX/209JSv2lh f/PHl/8AbT0lK/aWF/8APHl/9tPSUr9pYX/zx5f/AG09JSv2lhf/ADx5f/bT0lK/aWF/88eX/wBt PSUr9pYX/wA8eX/209JSv2lhf/PHl/8AbT0lK/aWF/8APHl/9tPSUr9pYX/zx5f/AG09JSv2lhf/ ADx5f/bT0lK/aWF/88eX/wBtPSUr9pYX/wA8eX/209JSv2lhf/PHl/8AbT0lK/aWF/8APHl/9tPS Ur9pYX/zx5f/AG09JT2PTXtswMd7LXZDXVtIueIc8EfSIPikpspKUkpSSnJ6z/yj0L/04Wf+2Oek pX1T/wDEr0b/ANN+L/55rSU6ySlJKcPr+RlU5FYoz8TDBZJZkgFzjJ1Eg6JKcv7d1H/y76Z/mt/8 ikpX27qP/l30z/Nb/wCRSUr7d1H/AMu+mf5rf/IpKV9u6j/5d9M/zW/+RSUr7d1H/wAu+mf5rf8A yKSlfbuo/wDl30z/ADW/+RSUr7d1H/y76Z/mt/8AIpKV9u6j/wCXfTP81v8A5FJSvt3Uf/Lvpn+a 3/yKSlfbuo/+XfTP81v/AJFJSvt3Uf8Ay76Z/mt/8ikpX27qP/l30z/Nb/5FJSvt3Uf/AC76Z/mt /wDIpKV9u6j/AOXfTP8ANb/5FJSvt3Uf/Lvpn+a3/wAikpX27qP/AJd9M/zW/wDkUlPUYDnvwqHP sZc41tJsr+g4x9JvkUlNhJSklKSU5PWf+Uehf+nCz/2xz0lK+qf/AIlejf8Apvxf/PNaSnWSUpJT z/1jx8q7Jqdj9Nx88CuC+97Wlpk+0brGJKcj7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr 7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6 WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7 dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd /B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSUr7D1L/wCd/B/7dZ/6WSU9d05r2YGO2yptDhW0OqYZawx9 FpBOgSU2UlKSUpJTk9Z/5R6F/wCnCz/2xz0lK+qf/iV6N/6b8X/zzWkp1klKSU8z9asfHuy6XXdM ys8iuA/HLg1up9p2tdqkpxPsOD/87/Ufvs/9JpKV9hwf/nf6j99n/pNJSvsOD/8AO/1H77P/AEmk pX2HB/8Anf6j99n/AKTSUr7Dg/8Azv8AUfvs/wDSaSlfYcH/AOd/qP32f+k0lK+w4P8A87/Ufvs/ 9JpKV9hwf/nf6j99n/pNJSvsOD/87/Ufvs/9JpKV9hwf/nf6j99n/pNJSvsOD/8AO/1H77P/AEmk pX2HB/8Anf6j99n/AKTSUr7Dg/8Azv8AUfvs/wDSaSm103ovTM7LbjXdHzcRjgSbbXPDRAmNWDlJ Tsf8yOgf6Oz/ALcKSlf8yOgf6Oz/ALcKSnaxserEx68WkEV0tDGAmTDRASUlSUpJSklOT1n/AJR6 F/6cLP8A2xz0lK+qf/iV6N/6b8X/AM81pKdZJSklKSUpJSklKSUpJSklKSUpJSklKSUpJSklKSUp JSklKSUpJSklKSUpJSklOT1n/lHoX/pws/8AbHPSUr6p/wDiV6N/6b8X/wA81pKdZJSklOJ17N+s WNkVt6NjNvqLJe5zZh0nT6beySnM/av16/8AK+v/ADP/AFKkpX7V+vX/AJX1/wCZ/wCpUlK/av16 /wDK+v8AzP8A1KkpX7V+vX/lfX/mf+pUlK/av16/8r6/8z/1KkpX7V+vX/lfX/mf+pUlK/av16/8 r6/8z/1KkpX7V+vX/lfX/mf+pUlK/av16/8AK+v/ADP/AFKkpu9Hz/rTkZzKuqYjKcYh257WwQQN Pz3d0lPQpKUkpSSlJKUkpSSlJKUkpSSlJKcnrP8Ayj0L/wBOFn/tjnpKV9U//Er0b/034v8A55rS U6ySlJKea+tGUyjKpa7q1vTZrn066nWB2p90tc1JTjftGr/55sj/ANh7P/SiSlftGr/55sj/ANh7 P/SiSlftGr/55sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSlftGr/55sj/ ANh7P/SiSlftGr/55sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSlftGr/5 5sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSlft Gr/55sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSlftGr/55sj/ANh7P/SiSntOmOD+n4zxccgOqafW cC0v0+kQZiUlNpJSklKSU5PWf+Uehf8Apws/9sc9JSvqn/4lejf+m/F/881pKdZJSklOR1nC63k3 1v6W/FZWGQ8ZDdzt0nj9G/RJTh5B63iWmnK6h0mmwQSx4DTrxoaUlI/tXU//AC06P/0f/SKSlfau p/8Alp0f/o/+kUlK+1dT/wDLTo//AEf/AEikpcZXUYO7qnR57Rt8D/wKSm/0nOore89Yz+m3NLRs FJYCHSZn2M7JKdL9qfVr/uRh/exJSv2p9Wv+5GH97ElK/an1a/7kYf3sSUr9qfVr/uRh/exJSv2p 9Wv+5GH97ElK/an1a/7kYf3sSUr9qfVr/uRh/exJSv2p9Wv+5GH97ElK/an1a/7kYf3sSUr9qfVr /uRh/exJTpUvpsqY/HLXVOaCws+iWniISUzSUpJSklOT1n/lHoX/AKcLP/bHPSUr6p/+JXo3/pvx f/PNaSnWSUpJTk9YzeuY1zG9Lxasistl7rLGsIdPHusYkpw8qvrWbccjK6Hh22OABe61hOmg/wAM kpF9h6l/87+D/wBus/8ASySlfYepf/O/g/8AbrP/AEskpX2HqX/zv4P/AG6z/wBLJKV9h6l/87+D /wBus/8ASySlfYepf/O/g/8AbrP/AEskpX2HqX/zv4P/AG6z/wBLJKV9h6l/87+D/wBus/8ASySl fYepf/O/g/8AbrP/AEskpX2HqX/zv4P/AG6z/wBLJKV9h6l/87+D/wBus/8ASySlfYepf/O/g/8A brP/AEskpk3p3VXCW/V7CI8rGH/0ckpf9mdX/wDndw/89n/pZJSv2Z1f/wCd3D/z2f8ApZJSv2Z1 f/53cP8Az2f+lklPWdPY+vBoZbU3He2todSwy1hA+iNTwkpsJKUkpSSnJ6z/AMo9C/8AThZ/7Y56 SlfVP/xK9G/9N+L/AOea0lOskpSSnN6p9X+m9YtZdmtc51bdjdri3SZ7JKcyz6qfVSl5rueK3jlr 79p18iUlMP8Am19T/wDTN/8AYgf+SSUr/m19T/8ATN/9iB/5JJSv+bX1P/0zf/Ygf+SSUr/m19T/ APTN/wDYgf8AkklK/wCbX1P/ANM3/wBiB/5JJSv+bX1P/wBM3/2IH/kklK/5tfU//TN/9iB/5JJS v+bX1P8A9M3/ANiB/wCSSUr/AJtfU/8A0zf/AGIH/kklK/5tfU//AEzf/Ygf+SSUr/m19T/9M3/2 IH/kklOp0xnQ+kY7sbCyam1uebCHWtcdxDW9z/JSU2/2l07/ALlU/wDbjf70lK/aXTv+5VP/AG43 +9JSv2l07/uVT/243+9JSdj2WND2ODmuEhzTII8ikpkkpSSlJKcnrP8Ayj0L/wBOFn/tjnpKV9U/ /Er0b/034v8A55rSU6ySlJKUkp5rreFZd1B9jehtzwWt/WDdsJgcbZ7JKaH7Nu/+dhn/ALEf7UlK /Zt3/wA7DP8A2I/2pKV+zbv/AJ2Gf+xH+1JSv2bd/wDOwz/2I/2pKV+zbv8A52Gf+xH+1JSv2bd/ 87DP/Yj/AGpKV+zbv/nYZ/7Ef7UlK/Zt3/zsM/8AYj/akp2sb6s9Ftx67MjpzKbXNBfXuc7a4jVs h2sJKSf81fq//wBwmfe7/wAkkpX/ADV+r/8A3CZ97v8AySSlf81fq/8A9wmfe7/ySSlf81fq/wD9 wmfe7/ySSlf81fq//wBwmfe7/wAkkpX/ADV+r/8A3CZ97v8AySSnSopqx6WUUt2V1tDWNHYDgJKS JKUkpSSnJ6z/AMo9C/8AThZ/7Y56SlfVP/xK9G/9N+L/AOea0lOskpSSlJKea63XjO6g82ddt6e7 a39XY9zQNOYDxykpoelh/wDz03/9uO/9KJKV6WH/APPTf/247/0okpXpYf8A89N//bjv/SiSlelh /wDz03/9uO/9KJKV6WH/APPTf/247/0okpXpYf8A89N//bjv/SiSlelh/wDz03/9uO/9KJKV6WH/ APPTf/247/0okpXpYf8A89N//bjv/SiSlelh/wDz03/9uO/9KJKV6WH/APPTf/247/0okpJjYNWZ c3HxvrNk22vnaxtjiTALj/hPAJKb3/NbqP8A5eZv+c7/ANKJKV/zW6j/AOXmb/nO/wDSiSlf81uo /wDl5m/5zv8A0okp3cWl+PjVUPsdc6tgabX6ucQPpHnUpKSpKUkpSSnJ6z/yj0L/ANOFn/tjnpKV 9U//ABK9G/8ATfi/+ea0lOskpSSlJKamR0npmXabsrFqusMAvewOOnGpSUi/YHRP+4OP/wBtt/uS Ur9gdE/7g4//AG23+5JSv2B0T/uDj/8Abbf7klK/YHRP+4OP/wBtt/uSUr9gdE/7g4//AG23+5JS v2B0T/uDj/8Abbf7klK/YHRP+4OP/wBtt/uSUr9gdE/7g4//AG23+5JSv2B0T/uDj/8Abbf7klK/ YHRP+4OP/wBtt/uSUr9gdE/7g4//AG23+5JSSjpHS8W1t+NiU1Wsna9jACJEGCB4FJTcSUpJSklK SUpJSklKSU5PWf8AlHoX/pws/wDbHPSUr6p/+JXo3/pvxf8AzzWkp1klKSUpJSklKSUpJSklKSUp JSxIAk6AJKaH7f6J/wBzsf8A7cb/AHpKV+3+if8Ac7H/AO3G/wB6Slft/on/AHOx/wDtxv8AekpX 7f6J/wBzsf8A7cb/AHpKV+3+iDX7dj/9uN/vSUzt610mh5quy6a3t0cx7w0j4gpKYft/on/c7H/7 cb/ekpX7f6J/3Ox/+3G/3pKX/b3RP+51H/bjf70lNyq2u6tt1Lg+t4DmuaZBB4ISU1r+r9LxbXUZ OVTVY2NzHvAIkA8HyKSlsrrPScFzWZuXTjucJaLXhhI8RuhOjCUtgtlOMdyg/wCdH1c/8s8X/t1n 96PtT7FHuw7hzOrfWPoNmf0V7OoYzm1Zz32EWtIa04eayTrxucAl7U+yvdh3W+rH1n+reP8AVvpN F/VsGq2rBxmWVvyamua5tTA5rml8ggpi90v+dn1V/wDLnp//ALFU/wDpRJSv+dn1V/8ALnp//sVT /wClElK/52fVX/y56f8A+xVP/pRJSv8AnZ9Vf/Lnp/8A7FU/+lElK/52fVX/AMuen/8AsVT/AOlE lK/52fVX/wAuen/+xVP/AKUSUr/nZ9Vf/Lnp/wD7FU/+lElK/wCdn1V/8uen/wDsVT/6USUr/nZ9 Vf8Ay56f/wCxVP8A6USUr/nZ9VToes9P/wDYqn/yaSmv+2vqJ/3P6T/29j/+SSUr9tfUX/uf0n/t 7H/8kkpX7a+ov/c/pP8A29j/APkklK/bX1F/7n9J/wC3sf8A8kkpX7a+on/c/pH/AG9j/wDkklLu 679R3uLn9Q6S5x5JvxyT/wBJJS37a+ov/c/pP/b2P/5JJSv219Rf+5/Sf+3sf/ySSlftr6i/9z+k /wDb2P8A+SSUnZ9afqnW0Mr6v05rWiGtbk0gADsAHpKRWdf+pNzzZb1HpVjzy519BJjTkuSUq3r3 1IvIdf1HpVhGgL78dx/FyIJCKCP9r/UL/ub0f/t3H/8AJJcR7q4Q53VOqfUl2d0d1OX0osZmvdeW W0EBn2TMaC+HfR3lvPeEuI91UH//2Q== + + + + + + 1 + uuid:8ef2c966-ba44-4ebf-842c-42a487a5f33c + adobe:docid:indd:bf11e619-e4b3-11de-b9cf-8f4a44663dec + proof:pdf + + 761bdaca-e4a4-11de-9ece-ceb3f6c6b132 + adobe:docid:indd:d0bbb171-e0a9-11de-9a9d-ca96d1c9032d + 1 + + + + application/pdf + + + Adobe PDF Library 8.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 813 0 obj <>/Encoding<>>>>> endobj 2 0 obj <> endobj 186 0 obj <> endobj 185 0 obj <> endobj 247 0 obj <> endobj 347 0 obj <> endobj 465 0 obj <> endobj 521 0 obj <> endobj 692 0 obj <> endobj 520 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 583 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 647 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 670 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 680 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 691 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 702 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 712 0 obj <>stream +H‰¬WÛnÛ8}÷Wð‘,š¢$K*‚© šlÖv·Éb¡ÊŒÃ­.®.Év¿~‡ɲ” Å&/æŜᙙ33Ô÷ E͆‚ˆ¡’O¾ |ò~3™-Ö%rª’|2ûË]5™mœ¿(lnî'”Pæ£M‚â#©DŽl?¤sĉþÏ&øä)š#kó·ºM*ø&U:R%þ$òoñŽWèIÔ¨¨x‰nÊ"áUÅ+)#/uÌ¥òB¬4o&¿k˜‹µ„¹^\&=!]¡±1âH@.a`¥GB@¥ÁÚõäû íÁè›ìFqÙŒZÜlà,J\ê‚äf;¹ÅËå +ÅùYn€7Vàá2Î+Q‹"StÙTµH¸õçæräÙzç''³³¤nâtÃÿ©O>œøÀ(uOOOÑûå çW0íEÍa„¹ž€Ý@Á4¡çùÇÑ3ØG>›“9 ”ÁÑœiƒÕm†- ç1)w‹çIJ3ËŽ0U¶âv —ïûà£1D>è\{^$Cr?ñ=pràª(zŠ_d~ÿG]í‹Hý¡Ð'Ô<°xÓ1¯ ¡§O¿àsJiôœÏqÁ5ÚÏ_Å– =éXa€[ŽïÀöVc;Ä¥‹ùo†ë߈]ÑL‘eÏ=˜ó²2óÍדE‘eM.êz¹âI‘'"±$©‘+-'Ä*]õFq¯Çº¯DTU'q_”:¾—šÚk­ˆâÒ +q…@í¨ì¬¡–€ûÇ}¾^ÞHhcù>Y¡0ÙŸxUó)ZÂÁ©J²³})RÔ¥TJ‡ÑÆä瑘dì._^“«&­…M^—ÒíÃKž_Áˆ[·ÃžòŒœ¬¸Èk¾+{ÿ™À^6Õ;wŒ¹«'‰aæ™Í‡ºÞ¿›Ížžž¬ˆa’mË=ÑžÛÍJu˜ßËÂÕ HfèljªÑÛ­£­/›ôǘý”†Ã“wÖ/8>xÃø ì–&8>¾V.¬Ô|Í“¦T¼‡Å‚l›˜ã›j*KP§jÅ÷EY+ ™0¨ÐÚ”_y—ZåGžóª¼:œ÷®Ìwj±çq¢eU aÜÊ.Zì3ž×ïÊU|udˆlçàª[¬™JUL£b;˜Îz¦3,r5TÍ^š£Áò൨eÃTÛ)uÎic9Fú BS™;ˆâ-V +/ã¼Q^d)i¿m\Ï0çV^'ºVòH Üz>›Ò}>,»úU1 mÝ‘€Eæâ¹?䶖…¬R¤´=‡Ð¹Ógëz¨÷YÞ¹£$µg2c¨÷MË°£eF—‡d0Wùm ÿe’aGœ· ßGù…l:â6ÝÄ¥¨àq)À‚}Ê«Cñ”#€XUý1L—¾aQZ¬ Úä_’ògrÁïraD™G¦szø·½yNZ]§®‹¤PëºP¿²È&?BiQ=ÄÃú×üµ»‡ºRÛ÷}‰‘n‡EþX¤\Ö'×Ö(ûÕä)¥‰‘#(5q™Ë ßQ7I=E/ý¢ç·l×èc#¶<9|‘€e掮⺆ºPfʪ¨íÿC½8’Zd•zËQë:W_/2¥È8óŒêôª‡ÝQ¨ýŸm·í‡…Åz9ÈHÂ(³ó1VÓ*µ–!`‡W:sC?g[ÒO^ØìÀs#YÑÈswªnUì…qÅÓX· 1èÖFèEŠµ=°6tšˆwÂ~ àÜu‘Ûðp*ó¸õ‹| *6.:6VðÌ9òåÅÅõ3Š½|îð°€ ðí›G}ý'ÀÓ\îË +endstream endobj 10 0 obj <> endobj 38 0 obj <> endobj 20 0 obj <> endobj 22 0 obj <> endobj 24 0 obj <> endobj 34 0 obj <> endobj 31 0 obj <> endobj 105 0 obj <> endobj 106 0 obj <> endobj 742 0 obj <>stream +H‰\“Ýjã0Fïõºl/ŠGšiÁÚ¤…\ì›Ýpl%kØØFq.òö«O_èÂl!i|f$›Ýv7‹-¾Ç©Û‡Å‡±á2]cì!œ†Ñ¬*ÛÝrïåowngS¤ÅûÛe çÝxœL]ÛâG¼,ñf^ûéMñ-ö!ãÉ>üÚìm±¿ÎóŸpãbKÛ4¶ÇèK;mÏÁyÙÓ®OãÃr{JkþÍøy›ƒ­rE™nêÃen»ÛñL]¦§±õGzÆþ¿q¿æ²Ã±ûÝFS¯>Òä²Iï¦1uUæ~j?“ŸÁrž³%oÁïä÷Äë×Ì©1µ[eNMâŠ\×ä5ؑؓ=XÈV²‚éãàã^È/`þ×åÿÒÓÁÓÑÓÁÓÑÓÁÓ1çÔ˜Ú3_|===<===<===<===<===<===<…¹ rÆÄÆÄÆÄÆĹï˜1%Çdî‚Ü…¹ ræ.È]ÞÈo`Ö!ï©°‚:ë ¨ƒÜ÷uPÖAQ¥³ÂYé¬pV:+œ•Î +g¥³ÂYé¬pV:+œ•Î +g¥sjp@ï'G5Ý(ûyºkŒé +äk—Ï>Ný0†Ï›9O³M«ðš¿ ú²êÅ +endstream endobj 720 0 obj <> endobj 741 0 obj <>stream +H‰|UyPiï‚FдshÒ;fj]G¼/f=eXqD¯Ã%h$Gsˆ¨„+éŽÝ ‰ ‚1ë—&-^óî*­N›Ÿ›§OÎ×êr3ø_F)`ÆD•‰#جÿ¥ååDxµœœqą̀ócQ—„¿wf±ÞPlÊÝš“NÈø:-aî¬I|œŽ |L˜ŽÓÃ1|ž07ÐÄL}zšRŒågíÀÐä¼ ½É 7ió³2'£h¢N‡®æ+cèê,,ËTȾFŠæb¨Í7i3³vhMÛQ}6ºœ;Î/6dŘÅ%&&¡Ú¼Ì)zšËåcéXnf®Ö”›…M† ÷A14"RBÐÛ1P|4†ÅA)"(‚fsê@‘ ýÚA^è–`WD|„-Rù ªNΞˆG{EƘ)1æa¿vxöð'bÿÕˆë±q¢8ÝHåHǨE’‰’Ÿ‘LäæèÊÑO¥à­ cƌ锭•õÊW+F+¾R~=Ö:.qÜCµEc±±HpñZ$è¥,ʾŠ+Ù ì*ß>ù‹¨=ÆKpîõ=wz û*ÞÓT±(;Ô‚ÔÈG=Ò]K°¥Ÿ¦8Êd-ž«×¿¼¸+/÷L̓c1€]Áȃ“‚CÂW`ö 0µ€˜w %]/-Èaƒ(éVl붜Ã{ƒÍÇ‹ ê;à)ˆ‘´¿Øô1 çC]Dr®€§Cä3ü4Î ½zu— Ê`†Z™±E’¡åH“Z+EvöÅôý3m f)²È‹,0Ò±#:H¨ÖÖV¢U¬ñE§Òðn²¤Ö¥p¹¼>Õ¿ÀbØ„ÇØU0YFï5+vï)Ë#Ti8¬>Kž¥Îœ=CœåóŒ4Fï²[r‹ÓZO쟂e+Q)% °A˜Õ c?n €¿¶‚“<¿„ÙxoÉD÷84IÚEÀÇmÎòmÛm+ªÌ!§fö‘VL-rDg1§Iåo>I4‹5‡mG‰F‡t‹5 ∹ bÏÎp©¨hdÛí£¯=V€ˆ©G–©¬Âu¶ Äúõ¨uÜÝö…ôG!’ÿã·ÍÄäylÄÖ;­UÿÂü"m$Ó‡H‘Wˆ˜¾û³q.;2þÓñêTòWÅ]Ì»÷˜Ì¦Hæ!ã•6 íµê¿[‘ìMR®›b^9MÍÆÇØ·Q›ò)nû.ßT¹ZËðƦ(Ù÷¹™OÉ?€ù`Ãß¾)ÍêâÆ•ÀéÑμäŸóSpŸÛÞSw.IyÚ…Q˜v3ÙL5÷ô=bKøýE÷ÙoÕ@ÑûP +ÆŽèf—©ö +“lIDRº–ÊkM¸~9u~–’€=¨óŸ}Ä.aS5ìŸØÜOÖÔ8W«Ý”‡r«úçÓη¦ÏŒ~É£^ðć˜€Ü•‚a{;A´«vX°õƒD"Q™-låTUWí’“ŸµÐ­Êö^[>¥®Ò—j.ºÏ‰mT‘4*‘BÛÂ…Ä$ƒ‰ÌW"-$V@bJ\q0Nnæ2+–‡8ö…û²•êî½…÷Š5'yJMyHé¢O¸ºjÛDaÉGæŒò½¸Üš–FlVjÓi{šºnŸ;Ìfã€3Ô®ò”«y<ÌKi?n;iWJÊYçÜOËOÖP>XkM·iµZr³XcÑŸ&š‰#„×*wÕåfE!^d-Rñë; p‚êÍ~jFF*m;A‡#@ËÛhÚëléWŒZ-Öàú/‹—8H¼ô°xçÄ;Í‹·²Ô½¯ 샻ɪ»»‡èk2Øí¥Ë-\¾¼¿Àúp¿ 8Çøø×î3 øZy|†|)<¾óƒñí`Éb±®»Í_àÏ"ŸƒQÒ²å•oÎ×î¾k꯻Þej‚µ|×¾+öU!Šª2E±›~2tÓ/ÈaÆE‚z&$íOn£e¿))Ÿ<³ï†Œ…Jr7ç(w—î³—«i#\åôXÝÊë—¿ìS×úª}vŸˆ÷çøP”_âeì}+{prúµéo„ø{z³Þ°lÎP–­'ÝTƒŠ:P{Ùõ¹H'ܵ¢t³¹¢‚Wl[`dYæöë÷ë* Í÷KBÆ›H ô04\Jjp5‘AŠÇ¤·½^OéÅCªþ“ëX[ß{2v"ó÷7áúãì#ÚˆlE•­Š¨T±ïôÕìY_¼{­EŽaþÉ ÃOíË¢aUàܯpSû«T ŽÙSBNŽ }ßÁG„@â°èß`aç?d#ì¾:”8¸ƒ2ð6k!êm,ž +y]åS•¢ßK”ªfôåY±JcE™¼²¼/!t¸Ì¯>ÐʯYµOKcT mñÈq‡ÍéR8I·l·˜ô~?õ]ƒ;…™Îºo<-v‡ÜîðÒn.]Víƒólÿ#¼ìƒšÈÏ8ê†LK™–mzÉnÍεwãÛï§Ò–zçˆâ +'ï €y!!ÉBÈ{ y!’ò¢ +¢X,ößPôm¯8=ÇñåÚñî·té´ϹÎÍÝÿîüv÷»ßçy>ßgsñ¼Ü¼[ªPiýZk]"ÓðöÖ…*§h´Y40ÿËðósDËÜbð@Ä:*Ãrì ßQI"#ÿHî'%dòrHÇžÎÿž6_YA®!÷­'ÓÉrÝžç ìšGÀ,”2¯°ÉÂzÀ罡U q¾–Põã 8ò6þ»?ºOTë}Fo“¥÷yõmè³±Â߬I|;†Ï3Ú8˜ŽÕ}µ'PÀúü ¼Qo¡ÅŒa+hÚ <#9Yw Ô(¾˜TòkÚ¾š" ³‚ΗB•s0ç5BˆXÔÒñ­PSÏñz:sîHìŠ-;—a™4 $ÇYÜÊay¼:¯×‹{©(?Ñ‘¥—8x½ä`þÓþõ}°ùrK×Jš6ZlRui!ýß ¤Ðh‹†çéÃÑS¶i ¸[Ô?$ÝŒš~Ôô‰½ŸîËM·f 0Aþœ|s%‰¬=‘þ°{̇Æ$íEÉH̶„唽‡2¬]ÙØ3n„*MqH–Fç<%>RÁ³üK°òQ|W¬ƒ_Ä7C»šKû®"§ÿüùÀ ´¸ýÿ*/*‘…'fÛÈ<¸I»¨Rè±F•NZ("Ô P€ÖÞ…ÞÑ®ÂW­Z©[ù–ˆ| +Òz§Ái²²L†3M,¡mXp}ÜWœO}iûùW¶†lOú®í¡îÏîà½dɓψÈ)8u>õ[”ö¾$ÜÓ?„Ò= ÑLØùÞÁÕ»W¡Ûvž¸Oí‰z76G”C\m)^Êåê8¡ûÎáP›Ö¢" +M¹šÏNXø)¤jB„Œ¸{ø«Ç âú­qv±ÊœÚ\yN“Š §û:tÁ`h§m +ìÓC<Â`GÚ þ—0 · æ×£gæ·’KÁRøoàòs††¶ð@ÚF⶙:u술¢Ï¡Ö¿œÈ·Ê"üx¯Æ©1d³æþ³¡Á׈(â¿î6GG#Ë:ÍÕ–áÜÌ,ÝG¡Ó"ÝxŸ¦ ‘ÔV)e!¿|«I}ãßo’‘ ¾þD*O›çåçéòB7¹ð•Q¬?ÀêZئOiLnHa¥9úœ}®^À'’˜`ɯí)Ö¬QšuÐ6ä 6ªKà„¾©¥ÅîÕ±Ü!%Úb¼¤¸DW‚Ï)rjÛ4"D¨ªRKØä²…LŠ>p¹†˜‚D´êQ¾¨€¬XHeRW¯q>¤ð˜[{uì>õwÙõ>±wD.ŒÖOƒõ7áõ@JlgøýJi7VA"%É…‡é°9£hïû…¨Xmïžê|ỄÁë'|®žI^ ¶žbÈÍ|°XYÊËÍ¥hÚQÙ8,){™½9¦ïhv»Ù=Ç/]»Û¨eÂ’‘Z„W‰‘Aìn^¾Ã†­JÄ/ãñø¨Tc·„–«F,ê+Ù‚y$y„á½3 ‘úóœ!b'—î=¶£2ÛËËIxÍâ¶u{ m˜¥¿åêø%zo÷ùöºŒ2¤ÖrI…¼LÉ*«+SWàjs˜æjÑëêkq9¶laÒªë5$c¢|è“sÇÛzØO¯L‚e  jFD>¶E!ÖKѬõ|òNyvV6J, ÷ßu¾Åà1xÀðÑšúl]tïCC%šÎØ„Ågg‘Qd²¹3þ‹ÉÑÎî~öÙ~…[,‡*ò“r3ÑmÕã™õƒe÷z1‹×ÙЊ¶zUJÖ¬°ÖÖ Q²ëÄOF¾ùjç4HœY ÔTQúúT¢.LšT½%ý݉¬¢Â¾-×ú¼OûÁŽ±“X³ÛÓàB©€xÍW—‘«!Se‘¡=TQ™µ#m®&Sl]ÂÀÕ'ÿð=¶^+Ü +)ŠGŠ¾Yîn ´xìÙ yk&’‹ÅJE¨JfGS+5ÔQ]T•b·Aþ­Å`70|ŸÙg¡O&ú?CFsýéì>\œÅÎãV~T“A¯É¨ÚžŽl>•ñàò½‹CclE+¯ +âí/ÊA“yýçýº€¡kž`ØÏûnùéMV¯ÑŽv;…%i™YBìHu¡,_AŠ%ƒŸÆ€l"œÜHP­qŠ€z—éx“MmdJ5r\KÇqê+PXbì6ͬ ÃãêBU•6Ì¢7úì}&/Ë$.h¡r ®’b%â ;dRE­¢¶VX+Rñë¸âXfiM™¤T®ªdÎÒÔœ= ¿â¬¥¯åj…¨–ƯivÈ°µ¶¶z_Œ¥6´ª-èÉ~ ëïë÷϶?rß z Ÿ ] àt[wtÁdà†ýÖ‹©ôiøIx› 2৲á±f÷ vÚsæô2Èé¥"aßÄwñ¼Çª¼F ^ˆ4‚_| +ˆ·âv¶ÖjÓZQ§S§kÁÌC¤(=ª-CE4øYÜ°`§…‹–e*2±äÜÒÄ÷M +o°á§qFS}ƒÓáy…T*¦&Qb“˜•ìä’´ß"” Õ œ“ ?‘0PÊèäu—f!»V=˜¸µ}æ¯w†¦]lêùÓD2ãŠ7wûû%1›¶Už›þblò*e€‹€]­‚<ª…£-D6ùÁ=íøAͼ¦9³I‰€¤ç)å¿ce×ZLãÍÏ?žfQJf‡þõdµZ•5"U±<ƒï‡¥’©P]¥’ËC*,bÃm1;ؽžnÿ© ÜÅ,¯‚Äür±UÖ™­ÿ£¼Jƒ›º®0<[@궺#"ëÍ覥3´eÒ6n¡$,ÂÒ˜0`‡ÅÆõ‚À›d#=k±ô´[Æ’,kߌdI¶WÙClcƒc‚Á NXBgÚt†”v:½b?úÔ2í„$@Ÿ™{¾sÎ÷Ýó§Éeö@ð9l˜%Òq|Z¿€·!/k÷x™€WÉÓÙéo8E ‘ra¡÷ËŨ4±–eövŽ_m­‘ u[_åVMD›ó„¼.îj”+Uú½î 4ÿk «=xº/ õe|^9ß-À$£Ï=‰±{a=*F槡4¨ê•<Ðfï£ú«Ö0ø«´Ï3³Ëä´¢Yü!-Ö+ÌÐÃ# è7·ÿ²ÐpÜÉð…C®S¸ËL*DôÉƇ œCñ0Pýü²ŽM~]Õ{*gsÉÉÏbèSiŸOdÆS|óH7¿­"Y3sg†ûàÈLÇ_oqî]ùya¹BZÆ¥eçPi‡ózûï¾âöÆY›j¦§çZÑ«“CÐå ™éëÿý7«©å¹» H\¥(ÇÓ)«ù“&%-¹‰òè-´­cyÿôá?n 2ÍS?mÎþ2ŸJ=°–¼Z^QfñUAe6K狨|x¸ÅîÂÑȽÌøxJ¹ÂéÕÝÞÿµ˜Z²±ˆk0ÑÌôŸVk¾9bG²Ñ¤’¯.PçÃÃT A¥ ¨Tò@F“6d 7†ÌéíÍ¢Äb´tõ}-!˜ˆãOÜÀ&K),à0õZâM `2i´& ž[œU"€ÂÒãyâ?г_´ö9ßͱÇH¡9å‡G-²kØôÝfš#èE6hõ|š9?Îú;ÎÆp0á³kåö¤sèKü¢ «&PælY øc ­béó4ù䆤#®ìÁÁ'cçÃgá@g[÷g:7°×Î=bÅ +¬%¶QÎøp÷(ÌÅe帷%Íoê±ÆÍGK­Çð]ïB€ådõñÇIú0›R`}êSò|ΖÜâm¥Åî€{;-½šæøÊ椚ÀÚ»ÿ0ÁaeSݘ^¨ú/ ›¬>n·¿»ýâYš…ye˜ôDu­WêiÝF7´œ §î3þ™êÆô%G %¸óªs:0EzØÕµÇkEê*j»JQXsBk³ii=¶ß""J0go¢- ` xçãOXuÒz±„S”;G¯ÎÆ»¸ñþžþ蹞]J-ÇÀš'¥OˆC‘‡%)ú/ó~Úƒ2ch™ÆÆÞ&QæjŽ“y⃕›ÖýtWCY+Ñ*pÒà±ûM>³‚5ã(ôl®‘Ú*ƒ¦“Éeín"ÂsþòOƒV0î$Ö³5˜Åj7Ùð.+¯r-ïå}oÃ*Qqé1<‹¸x Z6…^¸~ &”~ ´ªe„^Œ“ÄÉ!aCµ‘02ôú“z\At*Z¥eòƒª"F0Õײ¬-¸5µÞí­÷ãþæS6° ¿Ýü +µœóVOÖ<úzíýªN`k·÷µszj'*u*UòB|ŒÛL´$‘_›Cûfl„H0F&.< ~9Ñ?4lqƒÀJŽ ,u³°‚Z­.P•ò2J$»¨ô<_v±»Çô¾£ =Ùz7>59Ë _NV"¿VêIòÛj ‘Ï*¶NåPK^¡~ÌÙÛ¼îêÝˈ9ÓÁ50@WQÁÙÝzèüÿ:0F~£äL©(±z~Çe%qÊδ%*ÆÀïÁŽÀ=V¹†¯+ç‚ ÆÕ¬£l¼ãlœGK[±b‹;so‹G}Íph@ÕŒi5‡‹„¸€ „TPÖ´ÕùÄØ]Ch÷¥~s†9ÕãÕJÌlu›=w0`iT+øîìÌ‚JX²W;ˆMªÉëoà"V¦„»×ú”X°¹5ÄG<+yèØY¸«LÞrcS;È6Œ6Ñý¨úÓ=¢DMR4g¬“—@—†ÚΪ×Ôé8zKæ>íçNF/‡æàúQ"‹´PñÕÕ† Å–í?¶¥,/cOÑ¡â\¦k‰@gšíÇ@—)ÞmáL¨29©ãår×e;ăQÌb·5Yqo㉠+(K“Pz¬^rR"åܼXtxät„ëŒö„ãFûõk%¯&K°?cÿhÞ~œÇ÷Y,´ÑVš1z ])µ_DŸ]»µ`Ö'2AU}€eãc¡¶.k+~î\­r‚&ÍévíiÜí2[ÐuÕÚmëaS…ïbRÚ8Uã +™±Qô/É §M,Œš-“ÝR_l}üƒoâê¦)¬ÂY%%¬ Íí5Ò)Ó¦¦Ë MÎÍŸ\&]VÖÞZ.Ÿý›uÛÊ£¬3úgô̘5«sJÛâµmó¥W­ž0k)°C¬ñ€ýªï¥e?d3Åÿÿ‡þ3H40¬VÇogÏ~û=óÇNQá×N]1q&ÇÊËg,’^°´%wŠüT6á··ÌîšÕ5£sB›d{os£”ð»Ä +«Ž:9ó?ÊÐZ=jý¼Y‹&M›+·zÞÚå[W5-ˆÎd­-olo”nh›2}FÏœ)Ûä¿óÿ¸\=¹¼>¯®¨M²½¢¦³\zÒrÖ¾æš uÒµ´í«}fÃÞä«œûÓuîïÆéßû»Ù¾/ôç@7{ùüŸ®ó÷Mý>µ—ãû¼©OàÜÊuŸûG‡È÷Ÿ¢Úc‡ +endstream endobj 32 0 obj <> endobj 732 0 obj <>stream +H‰\”Ýn£0Fïy +_¶„Ø3EB‘š¤•r±?Út€€“EÚ"ô"o¿óñ¡VZ$âcáaÎLlÒÝaèÚÉ¥?Ǿ>ÆÉÛ®ã­ÿëèNñÒvÉ*wM[OËlþ­¯Õ¤|¼ß¦x=tç>)K—þ²‡·i¼»‡—¦?ÅÇ$ý16ql»‹{ø½;>ºôø1 ã5v“ËÜfãšx¶}«†ïÕ5ºt{:4ö¼îOóµâý>D—Ïóe꾉·¡ªãXu—˜”™]W¾ÙµIb×ü÷\—°Ó¹þSI¹zµÅY&bw±±ùÛ×|gó<›ç6{²?“ŸÁñùŽ<ÇîÉ{0óØ`Ì6$åúefŒ·ä-˜kÖXãW3Û`œ“sðš¼ÓÍÃÍr YÀJV0ý=ü=ý=ü=}<|<}<|<ëò¨Ë³.º<ëò¨ËÓÙÃ9°o} tptptptptptpô ð t p ô ðöJÐ+a^A^a^A^a^A^a^A^‘å¿3¯ ¯°W‚^ æ½"ì• WB°WóþºÉì¶ì5ôJ–}†^){¥è•Ò_á¯ôWø+ýþJ…¿Ò_á¯ôWø+ýþJ…¿Ò_á¯ôWøÈ›g+¬)r2Ök2j)<µJ†Ã–þ[ø¿ò6àð-§ ÇоîóŒ×ãhÇ{þ¤Ìç'ºíâçWgègQ¸“ ¼€ +endstream endobj 719 0 obj <> endobj 810 0 obj <>stream +H‰¬• PSWÇOÉ./sI…¹ VÙú®u‘QY«®ˆõQQ^&`€ h¶$BnxÉË7."/ /!<*j×V;VV­c»ZwÖ-RëìêN¿Ð£ÃÞøšnëî3;÷Î7çž{ÿßùŸßw¾¹äì„8Î[!!Â6¼÷vXLRLº2Y=#\­ŠIv¼ñµ‹9ö‰Î87ÿXòã;<„¬M®Pì'œœôëkBÇGí!ê]š2~GºtÚv需ïNwÄß>Ž0ûyœû<>ŸXð<H—ÈÕ± +éz&]¡ÒHW&oW§¥¨ÓbÒò™Ré’¤$i¸#³F®Ð(Òv±³¯\J•iŒ4=-F®PŤ%JÕqÒÕìtº.E1#TÁ +—¬Æ$Ëg©Ó¤JV¯Ù«QÊ•1iJ…f&BöB<„NÈ•‹Ä$Eh²;z‡‡ +B(¡%R"¤â -B&„Ž!t¡P–rFúýƒ3›£âTpZ9×8œ|¢œ®sSœÅÎñ„| áNÔ ¬ãüÆUŒß6þÁ¯n¸»Üw5ºmv»ížá1Áãð„B$L’näIÏÙže¢ù"ë[ 'úN<ãµÔËæ½Î»‘:$^*6NZ8éºÜ罈¾!Ù(u–ûþÆ·Ø÷þä‡S.Ê&ʦËüÆãr7öÎÕ5Ûq³°áæê&ðoצ]ƒä× 9,ÚX¸ø¸®Y`,)¨(£.'¦Ó†œmÕ—_é»Äæ8sœI#èâ›ëM-æSrÐÁÇ7@LxêÌ­ ¡Š ¶™®e–Å +õz=ÓDtÚÊ›éÍaûÖ15ÌaËQA$ŸÉ°h™T&>\´§°çÝ]ÀÑÓ-y"rx ûÍ<*pͪe9t<--¬¿EÝlûã` í†u#«µ'µÂ.#£ŸØDdõù?Ù¿ÑYU‰Ù‰ú„ï¼EÉÁQ+d{¹„i»µÂ‹÷Èh87Š°<åAY m0àA“ѵ<<».Æsq(…Ãnà…àIú¥Ö²ú>œ( oÀB£ t1ÌÅSÁ•&«3Ry Àmx +¤p`öd­–ãYÐÈ9‘\ˆwQ‚!É ÌÉ}W²ßàuúȧ7/Ünºïí‰_rA/¬(jèÏ+æáƒü”Ðâ<›#œ~pÁ#OÔt¢®¡A]—¤JQ«TµêF‰Û£‘-ç/ößqíGDkùOÏîñ.ò_è@Çj¯8´îoÐÂ÷ο̇Ëaˆ 9DÑ0á?z^º7¸YÍ.jßE¾,N'p‡È¡N{§¨>çh/¯±ÊZÑ)¾z&bÍŠhy´„PÄÈc#)Õauí‡tõ~^v¥þÀ1ÊÖ×Þ×M÷u÷õõSgŸóŽÜG“C0îÙô7, 5ÆQ$1 QtÉ€Úí!ZáðÃ~#:rÈ>}$L”ÈO Q.IZ& ÿŽ—?õ7¤fìÒ˜¼ãŒ<ÑÊ´ZÚê[M½.²"®—T˜YTM¬í/«¦ëúypšß ^¹¦"õ#J¯ÍÝe¦·:dç›ÅÚe3Ù2e¡Îb¨2ñÖWNì9*x:|D@BqÏ퉱nY¡¤}tô‡GÖ¨xà´ü19ÌŽD)ùIº\:5›—N43Í––æfS‹‹l?ä×úÆMëð+”XضúsÕ7ŸýzhCçðƒÌëMëÃ-ï»ÈÈAÑl¬1UK²½K –T5Œ·‹˜ÃÕL<¯Ea'é²U˜›’Ì”ª%äCûçÒºzæ„ønÿη§ÇÏS¥3ŒŽ©=?âÚÁ9öƒ]×È™{W´§œ§Ü6?5DŒ·à‰à [ øø@XKç^C“¤;³=SM…4gËΕ÷Ї"æÔÌcg?åšÅ’àÕ‘³1Aa-ÌÇ>{éÑ맴5Úìð3öÐÈç rÒ3÷ÐI»Y=,á.–p»‹ìð³Ê?\€ë™ì©Z@A8ÛuÞBgñ£Ì«L+W®²„²ºTDû¿C †oŠJëÎ2§Ä +“#1ƒÅ[dØi³$õýuÆÄÊMl…^‡©°uüU Š6yÇOMº¢!Ç“Ô€j¬F+©3Ýp‘”šk ÷fëS¼Ñ‹ÔU³Å`NZZ?4 ¸Èù—/[˜VÉù’ÏË{éüܵYQæ²u~Æñ‹‚ÀI¢°±¥ W|éT~N…¤ØhÙÃd‡y5ðÍͦւ–‚Këi??o“9Ë´'/ß;× Ìÿ½8"ž±$Jà(ñ¢˜¤îÜåA³öœdŸ‘1dQïY‰¾â 6Zn‰d"Ãgç¹ÈÔÉŒZLî40jµc 1¨ˆ^c¹2ÿ52·_ÂàÌ`aüEVò ‚$¸-ú¿øl°ý7ÿ¡¯ü‡^úÿýÂÿÓ Äë‚äkÌF/qÖÒÃ|ÜÝc>ëèÖˆB £/Ú[î[aªm¥Ü LÛ1Š¾rìÈ×€ìÒ!{úã¿ÝÚHÚíCß‹ÒÌyùZ·7<3XŒcÙLj€å`„KÈ~љ˶AOfóî­ÔF¶ ö«ì¡«¶-ªÃb¼¯Ä“q +.‚PV§‘ö«€jß“@Q_PTQD×—ççÅšÙk{,ë"Swryµ¦}Ù鬯[¯ +d@¶QŽûË +pØ +ØeÃÜ‘ûQ«¥¶´‚.)¯,ªaz ½ˆM¦­æm[¶2›É~†/'Ìús”³}“Â0z ,'Æ”a¬pAC0•'›²ø¶fs¥kÆXüÈËëÝs!i¬[ó©À¿åŠ^#Ç.ºcÌ‹ÞùíUÜÄuÆ öj5 Uo,)³›‚ÓÃã„)4±lŠ¡¸ã K¶ä _Bò!Y¾´‹V‡eÙ²e,lI`Y¶,Ç7‡ $ ¤WÂPÉtÚ·îS‡®;&IÓЙþµ3;ï½ï÷û¾÷~¿ïC·é¤5*¼°²´B!Ê/66šjÓr„2š©:ÑÑþAqôãùãl¹sÀo²\ÁE¾µ|¯!z'ílw’­AÄÅ´’ÞnÏoÀ¿€S T¹Úw7¹õ‚ñ T.™›“KËgEæ¡UeªÒRvB'dÿß‚ÍNY|ofý4¹Àü_/,/ƒN¹æ/DÝzÝ}â4yã;Eµ¨ûÈ|˜+ç¨7×WgVh%*È›RU3©ëÕ„° Ú¦@…Ž0çnaÃg¦ã28é ®JNÊåYÁÜÁæÀAØÂD²îÿ“ÓYA¬CšÌô±ÌQŸ¾îéëyФ +hµa*GL"kåÛ'0Ž88;Z†ZûÁj†aÛÝ´§y7—æ`ÃÄGŽÌ Ùû“"va’êõûT;¦¨†0 #Ø0ûžSýw˜[‚0yàó%ÕHÚ…Ì~tz¶†‚ÙJ¡¤¤X*¦Å?–© ä3W%¥$•ì¢”YÄ^ÅÀ„à~ÓáúG(óKä‚hð6ƒ|8Ì‚2X +#áˬú‚yðYB˜&VñÁÚëPÀv%±Qði¸ &.±`xãà•ïö¤x>¯ ñ‚ÑÞG ´ÜÅnƒ¬‰§Ùæ Ã4,ºóç乯ÅÆDꊫ©u8H‡D€¬ÒÏœ38¨â$Pñdüúõô»l¯q9ֹȆš:–G…!7ã0žW'1ÆhB@Ï÷1ÚÅxñ³l²b]ÂïÔ„®XA*D•;ôZ¢ZÝRܺÝ^$±p‡MÙ¬²m´ëÛèöövÒ [@Kl¶?âvëקÀ á'âKp>®åij|âââéøôÿçký³øìT MÌwŽ¿Ó¾òåŽc×ÙöûL;¯qÐ:ŠÛÓÖ¹—‰à,øÌ;pá܉`±’ÀΫþ4ožð…%GG÷Ôà•!òtŽ„W§ã%]gŠ>±óÖüÏÁrÀY⃿i&°›ð©&ñÀá‹{?~ Jµ÷+ yæõ¼¿?ÌèL‰&d$i¸« $ÝI]¿~†m§¿€ŸÃˆYÆŽ^ƒ 9‹¶€&ŒÑH'Ûˆ>lÃ¥RJ*Â.S÷¿ð9ΪU†U"Ó&zC‚°“c¼„8iK½GÄî5dëåÁ{îTœ¸7S6å)¡·˜E#¡ Èø0æîÁ[ ùò ÃÁÀã½2x…Q/¦Á±¢ÌÁÁíÇÓxvôld%cçäݳL¬…|ÀǾq\>iÜa4›íF»ÿÀ€¡¤ÉÉ)Þr®…jª´É .æHl[oàì<ÞvÄy„‹+™¥Ž}¶¶]´ÀÜ+¥2H‰$ƒ–÷ŽéVÊ^S(ÔêÔÕ¬?ŲS1‹En+àŠn… ÁŽ3`3ßµÚßÍ=À±ô7tZ:¸Ø0Ÿñ™Z¬m´À “Ae’Ri& Ó§C¼ºæÚ¡n‡ŽªÅáì€ +!9p!³Á:Êú”#Ú>ÖBò–Ê—eEÃ_ÁS$;û³ÑÙ(«Eèi18h| xì*LMM£·Ý£ÛE¶ÖXSà‰@£%Ã’U'a™[}¶n[7K{m¼2y›4!ŠNE8 zas‡_î,s¨vq[KÊ[•$E‘"ˆ 9h‡Î¥•Œ-€'ab®0”•áœÇl¹ø¨“v5ºqìlÿuv>ysü6·y*‹ÉˆÇFÂ×#x0Ö?qÁ_n ¿6Ž½ÖÄ'×Ñ‹´™õå]z¯ÞÛ奼³"ÍfÄÖštNzvƒ“$t~êOÈ4 >ý!ƒwÒž†^Q/Çhb—U›9%§dr¹^Æ*‰_[^ŸI.¢× ¾‹^eC’qñ1?}Œü²¾›½Z"c÷Éer=kµÕÕÈ6ÔXƒôrz=ö©$úVTØb&è$x™­I¥sjkØeæj„Eªïòz©®Y‘õ6m7ý%yŒ§dRÀ¦ð(‡A›ë•+ø kRÞÊŠ²•Gx­ÞÆ. Øt±ãÂÐ.æ/µ"¼*õ‘?u2ýW’Ü ø3¬vþBÕosØéë:$>³ÓA›-8–ž¼RóìDÜ.é +f+]¦×I«€l ìv!ˆAAdúaø”<­r[*¾QŽ¼‡º«lf›©Ñl´ØšŒƒ¢«ï'.'t(Öß«­V—–¨¹ù2yq–HœÞ9êw úšˆQÇ0ÛÝpy#êÑ‚bfÁ)°a_~¢±r8¯bûÀKi|­e³b£vc¥ ÷´Í ,$R+©…\+£JÉ2ªŒ‹°W÷õ ù¾aÍÈíÛÑæ!îžC†¼¾/N AXÌWð8¶/u“*o±1}±aÞÃ'/|Ýÿú+pöšØ¨Ä•]»p^¬bŒáÍp_»ò¯‡ï2”™ Nò‡Ìû-Üž/iÉdåÙD®:s{¡Š›–³@_!KÁç?tZëð]ÞŠfD•#VËD/-> –€Ù¼g}Y‰ºµïolš!© Ùû€®ï*ÇÊ™EÌ»üÖT™-Y¤ÊÓ•d/'!›·¥¬Y$ÄFáìÓσgÝúºz+¡7kNÕ§?XŸ$ƒJ¯1ÖÖ j(Çn!@˜¶¹aE(6šIææà™yâœ-¢¹›¾¹ x{~k œc7)^®â ØÜ Þîšá¾´×C™ù=ÿ\÷ò™!¡¶ŠÒRõ¦T†Þ=zðSÜÔÅÏÌÑ”ü›ójjêÊ ½¹¸ÊD›KÖ¤½·>¦:vií´V‹Ž:¾ÑVÁÖÇÈC^Q$!$òHx…@ p!ˆI@ò „7‚2ZµÅú™ą̂5 ­ ÇAk©s®ë8³æFJ«8ÎZYù‘œ³Ï>ßþöwöC$e%§ËÒ½CwK‚æp!ïÊÛàí úÜT//Eùü„`œtL&À[Œ/{‹K¿$Ô†ƒ ÿ‹ÐgŽÍ‘ +SJH>Ǻï„ë·D°µišt^üîÌ8 €`WE±ò°nºFˆ$¡}ÅlDÅ*)í`ó²y©ªP·|4ÒS_ww+Ùø €è¸`*Zr þ:@£Ì~º¦Z‘z×kf7ltyÿê‹‘É`~=ØÚ£­gÕýu«+èØì*¼Œ9̘ÓLí§˜ìš¶<=œž‡Ð?Ù¡å;yüò¸P"L$ ßÀ1(ªSá$ŠU„/ D²iõO犪R:2q¬nêû!H²,G âþîÖF·~Ýž÷Æ÷¿‹cÎpø>#.TÝ\Ug2UI m¢Ž­tt­Vkûq®1ߨ<€ÓG®x½1<,pÃŽÃ7Î9ÿtþZÝÊ8vf꬇-ìÅíƒ_h±˜CS|¸¡ÀˆMHÐÿ/^¾N™—Æ0OSxô>¢¢ç ÈvyݸÇ~Ì07˜ ?Ùà3l<˜ m;}¬÷BçÎE8lB« íj›Í>*‘O-Ý‚Ïà³pr”,W–„ÿaB‚›Œ_p• …cÉ%(<èÌJ¼XƒÀkž û3vR|vvñ®´M²À\N|j.ÍWj R$ग$ÃÕê¶H"‰,»Ýj±ÛÅV„66ôåâÇ!çà}‚y Ö^ÖcXáÑþmK8Kß÷¦ ¾Ž]º W½@š\w$ÏÁ³X4e•`ô#Nóñ»ô;?eÎÕiá{²ÒSqìÎâyë¹@¸$lì’®@§ÑáŽÊÖÃý¼{–Ï…ÈšEþ›C*:øóØ“)Ÿ¤~ÕéI¿Ñ]^ÔO¥äN·k"¾g£mÅ_›qYÙ!bÞ¬ßÁÅ)³Óˆ…[Oc"6½ÅÝõ&˜£ÄK•Æ"]91r9þJÂGÛ·ÂÉ|àq¼v¥ãLG—2¶gÂWÆh¥ðXc«•Zier+ƒu¢>|4>o+J,LÆå(öù™Ž#椄2ÜÌÀZtÀÁ¬Ze²&•'Ù“)J ¶Ðtb`ŽïŸÏãEÒ&j¡“Õt1 ¨úWÛ°¯ÛÀ vˆ*8k'žÚÝžÓÅÆhç7é˜ô÷Ojá«&bYylu;·¾¼sǾ=ùEÜ6"ц¶65z¢ÃËBxsçò¡ÇƦ¸®û[WÊ犅·CY)p·lÙõQЪêÓxÊ„™_oŒ©=¬aÖ„õ S,6lCýï=fnP—êð®còJD™!SHxòê#=&W_Tw¾‘‹4£‡4'´xfYªB¶[Á)J$\¬o5úû$eÞÎìÝöÔäÖ$… aíTÁDÚ¿ þxÝúwR]ÆA×s¡ƒKPÿ‚wÁ´®FC ÇDçO#»H1[膷?§á™§ ÉT€¥¥ja =ù`}Ôv𶡶²¡FíPûÙP¡J@ +…µÐgf<ÚF"ûUû”)ܴܹ˜& I +IåÀWA’[‘¯×q+tÚñv«­â“ÑÑÑêh÷ÖzÒ¨Ò¦h38`ùÃYÈQ†¡¾´¹²É› ®h‡SÀÚð´ƒÙ™b…X.^ì~ù:U‰–kÔk-j¼Õ7JMFEE«£Üqmd Y‘aYȹ¿E:à u“‘ŽÌ¯Ã GÕgŒç­§½±Þ `~Í©ýÖj5ÇâB[(26V ŽM±¨ÊIÜlRñ™ÿ#|3="52-’ƒ5A´gY²,ÙvN"ƒ©{Lo(<¬Ôl¶‰c1  ”°ÁtàèöéÕžÁö!N…+lû2àVã~9Ð[ª‘˜Ii’—Ò8øÀð·p’­ÌÌÍ¢GôA†Éq ¾ÊÞ?ì‡Ùÿ?Ø—¹O^ªä˜ +Íj³‰ÞF{ĘZtoQº:³LYÆq•çpí,=XPv¸l¦±;:ÈƆè¤HN%©/åš c!Þü¸üÑz «HCö~>|øpvâFY¨À?(C22Ëô™„œ‘°É)«RVò\G¿®#ÀN*¦ùF•ã šcsǨ„¤@ T ܱ,$b%+rR¸9dN^ÎÌÉo¦8Íž}NÐçô¢‚©UìZÚŽî&cæýFýÏÌÐì)·–¡¿€T›ŠÿÂ3²¸Da¢.…1~¢Ýq{„1Z©_ka‹ºõ‡òŸ™¥]šN<Ž‘²Iúl}þJä1˜9?›Öj:Ýë^hZ‹líðxßÀ·5Òšè÷þd .¯ÿJõ¾ðÒ X»G/ÒØ +)GQ›Ž@“×gu$x1;Â3/|7ÿí&Ú4)­Â¿K!PLbCuÙƒT¬-ÕhݧÒå`ÿ«,åk i&á;Ó,QáÏo¿±ê‡pBÝŒìÆìú¬fÉ6Û<»x÷Yß'-Ư€ïGã÷ü£ŒÝ¿j˜Õ|Ï=ú¯&Oá‡äæï›÷‚HæïŸ~¬½ë~ÞÒÒÝà +س8çqïîùs÷ä’Åü"£üý¢öœëe?¶wϱ{#ýåøòË|\ûÝa͉ïÖÞ§½„¥¯¾7=~þ}âÑËkíõä;3ÒºR¤“z&$ÈÏ`ôÀU¹ kD3óª3äKËj*j8bÓ µ¤~KßÖþ®}þÁöé“ä毭›ÊZ’šZ-ý›?ðöwNùïjlÇOôO=.ß;³{æL©ï¬V3Ê¥}¯þü[ð·5ë:6á×ßy?± +þΫäýünÍÊW>ÿ§ëüß}S¿Oíeû>oêŸÃØ÷qÝç¾?‡÷ûC‘ý¢Ê4 +endstream endobj 35 0 obj <> endobj 734 0 obj <>stream +H‰\ÑKkÃ0 à»…Ží¡8>!F×A{°¬? µ•Î°8Æqù÷“ìÒÁ ‰?[VPdylžkÈ?ªôÆjÓxó +á‚WcE^€6*ÜWñ­†Î IÉí<Û¢ª@~Rp +~†Å“/¸òÝkôÆ^aq>¶Kí͹ÐÈ ®AcOzíÜ[7 Ș¶j4ÅM˜W”ówâkvE\ç©5jœ\§ÐwöŠ¢ÊhÔP½Ð¨Zý/N?Ó.½ú +>œe4‘OÉ'r™öKÞ/óäœ]$ì2¹d¯“×ìMò†½MÞ²wÉ;ö>yÏ>$bÁ÷ʸtê0<ú¢nÞSKâ5Ä^pŒÅÇM¹Ñeñ#~ˆˆÐ +endstream endobj 809 0 obj <>stream +H‰4TiPSW~!„D–¨<^…<}ï¡  àŠ 0ZãV­Š£¬KH"A‰)U†%!¡Ä°ƒR[²ˆ ƒŽvØqŠŠˆØ¦¶`­å§=ÁëŒ}8Ó93ßó{ç|ç|÷r0{;ŒÃáà¡;÷ìŒõ;$I”hIª€ˆsiOɱyØ£`TñÎü.·Ãr»\ u>d,l_Ì“¹ÎUíP%ëR±qÆGêˬ Ú¼Á7}Ä 9 Zó×2b™*FÎDèÔ¹RÍìM’ªR’U)\¶Šaĉ‰LøÜ=j&\®–§¤²ÙÿbjFÂhR$2¹R’’À¨N1ûÙ´F—,gÄŸ1’$ÙjU +£`ªÏĨ2…$E!W¯Â0Ø| [8sa¥b\Œ‡yaJl€³•Óhlw‹»Œ›e/°f„l䀀ó\XC4ÕÕ74¨ê•É*¥²VÕH µÍ¶íÍœ+Vè°r¯€Œ` ðWàÍ@p"À¢¥¾È­£à+t„@˜| +–‚¨èåÛë;Ðä¤ðF-Ìû€-ÉÀ>p30-4V®m{ ±§€USô@MüžrsûEª‰ï¯DŠÐL“Ľ2—gn}Ò\N™254ªã‡^È9‘G‰sx*~Ÿ±ÏÔÛÓ£ïvöæíKµ?p…_­xø&>¸ÿîà(z¾§‡‰>þõY%u`su¯ãƺ^òÎVLãÉËÑVÏp*ãtúÙ é¼­(gz|Ûø†¼Þaз³í†}]Ë* ù•ù•ÆÊ*gïìø˜œRˆ2ºaº¢‡\aÀ*·â¯a%,%Škj‹ _6Goa¢äŠ²%V£+¾P«ð€c°>·±£Ã~´‰Ït6õvÝﺹîd´ö\*RªãuÞ¹ZÛMÞ딆mK6¥ÓÂÜê´û¶UÚz­+4Nà‘¶¸a"Wš —“ÍÇã z +ÞPxYºå„ʹ±»Ø¸yyà‘ÅimÛj[L6V[jø‹ôoxøt®Rª%}$±&“„ÎÊ♚¤kDñ†S†8ª4›WÜ\]ÚIJ}мË£+¼¨f‡õ½®ZW®ó€Ý°ÂaÑTØ#ä|Duž5ÁMÓKó5Jx®&¡EËiš‚’ß¹6÷ÙCÄF ª[Y€^ Èø "Ág €`æð+äq&,‚Ö›¾ƒxX4T—‡™Äèñ¼;Â[Oûé‚Ȩ1XÒf./*£¯^ºÕp‹Bg*8Z9]-\[¦-žXŸ”ç»ïHÁ!g¯ìlžñ´Q¡}¡OЫ©z‡’'¼æ¬&{3ÿ|ŽV®Œ¦=‘ØmclÉv/è.74‘ƒ°uJ¸FÀ +™ukvm‰š€Ì‘Ãøk|Ò&)1Vp›ÂŸÝn¿;!zµ¥o%òÚí¸»õèÏÇ(üµ8v_”—Èg\ Î> +&Áéo:ä$!>¼k5K‡„ÝùëÑ{ U4K®ßÿí‰ý"üYšm¯¥¼ºŽ·>ýôcçãþÞ¤Jxm¦›9 V¨˜â¾E™D/Üû~/—M Á +$ø”}án£Ÿþû¨©ån?}…#.ƒ¶Ç²øì‚žÞÊ?GÀ®dt¬{/"¥Ö²¿Fõì®jt¦\QF“\.~ß[ȧ 0ì ³ã]G«“-Ï f‰ÿ}š~¤ +endstream endobj 25 0 obj <> endobj 726 0 obj <>stream +H‰\“An£@E÷œ¢—É"†êªDB–;‘¼˜$ÏCÛƒ4ÔÆ ß~úó£D$›‡ ~½¢é|³ÛîúnrùGš}˜Ü±ëÛ.Ã56Á©ë³eáÚ®™>¯æÿæ\YžŠ÷·Ëλþ8dUåòŸéæeŠ7w·n‡C¸Ïò÷؆Øõ'w÷{³¿wùþ:ŽÃ9ô“[¸Õʵᘂ~Ôã[}.ŸËvmºßM·‡TóýįÛ\1_/)Ó m¸ŒubÝŸBV-Ò±rÕk:VYèÛÿî{eÙáØü©cVxx±H§ÄäGðù ¼!oÀ[òüB~I\2§DN¹$/Á¹—ä,d{²+YÁF60ÝJ¸•t+á&ì%è%Ìä óùÂ|A¾0_/Ìä 3eÎ\“×`Î(˜Q^ÉéÅVžsyÌåÙ×£¯g_¾ž}=ú*=žÊZE­²VQ«¬UÔ*ku®¥³ÂYé¬pV¾Å;Qú+ü•þ +}&?ƒ¹ŽŠuT®£b•3*fTΨ˜Ñ¸¦†55úüþ£¿Áßèoð7úüþ£¿Áßèoð7úüþé„øóKŧœvœûÚ'Í5Æ´Eæm9ï 슮_;wF—ªðËþ 0°~ð` +endstream endobj 805 0 obj <>stream +H‰\UTLù¿·™ùM¥Ýw£Á½ão!ŠIŠleü)KhPY¢­¡bg¨6BûZ+I¯µ,ŽÖŸ =Z›?O$Å£Çz¯Qÿz¹˜89ë89ß›ï¼wÞo²gÿ¼3sæž;÷ûýý¾Ÿ¿Ë2J7†eYÑóñ”‘1¦•¹¦œŒÔ”8Óç¦Q‹9ÍdÎ6¥¹JÊýXÙO‰a˜þ~Ãû0Õ†ùòª7¬è [{ïß󰫨Ð`Y•—•±<=G:\7&<ËÖÅšS-Y«,Y)9¦´Ñ:]ôÊ•ºxW}¶.Þ”mÊÊ¥ÿþ:„.#[—¢ËÉJI3}–’µBgY¦›™a¶ää­2颧ëRÌiA–,]íÍþüÓ쌴Œ”¬ Söh†aé‡ñ`o7¦·3ˆa†(™,Ä2z3Ù § %£f"™5Ìnæ8sõdõì&Öéà¶Öí¥B§8 Ô('+÷*íJ§ª¿ªXµOuKÕEbÈI5¯£NUw¸Oq/vÿ·G°Ç"›§»çPÏÅžÛ<yb±=Ö÷hô +ôZæuÃë¿ÞaÞ‹¼Ë¼okzjÆ£Eãúšq|î{ß5ì¹VÌíJæÑ7CP¯Å±õúyá"‰†ÁËa„j!¨Æ=?á·> ­ŠzœÉ¿ß:½Æ&@è(à…OHþ‡`¨ƒÌ8nºú,%ïØ&‡¢É·:›¤n\“¾NX¤n;´ýN‹öiZ£ƒb;{¶(®@1[츅ü®Åñ.ˆhÊó­òS+{J‚µ’6åó`Ü i0&@<ÑX€iŒ»1Œ"xÏCðv 0Ûq}4¼#ƒL! †á‚¦¼¦ø€¹•»{[®àa¤³¢•pU]‰³ÕÜÝ"ÿð‚±›Ý5å%vùï6¶Z‚’BžaçñÙUsììéÊŸŸö}pçü5`´?­Žšr¨1µ‚DÎ| *`[ŽÆÆMZ¶4~¡0w¡*bzôì«•uÝPàka.²úœ–>’þ¾¥‰k.€hãÏéLBzÅ­N¹š‚ +šo‰údånœñÐÿÖsà_'ÖMÜ+”ª¹j¦iÿ7µ2:1ûć¡7ݾ~g[ûà f\ 3%s~”@—^B\ˆ!Ò&›¨z§©ìUòm¾b ‰ÜÁGÀNŒl…ȇ¶‰²i¼º{Æ+Œ¶³g$È‘ ÐÊ·©ö®¿ñ¬"|’a=*ýGå·W zEˆ€€P@_nhøÉ¢¼t³P\z RTPjÇ»0?²A¼Õç¤fÉ qœ,GË'ùÊ|€á˜ò%æ`(ú—á\H¸Nè{§€ß¬ØsÒÒ«óÅ⫤jLO“¯W&Ï©àÍ|Óþç/iùËýc¢£³ÇèENÖg?o»åuÚÙSr€â”ìäá>™6&Þ?eð’AftûBçþšì¡§¡×y`«ß]m;]ç~Ïð÷y+l°úTI±ÄÑîm$ð£«Ñô ¯÷öW©ÿ=&p'.´hL³¢•Ób‘DžXÜh¸·¡–Ô9Z®–ÈFþŸ cbÍIÏ°\²Þ>V{KäÞ¢Ú9‡RyóñãÊ™aa™3ÃÃ3o>ºw·Á#KO”¥Ž:æ3Ëp„CÊ.ÈP–O-ï" ûN„Ðï§`èi?wùH™Xj$Ë7áT¤$uÌμРҌ4óQycGÑòQyÏš›?“D®C:<6JÔœ¥ŽH´Áë7ìWòÅW¾rU°–Ôa¢ÊAp^W² +=ÉÕa|)y¯U8h®çÛäW6Ÿ‹ØåçàÞpí²?MmÈ– þº~¨YZ:hø^zшܛG¦M(tEqqX?LʤaÁ˜£h„%"×Á—¡ôûVÔt”ØäÛ6ö¶euùò´-d'õµ€ZG(½‡EÏÃT–$ „`–ˆF¢)±ÃN;äØÙjV_¹·/ÀNØoÇý”²ìNÑl hŸþV#ÁÓ?>·çÛæ6@¡ Ný/ÖÊÕpµr¾¼‡¯Úº ˜òëüó*q:ÄÑ|Ú¯]ºq@,%ܺVY­æjqµp50nÄa¨ù##WûôØŒ¨m¢¿-ÏíJ^óË(]Éz¢ÉÌ·u YÃl…Éô QÒSYïüš ÿsÂÄ99g„úñsÔã.~=Àÿ„8žòRèO×€}ÝËÈÍ¥òœÍ*ð¦+:Û‹ Èí*$DÓÑ-KqUPvw­ä•¢’J‘I•`¤”Æd‚“Dƒ4{QKƒ¾ž^þ†¨¹N¹l´Á76ºùZ—:]Œ6BÂÉç¯ß!nGEiúŽßmð{Gr÷|ñ}уBÐô-º‘^7k‡;=»:Ÿ|ô±] ª)4>®'’ï$k–LE!°$A !š³¼v\Šp@ždpp÷¸ûò|ù}ŠgÝÁþý0Ö‚}bEî~ÏÁ“µ‘ó“¦ +Ü3ä7·=õkÇÁÄ7à]áwÊð9zÁbmKõ™&»ßz4Æ€*ÑËÎÂlúb9ÖÕ‹‡»Ó8 ¦ÿ§—Ômw—(—$(’— Gk}ƒèþõ òV½s«Úß2THFm§ëV­Ùo{^æ‚›Õ§BŠjC+w|dOþõ’6ÇÕ¿š“’KÖÅ­P•¡âj¦å®HˆÒŽ¼0ûçKõ +ÔK¹Ó¶)9ѯü඿lÿGgõEUEaÖuï#šY&–y+) ’€¢-ˆh!Œ-ƒ?P”_%HŽ)†°À(h¦Ëº9á ¬€&Q` +d!RFù g#E`ž±’¤2TžÇ\šé¼‡6úG3ïûæι÷;ç~ßwNsèàûæBÝNKUµ.3W,#Ô@]ã7P-ÇéŽm‰KŠ]—Ûð]‹­ª¦œo8ÕSòY½³V¦³l‡àœm"$;ØV|»*îaÅØPoeu¥Úœ °¦Q˜Â³Ki×GØVÁʤkIk×ÁôoÀü`ª –Qï ™É¹z3ì7È<àÞnP ª:¬Õ/=Çý˜ ò=d' @¾D·b°Ç`nó“¿|…O1– ¾=sù§ªµñüÓà°#$‹n‚×ÊÞ¡ +¯YT[ä–3®<4Hë8Ýo&sjuÔÏD—¡ã†]¢`Û[ššŽÉ,0ö)ŇÍ,Tç‡ê +7¹J¦®œ='#Öð™ŒÃÈe€)€YرŸÁës^øñ¦Bg[`ú.IØG¶ @ìª>QÝç&JÛî +]ä|…íßh_M–l}c‰>:ÌØËhi´.vi^{Œs +±6ì-Ø)eqJBSL‹ {@5¨ä¨gïÁšv.”°·Vš™ …IM1:ꙎnîQJ7¢-~]Ó\¡·F’Œ#ÁÔ [xê–“­õB=lÀYêuàÔÓ‹döJYrUøÈ«Dub$¤·óÓ漶™Ÿ ¢4é²<¢|âÚí©ÙüäÊö#ÕçüuF‡èÞ!õÂLï+›4Ú>îùxfKõœa¢l´¤ÅZñ+˜â²2s™î÷ó_a3 /™jðƒÅ3a“ E å0ÈR4s ]K-³fø'E#éa.­ÐŒÿ\°CT#ˆñ¼>’’kØ%Â+òçêɶv)Y‰§»ŸdE˜g~'“ôŠMÜ’´‹ïÌË8½J¿þMÙz3aû»Bí“c•2±Íÿ['/%ŒÇ°›r2JŠTµÈp¨k‘¢Ô¯ºCø7*úðÛîÈ!ÿtêNýx4ÏíÜâ¼QpçŠÑÛCå¾Ô™:›|¢ã솗íRðc ¨Ç~E =á–éBùœäØC~)Ž"YIòÉæÌK:Пƒe … DÐP6&)-­PNë€øž>vRIý0€ÇÎ2y-õà ÒmøDÚÅûò±7žÊ°ýF3Ó4É;6‘jhõ9G}@©¹ö¢ÜÑ´Ô€%˸) „­ÅŠÁ]rçç† 5¥‡ŠòlÙÃÖٿך§[óÖë »dL}8=Æ+5›ñ±øªKÄQñm4ë*>N4Pç–èKÕ×r¯fëÙ;W³…‚ËWíÙbúá*ê/ÖJu5úKhÆŒ§¢ªÑ¨ÕÆã]¿v”ÔtVd¬”uyÀ.ÍQ"=Q„DV½9øyõë1¾›)ÞWd6éR Ë¿ÔÃaÁ—b:Y9O( ½¤0›°Õo§,?tí ^"†‰éL´e&x]¾òIkµlƹÑè+q–1)> endobj 724 0 obj <>stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream endobj 804 0 obj <>stream +H‰bd`ab`dd”v ÷ðvÑöHÍ)K-ÉLNôK-MÕõÉLÏ(IËþfü!ÆòÛêwÖ¯u¿¢Yeöó~/Üù½F¤`šs~AeH¹‚F²¦‚¡¥……´4“Æ +Ž)ùI© +Á•Å%©¹Å +žyÉùEùE‰%©)z + +Ž99 +A ½Å +A©Å©Ee@Q¸C2‹JŠSRs‹²òÓ|2óòK* RuŠrÝóRôó‹2—&g¦d&e¦ë10001221óñÕÌú7ëwæ¬ï&³Ø¾Ïòrʟ۳ثæüŒ›ó;k:Ç÷¥“ÞOúór:ç®SÜßW‰ýÎdó +endstream endobj 21 0 obj <> endobj 722 0 obj <>stream +H‰\“ÍŽ›@„ï<Åw+ ôt YòÚ»’ùQœ<†±ƒÂøà·ÏµÚHA²ùTWõÌtº;ì}7»ôû44Ç0»s×·S¸ ÷© î.]Ÿd¹k»fþxZþ›k=&i·9\ýyHªÊ¥?âËÛ<=ÜÓ¶Ná9I¿Mm˜ºþâž~íŽÏ.=ÞÇñO¸†~v+·Ù¸6œc¡/õøµ¾—.²—Cßwóã%jþ}ñó1—/ÏÃ4CncÝ„©î/!©VñÚ¸ê=^›$ôíïýš²Ó¹ù]OI•ããÕ*Þ"oÉ[ðŽ¼ïÉ{ðù-rAmm‘‘3pNÎÁ¹ YÀžìÁJV°‘ ¼&¯Á%¹3gœB_¯ÐWà+ôø +}¾B_¯ÐKà%¬/¨/¬/K}®ƒ`<ûõè×Ó×Ã×Ó×Ã×Ó×Ã×Ó×Ã׳G•Z…V©Uh•Z…V©Uh•™™•ut©ÃüŠüʵR¬•²E/Ê^½è+ù̾})÷W±¿ÊýU쯾“ãAªŒ½z7f6d6f6d6f6d6f6d6f6d6f6d6f6d6f6d.Q3_eÈV +ÙJ%ËÁþ8Á8âqÝçü4÷iŠ£³Œë23˜–®Ÿ=£‹*ü’¿ Buôõ +endstream endobj 803 0 obj <>stream +H‰\U PWîfÞp6:M³Ò=*ñ k*Ê‚‚€ ¢h•cÀQ`&3ŠAH¢«ˆÑZ"ˆ"Šh—ˆ÷â‘€WPð?ð²É‘‡¨Ú+7;ö¦a¸0O…Q_$DÇl< ázã±ò²‚!«"aT&õc0f•b& ìÎÒ¶_ÈPCxq·¡×•;1”4AÅÝž[—åë±É& o#ìÎrPHÛ­· +àMo•V‚‚Çz²«éÐÉ3-O¸õÝ?zã¹;°awq"ú„‡à#ªž»nÞó8ߘ»$´t]t¼—¨œè4ÕîR±R’ °m@]ºP†騦Xzë!ߦBî@ð¸¿CÒIp|ñóš[~5b…Š;ÛU{úÊ3w|]Ð=$ EÜHWõ…ŽÖc¤ÀõÆå'Æ +ɾ„{|ôÖÄEÇ|µ<,ºøüÓ2ÑJ¦PB‰…²P€†* ûá[5„òkPV¬ËCN¡ˆ¦tƒb¡”ˆÓ– Ç*)êW`Eò+`@¡¶*¢¥x/Js‡¢øa%áú>æ•Àî⩪†ÆÓû֢݌ÏWÅÅ|}»UDa= :J Ž€¨óïa(2àxë[œº1Ó(–‘ZøD 5£ê4Y@; ®¡^ûR]8zÏ;N’¥F<Ë´g?òÀM[1“1¤ýa¥È½ÿ»¿@pɨŽI6gšÅ²fòöÛ‡NºP·.QÄÉøÿ²¡åªÀ½»Ò ó™óul˜ÈI¥×û¶H#uÁYƒaÓ@ ḬB—ÄbV>Û‚9ÉÝ`;˜e ò‘³½4h>`¨¢åÒ6å +ð&ÇÁG ñä8ÒÁ›`ÜPŠÃÉ¿p _Anã%M!Û[nu¯ Ö¢¾4Zç´6¼9é’+l%Ôã öAP¼HºTm­éný‰ëÜÁ3àÚ ¸…€×þr÷¸iaD–1HL#StÛÍVs``²)\L ìb‹ÔdQ7ÓÓÐÓªT?÷ZÚ*åðo¿LÃl#j1sšP Ù×q-0´"zÔêŒËcrNB6¤ÔÝ¿/p¯;¤LÙÁr‹´Ý"»J¦Mâª+Hhß@fxb²ˆ¥#è~" ßH…_V=E\DØÊr*ÓRú¢mr¶¹D{ëo)’/Øã>:±™Ž›éänk[ì-¶ÌxNÅ/-ê³ô²¦Y¸VZƒÒv>ZÔ‡þ€Î¸Ë›Ñ ®µëâ¡++Wi‘x,žð"TŵÎ[š©ÜH+ùO~äÞ»xíPÄ2‘E¡”B+Xå:”‚^¿¥¨Øâb˼PVK v±Î¡(‡w©‚K²–//ùþ¡Ð€nÙ*Tœð†é0ùvL¤jº‹’“ú GxI‰®”Ên©ôÀ34!-ȱX'a¦•¸+}hyD`ü/]0õýŠ÷8YĪÕn{GÒÃB3ôñVɨ + +†ä£&®¤ž—N•òó+[»w¿'wÈ1‚³ÿßÈýu;*jnýÞŠÚÊ=U¶ÜùgTâwR 5ž=« ¡Ýdiqh@@ñ}X*Œ¸ý¤Â ²R^&½ã»IgóÚÈy9áb,A¯áÉ`íZ×—ËŸî?|W}PTUá½d;¸ÏEf7™é¸š:¨™f â ˆ­èbH~4oDT´øÆY‘€ äCAEAA”ø(ÔF‘Åñ«4$Iÿhð<»ÛLç>Ôt&ûcgß}÷žsçÜßïÜóîýu(~¡Ö¸2æÓÙ I‰ ºÈ5%¨v‘»‚Áþ¼ð­‘¬>ä2‹CŽœï˜ƒóàý÷ +ñàÍû.ïi/ãÒø1r§ÊMîy.J¿ôª+Àƒ +à†ìð@B6À,ÙE³O¨/­¨o,Š‹X›œ±…Ì’8±i|lDÄíÇ5Ó^¨³¶$HL)wc®”—èŒ÷Xruší´ }뻨÷èi+©ÙŒtÅ+i&pyüš5›jŽŸ*=Ð^@öçÚò¾±:«lŠ(žôÃ4‹º‹ßÛ@ÄM¨ÃR ¸tží,0Rê’b4¤t‚ ¡„â Ö«æŽl!´ê¨Ôª®å6˜ÁlºM9S¤­O‰Yß+;?v(G¯žxWÊ~ЧÑï&©hXDcéú.” Œùá:x¬{S¤Ua‹RÚ°\¸ííìjÉ_l"¯À;ôÞìgð:Ï>‡`Tàa bðPw„Jé|Ctd‰I‡°¼±†ˆÍÔÜâ \ëÑ’ÓU˜8†>¸Ãz_†˜¥©`úZD§Ò€ª¥H¯=(3¸wvÃЄºñ~© ‘aº¥‰çÎë„[N%ÂéÂŽ¶Žü°é9DEý!½÷;ôqìq"ÞèÙÄW[ êòò23òÈBv\|VœnrȺqúß Ý‚ÊFý}¼ûáîo™4 ŽÅb4Ò¡ºåZXcLÚcÍE«ut\KÕ4´m >ÑP~¬BŸíÇXV.&â±Ä¤]y›õbüæ¼Tk‘–],Ç&^0á­;õü%Eä=‚XO+i–»½ÍgÛö/£Ã ‰þAA[.\Ád#ô`–jÆÄ߈øá)ßY^Ùt¼HZBìÆ3Zè_Ú45ÈüeX,I‡$vÔhXk¹®ê3@†ŸaA×âkÑpÁ í]Ù +êóXþëß%ùšÀ¯6,KÝž™½¼#dgêÀ­¦ù¾^¾L‰ð²¥MqK-héxF)ð87IhþËÁxžÎƒëØErŸõ4ŒK—ßd X)VŒã¯‚#Ë1 Q=ðö–جDú„?WQu¢n_Ü +bÂÆÂ+cY'üÞaX,‘t¾mSXµ¿.(ܲ,û/ñfõrøÜ?¦P¼öšŠ'•,†Æ¾Äkç™5ëÒU½h1qW Ï©±q,ÌÈ!0¹õêÒöˆÎHÓÓÉKÆR,]î0x×õ®ö¢¤ªvcÈâù;®Ã`å±Ñæˆ%­D0ìH=Ϙï|úÛï*Y}‰Rˆë°Sžç 0A“Î(k8l„@o¯å` +:¹–SXia]¡„Ÿm»Ÿâb7wœ¼(«ñ‹â'»šƒI<8³•üB¦ó>8EÇñ ”? M»í–C! ?î>‚iÊ^#©{÷*¼øàsƒú°':ª°á¶²ª¨m*@©¦‡aÕåpJîrsîkwÆfÊΊÇ÷ýò¯b–êRR²²Sôªdy6®¸’iQwÇy<Γâ(”GhXKk*äì?\»‹t #·ÆÍñÔŠÔDÝÿ{Neƒdp¶7Í’ä4pb’¸C·/\Á= ÿîØ%·iZ’ø5‰k#w_áI~ÙÕ~-¸#Ëpw5¼fR•l}ºÂJƒ­0ÊÊCùî»»ím{„~W od QÁöar¬æoWO} +endstream endobj 19 0 obj [/Separation/PANTONE#20541#20C/DeviceCMYK<>] endobj 701 0 obj <>stream +H‰ÌW[oã6~÷¯à£\ØŠ(ù&d0ÀÔÉÌΠ“M}˜,´DÛìêâŠTÒì¯ï!%˔Ӥ“`±€añzî<ç;¿ É<IÅ¿’bðãjp¶¼ H" %D&ÅàìL·rp¶¢ÿ`qµ~0 É*!s:%šŠÌà¤ÂÐãYLVùà›7ó‡cJ½p8Ž½`ø¯Õ—ÁåjðóSL¼¼ Ó™?‹#2õ£I¬eÛàå­¾q»¼¦äLÈW2˜Æþ|¾ a䇓9™ø‹ÉÔþÃÅÛÁïOèÉ)ùæNA•F1BiäG‹éÂÈ6² ˜͆«ßg·{V¼{wö!Q5ËVüõîãåÇaDïß¿'?^,ÉÀ#úäåWj´µa8Õ6¤~<F«Œõ¹P|[1°Xà)ž’ !Y•³œj4Œæ¹ày¹™ø¯=#Ê‚°"%7\t¯êå[¬J%9X=Š&þ,ŠŒ©À¯4•«I×fQû1… èڌРhð|Í+6Ša´`O1ÖlBdC§–¼´>™‡?ˆ3Ãà²H‹Rq©éž–9Bb±ÙŒ;d‚¹Ì&h=j\ §'­†T+ø„·Фõ6Ä%EwvüNýÅ4lœüK!´o‡ã0ô®˜ö•ÄÉ-OêJ¨Gœ-˺HD6B÷ii¦­!¢–Ø ß—•Âå¿jÇ[‚Õ.<®Xõ8þÄ ^±Ìž-Z²’ZC”¹Ã¬QBà˜·n¸¶nêŒ3ÿ‰=à@‡¥¬†@Å +)´²,Bˆ¢V†ç8„P™OɘúÓ95–ûRK%NDA–eqDs‘(è×¥TãÎÚm™®º¼£7j5±.÷"çÈ7ÞÔ‡z ÜVnŽC|NúD¹"eâ“Û3—ü©ó½C3:sÏø® ãÐfaסsç%q؉>¤g]÷ëN—Í<lJH2Yöˆ³”ƒqgOG8ö”øÝb5Ç™”unâ&jÇT{ +\“rKDfìžWÍ•"í¬Ú›kƒBÛiìpÂÿV§"L?Š0ò€oÎ4M—•ù°j-à®]äÀ‹2ìçhªDÂ¥YH!¿î÷œApÂRUðžj|6]Ê%Ä<ŽàM-¼š[!D±«sV`üŒ›çr,¶&1°,dèT[œ*ä”Îï¸ÔœÜ×…;½Žqù”Ã?§N!—Í£Æãç–¤áVfe±Åìt­…â)`æ5s[L†:–®±¢XãëתÀó><épæÓ…ÍÞXË5ž@É<{ˆêoÞFt˜;à»/÷u†q„+)0RñöœWLÇŽÁ‹I%rQ4¢ÂÚGPKaÖ‚A V–Fí÷-HJœÞ‹2k³³=väãÕ ƒuþ˜Æ^%¶;%}œ\ðL@•F8GE€þ‘"°F®Ä}#9,qàË¥ÔÞ0JRýFËTªz£eÜó¸gbp±À¡';Î2µ3x “l3a6ÐÁ³k&A&¹ã™¿hywe-u°æì‘°L–„åP“{lÕ1HŽæ°–pSj?±¹)ùûÛ¡x¶uó†Ë2«Ñ°N†àìåá~ÁpÓ®w/'’ÿ⯊ÈÒ«}³¸uäf±`£Á}+9õ¾EàLý^NB:xþ³%lê¨4þ;˜ê ÝVú=304y‡Æ×'æ 躯[’¥Æ!¥þ+ôß½þãíTé?q|ï¹ssr×ÞÆÅk=¬†á_LœµóÔ!V·;æ¢l¹æ'hw$Ý<#é%mèæζKãÓ17³´·Óv÷ü¶Ÿæ­f=e%³‘u2±é<Æè÷nqY–÷¼`º®F Da>Kq/232é¾×e 4a¸zcòÖ¹›bá$0ºði·áµpß©A”À¦,î±"¯-…DAVàr`tdù'" Mà€0`öXmz›­4]¥M†c SàjŒÛ°Œ•fê]·`CC:±…vt?ZaYÅ39RNÙ4<ÛK×XO§4+h>˜¢ ó=¯Œ&<¤m‘€ÒÎqvyÀs)®\tÝ9®ÙfeêéìuÏp|PÃRnÊ{ÇÝázÃÉ!›Ä=ww98—'€€æíÝùüD¨è«±Ê¤ÓP0QšŠÆÞ&ȣТ“KKÒÿ|7Ô…X³¶zuUÒÚ¸åÆ-gÏô?O(¬£U3=\Ó9Ž‚„/€n~M­»"i™Ô&À/Ï–WnUêÕÕ~uÜ­TýC4è!ƒ3оǎöZ½gˤ&¯éôºæ0:»¹„¶Õõó,x^á‰+× Tqkï«TAc +ÇU Êuñ*ó\Hió &zýýGË›¤>:¸E:!õ£hÞrا¬eqË•%·Á/k@KûŒ[¶6éÑ&éѦ»ê$=Ú`þv3/ 6ÏYþÝ<‡W'ØkÀÇ60BDm†j‡ÔêíÎÌYÒ^Ó|’2_3e†"פzt›~û°}]‚­ ÈôÃùÄ;a¨¹qÏPpÝØé îuk¥>»»áèøL¿¸N}Qû”£Þ ëÁóñBdBÿ*ä@Ë|mŠ©i‹ÜÐ?õÚ¨ýŸBÞ"ƒ¸9ûòéí)=Ÿ7ÆŒöú¬çU nFzU[ÈM¹jÂö£#²?Ä¢«[O³Hí:ëÿÂò'ät#ï5‰Y·`7e}¢bªV¼iã²¹0ƒ²®ÔˆHp +ô4 $Í×à,YXüDjðèwÔ½¡ž_Mþ,æÝ”k@óe1Âé]ÒBù~SX í¶iQõÀÄW¦44Ó¦ À¼Y‡BwÏ+iÀ6L¿Ô•©0~t’^ø;Xªo\Â#héNæÇ^‚gã÷±å÷¼r7†ß 4Ø@#âŠY\*%‡{R¨Ä'”ìËN.xWt3ö|nÿÖ©o²zE¯oFW W¤Ïk‘ú#rýd^ì1{‰Ÿßá?/à÷âÛîèÖ瞀À7!'};H­ëbC̼@3õˆÃ¢‘†úóyÔT§ãÇÖÁàðCäÝ‚îc-zÔÈJE1öÒÌÓ6ŒúNv}3…Ÿe²ÒÀ#.5ºŽQ§ŽŸd9ñÃY M]îK£Àtr7Ä!"³ÆÛµ$±õA[\Òx]v"ÙÙ a-ŽȄé_`%) …ˆ?ÃÓ”À7‡CÊÖ¥KɨÊ.og‚…ŽÙïÏ24Ë•ëÖszà ¾ªy–‰-‡J+L·çòZ*­í>/d5&µŠt„£‡¦åÀi¹VJP£ÉÏæºTl ¹k®›~ ¾¶n)[qS—WÃj(ŽÕNH«Y¼«@)n$cOC-9 宬³Ô [–8ÛhúÝÍÝs³E_ €8Ø{‚6|’ÖYzMoúíÌ ž‚‰q”æÝú &7AÃج‰Ò õÌ…öŒ¾LCÇ#4j2²ÛIVcœÁ^Æ·Bf UÝŽ”°».S¸wnvüÞÿu FIðÚæ.ˆf‰€Weæ,<ßgå#ÿ“ùªém†¡÷þ +}p[ÄKV´Ç.EÛK‹%Ý€a'ÃÕbo¶%ø#ÙÏß#)9¶œ-ÒÃN&%Yäã#ÉgÓµÙÚ9¡5\ÓuER‹ÞfºQ"æÕV[ö0kòu¶êá€3ÕpÌhÜKEîç@1"áá'ì@wîwv·¯u?É(~€Oc犭w~u…€,¬Îó~XN„ «–‡ÒÖI^õ?ߌI’Åš™²ß"i$˜0¯>U4Ø€ìÄÈë­^$»8®^aš†ËjœšÃGŠÚ æl©ÒɣŠŸ¹_¹HCï×b~¿²OUÛŠfñÇPŒ«‰˜`h¬Í’ÖŠI^ºAmõ›à®Üÿ@7)k»¼Í¬Ø¨:×› Ìl,Q’þªÞ­[ðCîáN36ÜVÛ> endobj 29 0 obj <> endobj 730 0 obj <>stream +H‰\“Ýn£0…ïy +_¶„Ø3­„Ò¤•r±?Úì>'Ejr‘·ß9Ô•‰ð!Æ9ŸíqºÝïö];¹ôçØׇ8¹SÛ5c¼ö·±ŽîÏm—¬r×´õ´¼Í¿õ¥’Ôî×)^öÝ©OŠÂ¥¿ìãuïîaÓôÇø˜¤?Æ&Žmwv¶‡G—nÃð/±›\æÊÒ5ñdô­¾W—èÒyØÓ¾±ïít²1ÿ*~߇èòù}E™ºoâu¨ê8VÝ9&EfWéŠw»Ê$vÍßÃ2ìxª?ª1)VïVœe"v¿”I‘gó»=Œ·ä-øüf¼^Íl㜜ƒ×ä5Ø“=8XÈV²‚ŸÉÏà ycì™å‘å™å‘å™å‘å™å‘å™å‘å™å‘å™å‘å_Ș¯ß‘wÆs˜{`V@V`V@V`V@–ÐMà&¬Ô ëõÂz™ëé&pYÖL7›pë ôœ÷E¸&‚5‘Wò+˜{$Ø#á\sî—`¿dÙckˆB9GÅ•þ +¥¿Â_é¯ðWú+ü•þ +¥¿Â_é¯ðWú+ü•þö@#.‡–´“ã¾ú½¾£µú|¼æGw·]ü:C?8…;ù+ÀÊHå= +endstream endobj 717 0 obj <> endobj 807 0 obj <>stream +H‰tU{TןfW-BØÉ";£3«]‚Š¢Ö¨±UDkðUE ø °À" °¸¬‹<, ì2³;³>xA‹˜d…„´ID#dQ”J´'¤¶‰MµG9ÞÅÛ“ÓYh›sšæÌsν÷û~ß÷ûýîwˆ—"üÃÂ"÷FîX¶W‘¦Ð¤d¨–ïJ9š¬qï,t—¿\›^M¾ZŠ.@òä¹ Éýç/¬»1aªÌµ;D¶8a‰,dýúYh¢*^)ÛŸ“¥Q¦gÉÂ3TêL•Z¡Q&Ëd¡ii²÷ù,Y„2K©Öò«ÿÁ–¥dÉ2Z‘¨LW¨ÉTI²]ü²&'S¹üm%º]¦ÈH\¡RËRøø¬ñY)‰) +uŠ2+Aü‡ÌE_‹A ‘¥Âï„ ÈjdK’Ž kø®ÄY†ìD†‚¯=Îz®ð¬ô{ñAuÂ}ÂEѳ2fkæøÏiýÙ-ïܹ{æ>ô¹èáûìµÝ~~Zñbñ÷Ø×¼~GbñÍ ž÷"`]ÀwÒz|;~››ï9¿qA6L>“½éã—€A ØçÉÂ%’®wýý<.-)O-ÌÓ'è¤tüñ ‹gù”L®ÓŠïMbqXý½IFÓ‰¦æ‹Z›5Mª¬ã™¤Ï)Ú¦ÓNmÊn̓ÂQì(³%aºÒb=Y¤Ë5&2±LM£X´Fdâ­}l?wóf?Óç-7™ÐmŠå¹\c‘UZlÑ™Gq×.Ñ0Ûfi% +êÕ±Û³¤‡rF‡ëL9\>i¡ÁìAôlCC¥™0³t>ÅàŒÕº¾ƒ—cX–iówãtŒ²cÜØÈæÎ4Sa8ký-;­ï¦¬V{Ä”*ŒUÆ*¶²Â;°ÔŒbO#h¹aïá ö˜·¼¸µÆ#à{ôëè(ò<Ú.Úíc8‚6Ê·†.]wðúçé͹ÅmO¯ƒ¶lc´:=]øÔV ”«`ü9¬Á᾿mœÞÏžƒ…À/äÓ·âŽå’¹ê“Iu h?ï­0YŽÿS#Y®X çÀ«M¦J²­òzß]bâ£-«x#×j]¯>Û5*¾ßŒ¸Š¦Þ”¸º3ÔxˆP*YVIa‰¬’SšõºS&—–Œ§’™dòßE±‘òè@™µ¦ÉÂæz/EEð *äðÔ¢G+Øj®¦æ›=êhb›¸¦ºzzØ[Þ×d-k¤¾³}9>‰ +:–™IN„]ýªòË›ßà l]BF#èÃ11œÂ[î®ý²›;ÓÅT–˜uRK WpƒÉ¶®–»Hô[ô_´{”¦«-Ö\ÊPÍ|Ò‰»d^ØÕkì“4·4r—ˆ‘ MàcG3r¨œŒ }.ô›òS» •Þè92!9]Ž?™½˜¾ì‹ +,üÈÜÈ‹ L l‘ç;ªçkþCYOÕU)O 5bß%èG¬ûűÈp*dKJôÀa XÅ?V§€çu[}'¯5CÛ ´SAnÒÀì1×æÇü@9à*—Üb¯Z줩Þnî&€$¥Áx¾ýàž˜X΢¦èVcï{øæ/$XÚOÐÛ>Moÿ5zÀ[ÚÁplç`§0„Š3†Ñ¡?PYó¨ä%åKí_e7dƒ4{ºÎv׊[lX{=ßxmÓê½{¢Šý˜Äß™±iS}`¬¯ü–äy9Á;OÏäçí—þ>ú€>Š€ „†Co6‰¸KlÑ:È”ÔQµ%l‰uÿ~¸yE g™«Æc/gožžÍXû„Öé_œ—}PgÇÏÓ¼h)ž¬™!»v·õ´wÖ¶ö¬ÚÑQi}—bQ8y)Šy‡@H  ÙÝì&!0¼†@Â[P¤ ¶¾e-Êh{ÞÌÍiG<í\ïªOzë· ”»¹££w³ÿí̳¿çûùþÞ6œ¬8©ªËöqHÚ Š.À@ÏE5ÑN”îòPn¶E7ß©(ƪ>¡T™~ŸìÓÙl¤oZn£o53KHf1Á,‰‹¥ãf t5ÏGÅ(Îÿ¦Rloœ¥²PG(+U¨F]¦J!D3ó(³¹`Ë5L{†‰¹‰$bw†2£¦JXi$,#0È P°ÿßrþ›ç½n½ÇOax~ +&ú®Åû#…E$³ˆ`½ˆhPô‚‚Nߊžž?ûŠ'ú èðq‚3N+ÄðaÞ^B‚£¥©%Ûf/³œ]Ž€€‚Àž{_Jc¹n¥œUf£Ûë¯ûë¦!vC;³aÓ=Š2Œìb +‚žöÖ:ýSº²‰¼`‡­ôª í¶ÍBäHÉcDVb4¸w0s$°Ë½ð'h +:ÍÆ×™´Ù]î…¾øD¼Úb0¢úª£›î¡CýüjÁ¡ÓÉd‘8WQó1ó½†wI?Þ‰ßã»<™¡MÏl§\ô訋°ÏÅO£³èrƒÚÈBÁ„OØ*0è§y@öœ=ó;sž-¹î¿kn·´×¶ƒRŸ6”æBæçɼy”nšQjö+õ ÿÏJu3JÍ +2›8žŸOç­’§ÈSŠR˜¼çÙ¡LªO$ï•ŽÈ]B1)&ÄIi´dÅ9‚ÓKÔ(?‚™6³´r=!C ®bóVU^™E¤îüU ´þÐ Æípéº ‚¥óû&™Q3øb߶ðÆ)·® Õ·õêÆïn$üzç±L¨¸Ho”a8^ÃQ7´hØ‘±ãXz,_ÕìÆhàÉÿêÎy«€¸ñwÍ``¶ƒ.ÿ¢¼üƒy—©/ôƒ¨¡©[׃ܟ–0œÑ0+JŠ–cx)Ç +™~-ÜL5ÒÍ-DÓܧ8Ç*ªz³1¦88`Aͳ›` .ng^AãµáøáhPôü€:B®xÃÛÁ”C2݇ú"|õöûçk& ­(®ç4‰b¬a³óКw™W¿É¹-Æ [àÍøÏdëà×7D¿·IÔ3Tˆª[ða²×…ŠÙEÆPQêH¡NÃ)qŽÉn ú>xå{ð‹ k;1è!Ãíùmëø÷#—§'‡s"ì(Á¢ + Ôð="wHÄM8Çò`È ÔóΞì|1àU¼Ïé‹Têàöõ„ÕZ]†i{({Þÿ·B^Ó¦wù»dKJ$ÉD r&$ñ TÙ¨ÄD* Áqýq} .œ=ÄF6ÝÑ!µ£z!mï§û—Ê¡EÂÁéÊÑd»ïMOHïd–äy¡¨Ü\A,1f²G627ǦH20\Cï×áMjÎvÖP«7Ô…&³½ú r×yb#&åÅ(>REJùPÿÇ’OÓwÀÛúb§;lk + vµ4Ùlü|2ÈG«Ô uš¶Û[‰æ£–Q!ÍIÒ«ŒCpð)¥G!ñmiȽÀ9°+S0D™Oµ¢Fã°ç2ûgѳrë[±¿z=>©åLf"ú:à}Obɬ¨¡ÐH}ùY§°Ã-ïC®ØjÏy±וQ° ~ºç[fÙ±ÌÒ*•dåÊ¥|¼Ê˜îmGOSäûd9¸õ³˜us€¨#«pƒZX¥ÒJ³áà÷•ßk Ü@Û¼Ð÷ÆÚÄQæ§B˜ XÀ Vßs^sg”Ua¦]R¹Ð5²ÞÐzÐ<$Ä œú¬ls,²á½ðøLLœVž 3[¿ÿËí¾¦†V4x `Ô;.¿t6È R@#Ï!ÐÍÏ¿üz4±ÐŠR…”è¼N“«’¡Eªä?BާϾÅÀ ˆØDõ‘Èæ5[£ò±Òœ’´O`få7›ÿêj6ZO¡¢ÆxÞc·¾” ¾¼—„’®ô€Ôv°Ù±À= tS Ö·[0t3ó]%É>Yú¡FŽI ¨Ì[e{"`çóŸ *Ly~TÖA„ùyä„!÷ÒSƒ¡£j¨êZ¼½²kÿú­»ÅR4+½l[2ÌDaÜäÔÅŽÆÓh0“ÛµÖ P|U+ ™öBŽé'‚Tm‘ªU«”š|¢`vó)žY|ºÙùæ›o~¥t´¡”R›„jÙÐ ƒs`O§£,:+mVê9„T„E2À®·õ¬×Q[®lDk¸dQ§mÐZ¨jKÐjúd‰®I—”<€ÅÅËäø>Y@Šrà=¹lìRdÚj¥­ˆl`Ú:AÙ¥¿u‚Dw#ÄíMžŒž¢ ­zý#Ì×è¬ý#G#>¬‰Gä\ö}Sá‰S³dÍÞ_®½žé9‰ïó¾ßóv  +C,|ù\øç‡Gè5`˜-vI»»]®în©K,–JŤÊ}¤hU³{æÒšº÷‹R1ÓÂF†à%Y»U*­¶U«-"Øb7íÓ\pg©A’Õ«=Šª`Uômº U§ÍDËLR¶Re2£®Î3gÎóœ¾F9Á7нZ§1€’.1êOÖèe¼‚²’9|Äü÷EUµ*®ª´¾È»Ý .‚ÜA¦®ƒ'Ù䬎/y-…Øñ˜Ñ—÷„/ðÀº/¦¿ºuÈ&Èãå·VÚBÔ9Âÿ$0úeoa“5JøNÝ­D»7vH8K÷š +x™Ïåflº{üzÿrc¿b7÷µ·$ù(2µ«¸×]ËgÁ\ù0;”ò×+uD7°ç[˜núzõzÈàî?-¸Úç4¨Ùj¶š, +"½¡NÖüïpk€Fï1B£1óI+eÃúN³ž¦‘T x¿§kÇt—ôc †ta}³ZÔÄl+imXÏ¥\/Ù£Ÿ»B±þÌD€2‚˜él„Èö¾R.w:\ùååÏi"M¥F„ƺ”»ÐpÛ–öÂçˆ}wÃIE#Z*,çò ýö&~ƒ«Ås“ žZ«Œ¨Šf‘¯eš,j‡o‚7‘«`+XÍöïtçèÅÌótbÀîûš‰LLß ÿÍ` +è8N<öÎñwn¢BS Åb\œº&â4Fóa¦f9WV“_S‚f@É6ðM2&¾fáZmmN-Š#„)„«EšB¬¨B„WÌ!0f-û.ç°¦øv;•¢·:­iÖ—eˆl·ØÊ®†°k7ëÃmhWr)hŠ1A…0‰dS³!èÂzÔFÙ™uœàÆsð™ÎW™Ctspø‹Ïèì›øKÇ{7à¾~˜Â¤#EW@v{×ç`­wBï:«·áé1üw(ü¢òXÑs)#;)|w£uiܪ*ni6|î |ÝV€”Rð$SLWÕCôýµ#>ÕÛÉ’üÕi­ÑÄ clø\+È«ÇꔦÆÈ|OÄa½FœÐÚ fM]Ó¦ëÿìò7¡ó°îoSÓÌZ;îèrbD\G¤õÀp9.וr dNÝpù8ǧÇD¥ïUjš°ú“µ¸"uM‹ZRð»×óöp­`,監!•.]ªÈW‰0µ:½žŒoÇB-²‰ÍVôÏ>ý@+‚G‘«íðWÓ”&«ÚÆ»yöâwÃ|ð3p”Åmp„pô¶%x›/–‹ £V[”'¸•Û`vUZ™• Þ¦I. ÿdç::unõÍK¡¦+Uà¢9æVŸÂ‚Yk%`B»I!=qXú>3_Z-8Ä“Ô™-|…’ÆJ\]¤+MXÒ“ÔýD1Ãì)¢IWq)Õ^¼ô3͈±4™…õˆ“gØwߟl¿?ÈÂø¿Ÿƒu¶Ù6hp€"Ó¹Vztmû?3 ŒÎÙNØîï›FZ™€0Þ?g]îy<òO055bN}èVD-ì 0—üþ +endstream endobj 690 0 obj <>stream +H‰¬WmoÛ8þî_Áò!¢%êÝ( +¤Išn7îfm£Å¢9d™v˜Ø’W”ãæ~ý ‡”,KÎ^÷p_Ä!Eçõ™áŸ‡8$t‰FJ>øFòÁ‡ù`t5sH&‰KˆÌòÁè¦k9ÍÝ9°8_ ê°€Ì3Ñ€(&jdaLƒØ c4‰|ø¿Xwü…oHH†ó'¼M1xV,]ÅÒºùsºæ’DõHŠê‘—ä¾,2.%—ꌺÔ5—ª -ät3ü®Å¼š)1gW_@¦€ˆO&¤‘ØKu•@e ¥OcJAÛÙàÏ7 д%F[e/‰¨ÇìDeRËÍ:Ær¨çxpr¾|·®¯§$Í—dèEÖ|ùV™æRT¢ÈÓ ù¼—•ÈøðŸóÏ= Œf»4÷nt™Uût3ç?ªwo>~dŽã½ÿž|¸¾"F†› -¯¹Œ2Ï×X^€bWƒñ‚So·]Ü(€…4t"T8 ™Vo3Ñç|¦Î}·B:´]×bC;±Ôåè·cxAv1cÿÄ#°æ'Ê%«Aàƒ‘#½èGè¿Ä|ÿ/zÆŽq#q@/ñIÄ"ÊBÏUj}·øRT-Õª•ÇíM²•3U‹.ÞÆ Åî©• ²w8k¥mûÒúqh~¸ªmŒÙ ÖhÔ·ÿÒ©j1*{¢þ E®ZŒÞbm¶®z€h~̇ñÿÑ´ŸÚ´¦,Ìÿ1°~"ž¡~É +> +7<¸FwA|ûªç:Q˜¤YZVMžB¡íîQï|•½‘94„[ꇠi¾ÞèÞÎC‹ª‰k™ ò¥y%õ +Ö8gûL=zW{Ó8Ù†i‰»‡çi½Na>Û'¦oXP.˜ß§;…#@})úxÅÍk1L:P~Â3•À³22]_q¬q +HÄ)o7Å"m4Ô5_ø¦Ø©þã¢×ÌAÎvj ,C ¨&W¨âÁ˜õ™â àjʳB5¥ÂX–Ñr0žb2,LãÄàÜ7Ø &}jW¦™Ú%q¦œ¨X)7Ãøë.M‘˜pè¶ÿ +‹¿#6²Èš ^–)’w¼Èù…~“ÀÔlø´•¨l 8hàhº©šçÌ'ú÷¼ +$}ž WFYÔáZ?:–GDG(oÝÓ³!üZ¡ƒëÚÈ”z¶aßܯJ:Ql°¯„j{U䎉¬ãü^9F%LVºOÞâDWãé›®øà8óÂ'í(,tŠ§Z¹¾¹ìw’žO‡;ɸíhH8¿ë'ŠGÃÄd¿åúÝú¼¨¶Á™¸§e¯Üúº¾“TJœ4~ñMNÁ¨ø^VÚr™¨^ÇøkÊ+HLïŠc‘)+tø¤šu¿¢÷©`¼hÅq+˜œ&ñt qxÚrr—àQø"TGÓí £.”@ÜæEÿñÖ{–‘ë &t›~ðÔøìc°Ç¯÷Œ{ÏJúfÃǦabbªÈ…ž~¢z4]_Ü4ª@ÞRC;ÖöÎ3+¬;V˜s»éXíÀmµ¬†yªÝG½ý«ûUO¿ÿÔ¨Eª ‹":=+¬<5âÀäA·­¶œô­ž×k\[Á®K‚"z½ëßl]†Mr±æ€ñšù*y75£¾ëšÄíå‘õã+UVù€^Ûí>‡$ÃÙ),'ÀºÈ{¹«ÈMjfŠ±öëtF~|§Xi6žÑ×0E·ônm.„á&•Ð*±Ú†¶ÒÐ=Aã¹ê³Å¶(Ïö vŸ94˜G“°FIÿg føuž€ûO´ÀœYd*d££PP*èÕ%ªýuJoT%ûÏK§#vãûÔ<¦TÀëSßgÚª±[®WRl¾ ¶+[vq£‹èªØx‘u¹_C4öñíLù°LŒÞÌ¿þ#À©o +endstream endobj 679 0 obj <>stream +H‰´W[sÛ:~÷¯à£¼cË"u³2Î$NÒËiÒžØ=dg‡±˜„­%¹º$Mý$eË¢Ód{v_$Iáðü>ðˆG"ÊHœ0RŠÁ’ŽƒÉlî‘eE(!Õ2LÞÀð¶LôßL.nžëŒ,–$vÃà.JˆàÁVŒ¹I%d‘ .ÈŽ)uØpœ8Þð_‹÷ƒ“Åàϧñôâ) #7J|º~à¿Ýè³9®˜ÏÎáBò@rFaâÆñ”0ßeALw„æ çƒïOØé©?§äžN{&‚)­a„Rßõ§áTý[ Û‚aŽ _“ùšç¯^M—uÃW ñ£~uzrzÊ<Ïýú59:ž‘CPóä D<€n0d!bHÝ$‚ƒ)€õ.¯ÅmÉ1Ï©EJŽeÅËŒg"¯GC?vȱȊk¹’?Ž,rÂó”\Ù]ŠÓó>ð2­ÈußÜÈ÷T€Çß„ªoI3ßOÜ„BPt1#4 –"»%Œ þØSã1LCC³½6>‰Yàzþ4ÒÑv˜çâ™Ó¦¬ïà”rH™#x*ó[Ã/¾õ Õj´sŽ»Œ…*ª•ŸÊœ#Î|ÕAZ»¢*V ~ªT„Àö¾Ù^míµfx]3¢Äs +®Qf|^§ý?3µŠýþTÊ|)×+QéñMQj,n5†têµXªPPsøoÝY±ýÖîü¶É¸™º·wµ9`q§—4·wzâ°³o]ƒì˜º¾–œY‘]óš¼ËÖM.ëLj@áŒH;š™iOåÒ!§âºN†—ú„®>DOhïúùœK—œLfçnÿˆ ¯?ékìÛÔR¢³tÓÔ:Žöµ”†B)ö#D ü à ›Yàœ«hª”l +1×Ïd.³&SòE£όߙq{DÃ4½ª.¹öÓŽ…×ûæ^är%Ì ªåRËWÎcþ7°|x$äWH¢µàjhû%}3Éyq¯3ÜB$™öá½ì8 îprq2ŸXÞ¼gÝâûÞÄÊ¿.öo™Š•ÌU±ÄQñ ï <88ã5dºÑù}±ºGHÔpv'W©ÿÆ#!)2£ª“ „/Cæ9²†S*Qmìz2ØÔ#¦ËÃúIa~qe§I@Û•v #Òjñ–Ÿ¬-Æ>s©ço‚`ÿNûòÆ +‚JˆN6¾(ÑÞŸÚŠ#Õ:ž_üì?â•\1ÝePkw°0VAoͬ (Z4s…Yl¾ˆL¤½ý.Äš—mfã„æjvCº1¿ ¹¶ªì”¼4«ŠÕfË 2äõŠ’šÚðyÔáóÈùÀ´`jÂÓkeÍKÙnËž`?„.Ìoã°ïÁ°Õ™f·åÝžÔìÆ`ô{¼=Ï4ˆŸ‹ž]Þ—%†3ÐÃ[‡s±T† ÀíqüFä¢Tx¢nÞÓE^ÝÝFû…µ~a1¤Ð<—<¯äÆ70Ýá¨hI¿gE~åù1ÄTo“OEUm~_nõçÅRŠZŠª…Mø}šE¢š[ø§½uÚª»[×Í÷1ƒó}¥ˆöãÁ.®XØâQ¿ì°Ÿùµ‘à³°§Æ¢âðšðù$øRŒTŸ®nJìmžM Ç·Š|\Öž ö[1ÛÅK…y?„;?þ¿Äcºåõ<æâ\vHËE"_Š€@íNá}“‹}ô›Áç˜Ú%h“Å/hîƒ0v£84—•˜“ômê,ÐÒ¢XYö¤¿hêƒÀs§‘éé?Þ@¶E*i§¾Nyxk6á­TÍ5HÐ;g²ªÀ%8£‹*>Qóùh›qÆEp +C¿½PŽé¨9M-hUïE[2m)SÇæ€?C»Z‹ê€fP7÷°È%´b¦Ó5] ø Êæå7•RÈ—÷|´—E¬èya„S7dQŽ}”»Œ5-{ö¹µ5Y Îø™ÉŸ¦1ì0üqË—»¾}¼.eÚ26ÜR­ B¸Ôçöv€ßÇÚŽ-ê—Îïciå—š¤'!ô“„~¢-‚·†„a¬!Á†&·úI¯OÂ%º º-y–Ù³†ÔZˆPÞà¡GJ‹ü~¹ÿ#PI?õ“zI›zI/õ’6õ+õôä(Ô0Ý!Ÿ-˜}0H0ÿþ)¨@gȨpÔ…*ñªß­ÈèÖ.f‚‹µÁÅzÁÅÚàbû‚‹uƒ«]Z6õo ¶rm¸´Î6°ØN`1Ö˜[h¶aƺ´¸ƒ˜]äö6Æ2…<ûä‚°Ÿ–Ô¤%mÓ’öÒ’¶iI÷¥%í¦%Å{-˜(ê¨ÍÌæúýq-Êíu&N!SÅÀaÕH´¢›( )ç3 +9>$>j||¤­Æ9 +|óQ©›U>FЃVüoÉp¿^Ø80¹>–C(ñ€ _=V²RGÎx%ȼnR»z¿h˜—¸aÀbÝ3ñu-«š?4y*sŒ@Fw%¿òCfF¾jKõÐÄRT•žÐ×êœ?yv-¿7V@ +4r‡aèèÏKü_%UðÓZ,ÌÚãã -˜;uju'Qx:ãM¦oî©&2¾ê{Šk•¨²{㜠 ÍÅ0ñvn<æ²ãno0›»X +¿ÄÎ}ç’7øº©¹OüzUh‚0¯KyÝÔªJÃd]h5HÊ4x›ã0åN%¢®õ¹zñÏÍ‚#Q?‘+YÔnÒ¿i]vË‚¿ᆑ³æklò@Ð&TˆCª>×øT­D„Wµ¡5Ôé‘sÔÈ•þ7³ÓiS7ZG踨5Î\7×F“PÆ ]Ì¢ìZï;‚d)¡Ë|$WŽîÏ­œ±.c‹Þâç/’z–ÖÕÐ%¦Â^BpB¬Üs¹O +xÜÕõú`2yxxÀ/î­›ïBäÊü¦˜¤Å²k[]¹¼Z“=ñs¬B>°'? )Kt/8WŽHÝ«¡ÝoO]êÇ- /î̆oñë¢ø¦G¦— ºq`žQ{ÒÇ°ÿ$Õ3P‹îE ùð¨Ç& ƒíq»É¤©QÿX—_d/¤È«!éW÷KçGÕQPç=Ô‚JæÜ 1‚SuŸIZa·íK YÁ{.EYr-p:ⶄ/ŠH€ÍBÝc™y^¶Ûgw´ÊWŽ™ˆµ+tZŽ[ õÖ«_îx­ßò5,T}ŒBÔ[ý_T¥‚ˆ;ÐãÍ k›Aص&L=7·;TR·;-ÿ…·OY¬öÇɬ“ÅàÏÁ‡æ +endstream endobj 503 0 obj <> endobj 504 0 obj <> endobj 748 0 obj <>stream +H‰\ÍjÃ0 Çï~ +ÛCq>(ëÁFÇ ‡}°làØJfXlã8‡¼ýä¸t0ƒ­Ÿþ’%~íž:gð÷èu FëLÄůQ# 8YÇêŒÕéæí¯žU`œÄý¶$œ;7z&ð +.)npx4~À#ãoÑ`´n‚Ã×µ?ï×~pF— )ÁàH…^TxU3ße§ÎPܦíDš¿ŒÏ- 4»_—Ïhop JcTnB&*:Ä3ÉЙñ‡¢Fý­"mέ*2Äuá:sS¸ÉÜn3Ÿ Ÿ3_ +_dîÚ”Jdr×[ýÜŸÖ÷áô#͵ïr(bÞ×|RåË~‰Ð}T +endstream endobj 747 0 obj <>stream +H‰›düHCIOMZ+Palatino-ItalicOsF#øø û>û¨úqú*‡° ÷÷‰ªúœCopyright (c) 1985, 1987, 1989, 1990, 1991 Adobe Systems Incorporated. All Rights Reserved.Palatino is a trademark of Linotype AG and/or its subsidiaries.Jœ |ùu }³ø0³¯Ï÷°Ïø\÷»÷\Õûû<.û;ûûº>ô÷ ÷÷÷Cûôû +÷HÛÜãË¿[!2`û=ûJY±÷ƒ®ø[wÇ÷æçø/b—ƒ÷2¼‚;y3}8z!…ui‰1†‡j½ÉÃÃ‡Ä $¬0rŒ“ ¯¯÷i â”±­—“…£‹Âav¤vø9È÷ÔÙ˜8¥‡•…˜”©ÃŒÙ««Š‰ªX«Š«‰ª‰˜¯÷u‰mG‰OU‰G;ŠãÁ÷Zö÷ë.¨QNbu|psF™ƒ³»˜³βfR8ûûVû-Rûv»øèÇ÷ÈÛGÕà‘ûtŠ—–Š•÷]÷(÷Q÷é@š\”Ч›ïÁð¹hÃ*^`}wcW9¡{¾µ¬ ÁÄ©fXPMGû‡s[“‡à’£¨”²´gE7Jû+û:rww……ûv¿øÒÙ…wó·÷&ÑØ‘ûu™™Š¦÷,÷.÷X÷ˆŠÐn£[¡!¼kŽ¡™•§ž›Ô‰¯´‰®»¯«¸¯ÍØ‘}l‰T;VŽf $[ûnˆ}†z}{ž}àhÊq¢vSKPû1û7s|x}³øò³«Ï•Ï÷8ÙkÏäô÷¿ù ¾±eOFb[Fd<±v¶¼Ê»ÈÔèûŸüŒ9ÅOî÷õ÷îàV¯R«ôµ¥óÌèÛZ·;û '(&<Êh¬yè9e/F"÷ÊÀC_81Gc¼ËͱÔñ¹Àm¼m8yùEû—÷‹÷¥’üÀ‹ß ß øˆ÷ù a˜ +endstream endobj 669 0 obj <>stream +H‰ÌVKoã6¾ëWÌQbE"õ‚»É¦íbwÑ6zØ-36w%ÑkÊvüï;CJ±l%zj.šác†3ó}ê‡BiÄ +l¤÷4Þû™wyûBi 0eã]þ„Ã¥ñ.gÑß!Nν0Y³² rB’¥yäa +ŒEãzíùŸäNVÂdöÍžF¾“ˈ\úŸTó],¥½jW Û•ÜÀ¯]Jc¤!:4ê¥}ëéÃÌûÍ…yû@a>Ü~Á˜ØC Ÿá9b^° ¢€xÀ0Ë8È1*÷Ål¼¯`è ŒaʼÈžçì$eèãfgÅ +r´œ-¼¯þÝÝï šLxæÏ&YìoDcT«t#*ø¸5­*åä¯ÙÇQ.Ö¢¹ºº|W¶[QÍäS{uÿáþž…!¿¾¾†÷w·ÐÅðá3ªÔ"0»|Îm˜ÔX¼äí!ÄÏ '°4HÃÌ&\¤Ì%lOëØ‚v1#»¯~L¦Qä³É´ðC›Ë·#½’$ÁºtsHÐÁçâ‚ yô’‹œq‹bœYüŠîkQÌ“ äd, XJ–aãzš$Îþ¿¡Ì]­^©r†Ås•£°£‚UŠ0ˆ2¬HGtä‚Å! +žöàÿ¬÷0‰™¿ÐV í­œËFþò´5v¨'Qî?Ê ¹p[…|š–ºž‹V4ÝfÕœ¸"z‘\[c½Üˆºv+h·ÎåУh`1 +aœs˜Ýa¤n#¢¦ó˜Ðz§ÊVÕ´tºØÔ8_ê3Épéæˆ|‡TZo©.Žs¤¦HáÈRÿ³[ŽbWa”C°pØz§„íÓVœ!e ­À +Üü .N)wB¥–«ÖjXRç ¸¥ ð¦%~ õš(ÝÀ/ÁÑÖl¡ëæ²ÝKÙ~FB»×PËr%e×µ6FÍ+yc$³èÿF’±<ëã8G’€ìqŒzßõÜŸZ,#½^ëM»m° ã‹d×µU#˶7±ÒÙ©¦•K‹=»n8c6R*]Šª:X}. B…¯#öͽ¸;+|ûNâÅpJU©þTœW3Žw¶3÷zãù$êu%/ܨMïòà”!i|Êcš±E I™;²»¦š@5eµ]H0[[HxÄú¬mÆÐgE ½Ë01×ØéìÅ®1îSÞ³…¿L>æ §&àªh êÙº‘MÛ{m¿y§«e+õªà´¿§ Q§ÁWYº&‚`;¶P÷4›oUµ°ãbw-ŠþüÂ_‰´Êœº)ëÕÁ¨žè…¿¦u)¤ó%œ 18Èl+çŽÚu/±½z9üÑ sü'츒äoã_ ‹ã_¹r§]³)úÖRøµÆbëj–nìî?)ô[ljG„¸+ØÐÒ>û¤ŒQ1 Ö+žÆw›ü*ü]ÀÞ×½î§~‘Æ«mdßГe.ú ~ÑÝðÜßV’L+±>ÿ0D'3m +endstream endobj 646 0 obj <>stream +H‰ÌWY7~ׯàck1êé»[€ÃñØÉȉðƒw± º)‰vJÏþú­ƒ}Ieû‚X,’Åêúêâ G8"r=¯=Q«ÅgQ.~|\Ü¿ÿ䈴®MZ.î‚é®YÜ?ºÿv€ù¸]8¶xâ1±†¥Á¢<Ï^¯£µx,_¬È^®\×ò–«µå,ÿõøËâÃãâ·—.qøp"ÂÈŽÖ¾m?X£n[>ñþžøôþ C(žD ~‹pmÇq"<ßö‚Xv„æ~ZüñÂw:¤¹+¾áíîÉ'§ô&\×·ý$LH·ćY¾·|üº¸ÿtå›7÷ïÒ¶“ù£úÞ¾ùøáãGÏqü~øAüøð^,,;?ü +$^à6ôB´¡k¯#¸è1cý½lÕ®–`1ÇjU&t#ëBªlï–~l‰UTëÿ˜=º*…,3ñ»ÒÓ£ÈþÔ‚¬³FŒV÷ýÀŽ|ŸLöø?Muú%S›ùþÚ^»àS› 7€/HU±Qµ­É0¨›8±Û^„¸;IšEaÈèÿošy¬Ù è8pó€Žë­‰pÝÄ=/îqYï@×ý-0­ÖÞ«zé&–¢™¤ÿR"2ç õ2±ºvO“´* +Ý4°úV,£Øz79{"©|¦±BöLЪQê›.wÄÔ¥n5\wTÍ1¶UÍ;båÚ~øÚªï²8äJÈV€@‘W)¨[ùÆ«›«£î–¶¤UW¶õóÛÑz˜¢ubÇÞ Àd¹ +Ó`aןZfdau ÆkõŽ@kÌRvvò@'ªF¥Ý¸&¢5UT[˶ªgü´Ö…jzáU~$´ÎA9ê*ïoõ:í!¤­ªGξ+dIT­wû%¯­\> À•cº•µ6§û#íÜà‚>Ušv5[(YW£Úì +å??Öi{ÉÂbý/ö†8ôzEN½”Ë™6„5ãâ9?Æ1JãI”Ò=†sO™©jx¾—GÈñ[ÍA¥¬¥,«kÙÀ2å»ÚêÎ\²„ÜÝ£úN¡±ô2µ{Þ™’9Bó¤ÛýPßW ïFBÂo›·g95‚TæÇ·¬¬ÈÕ`eXF%™€’Ì0I’ä"ÉÄà‘`b†µn“ë)]‚! +–Q`Cæ·V¨Ý +'ªÙ2ÑŒ0 #omÉÌäæna_x»zHÆŸ®£& ì¬é¢cÆ4Ðs5UYªü¼ç +pônÁÓY‘W%©D iøPæ‚G¥giÅýVUC× +½:ÚŽ2Á}ßG=‹\Á4â< øëµí„7`£ÈUãðSdåûôÖÀÑø 0Êc•û¸{’?4\@š,Iô´F÷x$ÓåÏ<ÙȆ2c’gQL8^rÑ)L³||ê¤>dÁнX‘×= ˜àˆŒØJ!.UM¯Â˜“Qlejx +Òë)¶ž°‡Ô|ÙW§ú€O(GG â†I¥ÅÒœ]ïö/DÊõ’讽ŽoVä•ÝŒG–o 9º¯7Ø ÉÑ}½Ø¸¯_²ñ'†2buù­ÅY½oŽ¼±9ò¸9z!à1ÓwM½2³^‰êÔãóæè´êûÓ‡]Œ8 ø¬’ÓºleW0Öa"¼$¶×DÚø·N5\Qk•Ssߥ»ÑTîðé·¥f¹ª¡q¦ÛÎ"؃ÀIÜø¯÷V$Š_ÁË0´è]±ò<“N8äŠif¸ºPPøs³F!=Ûýðð»96}/0«:ª:—ž<évé‚IG}=¦/9Î…HöÏöâ[À‚‰¢WEr8m¾B«: ¤cýFÿÃÕ +ÿÑ q9"mÔ%öv&zC Þ°°3‡¸;¬ð3B*äøÝ_ ×+ÁzÉæ0Æþ-Øœ9³9ú¿wÅÿÝÈRß¡U/6²•%´RÈÙ(šÔôýä²À@Kðïà5AT­w{sÆÔ?IÉ<~^àÁ- :0¸> èÒ½>f&v¡G +¢01+rÝ­ßKj¨úÍ$ ÿ,Gøæ @Î 3cS z›©².íËÓ´‘›û>ÌÕ\)?˜á[ìYšƒJ5¼É".–F§£Î”˜J„ß47õ¡pÁû]Hºkï !E^o¼Ð7^èG§ÐŒ2 Îu™B‡ÍmL©øgƒ¢+>?mìèüTìËPõµ¿G&…—#Ü × ½@£Ô7ì¦=Ý¥˜ ì'· )rV–_ÈFA2-0Ûð@=ŒcF¢–80˜ðª Ç”„·F|Õ°Ìô€ƒi2=6C¦O ›V>3ˆË׊»{ô)lÝj|vn¹T¥ ŽIp È" ÆyÃôsõ.X)ÅP`b(01œÅP`5r¢)^‚³,np 7Ó@ÍšpºJ²™™§kÓ¼®]Â8}ª +xêbåŸrӽΰòRø$¡í;7€éñJˆ(½®‰w^#`¾“CheÄÈÀ[)Š\†F‚Æ8³á¡ÙË©†/e1&KÑ‚kèR¶û¯r3‹‹ÁÕMFç¹DÊCý“q +endstream endobj 582 0 obj <>stream +H‰ÄWYÛ8~÷¯à£ t«EÖ"Hc’Nv3˜ v&=ÈC2Ð2m3­ÃÑa§÷×o”-ÙîNòä±Hñ(V}UõñëÄžˆ¥/’Ôµž|åäÕýäæõOdB4Y9¹ù7tWÍäæ^þãÁàýr⹞‰ûL$n$plýxæF3/¾ï¦Iÿ‹‰ó›Þê\Äbzÿ…Nà pK‰[:¿™òA­t#v¦]‹ª]ëZü·®2Ý4ºÁ5x¨´‡âíôæ~ò«ùúªùáõ{Ð);ŠßÅ^ã õ]‰ +®· ÝhÅ_¸í‡É×' pªè@ᕃ4qƒÙÌ]YôzûGÆòÜÀ `åýbòɹ»ûS¨r!¦AâÜO“ЩUÙ˜ÖT¥Êů]ÓšLOÿ¾ÿõÄ76ª|ñâæ—¬íT~¯¿µ/Þ¾yûÖ÷¼àåË—âÕÝkauxó;ˆ¯IßõƒpIjZWƒñ¢±·‡.Þ_8‘»±—Ð…ÓØç Ói-°.ôqÝ''v§×R:þô:u<ºËÁoxEQv±;ÎDû§€±0E—,'QFNòb˜ÿRû}Ö‹xóÀÞ<²N#a¹^†"ñCf1]â—²ÔßÄ«‰×5x!'|ítƒþhIJª@S|ö‚Dç ¡M¡Ëö<¬ÏEŠ” Þ½e‹eÙµÖˆcö~`µ§˜ ãÈ…rtIÌùþ,±zxǘ&¹§pqZD `!â&pŒ¼érª‘4ƒ8@‘JàM`îÏu»Óº<ÚûîîO{ÈýF‹ésébùîC¨ŸqGÃÛôòÌŒõˆŸ­jÿ©v‚8ìŽÉ¾+ŸÊZ_óªkYd{Ò3†}…¿|E¯`…)9øiau´ÁJ—øDµ»U›îIêŨ¿N#°Š˜ PP#¿Øv9î1Ï5ñéB‘+867ÿƒƒñgxM0 Ü ‘OÓ€Ò1 € …Izq‡[=ž¥âï07Ò»ÍîôžÁ–Ê,ÆÕžÈ(®¡‚ìä¦| M(¨|&±ÃR0ªWvklô7Ulr}ÅÁv½÷ÂQnï)E 9ÇJ† ´6z!ÏsU…ÆŽK9ö@"Öè†zK»Éþ ÑØ=ñ: àäñ1t±ÃqXN£<fnG—w:ë~—»N¯}é¨ÞíØáhg`£¸G£É‹Â´`±ÌN3%Åñp%'Vl+ûëxîø”V=Œ¶=-òÁÆ,tÝç¢(µ{°Uµ¡ä2Ÿœ£»±KÏ;hwU¡í2‚( +GLüÕ4Ufl¦ÂUùý©‹~ðð;KFÊÓd3DŠŸÆ®Ä'Ó…‘bõ8NO‘üjAN:æ ìÎmËU„}u^paFoŽE^Ù—gIü ÿª¶/1;Ú)7I½%3.l‡^|žìCÑ@È JG¬îŒ“â¸çò>"5¼ˆæP:qr å¸tCGþýÍJíýÈë–6ŸRg˜¡»èjä£(RÔ…6ØCyôV; ˆvìKo6V "©Ês`m¨ÆŒ´›!iP+Ë%Vªÿõˆ_ nQnmZüB™Ã·ŸÆû¡¨¿]Ÿè5¼ =Z3À;ŠÔn_è†á2Ê©<¥íêÒ¢ôÇÞ2ãIüûÔãâÜkó8I¸¾//ÒRâO,ìèf’1Öej-7Œ¿Àþ”D@~¯Ø.Ô¡—æƒÖ*F8ì¿aØøÈ@7LW)ìûë½ý •#{´Gžån¨À’btS&ì{ÎWbݪµY­[xÓ å«¡Îtðø„â‘«­À£g²4ÒK.î.R#þoű³ª¶º.--ƒ>\b6$¶ì;Ø~$²I$á´¡9idoSê±aIdë²L”ýÔ_ç~°ùÿþS÷à +endstream endobj 464 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 475 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 486 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 497 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 510 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 519 0 obj <>stream +H‰¤W[¯Û6~÷¯à£¼°],_vƒÛ\)ÐÚclÒbAË´ÍIô%;§¿~ç&YòI‚û"Gäp8—o†O“HEj'jµITm&¿ªjòÃvòêíC¤r¯b¥|^M^ý ¦G?yµÿs{˜Da´HÔ6W«0ËJ!b ß%ˆJ’p³YnÔ¶œ| +–átÇA2o‚húûöÇÉûíäçoñæµÊ–ár“ª,LÔíÀ;Þ>àŽ‡·ÿ2uU õ“šd›pµZ«$ “ÅJ-Âõ"“/l|˜<}ãži«G<=¾»"\¥»˜Šã4L×Ùšt[X¸XFÓíçÉ«‡³®^¿~õϼiu±5_š×ÞøDQúæÍõû·j(\ùþ' ñ€¸·a’¡ ãp³„ƒ¶{0ÖǪ1ÇZƒÅ¢ 1{õÎz]—º4U3›¦«@½3¥ÛÙÂþ!k¬«”®öêc‡[‘ýÐÀ]コY=Má2MÉT`ÿÓT÷7Ú,M7á&† ÚLÅ ¸AnÊ©ØhC†AÅþÚÁ Gr ½—VÉ*L–iÌñ÷¹õÍM¨¦óEðÁÕ46'Cã¹­ÏÎOw–ç¥Û·…™6\Þò_Y† ¬§ñ:‘yKNȵÕÞ^ì„wêœüÌÑ‘šÇa +žÙ¾á pþt¾Îx3ŒymK[éBf®Ú·yÃ[]\q±Õ‘§GQÁóôb]¡Q?ˆñRWô§“zjK]1YÛã©‘…¾N7I0ã8šƒ»côöXeojëÐ4ÉøÈ„OL^˜Èy¶ÑµÅc:‰FŒè¿"¨3?«9ÖN®A$Á}ãÁÕ%\*‰ƒC[åì.`óáIPbú4†ÐÉñ½w=1-\Á‚6 #Ø—k–sÑõó4èëO}ýß±;–©÷#åÁ¾Û¿âý‘¤ÏÝ™Bh—=2Ý8ëg&@k¡Î¦>›¦Ö«½ì¤èÇÕ¤ R¤ ¨ Ž•®Y¡k!K(ä)QBÕI+t¤n¾fóѵ¼(o 5þ V³`ͳûÓôØ.wei@½¥a¢§‚0(x•®Yð/æ¬ë.,âeð[’,û Ÿú¥ùX¦éëMC#z†ÒhߊnÄàÛ!¾†Œ•?¼j/‹™‡WÀñb!~J?”÷p2Ê÷DÐ'Y|SxŸ"— J‚—Ž®‘òUÓ{ÑÀ¹¡LnÉ“±ó$alô£aâÄ#fçð±{cʽïvåDš’>uΦòZ–.ÙÒ|>®ñß8tw-h +WCÿÃõ€¡rÕœeAvYÜt1˜Kü@I.=˜t”Úc£žôS)‹ƒæê˜8:¨gú·(]Ö¾™ÉY1Of°N¹;VV*0)>‘è';“ëÖöuº3¯Oœ˜/çÂæ¶AßZÖ[Ð}­%íZ¼ñ2–T#3.ÉÚ¥õ~ðÿbL™1Æ3sÌa,¢„„‚¢„Ï%`š®Dk|ø5$úr¬Qs“åÊ­tßÔYéÍ°maNI@qëÃl%+¬<ØŸà”C…~›Î„‚†)Ï/-ò½¼¶hè:nWØ#ß:ü3ÙÉ&͆½OÉà>Í×á&K9I¹’߃V$0jØçv¨N­@Æa<µÚÛñ¬Œs,Aðz¡¦3 vno úhîjèŠÃ(êç¬à0›¹XÀÎU÷CSo…Ï,óGAӇŪ "ð¿ðѵ+IÉU°+ò$î¢/£’˜« ­ =Éa߃ÚOò Ë2( `+Ó @œQnM‘œÉ“Š¸^Þú¤™ì”¥WScdk&©*û»£ ½yj¡Ô‰Í3~À¼L€««ÞJ@ -ã-ž„AÏW$‘8™â|·KÐVf7ÓuËnTþXÁ‹Á쩆Äñð¬Yý5Õ÷¦’f! +NÖÓ¥G@dI“Ác‰ƒHv¨èï¢Ûq¹Ãˆ†F$=Ä@ι…\ÍENÃc_Bž>tg‚í£ÎB³ôÅŠÀÈ °TqÔ"ïÐÖph- )lCžl§ û†¬Àà€0¨U‚l LÌNÌ×3 +—Sîâ?9¤Ã­pÚ‡ü7j’ä3,£¢ö]mÞðdœ¬Rõa¤Ñ?óC~/ +šU°ÃAflyº·Ðȶ`Õ»Ú*ûýÂÄÏOMÈðYP;B pÊV‘›88eUSñoJFN@w5òþCFãxí#ý>;ˆ›ç÷¹'îª*ÖMªeª+Ñ%ôjû®$|÷¡ûÊ®¤PhÖ_oÑa²Zu=Õ¹5f|]͹+ÅߧÈq4˜/Ò=rÌ,¤d‰’#@b_Âã:¸žÁû#ͅߣh¬ßýûˆÊRR‡ +»K° +ù \x³´ÃG N®à´¦o§’ŽÛÚÙx7¯»Xh”I˜£•œC$kàOöÅCac9X‘^qƒ7FÒju¡'-Jx<0»Ç”DbY¢5dÖV°¿Pº å.0üɵ…HGÛÐà +hi^û-O­eâûi‚¯ ÷­QÃÀV¡¯ŠcÜ`Ï…!.6 {ë¥U”–Ïx¿ü<ùŸ_©©¼ +endstream endobj 76 0 obj <> endobj 77 0 obj <> endobj 740 0 obj <>stream +H‰\’ËjÃ0E÷ú +-›E±c[£L äYôAÓ~€cORC#ÅYäï;£[Z¨ÁÑ1Ò\E“­vë]è'›½Æ¡Ýód}è"_†klÙøÔ3/l×·ÓÏWúmÏÍh2)Þß.Ÿwá8˜º¶Ù›L^¦x³wÝpà™É^bDZ'{÷±ÚÏl¶¿ŽãŸ9L6·Ë¥íø(AOÍøÜœÙf©ì~×É|?Ýî¥æoÅûmd[¤ï9dÚ¡ãËØ´›pbSçò,m½•gi8tÿæKBÙáØ~6ÑÔ….Îs„ÀÊ ðB¸|L,ƒ©«yb„ p¡\+eäTšS!§Òœj^ ;ìët_‡§99NsI˜°/龄õ¤ë©—ʨ%­%vÊÈ¡”ãÁ^ž¤žOROÂyIÏKp&u¦5x­¼o”·`ùÃksy=—‡§WOO¯žž^==<½zz¸yuóðñê³Pÿ"Ÿ—éBnN¯V:ÐþöM{QZ&µiêí’>ðo'Ãh¥J_ó-ÀºKÁu +endstream endobj 808 0 obj <>stream +H‰´V PSW>îÖ•Kj’ë&A"*ŠÅX·âjgU* Öº>±ž¢@x‰š¸T^“–¢ŠNЧlÐb4ó„å´Ì¤hÿhÁqF°FŸõ†!E'ø§nŒH‹ŠÓ§ÄE§N@H$@'ÑcQ¡Û$· +w¥Ç`¹d!ù/±i7P7ðÉkyƒ¼’Ì•Üßß¼£„à cŸUR ž +‹Lëþ%!;¯ó«¦®¬òÕ9Ërc Š–nÀ«v¼/—jò @Ôî­ZYDL´^ß×ÜRßØØÓ¡vîÄÿø\öèïÇÛ‘¯ÙÑa#:ÇOÛäY £ñèîdê²6LÖ|®`‹2³ ßhV--&bÄ×ØNîøñæºDÛ NµÄ[ßßa< ÀÛøÇD†ÇÔ#Ú3'/1Ó\¬Hp¸œbë¹?¬gN9\VXˆ\6§bŸ²Œ+·lUµ€Cá²ì .#ðZR +—‹ÏBÇGÝi·áÀ&ôÞð†Y0SàG}»á‘¬–||e=ö˜´nž&#§ÄºIÍßð°ìÝÃî¡©‡7›§û-NÒ©HêÏ8Še Å™ŠB[¾¢4MÒ+{–ˆã‹²² T2‰4qÛ̵œ:Å´I´$èÀío 3Û°—M͉©‡÷sô±Üý«'ªLäÛæ0fvÔr.T¢•ò¢¬«|×9Ñ ð³‹šhÇ‘{wÈ·²¼mDÂò©é i¼Èä0t]ðL½q9sy‡Ú6™8NÚZËÿTQoª”7 ) ¤q^€Å8 o†iØ 2¾¼½½å!FIÅgù[Ïi!o~ Ãç ùNögØ®³³ƒé”h·’ ËA †‡tá êI%>ÅszQSm1âôÎòþZÖ+d|3¯ÄáÇâU†Ä[¢ZZ|vsÖn¿íB‘_Ù“ßµV¶¯±£)FDÝC°»ɸ–V¶•¦î£“׋r8uùo‰z’º>€‘¦2‚º…,ñ‰ìú¬,s-x˜Ã‚ÿŒ46™¦>3²ÉÂÝÛKbÕÜÌ4K´æGJŽÑg.²–&µ­¼tD™æOlff¬¦×®e9½öˆ¹ýûØ}Ž»®‘Ǫ + ué +¢‰4×3õ%Âë—ŒŠ$MaD³‰YG‡’7–pij)¬*vÓ.RQ'°/p'î³[+Ú©{Pæ"]#~ŽsåŸ2vžî"üs|Ç‹õæ$Sžªh³±(™‰)–GŠ›Ù³ÜÇÏ2§%Ú&q¸%™3Z‹Ê¦mæš%,pq<ýr‚uN‚K]—÷䓲ÎÁ²°Ÿól?^#íö6WS|wªPÿʬGËTGÅ+Í«˜•+Wr+%Úñï¢Î| 0^‰åâl}DÁ‡è`Ìpe¸šúçWwÓV!ÉוôKr5Åÿð°ºþ¾3Ï]zk„^d! ¤þx»Ã¾IÖÂÖ”nSYË+­¹‹¼Ia^Â,\°„‹h#JVY7ÿ%›JƼ d˜˜ÝQŶÓàK¶W™Í;Ô8ìÕNàÇ‹_ !Ö‰Í9æpû’á,›£–ÖõêÀÿÝE¨ƒúîÿ7u¡Äín!Ï4w”¶ÅYÖÿËÝ¿´`§: +vÔs+íîšI½ Ï‘ö»F”nwcŸ5ÀùËàM…??ƒf«¨°9¡ ÆË$$Æ8²5g]vDf žÛ#•cÜIo‹ý,³YiŽd"##¹H‰¶#ÜõL¹ÂüüB§rTxŒ¸‘=Î5662BûÜÕàT/ßVXÑö‰Â˜˜=†í†íIÅQrgÓþŽ½­°–Ÿ.çH*¼'àUã᪹„ª~³ð]ÐR…´ì•zŸ-.ßYÃî¥ïÕ. +œ·~^Pn®•ËUççïZG0;ª +wÓàõÃmá3E¬;2V]@›C˜`×Ô¸ÝO,aüõÁœhD»`?˜«`äƒùÒ2êƒùÅù5“,ž¢6²&zK¦0;'jÙZ®¶îSçðÌ°¾o)(3n5Vn©Ä¡P#¿S{íb—ÒI@å"°üg dៜö¼Cñ;ç 2݈Àsì êæ§ðž,¬8,o¡*þÊÍœOiêŒï?ÂÛ]xáj5&k‰UŽ´)¯Ÿ8ó@EÝm?—W«. $šÉ¬*êT…Ûˆý‹B+ߥñ(~sò¥…_§¨…I«Ñç³®_«|sÖ{¿^6ýðÉ$Õ–.ÂñáÓ+¦[]ÕÚ‘ŸCËÓ oçsÁk +?†·Ë` Ys¨¤ Lm-´nf¶Ùò&’»j9Y~Êd“4û0£|}¸‘­©°|•e57GÑDÚ>a+­åV›bkÙ¡’öd¯–“|àn¡M}ÞÓÇÀê/ÐÈ·Ë +öåÕîù7åUÕÔ™†A¼\zÆIknor{Ý;ãtª­Õ¶bÛhëÒZ·Ö¥Ê „$@$!‘@$h€„$@€ÛHkźŒ­ÕºôˆG;=ƒë|éÜÎ07.#tÀ9þÈŸœs¿÷yŸ÷y¾÷ùúR}Y!îÙ 9a¦f›šýH;ñ°[µ_Ucä‡Å/ýй@SSi“¹)élož±ÞTnÕ†4ú¾Ú®‰Wóxq>÷ÆÃ]*¨JS¡3ÄÒ8 'g’(žfI®./Q<º%üãä~ßÓ[Ù>4d •{ htN¤,>-(q§,ŠÍ@Ê>r~qÖb-0–áÈöŸÎä­Õ) d±£°N[W¿Ï§"'ÌÝ-Ò*Íšš[ÝVà.pkÝî)sŠà;K]‹81ŠÔh| Z 7äZ=~CW}W¶‚@ÊÈ·&gÈbR¹W`i;ÙRÚ[Ft!šä–°^èE¯øÕûèš#÷kѯà:R ~ŽDE¦ÇËãò"òBà^dSkåŸ1~™#ïǪB•8i¥€Vµ4B"G›¤;ÔÞT×F¸÷µ7ØYšÍ_2î/»4ckJ†( _·Ú:Ùni­lÆ®;˜¡LÁ«¯³â«Ô¢¿*9 þ~Úß ^ñóøÀ¼JÝê^𠺃E]úŽ\S°)WÌÃØ\•˜KlM†Hx¥rý +êõ2ð° ³ËhmÁ«»r P7U™Š‘¿‰¾s·ßræ²½GÊÛM¯§ÚZâJz—žÓn 5“(¯nÂvI,* \qq"–È“gî$> ‡6°Ó¶Ìe Uä¤ädð[ËÞ£G>¸w%é]”otum>‘:á$­P«Ð© !*ƒÆdó}E;Šnýœ¾0åöÀ÷eÿÖÑ–’Pƒûds¼× ˆÃþmà° à0 Gue‡ˆ¼ðvÀMQd¦áá|èímòeï2ÈY—‚¹}îÒÆ£¸õ€¬ ÊàDïJÂfm:s‹¸6¡gKB7| _Íçóµü)³oÔuÁ©îñ_ç#•ûeáƒÔ΢fO/Gº½S).öH³´R,U¨b‡ËÖBÈ¥m¬¼]KÑ°@’’ÉÏ +ÀtY 4Yªl\•-U +51êàxøËÂ6m‡§íÑã+R+,L/zÚy7¨/Á¥GòK ul„:~pOaë±ê½2Y%^^LY'Œ¬ô€ˆ[Ç»Àª¯”zíåàÅ™÷Á;àÅ$€Üb"÷™ÞZïdTwRqùj–-/(Ì&!fCÂ:ÓlÓ&y"‹ˆå¤Dld¬iß|\‚#7˜m†²dùBF¼]ìTàÔ1K ±T‘.dTÛÜ›`˜Ûž‹èx GîÈ#W«4©±¢Òd,ךÒJG@@EAU^5UONFt£¦ÕŸoÞµå“Õ»z{-‡ŽÔÑ{ÿ5]µÈúC§ÝQ_BYÚý˜ÙT 1çóÊeŒe‹XkpšÊÿÅÿ*@ FŸ°ªÈªwøXmÌj»Õcõ¸p½³ÅÝlUJ*p‹¸$u;ƒL]a½¶¹±AÝ<ŽÁ:¸OåIlÆ÷¥F›ØX:¯ #] óðÄù<ÐùÄ4O/±±:Eµ¢û`ý*˜GSî¹pÿ9#C^8»hEz¼,.l%äÒWÞß¡¬$NTŒ#©µÕÑäîHj¤B—€¬l™÷+?R¦=D‡nÌÊbã¼ìŒL¶30_iØiŒFkí¨;ÐLô  ‚`_é€ K=ni•kÇ~°i/`ºFüÜOïŽaªîÁáçÝ? §@HV ï/Ÿ•‰‚s`šVdÉ6’_€”`›­v_]õ±Î`½Ñ¢·`vùJàtJJd'&òB¼qðøwÔÃùL +ª¥»”Žl?£èÓK{ü\@½ÿ]Šæ­¤×‘æÿN€îÓkè£ßË4äÔ³dëðUHW¶¶Ñ²}ï)Hê>IöÑòÿ•o«|{¡]kŸXù 8©wÆCÉã”ägl«ÙøØÈAêï`eцŒ é+Õc 0~û”]‘îçõ+ròÆ kŸß±H÷ÄxA˜ä€wÚÿV0 °À´*qPò­Å Èù䌹àu°äêO`øãÒ+䟉Â_>Egç‚9ßÝ»q¯|cŚܹ YêQßp…Þ©×Çô>ü8&œ&çOÜ|ï“ µZÀ|9£Øgϱc¶CuQg©µÚ,5•vGEG©Éàv + È)*6\žÈ±g͈Ž)"—O¨DôžÇ[þšwú³àŽkŒ|ëÑw;p¡Bnme¥—BÖÈX#KäË2¹D¼8V˜¼3hc´t“Ú%_ÏHeÖTŽß<]™<Î’§6/¸üGÓY+¢ß¦ýýˆCî‡4Ý~†žú|Ù¥¢Q”öíp]KsKmµL`Ämi×B:¹´PŒñÓÓ“y⎠+ƒ†& ’J`>µÐ[Xä~#~§¨Lð¦9\ÿÐ@ƒ, QºHŒ|áMøisô€„z* +!gN­,Š“Î2»xx^?ÄÌ%g@==9=ØÝA—#ìK,rí] W")od´;¬G»ÄÂ=¸a#DH~‡ªÄÇèƒÔ˜œƒ`ú†3þÇF«^_Œw÷)*¡\©\)Ä"%æƒÈy—œ$•Ð¸k§¤—¸Ò0QÔ®m²–›Ì@ú×ÃGCéð‰=Tî»þÁ¯6ý&Åõrªï&˜Ž"Ž×ºÖ‚I¶Z½™ +pÂsgóÞZŸÞ&^\íä8K™+ÇybNz"ö~þ_OÀ<ã Ì"ô†¶ÐK½vr3ØL=QD*t0ÐØdl2Û}¯Ž—»¸Â`®ÜÒ ƒ\0GÃQs8IZΔÙq°K éÍÊìlL!"Ö‘’§ÈRdÿ¡´|_šˆã8®ïMKöÀc°ÛàDá#óA Õ³À‚DÌÛðgÓ”¦û!étnîÎ;›çÝÍé©íZeÉ4ÍÐ'Q zR I‚ +‚"¾7¾ƒºÓdôÄ?àóþ|?¿ÞßW7qvƒ°™¬"?.²ä +§:'ít:8§˜¡çh±SôhŽÞµ—_ð•‹ù DAJKy=fÞÂÒO¥5yu^²@ Úï1a‰_—JðWŸ¡8ù€ŸJ±Äc]ØŸi—Ë͹táUHL*Úg2z˜lG` åNkÿMÏ!¾õXª 4ùšMáoj¡ÐÉÑdÂ:ÁOLëº ÅP4E5r”.øˆ–q(y‹Ð°8–s=V±Å`Î'kï•Õf<oÀ63:‚Ž{ýýnšÀ¯º>ÓJúÞtæõG žø†.…U8EÉÐÊþaß^èzV +,»Ù»bjÅ–«0¢"tàѺÁ¬w¡'MàLG¸Êß-Áç“í g㶬®¿oß#Ó-õÇr1,À+Ø¿š3ÔU’K.ê8ípPœC¯`‘N1b@j'`eá´÷hô»©V[‡Wš÷ÛC# +08§ gl?ŸCb9m‡ j³MMIc„¢ÏÛ£}‡óì7ˆŒ°F˜¡X˜<…âÀtàs:Õì”Ùƒø'ÔV|­ZUÝæ0[ÓBm­#N2À"ìrïÿeýwÕ‡…ýõ?ÖÉüeKkÕ팉ðS„`ƒõŽAðPúý?DOÀ–íâQ5fPc°Å¼]ˆ3š‚éüù4 + °vtsƒWP&>9QFc<ä¹8Ã^ÆKÉÙË|øWYé‹£ÐtŒ-3©Ú¥åÍ¿’I$ +endstream endobj 509 0 obj <>stream +H‰ìWKÜÈ ¾÷¯ÐQtkô~, Þ±g= ïÆëéEž Ш«G²õèÕcÚóïÃW©%õx“ä‹Š¤ªŠ¬"ù‘õÇÊ6l#t\#J\£U«¿õêÇÝêêúÎ6²Îp £ËêÕÕOÀ>v««ó„»Ãʶl70v™Y›à膱Ävh¸®•D>ü¯Væõ¤J#4Ö»/¤ 7øŠ[:¸¥ù¡¨¿¦ª3NEŸMŸ«ÖøØ6™ê:ÕáTêˆRThÒNïv«ßØÌë;4óîúW°)0N†oübŒ{‰k9hg¹pJߊÁ*þÂiïV|ç. ˜1=²—D–ÇîìȆ¶Û]\–my¶+wûÕgóíÛOFZïµ™»uä›mZwE_4uZ?]_djý÷ÝÏ7puwLëW¯®Þdý–;õ­uóîæƵmïõë×Æo¯ ±áÝ/@N¼æ¸–ëùl€é&d¦¸./˜{{êâñÀ¸¡Ú8 ]>0i“hu¾‹ë>›¡µÞ:Žé®·‰iÓYÎ~;‡Wp/²cl°â ótÉaøpÉ‘G^ô#ò_"ß?õ"žÜ““â4"âÀ²½Ä7"×"ñŸÍ7u­¾‘;Þü` Cvk¬WmÕ‘£öêÞö¢š\ÔÑi^_TÚZ¥=UiG–ëƉ¨÷oÈÌ›Œ‰¢îU[§$ÊÚ¢*F®o‹‡¸n €Õ£Në-7’h3ï]7ÔÿeÁg“wLÛµ›ê»ú¿ û"+4÷Ðì ÈV±ŒV¦½’côl¹'ëÌ-ªÜŠ![Çò<‡cÏ+;ÚÈuÍcÚB¸eÚŠa +ºHþ—ÊX½ˆj”VÍP÷Â4!ú¢RzJ6¦ÎGÆ9¹¦Äª¡¼Ø§+êG6ý®óslJˆ‰ oÈOX ŒyÑõM;Š³‚6φªëÓàÍ"ñ.WϼL›„s›êØtŠ÷A`(ê½:*øà¯jnˆ>5íW°ï%ÛšàrF Ү蘤ÃÁxdÕ{®‡H£q»ŽÍ¡T/N|Þ¼lÃr¾\Z†R0´%“H'?2{•:ÖbžoàÒò‰<³¾¨¬g†£ÌÓ~ƒ¿i%Ô”fÅ‘­þ±y‚pfÝÓxcL±‡=3-K&.2ÀÓÐzÛ{SYÖ†ÍÞýzPÆx5ø¥¨(¦SgB³3u¿¶Œ1ý±H8T#ð"/ä[xÿüÐt³CÛwLS2Àø]8˜ÔÊ)&¸€Ýá÷1a4 +]§XÑÙKK7°?>c2à —eC+ E™w€SŒl®@¤{iŸ;ö óùèûHn|3gÿŠÿÜÀŠÂ@{nâ3ÄdÙ•J Y-F?Œ ë.umeéð$ü~âÀO!Ø€OðËè;B7J¸=´=AõI<2/˜õyí¨)7ÿ·ð™Lú?,ÿ×aynöŒÏð<ƒåÛsî 5nh¶ +"¼"’puÇ£ð } C–§õ#˜ãðPÿž¤$ ú<íy’j +3 +Ãø”÷ijlI‹Œ'aŠÁЩöI'ðÂyÐÖJ$uòOê,},*âЗ²L㻇{p5 +³‚Á=»{émóX¦Ï´?Pa³¤-mðĸˆ¦òí<ÁžZéÐ:5]¶¸Ã×—mçâ:·ù×Çë¦T>p’£ EzY+H$Ó¦­ûD.µ`@AEÄ,ce\v1{é…;Î0Ö[÷bŽ$ìä-áb>{eŒ¢4Ë°|¤e2–hzCßÀ¼ÿÙ¾ÜeÝ.ÁÅ6ßc(=  EH>¤'&îÍÛ÷î×Â|'Ùñ!:Œ)ê™`p³/1ÍÑ}ì‚T/t9?slóá™Ç^*õ²qš{¸'hô©£”7(zUÚ>'9³!æ”YNT§ÔW^F¥Þájͪ½Ä4ª?`;E<_Pà ŠFd²ˆ¿åõiQÍv÷TD^xY©¶£ä}°¯¡q,@@×M¿!‘ïâ eS?Bù&Ïäp-ŽÒä:Œyq‰ ƒb½tu0 +A“F‡ž¬¨TZw8ãËAÞç;›v'§´=ˆ‘ÍYDHòYà Ä¸Ãí4оǔ¶k8ñ3ŪÒãò™~k¤CŸl\†žçkç!9­+üK}OŽÄ3õ“ªÕSÊôuS,‘ßP€G× J›[®+ ÓIüdÑÆRyr÷¢1Õ3ßì÷½Ä¶­l:mU?Jx5YCù˜·<¼`S`…‰;šE&Y¼tÇÍJ þ@jêägAÁÔ%Èë…uSo/@ =äÔäE6szÈÑ94ùܨeq8ß +üXç½pÙ¾0ª +ÛR‡«¿#åFí] gÎuäø·x~ï ¸½¥á¥PH¬ÄõþŽãxM´Îû²€‹^bÙÁü‘2½Ðd‘S()ÌÁèdá¢D\”Ð[D¦0l'g÷$÷lXF¸¶Vï1sí¹û§ÿ¶wéK~ÜŒSªæÜpÛX]±£Ù"´ê¯ï¯ß‚zävç[Žä–CË Cý.¼I¹g‡5w¹Ršþµ9w½±<01Z"íL¿½<ÝVôœ=1¯£XB1dHh|’képè#ó¾?þpuu:qS7Ôy–ˆ[Y~•÷UyU©zXÆ’.ö2¯´@Ïp/fºåg™!¦*E+ñ§„ïè^(ÝJú\qÍ‚¹ÜØñ-/ÖÉJíÅe¾ÂVï˜Ò—Z Ÿë0þ»°fÒW7k+€Ç®†ǨöùÒ6cŨiŠM{‰s•ÒmJž;"ö͉ W:SAäY|×ó†%Ô„ºÖåf}ðºÄ†›ërR:_ê#ÆfÞÁnŒŠ +R‡¡ÞúÇRKX³Ú7•žÎYOÝÚ¾€Þs€vYÿj…xdó†cg‰ä¢£™~] ­-1AɶǺbۋ‚IeÙˆˆ|-4¼fS-O'¸aKÑFê÷ž;m' §m¾UôîgDÛSé…ædÝL·m¿8,vP'Òš/Ý7yoÃ Ê qƒo~lJýÔAöÓè+:í‹w’ð2!¸Ÿì©õ½€nª"Û0{×dE:Õ*×C )šäÇgc€þ÷Ùð‚TžTYÎ%ó d/ŒòhŠ¥‚*™%«ùé?‡r·¢%­>LV¿p$x+á¶ÿä»jzã„è=¿¢G*5»Å°ds¬”½ö3R=9Ø!ThA‹QÛß7†…@NÆÆgÞ¼¹Ó†%®pª]½Y~ܸ~3!œnÃÔÆx@n’O|e(PÉ8•®ÿnõ ?Ô½¶rÓëŽ>,A™­‘žð—XdŠ¹Aø¦3‹LÌÁ§Z£–çCe+Kí.Ë?©ü´ð4­v÷š¼²e‹y§KbZšâ +^gméøp_¤Õc>a@¾Ä}C›‘tŠ'˜ieÁƒ¯.Öq_ƒ8ñcD‚ÅlDñ1߸ƒ‘5bfJ #¤Î([$+_êƽqÔš»vK2¿ðƒ¸ ¥f yîCh]?PÁ@Ù…ÁM€¦+ª¡ÞÔg/ øJ)•úŒN°‰j×vÁË( €‹XOÙ>áœt‘ñ’©*ÊCË“§Þ“Å Ù3­ûǹŽÛ~B£O ) +j+,XwTh¨Ù`˜±ÔäÙTû K‘Àl׫Ö¦2á¼D~jËHµnØy[ú B *Mó};b[¦´"PùÊ—ýfìL•OÓý’ÄmÓèÒdÁ +Û‘ +G®ö§Ï{m=ž}ß³S¤o`:ö_måûýÌi ¤¼™í»¿ïoMŒÂ+>6ONe|è¶÷åÀ÷\D4Gð+ZwØÝgù6«›NÙå÷‘¨¿#çþNÓê{vq¡TÐC’Ò‡‰_¥š»®ÈŇR©$H¡ #PñO24¯¼[&æm±ËM>ã¿t> á…&*Ä´”ÚÃœTÔe)¯åì¹”™?5…Ø*m…>stream +H‰¤WYÛ6~ׯà£\¬µº-A€d7$@ 4Ї¦(h™¶˜èp$jô×wÊ–Ý"E^¨áp.~œŠ__ø" B±ÊCÑ+çÑ:¯ çöní‹rCÙ:·oaºœÛ"øÛf±s|ÏCQ”bå%‰@+D¤0¦`* ½+g"I½4DâEqŽ±íXãnë»ß †DE,~N’{«U&ÂÈ ã•ˆ½,NìŠkçË3ûô)ò@|FïÁÕa+ÓÆDD^”%Ŷ³°17ÌÅ'çv}í‹·¯J3ʺP_Í‹‡7¡ïG/_¾¯ïï„ã +”|ó+è 8a&ˆaàå)8*¶Ö»Ö¨}/1ß5j+îõ ûF6ª57‹håŠ{Õt]묌îZ!Û­ø ô\Ùk ²ßâŒzÅ^Eàñ“P]ïdŽYå^@RÌ1A ;(U³Q½ŒrûŽCv¼ÏAè[ÏDœŽk®¼0NÄRmÇ~d®D–Aê"nD0×HØ»Qr˜4hˆÅŒ=¦FÇ0•ê`Óxxvð9v ºŸ¬MÞ‰¢ü‚o%Û9í²æ•VíG»Š*H)Ö‡åøŠ_ð*‹WO+p1ø s"ÊJ×[e9 ]©%6Uœµ©˜Iì=ŸÊxx¡e6DÁ›GHaEÚô„Z±ºŠÓ©ëÍ0 yC@çS¥æS¥ænñž¿¶s{œ9 ‚Y!{Ëæ#ͯ*ø”ÌHY¸Éú\Âæ˜Q%ÄxcŒVIÖC÷#†¸æ¥Àé†gѰݱÅt‚0ùlõ¦ éTÎbÇ‘4¨5(qѧª¹¼M"êéwôàÜÏ“,öÂ$ ¹Ÿg^äA¿§kq‘ºw¶"]uTÐG¤)oRw«½o‘ÂT9±éh°"Oý™ÑôÀÂ<ä²:ÉK¨ô³ÝBk5#wÛEtn!Y¸²õ +;_ߺ-¡ïÖãV·{ñ¨ŒÁ/xÇSWà ‹¼à’$òâÐO [¹;TÝXo‘Âôʧ^Ái•JGšT´8”ÓÞNl(Ÿ·,œr‚Ô’ šì]¢ñŸµ‡¬HdG#ŸWOccUÃô$’=!fhhôÎ*ß Î,}¥QÎÜhähYææ¬tO$Îìƒ5žY7û™³¹íffu8«73Áogv9 ¼;yà›IÓØÎÍÌ6©g‚¼XgÒf6ÎíîŸß`9Sç€Æ“Ä|{7Ou ›9šR~±ŒcH¬ˆéO Ôæâ« äswJ}]Îoud«Ž 9W±ÿk¬…M­Ø.Ý$¸j{ü`M<ê®æ®çþµP0 +¨$ð[l™ìõ¾2ÓrÏßAõº-³ìu£,=ýè‰7WßÊÓ°jyd⼘´±ž.n<¼q¬Îâm›Ý9‡qSë·wQô£¬Ë+9TçHØ›ÉóÇs†¾ößÈÙ`6¨rìùÇâÊïâù6à~ä‹hPJ¼ƒ>³¦w¶¿ˆÛŸ›N ۡЯ$ÿZD@RaÓÂKh=…ü÷Â+ ïã‚ÍØ(vÔ纗ïÛ8òR?ËEœAÛM2zàrŒ`#Xñ#ŽcÄÎÒ=æÃdZâhéÁC^ñûEØ‹NĤšOAnÁ²¡÷Oã,#/Ëá)ïÛ\ÔÓt9ÍQ¨v*x¿Y»¸›³ÝÈ÷Vi=a÷ÊÎ¥—ÊÙáÃìgÍ\GÐE)¬®¼ž½‰<÷vο !X3Í +endstream endobj 485 0 obj <>stream +H‰ÌWKãÆ¾Ï¯à‘ +F\>E 0 ìÎz1lÃñLàÃN´¨©½)“ÔÌN~}¾z4EIkÄÉ)²ºúUïúú÷›8ˆƒE’å* :{ókÐܼ{¸yswU$AÐWÍÍ›nû›7É?c0žnâ(N‹à¡ +ʨèú§‹eT,ãE¦ÑªÌ1¿¿ °Ï¶Áìá7¾øLG&tdøƒk>›­íƒ7ì‚vØÙ.ø¹k+Û÷¶§=ti¢—Ò…!ŸôÝÃÍßDÌ»{óþî'ÈT/AüŒg«4JH ,J¡e-!•|¡íýÍï`€kA'bLUÎVe”-—é™Ê—;½0Veq†››Oáû÷¿¦Ù³¬ fev¦éÝàÚÆÔÁ÷Ç~p•ýãáû+ ¼¹?˜æ›oÞ¼­†£©ì—á›ß}øÆqöí·ßïÞß*Ãw?‚œx-I£4ËE€0-YLu5ŒWœ{{êâQá"(ÒE´ˆKVxµHEa¾M£ûò”ö} +Ñlž$a:›¯Â˜u9ùí^EQÀ.zâ2(pþ* ÀËWä’§›"‡‘ËŒ½˜—ì¿•~ÿ/fb‹9äLHÌ$V2h‰ÒŽ)Ó2JYB +~ +ßÙ§¶›%ËгyÚ~0ëÚõ;×l™aø[#˜™à`fN[™º~½ צ·¦|”ù-³(hƒNm;³ß#+hjX`Â6ýQ„€Yc¸˜,JzÄì§yÊ›'Q–cÃÎ`kšƒ°¯L¯èÚno{3ȃ‘×^n’=ýÁV2ášÁvÑX%Îî¸7¬uÛÝÐ3 #5¹pCjòΪ>nXpÉæ¹Ô/ô{-6-TŽùBå±iy¢i…¿q}Õ¹½ƒ$ö–g¦CÚkӱ͋ÐlkzYþÒîm#ëXU°ª«7¢]ñÌÃÎòÌI;’õá/ˇ]ÛÁbì—¢„ ò¯v¢äÖʸ}’¿ø´ p¨k¿…ô×uBÚ/Û z®*jo^…аxv~¯Ù<£>èúvrŸ˜vjÏ«*àëu{„<…(>FAž)')÷›V(¿¡rÏ®²o+gåK¶lMãþÅ–Ô{Y!¶œ~ç²®¡RC¼ZR ¿3õ1v ÒqÏËzò'þUÛ [‡³ÝýÐ!B¶ì7 ±Õ/nÑn²õNw©¹&™ÆË‘ÀO“‰é0ð¦ù›To\Ù¼ŽM8KPo…H šj'‹°+wp¶„Uµûý±ñ¡† +ˆ1ÀÆ°¥,9ö½ø½F]ŸMŠh•Ô(|VžË.»µc!']'œÃ¡v•Y»Ú r .Kø¦vô1Iv¨pû9TYŠ¡þ¨m&‰Ôç$XQœ­ò XæQ’-S)ÎË(‹–ÜáIìZöÜKàÛì0m¯^ǽ5(©PìWµm·cx#"jôÇá톪ÌÒ"œdWZæ±¥jˆh‘m‘ÐkM`zÊ àF0Žéö ·]{<ô,â[}6iõç½iÔ¾@#,Ë…hÿël•†|Ýlž­B½sàXÄX[ÍðÅLnů$L5:¡]®²~blzÚè¸fÑ‹­;ï„ãT†uëïü³%©LTgžbÎ)Ÿ0ŸIGº½ØªëÔ­“ðÉTVWøÎœHxò]׶ÙêpŸÔ‹*ÍÊ^ÚR’êm 4:Æ 9Äh)PÄ➀?F$ô;‘”tŠéÙFg4ÂYùd)û]{¬y#Îï>31´/¾õòØðwm´n& ò„[´* 2z5Â};¸gIÜ[fˆÓj«Š¨ac­^¡ûYÅiÝüj¥?K}j¹Kß•q?˜|ÑȦéidÓ”¸’f4²Ažðô̳Çxý*ÿÓú:P=ž¢ª¯ ÝlÍVÌ•å£lY®‘¦Y›¦p§!Â'D~ùYî³/€7îVØ“åÓ,Ä`cG=µµNÊÜáSq`hš k­Æ•ÓxÜ ¡PO˜ïÍç1€×íÆIRMVÔjX«ÁAýý§û;¡~±}[)HÆ–K “,-|I×¢ö)Ôlh&Ù ÷Ðù¦}K­ö¶‚QWdáchê¾U>$ü+’ç>¸¼=ÉÐ=VúÔ¹#[Í(kü5I34;ÕØ[~´”;ôf“±’<Î"&ï Õ“çhEå S!Ï;÷UØcºÝ³eR¯ç6Ê´éòªºŠj†íö2I™ˆêue#%ÊW¨ëuÚ¡! ŠÅÄ™O ÿ² ãlÑÉ£í}°‡HHÏ ^Ìk/GqvŽq ‘š6 añÑ¥»zˆš‚Hª1BIJа7Ý©BùéQ\ûÅì5¿ r`Oz™IJÑ¿R¸Àgm„Çç2äÙÖíAœ>y‘æ•ÌË&mþê[Z6›4ó|¬ü×ÝpŠªGH˜û÷C~ñ(ž[f‹úíG¯B†á¢Ï"áiÚ‚ºh*ùìñ)èr,Þ×^e¾åJ¥çüaè«4„ƒÊ «ëô%3¥¾?HGéØ+ë{ÅÀÍÎo|_â išögmè¬MÌ +õz]‚o_%þ3ÄÌrL.Ëò1Wÿ_SÞ®ÿ%Ê û·o?~xœ.ûs 3‹WQš–‰ØƒCs!…oqW‹ST-|šž¯iù÷z 8YpñYÀ‰8ÂP±c¦Ù·äÿœc Ö¢Ø=ÛæÃUß‹BcÄØEA£e´Šjbýú8“µŽQ2{‘í,YŠ$deõ£`(©Çwûó¦8ä¢×åSü ã#ÌÑ)¸ @Ûpì…fÌ…ÿ¹$Ä1ºÂè&*_’öXM%ªí^ÏÏÐdÐq¬Ês@‰aCÒ€ã×ð'{£1'´š„µy¡žy+#Å? éŽðñ +î'S¸O몡å2ú„sO@M­ÝZŒ#´P¼›J9>a£lÅE¡°€Ãf®¬i¶Û×€ÃÆ÷‡žÒ³·Á™•ۣɣæÀÔÚɴĤ\W¦G~ß:ŠýyqQ£¥o€ëÿâå¢üj¡uOzʹÃÁq½ümß»u­Ç85z»¼\%ûuåZ«÷F]|­„ño!Æ8YøÁÜ +-ŽÍF0”]:œ“c1˜¾ã”Ã] ÄUË<Ëدøi›Õ C+øjZ88÷ÄP?öo8ܵµR¦ªÚc31îí•|Ùµºh„ßèk¡›-ãӷØSw U•lvðUyÎÄ"(þ@Ýzž·¿žü4ÖMyÈb맓`HÎÆWyKÐ̶‰µ&ħswÀD–ãt«H›ÎiüZ3ÎÍ4νÅ-›[H’ûêcyÀƒ^ˆ© LüÎ]Ÿ*ØLSMê4›ät*)ß%¾HS6gzÅÈ'˜<7 Nܶ¶ˆû±ãzi=î&óiyâÙµµÑæBcIÇüª‚µ;¤}wÎ4ÂAQÔ]Ýd‰¡Ó~\GÅ3’‘¶€kÜ(hžÞ¼µ2MÃ?nñLákuºå€.š”ÕS»2ãå߬WKœ0 ¾çWäÈ¡‹˜f8¶»Ûª=Tjw¤ž6»°æ¨âß׎ ÃcŽ=Å1Äyúó÷1Ê¢%uûÍ^1C†û“5("?ú×’«Ëv•«<&Ö 틨P:uâ%ZY¶­r4Ö +4„ä=0És®ÃcçÆ:êD2øÔ8ʶpqräÂI³ÀMhm×q2L5ݵ<ö¢@PˆÚB÷ Ýn}4~™»nd&–l«µyOé)ð>wü5›aD¼©îkWiËx9ÉC6¥âÂXqÁ;üàö|ªÊ|`ûVZÕ¶¢€¬¸™£o“ÚBþ˱–R½a™?eµ>_Æ#…Ìl +™IFÄ! a²e3{µ—ž«õ·—‘FÁh’9•ác§1nÿh8ŠV±½¹"Ÿýß› Cê=ý~üÄ3 éíO,ÂåxãH¾Šì†ÃØ?ܺ½Ë€õŠÑ‡ +©;ìýÍÚÕܘç_¿ÝË9<ž¾ïÍ]±E|ïÛÛÙÕ…¾O+õ½XÝôGPTVSoâi}h;;½Âó¹D¾ÁŒzÒ£ãسgñ|P¿I ÝæŠ÷¡q¤£8öw»D”^èØǽ]­zSEÚvF'©!×ݨ/'c–1‰jcŠ³O9 +:Ò/™Ë©_ª‹¨ã}àïhTâ'iê¼vÓÖÈ}R…Æ7aª«±û0öé§JêÏâ%š ºo5~½Àýþ8óUý`þÑ4 +endstream endobj 474 0 obj <>stream +H‰¤Wßã¶~÷_¡G¹Xë¬ß6Hî.E‹¦@³ò-q×ÌÉ’#JëÛþõýf†´%{ï /âpDÉáÌ7_¬ƒuPÄIPn“ ×‹Ÿƒvñýnñîýã:¨l­ÚÅ»¿¢ûlïvñÖPîžëh%Á® +Ê(ϲÂBoSIm·Å6Ø¿„E´\Åq˜,WÛp½ü÷îſ¾´ÈZ&o‚¼ˆŠmäQšmioO2ãý#Íx|ÿOì!ÎAü,òmT–› I£$+ƒ,Úd¹ûbâãâ÷/œsÍ;ƒO´z|sDÅ,ˆã4J7ù†÷VÂ,&År÷ÛâÝãIµß|óî»jU³ÓŸ‡o~øøÃÉz~ûí·Á÷Þ‹0 ‘„H Ä&9ù0Ž¶ÚÕpÖßÚA?÷ +[‡ƒ®ƒƪþ¨Žº–iô±Û›Æü×1]¨¶~Òf:•Ô~¨¾¶ÁÕëišEEš²«àÿÓU·'™ú,M·Ñ6FPL}ÄNPéã^÷|´eÇÐÆþ܉,¯Ý‚,\n©LÊ()ÒXâ¯êŽ{W ðÃ*ΣzáÔxIIS›~oB] Òç^×hé™VZÛõä¿>©^‘¿íƒhµ8Ë{¿”˜z1µiŸ¿²ãÛ +Wäx6&Ç®ƒU¥ ä8ßîr•‡çƒ+¾²pP/šÓÖË!&¹+Öí Û4>ƒ êz?ŸÛÓ5r§V ]U½Ø¨DÓ/Ë,|¸lc‰¨“8[ßoXœN½QƒÆ¬´`ß ©ºvèÍ~Ø3ñ¡ãæƹ¬sV~ƒÓD!„ Ìq:YÕµ;±ŒC Ç–O^«uM·E»Ýýû³cu [(Be¥=wý'wUEÈÞ¦ŸÒ‘‚8Gã~öÒÊzûÑ4õe¢›`«C×Ý ?¸(*¼“iQ¿z­í G}°Ê´~´ön¾z8F` \ùë:-M5DÁW°i¼ûÃØK~Å×ì*²u´Ùä©d×&J£üÄ­±Ü<É€ßG h^ÅòA5nŸéjÐÝ;-B x‹q÷|èpîüË9!vŸFËa°Ž].’¤\û¢z£9S©×=9Af*+YJŠzj.ÞL[{µ/úáîŸ9žtí÷€è2~Sܼ ¸_œ_:Z«ÈC¤é`*sR’Ťâ€E F"ýÍi€Bâ# ?Ö©*Ü#)ä–SŸM ¹!ð´±Ö¡¿JV‘AÞûívO +²–æ$9]"Ÿ€o‘gÀ¶HXè×¥ˆâ&y¬®Æ¡ë ©$dÌGþ EÁˆq7M0jÊ +Iˆ‡7}KÇ)Ö¡þ¬Ž'*?Ÿº +¡R³LÖÑ ‡ÎÊÏcgf0™)Ö¦ØNFž¸!ÖÐ_ ÍaD‹5ó|ð·¿z»‰ƒ62É µ ÍÓkÔy¹M¸@l=ÄmÇ0\7'ùÓq_ö}ì¸xm/ñ° =Jpgs[W²0ÂÜ\EܸýlCdhwfà™À<{¥–§¢åˆBK®˜¨%ðY¤š!Cd¦ÀE7ž"î>rÝ ÑJãëœrz®ÖÛÙà +  _9eˆ$Œû+XHýçm7¦¢èNpW8ÁÑ +G¯Òs^浩ðÇJWIS5ZõNÃn¢9½jíIRçöæh\Þ%á©Ã^—18üÃÌ<ïû>zϲ,D­Yà4Ï$µY:›¦aa¯¹™¦‰ŒÌmíKçY)_e‚æ•>9g\¡ÝŠ”Ø7\Ý•~3ÓT¿7pAO¼`¶ X%–‚XíÙ„£['å@HÃ'ìªÇ:öQwG‘“Òò]¥ó›Jód*¦-¼Õ4Üw8éµ¢óesL^‘„þHhé±(q\í[$« xÆÁ•Š@((‚å—=tc#&¬ÖŸÄVǯ(vôÅJ$a)ýVí§))¹¯&+få"ó¬&s„-KtüÉ›s°Î`×`ŠæE†7±u÷ îeÅ=îAÇþº¿rÞóeŽBDàY7Ø<°XØѯ€.avÑ…¥ü‚”%E´Yå• B>¶U7:>ô¬ýyÅN~ÄžÃú—RêY +)g©qýÛh1@G\ØØë;µþ +wÊÐ]o7îeôÑmÀÝ–Sþþc*Q+HÖǃt7Zâ@PQ5Eq2?pÕ³Ù֮˾©æTƒ9ZgÏýr+‘ÇIk'Á•Åf1%qH4XëZ"’Ôçj‚–P$#ºÔŒJnß±©Œ¹¾÷¹å,Èâp6aଧÍâ áˆÞŠ¨ïêÚÝ 9'É<‹‚dQõE׉BtÂ#îò Ђ€OúÉÜžÝ/¦4–E¢T“¶«„N ½}þjÁÆä£ì^ tßàeçñUŠ*LƒX£ÐWþMH=œµ̽FσÃàÁý±~ˆíÝÈJÊzì>éÁ=sok‘+Ør*ñ4UÁ…å 'ÎTéºðÌé øÁƒ®cäãÀ» ½‘ÒmøÝ2'’žK.ØGç’ˆÑxÙZûk™ìãô\°­0¹_hô,ÁèŽèQÂÅ<±¯gyázÀ©F.Ì¿fí«ÃªŒçåÁŠNÈ-8CÅÝÉ.Üì+]çêYÆB×Ë8œA k<ÞÌ£ju¿9$OtV¹D±|®~ÚEY~Ãc¨]ؼ£Îùí>òë6 ×ãÅ–Dl~}â°Ù óããØš8˜¦xŠáÜõŸœÁlBæqñº4B^&2Q¹çÀ­9FvwŽlîÏyHÍ:üxªs‡ƒ­À-q¢¶ÕÕÀ24ìI´v<ÀrXnðÀAî^êëºJPò^ñ{ÒÅ#‘0¾ ?WÖ’´ŒŠ,Îå`ÿð‹¬ŠÒ¯Bâ5‚ЙƒÐäÒåJÿF.Ãû\eõŒÕ‘±êröp-áÄÑ„âÝ„Ä$" ß$ѦÝ~_&\ØCð‘8ÞëÊ-#6X;R¬êÚ™´~6êÙ¨¿þ¶cÜÌù2¶ƒ¢ìâj“û?ó@dÕÏÂýÛÂW/ #üÒ´žÎÚ¡­<Ÿ¯·¹<ß$å}+ï œ+ÝúâKb­­ñ Î¿:i÷®¯¤¡‰ÄîJýÛÂÅ»n³2ô.`™/{buPŸÜ,;è“ÿ”mœmí´LÖêÈX] +i)ñ‚2ÄÞK>>µZVÞ2݈t»dŠÛvèÍ~ä‡_Ék#FÓHÌ”¡˜w=}vZ)žÄ¤/Áß;úR÷ÓÍíåBÃÞ@ËGBëÇT }#ÝÉdà+ ò!MÇÍ<Ùè€P^R2g4‚"ÿrP\ê6ªXsP/z‘c£ä™sêÀ^Àîñ]Lž[o€À5ªœìü*Ic‰ýï*HA‚÷¾Â£—Jh%}@© ˆ êÍKÀ‚RK«èóÝìn’šVOÙ&iØ$“™YÈŸ +.’ñd~/w.bû™=>M‰>[æô±À–,ª¹€NMsí‰LÝí@<‘©¥f|#ÚàÓ²Dë7s´î±>½¢cœÕ÷‚·ˆA²äªZVÔ)€(€ˆ/ zHxù|($j_Ü£9ëئ„w–s­Zlƒ…-ü˜Â2ä€Â9-~æ¿çÅ~ÉmeÇíº¬V§,Ëè'k(@ü'6/•™t"Q@¶![¥Ê Â#@%£XN¢ØOŠPì×Û›ºë†›OߎõC“ç6k¼šú­¬|€©¯É.ù0û¡n7 +endstream endobj 346 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 389 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 400 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 442 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 453 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 463 0 obj <>stream +H‰œÙŽÛÈñ]_ÁG*Ñ<%1 ìÎØÙ5Ö Ç£ v´È–D™MŽìýúÔÅ&)_bUuwuuÝõmá;¾³Bg“†N«ÿvêů»Å«ûGßÉŒ8ŽÉêÅ«z4‹W»à¿>w‡…ïùaâì2gã%2Áo¸ÞzÉÖ_;a襛Ö«…û‡~Ö¥³v–»¯t2xB–²tÿ(ê'uÔƹÝÉiº“nm“ic´Á3xi —â….qz»[ü“żD1ïÿ™çâÄÎÇJ¥¡ @‘Â+co Rñ?¼öqñí' +¸t"ÆôÉQºñ¢í6œ=Ù䯔å{‘ÁÉ]¾øì><|rT;Ëhãî–›ØmUmŠ®hjU:ï{Ó™^þg÷þF¯Ϫ~ýúÕ/Y׫r§¿w¯ß½}÷.ôýèÍ›7ί÷ŽÈðö€«¡F1 à† ‰)¦å%skOMlœ8I¸öÖþ†œ®C~0Ý&ÞçâÏ}v×Þrn¸\¥®Ooí6ºW’$ á¸uàŸFÐâMrX$1(y‘ã Ù/•ÿÿÊ×F Þ8ÛÄó£4v6øDp|ÛgwëEðC+9÷ X(5Y«u]ÔG§98§¾RµÓÇSgàö¬isƒtý}•5Õ^|·Sug¬9£‰9_ü‰+ƒŸz›ØOXô•å +D8·Ë`ë6ÇVU Ñ*õƒ¢ÎÊ>׌(þ<«¶Ðl¡è â#y”q¦óž×Ì/š–ý]UçR¿Èßå;«À‹¢ÔÙ=€ÄꨊÚt°·•Å±ØeA‚!k‹N·…bŒ¯À}u×ÊŽ¢î† %00{ûÓ(€¸~Ò”m^pí yK-R=5Šd_7hŒÝß@vTS,ŸŠ²4v-¼{„=Î/hȹ6űÖ9óhxkßÑ·¨-U¦ ª´2³ÓÝIñVõÜùôžç"•cB\aðÍ_@r­Ý½®õ?Zƒ_†¬Ý§º¹Ô vÖ®éÍYgʸvŸ‹¦T]ÓÒvÔÂÚeç@üÛé¶V’¯†Eþ¦jryg”q€Bß5§¦/s†Ui†öš¿™D©$÷˜ø;\ б•ñœ°º²?nŒ"ì•ÑrgSóW‰àðÌ[Ä¡'ÃŽ/$yi†KÂáæ}©+Ø! ͺ¦©hðê o03­Qí3Ì0S½¡hÚž²Y*20ûFfàÏ\•€\ƒY¢ÜCi‡ÐËT¢Ñx¤(@(ÀàKI¾³8µ¯#÷¾EÑ¡PõÕn ‡t7Ê7½|µÙNÒ —ŠÐ×>/²ý±¢~ÖPöŽƒ†é 5 g]çl^@(ºÎZü!/ö˜³¬`ª,õìʉĻ=ëÎzP8nw^y>’pp „ÙÑ'²^µRMc‡“ञ%ÿíÁ¹‚lÄ>Œ‰oˆ!€ëFR¿=ÓÅxv̈÷uW”6¿Ù5WN0Ѿ•TTS>sHqâî8C$®snD< šŒ´DËMÁÉ`Š=ºißä¯Üý6¾¨®"¹©"SŽ}©ÚòÇK±KÍår»³ÅR<âƒÂJ~ 5ª Sô‡CĨ@Å€BƒÛœ 6è@ú8ã +„[TÉn‹(×"²êAiÖ 1 «ªSŸC/Á!unÎ=»¦÷Ó^ó¶­I ¥H}h´l[mMYª}ÓJ§¢°Ñßz]g(õ¬Q}ïè<붗Áä'?ohâ4‚ ᤟I@•M ï¼#Xå˜XÌðv"á­‰-{Fg½]£ä‹{¨n ¯€Ð›ÑÒd„DÉ'ѨðÛWf¹JÜI+Ìz ;ªQ0IÑ$ŒQ#(à 1`¸ç!oÅnyÙ¸î+®wMoþ.7FNehp‚e<,–L -É|^‚ÛelzÆ¿ÿrüÓøg–T £øzAÍW;„Nv¡³ ™¥Õ–v°´Ì^YZ¨›sÑö˜±è7üë-ZÏYz´Çr»`ì¾Þ¢Æ®6öìø¬½½ƒd¹Xt¼—ö= DŸ,m|tni;„Þ[T 0ÓF7W˜ª½÷R²ú8÷vêtã`hgc8 åNAG0¬ð€PQîJðÀuhÑ2•3¤ÁÆãì“þPU×M_ËÊmæ\ÒŠöF)wÌ)\å¼Cª™’¡wéõ»)6PêrêtÅØ…´ºè!oꊊñŽws:Ðg5ÙJÚa¼‡Âo(ýcr¢©©ÊamŒ×R<Ed íN)sÅ2€öŽ¶âàÃ]´’† › 42 |;õ¤å8>•e ØŽWOzÊá8Ær”z~‚™t—‹öWBl¯d…Ç¢øæ…Qm¥ØL€S>Eº®LM)N)xòíŒÓ5à?¼.ø/*Äë¬lšÇò,ã´f'ž¿®é—îŽÆ肹Vèc‡>U”-‚³Ä‘WÐwwÐY¦ÄQ½C,p ­²³ÜòÂ^&tAÂlòiÎïùÎÑ v|»ù"œïYfßæ´•ÆîD‚fK™ - ™Í„ÏÖò)VæU&HlÔò"6Öb0Û^dÓ3Þ¸Š‚\öÍeq%JG}‹ÃŒþ»ÈâJL{‰N _ëiåwk÷ø»Ã*i'ñe]dÚ›…‘—î ¹®‚§úN}  _ACjYž÷üÄ +êŒÑÌøÕºd±bÒ”CnLë¾Sâé5­êi,W¶õ¢¶ Uè¦tm̲Pm¼ôÇ.ƒÃ)tÀ=DA×T™ú1Å6T‹xµï/Ð6 ¶uÙsÙÕ õ{R—Hfè’B(qñÞæ= Pê~×U_2Û ')"DþÔæݯ$Ž ¥|ÖBuËž‰¡ì¹Â¼Y½5{½³Kzû–ó=´Œš­CÑVÒâ;õºS/¡à©iÂ5š%ÖTø)Sn©‚@{­€Oð/w»$,0éºhÇ“LÌ· ïÐVºd”‰» šyr¥!,˜Ýå<SB6åv¯ã¥V¸‘†ëÄ ±7ôŽŒ^n#uȈŒQ]Xc©ÏÄ͈¡¥Äÿªú§awÖcôÑ5Õs (C‹[3G¿²? +€T'Gɸûƒ÷žR}Öz61:²¡ +àuD‘¯‚D›0R¾{u*¼£÷ +×±S‘¨xàÐOÕzŸG;Ž£X#’Ü)l­µÚOö¬ÐêоԌÇ­?ó^•OR¾²ÉN'QBaÓD*kh×ÆÛÄ1„èSõÐÝ}\T{¥÷Š'úâ6Á.\Ñ·Ÿk/ḡgjÕà`?ˆµ¿ÿ@“ÂÄÉá6£‡Wë{ø1æ£{«ïÿûz¦Vý`ŒŒÊ +endstream endobj 452 0 obj <>stream +H‰¤kÛ¸ñ»?ÊÅZÑË–šÝän \ŠÞºè‡¤(h‰¶y‘DG”¼·÷ë;êeo´÷Eœg†ÃyéÛ"Ø„‘H³H4jñ/Q/Þïo[ +aózñæ'@vñfþ'âî°ü ‰Ä.©¿^ ”BÀ¾E~–m2±«Ÿ½¿\…¡-W™,ÿ½ûÛâÃnñï) øðV¬7þ&‹ÅÚ“ m;ð‰û'<ñtÿ lX‹g‘ˆ_ÄbùiºQìGI*›¬Ý>-¾}çžYŠ¯¨=¼º"\¥¿˜ÃØ·ë-Ù–‚X¸˜%ËÝo‹7OgY¿}ûæ¯yÛÉr§~oß~üðñcñ»wïÄû‡{±ðr~ø@T>ŒÖèÃÐÏ6 hW€³ëV  ¼VâA[ÙT²Ru{·ŒSO<¨Êìu©ÿp<ÚÔBÖ…øUééQ$?µ°!›ÂŠÑëqœø›8&W?þ¤«®o2õYg~BPL}&Ân«j¯>ÊÈ1hØŸS†ÌŽO•F@1È¢ Üú±úäÁ{S[]€~{’®âááW¡ëƒ?Î{ÖíI´^Äe)~ël«s%*%m×(KNEc"6fÖ„lMàü@ÀhQùI¸]³Eï (XF¡‡êqÅWÄu¦ ½b„u ;²Õe WõQû-ZŽ²=)¼×¡î’w3…¶VUºAõî¼ö8D´>«ÐS±{+_Ð_@¯½ŸÍ³º¨f™&ÞSÙ,í§ÊƵuëx– h q=¯Òm¿ØV!θixÍ \ˆÎÕ-S*Y×ð€Î批{Õ>+…bSÜ`CφÖ3I1$U¥¬O4òþÍÞÑžO:?äì&¸³èt×ÔS¶•ûRÛ])ýpeÇzcÜüaWQ6¾ì*<Ž+:ly»’/¼•÷!Kä>nikîdØ¥À¥-p¥l[~1Ÿyv'íTÔ +-¿1µ6àéxÛ¹²P4Þp]çeW(‚3ˆ>±p_Dh -gÙÀ…»R6îX¡/ºZ†éç®9«\áÚý,2± ãþ™¬Ê;T†TiiiéZã`ÍÙÙ*B }øÄÐßjÅœ‚°XS1 xº…Λ_«ÆšzeÏ*×ôÀNçÏ„ê–£tVºò•È§¤.0ÏÖpR‡™f«Ï'žL®ÍJA™ŠjШâ"ÿ^æ_¼]O+d+™‹öPÃþ=MŘú}E¦Ž=ff4;VÖ·Xøœžã Qªp×)¹¬qä3¸¢“Ò1“/ÊGüIWÒµ|Y†`ÇÉŸy&íýòƒ>2í[ü2‘gö­¤¶5/ \A¶D&n]Mƒ×£-ƒ_nš·U;âŒÀc²:—Š´ÜæçgŠôÒ䬎"B¬€àƒ™ ¢¯3¾0Jˆhޘĸë›ï"Ãö0A9žPq²õL+% ¬®i:Þ›ŠÅ'›kñ@!ñº…¶„ZXè2‹°ëÂM€Üt%+Á‡¥ º“¸þs*C(­¶Ñ<¹˜àvæx‹A^ÃlVñÔ8¦û^ZªÜ€öµmËaŽ+ôZàÖTp¶.”IGÕƒ^}(7Fv@)¡„•[­>»§ ¦–S½ƒÛ3}4Z>òÅ….€V1ë#ð>‰aöu­Š>Êü0q2^rÕ»~ãxëºÏ÷ß7ǯô>PO Aèî;ª¡“Ò“¿M7cð¯{ë6áë‹xÐH)Áz«oŠÂn™5LœÄ’Ës·›W’”&XÆiÈMÓI_¦•¥¨Üœ[]u•ƒ±vXJ±N…"$q5>¹.ò·n¹6•:iº'sFsÕpaFÃÖgp~3â¯Æsh•;ØR³EÀiqS¡†‘ÙíÊæÞ;µ{¶^ŒžilO +ÇYZúˆ¨6¨:W>£Ð™¸¦ %Â0ÄY +€ÕPØ—‡r«F^Õ4º5d= 4‹à>õÇÆp7ˆ× ƒà‘ÉX4KÑÊMÉt âç¾czûrV ‘V,ÈMeÊMYRv¼|2'Aºueè“$äŠ öG£²nçêÜEnj ô,ì¥ü ¸ôí’0WQ’ ø4jÞsfB€ôw¦B†¼Ìeœ­súÛÝz_¢(¬ ½›€¢©N~ôhÑÓéÛ¹ +¦ 1‰xŽ›xÿ¥â« +„þ_*¦_TXÆvƒ_ ²¸oNHœ¥ “Ü\ÜíÝÖ0Ú¸ ã6Evs!¾d²†ŒÌÄß%DúÉÀ½ªξ­Û2èhPŠšKþ6ìêAèË÷l¡ÝÓ y¤’å ¥øêF'ÌpsB/ƒò|àÓƒûŠrÒfÃÃñ¶œƒš¹izðU=×qž‹?ÎÏVókÑ1ÿ•G~ÄŠ‘ÄÔ†–„—ð +²¯`Ê<6ãëX‹ûX‹oçyf×îà³.K†\&%.“µ¥ºÐ3“Ž1:ÖÌ£\³Ø|—hò&š"–"_)Å\Ôf§ùÙÓ\ï(Þoyõd$j?@åëQÍ.bƒÔ\Êq<†üq8‘ÊËá3æÖR—ï]áÄèÿDœÇÂ~°„nÂFÇ—0Œýx»ÞŠ(]ûQ¸€­ ¶~ìGþ2NAwy÷P±uÍB]TiÎÜ™"¬öuòŠÆŽRçsc$Îì‘û …I€w†¿²hø`ºvÜ’ŸtY4Š‘çË(3_Ô2ç5Lµ`KíŒ' +=]`+?68{\OØä…À_³=‘Äþ&d?P²EÙm®ퟟï?|Ä&ÆÉÞ)wÛÏÑ@úôÓß-4]ÀJC¬óTœ‰é•ÃQ¿¨ëþÖdÞO柇œ¬2³þÝ蟠.”Xè‹.:ìÓƒò Y’…σ÷u†g¡sÃܳËqv~eœÃ9®Q¡ûUhxü(‡Ø@”æ,Xç£n¸•#„¬p”ÿ’^;nÂ@ôÎWpL¤† „$p\EíJ=TªvÕªGnB—@Š!íþ}gæÙHöÔ Ûã±网0aâäª ‚Î’`I)ŽÀËräa²xÇ9æ*”~ñm)̶lz¡ÙÖY«ýÍ…¯\òü~Q©_ÔM'­~£Ÿæ"v?0?ia5Å@—÷“«º9¬= '¶Æð`S´²@¯·îÊî =0ØÑ4Ç]°jÍ:øfDœU1_7ºrR²øÁ>RÝ«Wƒö¡¿ÃöÛÂÔÒc­¨íµ2#Ee Ñê#˜HøÕkr¨Yb¯ª…æÎ¥o/–+ íÃ;"Š §¤Ú‹êˆ¥6­Q„³†·qãy—Ôó¥õØŒ?Ýc>2;;çû€v¶”›¾ÕÍúÇ©Ý|0á@À¸Ð)| +\(UÖs¼€·K¸—ò^›: %$¸žr2¤¹ŒËVSV@@–e Ù+n†t•Ù…ßQ[•“Òv<ç' s0Ù”Dù‰›G‹up½ºû<«Q’ þfç²Vè€Ï ¶aNôkBà8÷ÙñŽRn5»˜\ÚRÐ;Ž°”ÖU‘|Im©uÏ®#‘o º\xPda…Hšã ªÝÛÈ¥!ñ€Ù‚–@GâYù^KõçÆy‚5 ¹q„!ŸÍ^2›ùìÛœM÷ îð¼ösí3_óu^{O4pÔBíÖ vû` V's¹u’úñ> 6Qš0­[Ä‚?Aœ¦¤öRx”‹e`íäùñ`ÌDkžúøâ}õdÓçÃï·o資A¸ ÉzIJt:?{>stream +H‰ÌW[oÛ8~÷¯à£¼°‰ºY‹ @“&ƒ)¦‹‰yh Zfl5²èŠ’Óì¯ßs¡dÙuÑö­€a’‡Ôá9ß¹òó$HC)²\ŠFOþõäv9¹º{ DaE(„-êÉÕo°ÜØÉÕ2üoÄåÓ$ð™ˆe!2?ÈG™.üd¤BJ?ÏbØßM¼?ôAW"Óå'º <#ËYz”õ³Úh+^Êv+L»Õøwc +m­¶ø ^ºKñB8Ý/'²˜w(æãÝ¿@¦D¼ˆX¼ƒÄQ.ýŠ| ZÆþ¤âÐöqòù|-èHŒ±ÊQžùÑb!OT½Üò ¬À‚¾\®'¼·oÿª^‹i”yËi{ªmÙ–¦V•x×Ù¶,ôô?Ëw_!põ¸WõõõÕ›¢íTµÔ_Úë‡û‡ÑÍ͸}{'œ ÷ïa:²Z(}Å,€'#Ó™ÀKN­=6ñ p"™úi‘Ây*YaºÍy |KüúÓyzr:Ͻ€t9Úíè^I’.ŽãB$À?ÐâMò4Ib9‹ÈŠqFöËÝ?Y1ð‡«+„à“Eâ'Q.²ÐÒTÄ |’%"²„5|yû“öÅ9h2aà\&À8ˆòXd2ƒ¢¡ùà•ÖvàÞSÀ¡™† OWªÕkZ·†ýe^˜ÝJµªn‰ ŠÂtu«VeU¶¯@ =Ÿ6~¯i°f§iR(’MÑ›pÜÓ%fÓ¨ÝÎ]»U>®kàÛÈ‘¢ÜÈ´ès4áÜ‘æ¡/3vSN6ó 2q0Ä£êò +}•hOø:ìºîeÛj!#E3o­Á±a¤H‡ñTïÌÁSÖ­é‘7(²Þ>½\oA®åV[T+9¹ –;õJ£ÕÍ(ÞPôÿ,¼n×/hÔ_ö•iÊzãV'I¼½j ˽Ó(%•)TU½Î9Éñ—ÿùV`6ó'Žå±y8½±±yxÑU5^³d¡·.í¾kõȬ©:'œ®×c¾«JTV'ôʧó#î榴z:—'Ž>Á²ëöEk¼!›Nîôn¥K;|w~ï|ôTe }`µ&Òïà bÈg1‡’Ìý8î=0îÓ¦‹3Ïï î´gG>xÄÜ°¨çãÔn;ÏÃaÈQ1›Æ‘Ÿää˜]øÒÏ|LÌâÎ@R^CQp˜³e›þ2HqGáé~ßU€w×óÆ·ÓF +i#–2eî̼Ž (ÏaÄ ¢‘ÉÝö;ÊÚÒúèc¸>ÏH#ÂɉµfL;׈Çp™,ÎDMN¢Vz·7/ºAfDhñ!ÒŸºàS”qp<éMGA¼ÇU§VWºÀjÕnY”n³ýªžž&a_üDñŽ³Ìð2Š÷‚‹÷ŧUߎ•˜Oûê}qíÖtÕZ¬µ-7µÛÐB‰'ÊŒ{¸ +Ì–ÐÉLeâ‰óú|»¶ÇiàçaæžËiœˆµkqlq±o0‘à6åi$a®§–\xÛZ]POhO¨ÜeΘÖRÛK>˜² ÀË?™ŒÈÛ+Ç-þº›ˆ3ÀXÖ rÛõZ ©PÚ¹ˆ1ÃK¥’!•,´æø€ %쓾ŸD£Ž”cqfD€–jòö§!öø›gªe0c«1­¡±çƒõPv†5æI­DÉMײ6TÕ÷Úy‰ ôd az©ŽC=‚-¡EÝïMÓ5(,P!\.\%¶ÓÅVÕM ¾$?M(3÷]QukòXí XsUiwš»–uy^Äk¾~ûnU•…ßn!ò!uPèZá€Æ+sЗƒòrLF“2ŽG uîb2Ìà;êœ5‘œÇf‰nà·mÆM¾-ë'½¥…Ï{…Š=˜+tz‹é̺kõAUÝñÞìjh0[õ¬ëéè„ÏÌPò;ÚnÛ‘ñŒZYÒöG2ÊO$ˆ(Îü,Ž’o%ˆ0=#Óóô”>²`ÊE +&+>¬^†† Vèç0pg™z%<3Êa‡ÑNü´˜m p…&ec+c¬j°ƒY}Ò…‹zX®^i(ÜSŠ\Ö$BäÌ ãI¢! +œ¢‘³6 €à†1_AÁ#'ï&G¸ðx¡VV °ìˆ#ø¶{Zß­7r!}É¡ÞDìÙ·úÕ8>J­¨Øªf«øŸô’l›Îe ¨u J³|7ª+w(,È"lQO®~ƒåÆ’€IïM€|LÈ{·æ‹ÈÎ5ðÞI”m_ºÜMâÄ…ðËûåäω». R_æ¹qèGy$¬¯"öÓ$‡ïäiòy‚˜¤$Y.‘ô·¨'·K¢âõÏ(qx.qéÕã^Õ××W `§ª¥þÒ^?Ü?<AßÜ܈۷wb’»0Á ?•`'…‰GúÞ¿‡³°›-àìr ö¸snõ\‘¯í³™Î± @¿‚Dƒ N61¥Ÿgý{ÅåÂÒð×Qœä ~Lq×U¢îŠú,pRZ,z£ANÛ°ö[Ç  `(¶eµnàEõ²5¢Ò´w€–šÅõÑUÙƒˆs€cT`OcäM··@Кɯ2Éÿ w ¼5<È›Ûn§jÑ”›-ZOÙfm‘Þ¿] T|¿^pµp¦•¿ +,Oø A¥°%!å4ú‹ÕŸ;x1Œsµàï„&·p¾q†,ö3™ÿ:0<‹ïÀ†.ë1m9>¶Rl­j6º2qÙö’ö)ºÞÿ©¯zÞa ºó+˜W[,3‚›<ÇË9WÇT±²¥¿·ÉAr£5CvbM8Â?j’:9ƒýÈž\¦B­Øûvi½†°a'öêS€·ü^¼ +endstream endobj 26 0 obj <> endobj 27 0 obj <> endobj 728 0 obj <>stream +H‰\ÔÍŽ¢@à=OQËîE°nÝÛ&ÄÄV;q1?g@¡tHF H/|û©Ã1=ɘظ|9Rä›ývßµ“Ë¿}}ˆ“;·]3Æ[ÿ1ÖÑâ¥í²rᚶž{óßúz²<]|¸ß¦xÝwç>«*—ÿHoÓxwOë¦?Åç,ÿ66ql»‹{úµ9<»üð1 â5v“+ÜjåšxNƒ¾‡¯Çktù|Ù˾IÇÛéþ’®ùwÆÏûÝbÞ/‰©û&Þ†cÇcw‰YU¤ÏÊUïé³Êb×üwÜ>stream +H‰l”{TçÆgvvf¹¹ Œ³»dgÅHÔ°GnÆ"äRQ1¦*"à®a ·a£ ‰5MEºšSi“µjBOQÔ*V +®0iVñ†—±m²F±$ï¬/$ESOÎÉ™?æœùž÷ûžç7ïû‘„RA$É¿’œ“‘9'2ÃRRc©¶®,\`yÃ2mžõÕâê”ò2³W2QÒ“’V‰³°àQÝ£ô³±áÆ8xMí Ÿìý>¥¼bM¥·Ì8ee¸Ñ4sf”1Ù\^d1¾²¦ªÚRZeüMÙÊòÊŠòÊÂj‹yºÑ˜\Rb\äÕWYª,•5ò×ÿ›0Z«Œ…ÆêÊB³¥´°ò5cù*ãº#'ÌÅgë ^ûÐ逎à1[„wÅ‘ý²à®éÿç’Ð?cE +Ï>Œ*põñ™ >ó^O¨õ0áÂm;÷|Üû¼]ź{w꾦2å_HbPfúDæþOŸèÑ÷É·tY,¿šñÆ„¹‚Tb#÷ P.·L§Ö sû„x©$‹Á¦‘Ut4©°\à TbhûÃŒ9üԹǩBðe¶ýÏ<Ž)Âi™R{Ç_Û?9­ÿúXb8NÈN]Þ}Ãë4ðZ(€ïy¡`JèE2çe[N…¡Þ¾hØ.<Þù˜½ÙáCq©È³’”(æÜõ Ï£R³—ãóX‡UmèÑ<; !ç€hç  &)»à¥j¾ÞNÃú-Ÿþûžž•.ÎKÛ£¯rƒÍn;|ï€)*Êj +çY)¢x`÷ðh|]°ØIõh9dЈ Há¾·1ÇÇÅl‡ßÞ†`*dù#¡ª1›.lsÈñ DxÓû‹C×ßzq` 5%&6?ÅdÊ¿xËù‡º› àþ7®®¯¨/ºÑàý==;ö|®Ÿä³“žKZˆ>‡æ\Xc¨W±£W¯cÝ· »ÚrêjĤU9³-§®<î³’Lh©—‘LÈ}¦sö³i ÔÃìð<ÔAUø¡†,@u¨í6æŠpìÒ^Þ^OãúMËf„ëYwª¹íü&YV2¡÷ÜÍ2žbSD¸u`Ð O8†‚û]lA¿4‰óλ{¤^96„?­ýê—‡˜-Çc¡Sn1³ …9ÈÍÒf +xØÎB +£í (FÂhü·s.¦Ì4la:ÑL»|Õ“OÏ’Khà!øŒ7k‘œ0”Á¤Q5]/¿Nˆ",GŒ.âÜ Þ‰þC¶(D¿|à7`¢è/V¯΢/~ÿ³Œƒ›¦R›j>=UØd¾>e7ŒÙpþ²±÷Ÿn¸†£\ÞKƱd Çîƒ-OøºèŽÔtGQa7(ažü˜‡}¬,<Ïƪ°õBcšˆ-ä‰}KðæjMÄ‚­Ä…âçQCFi±¼T ‘H HøŒŽÅ*ÏóùždÃxÞ«Ö–(¢0­Ì™§’»úZÝ™>áÔæ°ˆ];ÓòY¢ÊT1­‹³3£C}š£î/½ú%‹$ËÞNÇÔ~ÔZ¶ÏRRÁ~»ƒÎÞy –ƒËô_V_$cˆ›)’(X(%j¦õíø˜`SfsWw]XÅòû¿ÜÛP±÷ðT œÏïÈ–vò°(ÇË*B.º3“kõЗÿj¡#«Î§wkÀýÂè ¹GÆjI8Çœ#º Zpï>ßÔY…ù!»à=Œ¯½NìlsƳ>RíŒs[yXÆ˳n ή©ÓŒ­ åþ„|€3Ç("/ÇÇ¢¸B$§`š¦XÏh˜ŸÈ çI°Ä|yÅMQyÓ[”¶ŽðÚnªóóCßVì+4ïcyÚòÑ®âíš™¹1Áœ.8¾Ÿö,!:|xIÏçË»Ma­ˆ¥Ümɨ6Sâ¶Ä†¨Ñ’µ·Œ·ÚøÚKG8Ë»”6=.˜eckyNO-*ŒO40^NÚi¤™XÿTªaA³µ¯¯Ù„uÊÂ4SHHš²2Z]ÙUtˆ.*åjÎNÝj®vÖ® f“DÉþGLóou¦Lc.k†r½K©¥šœ>öê'wáÞjôó›!7ñ±³wa×>ïMS/Ù²=mW¥¸€§Íå…•Ûùº{œô7=ýbШ\B6”ä@JŽÂ**­F$ucÞ!õªŠDÁ0Ì…x™m«È!•YŠÖÿ×0ºDÔt!+½s?˜¾.¢åϤי¡.צΠ+¢pâëðÅ&ýrSšE?XÙ¼$,ua3k¦„Ó›Â5†„†ßsf¤ÁšXÉó‰yb®ýb¢Œ¦† 8 Ó"CœI Nì²)kሚDôÌwpï¹ [~Ÿ¸»`%{ÂkÇåËÖ(ù„LQË–™:œ'D²a¾´’µû,Tôþ–5=.v†ƒ.n„x„¥¤¯Ü&G=ôýCh!¸fÜ(1ã~,³odO­=Ü éh_KŒÜÿÎï¢ØC¸-/€sØMò$‹Ìô¹m)Maâ§E„Ë$ëi9Ù¾žäB„Œí_w4ÔnÏ:ÊÏ(3ø¸Q®Åá›â<Ì]ŽèÌsENÜmêI×Ùž}å…ærV¤-Åšˆ•k [äÀÿ¬§=ãœyóªãDЉI"s²áê ÙG6$úV­ [wú:{@¿ƒ&ã…dP€›õò½ŽüÒj´¹õ*ýù'}.T7^mû*ë=6Wê')íç'G¦ªMÈ9$f*;–Po½øƒC¬Tì…+á.Af@5Lƒr4œ7HÆ!;Ï4RNfj¬™A ÛTž¡$„·û6÷êÜxUôŽM¹š¼¼ââ<.ž.¬¬,¬Ò }uâ_5H}¸ÒtGªó8)U^vN/-å‡m`°){Þì¡`´TÅ“öxø˜&{KUžs¤¬Ç~PP”ãÕß6Ð_æ&Ò¤,|OÈ¢Š…²šãUcOÓ[ò£ >Ì22ÅïUr=‹Â:ô8÷º)Â|‘‚‹£ôÐ¥&d˳dµKpÂÝôÿÕ\ÊE‘´[ 67£´[ å@¡Àï±Wÿ@Xo~™æó’¤~åKËnÀ0_ÕãIJ¥ðUð0S íÙêÅÄWu–z¾*Opäó·yIÉßáu<¼&Hy¥Ô êÈü•‰K5Ó#î>xrñ&(Î%Gíçêч¿k›¥!lЯ‰†Löƒ×Gú.Ý?Æ9.ý &©D‚ ¯ pÞ±DRñÂÿI*Ë{CÌÀ+D¾ãá‡àõâ.ÿÿ’ +à‹"03KdOA÷y…'Žü’'>x•'ŽŒz"3i‘´àå4äWÚ“+‰©´•XU——:ÚÊhÞC“$ú?Œ%ø +endstream endobj 399 0 obj <>stream +H‰¬ÙŽÛ8òÝ_¡GyÑVtÛÂf:™E˜ÁlÚ‹yè,´DÛLdQ££|ýÖAQ‡»;€ ‹d±î*þ¹òßIƒÐÙf¡ÓÈÕNµúy¿zs{ç;yëŽÓæÕêÍ?`zjWoöÁ}@î+ßóãÐÙçÎÖK©Â?RaèeYš9ûËêÞM½õ&Üp½É\ýŸý?Wö«½v‰Ï‡wN’zi9‰Åòvä·wxâîö7à!qØùÕY%™·Ýîœ0òÂxëÄÞ.NÌÞ­þ|ENŸ8œ¯x{°Ds‚ ò¢]²#Þ¶@sÃp½ÿ²zsW‹êíÛ7?å]/ʽ|êÞþòá—_BßÞ½{çüüþÖY¹îüð+€xA`u&¨ÃÀËR¸h_€²>V<54æ»,œ÷ªÍE\dÕݬ£­ë¼—}P¥úfö(]9¢*œORM"ú®ƒÑ­3j=Šb/"RèãÿTÕR’©Î¢(ó²œbª3'ˆA‚\^²q@G)û±‹C¾8ðÍ…X+mí¦Q@W™ E|è‹ùÀÍK I¸‰yšJ zE逪•OÀÝvâ¸vîÑLÏ¢4+Éc×UIsX´©Íx–ªaPJu"ÚfO_Ò¬)æ‡ìëngßÙ^Á°¿r C¥xüû £¹ ‹5ì-ÀÿJ=}êK Ü)«Æ•!O}9H‚kê"yUt4Ô´Kw2ïTu"Ô¹¿ˆŠ)¨Ó¹›íë³.‹a«šu²ÿ0C$T'…”6aä‚BÌ ™ÆB>ÈRײ¸áy­ÛÎNØØäúré+•‹N YIN ?=a/’Oâmf) w¯ àãY;µh:•«È;ªrÞ¿ÿä- 1`È]2ú+ ùSQ(Vhù¼ £"¢KšÄ±66«A»däE +òUõ‘G6­6,“(¨%WßìBwÖ­¡„º àAið¹†ÜæíðSÞ/í®nh˜áÈö0¢½p8K¯A\¬4 ?ú2Ì·tà 9‹ÅN€*/¢Î•‘ï]ü?à …¿ÒNvjä ÝÍ3p-:»ÿ¸ÁͺvÔv±±{é–ÜBã–qµÂßi¸”nÂßÆ%.–K1礲ÓvÆθX ¨‹•o¤&-ÃíÀƒfͬAIå r({|doYðL¿ÞnSs饽Ùc£½X¤.4ÁXfR*[¸ ¹ÍÙy¡¡‡5ÂqÈu_uÍ3/Iq!`P%ÂÚ›{K48 åà!NïátTÊA¾¹ój¸L—@¬ë©#ÅÔg•!p9ô˜gôÔŸTï†cý#s ê »G)Í„]怅0€±®¼¡GɵÙƒèúÂF¶Ôâ¢*ÕÝN7-£¨/Ø-+ÁdeŽÌíI«}4oEÔaj¶&Œ^ó9‰ã î‡spÓD´gÝ—ÃCpfèˆ ÌÕ †4fÔ5о2iFB>ågQÈ7`ÊÝH68¬ÈG/½îï!bžÁßþ$þJü=s®ˆ3Èà°«´ðhÏ•³] }ÕœJÆ_ktö`‰J»¹³Ój¾YÏq7/\YÌ©h;%zOø«í•´Ú¬ãhyùyÎÐ÷¹W–Þ¨ e ´–Êqr匫#rp´'ò9•‡9/¹¥2r_ØÍ•5ÔH`ÔÚÕ¹x›xÛ$ÝŽu.æ:w«uÝ÷ðZÅ*P÷ðZÉ¡g¥$;¢ê¾k¤ÈÏËbà§ÄIæ%~ðÝ{Ê£°èªm%ÄÿG½&† žV&ûTkaFhãvnŸ+~»¢í×%у†‚È '7¢À¿`™«¯³í˜–é!s?Câ•@ún4ÎðÌ…>#K¹%wãEwï._nê/¶Ü»Dœ¹¿ÚëfºÉŒ8™{‡IUžÌ®ÛE®Ï¨#¡\h8_÷î]OY +|”tGÚú¼öú]c¶Š¡xhJK…µ_L$GËÞÁY¸¹ÎÏÔ7biŠÝ“¬dCe ÉTÐl•y,ÆÌ> qežŸ˜— '½AMùíØì;|¶´­8Q™Á)[y7VÃc¤¥)â@Am_vÓ“ÆaýÝ FÎäP;¹AÄ#õS‹ÃgýørK1å4ñ9Ôß6&†9À2p¤Àm2ô!ö\Ñçr±»­´†…)žTí̶¥¦*âü¥2xd•ärÖµéÙÑj2‚ͯwi³& œÉ#`oˆ²U'«yKU¼@ò{É$Ší£ÀáÑq<áh„ˆ;ã¦YË8Ãf¼èD1éD`F¯‚@zI[’«®3¦>׺¯‰Ê±óŠLãucã:š5œ”Ýó¾mI7Ü GìrùM„½f‡×GWÁ4Í!CzÍܳÊd“ ÜК†Ê;i|Y€yÈà¨E<ñÒkÇTÕJé4ÅÜÂ¥d]µ:W²{æ »y”ºpƒf4‡fQL”«KÉ3¶j2 á¦þ Ï@¦byŒúc…îøÒHE)™_3¾°lº¹ÀQ”IâÖ“¨Ô7â¤e4KÀY–5Cì˜*ÎÒlÒŽ†cÊе¶n¹ëulc½¸q°¯—OâR—¢pº¤ ‡—éÇåÀrwfRýél–Q(ýc½]˜Ä^ºÃ±·K¸·ûO(°ÈÐÚ]5tð½°T„Ú‘OÐÃÁAª¹ÁÈ>‹ædúXû(a„¬‚ž.Øên¨_ÝPó¼¡.vC í£¿ מâõä¬CÿšþÍd5ŸÜÂô[gÙš¾Ò•†aâùþ6a­}0’¢èЈ›€¨’äñ²ÅMPW<¨ÖÄ>èiÛzrc¶Šf˜ ËgCøhFC,ç6ä;Ua\;Çad»‡IÖ7¼†–ÁZ$1·PÍ™…0Zz|¸”64‰BŽ +cDõ„™„<åÊ'l²¦H…—suYÆ£”%F³˜Hf•¶tâ9`Ád” +0Ta4nJ91⑧жÆO^Öm#°9QŸ<Ñ÷Í­i³iÐTd@m”D³ÿ‘^5½‰Ã@ôž_á#+Q7vœ€ÏUÕÛJ»ì€` Ú@($Tý÷ûfl‡„Í¥êÉŒí™ñ›7[f€gßñÉÖr:ES65l¾ïBÕÀáay•4wí¡¹à½aMÛüÛ”3òÖÝ\Ýœƒñ}³¹Tlºà›kŸt94ÆìFé yu`¸qßTQKuê,Jwj/ŸÑï!XøåºÏûS°ˆôO©kNÈWíæ€ó£ªkqXßr²¨Žgð +¦Q„| •^ Þ̵nñðÖÔ|Ж€ ¿Ð‰‹+«såm!þÉî_©n•Â óÌÊ, +B3d*Ï€oè™HåS_”(Á=ÖÈaëPg㸠ì›(Ãn (¾Fï˜rÂ:¦NM“ …:P¹%Y'&ML2éÈ-Û.Tytÿ¾ßG›ñ} Ç ÝÍdö¬NeÝmÝ6\‘>º\HÕ<3@'múû«N:°¥jsÿ9Z5¸ŸŸó +†ºGà|ΈǪÙúú—ÛwüêÀ›h”=­îÿ}~Ú)ï«1Ò@Þ¸PËøM˜Ù«!gÌYö†ƒc€Â13?¿¬RQ^Ŭ¸–§äù û+‡w:oüÞÜ1™,Ò¥Æøiº ðž¦gÒX‹e —3é0íåÂ˹ +rJòëŸäWÂǯ^~&ï"|Xa”T…¢#–2_Qš8&O™\Ú\h©uŸ¢L‹ê䬢ZzÕ]m–ÊEa²ÿÕ>¨rHvP÷]-£«ao.­ÓXHk ‘Ë,Üà  , tÔ +endstream endobj 388 0 obj <>stream +H‰ÌW[oÛ8~÷¯à£¼hX‰ºY@ÑEš´‹ÓÁìÄ‹}H Z¦c6²¤ŠrÜüû9ç’i;Ng°X €ÀË!E~ç~ø}²e‘`y!X§&ÿfõäÃ|òöê&d¥ac¦¬'oÿÓ{3y;þq¾š„<)›—,ç)ÃC°ÙŒ§³0cBð"O`}3 ~Qªb›Î¿ÑmxÀá‘Á/º~÷Ê°î׬éתc¿uM©ŒQÿÁK#w)^ÐIç“Z˜W7óæêWÀ”²KØW6"Ž Á#s\&|¨l ÜÞL¾ŸÀ)P†Ïr\ä<žÍÄËlÀ-Ž„ò8ŒáÏùrr\_ÿÎd½dÓ8æÓ< :YÝ릖û²5½.Õô?ó/'x{ÓÊúÝ»·—e¿•Õ\ýèß}úøé“Ãøýû÷ìÃõs>~…¡§µHp'@ "‚éT ÂKµí«xd8e©ÈxæÄp‘ Ë0Ýæ¬þKþwd|zE˜^AH¼ìõ¶7¯4MA.îÄKáü"f@K +TÉj’& ä<&-&9é¯p-i1äãÕÎ"0„É,åi\°8Kxœ$À}šƒ•&b2€Ñb'ÆÐY àš0.–‹œ‹,ŽP"·Îà¦ÖŽ{o,O(Ô*j µœZm–Ÿ½ãzoë=µÝ™Cko;¨?ù¡öî g dÍ,MmVýk©/9²ª3EH†ÅX„¨ Šx&À-œ0ÚWJT¥Àj>J£Ï`Ó©±$¶W`÷+5ÝÆRÐTà;pÎÁ1­³ƒÝ‚%5 }¥UµdKJ³bíý.¸QŠìú²®Õö¹;¦¤žÑ9“,#»•¬Ò¦gàÊew–påwpVŠün:–¥£àp­löz$oñüDòeÓµÍ(w f³Ñ=J4A¤ª«G€ÖÛ¬u/!uÕä®D`¾_ƒW´u·WÅ’‚ ñy!Û²cU?Æ>ÍDàÛ÷ _òŠûW#_‹çeù.Azõ‚}Öv­¢iQ ÄxR; +Iº­PÐê~[ÉŽ-:­V¼ .îF©žöP:†¤Ç¨SnûuƒæO2W8üÌÑÎ)(×Wš$¯FAÏ‹ +ºjšn©ëÁþ1#mÔ)ÏE ”^³í;(£ÖüþóÏ^Qèuxþ¡wtsõãÇÂþ!Á—Ú”P4@g#‚ìT јuR°±s F_¶³–†²4r(AÅKÕ®WÓºÂîBpë ÊW¬^ñ‚Ó²:•ŒSxjxUãha‡2 c.fÅë*á§á Bµ…ú>Ecv8J§ŒÆ3xr¦¯§±xòýÓÁ%©C´ ñº“NžŒ6o¨àÛ€”$™z”Õv<Ç°m –ÚËxvõ͹ˆd¶-ÔGPvL.e QïL(Š;üñ G¢…ãéÛ,NžÌòbÿ6‹lµJ²@9D¡„Nÿ·jxÏ)"‹«†#z>†N{4aŠœçð´0?[0„ž#y íðQd4±ðð… ‰¢]/ÝYzƒòÆBS$-8ô0…jœz´ûñåøƒ û^è¡ ¢ß³0@3 ­K¹Ì§Eâê7LŽpûGŒug‡mÓc½7œ@á `¨}§[,ÆÜOíqbŸÿ p®5Z¤Ý#¢Ç(hßTIfeçfÝl«¥/”íKy ¢[ÓµíÑ +Œª6Œ7`iY·t +eâ7žOŒò„$’Á2´z‚?ÒÔÞ½½ KÕK]Ñ=0» ãLUnâ½Ë€]ZÐî„C=e¯˜é) ËÑ)P‚•Ç Z(ÝÜPÞÛc"ù»¥]ëåŸüÁ’X bè‡õ“€2jU:ÿ€ùBõ;¥|0„Õ¹éÞª":¾%XCƒÁ‘h€² L|Ñ?" .§)º:.ÒS–FäAÐZš/[;µÇTÎRðîÆõk5…ÄöGèéh–£dÏ1Œqa„ câzâz H~ó‘‹ÊnB=¦Qp RýA„+NÝ'tè7Í`B´üŽðÅÓÔb.i0 »8ÖP:YnKòQÉ“Ý[+3J±¯Ír‹ à,Œž™žA<\8 øñm¹ †Lö›Õø½}é]‘é(w€µÄ OrHT\dY²Ï!bÈ!eÓA4³ˆ¤ºL÷Ĩ”ÔVï³ +èg½‡Ò½ì´´"°N߯{VÙ­»1¹LãÐÏšÂfM]˜Úð’%ÞÌ‘Âó 'Êf<ÍŠÜòDÆ!×p‡!Åeg´R,ž°%÷–}».lg>žk9„›Ó»èœtî[‰å +˜¨Äæk»o+LÌF¼Ÿ‚å‹W CS]‘ïLJ}=î×.Ÿ{Ÿ>ðwëîKA·k¤Œ,X•Ö៬Và€¿S0-?`|6ƒ“iéÅ û¦ãLŽ6o†òœêÖoÝ·½M°ˆH¿ÿhÛYƒļÂ=Ä’[tt‘†"” ¼°¦š :$´Ä?Ðý•‚›ŽI(X Ü®ñmMoPÊtÄ`573:Ü8èÆL'P<Рأ5ÜK“6»sÒEw[½ èG=x†¨tÕ ÄA·‡±ÅÇжÃãã\¢bœg£î#UJ¨K3–J -‚¥%—Y%«ü¡VÅØP8õÀV)ÅE¹¶xIJ‚Kn¥wÞzóôLÆ‘EïÌ©)SeÂË<ÇÅ)ÏËŒéŽ6ï gàeQ0PU¹f­ï®|'µQm>€+ðÚ$[Â]-¿¯á§ïžÉ“,Tš*HÎÖÿb™³‚jÂêÖ™å¬ +Up‘ª;ѺÄû¯¿Ä Oõ-ÀÎ^‰X +endstream endobj 310 0 obj <> endobj 311 0 obj <> endobj 746 0 obj <>stream +H‰\ÒÍŠƒ0à{ž"ÇöP´¶šDhm ö‡u÷l2v…5†h¾ýÎdJVÐ|!32É$*«Se»IFï~Ð5L²í¬ñ0w¯A^áÖY±N¤éôô˜…¯î'"L®çq‚¾²í ò\F¸8N~–‹ƒ®°Ñ›7à;{“‹¯²^ʨ¾;÷=ØIƲ(¤ôҸצ…´Uep½›ææüE|Îdæk.FF×hð½Èc| +™_ð)Xóo=ÙpÚµÕßyBÁqŒƒÈ·ë`Ð[ö–|`ÐiŒšcRŠÉ87£ÜlÃÞ9& 1);%g쌬؊¼cïÈ{öž|dÉ%»$ŸØ'ò™}&_Øx¹â=*Ú£âúÕ¯¸NEu*®:´ÇéÐña—å³7úî=¶%\…ÐêDgáy[Üà$fÑ+~„࣠+endstream endobj 812 0 obj <>stream +H‰|T{TW¾ÉVÚ¸2î‰n¡LÕ¥<‘b¤V…êj{hL‚åðˆ%@TŒOz4h¤«¼¨­" +º*d­ÔµîQ×ÒP TLÝ­íÆ]—­çü†^Ú³w°úgϼî™s¿ï~ß÷ûÝË …bFóºnÙÊÄ”Ð×M9E¦‚,ƒþ S¡I›h2fæêÌyFyÎLIÍHÓ$ŠäüXóã +å „vºŸ‡œÉp`Ê©é>J?yÒ{:óÆÍùYÞ)мdÖÌ›?®&Îh^oÒ¬Ùl)0åZ4Ëò æüæ|}Éø²F—“£Y-Ï·hV›,¦ü"ú÷™ +M–E£×äë¦\}~¶Æœ©IÈÊ3lÞhÒÄ-ÕèóŒsÌùš,Šµ®·d³ôùY&ËË1ôB³ +dP(Bs†P8B‹Z‚Q‚­ñBjj)‹thúÝe&3IÌeÆå¥÷jó~Þ;Í»LÁ(bzÅaE³ÒWùš²LéÁ³ña|‡\TÑÛV_ºo᱇Ù%5{C<åïÁc¥M+ £<øâ‹ S‚ ·úñÅdÕXº’aÕGûÜÒ97s 0X{Cܘÿ=þOs€K?…yRÁã{YݾøXaÅþí—®´°ª û`¹„`!eGPˆ®Hjs`0Œ·)AK'h¼ÑŽ‰AjT‘z±¹¥[n¦•zÙ+{i²ñÕ>P:ð¡í¥#>¤‚TôˆÝŠ¥oµB)”\i½}ûŠž”Ò·ôKEUÍó†¶>‰E?án|‡eÅ8DGR©¡ìíæ÷ móoýpK­½ÅÞVzµôâžG™ç–”û8ØÁþx º_Èû0ù‚‡­ÙþÓ†XÝúŒÅ¢*¾¾HúÙÃÀY뺂ô3D{Æ“BaVÅÛ\:ôýÏé×H; +sG¹N)XŠâÿ{v¶Àµ‘YëGqχ—ûzksRÖYvw‘J®s±%)Ÿ<ð•T÷ÖOþÒ(80·%éÀùM—ÔõGË?¨ï°ö=%¥%êâíGêÄÀ¯y®savÊòôÂ3ç+O5U §ªÿZy¢Á‡Ï%…¸dè…Qî;¸ kù…É+÷ 1¶ðߪ‘A‘ûï GÕòä@ø–¦’p»@æfЬ£It;Íz®H‘¿o¾\TÙܺ>IpC„•cjq]ÜVpùÊ%»íø’5£ñOêù‘™d·Èu‘ÄîYà7p¼£¥Šda·ÄƽZ<*lèþünuᚘ’œìdÎR¹q´_¤EPÁ÷²bø' !1¹ô5“8€y÷>ü¦¯|…@œ½+lÑ‚]ú„&Ö©8ÄÞ©¿ý÷ë IK…Û¯}¢h44nˆûö³4>ãˆ^À«C0M²ÜÐ2;{ngú…5Ñn&ady±…üüzºwÖ‰ŽWpâ;Æ5ןšÛtZä†vÃ=þQ¥k°ÿPHXÄ®™‘Ñ{~x ¨¨ÂL9H¦‡Z§2{¨Lø ßimi¿R¿1^WRÙ!,0Ig翹Μ–+ìu(aATíß(ºÅêä× hZ¯l°… ÌÍýJAIN´è+$M,ð„<_wÂïˆ] “0Y#F2¥”D’B¥] +”Q2óXº•¡´Þ2­\V¬ƒ¬VΆþ‡Ð'ÏÔé\Wï3ÍmO5ÃO¬ì¡ý™-ûÛçb—r“r„Žâ쳋Ôk×æ¥n÷bnøF «zÊýK\ǯ%±R† +: Cã'šœ‘›<‘*n‚žD_¦] !—éé Ñôô˜÷KG €ü'º~¨*’ø’¶e cl7a† "sŠ Â- OuÐÍ ÷%<ïvàÔºö¼ÏÔÎÝP‰ÉÉäU†ìÔBÑŽ¹‡7ÙQRÃsÃÀÖ~åì¯YDT$Øœ–(pc‹À‹*’G®ú^ hU&ç*' öc®ñѵ†®#G÷Ø+®¼X®ÑQRâØ®~Ã`Zi‘Ù¯ÈåÖØœR„Óï„gÞ(¼4:o”û’ü¥)ü1öVŽ‹Ì Þ‹×…7¯6 Ü?îç(ÿ¼­þ]C@J^îªÄÂæÏ…ÚP+û‡ 0˜‘.`ïe¶E¸×Ž)W×mªm èn®k»Zmx[°É;ç=·¤r1ƒ4Í2)w’o0ñ:cý²ùä>\¬}ç¶ÒbuæöêVœtO–î{m«²U¥W‘ÕU0« +Ã'åß”ZÁº'ò• +§J'ùÿ 0ø‚ÖË +endstream endobj 246 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 258 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 269 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 288 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 327 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 345 0 obj <>stream +H‰ÄÙŽÛÈñ]_ÑT0Có¦¸1 d=và6~ˆƒ E¶¤¶yÈ©zõëvõâõ½§òNùJuy½zñWغՋ­ÿ/ÛýÊs½(PÛ\¥n+äB@ÿ ° +7Ë’Lm«Õ?œÄ]ßú¾¬o3Ç[ÿsû·Õ›íêïÏ]âñáŠ7ÉB»a”¡l{>ñúOÜ¿þ2Äê¬"õ^­âÌMÓ +B7ˆR¹›(–8x¿úöÌ;=’ÜW_ñvÿÉá)ãÔï‡n¸‰7$[ +láaNà­·_V/îOº~ùòÅ_ò~ÐåÖüÞ¿|ûæíÛÀóÂW¯^©_ï^«•£òÍ{ñÒa£}7Kà¢mÊzW÷æÐjИçô¦Pw¶Óm¥+S÷7ë0uÔ©š-íw¡±M­t]¨Æ."ú¾‡º-:5k= #7 CRèãÿTÕÓ—,u†™›ùàK)?‚ä¦Ú™VŽ2R +ös|±ïÉ…LVJƒÔ ’ÐgÿÓíÚß8F­ÃÀÑù׺9—¦8˜â†1 ;\¿sêêL[4MK@s25{Aô­®;‹:Ö%!¾ ]os>fë .û¡X—öÛ£åk¾Z¼ ã©[ßu©íˆÛìÕú6‰—¢¢õYéG>A¸dÓÛÊ"âI‰ÀÝÝdžX€bÈm}#(¶†‡à3fº®›¯ìZ ›“¼Î-Zmû'n†×ÜÆ>ëàl[ÁM®{#$,<{cJ!nÎlžBhÌï·ySí4¸nß¹Œ{×óÚÙ(¼Oò +B=/JKr.%ñ½h|‚ç£-Í„!Ý÷ Œ"Þ“U.I̓ikQ¡Û/‰0(ÛZ¾B8x`5€ÚÚú¡) 2È"ò!\5/'£Ñ¹$m5¹é:F°RØ E#gYdÒV#_÷MÛ]Þ1ÑÙ +è,(Injºž¡¼©?{a +Š¾æ¯'ÓÚ¦PȦٕö@oU`žÑ2g[–ªnz¶c;ˆÙMá2Ó«‰ÑçàöçÐN‚Øݤ%(´7®ï.åÅwu¾<§ +3ÝŒÉíƒ-U×äÖ€ÂáѬÌÚðû9YžZRªé&i$Çx$ÉõD“xÈmAÂÒÜÛÊ–º-Á AF +‹h!Rþ Á“×"¾æï,)B£´›¡d‚£~0|‚þÙJF¡5aOHÈ.|ÅjkŒö trøøuòa`äô°á§á× áR~xþ|…yT \³8Û +/+wÂk¼Ãm±àƒßjø‹»ö·]ðÎå×ßZxâ·ÜYÊŠøǵï'ÎÍBRÐkHGǧŒ¬ÇëqOºCÙN»]ÈoåþZd½êâá3'¡» “töð=|úÎGóÅ`¨«Ú@ÕÁ”;.M¾s058Oan¦#y Õ‰ØÝÚÖó8•ÆD´Žcg>)ùò¤'UØ·MǼlSÎáÓ!ÑÂÏ‚t®ft‰jíáØ/ÈþË‹Ãâ=beP!ˆ0:v+3BœUòæPÛï”í'I …®p›k9u*){FR¸<èrÐ;ªÑ2Âpgå© .£ÑÝÄtʒݵ€“â0KZçÐÅ@û…Š±>€¼7Œ‘¬¿  BæQ˜4¼b®%ºÁZ@;•:#”ЂØEI¿”n¸ÜúA4¶'°µe!–{ „:,ÃHMÞAŽ!®ŸÁ•‚¸RŸ×Y€aBÛßê´?&Nÿ}P§¦´9FµïܨÙðch+(X•íøv…ëñ—E‡Ì®—¨(؃v5v½M-rÇ<†üOê3c‚-ð4&< §q0 +âs=MB|žâÐÇvóÀMI8õ ÉéfB1Fˆ¥>0x>6 p?J?^3|8Ú€)ßðvLkN4kÎ î¥Í¦ÄæÂÌ#,К¾S z’Q~¹b9œ<`ý#-¥^0 +òÔr`±h²¿lêY äeØCÁ3Í•°‡´o¡ü³5 é<’†€¯¾]oœ¡?þùšCÇ”Ó?^,ȵq?äGL§‰³cÛë‚·</E|Ù5 ˜5*[Þr[ d TªÜu.€§«y) $Ö0Å~«åærT7’qîå g6ÜMÇ£8@þ‘ˆêX úHÉ 9‹"é“ÜGl%¾–wí„5Ô§óYeaŽ) ï˜ù†)Ö~®ë“ÄMaâœ{’ˆ{’ט0[÷º=¼j2ÔÏTù0ÊÜMJýI&²JÁ^y2áÙ%'-º^sxÈö¨Ë’A.‚ M/ES ¿¥%cK.ÓX²HcIté¤Ô'Ik %‰Z¦`>ˆŒ°ÎIlý¤0JY„…BúÌ47m¯-ã{®_¬cb?¿d¬Ã“€X{›£Óàœ?êiAGbù>ð?íÐEè1çïLYZÆ“¯Ñü8ÕôÅßšRÓZĈ ŽªfÝÍ÷Åøq;Ö+’ð,&†þ¸·d2èžË²9sG‹eâ+õ+æòOÕ æUã+µjæ´­ËödbHñ6W*HÞ^sfâºÔ˜0cMñ)^¡[ ŠÁåGì2´—õLÍÐ?!ÇOâúÏÁ#`”Á¤¤© +²ë%Ò!„Šº¼Ë˜‹2¬Ið8'i2§ãËdàeÏ$ƒ Ü(‹J,Jê9wMMQ + )Qwi=µ 4¤ÅlÉ¥`ÍÇ›ê¤[îÀy ¬ã3Ø·ÂÒ$š‡‹ë¤®³Ÿ4‚(vã,õùUïMµ£{È1ý89Ì#Å¢%gT–y.`§€¿ Ÿ4@œÍPÎヨæŠqÖø6€K‘:¦èÖ'ᥩVn¤‡õÌIâVO- ðåÔœq¿Æ@Ü–ƒLÛL'ó–W(Ô¶Dß&“ä D(›#BˆŒ£ Ü+nõÜØëo7ÌÒ`öªD¼*ˆw.‡Ñâ†P=Ì6k# ¾ Î!¼¦:NÔ¶¦×ñ…#–5$ˆátjÚžàj¼ ¢¹d22)¬`ÑëÃ.ð…üH"™¶{„?r=?ŽÝ(Œ¤ú½«P +Ü ‰6¥÷—¾;óª9ä\¡dmìç/tˆI'H$ÂP'O†ÏCKzÁYÁh¡­Í¡é­~v4Sg²§À*ýV8Ž Ÿ$eØ%UiÔÓ¸[˜sÓ~å-?»r8OHð·!Ÿ½0µyÏHxéÀ.í2âÓÑ\-6¢¯Xô%ŸúP¸ð¡}¾h¬lšôKð˜B6üþGžs¿!ûÝ,Hൡ&”|lÙnÂ.ÿ÷àK s'Y¸¸Ç–(Y6DÒ~&<óì‹Ó]E; ‚0ð‹–˜,qþŽ .›<04þý®íáÀmO[h›öºÎ‘ßL ¯ÕæÈ2€íQ‚ŒEâWÖWÜíÇܦñlÆäRÉ`«y¤iÍÉÑ"9<-›'øGbï¦D¹-€ïWÒTÒÕeí|pe +Þý›¶¹À¢Kø°˜àÙÂ6$ú¶[~›4.sžÀ*¨>stream +H‰ÌW[Ûº~7ÐÿÀGù`­H”dI@ É&EÎ¥M\ä![Z‰¶™È¢#ÊÞ¤¿¾s¡dz½›žE±0 Çäpæ›äðË,‘XÆR䥽š}ÝìÕjöìõûHÔVÄBغ›=û3t7völÿ3åj=‹ÂHfbU‹<ÌÁV.‹0+¢¥2,óþßÍ‚_ÔQµb)æ«O´øŒ&c4ü¢»ÏÕFYq§‡­0ÃVõ⯽©•µÊâ\4v‹â‚Yz³šýÝ|ýÝ|ÿú7ð)w"¿ŠÉ㤔aŒ%¡„(Ó°¯ø ѾŸ}y€KG=7ü“2“¢g!‹Ñoy¬(L¢f®šÙÇàúú¨ºFÌ“Ëp¾ˆã@ÎeQ,§¼è•eàâ,"ûe"@—–˜’õ,Kä<¡,¦9å¯t_ÊbNK;*Ä@„Y‘…YR +™Ê°€ì¦}–#KÓ0“1N}õƒHŒ‘c °L””©ÈeÊe#"!£‹8 +¶ôUôµž,æ Y,C=}újú²¾ó¦¹ uúyqngç™®¼¹ƒ?hðLŸÍãŸ/Ý»¦ß Ê_$q˜$‰X]CµgrçÅÒz±<èO’gÁ7hðÐrë‹yÊÒWßE®ò|qF­7Áw¬ñ4ˆnãAÅ‘ÇeÅ¥Û;Ä÷…Sˆà¦¾UºÛÀb¥ vºkÖ‡–;fÍí-œp,©/=|c™Ž¬ª=©qÉÕOˆ±S¡Q}…'ƒ a\¼0ž"€Ó’…£ê¿±ÔªÊWÓßNk•úìÙ f8*ÕÙC?NN1l«Á‰x>±dn­êpFcÆÑ7R&Íh«3Qd[õ;– 4 ö½îj½oÕ÷9pCæAêÌÀÂÚ°guk¬b¯ŒvŒµúV·Œ (_4Xoµ:r¨[›C7TþPÝyÆ.^ a-ÓàÃVuNäuÙ}ì³C(™=ågǬêÕ8î¦IzùÆiS³ÄcŒ6£p«¾™n´5xJ-â}Å€“{«í–ÅÎŒé†/Rk@ºÀ‹#ë(#ÐB¤zRÂÀŽ=µÔ¿UÃBP@&šxºÆÈ¡`Á—¾¯»ß拼>ñ%roµU”gO`B§š +ûÀ‚Š +’8 :Ø0z×0è?"6H DÕ+Ad\ ÖCðN·äŸôcE£×¨Y+þcT›ýÞôáÀˆÅù¸£A¨·UÛªn3þ¬v8LÙA鶛?u𠂘êÁWŒóAØš¥[Åm£¬Þt„W1ÚAï`#îF$Aá‰ã›â¬!b%¶[§ ÝEGuË+KØíí’€SÔWm)`ç¹`€ÍQ[w¶åÎý*3Žù¾§Û6K’0Ïâ„oÛ"ŒC¬£Ä<Ðp „ƒr^S¦û®r Eª¾±¼ðãUo:–_€Fð¯ÌW‘M•žsøcð’7ôÞÀJV`¶wªÑÕ`z{E6¦›ä}_ÁpœŒ¤bpr þ€a.ëÕ"™W–®ÁÊÝP–Xï”1"Ľ„3:Ãû¾}5} };ú +úî=½öþåYÖ¹öFöž~G_EßƳSyvüY¾ÍÊ[±ñôÆ›»õì÷žWžÞ´öäýÅZ—Ñù±ûö•7·ö4;OÿùÂÂFœÊ_Ç/—(‘æyXÂy Ä.R(k—YÆeïÕ¦é½-óÈ+!Š¢rz%œñ&ŽÃ¥„æü‰OOzFÀ¿y1¾]þBûZ —ËbN>°×(çÇ{»|÷γ,`Òýaزث}ÕOÓil M +îôÎt‹^™ª¢žŽ!ÝÍ)Ói˜ZtîUÿ“± ~zEg› çKøè°gQ(ó§ƒ:¹ý!ÔN0GÝ©ô È}oje­‚à/ãN–aš&O'pö绿SŸàªÕ®ƒ‚Ïò‘gÕ™ªc¦SÝëüɨ47b{ØUÝýîª~ˆ|#®@Y¨šÖ£²YûLƒ“4Ìï0¿pÿ|„´°èõf‹t·„;³2”I! ‰2É^^|Oœ|8KbR”Ð>$²?²ø^¯) )uxAOÿj‡ùØüßÄøä¡»{:  …þN´­Ô"çÇÇÉ´Û·Ê „ó«w[Ý**OœG¸s¸UÛ@÷ïÛ‡ø¼`¯½ï» Ë02.Ï.(ߟÇ|ó¯SûãRÆ©|:Œc²ïŸ—ƒrü"’(áïJÚþg5öX–"í $C–Áv4D¨;,,÷ýÍŸÎX f<¦A`×9ãì^ŽàPêª=Ñõï¿qHÿW2½òO¯SA·ãÄ}p'Ðþ°\Lϳ<O‘½ÝE1x¹ÿÛþÎ_òü¬´|€É²LC¬Ÿ +“?ò?Üü¦ +<®¼£OB÷¬ñèà.¾ +¨Æ…Õõù¢»;Ñ›Ÿˆ÷.=ŸÂÞy"ÿå…\æðB-þGèþ÷ ²÷A·ç¸ôfÄ+€ñ† +[Tpg#¬—È߯‰á6«aîY.‹O%0<ƒ(Η®°XÜ+,ø?ÌDž²»?VTÛG«ê½â³åtÅÉ‰Ò sjbQ@6“22NÂB.S~Sa ?Z6Û2øýÖ*¼|Š®jÒŒPÄ‘ó…´ Ô ÷c¢?½À¨?FçL: " ^œìÀš[ŒøDj™'Lê§ZšmoÆçÃNâ qä8GˆN\HØÈqÎè¼Ä@`õ&Ûû4ÕÙË6ºÆû‹Ewß>°½Úên^Êi3`KG?E²Ý«ZÃV_ÖÔåˆ×îXèjDžå—úgGì¿é®–å†Aø+>6‡¤&ñ´äœSÏýÇ!ϤØcp=Œ½šË²@€%­È2,±äd7+ûÆ LH~]îU½AW6•î”ZÌ´4ä C0‹®’ØEä_|® ?xQžb…¸}ŸÜ/u©äŽ—l6¦)ÿÞ¥«Cä3ØÙKlŠOê\Ûî2_èN )–¤Ç‡¶·ZÄëɳ)Ñ&¾ëÇ? ¥ˆP³^{î¾&7:Ö±öéÏ¿¾Ë¢ Ä Eh<:e*t>”VL¥|B»·›½ÙUÅç–xe»3J'›•Q +,_tO‚­àUÐ ‚$ªßv‚^0‚Î$fÝÀÊP¿ö`ÑevÑJ¾ç3 ËÖÉçv`±Éš#ÌmAÞâ燛±ËËÍ&$wo89ÿC®~¦çÅ–gö¥Øâ*ñÕ+’éêã§Øñâ +endstream endobj 54 0 obj <> endobj 55 0 obj <> endobj 738 0 obj <>stream +H‰\’ÛŠƒ0†ïó¹l/ŠÖj¦‚JЋ=°Ý}kÆ®°!Ú ß~g2¥ +h>É?ò™dwÚŸ\7êä=ôÍGÝvÎú{hP_ðÚ9µÌ´íšññŸÍ­ö*¡âó4Œx;¹¶WU¥“ÚÆ0éÙÖöœ«ä-X »êÙ×î<×ÉùîýÞÐ:Õ›¶ØÒ‡^jÿZßP'±lq²´ßÓ‚jþŸ“GÅ÷¥È4½ÅÁ× †Ú]QU)]]éÚ(tößþ*—²KÛ|×AU‡Ó”âðŽy/¼g>ˆó<2-ª*¤¶àÚ"Θ%SpÆ,#ÓB,ó^1KÞÄ|!\0aà ÂÀ¼^3—Â%óVxË,½îÅH/†{1Ò‹á^ÌQ˜~TÒ p/ žÀž žÀž žÀž žÀž žÀž žÀž žÀž žÀž%?K—‘WÂìYæÂûxpâ#¤IÓÏùhî!ÐhÄqŒ3ÁÓÐ9|N¬ï½¦*¾Õ¯l½½ +endstream endobj 737 0 obj <>stream +H‰„V PWíffºýÀÐö¨3¦gX(ˆŠß¿%*èf³kG§Õ–ÏÀ  "ѨÅ +h Ä4uµÃ¶;]È"Æ!šuÕ¬Y4â_À/ÑÅJÕmòf·öÍĘ­Tj·º»ª_¿{î»ç¾{Þm’P$Ir -s-KšçòÙ.¾@Xe]ȯçã–®rgÚsm~‹‘ŠTF¨ÑôÆ÷›¾Ô¼F[ZCÀ +{^ýãˆÈ ’Ü^6ÓžWìÖ¬-0E¯zÝ”0qâSŠÍ¾’7-)vð9NÓ¼ÜUvGžÝa-àmñ&SJv¶)Ýoï4¥óNÞáÂ__aœ&«©Àaµñ9VG–ɾڴ@ȵçñ¦”9&k®m´Ýa0Ö¹~¥S° V‡À;ãýa‰/bA„‘‘@c bAÌH¤ª‰%4!D!A„cú„ŠÐcˆTÂJä"ñ„L%²/hnPyÐÕ$U®ªK=L¬vªw¨ïh†j24-šj1µƒ:M=¢£èåtýh@‚EkÑ"F)‚ ‘}a_žµÊÌb¦ög°Á„5²šÊ|7ËQÌ ´çÀ¾Ã×ôZKyùTV=Õý|晕Öî†*‘<iªóPÅBšˆÒ¨ŸÁ„Üg¥´`+ûõ"yN†nYõ\dûõBCò©pdGöá(Öˆ&,L ÀÚ Ð Í#/ 3þˆ±±õ.háFÞ"«Îédh=C®v@HG B“+Œ(•’Ñ¿Y¸t¯75 š¹|¼Q i}[„KbF·Ê«eFñ;¸ ñЇGgÐÖJá}×BÞÞàÑ_¥¿u]F+¹]4óÝý­WéA7õL4‡x¼B —`}Ï›nF#ó§µõ®þd‰„¥² +–êäþdH—|“xHÿW2¥½V*ÚE%G ûDvH%1¸£Œd¯ÚÏ#šcŽ!m~‚Å(Q—ÚºÎ4Æfnwe”rH“­a<)…YSô“þ<ÿþ?>—½µÜ.Š)XG¯<¼ñÃ}µïUqGè?l{ǽհyËÞƒFô,ãµbV⼜¦KÛßxn×Qüý*jê‡ï¢´¥¢Û¥”‰0§0ì´U2s’ÙtZ'ý;=i©i¶^ÁY÷€ÆC\ FC' Ë–Ë ‘§  l×ÑéXLȈˆ_Ûq0îxÇ£ŸžâII†rÌþ:üšµ£ sÌš˜1ݽ=õæ,N¦$¼‚úÆë(%ˆh0Þeç ?ÉýwdØM•ä ºtR˨/Šl-3 ˆ]ƒÔ(ÉÈœDã=HÚ+Ír{ N ª‚ñ,Œý¬³§óóyhº›CqkÇÆG8€áœöI©;DÈý®wKkeæ»ëpŠ½T‹—D-"b9WÝÔU}( JFIh¶ˆ‚ÀÀ1 + jz~ÝÈS~FøÒº!ñ6§5Õ»”D²SRuê$¥äž˜ÔMþ´öØ{Ýe{8‘®Ø\R^j˜µ>s‘1É"´ÓZ´@„QY#–ú9n`³Ä<¾ûX˜Ýòå훞i(ZgŽ¶?=Çtâê¯fyŠyœTFŸ+´Js ˆËCCP8 +Q„>8ò×æZc…™Bäê79æ~Š {q¤y{"`8è¤ÛÀbîõ/ÒJž’ XRÒIÐEÝ?qõúÅãYñœ/XR8úišœbÉÌX^Ì•ÁžÒ¢ UWd_X›4´ Ó«ÃqŒéVR_`ç§ô<²°îêjwµÁëi¸kTîò¾zžðNöÖ-;wnå˜1ûw°/¡X'…d›¤j ì.vO Fœ•3¬ößCF07Îà@ŸQ7/ßüªaÙTÎ7éùÂ5o#?‹ó½&)¿¢oY[“'ÚñÛ¸2ªe›£u’aþò5¿Ùd,Ãå|§_ÇŽÜ™ŽÿGžbNtbØËjþXV)à–…B‡"\1È,¢Pà B„P0sV7‹bÖ%FE­ë†0ë~öìX"2sZ4ÚÉ~W¥?ª­÷4ΔGvQ?Ûj,¶W^ˆbn<ài Õ°Lo@_í'g¡)?ˆŽcntgÔÎú‰óµŸ×ênÓ­nn¿¸žš½bÅ¢€£?ÝÇl<˜Î`¼*†òdX&åËÌcìú+%˜ý¾P؉$/Z–4÷1ŸcžwdkÎÔ ¿Ó§e½9-)Çû ·/¡î ‡È[—¾èjÏjZð ÇôN>¢ùm]þ¡6ý×͇ÚîV/x‹ÛDkMÛEÅD•R¶ûÌTúlomÝ®ÝcAìØPâÞhXï¬j5*QX.0šG£-´_žn¹½Ø¥ (u,º¨1Ó'Ï·}È)Á¼££ÏZ¿io:Ñü‘ÿ ,š"ajå-Š½Ü÷T°\£”:•B!>»¦ŒÂmÍŽGå«ÓhÁUîUÆzÉ÷”ý*…ÒµP  ØÆùl­šeTDà=¿c”£Z¨çx€OMO@ d tªjt2Áð6 DokþB!ìÇZ«ô/«A|d84oQ G•­YÄþ¸Ñ¥zYÒ°œÇûn\ª™STXò{Cé¶;KŒí®©q×Î}Öp¹Îã•o±v“RÔ Ê Ãþ.[ÏzñÃx˜0G)býý´”jª8zð#œÙ•r§ê™¹Hõ‹3~O/[¼×ßæ—þ6ϼ êg¿üPZÝŸQ2«a\5 •½•¾‹U´8H¬LØÿ0ÕU}g +endstream endobj 287 0 obj <>stream +H‰¤WëÛ¸ÿî¿‚å`WÑÃ’å6pÙ\îR\®×¬Ñ¢HŠ‚–i›‰>QZgû×÷7CʦíÝ /âh8CΛ3¿O"‰—K¯†} +˜—-Rïß¾ýxu@&©cÏ.؃pD8Ú ž¹aòÌ䣊7ß0P!à«êñv%Gý¾ @t9†D\Pu=³Š=#Ë]h!éKDݘªÀ»D¡ÔàĪ–ußéÕÐ+ûÏ Ÿ¹Rz:ÔO$F³ÉˆßÓ(´($‘Qç7³ìÁ-Ùæ<ÃG‘ò‰”£ÔÙã$‹”Û(QÖ Ú:–•3/Žå k€=õmï¢ÎqÙ¿ºíÌx0ŽŽ–_•Oƒ÷cTÕ¿mO‘üT™*‰˜´OÐðòZÂæ†Aö,C—þH\ ¾õN3)±º$W¯Orõø$Ö!ÉÑÇ[zå[Ÿ3ÒI›¤Á/çÑÌ…lÀ°úXqØVÂôɈóXÎ+ ìc¬+{ |átÅr¯ôóÁâÚØcà ¼ÿÈ€<¶ ´ÑkgĵÝ6¼PWÀ@kÙ¥£¯]œì8Ý {…Çi5@|Û‚€zïL#Ë#L QÛÇiŒæüÆÊÕ<‡&–4¹Î¥F;ËÚ6í‘öÜ´©§*௤>Öm++óÇ3nŸŒ-bz~£ðk›-ÞfÄSÕ8¶û­C•„´ÓY#4ÆþäC{æøõØqÓ;îÞlñ9JóíŽ_î„ÜÓu?¸WJ|h×5ˆõö«È$»ÇèÃû(uéÜÃÂJ4â¬X“aQ¤­„ß™ïf—³Il{äøÔ!ÏŠá¯öh´wcãÑWÞi_4z‹{œ6ÎëO§ó7 TàYx£Ê¡C“~ú^׳cÅrúY™NŽDkH¹1fì8²ú¢J6Ù1W£J8©êZ±™7’Ê|?•ÓJsE1ÑXiDÙÉ Žx΋²nÐNS¼—²;Uíibâඪ?%’bÖÙ«ö6&ÝL•TS¶ƒeتµCÌFØßîÎ,4Ρ'©ä'ÄE!âbqሸD\Â".C# qaò(<Ê›iw¸Qô¼¯NÝ-ó\œÞ€tjZ¶N †à’jTl•«³ìÿ K2ø`¶ÌF–W”  +)€àŠÉ7föx.¶Ê¨·À‹q‚¯>ÄNj‘‹RŽùnäOÌ{E¹`Û6ùO)\/Š$¤ÄÝ '´õå§óÝáKŸîç̼ºÎoÜ'“%|êÓ%©¦aâ5OµãalMc7°A”º»néuk:´s¶ÎS§žþéª7œØdŠ¡WõÞ]õÞèÞ²uÖÐ÷ßjƱ'ø6HlŠi8¶!J\õO€b>?Ñ +endstream endobj 268 0 obj <>stream +H‰œWKÛ8¾ûWð(/ÚŠEY²&ÝÉ"ƒ™Ålb`ÉbAK´ÍŽŽ(¹7ùõ[R–Ü=Áb/b±D‹õøªøm±k‘FRls):½øS4‹·»Å«ûOkQX a‹fñêï0=ÚÅ«]ôï50w‡Å:\ËDì +± Bp”i&Ù:R†ùvÿëEð›¾èJ¤b¹{¤ÓPÀW¡Èà7Ó|UGmÅ“éO¢íOºtm¡­Õ÷à¡‘; HÒ»Ý⟬æý'TóÓý?@§D<‰ø]Œǹ #T(%Ürf ᶟßþÂϨ1½rœoÃ8ËäìÊÂë-oŒµãu ;wåâsðððQ¨¦Ëxì–ÛMЩƚ޴ªÄ¯ƒíM¡—ÿÚýú̯>Uóúõ«_Š~PÕNÿ§ýþÝû÷r½Žß¼y#Þ>Ü §Ã»ßœx-’¡Œ7¬@mIMçj0^2÷öÔÅã…‘È4L×[ºpžJ¾0æ¢öm$îû¤árE\®ò`Mw¹úí^I’€]œÄL$ ?ð69ºä°H6`ämL^Ülɹûþ^Œ-ÖÎDdI¸ŽóØÊm(Ó8Âk}Švèz±\me ›‹é–Q´M­›Þ2·?)÷¿W_5SÅÉT%“Ó 2OMÓ·nM ®.u§ÐÝwã_Ý]Œ~r«÷ßy´g]UU0E ®Å*ÓlÅî4ì;e ÇmâÀöê€hÖ=<µæxš1 ÓhÉúè$œuwÖ ²o;šÖ4G^­!ë¶Ex—)-Ûj¿§Ö¶­x®¨Î猹ׇ–ì¨ïD9t(E¨\^ Ng¶2@8†ÿ†}–†‘ŒØkŽ”yæÏv‡›m’R<Æ‘ÏÀ-ó PAF""ßæÑ5kWQþߎªc¢þf¾ê'cAáe±{ùÍ)¥%.ؾ×.0`z4Ýu½/M}ûn™à lëÚX @S4=„„H5m³zJsµìJRjNuœX ¢&̓B5L´( §Cc¾ šésÛƒÆ$§‡Ö­yኴ\u€IæLAË,ÓxI¶_APYÇ[SôÌd À-Lei¬ÐÈ»¿aä²äB¢Vß™8€8Rèôk¤2®ÝS\#IŒ„©ÏªpL nŸ”Ûî™ÞéæXаïÌ~è!As²ý5äÀµÑŒ„èB Š¾—¶š^uük¯¬áÕtIÏÕ¡3º)Ýþs[™âûl•‹Ì^|O`ÕZÙ¯cY5ÒÊ]j¯Üá\©B pÅd?áC‡@fØjæRÓ€º]†,ðy†|À^ À[0Q#"©Æÿ ¿#á÷ؘÚÿd¤Gò&”UêºÝC”ÿ@ %ÎÕ®Ý ½ Nù?£B¡½6üHþ*Í¡f@¨¡0:(üÅý±D—áô2T ”•}¥™}d5†³[M1|]™£q«b—ùÀæ[AHQPZþÛŸœãÉIácÙ:v€ív›ï°¦®CWiÕ 81Eú#«^¬à¹.‡bšÄ—·]èöš ¼ €qÒªêO…òÕ†˜—–¥ŽPê3š1 «)øG¹³V„ÈXUíÓŠ¬S_å~j»¯!“ÿ»ÖŽ2СyKFù³Èɽ×spz£ñú½;q>9EO£<õ6ŸçH4÷¬êGO#Z:f'‚Ð&g󗼉«YvqöÃOÅ©‰°IÏ'Mð¼9 \ÈX=Ôd$Ƹ¡BP‡éÅ´•LÛ05yÿw"NêÂ’ìà«)„èã|©‹))ñDo}'±¥aî®Y¸Ìõ‡ü©u‡(ß-ÅGqSz× 1…9éñWøå-ÎH†vZªù? 8”óž-[ÈÛrÄ0 ÈÏC†#0Áþ³àMÊjæ8ˆÈÁΆyœ@øŽ[Üî¡**³D:H…Lâ*dþ‡SÓ“œÙ¾IuBù~j%G´_RÞKf@Üdp\ ¥Ä/¦&ÿ€ëZ®ïÃxªqŵ{gV ï5'Ñ)æZÀQkÂ)àëÆ×>ž»Â”E’1± i7Ù`¿QûÕþlzB°ÓüVjˆ¦«É*!Óü>·xZqOëï˱Zš ¨Ï£¨¡8›™ê0ua½á0£ÿ4´ó¼äµ- ³Z*7·i°™×#IÝ +|>ÒxƒXÒu"ý/&ï; •l†T>W™\g¨í¬ï˜¬ÇÎgG•ÞiËÞ¼n‰r"¹Ù³!Ïv'”½t×s^8ßRßåŽ Э+Š¬§ÏlB¦d¬de;Pu—ÑÄ#w4ÇòÔŸ†"¸½Á¨ +Uኵ„gÑ4(pÖÐP´Ðv¼`ZåH¢öfèo’gMèÌQVt.ÈáÔ¢½‚)±Ë¦קŠ¿@,tž“7¢ä§Þšš&8$Šøʼn, ×q¾q¶Çb.ñ¹÷Ù5ÕSà#8KÁÓgÝ5t™}ÛÙ¥ôŠO^“>Žæ¯Êñ”4ƒÿ2ž2‚PáÔ2ÁU +©½ö?§ÅƒSõ ?¡’›Þæ ™³%cßç–øÒT"øØå ç«‹ÕØ&|Â’ ê=1w‘T¡»ˆfÔ…¥ì/âÕºÞëΞ̙ç„\¼„J ³«LºêòûÿµCo8XnÃÝs0Âbejî´e04%½-#ÉxÙŒ !²*õÄ„CôH2¢ÃدôÛy„#@Bæ;ÇE>ƒ¸ÿx7²~^”ßjóÈo¹>\Uäê „Ë§ 0n¯¬Ç`ÄPO3 y­oä9 ¨¾3~#ò¦ät,ÑþÑ6ø¥ ŒW“0o±±Io^w)G§K±eˆŽ<Ÿn˜i8÷QšÍ¹áqýNâÊ\z[äRrò¸j” W˜ÙxjÞ1œs%–txp8kºKïÕ40r¬ÕA¯¾²KP›–³…Ü:ÎàY¾ðhj&¸<|g¤Ÿö}ƺ2pç# ‚¢ýŽi—Í5ৗ‘r@Bkgõ\HiŽÜRâÄ5{ôÊéOw7L÷&›‹û—Þo†ñŠç8CâOkzedôŒÈ¨Ñ‚¬Ëp¹ð¾OÅÃR3uÏ…7$Ο¾a%!gg‰s‡ðz7í'+—:0¨ò8”†xnG¡5>¬pa!s:;ÐsbÚWH*=ÞU%ˆ¦'a:/‘8ŸÔHœÞtªÀQÓßcêà„;…ÈWÔWlsv`r‘&¹öƨéaÉ æ¯žk]ƒOv­)YzÓg.å›Ö +»œ´ûG]°1i>&[–r¶Áh¾,™x!JèÔ¦œþï‡Îýø/ëÕ±ã6 Dïû%^À!Ì"K‚FìÍ)@ñE‘å‚8kÃÚÍ÷g +GbqÉ!'‰#r4œúÝ7$3€¹6Fg)ƒ¥$9 K¸uÏ$sx±ž'1·dâ;žøºPÅg=øgâfØþ<ðƒÐ(€¿~^ÿìö 5F¹ÚýŸX5×ÎÿD»ä',8-b9¤ìÌŠaÉ‘qB*WópÒ³7öe¹\}ñÆÞ2©Tº*½v[_µ´á0°•ÒE¥yƒ~V q–yÏùo~:V\ ><ÑŸ!—XÀ#Ëœ5ѹ‡h;tvÐeC†ÂºÇþäçÍx }ù¾Gqúý€ IÜc3€´úl†ƒ¨ï.4ƒ­÷‰5B[aèPl¤˜Ž[ƒ¢2±áM.h͘^4‰ƒ`9P—ÇDlIKØ°È#mgbtÆßN¢VŠWYuÓÏ{8Fú#æ;Ÿ‡n3eÂpì•‘"‘£*&ŒiÓõ‡KóShÕãÜê[Õ•Oò¬[©âùÉ-b!Ì°ÍÕQ]•‚P®tI¯''–Ô>¹¤µ*f󨤿¾5[tdG©‘ü¢Ã%%=><Ê×ÑšÜ4È#\‡_{Ä[Ü"Q5B”3È„·{þýÜGê6t,–°æ°Ùü9µ4ë<ÙpP¯)½Èwd¬„\¨¤Ó,XQ…¸d8€`ë -‚yãÒŒ êúã·§ÏO„z¦ +endstream endobj 257 0 obj <>stream +H‰¤WÝÛ¸÷_ÁG¹X+ú¶r»I‘¢×k³î![²Äµy‘DŸ(­ãûë;œÚ’¼{@Ñq8â3Ãß|ð÷E ‘…‘Xç‘èäâWÑ.~Ú.ÞÝ?¢4"”íâÝ_aº7‹wÛð?0·Ï‹À’HlK±öÓTØ]Èà›ÁVQäçy–‹m³øæeþr†^´\å^°ü÷öo‹OÛÅ¿Þ:$ áH3?Ëc‘úq’[ÝžIâþÑJ<ÞÿtHÅI$âg±Hs½Þˆ(ö£d-“¤üÁÇÅïoØ æ¡ønOg&‚)Î0†±oÒ ê¶†mÁ0/Ì–ÛßïEûþý»e?õVþèßþôùsñ‡ÄO÷bá »òÓÏ@Ú‹£Ôú0ôó ÚVà¬/m/÷] ¼^VâA™¢kŠF¶ýÝ2^{âA6z§jõ¯QºE[‰¯RE-û±‡EWqõz'~Çè*ðÇÿ骹%cŸÅqîç!€bì3&`A)›ìø(GÇXÅþ·ƒ#:x'‡è€OFâr]ëhíGYwR,#o¯^dk‰^Ó´«%ŒjK\Фêð—l+‰TS|—f²úXt½*‡ºèê³X†ÞËP·²+vµ¼ný¢t]Ø›0wv +û×C…WX½•5>« ¾ÛPQµ{±\E¡gä€Ñv‰ÊÙ™½l$äc­U'Ü«.ÊïDég^T %®p›]Äû®Píå<}<ê®ZÕ+ix·FÔ–Ýþôë»e¸ñdÑ[@ÚU©Û0õZ¹¯eÉÜ'ïYwDš£,ÕSg%ÍOÅÙeÝ„[Tíkøºù)Š"·³¬øji|xøJÄ%5¿iXs8RJÂ<(íÝŠcoïÑF+`'&ìx™c0˜<Nû?Þ,MçKýùŠ8˜-ùÛµâþ j¶Â¶Zú¤\„aã®ßFÿv™^W´F]¯,÷~ `MÒ„í-ÁWÒ«,ZþWg¢ +fh»Ó ‹’dÍ3ÅBÏE éĈ°Û ¢Öí~®kFòr‰Õ­œ„0ÿ@&Šˆ0–#O€ýpI{úCÇa Í1K9Ê å¨¹ávÏ‚),YJïL_”µ[‡8›é`Ñe. ùÆÆ•ºµÞ¸è¿axA FöùÄß’úH/¦'Ê.b@÷†Xä†3vCºizptQsx½TÅ«+¡y,›Yàwìtƒd#+b Åñæ5‹-[µ/º~‘ÄÈ`¹)ø€sLYŠV™ÆøĘà9§ƒ&¯^r3*{(…1x‰Vzª®å¾¨mú„»¿[n¼A±ìûØ 3v´*"3öŠáˆ†y˜rb›z,»”†—ãæH¿¨Àe&ÛŸTß"ª°tŠk†FÍ 3Em4Q;é8`‹äuGÙ%8²×º XŸ +BqÂ8H,Œ¶ ’prýÿÚÅr¾ì”-Ì(ÁT«/Û;1ˆBNf£“AyÔ-äSÀÈ(5#f[W*ô®V{ª]B}­Z°n'k}Zæ‘ÇùkÔ„!UßðZ{Ó:u¶¡Ú{yù@9¿5~+üvø•”ìñË…²ùˆó2Ú¡¤"2â47ë‹ÑžÕˆIõ£5r´ƒs®&s‚£åHã5ô­›ŒÌÆäÆÞ/GS0ù'¶×¥&†V;ðâ{ÝB‹B)¦<¸¿_Õþ`Ñbÿ*Ùu’—º¥jÏ•:¶iË@3ÕQáw½×¼íp7qgvèêU‡Æ‰Ÿ®ÿÔ¡Vž[j8 #™µ+Þel0;w•BãSP ”Rn·c ™njiìMë7²êÂUëU˜y—)¿ôÒ5¨ãF;4;48% íÑÐc +š»·”.\Á ¯b“²ÊBö¯ú8ã'*Œ³ºœ'wsènü(};Í>-I}}9Ø–+¨N-ÕÎÔ»–f;›Ö汚¶¬ÍîŒô_Ù¸t'©Çž£+ÝöÏóä—î[‘Ié¾ÊM}†ëpà±b²>"ÑÆâ6áï»I£{©ž·ZsJ¢ü1OØš&Þ T[8á­%Ô·« c4TbTúÕË©g‚cîÙ“Iwh{&=/€x¹d²Ë!@ì$:#½\ÚÕôC Æ¥k~«Ú)^ì14ËrÚµqV-Ýr­›²R¸A …pËsÏ Hï$®«@Ýøß +$lRŸiŠµÆ@ºj°¥…Y«{"t;_Ï£„°îugüyXg~…ôêd2I3?³\Ĥ¹4Åw§åó÷Ö䱚d±¤›DDù*XÒc•ø2u uþ𸠦/(r Üá3tbÔÿ«ØÕʸ2x;ÕVÔfÀDï½»)dPFÇ&ÑIž,ů¡Èë)ó{ÇÃÙ¨’ë? -ÛœKÀÖ5&èÿKzuìÈmÑû|k`†b&Û×…!È€+[]¸dïLLb˜Áúë]¡»Hή`¾t¬Ð¡Â«þL´È^5Dä!;vëÖ¡ÈSÀ†$Úû?çPª ð¢<ö“¬àŸx“B÷?àªa{QVø*è'84G±Ÿ¦ûrë â9z¨Ë +ëÕrÖ<·¹Ô¦2Ci‹ÜÐÖ²a$À†öb<±ïáãwzš´]7–Ÿã%KßGÿãF¹ øôA诣/P†ÉÃô:ÍõøÓè=0Àß…ŽÒ3èÀ§IƒŸÍæÊœtXèϺ³¾w‚°ÍÇï£ “õ †8xÐ2^ ºÆtL†æWHßÄ"ºRáÄ\ÍÄf[Ðcn{ øŠní–C{÷x¥#Ž ï®P¨Øá Ú,©½é¦Ù%Š­«äÍÂàÏÜ\ 0á%-)Yô¿º/ÀÉoTÆZ +Fšì«0µˆ‡bå æBÙÜî|¥ÕdòPÓiW/åÎ1÷øûë;¦¨%u +%“m 3,ã8x_0¹ŠÇ!ãøFÀÍì?ÛM¼$‡d1^ƸdÔ¶°Zw~YšÞJÁì0ûÄ”ŒBk=n¥–×Þ°n-¸9–€þ¶–~-qPûÄÖaþv)vJî*{: +­£ÁL-ÿ?ÌÅl`L¸‘™F£íb¿XJú]èk A¹¥ü„ÓÛE[|…Äã攄" ÀÜ!´æ—$ü;°ú Œ·×q"œ™’jT(m„Ä•ž;,–^^-7Óôðl4rÅ K’VAˆ7”Æ`i˜ +ßTÎ~#›¯4A°Ÿ”ã™uÅ©^á7OkòV«½(û1ß#à›]Píp‘âË)¾JÛwb'JR-ªÃOeu÷ÐqU¿uÀöÚº½á·(ŠƒÓËS1ôšUÿ¿1MÌì<³æZV|#ëÉÏú½ä[-ͼŒeƒ¥Fñó,%@'XUÍRëŸiB +,YÏÕè͘¿Çx ³ZOæÜi–@EôÛ¢ñH+m_›oAœézÍ¿±òã¢4 ‘Žaï‡Ç§À«&ѱ7UÝáÃGX8O„¡ÆÐ9cÂÐ4Hb? +åeEâçIÎ:EYŸ¨Ø +÷y!ˆ#ÔøQ–Û†è¿|9ü~ ¥OŸßAt/ ý0 Qz5ÔLU{Àª"Àû©ùQ¢¼ÆMOnŽDÍárxrrñ2«Ü8ðó,‰ß‘{'g¯årxyÿ[ÌîpôrY +EHî+•y)äåTý#À„ ‰Š +endstream endobj 184 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 198 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 209 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 224 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 235 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 245 0 obj <>stream +H‰œÙŽÛ8òÝ_¡Gya«%ÊòfÒI°A2˜M{,:‹-Ó¶Òº"JÝí|ýÖ%ZêcöE¬*–ŠÅºùsz¡·Œ”·Ú(¯1“o^9ù};¹zwz©õ"ϳi9¹úèÑN®¶Ñ_!·‡I„*ñ¶©· +…ખë Y‡KO©`³ZÀ~1ñ?›{“{KoºýA§¡€;¡HÿsVÞ飱ÞCÖž¼ª=™Æû³©Rc­±øÉ¡x O’Þo'ÿb5ßÝ š7ïþïÁ[x_<§q¼QA„ +Å‚[.‚5hÅ_¸íÍäç+x®è@á•ãÍ*ˆ×k5º²×ë­ž+ â0†?·ûÉ­}ýÕÓåÞ›Æ+;]-üF—6k³ªÔ¹÷©³m–šé·ŸžYàê¦Öå›7W¿¥m§ó­ylß|xÿრ+ÃøíÛ·Þï×ï<Ñáý^‹T â+àG ©)®ã%co]ì.œx‰ZËpEÞ,_˜N“hÿ +ÿ»õ—ÁtE¾šÎ7~Hw¹øí^I’€]DâÚK@þ&ö€¶Ø K“dF^ÅäÅÅŠü·‘ïÿáÅXlŠ X'AoÞJ­µŒ#¼Ö­ßVÞtž)ôaˆ†À®Ërk£S0ümºQ~U˜ò û1kr†ÒªØéV—­eü¤ïEö>³u®ÏF~i¦ÑÚ7…nîô.7îg2£?çtšGAœl¼í5([d-œÛã"bÍae!YÙšc£Û¬<2‹®„°3– ¬2Usç~8T î²ÿ³äõªÁ¼ìßG¡g):‡hˆ(ôGº‚¸}ºØø­1%oš„þ篿M“Ä'úÐN°õ݇# +kò{Töõnߥ- ‘RÖ]gÍþû”fºö»²F·<V“Uª&m-hè³®ás=mW×p96C´ò¹>ø]©H¼ +XA;ˆjÆ9ä>Û&¤UW‚þN›ø“3pȦ܎œ‚(9…höè@Äߘ$gÀÅ~z‚på_ËQH$¬Ö˜;x7­Ê4Ë3uˆÈT—IÄ0Rágæ0½N€T‡Öð ’SÃç`Àáb6L“ý2Áß[ˆŸÝša1Eìßgi›Ù/QuîTBÈ”ûŽµîÌòº3â’ZZŠÄž‡³᥮° ß‹îBeÍ·ÿ˜@žÖØ5Üc׫jÄ*ŽÎCŠÊjMlÛé&ÿi¤üÜ.Œ¶rË}¦õ ÑW­n™ Ö'IOŽ„ªt å«”emm•‚§ÉAŠýÔóçÚj±W<0ˆeœ]À‘]ÜÕ6`ŸL°&íPáÏ0š4ØÎœDÌ£.êÜ™î‹DgÛd»/Œ8ù+Ž%…â>ˆ5œsëL1–d \ÅîμÖCU9T–  få}Ehßc=e‚½U2®Ú@‘Ì¢zÄEzÆË|¸„Ò­KÄc™ýb âž5~I? ¦MV°–”§YÛá×G•¶$Ï ‹ÏD¢† +—v¹nò3S]›Á±N3)PŽ1m¸0£)a±æ±ÃÐð>«rSR—lÐ3ó'…ýáTÑÊ}€þˆÉÍðˆSÕåû>:‡…B綢9jghÚÈ좽LónOLÐy‹g?R°moJ*yñª÷2@Ì—óqšwÙŽYÍWÇSe)T9‡ ˜¿‡ñ +ÊX€‘ú<Õ¾M£l_¿ÀÁO9¥•BHãçÞíÒÆΡOþHÇ´?“’;>Ú¨Æèi|FÍÿª5ó]$[÷!>Ú=ŒE‘ñ:§ÁÉíÚ±âwøÉœºGüÌ3±<â§vêÚþ¸ØŠ6öîóÄ8¯ªv¹ ™içNc>éÀÏÝÇEi¡üÜuzf˜*¬'hh%ƒMv<Ñ4p&´Al0á‹.EÂfÂÜôl}.Íä¨ìN¶úŠ´Àvqáï 6¤q¼ Bìñ1@µr.¤á%0¨Q8äA…ß²jqq±Ž•˜#Òƒ*Ž +Îbk¹Øcb¦º³ÄËMDéÔ`‰Î ’„ü¤ŠE<™u¨$QLjd@Ey‚•á•Fa+ÛìpöC$f­û¬ gþk•i½~n\«·]ÿdòúi£$]d‹Âá¼I8Ï<*[#HWîafl¥ ›P°»ÜC,ÅDàæ19ûéMò `ÊKõò]`0™ž7Ä óx×”3FSîDݲaåÜð¼Ó;=ÎHB…6}À¸455ÜŠ:ÀÆÿ(RZD.óëÆ/:K´‹‡7Ö‹Êö3¡» ¿ØóuËëâ1w“9 ¼•´ìØI-yCy&ÏçY9µ hû´îšÚ‰÷È_?x€ŠÉ0Jæ2\]~(5H™0áu˜ûLÀ0<”Khu)ŠëîjÇJõG²‡—ö¯¾5:&ÁÈŸÑÐÚ›C\Üz_¹‰! ·¶4Øœ ‡y2“v9M"Ž‘5m L°EUò ›è¥&çæŽfR@ùñtvŠ +GC'n”L¾Œœ„ò4ì¬ãÏ,ã FoÅóŠ–±tT`^¨é¶KO8)Ž \é¥ÆnD¼…÷¢ˆŠŒnÊÍH_.H·~>A´Á¿÷Oeü"êa(|T—†¾î‡²72”ËC'Ã-5ÏŽ<¶ò´ò] wHÝ€h_Ž“Nì䌽¤F!84çcÓ»²zÈÍþh.¥S"óÅ,W²˜3‰ç|̺8Ûß)ö fªh±µÁƒá™¹'üdtŽÑ„Ï—øîÉsÌ]~§¤íÅÐ-ÆçN_1´¼AãµÄ B¶;à!#a7c²xv æƒÎ84ÖàŒÒà4.…ŽøDôðáÇ,Üì¼upt€øî»ZÏiÍô…æÕ¿–Ðq:C+Zb9N!"@^Aåì—–¸_†—RºäîW•˜mË°7/䈖ßE¬y¬sõk‰Í{']×pýaAEv• âÅŒ ñ{'ª‰Ÿµ¼p´„ôIà(fçÚ‘@pµ"`ÏgÑ+\ĹðÀ7ä?P§g“} +×鋘¬ÿÊTï +Þ|­Fo¾Ž¥äÑŽ4¢µ=Ú*…{Xö¿t4ડ„Cý§¸Btô>Anš6aÝUxæ+cìõõWˆ|‰VŒ FÃ8‚f¤¬^û? g©!¸€iAª%æå7> .÷(Ž oóµ9@iMOðX5å‘1Êÿõp&¡Jé‚„ ²€tíê*0×ÑE|ƒãñ00íƾTû.— ójýµð & + Éœ Cq3æM?è ÂíGá–[ŸÅS1E@ó²7­Îr#Jï3›v4 0΄ø*³Þ;¬ÎÐ= Ž ÓÕBš8¸+¸\#d5Bò*¤z„w qY'Aož +U –ËØÛ m¬|ºzŸÄ©¨xú?Ö«¥·mßý+|LEˆlËVŽm° =lÀ–»äâ:nâͱ[;n×?¾”ÈI +lC/©X$Eññq[Õë¶+‹n¨0Taàü:¼•avÓQ¢põ`‚x‚*ž)à áLÐ@èt–² ÒF¯Œà6ÛT]MÓQæ^föU¶$=›N”™Yy6mÏåŽ$Iâ¡I< G‰ç[0J<àW“Åõõ§Ï«+y)±À)i¤’ŒÑMB‹´+f +0kÓv¯ÌQ8À:Æe¼‘'`ÄHbèšÜe)nÕù‹(läp¿m‡Zh7]›Y?ÜÿmØG¸èášóÒ3(™£*„7½ñÆòaH³½ü³’´8ÊôÒ‚Êp‡mæYT°Ý@Ôå†.EÂó]ù&À}i»_ÔkÑZ¬ä“ë¦)óÎ /ŒŸÌän°<¤Xé$úëü/æ?jixõƒ›wWWŠéïh8+T{™åœê(Ìæný›àæÎG ™4k\mç,ÐX½z[TðŽº—‹¯ÁS( #4v¦lšâ)«l<ÏÂbGjwÁ4V6»TÏÃÚ±SÇãGu° – Ø“—ÍTÍ’ òNÎ¥oá¾ï!Ç·Êyª­ÒYü~&ilÅÃñÑë“DÙÌx'ÇžËû?Çþ£ߪ? Aq¡ÿ +endstream endobj 234 0 obj <>stream +H‰¤ioã¸õ»?ÊE¬H¢eÙE`&Çb3 tãÅ ˜)´LÛœèqÜ_ßwP‡åd¶_ÄÇGòÝ—~N<ቅˆhˆRO¾Šlòq=¹¾{òD\ _ˆ*Î&׿Àv_M®×þŸ ×»‰çzó@¬c¹a( + ø.€T¸«Õb%Öé䛳p§3ßw‚élåxÓ­<¬'ÿx‰Ç—"\¸‹•¡+ç+”mÇ/îžðÅÓÝo C(Žb.¾ˆI¸r£h)éóHÌÝå<´_xø4ùùŽžIî‹gäîTUZÅ„ïKW.Ã%ÉYPÌñçÓõÉõS¡²››ëqݨd­_ë›Ç‡ÇÇÀóäíí­øx'&ŽÀ›_D~gà DúîjŒÖ[0Ö§¬ÖûRÅ<§Ö[qo*U¦*ÕY}5•‘#îušoLbþmï˜<*ÛŠßµ>EôS ªÜV¢·º”sw!%™ +ìñšj¬ÉÐfR®Ü•A1´™ðç A¬Ó.ØhE†AÁþ;ÆAÇØ' z–1·¢ rƒ…ô97M-¦³ têƒ>1tP/š!•Ùu»5h<•Ø½IÈw¼–S鴶ƛ.ã×ÓUàäö/‰¢Ë{ËB¼Ø‰À@Ñ”E^éspZé)¸‘ç¡Šž˜ù® !§îA—‚(ç±®* î _éÔ9Âç"j<ˆó4m2SŸp“’ùéÙñ@/ØÒy1y¢0ìŠ8Y^¦D…³X¢G¢93tà¹l-£Ù\:™ d¸²lqžÅ&Ñöè S†Ž¦>t8^L\›´ry÷õ 3†ôë dØ(ñºbT¡ÊÚĦ •a²ŽZå]ÿml¼+¸ãGmL´…˪š-gLÙžU†5°G9¯»W¼ $ ‘G™GЃ½2™m5 Z«ç¡ØU­ TuÅVÖ–…"éV–ÇÊÙªTíÜå|t<˜øÐ^: :=ZBUz›M¢]B®†¹³êÒ@öè3î›Æ$[“íiƒ|:A™\¦t +á\N—NSÕot}ÔèÄpì `s#ì,e4zcis8t*­ŸiŸã·üw£“R5”³Ž +Q©:1å5{YÙUãƒ]“ðžñzÖ{ïxе%iÖ®l¥Þ5­,¨ çýPp?gù1Ñ[ðí™Ã @8ÐQ&k´sŒµÌÆ «tòšèV˜\W.± ¨z·¬° }Îc•$§ÙFUX f‘óÜgbMðØTZjêC‹¿¢Ý!?êàÍ-bsö,ãÄ.!בµvdM‰R$'6ÄìRD.R:™j˵´åFbæ׺<;94)–x€J³? å¬¸A¢X[,’k†lkIœ¶;Ê1 ,Á}£Jp¡ÖX›HȶQü‘ñ›¾!o©:åòÏ¥tvYÃ$—ãÙ¸”ÙJ&1Þ|>ŽÖ6XƒÉ¶šùžµ¾‘¼•¶ù çC×ÿ’Þ§ô³Cܤü¶ª"8P}y ûý³1EA1…r^à…Ä^­tiòÆávÄytfâséQ¢0;=Ä|Ä®|E6^ÈÙ Ë} k\š”Ú@ó-¬ÌT³BªÙ°ÉùÙ^gyl¶XJ`w–14 Z÷eÓõÂ…£’*ghÇÖúÙ@„`Ð#ÎV÷ÄÄ€žì\€óv?XpcTG»>¨Úré<›ÂVŽD@PdÁ:èKaéÄìÐÒöª%Ķâx¡>º´ 8¼*H_móÿdqqÒØŽ±tŽyJ½¼§ ¡ØÞÁÔ,1ûhÓ8e^˜Ô ¢ÑÉì¯Æ%C‚A˜Tú†t¡ö{k‡ŠÆgëj齚¸¦î ÔV£³Øî)`MLöÌ‚Á¦CÜ]ÌŒŒæ!coØgA;þ ­QTWÏÜóFeš?§Ù–Ĥf»+ÚÐ0 kÝ·&Ø©!Lß>Ò +C*øù…¬w™,f1ïÄ¥dîüñÛ§»‡ÇïAðÅc^>3z¾™#Vm¸äXÍý^ï‹2Å¢)Š¼¬ù" þ[¶æšåŸî }ŸŒ.KTÖù¬ó CÖç0·àVm—þæ:\zà®-øs—³LÇíDˆn êgâóð˜ËAx\ \lJÉ©¥›§íÑø3(÷oÄIÏKz#^€àDà¢Iy6a‡) úA6mÊkû”gg)¢ÅGuÌ57ÂMi¶{î<ÞBãUu&ìÏào­vØûûßÏ¿{´Ïªþ¿O¶jÐœè<µmÜøî\9ð/6›CÞ$[†ISl.8­UöM÷öo¯²Á”}YhëÁœm'‡®Á 㦄èÚuv=ňÝÙ„n§!¸ÓNCš¬«Ï´;릀9›–Cie ÷˜™ÖÍ‹Îè_6dÖ+¾Œö)uÒumi ²ƒ +^½~*Tvssý!†a;Yë×úæñáñÑó¼Õíí­øx'&¥êï×þŸž€ŒÝM<ÊÈ ß‡>ááâûÒ•Ëp)¤ôÜ(Œ¤X§ Iä.Ü©Œñ« k4#w.UUÐÿr¤*Sá<Æ)ß—yST,*ð,oâë¹!sF ç À"”ó¦†#OÃO¤ù–¬Õ”Lpé®<$9턨퀙ã¶{Ùñ½Ñ•oÒÆ2 ¯huTGaç;l´S5'S[dvºÄšòóŠ±$q}*4¡Sav†q?¡ƒ¦OßÃX…¾69ú»'`\h³ÕßÅH²àÜ ÂÈjíTêgw¾â;ßœïS1û0ž¶« »¶Ž’ó–Oð¿ñi›T‰L`OÖì®TŒëƒ ·\A5n•3?tÃåü¬˜ÛÙ(¦2»ìf*˜–¸¢@$Fª‚–óùÒj)/U§­Nouá–sÁãm˜"lð†AgvrñåvoïPƒ ø—m|feê¸Q%†ÝlÕ6(€EybhÁÚΖBËâ^°êºô¿”†}ı½úC¦=:›Ò†W÷ è7h®]&ã‹ö÷VUM7ƒ#žGs€¬Hþ" ÿ `ÓMþ+¿«íØN^¨Eò³yÖGSÑÄMa䥆f ÆÓNß^iXŠò y4ê…€è'°z~æ[9- ŠE¶í +½¹FqÜêÊì3S­°?ö¯w +‹zMÿ7ˆ=èË©ë›{LaÇ•€;,<¯C¢HçŸXºtMèÁH ;~a’„ E_š"‚°Ÿ"Û†a-røé:ñeThpdp®µæRZ ÊŠýÏ:hò‘P…õ°Šº² ìÝ 9úÇ°c +¬m`hì +œnôxµn¯ìsþ³ÀÊ{Ê)lnª†ÿK¤“åÝÈÒóxRÿ!½ZzÔ†ð=¿ÂG*AŒ×óªê­REoåbh€¨yl’Õö×÷›;¯ÒÓ^°Ç±ÇfßÌ—2ïÑâÏHë×”rг3 òC2”–Ä÷¶.¹«À +9ƒðHL\ÃÜս‰{DŒÙu 5ÅdËœ§(6†ÖD˜æ;µFÂhO‰( #Í(ö.+NFXˆÇ!S–39˜fl<å\ÖÂYI÷$‹ô~È"¾ÏHhxá!ßøÁh©õ¢£BÈ=¾ötSNéøo)+£þÄSzvm“NOá¹Y-S6’Ø‚Ä‹hÑ#ä!/Í´Å¡ÅŸã ·üË!­1úÆ¡m<®x¼‘Ɖá`TÄF`2.avˆ¶ío¾q!=©«Ç7\ÚZÜDvÏ®’÷›¿˜|…ó–=hÑ„ž±t¡ß‹ã’lÙñvñÚž"Cã½õydùuvá~zžÙÈ¢XÝŽIˆÖõ'–¼nQF†ýY¹Bý¥÷°•\þ^± øÌ£ïç…~‹ŽÅ|¬Y$³ +œÛEˆ¡_y8~Š§›Zkq¤Xxp“ϱq‹è<A^JP.> +®‹Åˆ¸xn+ ÂcqGÄë~CaW®¨%8T¨·[¥nŽ :oªGÆ ˜ðs—îDÓ@whÞeUœIò(Ÿ …¼›âc$Ta#?Vñÿ…¥ûè¿få<Œû$Â63ô fqÊ*T{6f(—X5ÅèaSÐQBÀ/6‚Œ¸¥|E¹èÒ\ŽfeWå›ÊH‰2HyzÞu6$¤ìéå°VçFR͹Œž¾`áÚŒ‰Ú.~žÄv´Þ'Ì—ök­‰&ICÇvëÃ:–m'ôݤõ2õçïÑ·ˆ¯>¼|~+O•ÙÄ»¡;l¼µ[«ÎED_Šh…K“g¥cf?â*È´)nÑ!西4è%ViÍöÞ™žé-·è}V3yÛo·Þ+½‹“ĪgĺªSÜôW€·Ô7– +endstream endobj 223 0 obj <>stream +H‰”WiÛFý®_Ñ© ¢yˆ¢¸Ävαm½Xô­c’­ðfòë÷UU“¢46‚õÁîê:^½®þs¨@mÂH¥Y¤Z³ø·j/w‹¯î•w*TªË›Å‹ï1|è/váLîö‹À¢Dír•ú‰"!ÔF›­ŸlƒŠ"?K×ø^/¼·æd*µQËÝ| øH"Cé½-›úÁtê\öeûƒiÕ¯­ÍM×™ŽöС¡;”ôXÒ·»Å?EÍWw¤æÝ«Ÿ¡S¢Îj­~R“Æqù!)û¬\û[h%ÿ°önñçgð\Ñ™s“ã,õãí6º2YzG7Î +ü8ˆ±sW,Þ{¯_¿Sº)Ô2N½Ý2]{­nº²/m£+õãÐõen–ÿÙýøÌ/ùê«ßäý «yì¿úîÛヒ‚ þúë¯ÕËׯ”ÓáÛŸÐE-Œü(^‹^³š.Ôp^ríyˆ'ƒ•D¤lp¶‰Ä`>Í¡ûÖí{ïmüå* ½h¹Ê¼€m¹Äí¯$Ià'q«ÈÏb…¹uF!Ù/’5œœÆÅuÊñËÜ?G1ð§£Ba±Mü$ÎT¼^û!…Ö')Pš†¾ì|ùÆ?v^ ¸ƒS‚8[«4Jýh‡ä÷^Ù(˜¾Ž¼z¨úòX7<ë§îK×ßÛÖõÌ£®/kîŸ\çØ.ígOeQ6ãR,´Oµiz7aGÛöCä˜Î§Éhíý¾Ì°t\BH»’È¡ðV’’«Ðì5Ô~hu]#—OóRCÝÎT…­©—[ËÓPH÷¦ ©ÞÒÿÝÝ;ŸÚÝwT:ÿH­Ý?Û|óœæ¦2z&e?´LèžÊ¹–»/ \Å›Ù}YæuC~žî¤íélêˆæŽ)›Þ¹ +Ó¤ µ‡¡¦ÃyeùpèÝv}?t¦ul´7R+ó×°Û)`ò¡-{‹ô¼ö#¾õ°I ¯Dp+‘Ù¹½¡)L[—áÑq¸¯Êœ»{MLH=Q´™$ƒžpßÁý0:3L'hk-‹uÕYŸëÉFR`º¾]n=‰‹Á£ù[À¡¦x£·—`悶­÷Á»3²æ €vǽŸl1žGúZKæDkdâøg3²¤K+Ï'Üj/ n–¼÷X'+ª ¬3±‡ÞM~’û‰4X¹sGˉ}ßØQ+ÊA­ +Ó벂}pD>ta?²]°ä w(êÞôgc5Ò7!ÿÃÒ™úù{3¹¹ +ÂP($œd¡“$¨/í£Š§{$Íÿm‰ä6}>pÑ„(0e +i~…ìØ/>}Õ~J‹Ì1µ¸'ý( &†á&&û-kâDÒÝŽUH¥úp_µf¿\­=r©ôÜÉ åvhúüDƒ~ºçTÙ©“X£Žã¯z»ŒÏ¡ŠòÅI±[g‰ Ö<æÕPµoÁJ.sæÉ ŽÈcjÏ«˜ŠÎæ4"|,“XíËWïo`Q¢Ö´æ 1$öÈÍãµ:ú~-& +fZ²;™¦SÀ“Ëín({z_VMç–Që ›‹BoæS‰ |%KùEY½ +p¥irC+Hµ¶ÑT8zŸJ+º¨uˆi¡Û¢£€ +-:F$d#${ÃÉ€¥¹mŠ!ï¿d5ˆ@ÑÎ×­à6Ýä%¶`ÿA¾‰¼Mªü:÷„14Ý'XW•Ä¤5Ý1-ïÁ+£ÅU¶ŒJ[±Ÿ·æ`-¸½´C§ò¶Ä 7ƒØ•6ÌÊ“3<Ø"ÂÏÐâd0Ôê^wКÁÅÉ09ï¾5œOÒ·Ä«XEƒÈÿË@E Ä°3‚øwˆ¯ % +p“o½“¹ x7;ÆGu‹r¨tËÇžÊw;Fàˆ»Î-&_MU~4ÎÓ8FT&;Úqéªl?‡üYâPq€[Á¡l™Š% JWWô‘¹v"% ¬rJž%¼y¶CU¨=‚¤)gFl\¼'jÔG]ŠÙ3.ÍY³£ÎéÎÖª¯:fn¢žçÝì".éMàDœÌÅ T,7¡¢ävñM.¡.té 2”>¤ÎŒ`A€X1¡«KÞ|Øì@ nÄÁë$1§@ þŽ‰:®˜â`oT“U'pŸ­ë²'ñWœs%ìÛM1ÂÉá~V±_nªTž½—Ò(Þ$~˜nÝ#ï G¿(czóØS9Ó u­[dY!T@'üòëÞ©wTÛoÝMÂ[éEpÞW“ˆ“­NâœÔàN`!º½†¦dý$EäYò¶(°ÅW˜A¼iœåãtäT÷:¢J¶â‹;$ð,î¸í”„2§°Û91ôîâo}rS—›•?ÈÓÉŸ +®ÿ±^KnÂ0ôÎWpÜC„qÒc;=¶3ÍLÏ$qf46›~}Ÿ$˜½õbdd KOÏqÏüzcdö¥²N":$THÂ’X|î¬g TR Τë¿äÃ,*9~ÁùA(F3O˜x:à$qRá£ÈôÔ×_ê‘‚Dw2­Ëh8L<\þæÕ®¸vv& +F<ìG~!jàCi©oð‰‘çÌS-¸Çà ¶»x9"#K–G +L¤ämã4<ÎyÜó(>*w<æ<¶J®•¦Q>s%ßÕ÷¥oÕ*¢öWL¼‹þäâïÆ*/S[½Æ46;eU(ÛBù×î&ñ »¯ÕÚï~ÛIÙ¿«·b[ªµµÑÌäà“M”«…’„T÷C[wï4Ææû·úr/íá$éÔ÷øú4?\¼NÒØøâyöoøÌxÂÙŠ>W€ ®7#ˆ0úÎõ3ãëÚ¼¼ +¸Øû‚Ò)LnP7@å¹ú£!²L.‘tãÑz .t};‰Í a|Æ“V)meë–§RY|m¼ñʬÅejTg+Æüðú1&¥}·%ã„ +j>Ýé˜jøRÙ—AbVì˜ÊMNPã—Çœ—÷>j1Êup.o]4M÷ vÀ†0>Z·9w‚«Ü à{«¶Ê&³ìŽÒè÷CÿŸ[Ö ÖDŽåš~±¾×J2 Ž »‰T±I£ÿi¤‰nµ¶ù"J§Âm­ë› »zæNíè|î3‚ÝÖµÁ¢ÆŠmç7‘ÆΆxÉŒçü=ží™Ø/„‹ä”½ñ¬)PC¹È` ø 7|e Þ:zÃíϧq¸ð}ü +ˆ™…;²u­²4\™E´Ä½s¹Ž’tf8öðfƒcp ˜ÆËÐà~ +Õï°¾nõÍ8¾GÏ ,/^oÄŸA‚E\P™K¿~ûÉÂ= ®¡»â…Ùz­W+2ÌÒ8ÜW¼zV­Au/“MXúéÜÏé£28¯ð¯üaÉr‘zËÁßÈþÙûaÿ?zWÿ‘U7 +endstream endobj 208 0 obj <>stream +H‰¤WYÛÈ~ÿÀ‡Õ"På¹Ðw„³‘ûéB)KØ5Ï9—AáàÄ–©w‰ðëÔvÌŒìRQ„òÝã(€TY !ÈÞü¼ÌB·nŠ=LÝŸTõ‘“j*þî`Ý1JQð÷ûß37JÆH’Ñ]'\¯é)¡ã T»/H¼0±Ͻ=2jç{(û¶(²ÄÒ…Ä3ï羉҉GôdÜÔ ênº©>V†ˆ\*k”¯ Z¯G_‘l¾oì‚ BœÍÄO“©ÓÈÄÒ5W퉑ƒ¸«´{»‹Ö²ã9“&¾c ¶FÌáþ™àæ„{wã׉ë^ŸuµçžG-[jfG™Ûp dlž‘8ÍïV¯µ„Tk‹¢D{~¶ uä{›5š µˆp}£Û¼È‡ë +K5Š|”Eõ6uÿAÁLqš¹¾¢Ý±D6ö†þ3³ÃÝä>¸ ìÑZ×fî¡'ÇgRõ2÷¨«:çꔹmß°¤ñ»‰­.š+ôAmðjJˇºi\R”¸!HXæ£LQ·Þt~ÄþE]ÊÓªîœE‘Fgئ=é½Ç¼BnÌS'Þ÷T{cÀ·£R]ëZì+€R ©x¤•©ô÷ÞkýGZCS¦—Š+‹*Úš–0ŽnЭ´ÝCÿÎuÛ*cÑí¼®ž*'Á¤$û ÑP$Öžéi™´´ìÚ%Zë$aò¤«^;U&ȸM5f×wÌ2‹#`9/\.ŸÉøUº{ƒZߎKJ€t9 ³.'$*Î…ñ¾Ï¥Û¡Xðú }»“Åœ) ¡Å%YͱI»l¹q´q¸£ ÷¦£8Uö•8…ŒpкbP:¸Qu'§>|ùŽÕ‰…‘PÔR0y)´>âöáÆmkºT<žª6rÀg¬Gûp…ºâ«aE¶`›Þ a:+ú½]PJʸµÏZÜ316\Bwƒ‚÷ ‹ú,†6¶÷™q’¹G«ßcÂÖv»f8gºÓ5wˆÍ|†˜´¦/è*4M„6…€|ĽïŸÔ,_fëÀ·ÑoíØ,ŸtÛIC ‡º=Wþ)n+÷µelœ¾‡û1‰æ¼˜M _–?ŸL!—‘‘ +Üv_‡žpª&dŽƒ'Ý7õ6Qö¤ „þÓdíI`øâÀ1õ øs;‚§»ãUYóØî»á׃¨ÚѺb Aë»yƒ<ÉÉWvŠCwagªü[U_PÏÚ¦©–J.¡lçìÉ«ò—0 …Иã‰'V{¼µ lq„–¿uÞL+ÊHjŒÌrc>’N+ÂrÒ”®ÓÑòf&RÁ®%LMw¢…è ô;=ÚŸ\ª€pµ%dZoiÍW x„M;Àm˜Ìõ~ZR`Ò›©-ò¢‹‚à´Ö×8Q~¥F™hÉçúÜ[?y×lôí<È4 Î̉ƒ5TÂ`Á³HŠK$HDúÆGä;Œ~äoÅß–¿ÍïŸÐëÉ)Åß‚¿Â³á¯æïa²_èåõÏNTã-¢ £U¼^Ë-l×¢:^Ydê7¬Ùod~[‚ ç÷ `aJÓ@•&’ÛsÒó6”ª)ÇM…xâhwU}¹ÓMkÙb?=j&Y×a’¢4 ü51Ü©QðdÐGJ]^‰n´ï±EßÈÉ¿ãÏ’†Õ<Ž{YUÙ˜•‘[nBoŠè»*8Kš4Eqa«ËÑP +öŊu„¾°Ú¯–u«óèqe2Eá);‘…9Õõžb”(â1 ª@?½üT_ÐãšeÓhûô- +ïÊЇY¤7Åž±³VüÖZ‘f€€FöJùçJÖÖ1ÀŽR˜ûsËËës'F™z’‘¹@!k÷étÛ‘‰¤k½oŸS›ÏQ«e€ÖÐ1Bq ø;TÃËö±ít9ÝÆ×ä[‹:Ô×1üÐ¥¬Ëãaܸn@éú!tâa¨AE.m©xn2šJ¦‡x)c!xWµDnyyî1ÎçŒN·ó3gÝœu×Kd`}êKòIá&r­û~òÂP4mKˆQþ^ûž4™TÌEç@j/×åÈv0OÝí2óé}Øšá©ûµ‡örØP—QTÙE̤¨ å*y¹ÚßX?™ÛqÞnä ÅBâ>( Ã4ž%ìûĽ¨GJ›ÄýUâ“òl°­ÝRhµç”ÈdA‡À29îxgó\pκ|HõäèªÔXw@²Î"tðáRe†ÿT˜Ì°­PzæÞÉŠt1àf~Óöhw2ûf.³Ie§O +%aâý¢K(‹àë¤ý‡6º«ju¥1v‹ÚÕzØm‘‰ráðJb[HõÚ"“AXFœYu7‡!óç ²lCQb' d²’im’'Y”ØA žì‡ñSÖj×·Ú\w¹q{<~˜BS‘iÛa^K¬Rć‘k¬0ͳbqªô<<öZ=ÔÒÙü`h¯ÀƧì^ÿÆ䥂£[3œ„úÎâöµL˜ÔÝ°KZ'1kì¥@LtxzW0çü—q‘íðÒ«¦·m†Þý+ttE³>lÇ»mÅ°Û€ÕÃ.íÅ5Ü$@{‘‹ûõ#)Ê–Ýt—!}D¢)J|Ï®@É© +rÎQXŸ:vŠ³]EÙ.cl™gXÙeLlü8æ}3cEü@‚¸äE"thFÌB«Í¹>Á-x6žœ¸Ÿ„-ÛiFÖ¡ 0ÒKT×\8áŽÀC¬p×*•<.’p¸?xÎl eÖ‹hè-Ô¦9‚PûX#YD6DЧT„6Æ]Ÿfü–ݸ ¬Ußäoþö-à‚ˆLõÄnjñŽPN¦¿n”Ri7ú:aJ¶sŽÄ^ä>xøÆðÚ‚´ß %žê¨äàA²€ÉRçÏÝlp~š +Uh»×ÉkÎ% ŽÂ)ÈDs½ãîËžÝäå)xökTƒŠ™8QÎшIz# “LYЂ ‡þùêzìÅš…‚ý‰d˜(ËÅCZwøÒ¿ +ô%„ñ"5a‚5Å}úIÄ·&nÞ+‡>S-¼jÛi4ú*x]ìàÌ,1qiêFä`^}àBe¼¥\ÁvhÜÈ»ÏüWÞõþKNðè®FÁU0ŽN—݉±U¹êMx§-3‰ÃLÄ“Š„ït<´Lú&Îùéþ™Žaæ¢ÌhÄø^Æ÷#qU®3§êÅâ:Z|LJ}x!õÞ5J~ìymX î~°VkÃÀÖµïà6æ‡âS mÿ|bÏ'€á´íÐÖ#é&ÜÆÛx=Ð]?°…—$&rô¸€ò„íÄe×¢úô|ŒÁÞ ]ëaœÑSù­çò;â”@B7Ç.æ ~‚dé»Q¶Ri€Þ ~Ü5&—º,JQæ27V’T—«¤T™ô»¨c¬‚=ùV”Jf¦(pÏ}J‡;¤vA;0&¶@îNhçÅH£!¡ÎØ<ß©*e±µðeH£ÔƒÇm‰Ö ôD¸öœ|ü;GþfÞßRæÞ_êX#‹l[‰\©Œ®èŒ–ê)i«ŠK?‘Mè/5Åÿc2üëëÏäGB­o¿'¿áCÁP…Bë¹,*«E{JðŸS²1r[åBKm+q ÃMã¢c²Oê`3Û5™, k‚]3Û]ÙY~eŸ<½ÿ6³pŽ"—™JèRVU!r6qéàK!Ÿ¾Æ +endstream endobj 197 0 obj <>stream +H‰œW[¯ã¶~÷¯ÐCäÂÖêfË ${ $iºk (6EAË´ÅITDéxO}çBR²ÏÙÚr†"‡Ã¹~úsq°MҠاA/ÿÚÅ÷‡Å«·Ÿâ 4A¦l¯~öb¯É¿cX<œq§›àPE´ PÎévmvñ6HÓh_äð½Y„?ËGYÛ`yøƒnC(2A‘áϪ}i‚«ª@•ìƒßz]Jc¤Á3xib/Å C’ôþ°ø;«ùöªùéí¯ Ó&¸yðKà5Îöi” BY”Â+óhZñ¯ý´øó+x®èLù“³}e»]zóäÀéÞ+Ž²8ƒ“‡ÓâsøîÝÇ@´§`™áaYäa/Z£¥[Q?fP¥\þëðÓ3 ¼úÔ‰öõëWß•Ã(êƒü2¼þðþÇ4Ž³7oÞß¿{XÞÿäÌkI¥YÎ +„IBjZWƒñ6·Þž»Ø?xlÒm´ zð~›òƒé6-p.OñÜçp-×I¦Ëõ>Œé-“ߦðÚl6`+ql@þ> `-ߣK΋MF.2òb^ÿövü?¼èl‘ð×$Øm¢8ÛçA/+ +X€'}‹å:Ý„™¥“ìŠäG%‚Æ~F4*5-&ð^ͬ*±("¼: Z²Ø°:e'zÑç×IZ„g]ŽŽ>©~™ìBYõ“]Ò­% ¥,e÷èKKafW)™*Z}­åé"ÙNÐÙªTc~OÓÔ T—j0+~P¬“(K³àðô%©à{#僦©#%ô£:Iþ®&X¹O–ÄðÄžÏV¼§}cÜÊ“]z”´×ŒguMs 1ñÙ¢73cYñgÞ\éѨö¯b€*M_IÃ=˜{,éñ`õt~·ÜlB–ªö¸¬@¶z”hz/ÏTËóÉ ý2Ë u’ (q¨p š9 ¥=K›¥?+X€£h³ò'ZŒ?{wÛ£ß|ÂAÞnž*½¼‡£?Ö~ó^:KìÙ³Íí éµWþC}«Aëõ£5ÒïéVí)o?Ú|ôw´žú=ζþþéµwV~¼•6=¯ñÇl9X¿6°R¬4,…a¾OXtxó÷”%• 9ÂJŠz¨V|Â<••^OÉd±GU«A¸ìuÒ|ÚÝGÙÊ)9ÿÑTÖ69© ÓUbšL¼ êS#ìz§k}y"ïó{Ù茈ûÛ²š¨n<Ö˜”¸ñ¾îšâ{T{R ´<½TcXë³­+ÌÌ;s­¢Ñf`J5îÑZVÖ®ÌCÕ`~ìyQã¯öN¬ë“ïw >k™—4o¤À͘pgš RÖã * qþA@3DÊn»ð®’‰þêì|(°¥‰Þs¯_C„=…ÂjŒ"/PYÅôF<½¤'zu|ÌÞF!Ε]°í̆),pU…àUÍï¡ýýrŽäàT{'å¢eßZgoËê´S V<ÔÓF ÓNTè¹Ú—ÒR’P«±-QÎl@¢p‡€=ÃÈŽ¿æÛðŸK/úvc|à[)O,ÄûhÍÁ TÃ˹]å4Ý·#9Ήg[ùRÓhgaÒ²Ôu È–âino¼¸ ?YÛ/p°’=á;àfÙ«è-¡Núj˜¶‘4o0©í)v€/6:pƒ®e[ÊÕL³«k<ÕÕ[„ÙÎ@¯Eo*ÕñÂk—±[©ws=Wýt@×k¨âV|YA¥`Ƕ/QÌ`ùWå?˜±»‘õBCõžƒ‡äR¹3’öM¹Í朜cl=ñVèbñFî€>’%D·tÁ R+éR<·-Ö^õâ¯ÔQ¨Ôí* %,F‚‹; ÙhÆ›ü*0ª®a½ª%äÎЩ´{ wK=¶FÚ€Á›žW—·³Ë‹çEÖ¨ÄÁì+ÂWöI…†${An{̶ÄñS× ¸µ$Ûa­ í‰ÙÚ uÐ!$cÄ—döß5£òÖ~G=LžzqåøfК 3ˆþÁîå L$™:Êá*±Í‘ÜZ#ÍíeS¶Ì4ñÇ|~L §°0¤[Ý®yØ 'ÊØa)£1y¥øØUâ‡&±b!ü#?º +ƒ¸dÀQ™bÏa£s|Ü&!û<ˆ3^xq&1Ñ+ø%´¤ØÉÑl Äq´¦¦Aر² '5Rò‹€(Ý[œ%W3⎌T‹nOÏò¶Bþê›3G>²ã°–ëñR1Ýê iKprWÓ ÄÙ€ðvE†ì‰Ä­ý^‡(ŒŠL4{ @CÎ*nb‹W\rÞß’Âùº¸oÈûwº¬ÅEø‘½¨ë›E(›T*Yœh™ÒmýÄ6+~V¸°NöóräÀ!^û=hÏ3bQ‰Ò~°Ì:¾f ”Xôˆ2*é´ÜÛ E +á[ídßIèAƒÆú<#Á¯:À®ø€¶øÑýÚáÍç}á‡{Ø»Á醖yc¬߉Q¬Ñ`~ø¿)ÈEðY¬Sh¢Âñ5~¡• ÔºCGä 7Ë8TpÒ@H8j“0a_‚=¢%”‚˜"¢áç¢Äï‡F¥ ¯QZ’0+… «w¢5Â01èÐ裲¿o9!é !Û&ìŒ~×%œí0<•‹][>(08‡q™Õ²Å@™3迬WK“Û6 ¾ëWðèYk­·tm’éôÒiãæ’‹"s%ÍèáXònúï‹eHÞ½õB‚¤R ðáC+Þß‚]Om9»XîZRØyfÏ…5k}ëK¹Cj{‹Ìž¥ÜU½ÆªZá )÷¸,OÈ~ä® •Ü!g˜å«ñMb†Ç™å®†KL㶿kÍžðâgH©§A>‡šßf„±ß”)k« óƒ<³ FŽƒ¶ÒõE\f¿|X’þøüùëÑl14Hý(‹A=øâ.Þ©¿…Ó;ÄE4årÚQjL™æÄ»/¯Æ¾­hðUßïûƒÏ›ÜÏP¨È…VdžöPlÕæZ'uo_K4 )Dƒð{rw(Q\¾¢ŠE|oa0š®U#¢Ž+w¡%Àß }Ùý¨ëHà§Úƒ:´º{ÈþüüÕºÑé@€|ŽÿÒ"ò‚tÔö¶xŒ`¸¹¡h/¤Ã%ÜÙûœ‰lÉ¢b Ï±ŒƒŒ¸w&ôÆ÷&3!JÙr(¬æ‘'ßšVJ”Œåî ·~œ¸@ƒÙI*B®Ô6^qr‹\ +<ÉóËRc¥ø?Œïõ“vÎå·_¨c%C°t[­Ü*×Ø’—>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 123 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 151 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 161 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 172 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 183 0 obj <>stream +H‰¤WÛŽÛ8}7°ÿÀG{0Vt±|Y’îô`Ic¶í`¶ Z¢m¦%Ñ!%»{¿~«Š”MYv0À¾È2ÅË©ªS§Š?! Ù4ŠÙl3-²jði5xw· YfXĘɪÁ»ßàïÖ Þ­¢ÿ„0¸Ú  œÄl•±Y¦ w¡—)<§°U‹ÅtÁVåà_Ãi0GÑ0ÃpôïÕïƒÏ«Á?oÚÅs–Nƒé"aiLˆmcWÜ-qÅòî0¤ìÈ&ì+¤‹`6›³8 âÉŒM‚ù$uOX¸ü¸agHÈ#ö‚§G&‚)­a,Š’ ™§sÂ6ƒmÁ°aŽVßï–{^½ÿîcV7¼X‰×úýÃ燇8 “>°O÷wl0d8óóWxÅ¢“ã}‹)´ÊÁYÿ¨j±Õ<k‘³{i¸.y)ªú×Q2²{Qªµ,äÝ©*Æ«œ= é/Åáe ¸Î ;{=I&Á4IÈUàÿÓU—–ø>K’E°ˆ€¾ÏX4 2Q®…fà£9…#½`|#ˆî=?ŸOÙ, +’é”M¢8Hg@´$‚ßütsË,_º<²öDçÐÎâ)PFˆ´ŸÔ+EÉ0¶¾óxÃô¨ ×R +­9Íü"T%è-ãƾ˜ºÉßþN¯÷÷Oô++ú©wnª‚  `¯5ýWú±;îÞÖZæv¾–ë¦â…ýZåÞ¬Z7õ®ÅéÐ"[œã(ˆg ‚j§e@NìÈTYJcàcZ¯ál£'.ùÅ~ºú³G\ºp‘Çß96Igl:Ÿ‹IšZ—®Àæ½25œ\mFãÉ°YÍŒ„¼Á +Üã\jÝyä†åÒÔ²Êjyø½ÞÙé }ˆnÝk• c( p¬:mÇ‹Q:„èŠ4Ѻ,µæœLsØ÷Èpsq‹°£Ð0Xî éÉx²k>|cY¡Œ(pêã›È,x¶c +Î×£Ùdhs­EÆàD>úxÀkÉ,ˆS—ûV$N »o-jd[¦Æâ¼!ªŒ6\ÃyŒ3Ë€s<é\Î2-K‰öµä >0_Tùœ¤û ý¸Eƒ´ sødßÖÂ#ÖêôlP¢ºØφQ@•¦€àñí":žˆ^!œV¬Z*ž"w†ÿ<\=Ý=¬+ÕîU‚)…¬^Œý°SGqh½=[·!Õ%BI,y. +õQˆŠàÔGÕr€K;¸'/ä*kÈx@öšgÈŒç¿Y×ybLfä¤ÅçpÇ.„QzÂ`•Ú‰t.¸Þ¶Ô1M†06MqÉ|k㛀8¨R€¨Á50Ì4¤­0µé¦BÁ³$Ï2ÕT5}ÁBQ¿¢ÔóÎÚŽ#M*±=qÙ&3e¢mM!Vœ€32¡kˆÅëh·¶ßxUë§Ï—ÄK—Bô¨ªLOÎ +ÙK¥Ž€@1; +¸ˆÜ5æ µ«ÁÐÑëpëLR7ub.>í‡Ã¥‚#rI¬ÚȬ)j)<<]¡#¯{W6ßÁh\A?Ç žQ˜Zñ$õσx>Á=§á̦±Ÿ}”w1£¢ÅbLÈŠ&”Â@ŽŽãw ŸS@l‚vûºe§ñVêòJ†@ˆ“yG_èdãö°X‹¢Í?È{U4$­~€÷AC5ƒì}§ÃoÏ#$õVA’Vçþ…³uÁ« 6/+`ñÛI*xQŒâŽ—ÞHÖÃàóÆ' 𸫑]öý&*¡¡¹Ìp”<¥â{΃l +ˆ«òrÓøÉ }MVpYBó`j7¥ÚvEýÛ£'Lm]ékª4¨V*ï.mÓ Õn +ë™:H<|mËM#õ ÿQ5Eu5È]†ê§ý¦Š: Ì~Yé"WmE¥28Òæ¾]×Ñí]mÖ¨4õš&ÒUf„–ª1í22ô +·×(ýVö¸SpÖ<ª1«VÍvg­¶í¤°EÀ +-STD èfR€ó +Áѻ׫3DZ(ð·Šç•µíÑ­¥¾^ xa”ß^å§&£ûÍS¯÷#Ÿ0-·;°êü5¥3_`û%`u#™ü$V'yY\Ikã­*½$Ë{{úénG¾ô$]ãM8zú¶¿m_ŒEOø}Í´#_½}Þ¼ñ˜žaïécó]çïùórqK·ûîm<çü[n©cæÙ¸÷ÖúºXôæûs.õòJCùô²RC;×½|XulonØ­©……ÞJ㋽Wµ}è© ±ý¹SáG»Ó‹{Ð΋¦²M A‰ê«7ØŠÜËŸK€vÛBPcw=0r[á_w.åêºùÎÙZÕ*SID†QÐIõhvÊõÕu.Ùõ ¦yåú[ÝìA~¡ÅÜŠBW]ð}þÃ['Tœ~ÓOöº›-¤ýäê 14ï¢åî'Züh ˆˆÜyû9ŽcTj@ ®…ª…Q8^¸¶.¤Á)€Ñ5U¶E,E¹F!ut-âEÀd­åA`œ€Ú —9rÓì÷&‡Êï~â\CðÛr/2 îº#løl“d›¡ â{lmƒÜr)Š"×B Ž8vtp·ÒÁ/\ VÚ…Ç„|Z‹-Þíöâ|ÝkÓ;¶†“åîd!Î.ƒ Ý@Ä!=JèÅ뵶»ðªv­ÏZ5Ô¢I}c¯ «Ö°)_¢¹áFdtÛ:Ý÷ FÞåË…íNw¼Û žIkQkœì j†.iÞma•ÅHšòDTئT$‘ý~ä§TüX@z@æ2ÕÂÜHhaÏ7ZÜ°ÑZ ¼Ðu¶ÖrÝðUçfÈëz¶Ô·ÝR†‰•»ðçO [¸ö{\«Úi/ë½uã©2•çr‚ŠØ =¥‘i2¬x›¦€…^kŠœÌ‚êEˆ°`|õÝ+­î›ÛÕ²6Klã  ]§ÜÚÓJ®¦­ZyÊEš,°Ž`C.ëÆF°´Bë‹SK&»ßóñAÞúö#“ÙXÃÒ=4OA@ã)•©Ô÷×xw”¬\`FÜ:~ßhH"qÊfJгRPyi/9k}À>ؘÀNN`­kÈ0ë’+#[Juª¬"Z‚<¥¶qGÀ¼©ãÇŒ<¶mSþ„¥5±ÉC õpdq·( ØæAÔ›`9ÇXDs­´kÊÍAÉ ™6X!xÙÚ—ï¿I{V6¶ÿÙrÆ`8ÓÃØ šçE”lé+©9©Ž:ßåÍ +zdFæÿ‰Õ;ò€Na†v=§ÁÆÔt8¶m­0Ι.*siÂIÐÂ]æxUyÿxÉÎ¥Ç'¯êK&ÝÈûæ[ž½Áâ> endobj 179 0 obj <> endobj 744 0 obj <>stream +H‰\’ÏjÃ0 Æï~ +ÛCIš¶v !PÒrØ–íR[é‹cœô·Ÿd•fpô3þ$¾HNÊêT¹n’É{L “l;gŒÃ=W¸uN¬3i;3=NñkúÆ‹“ëyœ ¯\;ˆ<—É^ŽS˜åâh‡+,Eò,„ÎÝä⫬—2©ïÞÿ@n’©, +i¡ÅB/mzIL[Uï»i^aΟâsö ³x^³3X}c 4î"Oq2¿à*8ûï>ÛpÚµ5ßMyFâ4Å€\2—ÈÛmd "ße‘1 o˜7Èj2kikTÔpEuÔŽyG¬˜±fÖÄ{æ=ñù@ÌÞyS'æñ™ùL|aÆÏ5ûÑäG³M~4ûÑäG³M~ô‘ù›ö赧,Ÿ³1÷p,ñ)ÄyÐ$:Ï×â/1‹¶ø`Œu£. +endstream endobj 743 0 obj <>stream +H‰tT}Pgß%É.±˜ZÖä$iw—ëXzí…Ö³3­w§‘! „@ù°‘DÌñ.XljŠÓ‹˜Ó"Ê)Õr¶†ê‰öbtÁ…â‚[µ2Ê Å^á:ž:wõôœ{–¾Ìô6ÑÞøÏÍ»ìûñ<¿ßó{~ï‹cÊ8 ÇñŸ§­ÌÊ(|q•³ÆçlpUÚóœN£ÉUµ¾!Ã]ç0¯­‰žzM2à’NHˆC¿Bo~ïÿ~±ŠîÄh¡;±ä…¶bÿ- ä3Öüõ\Øö$|ªçi271»-Ã]ßä‰&dŸ¯ü»hÉ’—Ù4‡{­“-hò68k½lv]¥ÛSïöØœŽT–M«©aWGÏ{ÙÕN¯Óã“WÿGuyY;Ûà±;œµvO5ë^Çš\uz'›–ÅÚë/¹=¬KŽõ6®õº.»Çåô¦b.l.†-Ä°Å8–å*°VŠa d!0¦ÂžÅÊ1OÅ#qê¸ü¸ÃŠxůVL+qå|eòcåMU’ʯ:¦ºE<ÉjäÑrŸº¤˜Ò&¶[·¸ûv|%9z¨}èœþ^©Õ-¼tŸÇ‡DC:XN€£æÁ;ðN1ÌC-'D«öß°ç2Ñ&ä·d"–y–Ѐ±Ó×y8Â'ÊÁˆù"õ`H'Âu˜KP‡*QâN&dÞáüýºýž¤qÂÓýÞñí'‚×üâjû±;>DRî8:1¥Eö%ô\Q(Pß[ôŠÑRþƒâd¤¤?3‡OìKDè+Dê +5!eJÝZ ò.¡$4/}RÒÔÔßÁ\´^Ÿ’S±ˆ¦¾5–ŽÜdºr|$b¯f€tSc@Ëç`'ú©Á¥;ýù4MMLÿ¥h1£¹àÖppß \bX, H ú¨“ÿ‘ÔÚ‰ž“cüqoVîæf{€FªjÕ·ÜW]©)’ëÿáåèAùšÈÂð»}»ÛB;÷ÒŸm$}Íû \$ÿZù9ŠCJ[ÂihE¹Zªïç%…é¶êÈèùž¡ƒæþðÑûG÷¾ )DhÜFŸÔÌÁëð‹ÔÊ? ã êÌßBd^G¿ã¼Ôgoƒ rŠn#uvEUÁ&&fB˜-ÔBñ`ψ0TƒŠQIA9¯°Jhà@Š†‡Eð + +¸ +´©ÍŽŠ;Í üáߘèÙdyJ>>•^ ï¼IËzÓeñÒA‚ßâ8‘c°”Ö[ÜLP¶æU+©ù1oŒ>5ñù[mõ–Z9u*%÷^*ùr³¨ÃA-ʽ +jP_¸¹`ʾ…Ô[M‹:X:0|ñâ@~T7[þªU¶á¨n+eà B ˜ú2Šú qôô…¶=Ûƒ{h mݺc«!÷*KC”jï×fR‰&öŘ„rú|ð¶ö¬ï`m™Þ²¶*'Ëõé5zŸy#‰ø +ÀA9pñæp=—Ñ%¿¯Q™÷êÏvõ^ü¤n%íö“ÿ(ïOY”µáE]kÆëhMò6NÊ~h¸i튞ÆÉ÷‡v¶ÊN{oS 08šöEé)Ù‡bF)1ËÅnW÷ž6eÐ>Ét GŸ—·Òx¹¿h†¤N-)µf™êŽLÑÒ¹œ]-œ”ÁáD°ˆŠ:ø’C»Ø%e¨84T[H´k6C¥ ´ÏT´#[;Û øSëtëìàn’›#>stream +H‰œW[Ûº~÷¯Ð£\ØŠ®–…r6›¢ÉéiÖ@’¢ %Úb"‰Š.öº¿¾s¡dÉÞìC_ÄŠ—áð›o†?®åZÏ·âÄ·¹ø—U-~Û-Þ<<¹VÚZžeµiµxó7PíâÍÎû »ÃÂu\?²v©;‘…‹`ëǾãmÝåûN‡ð¿\ØŸäIÖÆZî¾Ón¸À\ÒÃ%íOªú!Ž²µÎªË-Ýå²±þlt*ÛV¶87õ̦¸¡M+=îÿd3žÐ̧‡?À¦È:[¡õÙ-’ȉѠÀñᔡ³«ø §}Züü…î ˜1=rèºN²Ýú³#[ƒÝþ³\'p˜¹Ë_í¾X¢Ê¬eÛ»eÚ¨ZÕ)]‰Âú½o;•Êå¿w¿ßyàÍS-ª·oß¼O»^;ùܽýøøñ£ïºÁ»wï¬ß>ÎûjoœåÚól¹Nl—Žr½¶+º¢(·˜·Vë'}a‚7rXDaìq@—Æt}‰ùþ—W¸æIØFŽ$¡û±ãoõÕF0.½­-­å:Úع8i/eÅR*¦,žç£S]îE'ªnü­o—!¥ê:™µQå°ØK{é.0»À$ô¨k­='HÀâ`ñ÷>S©ü€Ë]˜ZÉon°!@W·ò9ÍEu”¬tÃB¦ZÑ”ª:®Œ.K½W…ú/tqÁ…šlÐ'•ÿT •ñ˸,Z¸û –ê¢{ÝÀš° k …mKpS1þ·³pä]úÚôknϹJóqè…¥½,tutXÙM®TÁÊŠµ\Ÿ’Œ8ÓÓÊFé¾}É¡©®RÙTð–Ùë¾Cnšx +ĶGS<»”¢íy W[Œ¼¶4§ÂSw°ž0a…<² ÷…:ÒZO{o¬†m`L‹ŠŽ„Z6µìÀ½ºi©C¨ò€/Åd¶ß—)/ƒ›âïÚ\pÝ(ÑÉq¶b›£áþ‘¥WCÐÞ5€Gd73üž¤*Ûo¾ï[Kßg>stream +H‰¤W[Ûº~÷¯Ð£\ØŠ%Ù–Trv“âÈi{ÖÀyH‹‚–h›Y]]¼q~}¿™¡dÙÞ-úB‡·áܾá×ÉÂY8k?p¢$pj=ùÃ)'¿l&ožNÚ8¾ã4i9yó ÷ÍäÍÆÿ÷ÌÍn²ðËÀÙ¤Nä­VÂÄíG—$ëÄÙ“ÏîÚ›Î}ß ¦óÄ]LÿµùëäÃfò]²Í±³Z{ë$tV^¸LH¶ìxx¢O¿A†•óâ,OÎd•xQ;AèËÈYzñre[l|š|ýÁ;,¹ï<ÓíþÍñ”þaŽï‡^¯b–-±x˜O7_&ožŽª|ûöÍû´íT¾ÑßÚ·?|ü,á»wïœ_œ‰ëÐÊŸ@Òùþ Â`E*ô½eŒ{6tõkÙê}­ °…ÛêÌy4ª Uè²MÃÈuuQmMn¾Û5¦*UfÎïÚŒ·û©Å„ª³Æ¹(= }o.YSPÇÿ©©Û—ŒU†k/ôác•9þ/Hu±Õµ%¬ì»8‹ý…½‰ÁHQyÁ:ôÅýöõÔݪ;Bóeì’¶˜ØU<“êÆÆæ …htÊäÉ |óÏE¸Öö„cÕKåý°1­9é›ãK½W#vsÄ¡ö€j'}{ÐëÌ¡DŸt¸pæ¾®;ž%Ô¹"qšƒ¡7,ה܉üTI£¶âî(Ï=Al«ÒnÁs x ¶ª1r˜Òwm'wñ°iko2ZVµÕÊa¦ßU˜Òæ»fŸ“w,è ›?Mà½eCB³wn;“g4ZUÝv%µs]"Î÷ŘþÅ”ëUì%K?SFÓy°r=n}Kûn&òÛš[Ãm1¢Kn·9·ÎÝì‰[ÍmÃm;Z³0æW£šÑÉjÄÏFüãHÎj´KîM¹í~~‹¨zƒ÷ü "ÖKß‹Ãu$j|¨aµ’Ý7‚cœtÓš½¸³Ä…#÷ññw8º8~~–½YS•-šs©Ù‡ÈoU·&írUO£¥;³÷Rü .&Þ‚‘iГcÌ-«J…ºÄ%$>È}:ëÃɆúþ y…¨L Ô›>ˆ ubk#ô¤kËé½ëò!I‘^”FIáJkžõ}k¸ÿg÷©KI +?±¡×KFV± Êªµ„æG€¢Ð¢žÅBÔuS•sJœ„Ò™ïìÖÂì–ÜUigOîï*ª>¬i´×0‘ʧwáúÙ5MÓA¬†ÄVèÛz +M¤}Z8V2ÀÇD'9~Fƒ Þz¥³¢'WÙ5awå¥$£µá+ õ3›4\ÂË+0Ä#Umʽåjî÷ÖB­¦ûÁÈ´eÉ5ê*'Ú3/foGOæ"鈬ŠÂ´¨E`åÈwß7¼ŸÜdÖ_ÜcØ5tUÛ/£lØ¥[t$Ï’ ³tõŽîßÉ<©Uî.¤ªeŒ#ÐJ›o¼Ä_J\/o£z)°äx.Xf±ë^¼^}v2Gؘ•ñÝ¡Íè»Û´œ1|9hʘ.HU@ VÏátyPì®alË‹N¹´fŽ©ñH ¶H§™X2• ñ]É`M‚¾²UlWý®K™ÞžÇ÷²p’'XD@ß2þdµA +†Ø‰¨¦*´P +ÿªZ^EC›˜â”÷(9 +“ +HÞ7€òÌÿÃÐ& be(˅ܪôy¤Ehk½LMDa2ÒÒOj¹>¡ŸVšw™¶+©»ÆN¥(] iÝcÑú‰Ö]ƒÂ}¹¸aû"T릣‡Ø¯‰«Ò´êJZý¯¤G ú'ñŽ;' ÅE±7o¨¶„œ=Äð~X¶_( + in‹‚WJÚFRźø£ö¿ž ¼ý„€ ªsuœÉ æî¥ßx/}0²5hS"3îå„!riC‰}.Á‚Pr°øHŽäEï ìëe0 ^‹v›C‰Àýa­Æ½£ šóñ{þ4mÏRípÄkÅÁ}’Ÿ[„FŸVü°Ï‘ltWNEVШwsPB±Pìærâ5pÉæFëgÙ]qw¨ò»*ñ:›~ɧÆË!~AÚw¡D3Ìsš"b\kóg6ëXU1}rOU~Õbxõ‰å·+Ë®‚ì'%8ÿL«€ÏP_BÑHë*éÉð¯HúpÍQ”0ü`­8%ï#%áSeèã“دGrñ­›½=ø¶Ì’Ü4…ŽjÔhj²)뀨ó0äÙQ»aqJMK u&L‰ª¨)†¦£¦vðu}J5,i®RÃ)ÇaÈ;öÿ!½êyÛ†è ÿÁ£Åh‚€ç"¤CÑY²P°åB’ÛäßçÝ»ÓY²Ý©“îHžxü8¾÷æ+ûáCz·Z]Ç8Qç?ýgJ|°’ èæalÛù¸ÿ™’½µwpë†Ë‡fúd„3%Œ/ Ž"ìm8IÃL—U'%T4Ä.ÒŠÎÃY©‡ JM |À0È.Ù5tö„ÌhZ1Ž:2Êem‚ô7éçÊO­F\¢U Ï Î±Mg Sש§Œ¬ž<ô§q— n^÷®ðÛÅS)©ZÈ+“ßÓþ÷.W ìòÛ‘™êP‡'€1ú’ĸôÃÛë—ÉÁj~ëå/Ь¢’rù퀤¥OzKîºDó)Z ÙÞqÉúFØÜë ID¤¦nMEäîüm© ‡{b²×¯÷–ˆ.GŸ,{#/§¤.@3òƒK@QP¸#€Ã¦m°Ë=­Ýë°“¤þÑ}i ›ªñ/ãiÃÛ&‹¬•|F*—h‚‘&95¹¹W˜‡"°ºkøÎ6[ZÕ°>'amóÙ÷ü^zn¤„’ó„õ5‡ÖIùVlàÕvgƒ@Ä@Úï3øáIÞÊc鄫цÔêB# (ÐÄgáã‹E¬Ôz´‘#cU†£¢`eA5©-.ÅÙçŠíTb]ž%7ì$> Hö¼  (ºôé‰ÁÀÉ´Pd_wsê _“¤!¥ƒ*Ž¶± ÁZ©©VìÿNx·ôe^Ï7?o>xÜ)S +endstream endobj 150 0 obj <>stream +H‰ÄWYsÛF~ç¯À#¸%B¸A¤Tª²-+U©8•µ¸›'µ5Gäظ Ä(¿~û˜‚”"{÷%/˜===Ý__¿/B/ôò(öŠ2ö¹øÅko7‹Ëww¡W^äycÕ..¿‡ån\\n¢ÿ„°¹yX„AgÞ¦òŠ ó ŽqÑ:̽8Ê"…ÿÍÂÿQ>ÊÚ˽åæ3݆ ¾ ËYú?ªö‹ØÉÑ;(½÷:½—ƒ÷óÐUråˆgðÒÈ\ŠúÄéýfñOóÝŠy÷î')ó^ê}ðœÄI™ +”1¼2 Ö áµw‹ßÿBω1r†A¹^Ç'Oö¬Üñ™²Â 8¹Ù.>ù77=Ñn½eRø›e‘úƒhG¥U׊Úûaµªäò·ÍÏ4py׋öêêòM¥'Qoäúêöýím†Éõõµ÷öægdxÿ¦3«Eq') à$¥±4è.;5öÜÂî½™—Åy‡½·Ìc~/]fÀçÒÏ}òó`¹Š"?^®J?¤§ÍvDW–e ÃqíeÀ¿L<ØKK´ÈÃ"K‹ )2bZùJóý?Œxà(b²È[gA˜”©WÀ‹6àmŸü,H4‘÷ý$ÀBZV»¯íÚÕ {©ÉbÎNÉÌNQh€BÇVQ1R6{éÀ’Ž"‹‘õ[¡%`d•þσj+Õ×àg×}ò™¢êZ=¨ûIK^ëŽGÁCÛ ÐêÑü}D#ÝðÅ,»'ªìéÉ ‘¶†e´ö%P4¼ÑµÀ¥X±¼0$QÂBƒvÀñq8iºQóL5}7hТù!ò<µ‡vV˪ÝY6BŸ1ŸF-UñêQuµ@iO9í§F˜­AíözdC'ë ÈzP5<1FÝÀ%qîßKøÁ½Dí´¦z¢Iw?Êá‘ÉX68þk'Ÿî~Ó@?ÒŸfù_˜VÐM¹ßJ nb`n ‚qâÛÆ Ú#×Ó–dõW5ç“^€¼–;5ÖÆœ°¦P‚ã¶Q­õpüu´^sÄnµöjÞ¥ÇÀ¤ŸîkT.LgX™ýì@Gó€ë£Ïµ«Hÿ)á°G+ž[«¦3)FÞ0‹^V†‚‘I‡¤%YûSmlðÔ¯ÅÁ\‡ªÀIO¬: œ <ŽÔ©G6LgeìYyÅ{±™¦Å:È¢"óò¬ ²pM~­­\A|)ãçQ ]§Až”pÂAÄQ€¼7 +bDÊØ7Ž"d°JÖA˜'.¦÷ +aæCì—­FÜø•zTµÂ'Åèé9z28üÖ ;Öø‘¬¦AiÚz`kV C_ÿƒ$КóQàu­v²­$ýÙ‚ oð- +@îÍ?@PvƒU“cáx4÷–7@– ž ùtáÒ9Ê2‚,bh䨠sÜÛã„  jtg˜¨ÔÌc®gèÀd„ g¶T# W‹øçî~ “¼R¢&tf¥EÌdÓ×Ý“”öÏaßY÷\õr1–ÖOfÃ"œJÝ×–ÌÀf;6Þh»g7Ä01(&¹ ^Hï6âÅ)Zª›x«àé<Ú­d´ëÐ +öaj x¼0¿ièÅ…ÉT >¤÷Ý(ÍÿÇ®~D«‰-äØ€K‡‡íS][8Z{§p]v‘Î5~deyâ¡[ˆ ³h‚-Ö_¨¬Þõ)¶QÚªSŽâìò ºI å‹ÒºÍ(È3Ž„qôªjTgugA”›Ë›7¹Ñi‡‹¬rÃ*³¬²Y«–æ mlvIɹmÕãiÚQg˽4‹ƒ" ‡ ×À^q'û¿uªæ™—w½h¯®.ßT‚ÚJ¾«Û÷··a–×××ÞÛ›wÞ™*Ê0ˆãua刎šxÿˆ‘waúT“´¢ K\ÓyC]#4*fÜ‹¡ùîÅ–³ôß,³Ìg2¬“ªö`ýYÏ3Šþ0VŒ.a’ìóÜESA_ÙÞÔbÒ={exÝK}à$‹››†O»=–áó²â˜E(CAlù U)Å~\`%#æ©"‚*“ÊÒÝ"Rô"ïàÚ óƒ _ß$q–¬sùºdMƒVu“b¢ÓVgš‹k/•{U‰«?¢Q…âQq G˜<Ø« ä7× 3/§m'g N?†Î$ûr +O‰Çá VÀ³ƒ +O‡çŒ§]%)+Iù•´õ¨Ûk]¹S“¤ßû…'o¢QNwÑïD£»fŸèyç&V¾ø™R·ô©tkwÏÜpŽ“°Õ÷]'ª‰Ò/ìßñÞê]Ì?÷¬+Zu6z ¥…ädÓ% +ÎõÓ2_U>~Y˜˜Xt/:9F`6 FîÏ©n´x‰F¢-óÈ™™Ñyž¦êéèÍâÅÙî>stream +H‰¤WëÛ¸ÿî¿‚åb­ˆ”,YEàns)r¸;´Y·Å![\™k3‘%Ÿ(­oó×wÔÃò&×¢€a‡Îã7£ß‘ˆD*•Èr%³ø§¨ßo¯nï"Q8!…pEµxõ˜îÝâÕVþ;æöq…Q¢Ä¶Y¸^ ¼…ˆþS¸J©0ÏÓ\l‹A.WRj¹Êƒhù¯í‹¶‹¿}MHć7b†i‹u'9êöÈ'nïðÄÝí/ ÃZœE"~‹ufÙF¨8TI&’p“¬ý?¼[üö•wF¤¹ŸQºœ=žÒ?LH‡ñf½!Ý2¸¤Ëí§Å«»“®^¿~õ]ÑvºÜšßÛ×ï~x÷NEQüæÍñýÛ[±îüág ñ~9˜P­Ñ„2L6 g»[½¯Z³o4, +Z³o­ÓÍQMÕÞ,ã,oͱ~°¥ýâ÷غºÚ‰ÆN"û®…ÝìœÇ2Œâ„,æø?-5ÉÔdqœ†±„˜˜šLÈ^P˜ãƒiØ('àbÿ›`Å‚W Y’ #/™ˆÁ[™ÊB•Æ’ãðS·³…Õ5`‘U¼îîÞì:ÃÄ©YÊMPÆ9¿d'Ý´V—¶}fZœ—ª9ø« +s¿ ™¹=ø« +ºÊhrqêÇþ\kšŠtI.c'EøšH¬dCìoß‚Úu#–ë48枆…Ó¬—D]´uûôdOWmYÚjO3/Ä<”¼ÞÖ4xó8St­a¥Ñ êZq]–foÈPIp2ÍÉ´fÑȱ~Ô<°&OuÙ‘ªÍ3³]kN~Å£q-èdÝT¥Š¢î*àÚÞCIðˆ@bïõõÒžl]²™–+Õ[}ˆ£™åÑYòÒWÄ9tG]ÕØý¡uD–úL#dž œilÝñÚ(•¦ß¾Ø¶£þ~¸t™« œ‡ÈöO ß;zcšÁE`ˆÀž¶@´ä%œÐéêû™x`m—yøèbÎc/c8R™IüŠû»}íJýd5¯ßïo·¿Þ/of¶%•TJ +Á@Ã8SG͵Q^ØúáŒÈF,’ö¤ÁŒl¯¼²*û–¸»“0à{oë®i'&F£õ 4‹M‚;kšFù“©+CÔ}pw{÷Óý’&>9žìŽA˜óÔ˜³0;Ûö@ħ®±`‰õ“aaCø]4öh˜ìkšåjýu¼¸Œª>€x»"¤îwcÁa¬Jâ* åpCͼTø=B0¶ý¡õÑSc¨½´ojÀº…7Ùq†襳®ˆó1ã| M@s  l(ª¼c໊3€ýÍÅóÎ3.K e`8êOÐ@zd +^yf$Ü1ƒ &ó±‚ÄÁ:®gžÐëh×壀UŒB™¸´”Ð…¼ò®W‚$°#§>¼â´qh ¡οñ$)ĹnÊ“z" ɤ&µþ€/à +ÌyZxcã…µéq|ØBøv©È`˜Ê>Ö¨*MÙ1êf ÔT¢fv埉؛ª. Ynæ§õ^#¨íAñ™0Ãa‡M΄/‘C[@ÜÒHGÁë§Ò`GÅEF±Ô¤Hâ®Ñ“ê"KQ°æ—cíä[ê–Fó;àÂ:Þi[÷Íj3B~ËÁ†¥¡Â´7N™æIëú}CéÆ){,Š7Ò`éÎV¦|ö·Õ<ºi<«îÚ™$[=A±µ{²Ë6)ÓÆö‡ó$NC©$wiž”èÓd’Š5ôi‘ŠSêå<»gÍÝ&“8•pH…pÐ7w»ãäü±ÃWΤ}·9¹øcp#ð±èöoÕžÅAïă1•€nÅb&BóðÂRFW8äÐ9"ˆG½ŸWkh¶/qé=æjèÝÎúæÐû$v€©`õ‚&”ªÔ‡âf5/qŸ‘!ÞЙ›‹ìÐc•f®rsß®®ëÄ©¼Ä˜Ÿ5ýdˆ€;Ú¿_ˆÍÝR:vKéeG”ú¦)½j‰ð. +Þ5•©úKWß0I€ cašVË Ø¹;rþYFIΘÖþØ´LEUÎ y0<žºÆuÆ_ÒØ–Ýþðù +˜ÉmUØSé§\!¡}QJv•…¢ïXbv°¬o’ e;P³«˜Ú±R™J6JPâ(ƒãíA·L ÖºîÓz«c?Û#`O[s› +ߤ·¬Œ$/ô²Ä¡£ÎwÈ^²d»¾ Ù¶¥ÙÁ«³¾‹6O†;ázþ=¯ÍÚ`ÔzQÈte’_p½ëˆ7Äoâó÷ß$Ë,0@&ë³÷ýã/°Ña“£e]ø¯ºë5² ÅGô+>€‡øŠ'qm¢ˆ€²ž0Ža0_ÅÐXª0]G™HTÄÚchüM å&Ì2¥àPÊuNÊMž‰øLD V–’JøboÖ¹ˆ7¸Ç ¾€o!â¯ÀªHI.À)øŒ¶éÚÀœ^rÝ Õ‡‹S@õ4Iùâíø+¹Ñ‘A3Œÿü×Ý™\/½óŠz_yX탎ÕØrOÁ glfº—œ…!^XƒÍpÜ  ®4b¨[)ås ~7ój?Wõy¶ êÌ&èPœé®º@ž´óÔ7~åÂô–¾’Û?”Ϲv‚s–;Næ÷ Nzïáí”%Ðð?âGS´4¥,–ñzNHä¶_ôaâ*ÿgÜ’ þ~Úi‚{ØýמÜÜïX¥QðñJÛ/Æ Ô¬@ +@;ç•ÒŸy—>ù¤ð£kƒ•X¯ÆE¥âÞ(8í:oäx¬‚°‚ß35Îûþk7¼:Yó^îê½òÔc5ê@ÅŠ +[Qv;¿½ª«Õ§0ž>@¯«Æ`Ρê@»®8¡y>†V8,·Îq1•=Âó‚ou=ßÐÈ·—Ô;yCSÛÒÀ€§«Þ•4em{¤7ð òäáXæ½2¬rq_³DJ£ëRW³Êñ|;GQìídJó¤Ñ€ÀÀ€aÒÚS2ÅÞ|x„ÃeÜËÁ„Ou 8Ó=¤ùKyFX§a%C²-¡[;áßÿ4þµøgˆçßèÏŒ™1MÌy,–*¡~ŠˆI‚*ÿÝ£=žê†)š¢•'«'Ý@ÏjOÞzã†a•ÿxÃ%69PàôCHwU¸ÝLAMx¡KhëÏÐWàë¬nà´³q\l8)VΘÏè™I…£eÿ‹ò¦¢5~dlúò¿PÞof÷Ín°¯9¹ÉÂ<Û(¾þËõ:è­´òLßl¾M÷ìiË<Ýæûk$û{Õ‡;¶îþà’«þÍßkÇf‹!wÖßêÆ’ð$ÅV™»Í±§nßÔñŒ0ô?ŒWËŽÛ0 ¼ïWäØ=Dˆd=¬=(zê¡@ÀHÜÇ6öîïw(R²fÓžhѲ$SCr¶aÃ/í’ûäåZ)Ä<ȤlÅ“î%‹©÷Ò”¾ÃGž¼@_¶ä<ßçîÔ®Š,±J›¾–Œù\ËV•2x˜öx0>0³µlU»Ó„¬:˜¬eu{¨J»-ê`ÀU“žrqE{8#;î~¶ ¯4&³P4Àñ»Ëqb‡ŒÇM_ù8wGQ9Pˆ6T›¾›Z3I&Á4SR£‰8¦DNŒ+Æ ¹=b e÷ +ûÎlP‹!Ö™[ÌÂ#©àLÉ„Â|Þ¦_#»¤…·Û´ð\¼ÈÞ¦\œøð`éçh¾(ÜŒ-üœ±Ç¨´×6AU@â"Å¢ ™Ú t˜¨lm +Rhÿ#ßò)B†Ü”¢´è‡ÏãÜçö`‚ª7×ק¶yOÁ‰œ¦«žF«0õúÖ\X(FÑ>þ¹}®E1~òWWé&ˆ“åÚˆ½î]%T $§ìk¦›·© ¥ó`Ðw8½¼àí§’ˆå§ë,,O~bïRÅ0˜‡e©¼Ò<|t}ÏeÊ1&{iÛé^7ÃÆ]‚žg-+Õìÿ@£#îË¿‹l‡\]üC̘ðU[½«òú°‚L¥+õ”BTýš¨úLpÂ×÷¢²ÈOäLÉUú$„ìú²örbc3ióûZy³…QUð€†gñgç&éñÑ»ëoT(êuÆ/ ?qÝ8qjA^;%õ§þVëµ2Á…]p”UÖ@aýöëéçÓsï +endstream endobj 771 0 obj <>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/ExtGState<>>>/Type/Page>> endobj 750 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 7 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 48 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 61 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 88 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 99 0 obj <>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>>/Type/Page>> endobj 112 0 obj <>stream +H‰ŒWYÛ8~÷¯à£¼h«Eê‚Iw’É d»ÌCz±PË´­‰,9:Üéùõ[)K¶3ٛūX,ÖññûÌžˆ¤qªD£gŠjöz9»¾¹÷DÞ +)D›W³ëw0Ý´³ë¥ü¯Ìåz湞 +Å2± +T‚£Š•+/J¹iÀ÷ÝÌù º‘˜/ÿ¢ÝPÁ7T)Q¥ó¡¨¾eÝŠ§¢ÛŠºÛêF|jê\·­nQ7•fSÜÐ!Mo–³³™7÷hæýÍG°)O"ˆÁb? Ý ò]§ ܬâ8íýìûOpnèÈŒñ‘ÏsÓ$Q“# k·:q–çúž’ËÕì«s{{'²j%æ~ì,çqà4YÕ]QWY)~ïÛ®Èõü?ËßÏùƪnv àÙºxÂP „­ç12LH¸4y_6ÎGþ\þ ,¬7UÁ—â‡t'0ÀÞ­&êÄ~â´‰ÓïtEw…ë'ûÃìOôNç[pr»kiÚjý…jtÕölÚ%ÿåõn_Âå ®E9T²‰â8‚.ÜðjÍöW¿^ÉGé¶ÿÇR6rob¸5tïƒèù6=€¡ÝÌeD†¡ª«…ѧ;rœKü/{uÏËŸ Êg"qÛÏ0ë`j"^FCÀKcŒý8„50(ÈиÔJI}ašKl lAv¦æ°ßûÂ^ ð3ŸÑ'0Œï¦û®y‹qAS:kê´{“å¹á¢ÀZÕ¶îÐlÂQ³‰\©$*CúÐå=™¤"‚VÇQ@= ´=Ï”·álÓ:çÇ! + ½(NM¡#cÞö ¶ÿ]ͧ¸âÃYg<Óô±^W ­xŽ½`Øc¡b7’ñàEl¯öFÁM+¼5B†öx' +s*ëˆÈv•nÙÑcöÚØ—5æžW˜˜òÐ꼧ð#&z†ùÆÌCQ—ÙtÍyXÚ‚™¤Ç‚ 4Ëjžð}?(¥x^?–ÅÆjF¦b9Š%ˆêE¨œWf+>ú³Á“#Uìöz¥Mý¤¢t(ò®ØñÞÆ-ußÀxÚPNE1/EiÖìôêY<Õ}¹YÙÖž¦Û­8ZïòFŠÐÆøþ¸÷Asƒê¦Ë0ŽqºBS}ÁqRD)YÏM +ë¦û‚ÊDW!z5S¶ÎV3Jÿ¶cª…£4ljçʳ•¦J†E#;˜åZ l,$o Þ&pÄ9èûn ¼ùy¿Ê±{ml°¹0‹ÇçûÔU^ìKÌŽEq‡CÂÀŠÈ&B‡÷ÏPÂ:âøqW¿1Ì +&’CÄ“^é7[£k¤—®FèB¬@Cl@™ëžOK×yÕ +à%†~Ã@b¸jE\'*H¨%aC?qƒ$N§~TÞ<‚Ç ?uý$AÇ$dý༹¾ùèZ‘q9u‚E¾›x¡Aä×'ÇM<ÀÜÒ¬œZlYõÏÅ•&V\zêDÚ¹~µZ]¶VþôØ€¿¥´¡õ0óÀÀ® ¤˜ ‹!Ij¡Vôõäàׯ€_?1=çaVæÒ{ø•ðÓFˆgfÑÊ2Þщ•Y]Ž´M¤käIÄÖ¬ ÆÛ˜Ýxe=¶`XŽ²;3âîÏ&Çdä&~2É1Ζä4ÃsN6 ¾àÛK03(‰`|wì4ÇuÇv3^úþ:{ÒÇ­”î9C{GÃîµ@CC8ÛI*ó‚@Â: NwEÞoS,Ør†Îþ¸=g`Ë«Éò1è?Ç^„ÚÒ ob›¯Gç + +~¨Ê÷ÜØ‹ PCऊ59‰i *èÀq% £Ü( h¬.Ac•Në«1%vSuì§ÍÆhƒRˆj|@~ßÊÔ9ï úLœwºbŒ‚‹«³z¾ï%—[ ­½/ EÅ!Ž ‚/'ŽN€rŽ¨ +Ö¼‰1â*>Py>Èïë¶[œ~më¼ÐŒêQɃsšGÎyv_p×y~G2:s)6?2Õì–*eUwÙ#9!Lð ]S<ö¦Æ‡ Ž[³äóGWuK+ÖO}œ£¯`Â>b õ¼´5æßô3EÛö—Óe¡à´˜Ž¥Îš +ŠÆÚà7æeúÇZÁå·â…HcH‰@nœšgbú)à{6€´¦*MGµzxO.dâ†jpn òq‚þ¦QÿØf蚦ÊÂ:*uYÖO\¸Àß^&¬ŠE z“† ú¡ÐO,°.AÐ þ3ÅúôzmûÃG¶Ü©-Hˆv“<õ¡¶àÇKï?߶’˜IçÔL9ßÄæ‘æB¾mˆ$Ç].©?B°^x‘ÜÆôÝœü££³Ð´.kf˱öÚÊw?4"pÙ„ßa¾˜„ÿg00–ïqLEydnÈâËd}ããÊOƒEx¾Ç+Uú*P²E‚Å´B +6|jkCŽ¬3«j¦–ÀêÕÛ[ 8šÆmë;׫;ŠM™(` ­Ìb·§¯²G˜Î6ÀÔ¾é:ð9ç†I¬xn{nwÜNܶÜÖÜõ´+ƒ$Kœ”ܨɭž\«Ý¬þ±W³GµÞ  ø`íF :~ºœ¦[-¬-‘‘NIõ¬ìÕ óúL´£[›3¨íõÍjµ«‹xã¡ôY5ï äõ_éyÓ;Näà~Ãñ/¢º§–ÝÉ$OõH#,/º³Ùùž\Õð‘§Ö­†¡œ´!Ûðìµ&8(Ñ·°á“ï-‹³…Tƒ‘……Àå.gÚti +(ãôôâ¿ 0ªå‘…Ñߺ Ò…ì¢ïäè^QÏ Û‰ m׶",0‰Lþþøå×—ÿ /¢N +endstream endobj 98 0 obj <>stream +H‰¤W[oë¸~7ÐÿÀG¹ˆ]m ìÉ¥8ÎîöÄE6EAËŒ­.^‰²Oúë;’’œ“m‹¾HÃáp8Î|3ümˆ@,ÃH¬²H´jöwQÏ>mf×wOÈ; +ÑåõìúÏ0Üw³ëMøϘ›—YàI$6¹Xùi*P Kø.AUùY¶ÌĦšýâ-ýù" ½h¾È¼`þÍ_f›Ù_?Ú$àÅk‘.ýe‹Ô“ m{áwO¸âéîG°!g‘ˆ/b–fþjµQìGÉJ$þ:IÍ>Í~ûàœYŠWÜ=¼8"ÅL„aìÇëtM¶­@-ÌKæ›_g×OGYßÜ\ÿë^–õMß<><>FAßÞÞŠO÷wbæ ”|ø$ê £]úÉöÙìÀWŸk­ö­‡žV;q_t²­d¥j}5Wž¸WU³-Êâ_F¦hj!ëøªŠñRd?i˜í®ƒÓã8ôƒ8!O;þOO]ždì²8^úq11v™8A®ª­jø(#Ç aÿÛÆofC"Â8ñ—Iº«håGË8äðÛ”À ½R毆l^ ‘7M;×Þ®¨%yÙ[¥ÏJÙ‘neÝ8-KÃúµït‘[ÍxLÝß5T%ßì¾JÚiÝ¢¯·²¤{ñè„:}¸ˆÈ› ˆŠˆcBÖ¹Âõ˜Ý뼩TÇ#Þˆªè:'r<6­îk0Wu>ó~ªÕdý^š– õMVÇÒ² £^¤fêT亨 ›ÜwXœŒ£ íÑþÀš~¦W²}U»^è:üK­!šÉÕæVg×ôDäŠa’Qß`ôVB8kPÚÏ]4ÇMü¾‡¬tŒX©½ÂÔSúÂÒ1‚¥^1Ô›,4†¯Í1¦è`Œòf±LìY¯‹Ð$¸q¡±0·‰ÜÚjï¬<ÿKµ5•ÌßhH‘9ÌòñÜ-CÕ«*žyaN5?Bš yqæÔ­¬Ô5¬ÚvG±9{¢ˆÃÊö|(òƒ¨ÄYæ¹:jÁÐ}[c^^‚îûÑ)™Ö&4JFCqìéîqÍÇ\³³Ö7¸î$X’E…·#1¶Öt/§ ò eí£šcSâ}ÉÉeÏðØäe¼ èÌà,·18;(¼p(ÛÔŠ‘(1à’ 4dÂíZŒ™¨^É\½*udxKl}³S—¸ã*Eݶ/JHˆ=åOêýíGþ_(1|Õ€ÙqÙNxO‚¤ 5cÌ+J*˜‡³´àBp;ãBjËAŒÙ­–VF§n.aÜø®j(/ ‘ã³af4D3}%k&Ûb ÿ@Ø5}­%vúmŽÍÄ•™1¢gU–SŽ»¢3û0xH+ÙëCÓ¿ î6áWà*þÃe’Çê=¤JmêÒÊÖ48ú«4./+€îó<‹é`ôÈ5s5nBÆ*è&áÿóô&ó“½É©M´’1²ûæÅs1O½¯êØoK¦Ñ¬”W¥Þ]Sï$ÎèºÔÛÔHHü 6Xeh¡¹s$Ÿ£(Ö´’M·Å¶g>óŒî]Ñ’ÂÂööb&.h4 +~´þÃ]¡ÜõéÝè±À ÷XpŠ)ŒàÏ÷†o†K›öΩÐÜ=#=Ïy@r´sŠ‡“ž# +l[JÖ-“;uTà-¹bFa6¨ÀÖÆtc‘91#´åéŽFåFèð=š‰c[ÐÍD^§ò¾¥1¢=#S­q†àôDƒ²ÉþW™ 9•ìÈ^s䉕N`²“Ž-GyO.Ÿ`9Î{;…þ…Ÿ 8ÿ¯ˆf¬Á…Â$ïKÙ²¾¡†YÂpÆš×åF“¥—¨„¶œú²†<ÚB–B>uà‚+QÔ'Õ™*ÎÖ$¾ŀ'ìtì5¼=…ªŸÿ@jVJ‹I }´á¸{ëžC Ž1†—™ÉgB½ áP"0¶i¸¹ÞVÊ© ÑtjÞÝK yTiàß©º-V8:M$çÉÉÑU˜-­KEš.à¡Q€`š°ÅpË7ÛÃ:ôŠ©ÓW>)ÇlÌØ¥F!?a ™¤‘Ÿ¥ðL‚Ø_¦á±^ŒÙùáÃ7I—{A&â,óÃ4¥‡/¸×<e}ssýC®á%°QßôÍãÃãcÙíí­øt'Œäà qà/ƒå¸øl +zÅ­¸) M=B¸´%Àp} +•]ÃDQ±4Ç(9p©XÛB>lBÙõ®E1Ï™¦Îà bE1V§QŸÁÒ'qéñ4,cÓFnõ|Ë0Ò^\ˆüâ‘r³ÛÏðÞ„~¯†š°*°€ï‰K3cî‹áÁÃÉ€Å0C%Ê›“jߦ”…1stÞG€{unÚ×îynJ§éòWÓŠ`J´éߧ¾^g/¬·+ùêê©y+`U¿l.P}€üð*™¢žªO›RWÜù… ¼MU€1»>'Ð ù]?…–EÇ[äOc*ÅT6yªøĹƒV“Äô“ú.ì¸â ó:‰·¿Ül´WÆ>Ì<¹3ÚÑ2. EÆHožyM£‘¦î¹D†¹Âáèm:ÆâI[‡>‡F’›c¤Ž’ú6$ǘE n¬¨ƒól;‰´ë'q`®ÛŠX$c–éÑ®Æâ­×ø1¯Òz.Ç{ÁOƒŸ?•ÑH𣾳¬Ã‰Žê§¼Æ “¥ÓÒΣ5+ýpóÚí›;ªséV¼MÍmÜðÈ"v£“ÓR;#?<å°L9«”Ó·ŸªÊ§kw,ž¦Þ(?Zë» ¢ÑAéÔú;-24høâ}s… ÛªÇÂØoÆNçs +>µàÐ-ü—å-N?Æò­?Ž3.oÉï–·8‰ýË[´ÊüuÊÛ"Î:ãä׋šálÛJ&gìçé¿+^¨¡ïKm8¸\íˆÑ’zi”«•šÄ ÆpäÖæ ,äѸ°›ÖV=0ÕG¥­r½s7k»¡i°¯™'Xîä*=.{·lç&†ë¾“x[ñ€·uI[8Kwm©ák^1ä?Íž§Hp˜j!‘Ι–»Y5E 5µyÈÃÁ%c_}`é‹óäàDš´Ð +„v§#ÿ(¹8^Bˆ'-ËÖ†°ø¢äà mMÿMzµô¶ Ãà»…P{–äG|ÜŠaØ¥ÀÐ;ìä8ªm,¶Ó8iÖýúñ%?Úl(º“%™¢(R$¿Óà¶ð×vÐ!Eee™6rWP®š+i6é¤Epcgkå4û+˜øÚÕC‡¾l,6 £…,j¡¡¡Í‘G¶; ÁÞ{x6Õ½â·zÉè&çº)kAiií†xèU@HhZb€ÁiÁä‘g"_+öDah&ÇC_%_h=-(ñ¥N ò»—`È–‡• ù½S*ôV#ïm›ãr£ãÈê˜ÒŠ÷Æ6º)†¦ÄP âQ%v]^hºrwÚŠ¢˜è Æ3úÝI*œf g@c©×íøÍTT{-ð"ÓÓlJÄ /œ»ïÏ“À$[&ý ¸^‡I¿[«KØÏ¡KÁ—͆Á·ÀÊ«3'=ÁÅ0¾{—CÚÎ!®Ž ' €†Û/;¡ZÌ7˜Õbbœ+‚î8˜’ÎLye’A¼[|!Æ%ÃÎõ$‚kÊ!˜<‘5Ïm6“Åfx/>ÿ™ÇWj©ðÊŸ]ÞÙme[JEˆ;K¶8&³ÆÔÖ£¶lù·Ó#lÔ«ºx$¡å? EívéÍeNì¶P*¨'rÃ+"ÏkžZøÚPI(MC^üÒ962X‘ƒ§?@wMVÎS&ш¢g†.;Ï(ŸOø4èY䙣˜¶yäL„¥­m{bwt.ošŠ). Š²ÙÓÃi…ìŽÙÜ`X°(¤L¥+†V€ñßÀO]mO%!`°4&3^n¡‚Ãû¢…-–ì€éH Óµ³}£iX/¨‚V ܪ$'ỳxª-Ê'šbR w/ø’”^¹YÂxÖÐã³m¶«‹N¤Ü"=u«KÙˆ¥vðá|‰Ö ü…R ®o#¿|Ä’þPvÞûÏ°P Tz".=Y˜0â¤A ØTe©¯²$4ë8'ÀI ùnœ §m:åZ÷c*ªô÷éÎûêÑa·×7Þ@PÖ!e#x‚*ËÂÞý#&L£uî›4M®×SÀ‘¸ž» +bAAq1Yiê.‹ETª@g¦Â<‰Õ«CðÜYoV4w×Ì÷Q˜¥±qêô›|ŽÒy~Á÷iA +endstream endobj 87 0 obj <>stream +H‰ÄW[Û¸~7ÐÿÀG»k$Y» l2I‘Ån±ÍèCR‰¶™èâ’Ù_¿ß!©›gœn€y˜±D‘çúï~™ùÌgI²t2%fÿfÕìÕvvûúÞg™fc:«f·ÿÀë^Ïn·Á},nw3ßóØm3–z1#!ô¦¡¬ý„…¡·I#|/gó_ÄI,a‹í'£|&‘‰œÿ"«Ï|/4;ËæÀêæ ûMÕ™ÐZh:CJ§”Τ7ÛÙ¿¬™¯ïÉÌû×ÿ„M1;³ˆýÊz‹W›ØKÉ •ÂËÈ[Ã*ûÞÞϾ\ ÀSCGfŒ]Ž|ßÛ¬×áÄeÖÙ^Ë÷Vþ +'·ùìÃüîî=ãUΫt¾]¤Ñ\ñJËFÖ/ØÏ­nd&ÿÙþü$·÷G^½xqûSÖ´¼ØŠ¯Í‹·oÞ¾ }õòåKöêî5s6¼ù£¬¡®"kÀ|e¬t™Fìâi²ÇîýY&^â§ÆßMZ2œ‹B:÷ažx‹eÌÃÅr3÷+CÚtÅqŒ°8‰kCþfÅ°m(#»Y¥Þ*]™$F©IßÆý7Iô½^µCBÌÖ±¯6lÈ}Â"8§”±ÐóÓ”Ž¾ºšÿøÝê"‡A`±0(ðW›ˆ¥I&¯ê¯Øßåß…ýÃü7%K®õü‘ñãQÕ<;ôMÍšqÚ?Ònbå üÄ 7–úÃZh^GˆAÇ6FßdçÓ ù¾¿é´q`§ß¡LBxîÌ¡ýiC¸¼$];Ä¡®µÈZòU³a˜tqZuqb\ `Y]åmÖ°zÇduˆÊž/–ÑÜž¥²ùÔæ2“ˆÙ‘ØBä²ÚãíÙsYé›/ +±ù"Œa%ÅÔgËÀ‹ŸwÐvê(#¸V¤Œ³ ©PÊx–Õ*çU&,7ɪªê­€fÝÀ®rÍv´ + d:ÏKYIÝÉÅVì2ë-’°³!2¤0±é­“rlÕÑÒt¶9HÍÊ:o qCla6X•Y«>B‡94ØF.—'™#·š¼iµÈi™<”°ßE&¬…e“d‰ºKßÒ~ê,$ÞêRƒ¼ÔÅ ag{2ª5;ɺåÉØpµC["5Jîfv÷™¼²®i¡dÝ~KRoõ|91uDZ2Ùp%¡Ó)3ðù3–v[é+'HF¶éΪ,ãÕqž¤OÍ;ul°ˆc'Óôƒ 9$ƒ=ö¢È Œ:«.ùœŒÚ[êpŒí± Dk{ÂBj"¸âJÕç®õPB©éž&®Û¿Â^0øŒÿV8„p‹Ô²F±)¡ˆ…|…l'õ` + +Q©ËR6ÈG%`)Îq[âÇ^òã¹Í™}'·½G®ø@mì ·µqàÛZ)¸nu€.ž¨]Ô*V”Èñaà”“ÌYˆ~£ÐÆGMQ¼RÑæÓ¸¢ÿÿ5z!éà5Šþκ´YL"´7ü³1¦*ÉPE-¥1l}<¢ÒýY»ª„MÁú*ñ˜i.Nv’ôŽgÃ*9¾oa"|²Ü^ÕÕR ­ž÷а™ç€5è—Î5Û×àö¿™C;©ts3j/S:¬;€Á§¬ÞWFÝŒ=ˆŒƒ°gléÊâë±@Ãmg'G3ÕÈ¢c¥$u˜1  ÏYìÈa§êï$¡ƒµ×Ùj&ª¬n­ò=¼T-õò²åA»üIbù š³UÿÅ,×]“virTú`-ÏÄ ›Èµ¯JNÚ ZêÆ %öhúðÔÕóß #¤UâŒÔœÛRTÍ5‹ý—þxÂsf|{˜³=lDxÜ¥Ådd¨]ëa¬ën-Ó¹Ž ÞOmÝ—–k9¬P¡,?ú«´¢YŽ=Ô¹ú™Ö8€™x†Áz2ÏÄIpu ¡ocþs³Ö3Ã&ì D¡jeÞP — Q±² hoå±!·U.”™™È€@²®Î¢e™Ôh™r¤ƒ½fgQô ÉR1S±ù¨#-¾´¨ ‹È±s­>»ù¶OÖ5S¤¹—Dq¤~UgR £2Ùç +óƒÈ÷Âȟ醊_¡š*¢ƒüødsFe«l‘‰ –8Õ‘­+tTZŠìȉ&3?€ˆ\ÀÑÔ^X_ß!À…®i@Ò¬ïªâ„È“º]«p\R7 +Q‡åk1CÜPµ!ϯu­¨3‹ìq·º2ܦèçn7LWt£écv)2‡g;K9“Y¿¢™±opz˜ÎŠ¾ ax& +ìÒ]ׇ«´ +Ô×gÁ…rTR¿=ÖÈQ×%쬌|":Ô}J°b>8ì=¥ÆÈ÷½àÇS£3ã{gÁwCìÇ;:ž¿ï¢Ö²¯L{':p³g! «¬hs[6“9¼ä´hï퟼'¹~˜Û*6à€ ¡íÍïÉ|ÒXŠ5@co)†’F÷¬t7a¹ê.iv«§PìíFG¸§²¦yÖ—ÈèRå8ƒAe;8!Ù’kKS ñ&ë?@§nDÙ¦4Œir4ša¢à`í£à™x¦¶ÈÏÞu#Aµ…éOæÍ·uQÔgÓ&(î²ÎÍpÏmœ&St_onôheaÒ¹ãàð‹Æ`ø M®NðômÜÂDOFÔgžA;(œæçFU©º 昲dÓÒEå‚$;nUeí´\í"Ï@] m4kAÚôF¡%jPte¤l~BfÐhq¸½ŽF×~ðŸ@arå¼Þ_']ÛrÎíë{ŸeÕÈtVuøuD®¾MmÇŽÌä´ÚD,L6Þz“¤Dæ‘Ó+4ƽZáöåÎŽç¨)¶ò¿íEÇ+ÏYÑ踞 ¶ˆB\#‡ç} Àу]ãšMًœfòÈwÔî•Ú¾"ôƒÒhÝÅ•^Ïmwwï$«h¨%dº”YW1(ö³Z­:$à§2††eà§ó³ÄcÑHí†0Ý‚iì›–e[`Ú4_?.ÀÈsÏ}Ú.6þ¼7ƒ0ëŽ4ð³ÓÐGɼ<»añè–[z[þ¸î¦¦OÝ]éà/½”ØZÉÚ®Pàé—ç¹[w þÌ“ê\¼é„a~Ý=w¬Ìˆyt,bž ~A¼7ÖÌ tB6pû›p~ãÚ°±‡ê ˜ØÈW‹¦öÍ.[¡aœNÑÌOðß, Y7ý°ŸXD[²AœzxÜ]¨’w8.']’VЀ*â{¼w·;z6@į"~§™ÁBŸÚÔeŸl[¦èá/”ûn%¤Xƒ_ìjî¹Õw•{Ðu)ºäqã^(fö)—;:»s"ª¦ÛA|µ×îÍfÆódܱ[/ †¥Im-»âr=ŠÕ˜–µ^d|€ *jê¯Æ´ˆâM÷¶L"kBD¶«¨Ï‰A&91+uj”Ï|¹“šã Ýp©œÆEdLt®Ñ<eM,ý»›[Ĉ™‡µ[°ÑÁƒ‹žFUŒ·}£ûMcSD¹XââyÞ*G t¾Ó…:t·L¬ˆ›N¥z®Ž$æÓœd%ð]mË ‚@ôWú؇ÚISgÚ§~ +‰ˆL¹8Á˜æï{`lh&Oìñì½Ã1cl/H¤…ZB)-™´­œ>I¹LÚð+•©lY¥ëª|ÙEf–ÿoš Ñ…§¾eÓC¹KJb·O5 .N^HP~EÖá»÷œè£ÀNé[g,b¤ÒÁ¤+ò[3;äŠYˆ ü/’̃²`åáüÃYÛÙ$*‹¯<䧃æXc^yaÍù…¥³‹#†w\7ò†+Fªäºïûç¯a`þ«M𽇡Ž»ýŽƒP™ÈfV(·f0‰•ÁW’î%À)¸˜Ò¡Á Rœ@àK¥;S³ßܧ\|;~¾ýÓH4í¾KÚ‘" gôZ(#)°A,ËŸìjóÂeÏnëö "8ä–£?žC=*7É© +Þ°b2Ñ–\¨Áƒ ´~e‹’NžŠM_Ÿ¶ÁòW€zN« +endstream endobj 60 0 obj <>stream +H‰¤W[㺠~ϯð£SL<¾;AœÝÙ)N-Ð3Š³E¡ØJ¢]_²¶œìô×—Ù‘™ÅúbQ4EQù‘ú¾ðßIƒÐÉ6¡ÓÊÅïN½ø°]Ü|ñ¼sÇéòzqÿ7˜ºÅý6øÌí~á{~:ÛÜɼ$qP )|SP†Þf“nœmµøÃM½å*Üp¹Ú¸þòßÛ¿/>mÿ|oŸ¯$õÒMä$^oж=¯øø‚+^>þlHœ‹;ŸE²ñ²lí„‘Æ™{ë81_Xø²øþÎ9}²Û|õk­å¡à0ßÕ²pžT'ÚJT²ÖwË(s'Y5;UªÿÕÔŽ¨ ç7©ì¥È~ÑðC´Eç\EçG1y +Üñzj~ÛeQ”zQ1a»Ì b8A.«lðцƒ†½·1nò6AbÔ1^IÆp¤uÂÁyä&ðc» B·)úAxû‘ÑîÚý‰v?õ²$1¡ü¢ê\:ËÔÕG*U¬H5*ŠY‘lÖ>…ÆUùnw‡ò]“+©•ìp"+ 6®Ýƒª8ßÓ¬©>«¦„;G2oê/~”©œfM‹_’”'ºN%s×n_yÌjöZÖ|ÿ«ñš|gxQ–:Û'°,?6ʬBW74ˆ¢4Óü$:MZ%ÐÌoö0.^[_”ôãØW¢¦­:uGd).4b´¢Ð;Ë”¹*°3Úx>¡ ¤†»B—® k°SF‹VÁn¨^Ù…ýáèèVÔ2Ú¿öVps•]oÎæ±[À+n’wlÅÛåÆwm-”Zƒ*š| Ã(oªS«:Ù1‹"‰}_š% ã`˜ì2ßå«krpñ°ý„m¤ùÕaà„%Ìœ«‡V·V_”>:ËüL_Ž¸W04옭µ¬Nš'xá0À¤=‡‹©X`¦­”‘¿‰'AŽà–«.%káxÁE»ŽwG´ªy‰þtŠÐ'xŸÜ';Š¾pü,q%Ñ5};úöìWˆwiÉ1öåÖ·±¤y=kgÉ}}K‹f™WðuàÞYúyoiöÆïÙâ°ÌWkÇÎÒ¦,«nmfÛŠiDnÿÞùQIÌeÚcð ‡@‰ãÁ½Æs¢ÈH½ Ð G™· ב“`&i"3¤6ŸÂaCÙHüÖ‚@š8$«¾¸/÷7ØÏ5£Z÷~àÆÓýb/6‰žé z~YÒV¿jT7O¨!€µF“ CùŠ)­FsÀY˜9G6‘NFB;œÛ0‡{ÐEP¼¯ç¨v@ `$ ÑÜ'oÜÈ:À'q’Mâ¥é:¶ÚŠ÷ +S¼Ž¡Aï•l/È‚ñ&`SB;Ù2ŠÐ|Œn‚;´½Ôô`o0=2úbOÃì°9¬bÈ5Q<Þ¹ ¾ ]]®ßÄP`[ +³9à!K¼JÕÖQ&©‘—}A*’ +²4Sƒ¥@ÕM½šý4;à°rI¤ØÆÎØ㱤ÜJnÃ:xÔX?¥¥¡¿Á‚æÕîl•z€™p²vb‰ r•õU–Òîç[¾9¦¹íµÔûÑP± Ã¬*90÷ØŽu†þDUüÿ–cõ’Œ>å’ì Á(q÷ãvä©%<È‘5Rý”׌ÂbTOZÚeˆ•‹òtjéF}ù’Ü<üS#ÏKºØaßëæ´ï?¦±X½QÛ~?B?cñ C¬º;ÅÙEsÕ1Ûôc@V=R v’%j³°ÇWJ¿Ò”‘,¼é¨€ƒõš©ŽT|mX›ÔŸ1¶R*»›Úx°êçÏ£Ù´¥îöˆg¢‚~› /ŠÚ£Ôe×a"ì¬ +–PtJ㘛¡l Ñ(_W;ј§7ÍTJø5Ñ€ÍÝØbÔ^ å©ïèéd³¡Ú–¦ù­½kßü§;Dx{ŒØôÙ€Á7À?á-Á3ÑÁ 0!í4x¨D~SÂ&¹Ùã$òoâ „àÊlÁåLÊá:Ö-RÇøa¯†ú×LQ¦ ¯’ÂŒö»„ªžKÀÉä +„ÒáÔÄ&Ì  ¤Èæh5>u=Ã|éwüÞ§„n,®x«qÏÁ¼ºÑÃIíÇM_C–U9™A«Ì}zúÆHËLá§Nk–u««ù­¢tCCÞÈŠžJ;Ã\nÕtzõ†}'f ¥»)<žly1Ä@F)Nf²çqnâÄÆ[#³¡ãÉF¼å8…°Œ×jkbU£þ5<`ósbì_Xò¥æG0ÎuÎs2›~wFÃ¥áñõD[" + loφM®¼*V`j¡;Ä+B±ðØÁ>õ3©Ž3ËßÐ9gM-™½oòžÑ&-0Š=Ì6ozÊlŒ k0’íA618àÔ Œs`ìwÓ¬–ˆé¢}µEUu* %˜9É‚ÀJ­í>˜[YÅN%1·;ˆQýpJà‘PhšrÀ¹¦Lf)Ó%ïÅéäXz¿³*Œ“c8ì­û«9±Y€e“ç”Ë,;ÖÉsàØ-Õ7YªcÓì'H1LqÛûÅT¿ßºúñÁºJ|ÜDµL +èZc§M¥=€\ͱʋ˜€îœ]‰ÜÈÓ5Ø»˜µgV5—”mw’ùm4 ¥pT=8Ʊ›½þƒÙp,çCOC™é¸$žÒãÎGWa–*ÖÁÄ@Fc«»ô3,­ñþAIž´ÃŽÓ}Kn“?VØL +èñtçñÃóå$ꇇû_rÝ‹r+è‡çOÏϾïoOÜ8âÓg ÖäPj±e^‰Gu"æNê‹Än50áÜFK`œã,[c+[ãYú&za<ü‰^æ#vQ«uâò$ë‚C +¦”Èë!Ë ll_‡ 4Î?ôÝL^º55ÐÊ(¸U~¼ÑeÕp”û¦?µÝlSê&‘{l.LP##+‹;¦G)½$ÂY–LrÀÂúÜ”gƒƒÈलÍ^È‚ô +@¸´GËH86© +ÆBä^äºi;g¿Ö<ÂUöã#æ:=˜2~qƒÀ3§ æ  +œ+¨Â£ÂJÛY{wEÛØj¿8ÉVÈÅ.ö ²$CÌ6\¹ùMÄr ÿ‘µDQÖaAIL=-…»æÚ e˜‚8ÊbÓcŒ˜7dÌ w¦`ŠÐé´4ØÁ³g"·/û4ýFðô@ÏßNÿ#½jz·aè=¿ÂǘxcËŽããb[½,ÐÎô´,GI¼õG93˜ßGŠ–å¸èe/´(Q$%S䣲÷«Û×fØ®€ÜW(§š5Ói•wâ8"] üL1ù3dX•áYÓè*˜¢ÑÙ² 5ƒ ­#šˆqÛÕD:"»…iŽÙw'7¹¸…~>§]^-µ«[­Ü3×ršo›Ž¥Ý9*Çò*³½óÔ8v:ÖÑíÜÜ´ã¿®n²ayr‡¹'ÿ˜+}ðeò r^ñê“÷s/wD[=”·ºì„ÄZ΂ÿ‚qéßæ)ÚÔÛ/§;|‡‘ëë£hêd·£v0 )Å>°>3.£üíµð+FsØq* +ótÉÔ__7æ~½ö·AeJà +Ésíæ¡8…WËàª{ ¼M…Ì)øêIV(‹#…=Î8ØÖhçÊÑós×U t7¨L‹õ˜t¹ïß;}”5ÊÊȃƒ›T¬ß5½j]ª<2ýŠŸ£íðwœðÙZÿôOTìÓJ%Ñ.Þ£S@\'”bhQÙÅu4Nˆô:Þ>ˆ|[‹—ýJÎ,pÅÒŠ¿Ö~¾Ê-¹™½h|áãkÙñ cµýñÎwXdSzN«¦O÷›Ô0ò=½³FÇ›g„[dó_5%2Š‰t/ rŸCÉíFtl|Zç óƹ·®˜å_D{[9ô›ì­z» %@ºR=B"ŒG󣊗G êÕ¾ÂsEü˜ÙiŠ]!®G‡ïAså+¸TS“Q¢ÄþOÚz¯HÓé.¦¦Â+§zn†jÄ\+4¡nàÌt×c«GAõåyTa˜ª[}ú ìÙp¬e6Öâqº ðIöQ¬Tì¶û(Ù'*xi k†YŽL³Irä.¢Sôf:xãÞ“±ò Ó€é¦wOƒ¿·bªEàò5I”·bu·L¯LoÞnãí6žMká2ÓMôäùÒ,<]žø¼ÐÐ{z‚…WýâLfé§ë0!h"é.µ@„"ÔpDZiL_Õ”¤‚÷`© ˆ×Ãî(¡ €P{¨' •CæÀäùR7`§¦ÞЉa<ž¶¨E‡GÝSSÞÎzcª’BªD,—‡;‚>Ì2”Æ]êCÿ¹rüEµvÃ^í™Þ˜™joÆÊ ždàÉX=†éÝÛ¥=É’iåÑÞ“ï<ýVòÀÔúÙxc+ó¦)Ž˜‹r3w9ãmáÀÏœñTÕžKK‡­cÇÿ ‚êR£Õn¯Ÿ²gµ(T9½ŽTvfò¼ñ¬·öYóoÉ£,ã×̓4TŒjã¡ïsÓû¶Õ‰ZÍ4cãQ–ìláú¶Žbi²Þ²‘__VXKÏ_¾®þNA +g·IÄ +•¦AÕ®h¥E‘ŠöE†ö5I‹ ÙÍÈ“P³º¬žG½t‚I/ÔmÉ)Ñ›MzôÌ­\V'èûi53çøÆò¼’<*Š]E +B7 Sÿ +0¥{0\ +endstream endobj 47 0 obj <>stream +H‰œWÛŽÛÈ}èG*Ñd“¥À0àõ%ðbd3òà Šê‘èáEÉk¿>§ªš7i|9Šš¯]„¢€ã³–6Òð]4 ö8½½‘ŠôÒ]z1Û»^j±—/³É‚s¡¦s_œ¥;_ø¾£ç‹µã±)C؆슢n±W*‚üu À בûYÆnÄ0æð­íÿ‹A$Ã1\l? +\/öÖ*ö—¸o=lˆ’ZàÐûÿ7Dá(D~ds„‰UäzÁ:TKXø|åç¶-Šä4÷WΙE<Ÿr‘ œ×ÉóÆò¼¥"ëDàæÕ +œ¢Úµ¹º*e%S˜`{ˆhÆÆ0ç«Xd÷e…×T²¦UÙœ²mÛ˜)?IÓª-›dÛÝÙßudû*¶ÏYX'ûÝ Ðâçý)) +CסӒF(q‘‡mRÒ<°6dçxC}®S$°ÀžfCAd…ÕãÑXNZÉÉ]V&ä{ƒižŒ±°aî{È ‰ TÞüš²ÐKß<×Û,vCœº¢ÿ¤æƒLoMÝð›öx¬NLø„“ÒÉû6Ÿ^CO÷"¹ ±yuñ¼[ï¼ ÎRˆ–|1–Š&°šc…ç£IRã2ùI6RÑR6¦Ü‘ÆóNø?7{r¨{„Ѻ2ýs©2Ê”ËDå‰M›%H¸™7rÑäË6ßP 1ž¨}Þ\½`*ÕáùÖœ«Òb<9×òÃ=©hjaˆðœx °ÁönN%jz¾rÚ´¾°KÙÁw™ÚŠižì¹ÆǽkäM‡á]!E8'Fý·'ªæ–x£ÈkWM-ìaЉ) ‘ô,«À WË@-ס,=ûÁ³„šãj,‘ãñ 6³ßgÿ`ÖjК +endstream endobj 36 0 obj <> endobj 37 0 obj <> endobj 736 0 obj <>stream +H‰\PÁnà ½ó>¶‡Š”j=¡HS·I9¬›–í8ÒˆCþ~ªNš%ð³ì÷x˜_º§ÎÙü=zÝc‚Ñ:qñkÔNÖ±£cuºUåÖ³ +Œ¹ß–„sçFϤþAÍ%Å vƸgü-ŒÖM°ûºô{àýÂÎè4ж`p$¡W®jFà…vè õmÚÄù›øÜ‚(õ±šÑÞà”ƨ܄L6-ÈŠ–¡3ÿú•5Œú[E&Å3Í6 %&OMÁ”‹ŠEÆçŠÏmVuŠRV¿éäwhpÿ„^c$ÿegÅx¶lÞ×|båÃ~3xÜ +endstream endobj 811 0 obj <>stream +H‰bd`ab`ddTôsñp öÓöHÍ)K-ÉLNÔ Í))JtÎÏ-(J-.NM)Rø!ÍøC„å·õï¾_5¿ Ye&jð~¯åÿÞ&¸áG³HÍ4çü‚Ê¢ÌôŒdMCK  ii& Sò“R‚+‹KRs‹<ó’ó‹ +ò‹KRSôsr‚@z‹‚R‹S‹Ê€¢p)d+$*•’š›X”­Ÿ¦à“™—_RYª T”£à讘—¢Ÿ_¤ 4 ¸4©83%3±(3µXø„ÄX™EC¦UàSèþÎ̸æ=ówI±ïÌê¿™Ùùšü8ô€qù×3_™—Õ=ýåÞm¯ä~³gŠXcl™õ›Iîë Ñå3çÌ^0³*_îO{ygV^vçÊer|Ý~ì‚jÿ®ò@tÂwÃïß9¾GIÝ/»­ª“Ôû›åëwAöÕS,]0¹&UΓý7ÿoûß +¿S¤â¾/}rÁ÷™¯¿ÇÂL9úýªè›ÈÙ‰y9µår߃ؗôÏ_±¢¯¼Hî·Ô×ïœì/Òªi$…Ëý‰d7Ýûì;÷‚³Wå›D˺Šò2ºW­ûn̾`â‚%Ë'VÉñÕÎü3ó·Þ$¶ïë'<êÿÓßÍ.· LSlæÎk\¯¹¿?ù¾T À˜Ü +endstream endobj 770 0 obj <>stream +H‰´“MoÔ0†ïùsLëõg>z£»*Etƒ8BiìÝ dãÅNÁ¯gœì¶¥âÄÅIÆž™ç}ÇY®6j”0_wÑò5v>¢@!e²‚ƒ3Ñ6úñ<ôºè²ŒÎy%ûJA¹(¡’CYCF”‚5½¤¸¦˜Ê9)Š´€ò}ŠS’,‹y²(bš|)ßDWeôþ\”·sP)I ŠYÌ8˾Ú`Gجn°§‚$¼…H$Ërà‚p™$¹T§7ÕA'R߃,X$±I\$c‚ˆ\åd†õ'E×]ov®BY4î†uã+w¨¦ë_&"‹amö®i›_§3í ê4Üšæijozܨœöðh`)„œô¡ˆÿ¨Op…-prOôÅÀ$*¨ÍáÎ8à”Iùí43´#)dŒ0–‚ÄOš¡K4'•äòp4À!Uœ Â“ ID¡2`© *ËØìúÍ»Dи¼š| +5Ä©,‘™„r§®ªz×ëõíV­ÆC=8‡Ã±é÷`¶ÉBÆ[S÷°uöýÞ€®B¬7à÷vì碵½GŽÓÞÎi´ayå§í¹Kã®âyz¢k¬nêªmC…ŸhÆ}cF£çK2xã|h8´[u~hû©î‡ÀÊxY¼\m`…èÎÀhîÀ7È8ñ[ÃñŒí/’”?0 B‘œ¡¥Æq†ñ=½˜·Îœ9÷}¼X.Çq \dè´vI&cbÝŽœuqœô,«Ü££ÚÖC¸ïÁÝÎ"·…;t϶š<¢”/ðøÊ'õ®Ùí{øÌ õžΆ¶-Lû=B[ð÷Èã{£‰ß Ëñ0 +endstream endobj 752 0 obj <> endobj 751 0 obj <> endobj 765 0 obj <> endobj 761 0 obj <> endobj 757 0 obj <> endobj 753 0 obj <> endobj 754 0 obj <>stream +H‰\“ÍŠ£@…÷>E-»F­{; tCóÃdæŒÞd„I)³ÈÛOOÓ#$õë?Š›|wØÂ0»ü{»£Íî<„>Úm¼ÇÎÜÉ.CÈV¥ë‡nþ¸[¾»k;ey +·Ù®‡p³¦qùôð6LJ{ÚöãÉž³ü[ì-áâž~íŽÏ.?Þ§é]-Ì®p›ë휊¾´Ó×öj._b/‡>=æÇKÊüÛñó1™+—ûeº±·ÛÔvÛp±¬)ÒµqÍ{º6™…þ¿çuÉØéÜýncÖ”Ø\iI¼#ïÀoä7ð;96÷WØ_•ä¼&¯Á[ò6q½Z8-‰+r®É5Ø“=˜=5zjöÔK}jøx¾×㽞žžBƒ0+È +³‚¬0+È +³²d…,`%+ø•ü +¦³ÀYx†‚3”=y¦¿À_xž‚óTž§â<•n +7¥›ÂMé¦pSº)Ü”n +7¥›ÂMé£ðYcOY¬Ð³åïiÁ`|LF$M²ûœ¿îc½eÜ—™Ã´ Á>ÿÓ8¹”Â'û+ÀŒÏº +endstream endobj 758 0 obj <>stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ>stream +H‰\’ÛŠÃ †ï} +/Û‹’æ¤B ¤-äblv ÕI7°1bÒ‹¼ýÎdJVHüÿñWǨªOµëg½‡Ñ40Ë®w6À4Þƒy…[ïDœHÛ›ù1Zÿfh½ˆ0¹Y¦†Úu£( +}àä4‡EnŽv¼ÂVDoÁBèÝMn¾ªf+£æîý àf¹—e)-t¸ÐKë_Ûd´¦íj‹óý¼ì0çOñ¹xÉ:Žy3f´0ùÖ@hÝ D±ÇVÊâ‚­àì¿ùäÀi×Î|·A ‰÷{ì+æ +9åxJñ4fŽ‰æ„8cΈÌäŒãÅ3ŽgküÈ|DÎyœÖÉS攘ssÊUì«ÈW±^‘^±^‘^±^­úœ9'ÖÌš˜÷ hŠÏ¨èŒêÄ|">3Ÿ‰/Ìx…f_M¾š}5ùjöÕä«ÙW“¯æ3bG—ÿ¸e*¾ù¬±¹‡€å]ŸÔZWªhïàùêüè%fÑ'~Äm± +endstream endobj 766 0 obj <>stream +H‰\’Ínƒ0 Çïy +ÛC…BZ !­]+q؇Öíhb:¤¢@¼ýl\uÒ"‰müÇNt¨ž+׎½‡Þœq„¦u6àÐß‚A¸àµuj€mÍxßÍoÓÕ^E”|ž†»Ê5½* +ˆ>È9Œa‚Å“í/¸TÑ[°Zw…Å×ἄè|óþ;t#ÄP–`±¡½Ôþµî¢9mUYò·ã´¢œ¿ˆÏÉ#$ó~-bLoqðµÁP»+ª"¦UBq¢U*töŸ?I$íÒ˜ï:¨"áà8&C|>§ržòyš'̹pN¼9ÌLF™ÄgŸ¯g&Cœ +§Ì™pƬ…5óVx˼Þ1ï…÷ÌR+çZ¹èÌYg~¦Ÿ-´èÔ¬SK]ÍuõFxÃ,ú5ë×¢ 7êÞnMó0·hóøçp÷[‡â{”Åú`Œ5 Í +endstream endobj 769 0 obj [/Separation/PANTONE#20541#20C/DeviceCMYK<>] endobj 802 0 obj <>stream +H‰lWËŽ$¹ ¼×WäTŽ(‰uÝYØ' øà³Ñ^Û‡žÖ ,0*«¦g.]M¦Dñ QŸ>ÿ½oå´ãøãí·Û§¿BñŸ?nå(Ç°zÌUÿýzû÷íÓ/ïÿ|ûõ_¿üü—ãÓß>—㧟?·ßoÍâ¬Q±º®vN‹£ÕÎÿ8~»Áêô´ûûamÚá1ÏecµÅÙbÄñöEÇáï9«÷r†­£%æqogÔ8úYæ:îýŒŽõ·~â´ãîgñ…o½…æþÜÂH«42Ê:ììsw;§‡œy»ÝG9 LŽzÎpáîë¬Ø:Ú¹Nô€¥ 8z?þÄ÷yÎ1©h­ã»Ÿk¹ÄÇW|·³­uŒ~.¸ó~»wlÀ±cœŽ@¨ð&§‚ ÂΊµ™„{mà§Ó@­Æ›Ÿ:o"±ª=oÈÈ{…yyÙì]¶[=[‡mã‚o—§é6ƒ_£ÈÙ–á" aôe©"…Ć^–FE+øÞëÈÒ^Žè»Ÿé(ðRÁ25?ÖQFÍꢢ²Èf‰ËÀŸJ¿5ùÛôpÞvðëí¿7”/¼}©>(<2xTΨBÓøuL€±/ +XùvƒIÄÉF=RÀ.³~ ŠÜ¤u ¡@3Á¥¨¡/£àó@ýÜ™m? ëÄ`}Nd¼w +P`E†JÅB…BA¹¹È[éÇáøŸmóvƒ¡vVÖl¦Ó«šÎKþ2ñºƒù6'Èbgè¤ +wpÄi:þ£Æ +Ç íU lþN´O—lÀ T‘€9µÃMµÃš¥=ðŠ§ÂƤe+\6JqɵNÙ€Õ0í#OuT„r˜ý$€ {¬4ØyŽî4ÔÝÊé §QŽ<ݱɽ¦oÕÐ[®XŽÀ¹8—B4‡ùPî+QTöì@ÐK+éâEŽ©„:@aL4€¼ˆKn¢Ôæ³]ßá 5Gî¨F®"Ná…J>$—W ØÁb’ä,¡ô ®Pz BY„¾4í…Œ©3:.YEÅ5¤ËŠ«„é•Y¨k¦ßYÂÁ3×Räó4o{‡+{ˆ£±åAÚ‹g°ÝЂ †AÑ+PŸ`€&¬+4sš4•ÖÙ%&“÷¿jAéCï (,‰Ê˜¢]ýEd^¼K‚Vjî àë)7ž¹QϪäÆØê… rY™‰”F@‘;[Vh.a ôØ™yhZ’'ñƒz,^S JìmÚD«¸)Pt|ºoØ/K¸Ê3(£âÄìwÝk\¡J¢>†,#ÎEœd ©A!7Õ«3ëÁ&½:p¹Ê)v¡¹Íì4ç‘h¯Ü_ub€--6fòlóBåêi0,ºÈ†µjW€åž¢˜QA¾þr$0Åž!}.˜«&¹õÊ\iâ±€Øb³äB KÄ^ß\Š¬9d6Ää%g‡çŽÔ  pmÜÕ¾ÁÂL´V­W;sŠC­Õ8†@n<êÑj¾‘ ±CmÙF`êd‚l“7/dSš®¹#J’Îl¸:Ÿ€½ÀD¸ÃæÝGn`9ëÞ1XÅ°òDO"›% ãdBð=2\õÊ*Y .¬ìPhhšÊÄ,Ü7tw‚9À5”ƒ\'çL›)¶F²OÉpв W›l4†ùPSÛ>•ß Ç}(%иVLM+ ΰ]&Æ*yÓ¨ÞL´C³ˆ”w°‘êZ– 6Øh°š€]üg“ ;’€è¡.'v VУÌÀöZ{H§Cª+רW ˜Ë_7 ï>hmè¬ì‹ÊÏ̲S¡6‚­¬=¸û{½â§ ·Y(@H¼º¦ëºÑžœ ”wkBFª®½¯¹FÌ6-!EEfØ«âW+`GViÖä® ÷ËŽV,uWÕ$ËÃAd%ê˦KÁ±Úu¸l¬ÉV °‹¤5–PÈà Ù©R‰óÊçÁ3?ŸµŸ§Ú„Hì„ÅÉœK8, S× eÝ”Y­Á÷Ešˆä÷Á¦™·ÜØdYøÆa*pûä´#3=ÁžŠÙÔ©cÜ$Ž~<°Ø¡ )[Vi™BO+–£à˜¸•1>¦½‡{ù°Ñv#hÚˆìD¶ÓbBö«å2Ì™åò&Mó!£¤JÔ­È;7ä#ŽZchÍ͹žÓ~rGY±(Ë^ñöéòË|ûUÇËhµS’#a¯—QŽœÊI'íì Õ=®é½õŒ]O,å!_Ÿ B,šÜ0í–ºO ÏGYÛÇô©êñýæɧ…ãß5M8LÀèà[+5ÜÃ* ®¯ºŽ—Jµtﻋ€o1òC}€Ú×Ûàø`êÀÿ®5>¶Ï:ìµ E½?ìÓü]¯÷í½&9Ⱦ#öÕŸs£į[Š`@¿b—«&;ËÍÕt¼²% ©+ƒ])Þу²Ï×É–wöÔ\ + Éte<ïâ’©Ñ þXPó»,À™á¯61¢ðñûíª0¤.Æäa˜ +òâÐ,J¨× …‰ˆC|½`rm+±T1õ̤zšlµ»hšSW> ´·1×ÐŽì`ÈSÑ•ºé[‡ÞôPq¶$§XüÒÅ=þsÔ†«ïÒ8@G¾¥œ—&çüGxkØÊÈm<ˆa˜íMis®{EÓ} Ïíw œ‡^"£é‰Âxdê~eüp߬°„B+žÊÆ°TìœO[Žw¦§$bÃKmb„aÍ¡2_«îi`xä{«§}äÔ_Ø­qR¸dà{¥,1ÑVÏk™ÈhzçTÌΪß|l7DDzó{Í3Jί×p Œ³¨—rÆ+©‡ƒâ¼‚ *LýТ±B€›PA‚Rwâ—iÄèfv™С†'0Îf{gÝà£)?›Í©È‘´é"ãžš¤ñ ¿÷gä ÇK%U‘|‡qÑdá9P‚úMÿ€CúsâPx#ïÖªÇë]QÇó»OÑë5¶’D¶—œZÙi ÝÚ^NE‘¬_äøv+{ŠÏÎÀýɯÈoà=µ®‡\Þcè­™s}/ìtï%ùžš’o€ºÕ®6à)j×س&;Vw¿P§MÛÖ }7t7¦§&Åâë¶ç¤¤9²@PÕ˜‘P–°Ë²“].køh-®Î×ê(ÖÔ‹Lõås—ô¼?FÕ®gI¢å3È,Ÿ’AôûM–/èØ„Ê6é|ë@U‚·’ òQDëÐèõƒ*8›­YEˆžô.Þn-}ݯ/76ÖL¶ïx 04rØEª¹gÆd{¬OùýÆšä…vc0‰ÇUY·ñ2{äÿŸì*Ç®$ǾN¡ t=.àv9mô¸}þ‰ÌŸUmI‰Ï Dä Òî%±ÏC@ Nš5†9÷Å3/$ ¸€ƒ;Ç»»±hKH3òŒy•bvàeÒû£Ñ8=PÔöÓó²Î¢=Éø#7¤~0ÜüTÙÿÄÑ£ž—º_’~Ü*ä¢ÇËÑZAZÙênv”HWÞ:P_9äk OÛÓ›èÆ-+ r)maýe·ÅåZ5¸¸[n&At{;TY •hkðQ »)’!5EM¨Z=dâ-ÈĶS]†L£Ø¥ájt·­]Û&7Åó¾Ú|%«…µçqm¸Ô>¿;»–¦æá%¨ëîãeÿx&RÛqåTày‡ºK͹-î.ài•Æšf¿×Ï­·&–,47ñ‚kzW•­p#4kªA”VÎYâõ+öŒlñæ£Ó ÕT°0-µ²„ái]Á)nßûÁñHŒÁEßE¤ ¡Ü3°LD–¼B ÕMoÝÏ`¹X;BŸm öXïäÙ +pŠ,mêT!ptç Kr g©G¶Œ€â”|3°þœc[Ör¦ßõu|[d‚M”iê$˜rõá„,!oÚ[+±÷o„‚P)¶™åxȘæŠé,R¡öcRó:=]m—# È1ÿy¬d.QÌ`λÞïÒР֧&a•QÒ`‘·þ 6Ÿ"  ¶3ñ"Mê>)@h¿nàâ{Åk Š¢R½±S¸`³’òpF4:ȵôe 7 o·lÅ­ = Š¾GïG±¦?€IŒ²/û9_Yñ(ªB¦8K@åùä~ôNösM‘SÍÐ?æ®BH {·%Òý¤¯³íºößurIlQ I“ÂTúþýaDžiÞ9“}.Êçl ¾(Ëtoæ&ـ몤«;Tz¼Ç ÓJ-< ^°Çx´bi”ö²ñáÖdr7ÙÇîó72æ)•S‹‹]’” ÀÔçp@%Jr°ËTté׶)é<6å ý¥;6mGËÍ2c@NÓg#ªqR‚€<¸t>Ä–‹0âÉM@þ ç›ûþÈ‹þý™ŒâÚÚxNÐSê[nóó¶fRÕ²o64É{1¾qMb¸û"?_ÛnŠ5ß¿—‘žÕw¿îí lŒÜZÏS¡j)Qø:Ë(”5ÐEÃY?_ì1ïQßc!Ø ¹nÂG›ú"cý|åMÀn ol3fÅ1ïXý|áY×çǤû!»âï²!ÁWQèwÅ¢À©ôÝë¡C~*aÀt'³½ní*MŸŽºÁ4 Q‘OðÒÝž6R~ñY*«$S¶{àC° I…ÎMõ4ÜdRÑ!SxZö†É4_˧½ÀqË +Š[ü9 ÒÅídÖ n@JEaMr6,r>x È-EQ§+wѳ¼ö¿u^mñák0eÁêŠ-B‰f¥¨ðBþÆåH¿H߈AÌ%\E* jfû14ä¨5_M·0¤¿ZŠ- íFm“ÙêK1qºIåÁÃOPW¥©¬RáèzéÎÚv%<èqSWNÄçÒYFømÌ£×nñ¤ü­R}@½JQ"ƒý„©F ¢!…‰üz„Áf£*UYƒ¯ü´™°Ñ)ùõóò`ó›ŠPµ Óð[ +QFHóò˜|œ”x¤Ü,àe\˜‚éܽ^¨ßÁfW|ƒ¤°ð +ƒT7¿Ó;‚¨\ìmB˜tGóeUÿæcI@'J'ŽA/ÑlÌ(UÐBg¹Bë@ì´„NÀ«HÝ9,+v¢ú†ær³Û×â;{0€XJ>HØò> ZÞŒF\û—š-X÷’v‰&‘7äŠÀŽê1ê)—ÞFÖ´"±¯SQ‘"Â"¦í•²CêUµ{i#ê“Ž0½m‡št+¨<¸–FûËÀ´¦oòéQö(%˜’³ÅŒšm–´¯B—Ón};É“àSƒP/‡¶­2ÜFnÔÕí]Ù‡ýùú„6 Üå^@s:`DÝ*]H(Ö$é)GX»(m?þGËÎP3p¶yá¹~W77VRê—¦JHZÃ>llµ¥\¾Í´òÃ= 0•˜µ2òÌeöïÏònQhí×2þ Iö(ƒÐì|eh°ÑÐý¡ÉUk òÆÎî©ž{¬+ËD×AD¡ñÔS•;­ÌVv‚œ\«aÓ&zÌ¥p?Ž´ì‰fOØÑe…òz#`9Ý‘®Üµ"|ç¼´ÍÅUK¬¯’ó¶Ñ ²iм„=@Õ{îwDdª¾œ7м‡MMTdèêtr¡<Ž’‹úÛIXl_5ÊšƒmxýŒB„Žu4pq¨€7P³ö×Ȇ‘žðYfyušG8]`êÛŒQºË²å¨Ð…ÞCÔYPz6¾tjÓ‘Ömä>1<–²¿ñ ê2ÂþcS¥Úo£ØïñôQ%é(Uw€O¶’›U?“0r„sÌ£)1à•DDh^ÄZEr_è§eÕk¹à4ëðê$Ú#ϬIÈ]!BÊÄa󀱨[õ,å_sð‚tì‡ÒxWb×A‰‰(¨› +333,$"ÓÛLJtq!LËät::üL}ÇÆYÐóx/`â‡W³ïuíý`0ÛSËô]«5q U Ú4U„ +Î"؆Æ0¨í›¶Ö}0-:ów${é<àÅ´«<ç˨½z½îðˆ'B³j¿QœEèÝt)—Fq¨ú›¢%0²Zé·…¸'ç¹"¾P‘î§ðn÷‘È +7WGЄ”lò]t +iI› +suìËö7‹=†þªÃуÓÜay¬“—âºPÒ+çÝ +á7ZŠúoGù©ƒÔ«HÝd,Y©DîÛ [­FÕã:U+™×˜i¶“GÂg¸%µ½éé°%±R¤§Œè +Mx¹¼áû 1ÂvIùÌ£~ìß™¶ßÓÅ4Lù"¬õ’úæ—לãbi…·+Xª]_ ÅŸèÜ}ÙÄ*d@¸ø\}£ +!£’`ÓJ« déÕo²4§«B%N lZëmtÒýK¢qd Â¯_KÁ9PS›>ú6¤8ÔGã•ûÑ€GðBóâa¡x¨ Õ%¸ñš(¶NOåÌ^¯ß…¤k«J…zÜ*,úG +'cm +ºM1¢š´5¡Qáœ(Î'¿ƒÄ”C:2Å¡*…S©…ãTDC:í ”ëÎïZ±¤eçX7VsŠ4Ø ªŽ¼jTñç-=Ï(°ÉÃN]*›ÕKaü©%Øím¨4WE_®ã4cªµ¢̬¤*]ñ…IÕ_Wx[M†§’Bж¡0Ùûé„”Ýuû­Cn7ôxXÄm³¦Q­åKZù‹dQ`1[Ë®¬Z !”%óùãÃÔýè1¸ôÌPR3âíÕüÑîqEËIPU´™Z&s ±³é2(œÄ¦†g™ôèöx…7ÒÈVŒçzVlÀû¯˜P2½ rˆjdÝ€ª%MÀUönU{ó|Â[\É‚xT*°”-çDZmÆÌFv@jhÆ‚Üÿ1]û¢ÆÎm`ƒdÊ :=^=ð=7Gâ‡Èz5>}šÌÃÙ>ÜÊU†Î†° ½&v +å`a«v³>Eµè³~ΤŠâ”jØêC¨‹ÙHœÖ¢©^8Ož-70È‘6‹ÌÉ1nÅqBI¡–mŠWÔ2nå×m­_{ÆXHÙßÇäbþzc†v}¾¡$’L< lÍà ìòÌ€eµ"›“ûÀÏ‘ÑYû;R ¾–ÉÀx™†Õ†Ï8ÒçÖxVHàòWcÛFS¾QoüÊŸ´€õ£jŠfÔx£®ç9oˆ(|ÍìR*#‚”Gde×7ãÝ×ýFÉþjT؆‹³âŸŠà{@Y®l‹KQL¹ÆQPPOV÷. Dú¥gÎWY0æ®\è“‘†HZÔ±¶9Ê’H ZæŽ3Í€Km1VHb«Aƒ !ý¬fA²ä¬±Ñ8Y{î0%ÝÇéçÁa/úŽñÏéÿá!ÄgBtJ]RnÕ7ÄÙÚêõÀ¯çqºËNý›N‘%_Nú·MÒ—‘Óv–­'b¾†JhÆuPõ"ñ½£‰NÅëPmF|\ZacúŒ±Î'b¦^)bÃÝÉ›Ô{÷§V™œ;"JýñÓ:€t‰ïõóY¯ˆ–@sÊfèæ’m¬.Å:¥@iBÍ/n­ùAULø4"©ô—xRIÖëIK½¡ùìa•½”h\\'›ç}vÄ[ÈIn>¬‹Z+£Í«1S³¦þ¶æh>‹!o1”¾,­6¦Ó§ •ü­ˆ„15> Ë£–„93B›èn!¢æDôϱâí‚‘Èîd“—%ar$…Ä5Q?Ѽ@$òcžÄMë­ ô´·Išg}ì Z]á‚·ÔíG?®cx +Ž7`õ¨Ùö¾å)aN\ë{Ñw4Ð6šÊ@؆ެֱ‡Ö¢RTÒƒtÖ â°¸<|¡¿Fî=q-ãXµ"øÒ$¥ª¿˜­Üâ»E›?…XÌ{¡Ž )|µçs ˇe©Äûö_ZW°á"sR ;úðþ¦ôÄ*ë•kɹ=h ¾´’Ä2Hñ±öl¶ls¤¶ N$bÜ@`<×’-ÇÃt€’ò3ñýÞ’®ŠIš— sFøÑù¸Ü–]xÍתQŸw%*8Õ°èã5‡z:CVDÉÕ2´¶¯²‚ñÏðÏGA3¾KY/ŸbÖ×Eu ‹ owgGqQœ‘L#7sö]V8ÕÂS±ØôÓ¬^ȇ«Qè‡/à¶J¸ëÍNB'}çÏG „€­!exJ‹~LʼnEY&gåâ¾Uÿ#.ul½¾NI›ÅÞªmÝûÏ ŠÅÐÎŸè‰ âû·Ûú :¡PB÷W iGa©J™FS¸”B)ïRé+–¶RPqÒbzEhÓ†>²Ü<ΚPRº™ÝhcýÉÒÖšl™ËÑæ]}_Š1ü“•çÛäH{«Ùƒ2ج +€iö=|¶¤Ý´¼ŽHüR}äV|[/ŽûcB*nó6nl5K#`/3ΑêWtÁÈFOßÛÄœ@3;bàé4¼“5pÎÞNÐ]\ÃdŠ¡›Ñ6/ ±1ü†|"êZ§rà¡öüfŒÈ#ˆÊq&R½Ú¨(–´“³@8¬^U”„È`!aÙ¶HçÚTM²dÓëm]÷ˆ<4ËâBŒUAˆ˜{(Ò‡_?wÐUæ’Á´x9”D LŸMË›z_ÍšëéFy¥ârøqŠÇ +' +R…¡{Ç×ÔŸ*?0Oæ.Ý—à¥ÅëX°Îx††‰¡þß„Q:Q"¥‚%½ô~Ý­ÐÂ~}üËqüP¼R„ÐH€Ž¡Ï²uãiÝ+P ‘?½D²câìH*”qÑx +oeà™ûª‰Ì¡FüJxS¯çRД۪œ‚Ÿ+¨*SrYBw:ƒóµ‘z%Mµ|++j?äô)ð <’k©™Ðq_9ÈXÑ„ +ë¶2é9M …3( }ŸfXWŸ6‡ï¿çøïg¹7>Sß1•x`ùvŽ.•iôÒ,­Ü,Áô·òhª¢9Ï”'ÊŒ‰êh0¡Ì{¢Æ·97ŠuÍ#aá5&š[K+&gXÃýüë¥îVÒ¢zM/gÅÍ +Ä“_ÒOÄùjaÛ^/ ‡Êÿd—Kn9„÷:…. ƒï$1g00+{1}û‰/’¥_v£¶ŠU‘•ï× +3mí·¥jK§—0/[5vSÖÌ ¢…zú³‘µjkFK¼Û…ݹ\÷±¥Øc<;Õ³]àf(>o‘Ùîcÿ¹ðú¢\Y¶SZиrªÐ)_Ò­jçºNÝ@ “Õ,)@hÇîxdß,¡Séº[?3ÇVå·m‘ÛÞ}]ÙG}¨a/*bÃ)"’/+9‘­Yªñx˜*¿åOè¾æSÓÑ „fM4J_GÍ‹¸¤X.ø4X·ÌèݲR,4°>¨·åoÓ|¨•ðxá­ú}~ÎD0ÓhP‰Ý]-›qHõÉ*(\9ÑøÑïá5‡ï&ÁD®¬8ÉÛ qäZˆ,˜2ñ¬¡Mnk÷£†M“µ•ûG7 f3úr¹¼²Üelê"‹íÎ.7ëö›~ŽÓ¾6óþRÓ“$¼o>¬h+Îû«#+Ý“IçsÒœ’ÌïoK÷>½}®»ÄF­6Q¯w‹îK™¹P†'">nßèÀÄ­Í?NÂIØKþÒ‹ÁUÕ†fÎI¦4’1ì<,‚Zæ·{6 $þ„¼#0–ga]– #FÇœ¼Ø î~ø2›$#ñ©Í S"˜.Åû¿j%Õ»±–$à7f⸑µ—š)7Öì"‰ð†Ý§»?ßæ›·¹¿Þž7Þ™ÀÀ×ûûÄÍžsÁUìHt×ç›]Ïp¯N1Ý“g|_[§Ê›€„–rØîo9U½&lø»b›òdéõ黶i~«ïÍ9º>øä¡ÒÄ Gž\:¬D6n íñýZé×Ê努(ý" Ĭ/ê?vOjéÎ+,d;ÕéáûϺ*ÎQöÉqÌëêäï¯<&Þ-*ˆ.m|-aÍ9‘éÓž6òy‡±1¹¬ÁÄ\›ó†lo³yŸÎŠÝo…ðwq$šT,°ì¯PÛ¦Õ)ÔÐÓíK,¹S-v²æ»ªÁ,g·©Ê©Ô;³Ä®šÆM 5dð–ÂaItÇIo/ȹ„ž¯K0ò\bîËñó¦Q‚Ûäç´‹Øg¹êy³Ì½üùö þ.èK ì¶7æ}¥™•­•ã 4‚Xµ¿õL¨®ÃCø%?Ó²˜sý¿&\›ùZ ¶9bí¢³U8Û ÜÄFòĸ+º“R8ð _O'ÖÕJA!,HmÇeŽ}ýg5 ^žL$+—¼ÀùTá$¨»ì¯TT&B¸Åyày37h$ÞL{¿œ‰"G܃è ÅQ›«¹*óKä«á°N¥!Æ“¬£ü˜Þ*†õ$ÓÐÁm°¢xÙÒ~8󯳾ý÷í?oÿ{¯ïEÿU}®ÌÎÔ+ºÊ1D¿ñÓo¥…뇽_Í\¦®¬pÞØiZ–ÖUoÊw!êqÇv•Cäžz‚8¾qa_œ€Q{‘ôÙ,«Ëí ÆDkÃôogC©A°TѤ§Z¼S€úß„gµT‡d¢Åh}83ZŸ42¡vúߦºéØ£*5K¤mpžð°Ê¾õ-H¬šªpÊ|¥¤¦CÜXQ탰`[–m%=DÁx\Õ·ºÖˬŽ˜ Ø!Pª%×H¸ý@NRæF” KëÍ9O:J 2M®0žvè°€uE ð¸^ÓÃgîf¸Í?ôdm^ Çýoíªð8WY)›üªÁ°îça/èq Ê>„ H§©Z©ýZ“N õçÄ ¸pú—V}z“ÍËfIN¸:=M¤¸3<)—‹\ŠfîÖRêžr…{$…H!du¶~Åb5p$›„åíÁ^[¡„sÖ¢& Sƒ¾lRUÄ©ç-{d6Åžp]#±Y2ìaZ¡ËwTk§‡“šý…CFìØh[øÚj!šn׸X“4Ãfµ¸–Ã2î#Ib_+bØz©>½ËðÇ'Vݯ%çœô‚0DGæ¤$´jâ»äü¾•ò\™ þXð4¯Õð9{8ñ ‚ŒüõšÃ†‰ƒ•ä&ñ›àÐcc|+”xGfåxúº=¼¦­$áâÃè½o­œ +¾Õ¡Æ<7W5j~fÆ&ÇÄó¼E…YôJ¹¶šä09¶%Kt°­Í÷®æáD‚ÆkMåú/]ïfWrpðËq4ýKM­¥«Žx ¿KØO¿µÅõ˜ƒÉ"kzVÙí½,”Ç®Bò´3aïdŠð Τg~Kš6ÌZÐNNO†°yǵ_Ô¤1¶v a;½ˆý²Ùqüуpc#:jr†–º]ãíÑ/?µ,jq89<¤¸ˆ¶DœÃ-Tº¿½ZÄf§¢SPW}¤šždRžÀ¶3*êãd˜ðÊÈÿ5jŒ@MSÀ>˜&MŸþŠh‰‡»iU×é„ìb°J7ËðWr‘¦;½¿Hå¤t5ó5=*lÿ¤nw”}‚gć?Fdû›ü~´ s0käÒÉ”ªS¾R†N˜/ZmÂf½ +*àšÉ´}8l‘m}>yT“_ËÉŸ¸\—‘5pÚËnÙ.§J 5A9?{Žgµ2¬î¹¢ãišöÚ ‰yÒOf¾îe5ý4GøFéàà<ƒ‘WÉô¹ÍPÛ“ORãš“Zª]ƒþ°s©€´T¨4!œ´ºüˆäjÑÛÖ±ßa3ëÙixýº¾û^–C^ ’ß×Ì}-Ř/GÙ4›^~˜^P+kºÐ’4 ¤—ž +£¼ ìí\°£«P{|=Ÿ]5õŶqJWÎà¦B ô¢5ì}älDË~ªX~{ÅöÃ+ô@~¤NCbûEÒ¤´Î…ÚäÝ ªìiwq¨É0mg'eAž‡ÚóQLãt*˜@¦-,ì$ãÃIÔ¾ÝÒmë“9£y˜9³Mp!‚F6.“c䶣N5zöÉßçLñcÔ×ã„‘“/7ÇëG_ÛTKÃÃygMtVÍë6FÅd,lÙÔ‹aM½PdOäEš-ýÒ ?MD½)IG·r^Ñ"9€â±=®1vnB9¨æË:ç-Ÿ¾¥úاæéµ;i„r6÷¤ç¤H%Õ@ÞÛ2íqLb§rœ~¦R5aÝ-à™]Ó>9äʬ"N~P½P7)¼€³yæ«Pó¦Ôׂi¡{ò¡rÚN/$s²sÅ u’F¸ÆÅPk%×½tBe ›++BÙiܘ)O3op¨úÞi’—?ÙukŽ[ëξÝ-ŸT@ AæŽðÎ8Uò]ÅŽ.}¥9ˈ£ —;tF›îÇ@Þ9ûù}ÎÂeú{?ßz¿¬eI®N­Ô¼Þ²Úk`˜[,{äeÇÜ$Ÿ±ÌaÂF¬azaY’‚8±`¤ïtwÌAÉnD¿ã&Hæ¸!‹WϨùÈF©²IVÏì?ÇÂNœpµÛ O‰ÌM+gµ§~8žA[n0K+ט +½N•´ñix%aV“Õ 3Ù´0¡4g“AxšÊÆ5m¤"wn±@¿2ò~‘[Xt†¬ëâÍ•åz|Îzx9Ž¡¾&ʼ™¨»úíÙï e¥ßk,ï sÍüîí«VS§ã̦«Å•Â¶w)€=\“â[všIàú²Ë¥·ŽãˆÂûù³tמ~woÙ$@‚È2Ú²MɈh0пÏùNõ%ik%ÝæôLwÕ©óxhõÖ4…µdª/–)¹ØT7 Ö}¸¾mV?¡©Eô",Öк̣Øs>qqˆî0€|r-ê ‘téu¦ªû“yK‰£6#h<9_0íø1¯º¬¡$xè·.·Î·8¿5Ñ9¢ðd½vþ~tâÄ(Ò+±]i¶^:% +,|jŠ…ópq~dšÔíÌ!X麿[ýû‚¯¹œZ6š&qbü6~†æçùÔº›ÃðêäkF½x"éb_2ŸŽ +‹¿”2“«;A=j3¦Nß…4µj`3õª¡z™¦g@%±Ð!“”;éÇÃê¡cĽR范ÐrPr§X”¡œ ö6‡ËÕY5¢+F¥ÏìiDíu©! qœ‹øn­¼5™‹]e!Alðx$0b‚Õ/:éLÍT8i.•' +Eÿ4ySèÇc‡'€§é§Nî…]EUIâàaÌìB*ìØCÓÄM©îÚÒ±¨nåÒŠDÔbÂÆ\QÚdj'‹r9-鵂nš;>”¤ÿˆ©‰¢åŽ>¬Md: ¨–$§mdò[,Þ°DyKñ¬ì[az¦ÚfªC¹¯"¤ Ž, +k° b…ƒÈ®ì}åñÀ½%ü;8T‘b+0È&Ÿý‘ÎÁeҵũ /-RW7€°w7®·¤‚qÛÍçØwß–œf(ìÀýÃõmØÉõ—§À‘à~1Á¦© " `®Ä$©Ï6”qj|îâ#Ç+AP„ö•¨á6¹?"õŒ}Qä 7§¯d›ù^È&Ü>Çú¯°¨0¦:ãûÌÎX¶¸ŠjØ,Œ¬Øà`ðpP³ªªTÿ,p,$ãi„6è®ìèbetæ£<:9_Õ÷qr÷¥GoC?µMwÐã&Ûen‘X57V³`ý‚ôT +È$3E®Q‡]›8¬êÂð;¡Ø•ýŽ:Ü‘›`“!‹:öÍ‹w¸Ýz«Ùd™íoÀ]1HkÙUZ&T—IŽoÌzÃC¦4·Oµ"ùAl2*sgŽ1®ê*-`ëHáùUyœ˜—ŠÚõøÚ uO¶‡m(•$ V,I–”:RÉJ¤ÃæÜ$š6ù¬næ¢.>µÈ.ó~I°?*i ÂW4…Ã]n¦§ds’¨Wùèuþ‰AÒJ'ß|ôR¯îpñS/TÏBjÁä÷çMÕ¤ääÂ…/šžÎ×ôŽOßçõP!µ?a]SE~¡ ™’3YtLg<Š]KÀøNØ Èá>š)¶Ýlj¨ºHDÇŽM÷÷Ѓ+Ÿ/ˆU ¥ â…Ãe[oÅP(þ~ í¹Ï¤ÃL f$"Ý‚ø€Kêø)¡ö”§áI¤ÚL‹Šæ¯"‹I³]ˆXäÂ`ZY¡1ÒFumzS7fÜ‚©Û•+…ˈð_V®þÕµÑüDÆ‚è‰2™1V*fN Q8ˆ)FÐœ{Gín«Ð[Štþ]l6R2{nŸ­ã2—•€>œ%À jÁK˜Xÿ´R›¡vüÖðth¦Kzj¡Yd€V¦¯BXì5‚¯ˆD7,vÚåÏ°¡U,•ÕªNUä¹4š¦-¥hÐÒ¤£‰KØäH`†ó„#‹ÕT¢O•ì¡ÇJ' ¬ŸŠ&!'Ë°¡Òs\ஈ÷B(hiŠGðJðÕ¨1%òê6$]1ψ‰ö‘<6©Û»]6£ÏÞ5}KÔÂMª¡ªÝ=j¯ø~F¦Yú²=쎡Ÿþ:Ô9-4Ȝ꥾_$ø$“ûaaIšwû¡ŠÛ;òñŠýDƒ|KJ­®€™nYº{Í ´áò‰¹zŒÍ§Kjže,eþ”é9Љl¿®<DªË¢&D`}Ë‚d»¦•óN³p›ôñv¾TðØÓÿ£4£­VììA°ìNB¹Å™•ŠBcØrp+ùÂï•¥©v,aýrA³mH´]aöÏßüìÍX|»D¥q5#ùC*ˆ•PD•ymý/öÞ‡Å×Y+/·ZÕè#auµÝ‰¼mkè:Zc߀ì|§o[i°:þ|°àDêT/.Rᬾ—öf1{9Nœñ—wú%˜D–j'†yÐÑQûæz“"œa$¤Žf:v#Üën d¨I”GæË ò—³ñu °ï|P y´gÉÁqÈ +Îð†EÌ +²¹ÿ ¨§h¤v½TÑ=Srì™Ã ·ì­XÊ:T‡Â*Ì]aÜÔ +:zóœE¤ÊLní¡>‚&ö$›ž‚~DkyÇHâËI¾ä²pÝCè]O;í’Ý“4ˆW/šƒ´–„ý +9i¡·ýLNa¨¨|¥©ù}qm‰;Úˆ»Gjä–­fÎœ²'‡›]s' "sŠšÕÃ…ÉG­µçĺLgÊMOò ü!x¹ÛšÞúÇÀôÅÛ 5  šÁ2Îh«îŠƒ·h¦DÏäV^»¢’‹¿³KÜè†Ê§|£aÆæ™B4{–æÄu°sbI]âíÊ{(‹¢,ëð‹Eòh¯ië’îÒâĒʶ\.•˜ñG]™S*¼ò´Ì„Úû¾;;û«)}>™ÃKiÅÇ£ƒßðø\”ÆφX^o`þ=F=Éj^RWwzµÓâ*Y}§ƒÅsü:M $ÔÁ9Æ«0òxñ%ŽÒ‚Rý% ðRãséîRäËÖýÈ ¡?5cÏé \!ÍLB'xÆÃRugÑ€GN“QtÀ^ F™½Ò8Œ‡Æœ,®,ê2†þâbÔX¼©SF‚Öch'\ê|!«§6cŠ¼)W“·n+}±Õe©ôjGoIÏ0v+ŠS`‚¤ëÜ]T“jÚ,]²(—¨ãSÚîHñÚ%´Ü4äá Škòb¨^Ï$ùØ9]]ôÎÝÄ)dC†á48 +uooȶ$ó øà›8Y˜¼>ƒ 6ÍìxfO¿ÂçeÑœ ^œªMÌ ¾ÁÓ¶äXèBßÐm÷&†½Á¿"·mkîw½S=´mƒRf º_4îÍPÔä.¨ÖÃ3¹çä«Áy>¾?þqüùo:õÏë¼N Î÷óÃñ¯óÓñÇwG:ϧ÷ŸŽïÞ¥_g:ß}ê"ôwïOõdÿ˜ÚqœB쌼ûx|óׇç‡Ç³Ÿx÷“ßÎ ~>¾ûË?ÓùÓþü㧟ÿóÃÃÓù¿ýpþò뇇Ïçß?ÿòþáééá‰=|4íòÁoü¦ÿ3_6ËmÛPÞ{¦ïÀ%4S1ø%Èì;Í43í´¶wI4…ÈL$Ò%©¤~û”E)¤,ÚR-L–È‹çžûæá¾8¿¢Áùþ\ÿ‰˜Tð5ÁÁ™tÕzcÏ1¤kü_¬êjp¡ßØy}w©ú]‰¶–¬ãå; L8 +vöž\\\i1 &B“뉖¤J‹:oò²HÁ»UÝä™™üsýÎ//«ñkd„߀·˜iƒ¢A=D¥´ŽHí¢JPÛ\T.¬v ­ ç6¤÷$ +'p÷„O¦ ¡î…jûE1§$îIq1²žsHðúx¦¤Uᣙ°p“öï^Ä6vácçÂEÞ +ÕÐzÍìÆ%œ†¨ÜÁõÅ(€x•ì¤μgåP;*#8x8kîçeј¢©ûsÕ>NùÇ1º~íj“m4±û-ä Ú"²õËðHŸ¿<ö Öû£¾ÏîIð?ê£%a;¾½hfc™ÂˆÄ±•4”5a‹ŸïG¸Ád‘?ÊÙjaÜ°ÎÊ;?rYkyóÉdMþŧ©÷n‚ëV(TKAG©BåC<Ç¥ò¤Ï(”ÐQò^”œã1©–õ¯~bf>P¡ w¦Ösž­ÜÜTæKžÚÄ×V£•PÁnB5Ôà;Še'ÌA–b‡¥EiUj•x¡'¿M…$E–ŽO±_ +Pù%\$u^ÊäôRpüÓ?Žsw¡|€³ìÍYIÉë4û<¯ÊU›‚³GàZ£ 's‰½EÁ9 +ÜÜ÷¶1l»ëlU/[f×TEÚT;³0óvô±J—ækY}öweå®M·Û‰O® +û­1{·F(Û¹ÀûÊXÚ*ª©cuß¿A£ýoèÁíÃr;z! ×ߊ×íâaJnTùü¶ñæô×O;þd­ƒ©‹ø¼D ©ã#©Â)w›¹Þϼ³(µ•¥]μ3ó”ùš1s„9iì¬ÍÈILVÏÀÛ]±,Uh»"ÛüI˜[%bùýØáO² €yL¢¶­Ø,éâÝ…EƒÈErå‘«5råãvÂbbîÒjׄ^d›â~{*Èks_Zy”„c$!Ë楽9G‡Õ8Íšü‹YÜÛɬ, +h„ÛŽ6‘…KöÂÁ}w0ÙD†R¬5bp(O«A£¸uÞC¸Ø‰ó[©|O^aµÿ!{dD^½ô×ë C.™jYû{_)0˜™Tè"w­©G1¨’’‡T$ˆïTœ²ïÖnÈq¿.v£&ÎPúé@˜š¼~é.ç`eNÛ4ùwej‡ÎÝùò£q¢»Z´f1sãÔÚÌž©ÙOYHž’X ‹BÊ´:åQÜ:q—~„à–€ØKýmULåo*“¢BÏI9&ÂHh PL¼­÷±A &‘@°V¼‚3@´³ÏsWÖ{üÏ›bV”©÷ú&`cø7 É`ü°fÐ=ñ¹(ÖŸçCí<ÉF&eˆ$Ç·»z8r?<¿¢AV4ä*ê¬8{ñ3óÚ=2iÑSˆ-¼S(ÿh\bì—R2ˆkiâOd„ò,HÈqQ„º<~s}ö÷ÙÿMþì +endstream endobj 772 0 obj <>stream + + + + + application/pdf + + + Adobe Illustrator CS2 + 2006-09-30T11:18:20+01:00 + 2006-09-30T11:18:48+01:00 + 2006-09-30T11:18:48+01:00 + + + + 256 + 216 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgA2AEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYqhrvUbK0H7+UK38nVvuG+SESeSCQEnufNiiotoa/5chp/wAKP65aMPewM0F+lNfvP7nn xPaJKAf7KlfxyXBEI4iW/wBE+YJ95OdD/vyT+FTjxxC8JQ99ot5Zw+tMU4lgvwkk1NT4e2SjkBQY 03ZaJe3cAnhKcakCpINR9GMsgBpRElX/AEV5ht94+dB/vuT+FcjxxKeEtDV9esyBNyp4TJ1+mgP4 48ESvEQjrbzYhoLmEr/lxmo+4/1yJw9yRNOLW/s7sVglVz3Xow+g75UYkc2YNojIpdirsVdirsVd irsVdirsVdirsVdirsVdirsVdiqjdXltax+pO4Re3iT7DvhESeSCaSKfzNczyCGwhozGis27H5Ab DLhiA5sDPuTjT7WeKPncymW5f7bE/CP8lR0GVSIPJmAi8ilQu722tIvUncKOw7n5DDGJPJBNMcvf MV7dP6NmpiVtl47yH7un0ZkRxAc2szJXWflm7nPqXb+kDuV+05+fhgllA5KIJ1a6JpttQrCHYfty fEfx2+7KjkJZiIR2QZOxVJ/NP/HNX/jKv6jluHmwnyQ+i6nZ2emIJ3KlncgAE9KeGSyQJOyIkALZ /Nvx0ggqni5oT9A6YjD3qZptpuoxahAXEbJQ8XVhUfQe+VyjwlmDay60LTbipMQjc/tx/Cfu6fhi MhCDEJJd+Wr23Pq2j+qF3FPhcfLLo5QebAwLdj5ku7dvSvVMirsSdpF+dev04JYgeSifeyS1u7e6 iEsDh1706g+BHbKDEjm2A2q4EpfqenzyVuLKQw3ajfiaBwOzdsnCXQ8mJHclVr5nuYn9K+i5cTRm UcXBHivT9WWnEDyYifen9reW91EJIHDr38QfAjKDEjmzBtWwJdirsVdirsVdirsVdiqlc3VvbRGW dwiDue58AO+EAnkgmkDLrkaWjXRiZYjtBzIDSN7Lvt75MY96RxMTurue6mMs7cnPTwA8AMyQAGom 2T+XtKFtB9ZlX9/KNgf2V/tzHyzvZshFOMqZpZq+tw2IMaUkuSNk7L7t/TLIY7YylSRWmn6hq8xn mciOvxSt0+SjLjIR2YAEsmsdNtLJOMKfEftSHdj8zmPKRLYBSKyKUNd6jZWg/fyqrfydW+4b5IRJ 5IJASm482RAkW8Bb/Kc8fwFcsGHvYGaCbzHq8xpEFU+CJyP48sn4UQjjKGvrnWZoR9cEno8gQWTi vL50GSiIjkgkqNsuoLEzQQs8T7MfT9RSR8ww74TXVAtEw6xdWw9NreGndWjCn8KZEwBTxJna+ara gSaAxAbAx0IH0bZWcJZCacWt/Z3QrBKrnqV6MPoO+VmJHNmDavkUpdcW2laqrAMryJt6kZHNfCv9 uTBlFiQCkFxZ6lo1wJo2qlaCVfskeDDLxISDAghP9J1mC/TifguFHxR+PuuUThTOMrTHIMki8yaV 6sZvIR+8QfvQP2lHf5jLsU+jCcerH7O9ns5xNC1COo7MPA5fKILWDTKTrf8AoyXiwmS0O0hQ/HG3 cMp6j3rmN4e9dW3iR9rd291EJYHDp3p1B8CO2QII5pBtVwJdirsVdirsVUby6itbd55T8KDp3J7A YYizSCaYrbGfWdVT1zWMVZlHRUHYfPpmSajHZrG5Wa9e/WL5kTaGD93Go6bdT9+OONBEjuv0nTl4 NqF2KWkI5AH9th0A9q4zl0HNMR1ZdGxaNWIoWAJHhUZiltSvXNaFmnoQkG5Yf8AD3+fhluOFsJSp jNs8P1xHvQzxE1k3NTXevjl55bNY82cwmExIYaekQOHHpT2pmIW9Zd3lvaRGWdwq9h3J8AMREnkg mmN3vmG+u39GzVolbYBd5G+7p9GZEcYHNrMiV1n5Yupj6l2/pA7lR8Tn59hgllA5KIJzbaFpkAFI RIw/ak+L8Dt+GVHISzEQjlRUHFQFHgBQZBklHmn/AI5q/wDGVf1HLcPNhPkv8s/8csf67YMvNMOS aOiOvF1DKeoIqPxytkgLnQNMnB/dek380fw/h0/DJjIQxMQkeoeX7qyU3EEnqRpuSKh199sujkB2 LAxpBnWNUJU/WX+EUG/6/H6clwDuRxFG6HqFst/6lwfTlkBUyAhUYk1+JQNvnkckTWyYndlFx6Ho v6/H0aHny6U98xx5NpYLPJEl40lkWSNWrET9oUzLHLdoLKtF1hb6P05KLcoPiH8w/mH8cx8kKbYy tG3twbe1km48xGAWX/Jr8X4ZCIspJYtrGlCKl5a/HZS/ECv7Ne3yzJhO9jza5Rb8uXYjuzaybw3I KlT05U2+/pgyja1gVNpJ9G1WRYiSindT0ZDuAcNCUUciy63uI7iBJozVJBUf0zGIotwKpgV2KuxV TnnighaaU8UQVJwgWpLG/M188rw29CnFRJIh6hm6A/IZfij1apl2gkW1he3x6qvCM+9K0+8jHJuQ FjytT0/SI0j+u6k3pW43WNtmf598Mp9Aoj1K+S9fV76CzhT07NGB4dKqvUmnTboMAjwi+q3ZTzVt SSwtS+xmfaJD3PifYZVCNlnI0kGjaZJqNw11c1aENVyert1p8vHLpz4RQYRFp3q2jQ3sI4AJOgpG 3QUH7J9sqhOmco2kFjqt5pTyW8qFlFf3TGnFvEHwy6UBLdgJU1b2uo61cmWRqINmkP2VHgoxJEAg Alk9jptpZJxhT4j9qQ7sfpzHlMltApFZFKFu9VsLWommAcfsD4m+4ZIQJQZAJXN5tgBpDAz+7kL+ A5ZYMLHjSvUtdnvoRC8aogYNUVJqK/1yyOMBgZWu07X57GAQLEroCTU1B3xljBKRKkyh82W7ECaB k91Ib9fHKzhLLjTW01OxutoJlZv5Ds33HfKzAhkCCrSzQxlVkYKZDxQN3PhgASwfU7X6rfzQAghW qtPBhyH4HMuBsW0EUUNkkJhPqOoaikNoBWlF4r+2R3bICIjuyslkWlaLBZwH1AJJpBSViKih/ZFe 2UTnbZGNJHqunzaXdpcWxIiJrG38p/lOWwlxCiwkKZDY3kOpWJJH2gUmj8CRQ/flMo8JZg2EhtNQ m0q4lsbpfVtgSGU9ge4r2I7ZcY8QsMAa2bvNLQcdQ0tvVhUhyg3KEGvTrjGfQqR1DfmYJL9UvI/s zJSvy3H/ABLBi6hZqnlu/kS2uIQOZiHqonfjWjgfwxyx3TAsihmjmiWWNuSOKqRlBFNi/ArsVSK/ uvret21iprFC4aQeLKOX4AZdEVElgTZpKNfJOr3FfFfu4jLcf0sJc0yt7u207RYBKgknmJlSI/P4 WPtsMrIMpMgaCS3V5d304aVi7k0RB0FeyjLREAMCbZPomljT7dpp6CdxWQ9lUb0/rmPknxHZtiKS Od5tZ1UKlQhNE/yYx3y4emLXzLLbeCK3hSGIURBQDMYm24BR1LUIrG2Mr7sdo0/mbDCNlBNMXtrG /wBXnlnLeJaRuleyj/PbMgyEWoAlV0vVLjS7hra5U+jWjoeqHxGCcBIWEg0yW41C0gthcSSD0mFU I3LV/lygRJNNhLG7zXNQv5fQtFaNG2VE3c/MjL44wObWZEq1n5VmcBruT0wf91pu30np+vBLN3JE E3g0LS4aUgDnxk+L8DtlRyEshEIPzLbwRaavpxon7xfsqB2Phk8RNomNm/Ltvby6WPUiR/jb7Sg/ rwZSbWA2RVxoGlzA/uRGx/ajPGn0dPwyIyEJMQlF55XuIvjtJPVA3CH4W+g9Dlsco6sTBAXGo35t 2s7qrFWBBkHxqR7nfJiIuwxJPJXtXt9Tuq37+mY4t5FovPh3atd6YDcRskb80slEYlcREtGCeDHY kV2rkwxX2l3NazrNCaOv3EdwcSLCg0zewvor22WePauzL3Vu4zElGi3A2vuraK6t3glFUcU9wexG AGipFsUsZ5tI1Ropv7uvCUdip6MP15kyHEGsGinWuaQL6ITQ0+sINvB18P6ZTjnTOUbYzbXd3Yz8 omMbqaOh6GnZhmQQCGoGk3v7u31HRi0SiOa3YPJEOwOxI9iWrlcQYyZk2EP5W/46Te8bV+8Yc3JE OaP0O79DULnTWPwB3MHtxJqPpG+QyCwCyid6T7KWanczLBbyTN0jUsfoFcIFlSxDRJWbWoZHNWdm LE9yyn+uZOQelpjzb8wqBrExPQ8Cf+BAxx/SsuaGVLvULvjGvORugHRVGw+QGS2iEc0+02xtrK+i t1pNdlS88nUItKAL4VJGUykSL6NgFFf5nvjDarbIaPP9qn8g6/fgxRs2sy35ZsPRtDcuP3k/2fZB 0+/rjllZpYBOGYKpZjRQKknsBlTNiF1NPrOqLHF/d14xg9FQdWP68ygOENR3LK7W2itYEgiFEQU9 ye5PzzGJstgFJX5ltrJrT15TwnXaJh1b/JPtlmIm6YzAYujc2jSVyIwaV+1xBO9BmQ1s202ysra3 X6qAyuATL1LfTmJKRJ3bgAi8ilCXOradbGks68h+wvxH7hWmSECUGQSLW9bs721EEKvyDhuTAAUA I8a98ux4yC1yla7Rdcs7O0EEwflyJ5AAjf6a45MZJtMZUnlrqlhdECGZWY/sH4W+40OUmBDMSBRW RSgtU0+yuoGa4ohQVE3QrT38PbJwkQdmMgCwlwodgp5KCQGpSo8aZltKc22gQ3WnLcW85aYKeSUF OY349RTKjko0WYjYSZlZWKsCrDqDsRlrBHaLqTWV2CT+4kIWUeA/m+jITjYZRNM1BBAINQdwRmI3 JH5osBJbrdoPji+F/dCf4HLsUt6YTCt5bvjcWPpOayW9F/2J+z/TBljRTA7KF7Z2t9ez2spEV4tG glApzQgGhHemGMiBfRBFlIpYbrTropKtDQqR+y6NsfoOXAiQa+SP8rKP0lJ3CxNQ/wCyXIZuTKHN B3lw0OszTp9qOdiP9i2SiLigndmsciyRrIu6uAyn2IrmIW5A6+xXSLgjwUfe4GTx/UxlyYlYSele wSfyyKT8q75kyGzUOaZ61bS3eumCEVcqoJ7AUqSchA1G2UhZV7m8ttGgNnZ0e7YfvZj2Pv8AwGRE TI2eSSa5Kvle3dlnvZSWeU8VY9TTdj9+DKeiYDql16zalrnpKfgL+kp8FXqf1nLI+mLE7llyqqKF UUVQAoHYDMVtSjzNfGCzECGjz7H2Qdfv6ZbijZthMrfLFh6Nqbpx+8n+z7IP6nHLKzSwCcu6opdj RVBLE9ABlTNh9xLca1qYSOoStIweioOrHMoARDSdynV55dtJLNYoAEmiHwSH9o9+XzyqOU3uzMEo 0zVLjS52trlW9EGjx91PiuWTgJCwxEqbvNZ1DUZfQtVZI22EafaI/wAoj/axjAR3KmRKItPKkjAN dy8P+K03P/BHbBLN3JEHa3o9jZWAkhVvU5heTEnYg/RjjmSVlEAN6NotjeaeJZQwkLMOSmmw9jUY JzIKxiCFt55VmQFrST1KfsN8LfQemGObvUwUrHXb6xl9C8DSRqaMr/bX5E4ZYwdwgSIWanqlxqlw ttbKfRJoiDqx8TjCAiLKk2mtt5btlsWimo1xIN5R+ye3H/PfKzlNshDZI4bm+0i6miFA/wBlg26n wYZcQJBhZDJWtLPVLJJZFDO6UEwFGB9q70r45j2YlsoEMSvLKe1uHhkXdN+Q6FezD2zJjIENRFMn 8tXnr6eIiavAeJ/1Tuv9Mx8saLbA7JpLGksbxuKo4KsPYimVgsmJ6O72GtG3c7Mxhb33+E/fTMme 8bao7FHeabd1MF7GSrIeDMNiO6n9eRwnomY6rLS/ttXgFlfUW4/3TMO5/r7d8TEx3Cg3sWtAtpbP V57eYAMIia9iOS7jHIbjaxFFIZXMkryHq7Fj9JrlwYM20di2l2xP8gH3bZiT5lujyQ+uzJJp15Cm 7xCMv4CrA0+4ZLGNwiR2YhH/AHi/MZlNLJ9avYtPklaHe9ugKt/Iiin45jwjxe4NsjTHLa3mu7lY k+KSQ9T95Jy8mg1gWzSQR6fpbCPZYIzx9zT+JzEHqLdyCReVLfndyznf01oD7uf6A5dmO1NcAyjM dtYjqzNf656CnYMIV9qH4j99cyYbRtqluWWxosaKiiioAqjwA2GYzak3mi9MVotuho05+L/UXr95 y3FGzbCZXeWrAQWn1hh+9n3Hsg6ff1xyys0sAmV5eQWkJmnaijYAdSfADK4xJZE0wzVdQa+ujNx4 KBxRe9B4nMuEaDVI2raJqosJyHUGGSgcgfEPcf0yOSFhYypk8+qWaWkk8cyScFJChhUmmwzHEDdN pkGMX2t3F5aLbyqtQ3JnHUkV7dO+ZEcYBtqMrXWGvT2Vo1vHGpO5RzXYn274yxgm1EqTvRJLsWs1 3fSEJIealzsFp1A7A5VkAugzj5sc1W9+uXskoYtHWkXIUovyy+EaDCRst6fqEmn3DyRqklQVNfn1 B64yjxBQaT7TvMqXNwkEsXpM+yuGqC3huB1yiWKhbMTtL/MWnXi3Ml4f3kLU+Jf2R0AI/jlmKQqm MwjPKt3PLHNDISyRcShJrQGo4/hkMwZQKdzQpNE8TiqyKVb5HKgaZsV0GV7TV2t3258om8OS9PxG ZGQXG2qOxZbmM2sU8zQmHUknTb1FDV/yl2/pmTiNimqfNkUkcV/p/FvsToCPaoqD9BygHhLZzDCb i3mtrh4ZBxkjNNvwIzLBsNJDIdGv470H1/8Ae2CNlD/zoadfcZRONe5sibYzmQ1M00qQRWllbts0 kPNT8qEj/hsxJiyS3RQWmkXy6qlamVyF9gQQv6snPakDe2NopE6o3wkMAa9t8va1S+uWuryWc/tt 8I9ugH3YIihSk2n+k2f6P+rcwDd3jEFT1WMKWNPfpXKZy4r7g2RFIrzLLw0p1/34yr+PL/jXI4h6 kz5KXlWLjYPJ3kkP3AAYcx3RDkm8jhI2c9FBY/ICuVBmxXy2hn1YzPuUVpCfdtv+Nsycu0WqHNlm YzaxHWWa81z0FOwZYV9vH8ScyYbRtqluU/1PU4dMgjATmx+FIgePwgdeh6ZTCHEWZNMRvb6e7maS ViQSSqE1Cg9hmTGIDUTahkkOxV2KqttazXBdYULsilyB4DATSQFkkUsbcZEZG60YEH8cQVb+sT+j 6HqN6NeXp12r8saW1mFDsVbRijBl+0pBHzGKpvpeo6hd3ht5XM0U4ZZVbYKpG7DwplU4gC2YJKno FxLBqaxJRllPB/Cg3qPuw5BYRE7swzFbmI62Da656yilSko+jr+K5k494tUtiy4EEVHQ5jNqRebI q2sEvdHK/wDBCv8Axrl2E7sJo3QJfU0mAnqoKn6GIH4ZDIPUmPJAalZ/pJbgxgfXLSQqAP2k6gf0 ycZcNdxYkWkVjcG2vIpTsFajj/JOzD7sukLDAFTggea4SBftuwQfSaYSaCsn1SZbfUtLVdgpZaf5 L8UzHgLBbDzCWeWLr09QMTHadaf7Ibj+OWZRsxgd1nmK1FvqRkUfBN+8H+t+1/XDiNhZjdU8t6cJ 7g3Uo/cwfZr0L9fw64MsqFLAIm1vfr3mNZF3ihVxH8gCK/STkTGoJBsq3mxv9ChXxkrT5Kf64MPN M1bQbm1i0qFXmRH+IspYA7sexPhgyA8SxOyvqN9afULkJPGzmNgoDqTUinjkYxNhJOyT+VZYInuW lkWM0QLyIFa1r1y3MDsxgyH69Zf8tEX/AAa/1yjhLOwxXTpYn1/1pWVUMkj8mIA7kb5kyHpaxzb8 wSG41SiOsicVWMgim/v0644xQWXNLZ4HhkMblSRvVWDDf3FcmDbFZhQ7FUw0XS/r9yQxpDFRpPE1 6AfPIZJ0GURbMILeCBOEMaxr3CimYpJLcAhNatLe4sZGlFDCrPG9aUIH6sljkQWMhswrMtpdirsV diqL0uP1Lr0jN9XjkUrLJ0+Glab+NMjPkyCsqwWuuRrC4MKSoBJUEcTSpr075HnFeRZb9esv+WiL /g1/rmNwltsMb80SQyXMMkUiv8BUlSD0Ne3zzIxDZrmn1pf2htIS08Yb015AuAa0HvlMom2wFA+Y ri1l01gkyOyspCqwJ607H3yWIEFjM7LvKzV01h/LKw/AH+OObmsOSDmvP0f5jldtoZeIk+RUb/Qc mI8UEXRUvMunLFKt5EP3c20lOgfrX/ZY4pdETDvK1r6l29yw2hFF/wBZv7K45jtSwCjrV562sckN VgKop91NT+OSxxqKyO6XVkt7iqnjJE+x8CpyfMMU/wBadb/RoL1B8SMOQ8OXwsP+CplMNpUzluLd qkw03SodPiNJpF/eEdgftH6TtjAcUrWWwpQ8pxVu5peyJx+lj/zbhzHZEEX5tB+rQHsHI+8ZHDzZ TS6x8uzXdqlwkyqr1oCDUUJH8MnLKAaYiFr7nyzcW9vJM0yMI1LEAHemIyglTBCaXpMmoerwkVPS 415AmvKvh8slOfCgRtH/AOErn/f6fcch4wZcCV2tg9xe/VA4RqsCx6fCCT+rLDKhbABfZabLdmUq eEUSly5B3A7DGUqSBaHuIkikCpKsqkAh1qOvahwgoKnhQ7FU10m+NtcPJApMRVnuENBRVBpRt+5y ucbG7OJpNLXzPHPcxQ/VyvqMFDcq0JNPDKzioMhNOZYo5Y2jkUMjCjKehGUg0zYDcwmG4kiIIKMV 32OxzNBsNBU8KHYq7FUdpeltqBdUlCOlCQwO4PhTITnwsgLU5dPePURY8wXLqnPtVqf1wiW1orek z/wlc/7/AE+45X4wZ8CX6ppb6e8aPIHLgn4QRSnzycJ8TEikbB5XuJYY5RMgEihqUO1RXInKAkQU tQ8vzWVs07zKwUgcQDXc0wxyWaUxpNvKgP6Ok95Wp/wK5Vm5sockB5sh43cM3aROP0qf+bsnhOzG atpFyNQ0ybTpTWVEPpE9wPs/8CaYJjhNpibFL7CUad5ea46SyligPXkTxX9VcEhxSpRsGP2yGW6i TqXdR95y88mARWu25h1ScU+Fz6i/7Lc/jXI4zYTIbo/yzKkqzWMu6HjKo91Ir/DIZRW7KHclmrXR udQmkrVQ3FP9VdhlkBQYyNlkPle39PTzKRvM5IP+Suw/GuUZTuzgNneak5acrfySAn5EEY4eaz5L /LUnLSkX/fbMv48v44Mo9SYckwvIzJaTxjq8bKPpUjIRO6SxzynJS7mj/nTl/wACf7cvzDZrg3ru uSvJJaW54RoeLyAnkxHUewrjjx9SmUkotLn0blZnBf7XIVoSGBB3+nLSLDAFkGjz/W9Iexhl9O6Q EVIr8Jau3tTbKJipW2RNikBrmlizgtWUCvHhKyjYuN6/Tk8c7tjKNLv0LDdaYl3ZV9UL+9h+1VhQ Gnh448dGivDYSlYZC/DjRgCSDtQAV3rllsVoLEcB0J+X3nChkGgaNPHcrdzcPTCkx0YPUnatRUZR kmKpsjFE6xr8lldCCGNXIAMhavfsKZGGOxaZSpjNxO887zP9uRixp03zIAoNZU8KHYq7FVW1uprW ZZoW4uv3EeB9sBFpBpExXqvrK3bISrS8+A3NK7ZEx9NJvdm2YjcxTzTJz1FIxvwjAp7kk/0zJxDZ qnzZTEnpxJH/ACKF+4UzHLalPmp+OnKvd5APoAJyzDzYT5KnlqPjpSN/OzN+PH+GDKfUmHJZ5mgE unlhQvAyuR34t8OHEd0T5Mc0u5Ntfwy1oAwDf6rbHL5iw1g7pj5nuFE0VnGOMcQ5so6cm/s/XleI dWUyhvL1uZtUiNPhirI30dPxIyWQ0ERG6N1iI3ul22or8TqoWan3H7myMDRIZS3FpXpNwYNQhkBp vxP+yFP45ZMWGMTuhAGZgAKsTQD3OSYstnK6fcaVGDQUaF/fkFFf+Cocxh6gW07UitbhM2l3CjqF 5j/YHl/DI4zRTLklflO4Hp3EJNOJEg+kUP6hlmYMYFu681oA628VXDUVm3UqO+1DiMPepmk2m3wt dQW5K/AC3JF8GB2GWyjYpiDRQrtydm8ST9+SYtYqmPl+cRarDUkB6pt/lDav05XkFhlHmyrUrJby zkgOzEVQnsw6ZjxlRttItjeiakdPuntrmqRMaPX9hxtX+uX5I8QsNcTSnqV62pXvp2sWzEKKD4np 3Y+GGMeEboJspkPKkRtVBlK3XVmG6fKmV+Nv5MuBK7vTdT0xfU58YyQvONyKnr02PbLBISYkEJe7 u7FnYsx6sxqfxyxDQBJoNyegxQ3WgZWXfsehB74q0ASaAVOKp7oWjWd3A0szlmVx8CmlAN6HbvXt lOSZBbIxtH6ta6ZY2EsqW8YlYcI6ivxN3Fa9OuQgSSmQACE8p2prNdEbf3afrb+GSzHoiAZHlDYx CM/pDzCGG6GWv+wj/qFzK+mLVzLL8xW1jfm2cGS3gH7ILt9JoP1HL8Ia5p3pkPo6fbxnYhAWHudz +JyqZss48kBZut9carGx+FiIl9lAZaj6d8nLYBiN7Yo6sjFWFGUkEe4zJakRqczTahO7bnkV/wCB +H+GRgKCTzTjTom0/RLi9b4Zpl/d+IB2X8TXKpHilTMbC2vL94kckumXFCjswQN0r0ZT88ckeoWJ 6IDVdNk067DJvCTyhfwpvQ+4yyEuIMZCluiQLNqsK/sKxf8A4HcfjjkNRWI3Rnmm4P1+JFP90gPy Ymv8BkMI2TM7smRkmgViKpIoNPZhlHItrEtO52WsNbk8eRaAsf8AK+yfvpmTLeNtQ2KWyRvHI0bi joSrD3G2WAsVuKHYq7FVWzmEF3DMekbqx+QNTgkLCQzz14fQ9cuBDx58z04kVrmHXRvth2p3A1LU a2sW7UVaD4np3OZUBwjdpJsr9H1FNNuXE8O7fCzU+NadqHBOPENliaZXa3trdJygkVx3A6j5jqMx jEjm2g2k3mq8jESWlD6hIlr2puMtwx6sJlJIdLvp7c3EMReMGlRSu3t1y4zANMKKiBPA3IVjYryU 9DQ7VGHYqp4UODMK0JFRQ08MVZP5UVUtpWZgGlb4UJ3KoN2A+bZj5ubbBLtZvX1K/S3t/ijQ8IgP 2mPVsnCPCLLGRssnsrVLS1jgTog3PiTuT9+Y8jZtsApD63e/VdPkYGkkn7uP5t3+gZLHGyiRoJZ5 Usz+9u2H/Fcf62/hlmaXRjAMiyhsYhcn9Ja/wG6NIEH+onU/gTmUPTFqO5ZbK4jidz0RSx+gVzGD axbyvORqLox/vkP0sDX+uZGUbNUDuh9cgWDV5Kj4HIkp/rbn8a4cZuKJDdV0TS2vrgzzD/R0ar1/ bbrT+uOSdCkxjaJ8xXonuItPhNVVh6lP5zsB9FcjijQtMz0QWvW722qSMtQJD6qMPE9f+GyWM2GM hum+n31vq9o1nd09enyrToy+4yuUTE2GYN7ILRrOW010wS/aVWoexFNiMlOVxtjEUUDrknqarcHw bj/wIA/hk8Y9KJc2VaNJ6ml2zeCBf+B+H+GY8xuW2PJJPNNoY7mO7TYSDixHZl6fh+rLcUtqYTCN SwstYs4bk/up/wDdzoACWH2gf4ZDiMTSaBSTUtGu7ElmAeCtFlX36AjscujMFgY0gMmxdirsVRbX 97cwQWPKsakKijaprtyPtkeEA2ys8mUaPo8VhFyaj3Dj438P8lfbMac7bIxpVv8ASbO9FZVpJ2lX Zv7cYzISY2xvUtFm04CYTqVr8G5V/oH9uXxycTWY0l0s80zBpZGkYDiCxJNPDfJgUxXx315FF6Uc zpHueKkjr8sTELaiSWJJNSepOFCrBctDUBEdW6q6K3T3IqPowEWm1aabTZIPggaG4HdW5IfobcYA DadkOk0sdeDlaqUNP5T1GGkMl8uaWsMS3ktDLKP3Q68VP8TlGWd7NkIp5lLNiOrXcmp6kkFv8Uan hEOxJ6t/n2zKgOEbtUjZZRZ2sdrbRwR/ZQUr4nufpOY0jZtsApQ1m9+qWEkgNJG+CP8A1m7/AEdc lCNlEjQSjypZ1eS7YbL+7jPud2OWZpdGMAnWqvw025b/AIrYfeKfxyqHMM5cmI6NIY9Utm8XC/8A BfD/ABzJmNi1R5prq9i99rqQJsPTUyN/KoJqcrhKo2ykLKtquqw6fALGyoJVHEkdEH/NWCEOLcpl Ktglfl+1a41NHO6w/vHPuOn45ZkNBhEbp9r+nG7s+UYrNDVkHcj9oZTjlRbJC2HxyPG6ujFXU1Vh sQRmU1Mr0i/g1GSOSUcb63BG2wZWFCcxpxMfc2RNsc1QEaldA/79c/exOXw5BrPNPNPuZoNBiuIj UW7t6kf8yFjUf8NXKZC5UzB2TO6hg1PTiEIKyryibwYdPx65AHhLM7hIPL981netaT/CkjcSD+zI Nh/TLskbFtcTRZRPBFPE0Uqh42FGU5jg020xnWPLzWyia0BeFR+8BNWHv8syIZL5tUopJlrB2KuA qQB1OKp1p3mC5sz9Xu1aSNdt9pF9t+v05VLGDuGYlTI7S/tLteUEofxXow+YO+UGJHNsBtjXmdrk 34EgpEq/uSOhHf6a5fiqmufNJ8tYOxV2KuxV2Ko3T7O1ulkjeb0rk0+rq32WPgTkJSIZAWozPdwo bOUlRG/Lgf2Wp2+/CKO6E0vdfaTTIreNiZ5EpcSeFNiPm2Vxx72yMtkd5c0owR/W5hSaQfu1P7Kn +JyOWd7MoRTvKWbEdZu31HUUt4PiRD6cdOhY9WzJhHhFlqkbLI41t9M08BjSKBfiPcnv9JOUG5Fs 5BK7meafQLq7lJ/0hh6cddlQOFAA/HLAKkAwPJItNUtqNqB/v1P+JDLpciwHNkWtajFYNIIN724A 5N/IoFB/ZlEI3z5NkjTFiWZqmrMx+ZJOZLUzLQ9ONlZgOKTS/FJ7eC/RmJklZboikxyDJi+raWJ0 e/s12qwuIe6spoxGZEJ1sWqQ6pPb3EtvMk0R4uhqDlpFsQURqskdxcC7jFFnUFl/lcCjL/H6cjAU KTJOvL6+votxB1JZ1p/rIMqybSBZx5ITy1qfozfVJT+6lP7sns/h9OSywvdjAq/mbSz/AL3Qj2nA +4N/XBin0TMdUZoGrC7h9GVv9IiG9f2l8f65HJCkxlaaSPHHGzyEKiirE9AMqDNgt61vLeStaIVh JJVfYbk07DMyN1u0FV020s7qURTTmBz9moBDewNRQ4JSISBbIY/LOlrTkHkp15NSv3Uyg5S2cARd 9pdnej98nxjYSLsw+n+uRjMhJiCkNz5YvoW52sglA3Xfg4/h+OXDKDzazAoK8bV/TEV4sjIpqpkW tD7P/bk48PRBtA5Ni7FXYq7FXYqrWVs11dRwKwUuacj2HU4JGhaQLTPzFcWEjRRQkyTQjg8wOxA7 H+Y5XjBZSIQFg8FvexteRlo1IJU7UruCR3GTlZGzEc2cRyJIiujBkYVVh0IzDIb0n8w6sLeI2sLf v5B8ZH7Kn+Jy3FC92E5KflrSzGn12UfG4pCD2U/tfThyz6LAdUH5l1Iz3H1SM/uoT8fu/wDZk8Ua FsZlG60PQ0CCHpX00PzC1P6shDeTKXJI9MlS3nN04qIASi/zORRR/H6MukLFMAh5pZZ5mlkJaSQ1 J9zhApCeadpYsYRfXa1mJAtoD/O2y19/1ZVKd7BmBW7Jcx2x2KpDd3T6TqxkIJs7v4nUdmGzEe/f Lojij5hgTRbv9Dtb+P61YMqu+9B9hv6HGOQjYqY3yY5PBPbu0MyFGBqVP6xl4ILWQnnlKcCS4gPV grr9Gx/WMpzBnBJbyMw3s0Y29ORgPoO2XRNhgWZaZdLe6fHI9GLDhKD4jY/fmJMUW4Gwx7VNOn0u 6W5tiRDyrG4/ZP8AKcvhISFFrkKU73Vb7VWit0SgNP3aftN4n2wxgI7qZEsg0jR4rGKrUe4cfvH7 Afyj2ymc7ZxjSB1by2JC01kArndoegP+r4fLJQy97GUO5B2OvXti31e6VpETYq2zr9/8cnLGDuEC RDIbPU7K8H7mQFu8Z2YfRlEoENgIKKyKXYqk3mlE/RytxHL1BvTfoctw82E+SB0vSLG40trmZXLr z2Q0rx3+/JzmQaQIikiy5rdirsVXQxSyyBIlLyHoq7nASlk2k+XEhImvKPKN1i6qvz8TlE8t8myM O9F6xo8V/FyWiXCD4H8f8lvbIQnSZRtj9nql/pZltmXpUCN/2W8Rl8oCW7WJEK2jaXLqFwbu6q0P KpJ/bbw+WCc+EUExjbItRuhaWMsw2KLRB/lHZfxyiIsthNBhEKGW4RDuZHAPuWOZZ2DSn3m2cf6P bg77yMPwH8cpwjqzmUktLO6u5BFAhY9z2HuTlpkBzYAWyWy0mx0uL6zdOGlXrI32VPgo8colMy2D YIgKFncyavqyy0K2lp8SKf5j9kn374ZDhj5lANlP8pbHYqhNU09L60aE7OPijbwYZKEqKJC2JW17 f6ZcMikoymkkTbqSPEfxzJMRINQJCeR6ppGqRCG8QRSduR6H/JfKjCUeTPiB5oZtKudKu0vICZrZ D+8p9oIetR3275LjEhRRw1uhfMkAS+E6bx3Kh1YdK0of4HJYjtSJjdEeWLx0NxbqObFfUjStKsux FffbI5Y9UwKeW93ZajA6Ach9mWFxRh7EZSQYlmCCx3UdKutLnFzbMxhBqsg6r7Nl8ZiWxazGk30n X4bsCKekVx0HZW+Xv7ZXPHXJlGVptlTND3mnWl4vGeMMR9lxsw+RyUZEckEWkF35WuYzztJBIBuF b4W+/p+rLhmHVgYIcajr1geMvPiO0q8gf9l/bkuGJRZCLi82ygfvbdWPijFfwIbIHCnjUNX12G+s xCsTI4cNU0IoAf65KGOiiUrb0rX4bGyEDRM7hiaggDfGeOysZUll7NbTTF4ITAp6py5CvtsKZOII 5sSoZJDaI7sFRSzNsFAqScVZhoOmGyteUg/fy0L+w7LmLknZboikzytkk2reYYrblDbEST9C3VV/ qcthjvmwlJLNL0e41CX61dlvRY1LH7Tn29vfLJzEdgxjG2QXd7Z6dAqkU24xQp1PyGURiZFsJpJ/ Mt3Kbe2gkASV6yyIDWnZRX78txDclhMoHy/betqKOf7uAeox+XT8cnkNBjEbpiNJk1C6kv75jDbk 1SM7NwHStfs5Dj4RQZcN7lUuNe02xj9CwjEhHTjsgPiT1b/PfAMZO5SZAckjmub/AFO5VWJkdjSO MbKK+Ay4ARDCyWX6ZYJY2iwru/2pG8WPXMWcrLaBSKyKXYq7FUs1nRY75fUjolyo2bsw8D/XLIZK YyjbEZ4JoJWilQo69VOZINtSKsdYvrMgRycox/up91+jw+jIygCkSITWe7tdZsvRQCK9j+KKM9DT qqn3GVgGJ8mRNpLY3DWd7HMQQY2+Ne9OjD7stkLDAGimuuJJZ30WoWjcVnFeS9C3X7mGV49xRZy2 NptpWrQajCUYBZwP3kR6EeIr1GVzgYsoytL9U8s1Jmsdj1MB/wCNSf1ZOGXvYmHchbHX72yf0LtW kRNirbOv0n+OSljB3CBIhkNnqdleD9zIC/eM7MPoyiUCGwEFFZFLiARQ9MVQ0um6fLu9vGT48QD9 4yQmUUEm8waXYW1kJYIgknMLUFjsQexOW45kndhIABdoOlWFxYCWaEPJyIqSeg9gcckyCsYik4i0 6wiNY7eNSOh4iv35UZFnQQeo+X7O7b1E/cSk/EyjZvmNslHIQgxtU07RLOyIdR6k4/3a3au2w7YJ ZCVEaVL3VrGzBEsgLj/da7t93b6cEYEpMgGPXmt6hqD/AFe2UojbCNKl2HuRl8cYjuWsyJR2l+Wl Qia9ozdVhG4H+se+Qnl7kiHej9V1aHT4QAA0zD93F7eJ9shCHEylKkm0OKW/1J7y5JcQ/FU9OR+y PkOuW5DwigwjuUBqt0bzUJJF+JSeEQHgNhT55OAoIkbKZW93BotqY6CW/l+KRB0TwVj7eGQMTM+T IGkpvNRvLxqzyFh2QbKPkMsjEDkwJtZbWs9zKIoELufDsPEnCSAoDL9I0eKwjqaPcMPjk8PZfbMW c7bYxpMMgydirsVdirsVS7WIrN1jF5H+5YlfrA2MbH7P0HLIE9GMqSO88t3kXx25FxEdwV+1T5d/ oy2OUHmwMEqeOaF6OrRuN6EFSDlnNiqT3Hr/AByD99+1IP2v9b398QKW0402ZNS019MlYCeMVt2P t0+7p8sqkOE2zG4pJg1xaXFQTHPE30gjLdiGHJl2kazFfR8Golyo+NOx91zGnCm2MrRN5p9peJxn jDEdHGzD5HIxkRySRaQXnla4jJe0k9QDcI3wsPp6H8MujmHVgYKCarrmnkJNyKjoswJr8m6/jh4I yRxEI6DzbEdp4CvuhB/A0/XkTh7kiaNj8x6S/WQofBlb+AOQOKTLjCB8walY3NgqQTB39QHiK1pQ +OTxxIO7GRBC7QdTsLbTgk8wRwzHia1oflgyQJKxIpFyeZNKT7MjSeyqf+NqZEYpMuMIKfzam4gt yfBpDT8BX9eTGHvYmaBbUdc1E8IuXE9ViHED5t/U5PhjFFkomz8qzOQ93JwHUom7fSen68jLN3JE E/tLG1tE4QRhK9T1J+ZO+UykTzZgUhdY1iKwi4rR7hx8CeH+U3thhC0SlTEHknuZ+TEyTSH5kk9h mVsA1J7dyJpGlCyQ/wClzispHauxP8BlIHFK+jM7CkihnMPxRikvZ/5f9X398uItg3Fa3c5/dRPI T1IBP44kgLSa2nlm4YepeOIIhuwqC1Pn0GVnKOjIQTnSPq1HFnEFtF+ESmvKRx1NT2GVTvrzZxTH K2TsVdirsVdirsVWyxRyxtHIoZHFGU9xhBpWOXB1PRJP3LGWxJ+AOKgex8Dl4qfvazYVo/NVrIvG 5t2Hjxo4+48cicJ6Lxue/wDK8w+OELXwjKn/AITHhmFuKgYfLnqCS1vHt5VNUNGIB/2Q/jkrn1C7 K9/a6dqEayLdwi9AoXBCh6dKqTUZGJMemykApHNaXtm4dlZOJqkqmq19mG2XAgsKpO9N80KQI74U PQTKNv8AZAfwyqWLuZifensM0MyB4nWRD+0pqMpIpsXMqspVgGU9QdxgVBTaJpcxq1uqnxSqf8Rp kxkIY8IQcnlSwbdJJE9qgj9WS8Yo4AonyjFXa5YD3UH+OS8byRwNjyjFXe5Yj2UD+ODxvJeBWj8q 6ev23kf6QB+AweMU8ARkOi6XCarbqT4vV/8AiVcichKeEI0AKAAKAdAMgyWTXEEK8ppFjXxYgfrw gEraSaj5nhRTHZDm/T1SKKPkD1y2OLvYGfckS295eSGQgsXNWlc8V+ljtl1gNdWnWnQaTp6mWS7i e7oQrD41T5AdcqkZS6bMxQWM/lsytNcTvdTMaszBwK+wAXD6+my7Kya1oEH9zbmvisag/eSMj4cj 1XiCnP5tFKQW+/Znb+A/rhGHvUzUraPVNakDXDlLNT8QX4VPso7/ADOEkQ5c1FlksUUcUaxxqFRB RVHYZjk22LsVdirsVdirsVdirsVadEdCjqGVhRlO4IxVIL/ysrEvZOFr/up+n0H+uXxzd7WYdySX Gm39uT6sDqB+0BVfvFRlokCwIKGySHYqibWy1CU/6PFIa/tAED79hkTIDmkApjb+Vr6Q8p5FiB6/ tt+G345A5h0ZCBVJbLRtNaslzLJOP2IiAfpp0+/AJSl0TQCi/mW5VPTtk4J2aVjK/wB5w+EOqOND DVdZuZAiTSM7dFj2/wCIgZLgiEcRR40/XY4vWnv/AEF7+pK236xkOKPQMqKETXdUgl4LcC4UGgqt QfvCtkvDBY8RXT+YNXaTgzi33oVCUp86hmxGOKTIoqO016eP1YL9ZV/yJG+7oMiZRHRNFAzX2uWc vCaaRH7BjyB+Vag5IRiWNkK0XmW94GO4UTI2zEExv9DJSn3YDiHRPGVaKLy7fn7UltMezv1P+s3I YCZBOxXT+U5RvbzhvBXFPxFcRm71MEtudH1OEkyQMw/mX4x+FcmJgsTEoJlZTRgQfA5Ni2qsxooJ PgN8VRdvo2pzkcIGUfzOOI/GmQMwGQiU7sPK8MZD3b+qw/3Wuy/SepyqWXuZiCeKqqoVQFUbBRsA MpZt4q7FXYq7FXYq7FXYq7FXYq7FUtvP0laM09r/AKTATWS3apZfEoev0ZZGjsWJsIVPMmly/wC9 ELI3fkocff1/DJeERyRxhWGu6GnxIwB/yYyD+rB4cl4goz+bLVRSGF5D4tRR/wAbYRhKmaUXmv6j c1Xn6UZ/Zj2+89csjjAYGRS7LGKY6Zol1fEP/dwd5COv+qO+QnkAZCNptPe6bo0ZgtEEl10Ync/7 Nv4DKhEy3LMkBLILfU9an5yOfTU7yN9hfZR45YSIMQCWSWGk2dko9NOUneVt2/s+jKJTJbBGl97p tpepxnSrD7LjZh8jgjIhSLY1d6dqOkS+vbuTF2lX9Trl4kJbFrIIR9rrFjqUQtdQRUkP2W6KT7H9 k5AwMdwkSB5oDU/L9za1khrNB1qPtKPcfxycMgKDGkpy1gi7TVr+0oIpTwH+62+JfuPT6MjKALIS ITe382npcQfNoz/A/wBcqOHuZCaLXzTphG4kX2Kj+ByPglPGFOXzZZAfuopHb3oo++p/VhGErxqt oNS1Aia7/wBHtOqwLsX/ANY9afrwSqPLmosptlTN2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVL7/RLG 8q7L6cx/3YmxPzHQ5OOQhiYgpJceVr5CfRdJV7fst9x2/HLhmDAwKG/QGr1p9XNf9ZKfryXiRRwl Wh8sam5+MJEP8pqn/ha5E5QngKb2XlqygIeYmdx2bZP+B/rlcspLIQCD1nzBSttYtQD4XmX9Sf1y UMfUolLuQejaK963rTVW2B693PgP65OeSkRjbLYoo4o1jjUIiiiqOmYxNtq7ArsVaZVZSrAFTsQd wRirGNb0H0Abm1BMPWSPqV9x7ZkY8l7FqlFbo/mCS3KwXRLwdFfqyf1GGeO9wsZJvd6Hpt8vrJ+7 ZxUSx0oa9yOhyqOQhmYgpTP5UvFJ9GVJF7Vqp/iPxywZgwMChj5c1etPSB9+a/1yXixRwFEQeVb1 yPWkSJe9Ksfu2H44DmCRApzY6DYWhD8fVlHR33p8h0yqWQlmIgJjlbJ2KuxV2KuxV2KuxV2KuxV2 KuxV2KuxV2KuxV2KuxV2KqdxAs8DwuSFccSVNDvhBpSGOQeV5hf8JjW0X4vUGxYdlp2Pjl5y7ebW IbsmRERAiAKqiiqNgAMx2xvFXYq7FXYq7FWOal5ake7VrMBYZD8YOwQ+Pyy+OXbdrME7sLKOytlg RiwG5Zj1J6/LKpSs2zApEZFLsVdirsVdirsVdirsVdirsVdir//Z + + + + + + uuid:2B33F0FE6C50DB119CE1E28B838B7E77 + uuid:03293ec0-50bd-451a-a1b5-698a56823ada + + uuid:cdd5dacb-d42f-4fb1-abda-54eddce82611 + uuid:7FF02B150240DB11B0B0DEDD5C19BABB + + + + + +endstream endobj 798 0 obj <> endobj 794 0 obj <> endobj 789 0 obj <> endobj 785 0 obj <> endobj 781 0 obj <> endobj 777 0 obj <> endobj 773 0 obj <> endobj 774 0 obj <>stream +H‰\PÁnà ½ó>¶‡Š”j=¡HS·I9¬›–í8ÒˆCþ~ªNš%ð³ì÷x˜_º§ÎÙü=zÝc‚Ñ:qñkÔNÖ±£cuºUåÖ³ +Œ¹ß–„sçFϤþAÍ%Å vƸgü-ŒÖM°ûºô{àýÂÎè4ж`p$¡W®jFà…vè õmÚÄù›øÜ‚(õ±šÑÞà”ƨ܄L6-ÈŠ–¡3ÿú•5Œú[E&Å3Í6 %&OMÁ”‹ŠEÆçŠÏmVuŠRV¿éäwhpÿ„^c$ÿegÅx¶lÞ×|båÃ~3xÜ +endstream endobj 778 0 obj <>stream +H‰\’ÏjÃ0 ‡ï~ +×ÃHš&Ò +¡0Ú zØÖíÒDí«ÜôзŸäßØ`Ä_°$ÈÊÖÛÍ6ô“Ï^ãÐîdò‡>tQÎÃ%¶â÷r샛¾ëÛéç/}ÛS3ºL“w×ó$§m8 ®®}ö¦›ç)^ýÍ}7ìeæ²—ØIìÃÑß|¬w3Ÿí.ãø%' “Ïýjå;9h¡§f|nNâ³”v»ít¿Ÿ®·šóñ~Åé™vèä<6­Ä&ÅÕ¹>+_?ê³rºû BÚþÐ~6ÑÕ…ç¹.ÊðFyqŸXW—Eb]”à…q .+peÌ`6^‚—ƨYZÍ +5+«Y¡NeuhžXeÄÅÎ%;—O)ç’K&c89ÐøÎ>d>2Zƒ×ÆèYèü`üÖÆÖŒ¾±õáÉæÉðdódx²y2<Ù<žlž O6O†›ÛÒêùÜ|–%x“.ôçæìjuýïÜ´—udÒ˜¦Y±)éƒüNò8Œ^³ìuß ÇÁ² +endstream endobj 782 0 obj <>stream +H‰\‘ËjÄ †÷>ÅYÎ,s™+„@™¶E/4í=I…ƈ1‹¼}:L¡‚úÉñ×ß_~m£=ðw7É=ôÚ(‡ó´8‰Ðá  Ë PZúÛ*Žr–q·ëìqlL?±ªþAÅÙ»6jêpËø›Sè´`óum·ÀÛÅÚÑxÈ ®AaO½û*Fe»FQ]ûuGš¿Ÿ«E(â:Ofä¤p¶B¢f@VeÔj¨ž©Õ úWÏo²®—ß±ªx¢ÍYF«Ê<2MÄEâ"p™¸ ¼O¼|H||L| |J| +|N||I|©ƒÍ"K7gÑæÍO0L¹Â= ¹8GAÄðcáíÚàýìdT¡³_=¼†ë +endstream endobj 787 0 obj <> endobj 786 0 obj <>stream +H‰\‘ÛjÄ †ï}Š¹Ü½X4É!Ê–B.z i ÑIVhŒs‘·ï¨Ë*¨ß0óË?#¿ÖϵÑø‡›dƒzm”ÃyZœDèpІe9(-ý=Š§[Ë8‰›uö8Ö¦ŸXYÿ¤äìÝ +›'5u¸eüÝ)tÚ °ù¾6[àÍbíŽh<¨*PØÓC¯­}kGe»ZQ^ûuGš¿Š¯Õ"ä1Î’9)œm+ѵf@V +Z”/´*†FýËg"ɺ^ÞZÇÊ"£b!è"Îç‹ÄEà}â}àCâCàcâcàSâSàsâsàKâK¬å"FtkwÁ$Í‹sÔ|xì:ô« >þÄNH6û`qw„~ +endstream endobj 788 0 obj <>stream +H‰4R{LSwíåro°Ûz½ZwïÕ17P\Œ2œãé‹Ræ†-…–Ò€mé-4‘—€°™P®hÃú‚‰Õñ¶†&¦’m²±DŒÝ\6!ßÕ¬˜ìŸóÇùÎ÷圓ùúˆ0 Rîڣت\•ª.P[ôcxœ±@“ÂoY˜-䘰Ä­F§^š^Fo‰Dµ®Åpð5({ùÌ×"]9â¦R³^—gáÞË å"£6®_½€^aÔFE¼ÂH.VcÌÖr饼E»Ÿç¶rŒf“Ѭ¶h5k8.¶ €K[¸ÃsiZ^k.ö²ÿ»âô<§æ,fµF»_mÎ猹œÂK[JMZ.v+§6hÖ͜޻Êeóz^mÖkù5"&’ú‰ü½IE¸H)êÀ‚±"ì™Oª—á…œ¤ª[H-Á ¤¸S£ò‰¶ÏÊOœ~v­E~¢¡ò‹ZÅŸ–BþŒJ|§a¼ñÎØhÍX`H·I«ý,tˆÛ.62.±¤j.>Á $¸ýœN¬K¬I´ú™LV«‰µ‰§úÀo»oü*›Šî‹ËPWïex½EgÊoボç.ÉÇ.äeeæïFo~ÈnÞ«ßþy 1Ùp¯qÒs·Æ"Aå÷„kO¤pÈ ¡‡‰ç4O\q]93"¿Þ•›¡)LA’*¶t[Ëâh멦³rÊ3r+?lmJ +øØpÜ‘ËJì÷ÖÛJ3¸5KGÖZ!È +²& ƒ+Žå”™«³«‚#ÑÒuˆÙ„VØÕAp˜Œ®‰®ŒfNT»¾èú²»9ØS}×#›­%PÖ6“·ê›~èg#½9îÂÍç°|øI§Ü°ü©¿ÆQ9 z+„B P2X‰DÉ»ŒÕ¥*X±µ·×Ú+¨¯dO‚/òH“Áf-d©ßmæbk¹ÜОŠV¨êÔu;ÙÖ2âdûWçåãº0„­OZ¡9Ù\Ì,!$npÝ]7ÖRH\Xö"‚F4*Z‰†PÌ/!ÀAøÿìžæ*›­#ÁdñÄßr{s}mi!6Ϋé8>U¡ÌùÈG߶¹†4È‘À,Æz%ÑÞ4ïW…‚ó_HòÇ×%ÔÇÇÄXcCrmº\Y–×kÓA:íöƯåÐ@¢‡ó< +niÇlü3ȼ >ÔcjÒ-Ñïh®ó 5“¼?])Cäãä?!i ¤¹ã‚â,C=î=ïîúYvS;Þf¨I„‡'¢E,5E(—2·Òeef%íÜÑ33qÉÙÙéÕ Iow]¾,íwŒ^ݧØgÎË+d$Þ–FÜXøƒ–â°†èŸÎÞ»õÍ'èõM¦=;•9wgTóô_x +‰OÑr‹H$ìG8øwŸkÿEAÛPÒV3µ¥„ä€ãÅT~ªŽ’Ðb›o?.I€pd ¼ ÿ`è™ +endstream endobj 791 0 obj <>stream +H‰\“Ýn£0Fïy +_¶„à™VBHmÒJ¹Ømv€€“EÚrÈEÞ~çóu¥EËcæxòÍn»‡ÅåßãÔíÃâŽÃØÇp™®± îNØ­J×ÝrŸ¥gwnç,·ÍûÛe çÝxœ²ºvù[¼,ñæ^ûé³ü[ìCÆ“{øµÙ?º|ç?áÆÅ®i\Žö¢/íüµ=—§mO»ÞÖ‡åöd{þEü¼ÍÁ•i¾¢L7õá2·]ˆíx +Y]ØÕ¸úî& cÿßzµæ¶Ã±ûÝƬ^}XpQˆØýÒduY¤¹ ÆòüN~7^¿&¶!««UbŒKr ^“×àŠ\=Ùƒ…,`%+ø… ŸjKÞ{ºy¸yæòÈå™Ë#—g.\B7›0^/ŒÄ ã%ÅÓMà&r¯ ˜n7y&?ƒé™ê&¬‰ &òF~³†‚ +Ï"8‹°ž‚zÊýØ«•gTœQé¯ðWú+ü•þ +¥¿Â_é¯ðWú+ü•þ +¥¿Â_éoåÞhël÷ÙÝ5FkÅÔþ©Ñ}Ã>ÿyšíÂý`tÒÖ +endstream endobj 795 0 obj <>stream +H‰\PMoƒ0 ½çWøتPÆ`‡©êZ‰Ã>4¶Ã"…pàßÏ$U'-Râgù½ØÏüÜ<7Öàï~R-èÕçiñ +¡ÃÁXvÌAnY|Õ(ã$n×9àØØ~bBÿ âü +»“ž:Ü3þæ5zcØ}Û=ðvqîG´2¨kÐØÓG/Ò½ÊGÙ¡ÑT7a=æñ¹:„<æÇ4Œš4ÎN*ôÒÈDF§q¥S3´ú_ý)©º^}KÏD¾q³ŒáKÂÂÅCĘ(#¦@8qÊS^¦>¢JüjãWEÂEìë´MB ƒ»MµxOãV£µÍ”±x_¼›j»ìW€DAÓ +endstream endobj 799 0 obj <>stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream endobj 816 0 obj <> endobj 815 0 obj <> endobj 814 0 obj <> endobj 716 0 obj <> endobj xref +0 817 +0000000003 65535 f +0000000016 00000 n +0000018085 00000 n +0000000004 00000 f +0000000005 00000 f +0000000006 00000 f +0000000008 00000 f +0000192151 00000 n +0000000009 00000 f +0000000011 00000 f +0000023009 00000 n +0000000012 00000 f +0000000013 00000 f +0000000014 00000 f +0000000015 00000 f +0000000016 00000 f +0000000017 00000 f +0000000018 00000 f +0000000030 00000 f +0000053751 00000 n +0000023233 00000 n +0000049099 00000 n +0000023770 00000 n +0000048174 00000 n +0000023953 00000 n +0000043761 00000 n +0000112443 00000 n +0000113171 00000 n +0000057340 00000 n +0000057791 00000 n +0000000033 00000 f +0000024678 00000 n +0000033600 00000 n +0000000039 00000 f +0000024431 00000 n +0000041682 00000 n +0000210954 00000 n +0000211165 00000 n +0000023122 00000 n +0000000040 00000 f +0000000041 00000 f +0000000042 00000 f +0000000043 00000 f +0000000044 00000 f +0000000045 00000 f +0000000046 00000 f +0000000049 00000 f +0000208429 00000 n +0000192558 00000 n +0000000050 00000 f +0000000051 00000 f +0000000052 00000 f +0000000053 00000 f +0000000056 00000 f +0000135718 00000 n +0000136203 00000 n +0000000057 00000 f +0000000058 00000 f +0000000059 00000 f +0000000062 00000 f +0000204625 00000 n +0000192942 00000 n +0000000063 00000 f +0000000064 00000 f +0000000065 00000 f +0000000066 00000 f +0000000067 00000 f +0000000068 00000 f +0000000069 00000 f +0000000070 00000 f +0000000071 00000 f +0000000072 00000 f +0000000073 00000 f +0000000074 00000 f +0000000075 00000 f +0000000078 00000 f +0000082556 00000 n +0000083040 00000 n +0000000079 00000 f +0000000080 00000 f +0000000081 00000 f +0000000082 00000 f +0000000083 00000 f +0000000084 00000 f +0000000085 00000 f +0000000086 00000 f +0000000089 00000 f +0000201523 00000 n +0000193338 00000 n +0000000090 00000 f +0000000091 00000 f +0000000092 00000 f +0000000093 00000 f +0000000094 00000 f +0000000095 00000 f +0000000096 00000 f +0000000097 00000 f +0000000100 00000 f +0000197843 00000 n +0000193698 00000 n +0000000101 00000 f +0000000102 00000 f +0000000103 00000 f +0000000104 00000 f +0000000107 00000 f +0000025399 00000 n +0000025859 00000 n +0000000108 00000 f +0000000109 00000 f +0000000110 00000 f +0000000111 00000 f +0000000114 00000 f +0000194096 00000 n +0000169744 00000 n +0000000115 00000 f +0000000116 00000 f +0000000117 00000 f +0000000118 00000 f +0000000119 00000 f +0000000120 00000 f +0000000121 00000 f +0000000124 00000 f +0000188013 00000 n +0000170119 00000 n +0000000125 00000 f +0000000126 00000 f +0000000127 00000 f +0000000128 00000 f +0000000129 00000 f +0000000130 00000 f +0000000131 00000 f +0000000132 00000 f +0000000133 00000 f +0000000134 00000 f +0000000135 00000 f +0000000136 00000 f +0000000137 00000 f +0000000138 00000 f +0000000139 00000 f +0000000140 00000 f +0000000141 00000 f +0000000142 00000 f +0000000143 00000 f +0000000144 00000 f +0000000145 00000 f +0000000146 00000 f +0000000147 00000 f +0000000148 00000 f +0000000149 00000 f +0000000152 00000 f +0000184470 00000 n +0000170530 00000 n +0000000153 00000 f +0000000154 00000 f +0000000155 00000 f +0000000156 00000 f +0000000157 00000 f +0000000158 00000 f +0000000159 00000 f +0000000162 00000 f +0000181145 00000 n +0000170880 00000 n +0000000163 00000 f +0000000164 00000 f +0000000165 00000 f +0000000166 00000 f +0000000167 00000 f +0000000168 00000 f +0000000169 00000 f +0000000170 00000 f +0000000173 00000 f +0000177878 00000 n +0000171254 00000 n +0000000174 00000 f +0000000175 00000 f +0000000176 00000 f +0000000177 00000 f +0000000180 00000 f +0000174982 00000 n +0000175399 00000 n +0000000181 00000 f +0000000182 00000 f +0000000187 00000 f +0000171629 00000 n +0000149990 00000 n +0000018297 00000 n +0000018187 00000 n +0000000188 00000 f +0000000189 00000 f +0000000190 00000 f +0000000191 00000 f +0000000192 00000 f +0000000193 00000 f +0000000194 00000 f +0000000195 00000 f +0000000196 00000 f +0000000199 00000 f +0000165895 00000 n +0000150388 00000 n +0000000200 00000 f +0000000201 00000 f +0000000202 00000 f +0000000203 00000 f +0000000204 00000 f +0000000205 00000 f +0000000206 00000 f +0000000207 00000 f +0000000210 00000 f +0000162306 00000 n +0000150750 00000 n +0000000211 00000 f +0000000212 00000 f +0000000213 00000 f +0000000214 00000 f +0000000215 00000 f +0000000216 00000 f +0000000217 00000 f +0000000218 00000 f +0000000219 00000 f +0000000220 00000 f +0000000221 00000 f +0000000222 00000 f +0000000225 00000 f +0000158855 00000 n +0000151136 00000 n +0000000226 00000 f +0000000227 00000 f +0000000228 00000 f +0000000229 00000 f +0000000230 00000 f +0000000231 00000 f +0000000232 00000 f +0000000233 00000 f +0000000236 00000 f +0000155431 00000 n +0000151498 00000 n +0000000237 00000 f +0000000238 00000 f +0000000239 00000 f +0000000240 00000 f +0000000241 00000 f +0000000242 00000 f +0000000243 00000 f +0000000244 00000 f +0000000248 00000 f +0000151872 00000 n +0000127907 00000 n +0000018397 00000 n +0000000249 00000 f +0000000250 00000 f +0000000251 00000 f +0000000252 00000 f +0000000253 00000 f +0000000254 00000 f +0000000255 00000 f +0000000256 00000 f +0000000259 00000 f +0000146097 00000 n +0000128281 00000 n +0000000260 00000 f +0000000261 00000 f +0000000262 00000 f +0000000263 00000 f +0000000264 00000 f +0000000265 00000 f +0000000266 00000 f +0000000267 00000 f +0000000270 00000 f +0000142584 00000 n +0000128655 00000 n +0000000271 00000 f +0000000272 00000 f +0000000273 00000 f +0000000274 00000 f +0000000275 00000 f +0000000276 00000 f +0000000277 00000 f +0000000278 00000 f +0000000279 00000 f +0000000280 00000 f +0000000281 00000 f +0000000282 00000 f +0000000283 00000 f +0000000284 00000 f +0000000285 00000 f +0000000286 00000 f +0000000289 00000 f +0000139097 00000 n +0000129041 00000 n +0000000290 00000 f +0000000291 00000 f +0000000292 00000 f +0000000293 00000 f +0000000294 00000 f +0000000295 00000 f +0000000296 00000 f +0000000297 00000 f +0000000298 00000 f +0000000299 00000 f +0000000300 00000 f +0000000301 00000 f +0000000302 00000 f +0000000303 00000 f +0000000304 00000 f +0000000305 00000 f +0000000306 00000 f +0000000307 00000 f +0000000308 00000 f +0000000309 00000 f +0000000312 00000 f +0000124885 00000 n +0000125288 00000 n +0000000313 00000 f +0000000314 00000 f +0000000315 00000 f +0000000316 00000 f +0000000317 00000 f +0000000318 00000 f +0000000319 00000 f +0000000320 00000 f +0000000321 00000 f +0000000322 00000 f +0000000323 00000 f +0000000324 00000 f +0000000325 00000 f +0000000328 00000 f +0000132704 00000 n +0000129440 00000 n +0000000329 00000 f +0000000330 00000 f +0000000331 00000 f +0000000332 00000 f +0000000333 00000 f +0000000334 00000 f +0000000335 00000 f +0000000336 00000 f +0000000337 00000 f +0000000338 00000 f +0000000339 00000 f +0000000340 00000 f +0000000341 00000 f +0000000342 00000 f +0000000343 00000 f +0000000344 00000 f +0000000348 00000 f +0000129802 00000 n +0000100375 00000 n +0000018497 00000 n +0000000349 00000 f +0000000350 00000 f +0000000351 00000 f +0000000352 00000 f +0000000353 00000 f +0000000354 00000 f +0000000355 00000 f +0000000356 00000 f +0000000357 00000 f +0000000358 00000 f +0000000359 00000 f +0000000360 00000 f +0000000361 00000 f +0000000362 00000 f +0000000363 00000 f +0000000364 00000 f +0000000365 00000 f +0000000366 00000 f +0000000367 00000 f +0000000368 00000 f +0000000369 00000 f +0000000370 00000 f +0000000371 00000 f +0000000372 00000 f +0000000373 00000 f +0000000374 00000 f +0000000375 00000 f +0000000376 00000 f +0000000377 00000 f +0000000378 00000 f +0000000379 00000 f +0000000380 00000 f +0000000381 00000 f +0000000382 00000 f +0000000383 00000 f +0000000384 00000 f +0000000385 00000 f +0000000386 00000 f +0000000387 00000 f +0000000390 00000 f +0000121749 00000 n +0000100774 00000 n +0000000391 00000 f +0000000392 00000 f +0000000393 00000 f +0000000394 00000 f +0000000395 00000 f +0000000396 00000 f +0000000397 00000 f +0000000398 00000 f +0000000401 00000 f +0000118445 00000 n +0000101136 00000 n +0000000402 00000 f +0000000403 00000 f +0000000404 00000 f +0000000405 00000 f +0000000406 00000 f +0000000407 00000 f +0000000408 00000 f +0000000409 00000 f +0000000410 00000 f +0000000411 00000 f +0000000412 00000 f +0000000413 00000 f +0000000414 00000 f +0000000415 00000 f +0000000416 00000 f +0000000417 00000 f +0000000418 00000 f +0000000419 00000 f +0000000420 00000 f +0000000421 00000 f +0000000422 00000 f +0000000423 00000 f +0000000424 00000 f +0000000425 00000 f +0000000426 00000 f +0000000427 00000 f +0000000428 00000 f +0000000429 00000 f +0000000430 00000 f +0000000431 00000 f +0000000432 00000 f +0000000433 00000 f +0000000434 00000 f +0000000435 00000 f +0000000436 00000 f +0000000437 00000 f +0000000438 00000 f +0000000439 00000 f +0000000440 00000 f +0000000443 00000 f +0000109426 00000 n +0000101522 00000 n +0000000444 00000 f +0000000445 00000 f +0000000446 00000 f +0000000447 00000 f +0000000448 00000 f +0000000449 00000 f +0000000450 00000 f +0000000451 00000 f +0000000454 00000 f +0000105882 00000 n +0000101884 00000 n +0000000455 00000 f +0000000456 00000 f +0000000457 00000 f +0000000458 00000 f +0000000459 00000 f +0000000460 00000 f +0000000461 00000 f +0000000462 00000 f +0000000466 00000 f +0000102258 00000 n +0000078242 00000 n +0000018597 00000 n +0000000467 00000 f +0000000468 00000 f +0000000469 00000 f +0000000470 00000 f +0000000471 00000 f +0000000472 00000 f +0000000473 00000 f +0000000476 00000 f +0000097361 00000 n +0000078592 00000 n +0000000477 00000 f +0000000478 00000 f +0000000479 00000 f +0000000480 00000 f +0000000481 00000 f +0000000482 00000 f +0000000483 00000 f +0000000484 00000 f +0000000487 00000 f +0000094053 00000 n +0000078966 00000 n +0000000488 00000 f +0000000489 00000 f +0000000490 00000 f +0000000491 00000 f +0000000492 00000 f +0000000493 00000 f +0000000494 00000 f +0000000495 00000 f +0000000498 00000 f +0000092333 00000 n +0000079328 00000 n +0000000499 00000 f +0000000500 00000 f +0000000501 00000 f +0000000502 00000 f +0000000505 00000 f +0000069854 00000 n +0000070064 00000 n +0000000506 00000 f +0000000507 00000 f +0000000508 00000 f +0000000511 00000 f +0000088960 00000 n +0000079752 00000 n +0000000512 00000 f +0000000513 00000 f +0000000514 00000 f +0000000515 00000 f +0000000516 00000 f +0000000517 00000 f +0000000518 00000 f +0000000522 00000 f +0000080114 00000 n +0000018913 00000 n +0000018697 00000 n +0000000523 00000 f +0000000524 00000 f +0000000525 00000 f +0000000526 00000 f +0000000527 00000 f +0000000528 00000 f +0000000529 00000 f +0000000530 00000 f +0000000531 00000 f +0000000532 00000 f +0000000533 00000 f +0000000534 00000 f +0000000535 00000 f +0000000536 00000 f +0000000537 00000 f +0000000538 00000 f +0000000539 00000 f +0000000540 00000 f +0000000541 00000 f +0000000542 00000 f +0000000543 00000 f +0000000544 00000 f +0000000545 00000 f +0000000546 00000 f +0000000547 00000 f +0000000548 00000 f +0000000549 00000 f +0000000550 00000 f +0000000551 00000 f +0000000552 00000 f +0000000553 00000 f +0000000554 00000 f +0000000555 00000 f +0000000556 00000 f +0000000557 00000 f +0000000558 00000 f +0000000559 00000 f +0000000560 00000 f +0000000561 00000 f +0000000562 00000 f +0000000563 00000 f +0000000564 00000 f +0000000565 00000 f +0000000566 00000 f +0000000567 00000 f +0000000568 00000 f +0000000569 00000 f +0000000570 00000 f +0000000571 00000 f +0000000572 00000 f +0000000573 00000 f +0000000574 00000 f +0000000575 00000 f +0000000576 00000 f +0000000577 00000 f +0000000578 00000 f +0000000579 00000 f +0000000580 00000 f +0000000581 00000 f +0000000584 00000 f +0000075644 00000 n +0000019287 00000 n +0000000585 00000 f +0000000586 00000 f +0000000587 00000 f +0000000588 00000 f +0000000589 00000 f +0000000590 00000 f +0000000591 00000 f +0000000592 00000 f +0000000593 00000 f +0000000594 00000 f +0000000595 00000 f +0000000596 00000 f +0000000597 00000 f +0000000598 00000 f +0000000599 00000 f +0000000600 00000 f +0000000601 00000 f +0000000602 00000 f +0000000603 00000 f +0000000604 00000 f +0000000605 00000 f +0000000606 00000 f +0000000607 00000 f +0000000608 00000 f +0000000609 00000 f +0000000610 00000 f +0000000611 00000 f +0000000612 00000 f +0000000613 00000 f +0000000614 00000 f +0000000615 00000 f +0000000616 00000 f +0000000617 00000 f +0000000618 00000 f +0000000619 00000 f +0000000620 00000 f +0000000621 00000 f +0000000622 00000 f +0000000623 00000 f +0000000624 00000 f +0000000625 00000 f +0000000626 00000 f +0000000627 00000 f +0000000628 00000 f +0000000629 00000 f +0000000630 00000 f +0000000631 00000 f +0000000632 00000 f +0000000633 00000 f +0000000634 00000 f +0000000635 00000 f +0000000636 00000 f +0000000637 00000 f +0000000638 00000 f +0000000639 00000 f +0000000640 00000 f +0000000641 00000 f +0000000642 00000 f +0000000643 00000 f +0000000644 00000 f +0000000645 00000 f +0000000648 00000 f +0000072874 00000 n +0000019637 00000 n +0000000649 00000 f +0000000650 00000 f +0000000651 00000 f +0000000652 00000 f +0000000653 00000 f +0000000654 00000 f +0000000655 00000 f +0000000656 00000 f +0000000657 00000 f +0000000658 00000 f +0000000659 00000 f +0000000660 00000 f +0000000661 00000 f +0000000662 00000 f +0000000663 00000 f +0000000664 00000 f +0000000665 00000 f +0000000666 00000 f +0000000667 00000 f +0000000668 00000 f +0000000671 00000 f +0000071682 00000 n +0000019999 00000 n +0000000672 00000 f +0000000673 00000 f +0000000674 00000 f +0000000675 00000 f +0000000676 00000 f +0000000677 00000 f +0000000678 00000 f +0000000681 00000 f +0000067296 00000 n +0000020399 00000 n +0000000682 00000 f +0000000683 00000 f +0000000684 00000 f +0000000685 00000 f +0000000686 00000 f +0000000687 00000 f +0000000688 00000 f +0000000689 00000 f +0000000693 00000 f +0000064901 00000 n +0000020786 00000 n +0000018797 00000 n +0000000694 00000 f +0000000695 00000 f +0000000696 00000 f +0000000697 00000 f +0000000698 00000 f +0000000699 00000 f +0000000700 00000 f +0000000703 00000 f +0000053936 00000 n +0000021173 00000 n +0000000704 00000 f +0000000705 00000 f +0000000706 00000 f +0000000707 00000 f +0000000708 00000 f +0000000709 00000 f +0000000710 00000 f +0000000711 00000 f +0000000713 00000 f +0000021560 00000 n +0000000714 00000 f +0000000715 00000 f +0000000718 00001 f +0000264393 00000 n +0000058591 00000 n +0000000721 00001 f +0000034480 00000 n +0000026666 00000 n +0000000723 00001 f +0000049382 00000 n +0000000725 00001 f +0000048445 00000 n +0000000727 00001 f +0000044044 00000 n +0000000729 00001 f +0000113454 00000 n +0000000731 00001 f +0000058053 00000 n +0000000733 00001 f +0000033856 00000 n +0000000735 00001 f +0000041938 00000 n +0000000739 00001 f +0000211457 00000 n +0000136940 00000 n +0000136484 00000 n +0000000745 00001 f +0000083296 00000 n +0000026750 00000 n +0000026119 00000 n +0000176095 00000 n +0000175688 00000 n +0000000755 00001 f +0000125575 00000 n +0000070659 00000 n +0000070329 00000 n +0000000131 00000 n +0000191782 00000 n +0000213220 00000 n +0000213106 00000 n +0000214387 00000 n +0000214932 00000 n +0000000756 00001 f +0000000759 00001 f +0000214161 00000 n +0000215424 00000 n +0000000760 00001 f +0000000763 00001 f +0000213736 00000 n +0000215746 00000 n +0000000764 00001 f +0000000767 00001 f +0000213332 00000 n +0000216179 00000 n +0000000768 00001 f +0000000775 00001 f +0000216582 00000 n +0000212387 00000 n +0000191295 00000 n +0000233374 00000 n +0000258699 00000 n +0000258911 00000 n +0000000776 00001 f +0000000779 00001 f +0000258217 00000 n +0000259233 00000 n +0000000780 00001 f +0000000783 00001 f +0000258001 00000 n +0000259701 00000 n +0000000784 00001 f +0000000790 00001 f +0000257787 00000 n +0000260313 00000 n +0000260051 00000 n +0000260658 00000 n +0000257351 00000 n +0000000792 00001 f +0000261890 00000 n +0000000793 00001 f +0000000796 00001 f +0000256989 00000 n +0000262394 00000 n +0000000797 00001 f +0000000800 00001 f +0000256805 00000 n +0000262733 00000 n +0000000801 00001 f +0000000000 00001 f +0000216768 00000 n +0000049943 00000 n +0000048742 00000 n +0000044594 00000 n +0000114083 00000 n +0000058675 00000 n +0000083765 00000 n +0000042290 00000 n +0000034567 00000 n +0000211779 00000 n +0000125979 00000 n +0000017956 00000 n +0000264315 00000 n +0000264223 00000 n +0000263030 00000 n +trailer +<<7F98D9E823CE2B44B89DFB30F904D50C>]>> +startxref +264558 +%%EOF diff --git a/src/Static/data/Standards/6/IDDRS-6.30-DDR-and-Natural-Resources.docx b/src/Static/data/Standards/6/IDDRS-6.30-DDR-and-Natural-Resources.docx new file mode 100644 index 0000000..6f7d8ac Binary files /dev/null and b/src/Static/data/Standards/6/IDDRS-6.30-DDR-and-Natural-Resources.docx differ diff --git a/src/Static/data/Standards/6/IDDRS-6.30-DDR-and-Natural-Resources.pdf b/src/Static/data/Standards/6/IDDRS-6.30-DDR-and-Natural-Resources.pdf new file mode 100644 index 0000000..de90d53 Binary files /dev/null and b/src/Static/data/Standards/6/IDDRS-6.30-DDR-and-Natural-Resources.pdf differ diff --git a/src/Static/data/Standards/6/IDDRS-6.40-DDR-and-Organized-Crime.docx b/src/Static/data/Standards/6/IDDRS-6.40-DDR-and-Organized-Crime.docx new file mode 100644 index 0000000..7981943 Binary files /dev/null and b/src/Static/data/Standards/6/IDDRS-6.40-DDR-and-Organized-Crime.docx differ diff --git a/src/Static/data/Standards/6/IDDRS-6.40-DDR-and-Organized-Crime.pdf b/src/Static/data/Standards/6/IDDRS-6.40-DDR-and-Organized-Crime.pdf new file mode 100644 index 0000000..5b9e83c --- /dev/null +++ b/src/Static/data/Standards/6/IDDRS-6.40-DDR-and-Organized-Crime.pdf @@ -0,0 +1,23409 @@ +%PDF-1.4 +%âãÏÓ +1 0 obj +<< +/CreationDate (D:20210518094342+02'00') +/Creator (Adobe InDesign 16.1 \(Windows\)) +/ModDate (D:20210518094859+02'00') +/Producer (Adobe PDF Library 15.0) +/Trapped /False +>> +endobj +2 0 obj +<< +/Lang (de-DE) +/MarkInfo << +/Marked true +>> +/Metadata 3 0 R +/Names 4 0 R +/Pages 5 0 R +/StructTreeRoot 6 0 R +/Type /Catalog +/ViewerPreferences << +/Direction /L2R +>> +>> +endobj +3 0 obj +<< +/Length 4200 +/Subtype /XML +/Type /Metadata +>> +stream + + + + + 2021-05-18T09:43:42+02:00 + 2021-05-18T09:43:45+02:00 + Adobe InDesign 16.1 (Windows) + 2021-05-18T09:48:59+02:00 + uuid:b2e7bc1b-1fb6-464a-bf58-19b9560977d6 + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + xmp.id:7fa448b7-237f-784d-8950-3913c3e080c2 + proof:pdf + + xmp.iid:7f4fe27d-cb9c-ed46-a525-a2bdb6e2c0e1 + xmp.did:c31408ca-787c-ec43-bfb7-9b327120b97c + xmp.did:03f8751d-358c-4894-8797-0071f5bc7979 + default + + + + + converted + from application/x-indesign to application/pdf + Adobe InDesign 16.1 (Windows) + / + 2021-05-18T09:43:42+02:00 + + + + application/pdf + Adobe PDF Library 15.0 + False + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +4 0 obj +<< +/Dests 7 0 R +>> +endobj +5 0 obj +<< +/Count 39 +/Kids [8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R +24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R +40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R] +/Type /Pages +>> +endobj +6 0 obj +<< +/ClassMap 47 0 R +/K 48 0 R +/ParentTree 49 0 R +/ParentTreeNextKey 36 +/RoleMap 50 0 R +/Type /StructTreeRoot +>> +endobj +7 0 obj +<< +/Names [() [42 0 R /Fit]] +>> +endobj +8 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 51 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 670 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 7 +/PageItemUIDToLocationDataMap << +/0 [407.0 7.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 12.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 2.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 10.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 9.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 11.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ColorSpace << +/CS0 52 0 R +>> +/ExtGState << +/GS0 53 0 R +/GS1 54 0 R +>> +/Font << +/TT0 55 0 R +/TT1 56 0 R +/C2_0 57 0 R +/T1_0 58 0 R +/T1_1 59 0 R +/T1_2 60 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 61 0 R +/Fm1 62 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +9 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 63 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1730 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [407.0 1.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [462.0 7.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/2 [484.0 6.0 3.0 -501.732 364.961 -135.118 396.142 1.0 0.0 0.0 1.0 -209.622 369.354] +/3 [506.0 5.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [528.0 4.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/5 [531.0 3.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/6 [532.0 2.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [581.0 11.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/8 [603.0 10.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/9 [625.0 9.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/10 [647.0 8.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/11 [1982.0 0.0 2.0 -501.343 -340.095 -84.6496 260.849 1.0 0.0 0.0 1.0 -500.843 -339.595] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 53 0 R +/GS1 54 0 R +>> +/Font << +/TT0 56 0 R +/TT1 55 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 64 0 R +/Fm1 65 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +10 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents [66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R 73 0 R] +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 205 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [255.0 1.0 2.0 85.0394 -340.157 501.732 262.677 1.0 0.0 0.0 1.0 293.386 -7.08661] +/1 [349.0 3.0 4.0 0.0 371.339 615.118 371.339 1.0 0.0 0.0 1.0 0.0 371.339] +/2 [423.0 13.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [469.0 11.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/4 [492.0 9.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/5 [500.0 12.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/6 [524.0 8.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/7 [525.0 10.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/8 [3554.0 7.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 6.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 5.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 4.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 78 0 R +/T1_2 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +11 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 81 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 555 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [630.0 4.0 4.0 -85.0394 -396.85 -85.0394 396.85 1.0 0.0 0.0 1.0 -85.0394 0.0] +/7 [671.0 2.0 2.0 -501.732 -340.157 -85.0394 301.89 1.0 0.0 0.0 1.0 -293.386 -7.08661] +/8 [1344.0 3.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 86.0118] +/9 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/TT1 82 0 R +/T1_0 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 1 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +12 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 84 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 556 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 82 0 R +/TT1 76 0 R +/T1_0 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 2 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +13 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 85 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1366 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 16 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 20.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1395.0 0.0 2.0 -501.732 -340.157 -85.0394 255.118 1.0 0.0 0.0 1.0 -501.232 -288.634] +/7 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [4692.0 1.0 2.0 85.0394 -340.157 501.732 247.559 1.0 0.0 0.0 1.0 85.5394 -339.657] +/12 [6426.0 2.0 2.0 654.803 -265.512 980.787 -169.417 1.0 0.0 0.0 1.0 818.079 -260.22] +/13 [6450.0 3.0 2.0 -1073.39 -204.094 -747.402 -141.26 1.0 0.0 0.0 1.0 -1044.76 -176.147] +/14 [8301.0 4.0 2.0 -1062.99 -51.9685 -646.299 430.561 1.0 0.0 0.0 1.0 -1062.49 -51.4685] +/15 [10083.0 5.0 2.0 -615.118 -125.669 -289.134 -35.6317 1.0 0.0 0.0 1.0 -586.488 -101.915] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 3 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +14 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 87 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1376 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 4 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +15 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 89 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1470 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1489.0 0.0 2.0 85.0394 -340.157 501.732 283.937 1.0 0.0 0.0 1.0 85.5394 160.657] +/7 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [4441.0 1.0 2.0 -501.732 -340.157 -85.0394 283.937 1.0 0.0 0.0 1.0 -501.232 175.681] +/12 [6610.0 2.0 2.0 -637.795 -461.575 -221.102 -441.449 1.0 0.0 0.0 1.0 -557.008 -448.11] +/13 [8342.0 3.0 2.0 -1229.29 -74.9026 -903.307 48.189 1.0 0.0 0.0 1.0 -1200.66 -46.9553] +/14 [9367.0 4.0 2.0 692.598 -299.055 1109.29 -25.3258 1.0 0.0 0.0 1.0 693.098 -298.555] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 5 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +16 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 90 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1480 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 6 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +17 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 91 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1505 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 16 +/PageItemUIDToLocationDataMap << +/0 [423.0 25.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 23.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 21.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 24.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 20.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 22.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1516.0 0.0 2.0 -501.732 -340.157 -85.0394 292.913 1.0 0.0 0.0 1.0 -501.232 -202.65] +/7 [1583.0 1.0 2.0 85.0394 -340.157 501.732 300.472 1.0 0.0 0.0 1.0 85.5394 78.9252] +/8 [3554.0 19.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 18.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 17.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 16.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [6614.0 2.0 2.0 -1076.22 -18.8976 -750.236 83.8685 1.0 0.0 0.0 1.0 -1047.59 17.585] +/13 [9431.0 3.0 2.0 -1082.83 -291.969 -756.85 -215.796 1.0 0.0 0.0 1.0 -1054.2 -264.021] +/14 [9461.0 4.0 2.0 680.315 33.0709 1006.3 129.165 1.0 0.0 0.0 1.0 843.591 38.3622] +/15 [10126.0 5.0 2.0 288.573 -154.252 614.557 -74.7845 1.0 0.0 0.0 1.0 451.848 -165.588] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 7 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +18 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 92 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1515 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 79 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 8 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +19 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 93 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1607 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 18 +/PageItemUIDToLocationDataMap << +/0 [423.0 27.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 25.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 23.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 26.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 22.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 24.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1622.0 0.0 2.0 -501.732 -340.157 -85.0394 299.055 1.0 0.0 0.0 1.0 -501.232 -237.043] +/7 [1635.0 1.0 2.0 85.0394 -340.157 501.732 299.055 1.0 0.0 0.0 1.0 85.5394 236.484] +/8 [3459.0 2.0 2.0 619.748 340.455 959.192 486.156 1.0 0.0 0.0 1.0 783.024 413.306] +/9 [3554.0 21.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/10 [3627.0 20.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/11 [3652.0 19.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/12 [3676.0 18.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/13 [4997.0 3.0 2.0 713.197 -133.228 1129.89 289.885 1.0 0.0 0.0 1.0 921.543 166.299] +/14 [5253.0 4.0 2.0 -1177.51 -185.102 -761.071 -158.283 1.0 0.0 0.0 1.0 -993.795 -177.073] +/15 [5762.0 5.0 2.0 704.882 -453.071 885.165 -187.748 1.0 0.0 0.0 1.0 823.937 -413.386] +/16 [8398.0 6.0 2.0 655.748 79.8425 981.732 220.157 1.0 0.0 0.0 1.0 819.024 105.481] +/17 [9724.0 7.0 2.0 -1005.35 23.1496 -679.37 113.187 1.0 0.0 0.0 1.0 -976.724 46.9037] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 79 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 9 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +20 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 94 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1617 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 10 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +21 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 95 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1651 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 22 +/PageItemUIDToLocationDataMap << +/0 [423.0 31.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 29.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 27.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 30.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 26.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 28.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1664.0 0.0 2.0 -501.732 -340.157 -85.0394 283.465 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [1699.0 1.0 2.0 85.0394 -340.157 501.732 271.417 1.0 0.0 0.0 1.0 85.5394 -339.657] +/8 [3554.0 25.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/9 [3627.0 24.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/10 [3652.0 23.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/11 [3676.0 22.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/12 [5037.0 2.0 2.0 -1069.23 -53.2913 -652.535 287.575 1.0 0.0 0.0 1.0 -860.882 246.236] +/13 [5282.0 3.0 2.0 -1047.69 -121.323 -631.244 -94.5039 1.0 0.0 0.0 1.0 -863.969 -113.294] +/14 [5307.0 4.0 2.0 677.48 -78.3494 1094.17 328.819 1.0 0.0 0.0 1.0 885.827 221.178] +/15 [5344.0 5.0 2.0 833.638 -125.858 1250.08 -99.0394 1.0 0.0 0.0 1.0 1017.35 -117.829] +/16 [5918.0 6.0 2.0 -1158.43 -426.614 -741.732 -19.8425 1.0 0.0 0.0 1.0 -1157.93 -426.114] +/17 [6714.0 7.0 2.0 -1077.17 -183.307 -660.472 173.7 1.0 0.0 0.0 1.0 -1076.67 -182.807] +/18 [8374.0 8.0 2.0 -895.748 -513.79 -569.764 -411.024 1.0 0.0 0.0 1.0 -867.118 -477.307] +/19 [9799.0 9.0 2.0 652.913 -409.134 1069.61 -270.703 1.0 0.0 0.0 1.0 653.413 -408.634] +/20 [10157.0 10.0 2.0 -615.118 -211.654 -289.134 -62.5882 1.0 0.0 0.0 1.0 -586.488 -128.872] +/21 [10232.0 11.0 2.0 288.626 -7.08661 614.61 117.529 1.0 0.0 0.0 1.0 451.902 -39.5079] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 11 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +22 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 96 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1661 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 12 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +23 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 97 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 749 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 18 +/PageItemUIDToLocationDataMap << +/0 [423.0 28.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 26.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 24.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 27.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 23.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 25.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1708.0 1.0 2.0 -501.732 -340.157 -85.0394 249.449 1.0 0.0 0.0 1.0 -501.232 -339.657] +/7 [3554.0 22.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/8 [3627.0 21.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/9 [3652.0 20.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/10 [3676.0 19.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/11 [5150.0 2.0 2.0 643.465 -343.843 1060.16 287.612 1.0 0.0 0.0 1.0 851.811 -44.315] +/12 [6758.0 3.0 2.0 -1008.19 71.3386 -682.205 174.105 1.0 0.0 0.0 1.0 -979.559 107.821] +/13 [6785.0 4.0 2.0 661.417 60.0 987.402 185.907 1.0 0.0 0.0 1.0 824.693 65.2913] +/14 [8496.0 5.0 2.0 -1096.06 -331.181 -679.37 132.992 1.0 0.0 0.0 1.0 -887.717 -31.6535] +/15 [8532.0 6.0 2.0 -1113.07 -385.039 -696.63 -358.22 1.0 0.0 0.0 1.0 -929.354 -377.01] +/16 [9835.0 7.0 2.0 -614.793 -78.6147 -288.809 8.50394 1.0 0.0 0.0 1.0 -586.163 -78.0019] +/17 [9913.0 8.0 2.0 85.0394 -340.157 501.732 282.047 1.0 0.0 0.0 1.0 85.5394 -330.681] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 13 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +24 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 98 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 750 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/TT1 82 0 R +/C2_0 99 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 14 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +25 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 100 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9928 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [9947.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [9952.0 1.0 2.0 85.0394 343.559 501.732 348.661 1.0 0.0 0.0 1.0 85.5394 -316.98] +/12 [10277.0 2.0 2.0 -614.386 10.8661 -288.402 113.632 1.0 0.0 0.0 1.0 -585.756 20.9836] +/13 [10304.0 3.0 2.0 85.0394 -326.748 501.732 454.488 1.0 0.0 0.0 1.0 293.386 -14.1732] +/14 [10381.0 4.0 2.0 85.1654 -340.157 501.606 -313.339 1.0 0.0 0.0 1.0 268.882 -332.128] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/TT1 82 0 R +/C2_0 99 0 R +/T1_0 77 0 R +/T1_1 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 15 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +26 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 101 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9929 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 102 0 R +/GS1 103 0 R +/GS2 104 0 R +>> +/Font << +/F0 77 0 R +/F1 88 0 R +/F2 99 0 R +/F3 105 0 R +/F4 79 0 R +/F5 86 0 R +>> +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 34 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +27 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 106 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9939 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 23.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 21.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 19.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 22.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 18.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 20.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 17.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 16.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 15.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 14.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [9960.0 0.0 2.0 -501.732 -340.157 -85.0394 281.102 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [9964.0 1.0 2.0 -1035.59 -185.435 -709.606 -59.5276 1.0 0.0 0.0 1.0 -1006.96 -161.681] +/12 [10427.0 2.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +/13 [10433.0 3.0 2.0 288.679 11.3386 614.663 111.474 1.0 0.0 0.0 1.0 451.955 -45.5625] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/TT1 82 0 R +/C2_0 99 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 16 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +28 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 107 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 9940 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 82 0 R +/TT1 76 0 R +/C2_0 99 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 17 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +29 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 108 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10420 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 22.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 20.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 18.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 21.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 17.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 19.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10460.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10469.0 1.0 2.0 85.0394 -340.157 501.732 -8.03149 1.0 0.0 0.0 1.0 85.5394 -339.657] +/12 [10476.0 2.0 2.0 85.0394 -8.03149 501.732 331.181 1.0 0.0 0.0 1.0 85.5394 -7.53149] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/TT1 82 0 R +/C2_0 99 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 18 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +30 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 109 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10421 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 110 0 R +/GS1 111 0 R +/GS2 112 0 R +>> +/Font << +/F0 77 0 R +/F1 76 0 R +/F2 99 0 R +/F3 82 0 R +/F4 88 0 R +/F5 86 0 R +>> +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 19 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +31 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 113 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10522 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 23.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 21.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 19.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 22.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 18.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 20.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 17.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 16.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 15.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 14.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10553.0 0.0 2.0 -501.732 -340.157 -85.0394 245.197 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10559.0 1.0 2.0 -615.118 -69.4488 -289.134 56.4587 1.0 0.0 0.0 1.0 -586.488 -45.6947] +/12 [10586.0 2.0 2.0 85.0394 -340.157 501.732 -110.551 1.0 0.0 0.0 1.0 85.5394 -339.657] +/13 [10631.0 3.0 2.0 85.0394 -79.3701 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -78.3976] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 20 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +32 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 114 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10523 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 115 0 R +/GS1 116 0 R +/GS2 117 0 R +>> +/Font << +/F0 77 0 R +/F1 88 0 R +/F2 99 0 R +/F3 86 0 R +/F4 76 0 R +>> +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 21 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +33 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 118 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10533 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 22.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 20.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 18.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 21.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 17.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 19.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10636.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10643.0 1.0 2.0 -501.732 -201.26 -85.0394 59.5276 1.0 0.0 0.0 1.0 -501.232 -200.76] +/12 [10679.0 2.0 2.0 85.0394 -340.157 501.732 320.315 1.0 0.0 0.0 1.0 85.5394 -339.657] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 119 0 R +/GS1 120 0 R +/GS2 121 0 R +>> +/Font << +/F0 77 0 R +/F1 76 0 R +/F2 88 0 R +/F3 99 0 R +/F4 86 0 R +>> +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 22 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +34 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 122 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10534 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 23 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +35 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 123 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10544 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 22.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 20.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 18.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 21.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 17.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 19.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10685.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10692.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +/12 [10698.0 2.0 2.0 85.0394 -77.9528 501.732 145.984 1.0 0.0 0.0 1.0 85.5394 -77.4528] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 24 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +36 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 124 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10545 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 125 0 R +/GS1 126 0 R +/GS2 127 0 R +>> +/Font << +/F0 77 0 R +/F1 76 0 R +/F2 88 0 R +/F3 86 0 R +/F4 99 0 R +>> +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 25 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +37 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 128 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10756 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 15 +/PageItemUIDToLocationDataMap << +/0 [423.0 24.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 22.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 20.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 23.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 19.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 21.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 18.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 17.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 16.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 15.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10782.0 0.0 2.0 -501.732 -340.157 -85.0394 -63.3071 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10806.0 1.0 2.0 -978.661 -73.7008 -691.654 96.378 1.0 0.0 0.0 1.0 -748.346 -8.50394] +/12 [10810.0 2.0 2.0 -501.732 -46.2992 -85.0394 286.299 1.0 0.0 0.0 1.0 -501.232 -45.7992] +/13 [10859.0 3.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +/14 [10865.0 4.0 2.0 289.134 -164.882 615.118 -104.657 1.0 0.0 0.0 1.0 452.409 -261.693] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 129 0 R +/GS1 130 0 R +/GS2 131 0 R +>> +/Font << +/F0 77 0 R +/F1 76 0 R +/F2 88 0 R +/F3 86 0 R +/F4 99 0 R +>> +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 26 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +38 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 132 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10757 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 27 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +39 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 133 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10767 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 14 +/PageItemUIDToLocationDataMap << +/0 [423.0 23.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 21.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 19.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 22.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 18.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 20.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 17.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 16.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 15.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 14.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10891.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10895.0 1.0 2.0 -501.732 -260.079 -85.0394 -19.8425 1.0 0.0 0.0 1.0 -501.232 -259.579] +/12 [10940.0 2.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +/13 [10947.0 3.0 2.0 288.463 -179.442 614.447 -119.217 1.0 0.0 0.0 1.0 451.739 -276.253] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 134 0 R +/GS1 135 0 R +/GS2 136 0 R +>> +/Font << +/F0 77 0 R +/F1 76 0 R +/F2 88 0 R +/F3 86 0 R +/F4 99 0 R +>> +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 28 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +40 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 137 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10768 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 29 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +41 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 138 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10778 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 13 +/PageItemUIDToLocationDataMap << +/0 [423.0 22.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 20.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 18.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 21.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 17.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 19.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 16.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 15.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 14.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 13.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [10973.0 0.0 2.0 -501.732 -340.157 -85.0394 245.197 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [10983.0 1.0 2.0 -615.118 -143.858 -289.134 -43.2283 1.0 0.0 0.0 1.0 -586.488 -145.382] +/12 [11011.0 2.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +/T1_2 86 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 30 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +42 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 139 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 10779 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/C2_0 99 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 31 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +43 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 140 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 11027 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 12.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [11045.0 0.0 2.0 -501.732 -340.157 -85.0394 305.669 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [11052.0 1.0 2.0 85.0394 -340.157 501.732 325.984 1.0 0.0 0.0 1.0 85.5394 -339.657] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/C2_0 99 0 R +/T1_0 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 32 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +44 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 141 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 11028 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [423.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 15.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 14.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 13.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 12.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 11.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 10.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/C2_0 99 0 R +/T1_0 77 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 80 0 R +>> +>> +/Rotate 0 +/StructParents 33 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +45 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 142 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 11038 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 12 +/PageItemUIDToLocationDataMap << +/0 [423.0 21.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/1 [469.0 19.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/2 [492.0 17.0 3.0 556.299 366.236 623.622 371.339 1.0 0.0 0.0 1.0 0.0 0.850388] +/3 [500.0 20.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [524.0 16.0 3.0 -623.622 366.236 -556.299 371.339 1.0 0.0 0.0 1.0 -1179.78 0.850388] +/5 [525.0 18.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [3554.0 15.0 3.0 501.732 365.154 535.748 396.335 1.0 0.0 0.0 1.0 793.843 369.548] +/7 [3627.0 14.0 3.0 -467.717 364.677 -65.1969 396.425 1.0 0.0 0.0 1.0 -195.449 369.638] +/8 [3652.0 13.0 3.0 -544.961 365.386 -510.945 396.567 1.0 0.0 0.0 1.0 -252.85 369.78] +/9 [3676.0 12.0 3.0 65.1969 364.446 467.717 396.194 1.0 0.0 0.0 1.0 337.465 369.406] +/10 [11059.0 0.0 2.0 -501.732 -340.157 -85.0394 325.984 1.0 0.0 0.0 1.0 -501.232 -339.657] +/11 [11069.0 1.0 2.0 -501.732 -340.157 -84.9272 246.614 1.0 0.0 0.0 1.0 -426.732 -261.519] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 -615.118 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/TT0 76 0 R +/T1_0 77 0 R +/T1_1 88 0 R +>> +/ProcSet [/PDF /Text] +/XObject << +/Fm0 83 0 R +>> +>> +/Rotate 0 +/StructParents 35 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +46 0 obj +<< +/ArtBox [0.0 0.0 615.118 793.701] +/BleedBox [0.0 0.0 615.118 793.701] +/Contents 143 0 R +/CropBox [0.0 0.0 615.118 793.701] +/MediaBox [0.0 0.0 615.118 793.701] +/Parent 5 0 R +/PieceInfo << +/InDesign << +/LastModified +/DocumentID +/PageUIDList << +/0 1846 +>> +/NumberofPages 1 +/PageWidthList << +/0 615.118 +>> +/OriginalDocumentID +/NumberOfPageItemsInPage 10 +/PageItemUIDToLocationDataMap << +/0 [1509.0 14.0 3.0 -623.622 -405.354 -0.00283813 405.354 1.0 0.0 0.0 1.0 0.0 0.0] +/1 [1510.0 13.0 3.0 0.00283813 -405.354 623.622 405.354 1.0 0.0 0.0 1.0 623.625 0.0] +/2 [1548.0 19.0 3.0 467.717 365.669 501.732 396.85 1.0 0.0 0.0 1.0 759.827 370.063] +/3 [1571.0 18.0 3.0 -501.732 365.669 -467.717 396.85 1.0 0.0 0.0 1.0 -209.622 370.063] +/4 [1594.0 17.0 3.0 544.961 365.102 556.299 396.85 1.0 0.0 0.0 1.0 560.551 369.354] +/5 [1617.0 16.0 3.0 -556.299 365.102 -544.961 396.85 1.0 0.0 0.0 1.0 -540.709 369.354] +/6 [1670.0 15.0 3.0 -501.492 170.209 -84.7992 309.106 1.0 0.0 0.0 1.0 -292.201 196.429] +/7 [1695.0 12.0 3.0 84.8337 170.01 501.527 308.907 1.0 0.0 0.0 1.0 294.125 196.23] +/8 [1733.0 11.0 3.0 -488.002 365.297 -85.4823 397.045 1.0 0.0 0.0 1.0 -215.734 370.258] +/9 [1811.0 10.0 3.0 85.3642 365.017 487.884 396.765 1.0 0.0 0.0 1.0 357.632 369.977] +>> +/PageTransformationMatrixList << +/0 [1.0 0.0 0.0 1.0 0.0 -396.85] +>> +>> +>> +/Resources << +/ExtGState << +/GS0 144 0 R +>> +/XObject << +/Fm0 145 0 R +/Fm1 146 0 R +>> +>> +/Rotate 0 +/TrimBox [0.0 0.0 615.118 793.701] +/Type /Page +>> +endobj +47 0 obj +<< +/A4 << +/O /Layout +/LineHeight 0.0 +>> +/A5 << +/O /Layout +/LineHeight 12.5 +>> +/A6 << +/O /Layout +/LineHeight 11.0 +/BaselineShift 3.66299 +>> +/A10 << +/O /Layout +/LineHeight 9.0 +>> +/Pa1 << +/O /Layout +/LineHeight 16.0 +/SpaceAfter 4.0 +/SpaceBefore 28.0 +>> +/Pa2 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +>> +/Pa3 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent 22.0 +>> +/Pa5 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 39.0 +>> +/Pa6 << +/O /Layout +/LineHeight 16.0 +>> +/Pa7 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 28.0 +>> +/Pa8 << +/O /Layout +/LineHeight 12.0 +/SpaceAfter 1.0 +/SpaceBefore 8.0 +>> +/Pa9 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/Pa11 << +/O /Layout +/LineHeight 12.0 +>> +/Pa12 << +/O /Layout +/LineHeight 11.0 +>> +/Pa13 << +/O /Layout +/TextAlign /Justify +/LineHeight 10.75 +/TextIndent -14.0 +/StartIndent 17.0 +>> +/Pa14 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 22.0 +>> +/Pa15 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 22.0 +>> +/Pa19 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/Pa21 << +/O /Layout +/EndIndent 22.0 +/LineHeight 10.75 +/TextIndent -14.0 +/StartIndent 39.0 +>> +/Pa22 << +/O /Layout +/LineHeight 10.75 +>> +/Pa24 << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceBefore 8.0 +>> +/Pa25 << +/O /Layout +/TextAlign /Justify +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +>> +endobj +48 0 obj +<< +/K 147 0 R +/Lang (de-DE) +/P 6 0 R +/S /Document +>> +endobj +49 0 obj +<< +/Nums [0 148 0 R 1 149 0 R 2 150 0 R 3 151 0 R 4 152 0 R 5 153 0 R 6 154 0 R 7 155 0 R +8 156 0 R 9 157 0 R 10 158 0 R 11 159 0 R 12 160 0 R 13 161 0 R 14 162 0 R 15 163 0 R +16 164 0 R 17 165 0 R 18 166 0 R 19 167 0 R 20 168 0 R 21 169 0 R 22 170 0 R 23 171 0 R +24 172 0 R 25 173 0 R 26 174 0 R 27 175 0 R 28 176 0 R 29 177 0 R 30 178 0 R 31 179 0 R +32 180 0 R 33 181 0 R 34 182 0 R 35 183 0 R] +>> +endobj +50 0 obj +<< +/Story /Sect +/Article /Art +/Lauftext /P +/Kapitel-Head /P +/Endnote_1._Abs /P +/Zwischenhead_1 /P +/Zwischenhead_2 /P +/Zwischenhead_3 /P +/Zwischenhead_4 /P +/Lauftext_1._Abs /P +/Einklinker-Text__rec /P +/NormalParagraphStyle /P +/Tab._Lauftext_light_ /P +/Tab._Versal_bold_sch /P +/Tab._Versal_bold_wei /P +>> +endobj +51 0 obj +<< +/Filter /FlateDecode +/Length 3995 +>> +stream +H‰ìW[o7~ׯàã¨Æ¼_€ ÀÆN‚,šÝn¢·b±pdÙukË®ì$m~ýžsH8²$s|I³'€g4Î!ùÝÎ×ï;¹ 6ùqïÕ¹`£~_¿.Óõ½ŸØ³g{?ÎOX3›_¿à{o÷ß0Ëž?q°ÏF/&£½}xszÅD«-cWÓy7ÖÞDþG0É&Ç£±h…Òl2eùä33Š øo ¶ÕÂJæ¢m%Þ<ýܸ–MXcøXÆ6²FðOþ>z9½| _ÞVš+J“¹¨C®ê&×'ŸÙÞûËÃ9 õ·éõÇóÉìëg¯^¾z%„ˆÏŸ?g4–­¡j•aÒ¸6DåËrÆ'¿¦º`‚…''G0‰>v­bÝñÌÅ°†Îqr–5GùÂ?ù8âïÅ Ü8íS¸ƒÇ/x„Wgp”å+ûÜâýëô¼l5kÎñK¯Y,_îãdRn–_n–ÇE’Ž¦/‹ÍRº5AÉ´[ûy>Pœokæ×t¦©på±$¼¤©È«ªâBQœHŸg¿!¸dפØS±ÜSA{*UkÓx²,ÙFݺ(m*ù=7+ýëmqáþ‚CÄãá‚Kƒ'VÕËZ[­–3ÎgëõHí[kµïÔ´ƒÿ!涢W‰½MÛ¡ó¶yHÑ[tZÓKWÉ“þ<­´Ööç¹¢J#éô¶’dQîu’‘Ûì|6ñRî^£—½êa»d¦nÓ®Êúy½dô[.Òñ‚ #ÐÀ"ˆÆÊâÉWXK3åáeux¸„GÒC8CŠà»8»àï|à0Éš_ñI‡ÌMùØâä“B¢{|êSFê, Ū€*Õ¤* ³ë­é_‚K}—^ûûⲘUKUK3–6UC_S·à²À¤1z‰ÉU‰lçûÅÌ›ÇøõŒã .¡gìÈD,‚èœk¼xÅ¥Cþe¸ãcºcN¢xJp׈a<‘xîD•½ýYãK§‹Ñõ7»€ÖWf{Öl™[müm¤Ï /¤ÞAÐ<ám oêzòè¨nö8„|õn<",yôˆðœsMò|½@DBÅdÚ%ƒÐ”Þ¦œ._ŸâãŸÞD|½ +µa jhôQ+8Co‘ë@ûu`7ÀØížpŒ·ÌV×ÀX‰5§JÉÙm‡±‰í}Ó Ë&FuâÝrEíD¶ü,î® )¯¹¡ˆ£í)7?:…ß<4e•“å0—%°ûàJ&yع1ˆÍ)y‡1Æ +ûŒ›@qljeWÉAA9†6zúëöWBQ©Ç€bozmõÆ&‘ˆõAÃ¥¨>ÈÑôeèšX¶ñŽÛíÐð°!2èÁ°Ó-· $íè@qü¹ù Q(2è””} +x<ãRæÛ„Ÿ1(Ü)Ø}J6°Éé¡v$Á¸i¦‡4;¥¬ʧããWdè©xB¢>€n;u î¿%I„6}’!' 9{5Ý!/TÒx-«m&¬•/ƒ['¬DVì.„Umж3Žû0eaˆÑÔˆ"ñ —#_%eíÅòÑ+à­F~´…‹ôkN¬¶ÔJ—œb#a0Ík²˜6’¾E6sÄ°­P)LIŠ0(Šôä#ŽÈ@êW#2‘FþcÙ®žr>ùÛZY¶µ°ªÍná±€ätéR:–Š’lêm‹7¢rCß³—•1—³äÛ3¹¤<]<‘ ìr¹tð‰£.V¡ ±:qß©‚lJÄà`q‰Ãí,­§¤h¥ýïßÅJ}7CEÖ^µZ@×»SŠšîÞ”üG6âC<šõðjËl—œ‰HÈ :ÈÛÞdÔY7„hO†KI¹?H9ÄW?÷3yêZ]’€±BÆÕ±*nfØüÿ7«Ë?ȱ‡Æ†=˜iñЦÙ/t 1ÍZö”q1ìšm,µª5âcbi ž0÷C­77­l­[òôÝ 9Îr)–bª¡Ô‹.—›Ñ˜ù©2-Ç€{8xbÜ7H ÔÆj4LƒÃA(¶ô7⯠¤™FƒØì¢6efWO@£¶ØšóO üªÌ5 Úh©@o'î`þêço¯Þ¡ü-3øÞdDe“ãàOèUþU­MŸÅ“œ¸Nû(!•áwíNëÇu/&!Zˆ ™ÂmÉa;³ÝÎydqò‚+2õ]iÉ3Ñ~³ çÖTÙd¿ä†' ßHЀl?áréÊP¸$HôïÞü2ƒG#ºñ”ìY»I<Ò3T‰¢Jf¬»4‡Ç¥HãS®†;¬9Æm’S‚#g·¤ /" ÕqÛ„¸K¹ºJUúÍŒV!Ë +­o©6礌ý=ÝóŠ´ŠPáÖ ¹ÇìÖ¾’½‰¬HQN¤ E¨"…ï“B$RÜÚ +ß +'g³Ð‰áîµÜÒ¾É{çÏ ‚’5¿p2·[p²)hêBÙ¬]äÖïÏ$’h‘ú:ÐZ£FF8“¯|Aüù"@" bfAF¤ôDF6Q@-);Ìe4|ºðzJÄ¢=;Äy’ÃwÚöm±©ÜúõÐöŸ‰îKeC)hņFtñTð­ôvwÔ'©‡§Ý,ñî¬ëÐ5˜;ÚAI‚•ü—ñRßvÉ>å4Ž‰c¼ö™Ã6;â¢ËGKáõaH½Òecj’v-è"±¸{¸ò¯ÿ%Zp4§é/+¯ó-+oÀp…,ƒûÊýΛvÛ¨j­K‘Ë.%®AJ;tHÏ4Eq )XíóòÌõ¸D°4ì„nä•18sè +`®¡IH¥rÖú;Ö¸ÿÕãíƒüŠV–ðÙ®Í÷•l[fwJì1ÁÚA×{wÝ.k/d[Š*¦Ù!ºmu ?üºp'-Ô÷Vîw\jÒì¥`爔‚O\‘hŠ"óã$ù |!Ë«F6¯”bˆ4µ+INNð[Õ«ž˜Ú$¥—`äKñ¤þ¡Ëq4íÃߦdfeá­™m¶HžŠÚE_7fLªBéÖ³A=ä©bÛ+#’]8g€”k}Ç^$íõÞ²‘1¦ËI~É ®2nkP‹ïä9×øÒû·3ξõDö-!ÝËiÒ¥6ÿéÂ6F/¤#$†jÛLb1}^è3mߧçЗMr@_(¡Ïëmè3fš1{»Ìlø^ l“È{ÓÖõjtAµÎ'ßqû»PœL4‚Œ]çˆ àçÊàÝö n¤²t%ð¤0Ÿ Ø©Å|xª_+^<òzß6›Ÿ*Ç¥ ût?2%Í_å”xö®R9ÊŠ?4XÞdš•ŒYµß´ËËR»!T[påšFHeDsŠE”nâžšôÜ0uaÿ!!š;êÄ”„=U)Ž¤ÓÕ!ÔÛ±—ùD“ spêç2„©)‚©Þ&;íãdø¯ÛÙ8íCQ˜‘±ëµÛö)!£¡½|ƒ£¡ŽôØvÜMÛªý·h5u}“jM±ö­ÖŽJ‘„‰¯ä ¨ô$7d_i ÆL¬ã²"¡œ™ÞD¢M$òbv9x\–!ã¦}V»¿‘¨§ _lÈ¥9ô½r6óæAÊdtµ…f6­N-‹à YÅ¢}+ kX¯vî?}%Åê’šFu¤»®Q…6 )ž¸#§åiA«Æ’<µœ$À€¸À T2šŽ2Ðç*Šh )ÎvtW¸x¤U(ëü” ÂýUÅÊbù+ŽŸx®L_]þ†õ G´+zÝ74©Äz¹óFœ§ÕckųÊOaÅsP¼{úH¦èë—x½_ ÂJ*‘Î(,¼N (e° +~CèÒæËáTNûïÓPÝ]ÅÙèXÙ â…ü±”5J_Dú‚œ\¦šÃžÿ/Rè(ëxsu÷Ÿ¥÷¨&ÉäæŠKi|u¯ªSÙ4±eàlq†o†±þ`çš +endstream +endobj +52 0 obj +[/Separation /Pantone#20541C /DeviceRGB << +/C0 [1.0 1.0 1.0] +/C1 [0.0 0.235294 0.443137] +/Domain [0 1] +/FunctionType 2 +/N 1.0 +/Range [0.0 1.0 0.0 1.0 0.0 1.0] +>>] +endobj +53 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +54 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +55 0 obj +<< +/BaseFont /GRBLNM+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 184 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 185 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 0 0 0 0 250 333 250 0 +500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 +0 778 0 709 774 0 556 763 0 337 0 0 0 0 831 786 +604 0 668 0 613 0 0 0 0 0 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 0 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 500] +>> +endobj +56 0 obj +<< +/BaseFont /NMLBHY+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 186 0 R +/LastChar 122 +/Subtype /TrueType +/ToUnicode 187 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 246 320 218 0 +452 348 462 434 452 434 462 462 452 0 236 0 0 0 0 0 +0 696 574 650 726 536 0 726 0 348 0 0 0 884 0 0 +0 0 660 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 508 414 546 452 378 508 0 302 264 574 312 800 556 490 +528 0 378 396 340 546 508 762 462 518 442] +>> +endobj +57 0 obj +<< +/BaseFont /IMCCPI+Wingdings-Regular +/DescendantFonts 188 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 189 0 R +/Type /Font +>> +endobj +58 0 obj +<< +/BaseFont /PHMNJU+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 190 0 R +/LastChar 54 +/Subtype /Type1 +/ToUnicode 191 0 R +/Type /Font +/Widths [233 0 426 0 0 0 426 0 426] +>> +endobj +59 0 obj +<< +/BaseFont /JLMIDG+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 192 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 193 0 R +/Type /Font +/Widths [212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 580 666 0 0 0 0 0 0 0 0 0 0 689 +0 0 538 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 482 0 0 564 501 0 559 0 234 0 0 0 834 555 0 +0 0 327 0 0 0 0 0 0 0 428] +>> +endobj +60 0 obj +<< +/BaseFont /STEKZO+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 194 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 195 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 573 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 528 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 575 292 871 599 589 +0 0 403 451 383 0 551 0 0 0 486] +>> +endobj +61 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 12093 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 52 0 R +>> +/ExtGState << +/GS0 53 0 R +>> +>> +/Subtype /Form +>> +stream +H‰\—IŽ\ÉD÷uŠüó°ÖBЩ{Q%@Íûzf™Y$°2âÇàƒ¹¹Eº×ìWºwjú¿^ÿùñÇ?ÿ•®?~¤;¥z=ÖÝù8J½GÞ×Êéži_ÿûã?üƒ•?~²³\×Ïÿýøß•¯Ä¿|õ:îVK¿J_wIu\?¾>ôéë#ç»æëQò½8(·»†a½æ纓Íc^?>=ÛõÈ©ß™Gi÷l›‰Úî½øÑë][r÷îE{V¿kíLrYµß²~`ÌìZÝ÷ݳÏÁ¼Þ´-ïÍeÜ‘±0á3&rkeÕhwòí©žmóžeÅ®q—zí{î¢ù†såªóîKãÆ«§»ŽîÕµ–zõy¯,¹a÷y|ÏÅ{qó"Ú7Fh S*šH}úÞÕ|üæ@Å“5»ºrõá3¾<‘ç¾:w­qiXÙD€‡j8p¦qåÌg¿'Ê]buëY£±ûõ<«Õ;Mgd·»å¡‰îÓê=ÇÐòÕ·‡­. k¶ÇLT¬â¶Þ›¿Ë‘–"kÚ ê&õ,×w&f’1垸Æò¼›‡™Ìž!Ëç&Ã^^†ò´îŒí‡äʉrá°@Æ™©”ë“ Vnöç/ÛÀMIÊÚÖ÷Òòhlœ¿µºËxr;S¾Ênln€…H•éŒj5¾”vUÆËêÆr +Ià:>—DVì $e\Òrr¼®¼î]¶òPú·ÃŠ‹EÔ…;,®ƒa£Ö\Žš²¤eûÍ/–Pùiø³dú k`á  +¨€n‚Ó"çk9 ,ÍÈJÇf¾Ï@È7ø ä)cµg +X§'ÕÊŽªÒöŸàZ0ßë<éÛ#¾¤à(A"ÙgrÀkëþ›U)¬+ÏhGæÅl:‰ÙbÇäÖÏWÊ8«Öou `{_¶Þp=©KŸÁ©j#óÌO‡F%Â;ä}oçæ m‘ ãr‚já½âvrAìŒþ _숪óeF±P‘xY ¹ñJjÀe¢-ç\ŠfÇ ÛR¾äˆ]rs…¯øžB%‹1·c—f´Åé®"{’  ¢ªØIÆ_ëzJ4n}öq1Ü0š51|$Ž§´w5„ê1,²ˆ ¨Çúv€ôQö¸Ø! 51ÝÊ…ºlhÕióŽ¶B.5‚–ŠMƒf&$n!´½”cqã8|fz0Ù%MJ†ÉNâî®W©)ñ¹ê5¤— °N‘&¨N ³XÌkqŒÕij¿.B¾BÈùá1¾µ (·B«b5™qy™“Dì ¦Y÷ãð¾JBòz*eŽ2J +ÆAzŽÅb3‘ëòŒR©#u«Ñ=Rˆtéñ®iVÁ `è8úQÖ·}D?’Öã®–DEíʯ¥ùR»´ºÜ@NÑóÙÉ5Ãás;).Œñjù®,›~Ô–+$ž(õ«BI!o¿é [¼¶r|4>†;“Ÿh$DôMßZzR47¢hdœ£Û{}&Žª‚éQ“Ô‰¢>É%.Ñ7žÊGõš¸~Eb@H̪Úâ{o~ÝHhµ•gÞMòDB°“–ÀÔ¬ºúÅOÕ°˜H¥J JÖKÄI÷Z².(U*Y.ø£rJ96¦ñ„àiÉ,‡(Ú~ºŽÈ˜(Iñ”¸²(XÙA¤!S—Ô¾¥Ç%Ó$sª»ur yNHÓo9X4²DLªß^ù­àßrñùz)5ÅS¿ô>Ç#Rdç rY5ŸÅæe¾Þ…¿ÅM4Ü~%¤¾^„ +à§ðíç’I€å¦Zʳ–^Ôc¡àÞÖˆUí‰BY¯§µ™{0þnù ¨.†ª¾H©Ø/ †0Ê/R¥IÆËïIÃ::[8l=ÔCs’Ï>£áŠÆåŠã ü×õj2–·õ—ÖË®³d³_LwÎu?`®ÁÆåݧ©ÎeCOŸÍ[ñm›žu…\+ô[Ô¯Cš¡ÒÙ¼=U‹ÓˆΑÏÙLÔøá{é›VËþI‹H2t¿#¸nb·}©·ÃGVWGˆª^$Ì“]‡œ±àòØ=Ü£ù-tjeÜ_Ý…¥\¾¢ØÂ-¬&H‹tˆ`£º‰Ò’x¶q +ã!+çòMÎbZ@bE+‘®Á HM½®ºã÷¨ûQ‹,ÓîK¡ŒæšÒ¢rÐ’·$çñ{øMµÆßùZÈ`#ƒZ†loØWÉÜÙrƒ*gl+˜¡ZG‘i‡!ó\©ñj_0µ#GŠ¸(%”ÏÌ |U¤©µÞÀïe¿ïŒ°)¨Îê;6åòÖ…M‹M¤:ÔÞ*&N¤"=.®ág#](‰d§qL’²ê{ i,÷ä§l${rT l° >¿:*eîYÒë_÷¨Œ6]Ôeþ+–KJ¥Ê"¥ÖÃu#¡l™À£ÑrÊ`´•…áÖVÙ&ähʈðÁ°L¡©j¿´.¿Îù³Aá´‡À«*(,ž8 àrÅh ¹9¥Ø9>¨*÷(lQó=©'²k’¸°^D×ýØ RK¹` ñ*¨ˆ6Ë-ªcQOZ&¡‡NƵ™˜qm ‘–4žž³(té­lMî®[ò$´ÏQUëü°ŒâÀa,Y¼ÅÅØ–× 9k¹ IxþоCÞ¯/êÚÐKÿØô,Q6ÅÓ¿› •Lq3Û§ SþìmXº +Ž9ö?Àܼì«ä,‚[ŠÒø!~«.‘3\NÔb,üÎ6ÿ|Ž….e€)Š†”@²/§t£ÏÙÝf5 ô4:¶P­²8£SÖorÓ|fð»²;iðÂ|Ì… Iäw¯ëÉ·Á+[·Ä©MÆ]@K‚K.9•¾êð…›~×H䌘¯ 2ðË`>S„ 9…ÿSb„G–þR›NĨUÎÈg¨ˆ‚ÍûCó1g|EÈB¾ªoSѵiB§sæâÄ…0PñD‘áÀ‚EMºûÕˆäF(Ú¹Å1í X@}³bšA,VDú[]”ÙP.ŠÚPö¨¹b'U"ô.VkJ9@$+W N² +«= +‘êT¶(‘ó»F%ÀQ„³8£%öj„ª +™ïâZHB’s%ï—äw5í %?f.#xe…*ZØ®†¯¼QîRÏ›Y¸ÍÑ6lœá}Gæh~4„MyPˆo®)ÀT÷]͵=„õÇnH¤pßêš”²!!µñè +$hRIY •¦¡î÷塾܊\î?ã…Vð3Su˜,„ﶦaÇ3d_©—¾ì59pxq°ú1X³¶™”Šr¦,jJfì°.k©˜ß¥)dª_·Y‘l^ÐBq ¸gÐñ'…u%¶+-’ßxõ<b'Ìf ¸ªÏf=ö|”jíâOçá:>&àOb”9 .ÝV‡¾€¼GX#BÒiD½K¤Ÿw[y¹î5;q£kšxÜ°¨e¨´V†ÎÁE:E»@ û‘re‡zó6Åñ–÷¸ûjB-¾Z-‰„Mð#¿™û×’L¼¤uý¹?#íýĭתr¸œ˜¥ç“2¿ê›iU£fÖ÷”ΚǦeÌw‡R&«¶’vLuMÀÃÍ›$Î Ö ÔêŒqAq³aýÕzÏ¡uØŽP0Ó×ë+ êù!â¿Ã›È7†Ð9ãî°zè7‡ØòÜ·æ>ƒMé_Ã'õ”~=í^·r2o×óIeØÖîH€–‘Ͻq¡ç«›HéâüS å_5 @ÞÚ÷&õBV§i#¦‚· g˜,0"2t’Ç]é]1p¶˜Ð¸È20R‚Ãâ‹ «J<¯IÝÒüQLzšœRœF%±4’óà±.Šïqtð¹eY· IH0«‰êb$&´K-À%"ßì©* +ãÌ9PMŒÇ™Ö>øžnÈCÖÌäMh jó&…]´’ + Q3B›2™W`ÏâÎÞKhË—P`ZíÞ”áHÍ]ŽãÇ­75àVî‹ÚÕ®ôgÇ;¾’öHøDCý†Ìˆ$¬†Å‹5‰3A3Î[OƒÄW‡9Ô'qo:Bf2®¯°½4—ð¢ÁðÍ t£Êù9$úÏb™Ù™y¸¯MLÀwãx#÷íÔ‡·cc‰ïIÀidƒ 3k±œ¾ÊNke®å¾;٦ߢQ­W.èeIvç8v®ŸrI›š@¥ÜêK™@Ôöš”dõÖ¹Äd„ñЗìÇTô¬„0¢!;ú_šØaèÈàQB£ƒ©ï%B)æŠú2qU¤ÒŒx.à ð´Ä£zô§N0pdh 3E6þ[Š»{TCe”Pž¡þHž`Α$ CeIˆCñvVܧœSÜ&Z0Y~p‘ðÍ ¡¹&àõtß’øì¬"÷¯} ÄÛ¹ônM9솾d™T„HÒ|!œ©¼©B¯tOÒJÜ…U\î9ï´é# +j .WÝ­èRÉ8ÓÝŠõ»m +¢‘€3¶šéJ*"‰Y¹.æ°qª„‘ʶçíëÜEw0 £„O\f°ÁaTQzØ´‹‡‰ž’ò…_ ¡x5Ë”û Û +ëiâ [@ ³6&²# †"ýæ 3ÂyüæÐŽWv‰Ä~dwJ–a@Ê°ØÓÊ È}‰t—åZÃK‡Ž¡Èä)SXVÎ+S/°¨—‰d{šx™€·@±×^ìƒ]g’tsþ—€ðq^d÷ßÔ1›U=—ehzö ’›ÉEJ/J;\Òù ”ÙyR—¾ƒšþŽËU¬¼UßK°Y›o +f-ª9G·´`ÞÚ6g„ «V€{æAwHGã›(c h[H°&b êØŒwÑò+ó4§ ‰’98°Úø²¼ _D+Òò*?Ä8?ÿ‡yX„)B">v;UïÔ@g­b‰j—{Åõ0Çß + +'lT¶ž»á¿öçtC{Äè_m`EU%~?—¼æÖ™ø¨îuéÏ­A_Å]kVVj½^2Ý42Gì6ú#c°AbDůî ÷[z¢“ 6˜S¸‰&ŽÓ®¶•kTë5‹kK{{±Î? +;Ãr Ç¿Â nÄÝ€tTÝŒDcp÷¯¦Œñ1GRÆ&›Y– aSPáo,“Ó9×ö•ÀHíÇzíZ´"¸¢Ùîò¤ôë‚¢V„Ë4PÕˆÈ CæŽIãÅS¨"$ÔÑê{ðª(0Õþ’¸€‘S.xêó¬?ÿL§;Iö÷ŸºV`bðìKT“ì_L±ãÍUMø BãÛÊoXù*1J‚êíW#Ð3Ã¥ïIlJËëâˆÆ"›=›’Š9²(°cés²úZ´LJLŸ9ínum· ã3'W—…½‘ #Á-ýM‚±–”e¡rÜŽQD}ó˜:-¤©·ßuÛé ™05êÐgUG̪„Üêîˆ[›Ø¥ÿÇu•dÙð«ô’§YÔyz›ÜÛ(Û]«*ó[²D‚¨€>ï‡çÑw‚}Rø†ê‚g&ß8ôÔh'ò%ŒX󔇀Ø÷Î9hŸu!Mˆl7ÛC0éÓ48LÒ”¿ócÀÖ¢(Áƒ,V²°"4N5N"™¹hE9H/F$oÒ›Ž•CÉw¬·‹i©yk?›üu¨ÌkùäÞ ƒb¨Έº.¹ ñw!‡vÁòNÉÇÍu—˜pðŒ€5«i 6÷ˆ[úgZ<×÷eÜñ,ðЄÊòz§¶Ï4‹nQê¾Þ(I¦:÷èÝÊÙU¡ùàš ô/wÑ2Ý]JfJSŽÐ>Ë!°!R@sIþÀè@ ü «RYi¤AâÓ§¨KšD§LjÝôüU+TN‰Ùh»0E8Ûhá"_€‹Leãã{ìß›'¼{~0ÁÍcH—½Ddy–"ƒžšû‡‡"ƆÎ@.©Æ³­9{~›Ç°mAè¨ya¼ªÊ•Xð,G+¶cK+ƒ´5ž =Þ—Þ¡t1IÕÉ7Ù¾)°§dÄî!ñð|Ä÷F Š  Ö"ä”ÇzÌ8JX93DXc Ÿ&’“éO@ úŸ ×ï+Ÿ5r¢IZ„߶÷†æ8ìÛ¤y<‚¾ êK†8ÅÖù*&‡¹G`ÓÔÃf±¦®’‹ÀIÅ@jVðÞ¢Ú~ZN7± ¥Û’~9w!¯¥é4hK teè˜À¢Ëe"“°Pö< FBdÓìå§kìÌö¿ÓƒæI–«˜(KÌ;Š—¨ãæ¡ðä.·Å¸5_ Q]l[U‰LøbÂùŽ +‹ñˆæ”P/XÇöd·DÃ2¡cNÉÊŽbXê8ƒxA`d{B-<@Í¢wšmÇϹ»­;ão®Šo_hšn¸ÍfBØÓkúS!+§¡’Û”+JÂsCYÉZCè­'WøÞe†="Lº.^+Ça³ZÛ×È̊䨽l\§·#«›üØFI ¨Ü}CwGMÅç`PŽŒ§Vh¶Y¾O䈺öx¬;EÔÏÌ€+U +<çl(z!¢÷ÇÝÜg—AæñŽ´%ÛF_ÖfzœÂØáÿŠ~¨€ŒDV\ttgå?<:,ÓOÒM,;¦S‡X2Ù3žCóPPYšxkY bÄEËÎ4Ð=hG(Éi‰?Í`X!SBŽï¹B}GiÛßI ‘I4à]jDVèï½ÐG‡)ƒ_®óé¼PuΑiD¯êX‘t%óë«Gkév¶.V¬ÿò¤]o ;RaßXT‹ÁY"40Õ/‹ÑÛÀÞ0ux£üNÆJžÄï‚Üe¬ÑíɬԘ¬(Éx×—'­ßç™W¤e$”±•aËbáñ™´ðÄ´ç/i.º=NúáZ zc~aQK· ½àæ;zÌ©…mÂ7Tol[ÍCAö§{FÒR MçÁÀÔ.8®É*ÜÁM†×È|á¹K¦0ðÔ÷÷lK}%G 45a×¥†XÖJ¾¡ -×\TÕCÓ=ÄE5{¢ïïÙ@‹k·»H租'þp˜Èa7äî°&GÎ<Ú݃1V[¼rŽf¼òž©.õ»'naÆ_ìøJ õõ»*iP4¶ÌI·—GoÊ¡þÀ –µ¦¿®’PÈšE%jFr¸(¸ÏÐWÜQ¡5M*òJ`ΈñÈŸ5¼n6Œ¸åXõè8ØÅÏtýŸŸgú÷5TXIBCµÓÕ8šӮs/¥ŸhÞ*ì Gá‰÷É”ýâK”qî\Ð ¼(†…‘ ®ù¼ØÎA¡q.›¨rçÊ$”Òð®ÀN!£‹Æ2/Ï$ðÎzá¢g’W¶îS½îñÇ‘¦ó·eÞ’™Á³ìŽz=tÅ-B࿹ùupÁ1Þcžff¤Â™Ú "“|pzÊ VÒ¥ãYZˆçá9ãŒR‚SˆA–¶óTj»]Ùï¼Æ~ïçJƒ“"öëÀŒI6±²Ìd5’V?íŽ+·®iYª­–N*R¿ñs¾ï„æ õö.V¥êºª›Sˆ„ð‡›@ýÊ âSÃS®+È°…˜/h åé~?u|5’7‹ Þ•afòhE°E$‰!ñ¤‰w[W1nµÓ‰ê~'D6_¥52Ñþê¡WˆÉ¡:—éÑÊ™#©Z›²Ïùf ölÉþ 0½ÈQµëù"™›ƒ=5]kcˆ×±q4õ:u²gèÁF¼JS–¹ ¾%¹KÚ=S¨(ƃn@›k­ÞGsì- «ÛûL&¦ü8u’\=Ç4ÙÙWôØþµHìÒ:F ·D71`÷#,ÀÉ؉maûï M®2ç½óN¨Œ›¯_œó[+ÒÄ¥…µ¹†„b3îÌŒË]u<‰©u*fx‘e”üýAžRM/‡n@OÔ>DÙU «9¯k¨’UI¢ù£ÆL4ëAŠ?~܃ý}†*×»<ªBݸַ|² +ŸG£Åa—ïJN,DÖé+¦£1h{ ?§4êrÄ• ÛÍŸ&œýˆÚÑm5#»Ä˜bÜù^ª¡J©‡‡JqZ•øéBCº4ª€UgÃûûBÂq†õÌ3­O€Iy” G”-N»â ¨iXœ3êWA$Ò=sýDU: B¦RÌ0 ÷Ç‹“;ëlírûjŸXP fÞÆUOgŸØ˜Óë—©©—Œké¿ ç«šÝ’dð­.™+2{úr†‘sL­Å *@µ>dª!Ícƒ®_’@{™ÃPj÷}šŠ$ªO0h—[õ¨Œ“;Õ¨᯵¤¾›Š(êÈՎΫ&?¢ù©ÐzÕoØc¨áØRšsØë.‡68‹H+Öôœs@ØFèJ_úä ]Ï™MýA0”ÎfÍÍ‚'ž@Â7møæèœbZwï¦%ñ‹Ž7Ü·¥µAS‘Ø̉!_•’Âݧ{X +í‚Èž°žÒÔoŠÏrEÍôºñ(g‹Y)ÏT×)|G!ÕŽUÏĪyc2’©R O•]˜›{2ÝKf(¿cX’ÏÕÜáíÉÍðBDÕï3ãêÜ|¯åYVeÅ;Žy8UMæ»:¥d†Ws³&=¼d<›¥t é B!–ÛøëÕ©žïT&AL(„-@qyßwÉ|jYü¼çi„ø±¿. XtèÖÉ4Ò|äѪéÛtó='J›=wèÿ+“¬ ÌDħªµºÛoäœÂϧ̵e®Ó}öK—§K{=D+"¿œ—´ÃT±öó¾([<’5\3礼ÉBffÎ;ðÜï<°œ5ÿŽ9¯Ÿ5‡¹žÔ‘³È*Ã~ºÀ†ör ]1(¥U­M†Z§%ÌEè”ñ8é‰)ó 9ù´B’*™IÊ:²GK¸ œ¿µe£)mj¡Ôî' Ê«Ký׫]f_Xêgª;¼«üâ’Q‚¥œ <èG¤r[žÊŽÚcÅ…™¼t…¤Y‘áùî¤@ú]7Íe¼ ÙÖq²m„­&t-–œúËù¤ªC…²,ã¿ÈéÏ ü×F¤rpM„h’zÝ¿”ð}ˆ6 ,=6µÔ—“~²ºí—óeÑB¼´óç ­¬ˆR˜·¾}¹ „·Pa²¢;ˆ!Ý-—žÙYÙrµ×ƒßqŸ”˜¤Õ Šc×áÉå±Pm¦+‚«ÈÚ'}©ÉsœbÐ{ýckÀVÈBH¬*£ºœóŒÐH¢l=E­Ãð«Çðg™î´Ô£Bó|"¥‘æ8c·›îhl1ÇZÀ}µÜu·3 +IµœúñÝ^r;ÒÙ¢6×Iôga%B7¤¡4tqâÍÍÂ(€pËNœÉ•Áõ!êGµêÕ^*£‹¤]h±0ÓaR`‹µèÈr¦6øIFêºeÕÏ¢J*‰Z¯p–v‘ØDÈÉ78ã°†eÏì:ÏIºª¼rˆ´nf'8YgžtÊfÈŶ/µõRX€\Gñvˆ£ÓòÛ—š^ ×¢d³3²KŒ•™÷¶Hsņ{&ªŒª‚6t™Ñ7dågUoà’Ž"ëü¾ ¦O†¨óm碞 ¨“á·S¨–àªýVΣp¥tð«šsÔþÙPdwÐ-vf˜ cÁ%{€Ë4Øý8¢¢¨E- B…rOm`Xó,s:Š¨7 öþÒõáÒ8…dKäA”ÃQê[_ÀÀ û¬„åOïÀ¿¢Bj¨­2îÜLY‚k±U¢E… \öfó*q«ŠjvøTæØfáÒð†Ÿg›ä -³'mÔ…@žU‡|g¡— ØÀ°µ‰® ed8E½ž—%Š\Q€ž£ªlX*ÀÕJ¶WËp+¢Ñw¿½L?E]Zn»ž{H¯Œ–Ž¯hå3öÄÃH˜+Jßö”âð›LòûCào!%bRвfÍ´û>7å‰Â¨C¯ùȱ–Rv"ñg<žêØ<@ÑðŸ[2.ˆ¡zl-gs{çxCõúŸó9Û ;4b_3gYGºUŒy +¢äeQ‰^ª‹3!¾"½¸@43DètgDx‘¦o'”ä1ˆRhŒz_9EqÛ¨šnÍ;°pÙŒ'ºy[aÕ‰€)¼×b—¨ð}=\ËEºUt úÓøfVóP¢(]𦥖ѤƒnzÒÔ“Vü¹UÕéØÅ:‘­üÌ–©´ÝL9AØþùìI¦QÑ7nÒœÉÖe¾…*r•ör#!ªž‰¹òH9yʼnÏqÈÖêz&Azà‚BǺü¼l¨WIœÂ>‡Xt»‡(…—­’ß. +oë_;ä2½kfÛ~’œP]“ÂûÉ©¥?µ¯¸¾| kõÅŒeÜnA]wÄÚ]„Ü|Öìÿe»Ìn#†a ÚÊ6`@²uv”þ+È›!A¾ŒÅú Èá·Á«;ÂMôf€ný}‹ƒ‘±ßlVƒÙú1mm ϶bŽ©½+HÄãpFX”¤äóÚÞvöåµNÚEÜ^,@ V¢5OS±TWÛèaÚëþ3«æ«"êNY~}7YŒ0CWæ1™k #rò(¨@ÒtÏø­†³…sèßé(Bu ‡+Õqa>ÖÌa +§¤–§ë?™DÍ„™,¶òzAÔâcf0Üü'¬··¦ÿªúdžS镬ۡ$æ¯E4^@[Nͨ¸¯Yrfºu4µCJgw#Ê&+upAæýÇG^[רc>á ”zéql\Ë®/!4Oú!u6ð©^Ô£;’”zÖÏ1Kâ‰Û"*Ï•´$ú"«Ÿˆªv·Ì9çv=k-ÈOW‡%Eû“)èW4MŽ/s† +Ü~ƒ`‘K=ßå# :~E/i8Ûjt±•ëY¡ïZrKâ> +/ExtGState << +/GS0 53 0 R +>> +/Font << +/C2_0 196 0 R +/T1_0 197 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰ŒMKÃ@†ïó+Þ£^vg7û‘@ØmÁê!{‘X°…$¥è¯wôæe¾˜yßgôÕ0½õ»nB]ë{èÛÝÇñ4¡iVëZeÒ©et# 0vÒ×Ò¾Ž¤³ybæž¹ƒ„ód‘%}Îõ€ ¢—Š•‡«*b`½ò>Èí;]Ü\æ=m2m¶b§ÿ“Ú¦MwÄ¢z†ÃVöxxd<‹H²?dff(€ÞEÜ·½-y±¯™K×ü&øû­`*[U ±±Q¶€W†-†êéK€xI¨ +endstream +endobj +63 0 obj +<< +/Filter /FlateDecode +/Length 2722 +>> +stream +H‰ì—]oܶ†ï÷Wðr T2¿?Š @'EÏi€ÓtsQœ 7^»ib;±¤ñ¯?3C®DÉÚ]É'NêèÊEÅ÷™wæÝlï§ß;¾˜ ¶øeïÙ‰`ûg³_gïú÷eº¿÷öàÁÞ/§Çl¾<­~zÌ÷ž?ùyŸÉ>|¼ÿ„Í/àü'ÙkœDâ${‹ÞXÍ*Q Í/™TµMãðBJ]{oóB×:F¶8™Í=_ü5ÛûííÁ)¬ùèååûƒ7‹åß—ž=}öLõôánjֵ6 +¦ZÎæ5¾ôô9ܳï‹Ø¼ŸFÒK²VÆ¥©~Ÿïs%êÈðWÖ’Í_°·\׎ÍÏyĿϸ©5›ó +Ƽ­Þ?€/NàBã““üdÉìv~Áh›ŸòôüqKó€ siq`3¬Rð×+üÁáWKñ¥—¼’ç=ç•Á͈fAÆÿ·ø×ìé"moíù©òüj­žQ•¯>öNKkW;m}ç´êuÿm>EÑžB{t[ÃÕE¸()e0^Wk wÌ¡w·d¥¨êê¯UÅ\ ºÞ–)ÂÍˤy”¼$Í×/àsÊ´2 Ð ( ø¸ k«¢Ç•éK#Q5w!éGí«–JgÚ ˜1PÈ( r€’A8”ê, dãQ§•}ʵÂÇ—ãDd;"R1k/6œ‰óýï—ùmuÒhPiÈ5’o©Áõ<¯…|º®#‘Ü@@a4¹Mä+j;OÇÖ÷BRVa×Áêà ÓÀJ9`­¤CZÕZ}¸F«¬d×Æ…Ð^È<*é딞Áåû?xåñä}È|ó7éÿ"û¸¢WòçKx@þòŠ |ŽóPV8x\ZuOøWÿ"Ûh8ã;‚³Û;v)R2ƒ-7‹c3ظ 7SIÀj”n£è– 2»qmpøp>⸸Xá '=…ï0äÆ/`.éÓŠ h#„ª=)®s‰O‰dG^|Œì*ù¤LVŽã coEžÊã0ÇhÈ£¼wñ;ÿ»ÑÅ íÞ–‹Çn¿ äÊÅÕ..^^º¸ãâQw‹ï~Ã)®÷1M× Ì×ÊB¸rØÒvvv}Ÿ\ùw]¸ôk»H®ڊÚ6µ’)PÇø†ÐàîTvËÜ5†šú=¸mç‡À#¦ŸÜMâHê'm¯Ÿ´¹ŸtÝ~2× Š*ý«fÏÖSFs£ž²s•ú™›Êh{M%aj*åæÔ·µ©ìl©¶%l·®«T­®¯[˜Pò(ÉŠ0 ‡Y7­Ÿ,VuжµCU@_IÕé †%ØÌ{T6Hé-§ÿ|Š•ø M‹JåKÐr${b'ùÙ{P0½C^ÅlaïàB©xUäïxò½3n’]ŽR£¿·µÛ´-@_ri©»1ö3žÏÐçÓfÓ ææ¦Ó w:›ý¢w#‘r±4} %Šx|ǸŽÇ·!!8¥TŸËIª!/¸ÌµáP6¥é›Àƒ’L‰}ä:3ªR; N +ºWïå…X±x²²Cº¥qô -«ÉOˆã÷pCâ ´%1">H-\î1û›Œ8å1~˜qy’¿Æ28E8÷˜¤!…¸ÃYc@ÕŽÉ:¤°ÕÚüf¸I!o…·"°É¸I¡¦ð@8c|¸jb·Ž¸'\zÔã8™ß¢keì*Äø‰} Ä:‡r +;I*]fO‘\ÐûK@avÞš¥¦5ßcgpÔ‘vÅŽ`{œîõÖý]ûrCe@zÈa¡Ámn8Ms+h–±Þ€M;…M°õºf†šDkî¶^à-Ù6mØ2IâÌΦ*W§öªÛbøÄšihÐ`€)®ãU(ê㜠RV¹Ä:YáFÆ!íî‘…®Qµ! -$ºÝ Üv›[µ ¶eœ%¶v¶MYýn†3;ÀC‚ ù¨k5Àùrö_vJ§•Ù¿!tÃ>2Þ³èlq^Ò@d"\(íB¢=rO\ß„r`²_¦ü‡‰cS–BÇu©)!—Ü#qLjXI\ þ€URCë: -N³¾¥-¶Xó¶c|BºŸ‰rUPA!w®ÐÔéÉÜd–ؤ +‡åÅ*Œã¾iQ~Ý”˜ïêë•;¢ØKê„ã?$³er â0=MoÈäãó¸”=¦þ™núe¿¹Ú ¬’aT²[ˆo+›=·Ü]é¹n”çJÝÑÏ@l_',3¡‚7ðݵó®oÖaþ”;Wð_À0|6ŒpÃ(Êqšéö6å~j ÆÝv)ì“!½îòvB®æun3°Éø~b¿á’@æFx()R{ד˄œRöDŸÂNt7 ÐO¡°31è>…QQß=„‡HKc,M„µkVlC©àp`Ò£üÂQ +"2¸€ þzMÚÎ>á5‹;\ø†»‰ÛS tûR†Ãn?ÊØÕˤÚÉ2À’I?ŠI%¦0iἋdE¿ú»gòO®tš¡’œðŠ^nGNÔ&<ñá@Ýh@•üŽ2Ú:*²ÕàãiTê6h,¢+aŒã`Ô;u]|±(´¼ÇïEˆÂ$ˆ%·ƒàŠŠ¶ú&C™óeˆ÷‘CÐï>ׂ%¤aþ†ÁÈxÅáÅJÞ#[PÎjSQþ•Yy¿bí×Ý,Þx™j×åu¸)P>ñ »~ˆS•«xç +fNkEÉêðs”µÊtº§uéøþ(¿£´;¢ÜËà„ó7–ÆwI÷ÎÕJõ4>\MKú®GØ·m”wñ û]= hKF¬¶ ³—;+ÜX‹qnúÙ¸Ù× *~A@laÒì+N£ Hn"&ÀÛó• 4I‰Ø¥ _¥Üf@¥“’[WÜþ)½©:oR~ 5¾)Š{ø<œáÛ-û± _c&¾4“nÅ¿ÙNô°à E‹iµÁýÞÁ3”÷EÁk +¦¦'âakïKZ}×ÎÿÅ>ãn-*|n!BvQ¿«¿—û*­T²RÝí¶®‡öu¢jˆio±ÀO¸8¢èt›ða‰´.^4I_{E +(’þ#H^³2ä7EiNáI4 öoöˆKêÂ~Ä+ê×þÀDN¿‡œCîuø†Á?`†6Ô¥ž ÞŽ”Á! JŸ’†ŸAš”}ñçbdntžE­UÈxÒUËJCóç‚ïlymõ:$÷ ¼·æ7 _ħedÒ’n´˜:{\ ª³Å*ôÛ.#+kã+£Ç<¹áìg4s|xÊ“£^r˜º(À@M¡2è-:HÂö†+Œ&£5ŽáeÝ> +/ExtGState << +/GS0 53 0 R +>> +>> +/Subtype /Form +>> +stream +H‰Òw6PH.V0Ð342UP(NÎãÒw +¥séZ虘(@)3#c=3CK C=sK…¢T®4.€¸á † +endstream +endobj +65 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 596 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ColorSpace << +/CS0 52 0 R +>> +/ExtGState << +/GS0 53 0 R +/GS1 54 0 R +>> +/Font << +/C2_0 198 0 R +/T1_0 199 0 R +/T1_1 200 0 R +/T1_2 201 0 R +/T1_3 202 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰œTËnÛ0¼ë+ö(ŧI†€Ä±·M +ĺA¡ú‰]È2Òäë»K)Ž­¦÷¤ÉîÎ2=«êÕ¢œÖÐï§_ ý\>ov5äùùÅ¢ó"JÓ-H€ít¥—ø»ÜFi!¿ +\,‘àBa0…¤ž@@?/WÐãÎb$Àq Rj®½õ ,wJz(£x;¶œdúc›Ý\¢·,<+$¹‡Û;3„¨WïIš=4xT€ ì‰`vÓ*è áM~¢ ôOôHz +öø¥µéà }*~g”^½/qçIÑ™Üs¿ ‘…u×ÛÈàôª4qÈظ²Ã ±¢™«D{òÄ3(².î æ(I1NÈÿ0Ë`Bf™ ®Û N¢á!P^È÷ûsì;´»áÖV*è9®•Ë¥PPÍ£EôS€MPÕ +endstream +endobj +66 0 obj +<< +/Filter /FlateDecode +/Length 1021 +>> +stream +H‰”UÛnÛF}çWÌ#—{'‰â[ÐÂA’šomP¨²¤¦±¤T—ºî×wfv%.k»paXËË\Îœ93¬ßn÷_ÓÙÎÎêPßL7‡=L&ç—Pœ÷…%õøëœ…í²¨ßÝ*X׿(ÐÐ/Š 4À¿Fzp]#Ûà/½h°*J-úß‹«¾¸zQÿÀ Küïoêë•‚ËMñ©¨?€›éz å|]½;õû‹ï/1fEÂÑXƒ¿­òŒQ舢RR ý ÒÅ8ð|€ÖKe;¡Ã Õt„ê§2HQ9ÙBéD¥;ÙA©Äçþ‡Ò—Péÿ$!™’v ]<@}ûmºÆ ogûÃô¾Ÿÿµ?»¾º¾VJu“É8ªÁX Ü8Ð.È`šð˜NB¨¤m‰ûþ˹UNçX•ƒ¦k*ÓCy—|UG÷Û%¾RDÀ|Cçßt¢ëO»\Oï·¢²Ñ^K åŠ25dþÚLF[Ý÷*ëÛ±mD‘\¼Îºf¬´!¤®Ý„¦nazË°VÜ?4• tA@Ù<¾ +šw”ÒÃWÒº&­«O[V•ÖÑ@ø¦Ò>ÂCr›HU#”K–n‰ÎõQhD8 1nÈ|N'23ì ­ÔÉ’JĆÕÓ>:´ä¹Ž*)ÐqÉ=>ñÜ3üQËðܳ›ÎÜLKÆ +ó†CUxªB3ãs@8Æ >Ë5ìDå)Â…ä2OÍ·S–šÝÃ0:vÉZ2y˜h‡‰¡|X%ûtìI£lË4þJð(…Àì9½`yŸs¹+&1ï`ƒ•ÓÕ-w¿a–6²©YB³WéÄt2ƒëZ©Bgr5”U¾ø^ +êGKN5îy•ù—ßQe{ÑQ훤Š-©‡È|ªNM¼â~ ,~>´ »É!fMð+ÌÆrBG›+%)WGç›,åñ jÝä)6‰õ^5ôè›PÏj'NsúM+æÓ‚ç¤pMëû(¯N6QŒ1MÅ€££=OäjÃ3ÃÙ1n Ãóͳá‘Æi;²ãÉe'4‹Tâ*E6ÜÿŸ×W 4dZâÏOÚ¬®eQ!‰Í]5˜à¨«a¦+›ê‰è^ho¸Š§z?°ùË€çžÈ‹Ä|6©,­9œhÅK×ÂhqœÆàªY£€»<ÂŽsKãWˆgÚ˜Šî‡ÍCzä%óŒ6\Ò†YO$–±”Âq­úXò‡uXÞƒ€yå{‹Úœ¤¡턱 ï@£Õþ{xýHCžîwÂvê»´éBÜt¼¹‡)äþÜSVþð4„”ºØŽSÛ­Çœ|†€â*2 +endstream +endobj +67 0 obj +<< +/Filter /FlateDecode +/Length 939 +>> +stream +H‰ŒUÉnÛ0½û+æ(#®‘ @³ hѪ[šƒëlnÛ°³ ýúÎ E™²]ÄK‡³¼yo¦ý<ºjGW_/`tü NO¿ŒçPÜÍËçâøëŧK¨áììü ÎÛQíðç T%}¯(64RÕA«½tÊAû4*JÑþz×y“9/+YÏâËV”Æáç`Áy-²¢\E©©¡?‹Òz願Š²–Š)YC17íû…†Beå8 •RPÊH[ÕÍV°Š­`,jJ᧰P¬Eé¤Â ôä4TÅDXið#]r²â¾ ô‹†XAàR„öd󌦎LñCM/B[ò„†ª¡£GºÉ¥v à!’ƒRc6èú?µðdÆ×üðš&?œ¡ TXÂ4›ÖYÖxæÉa6tFpS’·d«ÉvœÒÄÊñ÷6ˆ°%†Õö ½LÙ ÒyÐ{78ÏDôŒA¹¢‰@úÔ”8yÂ3X +.z;²ìzAKfýCÈ°#gÑ¿òAXqÿñvæ½ø¡ëžó…uÍ]­"ÑL©9–æèÿZîâÉ Vêà«wO”}+¥²gÅÆeù;¼ Ô’É^Áa¯{`ŸE¢d ÿOœåd·¨3ù¡µGå’‡%qËR26:Ä$š!;!T4Ô57P"}ÇwYž<7« •®†:IˆîMr—€H¸é­ÄŒÔ Z +i9’#1Ç„&„Ÿ§èaKÃ:MÇ$3úë(•Ô"’ʬ{Àa,Öº©Jý‡nÆÈÑ kò45> +stream +H‰ŒVMOÛ@½çWÌÑ+Õ‹gíõÚâ¡U«VªªÜª(H&@?~}gf?¼ŽE9DÞ]¿™yóæ­f§‹Ù駘|†ÃÃgë+(–ëòݱ:øtò~ØÀÑÑñœN/f,~"Tô£?[¡vµ©Áb¯ZXÜÎ +P‹ÿGµ9ª®°#wVWußP«­þZœ)´ºƒâ\•­¶P<¨ÒTº…b¥°Ó OªDô ¦Õõøò«KUZí ØÂ=ƒÈF5Ú@q§Œá9DÅ…BÇ@K8W?×ðóšŽõ¡¸¤Ž_¼¡+lÈ@8Œdr&¸ÈñJ4²'¹Ù›ËsãÃo­íVtÖp…´Ðèžó*ûðî¤rI»®8êc +{# ÐsÛï +%­DTÓ ‘ r Ù0œÔ¯=äÒYZ¸†%׋\÷˜$¬+†”óMâhZæ]h0‘ŠŽ4¼yYƒú¶x…`ÛLZå ÚjzÔuÔÖ–Br-w\‰“J‰ùŠŸ3"'ißSžÂ,æ:˜*Ð £â +38ß[Wy…½T6w¢ë¥ãOªÞÑÍMüÞÁ$ «®öräpXPp)å Ïñ¯¸t»žTXù“µ¼¡á­2uà@hÜÀ<0g)ÒÎ?qM6q‘iyLU¨²a„-?ãÞ궤2Zy ùž«„ãi“Ñ£øÊþ›=½NOîyLRrNc”ÒP§çâÛšj¤óæ§å\*Zh<[¿~Æ ³Q¢ŒËw™÷zdXÂÖ–{ç$Vï$8œº60Œu Ÿc¥Q¤Ç Mëòý v–òeË"8ý:¶»éíÇŒcåè¦i[hZ£ûHùœca*b˜®8ŒùˆQ.W/ºÙ„Üh.\ æòvÇÒ“›Gž)ºü­1šRÔfš|Úð«#§6»NÝ… Ü{}Ü«Ê„oqjL´¼L!mhwfñ?æs‹†íGïE–GÞdùzHœ…·_'˜~ü%ážsû¦‹Ÿ(_é‚¡X6×j×> +stream +H‰ŒVËN1Ýç+¼Œ%f2~ÌKB, ¨jU¤ªŠÔEÕ%!¥‚%¡ˆ~}ﹶǞLB#<÷}Ï9žÙ§Ñõlt}s%F“/âü|òùvµãÅ*ûp)'7W§BââârJ—³Q‘¦³W¡”(è~šgVXcóR•bö4ú>~”=Ž¤jr+ƤQyEq¥Íµˆo3­ñú—T¯×23yÍ¿vs™•øÝ +Yàü–üšœûÊ; &üÒ +[ØQUoˆ+M" ®€¬Å«ÁNÅi05}É,Ê#€*H¶  ëÔ̯­> +stream +H‰ŒVKoÛ0 ¾çWðh³kI–@ÑCÚbè°æÛÐCÒº-MŠ$]Ñ?’’l9,è!‰DRÉÛ~›\·“ëÛK˜œý€óó³ï³å$Ý2ý:ųÛË›+Ð%\\L¯ÈbÚNòLç5´ äôGµÍrÓ`ª*«”…öuò+Ù`U¼£ª³’7l2ŬP)¾]cªtf!Ùbªó¬„䅾謀d‰Jž ”Ò 9oØY‰O“iHft!‘ojÙe†‡˜£®ù~ÁŽ„¥ƒÓ’Oî)´f8EfäIÃ`V„•¼_)nÍá^’Jîa&V ‹¬ä°¥ŠŸXqÀŠ¦‡’;ÛVÌ …ÐlGéjÅ,¹4Q— ÒUÊ +*qí|²EŽL‘,W±Â™¦œåßliÔš‚ê¨kÂ9ª3 •DÍ·køÉ¥ =1œw@+˜:¼kOàYólÌ1›S²F›˜d `ûûÿQë{óBaoIÍ쩤,§°W™¸!ÒºwÔ7"îPíøä‹BbÒÀGº¿Âœ¨yÌ5ˡ袳,{žº×:²8ŸXÅ3ãúÁÜ6üð†î©ê0ÁîXhivŸ×Zœ«aÏ96>ûÚ½`ùù-Э`N 5¾tª (lÄ¢“”r…”QÍOí>ÓÜ‚CE' }Îñå²®‡ñ“7Ì!ƒÐ'œÆÐfÌ¥²<Â¥‚¦ pé]#ûY‡­ $ÏXr^¬…*šÙA¬ÈÏò·GXp«jÎßHË>°ÁÊà’­‹cìq$üÑ®ª&ðÇŽlt$+‡2ï(EðD"U•…qº½aø)m~€A€K6ßB49¢\ ¦"¥÷—Ðß­{EÕ²v‚†ëõ ‘ž¹Y9¸4œÎîŠ"Ê“_`NSý4ʘü¸¨õt1Ô¢@—aeÈÂéñK† Pšóç¾ÊŽR²S¨ÇE$ÖaŒD9Yú} +¢Ül¸£Åµ»Édúýú©cž¸ÉÚ›@w¼p*vˆŸ»ÐX}T¼r¬_Yåî,h¬õp*¡ƒžmöܳÌÍC¯«¾h¬Ûéa7»7ÿÈF>ü?Êpäƒì×—¨f9–ßÃø8)|õ¡2ïƒÆ¸À;ø'ÀE½ +endstream +endobj +71 0 obj +<< +/Filter /FlateDecode +/Length 932 +>> +stream +H‰œVMO1½çWÌq-uÍÚ^{w%Ä‚*ª"UÕÞP!¤)-$("úë;3þX/ %ª°ã{fÞ{3vÿirÞOÎ/Ï`rôŽ>ÏVK(«òã©8º<»˜‚Qprr:E‹Ó~RÉʶÐ?ƒRPá­••éj0º’²ÐßO®Š[QªJ:(¶ðˆÓ–¦?pÒÉŠ¨¥‚b-”†âI(ü¶e'´ÉÍ/`.Zo^KÅJàÁøsŽ?qûBh6¸KK Å#.[Z.yýÂÒä;9p4*Ek›ÑF4ÐðŒ#°ìª¦n`‰AÊšv•†v­ãñBsPϸ…¥¼-…wGYÙ¢ã™õ™µ£¥Ã¶4*Êt‹Á㇟ù–BÔCJ÷¸ßøšùÀ¡šÞ <ºƒD°¢{G“]ß6x ³Ç[Q03a }yÚŽñÕ´op-¾õhGçÚyC7•“MÔM.KãLhG=î‡pµòkMÀÔ@åŒYQÌŠÖžÑxjCÃ5nœ%ÆnÉ!£^"ˆö‹§´Súˆ0O…a_ÿC^sBÚùè¼Ìàz›tŠ9…Sª†¬þM¦lÅ„ÀÈÈ0è¿Ò¯ªXU ²àèãtôcV¹YYŠ‹ñ $Ú³Áz½#˜§l;YgÕ?ÜŲa ›[hE|»ýa&¢d©¥¿C†çÏäü=„6dìørÓiž7ÍßF! ž¾Tr£Â +lQ¼[AÚ8¸J}¦ôY£€ë¼£G_ÿ{RßpÒÜ Cäaµ»"ŸÿÑe\®åìþRÖM+MÔÎ `¬½:Åò‹+‚•ŽÜ³‚Nb;Är 6jzFn#Çl»‚¡Ð¸¢—‚áÈ¡}$ºóujB«P ÷Såí0wìv„¯Î¸&Ý*.{ÝPð)YúŸ´3ºJ,y{•?BÄÆÇ¢3êI]VD©7Q7¡ÉdÆ6Ÿ-Å‚ap×{Dƒ£ñ­=Þ?Šõ–Õžv„íëèÓŠ}»åÛ +A5ÚäB)@ô?ß?Õ!mý†>-òGˆçÓ.º ·â %B®Íow +>»Úó{aÜUj/D“½YÒÅ_s3€&_ÂÝÆ.*I¨~-ÒÔ:cßÁ-t€ñwëL×>çÔbÂY£êôÝ•á+w5™ ó‰tf²–ˆke0§¬ó=C b܇>ô;¶l]ðW€½%@^ +endstream +endobj +72 0 obj +<< +/Filter /FlateDecode +/Length 833 +>> +stream +H‰œVÛnÛ0 }ÏWðÑ&Õ’,ÛŠ>ô‚aà + ƒß†=$Í¥]s)’vÅöõ#)É‘—¶ Š,‰ä!Ï!•îóèª]]_Àèä+œžž|¯PÌÖòã¹8¹¾øt ¶³³óK¼qÞd©J Ý3h %þáÒ:UZ_©¼òÚA·}/.…©U¸ÚRi(¾ÁƒÐŽv¶¢RŠµj ¸ÁO‹…tô¹²Š«#»~…Ô­ª¡¸¥-\ÇMaŒGšnog0ÚÒYðž¹1u +›o cX tX´nØz‡§-¿E­6»åˆŽ"î¢_¬žÔ‘a&œ)GtHMvÂpÀäBÓÕ ôòDU{– Löµ÷YïO$S õ ø_Ì2Q/µ %ÉúƒÅ;cû†íâê½Ýp(*Q’‘Ô,ú%ô)n)h=TXp½‹ê¼4F¨cl±ØuÇIÊ$UÚêIa³¹$©9¡ÊÆ‹§¬V∕¾„4/7®Ž½“èOÓ‰›rÙ_öMõ ¸Tq"Œc7ßظkéš‚.¤sK€•ÏòÒ†)å†Gt™kÎËÆÙ  Ïá=û†Ö)×'´ ÞØC{âç{ï«‹ò$õlR‚µ^€†ZŽÓ,€¡­ÊÈ1©Ê\8CÑT¾UeíM®œ +ÝÏÿ{ÕC9¶¯¨±ÄÒ'5.ûÊ0ý ®˜fæ¸ð3N™ÇîêŸIó¶³À9k§%6¸¿ L pšièaõL&Ï{aù‹Ãë–ˆªYMÜÔñüT™žª4¾Lß={í±ÞóXâþÐ<ßÌçÏù$¤†ÓxVÑ…6ìE ‡?&ôòÖ[XgÈŽ{ ßûV&*þ +0PBöŸ +endstream +endobj +73 0 obj +<< +/Filter /FlateDecode +/Length 471 +>> +stream +H‰tS]kÛ@|ׯØG-TçÛ»Ó„<8¥¥Rôú ÇNb°]+Mûï»s'ÅÊC1Xènwvfv”-»¬°ÆÚ†º7!«?}4¥±¾ $­7"¥PwÈîóΙ@ù‘˜†òƒ©(ß²3Žò—éú7{IçEiê±¼Eyá,.v,))ÿ¥ý÷…”x?Ó+Eîõ(–i½¥žµO6ìb݆‹8/Ó„3‘Éï.NŽ”6táL=Pææèz[' +NJhˆŠø Ä +-®Bá@gn0ò´åÄñ/Ü©â€?€¨ƒ°ú•ÆŠ½Eé9³Ù´DC}hÐ÷nÐd`ê–£Š?iè@:¶„iô¦@‚’:Ÿ¤NvŒ²øg÷5»í²Û»Êßéêjñ­?>iűø¼äÅÝÍ—O××Ë•Vh:ì‚Q«x)S.°† +TÀ:ڠš1õ<ÒBð_[å':±%¨…<$Ù[ö€[ÃáWm);Ê÷£@õ7Ê}O¦XÅB0q7m¿ÆcÍ. +Ü£±Áž.ÇYÅqC{d$ÀØ~bñ wcòáûˆŸ“Äð›{¢ EÝÂË +endstream +endobj +74 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +75 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +76 0 obj +<< +/BaseFont /XPMVTJ+Palatino +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 203 0 R +/LastChar 150 +/Subtype /TrueType +/ToUnicode 204 0 R +/Type /Font +/Widths [250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 606 +500 500 500 500 500 500 500 500 500 500 250 250 0 0 0 444 +0 778 611 709 774 611 556 763 832 337 333 726 611 946 831 786 +604 786 668 525 613 778 722 1000 0 667 0 0 0 0 0 0 +0 500 553 444 611 479 333 556 582 291 234 556 291 883 582 546 +601 560 395 424 326 603 565 834 516 556 500 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 278 278 500 500 0 500] +>> +endobj +77 0 obj +<< +/BaseFont /CVJZVZ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 48 +/FontDescriptor 205 0 R +/LastChar 57 +/Subtype /Type1 +/ToUnicode 206 0 R +/Type /Font +/Widths [573 573 573 573 573 573 573 573 573 573] +>> +endobj +78 0 obj +<< +/BaseFont /KLAVTJ+MyriadPro-BoldCond +/Encoding /WinAnsiEncoding +/FirstChar 46 +/FontDescriptor 207 0 R +/LastChar 54 +/Subtype /Type1 +/ToUnicode 208 0 R +/Type /Font +/Widths [233 0 426 0 0 0 426 0 426] +>> +endobj +79 0 obj +<< +/BaseFont /ZBTCFF+MyriadPro-Regular +/Encoding 209 0 R +/FirstChar 31 +/FontDescriptor 210 0 R +/LastChar 149 +/Subtype /Type1 +/ToUnicode 211 0 R +/Type /Font +/Widths [523 212 0 0 0 0 0 0 0 0 0 0 0 0 0 207 +343 0 513 513 513 513 513 0 0 0 0 0 0 0 0 0 +0 0 612 0 580 666 0 0 0 0 0 0 0 0 0 0 +689 0 0 538 493 497 647 0 0 0 0 0 0 0 0 0 +0 0 482 569 448 564 501 292 559 555 234 0 469 236 834 555 +549 569 0 327 396 331 551 0 0 0 471 428 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 282] +>> +endobj +80 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 464 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/C2_0 212 0 R +/T1_0 213 0 R +/T1_1 214 0 R +/T1_2 215 0 R +/T1_3 216 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¤SMK#A½÷¯¨c÷ajú»{ Ö(‚Dwn"4 ÑÕ…Ivƒþú­êÄÁ1‡({éš®ªî÷^×›úG·Y-f÷ê+¨§³×ß60ŸœN@œ´BƒFë­Þ;¸>lÁÃ%hx„›[  êóŸ–kQOì킶÷ÔÒnyYƒÑÞ¸ÔA¦”¦5ø„Ñ»6 ÍšjÏb¤uöãöQœµâì’8 tKBDÛ4|( 1¡³m¡›‹…¨iª[Ó³Dm-3­ö_…nS(,É Ö`òD3¢N¦Ð¼‘Uå1ƒôª² µºm/zÒG)šÉï¸üµB’$Ì.$Æ´.ææTiFœ+ã0ü«Lƒ†÷UäøKÑMâ.ÀTeŒ W/O3e¹¾¤ã±´—íz×÷Mâ…¢'ž¹)3§×4Ÿg>“2G¯ûA á~òñ‘l`%—Ì ¿WÀfq`¥¯ ô’l/é“\˜cvÿ¡æÀÓ½<v½3Ùj{‡˜ÃG͉;tÀ)Û’Ìñ¯•1ú'À .ø¾ +endstream +endobj +81 0 obj +<< +/Filter /FlateDecode +/Length 5350 +>> +stream +H‰ÄWÛnÜ8}ï¯àcØ–ER¢¤E` 'A ²;î·ÉbáK»ÓIû2Ýöx2_?u#E]ÚV‚,ÉlªX¬:uêÔÑËÝýæêìâ^½xqôQ½?ûvûp¯Ž_ü¤f¯–³\å™u%ü¿(œÚ­gGoOsµÞÏŽ–æ¹2jy5óYà¿*+•1.suY+[feéaÃõlnõòËìõröúXýŒ®áßòýÑ›ë\ÜÎþ3;ú7:ðþìf­æ«›ÅÛWúèÃOïNTQ$¾-—r¢ñt<âqœçʦÀó~™]–Y¡æ™ú m“Uj~«->.µó™Qó½0¹šoµ©ðÏ•Ú_h4…Íj5¿Ó%~°Rg°Õešßh ÁêV׸ålÂÇ_`g ;a¸À'üzO¯æmþù›v•lËñï½þïò_1(Pv“·V_1 ³g¦¬ÔòQ°ÙðÏ& Jî³&‡ìPP–àü Þgƒ1ÈÀŽºÖ¦ÆxÝê…¥+j—ã]0Lz 2Ž;mèº;]àNˆ«åë-`ß7GXG·¥0îÕ‰¶8AÓµŸÙR–øË3ü»¦z<hs1éÑX²î–xxë7Úã}Vš|ßá0Àê1ñ)€a᳂˃ã~ áPó+t‚LòEÁ +x~^ëEϳŽ¥8Q´N¨øÒ#Ž©-Z£ˆÇC1J_a™|†«7¸¾ÆÓë4lçðêp žK—~ÔŽ.µÂ0ùv(ßAT;%d'¯êªƒ¹J ø å*± Ï!®¡é¨ÇÍ6ê^i­  ÎòM +Xª¡?0Å]áª3 'Í…}”»€ÚÄ&â²Gã`ÚS+`£Ù‰KÈrÝñΞ/¸V- >#£x*b–Geù6E_øzQãs«-™Àú±RGdvª|š c—f®³ÔFâPꛥ]÷º`⢘®™EvR/mYFÉÈ40Ö}ÈÔO@¦‚€ç•Pü¶Ž-òiÕ…‹­˜(ƒÝX#º:É.(©¸ä%œt‘Ö6Ì?ÉvDV(¾«4’í1j$òôËb xÝäD#¥ +ÍÁÚ`?ð¶æÔKïñÎÕ! +-¨-I‰<â$Žç›n¨UfjIõÔ0ô&ö‹:T{Ážì±=bUð/xÕ+1-7Ú}[(ÓPÔôP²Qä«!Š<”g$žXLT¼[Ì\ãîÿÑ­’ÆiG€ÕZƒc¿Z«ÀË·‘v“ð ÄÜPûˆq?„Ý-SïÂêNÓö[IâŽøó?zÀ—3ïÜkd#Æ8udpƒÔóX::±«^­Y¥´]½Á ÜõÖ6+ºÑN –H“ Yæ#]v %¸ùw¶A¡*Œ ŠÁ8"t¸ÑÀ?‡ë`o¬…H=?UW’‘‡¢£#ýöiÙ<²‰i1iZ²&L‰yé ÷NyWŽ g)¯Qö³£ì—ˆm¾æa^%*|„æF„u»Ã†9¢áš½Pˆ<ƒ†þµ§Þ +7]©¿Qxú¦DXE”}!%>cµ·l/2e ™ç†óYr™0D7ÇÉ}†\w§sæ‡ ¤ÅQcÓ`a;°0Îô`Ë° +±<Ç—¨z©¾­tßE3~ÄD ¹ž)›CHÊ+³‚¤AÀ·}n75ñPg¤MÉ#b‘\Çè¸V-Ÿ“ÉAóÈIÒÿ ÉŠƒWšE¦Þ¡N$ÀAg µKm)A—¢Jwö2Õ¦•Ý¡´æÀƒ™áÆöf˜ŽÂ8‡WÇqXX2úØ"ßÇËø€px­ìÌŠ õõÛe,¾f¬øHZ@ìš3> NE——ŠúšÊÆ%¢vÝ’ «8êM†°rÇq€§øЮéM^Á?¦’{ŠœKâqÐ{GZÁp‚ñaœˆ[¤e¬ŒkÔ:8Ç7Š:SŽRUŠÓq5xƒëpÅ¡¾̪ +k^V×ÓQdeC‰ÊÊ”¾à†å—çÍú®,*û²(â¬j¹šŽ U*ð (¶X0 +Ä”“™Íˆ.“Gøhw0y›¯n.áú/_Ÿëz‚Íèâ‚lj=úeE“¹äª)] ¨ŠÎµ­¹½Á´zîjäšÙ‘ iB‹5ØPcë¿I{ï“Tö*ALœGªÈ‘ÏÙ·? Lcõ0Gf“äó‚òÌBó¬(œÚ­gGoOsµÞÏŒgTùU9 "pF¨²šä$rwã8ìĨ;òŠ”8÷š=–9—ÂR+ĉ£ä³hgqÖ0.dVra(5jžDo¹vnèŒ(}2z‰GÇœk† <=2f'=à²áðŸ¥'rk„3›‘3§EÙt£Œ±T_1¼à ½ZÅxõ5paÞHœ_rn¨PR=É W/Û*…ç‰VÏA†èñØ"?G4±V@…KÌu¥b×àÔÂÓ¤X.¸Ùoby¶R‚‰B‰ßá¡‚Åf«ƒ[9/½oLÛ¤B+DÜyžù˜ÿ²4€LsÚø´‰F1ì¬Z‰‚Ú9”gÄdf´UÙˆœ„ ÛUö ^*Ð…/iÒú­h8zDñf¹BdêÑ…7` ˆ…Ô]ñ*ðWwÔÝLOûHGž±ò{!æbšw¸ ÞNä¨íÈÌÏdNUÃçÆ槭)÷»”Ò¥G‹O4cMƒ‰› ISˆLÓ¤¾HÌBÌs ¢ôBÉË8KˆSÄ!†æ£“]PÔ±ð)¬“ +T ÖcÛZX*«Ôsó‰¬7T’wEÏ984‡…]øÆÿæ9´—ùXAÃcAÛàB«…—Øô^}²Öè:g;^د§â„J5_X¨~‡Ž}mœh“Áj+ƒ•%Ö˜(iªÈeÔÖMÜNñ’š +7¤zJ +ÝÑ¿P}ŠŽGY<ÊÒlÀek;³+óg4Á´ºêU¸M+<Î5Óå;”›;wêЋ›§TSÇFä;ƒW2«H$vBvŽ¾”ѵsÉv…’%ܹð|TÛ¢ mu"Á©ãè^0µ"tcÃ,,W‘[•‰òŸÐŸ£ð¶#u°”… !å¤4x‚áGaJqÓ Ãžrô4¬T=‚„ªB°€¯õ/¨Q#^ÁV¤­ +ã\õ•˜i!aÆOãuŸJïB×·T‡ ®$aŒS¢|øDÅñ†¤³¦.¤¸àõ–Šû˜Ôjs™ ~` +Ã)Iúˆã –댵ö(&©på¹Ð³ç‰ù+Í%Ò¹¬Ÿjn „~ÛE?+Ÿÿ©> $ò½MCo=E5$¨¨šÄìoº¦I¤ê§¹¶ˆº÷éG]¤>éï¢ ™O)ƒ÷»T^®)Ãuh|>ÒH”¶4Oµ(",L[±¡‘þsR«¼Oµ¨|é4–@ã¬S®‚êÈKK!?Ë0æG§wg7`ÿåÅýÃÙv¹úýþÅ›×oÞäyÞ+²Ÿã×`jy…~=ëŸPUßµÒÁbÞt\ûeþcêDäàñ®vV©–EÃüòdoÅÞGú|+µ³aŸv«k©Ó©J¶Ò-Ùéþ$½J–âF‚è¯èˆ"ÜŒjQI +Ÿ¾Û|²/€AC‡fŒ¿~r«ª,-tõøÔM#Õ’ùò-ч“¬9ùñ¹þ2 <óPÚN<°’î„k¼¤)qñNÕ ‡Ò”¢÷I²M"“„5¥·«k+è¡Àj= nÄ‚= bW7p|hÿˆõ›V|J2ÛEœ#R^¸ê8å–#U#¢TÔi…ÌyÇ=½†º´9S²9ÿ‹èÁ½ÀçûºÆÌc™bð¶(Ń´ç¢"¼(táv•ÜÒ§sËJ8ë½Ýâ–âŒ]¶ Æ%˜¾ êÙrÙœ¬˜÷zlO¶›Øì–O®#"{r9BAQ¡Ð¥·(j„™ãUÔMQ”-)ªw¡†T+ an¢;/pÆ/ëPq Ô *ϼ²§«Ç”B•¾¬z‹f¶ zé§ä*EgD==ÆñÜ:*Õ{x¥9«¬Òxºà[¼¬ÔìúÁÐ’“‡rZ åV•Õ±d {ʘ{¬ Á +:‚Ú+T°=ŸFokðÂÛƒ·¡ë4v—0fžùZ€, ÍÙ‰ÈôJFã!Æ *Σ1áh¤ V°fÞS| ¾A t ‚Åß®Qéû·Ô›Ù¢ŽõÇ…‘œ"®¦-\u}çï'àjô§Éqi$·p¥Žõõ¬!`M¬ë"‹’n:úTØê[ÕŽ²º;™Õ^f¯°/ÓÅ´Ø+C’¼ó*1$¤c4×"¾ÙÖ˜À^2éq-ªü³^¶Ç]_[[;CŽkç‘c'“LØÙÍ)¤ëOGŽ«EŽ>ÖŒ‘,e=%÷)=ši–<Ž³Ó@§äŽ Þ憑ô‹?"Ä’° ÇEfÊœ3sùùRL(?ñýªbTñ ÌdÈXðÍ1Â"/F M‹ßµ¡&pLÑ6íª_÷ùÀ´nìÇƧ4ü‡¤NcGm,ÿº¸€e›‹[eð[`Z´ç=ï_ Ø”i€gÊÝŸPÈí[繞ëúØÊŒÓäÿn-¹9'p°ä [¿l —ŒHÆ¿hú-båVhîÚžEÄõÜgGþå¥õþ~¨+B(‹Ðqºx; ¶g6ŽÓìîMËœÊIä‡øÌ F¡7%ž¶Œ6²ÀeZ(e Û‰T2—½Ò´.Úl{ûÂóbwÑÁýŒ’Ï* ?bT¢«´|‡—bó-Ke³»Ç×½ú%>rà^©‰§Ç–Ó­w]»´Í…ö¸¹j§Áð“²]7|ñ_´«$ƒN䨬3Ï>‡Mzâ®YdXR·n™Iò˜+”+¹`gØÑOéxKÚö†óÉNOΖZÐ]4ñô§:(åïæ_Âf(TQ¢ÎJ&ÓÜHÇWWà UO,žÖÓFˆÞ`Z)v¼"µIÇ—OLWãXàÀÛÀÐO¶O+`Κ¶h1?hyH”¯%L¦'Ë> %輘JˆotcJÍ-´z…ô-+Ù„EKæg&M ëBN7Í$¡0”¡ø#ºv>1/ðÎSÚKôh'ëKk'<§ÅI¿%:ù ÿ½¦-P4SWòçJÈL%¥øa 28… 2[3àviW(:TåŸÖ™²‰–"ЦÀš“Wë°ô Ú·àô4-ˆÐPéD~“MÑ1C²0OŸÛè1a +ÇY5ï„ú@ Ç¿ Íçv}ÄÃùÍqh¾á£ðê¤9Øé~ x6xä3æKØúckÉ +|kÛžÿN#–°926b“»§–Œ(^4û¶ $#³¬·!ó®ù.cy_£©+ý·†På÷¦„Îväí-kŽÀ–N d½6¢g8âqè0K= j~6úÎ3oNÌQ®ÖÇÕœ¬æ1@™.pO.A'Åfhìö3€FJc®¼Où1OÓcºBÁ±µ{Œ”v™aoìq•§S–$ª§ h2”Mêœú¤ó!¶ÛQ¯ø›¡äƒ×hÐS†`ªàVàF áâ€ÄÅc+Éf“u:ûP·äv”pÑIûµ$a¼/÷ü +ôÕ ÷S<Ûy¡ù‰äÀ!•Lént·ð gøõì@¬e ¯jà‘$àæVb(Ûfgož¶?œz<,,úÁÖ‘ÁXøþFpì×JÌ-ÍVÖM"Þ—ª?¼mÇpb€kL‹2dSÚ –.T~nJbbšYf÷›æ +UÀ"Å#ñüUáÂÞøË×ñlÓ¨jû:O0 Ûdžç`¶Yy˜•X'_G‡þ€™ó¨$+ƒŒœÃ]^^òAf§"Þ6iõæAØ>ƒ-$ëHfâVt:†Â"›×Öjœªœ]ÖÞær-’ƒ¶Û!)îGŠðL‘jÔ@ŠˆHó“+Ö#†^Û‰Ô©’ŸÇ7øÙûþ¼3f9 ç>ŒÌ}¶Šú¦U6R;·ˆ^£¤ŽŸM×!h×gʯ#hÓ™m†ž"ÅÙ~¢½¢wEŠÞ¹>ÃFQóÂŽë:þ OŒÔhÇÀj î7à5F|¯¹ƒÈÿ|‚Wð/-ûPÕXÓÙ·‰ÛΈÛv`Yý8Ìnô'Ä}‰·0dC=“1ƒÛÐ’{zÍsq@36B–Ñø4+Ÿ%Á’E}jI÷ô_¯\u¯“]A…Qqé‹W"Z²îÈTne•ä“£Ñ*ýXåšÎ•9¬ÛÊani»ÞpÛ’fNÈ|H¯Š¢”fçùÓÐ1ïc-÷4¹cCK}¿iæ­Òõœ…1–ö‡¤e󒂃 plê.n.íÃtƒK4yqv )†nCa&žå CYЈÅ×Ü}<•œ&ƒTÒ®µÄZvÚP\‹ÏTBÅ×È3Œy¶e ´{ÒO­câ5Þ5ÊI‘WabS +.ó7*±T÷PJŒhY¹âì$VN2j/M’¡öTf»ä¾^VÔišFÏ9/Ê+©ƒ°mê ¿ö‚‡Â^†Â%FGpƒ×jõÖtý[‚k‡óûhp8£àº:) ëŠ ÈŸL˜ŠÆ—ŠûŸ˜båî +endstream +endobj +82 0 obj +<< +/BaseFont /WYVKFL+PalatinoBold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 217 0 R +/LastChar 146 +/Subtype /TrueType +/ToUnicode 218 0 R +/Type /Font +/Widths [388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 236 0 0 0 0 0 +0 696 0 650 726 0 0 0 0 348 0 0 546 0 0 0 +556 0 660 528 602 0 0 0 0 0 0 0 0 0 0 0 +0 452 0 414 546 452 0 508 546 302 0 574 312 800 556 490 +528 0 378 396 340 546 508 762 462 518 442 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 292 274] +>> +endobj +83 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 560 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 74 0 R +/GS1 75 0 R +>> +/Font << +/C2_0 219 0 R +/T1_0 220 0 R +/T1_1 221 0 R +/T1_2 222 0 R +/T1_3 223 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰”SÛjÛ@}×WÌ£ªÕÌ^´+0†æÒÐÒPHôBQãØ8mBòõY©®å”¿¬f5—sfçLù±Û,çíÝ&“ò”_Ûקç L§'g§4jc=ŸÎY¸ºÈP{x—€ð7·3ÈÊ‹k„Å:+OÍw‚fΉÍ‡4/r¬?oâê ò/ä³"í‘"¯MDv=fÄè¦ÍCvÞdç—LaŒß-²"r’“Oª ­±à5¡î>›g塎ʆ¶5RžÅ`%²T:øÄ1p³ä‚vH˜J#z+4oòϪ°Ú@¾RN[È7Š ¿WgB¾P…ÑòNE]CÞrHø$m¦(h¾Ã™*ƒäKU䬥.;ÚŽ³øþ(ÿÙß&ä +^»à‚Œ |ØVL~H匧‡ +“_Ãw)ØäoB*îå7f„åÓŠkrÅv5ë+•ê¤>iàü¿7ý ¥ã?J_«ZÈo„2W$®Y§þÙòR=ùµºm¾leqpʘæGðS´II›> +stream +H‰¤WioÇýÎ_Ñ·ïpúœÀ0`IŽ¡@†˜ß¢ XRË#¹Ì.%Fùõ©£Ï9ȉÃÚáÝÕU¯Þ{uþãñéîzwõ$¾ÿþüWqþa÷íðåIüðÛwoÅÙ›‹³V´6þµÖˆãÍÙùÏ¿µâætv~¡þÑ +%.®Ï|ÓÁ ð_×8a‡®é½õB»Æ9/ÜŸmŒ¼øçÙOg?ý«þ ½ÿ/>œÿé¾ïg=;ÿ ða÷p#6û‡íÏoäù/oß¿ªíê`îù;F¡8Š‹ĶmZ'.® Ò"½xJ7]ô®iÍ`E§ûfqýmó^n­o¬Ø|† Ó¨p!6wr«ø½’[Óãý»'¸34½Øˆ=\Ñ=x8ÀÒ›ÜЛ¾òbsOëÁ³;|Ûà­“üûÅŸS–OÜ'†ó)>_ΦMñÉà¡ïcà<õÁĶUäq/n$\°Üº¦ƒ0¥ç?)è#>…HÓØ~´ÂÔ|Ÿ¤ê0{éðƒk¿Áƒ@¼·b¡Î}]ç.Ô×áJc­Dæ"Ú<.d³+ qL‡’|£YYG½Æ ä‹±.á”Ûs¹}*·w„Ù(.·Áú)Œc ïéh¤HºPWäýÈ`–Mèè\æ+*M^dˆÂÉ`­ÃÃÊ£™ EYeÕúub³1e@å­¢yÀv‘åìØ’ºìÖ_Æ飼Šú&þ×…Ç, ôLüÚ%Ú`SƳ4ªêµ€¸ß¹\)$ù8c’ûM²ýÉD1¥`½iLGÜ ÉY¾ªŽŸÌ‘/Œ€÷¬äP’ü°Y@dÉNˆ¬’2ƒi +Íê^¨<ÄÃz6§ZÖˆ¶;bM*™,'SG©yr \å<Óéëñm‰\Êöi=]<Å(ñ´={àša)øä*¦u hÙ@1mÃ"±Ê0#D=ÞÒl±¥ *~´ÍÁ +ÌÐ:øT|æûôxƒÖ1 'o'¦òúR1ÈkÜ1oøXuFfO…²¸Ù„\JÃüÊú‘R¿ÂxÍ´ _Pó Àë¥ÃÌ4Zü†1;vž³nÉãI:ê"jv m`ÈdµZãéWâDÕ8Aóv%¶áj1v@“s%YÔÈ =¦A{> hîQ²Èí$Õ°¼F³[€*ÂßH*–æµ.ƒàÿô9°ï2oA¶!w@×e€ýE³ò¤ºv°W‚l¬o,ÀÏÈWjõQÎç ´5dfí*3«M±EÎœLc5`¡LÝFˆukÚº@mW—Eµ]Ó)ï„3®pÈKÎáac¹0ØøŠ“'ΰb@øøk…:½dTºÀÎÉ.r‰¢•±™€··>Ø͸¬b +KID­ +êÆ6–IæûRØhÀ·Šg­ ò;½‚SFŽ9k)%)OSY<Æ7á‡O¨µé·ð‚¬BûŒá˜¢6 ’´Èw"M,kÛÜÜ„Y˜³l™ýíCHÙçŒZ^=Â’…¢ˆ÷ù«ÀnAa¢Õ(*Á’V«¦+¬mÔ͸F¡dwq@É?,­a슂Öà÷¯‚ÿeã7'qšRñUǾ@E£\¯=q²‹*7ž¢jWZAÓb1?U ™›ï†¢³×âËÝê°€¯Ön5õõÀÚ™´«ž'ǫį¥<êé3Ê‘ÆpØ‘k†*›¡´¥(nÇì2c9¹qÖd{ «1©Oì †ú\9¦„ôÒÔ®€ˆn­ðuµðM5ÏXØ®ë:áà€Ö[(·NŸúW*o,ÄÞÚué…X%Q6HT÷ÿHÔ"dzìÒT"¢¬ÏJ³';I*OönëÒ>ŒÓžsb‡¼ÅPçd³]•pS;{ÕêùN³ƒ.œý#/55´§ëq6GŒ–ròºŒ‡«0nÁös4Ì… –¶À"Õ=K£ +[¼ æð1:ìÑ`†GVA-¹¡ +†Ñ„Ðgîöb¢yM 'b†üŠáu¥oà>à]d–ÊéŽm‚"Ä-ëY".ô%¹õc¡Ù}gÀÓõ…É_`³hàà[{¥ÒÝ$*#«”|X%åyÂ,„|dÎæ1çKÌm$èk…cÚ²œóŒÅjø7õEÏDpY^×”‹ÝÙÀn¬FÞ&=‰!±sü.ìBÒû•`ë +ù9ÛöJV’¹ {3¾>'ñù&À]‰=bx`k T­›àÆÛby”,‹É MWª{Ê0ÌNS3ù^õ°0' +)ÅœðÇ|ö"­è­à0_õŠaL`óǦÀ< G±QdÃíY´‰vàšhô»i2Czö’@v-¹O"¤{QJèªãæy -7£Îº3I+Áe–UÒµ›Ñ¦BÕF¬SI;¶%ÀtW"\ÌRžk‹Éç1š“z0lËG̵¥œGöØ2ù>Qñ¹Í –¬eÇÙí(¹r ߉r|kŠxµGÒ[ï猫S§š3uª‡àœëà`¦ñÑÔùuÙ+í|N•êAϼÖU®ÀÉ­[³«}‹WuT ÉRÞ £Qö‰?Ê-áø Ë3§ªfN2kÿSÙS/8A°7ìMi+S æG1 ÊÛ¦>JÃú2«ûɱ€A€Ftœ2u¦ò?¼‰£Ë„I¢‡¦õ ›ÌQ}‹Cψ‘WšÁjÀ 69}¸»ý +S\`­)j_£ÆO çK_ó"»pYø™©o-Mgnè+K +üà L$:õסð·iè)½?1’sÑ”óï… <á#4‘/Œ3»“Sp {±ñ:¶q͈ÄB@WÛ®`c¡c•gÏÃR›sì:¨ËP~}T—ÜW"Õkúl»Fl +ˆ¬[»jµyôÅeW ˜¤½e]( +ݲåH:=õD1ƒyàm õÉzþ—ø²YŽÛÆ¢ð«`iV©•H€är*Ùd3S•Ì<€ÛjÙ.kd•ÇÖ<ýàþ?즓ÊÌÆrµ(6yqî9ßÉ£udeùÌbj³Ê¤®Dð¹Œ%›Ää#6qšL#XÙq¬„cL Åcê.¦#Žã†è<1ùgÂ7s,,"5{t´‹ñzG¤ÿ·ˆÞàÜâÏQ÷õ®Wïݯ©!“8ß_†qUUHÝ I¤'ªï…QiØràäW¾ãWIj9G¤¶Ws:›”œµ/ºŽ˜²ïôa*á:ü—« ak%,'ø­…§b3M.I©ô_AÚb…òXÊ'‘Ìz¯ +|ÞaC󪈻@…ó\ÁyXÖæLy˜ÛIQ4Ed:S¼n,|æžá¿r]¯¾;'Â6 ý7Z8€"Y.5× êæ‡ø*hýù ÛÛaü¨ úy¡ñÂóÓƒvKb?4|ž"ÃiéZœÇ­ù9^‡#yì¼ÈN…JEÓ–Är¸(¡ã†©Ø[Ö2Ž_Ï,/ƨ ‹Ï×è¶KBxH¬ê¬ób£¯~Ü·ßô,¼UÐÿÝdFMãIgÉYYEôJjšÎÂD¡òü¾duðr^ 'º ‚Wmj|ùËýÓÇŸOÃJ‘ÛòÖ6]F½Cü÷S¼p!‹H–RäpŠ"9ʉ q]WýM;…UõИx}]ÅŽ´;XD6.ìaÑÕTi*k‰míÅB\[Y†ÖîJĹè‰tEíŠ+œ î\^Ì’…~Èq”3ßÛIäcê]>xbi'Šã1úNx½†ä·K*†ýûúœÕÖêY0…‘Ê—ô\)Ry?}‚dš½ª¸PLS5Ð’Ø[ ÖÚÆì†ÜÆ ¯Øó|¾‡]lÝzœÑ +Ž³UÀŒº€_0Nð‡'¤#¥gÄHÞÁ¦€æ§+Ýæ}ÊûÍ”C_Ëþšªkâ”Ò¤µQ÷Ä…éMÇsÕš ™´¯Ô¥ŒóWVéOM¦7Ò¼¼Ê.Aû ]wZ—Èå«+D÷æ°KоìºG»wQXïóÂòÙ¥aÓ8_7Dº€ÖÔ©tå¿„ƒ±ZÒ騟¹)vœ ‘ +g–’Ïyï52“²È3žà['õ4µ°žU¨3¨bLf±Ö Ç…þãÛ¸¼ÊB£š‘d\§$ÇqÑñǤVyCvãë?À/Qd#q Ñßf,5{€×zÝiÆÞmk7éë¸Tå¡€ `˜Q3 ž–ÃÇMÞ¬`éÆrš™L(Þ´À·a*ENªlÄXž^‡8ïÁÄÜfçàÆ*mbؼ3ržãÌ2H{œog¼që¨úoƒ[©þ9dÏ;PÆ“V8[%¯HÖ!,½Æ)âDn:•à_0­8„¿G‚‹Ú¢TÑýôÆÛ±£­¹° +å9òVax.“!F¢èœtbAçÍ©XAÅ{ü‡C!›÷EBb0N:jjË‹££$· |ö—–¦SÝ{Û™oKáJ³Ù+¯©ÜK”Ö¼öÔÍ«âgŽõçd{Jí•–S¦F®¨H•÷Špº÷ùþªº˜<™‘³ÊƒÝªÀs“…²Wó#F™n!sa«;h8k[°’O¤Ó)˜Å¤¾a•Ê‚Jê¯txi}%¸0h0µnŒ.>;UâKB8n,¼"^åŽN–=ð4‚Sä‚•$ Ñ¿ˆ´øÝÀKâ0LcŸ‡¥`P½†IÑ‘(R‡=*{½õ´·æ—Úñº^žÅ…M­ºnN©2&3){šöÞÇúT>ƒsk;/\ïàaâ!_uLêY¡ËN…RE± õUä­âÌ”ÂY€OŸpæ®[6¹$pmÉk>ðW@óÀçòµ=ÏEÖ»fæOÿn‡ÙºArö)aÀïu©@.·ûûÔ\´È gŸZ¾Ó§JÌ ®¾Ù««¹B¤ãDAvœ·6Ί4ʘè<úÁD8<sŠÿyå¶côêwìpìøñù[dþxõÍÎç_š †ÇŽ=.ž=<9ýφuË:7Å1†‰*Þ²¯â­åêÍS9â@ÖàªÉðk¶ŸùvÎñõ±YC2ÜG”è«)\­WzA»Åb’Z?ŠâˆüA §bM÷CDH=_ _ÇxÜ2£÷ÍtI.“äµ"=|øf8ƒ;ltAÆ“,5 c¡ß㣼šdUtîy%á@{Ú‰T9š¥\K¡/O “ø#ûI]S¸iË$üüÂ$ :½ÞîUÐX¹”û²ë¤zË?P VTp‘ß*O£,ä• ó$ÞŠa ß8eêK Ý$lòÆÛ<{_9”n yRh–$_R’…9Ó £ïÉ29k¤N”X9õ –X<Ó´9"É~á Èþ‰YòIä%û£Šã§Ø© ©ä¦°áAv9ªÊò×´^IpŽÓÿ³ xÞ ¿ÕV‘:í|¿ ÌÝ6Ð"d’ßÁ’ßJæNÚæâÐã_ÀSVýä¬åEïÄ»gžäPLg+ÜúEAì^EùÊ“¦ r²!(‹¶ø`+<Âý –ÃYžŒóB”:!P;o‹õë¥-±íÀ¯ÆËs„#<| ŸÕ¸S@C4±4ÄÊx¢ÉW´å îV «ãÀÊAeR$¬øýv"íòSge¨zöˆ#½1jmp“™½£sôÖ÷ ‘ -mÖog¸– š‹ðט—}§ÜÂvHJóV1z£‚Ø. ÑŒ8óѱ@Þê/óÈ+Ça|ÉuÒù’ Þz;Þ.O +·=ƒW¶x»©u¯R’°2æ×â dö_qÆÎÏWÊ=η3l¾M+£êÏñÑÃÅÚ™€šÇ›Ö΢ï=ÀS¡6åKo!fX/‡Éz÷Ûè…3äU½cÓ¹T€ÒJJÜ£X>ôwÕî>€„Pé#þüZ(ˆ,AEg —°³j!ñSK;št˜l#É!eh©Bx0{Ñé½t§D{̼õge|ͧadûý¾ª³T +ÝƪÆÀΠšÛ L2àK/EC<›|ÚÑít|pEäƒP–øªã={Îü¼Éj'x +6TÝ]þâ* H6%ìSç*H#3Ø ¶ég]»¨f$×l> žB‘¤p¤NwAŠ“ö±øhDnáו|K;ÀSUï[€õK'rÃÅ e^qTì•×ZÉ+N_^ÇUalZÿ6TOðŽVŸ¤×!þû)ë±Úg>qØß9¼žÚÊ­\‹ÞK©Š‡p@æø\WÏS^ø—*zµŒ}½|ÛDWÉálÝJè"gÔ§"ûìžìc²æY/æADO`•¥WSÁÐë>9ÍÇ¢Ù ]5­^l‰IøƒiÔg¤¨ìlç Ç@›Â¥Þ° +0sÀ½ K³bJŽSm(¸[€ +W~oô”Œkyù3ïRŽÊ- ¶öÔ½Lè̾Ìqµo <~Ã^ü[¾þœ…ßX?»?g[#Ô†¦–£BÕÙ47Ùd¯dSÓS;t”ú­9´“æqÕïp\¯q4LÔ0´.~vV¨ÊîP0ͺÅ4ƒCd*öL"ÎÆá¢ð†£VkݼÚÃø F¯ù)¾¾yó‹µ= Èq¯ø>LüSœµÇRÿ`xî‚ +endstream +endobj +85 0 obj +<< +/Filter /FlateDecode +/Length 5234 +>> +stream +H‰´Wio7ý®_ÁÓ€¦Õ$›ìn °Ž“`²Ç|[/£Ó²u­$[Ñþúe$‹}Èm‹À‘4ãXõê½WGº¼<ߟ<ª~8ú]½Û?ß~~T?þøæíOêàÍî QMm¬ ÿo[«î/Ž~ýG£.ŽvúßÒjw~àë.,ÿuµSZÛÚö®WÆÕÎù°àú`ÓV»?ï~þ-œúŸpèEø·{wôËu£ÞÞüíàè¯À»ýÍ…ÚœÝl}SýöÓŸß*Ý™2w~‚(4E±ã šZ§vO!Z¥s(éëa<ÄòÏÍuþlÕæsµÕa—Ú­èaÅ´wR[¤ˆmŸ0µ­øübòãð«€yÈ÷Sŵ€u TÌvóÔ[òvWàöj-¢Ú‚¸ÀÔ„² ƒ#0]rï¦ Ö¥‡¼ÜQz¦m‚‘ÑCW…š³ÅmÔIŒZ(?Dv*K˜A::UN¿f6› –‡ÌÖkÓâdZêfs¶õuã­ò}@vj³e&ók +œÞ‘ÚpÔd° +˜ZU u%"çþôœ/¨éD$x608`Å!©Eré ¢î1”¸=øî'§ï…¨/•Aš̸%„?+”ªSb> c‚@Ù˜-‘¸ˆ¡ãF7ݶ(ÙôêÛÔÄê_s +)L­Æ-—\LhÍ"«c̹õ¥¬qÉYÍj}¹J×ܹ&+Ö•k–”Þ»N¸Æâ­ ¹Â-"êVå–'µö¬S%$*$òÎŒ¡ûŠGÈ ÌgÄàw-|›î9@lB£÷ê½1ºê›9>¥+$c ˆ%¸a»Q‰ZçÌ “–)ÓB +¾´Be(°ú3sÛRÒ "þð{ܪÿ´ô+dÜ·¶ð„ò½AnÉoµ%‘ë0ÞBüá]o+‹îïS'€8ÀÌó‹™1è° š’ä.,ècÕRÄÜÚp.’òüU¯¬Ù0Ò¿à1Ì Ü×4Á$yŸ1‹sÙœoE +e/ñ *î0Ig‘€Ç¢=ïÄ(­Vߌ̫]"„ð¨ì^sM…@žø1Ù‘Gÿ¹ì>ÝÈ}ZFC·ìÉxàË&l‘?N®sv~È€2EÙðÎ󰬫û©KaÉ[¦n‚p››ÑÊØðåïÕoyM¦^ôéð†5™ò¯ÏÔ:dée™qÀKÚùU›mµû¸â\S"ÖŽ©0!¶ÑÂN¿PVO¾x‡ê³Ç9±×¬Ðã•=÷Ï•óÖÙÖ¹•Öù)}ÏRŸùÉÂɇjö›¾9®ÐdDÙs%F^Qç ²¼ìvî™6ˆcq‡$»væñ„é|{d'žD“Þs@7î8Té.„ät¬m&Ynbªæ ãÒÄ·˜v 0xÖ³-éõ0]ï… _PYxžõ)b £Ù’³5ë!;w”ðœœ/I9ÛŽqÊ’´¥N•ƒÍJº.º1Kp錰âߣ°˜Ã¯)FÂö3`ÓÑkÐmn™žB;ñŠå©Œrƒo "ù  1¯Ý«3ªÜ€;†¸åÈ ‡žm¡’ÂWŽñ6²¥4• Oïß3Ú^C“h 26cº£h>¯Äˆ_AUk©ªK®Ï¹æ Æ^’Τv“9“ø,`‘£ŸÕñh\SAîÔNÉJmñÓ›yÖñ%ëÔúõ¼ƒC¤ÐÖ†{Šb×H¦8< äÅGZÌPè?µû:'ÎÊJ)[ÓŸü²ÒûN¸ smØÍqt’ Wb­˜Ùlša m ¦­#P¼ßTÞ@~ö ÏÌOeš&=_´ÞH„ž+3p—cš– u! #¯EŽö¸bzþ‡y_Íào|ØàÇ<JÒï“Ê ô´†„®GIÁÅÆþDgž}Õ¾ø*jÈA +¸L˜Q}ûX"\édL4 +0‰ßL +3”,Ò.&BKá^M™a)‹Ô#™žÇ@ÅA :*ÊðõqrM™t—‘ÉØ[ጢ÷¤nÚYÙ‘²VÌq 3I+˜D"`Iø’l]1´]©bÆL夋ž²^R±2ÙS};Á ­ÄÎЌئÙ RÒ·V9æžÀ6[£ ˆOœQ䶧5³f¹x2³KV}~u?¶(òžùâÙ]öÒŠD<{‹ät ÐK,®Mš.δK9 ÓK¶ŒçUÇzÆhÁ Ïhöc/Û°ºF›2Dʲ…×d76€nƆD±F”†(Ë^Zšš$wÕ†i:uþ9Ͷ)çT’µ©4E*ݰɶï„ZÄ‘m²¨-¦o5ý+f68½+H†Ñ–ÀÂ/¦g¦ãÄlð5.€Œ;pá+si‹\šÆ.%³³`8™¿Ü[©È0 àS¼z`/«‹Õ㟇v­£Ù“ß<òeb’\ë:ÜþRÚEã°hâa]fÚþ]fe¥ÊÙ±3_RÞâ ¹ÅD?*Jìrn¥iú©ëb + HIÇj²K‡òøéøú +{<ÇM4ö­,/Š±Æàx³¡µ3kçÊ–r<îFxâ|¨³¡üV§—VG¸‹tË}Eê¾õœ©1EÑ“ócåüM +Þ~¸d"ODÜß&Xã9Ó-%88Ä,XaVLæOf”*DHNË„Ì¡“°N÷äw³¥²äº“ðž<ÌhCªùX¡—»Uy‚ §}ª¬j¬ë’Ô¯! ‘ µ$QÚsmÝ‚=oi)ùŸ…ÁÉÚ–rpÒ‚psRW +ÚThJ[@çOÉ°†nˆ +Ï7B`§Ef!²†ÊÇ‚Áe â^g'«Í6½æ¸vÔEq*JQM‡Ëãh-ûxVGKsÞRÈ[ õ”UýFód9†Ñ+.‰Mï9¨dæd³+ƒuèÊç½l#Ö Ô4M‰&³4ìµ"?²>ˆ„–ÝI»èNLé%GïH“kÕÒÙŒ¦—ˆl«’ÅxD +ô#o0•»!šàKâ/ù8izõu0)ÓÙ+ÚÅ8bV(eO™P ï*ùª,¦I[bÈßìè¦ d¥iÒ!K…õr,RWssÒJÐŒ–®]í{áSrëô±À”mKOˆN7UŽû#y·ˆ‘Sªñ©µ­ŽL>¥¼¦p¢ì=D–û’Vì¨ñÜ¢Ïjžð–«iÈŒüm„¯’6ª6×þ£(b-ò „ÉÕ'-C§Ü0²·Ø«ûf%ŒÌFf FÁJgŸVø37§îôr3Ë]…Êtðì+Úœ¼½vÖ*yÐèØó;ÝãÛ…ø-³þ:ÊJ¦„¢(z»§Þ.ðšN\´/lH‹dQãøJGgÏS&u¤ñQW²Í×@Ûö`E –u»Bd8»àè[ÖÁªœ[›¶_‚U˜¢ºVEå%]£°Ýè*IÝAï¶2|êe„ØÜ,½Êˤ’¯]Æ*ÊgÁy€»™Ñ¬Ì¢Ö,úë4,¼8 mÁó«Í{c|À¡}eûÝÄn‰<Ýëó ôðrwýöjÙÛ‚wÅMÀk/‡ä{Ž8:di%+YKÊ®m!Ÿéw+ÚA.–—áLwUuU&U'Sq|[žv…k÷ÀYçÚã¶sëÎa±íœYÿ»JÆ…ÎdÃ`rî¦î·C³Û x¤åêl¦ªvžcW]S7xÃIéýâÊi'ž­s~Ƕyù x$_¹íÌÍûlÿÔß'úã ÒéÇQ{bCs|eïRée‡fDü&½Ý¦&4y‡fe•DÂ8*2m¡žTÝúC0ñÜC’§\ŠEUàË–[Þ ¹'|,x%„U6­ŸÀPûa]äT6N(±Ð·¼ç[Rå®ôÚÌy»{%ÞËL„ÿ\™æ²nº‘$Ejnþ ИºS±ì&[Îë\ãÝV«Wöa-ú3ümÀd }€×a‡ÑPIKC%óÏ,ïA'!·“½U‹I×%Âù< T—V +å4‚Ž—%F½pƒyS—ÖB/v°.É-øŽ[^­Å$¢,Í‘*"Ëßw8bXÄ®£r9ý`“+È“£'Ä0û·Œ{Ê<*‘<ˮاœ‚ 妕(P˜qf@… qqɯ<=€W"tW"©YDÒ6®7â'Nô`- -9—fdմОgC˜J¼0_xÉÂQH|xð(èò&ó9wzþC=t(ßR&h£©+«I·¨ë?Ť™9ʼƒ[oèÓ¶&ÞÞóO›‚$îoÂbæZ©z»,z +§8 ÎíÞI}Y_Ž\Z>lã§ì³}F¬ò?Ô];LIÔþ‘þ_’ñaŸOà‚ž¸)Ǫ¥ZãQœ=¸0[¤G̦•¨ rÃïY ûÖÙ½ ЧºÔ¢4uvT˜™È©ðŸòN™´¹¡H£) çcDÍEÝQy ð[z³Ì+Úúå˜[Õ‰¾2Ò‹!c&Ñ~†à§2õ¢o¾er•÷6êäŒÂÊbàx"12ŒÀÁ…µäŒ°c[ª M[çKÍfJÔ³¨EûSйúlÆ‚è>¾®R„fûæ2ÁŸ„D¾Ô;1ç°†hÈÍ•Š¿m¶L…fDNò®×[‚»óž÷ªû9|½þX9gðCˆ°²×îU +—pïª|ÙÇ–ùgR. ØÚX“¿\†¾_ÂO›œõü­Ú঄ì,»1%‡^ xt2S/’ñœ­<îíy~ê^#P8Œ¹J›5ðy%m„çŽA¥2’Ã5ÇeÀvè8Óœ…C=7‹\µlØr¥HÀÔj wïÙ?.{*Æ +~Ü…Êj9bÞa’çåJ¬´£˜²¨5y·f.?åï42L±ÏvœTkYè—q5–úî¬Ôó있½ø².Ê^d&g¯Ž¹í0ÍTq<‚h]ÅQ~cn ŠbæݤÑnw$–ªk´àÑ–b=¡ØË™ŠNí(-ø ðe¶A w¤m¬ÃQ·ì(;ðüuVb¡ìÛ.ÿ\±n*ñ¹û#ÅgÞµ¹Õs¶î¸æÊ5f¾‚Ê÷ ˆÖXˆ¶|p’/Á¯%>ôALô‘Akò—e©NÄg×þHó×2ÊT!ÎÆ"Ä +e®†2¬ü!˜ci ?tÁ 2%ŽÒ[0‡LÁÕt7ŽF‰­÷¹V&NÆë)œ*ܘMh7.:*ÜJxö#O•£ëŽ¶3ÚÀ ¬«ŠŠc‡ßê¼™õÕ(eŠÃ5µè " pUíÑ’ß_xn'€cÖ÷^AÑÄFÖA–t*Y,¨äÒHE P‚AXÒŠJÉ(rGOÜN™--ɾ(1ž6c“?ŸÌÀ41 m©IA™k⋇5&p:;Ú×bo(%,u Ы‡Øùž WØ\¦! þ"FiÙéŒKí3²qœŒi1PTCg*vK`T›`Nâ 2³¤i¾½Vnúªa«Ú¶#ýµÞþwwñ’kõ9n\FoÌX¡"Bæf%4v+¦¦‡ÅÊ©™•ÅÖCZß9ãïÅ¥ìR[BDšÖœøúXE ß9ع‰fSë^Õšf’jŒ8ëT¸üCð^˼r¯ÙÝg|®òѸa"³ý¦lx +ϸ¼HL,”8¿‹³¨Æ[:%m¨ÁÔZÈŽ–)÷zWô~fÈ»—Á*u%7ûÍůÚͺ@Iö M—ÿm³W?Þ½z÷þ÷m¸;½zwYÿ‘[.o_a-°çÙseWÙ÷1´»œ¥bÚQË/¡Nxöž¡¢Bî+P±*nðˆÙ€¢µ¤Ÿ*´Äû̈wßÏ‹4¬Ìà:ñÜAò݃ȴ@Âü1œ÷X_à MÉc³ÁÜÁáÙ3`¼N Aá?„ïU¢Dá z’È3ßЖö€ÂÈ'ì÷C…aâ^¬í‹ôÖÝÚÎDϳ¹ª÷ù¢V]Ê(ç‘êQßêâ"nd‡nk¯«EÕ¶³hˆ‡ŒhÔÏkÑhMóʸŠ$“ÖC¢ØÝš%³Æ®Ý%°|ÍßÃÐà)€Å·-ä1…+“´?êã5ƒ.CЭqkò­kØûÎíemCš‘ÏËh¾¼üŸ,¯s=êÇ TVcf>JG[æcIﯫFÆ +]|øš[ðÈôú’kàåµGTV”%5ô:bó~BÉɼåËcÿ+À‘>5P +endstream +endobj +86 0 obj +<< +/BaseFont /IDXERN+MyriadPro-Light +/Encoding 224 0 R +/FirstChar 28 +/FontDescriptor 225 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 226 0 R +/Type /Font +/Widths [484 542 763 484 219 0 0 0 0 0 0 0 265 265 0 0 +174 298 174 351 0 0 0 0 0 0 0 0 0 0 0 174 +0 0 0 381 0 585 0 570 647 466 462 624 630 211 0 0 +448 0 0 671 502 0 505 464 465 626 509 820 0 0 0 0 +0 0 0 0 0 454 552 446 544 485 262 544 536 209 214 423 +212 819 536 532 552 542 295 373 309 531 452 722 429 440 403 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 174 174 0 0 0 500] +>> +endobj +87 0 obj +<< +/Filter /FlateDecode +/Length 4859 +>> +stream +H‰ÄWÙnÝF}×Wô£)v³Ù$ @l9FÎL&¾yš YÖb[–4Wrå맶޸Xô ÀÀ°î½d/µœ:uêø»ýû‹Ó³õÍ7ÇÿPǯNo?=¨o¿}vò\<Û4ª©mÛÁ_çZµ¿<8~ùºQ—÷Ç;ó[£ŒÚ]øº‡ð¯¯;åƾ¼óÊvu×yXðñà°Ó»÷/v/~„Sÿ‡^ÂÿÝ«ãï?6êäöàŸÇ?¡¯No.ÕáùMõò™>þñù'ÊZ—s¼ÛÉ•US7¶S»3%_>+ãÉøººiG§z0¡íà ˜ð¯C§+_·ê°Öl8T/µ«:ü¤«ÖÕ£:|÷^Œußtå,>ºÑÕˆ[.qKm`Ó¼Â'{ØÕâör-l>£S`É»;MŸ×ºÀ):¾Üëïþc±îwW&=S0ú£^£_à5¦‡_›äxã뱤ã?ÀÕhቶM>ÑmƒÎü¬+Ø ¾VV·šÎ×^Ý hk£n5¹{£v°ž\iG«_0šðíïê; Žãè®ÁÓá-{ØiÕá-œ §øt èðë+õëáË­šÙ¥îuÕá.í~ÀØ›{°ÇXÌ™uxÚf¡ÉÑ°˜!ƒ7VÆàȵxþJ¶U¦ÍßhC7ƒumȲ;méèk q +ÉÑûüVxäñ2KØzP•†PeT†?ßjÓ“C*šu‘€|âéXõnð×9>e“(%E(”‚ãxòž¨zì*|ühë>ÂgžžYŠÙ3þĉðôIµ“žz^¦zÌÚí·¨lS +CGa°´’4àƒÐ =­ƒ0Ûæ,Õ¾Ìå•6-x«-aí³d·cL …ClÓ&1ôžBÇâ(ž|™5¸í‘j,m"œÏ«à2xõ¾XŒÉ©Ü~‰·Žù­o²Â²tìgݼú\âÖÞ,Tçi°ÜíÛWãV$ö$º1ðø:£ùnlz¡òÛà"&À³DO§ÄÆ 'ìlÐÔ?ÁH/u_,›Ý’ÙgÄå†I]è~} —œ×ŠVe~3©W5F|Ä/äãÀ.Úäb ç~IÍÊ!÷DÐLCBáäPÀo™*îßáóúœ\‚õUÅ™&Z¢ £ÒãÓ)Ø=ì¹n1"ÛÜ'nÚÌMÜô«n];ÁOi<ž<ƒÆC.ÑojDüUÏ¡®¢¹À¨ÌF¬'>ˆ/;ü8å}š¨övÏ?ïõß5ÃSKTáùPjO}<ƒVÓYßGË +<À ¬>Ö. 1 ±…œt©]fÏ] kugK…ÓàÝã¶ð·Í¢ j0ð˜ÃbÈL+¨áj”SA"Ö€ÿÀ,ÎDŠÜ3¢QŽ]#àü¡©§R²È YSý w^z‡?½þ)ˆGi½Ô>´h!’Èÿ}¨ÖP¬T«*0jb\Óc‰ò±ç3NJ}vÏ<—fG–~ƒõÜT©%EzÅ¿±ûÐ&“‹tÒïÈžt8½ lßBŽT4á㛸ýÌšúÃ7âÄLh¶kW€1óG`\àuÔWCÆZîheoŸœ˜íUÀýRk£¶u¯>!pRë€|·)n 9¡ò¹×FÊ'Š©l—X|*j]"Än +ýÛs‡ÌbmEfY!’âBÏrVôžTI^'ò.5Ì$I[êºÐ€Õ¯‡Ú“,‘^Xw%ñ>ųl4já^:6wjíˆÅÕ[bK€˜Þ¯¸ØE€¤û8'—Ú/J k˜µFܸRɈÓA*«l|XS1 +Þinïy"“ærùù‹Øs“ –I:Êd3¾£Hƒ8MGêµ6m"ÉÙ¶¤8×’:Ÿf¢ÒŒ`—â¢R“Øçæw“¶bXÅse‡…Íû“ÄÁJ +P%mƒ¦Ë Ù”¨tãP7~´,Á÷Ýû çvȯ²o;Âdd;†«¢M`‡\TLÂ{Éñú¨:§ÄLh„ÍÑþ ]‘geCUP +­–Y«²b«—s§0©•øI+$¡Z°3‹€TLºû*V ¬±‹WÝDÖ™g{bÉF4û êÜ°‚:¤•ˆºØ?î˜a§ò¬ÄÇ3þâÙ'€à/7?/H1y“JÚªe“n/¼ï¿$ÊüŠYT×Åb&©ÎφƒAÒ"&ãA$)ušä>+篾௠HëY'™öS„1ÏUŽ¤ ¸½Æ $:NDª².¯Û¬:¬†¨és¬M³Ö±Èþ +ªÚ“¸ÍYCVÆæ'(‹d*ZÖæ€ù°H7¶¡mÙ`à‰™Œy$mêd*iÑŒšǃŽQË%Ò[µOELx*U!Ò•º×ž(>Tâ4')9á\ Ñì粉äŽd‚JÓéÏ[‘3¬wÏ®KZÛ°9TÛºç8™]³ I7zœ]º -Aä-æh SCF,œA(+ÒÅ(¶‰FÜô‘;hÿŪb­q®/ª=<¶&îSÑ‹&ºZ<ÌMÓª4-î E¤&u_‘5u81å.&Û +õØ(:?´íÛv:þV‘º™ù(Q N Pþ ·HғΩ]â«+%—?Éͤó*ÇÝeÞs±b<Îd•uÜäÖ¯k“®)¯×Ð5XÔ}‚®‚ÆÃtxª_šŽ"½1À¨ÜÛ0›”}ߌù$¹Ðؾª“‰°ë©èß«)ïN´¤–°ÿ 1âGÜêÛ '‘O—ñ³,¿rMó´ü*Ä„1ª7‰°¤u*žr} Ð‰¡‹a݈³ær°l¤9gËÆ;¬áÐÙŒúŠç‘2RÙÚ3º•áT8uÐçÄ ŠœOY‘©Š@q‚ÒÈ\ >Nm>onÝ9À=1¿x‘iõø?M0ó1·5蟼:; «yHB7iƒ˜dˆŠÈ„ÙäyèñËÑ—M¢^Ýei Š[f¹PñÔŽ®¶º-×+ÀƒÁ7ž`ßE†~d*˜2dFW/S›u…)‘ å÷ÿ$m ÑGÙXð²yÈŽ–Š’ݹ#8^˜îfç73‘› Ú?ò“¼A|Ð-;¹nÒý +(Ú1–3hó æ2`T²9†Ç!ò=ŽŠ“Y-Û.1%7ãX Ñ \™$âÞà]&Mj^R¹‚ǵ?k꧵zU; +kú¨~x½Äýãâø& ™w˜ÄË}v’¤û&T1Üü§èÀù¸º,8jB„fäZL!~ÊËmÉÝòX2©#¶f½ëJUß´kýê<©z’a´HÑĨ·“²ŸË°A¬&Ñ 5&e¿¢De^›ËO^–”1½M°eXʪą‘¸MÙ«æ¹-}È©UÀ|´ºg™^µôCm°šš‘@DؘŽ#"TºeZèÆÔTÞÒhØy+Í0VN,˜HÄŸgÒ<áÄùÜ¢©¥)çHò2?^»ý<ÞC_òœ[k~‹\ý k\N¦GQ$l±2+«ÀÜLvA<)“$%rÞOå°ªyP¨ÕŽ]›hùsM„Nüé2þ„Ä8L Ð%ËNĵȪòükn¾qˆRt*¶òùtj5ã|K±²vª´°ê]ªú«H¡™Tè¿¢‹ö¥´jÚetµcŸiú(â Ȭ \ÁðÙ¤Èc™Ìj¡Q̱@ä6N­‘jæZ†IéQÝóŒ‘TUè6Ü’¯UjPAߘ²µcâ|.Ôƒ{2[H‡·¸GPijív`ük Kzá"Uf&²ág:&Øi3ü"ðæ±,Ö«ç{(ÉB±oÌ0éŠÐ&—æM¶áAÏ’þI!}ÊÖiÒÐ,U*r‰)Ðð 9LfÈl‚ŒR´ˆk·m)­(Ñb‚¸(ááˆÁ&ÜÞ¯²¼¼ø/íÕÖS·„ÿŠñ§ö®×—Ç*R¥HU_ ª*Uªàh +ÑA”æßwn»;³kƒÛ*/Û;;óÍwQªÕ›{G™í Ý×øÙ€´ÓÌšŒä9[íœ'Œö×Øxr=µA¸ oôôií1žšZ›8¹Íw¢v™©úè@£ÞŒë•óÆNˆ-ĺ Éóãl¬½4€e€ ϳ[›ZÕøLJ–éäÅNëüNÂLyO#T⪟،#C4)ÓÉÀž¸š/lTh|NLsXÂ7,PT>|n¾]ºýÆÀ!³rh ˆ#eÿEó#Í''nš÷XÎ"BnâžÇ]ìÄ]è´n@. Êë;opÀ¡ TKߎ+è3Ù¥ùm¹DòÀ¥Ç½VŽ¤g ­Ì&›ú‚¡tÒ­u„ÏMe|šŸ±WpüO&Bæ¹³=½jÏw—ýï®@tË:6—ÇF~€¾¡i¤Î¹Ü9Ø£ÐÏ#wnˆ)Iöm $ˆH @%7gPùD´rl™Ž>0Ð>¶bÅègò¨Üt°B¶®ø…SË›@ôt_»jÙjô²&øà/ À\Ø|WY‰è ¾“‡Ùù»nåüs/LŸyË>¶d>ˆ³WFX‡›àØè£KǾ983‡ËŽÇÐáHç èâju0@ L.\¹“=„ò>µÃÊö2Ò.è¾_›Òí'é 8 ‘Tb¦e3ääuÝ’´8úè×6æ²^Bº1¿àW3YmÕÆZ_hñ¬‘”«ìr ÖºK³<+*õÓdÜiýÞÑr¨¬¶e8&Ÿ¼g}¿ŽCÔYnHljƒK4¼½—·iÁõPë  j”ç˜ÇÕ¸¢B"z·âÄ7'LHûL̬á0ÒïIÔmÓ+Å@ïØöp¯¤ô•¾å[M&MŠùfÉ×—w‚›úá#¹Ê<(éÊt‰›ä†"üÀÎpÄù£…ÉãÞ4¹• IX¯“Ʀ×wÂd00é–Péf ÿ““r¡‹Ú8móm처î7ØÙ°¾³aoLHþÅÀ“áKãx/ÀUÛÀ©°ŒñÚÈù¿ônøÏCl£ñâË¢@ÌȤ¤Š8“—cö?pÊl¹› ÌCÂ8ó¿¡ǦØÍ”âFòt·àƒ½÷Öô3k Æ“n²hÇZùŽƒr½“òq+°ÊÉq’ÏLYT‰<§Hža•<ÓQŒ‘;Ä©×î!çr¼ÍC¹ÍLò‰Âí6k ™Ö$Œ€JIû‘Å$1cñr…1x›­‘ÚB¦cµî%ÕŠN÷iýžÖR»HȦÞÐþ>dL…|m!c”¡»êpÖD¥SfLPô…âØÖ°uó2 ªÂ8q8QK"²k =êéÌ;œÞ¿¨9t¶€6m«ì¡ù^@óÔü•Y¾fÀ`pÀç-óE˜ÜG½ñC D{í^ ô[?ãÿ9çÚ9p‰GäªÙƒˆü°ÓrÁ¾¬`hTf  “a™ݸ8ƒ“³óöòÓŽï.‚ÝF¦sÀ¢ÙhÇŽÝWK™½Ñë-€¡`x€ŽŒÌ³›«¢ÙΔ‚,ˤYaÞ!:ç=K¶Üš~ué¸ÉIùãlÎrW7Ò#j5œK÷ÍôEÿDbKwwÔÞš4› &×=í¤²±ÛÆgÀæ7 :kvásì §æÙâÇæ +£èVÖ\þÌz¿N›D‘Ctó†ðO¹ðn™]L'üò]T°Ré¶@«Üv”mBÓ#ŒgŠF‹ÄìO*i0jMs©Hµ®ï­•ªñøƒ£/>cl­D"ê² ÞŽÑ¢:ªÂ Rì@'ËE[X\„_¿IA6Yz±0L³|ÁHôøúŽ}·1èJ÷‚×Y„cÖI°s*lÅ@r!»Oÿ>EÕø=°zb}•®Ÿ'r†d†+"#ÿkåMæÐS‡æˆš@n™1-s2ÛÃź'"¡trbùbìx+ f¦*šAÔ¼ÇòŒ9@ è@-M‡@÷j{ü»îíšÔÖòÛñÓÏ3:|ÏøQúR˜´¤0£ñã+®¸–<2èG¨Ó[°çãÙG«üÚBá>åRjkB Ã‚J_-!â`zùnÔ¾S +endstream +endobj +88 0 obj +<< +/BaseFont /CIHUVZ+MyriadPro-Bold +/Encoding 227 0 R +/FirstChar 28 +/FontDescriptor 228 0 R +/LastChar 150 +/Subtype /Type1 +/ToUnicode 229 0 R +/Type /Font +/Widths [899 322 588 588 202 0 0 0 0 0 0 0 0 0 0 0 +260 322 260 0 0 555 555 555 555 555 555 555 555 555 260 0 +0 0 0 0 0 656 604 595 696 534 527 682 689 285 0 614 +511 846 690 717 581 717 593 540 548 682 636 0 613 603 577 0 +0 0 0 0 0 528 598 451 596 528 341 585 586 274 291 542 +275 860 586 577 598 0 380 434 367 583 530 759 519 523 469 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 500] +>> +endobj +89 0 obj +<< +/Filter /FlateDecode +/Length 5320 +>> +stream +H‰¼WioÇýÎ_ÑwÍrº{zÄ0‰–àÀB{#Hƒ¤È¥å‘]R4ýëSW_s£$ ‹³stwU½zïÕñ÷÷W—§ç÷ê›oŽÿ¬Ž8}º}¸Wß~ûúä:z½9ªTµ6ÖÁ¿umÕ~{tüî§JmGÇýK¥´Ú\5ë^€ÿÚµSZÛµí\§Œ[;×À ×G«¦Ø|:únsôÝ{Xõ_°èþßüpüöºR'·G=:þ à‡Ó›­Z]Ü”ï^Çïß|¢LSç‡Q¸çg<…ö§Ð|Š²ZW\+¹xTºZwü‰‰çjMÏÛö÷U]”µZ­‹Òh8üÊ¥V+õ®(Ûu G§k£V7E…O?ÀŸäî¾€OË¢ìð’^€'ÿîðîßò7…Á?‡«>ûRèn]Ó˸×i¡³-èæÜÔxþ9§#îðÓz:\柛?…äÎ'Ò%‰<Þl¤v& S§eLs¾t’/mÖ¶¯Î×IaÜõ¤°žðGuWh‡wö…ÖëF­NñwGÇnð÷=¤‚B»ÂO­¿Ñà ˆÀa’j¼S4øÝ䊒[rÎÔîÃÅÇ¢tø÷r@ÉÙÁ|½SgDK‰~, Ž6yi¡`?ا‘è„þ ~½‚d—Æ`7ê¼èð«p"X­Çk®.•ýWø£)ŒÔ­D|‰W±/ZÜh '×|:À \ô¸ 쨱YV¿I”X윖տ¶ò¦Z]ËÂ…­ñÈ Ë©ã«qV&+ÕäÉY&ëÁ &7Ñ®É`M‘ôûüºmºîºrv‚MU Lñãg”QÈ,Ä–ÆHà¢vR.l•<Âï?~ZˆÀ“ì°—ø­\ã]¿OYe( uòâ¥*¢ òOýj©?2@ò~q†®jqÕPoÎÄÝD@±ÄŽÂÁÓÁýµz[‹€ª€Ö2t„_ÚáŠwa‹€ÑšûÎZ¼ÿjâ|×ÈxZz0õ© W#Ü%±Áá매1¾Pº\–Í'Å ã1{LàBpv9ˆô†:X¶¯c(žì#¤ ¯ZéD1V9®ÔÔT—ˆª&Å +#’Xä³W•H0…&*Ütÿž°‹EºóÛàJ\rVô|ÈŠËÎå¿£9©;Q +Õ¹¡: ÛrÑ’jõ èY¥¤úXXB÷mѯ3~ò¤L[Ÿ %îÞfG¡4Æ$p@K–yØP™žŠV îêï CG +ø[ªý"K²ÈÚ*Yw +{ $)Áž!o@„Ð&‚×((·mžÛ&ÉmҎв; $ð_«%)dIl$-‹žÈHÐ{OjO¤Â#hŽc”Õ¹b×ÁÝH±W¡]Ê9»ÀŽ‚Y©¢6ɪ{¨®!?©ŒF]kÜŠ””P´glÓ†Ô€¢²F(£òÝ™µßææ1Ió 69Åt´qDaðL†ŒìF'YµVOB"¢,ÄR”™œéìœckXï —[QŒïÀœ0$ô =ÞÙ-ðmì ÷:ãš?z]cŸ +ºïØ%'…›»IùM” ™Ç¦/yÿ|2tN(ªNvé‘~Nõ‹£¡6¹÷;ÌæXð…Od ¤E:F^Nw*\]ŸŒk™I˜g¶o!ªl¶›ƒ@­ÓžtOÒŽƒÞ‰My>trÍÓ {™‡‚«UÜD“2Õ먥=#Ón©eoT³±«d録PWê¡þª0J$¦É$¦I}(t˺ëk&&Žà¬Z(Ïå€8Š àÐûW\å=›‹ö?7Ë@Q/QµKùÆå`«ÌØL›Øó¯µB¿£aáÍœlƨa¬Ùò4Á¢Ÿ9áÄ’9Æ& èÝGw"¬CÖÂø¾·|ƒO²–tù5æ|åÀ¡í­×E.ÞZ !Üä/ÿG¨ÏJ±­Y &&Ÿpœq ÉK‡v(È­Dæ !öÙͱÓ>Ì·)¿À37ÜZÞX"VìIÿ 2ƒOR-ö“”,Ú½Ýn(0!bM,+1´3}_P—Ý.W›SY=§›®ï§>J ‰‘™£ )ât¼,FÑ'¼(“#ÈO^Ä£Jt~´D:¡É|f²ùì¿KýbyÎl5`UOÍ|ªÜù¥ˆˆI\‰.‡ `]nZ 1ö)%·÷„«>ú¡çÅ"m†N&ȧMEnvÐÁŒ2z;<ÐÓ–T%i4Púv›c1—“G¤sN{ä[°5¿Iîˉ’Òûô ĺ…ø›dš ®y‚Bœ¦r’»L¯¡qz¥m}11ëPËqg,DRŸ ©ÄÁ¬žƒR[¡ sÞ•óKÉê"â½ãfƒ7J̨ÿ´žgFÊïh‚AIG¥¬mFi%Ó†·êc$‹á€(ÍŸ{àI°›„ÅkÛÔWy‹ž ÷Ræ·sX ËYÖô·x¥ÓY÷’çРm© +N–‰­›]?ú¹à%/Ùì1ÛË°ÙU9˹~š®A/ÐŒ&NL}ÔÓ#3ðCPzáÆOÊAƒáÕºpô‘.!£R¤.šgÔ-Äö.¹å[Âdœ0hÔñ©4ÕðU~îú…sk|ÃÈnɱß`u:b/àŽ>hÖ®àŸ^¥öÓB-€N€Ô:…ùeEÕ ¬²ƒ/Zå©4ø$˜„“P’ó³ì’$ü­èÄkƒ-À3Tdö™ª¸4çÔ ë…Qš$Êãþ‚S›KbXEÏUœI‘ (&& îûµ©kŽ¿†ÂPp\0 éP+¨+àíÍ?*ÛÂC¨l`Å{~çp!šQ ¿hLÃÕ½t(ÚM]›ÍbÛTZ%Qõsö´î€KMÓrPÿŸ™CËÌÑgŽvjæ8»Pdàá#ÚŠlf¸H\ÚØ[Óûu:|0$UâÏdè@2oפxŒå@vêj†Âé¥ ¯“=KVJÃþ9n­F:±´åëÇ0v" ¸›‘ Åš +ù€'™˜¯ö”“sž +B™Ð^ñgÇI žT0gUêç0£7ÃÁoŠ £Å¶T/™ï +Ÿ§4ÞÔí^&“6›[D¬ë‘ý*Ó<ú0pŸT0££ÑM¦’Ôó;ôü©ôAà!£.µ;¯ uÀtX"»"ÌOüó”yä%L‘Ðbk^žD¦n0ÝÒ®„Ú-ó:F†äØzðÎ×¼îÓhúÈÁ.N€ò ÝBvmÄóf©²¯¹ÎqžUlQ-%äüq48*™òøÐÀ{b/Ïîç›nÂCÛcÐ{æÀ÷ìþ…eç>wxç'‚YnåÔWÅõq+ ‘›Ùƒ þòcèÌÝf,æß;¶ÐIh¨ÏKôå0@÷éí½µ‚–™Þæˆ 6 6óL¦ Ooh€i7áK~îZQµ[6«êïäU”„8Ó¶‚­)ìéS£›—¾Ôaà÷‘k28¯ÂFNjÄVìN+‚ç7ÿž‰"_Ï2l‡‚w +©hÑ“‘]²¾pù Þ5ÎÐqøÍã¬vpÓ6Ò'³Äê-·² 9cß×õU`ÜÒ¤aw‘y_4Iù4R±º‹ñëÕÜ©¾àœèÞ5b>9X­)²™tnSá‘•’(< +\,ÈÜÈb!:öĸWW\~¬Õ%i .û(õ7­ÎάCÝ8 ¯ôÍÿ%ÌÅÝ=~åá 8¨A5#´lýHƒšÀ·Iîfrßuä™Ã¡9µo`Å߸w3E,$Ç7áT dìÀó0d ¦~\ž7ž`0'¸ëéjÑuXöÛ~v:G%£ÍIJÞf´± ð­ ®KL²\I´É…3Fã,Ùv0ó`ïP +±e}ÒêAÒGÐ4È©hÊX5 ¤ª¢®7c+©pÂ6P-ÜÆ·«<‰m‰jýö¨†ôAÉ=±qq%R  ,#}á¯Ô£aÉ,ÚÐÙÊBö¢·:ì5<ÞJc£À±¦€ÃÈ(!« '¤6iÐHÞ˜E V%3EŽäȼ%˜·1Û†/‚ K¾çÖýj¶Á»W"´}e—‡öý_¨|ÕÊ#¥XV"gV'þŸõ'VÖ$áfÝ$ðõ X¡6kx#òiµâýG¹’LÁ °éÕá +Zpð‘4å413YÌôU6šÂÒ$Ìð'ƒ·C O©W1m½8µ°Úà £]% vIq¤øĦ®/’àâöP«S)‹‘X/ld2%(¢iœ¡jê»X´Ä0bôrØ0÷ëD}çâ€ÓmU&=kµèå#DLÿ-דSó‹‚—0v+‰¬»£—Ƕbc¶Ø¨B”)A£Òôa¢PC‘ªžMÅn´WjP5á!;àîoùî7fìм Œ#Üf*Ø*q¥±]AgêÞïy™$ëà#’¥w©ç ˆi íJj`Æ€‚’èß´)"ÿ"Å=\ì”vÍÛ¡¡ +€iÈ’d¬!ć‘\³2—û–[™ }[uߌ-˜Ø̹-`¦Ï—Ë 8y ¸Ï›T&¡7y7Bž_”evê5”PaŸA¢Êá2OD[Å¡ °fúÔyå@+³‘ß+¦<«O î~ª¡Çï›2Â’þ"+rFÜÌZÈ|dµ‚@ÅÝNÑóä‘Íñ³™¬¢ÅK.y#—¼]òQ­Â÷V +”V],êËþž~càzf$`Of%øyè ›ô¤Ï¤(|ÔÞìPôù檟V¶çL¶´›qXJ‘$R"œ¡"VY}¥P[¨šÿõÛ¨üïÁbmYíó!‰üp•I¯EÁ.g¶Ht[{fKÍÂ$9m:ÅþÇÅ¿–Uì|ˆÒÎÆšc¡=8ârc*K†%çM¢8¾+¶èú_rÿYì›ïç‰FqæÁ…Nõ mXÛµòY˜Í0t?/f7§îîåõ÷†8d5ìHÂË®ìx_ÞÛ +E§³ë1r*‰F¡ðæÉ®Ôîò@Ó\„¡k¨Ž×Wx^øý e{dX{vômÖ3#OÑs"·x¬X¥4…\6g2up[œ Gxšôq2gí²§ÝËžö [Œ6ø$i˜ù¡fíýhf ei”°Y‰~e>3ŽŒIõUêJ4w§ž"S¤'T±]L9sñiH&"Æz”Sʨ݈|ø)Ì~r¾–¯2sFø +úvóùLø_Õ}ŽÑˆšBÑg»¬ƒÐp%´FfYdác¦öƒõ{M`Ä Ùzƒ§Úð4´Ð¡`©• Ç,_Ta:y•/Þa«È Òô”|Ûî95²[ìðú#\ŸUûà:ú¨Š-èF‘CÁ²ø lø}7V•ñ¢dop”[þÐ`¡ü±ÒGâ’äXµ³µ«ÉâÁÏi~ó{¡1o>o·ØÀÐOPñ 7î¯ÿ݉‡Á3áV…úžñdÆnÀQÞ‚— ÿ÷Ý2Âíž_#1$¾•,þk±Æ=˜,`ûØçîÄÿ*C7J 7ßvÈjçóCåÈd`Y\X +z&¦…eq"Ž _°-îÆ–ûŸ"è– +endstream +endobj +90 0 obj +<< +/Filter /FlateDecode +/Length 5424 +>> +stream +H‰ÌWÛnÜF}×Wô£Gìn²IA€8Š³œd7ž<­ÁHɲ¥‘w$EÑ~ýÖ­/¼I36XG$»ÙUuêœSÇßmï¯.Vg÷ê›oŽUÇoWO·÷êÛo_|¯^-JU.¬«áÿUåÔöòàøÇw¥º¼;8^š?JeÔòâÀ/xþkµªºfÑúÊ+[/êÚà 7‡^~<øayðÃÏ°ë¿aÓKø·|{üú¦T'·ÿ88þ;àíjs©×›âÇWúøçïßœ(gêþa~óžÂ„S>EQ.Ê~)ùñ¨L¹hy‰Um½(]W©Æ¶ð¸éð\ÿ<¬tQ©Ã….L g?¬á‡:T¯µ-ñÏëµ.þø îãõJ›¼pª »hðù/Xi«Ï´_¸x¹}Øèf›ßË+Xkóµa)ÝÞhúâ9ß„5_Úê6.ÜhZw÷Y›xoË«`«Š_‘/þkùSL÷|j}–ZL¤M‰ yœOcé¾õ>¦±ÄÃA"¡ì&ÒüÓSè¢*!¬ï4eùL›2¿Þb† PȘÇôBô-gŒŸb2:ÈFYQ´´>ö4Üvœ:¼}¿ÕEZ¼Ñôð’[|ÖE“í¼ÅT†ÃÇwO]ÓKÝRædÌ7œ2Sæ[@žï§ìD[ÑœhWbп)(,ån«©˜·‚3ŽŽYSý1\¾Ö “݇|†à¹]«(„Áˆ7°)æÆ4¸çÒàð …± +·èð~\úI;mºQW°‘ÅSm”Ü% LP®µ:ƒzÒIé„Púä=üI{PÁkªn1ú¾êhMŸ´¼™Çœýâ¸{VðtTƒÉ +ø¼ϸ¬ý5Ç5gRð^Ô¨UèH¨Å;"©ÂbÃï5CÝ—È>Xëpð<@-–-=a©Æ- òYcEü3ïßÓì7ž Zs„ÍC}¾2£ÞÈûwOf³æü<Ì æÉÕ_¯Y±h0è¢gWR =Æ1,#åØt<ëxRoQ®›gs=éÓñimæÓ&äç‚e>aŽÎ ?˜q’!yA ì¤@[ߪTÌžqÖ8yÐ9 L9YŽºç£L F× PgŒ–NaenålC(ªm6­í<7Ôgè­´èýERƒ8ªä 5$§åÁ©ªÎš³S쑹 +]„*êÂ9 lüЂ(NÕr6žáäÅzf>-‰}ÓÛkÌ!8£Áÿ «æ]©@ç_ƒŽ•´Xôu½®¤hÔ·}ÝDZģºþ í Ù^Kîl°äAf-'"#á ³yîf*¾Ò w›’ܤÎ`Ÿ9ÁVÃt”uÛfƒB²:Ì¡Ò*™r\^f‰,ÃÂT!™X±ó Òáðëòlehû?JB}VtµR`›½Nª¯ _céT9 ˜xßI§'œ`½Åõ#GÜ+b—»ÖäðzC\Ô¸êê¾Ñkí<èš*.β DÈ4ç¸ó$¶Ïºìµ#jtpNÌ T`#‘ÒHÒdóC>ë +"âpÃúÞ']ÒäÏ"Æc³\õô4;C&uº9Í,f•ø…•Ðõ92P7A9²¯~·é‰‹\¿‚&; 7;”rÊÚö°ú½Öm¿P¯ñû&KtŸ¹êž¯c6ÇívÇÚ¸jD¾Ì¦…¡ƒ63P‹5l•—O°Ÿ¡ +'¨ðÒo½ºòxKáŒÿÌœA5 åïª`gŽpœ{’@Eò=Jò©î2rÅù½e/:¹™Š\¢#¨ë†Hù…ïÐå“v2#y¹V¼^®ž­¶bõIæ-•JþÖ9ÜüI®IØrÔñlt3q±û*X5XAW̪òÙtæ®/ôºÏô~>Yä .z [Ss·ËöQ6al_vÁ§¸šŸÈ2€\È*ùé¹Ç™a7ÁÞÉ/^å³I=µ.Ó_•YäÐ__®ÙYsò­U6@Øfɨ±c!=¶™ï¾6×Eµ<¼ ÁWu@ÆMgzè;,ôòãûwCpÓ7àúŒC;¥QäGi¡ s+ÐÉfÞiz›Hmœk3ö¾ÂigwÑ!=ÐK]š`„°2{A«;'—ˬò4a½^HÜÃDò#<]°]‰–\Êùa&Èúa”Ó´/Õf¤J\T>±<4›Ô{¤{{Ù;Wî<èÖP–4S!IŽkÖxç=[§®ŽýÖCYôI`SðGŽ5“3 +jÍ +cnpv‹eß²Î|ÖIù³lñžÝ$Ï:ÏþÐx'ÏfHЮåënrY†Ž—检Ü/ÈL”VÜDÜDË™³)sàYj 6„2WA øå‚çáœP©_d¨X1aÞ â¯n7+MTX&‹õÄï¯6çü9\(Ê’d”™éEÁ1?"°°>„5‡ì´[ª^–%g¡”Ô5%ÀŒ€ÀèÊÚsø3d[}9Ùæòæ§ä-=qäñã°¤æFH¡ƒ¿ +ì©.w%ÙxWxÉ +Ž`ìæ$du³÷¾Áoöôltìˆ|€,¬xT#ªQ›¡1Ÿ5£¶™ò€ô§]–lD? Ayú(ù_¤K²•®o4xkÙg$¹°ê™Üùƒá·=íèü8gg +4ÚDˆB=E?l…=­’ˆ× +unPà iw½)K x‡mê{Ce'3W“’õ£ùíé%{ͪt7æÚ±-Jí%Æ*L‚ ¯UŽ¶j}!2¹ e¤F¡óÑQ‚0‰YÍæç"•àÇ]p-ß|BÇ™t^’¨ÙûÒf—ø6˜4až«”ô‰àŠí!4¦Çä¿ä76»€0Ê® l ´Õ Kˆ/‚0#™d‡ZiX»ƒ³xÙà~çžjÂáƒtÈ}Áé:oK2 „Kë‰:ÃnAÞË~¡Û%âöQÅDQÇÈ’7í^9õ Ì÷àÇÊp?f+Tµêa”÷ÞªÙ8æ‹7í$ Wƒ¤fwJ9‡UU–ƒò7äOãç üU•]Â4ç4ÉÍMÖ¹ìSúL¼ d‹)n×1g?zËÈ -1_«€ÆAh³ C^_‡ªŠ¼ö]Zg ¢.>í]ðUtá1¡0+<îG_o3äb§ËµQÊ!PÇÚ$Ö÷0:.ŽžÍ¶‚jý©®$X|åÅe÷ã@³7ÖJf¯¨II'|"cyˆúôÕž§kÏ¢nz]–É|ϽúØ{|àÉÔ9j>Kµì©m>>Õ¾U™O]!>ÂpxxÁl¿S1Oôt’b Ö•÷ýºôªlZßuqɽ)âº{ Õp@ ½c¼ïí=–¤ORQ– +NÇò`‚ôLg—€k]µ +Û,N}+'a¹KëJæ•Ü æ¥=䱌d„é­ŽuUŒÏ',ž½ªóÑjLÒ†6ˆæQeç‹Ûv·ò¶0”ø|Þ¯ € ˜-7p( Ævm}šAMÒ0î…b2Å/ªJC)],ýÚfK‰˜¿†íëäSœ’‹¯éCdaåIøF´£ág-’F3ï{¹Šè$gÜyEãMÁpiAŒÖ­.req8]4ÄF—è,zw%pLþVSÎf 4wΰ¶HlIœE†JŽ²3“V%²üy§ÊH‹ÝæÐD‹? ž~¢Ó]€?ËÓÑÉÍäׄ’ÍòkP–¬ËPlp+„p*Q奯nYI#^#±IÜÏž”=‘üè—+öCÐ8¨‹Ñ?Šý8©Pü7øßœ\ïŠêé±$œ¡†lSU`„ ©øº¨µ–ðÍ~p[à-6€–þ^KOÐV„æMÜw>8çñðŒö1•žò¯[)o}×/« æø™„)³ ¢%mhq‡-d•w%ÏÅŽ&ó@þKŸY=æëG¡¬(…uG”‚Wü®á˜¼Â}ÛxÜ]Ù”¶G[YášhxëÖÉTVRV&lÍø¤¿†3¤ÿ½O?Fx膘z©ÂôEú‚ZàÂ84ÅIù+î <Ñ™jÆØ,)……|×ìÞiÔ­FS¦!nöâIWχ+üôÈÇgýˆÏ¿èûÑçî—Þkáí®ªÂ¨AÖdèQûŽZ–&*Á¿\·íêãfª +€Yîü×ÔrAªò„˜Av°o„bñ×GÌñC—ßnªˆÊŸYÝÅ žƒ ¬fÓÄå&J‚€žtÃ$S$Ïzè«)ccdÄ…ÓÁåEµ¼ŸÎÝ®sÝùÕIe‡Áwç/;þ´U^Ü«/{usšv\íuLÇ/“Íé‚Ý8´¦ý+p í‡ë? Ó)ü¢ÞÓß'SÏcƒ1ÝÀψ?låÜ“8„ó‚(z𪓹êù@7à’p]¿´±›îwŠc +xÇsX½Êщ¸ØÝ^!$\šuè‡BÀ‘+E[Ÿ½Úæx÷E¶hbG“rTX2&J|Ù6ƒv–ÚÞ>T¦ç;HDGg?CT¶zdïdB‡…DZ¨Žã]O6gáš­dU}7»7Pñ–­X2ðc2™(¢²çƒ¢¾aóºéigÇÐ8+4üF¿¿$ì¡Àf…ùû=×[ ¹)CòÂRî ÃÁ K ƒ#¹.(˧Uû–PÁ £~÷óž>Ž%.4R˜Åí^42õÔ7˨• ·uõ²“{ž+Ôl#ê@d“6ºò‘=8‰ëúeûâT÷K¦ë‚Oy‹—G4ÒrNgéX!?³`H{¢ú˜™…˜2u¥ Q{§Ó`ðä¼ÛÁS2ÿµài]+Æ2C£^ʆFSEø•4§ÓgÿoÉÜÜ¡NYe!(b¶f€Óª'us ò¾ƒG'å´)jÍ 9Mð·ÞZ#“7þPü†¼$çx˜¾ÇpæŽè¡™ÕÃÿ-˜h  +endstream +endobj +91 0 obj +<< +/Filter /FlateDecode +/Length 5178 +>> +stream +H‰´WÙnÝF}×Wô£ð¥Øl6 0¶3&3¹o“A )ZK–"ÉQ䯟ں»š‹Lñ½º$›µœ:çÔÑßîÞŸ>˜o¾9ú§9z{ütóñÁ|ûíËׯÌÁËýAmêªñþm[oî.Ž¾ÿ©6÷G{÷KmœÙŸtU7À}Œs¾òCLª:¸áúàp°ûß¾Û|÷œú;zÿïßýýº6¯oþupô#ðöøÃ…9<û°ûþ¥=úáÕ›×ÆwMŒÁw¾Ç(G±— êªö½Ù?B|—Ë¡ôÍPãØa,ÿ9üdwMÕ˜ÃcÛt•7‡ðw]uæðudpxc[üýƒÝ¹€ß›cøJ—>Xÿþjnl‡O<Ðïðåþ!tK'ß™»38¾]Yçª/ÐmØÆU-¾:?ÀƒÆî(†{| ¡“G ït•3‡ï­Çëgvçñú¥…ä(V7àkš²®Çgb˜gá?Âe¼¢Ü¼ðÁ\Û]‹‡«xøÒ±u#z°2»¦Á¿!ÿï»0𓓈á ú¤?Z×p|Ò½ª¤Ø뺷xÔ™´ãWó`é7øÄŽ¹µ®[läæ<Å59r¥•Æþwÿ„Àu´y¶ÊäWåÚªOˆšÁã!þ€‡ú™Sè'†MiÝ`m)]OŸô÷škO ÓŽ:Kйƒ#zin£ v)b¹,´f@ly†Ú5>ØI:ÁØ€ƒ#àáåž8 +tÆ­mùÕ“° \|a±üðûuBwl!á…ïL]C˜ð½·Œ¿…yRåà ^pÐ9BGŸŒD|ª9ðHºµµJ*ážÄÏyVŽ€[mG«À¸«!’tÔ0$ã{Ž<¡ÛËŒCÙifvŽfCvWêÔ€:Ç‚É A“`“ç7RžNwIs +“J½ñçëœØ±¢‘A¡Ij ûg‰f]äòŸÆ_—O~Çp‰,Å ½Ë4D¡·“ÐçK|WB¢O£N:,´#ðÜÈï§ðœ&Z¢ªø#Á›Ø#UBè}ô7‚( S»qCÝ!$†™7—8┧,s­nI‹¥ß<’Y +<ó)*Ò팳èóÌdrV¥iðå<ÍAM+ßpNR0èGFMˆ @×®"z¡0ÁƲþ\L~_,·6((Êp\Ñ8’äþ¥*H¹õîÌPÎŽ^1‘¥”yd­RÚŒ’ó)¿MD°ÇsR¯ÞÍ’Ú¯®„—wkðê›Ê%xý|hƒÇpT¦dpÎdÔß Ì¡’¯1ì?=Œò¿‰¤!½Ÿd‚‚õı\Æ¿[ ÷Ör1k1ùJ†þ³šˆBÿR&X‹b7woIj{I±sB¡Ä”ý2Sö“ªz®*VŸëꥮ½®+•¬/PK|³ÊB ‡/àßØê +¾‚«Ð+«=Ë›2 :Ó–ºü³µ-‰õf1¶,)®ã; T¶ Þq€PØ‘_û +{Ë Kô*²b>¹pûÊž¿t"-Ћ‘3Ä¢_ v“é»C]„ „-<ß*T÷Ž~ùÄøE£ÕC2l…QÉãñ-ÉŽ¸ˆüb¸Ûy†çÈ]`–©ñ‚wÌš„pu*–èÁÜŸYþ¶!3Þ@î76h|vqƒîí +†ÂØTu *E-zƒ) ðlÖâðB +1kôzw J0Ìlm3Yµ´)–‰§g×ÕM÷&œ-®Y0¼cö .ˆX]e#L^±–½FW&.9ÚQ¼rÓWC’Ì$¿¼¬ªÍ¨ªÄ2΄¨tã¬ÅyI;³4¹ÙŸwcÇÎD^ª¬RâθF3· V}½NB8¥î‡¾Ð¡±ûß6œëJá¬×¼}è¡Âµs‘àššÁÙÐDÏÈ5[SA*m~çÜ„cA_®å81ø¼ßè¢wa[°uÚc¹¤ŽB'c³?Ín w‘Wnˆã"îÈwQàäqEynhˆë±¿rG#Ó¬ÀL Còâ<‚X[“ÖTeIÏ+QÔ Ú:Üéu&Us`[9µX±¾gãl6S^ß<ƒMôM.t~ÀÜl¦/°éVw†ÐAú ›ÏT5Á¤çr5¹"=[ûš‡¹)+'Ûð+iæK±K‰==ßgbbÎ4[†h‹Äâ ؾ•ÈVÑæ,±q÷5lÌÆýPá~“¯’3L«e¹Á\ÍHy«T¢?¹…? Ëþ0èýSë”c*;Fc‚£´•GÛ’ïÆf S`¥Û„©[„J§´Ð +5î –µ"®¡x^È™]S Ú¥•haÏSÜ£ÇéŠF™‚ºŸ™•ÿ¶´BjRáÙr;Íë|.ž¤ùYÇ)GëȉÝÉ Þ3 ï>šÃ3„A‰§#Z¾5z/#_ )À°´:Š8ÄÛð¶p™ÂÆV.+Ô¦^ŧ©3•E÷™ME(')$ÏSf$ñÌŠ0ÐâÖ¨J7TR«}hVxQ¡„O=ÄAĹŸˆsÄvfæ¼²•èG.ë—-¨µ#r ü°¼2¯¿0…ë` $Ò¥5ñ£ëè]6Y”¥—ë•c>6w©°qâZˆn™åY¼ –݈ÍgÑì3~¶ZÀ¡¤Dá +4ÙëD‰Ðà‡ì§Ô¡èŠŠéz|‹QèàÉ^oës6ïÜr ʦ͡Wœ(èúd6#Ôº‘Z·´€úIïk5wyNÍÏ ºË¼š¼gÞ·à€/¾epÝ›Gz¿X€ø +µ£jíãí¤¼lˆëˆ/0º1c,|ÆƉ>ök`¨;µLƱÚb7…™¹¿×¤FÎÓÔë49Ly#É E^U:ÅØrUä2Y‡9Ô›ˆ×´(DB\°EéV'±ä¸mXê –ü +–ZØ[»KlGQ0µ–vö•ÉãfdÐô>Ù‘Lºó¦ç•O1zC°ASJe$PS½Â n3I˜[ðÒ€+[¶àŸ3ßS;£ÔÉvÐSâµ(:ï$x×Ð`™@ÁÍê´ÀK_–g/)ÛéŠMwzç4züÒ SÖÄ:ßF³#²à–›«P!* ³ 7 ˇwÉ¿ÿê¸hC ò ]ìØ€=mÅ•_wôR¡V¶{)¥j–ÄtdJ'nžÙÐh¨½ê¼ô'6TØ$âTD ïÕ˜Eoê{6¯.pdò\*â–FwX¥Ô9¼(QŸið˜ùß:Ní–&¼N¹…}j ÅÖLz廪î¼iaùʦx+KªqP^9oã1@m§Â Sиd Ã’Üf'‰^˜dè©}‰+§T•–T©ñŒñ…îŒ_|•db«±êË<æŽÀ{k`_Ûùx=û˜†.¦"«PaHþv$1ÛF„Ò–Ô«¶8-ÛÝ¿ÜPf­NžÿYÑð|èÔ…Ò;°û}¥©S¼Ž ‰9±gïqwý{"ôd{‚vÖ™}–¶¹¨@ôî˜Ú3‹ÜZU¤jº"÷%Q*öÓðÙýt¦F½æÄ[DQ¯GÂ{®ÐFTu%ª·†ªºWfWyÛÅfwÒl·Òìi«ñÆI³-é “·!°9S?Z–õKÙoŸ&1á—¯ò-ÃÔ·¾/˜y5nÍ·˜ÄI¦ˆT…z.ðµ¾bOøk‡Õúö §ßàüèKCZ¶æ!DâðR‡Åjh¾¦ãþ »‡%›}. ¦ú1WûryT“Ò—u$¶e•6 +{ìØ|¨íÎQ§§™ˆ_¼žŒj±QøivKâ +7W[[5¨VíÝ/Ð!³??pXHjY£Z†¯ mÇ- –·½Êödwà9öO—¶ajt r®Ú•¸(€*õä1ËeqÌþêƒetXÆO–¡ŽJaJ¿ ÎÿÇ{µ,ÅnÑ_ñ2^ÌÄ’lyœÝ­¬R•ª,Â2^îåá‘‚¿ú%µ$› • ÅÌØR«uú<ˆçhFq À~¾ ÏÍ$çÈ(¡õ°÷ƒ›{CoY„ ™îçÖf-Y³NêU ¿0(wãþàfG-ûVïº Éþã^€é˜ãÜëN%ƒ]¾]8WÄà¼ìWfYpÅú¼fÒXº”S Zlø iè^au $RÛ³TáDLhyBfyå-³™’xÅT. Ïö7;ÙX\Ì’Ó 0ø¹V2xÃc]³Î¨;êéP±*GyG;äÜ$®œ%#6Éy+I:¡Ý{lÃœ-ÆK¨E¨<ô(3’ݰ󨛫ðŸø'CÒQ9H*L"% 솧h‡-¿íbÒúT·7sõ+ª3JhË@Û½6 Ûj<…‚G3y±à¿N¾6,;ée÷Ãì·à;p|[;ò ³QODŠ„N™Ò­húzTtèbêÓmç[Gsã3öú ?.hÈYܽ÷©ž}SiWdò,;@jú­…r œ,p¡ª·­q¸é[ JDñ +=Ö§y‡0åÊ ‚ V©&›_ˆ„ÓF€úI¡° $¹0ÖQ<ѧ9­"‚2õ®p¯ ‚¨¶£öüÙõ­\­É“}Ä{dsŒlkžé‹Í‚ +zn µ-å>œòµ¥PTyIšM?±R¡âw1ÌêÔS~¦ÔläG‹R°ï~½Á!ZÀ’9ú ×Ö&× ßB?,I8™J4="^ü’˜zTÁ³ls6¿l̓(´¥UñƒÔ4·RB´F̧œ‘Oüÿ Þû±ŒB)]YCZÎÃRbÞªÀûïÈ;o¼¦-S{@ÿ.¥ÑÎ:äš61ëj eUý' Ö?t'  ;gF‹JšÕâ—À€wùØ;¢.4Ÿ«¹œ«µc'z¼ÉÀ—08rhZ4·ã€˜)ÇærNê [Í»··Æ›ÍÐvÔ¸žê)Ìf#Vý6VžàLOëiÎÜÕ J~Áû=l³¾­½îÖ§÷qI•xEÆ’Ùz‡ŽeŸwçy ° +endstream +endobj +92 0 obj +<< +/Filter /FlateDecode +/Length 6234 +>> +stream +H‰¤WioÇýÎ_ÑwírúœÀ0I¶á@†ˆH>DA@JË#â‘­üúÔÑGõË‘ÃÚ]NOwuÕ«WïÿéóãÕùé‡GõÃÇoÕñ›Óow_Õ?¾|ýJ½<9jU»3ÖÿÎYõùâèø—w­ºx8:>Ñÿj•V'çGa×Áø¯Ûyå†n×”ñ;ï,¸9Ú ÍÉ¿~:9úé7Øõ?°éüòæøç›V½¾;úëÑñ_0€7§·j³¿Ýþò²9þíÕ¯¯•k»:…g~Â(tŠBsÛv×jøöAÅ/OJ·»ž_1ª÷»ÖNu¦ßµm7`\ÿØøfØ j³k‚Ø7ºq~×áï­ øÓlaX¡Þ5Ÿ|ipÏÍü]«Íc³pÙéü>oÓg³u¸ì‚—© -»k¶~gé±ÆÏ÷­í®à¨Q›ðéqÑcóÏ“?çd-'¦‰9>9‰µh1˜Šv  h¾¿.÷×fg‡6ðýßB$tãÛF·„øöêßAèŸqÚÜ4ð–íc´áJ=~¹ã7ðF®?‡^ýš_¼jð_¸¥óQ]b +d ÿ>¨}C;ÒA¸Ã—F÷˜ñûfÀd8\mŒÃÏꊷ¿Noð;ÔÐâ¡x›žë‚?âÛÆì\Œ£†ëQøšùÖ[:.g㢅¸5ÑãG¾¾¶çÔ¹£÷àØ5zG=2àÏ»õ!3à¯ÇH +õ ß²2sñlºåÇx wÆiétî«hrc§^á}eǘºcYX¹Z[l“ÚY`£ßϱËåt™÷VÞcoC·S%ìO +ÀXŒàI %’n9GÅ|ÿÎ÷Ì$3fþÅ®„K"‡Ž1~™\¨hó‡dôЯ’éuŒì Ör4Ï÷´”H›"Þ­Œ°a#´¤å £ašbüMC|ƒwV@½·ìOt»n.÷õ¼ÇsôØ¥h %±&ŒR¡ÔßE%‡¹-93â ©Ÿ¸‡öó$!­îÔ·  +ZJv•¥ e“”…,”½D~ü¹ŸRtn&hœÜ†jœ²¼‘†]Á©­ÕAÀ@J›Wå³ÊAuøú=nç„ñ»ÎÃZÊ _ÃßT²f%ʆ•ÎÚ®ø„§Â9ž)¢œ=˜W¤Iµ&¥6ð ©Ó98P $2í%‚Éžä|ÂCRã`ÇB+ÞÈ‘]›¥Qð!e7{ÑD†L~ÈžJ0xš‹ºçºÄœ4Ÿ­ÅÒDÖFÍék$†ŒÅõÖá¹Ç9á¥å)%Ð9÷¬YØå©—üÌ:Á°ªpdpäÁ<]ÿ~Óƒñ”±$b¿iÁ™­d‰¤™4ª!7ï›Æß¾˜ £÷›šRÅYcËHÏ¢Ö1mcÓ>l¢ é¢ût1T=ƒÔ‘Z¶ëH5ï–Ñ- !þþ/öS7¥Ú¤ŒsT‰<#Ö‹ÃZ:Œ¦²4³>ªÁð]ˆÒË4£©wè +š,vσ6·­zÄ°êçæ,­–$±£¸ß7ª Š8? ÃÓ³uÑn’ÖNXQE›õ•ÿLˆópËñDõM©Ë*‰D…L/ì˜\¿ìì¸MPì¥KpíêÉÒÉÉ2¦MÃUð"IG¡sAgŽËÖ(]uøÅôq¬% ˜§Å$«µœ.†w%zLÍGƒi™­^ù®E?!ô3ÊT¯*9 +ú%rQr=¤% å¢`%3°0•gÇLNŠCý)°˜ Ihsà +Et´ŽÞ5µY$ ¨–E¸PîÑçÖ*iUù& „gêî9È=³••dÂùˈÏwH,ã¨â—0–=Ô¾ëÐ`—¹ÄÁDjÃ`*$l¶«d³q5Ê:»ÀS> `Ž {ìssiΉǽÒY‘¹/N!btÔ¬Õd…Pé¹µ#VIäÒdÙ\4ŠáŠùã™wÓݤz‰ÔUvB…ÅZ»ÓÚÚªTÂ@>±î¶BKiü%m< á:°“¨„O˜XÏ‘øŒ)ò¸•¾Bva=N í=©pžö[Ö™*gFÓ+Ë`J߶¦oó]ä÷-t±HcX"©¸ +8Ê„^—Ü°ÜòdÃÐ]•Ùµ-ßÕ-o—ŠÒ¯ÝåéšL‰ a³D˜ãeF#8Ãœà3ó>¿Ê"âùByj¸Þ#¯°Ÿê]õ®áiH¤b¥Šˆêge±ú‘{XâQ8Í Mú\±à{ÂZ„_¾â§8F^@ãðÏ7µ:™ ‹Žý 'j=ÎÓŠ3q:v(S~…§„òÛ þ”ð^ÈÝÑaô i_™Ã¡Ê¡ñn>‡n„à™–ô»¤‹·¦·^ˆ <ÄΣ“™ô¬,ˌʨ"…¨ÀF¾$“(CÊ·*svä]»¥ÌÁ—2ÅˬdE£áÚ•Ž}'\I¹»ˆÉsUy¥)ù&×5É q?âݳBü “¯KØk–¹Ufk%·Ú‘ho»…B€R$„—Êk/¸=8g05@D´Á9>ø9%š(ÞXý²ŸÅQ¼ ýŠêˆXÚ:5†*+xœ0ƒ +½UÌ!9ŸJý˜‰Íñµ7¬‘Z¨º ·¬R¢; Èdãˆq_Lò«zr¬&»%5éçÔä˜}Ö!Ö¯ðjVkjÄö ÂÍ9#4†dJ²¸·˜ùUš÷cyaçC{Ï"ET€¬Gš™3êªÒÅ4y—h]ÃëïÌU7„jnÍ»÷"^¢zD’­LÕž·*ü/cXç[ì‹ó”6J$—0,h;æ¸LÑ•àê–Á•·B¹?7:0ÃVd8—j  ŸJ¨Øâ`P iÑ—rt%þ2Ur¾­4±ÛÚ—NêæðŒhIâ)éè!ÕÁÇ5V]V¼j(¦ÝʤKuÛ¶n¨3¯[ðJ:xå ¢°^G®–Xä1PI&ƒ£_¦•©ùR¯ƒÕ +\-V‹õÊt¾ˆ>}ÚÁ•.ÌE)¦¡ê)þóJµÂ‹'äð©±lÎÒô̈áìFsµìYééD·À`¿+òòx`Ñcªkx¼}[ÛÆÃH},p¹¯3.O‰°–Y¯šel%3-ÝFLë(àêvÂCºJ`Ô4!2ÚWˆÐøÌt檤""=©k&Y2t‘ ¶ƒ4t¢’N…^·èN.s.^C1v³äMEUϸÆÕ!ξý‡T…kW¨ + —•ªÂéu:Ø—N 1 ÀLêS´ ±š¦œ]TE/åÝ Ë³ËbÝ‚+€ö5@{©d‰ãûÊÌœíÕÚÈA›,#úœEPE̦`@Šc¦–™Ž§ÿ£½JšÛ6²ð=¿G¡Ê¤Ñ Ày’LÍiV椪”$’’Ç’Ì!#ÉʯŸ·u÷k,22É\,šzyï{ß"?!¯6öç…¥ïÖXúT›ÀOÄ×3¦J»u$Ü*N$²±œâ™VbeÃ|®ù—¸«Ær3ÑòVÂÔ–p2~NQ&µ 'K´¼«-˜Yn-Ú,ƒ¹¹ù.É4Ã* ËêËTih;,VzìÖž°Å=¾¯ÎÇ;« +½ È;éã¯MM±M§â´¾È€se‚ƒ=ëïJíؘ RC9-!ï ~ +rQ'¤ï*|gY?TEŸ;.¶œ}-¤\)Ó¸Hµ²½7JX,å5ÛøPÚùï[dÉ’S·Ò£[Yð;¤OÑñd9ÚˆêNìGòu¢ vjë\äÚnµ›¨^Al§žmTI_6B‡Ç³i-saÁ«{·´¯(ÀI¶¾Æ‹yœ³?šŽ¼/ÙgÉUy§\z™ ÙÖ°(FŒBÝ*¢R‘¦«ëÏ«Gu¬ÙSžöš+’‡cáRHÏ×>Z–{âÅDe† %$äJB’yÁý AjŒ–22E[ØcØ·ð®˜æË'ÿàYÈ;}ñV­ IHW¦-aÓ/1 bvã?£±4rÊÀ‚Ogú†Ü iÎ2°œ'Æ–÷óåR•3k‰øžEc× …s’·fcçÿAÊ¢”-èx)eBO;Q¬E§ÖÓRyƒ;Ñ/æ =Œ²løŸchL_+Ѻ`ÆšEÔf‹ÀäÙ­M&‚½£¢!rtÚ‚~Ó¼P 4ímáÅ.šiÈ$)«Å”›º—Á›4Ù€HŒ(çùjrð«‹:X,ðŒf¦ˆÄ´•×LŽž˜æ?55fµiÍÖg ‘ùƒÓõ‚·C13„öG³Å©-IÜU]Ý#!txêÜMÓ¦ô‡TÁ’±ŒH ó:@uËQ0a©i”¿¾ ¬¬]vË—²ŠÆOxWd2[¤ÉdTÄY6¢glVÈõarNI¥ÌÕuä›XOƒ „í$aŠŽ5,ŽÞ‘€¼v¤íÐŒ^5áã¥ùÕT¦º<ð€ƒï¸­ätC*õǦþؼp÷§àoëÐá!LÝ’oá6t*׫.ª_ÀA£ÍØíkñÆ05?·Œ¥6¾ã÷Žcj—cÌî¡qÑ=ÀC+ï=÷¾løÚÜ8ôóx´0êM,ß÷o¯w•¦-³†( sq±Ì‘䢃NÁd*1¡Ø^|—¡¹üRÝL6¯8áÈýãMv31»FXÊŽÒ\qèò÷SmX‡äƒ2y†nye­­{fqYPŸÖ®)¡íßî–2K1¹)³Aø<Í.|þCMßRÌ»©öĦ+1Ö6¥ë|¼õݶO Úפt/ó"©õ1ÞEŠ7Ú4§ “lTiÄ»²àsàMiiÛm{vÍ­’f¥jBõÊ ÜÊWd_-ßh(WÁÜö#!E-¶…qQξժ¨Ü#‡7òÛ*Î錋“¤JRÊ\ˆËm!áH¿Ê$Ü ÔHC¿¦QbÅ?¯…Ž) cœ]€aHЙZ»ñ$‰0fuIóšß+ Bˆ©ÔôÓ•iVu­«$P㚎‘4ˆvYÆ“2ÜíŸ4Üǹ®ˆ›žu[„‡ïÍzí<¦Í•Pr¥¨ù%fj@Ú–2Þ¹½êm*èÃX£O£<´¯ØXÇôþY<þ"òžœö&òU2ÂAþŸÏàè﫬sŸm]H~ þ²ëŠÚ²?zEñ òy´šRãED;¢Žñq.9ÙÝsøɸ—ݧ ™ò¢[ÈK\±0©X¦Á¼@P"GžÆò¸H~9þù¡g›­Qt±©/ÿ½bÝvÐ×e£¬ür†ü*dpHž<ëÉ#àßPZ×E!“šMÌ3ñ]–³Å«Yò,~ñ\CŒêß!ÛLŒ…ñÙïp =~ öº‘N%Ú½&‡Üh÷Çf7=Öž]ކͽXŸøÖ-ÒËøts~®öÄ¡sñ§cvÆ;ÉÿœhÄ™Ó÷øÒñL®Ã7+1–1ŸpÙ•&"IN¸BÖ+"‰z%ý™‰BgñÀYôT¼™úàŒ¼ß«‚÷jÃÑ•CØ»ò²¦é¶ me‚Eëø¶?A95*#“«¤y]MðÇÆÑÙ7t‰nš"gß5Eœ[‹¼¶ÌÒb¼o|„ß L¨œ…м*ë9”F2¢“N¥¨Y:i Ä»êZüã‹è\š’Ü+‚ö±£>ÒäêN–} (™&ZÄŒpä „Bâ2vüÂq´\‰~ßk8¬åû¡„ÚàæÊ÷ÊÜ> `Y•ã—ÑŸÆŒÒÏ^]Ô ‘ÍŸ¡ªÌ”Þ>‰e¼&¢1Z6HÄøzöx˜vL@HÜʾbãÃÈJµ:DÇ{¨ƒÙÀ;–(_ qŽ-îøx§8jœ›à©!BÞàŒ4ÿ†5Ó«ìø}^(ðÙð0nëé<É"vÛ•èr +]йƛêò¶’¯Ä?¸5Â?ùºn» ãè,Aî˜UÖ+øÊ·îØôcsg¶M¶L£ú¢ªª¥=vûÍ?¥=Úb=׿޻êt÷ÃÇ¿jª»ó/ͯà«Ë]Ú¹4~€³8¨>&T®±Û©»…0 >ðŒýÊíŘyÏøb¦ÜË<}€fÁÈÄ<§š²ß`™0~ýP;fvn÷ïBU4JD‰¼Àm jÅ(Á ÖøÞ3ÀF(ÑÇÙ”õœÌµ²§uvø¾Ë'<â÷²#òÆqÃ'ù?m`(öQìåûE¨• ãî7ãb·"– }Qì‹•ïFH& ÃêÞO{ qÒ§^ÆÙ„rRCa¾¶>åi ƒÔj ð#i°˜·µeÏ?Õ}ú ™¡Åwß pWçk©“ÏȯžæÙR6xaÎù\Sø{‘†©§°ö´ÃH'È]ípwy1> +ç"Azä§ã37íaïøZ¥ë± <½XàÀŒy^Ù×~Ü×¢¥=œÃ5]Qóµ-ÕQmv(}ÔPâ-Jñuª/•5ß +°«&=ƒÚAU¯×a9ÙÏXÉ$F @‡o|• zß×,I°x‚4ˆÔR•k¨¨ÞyÚ@ -}^€‘àâlϬ"=Qwuö–é…~'·Åû–ÜI) ÿ`)ÍÒ{ +endstream +endobj +93 0 obj +<< +/Filter /FlateDecode +/Length 5691 +>> +stream +H‰ÄWÛn¹}×WðqxZMv“Ý,°WÎ"IÖö!‚‘,KÊêâŒdk½_ŸºðRì‹Ô²hfºÉb±êÔ©S‡/÷÷—v§÷ê»ïÿ¦ßì¾Ü~ºWßÿêèuðêø VueÿÛ¶QûóƒÃßÖêüîàðØü»VF8ØÖUm­:>Uá˃òU{௫œ2¦©šÞõʺÊ9{®6¦ÖÇÿ9x}|ðú'8é¿pîǽ`½9üóu­ŽnþqpøwtïÍîæ\mÎn¶?¾Ò‡?ýð—#ÕvuéªB~E ûx\¬ƒw=` ¯4Ê4¾ª}£:ÛWÃ0xô쟛_ôÖô•W› í«ŽÔ¶²j³?S§º¯ŒÚÜê¡êÔæZom]5øö·jó ÜqƒoÔæR[ïïi¡ÇÆT=ZÜ:´p§vp–A›`ý¬whN‡Eáƒ-Ÿ ëàí6X*mñL‘wïÉTn´iÑ‹÷ê£6ÛÃZ‹6 æN4ø ß¾á‹Ãë²+yí9mÄAƆ‹ x +ãF Ö¼‡ñDÒ.k¨èwº•^X šþ×ñ_t–Áa$8 Ï£ÜGTv­.%ÿÂÞsR;|Ÿ®>“ì­a”BýÆ ýŽq+⯬Å57ê~ >u†ƒ/êÇHðÜbzÁ•a—ã]褞œ€Å g¤ÃŸ1°÷*¥Ð6øY©—zKÇ>žcΰYÊ°ôœô"«€"v–çø |£‹N0NÏN9!©>aÑ® ÇJ€Ø ¦i—RוǹÒêÛà>øU㱩L®#ÄKÍ™ÿ¬›LªzË i¿€ +À«Ýb¶:úä¨c —Ι¦“³=F È´xsa{ùìñÉî‘“ †,“•rC‡«Ñ Âí’í^ÅQxž¸ʺEX›šñ‚Í\Ú4L=åNQ&×áz gê–Qá!ù’oV”  A¨J ¬ž®²4M ·€ßî«dïE¦ÝÁ8uœ$³;tõ¼DžñÎlÌZî)|û˲ [fJ8ž®Þ"ZL¦âÌÙ\©‚ȇÆmqË|m‹>iÛ¢o2¡À(clÊ‘©ßWj¹CgV ¾Kø áÛš¡–¨¸ÁÐr(‘›9SÐÿSý!‘óJ8µ…‚)°äèZ]ßXÚ(©›–í:awž­L‚çÙõI"zì2­(íüœJÿŴפcÊ8£Æà«7¿ÁI†xüšb<w~SóÎ6¸â˜éO&÷ùü Ÿ€ ++&Of*iõna½1†1ÈœÈ.ˆ&“P +»>ÀQ]%‹<Ôth]†Ê±Z /’ˆ‚Û°š5Øo(£VdÔUëÃušUbEE_@–s‘^h$Eµ×&è ÕRÙRZôï’ë îÊ Öpw¡™9H•‚>ܲ1¬F1™ðþn‚ðè³¹QÁÚ^“?ç;>ãFi„›×1ômªFzr¿fg*Ù ÞÇß{M|—%kx]rÄbf"ÊéÕÝÄä¹®y1ÓwE¦G ¥½ërÙ¹LƒIeìR/}_(¡/Cë•èa£¦>œ‰Œ]ÑöD„Ø| ÅvĵLÛu@B-ÉÀòvn´»¢ƒ Á“¬q¿PGaå‘n¨¢£I´%ä¡/lNÛdÙ …Ô3¡ßA¤Ö˜¥ ÖPìW|/€©ÚÄTa·æ8Ý«÷ÈI!¶uêg¦ð/’‹æç<ü¥£ÄVöˆzH›"ÝåUšZ×Ke·]}9ë´Ý¨@ÆV>ê[º% \a¢gÆÕFöÌ,ôy(ìY6 yS™àã:oÙš¼„£K°†œ¿†_¸†çkÄêhfZq W\ãôÂ’e8–ž›ÞKÔ¤*õfþƒõ“²¨ Á.Q&2[ d¤óJ?ý³4ÉP‚Éø%0õP Lï¬5zpêç¥dQ‡Í%ãIn»Z5©Õ>[õn£K#‚±_#]ð‹v¸[+!’=k“§¢ÔȬ,¨xÒ8r•øw†]П,ŒÌ],YsWˆCIåÏaÞÚEíœJNáà‹ñj­¶¡B$Ð;a()ÁDs«p××haH@kœ/0·Ù®Ò½)ñìš%Gå«ò‰¶EË)°¹³I0·#0s™¨B/µ< ¡bú¬‰ž#Á¿™G¾µNžê²¸,ËËj)$ùs)Î2vCK/:ÆЪbÌ ò³mb ëCÚÖKQ™Ä83iœXï„ !OÚéܘ ¨F]Ö¢˜¥ÁûH[Q¨ëö[-¦/‹ j³§f]L¤Ï÷›ôZõdÛ ¼;sƒÿCëôk' `‚6áê©A ’Eóä³4«¹ÙlÈYÍÎÉþñµ¦ÚPVÛÇe5ç±–ýcè æñ¯ãýš(EMÄmÐS >襲°Tî[Hå>L!ù.v$ö$’¾Ê23ne,—ƒJã‘"§¨áQ^–vŠqÇÔî+qÖ œŸuc—€V×8 áG]pügÑìXy`J¥=ÂNx9 }©ŸÒšÌÜ·nTv±qÆK:ÏMzʨXÇŸÏ‚ëû<ªƒYÜJ¥ÌÞQ»v´%È\³2;aþgÒ ×_‚ V…Ó©%nž>‚'¥VC‰ÈH‡"2…iìý^öþj‡–ûÍhDúU7A"5ýx‰Lé”Оø°Åé*ï±ØŒA|õÂÔN]…GŸ4£13w¤­9K’*zÝL§+ª3'b÷Ù–çËÂöâFEOä‘Šs{±d®$jdàkÚ#] ‹ZÒ£,nð"¥×ŸÑQrÕÅ„÷UÄgQIRL©OP#{_×xF¦¸|”ð2“mŽmñy¬6e¡Ç™L™<Á©<7|Á’‘õPNšf©lœAÈ‹;Ô5ÂJàùx°¶<˜³ôN³Kd7–¶ïñZ¥ôŽcØjvË£¾V9R‘@©\dAä<]b/CìøÎZ«{Jb<.Ïd]ÑÛTqÕ>Q*q™!‘¶%¡1“wQ›aVŒ÷Í™2Œr°;ôùœ¬Ï[œï‹§›–)8óõ_à·Pn˜HX!Ûa¶JV‚ªûëåÒ\G Dá=¿b–L•¯Ió\RPìØ@ªXR¾Ž“àìÊÿõCÝ-iæF¡²J|sgZ§ÏùNîf³?UˆQI^ŸXìÅcÜYúøe§aì;Q—»¬®H…êÞÂÚüyÏ¥0G]7ùë”[Qapû ø¬é(†<[nc|z6‰ùsH0_DÔ–Ü–:B§†Ç&îrj”¥LtÊèhÝ]N>Öôø RVü_˜’ÕÍÉñq9âÈÂùÊ^z¿‘)§Š­%åg¼Àh태¼<ÅÒãñLê|ž\âU ðåÂ`‹ÄAã#_Õ¥’„w—WÚ iÙåÆIÏÐèM›†¡h‡¾5Žè߉5ƒM´CgjP™kÚwŽ;>0]o¡åÉZ²1 Ï-lã ]`®Þ‘wí™I]1kB!ÁpÑB WÛÙª`/žk-hè i< +¤²C9˜­üÚU§Þ²æBôqƒ‘(? +ËçÁ=M#Á-ÉüS²èh>KõÏZx£îœÕÝ‘æâ&+ËËî–ɘ™ëj0:íÍ™Wî%c\¥™²`Ÿ^æzÁE3m1Ëj& ^aÉ»P¥8ýÄç|¯BH]eÏOgËÉÐOÉî0'æHÍ¡ `ËrPMYµ¢òP;#oJ}òþ§ž¬?JqàÝó&¿ëây`2ñjèUm÷Îä Nоòw?Ó~ÄC ;ùŽ Öµn˜ÒãâÁ¯™&ç¦lð‚ n–ŸÏ…¶D€tàùá?;QÓ¦ëc9,Pƒ3Ô[sjs+=í¬R +Cæ’ Žéqg;Ê3É8ÈúÃÙ¿µ*|~ÕúSÛT1\Пâÿlt‚g¸I=à[¤ª)É(ŒpÔRPOØôr±ªN”éiha>ÄÛdd¬ºA™7m~Š¿9ºh*VßžúWï®;åÒóGàâ×ÅqF!¾l+¥AÌÔ¦Öb©VøÂÏŽ÷ߺÃvØ)ÄcŽoý 4Èçi$·]^‚³Õ£Y÷󌺘i7þ—Ж©cc¯YvLk‡˜¬ R!Ȧj£öÙ€Í=›òÝýYk–§§çÕö—ð·Mps. Wf–c †h[= l>֙Ļ<);“f¡­†–R5üWrµyŠ‚Ìv 6$$ž8±Ø&3Þ¿Å!4f«,iøÕS§«8Gl$q*ÁÙ=lÔHȉrüï4!g-ÛF©,…TŽâËO«QY)ÝAi,éINŠ‚î×l„áNG@.µùÿÜ{<y »È°ŽG³ {ÊÉÛæZ3Áu("ÓERñ˜2Ñ 9Ü¢PQJZ~68‰Ù$i½G¿ödŸà!‚E·>p× „i³d½¥ÞÃ?¿¿Â­¥D-Œ(‘y®»/w/Y§6-Ý–o¤UM«QÓ "i;’Ó8\¾4p͸Aä‘ +2´£ÚÚ|Š +Y! òëÎñÀžÞöi„ž©òM¡Z²‚¼["“â;°¯ÕÖUìˆcQj §ÅŒ^uï£î7}r»dÖ9áZmlÏÄÐ&q®æIJó"ø¸d…lÄ;·Ó¨¤-÷¥ámbØ^ÀêîÑ´*ÇèSfMÇ!·ÓMi%¾]a“^KY2à¹ST)ú)Ö›ö—N⪾'ADm§ “¼§l ³™ÃçÑŸÃmç¿vHòÜ©ùîÏ%¯"m4IÊ nåÔˆáñëzÝ=…ºÙÐwk–gU{œ‡¬¹í‡,ÍN4xÅf~M…^õ$rY­j©G^7îfÜ}àï^¹ß}·óÍ72ŸÞëÓ»-þ'ğçŸ ®!ßnùÕpÝ/ø(ñ:ñ0I6þ¿X&÷Tî<É ŸôüéèOT he¡m(æ‘áۢ÷>ô¼=‚Ú›¨AB‹YN2Hú ¤füÞkóñÉ~Ü úî +fêo|ý7gg°T—J_æ œ¬xÛ9†ì_ tŒÑm§£ØvËr½¸q¢ÓüMya¶ícN4~‡hlvb‰ˆ abÑ'ÏMo0¡U¶,™öDöb‡VÙkÀÐõ,kÞ¥^9,Ùk³ò8R;”ŠƒÁ«í¬»yÌù§8©8cýþ rÚøv0àŒÎRn!îRûaâ¶w;Ù ˜Þƒ±€àûN ›R@JÌ­axæÅF™y”2¡›Ãõ$âÊ°…O3±ylvð‘9;d§*$Jñ]%p|l4F¿\¯Âò<Õt4;Q´e´‹ºÚ íáù•hea½WϨAé”9l»tŠh×Ý}LÙ°-x\­¦—®Ö™nCu¨;ßñ#ëŽÛécÁˆ?Åä"Ö•oSµøØ(ž©!´­pZC{ÎE¹MG¢#Ò‹(-ØF]k’Š0ÔèänLq æX ü#îz€Cá + hŸ÷IV®¤x'ÔÍE.‰“P–Ò4â£[º¥_3\$ }ÒþU­rü9ŒŽçžX⶿ø|fpÚ[Š6_8IÌ.'"ùÜ(Þò}À +úË—œ„58yÝáë×Ý÷ýiMk}ÜäÈ4Ë.·/ÏÈÞ!ÿRÎ_›÷Yéì3Þ×u X&_Z™1ÁxO€o‰²{á>¨”uû:ÙÉþËúÖ¨ŸµÔO8ÒP±è§R g ÷Oà Õ,¬‰÷èív‰ @à¬kS¢Ùné8¦½‘lD³{81V¿ú†)X=Ž^?ˆã?R>¥Ï=¸þ¢[;¡‹^¼‰1cËpÅW%ëq¸QÉÅËf{f´gçBâ>à pŒbà¿t‡c­]ªzr^‘Gñm~kPø4aÅAW›f‹1þFynyÆ<;Pç0è¯RBH·ÄûŒW<¼ “Gù*Ì™ÁO0xzä¨ý™†bèÏó7Š ´ËÀ6¨4ò× CPXÉwSO ñÞ,>ÿÒ÷ö;îÍIlÈ7cËGš~„Ÿ¡Ö…üT5"t<ù­ ¾Õõë(qmFi¹¢ ˆ3ZjnVñ¡š« †aÚf"üO€ÃA Û +endstream +endobj +94 0 obj +<< +/Filter /FlateDecode +/Length 5590 +>> +stream +H‰´WÛn7}×WðqÈ´šd_±A€8J/’½$Zäa³ƺ¯eIIVœ¯ßº‘,öEnÁ^ðŒ¦Ùd±êÔ9§¿Þ?\ïNÌ—_þÝþ°ûpûø`¾úêÕÑ7æàÕñAeªÒùþ¯koö‡ßÿ\™‹ûƒÃcû[e¬9>?ØVeÕzs|bäË“iËÞ]Ù˜z¨ËÚÙÚ¸¦lšÞyw°±¶8þïÁ·Çßþ'ýáûø.lýpøÝ»ÊÝüóàðÞ»› ³9»Ù~ÿª8üñ›×G¦qUªÁˆÞbŒ–c<–+‰®ªñky©5}SV~¨Mçúr†Cû÷涰Mٛ͹)*ˆóPlm_¶fsY´å1Èï?ÖÓÓ¡tf³+\[Òß5><+œ/;³)eñkؤ-­ÙÜÈ÷ðnz[ ¸î]a-~ž™“2Úá†Û?aaƒ/žá'ýí ¸/d›[yo_t¸ÛEÑÒ›0<¼/†|_°›?‹­£cð¢>Åmà8tÀM¶x%^muP|Ø›3ŒÉâò?Ʊ‡qy'W„Ï[9䎆ÔàËp˜sem6ï gñ3]ØÒº«náñ¹Ï¢Põ€óZ•zs¿ýêœ-†Žƒ …óz c Mà/xùv£ŠíU‚)\ØÂÉMf ðŸã¿Fü.#Ôj„–•]ÀDÐEü!®0nB–Ï‘Õbú`µçðŠž q oÖx§‹û‚¯!zZ…‹žÈjØqH`¸ƒ×©º¶——ñÕÄ–³#{an{ÞËÒYæ¾ ð ––û‚»é„¦$÷TdºMiŽ¤ ëh…yX5:KÅqÂÿ§¸¾x|ðhŠû +·yL!Á +™ +Û¥Â6|U‡W…¨œ@¯ßVvË·¸¡Œ6)óO*ˆðfiìA¹†™Â鹚#›˜ ¼”[Zµ….ãÉ ‚õÐk.Ãàf«Ùyy_¯öE¨‡|WÄahßû‚SµSIŽ­Xž…â®{×êCÁ˜(+u|ÐH“#UeË_Mö®ØRì +ïÌ9,îJjˆK<ÆÒfì)p#:»4Ï€ƒ®Èšõï(q œ!¦uÀ þþ¡ˆ‡Ë'ª.èèÛ:ÏaTÝ1É„·£¦ºÄÓP´L\»?3‘"„Ð%ê·…g¾ +Rƒ}‰Ëê j¦®ëºãuÆ´Ö.H}ÛCz"Õ®ÄÌ„f1óøôR~Jº„zé{8z5² !‡‘M¦á 6ùcáj^%•ŒéS@æSç]V‰wµ¯Ú7gÌ~ÈeQ˜GCD¹ßÒ]Õ͘¯XÁ¥Œ{ói‚¡ø¨’:3•aþbZÇPR8`Á<‚×["_/%r%´šÍY·€­Ò±$ƧC±½f’›Dr'Âå·ðk›¥+º–I¥è3RÔå²Þˆ¨ç6’âx ]bæ°aÄÏØÏ^‡duï£+J:ݲ;”õrAÒÔH8¡¡34õ±.M¼ÛiÔŧ7ådc©‡.ÐlzÖ\ rjÂYO¸.Ø2Ì¢M ·Á·*ƒòÞxN¸‡&ï2ãˆÓ„ WÐD)D±ˆí +× \«ãÝà0ñͼéÔœ”ì¥àÆÜ…„º±ós2õ¨Y¿(oÄò&rö™Vji>Ù2såmgᢠ “õ3m•„ó…ôæX fè6ŸÜÌè·3j‰NtÞÔšëØ¥Â#-–¨h<Ö|PË0€"Ü\‡…‘\+ µ¥}>ó´K`ª½z¦%í$³ Ô/ ƒ­Ö*7™ŧ×y§'ìƒÿˆ3`‚`zï:ÒÓç“N›Vã0x?Š6ÙÈÈÉ¡ã-iÐ8Œ9·Wœ›á\BÃ)±£ñ. w‰èc†H]µkhTWf–×i¡J†Bú™Ç§S5 ­CÄ°Ì[ nP#Õ* æsßAl“#ósŽŒ-—ËJf)­oåµ. µ¥t.$qêù÷ Öd¶õܜәm<[1a®K³¯TšíoÖXs|~@»Pº]Lw6¸o¼åt7¾’Xó槂 †÷Âð*ÆwÉû¢eå|ô`Brlf~æÿïBÉ{YÁ\í bä·8ì`µäHaI]%ßñòÃ#o@x®wY0š-{!`-öx'܉r&´™° oÀ`bDl%b$ÒÒ¸ÁŸ7*v‰Çðèà!^ãŠ=q¸±9-d¦¥Ôå‹n0Ö‹pÁ=§3æ*°²êv$Þ¸Ó#_ Õ檡n¼ ÍÖP†n~­|—‚0O¨‡DÍfm(.àqÅø«$žzAš°è›£y GZn’@7öˆR«¤ÆR³0­(ç<²†æHÔþ9^þ ¹”.¸ç†¼ÅžëRçFÞÖÑúi¶Œ&3…Ñá¨ÂQ!Pc‡±q/òõQô÷g& pÇ^ô°ËؾÂón‚·æÓNÍdo¢õ‰Žü·ò uð丑ÛQ¾Yü¢4›1}‡›`®\öfÈÁ:|ùþW£i¥ÿõuæXlå€ZCKG N§RGDô`´U7·êæ{Nö#½Qpiä*ü€‡ýÅ,eÑÂÖjæbK0cC€ÉÔÔCNX¬ésýá“™r'ð»C²¿Ãnh§*VñÞÔÓaAe)ÜUN#yléÊ^Í£2nÏyë.ñQ[æy¿Ÿ^uÂë°Ú¬ÁªÔZ¬¶9V›~«:b5ÑA6ŽÁ÷걃~(3ÊDÂL>ÉdÕx§-µþ-qv+œ=D|,1v-Žz¢3bH“bäQ¶³7³Sb>ߌpEõûƒƒÑ¾zäh+Ör©±Ï ¯Ì™/ƒn7æúfŽë›0+êéŽ Ýeª"W‚°ËG±f‰Ø èÎ#”,Bû‚k±#§l5G ìæ<õe*+_ò-æµÃæ{Âüù¬xÒyÌŠ—së…ô¼ÜW—>R·X¥aÅ›3“°†Š0ŒÅyŸš‡/r¶ …3­@~Ï^”~ [)”¬e«!`½À +F¶Jz"=ð¬:úåRÍ>â5vé¥ùZl÷½b0ªp´Â—´A¸žfû3Èáu¼c‡¦-ÿÉm‰Ôò [ŽÞzYé”\É0>çã‚}«¦ì˜º{u5r_ácZÚO2/ (¯c½3—Žà"‰Œµu]H¼¿l²‰lå ^æ0Z/Ýý±pµPëB‡L|OÌ+ôZ­‘([=î$3Ë$f¼7îàñÁJ„Ø‹,xžº³ÊŸ+zŒöDr:ÆPW²ð¶R´ï¨ä|Ç´]ÓÐVxqèG¶Ø6WÏ=™®óPôhTlÌoÒMé\¦Ã¤ŸÑx´+Ó5GÙÜ„Úi_Æ^y'jKH#ÍÔYÞóŒ9±2­D4Ê6„Lâæ›n%RœB +”¶rÝTšNÙãÏ0%|6v.x¤)Íwxwm +¯AºGÐ ˆÃÖ)chð¹Ð©T OÕ°Ž5l¢`½n‰Ïª_jŠ (ScKŸõÊuò`ëpãs òKT{e”ÃŒ,VªÍnñùï57´…ÓZAtnYBœ†Ù9&¡Vɘ©Û¿1 ±+ê×~an´u/;”ÂÄ+X›6Ég³ÀPÑ–ä‚ÎúÕ`òY"¶CŒ¸FJ“a¥Xú‘Ä5'Ôr,óšc'Wš¿AæÅ‘®z,ÏJpÕËæ:Ë Êëù’¼Á{lŠ.1THJ°<[‚Ó©Ð’O´¤¦“–»[¥ÓövѼ`ñÙ ŸÑõz÷T¾ñ´Øˆ-mÔ]…TœÇ­ÊµIoFJÒeÞV@b¶mL ”ÑÇžþ¥¨)F‰pë‰ ›IÉÌ@;(A‹Vóô—lçÿ]¡µ^ոש6(ÄñjÈŠ›ŽIúœ|éŒRJS¹[ü9pÌ´c›ÑÔÇÛ±Ÿº GàG¨DL™»Ö‚¦Íf³$0®&£ùÜ”ÔeìRÐ9I?{Ù IG· +=ã-+B–D¯ÐTÍanŬ²6˜\Ö§ªÿò¹UT¿©¾_„÷PDò$~b.­vpöO©qÅ-M/DG°êÙÆ[ ¬nÄFva„ñ}«|)vuèÐÿñ^.ËqÛ@ý.Í*Ïñ H.r%{'UÙhcIcI¶d)3eËÊ×ÝG f KÎÎ! tß¾÷´*§ºW÷ì^ç´kÜ÷~ œ=u¥F—£ƒlph6Ã6‘æÞ€ÙöBrFPöÏ÷ü,ƒ&åȃdª ¢õmƒœ ƒ%ög¢˜Ä X¤d$ÍYèG +êJ_6°ìË”p“ðä \‚m£ªæÔ®´¨ˆj’ŒZ+œ/±€O±¡{ TíÎ.*1ˆüú>êìÈ|E +²©¬‚ˆ?ƒçhcÂ/=WÐ|Ü@!¹'ø¼õSúÈð1‹õ†,(œ¦,g¦µ_á? FDB"|Í[¬> +â@ì£ûÀ»ëà´ +7¶ïÞé[µ±¤©icœx& I’¸‚ë/¼0É´nUÎ:ø^QÆYË9ü{0Èß+Ç­…²íþ^ã6 ÇÀDgRŠ~Aº}þ:æÔ¥b¿(»>B’ïˆ!Ã50á~‡¾ W,@FʹЗ]ô²Ç8¹cÃâ¦À-?6ªjRÇYdEUZ1¦þ +V8—¡Çßó ¼8>Ì¿iØ.YNDá™àt#oÆ Ñð£‘.<²ƒu]+x\ Ü„°xhêG=ø@+Þò²à¤¨>Læ.T9mº\7©fôbÈX%qÑXˆøësÃ{eÆUƒ®R.ŒØ?1×È2ý¤düô­¯pã*Ir1?a"”C#w+ +,ÇN*%•W™|tLÎEŒÇ¨2yóKsªd1.K²»ÀŠiˆÛtz6ßaz%™¾¼I 0N5¥`²F‘ªºHƒŽàAG÷=¦õ¹£NƳ”—NÍjÂÙì:O[<;©œ½é5fã>˜†á1î¾~¡]fò~²„¼ùÑýV +ËB¸Ì†P iÞ€æ¿ôŠZç6sNÓêœSÖg‘pܳ¾×8/ÛÖvê4«¦låô„;5†Çï¢Íª¹xÍÔ·G‰1“.”íý<’Ù³:ÔD>¸žülH½¶ö=5\ØBÔ?UÅLW–q¯»±:•­,É–3ssuÚ}q¬¦&ÀŽè}($Bª~ý-–˳Ÿßr%4¦-æuWóÄ šÝ†NŸ„€¿¸vç XœuLuðæn®/ª–¸Ÿ•$œ–Ögy‘ 6ÄZ¬QXMAKŽÛrHaéÕŽbu%Ê\­q;‹_ˆaf²0³çÿ‚q,(Ë]Œ½B”7êˤ¥*8-'Épú&ĵA)šÍKxbät· g™ÁÖ¹dš!,º°síá÷Þ[4µLuò +%™ÕÒzõY´Ò«'Íæˤ+’&3ߌnÙ ;tö¤“ú4wœƒõWØ¢ÑEhâ“‘TWb,>OIzu:ÚÔ35@5—N+TÏ™*EE•ã̘úYQ6­ì[:ñ\jàÁàbñmsŸ“$±ß ýC#ßÕt<Ç> +2r6ÅhiVgŠæÈ¿²‹•)„uª‚·¡¥©›cq³òI$¿!?½‰?u‡?Mðmê]ZÔË$Ö¨^3dØWóT­É¿@½Éö(3£åç²×Tt¯¯¡þ2XIkÛýÑ[7“î›~â"ç‹^¦•î½³ã÷½²úxI0 ~õ‚þÊèŒü0n+ãp` \ý7ØpF7ž=JVä4r^¨GÏg0ÎÑOá˜Ø?é;RÜÕibc<‘⟮(I lˆY÷ñ´÷(d¢·ëÍÕ`Ö„TCûc7;¥×`5nï îHƒ×pÀ‘í:T_ËÉ´ñòTaëaÖ—ÀŽÅzÙ³“&ñ¢ H®ÄÆ«,›ü&ÙÁZE#Sÿ5ÿ±'‚jÊÓΘVØŽ—½®bÃ䦀àšä¥H^ðÎ].~ÀuÖ"±tÃZËäêÄ“Ä »´ëbÙÈo]$ó¢Ãž—(¬<è{áF:Â?DµZÀ²oz\‰Ô|éD†#/Ûçì 2ílÀÖ%M¶é@µäAk¾éT_–-Öõ5?—oØ7ò£¥æ‘M?w/’בðQ•ðIBÉÃ[l ,Sä.ó + ÒnᦔÇ&ÏW»/QÛQä'™w ô’ ÅtâC~1dƒ ¸"§Õ¦¤E1*8Ìy/"#†ßJãmn„—=åÍHf½Q¯#ÓÕŒË +ë¢sXS˜˜'Æÿ¶Ðrr=’³ë‘2~Ò±CrôW³Å'”¦ö¤ßÒ°E[ðíîMë L:qxx=¦‡ô„½¬˜ã¿w E‰ÜÅ›wÈÒö1&'Ò…$vo¯j ‹¤è¢ÙMÉ'8%¨bÎþNÈ®ˆ!þÝDZÅW=ôƒ[¬ÌV0ãðjЃº„ÿm@RÏ'Eu`£Ð(›)~%°Å¸0Ì+ç9¦Sàz‚‘v d9î$Kò”“íMŠÅªlìIé7ÌyÁOsÑ£ïíÞÊbÐÇCôÆ IŠ™ë^ºñ¨tãiß™*ûŽ Q…eƒìµûäô{ïR‰lÞ$_=‡â`‚Ÿ¢Í™•6èYü,k¢È¥4çZY„ü…PîÑ?+„o;@Šµ!9ÅGv}ìž:Ö÷¥ã‘íþkröChÚóË }׿Î"”]8Rf+ØÄ¢49h,¶S1·Ÿ[@tË1¾(ð¯LaŃŠSl†ö¦öïw]äQ['AÚàî~Ë~ñkw—çèiIP[êu9YŒ¬w x<û­Ç`déZ£ÃÉÓ Öqð³LO&mAð.?ùÁ.¼0`Î\sìÄü­;|ξ{ÛýŸãêò(õ°A¥2’ÒüÖ’Êô^æÀ ‘ {|w~L;/áÞÌ°á%®²[Qã ½*—$×M®4ûÌ÷h×MÊš††í„˪q;™DªØa®(„˯ã—@B +æúTR6þ¾S©tYÅ×beänE¯êîœ{ìîÎ Š8‘¨$y7GüžæßS„@éÚ³6CWÞä½Ig”3¨ ŸJVY%©’©Se™”t;·NìŸ7íâ’-âb +h—JÄ5LKE\ƒdh|V5K¦œ +j¯¯´ÉêÊVZ‘®´à81dúÁ)-5Q ´Añ•Ã[‚ßPÒØQ?žæKg<“Rö3±©û|du<åŠó„$w_îꮌgfoÏY–nOWÖ}Y!GÚÝ¥)úŸ& Me +endstream +endobj +95 0 obj +<< +/Filter /FlateDecode +/Length 6031 +>> +stream +H‰¼WÛnÜÈ}×Wôã4à¡Øl²I‹b{½Ø…½IlíS’ft±%Ë‘d+úûÔ­¯$e:È. xFÃfwuÕ9§Nþåöþòìøô^ýðÃá_ÕáëãÇ›/÷êÇŸ¿|¡žÔª®ÛÁÿmkÕíùÁáÏïju~wpxdþU+£ŽÎ¶uU[«ŽN•|yP®êáø×W2ÆVvèÕtU×9xçúà£kx¶iô?~=øéèà§7pâ¿á@Ü÷€cð¯×‡¯®kõòæàï‡Ã0_:W›ý§íÏÏõ᛿¼T]ßæ!+Œì#Æj8Ö# •w¯Œðcx©‰!öÍPãè8ÆS=TFmnô¶ÁÏ6}ÕÀÙzÛU½ÚÜiÓVNm*õF7meq¥1øä–X\z£›¦Ô櫶—îuƒ?ßjG>Sº©ñÍ íª1>ß«S½ñÐ[½5ðü>`ãk9 „ Þotgq‡;~ù¢M‡‰…÷ùË…:Ö[Ç‹Ïðõ.‰“ÜNÁîÔ n!Ÿ© ÝXüö: Vµ¸64îóIÝCnj|v‹[:~Vã¢3¼€£O3à GE)ý¯Q$p/ÈP [iC€8ÇŒA +ÞkÒ?Vtõ-§êšNoñÝÆს\Ýë·Øc½`‹:Áì·G•ÁlH] +¤ªîÜN ò}ÀÉÎ…Sþ£[ +cKYujS\àDc%cÔceÓdjHÉ(,Eò“·SŸ4=£„¡Ñ0·”úM üä+¿PïE‚FŽè +h1[1Xp—žÀ¿{pBõ( x§¢ð"½™ÖjÀ–ðÌÌDåßž†oqý)ß3r`’§sú¶n™†¦!j ˜àÏ̵»$‚½¢+Ân7k¡â +¨Ø%¨Ô€ëqìËᶠWC¬©Í¬Ö¸<ÏÀ³ƒu^ŒÀÀ“XB(D¤› 3²Ã»?‚"Ф’Æs… ¶q¦Ž93€5Mqõ•6ï²" ÈŠã!«~YI»(¡+±ÔçXÏcÉ B5úı#ql7…Ö膒óLE‚féÒwŠ[!8­‘bp TœÎ_‹¯r‰.4ñµoäQE8©—¸¾½Ô–hðOïð—XFQ¤\0üIQGD\ãM[Ϭ&…êÉ^%çVãÛÕ•ðå‹8rV¤Êæ&!ƒÏ±ˆ¢ˆ-^{$¼tW퓸’u‚ý«µ¨2W´€¨ZÉ÷ Šzí˜ÑuÌ©(Yû°‹Ä¤²ôèAo^­½Ð˜\]§)5׺ªvV¹®O\Ü/tƒœÆ Ü<<4•`Ñ•±iÍ;û§²wq§žé`3ý‹×^„B[‚yFÜSNõë£Sö¢ G Ó6M5Ó{?ñSQÆ;ïå<ääâ,l§˜?Wb¶Å˜ƒ†NYîÃËR}LΓSH[ø^½eö$®ÈoT:Fjˆ-µîZ¢Ê%l%¾†:“aS/µt×ÚÄýÅÀ}Gñ‚áå©/ZìÛK“uøµ–?É m”#>çÓ ›Kø74(¶EOfS÷<Ó„Úc¦ö¦¥,Êß´bFú´ñ' t¯é¥À…˜É‘­ê;Íðñ¬´¢Ñ-mçr…­ÄSGkj±¼\»µà1yû%ð4câ3m„]Œ§ÄBFÕn–ª„ˆ,ÊA²c‡›wÉL6Cæ´!/M±iQáz.sUô¹W·±%ÓnŸu»àYE­hŸñ#WA5 1õØ*^JÂæŸ@‘êlð|§ÍÔÞOW@cô9¤º!gˆù»RŸÂí9‘0¸ô"Í>’®.¼7í rW¯)»¢YBDÝcÒÒ™[â€ÝÿËHà?AŠ.OŒ샹‰îÅ R’ቲ%SÄwÝÆ­JÙìmþX–].:וx³Þl›ãÍ¢Š-Ø°Ú$ÞrÚH4º¹Æ‰AÂÊLÛ † ÁÑÔoRG`ž²í°ÏÄB8´rb’Abð‰6fF8¢Ô$ 'I}T;9lekhîé‚ + Å+„ZÜd]ÞÛe;ßáa:—¥|³ÕGVìÛå«]*gÃ瘖s±[øæ„Žèy’4ïÆ ³Ã”%ÈÆõ;r8Mô©Ù œa I£» 5ðTi¤e(cIÏd–Î*rº!³²..Ïß0,åF­è£¦ÜAÌ}Þ®9ÎÂôäÝ#S1w~™.zrW‡z ì§*b¤%R6¤*[‘ ΄8øvÆM'dØ_$5d0ƒÅ§DáMceæû<ó½YÊ|7 å’Ì!]vÏ ÓâÁè;YÍô5IxÑ94×OÀ%ªOËe–!ÛRT»•Â4Ú<»°õBvÁõ‰âËÌ)Ó G$Ïù(³¬'|:‰¨©uÕ4šüŽZ[þ&?$lÈ*x… eS¯ ŠÑzÔÑúI1½Àã*Ïý¤åR¯KÞ™&n-äsi›%ej‡>iÃ,96øsy¬Œ*Huãa@â7ÂŽ‹’³j¨$Ùê¼l™'e ݾšÅ··V¦¡Ë¶eª­,Zî.ßö;ÊtÖ*â÷ K2Ç ÓärMÔ'>$Ñ“§7sÖwÜi§9ý$A,Lp£h`-1Ù8ùMÆÚ´öÅ;,Yœ¶“vêáaŽ¡KÞº¸®ˆß3µr=¶82™çÚÍ[ôhδº@­±Ldjð ¤gÇþ1™·Z\±ƒ:àO&…oÇÍú;ñ:ÓPžVÕµC7¨Ð8§E›Hu)qFßvN!¢Ï¤ e‚‚' eá×ϱZ²Æ{ žˆîÔûî,u'y!›è¿ Hhö9H4ý˜È·Þï¼SGxTéŽ^28§VþÙÈ@oOmÐ;¯D©E%4¤£#ߧ(øÜ«2yŒ’náã[@.£KNèÊmízÛJpŒëJ9‹ðÀI"À#Kqœ«æLñ6(f1¿1»mJ#¬J¿ØN\ÑN¾o¼øUÛq}3A“ËßkÝ’¨ ¸­ßÄf.­S›™@ÖGÔ›É0q0~ƒÜük½ŸI¢*†-çô¤Y^wXƒÙâí< “Á´¸º.ÐbÝZàsÍOÜÚ¶³žÔ³~ÍĨ*ø7ÞÚË<=úÌÞ.£™»cРÐͺlôFrK¶ÙŸ/ƒ­¡½ß7M£~WE9´ôù0åáôîÉ('ŒO/تT{§&©hSQ]§Mì³$øVdä‰P¾Å§ ´a„™ñåëeŠ&Õ/«nWµpÃ6•Œä†.Kå·o8Ī0&•¾T F߇˜£q~CE˜Š+€CS3;yÔøG/@è¯ÔëMp#¾t=“ñ ¼„˜Á¸±Ó.µx Exϱöi¬™\E¼‰–HT—¢Ù!ÚC“·7çÖ¢¥)t¨àb‡!ñŠ«ÍÅò-Ó–ÀŠ>sÓ§ˆ'soEìÌ(-Ð<:%kñóQEÃ/hÛPwÊu²O°í~|b„‘“]Ðüb÷V¯ h©9Cºþ¦é˜íg*³Ìd½—LL€Ã·˜iˆ(Ϧ”[‹›ªÍt`~מ:Z›JG›hx +à^KMtá•öö?š™ùìEYˆ¢ÍãYõ2é1Ma„Ãʲ½-Íc|Û€:™2c6r‡¢æP V"£[¦Ve¯{hí),6J}ø/ïUÒ#Çm…ïþ<Š€º]$‹µË $‡dø" Íj¸ÇžÌh$+¿>o#ùXKWä¢Öt³Xä{ßû–ûvâ¼wkcÛFå<ßÛ>TF¸'¿›ùûuó&SµûµjÏœ[\¯ö%òi;ñŠy}v£Ú£G±î©­¡¶ˆ þŽ/àÓ%Øb¿5wÅ@oN%ßG¦%:ñäÎQJCe§fVu˜ë}Nb|äÏ68ánÌ¢hü*ùáÅzbõž +*^B0þðéÛúÐîÄr_›ÒØ®a®ΤB»Yœ•ë#L ~š‘žvx( #-òLVY)‰'žËþ +?©S‚ñOš±%¹i]–§œ±|M› þðSiu¢ÉãQÊYà_aæhØÞV3Ñж`A®šïφÜycv”V%¬¨ö0 BÌ^k46SÍÍh„BÏ[lP_-rí3³ƒ"¤šƒë´ 1eªÍŠ¡ËZâ±–×&«M|ç…‚ÆBAYrf&å|¼û#N8àå˜ÕŒå€Ñ³-[k8Ó€öË“É*—¿QQ•fšûjž$–¨EüŒû´Uo$•ìÄŒD…1®á£ñÊØ.ZŠWIܶ•à T,–‚‰Ÿ¾$.Qp|V%y”Û{’ê'ðy&8&<››‡Ö-ÛÚä7SŽ*ÃÏ>ôZÓ§ctšœ…9¢èY¯ cnG©§¸%V‰T™¸¦úühÇ}¶cdœ‚ T¸ k˜ñàŒ|Ñî‚Y—ªØiX/Ê;ð×b +Lv,3ö×´‘¶‹÷)^ÞWj4 ³¤4q-¦D"ÕŠ’³29F¶PüÞmN™©ä{ ,ïÙl‰›öm&›ê.øÒÿãÉÙ«´I|ó|r!£K•.k§*Z¬ákhÉï”-߷ʸŸ!v6ì€W˜¾vžÙŸ'JļYÞÃdr–•ÜEm·>™ ÝÅú$ñn-Ûô‚·×° õ”ûQÛè±rIkúU`¢K¶mê=‹gÚÓølñŠ×ÿ r+ª.®€§D…œfÜò¥wb1ÔXÖB¤ïeè‹œßr„âÇz⧠qB¬…ëdžYï‹é™¼BI†z¼(÷²ôòÕH +‚¤05ƒJ–ùh>¼±°ÿŸ­’iàžP.ilòyoL•eám3àO)z‹ª Î,À+â-om§óK)Ì_Q F,̤@Øë´²ÛÑF"g#eÞf/nÚ ‡­â¦í*ë-è|g”MŽÙe›‚ûΔ¢ªCØ®C‡uè–Ì™|Ô÷Xš~U ãD ó¸Çe5¬¡ÿ“í|‹ú%•šÝñO©€¬†AÔ0|“š¿Û6ð¼îDI<ü›.vBÞv?×Uèsíª‚‚×(Æ~Õü`ÿ=á僅¾dF>`Àù™ÑXÜZnXe&ì{³„™ï_ êø€`1elŒn3Ÿÿý7sPªgãÀ±H™ÿ§ø¨`ñ§œû­ä¸sýÄÁ¯Û+°<ÅÁ+ †9¢Ù,ù¦L' ”§åÊQÕI«&?stÍsb£^é~v&Îk‘ì8ÊÍáYÎ}#pÿö‹É§Hت9ÜŽšpâ6V^ƒM²D&ß.èsù–ƒ– £^%KcA¸±¶:I½”mjïDÒ[ª¢ó®œ†´Ž¢ï´ 4̈û4ìa-ž½¬5ª}—ðØ„Êî§Î”Y/ž9Ûïl38 dM¯¤"Fù4B‹…k•Tå7»ÿÆÑ +í«6ío©¬}Оˆ1°ÃÉkϼîä;k¯¿wôýq'ÏËVÈû Í„îØtÁ¸aDãÜsWçÎÑ6 o:óïP T±äv:Í5i‚™ÎùÙyz¸ È8é+KÆ3Ð +¾dÎ!…Ó; g?œ Úµƒ/J¨ÖŽÇ¾òÓIþÃq;9œÿ +ì¿6;®QMËjÒTW(€`t^v‡‚ +%ë÷7|,`ßþ +DìÜÒI?xïíØg ^%µj J¬ô|ª5Ø-2ƒ' xÃþakkÇ2|-~j/¦\ík|¿"]®ÊUÏ$à+´jÆ1*ÌýÕ’5í* ˄9Çß®8pk™‘‹U\qÜrß'‹þ[Äbp拺eÁdH {ïT»Ã‘k0ítä>Ö@u«@ ^Yó¢\\⼌ +â‚Q›#[ÕvÙªr¡.úW2iª¶ºØKüY¥¨¤ &ËÉ¡¶%§„rð÷·l¦ªò‹†2e´K¼@OÙÎUZût#0‹úil Qʉyî‚è„ô²×MSDzíFX`Ì"Ôá‚@æ뫙̖!£²MdZ¡‚ įÓ)OYc'4»I ˆk‚ê”°k–ódf£_ÏÁn Œ‰ÏVHjS?ÆFiDXÞ°ÊÎF'‚2)تðÄ”>¹Gçø3m¡­š¤MÜìYLYv‡Ç­Çjs¨âêP-|}¨¨^Á^ω)TÖ-ñkj9£|“ Wx}sx÷cb_q$ñá߶ æéî»ïÿrј»çï¾ïþ 4ïo…Gñ&Õüͱë{oâ%oá?„Tð8vz?%+nFkÄ÷|`¸"UŠ›w5 £Ã•‡R݇t=çßWÖ\vJ˜u…8;¡:2?XŸžÍ¸ï™Ç“¸rD"¸LÊ߭§–°ÊØùé  !«{ñq?Á1éO×1ôxO¢w8‡éÂë½TG ÎzÈ…~Ä÷UÕìù»—Qr ]”„žŠ/w{âàPj,{ l#Gv‘—øÑIÎ’Í© Wò-̇Óåñ=ÓŽTý‹¥@SÚƒ¥¾ÏUš„Ÿš×“·ðƒìþH¥Ç­Jƒ/¾Ë'õAéE¾~ĤÙêã`§‚¹×Ýt…¥šÐ×DÂŽ¸#¿Áçà Õh9xqfgÍÝZÍG³ØDýYs¸õ¦~£‘í8ªÉØl)Eöøy‡Eq¨ÒDýn±]T¦J+:V7~ð d›H¹ÌZ€q^ßÂNüäã”Å—Ûa2 +Á0ЄÉ†DE Ì‚™“¼ B¸’ÚÿÊA +[õï5Hx7¯ˆâhœÈ‚Ò¸–ƒ+Ÿ p9ò3Ì™|)!"­‘jcEJpFÁî˜ø?žÁyv²×§o˜í!7>d­JⓧƎ‚íÛ^ŽÆFº}öòIëÎüW€0Eô! +endstream +endobj +96 0 obj +<< +/Filter /FlateDecode +/Length 5814 +>> +stream +H‰œWÙn7}×WðQ ø^5—Þ€ ÀØŠƒ œ™L¬yšÚ%[²-V”¯ŸÚH{‘ZëÞ¾l²XuêœS{»½¿<;<¾7ß}·÷O³÷áðéëýùþû·ûïÌÎÛƒÚÔ[çø?onÏwö~üX›ó»½û[m¬98ÛÙÔÛ–ùðhÚmïÀ¿nÛ˜0Ø£mŒk¶MÓÂ;×;ÿÙµU ¿íúêßùá`營áÄßá@Ü÷€cðÛ‡½÷×µÙÿºó¯½_0̇_ÎÍîé—Ío«½Ÿßý´oZÊ Föcµë„J»c¼¶Ç#¬åµÖô „>Ó¹~; CË1^UÖn{8¬ê¶ÖìžW­Ù=¬6ð¾]™ÃÊÕÛÎìžTÎã²oô\ê>Ô[X|Wm\{Z9üsk¾VaëÍîsKz\{Qµt„Á—`³ëÊ‹7¯à!mhÃv0»ÇÕ†N„“[Üvqt, Ýâþø~¿3‡pTÀƒƒà'~ûŠ7ìÒS¼ÃÀá9ü~oRéJ|}>šqnðPKÎÍuµ ¸æ°òwy2˜Êž¯ñÉ·ÊÓ¹§æ¬âœ¥H$5-§fÀ5*r}IÜÓuñÂ.ž‰&ï¼âXdÄe¬5Ö +…¡ßÖíà +ínªƒO+ömõ¾ÛÚù„º„Ðk¹Û)æ·Ã[;º äpÀ<¿ÌNƒoœ™}\ ™ÛÇAõ~…¼ÃoAeÓâ!Çü5žy‡Õ.ÀŸ;Ø÷)JBî1ë.ౕ¥Þ:Á€'hj±~RôG춦ڶ&h˜—F0:§'VƒßQ=þ~c1yžàE÷¼3']qUnËŠÛ vt-¡Oг-·¡XNÌÆN€—ig¢6ÿÆCá^ÿ0+qØ)¼¥¹ÀÔÐÃÐ0`>Rs•Zü{ùì>P؉ 2tZ ý&Ãç´m [ƒª*w’Ŧ”jhnyJò§T%¹K¼šI©#DÚ-Ÿ:Ý¢¼ìþ)i~™­ç¨Šìù^ào´¢qšÿ>â/v®£¸ÆŠ^_^|Wõ¸öAtS ¸ü¦"ºÔdìp½ºÉ¤+¦2íß•HêGHª‡y$µ=\&QÏ3äàGä d€A$Rw=FàDi®Šp¯zû5=Ÿ ÛÎV:Q—„|(S,¡ú:©¯Ÿ©/¶3LÒS +uÔ¨wJè5¨±ßÍÊ⨰w²!m©Ù‘¶–È_Ép%t†b¨a³R C=†ä¹µ+É…>‚ä ˜©¯¯7C¥å¡â–†œ¤\R¬¯Ôè1#±“”ý£+X`ìùq|=…¸ðHÚ(™­®QúIó S¨Eã8fãc@†Ó¬ïä¬A œ6)7ýi]¢Im¯Q46Ô¿CÛ¨Mm˜ÛÓgÕˆÅl»’ƒË©]@\Ó© á=2F„\K,’„Êä†ôvTª˜š¢¥ØU_Ní…¡ä _ÀC8 ü…"Ì ã3*ßÜ&ÀøŒ¹'(\%äeŽkµ©I=5žëŠù.íŽæ+† VP·Lù"ÑI@Ya£'`°¼1Êf6NÍOÒ€çç8 +BìýѸÊã ¶UCoتõ¸Î®Å†[f¹‹à•-O{ÀÕH”ýåÐéâñœ”Ê÷3ç–ê×–õëFõsX?¨tîÙZh-Çr¯j¯Ò°w`³zälÇ"L(.§£¶Ûºñ–ÓÑTÌÃ[ÄìóÓ5Wý»¼£*#4.ùéqE)¡@ïÅ>ÈOp'ÆŽgM„» +ˆù¦ûûkMOÅej¾ v¾[°? |¾éùNãÊ.)¢)êâ ÂCFVµšv-ìrFãl¯% àîÇX@Ò±Ô5„¢?ªMǪ-¦þºƒ¬ÓÅ„Çé`‚ØÑiæôtzSúWãH‡nѹqf(eI"|™ÈŽ¥Y•îh!jf„H¦¼D™\ñì 'Ì(G>™qnK­‚’´…ØÒ•Ç,·F¦†-ì<Ô,A'S ˜y¦pKtJ<9pœÒðJáðJbÈ"œ˜ªÎ"ɤ9ùhCÓÍhLû-TËS¯×v{,åͼ§…ª¨ ¯õîü־Ħ†Gôø ÓáÔGl19§ü4öç¤îMþ6Ï/™*Ì7Œh‘¼–9w%|Ú±ëð ×Q'½6µäžþ>š * ¼Á™pÖR8Í-Ú­‘ÿœñ„Éìøy8/;QÈq#=_འ+î°ªB%gI¸¤`–ÎçÇ/bÅOÒŒÑ6¤IQØ䌕’–Sµa„]È Uؘäadt=â )0JGºœÏ…£_‹­îe×Òhœ«4&³=u~¾p~÷1³ÉŽ•e„ ‘­À×bµYí?ú’k¡Å¥l bhÛÆ4Hí¾éøVà-ˆÆ]7‰Qæ9IlºWþ…ú)cW˜2"•™Å¤Ä1bYƒ#R“°•\‘E±¯5k›)÷ÝÈŽ·q°Ý,îÙÈéç<,¾™qè넺 õ\ŸÎ u2"pÛFI¢Ðad9×W°3W[‹‘¡ÀHí¦¸Â "¯åSHå$·-|p£´1Y°)¼q§]A ‰&G=ñ_眓¯íeœŒÖ¿0zÁh·DÕCIÕš(9¾h^&JV:b=Ç>V÷;ìG†œZíWÆEü8͘ÄØÉòÈ!‡Ü`G¬EB.°òd+(ŽÀä–â+“Á²³î³Äp–oj‚³•hkêm@æóh«k´m¶DO&¦òRM‰5(\ÀÃEey<¿Ã`šð\–¬Ò(/¡¬‚¼Ã¹­Õ|´ÄRõVN<àÑ$¾áŠdmô#m–†q2‰žM÷¥3uduµ”©óg†ÉJfO·Àž¶dOäNÕMû~Y‰»,Çaè·u;¸(0+|Z±¯+1Ø,L¯¡oÑA +ËNŠ>t‡63¾0OWŒ€ž×6ªåŸ#8V’Ôò1'øs²ù\WO;ä}í § 4µ^ËÍ°ˆD¬ÉzµH|¸ÍŸ"\èëâ”ä=¹G§Úå&ëŸÌ’çDÁ Zú‹´<áË*9ÃÉhÏþÂ8+Lè&50$ä„òu°ô+`©±³–a4Ù4 °ì,:P¥n­^«?ÂQ£ Óÿƒôv²èbæÌŠž>Œšì6Vd´¤—4øh’03€»Hâèibȇ<Ž £ Ž9oC  šjÒ¨!Ý#ºÇþM^WÓƒX+ʆhý¤é07Ó ê3ÄSëÆ¥G`züRJµvBFiÌ:§ i71}e¨bædsƒÚQXòuèmÖ WAl-zÛ’TÁŒÍ£·éÔ¤qà ”›œ¦Uq'˜¶=ènþ›XMy>3Nõ…ËÌÞÐK[8é Ÿ®3ϳè-ºX_'vB(žÏ~ ¼Y¥ŒS›Dß¿f q¦#Ò³µRO‡¿•…îFt‚|rläãÝÂêð'šàMh¡³†ž‹oݺê÷%ªèœ1¼‡îó]?€¤DÄèWìxš¤CÚÜvŽçÐ.‹ß8aib”"y‡Ý׌-j4“·Ær"T±qݶW\Ã$Gι‰BUK4ëJ6ŒJÚ…& +^ÍbÙŒR´ç2jEp–¶DêÈð½È&S¼ô¨%ÉH“ ¦8ñzZõè—JÒ.üEMÉÌ@2kò:5yw~;^=}pÙÑMµÔã‹wtó)eŸ™%æúO}™ÍgH Cæ*@µõ2Ù',¹AMZé ë#<‹]¤ã¼BL¡™̬ZÄ'æLžä[<ç|&þsÒy=–±Ó€U= +½õH籦Jî¯ÈªŸN Cšy"¡XrÓç‘@”0уªz–È̦!fb +…p Lᚘ_T$+“â2´r’Ós”&8Hí:Äd\ “bÐÚZ¿¤Ý¶QÑj},ÖgžN+ +ŽËÓî+†çvÎ+¦N?ÃíãË>g’NP4´ÁÄb‚±QHS +7/Ô§V³Ql¼ìcè¦/±}ÇH˜¸ßdd¬–) ¢ŽŒ·|=ŒÄ— ÈGg¬®iï4ä­Ã‹[ã!XVzÈÖ—8 a‡u­& <‡$‡d~©|gÞDUnÜå¸I|pƒâéƾ™ñðÙHxÆÍžE´!ºCt7<”§µ„JÞÙù zO³SêþÖ«¥Çq ßó+x\mG¤DJ:g6ÁXìä¸ÀbÜé`íé†Ý=ɯßz‘,R’[äÒnÛ2U_}°‰f²êWzáD/FÑ 1_WÃ%ÅèE1FRŒ93ÅAa[U|‰«•š N™*ŠfÜ@[èü œ:H| |ή×in“˜,¿‰¬ù%Y;&ð±—ÊžŠè(”t$}¾§xe°s~¥z~T6b•éº¥ ¬OziØì¿àeºr]ÎY.û|%Þ/ñš¥—†;«”hµéä\pj1)l¹q³¿ŸÖäº [>Êå÷ŒìPÖ7¬Á³ï•øƤ¼&ŒRÍx~Ùµˆš#"©]VRöÜU‰„´|ù‡ ñ¯v|K–¦–†ýò\éÖvƧR6ºa¥šxðTÍyËIS&ƒìÿ)®’ò½Ój‚ ¨ƒà°+/ÉÎ +2Yaädb?Ó¡0Ó!¿\6Õq¸’·Üg n*Š¸Ñ ¶âˆ°ÒŸÖ* »¢››Ôí­aR|DçŒcŠ0Eª(5-D©2He$Ì¢T(T`cÉ]I~¥4n”>mŒiaYµJ¸"šÎPƘ{f×À—Rw–Å ¨ ¼~ƒºCݘï(Ì)ï‚CCM5ÛêÜm€¶.òVhkÇ +åiÝŠþ¹¡Sú·Ä‹1…ëNúptßKÝ)R¾"¼À!ˆ +¸‚i¸ÚHÕö'“!ø%Z{z}nèé…˜:$Ä^ÆŠXüÕÆŽT®Ö®¤%Î,KàJVñeVçæ[gaXÓq©kª®r˜9e/NY ,¸À1õ¦§Þð?@Ct„ìRÀך³sÖ›Ø%æÀáʾšcr:ÑZÛÊQF®›‡:Á +…O•¥4Ïín;;zб²ÍD¶toþßÓ ¾lÅOiìÛÖ­àŒgPƒ·Ö2òãBZLrDi7XÈŽIŒ +y/² Q¹5…eš–í…heÈ5 úLç©ø:mžqû Ù92…zˆ8 C0*Ý,à­[¤sˆ„›µRæŠ +OW7Šàš¡ôú€[çN¯ÛÐ3¬ëA?û6L®€ÎV=+=€‚-î·àuÈ(‡Ylc"£žQÆv%Vå·*s ÇŸ…¿´‰Oq‹Á éè“7Ñð,îÙ-ÉþU¡Å³?‰<(ÃÍPä±mNMîK´,•,®g *6’tÒ# ¢›ƒ†1?éÓÙ»€&ï¤}M´ñÛð8mÁ£ÂÌF<ŽmÇ•lä€}ÎFk>Œã°´`f.Qd ²c$ „'âÆkU‹ KÏÀêH¬}Œ.1ÓIO™Ä2³šøT„YâF†˜ä- s¯jô¼k>ùçÆu +ÀìxX_ÉKøK!ó\‰ù%yX‡eÆ‹LHÊã°[Aquø]5uÄðàGÓãá¶{| ðiÛZ<Úuô&€µNà¤hÿj:ºä\K±•l®ë¨Ê­©èÜ„Œ£x}«j›™3®%.‰‚ÅOŸï§“¿w\A +Qqï8“<•k›Ðbg4™samè‘ýÆ—9µí+±í°lÆB†»>r›ÿ‰ ¥S'‹ýÔÀ…Fxx.š`9@*g"oìœÇ+ƒ¨Ïœ ïMÖ Úo~'Ør”‚jgØQ-د¥9Þ¹a?J<©UN[Têì_ØÂ{­yɈ2± ^tPEÚQí.¼B¬ÂUß/haÃ\ÅŒ¦ùLâÍïp€ÈðûÔmXé6h™ÆÉV-ë+-s~™jìÐ)ËŸ rdô®G„Í„*²º+ˆœ¦l‡> +$Ö8Å'iíŽmYÎa•ùË4+¬hVÑáè&uìñ1öàp™wL>¦Uíˆçr ù${w4JMê^Ö'ö~¥hò÷œ”×ðlÏ| ‹ÉÍ6u)T°¾àœÓšŒiš¬ˆöòúž-gàó“2öª7™'j/#¾=×æKí •¿Œ¸¬¬ýÑœ•K¶ +ÊC©´Ô¦< 3ˆˆpâ¯B[Nm§Œ¼N2æð˜šb´÷&õ=ÅÔÂ…YšÝ5wØ–FÖD>ð‹YztG'|R|;²˜óð‹qj!+<¤‡ãâ4CYßëUr,7[ñJµm§¢ë½2í¥:¡½1XAòŽ2䉕„|`l{¶ûŸ¢J)‘#DbÓ;‡š'@ì9ÁÉïE¡YKä­LÂÛÂœÊÚ²T +´)‹$Zâ{}–,–bC$ÜU¡†Â|ÂpØY^!!ðL˜Ag¡øÃeµ +p§TDßjІ:è´ÞùçÍ€÷³á‡ÿë'4ãcûq?N#‡JÛmSâ±Tø[;Öjì[¸GÎB£ôo7ØôÐû§˜Š)Õ–‡”7ŠXç/sÁËüÉù©4wQ×mMp³ÊÔ͸J^)ïÏÌÆ %9c¤ r"«I[?JRaÞšÎË”IàoþGs„Щ8‰/)|øPÝÏ_ÅõF¡í&OÂÎÙ‰3Ò©å­á@ôX Û’¥>ܯÓäÝýîÃß#¦¶€a‹‚¿}ß™óç~üåck>_~øñWû_ð›æמ‹8„ä#ÂK0ÔakÚ `–¼ï0°Ä|¶³ìÑø´¨ÐQóáÿå¿gЫžZ:rKù^HÅKÅ$œG†*\nä§qÑü/~èëeç+óaZ‘üÐE}:#4á(­å~ŸÂÚAnò óHO¶ü>DÖå]v¬qáX‡îCï6¶ÆÖ Ñ®×Ûƒ¹Mõ¾kx>k8äÁ q²RŠƒ'CбÉ3ß¡œ‡–¦÷Ä…~âOl•£a=bi:zßâû?p Èóžäç€PRÆâsâÁˆ“îZ®;4;W¨ËÚ.ðV·x02Ö1‘óŠ_DLq0¨A¨Œˆ”Çfà\´ ;n,°SÖeõ´ªxë²®3j¹h·²hîU7¨Ù¸m#Œožnˆ”@.*4±ÊbÑ¡gVâH+åF2Þü"uCrs“85zþ5¶çe½„ ±í¸ÞTÕ¯ø#\Ôœå{l5L(ob+å9ŠOG1n ]É8‚¼Í›äIŒœæŒYçhâž¿7¼jï˜Ç)bM·_>'ÞàÍOQÔåJ&âDu’7 æPƒúG> ®``c'Ã{EwSPC·M,ÙÁ¬[¬O,ú¨†&5E]ÀO¨|ûL]ŒØ&ó*éàðÄÓû`¾r sGáÔVF(•-èÉÐØÚÏþ_€Jlq +endstream +endobj +97 0 obj +<< +/Filter /FlateDecode +/Length 5405 +>> +stream +H‰¼WYo7~ׯàãð´šd“Ý ì8 ²H°—Þ6‹…Ž‘ìزI±¢ýõ[bRÛ0,i¦›,¿úŽã—·÷o/OÏïÕ7ßÿUÿ|úxóǽúöÛW¯¿SG¯NŽZÕ6Öyø¿ëœº½::þñŸ­ºº;:>1ÿi•Q'—Gû¶iá‘“syP¡éáø×7^ã7øAYßxàë£éôÉoGߟ}ÿ ìô;l„ïã»°<þõóñ×­z}sô÷£ã¿ay?Ÿ~¸R»Ã‡ý¯ôñ/ßýôZ…±¯KUXÑ;¬Ñp'±DZëlna ?kJm½šq÷¯Ý¯Öím3¨ÝGÝ5FínôÞ7Víî´i›^íÞj§v÷zoÛ&àfh:µû¤Á¿Útø,eÕ[½7^íÞW?à øÿ\ïGÜ /¨Násܾ о¥-öÆðó" ¾zÀj¡Ê;u­÷Tÿ©vëTgõ`%¸Çðù?pë·\A‡ïäÕp­@=p¸í%n‹/í }þžÎ ¯_ªø|t§Áb ž:ÛáŽmqí[*KñøÆé³UlŒÁò\âFS£iKŽX,œß‹mV7ºÇ×?ê‘/•Þ„Òz*ÂXü7µ¸vÈrF¬nC§õ¿Oþ’½ÙAB¶iý* ¡§}dîâíÂø¸DäüpÜP¨ˆ~¹Ð–úò‚®`ÀS} V\¨SÞîñ„³KQ·¹A›+ å¡ePÝCß;¼ñ‚¥¡EÃÍ´áˆmuOÅAýoà#®~‰ùúao—m3¤â í Íî¿ñèËò*ó–@Ûz\òjŠi½§y~É|-[‘0V䵂‚¶mü8zFÁ¼WP6]Ôû Gúþ“†ùvÜ©xLø{¸¬#àÆ!Ú†þ8i:Ñßæ>4›åVð6¾ŸÌ…¦ N…º™ÑýR[šY€,ÑÏ"Û¯‘¬hzæ ˆH6Wzº¦ã½ˆ@óÜsM~T,Y*a˜ç{lÙT¸Xžˆõ©!wÀ,qb&4èW ô¶1(Eq’~:G žÐ1Sä£;ÓƒAÏìœAÞÇyyTWøæ(ßL;À=¸–Uã» VåEVÀ$GÓŠÒ×E¼†DÖm$÷^»˜ÖÚd ó\©ÙVs¶Xú§ŠSQ[’ ¯JÍ´½°•ý,õ©3íXÒE.Û +[C¦[SÎà{aåÓ¦Æô“ˆlÁ& ›»@Ãs~w·'Ö êËöº‹kÎyõ†áü;S³z©÷‹Uæˤ e¬ãLdW[oTñLÄNOð,ðŽUOÅ&€g)Dwè#Dá6¢‚zÁÉâ ®* ZÅ5ã„4¡EÀ’Ú·.¶ŠèŒpàRE>Y_·ëRÀ°k¨ìœðs¿ëÀ6l›ðÔ˜É S¢ÍÑ„ï _í>zõ=ëÅÄ®DEKlõPe›°‚²¨7µB“ ùºLŒ«Ü*gî*HuKÆ-éòø—«›vÝ¢³]°ˆSŸþëN‹'µì:\‹½ˆÍ°yÚ-Qó#Ú”Ú÷Ugål§¯™ ÄqC°qƒ™O-ùÎGö„w:`êÔJ·žÙʉªÆi qâGo4qÅYT:N™¾°tl{éGZ-Eýr¢ùïxÅЧ Õ7%qIÔps—û…¾D^‹8îÐ/ ,”’ W@ÑÖý¸`ù‰ ò"Ð'pKBTkÇ¢½¡ú®ÏrÚúÌèзaÂ:ÝÔfgÄÀÂn®…#îv 7íªd3.g1øú •lÀ†i{À!sQ‰dYF‚©M2ALƒŒK©+“8 Ncgkï.@ý©âÃIÖ˜œeOŸLÂÓiÙn€M[û+èÉ +Îz+A¤>dH>$Ôf(rmÞì6bð4™¾K¼²‘õ6 +!”3 ‹BQ[Œ¬i÷Ù…ª3ƒí{²IBÄËW†ºù'–ân¢h^ìíÌÉ<Ãé¨eãbŽX H¢áfj¸ k‘Ðûí|„[¶Šò¦nø‘75;×jŽbê“í&z#¬’ãµsª+ozŽ¸÷9µ›Ê­K‡ü»Ñ*›¬‰sDð£*G†ÙÈÆxâ…jÚŠ¦ãÌ΄›.%s[ì[4²ÍF¬Ø‰z°aç*þò P]‡ëFÛ˜¢¯dƒe½5Ý&Á…÷'‚kãfcWC´A*}è'Uê$­ðÁ+~L=Û:]í%pwÓ®¥ßu˜^zÞ½À?EYIÒ6ºáß(NF@MÔX}†YÄƤ:A‰úƒã[ÌfžŽâ—¶þ‰ˆà«€°n:H{?à7›R…ÓQÚ±µ«ï«3ÙX1)‚ʆäžø9ý¸¥ýÆȉrb±ç–%)Íž)¼&yä©y[¯·Â¯[Ì‚( ‘‡…à–ÜpʧšÌðè7©òGÛfkGa“¥±ìŽ>ת˸X¥j†‰—3ËÿÛ©J¿Ÿ†V…s/R$ŽÉ À~‹z†ˆ<)Íç“fëå„JÏÌ„+Œ Mœòèùòõ¼Ä!í1ó- +„MâZ‹šË©EBm±l!¹‘‹’“,9¸GM×ô yøÞ¤f*é¥?Çô°£ z§]té‘ÿ-áë…ÊógCœ¹º )ꉡ! +È™Ø/4ñ7Ÿ¥­Û.·ßîäÕn wf˜hókc ɱ˜î¯æíŠi‡ßRh™‘>ë;S°`”=ÛVê6‰»ë{SÊBÁQ!™uª.°ÐäNb(Ho1‹`â†#W«’CΉ˻ھ‘i|ŸtiÁ¤€¦”u¦ '¯ÀQ64ienãÔ ¹ÊôDˆ3eG•W9ˆp7Ú†Êq *p6¢ÒÖIÐص$Ø ½ð=çiºê¼Õo‰#íO¶,³•¥7/›:ü™pò ³ñ.F'z ºŒç$¢äS´6 –™¾²ã®ø÷Öàt¬[ïísC!ÈÔÛQ›®˜óJªØ•¥ò«y¬m(µ“ ç'>Öá>ívºwèc³s™Êм?å2™º”°]©ØhnLWž¶øZ·­±LŽ ÒWt°±;E ¹5ÜꬭÚã\Xk…±{Àµ½Fà »ÿ(ˆ1•1yª”¼|$ë.s™‘·yÇMÌýŽÊZÞ"W­d h¢FòxBÀ1ˆÙ¥˜H­ÃŸ[»åênuv­[ŠŠÏ*æGLD“€²ÎM¸~—Ö(LjͲiÕæêƒßjÓ ±¸EF܃¸©ÝsÄ« -{Úm}ì6H‡ìáVéð[‡`+ýÌ»ŽÃTâ½$è’ÏfïÀCJ^œxZ)1¸d±çôÑ/¦^^$^ôÀ^uO,/åéÐA>û|Ûî¨N-´o¥— š^ô’óª#Sï¢Áúj¾i RJâ¦)¬pFËŽfBŸÔ—Â,Y’‰ +º:ly_¢ÙÏ\ŸMÇrkïúºw_ë]k…虦*%Ÿi¥búúÚÓn¡:kÄø‹ØþÛH-›)†_¾Vx)¼P…? Êü?/ÑÇp(!2(™"±ußØÜ¡jîèVzë†A(Ö“óê«y i^;9¯·ˆWò„ÁÉ-å6ò²µ÷ô‹¨o¨'DŸ)Vf€Ú˜ŠxO´Id#÷flƯi“ÆÿÑ^.½mKÞûWôÒ˜ôôô<÷v‚,²‰½4X/*°D+”Áùõ©WwU÷ÌÙ\ßPä<ªOó\±ã´Ý0I“í™ß"õ”VÄ=Z«Ìb‹BÒVF så"Êjrÿãr|Ri¦¼,ü sª ¨ðe@}vžu±Ú²§Çµ?sÀ+7ËkÖé’]E:ÂûÒ1 ·äÖ§—G>bX­Õ I ÇçJJ=ÆK$³Rã&¢„«¾Ò†v|ÐÓß í¦=}95¦§Òú6¼cþýŽ‹ÓKÕPò²eô†¡O™`úó¢bÛ™?ŒŠóq©×lÓ‹ßÀŒV+™1Ø´$¿¶Ëð&@‚Cs÷ƒóÈ`× ØÀnŽL:˜º`2a³ŠL3e£C/d·Häׯ¨1eº-š>µUc‘›U ×ØÚGCÞ°ê¦ 'ú}Ýà™œ~Á±øìöeŠOݲ[u8}áÈ4|æ ²xøê`}µÌ–™ÏF´ÏQ ½*–)o\­þŸ‹÷yÇÈ%Y™ à|Ž?ù鎥ïÿ‡²¨BKí¤¯{J¤8šPÈ23Òª¼vC‡ô.~òÇVqdµqï…V"†´„~Üf»«sº4¸ä¼Þ–tó!ë69¸>8wDÙöI³vºBè3ëwI`b +BE1ƒÈ„Ô›vÓ~Ž¥9¶Vé‹Áó¹-s² +í$™ªs²¯n¤aÄo¤/7:ƒî 8DxÜñV,‘D–õRúáÛõøo/O `¶w›8§œ“ÚUOëkCÑ)¸¹Üjß»ˆ“\³0œ3Ë*×^®2Ï|³'ÔAS:ꉫGÇúÌ8¯FH×}¾,ð³ÎbÔÂ×C8ó™Sß>^©‰44½¾­EðÁa•Çæ*o2ö‘ûE&³³ß¦›¶Îͧk×tÓö†¯?IÔ¥Íí¤O6âáÑ+g1À3ˆ`®ïDÁðBãö2îÏ÷÷ª¡#IAƒø»Ü„@ÈâSï¹èÝ H¥_ºk¶¦ôMŒ£îb¤ÃÑNØ w =R¢µ­°EÙyXçQÍa&¬/@{…^ìkŒñGz¸‹Š5üAsÖìÆ%’dS¤Õ'ýÀÔÜ('_°Õ*’7pdŠä^aßYÐàͲ‘"h}ld‘AÒѻձ ±¸Ü=ÚÇÈ‘³++¤6¤× Õ>àÑÑ”ÁÄ!Ðe·¥E%Åt+vJ–5'–ûJ@5»›‰ö[ò>0¯s1Íd ’šúYµ™;Šé‹¤µ4q£ë6½4[˜ÊHe#Sµ!·5`¬Â*â/hÀÔÁèX¢!MnÒnŠ±‘"¢(°)@†>÷L«-Ó*²ê“¨ì”"™Îäš%¢{½k9Œ8±u+ºþ#žx•Þ#˜›¡t.ùå‚EGs4çûÕ½à©qýÀÈkçNú¨ßm‘â 8,:–ÒSfÎušcŸð¼lÅ/ªÏJ@ÆŸnõ±¶ô±iM@uÈ ÜôºN¨¡4b›x˜Ù°ÅR«ºª&>âVPò¡â—^&zys6ôðÚ1ò” Ÿz5ŒtX¸æðl¯h…! ©ö&e*ŸBb*½ø‚﫬°ž¬å£™z3±e‰œˆ b9¡¬%á \zHœ6y©ŒÈl…} ±¾Âõ(ÿ9©%Êà÷Óv¢o»Ü†nE~œèV nyBzÑŸ$hžŽ³ý8  lc ôo,"Œ±ø÷¶`¯Þ^ŽdʻԘnágÙ +ªñ~÷º³â£ì÷Kœ¯>á JKÙ²‘¦G‰ßO{[Ñ•£.$ÙÓodæ,ËÄJ÷[éKl¶æò‘õ9 ~04–ʳM>ý†dµÒÙš¬ƒ¹î’‡Îô“ž"8•øWô=é )²%¤áã‚÷¬1{Ìä%K–ò5- Š£øêµý”÷ôïHÕ€­rïÖ÷æv÷ácšÐ˜MR8tð¿-0Ééðæý¯Ÿjwx~óþ³ÿÆæ>ß½!ئ9"ë@Ö4®máýƒ—þòŸÑ½…¢ÛÀ“}©0s'ÏÀã‰r;b ñ™›—Òw¼•»4ñê5Ž¾ÆŽ +?ox×IÍGÈ—]Í~É›óƒôK~ÏÛèúG'?=a.´â$bþþ±â¾ó³ÅÞËÊ7ÀËbíá©ŸàˆÝŸÇj8ÛeóÁOVšv¨¼fúl¬oÝšÞ³‹võÚEå¤ “ëtRú¾e7.~pâ8yŒ9DãÃ×n&ö ž|Åiü¥¦¹×³ÑCƒÓæú 4vWÕŒÛù}‹ñëmù¸’LF–…§Íy¨8MxBLVEéâS®-¶àt”Û«óksa¿ë²Én=¬¦Ä6àþk'ÿ,páü ¨uÓžîoa§ð]Á5˜§wž[eöñqOœï +OøW€ÚylF +endstream +endobj +98 0 obj +<< +/Filter /FlateDecode +/Length 5658 +>> +stream +H‰¬WÙnÜÈ}ﯨÇ.ÀÍf‘¬"i¼LŒ ìd2n ƒÀÐÒ’e[KZ’5Ê×çnµq‘é  f³k½÷ÜsÎݾ:Ü]œÜ©/¶WÛ÷G×÷wêåË×oߨÕëݪTeQÕþ7M­ç«í»¥:¿]mwæS©ŒÚ­6eQÖÚ(yxP®haüµ…UMßUeªla­ƒ9—«µ±z÷eõËnõËØéß°Îǹ°<~{¿ýËe©Þ^¯þ±Úþ†Ç{tu®Öû«Í»×zûáͯoUkëä¨ÛÝN×2ŽN…³õjáµ…8Äk§+STj]¨·º6…Skø´E£Ö¿«#½1uÑ«õ•®Jtª®µiñé MUtj}®)ŒZ'C7†¦_ÀC…oþ£+œ±‡—8Ñ›§ô¦‹ááR‡kÂÈ‚¶~®ntݵZÓô‘nRÕ¸F¶[Ë?Á <ìch̵îq-qÄ-ŽèqJESOuE'Ûë79È)Ž00ìæ9\ÆÓæ£õ”þ×î¯!‘ó©jrTaVÔW„“A8r\E3ü›‰+]Ñ—€'ÊØ[]9<ä©Äsýaâ  LpãðB'üu¯7¿ÞbÜ}ZœÞ«[Mã?ã Ça¦¤~Ãè‡:Ã,[\>[Jþp‰;;Ü#L9P2á·;„ +eâ ž*Ëw iËP` ѪãýöÚâ€3½éñ@SÛó&8 Â+ÜqR®³¼ë !ÃÒ­LÏù†Ù¯ý.pßÃ%JzàSÅs{€ Z?4u &z{åW0•x$G‰Pâê¼6«Š!ch§soÒÒ -a'Ü_-Ä“Íð”!§é;€S_eÐYoR™_×%ë"³Áz“°„õ‹6À’+Ðb½o¤ž6“Æ ¦É¤ñ0-•;£y†JîVŽß|Öh¸‹°½Bâês ÝùéŸ53ÉDÚzÂUÕâï8@†%Ä8ÜàëË`Îy9—`(T˜ÿ÷~Ì\Öú¬ŽI ïfÒÅa¹š°ZQöÃn%ÓŒRÆ!L%,êRÅ‚aHÎçðtvÙÁCIK\¡ü)Žþ¾($ÚTØû1ÍÄB8¶)‹Yд°jÙŠúì1æ£ÒÄuRs½÷Ò„È©Më‡êWT”6ò©I"ÞK:*„ÍÄÞµìí&÷–@XÓ–1±1MA›!¨cÄà Õ‡Èo8(™#ç†$4˜â·:å¤ üÿ +Ó(…1y¾Ò-Ó`MŠýÅÜEêžR÷´†èµÐc`)),M‡Êê­ó8檡ÈÄÚšVp›…8êôSÖ3Hr°o Ÿ[¼`5(3<æ9½0”ʆ­Ê¨ Sæª& Sè+ƒ¾]kSg öÞ¦t!’]"ShlˆYrÉ9cÆÒLDÆ /º áÙH/õŒm4Ï>ƒÊËHIˆBen…ž]:›d¸Ie¸æú¡ô…‘.tªÎñ“§IȳC”Ýè–ƒaͼÖBÉ3D·R}FMeãfe(Oû¬9·3"÷^ˆ‡l M Èpiy3ºúq,0±•‚¬}Bšû¥2Cy³3†ˆî:mäö=«êSä^Ó…€l™k@È]‡FÉÌž¸ +7Ibyû¨¢,’~ÅK[&œ¡riMÒ#ÍTb\j6cIp¨‡ M0KO5WÞÉñ‹oF3~$J†h·PÃúkóÎ2ms£H T¬‘hzÓ0Cx·°YU®r ©ÓÀ*[tà¬1>Çá\O\I¿•_ùQMª¦ÀNhÚ[–^áÖ›Ãî úN|ö@e$BúôB£ÎBK#ßÞÓb'i<(== ½­ôIz¢6Ñ8¾áÁ» ;ÁaK20äÂÅ Ÿr!:êÓÈ°}8ê“ÞyùIZ¡t‰¦;*: é}eRn¡¬¸ÓÅpÎúóœ”hGjaÇäü$=˜i)œ¶5ndkìØÖÄŒÏ)T˜ã1Ù0¥Úê°¤8mL£ÎéjYÁÅB´4Ç<)pÉEkœU¶í˼csâ™dºKBŸNðk5úµÐ”¤¹ÂÖM*kǽ†¿Î6FlKvÈÉ>Êó…ø¤¡]¡f11‡~tã t‘F^I.0¨ØOm#à ð¸£5Ú&êf×È´qrbœ|ßVçÆ)%ãÙ§±ZÜàVNâ#± >vžlš¾+J×WtÖ½û²`]—ÁÒÌy'ëšÄ|F˜úÀrø«O%”\×õ¤ÌyË<ê_°0yaŒá8ÉÚd‹ò_îÈ !ð^`{Šcó>@ð’4 QÂg¤5¼§ãE“–Hh'=ªa%&º×Ÿ¨Ïq«‘tÍqSƒáí‰rgj»¾GbÐó†BÜÿ2¼¶ ÄÑ–‰¿aɈmª)²¢ïm¦ït¿jÜ•x‡#XMAðà~·Pb9hÅÒ0tI¶;ó ˆ^íÎBŸ{¢°_‘†·è:QCªÐ;ˆ…È!áîÚõxFßÕZ½‚»“¹E ßR`ãwñB¨–ø}/Å6 ¡È6<š–:º:Åq$uÚPD.ÎåájáÝûìî»’¯^ò­MÕO£¢éd›ºå+¿Ájæ›Ó¤ƒúßÒq{{\µÅ…ȼbG¥kª¤ Õh;†ÚD]âøá~ gp§Æg˲ÈÑATäiÉ~M˜¶”lì%l3iÔ÷?¢ß&¶’KäP•ÔJâqL[þ˜7š1 $½1 ÷a/žf¯¢fóÚ“>ñÉŠÜL;ÑaòùãÝÙôÜ`_ã Ñ„·8㈉ulÌ"íyÅÜÎKÕ¹ô½@º¬%cÕáZÏÐd,‹ª¶ð¿iju8_mß},Õùíjû¦ú$õØSx{ÕÃÑlçTcárußat_”eY¿\â#Ú*ÙÖ/–/Ù5Ë–Ìû+úŠW0t…Ý.!Ó¦2m˜V'™Ká!xëô ¬_a¯Ñp~6U<Ãÿ@=Öò˜7O20©¡ŒúÚ Žó\ýsØ>a wŽÔ³’¿qóŽÕŠcmÓÊü‘W±àϳ)6£iUǽBmØAKuÉ-8Ê{]7¹W¡ ¤“j1›6ýÅei &Î}D~KêlY–—Xð4¥ -x;°àU5Ó6 Q€ËwÔ£6&Clä1É<úÜúÿe…CvÙNkDSâþÉ•$Pò~¨¤% BâKY²ž²+Jý˜ÙM'@ÐA(¥'…×ê +bmª©ä.íSÚh®ÀÛ/†Ïts±nN䞎áiðìȨѩŸÉ´ îa¶ï â4³ÞEÙÛ9+w¶´!$æ43y™ü3.f]»t/Wb’X’6_$LZ%™TCì ÝúTÖ;&PW—Ý4®©WHžó¢ò)ñe:?Ù†äõH^l_¦¼]—’TU¨¾’™/ÈŒr£AV€«Ym'Y«Еã÷åuc*ŽÂ|«v )j™'O¯¦$EãËn“¤ØþÓ´o\Û%G¤Â¥ìür¿ÅÏì®äòÄÈàœÔ¸º7‘?ârJ?G].”.g·ðÞ£Âû¬‘G\o²†:´å'íJhq!¹xõ˜/¢X†¼„%ªÝ’Ø Üp¢ª +F3{×-ûFÁr£‹~‚k9ß>r{ h?AÍ]41{üùhR#Èy-vî” áû^e ²×´Òq&?‹œº*™"¸z‘Ê«in¨kÙG°Šæó™Öü£?ïðJ>#T¸R‚~-VØÞaD3ÿ5dE¹$A·¢PæŒò¨¢Q^x-Ž–¿Íϱís:àõÕ–EI³9r9é‰Íöüu w¯‹ÖRš)Óh³H0P‡sL:ci+ü¥œ’£ê)Zwi‘~¥÷4*Óì°¶­MÝâö÷5Î0…÷ƒ“<65Œa­.æ;–Þ•˜&¯éBÕS.Â3½üɦZ]åí;Zq­V@lØÏ7ç1VÙì +&“6H_3{S—½3?ä wÝ:gJkª\ÉÛ-mÅf0¯[_<<™ÔdØ5y!Œ¡Š€| +·…wm+L ø–iZš²Déw¼ceåE4ºcøú½‹7Y¿¹žñ…æøuÒ DÒ–ò˜† —Z&‹7yfdÛòty²LȯÊjë&—Ø“¥¥Ê€ÓæHL^ÓŠVZ‰ê,¸ÖcÒ™@”RÍQˆZjInÙ[EøgTŽAVBegI(D *ÃQèÝ'Ôß‘ß—‡*¦®+!v¯¸›öU˜IKCÍ,zJÚúʱ¨–Žá% °¤&'3;Åà#­sÔ1ð©„;MLIì_MA3pzçÏ&²Ä±ð#•èüå¸Å¬[E0š ±SB%Š¿Ò +î3wU/°Ž}j†Ýänî"Í«*¼)[Vöù2ÊÞ@6…kÁ8Óû­’×ùðñ©·Ø¨ú°%¦Øg%¦¾°÷t’œ; +ûô çT…!Oe†,ï‰@_üœ–Äѽ\çÌS :’TxÄ@È8»°TÓ³ªé売=]È‚´÷&óø`Ri¥w¿:( +·gCßÐ;_â©ÙÎ3¹©W7]Ø0 +±ïÝO¿g(Ä[<Œ©½}p +Ú”}½Ã‹{ó¢ó_ßFõ:4fM™ÉaÜÄ”çúUFCD[#ŒFöG¥ 1"Jg~¼hé{i’N k°v•~›Õ¥‰´õy"Ç$§nø–»ÚZá™6JA²Q~˜)£F¥WÊé£.64‚Õ"ÈšU"8ª±ªqîj,ê&S˜VVÝxdc]µˆ0¶~zÜ…´÷™šR8î‡Ã’?qÛž_¥Â§$èT'hz¬¿” µ2Uà«J’-q#×"×—<•4ö@jTXë +šùÿ‹Ç_AQ~?‡m †œùyźkÏ¢[ÜÔè´«Qè âX‹è`OXæ + ü#Ò¸C™ +ó¾”$!q²H¹ x•'¦ÃãyÁó­=4€µä5ìÉÉ^âÍuÒ¡S}we¬ÀU¡âð7ÎIã˜øn “N¶_M_¯¯î®wÆ-ìÜNDG·UК¾m5CäåU¾Ÿ./'ÎxQo8è"™Í£Î»ìªZTgcAÍøx“ºâ-›â-cÛ±öY¸ .úÂJ£I—a·–â€0”š.ike¨:ÊLè·… ¦$ëË^%>ûEµ˜ÇÎEèÛ"?ï[¯É·ÑλxVèŠ}÷™É©“ì­ÜošªWŒïäñþH4ºæjWßDz˜û¾Emˆÿ†àÍùîÉó¯¾ëÍÝÓç_ºŸ¢LÌõ퓳˜%nÅ0ÆNQä~X@/Ÿ÷}ï¿Ø6BõXÝfÒ-çü.Ô·œÃ±[–,Œº6¿Á,.áúÚÒ +€ Fsý +#&tŠÀ/yÔ{üøôKØa”’³tP(ê·ñdòÿî±ZÞÄÓ@Š šOçEÖ°-½ïÒ`<4ø”`‘þÿºóŽÌ3`ÿú ,8þýØÈϽù¸~>ÁžÖn‡±, 4 ¡Z÷5­ð1ŒóB;¹KJ ¨†ñÿG±Ì#ÜìŸnÈB*øõðJݶ[: v-¶[,³x8'Ïèc:½L(uß> +endobj +100 0 obj +<< +/Filter /FlateDecode +/Length 6537 +>> +stream +H‰´Wi·ý>¿‚§Mo“lö ,­­ØcGÞoF`Ì®öŠöÊÌH«õ¯O<Š}¬:qšÙž&Y¬zõê½£ow‡ë‹íÙA½|yô³:z·}ºÿtP¯^½>~£V¯OV•ªJcü_×Ví.WGo­Ôå~ut¢¯”V'«MUV¦Q'gÊyTMÙÂø×–NimKÛ¹NW:×ÀšÛÕZ7ÅÉ?W߬¾û Nú„ëq-l½;úþ¶RÇ÷«¿¯Ž~ÁðÞmï.ÕúünóöuqôÓ›ŽU§«¸S§ç…)Z_cèQ¡«²QëKx§´j½/tÏKõ¾€Tôp‰bÓà.gE+áOW¶¸Ðhüù ÎŠ¿‡ß->ßhx|´Í üíð@üÿ ÷‚ÓŦÇÍö +cÓ¸ߣHö |Þ«}ÑàIW>ÀûÁ t¢™>±Ÿ:Ña˜[Ÿ¨ø¤èË7óá”,ÇϽzÀk|Ró)>Á˜EÜÖ4x*\ÁP¼œÊZ¤RùWqJLߎ7þÇÉUó¸Ñn2H8ˆ¥Ö®É0±ÞH´Îïkä¾¥Ñvnˆ6ÂíP<(B2c6j¡6*‘åù Îùþ_Šš«à²*hóü†Å—o kñó‰ÞÔwÞc„жÂP_`L ×ú±°~ …DÐ!4Šw>šC1ÄOíÕîèœmõ‡r?ÀU4~p•s\8ÆD(o«vþ‰ÈFàDôL$ò¾Ý¿4Ø) w,õøN-˜}`h²íÚ kµ `u0Ý™€Už¾w °‚ÁtºÛMÄçNôaŸÛq_æÀ΀M±ÿOR(é\b,$SùAT°3ÜZ3(-T·c˜c6ȘC‚¢Ææ²ääæU ç-³n3¨}¤“ðÉž”Rd“7ž‹)½;Õ©øe<JQ0[Žƒ—¨„]E(o|~ ç—:Ç qÁîïÝb¾ÇoZ|!Ý +œ,…`“A°r3#µé;‘ãY>Ùå&¤Æ¶?/l¤ò쀯_!Erý[ŠºM Jö¿ÁÄœf˜¸ä(¹ˆ‚Ûà +÷>Å[!Ë„qi*Ìb—aéOÒŸê§Ú]rš£Æ[—V”uBÑÜÛ.â§Ò¥iaû¼ÈAoìˆÞ;¼>14éklà ø ÞXU—ƒ˜DœAךR ÷,—Gu²“zÌƈí èÏ8Ð0Ç*&³ÜÙ°ÍoT‚p‹.…Â1Iäš/L¨ž6dxBYõ€?´˜a|ÑpŽ«¡æxC:\SÄO€C‹?†&èÄ5L Ú u?Þxª‰jUbÌŸ»WI(r<«Næj!ú0µ‡AÝ H @ÙëjleÆâí²M5ÂÜŒB”-TˆFç +Ñéöt­0$·È5•žõ×] Ä4 }¹#¯úbzòãWØ¡¥uTã;ž4Êáo#TÀŽiøSÁªJ9Åšl§ÐÃ0¢î*¦AÞkisÆ*ÄMá)JŒn´GšÇAWJ©ƒ45¼Ÿ¶¼ÎÜl↞Msì«bjú0Ö½ªÌàñ<ã}ƽŸ‡§¼U\™eÈ5 lDÖRÐÚêœùµ¶&š;_-ª + 7)å› ífϺÌãƸò™ë§L"&-]É°ÐfPå/W‹Äwz§è HݵÂôQëMË…äB6–IøedPC¨–”ÍD Œ•œ1¾uGž‡Ó%ýŒloÅÑeʹ4Õ¡Ë 64"3N·1½0"ÉgÕ½©¨~|¾‘½ fæ-)nÉX÷$åS\ØRë¸ý ‚qØMð`H^ ¨‰ _ÏZ›Èôj,–½QèV<•‡I`þGyUMÐ=8^¨q\3^Vë <~N£õéB„¸!•›A”=IÈÄÈQsPÚîDà +¿šRç,Ò´€³i$¤œoE3ÕŠ¦á+£­«œ}~FÀ›ѶўçÆÓË Äà!òÿoVvAj’سåtìca7Fˆ/ô1$~¯HÅjÜÍZ66§çKQ’»IÝÌñˆ»¤éDvCwшxÄÏ’P³E7éÍgóËpŽ€%ë3ãæEK§ Ö²¦0¦m¢˜I5MÝ1ƒ±ÿ1 P5âÃ@ùØØÖ³ƒa*T g†`PÚùL*+”ÔÂò]'¨}vøåQ¡f±„þæp÷¾êuÙ5ÆãA³€r ›ÊVB¨Ú®ÍP–u‘V’våOlö³Õä~¡/\×$5·,B›[Í™žØÜMRsßz…~ç ü‰¦B÷4B'×ã‚'aF–¤s¹ëR †lÁc5Mè Ù‡ *GòdjdÞB`Ÿ áI¥q>A1Õú› 84-®“]=/è…Ï(¤ÈYhÂHŠCɬJ¾c$Î È/`/ÉVO©lCŵ$ +*Ö!DlÃá?‰yâþ<ݯ& ¨xBPªÆCê<&©&†@î{ÛrCô³ÇÄ`ŠA¯ð“4˜|â:™(O/AËÍÉ)f•(,‡!×GË‚ãÓd”QÃï!}¹lVV¼<€jÜM>ÚÐ|äØ8¤,,áæ?샌)œPÈ¡|¤E/Ç» <]ž~N>‘HòüTt¤¡;>&AÐäJ7 ï–Ôs‘+æ$ ýðä¯ÏSoÌ5·o¾±õÕ ¢ØÒ™ ÛU¬²<òBfÊÑ5 ê#€U+¹ÁXKÍîåÝWNd³¯ tÃC¸øsݾ°=¹‰ûû*™Êùiaýݳ ¾"ýX©Í3’¨îZ¡µ¯É»qý¼‘Û ÉæT4ÞPÔ^]¶þ@9=¼—Gº+¦ ¡ýÁ„¡oZž)Ð^LþÆ“¿?~ë9å†VmýgJH#çF½.¬ñ ^Ðt‡;¼\–ÁºÊ$* 9—UY×Ví.WGo­Ôå~uôÆüiT'(cÏiÙ®ì ¥·‡{XS70zGŠóeUUöÕ=[kD¶-ˆ¥†Æ`Û®^¶mîë ê#^JÓ¥NN4ß SÓ½èpíâx’[ã·õK–F¼…½;`¡Y¨Á‡…¥v‚«Rp†ƒƒ|PtÐ@]vk˾ëºApñþWN#…gMC}?Ž=ïü‚áF c52 ñÄ—¢Ž£R<Ü„G s<]—þvÀƒ‚VôT^öŸ|«ÊAœá‡f<"RT7 +gÏ‘?äd|Ícî&Î0¿Y’¼úÇüH¹PŽÎñ§E/.íK3†î o&¢Ë…Ø8MߢÂnÂܮڮÍ`²V‹ìfÛMÝÙnurD`´m\‘}£¦qr¬ñü!8³=P9^¿ì¼p°D#€À°n…¡7ÌaÆï×ù°@”úeüv *H­ßþ¬Kã=ã«„è¦æQtcxnh´¾À}†På!9Q°±|Çò)°þÍXγлÁ„A¤O*ˆé\2þ›öjk®Û6Âïù|4grd Aâ13ÎdúÐ>ÄΛg:9Ö‘dWW’먿¾Ø €]CÄ H&%ZŽ„“7BeµÝÄõHv,¯CG0ªò¿…5ˆ>oÁÃyç0®úiFÂiÙ²½¨t *D¯hDGѸ´ Q@¦Úši'cý6£q‹-¹päùh%+]Ý$«!±¢²áý°FÙ$Á'ïA²ü9¶LyMú1oÜ{`ŠXŒoOLà Ÿ ïœ{NŒAÒ?5a”Ê”søG+“ ƒè{ +sYâz¤íÔ®µ–?ůœ9å, íl­©W ‘üöM®‚è^Ä·² ¸­M`†3`92“Wˆzshëd4X£Y®ƒuX.† V Ak L8 { #wJ½.S3”†Â¿vŸWø):9R$ŠþÁáìžèÈŽB~–ÆDDVá¸R•spä‹|&ŸBET +̦Áª¬zKÛÒO])Q5’9@ä8í ôçT$pªƒF”–‹î¯ N@îÔÛ1ÕVÀ8­µ~ªÆ'rÈ·¤hï°74ÍØGòv‰”HEb eÍK¾$Ãíëh‰ =F‹SYËlÇbÂi¼ÞÑõðPwVFEÔ¡'Aˆ°hº´nËlýàö·;yÄ%p,ö©ÎôSÕ E.ȵ õ9“8ž”­)×Í;ãë7[x—F5F‹¸ø%³ñ¾sséà;4Üáþ%ã îD!O™áI•Ìîc=8É`∦^6“O&y‹ºq+ÅQ$eØHhéTš(EÛ§Ö6­CTØë“Ÿ„W-£ÎqÑ„‘8Ö‰µ0P²ô»Nã5¯¯õ—w²D®äÒòP-Jˆ™ÊÖ‘ë+¶5ñ\ŽHÜ&ØÊm:GØ° âÉë&âèhû¥[…Jì"w›²B^ö,ÊòVëÜ[‰(À`ñ/Ç~dš4ÒŠå‰sþ¨Æìļ2ŒSEÂÚ†tÎ^ç!‰F¶IÛëaq{Cr³°,_ +…× ö¤½@êÊÍÂÕÙ(×mûÍc©„”™¦dŒp€²OÕ,÷¢û ¦æ9×ÑÉ´ÇÆH,; Ÿ¡ÝT¨ mr~Ðk0M{QÏÞÀ$%ÖQ²Ád¿™í‘”¢k¶¿W¢· ËzpwÜSqô¯«HckÖvyÞkMtVEæ6ŠËj¨5vµ†ó^ š…Tåóà— tšHÏé”’dÏ„ân1Ê+V8Uö¨uŽP›ÍδƸï´VᆉÄ×Öe«8쉤 £ÉŒp/|s—Ë5žâ›©Å·­ŸLF(‹8T«ü©«ûÓ¬&Yâ+wW´<-L$÷EÛ¶¶ik>{{k—AÈ×'–¢l›à(à8”$˜·C|ñàÃÕ8‚¸˜Å—ÞmŸQeÎ%µ´¶èò¤ƒMŠˆá‹3â4ÞçÖ~iËjârW£Œõ^‰tß$–È.{N W$ãJr@Ö»GŒöòC´'-žMZ³‰Ek¤~ŒœDÐHl붻…=ádDJb•öéÿR¶cjÉ`g¶ù +lz—í0œ½ÈP’ÅæÔãÃ,}·M2Â2­3a#J¦Ù”D+³œaü•î0ùæð‚¸¹‹ÆÀ©¶‰«¹ÇJÄŒ­¨+j:JœÂå`Æi,•kº…ÐâÂxˆîýJØ ¹’LgëŸ6 +à$ý=§ñ¯«7"¯¦‹ þLŸ©A“t× +¯©"„DÏ)e×bÞØð"'‰ÈJL`õyà5}ŒGN°i>ÌÓ?@ôB±ƒÿ›§^:”X~­âyÈ~^t¨M7ehpf w¢WÈÈž5ì-<šQ$Ï1ͼ››²êÆÖЖnœ]:Ì΋ÄÁ$”ˆŽÝ¨ LÉj¬é„É¡!íã#è(b1–¾ _ÖÒ¹æí*)1?ŸQ_×û™ôÞ°”âÛu‘Šû0Q7"(HiôL.Bj^fŸ7]ÿáËιéÐy‡nÑh”ýò¹ãD™³Ñ@_vhÒÄäRLÖo‡Øœ¿¡ç™Åà9Páˆûw×Ó¥¯¡Á½î°Á0až¡÷ï@²Œ´§½À]Z/²ÑøÂ%hl`«:+’µDaãÆÁÒä)pÝr(z) *ò°ˆÊ…<ø<ðÒQ­y— ÷ÿqÐy´µ•uQ)¤zäæÅ:Ž"±É·h¾¥(•×ög©s¶ZxÍŽc31ÜÇ&¿•XŽØÔ7²¬ Êé°ÏÚHÙŽ[Ò'·•ÄåLT*†=sL±UBº”M£Hc23?ncéPéªâÒÿ¤Xû HËÊÒ“Ä×O$s@â2Sz’”#±ã²L¼žÏ.'g—ú—x~Ci›6.mqgÈrŠ™¼È›C›+Ó7í`o²ÂôGD²6S O=Âà¶ÌÝf¨Þödå/yK§N¡Ù+4;‰æ¢”[+}µ‰Óñ1‹2x £Ü¬9þç®qŠà˹¢ ƒLÌÆ©Ÿ˜¯[£?ô¡žï=%NÂö5lM÷&bÙñv[öUøëã#°C@¬Ž‰/aâV|0¾€«ð R LížOz¸ë=ÁÑ2ïâ󲪪b~ÛOÈòé௸ÖT%Ñôø×ý¹q\«€Ç°™AˆÙ0£†°¯Ùúx™s«ƒã§äÁ~ê‘aѽPc 6õ@€9=}œAgyuù÷.Y¡ü*.ás—öç>î Ö ¼A¼Ì£0øêM†Á=ÒB•#qÒQÅ,ʹdžý†Q}Œ ¦mä‘ €xý‘'˧\ælõ=ìp sh +xÔå>Mé^O¯õ:^P–¨ô‡na3×cÃ@²á7·lœ ¬Xøwø÷O¾ëÅü¹Ûñ•aY:‹³°Õ¿±U¹™³LÀÁeÏÐsXŸ_ý¢6ƒÎç8(Ò½C{éÔ“èdˆ§!xzä+“BJ +b:|ø!I*6çÇÖáøW†ƒ[–‡Sʈ3@å¶3)gå[q!¬‘{ý> +stream +xÚµ<ÙrÛ¸–ïþ +>’U-™Ø[]=•Ž“ßIÒ™Äw6g[^&’ì±­øz¾~Î.l ’yËU¢E‡8û¾¹{¸¾˜œ=üúëះ&O7ˇß~+~?z{pøÇ׺¸¼/~?9¨‹±T¦k­Š»ËbTk-Š“³‚¯‡ïë®…;SÔðçƦÐA¥3¶Ö…4cc¬¨aÐü ®:ùŸƒw'ï>¾Ø>ñã|\ÿ{pø~^G7ÿz0öqÆ8àäÞŒk +WÛ±×¾pn´)FJ×ckaÄ´VŽƒ×í¥üXµ?&B‘FŽ•T-÷¥•0â Ò i¡tcŠ‹|ß±¯|XÑCOY;Þv€…‚²^3¤ܹÀÕ¸úuüûX`¼Šˆº +^Nªq¼òÞgóü}ÞLY³âëAóÝÔ¡ÆïíHœÙÁÌéÐQ7v$ìXšá@×LXíl7¸†á(Ó×¥N??v¤Sd¨%rç°(#]”•Fø>BH¢VÊÏýÇ¢ìõØÁ*— we.ÊÏŒåÃÏ w>L—Ey>½«?¾=>*€Ÿ;%$Q Z¢ôÈŠ‘uãÚÖ>8$ ë)õÈ$(TUøk—Ã÷‚õT*ŠPƒü: ¯dA_”¦€Zê´üX„»òM5ÒcU~þ|L7tù ®ªü£à¡,ªÿ>ùk£Ì^|ß×Ò6¨á/`ãÅ„\ 6o*¥Ç¾| sÃåI%ÜX”~ùúÂüÓÅèßÛùÃV¥ÞêáÃ÷2.! +á<Š¬‚%Ç%rÞx^¢_ëºV¿.iúPw¯ßAcí½¬Í:T¯³ Š&I8€(ÏFJÔ–ÞKñ{‰º±Rü*tk…®Ý +&§°ÚÖúfQI û·Z¹ +×þ>]yV@ýŠò¡Òe1î†Ã‡îKàŸ{üýzQÁd¦ü‰YÞÀoq_àž„Ï›‘c‹ÀL9£y—|?‡û0é%ùVVÊнûjda>„_Â=yÕ¿‰ñ¨+>Å÷<”·85cÀs^3jð²Æz¸©ËÏP“@Ÿm•KåRm—Ë°ˆQ"¯ç,o`aFh¤&xÁµG×H: +Ä Q‰¦¢FAõ¬G»AGs A•À<ðø»ÐIeÒ)ŸM'=¤þLP8-ßW!ÚRp ®Ùƒ=‡«aÓ¦Pu>±"½&;¿ Ǿöt-‰ý݉ïpÁGâ]$bMDDOž¾®à‘[ºˆünL¦Í~«§ñËý=O:ÙQ³ã\üàëfl;Ü´%¿Ê<¾Ñ„=ôÙf¨9lh^é>ËÚ)ˆÅ,,Ï>êÂnvŸW¡f¹Ï¡víD†³œÌ{Z~E£ ‘»4{‡.K¤iwé"ë–x!]`ÉÜ 1ly䬣Ó¿#OÂmr¼G¨H®Yé´ÐŠIX‘Ajà +¶B/S÷o_Û…ð¯1&Ø|ÕÒ›4lW-uX¿YµtÐE½54Š^2^·¨– Š†7è +\1±§÷à)h&… Çɧ*,Úšb¡ ib¥o ‚îüûli2“2 ø\¥/ÔVÊèH½2 +§å”@p•—á ~"= iÅ@¢W“ÖÏ ¡¢uùKoz“Iƒ|¶tØ!i pZ~aƒ µž¦¿c©XV6Z(¤ºÏs&Ï´2$(Â’îDó‰ò³8geÎ6ÊÖM3§Ñ¤4:Všò +s + zøöÅ“ì" ($¯8á6H½r‘ߨü©7½Ï$>›üa«ßÝ®íÄO8-ßÐïú;Ž3"‚ò-˜ýAâÂgAˆ*/ø0”4ñ0’,"rÉHóãdÓLc+ñd©ÉŒŸú*6—†Ì%Ï¢È!ò Ìr(.ë(®B¾‹Ó›^dR<ŸKq)ô´SNËãE(ÂéœæèÛ‚jHHßãÜèöSò™ïH®§ ú˜Tcÿù*‹r嘌4û82RgR.ŸM93¤ªNPè©jÔ«3Ò«~U¯‚ˆ¢â麊юãp‡óªÑBiD²wPÀÛÀêôþ2Õø6Ë/’v˜(Ä`ΔVØ- +‘nc²5/ +‘›²UECÞ†ÐYIü¬ãHrW‘ M:z$ËŸL%Ê|§iŒ‚¯)ö3Kv¤Dy}¾¬%;8Q‘Í=§ÿQ‰7TÄ jså€ë—QÊ7ˆJá’Ç a±×Áí“QužØ§às½d%û4Òä%wÒ:¢üâ¼B½Ì2FòœC5P†J{¹O°¢T&ðÙdØš¡ªe$ƒÜN†…Óòs%5úµT4z„OO¹còP¼Šû)PWúò™I*$qVÅñͤ(+J2Þ¢º—g†r툨p-‰A¢NHÅϲÈj"«õ{n‚²™dMÀg“Õmu‡Lt‡Ìv²&(`Ëž\â ”FbL¸|8£4_Ó8‹èûÄA3Îö,±dy´%o‰†,øÁ,Òùa̤6z/‰ ÍäÔ<3©ëÁÍdŠIg&©|^±mŒfÑp¡ö¦©ÇÒ¯!W‰,*¨Ñ ÚèR;Z×ûˆ•ÎLí¤àsÅJ«½ oé„”È1NxÊâ`c…à¦=ðÛEñ3º2Ž„M‚ø „M+Š<ȉi*rßœ£îD=ÙŒ½AMéË'öy¹´—EEýš„©–c怙Ç]h—™JÁgÓnÈ”PŠÂiy„ºÌpJè’r;w¸ä–ïк7téÿpIÖpInÉŒ*±“ø0àcײziæ¨Ë°u¤ŠÍ4ºÁý˜d-‡„ÈPꉟ]\ëMð‚ÙDdJ¸‡#ã—þÄlc‡?Ì Ÿf¡wÆØrãH›ÆúÉ®-ÑjòW9¼9PæJc{÷ Igf®RðÙ\Ìc¤( ?FÍm½:gNTü•É‘ä0ž­È-a¤+»ÇñÞ Žàœ|{ŒYŽÛXTlÁiŽšŸ:™Ï± j¹àbcSÆ|&¯’Ã$¦ÆEPÁï£ÊŒØè"¬AÍsŒ|e=/÷´éã2iž€Ï¦¹Ð[IQ ò®CçpNöºï7è­~Ã]’ÅÌÙŒÎY¨@0i…hmû¦À¡Ë›Ðo ^éíÞÜÖ­ ¨ Õ½ßëÚº¬lÝNJ嬑¸ÚºqÿƒS]ÔõöK‰cÎùìœÞ·ÿ¡r™õM˳óƒ*5ªßg) ·•ËÛÊYçþ ™€“ˆË;^°¯ˆKV$nå@f"U!•ÞQ­ÚlfW¡æ™Y«ÄSLNË“ëy¯q{=·|½ˆ¹­¦Ýzµ {‡ˆÜ”èÂ]9ÞaÇl‰ÍLt¥àsõ¤uúË) +§å¿“-tMÿ¹4gW»v¥u­r +æn{¾æbïOnŽ{Ößms3:ìïø  ¬ÿfˆQrÁÄ OœTjÇÔŒÍì‡JÁç2‚«÷Nͤ2Ù‰êܺAÙ–âZ4š{¨,Ÿšè¦E¹¢ÍTšÒò©5¥¥§šûœ±G:”¿ç\³XVÑc7‹ò6œë¹¤Üö/0+6Þ^PÿákѼ¶”Š 3>±¨ÐçâÒ”".mz6¹ [!ÏýšrU~«rXȉWy×Øòµ[0å2sz)ølÆQƒõŠ¤œ–ÿÌÞìMEÁÑÛF€Ì,î(à@CeÐð¶ßDâ~æ„Ø")ÛBªƒ™s-±KdÂlvFÍ)ÔÀ’‘aãû'Ío1%(YÐœ hB£m[¡¬d¥Z,ø?²øEãÈàöQ9ÎlôÖ æùξ2 Oç=-?i0Ž¢ÖÙO‹òžãl—gGŽBvà*‹êuÒ¢=D×x7 +B!SjÚÈA þ 6BçŬmpØì’s.ÏŠyo;€aˆÜà’„€À!Yaœs»«”cxµSâüfÆX…šÉᵌ‘Ì;cœÅòZ¤S8g€q×À‚{šZ +?“þ!-Â~Lj=SœÒ“$>h™§ã‹ÐL¤§ó$ä·gƒrØÇׯbŒŒw;üæôÞÔ<öñrð¸#Å«N¸ð× ,¶{ÚÁÆw^ý)§õè'd&rn¨y ý”,ÁÈÞžNÞ#­P/Jéw×4ÀŸž{Öv°ÒUÌQö6¥övÏöb¨¦µ‡Š]Üd¸WZoÄy[ì<‹»Ô@öËX¬Œ÷kÌËi¿) ÖC.MŠ–aÅËÈaä:ÛúöOà4 ëý‰ö¬ûò„®*vx›ò?€5°z’£(Â@õ&¤•Ä/vSa‹AZ…š§(Â?À %˜Ä’¤å™J|Ü’œ·Y®ÕÓºóýbP)ÐèF¸9Yf6í…é½è@ Ö(t^‰ßz™å£|n€†l°NQèJ j# WŽö7=–±ø¿Ò €ýÔ¤y3wgµ›_b7Œ­wmø +™¥ž|6}ü€›¹Sr7s“—®ø¦lö6üˆ¹®‘Ž…I¬0Œ*Áï!L¢®7E³6KX1¸2LQÁJ {=¯ú‰{×%Ÿ¶²ê6QÁöŒ#­žƒsÆ›…–¼7üa÷•M¹ï}Ýíî÷ümVÂ͹4S>›h n(`ÌŒ1Å(Ê_øÜòöoâi3èÜLû§Ät ùm\ÀŽ?N!¥¨4âq¹äÄçóïcšü8< 1Ãåór˜@ÉŠV|€Ö®¶ZÔõæªÕØ\Õ¯Ì>¤ãÔ¾ýÜlßÛ€“WMÉýÐe‰0ùÔK)¡»=áoçEY\ðVò&‘f±Ú ˆ*/‹æ{ódÓ#RPžR÷R"é.ôÀ@d“õè\Å™’~ÚËôE÷âÿ$&5b`-Âèdq¤yMC@¯Qç»ùpó¡k`sù𵧤ƒZ\ÉO1iŸpõï™1ûyß2Ð0Ô–ÃpWX¼%³e—·ì ìO£LùÊ6¿©éyèŠ=UVÔk2¡¸Œð Æê?"—öˆTç—<~zÕyƒ¶}ôZf/…Ÿé&‰Zì_áKgÄÀ4U„>ÐêaE·¸úÜn«f&¦ T[Aü\MéÒGÊQ\ó~íî͆K‘E(ñªzšÐr/)÷üƒ~>¡†<!Å¡ 8¢OÓÛyЮ×ÁÔëZšÅ ¤iRÖ”Jç(þþØïwº¢[_±³^sµLt›ñ…kŽÈ¢ÆhÚ‘½y'èóM³˜c è‘Ý£˜?³?…ŸÏ&vÀÖjÈç¾ô‘n +­¢¸‘‰ËäÄñˢ=Aˆb#.Ý7]¼Û8(6}Õ¹¼¢ÝáØþØ»•oÛ‹pM3†¾žSí¨+6´<§- +ÓmsõcïÌ&%f¬ ?‘1Ïe2oZW(Á¥h½Ÿ$#£7ù ¦vqhl¿>›“|ž\¨YQªã© +±ØÀm Í9tÜx1©âö0>e.ý1¯WYÃÐñ!ì(<™Æ0Ÿ-;²PÅ&(PÖVµ;Q+8VÔØú†–nÿH{ö ïìàí&ýÝ$·Ü=J›òé›é.Ëö˜Ñ1ß5žu¼ie¦ùLÀç“v{?ŠjÑn%m‚¹é˜2&Êvt7=+YsiWËxvœEÛIÊcòHaŽÉ´]ý3#z´­óï[‰( +k°fàÀ"CôàŽM’•U€2Íúû‡ŠÎ®{Wˆ +Od)ÿR|®ðú'øsyL‡6œ¿Å·ÒÍóŠøϧʵ÷*yþÿ¬¤GêªüZDïÛ¨†Á¾C ÿ©²Í,FÏÂñÉ/´mòzº–b‚ã ++ÿEPŽŠ·ã /ð19-ú®x_iÄT):…ç¤íû~AÙI†þÁ 3 +endstream +endobj +102 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +103 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +104 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +105 0 obj +<< +/BaseFont /RRCWNV+MyriadPro-SemiboldCond +/Encoding 232 0 R +/FirstChar 29 +/FontDescriptor 233 0 R +/LastChar 146 +/Subtype /Type1 +/ToUnicode 234 0 R +/Type /Font +/Widths [495 457 457 158 0 0 0 0 0 0 0 256 256 0 0 216 +0 216 0 0 0 0 0 0 0 0 0 0 0 216 0 0 +0 0 0 0 448 0 385 470 0 371 0 0 226 0 0 364 +620 0 0 431 0 443 379 376 0 0 0 0 0 0 0 0 +0 0 0 0 396 425 313 425 394 260 425 434 205 0 386 210 +653 434 410 425 0 273 308 286 428 374 594 0 370 334 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 184 184] +>> +endobj +106 0 obj +<< +/Filter /FlateDecode +/Length 6283 +>> +stream +H‰¤WÙnÛH}×WÔ£D4«ŠU$A€IÒô Ó“Ö[2oñxmÉŽ'óõs·Ú(ÑfÒ0`QT-w9÷Üsþ¶½¿8Ûß«—/þ©Ž~Ý|»}¸W¯^½~ûF-^¯jjcüo[«¶ç‹£w4ê|·8ZëOÒj}¶X5uc¬Z+yxT¾î`üuµSZÛÚö®WÆÕÎyØs½Xê¾ZÿgñózñóopÓŸpîǽp<~ûõèï×z{»ø×âèw4ï×Í͹ZžÞ¬Þ½®Ž~{óË[¥ãJ[št‰Fê`¤NF6FŒÄ‡GØ^÷¼Å$;ÓÃïÝ€F~XújeÀƒe Ÿô`àA-ÕûjÕÖƒZ^ìp¼¹ä÷×ÕJáËÍͦÒjy~Z­þLïa{ø~SùºUË{Þµ¹9ᇋë»jeëN-¯pƒIàè€?7U+çyÜ}q{Sý{ýÞ'è³­×’ÒF…É‚@i“ΤMm‡Æs˜~ë| ß(0A÷hÒ°"qªî*©'—4nVÜ€Ó]mù¡«)È-~‡ÔÀŽóJã×ê¤Ò´¼‡#v²à¢ÒO:‡žöYÌÊ G飦áu2@SrN¯ñ¡KÇÝT†~Û î¦2¯Ãô„{Èâ[3Ú«24ü?ÄÃ÷6­€ßeð¨à›·ð» »Ìcu‹.-gê-n…#ßV‚óâÈÎná +Gq®ùÆ@„§O„ïU +¯Jftg_¤e&tº¢ö +œ84];_àd¹ÊKþ‰ƒûü`a7B?ôµŽ ¤œ£ÿÚäôRmž¨ªÁ÷ÇÞ<ô°ZF qU›b"4(ª§ð?þ—Sð²C€iÄA™jñ*8šBË9=Æ”ùWÏ jhÀ[É­øµÃk(ÕtÚÌ°$P£ÈpÆ•Xó€yH•Ž„ùúrÈee‰oäM߀]£cƒ8ŒÐnÔSuôLÁ:‚ÃGc¼àK +&q|+ÝLN.ï³Ä‡Kˆ¿ä·ŒÊBnãy’òˆu“ßXùÛ—lp™€'áÓðLÁâDÚLÈuAô$u¸£½O1U#Ô‘ÂÑ©彦"ÛóöG:èD~ *ÕÏUiŸ +þ+æ]XJS¯RnY@¦ +!ì~†¯œ. &õZ ½(û|0?ë„lÅX­C8ø\ÁððeÌz©'ä ;ئîJEH!O e7eÕ(A§IâÍÀq>kS³á©3x’6î‚6žì¶X-vÛ›S]Z+8쇤ھVFZæ +ÜêÐÜVˆ7Aùì¨q•Rãýó¡ +ÂEËR+´jò~ÇH¨ùü¹~›YÃÍó©PÂ’"2À´ÐÔºqZy õžò²iûj–¼±63!£\Ú·3mŸ„ÖÙÔ:tJcüyüÁ!ÍzPZ¶¸ÿÃòwì9DDì·‚!÷VxŠé ¥>°²$‚¯©SÁÃQÑ#&,KUéR +ÛçNB´pA4` üËŸæ&ÔM0„ë¡„³±P–ƒFŽªl„™©¥ÖµÔº§ÒŽVöÆA†È:Ôþ>¾QQIÀý]»¼àØóâ¯7v¶?kïAKt¹@~¢ñôó•?IÅýˆŠùÊß'[gW²Ÿ?"˜áLsüùT=€uÑአï¶Â»ŽÐd͉õ2»®{Vß…DWŸ™­n« ôe™:Å éýù‚Û +jîŸIÉsêÏ帺‚L‚A †¦ ìZ!D}á¯0fye$a{ˆŒS¡0„IËSLj‰U&j³HØ¡žÏ‚•JŒªkEvYä$T3q’©&Ô#s'T;žPíþš¶n{œ_ F"Ià5Î,·AVñ˜ÊIÊ?Žv€å-uL‡‚²xúˆ1/myuDïÅ”úŽü¡>.+7°:,ybÅ'n1ß  –QdWž|¬T&Ë…Ím¢êSpòÀfL«#ÑAJ0½šKR# _¿©¤þÕ—@™Œõs´§Û¯ö¹ž/ ¯jñòXá6»T¢øƒ½" n¹ÄŠþÔNõ'òŸpøBÝI@¶|@¢9# ýÀØâ³æ¹¸3¦ƒ) œ×0ªÛñ4—(°4dVA€YÍYîøRÿÚä,ØaHæÔ"&0Àb¤ËyqfÚÑi&8Æuð1Ç£vŠÃ@rmâç¤YøûFzË™Èø[iÜÛ€ª|Ä“’ãw<ðHm$pÖÂñ±ê)ëÛØ®%7ÉØÀ8,qت·X²-~Zpå}šŽ<ß)&åm:¿ çBF–;Qe%÷#]WLµÖâ=ß~ùêk$•LÙmcß“.v…cP/htyE0Ëï_®’™‰]"¥k'â5*^AÊy¨;v€&JRyøÂt§öDŽºc¯£Â°EaÒËD³r`Vógk`éb²°å 3¸ê„Üê¡$ëÑ‘¢|BR\Hß,>.PÀ añu £b}‰;«|AO±F0>‡a^Ûújè®ØÊf]!¤,âu²•Ì…˜A¬Ÿ€XÛe‚{!‘ÄB9Ku‰ bçØiÏDÅÝnFú9”@zz4IÂ7ïY°·™4†³º\L‡²!FKÆJÄÁ²EåSЕ”Ê·tUvêH€Š¦; ,2IÍ3 +ö^¦ªô“D׊.aWN3(üg'²/Ûž› «Æeü€Ö(¦±i­áË®$ºlÅÎÍÐ:I6†6 +C +óˆy¥!ÁôÈÞŸ±>ˆX½Wû’7µ˜”"áZ”Ãh§Å rYÂî ’ ^&Óó©âM’¿ØÁFÍÝÆFUj5<%özGVDÒ¿† rãjö»ºÚP"¥€J;4™Ÿ(W—Gé>&¤gázPzegR»Šê?Iä,«.*)W|E‰îñ{œ|¬åÅIk'D›%ƱŒc¦ÔW”]šŸ!ΈP¹ŽM;ã—\^†nŸ@mT®™X#í^Ìžrr&,\SÂÂ2,Ã2:Ò9j@„!åB7‡" Ù+[¨uWhÅ`$‰Œ¬ô¡r6hdŸGi¼‹•4=dRÒ y‘º-žSIBçÇ:ŸÎ\Ná!ðÏÚ^ÍW-iÞ£ +5QŸ +6”µŠ{¼ÇŽËÌl‘U›;@4Ÿ1ê%Qf*]äçdÇš +½§¡sH9dgJL-WÕ,æF£^ãƒlÁ§)ðzûòt7ó¦Ñ$p¬PìÙq¶®œŠ+>,÷‰æH»(mò6A¥½Ë•G`ÀXÓ«¦,AjÅã{¹] _«$[f–h¹ÿ.Ø·Ó£#a^;_Bq.æ]‰ù~ Âóöÿ¬WIÜ6¾÷¯ÐÑ\m‰))r±`nƒ¸9$@à^át¼¤ËKœ_?|ùHQÕì_z©’¸¼÷½oY”?ßwɲ1ôpåŒÐjÀÛKEuÐGÕ]kæ{Y™%XVl²|…‰ Ÿp ¹ÞòfûH)"gèG½žÓk̯øØß-·pd;ïþÓOØ +U˜8ÿ$¥j[qè U_wà¢å $]ÊÛ%ÚŸÃ$;Ê>ù‡Ý[Ò-ã°Ê°íqð~ˆ´>è›…ªåΩ)*iQ<tW÷Ù7`'þ&—÷)”ìò“hi+‘ñØõˆÚ§å‘)ô»çÑ<¶‚e>AZo™3¤<ëI+§ÆÌ;( hJ‘ãy&ãôX»žä‡Äi6*@$ ÂZ¤¹:IR“Äÿ_!§Ôç„„¹6À%;!øïÀÑAЩô6ƒ©™!…'ÍíZÕ|\"…Iu W:çà8œ† +M“øØ—–ñ·7úÆ̯ôð–+[‘¸¶ Q¡¥‰^§pŠÓ´ÅÁ©ŒsZ¥N.APj–^cÂŒd¥LûqJU7«Cá4<•:?ë„‘¦q ä–˜d,3Ç"B¯ˆÑ`œ:ïþÝ;JY4uǸ1ˆÊBFþ.|†¡EÐßáÒHAƒ3HqÐ l\C¼äÒ Y6íR™¾k¸·Ë +Ò†_¿M=û§ Öjÿ|yÆ=·ë¨"H,|” +lØe¿²ëšOåÅšElå!( )ÃLâ‘š¿[ØPõA4mÛgí9-ùÊ8E°àÐ2¥V Þۤș2‘ˆ¿kç#¸Æ¼Ä—Þâ½±; +—.Pâ9J!YÞ¸£\„ƒbRUkE¢-ò‚ÙÌ<×òBeeùdœ,Tí¶G ¶¹Û×PDø¾¸ûMè÷¥C“WØ4÷$€Ù *æ!ZLËUŸ+5:%Ø䞟ÅV‚ßE=’‹ +îgoz‚ý³©øŠkz:’c ݽ¼i6-•_üö%Ômg+BNDÕˆoU'è䱨kŽÐZXî >ëJ¢.ʡ؃Ëxg×Æ,BqõsOÇSb‘Æ»s`Qv]8ÂuwËŸlmž!9øÚ<øÎ5k¹ÀÙ>öYÂlE„Ëàd]ø9M¶{¸;{ñóë¡»;ž½xi~ é.nÏVÄËÚ ƒ;;-Ñšý8 ƒý©MÝtZ‹Ï,!B‹.Sã¢yªAdw÷p¯qq1Ò-Àš¥»¸êÂ_ãäq`Èðø#Žƒ:ɯÏ^n‚\'bИ ÄŒ˜iPËð£KßYÙ ÿÝW„ß?´¶H'ªpnÄÀ§V›²‚’­f)ŽÞ]|€#ûÍô<Ž%kéò@@I{3î,ÀŽ—Ì0ŠW@1ò÷Q©$®à9øÉ°Óœý L;Á6Êù@GB]:Ø"ïèñÅø˜Ù`^k Jç è!CÍøõG¢8‘È"ñ‚Ä>°†eV#¡,=Ô±y\×\â×=Oh'i6êÈJÿ­{-•ËëböcϹ‰óqspB¸ÌJ6[™ˆõnfq”Ñ /À)cÄöP)F´ú"6£×bYi)d“e„Ûip" YÖ=¥°ò%QsVà\®Y⣆<ÅFŒck6.”æ,Ê5Áœ5"fb€.¾uÈ„ƒ¥ñ +6û¼ÇòK·:µ¼”­È!l™ºÙÍ>Ôl5ËPËH„–«ù…ÿ½¼©ÝÃÈ€äóŠs; ™ùë':ŒÈ4N¹¶Èx²Hœáº+cÎ.ó¼•Á«ñx…ãÕ‘ $ãX]|¸££I˜7°çÜٗ༬HLƒ©dy$aö‰•äé œ€âñ¼Ûâ›öI(—04:¾”/xk)jŸ°žV’˜˜.+ã!*†¤:"šõˆÌ)M¤9öX»$¹øCĸÌûZÙŠ*“£*xÆ*ªÌjTðÐû9vÜ^ß6Zû3V Ü’°üö¬ŸVJ°ô–¾§#is ¼Û»ðåo}N/s^êä’%·S´BKèD$y(O§ó+¡‹¶¯ã<¤ Éÿ¨eç5›OªÙ'¹—"·"^VF¥w¶`³=Üͳ²ÉYšõ˜f‹,»îdY If‚qa§£¢¦äJšá.-­›©ÛLf(© ÔM¹’gã4Ïp…P¹©Ú˜Ç8,nâDÕò' ݺ2n2Ê1oÑ)@óc#ò^ "¸ü)új—MÁÀãfrÔ§!g~¸Œ€­V˜L9LìL¼U–Zqp1yy+ÊöžÏwEáCÖV%³pÈj¾/¼mQ'Q”Èh¼Ï{þ¾¡ÇóȪ-vY‘èAz€L¦Í|2#ªQš1ù d8¦`OBdJ!òyeÙÝ,Ä'íÃä.º8œ…†yÅÕ'+'iµrj¹hr¢°sìF³cËM®IÁ.¢gôLuô,"~LÉô~´_¥í’Ûh-e·nOõ¢ˆXÙÓÁ!¾uw°er†”"l°@Ïñ J +ìRN5:§fz”wˆ½ŸJ¥o*!Ð1é_½':o%c +;Š²Ô¡=Õ•]–ê¡^Ãa +Ö)ÛÝ&TïØÇn0ÏdÎ Â7!wlÓŸíòô7×ÒßåÍv §Üß*‡`¹ÏX×,XžœœŠ nóœ°3fÌ!4¡ŠµhU§Gm‰wòAQ©Bùi“ºãƒ­ÂÇç­p˜38„Hd]ø9M¶{¸;{ñóë¡»;ž½xi~é.nÏVËÚ ~`±M( ¸é‡a°?]üѲñ¢6Ž‹ÿ`·”‹.Sã¢k~€uw×ñ#ÝâúÛ]\uðÇ@B ê‰oÀqÔA~}öKO@€²Â-¡ o°Ÿ„#FT]€Þ‚³€¨0ž™~4„‡OØÖûž,Ó­ƒ¼ ê®áfÜŸn•FÚ˜ fƒ]‹‹lSi2B*Š6ûïG=rt×ùÄ)zœÃðN΢8~åÑÔQµ¤COtû‘‚²Úw~—‰7˘©&ÛgT¦¾µ9£j`Ìت¼Êæbï&>¼ìÄæ +CaäÚ”bÍ=ô@~ÉÔ¨Ï6`ÄåÊ/’cbGg,ì·m)âš+ìô¶¬} ÁU=m~ p k~®Yõm¦K$-ŸL@XÈÀ–ÜE÷Ĉ֊ “ç€a®Cc\ äOÐPùOpz%©IFà]òE¬† ÷yh$—½Pµò—’p‡"J>ë-ª0i´ö€Nܬø»ÜÅ<){‚CH6ª’^ì®ÿ<™_bŠÐä—[Ž +õ¹ÿú¡>_§>—¨¯>öq7΋òò•ÁˆÑè‰|«ìçI¾=‘”¶>–ªþ­2šátʆí“2ŽÌU¢‰¸Ñ,¤¬´Õ“Å~‚r¢Ââüz›¸hüµâÅÞc˜vãe Ó¥guœ”d„fÁ`„Oþac—jH¸ÊX¨›ôF³½;×:ðgw‚q7ª3¤cŽKweòãs| LxÏQì)“éC*„&ŸÁþÎþhA+W†ªÚCdÞ2ª.\N*¥½ÒZm¤5Ý– SøˆôO´±” òû*ã@>Gç3=;ôMm™s÷c÷ÜuUcÌùJ†¿ Ô[¨+9¨åyG ¹í­cæ~Ò*÷„Ø#Ãôtl3R±ê·=kzì;lö¨­§ö³¦#·'æà3—ÆBfŒR×™, ØšEªr pMœ,Ô÷ ár³†YÁ„âØô£0»ÂJøL· ¢e^!{ÑljÎDÓö­™Æ–ŸÖLù ˜}¬¾ÁŠâdyàçhå‚OÂJÑ„Ä'(n-ƒ;ÏÊ'uÃêüÝQ—µG✛Š ͪð_'ˆ +endstream +endobj +107 0 obj +<< +/Filter /FlateDecode +/Length 6065 +>> +stream +H‰¤WÙn»}×Wðq¨[M²×À0`[×Æ |—Ää!.dY’%kqF²ݯO-\Š½H­<šé&Y¬:uΩƒW»»óÓ£ã;õâÅÁoêàýÑÃÍ·;õòåëÃ7jïõv¯RUi]ÿ×µS»³½ƒw*uv»w°5Tʨíé^Q••mÔöXù?îU[v°þue£ê¡.M ›Ø¦lšÖ\ímÌ ·{?m÷~úNú„ëq-lßÞ¼½ªÔáÍÞßö~ÇðÞ]Ÿ©ÍÉuñîµ>øåÍχÊTý b=xcCHi·ÂÔ` ¤¾UíËaZ âEUUî¥cù ¡…=û¦¬ÜP÷ìë•{š<Ñ +ƒÿ‚6œá­H°ãükðVÆ–œ_úÃT]Ù™¶Éù×潆…œªÛ²V›3mš²U›#]Xø¸T;]Ô°zs®!7js«üöEÛÒá7Óã¯QúßÛ¿®¹•¥Øn¬DYu=Åm8jxØÙÒÖÎŒb>Ô–‚=Ô.«6W_1løe§áðá{¯6Ǻh1Þ;¸N…Îq©Ë~€+À7ºÆ߯! ” 8·+,ÝZÝkxžÖÆá²µ;ðÎ¥¶~Pa õV¸¥µÄwí(wbSƒ'Á¾v…1Óã¢ÁÏkÍ¿ß©OÚ:ÞÈÇæÏö RtWX$ƒ×vxP§ºãB(Öu„÷€5°5%ì“..ïʺ ŽYµê¡/«J,«µ)ô:œ×bcÄr=ÆBį©Ë.ba¹E2dË ” Œ’Ï>Óé>ÁøÚËJÚúlôû­:‡°Ñ©‚ãáØ÷ôÀñ¯à'e| mê¿ÇáÐbŒ•·ØѸÆP;ÒiFnJ-:Ö=þ’Tã©êOuC8@Ýøì0½OZÅY´žñ ^¦vŒw—邈km=àן¿†ó×ÇœsAvê Ÿû¾n¸b=_=4ÉZà6¸¥©ë%xUUÙ ð:Á h`^ăárÐö@)XÀžÅäZ¼¶®8É¡\*unËMh:N—MŴIJ øœ~Õ––çžð›³šG£úªAñ¢B;Ö‰(aâübË hðê æˆi¸°|3êÞŠ è«t‰\aO„…=EZcQ¿ùϧa¦9²R½BF£$ÞbάO«#¸ù»ÖÜG%ï“ÙjL´ËdÖTpg]†‡ZIfØxcmWˆö3^aP™¬¨Qáf”Õo\ê†gtëð=“gËmšH½÷é;a8Ó-«Aä·X+°€ª©Ä÷Ú5¹æpö¿€ÂpKÆ'êˆ48þW5hT.xg_îø¸p·2«¨JòG’Æ[n5ÒmŽÖ¦&ànª=ØqFì¶Aýl¡£ÊB¯VÂa¤„®#hVe?L‘ÉD$Ýj²còrœ4OÍ,U<ÅÁI˜2( KAnå{b¥‚õs,O,ŸøË)®&]üªOq]Ôãs/WÇQi:Üî#¾e„\«èʼòDÎdXR–ìÑàÒëè$¾š_vÖOLòâ%BÜ›o)”òq £¶‚˜ CìûÖRH&±„|Á|áOÿDË«àlªj!JÈ­$DSeS ôÆ‚ø¶M'|þÄ\ º¨Yƒ©ŠèN©ŸÏð'˜S›Þ"kfè°½‘Ò8 íKë¥0ïE‚žü•|d’xÑ«Þ5Q„_uåe-¨¶çÁ‘ÚÅ¢ã#œÇĤ ¸<-ILmôuDßM;FÓ•§ätf4c!IžJ!ÔÁD¸Ÿ¼wx6öìŠÉBâc%ŸšÊåØ,.€¯vb°8×ìIàÒXûÔs9ÄäpÝŽ°^7­x-•i]‘³„_ìxi3 \€7ÆmoWðÌÔo½Eò–ȇ™’Y'þr"m<ü=6:a}ŠðâOˆL´Ò¦ò>³æT…¶æüûG:ãàãË2“rxë î­×—ý•>ÒTõ2tºì æŠ$‰~šPbjJß<–»F»š}aáp¥ä&¨S „sÇ¥e¹dð¢Ms™oÅ°äÛÊÕ™SÖÁÖü PÛS²1ÐàÛcåÿ`?ÃI²ªoÀå µjº¾t5ô9å¨Åðº_ÁÁj£~ÃÌX$œ‚À÷ïCV5äŒÜ^ˆ~æÎ÷æù >ný´ûªS\Š[_ R÷”úãµt¥ÀB4ýðUðXø'Å‘àX:  ¶ÓÔÞçW~õÉÚòµYù¶¾zŽœhƒ;Ö­»áÌÀuû`¶'1–í A k)Ó¹b2MLm§í˜;C £µÿ ½ÖHnž B4i0àw?žxJù†S¼ ¦=h]¤wë§ï6=}ÑΫEpíýx;ëÇTòL_ßµ3¹ÚÛìbJŽq}4„cØ:%n€ìµYtÂæÖó%®ñyA.8¯µ%²~XMÝHŠížj¸DÄSÍ|›{rÚibÎÜkÕsJ T‚ “óhÞÁåé1'5¨ð9‚šR|勬-Åy']cÞàÃBl)X‚Ð7´”ý* j5™ãfÆ |s4PÔ³ÃÍ…ÏûS;2¶@è¹GôkÈl„n)ûà7Çž Óé›JÆæ'*ž¿XjaÿoV"²ÏÙt ˆD©uà~ƒz/ žxŠ'¿ ›¬Èwì”ìKoDn|½Âí,‰˜tžÉ1˜gdüÐïˆôxBÑE#\þdÄ"^ ER'ÌÁÿÕ5¥  ´Šº–¸yÀ®>j“Ýæ2ƒæ›%&2eHµ +'£.ç¤^‰RŒÚb*$b¬‘ûpD—@ý.räôK\¨69q>ˆ¶0Lj Iàç‡{Q‰|ÌÍq\=ÍŒcüäò9-Átôã߀–ˆ`|û„´É§GvYÂZ/a}.aßÓ.!S4!}ôd lÊÆå8—_R ¡ÁÞx*ôÙZĘjyLˆh©šrÊǼ"|%»vKcDNšÓË€P' ðâZªãr´K(põÌaÒ’ò…öÓj]˜ †ÉœUFxÑÎÎADÈ”ˆç°àEÙ›ÃÝ¢ŸÊ]  Ñͺ©^ØϘ!<ÅFJåÍ,ð3 pë}¢•½Â'Cv$Tê»ç¿Œ=(ž("Ah_]ÆjG¶Šò!q×{ܵ,F9 ³•„+xáزXššx‘MY-ÖÂÈæDm'Ø ÍWw°ÉÜ5›CÆe_¨¼=¡Ü±ÀaÁ=’P—u/¤xžÎ2çFœÍtŸe: +¬>v¡‘Þ‚*ãËwH¥Ôz[fð¬xúñûÈyª]œ§c7ØŒ_UÔH!@*sÕƒ`«„Ó)ÆšŒ_3ë ªÕŒär(Mi(B©uÂ/^€À¬-lÒÝŽé%v?`‰bÉ?>ÞeÖøJThÔÍ™7r˜aAIÓi#‘ÊÌ]òá e]à?#9HcâHV0Ò¸O¼cãœÞÏÎY†ªÌȘmt*Xð0cÄÍé´•@«s«p¬ª Ôê¬NÕ Ö€·khæ´>«zÓèð#=.'l"vTº™QCx³ÀBÁÍ«PŸïØ#L6,¿WáœáÞ Õð*bG­ành!…eUä¾4Ar@Œk¬Á¤§¹ÕƹµætŠÛ%g筺ž'?[O.#s<Ž¥Ö‘#7}ëGlÐØþñêìË Ò‡ÕÌØŽñd–qäjáqO4Õpn¾´¹“ÌgJ'L›³ü6(®r¿ã'žgø'»àŸ2O¨à•¶×ÞÒ~Ï`•‘aÉ7#Ïé«p<(Ò óUÓ¶wž8öÑálÚO?0\xšÿF-DÙŒ Y„8åJ$¹õ=º` Ÿ¥ØÝH±%¶q”캚€†en ¹0ì0‡%æòòXeâGfŠæ„<Ç©(BX›\X €S“’9ËËŒ(±–töÌ(ÛvJ„Ѩ¢G±S`O­K’ +ÆKâ3yC÷žó{ðõŠ Á .ßõ¹@/a +»8RÝÿ1µÖéÙßá÷}yÚù´WIo7¾ûWð˜ÔâRÛ1É,0 &rÈVKÖØ’µ%Gùõ÷|d±º)gr²UÍb‘ï}ï[¬¦r92j kœÃ‚‰:Ŷ,øècKÎX#$ÁF¡kB1Tý]ìKÎr«AÜ°6˜r¶!9í1‰`¶i'Ã4'[8 zÌhD2Æ„¬æ;~h nƒ1np¾ð¢nøçûׂmY¹Á}?Έ: §ûi?éqPv1"z¼Ò¬æ£vNÄVN`z6Rò¼B·ÆTÏ7s÷2¢"g/yмÅGU^ñŒ¤JøxÜ.JlKvðû"™?uÆq'Çãår³eÆRäA)¤ÑóLñ¾¥ž¤J¤ýœ$œæ°F~\3-—A´ì4 Ÿ‘ª„`¾Ò†+q¨uø)|+Ìe‘'þu%yÙšùÌ=L“G<Ðn"F¼Ó…Ȭ“ÁKs1uVL½ÌÅôá,™Ýw‡ü’P?O>Ì[.Ë©‘;ˆ#· \Ç|÷¡sÄR!ñÒP¹ì+Äˈ†ù¹s`±³/*n­’ɪd§q£J>Z&ï%ؘ˜ƒØþ蘣Ù9ÏïŽàÚcÇ`V×Ì‹p¢ôÚ +ôëˆjͱ% 06)]º¯©“:lëWsm^Gk6êhá7*f+|Gsuô·˜„´?‚Èæjv<ðDÁEЋqtnè´Ä'Ê°Pze⫘Q,¢Y-LGœ‚¯,H¼û抺2°N%õ­Jrú³ÿ>2‹?¤™¸,8!”Ü$áé2“|ºø»ðÐ7¶ÏsW&+Ñs¦² ¾[Ú-l£'´E¸0Äœ;3µŸE{Ë<¬|r¬°ëQg%öpzûß–Ç¢“ÝèŸ÷ERÍB˜óz ^ÄÁœN¯1.﫲…Ü@Ÿp‡àOIÊ÷êÀ©sá5æÌk$_žõ`=pUÇ…¬_¿®=6Ä” ÚSï.“žE?œ4k²m္㠒SÂZ£/„)‰3ÚŽBá7ÇÌO¦…ã}E 8l×XÆà;¹"'´ÖrΖÛÀ¦ñN+ÉÞÚªÓ´&IJ~>6Ê™ïˆÚ÷°Û¨è+¶øʨ¾; ÆÌÒ®=n æŠÑèú ¬gf¬µÒKAnCÍè„2® öÐaíV–á3 úÿ†ciÈf!<©à¢ðøsp à÷eXÙÌUIb)»!»$Ç—œÊôíN¥ÅÖÏ2à¡l•»öyƒW̃Ŧh9Iš—‡„¡ÍŠªçßéƒûFèÙ"NÙ"h/<“e†^8ˆaN±-T—Î,k·.¬Zp[4“ˆ¥x`[mæɯ)%Æ{3ä <îLðm q¾ÛÐë"xœø8ªÏ­0^à§ßâã§ÖhOŸà±¯÷¸,RöNãŠßiÁB1ØIy×à®>Ä¡³hS£±W—­\dóHØ÷ŽÒØQ8’Êxˆk±KçüCUýþHCOßóÌô…ZKQ!¢Æ”šVú{îtU“™¯¡" àm®” ÙQä®*T±Ëà÷nC^œsYÛvÊ9>‰i&±zC²ù +^†¢ÂK3ÂLŽ°M“Ýc"ºŒ®j‡®,ÍÞï +,ìXMc9kGu+””ŸûŠÏ¥‚¸ˆ¼Èç n¶² Ù—,fêæ˜9‰˜IÂg$]q ÞcŽMò•:¿Ö¸Ó·Ö²§Ý°h¿uÎ×r‡àEË0]ܽë´Í>oÈ…‰6|AcÂÖ«. ´¨§YzU´³v;Ú¹eÞ÷ãb2$¶F;ë +”/(É.$²(5X»#ä’ÅNødMø"¸ÔÐÈMÎ=©kn†9¼¨ŒY†ÌRe{¬Lfg)Ðä¶þì;ŽœFghoH€1üÐíæ0yHŠÕ£|4÷ÿ;šÉŽ6GÚ¤…wÐÔskaéKÍüÐHö§™7‡"%hW‡”^¬H iäÑ>„žZavä¤*¤R·RC5©®Á“U&ÓG•pVš/‰o3:ð’h9Ó{¯ds¯Äµ#üÃ4˜(@–JôUrÈ.è#?ÞÙ3YàLšEÊÌb*fì­úf3ó|fH8"È= aŠÁ‘I3Õˆ¸±%ÚšÉqÊÉÑ Hž: £tï‘œRE ÙªŠtš„}°H)![¥D?q6~…†‰è[í2–?j5ï;d§e®(˜x."¶r“Ë +Ä% ^â 6ÏòÅ9o»ÏþZz¢‡ÎkC,ë:0-µÀ4d:ßιÀÙÀÐ8@Pa ]kuÍ-½îØ‚ïFœßxšJØÄN˜žD0@ßKÀ Àpú ¶KøGä˜ßyürž[V©eäÔ2ÿI©e¬¤ÂÍUMÑXϜԳ×æˆDíå´Ã¥bðŒÛý7‚eia2”V&s}ŽB»aóôЋ0æþ1ñû9à Ýç3x™oyd›ýéœÛU;1¸–bËhEix„ó`Ç´QÊåfjX±[ +“ƒ +aÞÈ 89·ÂÊ$Î,_˜.µòw±*0©út”ªæ(•{|…s:GÌ4n ÆŽ"¬ê™l:äÙt®ü.Ó‡#ôj£"Þ­Ø£çb ½±þ‘#Wbˆ°ˆ…½ú'è§ÍÐB–ìsgÐj=w–Í qË O]X½ô{³¯©eUå˜Û[ÃPDÒZöæšì¡Îø;4Ç´p˜@M3‡Ù"XX»I_ä,Râ©{®±°á…­Ò°>.ߢnC‡?¦ó}$;ÚÞëÜâ ,;=ð/8z{@ÇŽÒ÷w$z`„!MøoØgÂôÆ& vC‡8¨Ðƒ{?âD…^¶Eª»ã/Å…q#­øÔ\òY”¼^Nçã`,'Ÿô=Âh†^ÓhÜv¨ÏTå[FtúUâW€0$J2°’‰ÆqýâLceº¤œëîµ$à>4 +ñ|Å%ãºB—-9 PÁ/¾¥Ü̸dÁ +.ÁCã•®½£ñŸXò•3%>¦+ijOÞ‰":°ºÚhmÆR¨°ïÃÛ÷Šÿãy²Ú0=±?Ï<{·`Ñ-6ÊöÔ¨ ”!Q‚`A¼ðýôÿ¨òõÏÐmíVBÜíøÏÁö$”f£°Ïѳ°Í¯{Hû o¾ðº÷–öÃeǼ‹¼~ß!¶Ž¼ˆÄo.˜ ùÝ` +èww,‡ŸQ> +stream +H‰œW]o7}÷¯à£ˆÆCr†36MtÑbw[}Ø, +Å‘ǶœÊNR÷×ïý"yçK‘‹‘¬’—÷ž{ιçÿ8<^_n/Í7ßœÿËœÿ´}ºÿôh¾ýöå«ïÌÙËÍYeªÒùþ¯koWg篭ÌÕÃÙùÆþ^k6—gUYYøraÖòí‹ e kà_[6ÆZ_ú®éŒkʦ ðÂÝÙÊUÅæÃÙ÷›³ï†“þ€ƒ`ƒ +×Âöø×Oç?ÜUæÕýÙÎÎÿáý´Ý_™Õn¿~ý²8ÿù»_ÁÆÆj0¤ ÒÆ -‰±UŽá/_Œ­ÊŽ—¸cë:xÞöäW¡X;¸Áª,ÖYÕð—Y™Wø£7«øùK±¶e>âxûP4øq}¿<kÈ|)ÖWüU¬{|°-ê²6«ôø~Ï'\Ë'lÀ;^áQðËv_8ÙÖýµÃ…°ß;~ýïóùw¸Þƒ×àVðÞçðFtؼ?ÝïßT¾…á}Xoiå#ï÷°Ã ùoëäK(¼º¿zàwŠÿmþ™Êx¤PNê|³©rU,Åú>¥çªXU8Þ÷U઼,T²ÇiƒHšÒò5)æò +_öfkn Ûaä÷ò2ܱÂOXl-®º5¦¿m ç0} úRQS®áWø²/ 4¸úìàüKƒyéðÇ÷,ÚA :Ü*ÏáçKأŷ˜`Üÿ¿\>š-mÓÐ5îóÎ\Ž*ûˆH@¿ÁÑæ²hùΰ[¯:³ ‹ß#Z[]¢/PŒþ=å¦OI½•7wx»þìØh\—¤vmp|_5Œ6].¡H5·Eì,‘툨?‰Ýr^%Õ—Uj¥f-òiÅç¥ù±ðž9.ê ¯OæíÎ|¢BX¡p‡G“(]Ò VÃ>“Üç ¯¸5]S(y‚ótª*ÿ<½Üˆfsk‚ì¥çSaIv⋤i§±äD´8’ç'(íôÂäèá¾5#Òƒ¥~G:'‘È:„Y|ØÂlUuŒÚB_¶ lÈL퀙R÷‹§×E Œ¼€ª§† k¼ãs-ÕÃúÒÕïpÏÁR-Š 2Þímã£Ʉ•¶aa"Àè¼Áö檰›™à7¨…pAä¦Ë‚¥îשbÅÓY¸/Hmúfæ-’!;'HÞ5CÂbŠá^QñFŽ"QçÔdÜ͆-œoýœ)¢_쎿 ¢v"wŒ±¸iÒÇ,,R¢±N<+ß)jQË%‰RúùxLv<¡X¸!œˆôjéqQ¬u-JQ±ƒ?By8(˜ èú +;~óOñâ[¦›;ÁÁGD]+ÊAÕ÷5bðIX¢$pâ†÷´„þ¿†3W> ú>¡:d4Ë@íKÒ~éÖ#¹gÆJ†7Šv"¤ºg˜;©“Í]?oîò48ƒÝÚªÁㆠPö\\'ø I.+¨h†B;^R1dDXØy +zôxL‰n„‰°–‘&ÈHÓ ÞM¨‘º®Ù¯Ü!Úê5Z£œ³ª#ñ)Ó”agtÉìQar ÜøŸ¢Ì+™I(fwq’hd’hæ¬[ºÉt^»ð~èÂ;jû?O¥ÃP é0ƒÌ‚y\˜ú¢QËuKÝk`*bé¸(àM×<\©¢Š~dÃW÷,¶È^Aùfºô]dÝáªÔY±^´Í`rêÔ EÞeì”wN+y,JÓŠ^J`úŒf£Í*­&DÒ"¤Ô4¡7EBµØŒ# "ÚË\40fBÑQH<ï{/r樥ž 1;šìˆAV󌡛±æhã-ƒyÏ«AqèR©ó°aí<MY—¬Œ!eË%G÷™âàÆ­´aœL…©£'WÐeez›ˆâÔjÌqU#\ÕÂUÀ{äN>=gÙŽ-2ÏR ¾ã<ž?wÙ$›QÈßa?õØûä=#_Xr¥'ÃÌ ™¬m—aÖôšž0SN«£š/iÿèµánDÊìªJSP%ÓVWõÊ^ž« Ì ©Û~‰…æ…£™qê©sS²k68'ÀoQà…Øìcy ¢&šwÒFqšøŠvÑ®nI»üø´£ÚEZ“ø†iZsÚz?ÛJGм«vý  g̾—Ï}-áMW¯Üëã³Dkþ=•ƒ>E ”¥­XH­œvµ%-ÑÜ›nÄ»ôv8=r1Ú ‚1º¾ó”C÷ +·ŽQ5²úpèƒ7Þ;•¢~Ùèò£ép–}}³óÅ@õŠËn ¸Šž]/º+‹>ζ<Þn=ÅĦ—H¤ümŒ½lâ”yâ÷›é¾ED”GÓmê™ü—Ô¢ôÂTxy­Ãu_¯jÒ*‡2ªð-u]jët< Ķ{EäK…°šqýœ{4¡š>5³ó°<”ãr͸f:_õÆQ'UÎ#õqÑO¢Vc%îV‚­\ïJïòÎ%£°…5ÉQÑb´@{ñåcÙ*©£W”3¨°»þœøpØ2öYÞ’+¾â©”ÃJšðñëq¾F,”¶³ËôÙ«öÊi('¹í7õÔŠ?_B[`Œ4Ü?¥æ!щSdú)ÝlÅ{JY¼/ãV@ b~¿Mt z9.òÏÎá6Ø¿²ãÓéÚc§û¦–jNC‘Jî]5šÌrŽ¸PW£©ÎµbèuŶæ¼ÿ´Ój¨± 5†ÿ?ð®øð%F7VŒéÇ eºyQdÙÌž+,®Å*; ŸP·ëOýóQ<+QA‘:âú{D*í‰ù¸ÒªûWOé5ßc}äGÒôÄœ@öp0¿tÁm4›Í*ÍͦÑçc2«PPJr7¡H¶Ã_O¶É‰å(<2P`Jz/HÿŒFÆUj¬‘t§Z¦ŠÎ·Ä¬¢s=%(˜j¼¯§È‚•’-ÿGSEY'\saÈ›sÃ4’¥ùZ”WT±?Cá“,&ã&ÙÚí;ÈKLƒ×)k¶ÄuìT”.NÀ˜@›]Y¸ +ßôHYnÔN”f™¶EÛŒR•K•ñ{Å^_¬§¹ÔÓ0o j˜¨ßtÄ;5‘TÜù¬11¯HªN=õ"Vë¿c¥z®`Û“PØ_•Óß:?iYrUÕæ±ê7”N“0O5‡–3VösŸ€¦/LP,5?”ìn‚¯byåBY|Ì‘Z•Õä÷ÚÃ+èjàJ.òÊ7âÄuä¼ÕpÓaVLkGvDØ¢6ï4Q—‰p)E8.["ô^Ñ}.¼÷Ô§ã™Y`²N^NIò„LVïïô‚±»˜3„¹9ôÄåØ@ÏC «ðåœpI1´´>á|> ~pGlõp)Uä`¨EØ®GGûÑQÞpŸT;ŽY»‘jxÛ'š¥¯¸iÚM,ÌðVÜ–üd†];Èyé4q.Ï ª8 OŠÁAik¥W2¾±Ôø9!ÜèHìhd¨kò9å9Á¦‚¹. SÖþ‚y*SÈå‰ú;œq@˜Ù¤Ëæ/M£–•+&CB!Åý¬í&ìÕ„­ÒX¿é$ý `zÛ© $qŠ M“&R½ñc7òDÁ'p„ åq – iœè`þ£À©WêgW‰¦¡z…\Û{\6Ã3¡îÄÚßje!Eýâ’y^.ðÁ ¹Í{d\"þïªa rÎÐæéÙ<'2OWM·É iæü±²Ñ¡´Q–æ^#5*/î•¡+ç™ *Œ&¦(=MßjòìRª&¹¨˜E¡8‚Ì"üô­/S=åòÝïËCð¨î¥X»ûmGµEźvVfãk’•¤‚vê ö+”ÐPÓ™½0^7Â឵צR,ÄÚŽRÅÇeÿ„ŠNÚõ†ºOš ·¾NƒM/k¤¥’wÇÝÂñZ8[¢™‚"ñÜî51Òçy6o Ô²‹AÛö6ð_Z±¶¼(—I§@QçI§…|Õ( (ßþA)æ‚A»QN * ìŠçHh÷ %V4ćC¼±Á)ý)wóÑ$èÜXÆ•,ÛÝ‘O“ŠÛîmÁœ*¹‘Ì,õ’L„g·J”®ê¾V67©‘„Ffñ¤¨ÆüZŠo¯à§_ùYòî[3€eÄoºoÐv#Vo’ɾé.&aÓžh%Ô•iËD”Ú×!‡<Án°{õ¾à“ŸwkaÜ‹v˜cfÝJý(©¾t1ìùŽ+à8Wq‰‰$î"`w9å–Œ&<¿R@¦a f‡nQGA@Þ½ó°ŠšP }èÀ1,ãòÒÒ)ÀO£Z¯Müź e ߀_Ò¤Uù×7—ÝÀòsŽÛÌlU¸‘ÇC"ÿéÔ- øÜœ³És¤5Z&^'êêŽÜ#­  ‰³ÐRï£ ¢ƒ‘…â0ûng;»¾WŠõà[í¹ýìÊwS´è>ÌU!ÞÒ±R‹'bíky¬¥VšÚè9ÚzîësRú½e×Í(jÄÑYª lyà9>Â’NyýÏìÍ/Ò^)§]˜4íï½G[¥¼q—Ò­­ù\Mar¿L›b’j“ý?;8¯Ã«T!Ù[Í~N +>®ŒØ‘0cZÇŒP`R™õø¿S×ä¹è‡ÈÉG#Ï!­Å§~P4í ì^˜W„#غëõó¸fÕPä{ì°ËÓ¹Ou™ï«´5æè†I@ù6¥™¥®xƒæÉÛÀOÍ!H7¡R¤¸á§L°.ÉlîD½JMyâ*â¿÷'>ƒ XŸRÛSö–™2 Ü:pÙòâ#ÐÌ1ÑÕ/§k®lb=ͺs6q¾•]­Á³­\(æ K¢ÙÙ +endstream +endobj +109 0 obj +<< +/Filter /FlateDecode +/Length 6131 +>> +stream +xÚí\ksܶ’ý®_d•gD<·R¹•ÄvÖ÷Ú÷nbme·’ý ÇXV¢)#ÉŠòë·`Èeyk·¶¶\¥ñÌ ˆî>}ú48‡ßlo/>ŸÞ~õÕá?ß?\ÝÝ~ýµøöåw‡ß¿oÄùøöè K¥[±4F‹í¹X4ËFiqt*øõþðu#¤8ú ì²kEÿºe+Œ3KÙ6Mß +Õ.ÛÖÊZTJÖG¿¼::xõî;Æ?÷øç-ü9¿¾^7âåÕÁ‡ÿ +3{{¼9Õj³øþÛúðÝwo^ +©=ÌSÆyâ?)~K©º0æákɳ“’¿‡·M·ì¤5ΉNõKç\ÛiœÛÏÕq½ý²­6µl«3±ªÍRUÀ‡ +^¯k8ÚV—5rU/Zøð¦–Ͳ«.ðCS}ªµ„CVø]W݈Ӻ‡c®àK8mcÂɾìRV§øÒV·p™?뜉³Z7K]ÝÁ Û«† ,”‚+lðz¶:·~ªk»ì«œµpðŽ£np´ŽnH•¶tõu½«Ð‡^×q28ÛM­äÒU·âÿ£``øØâÁïßI¸ÜL ü ŽÅËZY˜èKœ¯¬~„á+×2tÓ=|xN³ÄëKɃù+/ÞcœÒð²õý-øÆ´ñ7>})­ES[Ö¯sÎ*ÅÖ=ªÛ.“Ì…m K¯74m¸ /qÝââȆ &ÑV"ÚcÇ5üŸŒac¸Ùë?ú ØÇÆë\ëŠçß?R4¸ROÇ¡âœáh[zm=ºÐà»äSdd<ßÁë[𖎲ìÅm¸Æçy/^ýN(úƒSÖþs8ǧa¶ó¬ÝÖnrS×/ë”4…©«E‚1Ó#ÛÄÓNûQÓ,[çLß± ^ ÷·Ë ã`m`T· ëv†¡å²_¹‹¼´©$:RÀèDâ·Z“Sû>€ã9pÀ+qR;þh'Õ$>¸t†„;]"ŽádnwÛ’c;pl +wó%Ãý%:Œ·Šßªªœ]$úÚ¨£Îs¤.5·í&Ím{ˆ H +Λû¦FüXí視ڼÎbƒ_YøŠí{‹ ¯£}Ñj"¦ECÀLá~J‹·"#þLØÃVÞÐŽEÌZà¼ß[yÐ渿¢Õi;ŒÎ#ØÑQ/Ât­jç½ÇCÉ“èì +qíW"æ­á˜q²;’Ì*B&Á{XÍ3Y?'ös{ÍŒ}—Åþ´/tà 06Ðï ˜ABj¾ ËÁ»Œ™§'\»®zAiàØ–{Œˆ?ñh§@$ÔQ/"/Ìr@H-´ºnó^lü \{Ë#$’ß!¸š«Ê’iÀÄ Vç\ç—Óö†Y¦¼.FšTÌSÍ|<‘ ßYÊÀ(O…;&ï—hkpŽž£Â†ÏÚôv‡5¬Ùi’ÔǤnÈ¡pÔš¡±¬Þ9^ 3Á$vÁüòBÄó8¬“Ãým5©(3Š·¸¥¿>I©y6Y0aŸÀ|c}ÂLAY¿ê˜aj‡qµ¯ÑA‡¬7Ó Ì$UL] ‘û@€Љ+1d$#$\$ÄFºR6Ê+jH` þÇZ—¿‡åzŠG ñQÎU…¤B€®ª÷Âðy˺ÅÃ% +}ÕˆPA!… ýùâÃËL!F¶©…‡¯«oŽŒá„ƒkÂê»^´ÀÚ~õUÓ4úk1ƒ¹Ë¤j£ö-P9§ÇFíͼQ»}‚"QE–<»–$OíEE(Üù(üOâhù<~®Þ’K1<¶ž·T·AP\ôRpžešì¹Þ€؊÷5úÄ{Œ¹ên° Â/65åÛ³øÁmiÀ²šXû)CðUBÄ3ï-Û¶v^—(FÈê/ó ž×c¸¦§õØYuÓ,idowÖB¼=F÷v‚ )í«Lå±nW©,q¨OC.ÚQR¼´±#Ùä‚ A^lÐëÊJí+²†ôYëåæÔ¯ùúÌ«_U“j n¼ŒiÑ¡€M©ì‡ÚfÜŽ$‹À÷˜gEfÃx®4K~qC6¥GÄ6¢Ô<=UŽ% 8ÅÃz¦nPbóò$bk*±e1m)F’á»LW’)3 dV0Ëš¢Ð· ‹°Í܇¦DÞÇqž ÞÎñ"••-í´©!)À«m›z§Î ®K,•yYps2%ïv— ¦åmJ;¨nóú%JÎ=XÛw»Êt—”ûm5S`Þ%[uÒ‘HL1pw–áS¶K§Žj•TzGåá)Š{v_ÄžYâ5ÜÜÔ«T&fÊi§0Io'½SLŠ¸… {º©f„¦ï½` ª›€ãŠSVdU^Æ$%,‘ÆÍèPÄ·"Œé=WJZìÈÙ¼îŽÈrƒI˜a¸]Xs 0 Ù?ª÷R¿;t‹ìM‘l”$¤”‰0ÓðE¹Óì1=š8!»¹2·ãˆ¢#'Oܳlk–²]’Æ[¢ŸƒHÚ†XœR¨¿p«ËŒ„ÝŒV׎5Yquc—_:ž{™¶Ê¤ÝÆ»fîPeäì‘öD›NM;ªy ;ƒÔåѸhc<¥6 +`.S7ße ,Z¸2_z©o²ÓæYº6b k™¦w`¦]e¬Uë5t_dï «çš€È}^T3p Za +Áw†6é  ûQXRË|,íµ<©K®ÚÔ#¤™ö¨‰;”E${Ä¿ÕÊ-ULmA§Ks{$T.S)ü a®=†Ž3Y +<ų”‘¾æšeŒ²ÀÈ‚/ñ]zö"QïƒpBð˜©?:3Þ â?6»ö_" ¶Ã<ÇIO?ÂÉ“®ú8JÎò;«Éœ`f ’5T»éÄô]FLK`6[¤8ÌÎB᛼»ý ÕQŸlt˜èÐA™*uTðŠ¡ûUt~J ‡âºeÐ97•TTÆúX ØÑc*[‚…ÿÙAéØÊPÒd(Ù-§7p<é 3¥ÏÌ®§ÍÞéLo-Uΰø4×Hæ ØËÚƒ¥9Dƒ…B™j]Ò¸± ô9’–Ó.Zµ¤Ë·ÞžŸŒÊù>8Ìû2ä\í3$:TQ’ |hkoÜú\;ËÔi—\ê=¦n]F5s.°£¯Î2¶šCsSÏ£ƒ:Q&Æý‚,¥#åtÅ>;hko/ÇýÀbèš=±|‹ra›÷8y\¢åæì=ïQòŒÇÙX—KÃ&žA+à"y™™Ì7ÑòÚ÷¶„i bî-¢tZ eS­À­#˾ƒã]càOzŽî÷Óst<Ê*> ®§øzüïïÂmh§)¡{0…–=p¸Ó5uÄÖ4œ…áq)Þ„“š0¥GŽãÉ(@CóÑV—œÕ· +³LÏZ¤§A°N]%ñγÕâå«Á;MÑ«Œ#'w»°`Lé \ät=´|¦ Q;^´Å@RÏËøÖæÒgwP4…ÓµSaÝÈ׿¥øý'olùw®ŸEqÐ…/A÷ÇÏÀ±‹ÉáÍûš°ý Êú<ºÓ;L¶úæ7W^¡vo«.yTw˜ÃXg}Å/ÿ*¦øüJüŽûê}{Dº E™†)Ò>“¼§£Sÿħ;àöü±½ ·ÚC m ˜o©úŽ},Ò@žHÎЇ(r´áŒêòùþ‘QÐÁËCúìÙõÙ(4Ýâ`‡MrH ¥8¤—ÙlÓëLdPd~'¿Âí(Rö¢s°üÄ“JÂÙJÿø½Pâ^ñN Ë€çmwšëûfÚYp:m¤ æÙÿæw×uP ~88|}¼Ã¾9½½;¾s•qm‡Y#¨©ÆŒÍ:ß[°ÖýŒuÅMÉ;{¾ÔÜs]®õþ&<ìÅÿ“¸uÎé®)gùsõ§ïµ Œ¥,»¡¶ü«©Ž¤7I4}‹Ôž¶(¹6G1‡c‹Y‘ pOç®xçt`¤oÏlxkò ]„$,ü%×4uØï‚Ü€Õ‹Ò¼“ÆÆnÏFø +tCÓÔqš§5ñ_>*Œëh$ÙšiXhÑÅW4©Tá– µŒ-õuÍ¥bC…f±:Ó î5²åÿÍö¿ÔlrÀ²Èþ>+8‰–(Þ’#UÈ{ím<×ñlübƒL‚epªÇiI1;cºŽÀíê‚¥ w[R2± kvÌô`MÃÅ2*]R•´"•‘úxö)Ò¢ÃhÊ‹µWYV¨âèê¯ó–OE¯›?ó%ø¿}÷úÑguç%c ./ŸFŒÙŸ¬ÊagîÄ3ížx³€,»ðg„>Ø +·üT´‰NqJj¡€¸å{C[8X [ñ)\ÂHÒ¤ÐI~Z%‡Ä Š6Ô=ú¥Ñ]-y7 "O ¦¬ØCýèŠa `¨„ÌQ„‹ÈÙO#ç0?†» È.{ž¿&¨}æÃ}’™QPäO$;3Ô-.Þ_Ÿ7ô„ýj‚Ø°×´o’¶Q†IˆofðzÚí/M<S šŸá&‘ #ÙÛ¾¥G‚]®ÿŸ,ºÖ¦fµÙ®QHP”aÏÚ'+ɦ4üÈ?z˜&ºyfévöÏ‚>  æ(§‡Í%¨n\’~y‰“Y‘ŽâªócìŽ9RI¡´½#À¼áªu…øçLqÞøû?øuMOzуr–îÔß(s¼áSÎüÇkJ¿w›š–†*å[6õbmŸŒBŽ0omúÏ€X¸1“ lk¤r½PN~VAf’L:ò´;#ÏÚ¶yl˳j_H‘ +ßQŸÈgBÈKžÿñ˜\ÿ6ØjKoWlÉÛ‹ž{¼øá ïHô6»Ûr„vo­Xÿð~{Nî„ŠjhüÓÁ%v<ì1ÿ¢·óÝkìôÄ“q‚7üôæy‚ý‚K†ŸaEŒW +%÷ÂÑc!/X¾Æéo$ñäKZÏKàäm„Ì]è¤H†5¿rº›M2ZùeH†êº„oÍwÿVí%;ÃÎõ}ýL’‘_øçê Ó„ÍÓ2ú 5ö-=>7°î8Ì9æ_ú +zVLd/;™»–£Ù ùÍþüåŸô γ×5Éß·c¢{ xÙê>J,{_òÞ²Ë|<µ¢”=¿<œç¸fÛPVgdñ ±¡ôô‰ïÊâ†D²ˆ7ÒRã݉ÀB1î©Ã,‰©iZ#zr»$¨'Ah©3L×ûªÕCn¾³¾ +Ö%fzQ·ÜM•žÚÀEjé|5>,Éyà̓a‚c°Ëyšg¤vž‘ŒË(¡÷U?|¢S ®·6ç´ùø|…¹Ä±šã*öÌtEϻӰҳ$þš²VCYk€ËSâW̼nýX·Û°ÕÓ ²µS²ÿn=¥ žÓðWèåÞo¢¦íÇôæÚï#ºÚp“ð†äï6L'ëguµM¾ZÓ]®éw3îh{̆ð8LÔxoQ8°qTáÙ?ñN‚¼HuÜâ­gZ×6‚OÚ²é‘.é’ƒ-¬h ©în=/öóLÀc£ÍNü:­¼) ¶ÌgØŒd}ÿ­$5‡V‹6i|¢0¾ò[z?»¯‘=ûiYò-vKíÙëN}ì¥öÜúYR¨†A$?+âÕ”'û9žñë7q™jœÝ`]`h{*=è䟾ð¬÷õ.ÛW¿ÓœÙöǔłۖ°"G†Tcf—ö •€ÉH·LcŸ–rìþ2`gØ™Ç>· È/Œ¿0g‰FHÍx:ítѸëLÚ?Ÿ0öMÈ ÷¤ä Ì +Åè𠩸IcOï´‚“>þ‘ãþ£"Þ—¢¾¿Ÿ$%Ô ]œž72v»ûêOüq„™Z•5ÅÃOe.™´Sßd r)„Ÿ–~õÃr®÷¿æÈð®›ê¡`Ê,tm¾ºò1xµ¦#.B–FP¸&0g –,Ùú+õð,)8½:á¢ðÍüs< Ú{7ÌbM‹îA#¢xÌ*>Ë+07»·4ŒòˆMòH—LT} +Š´_El÷´ÕÚý’:Aºç"HrÙ¤W!zVÔâ M­&_ÙôQN)]“p©Ê–ŸùocYsíÃ3ã½á£¤Î1áy¶nÀ,ß朤Ó8™εM¯{Q‹11 ·§øQkObi_)ë7 S©ûóyã·<óÎí„«Gíû¸S´f›çÇý^ɼÕS¶nuÆhÿ›…n:[‹è/›cÖRÎùÛ¼æÇü;,† $Ї^ðù'~n«AaW»ÆcÜ ô åÙQF]Ã!ïľómÂ}Å.&7‹§²UÑF›ãš]ôÐ þ•¬OuRàšòÑÃ8U]ávµgRsëëŠßºhË1Úe÷— +»¹m&ú¬ëØÛ9¡ä1åK ̈„ô1DvSlžªc|¹ð°„‹ãk§š¼ÖH©µðŠZ6PÑ´¸'ЫW¹d‹gUì˜HT®]k‡1®”IQk~‰XKþu,ê‚Ͳo×|Vß +Z {/æJÿ)?kqÅÎÊëùœIYõïy‡AÔ瓆ˆ$ mŽP¬|,.ÊuÌ !döwÖþûjÝ—*'Ð×#­›OºGʉrØ™d {v9‘]¬aaø‡T‚YÏÉ•£Ñôíeóž~•»f¨OÂn ÙàA’ºR>J“yÇ-6lÌxñ-ó “ʬFÂàRMËã:y䉷‰¿aâ’V¼¢-ýó\6ï'X£&lèú„Ï…ÎL„ðßäI{áú/°.ç:›M¾K![ö¬S€Gôɶ—Ýíqªwt÷Þwº}ƒAÖ×c²~èŽÌ²ÖžÆ‚é€ +·M×g¶V0'Âm‘4æî7ëMÆüp3Y¹ÌÒ>0ôXü6î'㊒óµ¥àË0&÷DƒÂ£„D{†/Ûô7f5rä ¢ÿ õµ€” +endstream +endobj +110 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +111 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +112 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +113 0 obj +<< +/Filter /FlateDecode +/Length 5585 +>> +stream +H‰¬Wkݶý¾¿‚W@®V$%J‚í.´M.ÐmQìÛ®÷áÜ]Ç_ßy‘ê±+コ"9šP÷°þõug¬õµºÁ¸®îºknþuìª~ƒ?ÿÙÿõèÕþèÕÏpâop lÔàp ~ûéä‡ÛƼ¼?úÇÑÉß1ÌŸNï®ÍñåÝîÇï«“Ÿ_¼~i¬ëû2fƒ¡½Ã`m Ör°££CøÃGc›zà%.ÇÚ»/3r°}5ðÒq]íœã°wΛ—ÕÎÖ¢©v] nñ{kŽïÏð,x{S5ô·ÚyüáKµqýiÕâ×ÇjPÁÏ÷wOÜtP7=ÙïcøF6tt#Ë÷±ê>ÖÕ~lßç5„jkŽïÌ9FŸðÈS ¶Ç‹X‹ÁÅŒw»:˜ãójÀ·ï!~xûæø +Ðèñš7ønbÛzÄ—ázðýÑà2§–9‹¿?Â×iñÇOðÇ&#~}¨õ¹¨lO.!ªà­<ÆrArÄ:âÇMi‡‹N+ðLØÖ5¸ê-nÒåXÌ©$áÁ¼¯,½ OàúŠÃEæ¾àŠWæÒ{B/+ߘã_p]‡ß|‘{Æè¼ ìx[n)¯`Î[•0ük…Z½`6<£=5[93*Î`Ø’`¹M$=žøÈñßž]V„éA¡qNÌ€ÈßH  ¼›˜Kç‹XÊÃõäù’ž×æŸ\ -]£2, Ìc~! .ÍþFIe@¼€&Nå˜0Û¼â€7.V©)tI9µÃÒ•.ºŠBV‡JËbúžNà ·úÍ0ùDõb0pü½ò›T#~¿…’ðçÇÈg⼺×ØV + غ‡5 + ¾Ǧc +eü½Çó>›3 y7h ¥L#,Ä(‹´s-ÞT÷)ˆÐˆó€ÿWnðÃ…ìÛ¨Ô‰nsÖÜ£‘ôÄDƒ²ŠÀê6’ä·Šd ¡•Íc–I9ÞÌ÷æ(…¹£Õ§d}Ž!s—ìº +‘º’;ÐZÜ›%.ˆÄõBCÇ\^ó릺ִVç62Â-·`C‡òh»P°zÈþ[6v%Õü*Õp>Q­Ô÷kdÇšð«Á•U4ÉÁ"O*–ª‘Ú‘WL숵Ù#ÎTé9QL£>úµ‚úýQªCÄùPY¸V ÜR=ôj/æó]”Ÿ‡Üæð®úTy¹¡6Ì("Ò¤#É>Ò‚Ë2#ä7Eçì +!«çJíY')ÞœÅ{Öé­¼ô%}†°FŸ€IÍîšsw`Á9BÀ<¾çšÎ êG1$™j>Þ’[ÜB‡ŠªÁÍ·#«”I•º¡Í¤ Eíîw‰ŸÙáYI:uÐMåO¶ìÏ9Fߢ\/\DzQÏÞݲm ¿ÎŠª¢IJL§_ÿØ<%©Ýy9`I‚…[Ã#ÙL¥v]â2Z«ŒõNP|`÷¬ e?$ Ú•V²@Ÿ©{èe+‚_÷9 +èhû,xI ++–sT."‡8ˆleòf_I»h܇IW£éëq›RnI¿±ÐPr¶¥Y…¬Òç$É–C +ç&µ aîÛȘnî´iÒ´LšýäCÝoŒNÙt¿øº4y Wa´ŸÈ’ÒærÂXK¹Õð|òþ¸% +–dɧ_v¢5›u>S^“G¬ÔB]’óÀk=÷ȧÀ8÷â`rƒˆµH·dâ®øfR(Ë—Ï}#úµðþfI +¥$¹†ÕyŽÎfü#F[L·@•ƒ¸’éeiŠŠÁ³Šˆjõ5ŠEï—¢-"ò”ÍIM)´•YŸæ"aå½ô O¦ÑI¯Ò3ÕÎÄçî¶ÕŸðÛs—"%‡­žüDÜÃ<Û#£ÎmeI_x kÇ‚tã ,têÅÊÕPZG£7©6 ÿöôWJ^uâ‰CY˜“¸€?›Xb«eÂB¨Ìg¦W1ßq$–ÞÕrÞ``TÎ*ç X§¯ì<{ú×°É'É…åí©äîCÒ2¢Ã]‰(VMq}ê”—¸†ø50QD_b rTRKêVä}EÒú>™VaìF– &8ÍÍÜXZðn•~C‹\MpÑ¿r²UyVßyZªG„ä’‘šK ÛÍ É؃¼Ÿù0yÿ-A¶ñk…ÚL4ŸºÂT ¨¡BÉãÐ(KÔÔÊ)¿¯l¹·îÖè yNrû±ᘡœ "h³ŠI¶ a2‹´Ó ÄÙ¤‚xèŒ>“=µXÛ‚¿dá9Æ Lœa²uwtYªà ©ÌWxGþ‚´ÜcSrÐõkìôïÂÁ¢ÒDÉ9? n‘ÃO8…8n l¿¤‡•Ã’ªø$—·Ò([iÃî÷Lå¬ ð—v"-+_ɱ™ºJ”zD¢‰ž&bE}™ 3a6Ì´E›åíö¼p2ž% 2i»qŽ¬Äñ‰!7Y÷€< „)ÔÆ/ÍG› eKBµÃ¡º€~>‹ÚÓ½P'ãûR¦ÊìþßaZœ"D2’hkÌAhgm»¢Sæ³É²ˆHy¯ËøÄÉ?ëïT§®Bœõ»Ê—Õ”fЛIŒiÈñ4€<QºUU‹‘6[­ëÎwƒtÀ(ÞN 9ö5v,[8îÿ Õ"lô«lÐʆueñ=WA=Á~ì31…/q[ËyêYMl´Á,*’¼ l·ŒŠ}[GŽ±›ªk0ûs#–IŽÂ”Hþ…,(:[HHÄXôŒ Ž#='ý |‡Ÿ7W](ï|n0>o'aùP7Á›v•ý¹r”åŠØ1ßWÀµ¡XYu}ý†¤²vef¼˜÷ÀlëX\×oÒµà%J…'¹ …36ˆì‘ÁÏ{^*J×>ˆ2©öGzGÌ_ËÊØs…Ò¼vƒ»ÂóÏFU¥èQ”é~åÖ±,³Û¶ÒÛÔF±´¦yßI­6T7›‰ÓO8íW˜ÜrœOÌPœ™¹0¥¾HƒŒöÝʾ=ÀÍ8ÅÁ+ßú3NÕ^‹tÀ%¯¸vbåj›vÉ"ݳˆFP'‡¤\‰;̤¿”DÎÞ‚õ1Ãѳ¡ ñ!*¨z¼]%#™T/YÏœçŠð1ršOÒd9ói‰i¶*g81߄ǃœr/÷8hsP^=™Ø®lâ›Y8”¦!Œk,ìe[ÿ$ý¹*?³fZ„‡ÁÏö!{ù!Í͵Ë*çfâ´¥}“0µ ” Ú¼ª<åH™IöBYŽ“†Þže§èø¬\ +…®vJy“;¥"n׋8Ư=:t±N²IF«¶rc,¸­®à†w]=-tµ.(CyÖÃGoá—¼…¦ˆ¥zü"0E}šëD¬ëiªSƒqʧqë!Cw§ú½$E@LÍÙ¥IÀP%s$âÄ0•ï6‚䛦©íÖ@j2$óQó æRò`É©jm¥*ÚL<ùN–ÑâÆ«n9W«îëÔJ‰»@ïáiG]d#v¶ÀÎ6Ãv`Þ²mJyœ·/ OäWÆYŽˆs“²¾#´/Ÿ`Þ›„Ü×)Õ3ÙÊúXÔ²®˜=üb?Û + +ÕÛkÂÚC8mšèV0jÜž“žîG«ˆNv|Ü°£.ÉFxµÀÜÄþ8R9Y¼49ÀÒÚ&jšÓšÆ /“ÛE+ÊËt‚b>b-k7Œ^x+Œ¾¬á¦]у}ÏM0»¤h.Õ,[²ì¹aP{¡Ü1ªÀ (¶3«Ù.¸AZ³ÃOÍÎ1â.q¼öG”„V@ëg y=Bl…­-a ~ 6p°ýlt@ù?íÕÒ· „ïù:F€µII”Žú@N=$@/ +¯½vœØ®»ë$H}9/rHIŽ’´—¬³+RäÌ7ߣ€Š†TO‰­ ¼~ƒA£C|Å¢Q;HÏÙ„]SŠ‰\##µµš}>ËfMm7JH~™3Ú0*„kª:2,O +1$¸ûÈsµr/ÅÆ⛽Ä*#·™ƒI±MOFæ(…,6æls9‡\[ºÕrö^iK8WD®S9g’†âh—ôo6‘ÇUx¡4+”Md©U.cGô0·ì¨¢­. 2—°™† ¹áÜZ3Ÿ×lZ“×9%'ªfƒV‹L˜²Êׇ•©1 GéŒXË!kуl¥'2sÏ´-ŽC‡ÂÕ ¯Æ?Òέ5Õ«¹îW– Oâ¢t“&ƒ³ÂGhê|‰9ñÄ¢Ó÷ýŒ%ÈU‡õr+FlP™O@ƒ–F\´÷µÏyùíPÞ ,›ô¼Sl [Øu ¼ìß5 +çGÕFŒ¤x{‚H9&ŠèÄò‘Hˆ›ÆS=U3™ˆ®&=j"Z% 9:SY\)û¾èW·B&Ï]mo×ÎéŸsuKv×gÞÊ‘Fý¡Mï¨Y)öêž™ysš³™f\Õ†ºÅ’1C½›óƒ,#-ÓœVvu'ÙËáDà*(aOÕ˜ ('ýqŽ}uýI—Z +?Beûö<®±…–I˸a׆a½Uãw¼½/Âe¦JJUþ ÚòNÙ|=RµÅ¾i‡`2"šzj”þN;R/hVÐÂ;U³† ³¡+a”²TÏDGy;LO!…-}!F^à4Ÿ›Çº#¯-"  ‰`j28þðŇ$\óª—f•#k4 Ì”³Ñß +—ó˜]ã1Ü»6MáÜkÓ$3NŠ†®ÁÀñ†lÃç˜;´ ÝÁXZ4áZ{¾uÎû=¢²ÜøÍuM]fe§˜@JOǯï÷eaùxåþ™Ög‹ù uósäéB Sr%ê#^s m?»ÇʘÆqÁR p`Þɦ Ô7¢§['½xÜôC†œÐØ·ï·lÜç°4«° )9³4üù¤Ö”ŠvÕëðòªpSà‡åá'B¾r¥QfŠžÿqžU[kÈÓ%£ce_x8hŽCàœ°(,±‰„΢_VN /Àð=N`ßämîºÕÕÔO™1N6“¡š ~"]mø&hÒOì&NÁ†Œ°£Ñ9ýñhbMÙ +Ô!ÇS·æô­”]Kº¡”9y{Œ#Lø‰v$ ¬äÚ…kÏ“;±6J´†¬~º }2À!£à8@œ JÒ +•EMâŠ742ÇkRŸ"Kµ™ýFþ[WͳàBË}ÀF¸ø-¼¦ ²™×Æ—…/V€ª“¬¢¾i'¸™eŠ`zÞ„ÉÎ"hÊ Ñ(µ™Y82Šî`ÏÙ¨(=~®©æ…×CûùM^ãˆCÒ¾‡ä‡Èà1ÌY ç7f¤5“¶ù Lq’ ðäEÜ,{J@hµŽ‰ð¾Û!s~¥Ãgp\8´Ü›ù>žÌàè}Ñ&5ñ=…¦…»^üãL;Üv#P§-@UPÚ +TÛ–@]eÌÖ¨q־à +@ `ËM/4Úb¡ÏBH3^Ò"“Šæ>¬Pe ‡ÿavÁ<³*1 ª½Ÿ»ìÜ´±sRñdÐÎï‚»zRøtìe={¬§Œªg¦öBEDGª“¨ôT“GH“J‹“ÿQhW±ÆĪָq)ë²…A\îøz#"­)œ›_Á(žQÖ‚þÇ´€Ä]¨[¼®Ú@­ ‰ÓʾÅ"–59Ĥëà—@ÊÎÍ\’^275)=þ|÷Âü§X„ÎýæoÙ?ô¥ïŠ¥1G\A£ë1·‘¸¤¦|˜*€®±~§•€‰ŸNÅw…lF›ÍÑ6º5´y«rB²k8¸i68%FôŒ×(qˆ–Áæ¦'<:f¹F—" ~Îè+ñÀ é1¸.Œ¬LHÒ™L?ùW`ÝÐ(Kh POŠ¼a»(e~&eFIYœÕ-Ò ñÍ/IÃÌŠŠ!ÂÞƒ[ÁùÜ +·.Ÿ :ý¨"ÁzØÑHé1áYfœÊçÖ’ŸQVD<45Ñ'tLuaYi¹Z©– 9!h·^Œ«Cóó/©]VŒPÉ0Ñ!…v®:Þ¼xõÛ›¶º9½xõÖüi+S½½~a@–±Z`†wƒ÷¶êº°Â.ÖùËš*ñ>ÃuÏkÌ0ê Ä)j)ä)¸ø#j"ø ‚P´‘ÊM¨à>Pó|‰œÚ€¿tð½§á;ñ!ø‹ù :”φÕæ©dÕCaMO³‚C|_ù~¡Üàà¸öNY_`P nA |<À3dW4¨W ÊŠ?„"›vʪÿ²ZszÅ®ÃÚ®ÒRhalé  §˜úðH—Xì¶'Þò/dxä¼u}M®-–Hááº$Uöáß@·ÈHPpzk'棖øˆ^Cc+‡åVŽÐÊG9®utzšFDŠç[ñ­dîI艥«k¸‰º÷æ^ú¯TÝM“¤‹*ÕBÚIÏC¯A(S@WÝ0v@+T¦ƒª/Næ'v¥Å¥üž¦Šïgˆ¶°˜Äx ' +Õ@ +okÐmÞóFçÖÊ+ûx¢ÞÞŠEïÀ T «EƒªV[ÞèñŒó0R“éHò¢zIGãD;uÃÏ…„Ö 288<ñÊ[Šlüß­-šÊ9i‘[mQPç4'·uOhgÐ?_ÖŽå˜Ù4(«c[L¶ô©nù9GlP‘Ò:úùpB±;ïx§ü‚ÿ +0À"u• +endstream +endobj +114 0 obj +<< +/Filter /FlateDecode +/Length 5399 +>> +stream +xÚ½\isÉqýŽ_Q»#8ƒ®³»«—¤¼×’–tÈöÒ@)â p†~½ó¨{º"@;Ä1Ó]]•ùòåˬìÿþòúÓñÁáõ?ìÿyÿõÁÝÅÍõ?Šç/~ÚÛÿÛAœ\‰ço÷±UÚŠ­1Z\žˆí0Lâí¡Ø üÓíþ«AHñöX¸íhÅÿÆ­fÖÛÙ ã섲[kࢳ½Néþíß÷^¾Ý{ùËO06Œ_nñËkør"þ±·ÿêl/.öþZ=zo²ÛAÏbÔ#=ÚH·•³ø®¬¸<Ç{Û æ°_Š{³µÅ=³Ý§ø.X­ÄÕþߟ`Aø] +¾]Ï“£`ã4qx¶‡oŸÑp†Ä©x³n”¸Ž'£æAá|ÌvvÊ8î‚kàUœe~×&¿mØ®>eÿ/àÖ×ç'¢ûp´yñ²ßÿ姟_©õP99Žœ­vc‡y;k$<æðŒÀÿ>¤wÜëýW’½?ogFŠyØNÃè´™ 6ßÿÖ=ï7n«»?÷Òl§î?D/‡NõRnM÷/ø3½ ^ô èé^öhǹû¾ƒíᶴðý9½¯»Ÿá;ا{Ýo ¿Î[Ùýüfºß÷VmU÷¶ßŒþJMÆ\÷oýÆÀ»üÌ?Á‹#ÜøÒÿOñWøIuÿN7zgø¦ßLðöâ#)e÷FôÿýöÞ`Š¾8‰hËŒð«ív¶€F@ådÐÃVM#c1\¢°Ù%Æl‡ú’Á=4Šuö¡Q,¸H®\’Aèè|ó‡ç BÒCh—0¤÷_) +‚Ä,¤R³›Gáf—ZÍøaý£HŒ°þH•‡Å0SƒYv2mÃê *2ÇÃçýWš×ðcnãŸ$ØeêÿÖý Á8vûpvÐܮŧ e»+qÝ¥½„ߎÄe¯BáÍ^êî³x×õRÁ¯Ÿz„×±8€‘æî¼ú±Ý]¯ðŽw= ¤ëÇ\òGôê' ¬ î„ ‘8:>²ŸàK˜ã¿á +®+vð8ÕÃã(Ö®ð›Æo&ŸážÒ«ç„#ã-‡½Âè8·=F!=uìNa1ð¤SqÔol÷¸~ìnà+®KâJ¾ˆc¼2<øò¬OÓð‹ó¿œÁ×±{A'ÃûWâ¢G#Ѷîc“ sŸ'G<99ö$/2L cî>T“§Äõ÷ÈlW"˜ç÷AœÐÂ/{"¾é†.ø¦Ÿàò`4äCïRÁ@@6Óµ9{9{íøþ°—Á/͹Aï9r½IK¸€;&&b_<£"røȪ§°0œé!@gÀçyè F¿¦é4¡5 <ØàD×æ%ûö¸—VLœ7OßH+î~Z©‡m¥•ñ©´R<ø7H7àžaQØ°äÔÜ<$"òߌ'^DtcªWˆ˜C¼OÜSŒCÆð!0…CZxÑÀ8ô,ñ E•'*ñÅ’‰IûkO4| !#t9Ám›°ºHf‘ÈJL±!NßiP}° »fFõ”r¶ÂMÈÖùÅX˜£'C¥Ka-8šÛ¨ËJkjòh ßDöÓ½d/ÁðKtÖ›»gâ½z9‰³ ráQ†îøŠ*¸ dìK(†€†kÄæôB’¯ºù»ä’Çñ}BÌÐæF¨lhn¥ò ô@.)—`ZHV›àw°ÍŽ_È‘âµ½±Dâ¸Ä` R»œâÓ(Ô1ÇÜÊ•ŽÁÍD8óÓ@‡([L€]™!ßàã+.º"ì] n<EçÏ44úï½1c +"UQX‡àƒ^hˆ¦Ñ(ÿÛò’‘OÊKJ?Jîšän=lc^2O–»Åƒ×ä.p‡&GM„(Eÿ ûã&Ê +ÊŽhž…Ê’ˆùÒ‡ÜbXHWGwãE]$ë¯J}Ä<ÃðÇ€ùŠ¸+d<™I¦5&i[£T…â<—ªMªtncT¥>Š‹+ÎD\n‘!YFDËR´’®¼ñ×1­x–÷ÆxÏçnMƒÎAޜӼÖ4¨Škþ&©iž$5íl%5ÍýRsgØÖ~ªÔ,¼Ò>ϼ!µOfÙïék¨Šp ÁuÿÄŠ¹O^^l÷nÐn¡·Xñ\8ôr’±JÔ üHì—%è-"Ž2‹Íl‰9![ʶœ8d÷;ñâyêx!å|r$X&kz‹YçÕ|3-fL‹iîÔDvR…Üñguψ¦ñ¬‡ŽsmŽ«`ãVac›a³Ïeß-㻪KJÙô®#âùRð}›ÇîðÆ@…? ÜTz¬­6°™¨¤n¼Æ¦,¿½7àÝTÈÌCÌ}œ+ N¿†„=Re·ÁÄò®‡„Þa€Á¤Gõ9¾‡œîÖPv¹ÆêtÆên¸8F[ÏæuT‡àôŸ!ÿMÄïX›ÜÐã&|Üå‡?¡ùœð¯g8’7aúÇËq Dmø™°3PØÍAX¶øê’^z€iDoãt¾â\¼ÄøöâTSqdLs‚±jF·>îM5ÀQö~õ¸3lcª±OUåƒëþµ'Å@¼ýË0¡*%-”‹ÇU0ÃU¹CM…HyM‚Í‚¿¡"IÇ ¡Ôau +©(ÎR}nŠR;¶èRj½|rÅ~ãÎÝšÔ+iCl›ð´f(„ç-M7Ôr^+±Í“µ•¸…”:Pè66NáÖâȘ'cGœÑ;lˆ;ÉÙ#$^áÎ’Ô_¼}:U4©b,A ÚØï­Žéè2 ÞM, ÅW_¬V}PŸ iK(9:˱µBirŠ½'y8…|"ç¹rJcòpmþVµ¡½¿¿E`ÍzÍEý13†È-MʉºÍDc••O‚Š¨UFJšx*mé‚ GfD^ÛØϘH¶Ö¦Ó‰_}CkcºOçÄIפ?\5Š8C¼Á0ütÑèÜ)ßC£Ikž´ñ“–aC5›²rë$Oùמ6JzE ܽ½¦¼Œ¥®¤¹’¸ÁÅ@L Ï]“¹i?f"^5ÄŽWä›|Ï ÿ ‘'Å,ö•5[¯zG"JrÀH$&ÜŽµÜŠ¦"ïë< à Ym,£gû£¦(ÜÐ è'G{OÞ¶€ë¹q˜¿ˆºìŒgãߢOTHKø5 é`z¸ŒÄ°AÀ"NUçŸËªð‚è献§ž:»FG^ÝHZÍê·—ÁÊéö uNÙPÏÄzÔU»wm˜ Üf7€ÄÁÍJšÒãm±í2aÀ™Ê±30iHpƒ–¡ð;¤­l›œJöo²‚è XlEÚq¤–îóõ†;ûØ +Ƈ[3ø¹`ò…áÒt6–ˆ3XG9eb‰ îß ¾8GÄÀ(@ÂŒŒCÂrD`O=…©éNÑ{ÿÓ\ßÆ@ÄÈæ0}Üž‹Ø 1¯*ÿäôÌ—ö…;HÊïI0¬ÙºŒI~j˜¹ôåKˆ<›€ÏCÐTNñÙÜn¯Â‡GnÁ¢“MX,ÓF•ƒ²ËA‹+;(‹hÞꆵûï– á!¥ºkoð"`¥2Zt»Ý1®&lè;¶ö``QhÅ,‰ É¡¯+ÏDœFï¡ž›aˆKЈgGdF; iœÚçÁÁ‘“B Y‘„ä æÂ÷ÑêpËâ投éVüLGm$«ã„±Â­²è…¥˜ ) üšôÚE›Ðt:ǃ\Çž?Þ|©PSú ÍEÆ¬ó »žˆ~3s Á­Â;Lq7á¡£Å1oâåŽÉƒQ_Fã`û`à›ÆçþJµ°îÞEõá_vTÝSäg³”§ˆä˜ ­R²f½ÇØ!ÈÅ_p33ÑbÊÌ1 ¾a¾ñUû7‰3æ’`~^/ÁTCŸÀsŒñ£àQ4j Ì&˜Uª±@_+]9¿MDcs`9·,=ÄTØY¯½ë}«À·S!iBÔ­ºÇ¨-ÜÛ.¿ÌC>/ø¢€6ÜáÀ€ŒCx?l)æ åî8±QÈ=-".O»C–VD` ”¸,×Î.Ä¢‰Pé‰5+"ò*æ´ +¢‘˜îxŠé>b¬`»F¬¹²:ñ¼)V:Ó8¦ÕÖ6ÒY g$C–߉ ç>R¹ç<Õs„Äð¢Ýõòú"Û`º£Ö|IžB|Ú ‘@ E²ÒÒÄü·L qdªÏþXãU­k¢Ç~¥Å¹Ò¶²ꓺ¤»Î«j¢þ[TuÞjô`ILc¢x—O +$[3eVÉÌ÷T2Ü&Ù¶ái¬k6©MI4r·£têr€É%¨£Óø$ +‘”½Mž½%u%ZòwíŠ5ªw¢,&$b¨at…¼R@%(ç’$ +›T™Â¬°’9ƒ¹Ýª˜ö§À&^ÃÕœáÕ ŽˆäIf.6bAçÝÛäÏ©Eö–~l”½sQƒ­&#<¥ |3{•s†Ú]VµÎ +g –Áí¤žê.l<»{d/'úP\y¾á·ÖÇíÔxO'žÁ Õšª¯Xäá)fˆJð#Z[p,ÝGégÌ«ÑåZ4‰XeRÈ¢1<ÆO,BGè¢ÙÂB ~AÌg•ã5m/\Е:=ãÀÛÒT*ÝØ–¹ÆüÄÐpô„ +IJÍÀY—63Âýò ˆ¼˜{C,‰Ú[G=÷]uN"Øì‘)‡•ÜÚ +µò­w/5 /wC9…|¨R}é‹}ø[¼¤í¢ïT¿¿SʉŒ†–î´T¦»åV“%õöï²”ç¥ÐM¡&X# +dÎ"v\¥°jÚA†¶¼Ï +LÅ"38å‡d`œá×XF{@x8Ð|éôx\Ub‘1A…ÐÂÆöGjoÇç„ÆR}¦çJ¸ $ÞR”˜ïmè—¿.XN{Á›ŒÎ u“ŒB¨íô +¯ý©FçL)bljMæ ŠÐ8M%W]cŹ+:ÃämÚèü¢s¢çUçãa L³Æ +‘ùr¢#Wä£C"±Ø+Úª#·k‡TÄL±•ÍÚ´(|G$ï–¾­Xâ{´ü\F̶»¯Ós“u¿ƒ^Ò˜n=ˆIÅNѪ5U¾ü®Å à“ÐUç ­.*lßnÛ`¥›4Oª6Í3š‚­Ô`~ö.ÓÅ5êV:ÎÁû¡âqÝ]?cßo+êû…ñ7<Ÿ «bÙ­˨]k&ñdÛ[ +¬¢Ýx$Ê­ˆÆê9‘TˆCé0óóYÞb‘‰’2ø`=ôkÄ14ä½lc2[( +æ|¤6xåmiVÛ0j’…òýžíw® '¨§¯~½ºJmïsJê –î%ïgíÙ2jXÇÓa·|gÊ©Êæ&Ÿ»J)=ÞH)cŽ&·ZG)7VrØ7éËMK¤K—´2·¦Ý ÒØž÷}õ¢%ŸõùóújUÕðCwÜÃ=ó¶LuL +L-ÔÄ÷(ä1j˜„0˜‹mƒš‹ÈñwÑe†U=vüUÝÿ^íð±þMjPø±— +DWˆö¡ñ1måq½”Ï`åv®“µM0äD ‘Š*Â’Á)›#ΟoTèÎ;¸Är+ÇŠ²Øl¦SgWÞÜKd§Ã)Ø|!Š¿ &ȱs¶5ÀŒåïáz©Í¨yCMój«KA9êаžÍò¼‹‘G$ä1ÕW» 9ä:¨±°éæ’Í\›=HŒ2$_ó誺"[Wzõ&ßö¸–ËÜÈöÊq»Ð¸iñõ4<¼/Sº¹m_f*jX·ºá§Àι*\SmßÐi +»›‹®M‰:ÕOì«å‘Oï‡U¼èËÊj7—rÅ>>÷ÝÄN1]Ô? ߀!=Ä}ì\”ø½àPÝ…ÍßLioÑiYQÓǼú¥+°Á’:Ó‘ï‹=›zMdŽØ ØíyL;¦oŠWÁû̆V‹yaÃ’`uÌ]UÙZT‡(Vþ“ôÙ^ßA9…MI+áØU¡^booq=©òEøb\¼§½ÏŒeñtÿʦ6+ªš1Ðwvwš~m¨Ð $U ¢‘¤ÊÒU®¡MBÁ9àؾ×ò ‰ú9XsEŸ{ŸV`²•ç‘omÁ|Ë‘·B{í6æ9óR£‹7‘¾ˆb³¼}kZ­lÕ-mM\a:DVÐõz—ÊJ®߶5ÒÂò¤Á:X àÉÕæåý'Aò"äá"­Ð +õ=õÉÏ…¼h!/¾B-˜Ê¤5½$³ŠÁ£M89¦öx°VÛ^qçZsˆŸ‹A°„³¢,ªÑý¾¥Ó„‰¦¸DD[ Éòyéò<…HjØ[sáä™uëŸÑZØÎy_q\žîò-±ŠË +üÕ\žÉ»´¯ø}Cíÿ¶±;¯6I›°PTõrµ<“øÑ›LÅØuþ#Ü&;)8•l%h<|<^œ±YŽÎÞWâ2+–׊ëðÇ_òCâ‚<(“í°p¾Š.,¬?¥Àgœ”,„©£OU°u߀ÿô™|\ßÀ-õX¾[ß@5è ¨Î›x¥”>µ°ûÉ<.9›Àg[ÀW ¤ßÿg‡vÖ +endstream +endobj +115 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +116 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +117 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +118 0 obj +<< +/Filter /FlateDecode +/Length 5227 +>> +stream +xÚ½\ÛrG’}çWÔcW„v]»{Ãá Û”¼šñØK³Ö>@ErÅÛ€¤hùë7/umt-Ë»á0AÕuÉ:yòdVAÇßl.ßoN¾úêø§ã6Ÿn¾þZ|{òÝÑñ÷¯Zq~/¾}}ÔŠµ6N¬­5b{.Ö­2âõ©XµüÛÓñ‹V(ñú½ðëΉþëÖN(eÖ¦w}k„vkç¼j¡ÑõQ£­|ý?GÏ_=ÿÛwÐ7ô?žðÇðã\üëèøÅu+Nnþ~tü3Ìì‡Í͹hÎnVß+ÿöÝË¡Ìàób”}Hz³%GŒ†óËTHø‡¥À/:³ /ñp“Ãõ!ý\ ‹x\YÐ-,†&¬ò„utÔ²qz‚™¶0Þ#>©™*枃;­¦^Û|Ìô{F6W4‹€ûBë2ŒáE ».ÄÒ±„AÏ ³hò=ÂÉ0¦‹e?])“W|jÇž2#?Æ‘WD=ãˆüòHhU õ‚$à ë÷cÍ"Ò¾álÙ¾.`ž ÚRTíI½û‘,ØK+ 0|›HñTH n‰Ì)@ÞH +'aÝ‘K Ç1÷Eß ïy¤·d´’ó$âê:‘'…È8(@EƒãÈà€ƒ/ÁŠmÛ+­Eïs˜éÀ93½‹D!¶·v‘HÑ×»0%Œ +ð‹¯=í3Ø bÙ¶-ÚqÞ7b‹‹Æ\a8¹¿»eªuhãÁ·Ô7ëekTy¤ßÖª¬ñëÖ\¶w]¥°^ÓnF@K¿%yB!÷à•"Õ»CÔ'B2´0|j„J‘àÃú€wꈡP †?‰IO:Li¶ C#RÛ¨He¸ÐYöà@ôŒFq‚¿ØæDt©_h]É»pCŒ! µÎ…Ö‰ÜIfˆ”Ý­”ÞÑ\£È«ðÙwkrÖ E”muW»yå­©dÔª“ô[P¦÷0Å7£Ó€ÖÛͪÍv*Tìa°‡«ÙÃEÊì‘@”ÔZ4Ý@lÙ­3±1ƒÅÍ4®Y SdŠŒŽZI%²u[M!ÿ-=²¤Da-^ d‹âí"7HÚÈÛÏXûÓ~]S‚„S±iè¡_S»Ù“‰Ð»Ï‰Ë‘¥'õú=õó¨tÚR‹`P=‹ +aì¼Ø} ELÑkK¼-™2Çœbd)© Ú= °2´J뽸“ƃ”âMÄÄâ|wÙ¶žÖ‚È.Ä75[¸ÿ¶ +s›ë,µRÜÈ"5n ²4m2y08¾dWs‚Œ(Ê8“Ö!=«þV»4\gj§…áÐ,™(Ïë÷UUdè×­3j ÙKb ±Ä N0°Í/Ò!¹hCÀÝ(êYá†9dYAG"“öpÎQÕpúåà½{ÚpÃàA:~‡vGpoèÑx*¤|&$õ.€RÃß¿“{ÆN[ÜÚXJY‰Ùno”žÛº`´J ž ø“\!Co©p3õ:c.r×>gÎ!E(œ'S6U ˆþÉN‘‹BüŠ¼ ‡ÉÞ#±nS p” ú(PxŠ6;`Jºƒz¥ò$­Vu„e¢ê +¦ˆ+¬¥Ç‚QDsÙ+H$¬Å?‹ ÒçUO¦1¤äƒo•ƒ-‚A7Ku•r®ïGû >‘ˈó=/­hfn•VA…‡ºé3] 7ÖTÙøgâU¶ -m_ÎAŠŒ$Æ·T…Y´çoJÝ ªs–~Wþ _+J!Ðýë±ÉkCìÿ6êˆT‡é\i‘ŒVÈ!.’…ûD©'1¦¬+ÃEN†åˆ cËPnh¯ç7Ô“Á†¶^¥Å*O²ÔóAu…HȪo¹ƒ!.r{]*AOJP•JPåÒÐ78f—Ë5lÙ˜´LØnFaeâJÜ%*3äŠe…$ÜWSí«á}íË}õõ¾º‰}EŽ[¾,(†•¼qKa@µ•¾œOB´é õ §Þ©ƒÄÒ)VDvÔqÒM몥à6;¢cWI±~Ñ9’¹ØÆÙâœßr`ŽjhÒss¡Â‡˜¨We¼ ÙÇ”£Œ!覟Ä5ÎóNÅ•>p„ ¤ÏSxÓH‡©zYª‚GÅK´ò‹]´µjQ$¨öuY$PEæ: ØÐÃK(T$ŽÃ}4Í+¡%‘¬¥Ãu)é¤Û$çëºÆ?põCó#ø¬FóD2¯öÙQcY€bèEŠ„W0-"ö”VSh^fÍ";~¡Ã9x1/_—ËW=¨-g»ÖD9ºÂf-;Ô6JœœüBIz-ˆ*+„JMN–‚äT´„ë=¡Þ‘½¤BðF"úøç’°Å],S Ê–îûiÿ!ŸòvmMgâÎþs”+YsÂÌö[ÃéC!©€©tt‘\È.ª3Ÿ! +"täzGF5“)ÜÎ%?e\)h‡‚T»—hÞŸ0^¶eÞ+âç¡¢Gç +Õ<…*[A.õÔ2D¸ +óµV倒 >圓å¼ÙB=;.2EuìЖ¥µI‰X Ê`«ƒ•‹q!$Ug7:LÔáD¹P +ºd.3lØÚAÿE6Þ_÷.tì6 >ü›®çcd'¦TjoêGÓØPþöÈgOËPàëÚ{HðDP +ÃWEUP0À’(¦4ŸYMÅ\ÄϬªòù⨠ꊚP3¥»9˜"¼$½®øö +)0VB|Y»©’`ŸpË$˜Å M«J‚ku{¨n(b&5ùS‰t,ªs osä€ZÈt6f E™ÝMžÜ B¶øØ-fÅÓœT¨˜àjÏ\]¤Q騯ÏëJEÚ$ •[ºe|‰#XÏdÇtÁSˆ€!sK0­Ôg]öH§Æ}yÊ!ƒý½†¶à’¼ÇÞS L<ÝY´ýUÀÌ£U nÛë‘£l ×k¹âBõ¥‚bw2‚LÒá`ºø“Á¡ 1ç£Cî±T÷f™A%Fcp>ˆçÉÄÌsb¶AâëñG§ÿ(æBhi®ÌEÙ`Ì2õiÎì……ýÕ­e8âÛn ƒA¹hù¾Ú¯©„bó˜Þ‹"gØÉoó)Oyðâ‹üï*. Píìk8êåžSŽ`é ³På³:à†KCT¾LB O+°ù<ªè•ãU*4Æ{QÚ1S$Úï^… +ÐtüTW<5Y# ˆäœÕà¼?É_Ö;¢|&Ž,A€n—ä–Õæ/K-µ*)ÆÏËÏn«Ï/;ö‡É[ºfG·ýv5+G°Ï A]=•RÏUŒ9"UR˜Ø‘Ÿ|ðSPFHˆmq±iD¯“E{.¦çË£ÛX3ÇÄdÛò*@.½Ñš2“ó‚ +wáø§>û9âí÷ À +JXTjˆ¢bÓd¶x´î;h?´~ÔÏx˜ñŒ†Ml½æ§`<Íãñr%â\áÁ·´ðé5­\SwºkÅ•xujã”´ãÉè¾S80³×ΨüTK…œeùÔª| 6pn”ÂÇÞ­NžgÓ£S¶Ôs±Ú•Eìlç\n>LjéN°ŠwS)€•½öÛÙžt½‹6#7ý)Ë4?apí›ÿOÃçjÿÆWׄDˆŠ_HZ÷Ís´m^’CÚæG>˜z/?Åî¾'(L% 6þF:Äahô’„8Ê ä|,„ã5⯡ý<¼þ—ø;ÖšÐCŽÞÇc¼WX/žé²Ã.éªÐ« +Åx…{Ý·üä‡uëœpXsó¶`gÖDûŽ‘›Ø¦š›X»nwšøþ`/À6z¤íP/Æus½Ìó¸)Du‚‹÷œŽ_˜Í 1€™+䎼Ž1óUÛ¶æk±$tµ¬Ô-LÖyßn·ÛÞ.ëÖí9W=~aS%0\Øçß”ëטþ´ãõPÉL“xbÔõ¤XJGèO”‚1¶¢÷­ÄV—’Ž\ï1À{G¬º!‡¹ Éo *Ü6¼áÇ)ƒ}Ó+_»b­EzwˆþO­é¼ÄûøÕ¹Aò/4rý+MCÇ#)Ž;I©üÝ ŒPmöœVdҊ‡Ws¯$•Ý.% +•SIÅþKš‹_x¢×yyYüû5™<£Z(*2ž Y"<²LØêQÙCñCŠ³;l`@ Ê^Å Z4ô…¤©ÑíÁÓ Œ‚@l§RñJV¨ ¯¯1(>ÞHË.œæçÎøÓ`«wüÔ’ß΢?Iw\Æýü÷e î^¸h3ÕïñYã`»ž|?Ãgûý>;îv©Ï_ê³ÕÀ¿6ÿ!©6û„[Ø°»âÝ(å©ÊÊC¬UÀÛÒms¬(GÏ$ÿñÙV(ú°•œ¼¥‹œŠ®V*.SAëŒO +ï‚ÒE•õ.®¬\t~þ"B<Ù^s‰?ÚŠâk‰ÅðŠ7¶X†@çi)? ÔcÂ{Ê5 ô@8©Oœ´‰¦ýc®Þ¤€\ã±ä9_ îõx‡Î¤ØÊÏ؇vГö‡Üw“¼Œ:û˜Ô½á¬Ò´¡ÖB= Å]ËP +ÅöüÖ ÿñ„šÂS‘³´xÝ?z1b#]Ì5qð-ýyÆmÞS©rh6—’kcX[}6ú g ”zIgBW’Y6.“ï<ó”ÄžÃ0q²=éûÔÀ¡‘9 HÓ+  {Ã×*žMÛm$Æ—£Û`°äáô•ÊþRhsV2FÚpi…“·M~×Q^m8²¹ÈQ ç¹áä½›"&fì(Å›óãÙ°|¡‘~—TeN…cÙÌŠ²÷ôÍ$|8vÄ…EÍhÓŒ6|ñ^Z´ò2ò7úùï£|ÛÛ˜|å³—òwº]HùÆ~!å×ÏÉ´{¾ý—(¹§/öuTB.ãBb{h ob³|÷$²3¤öÐQÐCá½Z#%0¹:—B‚#Q![Åú–O +Ì'š¡Ê +UnèÌ…£ƒAcLHž«J`û¤Ê(mz~Ø"8'ã}²{·^õÃh›–•ŒŸï¹D@×¢ŒëT’qRÙühÊs\ª¥›¥<ÿ Ñ}K—Wö›6¡ \áíÂ&*2§É³L±@DƒÑ}”»eЄHþYtÒ}8ŠËóÅ‚Ï “ý +r§Û¥tò¥ +²xŽNª¼æ:Þ4jIú ±äߧýYé®ùD¡ +âŠÜ=|, +D¾øšò£QºPm1Ôä-e„Õ3!—³ñZî?!Mdå7æ@>ðÏR6§‘w”i†;ÒŒNÖ‚§)’;Y¾¸Ék”%g¾\„R;þVÙ!… Эfš‰ +ß‹#õDZ« +ØÕŽÌPù.‘w ˆ0œÊ\‘“ ü +BH'+Z§–!Ó|LaeÔìœj°qzU6†.b‹­J [&¹ûP‹›LvÝŒi²RZ´£nœ˜ðM˜êÒø¶®7žŸQAôæ4…:Ô_\ÿUX 5 ‹þh<,÷‚,Gs²ÙÂØæ’4û ߟÀÒ3ݯС¢ü@Ø}”dA›ºÅö” +Æ¡Â4>"£à|m?¹g€Ýâåéz²–ÏL‹ih¹¡L7ïèúø‚WpÆËÙòÍ…ÿ;"ÎòX”]0sn04·˜Z@ço¤t½*zü/bÇì: +endstream +endobj +119 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +120 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +121 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +122 0 obj +<< +/Filter /FlateDecode +/Length 5552 +>> +stream +H‰´WÛnÇ}çWôã6 N_¦g0 Ø’m$‘Ä^ÄQ`¬(’¢%î2KÒŠýõ©[÷tÏE)6h‡sé®®:uΩó¯N7Wû‹õÅçSç/÷¿Ô—_~ýâ¹:ûzwV«º²®ÿ½wêt}vþݵº¾?;ß™ŸkeÔîꬮêºS» µ•«*T-|ÿÚªQ¾wUïk£lS5M€onÏ6¶Ñ»_ξÙ}ó=ìôبñ[Xÿzyþím­^Ïþqvþw ïåþp­6—‡íw_ëóïŸÿå…2¾1e¬ +Cz‡Arc¤å«Úõ¸…1üªQ]ƒ÷¼jmWõ}0¶mît]ØKÛʪÍ^›¦êÔæBûÊÁ]7úʫ͵ޚ®2jsºÔÛ@_Üjcª?Ý6ø{ÐÖT½Ú‚wßê€Od“Ó¥º‚M¶+, _ÜË—7ÚáÏkmiË÷¸Q‡o;ˆä™z¡mÀ˜^hW«Íꃆ¿Oø^ÈÁ‘>è­­q»üÐÅo@|ðàÈÇ=@TÝ&¼EQ©[½õÈ^;‡O~ƒ´XŠô¶Oö+œÔð[>Ã=fÅ` +³<Ѻoô¶—WkÜn/ÇyД飼>l0È|×ïÐJkÒȦoÜ+ýïÝ_ä>*›ƒª”ÌCÆøªM"lq³kM9ßr*pÑcJ0Ø›ßå éüŠ!wÑ:¨qò¾Ú¤l)*c?.c¬š/’>­« Fò"[~ /BñED趵¸úA=Œá‹«ÀvË-c‡—>«ql@|ó¸¼GÚp0HåíÌb73Eò`S‹Í›yÄp*£z¸"\C+9|ú¨­Ç](-¦HmÌ6+–5Ö\µº[â§NÔ÷ ƒ-«ÇòA‹GØRL2?€PeaBB¨'4' ;É€‹7²C/Ðö©놈 x væiø‰ B(w´£:åöI6~§bË«7zÅå„wøP€Üæ@PSL$îa: + ôˆRø¨åýbƒìc6Ô^ Žò[Ÿ Z?~Ìýàð·R/q3WÄã%Ɉù4ÄcëéÊ—2vB¡ƒÀ_ úQ&÷Duî3Þ•ÊJ´„*!3 ‰ß±$Æ‹€sâ.|Ô|¾Ð]$Ø2¡ÔëË5È,?ѹHŽq¨ò`¡`L¼&Ý}‹] —ݪ÷{Í” ‚»ÐgdTÀ$ÜòE çSAý ®¤üûJú&QÑ¥*H±ËÁ%š,Z9j>‡„šÂEÍ£§æMèÙÏ x/ú`”ÿ˜¦Ì¡Žâw¢ËÊÛ„ðÁMïçtJî¦ùˆmà$Q™€7;‚Cä¡ŽªÛáSI!ÏÇ +5Z²Îb$-€Í±:¦Æ?R¾5²Z[äº7≽aËîEXu¾r][uào òÚ`©òrÛþ‘ÝÚRâí\¦ªÚv¦ÖF­\½ËVÇIİ˧ÄʱjæAdÚÓX¶€ŽÆÆr‡µè0‘Ò?.ÔFít°UÏŽ© ÚJi°07Ø›ãaÏüž?ü€ýç©Rý^ÀÇa |ox#··Z8ÁvÀ?òåù-1#l«^,O¶køsqÎôÕZtôEFGc“éÝ+@ tÊA™Ü±B$g˜qsBPy r³…hÊ 04é;ø,Î ™­jÑŽÒèWeáñ(`ðj‡>ÔÏ’ñ”í÷±o)L²(¶c£û®ý‰ ´‘12ÐP©qaÊ–îñwb¢Pzhy& •†ü*j-ŽÛSVm[u²1bšŒÁÜv¸N2w*nµ0œ®…Q¨G$S·óÀ/[…œ¥©g-£Ì?˨a £"$B›ˆ.Ï‚ÒhõÏo—r>K‚ˆÜVµK<Ê)b +Îx”ÃO“o6‹îp +Y)wF yb¶X‹CSzâ:,À.|‚áÿC)žMáˆT|I*†õjZ¹EóSÚê˜Cç:B8³cƒSì±³_mp¸ü ²Þ⳯ð¸ñ=óÎ+íãϼ`k÷*ÍEâ}§Ö’Æ5ŒjȵõÄé9Noê\NèÛaô9ÌÐ ²y¶Õ °#r2~-èpBE2‘*ñ8ГÔ8Tœ'ªFZpÒNè‚! sÆyŸ­R§gŒÒõµcŸG3! +¡ÌÿÂ}ŠêBžô%û”l>{n¡ã‡aVÒ®®l9Dâ° 2–»ˆŸ/(~`k>gfÀ•Xr#,Ù%†iZ¸ˆX*â ö7s›9Ì5ó@ñªô š¢ ¹ËB%øœî“玈¾¢o‰¾]IômAôS¶ÂNªã[¼ÏÓã/X\8Ñ <¹Ç_W«ÍÔ®ðæÊ‹Vº¡%Œ_4*‘Y¯ Ö+fàç¬W°ŸÀÇÒ,.gίè4þ¢fT“ï 9{ÎçYÙ„h:„ðJµuVéóùÙ(£vWäôk«vJ.[¸2!Á&$xpf¾ë#¡ÃÄÝ㉜TmÔs1œÇ[H[±:bO°üê¯7G¡mì{²¢=‡ ÝÐÄ/²ŸAAДËÇ‹X§|€€8øÕµ©0E*v5g¢Æ$P:ï!õ-0å@oÈgå.L œÐf\˜AY2'zDH|¥8 +5Ë[49¼²6è­s,n¥«œqjL¤B«âÔ–Ì(ÏÑ&P<œ ÿÚWí¸D–ìB´„ÙD–8vÍD{JÙ^áŽc”R0×g¯6º¡Å™jóOÈò’'œ½ÒsóWsxó÷ØðÍÝjlÙÒ9ú(Au¼+¼õ$™/Ã'ž½ÇF!ÅÝÇP¹™ &ƒygANGJê'<«àYŽ'!yø¨ÿL›¹ÐÖXÀ2öëà.=i÷–°×feàÀìå +™¤g»§Á¨çtD{|Ç 0±}[êŽ)/ +µ1Å:È{Ü×#P÷B,÷¨èq‡˜ø¶H|—Ä—þéÃŒ!ùDÿغ NÈMÿ< @`}Ô¬µ+Xfš—·\ršvfÊäëb1ÞÌ®3ñ×±‚ü!Å®A\àJ’¬“­ƒÞ@#>¿˜1€ù”Ç¡…hÉ0dàc¥$}š!â8îD¶ä£ ?•ÙÕ½žÅm‘/À½h~…ÃÌ@¶Ö`¶ÍÀM?`×C³'qͦÉ'Ò0‚*AH<)§ñM¾ó(S:yQâñè÷t÷dàgè3ÙZü%ðwÙxÄqM¸•×˜™x„ˆ6Púk&ÌlŽŠÃÒØ5l9Wù©›L‚ÏŸ0U=Eø\§ ™£-ÉõkLlOAGR&C“•c%ÄC!͵· HÄ‹H¥Yâ·Èeš¼%禒9¤&:¼ÂhÅÍx*_¼<“kXÜ’ôŒDg´]>•¥N…ËG,3BWÑ͸-FTuÏ´ý6QÝ ³– ºÐu3cg¤¹Ž8ûÅŸ¾OÎ0£¨MцÃ$„6<7yí;MM†ºI0x¤PÎkÓ’Î;Vl un–ÕÐkKè…ÿéUÖÅ„ÿÊd!ŽRÔQ+î õpæÀ‰ƒÀ/¶E‚´šÖ«¦a»‰Áõ6iMþŽNÔ±ÁLpiÔó=±îD¿èþöÒŽzQƒd‰€8DzŽMŸ‰¨$³ÐçðótëÀç”H²%CwÍx:º@/mç5=®NÞ š¾*eÞ‚ïµè¬èzž},ŒëP?‹D÷zÏŸ îØdŒOý_ex“z31¡~'Ž‡MKëŽ<ÉýE™ž +g¼ÄgÀ³ÚGÇܱfKî‰êœæ'ÈI÷ŒSêÁ)Ñi/V³”k·Ábj6¸w‰­î}ryüt+$F©îÕ²f—]·ÇÁÁÆÌ#4ž|êeÙÆd+ɦ¥´êl.ÖLÒ5®Puòþ^ø4ÀÃus Lí÷ÙŠ5,ñ݉• Ö0X´zn²]5QÂ+PXøÃEµ|œu’èÎpXìrŒ$‘w¨ ›í÷ä3û½¥ð^±ßÙºÂ%íåD6¡áïâ?1§cá#°8I}|·ÉB#&¥¾ËàB)ºÅ@5纾 #¿ Î%©§X¦H|<°ñd£Ó“²4†ÙI xÔï”^M²¤þ©QS¿¤6.5Yu_éˆoéÕö|c1ëâÎXSë¦\ïF¬µ)Ö|WÆšŸgã· mýÀn'ÄbåpÌäp0+¸Êú²Î$,˜Ì +nJ¯»¬‰ TGèóƒ.;˲Kì®ËÏk–Ä?|Ø-WV— ÑÊ¡ÀoøΫørKãy÷]j’¸œ×Ü =;zÃ5?pÄ$ö̬ÝF\u™6Ó +°Â/bº©QÆŒ`ÒX§óÖ\ÖÄÛcÁÈw5æ^K.Æ)«E¶ù›:N¢)]@Ÿ- :_ +H˜:#ÖÂZØäP î¨f¤‘òáRQÈÔø§ôd"ŠÏOÆõ Aòžì¢a‹H5†ø¥²œA[TN^ ÑÆ~WÌÉBŽçs|S7"­:ÙÃ¥ßöÂÍVh@}ÒÆpŽ±Ç°{GYü§ÌOÏJ7fxÀÞØ!¡t×ö+ÉÇ÷£±¢Ïk7~_{¤ˆÍ”º°†ºe¼®æˆÅgUF{J¯˜ ¬ŒˆXxl’0Ó‚ÐTA6§£Û*M1¦?±á ¹.-Ë}ù!ôa‚*Û6"ïv-dF¤8ÚľGœ/¥5*‡ ûØΠ߇ï?aFƒ–Âæt­zÌ‹˜RØŠDšK½ñQq“1ïߪEˆ-)!Ï’¨ÒRÏw¤¬fÙkv‰ª#OU"úDbÜ9”>TFŠã8¼ãÁã3Ïl¥®Á—#_{ÄKøÚ`#eú09‰ÐÙžÄ\’·4l¦À%˜¯ný>ï—ÈøÇê‡á2¥äÒ´+Œz ~Q¦â‰ÙvŽÊË%õ.Cê–™¨EúUé{(ø*”ä!°^«*(Z_pÔa|ÜÓædÃ`Ýð£²Æ;—ŠŸh¼ÈhÙ÷{D™‡ë¶(JmœJ¿j3¤TØwŽ”†NÆÿÃ/ÿñÉû‚ÄLØÈ]YËj¤«2^;´"óº wótÚ ³Oðq²«Ï?l8xnÒ¬¸¨Œ=LÁÙ³iiú¸‹AÃ:¸0 lúí‚Бɨsô‡Ã_W¾Få?#>h‰›Jú+®ý1Œs~¬ÞÔ]roÊ:é(Þ™+_Õ ì*Ü9¥®d"‰™¨ã›và1ü/çîÏ`®«óKÊ»Á3½«ø—€ÐÄ„L¸à¿Gß÷„‰ .7aSÿ]¸buR×Îâ¾F¯°‹rï|f/yóéã¾Æ’né‹Ø"¤ä/üû;qó™vä‘žÞß×-á_suÁt”ÆÔ‡ÿ‹Ôa;Ëj“N7Ô¨zÝ +ìY\×ùà1&#ÊŽ '·çgB‰?u†-€FPèEÒcòx¬teZóc\Ê-I²Åðúh‰€}ÁßRÙç–®·4+²Œž ¶Þl(û庣0÷bóý@³È…L¤bg\#¤ì1Uä( bžËX«%ÿ¬Û‹=M:ׯ¹—úhfƒð´y'»Ô$tkÈ +¦`d½3) §òSØÈæ~ÂIöYä°]ª+Œa!澎Ä"D?#s¨9€¡EDê³ä"TYG¸ì‡8œu÷¡Æ^GŽ-‹~$¿2á;ÌÎæ&ªÓ]ên<¥Ùx¦Èê¶4ùqGYü>Ô˜sÔ_H!‡ìvË›ûX.X›à9©’î8 mEVŸ"«YCVXŠQõº¦Yš!Úëet%1] „¬^²Y}’ Ùš’ \©£Os*B9;0 ‚8N±þ߯ßÑâ¥V•ÏUsu,ãí+Cí¼‰ˆŽU† ¨©¦+ÑHE¨¾=©{´+E«Ó²Ñér£Ó‚ѡ׈ÝApy6ÓÆîlEÐ"(¸Í"‚æ  sš¤ÈÄïu7“µr6Ô,ûO†»ñ®J©ã²²ÕB­]_|[×AjG0?/£Äý}ˆÇŒé1O!HOä œatXÏ·UØY>\TÇ$Æä>n&é ³hü ªŽC$*!:“˜‘Öã}aa•~ +"¾ cŠ„i*#!ül œSŸ) ¢`Á5á&CIMJ÷¡­,f•h©øåL5)îúd# þŒ¥Ö¾R½ŸìtÛÜÝ\*8|ãÜÐÔHábÜ8x.n¸³ìÁ˜¤èðUe…‰nϺªÓÑ$ÀEgFš‚æÓ²½' +endstream +endobj +123 0 obj +<< +/Filter /FlateDecode +/Length 5764 +>> +stream +H‰´Wko·ý®_ÁZ ÷jI.¹»@ ‰Ó EŠ¶±¾5E!É’ìXçJ®ãþú΋äp×ë4…I¾—áÌ™sÎœ}}x~ssqõl¾üòì¯æìÇ‹ïŸÍW_}óâ[sòÍùIkÚ½ó~v7‡Û“³ï_¶æöéäìÜþ«5֜ߜ´û¶íÍù•ÙÉ_LÜ÷°þõû`¬õ{?„Á¸°!žû“S›ó_N¾;?ùî/pÓ¯pÐâ^8ÿ÷ãÙŸî[óâñäï'gÃð~¼x¸5§×»ï¿iÎþòí/ŒíÆ¡ŽÕ`Ho1HËAž§éø½õ¯°–—Ú[ï†ý8ŽƒûÇés³³Ã>šÓ× ,€ßÍ.ì9}ÂßÂ0I‘V˜«fÀ¯›nïÍéCãì~4x,„#ÞÀwÀ7~?˜Ó÷u¸òÚ<7#qÇ÷¸ÄÒžÛ&â‘qåmcéÌkÇÁž‡Ùµ; +nàû/¹ƒÿ¼^5»ˆÇ>› z` ›àç+<ÿ¸«~å]#Þð¦q¯ÀÝ6àáùa¥9=Às¾Ê:Ê%âÀæ—Æcñ¬¾Î,þ ‰¤rÝà–ˆ¿9œ´ãwQúžqÕÕQ¿0Í?Ïÿœqyy£FÞ¾íú5`Áûz ,ÎÃ#‰XÚ\H9þñ„µï%unšÜÀ•v´!¤,Æ~g2:±.–ê¡@úvœd|¶¯‹Ÿ~4ùY°œ¥2ï%‘°’yÁÊÀè`Ðg˜Ëk³ ‚¶zŬXæ²Ó+h«`qòJ*¬0 ­cT®iÐRp _U·A‡{µÚNˆÍ7r¥í±U³R¶©.×K§nCUhÛ ªÆ5TµPq Œªy$ònÉ[©*°I'ÅÄV¤7s³ Šr£&,©^Ç{Ý3Ì#$í&ß -Ãã¡ O|‚O{jtX5ÒAwpóÊQÌG*µ=¢l¿ãC;|CŠ©quà[_I‹<™w =C‚+”ÆEÄcz¤¥T8øEã)·?ÁFXÚUù,lª ÍÉ/w°_MÉ JÚS•ñ®á´m•U B^ÓÀ8@¸™ª.Èž¨hžÌk©P :ø.²<,¨Øu™Bâ„BP0µ¸Q¯-üÂÔ%aZ©M-LÌ`}Å`¹±FüâždéJGœ‡ÖVIÔ~¾0sž{Èœ½U\6As#¶\eÀ*\lb…«Óö}Gö5º5&Œ½ÛÛ ÚO‰áÞV„¸,‡X»XQÇUŒŠHUq\rÀ!‘k¨îpö M¢¾S°”­ÿÞÖ©`ótȦW\ÔB4pU,aå“Tãå§Ü_j~¢Æ(4]…¨#RhÏ+óN>àBÏ$ëu«-(æ-K.ú@%e°jT¤¿¥]& ¯€)ôj +ÐtM·#ýùµ!’Ÿº‘=Ù-·\GÖ#ùï!§݃×–è#5 £ä~\`_ïqÇGsSrã +ÉM*êÄ»ÈiN‘emM²ð§zqêŽC"צ8-ó0¥þ„å8KÏH_ŠõßÙ©¾ÑŸÜ”ÆHÃéÞ›`!õ΃v ÙKì¸'·c#ÔDý6:¯Œ|b—ìRÇOLyÉb¢W‡ý_$ëq`uuIxyw ¡=ù )w¿úS¹`Epænú3M-£Ÿv4Cíh*àIK@-›1Gƒœš +v<üdò63J)†¿bObÔ“@àI@m¢«¼Â]“¤³öIx2¬ÃfDA›!Y/M|ì›@›lÌDk.™f¼¦ ’€©~‰·Z4Ç ¸ã#îå`ªU±L滟îòl½ç–›¬KG5þ¹Š¦Ñok1‡ª˜íÞù?»Î›ÃíÉÙ÷/[sût“8–‡Øï‡à-xlú‘î'q9ØÎÌìQê5×ãËžYﯡðû[b1fïÈÅöÉuZ¶úKóÈsÄÜznh…Ž”DœÈÈd9+=ƒè‚jaéþ–Σ4ÏCÄgf+uŽ2¨ã–QÏáHŶ5ûc}̱y‹i·˜vœâJƒ…€Ò›Pþ J(TEɈÇŠK„5¡ÂÒŽ“>àÓ‹ƒ¥ÉÛNf¿ÚX1Ÿ– +× +¡9Mh öŽfÕ4&ñG4 ËLDc­ôf˜Úþ+xŒ+CóE#-àsÕq á">× Q*)JT¬e>¾Ùæ/f4,"DŸìÞÖ/áÞ†Є‚ð-4â•ÙÄ€½æ ñ@"4ër€Äd*ÒÞFÙ3Ž,ïšê Ã"6©ï šžÑ€çÌ9oÈ"W,e2cLo”abËGJMŸì櫃bæ1ó¬œ&CÃzRʵ×üÒßè]‹W!Ž#^1èQè²±¾êJvÎmêéQÞÓVÈØZ·¯ÌD¼T¦í‡¾‚É©iÎÙrº›rmL ~›A8ƒ ƒ²ÆföâÙF)ûÅ£÷GÔ1ƒ†y›3{‡‰ìxX•!™Kû ù1€;—æ”(lå%xšyw<Š(”Tc®[ˆ0ñžzPòÔ~Á.r®V2™JºŒ ¨xBSû‹çHÏ"q½Iì›ÖÄ‹#oâ¯÷‡²¬[‘ìë©·wkPk¡½3ÔRCô6ÔQ_ÌéZ”Q}ü‰¼š™ªl†T¨wNý Œ¼vÚO5öˆ×VÉSm‹8DG³0 J´Ê, ãàèSp[S«®r¡w:Œ9>îÛèM;eNÀù7"=Ë÷Ož2Þ~ã = Åk¿ŸãNòdé}ËŒG©Sú­ÂÜû>JB 3ðP´Ì ñó¹ÁwÈËs™[s¥Âöntb«éÎáÞ­PègÝ aݧÆÁf÷9Ôä ›Á,7\h•ÿ¬ËÏ~à)Óuøò÷2’æÑÔ¨áÒO'—I'9nbG^¯’º¨Å¯+›!òP&Æ´²ƒ¶Ë}>ªù}®]ýP¬âbzÒ³ÉÝ@¿Þ6^5e1ØY +¿‘x]ñkŠÀÇì§)åŽBùb¾mǼ.Ö ì*ÏNï}»žãqx¢þç+øÀ· ž €õpÔº#ø„高Ö²"G…Ùê!©Ì*w(VàÕŠ_ñ£›&å;ºb꺪 æÁG½~ŸèK +žË?VmòÚB1̃ÓÉn«êìØ2?)Y<èÒ r0ɃÃ/’Ž|uœJ*«€ƒfÙ”vø¡Ø ØLjÀ“Y5iÏšÜ9»ÝÜ¿S–ÞSg+¦³¡;‚$h¿âT“aÌ•K tèÉtJAQÆD¢-ÇbC±ƒ¼æIhðì)ɯ‡VÚVQ‹Ë<ë‡dâ³KÍþ̧]ØH.¬ö`Cò`”¸¹?ü0ð<2%ž%¯UgëQJà‚€?4#Yæ̹ͮR¬´UŠ"k®sáBÛ^™ß¯7b€÷ ©¯M– ¦ Ž¢¤«cÆÄó¸ßéy>Ï6xüœb*»§Zϳ‚B‘XN&³ E9qI>úþRuî~“Å“déI=ðUè’Œ=˜ ó§ü·xÝF‘U¸Ø,²¡ö€½]LJ†q+0eGü`ê©»Ò¦dh +ÿK#{RJÊ*ꇒ+Õõ…ÿðĨSÝUM3H–˜SëÏucÿ;ƒÊ2EþK{µ,×MÑ_ÑUå^¤i$Á6P•T*Éž²Ç'Øy™¯§ßÓ£ÇE{å›h4šé>}ùªwüIÜ¡ð4Px¼Ž\’š¸áÇ ¬»Y1gÏ0­ˆÙqmðè±!b‹™¶ÿĈŸ€½h³ #¾áÊ"ÒfÉ0wœÃ‡¦ôhdê‘CÀ¥þ“ˆÙ¹¿ÒõÜU.×b;ß»¶iaƒÈby÷"Ë Äe¸L7•«¤Å›ü"|@†„ËŠWG۟†ÏÌ{ìiR±÷Àì¯[7lüwþš-Ñ~5JâŠ#a¯5àÅtlR¬bê\0p~râTŠWl'»bOVeùþ˜ALPÎõ¤×Š;æ6k½ÇZ9ÈýIVù–1þ’ñmK 'xÕŒûê)._OEå^TjM[Çù!ÄýFÂ9K¬ÓèÞPRnOd>[#ªÖ;=kH,Ò‚¢u›cZF¤aGé;*ÐOØÎQXp(’郱`É…~Ìíbèt\ñd6ÛÅ6k×é¬òYFµN ™Ÿ)ÍSx¶Î›‚䜽k’›Ž4;açhÛ[ß8‡½0  +¾+™K§V™¦tEÙk©‹“>ð/ ¾³Äš±Quc|ô°ß¹ YßÌåL3‹W¾¶; ™.³ÊÍBT!}àEsð¯Ÿ[d06’a"·F”ò¸vˆLß®¬$¸{»M\ו&.ô[`ŒÉ{ç ýJí—xÒè«ñxçu[²€wú“9}íˆölM yw‚[›Ì`ÏêHý¸‡~—¹-Â#ÎuU†‘üœÚy¿âä³F:§­*÷ÚÛï”­ž…É9ßx.ßai:6-A#ä´gÖMò]Åô(‡QF¤«4È2ÿ±Í1½Uý,Ä-T!z Užx{žûìȘôþƒG'~_Õ§Qô)(®0AT9>&ÎìÚMžŽvTµ³•Œ¾¥hó&l@†0VÖ¬&_.ñåHt÷â)•xj6ýY3¸l;i‡¸ƒ+ÑŸ‡y]\}­t\-Þˆ(h¬4°¨Ëâ]ùæz×E’XHh*¨’?™Ã£|8’¢JÞÕ‘àð£,ö³ÞËD»)Æ*-ÆêLë1F‹rn-˜…zµ™Ë«éË1ãfÕbR7g¹©ÃÌÜ…qªStI"ã „²õÝ7f„ÿËdËàY˜À…ë±#÷ՙΞ¦Ý÷µd²Y%tÔ3F„´"Ôš{ų¦šw•…Ô|²0s§<¥ã3üz{EˆéH¿9¥T’Ùä$¨I+¼ž@:s~‘UÃ8k{öº¬Í›¸^œnÅTvœlµZBù:Ýû)oœ§ÒëJ~¬"j˜\\øˆâN¾¾‚)sØ5Š½Hˆ|Ïàž?2èþÇâÌÿ0÷œ¦6 +endstream +endobj +124 0 obj +<< +/Filter /FlateDecode +/Length 5815 +>> +stream +xÚÝ\IsÜF–¾óWàD¨ŠÈÀ„òE»5-»{,¹/Ö(ªHiDÕEÒjõ¯Ÿ·ä€LÊê˜%b‘¨D"ó­ß[ÇO·ïÏOÏn¿ùæø/Ç/N?_ßÝ~ûmóݳïŽ|Ù77Íw¯Žúf+•i¶Z«æpÑlúmßËæÕYߟŽèѼ:oìv0Mÿ†­iô¤áûÉ +ÕH³5ÆŠ]µrè^ý×ÑÉ«£“Ÿ¾‡¹aøñ ¼€Íߎ¸ê›g×GÿqtüWXÙ‹ÓýEÓîö›¿ëŽúþù³F=ÅuŠ°Nü'š°0ë§<þAðâ„à¯áÏ~ØÂêij9n§i2ƒÂ¥ýÖ>í”ÚímsÛmĸµí»În§v×Üt žÂeµíU'ŒÛá8ÙÃïá‹!\î”nŸ4ûncèi·ªÅ‘8ÅŒÔ[Óp,Ï(`ÆËæ°ÃñC Â/®;!“Áª=ë4Lã5ï:X ÛËNöíÛ°˜Ã.,„ï;˜djßvRÇi{xèMó&pÑÂm·>*Ü#ܓ쯇«qµ·Ý´…Ù€0#\¿ƒUÀèþçi/aÒ[x̲ëäVÂ$ÂlG¿Ÿ¦ûÏWÿîÅa•ß¦wü>o…ÐÈÞÈÑÑl{5©ilØé0MVJfè)ñÑ Pèm'XÁ®CÞþÞ)&’†K—»îøæ#ÒV·%"#PH7¶Ûæ9Lma«ûæªÛàžã³hÞÏ°g Ñ1ºÍ—ošk&ÄùLÚ>uÊ0o™ˆ$@Ìdà!üþ¤ «Æ5íV:­>ÇÐsà.–Ð%T/K¨Ix§GžÿN× ‰>Æõ\O÷8Q»¼¦Jv‹„ݽ5«ìîû­™&=‘ÝDê]s†¿º½X$^ÒV.q©øwƒ¬`ƒ@>Ó^À½÷&&ØîZ·çHPâ¼A¹ˆBàö›H )!é9Òê#N«ÛDí ,¡¶æC§H)iŸaW#‘yÚ’µ±AݘîÄÖ„€ìË·lÀ^㲧¹vßàó$߬–,[B»€ÙP2µjHÂ\°ŸnBÙV +…L…¬÷ŠPØžF}rBqÂœÙ#7‘–tU ýº  $lMóÛ^4ç,û‰3Q ÑˆÿçÕw]ÄR:Uüäö Ž~;{ú•ÂÆôõ«õºF–Ü^47MØG¦êhR®XèxFܨÓ|GëÅ[¶ŠØYµ/ðÇM Á›¨¤1¤ƒ„f¦w%ký 6¥‰ê$bŒéµÐX˜6Å®>£A®0«%šl‚cOm°Ë8¿Eó°/ŠÓ2§Ê¬#›mó#‡ånk!.gs8cM¦ Á¸­ð5‚¬ ´ñOÇÄP‘ª”)—~]6z‘ØàwNcæ'bZ§ŒÎ•8LR@Š%yʬ`86ôçSû8x€¿£cM¿.!Ä 3]Hê8Sä4£ã÷;C!+’0ÿ[ò‘ÍõC³~˜¹~ˆTŸ|G)ör¼‡ plKXR€Õ¹°}U¼”ÉD]¼d³äŠkòf KñïÌ•i«ÔE ù@Ì¿iÞ¸ 9ŠÔž…¤ h{ê"ä#ï@NbÓ>KQ5°ȾÀ¥sgò™˜¯lC\G¹r;˜ í¶N8dn4¤â|¼¤è×nµPÄOþM+Xê 4p×Lðh+ °åE U“‡îø Rj´ϫƱ·3±iš¸FÏtNÀ&2}m #ïr,uÄЫš’3Dÿ)hO`–@²œðqÐæ>Ø4<ÅŽ¤³Ãª}ƉÕgBGõ 1^µ/‹‰a ¼&…P$¤}ã$¹«ý¥‰gø~ƯÇê¤í/¼ÂÇæ6H}*s6 ¨…,§¤Ü@¯í'fÂ+JŸzóQ©gq‹s?ÆlÃZbµØøºPÀA{1·®=wL;F»¬¨à=ð_r‰ ˜¤t×|ä ñÁ×¼s+J+.°Š˜`Žõ™>¸×,!ç½é×C1Uü´5®'gf¥ëÉB#³­Â Ê výKpÉ •Ába-ªˆ+°ùç»ûŸíÈ‹,…qC"‘°?Ë«‡é¼-JÓc5.S§Ä‘i:½xËîÇ¡jƒ¥2U\Ô:‡y­³>x#Õ‰Ú˜ÕõV±¯A š&ogö …}nÑœÛD–Yè˜ñä2¦÷M¯ÛÎþâŒ0;Ò¯ÐOiçÕš„ÂU‰kÓlK9‹•å”«èæ{Ÿ å%4F°.i¦a¶6+Ïì)ÂåÏ%{BHVg,Ÿ7!9tztCÄuUݻÒ‹‡°Â;oª\¶±KÓâM€Ðv-Ç nÖ“ÝçÚ¤bVÐP×Kliƒ9ZßÈa›”Mô#Ê€¶+·ÈžcÅû¼³XÉÑ^“ +e^²ò F…úA3?GTgÉú«Ø0Ëó*u>~Ù‘=.»n\-´Jj²Òö¸ +œX²Q™©}Sr - ¾…h|$ä9Êɲ`_°þó¹™õع=FZHéß”NŠ›¨ +³Åòá20^4È?ã#rY]…lùÜ›Žåù&‚ä™7Ls@.M.˜þÎ)H‰p~ÙNlàòÃeš!Í”m€!!æ:‰s±¸£Òr×IFVÜW#o1Ë•'hÝ›K(6)¤$×Q˾¦5›,¤u2’L*+*X±‡†Qù,½lÓŒKŒ]Vr(':Ýð!|Ú§w“B¼¾xŠ‘|ŸŸÛ+Y×fž%`—™IÉ—Y®¯ŽïYÆeZMö Hù>Îó£,ÙEôš+Í’eHzû^Q&f +å»Ä>˜ +¤²Ü‡ÇÜl£ö"^ǼhÎZvtëK9³†%ïÔûSZ¤’1y“ ^ÓUõYãõ<²0m ŒÛýüÕ4ÖäÖ‰`Yû­Œ1ëvYm›Ú`ûÿ0i ¯YŠ–ÏÕé,ÜE7¨8VÙˆÅl&ï!Éð—QäZ»p]Se°ë²"³ê`ÚÑ2Ëœyó‰"bg{|QBÞ5%–Î,SÒàéä4ï2ñhÄÖv¯‘÷ÿÒÔ´Ïq–±ýˆ3Êã1|¢Í{Ê…EWVØ`þøeM ç7¬bÿTEå̯‹¢Æþþ(J‡Sˆºjòø´uÈàG©–˜U ItRþ ÕYçå¹+áK¡WLÖ(uH2¢>Y£‡UðŸdB†¶^Ì×ú.õ­HS‹¹[*”ÒÈ 5)… ÜÈÀƒ˜|w,ä¡ÒÃ_Qʪ²Ò3Š<ŽjµÖ#ÀèP\°\ÔÂbòÀå" +³]6‹/TÞVxÊfþ ³Jk±ºoÄ{¸»ê”|‹À¸t¿ÏÅxß$2À —Cº‡b¤…ŸÃÎóÅ÷yiŒÞ®’û2«ó­c B-F®Öj.:úŒõó÷Èý"q£=gžwÇ[¶é#ùf.ÅìÜÙÇBË=Ì¥J*X×bÖ£ƒ²ß:ü’åH„x~?™ËPYhCL+&ùƒ‡QŠÀ+ñ^Líd z‡$l‰ýZá˜I•T˜LšÉDIÝ™åüÀò‹S£áƱWÆS›“j0µ+ ¬»9?ÚŽŒŸz ?²{дhÓÈ^Cð¬á,oh‹wÉø¤t"׃̦c`fœxì'øaE2³i(aëfÆ,¤‡!~â8ä÷*y¯üïÏ£U>¤’°Qé{Lœƒ§>»¢ãÑW8Âàš.›—GþŽ “D¢Ã±6q4„ðFOðk:œ/ +XtG"ò3ÚCÝUXC:vœl1”/ªQ¤#pÿå@ºÖK’Ì¢–ÅÈ ˆ °XÀÓ³ÿnlx`cóïí‡ÿ‘Íõ(îÃvÔ€ù‡LÊЇÀ—)±tÏã5žÕÒbSñˆý¯üž[ =ÂWÉ‚õHÚ¾LÀ…;¾ýjWóÿÍl$~éínóì$ú%[¼#R@ƒcžz3‚u–ب48³«ø>ŠžÞG!u¨áé´ä hÄ»¸ o?ÀmÁð“áöE<‹Àâ)¿yà»\¦8ÁVÂݼäüÓ¿áûštܦý¹CLú·Íó_þ…[¤†ö'N'…Á‡ÒÇ í vÍ÷tï/„uû<ÜçŸÝÐ7΄Ðöy˜ +n:é°F÷#Â(Mݯ8âigýLg¥ëÂ9b {¸ãéKNèüÊý.TI=épÀËDQpn¸ÿ5!Ã2[8š]f‡êev<§EM°Ì-ÿŠ 6íI傲¬k” +©‹ÇËIU•Oœ#¹ºaN¤‰ˆ4® `ׯ/㚊~+ÁµyArªBiÞ½Û…ê ý8 uz° £T¾3ïyÇšâƒ1 òíì=]Dš 7;‚±ºýoä#¦#.qÄ„Pk?Rêø¸ˆ¿¢=Þ;¬‡¯±þ.é ð×>Ü€1ÚÝÁE§\Ô¹äA³ã(ï†ä&…;\&’2‹aL úߢ^|süƒv¦€È‹ÈB33`.§í7}ß«o›Š씤éü´`ù¶V Ã8̧…p¬jZy¯6ATwŸÈ( ²„ÀN¥ÌœpöaO‰—wÝDáðDœÅÀçŒÓ@;J½\u”q=1£{Ašìi¸M›*æÀ97 ¶u`¬FÑ“è)³çó2ø¢ÿeçd„ÂœOu±ì4{±A±q=µr'‘o,h ÕuÑ)ÜCŒZ!¯‚öðŸa÷ÔÂBÇ9ç«8¢<`J ¡®EêÚ’º·—¶×žbtKT|K…´§šwÆ”CP®²…9ÉeA]aÄ3Ö¸kû‚[{ÇvÁZkè0ýä‚ù-síJKL=KrbU²ÄíLîø{ùĺàNÙÊQj^A!‰€ŠHû¼¾#ß _a²Ò=h{Z_½ØaL¥ê1éÄ„mJUD¾ŽQRB$˜x¤Qï5J³ikÒ½o‹ÜÁßÌXi òÅ”Ã<ÎR%Uº"IÍÝ #{b7H‘cz.¸{,[#ÝžžuîÈ+Û!Õ·ŸÙ·m¸ò†‹|w”NyO¦ï²ãEø+ðì<ƒkôˆs.<Â3o)É÷Ž{Úváò 'ï8ïXåÑlßíh+jJÚ7N«*‡¶«@ä^fØ(U¯Ãa LÛý)·ë½qƒ4}ÿø +.ØïïøòçÉv|3¾oeòÈ…p†Z¶ÀÓƒ8c`œñ%( é(4ìC$:-G° Ójú aûÄ÷%3§j]Î\§Ö¶×÷#÷^ªlµ\“l ¿µÅN‘‰,,±U—<Ô5Ã[§™6øÉ}@g¥MýM¹LJ¡²³ÚsŒ–Á‹ öß0¡à +dkîUÂò?#ïp¹ÔÌNøðÑ;jö¦ƒ;Í­ƒ×­’”ÇøÃŒZUþÐöis™LJVÚ Ÿx ²Tw¢†]g)wÁ1âÿvô¾7k®aÆeíÉ=AzØáž2ÒaÚÝï¡¢¢ö1¦º“=:Ìâ !ŒÔ9ñ‰°¦Ž?×>l Šhb)⩵CãÌápÁ[™{FÒßv¨ 1m?Ö¸Tʉàí8ºæ‰­&|ÀµŽ/Ä/ÏÐ4î-åê„ c “«ð¸0bßçñÂE8ÂK1,UT%æ`5Þ$a‹•ƒªëÖ¢Ž6Iø]RDL„ ¬ä$¹G/“©E¿>uBìü¸mŸa¨Dâ Áÿ!ŠÜõ™ðè4¸`Îà­X†“ÔŒ)µ¸ýŽƒ·{î%·. Üf£ú[Š ÓXŽRÙ'|Ahý»ç[dUPÞ‰G“„®ÖtîtÚë–O}¡dºÃߊQ‡Ä¿Ð/CÆà ¾=1îºyGpêô€+°V]‘ÍcM%ÇÌC»—O™þ?‚Oö~>•ÓÖòiø£|*ìÙ÷k&!ã\€,gì7RÓÑz=Ÿ;µKÇ×ë z":ÞƒßYSB3ìâúÐDœ×;㨋< ο”mIþßCîÄ +endstream +endobj +125 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +126 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +127 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +128 0 obj +<< +/Filter /FlateDecode +/Length 5988 +>> +stream +xÚµ\Ys7’~ç¯ÀcU„»Y¸ +¨ ‡#dIöjÇžÃÔìËhx‹#ñ˜&i­æ×o¸»º»¤•ÃaR]B%2¿ü€âñ‹ÍÓÍÕéùÓ÷ßÿåø—ÓÏ÷ÏO?ü ~|õòèøç“A\?Šß b­´kc´Ø\‹õ x{.VÿëÓñOƒâí•×Ίþsk+¤Ôkí­´Pvmí(ht{Ô)ß¿ýçÑë·G¯} }COðãþø~\‹ÿt;ˆW÷G;:þ+XöËéݵè.ïV?ÿØÿúòÍ+!Gé³2Ù‰ÿIñMs±×ãŸ$Û'%·¥qNùõ4MÖi´îÝm/åÚu—ýʯ»^ɵïžúÕ´–Ý£8íWÒ¯-\—f=uâ.¬Çî¾_Áè»snwÓS#¸èÖ +»áâyïáÃ}oÖo×Ô`‚›n©OƒwÙî\ÜÀG¼(-<à¡—#´?ÅO»áaÉš{¾|%6—·=õqß+W~‡>$<ú‚Ïdî7^Sç¶ûˆ?¡úž }¿Ô6>‰sº_vÏðÛ¬ñ…fÀƒösÃû'ƒ/Mý¥M…ÙíÖâeOölࢄ¯´{€¹ó0ügºv֛£ôPŸ{eØ3¡áep‘èÿçíE€íFÐÈY,óø€ pÓ4*Åø A›î4ÌPœJ0v8œõS2T|Äñø %0Ðv×äÞ'òùؽï5¢í³H°SÐÙ)£)Îû`s)ò]ÐãÈ7¯ ݦ5ÌßgqÑË<¿%8÷+•ÌΣ'_‚t’º(†?éŽâ ¦ŸŠ8†å劖l¸¸‚~rê€F5Ò¨4^Bl°M«)}«‹5¨Àþ ~üM|n@ÎÉe¹ -Ìÿ"׫¡t½õ»}?€Ç¦Éx·Ã÷àhpÐ)áù¬‡HæÃÓ¼†È Uöa¯iÑ-—yªeÊ‘BRpðÅ jxÔZ¼A3>/=7°·pïE¿¶­w?ôš&/ãi„Uzy mGŠšÖ[\ûhœãF3ºdÃVÍü ‡…z·ˆVX¾3¹|ª =uÓÕh†,×¹ôÝ̂ʳ¹Ìõ²t½›vº~ô`&¤…)¸þ +m¤ø¥bØn§O„èO ­Kˆ±=N"™žœ%îøÞ~¥CäÃÁ~êµeè  7CH"Ö®˜´ÜóÍÅ0¸0è˜rØt¬›å¢·gÌ (ƒº6ƒ6é6çÍj®H>šC¨¯ -®Îkú˜'–&=1Ñ‘}…³ºo)rhÏÜëS +Ú͆ÔéG†êCÊ ãØzÜÇzËØ€Ó®‰Œž‰BÏGos¢’’M+¸o‚Ç¿gÖ}µÐ¯¶ô«ÜÍ#F£+9‡Þ/\ø0.Ì©û.c9~dS% wM,+L\®Zn’2`à&-ˆr +‡™&»¹”ZÛåVîB0hþ·'bȱÅæÜ—žKÆÆèÙà‰x¨ÇB‘6@³–êRDØš¨E8å“ + ó‰Ë=Ï#KMC½è5ÎÓ3"­užSlãºO9·¦(8&~k…–ëk*çÒꇥ<럦¶ðKFÈ°Tq;Á7¹Z gÊd±Î|!ó“MMinj*ÂFÑ©Üê´qx(9êi„;, ò_=ºÏ5rêÒOXA¯—áÆgï¢dá[¾ Çõ0êa0bCJ:Jõ´™‰ cŠ æ[Äb)3¡äL‰•^N‘È•(ZaŇÃ)Ê>M#û%×#B=1~Í¥NÈl§v0ÇÌÅ +0IÌ”¶¬ÑHÒ¨ÁÍÈ‹ež!„ò8Qät5›Èßð ½ï©jºG&ï2ŽªdÒc¸{¥Ÿ¢,üÈâÁ2ÐL5höщAV$“k˜Äð·|Ë¤î ƒé” ¥¹hK$]'î“ÂGԦʜö5ÊW“F6!SïD,hœÝ–å&4T<%TY6®|¬+u‚‚ßbáqÐyg˜ÃLp–©åÈRÎå/ëaQJ©¼,¥èªV;Ác¡ü)¹è] +ö±oØrý¸`†2Ëô²‡“îXßÜq̶£N—”¦TÎ7FšyMwʾ <1ê‚ÔØHÔ¦É\ …r¡*°ó'ëf»öý'K€u•eä±q*Ê‹QƒE b[ÕOÈ´[¦Õ¹}ÔTÈ-‹À§š³»ŽµPÇ–Ì6ó¶–µ‡”žédJ(ã„2«*4~ññþÒ«-–‹Ü†W,Z¿”v¿‰$‘ÆbºVÛÛô9“/9¾ÄôÒ†Œ± ´”.ÑÎuQ3QäΙô&ƒØzÔK(o‚€”jîºÜÙb*ÓAÕfPt ívÅz$ª#¦+J«Û©“(ëô­»,%bP]…J±Q¢7Tˆn—D¡1ÓÓ­JÑ—u «ˆqÝ¡A©e„ƒGNI’B©‘90ùèo|#¢,ž™+h³åžã Wòuùg*z«*kSŒHi7ظ€+cÂÈCX Éõùöœt%TÚÁµ‚Íc2 öoëð1,ƒM©‡ rÜ cõ:9¥èRJ—•,S{p<«'=Å˪¨-}]‡¨+R3ž±q˜™8¥Åíàc®/M®/«ØfÚLâÚÈ´oÝE4ü?(1QƒRTŠäš+"åaLÈ_”CENüuŠƒš6Ý4EM#‰Æâ@SÙ"‡(RçÓ&åØE96±/U.: -ćmŠÙ 5Å­+ÿWl>†y0ò·œ6¶½ýº@ïI‘¯ÄÚ6ÎT{$q·0†$JU–_Ër•oÓ Q‘"úpòg ´YÞ1™„Ê$8j¤Ðш>Õ–Â;xÄ: +ø¸–V`=rÒb…ìÇBöWGkï ý4øQÝ£=BA'µ™ÄÊA¡eÞ¤@ <%¶Ð0½£1eè»õ°àÖ~”U¿p·c¿#@×Öý†©ßÜ$v"áQƒµ¹`†ƒƒG±“Ø"w›ì´2à3À\ê&¬tl‘ûMM®Ð ŠÝÀÿýIlC‚àèüèŒ0ÊEhŸßÒ)Ê[lbqÆ>Š“£xËŠÝ¥¼“xÂÒæÖÁº¡jÎådàSj©Q‚3¦iºÊm¾¦k”÷v Õzé¿¡åLe¦©œ=ç yeSv+»múÇÍ4Ø;Âbµ +îFÀEDô{gšþ±öBœ5ÒW&X‚ø"k·›þ±ÖõÜ0ÕöJZê‹ìÝnúíí-ráÅåêÕëœ esü;ÙÀáPîa‰â5uáóÛ|òzðp¸x{~ü“â×pOÎ¥°<­`È™Øìçmo¼@J¯»©LtÝ/˜Ò¦îµ@ÉKcŽ±Ýà¿‘ÙbÞùÏPz¾†*Ÿ+ËßX,û;~ﻟcC¸¬Q~Á"ilýZ„'þ™:šºWâ7*±à«@NÞ`k°öú{™Ww?‡Ý+îí·˜ƒC£7ôÝý…:wݟů=7:—hIÃ'Èv'´šh Û@Í$V';XLã9µï@üzP2žÙWDKç=£'© yæ hØæ+·× -ªÎ©ô΀2ÍóÎÏ d¾öù¿²ÄòšÏ $äd‘[xªÈ‘=6:ÙÍöþ~’­2Ûã—ŽÒá !¾ÂÀÿ©¤MSã ˆU~’a§ãMŸD¬¨Ø@çÉÊ| Y/INŽT$Þb™±…¶eF +¯ ,¸Ú´Nì”8Ê®ÇfÇádðïO{çâ¿QÞC| g™$ÑwtA†ŸnXj‚jk.¬ìžBýF"”G–ﺅôÜ|#¥ð£ q‡lŸ„‚ÒSZ¯€Àדôý0 ú±@ 2E‘ŸºÅuls²ÛÝz³¬ÛiÏz݉G¥Õz”JBnñxÒÓÖÒ3WgThAq‹âF£€ÅÞ’¯4½®á£cÚåÇ‚½Ûâ}´‘Á:×rȽ²u‰l|ÙÀÑ.ºr,}m©j‘c<-­*Ÿ~ßc1w%~§- sÖã"3TÁP½tGÍÏQº°Aq»ã¢4 Ãîïh6–¿©î{Ú¡^Róš:¬ «Kga˜ŸÔ[Îx×=lp|ŠëÃO"ùˆbM†ÂèïHõYh¡l,L¯OmYWB¥Y²q¢Ó„’¥$M#›çP¤—sLûÈ\÷£{CKÌ^è×âpU»¾«vþŸºw=–Ê(Õ‘SQ~™à»‰ªÊ‰*GRŒÿF!Ñì )_߉„1VHW”™=¨¬nSíÛPÍ«†Ðc³–ùA5Y¤]¨Hqü€ôÖÎ~Âù3ïRèàõ²7;®C€è! +D ²c„¡;9‡‚wj¨ ÅY÷²¯{ªäqÑ|¡Œ}¸álöL·tq™©¦J^a%< x Ï0²aAô¸x ½½ÏôÌ'Äß=ýó!÷žÔSÒ7‚tÛÓö÷9K¨—ôéù‰Ä¨›6VŠn!!ú +Rã%nîžÓÉD>jóCÝ“§õ…¶2jR[½b9ŒtËäê~á"ÑÑBòœ49äѤøB+ä¢Gáî9 ŒÆžaå-Ðø’®¶k˜óþË’®uû“nÛí¤k÷¾5º–¸ÏüiQò­ øRù)žÐд¢ j4+â'EÕÖSHÔ1(‰SzÛëŽBÃEÏx/_¡ ”R9»adÞ°ÜO'kÕºUmp·ØYi* nyCÒåEX7<ÇÉïÌ{N$} ñš¥ofÕwª'&×±4§%eãšBÒß`ÒAÈA;y>Z~rà¸ôd¿;ÄQ +È ˆ6&ª¥ ¯I¤me-|9ÇÎHO±|£À¡° ,v‡ ÝØúiö† ï¥ùÒm®Ýj*ë¿Jã +åH^baòñ-Däè=ऋ؀¾DÞ*5Âõ4)§ðë“ýX„¿YEk刬XŒ 1cÐkã×øî±,2]."2èÒ¤Ô6&/#2^Í™ðjôžù±Ö¸Ag"#ZW$OœæÕI XkÓ+_t9óœ‰ÙÝPXxŒ‡Ã>P|Þs¢kKŒ×߆øÔÓºœøx³—ølu»øx{@ˆ7 éN‹ð·½³A6¢Š}¤8ŠºXWY~ŠñƒÞŽ¥ÇÛ åÇÔÆÙ°ˆÁ¹Tà +ß*ȱ9ä:D4TÂôö濱”u°ªBróÏ3½â¿npÒÄ­ îë™XÓ5L›ºÜÊ´ñUÄ™XÃÜ*<™tË,¥Õ{©ˆ^†Ïñ+•÷vé=µx$ö9Ñ ›¿ÔÊ)6ü½/Tùðõ ï¦×›zá/ØaÜz æDz¾ /À—¼½yÊÇRvFDYiü²—MË7:´"5°F˜¥/\´û¬4.]²ÿß+åcwëɶԓ§ZO®Ry&™f‹™â¡°í£m¾ÆÝ-KwÑ?娒 ié¢aü6¯"ZGz¶Ëk¯:ýUéztfí¸7ü§œVµ×á¯;²8¦Ø'¦á¸öB +_ž ×~!¨&¹Tm· a5©E›¬Ð,‚Yeý¥œpð •ñÛ[JÅw=+¥> +endobj +130 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +131 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +132 0 obj +<< +/Filter /FlateDecode +/Length 6395 +>> +stream +H‰´WÛnÉ}×Wô#0©éžî¹‹ÖÖf“ÀÆ&ŽÞ²A@Iåµ,)$%­òõ©[ßf†òx±EötWW:çÔé»Ã§ëõåA}÷ÝéÏêôýúåþñ ¾ÿþíÙ;uòöü¤RÕÊÖþw®V»íÉéOÿ¨Ôvrznþ])£Î¯OªUeàÃ¥ZʧgÕ¬Zxþµ+¯\_¯z[[eýÊû|9YØ^ŸÿzòãùÉà¤ÿÀA°A…ïÂöø×ûÓ?}©ÔÙýÉßONÿ†á½_ßmÕbs·üé­>ýðî/gÊ4}]ƪ0¤Ï¤ Ac«,ž•©V¿bUçWUÝ;ÕÚ~n{ŒñŸ‹^×ÕʨÅJ/M¿êÕ¢ÖK«ê£6p¯ÅF/Z|ºÓÍ +žøÓÃŽ‹-¬^Õj±Ó­Z¬µ£õr‹ïïx‹½¶+x>ÊÚ|zzÖ¸Çý¾hð›¯_ß]ñ‡]ã×ô"üýŸðÂZö…å-ćÿRÕw„Ï—²ógxÁbÔ[~Aÿëü¯±¯dÚe™>=?µ—Œö-eÔp>Mʧ±«º¯ÎçzÙ­ ni<&ö‹6ƒƒÔQ:®”®pÁ¥îðç{H$çӯװ¨Å+Üâëpmås‹™Rkø¡–}L¦¥ãâú¥q´éèíp´Çç^Ž>àÏøáÊ +»oc³`p/(F‹>iÛà·X¥Š¿€·}ºÇ¿i{ÂZDÄzÖðŠÃƒà]zÓÓeàü*m©b…†jíðvk +ÑãñÜ^§áß³×!]¿ˆû3¬ápC8ÚÐ>[u/P½ÔòXB=)‡gî°T˜/ͯԞdË%\†‰ÝçÂÍç½’†Á«éáj^ëQ©&pS¤B:ÌBhoÔ¸òOt‘&»Úmº¯á6¦ì{Ì~‹Ë/´áÛŸ¡/!–¼@ž Ñŵìùàž¨"!`ƒ!ÛÅ}å¼[•'ù˜>ÑŸzÛ•X °¼–N½úßé:¡»ä+|Ëêi¹± +e )ŽàÎØF~Ã+á³¹¯+pešæ®h”ˆ«ÑÅ0Uv M~—ÀDº'NY©?ëºá–ïA‚càärCè$HEýó¹$ðÅU;NòOè‹xIgöLýE3YÜcÁ-©mu÷#÷“Þd fÈÜŸA¯ÅÇ–2QšÛæîIñ©>ü‘ŠÀòÂØ~’±g‚§ŸÃvrf²][U%Û™c’ìÁïDI>Îg="®0„SvpÜË.¤ÉÓ€/{Ì%q¯~±ÖhOÙÞ%uô›¸wÌhÆC†z^¶ãÂ0(„àvjÄ/ÜÔÙý–FT«æ˜2§1*¯Ùé=’;ÝŽøa‚ŠsÓèsh‰îG¬J¾|ø™yûE‘o/Lqï¹™UÆeÄ&£â +Å“qÑw3ézgÁ¶­LÉyõ1-u&›'.3}¾ß30„ô‘ò£WÉ´“n²“­ÈwB ú+l•9¬fدEgĠŸmiõÌ+VïÇ‹EýúÈòM>x]4ˆÉ\b²¹Ë8£†.þQp_  KcÓ“¬™[âÅ»#x§áš™»hé¡v(/_‘o†ftø>»’ä7Ãñ3TÞÒ‚fIÙèRb¥“‘¦È.ç"L³vÒ +°'C3`š?À.m.ýÒ;/ª„ÃÈ´ @=œT„H ‚:›X†Æ*¥7Cs*Ü?*u)\í1j9%Ùô‹$CK(ìñ\’–ŒëÌiOèv’k„®T²ÉÄÚj5{-K‰¹Ò–Êø.üˆ_ > ®A{¦$‹8™Èl·!gJÃD)»ÒaÚTx…À¼%ƒÛ¿˜¤Æq\ˆÆ'xD‘X„< ­îØŸÁ­jÙB|x÷CÞà.×Á¤‘#{LðNæ&…íÆîb.‚ÜqOÐãÁ[%3¾åØ­˜2-q$QŽ%MÍ—ƒíõÄUÉú×3Í@»o#ðê¢z¬\Pêæ7…¡ž»HbÔaÅ¡©'GV·xÓçáԸˀwxBvÉÈp¯AäÍ8ž:ŃäUü7øÓ¸Ü)‡au¸%ßs5»ì¾Ô˜j 1¦Ê2W¾shy¥öåÕÈeþST‚(?lD“]`öT7ɯ£hJ²EúÂ7d">ŽW |Œ6¥µMÚÚOùô…µX ÁÅ*$/ Ñ“[éaS#Q!ñôYþ8ÈÍîüMîÎô±ÉF„ÌPÃz2‘s1Ód˜Yâ˜ÔዶB#+˜I©kötš:m q¸*Õ`Hã*SR°p¹{ð©£{H3‹’_L$ƒòç³17ö×W§:žj2’<>Ùéj7fÞ!ÅB¼¶ÕMÙgl´h4ÿÿ+jRÒ”“b]Œr»¹©ñjî|ÊçdV¦’xÉK“DÒ8Hâ:jmAO®;âk¼oÐ Ò2ÜßhKàþˆª&º@TÓj•æ–Øð¦Ë]Ümª¼Ì!†vGú37‰]‘D‹“ÂdaîLæðµ9ª+5¡fOOº ¿ú™ÐixÌƪfèìs•Ìéë+nð[¼_Œw®šþ[T³/3ÚuG2 +“Y2LïÄl¾6±RpƒNä—<…Ü7É[ìmqÓÌùfÂHaJ;Mš`];”yBXö?›ÃfæÐTåÈbÕù¥Bt™r=¨T2 Wè»(fC±ï5p•‚Fzѱ!sá']‡ 5?©'`Ç +xjÉ cÇìH.躵'žÊr@îU}DecXFµâXÂ^VÔÊŠ\‘ý¯%É.´™ôÃ0^:ã[ŒŒ´2ž™nSú{Èu™g ‰vÈy¢K}þëœÝí¨˜S5t}Ÿ‚‘ZCsò ³d‡“‰*÷)˜9>Yœœ‰W¹¤Wi|eN‰“VÍBÈúWñ<¸$ °Iï>¤&ØÄ0Tj4K\W Ë àìf¨–ÊË |˜º=0`˹¨Ä©ÛÛƒI®ôÁ?N –†2IhÌÒipËtª™ W•±v曉5Æž0êerçù˜ø/x“(9ŠªÜQFŒ×u›8x:K™†%®Ç”ûìCÄVôbðý•,@@RÔ,¦ÿ+‹(q‡@Â7"¾³±å†vÝ3ÕÒ‡IoOFàaG÷é°($Âùr¹¡ìà© –%‡šÒU…¡ ÂÇ‹°KØ¡}pT2ëÅnY'~«F†sl-Ca݈ âçº86Ø\ÿÕÜlø®ª¾92õ:ð•¯øÀ^äÓ‰¸Nn£ÄSUpA¢àx‹VbrG²tÌN”Ô!Æ“Uâ1õĜąEû%m—*i®N¦%Û”<ÍvØ ž‰! ).p-5÷ƔͭããzL£Æ9;• *U4il?²×wïÅÝÛÒ ÍÄÅp¨µG2!3aç€q(ˆ4ÀÍHƒ2¥,/uáÝ¡\iéæ[ãA +vsÑÔ–,“Éõݪjz[ i¶ÑêæÂLm=ab'ÿŽ‘)0P#ëãÀ2âjñ3º þ‘ DloñPWPVd*ˆ6/(Ñæ•ôV®Ò¥³Ðl´§xe#ÝÔ0WäÍâåÊb‚H—+‚ Š6o‚iX«CŒ>O­ )[¹}á¦?î(øŸR · Yøœ8ÑÐX²ŸÍ…ýqôF|!G|£äF(Ù”üǦψ¾¬Â“ÃMIp(%Ž{Ð=UÞs¡e„jq“Ä®Ax‚×—Š„Ù¹š›L[ιƹ#^£†á¨Ï¼Æò¼—[s·…ßý+æQSÅ¥g€¹>ÆVç%•¢•Ê‹ªR"M‰QHJÙE1¿>è Ëìb]N^$îÎì Ð8}ú;ƒ÷#™ÎÁ„¹N{ñâ†ÚŠv+ÇA +¥û{ÏWN8àЊ³2‘‘%fÍÀÀÔxŸ)ôyƒ±œdìX}P`E+À™z‡Š4˜‹U‹KX+C¶²ªü™b­HúH$Ý\n:ëþ˜5{$Þö ð0'óoQa°yÏ>£î .žõ‰†ƒR(ŒL,î„ÕºpѨ-`%ÖûäŒ ý7ˆ;cC!HqïûPù“ ÷, ÜFøÖîfxü“ +–áRohZ¬õ½ø1PÁÍJø{ +½h9…£°>êZÝ/µ2±Ï¸î*khî¿jwÆs_f&˜Ðwiíê”Rd +Ÿ\\yyy£2Mº†@!*-•$ñ &Xl¢ÍÇÏàõÙ§Q©Ì·"s}Ð;u»ÃùƒýŠ‰f‚QrÅ¢Èdh¹Þ·Nh®ZC6ÖP·nhhœ\þ/bI¯áý@Ô·Khä¸NA8»†ioQnÏi&ÝGD˜0#ÛÝxÆÐ ¼ÁK MD!^£ g +²›hƒ˜~¨aM±<*hA7´µ"¯_¡:¶Æ¡ Íl-<æÅYn>ë+¥0T$­ƒÚcÆħ6$6XÅ—U®~Vú™±ÇJ‹røM š0}t{Þ¶#<6,3Ò.„£>ÐOƒP"—„* 9E³‹_î÷&šqÁöw(,}eè:£‰d †~8´ nñ½óB_ˆg>#ë˜)&/§ê²Ýø_ yÇÓ,'‰äÑ÷¾û¼suÓSO²ìñ½OYåÿ˜ ü¹*AýÜú +Ór‡jÀütíx +½§óm<é—ž9é±Ít‚MÌyl2¦l2𼩔؜8Þ–å¹çº/1ê’3jŸ2êÌŒêë¿pé Û‡©á…k˜k8AŠl4U²‘ÕlT* kOx†»H`iMa#¼ã¢‰"BL‚¸¾=§ I/ˆ¶{,¸•ûJH'ëSVùœHŠÉ\Ѩ‡ ¡¬—övQ-¡%v©a ̺NÁýcJ8›ÜEg¤¤U"ñ>KϘ¢gœHùÔ'qƒL4SdÈDªy4‘¹ÒÅ3‘­¦(ȱ¸¢¥8Í=z´e‚¿Ôˆ¬kÉaI<a¾Í:ùDX:ŤªÎ~¥nÖŠS¢©¥8Û%‚Üð4³L*)宄€… }†ñÐh˜W¥'0Éõ‹ÿâNTîy?¯9ñKôÞðïT)  ±9«9zÂø*è±^.걿5ÿ]ßò­/­YiåܵºHjmM’=jÊö±.æ œ2³QxpŠ4ðš7ôrœÛèUkˆÃéòOðõ·"M¼`1hSP’p꥘΂LBÔsûÛ'¸—ÚXÀ¶ˆÙKÍ™Ð^Þ¾j‡¾À‡!Áñ•cÒ‘¨+!³ïIÿÛÚ!¼Ì~ÁL€¦E âTñ¥GŸ>º ŠÇõ¶å_ÈÚï€ô§ ­ü<¨U˜Q +sµîúiCb.œb¿†F¦ž.¤œ­öM½b¤j,Ô!&y +Ý{OÕÈæ{ó™°- + ÞÀB@fV`DÎׯ&Þ‘)W“GWˆŒGö¾‘ðhí\fsÍ—¬0Z&øUÜžìÒŽý¬¯„ð 0kžòóQ­NlìDΈnšýQ”Ë`}¿†D›p[ þð‡Ã¹“ýf 2¸ïy9Qp˜Å}Y»Ú!Ô´Ôyˆ×ÚwóåÜOccœ‹Îû´”;‹ƒš´þ£ƒWw +w$xRs'øfü¿Â~ `tÈ$柟“>‘ô®¿ñeAT:iYEÙP°‹Z&¨uüOÞ'SåtÒÅYò[6ö~=Ä‹ ÂüŠí2*§gbM5 ²_uhQ¦\)‡±‚Û´ª¹mJÜÓØvp%ŽÀÍÈ Òž¸Ö¨-™U£ž¢ª½í«HçD2´êÇs;ôF'CKùs[˜"Šõrö4>D,‚ÙJ¾™¸;0€òWݪ§Ü†Þ®Zú^ÀÔâÿÏ9Ñ>†¾bÑãA„¡Û¸ú Ç½¬›c,Zw¥v‡.–ØÚoHÌ%ÜYЭ†F#FSñŽ·§ºEÁNb@ðÁ)œâX<Å|@eEo3§„[HÔG9`ËsÒþCÞªÁù±õKΞpÅ:W&ª&ôÄÙuŒÅB£÷çvd¦`‚põ³ÑÝ,Øæ¯íHX›wÜ;M +5s“˜ç›²VOý¶Š–ÆEá¾ÎULÜP¾bTR“?ü1 Rà/”KÑ .ùW?‘ÚÄLÆÔLf5 …˜‹fâehôJø]¹6èû¿”Ýç¿l­ÉÕxawö:X´1m‘€/LôqkWð¢}bƒÝJ“]Þ‚ý‡ê›Ñ‘˜àŽ?öTZ3wÑSÔéñ÷×ApIjgbÇ Ñ ƒJ±û/j†HÚ +Ëé¹:}èÍ#|Ë42¤%a£éB'HÑw r«ÞÑ\ +LÉÑB&¼l$Í秗üåK«ú‡&åÉ1§œ^nÔŠÃSäÉaWfO™ÙÜwI³ûErmòœaX?1ûj¨%yoc"Ûjµ²l…•9îëÇ"™íeóSk¬úÍ{Z|€"µßRzÚ7Ìc‰ßóÈùľ÷¢ R9E0Ä fÚžOÓéŸÛ»ã5Ð(’“ §ç‹p~3|óž½!ÙÑc}ó§ÎÅ5ÌKš C-㪋Pex0ze½_«1"Ë»(øÐb¨|¢Às »wEü¨¼Ëï‰"T¿æ#݆"øÖø?ÐLg‹>"ŒÎ§¼[#%EÜpô5:JÞÐí߳˸ë¸ÛÏtÔþò;RÌu»úìHá7˜çŸØÚ `X‚ ‘¸øÿˆ__6oà jØÊt¼mjj!= üìõ—ŠD£µWjfÚú\vÓj"Á¼Úµo>ÖØ÷skÑÓ6燢©ZÝ-J.ëvfìf«€WvŽagf(¨œŽŒ HZ"ÆDJ§YBxîœÄfs›“³\ §éø×­ -F¾û÷_Jº yÔõØNg©¬’ô÷ÁdVÜïÍyO¥PÂåNP/Ä%-°$‹K{ÎYÅ÷Q?ˆ¸ÂºF(ÂK4bÈÔ}c-Mï–€~½Ý½þcЗ³h;ºÇ»ûß}ÿ§_ºæÃá»ïßôÿpþÕ¼y"sÜ4ärÖÝJZ›Û9‘usߌvvÐ4Τ¶Ÿ¡TVÛ#0>Àglúüè¿ÇæqÎÎ,læmg§Aðn](½Àéò‡ZʆjC3Óœ¥w=:Kë'*¡kàÔt/6ŸèyòXwÝèeMœ;& x"~²aLwË_p‘†€Š* À£ºwÑ̬Ô&xÃCå‘]> +stream +xÚµ\[sÛHv~ׯèG Ê¤ÐW4’©IíX¶ã]{7±<•‡Lh‰’µ%-eÙëùõ9—¾‚ ;™r•.T£Ñ8—ï|çŸþiûùæjuñù§ŸNÿvúfõíþéóÏ?‹_ΞŸœ¾:ïÄõ£øåýI'–J[±4F‹íµXvÝ Þ_ˆEÇ?}=}Ù )Þ_ ·ì­èà_¿´BJ½ÔÞúN e—Ö:ÙÁ¢ÍI£»öýßO^¼?yñö9ì ;Á—¯øå |¹ÿ89}¹éÄÙýÉžœþœìÍêîZ4ë»Å«_ÚÓ·Ï_Ÿ Ù[•Ï)Ó9ñŸŸðˆ>îyúRòé¤ä¿Ëòh½òËal¯ñlÿݼnÒ-es'>ÃO~i›­[úfÝ.ì²oñ›lÖⱕü~Ó*·Ô ¬Uj隧Uþ½ƒßoZÚâ¾5ðál‚€=”ožåðR•]sA ×ã{‹‹v1Àm·ð±Æ+dßlh‰)®§®àc KoÅßqÛ<Á|·ÃÏùdOf–Cºá#|ï›omÏë¬3°j½7t½kÅ6ÈNj›ËVö°lÝ*øŠÁï—"ŸÆÁîëÖ§Wxxß|…•(Þ üæj9™æK«%Ü`ÝjºÇ“ôðÐ=¬¸nñ²UË^Ç‚€ß~Ç»ãeáíÿ¼ÿs´¯iÒÁ€ÀpÐ’ Zò„€¨úapJ±ìՆ䓳•ˆK\bé–Ä“ÚFÑÆÓ®Z‰Ká“ò +‹a݉¯­¶ ŒûvXŽïy'®[°\ÓÜ‹'¼Õ„÷yháA š’ Ür€ï¬VT78-ÙÙŽ„ÒÍRœ¡1›æ¬Õ]óNÀFx–-Þ +¿ù]=2¾ k =žëÈ`áHnø * E¬Pd¢]tôàt×+´EÜ' +ΓdÑÄz&J>ë,ƒ0Ù ºÚ,ÊAZëýÈšEeÓ;Û¼óApÊÎ:ðÌa0¾g;Û/FV„‡3 û%HKò + – ¿nh½+À`à+"Û\ƒw‘Š@ç¶7»äìp/—Ô ÌÄ£¡> n¡édõ±ëJɪ°865¾ +W'CV¬z2ºW<Ç69VK4Ø¢ _¶_šK†™mFjC°ÅW \ÂÓ‡øì€ûÏ„WCêÉ$@Õý«p\ +"Ô¬%ÓƒdPü.PÒ¥º‰ÕlÃÇ(‘Ÿ±â ZK’>ÈvMöt‹Ž†a$8rU”©,|Ÿ ñã¤ôdsdr÷èâ +Àäe«tº£¸")'õ’›»fr *D‰†(ø+ÜÄ–§G +';„? ÓÌ}a)tt­Åk|¼¡©ÐŽE5çÂB,B0l-.–­õp²ND_ü¯ÖíƒcŸï6Ï"úIì)-¡WK –à-[«é€ÌÓì0'àÕzð\7âVnÒ¦µ÷•M?®¾­*éñ €{/ jõû"ãýe¤ÙÑÊ€,,Ù'‹ ô9X‡¶ 67 ep 8Ân«Ò¶Õa|ÿIOATerHdˆé9¾á&íˆSÛ½œÚqÌcîTH åKä”Òs8Ï<|Ä0É*Ä”ÿÂ;-ÈuèÀ$sS<í“trŽIÖ63Ó$UÞy¿!öA×…Dpÿ³³jr’5#Xò˜hŠ a ü͘—D !T‚eß|"î¿ë>¨x33 8}´. ‹ÕUbEµY-½c±ÊÖ!þwˆzÊ1È<Ïø,ïZÂég„ØŽÝaŽ -g/|d[¾Á‹‡&.¾a¹Ý=¼Ãøã™NjN‡ñ’'T‹Æ Hu öts%¾í%zNÏgQ°Ã5‡œòH6=Òˆß ‘—zBwÒh;ðo‰ +Øà݇¹tљåŽ@÷uç—]'å0.ndcSá’'Z· +4}`äCó›RH¿n2ì©)4µ)•Üɜؕ ©ÐNÎ[Å”wÔ¬•0ùÆüã›HL)¢æ@”ØÉ/èù'ê);µšÂ+ëŠ$(Ãð8N€ôfYƒ‘¥âg"d‘•,¥³“F¥½ôTXbC«š¬@íP( +kEBf™‘åt#q°¬´¢ŒOì…‘ ‰ Ëy½ù0¢\-',å²’`KMéÜ8Ðt_ÓÎJŸù/éÃÌ.8Ò½ƒOÌèáá\Œà5”+ÐÕSÅŽÀS²ITÐä+ +c§YÌ<ƒêK‚¯§ÁDõ^Ц”ìsŠÌŸC]b\„×$ª0É5Ñ:3èÓ Ô÷0žµ„à·Xgè#Ÿ‰ÅËQ>t¤~ô½Ä±`ߨúaŠÆJ Iœ Ø2OXPMDyÊB … +£Äúi~0OíU^g¦«RÊAdw—¶®J`™{À˜}ØâS&TøöÙ9øÁ£o¸¢˜ªï‰ZA2´Lm"€ë ¶ ÁC Á•i2ùÞç»e5 ÷#´*ËB6U6nÊŠŒ™ •| cùPYR±Tf£Ç£šr*Ë´‡ÃÖ<õuŠ¦§S4eï Þ‡ò÷aHÝÓØc¨ùpòÄ£5ïÀ ø #Ñ|hƒ§åÄ;G\.W>g’ÿ‘ó{r °#í P<?æi{VÊ]+z¡ìUaJx:ÄBGB™<È5ßÀ–儹lŒKj ‹¯êeeæM” …oN ¸2¢ïuñd©yð%Å—èð~‡ƒjõf›9¢«d§TR¿F;Á²aöP"øZŠ÷tàe¹;­š©¬IOè áDèÝzç,ú¹C>£yU‡›‰-º´‰þ@Ц$›é”ë"¨¢­IH½:¥ûXÎJU=fãÞXT'5FÃÃsÝ n¡°ýHñTœéE×[‘ºý#ÖÌÚØeæRGEŠ™.P}¥PK›0èo¹—÷ž,e–NM/¤Ã™þ>¡]9ä”r…‰‡ÕÈ•g#ÔŽKV”*K8ˆlX+;ÖTX¢È$ð¼¾YRYgæéë|îäd—Cú®âBç-5®vF2k @ŒôC:1®édª÷WiHjW¥ô¶ns¡ãHÐíÝ/iG=’=ñ<ÆIY6yÚ ¾.4k#;>#ûn}¥-Qhq”ç¨nz?iLùó,{psâam3ãa•h=íÎXóÃã‰hj:’r*žÝ‚æTËZÆÆŠC•˜XåžÔu\ìUû +–ZX«m26›=Ø+Hžú +û}YÉc¶ \™‡Ò3íØjRñu‡º-º23óò–žœ±|ÜïK³óŒ°nºªiSܬ¤N«C„kª¤±TÉÉdòÆQo1(&;æM˜)(›FýnÓÈ5»£`;·›oùo-Ç—*$=/ãÚ)‡¥äº(@0ŒÈh• + Åð´c÷{ƒäÞNÜ”%ÎÒþPçéÁ4 ¬¼$I™ÉʽÅȤÄ&ŠaØg,zŸEa,Ö|B’+÷ÉOb0‰ ­NA%¨h(ø)Q-Dî4ÜÅ®GVhÒ@’(¸²La*öCÇñd%Š¹”0É“œï,Î'*JþÀ¢(oêx41ƒS Ÿ ‘uÖ]A.8Ù»ý®‰ ßUbü’ˆ’8Õilåbª*º†Óìr‹‚Y¤)¼ÕS®ÓËÝ©“?l‰±~ÇC]ÕGî@¹ØlÑã)Š©Žñc?7?7¿ËV¡(TôánµÝØÔ÷Áä{žb娖r@µÝ0.³±6&¦¢€:nBÚqJš -…æ*½Ø›ÆìΤ1¸gK¼Éì–3ØDw©µû5ÛZjåìáÄÉ +¦T¼§2B˜ªQQµá˜ÙÑ À¼“!2:rgȺ©bÍö¢ÑpÏyÑW£YÆQH¤ò“¦1Xnæ…†[*}ìë—ÖÃÉê1õ8„E–òHnÌóÚ®,ÑUåDâ9Ú·@z¾› ü›ëãR†Û7˜7ä¹jC2C«B…“”+ñ>uÏÉJ¶Gg¶ümfÓß<€Š6PŽ¿tey`ž1è9#€vPëU¦ôs?¡wU½Ý…)¸NÂk¨°òTî.ØŠ„“Ç”cüqî¿jd¬°´Ð‡X5¥¬ [Fs£Õ´ß*Ìvl×"ͺ‚P&4)ú i(&îŸÓß-ËÆãŸÂÌVL *å…Ù—zðå„õㄳ <5ƒÕ}`ä¬Ê +,Y,} /õE^v½¤‚—6N,úaéqßµÐpÒ^«b 0åz lŒûún€/N– ’6Öð<+7ÎKÂÆyÉ–,m éª4ªÜ8/ ç%W(EÅRäÁÒá< ÂÞ»ÞgÀãú¡ë{q±¡q— .±ø¸·âü$^²`a+òP`óêx¼®Z>5ŽZY»(]þàîý±Ý±Lg½´æÿóüYŠ6ÊYYJ±÷d>õ¶¤(Mïo^úGJ¼#”“}ubb´Ë9'Þ³ô>±¾b$(¯<|ˆ?çÄ{–þ'."Ïåzqö"G3íK§î Hf0\ûNû_lòZGhŒ.N_*~Ë04Ç-`ÐÖt¬8ÈÂîLë}k°ý'Œ>gÅ%ö7<‰ÿB 3˜«ý þ$þþn›_‘e™æ-UTúxõ_±!‚±áüŽ‘-|þò%Çé×tµnžóª¿€M»˜æ¯Xhh^‰¸E§¡9ïh!'ä?ÅX±7}Á†¯oæ3à“YŒ:aQ<ÂßhóŽü–hw6—xf"uçx柔ž¸8ÍËŸOp‰‘F푉AßßTTêžÐ¤i²ÐÙk*vpÌvE]ÙæÅÌ•Ãe2éþft­ú¥í: ;÷‹wô,pÜN$á,,*M’ÂEçÓœë×ó|ª¾ÎÎø½ÖôV«ïvñµVþ EÔY‹"²ƒÄWM +å·—-ñëmȉz) ÀœE#ÍXßµ%q±AD[$/¸¡£ßµ–è¦7HËhΕr³ÏœÖ>q†”ÿ†WÝÇ×NßÒv›UKŸ}^ò ób¢©kZtϾ¢_.[fPx¤ß:m[ ü[æPñØ Ì˜Ä<éúQg¥ ¯9UÒÔèS_{Iî2UT/oRÔÊ)ª‡ü¦ó˜¿:ÃF„ÕjJmE +¼ IɆÓÂ0'â‰3®ÚDÊý¡~ÿÚR¶‘6bÑ%ÞS}Í%*|G\·ãAI,Ö”cñ5M$Ó[H|áºÅÞíã¬dbèŽMkŸ¾4¯I`ÄM ¯¤eGzø©ë:ý³˜ÑàŠbGÞž@;!yg[<³¶=øª7uÉm;äµÚ`Ëq0ÞîxísžË»'—#‡ÀWh° †þ†õ%ùsp<ÅŽ§ù*Çn†‘ê+â=U~mû¢6>ýíž^gÊŸa¸(n+>Ò ™Oþpu×òmÂVX>Ymy<醲×U¸ë<›ÐsÜS‚Ĥ¾ÃË›ŒzÁø6¨¦ïô^ß/t2rÐ-7V×­æiýŽ4‚ zǵ…c‹ÐéI =I,Îr*.ñafÞ/¤Ï¾oÆ­ñòßÈõó=Q½WŒ×O×k”ø—ã§ø&Æ|W" ŸyL|M6²åúëçŠJ · +·ßèŽóTfGõÐX?&K‡Eb¯ã;—7mO5!ìR€ÃY8<õŒ22˜bè‹ M=š´æî[è#[a²yô I&JÓø¯S=Z-µ§-çãÁ e Kž]0VoºN®v×úôj‡ç +Jí<¹¹£/«$8„'ž½êÝwaÇÛÎBÖÑœÞ,ü«îdܹ0û„­c z‘Bru´€SOÅ¥å4Dµq\ÜrÔÀE¾KfדÝpìãe¸?Íêy +^⢟;È< {!§;9ˆÁ§^ŠbCçâú9 wAÁûSxu'¸üõ'Î ÅwÝÜ-¹ +:€³>6Þ´6÷¹î¨,ú ý&~ +Þ@Òp&ê +ë +²ùJâ$•­iPkõ†?¸ÞCD’^mAàûÂÔj¾´y&%šŠw¥L¨t8¨ÒRdò{TZˆà¥ÑIó#*am ”€Ø_è)õ Gjž .¾+âxµqÆ—ñÎóðÅwæ(Ñ*QB øÒ„“ŒùyË“F’{ÔÏÁï³™¢ëç‰Î€T,þ‹ïß÷D·ˆ&~ÃöRJC?†cy~9ýÀñè¶üÚ^Ì´oˆFA)²Mƒ>GÈs $æ;NÓ0ùJOQð‰°ÌŸp‚%Ð-'íH@³Š¾›W”0@@$:x(pE’ÌÖI¢ÉzYŠÝ<ûQ¢ñ›o~gC]çò5¼Bƒù¡®¢è±¯Ø¯Q%dò™0ø¬‘ò¾lÐü[`f«òSGšgåÿ©‚QCçüØ*W0v¶XåÌ +†Òz&…džsAâÆE¨ðXø-çs[Š|ë˜}1Ê€…pg^3JüÛ¶eoÍ×":n6܆]³e<ãKCí“OÇó5O©’ëÿ:Nç™È¬‚F)´Q˜8Œë¾©ó.P€ç5 Ä÷½æÿìñ4ûÔ‡íè®—©ØÓKjÕêSjΆ+Aý/>âÍÆ +endstream +endobj +134 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +135 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP true +/op true +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +136 0 obj +<< +/AIS false +/BM /Normal +/ca 1 +/CA 1 +/OP false +/op false +/OPM 1 +/SA false +/SMask /None +/Type /ExtGState +>> +endobj +137 0 obj +<< +/Filter /FlateDecode +/Length 6586 +>> +stream +H‰´Wkoݸýî_Á&+‹IIÀb$ÞnSd»éîí§nQ8~ÅŽí¤ñ î¯/g†!%ÝÈI‹¹¾W"9œ9çÌ™ƒ—_î.ÎŽŽïÄ?ü*Þ=}º¿?þøêðµØ{µÝkEÛèÎúÿéė󽃟oÅùíÞÁVý«JlÏö6mÓj'¶Ç"üñ(\Óû5þ_ßXaFÓ¨^õBÛÆZç×\ïíwJn/÷~Úîýô‹?éßþ XkýöðííÁŸ®[qøiïo{ï ¼·G7çbÿôfóó+yðËë7‡B Ê”± +é#©(Èmˆ‘¶oT;ÀJÑ«J¨¶ozå¬èõÐŒãè ¸ìJí#ügç‰ýßÄg©,üòE*Õ8±ß±,7ÎßqÿNnt .`iWü xã“4ðûtÍèï!u£a»†mnÅ…ÿKà é…V?È ÈöáóHöðó{é÷^I­`õ“øD>K<=ÃŽ»ˆéT<ÎìOñ~€ Àï1.q$~—ªƒÓry;¤¯A_" çó¡O\àA¤¹]¾YåsBK¯*ÐwY«"pJ¾¦bŽè”2;Õã̇P¶èÞE(üXåÍs¬šøLÝ+«ãTYaU»§Q®0qŒ!ÉìåAÑ@¯E„+ÑÚn?­bæò±¬¸Ï¯&Q0õ—xêΉøÞî+®€ëI> u:û­4t„ò}–4p%é#x0×ç¸KH¸‚ `×ÁŸ^¿Ï®C§;[¸Ó™/.‰ñ ðj̳ç%« É$i«&†’M¯Ô¢=B}#,í«aÒWm¼]hãÖ8Ù;ÎtÁ eèUwdûŽv^Ȭ­Sˬ.…xê(]Á¹±„C¡²ë`—F¼„&m<G +Õq㩳Ž(:¶po¥2pÛ,2ªw ^<`lÊ„U $Ü,#Ë9}®®Ä¯º”¦²ÓŠF˜h›ÉåÈŽÁµ|:#q±kÃr;7ãдnÔÎö7r{¹fã±Ô:c0ÜkfEy JÜæBd_FžÉß–`•VðÖKÐ0æ´Ôi™áOü˜N$AAž€:a¢ˆ¦´œXW][em!ivƒ’6mK¤‡O"µÏ•$?]D¹#ñ¾ð< Dí‹4°{Äd»ºCΰ.H¶`/ÿs¶2Ej±z0¦±HÐZÄvºêÎz!ùÆ€]ë)ù·’L 3Qi’£ƒ) æ™LÙçO†ÐÂzP½×ÐU;†Òî€ý°²<Ýšò°®.Ùm§Syü8–ÍSrI9?ÑE†Ì¦êhlw•‘æ#f0ÒıÆq“ ³#϶Á5'AnEGߟrKb›8i3l²òIO‚ˆ­­F5ƒ´n!ià’RÒ%½æiìe÷¡; Ã?>dÞŠÿÅ€7ë<¢r뎯wÒŒíÜÆO…ÅH£$O]ÊÊä¹5Pf™[ å‰Á[¬z¦óä˜3–u¬RìLÞ iþBÇ¡†^¬f/:³®ê ¢úÄý¬¨Zôˆ®È>7Oª4OnyÊ{ªvs=ÊZlw-qî*m†×xHU²’ï±ëïž>£†Ú0”­•¡–6¯ b…¹J1{¦0N4¬#f­oüüóf5ù‡²¡¹Å4CÏÜĬ(•h˜ï"Pɲ÷¼~æÈÄ¡MØ$ûÈ#i¬ÆSämâ/ÙÞ#‘>‹Û0k²PWã +U9ø$ÞÉe“â<ÑÃ…CÉ9â–Äñ›Õ’s.Z«¤ç­?Ó`SÒ-='³§¢ÑŠZ‹ŸqYÿvú:ù’… ë(iÕ»hìê& ôss"?R.BEÓ V'u ŸÐâLîǨ=,NÏS¶CË„^YSC5¨¶ozå¬0vdÆçRà/|(;dÈoUkfSl‡>üRÚ¾Æôàqi`´ŽTÔâõfz›MLµÓ)Pxaþ:zÙ+“ÑîÁh§-šå1HÐN«Ç£i,õ¼¥53–qË/Èqìl3do‡ì + Êð‡ÕxQ%^Ô’ê{>®˜!3 !•¨YŸiHH˜ªóéÀÀþK©±©<¿ÉÔ¾¢n—ÞâÂû/Ä—÷A¡aˆBïrNJŽ—°áf2 ÕzHÛ”½* Þ†*›ýl´4@·ƒ* ã'àå&ÊÒ’ÞÐ( Ñ ¸ÔëÍûïîÄѕmUfZ^r²me ÷hŽÖ“<vßÔ…EY«!†4»S¹ªb=æFž¦„0º@¢ÿk‹!.â#âéŒÈÎCk±A–:Ö¾CaØq°ê$7Ê|f,‰®Â;‘7À›=ÂâŽMkÝŸÂâ6â´„ƒÐtÿËzµôÆ‘áûþ +w¶Iv³»œ $A՞ɚ•bmE²­ì¿ëE-µû`I3Ý|T}õ=”rm°OÄòj;yÆÕ²Íw"ò(Q7}éwç’Ö¸>êRÚDƒmÏ äE(|g¶KO¦¾áj{‘JïèúpòË¢’Æ«¢ ç\y„ö] µûƒó°2P*þöfBÓø]x-o\,ÓôZåGáš$®­ÓLù5«p"Ñ©Pá Ux)ªË*¼Kià† óÓª2E[ãËNü¢¶åez¾;Ão4BZDœ8$ý)£`íÚXçI·²sãÑU‹JIUGÂRy‘ŸÈØdf¯Ãü!s\1é=9ïÿÎR÷h +§5ÕÇÄBãØÙ¤Ì@D´!WT3rX>6¹x¤„Z[¡›°Ywx*™½žjJz +ËÇ©)‘À×ÆÑ_ +AHH/#’ˆÀ—¯v­x¢7ÏÛ°fjñšD“XFȧ‰ÅÏ.—¡384²Þ8ÀjÖ†0¿[;ú¨ h-Ý|¹°”©Ó3:’¢ª€«&x-c†iMO÷9‚QÒ*‡ÏÝéD@Ø#ç8r´ŒZÚ˜°ø¥Þac²vv²%®–-oiË÷¼Õ¾(3é`Ä´½MIžè«énå$ß0ñ»…ªÂ~¹ã„_§Ç¹¡ÇëdõÈqÜ"ÇmñÛÖ¤u:A„‡yue3Pçõ!xb‹f¯½üµjn7*œíæF_bxÞ€0dœálg^±ý±"JeDt¸(6&pP“•-k1#mi“‘šý2mIL¢5@ÓFêqÃß-´ñl] zÑ ë7óC(mÍÎüyÕ¾E$Ží‡j¤ [íæÅq¬ PƒSQ “½7wp¨Uù`ó‰û¨fXBâRßÃS°júÔ$­T ‘^M‡³(R—‹àš‚£<^):=LŹfŒG¦-‡®—mç`0 {»0©.Ämk®Þq‹-‰æb•®@v™m˜Œ[eÉÿ‹\þ…ký–,¦ÌLRšãÈ'ôðyòÚrKêÕD|KVcJâ!ŽÓr4šWØ´è(¶¯fÙÝA1¢ÊªÄ]¨a‹©«ózö[µl¶Ð œŽøŽ=³Îf¨ #¨H§Æk‰Qâ‹àSÿ¥r~FÑÇÕþs²Ë(9cRAÂe¬r©õ gÁûpPóãŽLK2}7Êfï*:;™zÎÙ’ø`r„Š`ŲÏ)½êJLQüt°Leâse˜KŒ]Ól²_,ä”cˆ¿THäïÐÑê3rÐlÖOeÏ2T­¶P– å[&³ÉO¹#T±!ôœõ:”Ëy67'sÀS4‹É‹í„Õ\JI$°Wà,Nk·ÿYz, ¿ø–&‚à ½f­™F4hì4˜üý™µ.ˆ/ûÒôëî$O«†ž$ŸAu7qÿ¾ Ë®ÓÎtºfmj“'†6ç>™ì03Ä”‰!«(kObÇß ü£Fó«IãjƒŠCÊ®6Æ݉Ôu7R×@{‘†M¤úm¤ŽAùö3Ü Ø&RêÄE¡ÌõœZVf×Qæ×<¯¦ÁI¶UU‹Jo¯u˜#d­™ˆž"Ä9©!ªÔSlrë¶ÂLËiˆ½ž +(µõàŸxà˜ï•`È“9!¶ÅíŽHýŽáŸ‡•K’øg–¸'SxÛ…jŒ[îUú`K¥a}qœ×žÒoµ•´ã&ZŸµ51½ƒ–Eh®” ²B¤7‰ ñ;,Ú3Š”#¨èÇ;m…þ3!’žN¸oàªëåÚwÿl¥Ë®)%Nõ-¥'žÀ¸µ9ÃÄ(ûÅናEÇ.WÔA¨F×n£y ZåÐÑ€öA† àwQöåù“]ãï#Ä'=²0å¼ô–C»•â‘ÑUQ€¿æ¡ƒ\{«¸oÀ¡¯uõB¼Š.}á‹lL—¤1£oDØœb »B }L=¡©-b w>³,s…埧ö ¢ðfÏœ>Î :$˜MŒš1_1¦#ÀgêËÞ!mᵚO ÷I_u¸J|Écè•6öÑlk}"j«Ú+Zß¹s²Ý>V –—{a66þðÒÆ Ô¬àÌ‘èl˜âó+Ä™€†ÞÖ«ªK›2×±q–’üóBG ¡.ÖRᙶ9[§ýA@ˆÛЊHðËlCTõPìÜóé>P\B0ÊáÑ{2 +7€á9‹Mvˆêžñ—÷F«RxY•22ò ,|Ý„C{÷acK_15Š^L“ͪ¦¤ yÛjG æ½¸ ¥57PSl¶÷ÙWÔ`9CëcY.ÍŸã˜K>š¬ ÊÊ’•C ÏóžLÀ=#g‹0ºB¹Ð&‹ÒÊ62þ•iº–®fŸ”±ö»‹  ÙÉ$–Q“:ÔsÓ¨ÉÁĵRï&èÝÞ7 ;ñÙоCgåâ´5 …»­Àgò Ž+ Ç oÞìEÑ\*ž†Ð¸.19®®ÀÐÇÃÕ»= / dªŽHÊ/TƒVdÔä…kþDÓPAòÌIòMâ^6’Ò£‘m ¢ðÒ˜«Ã´›vÕfbžœ¹{®´ƒ òVJíXÊP´{ÄZÁp¯XÏ®äÓÙo@|U„é'Ÿí™âÙ{(ìBÆögO%Oš4ÂÄŽ…ì¬ÙÞ¯C‹#¢îV/+·c:{ïTFr$#éþ#É–^§ªí&?_cÝà¾eU!£Ç"TáDìÔË|XO#D#ui~ÀèŠÂ5 +ÙÈ£õB¬d“*ñYqµ©ì_ƽ.Eíé 2Ò]Ó?ñøÁ/&€/¿]’slø#ËwRD3I/M¯òÒ‹·ÉöYé/¿öɶrŠ¹;4nS–€gžTh®Œ¥]¸´c·´.jΕ°öðo›KÛBò¯Ðu¯b`Bb–þù@¹PK€'s!áQõ +hTQáßS2ðÅ¿`âö/z wAWu¹YÔÛÓñÍsQ§¢¨Ñêù)þ?ŽÞ<ÞýðÓŸ~ÌÝÓ?]ÙYcÍÕod[ÌÕÛhˆãSTÿ`üwõÁ™iŠ£ÿQþqðŽ¸b†žÁ3:v%#N©'û`1>†Z:Cá®+K½åqw+1ú=¼öøâ‰4Ø¡OŒ†a ÎP?‚z£µœpä<}ùøtÀ"ßšçºuNpÙQ/È=Fò^ò€p$¹&¸í Ά~OsƒøO‘¯ƒ«„\ŒüD¯~ÁØž’ª¡¡ò˜.@· kg¦ß¶Ø§!µíš* H2_Y@¯#ËÍœj<¡ñˆ~90_ÐógàR)KiÎSuØí3 +à›™ ~éA² +ìâj§·À˜|!#×êÒ©È7b¯Žñ Ñð}d¼ë3%ˆüˆÒy÷ƒm½ÿ'ÀZÒöp +endstream +endobj +138 0 obj +<< +/Filter /FlateDecode +/Length 5277 +>> +stream +H‰œWioÇýÎ_ÑÙ€v8==Ý3$ËÈH"í·$Hñ"^á’f¨_Ÿºúšcw$֒˾ªêÕ{¯N^?<~¹<ýô¨~úéä¯êäýéËÝÓ£úùç7oQGo¶Gµª«Æ:ø·m­z¸::y÷±VW»£“­ùw­ŒÚ^ùªƒð_W9eŒ­lïzÕ¸Ê9 nŽŽm£·ÿ9úu{ôëpìáÔ+øûþä·›Z½½;úûÑÉßðïOo¯ÔñÅíæÝ}òÇ/¿¿U¦ïºì9'Û­\j<] ñÆ®´nhñÊíx|:Wµê¸Roµ5•WÇðIß|ЦÇß_©Ý…Þ˜ªQÇŸôÆWV?éÍP êøAoz\ú·öêøQoƒ§¾ÈK{äo¦ÅÏ;m:Ø©t‹§_hSã²Km|ögØTãÉ7ê~´|w«Zy®pMep•ipÏ•6ç¥.ÝÇÛÀøæ›n0€ øèðxUËG„p!^ˆïp忶‰5Ù“ÿ¾„&]}EÄÀ£éÔöÊÀ3YAj¸©pPA^ã‹à‰;õQà +CÙ0àSÝPÖ!cÛ H D×K9<þJy‡iàäQZveß`bz\r«Î.ÆÚq¤êø^7TåkLæÿ¥}}y3ÕjCY<Ç#J×­J·v¸æJûü>øBwâ7ßðŒNβR +†’±²ß&¤‹ôÆUr4ûºLƒcôÕ¸æ "öüIk鈣 +8L#¯pø¹“ˆ(EŸtÜAÐVB@|nšoK‰j1°x¹â =îÀçj-‚† A÷˜d0~€ÔEÀÜë–Ÿ ! n0$ŠøèxCàñ}=~›ƒ»fÂqy0;<ÕP‚¬dŽ7fIŽ•15W½Å‡4”¿Wª\bè|úÓµnˆ ž°‘PˆôXm—©î±ª»§J…0U2ÎwŒ1¼Çx@§V@ø(XË9‘¶ ðÏåŠl:ü}‡]@X¼TŸuc9¶¡î¼ªÉš0‚·_aø°¶Ä5>QÁ$Æ,ˆFhUZ“:óa%æúº`­n‚nóÜP™Dí9ØäW5´Î–;ˆ«îDRw̸ „&,°"߉„âéB¬rJ"Ÿ1]&(Xú|ìt¬Š¡ß?kQ .Á…º*‡MÔiÞî»Äá»'œ¦ØžÄÈ¢¨„*Î+ŠYoâ±OCˆ F|¯EC]3;³»/_ÜhÎsaé¿ñ(r ×´ ©‹8{ì"ŽV:Z* â6𣩓—cº,šÒµ $öâßgÄ‚÷ÇsTÔ!É\˜ Ðf`Z 0 &]R“fÈ)wÚ§[gPÇB*%jgç¾&y…`Ü'>#¢{*b!9ÁÖÜfØÜð÷©C;ª¨ég/  +àF<¡ ™žg‚ca‚Yæµ°–y5BÖ 6ÖŒJ4i9êï +3$ñ›±I"CfŸ×E‘DJj|ÄÏÏàDJr §Œòœl!müB‡~"½j +½šs:ZýxUöå®ý‘1ÓÆó™Ý[rg“1s%H†zÄm®!ÅúªöV¹nȬþIƒéŒC?PÊÇLÖd ÔY0Á¸–‚xÆ9! @9;©©r —\Íšqm[§ï™ò:N¬+T® M½W›Ãµa†™x¿@€óD+¿Éælªd¨”auªîéwìLbÈ™ +öŠ‚¶o8÷×Éš j¢¥¢QNH:EŠytÙJ@™n.ÓZ774#¤Ú~‰Ó`äMsDÖn†Òr•,ìXWFEa +ÃÑÆJw¦‘+’·È}ÍlÉ)• )w`GüXF^ø0X„æ«YD»ç*#œ¸Ç¸Núê'._ŠL2ØPâ·)vP +!÷á‡ÉÝeWðÇJüÙ5ø˲íhšðKðsu6MOÙr^Ïbü‚|1ü°âÕ>  Uf8&: +_ ‡Wj…)™ÏÜÈH¹Æ2·H…È=-¢ö Û““‘Ý(2=ÿ:ñ[ìŒ0‰ÔF)7 2+Õ—6¥ ÍÅIô¡P`ñ§¦Œì°ÿrÓ˜„ïr³¾ ßµv#¢«]‰4Û¸jè[ÐdÐæ4otæÆ^!Úd¿Æ&¡^ãøDy²l7‚/íqpüsÌêæ=P¨úÔj§9#Žð.¶ûA³òÚ=ÖhuÞýxÌk—òÏK¦9‘»`ûº…Go‚%‹°0ö‰¢_=ôeÌa<|Ö—Íf:•& KF +ÍçÈ~I/ˆœ\«$–èôÏ`¹Ð…¯@¯LZ·†n³|­¦Û¾¤[»ØuŸÓ}Óäž©°œû4ñÌPð —Àœ¯HÓ„¿ÑÓ5¨Ñ?îEg¦‘Ù~ŠóØÚª er»…ܶ0&'µÕCÍIa»“a‰ÒžaÔ7ËZ›zkЧ2³Døô‰'•Lr¸Ús'LmDµÔŠžz)û.6/д.ÓC]¯è<Í+ûc¨ Ÿ]g–j^»Ëú£„è1ú+EŒÀ¸ Ó™ÒTêÕÈI£j@=WP¨I\±”úºÂÙ…a<„°?´DrORõ„ô`A¥™ø¬©[¨vnݪ+ëÔél Ž…tz—iî o´ìÙ’T1¾Xyâ9`9žgÄZÚ†ˆ/1ÒÃ0ëÊU±õ/¨Ævq’ȧ Öˆ—ÕI´%­ôýRÉôBS\lOxøhºÁ™Áæó¿58`ÓC²”÷$Ç“ 0NvJDNçœXe‹U”6ò²–qzK´ð•ie‡«às_i×fz4Œ´‹™¶]¦Ž‡|†êèÝM/3œô7Äo9ê¯ÛÔh‡-ufî¾ßJ—€.ñ³^we"Ý~Î’¸šŸ}Y¡¥i±…‡Yz>àÌÓL- ‡4ò2÷$¶b;PA<>‘?k0œi¾Ô ™§‘K‡”Þ¦M™#g#þÔáÎ5µO6oîoCQ¾Rgü÷b¡– 0*ÇWz`ÉT$F&¸œëà½È9*Ç_f¡¿ÌvÐ;¤ì:|ëÔ fëyC†{ÀC…ÅBbУG]‹èn4Æ ,@œsr ÏÉ\e±±WSiÊIšëˆL1!=6\:ik\øMÈr†ŽãàıGÚLÓd^LxKýà°¶<F›ÕãFN½ÓÄagxë0-ï蕇åÌÜǃÚ›–GÝÈój›×y +žý¥ÉèF èsUŒ9°H +«5šÈšvWvh3‹tŽx S\—øX°¥gKúíÃ,Oç…˜_’D[\ò”áæœ|P‚å,“Q¦>G23·#CLT$C5•Õ‰…f–©ÏE/DìÄI÷#2(fÊLF/Ùkfæ¸oL_(nûMRrÓ“)KL9Eóúʉ0aÑ×÷ÂyQdjX ¸Ñ”j××™œàD•­;^p7ùQÉL÷°.n¤Á|ò(Ý`%kª£+_‚ëhFö¬ÜSàuÜPù¤Ô§ì©º§á?’Åe÷|wJŠù yTó/q¨iTPsh8Œ<›• +$l -Y¥Ôè¡Ö´½Gü½Çf#ßÛZ° y>Ø÷›ë©@Q-C»æ®œS1M?Ô*j T#w9´+òªjܽõDË7ÖÖÄ…Ã¥e+³ö/á{^:hÁ¢©LÃdJÐgð~Dä ‘vØwª–AÓC¯£7ªŒ… +¥?µO£K£&íB_eѽL¹éd¹ššÉ$^†Ý’ŽÔx¥æ}² sÊp;˜¾ +•kñUïÔhÑE-Wi}lÎæ‰Ñb¦zV¯Ðè\â1ÅóqH¥°¥´rƒ|\ÎfŒ})M~X§(á5é`Ô."öF3Ë•Ê&†QÖ¹lÔr‘`.9š‡°ãK:q‚ +èVaZkyãÉéVúAÙ>?3A…ØQâ+ÎÉ)˜‹¨]#*’Ô587ªÊÚUñÚéøøc XJ*Àf¸J%Ü´¹·¶WŽc§MN½yÎâ8Ä]UbÇÏ=R%Éfb* ¼"àeèâ[1FÂßUÐêèªQÂ{JàÐߎDuL$^½03rÖ=︒à"¼!/Œšu-"÷„(Ã<1-4 +¿7X:3.âómþ>ZGZ¨îHÌ«µ£YûCsd‘½$•o_6KJg +¯"?Fq + R‚…d­çSÇ)}“È°þkÉÂ>ï‚ÚÏuAÑ«ØM‚Þ½Ó‚®,²ÈG{É«Ž¦'cŒ0°Å’Þ’ö(¡š4rÆð`î“$g¶1ç6cCeò»ð¢èëbÉ„i& Gë8[¯J|Mhê±K‹²Ê‰RJ¤~'k>,=WŸk]ð± +:Ñ\w /ëªã³[¨Æo´¯Szé³³ûó-¼îèâããùÍzó÷ÇO^žœEÑã¿çÏŸzáÓª¾¡“Hûâfð~xù%Ü$™:gø?8R``Û¼²îw؈[Ýq¨ “MÃÆ—ÜØ ÄP+^"£«l²šPDmË ‡P Ÿ‚¹­«–a¹Å>¬#΀-0†¶‚ü&Ðf:°·+5—Ñ“Kzq·§ —Š¶+Ÿ†ªìA#T¯q;PàW²­5ÖÞú+Ίðýø?C÷cºc#(4@µX'Ǽ ³Q'‹ï!A£Wê+®‹i½IqlâíœÜƒürZ¼¶M0/"ÎÌ$CQ`ºîg ™#P˜š%®3œK T¡Å%vbÔö¢·œ¹‡$'Pes)öÀ%IºôóBR¹=¤jAP"©~uhqù#<Tä—o»º¦ilNì>Ç";‰OkÖ@ÅŸÒ}¥Cå9åŠ>He5-•9iç4•{$‘j•´âæVK©Ne³¥¸Ü¬^¼L¥¨²P©£Pëº2»ëïžýtV˜ë²]Çþ5j¸` ØÑaÓ¶Îx kz©×Ú¶tŒ;LÒ„×'Ùu¡÷h¢Ä¨+‹–߈ì9ÇÍÅQâm9Q”ž³„rf £ëwüõÞ’*ž[Ò†ë˜Y=`ôÚ6>´5w|ÿ$t®âÎvr#¡~+Û +ß·qá’À¾ÁsQc—¥d@6òÅ6tÀïM8úFô‘z¦Ë6%kÓ¦®ç…yP¸Z÷ÐDQê0å÷ÑE@‚€û¸Ψ«qÀ”Ö'´,Md—¸]‡OÒ¯dXt×òÌCH\¦BuÐï`q¸ “ŽïüpJJIƒ–øéŠb]z„ý3üPéÂ`öYŠ¯ŸÃ·9í\—,vµÕf_ÕÚFµU­E~KU• D…W©ØÝTJuÃmÄêGÔ„e+2ÿ\pÝ +Ü_`åäñ‰«Ø¢üDhÀm(»£ªAV³li”‹KbÑ{¢R9ÍF4 <>—ñ.Òli5õ쉓C‰1{²Þ«¶QÀ| ÈëÑy¢ñÝ ©ïv– àÁ|À`D¸vT6úù³å7bDèW ¼(C"w Iê¥oÖ3#Kª]‡2PÄOäH§ dé„=G•'¼æú¼Fÿ +04ùMÞ +endstream +endobj +139 0 obj +<< +/Filter /FlateDecode +/Length 6261 +>> +stream +H‰´WÛnI}ï¯ÈÇN‰.WÞ것À°£Y1ÀŠFû«‘Á—1Øn¶mãa¾~#"o‘u± í¬¨vUeVdĉsN<ÝßœŸ}º¼/¾ïnoÄ“'ÏžŠÕ³íªu¥ƒÿ­5b¶:øùm-ήW[õ[-”Øž®6uU×Vl?‰ðãN4U kà_[9a{[ÕºqB»Ê¹Ö\®ÖÆÈíçÕ‹íêůð¥ÿÀ‡p=®…íñ¯—¿¬ÅóÝ꟫ƒ7ÞË£«3±>¹ÚüüLüzøËs¡zÝ•± + é ©bŠ©c?¤êªóK´è\U›ÞŠVwð¸í1Æ÷맲ø×WRU \NäÆâßÈkñLÚªë¿É«øtøzSY±¾×]/]Žà}¼/7±>ßÁŸ\øý.p½‚#â:Øç nWF¬Ë·Ný_{ []â‡K,®¼“p&X±ÛK‡·¿„%ð7ýÀ+½Ÿ¶¾’pÿ\n Föç †·ýëŸð~ߢÝÎó×þ½ýGªÝ=Õé!éPG$eôT˜^ô +Ô5¢­MÕuMƒuy\×µyÂÐ3©YqÏTërÏÎ.ÜS=€¹m8Rþ! °n«VAðO¾_¿“ºG€\Aºk,ƒ¦ìß@1‚ƧÇâ>Àr§à}ªˆT^w°ÂÐ>ÊáÒkq(U[<\¤¾I£ÂÞw„û„]¿c3ÞQIÕ#6ÎÔ +CØ(UyÌhüGaɵôOnÄVºÎcTÑ×pQç)(é³WF3<ØDé=ü:„q!^ËMë±Ùâ^ü’OéÆçáOLfË“z‚Ö0ñMØâïã›âÃZZƒŸ×˜LXTÃ;üb&àƒ\ØFsàTJyJ(‰¸lº¾jH¶x$±þØcTï°GáÆ+¼Âɶ˜*ˆ÷56+ü}(dÀÆFÕ ’®7”›†må_¼DVÓ,¹¹´y+¸á8\¬çíù «ö¿•sNŠ}OOàÎ-üh|ä¡TC4‹ÑƇ?õy…Ð\`ľ¢<Ç=ò'“3Æ= UQ€ïJàÇŽ¶dª-2µl¦[mÛ°µ®²]Óz°íBFsW Ñcô÷tHFOOImðZ‰·R™PÝÞk\æ>—+z-Xáà™^FpÛ(H*TX“®}/vÉgíñöI¸EÈû$;\¹“=Þ¿¤ ý€,#y1‚$¾Cz{ŒªºFá÷K‰¼Û29„ÐÈi 8AåW¹wépŠ°y&Ž}@-rc É+€d{pLM¯ $­7r™–º¥}7ƒÒZ,¡4ÁK‘ßÊùØa3ÃSÁ¸ôZRƱŽ„³}^;)tã†oÆ ßÌ*ÝLÃ$Üú†·“ ÿ—ô$nÅ»’Cª»~$ + ˆ5,êzÚbBo¥oäcÜjUé+)åã®dkð$â¶g½RöÔ¨ ‘ª!°Å Ø äÖÍ`˶U°5—¬Ô¾ C KèÃ-¼6¥×òy%bϸ—ajÜà«ná:Œ!è ^EˆcÏ^ó²D—‹bÆϼ~ÐH1Êý²8cgô•˜bѶ!ýU6®"l^âÃTÑfhºï89Õ¡»È¨ÝûQÛ)šÑŽ¿†;–PÜŠ%qæ£ÅkKˆÍ!Ìhtý aA!<{¥Ä%‰§¿×—{[ÃÊ„kƒÕÛÁÄ —Ò2¶i™'¨OHÍßÊÜêÿþrvKBª& [D«õZÖPEÀ-;zí§tMµ‹\@(ƒÃZÄ ôæÝý ¹–4îÞåñ'¶&÷Ïf'?l"'xSZÿ}iœÏ|ì&ß_¢"Þ")xk˜^\Œµ®”J='•h*Òô,Äp)ýL²N!ù‘×u“Á2˜0iRõ[RS{ߢB´~‘Õ-ëДƒÒI_ˆ¬Ê„•¢ÉÞ,c7Ù›X]Æ¥bTõL†®w"³0 +¦‚*lòŽ“þ®‹þŽ˜jCNvçYó«‡Y¢—Yc:p÷v?™ˆ1Jd0 Öáv)ªúUÎÌ ª¶lL˜ô=c·Iclü´žžúþؘŠHɳøu݆IÈëPPÀzà’&±Ô,Å’ÿ¦'*1nÑÈÅÉ4ž{oT‡Î™.A^Ÿ9ÝŸ÷lH*¬ §÷º‰Ñâ°€Eü×ñŒ•¾Ó௺(ОêBCe±£Ïk¼f'á™>úŒ b[&Ë0fëc­šÆ˜ëkfò¯†óÞls¶Þ½²IK™’¥“i¤œ-°r N®[bôžUâ–~½Â+dv‹š×È°æPdûAs]ÐÖAÊ&†^ÿ$÷Gò/ΫPÅ­•ì©2ÿ·‰á/°tŽ”‚Õ#ƒJBwu@k˜K³MóåYˆ4µ`Nå0[:§ZÍ6ž@nÛ°"9ú"L'~nS”)ž“‘Ä$u?fèôhÚ >‹(~°L8 4ž/=Á +».Iäª%òfò4˜qÉQF" ë ˜ž²½ñ§† £žkv¤ì0’½´æj)dLØÝ8øßÂýýÙêàç·µ8»^êß âb{ºê©ø½è¡x®k„s¦2º±ËÕ㺮͓eˆ²ì»qÏ„§rÏÎ.ÜÓ•gAŠ/xE‡ØnÃ6èuÙªn«V5®øøûõé<ÆLBe{_O‰ä‰Õ.D|*âÚIEü–Ýw6U4ä °<oƒ: +»4$+4Ò¶q›¼ñƒ›ÿÒôLü;°¸ë‡8¬å="WÎQº” ã qæ#ñBjƒ^H¶25VLÖÀþ$G¢¼´ÿK6 s [¡Yž ‹Ù³e#ö”šÃžvºÃKʸÐ>1‡ˆ„n@#k¶Ï€‹Ó˵¤êg¾£ÿ4Á4QÊäÐÏÚn7íÓü\úNj*Sßè8ˆÇ23û“½ÂÇí"÷ãYÿ:¥Ä[ô\S/Í÷Þ̾rïÁ=`àÓßÎz²«’éðaJÊm6 ¡Ù-&Ïbhö“ž ²O€¼×ƒ–>Ì_Ð×èÁbcB"1Íx°Ãà ӀuDY¶?®±â°¤†7øÅ€ .K±¸ô~ƤÒÛ”­w²SÒ-ë8+…cS›}06m&IŸÃ4)„´‹”mb÷R™"×Ùk"–³£Av„ J ‡)ùÂM¶õ= ¹° LQŽÛ;Öq8Œˆ; +¬)¦ŽFt¾MO‚­*¨ÉðžáÂ2¤q"™2eé;ÒHbi‘gHZÚ®N— ÕÓ µ=” 4eDywLRë…ü¡j‹¤Àë¸ S¢‹Sâ¸1È´‡~¯S=¬§h¶)[`–t%J_•¡äÕN}ï_ŽVƒÉi7ˆš¤N6L$'˜Å§ âÓ²,JŒ]›B¬½Ë¡Å'¼ Wá£Iˆ¸pFÐF° ¹É…Ø5 °Ë¶»v@°Ý x;Íüwr¿Ñ€¼°2ùÇÑnD‹¸ÁS+Àü‰ØÏÐåÞ{äH/ !ck“ y`l„E×zžö®–Ág`ãMOª6t'lN<–Ú2K[.±qhöpf®¤Î%È–½7Ôñ@0“§²)#Uu†ì û|´ ûø‚çD•ã,W±«n`¬M3ƒ©¦c¾š»_>gY¼ì‚na¶hš¹™©B +J> 3É°›c Kjê5%N­Ã¬V&i‘ÙÒX¤D;ƒßÞyü ¹;ŠÙÛsÞᱨìà‘ŠÈÑ·’Ø8>5òÑÆÛñ5ì±ÙPþ¯ñªŠq}Ì-4†2øÈp,™•ôé¢>(’K!Ú g?7Q,³Ó^&ÁíÔÁ×AšðfL[,Yé§èÕ¼ÕÒ´8†Ø4;Á†bò¨RϬXMඕe“㺱U~#/_P"¡HÍá © °Ü ˜|¤)a7˜”"\ Ôea üv”_1}Ž±|œ Ççù–…Én!šÚ%âÌ´Xœ»É90FËvj C žëkØ„ +.n8êzl¹ØpÍ°áˆ(¼–·“Z~JŸS…’xë†2qOÕÆvj§Ê|Š‘&ÿå½Zz㸑ð]¿‚G5 7»ÙìîÝ @VÀ6ÉAÊ)Y¶¯%Ù+%ð:¿>¬Éâ£g(;ÈeFšéá£ê«ïQ¶FÐç5õk7Œ$$!óìLsŠ. ãn%ñ÷F•$Œe+Ö +ý~'÷j̨nNž=¿èÕÍãɳóá×IuùödŦ®ju·›«Œsý¼ Ïú¦ïûñÛ&¤Ø^ìë× 8I×\Lãši^Bð©÷p —¸¼ä;ö:Žîçý¬í”lþóé0&N´‹=P’L|ÌI{ƒ}Áx½Á4h2&øæ†`w¼h<+0,ø=OŠ@Ž^È¡Æ™bbò΂ è£zŒîþú¬þCOB`A0Ýÿgî°0”C@öUÉußÎôŭϘ(Ë&jE/äny„ÞÜù?rW$$/@#þí°M…½S¡‰’†ê,Ø=œGê€/–¦ü¥vê²æ”fÁEÈÝvE2;ötT^vÓBþ©ÀI|óe–sÁÝnÞ¯"ÌÚH|–vZá{Jn©?ظĢžóñÊ\ Q/O;3Â(¦ûQ¦\¼ %xÙµbfÌ̘1u36.î7—$U53¢j™RjÑ‘Z^ÃÆ8h¡Ñ¤¾ÙÄu1\+BÜ€•«“Uøž1©œ`îÅ4T¶ys³ÙdŸd“7£çœ@ì†ÊÊLIÑÓ%Ãñ ˆn„Âh¼ÍGLAÀxðF„˜ƒ%ÑÑj°¬ŒªÎªôëòf³7y(£ T%*÷dUþ·`ü_t#ë7YÁ¦ÆEÓb„Á÷~(+ Ž¥Á'ÏCDd0£ækvübÉŒˆüÁ®hrP¢0Æ=#ý1Ñ˵Õ9®Ð”üèhq¹¯é I,ĵf´ ¢ +_eÄDE"ÂÂG9BJ¸ 5ÃqÑÓO3ý/M9Šð…—*´Ù•%pŽØ©ˆ{$rï•èçS1aévT!ºäëË +Ž»> &VÉ2GuXk’k%Ö‹ S?þ%Îüί üÖ¸'!oXÀ<ÇaÿÊÄàÒÜX~æ#Ñé”l×"”q‡y5ŸnžöF”,-J) Ò¬”k +¿i}®n‰µß´Ï0ZÖ‹GÜW碣<'_)` +}°‰{ƒÇRËíÉDù±¹:#£bPê¼eš„é*ÍwÕŸ×5¼O›C4Õ¼WëºGÖɵèÄÛæY ·ev¯K!£k:(„]Ÿ= ´eR’_Ú:÷-(jè¬S€Ž[üè”6†ˆ/áÃÒrQ-iLlAp ´^‹´^o¹ÞÑ¿3¯¤ò°HCk{=x“ÇO1]ý`€î ø£(Õ´¯pe+¼Oštº³pÓljà×xø”Ÿ +w Ì÷žŸŠ?ËÕ=r­sÍ®’ )rª; wÅV*Çû–³ÄnÓ*að¹?´â}ÈÂmïÂíµâ?ªíG‘5>B`À>øLzýº†,¶[ØÚã™ö­G“t>tœÜ«1£z¸9yöü¢W7'Ï·_ܹÔå[Swb8튇]Õê`4-V ‹;Ò Väî䛾ïÇoÛfUæ9¿¦¿¶æbלÒ[AQÕ{¸ŽÆë\^úÛìµã¾¤ôºŸ÷³vaPîýóéù>ïµ­@ræR'É ¥0¼à¾F×áÍ™ÏUøûïÝéæ”ÂGXçw¤” ÆoÎfˆ¥j Ë¿Ó†lŒŸ£\º"Udಛ¢²h²z8ô[@©ÑÂëì £-J¶aãß@C‚æx䥟${]¾Æ–ƒb³ÙÍ5%âƺª +ÜT ëjaªÏ9Fi)ˆiAÃ|¡UëÁE¿ó¤q‡ÌžðÝŽ~ \÷RIú2x¤,iq…C®,53›ÔjÌZŸª¬?uÞíÞ+M4>¿ŽpÑà Û¢d~EÁù›FPÌ Fâ¡ÙÀHë^ÃØäî0Ö`\ +˨ 0%ê&9átOÕŸ…mïámõOGãVýØífhöåq<¿“wæQßgénÏùpÒ àQÔËÓÎŒðèwï=Œ#¼Hbº[pË—]+ÖŒ†º’£c£Ð±Œ’­ŽpêWp÷Á¤ šÃÐrÁÈåÄ€hM5ÑšRÑÒA´`ùæº\,7'—>â#L{‡…MUïÖ‡©ÌgõÊ=Î=‰ð×1-(°é«Ã:†e»c4¼£Â$ë·3qÄ‘GuÝž_õáÐ~òPë8Âj‚––$áÓJ"‹Î é.TÇ&?`3Sà +¢-ö3ÍÖ£à“[(þ>RB=ÞÞ¡:Y(«wU*J_¯†,E!`” ¬ãõ1xœ•]áÝÓV桵JñD¨i µˆ)ís%Q©EFœàw#¥:KOõàC¡d38ÀPËrxef½èèÚ%ÅL<¶: E¦ ºqMý +¾9f[ø´!ç4-Kõ(mŸ©Ôí×,Ô¾^°HËEq°ä 󬫄öÆ$vV)A:˜ƒs•ÎÛQ·?VÈG#.§\Jè4ãÒ¦j¶`¹haî=Á »6”v­…ìhlatÞ“p;Í+pM0[ì³ìëüU-×)o2«iæœè8Ö «ûé h•}{. ‘<'nX|\·óiÕ +ËÐË’gÖSÅeü[r¹‹çX“¨eúÂáÖ’!%$šá¶dp[7àfg‘L>ÂL[„u`»Ç‚ÿ~óE®'¥1×}# )Y±°ñLÁ 4ò$¤kY®`9:n9ìôŠó ã Æ|¦V2g{÷0fVnç‰Ý\ +þq ÷¢ãÎÖrÇv$¦Ñ ½Íet;%Á£ý#Êr{lÓ2 ùç[a›çÞqÞ€×4ˆpñŒÿï•;ïhJñëàî +Ì‚'+Ä,8S(!¹ Ö*‡ûWÀñ!2£Í# +hÓ- +dãêDW-1K ÂBÞmVÉO]SÅòÒ¯$§¸²’3Ã!qù%"᜺OËîsy²û´²lUï¹ÆBW¼H#H×>¥Ày £ã""Ë!kë;õ÷YÅ0 ƒã#˧!r…Ç·PÍãîˆûDºÍK¦nCgâ€ýÏ=-£D¸Muˆ6%ê%r5@¬O"ìã®2pâˆÓÿÏÊ¥[£óa73!„XÝÔ{Ð…£7rÊc :Ÿéx‘¾h„ïDÿž;œ¬R)XP‚mr5aŽ¬µÙ| &÷ý»“fî¯U©qžßàX0³\5÷C…¥Ô­ç?;†d:Rë‘) +¨Šªa?õ÷Ø/îç˜jÎN\…Ñ€ ZœP«³[Ç”ÖF½NW¸$¢@1…§z¡RnŸ˜Ûç#Ü>yn·‚nŸ +nG@< L3ùb³~=ùÚªž|ù&©iІá*­fð^h7^–+ ³\¬ˆkܶCnŧÉÔ±Ž¢ÕŠxPt­Ò¯€ŽúGyr7]{õÂ}„{/ó%:ê×€’©A-" —®rS KãœK#,îÞϧKK„óq÷*Ä,IH²\àm̵Ë<Þ²9¸} ÓRO\ˆ¯ÃÇ´Í_.—®’a¢f³gÑŽ{k³eºC£ù_éÚ=¹ü"í4Uñc‡/R9Öe„º@ÇÆØa#:üÎ×P¾?·&tÏ_$Æ=èXhDc;ü(F¬kê€Õ£é%ËÜ"§²Ù„+ÜÀñ0µøxò ¼€ ^àŠ-ÂÇÎ$æ# ݾ6zNm®U»7Žëô—1ÎÆ­ý±ãL¦—Fe›Sȹ}2ÝœœÅî‡x§JÉÕÿ`q[Cˆ +endstream +endobj +140 0 obj +<< +/Filter /FlateDecode +/Length 5422 +>> +stream +H‰¬WÛnÜ8}÷Wð± D²H‰’¸l’™Á,2³YÄû”Y l§d}ÝvœLæë·n¤JRË‘3F€t[M‘ŪS§Î9üûîÓdzãÓOæéÓÚÃWÇ_¯ï>™gÏž¿|ažT¦*}àÿ¦©ÍîýÁáOo*óþöàðÈý^gŽÎª²rðåÔòí‹iËÞ]ŒsuY÷¡7>”!´°àò`S7öè¿?üð œô?86¨ð]Øÿzuøãee^^üëàð5†÷êøê½Ùl¯ŠŸžÛÃ_^üüÒ¸{ëá ŸCÊ»E +#ç«ÒUÁ™Î÷eŒ±Å(žVUU?SqÜsRT'åMÓÍ&›öÍšM=œ>NµÁðÏ1ÇŽs|$÷¬Òθº-«¶øvóÆ:_¶fóÑÞ—Ù\YWAê7ïáAY›Í…u®ìá|óºŸ\Û?®,l?|¶µÃ¶¶eGÏ]ÍælPñÖ®ÇÓ{&ùÕúWÛqf³³5~œÚ?®-ýª7‚mNÍK[t¸¶p—ÝY×R¼w½…íá9pfœmZ 1bÞlZÛF\ã œØb°·ø 2Ë/ñ¢¾‡kðù;¹ö›¼3'âT}5š£$|€P#&it$ìÒÙˆ?xóÚ¼ÃîîÕÕ"nt-Ñä{»ÿŸ£¬‚SPÀFj½ªîjpŸ.þCÇÀ GeùÖXú|´rçêâ&º€âpRÊþ8 ”¢ˆû_žX®Ï1‚6üdÞÙ"âÂ)à¤÷;±Ÿá}`Ÿ[ Ôam¨në–]ÔxƵ”~g© iÕ|×\­Õˆ°ÕÐCAç¤Á?·––í(CQ¶kõv ©Ëë$pC¸q9*To„=¯öxR))ÍÅ&l¦x¶f-ļf›ÒÕ~ bc`ˆ m½ÅNñà[Ó¥®Íf=èìØß +×rÛ3£J±”ZúùûÐÙsѤß †ÿx£ÜÈÔ«Â-5Ô¸¸&ß8ß“97|Š…NzŸ˜Qéé(ŽlR6¥¥ùï"}Åíà‰ÓpzßéOthBRÖÚkñSO( +ìPÛCj2GåÖ´o9ççÈ#øüÖdê¸à(Šéñ‡˜kÌÅž,ÜÀnLAx‚ºúVþNYžŸt{: bï1ÏÌ8N1Ž­)@ÂŒs‚Š‰îᇅŠx„‹-7Pnsì‘ÔŠè|ƒ,³·Ó““Ãóñ·ŸgNœ9|Aòýýâù 7}# H»ÄT9&,é)O{G= ÎlÇ ŽÎÆ…ÔØ@º3õåJ´5#¶BöZ[çK—Ávƒ15ª±…Üm]aïägò’¼I¬ÅD²4®²`áé‘“íé<8‡šûBÊ«Ð¥pXK×vùý lZ'ÃXmGúF.a ªÊ¸‚ÙãB¢ŸW¡Ê]BR v!ÊäµÄPYM¢$åx³„h£«Oª$(Œæz“ûƒÖ§9÷&%‰ÃÍIœ®€­¹!GÏ5G=šÏ‘N_À0Fàâ¼lC§´ø¢®QíÏ#ó8ÝóLŠ8N+@‡XÒ»¹´OæiÅòog^° ¢”kæïÃ¥M7’63MÖ14*­œ“îÛ7÷5a¿’ï2UGÏYf 3è2F8Eª‰Ó˜§¸I &ºf\ÌÑ4ÈÅ\ ¯vdþFÐ +˜Ú´6…]ç*»Éœ†¸N|Ùà¦V¦`XãxzrrçT߆Ò³¢çlt4W˵×íÇ^·ôu€ÿ›¦6»÷hy+²¼/üïây+ +Žo42îªàL è­b pŸV Cž­KLT!äMsÆ›öͺM]5¾fÖœã…]èèHîCŠ©‘JÌì]Ý–U[‚x‹æ­&…w%ãã³õh»(î¶Kü܈h¨c 5áäÏ׸Qo…û|µ>Ã0Ú?$ë“ᦸ¶ÔÄ7–«ÓÞ"%bÞ ¡t9¹e=ð‰ô§^HŠù;Å{‹ïö—ôׇçlC°Š>¬ëºàÓ­Ä5ê%Îñ"_W Äs’•«z\Y=HϤä! 4Äßz‘YóV¼œŒAŠ'm¢(nÂã½²²žŒÚ#XÔ‡ù¦[Û0¬(æáÂLÒ—s“²]–Ê‹u-: +OfÉÕì¶ÚÉñ¹2VXÍ%rk{–Ÿ´èÄ6û’? ŠŠ\ 1¿†®²ÖÒµ«Ç2ÃÅ؆í™a;ãcî6³0×$©ïu™]вo; Ø™MU”MØÐY,ºEÈN”aSF-H¿ÀѧWßí1.®zIK.·¢‰îQñsç˜s$Ú¤hYLœAü…£.Õ¦ûÅZ„žZ˜{>&àµÃdU®U¦nêº%ÈtPº1]§­ÈZ¦Û£+§ýºdÃQu‚å¬ÎÖÐN–vhï3IwZ2¯½®ßIþu¨Oæ¡Â·£sǘÉêsÈÏHó”7›C¡ú'&Y’ijʯMX)²™êÇWÚ}±Ñ¥>r»ÕP +Ë´6À¨…´gÝe3Hhšýù®M©®enž³Ïä2 —UFÂãã6¢Û;T;]ªSêô F`aólI¥צ¯} ªiÙÐ@DÑuÔ²®»OËN6]­eû•Z8§Ÿz Q°úè·›ƒÐļ^a%°i ˆ^Z0¿â딊`gÄ^Í7Ø«cæYzOv×f/\¶iB‘nYÁÈ s墴öÈŠkOäÙ1LL‚èp.'¥S1íl­ ìX¥÷_Ú¢“ù¼—ŠFƒ6`î_cæüH‹%%Öh%¶²#â +¤A²V'ùjbk¿i¦˜¥::¡-¶5­ØšVl ×­­Âædll|26õC ®PÖ†ö"ú•éôûœMß/5|q¹ùò¼G›“Åh§Íó—LIð &sÄá¹ï:¦W=èÉ_PV.I8%9¿Ksvâö˽Fõ¼¹ƒ!âÅ•‡z§;[m«ÐýhrÓ^šùj@3áìïüŽ;¿ãÂdµ ¹;‡%wÓáo ;OÌè—ôžše‹­•[ãl4²VwìÄÙÔíl›Ø—17êøÚSªQæ¦( ÙÙ $?{剿Ÿï/§» ,¹®_Í ã´IÞ­ ®º–îÚ58°Ëzž‚Õht]¨ +ÑÞ%LѺ&§µV«ú‰íŠ_ÀSò/ã)_tE…eŠ:“ù0Üzìsz¥crò(¬Ô2¡Ô¤s1°bQs¾;T•65ƒèUÛ‡=µVªšÔ×àž¼òª±ìeÊG¤–ù­·üÚ¢ Žiº´=!ôBßÖÖDQù­fJ…{…‹ß‰úø­T)ÜŽx—áJ71Ê%Îw%Àî1C™ 5¸V3a»Z»d wJ$Áð"Ò"êñ^ç[¬IO¹9ç1ù =@yœJ¹¯,O-€\Ã-ñ£ãº-O‚yfͳ•u4¤ˆq|'!íˆiÒ6cA¤$«ªwé—!†¹Z‰‚…8bg–«›‰Ò‚?IÍ5t¹‚¹ÅsŽº›«e^@9EÇqRÇ2qÖÚ?ß=Ðþ±‚Ã’ÏŒ`Ó@ûî¡FÐ÷÷Áɦk +à\tëèÿº%R›ú¿A†G°ß£èp§X’gú {<óÆÞ{ðoÛP‹y™=66~ÐÓÚš”¿Ù•h¬«Ñ|tU\â¼m®ÑwÚ„n’ãþ¾Q¤öœk\ÕdŒ\àf ˪$æ)×£úˆ¤zý ±£ÖUNLM?Ñ•wL«WÃÕ'†B©ªžHÍO&¶’lsœ‘‰)dópÿ ™`²U˜¦ŸlX8¢¸ÁM‹åh‹k Äj·<'aWeåËCøqY¶š3ãLÞ‚/šQù‡T˜ül7ó}žîü7­v |÷Cøq¼%v‹C-tŠtZù;2½¡‹fªYì qÝŸB˜ß”–s+1x”š>¿˜áêˆ~’Iégkö¤#¶{Dhy36¥+a¤ç>¥¥´ViÕÏ»%xV¡ü?ñU²ÜÆ DeŽž*‘5fãÙw§*±OñŲ©¨©¬¢¼H 740˜!(«’%rK÷ë·Xg¤!c‡ùí¿³òýÖò,ÓUA·ëqúýƘZ*“Šsqâ楡ê={ž¸J0ƒÌÙD¡–ˆ8p¢˜X™:áeò+šÃiÌ„ðè·0'8ZrŒèÔ ®`&(²Ç¹Á9âOµîk"ƒÂZ5‡J »ƒÙwŠgc‡’RKôºÔ, sß´ †bH•·´ÿ"€h3 –¨¿…×5ÏÓ¹¸ÏML‹»_nèßôð¼Þ‚Ñ—‘V0¡—·ŽSŽ¼”jJœ¹XLO‹«_Q}Qx¾·Øl”ü6Î} lŠB}ºÞ˜ÜZ°Žºí¦Qxe+Œ!*„áM]•ÆW¿Êzf!'z×Ö‡O_KF]ó«(ÑYÎü' š×-´à;pˆ!&4h'¹7è(ÅåñÒ;(Û™‹µ¾ÚW×÷Ò8¸Î[~3»ùÂè6C`¶hmt/zÇ?ßüÁ=Ò2bpØ4±3Šô<†‘KÉÈ÷Ô–Iq%Ä€æw¸è¿v¥×$€ÃÏíî0u]ïÓØÕù#®L–óJ)UÉùöCkAü”¢r1È› ÷ûÒ¼ ?LU®„€Ü\ØÊC8Æsݯ{aÐ#¡F'½PêCÔ–¦/ê^Ù³‹;ÈâZ(€Ó–XËŒy@¤ê©]ô¤+ºÌ¤§¶§°6£'ï«ͼ!'ªÆ„z›ªp%¨6"–ø + ¨Z_ÑÛ­~£´†è$hÝ(¶^É¥®XÁV2NÔ¾j†%Â!&?«å‰*þOëȉ8B, У{2dž2<ñ¬¥IôXįÎ˸bÐTHÊ ¹”)Ð2 Û#*Ú]rõÂJb¶]d¯|Y!F0: i¬ÍR!ö1‡%¤2LǠƒ“úF“ ú7\ ½_»@…«à +ŽL „/јUCùþåx~GõçGZþ>Ì©¯Äo þÿ·ÍÏP8§(: :!‘ì€Ù#cÙx˜Æ’ +uþú£‡õ®¶Îw)ó.ÄÏ?LYKÊ}ðXI™U…FCwuá®·¡$³Þcˆï$ÏÑ{õʸŽ +öà/)Pˆæíôj:.Iä+ÍIdæ,i€]ܦ:pÒ±ŒêfqÜÐÒ«æS×zL«àhü`VK›%,Ùƒ×ÉÎ÷pŸ·é¨áÔxs¶Tö:…òO¤¢tÄ3¹:Ø|ñz»“_u:¼’¬˜¡0A)âÆ"â¦<ðé¤k­0EóñMÛ»ðu$êgmøï‡pT¿ÉÇ6ô±…GAñŒâs&aø,ÃV–Ì8ڇ•Á}t‘ävõ7(ªeAaL%°\öcËu-ÉW» U½…»à×ó€K`» ü7æCÀï.\Vð„^ÞÐ…¥P÷ ?|ØCKˆ¼æ9ƒlCŽÚcVn!ŸöÏâx§jMŠº~ E½× A‘2Ujƒó&Ù…ÓŸr{#lKtÈ»¯q–L‘ÄeÚ$•ŠOD.„ì‡Oô:‡DÜcé 7¸å'Ò³t"¢áº"Ϭ}4#ÍÂÕ.%¦Ü>À5’[Ðìþ™/Šm@wƒ3,ë£>Îz6‹ëRÌóΕ¯…Ùœ†•î°†2g÷ ìL;ŸÏDÏäAhªYa@$ámI_†ð¿X}:nß…Ü2aŠ?ó8ßVóž¼7P›â=b½©ÀzÌye IÌ 5@U¾£)¿ÍÀ×ð±Ð±ü€ßík%'×ΰ8D×£ÎT‰­Ãº9šaLpõf×¾ÿ»bá¡KAëÜh=8f-+K´è؆Çè*E÷|? O–)úy6︳ N[¨%"§Œ±ï=SækQ—®t´Ÿ)$F2b êj'¥ 3à"çÁ^û¯S‚Thõ‹;=—˜os—s©uS¸ã.Œ‹Åã‰ÞÌîÃ*sxÜŒèjP:#aÊwB})ÙR³c•h:˜+””™Î½4÷ᵫZêLMöꜲ٠œHax¡‰bÊÉ…ŒDA¨r¤± ;íçDi•1lÿ­œýd8¦šôç÷Ùזʦk')W!š˜Ù#`¯MúóÑóEá¤×áÍŠkaæ]Û»˜­ 2úǶ7áWS^à™·ÕC9æg­˜³¾tîaÕ«`K 6¢œØP·Ç†Ÿ¾WØš(A—ͦËbÞÜè]ž.­ži¶ucͲ¨ò/d‰|ŒERö_ôDCÄ~¾Ç¤`dU +QLÙ_í¤–¢øéròDÊ€èQçàQ_˸KãVcˆÝŽ!6!À›àï ÚlÿñÔî& -e€•ÓaPá8/åEŨTâ«/r [ƒç¶±¦—wí‡tæµôhœW 9ß{dAׯ’¯ÓäËƽËÃP/-O3cš$W’%Š1I‰¡ððsQí„Œ4p|#$ª5j®ý£Ž]üô3˜–‘Öµ,›þÿ…¸eô8 ñ‰§Zö]çھO)6Ç5hzº5ÍÚÙž2«gâtSªTÕü:}m>)3S—ÊRž',“Z^MÔ§±pºM<ö^ø«h';­Îñ¹Äxs°¤;Ü[ÇŒ|÷Dƒ£”¦Î³¤ +ÉÑ;MðÀ£öÂ|½jVœ3ºMwPô¡Å12¯Ç!>å(G|û)Ì+*“¦z‚¤æV¬þŠbJîkP5[œ&±&16Š¶UªZн P¯Œ”/ÒÏS7$cè¥oâÂ÷ÏZŽ&Ô×ÄŒ„)r<¾¯7úEŠ‡ìÔº4nzºíQ>ÀZ<ÔBìPÚ +^µ¬9v)vÍ +tƒò²¢Òwr¿Ë „gvûFyÕK„=‡¬Üó…V8ÞƒÀ'˜ˆÎóŽ)X\BEô«—&8ÃYåõœ jP³ŠïN`á3«=5bc4ê’Ë‹Xû»0}ÀùÒÎ?>NØ• 'l\‘ [}¡drÔ¶!î¿ ÍÕ +endstream +endobj +141 0 obj +<< +/Filter /FlateDecode +/Length 5679 +>> +stream +H‰ÄWÛnÇ}çWôã6ÀYN÷LÏ0 D’m8‘ ùÍ›‰"½KJ¡¿>uëÛL9’´ËÙžîêªSçœ:úÓîáæêìüA}÷ÝÑ_ÔÑÛ³§»Çõý÷¯Þ¼V¯NjUomãàÿ¶mÔîúàè§ãZ]ïŽNÌ¿jeÔÉÕAUoë¾+ùòYuÛÞýÖ©vlá¹ë”u[ç:Xp{°iœ>ù÷Á'?ü'ýáûø.l½=úñ¶VoîþvpôW ïíÙÇkµ¹üXýôJýòúç7ÊÖ°Y«ÂÞc†ƒ<‘k ‚#Œá¥F n[7c«z;lÇqì0¶lîu½íà,m·Vmvº²Û^möº2øøN·ÛFm>ŸÿÞ+^þëÌvÄ_ŒS› mz|=îb,dcó «ß?ƒfkÔæ½nø´Êá1Õ¯ÚÖøÓ‚µfÀßéw¾T?ëŠNßkÓâšÒßón >¸¥WZµ¹Áðι„w¬yA<ßvøù×q¸5,sx;¸Õ 6WxÔ€[ï4Äéè:ê7uFg¸pS‰ÓqœCÜì­D{©éŸ4$¨å`å}xëÔéFC’~Ö”‘cLÝ€V nbèÜCR·6t©P9ð=Ô`4\,Û`ŸaáHGâ.ÕSéžü9`ð”ÙeÛÚ´ ‚„÷Do8gº­1€Sk­{ŒÞWz¯)Žwºu˜•S­]êpžàÝ% ïžC&-^kÀ¿®áºŽ¯[Ùk^l¹Íï‚ÙpTJ´càé½&8Ýa­û´úˆj„+«"`Blfà9üà 1~| nÑÑ®–® +1X‹—§máÁõüî÷x|ÛżÁ§Éú“öøDð(ï–`¾¨G›¤÷`}r58±Åb“ù–Y-¦šŒ¹ÊxªÓãèOzÄ“îÔ^S[>JZΉ‡°÷ u\ +J³/žåêÜ&ñ¦ž½ün•i9Ë)T*Zî-? ø“ï/Xb“š¨¤L”Æ€¬„5åôØ>€óA ñÇyÂkŒõë¥òØõe¡òµ‘é¸ãι7†6#eþŒ€î1~<—ENF¾€çÛÕ…l“BR ï­µi!»èltB ÇD^ÌÒÓBk±ÈæÒ€·õàµà5ÞͦYLØwêïÀÿ)×TÔ‡¾9m‹·}”ÏÐœm_-e9ã&V ã`Õ€tݯZQ¹Z7¤6ŸÃŽ=Q÷©Va'>Ã¥z"y¸Â’tô‰ÁÝPßÃmæó¥–ŽÔ3‚Ý —¾4elj»„E›]¨€§°ËH±ZÒ(á¹ ¶¡õVÂÇ%ð!'µàPºp0t©zGª&UgALûÏû•Pò~MÉ3­1_£5 uÈcs?És¾8⊸½ˆéÈñYŒÈRðâæ&¤®It%.‡5¸L°³—cŽKø»ŒËàp¹È{º%ÜÕBnˆéUÎ1ÆËR$SV¿ ̉›R’#?XùAE<«ÏvOÄ‘æ +ñ‚K½6ÇhBûè#?S’ºꄹÄSŠÅò—NGÜ­(–cçÅ.næPê4¯ÁålΑmUÐÃä2K"H¾gvûz v|­ÅnoÖÊ>¤´~¼*ñ¹45 0C¸tLÅOWT§ÿÍ”hõçZ|Y˜BüdæâdÆúZyr#H~õ†ƒ“Éàǧb©§£ uFî^ü›9 ¨¿®Zne¯%‰BõLh œÍ¶{Ѻò(›§18¬µøµ9EöK(«»d@YR4Ç°ˆ}(³Æj +àkð熺íI÷iž‚5Î3LÄ6`ŠïµÌ‹=¾Û4~*â¹6ŒšÜÂùÞ•šA´Ð•Î(æ\(ëŠ|Ç;ÌÞͬpV¾g,«ù\™üß!½ÚàÑøÊÀ YIæ4ß‘Ïqz©á œ¾‹eñ=ãg^q£}–²è»_8L³k8\ »&ƒi†2ìÜh“™&qàWÌÌqºæ0ÏõZd 9…¹%[׸dšH:Äg:‰ÎLüxºuù²<ÿºTó±åÚÿ­™Rœ D¶<÷­„.™ÿkÝyuK8¹Mù÷Á‚åÌ´‘-ð´ü4`tÞ×7Hœha?Èps’¡/Šàn5vÆ;Ö,`Y;a¥µ«¾ÜtËÝ{ŠrST˜_[FÉšCp®¹«˜[çv3‹Ò± Õóp§?%Â8ˆ}¯ÂÐeo(Éžíù‹”œOINNf°.£™Lù‰t>¨{ONfH&º›‚e‘™${-Ò†:AlR×­:9Wò¥ˆ¹ºOþY°Rã¾ÐUƒ…ƒðá ÑCeø^œíóË÷—ޘ× ~k¹l§žºèZ•“ëyC#.ov’"ç;ל(L@9TQûÁn«ScòY +³bZ²˜mA¾’Ô´4Åh$5ÇÞúg‚²5Ìc-{4éÔ‰j½r…êÛÜ§× `˜|ÖtêðÜøb5(|k5<ítCè¶êt£[ò)V‚©é1 +£[Bø¨‘ñ©Va¯ñ©0ÎÆu¾y½ÉH/5cûáÛS4\($RÏ~šFšÛ40¢ˆø%ØtÉ8¥rOí]ßGú…Í`s4-ƒ¨‡›e󉛖±Í¦×95dz¾Ÿ»=rÙ´U/deÔ—¡n +Iþ•æ®ýê5¹/P °kB‚‚paãi_¦a¥ÎØ ÖÎ|'†(ÂF˜B}ľ de:ðdÐ} جP© †‹4l«õÀ¶Q‘Q³½ Å*_þ&0»JB’‚~3éÝ|Ýrõe#¼ÓïXäÊØ”~ºÐÎZXµ9¬†%`µvkFðLS'îË·üÌÓ<;÷ti Š`½KX0߉†„Tð%MfßÈ–Œ>ŠI7¸âQ³ÜÝë1™u’‚±‚ úÿæjNÞlFzŒ;˜apÅ¡ÊgTœG@Ï…tlÁ®E›8$ëàþo ¼”‡™éYɉIéÙúäiOÈ­Ç'¿#q3*(Ëӌ¸Ù¼¦¹U\©1na¾rXÄ6³L^Ôû%¨óÉ€Jb)Þ3Æ^…%’Ä÷¾Ußþ¹%û’DÌ™#¸2*_©{hTJK”ø§)ö.5@Dq3/~"ݯZ—ÓTÝ,à Ή.3¹¥ |B;×GFö% 4b±‚I Í™àV’³U?N·v¢RVPRœq½ò¹!u—@ß”9ëäZ"‘‡^îרIb¨¥}JÖç+)K‡!Ö:oŒï5;í ÒFâkñäFî»þÙ¾óE“‰•GÔ§Õˆê3Dý—õjëâ†ÂïüŠyd$vÛs³TUB¡EH¨RIÞúPå +tSüûú\l{</Ê vg½Çç|ç»t¶ (c­pœD€«î_#"Šz{Ë£M”)Œi±k¨ ÍŠëÿm{¢&Š¢‹ƒ–Aãm‹39âwo¼u´yþìêåkzî´í£E²Þ1ü˜¯zŒCÎ_Èj™Ô^ÎLØ G̬î‘?Û”V#ñ vOÞ:* ×ÒÂì‹Fû)å v©ÂÀLµ ™S¨wdÜÑvŸ·31cV% hB¡èàîÞz5¤²M¢I¶ÚGÕn’È!ìs=…xF„´}.0h—²¼ø%x¡&|ö'ã“MÈ€¹WI±>È3€×pLÿ’çs÷Ó)Þ²˜”¹›¸%¡!Ëȇ]6د Çq*dÏ¾ê‘ òoä4*ZU‰.[Œ½ˆ¬ÞÎÛn´:–Û¨“*¶8¸€ÖI /_ÐD“i¢ŽšhŠšXvÇS¶ÑIÂ*úãi¯?Vûü1ÆÀ Í•°*Ýo3‡)¸Ÿé]˜”mëÂæ‰ÛVŽ¬ÛZ‡CB+²p H‰ß—Z¹?—)5LÙ5¼o ¼Ì­FŠÖ¥Hé³dª`ÛYØq~8MxX³+Ê8îûȸҋQHËÇì*·2WÅ®­îÕïÚŽÜ ×â;„ËÒº*g˜ºÒk᥋ ^€–k¹Ð:×MZ?yÙ%¶9,å°½‚’ÒþΫ…þª»›“úØÊá$]ÌR÷Ÿ$×-SñÿeíŒLš,ìJ‚5®O]Ñ ñÝ,’U…,û˜ZöCVUuŠù"´žfu× b¢ø÷É–¦SšÖ{›Ÿ5Ÿ£@#T7ƒ—§ý‡FƒÀ²y}\æjÄ¡ŸÞÀWÃ’—(y ¨ê5ïë©é!qpùN÷ pØ] +W&®¤±»h$K&ÏÄÞ ]öÞòèÞÂ…í6ÓÂm%Q-¤ ¾gÇû• …ñ®&ð„bàó ®çˆiG$6× ìÏikðŠ?šÐ·¢hšÒ¼ËD.W™B¸\tW·³0ÓQØ+Ž«hP£¢‰ xê=À|:ÂëHÜä„¿Ì@öÛS ¬!µ'cWÚº‰\9þÁ»_ã€ÔžÔ<õbS–]‡–iq†´ÇR( LÃE$:î:X( NGŸ‘T§’l=e ¥ÛÁe–™¦l‰Q……´,ʹÃ$Œz—ÙÐÅ6µcŽÇ—’›Ý(˜9 ž˜¾{ÁÞü²EzÁ +£¸b›îàÈ~Éòbi‰2ÍökÕb]x&^6î { zªÒa è0ˆPÊc,yŒZ8ÏêVœMj²‹¦À:¹ÌÝ/ºt÷¦…ö£öÞ“ŠYd£s’9´EÈIDXªÒà‘C Ï<ŽÅ#G®›(Eªº¨AüAˆ6ÈU“ ~åu¹NavÝIø{rá˜J ØÞ(©ä=Õuâ`wónXq€º·"D¬G€BXÚE)Ú(bŒÃbÅe‹*’|·ŒnšwÚRØÔè€%À5”±mBð!ƒ™•õi'ÑÅ.ä&¸`#Ih\jr³ð»MÌ!D„¨ Ñ"zD}áw®VŽ„L§d÷,wï°È(B×pFÞ/k¤€Hå$+uØUÊ ¦Vfz‘1 +U,|RêUp=?bôMðUpAANS|fv³¡ÇK‚#4q€†¨”yúÛ´Šœ©Yaë—rUphôõO¾ð¥cýˆ"§äU,<ð…{ˆ5Òb}†%_sb@ôÐkçýâ˜nz1.EÌg_‹U½Î³§0I‰Ól Ã$¥ OE—¶)G¹ãl^äõ@»Õ¢å" a*¹e*6W8Vd7×H#|Ï+†ì 媣wMÿpJ +!³­n¿IÚßmµÜ¿}ošÝõ³—oŽ»æúþÙË#ý·›HsrõÌâplãÿ4Ìc£ì´µ³™a6¿t]g~­SÁ^ü®?ÓÏ;;sî+ÏÒ»ˆšp …—89á; %º¿ÎþC‚NuÓvRãTñ×óßrfœÏ-þæQô"ÉF`£åw3¨ƒ·´ÅN‰àfv œÄPp/ÍÐ#ûʙبj–ÙðžÃJ¾R³ÙNᚯ˜sœÿ7ðú«v·¼=ó+!–…8ãM )5Dâe3üªÝôd6=«7¥ÕÛ3ö1é–¨ß}åØÓx1áŽb9½›¤ÀØÁÜL4àÀó–¦!ˆeÜ)5´_„7ÿ h ŠYÉ +3Ä=¼!.… %ÙXñ¶Øßð)š%>ŒÝÆ@<7Ïåœ~7¥¬JLW‚£Úà¦kÅ{¨Ñy¡Ù0§‹â‡Ê.NêW/¬ ƒãÆøãGÑéÒú}ŽQä0*Ü@ŽhìM~C)ùù33BØ)›*oI†Á»Ké-93²¸|GÕÖ¸&ø¶oAW”eÉõÆ2ËÖ;.}T×øìXÁÅæ—‰ö_AOlhî=ù]ÿ0X/g¶ÎùªaØš@zGPo¿rºæ÷Ž’:±ëV^.qpä^á›:î°œª úù ˜|ÈÓö)ZiË×Y‡pzßÎDØH ÿ¸&éÌ!Þѽ®1$¾ÀÃäð(¬cKæûÅ´tðe‹†Öõ ^,".gzQ|]S%SÔbÁ/„åól¤6³‰.Ø©Š•«D™S ÉpÝlWPÖ»k”´ÏØ£1jR šádôŒª'&#Æ«H’ÍMX_ÓÁ;߀6WÍis›ÑÄŽ¼õ´µ|"¿(cEXÎ$JDÂèz/Bîy¸M”(ÉÛcBÂðö´· ƒ`¦¹ ‰ij˜ Ý}mÞÞyOé¼ÇlÞæ ðTÄÎÙ~ +G¬`MªwÆÜqpþÑR3#ÜÙû±}c’e7Âîù¿×çKóVÃ-Ök¸J¯í{ä4w·ãj0éu+€ä A´ùc«°}[0Q®,Cc욀°×ÜàP÷·—áöxh>Ð +¼g±xܤ¸Jü@ÚšÿŸ†ºö +endstream +endobj +142 0 obj +<< +/Filter /FlateDecode +/Length 6126 +>> +stream +H‰ìWkoKýž_ÑÝRÆ™~MÏ\!$eÅk³W«°Z™@–<¸Žy„_¿U§ºçag,‘Ý/WHdlOwWW:çÔÞƒÅòôd~´T÷îí½T{Ïæ×—_–êþý‡öÕÎÃÙN©Ê©uþ÷ީŇ½'¯Kõájgofþ]*£f';å´,k5;REzú¦ªi¤5ô/Nƒ2ÆM]jeÃ4„ŠÖœïL\¥gÿÙ9˜í<§“þ ƒhƒ’×ÒöüéÙÞãóR=ºÜùÛÎÞ+ïÙü⃚_Oê½çûO)K;cUÒ'Òä ‰Ø,‘‡oÊ”ÓZ–Ø.Æhkú=6äáä@nÕäâ½.ÌÔÑÃåò˜¿ jr¥ÿ5ûk{ƒ 1ú^Œ{³YÎZ{á:' ]$ôš²Bº gkïõçùòàhùe~6;þ¾¼÷øàñã²,›û÷ï+œ1QÈ+‡4"´Ð m% WMËÊ ¢8œ¼Ñ¦AtAyòjrªM5µj²Ô…§lN(9ÆðïÕ mâԨɼ{Å6¼¢žVjrÉ ÙÉókWj_GÞ¢ûÅÔœç¯Ú"õ¼µç/èÃ/Ü°¡êžfÚG.ßBcÁœT|Dw¨.bºí]6¿VP"h§3ŠÚòN Z`ø›SzœšsùáX[ú°«ВؽéäŒzŠS>¢7*þ|F+ùÂʦ«¿è`ø"sí ïýVkg9Ó± ¬n®t ¸²ìgïpñvÀõ¢øpÿ?ÀQ8|÷w:àFÛ#®¾qU;Ĺ»A\s+âúQü‰¸ÿ5âaÍ#ÑG:”|ù­¡fËP‹¾ƒš¿¨YÓ7#Ó2TkÔ=c®ÎádŸÒOñùr9ƒ¹<^QC¯j…+áLÚz©×Úquú8 üËq~å"ïþ‰Ê s®+.ÁgþŽ}“‹rÂD>ŠðáèzÛmꚪ«w}7õv·Î}ý(¸¸)u=ß,c͉¶Ì‹0RÙæ K|y%~ª–Y°•`¤¤´[2¥×‰T÷Õ"QO§((]ì)ñÂßò÷¦ÙÐjQ ÏÓµ–òbÒ"{J1ZPËdÈŒvÐæF{€wëÌùÛ°P»®æÍÝÔ<¬š@{sk÷ã9$ÍBM?v¤•ÿv.A«VOtQ ¤yüôE6li§¯küÇL‹"·vé£Ll—çÙ´Ç.ÔC*?t—v„±ø‘ÁY®¸üþ•Ze=h¸U(d8˜/l$ÔÆجäé€-Ç Ö$;gqßóìdø +Mî˜MN#‰ è?À†åÒˆ{Æ~;®[ü –<²Áz׃Éj‰á‘~ûÆcNëÆ¢<8Ú^¢eXKέ°âkRƒ@CNu™r/<Ên ¿ÈVáU|sôT2œ¼]•W`–qà¼lÎŽhã’×}^s¦Ew2ï2²–qñ‚›iÌ°¥³n? ¾Hc9£´C 9caàœmi tÇ%[¡Wxô©©z­QÊeîš/ÕzÏ6“Ž¹fç;ûQ¯j5ÿ=o©QÀbeö€¢ÎűqÓÑ>ºAëíªŸèÑ×üÉ™4nIŽ«>ŒvKNµÞ¤‘!vµ2å¸bùõ¶k Ó®„Á#‡Y c2öCÃe6¸ÎþkÇLƒ:}"$í°Vñ┾ ¹Ö +×6Ðå/Úæ±*«j#è)òVPÄô€©Å'>’£¡îmâfLÄvRµèß'>®eéõN裛/ÕS ÑFÍŸfY…k( îäãŒäN °ý7‰ëjøY_¬ø*Y?é] <1-¤·hÿwt­#~ØåÐ~–×7¬ÆH³ÁvX¨³AûUgïW²lÊJX7<´êLìÒb¤Œfì™áªt«0g;•þiÈæ¤\gN2(·ßAÑh¶ÏÉÖÏQ”ZÊÛ¤ñ†X#®J°æ?T^F T”;Às/˜¹¨ÒŠ=rIëŒtn'}³Ï4 ÜQ¢G ®¶EÈm6€f®ÎžÙ‘ö¬þe…·T¡h‡alUøfhÏÊMÐ;äpò-ªRâÑOÉš\,ëe ;üÈÓ$¼µÞüÓGðœÌ{AÕúÖX¡»fÚƒ +,û=åKê –{‡ïHÄ…–IPý®ƒx …:àAÕÔö%D,ßy>™IÞ œ%3ÔolX„å?®ÑõÖéõBô–ÓÞ†P¡Ã¡ðé…(šœÇ—6ƒ8ã|Û;öS¿ÿ† øÙ'n:E¤E}—Êý% ýiw7SÂ_›$\홸cðp§Ž®°2ÔÜSßØáZ4\óoêŸ:VÓ>> `[‰Óx +;æÞÇw8s_ÛÁ{­«Y-þ­TXβ5Ǽa ·ïÉÍTý¹Öb¦è&ÖGè¬d ÂJ½ÒùûŽ·îœ`7ërÊ€à´Gcn=î³Â§6+ŠÝ4îúØôøÔãÓ`¡ÖutÃ0¶áÓà†sE³aÞír8ù£¢ê5Ђ{¤F¯PoVƒjÝ U‘ª3WÙèžëµv\ÀÓ@ï®êŒ£ƦÚ5¢±^uL%³¡[’i·!Ð#u÷4Ø꿬WÛvÔVý=¢µl§ÏMGbf‡!d’À20yà ƒ ¬ìÁçëçÔ®:7I-«‰ŸÜî–Î¥j×¾ £«>:-_‘/H‡ q“í½Ž‚10¬7ÌOÇ-’î×(*Ÿ0·!œM@“–ëØ?ƒ7\ 8†ôáSÛEóÿLä6äP‹i Zƒ2%`%Eñh?l~‡\¶LØ7Í–8î²9i0‡2bk!wWôW4…ˆ+É[¯âµ?…PPÅëæ%{+•ª<™2qþiÑX«Ë7„,é(K&1ceßç]kÕwέS÷=¤²uÓ<ñ¢S`¥êºWŒ‰Tï@á7ùºùò&Vi”TJQí ° ¿¶<gœÈnˆZ;ÉlôÄg”Qqõú@LÒÌìÍÊŠúqEk¾Ð]Ø)X½Ñm› m;ÎZ Ž ŸY[pxNn00f‡-SϺH¯^ÐÌE§Õ³CmðNaå«Ö _ÅØ;²£6K +,€¯ê$;Õ×î;ô52\’4í8#ZMö¡hߣgý•}¬gôa·ž9Sè™]9Ã=ê™ëÃÄTÇØGϺM­gzIÏŠMÞ„à¦b#ÙÒ€‹ ¢iëÄè,÷? o=O6_xñàÄNˆ\¬Ô%ãÿÖÈÅjزâ§)̸àãœ!$ËŸZx/¶UE<ÑЧaYhKÏtÁ9æ´­½øE+Œmú•œù²Ü*”îߌ³‚Ó_*ƒÂ}œ?Cs]ùRÖfÜùò3}Ø9aì5šÇÒ¨K°¥O¾$ç"g|؆5£¨®ÌN­ŒvS óž*ÙÇ<#uvÕÑÇ:öRG +økyÛÑÛ[¨¾bùo&s—ê?I&¨ÿŸâÙ 1aþù™&D‚m½ã¶¯;ëåþÆ …ƒ, +ØâðZ"ܪ”E;§œµÀÎôÿÞüÜé?Gz^dçpÛÌÎn;wæ>Ó†ßøú{±³­Ù¹ð_lòæAsïáQÈ·émgÌMèËCîK^“%#yâŸçÑ£áÇ` +jÎÙ‡æ{רf×vÌh/IboñƒÂ†Í/t[Ùˆ|Klô[LaÛ°Xøê6ªmñv.“ÇOyD½EÈ@ŽxÞ3Ò¼­¸ƒí%ÆæŒø™$‡óX…?pL²iqÈõb’ ÆUÕ¶oFb›Ä|_eËËÏ©š#Z9˜n™Ÿ)+hïu=+³BWf…¸§P–p±¹±1RÌW¡1R©ž1=y]ÅãVcÂœæ!ƒkGÇ& èåºÖÄû3 1 ‹è9p£ +ìVÖ½¿G켩O±5*»@Å&oìÚæGRØ®¤,êñ)¹w‘AšŸÐ+Ž¦òe{ØÇœ(Ä}£-v‡)yÊЛÙþ) êÖ6 OÃO}5Úpy…ÑM&˜V†£zìùád€hÅÓ6ü:dÆÄÆ´~ Þ"KÜz)Œãphp‹¶àÕè8–N¸'ìÙ ›J( +-JÜÎn¡›PúAz¥F:„jjÅ'~Û¢GÐr›Â¯±{mÑáímB[üß•óëGQËèÝH6}_ y?ÕÔà¿¿¢½?K­%ž÷»TÓM2O ÃúSöP`FöíÔâq4­ÒÁYË?‚ ¥äàyGå‹Æ±H +x +è/-üâ‘ç?Ñ”Úð…Ïš0›¨I|å¸Å5xê}é#&ÏÕ Š|˜Ÿ[½©¦+›yâ‰$¢Ô¢ÌjÓ<øGO+àÏ\Ô@µ§ +G4~¹m\_ÇvTAt=]øÂb¬ÆëÊàe¼«¸4<ÿ%»Ó6¤¯ #÷ú ß-ŸðáÛá"R{ˆÙN4ßT»½Nki ÙƒÉzUÛ%ªF½k¿°¶ˆãزq¤¦C(bXH;>ê>ô©×ݨ’ÃÝh/êu`\«€r0Y19½~ þòy³“¼‰Á= ^סNF’›¸x…9zOs¢…9º(m=Ë?š—lžÇ¼HÃbÒB˺‹yÓEŽQLK~"¯%gb÷Ö›OoöñDÖMØôvTh¤[úÿ)JU(zò„+8'Ö|XïÐ"Kmp¹P–`ªhÆ{P±Ñ¦ÎÛq¬M¹vÉÔ™NPn°õÕqörw¾]_-‰bué×­²©°Uò±Yøt¾_é~•ÆÃÈk™Òû†kµªå(•0x")j¦+ø°-MTå! +Æ‹Ka´?`Ôðƒbƒ$rò‡÷y(0aáÑ×4štkRC÷€gxAòa¢<«äkñö«‚,@>qÙ“‚bDñèRùK²ç͡˺\&–«ÛU.3[.-Ū-vRö9'c‹š„›uòð#içÓÖ×=ãêÜÇ4î7Êøa5Õó™ò X¶CåªìÑ6Dåó|wÁl³½” ÍÀ™ðÔûKÕNZ+æ^< Ò³Ò¹êEfþ1Ò +Ç‹väé».™ß+¬ä¿âF3B.9#J7xô*@µG§h¨Í™Îæì%p"÷sr 5Tæµtc©h–ž½•$P«ü[¹çÎY²ø{ÈdžŸ;~g~¿yÂ’} ×ô&vxÞ*˜³Ÿå'x‘c£¡:8vOdߧg¬èQꢣG¹UcÃS{Ù¾¾Š)j3, 8üÍ(&+ ãpo9¢hîšèEíê0%Làp’0œ¦»u”Ju•0^Çžs‹tªø‹3éÐã<:/s¢1ç5E2æ‘néz?¤/‹BWdÚyIéÛEïð‚'íÀ°©œy“è÷öeàs%Þ†å˜á‚ÉÒ>øèlaâÈdܹx¿Ûï%N÷Éhfrô#rÔ#r,åêºÉÚ 8*H%˜ŠžKµJ­H©—óRÈM¨ñ1¢ +trÊì’÷"~`…؇+ñáK¸ž™žÌ?¾RKUž·/wZ/¬ö°yÔrÞCÒ$‚Ýu¥Œ%©°8‰C øœyËÿå >š¹g©'~R:]߶yr/\e2ÖYuêáY7½Z;vWÇ(›Õãì;§$à.OIh˜êñMJÛènÃwgúȨÎÅv1{‘ÔPCõö­ÈSšÞÑo¨Ô(º¢OšŠmBÿá5(l©M¿OÚêÇqÑÆ´e—Ò–¦âª~euí$e…Tê¾?iùΨú(9i^1–bÜûГߢ<|Ìú–ˆ€Šžßd×M=`¾Ë»5™¯š/Á( x+Øà&ŠuæZÃŒ>¹ ÅÎpŽÛµ°w#ØíæÝÛ‚²òDj¬Ù{JΟ"'&Ç +‘L”š’üºF)©bòqeå&P/ËŒñ@},ÕçE kÌ*ñ"ÐÏ©úE“û)¦*áb¤µÅ;Ì´À9°e熎gíFqÆÿïÅDeá#¾Xï± *eÌ-:&‘Nó¬á椙/ᒩ͘Ô¡¨ÀÎA…Þj`ý`5\»­«~¯^x­ðèâ5q;e¹L °™Š~†ïhï„C3àF =üSвÍš}0†É¶ ƒ®BîÈ”¤èb$.º‚$¿FñK¶0™ +õ>jþMŸl†U“|¥®¬WÁ¤àí°Ýy[ûH—Æf}ßØgâü§4`¦pÝ܆íœBüÝ|t‡bÍT˜ßƒ&ÏÓj”úšT êú¢…jà–yʪClâ±GE*Æ;¾®6UG,Õ¤ˆ¼¼Ô3¢c¦Âj=wxžTxÿŽ¹¥ ¹W­õG>5)fªHõ˜§I*Q¶ékÔº¬‹ùé?Èð¥gÍÇxQíemƒŠ]I-¯[ö¢[ +ý" +þ8Üè/Õ‡‰ä¨ ÅÒ8›¨Ë‘ŒÜdÐ5¤<¬¬!í,§HwgŠ,BšE©Â.pÝ OôßÄ7¼]‹ð~eZ)¾:­ #’§×aª݉uÅ(1l]¤¨¡ƒæüÐö^ÔQy)o Ijzjá¹7ÌÂ[¦O]$šÖL;‡ÂÖ^xÇØøê{>âDœç„-o¤æïÐĈCB€–‰Rn’f †[ŽÐÿ¥¡¹ +endstream +endobj +143 0 obj +<< +/Filter /FlateDecode +/Length 40 +>> +stream +H‰*äÒw6PH/æ2PñÑwË5PpÉç +ä*D7„ˆ¢ f +endstream +endobj +144 0 obj +<< +/AIS false +/BM /Normal +/ca 1.0 +/CA 1.0 +/OP false +/op false +/OPM 1 +/SA true +/SMask /None +/Type /ExtGState +>> +endobj +145 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 1253 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 144 0 R +/GS1 235 0 R +>> +/Font << +/C2_0 236 0 R +/T1_0 237 0 R +/T1_1 238 0 R +/T1_2 239 0 R +/T1_3 240 0 R +/T1_4 241 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰¬WÛn7}×WÌ£d)^—ÜÀ0à8®‘¢I[}J‚B¶äKjKÆJ‰á|}æÔJ+»-Ü´Ôr.gfÎ )%cð¤d£¾-µ—ƒÑñ©¢Ëå@I¥,UQzÞ¬•µn(j%ƒj¨ .ŠuŒ…¾sI5:­#¬l‚%§kY³QSËètÖY‹-­o:oåÚj‘h©¼ßØðÒõB-ƒ×O ŒÚÕõÅä|E{{£4úcò°ø¶¢ýý7oiðf àéó÷`4Ö)Ò4¾@¼šçT•Õ=KŒ—¤?~`Ý’ÖÒø¤šWZÉ©±¤£‘λ@ãÛÁ§áQ©iøq,*+- Ä—ññàè=#øO|@¥ * RƒÌßiß^«HºVR{^$ßGad¤á¹`1CÃ+zÇ+¾Vºüð4<)ÀNéV(¼XˆÊc*82þýM4°r#øÝŒ®…æ@i¸¤s¡‡í@öÚccƯù1:ʆ†+ºg¼¸r+`üŠf¼`럕 ìz•ÖÊ(è¯è8øU ¸,¢¸%˜`ÇW"Á›Ñ”°Æ¤X £òÆRh Í"¹Èr÷&ã™S18ß2¨i +Ñ#Ä;Q%Ù’Èˬ0Ã>Ç éyµÜ-›³Ì”B¯lCã¯ÿßæ† +®æ¶ZSá@TMi7y r´E +·MŠ^2BWÞ–3b‘ªÙP&y)o™wH]ó7(Eg"ÃmèÚï™{E/*•˜ÇÌpP‚uvòŠ¾ íKÒ2|«Ü©Zú&L[c`Û6ñÔ «Ö°Ò‰×Ø]=Êׯ•Üò<¬czåy±’3Ÿ|Wò?s->ÐN»Ó ‡b‘µ!rØô’RuêÇ£95ý¡Ð ¤v{[x˜èJI]Á’Øêá2MÞo:ó³Åtn[*Žï@$›KýTKw˜ùû5]u8*c³\Ò¾ƒ[ö÷ZTšŽDL#e”©xÏÒi°l-,KKtBÓå`ÎL @R)²V8’rø…;˜›¿Ä‘M=1¶]ÝäzŽK ?žRÓŒbQh²DéfòFy¾nèÂs`ÜÒY9»Ò Í$Ñ›Fâ¼ø—‹5Ù8SB=D¹c—Þ»œû.W>¶GÏ%ÒáRZRdŸ ß:îDÌRJØÄ#|Jf9SÓ½áDÿh{ͳÏež^¡×Dnk6V&µËw¡M–Z°g%ëÑ¥ +—³¹¢„îŠp+¨×©Ee#7Bí îBuíËeä¦:N<‘ºr%ò±[ã%²›ó‰WNë, 6-1OŽ'MëJCg »˜õmîó[¼çýIZ˜|¶#AãJ§càUgqVûµÆâ xtò¡€ä¦<¯á›“ü âÐ*özÁ„æß4™OóâD$;)N]0ÿ[BÎA1Ÿ0}*šÂKðT¥þàøy‘¦E¿|vÁѸŒŸjܼQq»{ýëÚbH„Ыôžw¢ô‰vr<Àи'GïÙÉWúôEÑ”º£C³¾(kÜ„c “À6b =¥¢Û”§owcæA®¹/óÖŸxvÙsß)†üWÆ÷[ÊÓoe,1‰tâ37?m¢¹Æ0®t&/TÙ²[<¢˜È FTºóa“„îQ秵ÁñA +endstream +endobj +146 0 obj +<< +/BBox [0.0 793.701 615.118 0.0] +/Filter /FlateDecode +/Length 172 +/Matrix [1.0 0.0 0.0 1.0 0.0 0.0] +/Resources << +/ExtGState << +/GS0 144 0 R +>> +/Font << +/C2_0 242 0 R +>> +/ProcSet [/PDF /Text] +>> +/Subtype /Form +>> +stream +H‰TŽË +‚@…÷ÿSœ'˜ù›"¤‰›$¨ÙE„XJBjH=}ã²Íwà\àÈí8?º¦‘¦ò¹o>¯÷Œ,Ëw(÷Ä`¡´ 4FãX ‹5ÎÆ $«£ŸHêʈà»0ôm¨øeÅ„ˆƒ|×hD,´&Îhe…J8dOJ™“ùJOe>ü{²Ö µÙ¬#)¸Xh¥aEÄ +ã:ú 0“.ì +endstream +endobj +147 0 obj +<< +/K [243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R 257 0 R 258 0 R +259 0 R 260 0 R 261 0 R 262 0 R 263 0 R] +/P 48 0 R +/S /Article +>> +endobj +148 0 obj +[264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 267 0 R 267 0 R 269 0 R 267 0 R 267 0 R 270 0 R 267 0 R 267 0 R 267 0 R 271 0 R 267 0 R +267 0 R 267 0 R 272 0 R 272 0 R 272 0 R 273 0 R 272 0 R 272 0 R 274 0 R 272 0 R 272 0 R 275 0 R 272 0 R 272 0 R 272 0 R 272 0 R +272 0 R 276 0 R 276 0 R 277 0 R 276 0 R 276 0 R 276 0 R 276 0 R 278 0 R 276 0 R 276 0 R 276 0 R] +endobj +149 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 279 0 R 280 0 R 281 0 R 280 0 R +280 0 R 280 0 R 280 0 R 282 0 R 282 0 R 282 0 R 282 0 R 283 0 R 282 0 R 284 0 R 282 0 R 282 0 R 285 0 R 286 0 R 286 0 R 287 0 R +286 0 R 288 0 R 288 0 R 288 0 R 288 0 R 288 0 R 289 0 R 290 0 R 291 0 R 290 0 R 292 0 R 293 0 R 294 0 R 293 0 R 295 0 R 296 0 R +297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 301 0 R 301 0 R 301 0 R 301 0 R 303 0 R 301 0 R 304 0 R 301 0 R 305 0 R 306 0 R +305 0 R 305 0 R 307 0 R 305 0 R 308 0 R 309 0 R 308 0 R 308 0 R 308 0 R 310 0 R 308 0 R] +endobj +150 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 311 0 R 312 0 R 313 0 R 312 0 R 312 0 R +314 0 R 315 0 R 316 0 R 315 0 R 317 0 R 315 0 R 315 0 R 315 0 R 315 0 R 315 0 R 318 0 R 315 0 R 319 0 R 319 0 R 319 0 R 320 0 R +319 0 R 321 0 R 319 0 R 319 0 R 319 0 R 319 0 R 319 0 R 322 0 R 319 0 R 323 0 R 324 0 R 323 0 R 325 0 R 323 0 R 326 0 R 323 0 R +323 0 R 323 0 R 323 0 R 323 0 R 327 0 R 323 0 R 328 0 R 323 0 R 323 0 R 329 0 R 329 0 R 329 0 R 329 0 R 329 0 R 330 0 R 329 0 R +331 0 R 329 0 R 329 0 R 329 0 R 329 0 R 329 0 R 329 0 R 332 0 R 332 0 R 332 0 R 332 0 R 332 0 R] +endobj +151 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null 332 0 R 332 0 R 332 0 R 333 0 R +333 0 R 333 0 R 333 0 R 334 0 R 334 0 R 335 0 R 334 0 R 336 0 R 334 0 R 334 0 R 337 0 R 334 0 R 334 0 R 334 0 R 334 0 R 334 0 R +334 0 R 334 0 R 338 0 R 334 0 R 334 0 R 334 0 R 339 0 R 334 0 R 334 0 R 334 0 R 334 0 R 334 0 R 340 0 R 334 0 R 341 0 R 342 0 R +341 0 R 341 0 R 341 0 R 343 0 R 343 0 R 343 0 R 343 0 R 344 0 R 343 0 R 343 0 R 343 0 R 345 0 R 343 0 R 346 0 R 346 0 R 346 0 R] +endobj +152 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +347 0 R 348 0 R 348 0 R 348 0 R 349 0 R 350 0 R 351 0 R 351 0 R 351 0 R 351 0 R 352 0 R 351 0 R 351 0 R 351 0 R 353 0 R 351 0 R +351 0 R 354 0 R 351 0 R 351 0 R 351 0 R 351 0 R 351 0 R 351 0 R 351 0 R 351 0 R 351 0 R 355 0 R 356 0 R 356 0 R 356 0 R 356 0 R +356 0 R 356 0 R 357 0 R 356 0 R 358 0 R 356 0 R 356 0 R 356 0 R] +endobj +153 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 359 0 R 360 0 R 361 0 R 360 0 R 360 0 R 362 0 R 360 0 R 363 0 R +360 0 R 360 0 R 364 0 R 360 0 R 360 0 R 360 0 R 360 0 R 360 0 R 360 0 R 360 0 R 365 0 R 366 0 R 366 0 R 366 0 R 366 0 R 366 0 R +367 0 R 366 0 R 368 0 R 366 0 R 369 0 R 366 0 R 370 0 R 366 0 R 371 0 R 366 0 R 366 0 R 366 0 R 366 0 R 372 0 R 373 0 R 373 0 R +373 0 R 373 0 R 373 0 R 373 0 R 373 0 R 374 0 R 373 0 R 373 0 R 375 0 R 373 0 R 373 0 R] +endobj +154 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 376 0 R 377 0 R 378 0 R 378 0 R 378 0 R +378 0 R 378 0 R 378 0 R 378 0 R 378 0 R 378 0 R 378 0 R 378 0 R 379 0 R 378 0 R 378 0 R 378 0 R 378 0 R 380 0 R 381 0 R 382 0 R +381 0 R 383 0 R 381 0 R 381 0 R 384 0 R 381 0 R 381 0 R 381 0 R 381 0 R 385 0 R 381 0 R 386 0 R 386 0 R 386 0 R 387 0 R 386 0 R +386 0 R 386 0 R 386 0 R 388 0 R 389 0 R 389 0 R 390 0 R 389 0 R 389 0 R 391 0 R] +endobj +155 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 389 0 R 389 0 R 389 0 R 389 0 R 389 0 R 389 0 R +392 0 R 393 0 R 394 0 R 393 0 R 395 0 R 393 0 R 393 0 R 396 0 R 393 0 R 397 0 R 393 0 R 393 0 R 393 0 R 393 0 R 393 0 R 393 0 R +398 0 R 398 0 R 398 0 R 398 0 R 399 0 R 400 0 R 400 0 R 401 0 R 402 0 R 402 0 R 403 0 R 402 0 R 402 0 R 402 0 R 402 0 R 402 0 R +402 0 R 402 0 R 402 0 R 402 0 R 404 0 R 402 0 R 402 0 R] +endobj +156 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 405 0 R 406 0 R 407 0 R 406 0 R 406 0 R 408 0 R 406 0 R 406 0 R 406 0 R +406 0 R 409 0 R 406 0 R 406 0 R 406 0 R 406 0 R 410 0 R 411 0 R 410 0 R 410 0 R 412 0 R 410 0 R 410 0 R 410 0 R 410 0 R 413 0 R +410 0 R 414 0 R 410 0 R 415 0 R 410 0 R 410 0 R 416 0 R 416 0 R 417 0 R 416 0 R 416 0 R 416 0 R 416 0 R 416 0 R 416 0 R 416 0 R +418 0 R 419 0 R 419 0 R 419 0 R 419 0 R 419 0 R 420 0 R 419 0 R 419 0 R 421 0 R 422 0 R 421 0 R 421 0 R 421 0 R 421 0 R 423 0 R +421 0 R 424 0 R 425 0 R 424 0 R 424 0 R 424 0 R] +endobj +157 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 426 0 R 426 0 R 426 0 R 426 0 R 427 0 R 426 0 R 428 0 R 429 0 R 429 0 R 429 0 R +430 0 R 429 0 R 429 0 R 431 0 R 429 0 R 429 0 R 429 0 R 429 0 R 432 0 R 429 0 R 433 0 R 429 0 R 434 0 R 434 0 R 434 0 R 434 0 R +434 0 R 434 0 R 434 0 R 434 0 R 434 0 R 434 0 R 435 0 R 435 0 R 436 0 R 435 0 R 435 0 R 435 0 R 435 0 R 435 0 R 437 0 R 435 0 R +438 0 R 439 0 R 439 0 R 440 0 R 439 0 R 439 0 R 439 0 R 439 0 R] +endobj +158 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 439 0 R 439 0 R 441 0 R 439 0 R 439 0 R 439 0 R 442 0 R 439 0 R +439 0 R 439 0 R 443 0 R 443 0 R 444 0 R 445 0 R 444 0 R 446 0 R 444 0 R 444 0 R 447 0 R 444 0 R 444 0 R 444 0 R 444 0 R 444 0 R +444 0 R 448 0 R 448 0 R 448 0 R 448 0 R 448 0 R 448 0 R 449 0 R 448 0 R 448 0 R 450 0 R 450 0 R 450 0 R 451 0 R 450 0 R 452 0 R +450 0 R 450 0 R 450 0 R 453 0 R 450 0 R 450 0 R 454 0 R 454 0 R 454 0 R 454 0 R 455 0 R 454 0 R 456 0 R 454 0 R] +endobj +159 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 454 0 R 454 0 R +454 0 R 454 0 R 454 0 R 457 0 R 457 0 R 457 0 R 457 0 R 457 0 R 458 0 R 457 0 R 457 0 R 457 0 R 457 0 R 459 0 R 457 0 R 460 0 R +457 0 R 457 0 R 461 0 R 457 0 R 457 0 R 457 0 R 457 0 R 457 0 R 457 0 R 457 0 R 457 0 R 457 0 R 462 0 R 463 0 R 462 0 R 462 0 R +464 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 462 0 R 465 0 R 462 0 R 462 0 R 466 0 R 462 0 R 467 0 R 467 0 R 467 0 R 467 0 R +468 0 R 467 0 R 467 0 R 469 0 R 469 0 R 469 0 R 469 0 R 470 0 R 469 0 R 469 0 R] +endobj +160 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 467 0 R 471 0 R 467 0 R 467 0 R 467 0 R 472 0 R +467 0 R 467 0 R 467 0 R 473 0 R 474 0 R 474 0 R 474 0 R 474 0 R 475 0 R 475 0 R 475 0 R 476 0 R 475 0 R 477 0 R 475 0 R 478 0 R +475 0 R 479 0 R 475 0 R 475 0 R 475 0 R 480 0 R 481 0 R 480 0 R 480 0 R 480 0 R 480 0 R 480 0 R 480 0 R 480 0 R 482 0 R 480 0 R +480 0 R 483 0 R 480 0 R 480 0 R 480 0 R 484 0 R 480 0 R 485 0 R 480 0 R 480 0 R 486 0 R 487 0 R 486 0 R 486 0 R 486 0 R 488 0 R +486 0 R 486 0 R 489 0 R 489 0 R 490 0 R 489 0 R 491 0 R 489 0 R 489 0 R] +endobj +161 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null 486 0 R 486 0 R 486 0 R 492 0 R 492 0 R 492 0 R 493 0 R +492 0 R 492 0 R 492 0 R 492 0 R 494 0 R 492 0 R 492 0 R 492 0 R 495 0 R 492 0 R 492 0 R 492 0 R 496 0 R 497 0 R 496 0 R 498 0 R +496 0 R 496 0 R 496 0 R 496 0 R 499 0 R 496 0 R 496 0 R 496 0 R 496 0 R 496 0 R 496 0 R 500 0 R 496 0 R 501 0 R 501 0 R 501 0 R +501 0 R 502 0 R 501 0 R 501 0 R 501 0 R 501 0 R 503 0 R 501 0 R 501 0 R 501 0 R 504 0 R 501 0 R 505 0 R 506 0 R 505 0 R 507 0 R +505 0 R] +endobj +162 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 508 0 R 509 0 R 510 0 R 509 0 R 509 0 R 509 0 R 509 0 R 509 0 R 509 0 R 509 0 R 509 0 R 511 0 R 512 0 R 511 0 R 511 0 R +513 0 R 514 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 518 0 R 518 0 R 518 0 R 518 0 R 520 0 R 518 0 R 518 0 R 521 0 R +518 0 R 518 0 R 518 0 R 518 0 R 522 0 R 518 0 R 518 0 R 518 0 R 523 0 R 524 0 R 518 0 R 525 0 R 518 0 R 526 0 R 518 0 R 518 0 R +527 0 R 528 0 R 529 0 R 530 0 R 530 0 R 530 0 R 531 0 R 530 0 R 532 0 R 530 0 R] +endobj +163 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 530 0 R 533 0 R 530 0 R 534 0 R 530 0 R 535 0 R +530 0 R 530 0 R 530 0 R 530 0 R 536 0 R 530 0 R 537 0 R 530 0 R 530 0 R 530 0 R 530 0 R 538 0 R 530 0 R 539 0 R 540 0 R 530 0 R +541 0 R 530 0 R 542 0 R 530 0 R 530 0 R 530 0 R 530 0 R 530 0 R 543 0 R 544 0 R 545 0 R 546 0 R 546 0 R 546 0 R 547 0 R 546 0 R +548 0 R 546 0 R 549 0 R 546 0 R 550 0 R 546 0 R 546 0 R 546 0 R 551 0 R 546 0 R 552 0 R 546 0 R 546 0 R 546 0 R 546 0 R 546 0 R +546 0 R 546 0 R 546 0 R 546 0 R 546 0 R 553 0 R 554 0 R 546 0 R 546 0 R 555 0 R 546 0 R 556 0 R 546 0 R 546 0 R 557 0 R 546 0 R +546 0 R 546 0 R 558 0 R 559 0 R 558 0 R 558 0 R 558 0 R] +endobj +164 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 560 0 R 561 0 R 562 0 R 561 0 R 561 0 R 561 0 R 561 0 R 563 0 R 564 0 R 565 0 R 566 0 R 566 0 R 567 0 R 566 0 R 566 0 R +566 0 R 566 0 R 566 0 R 566 0 R 568 0 R 569 0 R 570 0 R 571 0 R 571 0 R 571 0 R 571 0 R 572 0 R 571 0 R 571 0 R 573 0 R 571 0 R +571 0 R 574 0 R 571 0 R 575 0 R 571 0 R 576 0 R 571 0 R 571 0 R 571 0 R 577 0 R 578 0 R 579 0 R 580 0 R 580 0 R 580 0 R 580 0 R +580 0 R 580 0 R 580 0 R 580 0 R 580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 584 0 R 584 0 R 584 0 R 584 0 R 584 0 R 585 0 R 584 0 R +584 0 R] +endobj +165 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 589 0 R 589 0 R 591 0 R 589 0 R 592 0 R 589 0 R 589 0 R 589 0 R 593 0 R 589 0 R +589 0 R 594 0 R 595 0 R 595 0 R 595 0 R 595 0 R 595 0 R 596 0 R 596 0 R 596 0 R 597 0 R 596 0 R 596 0 R 596 0 R 596 0 R 598 0 R +598 0 R 598 0 R 598 0 R 598 0 R 598 0 R 599 0 R 598 0 R 598 0 R 598 0 R 598 0 R 600 0 R 600 0 R 600 0 R 601 0 R 600 0 R 600 0 R +602 0 R 600 0 R 600 0 R 603 0 R 600 0 R 600 0 R 604 0 R 600 0 R 605 0 R 600 0 R 600 0 R 606 0 R 606 0 R 606 0 R 606 0 R] +endobj +166 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null 607 0 R +608 0 R 609 0 R 608 0 R 608 0 R 608 0 R 608 0 R 610 0 R 608 0 R 608 0 R 608 0 R 608 0 R 608 0 R 611 0 R 612 0 R 613 0 R 613 0 R +613 0 R 614 0 R 613 0 R 613 0 R 613 0 R 615 0 R 613 0 R 616 0 R 613 0 R 613 0 R 613 0 R 613 0 R 617 0 R 613 0 R 618 0 R 618 0 R +618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 618 0 R 619 0 R 619 0 R 619 0 R 620 0 R 621 0 R 622 0 R +623 0 R 623 0 R 623 0 R] +endobj +167 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null 623 0 R 623 0 R 624 0 R 623 0 R 623 0 R 625 0 R 623 0 R 623 0 R 623 0 R 623 0 R 623 0 R 623 0 R 626 0 R +627 0 R 628 0 R 629 0 R 630 0 R 629 0 R 629 0 R 629 0 R 629 0 R 629 0 R 629 0 R 631 0 R 629 0 R 629 0 R 629 0 R 629 0 R 629 0 R +632 0 R 629 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 638 0 R 638 0 R 638 0 R 639 0 R 640 0 R 641 0 R 641 0 R 641 0 R +642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 647 0 R 647 0 R 648 0 R 649 0 R 650 0 R 650 0 R 650 0 R 651 0 R 652 0 R 653 0 R +653 0 R 654 0 R 655 0 R 656 0 R 656 0 R 656 0 R 656 0 R 657 0 R 658 0 R 659 0 R 659 0 R 659 0 R 659 0 R] +endobj +168 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 660 0 R 661 0 R 661 0 R +661 0 R 662 0 R 661 0 R 661 0 R 661 0 R 663 0 R 663 0 R 663 0 R 664 0 R 663 0 R 663 0 R 663 0 R 663 0 R 663 0 R 665 0 R 663 0 R +666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R 666 0 R +667 0 R 667 0 R 668 0 R 667 0 R 667 0 R 669 0 R 667 0 R 670 0 R 667 0 R 667 0 R 667 0 R 667 0 R 671 0 R 672 0 R 671 0 R 671 0 R +671 0 R 671 0 R] +endobj +169 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 673 0 R 674 0 R 675 0 R 676 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 679 0 R 679 0 R 681 0 R 682 0 R 683 0 R +683 0 R 684 0 R 685 0 R 686 0 R 686 0 R 687 0 R 686 0 R 688 0 R 689 0 R 690 0 R 690 0 R 691 0 R 690 0 R 692 0 R 693 0 R 694 0 R +693 0 R 695 0 R 693 0 R 693 0 R 696 0 R 693 0 R 693 0 R 697 0 R 698 0 R 697 0 R 697 0 R 697 0 R 697 0 R 699 0 R 697 0 R 697 0 R +700 0 R 697 0 R 697 0 R 701 0 R 702 0 R 701 0 R 701 0 R 703 0 R 701 0 R 701 0 R 704 0 R 701 0 R 701 0 R 705 0 R 705 0 R 705 0 R +705 0 R 706 0 R 705 0 R 707 0 R] +endobj +170 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null 705 0 R 705 0 R 705 0 R 705 0 R 705 0 R 708 0 R 708 0 R 708 0 R 708 0 R 709 0 R 710 0 R 711 0 R +710 0 R 710 0 R 710 0 R 712 0 R 710 0 R 713 0 R 714 0 R 714 0 R 714 0 R 714 0 R 714 0 R 714 0 R 715 0 R 714 0 R 716 0 R 717 0 R +718 0 R 719 0 R 719 0 R 720 0 R 721 0 R 722 0 R 722 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 725 0 R 727 0 R 728 0 R 729 0 R +729 0 R 729 0 R 730 0 R 731 0 R 732 0 R 732 0 R 733 0 R 734 0 R 735 0 R 735 0 R 735 0 R] +endobj +171 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null 714 0 R 714 0 R 714 0 R 714 0 R 714 0 R +736 0 R 714 0 R 737 0 R 738 0 R 738 0 R 738 0 R 738 0 R 738 0 R 739 0 R 738 0 R 738 0 R 738 0 R 740 0 R 738 0 R 741 0 R 742 0 R +742 0 R 742 0 R 743 0 R 742 0 R 742 0 R 742 0 R 742 0 R 744 0 R 745 0 R 744 0 R 744 0 R 744 0 R 744 0 R 744 0 R 746 0 R 746 0 R +746 0 R 747 0 R 746 0 R 746 0 R 748 0 R 749 0 R 749 0 R 749 0 R 749 0 R 749 0 R] +endobj +172 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null 749 0 R 749 0 R 749 0 R 749 0 R 750 0 R 749 0 R +749 0 R 749 0 R 749 0 R 749 0 R 751 0 R 752 0 R 752 0 R 752 0 R 752 0 R 752 0 R 752 0 R 752 0 R 753 0 R 754 0 R 753 0 R 755 0 R +753 0 R 753 0 R 756 0 R 753 0 R 757 0 R 753 0 R 753 0 R 758 0 R 758 0 R 758 0 R 758 0 R 759 0 R 760 0 R 759 0 R 761 0 R 759 0 R +762 0 R 763 0 R 763 0 R 763 0 R 763 0 R 764 0 R 763 0 R 763 0 R 763 0 R 763 0 R 763 0 R 763 0 R 763 0 R] +endobj +173 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 765 0 R 765 0 R 765 0 R +765 0 R 766 0 R 765 0 R 765 0 R 765 0 R 765 0 R 765 0 R 765 0 R 767 0 R 765 0 R 768 0 R 765 0 R 765 0 R 769 0 R 770 0 R 769 0 R +769 0 R 769 0 R 769 0 R 771 0 R 769 0 R 772 0 R 773 0 R 773 0 R 773 0 R 773 0 R 773 0 R 774 0 R 773 0 R 775 0 R 775 0 R 775 0 R +775 0 R 776 0 R 777 0 R 778 0 R 779 0 R 780 0 R 781 0 R 782 0 R 783 0 R 784 0 R 783 0 R 783 0 R 783 0 R 785 0 R 786 0 R 787 0 R +788 0 R 787 0 R 789 0 R 790 0 R 791 0 R 791 0 R 791 0 R 791 0 R 792 0 R 793 0 R 792 0 R 792 0 R 794 0 R 795 0 R 796 0 R 797 0 R +798 0 R 799 0 R] +endobj +174 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null 775 0 R 775 0 R 775 0 R 775 0 R 800 0 R 775 0 R 775 0 R 775 0 R 801 0 R 775 0 R 802 0 R 802 0 R 803 0 R 802 0 R +802 0 R 802 0 R 802 0 R 802 0 R 804 0 R 802 0 R 802 0 R 802 0 R 802 0 R 805 0 R 806 0 R 807 0 R 808 0 R 809 0 R 808 0 R 810 0 R +811 0 R 812 0 R 812 0 R 812 0 R 812 0 R 812 0 R 812 0 R 812 0 R 813 0 R 814 0 R 815 0 R 815 0 R 816 0 R 816 0 R 817 0 R 818 0 R +819 0 R 819 0 R 819 0 R 820 0 R 819 0 R 821 0 R 819 0 R 822 0 R 823 0 R 822 0 R 824 0 R 825 0 R 826 0 R 826 0 R 826 0 R 826 0 R +827 0 R 828 0 R 827 0 R 829 0 R 830 0 R 831 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R] +endobj +175 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 838 0 R 839 0 R 839 0 R +840 0 R 839 0 R 839 0 R 841 0 R 839 0 R 839 0 R 839 0 R 839 0 R 839 0 R 842 0 R 842 0 R 842 0 R 842 0 R 842 0 R 842 0 R 843 0 R +842 0 R 842 0 R 842 0 R 844 0 R 844 0 R 845 0 R 844 0 R 844 0 R 846 0 R 846 0 R 846 0 R 846 0 R 847 0 R 846 0 R 846 0 R 846 0 R +846 0 R 848 0 R 846 0 R 846 0 R 846 0 R 846 0 R 849 0 R 850 0 R 849 0 R 849 0 R 851 0 R 849 0 R 849 0 R 849 0 R 849 0 R 849 0 R +852 0 R 852 0 R 853 0 R 852 0 R 852 0 R 854 0 R 855 0 R 854 0 R] +endobj +176 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 852 0 R 852 0 R 856 0 R 852 0 R 852 0 R 852 0 R 857 0 R 858 0 R +857 0 R 859 0 R 857 0 R 860 0 R 861 0 R 862 0 R 861 0 R 861 0 R 861 0 R 861 0 R 861 0 R 863 0 R 861 0 R 861 0 R 861 0 R 864 0 R +865 0 R 864 0 R 864 0 R 864 0 R 864 0 R 864 0 R 864 0 R 864 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 869 0 R 871 0 R 872 0 R +873 0 R 874 0 R 873 0 R 873 0 R 875 0 R 876 0 R 877 0 R 877 0 R 878 0 R 878 0 R 879 0 R 880 0 R 881 0 R 882 0 R 882 0 R 882 0 R +883 0 R 882 0 R 884 0 R 885 0 R 886 0 R 886 0 R] +endobj +177 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null 887 0 R 887 0 R 888 0 R 887 0 R 889 0 R 887 0 R 890 0 R 887 0 R 887 0 R 887 0 R +887 0 R 891 0 R 891 0 R 891 0 R 892 0 R 891 0 R 891 0 R 893 0 R 891 0 R 894 0 R 891 0 R 891 0 R 895 0 R 891 0 R 891 0 R 891 0 R +896 0 R 896 0 R 896 0 R 896 0 R 897 0 R 896 0 R 896 0 R 896 0 R 896 0 R 898 0 R 896 0 R 896 0 R 899 0 R 896 0 R 896 0 R 900 0 R +900 0 R 901 0 R 900 0 R 902 0 R 900 0 R 900 0 R 900 0 R 900 0 R 903 0 R 903 0 R 903 0 R 904 0 R 903 0 R 903 0 R 903 0 R 905 0 R +903 0 R 903 0 R 903 0 R 906 0 R 906 0 R] +endobj +178 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null 907 0 R 908 0 R 908 0 R 909 0 R 908 0 R 908 0 R 910 0 R 908 0 R 908 0 R 911 0 R 908 0 R +908 0 R 908 0 R 912 0 R 913 0 R 912 0 R 914 0 R 912 0 R 912 0 R 912 0 R 915 0 R 912 0 R 912 0 R 916 0 R 912 0 R 912 0 R 912 0 R +912 0 R 917 0 R 912 0 R 912 0 R 912 0 R 912 0 R 912 0 R 918 0 R 918 0 R 918 0 R 919 0 R 918 0 R 918 0 R 918 0 R 920 0 R 921 0 R +922 0 R 923 0 R 924 0 R 925 0 R 925 0 R 926 0 R 925 0 R 925 0 R] +endobj +179 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 931 0 R 932 0 R 931 0 R +931 0 R 931 0 R 931 0 R 931 0 R 931 0 R 933 0 R 931 0 R 934 0 R 935 0 R 936 0 R 937 0 R 936 0 R 938 0 R 936 0 R 939 0 R 940 0 R +939 0 R 941 0 R 939 0 R 939 0 R 939 0 R 942 0 R 939 0 R 943 0 R 944 0 R 945 0 R 945 0 R 946 0 R 947 0 R 946 0 R 946 0 R 946 0 R +948 0 R 946 0 R 949 0 R 946 0 R 946 0 R 950 0 R 951 0 R 952 0 R 952 0 R 953 0 R 952 0 R 954 0 R 955 0 R 954 0 R 954 0 R 956 0 R +954 0 R 957 0 R 954 0 R 958 0 R 954 0 R 954 0 R 954 0 R 954 0 R 959 0 R 954 0 R 954 0 R 954 0 R 960 0 R 954 0 R] +endobj +180 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null 961 0 R 962 0 R +963 0 R 964 0 R 964 0 R 964 0 R 964 0 R 964 0 R 965 0 R 964 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 969 0 R 969 0 R 969 0 R +971 0 R 972 0 R 973 0 R 974 0 R 973 0 R 975 0 R 976 0 R 975 0 R 975 0 R 977 0 R 975 0 R 978 0 R 979 0 R 980 0 R 981 0 R 981 0 R +982 0 R 981 0 R 983 0 R 981 0 R 981 0 R 984 0 R 985 0 R 986 0 R 987 0 R 988 0 R 987 0 R 987 0 R 987 0 R 989 0 R 990 0 R 990 0 R +990 0 R 991 0 R 990 0 R 990 0 R 992 0 R 992 0 R 992 0 R 993 0 R 994 0 R 993 0 R 993 0 R 995 0 R 993 0 R] +endobj +181 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null 993 0 R 993 0 R 993 0 R +996 0 R 997 0 R 998 0 R 997 0 R 999 0 R 997 0 R 1000 0 R 997 0 R 997 0 R 997 0 R 1001 0 R 997 0 R 997 0 R 997 0 R 997 0 R 997 0 R +997 0 R 1002 0 R 1002 0 R 1003 0 R 1003 0 R 1003 0 R 1003 0 R 1003 0 R 1003 0 R 1004 0 R 1003 0 R 1005 0 R 1005 0 R 1006 0 R 1006 0 R 1006 0 R +1007 0 R 1006 0 R 1006 0 R 1008 0 R 1006 0 R 1006 0 R 1006 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1012 0 R 1012 0 R 1012 0 R 1012 0 R +1012 0 R] +endobj +182 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null 1014 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R +1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R +1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R +1053 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R +1069 0 R 1070 0 R 1071 0 R 1072 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1079 0 R 1080 0 R 1081 0 R 1082 0 R 1083 0 R 1084 0 R +1084 0 R 1084 0 R 1085 0 R 1086 0 R 1087 0 R 1088 0 R 1089 0 R 1090 0 R 1091 0 R 1092 0 R 1093 0 R 1094 0 R 1095 0 R 1096 0 R 1097 0 R 1098 0 R +1099 0 R 1100 0 R 1101 0 R 1102 0 R 1103 0 R 1104 0 R 1105 0 R 1106 0 R 1107 0 R 1108 0 R 1109 0 R 1110 0 R 1109 0 R 1109 0 R 1111 0 R 1112 0 R +1113 0 R 1114 0 R 1115 0 R 1116 0 R 1117 0 R 1118 0 R 1119 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1128 0 R +1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1137 0 R 1138 0 R 1139 0 R 1140 0 R 1141 0 R 1142 0 R 1143 0 R +1144 0 R] +endobj +183 0 obj +[null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null null null null null null null null null null null null null null null null +null 1145 0 R 1146 0 R 1147 0 R 1148 0 R 1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R 1154 0 R 1153 0 R 1153 0 R 1155 0 R 1156 0 R 1156 0 R +1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R 1164 0 R 1164 0 R 1166 0 R 1166 0 R 1167 0 R 1167 0 R 1167 0 R +1168 0 R 1168 0 R 1169 0 R 1170 0 R 1170 0 R 1171 0 R 1171 0 R 1172 0 R 1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1173 0 R 1177 0 R 1177 0 R +1178 0 R 1178 0 R 1179 0 R 1179 0 R 1180 0 R 1181 0 R 1180 0 R 1182 0 R 1182 0 R 1183 0 R 1183 0 R 1183 0 R 1184 0 R 1183 0 R 1185 0 R 1185 0 R +1186 0 R 1186 0 R 1186 0 R 1187 0 R 1186 0 R 1188 0 R 1186 0 R 1189 0 R 1189 0 R 1189 0 R 1189 0 R 1189 0 R 1190 0 R 1189 0 R] +endobj +184 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1191 0 R +/FontName /GRBLNM+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +185 0 obj +<< +/Filter /FlateDecode +/Length 461 +>> +stream +H‰\“ËŽâ0E÷ù +/»­¼ìªFŠhè–XÌCÃÌ„Ä0‘'2aÁßo.ê‘&p¢”+çâr¾Ýïöa˜Mþ=ŽÝÁÏæ4„>úëx‹7GBVV¦ºùq·|w—vÊò´øp¿Îþ²§1k“ÿH¯s¼›§M?ýs–‹½C8›§_ÛóÉ·iúã/>̦0ëµéý)5úÒN_Û‹7ù²ìeߧçÃ|IkþUü¼OÞTË}I™nìýuj;ÛpöYS¤kmšt­3úÿž»Ç²ã©ûÝƬ©P\é'ñ–¼ïÈ;ð;ù=qÍúõuI.Á¹×älÉìÈ,d+YÁ¯äWðŠ¼Jlù.‹wYö·èoÙߢ¿eO‹ž–=-zZö±Kf±Èb?Èéjs9ärÌâű¿C¡ƒÀAX#¨ú|„õ²Ô3¯ ¯ÐMà&t¸ ó +ò +=ž²!oÀoä70÷H°GÂ=ì‘0— —0— —2—"—ÒYá¬tV8+ÎJg…³ÒYá¬tV8+ÎJg…³ÒYá¼ÂÚª(ëeÓ†qL§Æ|Îzw‹1ùr´–ùÆdÁž¾iœLZ…OöW€”°äª +endstream +endobj +186 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1192 0 R +/FontName /NMLBHY+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +187 0 obj +<< +/Filter /FlateDecode +/Length 454 +>> +stream +H‰\“ÛŠâ@†ïó}9s1D“JÕApt¼ØëîĤuk'´ñ·ßþóË,¬ó…Ôákª’o÷»}è'—C{ð“;õ¡‹þ:ÜbëÝÑŸû- ×õíôxšÿÛK3fyJ>ܯ“¿ìÃiÈêÚå?ÒËëïîiÓ GÿœåßbçcÎîé×öðìòÃmÿø‹“[¸õÚuþ” +}iƯÍÅ»|N{Ùwé}?Ý_RοˆŸ÷Ñ»b~^R¦:›ÖÇ&œ}V/Òoíêô[g>tÿ½—ÓŽ§öw³º@ðb‘n‰·ä-xGÞß1ézOÏ%sJä”Kò\ pI.ÁBpE®ÀJV°‘ üJ~oÈ›ÄÂ^‚^Â^‚^Â^‚^Â^‚^Â^‚^Âú‚ú²"¯À<§àœkV¨Y±f…škV¨©tP8(ãñÊxE¼2^çx:(”çUœWé£ðQú(|”çUœWßÈo`ÎF1¥³ÂY9Å\ôƒœ_gd˜‘ÑÓàiô4x= žFOƒ§ÑÓàiô4xçb˜‹ÑÙàltN7,Üc³°zé qŸ{ÝÞbL+=Fó.c‹ûà?¿´q]Ê•ý`³Ñà° +endstream +endobj +188 0 obj +[1193 0 R] +endobj +189 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +190 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/four/six) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1194 0 R +/FontName /PHMNJU+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +191 0 obj +<< +/Filter /FlateDecode +/Length 252 +>> +stream +H‰\PMoà ½ó+|l4ëzB‘¦n“r؇–íp2¤!‡üû¨:i–Àϲßãa~é;gð÷èu FëLÄůQ# 8YÇŽ «Óµ*·žU`œÈý¶$œ;7z&%ðj.)n°{0~À=ãoÑ`´n‚Ý×¥ßï×~pF—@@Û‚Á‘„^TxU3/´Cg¨oÓv ÎßÄçšR«í .AiŒÊMȤ hA>S´ ù׿¯¬aÔß*2Ù<Ѭ”˜¼S"|ªø”ñ¹âs›Õ›:E)«_uò;´¸}B¯1’ÿ²³b<[¶ok >±òa¿ 51xà +endstream +endobj +192 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/C/D/O/R/a/d/e/g/i/m/n/r/space/z) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1195 0 R +/FontName /JLMIDG+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +193 0 obj +<< +/Filter /FlateDecode +/Length 295 +>> +stream +H‰\‘ÛŠÃ †ï}Š¹l/ŠI6m(H ô¹Ø›ÝHtÒ +#Æ^äíwÔÒ…t>™ù‡ñ—›Sc´þá&Ù¢‡AåpžîN"ôxÕ†å(-ýãO9v–q·ËìqlÌ01!€RrönÕAM=®w +6WX}Û5ðöníŽh> +endobj +195 0 obj +<< +/Filter /FlateDecode +/Length 343 +>> +stream +H‰\’ÍŠƒ0ÇïyŠÛC±µ6¡ Bk[𰬻`“±+¬1D{ðíw&Sº°_È>2“¤¬N•ë&™¼‡ÁÔ0ɶs6À8܃y…[çÄ&•¶3Ócÿ¦o¼HйžÇ úʵƒÈs™|àá8…Y.v¸ÂR$oÁBèÜM.¾Êz)“úîýôà&¹–E!-´è¥ñ¯M2‰n«Êây7Í+ôùS|Îd÷.Æ Fß»È׸ +™_pœýwžfìvmÍwDž’x½Fƒ\2—È[ȳ,2ä=óž˜õéwid4È[æ-²ÚDFƒÌEÅ1ÅT;æ±fÖÄœKQ.ud>s^EyÕ‰ùD|f>_˜± ¹æ¼šòj®MSmškÐTƒæûjº¯>0b¢VâÄåsNæŽ(>‹8šJçàùrüà%zÑ'~Ý¥³ +endstream +endobj +196 0 obj +<< +/BaseFont /TBZKNM+Wingdings-Regular +/DescendantFonts 1197 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1198 0 R +/Type /Font +>> +endobj +197 0 obj +<< +/BaseFont /STEKZO+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 73 +/FontDescriptor 194 0 R +/LastChar 73 +/Subtype /Type1 +/ToUnicode 1199 0 R +/Type /Font +/Widths [305] +>> +endobj +198 0 obj +<< +/BaseFont /CKFCJU+Wingdings-Regular +/DescendantFonts 1200 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1201 0 R +/Type /Font +>> +endobj +199 0 obj +<< +/BaseFont /STEKZO+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 194 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1202 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +200 0 obj +<< +/BaseFont /TXOQNM+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1203 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1204 0 R +/Type /Font +/Widths [202] +>> +endobj +201 0 obj +<< +/BaseFont /JLMIDG+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 192 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1205 0 R +/Type /Font +/Widths [212] +>> +endobj +202 0 obj +<< +/BaseFont /FFOKZO+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1206 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1207 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 536 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 509 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 0 0 516 0 0 0 0 0 0 0 0 0 0 +0 0 356 0 0 569 0 0 0 500] +>> +endobj +203 0 obj +<< +/Ascent 1134 +/CapHeight 692 +/Descent -283 +/Flags 34 +/FontBBox [-546 -283 1021 1134] +/FontFamily (Palatino) +/FontFile2 1208 0 R +/FontName /XPMVTJ+Palatino +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 84 +/Type /FontDescriptor +/XHeight 469 +>> +endobj +204 0 obj +<< +/Filter /FlateDecode +/Length 555 +>> +stream +H‰\ÔÍŠâ@à}ž¢–Ý‹&šºuo‚`k7¸˜Æ™ˆIéÆ$Äô·Ÿ:9MŒ Iêæó@U¾;ì}7»üû44Ç8»s×·S¼ ïSÝ)^º>[®íšùã×òÙ\ë1ËÓâãý6Çë¡?YU¹üGºx›§»{ضÃ)>fù·©S×_ÜïÝñÑåÇ÷qü¯±ŸÝÊm6®ç4èK=~­¯Ñå˲§C›®wóý)­ùwÇÏû]±ü^Ó m¼u§º¿Ä¬Z¥×ÆUoéµÉbßþwÝ—ÎÍïzʪ7¯Vé+ågægä’¹DÞ1ï÷Ì{äWæWä7æôÐÊs¦ÇL¿f^#̲göÈÂ,È9 +³"³!Óéáôtz8ý–y‹üÂü‚L›‡Mèx„Gèx„Gèx„Gèx„Gèx„Gèx„} +úö)èSا O¡Y`ì3 Ï@€?Ðàôøýþ@€?ÐàôøÍfå|Å|å|Å|å|Å|å|Å|å|Å|å|Å|å|Å|e?Š~”ÏÒåYìGѲE?Ê~ý(ûQô£ìGѲE?Æ~ ýý¿Ñoðý¿Ñoðý¿Ñoðý¿Ñoðý¿Ñoð—xn±Zãž²`Æ=¥gÆ)…ÿ¥Tf¿lÒ݈íšN÷y4ïÓ”ŽåèYö?v~×ÇÏÓiF—Váý`êËS +endstream +endobj +205 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/L/R/S/a/b/comma/d/e/eight/five/four/g/i/k/l/m/n/nine/o/one/period/r/s/seven/six/space/t/three/two/v/z/zero) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1209 0 R +/FontName /CVJZVZ+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +206 0 obj +<< +/Filter /FlateDecode +/Length 276 +>> +stream +H‰\‘ÛjÄ †ï}Š¹Ü½XÌaeK!=дè$+4FŒ¹ÈÛw&.[¨ ~2þúû+¯ÕseMùáGUc€ÎXíqg¯ZìiÚ¨p_­£'$‰ëe +8T¶EQ€ü¤âü›'=¶¸òÝkôÆö°ù¾Ö[õìÜh$P– ±£ƒ^÷Ö r•í*Mu–iþv|-![×i4£F“kúÆö(Š„Z Å µR Õÿêé]ÖvêÖxQä¼9Ih"N#§ÌYäŒ9œ3ï#ÌÇÈGæSäó9ò™ùùR²Í,ÞLÛ¼ûaÔ+<ÒP³÷Äþš¿ÝX|üŠ»ø`j†Ã +endstream +endobj +207 0 obj +<< +/Ascent 958 +/CapHeight 674 +/CharSet (/period/zero/four/six) +/Descent -250 +/Flags 32 +/FontBBox [-150 -250 970 958] +/FontFamily (Myriad Pro Cond) +/FontFile3 1210 0 R +/FontName /KLAVTJ+MyriadPro-BoldCond +/FontStretch /Condensed +/FontWeight 700 +/ItalicAngle 0 +/StemV 132 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +208 0 obj +<< +/Filter /FlateDecode +/Length 252 +>> +stream +H‰\PMoà ½ó+|l4ëzB‘¦n“r؇–íp2¤!‡üû¨:i–Àϲßãa~é;gð÷èu FëLÄůQ# 8YÇŽ «Óµ*·žU`œÈý¶$œ;7z&%ðj.)n°{0~À=ãoÑ`´n‚Ý×¥ßï×~pF—@@Û‚Á‘„^TxU3/´Cg¨oÓv ÎßÄçšR«í .AiŒÊMȤ hA>S´ ù׿¯¬aÔß*2Ù<Ѭ”˜¼S"|ªø”ñ¹âs›Õ›:E)«_uò;´¸}B¯1’ÿ²³b<[¶ok >±òa¿ 51xà +endstream +endobj +209 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [31 /f_l] +/Type /Encoding +>> +endobj +210 0 obj +<< +/Ascent 952 +/CapHeight 674 +/CharSet (/A/C/D/O/R/S/T/U/a/b/bullet/c/d/e/f/f_l/five/four/g/h/i/k/l/m/n/o/one/p/period/r/s/slash/space/t/three/two/u/y/z) +/Descent -250 +/Flags 32 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/FontFile3 1211 0 R +/FontName /ZBTCFF+MyriadPro-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 88 +/Type /FontDescriptor +/XHeight 484 +>> +endobj +211 0 obj +<< +/Filter /FlateDecode +/Length 416 +>> +stream +H‰\’Ín£0…÷~ +/ÛE!þi$„”&­”Å´Õdæ8¤‰AYäí矨• üY>çr¸Üb³Ûîâ0ëâ3Ý>Ìú8Ä>…ËxM]Їp¢ZTººù¾ËÏîÜNªóþv™Ãy£ªk]ü”ÃËœnúa݇ð¨ŠÔ‡4Ä“~ø½Ù?êb¦¿áâ¬KÝ4ºG)ô£ÞÛsÐE¶=íz9æÛ“x¾¿nSÐUÞ/¦ûp™Ú.¤6ž‚ªK¹]¿ÉÕ¨ûÿΗ+ÚÇîO›T½xqY:'÷¦QuUæ½,¯äW0u²¨z¹È,‹pE®ÀKòlÈlÉVØÐkà5Ôè õzÃw¼Ë²¾E}K½…ÞRo¡·¬oQß±¾C}G¯ƒ×Ñëàuô:x½.{ݽ`Oöàgò3xE^_È/à =t[òÌ:ôÐÝ{ïòì³GŸ=szäôÌé‘Ó3§GNÏœ9=3xdðkòZxMUVUþñ÷?ŒIÕ_óÕ]S’ÑÊãœg +Ó4Äð5ñÓ8iqáVÿåÁÉe +endstream +endobj +212 0 obj +<< +/BaseFont /KMKVDJ+Wingdings-Regular +/DescendantFonts 1212 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1213 0 R +/Type /Font +>> +endobj +213 0 obj +<< +/BaseFont /CVJZVZ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 205 0 R +/LastChar 118 +/Subtype /Type1 +/ToUnicode 1214 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 0 0 283 0 +573 0 0 0 573 0 573 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 528 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 0 0 0 539 0 596 0 292 0 575 292 0 599 0 +0 0 0 451 0 0 551] +>> +endobj +214 0 obj +<< +/BaseFont /CIHUVZ+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 228 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1215 0 R +/Type /Font +/Widths [202] +>> +endobj +215 0 obj +<< +/BaseFont /ZBTCFF+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 210 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1216 0 R +/Type /Font +/Widths [212] +>> +endobj +216 0 obj +<< +/BaseFont /XYUQDJ+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1217 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1218 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 588 683 0 0 0 0 0 0 0 0 0 0 704 +0 0 569 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 0 0 581 516 0 573 0 256 0 0 0 848 572 0 +0 0 356 0 0 0 0 0 0 0 450] +>> +endobj +217 0 obj +<< +/Ascent 784 +/CapHeight 602 +/Descent -230 +/Flags 34 +/FontBBox [0 -230 936 784] +/FontFamily (Palatino) +/FontFile2 1219 0 R +/FontName /WYVKFL+PalatinoBold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 112 +/Type /FontDescriptor +/XHeight 418 +>> +endobj +218 0 obj +<< +/Filter /FlateDecode +/Length 394 +>> +stream +H‰\’Ájã0†ïz +ÛC±ãDšL MZÈaÛ²Ù}Çžd Ù(Î!o¿úõ—V`ëš}HSlvÛ]f[|ıÛëlCè£^ÆkìÔô4³¨l?tóç*ÿ»s;™"%ïo—YÏ»pMÓØâgÚ¼Ìñfïžúñ ÷¦x½Æ!œìÝïÍþÞûë4ýÕ³†Ù–v½¶½S¡íôÖžÕ9íaקýa¾=¤œïˆ_·Im•× Êtc¯—©í4¶á¤¦)ÓXÛæ5µÑÐÿ·¿tL;»?m4M…à²L“i–O™ÓdšÕ"sš/ÉKðŠ¼×ä¼!o;Öt¨é*rf‡:Žuêxžåq–gŒGŒgŒÏ1ŽìÀBð#ùLÿL~ÓÍÃÍoÉ[ð ùüJN—ÖýþB¿ÐMà&t¸ ÝnâÉLO§ÐSà)ôx +ï\pç5î¡*ˆ©+rñóµðœ©ëìW¯t×S›äÖÌý΂~uï4N6eá3ÿ{¿I +endstream +endobj +219 0 obj +<< +/BaseFont /ZCMNFF+Wingdings-Regular +/DescendantFonts 1220 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1221 0 R +/Type /Font +>> +endobj +220 0 obj +<< +/BaseFont /CVJZVZ+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 205 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1222 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 283 0 +573 0 0 0 573 0 573 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +221 0 obj +<< +/BaseFont /CIHUVZ+MyriadPro-Bold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 228 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1223 0 R +/Type /Font +/Widths [202] +>> +endobj +222 0 obj +<< +/BaseFont /ZBTCFF+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 210 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1224 0 R +/Type /Font +/Widths [212] +>> +endobj +223 0 obj +<< +/BaseFont /XYUQDJ+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1217 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1225 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 536 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 509 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 0 0 516 0 0 0 0 0 0 0 0 0 0 +0 0 356 0 0 569 0 0 0 500] +>> +endobj +224 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [28 /f_i /f_f /f_f_i /f_l] +/Type /Encoding +>> +endobj +225 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/f_i/f_f/f_f_i/f_l/space/parenleft/parenright/comma/hyphen/period/slash/semicolon/question/A/C/D/E/F/G/H/I/L/O/P/R/S/T/U/V/W/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/quoteleft/quoteright/endash) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1226 0 R +/FontName /IDXERN+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +226 0 obj +<< +/Filter /FlateDecode +/Length 507 +>> +stream +H‰\“ÍŽ›@„ï<Åw+0fº Yr¼Yɇü(Þ<†±ƒÂøà·O×Ù‚S 35_OÓénÿ²ï»Ù¥ß§¡9„Ùº¾Âu¸MMpÇpîúd•»¶kæ%ŠÏæRIj‹÷ë.ûþ4$UåÒöñ:Ow÷°m‡cxLÒoS¦®?»‡Ÿ»Ã£K·qü.¡Ÿ]æ6׆“}©Ç¯õ%¸4.{Ú·ö½›ïO¶æcÆÛ} .ñŠ0ÍІëX7aªûsHªÌ®«^íÚ$¡oÿûîK.;žš_õ”T«MÎ2»ËÅ/± þüOüwÎëÇ»ÅycL?S?C—ÔX“sŸ<Îç6˜¦¿ ¦ékCR­?Emƒi¾_ã}±ŠÚÓkê5tA]@{j-ÔÈ¥Pj…&g΂œ8 rà,¸o}=sôÈÑçÔ94<<<<<<<<<„¹rz +<…žO¡§ÀSè)ðYjMO‰žÌK—0¯X3ÙRo¡y¶‚³•¥þÈW–Ú£.²Ôu‘¥Þ8å9(ÎAɯàWò+ø•ü +~%¿‚_ɯàWò+ø•ü +~%¿‚_ɯàWò+øKì›g+Ì)sjÌ)…züåG X§º÷þjnÓd­Û9öº©ëÃ{ÇÃèlîäJü +endstream +endobj +227 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [28 /f_f_i /hyphen.cap /f_i /f_l] +/Type /Encoding +>> +endobj +228 0 obj +<< +/Ascent 989 +/CapHeight 674 +/CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/X/Y/Z/a/b/c/colon/comma/d/e/eight/endash/f/f_f_i/f_i/f_l/five/four/g/h/hyphen/hyphen.cap/i/j/k/l/m/n/nine/o/one/p/period/r/s/seven/six/space/t/three/two/u/v/w/x/y/z) +/Descent -250 +/Flags 32 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/FontFile3 1227 0 R +/FontName /CIHUVZ+MyriadPro-Bold +/FontStretch /Normal +/FontWeight 700 +/ItalicAngle 0 +/StemV 152 +/Type /FontDescriptor +/XHeight 489 +>> +endobj +229 0 obj +<< +/Filter /FlateDecode +/Length 541 +>> +stream +H‰\”Ín£0…÷<…—í¢â'×׉„"¥I+e1?št€€“Aj²ÈÛjF‰pÀ˜ïÓ‘MºÝïö];™ôçØ×?™SÛ5£¿ö·±öæèÏm—ä…iÚzš¯â}©†$ “÷ëä/ûîÔ'eiÒ_að:wó´iú£NÒcãǶ;›§ßÛóI·aøôßM&3ëµiü)¼è[5|¯.Þ¤qÚ˾ ãít sO|ÜoŠxS¦îªÚUwöI™…ßÚ”ïá·N|×ü7®KN;žê?Õ˜”ù6<œeªó±Z‡{»x¯Ø!¿=ÆãØûãz®‹ŒÏfÈ|WïÿóŽ‚理\ä1‡SÈs¼`^ ³ [f‹¬ÌŠì˜ò’y‰¼b†ëbü YÈp…\WÈp…\WÈp…\WÈp…\WÈpå•ù™:v"èD؉ a§á””–}ZôiéláléláléláléláléláléláléiáiéiáiÙE?J–‚¥d)XJ–‚¥d)XJ–‚¥:¯ dö£èGÉUp•Ü¸†”\\v¥èJ絈®”])ºÒy ¢+׺rìÊ¡+GggGggGggGggGggGggGggGggGgçæY¾ˆlÞIØjá‹`¾öq}Ç°…ãg#î]ìÚ¶ó__–¡L˜…#ù+ÀÉ1< +endstream +endobj +230 0 obj +[1228 0 R] +endobj +231 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\PÁjÃ0 ½û+tlÅm¶ÃÁPZ +9¬ËöŽ­¤†Æ6ŠsÈßOvKØâñÞO’‡æØx—@~R0-&è·„S˜É t88/vXgҕߌ: +Éæv™Žïƒ¨k_LN‰Xímèp-ä…,’ó¬~íd;ÇxÃ}‚-({ô¡ãY²Ø6eÞ¥eÞ?Å÷ª‚w÷0&Xœ¢6HÚ(ê-—‚úÄ¥zû¯î®®7WMEýÂjnï*£·×‚¸eïC•§ð²ðŒhf"NW.Rbå@Îãóh1D`W~âW€(¬rO +endstream +endobj +232 0 obj +<< +/BaseEncoding /WinAnsiEncoding +/Differences [29 /f_f /f_i /f_l] +/Type /Encoding +>> +endobj +233 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/f_f/f_i/f_l/space/parenleft/parenright/comma/period/colon/A/C/D/F/I/L/M/P/R/S/T/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/y/z/quoteleft/quoteright) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 1229 0 R +/FontName /RRCWNV+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +234 0 obj +<< +/Filter /FlateDecode +/Length 446 +>> +stream +H‰\“Ûjã0†ïõºl/Š‘45C›n!{`³ûŽ­¤†F6Šs‘·ßù5¦5Øú†Ï£q±Ý½íâ¸èâWšú}XôqŒC +—éšú á4FUÕzûeò³?w³*xóþvYÂy“ò^¿ùåeI7ýð2L‡ð¨ŠŸiiŒ'ýðw»ÔÅþ:ÏŸáâ¢KݶzG.ô½›tç ‹¼íi7ðûq¹=ñž{ÆŸÛtãJdúi—¹ëCêâ)(_òÕjÿÎW«Bþ{o¬l;û.)_½qrY:‡»åøÛ=n¿ßã-Çu™c^˜Ÿ…ŸÁ0öÔ[áœ/õxQ~ó’™åM•™æðl„ Ø ÃËH}ƒúFêÔ7âÏ‹òVÜ,Ül-\ƒ¥¾E}+õ-ê;qppp’ïï$ß!ßI¾ËùVØ‚ÝÚ0 XzâÐ'ιîUø,þ¹Ÿní?üÝÚ{ôÊ­}çCô$ßEø.O‚'‰'Á“Ä“àIâIð$ñ$x’x> +endobj +236 0 obj +<< +/BaseFont /EYNXOG+Wingdings-Regular +/DescendantFonts 1230 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1231 0 R +/Type /Font +>> +endobj +237 0 obj +<< +/BaseFont /LZORIS+MyriadPro-SemiboldCond +/Encoding /WinAnsiEncoding +/FirstChar 69 +/FontDescriptor 1232 0 R +/LastChar 84 +/Subtype /Type1 +/ToUnicode 1233 0 R +/Type /Font +/Widths [376 0 0 0 0 0 0 0 0 493 465 0 0 0 0 376] +>> +endobj +238 0 obj +<< +/BaseFont /KIXGUU+MyriadPro-Light +/Encoding 1234 0 R +/FirstChar 31 +/FontDescriptor 1235 0 R +/LastChar 169 +/Subtype /Type1 +/ToUnicode 1236 0 R +/Type /Font +/Widths [542 219 0 0 0 0 0 0 0 0 0 0 0 174 0 174 +351 488 488 488 0 0 0 0 0 0 0 174 0 0 0 0 +0 0 585 0 570 647 466 0 0 0 211 0 0 0 0 638 +0 0 0 505 464 465 626 0 0 0 0 0 0 0 0 0 +0 0 454 552 446 544 485 262 544 536 209 0 0 212 819 536 +532 552 0 295 373 309 531 452 722 0 440 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 677] +>> +endobj +239 0 obj +<< +/BaseFont /LORBIS+MyriadPro-Black +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1237 0 R +/LastChar 122 +/Subtype /Type1 +/ToUnicode 1238 0 R +/Type /Font +/Widths [198 0 0 0 0 0 0 0 0 0 0 0 283 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 710 0 0 0 0 305 0 0 0 0 0 0 +0 0 617 561 0 0 0 0 0 0 0 0 0 0 0 0 +0 548 610 0 610 539 0 596 0 292 0 0 292 871 599 589 +0 0 403 451 383 0 0 0 0 0 486] +>> +endobj +240 0 obj +<< +/BaseFont /LJSWIS+MyriadPro-Regular +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1239 0 R +/LastChar 32 +/Subtype /Type1 +/ToUnicode 1240 0 R +/Type /Font +/Widths [212] +>> +endobj +241 0 obj +<< +/BaseFont /EODGOG+MyriadPro-Semibold +/Encoding /WinAnsiEncoding +/FirstChar 32 +/FontDescriptor 1241 0 R +/LastChar 121 +/Subtype /Type1 +/ToUnicode 1242 0 R +/Type /Font +/Widths [207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +536 536 536 0 0 536 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 509 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 508 585 0 0 516 0 0 0 0 0 0 0 0 0 0 +0 0 356 0 0 569 0 0 0 500] +>> +endobj +242 0 obj +<< +/BaseFont /FKADCE+Wingdings-Regular +/DescendantFonts 1243 0 R +/Encoding /Identity-H +/Subtype /Type0 +/ToUnicode 1244 0 R +/Type /Font +>> +endobj +243 0 obj +<< +/K [265 0 R 266 0 R 267 0 R 272 0 R 276 0 R 1245 0 R 279 0 R 280 0 R 282 0 R 285 0 R 286 0 R 288 0 R 1246 0 R 1247 0 R 301 0 R 1248 0 R +305 0 R 1249 0 R 308 0 R 312 0 R 314 0 R 315 0 R 319 0 R 323 0 R 329 0 R 332 0 R 333 0 R 334 0 R 341 0 R 343 0 R 347 0 R 348 0 R +349 0 R 350 0 R 351 0 R 355 0 R 356 0 R 359 0 R 360 0 R 365 0 R 366 0 R 372 0 R 373 0 R 376 0 R 377 0 R 378 0 R 380 0 R 381 0 R +386 0 R 388 0 R 389 0 R 392 0 R 393 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 405 0 R 406 0 R 410 0 R 416 0 R 418 0 R 419 0 R +421 0 R 426 0 R 428 0 R 429 0 R 434 0 R 435 0 R 438 0 R 439 0 R 443 0 R 444 0 R 448 0 R 450 0 R 454 0 R 457 0 R 462 0 R 467 0 R +473 0 R 474 0 R 475 0 R 480 0 R 486 0 R 492 0 R 496 0 R 501 0 R 508 0 R 509 0 R 511 0 R 513 0 R 514 0 R 1250 0 R 560 0 R 561 0 R +1251 0 R 594 0 R 595 0 R 596 0 R 598 0 R 600 0 R 607 0 R 608 0 R 611 0 R 612 0 R 613 0 R 618 0 R 619 0 R 1252 0 R 660 0 R 661 0 R +663 0 R 666 0 R 667 0 R 692 0 R 693 0 R 697 0 R 701 0 R 705 0 R 708 0 R 1253 0 R 1254 0 R 1255 0 R 1256 0 R 1257 0 R 1258 0 R 1259 0 R +1260 0 R 1261 0 R 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1269 0 R 1270 0 R 1271 0 R 709 0 R 710 0 R 713 0 R 714 0 R +737 0 R 738 0 R 741 0 R 742 0 R 744 0 R 746 0 R 748 0 R 749 0 R 751 0 R 752 0 R 753 0 R 758 0 R 759 0 R 762 0 R 763 0 R 765 0 R +769 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R +1287 0 R 772 0 R 773 0 R 775 0 R 802 0 R 838 0 R 839 0 R 842 0 R 844 0 R 846 0 R 849 0 R 852 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R +1292 0 R 1293 0 R 1294 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1305 0 R 857 0 R 860 0 R +861 0 R 864 0 R 887 0 R 891 0 R 896 0 R 900 0 R 903 0 R 907 0 R 908 0 R 912 0 R 918 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R +927 0 R 1306 0 R 931 0 R 1307 0 R 939 0 R 1308 0 R 946 0 R 1309 0 R 954 0 R 1310 0 R 964 0 R 1311 0 R 969 0 R 1312 0 R 975 0 R 1313 0 R +981 0 R 1314 0 R 987 0 R 989 0 R 990 0 R 992 0 R 993 0 R 996 0 R 997 0 R 1002 0 R 1003 0 R 1005 0 R 1006 0 R 1315 0 R 1012 0 R] +/P 147 0 R +/S /Story +>> +endobj +244 0 obj +<< +/K 346 0 R +/P 147 0 R +/S /Story +>> +endobj +245 0 obj +<< +/K 424 0 R +/P 147 0 R +/S /Story +>> +endobj +246 0 obj +<< +/K 469 0 R +/P 147 0 R +/S /Story +>> +endobj +247 0 obj +<< +/K 489 0 R +/P 147 0 R +/S /Story +>> +endobj +248 0 obj +<< +/K 505 0 R +/P 147 0 R +/S /Story +>> +endobj +249 0 obj +<< +/K 558 0 R +/P 147 0 R +/S /Story +>> +endobj +250 0 obj +<< +/K 1144 0 R +/P 147 0 R +/S /Story +>> +endobj +251 0 obj +<< +/K 1316 0 R +/P 147 0 R +/S /Story +>> +endobj +252 0 obj +<< +/K 606 0 R +/P 147 0 R +/S /Story +>> +endobj +253 0 obj +<< +/K 1317 0 R +/P 147 0 R +/S /Story +>> +endobj +254 0 obj +<< +/K 671 0 R +/P 147 0 R +/S /Story +>> +endobj +255 0 obj +<< +/K 1318 0 R +/P 147 0 R +/S /Story +>> +endobj +256 0 obj +<< +/K 1319 0 R +/P 147 0 R +/S /Story +>> +endobj +257 0 obj +<< +/K 1320 0 R +/P 147 0 R +/S /Story +>> +endobj +258 0 obj +<< +/K 1321 0 R +/P 147 0 R +/S /Story +>> +endobj +259 0 obj +<< +/K 854 0 R +/P 147 0 R +/S /Story +>> +endobj +260 0 obj +<< +/K 1322 0 R +/P 147 0 R +/S /Story +>> +endobj +261 0 obj +<< +/K 906 0 R +/P 147 0 R +/S /Story +>> +endobj +262 0 obj +<< +/K 925 0 R +/P 147 0 R +/S /Story +>> +endobj +263 0 obj +<< +/K [1145 0 R 1146 0 R 1147 0 R 1148 0 R 1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R 1155 0 R 1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1323 0 R +1162 0 R 1163 0 R 1164 0 R 1166 0 R 1167 0 R 1168 0 R 1169 0 R 1170 0 R 1171 0 R 1172 0 R 1173 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1182 0 R +1183 0 R 1185 0 R 1186 0 R 1189 0 R 1324 0 R] +/P 147 0 R +/S /Story +>> +endobj +264 0 obj +<< +/A << +/O /Layout +/LineHeight 56.0 +>> +/K 0 +/P 265 0 R +/Pg 10 0 R +/S /Span +>> +endobj +265 0 obj +<< +/A << +/O /Layout +/LineHeight 24.0 +/SpaceAfter 24.0 +>> +/K [264 0 R 1] +/P 243 0 R +/Pg 10 0 R +/S /Kapitel-Head +>> +endobj +266 0 obj +<< +/C /Pa1 +/K 2 +/P 243 0 R +/Pg 10 0 R +/S /Zwischenhead_1 +>> +endobj +267 0 obj +<< +/C /Pa2 +/K [3 268 0 R 5 6 269 0 R 8 9 270 0 R 11 12 13 271 0 R 15 16 17] +/P 243 0 R +/Pg 10 0 R +/S /Lauftext_1._Abs +>> +endobj +268 0 obj +<< +/ActualText +/K 4 +/P 267 0 R +/Pg 10 0 R +/S /Span +>> +endobj +269 0 obj +<< +/ActualText +/K 7 +/P 267 0 R +/Pg 10 0 R +/S /Span +>> +endobj +270 0 obj +<< +/ActualText +/K 10 +/P 267 0 R +/Pg 10 0 R +/S /Span +>> +endobj +271 0 obj +<< +/ActualText +/K 14 +/P 267 0 R +/Pg 10 0 R +/S /Span +>> +endobj +272 0 obj +<< +/C /Pa3 +/K [18 19 20 273 0 R 22 23 274 0 R 25 26 275 0 R 28 29 30 31 32] +/P 243 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +273 0 obj +<< +/ActualText +/K 21 +/P 272 0 R +/Pg 10 0 R +/S /Span +>> +endobj +274 0 obj +<< +/ActualText +/K 24 +/P 272 0 R +/Pg 10 0 R +/S /Span +>> +endobj +275 0 obj +<< +/ActualText +/K 27 +/P 272 0 R +/Pg 10 0 R +/S /Span +>> +endobj +276 0 obj +<< +/C /Pa3 +/K [33 34 277 0 R 36 37 38 39 278 0 R 41 42 43] +/P 243 0 R +/Pg 10 0 R +/S /Lauftext +>> +endobj +277 0 obj +<< +/ActualText +/K 35 +/P 276 0 R +/Pg 10 0 R +/S /Span +>> +endobj +278 0 obj +<< +/ActualText +/K 40 +/P 276 0 R +/Pg 10 0 R +/S /Span +>> +endobj +279 0 obj +<< +/C /Pa1 +/K 44 +/P 243 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +280 0 obj +<< +/C /Pa2 +/K [45 281 0 R 47 48 49 50] +/P 243 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +281 0 obj +<< +/ActualText +/K 46 +/P 280 0 R +/Pg 11 0 R +/S /Span +>> +endobj +282 0 obj +<< +/C /Pa3 +/K [51 52 53 54 283 0 R 56 284 0 R 58 59] +/P 243 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +283 0 obj +<< +/ActualText +/K 55 +/P 282 0 R +/Pg 11 0 R +/S /Span +>> +endobj +284 0 obj +<< +/ActualText +/K 57 +/P 282 0 R +/Pg 11 0 R +/S /Span +>> +endobj +285 0 obj +<< +/C /Pa1 +/K 60 +/P 243 0 R +/Pg 11 0 R +/S /Zwischenhead_1 +>> +endobj +286 0 obj +<< +/C /Pa2 +/K [61 62 287 0 R 64] +/P 243 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +287 0 obj +<< +/ActualText +/K 63 +/P 286 0 R +/Pg 11 0 R +/S /Span +>> +endobj +288 0 obj +<< +/C /Pa3 +/K [65 66 67 68 69] +/P 243 0 R +/Pg 11 0 R +/S /Lauftext +>> +endobj +289 0 obj +<< +/C /A4 +/K 70 +/P 1325 0 R +/Pg 11 0 R +/S /Span +>> +endobj +290 0 obj +<< +/K [71 291 0 R 73] +/P 1326 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +291 0 obj +<< +/ActualText +/K 72 +/P 290 0 R +/Pg 11 0 R +/S /Span +>> +endobj +292 0 obj +<< +/C /A4 +/K 74 +/P 1327 0 R +/Pg 11 0 R +/S /Span +>> +endobj +293 0 obj +<< +/K [75 294 0 R 77] +/P 1328 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +294 0 obj +<< +/ActualText +/K 76 +/P 293 0 R +/Pg 11 0 R +/S /Span +>> +endobj +295 0 obj +<< +/C /A4 +/K 78 +/P 1329 0 R +/Pg 11 0 R +/S /Span +>> +endobj +296 0 obj +<< +/K 79 +/P 1330 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +297 0 obj +<< +/C /A4 +/K 80 +/P 1331 0 R +/Pg 11 0 R +/S /Span +>> +endobj +298 0 obj +<< +/K 81 +/P 1332 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +299 0 obj +<< +/C /A4 +/K 82 +/P 1333 0 R +/Pg 11 0 R +/S /Span +>> +endobj +300 0 obj +<< +/K 83 +/P 1334 0 R +/Pg 11 0 R +/S /LBody +>> +endobj +301 0 obj +<< +/C /Pa2 +/K [84 302 0 R 86 87 88 89 303 0 R 91 1335 0 R 93] +/P 243 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +302 0 obj +<< +/C /A5 +/K 85 +/P 301 0 R +/Pg 11 0 R +/S /Span +>> +endobj +303 0 obj +<< +/ActualText +/K 90 +/P 301 0 R +/Pg 11 0 R +/S /Span +>> +endobj +304 0 obj +<< +/C /A6 +/K 92 +/P 1336 0 R +/Pg 11 0 R +/S /Span +>> +endobj +305 0 obj +<< +/C /Pa2 +/K [94 306 0 R 96 97 1337 0 R 99] +/P 243 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +306 0 obj +<< +/C /A5 +/K 95 +/P 305 0 R +/Pg 11 0 R +/S /Span +>> +endobj +307 0 obj +<< +/C /A6 +/K 98 +/P 1338 0 R +/Pg 11 0 R +/S /Span +>> +endobj +308 0 obj +<< +/C /Pa2 +/K [100 309 0 R 102 103 104 1339 0 R 106] +/P 243 0 R +/Pg 11 0 R +/S /Lauftext_1._Abs +>> +endobj +309 0 obj +<< +/C /A5 +/K 101 +/P 308 0 R +/Pg 11 0 R +/S /Span +>> +endobj +310 0 obj +<< +/C /A6 +/K 105 +/P 1340 0 R +/Pg 11 0 R +/S /Span +>> +endobj +311 0 obj +<< +/C /A5 +/K 107 +/P 312 0 R +/Pg 12 0 R +/S /Span +>> +endobj +312 0 obj +<< +/C /Pa2 +/K [311 0 R 108 313 0 R 110 111] +/P 243 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +313 0 obj +<< +/ActualText +/K 109 +/P 312 0 R +/Pg 12 0 R +/S /Span +>> +endobj +314 0 obj +<< +/C /Pa1 +/K 112 +/P 243 0 R +/Pg 12 0 R +/S /Zwischenhead_1 +>> +endobj +315 0 obj +<< +/C /Pa2 +/K [113 316 0 R 115 317 0 R 117 118 119 120 121 1341 0 R 123] +/P 243 0 R +/Pg 12 0 R +/S /Lauftext_1._Abs +>> +endobj +316 0 obj +<< +/ActualText +/K 114 +/P 315 0 R +/Pg 12 0 R +/S /Span +>> +endobj +317 0 obj +<< +/ActualText +/K 116 +/P 315 0 R +/Pg 12 0 R +/S /Span +>> +endobj +318 0 obj +<< +/C /A6 +/K 122 +/P 1342 0 R +/Pg 12 0 R +/S /Span +>> +endobj +319 0 obj +<< +/C /Pa3 +/K [124 125 126 1343 0 R 128 321 0 R 130 131 132 133 134 1344 0 R 136] +/P 243 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +320 0 obj +<< +/C /A6 +/K 127 +/P 1345 0 R +/Pg 12 0 R +/S /Span +>> +endobj +321 0 obj +<< +/ActualText +/K 129 +/P 319 0 R +/Pg 12 0 R +/S /Span +>> +endobj +322 0 obj +<< +/C /A6 +/K 135 +/P 1346 0 R +/Pg 12 0 R +/S /Span +>> +endobj +323 0 obj +<< +/C /Pa3 +/K [137 324 0 R 139 325 0 R 141 1347 0 R 143 144 145 146 147 327 0 R 149 328 0 R 151 152] +/P 243 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +324 0 obj +<< +/ActualText +/K 138 +/P 323 0 R +/Pg 12 0 R +/S /Span +>> +endobj +325 0 obj +<< +/ActualText +/K 140 +/P 323 0 R +/Pg 12 0 R +/S /Span +>> +endobj +326 0 obj +<< +/C /A6 +/K 142 +/P 1348 0 R +/Pg 12 0 R +/S /Span +>> +endobj +327 0 obj +<< +/ActualText +/K 148 +/P 323 0 R +/Pg 12 0 R +/S /Span +>> +endobj +328 0 obj +<< +/ActualText +/K 150 +/P 323 0 R +/Pg 12 0 R +/S /Span +>> +endobj +329 0 obj +<< +/C /Pa3 +/K [153 154 155 156 157 1349 0 R 159 331 0 R 161 162 163 164 165 166] +/P 243 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +330 0 obj +<< +/C /A6 +/K 158 +/P 1350 0 R +/Pg 12 0 R +/S /Span +>> +endobj +331 0 obj +<< +/ActualText +/K 160 +/P 329 0 R +/Pg 12 0 R +/S /Span +>> +endobj +332 0 obj +<< +/C /Pa3 +/K [167 168 169 170 171 << +/MCID 172 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 173 +/Pg 13 0 R +/Type /MCR +>> << +/MCID 174 +/Pg 13 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 12 0 R +/S /Lauftext +>> +endobj +333 0 obj +<< +/C /Pa3 +/K [175 176 177 178] +/P 243 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +334 0 obj +<< +/C /Pa3 +/K [179 180 335 0 R 182 336 0 R 184 185 337 0 R 187 188 189 190 191 192 193 338 0 R +195 196 197 339 0 R 199 200 201 202 203 340 0 R 205] +/P 243 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +335 0 obj +<< +/ActualText +/K 181 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +336 0 obj +<< +/ActualText +/K 183 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +337 0 obj +<< +/ActualText +/K 186 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +338 0 obj +<< +/ActualText +/K 194 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +339 0 obj +<< +/ActualText +/K 198 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +340 0 obj +<< +/ActualText +/K 204 +/P 334 0 R +/Pg 13 0 R +/S /Span +>> +endobj +341 0 obj +<< +/C /Pa3 +/K [206 342 0 R 208 209 210] +/P 243 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +342 0 obj +<< +/ActualText +/K 207 +/P 341 0 R +/Pg 13 0 R +/S /Span +>> +endobj +343 0 obj +<< +/C /Pa3 +/K [211 212 213 214 344 0 R 216 217 218 345 0 R 220] +/P 243 0 R +/Pg 13 0 R +/S /Lauftext +>> +endobj +344 0 obj +<< +/ActualText +/K 215 +/P 343 0 R +/Pg 13 0 R +/S /Span +>> +endobj +345 0 obj +<< +/ActualText +/K 219 +/P 343 0 R +/Pg 13 0 R +/S /Span +>> +endobj +346 0 obj +<< +/C /Pa6 +/K [221 222 223] +/P 244 0 R +/Pg 13 0 R +/S /Einklinker-Text__rec +>> +endobj +347 0 obj +<< +/C /Pa1 +/K 224 +/P 243 0 R +/Pg 14 0 R +/S /Zwischenhead_1 +>> +endobj +348 0 obj +<< +/C /Pa2 +/K [225 226 227] +/P 243 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +349 0 obj +<< +/C /Pa7 +/K 228 +/P 243 0 R +/Pg 14 0 R +/S /Zwischenhead_2 +>> +endobj +350 0 obj +<< +/C /Pa8 +/K 229 +/P 243 0 R +/Pg 14 0 R +/S /Zwischenhead_3 +>> +endobj +351 0 obj +<< +/C /Pa2 +/K [230 231 232 233 352 0 R 235 236 237 353 0 R 239 240 354 0 R 242 243 244 245 +246 247 248 249 250] +/P 243 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +352 0 obj +<< +/ActualText +/K 234 +/P 351 0 R +/Pg 14 0 R +/S /Span +>> +endobj +353 0 obj +<< +/ActualText +/K 238 +/P 351 0 R +/Pg 14 0 R +/S /Span +>> +endobj +354 0 obj +<< +/ActualText +/K 241 +/P 351 0 R +/Pg 14 0 R +/S /Span +>> +endobj +355 0 obj +<< +/C /Pa8 +/K 251 +/P 243 0 R +/Pg 14 0 R +/S /Zwischenhead_3 +>> +endobj +356 0 obj +<< +/C /Pa2 +/K [252 253 254 255 256 257 357 0 R 259 358 0 R 261 262 263] +/P 243 0 R +/Pg 14 0 R +/S /Lauftext_1._Abs +>> +endobj +357 0 obj +<< +/ActualText +/K 258 +/P 356 0 R +/Pg 14 0 R +/S /Span +>> +endobj +358 0 obj +<< +/ActualText +/K 260 +/P 356 0 R +/Pg 14 0 R +/S /Span +>> +endobj +359 0 obj +<< +/C /Pa7 +/K 264 +/P 243 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +360 0 obj +<< +/C /Pa2 +/K [265 361 0 R 267 268 362 0 R 270 363 0 R 272 273 364 0 R 275 276 277 278 279 280 +281] +/P 243 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +361 0 obj +<< +/ActualText +/K 266 +/P 360 0 R +/Pg 15 0 R +/S /Span +>> +endobj +362 0 obj +<< +/ActualText +/K 269 +/P 360 0 R +/Pg 15 0 R +/S /Span +>> +endobj +363 0 obj +<< +/ActualText +/K 271 +/P 360 0 R +/Pg 15 0 R +/S /Span +>> +endobj +364 0 obj +<< +/ActualText +/K 274 +/P 360 0 R +/Pg 15 0 R +/S /Span +>> +endobj +365 0 obj +<< +/C /Pa7 +/K 282 +/P 243 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +366 0 obj +<< +/C /Pa2 +/K [283 284 285 286 287 1351 0 R 289 368 0 R 291 369 0 R 293 370 0 R 295 371 0 R 297 298 +299 300] +/P 243 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +367 0 obj +<< +/C /A6 +/K 288 +/P 1352 0 R +/Pg 15 0 R +/S /Span +>> +endobj +368 0 obj +<< +/ActualText +/K 290 +/P 366 0 R +/Pg 15 0 R +/S /Span +>> +endobj +369 0 obj +<< +/ActualText +/K 292 +/P 366 0 R +/Pg 15 0 R +/S /Span +>> +endobj +370 0 obj +<< +/ActualText +/K 294 +/P 366 0 R +/Pg 15 0 R +/S /Span +>> +endobj +371 0 obj +<< +/ActualText +/K 296 +/P 366 0 R +/Pg 15 0 R +/S /Span +>> +endobj +372 0 obj +<< +/C /Pa7 +/K 301 +/P 243 0 R +/Pg 15 0 R +/S /Zwischenhead_2 +>> +endobj +373 0 obj +<< +/C /Pa2 +/K [302 303 304 305 306 307 308 374 0 R 310 311 375 0 R 313 314] +/P 243 0 R +/Pg 15 0 R +/S /Lauftext_1._Abs +>> +endobj +374 0 obj +<< +/ActualText +/K 309 +/P 373 0 R +/Pg 15 0 R +/S /Span +>> +endobj +375 0 obj +<< +/ActualText +/K 312 +/P 373 0 R +/Pg 15 0 R +/S /Span +>> +endobj +376 0 obj +<< +/C /Pa7 +/K 315 +/P 243 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +377 0 obj +<< +/C /Pa8 +/K 316 +/P 243 0 R +/Pg 16 0 R +/S /Zwischenhead_3 +>> +endobj +378 0 obj +<< +/C /Pa2 +/K [317 318 319 320 321 322 323 324 325 326 327 379 0 R 329 330 331 332] +/P 243 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +379 0 obj +<< +/ActualText +/K 328 +/P 378 0 R +/Pg 16 0 R +/S /Span +>> +endobj +380 0 obj +<< +/C /Pa7 +/K 333 +/P 243 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +381 0 obj +<< +/C /Pa2 +/K [334 382 0 R 336 383 0 R 338 339 384 0 R 341 342 343 344 385 0 R 346] +/P 243 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +382 0 obj +<< +/ActualText +/K 335 +/P 381 0 R +/Pg 16 0 R +/S /Span +>> +endobj +383 0 obj +<< +/ActualText +/K 337 +/P 381 0 R +/Pg 16 0 R +/S /Span +>> +endobj +384 0 obj +<< +/ActualText +/K 340 +/P 381 0 R +/Pg 16 0 R +/S /Span +>> +endobj +385 0 obj +<< +/ActualText +/K 345 +/P 381 0 R +/Pg 16 0 R +/S /Span +>> +endobj +386 0 obj +<< +/C /Pa3 +/K [347 348 349 387 0 R 351 352 353 354] +/P 243 0 R +/Pg 16 0 R +/S /Lauftext +>> +endobj +387 0 obj +<< +/ActualText +/K 350 +/P 386 0 R +/Pg 16 0 R +/S /Span +>> +endobj +388 0 obj +<< +/C /Pa7 +/K 355 +/P 243 0 R +/Pg 16 0 R +/S /Zwischenhead_2 +>> +endobj +389 0 obj +<< +/C /Pa2 +/K [356 357 390 0 R 359 360 391 0 R << +/MCID 362 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 363 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 364 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 365 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 366 +/Pg 17 0 R +/Type /MCR +>> << +/MCID 367 +/Pg 17 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 16 0 R +/S /Lauftext_1._Abs +>> +endobj +390 0 obj +<< +/ActualText +/K 358 +/P 389 0 R +/Pg 16 0 R +/S /Span +>> +endobj +391 0 obj +<< +/ActualText +/K 361 +/P 389 0 R +/Pg 16 0 R +/S /Span +>> +endobj +392 0 obj +<< +/C /Pa1 +/K 368 +/P 243 0 R +/Pg 17 0 R +/S /Zwischenhead_1 +>> +endobj +393 0 obj +<< +/C /Pa2 +/K [369 394 0 R 371 395 0 R 373 374 396 0 R 376 397 0 R 378 379 380 381 382 383] +/P 243 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +394 0 obj +<< +/ActualText +/K 370 +/P 393 0 R +/Pg 17 0 R +/S /Span +>> +endobj +395 0 obj +<< +/ActualText +/K 372 +/P 393 0 R +/Pg 17 0 R +/S /Span +>> +endobj +396 0 obj +<< +/ActualText +/K 375 +/P 393 0 R +/Pg 17 0 R +/S /Span +>> +endobj +397 0 obj +<< +/ActualText +/K 377 +/P 393 0 R +/Pg 17 0 R +/S /Span +>> +endobj +398 0 obj +<< +/C /Pa3 +/K [384 385 386 387] +/P 243 0 R +/Pg 17 0 R +/S /Lauftext +>> +endobj +399 0 obj +<< +/C /Pa7 +/K 388 +/P 243 0 R +/Pg 17 0 R +/S /Zwischenhead_2 +>> +endobj +400 0 obj +<< +/C /Pa2 +/K [389 390] +/P 243 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +401 0 obj +<< +/C /Pa8 +/K 391 +/P 243 0 R +/Pg 17 0 R +/S /Zwischenhead_3 +>> +endobj +402 0 obj +<< +/C /Pa2 +/K [392 393 403 0 R 395 396 397 398 399 400 401 402 403 404 0 R 405 406] +/P 243 0 R +/Pg 17 0 R +/S /Lauftext_1._Abs +>> +endobj +403 0 obj +<< +/ActualText +/K 394 +/P 402 0 R +/Pg 17 0 R +/S /Span +>> +endobj +404 0 obj +<< +/ActualText +/K 404 +/P 402 0 R +/Pg 17 0 R +/S /Span +>> +endobj +405 0 obj +<< +/C /Pa8 +/K 407 +/P 243 0 R +/Pg 18 0 R +/S /Zwischenhead_3 +>> +endobj +406 0 obj +<< +/C /Pa2 +/K [408 407 0 R 410 411 408 0 R 413 414 415 416 1353 0 R 418 419 420 421] +/P 243 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +407 0 obj +<< +/ActualText +/K 409 +/P 406 0 R +/Pg 18 0 R +/S /Span +>> +endobj +408 0 obj +<< +/ActualText +/K 412 +/P 406 0 R +/Pg 18 0 R +/S /Span +>> +endobj +409 0 obj +<< +/C /A6 +/K 417 +/P 1354 0 R +/Pg 18 0 R +/S /Span +>> +endobj +410 0 obj +<< +/C /Pa3 +/K [422 411 0 R 424 425 412 0 R 427 428 429 430 413 0 R 432 414 0 R 434 415 0 R 436 437] +/P 243 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +411 0 obj +<< +/ActualText +/K 423 +/P 410 0 R +/Pg 18 0 R +/S /Span +>> +endobj +412 0 obj +<< +/ActualText +/K 426 +/P 410 0 R +/Pg 18 0 R +/S /Span +>> +endobj +413 0 obj +<< +/ActualText +/K 431 +/P 410 0 R +/Pg 18 0 R +/S /Span +>> +endobj +414 0 obj +<< +/ActualText +/K 433 +/P 410 0 R +/Pg 18 0 R +/S /Span +>> +endobj +415 0 obj +<< +/ActualText +/K 435 +/P 410 0 R +/Pg 18 0 R +/S /Span +>> +endobj +416 0 obj +<< +/C /Pa3 +/K [438 439 417 0 R 441 442 443 444 445 446 447] +/P 243 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +417 0 obj +<< +/ActualText +/K 440 +/P 416 0 R +/Pg 18 0 R +/S /Span +>> +endobj +418 0 obj +<< +/C /Pa8 +/K 448 +/P 243 0 R +/Pg 18 0 R +/S /Zwischenhead_3 +>> +endobj +419 0 obj +<< +/C /Pa2 +/K [449 450 451 452 453 420 0 R 455 456] +/P 243 0 R +/Pg 18 0 R +/S /Lauftext_1._Abs +>> +endobj +420 0 obj +<< +/ActualText +/K 454 +/P 419 0 R +/Pg 18 0 R +/S /Span +>> +endobj +421 0 obj +<< +/C /Pa3 +/K [457 422 0 R 459 460 461 462 1355 0 R 464] +/P 243 0 R +/Pg 18 0 R +/S /Lauftext +>> +endobj +422 0 obj +<< +/ActualText +/K 458 +/P 421 0 R +/Pg 18 0 R +/S /Span +>> +endobj +423 0 obj +<< +/C /A6 +/K 463 +/P 1356 0 R +/Pg 18 0 R +/S /Span +>> +endobj +424 0 obj +<< +/C /Pa6 +/K [465 425 0 R 467 468 469] +/P 245 0 R +/Pg 18 0 R +/S /Einklinker-Text__rec +>> +endobj +425 0 obj +<< +/ActualText +/K 466 +/P 424 0 R +/Pg 18 0 R +/S /Span +>> +endobj +426 0 obj +<< +/C /Pa3 +/K [470 471 472 473 427 0 R 475] +/P 243 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +427 0 obj +<< +/ActualText +/K 474 +/P 426 0 R +/Pg 19 0 R +/S /Span +>> +endobj +428 0 obj +<< +/C /Pa7 +/K 476 +/P 243 0 R +/Pg 19 0 R +/S /Zwischenhead_2 +>> +endobj +429 0 obj +<< +/C /Pa2 +/K [477 478 479 430 0 R 481 482 431 0 R 484 485 486 487 432 0 R 489 433 0 R 491] +/P 243 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +430 0 obj +<< +/ActualText +/K 480 +/P 429 0 R +/Pg 19 0 R +/S /Span +>> +endobj +431 0 obj +<< +/ActualText +/K 483 +/P 429 0 R +/Pg 19 0 R +/S /Span +>> +endobj +432 0 obj +<< +/ActualText +/K 488 +/P 429 0 R +/Pg 19 0 R +/S /Span +>> +endobj +433 0 obj +<< +/ActualText +/K 490 +/P 429 0 R +/Pg 19 0 R +/S /Span +>> +endobj +434 0 obj +<< +/C /Pa3 +/K [492 493 494 495 496 497 498 499 500 501] +/P 243 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +435 0 obj +<< +/C /Pa3 +/K [502 503 436 0 R 505 506 507 508 509 437 0 R 511] +/P 243 0 R +/Pg 19 0 R +/S /Lauftext +>> +endobj +436 0 obj +<< +/ActualText +/K 504 +/P 435 0 R +/Pg 19 0 R +/S /Span +>> +endobj +437 0 obj +<< +/ActualText +/K 510 +/P 435 0 R +/Pg 19 0 R +/S /Span +>> +endobj +438 0 obj +<< +/C /Pa8 +/K 512 +/P 243 0 R +/Pg 19 0 R +/S /Zwischenhead_3 +>> +endobj +439 0 obj +<< +/C /Pa2 +/K [513 514 440 0 R 516 517 518 519 << +/MCID 520 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 521 +/Pg 20 0 R +/Type /MCR +>> 441 0 R << +/MCID 523 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 524 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 525 +/Pg 20 0 R +/Type /MCR +>> 442 0 R << +/MCID 527 +/Pg 20 0 R +/Type /MCR +>> << +/MCID 528 +/Pg 20 0 R +/Type /MCR +>> +<< +/MCID 529 +/Pg 20 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 19 0 R +/S /Lauftext_1._Abs +>> +endobj +440 0 obj +<< +/ActualText +/K 515 +/P 439 0 R +/Pg 19 0 R +/S /Span +>> +endobj +441 0 obj +<< +/ActualText +/K 522 +/P 439 0 R +/Pg 20 0 R +/S /Span +>> +endobj +442 0 obj +<< +/ActualText +/K 526 +/P 439 0 R +/Pg 20 0 R +/S /Span +>> +endobj +443 0 obj +<< +/C /Pa7 +/K [530 531] +/P 243 0 R +/Pg 20 0 R +/S /Zwischenhead_2 +>> +endobj +444 0 obj +<< +/C /Pa2 +/K [532 445 0 R 534 446 0 R 536 537 447 0 R 539 540 541 542 543 544] +/P 243 0 R +/Pg 20 0 R +/S /Lauftext_1._Abs +>> +endobj +445 0 obj +<< +/ActualText +/K 533 +/P 444 0 R +/Pg 20 0 R +/S /Span +>> +endobj +446 0 obj +<< +/ActualText +/K 535 +/P 444 0 R +/Pg 20 0 R +/S /Span +>> +endobj +447 0 obj +<< +/ActualText +/K 538 +/P 444 0 R +/Pg 20 0 R +/S /Span +>> +endobj +448 0 obj +<< +/C /Pa3 +/K [545 546 547 548 549 550 449 0 R 552 553] +/P 243 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +449 0 obj +<< +/ActualText +/K 551 +/P 448 0 R +/Pg 20 0 R +/S /Span +>> +endobj +450 0 obj +<< +/C /Pa3 +/K [554 555 556 451 0 R 558 452 0 R 560 561 562 453 0 R 564 565] +/P 243 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +451 0 obj +<< +/ActualText +/K 557 +/P 450 0 R +/Pg 20 0 R +/S /Span +>> +endobj +452 0 obj +<< +/ActualText +/K 559 +/P 450 0 R +/Pg 20 0 R +/S /Span +>> +endobj +453 0 obj +<< +/ActualText +/K 563 +/P 450 0 R +/Pg 20 0 R +/S /Span +>> +endobj +454 0 obj +<< +/C /Pa3 +/K [566 567 568 569 455 0 R 571 456 0 R 573 << +/MCID 574 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 575 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 576 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 577 +/Pg 21 0 R +/Type /MCR +>> << +/MCID 578 +/Pg 21 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 20 0 R +/S /Lauftext +>> +endobj +455 0 obj +<< +/ActualText +/K 570 +/P 454 0 R +/Pg 20 0 R +/S /Span +>> +endobj +456 0 obj +<< +/ActualText +/K 572 +/P 454 0 R +/Pg 20 0 R +/S /Span +>> +endobj +457 0 obj +<< +/C /Pa3 +/K [579 580 581 582 583 458 0 R 585 586 587 588 459 0 R 590 460 0 R 592 593 461 0 R +595 596 597 598 599 600 601 602 603] +/P 243 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +458 0 obj +<< +/ActualText +/K 584 +/P 457 0 R +/Pg 21 0 R +/S /Span +>> +endobj +459 0 obj +<< +/ActualText +/K 589 +/P 457 0 R +/Pg 21 0 R +/S /Span +>> +endobj +460 0 obj +<< +/ActualText +/K 591 +/P 457 0 R +/Pg 21 0 R +/S /Span +>> +endobj +461 0 obj +<< +/ActualText +/K 594 +/P 457 0 R +/Pg 21 0 R +/S /Span +>> +endobj +462 0 obj +<< +/C /Pa3 +/K [604 463 0 R 606 607 464 0 R 609 610 611 612 613 614 465 0 R 616 617 466 0 R 619] +/P 243 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +463 0 obj +<< +/ActualText +/K 605 +/P 462 0 R +/Pg 21 0 R +/S /Span +>> +endobj +464 0 obj +<< +/ActualText +/K 608 +/P 462 0 R +/Pg 21 0 R +/S /Span +>> +endobj +465 0 obj +<< +/ActualText +/K 615 +/P 462 0 R +/Pg 21 0 R +/S /Span +>> +endobj +466 0 obj +<< +/ActualText +/K 618 +/P 462 0 R +/Pg 21 0 R +/S /Span +>> +endobj +467 0 obj +<< +/C /Pa3 +/K [620 621 622 623 468 0 R 625 626 << +/MCID 634 +/Pg 22 0 R +/Type /MCR +>> 471 0 R << +/MCID 636 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 637 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 638 +/Pg 22 0 R +/Type /MCR +>> 472 0 R << +/MCID 640 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 641 +/Pg 22 0 R +/Type /MCR +>> << +/MCID 642 +/Pg 22 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 21 0 R +/S /Lauftext +>> +endobj +468 0 obj +<< +/ActualText +/K 624 +/P 467 0 R +/Pg 21 0 R +/S /Span +>> +endobj +469 0 obj +<< +/C /Pa6 +/K [627 628 629 630 470 0 R 632 633] +/P 246 0 R +/Pg 21 0 R +/S /Einklinker-Text__rec +>> +endobj +470 0 obj +<< +/ActualText +/K 631 +/P 469 0 R +/Pg 21 0 R +/S /Span +>> +endobj +471 0 obj +<< +/ActualText +/K 635 +/P 467 0 R +/Pg 22 0 R +/S /Span +>> +endobj +472 0 obj +<< +/ActualText +/K 639 +/P 467 0 R +/Pg 22 0 R +/S /Span +>> +endobj +473 0 obj +<< +/C /Pa7 +/K 643 +/P 243 0 R +/Pg 22 0 R +/S /Zwischenhead_2 +>> +endobj +474 0 obj +<< +/C /Pa2 +/K [644 645 646 647] +/P 243 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +475 0 obj +<< +/C /Pa3 +/K [648 649 650 476 0 R 652 477 0 R 654 478 0 R 656 1357 0 R 658 659 660] +/P 243 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +476 0 obj +<< +/ActualText +/K 651 +/P 475 0 R +/Pg 22 0 R +/S /Span +>> +endobj +477 0 obj +<< +/ActualText +/K 653 +/P 475 0 R +/Pg 22 0 R +/S /Span +>> +endobj +478 0 obj +<< +/ActualText +/K 655 +/P 475 0 R +/Pg 22 0 R +/S /Span +>> +endobj +479 0 obj +<< +/C /A6 +/K 657 +/P 1358 0 R +/Pg 22 0 R +/S /Span +>> +endobj +480 0 obj +<< +/C /Pa2 +/K [661 481 0 R 663 664 665 666 667 668 669 482 0 R 671 672 483 0 R 674 675 676 +484 0 R 678 485 0 R 680 681] +/P 243 0 R +/Pg 22 0 R +/S /Lauftext_1._Abs +>> +endobj +481 0 obj +<< +/ActualText +/K 662 +/P 480 0 R +/Pg 22 0 R +/S /Span +>> +endobj +482 0 obj +<< +/ActualText +/K 670 +/P 480 0 R +/Pg 22 0 R +/S /Span +>> +endobj +483 0 obj +<< +/ActualText +/K 673 +/P 480 0 R +/Pg 22 0 R +/S /Span +>> +endobj +484 0 obj +<< +/ActualText +/K 677 +/P 480 0 R +/Pg 22 0 R +/S /Span +>> +endobj +485 0 obj +<< +/ActualText +/K 679 +/P 480 0 R +/Pg 22 0 R +/S /Span +>> +endobj +486 0 obj +<< +/C /Pa3 +/K [682 487 0 R 684 685 686 1359 0 R 688 689 << +/MCID 697 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 698 +/Pg 23 0 R +/Type /MCR +>> << +/MCID 699 +/Pg 23 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 22 0 R +/S /Lauftext +>> +endobj +487 0 obj +<< +/ActualText +/K 683 +/P 486 0 R +/Pg 22 0 R +/S /Span +>> +endobj +488 0 obj +<< +/C /A6 +/K 687 +/P 1360 0 R +/Pg 22 0 R +/S /Span +>> +endobj +489 0 obj +<< +/C /Pa6 +/K [690 691 490 0 R 693 491 0 R 695 696] +/P 247 0 R +/Pg 22 0 R +/S /Einklinker-Text__rec +>> +endobj +490 0 obj +<< +/ActualText +/K 692 +/P 489 0 R +/Pg 22 0 R +/S /Span +>> +endobj +491 0 obj +<< +/ActualText +/K 694 +/P 489 0 R +/Pg 22 0 R +/S /Span +>> +endobj +492 0 obj +<< +/C /Pa3 +/K [700 701 702 493 0 R 704 705 706 707 494 0 R 709 710 711 1361 0 R 713 714 715] +/P 243 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +493 0 obj +<< +/ActualText +/K 703 +/P 492 0 R +/Pg 23 0 R +/S /Span +>> +endobj +494 0 obj +<< +/ActualText +/K 708 +/P 492 0 R +/Pg 23 0 R +/S /Span +>> +endobj +495 0 obj +<< +/C /A6 +/K 712 +/P 1362 0 R +/Pg 23 0 R +/S /Span +>> +endobj +496 0 obj +<< +/C /Pa3 +/K [716 497 0 R 718 498 0 R 720 721 722 723 499 0 R 725 726 727 728 729 730 500 0 R +732] +/P 243 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +497 0 obj +<< +/ActualText +/K 717 +/P 496 0 R +/Pg 23 0 R +/S /Span +>> +endobj +498 0 obj +<< +/ActualText +/K 719 +/P 496 0 R +/Pg 23 0 R +/S /Span +>> +endobj +499 0 obj +<< +/ActualText +/K 724 +/P 496 0 R +/Pg 23 0 R +/S /Span +>> +endobj +500 0 obj +<< +/ActualText +/K 731 +/P 496 0 R +/Pg 23 0 R +/S /Span +>> +endobj +501 0 obj +<< +/C /Pa3 +/K [733 734 735 736 502 0 R 738 739 740 741 503 0 R 743 744 745 504 0 R 747] +/P 243 0 R +/Pg 23 0 R +/S /Lauftext +>> +endobj +502 0 obj +<< +/ActualText +/K 737 +/P 501 0 R +/Pg 23 0 R +/S /Span +>> +endobj +503 0 obj +<< +/ActualText +/K 742 +/P 501 0 R +/Pg 23 0 R +/S /Span +>> +endobj +504 0 obj +<< +/ActualText +/K 746 +/P 501 0 R +/Pg 23 0 R +/S /Span +>> +endobj +505 0 obj +<< +/C /Pa6 +/K [748 506 0 R 750 507 0 R 752] +/P 248 0 R +/Pg 23 0 R +/S /Einklinker-Text__rec +>> +endobj +506 0 obj +<< +/ActualText +/K 749 +/P 505 0 R +/Pg 23 0 R +/S /Span +>> +endobj +507 0 obj +<< +/ActualText +/K 751 +/P 505 0 R +/Pg 23 0 R +/S /Span +>> +endobj +508 0 obj +<< +/C /Pa1 +/K 753 +/P 243 0 R +/Pg 24 0 R +/S /Zwischenhead_1 +>> +endobj +509 0 obj +<< +/C /Pa2 +/K [754 510 0 R 756 757 758 759 760 761 762 763] +/P 243 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +510 0 obj +<< +/ActualText +/K 755 +/P 509 0 R +/Pg 24 0 R +/S /Span +>> +endobj +511 0 obj +<< +/C /Pa3 +/K [764 512 0 R 766 767] +/P 243 0 R +/Pg 24 0 R +/S /Lauftext +>> +endobj +512 0 obj +<< +/ActualText +/K 765 +/P 511 0 R +/Pg 24 0 R +/S /Span +>> +endobj +513 0 obj +<< +/C /Pa7 +/K 768 +/P 243 0 R +/Pg 24 0 R +/S /Zwischenhead_2 +>> +endobj +514 0 obj +<< +/C /Pa2 +/K [769 770] +/P 243 0 R +/Pg 24 0 R +/S /Lauftext_1._Abs +>> +endobj +515 0 obj +<< +/C /A4 +/K 771 +/P 1363 0 R +/Pg 24 0 R +/S /Span +>> +endobj +516 0 obj +<< +/C /A4 +/K 772 +/P 1363 0 R +/Pg 24 0 R +/S /Span +>> +endobj +517 0 obj +<< +/C /A5 +/K 773 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +518 0 obj +<< +/K [517 0 R 774 519 0 R 776 777 778 779 520 0 R 781 782 521 0 R 784 785 786 787 522 0 R +789 790 791 523 0 R 524 0 R 794 525 0 R 796 526 0 R 798 799] +/P 1364 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +519 0 obj +<< +/ActualText +/K 775 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +520 0 obj +<< +/ActualText +/K 780 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +521 0 obj +<< +/ActualText +/K 783 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +522 0 obj +<< +/ActualText +/K 788 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +523 0 obj +<< +/ActualText +/K 792 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +524 0 obj +<< +/ActualText +/K 793 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +525 0 obj +<< +/ActualText +/K 795 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +526 0 obj +<< +/ActualText +/K 797 +/P 518 0 R +/Pg 24 0 R +/S /Span +>> +endobj +527 0 obj +<< +/C /A4 +/K 800 +/P 1365 0 R +/Pg 24 0 R +/S /Span +>> +endobj +528 0 obj +<< +/C /A4 +/K 801 +/P 1365 0 R +/Pg 24 0 R +/S /Span +>> +endobj +529 0 obj +<< +/C /A5 +/K 802 +/P 530 0 R +/Pg 24 0 R +/S /Span +>> +endobj +530 0 obj +<< +/K [529 0 R 803 804 805 531 0 R 807 532 0 R 809 << +/MCID 810 +/Pg 25 0 R +/Type /MCR +>> 533 0 R << +/MCID 812 +/Pg 25 0 R +/Type /MCR +>> 534 0 R << +/MCID 814 +/Pg 25 0 R +/Type /MCR +>> 535 0 R << +/MCID 816 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 817 +/Pg 25 0 R +/Type /MCR +>> +<< +/MCID 818 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 819 +/Pg 25 0 R +/Type /MCR +>> 536 0 R << +/MCID 821 +/Pg 25 0 R +/Type /MCR +>> 537 0 R << +/MCID 823 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 824 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 825 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 826 +/Pg 25 0 R +/Type /MCR +>> 1366 0 R << +/MCID 828 +/Pg 25 0 R +/Type /MCR +>> 539 0 R 540 0 R << +/MCID 831 +/Pg 25 0 R +/Type /MCR +>> 541 0 R << +/MCID 833 +/Pg 25 0 R +/Type /MCR +>> +542 0 R << +/MCID 835 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 836 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 837 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 838 +/Pg 25 0 R +/Type /MCR +>> << +/MCID 839 +/Pg 25 0 R +/Type /MCR +>>] +/P 1367 0 R +/Pg 24 0 R +/S /LBody +>> +endobj +531 0 obj +<< +/ActualText +/K 806 +/P 530 0 R +/Pg 24 0 R +/S /Span +>> +endobj +532 0 obj +<< +/ActualText +/K 808 +/P 530 0 R +/Pg 24 0 R +/S /Span +>> +endobj +533 0 obj +<< +/ActualText +/K 811 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +534 0 obj +<< +/ActualText +/K 813 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +535 0 obj +<< +/ActualText +/K 815 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +536 0 obj +<< +/ActualText +/K 820 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +537 0 obj +<< +/ActualText +/K 822 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +538 0 obj +<< +/C /A6 +/K 827 +/P 1368 0 R +/Pg 25 0 R +/S /Span +>> +endobj +539 0 obj +<< +/ActualText +/K 829 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +540 0 obj +<< +/ActualText +/K 830 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +541 0 obj +<< +/ActualText +/K 832 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +542 0 obj +<< +/ActualText +/K 834 +/P 530 0 R +/Pg 25 0 R +/S /Span +>> +endobj +543 0 obj +<< +/C /A4 +/K 840 +/P 1369 0 R +/Pg 25 0 R +/S /Span +>> +endobj +544 0 obj +<< +/C /A4 +/K 841 +/P 1369 0 R +/Pg 25 0 R +/S /Span +>> +endobj +545 0 obj +<< +/C /A5 +/K 842 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +546 0 obj +<< +/K [545 0 R 843 844 845 547 0 R 847 548 0 R 849 549 0 R 851 550 0 R 853 854 855 551 0 R 857 +552 0 R 859 860 861 862 863 864 865 866 867 868 553 0 R 554 0 R 871 872 555 0 R +874 556 0 R 876 877 557 0 R 879 880 881] +/P 1370 0 R +/Pg 25 0 R +/S /LBody +>> +endobj +547 0 obj +<< +/ActualText +/K 846 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +548 0 obj +<< +/ActualText +/K 848 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +549 0 obj +<< +/ActualText +/K 850 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +550 0 obj +<< +/ActualText +/K 852 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +551 0 obj +<< +/ActualText +/K 856 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +552 0 obj +<< +/ActualText +/K 858 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +553 0 obj +<< +/ActualText +/K 869 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +554 0 obj +<< +/ActualText +/K 870 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +555 0 obj +<< +/ActualText +/K 873 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +556 0 obj +<< +/ActualText +/K 875 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +557 0 obj +<< +/ActualText +/K 878 +/P 546 0 R +/Pg 25 0 R +/S /Span +>> +endobj +558 0 obj +<< +/C /Pa6 +/K [882 559 0 R 884 885 886] +/P 249 0 R +/Pg 25 0 R +/S /Einklinker-Text__rec +>> +endobj +559 0 obj +<< +/ActualText +/K 883 +/P 558 0 R +/Pg 25 0 R +/S /Span +>> +endobj +560 0 obj +<< +/C /Pa7 +/K 1025 +/P 243 0 R +/Pg 27 0 R +/S /Zwischenhead_2 +>> +endobj +561 0 obj +<< +/C /Pa2 +/K [1026 562 0 R 1028 1029 1030 1031] +/P 243 0 R +/Pg 27 0 R +/S /Lauftext_1._Abs +>> +endobj +562 0 obj +<< +/ActualText +/K 1027 +/P 561 0 R +/Pg 27 0 R +/S /Span +>> +endobj +563 0 obj +<< +/C /A4 +/K 1032 +/P 1371 0 R +/Pg 27 0 R +/S /Span +>> +endobj +564 0 obj +<< +/C /A4 +/K 1033 +/P 1371 0 R +/Pg 27 0 R +/S /Span +>> +endobj +565 0 obj +<< +/C /A5 +/K 1034 +/P 566 0 R +/Pg 27 0 R +/S /Span +>> +endobj +566 0 obj +<< +/K [565 0 R 1035 1036 567 0 R 1038 1039 1040 1041 1042 1043] +/P 1372 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +567 0 obj +<< +/ActualText +/K 1037 +/P 566 0 R +/Pg 27 0 R +/S /Span +>> +endobj +568 0 obj +<< +/C /A4 +/K 1044 +/P 1373 0 R +/Pg 27 0 R +/S /Span +>> +endobj +569 0 obj +<< +/C /A4 +/K 1045 +/P 1373 0 R +/Pg 27 0 R +/S /Span +>> +endobj +570 0 obj +<< +/C /A5 +/K 1046 +/P 571 0 R +/Pg 27 0 R +/S /Span +>> +endobj +571 0 obj +<< +/K [570 0 R 1047 1048 1049 1050 572 0 R 1052 1053 573 0 R 1055 1056 574 0 R 1058 575 0 R 1060 576 0 R +1062 1063 1064] +/P 1374 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +572 0 obj +<< +/ActualText +/K 1051 +/P 571 0 R +/Pg 27 0 R +/S /Span +>> +endobj +573 0 obj +<< +/ActualText +/K 1054 +/P 571 0 R +/Pg 27 0 R +/S /Span +>> +endobj +574 0 obj +<< +/ActualText +/K 1057 +/P 571 0 R +/Pg 27 0 R +/S /Span +>> +endobj +575 0 obj +<< +/ActualText +/K 1059 +/P 571 0 R +/Pg 27 0 R +/S /Span +>> +endobj +576 0 obj +<< +/ActualText +/K 1061 +/P 571 0 R +/Pg 27 0 R +/S /Span +>> +endobj +577 0 obj +<< +/C /A4 +/K 1065 +/P 1375 0 R +/Pg 27 0 R +/S /Span +>> +endobj +578 0 obj +<< +/C /A4 +/K 1066 +/P 1375 0 R +/Pg 27 0 R +/S /Span +>> +endobj +579 0 obj +<< +/C /A5 +/K 1067 +/P 580 0 R +/Pg 27 0 R +/S /Span +>> +endobj +580 0 obj +<< +/K [579 0 R 1068 1069 1070 1071 1072 1073 1074 1075 1076] +/P 1376 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +581 0 obj +<< +/C /A4 +/K 1077 +/P 1377 0 R +/Pg 27 0 R +/S /Span +>> +endobj +582 0 obj +<< +/C /A4 +/K 1078 +/P 1377 0 R +/Pg 27 0 R +/S /Span +>> +endobj +583 0 obj +<< +/C /A5 +/K 1079 +/P 584 0 R +/Pg 27 0 R +/S /Span +>> +endobj +584 0 obj +<< +/K [583 0 R 1080 1081 1082 1083 1084 1085 585 0 R 1087 1088] +/P 1378 0 R +/Pg 27 0 R +/S /LBody +>> +endobj +585 0 obj +<< +/ActualText +/K 1086 +/P 584 0 R +/Pg 27 0 R +/S /Span +>> +endobj +586 0 obj +<< +/C /A4 +/K 1089 +/P 1379 0 R +/Pg 28 0 R +/S /Span +>> +endobj +587 0 obj +<< +/C /A4 +/K 1090 +/P 1379 0 R +/Pg 28 0 R +/S /Span +>> +endobj +588 0 obj +<< +/C /A5 +/K 1091 +/P 589 0 R +/Pg 28 0 R +/S /Span +>> +endobj +589 0 obj +<< +/K [588 0 R 1092 590 0 R 1094 1095 591 0 R 1097 592 0 R 1099 1100 1101 593 0 R 1103 1104] +/P 1380 0 R +/Pg 28 0 R +/S /LBody +>> +endobj +590 0 obj +<< +/ActualText +/K 1093 +/P 589 0 R +/Pg 28 0 R +/S /Span +>> +endobj +591 0 obj +<< +/ActualText +/K 1096 +/P 589 0 R +/Pg 28 0 R +/S /Span +>> +endobj +592 0 obj +<< +/ActualText +/K 1098 +/P 589 0 R +/Pg 28 0 R +/S /Span +>> +endobj +593 0 obj +<< +/ActualText +/K 1102 +/P 589 0 R +/Pg 28 0 R +/S /Span +>> +endobj +594 0 obj +<< +/C /Pa7 +/K 1105 +/P 243 0 R +/Pg 28 0 R +/S /Zwischenhead_2 +>> +endobj +595 0 obj +<< +/C /Pa2 +/K [1106 1107 1108 1109 1110] +/P 243 0 R +/Pg 28 0 R +/S /Lauftext_1._Abs +>> +endobj +596 0 obj +<< +/C /Pa3 +/K [1111 1112 1113 597 0 R 1115 1116 1117 1118] +/P 243 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +597 0 obj +<< +/ActualText +/K 1114 +/P 596 0 R +/Pg 28 0 R +/S /Span +>> +endobj +598 0 obj +<< +/C /Pa3 +/K [1119 1120 1121 1122 1123 1124 599 0 R 1126 1127 1128 1129] +/P 243 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +599 0 obj +<< +/ActualText +/K 1125 +/P 598 0 R +/Pg 28 0 R +/S /Span +>> +endobj +600 0 obj +<< +/C /Pa3 +/K [1130 1131 1132 601 0 R 1134 1135 602 0 R 1137 1138 603 0 R 1140 1141 604 0 R 1143 605 0 R 1145 +1146] +/P 243 0 R +/Pg 28 0 R +/S /Lauftext +>> +endobj +601 0 obj +<< +/ActualText +/K 1133 +/P 600 0 R +/Pg 28 0 R +/S /Span +>> +endobj +602 0 obj +<< +/ActualText +/K 1136 +/P 600 0 R +/Pg 28 0 R +/S /Span +>> +endobj +603 0 obj +<< +/ActualText +/K 1139 +/P 600 0 R +/Pg 28 0 R +/S /Span +>> +endobj +604 0 obj +<< +/ActualText +/K 1142 +/P 600 0 R +/Pg 28 0 R +/S /Span +>> +endobj +605 0 obj +<< +/ActualText +/K 1144 +/P 600 0 R +/Pg 28 0 R +/S /Span +>> +endobj +606 0 obj +<< +/C /Pa6 +/K [1147 1148 1149 1150] +/P 252 0 R +/Pg 28 0 R +/S /Einklinker-Text__rec +>> +endobj +607 0 obj +<< +/C /Pa7 +/K 1151 +/P 243 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +608 0 obj +<< +/C /Pa2 +/K [1152 609 0 R 1154 1155 1156 1157 610 0 R 1159 1160 1161 1162 1163] +/P 243 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +609 0 obj +<< +/ActualText +/K 1153 +/P 608 0 R +/Pg 29 0 R +/S /Span +>> +endobj +610 0 obj +<< +/ActualText +/K 1158 +/P 608 0 R +/Pg 29 0 R +/S /Span +>> +endobj +611 0 obj +<< +/C /Pa1 +/K 1164 +/P 243 0 R +/Pg 29 0 R +/S /Zwischenhead_1 +>> +endobj +612 0 obj +<< +/C /Pa7 +/K 1165 +/P 243 0 R +/Pg 29 0 R +/S /Zwischenhead_2 +>> +endobj +613 0 obj +<< +/C /Pa2 +/K [1166 1167 1168 614 0 R 1170 1171 1172 615 0 R 1174 616 0 R 1176 1177 1178 1179 617 0 R 1181] +/P 243 0 R +/Pg 29 0 R +/S /Lauftext_1._Abs +>> +endobj +614 0 obj +<< +/ActualText +/K 1169 +/P 613 0 R +/Pg 29 0 R +/S /Span +>> +endobj +615 0 obj +<< +/ActualText +/K 1173 +/P 613 0 R +/Pg 29 0 R +/S /Span +>> +endobj +616 0 obj +<< +/ActualText +/K 1175 +/P 613 0 R +/Pg 29 0 R +/S /Span +>> +endobj +617 0 obj +<< +/ActualText +/K 1180 +/P 613 0 R +/Pg 29 0 R +/S /Span +>> +endobj +618 0 obj +<< +/C /Pa3 +/K [1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193] +/P 243 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +619 0 obj +<< +/C /Pa3 +/K [1194 1195 1196] +/P 243 0 R +/Pg 29 0 R +/S /Lauftext +>> +endobj +620 0 obj +<< +/C /A4 +/K 1197 +/P 1381 0 R +/Pg 29 0 R +/S /Span +>> +endobj +621 0 obj +<< +/C /A4 +/K 1198 +/P 1381 0 R +/Pg 29 0 R +/S /Span +>> +endobj +622 0 obj +<< +/C /A5 +/K 1199 +/P 623 0 R +/Pg 29 0 R +/S /Span +>> +endobj +623 0 obj +<< +/K [622 0 R 1200 1201 1202 << +/MCID 1203 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1204 +/Pg 30 0 R +/Type /MCR +>> 624 0 R << +/MCID 1206 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1207 +/Pg 30 0 R +/Type /MCR +>> 625 0 R << +/MCID 1209 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1210 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1211 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1212 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1213 +/Pg 30 0 R +/Type /MCR +>> << +/MCID 1214 +/Pg 30 0 R +/Type /MCR +>>] +/P 1382 0 R +/Pg 29 0 R +/S /LBody +>> +endobj +624 0 obj +<< +/ActualText +/K 1205 +/P 623 0 R +/Pg 30 0 R +/S /Span +>> +endobj +625 0 obj +<< +/ActualText +/K 1208 +/P 623 0 R +/Pg 30 0 R +/S /Span +>> +endobj +626 0 obj +<< +/C /A4 +/K 1215 +/P 1383 0 R +/Pg 30 0 R +/S /Span +>> +endobj +627 0 obj +<< +/C /A4 +/K 1216 +/P 1383 0 R +/Pg 30 0 R +/S /Span +>> +endobj +628 0 obj +<< +/C /A5 +/K 1217 +/P 629 0 R +/Pg 30 0 R +/S /Span +>> +endobj +629 0 obj +<< +/K [628 0 R 1218 630 0 R 1220 1221 1222 1223 1224 1225 631 0 R 1227 1228 1229 1230 1231 632 0 R +1233] +/P 1384 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +630 0 obj +<< +/ActualText +/K 1219 +/P 629 0 R +/Pg 30 0 R +/S /Span +>> +endobj +631 0 obj +<< +/ActualText +/K 1226 +/P 629 0 R +/Pg 30 0 R +/S /Span +>> +endobj +632 0 obj +<< +/ActualText +/K 1232 +/P 629 0 R +/Pg 30 0 R +/S /Span +>> +endobj +633 0 obj +<< +/C /Pa12 +/K 1234 +/P 1385 0 R +/Pg 30 0 R +/S /Tab._Versal_bold_wei +>> +endobj +634 0 obj +<< +/C /A4 +/K 1235 +/P 1386 0 R +/Pg 30 0 R +/S /Span +>> +endobj +635 0 obj +<< +/C /A4 +/K 1236 +/P 1386 0 R +/Pg 30 0 R +/S /Span +>> +endobj +636 0 obj +<< +/C /A4 +/K 1237 +/P 1386 0 R +/Pg 30 0 R +/S /Span +>> +endobj +637 0 obj +<< +/C /A4 +/K 1238 +/P 1386 0 R +/Pg 30 0 R +/S /Span +>> +endobj +638 0 obj +<< +/K [1239 1240 1241 1242] +/P 1387 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +639 0 obj +<< +/C /A4 +/K 1243 +/P 1388 0 R +/Pg 30 0 R +/S /Span +>> +endobj +640 0 obj +<< +/C /A4 +/K 1244 +/P 1388 0 R +/Pg 30 0 R +/S /Span +>> +endobj +641 0 obj +<< +/K [1245 1246 1247] +/P 1389 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +642 0 obj +<< +/C /A4 +/K 1248 +/P 1390 0 R +/Pg 30 0 R +/S /Span +>> +endobj +643 0 obj +<< +/C /A4 +/K 1249 +/P 1390 0 R +/Pg 30 0 R +/S /Span +>> +endobj +644 0 obj +<< +/K 1250 +/P 1391 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +645 0 obj +<< +/C /A4 +/K 1251 +/P 1392 0 R +/Pg 30 0 R +/S /Span +>> +endobj +646 0 obj +<< +/C /A4 +/K 1252 +/P 1392 0 R +/Pg 30 0 R +/S /Span +>> +endobj +647 0 obj +<< +/K [1253 1254 1255] +/P 1393 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +648 0 obj +<< +/C /A4 +/K 1256 +/P 1394 0 R +/Pg 30 0 R +/S /Span +>> +endobj +649 0 obj +<< +/C /A4 +/K 1257 +/P 1394 0 R +/Pg 30 0 R +/S /Span +>> +endobj +650 0 obj +<< +/K [1258 1259 1260] +/P 1395 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +651 0 obj +<< +/C /A4 +/K 1261 +/P 1396 0 R +/Pg 30 0 R +/S /Span +>> +endobj +652 0 obj +<< +/C /A4 +/K 1262 +/P 1396 0 R +/Pg 30 0 R +/S /Span +>> +endobj +653 0 obj +<< +/K [1263 1264] +/P 1397 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +654 0 obj +<< +/C /A4 +/K 1265 +/P 1398 0 R +/Pg 30 0 R +/S /Span +>> +endobj +655 0 obj +<< +/C /A4 +/K 1266 +/P 1398 0 R +/Pg 30 0 R +/S /Span +>> +endobj +656 0 obj +<< +/K [1267 1268 1269 1270] +/P 1399 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +657 0 obj +<< +/C /A4 +/K 1271 +/P 1400 0 R +/Pg 30 0 R +/S /Span +>> +endobj +658 0 obj +<< +/C /A4 +/K 1272 +/P 1400 0 R +/Pg 30 0 R +/S /Span +>> +endobj +659 0 obj +<< +/K [1273 1274 1275 1276] +/P 1401 0 R +/Pg 30 0 R +/S /LBody +>> +endobj +660 0 obj +<< +/C /Pa7 +/K 1277 +/P 243 0 R +/Pg 31 0 R +/S /Zwischenhead_2 +>> +endobj +661 0 obj +<< +/C /Pa2 +/K [1278 1279 1280 662 0 R 1282 1283 1284] +/P 243 0 R +/Pg 31 0 R +/S /Lauftext_1._Abs +>> +endobj +662 0 obj +<< +/ActualText +/K 1281 +/P 661 0 R +/Pg 31 0 R +/S /Span +>> +endobj +663 0 obj +<< +/C /Pa3 +/K [1285 1286 1287 664 0 R 1289 1290 1291 1292 1293 665 0 R 1295] +/P 243 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +664 0 obj +<< +/ActualText +/K 1288 +/P 663 0 R +/Pg 31 0 R +/S /Span +>> +endobj +665 0 obj +<< +/ActualText +/K 1294 +/P 663 0 R +/Pg 31 0 R +/S /Span +>> +endobj +666 0 obj +<< +/C /Pa3 +/K [1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311] +/P 243 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +667 0 obj +<< +/C /Pa3 +/K [1312 1313 668 0 R 1315 1316 669 0 R 1318 670 0 R 1320 1321 1322 1323] +/P 243 0 R +/Pg 31 0 R +/S /Lauftext +>> +endobj +668 0 obj +<< +/ActualText +/K 1314 +/P 667 0 R +/Pg 31 0 R +/S /Span +>> +endobj +669 0 obj +<< +/ActualText +/K 1317 +/P 667 0 R +/Pg 31 0 R +/S /Span +>> +endobj +670 0 obj +<< +/ActualText +/K 1319 +/P 667 0 R +/Pg 31 0 R +/S /Span +>> +endobj +671 0 obj +<< +/C /Pa6 +/K [1324 672 0 R 1326 1327 1328 1329] +/P 254 0 R +/Pg 31 0 R +/S /Einklinker-Text__rec +>> +endobj +672 0 obj +<< +/ActualText +/K 1325 +/P 671 0 R +/Pg 31 0 R +/S /Span +>> +endobj +673 0 obj +<< +/C /Pa12 +/K 1330 +/P 1402 0 R +/Pg 32 0 R +/S /Tab._Versal_bold_wei +>> +endobj +674 0 obj +<< +/C /A4 +/K 1331 +/P 1403 0 R +/Pg 32 0 R +/S /Span +>> +endobj +675 0 obj +<< +/C /A4 +/K 1332 +/P 1403 0 R +/Pg 32 0 R +/S /Span +>> +endobj +676 0 obj +<< +/K [1333 1334] +/P 1404 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +677 0 obj +<< +/C /A4 +/K 1335 +/P 1405 0 R +/Pg 32 0 R +/S /Span +>> +endobj +678 0 obj +<< +/C /A4 +/K 1336 +/P 1405 0 R +/Pg 32 0 R +/S /Span +>> +endobj +679 0 obj +<< +/K [1337 680 0 R 1339 1340] +/P 1406 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +680 0 obj +<< +/ActualText +/K 1338 +/P 679 0 R +/Pg 32 0 R +/S /Span +>> +endobj +681 0 obj +<< +/C /A4 +/K 1341 +/P 1407 0 R +/Pg 32 0 R +/S /Span +>> +endobj +682 0 obj +<< +/C /A4 +/K 1342 +/P 1407 0 R +/Pg 32 0 R +/S /Span +>> +endobj +683 0 obj +<< +/K [1343 1344] +/P 1408 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +684 0 obj +<< +/C /A4 +/K 1345 +/P 1409 0 R +/Pg 32 0 R +/S /Span +>> +endobj +685 0 obj +<< +/C /A4 +/K 1346 +/P 1409 0 R +/Pg 32 0 R +/S /Span +>> +endobj +686 0 obj +<< +/K [1347 1348 687 0 R 1350] +/P 1410 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +687 0 obj +<< +/ActualText +/K 1349 +/P 686 0 R +/Pg 32 0 R +/S /Span +>> +endobj +688 0 obj +<< +/C /A4 +/K 1351 +/P 1411 0 R +/Pg 32 0 R +/S /Span +>> +endobj +689 0 obj +<< +/C /A4 +/K 1352 +/P 1411 0 R +/Pg 32 0 R +/S /Span +>> +endobj +690 0 obj +<< +/K [1353 1354 691 0 R 1356] +/P 1412 0 R +/Pg 32 0 R +/S /LBody +>> +endobj +691 0 obj +<< +/ActualText +/K 1355 +/P 690 0 R +/Pg 32 0 R +/S /Span +>> +endobj +692 0 obj +<< +/C /Pa7 +/K 1357 +/P 243 0 R +/Pg 32 0 R +/S /Zwischenhead_2 +>> +endobj +693 0 obj +<< +/C /Pa2 +/K [1358 694 0 R 1360 695 0 R 1362 1363 696 0 R 1365 1366] +/P 243 0 R +/Pg 32 0 R +/S /Lauftext_1._Abs +>> +endobj +694 0 obj +<< +/ActualText +/K 1359 +/P 693 0 R +/Pg 32 0 R +/S /Span +>> +endobj +695 0 obj +<< +/ActualText +/K 1361 +/P 693 0 R +/Pg 32 0 R +/S /Span +>> +endobj +696 0 obj +<< +/ActualText +/K 1364 +/P 693 0 R +/Pg 32 0 R +/S /Span +>> +endobj +697 0 obj +<< +/C /Pa3 +/K [1367 698 0 R 1369 1370 1371 1372 699 0 R 1374 1375 700 0 R 1377 1378] +/P 243 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +698 0 obj +<< +/ActualText +/K 1368 +/P 697 0 R +/Pg 32 0 R +/S /Span +>> +endobj +699 0 obj +<< +/ActualText +/K 1373 +/P 697 0 R +/Pg 32 0 R +/S /Span +>> +endobj +700 0 obj +<< +/ActualText +/K 1376 +/P 697 0 R +/Pg 32 0 R +/S /Span +>> +endobj +701 0 obj +<< +/C /Pa3 +/K [1379 702 0 R 1381 1382 703 0 R 1384 1385 704 0 R 1387 1388] +/P 243 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +702 0 obj +<< +/ActualText +/K 1380 +/P 701 0 R +/Pg 32 0 R +/S /Span +>> +endobj +703 0 obj +<< +/ActualText +/K 1383 +/P 701 0 R +/Pg 32 0 R +/S /Span +>> +endobj +704 0 obj +<< +/ActualText +/K 1386 +/P 701 0 R +/Pg 32 0 R +/S /Span +>> +endobj +705 0 obj +<< +/C /Pa3 +/K [1389 1390 1391 1392 706 0 R 1394 707 0 R << +/MCID 1396 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1397 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1398 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1399 +/Pg 33 0 R +/Type /MCR +>> << +/MCID 1400 +/Pg 33 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 32 0 R +/S /Lauftext +>> +endobj +706 0 obj +<< +/ActualText +/K 1393 +/P 705 0 R +/Pg 32 0 R +/S /Span +>> +endobj +707 0 obj +<< +/ActualText +/K 1395 +/P 705 0 R +/Pg 32 0 R +/S /Span +>> +endobj +708 0 obj +<< +/C /Pa3 +/K [1401 1402 1403 1404] +/P 243 0 R +/Pg 33 0 R +/S /Lauftext +>> +endobj +709 0 obj +<< +/C /Pa1 +/K 1405 +/P 243 0 R +/Pg 33 0 R +/S /Zwischenhead_1 +>> +endobj +710 0 obj +<< +/C /Pa2 +/K [1406 711 0 R 1408 1409 1410 712 0 R 1412] +/P 243 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +711 0 obj +<< +/ActualText +/K 1407 +/P 710 0 R +/Pg 33 0 R +/S /Span +>> +endobj +712 0 obj +<< +/ActualText +/K 1411 +/P 710 0 R +/Pg 33 0 R +/S /Span +>> +endobj +713 0 obj +<< +/C /Pa7 +/K 1413 +/P 243 0 R +/Pg 33 0 R +/S /Zwischenhead_2 +>> +endobj +714 0 obj +<< +/C /Pa2 +/K [1414 1415 1416 1417 1418 1419 715 0 R 1421 << +/MCID 1451 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1452 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1453 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1454 +/Pg 34 0 R +/Type /MCR +>> << +/MCID 1455 +/Pg 34 0 R +/Type /MCR +>> 1413 0 R << +/MCID 1457 +/Pg 34 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 33 0 R +/S /Lauftext_1._Abs +>> +endobj +715 0 obj +<< +/ActualText +/K 1420 +/P 714 0 R +/Pg 33 0 R +/S /Span +>> +endobj +716 0 obj +<< +/C /Pa12 +/K 1422 +/P 1414 0 R +/Pg 33 0 R +/S /Tab._Versal_bold_wei +>> +endobj +717 0 obj +<< +/C /A4 +/K 1423 +/P 1415 0 R +/Pg 33 0 R +/S /Span +>> +endobj +718 0 obj +<< +/C /A4 +/K 1424 +/P 1415 0 R +/Pg 33 0 R +/S /Span +>> +endobj +719 0 obj +<< +/K [1425 1426] +/P 1416 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +720 0 obj +<< +/C /A4 +/K 1427 +/P 1417 0 R +/Pg 33 0 R +/S /Span +>> +endobj +721 0 obj +<< +/C /A4 +/K 1428 +/P 1417 0 R +/Pg 33 0 R +/S /Span +>> +endobj +722 0 obj +<< +/K [1429 1430 1431] +/P 1418 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +723 0 obj +<< +/C /A4 +/K 1432 +/P 1419 0 R +/Pg 33 0 R +/S /Span +>> +endobj +724 0 obj +<< +/C /A4 +/K 1433 +/P 1419 0 R +/Pg 33 0 R +/S /Span +>> +endobj +725 0 obj +<< +/K [1434 726 0 R 1436] +/P 1420 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +726 0 obj +<< +/ActualText +/K 1435 +/P 725 0 R +/Pg 33 0 R +/S /Span +>> +endobj +727 0 obj +<< +/C /A4 +/K 1437 +/P 1421 0 R +/Pg 33 0 R +/S /Span +>> +endobj +728 0 obj +<< +/C /A4 +/K 1438 +/P 1421 0 R +/Pg 33 0 R +/S /Span +>> +endobj +729 0 obj +<< +/K [1439 1440 1441] +/P 1422 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +730 0 obj +<< +/C /A4 +/K 1442 +/P 1423 0 R +/Pg 33 0 R +/S /Span +>> +endobj +731 0 obj +<< +/C /A4 +/K 1443 +/P 1423 0 R +/Pg 33 0 R +/S /Span +>> +endobj +732 0 obj +<< +/K [1444 1445] +/P 1424 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +733 0 obj +<< +/C /A4 +/K 1446 +/P 1425 0 R +/Pg 33 0 R +/S /Span +>> +endobj +734 0 obj +<< +/C /A4 +/K 1447 +/P 1425 0 R +/Pg 33 0 R +/S /Span +>> +endobj +735 0 obj +<< +/K [1448 1449 1450] +/P 1426 0 R +/Pg 33 0 R +/S /LBody +>> +endobj +736 0 obj +<< +/C /A6 +/K 1456 +/P 1427 0 R +/Pg 34 0 R +/S /Span +>> +endobj +737 0 obj +<< +/C /Pa7 +/K 1458 +/P 243 0 R +/Pg 34 0 R +/S /Zwischenhead_2 +>> +endobj +738 0 obj +<< +/C /Pa2 +/K [1459 1460 1461 1462 1463 739 0 R 1465 1466 1467 740 0 R 1469] +/P 243 0 R +/Pg 34 0 R +/S /Lauftext_1._Abs +>> +endobj +739 0 obj +<< +/ActualText +/K 1464 +/P 738 0 R +/Pg 34 0 R +/S /Span +>> +endobj +740 0 obj +<< +/ActualText +/K 1468 +/P 738 0 R +/Pg 34 0 R +/S /Span +>> +endobj +741 0 obj +<< +/C /Pa7 +/K 1470 +/P 243 0 R +/Pg 34 0 R +/S /Zwischenhead_2 +>> +endobj +742 0 obj +<< +/C /Pa2 +/K [1471 1472 1473 743 0 R 1475 1476 1477 1478] +/P 243 0 R +/Pg 34 0 R +/S /Lauftext_1._Abs +>> +endobj +743 0 obj +<< +/ActualText +/K 1474 +/P 742 0 R +/Pg 34 0 R +/S /Span +>> +endobj +744 0 obj +<< +/C /Pa3 +/K [1479 745 0 R 1481 1482 1483 1484 1485] +/P 243 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +745 0 obj +<< +/ActualText +/K 1480 +/P 744 0 R +/Pg 34 0 R +/S /Span +>> +endobj +746 0 obj +<< +/C /Pa3 +/K [1486 1487 1488 747 0 R 1490 1491] +/P 243 0 R +/Pg 34 0 R +/S /Lauftext +>> +endobj +747 0 obj +<< +/ActualText +/K 1489 +/P 746 0 R +/Pg 34 0 R +/S /Span +>> +endobj +748 0 obj +<< +/C /Pa7 +/K 1492 +/P 243 0 R +/Pg 34 0 R +/S /Zwischenhead_2 +>> +endobj +749 0 obj +<< +/C /Pa2 +/K [1493 1494 1495 1496 1497 << +/MCID 1498 +/Pg 35 0 R +/Type /MCR +>> << +/MCID 1499 +/Pg 35 0 R +/Type /MCR +>> << +/MCID 1500 +/Pg 35 0 R +/Type /MCR +>> << +/MCID 1501 +/Pg 35 0 R +/Type /MCR +>> 750 0 R << +/MCID 1503 +/Pg 35 0 R +/Type /MCR +>> << +/MCID 1504 +/Pg 35 0 R +/Type /MCR +>> << +/MCID 1505 +/Pg 35 0 R +/Type /MCR +>> << +/MCID 1506 +/Pg 35 0 R +/Type /MCR +>> << +/MCID 1507 +/Pg 35 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 34 0 R +/S /Lauftext_1._Abs +>> +endobj +750 0 obj +<< +/ActualText +/K 1502 +/P 749 0 R +/Pg 35 0 R +/S /Span +>> +endobj +751 0 obj +<< +/C /Pa1 +/K 1508 +/P 243 0 R +/Pg 35 0 R +/S /Zwischenhead_1 +>> +endobj +752 0 obj +<< +/C /Pa2 +/K [1509 1510 1511 1512 1513 1514 1515] +/P 243 0 R +/Pg 35 0 R +/S /Lauftext_1._Abs +>> +endobj +753 0 obj +<< +/C /Pa3 +/K [1516 754 0 R 1518 755 0 R 1520 1521 756 0 R 1523 757 0 R 1525 1526] +/P 243 0 R +/Pg 35 0 R +/S /Lauftext +>> +endobj +754 0 obj +<< +/ActualText +/K 1517 +/P 753 0 R +/Pg 35 0 R +/S /Span +>> +endobj +755 0 obj +<< +/ActualText +/K 1519 +/P 753 0 R +/Pg 35 0 R +/S /Span +>> +endobj +756 0 obj +<< +/ActualText +/K 1522 +/P 753 0 R +/Pg 35 0 R +/S /Span +>> +endobj +757 0 obj +<< +/ActualText +/K 1524 +/P 753 0 R +/Pg 35 0 R +/S /Span +>> +endobj +758 0 obj +<< +/C /Pa3 +/K [1527 1528 1529 1530] +/P 243 0 R +/Pg 35 0 R +/S /Lauftext +>> +endobj +759 0 obj +<< +/C /Pa3 +/K [1531 760 0 R 1533 761 0 R 1535] +/P 243 0 R +/Pg 35 0 R +/S /Lauftext +>> +endobj +760 0 obj +<< +/ActualText +/K 1532 +/P 759 0 R +/Pg 35 0 R +/S /Span +>> +endobj +761 0 obj +<< +/ActualText +/K 1534 +/P 759 0 R +/Pg 35 0 R +/S /Span +>> +endobj +762 0 obj +<< +/C /Pa7 +/K 1536 +/P 243 0 R +/Pg 35 0 R +/S /Zwischenhead_2 +>> +endobj +763 0 obj +<< +/C /Pa2 +/K [1537 1538 1539 1540 764 0 R 1542 1543 1544 1545 1546 1547 1548] +/P 243 0 R +/Pg 35 0 R +/S /Lauftext_1._Abs +>> +endobj +764 0 obj +<< +/ActualText +/K 1541 +/P 763 0 R +/Pg 35 0 R +/S /Span +>> +endobj +765 0 obj +<< +/C /Pa3 +/K [1549 1550 1551 1552 766 0 R 1554 1555 1556 1557 1558 1559 767 0 R 1561 1428 0 R 1563 1564] +/P 243 0 R +/Pg 36 0 R +/S /Lauftext +>> +endobj +766 0 obj +<< +/ActualText +/K 1553 +/P 765 0 R +/Pg 36 0 R +/S /Span +>> +endobj +767 0 obj +<< +/ActualText +/K 1560 +/P 765 0 R +/Pg 36 0 R +/S /Span +>> +endobj +768 0 obj +<< +/C /A6 +/K 1562 +/P 1429 0 R +/Pg 36 0 R +/S /Span +>> +endobj +769 0 obj +<< +/C /Pa3 +/K [1565 770 0 R 1567 1568 1569 1570 771 0 R 1572] +/P 243 0 R +/Pg 36 0 R +/S /Lauftext +>> +endobj +770 0 obj +<< +/ActualText +/K 1566 +/P 769 0 R +/Pg 36 0 R +/S /Span +>> +endobj +771 0 obj +<< +/ActualText +/K 1571 +/P 769 0 R +/Pg 36 0 R +/S /Span +>> +endobj +772 0 obj +<< +/C /Pa7 +/K 1573 +/P 243 0 R +/Pg 36 0 R +/S /Zwischenhead_2 +>> +endobj +773 0 obj +<< +/C /Pa2 +/K [1574 1575 1576 1577 1578 774 0 R 1580] +/P 243 0 R +/Pg 36 0 R +/S /Lauftext_1._Abs +>> +endobj +774 0 obj +<< +/ActualText +/K 1579 +/P 773 0 R +/Pg 36 0 R +/S /Span +>> +endobj +775 0 obj +<< +/C /Pa3 +/K [1581 1582 1583 1584 776 0 R << +/MCID 1618 +/Pg 37 0 R +/Type /MCR +>> << +/MCID 1619 +/Pg 37 0 R +/Type /MCR +>> << +/MCID 1620 +/Pg 37 0 R +/Type /MCR +>> << +/MCID 1621 +/Pg 37 0 R +/Type /MCR +>> 800 0 R << +/MCID 1623 +/Pg 37 0 R +/Type /MCR +>> << +/MCID 1624 +/Pg 37 0 R +/Type /MCR +>> << +/MCID 1625 +/Pg 37 0 R +/Type /MCR +>> 801 0 R << +/MCID 1627 +/Pg 37 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 36 0 R +/S /Lauftext +>> +endobj +776 0 obj +<< +/ActualText +/K 1585 +/P 775 0 R +/Pg 36 0 R +/S /Span +>> +endobj +777 0 obj +<< +/C /Pa12 +/K 1586 +/P 1430 0 R +/Pg 36 0 R +/S /Tab._Versal_bold_wei +>> +endobj +778 0 obj +<< +/C /Pa12 +/K 1587 +/P 1431 0 R +/Pg 36 0 R +/S /Tab._Versal_bold_sch +>> +endobj +779 0 obj +<< +/C /Pa12 +/K 1588 +/P 1432 0 R +/Pg 36 0 R +/S /Tab._Versal_bold_sch +>> +endobj +780 0 obj +<< +/C /Pa22 +/K 1589 +/P 1433 0 R +/Pg 36 0 R +/S /Tab._Lauftext_light_ +>> +endobj +781 0 obj +<< +/C /A4 +/K 1590 +/P 1434 0 R +/Pg 36 0 R +/S /Span +>> +endobj +782 0 obj +<< +/C /A4 +/K 1591 +/P 1434 0 R +/Pg 36 0 R +/S /Span +>> +endobj +783 0 obj +<< +/K [1592 784 0 R 1594 1595 1596] +/P 1435 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +784 0 obj +<< +/ActualText +/K 1593 +/P 783 0 R +/Pg 36 0 R +/S /Span +>> +endobj +785 0 obj +<< +/C /A4 +/K 1597 +/P 1436 0 R +/Pg 36 0 R +/S /Span +>> +endobj +786 0 obj +<< +/C /A4 +/K 1598 +/P 1436 0 R +/Pg 36 0 R +/S /Span +>> +endobj +787 0 obj +<< +/K [1599 788 0 R 1601] +/P 1437 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +788 0 obj +<< +/ActualText +/K 1600 +/P 787 0 R +/Pg 36 0 R +/S /Span +>> +endobj +789 0 obj +<< +/C /A4 +/K 1602 +/P 1438 0 R +/Pg 36 0 R +/S /Span +>> +endobj +790 0 obj +<< +/C /A4 +/K 1603 +/P 1438 0 R +/Pg 36 0 R +/S /Span +>> +endobj +791 0 obj +<< +/K [1604 1605 1606 1607] +/P 1439 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +792 0 obj +<< +/C /Pa22 +/K [1608 793 0 R 1610 1611] +/P 1440 0 R +/Pg 36 0 R +/S /Tab._Lauftext_light_ +>> +endobj +793 0 obj +<< +/ActualText +/K 1609 +/P 792 0 R +/Pg 36 0 R +/S /Span +>> +endobj +794 0 obj +<< +/C /A4 +/K 1612 +/P 1441 0 R +/Pg 36 0 R +/S /Span +>> +endobj +795 0 obj +<< +/C /A4 +/K 1613 +/P 1441 0 R +/Pg 36 0 R +/S /Span +>> +endobj +796 0 obj +<< +/K 1614 +/P 1442 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +797 0 obj +<< +/C /A4 +/K 1615 +/P 1443 0 R +/Pg 36 0 R +/S /Span +>> +endobj +798 0 obj +<< +/C /A4 +/K 1616 +/P 1443 0 R +/Pg 36 0 R +/S /Span +>> +endobj +799 0 obj +<< +/K 1617 +/P 1444 0 R +/Pg 36 0 R +/S /LBody +>> +endobj +800 0 obj +<< +/ActualText +/K 1622 +/P 775 0 R +/Pg 37 0 R +/S /Span +>> +endobj +801 0 obj +<< +/ActualText +/K 1626 +/P 775 0 R +/Pg 37 0 R +/S /Span +>> +endobj +802 0 obj +<< +/C /Pa3 +/K [1628 1629 803 0 R 1631 1632 1633 1634 1635 804 0 R 1637 1638 1639 1640] +/P 243 0 R +/Pg 37 0 R +/S /Lauftext +>> +endobj +803 0 obj +<< +/ActualText +/K 1630 +/P 802 0 R +/Pg 37 0 R +/S /Span +>> +endobj +804 0 obj +<< +/ActualText +/K 1636 +/P 802 0 R +/Pg 37 0 R +/S /Span +>> +endobj +805 0 obj +<< +/C /Pa12 +/K 1641 +/P 1445 0 R +/Pg 37 0 R +/S /Tab._Versal_bold_wei +>> +endobj +806 0 obj +<< +/C /Pa12 +/K 1642 +/P 1446 0 R +/Pg 37 0 R +/S /Tab._Versal_bold_sch +>> +endobj +807 0 obj +<< +/C /Pa12 +/K 1643 +/P 1447 0 R +/Pg 37 0 R +/S /Tab._Versal_bold_sch +>> +endobj +808 0 obj +<< +/C /Pa22 +/K [1644 809 0 R 1646] +/P 1448 0 R +/Pg 37 0 R +/S /Tab._Lauftext_light_ +>> +endobj +809 0 obj +<< +/ActualText +/K 1645 +/P 808 0 R +/Pg 37 0 R +/S /Span +>> +endobj +810 0 obj +<< +/C /A4 +/K 1647 +/P 1449 0 R +/Pg 37 0 R +/S /Span +>> +endobj +811 0 obj +<< +/C /A4 +/K 1648 +/P 1449 0 R +/Pg 37 0 R +/S /Span +>> +endobj +812 0 obj +<< +/K [1649 1650 1651 1652 1653 1654 1655] +/P 1450 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +813 0 obj +<< +/C /A4 +/K 1656 +/P 1451 0 R +/Pg 37 0 R +/S /Span +>> +endobj +814 0 obj +<< +/C /A4 +/K 1657 +/P 1451 0 R +/Pg 37 0 R +/S /Span +>> +endobj +815 0 obj +<< +/K [1658 1659] +/P 1452 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +816 0 obj +<< +/C /Pa22 +/K [1660 1661] +/P 1453 0 R +/Pg 37 0 R +/S /Tab._Lauftext_light_ +>> +endobj +817 0 obj +<< +/C /A4 +/K 1662 +/P 1454 0 R +/Pg 37 0 R +/S /Span +>> +endobj +818 0 obj +<< +/C /A4 +/K 1663 +/P 1454 0 R +/Pg 37 0 R +/S /Span +>> +endobj +819 0 obj +<< +/K [1664 1665 1666 820 0 R 1668 821 0 R 1670] +/P 1455 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +820 0 obj +<< +/ActualText +/K 1667 +/P 819 0 R +/Pg 37 0 R +/S /Span +>> +endobj +821 0 obj +<< +/ActualText +/K 1669 +/P 819 0 R +/Pg 37 0 R +/S /Span +>> +endobj +822 0 obj +<< +/C /Pa22 +/K [1671 823 0 R 1673] +/P 1456 0 R +/Pg 37 0 R +/S /Tab._Lauftext_light_ +>> +endobj +823 0 obj +<< +/ActualText +/K 1672 +/P 822 0 R +/Pg 37 0 R +/S /Span +>> +endobj +824 0 obj +<< +/C /A4 +/K 1674 +/P 1457 0 R +/Pg 37 0 R +/S /Span +>> +endobj +825 0 obj +<< +/C /A4 +/K 1675 +/P 1457 0 R +/Pg 37 0 R +/S /Span +>> +endobj +826 0 obj +<< +/K [1676 1677 1678 1679] +/P 1458 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +827 0 obj +<< +/C /Pa22 +/K [1680 828 0 R 1682] +/P 1459 0 R +/Pg 37 0 R +/S /Tab._Lauftext_light_ +>> +endobj +828 0 obj +<< +/ActualText +/K 1681 +/P 827 0 R +/Pg 37 0 R +/S /Span +>> +endobj +829 0 obj +<< +/C /A4 +/K 1683 +/P 1460 0 R +/Pg 37 0 R +/S /Span +>> +endobj +830 0 obj +<< +/C /A4 +/K 1684 +/P 1460 0 R +/Pg 37 0 R +/S /Span +>> +endobj +831 0 obj +<< +/K [1685 1686] +/P 1461 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +832 0 obj +<< +/C /A4 +/K 1687 +/P 1462 0 R +/Pg 37 0 R +/S /Span +>> +endobj +833 0 obj +<< +/C /A4 +/K 1688 +/P 1462 0 R +/Pg 37 0 R +/S /Span +>> +endobj +834 0 obj +<< +/K 1689 +/P 1463 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +835 0 obj +<< +/C /A4 +/K 1690 +/P 1464 0 R +/Pg 37 0 R +/S /Span +>> +endobj +836 0 obj +<< +/C /A4 +/K 1691 +/P 1464 0 R +/Pg 37 0 R +/S /Span +>> +endobj +837 0 obj +<< +/K 1692 +/P 1465 0 R +/Pg 37 0 R +/S /LBody +>> +endobj +838 0 obj +<< +/C /Pa7 +/K 1693 +/P 243 0 R +/Pg 38 0 R +/S /Zwischenhead_2 +>> +endobj +839 0 obj +<< +/C /Pa2 +/K [1694 1695 840 0 R 1697 1698 841 0 R 1700 1701 1702 1703 1704] +/P 243 0 R +/Pg 38 0 R +/S /Lauftext_1._Abs +>> +endobj +840 0 obj +<< +/ActualText +/K 1696 +/P 839 0 R +/Pg 38 0 R +/S /Span +>> +endobj +841 0 obj +<< +/ActualText +/K 1699 +/P 839 0 R +/Pg 38 0 R +/S /Span +>> +endobj +842 0 obj +<< +/C /Pa3 +/K [1705 1706 1707 1708 1709 1710 843 0 R 1712 1713 1714] +/P 243 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +843 0 obj +<< +/ActualText +/K 1711 +/P 842 0 R +/Pg 38 0 R +/S /Span +>> +endobj +844 0 obj +<< +/C /Pa3 +/K [1715 1716 845 0 R 1718 1719] +/P 243 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +845 0 obj +<< +/ActualText +/K 1717 +/P 844 0 R +/Pg 38 0 R +/S /Span +>> +endobj +846 0 obj +<< +/C /Pa3 +/K [1720 1721 1722 1723 847 0 R 1725 1726 1727 1728 848 0 R 1730 1731 1732 1733] +/P 243 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +847 0 obj +<< +/ActualText +/K 1724 +/P 846 0 R +/Pg 38 0 R +/S /Span +>> +endobj +848 0 obj +<< +/ActualText +/K 1729 +/P 846 0 R +/Pg 38 0 R +/S /Span +>> +endobj +849 0 obj +<< +/C /Pa3 +/K [1734 850 0 R 1736 1737 851 0 R 1739 1740 1741 1742 1743] +/P 243 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +850 0 obj +<< +/ActualText +/K 1735 +/P 849 0 R +/Pg 38 0 R +/S /Span +>> +endobj +851 0 obj +<< +/ActualText +/K 1738 +/P 849 0 R +/Pg 38 0 R +/S /Span +>> +endobj +852 0 obj +<< +/C /Pa3 +/K [1744 1745 853 0 R 1747 1748 << +/MCID 1752 +/Pg 39 0 R +/Type /MCR +>> << +/MCID 1753 +/Pg 39 0 R +/Type /MCR +>> 856 0 R << +/MCID 1755 +/Pg 39 0 R +/Type /MCR +>> << +/MCID 1756 +/Pg 39 0 R +/Type /MCR +>> << +/MCID 1757 +/Pg 39 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 38 0 R +/S /Lauftext +>> +endobj +853 0 obj +<< +/ActualText +/K 1746 +/P 852 0 R +/Pg 38 0 R +/S /Span +>> +endobj +854 0 obj +<< +/C /Pa6 +/K [1749 855 0 R 1751] +/P 259 0 R +/Pg 38 0 R +/S /Einklinker-Text__rec +>> +endobj +855 0 obj +<< +/ActualText +/K 1750 +/P 854 0 R +/Pg 38 0 R +/S /Span +>> +endobj +856 0 obj +<< +/ActualText +/K 1754 +/P 852 0 R +/Pg 39 0 R +/S /Span +>> +endobj +857 0 obj +<< +/C /Pa3 +/K [1758 858 0 R 1760 859 0 R 1762] +/P 243 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +858 0 obj +<< +/ActualText +/K 1759 +/P 857 0 R +/Pg 39 0 R +/S /Span +>> +endobj +859 0 obj +<< +/ActualText +/K 1761 +/P 857 0 R +/Pg 39 0 R +/S /Span +>> +endobj +860 0 obj +<< +/C /Pa1 +/K 1763 +/P 243 0 R +/Pg 39 0 R +/S /Zwischenhead_1 +>> +endobj +861 0 obj +<< +/C /Pa2 +/K [1764 862 0 R 1766 1767 1768 1769 1770 863 0 R 1772 1773 1774] +/P 243 0 R +/Pg 39 0 R +/S /Lauftext_1._Abs +>> +endobj +862 0 obj +<< +/ActualText +/K 1765 +/P 861 0 R +/Pg 39 0 R +/S /Span +>> +endobj +863 0 obj +<< +/ActualText +/K 1771 +/P 861 0 R +/Pg 39 0 R +/S /Span +>> +endobj +864 0 obj +<< +/C /Pa3 +/K [1775 865 0 R 1777 1778 1779 1780 1781 1782 1783] +/P 243 0 R +/Pg 39 0 R +/S /Lauftext +>> +endobj +865 0 obj +<< +/ActualText +/K 1776 +/P 864 0 R +/Pg 39 0 R +/S /Span +>> +endobj +866 0 obj +<< +/C /Pa12 +/K 1784 +/P 1466 0 R +/Pg 39 0 R +/S /Tab._Versal_bold_wei +>> +endobj +867 0 obj +<< +/C /Pa12 +/K 1785 +/P 1467 0 R +/Pg 39 0 R +/S /Tab._Versal_bold_sch +>> +endobj +868 0 obj +<< +/C /Pa12 +/K 1786 +/P 1468 0 R +/Pg 39 0 R +/S /Tab._Versal_bold_sch +>> +endobj +869 0 obj +<< +/C /Pa22 +/K [1787 870 0 R 1789] +/P 1469 0 R +/Pg 39 0 R +/S /Tab._Lauftext_light_ +>> +endobj +870 0 obj +<< +/ActualText +/K 1788 +/P 869 0 R +/Pg 39 0 R +/S /Span +>> +endobj +871 0 obj +<< +/C /A4 +/K 1790 +/P 1470 0 R +/Pg 39 0 R +/S /Span +>> +endobj +872 0 obj +<< +/C /A4 +/K 1791 +/P 1470 0 R +/Pg 39 0 R +/S /Span +>> +endobj +873 0 obj +<< +/K [1792 874 0 R 1794 1795] +/P 1471 0 R +/Pg 39 0 R +/S /LBody +>> +endobj +874 0 obj +<< +/ActualText +/K 1793 +/P 873 0 R +/Pg 39 0 R +/S /Span +>> +endobj +875 0 obj +<< +/C /A4 +/K 1796 +/P 1472 0 R +/Pg 39 0 R +/S /Span +>> +endobj +876 0 obj +<< +/C /A4 +/K 1797 +/P 1472 0 R +/Pg 39 0 R +/S /Span +>> +endobj +877 0 obj +<< +/K [1798 1799] +/P 1473 0 R +/Pg 39 0 R +/S /LBody +>> +endobj +878 0 obj +<< +/C /Pa22 +/K [1800 1801] +/P 1474 0 R +/Pg 39 0 R +/S /Tab._Lauftext_light_ +>> +endobj +879 0 obj +<< +/C /A4 +/K 1802 +/P 1475 0 R +/Pg 39 0 R +/S /Span +>> +endobj +880 0 obj +<< +/C /A4 +/K 1803 +/P 1475 0 R +/Pg 39 0 R +/S /Span +>> +endobj +881 0 obj +<< +/K 1804 +/P 1476 0 R +/Pg 39 0 R +/S /LBody +>> +endobj +882 0 obj +<< +/C /Pa22 +/K [1805 1806 1807 883 0 R 1809] +/P 1477 0 R +/Pg 39 0 R +/S /Tab._Lauftext_light_ +>> +endobj +883 0 obj +<< +/ActualText +/K 1808 +/P 882 0 R +/Pg 39 0 R +/S /Span +>> +endobj +884 0 obj +<< +/C /A4 +/K 1810 +/P 1478 0 R +/Pg 39 0 R +/S /Span +>> +endobj +885 0 obj +<< +/C /A4 +/K 1811 +/P 1478 0 R +/Pg 39 0 R +/S /Span +>> +endobj +886 0 obj +<< +/K [1812 1813] +/P 1479 0 R +/Pg 39 0 R +/S /LBody +>> +endobj +887 0 obj +<< +/C /Pa3 +/K [1814 1815 888 0 R 1817 889 0 R 1819 890 0 R 1821 1822 1823 1824] +/P 243 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +888 0 obj +<< +/ActualText +/K 1816 +/P 887 0 R +/Pg 40 0 R +/S /Span +>> +endobj +889 0 obj +<< +/ActualText +/K 1818 +/P 887 0 R +/Pg 40 0 R +/S /Span +>> +endobj +890 0 obj +<< +/ActualText +/K 1820 +/P 887 0 R +/Pg 40 0 R +/S /Span +>> +endobj +891 0 obj +<< +/C /Pa3 +/K [1825 1826 1827 892 0 R 1829 1830 893 0 R 1832 894 0 R 1834 1835 895 0 R 1837 1838 1839] +/P 243 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +892 0 obj +<< +/ActualText +/K 1828 +/P 891 0 R +/Pg 40 0 R +/S /Span +>> +endobj +893 0 obj +<< +/ActualText +/K 1831 +/P 891 0 R +/Pg 40 0 R +/S /Span +>> +endobj +894 0 obj +<< +/ActualText +/K 1833 +/P 891 0 R +/Pg 40 0 R +/S /Span +>> +endobj +895 0 obj +<< +/ActualText +/K 1836 +/P 891 0 R +/Pg 40 0 R +/S /Span +>> +endobj +896 0 obj +<< +/C /Pa3 +/K [1840 1841 1842 1843 897 0 R 1845 1846 1847 1848 898 0 R 1850 1851 899 0 R 1853 1854] +/P 243 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +897 0 obj +<< +/ActualText +/K 1844 +/P 896 0 R +/Pg 40 0 R +/S /Span +>> +endobj +898 0 obj +<< +/ActualText +/K 1849 +/P 896 0 R +/Pg 40 0 R +/S /Span +>> +endobj +899 0 obj +<< +/ActualText +/K 1852 +/P 896 0 R +/Pg 40 0 R +/S /Span +>> +endobj +900 0 obj +<< +/C /Pa3 +/K [1855 1856 901 0 R 1858 902 0 R 1860 1861 1862 1863] +/P 243 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +901 0 obj +<< +/ActualText +/K 1857 +/P 900 0 R +/Pg 40 0 R +/S /Span +>> +endobj +902 0 obj +<< +/ActualText +/K 1859 +/P 900 0 R +/Pg 40 0 R +/S /Span +>> +endobj +903 0 obj +<< +/C /Pa3 +/K [1864 1865 1866 904 0 R 1868 1869 1870 905 0 R 1872 1873 1874] +/P 243 0 R +/Pg 40 0 R +/S /Lauftext +>> +endobj +904 0 obj +<< +/ActualText +/K 1867 +/P 903 0 R +/Pg 40 0 R +/S /Span +>> +endobj +905 0 obj +<< +/ActualText +/K 1871 +/P 903 0 R +/Pg 40 0 R +/S /Span +>> +endobj +906 0 obj +<< +/C /Pa6 +/K [1875 1876] +/P 261 0 R +/Pg 40 0 R +/S /Einklinker-Text__rec +>> +endobj +907 0 obj +<< +/C /Pa1 +/K 1877 +/P 243 0 R +/Pg 41 0 R +/S /Zwischenhead_1 +>> +endobj +908 0 obj +<< +/C /Pa2 +/K [1878 1879 909 0 R 1881 1882 910 0 R 1884 1885 911 0 R 1887 1888 1889] +/P 243 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +909 0 obj +<< +/ActualText +/K 1880 +/P 908 0 R +/Pg 41 0 R +/S /Span +>> +endobj +910 0 obj +<< +/ActualText +/K 1883 +/P 908 0 R +/Pg 41 0 R +/S /Span +>> +endobj +911 0 obj +<< +/ActualText +/K 1886 +/P 908 0 R +/Pg 41 0 R +/S /Span +>> +endobj +912 0 obj +<< +/C /Pa3 +/K [1890 913 0 R 1892 914 0 R 1894 1895 1896 915 0 R 1898 1899 916 0 R 1901 1902 1903 1904 917 0 R +1906 1907 1908 1909 1910] +/P 243 0 R +/Pg 41 0 R +/S /Lauftext +>> +endobj +913 0 obj +<< +/ActualText +/K 1891 +/P 912 0 R +/Pg 41 0 R +/S /Span +>> +endobj +914 0 obj +<< +/ActualText +/K 1893 +/P 912 0 R +/Pg 41 0 R +/S /Span +>> +endobj +915 0 obj +<< +/ActualText +/K 1897 +/P 912 0 R +/Pg 41 0 R +/S /Span +>> +endobj +916 0 obj +<< +/ActualText +/K 1900 +/P 912 0 R +/Pg 41 0 R +/S /Span +>> +endobj +917 0 obj +<< +/ActualText +/K 1905 +/P 912 0 R +/Pg 41 0 R +/S /Span +>> +endobj +918 0 obj +<< +/C /Pa3 +/K [1911 1912 1913 919 0 R 1915 1916 1917] +/P 243 0 R +/Pg 41 0 R +/S /Lauftext +>> +endobj +919 0 obj +<< +/ActualText +/K 1914 +/P 918 0 R +/Pg 41 0 R +/S /Span +>> +endobj +920 0 obj +<< +/C /Pa7 +/K 1918 +/P 243 0 R +/Pg 41 0 R +/S /Zwischenhead_2 +>> +endobj +921 0 obj +<< +/C /Pa2 +/K 1919 +/P 243 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +922 0 obj +<< +/C /Pa2 +/K 1920 +/P 243 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +923 0 obj +<< +/C /Pa2 +/K 1921 +/P 243 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +924 0 obj +<< +/C /Pa2 +/K 1922 +/P 243 0 R +/Pg 41 0 R +/S /Lauftext_1._Abs +>> +endobj +925 0 obj +<< +/C /Pa6 +/K [1923 1924 926 0 R 1926 1927] +/P 262 0 R +/Pg 41 0 R +/S /Einklinker-Text__rec +>> +endobj +926 0 obj +<< +/ActualText +/K 1925 +/P 925 0 R +/Pg 41 0 R +/S /Span +>> +endobj +927 0 obj +<< +/C /Pa7 +/K 1928 +/P 243 0 R +/Pg 42 0 R +/S /Zwischenhead_2 +>> +endobj +928 0 obj +<< +/C /A4 +/K 1929 +/P 1480 0 R +/Pg 42 0 R +/S /Span +>> +endobj +929 0 obj +<< +/C /A4 +/K 1930 +/P 1480 0 R +/Pg 42 0 R +/S /Span +>> +endobj +930 0 obj +<< +/K 1931 +/P 1481 0 R +/Pg 42 0 R +/S /LBody +>> +endobj +931 0 obj +<< +/C /Pa2 +/K [1932 1933 932 0 R 1935 1936 1937 1938 1939 1940 933 0 R 1942] +/P 243 0 R +/Pg 42 0 R +/S /Lauftext_1._Abs +>> +endobj +932 0 obj +<< +/ActualText +/K 1934 +/P 931 0 R +/Pg 42 0 R +/S /Span +>> +endobj +933 0 obj +<< +/ActualText +/K 1941 +/P 931 0 R +/Pg 42 0 R +/S /Span +>> +endobj +934 0 obj +<< +/C /A4 +/K 1943 +/P 1482 0 R +/Pg 42 0 R +/S /Span +>> +endobj +935 0 obj +<< +/C /A4 +/K 1944 +/P 1482 0 R +/Pg 42 0 R +/S /Span +>> +endobj +936 0 obj +<< +/K [1945 937 0 R 1947 938 0 R 1949] +/P 1483 0 R +/Pg 42 0 R +/S /LBody +>> +endobj +937 0 obj +<< +/ActualText +/K 1946 +/P 936 0 R +/Pg 42 0 R +/S /Span +>> +endobj +938 0 obj +<< +/ActualText +/K 1948 +/P 936 0 R +/Pg 42 0 R +/S /Span +>> +endobj +939 0 obj +<< +/C /Pa2 +/K [1950 940 0 R 1952 941 0 R 1954 1955 1956 942 0 R 1958] +/P 243 0 R +/Pg 42 0 R +/S /Lauftext_1._Abs +>> +endobj +940 0 obj +<< +/ActualText +/K 1951 +/P 939 0 R +/Pg 42 0 R +/S /Span +>> +endobj +941 0 obj +<< +/ActualText +/K 1953 +/P 939 0 R +/Pg 42 0 R +/S /Span +>> +endobj +942 0 obj +<< +/ActualText +/K 1957 +/P 939 0 R +/Pg 42 0 R +/S /Span +>> +endobj +943 0 obj +<< +/C /A4 +/K 1959 +/P 1484 0 R +/Pg 42 0 R +/S /Span +>> +endobj +944 0 obj +<< +/C /A4 +/K 1960 +/P 1484 0 R +/Pg 42 0 R +/S /Span +>> +endobj +945 0 obj +<< +/K [1961 1962] +/P 1485 0 R +/Pg 42 0 R +/S /LBody +>> +endobj +946 0 obj +<< +/C /Pa2 +/K [1963 947 0 R 1965 1966 1967 948 0 R 1969 949 0 R 1971 1972] +/P 243 0 R +/Pg 42 0 R +/S /Lauftext_1._Abs +>> +endobj +947 0 obj +<< +/ActualText +/K 1964 +/P 946 0 R +/Pg 42 0 R +/S /Span +>> +endobj +948 0 obj +<< +/ActualText +/K 1968 +/P 946 0 R +/Pg 42 0 R +/S /Span +>> +endobj +949 0 obj +<< +/ActualText +/K 1970 +/P 946 0 R +/Pg 42 0 R +/S /Span +>> +endobj +950 0 obj +<< +/C /A4 +/K 1973 +/P 1486 0 R +/Pg 42 0 R +/S /Span +>> +endobj +951 0 obj +<< +/C /A4 +/K 1974 +/P 1486 0 R +/Pg 42 0 R +/S /Span +>> +endobj +952 0 obj +<< +/K [1975 1976 953 0 R 1978] +/P 1487 0 R +/Pg 42 0 R +/S /LBody +>> +endobj +953 0 obj +<< +/ActualText +/K 1977 +/P 952 0 R +/Pg 42 0 R +/S /Span +>> +endobj +954 0 obj +<< +/C /Pa2 +/K [1979 955 0 R 1981 1982 956 0 R 1984 957 0 R 1986 958 0 R 1988 1989 1990 1991 959 0 R 1993 1994 +1995 1488 0 R 1997] +/P 243 0 R +/Pg 42 0 R +/S /Lauftext_1._Abs +>> +endobj +955 0 obj +<< +/ActualText +/K 1980 +/P 954 0 R +/Pg 42 0 R +/S /Span +>> +endobj +956 0 obj +<< +/ActualText +/K 1983 +/P 954 0 R +/Pg 42 0 R +/S /Span +>> +endobj +957 0 obj +<< +/ActualText +/K 1985 +/P 954 0 R +/Pg 42 0 R +/S /Span +>> +endobj +958 0 obj +<< +/ActualText +/K 1987 +/P 954 0 R +/Pg 42 0 R +/S /Span +>> +endobj +959 0 obj +<< +/ActualText +/K 1992 +/P 954 0 R +/Pg 42 0 R +/S /Span +>> +endobj +960 0 obj +<< +/C /A6 +/K 1996 +/P 1489 0 R +/Pg 42 0 R +/S /Span +>> +endobj +961 0 obj +<< +/C /A4 +/K 1998 +/P 1490 0 R +/Pg 43 0 R +/S /Span +>> +endobj +962 0 obj +<< +/C /A4 +/K 1999 +/P 1490 0 R +/Pg 43 0 R +/S /Span +>> +endobj +963 0 obj +<< +/K 2000 +/P 1491 0 R +/Pg 43 0 R +/S /LBody +>> +endobj +964 0 obj +<< +/C /Pa2 +/K [2001 2002 2003 2004 2005 965 0 R 2007] +/P 243 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +965 0 obj +<< +/ActualText +/K 2006 +/P 964 0 R +/Pg 43 0 R +/S /Span +>> +endobj +966 0 obj +<< +/C /A4 +/K 2008 +/P 1492 0 R +/Pg 43 0 R +/S /Span +>> +endobj +967 0 obj +<< +/C /A4 +/K 2009 +/P 1492 0 R +/Pg 43 0 R +/S /Span +>> +endobj +968 0 obj +<< +/K 2010 +/P 1493 0 R +/Pg 43 0 R +/S /LBody +>> +endobj +969 0 obj +<< +/C /Pa2 +/K [2011 970 0 R 2013 2014 2015] +/P 243 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +970 0 obj +<< +/ActualText +/K 2012 +/P 969 0 R +/Pg 43 0 R +/S /Span +>> +endobj +971 0 obj +<< +/C /A4 +/K 2016 +/P 1494 0 R +/Pg 43 0 R +/S /Span +>> +endobj +972 0 obj +<< +/C /A4 +/K 2017 +/P 1494 0 R +/Pg 43 0 R +/S /Span +>> +endobj +973 0 obj +<< +/K [2018 974 0 R 2020] +/P 1495 0 R +/Pg 43 0 R +/S /LBody +>> +endobj +974 0 obj +<< +/ActualText +/K 2019 +/P 973 0 R +/Pg 43 0 R +/S /Span +>> +endobj +975 0 obj +<< +/C /Pa2 +/K [2021 976 0 R 2023 2024 977 0 R 2026] +/P 243 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +976 0 obj +<< +/ActualText +/K 2022 +/P 975 0 R +/Pg 43 0 R +/S /Span +>> +endobj +977 0 obj +<< +/ActualText +/K 2025 +/P 975 0 R +/Pg 43 0 R +/S /Span +>> +endobj +978 0 obj +<< +/C /A4 +/K 2027 +/P 1496 0 R +/Pg 43 0 R +/S /Span +>> +endobj +979 0 obj +<< +/C /A4 +/K 2028 +/P 1496 0 R +/Pg 43 0 R +/S /Span +>> +endobj +980 0 obj +<< +/K 2029 +/P 1497 0 R +/Pg 43 0 R +/S /LBody +>> +endobj +981 0 obj +<< +/C /Pa2 +/K [2030 2031 982 0 R 2033 983 0 R 2035 2036] +/P 243 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +982 0 obj +<< +/ActualText +/K 2032 +/P 981 0 R +/Pg 43 0 R +/S /Span +>> +endobj +983 0 obj +<< +/ActualText +/K 2034 +/P 981 0 R +/Pg 43 0 R +/S /Span +>> +endobj +984 0 obj +<< +/C /A4 +/K 2037 +/P 1498 0 R +/Pg 43 0 R +/S /Span +>> +endobj +985 0 obj +<< +/C /A4 +/K 2038 +/P 1498 0 R +/Pg 43 0 R +/S /Span +>> +endobj +986 0 obj +<< +/K 2039 +/P 1499 0 R +/Pg 43 0 R +/S /LBody +>> +endobj +987 0 obj +<< +/C /Pa2 +/K [2040 988 0 R 2042 2043 2044] +/P 243 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +988 0 obj +<< +/ActualText +/K 2041 +/P 987 0 R +/Pg 43 0 R +/S /Span +>> +endobj +989 0 obj +<< +/C /Pa24 +/K 2045 +/P 243 0 R +/Pg 43 0 R +/S /Zwischenhead_4 +>> +endobj +990 0 obj +<< +/C /Pa2 +/K [2046 2047 2048 991 0 R 2050 2051] +/P 243 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +991 0 obj +<< +/ActualText +/K 2049 +/P 990 0 R +/Pg 43 0 R +/S /Span +>> +endobj +992 0 obj +<< +/C /Pa24 +/K [2052 2053 2054] +/P 243 0 R +/Pg 43 0 R +/S /Zwischenhead_4 +>> +endobj +993 0 obj +<< +/C /Pa2 +/K [2055 994 0 R 2057 2058 995 0 R 2060 << +/MCID 2061 +/Pg 44 0 R +/Type /MCR +>> << +/MCID 2062 +/Pg 44 0 R +/Type /MCR +>> << +/MCID 2063 +/Pg 44 0 R +/Type /MCR +>>] +/P 243 0 R +/Pg 43 0 R +/S /Lauftext_1._Abs +>> +endobj +994 0 obj +<< +/ActualText +/K 2056 +/P 993 0 R +/Pg 43 0 R +/S /Span +>> +endobj +995 0 obj +<< +/ActualText +/K 2059 +/P 993 0 R +/Pg 43 0 R +/S /Span +>> +endobj +996 0 obj +<< +/C /Pa24 +/K 2064 +/P 243 0 R +/Pg 44 0 R +/S /Zwischenhead_4 +>> +endobj +997 0 obj +<< +/C /Pa2 +/K [2065 998 0 R 2067 999 0 R 2069 1000 0 R 2071 2072 2073 1001 0 R 2075 2076 2077 2078 2079 2080] +/P 243 0 R +/Pg 44 0 R +/S /Lauftext_1._Abs +>> +endobj +998 0 obj +<< +/ActualText +/K 2066 +/P 997 0 R +/Pg 44 0 R +/S /Span +>> +endobj +999 0 obj +<< +/ActualText +/K 2068 +/P 997 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1000 0 obj +<< +/ActualText +/K 2070 +/P 997 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1001 0 obj +<< +/ActualText +/K 2074 +/P 997 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1002 0 obj +<< +/C /Pa24 +/K [2081 2082] +/P 243 0 R +/Pg 44 0 R +/S /Zwischenhead_4 +>> +endobj +1003 0 obj +<< +/C /Pa2 +/K [2083 2084 2085 2086 2087 2088 1004 0 R 2090] +/P 243 0 R +/Pg 44 0 R +/S /Lauftext_1._Abs +>> +endobj +1004 0 obj +<< +/ActualText +/K 2089 +/P 1003 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1005 0 obj +<< +/C /Pa24 +/K [2091 2092] +/P 243 0 R +/Pg 44 0 R +/S /Zwischenhead_4 +>> +endobj +1006 0 obj +<< +/C /Pa2 +/K [2093 2094 2095 1007 0 R 2097 2098 1008 0 R 2100 2101 2102] +/P 243 0 R +/Pg 44 0 R +/S /Lauftext_1._Abs +>> +endobj +1007 0 obj +<< +/ActualText +/K 2096 +/P 1006 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1008 0 obj +<< +/ActualText +/K 2099 +/P 1006 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1009 0 obj +<< +/C /A4 +/K 2103 +/P 1500 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1010 0 obj +<< +/C /A4 +/K 2104 +/P 1500 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1011 0 obj +<< +/K 2105 +/P 1501 0 R +/Pg 44 0 R +/S /LBody +>> +endobj +1012 0 obj +<< +/C /Pa2 +/K [2106 1013 0 R 2108 2109 2110 2111 2112] +/P 243 0 R +/Pg 44 0 R +/S /Lauftext_1._Abs +>> +endobj +1013 0 obj +<< +/ActualText +/K 2107 +/P 1012 0 R +/Pg 44 0 R +/S /Span +>> +endobj +1014 0 obj +<< +/C /Pa12 +/K [887 888] +/P 1502 0 R +/Pg 26 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1015 0 obj +<< +/C /A4 +/K 889 +/P 1503 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1016 0 obj +<< +/C /A4 +/K 890 +/P 1503 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1017 0 obj +<< +/K [891 892] +/P 1504 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1018 0 obj +<< +/C /A4 +/K 893 +/P 1505 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1019 0 obj +<< +/C /A4 +/K 894 +/P 1505 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1020 0 obj +<< +/K 895 +/P 1506 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1021 0 obj +<< +/C /A4 +/K 896 +/P 1507 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1022 0 obj +<< +/C /A4 +/K 897 +/P 1507 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1023 0 obj +<< +/K 898 +/P 1508 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1024 0 obj +<< +/C /A4 +/K 899 +/P 1509 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1025 0 obj +<< +/C /A4 +/K 900 +/P 1509 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1026 0 obj +<< +/K 901 +/P 1510 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1027 0 obj +<< +/C /A4 +/K 902 +/P 1511 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1028 0 obj +<< +/C /A4 +/K 903 +/P 1511 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1029 0 obj +<< +/K 904 +/P 1512 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1030 0 obj +<< +/C /A4 +/K 905 +/P 1513 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1031 0 obj +<< +/C /A4 +/K 906 +/P 1513 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1032 0 obj +<< +/K 907 +/P 1514 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1033 0 obj +<< +/C /A4 +/K 908 +/P 1515 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1034 0 obj +<< +/C /A4 +/K 909 +/P 1515 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1035 0 obj +<< +/K 910 +/P 1516 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1036 0 obj +<< +/C /A4 +/K 911 +/P 1517 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1037 0 obj +<< +/C /A4 +/K 912 +/P 1517 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1038 0 obj +<< +/K 913 +/P 1518 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1039 0 obj +<< +/C /A4 +/K 914 +/P 1519 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1040 0 obj +<< +/C /A4 +/K 915 +/P 1519 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1041 0 obj +<< +/K 916 +/P 1520 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1042 0 obj +<< +/C /A4 +/K 917 +/P 1521 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1043 0 obj +<< +/C /A4 +/K 918 +/P 1521 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1044 0 obj +<< +/K 919 +/P 1522 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1045 0 obj +<< +/C /A4 +/K 920 +/P 1523 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1046 0 obj +<< +/C /A4 +/K 921 +/P 1523 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1047 0 obj +<< +/K 922 +/P 1524 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1048 0 obj +<< +/C /A4 +/K 923 +/P 1525 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1049 0 obj +<< +/C /A4 +/K 924 +/P 1525 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1050 0 obj +<< +/K 925 +/P 1526 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1051 0 obj +<< +/C /A4 +/K 926 +/P 1527 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1052 0 obj +<< +/C /A4 +/K 927 +/P 1527 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1053 0 obj +<< +/K 928 +/P 1528 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1054 0 obj +<< +/C /A4 +/K 929 +/P 1529 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1055 0 obj +<< +/C /A4 +/K 930 +/P 1529 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1056 0 obj +<< +/K 931 +/P 1530 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1057 0 obj +<< +/C /A4 +/K 932 +/P 1531 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1058 0 obj +<< +/C /A4 +/K 933 +/P 1531 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1059 0 obj +<< +/K 934 +/P 1532 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1060 0 obj +<< +/C /A4 +/K 935 +/P 1533 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1061 0 obj +<< +/C /A4 +/K 936 +/P 1533 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1062 0 obj +<< +/K 937 +/P 1534 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1063 0 obj +<< +/C /A4 +/K 938 +/P 1535 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1064 0 obj +<< +/C /A4 +/K 939 +/P 1535 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1065 0 obj +<< +/K 940 +/P 1536 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1066 0 obj +<< +/C /A4 +/K 941 +/P 1537 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1067 0 obj +<< +/C /A4 +/K 942 +/P 1537 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1068 0 obj +<< +/K 943 +/P 1538 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1069 0 obj +<< +/C /A4 +/K 944 +/P 1539 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1070 0 obj +<< +/C /A4 +/K 945 +/P 1539 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1071 0 obj +<< +/K 946 +/P 1540 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1072 0 obj +<< +/C /A4 +/K 947 +/P 1541 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1073 0 obj +<< +/C /A4 +/K 948 +/P 1541 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1074 0 obj +<< +/K 949 +/P 1542 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1075 0 obj +<< +/C /A4 +/K 950 +/P 1543 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1076 0 obj +<< +/C /A4 +/K 951 +/P 1543 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1077 0 obj +<< +/K 952 +/P 1544 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1078 0 obj +<< +/C /A4 +/K 953 +/P 1545 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1079 0 obj +<< +/C /A4 +/K 954 +/P 1545 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1080 0 obj +<< +/K 955 +/P 1546 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1081 0 obj +<< +/C /A4 +/K 956 +/P 1547 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1082 0 obj +<< +/C /A4 +/K 957 +/P 1547 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1083 0 obj +<< +/K 958 +/P 1548 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1084 0 obj +<< +/A << +/O /Layout +/LineHeight 11.0 +>> +/K [959 960 961] +/P 1549 0 R +/Pg 26 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1085 0 obj +<< +/C /A4 +/K 962 +/P 1550 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1086 0 obj +<< +/C /A4 +/K 963 +/P 1550 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1087 0 obj +<< +/K 964 +/P 1551 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1088 0 obj +<< +/C /A4 +/K 965 +/P 1552 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1089 0 obj +<< +/C /A4 +/K 966 +/P 1552 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1090 0 obj +<< +/K 967 +/P 1553 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1091 0 obj +<< +/C /A4 +/K 968 +/P 1554 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1092 0 obj +<< +/C /A4 +/K 969 +/P 1554 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1093 0 obj +<< +/K 970 +/P 1555 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1094 0 obj +<< +/C /A4 +/K 971 +/P 1556 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1095 0 obj +<< +/C /A4 +/K 972 +/P 1556 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1096 0 obj +<< +/K 973 +/P 1557 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1097 0 obj +<< +/C /A4 +/K 974 +/P 1558 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1098 0 obj +<< +/C /A4 +/K 975 +/P 1558 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1099 0 obj +<< +/K 976 +/P 1559 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1100 0 obj +<< +/C /A4 +/K 977 +/P 1560 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1101 0 obj +<< +/C /A4 +/K 978 +/P 1560 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1102 0 obj +<< +/K 979 +/P 1561 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1103 0 obj +<< +/C /A4 +/K 980 +/P 1562 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1104 0 obj +<< +/C /A4 +/K 981 +/P 1562 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1105 0 obj +<< +/K 982 +/P 1563 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1106 0 obj +<< +/C /A4 +/K 983 +/P 1564 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1107 0 obj +<< +/C /A4 +/K 984 +/P 1564 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1108 0 obj +<< +/K 985 +/P 1565 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1109 0 obj +<< +/A << +/O /Layout +/LineHeight 11.0 +>> +/K [986 1110 0 R 988 989] +/P 1566 0 R +/Pg 26 0 R +/S /Tab._Versal_bold_sch +>> +endobj +1110 0 obj +<< +/ActualText +/K 987 +/P 1109 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1111 0 obj +<< +/C /A4 +/K 990 +/P 1567 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1112 0 obj +<< +/C /A4 +/K 991 +/P 1567 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1113 0 obj +<< +/K 992 +/P 1568 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1114 0 obj +<< +/C /A4 +/K 993 +/P 1569 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1115 0 obj +<< +/C /A4 +/K 994 +/P 1569 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1116 0 obj +<< +/K 995 +/P 1570 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1117 0 obj +<< +/C /A4 +/K 996 +/P 1571 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1118 0 obj +<< +/C /A4 +/K 997 +/P 1571 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1119 0 obj +<< +/K 998 +/P 1572 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1120 0 obj +<< +/C /A4 +/K 999 +/P 1573 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1121 0 obj +<< +/C /A4 +/K 1000 +/P 1573 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1122 0 obj +<< +/K 1001 +/P 1574 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1123 0 obj +<< +/C /A4 +/K 1002 +/P 1575 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1124 0 obj +<< +/C /A4 +/K 1003 +/P 1575 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1125 0 obj +<< +/K 1004 +/P 1576 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1126 0 obj +<< +/C /A4 +/K 1005 +/P 1577 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1127 0 obj +<< +/C /A4 +/K 1006 +/P 1577 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1128 0 obj +<< +/K 1007 +/P 1578 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1129 0 obj +<< +/C /A4 +/K 1008 +/P 1579 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1130 0 obj +<< +/C /A4 +/K 1009 +/P 1579 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1131 0 obj +<< +/K 1010 +/P 1580 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1132 0 obj +<< +/C /A4 +/K 1011 +/P 1581 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1133 0 obj +<< +/C /A4 +/K 1012 +/P 1581 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1134 0 obj +<< +/K 1013 +/P 1582 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1135 0 obj +<< +/C /A4 +/K 1014 +/P 1583 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1136 0 obj +<< +/C /A4 +/K 1015 +/P 1583 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1137 0 obj +<< +/K [1016 1017] +/P 1584 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1138 0 obj +<< +/C /A4 +/K 1018 +/P 1585 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1139 0 obj +<< +/C /A4 +/K 1019 +/P 1585 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1140 0 obj +<< +/K 1020 +/P 1586 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1141 0 obj +<< +/C /A4 +/K 1021 +/P 1587 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1142 0 obj +<< +/C /A4 +/K 1022 +/P 1587 0 R +/Pg 26 0 R +/S /Span +>> +endobj +1143 0 obj +<< +/K 1023 +/P 1588 0 R +/Pg 26 0 R +/S /LBody +>> +endobj +1144 0 obj +<< +/C /Pa7 +/K 1024 +/P 250 0 R +/Pg 26 0 R +/S /Zwischenhead_2 +>> +endobj +1145 0 obj +<< +/C /Pa7 +/K 2113 +/P 263 0 R +/Pg 45 0 R +/S /Zwischenhead_2 +>> +endobj +1146 0 obj +<< +/C /Pa25 +/K [1589 0 R 2114] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1147 0 obj +<< +/C /Pa25 +/K 2115 +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1148 0 obj +<< +/C /Pa25 +/K [1590 0 R 2116] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1149 0 obj +<< +/C /Pa25 +/K 2117 +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1150 0 obj +<< +/C /Pa25 +/K [1591 0 R 2118] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1151 0 obj +<< +/C /Pa25 +/K 2119 +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1152 0 obj +<< +/C /Pa25 +/K [1592 0 R 2120] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1153 0 obj +<< +/C /Pa25 +/K [2121 1154 0 R 2123 2124] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1154 0 obj +<< +/C /A10 +/K 2122 +/P 1153 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1155 0 obj +<< +/C /Pa25 +/K [1593 0 R 2125] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1156 0 obj +<< +/C /Pa25 +/K [2126 2127] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1157 0 obj +<< +/C /Pa25 +/K [1594 0 R 2128] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1158 0 obj +<< +/C /Pa25 +/K 2129 +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1159 0 obj +<< +/C /Pa25 +/K [1595 0 R 2130] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1160 0 obj +<< +/C /Pa25 +/K 2131 +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1161 0 obj +<< +/C /Pa25 +/K 2132 +/P 1596 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1162 0 obj +<< +/C /Pa25 +/K 2133 +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1163 0 obj +<< +/C /Pa25 +/K [1597 0 R 2134] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1164 0 obj +<< +/C /Pa25 +/K [2135 1165 0 R 2137 2138] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1165 0 obj +<< +/C /A10 +/K 2136 +/P 1164 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1166 0 obj +<< +/C /Pa25 +/K [1598 0 R 2139 2140] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1167 0 obj +<< +/C /Pa25 +/K [2141 2142 2143] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1168 0 obj +<< +/C /Pa25 +/K [1599 0 R 2144 2145] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1169 0 obj +<< +/C /Pa25 +/K 2146 +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1170 0 obj +<< +/C /Pa25 +/K [1600 0 R 2147 2148] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1171 0 obj +<< +/C /Pa25 +/K [2149 2150] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1172 0 obj +<< +/C /Pa25 +/K [1601 0 R 2151 2152] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1173 0 obj +<< +/C /Pa25 +/K [2153 1174 0 R 1175 0 R 1176 0 R 2157] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1174 0 obj +<< +/C /A10 +/K 2154 +/P 1173 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1175 0 obj +<< +/ActualText +/C /A10 +/K 2155 +/P 1173 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1176 0 obj +<< +/C /A10 +/K 2156 +/P 1173 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1177 0 obj +<< +/C /Pa25 +/K [1602 0 R 2158 2159] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1178 0 obj +<< +/C /Pa25 +/K [2160 2161] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1179 0 obj +<< +/C /Pa25 +/K [1603 0 R 2162 2163] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1180 0 obj +<< +/C /Pa25 +/K [2164 1181 0 R 2166] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1181 0 obj +<< +/ActualText +/K 2165 +/P 1180 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1182 0 obj +<< +/C /Pa25 +/K [1604 0 R 2167 2168] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1183 0 obj +<< +/C /Pa25 +/K [2169 2170 2171 1184 0 R 2173] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1184 0 obj +<< +/C /A10 +/K 2172 +/P 1183 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1185 0 obj +<< +/C /Pa25 +/K [1605 0 R 2174 2175] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1186 0 obj +<< +/C /Pa25 +/K [2176 2177 2178 1187 0 R 2180 1188 0 R 2182] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1187 0 obj +<< +/ActualText +/K 2179 +/P 1186 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1188 0 obj +<< +/ActualText +/K 2181 +/P 1186 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1189 0 obj +<< +/C /Pa25 +/K [1606 0 R 2183 2184 2185 2186 2187 1190 0 R 2189] +/P 263 0 R +/Pg 45 0 R +/S /Endnote_1._Abs +>> +endobj +1190 0 obj +<< +/ActualText +/K 2188 +/P 1189 0 R +/Pg 45 0 R +/S /Span +>> +endobj +1191 0 obj +<< +/Filter /FlateDecode +/Length 10342 +/Length1 16375 +>> +stream +H‰œVkTT×þö}ÌÀ€À +8Hî0 +3 /A@e¼#ø@^"ƒ¨ /AAP|`|ÅW¬˜ÄÔ´Ö£Äc›\¨Öª ±±‰1š¨MÒÆ´&íZM—±IÓÆ*Ò=#fµvåOïž;çu÷>û;çûî¹ ÃðD”Ì,·§…¥ä¤rÏU¾+ëÛ<Ws?ºP gÔ¯X¦lh\»Ð5qßš¦Žm‚ñ5 ÿ„Û,h]Õt­ïé+€ÿ þëæFOCÝŸ¦Rú8^f3wø?§7qûSnnn[ÖµsÞó«€Ô@Ž¹·µ½Þƒ¬Rž+ë0·{Ú<]Âm +&òóÊbO[ã±i}‚ÛÍ<_QG{ç²Áý2ç’×ëïXÚØ!;z–Ûïr;$EÑ“ý@{h 0pò^)½‚&£ +‚Œû—a«ß½Šß7](ñ‹äË'O¨¯€Hã@¾2œWk4’o†:¹|Ïü÷Ń¢$ëô~þ†€ÀaAÁ!Æаðá#""£Fš¢GÅ<¤˜c-£ãâÆŒML²Ú’í)©iéã2³ÆgçäN˜8)Ï‘¡ŽË/pM),š:múŒâ™%¥eå³*gW¹«çÔÌMÏü|N–ÞÏ` +S⮪®ýÚSÿ¯†…‹ÚZßÌÎÍ™ ~á*H¶vÎ×”8yö’æ¯òÀ:þÜrø²k)B]þ@M;$àöÔ€Cwu æò$kÔ؈H'Òþ‰ùJÓäKQFô਑œ|L\_GLƾÙC¾:Ÿïÿ{åàÏx–Þ stží½C—|v…ÞóÙUŸ]v +çÙ.Ü31–Y A†zf? @ k*Á¡c¦ ÇD Q¼2&Dcbðã4#ŒFó5c0‰H‚6$ÃŽ¤" éÈÀ8d" ã‘Íyæb&bò˜£“¡Â‰|ÀÅ›Pˆ"LÅ4LÇ c&JPŠ2”£³P‰Ù¨‚Õ˜ƒÌÅ<ÌG-<¨C=Ð%XŠN~lÀFlÂflÁ£ØŠï`º±ñŽ<¼§ßÅN<…ïáûØ…`7~ˆ=x{ñ öa?zð,à9Äó8„p?Âñ"Žà'x /CC/úðSÅÏð +Žá8~ŽøNâNã—xýx gð+¼Ž³ø5ÞÀ›8‡·poã.⼋K¸Œ+ø ÞÃûø¿Åïð!¿±>Âïñ\ÃÇø_áïø7(–F1¢v¬GÖ’•[óþ&¾ÄX„Õ´ŽÖ²=Bëi m¤ ´™d‰¸Ks¨’jh6Í¥*šGnšOÕTJÓ™3˜ÍÅTA3i•P0hùQùS#3µ‰™¾€ê˜±õÌø2S4Y(†¢(œ"(”Úi!uÐ"ZB­´”Ú¨“ÓDO“(›ò(‡”K“iÙ˜ûIOSH¥BrRåÓT* iä¢ ²S¥Ñ8J¡LJÅ*<Ì,ôÚ2,G#—+° ¸lÁBt 53?´Vî_Œu¸5ØCÝ´¦U´Œ¶ÓF|JÓrzŒ6á:­¦ô8¯ÎfZC+}¶á5»o]ÿa[ð™¯Çû<߬«"„™Z†Ö“ýƒïóÛðØ/o’ÈåËt‘z8ƒ?òþ½Í{}œYò³ç3j/smso;óp+srós=Öb5c^ÉX;™·í¼» ]ó¸Ž9=ù]Í\¯dÞ—±ŠYSY.։ʪ™È +ÊbE¥³ºì¬¸V Ùú‹º…ò y—*Ý‘ò%Uò“t’ A¼!^ß{Ä=âq­¸\ìÓE»8V¸+|,ô …}Âz¡F¨ŠUȲ»`t‚DoQ?¤}|êì¦]´ƒÙÕIµ>œ2ƒ½HÏ0çO2ÿ³Ž².¼¸°^3úƒŒ/kk7ëì)V݃«poîã÷¢öb.ó¡-dœ^|v˜#†‡‡…C‚ƒ†üýô:Y‚µ•áTºëº-jS¥ÍÚ—8+º4$UEd»}Å_¡Ý9Cè²Y“ø§ ‰6ë½?ªÓ`Q{IŒS—ÒìiÐÄ8.MrZ›•‡œF'§› +›5Ùf}ÝfÍÓÂm¼ß2+XX‡©TÐA'•ò¤¤S"Òt‚°˜”Š¤³ÑlLà›ø¸2ßQe܆Y:}[å0ß=C§q‡UæÐaé!S Ï/99%."H¦„ЬL:­Ô,vVD¿`Ì»3Ê}¸gVü +»ìý¾±ÐqÖÁtN(Â#ñÌ$-‘¤J€Ì YæAøÌ%˜ t<`›Áë¹mð´’U€H‡Qê@Ò£þ"»rˆ—‘™žÆdÖݵ»\ö”¢BC¡=ùß\W PTç½ÿ_{w7,{wï¾YØËCvÙew/ ËSD4¦š¢"‚/DA” +Ñ*£‚ŠT´hSL¨ZÚX“ÆÌ$Ój›&š3Nâؘd2cÆ™<ÚLÒN•k¿»‹éLwf÷îìÎw¾sÎw¾¿zŽß_-o[…o‘oÐýº)„+fÓ”1jBa(K4cTe!èQ ÍHùC:k“yGÐŽ=fH'ƒ…d>/áÃ!œŽîݾy YÛO,Ï)¹ñ›Í[=}§6t{²{29˜¾-0¡/6¾üõÈ{ÒñÇtË9éûKÒ¤SgûêG(ô*àé}ü€¬£‡â•Xl„NƒUœ@ªõ*Dò$¥,1rÙ%ÙÐ]×-µz£! >ìr&!6,FÄHXrуIHõŽÍšZ»¦ueYAAyÛšÎÚT‹AºOm¬k\¥|X¶Øh¦˜(Ž?¢ e6”ðûè#¬l1!·\Dΰ“„g˜1Ê\Ä%˜àFöç AÄǦ!Š©¯çÍ5ÍSuú=®Ò@“m¤¢s|aíHóÓëb™$G)‹®74\*)J)}IÝ’·.»ÐÛùþñÅcû„mÒ7«þ¥uíõE¥j? +ýì5J’eIeÄb‹(åÙRHe'ÙÁKXF2ÊR)Æ[‘.ÀÊrs*tØ’…èd4즓wP€(Iãôápˆ'D£D²ÅäÉC‡†„ØÒÑwµ:ð*û vçõ‘Ÿj²çΫ>·«10gÛÙùó†mÉ}wÿ<kfÝØåö;°£W²{Ë+Ÿ 9 rLù«Öµ½Ö_ÿõLiNóé|8Üp¬Iž  ³P»›ÈyM:,ÀJYxµY(¥; Û8A‰ÜIò°m6ó$ÒÒ'{?":@<²ñ±Ì€W„ZÝ¢€09ãù.ôC÷ÚéO¹zER1&ØV¸ÿ~bçKƒÛ¤w/M¯']o}.D*º|K,¹>U®RÉ’Ñé&iHz/1¹ä ‹B—_‡Jmp‰²XÁ,{ŠAAÝ\°T +w¹&Þo{ +ö…¹ãª ‚V  ÊG1ôË°9™wè ÿ +—Õ”bo.§tã¯7 Å{/‹+4>±?ÜÃüò—[æ¶Î?2¾çÓí/­;Õ·¹{ÃåW&֯߷pÇÜ®o¸T¸~^çlWKUo]^éñ½Û>îm˜ìÚön æЪîsÏ?º]욨ž·|eŠ“5c} zd=eÒI@j†3߬˜ÛQ¡x,Ê°¨@8Á±èÁNAtâÃn bpFœ’Ñ.&Eö –b°ñEè(\qH©ÚqçL#5l_™½ålC÷Í]×î.æ.艽°ïðŽƒ™®d{ïï?ïßl²¯{»sçß·K?¼)IÿÆ‹<}ì[òχö}(W™úø£¦Çàü&‚±ŒhÈ,'z83Ý™¬¦9N ÔáPž3-Ålx­êY.kÆÈr¥ Ž<ÆÿAP¤9Øx™3iÇÄïË1#ÂI‰¬@ÿ¤³y½ÛRY~ÒœÝP³Ì›Ý4}a¶!•_[¶ ˜•1P8Ï]À£öʆé+ÌH=öp“j©Ã™&!ÏA,ð–Õß æí3¦Øx9Z»üwŽ¬ÿªú|k^Qëed:;…ŒË—¶æ9.ì:ä-Lq-›ºÛøÁÔÒª°ÌF°éAPŒH”Ä +Ä28Õ¨9…¹QV+æ®Tlå•ZƒÜ€>@ÐnÞŸ  ž $0¶6äõÁ 2œ®b’‚YXÿÛ@tZy2‰qëÃÍ{<—áùÉî«õE‡ŠÆ‘öOk7½³mÉõý‘.g4mŒ•ä])\21Ë•+~ûÍèäòjŸ]óÔ“ðxnüëá3Òí[!¯#1'ü uåa4ÙèûrÿßmÄy@ÕÊ +¢0æ—EQ(׃êfyUf9Á¡¶©MêèlÑEñ, 0©ñ~ÄÛhTOÁy¡ãÏlS@Æ«”7]Æ ´ÃÓ +ºd¶X¥)AyqU]Þ8‰èM¶²ùÔÞ§›+µ:ùsíÑÌáž9%{xM5ßùŸ5e+þKxµEyžÑïy¿Ëî·,{coÀ^Ø;{e—½ ìÊ‚€RB€REÛhMÐi1"mŒx«ZNŒšÔZ%Újk­I¬ÉE­%Õ^Òi3M'^~¦?¢®}¾½h´tú Ãòûã;ï9ÏyÎÙyÖ^L!@TW]l=wŠÎ,15‡?´Á8BïÏ5Ö.®õè¼­A‘Wq÷œVêYÙ¹ÎáXÛþ‚W\š×ã4ê1Š £¹IÄØÕÄî_î„UJ¨³ˆµü|EÒB¾#%;êÇá$ñûÖç@-"^šN7¥°Psz}D­ ªUÅDǘ+f×'»º'Å …hÑûgÒ'2ÓŸnø3ìüüØ­îäüÞ•g/e>ßöx¯=÷¾è½ëö +Z^Ï0a § dŽ—‹§ ìâ ëç¾Ê£cϦÍŽƒ™¿¿šy÷´ÏPž›¸/ÈVäSOªÜ6oôgËêÔÉ֮ѯœ|}k»=ý¨ò^0šØ¬ 0Ä2w}÷âïÍ–ÎÕtîì9øJ%Û‡(›©æT¢ô˜Ð“L¸Ê[ijÍ(­OXX&¼\ “ö”†«‘ÒÄÅ}‡ŸaN†$gùZšVW¦;^u¼¶™,ÞéênÝèìôìüôÂßÁ [Ÿ=Xa6›Ê€&3ªI”K‡Ö¼Ú7Ö;ã Œs’¤ðô–ƒ×,wT‰ò:,­-‡/̳ͥbõá#x'dþ2ÞIN¹5`&"•JðJô¼§’8yRª‘•5°³‚Ö°Êw!ÜlÉ–Vô9 ‚a £ïá5Ø,Â>|AD%Î\öÙhqŠ‡Nœ;tòDHžÓVæ]±JÕ´ìí{cÁi{jý|£ëH÷á4>ûÎqšæ¯¿sxƒé`S®7|F_¡ß¡|T‚jO5üÒ"À„ç%ÀåFlƒR=‰ûœ¼‡Ìj"e˜ªÂ|¶Á€(-+•ñ°S`}ÁÝ‘Þx®œ"«Â@3yêNýX¹yhàåÙ™€¬4 ¬‰Ìs‚e¹÷ɽÏ{¥;b}™ŒT¹xU6±« TM\!M6·XeZü‡âe0&ñk‡ +-±jÔôU^Ì‘HÁf³ÒÇ…à› õr°Käj€$(#N/Dcñe6Ø“ìàr„™Ê]Mƒoöz[W}OÔN¬xÜ‚P¬6¯ýpPuº­aMWpÏîyÃm쥻µ«<¡ÕSCéWF¬ãfÙܹÅj§é_ôE¯»Æ¸3™i©è?y`ÉØM‹…}Å$ß »(Ê©Â)x‡…p!›Ä% éy¢s¨‰ê»E îBÑE’/GEèAA‰ Œê8ŽÕÈ%m‹5ËV×­~¹£zЫñÊ&—¯ÿí¦åmíO­êݶZ&'##ZÁÔ±eéó'×F¬¥æÙêêçnŽmýe¤ÆlotØŠ<A\T-5/•²‚?ÂSà:ð-KA.“ÒŸ!«A½š(xXfò +ÐsÄ ¥b2ÁƒŽ šÑÿëòÑü…ëfÞ>¦*D¢-Q +~ò@ƒh0t;Þýµ5%i¬V­ µ¶Kþ¢¸~kU×OÛÛë[–ì˜uh¼mß×ëŸU”Л`(Ë€òvIŸ±Œ.l¯©KJMûªg‰Ëšq‚XÝgϽýäùµs®'’ˆ\àgù‘P~jNªÞk•žð> šŠ¾Ò¬ +8èƒVäŠf| ¢y£AA€õ”]´‡¯*?|ž `GÒGĉ¾‚.ŠX-꼫"‹¤PͲ¦Â í_y`Ý3¡¥ '~ÏN¾Ÿù¿碪ùùËÝü³ãɉ›Ö¦@[l=rꘔëÿÞW›>|«Ö`\8>PSê+×4Ëãþuí^:±ÚZ«Ÿ…z«ÂütFOL§Œ§†Æ±h&VpØyº((‘ˆÄ„)ב^#¢*ì b«‰ƒ"+BäO#ú +Z«C4S‰*ñSÀ’aâÈ}ýÜTRRYFRí¯~º2•ª|ºº?&•ìÞ­rš†_«ò°S‡ŠkCÖܽ˜'+kùh‹eÆ>’ûS=égzlÛ¼^Š¦ïN1}ÈP 37µ"Õï‰ÊíÍ„O¤CJ`”®RJÒàTævŒ$ÍsÊE”ˆe¬|‡c/ƒ×´m +6d‚Žã—Ái%ûåv%g‰p»P»lOA»È¢-»º\ÙàûA›Ûú}Ip +¿¢TqÖm´:‡²k‘ˢ.$‘0ÅZÆuQ×–ò/[æ“Œ³¦¡eä›íûnŒ ¿7Xsf›ùgMÏø®¶Ø¦î3~þÿãã˱ãØq|‹íÛ'öñ5v.¶cÇINBb.¹à˜”@ð‡;i![ÛÑ”´¥-”u”Œ•v,´k;ʆÚöÐMÕZ¤IUŒ1©š¶±‡>T[%º‡ŠU³ïÛ¹§<¡c!¾ïÿý®3ü%¾ëD±òüdÝXÿαäþu;ߟÍM^|>Ëdš/‘ÒúöÍ/˜ZƒÄœ´ÕÛßͼu´»wjè{õ£5½™ýí._ÈP˜ó÷Ó'¶¼:¶íHëäCyæTÿè œŒçš_8)(“ +Üó à|‹Ð•ÈåüIšÃv+e8^P’vÄ©i­]C…‘Å¥XŽ€ë6)n[ÒK,•×nFK "²Û©^î@"‚~WXÉYçú”¡•ÑçFƒ›3¦ìÍc듇7Œ²á}îv€Q8 0º-qx>×s¬ÚŸÉ1‚pWÿD²eÈ—ï[+ຸá§bCø ï0ØÝ4Çr¥ š•a/°šAÓ„’B°Ð1E¥¥À‡<;‹I1)¼½$èÕbØ«+=™ËížÖ6ÎÝÚB~0g^ ytsŸÉ×YÐáV×ÒêæÚ@•]™ûm¥^"L„‹ðó³ŽÄ ”–›h™LŽ*Xd5@å˜FZ˜—+ôÛb»å E1-݇‡,8£¥ ‘ƒf†³¶éMÕL²ûççû©® -Ât‘þIãØGÏÏÕœu4æŸÏZ–ÞË" äGùøߟ»^_£+êOÞ£–ˆóaéË°LJ’F“V¦×… +½ŽVÒ:ÉÇ‚|¥Í).Ê©Hïe¸«7ÊX¡ß¬F×ÏŠÆT!¯Ùlc*ü\ê­ì~|ÃŽÖáZ@Ö­ã~¯ñ›ácÃùw3±¤a-£°Aˆèàã5Q Ñé4@ˆ"Š÷‹ç¬Ñ(I¹Ca©2‘osrD"ð{%Åu¥úÖ5yKWKrbé +Œo? å´¼·oש†m]ï(“ÉÞyÿÙÓRIâG#7þ㥣9|fJ­@®ÁÁýõUrΪ´üéë=3¡žìÅŽn=óôSOÌô×5"øèßxJrŸ°I¾Ñ€A…T‘˜ •2©éÜf±´É e¸BTþ±\‚§5¸‡MXBD¡˜Œ9ð ©žbã„ü ŒÜ8ÿŽ|¬Ód@¦Šüƒº¶H§e§éÐuR-÷o8½}£#h|ÿ…^ÕøÜ6¤8çAó?„©\àµÅ¼ŽoÒ")”ÇS •¬`¢´“!-«¡†rDQÈ1Z#%HÜ4k†çm*rdÝŠF„±€ê ¡­,’bU)ÈÕ€³[ïæ Ý5òn?µ{2ª*Ê>›Ëò=EP-O9On:šNìybm+êúÜ…Á±X÷wëP_^¢2-I“³ÍB¼ÃÄÑ5´ƒÖÒj@=¥p06“Q¯«o÷°JÙ¬ð§6ŒHØEµ(„"…©‡;UuB½Œ4.þ*%ßþZ__¶7ÿ³²*S*=áñ>ÞÝPq/ÇlåêøœÝ>ÊóÎþbînèu†ŒÛY$‰c‰Ç%¤ÇšûÍ_{ÿ>‰ó{ +“KŸÛ4ͼ?n§H]]Kûi—‚QTŠ;`º ¬VÑ&è½vhY¼C[]ƒFŽé–Ž «‘j ë aÉ%K +½þIg†ÔÁ»}•ûÔéTÇ^‡sOG„mò¾f³×Wç¿dš57r·] O"sÄã;’ÎxÜòYmMâT虹+ŸÄPµ»zÝÂNý#ùk];Þ؆?ìxÞ÷â«GÒ ?š­•æ¹O`oï£ä}ØÛKÔón¶\¥À”Bï¢ít%䯻†uÚ«mfI¨r”ž¤¿´2„¿°•(•¹9RØ“C°"ŽÁ Ðp +Uû¬QÅ°Ñ®­ùçYf@~•uXQÝÿ4 ›Ÿþo¶ú|þ—¶z–ç÷ùe"æ$¸,Šz®ûOªb Úöœ¤$ê…öÆ0¹Y씳DœHðj Qº˜QVFÓ´ŒŽÁ$^¶ÚRe.—Q$Q>¤NÖ¼ød¾°kå¥Xc ð©CEäÈ• 4àÜ=ÕÖ¿Ëî鈻zùœ«÷É-ÿg¿üC£¬ã8þ~~Üswó¶]·9wÍÛu»mvœ—ÞÎín¸Q™óXÓ†‰h³²iN3LZ 4ÄÌ)X´Â$dÈÇXCD(ûEaFcÄ Q@ú# +¤ÝîzŸçÙ:oà ¡öÀ‹Ïçûûóý|>Ï÷y¾K"á’ÂXAtmw‘¿ùZQ•¿<~`A 3_^ðZè¹ÕëZl›ŠÂ‹‡“¯ÝQï=åò¨OnkìnûD.®YøW”"å S]Æ¿¥rAbŒê"VÉ-Û>¹T‚äŽUæ̵Hr,O?˜]yrŽ}®¯ÔS¬I°>c-&äa—|U|›"̸Êrã3É£Mª‰úÊøaõ×,‰Vé¿QåìD·Txð=kE½ÅÝ“ºÕØSãy¡ÆñJ´1Mý°;®¹ëZøÄÀÍå«”}É‘Boßâ µÆAèY- mi-(;ö²ü¦GqöAúX……‚y Π"‰[Û&þEX$‹ùŸ"ùª}*’PÙu¿!xâC77ç×ýņìg¼oâ¢-hwQÕ8“9Â221ØŒ÷¥ÎÚ‚zmÆ#Ó2ªdA-úå;Ø®6R¯ £Y«Åz)n9.S<ˆ©chgË~Ê£,±ÿRÒEh:¼D%%$F6ˆùH€ýˆ±³OÌC¶(DZÞòÂ\Ë«Þ@µe!-Œõº‡z @H"‰ôuÞlô6ëIø´~øµF–GÙ‡Ò²žzaõ*8ŸÛòœô—ÓÒ +q/íîãºý”uÄÞX¦ÛÚ‘¾N{ª9ÿ*eÕ¬_Dbêò:¥kéó,…nur¬gôbêU8Õ.Ž ¨<‹zù4íA…zm}|pœ[5üÖ©ŽÉÊ b}ݦƒ8Æò<Æ $ì!í´ûå +h³/@RìMîÇkR÷ƒõ…Rkj²šc7 +ÄX1É!æ²ûS­£hÑmãxí}Ää&…=Â/êX$âÏr7q›ñÊvR +?ø£y”a–·š±k7ëGõ¼Øʵ¶BfùŒØ¿EC³È–?cý2%±¯‰übžDüEìgÂz<}[䃞 è¹óÅ3™ ÙЮ„–àżLô}2v{c#O§¡9Q/òAäB&ô]@øOnJß!I=&s!á«=Ì‘™ˆ|¸Ê±”òºô úé”’Mýž± ÿH¹LšØ¾[±ð?sSìWÌ­µ0¯FŒ\×í­Õß=] +;u‰~z^Mßß >ÏÞëÔ<ÙÌ°×™üoøiÊ_¿ˆw';~‚iþ1÷•î·,Ìwû.f´þÊæ¾×½OÿýW~&Â@ò7ʧ)ÏRv+Ô/S¤¼¤zúÔ2–?"+øýø™r;å0%Û’ç©Ÿ7ôñ1öOPï¤ldùkJˆñº¼bÈñÛ&}¦6dòRÆÏFô¿DßL>À ò%¿s“wy2•’›€r‘'ì«üB¶óƒYN¾¬\Û¶éÞØL¸§œï æ| 8† rcÓÉk"\3ÿ+çOùç¸HÁ! ðQ`nù(ú(žÏ#;ЇÓζ—ôþ”: ÷î0x„qö-!´¥lðóÄ.瘊b ’GPåçÿ2wf™e–YþWˆ{Ü9ì‡Õ¼>9xó*b]%Þ÷6Ö9Ð{×ËÐäOé*õ|Sר•šº˜3Äž’j×Ë“ºÄ“ºŒ<¬6u…õO™ºJ½ÓÔ5êo›º˜óÕ-±¦øš`sÛŽ¶½Ûvîºw+Ñ‚šÇÑŒ6ì {± ;±‹mÏáyìÓë^ú›¾ÒªÞKŸFÕ´{/Ÿ†ù®ås–/Î-R—ö:sëU{”7¢¯«½½-¹aVê{‚Á?H@ +endstream +endobj +1192 0 obj +<< +/Filter /FlateDecode +/Length 10395 +/Length1 14344 +>> +stream +H‰ÄVyT“Wÿ½oɲAÀ &– „(* ‰àŽŠ¨€Ö6aA±ˆµ-Zki±V«­u—Vk­Zý@kÕª—Nµµ.©ÓÎrNÏ´3Ç?fÎœOϸL˜›èi±Î¿ó’/ï½ûÞ½÷wïæÝ À ,)“§e;uñ‹IòzJk›­[®Î˜° €¿UÛ¾ØÔ6µÅˆ‰$ËjhÛÌiÎÙDšÿnîü¥ îƒã«E2`=ÑX¨kxcÜ< ëOd/¿‘Q;y#­§yrcó⎗ÇdÓ|Ù¯žßR€áÖ€sÍëš­ì_¸ ¸îÑ~Ó‚@s}{ÒºId*üímmi[<Ð)îó¡õÖEõ­˜Ýq™æß…ì“ßs'!ÒÞ-l!L¿ß ©hà´Ç)ð?š &ëÇe|+¸Šk¸Ž/ñü_a>Úû/ùc ¥ÏB,z iÆÔRß‚VÔS??ínø MHæá)´áUý¿#—Q¶©)C|˜L:þLÿf7?[¸(ü Ä¡\:³0‹À|‹?âkÒ¹Fö.“äù¡ÚKH{ý&:͵tÂ]tê” K(Âb¯òcåÌ Ê£RÊ­ò5Š²ÐEšNYk–keýâ1U4¾$a·°AX+,ÂAÁŸãò}ü~¿‚¯à ¼Šà9.Èõs]ÜJ®“k㪸tNÍ®° ì4ÛÃv°T¦ af2º¯‚„üGü€›øþ¡.?ƒD1üÁÏøF^J˜]0{ccô:­F­¡TÈe¢Às ¶>Êw¿©»¦Ûâk˜a·õQ5ñ—wHȬ0 ¯ w#ÑQ)1¿ú¿Dv[&}%.Ãn»ÿÃj$X|½ŒOñ™JL:‰O¡Þ$ ~KÀT×ëõv—W˜©õÂœP9¥"4RL%’<¥8 aj…Ù(‰þa•Æ@]å´ +K¶å¶1Ûr“|g>Þz î±;ÅŸçæ#ÊžÛa‘Fkn·õSØT ü¦Èîb‰÷šªGWûì¶b“Ä[|}Œýí~‹¿ÛB ’`ñÅI‘¡XÉZ\q“ä ˜Â¸¥"#CC©Ä(­¬”D‹L0‹¯Iâ,>)*#În37Ž¶ÛNÐå(œñˆ>ˆPo2õr|·Ï"±€¯„ó–WHÞêÊ?»–ü?ÁuÀn˲Û.ØmIŸaªpb¨òt[¼ \‘, +r¡ˆnc9'läim£œAÆ)£ùL2s̳&•F7·ùžO¤"nNßõ…ê¡9ØO™È‘®Î)gM +"‹ +feåèä©…Ìï6p=µ ÅôÍ/(:ƒß'ë_þnudÆà½óps¸ƒW@j©™øÀ¿Îm–»|ì¯ÅÌÓßO]·ØÊö(Äy5¼NI¸™°@RQ=Pqçåç:)ƒe–$«µ«Ìá*-u -´.Ë.§q™ÕC•½jà|p„j ÕoŠ’źåQLar«Ã<(™Õ¨ìˆ²BŒcKôjÀe‘íûx(¦B.×iˆÕÆè9r‘Ź˜L£'ZCl®3ß?Šåe±T«µJÈ-7WÕå˜|ûk½Ç÷¶®Ÿ4˜={@ÐYÓfÚ<êtA­õsãý³Ò’cP$/}{ ø—S5»Ï6qÅbp³¶ âÝàÀìZ›uÖmGÍ‹k½cÊÌыÉ6QEµ1ÉkŒÕ©"&×AÍ´ƒc-:…^d !´žŒœ\W"#H.M^ª%IFçÁ¹5úƘ™QV®ˆ©‡È¿Ù>µ%*N,ãdþ +îŽ]Á ËwÏ­–q¥÷_ŠøÄÕT¯#M¯R +Q™ÊX•Gœ9Ç2ò•â-1eL½Ti¬=Q®YA µG®«wå¥f1K’\ÅË-DT®3‘ˆ¸Ð\ÅäN¢¸uçÊb’-IBiÁá]­é±e9žlc²^%¥•­ý`†¹ÑÂø˜Â‘i¦6§ú؈ž´¸xµè¼Ó5,ø·÷¾S«¦å¥¤ÄÊpz¶¾þo¦«-6ŠóŒî7óÏìŒ÷:뙽Ø^{ï/»Þûú¶ëõ‚{/ëfÁænh ÄP;XJJ"@@—æBUT¥(JUB¥¤ªŠÔHMT©jÒ‡>¤*Qh%òÐ,ýfP¥}ðÌZÚÿ|ç|çœ1»8(Æ––\[²Ÿs)ʼnºø&Ûß^çä2©Fô“÷°Dò>ð‰<¨§6·TO˜úÖºV3bÉØ©<ߥgØX,j eO¯0žJúü>ÄåOgjþ…w#(Ä™Y.“U7S’¨Ç¯†9“&¬.oi tî·yÃÁB%ÚªÕ+ -«1µÓfnp³Ps™õÑcMáÕé¥Lé¥ß,žsÆÞÚ6}ƪFzF;6u|¸Ò”ömJ{,n#ÑTFþ”ó†÷df:Û§rÆáÅÜàúÚˆÜeSrG¤lH#ù>/Æo$8ì–x¥:Û +!û)hWñä2*„@ÅK Ц½Ább$ š¨[ WI;i…ÙH¹u¦â9È‚žÂ4ÔV^â‘•p-\>·ü‡2©˜„SjÄuR;Á½³µïå—‹ºÜ¹ëã燌ڹ!­„ÓÐ4Œ½óåNqçÛƒÐ^ÒD:–“°tx¨[¶ +bõ›ê£OCNÏ·Ö.oÊƤD¨OaôZõ³7e^g…¼Þ@ÅŽä‹KSDàø–*äµÑv{@`Eƒ£M`Xp± ’Nt!Þëj¡O$tÀØ$né‹! ÃROÖ‰O§2ÿÇ»,g\,™òŒ¬_ïв÷¸YI‘8RŽÿ5+Äê†ÊÑæ‘·q±7¶wƒ“#Áøšû0„´Þ…n…¹çOn»6{í?§—í¿ã*ǹ]£bÿsÝ.7ÿîž8/èóFc=!H÷¾8wæ/«ÈíwQÅg‘[Aî»ù¤ D/Ä´IËràwhÝQ€nà}"G›!Ç )¬¢j²]ÈT*òE `¶¨ea³´¼—ÏÖ•RËøPä©$.l¦¹ÁrטŸ Žu¸ä,H¹èXñ§Ù7äkÚ0=ÒØa5•õÇŠ󱎂7üÙ_!3÷Zé¹N[~yäÌv>bíÅðÙêûê-bŽ¹Olê[ŒvGøô¥ÿŽÓ_ÞšCn—QÉgÉ:ÞÂy·U l`•Ô‡Cß,+¶Y¯c1Á¶Ù`À]Ë”i4áO›pk.ùün$,.£õ$$–BA"Ê{\ú—+/D«{úõZtÕ"Ùº¸°µØüèÙÃ'ŽbÁ9®»_/9ÍÝõ¿zwŒ¢ÈÎKÕGÿª~~ž`‚M! è’MxéRõæÛ£>»^Ť<|*©Öª8OƬ„‹ÏNÅÛy¹¹aM—œn§ý¾£AÅÒÙgJƒ¤’²wÈ +zb¨#ùm:£ÇwòñÑ\·ñ)&T#Í m•Ê‘÷·Ï\Ù¶µ8×¹òÇåÙ7v¿Ë&f²Æbg¯Mè._<°0Ú·w¸B GOìÚý“6¿ÒÑ2|lxáΡ¾wï¹,y_(õ,÷ ¶£»Bö˜ß{»|qhûÞ¾®ñ6ÙQÞ|ü Ü¢ûå$ÆÆØPoÒÕ©¸:­€4«¨CF5Ðð$”½r+gÇl¦ŸÆ3>ÂÏǓά·OŽÿ ]žHDÊ#/¤Ëþœ+11N]OƧ¦â‰ ü½fü.òNïyù`"f“ÛB®÷:Z‡’×ÆcQg“Íj‘LuE>©ü|O-ÐLYPÂø‘}HÂdL¶SÍʳ|ò.GãHM&ÚISVÁ`h÷8—ÅÝüÃÞœv¶:×ç´'ÓÙÕ+}±d£×PœþÎüU˜~|ñíI÷'JþQO³ž)R4zmž‡w&]3KÉϬèžvßø3¨Àôí)¸-·¼E‘=ä¾¢˜Íª-ù«†Ú—0VìîB§$‰p«¬jƒV«M¨|”·Â!O'n̶´@ªµ,=P“NOOMî©4!Œ~ì")ÙšÒÊÇl‘å$¯@͘”MFÝx•ô­9šl犚p2ïúDŸžð¾æUêü& çÚÆ'µÂÌ‘É7>™¼R_ Þ:NAD×ièM_˜¼°²û¥‰ãû²vmPr˜+êᶜȔ8Âé´Öã£_~:,š/¼2ýãyÉÈq³Ä–½wô°«â˜Û9?LVmò~?þ;SGâ)šZDä˜3ñà’>‹l`jkTÚFÀB™éœØüBµ–w„–ƒ˜•)Uê˜Føäty0¡SI“\:–Ü/P† Û‡zíoÖN,_Z ·šB7«׫ÿýÈßô»^ýÅGÀ6ÑG+ù :þ×7¦Æ^¯þc èÔ%ÍÝf>¾¼ûðÇ.ÆnÊ}µù*òèWepóÓR•ˆÕãqUà¥Ç<vÊDâJ+A4À/4FUŒ¨#–°TÇ3òjÔ=eîq¯b¾@±¸XÀ Á¯U‚Ñ£PµÞÖÀ‹©ÁµC·!üÏÞÏÎT®ìÖé–ʪޒ¦ÄŠãDÉPéß {fCÑï»}¡§"Ìîu&ª´š °w`"\šÞrÜӢϱ¬ŽnEm¨a½H!É69Y°½6cÑ’M ŽÅr0À”a÷Édy(ç¶ yi¸hâúvlL,~:Ræ ‚ýÝ•9šÅGúS–*MW£Õ'¡‘0’yF5OÿG}/ªk–wgâxMLà“R +W_ƒˆá¼·È?£JŒ—u³.–g-,'?Ðeçñü0“ðÔDÐÉ®Ÿì +ðœŽDLDËxQ$Õ ®?€´b P#’NGcL¾+à÷’§sFD žDb5æ€\1´M{–”ºÍ™”Ü™­C2-e‹¸¼ü”Ö«/{ž ~6»2Ê÷yC™:gÛÊ:å%ËDIŠß{>žë3ðÓg/Míûå°™ªŸïT>úÌ’4}p²·7I·Ýøô¥?_âÑQa²Ú:M0#ÇÄÊ »ÉåõFßÏÆkß”¼BàÂkÓR»·“y}¢´ßfô¸‚µñ@eñ‡£õ÷äNÔàÜ‚‰ÀÍËu@:cì¬Õ„¹çYÝ…ä^oJA¾~ðY@’ä’Ÿ†Fô¨—[Ί „|Ûxnó¸³pÔÕ²R_y:P-›‰ÆÍd‹@ýýMÞ2IìÏ%‚+Ž5>ú­„qÑ<^*º­dy—±ò6èùà°b0µ¹/ÿï1a %¦9òô3ü$> +jÂe¯¯“ÓiHKXgeŒŒßNàf´›Ó`/ÆÛl$Ê*ŽU*GS›È(ï8éÊÒª0ëϪóª…H¸%M}8&ÞÌ8hŠêè.¢Bó÷ÄÕžÑÚ)d¾'&*‘`·½Â#ƒ»b¯y=ú@½gëö·¸8S´þØ<Æ/´—Þ¹Úá^ŽxØpŽJíÑΖl¡÷Póx6`$¡$Þ¿‘öÍ l&Š°Äu£ƒ±2=fL˜¾$¶šÑ#2²øœXÀaÃÏ ö +ëßb¥8îkñ6(WcâBJÈåÔŦ‚1RV±æ‚¾ƒ‡ ÏÐ Þ”-„òGŽÇBËÛ“GÓ‰sõž‰ ±pÌ)U"R#ê¬^Çf›¿Úá`çkõbý¼¯ýIÁPäÝìß×°+=ƒ£Š~{ðßKÖßC›Lü¡ Rqv}nAž½ÔÛ‰Ïq e·œÞ 8Nk‹.Àaf½Ð!'AÑMö €\ˆºU˜òvu­TÐ…­’å´SÖüþëo-EùÃ+ñýsϳ\÷ïîê˜ïñǽ“¯Ô§9½©#SM~øÜò\wC²{{~7_¶ÑÃýKSwóž€"«O?'ÄMEªåœå]VÜáocxd·!3çݺ.¥ÑŒ%m˜Cƒ¥ÑjoÔNºÐ ¾&b¢ åý€Í·ËáìÉOg•ù ©Ñp³6QÁGam)ìïñ^k÷Pž³.V„zÍäVO刟¸Æ2ó‰1(þäÅ>‡87Ø’¼sËiˆag£ý´íâœ4~à`XŠ5D#zÎjkq¤w1•=6i¦ÿ*„uXÑQä^½ò埆E9΃2‡ñÝ&¬É—Sn@|Æb$Dù4”ìcBĤpa8ä7êiLCïuóðmT Œ0ˆžíD‹Ôœ²¥]*é¼0"ŸgsÑT<85F`,ë¤×o¼{¬"Uýߺ22sy¦²Ç×¼£›ÚSH؇>wm–q7/;3-ÕZêÃão/öô ®íˆgN\ññÍ&Õü”‹iŠe1 Ð §ÒƒßÓj×i)KDf‹ÑÏkps… B8^è´‡í$Qbj·Ùî—˜MËX¢Ù[T‚»×ú¶­6"Z쳶s‰Å…˜ +…<~Øã³G ïFÐðÈØ73ýÁUÌ(¡ ¡ÿÛ×Nîtw GÀ$Üñ¡‰•æô\ƒ¬ ɲÖða?òI³Os´Ü°é±Â…\>´³ŽÃã±B8„fPzÈ…(.j °†3êÙ¤i ö4²ÔÚ;ƒœvþrØb'ËFCôôQkµ,GaÍ!ÑÈÿ“]®±me?ïñqlߎ}||¿ßN|¿ß'v;Ä©sqš4K»$ͪ@»ÑJí–ìB)R;u[;º!´–­”® +¨BS?t¢¨E  ŠÄ‡ +ê@¨RU¡ ¨syÞsìŒ ‰}l)Ïû¼ÿçÿüþbÌ‚ƒ¥7X‰Ù¢" -xñ6-æ!„ïMLŸø\+º-°~@}¼å³…* +‡e¢ÎE'êq¢'6›eÃ~<ãL<ûïo¾VgNi„úÇß0e5Ö?OzÛÇ8îöŽ7FŽ¾%sVžzØnù™©9Eûç…†³|¥¸ç‡êå›”6Ÿv{Œì˜Ù9?:þtóRKµK­7gªiNm QÙÉ0¸w·»=¯±íàh08,³›veK¯´¹écøܺÍêþª0tê±fªÔßäÖD-à1†! ÊnÅBÑÓV¤!H–Ñ+¨#N?'%VÜ1‰ŒD&Ìãõ^ì lu` Çlî4² É™¨¾ÏÉuùêÜö6 +Ìe3а?0l©³MôÝx„n°CšÖ…îz¥h†Í·ž]XÌøGy¾†§ÓÖÍ O¡N "rµ¨š&Hå0úqµÃ„‚€E­§u4BF5bt²#V·\Žxi÷aNá{´Î pɃ ¶õ@à‹uF˜kN]bnåʪIªù¥¯ Ë{R¹¹ÐPÐ[ w3ejæä:¹=™ÒÉëjŸ›ùlÿÊ{—_&„Ì¢Xj¸&M!µSX&*µT)c)¶ˆ`òtÒ6ÚLëu‘€ËÌÆCf SêÑ&«pÉÑPoQc=î4ã9.š[(òY‰¹EÖ`1tb…3qýQ\Mø]Ü3ïì5Q—>’Û×Ìì´a>™œ.üÝ7ÙJ”ÚŸL«óµöö•–’OÉNÔÜM-°RûâgWÏ~4YÓåif»Ã{2(ü£so"­Ãä!9LÎæ 5GO#:Ài+Cjá/°˜\’$E‘õÎðE},†ëV¥¯¹õ=·ß¹¶ÝB269"[‚j,E(æñ5MÿdÀæÁ öO”ÂÔlµã塈¬ooY C±Òs¨ÉN³ ¨«Œ’Âì¹KOªxP© mz“œÜ‘[Â.4ЂæëЖ^¡-@ÑÑØç ¶‘”í pN´³ÿ1c€…sR,Ù¿Á»J +JJÏÜhá§RÊ‚´‰ÆOß0mûʙʡ趭[âšq¥%oœÛ˜uƒw¹ší\?Û,¦´ëçjYJ–oœl’tB@ïŽÇÕU—Àœ;ébØç¿ÎéÔ¾×v/F %¦—ÇÐøµÒÝÚ= +Ám´û;,µÜ]ÌÆ™&ÕÛÔt²D,Ô¦tˆÑ¨eñ K”y)„ý²b”JRø#4Ò@ëqƒ^ICN#'zÁáäbãÒ +ˆ•^ºŒí¬þ}Kmü/úcO­¸cx=*vÖG§’æø!Û[·™ë|m½:¡T–xjdk³¢¬íÍwìN¡²rûL“Ô$ èÝf¢a.1gN1¡à+{mÍM¦M +XÔ¹2¯ÝÅtL…w æ䲟ÀyuDHÕ†‚ ö¸« Qa·Óv9é7©Ž+ý„Ü‚Ž™À–p#¤Ù|¿xlõa$mt·ðÂ×°å7þÒÛzÿg~uñ7?C¿ór«mj|Ï€Sq£ªèí?>RêþôÁ·ï¾OV”ž óÌËw rÐÓ–obO›î&(8>IT‰ñZÉ b±˜IgÈF«Á‚³I  ¹‚‹«¢Y T[¡!‡šSNÒ¢!mh“`GûcÎ’CK=È/&O¬`©×Òì‰øAJy3‰Ð#±|’ĹõGÆÌÿá dRCУs%çÞ»iU/,—š›‹‰ #ëÕ±PbÙµš¯­ç|¥vlu¡Û´ +Qkä­;!;”ò44.±¯Å…µ—Æ~{¶Ò²2ÖkÑøÁoUŽLÅ–ûŒr_¶øw²6jER¥C6QŠ;Gk••‘%I†Aì0¡… A8Öݦ»e¤oí±/š%N0À+âíÈl±–Öûª¾;gœÆÊðH´ºÜsùCnvùÖ…–>WG¯Îò ®¬¹ÎMV¼ÊÿhF÷ÞTF…­*?úäù/PS™¨ÕJÙˆßbÔQHT¨<0Á¢–+Kä­B84ò~ÛiáŒ:5…ÝJº„$ƒDqåLæ> CVl""ú_¶ÇÈCƒ%(âF˜/œÑX}ûÒáÝYÛ·ð’·\Öønnž;¬UV)ƒ5?S[*G®®ð^¿!tïT㤠Eá¶ÇëOŒ{\E˹´ÎçêÉøʲ0þ¦Ðà"óé’Ýàrøœû2õðs‡¬Ü*œ³úäSò µExˆL-jAVÄÅb@ÑiT2È™Vi¤á" 1¹iðÀeøðe€q²2ò¢âúŒ ËáÀos‹¦ÓªåÓVæ íÇL±dí̬.í[àÈ+ThòÖ²sÄðèyå‘îݧ¿\aB£±æ±¨¨óä•9É­Úp&IÈltQo¥T\˜6ÒrU¹ÌªOæ +ÚŠº,rÔb”“/šÜYØI‹â¬„Ä)÷øOK/qdûØI!’‰+ +äýó¥µÔq:”òÅ^²1ÊL«³á +Òqæü] åO‡ê¯­g”gN:Mƒ7ÐÚXÖÔP˜Ã +Íéz÷dzû×fQ¬¦ê@9GßýÅè0 8“Dz²Q °pÍnòÓ^ÚM«iB嶛|>€Ó`¼ð+ ´Šà " ü.:Á´Yòp³ÔpÅ©@–¿9aŠ +Û™OÒ¾¶|bÉ«±¼zÑ$9.䢆™ã¨÷Ñ¡$ܲ:ÕQñ;¿]¹‘6cH4(ªA{—»ÿ‰kl>y,ÿ ¨?TÍ8Ì°­Ua:HûitP­’F*¿Ûa³š9£^5Î+¡fáóšñ (;Ð+¼Ï1¢Ÿ²F6gfÿW<þ1¤Zæ|~J`3»BW£ü~ü¿ìWmlSe>÷£÷v]·v]˶veíºFa¬tÝVds»lµV(Köcº¦ƒÂ”a ê2 Î1 *.£ !ø1¢¿ÑŒ†hŒ¨Éâ,>ïíeAQCÔz·§÷¼çÜsÎó~òùÎ;÷½±S¯¨O¥êÎÊkÞX3\Û×´xƒx‰[0´‰Ìy‹ÃØ’•~žS8ýé.ºATc¬ó_J0ÌY÷­HÂnDVMU^¥Mȯâ|Y6‡·Œ¬Yž’b»-Ï„9;á#Us3¨Ì) î"ï³pkP×Ñ Ô2RØ “—ýÛØŠ, ²$‡­Õ3«÷vµúJ|æýT* Kíus=ò{yeNGórßÏ·i†·xKqØýæ@P.«}þ‘g +ŠÍUº²§¡dqC¸¬¥È²¤;ðCc‹'[Ô)¢ÈùÞY\Í" ¥ç “GAªm¬ôºóWî² +¹ M;;Ó‹8cùe·Ó^T`5$Ž²ï/ ¤ÚLH˜¿uºb2pÓãK]ˆÛï<=<ÛD8õTSÓe+T¼…YþH¹;ýuáì»Ç0Öê˜_+¬l %×ÕäZ öŠ’ô•ÈøÎæV“eÊååeñ8ÿQxuàiA:ʬwç1‚xQŸmy`é/#o_ôV,»ÉÐ +u~45Ö9 ¼Þ‘e5ó&ÎÆ郃MïÆИEŠ½lÇp9 mfS®Aæ ËÝ4={´½¢³ÔÔfòÔªa°±ɘ  ¶¼ÌSÚ\=ˆ=Û_eÊ•¹°þçÔæ‹;¿ÛfYïÞWWj“‚¤¢ék}Ÿ×lá ÷ö™åêFó5½¾é•ôÉwE›aù=ÎŽ]nžW½Îo©ßó iÑôtû“®wHaô“hZCW’¶ÉG‰®È;2Y¸å¹ ÝR%8 r•&øJrŸR—pˆbºq:!éi€‹Põü‚úê×­à$ôuóÃäÞ§Aþ ¹Ñ¿ ï ðlm¥ÊA¼ÛQîR('„!JpßÐP¤‹`Y…öƺ|@:C‡u#G©K ”î,µ‰Q¾AÞ®ÃûØù¡;Bq±’²m—Õö¤Ø¯¾ûuœPCô”xþïVcˆÉw‘"~‹ú) +‰G`£‡Ö“÷S»î27"œ§ +þ0€]¢±´R;ì3Ÿ; zfŠ¡ÌôˆwR|$~wŠ.´á»Â$ôBèÓô|È×1ª‡NºA©ˆÂ,/¢—BÈa~Ì÷p‡ðž€ç=üO°ù`yRå¥àw›êÛ¾BŽRÏïûÁ—¸f7 ŸÄAÕ•Pœ×sáÅtÇáϤÊuyŽ1>‘³yàxþ3Û,fè'ðÝ$ü!ö(³ {ÛY<ÈiJÕE;¸f9'(®qÙÆøT9Œ€ð)A}UÞ.Sã’õ½•KöVùÄ8`<2ÞÃãPÕ§vyâtk)&ýˆï ¢>@]òCàq2.ÕØX¬CðÏK +Ëôa`ùQÁ|ô"îµ™²Ê%«ŸÚ8`º!äªSåpPí—ŠKqÈ,Ö³Û§€­4ß2vÓSkÉ?ÀÓÀ‡˜™’È<j!¸ +o.!#Ÿa$žÄ<ÇA@ÕpüÏ‘›†—‰²DÆED9Ñ rc¾ú-̳oGžBdùÆ¿ DÖÓD6Œ¬DeÀ÷DE+2°#dûkDŽ')"g3ÑLÄ<q–œÎÀõ‘úîëD¥_yv•!~/lyQW~üüGÀ¶° ´‰Du®ñdÄ8Òí@k5ÒsÓ]i§(¥Œ,B.Ód r­&Ë@=91 Ré´ÌQ9õj2O¹´_“Ôi²ùM– Oj2lr–¦mʦ5Ý®õ}«ûû]þPÈ[ºD‰¬ôµvôvlì^—T’½«î¬Ššh)ˆ u“‹ÖS­¦~ü¹È{f¿1ZŠµD¡­$µR|ï è¿Ž’¨O¢¼ŠâÐ{vX[ßêü›½„ A7E–ÿài´ëÄj[UŽE¬K™s<))9·WH¥”?í;&,zÂéóý*Àg™¬û +endstream +endobj +1193 0 obj +<< +/BaseFont /PFARJU+Wingdings-Regular +/CIDSystemInfo 1607 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1608 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1194 0 obj +<< +/Filter /FlateDecode +/Length 694 +/Subtype /Type1C +>> +stream +H‰|P]HSa>§ýškËŸ“ºÙö!lþLÍ0‰DYêÊŸDž3whîÈ9kº‹±Âåü!ƒŽe樛ŒÊ J$ƒ ‚¨$ˆ»ÒÂ+Þ£ß.:gÝtÕwñð>ÏËû¼Ïû‘„zA’¤Ù}ª¾¡®¥°>̳ÚÍsŵœŸvqZéZ% )e«¥|…xt·}÷¼Þ™àSÆûÖLbI®®»¸>y¶ÇDeUUåE +V¤°²•—––¦°ÕÐ\ƒšÂBéÐé@7Ç÷q¼'ÈÐ%¨ÆïG) ñŒÀð!Eü›±bØ á‘Gnö°ò<ÏÐ(È{h¦×Ã_BœÒù‡zÿ³ +±${¡–«°¦ , +È ² —ÚÒÍ]y–Jœ'›šÃ} :†hÆKÈÏDd‘ChäŸ#ˆ^â©#ÃP_”6I-ªâj)¶ãNÆ´0Š—)\ ·5°¡Å/Q ä¸.©mOÕPe®•^SJ…fDQ¨% Xû£ÔË'Ï–Þ°O=Ý^ïÅÖçìœÍµÔjò!ä‚rUØ9LaK#¶ãF||WBÁöÚDÀévØnb55?Q…mØquu |†¢%Væ,ÆDœÛpñþÌ; 5è³¾ÃÖp~Ø®“Ì8S‡Ù¤]Svê°&¨Ý +ÔdmÞŸx|oV?¦±ƒŒÏŒótÆèoüWúåhy°(€-2Šûo´\;ë÷´éÏ´9pýŠÀYËòZ0¹Wt²!ÐÓNþxñåçƒé±©‘Éa=ÎO2-¼]›·ÍˆÓw–ù© Íö‘sVãUQŠˆ`Eñ–¨ÅâGQ'K"”ÈÒ#Q½â71Íšèê0¤Å éë{!'}}Ê`ª³aƒú#À#I+ +endstream +endobj +1195 0 obj +<< +/Filter /FlateDecode +/Length 1559 +/Subtype /Type1C +>> +stream +H‰|“{TuÇgXvVƒÖ#ÓîèÌ>ODzÐTÊTD@7ÌGP ;ÂÊca_¬ºÈb©»°ËvÌà +DH©¹ (¢, ñÄI#Á⣲ÒÓãþø£Y:Ó_Íïœ{~ßßûùÞû;38æï‡á8>=.~}ìêWž]¿S§Q©“tÚç6òÆl•Î—d¦ù 3)´•=~ü8^ +秀wjË "9óÃñ¡{«´ybmF¦[¸tiD¨/.šˆQ¡\DxxøD\Ä­TkÓxN¹Soàsô\lnºV—§Õ© ¼:Œ[™ÍM ôœŽ×ó:“ïðŸŽ8žã5†L^Ç©Äd†F¬×ñjΠS©ù•.‹Óú2ÿ‘ÛÿÇŠÓär"‹KÎÕø”Ò ê9U®úy‘¢pI×s : ¯{>FùêÎ<ž[©ùí˜øàØllŽEb/ck°l-‡%`‰˜Û†Mo[/Ê*ì¾?î7ïÔï¶D+9ê?Ã_íßà?QÚ%<èÂÅ8»KRê/ØÆ’Æm”¡sŠ†w¥pŸ@úœŸ?('R'öDMÝ”o‡|J.ß[<(|2˜SÔxì>¼KíÊL¶n¢Ñ’Ð?a)¬ùã!D|ÙQ´û$Kž:2 %û܆MÕQ4âQˆ¸2P>„ @ØxóbUÕǬüú¾~¡µ¿6"Ü•\sRûÛºmhxúwOo/Û{Ásü€g~—x–9›q M¥câ÷½µ‰YG½óÇÕNCü¹(²„EqsCP‚&Ëá22ò߬Âgxã}aÕ= <[I¡µhº8âô&LE ÄÀK0 ¦€^G0 ųVS0§_|Ež[HÄ ™+€‚Ù0ÿ˜³Yùæ#&h¿ ¯ˆÍ¾ɵàh¿I Ù3kÂÞªÜPnžt‡(üp÷%ã»û³?}­zR™l îËó£Šnó'šãL“*ñ½0:1~ÿÞ7Ø‘ÊUqÜÕBß+éå)¢“6‡1„œ³^Úa‚Ò_ +jð‚êÒ", ÞwÒ~¦E±²Ñü„ »òÓ™š ÒZOGE;ýkùªt¶X†!ëÐdÙ¹¦+æ—¾nOS=SF–ƒ Ò=E‘{íŶ½LZazz<Ê×õ#àïýlgå:ë€Ú$D÷AVAPÓ(ó’¼±­j±Ëš[VÒè‰yóÑb‹æÝ™“‡ÎŸù¢žqŠhW”tˆ°,élU7e‘ã.ª°¤ÈVı»“ÕIt趿üõÅ÷w/š¢<Ì–Y«BY|–÷BH/ÞtÊi`¢‡œÕŠQ°(ÍZŒdh.š;º\ÿ¼ªâcé•îà­ñtä‹`g½TÏÁ曣ô¯u‹”%¬<ñ}ðÌë³NÌpt„¼!,ÌùàÀËR;qÚ”Ò&~€. -AŠá9ømwc{=ëL&<öõ…‰[ªk²ãZi~óÅÂstÏÕŠ¶¶£¥ö*Hà‘‘7Î;› L8:AYì»ö[¥y«&Yœoè'–|þ_ܾتÚ\ŸŠ{, +9‚#&Á\ðð  €/ð’÷aq°`Ž7ËȇmcQT–AŸS«?ÑP[w¼„=aªÛÁÈÁ.-ûFœ`pr†!{˜¼1< íD¥³òÃL[Å鶳ô2šE­ÃÐ-«*«r¹™ÖÊæS]ô€GÆ¢úah’ÁòЖu)YEÆ\¦Àb6Yò&Ù‰¯L[NÇÒËRßLÉcmÙyà;i4Q–îHÛ¢kDÛ}¶^°zÉëƒÁ^hóyºÊ™ÎÊö3çè[ÇâV°èc/´Èà…Ók—)SSôŒ Û÷/]ñ/UŠ ð[Ö‚DÔÙ3(þå"§Âéf.»Û:.ÐîC%öC,yø–Œìq¾õ¶£˜NÚ”gdä1ÛO¾ŽR[7Š¤Å¥ýðó^-Ì”T 3ûQ£“¨=ZSWSÙà™æ8+—®†J;aÌ/0˜ò‘5M“¹³ÂÜnw›@ÛÝ×Ý2æHÚ“K®<á 𺟄̧„aêoËø’ +endstream +endobj +1196 0 obj +<< +/Filter /FlateDecode +/Length 2214 +/Subtype /Type1C +>> +stream +H‰|TkPWî¦\3&tZqZ»ÛÄ +Q4Š‘ˆ/yˆ‚«€A^# 30# de`VŠòP /AdÅ—`°L¶ŒQ×lj-â®»º©]«rš\­ÚÌVí¯­®>uϹçžï;÷~÷☃†ãø¢ðˆAQ{¼¢*^Á‡çh²i>0=A¥ÎP©ã²‰kxÿ£Gù¹^­Ð(ÔZ[ð-!^©áʬd…š'“”âzµ"‘ÏRÇ%*ÒâÔ©¼Ê6ó?î‘ÿÅ+Óy±¿?]ió³Ġ†KOô«¨æPTÙéYj¥B³ÆkWxDN†‚ßÈ'*Ž`.~Ø;¶ÃÜ0l†­Æ°u8¶ Çvâ˜ÃvcX°n‡À°h [,î.‚…ajì9€ÆsðívØ Ú¯·ïtpp8ë0!q¸Hj%/ âñŒô&ÓÉK†Ò›Â‹›¸h]oÚ—:ųa¯‹ (Cã4òƒJ ü@<¦Áæ¼® _1scðC¢OC´m„lžMK‘9Á]ü$œ±‚§GŸõÿû +à(Àà’·2Ã5i…£ôŽÁ~pþX¼vÁ:²T³+èæ\Kº Ù™ÖÝâ¸-ð°š/C|Xƒå?¿‚ÅÀ­ú–ˆÏW¥°§ˆ†©[# ;Ýl®5×™QÀk7zOæÈP1×`>S^ɶœi±v3ãM‘ŸîÏŒ=ÌIáPð‚§:`„û©rÚØ5~ò).`wqü[îîàÐ ,•Á»Ñ?ø²ýr_+¢™Í~' örˆÞ§-Uu–V°G!hò\¿9Y¸ÏrK-œÅYµ³t¶ÚöS³è7 pv)­/¡ñ×øB!<ÐY¡ÒŸ­Z8 4l„Åâl¬¹˜!N·£s}ë¹ÆuªuŽBä_Ê~©ý:w\ÓÓàXN7ܹýƒì®æFl'ÛsÐÿœ+󡟱ð hH²Þr™¹]Ò©:(‹LT°‡é V +®àŽ÷C8@ˆ}o;­ëy¬}Â@䳂ãóˆiôÎunCGҹ˲¶¶Æ‘{7å·²=à*iŒÙwÞ—A~î^è7î‚Hà¾Ël;–"S¦iCär«5ž•ö”±\Û¡…l°ë©s ì¶S~‚i¡ñ¢©@¾$,{Ž¶¸íT奲ˆ”4tŒÔ1Óç³uÜ)m.Aóö"³ijÛOÃç¯v±eåW+¡´B”˜ +ÙŒBUN&“¦­mï»f½ÏIÒÃ2„kXHÐ9‚| ˆ:± ©Š; Ñ9rlˆf`–õÿ@NLp”戊3É_ÔñPS°)•…`è¤+ÍâÇvn»ÔÅÜn‰”sÔÀeÂï’TŸ·±%%UU2ìrä"Ê&–ÚpÛÅmõ95 Ì›¢Q…‰lÏŽ©ÝÏ Çßz¢Mfyý}%cM£¬E„«KÀ‡0uš¦&e I ˆ4ri}Ég&›bTe&1‘GzL·ÜºÝÓ’®¬àÌ…¥…E2i«\&Aú'˜‡·Ãp_{¡ ‚è²³å—ÚdÀ€Z‡ý‘;"‘÷KOðŸüªâ›ó%'>yˆ Þ×tÕ(ö-¥ÛˬÃÌXÍ'ý RÀÒGâ­ÌFÿ¶›b7O„Å‚ž¦^HLDof|ó-pwE^hùS˜?p½®§³dŸD&…‡7Ô¥±J´D¢éÿ:ÿó݃šcÜÄPÝ“§2°’Ô“Ç–¾²6… &Z_šWl`3Œšì&2í˯8êÅ£+×ú:›µÉ•¬¹È\ ¶jÕ +zÝ7ð .©=è +zq‹ô䳟ÒáIIQÑ]ŠÑ±îžÜ@Irw8#žË‡ݯù¶S¿‰åÀÝ7^ 0 ¨ t¾_®( J%|¯Ï1èôÙ‹M„6õvåèBÏF!9!…7âýDષ©j;8‰ÿºÜ†Â„}úâél¿Ó¦Ÿ™Îª˜þ],ĺ1SnAR<g7÷w ®ïÜßy¦Ïâáù¾CäÇ$Q€C»[H +endstream +endobj +1197 0 obj +[1193 0 R] +endobj +1198 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1199 0 obj +<< +/Filter /FlateDecode +/Length 236 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±v˜Àhä°v,Û8¶’Û(Î!o?Ù-L` ñë¿$Oݹ >ƒ|§h{Ì0úà—¸’EpòApÞæ{U;›$$Ãý¶dœ»0F¡5È—Lì^\p/ä•’ì¾Nýd¿¦ôƒ3† +ÚŽ<èͤ‹™dÅcÝçíÀÌ_Çç–šZoflt¸$c‘L˜PhÅÑ‚~åh÷OonÔ0ÚoCB?=s¯Rœ +Ù¨Zq*佧ÌàUáaЮDì­Þ£š*v|ÀÇÉRLÀTyâW€\yqé +endstream +endobj +1200 0 obj +[1193 0 R] +endobj +1201 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1202 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +1204 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1205 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1206 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/F/a/b/e/five/one/r/space/two/u/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1610 0 R +/FontName /FFOKZO+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1207 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘Ýj„0…ïós¹{±DÝnd!eKÁ‹þPÛÐd´CÌ^øö$ËÐ|™9GÆ~iŸZkðw¿¨ŒÆjërõ +aÀÉXVV  +·Sz«¹wŒ“¹ÛÖ€skÇ…I üƒškðìõ2àžñ7¯Ñ;ÁîëÒíwWç~pF €¦#}è¥w¯ýŒÀ“íÐjê›°Èó§øÜB•ÎeF-W×+ô½É‚Vò™VÃÐê}ú‘dFõÝ{&«(. +Ú˜&.3—‘«ÌUäSæñƒHL“"ëEÔ‹¬Q/²^D}ëu¬×¹^§ú9ó9 |›,ŽN Ã=uõž"Iײˆ)‹÷›r‹rŇý +0øˆÆ +endstream +endobj +1208 0 obj +<< +/Filter /FlateDecode +/Length 13393 +/Length1 20827 +>> +stream +H‰œVkTT×þö½sg`D`x’;Œ€03 ï—(ã@ðÁ[d‘áå  ¨5ÆWm1©©I­5FIblÚX½Z­Õ4$Æ&F%©IÓ&iÖjM×2Ö4«µ +tϨY­]ùÓ»9œsö¹gßóíó}ç ÀD< +åeU¶ÔàäÜö\åRÓÜéê¾úôGŸ” +HéÍ«ûä­ë÷Ú6ö­kë^Ú)^sºO¹ÿÁÒŽ¶³å¡€ï) »ÞÝêjiúlîy@™Äñ2Ýìð}^ÉýyÜŸêîìëßÙðÂ÷»9æÞŽ®fÊû2?îuºú»…Û”â÷å®ÎÖâ›Iû¸¿WÒÝÕÛ7¾_âµT„zÆ»{Z»5'ŽŸã~÷ã@šz’h­FOß­5/£Mਂ áþ£ßæs·áóµË9n¹tyô4ã  +dÉÓ¼#È[‡pÖ¸E“¹hqÏɵà}ç¿5’Vçã«Ÿà7Ñ? Ð:),îÙK<ŽgH @šÆs+©‘ÜÞ¹CtÄ;Þ¹öè!9˜çæÜ›«õÎýŸ\Üá/ž£7é<]`»Dïл^{®xíª×>v +Ø.Ý51†Y -tÌ_è1~¬) !˜™ŠIC8"83‘ˆÂDã!ÆiD L˜ŠXæk<¦!‰0Ã+’`C2RŠ4¤#™ÈB6rxÓ‘‡˜‰|æè,(p …(âM(F æ`.æa>JQ†rT U¨ÆÔ`!jáD¡‹Ñ€%h„ MhF º±=èå“`#6a3¶`+¾…mø6¾ƒAlÇc¼#ßÅÞÓïa'žÄSø>váØbžÆ^<ƒ}Ø!<‹çð<àÄð"~ŒŸà%ÂOqG â(Žág8ŽŸãeœÀIü§ðKœÆ¼‚_áU ã5¼Ž³xçðk¼‰·poã.âFð~ƒwqïá·¸‚÷ñ~‡ßãC>±>ÂðG|ŒOð)¾Âßñ®S MaD]Ø€N¬' Å3¶6æý |‰›XŽµô­g{”6ÐVÚDi I1F‹¨†êi!-¦Zj '-¡:ª yÌÆùÌæRª¦2Z@å@zšH>äO¾ÔÊLmc¦/¥&fl33¾…ŒE&Š¦ +¡0 +¢.ZFÝ´œVRõP'õÒ +šAÙ4“r(ŸrÉNÓiå‘•¹o¦8šM +“ƒJ¨€æP!Í¥"J'eQ*eP2eR +ð0³Ðc}X…V®Wc –rÝŽeè¿7æf~>hì_Gpë°‡i#þLÔGÛiþBÓ*zŒ6ã­¥Õô8gg ­£5^Û‚Ï9g÷­ÿ?l+þêõxÞçÂZв*™©•è==:<þ>Ÿ†Åai³tH‘.Ó ñ +þÄûw‘÷ú$³ä0³ç9fÔ^æÚæÞvæá6æäfæç¬ÇZƼ†±ö2o»xw—1º6æqsºù]Ç\¯aÞW²JYsXE¬…U3ƒ”ÅŠJcuÙXqñ¬@£t#ÚeÒui—¤¹£)Ð(V#h ^GÄ·Ä!q¸U\/®{Å4Ñ&&cÂ'°p@Ø'lê…:¡TP„éBŽ`L‚VÐÐÛ4Lhß:»ií`võR£ç‡Ì`Ò×™ó§™ÿ'Y ÇY܇X//2úŒ/kk7ëìIV݃Y¸›ûø=¨=˜+½h‹§Ÿ Fû¤Ðà C`€ÿD¿ z_VÒˆÁrŒ•á›MJ[Õr,pT÷«0׆å8½Už·Rõ‰N•¸¬3ÿ©B¢Õr÷5©0)GIŒUä"ÙíjQÅX®eUã0¹ä–£vû`u­‘Ÿ£0F9Ëk= M¬\äVu±….µÆHUrd;#]-ΪZ“Ít+ÒfºÆß6stWË7¾)Å*ù×þgrþ-¯Ë–cµ 3l¾™²g‘ƒ…ªèpµ74*VK¡¬Š&å ’cµÃä4ñ€ª1)áêVŽ^Ø®Ú]²wÝê¬Hn{šjQ¤Zìtª’IádRÚUÁ¤¨~‰áV‹\è.°ZNñ• ¿ªð"Ž$xjY>*ˆƒŠI%—RÄ ³WתöF§ç{V 9 ^n +¬–$«å «%_ I´BðüÞØXÁ:ÄØ#+-´š +¾‚t‚æŒÈCgt­à šS`N6Œ†x.ÄוñŽ"á6ŒšWn+œµcÅ‚[á+ÌH¾þzAOùs2ðds~R2éâô”‘>™²Â´z + Üq».¶´^Ø׳#o¬×üŸ\KΞà2amÆÀØgcŒæÈ +G¶qdƒ'2|üuÄ‘'Š9ø^äàxÒõŸ-††Z­;Žfäíè‰ë:Ô—³âÈX±™„Ê#”FQ‹®Üÿ7ÛUÜÄ}…÷ýöÒJB–W—%Ë’uX²l´’e6ƶ|à C 5‰í8n sÆ@1G ÃaˆcbŽPCP.´™ %)t&L†´MRR’”I2isLfÒ¡Ó4m&´ +xÝ·’a:Õºfvï{ß÷Þ÷í3#ò×wnã½]òëpz€»ÅÔpÔvàñ¶ÚZI +çYt$üb"gì¹kjZìç3+ä´Ÿ^ä3ƒáJ*óÀœÞfl#Öç`°_À¬c ÞˆŸj¸ü —…TO|©Nl5\Ñ ª•+'¿…M8Ë*+™É‰JÛÙ#(ÐfL]jqûbÑxqG“Cuu¡pcƒº!$5Ô‡B Ê=.Mj?v‡¦ŒI-¡tË(åd6u9¶F@ã`üܹǾóŸrîu%W–M~H_awa¾È¡D_Rt3yne‡R•Øì”!ƒh­5j€i8ÊØÐM)ž %…ioÂ’i´˜`’ˆÇ­>–ˆ'â±Ì¨‡ÔæwölgóÊeK«KKkºW®ovÚÌò]f]kÇrõýê‹•áÊIêUÎ1Vó"úóªJ]XÅ5ìHš•Œ  »„Lì-¨‚èÿÄeÉhìM0@òSŽŽ¢Å<‹Îbô,„”êðN Ç¢JY\x* ¼)-Ã"!â'8“Ñ2U´ :^Ù›7gEeÏæœì2µN³ýÓ5/, —t/•l€ìŸ`˜•£ÝÝÝ%ov… ïúÝ«š ëŸê¬ÞÖ:<{Õ¾ßÙ¿ZîWq\…ÃQh€Vž(œÈë%DQDÕ&Ëo¿Çd¤YD¸i-Qy1ÏÔøFN„¬Ùð4ãÁgqH“M±ã Ž§„ )`2òL¦‘c:ª¼5©~;rˆŽkò)VcŒÄpføI̪çN» èô¥éÆ+jJK øô‡Ç-¡Žâ‰Ô{Üà×Aª÷Š¸|´ezüñ?".>×Õ¸lÞ‘Ó{?Ù±îêêS[7ö¯½~~lÍÒÓìlÜvsíÕ²5s×ïéewUïîªh-®:¾ûíã}Ûß,j:´¼ÿâã>j*ïkž»x½ãMë’[{çoVô@¤ãˆÔŠO·3“^W­áñoÓ pJàáÙÁ Ý’ÃÞ àH~ÚùÐ9ý± +:ÁOc©À1Ѿ(C…'é·u;?>ÛÁ ;–nºÐÞk÷Û'äËáù›“ÛÞy0àÑ;~ùÙ®YŽÕ×Ö?ý§ò÷oÉ£ò¿Io˳ûŠþÍ¡ï)UîE'ï§Ï¡“[”¥E5¥J;:aL¨ +tu5 ÖÿãêôCß„êê%tø"©^ùlD§6*NO®7JRc}XjTNsÉoÀ5äEkÉZY–°^–W–,K¶±eI6²¬õlŒcS<6œJ!4N H 0c)P „$$¡.Ò$-É Ð´„™©;e2¡S2&™&?:Išb{éwweð‹¦;ú³wõã~ç|ß9ç‹æQñÃ7‡váeD#Â÷îÒG˜í°›–h$M£43º#×ó\J†W•†ëDÞˆy ÜP´ÇœYÇëQÌÏmŸZ¨a2ÐNcŒf#೸Çx–ªQjPù“•¸BÖÓ/îYò„”=ÿÞM¦9­ÉÕH>³Û' [Ì/å THsVèZ––î,t^Òes´$øx¼Ä•¢t#8©úáƒÄ£orbR=ÓVÖ,ÿØoäë·~¶åéu¨°ËP«Ojoîxa÷g–žÚ¿úu§—‡Ê—_BÖ7û‘eé’å!÷¹m}¾˜C|´ÿ‹-ûîö/™&™‰7/({B +k,ŽÄ @› yP^™¨DQÑ…m„-*ÊåºÓ‹4ŒHÊÀe! š°˜&ü`–Èâƒü¬p‰*Æ…“Ì4½xµfQy_ùqd¼¸ê©?>×~­'².;·I‰ÐåÊSí'ç¬Ù;£ã×ß85šˆ>-Ç¿ÞóªüéÍŸ[u¹Bw&}y0žfñ”¼u§çÝ>_¤0r—îƒ*çkJs³§fP¶¬ø4\ÅD>tˆe°­‚8¯å£XVq:Û€æÎÁÑXÒ« u¸†3K\<è÷ +ŒFs´¸Ç‰x5«â+©ÝKJÇ!$,0—@œÏëÎÖ’z£‘ +)³j} +ä8‹Œ+9&=8Ž¨çÌÂûñí½ÇHäm’³6åïŠã{v(_‹;ÑíÎbåkoÁ•9¢w =1º\]è +ÃÈ¥“·ÇÈ»¼¦Ñ“].åŒØ&‘ÃÛ9Ø%›: v>†Á¡Åê¤3HTàxø Ü/{b‹3þæn©A÷>—×ápQ“'¹yDö‡#°éämüT^‡,=Ü*gd6áRy”èZˆ¢ÊÜ…' ŽÎM›Wöóf!Mg©˜_i1ŽÇ´#ÒuåÑÚvúpª¯:ö8}&y±¨¤˜‹p³ +Ðü +1^UÛ+ŸÏã}¼ +Z´ Å-%>P)yKUDþüÌF‰#5%%ÿÚŠ.ž«h³»æF[æ4ßÆ'[üõ&wvIÞp’Û~ ;êq nŠ*‚CS³åôáÍ4 É žþ¤~žÚó4¥R0YƒµN‹h.CÀzΜ˼›ç9 ^ä¶@é6 (8Rz@O⪠jéQf1I!ñ§Ù¦V¦ œü¯mÏî]ò£àÔ)4¶›Ò|úõËû^³ªÞºm‹©«c[ +nï¾wG»n?GÓ$UIve +øD•¼Z¾†¯ä|9_ÆgrR êààê´¸ñ¨’ȃ“QY—£³Žâ Ï­ °ÍIY-‚ÚD$&¿vÆðØÈÝgþÀ²G…Þ_¬ŸYkhWTî3Õ™üÃÑ‚¾®µ|^8Rži­Ó $s´J˲²—JØ­RG–»­²Åëã2eœ#h­Î Ô‰Ò5CÿñŸ Ðo-Þà´ªX‰ÆÊ烣bâànz­Ò,•jpôÄ{7ÙÍ€ž¤©•"Á´X‡8³Ÿ#iåõ¼ŽOá‹ò2ô´1Ÿó»°óÓ™*OÁgóQ:‹«Æ"30. +£ÐØw +³\Ó7)„w”â[6ŠÆ¨—`•·¦N1·«¹01ø½¡ò €}7¶Ì:ê¨W¥ZW×àÁgrÓýCPR“æMÖ>j€}N”ìi±^“’S·ÖnÞ¥aºÍ4ø¥'¹¶2Ùž¤3Ò¤HšR° dKø€½}]~û÷Ð’/o¡|"ïûóÖË›Õ{nõn¼øœ´ážÿÔôù ´ð'äÿþ©¼ï/Ìó ¼°]ük×â7¾é½†Š^ONçI`(¢™%UhP¸€³"K'\‚ƒ(€fø,¦Gä=àb¨bÄíðk˜à}™gqéý üYÖ'VöÜä¾2!ܘÍÕm­§Üsão=Õ¸¯kÖìîßvÄ+ÒuMÝs~ul5#Œ×¤gNF 44v×?» ý•§+ùzsãΖ#û úòË +úPà„TŒiú&#‰es40à0s˜¾Ã®Ÿ¢q4ÄÜã˜î"°"%«S’œÊKÆa/µéñúr ""Uî"ËÒ + Y?½&îýx«©cç¬ÒØéµË7VÄ2íÿ¥»Úc›ºÏèý~÷a_sñÛ±øýŒñûAâØÁ@(K!<Jx*h’)¡4@¡¥PmhX) -U¶”–m”(Ò†º©åÑU´¥š:MÛhW6iÓþ˜ 8û®„¦c–,ëʲõ;¿s¾sÎǼ•,¾*¼fÍe0ï-Ò¹÷ûŸù¨·¶w˜=)òx¨póë^ŽálÕ—„À:­ÝªÊåžSJ™30÷¯¯ârç¼ÏC_<½è­o_¾Ï3Û†ëR1h†<ˇ‚¾J‡Ýl,ÓÉæ$åˆ!ÿC õõ~DÁIœ8Cô¨Ðiõš¸&¥NÇqª ‰ñ,‚œàψ‡¹5LÇ +9»ôßò¨·fÞ3ÁàöÖynô23”^aÎq“2 •©ÙÓÖxÜ«seáw‚F%]©ôèSÐOÎõl›mßëb,“½cЙr¿É5ÔE¶ödaÅãÍUC;é›#;ú=—ºûóÊÌTgÝÚÜ>¼ 5ºl-;H…(oÖF=Ññ:? +Õ'%j”ã õ)l8h‘R»  É4®«²’îþ×TéAÐè§ú2¸®ëK³Ž×çþþMŸù‡C¥.Ä—·š&߶liæ³{ßAsàõ 9˲Âw…; êþ3nºzÁ·ÀùyjinrÔU93²aøýýk*HÕR³² ¡*ܘ(ŽIó2`" +#u‚Ñ@ÒA¯BWtXH9¯£â|98 ä$‡4PÆ +2r îCw¬uG´Ç´ð8s +ð"ª8º‰n|3KK84Ëd"•W¤½Äq +®^ÞòÜ”j-g.OutoÚ¶¯NÂUµ8‡Ó™pM(¦wôu‡ì™ ‰éUþÀ‚'ñ¹·ìR•K'×Ëw4Lky÷Õ “l&š‰S勇õt<Ÿ+|rcHÛ]˜é EÊ)2üÍð-FÉ~Šý,F5fëÊå$ìå „bWƒQK¼Q..ˆ]^†_)^ý² °.°•‡NKP9’5ŸbLÆӢዉ ˆ{¦W‚±Pª„'ÉTZƒeµÔÄ[â ÎtTöå»ßœh ] έxì!;aˆTk]¥[}º)³vvdßž™O7±ïÕtú£]z¦¼²ÙqÀ*Ÿ1c¢Öcù;ýaÀWm (L·5Ç—ZÜ9¿HôÓäð ºöRUY§äÝvÂE2j@5ðJDçÖõËL >ÈH¾‰D1ÜD^ôG#-%ª4Ós­VÈš¹«W=›Üõ|s¬;  ÈO¬ÚôÕÖUM³–uÎßÙ%WÍ›Ëü&Kóö%ëÞYŸp­9mì‰/ûwü6Qí‹4¦·‹M¹yD¼èû3³YT%x +ª’n<¥rNME ´DÉë¤r@„W‚#>0JÉz¶?b¥îç@©•Ž\¸þâÃÛÇæ†HÊ0+0áîkƒ›ž…wm­F&¤Ú'ÕxQ{q—ìfYǧ7:gÿrÖ¬ºîé‹wO:r é¥GëÖEmz+ôPÝÕ´™ËéÑ]àÂEH®?{Õ¿Øë(x@ªmL³gÏ/ý`ý´ZïÜzD.ò3€üȨ*jZ¶ÎkµðA ò¾¦°jàL`ˆ8+š ‚„æÍ&%½_.Ö¯!}´‡/<2|¸a:8ª 'SbµkG²HJ,âƒá\ÏÁÕ‡6®‰.Éœü{â“ÂUí/>žó“ª +ÿøú/;ùPSj#½ùÔ1kÿÙÂü•·kLæ‡tTƒº©ŠtÕÆÏ÷,èrÔ&¡ÞÂÃwÈ9ö:6)ÙZF†SCã ÉY4¸]<=!"“I¤„©Ð ¯“Qk€—‰¸a`¢ÃÂATY!ò‡-[$Ì nɃ6»¤ +?E,õ N9g¨›‘­×ƒ /È&&Ûc++³ÙÊ•±ö” Û³Gí±ô¸W„ýì…#k¢½OI;î}8BV±>¢M–›ÛÈ ¯ÖئÎ3|¾ï\ìsì$¾Ä·8îñ%ñqb;v_âÜ|rsbB’¦ ¹,$„…Œ–Ò@Ji …®#eÐ΃%tmG™PMÝ~tU»mÓŠ&Ƙ†¦MìGTÛ¤N“*T¡ +›½çØ „.?¢È‰”÷ýÞçÚ¦ô‹Cm;†\G½^‚$ZÓR£p¡ÑN ÛÄ 7ât”ìÀlC[5G(C(&ãQã¶V1:> ¡¥#aU +šr²½j-b#hÑØ­¡C§È(ü1r;ñ‹Ê´Œ¥š}ˆYìÒCyìÂ]r˜–Î%HÈ4B3Šóç‹#·ô-,¥Ëh6^–›±™ŒÉ|ÏRH,6RÂG¦nÑ?=í+*µµŒ´¡ÎO'O\?0eOì½£ü™ÊÝC‹ây±ãH¹”™ùê™þÍ3ÛÚÆö^½09îÀ8?ÐpždjZ6¼èã«Œ”¥ÑVc?35pæ`Ïú…ÑÝ5Seù+æ(žŸúÅteÀëc-™Û}G}yfãþæù;ÊcýSÃJ26ÙðÜ+’2©!«¾œo‚vV¡rä7ˆª í¥´Yâx•OEÚY(§)­]CQ%Š1X‰€ë6Ç—iŒÞc¹¬¼v Z™ÝRN_A¿ÌJ,uÊÙÙ„8UdÐÙmt ¦„½a¦³qï:€Ñxp«»`]§Ê³9p±¥ÝÓÜÍMäûi˃GW·šõÊj+ÚÛìššÝBTùî¥ô‡hˆ~0å„WtXô¼š€ qJ3§P(‘Î…J®ƒ´0¯7R€%Gw Æœ˜æï#ÈCf‘A‰úÚð‘a /”Æ æGøÆžŸ,õú~[˜ï ß¿ã˜ÿ}KûP/ôxoǶùë5íÿHø||Øæïä×Ø +Ñ«é,â¤é¬\¥;YC «,´h°Î©Ç¥È›ÇM¾ïd Ï +àÀ˜Èœ +ÚhBÆZƒb­G¿‘ÅJªïôº«›fnWŒ"¼9ùÛôgðè£UW,?ú2HîŒÌµœ\×4u­zô.±9ЈéÌç"åq°vÑœ·8 ²äƆçåspX9óC'¼Ëó,›Óªÿî¸û5s nŠ +Y¬QánÄ ¯GÏÁ‹Žol®.%bÍ…j°èk©³€V³ ¡# À” +v˜AÔ‹¾Å`¥8 )9 sW®¢©äB9@ȹßÇJmÈý0®†¿‰Èà’?oÒ/Äæ?í_jœ‹ïèó§*›Á tÞ¼)Ëfx¡%ÿ0•›¥OÕ‘!ßt…ØR>œp×ÑU@нt(ôñ÷B¾ÇöoÈŒ.ÛºÌóÙÔÚ4E»:ö'"yÕƒ·Žƒ?Æx0ÄRÔèqsðÎÑÚ@‘Š-°sNš—`(å‰jh²£R †·FFP¾–{Ê÷¤Ádø=„Ø9y¿ºj%µx¸âCkîœ×x°‡Š"!÷¿R6Ø^KØ —Xªkg³%í&¦ +m½` !Ã9e´{ƒ´Sò79Lƒ…Aà”ÍMÊ£`lnLMýt>þìÞÚôîó¯ÜzñÔK® GÆÝðzE×áŸmYüâpâù‹“§¿z™<÷Ç·†/¾>vséðg/IshÒ—©Y˜#H´}b;CâÆ0tž¤@. \£…«KXS ^äRTœ£›Tl ,6aÚ…jlاÀJ©$3jËŸ¤ +Ž¢_}€¼Þ!iaƒéµ’]ç¼>d>X>ÃÙ†#;?yêÙè¿C#ßïS©"Á™r¼›"*îBÝññþãž]LìLèU™S“¿Â'?Í|¼o"]vÊÊ·®¾—•òe¦ÄØö_Íž¾ì,ÓKùÞc^n rÄhò `#©w¢…AËi8Š-£ ±%ZìBPmRÅRì(àduùáE&¤N¹,È Û51k‘Ö‚²dÏ–Y~CHþåòŽ± âèk¯nœ*š²æ‘ÖgŸ#ïvÝ_Ø]óäºÌ)ôߣuúÒ‰ß5̺ÚãƉæVšÊ«â°q0±4·ë7û꺈œÒf`Ó*"&9d(À +†$Mf­LÁŠrì` zNÅéd<+ªÌߘFÁœqÈBvÃjL +—ÔäÖÚñF΂uÔlÙ˜?Îë¼¾ÉÄ.NÕ³£k¬ùžDßãеÃÞ +ÓW‡&2o®Ôœ¼Z7AcpÀ¢UŒ•Y5*Dó4„$¾Ý'ó#ZôÊÀ-Ó¨H¥ƒµ–˜É7%¢ýøm‡žfpu®+Vk¥d)ÓI¨"ùbRµS¸d4Â/MÙ ÐD›ÞÞ:}¬6`k[?ÅŒß|gßq†ªuÓ•í{}þàŸöž\(dQùàððöþšnµR£/UÙ·ÿèD(¹HŽŸkí1ð{žzb±¿ºî°t ÿÝâê6a%Åz¡B¤&1( Œéݹž*XÇ"5Ô¬¤pJc…{ؤ%d¾É@Gd¤žàÐJAÓº…¯,½©œi7‘Y—ùº:n·n6ïú”,Tz»Žt;ü¦wž[¯žMÿ«+!8wZþ.MU©âœœ÷ÛÄ:-b@Š=žb(Ÿù¨áœ\i]¬Õa?Š@bÓšhIÌS. ½‚ +*t$,¢vÏ µÅ9úßCÅ€0:{ nÁØS¦üîȱ-óuÎà\“ãâ\2ªûóÜ“ëöÕ?þÄ Ú˜s°ôÙá™hÏwªQo^²}Iõ‘ …D‡YàÊ8§å +õ4ëàmf“A¯SŽxXùšýª +"vp¡*@a™²Qܩؤ—h­ü”!ßøÒPSðíÌ J̉¾9OÅž¾-µº[“üP=(NÚíS¢è ãÏÓ_NðdÌîBT SŽQ¤ÇH¿÷çõ›‡Éå“ÙÉ™gà6 DƒèÙiR_ÍUq^®œåÙbyÌÕ€ Õ nÐà…šVîCµÒ×aä¨~õÈ°Yˆa=é‡ÿ±_þ1m]W?÷½çç<Œc0Æ6Æ0†€M°„†zY”Q‚!ˆ1”idI›M© lÊ¢´k“L£ÝPÔES„"ŠŠ¢tšPUj³©Ûª.j#6Ek•¡Lj"eýcj§(³ï}Ï&Ä ®Ó4M“bé£sî}÷ÇùåûîóŠ8ÉÏ(L í±*så½Vë~s۶耧h_´Ö»ÉÚYríŽßu7X~×û‘¯¾¬¾}¤¬|¤­½¬Ä0›YÉF…mUÃK—Þ0W‰ë}úöžø»ßüîë]ÂÕèXIÜ/\i{øÐ^`µ/}P4¿ýËÄûðÛO¡¦o†btÆŸ©ÐdÅ Ì_Rì-*t9íy")½ºQÇI—qÍ­6²dÊú’R‘ûé­Å?„q…âÀW¢Ðʪ\å5a‹Ãö­ÂÌâ?Ÿsw.{=,ø¥¥Þ0}Þã:Ÿv†²C|@¯Öœ$¤‡YËo¯*7dûlE¢öï®þ¨Ë…åö¥«R7j­Žê›*\Jf,WŸn2™ô¦,ñ{]Ž|{†^'RF·™§¬auÊÊ«}k3ÅÌð§4‚÷SÍ¿֥MèýBé¬mÚ[èÙ­óí¨÷úvݹ±&è°F³#;Ãî*oÛ-[È[ÜúB©¸µuköÉÊËB§;«Ú°’…çbOî<Øè~#Ë)íjë{OÈ W<ÌRMqE|zT»E‹o‹W£ÍM5zfŒ~àbÄìÑSŽ!› Q³z0g™“1ÇãræÉŒô{õÙ,™° #ó„ðoªAÅ•km,ñá +á oŒ„Ô PD¼¸4Ƭ'~®÷5êìgâŸ5Ÿ ;¿V^ÜÌzZ#ñOŽ´ÊöFEþxú…=Ҷ‹Çc7¬îÉê·ë´ƒÂæ)v¥¿3»èôˆðššG~öõˆãìSÝ,™ÈÚ¤˜rR0’Ž)Z6ð÷äÂÕ"öt·{ëN£oW‹£O7´¸3l,°;b«W1òU˜^9i°JZr•lî?ùäùn÷xFň'¿W¼ÊY¸cò›ø + Šãâ9u…l*nÊÏÔ§)LÉÊ4§™ô¸€iÆéXN¢J6¨–Éša¾évý$£hoÔÑ/ìâ;AÍïåÆ.Ü1Úñ‚Ö¿ÜåÚ#{¦á{{¦3›bTlÙætÅd”ùž¹ö̸'üxBÐÑA5u¡Û]ýd@R½br·Ë³©Ì!¢åèç>6_hU½ü8”:|ôaÞXB̈½+‘!‘r›,‘‘̤ÝÄã¦KÜ…™§Ö#QŒ$ }žÏàìûý[/íÉØü%‰Jý-N.]5ŒYPe¬”˜¡»±4Md,]œŒ_4ÔÞU?ö¦¼ªKàÔÑ”pŸHDÐ(ÏQ›\G]l†Æ„QÑIQé& b¼m/ä+h_Áø0 +`:¹ +ºùzÀñ/ó¹˜sœ¯úųԥ{@Aìå–nS-2S)©z¥t ºLS¥pÌ,/è®kÏôã䑧È+7£=1º.è5”>#Ö³ëÞ' âeÑu’d7ìžÄ¾S=ª Ü÷Ú¢ÚzhyöÔbýíâ<Õ¢¿ +6D¥iR„ +°[Ë—Ðp]oèGö¢Òu²H£˜ã§€ø45 +çaÇ òI§H‘g1ÆC~̳KZ܆¥›B d7ß_µéF;9¨äö€AØ} r‡?3–RŒû&LÑËú˜ýVÖŸ…¬ÅÜŸ«r“)|-ƒæŸ¤Ÿ§vÕ6Ì—AQ¡…ÜéSªâùG{ Øù2q;!y¼ÈQ.díDî}œWÔºÀ^$ }û¯“©×Ú¿Aÿ±s1_æõ…:áðüóܯ‡þìò=^j-¬B­…U ^œÉZHvÍÈ3Øõ°Õïyäîr¬Õéd 5òz൰ÄÎÏã'´,ß1µ’µ +Õ1Ô +¯‡Õðz¸Ž¹BÇòmÄé ÑD²ô'äñ‡À5ЂçGÔóø£6¹¿|m¹uuC«uÕÞ:õ¿§Jn§/>®Y­«µþ­óT_WÖIe_׋¿§•x}Îÿ;©ù㬉O¯TÔ¸¥øo?ºö!^©|í}¿füþWq&Z +ž€ì…¼y|ýä ÈÛDñ ­?¾í_mxÜ…<9‰g±KÐ/iúâMŒŸ> ÙŒö¤Áç«òCM.ÞK0™sšŒ½“Âœ&SáãßAl’¿æƒ‹”|ñilßïàTú!©¯Nñ8]§ðvÄ˲HoØ×›Û|2U§ð@#í"åQúO‰Ì#D˜gÁøÌsDYe÷\1¬÷‰rÐoC.rãDyˆ¹ýE¢|Øãx¨à0‘3Dä*ÄøW _ÁoQqø;‘ï×D¥X§ ~”!†þÝDåx^+p#¨´Ø·w*ì]ÝAt_…`WMÑÆíüˆÈUøòä!² Ìm*OÐó˜Ç<æ1ÿWðï¸7éyÒ'>Ÿ|yÙÐWB¯óï6ô)4ñÈ7—¦‹”±¢KÐ3º Í•Ðùš•É$£ÚNê #’º@fz*¡‹èÿNB— 'túÏ:_󭮶Ͷ¾ƒ}Ï =óìW7©‹ÚhuR^¯è}tå þ)À4#4 +endstream +endobj +1209 0 obj +<< +/Filter /FlateDecode +/Length 2994 +/Subtype /Type1C +>> +stream +H‰|iPi¶›$€L\‰ÖîfEÁ[Q˜1UàA8‚È¡¢‚ Ä+ˆ0&(ññT`¸DñÆA@Ç«vtVg´¬µ¬Qw×ukgÇ×ÌÇnív쯭¯ëÕ;¾ïÝï5Iˆ’$§­Ú¾yÃf?ÍN£^›m4Ì Ù¡MÍrˆx!…X˜îJ£ T=]âõ[‰†&ç)÷§»¦»N$ùãÛU†\ü4c{>¿(0p±¿.€ËýùÅ .œ€Kùà4CŠŽÝiÊ×e›ø°œTƒ1×`ÔæëÒæóÁ;vð*L¼QgÒÍæâõ&^§Ïß®3òZ,ÌÐã÷F]ŸoԦ鲵Æ,Þàü™þLñúëâãsô*63M¼6'mÖb˜°’j(ÈÉ7êu¦ù ÖÆÆíÌÕñ+ø4]:AøŸÄd‚˜âLøÄ\‚˜GKH"„$Ö„š  "RLÄ: b AÌÄ &4D4a$Ž¯I1©!¯“ÿrJpzäô«h¯è7ñ&q®Ø&þ$‰—<¢ÖR·¤´´Eú\6M6OvÑÙÉ9Ìù”3rYãRêr³¤â–ð—[$†Þ·DbáàXôøA +ªÐTpXï(Ä£~ÄxtœJšÀA…0M }´CJŽîËQ!r†d9ÅÓƒ?wÿý"(´Äc—o®wÆ,¾at²RDào¡G®^áîÙ´W×1ë’“5QW·pr 0‚L'Û@ ~ Á•±94Š AËÐj¤zŒ! +V½€Y Aá°­çÐtñÍæH4ñ†¨Ä-ÙÃàUÉWëÝ›¬¼Á<Æ’`XÜ!dŒE¾Ò¶ %L½#±Sò +ð$àMÂ+lK¨w_Th—~×+y6úôÕ/øÖâ—Èo~àŽŒ¶Ñ’Æ =Í·™m™[9›Z­FHºèKDJ±ßŸÃl˜ +x¹Á#GA°Nñîb'm¼üÔü†•@¾€I¯4Cªãœ]ªøÛOßtõ?V¾[þ=ò^´"?/…=Õ×6 ½ÍÜi+ÈLŠÙ“ÄE ©)Å»áã†Dm~„&¼±6—ÃAáè=¡hFA%Lî0ë{ð\%H‘ã$ƒN4KŠ\ ®´yîÆé« ×=«)kâÁä%;æ!<ÃlÞƒF$”Ž±ôødJ‹~•T5Ÿ³w2@÷eFk‹âÖG:žÍe#¥¤èң◠ÄüÄ0鉩Ëî–5'Õ̾}Ö=Ü‘ßKà0…UOƒxp{ ,Ùka DˆÃØ,zOe±=ÇŠœ¬‹w¬ÑÈB¶ù W%šó± 3?ý‚£âæ>åãRö2Ù¯¨ºÑÛ |‹V é3CÓºñnk•*Þ¨³“7ª”OæÀZö0ÈéÄìK—.Ÿkí:Ê}»ïbÖV¥.'GË*ž• !tw½>#+/'¯ŒK®ÝÞÔ©ìhh¹ÆÊK€{S ÜÉ&…¹¸¯K银FëÙJÚ߶>–=}xåx(ÁG3P8òå½4¬O, …ùxGÝ1r¨…l,:ÍÕ¯8µñh¡ 4ÔÞ¦‚æÇÅC¦kIu²jiݽáWʦo“;Ø®MÁµÞÌ"UYé&BÑdìäiûyfØÖaؤLHÓ‡²[)yo yoÜõÝ»X#ºÜFvýh~Á@ÂÏÙû¸ûè³ë\@{FíyekkýÀ£[E{[Ø.ð–Ô'Åœbjö4iö‘@¥rÈk-ÊTê³Íµº¡!…•wU5ÓÜn†pê¹[3¬)¬R¨«{Y£µ»G AR˜ý­ôYcؕŶ#©¤®}àtsÿDA!÷•}aC.둇R‘8ò±¿çÄ¥N¶ŠR¨Ž&KufÐÐû+ö[KÙÜRÃÎ<&Û|²íÚÕ†'œü£¼iH`!µÐm/Ð¥¡Ø Éš{xÛÅu õ1xE‰ßÀZüìËþŒœ™Èͦtg…¤ï¥»£¬‘Ö,7f}¸¶óPkS'3Üœ æ=+õ©2 ß´`m5¶#G”³3‘n›½0Ãa· §u)¨=‚ËØfÕX¥mI'ã$ûÜVrhÁŸ|ºs÷Ì`kÇæjÔXJY;¬£#J¡WªèÁnÓÛ>k ›YfÈË`Ò/ÿp¿ùöpWsŽ¾†«,­(= ”·”€ÇÈü«X‰WoH¨‚ºêëê¦V%0¡àŒ– °`4IÑÂþ<ò]͹»l>¸JölÛV¾•‰Œ9s© Ç-§Ûªzú™;Ç78ù‘f<Ç lü›ÆêiêŠâ#äÝW´yn,á˲d籫Énaûp¿œœ{ÎïwÏïœs9qM!a³$o‘E»â:J¹QÂ\y—Û¶çãbœ÷x(“wBcƒ‚¯í?f,ÓëÃ!o¥¬“?µÞç~ý%05+Ì}Zz¬~š]z䛸4Èãr< =Íí¾Áem¬ãŽ™îý(°+GoO GšŒ~Þëô¶ªøm¢mög̤7¢˜#‹ä‘Dú÷Õ*}m­¡j¤ff6>6%$;Œq=Ç,¬ùC›í?ÿt´O D¹(>µ‚+(° |î‘en p=zçŠv‡MlÜâFkéV ëwgr@»jÀZÄÀSÒ£òÅ´²J!‹œ DÖIâQŠØ%¡%OàÊU>ÔÙæ¡Ú÷ÜOœnÒÝÞàån>âï ǸD¯Q'à ±OаU—z¡îœ³Õ›[m6‹Â’M†Ø!îµSUV»p±Iç<…w!ßI_å;f™ ø +Äum³¤*wÓø›‚!:à½v¹‹ûƒÑn¢¯®2]›Î•?ÄôÇ«Ìv²RØ»~ pñÿ‰$LX"!ƒ.¾—=*¼7?¿Œ_´›èŠ‡Í¿‘IôbÁ_¸HpaVõÝ@ùÁ½ Té­³úæ&—[†=¢íº-²Žõ®›…‹´äíöuñ‰®øÀ4¾ænlì£Yï¥V§§™ûè¥Äœæú•k™ÂEÈWí;¾OÃT8àYæŒÛP‡·2£*Ûø|Ë}^z°ø‡Ðñó™ov)‡›»ƒš¾^ÿÄd³ácÀP=õG:«^?°C設€gÎ*¦?»zÁ®±ÞVs²¬/ô Ï`Ö…ø¹&:;؆”¼¬Ú®Ãêy\B— ƒ&Þüõû47™ø²³_`GáyÚíhqŸçNµDçÈÿêOP@.ÍÜòÀ\˜Ö[¶_bü¤M ô‰HÁÛÊ"…#®¡ØQGµËè:­hG®qç˜cü}¨Q3VäÁiØ–•Ë2£9r™%õ>t#v}8v“,_ý÷“Wð68ÒN›>þÔb2âl¼[Í|!É¢…’$E%„ÏH MLç%(Z3)ˆ)%eñýÕ*³<Ê ÞÚ ”z”Jyq³Ü©úW€´í… +endstream +endobj +1210 0 obj +<< +/Filter /FlateDecode +/Length 695 +/Subtype /Type1C +>> +stream +H‰|P]HSa>Çý˜kËŸ“º™û6¦f˜D‚‚ÔÔò'Q§çÌš;rΚîbE¬p9È c?樛ŒÊ J$ƒ ‚¨$ˆ»ÒÂ+Þ£ß.:gÝtÕwñð>ÏËû¼Ïû‘•B$i©o¨io­+<87Ó,ðŵ¼qñ~FíæËVR΢ä<#x|¯sïœÞ™áSúûÝö "…$×6\ü€2Ûç  ²ªªò"+’XY„ÊKKK“Xj¾‡E-!1Àö‹è´¿—xÁ`™Tã󡤅ˆVd… *þM„8±\ÀË +È­4û8e^`Ü Ûï."^íüC=ÿY…8?R¼P›ŸSYK@Eäö3NÅ…Onéå/ùÇŠ%ÎS-­¡G ë!”g&Ò šÈ&´ÊÏD?ñŠÔ“!¨ˆ-É[K¤‚‡—41JŽî6'¢:Ç+4®†[ZØÔa„—iPIbRŸÐu&k¨Æ +×ɯiµÂ*3¡Ô’‹P¬úå“gËo¸§î^çBûsnÞfŠ%7E>„0@Žü»GhlmÂvÜ„O,âJ(ØY߆08½àÂÛ LÑ SU؆íaWO×Ðg(³AáH|uÞjŠÁ¹×À̸  Àù¶‚óÃNlÁzÌ%ìÚ2±S)˜¢Çô«pH›¹unêñÝ9Ä.Ê ³^ ÎÕ›"¿aø\T¢åÂ~ 5J´ðH0æ»ÞvµÁçî04Õw8pûŠÀ ™+Ê:07¯í悾@~TwïÇ‹/?ÌLLÝ5à¼K3âÛõÙñ™‰IÛ¬4s'n]˜>ß:j;>Û•oº"Éa ì’$Ý”t¸[ú(éiH‚Ez$°Gú&¥æÇ{ºŒ©1cÚÆ>ÈNÛ˜6åê,ؤÿ0RI% +endstream +endobj +1211 0 obj +<< +/Filter /FlateDecode +/Length 3193 +/Subtype /Type1C +>> +stream +H‰|TkTGîfèw<ÒÛ¨Ó±{\ " ¨òa}00#3‚Ãð!îAd ‡ "Aßû£â5 ñ¹V©°—¹ÇÆÊfS$Ê4ÊD¥&yfñ¿¨dêD™R­U)52¹ŒV ç5J…L«‘+”qrÍ>YüLäܽÿ§”L½_&ä’…ìWÏxÁZa1Q&߯X)d‰Ÿ­Ÿ´_«Q+íWzo;˜ ”­•)”{1 6Ç̱¥f…cæ$Â6™`~,ÂÂqL‹áÇ0ÌV Û‚b XV…ýŠ‡â%øoFnF£QÑ:Q©hÚxq€q3áDh‰Ò…L›ˆ·ˆˆÅÝ&Þ&_šôšºš3˜ÃÎQϹ?çw3©YDöñF~²¬U£è¸1Ÿ=8MBúŽFáïLH†¾¥aÆ™.O“»gç° >É7Ñ334ãIÐm jÐ9Þf"éèkç.Ô\K<¯Riì.O¨æ$ÈyÊ=Ï_DQ4TN©‰Í$ºú‡šœIæÛ§˜ƒnˆº:‹¡)Ö¤ºÑÒOO{ÑJHÉñ>¾¨~DÄGXô¡zƒ¸é‹aáð$Ì•Nþ„dn¾ñÊÝìÅ-DÅå†Ë™É«þ>\Îr7´9zy/ Kt½ðU(zÍaxÔgœš¨«¤“¯>Öö1à00þ~üóGŸ”p1õîå¥:¥/‚ž£?{úh4jöœ/Qv±ñ\3P¹+tãú_.ܧ¤&†¹\H®ÊŒPE‰†.žÝðd?5 +êŠx+ ðïvàmíÄèÖ´ÍÈSŒÔCÄàJ/—\,«]”GêÕ9jµÅÍ­í—§8LŠxÏ)–FI9j'òÊ/å_cÀ¢%À%—sþ,dmàö²’6É›H¹ò(¥—%ïÞ5(oÙq‰+ ++ c3ôút®>! —”.ÀSuAO¿@wßJõó@E?A*Bxì´©5ÄRüc 1Fö€Š(í¢; ” &NÞ,¼y↉<¡8ujOÚ¾PÒŸÙÇßé‹K1¯yEuóçÇé4Uˆn;ƒÖÚýÖçoïÀ±åîáC•uíL/Aui·—º0H‰,…€%š [—”\å$à’ÕÃßêÆŸófã¢çúèí¦ìïX𾪭kû¾j Œ¤€«þÐÌ6:^Bó/¿¬¿mç†}é/ÏUå×3à7fœr8ô¹µ%òWïËÍOb%à¯ëå¿éÅk&xW"ø×”;¼Ñ"AÖ1(æ#¼À –Àáï=‰I1o¸Qª_jbMoj;Nýcïß5#ò6g_y¥Mz§ºùUk}Êá³,U_.Ý:.¬Ä‹A œ]—Úum#7®ª‰ö“nÝé°µ¬\ÁJ²„/7)È+bD#ü$D>>ærA"VeRðg#ðtDôlj =½DŒ”ï7 Ö€AË/vš¶£å¾>6«¼à +–·K’uí1Ép¼$íæÕ# ¢ÒùuY•ú›uRðOF¿C¶þAi¢Ø² âlÕÝâzæm¡G—)F¹–¾ÈTJ5x6zýÜÝTU{Í#©ôâ p¡©†#úÌì#ldFT”³[yáÁkÀOÿ¤ç$ºe2ïÚûRÌû†¡f„J‡eTCþK"ô­iIèaüGpçÀ&wÍ/h.㬠+‰åôðÀyzP(¡×Ç°ãPEçN°¥-71¯×þ…£h›ÛJßu­i¬þ„¾°P*Ù–ÙÃc=x­ð)m~ uš˜/˜Ý`üîÑ ˆîUêŸáʺˆ¢Ä]'Cä¸ ah9²}c Öíß”ã$­º^E2¿±{qí(\¡x›©pÕéÅדªÝ4ÇÆ­Îå͘-˜¾xxóþÖ Íw!^Ù•9 ·¤ü Øi:ŸÎÈ9œ}˜¥|…(»¿üüûý—ã÷vŸäòt¹é:©DŸÙÚÀ² ¯ý +‡D|$$Ó¹_ŠK¥£rà#Z²‰‘5²]Ëû¿-)¾Â¦·1Jãôi˜é¹Ü6ºµàúà(ó¶Ü98GhãÑ‚vVwÂú^|pX®üj0íD¦çÅO¿îxVQz4ë$[ÔE¤%Ä2‘{¾ØÃE*Ò·l–j7{wM¯KZ²–vÂT·n–„Šaj€_ŧÒÔä±M„ž¼‘¼ë¶Ð'D2{´I\sŸ5ÕÔ_à !$’øì\VZ¶o¦å¸þ8ã;¦µ«øö]înÝÙ.I¡JL <4\7T³è +®O;šÎ§†«CþCcµÿ4uÅñ4ݽEeÍB-c½ñÞ1~ØC%3èØ(0¶hD`!#£¬ˆ8ñÁ[hi Ð"Zh)1Œ âV±<Ú‚"E`Ðl2 Pš ¢lq1î[r0Ùé6þ€óyïù|è×'Œ`^™\X™±žþ²™6¨t¥J û qàá8\ vq¾.°“-ºÆ:–¾Ùl¸G-wŸcP y ˆº˜Y¦Ì£s•2YÉ%/-Œ‘|dÂ(ŠÂ¿€ã3 œw]‚ 8âëVm+ð>±m 3 +ò3³Lù=×Mת™yçEšáß3P™q’‡ñ~)Yƒ(Ò> +b¤$þ&ñš°@,$þ$z ‰KŠŠäª¢7´˜¯­]¾%ñHöèÝ’` °‚áÄ‹8T‡²œé"Âvp†Õ³îݳøqÁÈo\èq— ‘Èÿú|¶^‡]ðÚ‡w>C £=!|>ðâÄ„ùüÑ‹uûÓç¸Ð19ÄþäæΫw +aÓ$Â5hÖ“ÉÝwsf( _8áSx;èO´+4þ|Ü9Ëx\µL„’z©>é3ÑšTÈÖ6Ö6ЂÍÙ–»ÖIjãö‡ï!îÆ$M3Ú-Û(⣣ØõûËêÂïsÈÿ¦Ú‘æ™NŸy(]»û~¡Ah”,ÖW–Ò_§¥ÅQâœéuÚƒP…ÿ~úçíÛýžºRÔ…K¤ÆRmñ30 §ÞÌ­Çp|;ž0¨õ•¢JMEÕeº0%ëB¾"O–]"«0}âg2XVËä˜uõ?øÃ/Ün¨Î—¥_ÎÆ“_Þ­²¨{ý¡ßQ3O8­î}ÜV_÷¾yÔ§'M]mmW!Ì~ºqb›8 +F-)Ë+,ç¡dñããÇ!8Ëéƒt.Þû‡„÷‡‡ïO|5|òd²4NÇĤLÐü¶ÿ.ìGÜp¸SrÄ":yK×æÖÍ•åFúåÞµ­c¼¶s‰l™T”q–I9S)’ÿßs*Ö­`!eÙN–DéìC–G·§òÞUã½gn·kËàýªû›½îá? Æša¦ +endstream +endobj +1212 0 obj +[1228 0 R] +endobj +1213 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1214 0 obj +<< +/Filter /FlateDecode +/Length 299 +>> +stream +H‰\‘Ínà Çï<…í¡"iÚT•¢Hk×I9ìCËú)8ÒB¡‡¼ý ®:iHðÿ±1¶<6Ï5ä‡U‹zcµÇi¼y…pÁ«±"_ƒ6*ÜwiUCç„$çvžíGQU ?É8?ÃâI\ +ùî5zc¯°8Û%ÈöæÜhdP× ±§@¯{ë™ÜV&» óŠ|þn|Íaö9'£F“ëúÎ^QTªµ@«ÿÙó-»]zõÝyQ­ãå,#!>1Ÿˆ >/ây±aÞD.™KâÍ11‰¨Ê<1 ñ–yyǼ‹¼gÞG>0"sœ2ÅáʘîHLBÌï’ÄOݳߣ.À£vêæ=•-µ*Õ+VÊX|tÓÈ+Nñ+Àq"m +endstream +endobj +1215 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1216 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1217 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/C/D/F/O/R/a/b/d/e/five/g/i/m/n/one/r/space/two/u/y/z/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1611 0 R +/FontName /XYUQDJ+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1218 0 obj +<< +/Filter /FlateDecode +/Length 295 +>> +stream +H‰\‘ÛŠÃ †ï}Š¹l/ŠI6m(H ô¹Ø›ÝHtÒ +#Æ^äíwÔÒ…t>™ù‡ñ—›Sc´þá&Ù¢‡AåpžîN"ôxÕ†å(-ýãO9v–q·ËìqlÌ01!€RrönÕAM=®w +6WX}Û5ðöníŽh> +stream +H‰ÄVyTSgÿ}ï½$,$bÂ#HÂBP+‰âÎ" ¸”"Œ (.¨mqjkëB­Z·Z‡ZµÚq«Z—Ú©­ÖjGÎŒÌéé9ãÌœ™s8sf¦‹07©Ç:ã8ÿΗ÷ò}÷~ïÝû»÷þr¿€ˆÆ*ð˜6µ2Û›0z1i~G÷”úÖ`û®œêB€eüßê—.6u”·™Y2é²Ûçµrš‹A@>‰ä_ÏkYÞøõæ @D*`t6Í 64n/›ˆÕdÏÝDŠ¨½¼‘äM$§6µ.îܘ<.›d‰ì×µ´Õ¡ZÑXÕ$7´;ÛÙ}|d†0™[ç®ù붑$o#½ím‹‡º„"À>&´ß¾hn;fv^#yfÈ>Ùø-w2zv'[ fü0 V4rZ€ã"ð?† ¦´ù²ƒŸŸÝ! ÞÑQ¶hÅé–ã’f.üÌ¿Úä™\¡Œ£Rk´±:}œ!>!ј4sîü.~xéòGråÓkWo|~ó‹y–¯x/_¿ªã….¼þ6Ïn +£[ý +Î^ïé\‹`Í–Æ;¯î<Ò²tᢶöÖŸáö2¬œ¿hz©~nókûwØ{ðÍCo~oõõSÁðSº7‡¬ÜoÂYQS^xtaˆY'Û"L56§¤$ …³¹U„µjSìCíãC‡›ìevŒãv„}úMª(‡P"ÃEœŠÄe|„_âc\Á'øWq Ÿá:>Ç ÜÄøná6Z°ô‰¿’Ÿ`1–}bÑM+ žæ6´c.ÍóÐôðéÆÿb¡ù1Í|,A^¢Õÿ;r9±MM ñbú`Æ`îÐWôk.àg +W„™A6‚Ë`"‹a‘ø¿Ç]|IïÜ {—ÉÇòü¡ê%¤ûýªæfªðªz1aEØFÙk$~Ì&ÎT¦·üä«X˜O Í ÖšZùÙ™Ufþ"|)HÂAa«°YX)ä +Ã…þœïçwòëùÕ|€7ð1|$ÏqƒÜn·–ëâ:¸Z.ƒS³ëì2;DZ=ÌÊ´!ÌLNýjÿ¸‡¯‰àÚ#1HÃüˆÿQäSs>Ìž8½.V«Q«b¢£†E*#r™Às ö~â»ÏÔ=§[ô6V;ìýtšøª:%؆Q5áiLx’"3k$æSÿ‡Êa·Ñ%q™û_lŽÑÛÇx‹×ä75$ÞB³I|bÐÔÐçñtWÌ4ú`Nª™-‹Éß$),¥A å³Q’ùFÖƒ 5•1[üƘ-Þ#߶'[6<ñI™Å[|ï±—‹¿ «4ZÃ(‡ý…MgÏÙ]*ñ¾`sÝØ:¯Ã^j’xÑÛÏ8™o©Oôu‹´! ¢7^Š•¬Å—6Kž )Œ[*1Ò:´”üFi|M$½d‚‰Þf‰½RTf¼Ãn*më°Ÿ¦æ(:ï%ýB³ÉÔÇñÝ^QbA¯Ÿæ© +Hžºš?‡¶|ÁͅÞå°_vØ‹%]¦\è„“…Ržz°èIâJäQP%ÔœÐÃÓ^‚AÎ)U¼-¶³Æ¬±Òͨs›¿÷Êè7 ç¾ó†ÎÇ}CÿdÇøñÔÃã‰3‰±ÚèHDDjù°­8p-j“±Ä–,:¹˜’Åò]î’ËË%¸`žñ§YÉ`3ƒROý#JÏrÒ•­ÆȆ1®=].ȹQ¡¨*ÅFýGrçk\YÌšO1¸Ã— +E QÄ0Hbc)r¦‹ÓÓ64êTª’\¿;;Q©ËŸ¸®L5FåøcÉÍ5µÛ‚ÑÑåüÇ~}µ®Ö´ñ_LW[l[w÷÷?ŸãøvŸc;ŽïvÇ>ŽoÇÇŽ/±ÄIN'uÚ´tmÚ¥i×Û’6½ 6ÖŽ¶0ÑNZ»¢1-bCƒ­Õ$„CÛ`…î $ú„Ñš´ñ0‰'P›òÿÛiÙÛ±}¾ßåû~?CŠžÓþ ÂcÝ—gŠ\Ì'R¾rZ`4Žæ<Î?Ú7Ýøòƒ³/ Ò4dýWü&À ¦?ñ{ÓÛUmÒ÷qû(ÔRVü[OÑh4p}à ð=¤€ÍF,¨[@FX—ôvü–Î*UÔ"ÐT1hQxbµõ‰ªU™º9¿ö`²&õæ?ÔÀ&«Ôd%ÛÛä¸fdºù(ZŸŒƒF“‰ÖqA“ñD ]­¦úÜÈHñŽcÁ„çrAˆÊè:ƒ… û£;L€Öd°äö`]Ò« ØAÝÉÌHÈCÔ,+Ù.ëf`7eãRËËÞ]žmØNîºùœÁÅ6]›Ñèæ@»¸4Õ”]ýÞÕ>ôçVÖo¤4šÖ³PxQ“G}￉ùҧÃ(ÝÀó×u µfl0 +0l_b™¬ÓÈse¨Bí)·U­p[E´¬òkYÇ ‚N©œEcEèàÁLûc®£IU2OäE¢Ý zŒ'Š ¦fÉÆ'QÇA‚—*¢­”,±g¨bÊ?(ØÛ¢ë|`ꥵ٫í¶\ŽòÆ8|%XÚ5-ן«ˆ‡>½«Ù]ÿE+ß•Œ=449švšZÜÜpZ­V©Gxi½øLÁËïj? +Öóý\W?r{Íÿ¬n¢6âÁX-;Vè™áét‚Âh%‚V‘q>†õÀˆÈLçkxj\/²¨µ9™| +Ú9ì².ðmÜ%¶×GONž$— ¢*¿J®FˆíX1Û±¢‰¬ß–:è•Q°-2 Á@›‡ùÒ`$dÎÍÀÔAdp@]v2,ïÞlŠÞ,¹"„ÂÏ!ˆäZ¥páCÂŽHâÉñRÚ%G'gØÑü;´Áå޸ΙÚAEÓRŸœMGLâÒÅ‹û~>acŒ):S’w­ksò½Ó…B†s¿ýàÅ?Þáhl¡Ù·Dó“Ç”ÆI‡Õ ʯ̩©ÖóZ0ùþ•%­?èã¯ÎÌï@äò\¤±öætû=ÂD ïÈíÎŽ×kEðÀ;zQŸùO‰F‰Â5º[#[Ž_°Åp \sâö–“¥t¯OkoFúÖ] +øUV$Ox»íìÿolÖlôò»‹‰ûün[µˆúF ÕÙå¥!A.Q£U¿©í07ÞÂzÞ;Û0Y-UááÝRÒŠ°”Hwäñ¿¨ÓÔîŠ.^ †|‚AÇôÆ vÞ̇4e3aºúfÊ-1 vÒèèP +Øí&Gˆ äòŠ¾[ÂjׯzV}"Ô)ïæËz*U(o}J¿‘œnÛ'Jº‘r4øØäØŽáù+Á@OD…÷l³Ca‹W°Êíû¶YñDÿqmó ÿT"`Œ—9Yë—}µ\8´u\˜¬ÅòãÏ)µç\¬æ†L"Æ@»ìCD@6ÎyHljupŒt/ q"ñ»m³â2ÏÁ²hëÕ«¯­ÏÊâêFª~`ÿY£Ð Â;=+Ép*¸p©½$ôX=ùfæ£çNíZÖÈî߬Ô$n¢²¾x'½ÅfûÂã¯h…qàzXÒ5kE”¼vÊvó<2AI`ãÅœyÈ02Ç+6”‘S‡rp¡ ;/œãÀ¢ÊÓ0&‡ö Þ¼Ù >@†Ï©=:ÐòO°)Ð&¥ "eÑß‚Ç ö¡ñ’`_kÄÚiØS¼p¦HÿÄ;›_‰ÌÏbð§¯8•ýc–ôØÛ.Óð,º(W8éÚ~mîà³qmxë>M/Ëß³KnågG +kYõØ‚‹ü³7 ª³*|çÖÃßO(¤y®`eV©ø?]\WªeýX‚ÅÏ(nÜAéX²×±„ëEÑñhØÜÃ!÷Œ_ÄïÊÝJŠ]ÀwßB¬ ÝÑÚ²ÔƒÊã,x##0Ó¦x±•UÁ¹q/°$B#‘,lÚjFzšÖñ9èmáÖ;{À娗⽦àuôˆ©‡¥{¹¥ +,ZÞf:Ť|÷¨˜Qõ¡nXt˜pH% ˜;¹I¾#Á‰5Ï÷YÄÈä+00@u·A7:çMŠŒ ,x{t^$Q\ýZ‰}ÒôHiuV„]©*_‹Z=))¤´ãéÖf%c(²¢_þØn¼ýÙåÛÔyÆñóžsÛÇ·cßßm|¿߈퓋0$CLfX)bƒU rIh«Mab6ÚjjX/+EY…64†4ª2Á¶JÛ‡ucR? iªø0M*BÓ´MûP1gÏ{ŽÚ-Ê—8‘ò<ÏûþÏïŸê¹6'¦D¥òâR])tá‘èÜÝs-’IT©S '=f¯?¸þé2Ë™‚Ë{»ÍýÏA"ÆÅ&²|,$ûÝ ‹Æ›‚)¶FÿpBÂHŠ)¬%€86 WƆ´ɱ%}Ôåçål•"ÓÞ~L¯qT,ù  4ÈnuƒÅÒiæX.š7Ó7~À+ô…ÚÎÕUØ™ËvB#þÀH°­ÉµÐÛ‰(Óä6kÛ+ý…jÉ×c!7ÓÍú‘ˆ8`#ú8Y…¨Šér&ÎÑ\1ÅOáb쌅1裷…'†LE–Ì"-@à"§t+ÐæÁ ÁêÞ(žAã’‹¥ˆLƒ¼t9ŒCø@Ô¡¯×H#ãü3¯ï1Óo}¨pì·pSÆ]™ìÖ©â?|[ÛÉʱ#ÂäGSš‚8¹z¥­Š¤©—Äá–®øäåÿ\½ð!$ˆQ·§ÞÊõ…wg1êøgçþ–ŒßD9I´ 7'ƒÉëôl,©ƒ>Nqøj»e6OIR¢=|qêÝð¨Må«Eo¿c§a¦k«mDq©:5 ÕXKPÌ“kðëÿs( þ² ¼eßT½¦§k mEgs”’µŽè-9+KsòçP“ƒá=uUPJ˜®^“’úÝhÑ â·òä’0Ž†Ú0|=Z2(uCÔ ‹KÃì@IN;P8/™‹Åº±Ðùt¤“ˆ¯†ôÉ€TäφрËËi+Ò%›??o^õU²ÕñU{3>Ë·*k&ѼxH`ŒÞ^1=ݹ~¡UJ댮ùŠ6”4önžeI +艄¦æØ‹gÜ,wòe^¯ñ}ë`ÿr¬hUÁ¶¼0†&VÜô\i{~l‘ºdmÿG÷úÝ\‚m­S;=“,3â6=bµ*䣪à#…°Ÿ*7Ìÿƒ42IÜwå=²¸D$ó‹*êu{"žœÚ–Ê`æ Ϣǧ¸Ö뜧¦S{5µ¬ÀaHQÛ÷é×ÜØã +j,sëQE·)­™»ÃŸ®:ö„djØi,orÞµÙš_Ïœ[uÛ;žô÷<”eFŸVªd¿Ö†5åjغkR®Ðҥˊª\扡O,xù@`½—çŒRå—œïrIÜø¼RäßE ‡\áAÇÉ ‡ü{¤“ž¹¡ôYðÈ®²P• ´¯Skóf®Ÿsxþf‹Üf‰žmã׬¼ ņß?™jc¿¥žùž…VšqÆià‡c–ûž«ú}CŠ&w0#÷#)}Œ^å8bÚILë6ŒH-Hrü°áx RZ§¤S7(FƒôFåKR¿‹mƒò&}íFŒý¶Ýì÷iöÊÒuL^­…<ýˆ–7Ä„~ '´q´ª“èÕê‘Ö.£Km%å½3úçoÚŽ#®v#i¸8wËœOª)³Mi-ü­ÆKêÆÐÌ!f<Šˆú%ÇgVß ~œ /¿\‹ní–4®|‚jù¦c¯êd.íè¦óFE§1ö…d?¼Œò¿nz9Ç÷*7i¦NŠ6ÔWjX¯³XE›8mt/¢¢.j¬¸#Þ—û¥ãlgßÖãyù;úüˆ:™riÆÝeÆ6Æw†Y‡Óèÿ­c‰[~“ŒiDŤVŠ¸l“|ÊEĉ״sŒç¦ÉuœuŽ >Y³GÈñ(ã¾7ŠœiŸà{“Œ7ÆÜ[…_úÛ+òaMÓ¦ý$çɵ¨¹:ƒ¸Åe—àÓä°…OcŒ6Ô5y»….Á¥Ð½ŸKÑš|ro¬aLphÚœD·±ƒyÚ6ÄôoøžQŽ×£×Ø@N™§àÒÌMä:Æø*5£}DÙ„ Q"Æ +æ½-Û7¹ãäÓZÂ6ÌZm495õzq=NYäz™kû"±#Œ-ëÇ7·µÚþLÿ1¤W²W“ÙÅÀô/P÷ýšý(Ï•)À¶á¯#g‰…û ÷Å,òîùߎÉ, +¶_…u€«Œ8É¢xpw_ó>Jw¾—«È˱ù§þ&èÃW÷?þWØUì€jî5y¼çQšÅ~Ž‰Ù<»è +aý.‚"ö²²Jy¡%ë”WX²A´RSRs(•ÍÉ*1`É28bÉ +ǧ,Y¥|Á’uÊ7-™>%WóžÈŽ­}¡áÍ©T 6®íX—Xm«iïèÙÞ7˜Œ$6=Üš±æ¿}`ÃØŒÿ¨åo˜ÿ;° ¬A”'C ÚÑÃØ{°úƒHÒ6Éþ&Äi÷,ýˆ¹á‡´ù'µ”,A?íc•ð4ÍÏkT—»—å»ÔÆ´3¿<­'— (ét$¿‡Î*+_ð×Ôü,À 'r +endstream +endobj +1220 0 obj +[1228 0 R] +endobj +1221 0 obj +<< +/Filter /FlateDecode +/Length 238 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛC±›ÑC0Œnƒ¶Žf{ÇV2ÃbÅ9äí«¸¥ƒ løÑÿ‰_’Çæ¥ >ƒü¤h[ÌÐûà§8“EèpðAì+pÞæ›*¿M’áv™2ŽM裨kgnN™Ø<»ØáVÈ9$Ø|Û-ÈvNéG h {ônÒ‡dÁvã¾ÏËŽ™?Ç×’ª¢÷×06:œ’±H& (jÅ¥¡~ãÒƒûׯ®T×ÛCÅýÀn¥*¥Wux,êéµ°7×:…—…{D;qºr‘k äÞ–b¦Ö'. *¢rW +endstream +endobj +1222 0 obj +<< +/Filter /FlateDecode +/Length 342 +>> +stream +H‰\’ÍŠƒ0ÇïyŠÛC±U›P¡Ø<ìëîØdì +k Ñ|ûÉ”.l@ç—d>þÌ$©êSíúY&ïa4 ̲ë 0÷`@^áÖ;±K¥íÍüØÅ¿Z/ n–i†¡vÝ(ŠB&x9Ía‘«£¯°É[°zw“«¯ªYˤ¹{ÿ¸YneYJ &ziýk;€Lbئ¶xßÏËcþ<>2û‹1£…É·Bën Š-®R\¥gÿݧ9‡];óÝQ¤ä¼Ý¢A®˜+â3ó9cŸŒ|²œ9'VÌ +9çóœÎóóyŸFFƒœ1gÈj 2û(òQœGQµgÞkfMÌùåW¬Y‘fub>³~EúÕ…Rh®¥©–f=šôh®«©®>2c¢VâÄåsNæŽ(>‹8šJïàùrüè%FÑ'~«x¥} +endstream +endobj +1223 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1224 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1225 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘Ýj„0…ïós¹{±DÝnd!eKÁ‹þPÛÐd´CÌ^øö$ËÐ|™9GÆ~iŸZkðw¿¨ŒÆjërõ +aÀÉXVV  +·Sz«¹wŒ“¹ÛÖ€skÇ…I üƒškðìõ2àžñ7¯Ñ;ÁîëÒíwWç~pF €¦#}è¥w¯ýŒÀ“íÐjê›°Èó§øÜB•ÎeF-W×+ô½É‚Vò™VÃÐê}ú‘dFõÝ{&«(. +Ú˜&.3—‘«ÌUäSæñƒHL“"ëEÔ‹¬Q/²^D}ëu¬×¹^§ú9ó9 |›,ŽN Ã=uõž"Iײˆ)‹÷›r‹rŇý +0øˆÆ +endstream +endobj +1226 0 obj +<< +/Filter /FlateDecode +/Length 4162 +/Subtype /Type1C +>> +stream +H‰|U}TWŸa˜ ( šì`Lz2³‚߈(Šº´R@üŠPü•(A"H I jÀA]? ò!TEÅ0€‚ŠŠ«µ”.¥\µeK»êÑ­îôAÏNp÷ÿÙ=3ç½wß½ïwïÞ¹wpÌÑÃq|Š%ëB"Ãg†eêµêø½nV¨v[¢Ñ®bÜÎ…A³PÑo~ó'¡× ~óéL)FḣÄÅmèuÂfmÂæñµÏÉÁºTKÄàæ,Z4×Ë>Îxqs}||FÇy\`¼n‹†‹Ê45; ÜŠ”­:}ªN¯6jâ½¹ÀädnÂÀé5>ݾù†!§5p­1Q£çÔ¢r›V<¯×ÄsF½:^³C­OâtvÍ[bÂÿqÅiS8‹‹NÑÚ¥(£¸iàÔ)ñ³Eݨ—­ºRŒz­Æà={iÔ‡™©n!¯IÀ0\|0'Ì•ÀÞÁ0Ã&a˜'…ÍÂ0ó%±@¦Ãð}ö®h, ‹ÀŒØY¬p|:ŒgàýSt·ž4±ƒ(!ꈎrÇ$Ç{ä2ÜI6S“¨@ê’dªD+ùÞÉÛIçŒ;/sÎtîã8f˜£cúÇzŒýóØß]‚\Š]ú\=\7»Þ¡Ut]G_sspËrû}\Hea»ð´GÏv¢ÐQÈ·E çSP„:´Ž’0D!]cÀ. ‘ S›F×°‰2%\eì+d—ht‚¶-47IypUýd[È䆥"Õ4nP, ‹œ¹ædµFEg‹Ù y4mbËro³ÑÊgmý)æ&›|4¡Žm£Éö– -¯—Š5!Çoa«J˜3K÷ؽ +ëAg’ö[à‡6Y6¸¸Ë¬EOȃÔò†›É}ÊW€?‚˜¼àrõ‹Ð„%±Ð;ü‹ˆ¿­@] U]:¦¼èÓ¢Õ÷§¾´v+¿=9°2+:9¼ÖöMºª ¤ ¤XAkÅþ·  oj»K'cNKÈŠT"âÝñ7DÞ{̵úìݧÙòFòÓŒ˜ò“]åQM]i\dò.ŽXÌ›¾7.Ûé¸T:.h­eQ§² ‰¶(K !‹/*B#œ¢$$da”2_(`Åq£gÚŠ·\¦¥Žvïc.=gn‚œ:gÎyÝs¾ß÷}¿û}¿ß}$\´p!¿7z°ËZa£ù—_©¸Ín±„› ‹À>-Þ&‹>³š„Ó— £4\8²LéwŸ«£t¨ÚÒå¼3˜¶YÛÞ"ä¾ÇãÇ F›÷©†"ÜÁ¹¡‰!hr£ž€)à×W>¿ÙZE—jtJ¬  ¤ÙÁz‡O ¾èòå€V +/)7ÓÁ¸Î^†Âù÷u×m=a¦òìõrɪ‹`)]j|]~öû“À¯áÍ­Gh>Ì°åravàô¹Ëú‚×ç"L +Nâ,·G-……Êhç•«³Ê{S5´H¤ß(”„ˆÇÃpþe(v‚õNn¹#’†a.˜“ +ˆQíZžsÊã{Þ!çé+a0|ýÞðÚý¾w­û#lŠ^¼#Þ\F©D¼¬–u/yþŠ±½ƒvÚëÀ,!pàÄp—ήk¡b`³@õ©òðA*$'\JBÞÎÇ` +MŒâË»ÏnvGGZ©2µŽQ ù}¨£]mèV|е²¾ÃH•XÌ¢«óW?ƒ³VEˆC?ö45\ü—ˆéuqáB6I`(3–(bô[ÛõI±™ý·¿ §n u}-§‘Ò Bþ¥W³MlÈ(äIÇuc“ó„¡}YƒöÅ%‹î\M.†37Â0¸`$L¿×ß鮡K±ç¿bŠ•Ejj“$B´ iËî§/Àœk#ÏoöFmG†ŸòáÄuäYo_Ä ‡h3fÒ™t•Ôí¿Jÿ¬Dû}?z¸ðèaòO»ãÂs=µjG=,'èvÇ ù¿E¦»Æés›Yߎ¼éŒ†%¼Ü{û«ÇúSô¶“Ww ;š®Óª<eqðª²÷’ÈßG……DžIþ6ÌlÊÜ%ܽ/eC²¨Ê$A¯÷ t¹Ýç‰Ë÷ ÷Tg¯Ã~<¶<µ:›’šóÿJ6Vû‹‰>ÜÊ+ÎSg“1 +Ç ®€7ìð @ãüîüöÏBÌBo –èäv!‘‰‡=˜¢HQÄPqò˜Ø-ä;ißü‹5ñ° ‡Ûž¥Üïíé¨õh®¢ô¼LÛªµ· ù™%çÓ¼PFn=‘eD8 b\Šþ½@4'åíÆ »‘a+T{Ô©h¶5N¦MÁ¢Gbw•ôsÓÝÈ©kÆÖ­5žà@oðÀ‚ ÛÚk>WÙ ÛeŠ¶E>€Ö„„pc±÷`2’‰+HD;ªédÜŠ Ë@m@"ö;X/ÿð`L^’ÇÇϪ]ª¾`PÀñ +€O·È×æI³æÁÍPË;Ýüš&ËIóéy:ÌzÀ’aK¿ùç1¸Á@ÃÛ…­ÓYJ‰"åR6¬ËmX¦ðS'WùVxCÆ#yeºÃEÂ"mQq>•³sjŽ43s¿*çcj€¾¬¹ÒÞô·Þ¶‘ à-°ü'=f¦ÁËŒ(ooA:þä´Æ®iFf×øï—8¸ÅççkšËù9àeVUSe«ªàqÀÑ&üI:µ˜"G)SJaüGß +òì>§¸í蟭^ æ¶Ûq~Ù+†¤®—ž$sqRX×€?n¸õOg+ÃX©êVžYoL!!±3΢¼´¤K;N´…qßpË<0þvè¬Í|ûA£¹°°ÒkmŒY›X¤ÉH§Å"Æcm©Ã‰‡j¾ºS[}èP%E\3µòˆ‡ÇÕY'ÒÉÄÔ’lzß>UÄB¹7#‹€ObÐòÿ™”%®-Û, nxªÝCÂ9‘Þj!cÉGçNœ;ÕDY«j+>'ëOæç›i‹wBùQe™ VeIèÔ&b‡0çÕL® BXDHmNÜx|òÖSg ÃبÿeOöª£7à›oƒ©öºÂCfêç¥ìX(nÌH®H w$«2÷ÓÉ)¹‘„¹/)ÌÓsR=xW¯××ê1¸WG£#…,õù¡£!ý4Ê–’4sZÉÌŽéì °ÉÔV÷è +endstream +endobj +1227 0 obj +<< +/Filter /FlateDecode +/Length 5206 +/Subtype /Type1C +>> +stream +H‰|U}PSWÏ#¼— ð BžÍ{Š_]>‹¢+‚‚°"¨TEL‚ @AEA« n«¥î‚ŠˆŠŠVäCdü Ê®c«(;,Öe[w•­îž—^œÙtgö¯7sæžsï=÷w>~ç"[A®K££“’=c s3R5ñ¹:ï]¦ÆºÃ !¸Ø +¼ƒ‚yºíø¯9$Œ8Á¤ìît× rE”³ÂõÕdZJZJFz¡>]›í£NÕc%-%s©N]nMÏã?ö÷²Ê€)äÅûûùùMÉ>\£Û¢å + yÚ,­Öåêu¹©yZž™ÉO¹0ð¹Zƒ6w§Õø(ŸaàµyéÚ\>onÍÀ÷sµ>/7U£ÍJÍÝÎë¬;ÿ£¦ýŸ§øŒlûâ³3¬ZB6øÔl/ö¢›zE­Û‘—›¡5øøF&¬)Ôkù…¼F›&ø9Úˆäv¢™R‘—½(ØFá$JŠt"â ±hN³(V/Ê5ŠnÎÄ.âºÒæM‡8Dü­l£lo’ΤŽjIMâÊÃ"#ÐL¤ +só•Ð%àQ@€8Èá!ø éà¯ooc ívŒ²<1 +’§1·Bj8“D1ñç¦ }÷•c¡? .(Ä«QA6dí©þã×Ù»-Ùš5+ +Ö¹xD PŠñ?ÞÍ^™¬Ö.‰m¬Ñ[ƒ_ àH ¸ ³ÄÂg®àû¨A†VIq’'çÁ%ä+As 1IžÁ̆KuíõîUTYj¹Z£D³¬xíA ¶ÿ/ÁO,è-*ýJmFÏɪS'MçXp½¾%*2*+&>þXM6§GYpn°p˜…¥¯ÿ ŽCY}Ég¹³cjbÙÝÅå{¸šW$¢°g[ÈÑk°ÇÕò„Dð -s™¢Ê +]ùìÒ í+â¥ËVlšh%ò}Š‡/ÿ °¾±jSÁ¶íª2ªnèö}`¿>a:VYg”¢°ÉX&rÛÀý2ºê+ÕÙ£­'/±÷ZÖÆEg$'Z³"4àXº„q—5ô”KPýäHX@A½ÐC¾ÀA¿4¿È[À¹ãBùƒ©SŒAc ž/‡aÚhB_Ì Î,Q<¾ÛÒ|£_9óWä…\çE ›Õg’¾Ã¸$Š±O37%†(çù@°êwo˜Õ[¯tVr§ÏuרnïîÈX­Ü˜žž¨R<.4LÿqµzKæöô}ÜÚZuÓå¥S­½*z?N>"È1ΑÄ€¯øoû™:c£±Ñ4QõôÌ@¿ôÁ½Ë/U‚×pA‹‘Çl)|<lnuÔ5ŸV™ÅɺÔÔl÷tƽ˲ÊwU˜¤-Ä0÷—G”í+ÝÏåíÉÎßÂÆf]ëçþdl¿ÚËNQf%ð°ò=màž•7½Ü cúù$6)M›¸ÖJ4d;eî3¦·[Íš¤)3Ý…»/coª"_^' Åc!™^NÂB +i-$Ú@¡-oIð§®A8ÙsSIÑ‹q•NàÃ>ïºbP' œQ)6Vã~ýè8á„ÛCÈ» ÀE<'-v‚+ƒªýk4ƒ:X¬û"E²€Ü(s^|Š‡W÷î>ϵMÖn‹ª `Qþ£» <#gœ×:à·Ò¸±LpbÇÆj;9ziw¨ÎŸÊK²ƒ–@æm VÚ  +µ—%3¬UA5žçðÄ̇ùý9K „þò¿fOk(ž §n>€`t…„H + €.’(ŽBÞ(¯È°ÛP”ã^=È“¢=+ÀE¸üÞ£«Œ¹T/\FÞ Ÿã‘ÑÑc)[”®ð•fmÞϨ¥(oÇ'yþ!îeTÑðÎÑO¢a‡J¡6[›zU ‡š_Wýän¢jç÷lXò=ªq{jj‡›^ÔÿènþÓUÅ•†£ØÝ¥IÑ ’éJ7*Š\à•à/Ácƒ Ê-aFEÈp 3ÎÀš0 "ˆˆ\Ê%È¡»(*žl ‹‰ëªUÄk]Måoê‘ÚýÊ­­®©êéê÷¿ÿø¾ï}MÛåÚåº ì/3·†j°6‚Kd`ªúeös!W[»¼uQ“ûç`CNP°;aMüèy¹ÎzWÀ˜¡Ð'¡‰5³"ëþX‚OU©ä¦8¬ÅðwXlÿ[-#»ˆŒ8=Hâàr¼âa ¡PéBÅlb*û­g1%3}ìlæz""gÞ|ó^dãq<é`áÀš žœE«OkÎð/†Ë:¯‰M e×ä±×ƒê„‹{6;ñ 6fe Ó¬e¹¥¹ÕüÐå½^ëüBÜ’’µ´ÂT©ïÿÒ[£“}S°µÐ÷”qó¼é!*Ÿ“6czÎ$„ìFü8búq0›LÇ4¡HS”s*ëEøHì«ýÆä"(ds½Þ€…Vó›ÿþð¡g.1#VÞö6›‚ùÃTØÔDþ?æ_|…î×T%/=óeÑŽ‚ƒÆàL§žSŽ­9,Ü»ÖssiiˆÀú /ƒÅ؉@…ÈWü»,ÆO ؈\U+ÝTN¹ƒÄÑ ‹î ;Æg0$ê_Nhª<~{ a‚ÄÇq+†LܾlE`/ ’ÃVƒù„3 Ð<l +'ÙZ‚Òô%ôbÒLq—W*–v3Ρ“Ÿ(†G¾‚+²Œ†h;{|¾EÒOFÒ¯–$ÞÀ6ø™"kèmÄìpXjLrÐçj:¹áH­²Ù̬ˆ; >ä)ñEkèëÀ–¶Ÿ®?ÙˆL) +ÚWÐGX+6{2*$<ק–PÇ@‚ôEVÑëÉå®ä°#ÁõpkÊEEç:Xb…ÛAäølŠT1lÌ1”l7¬r©Ô¨ÜR*sò(†»Rõl<…˜Ck6Cþ6B±ËU¿­€ä—>˜W=̆ùÜ)Îòh¥º­]+`|_‘¥®ŒÎÛQgjþrº‹ÿñäÞx1“!«µ„ÞB89×¹¢×ýmOWicKsGòý)®ó¬“¥kÒÕBtZtB8_ÒØÛ_2¢Ùt4‚ ‡¬Ú«4ïÃÃÝ-ÆØbÉu¿‡–sk}·âiÚ3ðÁ^»ø51á×ïŒ ŽÕPƒ#ìÃmv¨}ÔQ8C­L¯Í×å ­ú†êfþa÷*‘ë\ê縯º9MPÿ É×ËY✆:^ &x(ׂ3w_ZŸÉÒ÷gEð«½Û_ˆ#šk7Fø¦ÊÌŒb‘»t(Š»_ø}(O<íˆ ™C¼sמ«úÂJ‘U¡Ð¸*$ 06Q‹ˆß ŽØkRɸÎT*G%¥ï‹ ä7‡\ûeøbÿýöÚÈ|Q›¡UeÈÙåi@~xûnJ-Ì…õ0ËHJƒÈÆÜòsr0õ3âJV®$_ψÓKpèÓŸé”ï©ÔàL_ÞÃë­£¢æƒ¬9ï\ÏmþA‘×^‘%%È,SC»aFšÒü'pâ†!ÙR2} Óìn´‚é(mì:S”“}-Ûq0AŸr\ŸÉ~“.†òô‘ÜD¦Ý7eØ$ƸÊ€QM¶Æ [óX²–RdÜë£[)5Ý”\µ'3æÚ2멘^o/o®uQ´ËŽ0÷m*)ŽbC%´ÞK½Í?±ýîàwJ•„%ÿ@¡ñŸ\lhɘ¿¡H@Q“X`UzÎ[üáÅuâóiî140…Ú“.*òË/4òeÁ^"©ÄW™B]Q^P¥¯8[Ïw–‡xˆ¤Ÿ730ÏcÀ)" NHLIRJ0VÓW~5›ù¥A»£bÍufPÄ‚Öé|·üodªIÀ‰qm†üh„f=sRw*/_8¯¯¨já»Ë‚6‹ä¬aš Ø|=`ëæ­DsÀµeÞ¥ˆÕÇ€1*tÐíð 2ÇÇÅÚ¥q™3)ã +Sðsg&p?#«lmß{ôŸÈîŸ_½fa¸ç¾[OUþ8ˆâEÖ*À¥ëâ/ÃûlUvå@/›QO`¢œF­=¶ÇùFjl^潉¤öèvlÂ/—]Ȉ|­^÷ƒÐ¦o¨¹Ìß«÷YñeØŽÒ%ªó5…(]J<Ä ÌšÜ»4]-ò¤-Ôé…v}Ã…ëüéjus*óX +àã‘ fÓÜ¥£/(2“ÖëÜ1Ô©.ߘ¦®0Œ§k{/Žr—¬ërÓ›Ü2%&LFLjFÜdC“±à` Ë`±e ÿˆÃn-ÂÚÞ–^Ñ‚.ÀZ.´( +­ÛD¬JÊcL4Ë6—e˦fââ>Œ˜÷’ǽ·„,ûtrÏÉù“›ç¼Ïón÷?ƒÙ%Í4l¼ƒQö똩mò†ç6¹wxhé¼»ïjáDVå° šÇ†#“—.Gøø’>ÒüQÿ.Žä—n¶tVMU/Ⱥ!DD—Ù%­û¸jhÐÉ3Dòc Ž‚Nsòµ÷”¿M¯ì$º;ÄA—8‡xW,ud†»|¾ûË!K'Ðú ïXPàê<ñ›xÿ—Žh —fÜ>xa³*êo¢“«oDPÎbéÀDjœ&Wh±S<ÑλýîC \MËåŸ-ÅP{‘&›~©xü }-yVu!¡·T,Lgo›™·º°‘e2Ð2~B”®xô¨(Ø©xôd UNÚÐê} ÆÀ^´ziª}JL•AË@Fd¬ï[Ñ:ú–[“}êöõêö Ô ” Qô§ÃÓ¡[jßVª—íiRÂ⼪¢ó©Rã³ù«%>9ÿ‚wÞ;¿jYb jIh÷ØüêB`Á?翾,cÍî?8·$–!|äÀ)0hF”bíÈËJ1äñ4•ˆ}ŸÀâQÁ>\É#8¤Í‡ÝÎ&RH>d™\ØûH“TʵI˜3½¦”?¢˜^u¢%ÈB-T++j=Epytù=S´É¶sdÓ†· gi%[hããAz¼;äÃáHïvtôY¾çô½ÂÁЮÌÞúi“¥~ðA•Ù·jQsÀŠcŽy™o¹NïÒs‰Ô©oÛ}1T󸸨IBD›TXÓFˆ,ÒŒðŸQjÔ»å©%WuÊ ¦1×VßM‰ÞE~¦¹B®Å ¯Ï\xÍ#×@Ù˜Êÿú tÖ!z~üÊ­Ä™Çe~å¬ÉÛèøî²\ñûGö;,ŽýΊjóá5”(+òeYŽÉi””iœd(ÌLeáÔoò:~xO½a]—!tÏCAö“p¿Á Ì¾¤<5ý+À§âa +endstream +endobj +1228 0 obj +<< +/BaseFont /KMKVDJ+Wingdings-Regular +/CIDSystemInfo 1612 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1613 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1229 0 obj +<< +/Filter /FlateDecode +/Length 3401 +/Subtype /Type1C +>> +stream +H‰|UiTY®J¨Jp)ÒÅ”VÅítk‹àF«­J Øê¨(ˆ($`Ž`@d‘UÙ‚J ¬‚ìÈrÀ1*CãδûvÀ‘–éQ§gZ¸¡=3ìýkÎ;çžw·ïÞ÷½ ÇÌŽã쎼¶z~¹%Z£ô—oÓ¨m=¡Êuˆ|ƒZ%7EpF7JÍŒÜ4ÍGÙ¿úþêFÀ“Æ©½3);KŒÀq3Ñ”¡Ÿƒü‚‚ü”A~!Ôa:°`?ƒ,]VÎYÅí±×£h Ù%Ý,w?à—_¤a©žö‡ïqŽ Aj5f|Ô{ôï0üýÂò„Æ­´þqõÈÙ;R¬ƒÿì¿P³BL5&÷´û,Ïü Ì?Jbá£Õ±†ŒöV)xŠ~98ˆ,·íŽŠ gËÖ%ÕµyMLwY°7/B‚ŒÙžÈB*18to»w¾¹¬õ,«%%±§¼ ‰!l餌¤ôV‘t(ú®*ëyõX>‹£n&}ÝOï(KÃ(ØŒñgZI §®Ù¤oEMD'óòÞ8Ã<ï÷+ü”Qá\:ègOôòØiÁ,à&§-Ðæ² §*êk˜Ëå®K8‰aA”«W´F9ŽM×¥ëó¥”wê<ÂëxVºFèäØ#iQ̦Àëÿ|ÓüøneIÊq=WüŠÈ‰Wç¨D¯F8ÿŸ-ºÄÍõ:]Ñd§Û"_LvZ76£|§ü³†²ÓEçbT¥ÌçUh_}Þ=燐–ú¦6ÛDÁvâ-™Þ’ÞÓ&5öŠ$†Ù%ôÑŒ„´$vO¼&!Šñ=tëýëÒ'm8£”Ÿà´‰™ IRª>õ9pOàOýxÝ/`óAÿ…ƒtV¶¸F +V^#óç®]€V /ï؃EgWnaû”H<š|€Ù±»ð .ë Ý«-ÿáÓZµomGÍã…í3°Âïò¸XmŸ­¨])ê2”¦Ïc _§ŽDœ aäñ!*.HžèµK¾yí­ [uí}æ¯àÞ‹•?ZÖ‚tTòÚ1´d Õ‹H'¨ªý˜UŽü×ð™ >´6•ž+á´ +Ò>$à[yHžþ0{x%WßžÔÁÜ2”žkäš[NwƒH +µ"É»>íÅì6 ÑM:>#îX<p4"1Š 8xù#'©¼s¹¡H–Ãf'jãJ©ûüZ óÆ€øw꙯-æÏ@»¾¢´†éÔûxr¨—7‹`ÆþÛŽ‡"S¢Ù˜ÄØØ„#ÿ£²lcš:£8Fî½UY\ªµ×Ü;—mp¾3u‘e›1ÄÌd›¨¼tX^•`¡…J•RÚR*-°½R…‚âKÙ­¯ÙtÙPâ®&ÊfBŒÙlOÍò=·°,ûzsŸÿÿœóœó{ŽÈvL'´«hK……ѽ@¢—‚ôï°fqHûꌖ¢Ÿ]{±A’§,ζr{´u1çÛÚ.ẋݟ³âSრÆöHX{`ù_ ˆ'Ûz&P. H´.ÀBPHDnFk ƒ¦²“NŒVb|&q A¿H(Ùƒåbý› ý??ó1ËhŸóæ[“©ÖÎ~u¬ÍÕÆxë’öpèNnSNk£ÍÎ^°·¶t0Þ†ÝsÈ€)ˆJŒ/R™t¥¬FW¦)/YȾ²w2“”U£â,$¾­biSزçÊ8¶ñqt¸Št¯PÆëd“í„àiw»Ú™~{j*‡¾ Â0„âöƤ e–ŠÅ:#U7ÿÓé7ŒÁÔ8,X†ë‘2HÖÄÅ£-hýõÜö $CÜÖÇop– ’|ì–t±»>=<9vÏ1=€§ +½WáÁK@€öûP¢$:YÔØ®ìaüô3l7SžÇ¦ç¨ÓÂiL›na{kF­|›Œö +%Ç­|­Ï¿»³ƒñÚ¶b½&~gY‘½¿œ«vXœN™x-ÎU4`Èi¨¤‡š­'jyöš£»Ë믱ÔqAÊj2YõLff^²†«&ié¾à”^›œ&'šü05qúé­§‘®VIY륊næ·¡+Os½Û¾ää:g»¬£Éíio­Ô5³­ˆãÅû™LÜöíï¤tȇ\oAcé~Ù>UIv^n#Çc(ý2q7y7ôPòú'›Põ!¿×]Ì–´tUžc:ݵGOp–qÂR¡?¢c¨œƒ}2ºSâï 6ùC±¥Ñý˜‡o0ô2ÉWÑ©µ2W°šª²‚¬Ô”–¨Tejý¹ÕÒæúžÖîþ?œ}Þþ| +žI_#S‘Ë´ß”gVâi¬:m>c<»š¤â‚šI¸3}.£³ÐEOœ\ —'ÑVéh9yÆÙ!¢‡ðžj%†Q×Û°ÞBéKR"5à쥳dšxw2z(1Az:´óõáhEûgÛtüˆÍÎ(Ï/ä²g‹b0OQƒž¯y¾Ú|Œm'ŽêT_h˜ÝÙÚE\^îá¤D™:Lâ`h%Ä@~ò/Îqͱé"l†:,~Ò¢C.ꖫᄃ³ÒÐÌÒþ¦q‚žæÕ™v¼G®Ë@‘ïs…sdŸŠ™ˆËÌ> #£ñÔ5—wÀ嬮âÙ™?…-¯1?‘ßÍlUh +ó¹ô,ívÅ\L”XLJ´<¬ày¾Ž'‘‚¿ÇSø“†‡Uø“›¡~„ŸÇ¶d쉚Wµ`d~päÇÀß’Á‚àL +endstream +endobj +1230 0 obj +[1614 0 R] +endobj +1231 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1232 0 obj +<< +/Ascent 948 +/CapHeight 674 +/CharSet (/E/N/O/T) +/Descent -250 +/Flags 32 +/FontBBox [-145 -250 970 948] +/FontFamily (Myriad Pro Light Cond) +/FontFile3 1615 0 R +/FontName /LZORIS+MyriadPro-SemiboldCond +/FontStretch /Condensed +/FontWeight 600 +/ItalicAngle 0 +/StemV 108 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1233 0 obj +<< +/Filter /FlateDecode +/Length 251 +>> +stream +H‰\PÁnà ½ó>¶‡ +57iêZ)‡µÓ²}'CZrÈßϪ“f ü,û=æçöµu6^w˜`°ÎDœý5B£uìX±:=ªrëIƉܭs©uƒgRÿ æœâ +»ã{Ü3~£u#ì¾ÎÝx·„ðƒºš $ô¦ÂMM¼Ð­¡¾Më8Ÿk@¨J}ÜÌhopJcTnD&EòJÑ0tæ_¿ÞXý ¿UdòTÓ¬”_6|ÉøºaÒõ©`JY½¥¢”Õ:ùZ> +endobj +1235 0 obj +<< +/Ascent 935 +/CapHeight 674 +/CharSet (/A/C/D/E/I/N/R/S/T/U/a/b/c/colon/comma/copyright/d/e/endash/f/f_f/g/h/i/l/m/n/o/one/p/period/r/s/slash/space/t/two/u/v/w/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-153 -250 1046 935] +/FontFamily (Myriad Pro Light) +/FontFile3 1616 0 R +/FontName /KIXGUU+MyriadPro-Light +/FontStretch /Normal +/FontWeight 300 +/ItalicAngle 0 +/StemV 48 +/Type /FontDescriptor +/XHeight 480 +>> +endobj +1236 0 obj +<< +/Filter /FlateDecode +/Length 425 +>> +stream +H‰\“Íjã@„ïósLA¿Óƒ;² ñîÈÒØ+ˆ%1–~ûR™V Í7š®RÑ´’Ín»úÙ&al÷~¶Ç~è‚¿Œ×Ðz{ð§~0Yn»¾ï»åÙž›É$Q¼¿]fÞ ÇÑT•M>ãáe7û°îƃ4É{è|臓}ø³Ù?Úd¦/öÃlS[׶óÇhôÖL¿š³·É"{Úuñ¼ŸoOQóSñû6y›/ûŒaÚ±ó—©i}h†“7U¯ÚV¯ñªºÿÎËœ²Ã±ýÛSe¯±8MEpצÊÓe—ÈòüB~SS¬/P_dä œ“s𚼎\²¦DMY pI.ÁŽìÀ+ò +Ì %28ú;ø;ú8ø8ú8ø8ú8ø¿+ø®P+Ð +µ­P+Ð +µ²håÞ#°’üL~3§ §°o‚¾É–¼3¿ ¿ÜûŽ*{¨è¡2›"›2›"›2›"›2›"›2›"›2›"›2"Ï +5yšÁgÍ÷qÁpܧc§Ù~Ï`{ !Žß2òËÜaâúÁÿÓ8Ù¨Âmþ 0¿Ðo +endstream +endobj +1237 0 obj +<< +/Ascent 1005 +/CapHeight 674 +/CharSet (/D/I/R/S/a/b/comma/d/e/g/i/l/m/n/o/r/s/space/t/z) +/Descent -251 +/Flags 32 +/FontBBox [-166 -251 1313 1005] +/FontFamily (Myriad Pro Black) +/FontFile3 1617 0 R +/FontName /LORBIS+MyriadPro-Black +/FontStretch /Normal +/FontWeight 900 +/ItalicAngle 0 +/StemV 180 +/Type /FontDescriptor +/XHeight 492 +>> +endobj +1238 0 obj +<< +/Filter /FlateDecode +/Length 323 +>> +stream +H‰\’ÍŠƒ0ÇïyŠ9¶‡¢µmBA„b[𰬻 ÉØÖ¢=øö;É”.l@çæ3ÿ$)«seû’w?êgèzk> +endobj +1240 0 obj +<< +/Filter /FlateDecode +/Length 226 +>> +stream +H‰\ÏjÄ Æï>Åw‹Ùœ%P¶rèšöŒNR¡ebyûŽ6l¡*ã÷ýäsô­ì)dÐoÝ€¦@žq;„ç@êÚ‚.]ÝÝb“ÒûšqéiŠÊÐï"®™w8=ø8âYéWöÈf8}Þ†3èaKé¤ txœä¡g›^ì‚ +vé½è!ïaþ{Bhký ã¢Ç5Y‡liFe©Ì“T§ü?ý ÆÉ}YV¦-Þ¦‘£xÛBÉçàÉmÌ’¦N Æ(á}H)&ª,õ#ÀÙÆo0 +endstream +endobj +1241 0 obj +<< +/Ascent 972 +/CapHeight 674 +/CharSet (/F/a/b/e/five/one/r/space/two/u/y/zero) +/Descent -250 +/Flags 32 +/FontBBox [-161 -250 1198 972] +/FontFamily (Myriad Pro Light) +/FontFile3 1619 0 R +/FontName /EODGOG+MyriadPro-Semibold +/FontStretch /Normal +/FontWeight 600 +/ItalicAngle 0 +/StemV 124 +/Type /FontDescriptor +/XHeight 487 +>> +endobj +1242 0 obj +<< +/Filter /FlateDecode +/Length 285 +>> +stream +H‰\‘Ýj„0…ïós¹{±DÝnd!eKÁ‹þPÛÐd´CÌ^øö$ËÐ|™9GÆ~iŸZkðw¿¨ŒÆjërõ +aÀÉXVV  +·Sz«¹wŒ“¹ÛÖ€skÇ…I üƒškðìõ2àžñ7¯Ñ;ÁîëÒíwWç~pF €¦#}è¥w¯ýŒÀ“íÐjê›°Èó§øÜB•ÎeF-W×+ô½É‚Vò™VÃÐê}ú‘dFõÝ{&«(. +Ú˜&.3—‘«ÌUäSæñƒHL“"ëEÔ‹¬Q/²^D}ëu¬×¹^§ú9ó9 |›,ŽN Ã=uõž"Iײˆ)‹÷›r‹rŇý +0øˆÆ +endstream +endobj +1243 0 obj +[1614 0 R] +endobj +1244 0 obj +<< +/Filter /FlateDecode +/Length 231 +>> +stream +H‰\ÁjÃ0 †ï~ +ÛCqZÊØ!F×BíƲ=€c+™¡‘âòöS¼ÐÁ6Èÿÿ‰ßÒ§úµ&Ÿ@¿s° &è<9Æ1LlZì=©ýœ·iíòm•¸™Ç„CM]Pe úCÄ1ñ ›ZÜ*ýÆÙS›¯S³ÝL1Þq@JP@UÃN]M¼™AglW;Ñ}šwÂü9>çˆpÈýþ7Œ Çh,²¡UYHUP^¤*…äþé+ÕvöÛðâ~>Š»(žÎÙ½¾/œ|¡ìÄ,yòr%‚'|¬)†B-Gý0ªFo³ +endstream +endobj +1245 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1246 0 obj +<< +/K [1326 0 R 1328 0 R 1330 0 R 1332 0 R 1334 0 R] +/P 243 0 R +/S /L +>> +endobj +1247 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1248 0 obj +<< +/C /Pa2 +/P 243 0 R +/S /Lauftext_1._Abs +>> +endobj +1249 0 obj +<< +/C /Pa2 +/P 243 0 R +/S /Lauftext_1._Abs +>> +endobj +1250 0 obj +<< +/K [1364 0 R 1367 0 R 1370 0 R] +/P 243 0 R +/S /L +>> +endobj +1251 0 obj +<< +/K [1372 0 R 1374 0 R 1376 0 R 1378 0 R 1380 0 R] +/P 243 0 R +/S /L +>> +endobj +1252 0 obj +<< +/K [1382 0 R 1384 0 R] +/P 243 0 R +/S /L +>> +endobj +1253 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1254 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1255 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1256 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1257 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1258 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1259 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1260 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1261 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1262 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1263 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1264 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1265 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1266 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1267 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1268 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1269 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1270 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1271 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1272 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1273 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1274 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1275 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1276 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1277 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1278 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1279 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1280 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1281 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1282 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1283 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1284 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1285 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1286 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1287 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1288 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1289 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1290 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1291 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1292 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1293 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1294 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1295 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1296 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1297 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1298 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1299 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1300 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1301 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1302 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1303 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1304 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1305 0 obj +<< +/C /Pa3 +/P 243 0 R +/S /Lauftext +>> +endobj +1306 0 obj +<< +/K 1481 0 R +/P 243 0 R +/S /L +>> +endobj +1307 0 obj +<< +/K 1483 0 R +/P 243 0 R +/S /L +>> +endobj +1308 0 obj +<< +/K 1485 0 R +/P 243 0 R +/S /L +>> +endobj +1309 0 obj +<< +/K 1487 0 R +/P 243 0 R +/S /L +>> +endobj +1310 0 obj +<< +/K 1491 0 R +/P 243 0 R +/S /L +>> +endobj +1311 0 obj +<< +/K 1493 0 R +/P 243 0 R +/S /L +>> +endobj +1312 0 obj +<< +/K 1495 0 R +/P 243 0 R +/S /L +>> +endobj +1313 0 obj +<< +/K 1497 0 R +/P 243 0 R +/S /L +>> +endobj +1314 0 obj +<< +/K 1499 0 R +/P 243 0 R +/S /L +>> +endobj +1315 0 obj +<< +/K 1501 0 R +/P 243 0 R +/S /L +>> +endobj +1316 0 obj +<< +/C /Pa11 +/K 1620 0 R +/P 251 0 R +/S /NormalParagraphStyle +>> +endobj +1317 0 obj +<< +/C /Pa11 +/K 1621 0 R +/P 253 0 R +/S /NormalParagraphStyle +>> +endobj +1318 0 obj +<< +/C /Pa11 +/K 1622 0 R +/P 255 0 R +/S /NormalParagraphStyle +>> +endobj +1319 0 obj +<< +/C /Pa11 +/K 1623 0 R +/P 256 0 R +/S /NormalParagraphStyle +>> +endobj +1320 0 obj +<< +/C /Pa11 +/K 1624 0 R +/P 257 0 R +/S /NormalParagraphStyle +>> +endobj +1321 0 obj +<< +/C /Pa11 +/K 1625 0 R +/P 258 0 R +/S /NormalParagraphStyle +>> +endobj +1322 0 obj +<< +/C /Pa11 +/K 1626 0 R +/P 260 0 R +/S /NormalParagraphStyle +>> +endobj +1323 0 obj +<< +/C /Pa25 +/K 1596 0 R +/P 263 0 R +/S /Endnote_1._Abs +>> +endobj +1324 0 obj +<< +/A << +/O /Layout +/LineHeight 8.75 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/P 263 0 R +/S /Endnote_1._Abs +>> +endobj +1325 0 obj +<< +/K 289 0 R +/P 1326 0 R +/S /Lbl +>> +endobj +1326 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -11.0 +/SpaceBefore 8.0 +/StartIndent 39.0 +>> +/K [1325 0 R 290 0 R] +/P 1246 0 R +/S /LI +>> +endobj +1327 0 obj +<< +/K 292 0 R +/P 1328 0 R +/S /Lbl +>> +endobj +1328 0 obj +<< +/C /Pa5 +/K [1327 0 R 293 0 R] +/P 1246 0 R +/S /LI +>> +endobj +1329 0 obj +<< +/K 295 0 R +/P 1330 0 R +/S /Lbl +>> +endobj +1330 0 obj +<< +/C /Pa5 +/K [1329 0 R 296 0 R] +/P 1246 0 R +/S /LI +>> +endobj +1331 0 obj +<< +/K 297 0 R +/P 1332 0 R +/S /Lbl +>> +endobj +1332 0 obj +<< +/C /Pa5 +/K [1331 0 R 298 0 R] +/P 1246 0 R +/S /LI +>> +endobj +1333 0 obj +<< +/K 299 0 R +/P 1334 0 R +/S /Lbl +>> +endobj +1334 0 obj +<< +/C /Pa5 +/K [1333 0 R 300 0 R] +/P 1246 0 R +/S /LI +>> +endobj +1335 0 obj +<< +/K 1336 0 R +/P 301 0 R +/S /Reference +>> +endobj +1336 0 obj +<< +/K 304 0 R +/P 1335 0 R +/S /Link +>> +endobj +1337 0 obj +<< +/K 1338 0 R +/P 305 0 R +/S /Reference +>> +endobj +1338 0 obj +<< +/K 307 0 R +/P 1337 0 R +/S /Link +>> +endobj +1339 0 obj +<< +/K 1340 0 R +/P 308 0 R +/S /Reference +>> +endobj +1340 0 obj +<< +/K 310 0 R +/P 1339 0 R +/S /Link +>> +endobj +1341 0 obj +<< +/K 1342 0 R +/P 315 0 R +/S /Reference +>> +endobj +1342 0 obj +<< +/K 318 0 R +/P 1341 0 R +/S /Link +>> +endobj +1343 0 obj +<< +/K 1345 0 R +/P 319 0 R +/S /Reference +>> +endobj +1344 0 obj +<< +/K 1346 0 R +/P 319 0 R +/S /Reference +>> +endobj +1345 0 obj +<< +/K 320 0 R +/P 1343 0 R +/S /Link +>> +endobj +1346 0 obj +<< +/K 322 0 R +/P 1344 0 R +/S /Link +>> +endobj +1347 0 obj +<< +/K 1348 0 R +/P 323 0 R +/S /Reference +>> +endobj +1348 0 obj +<< +/K 326 0 R +/P 1347 0 R +/S /Link +>> +endobj +1349 0 obj +<< +/K 1350 0 R +/P 329 0 R +/S /Reference +>> +endobj +1350 0 obj +<< +/K 330 0 R +/P 1349 0 R +/S /Link +>> +endobj +1351 0 obj +<< +/K 1352 0 R +/P 366 0 R +/S /Reference +>> +endobj +1352 0 obj +<< +/K 367 0 R +/P 1351 0 R +/S /Link +>> +endobj +1353 0 obj +<< +/K 1354 0 R +/P 406 0 R +/S /Reference +>> +endobj +1354 0 obj +<< +/K 409 0 R +/P 1353 0 R +/S /Link +>> +endobj +1355 0 obj +<< +/K 1356 0 R +/P 421 0 R +/S /Reference +>> +endobj +1356 0 obj +<< +/K 423 0 R +/P 1355 0 R +/S /Link +>> +endobj +1357 0 obj +<< +/K 1358 0 R +/P 475 0 R +/S /Reference +>> +endobj +1358 0 obj +<< +/K 479 0 R +/P 1357 0 R +/S /Link +>> +endobj +1359 0 obj +<< +/K 1360 0 R +/P 486 0 R +/S /Reference +>> +endobj +1360 0 obj +<< +/K 488 0 R +/P 1359 0 R +/S /Link +>> +endobj +1361 0 obj +<< +/K 1362 0 R +/P 492 0 R +/S /Reference +>> +endobj +1362 0 obj +<< +/K 495 0 R +/P 1361 0 R +/S /Link +>> +endobj +1363 0 obj +<< +/K [516 0 R 515 0 R] +/P 1364 0 R +/S /Lbl +>> +endobj +1364 0 obj +<< +/C /Pa9 +/K [1363 0 R 518 0 R] +/P 1250 0 R +/S /LI +>> +endobj +1365 0 obj +<< +/K [528 0 R 527 0 R] +/P 1367 0 R +/S /Lbl +>> +endobj +1366 0 obj +<< +/K 1368 0 R +/P 530 0 R +/S /Reference +>> +endobj +1367 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/TextIndent -22.0 +/SpaceBefore 8.0 +/StartIndent 22.0 +>> +/K [1365 0 R 530 0 R] +/P 1250 0 R +/S /LI +>> +endobj +1368 0 obj +<< +/K 538 0 R +/P 1366 0 R +/S /Link +>> +endobj +1369 0 obj +<< +/K [544 0 R 543 0 R] +/P 1370 0 R +/S /Lbl +>> +endobj +1370 0 obj +<< +/C /Pa9 +/K [1369 0 R 546 0 R] +/P 1250 0 R +/S /LI +>> +endobj +1371 0 obj +<< +/K [564 0 R 563 0 R] +/P 1372 0 R +/S /Lbl +>> +endobj +1372 0 obj +<< +/C /Pa9 +/K [1371 0 R 566 0 R] +/P 1251 0 R +/S /LI +>> +endobj +1373 0 obj +<< +/K [569 0 R 568 0 R] +/P 1374 0 R +/S /Lbl +>> +endobj +1374 0 obj +<< +/C /Pa19 +/K [1373 0 R 571 0 R] +/P 1251 0 R +/S /LI +>> +endobj +1375 0 obj +<< +/K [578 0 R 577 0 R] +/P 1376 0 R +/S /Lbl +>> +endobj +1376 0 obj +<< +/C /Pa19 +/K [1375 0 R 580 0 R] +/P 1251 0 R +/S /LI +>> +endobj +1377 0 obj +<< +/K [582 0 R 581 0 R] +/P 1378 0 R +/S /Lbl +>> +endobj +1378 0 obj +<< +/C /Pa19 +/K [1377 0 R 584 0 R] +/P 1251 0 R +/S /LI +>> +endobj +1379 0 obj +<< +/K [587 0 R 586 0 R] +/P 1380 0 R +/S /Lbl +>> +endobj +1380 0 obj +<< +/A << +/O /Layout +/TextAlign /Justify +/LineHeight 11.0 +/SpaceAfter 8.0 +/TextIndent -22.0 +/StartIndent 22.0 +>> +/K [1379 0 R 589 0 R] +/P 1251 0 R +/S /LI +>> +endobj +1381 0 obj +<< +/K [621 0 R 620 0 R] +/P 1382 0 R +/S /Lbl +>> +endobj +1382 0 obj +<< +/C /Pa9 +/K [1381 0 R 623 0 R] +/P 1252 0 R +/S /LI +>> +endobj +1383 0 obj +<< +/K [627 0 R 626 0 R] +/P 1384 0 R +/S /Lbl +>> +endobj +1384 0 obj +<< +/C /Pa19 +/K [1383 0 R 629 0 R] +/P 1252 0 R +/S /LI +>> +endobj +1385 0 obj +<< +/K 633 0 R +/P 1627 0 R +/S /TD +>> +endobj +1386 0 obj +<< +/K [637 0 R 636 0 R 635 0 R 634 0 R] +/P 1387 0 R +/S /Lbl +>> +endobj +1387 0 obj +<< +/C /Pa21 +/K [1386 0 R 638 0 R] +/P 1628 0 R +/S /LI +>> +endobj +1388 0 obj +<< +/K [640 0 R 639 0 R] +/P 1389 0 R +/S /Lbl +>> +endobj +1389 0 obj +<< +/C /Pa21 +/K [1388 0 R 641 0 R] +/P 1628 0 R +/S /LI +>> +endobj +1390 0 obj +<< +/K [643 0 R 642 0 R] +/P 1391 0 R +/S /Lbl +>> +endobj +1391 0 obj +<< +/C /Pa21 +/K [1390 0 R 644 0 R] +/P 1628 0 R +/S /LI +>> +endobj +1392 0 obj +<< +/K [646 0 R 645 0 R] +/P 1393 0 R +/S /Lbl +>> +endobj +1393 0 obj +<< +/C /Pa21 +/K [1392 0 R 647 0 R] +/P 1628 0 R +/S /LI +>> +endobj +1394 0 obj +<< +/K [649 0 R 648 0 R] +/P 1395 0 R +/S /Lbl +>> +endobj +1395 0 obj +<< +/C /Pa21 +/K [1394 0 R 650 0 R] +/P 1628 0 R +/S /LI +>> +endobj +1396 0 obj +<< +/K [652 0 R 651 0 R] +/P 1397 0 R +/S /Lbl +>> +endobj +1397 0 obj +<< +/C /Pa21 +/K [1396 0 R 653 0 R] +/P 1628 0 R +/S /LI +>> +endobj +1398 0 obj +<< +/K [655 0 R 654 0 R] +/P 1399 0 R +/S /Lbl +>> +endobj +1399 0 obj +<< +/C /Pa21 +/K [1398 0 R 656 0 R] +/P 1628 0 R +/S /LI +>> +endobj +1400 0 obj +<< +/K [658 0 R 657 0 R] +/P 1401 0 R +/S /Lbl +>> +endobj +1401 0 obj +<< +/C /Pa21 +/K [1400 0 R 659 0 R] +/P 1628 0 R +/S /LI +>> +endobj +1402 0 obj +<< +/K 673 0 R +/P 1629 0 R +/S /TD +>> +endobj +1403 0 obj +<< +/K [675 0 R 674 0 R] +/P 1404 0 R +/S /Lbl +>> +endobj +1404 0 obj +<< +/C /Pa21 +/K [1403 0 R 676 0 R] +/P 1630 0 R +/S /LI +>> +endobj +1405 0 obj +<< +/K [678 0 R 677 0 R] +/P 1406 0 R +/S /Lbl +>> +endobj +1406 0 obj +<< +/C /Pa21 +/K [1405 0 R 679 0 R] +/P 1630 0 R +/S /LI +>> +endobj +1407 0 obj +<< +/K [682 0 R 681 0 R] +/P 1408 0 R +/S /Lbl +>> +endobj +1408 0 obj +<< +/C /Pa21 +/K [1407 0 R 683 0 R] +/P 1630 0 R +/S /LI +>> +endobj +1409 0 obj +<< +/K [685 0 R 684 0 R] +/P 1410 0 R +/S /Lbl +>> +endobj +1410 0 obj +<< +/C /Pa21 +/K [1409 0 R 686 0 R] +/P 1630 0 R +/S /LI +>> +endobj +1411 0 obj +<< +/K [689 0 R 688 0 R] +/P 1412 0 R +/S /Lbl +>> +endobj +1412 0 obj +<< +/C /Pa21 +/K [1411 0 R 690 0 R] +/P 1630 0 R +/S /LI +>> +endobj +1413 0 obj +<< +/K 1427 0 R +/P 714 0 R +/S /Reference +>> +endobj +1414 0 obj +<< +/K 716 0 R +/P 1631 0 R +/S /TD +>> +endobj +1415 0 obj +<< +/K [718 0 R 717 0 R] +/P 1416 0 R +/S /Lbl +>> +endobj +1416 0 obj +<< +/C /Pa21 +/K [1415 0 R 719 0 R] +/P 1632 0 R +/S /LI +>> +endobj +1417 0 obj +<< +/K [721 0 R 720 0 R] +/P 1418 0 R +/S /Lbl +>> +endobj +1418 0 obj +<< +/C /Pa21 +/K [1417 0 R 722 0 R] +/P 1632 0 R +/S /LI +>> +endobj +1419 0 obj +<< +/K [724 0 R 723 0 R] +/P 1420 0 R +/S /Lbl +>> +endobj +1420 0 obj +<< +/C /Pa21 +/K [1419 0 R 725 0 R] +/P 1632 0 R +/S /LI +>> +endobj +1421 0 obj +<< +/K [728 0 R 727 0 R] +/P 1422 0 R +/S /Lbl +>> +endobj +1422 0 obj +<< +/C /Pa21 +/K [1421 0 R 729 0 R] +/P 1632 0 R +/S /LI +>> +endobj +1423 0 obj +<< +/K [731 0 R 730 0 R] +/P 1424 0 R +/S /Lbl +>> +endobj +1424 0 obj +<< +/C /Pa21 +/K [1423 0 R 732 0 R] +/P 1632 0 R +/S /LI +>> +endobj +1425 0 obj +<< +/K [734 0 R 733 0 R] +/P 1426 0 R +/S /Lbl +>> +endobj +1426 0 obj +<< +/C /Pa21 +/K [1425 0 R 735 0 R] +/P 1632 0 R +/S /LI +>> +endobj +1427 0 obj +<< +/K 736 0 R +/P 1413 0 R +/S /Link +>> +endobj +1428 0 obj +<< +/K 1429 0 R +/P 765 0 R +/S /Reference +>> +endobj +1429 0 obj +<< +/K 768 0 R +/P 1428 0 R +/S /Link +>> +endobj +1430 0 obj +<< +/A << +/O /Table +/ColSpan 5 +>> +/K 777 0 R +/P 1633 0 R +/S /TD +>> +endobj +1431 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 778 0 R +/P 1634 0 R +/S /TD +>> +endobj +1432 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/K 779 0 R +/P 1634 0 R +/S /TD +>> +endobj +1433 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 780 0 R +/P 1635 0 R +/S /TD +>> +endobj +1434 0 obj +<< +/K [782 0 R 781 0 R] +/P 1435 0 R +/S /Lbl +>> +endobj +1435 0 obj +<< +/C /Pa13 +/K [1434 0 R 783 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1436 0 obj +<< +/K [786 0 R 785 0 R] +/P 1437 0 R +/S /Lbl +>> +endobj +1437 0 obj +<< +/C /Pa13 +/K [1436 0 R 787 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1438 0 obj +<< +/K [790 0 R 789 0 R] +/P 1439 0 R +/S /Lbl +>> +endobj +1439 0 obj +<< +/C /Pa13 +/K [1438 0 R 791 0 R] +/P 1636 0 R +/S /LI +>> +endobj +1440 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 792 0 R +/P 1637 0 R +/S /TD +>> +endobj +1441 0 obj +<< +/K [795 0 R 794 0 R] +/P 1442 0 R +/S /Lbl +>> +endobj +1442 0 obj +<< +/C /Pa13 +/K [1441 0 R 796 0 R] +/P 1638 0 R +/S /LI +>> +endobj +1443 0 obj +<< +/K [798 0 R 797 0 R] +/P 1444 0 R +/S /Lbl +>> +endobj +1444 0 obj +<< +/C /Pa13 +/K [1443 0 R 799 0 R] +/P 1638 0 R +/S /LI +>> +endobj +1445 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 805 0 R +/P 1639 0 R +/S /TD +>> +endobj +1446 0 obj +<< +/K 806 0 R +/P 1640 0 R +/S /TD +>> +endobj +1447 0 obj +<< +/K 807 0 R +/P 1640 0 R +/S /TD +>> +endobj +1448 0 obj +<< +/K 808 0 R +/P 1641 0 R +/S /TD +>> +endobj +1449 0 obj +<< +/K [811 0 R 810 0 R] +/P 1450 0 R +/S /Lbl +>> +endobj +1450 0 obj +<< +/A << +/O /Layout +/LineHeight 10.75 +/TextIndent -14.0 +/StartIndent 17.0 +>> +/K [1449 0 R 812 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1451 0 obj +<< +/K [814 0 R 813 0 R] +/P 1452 0 R +/S /Lbl +>> +endobj +1452 0 obj +<< +/C /Pa13 +/K [1451 0 R 815 0 R] +/P 1642 0 R +/S /LI +>> +endobj +1453 0 obj +<< +/K 816 0 R +/P 1643 0 R +/S /TD +>> +endobj +1454 0 obj +<< +/K [818 0 R 817 0 R] +/P 1455 0 R +/S /Lbl +>> +endobj +1455 0 obj +<< +/C /Pa13 +/K [1454 0 R 819 0 R] +/P 1644 0 R +/S /LI +>> +endobj +1456 0 obj +<< +/K 822 0 R +/P 1645 0 R +/S /TD +>> +endobj +1457 0 obj +<< +/K [825 0 R 824 0 R] +/P 1458 0 R +/S /Lbl +>> +endobj +1458 0 obj +<< +/C /Pa13 +/K [1457 0 R 826 0 R] +/P 1646 0 R +/S /LI +>> +endobj +1459 0 obj +<< +/K 827 0 R +/P 1647 0 R +/S /TD +>> +endobj +1460 0 obj +<< +/K [830 0 R 829 0 R] +/P 1461 0 R +/S /Lbl +>> +endobj +1461 0 obj +<< +/C /Pa13 +/K [1460 0 R 831 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1462 0 obj +<< +/K [833 0 R 832 0 R] +/P 1463 0 R +/S /Lbl +>> +endobj +1463 0 obj +<< +/C /Pa13 +/K [1462 0 R 834 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1464 0 obj +<< +/K [836 0 R 835 0 R] +/P 1465 0 R +/S /Lbl +>> +endobj +1465 0 obj +<< +/C /Pa13 +/K [1464 0 R 837 0 R] +/P 1648 0 R +/S /LI +>> +endobj +1466 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/K 866 0 R +/P 1649 0 R +/S /TD +>> +endobj +1467 0 obj +<< +/K 867 0 R +/P 1650 0 R +/S /TD +>> +endobj +1468 0 obj +<< +/K 868 0 R +/P 1650 0 R +/S /TD +>> +endobj +1469 0 obj +<< +/K 869 0 R +/P 1651 0 R +/S /TD +>> +endobj +1470 0 obj +<< +/K [872 0 R 871 0 R] +/P 1471 0 R +/S /Lbl +>> +endobj +1471 0 obj +<< +/C /Pa13 +/K [1470 0 R 873 0 R] +/P 1652 0 R +/S /LI +>> +endobj +1472 0 obj +<< +/K [876 0 R 875 0 R] +/P 1473 0 R +/S /Lbl +>> +endobj +1473 0 obj +<< +/C /Pa13 +/K [1472 0 R 877 0 R] +/P 1652 0 R +/S /LI +>> +endobj +1474 0 obj +<< +/K 878 0 R +/P 1653 0 R +/S /TD +>> +endobj +1475 0 obj +<< +/K [880 0 R 879 0 R] +/P 1476 0 R +/S /Lbl +>> +endobj +1476 0 obj +<< +/C /Pa13 +/K [1475 0 R 881 0 R] +/P 1654 0 R +/S /LI +>> +endobj +1477 0 obj +<< +/K 882 0 R +/P 1655 0 R +/S /TD +>> +endobj +1478 0 obj +<< +/K [885 0 R 884 0 R] +/P 1479 0 R +/S /Lbl +>> +endobj +1479 0 obj +<< +/C /Pa13 +/K [1478 0 R 886 0 R] +/P 1656 0 R +/S /LI +>> +endobj +1480 0 obj +<< +/K [929 0 R 928 0 R] +/P 1481 0 R +/S /Lbl +>> +endobj +1481 0 obj +<< +/C /Pa9 +/K [1480 0 R 930 0 R] +/P 1306 0 R +/S /LI +>> +endobj +1482 0 obj +<< +/K [935 0 R 934 0 R] +/P 1483 0 R +/S /Lbl +>> +endobj +1483 0 obj +<< +/C /Pa9 +/K [1482 0 R 936 0 R] +/P 1307 0 R +/S /LI +>> +endobj +1484 0 obj +<< +/K [944 0 R 943 0 R] +/P 1485 0 R +/S /Lbl +>> +endobj +1485 0 obj +<< +/C /Pa9 +/K [1484 0 R 945 0 R] +/P 1308 0 R +/S /LI +>> +endobj +1486 0 obj +<< +/K [951 0 R 950 0 R] +/P 1487 0 R +/S /Lbl +>> +endobj +1487 0 obj +<< +/C /Pa9 +/K [1486 0 R 952 0 R] +/P 1309 0 R +/S /LI +>> +endobj +1488 0 obj +<< +/K 1489 0 R +/P 954 0 R +/S /Reference +>> +endobj +1489 0 obj +<< +/K 960 0 R +/P 1488 0 R +/S /Link +>> +endobj +1490 0 obj +<< +/K [962 0 R 961 0 R] +/P 1491 0 R +/S /Lbl +>> +endobj +1491 0 obj +<< +/C /Pa9 +/K [1490 0 R 963 0 R] +/P 1310 0 R +/S /LI +>> +endobj +1492 0 obj +<< +/K [967 0 R 966 0 R] +/P 1493 0 R +/S /Lbl +>> +endobj +1493 0 obj +<< +/C /Pa9 +/K [1492 0 R 968 0 R] +/P 1311 0 R +/S /LI +>> +endobj +1494 0 obj +<< +/K [972 0 R 971 0 R] +/P 1495 0 R +/S /Lbl +>> +endobj +1495 0 obj +<< +/C /Pa9 +/K [1494 0 R 973 0 R] +/P 1312 0 R +/S /LI +>> +endobj +1496 0 obj +<< +/K [979 0 R 978 0 R] +/P 1497 0 R +/S /Lbl +>> +endobj +1497 0 obj +<< +/C /Pa9 +/K [1496 0 R 980 0 R] +/P 1313 0 R +/S /LI +>> +endobj +1498 0 obj +<< +/K [985 0 R 984 0 R] +/P 1499 0 R +/S /Lbl +>> +endobj +1499 0 obj +<< +/C /Pa9 +/K [1498 0 R 986 0 R] +/P 1314 0 R +/S /LI +>> +endobj +1500 0 obj +<< +/K [1010 0 R 1009 0 R] +/P 1501 0 R +/S /Lbl +>> +endobj +1501 0 obj +<< +/C /Pa9 +/K [1500 0 R 1011 0 R] +/P 1315 0 R +/S /LI +>> +endobj +1502 0 obj +<< +/K 1014 0 R +/P 1657 0 R +/S /TD +>> +endobj +1503 0 obj +<< +/K [1016 0 R 1015 0 R] +/P 1504 0 R +/S /Lbl +>> +endobj +1504 0 obj +<< +/C /Pa13 +/K [1503 0 R 1017 0 R 1658 0 R] +/P 1659 0 R +/S /LI +>> +endobj +1505 0 obj +<< +/K [1019 0 R 1018 0 R] +/P 1506 0 R +/S /Lbl +>> +endobj +1506 0 obj +<< +/C /Pa14 +/K [1505 0 R 1020 0 R] +/P 1658 0 R +/S /LI +>> +endobj +1507 0 obj +<< +/K [1022 0 R 1021 0 R] +/P 1508 0 R +/S /Lbl +>> +endobj +1508 0 obj +<< +/C /Pa14 +/K [1507 0 R 1023 0 R] +/P 1658 0 R +/S /LI +>> +endobj +1509 0 obj +<< +/K [1025 0 R 1024 0 R] +/P 1510 0 R +/S /Lbl +>> +endobj +1510 0 obj +<< +/C /Pa14 +/K [1509 0 R 1026 0 R] +/P 1658 0 R +/S /LI +>> +endobj +1511 0 obj +<< +/K [1028 0 R 1027 0 R] +/P 1512 0 R +/S /Lbl +>> +endobj +1512 0 obj +<< +/C /Pa14 +/K [1511 0 R 1029 0 R] +/P 1658 0 R +/S /LI +>> +endobj +1513 0 obj +<< +/K [1031 0 R 1030 0 R] +/P 1514 0 R +/S /Lbl +>> +endobj +1514 0 obj +<< +/C /Pa13 +/K [1513 0 R 1032 0 R 1660 0 R] +/P 1659 0 R +/S /LI +>> +endobj +1515 0 obj +<< +/K [1034 0 R 1033 0 R] +/P 1516 0 R +/S /Lbl +>> +endobj +1516 0 obj +<< +/C /Pa15 +/K [1515 0 R 1035 0 R] +/P 1660 0 R +/S /LI +>> +endobj +1517 0 obj +<< +/K [1037 0 R 1036 0 R] +/P 1518 0 R +/S /Lbl +>> +endobj +1518 0 obj +<< +/C /Pa14 +/K [1517 0 R 1038 0 R] +/P 1660 0 R +/S /LI +>> +endobj +1519 0 obj +<< +/K [1040 0 R 1039 0 R] +/P 1520 0 R +/S /Lbl +>> +endobj +1520 0 obj +<< +/C /Pa15 +/K [1519 0 R 1041 0 R] +/P 1660 0 R +/S /LI +>> +endobj +1521 0 obj +<< +/K [1043 0 R 1042 0 R] +/P 1522 0 R +/S /Lbl +>> +endobj +1522 0 obj +<< +/C /Pa15 +/K [1521 0 R 1044 0 R] +/P 1660 0 R +/S /LI +>> +endobj +1523 0 obj +<< +/K [1046 0 R 1045 0 R] +/P 1524 0 R +/S /Lbl +>> +endobj +1524 0 obj +<< +/C /Pa15 +/K [1523 0 R 1047 0 R] +/P 1660 0 R +/S /LI +>> +endobj +1525 0 obj +<< +/K [1049 0 R 1048 0 R] +/P 1526 0 R +/S /Lbl +>> +endobj +1526 0 obj +<< +/C /Pa15 +/K [1525 0 R 1050 0 R] +/P 1660 0 R +/S /LI +>> +endobj +1527 0 obj +<< +/K [1052 0 R 1051 0 R] +/P 1528 0 R +/S /Lbl +>> +endobj +1528 0 obj +<< +/C /Pa13 +/K [1527 0 R 1053 0 R 1661 0 R] +/P 1659 0 R +/S /LI +>> +endobj +1529 0 obj +<< +/K [1055 0 R 1054 0 R] +/P 1530 0 R +/S /Lbl +>> +endobj +1530 0 obj +<< +/C /Pa14 +/K [1529 0 R 1056 0 R] +/P 1661 0 R +/S /LI +>> +endobj +1531 0 obj +<< +/K [1058 0 R 1057 0 R] +/P 1532 0 R +/S /Lbl +>> +endobj +1532 0 obj +<< +/C /Pa14 +/K [1531 0 R 1059 0 R] +/P 1661 0 R +/S /LI +>> +endobj +1533 0 obj +<< +/K [1061 0 R 1060 0 R] +/P 1534 0 R +/S /Lbl +>> +endobj +1534 0 obj +<< +/C /Pa14 +/K [1533 0 R 1062 0 R] +/P 1661 0 R +/S /LI +>> +endobj +1535 0 obj +<< +/K [1064 0 R 1063 0 R] +/P 1536 0 R +/S /Lbl +>> +endobj +1536 0 obj +<< +/C /Pa13 +/K [1535 0 R 1065 0 R 1662 0 R] +/P 1659 0 R +/S /LI +>> +endobj +1537 0 obj +<< +/K [1067 0 R 1066 0 R] +/P 1538 0 R +/S /Lbl +>> +endobj +1538 0 obj +<< +/C /Pa14 +/K [1537 0 R 1068 0 R] +/P 1662 0 R +/S /LI +>> +endobj +1539 0 obj +<< +/K [1070 0 R 1069 0 R] +/P 1540 0 R +/S /Lbl +>> +endobj +1540 0 obj +<< +/C /Pa14 +/K [1539 0 R 1071 0 R] +/P 1662 0 R +/S /LI +>> +endobj +1541 0 obj +<< +/K [1073 0 R 1072 0 R] +/P 1542 0 R +/S /Lbl +>> +endobj +1542 0 obj +<< +/C /Pa14 +/K [1541 0 R 1074 0 R] +/P 1662 0 R +/S /LI +>> +endobj +1543 0 obj +<< +/K [1076 0 R 1075 0 R] +/P 1544 0 R +/S /Lbl +>> +endobj +1544 0 obj +<< +/C /Pa13 +/K [1543 0 R 1077 0 R 1663 0 R] +/P 1659 0 R +/S /LI +>> +endobj +1545 0 obj +<< +/K [1079 0 R 1078 0 R] +/P 1546 0 R +/S /Lbl +>> +endobj +1546 0 obj +<< +/C /Pa14 +/K [1545 0 R 1080 0 R] +/P 1663 0 R +/S /LI +>> +endobj +1547 0 obj +<< +/K [1082 0 R 1081 0 R] +/P 1548 0 R +/S /Lbl +>> +endobj +1548 0 obj +<< +/C /Pa14 +/K [1547 0 R 1083 0 R] +/P 1663 0 R +/S /LI +>> +endobj +1549 0 obj +<< +/K 1084 0 R +/P 1664 0 R +/S /TD +>> +endobj +1550 0 obj +<< +/K [1086 0 R 1085 0 R] +/P 1551 0 R +/S /Lbl +>> +endobj +1551 0 obj +<< +/C /Pa13 +/K [1550 0 R 1087 0 R 1665 0 R] +/P 1666 0 R +/S /LI +>> +endobj +1552 0 obj +<< +/K [1089 0 R 1088 0 R] +/P 1553 0 R +/S /Lbl +>> +endobj +1553 0 obj +<< +/C /Pa14 +/K [1552 0 R 1090 0 R] +/P 1665 0 R +/S /LI +>> +endobj +1554 0 obj +<< +/K [1092 0 R 1091 0 R] +/P 1555 0 R +/S /Lbl +>> +endobj +1555 0 obj +<< +/C /Pa14 +/K [1554 0 R 1093 0 R] +/P 1665 0 R +/S /LI +>> +endobj +1556 0 obj +<< +/K [1095 0 R 1094 0 R] +/P 1557 0 R +/S /Lbl +>> +endobj +1557 0 obj +<< +/C /Pa14 +/K [1556 0 R 1096 0 R] +/P 1665 0 R +/S /LI +>> +endobj +1558 0 obj +<< +/K [1098 0 R 1097 0 R] +/P 1559 0 R +/S /Lbl +>> +endobj +1559 0 obj +<< +/C /Pa13 +/K [1558 0 R 1099 0 R] +/P 1666 0 R +/S /LI +>> +endobj +1560 0 obj +<< +/K [1101 0 R 1100 0 R] +/P 1561 0 R +/S /Lbl +>> +endobj +1561 0 obj +<< +/C /Pa13 +/K [1560 0 R 1102 0 R] +/P 1666 0 R +/S /LI +>> +endobj +1562 0 obj +<< +/K [1104 0 R 1103 0 R] +/P 1563 0 R +/S /Lbl +>> +endobj +1563 0 obj +<< +/C /Pa13 +/K [1562 0 R 1105 0 R] +/P 1666 0 R +/S /LI +>> +endobj +1564 0 obj +<< +/K [1107 0 R 1106 0 R] +/P 1565 0 R +/S /Lbl +>> +endobj +1565 0 obj +<< +/C /Pa13 +/K [1564 0 R 1108 0 R] +/P 1666 0 R +/S /LI +>> +endobj +1566 0 obj +<< +/K 1109 0 R +/P 1667 0 R +/S /TD +>> +endobj +1567 0 obj +<< +/K [1112 0 R 1111 0 R] +/P 1568 0 R +/S /Lbl +>> +endobj +1568 0 obj +<< +/C /Pa13 +/K [1567 0 R 1113 0 R 1668 0 R] +/P 1669 0 R +/S /LI +>> +endobj +1569 0 obj +<< +/K [1115 0 R 1114 0 R] +/P 1570 0 R +/S /Lbl +>> +endobj +1570 0 obj +<< +/C /Pa14 +/K [1569 0 R 1116 0 R] +/P 1668 0 R +/S /LI +>> +endobj +1571 0 obj +<< +/K [1118 0 R 1117 0 R] +/P 1572 0 R +/S /Lbl +>> +endobj +1572 0 obj +<< +/C /Pa14 +/K [1571 0 R 1119 0 R] +/P 1668 0 R +/S /LI +>> +endobj +1573 0 obj +<< +/K [1121 0 R 1120 0 R] +/P 1574 0 R +/S /Lbl +>> +endobj +1574 0 obj +<< +/C /Pa13 +/K [1573 0 R 1122 0 R] +/P 1669 0 R +/S /LI +>> +endobj +1575 0 obj +<< +/K [1124 0 R 1123 0 R] +/P 1576 0 R +/S /Lbl +>> +endobj +1576 0 obj +<< +/C /Pa13 +/K [1575 0 R 1125 0 R] +/P 1669 0 R +/S /LI +>> +endobj +1577 0 obj +<< +/K [1127 0 R 1126 0 R] +/P 1578 0 R +/S /Lbl +>> +endobj +1578 0 obj +<< +/C /Pa13 +/K [1577 0 R 1128 0 R 1670 0 R] +/P 1669 0 R +/S /LI +>> +endobj +1579 0 obj +<< +/K [1130 0 R 1129 0 R] +/P 1580 0 R +/S /Lbl +>> +endobj +1580 0 obj +<< +/C /Pa14 +/K [1579 0 R 1131 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1581 0 obj +<< +/K [1133 0 R 1132 0 R] +/P 1582 0 R +/S /Lbl +>> +endobj +1582 0 obj +<< +/C /Pa14 +/K [1581 0 R 1134 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1583 0 obj +<< +/K [1136 0 R 1135 0 R] +/P 1584 0 R +/S /Lbl +>> +endobj +1584 0 obj +<< +/A << +/O /Layout +/LineHeight 11.0 +/TextIndent -11.0 +/StartIndent 22.0 +>> +/K [1583 0 R 1137 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1585 0 obj +<< +/K [1139 0 R 1138 0 R] +/P 1586 0 R +/S /Lbl +>> +endobj +1586 0 obj +<< +/C /Pa14 +/K [1585 0 R 1140 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1587 0 obj +<< +/K [1142 0 R 1141 0 R] +/P 1588 0 R +/S /Lbl +>> +endobj +1588 0 obj +<< +/C /Pa14 +/K [1587 0 R 1143 0 R] +/P 1670 0 R +/S /LI +>> +endobj +1589 0 obj +<< +/K 1671 0 R +/P 1146 0 R +/S /Note +>> +endobj +1590 0 obj +<< +/K 1672 0 R +/P 1148 0 R +/S /Note +>> +endobj +1591 0 obj +<< +/K 1673 0 R +/P 1150 0 R +/S /Note +>> +endobj +1592 0 obj +<< +/K 1674 0 R +/P 1152 0 R +/S /Note +>> +endobj +1593 0 obj +<< +/K 1675 0 R +/P 1155 0 R +/S /Note +>> +endobj +1594 0 obj +<< +/K 1676 0 R +/P 1157 0 R +/S /Note +>> +endobj +1595 0 obj +<< +/K 1677 0 R +/P 1159 0 R +/S /Note +>> +endobj +1596 0 obj +<< +/K [1678 0 R 1161 0 R] +/P 1323 0 R +/S /Note +>> +endobj +1597 0 obj +<< +/K 1679 0 R +/P 1163 0 R +/S /Note +>> +endobj +1598 0 obj +<< +/K 1680 0 R +/P 1166 0 R +/S /Note +>> +endobj +1599 0 obj +<< +/K 1681 0 R +/P 1168 0 R +/S /Note +>> +endobj +1600 0 obj +<< +/K 1682 0 R +/P 1170 0 R +/S /Note +>> +endobj +1601 0 obj +<< +/K 1683 0 R +/P 1172 0 R +/S /Note +>> +endobj +1602 0 obj +<< +/K 1684 0 R +/P 1177 0 R +/S /Note +>> +endobj +1603 0 obj +<< +/K 1685 0 R +/P 1179 0 R +/S /Note +>> +endobj +1604 0 obj +<< +/K 1686 0 R +/P 1182 0 R +/S /Note +>> +endobj +1605 0 obj +<< +/K 1687 0 R +/P 1185 0 R +/S /Note +>> +endobj +1606 0 obj +<< +/K 1688 0 R +/P 1189 0 R +/S /Note +>> +endobj +1607 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1608 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1689 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1690 0 R +/FontName /PFARJU+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1609 0 obj +<< +/Filter /FlateDecode +/Length 528 +/Subtype /Type1C +>> +stream +H‰|ŽOhAÆwÚÍÆÚ%bÓõ`B3 5Ic(‰¨‚ø/5%Š‡Ê6;iÓÝ8»­ÍAô ö ÈZ¼Å + +B¼‡VJ-•"Dõ ˜ƒ‡zz'‚»ñâÉ9|¼ï÷ñ¾7ˆã»8„Ðüø¥±Ṉ̃L…ª²’¥zä”^RÜ$dÝÏÛAQbI¶䛿®{`m¼Û¿n/÷q]}þ~Z/;‹SÓ&>žJÅîu4ÆñX,ÖÑ!<¢è“ç*†If |N+è´¬SÙ$J”J¸Sa`J Bç\ø÷;X50QÍiB±ì„Sª³O‰‚M*+dF¦×°î&ÿØâNaUÃN¾¬©®Ë™4°¬)ƒN‹Þ¹RÐg5“ªÄˆžÉå+e‚O`…9ç!®Ÿ;ÊñŽ5¶íj­aÿh G7ºk¼]meÛUغÄÒpßMa¶*kÚ÷¼ma¢3Cš9^°W$wb®óÁ„Ï^¹ "œ‡@ìƒmˆ² ÄýÍúKɨ˜Ý @jw¼_/¾^ Ýõúw¿<{õzëà·ôGJTxκ<–ׯ6^hJþüüøP–¡·‚¿ù~C»p¥@Nf2OË!Ô—æZ‰h"Ý›­„ô;‘VÂë»eÙ7-8bYÖK`EkËò:hÞ‚híqÐ'«g`iòªØS{ß áÞŸŠâ(õ< +endstream +endobj +1610 0 obj +<< +/Filter /FlateDecode +/Length 1274 +/Subtype /Type1C +>> +stream +H‰|RmPWÝ%ìF M4Û¤˜evw¬ÓVQĵŒÁXmQJÛ ‚YBä#˜Ä +bø(&!A­BÐV¤Õú‰€Z-R-•ÖÚ±Sm; +­ Spjmí]úøÑ ýÓ_}3ïÎ=çÎ=ç¾;ÇÂÃ0Ç5:Ýš× k¢ÓÊ­æ\cºÕ2_Ï›ó,EÆP•h\Є Q*£Â;þÞ@Àe Íø&Šà”XŽßI±”ŠÝ¦;·0!A;/ã&ãâyœ666v2ÆqÉFKÏéËmv¾ØÆ­,Ùh±–Z¬¹vÞÃ%q“6ÎÊÛx«#Dþ;g¶q¼Ù^À[¹\±h2‹ýVÞÈÙ­¹F¾8×ZÈYB•ÿÀüÿ±âÌ%œ¨Å­+1‡Þ.’6.·Ä¸@T±Lºl´l)±[ͼ-fN¿¶¼”ç^áŒ|>&›)1 +Sc/bË°L‡é±LÌ€=#îKÃÒ±Ø<Ï«ð'a¦°É4‰Ar¶«!(<âbœ”4„ îñô 7 ¨_…’`7£$âÐE„ÀÄ{Ò 2{2‡$$bR¸  +e(„ähÜu_pÞÇOÂtØ + Ÿ£BóâQÊf‘ÁwEÁ\ ÂsÀÃÚeÀ¡…¬{¾êf§E£X~QÊŠœAÐúXXì=?p•–·9Æ™2\ “€K ²qf6‰´‰m1 ûšð“ò†ÇBÎ#Š^‚SýðK/õ@ü98¤æéò_Ñì„Ô>‹éŒ#µ÷½Dß9þÖ›¬7>%ÍG³’R#_•Ê] ~¨Ç8üJ‰5ΨÐ=r v||ØßIƒºÏœ¨ËKI×·î³°ÖÂyòŠó➌Áô[¦>ÃqöhNFKí¬òz*ÙVPÐHÊÏ·9àô¬ï‹ó]WƒNƒo ù`5´ŽMÌ$åÝ®»zÔÜVž9,U)¬W×óœûT©Ò§ÙQlÒŽ-&æࢭ=¸¯‡jÉ,dk¥è5ÂÓBCõ&÷¥þ~åóçŽ1$U¹{AõVÀRU­·Ú]øL…ÚXôaÏÍŸ[‡=¬Ä÷®r/üeÊ«âL.˜AUÂ5ջ놸Ó5_ڮВaHaá%ßË‘Œ^–Y”UÌzàRL\]Þö¬ólb€‚vUÀßìßÃ|±·»3H~²<ž¥zçd¥%enèê­b<{¼MMùÅêQP켦Á&˜"lÀ«ÄÎýiþZj¤E± ˆB4š3:´×ú[>8Ë”ß!¶æçÕfЉºSwÝìPxpç‰ï¤$g{Y9×æ(ºÊŽL¾ƒj¹ÚðN’º¼×ßâofúšÏœúŠÞ×ìñ4±T L‘R—ýÕu¾môúŒÝNRG·Ù˜ãËZ©‘?u=Zá*ʔߊ*kE½nÁ+T¨}FnuWmw1EU…zÕæ ,ìùÓR´h óÞpO°£ñ“”sW2é9ãéé×È»¢ÂX¾[¨ˆWº =±k›¯®^ó®»®¾†ygSi‰½ÒZ¾Ùå¨?ò|äñÁ÷{Îõ»¾ƒUâ_¸‰"É¥¨¥¦°ÆTk™é&ëŽTwU[{#åÛBE¢ÀÁ‰ò7R‘r f’š"R?¦2my9S"d#Ó@!iŠˆÚŸ6ªþ`œ4j +endstream +endobj +1611 0 obj +<< +/Filter /FlateDecode +/Length 2146 +/Subtype /Type1C +>> +stream +H‰|TkTGîaè nƒôΈÓØÝ€Š¨A¸¢’õá!Ècä10àòP‘Á™Q׈€ŠÄ(/|‹ +Q‰ON0whq³æ6[œ³[ƒgÏsꞺ·ª¾ïÞ[ß) aiAH$å—¡Ak|ý§¯ÈÑ$FÇ­Ö¨gªRcÔÉqæ]Ad%¢ÒRt+GsÉÁ²éŸëI¸iÆÝr°ziGXH$_û¨Óðíø„La¶§§Û ³õµófn®®®£ÖCðŽSǨ„ÀœŒLUJ†°<5V­ISk¢3Uq.‚wr²0 +‘!hT*Öü˜“˜!¨3T!oÆ'âûUœ©‰ŽS¥Dk’µyçÜ ÿ‡JHL0–”šhö3q0CˆN›…QÔ£,±êM©™šDU†Ë,¿Àµ9i*ás!NµÀCBŒ#ì†PSˆ©Ä4•p'>ÄÂXFø+‰UD L„áÄxÜ_b±š8D´K,%’#’YL²È²x& vZzZɉdùšLi¨ÙDÙaG›Øß&ÁvJ›t‡¥X:¼z¤”º!G^°‡„> + è[9˜‘¿ÈF¨ÈÑ5x!ìSb»Ü¼Bf™BëÞˆÙo$'ÀÒÁF +G†ähÆä€"yfx‚À™…YOa<¨`íbÐl¾t¦üa³šŽ\Uî>K£ž‚›‡ye{î±tv˜Ë’€¬¥ S€õ07…Bn k\Àú;ÒHÑ;Þ‹Qï$0ˆ¹ÄlÅ{tÈ(»ÞJù§¯R~Xò šâ雪Šàš=È#Ç[믳Ï¿\×ÍñYˆf¢É^¾ö’Ѻ~(éæ½~;©1ÌÉÑKj=ê!w­56³ èó^èã³:°ºJÍk\Èì·³dÁãïC`û8¾#¬‘¯ +¨`³ Êôy|5(H0QtvÑ{±ð½¤äR±ÆÈó’BŠBYäèñaî`/L¼v¡0ÿ_;@Vh֘Ϣ䂔Hƒ¢A”°±çNUU=O?Ú: ê~•Üx +é}£¼äÌÕí?°0þ÷Æ›]üg_ÁX%ÈbŸø˵¯ð8ŠìØÅ~%ÅA<ظÉw¨3fÁ¥w.r*ãÑ¢îÈÃÀiÒw˜6ó´SNÁÊ!3ºô¾SœÃ2ÀJ¨™@ÑýºA±d¡Ç`r‡½å()Ðg(…ÁX4ðበ-¬EVà„BùRG9ØÜFcƒ&-CÈ}â|ˆ¿ $Ð<­Â¼ ¯@݇yiˆÚÌMCÃ-ª[L]í^=oÿÚ½YVÀPùGsþ¦ýióÝÔKá­L²Û‡;;_(¯k/mhäNE.ßïÌúúmÛ²Žz®Ü´ï®ôI{¢÷²¨ÏùÅí¨û9P ÅOú^ØÃð À†ÉC% úó”à+û9ˆ\½þ¬ÝÏ}³€¬9ÞVu™í­Nâ·ÈÐ2’¬@6J¦Õ»Ãwàö•ÚS œ‰bòö‘Lk.,’o)+*-ætñIal\ò×—>«~¡çéMº~­øÙ¯ew÷Sã˜<8æ"kvqprD +¯‡óÈf¤“„êƒô9`à¸|Ÿ±Üøwµ²¥¹}zvÉžiuŠXá¼þdk§ÿªlï^%®\¦§½5s6Á8ÈÃ…¶ŠÃarT¯—5o +¯[Æ¢1SÑ<œ_;‚ÕýÎWë9#¦ÚåE‚¥?®¿Ú¦»e8ír¦µ ¬°TÇF%†² £î¾üåB÷ãk§ãÂËyc‘¡°HI»õ]/Xÿ$i‚O`#XIÅ PÉq²+ÁvC®žX,rês·îÎq9ÏÉü 1[Ø…~§~.å{-ÛvûþûôwdO'"Õ[ón½Ñ}¬#×Ñ#:Š¹r¦¿ÄŸÔSg2£š½q)Ÿ:#ÄõNƒ?Üi«?_Ç£©É«¢¬©>˜Ì¥¹éçîÜb»º+[®ðW.Ö®©¢±áÛY>ŸG_ãø¸zvÌM.ÊNã2ó³²6§Yé©«ÚÐæ/XϨHU_J1­%?“(S´!"PI'ü—Þ‚qÿŠ‰má4Ui¨ÚYά8ÑÔÊv ^£:¬Ðs2pqï˜;?xJËa¬–mHDü íÄh ÈtYu£‚f*‰]s³ÒXa,ç:ÊÏœêd«Êõú½R LQ†ˆåJZ¥{·ÔÜU»;e-ÆkËð#t‰Ê/-خ㒠’ÂXÿôöâøirï ~ùâr[SY²Ù»½I (ýýåJZ˜®‡²${Ä\)žrð $w¶–(·•n-)æ6oLKÍÌÓä¤ë´%uŸÚ7îlÛùü¶–ž.ðÇÂs{dO-BÅIÅñ[ÔJ©­uE'‹Ü¡ÒžF³w À…É!q–ôBœ5€ö©#G×}S_4ÇþÇ‘ñNP¤—¥«µšô*°§ ÷‰¹ûþ­ïÚÓ§O_<íwÚô+ÓÙBÓ¿ë…8€B7¦sÊ-HŠçáìæá~ÎõŸûùTžkD~|0 @û +endstream +endobj +1612 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1613 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1691 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1692 0 R +/FontName /KMKVDJ+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1614 0 obj +<< +/BaseFont /ICEESY+Wingdings-Regular +/CIDSystemInfo 1693 0 R +/CIDToGIDMap /Identity +/DW 1000 +/FontDescriptor 1694 0 R +/Subtype /CIDFontType2 +/Type /Font +/W [132 [747]] +>> +endobj +1615 0 obj +<< +/Filter /FlateDecode +/Length 603 +/Subtype /Type1C +>> +stream +H‰|POHaŸÏug3׉¤YcýÔþ¢în²nÙaC ËhSܺtÐVgÔ±uGfƵ¥C!-I#æ%xÏÕ)Ä%á!=˜Çš$ "öÍúúf»tê;üx¿ßû~¿÷x„+.â!þË×;»;âõ±Œ¦$¤.MmŒË#JŸš”ÚÔ”TøaWÛWlöŠx§wzv.ºáÃX=ø6_TβñµMeþÁ!ƒžjiijp0\ÀÓ ´) +0L[%µO¦ñŒnÈ#:íHõ«Ú¨ª% Y +ÐÖd’"tªÉº¬¥ñïVTÑ©¬C²F¬9¨0¿&KÔÐ’<’ÐnRÕéüCþ3Š*)ʲ赔ⰸÁD&RR¥¨…)ýêXÊÐYÛãW3£2=C%y€cïäB\3çf×ãbœÁ½&Ró$»h_$ ,º²ÅöT¾kwŠ‡i|'b¹Áâ‘â²;ëÙå{ +5D‘qÞ^ +&d-Þ„˜E–s.Ø°©ˆaˆAÔÂ…½¼²ð C˜Ï¥ó‘q²¼W¾¹ P] “[“Ÿýø§çÎÎǀǕ?ò‘Fìæ±l¦îa³ÿŸþ¨|1Þ£^VžØ‹ðBf²ï[ä9¸ \.˜ÈGE¬:‡µØƒ½+X>(Ýü ³Ð‡ ÖVß ˆ«Ï°¬òö êo85̾R-Ì¥íµm>¶·¯"g¯°¿NB/Ü1íÛ&Ô›¦9còxÃüdz˜tË„“æÍ}8`®›%þ¹¾^oIÖ[º¾?Wj{ÙãâgL& + +endstream +endobj +1616 0 obj +<< +/Filter /FlateDecode +/Length 3306 +/Subtype /Type1C +>> +stream +H‰|TkPW»G”feÒh¦ÝîQPñ…øh0ºhD]DQD"ŠÌ cAÞƒe€AW‚(ïÅWbd Ì >¢Fq×]Á'u«»¸§'«¶‡Tªòck««Nßsï=ß9ßwï¹8&óÀp±`弘˜q‘Yzm¼:J¯›°P»acº{I‡á¢¯Lüý M@e?û9”„KÞà|~˜×#ŒÀqY÷‹Äµ‰st)R´¥š4}úäñn;µß†ŒWM + +ê·SUajÝz*:+-]³9Mµ 9A§OÑéãÓ5ê@UXR’ª"M¥×¤iôîÉ_jRiÓTmúF^/-nÐJñzZ•®Wk6Çë?UéÜ+¿qÿO*•6Y%a©b’µn/:]šLSÅ'«'J(ºþ, º-Ééz­&-pbxô²¬jšJ­IÄ0\ú0/ ó–a†À0l,†MÄ°)6[ŽEÊ°h[…a: ;†á»0lœ¤1‰Ea)˜ ;ŠõâCð8¼àà‘ïqÄÃIx:âñXÆÉþDâ䲕’S ¨»ôp:šN¤ÉÇÉõòüd pxRž³=›Ò• ò‹-é_và’õï Jdb‘+ª¯ˆ‚2tE3¡œ„gR¡3,¸¾½t×?†™Hò)ñ4ë!·Ç .ù€? 4qy±ÕGÛ€ª½µ°pè¶È„åÄËÃülñÜÀªn8x8§.--{kªV\“qcÐJWX&n ¢9…ï]Zr…þúNK2Q«øÄ‚›p­ƒ€Ý®1,ÂýF¢Bå—=xÍï}Al yƒha‡švä-U5w•ôÃ&D `ÙuÀ{&ª!C|å(Éôƒ]Ñ_»‹_K):‘÷ìJÍÛoIÅD•ØÄ[­¸()+Îõµ¡›&ºÝNB|ðì_ðžòöš7ˆ›¿4EÏ×m"u|u™c³ÃlFZ€æ +‹#ÉÍ´Äš! ï$Æõãz‰qf?ã̃\Ÿ\ö¿t07d€Á +/ÏJ5~)~©¸-†}€ ¤“B»\Áä +½ –¼{` «¬ì=È$Ï´ík®°ÈMT…æsmul7Ú2”i,´‰.›$!6\f·j¢ –phþð„X.‰â <ï,Ènª­ä¾ŒOê>àÐFÄ¢ñ(m‡ ?é¾Z]Û$0ÿÜi_[ñn»ø±“è.ew:œÅ§%Ù_›¯^.}wäÉ+å›Í·bÎñßDþys —|¶}¥`ßÀîù¶GÚ˜ô @³Š´B…¼PR¼ºt·Žg>,±‚à +•n`Bô²¨*ÁbEßÃ+úÐH1¨§!ÃœéÞÕí +fßÛ]Á4ó´äʺ ñ?W$•ºÛE»"Þó…ç´" dÅ7wÞãM¥Íáíw|ô>Tô #Oº‚cÑcJQ3¼tæÞ ÞX¼éªúÛ˜ûï£jq÷.˜bâ%Ý/[à¤EJ_9ˆn_;\î¥zvµ®­[\U‘)ï òŽäw¤÷æÜÒžŠ©‘›è;GÎ^xª´gL>Ê·¨—ÕMáÖ,Ù¹m½`ײ»kšö´soˆ÷ŸYs¬hà«{‹f;«¸ÒºLŸ.;%3JjnsH÷ïkHMÌYÊ!bF7 òÚ+`Ï´äæj,äþ­«k¢8äïç'uÇÈGƒÐÙQ¿¯A`Š~S±Íwí +§8ÕµŠE猴mËŠ¶iò ¦– +ȯ'<{Î;ÏâMRµeAdel2¶WŠ/èؾýl®± (ŸW8C3"âÂ¥y ¾ö´÷ι˜ˆ¡,ß”•¯d" m°É Yp›¾é ÄE`dMå%åû•›!MB¿›(%DÃŽþ¾³¾¢–/0“ù)òær!!P(3³ß—·¿xËüèÈùѤ7G\d†5Vü¾€!¾&kFìúǺîž/êvìØÏW™Éò¼”ò$.1!?9YP«ó‡)SÃ5}‹h¦i¬ð‘U ²~•¡K ÓYÅK㇤‘²fÆžÏ GSP(ò`x=Ï9'ç<ç¹=þG>Æë“_ªÅäÓ–¹é æÄ «¶©ÕÚÐÔÌ6¨q)ÿÀ³¨XÊ9Vo,ÅÞ–¶_ÐJrB¨Ÿ°UÖW[èöÁ[Ôxo4è£âú*ŽóªÝãþšêB ÔÉÁ÷bˆD>mÉ YúÜ£t«;©?¶ÈHŒjÜTXJÚÞlÆHý忉”„IeÊRΗᵓ#ÇÖÂZi«2Ó?6 {îR³óeèC.CJXŒ2>—Æ@WÊþÄâ¼·œ^`‘iä Rä¬G[Ðê™Õ°ì,ý" dý,ZÁ|…7pà’lDKÃÖ‡„n{ÏoÀBàG»NBŒUñÙÒ3gK©O“bN +dNã!ñSbÆØU{K·Ï;9_w³Tã¸\ÄQßš¼—ÒÞÁD~w¸i@îvtz:uÝÐ%ªÏË´(©wâ?ßwùÀƒlf,Ç‘³Ožx(í£õ¶\Z‚NaÐu.ŸYï,ÿTŠ–}¨š@ÃbÅ7éMy´ÚÞ^|‰joªþÚÆ”:E冂ò<*AÛ5ÊÀ-XåB«€K +‹{K„Ö ÇËŠ#¯ðûð´%£AB[¦-cé$M‚bµ&ëþ? 4'#‡E>Ëý}hÐÝ"ˆ¶ò}‘›0:®^¹dMÅõ,/”•'[1ľTc ûyµ(‘@º*")ºƒútÜoEÝl–C~pU&O*†ù%ýx 7Ï…“Îfáqˆ÷ñ 4ˆÈ±óCökuÃØ•Xâmûã¡ó2Œ» ã*ˆ÷PkA›T’ºc^aûµ#k¡E–J¼Ú4{  Ê_%}zîÆVh“I^Ç!úÔò›}k’Ý/ãDU%¦Ò2y™±¬¼˜Îßs$=_“sD—Êš.3W]¬s9~êùsBáMøW–@`r“Í0d–dcÂSE®¢‹Ø°Þ‘I’Áàòéà£}; Mªâ£]b ,ïpL_€ëf>]Ý3=|`/<ž[‰m1z Ñø¿ð‰½p8,÷ë6„OÎñƒ`ðChÚˆüð£P\+X ›°K €PäH"­Õ´ÆS!v Qð­ îájZ.1%í¢Â|Uqõ–blr²ïîóK…§ëIÙ+ÞÓ}¬wó¯°ò>¿Vê  +ÂBmŸ|Ôn?s¦Î+Ôl.jUFѱlF•Á +BØV19ýW󽩖¦Ó§ëhòŽÍ)"§Ïé›M¥~¡ÏÍcÒÅn—k¼’Îa`VPvƒ™W›aƒÙln1(Ó> +stream +H‰|TkPWîf˜n@Ò&¶“iìnÅÆ QŒDÔ„A‚€«€Af`FDqx©Ã0y8Ès¼D‘%J –fË5êZ›Z‹ÍƬÙÔîVå4¹¦j{°¶jmÝêS÷<î9ß9ýÝ‹cînŽãó¢>‹Ý·L]¨×¦¤ÅèuË7îKIÍr¹‘ÅEÚ]ôõfPªñ•/øµD·gÃïLúzøÎÁÜpüÙß6ér¥£™ùÂûk×® pÉàùa€°rÅŠ32XKÓíÑq…†|M¶AˆÈIÕésuú”|MZ ¶oŸ0“ è5Þè2¾$h ‚F›Ÿ©Ñ )’3C+×kÒ„|}Jš&;EŸ%è\žÿQÓÿO)A›#H¹„m9Z——/ BJNZ”E7S%UW“¯×j AŸÆÅæj„5Bš&ÃpiaoaØb {Ã>À±8ö Ž©0l †©eXœ–„aŒ4TLÅ`zì!ö¸-w;#cewÂ}•{„û¤œ“kä׈yD +ÑXb_ ã’ô–YÝÅcÓ1¯Pn3(êäð4€Ky]K¾&’göŠ$o2®riš¤ yÂ}üœ!0£ßýëà(¼DQ´4×/c‰;ËA€Ã' * ^6QÃTôÝ>ò‚¸¹ýGþþ›S0_ o'}vƒR…8î =Rº•‡4—±Õ·Ø:YÀžªÑ<°j ò´ñ‡Xm¥<…RÆéÕ&WnÙÄôjæ·Õ1½š¤~qá80°Þ•|á*Ù„´9ÞIŒž9ÒÊ·¯iÙÞ`ò5Q|¶à'ã÷ ƒÉm5äHÛ½»ß)ï®ïîåúw„ôcß­(ÛÁC8š-Aiµ]`ïVöêv(Ò´áÜN‚ºQKE?ðLJ ÜA-èfLýÏŒÏYHøþàñ2~½u•_Ý“qò‚²««ýÖƒáýÅ\?øÉÛ“c›BXê„fù?Ž"•ÿ6¯kÿ^¥6Û¨V©Ž=Õob‘±Çà6Ôœs°HØD‡ŠŸŠ3–!§BH˜ó­_ü‰®(‹ëA¤¼­çVëMv²©ÀÄ%ѺJäµ)”tòÚ‰?8›.÷qÕÚ°[N·AÍ”ZK-e\n™®0Í66w^q<â©ŸÍ°áFRMsFAÁI„Ý>´³öžÜFÄ÷ÞÚ“ܧàS–ÙVýy²Q‰†toR½¾AУ-Q–,¢ —©«’×w¼ël{÷\‚Š§ëµ©¿ÏÐï.ç*k+ëë•®²‹B"G1ÌwÕí–Æ *Ú)zM'2¨ÖBv$7oc‘Ç´¶ŠGA?.bìΩÑ^Î&•«UÉ!˜°ôZ&Æ•â ’vJ00æÊÖno…./ƒMHxxËíÚud'{êr…Ô7ÅtW;œ#ìXãvOýi`þS˜EÀšßt³Dêæ¹ø®hfèWÛåb oÏéÏX4Ûß¡E/–·ójKo+ >NÈŒŒ‹kkÉæ´ÈWnzXü€ýöqãõ1þÎÍ–ç/”à éçÏlƒÕ]R£SŒÙZt¬„Ë­0ìe²¿üš§_=½te°÷´1³Ž«*¯*•ZuE³éø—~© Ì>¢Y‘™üëôçL\FFbRŸftìbÿuÞY™y1Ž•Â§M3±£> šND*‚‚ߤ†ÀÏìâÅ&ð”>/‰”N)bA?‡>Ònmüâ×RÛÔÑË´dÄóÈ!] ªšk¸Óu­mì@kf4š%û ¾ÑOìÍ)/ÖsyÅ&“ÞÃB8‰Q쇻“ …üQ‚v–ËÑ2–l‹Ý¢¤¦$¿ÂbófÒÒL¯¹ðôè!«NÖÔsmuÍ}ì`ûÞXWu•« +«~ŠÈµ;“ò +9)ãµ²{rôߌÏÌRšF %DCDËà–heÐG~‹Ð + Är‰Ìý³ôŽ,]üoÈW šùê”:ü£ÜIq†±G“í“wxJ€MÁ:³é¼éô 8ºê °18JÚ«lõÜ@ýÅS#lÛI˱Fž®‡õ$]U]\n-bS¢ôò\½ž©˜’£@¶Ƕs½’Š)·¡ fãW`ÃE“uu0¦Ëㇰðè›—|åÒ‡ßëñØÚVÔЬlo­ë*2Ÿæ:’7emkŒf³fóïøÊØK1€i=Fœ(+T,Õ$G¶·è8 +Ñ%°½c PÌy›éÜ'âããh¹¡9±+›Ë;{µp„8^ëàéK0Ÿ´”²ìgwê¸Ã‚b1$e°Â"H……x‡)ëð#¥»œe#º;Ï÷v^(â§øåõJ´¶#³÷åë³3Ñ´\A¶‹f;,±Ûív¥Û'í¤dÚo‡À“‡dzb÷ä{vy{Z½g T³ÀÛÞäí ×抵ÌÛÏÚ +endstream +endobj +1618 0 obj +<< +/Filter /FlateDecode +/Length 359 +/Subtype /Type1C +>> +stream +H‰|ÁKQÆwMWJ + #æÐ-S¡¼†…µE·buŸº¤»òvª¢b‚b¤»òè¥GRžçÝ{ +«{o^xå®zD#¯sãÈø::ÿ#À¿k¤‰ +endstream +endobj +1619 0 obj +<< +/Filter /FlateDecode +/Length 1275 +/Subtype /Type1C +>> +stream +H‰|RmPWÝ%ìF…&Ê6)f™ÝÖi«(b„ZÆ‹ T§(%Š-À`–ù&1„‚>ŠIHP«h+¦Õú‰€Z-–¤Z*­µc§:ÚvZA§àÔ*ÚÚ»ôñ£›ôOõͼ;÷œ;÷œûî< ÃpW­X“ž¹&36«Æ¨/Òf 4|…¾ØP® V9ÆU¸©@‰¨-&¼ûï \–ÃȬob. + Ãñ[ci†*±[Wjæ%%©çcB(.™Ï©ãããC1KÕŠyNSc2ó&neåFƒ±Ê`,2óÚ8.µ¼œ I˜8#oâ– ùïLœÞÄñzs)oäŠÄ¢N/öy-g6iùŠ"cgVþKþÇŠÓWr¢·®RD³Hš¸¢JíBQÅrÙhØRi6êySÜ ÍÚš*ž{•Óò%˜xpl…Q˜{ [Ž¥a˜ËÅò°gÄ]bYX6v»€‡ãùx=þ$LÖ/™!É“œím ¸ç$­á‚}2{ÊNBT ØMÀ8‰8tQA0õžtŠ,å‚DL +Á ‘ í‘Ùî ÖûøI˜ ›A.C“sh~"ŠA,ÊsÝF10†…Ãðð°v9phk_ ¸Ù£F±(ž_œ–Y8 j Kœç‡®Ò2Ÿe’©ÆÁ°)!b’™C"u²/"¾&ܤ¬õ±Pø‡‡¢—`U>FÜÒK~ˆ?‡Ç€T=]ñ+š“”^Éç3= Ä¡.ÿÑKôão½É:Ó’Ñô|JzôkR™í´Œõ‡? J"äO2 +tÜ€†ˆv÷РÈKMÎ(NËÖtî3°Æ8ÂzòŠõžLÀÌ[º¼ãìÑÂom­w:êØNPÐFÊÎû,pzVOà×Åù®+A§Á5\°:'¦f“²>Û]oF,9U'¬W¶sœûTéÒ§Q|Ê–-:æàRÂ×Ø×OxsËØ&)zÝ…ð,$WQþÔô߯|~øÔ1¦¤êv¯#(-,S49ìL©MW–GkË?ì¿ùs稃•øÞUáÅß ´:êª8“ fQu°TIùwÝwº¦ûKÓÂ@2 +i,¼ìzå!Š —ç–çW°8‡äS×D—·ë›  Káqw¸÷0_ìíë Ð߬Hd)ÿÜü¬”Ü ½þzƱÇÙÞ®’]l‡¨ˆø ¦Ið +±sÿGª¿Öƒ©Q|¢æŽÏõµAïg™š;ÄÖ’â¦:9ãÔ];;Øyâûéá©NVÆù,R[õ‘Ð;(ïÕà†w’Ôå½n¯»ƒè8sê+z_‡ÃÑÎR^˜&¥.»š]Ûèõ9¥&v;IÝ>Npd[¡+¥JöÔö(Ó"ÔVG}+ª¬õú§P«@rô¹Õ^¿ÝÆ”×—•æÑ«6_ba¿ÈŸ–¢ÅC¹÷FûÝ>ÆMRÖ]©`¤ãŒ£P%ëµÕøn¡V"^dLiˆ]Û\Í-ªwíÍ-Ì;›ª*ÍuÆšÍ6KË‘¢ï¼ßn0Ð7ô¬ÿÂhM.CÞƲF]“a¶l>ÒÐÛpl1ì–móµˆõx<=$*ñÜðHEÊê¸5M¤~òLg|Å…‘Ó[##Æf€> +/K [1695 0 R 1657 0 R 1664 0 R 1667 0 R] +/P 1316 0 R +/S /Table +>> +endobj +1621 0 obj +<< +/A << +/BBox [85.0394 66.5194 501.232 404.882] +/O /Layout +>> +/K [1627 0 R 1696 0 R 1697 0 R] +/P 1317 0 R +/S /Table +>> +endobj +1622 0 obj +<< +/A << +/BBox [85.0394 509.045 501.232 737.008] +/O /Layout +>> +/K [1629 0 R 1698 0 R 1699 0 R] +/P 1318 0 R +/S /Table +>> +endobj +1623 0 obj +<< +/A << +/BBox [113.386 342.548 529.579 598.11] +/O /Layout +>> +/K [1631 0 R 1700 0 R 1701 0 R] +/P 1319 0 R +/S /Table +>> +endobj +1624 0 obj +<< +/K [1633 0 R 1702 0 R 1634 0 R 1635 0 R 1637 0 R] +/P 1320 0 R +/S /Table +>> +endobj +1625 0 obj +<< +/A << +/BBox [113.386 116.248 529.579 443.15] +/O /Layout +>> +/K [1639 0 R 1703 0 R 1640 0 R 1641 0 R 1643 0 R 1645 0 R 1647 0 R] +/P 1321 0 R +/S /Table +>> +endobj +1626 0 obj +<< +/A << +/BBox [113.386 422.48 529.579 656.929] +/O /Layout +>> +/K [1649 0 R 1704 0 R 1650 0 R 1651 0 R 1653 0 R 1655 0 R] +/P 1322 0 R +/S /Table +>> +endobj +1627 0 obj +<< +/K 1385 0 R +/P 1621 0 R +/S /TR +>> +endobj +1628 0 obj +<< +/K [1387 0 R 1389 0 R 1391 0 R 1393 0 R 1395 0 R 1397 0 R 1399 0 R 1401 0 R] +/P 1705 0 R +/S /L +>> +endobj +1629 0 obj +<< +/K 1402 0 R +/P 1622 0 R +/S /TR +>> +endobj +1630 0 obj +<< +/K [1404 0 R 1406 0 R 1408 0 R 1410 0 R 1412 0 R] +/P 1706 0 R +/S /L +>> +endobj +1631 0 obj +<< +/K 1414 0 R +/P 1623 0 R +/S /TR +>> +endobj +1632 0 obj +<< +/K [1416 0 R 1418 0 R 1420 0 R 1422 0 R 1424 0 R 1426 0 R] +/P 1707 0 R +/S /L +>> +endobj +1633 0 obj +<< +/K 1430 0 R +/P 1624 0 R +/S /TR +>> +endobj +1634 0 obj +<< +/K [1431 0 R 1432 0 R] +/P 1624 0 R +/S /TR +>> +endobj +1635 0 obj +<< +/K [1433 0 R 1708 0 R] +/P 1624 0 R +/S /TR +>> +endobj +1636 0 obj +<< +/K [1435 0 R 1437 0 R 1439 0 R] +/P 1708 0 R +/S /L +>> +endobj +1637 0 obj +<< +/K [1440 0 R 1709 0 R] +/P 1624 0 R +/S /TR +>> +endobj +1638 0 obj +<< +/K [1442 0 R 1444 0 R] +/P 1709 0 R +/S /L +>> +endobj +1639 0 obj +<< +/K 1445 0 R +/P 1625 0 R +/S /TR +>> +endobj +1640 0 obj +<< +/K [1446 0 R 1447 0 R] +/P 1625 0 R +/S /TR +>> +endobj +1641 0 obj +<< +/K [1448 0 R 1710 0 R] +/P 1625 0 R +/S /TR +>> +endobj +1642 0 obj +<< +/K [1450 0 R 1452 0 R] +/P 1710 0 R +/S /L +>> +endobj +1643 0 obj +<< +/K [1453 0 R 1711 0 R] +/P 1625 0 R +/S /TR +>> +endobj +1644 0 obj +<< +/K 1455 0 R +/P 1711 0 R +/S /L +>> +endobj +1645 0 obj +<< +/K [1456 0 R 1712 0 R] +/P 1625 0 R +/S /TR +>> +endobj +1646 0 obj +<< +/K 1458 0 R +/P 1712 0 R +/S /L +>> +endobj +1647 0 obj +<< +/K [1459 0 R 1713 0 R] +/P 1625 0 R +/S /TR +>> +endobj +1648 0 obj +<< +/K [1461 0 R 1463 0 R 1465 0 R] +/P 1713 0 R +/S /L +>> +endobj +1649 0 obj +<< +/K 1466 0 R +/P 1626 0 R +/S /TR +>> +endobj +1650 0 obj +<< +/K [1467 0 R 1468 0 R] +/P 1626 0 R +/S /TR +>> +endobj +1651 0 obj +<< +/K [1469 0 R 1714 0 R] +/P 1626 0 R +/S /TR +>> +endobj +1652 0 obj +<< +/K [1471 0 R 1473 0 R] +/P 1714 0 R +/S /L +>> +endobj +1653 0 obj +<< +/K [1474 0 R 1715 0 R] +/P 1626 0 R +/S /TR +>> +endobj +1654 0 obj +<< +/K 1476 0 R +/P 1715 0 R +/S /L +>> +endobj +1655 0 obj +<< +/K [1477 0 R 1716 0 R] +/P 1626 0 R +/S /TR +>> +endobj +1656 0 obj +<< +/K 1479 0 R +/P 1716 0 R +/S /L +>> +endobj +1657 0 obj +<< +/K [1502 0 R 1717 0 R] +/P 1620 0 R +/S /TR +>> +endobj +1658 0 obj +<< +/K [1506 0 R 1508 0 R 1510 0 R 1512 0 R] +/P 1504 0 R +/S /L +>> +endobj +1659 0 obj +<< +/K [1504 0 R 1514 0 R 1528 0 R 1536 0 R 1544 0 R] +/P 1717 0 R +/S /L +>> +endobj +1660 0 obj +<< +/K [1516 0 R 1518 0 R 1520 0 R 1522 0 R 1524 0 R 1526 0 R] +/P 1514 0 R +/S /L +>> +endobj +1661 0 obj +<< +/K [1530 0 R 1532 0 R 1534 0 R] +/P 1528 0 R +/S /L +>> +endobj +1662 0 obj +<< +/K [1538 0 R 1540 0 R 1542 0 R] +/P 1536 0 R +/S /L +>> +endobj +1663 0 obj +<< +/K [1546 0 R 1548 0 R] +/P 1544 0 R +/S /L +>> +endobj +1664 0 obj +<< +/K [1549 0 R 1718 0 R] +/P 1620 0 R +/S /TR +>> +endobj +1665 0 obj +<< +/K [1553 0 R 1555 0 R 1557 0 R] +/P 1551 0 R +/S /L +>> +endobj +1666 0 obj +<< +/K [1551 0 R 1559 0 R 1561 0 R 1563 0 R 1565 0 R] +/P 1718 0 R +/S /L +>> +endobj +1667 0 obj +<< +/K [1566 0 R 1719 0 R] +/P 1620 0 R +/S /TR +>> +endobj +1668 0 obj +<< +/K [1570 0 R 1572 0 R] +/P 1568 0 R +/S /L +>> +endobj +1669 0 obj +<< +/K [1568 0 R 1574 0 R 1576 0 R 1578 0 R] +/P 1719 0 R +/S /L +>> +endobj +1670 0 obj +<< +/K [1580 0 R 1582 0 R 1584 0 R 1586 0 R 1588 0 R] +/P 1578 0 R +/S /L +>> +endobj +1671 0 obj +<< +/P 1589 0 R +/S /Link +>> +endobj +1672 0 obj +<< +/P 1590 0 R +/S /Link +>> +endobj +1673 0 obj +<< +/P 1591 0 R +/S /Link +>> +endobj +1674 0 obj +<< +/P 1592 0 R +/S /Link +>> +endobj +1675 0 obj +<< +/P 1593 0 R +/S /Link +>> +endobj +1676 0 obj +<< +/P 1594 0 R +/S /Link +>> +endobj +1677 0 obj +<< +/P 1595 0 R +/S /Link +>> +endobj +1678 0 obj +<< +/P 1596 0 R +/S /Link +>> +endobj +1679 0 obj +<< +/P 1597 0 R +/S /Link +>> +endobj +1680 0 obj +<< +/P 1598 0 R +/S /Link +>> +endobj +1681 0 obj +<< +/P 1599 0 R +/S /Link +>> +endobj +1682 0 obj +<< +/P 1600 0 R +/S /Link +>> +endobj +1683 0 obj +<< +/P 1601 0 R +/S /Link +>> +endobj +1684 0 obj +<< +/P 1602 0 R +/S /Link +>> +endobj +1685 0 obj +<< +/P 1603 0 R +/S /Link +>> +endobj +1686 0 obj +<< +/P 1604 0 R +/S /Link +>> +endobj +1687 0 obj +<< +/P 1605 0 R +/S /Link +>> +endobj +1688 0 obj +<< +/P 1606 0 R +/S /Link +>> +endobj +1689 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1690 0 obj +<< +/Filter /FlateDecode +/Length 3259 +/Length1 6160 +>> +stream +H‰ìVkl×>÷ÞyøØÆ€ î2˜¼~ñt€ƒw0rãaMJصwm/~¬³»X@d-°&Q«¸H¡Ð8iˆ€Ǥ…ˆV) ÔRRR¤DJDJ[ÉQŠ#¢B©’&î7³‹iøÁªªÔ9ž™ïœóÝsÏ9÷Î]#¢Tê&A…×Ì-º0#ÒÞ‚õ‘Æ®¨•H]ÜÔÙÜþÖõ%&Qš‡HÙÐܶ¥©ïÊSUàžÁ½µ%àó_=xy1Qú)è [`ÈŸò,ôkÐg¶´G7¯ZÛC”‘E$v·…}Y#Y#D¬÷ùvßæNñˆ6‡(ëø²Ã×83sü p¡Š³á@çÿ»oü˜OÔGÞ$ºÕAt2JÇéï1å=ös$7Bêˆ8Í>&*øz8}˜–}†gQá¼ GFŽ#ÃÑ-è«nN_“:øEq·2ˆéé8õª•ê|ÄÊú1¾×š“}‰Ãø+*\„¡Ç•¾^¥ïK/Y׬ÿ‹-þ‹u¥Ñ>b¿æ%° lhq¬W$°ÜÀ:ößVks*ÉÐüôE3*d%0§±ìÙÆ7Æ$°üNkÀÿL`w‘s ÊÊ`c8 5EeY(Ü +û¢ÁPG¾\ÞÖ&k‚Í-ш¬ Dᮀ?¿ª|yMŚܵÁŽf?îH^M yS›/|¯öQƒ Fd m „¥O†ÍÁH4øe4ìóÚ}áV²<·©Mßž¯ vH„‘k:‚QŒ¯ú¢ˆôuø  dOÐÚÔ ‘|IGH¢ï……@•¤F +Sˆ"¸›( +[P˜:í§– PåóœÚ ’j`k¦ø"¶À;vž~0«¨Ü¬éÊ¥µ`w€ïO¼#”gi¦Mˆæø;µ{ýŸæÿ;CYÏÞQôÁª]‚+ñ¶FZÞ¨mµú!­Nú¡µÛ[a ŽùvoÓ=­Ž´s“‰l$*ë°s‹Ï_ ä³µˆ=g¬‰ B·UÐm¼VFA›m­:¾X}û©”¤\P.àÓxëM~!Óà¸ÛUY+%•^“×F´\ö2éEÌì¾+û¿~]¼«§ÒÈ<|;_ôSœPE´·÷óÔK½| Ρy¸M  +º‚ß͹è¤eŸGOâ颰ÃôCÛ²”àoûÞ%ð5âÍì½l¯ý~Šv"öç|€Ÿågmï2Ä­°qáê ìV¼t‚.³7Áy‚žƒï4]´F!r/~yo²Ùö1æU°2k~Äi»ùþš>¤¿±,VÂbì 8™|»K|¶npÎA.ÚQ,©dm,ÄÂlbqÁ jˆïæ}ÜägE½R¢j™Ú"½ QpàâìÍ@…V´ïa76@—?0ΪYkaûXr8dž!×y_†®[òáUÒ”OÔVõ%È ¶F?˜¤!¶Šó}2öiÍGUnÌQœý´¿–<y½|š^ >z'`?½A¿±æ¤Kt™n¢;ã V]‹Øl-¤fÛØNô£ç6y†`ì ä÷6{ŸOGÕqiCõñ,wðýü$›¿Ãÿćø§üsA"Yl ""‰£â]ñ®²RéS^T>R>R™jÚÊÔ²´õZd¯ž¬·ê;õëõ_¤äÓ$ÔåD]8‡i *y’vSÌ^µ~ÈIz2HŸZu@F•Xòs±r¶RÏÖ1/kg¶y´¢—Ù+ì0;‰ZÞ‡|À.±¿°¿²Ïl¹É5>‘çŽÖWÅkùZÞÊ÷ñçùþ*vä?Ã?à—Qã¿SE¦˜ ¦ ·(‡Ô‰GÅf±CgÅ%1ŒuKSTJ”5ÊzÔ~^R>ÁJrU¨9êu1¤EíP·©=êÏ°£‡Õa-ÍîJ¦6^[¢íÒ^дµ¯ô úD}$_/Òkõ6½K?ªéW’Ž%/O&‡Sœt¿l¿üÆ×û:v÷oùz­€&³KØ ‹q`YçÝ9ž¦·%ù€•^Ëfc¥þH7E2­VÎÓZñ(µ© "U¿J‡YDÙÎ^åtŒé]ìŒðŠaqHÍÑ–ÄûÉ÷‹£úÝ«_A¦×Åsj‹žÏ–«=ì0_†/:̪éïì=†™£|§=´›uQõ&ccð­ãÓYú’xMénu»+8E? 4ÿEͦØë*eYné¢âEóçÍ-*,ÈÏsæιö}³rf3rú´ïN2ù;Ù“&NÈŸ™‘>n옴Ԕä$]SÁ9ÝF¹Wš³¼¦2ËX¹2ÏÒ  ¾Û ^ÿz˜åwrLéµiòNf)˜Mß`–Æ™¥£L–.—ÒÒ<§tÒü½Ë§Øºjð3.£^šÃ6®´±2ËVÆ@q80Bº³[\Òd^é6Ë»Zbn¯ ñúSSÊŒ²@Jž“úSRSÌr£³Ÿ•—0ðr÷â~NIc•Ya¸Üæ*Ãe¥`Š·ÏoVU{Ü®)G}žÓdeFƒIÆ +s\®M¡2{S+3u{´Ê¡Ùï|3¶÷T:5xsÓü†ß÷})|õÖ¹æC†Ë|hëPvžó{¥Îc&—bTç9M#Ýý«º]®zk¶Ì2Ï.›> ôI[‡¦ˆ˜;;(-5Û%;jÏí^‡õ¬¯GÐ<çêYî½Ò*£ÆcW€ ,»IZ6«ÌxÁÃmY¼¥™l¬0Zb½X¬É1“j¶8^›\QzzäÏTá–±:á0—M1ê}®©ýY«Ù2°ªT®ºÓ“çìOψwºì¸Hs;ŒúldÓ-„¬oµšY«°ELÙ(‘‰Ç0yN±õS¬±4\õ  ¢ÞXúbk!ÔœtCÆn6‚1|õN‹/aÑrÒo­í2ºåà¿…ÍÜ\sÎk§èeXZdVbë òœ]æj£3]š«Ñ2ªò`Pýâ´Üá°V¹çT)5@1»«=qý_¬—_lEÇs·w3w­íѹ¸*WNcÓ˜¶*E ¹öï=x¦jzHÒkK $FxÒ ©Á¼¶²JORˆ"»²mBB­’ø`H£IÐG_51ÆžßÙßÝÉU¬>¸éç>³¿ßììÎìnw&BÃæÅnL9ž´Î,2µÏèÌX!S<<Åã|Þ]ÚÔ:ª¡øWª«îÜý¸#êÖHr¯OgdÞð=I4 e&̆tf2…[Ó…W1“éŠFº2éÌP676„¢™ùD"³¯3]èR6·4a:±ÉÔnAuZy4œêm^Ó“â’Çô¦šx•æóËUƒ•[~Q¦rÿ•ž²­hõÃD+ÉàMÙLzWXáÁ²y%IT6I”û2x³˜)l· ·ŸôRH·ªÚ©/ð M÷€%ê“ 4¸L¶÷,-«9²å²•y™²Ã`’lµLvð +Ù¾·]×Ø ®!‡™|‹úÔ ´ù*ÊõœwÑånıH¶Ç2ò5ÆØÉèúþ+ôlõ#êõ öÎqy”!öb¯Àµ4íï¥é¹|¿å¹ +pÍþç¯Í_ÇC|-ÚÂuK´§.ÂèŸ| ¼ýVøî«Çñ[á]´l¤#ÆNS8Ƴom%@«ÆâsGÛ{†ûìžg53Ì¿Õ3t½Ÿn¯#BùÜ5”+ïض‹^;üÏuÿjxX(~~›×"èÇóéç{îÞ÷Òv¿)–¯çÉïû-Ee˜bþ÷RŠñ—iY£ï±[î€oÃ{ƒF¼µ4¢º1CÖoæ-QŽµàU`&Bi^áŸA=o•SWªT­S±žHÖóØBO tÈ•˜c}À:Úef½Ë:Éšaõ²zXݬ8+ÆjgmambùYË˱'áïÁ ð¸>ÀGà°Á˜§Á 8Þ“àƒn›ç¸i›u–õ>ëë=ÖqÖ¬ÖVVK²|,‹b1ø[ð5¸ +>Ÿeð18Á‡àxì;{Zj5VV¼ë•ÖIi“Ö”´öJëyií’Ö¨´vHk»´RÒ÷« *¢îS÷¨»UXÕ©U¥BªB•« Rʯ åQx†jo“苄³4B‰áˆók4+‚Omw|Ѹpª”x:vÚÏwF“¹y!^7õdæ" ‘Ÿ2óN¥¨®ñï[¸d/‘ܙ֋$ñÛº(×*u´QËZ:j¹Ñ°XHRKbh"}/Ý¡á¿6±f¶¤fçÝÝäÀ¼¢xjÛö¢§,ˆþ¤ÍúT¼.´¯ÝíÜæúðAó’Ab–ÊðM/Ç$ñ. SMM:…/šNUèùc>>¸¹Þ¼$fó©Âë0” +09‚p +endstream +endobj +1691 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰šÀ€ +8 ©™ +endstream +endobj +1692 0 obj +<< +/Filter /FlateDecode +/Length 3262 +/Length1 6160 +>> +stream +H‰ìVkl×>÷ÞyøØÆ< +î21!x×Þ1 ÞuÀ–lóX“ví]Û‹×^gw±€$ÈZ`M¢Vq‘B qÒh“"Z¥4PKII‘))m%GD)Žˆ +¥Jš¸ßŒˤá?ªªRçóÌ|çqÏ=çÜ;wMŒˆÒ©ƒ>TS0»èB‚H{ÚµõíqùjÁÑ£Dú"µ¸¡­±åíë‹L¢ /‘²±1¼µ¡ûÊ«à{÷¶¦ ?põÐåb¢ÌSç7A‘=6íiÈ× ßÓÔß²ryb/QV‘ØŽÔûss‰ØBÜç[ü[ÚÄZmQÎAøËVKð¹ EoÀ¢8Û ¶=ô»{7ÂŽùÄjâÈ›D‡ÚŒ’1úûLyŸýÉ ’:(N³Oˆ +¾È ¥ŸãYT8'Ë‘•ëÈrtúºƒÓ7¤ö}¹°CéÃôt‚ºÔJu.båüŠßgÍɾB€ü.ÀÐJw—Òý•¬kÆÿaãÿaXWí'FC×l¢$4ÒWÀË“\¯Krûo›µ9•THú2ɲG’œÓhöt’ãc“\7É5ð&¹Îˆ;ÊÙ……óee¨>‰Eâ²4m‹DýñP¤5_. ‡eu¨±)“ÕÁX0Ú äWTV¬u—ç­ µ6pÇ\ÕÁÆÍaônõà +ŠÉ`(ÞŒJ¿ŒC±x0 ÈxÔ¶ø£Í2bYFˆ ߯ µJ„‘kZCqŒ¯‰ûãÁ˜ô· + bOPÙ܆‚±|IGI¢ï…À|°J +Q=E)B1Ü ‡®,JmöÓM¬•òaYFa@R5tÔ[Ì–‚xáÝŽgžˆ[AkÉUÍ£uðn… ùŽ‘ËÓH›Íq·Kw;ú?íÿïÌzñŽ£Ví¾ok¤eÛZ«ÜêdR‹±ºÈð˜ï¶6ÜÕêH;7™ÌFÒH!;kþ0¿-Åì9[¡-HfQA=¤Í°Z…lokÕñÅêSÙOH¥å‚rŸîø[o +™îÊ)©äš¼6¨å±—¨H/bfǽÿë×Å;ZŠ€zæå;øz°çpBÑÜÜÏRuñÞ!šƒÛ+§+øÝœNZú9ô8žnú;B?¶5‹©ö:xŸÃ{ lõx3;FÛg¿Ÿ ]ˆýïågùYÛºqË-!ð^µz+ÞNz•.³·àó=ÛiºhBä.üòÞd3Nö à« eÖüˆÓ ï.äûkúˆþÆrØ–`gà“Íwع ÍÖŸsÀE;Š…Jfe{³Ÿ >Q#|ïæ&?+j•%jŸ–­-ÐÈ‚go–ý½•Ó°ë€G‡£áŒ³*¶š5±ý¬9œcÀuîâKÑu ?>%CùTmV_ú´5ú¡ ±Uœï“°Osi.ªò`Ž*ä Møí°ðð8zù$=OÝôNÀz“~cÍI—è2ÝDwÆV] ØýlP DÙv¶ ýè§ØAÖËÞD~ï°ø4T=„0ªÊr'?ÀOòwø»üO¼ŸÆ¿$RÅFQ'bâ°8&Þï)+”nååcåc•©¦Ý©l-GÛ uûôT½YߥÿT?¤ÿ2-Ÿ& .'ê*Ç9TO[QÉã´‡öªõ'éu >³ê“•X¸Ÿ¹Y[Ô²õÌÇZXŒm®è%ö2;ÂN¢–€Ù%ööWö¹›\ããyÞp}«x _Ç›ù~þ,?È_ÁŽìågø‡ü2jìç7PcºÈãÄTáeÀjñ°Ø"vŠ⬸$°nÊÊe²µŸWú•O±’\j®:O-šÔVu»Ú©þ;z@Ð2ì®dkcµEÚníy­WûHûZ§×§ùz‘^£‡õvý˜Þ¯_I9žº,5”MsÒ1ü²½ñ­¯÷uìîßò ZMb—°càewçx†N ñ^+;½†ÍÄJý‘nŠTªPÎÓ:ñ0…Õ:‘®_¥#,¦ì`¯ˆ2:N‡õvvFøÄ€8¬æj‹†úɈcúVݧ_A¦×Å3j“žÏ–©ì_Š/:ʪèïì=‚™ã|§½´‡µS +u¥g£ð­ãÓX§ú¢xMéu;»+8Yí?¢y4ÿEͤéØë*åXnÉ‚… æΙ]TXïræͺoæ½3rï1¦;䴩ߟ2yÒ÷&N?.glvVæ˜Ñ£2ÒÓRStMUgäôe>iÎð™Ê cÅ +—%~(ü#>ÿz˜e·û˜Òg»ÉÛ=KàÙð-Ï’!Ï’aO–)Ób—Sz iþÞmÈSl}•ü)·Q+Í›WÚ\™a £ 8!=›ÜÒd>é1ËÚ›ŸñzÒÓJÒ`šËI=ié é`f™ÑÖÃÊ–0›ð2Oq§”QÈÊ,7Üs¥á¶R0E®Ç0WUy=îÉG­Ëi²Òz£Î$c¹9&Ïv¡R{S+5u{²Ê¡NÙã|+±ïT&Õùò2FÀÿC¯)üµÖYy惆Û|p[ÿD—ó{yµ×L-=Åhµ÷4•vô¬ìp»k­Ù²K½»m÷ pŸ°­²Hx&†¤%&»¥Ù]åiuXÏÚZu9+ª½dmxöI«Œj¯]‚²‰HÒÒYe4<–Æ·Iš©Ær£)±É‡Åš”0©z«ãµIå%§ÿLå™Xí5æÒÉF­ß=¥'‡Õ[{W–È•·[\Ξ̬¡N÷Œ“$£F’à°Íf¶»Åõ­V3+#c%¶ˆ)ë%2ñ&Ï]h=‚ )Q¿n¸j:Bÿ|‰Ìbk!ÔÜLC&n6‚1põv?©Ñr3oE­í2¼å`¿ÅͼI!ˆìʶE< Z%ñÁ(F1’ ¾JbŒ­ßÙßÝÉU¬>¸éç>³¿ßììÎìnwfkŠ÷#”1f)öH£éxÒ*3_ÈÔ>£2 ™âáé(çóîÒ¦Ö‘ Å¿ÊP]uç®'­n…ô0çñútFft߃Ùdªa0;j4¤³c&nM^Ål¶+éʦ³ƒ¹¥ƒ™h$ÍÎ$Ù½éB—rKó£†3wiT§•Géޜò“KÃk6ñ*Íçyãó©Û••†tÿ•ž².*ýãD‹ÉàMÑLjWXáÁ¢y1IT6F´ôUðf1SØné„o?©¥‘jU¶S_à!šîóÔ'h"p™lïYZÓd‹5d*ó 0e‡ÁÙrìà²}ï0ª®¾\C3ñ6õÉãhóU”ë9ï¢Ê݈}Žl +Ç3â5FßÁ¨úþ+ôlùêõ ö%Îqy”!ö(b¯Àµ4á雷¹|¿å¹ +pÍþç¯Í_ÇÃ|-ÚÂu ´'/ÂèŸx ¼‰ýVøî«Áñ›à4l¤#:ÆNQ8Ƴom%ìGýËÆâsGÛ{†ûìžg9“Ì¿ÕÓU½Ÿï¬£…ò¹k(WÞµm-³,vøŸëþ7dfXH~~›W"èÇóéç{îÞ÷Òv¿-–¯çÉïû+Ef™bþ÷RŠñ—iA¡î±[î€ïÀ{ƒ†¼µ4$»1CVoæ-­kÁqªÀL:„Òz¼Â¿èjÞ+§®.T©Z%c=‘œçñÙžè+mšõë kŠušu’u‚5Éêeõ°ºYqVŒÕÎÚÈZÏò³t–—¥Å¶À?€à{p| +.€À9`ƒi0NƒIp ¼ ÆÀ!0Ü6ÏqÓ6ë,ë}Ö)Ö{¬c¬'Y¬M¬6–`ùXÅbðwàp|> àcpÌÁqðØvô´Ôj묜öb¬WX'„uTXãÂÚ#¬ç…µSXÃÂÚ.¬mÂ2…•kå‘Èûä½2,ëd¬’!Y!ËePJé—ºôH<ÃNµ7áIôǵ„3?D‰LĹÝÍiÁ­Û_4®9U J<;mŽçˆ;£ÉiK3šöúˆ¡&3IÓ–FƼM“êÿ¾…KöÉ}—iµ¶Ž~[çÄêÏ„Šö#j¹QKE-7Öf“Ô’MßOwiø¯M[1[R³s·ên25#)nnÞΞó”ÑŸ´QoÆëB{ÛÝÎm¨0.é¤MQ¾éå˜$ÞTª©£©C¥ðES© +5̧Â6Ô—´©|*„ð* åŸ @£pJ +endstream +endobj +1693 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1694 0 obj +<< +/Ascent 899 +/CapHeight 754 +/CIDSet 1720 0 R +/Descent -211 +/Flags 4 +/FontBBox [0 -211 1359 899] +/FontFamily (Wingdings) +/FontFile2 1721 0 R +/FontName /ICEESY+Wingdings-Regular +/FontStretch /Normal +/FontWeight 400 +/ItalicAngle 0 +/StemV 580 +/Type /FontDescriptor +/XHeight 723 +>> +endobj +1695 0 obj +<< +/K 1722 0 R +/P 1620 0 R +/S /TR +>> +endobj +1696 0 obj +<< +/K 1723 0 R +/P 1621 0 R +/S /TR +>> +endobj +1697 0 obj +<< +/K 1705 0 R +/P 1621 0 R +/S /TR +>> +endobj +1698 0 obj +<< +/K 1724 0 R +/P 1622 0 R +/S /TR +>> +endobj +1699 0 obj +<< +/K 1706 0 R +/P 1622 0 R +/S /TR +>> +endobj +1700 0 obj +<< +/K 1725 0 R +/P 1623 0 R +/S /TR +>> +endobj +1701 0 obj +<< +/K 1707 0 R +/P 1623 0 R +/S /TR +>> +endobj +1702 0 obj +<< +/K [1726 0 R 1727 0 R] +/P 1624 0 R +/S /TR +>> +endobj +1703 0 obj +<< +/K [1728 0 R 1729 0 R] +/P 1625 0 R +/S /TR +>> +endobj +1704 0 obj +<< +/K [1730 0 R 1731 0 R] +/P 1626 0 R +/S /TR +>> +endobj +1705 0 obj +<< +/K 1628 0 R +/P 1697 0 R +/S /TD +>> +endobj +1706 0 obj +<< +/K 1630 0 R +/P 1699 0 R +/S /TD +>> +endobj +1707 0 obj +<< +/K 1632 0 R +/P 1701 0 R +/S /TD +>> +endobj +1708 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/K 1636 0 R +/P 1635 0 R +/S /TD +>> +endobj +1709 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/K 1638 0 R +/P 1637 0 R +/S /TD +>> +endobj +1710 0 obj +<< +/K 1642 0 R +/P 1641 0 R +/S /TD +>> +endobj +1711 0 obj +<< +/K 1644 0 R +/P 1643 0 R +/S /TD +>> +endobj +1712 0 obj +<< +/K 1646 0 R +/P 1645 0 R +/S /TD +>> +endobj +1713 0 obj +<< +/K 1648 0 R +/P 1647 0 R +/S /TD +>> +endobj +1714 0 obj +<< +/K 1652 0 R +/P 1651 0 R +/S /TD +>> +endobj +1715 0 obj +<< +/K 1654 0 R +/P 1653 0 R +/S /TD +>> +endobj +1716 0 obj +<< +/K 1656 0 R +/P 1655 0 R +/S /TD +>> +endobj +1717 0 obj +<< +/K 1659 0 R +/P 1657 0 R +/S /TD +>> +endobj +1718 0 obj +<< +/K 1666 0 R +/P 1664 0 R +/S /TD +>> +endobj +1719 0 obj +<< +/K 1669 0 R +/P 1667 0 R +/S /TD +>> +endobj +1720 0 obj +<< +/Filter /FlateDecode +/Length 15 +>> +stream +H‰j`@™‰ +endstream +endobj +1721 0 obj +<< +/Filter /FlateDecode +/Length 3260 +/Length1 6160 +>> +stream +H‰ìV{pTÕÿÎ9÷‘M‚y +g¹‘l^ £B0»Ñ„¡’²‹Ew“Ý$+I6î.ÀÇÄG lÐiÇ”-ÖhÕçÆ`Ú±©ÐÌhµÎ茖¶3qp¬qt*¥£Õôwî®™`õÿèt:Óû˽÷÷=Îw¾ï;çž 1"Ê¡TycKÅŠªW'SDÆKÐÞÔÞŸ”ÏV:Dd^L¤×tôuö¼ôÉÕ6Q®ŸH»µ³{gÇðÙ»6Â÷î]]‘PøƒGÏÔåA¾² ŠÂ¹ÙBþò¥]=É ×¥ö‰=ݱöPÑtÑ4«Æ}ª'´£OÜd,'*:Ùꉌ»?_ˆb¼/é»ñw—Ý +;æ­Ä‘7‰}&YµyæL{ƒýÉM“>-Ž³w‰*¾˜ÊŸ¢µâYU¹²À]Pâ.pú|€Ó¤O|Z= M`z:JCúý +Ä*ú1¾OÍÉ>C€)üUU®ÆУÚð6üYÔµôÿppíÿ0Ô•Kû‰QúZA”á‚Š!¥¹Þ˜áx[†›Ø»ÔæÔ\Âôi†3ªd·d8§‹ØƒŽoŒÈp ü• 7Àÿ™á&#î9$WTV^)7DÛã±D¬#)ëbñ¾X<”ŒÆzËåºînÙíìJ&ds$‰÷GÂå u>_K ts´·3Œ;QÖéÜÞŠ[ýŒBF2MvEâ2$ã‘Îh"‰GÂ2…#=¡ø6S–YbÇ×ç+£½aä¦Þhã[’¡d$!C½á +ˆ9´Ç¶÷&ãÑH¢\Ò!’è{%p%ØŠR;Å)F Ü”„®,N}Î3M¬—ÊaYGÝ€¤fè:© ¶„#EðŽÀ»Ï0<ôP€Ji3¼{áμTæŒé¤íˆ¸ ¥o;ú?íÿïL=#x'ÑU»„¯Ä[TÖ¤£UýઓaH=NÄmÐÅfÆ|½µã[­Žtr“™l$m‚urPó·€…)áÌÙ mE&ƒØ¬ +Ú!m‡Ueu¼Õªã‹5/a?"²´WµWñéÎÿòMa!saø¦kC‹”Tû‘ühÚ(eOR•YÅìoôþ¯_¯£¥ +hg~~ßöSœPUôî0î‡iˆ†øhÚ‡Vâ¶Áé,~7W “J¿’îÄÓKÿ`野æjƒ½ Þ'ñ^[;Þ̉1Äö9ï»è~Äþ˜òq>îX×"n£òHƒêЫx÷ѳt†½Ÿ;è!ØŽÓëj"á—÷<[ ²wÙß-Só#Î6x!ß_ÓÛô7VÄÖ°;ŸB~“Kz¶øœ^w¢(l`Ý,Æâl/bNrÁW!jŒïáÃÜæã" ­Ñ'ŒBcµÙ(8pqö Bí{ØmÀí3QÓø㬉µ².¶Ÿ #‡“l +ø„—ñµèºÂODPËÕÞÓ·éOÆ&óÑ,±uœï ±OKè +TåÃMÈ9L·á·CáàNôò^zŒ†éqœ€#ôýFÍI§é GwòU×jvÛ €8»›Ý~ ÎÂìe/ ¿—Ù›|1ªN£Õ§³¼?Âñ—ù+üO|’¿Ï?$\âVÑ&â)qX¼&^ÓnІµÇµw´wt¦ÛN§ +"c«1ì3]æ6ó~óÇæ£æ/²Ëiêò ®FœCí´•ÜI{(å¬ÚpŒž&è}U0©Dá*æeõl`[Xõ°Û1SÑ“ìivC-oo±Óì/ì¯ìCç¹ÁçóÒ™ú6ò¾™oãûùÃü;r”Ÿàoñ3¨q’ŸC9¢PÌ—Ÿ¨ZÅÍb‡¸Oãⴘºåj×jk´MÚVÔ~J›ÔÞÃJr]è%ú*½èÒ{õ»õAýgØÑSú”‘ët¥Ð˜k\mì63F·ÏÍyæ|s PnV™-f·Ùo6'ͳYG\ë\QW<ÛC‡ñËö˯|½Ïcwÿ–o5*h!;Ýp»Èƒ—:ïNò\³Ûå£*;³…-ÃJý‘Î ­×NÑfq3uëm"Çü€²„v{FÔÓzÊìg'DPL‰§ôãêt?ù#â°¹Ó šg‘é'â!½Ë,gëôAv¯ÅgMôwvŽnÁÌI¾œNÑ^ÚÃú)‹†²Ž°9øÖNòÅlPB<§ Ÿ~7»+¸HŸ? U4ÿE-£%Øë:©·vuõê+V®¨ª¬(/ó”.¿|ÙeKK.µ–¸åâK¾{ñ¢…ß)^0^ÑÜ‚ü¼‹æäæd»²LC×gäñYõAi/ ÚÚRë†Ê”l… ÍRmüëa×_ècË ã&/ô¬…gÇWòMêS'ÐæË(×sÞE—»Æ<ÙþŽaä+Œ±ƒÑõýWè™êÔëAìsœãò&(CìÄ^‚kiÒßK“…sù~ËsàšýÏ"^›¿Ž‡øZ1´…ë–hO]„Ñ?¹¼ŽýVøyî«Åñ›á4l¤£ÆNS8Ƴom%@+ÆâsGÛ{†ûìžg%SÌ¿Õ3t½o¯#BùÜ5”+ïض‹Z;òÏuÿjhX(~~›W#èÇóéç{îÞ÷Òv¿.–¯çÉïû-Ee™bþ÷RŠñiQ£ï±[î€oÃ{ƒ†½µ4¬º1CÖoæ-QŽµàU`&Bi^áŸ=o•SWªT­Q±žHÎóØ\O tØ•˜a½Ï:Úff½Ã:Éšbõ²zXݬ8+Æjgmbm`ùYË˱'áïÀ ð-¸>À‡à°Á ˜§Á8Þãà0n›ç¸i›u–õëë]ÖqÖ¬ÖfVK²|,‹b1øð¸ +>Ÿ‚Eð8æÁàxì;zZj5õVN¼ë•ÖIi“Ö„´öHë9ií”Öˆ´¶Kk›´ÒÒJÉûÕ:Q÷©{ÔÝ*¬êTªR!U¡ÊUP)åW†ò(<ÃNµ7áIôÇEÂY¦ÄPÄùµ?šÁ§¶9¾h\8U J<;mŽç¨;£É‰åY!^5õdæ" ±<:aæNS]ãß·pÉ^"¹ÿ2­ëIâ·u^®ýDêh?¢–µtÔr£a1—¤–ÄàXæ^ºCÃmbÕlIÍÎݺ»ÉÔ¬¢xzËvö¼§,ˆþdÌút¼.´·ÝíÜÆúðAó’AbšÊðM/Ç$ñ. SMM:…/šNUèùc>>¸±Þ¼$¦ó©Âk0” +0l–oœ +endstream +endobj +1722 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1695 0 R +/S /TD +>> +endobj +1723 0 obj +<< +/P 1696 0 R +/S /TD +>> +endobj +1724 0 obj +<< +/P 1698 0 R +/S /TD +>> +endobj +1725 0 obj +<< +/P 1700 0 R +/S /TD +>> +endobj +1726 0 obj +<< +/A << +/O /Table +/ColSpan 2 +>> +/P 1702 0 R +/S /TD +>> +endobj +1727 0 obj +<< +/A << +/O /Table +/ColSpan 3 +>> +/P 1702 0 R +/S /TD +>> +endobj +1728 0 obj +<< +/P 1703 0 R +/S /TD +>> +endobj +1729 0 obj +<< +/P 1703 0 R +/S /TD +>> +endobj +1730 0 obj +<< +/P 1704 0 R +/S /TD +>> +endobj +1731 0 obj +<< +/P 1704 0 R +/S /TD +>> +endobj +xref +0 1732 +0000000000 65535 f +0000000015 00000 n +0000000205 00000 n +0000000389 00000 n +0000004671 00000 n +0000004705 00000 n +0000005028 00000 n +0000005155 00000 n +0000005202 00000 n +0000007002 00000 n +0000009151 00000 n +0000011375 00000 n +0000013639 00000 n +0000015642 00000 n +0000018188 00000 n +0000020206 00000 n +0000022658 00000 n +0000024676 00000 n +0000027224 00000 n +0000029242 00000 n +0000031963 00000 n +0000033969 00000 n +0000037048 00000 n +0000039067 00000 n +0000041777 00000 n +0000043807 00000 n +0000046285 00000 n +0000048314 00000 n +0000050707 00000 n +0000052752 00000 n +0000055058 00000 n +0000057087 00000 n +0000059472 00000 n +0000061490 00000 n +0000063781 00000 n +0000065789 00000 n +0000068069 00000 n +0000070087 00000 n +0000072560 00000 n +0000074581 00000 n +0000076964 00000 n +0000078972 00000 n +0000081269 00000 n +0000083290 00000 n +0000085482 00000 n +0000087490 00000 n +0000089685 00000 n +0000091608 00000 n +0000093175 00000 n +0000093244 00000 n +0000093660 00000 n +0000093979 00000 n +0000098048 00000 n +0000098227 00000 n +0000098354 00000 n +0000098479 00000 n +0000099007 00000 n +0000099479 00000 n +0000099631 00000 n +0000099851 00000 n +0000100255 00000 n +0000100677 00000 n +0000113002 00000 n +0000113510 00000 n +0000116306 00000 n +0000116601 00000 n +0000117543 00000 n +0000118638 00000 n +0000119650 00000 n +0000120640 00000 n +0000121569 00000 n +0000122500 00000 n +0000123505 00000 n +0000124411 00000 n +0000124955 00000 n +0000125082 00000 n +0000125207 00000 n +0000125784 00000 n +0000126015 00000 n +0000126235 00000 n +0000126736 00000 n +0000127516 00000 n +0000132940 00000 n +0000133432 00000 n +0000134308 00000 n +0000140579 00000 n +0000145887 00000 n +0000146434 00000 n +0000151367 00000 n +0000151931 00000 n +0000157325 00000 n +0000162823 00000 n +0000168075 00000 n +0000174383 00000 n +0000180148 00000 n +0000185812 00000 n +0000191917 00000 n +0000197805 00000 n +0000203284 00000 n +0000209016 00000 n +0000209168 00000 n +0000215780 00000 n +0000220994 00000 n +0000221118 00000 n +0000221243 00000 n +0000221365 00000 n +0000221882 00000 n +0000228240 00000 n +0000234380 00000 n +0000240463 00000 n +0000246669 00000 n +0000246793 00000 n +0000246915 00000 n +0000247040 00000 n +0000252700 00000 n +0000258174 00000 n +0000258298 00000 n +0000258423 00000 n +0000258545 00000 n +0000263847 00000 n +0000263971 00000 n +0000264093 00000 n +0000264218 00000 n +0000269845 00000 n +0000275684 00000 n +0000281574 00000 n +0000281698 00000 n +0000281820 00000 n +0000281945 00000 n +0000288008 00000 n +0000288132 00000 n +0000288254 00000 n +0000288379 00000 n +0000294849 00000 n +0000300519 00000 n +0000300643 00000 n +0000300765 00000 n +0000300890 00000 n +0000307551 00000 n +0000312903 00000 n +0000319239 00000 n +0000324736 00000 n +0000330490 00000 n +0000336691 00000 n +0000336804 00000 n +0000336932 00000 n +0000338519 00000 n +0000338941 00000 n +0000339159 00000 n +0000339530 00000 n +0000340273 00000 n +0000341347 00000 n +0000342642 00000 n +0000344101 00000 n +0000345848 00000 n +0000347818 00000 n +0000350007 00000 n +0000352565 00000 n +0000355334 00000 n +0000358385 00000 n +0000361754 00000 n +0000365447 00000 n +0000369399 00000 n +0000373639 00000 n +0000378324 00000 n +0000383980 00000 n +0000389940 00000 n +0000396130 00000 n +0000402756 00000 n +0000409584 00000 n +0000416781 00000 n +0000424220 00000 n +0000431870 00000 n +0000439787 00000 n +0000448103 00000 n +0000456812 00000 n +0000465768 00000 n +0000475043 00000 n +0000484636 00000 n +0000494448 00000 n +0000504667 00000 n +0000515180 00000 n +0000525954 00000 n +0000531650 00000 n +0000542927 00000 n +0000543201 00000 n +0000543736 00000 n +0000544009 00000 n +0000544537 00000 n +0000544565 00000 n +0000544877 00000 n +0000545202 00000 n +0000545528 00000 n +0000545855 00000 n +0000546224 00000 n +0000546584 00000 n +0000547001 00000 n +0000547156 00000 n +0000547353 00000 n +0000547508 00000 n +0000547924 00000 n +0000548121 00000 n +0000548320 00000 n +0000548722 00000 n +0000548996 00000 n +0000549625 00000 n +0000550038 00000 n +0000550388 00000 n +0000550713 00000 n +0000551039 00000 n +0000551132 00000 n +0000551539 00000 n +0000552029 00000 n +0000552184 00000 n +0000552582 00000 n +0000552778 00000 n +0000552977 00000 n +0000553385 00000 n +0000553658 00000 n +0000554126 00000 n +0000554281 00000 n +0000554705 00000 n +0000554901 00000 n +0000555100 00000 n +0000555502 00000 n +0000555612 00000 n +0000556115 00000 n +0000556696 00000 n +0000556813 00000 n +0000557313 00000 n +0000557928 00000 n +0000557956 00000 n +0000558266 00000 n +0000558369 00000 n +0000558830 00000 n +0000559350 00000 n +0000559476 00000 n +0000559631 00000 n +0000559872 00000 n +0000560421 00000 n +0000560838 00000 n +0000561038 00000 n +0000561440 00000 n +0000561595 00000 n +0000563760 00000 n +0000563815 00000 n +0000563870 00000 n +0000563925 00000 n +0000563980 00000 n +0000564035 00000 n +0000564090 00000 n +0000564146 00000 n +0000564202 00000 n +0000564257 00000 n +0000564313 00000 n +0000564368 00000 n +0000564424 00000 n +0000564480 00000 n +0000564536 00000 n +0000564592 00000 n +0000564647 00000 n +0000564703 00000 n +0000564758 00000 n +0000564813 00000 n +0000565195 00000 n +0000565291 00000 n +0000565422 00000 n +0000565499 00000 n +0000565637 00000 n +0000565719 00000 n +0000565801 00000 n +0000565884 00000 n +0000565967 00000 n +0000566098 00000 n +0000566181 00000 n +0000566264 00000 n +0000566347 00000 n +0000566461 00000 n +0000566544 00000 n +0000566627 00000 n +0000566705 00000 n +0000566806 00000 n +0000566889 00000 n +0000566997 00000 n +0000567080 00000 n +0000567163 00000 n +0000567241 00000 n +0000567336 00000 n +0000567419 00000 n +0000567505 00000 n +0000567573 00000 n +0000567648 00000 n +0000567731 00000 n +0000567799 00000 n +0000567874 00000 n +0000567957 00000 n +0000568025 00000 n +0000568087 00000 n +0000568155 00000 n +0000568217 00000 n +0000568285 00000 n +0000568347 00000 n +0000568471 00000 n +0000568538 00000 n +0000568621 00000 n +0000568689 00000 n +0000568796 00000 n +0000568863 00000 n +0000568931 00000 n +0000569046 00000 n +0000569114 00000 n +0000569183 00000 n +0000569251 00000 n +0000569357 00000 n +0000569441 00000 n +0000569520 00000 n +0000569655 00000 n +0000569739 00000 n +0000569823 00000 n +0000569892 00000 n +0000570029 00000 n +0000570098 00000 n +0000570182 00000 n +0000570251 00000 n +0000570407 00000 n +0000570491 00000 n +0000570575 00000 n +0000570644 00000 n +0000570728 00000 n +0000570812 00000 n +0000570948 00000 n +0000571017 00000 n +0000571101 00000 n +0000571306 00000 n +0000571393 00000 n +0000571596 00000 n +0000571680 00000 n +0000571764 00000 n +0000571848 00000 n +0000571932 00000 n +0000572016 00000 n +0000572100 00000 n +0000572195 00000 n +0000572279 00000 n +0000572398 00000 n +0000572482 00000 n +0000572566 00000 n +0000572661 00000 n +0000572740 00000 n +0000572830 00000 n +0000572909 00000 n +0000572988 00000 n +0000573162 00000 n +0000573246 00000 n +0000573330 00000 n +0000573414 00000 n +0000573493 00000 n +0000573627 00000 n +0000573711 00000 n +0000573795 00000 n +0000573874 00000 n +0000574036 00000 n +0000574120 00000 n +0000574204 00000 n +0000574288 00000 n +0000574372 00000 n +0000574451 00000 n +0000574622 00000 n +0000574691 00000 n +0000574775 00000 n +0000574859 00000 n +0000574943 00000 n +0000575027 00000 n +0000575106 00000 n +0000575244 00000 n +0000575328 00000 n +0000575412 00000 n +0000575491 00000 n +0000575570 00000 n +0000575716 00000 n +0000575800 00000 n +0000575879 00000 n +0000576025 00000 n +0000576109 00000 n +0000576193 00000 n +0000576277 00000 n +0000576361 00000 n +0000576468 00000 n +0000576552 00000 n +0000576631 00000 n +0000576969 00000 n +0000577053 00000 n +0000577137 00000 n +0000577216 00000 n +0000577370 00000 n +0000577454 00000 n +0000577538 00000 n +0000577622 00000 n +0000577706 00000 n +0000577793 00000 n +0000577872 00000 n +0000577958 00000 n +0000578037 00000 n +0000578183 00000 n +0000578267 00000 n +0000578351 00000 n +0000578430 00000 n +0000578577 00000 n +0000578661 00000 n +0000578745 00000 n +0000578814 00000 n +0000578969 00000 n +0000579053 00000 n +0000579137 00000 n +0000579221 00000 n +0000579305 00000 n +0000579389 00000 n +0000579504 00000 n +0000579588 00000 n +0000579667 00000 n +0000579781 00000 n +0000579865 00000 n +0000579977 00000 n +0000580061 00000 n +0000580130 00000 n +0000580237 00000 n +0000580321 00000 n +0000580420 00000 n +0000580504 00000 n +0000580583 00000 n +0000580737 00000 n +0000580821 00000 n +0000580905 00000 n +0000580989 00000 n +0000581073 00000 n +0000581184 00000 n +0000581303 00000 n +0000581387 00000 n +0000581471 00000 n +0000581550 00000 n +0000581980 00000 n +0000582064 00000 n +0000582148 00000 n +0000582232 00000 n +0000582317 00000 n +0000582459 00000 n +0000582543 00000 n +0000582627 00000 n +0000582711 00000 n +0000582822 00000 n +0000582906 00000 n +0000583037 00000 n +0000583121 00000 n +0000583205 00000 n +0000583289 00000 n +0000583590 00000 n +0000583674 00000 n +0000583758 00000 n +0000583945 00000 n +0000584029 00000 n +0000584113 00000 n +0000584197 00000 n +0000584281 00000 n +0000584432 00000 n +0000584516 00000 n +0000584600 00000 n +0000584684 00000 n +0000584768 00000 n +0000585153 00000 n +0000585237 00000 n +0000585352 00000 n +0000585436 00000 n +0000585520 00000 n +0000585604 00000 n +0000585683 00000 n +0000585777 00000 n +0000585917 00000 n +0000586001 00000 n +0000586085 00000 n +0000586169 00000 n +0000586238 00000 n +0000586420 00000 n +0000586504 00000 n +0000586588 00000 n +0000586672 00000 n +0000586756 00000 n +0000586840 00000 n +0000587066 00000 n +0000587150 00000 n +0000587219 00000 n +0000587338 00000 n +0000587422 00000 n +0000587506 00000 n +0000587654 00000 n +0000587738 00000 n +0000587822 00000 n +0000587891 00000 n +0000588046 00000 n +0000588130 00000 n +0000588214 00000 n +0000588298 00000 n +0000588382 00000 n +0000588525 00000 n +0000588609 00000 n +0000588693 00000 n +0000588777 00000 n +0000588888 00000 n +0000588972 00000 n +0000589056 00000 n +0000589135 00000 n +0000589257 00000 n +0000589341 00000 n +0000589432 00000 n +0000589516 00000 n +0000589595 00000 n +0000589681 00000 n +0000589750 00000 n +0000589819 00000 n +0000589887 00000 n +0000590092 00000 n +0000590176 00000 n +0000590260 00000 n +0000590344 00000 n +0000590428 00000 n +0000590512 00000 n +0000590596 00000 n +0000590680 00000 n +0000590764 00000 n +0000590833 00000 n +0000590902 00000 n +0000590970 00000 n +0000591916 00000 n +0000592000 00000 n +0000592084 00000 n +0000592168 00000 n +0000592252 00000 n +0000592336 00000 n +0000592420 00000 n +0000592504 00000 n +0000592573 00000 n +0000592657 00000 n +0000592741 00000 n +0000592825 00000 n +0000592909 00000 n +0000592978 00000 n +0000593047 00000 n +0000593115 00000 n +0000593384 00000 n +0000593468 00000 n +0000593552 00000 n +0000593636 00000 n +0000593720 00000 n +0000593804 00000 n +0000593888 00000 n +0000593972 00000 n +0000594056 00000 n +0000594140 00000 n +0000594224 00000 n +0000594308 00000 n +0000594415 00000 n +0000594499 00000 n +0000594579 00000 n +0000594690 00000 n +0000594775 00000 n +0000594845 00000 n +0000594915 00000 n +0000594984 00000 n +0000595101 00000 n +0000595186 00000 n +0000595256 00000 n +0000595326 00000 n +0000595395 00000 n +0000595569 00000 n +0000595654 00000 n +0000595739 00000 n +0000595824 00000 n +0000595909 00000 n +0000595994 00000 n +0000596064 00000 n +0000596134 00000 n +0000596203 00000 n +0000596317 00000 n +0000596387 00000 n +0000596457 00000 n +0000596526 00000 n +0000596643 00000 n +0000596728 00000 n +0000596798 00000 n +0000596868 00000 n +0000596937 00000 n +0000597083 00000 n +0000597168 00000 n +0000597253 00000 n +0000597338 00000 n +0000597423 00000 n +0000597503 00000 n +0000597606 00000 n +0000597720 00000 n +0000597805 00000 n +0000597934 00000 n +0000598019 00000 n +0000598190 00000 n +0000598275 00000 n +0000598360 00000 n +0000598445 00000 n +0000598530 00000 n +0000598615 00000 n +0000598718 00000 n +0000598798 00000 n +0000598942 00000 n +0000599027 00000 n +0000599112 00000 n +0000599192 00000 n +0000599272 00000 n +0000599442 00000 n +0000599527 00000 n +0000599612 00000 n +0000599697 00000 n +0000599782 00000 n +0000599913 00000 n +0000599999 00000 n +0000600069 00000 n +0000600139 00000 n +0000600208 00000 n +0000600698 00000 n +0000600783 00000 n +0000600868 00000 n +0000600938 00000 n +0000601008 00000 n +0000601077 00000 n +0000601235 00000 n +0000601320 00000 n +0000601405 00000 n +0000601490 00000 n +0000601578 00000 n +0000601648 00000 n +0000601718 00000 n +0000601788 00000 n +0000601858 00000 n +0000601939 00000 n +0000602009 00000 n +0000602079 00000 n +0000602155 00000 n +0000602225 00000 n +0000602295 00000 n +0000602359 00000 n +0000602429 00000 n +0000602499 00000 n +0000602575 00000 n +0000602645 00000 n +0000602715 00000 n +0000602791 00000 n +0000602861 00000 n +0000602931 00000 n +0000603002 00000 n +0000603072 00000 n +0000603142 00000 n +0000603223 00000 n +0000603293 00000 n +0000603363 00000 n +0000603444 00000 n +0000603524 00000 n +0000603640 00000 n +0000603725 00000 n +0000603857 00000 n +0000603942 00000 n +0000604027 00000 n +0000604178 00000 n +0000604318 00000 n +0000604403 00000 n +0000604488 00000 n +0000604573 00000 n +0000604689 00000 n +0000604774 00000 n +0000604862 00000 n +0000604932 00000 n +0000605002 00000 n +0000605073 00000 n +0000605143 00000 n +0000605213 00000 n +0000605297 00000 n +0000605382 00000 n +0000605452 00000 n +0000605522 00000 n +0000605593 00000 n +0000605663 00000 n +0000605733 00000 n +0000605817 00000 n +0000605902 00000 n +0000605972 00000 n +0000606042 00000 n +0000606126 00000 n +0000606211 00000 n +0000606291 00000 n +0000606423 00000 n +0000606508 00000 n +0000606593 00000 n +0000606678 00000 n +0000606818 00000 n +0000606903 00000 n +0000606988 00000 n +0000607073 00000 n +0000607203 00000 n +0000607288 00000 n +0000607373 00000 n +0000607458 00000 n +0000607765 00000 n +0000607850 00000 n +0000607935 00000 n +0000608026 00000 n +0000608106 00000 n +0000608225 00000 n +0000608310 00000 n +0000608395 00000 n +0000608475 00000 n +0000608839 00000 n +0000608924 00000 n +0000609012 00000 n +0000609082 00000 n +0000609152 00000 n +0000609223 00000 n +0000609293 00000 n +0000609363 00000 n +0000609439 00000 n +0000609509 00000 n +0000609579 00000 n +0000609658 00000 n +0000609743 00000 n +0000609813 00000 n +0000609883 00000 n +0000609959 00000 n +0000610029 00000 n +0000610099 00000 n +0000610170 00000 n +0000610240 00000 n +0000610310 00000 n +0000610386 00000 n +0000610456 00000 n +0000610536 00000 n +0000610675 00000 n +0000610760 00000 n +0000610845 00000 n +0000610925 00000 n +0000611046 00000 n +0000611131 00000 n +0000611240 00000 n +0000611325 00000 n +0000611429 00000 n +0000611514 00000 n +0000611594 00000 n +0000612056 00000 n +0000612141 00000 n +0000612221 00000 n +0000612334 00000 n +0000612472 00000 n +0000612557 00000 n +0000612642 00000 n +0000612727 00000 n +0000612812 00000 n +0000612903 00000 n +0000613005 00000 n +0000613090 00000 n +0000613175 00000 n +0000613255 00000 n +0000613396 00000 n +0000613481 00000 n +0000613642 00000 n +0000613727 00000 n +0000613812 00000 n +0000613882 00000 n +0000613999 00000 n +0000614084 00000 n +0000614169 00000 n +0000614249 00000 n +0000614365 00000 n +0000614450 00000 n +0000614877 00000 n +0000614962 00000 n +0000615050 00000 n +0000615138 00000 n +0000615226 00000 n +0000615314 00000 n +0000615384 00000 n +0000615454 00000 n +0000615543 00000 n +0000615628 00000 n +0000615698 00000 n +0000615768 00000 n +0000615847 00000 n +0000615932 00000 n +0000616002 00000 n +0000616072 00000 n +0000616153 00000 n +0000616261 00000 n +0000616346 00000 n +0000616416 00000 n +0000616486 00000 n +0000616550 00000 n +0000616620 00000 n +0000616690 00000 n +0000616754 00000 n +0000616839 00000 n +0000616924 00000 n +0000617066 00000 n +0000617151 00000 n +0000617236 00000 n +0000617324 00000 n +0000617412 00000 n +0000617500 00000 n +0000617603 00000 n +0000617688 00000 n +0000617758 00000 n +0000617828 00000 n +0000617924 00000 n +0000617994 00000 n +0000618064 00000 n +0000618135 00000 n +0000618230 00000 n +0000618300 00000 n +0000618370 00000 n +0000618472 00000 n +0000618557 00000 n +0000618642 00000 n +0000618745 00000 n +0000618830 00000 n +0000618900 00000 n +0000618970 00000 n +0000619051 00000 n +0000619154 00000 n +0000619239 00000 n +0000619309 00000 n +0000619379 00000 n +0000619450 00000 n +0000619520 00000 n +0000619590 00000 n +0000619654 00000 n +0000619724 00000 n +0000619794 00000 n +0000619858 00000 n +0000619938 00000 n +0000620077 00000 n +0000620162 00000 n +0000620247 00000 n +0000620371 00000 n +0000620456 00000 n +0000620555 00000 n +0000620640 00000 n +0000620787 00000 n +0000620872 00000 n +0000620957 00000 n +0000621084 00000 n +0000621169 00000 n +0000621254 00000 n +0000621556 00000 n +0000621641 00000 n +0000621742 00000 n +0000621827 00000 n +0000621912 00000 n +0000622014 00000 n +0000622099 00000 n +0000622184 00000 n +0000622264 00000 n +0000622403 00000 n +0000622488 00000 n +0000622573 00000 n +0000622692 00000 n +0000622777 00000 n +0000622865 00000 n +0000622953 00000 n +0000623041 00000 n +0000623144 00000 n +0000623229 00000 n +0000623299 00000 n +0000623369 00000 n +0000623453 00000 n +0000623538 00000 n +0000623608 00000 n +0000623678 00000 n +0000623749 00000 n +0000623844 00000 n +0000623914 00000 n +0000623984 00000 n +0000624048 00000 n +0000624161 00000 n +0000624246 00000 n +0000624316 00000 n +0000624386 00000 n +0000624457 00000 n +0000624592 00000 n +0000624677 00000 n +0000624762 00000 n +0000624847 00000 n +0000625005 00000 n +0000625090 00000 n +0000625175 00000 n +0000625260 00000 n +0000625345 00000 n +0000625500 00000 n +0000625585 00000 n +0000625670 00000 n +0000625755 00000 n +0000625877 00000 n +0000625962 00000 n +0000626047 00000 n +0000626179 00000 n +0000626264 00000 n +0000626349 00000 n +0000626442 00000 n +0000626522 00000 n +0000626669 00000 n +0000626754 00000 n +0000626839 00000 n +0000626924 00000 n +0000627115 00000 n +0000627200 00000 n +0000627285 00000 n +0000627370 00000 n +0000627455 00000 n +0000627540 00000 n +0000627649 00000 n +0000627734 00000 n +0000627814 00000 n +0000627895 00000 n +0000627976 00000 n +0000628057 00000 n +0000628138 00000 n +0000628249 00000 n +0000628334 00000 n +0000628414 00000 n +0000628484 00000 n +0000628554 00000 n +0000628618 00000 n +0000628757 00000 n +0000628842 00000 n +0000628927 00000 n +0000628997 00000 n +0000629067 00000 n +0000629159 00000 n +0000629244 00000 n +0000629329 00000 n +0000629461 00000 n +0000629546 00000 n +0000629631 00000 n +0000629716 00000 n +0000629786 00000 n +0000629856 00000 n +0000629927 00000 n +0000630064 00000 n +0000630149 00000 n +0000630234 00000 n +0000630319 00000 n +0000630389 00000 n +0000630459 00000 n +0000630543 00000 n +0000630628 00000 n +0000630820 00000 n +0000630905 00000 n +0000630990 00000 n +0000631075 00000 n +0000631160 00000 n +0000631245 00000 n +0000631315 00000 n +0000631385 00000 n +0000631455 00000 n +0000631519 00000 n +0000631635 00000 n +0000631720 00000 n +0000631790 00000 n +0000631860 00000 n +0000631924 00000 n +0000632030 00000 n +0000632115 00000 n +0000632185 00000 n +0000632255 00000 n +0000632334 00000 n +0000632419 00000 n +0000632533 00000 n +0000632618 00000 n +0000632703 00000 n +0000632773 00000 n +0000632843 00000 n +0000632907 00000 n +0000633026 00000 n +0000633111 00000 n +0000633196 00000 n +0000633266 00000 n +0000633336 00000 n +0000633400 00000 n +0000633506 00000 n +0000633591 00000 n +0000633672 00000 n +0000633783 00000 n +0000633868 00000 n +0000633961 00000 n +0000634192 00000 n +0000634277 00000 n +0000634362 00000 n +0000634443 00000 n +0000634615 00000 n +0000634700 00000 n +0000634785 00000 n +0000634871 00000 n +0000634957 00000 n +0000635046 00000 n +0000635169 00000 n +0000635256 00000 n +0000635345 00000 n +0000635482 00000 n +0000635569 00000 n +0000635656 00000 n +0000635727 00000 n +0000635798 00000 n +0000635863 00000 n +0000635981 00000 n +0000636068 00000 n +0000636162 00000 n +0000636232 00000 n +0000636302 00000 n +0000636372 00000 n +0000636442 00000 n +0000636512 00000 n +0000636576 00000 n +0000636646 00000 n +0000636716 00000 n +0000636780 00000 n +0000636850 00000 n +0000636920 00000 n +0000636984 00000 n +0000637054 00000 n +0000637124 00000 n +0000637188 00000 n +0000637258 00000 n +0000637328 00000 n +0000637392 00000 n +0000637462 00000 n +0000637532 00000 n +0000637596 00000 n +0000637666 00000 n +0000637736 00000 n +0000637800 00000 n +0000637870 00000 n +0000637940 00000 n +0000638004 00000 n +0000638074 00000 n +0000638144 00000 n +0000638208 00000 n +0000638278 00000 n +0000638348 00000 n +0000638412 00000 n +0000638482 00000 n +0000638552 00000 n +0000638616 00000 n +0000638686 00000 n +0000638756 00000 n +0000638820 00000 n +0000638890 00000 n +0000638960 00000 n +0000639024 00000 n +0000639094 00000 n +0000639164 00000 n +0000639228 00000 n +0000639298 00000 n +0000639368 00000 n +0000639432 00000 n +0000639502 00000 n +0000639572 00000 n +0000639636 00000 n +0000639706 00000 n +0000639776 00000 n +0000639840 00000 n +0000639910 00000 n +0000639980 00000 n +0000640044 00000 n +0000640114 00000 n +0000640184 00000 n +0000640248 00000 n +0000640318 00000 n +0000640388 00000 n +0000640452 00000 n +0000640522 00000 n +0000640592 00000 n +0000640656 00000 n +0000640726 00000 n +0000640796 00000 n +0000640860 00000 n +0000640986 00000 n +0000641056 00000 n +0000641126 00000 n +0000641190 00000 n +0000641260 00000 n +0000641330 00000 n +0000641394 00000 n +0000641464 00000 n +0000641534 00000 n +0000641598 00000 n +0000641668 00000 n +0000641738 00000 n +0000641802 00000 n +0000641872 00000 n +0000641942 00000 n +0000642006 00000 n +0000642076 00000 n +0000642146 00000 n +0000642210 00000 n +0000642280 00000 n +0000642350 00000 n +0000642414 00000 n +0000642484 00000 n +0000642554 00000 n +0000642618 00000 n +0000642753 00000 n +0000642839 00000 n +0000642909 00000 n +0000642979 00000 n +0000643043 00000 n +0000643113 00000 n +0000643183 00000 n +0000643247 00000 n +0000643317 00000 n +0000643387 00000 n +0000643451 00000 n +0000643521 00000 n +0000643592 00000 n +0000643657 00000 n +0000643728 00000 n +0000643799 00000 n +0000643864 00000 n +0000643935 00000 n +0000644006 00000 n +0000644071 00000 n +0000644142 00000 n +0000644213 00000 n +0000644278 00000 n +0000644349 00000 n +0000644420 00000 n +0000644485 00000 n +0000644556 00000 n +0000644627 00000 n +0000644699 00000 n +0000644770 00000 n +0000644841 00000 n +0000644906 00000 n +0000644977 00000 n +0000645048 00000 n +0000645113 00000 n +0000645194 00000 n +0000645275 00000 n +0000645368 00000 n +0000645450 00000 n +0000645543 00000 n +0000645625 00000 n +0000645718 00000 n +0000645800 00000 n +0000645893 00000 n +0000645996 00000 n +0000646068 00000 n +0000646161 00000 n +0000646250 00000 n +0000646343 00000 n +0000646425 00000 n +0000646518 00000 n +0000646600 00000 n +0000646683 00000 n +0000646765 00000 n +0000646858 00000 n +0000646961 00000 n +0000647033 00000 n +0000647131 00000 n +0000647225 00000 n +0000647323 00000 n +0000647405 00000 n +0000647503 00000 n +0000647592 00000 n +0000647690 00000 n +0000647806 00000 n +0000647878 00000 n +0000647973 00000 n +0000648045 00000 n +0000648143 00000 n +0000648232 00000 n +0000648330 00000 n +0000648428 00000 n +0000648515 00000 n +0000648613 00000 n +0000648721 00000 n +0000648793 00000 n +0000648891 00000 n +0000649013 00000 n +0000649100 00000 n +0000649187 00000 n +0000649314 00000 n +0000649401 00000 n +0000659835 00000 n +0000670322 00000 n +0000670513 00000 n +0000671299 00000 n +0000672951 00000 n +0000675258 00000 n +0000675287 00000 n +0000675593 00000 n +0000675904 00000 n +0000675933 00000 n +0000676246 00000 n +0000676644 00000 n +0000676952 00000 n +0000677253 00000 n +0000677554 00000 n +0000677896 00000 n +0000678256 00000 n +0000691741 00000 n +0000694828 00000 n +0000695615 00000 n +0000698901 00000 n +0000698930 00000 n +0000699236 00000 n +0000699610 00000 n +0000699911 00000 n +0000700212 00000 n +0000700574 00000 n +0000700944 00000 n +0000708936 00000 n +0000708965 00000 n +0000709278 00000 n +0000709695 00000 n +0000709996 00000 n +0000710297 00000 n +0000710657 00000 n +0000714912 00000 n +0000720211 00000 n +0000720402 00000 n +0000723896 00000 n +0000723925 00000 n +0000724231 00000 n +0000724554 00000 n +0000724880 00000 n +0000724974 00000 n +0000725401 00000 n +0000725901 00000 n +0000726252 00000 n +0000726650 00000 n +0000726952 00000 n +0000727253 00000 n +0000727595 00000 n +0000727955 00000 n +0000727984 00000 n +0000728290 00000 n +0000728346 00000 n +0000728437 00000 n +0000728493 00000 n +0000728556 00000 n +0000728619 00000 n +0000728692 00000 n +0000728783 00000 n +0000728847 00000 n +0000728903 00000 n +0000728959 00000 n +0000729015 00000 n +0000729071 00000 n +0000729127 00000 n +0000729183 00000 n +0000729239 00000 n +0000729295 00000 n +0000729351 00000 n +0000729407 00000 n +0000729463 00000 n +0000729519 00000 n +0000729575 00000 n +0000729631 00000 n +0000729687 00000 n +0000729743 00000 n +0000729799 00000 n +0000729855 00000 n +0000729911 00000 n +0000729967 00000 n +0000730023 00000 n +0000730079 00000 n +0000730135 00000 n +0000730191 00000 n +0000730247 00000 n +0000730303 00000 n +0000730359 00000 n +0000730415 00000 n +0000730471 00000 n +0000730527 00000 n +0000730583 00000 n +0000730639 00000 n +0000730695 00000 n +0000730751 00000 n +0000730807 00000 n +0000730863 00000 n +0000730919 00000 n +0000730975 00000 n +0000731031 00000 n +0000731087 00000 n +0000731143 00000 n +0000731199 00000 n +0000731255 00000 n +0000731311 00000 n +0000731367 00000 n +0000731423 00000 n +0000731479 00000 n +0000731535 00000 n +0000731591 00000 n +0000731647 00000 n +0000731703 00000 n +0000731759 00000 n +0000731815 00000 n +0000731868 00000 n +0000731921 00000 n +0000731974 00000 n +0000732027 00000 n +0000732080 00000 n +0000732133 00000 n +0000732186 00000 n +0000732239 00000 n +0000732292 00000 n +0000732345 00000 n +0000732426 00000 n +0000732507 00000 n +0000732588 00000 n +0000732669 00000 n +0000732750 00000 n +0000732831 00000 n +0000732912 00000 n +0000732987 00000 n +0000733114 00000 n +0000733169 00000 n +0000733344 00000 n +0000733399 00000 n +0000733472 00000 n +0000733527 00000 n +0000733600 00000 n +0000733655 00000 n +0000733728 00000 n +0000733783 00000 n +0000733856 00000 n +0000733917 00000 n +0000733973 00000 n +0000734034 00000 n +0000734090 00000 n +0000734151 00000 n +0000734207 00000 n +0000734268 00000 n +0000734324 00000 n +0000734385 00000 n +0000734446 00000 n +0000734502 00000 n +0000734558 00000 n +0000734619 00000 n +0000734675 00000 n +0000734736 00000 n +0000734792 00000 n +0000734853 00000 n +0000734909 00000 n +0000734970 00000 n +0000735026 00000 n +0000735087 00000 n +0000735143 00000 n +0000735204 00000 n +0000735260 00000 n +0000735321 00000 n +0000735377 00000 n +0000735438 00000 n +0000735494 00000 n +0000735559 00000 n +0000735632 00000 n +0000735697 00000 n +0000735758 00000 n +0000735933 00000 n +0000735989 00000 n +0000736054 00000 n +0000736127 00000 n +0000736192 00000 n +0000736265 00000 n +0000736330 00000 n +0000736404 00000 n +0000736469 00000 n +0000736543 00000 n +0000736608 00000 n +0000736682 00000 n +0000736747 00000 n +0000736921 00000 n +0000736986 00000 n +0000737059 00000 n +0000737124 00000 n +0000737198 00000 n +0000737252 00000 n +0000737333 00000 n +0000737407 00000 n +0000737472 00000 n +0000737546 00000 n +0000737611 00000 n +0000737685 00000 n +0000737750 00000 n +0000737824 00000 n +0000737889 00000 n +0000737963 00000 n +0000738028 00000 n +0000738102 00000 n +0000738167 00000 n +0000738241 00000 n +0000738306 00000 n +0000738380 00000 n +0000738434 00000 n +0000738499 00000 n +0000738573 00000 n +0000738638 00000 n +0000738712 00000 n +0000738777 00000 n +0000738851 00000 n +0000738916 00000 n +0000738990 00000 n +0000739055 00000 n +0000739129 00000 n +0000739190 00000 n +0000739244 00000 n +0000739309 00000 n +0000739383 00000 n +0000739448 00000 n +0000739522 00000 n +0000739587 00000 n +0000739661 00000 n +0000739726 00000 n +0000739800 00000 n +0000739865 00000 n +0000739939 00000 n +0000740004 00000 n +0000740078 00000 n +0000740134 00000 n +0000740195 00000 n +0000740251 00000 n +0000740335 00000 n +0000740419 00000 n +0000740503 00000 n +0000740587 00000 n +0000740652 00000 n +0000740726 00000 n +0000740791 00000 n +0000740865 00000 n +0000740930 00000 n +0000741004 00000 n +0000741088 00000 n +0000741153 00000 n +0000741227 00000 n +0000741292 00000 n +0000741366 00000 n +0000741450 00000 n +0000741504 00000 n +0000741558 00000 n +0000741612 00000 n +0000741677 00000 n +0000741816 00000 n +0000741881 00000 n +0000741955 00000 n +0000742009 00000 n +0000742074 00000 n +0000742148 00000 n +0000742202 00000 n +0000742267 00000 n +0000742341 00000 n +0000742395 00000 n +0000742460 00000 n +0000742534 00000 n +0000742599 00000 n +0000742673 00000 n +0000742738 00000 n +0000742812 00000 n +0000742896 00000 n +0000742950 00000 n +0000743004 00000 n +0000743058 00000 n +0000743123 00000 n +0000743197 00000 n +0000743262 00000 n +0000743336 00000 n +0000743390 00000 n +0000743455 00000 n +0000743529 00000 n +0000743583 00000 n +0000743648 00000 n +0000743722 00000 n +0000743787 00000 n +0000743860 00000 n +0000743925 00000 n +0000743998 00000 n +0000744063 00000 n +0000744136 00000 n +0000744201 00000 n +0000744274 00000 n +0000744335 00000 n +0000744391 00000 n +0000744456 00000 n +0000744529 00000 n +0000744594 00000 n +0000744667 00000 n +0000744732 00000 n +0000744805 00000 n +0000744870 00000 n +0000744943 00000 n +0000745008 00000 n +0000745081 00000 n +0000745148 00000 n +0000745222 00000 n +0000745277 00000 n +0000745344 00000 n +0000745428 00000 n +0000745495 00000 n +0000745570 00000 n +0000745637 00000 n +0000745712 00000 n +0000745779 00000 n +0000745854 00000 n +0000745921 00000 n +0000745996 00000 n +0000746063 00000 n +0000746147 00000 n +0000746214 00000 n +0000746289 00000 n +0000746356 00000 n +0000746431 00000 n +0000746498 00000 n +0000746573 00000 n +0000746640 00000 n +0000746715 00000 n +0000746782 00000 n +0000746857 00000 n +0000746924 00000 n +0000746999 00000 n +0000747066 00000 n +0000747150 00000 n +0000747217 00000 n +0000747292 00000 n +0000747359 00000 n +0000747434 00000 n +0000747501 00000 n +0000747576 00000 n +0000747643 00000 n +0000747727 00000 n +0000747794 00000 n +0000747869 00000 n +0000747936 00000 n +0000748011 00000 n +0000748078 00000 n +0000748153 00000 n +0000748220 00000 n +0000748304 00000 n +0000748371 00000 n +0000748446 00000 n +0000748513 00000 n +0000748588 00000 n +0000748643 00000 n +0000748710 00000 n +0000748794 00000 n +0000748861 00000 n +0000748936 00000 n +0000749003 00000 n +0000749078 00000 n +0000749145 00000 n +0000749220 00000 n +0000749287 00000 n +0000749362 00000 n +0000749429 00000 n +0000749504 00000 n +0000749571 00000 n +0000749646 00000 n +0000749713 00000 n +0000749788 00000 n +0000749843 00000 n +0000749910 00000 n +0000749994 00000 n +0000750061 00000 n +0000750136 00000 n +0000750203 00000 n +0000750278 00000 n +0000750345 00000 n +0000750420 00000 n +0000750487 00000 n +0000750562 00000 n +0000750629 00000 n +0000750713 00000 n +0000750780 00000 n +0000750855 00000 n +0000750922 00000 n +0000750997 00000 n +0000751064 00000 n +0000751203 00000 n +0000751270 00000 n +0000751345 00000 n +0000751412 00000 n +0000751487 00000 n +0000751544 00000 n +0000751601 00000 n +0000751658 00000 n +0000751715 00000 n +0000751772 00000 n +0000751829 00000 n +0000751886 00000 n +0000751954 00000 n +0000752011 00000 n +0000752068 00000 n +0000752125 00000 n +0000752182 00000 n +0000752239 00000 n +0000752296 00000 n +0000752353 00000 n +0000752410 00000 n +0000752467 00000 n +0000752524 00000 n +0000752601 00000 n +0000752898 00000 n +0000753518 00000 n +0000754885 00000 n +0000757124 00000 n +0000757201 00000 n +0000757498 00000 n +0000757689 00000 n +0000758384 00000 n +0000761783 00000 n +0000763826 00000 n +0000764277 00000 n +0000765645 00000 n +0000765792 00000 n +0000765930 00000 n +0000766068 00000 n +0000766205 00000 n +0000766301 00000 n +0000766474 00000 n +0000766638 00000 n +0000766693 00000 n +0000766812 00000 n +0000766867 00000 n +0000766959 00000 n +0000767014 00000 n +0000767115 00000 n +0000767170 00000 n +0000767236 00000 n +0000767302 00000 n +0000767376 00000 n +0000767442 00000 n +0000767507 00000 n +0000767562 00000 n +0000767628 00000 n +0000767694 00000 n +0000767759 00000 n +0000767825 00000 n +0000767879 00000 n +0000767945 00000 n +0000767999 00000 n +0000768065 00000 n +0000768139 00000 n +0000768194 00000 n +0000768260 00000 n +0000768326 00000 n +0000768391 00000 n +0000768457 00000 n +0000768511 00000 n +0000768577 00000 n +0000768631 00000 n +0000768697 00000 n +0000768780 00000 n +0000768872 00000 n +0000768973 00000 n +0000769047 00000 n +0000769121 00000 n +0000769186 00000 n +0000769252 00000 n +0000769326 00000 n +0000769418 00000 n +0000769484 00000 n +0000769549 00000 n +0000769632 00000 n +0000769724 00000 n +0000769769 00000 n +0000769814 00000 n +0000769859 00000 n +0000769904 00000 n +0000769949 00000 n +0000769994 00000 n +0000770039 00000 n +0000770084 00000 n +0000770129 00000 n +0000770174 00000 n +0000770219 00000 n +0000770264 00000 n +0000770309 00000 n +0000770354 00000 n +0000770399 00000 n +0000770444 00000 n +0000770489 00000 n +0000770534 00000 n +0000770623 00000 n +0000773972 00000 n +0000774061 00000 n +0000777413 00000 n +0000777490 00000 n +0000777787 00000 n +0000777842 00000 n +0000777897 00000 n +0000777952 00000 n +0000778007 00000 n +0000778062 00000 n +0000778117 00000 n +0000778172 00000 n +0000778238 00000 n +0000778304 00000 n +0000778370 00000 n +0000778425 00000 n +0000778480 00000 n +0000778535 00000 n +0000778620 00000 n +0000778705 00000 n +0000778760 00000 n +0000778815 00000 n +0000778870 00000 n +0000778925 00000 n +0000778980 00000 n +0000779035 00000 n +0000779090 00000 n +0000779145 00000 n +0000779200 00000 n +0000779255 00000 n +0000779344 00000 n +0000782694 00000 n +0000782767 00000 n +0000782810 00000 n +0000782853 00000 n +0000782896 00000 n +0000782969 00000 n +0000783042 00000 n +0000783085 00000 n +0000783128 00000 n +0000783171 00000 n +trailer +<< +/ID [<3DD178839333554E87798F950D76ACE7> <1DA651CF1706494FA17B198EF1003301>] +/Info 1 0 R +/Root 2 0 R +/Size 1732 +>> +startxref +783214 +%%EOF diff --git a/src/Static/data/json/IDDRS-2.10-The-UN-Approach-To-DDR.json b/src/Static/data/json/IDDRS-2.10-The-UN-Approach-To-DDR.json new file mode 100644 index 0000000..6f76af5 --- /dev/null +++ b/src/Static/data/json/IDDRS-2.10-The-UN-Approach-To-DDR.json @@ -0,0 +1,667 @@ +[ + { + "ID": "7811fffe-efd4-4e98-9f2a-81958edaab4a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "Summary Integrated disarmament, demobilization and reintegration (DDR) is part of the United Nations (UN) system\u2019s multidimensional approach that contributes to the en- tire peace continuum, from prevention, conflict resolution and peacekeeping, to peace- building and development. Integrated DDR processes are made up of various combi- nations of: DDR programmes; DDR-related tools; Reintegration support, including when complementing DDR-related tools. DDR practitioners select the most appropriate of these measures to be applied on the basis of a thorough analysis of the particular context. Coordination is key to inte- grated DDR and is predicated on mechanisms that guarantee synergy and common purpose among all UN actors. The Integrated DDR Standards (IDDRS) contained in this document are a compi- lation of the UN\u2019s knowledge and experience in this field. They show how integrated DDR processes can contribute to preventing conflict escalation, supporting political processes, building security, protecting civilians, promoting gender equality and ad- dressing its root causes, reconstructing the social fabric and developing human capaci- ty. Integrated DDR is at the heart of peacebuilding and aims to contribute to long-term security and stability. Within the UN, integrated DDR takes place in partnership with Member States in both mission and non-mission settings, including in peace operations where they are mandated, and with the cooperation of agencies, funds and programmes. In countries and regions where integrated DDR processes are implemented, there should be a focus on capacity-building at the regional, national and local levels in order to encourage sus- tainable regional, national and/or local ownership and other peacebuilding measures. Integrated DDR processes should work towards sustaining peace. Whereas peace- building activities are typically understood as a response to conflict once it has already broken out, the sustaining peace approach recognizes the need to work along the entire peace continuum and towards the prevention of conflict before it occurs. In this way the UN should support those capacities, institutions and attitudes that help commu- nities to resolve conflicts peacefully. The implications of working along the peace con- tinuum are particularly important for the provision of reintegration support. Now, as part of the sustaining peace approach those individuals leaving armed groups can be supported not only in post-conflict situations, but also during conflict escalation and ongoing conflict. Community-based approaches to reintegration support, in particular, are well po- sitioned to operationalize the sustaining peace approach. They address the needs of former combatants, persons formerly associated with armed forces and groups, and receiving communities, while necessitating the multidimensional/sectoral expertise of several UN and regional actors across the humanitarian-peace-development nexus (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Integrated DDR should also be characterized by flexibility, including in funding structures, to adapt quickly to the dynamic and often volatile conflict and post-con- flict environment. DDR programmes, DDR-related tools and reintegration support, in whichever combination they are implemented, shall be synchronized through inte- grated coordination mechanisms, and carefully monitored and evaluated for effective- ness and with sensitivity to conflict dynamics and potential unintended effects. Five categories of people should be taken into consideration in integrated DDR processes as participants or beneficiaries, depending on the context: members of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); abductees or victims; dependents/families; civilian returnees or \u2018self-demobilized\u2019; community members. In each of these five categories, consideration should be given to addressing the spe- cific needs and capacities of women, youth, children, persons with disabilities, and persons with chronic illnesses. In particular, the unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR pro- grammes and DDR-related tools. DDR programmes consist of a set of related measures, with a particular aim, fall- ing under the operational categories of disarmament, demobilization and reintegra- tion. Disarmament and other DDR-related weapons control activities aim to reduce the number of illicit weapons, ammunition and explosives in circulation and are important elements in responding to and addressing the drivers of conflict. Demobilization, in- cluding the provision of tailored reinsertion packages, is crucial in discharging com- batants and those in support roles from the structures of armed forces and groups. Furthermore, DDR programmes emphasize the developmental impact of sustainable and inclusive reintegration and its positive effect on the consolidation of long-lasting peace and security. Lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. When these preconditions are in place, a DDR programme provides a common results framework for the coordination, management and implementation of DDR by national Governments with support from the UN system and regional and local stake- holders. A DDR programme establishes the outcomes, outputs, activities and inputs required, organizes costing requirements into a budget, and sets the monitoring and evaluation framework, including by identifying indicators, targets and milestones. In addition to DDR programmes, the UN has developed a set of DDR-related tools aiming to provide immediate and targeted responses. These include pre-DDR, tran- sitional weapons and ammunition management (WAM), community violence reduc- tion (CVR), initiatives to prevent individuals from joining armed groups designated as terrorist organizations, DDR support to mediation, and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may also be provided by DDR practitioners in compliance with international standards. The specific aims of DDR-related tools vary according to the context and can con- tribute to broader political and peacebuilding efforts in line with United Nations Secu- rity Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementa- tion and monitoring of DDR-related tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to de- limit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN approach to integrated DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In these contexts, reintegration may take place alongside/following DDR-related tools, or when DDR-related tools are not in use. The aim of this support is to facilitate the sustaina- ble reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes also aim to contribute to preventing further recruitment and to sustaining peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequita- ble access to resources. In this context, exits from armed groups and the reintegration of adult ex-combatants can and should be supported at all times, even in the absence of a DDR programme. Support to sustainable reintegration that addresses the needs of affected groups and harnesses their capacities, either as part of DDR programmes or not, requires a thorough understanding of the drivers of conflict, the specific needs of men, women, children and youth, their coping mechanisms and the opportunities for peace. Rein- tegration assistance should ensure the transition from individually focused to community approaches. This is so that resources can be applied to the benefit of the community in a balanced manner minimizing the stigmatization of former armed group members and contributing to reconciliation and reconstruction of the social fabric. In non-mission contexts, where funding mechanisms are not linked to peacekeeping assessed budgets, the use of DDR-related tools should, even in the initial planning phases, be coordinated with community-based reintegration support in order to ensure sustainability. Together, DDR programmes, DDR-related tools, and reintegration support provide a menu of options for DDR practitioners. If the aforementioned preconditions are in place, DDR-related tools may be used before, after or alongside a DDR programme. DDR-related tools and/or reintegration support may also be applied in the absence of preconditions and/or following the determination that a DDR programme is not appropriate for the context. In these cases, DDR-related tools may serve to build trust among the parties and contribute to a secure environment, possibly even paving the way for a DDR programme in the future (if still necessary). Notably, if DDR-related tools are applied with the explicit intent of creating the preconditions for a DDR pro- gramme, a combination of top-down and bottom-up measures (e.g., CVR coupled with DDR support to mediation) may be required. When the preconditions for a DDR programme are not in place, all DDR-related tools and support to reintegration efforts shall be implemented in line with the appli- cable legal framework and the key principles of integrated DDR as defined in these standards.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "97a4c405-f15f-4fe8-9b51-383d35988ceb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 5, + "Paragraph": "Module scope and objectives This module outlines the reasons behind integrated DDR, defines the elements that make up DDR programmes as agreed by the UN General Assembly, and establish- es how the UN views integrated DDR processes. The module also defines the UN approach to integrated DDR for both mission and non-mission settings, which is: voluntary; people-centred; gender-responsive and inclusive; conflict-sensitive; context-specific; flexible, accountable and transparent; nationally and locally owned; regionally supported; integrated; and well planned.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bfe08544-fac4-4d87-9989-ede7141e5531", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 5, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardiza- tion (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. A DDR programme contains the elements set out by the Secretary-General in his May 2005 note to the General Assembly (A/C.5/59/31). (See box below.) These definitions are also used for drawing up budgets where UN Member States have agreed to fund the disarmament and demobilization (including reinsertion) phases of DDR programmes from the peacekeeping assessed budget. These budgetary aspects are also reflected in a General Assembly resolution on cross-cutting issues, including DDR (A/RES/59/296). Further reviews of both the United Nations Peacebuilding Architecture and the Women, Peace and Security Agenda refer to the full, unencumbered participation of women in all phases of DDR programmes, as ex-combatants or persons formerly associated with armed forces and groups. REINTEGRATION Reintegration is the process by which ex-combatants acquire civilian status and gain sustainable employment and income. Reintegration is essentially a social and economic process with an open time frame, primarily taking place in communities at the local level. It is part of the general development of a country and a national responsibility and often necessitates long-term external assistance. Recognizing new developments in the reintegration of ex-combatants and associated groups since the release of the 2005 Note, the Third Report of the Secretary-General on DDR (2011) includes revised policy and guidance. It observes that, \u201cin most countries, economic aspects, while central, are not sufficient for the sustainable reintegration of ex-combatants. Serious consideration of the social and political aspects of reintegra- tion \u2026 is [also] crucial for the sustainability and success of reintegration programmes\u201d, including interventions, such as psychosocial support, mental health counseling and clinical treatment and medical health support, as well as reconciliation, access to justice/ transitional justice and participation in political processes. Additionally, it emphasizes that while \u201creintegration programmes supported by the United Nations are time-bound by nature \u2026 the reintegration of ex-combatants and associated groups is a long-term process that takes place at the individual, community, national and regional levels, and is dependent upon wider recovery and development.\u201d Note by the Secretary-General on administrative and budgetary aspects of the financ- ing of UN peacekeeping operations, 24 May 2005 (A/C.5/59/31); Third report of the Secretary-General on disarmament, demobilization and reintegration, 21 March 2011 (A/65/741) DDR-related tools are immediate and targeted measures that may be used before, after or alongside DDR programmes or when the preconditions for DDR-programmes are not in place. These include pre-DDR, transitional weapons and ammunition man- agement (WAM), community violence reduction (CVR), initiatives to prevent individ- uals from joining armed groups designated as terrorist organizations, DDR support to mediation and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may be provided by DDR practitioners in compliance with international standards. Reintegration support, including when complementing DDR-related tools: The UN should provide support to the reintegration of former members of armed forces and groups not only as part of DDR programmes, but also in the absence of such pro- grammes, during conflict escalation, conflict and post-conflict. In these contexts, rein- tegration may take place alongside/following DDR-related tools or when DDR-related tools are not in use. The aim of this support is to facilitate the sustainable reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes should also aim to contribute to dynamics that aim to prevent further recruitment and sustain peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequita- ble access to resources. Integrated DDR processes are made up of different combinations of DDR pro- grammes, DDR-related tools and reintegration support, including when complement- ing DDR-related tools. These different measures should be applied in an integrated manner, with joint mechanisms that guarantee coordination and synergy among all UN actors. The UN shall use the concept and abbreviation \u2018DDR\u2019 as a comprehensive term referring to integrated DDR, and including DDR programmes, DDR-related tools and reintegration support. Importantly, integrated DDR processes without DDR pro- grammes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration ef- forts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d3c25fb9-3524-4e59-ad1d-2a6666fc4cbc", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "Introduction: The rationale and mandate for integrated DDR As DDR is implemented in partnership with Member States and draws on the exper- tise of a wide range of stakeholders, an integrated approach is vital to ensure that all actors are working in harmony towards the same end. Past experiences have highlight- ed the need for those involved in planning and implementing DDR and monitoring its impacts to work together in a complementary way that avoids unnecessary duplication of effort or competition for funds and other resources (see IDDRS 3.10 on Integrated DDR Planning). The UN\u2019s integrated approach to DDR is guided by several policies and agendas that frame the UN\u2019s work on peace, security and development: Echoing the Brahimi Report (A/55/305; S/2000/809), the High-Level Independent Panel on Peace Operations (HIPPO) in June 2015 recommended a common and realistic un- derstanding of mandates, including required capabilities and standards, to improve the design and delivery of peace operations. Integrated DDR is part of this effort, based on joint analysis, comprehensive approaches, coordinated policies, DDR programmes, DDR-related tools and reintegration support. The Sustaining Peace Approach \u2013 manifested in the General Assembly and Secu- rity Council twin resolutions on the Review of the United Nations Peacebuilding Ar- chitecture (General Assembly resolution 70/262 and Security Council resolution 2282 [2016]) \u2013 underscores the mutually reinforcing relationship between prevention and sustaining peace, while recognizing that effective peacebuilding must involve the en- tire UN system. It also emphasizes the importance of joint analysis and effective strate- gic planning across the UN system in its long-term engagement with conflict-affected countries, and, where appropriate, in cooperation and coordination with regional and sub-regional organizations as well as international financial institutions. Integrated DDR also needs to be understood as a concrete and direct contribution to the implementation of the Sustainable Development Goals (SDGs). The SDGs are underpinned by the principle of leaving no one behind. The 2030 Agenda for Sustain- able Development explicitly links development to peace and security, while SDG 16 is focused on the promotion of peaceful, just and inclusive societies. Specifically, integrated DDR contributes to the implementation of:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "5cd3deb1-c193-4d27-aa82-bbdc226a4482", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "SDG 16.1: Significantly reduce all forms of violence and related death rates everywhere. SDG 16.4: By 2030, significantly reduce illicit financial and arms flows, strengthen the recovery and return of stolen assets and combat all forms of organized crime.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5d7d6359-0a62-44b2-b126-def05d75a870", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "SDG 8.7: Take immediate steps to secure the prohibition and elimination of child labour, including recruitment and use of child soldiers, and by 2015 end child labour in all its forms. Gender-responsive DDR also contributes to:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "770834a7-f6b5-49bc-a179-c2496cc7b782", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "SDG 5.1: End all forms of discrimination against women. SDG 5.2: Eliminate all forms of violence against all women and girls in public and private spaces, including trafficking, sexual and other types of exploitation.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e46c9c82-cf5c-492b-a179-ecce89e833ae", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "SDG 5.6: Ensure universal access to sexual and reproductive health and repro- ductive rights. The Quadrennial Comprehensive Policy Review (A/71/243, 21 December 2016, para. 14), states that \u201ca comprehensive whole-of-system response, including greater co- operation and complementarity among development, disaster risk reduction, human- itarian action and sustaining peace, is fundamental to most efficiently and effectively addressing needs and attaining the Sustainable Development Goals.\u201d Moreover, integrated DDR often takes place amid protracted humanitarian con- texts which, since the 2016 World Humanitarian Summit Commitment to Action, have been framed through various initiatives that recognize the need to strengthen the humanitarian, development and peace nexus. These initiatives \u2013 such as the Grand Bargain, the New Way of Working (NWoW), and the Global Compact on Refugees \u2013 all call for humanitarian, development and peace stakeholders to identify shared priori- ties or collective outcomes that can serve as a common framework to guide respective planning processes. In contexts where the UN system implements these approaches, in- tegrated DDR processes can contribute to the achievement of these collective outcomes. In all contexts \u2013 humanitarian, development, and peacebuilding \u2013 upholding hu- man rights, including gender equality, is pivotal to UN-supported integrated DDR. The Universal Declaration of Human Rights (UDHR, UNGA 217, 1948), the International Covenant on Civil and Political Rights, and the International Covenant on Economic, Social and Cultural Rights form the International Bill of Human Rights. These funda- mental instruments, combined with various treaties and conventions, including (but not limited to) the Convention on the Elimination of Discrimination Against Wom- en (CEDAW), the International Convention on the Elimination of All Forms of Racial Discrimination, the United Nations Convention on the Rights of the Child, and the United Nations Convention Against Torture, establish the obligations of Governments to promote and protect human rights and the fundamental freedoms of individuals and groups, applicable throughout integrated DDR. The work of the United Nations in all contexts is conducted under the auspices of upholding this body of law, promoting and protecting the rights of DDR participants and the communities into which they integrate, and assisting States in carrying out their responsibilities. At the same time, the Secretary-General\u2019s Action for Peacekeeping (A4P) initiative, launched in March 2018 as the core agenda for peacekeeping reform, seeks to refocus peacekeeping with realistic expectations, make peacekeeping missions stronger and safer, and mobilize greater support for political solutions and for well-structured, well- equipped and well-trained forces. In relation to the need for integrated DDR solutions, the A4P Declaration of Shared Commitment, shared by the Secretary-General on 16 August 2018, calls for the inclusion and engagement of civil society and all segments of the local population in peacekeeping mandate implementation. In addition, it includes commitments related to strengthening national ownership and capacity, ensuring inte- grated analysis and planning, and seeking greater coherence among UN system actors, including through joint platforms such as the Global Focal Point on Police, Justice and Corrections. Relatedly, the Secretary-General\u2019s Agenda for Disarmament, launched in May 2018, also calls for \u201cdisarmament that saves lives\u201d, including new efforts to rein in the use of explosive weapons in populated areas \u2013 through common standards, the collection of data on collateral harm, and the sharing of policy and practice. The UN General Assembly and the Security Council have called on all parts of the UN system to promote gender equality and the empowerment of women within their mandates, ensuring that commitments made are translated into progress on the ground and gender policies in the IDDRS. More concretely, UNSCR 1325 (2000) encour- ages all those involved in the planning of disarmament, demobilization and reintegra- tion to consider the distinct needs of female and male ex-combatants and to take into account the needs of their dependents. The Global Study on 1325, reflected in UNSCR 2242 (2015), also recommends that mission planning include gender-responsive DDR programmes. Furthermore, Security Council Resolution 2282 (2016), the Review of the United Nations Peacebuilding Architecture, the Review of Women, Peace and Security, and the High-Level Panel on Peace Operations (HIPPO) note the importance of women\u2019s roles in sustaining peace. UNSCR 2282 highlights the importance of women\u2019s leader- ship and participation in conflict prevention, resolution and peacebuilding, recogniz- ing the continued need to increase the representation of women at all decision-making levels, including in the negotiation and implementation of DDR programmes. UN Gen- eral Assembly resolution 70/304 calls for women\u2019s participation as negotiators in peace processes, including those incorporating DDR provisions, while the Secretary-Gen- eral\u2019s Seven Point Action Plan on Gender-Responsive Peacebuilding calls for 15% of funding in support of post-conflict peacebuilding projects to be earmarked for wom- en\u2019s empowerment and gender-equality programming. Finally, the Secretary-General\u2019s Agenda for Disarmament calls on States to incorporate gender perspectives into the development of national legislation and policies on disarmament and arms control \u2013 in particular, the gendered aspects of ownership, use and misuse of arms; the differenti- ated impacts of weapons on women and men; and the ways in which gender roles can shape arms control and disarmament policies and practices.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a39d4c83-ec99-4d85-8e37-f0c1b2424e31", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 11, + "Paragraph": "The UN DDR approach The UN\u2019s integrated approach to DDR is applicable to mission and non-mission contexts, and emphasizes the role of DDR programmes, DDR-related tools, and reinte- gration support, including when complementing DDR-related tools. The unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and rein- tegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. DDR programmes consist of a range of activities falling under the operational categories of disarmament, demobilization and reintegration. (See definitions above.) These programmes are typically top-down and are designed to implement the terms of a peace agreement between armed groups and the Government. The UN views DDR programmes as an integral part of peacebuilding efforts. DDR programmes focus on the post-conflict security problem that arises when combatants are left without livelihoods and support networks during the vital period stretching from conflict to peace, recovery and development. DDR programmes also help to build national capacity for long-term reintegration and human security, and they recognize the need to contribute to the right to reparation and to guarantees of non-repetition (see IDDRS 6.20 on DDR and Transitional Justice). DDR programmes are complex endeavours, with political, military, security, hu- manitarian and socio-economic dimensions. The establishment of a DDR programme is usually agreed to and defined within a ceasefire, the ending of hostilities or a com- prehensive peace agreement. This provides the political, policy and operational frame- work for the DDR programme. More generally, lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. DDR programmes provide a framework for their coordination, management and implementation by national Governments with support from the UN system, inter- national financial institutions, and regional stakeholders. They establish the expect- ed outcomes, outputs and activities required, organize costing requirements into a budget, and set the monitoring and evaluation framework by identifying indicators, targets and milestones. The UN\u2019s integrated approach to DDR acknowledges that planning for DDR pro- grammes shall be initiated as early as possible, even before a ceasefire and/or peace agreement is signed, before sufficient trust is built in the peace process, and before minimum conditions of security are reached that enable the parties to the conflict to engage willingly in DDR (see IDDRS 3.10 on Integrated DDR Planning). DDR programmes alone cannot resolve conflict or prevent violence, and such pro- grammes need to be firmly anchored in an overall political and peacebuilding strategy. However, DDR programmes can contribute to security and stability so that other ele- ments of a political and peacebuilding strategy, such as elections and power sharing, weapons and ammunition management, security sector reform (SSR) and rule of law reform, can proceed (see IDDRS 6.10 on DDR and SSR). In recent years, DDR practitioners have increasingly been deployed in settings where the preconditions for DDR programmes are not in place. In some contexts, a peace agreement may have been signed but the armed groups have lost trust in the peace process or reneged on the terms of the deal. In other settings, where there are multiple armed groups, some may sign on to a peace agreement while others do not. In contexts of violent extremism conducive to terrorism, peace agreements are only a remote possibility. It is not solely the lack of ceasefire agreements or peace processes that makes inte- grated DDR more challenging, but also the proliferation and diversification of armed groups, including some with links to transnational networks and organized crime. The phenomenon of violent extremism, as and when conducive to terrorism, creates legal and operational challenges for integrated DDR and, as a result, requires specific guidance. (For legal guidance pertinent to the UN approach to DDR, see IDDRS 2.11 on The Legal Framework for UN DDR.) Support to programmes for individuals leav- ing armed groups labelled and/or designated as terrorist organizations, among other things, should be predicated on a comprehensive screening process based on interna- tional standards, including international human rights obligations and national justice frameworks. There is no universally agreed upon definition of \u2018terrorism\u2019, nor associat- ed terms such as \u2018violent extremism\u2019. Nevertheless, the 19 international instruments on terrorism agree on definitions of terrorist acts/offenses, which are binding on Member States that are party to these conventions, as well as Security Council resolutions that describe terrorist acts. Practitioners should have a solid grounding in the evolving in- ternational counter-terrorism framework as established by the United Nations Global Counter-Terrorism Strategy, relevant General Assembly and Security Council resolu- tions and mandates, and the Secretary-General\u2019s Plan of Action to Prevent Violent Ex- tremism. In response to these challenges, DDR practitioners may contribute to stabilization initiatives through the use of DDR-related tools. The specific aims of DDR-related tools will vary according to the context and can contribute to broader political and peace- building efforts in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP), and/or the Integrated Strategic Framework. A gender- and child-sensitive ap- proach should be applied to the planning, implementation and monitoring of DDR-re- lated tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to de- limit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN\u2019s integrated approach to DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In line with the sustaining peace approach, this means that the UN should provide long-term support to reintegration that takes place in the absence of DDR programmes during conflict escalation, ongoing conflict and post-conflict reconstruction (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). The first goal of this support should be to facilitate the sustainable reintegration of those leaving armed forces and groups. However, as part of the sustaining peace approach, community-based re-", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "b6bec7af-5c46-4ff0-83d3-be638d943e6e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "In line with the sustaining peace approach, the UN should provide long-term support to reintegration during conflict escalation, conflict and post-conflict situations. integration programmes should also aim to contribute to dynamics that aim to prevent future recruitment and sus- tain peace. In this regard, opportunities should be seized to prevent relapse into conflict (or any form of violence), including by tackling root causes and understanding peace dynamics. Appropriate linkages should also be established with local and national stabilization, recovery and development plans. Reintegration sup- port as part of sustaining peace is not only an integral part of DDR programmes, it also follows SSR where armed forces or the police are rightsized; complements DDR-related tools, such as CVR, through sustainable measures; or is provided to persons formerly associated with armed groups labelled and/or designated as terrorist organizations. In sum, in countries in active armed conflict or emerging from armed conflict, DDR programmes, related tools and reintegration support contribute to stabilization efforts, to addressing gender inequalities exacerbated by conflict, and to creating an environment in which a peace process, political and social reconciliation, access to live- lihoods and sustainable decent work, and long-term development can take root. When the preconditions for a DDR programme are in place, the DDR of combatants from both armed forces and groups can help to establish a climate of confidence and security, a necessity for recovery activities to begin, which can directly yield tangible benefits for the population. When the preconditions for a DDR programme are not in place, practitioners may choose from a set of DDR-related tools and measures in support of reintegration that can contribute to stabilization, help to make the returns of stability more tangible, and create more conducive environments for national and local peace processes. As such, integrated DDR processes should be seen as integral parts of efforts to consolidate peace and promote stability, and not merely as a set of sequenced tech- nical programmes and activities. Overall, integrated DDR has evolved beyond support to national, linear and sequenced DDR programmes, to become a process addressing the entire peace contin- uum in both mission and non-mission contexts, at regional, national and local levels.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "81c6ac07-be39-4785-8d65-e366ffaf940e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 14, + "Paragraph": "UN DDR in mission and non-mission settings The UN has been involved in integrated DDR across the peace continuum since the late 1980s. During the past 25 years, the UN has amassed considerable experience and knowledge of the coordination, design, implementation, financing, and monitoring and evaluation of DDR programmes. Over the past 10 years the UN has also gained similar experience in the use of DDR-related tools and reintegration support when the preconditions for DDR programmes are not present. Integrated DDR originates from various parts of the UN\u2019s core mandate, as set out in the Charter of the UN, particularly the areas of peace and security, economic and social development, human rights and humanitarian assistance. UN departments, agencies, programmes and funds are uniquely able to support integrated DDR processes both in mission settings, where peace operations are in place, and in non-mission settings, where there is no peace operation present, provid- ing breadth of scope, neutrality, impartiality and capacity-building through the shar- ing of technical DDR skills.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dde73fdd-b77d-4813-b3a6-827d910b377e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 14, + "Paragraph": "DDR in mission settings Mission settings are those situations in which peace operations are deployed through peacekeeping operations, political missions and good offices engagements, by the UN or a regional organization. Where peace operations are mandated to manage and re- solve an actual or potential conflict within States, DDR is generally mandated through a UN Security Council resolution, ideally within the framework of a ceasefire and/or a comprehensive peace agreement with specific provisions on DDR. Decision-making and accountability rest with the Special Representative or Special Envoy of the Secretary- General. Missions with a DDR mandate usually include a dedicated DDR component to support the design and implementation of a nationally led DDR programme. When the preconditions for a DDR programme are not in place, the Security Council may also mandate UN peace operations to implement specific DDR-related tools, such as CVR, to support the creation of a conducive environment for a DDR programme. These types of DDR-related tools can also be designed and implemented to contribute to other mandated priorities such as the protection of civilians, stabilization and support to the overall peace process. Integrated disarmament, demobilization (including reinsertion) and other DDR- related tools (except those covering reintegration support) fall under the responsibility of the UN peace operation\u2019s DDR component. The reintegration component will be supported and/or undertaken in an integrated manner very often by relevant agencies, funds and programmes within the United Nations Country Team (UNCT), as well as international financial institutions, under the leadership of the Deputy Special Repre- sentative of the Secretary-General (DSRSG)/Humanitarian Coordinator (HC)/Resident Coordinator (RC), who will designate lead agency(ies). The DDR mission component shall therefore work in close coordination with the UNCT. The UN DSRSG/HC/RC should establish a UN DDR Working Group at the country level with co-chairs to be defined, as appropriate, to coordinate the contributions of the UNCT and international financial institutions to integrated DDR. While UN military and police contingents provide a minimum level of security, support from other mission components may include communications, gender equal- ity, women\u2019s empowerment, and youth and child protection. With regard to special political missions and good offices engagements, DDR implementation structures and partnerships may need to be adjusted to the mission\u2019s composition as the mandate evolves. This adjustment can take account of needs at the country level, most notably with regard to the size and capacities of the DDR component, uniformed personnel and other relevant technical expertise. In the case of peace operations, the Security Council mandate also forms the basis for assessed funding for all activities related to disarmament, demobilization (including reinsertion) and DDR-related tools (except those covering reintegration support). Fund- raising for reintegration assistance and other activities needs to be conducted by Govern- ments and/or regional organizations with support from United Nations peace operations, agencies, funds and programmes, bilateral donors and relevant international financial institutions. Regarding special political missions and good offices engagements, support to integrated DDR planning and implementation may require extra-budgetary funding in the form of voluntary contributions and the establishment of alternative financial management structures, such as a dedicated multi-donor trust fund.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6c728ae1-40af-4c28-9f2d-c569a4f0ab55", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 15, + "Paragraph": "DDR in non-mission settings Non-mission settings are those situations in which there is no peace operation deployed to a country, either through peacekeeping, political missions or good offices engage- ments, by either the UN or regional organizations. In countries where there is no United Nations peace operation mandated by the Security Council, UN DDR support will be provided when either a national Government and/or UN RC requests assistance. The disarmament and demobilization components of a DDR programme will be undertaken by national institutions with advice and technical support from relevant UN departments, agencies, programmes and funds, the UNCT, regional organizations and bilateral actors. The reintegration component will be supported and/or imple- mented by the UNCT and relevant international financial institutions in an integrated manner. When the preconditions for a DDR programme are not in place, the imple- mentation of specific DDR-related tools, such as CVR, and/or reintegration support, may be considered. The alignment of CVR initiatives in non-mission contexts with reintegration assistance is essential. Decision-making and accountability for UN-supported DDR rest, in this context, with the UN RC, who will identify one or more UN lead agency(ies) in the UNCT based on in-country capacity and expertise. The UN RC should establish a UN DDR Working Group co-chaired by the lead agency(ies) at the country level to coordinate the contribution of the UNCT to integrated DDR, including on issues related to gender equality, women\u2019s empowerment, youth and child protection, and support to persons with disabilities. DDR programmes, DDR-related tools and reintegration support, where applicable, will require the allocation of national budgets and/or the mobilization of voluntary contributions, including through the establishment of financial management struc- tures, such as a dedicated multi-donor trust fund or catalytic funding provided by the Peacebuilding Fund (PBF).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "822b368b-e76c-406a-bf3f-ab7d7ade236a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "When is DDR appropriate? Violent conflicts do not always completely cease when a political settlement is reached or a peace agreement is signed. There remains a real danger that violence will flare up again during the immediate post-conflict period, because putting right the political, security, social and economic problems and other root causes of war is a long-term project. Furthermore, peace operations are often mandated in contexts where an agree- ment is yet to be reached or where a peace process is yet to be initiated or is only par- tially initiated. In non-mission contexts, requests from the Government for the UN to support DDR are made either when ceasefires are reached or when a peace agreement or a comprehensive peace agreement is signed. This is why practitioners should decide whether DDR programmes, DDR-related tools and/or reintegration support constitute the most appropriate response to a particular situation. A DDR programme will only be appropriate when the preconditions referred to above are in place.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "00fae480-a90a-41db-8e0a-4f35e0e98c76", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 16, + "Paragraph": "When the preconditions for a DDR programme are not in place When the preconditions for a DDR programme are not in place, the reintegration of for- mer combatants and persons formerly associated with armed forces and groups may be supported in line with the sustaining peace approach, i.e., during conflict escala- tion, conflict and post-conflict. Furthermore, practitioners may choose from a menu of DDR-related tools. (See table above.) Unlike DDR programmes, DDR-related tools are not designed to implement the terms of a peace agreement. Instead, when the preconditions for a DDR-programme are not in place, DDR-related tools may be used in line with United Nations Securi- ty Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementa- tion and monitoring of DDR-related tools.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9f3ee80d-5a78-4a8c-b538-05635c4f7000", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 16, + "Paragraph": "When the preconditions for a DDR programme are in place When the preconditions are in place, the UN may support the establishment of DDR programmes. Other DDR-related tools can also be implemented before, after or along- side DDR programmes, as complementary measures (see table above). The UN may employ or support a variety of DDR programming elements adapted to suit each context. These may include: The disbanding of armed groups: Governments may request assistance to disband armed groups. The establishment of a DDR programme is agreed to and defined within a ceasefire, the ending of hostilities or a comprehensive peace agreement. Trust and commitment by the parties to the implementation of an agreement and minimum conditions of security are essential for the success of a DDR programme. Administratively, there is little difference between DDR programmes for armed forces and armed groups. Both may require the full registration of weapons and personnel, followed by the collection of information, referral and counselling that are needed before effective reintegration programmes can be put in place. Level 2 Concepts, Policy and Strategy of the IDDRS \uf06e The UN Approach to DDR\t17\t2.10 \uf06e 18\tIntegrated Disarmament, Demobilization and Reintegration Standards \uf06e 19 November 2019 The rightsizing of armed forces or police: Governments may request assistance to downsize or restructure their armies or police and supporting institutional infra- structure (salaries, benefits, basic services, etc.). Such processes contribute to secu- rity sector reform (SSR) (see IDDRS 6.10 on DDR and Security Sector Reform). DDR practitioners should work in close collaboration with SSR experts while planning reintegration support to former members of armed forces. The repatriation of foreign combatants and associated groups: Considering the regional dimensions of conflict, Governments may agree to assistance to repatri- ation. DDR programmes may need to become involved in repatriating national combatants and their civilian family members, as well as children associated with armed forces and groups who may have crossed an international border. Such re- patriation needs to be in accordance with the principle of non-refoulement, as set out in international humanitarian, human rights and refugee law (see IDDRS 2.11 on The Legal Framework for UN DDR). While DDR programmes are primarily used to address the security challenges posed by members of armed forces and groups, provisions should be made for the in- clusion of other groups (including civilians and youth at risk), depending on resources and local circumstances. National institutions should be supported to determine the policy on direct benefits and reintegration assistance during a DDR programme. Civilians and civil society groups in communities to which members of the above- mentioned groups will return should be consulted during the planning and design phase of DDR programmes, as well as informed and supported in order to assist them to receive ex-combatants and their dependents/families during the reintegration phase.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bbea7e76-f756-4c83-b61a-314f65be663b", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "Who is DDR for? Five categories of people should be taken into consideration, as participants and ben- eficiaries, in integrated DDR processes. This will depend on the context, and the par- ticular combination of DDR programmes, DDR-related tools, and reintegration support in use: members of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); abductees/victims; dependents/families; civilian returnees/\u2019self-demobilized\u2019; community members. Consideration should be given to addressing the specific needs of women, youth, chil- dren, persons with disabilities, and persons with chronic illnesses in each of these five categories. National actors, such as Governments, political parties, the military, signatory and non-signatory armed groups, non-governmental organizations, civil society organiza- tions and the media are all stakeholders in integrated DDR processes along with inter- national actors.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "45b5a6bd-3179-4b29-a66d-e8a3545e7b74", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "What principles guide UN DDR? All UN DDR programmes, DDR-related tools, and reintegration support shall be voluntary, people-centred, gender-responsive and inclusive, conflict sensitive, context specific, flexible, accountable and transparent, nationally and locally owned, regionally supported, integrated and well planned.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "efdd9a60-d9a4-42dd-ac4b-d706d88affb8", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 15, + "Paragraph": "Voluntary Integrated DDR shall be a voluntary process for both armed forces and groups, both as organizations and individual (ex)combatants. Groups and individuals shall not be coerced to participate. This principle has become even more important, but contested, in contemporary conflict environments where the participation of some combatants in nationally, locally, or privately supported efforts is arguably involuntary, for example as a result of their capture on the battlefield or their being forced into a DDR pro- gramme under duress. Integrated DDR should not be conflated with military operations or counter-insur- gency strategies. Although the UN does not generally engage in detention operations and DDR has traditionally been a voluntary process, the nature of conflict environ- ments and the growing potential for overlap with State-led efforts countering violent extremism and counter-terrorism has increased the likelihood that the UN and other actors engaging in DDR may be faced with detention-related dilemmas. DDR practi- tioners should therefore pay particular attention to such questions when operating in complex conflict environments and seek legal advice if confronted with surrendered or captured combatants in overt military operations, or if there are any concerns regard- ing the voluntariness of persons participating in DDR. They should also be aware of requirements contained in Chapter VII resolutions of the Security Council that, among other things, call for Member States to bring terrorists to justice and oblige national authorities to ensure the prosecution of suspected terrorists as appropriate (see IDDRS 2.11 on The Legal Framework for UN DDR).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "435cddc3-35ff-4c9f-b642-4ac13dce9777", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 21, + "Paragraph": "Criteria for participation/eligibility Determining the criteria that define which people are eligible to participate in inte- grated DDR, particularly in situations where mainly armed groups are involved, is vital if aims are to be achieved. In DDR programmes, eligibility criteria must be care- fully designed and ready for use in the disarmament and demobilization stages. DDR programmes are aimed at combatants and persons associated with armed forces and groups. These groups may be composed of different categories of people who have participated in the conflict within armed forces and groups such as abductees/victims or dependents/families. In instances where the preconditions for a DDR programme are not in place, or where combatants are ineligible for DDR programmes, DDR-related tools, such as CVR, or support to reintegration may be provided. Determination of eligibility for these ac- tivities should be undertaken by relevant national and local authorities with support from UN missions, agencies, programmes and funds as appropriate. Armed groups in particular have a variety of structures \u2013 rebel groups, armed gangs, etc. In order to provide the best assistance, operational and implementation strategies that deal with their specific needs should be adopted.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "1a9ce742-31fb-4359-9381-13dff428a686", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 22, + "Paragraph": "Unconditional release and protection of children The unconditional and immediate release of children associated with armed forces and groups must be a priority, irrespective of the status of peace negotiations and/ or the development of DDR programmes and DDR-related tools. UN-supported DDR interventions shall not be allowed to encourage the recruitment of children into armed forces and groups in any way, especially by commanders trying to increase the number of combatants entering DDR programmes in order to profit from assistance provided to combatants. When DDR programmes, DDR-related tools and reintegration support are implemented, children shall be separated from armed forces and groups and hand- ed over to child protection agencies. Children will then be supported to demobilize and reintegrate into families and communities (see IDDRS 5.30 on Children and DDR). Only child protection practitioners should interview children associated with armed forces and groups.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "53d71875-2bb8-4e0b-9a19-8dc22992985f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 22, + "Paragraph": "8.2.3 In accordance with standards and principles of humanitarian assistance UN-supported integrated DDR processes promote the human rights of participants and the communities into which they integrate, and are conducted in line with inter- national humanitarian, human rights and refugee law. The UN and its partners should be neutral, transparent and impartial, and should not take sides in any conflict or in political, racial, religious or ideological controversies, or give preferential treatment to different parties taking part in DDR. Neutrality within a rights-based approach should not, however, prevent UN per- sonnel from protesting against or documenting human rights violations or taking some other action (e.g., advocacy, simple presence, political steps, local negotiations, etc.) to prevent them. Under the UN\u2019s Human Rights Due Diligence Policy (HRDDP), provid- ers of support have a responsibility to monitor the related human rights context, to suspend support under certain circumstances and to en- gage with national authorities towards address- ing violations. Where one or more parties or in- dividuals violate agreements and undertakings,", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dd5651ef-143c-47d0-845b-a1d219d7f135", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "Neutrality within a rights-based approach should not prevent UN personnel from protesting against or documenting human rights violations. the UN can take appropriate remedial action and/or exclude individuals from DDR. Humanitarian aid must be delivered to all those who are suffering, according to their need, and human rights provide the framework on which an assessment of needs is based. However, mechanisms must also be designed to prevent those who have com- mitted violations of human rights from going unpunished by ensuring that DDR pro- grammes, related tools and reintegration support do not operate as a reward system for the worst violators. In many post-conflict situations, there is often a tension between reconciliation and justice, but efforts must be made to ensure that serious violations of human rights and humanitarian law by ex-combatants and their supporters are dealt with through appropriate national and international legal and/or transitional justice mechanisms. Children released from their association with armed forces and groups who have committed war crimes and mass violations of human rights may also be criminally re- sponsible under national law, though any criminal responsibility must be in accordance with international juvenile justice standards and the International Criminal Court Policy on Children (see IDDRS 5.20 on Youth and DDR, and IDDRS 5.30 on Children and DDR). UN-supported DDR interventions should take into consideration local and inter- national mechanisms for achieving justice and accountability, as well as respect for the rule of law, including any accountability, justice and reconciliation mechanisms that may be established with respect to crimes committed in a particular Member State. These can take various forms, depending on the specificities of the local context.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "41c4d275-806f-46e0-824a-4a38111a68bf", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 23, + "Paragraph": "Gender responsive and inclusive Like men and boys, women and girls are likely to have played many different roles in armed forces and groups, as fighters, supporters, wives or sex slaves, messengers and cooks. The design and implementation of integrated DDR processes should aim to ad- dress the specific needs of women and girls, as well as men and boys, taking into account these different experiences, roles, capacities and responsibilities acquired during and after conflicts. Specific measures should be put in place to ensure the equal and mean- ingful participation of women in all stages of integrated DDR \u2013 from the negotiation of DDR provisions in peace agreements and the establishment of national institutions, to CVR and community-based reintegration support (see IDDRS 5.10 on Gender and DDR). Non-discrimination and fair and equitable treatment are core principles in both the design and implementation of integrated DDR processes. The eligibility criteria for DDR shall not discriminate against individuals on the basis of sex, age, gender identity, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associations. Furthermore, the opportunities/benefits that eligible ex-combatants have access to when participating in a particular DDR process shall not discriminate against individuals on the basis of their former affiliation with a particular armed force or group. It is likely there will be a need to address potential \u2018spoilers\u2019, e.g., by negotiating \u2018special packages\u2019 for commanders in order to secure their buy-in and to ensure that they allow combatants to participate. This political compromise must be carefully ne- gotiated on a case-by-case basis. Furthermore, the inclusion of youth at risk and other non-combatants should also be seen as a measure helping to prevent future recruitment.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d9bc78f9-f506-4865-ba2c-386df68845cd", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 23, + "Paragraph": "Conflict sensitive \u2018Do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. No false promises shall be made; and, ultimately, no individual or community should be made less secure by the return of ex-combatants or the presence of UN peacekeeping, police or civilian personnel. The establishment of UN-supported prevention, protection and monitoring mechanisms (including systems for ensuring access to justice and police protection, etc.) is essential to prevent and punish sexual and gender-based violence, harassment and intimidation, or any other violation of human rights. It is particularly important to consider \u2018do no harm\u2019 when assessing the reinsertion and reintegration options for female fighters or women and girls associated with armed forces and groups.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "444e78eb-140d-4d58-9bda-5cec7d03542d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 24, + "Paragraph": "Context specific Integrated DDR needs to be flexible and context-specific in order to address national, regional, and global realities. DDR should consider the nature of armed groups, con- flict drivers, peace opportunities, gender dynamics, and community dynamics. All UN or UN-supported DDR interventions shall be designed to take local conditions and needs into account. The IDDRS provide DDR practitioners with comprehensive guid- ance and analytical tools for the planning and design of DDR rather than a standard formula that is applicable to every situation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1f2c83de-6a06-47dc-a6ba-08f8e374981e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 24, + "Paragraph": "Flexible, sustainable and transparent funding arrangements Due to the complex and dynamic nature of integrated DDR processes, flexible and long-term funding arrangements are essential. The multidimensional nature of DDR requires an initial investment of staff and funds for planning and programming, as well as accessible and sustainable sources of funding throughout the different phases of implementation. Funding mechanisms, including trust funds, pooled funding, etc., and the criteria established for the use of funds shall be flexible. Past experience has shown that assigning funds exclusively for specific DDR components (e.g., disarma- ment and demobilization) or expenditures (e.g., logistics and equipment) sets up an artificial distinction between the different elements of a DDR programme and makes it difficult to implement the programme in an integrated, flexible and dynamic way. The importance of planning and initiating reinsertion and reintegration support ac- tivities at the start of a DDR programme has become increasingly evident, so adequate financing for reintegration needs to be secured in advance. This should help to prevent delays or gaps in implementation that could threaten or undermine the programme\u2019s credibility and viability (see IDDRS 3.41 on Finance and Budgeting).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c94a7114-0059-4d2b-94cf-99bde53fa396", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 24, + "Paragraph": "Accountability and transparency In order to build confidence and ensure legitimacy, and to justify financial and tech- nical support by international actors, DDR programmes, DDR-related tools and reinte- gration support are, from the very beginning, predicated on the principles of accounta- bility and transparency. Post-conflict stabilization and the establishment of immediate security are the overall goals of DDR, but integrated DDR also takes place in a wider re- covery and reconstruction framework. While both short-term and long-term strategies should be developed in the planning phase, due to the dynamic and volatile conflict and post-conflict context, interventions must be flexible and adaptable. The UN aims to establish transparent mechanisms for the independent monitor- ing, oversight and evaluation of integrated DDR and its financing mechanisms. It also attempts to create an environment in which all stakeholders understand and are accountable for achieving broad objectives and implementing the details of integrated DDR processes, even if circumstances change. Many types of accountability are needed to ensure transparency, including: the commitment of the national authorities and the parties to a peace agreement or political framework to honour the agreements they have signed and implement DDR programmes in good faith; the accountability and transparency of all relevant actors in contexts where the preconditions for DDR are not in place and alternative DDR-related tools and rein- tegration support measures are implemented; the accountability of national and international implementing agencies to the five categories of persons who can become participants in DDR for the professional and timely carrying out of activities and delivery of services; the adherence of all parts of the UN system (missions, departments, agencies, pro- grammes and funds) to IDDRS principles and guidance for designing and imple- menting DDR; the commitment of Member States and bilateral partners to provide timely politi- cal and financial support to integrated DDR processes. Although DDR practitioners should always aim to meet core commitments, setbacks and unforeseen events should be expected. Flexibility and contingency planning are therefore needed. It is essential to establish realistic goals and make reasonable prom- ises to those involved, and to explain setbacks to stakeholders and participants in order to maintain their confidence and cooperation.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "ec58e058-59fb-40d4-83e2-954ec1288c43", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 25, + "Paragraph": "8.7. Nationally and locally owned Ensuring national and local ownership is crucial to the success of integrated DDR. Na- tional ownership ensures that DDR programmes, DDR-related tools and reintegration support are informed by an understanding of the local context, the dynamics of the conflict, and the dynamics between ex-combatants and community members. Even when receiving financial and technical assistance from partners, it is the responsibility of national Governments to ensure coordination between government ministries and local government, between Government and national civil society, and between Gov- ernment and external partners. In contexts where national capacity is weak, a Government exerts national own- ership by building the capacity of its national institutions, by contributing to the inte- grated DDR process and by creating links to other peacebuilding and development ini- tiatives. This is particularly important in the case of reintegration support, as measures should be designed as part of national development and recovery efforts. National and local capacity must be systematically developed, as follows: Creating national and local institutional capacity: A primary role of the UN is to supply technical assistance, training and financial support to national authorities to establish credible, capable, representative and sustainable national institutions and programmes. Such assistance should be based on an assessment and under- standing of the particular context and the type of DDR activities to be implement- ed, including commitments to gender equality. Finding implementing partners: Besides national institutions, civil society is a key partner in DDR. The technical capacity and expertise of civil society groups will often need to be strengthened, particularly when conflict has diminished hu- man and financial resources. Particular attention should be paid to supporting the capacity development of women\u2019s civil society groups to ensure equal participa- tion as partners in DDR. Doing so will help to create a sustainable environment for DDR and to ensure its long-term success. Employing local communities and authorities: Local communities and authorities play an important role in ensuring the sustainability of DDR, particularly in sup- port of reintegration and the implementation of DDR-related tools. Therefore, their capacities for strategic planning and programme and/or financial management must be strengthened. Local authorities and populations, ex-combatants and their dependents/families, and women and girls formerly associated with armed forces and groups shall all be involved in the planning, implementation and monitoring of integrated DDR processes. This is to ensure that the needs of both individuals and the community are addressed. Increased local ownership builds support for reintegration and reconciliation efforts and supports other local peacebuilding and recovery processes. As the above list shows, national ownership involves more than just central gov- ernment leadership: it includes the participation of a broad range of State and non-State actors at national, provincial and local levels. Within the IDDRS framework, the UN supports the development of a national DDR strategy, not only by representatives of the various parties to the conflict, but also by civil society; and it encourages the active participation of affected communities and groups, particularly those formerly mar- ginalized in DDR and post-conflict reconstruction processes, such as representatives of women\u2019s groups, children\u2019s advocates, people from minority communities, and per- sons with disabilities and chronic illness. In supporting national institutions, the UN, along with key international and re- gional actors, can help to ensure broad national ownership, adherence to international principles, credibility, transparency and accountability (see IDDRS 3.30 on National Institutions for DDR).", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d5458cb5-2f8b-4b29-a8f1-72641cb4a0bb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 26, + "Paragraph": "8.8 Regionally supported The regional causes of conflict and the political, social and economic interrelationships among neighbouring States sharing insecure borders will present challenges in the implementation of DDR. Managing repatriation and the cross-border movement of weapons and armed groups requires careful coordination among UN agencies and regional organizations supporting DDR, both in the countries concerned and in neigh- bouring countries where there may be spill-over effects. The return of foreign former combatants and mercenaries may be a particular problem and will require a separate strategy (see IDDRS 5.40 on Cross-Border Population Movements). Most notably, UN actors need to engage regional stakeholders in order to foster a conducive regional environment, including support from neighbouring countries, for DDR interventions addressing armed groups operating on foreign national territory and with regional structures.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f0704d8f-39ae-4279-998b-582a9b9965b6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 8, + "Paragraph": "Integrated From the earliest assessment phase and throughout all stages of strategy development, planning and implementation, it is essential to encourage integration and unity of effort within the UN system and with national players. It is also important to coordinate the participation of international partners so as to achieve common objectives. Joint assess- ments and programming are key to ensuring that DDR programmes in both mission and non-mission contexts are implemented in an integrated manner. DDR practitioners should also strive for an integrated approach in contexts where DDR programmes are used in combination with DDR-related tools, and in settings where the preconditions for DDR programmes are absent (see IDDRS 3.10 on Integrated Planning).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6a3355cd-a33a-4e0a-8b08-0fedf1a60c3e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 27, + "Paragraph": "Safety and security Given that DDR is aimed at groups who are a security risk and is implemented in fragile security environments, both risks and operational security and safety proto- cols should be decided on before the planning and implementation of activities. These should include the security and safety needs of UN and partner agency personnel in- volved in DDR operations, DDR participants (who will have many different needs) and members of local communities. Security and other services must be provided either by UN military and/or a UN police component or national police and security forces. Security concerns should be included in operational plans, and clear criteria, in line with the UN Programme Criticality Framework, should be established for starting, delaying, suspending or cancelling activities and/or operations, should security risks be too high.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "58749023-5d2c-4c5c-b178-3b7f20fcfeab", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 27, + "Paragraph": "Planning: assessment, design, monitoring and evaluation Integrated DDR processes shall be designed on the basis of detailed quantitative and qualitative data. Supporting information management systems should ensure that this data remains up to date, accurate and accessible. In the planning stages, information is gathered on the location of armed forces and groups, the demographics of their mem- bers (grouped according to sex and age), their weapons stocks, and the political and conflict dynamics at national and local levels. Surveys of national and local labour market conditions and reintegration opportunities should be undertaken. Regularly updating this information, as well as population-specific surveys (e.g., with women associated with armed forces and groups), allows for DDR to adapt to changing circumstances (also see IDDRS 3.10 on Integrated Planning, IDDRS 3.20 on DDR Programme Design and IDDRS 3.30 on National Institutions for DDR). Internal and external monitoring and evaluation mechanisms must be established from the start to strengthen accountability within integrated DDR, ensure quality in the implementation and delivery of DDR activities and services, and allow for flexi- bility and adaptation of strategies and activities when required. Monitoring and eval- uation should be based on an integrated approach to metrics, and produce lessons learned and best practices that will influence the further development of IDDRS policy and practice (see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "686364a2-dcd4-42b4-b32a-da7bde5a4960", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 27, + "Paragraph": "Public information and community sensitization Public information, awareness-raising and community sensitization ensure that affected communities and participants receive accurate information on DDR procedures and benefits. The sharing of information helps generate broad public support and national ownership, and at the same time manages expectations and encourages behavioural change, the demilitarization of hearts and minds, and reconciliation between ex-com- batants and war-affected communities. Public information strategies should be drawn up and implemented as early as possible. Messages should be appropriately tailored for different audiences, considering gender and cultural dimensions in design and de- livery, and should employ many different and locally appropriate means of communi- cation (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7d6b6141-f14a-4391-a1c9-0c0fd2fbfaf2", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 28, + "Paragraph": "Transition and exit strategies While DDR programmes last for a specific period of time that includes the immediate post-conflict situation and the transition and early recovery periods, other aspects of DDR may need to be continued, albeit in a different form. DDR-related tools can be initiated after DDR programmes, such as when the disarmament of armed groups is followed by community-based weapons and ammunition management. Reintegration assistance also becomes an integral part of recovery and development. To ensure a smooth transition from one stage to another, an exit strategy should be defined as soon as possible, and should focus on how integrated DDR will seamlessly transform into broader and/or longer-term development strategies, such as security sector reform, violence prevention, socio-economic recovery, national reconciliation, peacebuilding, gender equality and poverty reduction.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-2.11-The-Legal-Framework-For-UNDDR.json b/src/Static/data/json/IDDRS-2.11-The-Legal-Framework-For-UNDDR.json new file mode 100644 index 0000000..5d991f0 --- /dev/null +++ b/src/Static/data/json/IDDRS-2.11-The-Legal-Framework-For-UNDDR.json @@ -0,0 +1,363 @@ +[ + { + "ID": "c224ff43-3b04-426c-af94-9b40029f12af", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": null, + "Paragraph": "Summary A variety of actors in the UN system support DDR processes within national contexts. In carrying out DDR, these actors are governed by their respective constituent instru- ments, by the specific mandates provided by their respective governing bodies, and by applicable internal rules, policies and procedures. DDR is also undertaken within the context of a broader international legal frame- work, which contains rights and obligations that may be of relevance for the imple- mentation of DDR tasks. This framework includes international humanitarian law, international human rights law, international criminal law, and international refugee law, as well as the international counter-terrorism and arms control frameworks. UN system-supported DDR processes should be implemented in a manner that ensures that the relevant rights and obligations under the international legal framework are respected.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f53faeca-b2d5-471c-8b56-3adfcdc76f48", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": null, + "Paragraph": "Module scope and objectives This module aims to provide an overview of the international legal framework that may be relevant to UN system-supported DDR processes. Unless otherwise stated, in this module, the term \u201cDDR practitioners\u201d refers only to DDR practitioners within the UN system, namely the United Nations (UN), its subsidiary organs, country offices and field missions, as well as UN specialized agencies and related organizations. This module is intended to sensitize DDR practitioners within the UN system to the legal issues that should be considered, and that may arise, when developing or im- plementing a DDR process. This sensitization is done so that DDR practitioners will be conscious of when to reach out to an appropriate, competent legal office to seek legal advice. Each section thus contains guiding principles and some red lines, where they exist, to highlight issues that DDR practitioners should be aware of. Guiding principles seek to provide direction, while red lines indicate boundaries that DDR practitioners should not cross. If it is possible that a red line might be crossed, or if a red line has been crossed inadvertently, legal advice should be sought immediately. This module should not be relied upon to the exclusion of legal advice in a specific case or context. In situations of doubt with regard to potential legal issues, or to the application or interpretation of a particular legal rule, advice should always be sought from the competent legal office of the relevant entity, who may, when and as appropri- ate, refer it to their relevant legal office at headquarters.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8e5cc8ba-24d9-4f0e-bfb4-6b2b25237777", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 3, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in ID- DRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardiza- tion (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \t\u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. This Module does not adopt the terminology of \u2018must\u2019. For the purposes of this Module, the word \u2018shall\u2019 is used to indicate an obligation, arising from a variety of sources1 , which has to be complied with by the DDR practitioner.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "02870d57-424a-4f80-8bf4-e5b86a3f3874", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 3, + "Paragraph": "Introduction In carrying out DDR processes, UN system actors are governed by their constituent instruments and by the specific mandates given to them by their respective governing bodies. In general, a mandate authorizes and tasks an actor to carry out specific func- tions. Mandates are the main points of reference for UN-supported DDR processes that will determine the scope of activities that can be undertaken. In the case of the UN and its subsidiary organs, including its funds and programmes, the primary source of all mandates is the Charter of the United Nations (the \u2018Charter\u2019). Specific man- dates are further established through the adop- tion of decisions by the Organization\u2019s principal organs in accordance with their authority under the Charter. Both the General Assembly and the Security Council have the competency to provide DDR mandates as measures related to the main- tenance of international peace and security. For the funds and programmes, mandates are further provided by the decisions of their executive boards. Specialized agencies and related organizations of the UN system similarly operate in host States in accordance with the terms of their constituent instruments and the decisions of their deliberative bodies or other competent organs. In addition to mandates, UN system actors are governed by their internal rules, policies and procedures. DDR processes are also undertaken in the context of a broader international le- gal framework and should be implemented in a manner that ensures that the rele- vant rights and obligations under that broader legal framework are respected. Peace agreements, where they exist, are also crucial in informing the implementation of DDR practitioners\u2019 mandates by providing a framework for the DDR process. Peace agree- ments can take a variety of forms, ranging from local-level agreements to national-level ceasefires and Comprehensive Peace Agreements (see IDDRS 2.20 on The Politics of DDR). Following the conclusion of an agreement, a DDR policy document may also be developed by the Government and the signatory armed groups, often with UN support. Where the UN DDR mandate consists of providing support to national DDR efforts and makes reference to the peace agreement, DDR practitioners will typically work within the framework of the peace agreement and the DDR policy document. DDR processes can also be implemented in contexts where there are no peace agreements (see IDDRS 2.10 on The UN Approach to DDR). Therefore, if there is no such framework in place, UN system DDR practitioners will have to rely solely on their own entity\u2019s mandate in order to determine their role and responsibilities, as well as the applicable basic principles. Finally, to facilitate DDR processes, UN system actors conclude project and technical agreements with the States in which they operate, which also provide a framework. They also enter into agreements with the host State to regulate their status, privileges and immunities and those of their personnel.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "34c524c1-059d-470e-a042-a5a6f30508ab", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 4, + "Paragraph": "General guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of UN supported DDR processes. In addition to these principles, the following general guiding principles related specifically to the legal framework apply when carrying out DDR processes. Abide by the applicable legal framework. The applicable legal framework should be a core consideration at all stages, when drafting, designing, executing and eval- uating DDR processes. Failure to abide by the applicable legal framework may result in consequences for the UN entity involved and the UN more generally, including possible liabilities. It may also lead to personal accountability for the DDR practitioner(s) involved. Know your mandate. DDR practitioners should be familiar with the source and scope of their mandate. To the extent that their involvement in the DDR process requires coordination and/or cooperation with other UN system actors, they should also know the respective roles and responsibilities of those other actors. If a peace agreement exists, it should be one of the first documents that DDR practitioners consult to understand the framework in which they will carry out the DDR process. Develop a concept of operations (CONOPS). DDR practitioners should have a com- mon, agreed approach in order to ensure coherence amongst UN system-supported DDR processes and coordination among the various UN system actors that are con- ducting DDR in a particular context. This can be achieved through a written CON- OPS, developed in consultation, as necessary, with the relevant headquarters. The CONOPS can also be adjusted to include the legal obligations of the UN system actor. Develop operation-specific standard operating procedures (SOPs) or guide- lines for DDR. Consistent with the CONOPS, DDR practitioners should consider developing operation-specific SOPs or guidelines. These may address, for instance, standards for cooperation with criminal justice and other accountability process- es, measures for controlling access to DDR encampments or other installations, measures for the safe handling and destruction of weapons and ammunition, and other relevant issues. They may also include references to, and explanations of, the applicable legal standards. Include legal considerations in all relevant project documents. In general, legal considerations should be integrated and addressed, as appropriate, in all relevant written project documents, including those agreed with the host State. Seek legal advice. As a general matter, DDR practitioners should seek legal advice when they are in doubt as to whether a situation raises legal concerns. In particular, DDR practitioners should seek advice when they foresee new elements or signif- icant changes in their DDR processes (e.g., when a new type of activity or new partners are involved). It is important to know where, and how, such advice may be requested and obtained. Familiarity with the legal office in-country and having clear channels of communication for seeking expeditious advice from headquarters are critical.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2ed78381-1492-46ae-8f75-1b017e00dec1", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 5, + "Paragraph": "Mandates As noted above, mandates are the main points of reference for UN-supported DDR processes. The mandate will determine what, when and how DDR processes can be supported or implemented. There are various sources of a UN actor\u2019s mandate to assist DDR processes. For UN peace operations, which are subsidiary organs of the Security Council, the mandate is found in the applicable Security Council resolution. Certain UN funds and programmes also have explicit mandates addressing DDR. In the absence of explicit, specific DDR-related provisions within their mandates, these UN funds and programmes should conduct any activity related to DDR processes in accordance with the principles and objectives in their general mandates. In addition, a number of specialized agen- cies and related organizations are mandated to conduct activities related to DDR processes. These entities often cooperate with UN peace operations, funds and programmes within their respective mandates in order to ensure a common approach to and coherency of their activities. Where a peace agreement exists, it may address the roles and responsibilities of DDR practitioners, both domestic and international, the basic principles applicable to the DDR pro- cess, the strategic approach, institutional mech- anisms, timeframes and eligibility criteria. The peace agreement would thus provide guidance to DDR practitioners as to the implementation of their DDR mandate, where they are tasked with providing support to national DDR efforts undertaken pursuant to the peace agreement. It is important to remember, however, that while peace agree- ments may provide a framework for and guide the implementation of the DDR process, they do not provide the actual mandate to undertake such activities for UN system actors. It is the reference to the peace agreement in the practitioner\u2019s DDR mandate that makes the peace agreement (and the accompanying DDR policy document) relevant. As mentioned above, the authority to carry out DDR processes is established in a UN system actor\u2019s constitutive instrument and/or in a decision by the actor\u2019s governing organ. In countries where no peace agreement exists, there may be no overarching frame- work for the DDR process, which could result in a lack of clarity regarding objectives, activities, coordination and strategy. In such cases, the fall-back for DDR practitioners would be to rely solely on the mandate of their own entity that is applicable in the relevant State to determine their role in the DDR process, how to coordinate with other actors and the activities they may undertake. If a particular mandate includes assistance to the national authorities in the devel- opment and implementation of a DDR process, the UN system actor concerned may, in accordance with its mandate, enter into a technical agreement with the host State on logistical and operational coordination and cooperation. The technical agreement may, as necessary, integrate elements from the peace agreement, if one exists. DDR mandates may also include provisions that tie the development and imple- mentation of DDR processes to other ongoing conflict and post-conflict initiatives, including ones concerning transitional justice (TJ). Many UN system entities operating in post-conflict situations have simultaneous DDR and TJ mandates. The overlap of TJ measures with DDR processes can create tension but may also contribute towards achieving the long-term shared objectives of reconciliation and peace. It is thus crucial that UN-supported DDR processes have a clear and coherent relationship with any TJ measures ongoing within the country (see IDDRS 6.20 on DDR and Transitional Justice). Specific guiding principles DDR practitioners should be familiar with the most recent documents establishing the mandate to conduct DDR processes, specifically, the source and scope of that mandate. When starting a new form of activity related to the DDR process, DDR practitioners should seek legal advice if there is doubt as to whether this new form of activity is authorized under the mandate of their particular entity. When starting a new form of activity related to the DDR process, DDR practitioners should ensure coordination with other relevant initiatives. Peace agreements, in themselves, do not provide UN entities with a mandate to support DDR. It is the reference to the peace agreement in the mandate of the DDR practitioner\u2019s particular entity that makes the peace agreement (and the accompa- nying DDR policy document) relevant. This mandate may set boundaries regarding what DDR practitioners can do or how they go about their jobs.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3a2dde33-6d80-4b45-bb49-7706a4e70a09", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 7, + "Paragraph": "Normative legal framework DDR processes are also undertaken within the context of a broader international legal framework of rights and obligations that may be relevant to their implementation. This includes, in particular, international humanitarian law, international human rights law, international criminal law, international refugee law, and the international counter- terrorism and arms control frameworks. For the purpose of this module, this interna- tional legal framework is referred to as the \u2018normative legal framework\u2019. UN-supported DDR processes should be implemented so as to ensure that the relevant rights and obligations under that normative legal framework are respected.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1627dc9c-ea17-471a-b407-7d04ce16e4a9", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 7, + "Paragraph": "International humanitarian law International humanitarian law (IHL) applies to situations of armed conflict and regulates the conduct of armed forces and non-State armed groups in such situations. It seeks to limit the effects of armed conflict, mainly by protecting persons who are not or are no longer participating in the hostilities and by regulating the means and methods of warfare. Among other things, IHL sets out the obligations of parties to armed conflicts to protect civilians, injured and sick persons, and persons deprived of their liberty for reasons related to armed conflicts. The main sources of IHL are the Geneva Conventions (1949) and the two Additional Protocols (1977).2 There are two types of armed conflict under IHL: (1) international armed conflict (an armed conflict between States) and (2) non-international armed conflict (an armed conflict between a State\u2019s armed forces and an organized armed group, or between organized armed groups). Each type of armed conflict is governed by a distinct set of rules, though the differences between the two regimes have diminished as the law governing non-international armed conflict has developed. Article 3, which is contained in all four Geneva Conventions (often referred to as \u2018common article 3\u2019), applies to non-international armed conflicts and establishes fun- damental rules from which no derogation is permitted (i.e., States cannot suspend the performance of their obligations under common article 3). It requires, among other things, humane treatment for all persons in enemy hands, without any adverse distinc- tion. It also specifically prohibits murder; mutilation; torture; cruel, humiliating and degrading treatment; the taking of hostages and unfair trial. Serious violations of IHL (e.g., murder, rape, torture, arbitrary deprivation of liberty and unlawful confinement) in an international or non-international armed conflict situation may constitute war crimes. Issues relating to the possible commission of such crimes (together with crimes against humanity and genocide), and the prosecution of such criminals, are of particular concern when assisting Member States in the development of eligibility criteria for DDR processes (see section 4.2.4, as well as IDDRS 6.20 on DDR and Transitional Justice). The UN is not a party to the international legal instruments comprising IHL. However, the Secretary-General has confirmed that certain fundamental principles and rules of IHL are applicable to UN forces when, in situations of armed conflict, they are actively engaged as combatants, to the extent and for the duration of their engage- ment (ST/SGB/1999/13, sect. 1.1). In the context of DDR processes assisted by UN peacekeeping operations, IHL rules regarding deprivation of liberty are normally not applicable to activities under- taken within DDR processes. This is based on the fact that participation in DDR is voluntary \u2014 in other words, persons enrol in DDR processes of their own accord and stay in DDR processes voluntarily (see IDDRS 2.10 on The UN Approach to DDR). They are not deprived of their liberty, and IHL rules concerning detention or internment do not apply. In the event that there are doubts as to whether a person is in fact enrolled in DDR voluntarily, this issue should immediately be brought to the attention of the com- petent legal office, and advice should be sought. Separately, legal advice should also be sought if the DDR practitioner is of the view that detention is in fact taking place. IHL may nevertheless apply to the wider context within which a DDR process is situated. For example, when national authorities, for whatever purpose, wish to take into custody persons enrolled in DDR processes, the UN peacekeeping operation or other UN system actor concerned should take measures to ensure that those national authorities will treat the persons concerned in accordance with their obligations under IHL, and international human rights and refugee laws, where applicable. Specific guiding principles DDR practitioners should be conscious of the conditions of DDR facilities, particu- larly with respect to the voluntariness of the presence and involvement of DDR participants and beneficiaries (see IDDRS 3.10 on Participants, Beneficiaries and Partners). DDR practitioners should be conscious of the fact that IHL may apply to the wider context within which DDR processes are situated. Safeguards should be put in place to ensure compliance with IHL and international human rights and refugee laws by the host State authorities. Red lines Participation in DDR processes shall be voluntary at all times. DDR participants and beneficiaries are not detained, interned or otherwise deprived of their liberty. DDR practitioners should seek legal advice if there are concerns about the volun- tariness of involvement in DDR processes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "235efd1c-ca30-4c0e-b6d0-8911c257a3be", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 8, + "Paragraph": "International human rights law Article 55 of the UN Charter calls on the Organization to promote universal respect for, and observance of, human rights and fundamental freedoms for all, based on the recogni- tion of the dignity, worth and equal rights of all. In their work, all UN personnel have a re- sponsibility to ensure that human rights are promoted, respected, protected and advanced. Accordingly, UN DDR practitioners have a duty in carrying out their work to promote and respect the human rights of all DDR participants and beneficiaries. The main sources of international human rights law are: The Universal Declaration of Human Rights (1948) (UDHR) was proclaimed by the UN General Assembly in Paris on 10 December 1948 as a common standard of achievement for all peoples and all nations. It set out, for the first time, fundamen- tal human rights to be universally protected.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "74ee1805-dece-47e6-bf98-cff39330b221", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": null, + "Paragraph": "The International Covenant on Civil and Political Rights (1966) (ICCPR) estab- lishes a range of civil and political rights, including rights of due process and equality before the law, freedom of movement and association, freedom of religion and political opinion, and the right to liberty and security of person. The International Covenant on Economic, Social and Cultural Rights (1966) (ICESCR) establishes the rights of individuals and duties of States to provide for the basic needs of all persons, including access to employment, education and health care. The Convention against Torture and Other Cruel, Inhuman or Degrading Treat- ment or Punishment (1984) (CAT) establishes that torture is prohibited under all circumstances, including in times of war, internal political instability or other public emergency, and regardless of the orders of superiors or public authorities. The Convention on the Rights of the Child (1989) (CRC) and the Optional Proto- col to the CRC on Involvement of Children in Armed Conflict (2000) recognize the special status of children and reconfirm their rights, as well as States\u2019 duty to protect children in a number of specific settings, including during armed conflict. The Optional Protocol is particularly relevant to the DDR context, as it concerns the rights of children involved in armed conflict.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "780cf03d-0f91-47eb-ba32-2d66785ef946", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 9, + "Paragraph": "The Convention on the Elimination of All Forms of Discrimination against Women (1979) (CEDAW) defines what constitutes discrimination against women and sets up an agenda for national action to end it. CEDAW provides the basis for realizing equality between women and men through ensuring women\u2019s equal access to, and equal opportunities in, political and public life \u2013 including the right to vote and to stand for election \u2013 as well as education, health and employment. States parties agree to take all appropriate measures, including legislation and temporary special measures, so that women can enjoy all their human rights and fundamental freedoms. General recommendation No. 30 on women in conflict prevention, conflict and post-conflict situations, issued by the CEDAW Commit- tee in 2013, specifically recommends that States parties, among others, ensure (a) women\u2019s participation in all stages of DDR processes; (b) that DDR processes spe- cifically target female combatants and women and girls associated with armed groups and that barriers to their equitable participation are addressed; (c) that mental health and psychosocial support as well as other support services are pro- vided to them; and (d) that DDR processes specifically address women\u2019s distinct needs in order to provide age and gender-specific DDR support. The Convention on the Rights of Persons with Disabilities (2006) (CRPD) clarifies and qualifies how all categories of rights apply to persons with disabilities and identifies areas where adaptations have to be made for persons with disabilities to effectively exercise their rights, and where protection of rights must be reinforced. This is also relevant for people with psychosocial, intellectual and cognitive disa- bilities, and is a key legislative framework addressing their human rights including the right to quality services and the right to community integration. The International Convention for the Protection of All Persons from Enforced Disappearance (2006) (ICPPED) establishes that enforced disappearances are pro- hibited under all circumstances, including in times of war or a threat of war, inter- nal political instability or other public emergency. The following rights enshrined in these instruments are particularly relevant, as they often arise within the DDR context, especially with regard to the treatment of per- sons located in DDR facilities (including but not limited to encampments): Right to life (article 3 of UDHR; article 6 of ICCPR; article 6 of CRC; article 10 of CRPD); Right to freedom from torture or other cruel, inhuman or degrading treatment or punishment (article 5 of UDHR; article 7 of ICCPR; article 2 of CAT; article 37(a) of CRC; article 15 of CRPD); Right to liberty and security of person, which includes the prohibition of arbitrary arrest or detention (article 9 of UDHR; article 9(1) of ICCPR; article 37 of CRC); Right to fair trial (article 10 of UDHR; article 9 of ICCPR; article 40(2)(iii) of CRC); Right to be free from discrimination (article 2 of UDHR; articles 2 and 24 of ICCPR; article 2 of CRC; article 2 of CEDAW; article 5 of CRPD); and Rights of the child, including considering the best interests of the child (article 3 of CRC; article 7(2) of CRPD), and protection from all forms of physical or mental violence, injury or abuse, neglect or negligent treatment, maltreatment or exploitation (article 19 of CRC). While the UN is not a party to the above instruments, they provide relevant standards to guide its operations. Accordingly, the above rights should be tak- en into consideration when developing UN-supported DDR processes, when supporting host State DDR processes and when national authorities, for what- ever purpose, wish to take into custody persons enrolled in DDR processes, in order to ensure that the rights of DDR participants and beneficiaries are promoted and respected at all times. The application and interpretation of inter- national human rights law must also be viewed in light of the voluntary nature of DDR process- es. The participants and beneficiaries of DDR processes shall not be held against their will or subjected to other deprivations of their liber- ty and security of their persons. They shall be treated at all times in accordance with interna- tional human rights law norms and standards. Special protections may also apply with respect to members of particularly vulnerable groups, including women, children and persons with disabilities. Specifically, with regard to women participating in DDR processes, Security Council resolution 1325 (2000) on women and peace and security calls on all actors involved, when negoti- ating and implementing peace agreements, to adopt a gender perspective, including the special needs of women and girls during repatriation and resettlement and for rehabilitation, reintegration and post-conflict reconstruction (para. 8(a)), and encourages all those involved in the planning for DDR to consider the different needs of female and male ex-combatants and to take into account the needs of their dependents. In all, DDR processes should be gender-responsive, and there should be equal access for and participation of women at all stages (see IDDRS 5.10 on Women, Gender and DDR). Specific guiding principles DDR practitioners should be aware of the international human rights instruments that guide the UN in supporting DDR processes. DDR practitioners should be aware of the relevant domestic legislation that pro- vides for the rights and freedoms of DDR participants and beneficiaries within the Member State where the DDR process is being undertaken. DDR practitioners shall take the necessary precautions, special measures or actions to protect and ensure the human rights of DDR participants and beneficiaries. DDR practitioners shall report and seek legal advice in the event that they witness any violations of human rights by national authorities within a UN-supported DDR facility. Red lines DDR practitioners shall not facilitate any violations of human rights by national authorities within a UN-supported DDR facility.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "62aa1242-d903-4802-a7e9-948c08787d72", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 11, + "Paragraph": "International refugee law and internally displaced persons International refugee law International refugee law serves as another part of the normative international legal framework that may be of relevance to UN-supported DDR processes. This area of law may be particularly relevant when DDR processes include a repatriation component or are open to foreign nationals (see IDDRS 5.40 on Cross-Border Population Movements). The Convention Relating to the Status of Refugees (the \u20181951 Convention\u2019) estab- lishes the rights and duties of refugees, and the obligations of States to such persons, including the prohibition of forced repatriation of asylum seekers and refugees (the principle of non-refoulement). While the UN is not a party to the 1951 Convention, it provides relevant standards to guide its operations (ST/SGB/1999/13). The Convention is both a status- and rights-based instrument and is founded upon a number of funda- mental principles, most notably non-discrimination, non-penalization for illegal entry or presence3 , and non-refoulement. A refugee is a person who is outside his or her country of nationality or habitual residence; has a well-founded fear of being persecuted because of his or her race, religion, nationality, membership of a particular social group or political opinion; and is unable or unwilling to avail himself or herself of the protection of that country, or to return there, for fear of persecution.4 However, articles 1C to 1F of the 1951 Convention provide for circumstances in which it shall not apply to a person who would otherwise fall within the general defi- nition of a refugee. In the context of situations involving DDR processes, article 1F is of particular relevance, in that it stipulates that the provisions of the 1951 Convention shall not apply to any person with respect to whom there are serious reasons for con- sidering that he or she has: committed a crime against peace, a war crime or a crime against humanity, as defined in relevant international instruments; committed a serious non-political crime outside the country of refuge prior to the person\u2019s admission to that country as a refugee; or been guilty of acts contrary to the purposes and principles of the UN. Asylum means the granting by a State of protection on its territory to individu- als fleeing another country owing to persecution, armed conflict or violence. Military activity is incompatible with the concept of asylum. Persons who pursue military activ- ities in a country of asylum cannot be asylum seekers or refugees. It is thus important to ensure that refugee camps/settlements are protected from militarization and the presence of fighters or combatants. During emergency situations, particularly when people are fleeing armed con- flict, refugee flows may occur simultaneously or mixed with combatants or fighters. It is thus important that combatants or fighters are identified and separated. Once sep- arated from the refugee population, combatants and fighters may enter into a DDR process, if available. Former combatants or fighters who have been verified to have genuinely and per- manently renounced military activities may seek asylum. Participation in a DDR pro- gramme provides a verifiable process through which the former combatant or fighter genuinely and permanently renounces military activities. Other types of DDR processes may also provide this verification, as long as there is a formal process through which a combatant becomes an ex-combatant (see IDDRS 4.20 on Demobilization). DDR practitioners should also take into consideration that civilian family mem- bers of participants in DDR processes may be refugees or asylum seekers, and efforts must be in place to consider family unity during, for example, repatriation. The principle of non-refoulement The principle of non-refoulement (article 33 of the 1951 Convention) is so fundamental that no reservations or derogations may be made to it. The principle also has the status of international customary law, which means that it is binding on all States, including those that are not party to the 1951 Convention. It provides that no State shall expel or return (\u2018refouler\u2019) a refugee against his or her will, in any manner whatsoever, to a territory where he or she fears with good reason that his or her life or freedom would be threatened, or where he or she would be subject to persecution on account of his/her race, religion, nationality, membership of a particular social group or political opinion. The prohibition of refoulement under international refugee law is applicable to any form of forcible removal, including deportation, expulsion, extradition, informal transfer or \u2018renditions\u2019, and non-admission at the border, as per article 33(1) of the 1951 Convention, which refers to expulsion or return (refoulement) \u201cin any manner what- soever\u201d. This has been interpreted to include not only a return to the country of origin or, in the case of a stateless person, the country of former habitual residence, but also to any other place where a person has reason to fear threats to his or her life or freedom related to one or more of the grounds set out in the 1951 Convention, or from where the person risks being sent to a territory where he or she faces such a risk.5 In the context of DDR, this means that a former fighter/combatant who has re- nounced military activity and been admitted to the asylum procedure is protected from refoulement by virtue of Article 33(1) of the 1951 Convention and international customary law. This precludes the forced repatriation of this individual unless and until his or her asylum claim is finally rejected. Under Article 33(2) of the 1951 Convention, an exception to the non-refoulement obliga- tion in international refugee law exists where (1) there are reasonable grounds for regarding the refugee as a danger to the security of the country in which the refugee is located; or (2) the refugee, having been convicted of a particularly serious crime by final judgment, consti- tutes a danger to the community of the country where the refugee is located. While the principle of non-refoulement originates in international refugee law, it has also become an integral part of international human rights law. This principle is ex- plicitly contained in Article 3 of the CAT, and has also been interpreted by the Human Rights Committee to be part of Articles 6 (right to life) and 7 (right to be free from tor- ture or other cruel, inhuman or degrading treatment or punishment) of the ICCPR.6 In international human rights law, the principle applies without exception, and there is no provision similar to Article 33(2) of the 1951 Convention (see above). Accordingly, States are bound not to transfer any individual to another State, if this would expose him or her to a real risk of being subjected to arbitrary deprivation of life, or torture or other cruel, inhuman or degrading treatment or punishment, or enforced disappearance. As such, the principle of non-refoulement under international human rights law also applies to active fighters/combatants even though these individuals are not con- sidered refugees. Internally displaced persons Relatedly, a body of rules has also been developed with respect to internally displaced persons (IDPs). In addition to relevant human rights law principles, the \u201cGuiding Prin- ciples on Internal Displacement\u201d (E/CN.4/1998/53/Add.2) provide a framework for the protection and assistance of IDPs. The Guiding Principles contain practical guidance to the UN in its protection of IDPs, as well as serve as an instrument for public policy education and awareness-raising. Substantively, the Guiding Principles address the specific needs of IDPs worldwide. They identify rights and guarantees relevant to the protection of persons from forced displacement and to their protection and assistance during displacement as well as during return or reintegration. Specific guiding principles DDR practitioners should be aware of international refugee law and how it relates to UN DDR processes. DDR practitioners should be aware of the principle of non-refoulement, which exists under both international human rights law and international refugee law, though with different conditions. DDR practitioners should be aware of the relevant domestic legislation that pro- vides for the rights and freedoms of DDR participants and beneficiaries within the Member State where the DDR process is carried out. Red lines DDR practitioners shall not facilitate any violations of international refugee law by national authorities. In particular, they shall not facilitate any violations of the principle of non-refoulement including for DDR participants and beneficiaries who may not qualify as refugees.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "52511f07-fb86-4b4e-b852-58c6378f80c9", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 13, + "Paragraph": "Accountability mechanisms at the national and international levels In general, it is the duty of every State to exercise its criminal jurisdiction over those responsible for international crimes.7 DDR practitioners should be aware of local and international mechanisms for achieving justice and accountability for international crimes. These include any judi- cial or non-judicial mechanisms that may be established with respect to international crimes committed in the host State. These can take various forms, depending on the specificities of local context. National courts usually have jurisdiction over all crimes committed within the State\u2019s territory, even when there are international criminal accountability mechanisms with complementary or concurrent jurisdiction over the same crimes. In terms of international criminal law, the Rome Statute of the International Criminal Court (ICC) establishes individual and command responsibility under international law for (1) genocide;8 (2) crimes against humanity, which include, inter alia, murder, enslavement, deportation or forcible transfer of population, imprisonment, torture, rape, sexual slavery, enforced prostitution, forced pregnancy, enforced sterilization or \u201cany other form of sexual violence of comparable gravity\u201d, when committed as part of a widespread or systematic attack against the civilian population;9 (3) war crimes, which similarly include sexual violence;10 and (4) the crime of aggression.11 The law governing international crimes is also developed further by other sources of international law (e.g., treaties12 and cus- tomary international law13 ). Separately, there have been a number of international criminal tribunals14 and \u2018hybrid\u2019 international tribunals15 addressing crimes committed in specific situations. These tribunals have contributed to the extensive development of substantive and pro- cedural international criminal law. Recently, there have also been a number of initiatives to provide degrees of inter- national support to domestic courts or tribunals that are established in States to try international law crimes.16 Various other transitional justice initiatives may also apply, depending on the context. The UN opposes the application of the death penalty, including with respect to persons convicted of international crimes. The UN also discourages the extradition or deportation of a person where there is genuine risk that the death penalty may be imposed unless credible and reliable assurances are obtained that the death penalty will not be sought or imposed and, if imposed, will not be carried out but commuted. The UN\u2019s own criminal tribunals, UN-assisted criminal tribunals and the ICC are not empowered to impose capital punishment on any convicted person, regardless of the seriousness of the crime(s) of which he or she has been convicted. UN investigative mechanisms mandated to share information with national courts and tribunals should only do so with jurisdictions that respect international human rights law and standards, including the right to a fair trial, and shall only do so for use in criminal proceedings in which capital punishment will not be sought, imposed or carried out. Accountability mechanisms, together with DDR processes, form part of the toolkit for advancing peace processes. However, there is often tension, whether real or per- ceived, between peace, on the one hand, and justice and accountability, on the other. A prominent example is the issuance of amnesties or assurances of non-prosecution in exchange for participation in DDR processes, which could hinder the achievement of justice-related aims. It is a long-established policy that the UN will not endorse provisions in a transi- tional justice process that include amnesties for genocide, war crimes, crimes against humanity and gross violations of human rights (see IDDRS 6.20 on DDR and Transi- tional Justice). With regard to the issue of terrorist offences, see section 4.2.6. The Security Council, in establishing a DDR mandate, may address the tension between transitional justice and DDR, by excluding combatants suspected of genocide, war crimes, crimes against humanity or abuses of human rights from participation in DDR processes. Specific guiding principles DDR practitioners should be aware that it is the primary duty of States to prosecute those responsible for international crimes. DDR practitioners should be aware of a parallel UN or national mandate, if any, for transitional justice in the State. DDR practitioners should be aware of ongoing international and/or national accountability and/or transitional justice mechanisms or processes. When planning for and conducting DDR processes, DDR practitioners should consult with UN human rights, accountability and/or transitional justice advisers to ensure coordination, where such mechanisms or processes exist. DDR practitioners should incorporate screening mechanisms and criteria into DDR processes for adults to identify suspected perpetrators of international crimes and exclude them from DDR processes. Suspected perpetrators should be reported to the competent national authorities. Legal advice should be sought, if possible, beforehand. If the potential DDR participant is under 18 years old, DDR practitioners should refer to IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR for additional guidance.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "74482800-1e34-4d8b-9980-d186629c7f0d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 15, + "Paragraph": "UN Security Council sanctions regimes DDR processes may be impacted by Security Council sanctions regimes. In particular, the fact that an individual or a group has been designated by a Security Council Sanctions Committee may have implications for their eligibility to participate in DDR processes, or their potential integration into the national security sector (see IDDRS 6.10 on DDR and Security Sector Reform). Sanctions pertaining to the counter-terrorism framework are discussed further in section 4.2.6(iii). For additional information on the Security Council sanction regimes, please refer to: https://www.un.org/securitycouncil/sanctions/information Specific guiding principles DDR practitioners should be aware of any relevant sanctions regime, if any, target- ing individuals, groups and entities in the State in which they are operating. DDR practitioners shall take particular note of arms embargo measures, which may restrict the options available for the disposal of arms, ammunition and related material collected during the implementation of disarmament or transitional weapons and ammunition management activities (see IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Management). DDR practitioners should be aware of individuals, groups and entities listed by the Security Council under its sanctions regimes, in particular when conducting screening for eligibility for participation in DDR processes, or when providing any financial support to DDR participants.17 Legal advice should be sought if in doubt.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc0250ba-97d1-48a8-8fff-81272980afc2", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 16, + "Paragraph": "International counter-terrorism framework The requirement \u2018to bring terrorists to justice\u2019 The international counter-terrorism framework is comprised of relevant Security Council resolutions, as well as 19 international counter-terrorism instruments,18 which have been widely ratified by UN Member States. That framework must be implemented in compliance with other relevant international standards, particularly international hu- manitarian law, international refugee law and international human rights law. Under the Security Council resolutions, Member States are required, among other things, to: Ensure that any person who participates in the preparation or perpetration of terrorist acts or in supporting terrorist acts is brought to justice; Ensure that such terrorist acts are established as serious criminal offences in domestic laws and regulations and that the punishment duly reflects the serious- ness of such terrorist acts,19 including with respect to: Financing, planning, preparation or perpetration of terrorist acts or support of these acts and Offences related to the travel of foreign terrorist fighters.20 Under the Security Council resolutions, Member States are also exhorted to establish criminal responsibility for: Terrorist acts intended to destroy critical infrastructure21 and Trafficking in persons by terrorist organizations and individuals.22 While there is no universally agreed definition of terrorism, several of the 19 interna- tional counter-terrorism instruments define certain terrorist acts and/or offences with clarity and precision, including offences related to the financing of terrorism, the taking of hostages and terrorist bombing.23 The Member State\u2019s obligation to \u2018bring terrorists to justice\u2019 is triggered and it shall consider whether a prosecution is warranted when there are reasonable grounds to believe that a group or individual has committed a terrorist offence set out in: A Security Council resolution or One of the 19 international counter-terrorism instruments to which a Member State is a party. DDR practitioners should be aware of the fact that their host State has an interna- tional legal obligation to comply with relevant Security Council resolutions on counter- terrorism (that is, those that the Security Council has adopted in binding terms) and the international counter-terrorism instruments to which it is a party. Of particular relevance to the DDR practitioner is the fact that under Security Council resolutions, with respect to suspected terrorists (as defined above), Member States are further called upon to: Develop and implement comprehensive and tailored prosecution, rehabilitation, and reintegration strategies and protocols, in line with their obligations under in- ternational law, including with respect to returning and relocating foreign terror- ist fighters and their spouses and children who accompany them, and to address their suitability for rehabilitation.24 There are two main scenarios where DDR processes and the international counter- terrorism legal framework may intersect: In addition to the traditional concerns with regard to screening out for prosecu- tion persons suspected of war crimes, crimes against humanity or genocide, the DDR practitioner, in advising and assisting a Member State, should also be aware of the Member State\u2019s obligations under the international counter-terrorism legal framework, and remind them of those obligations, if need be. Specific criteria, as appropriate and applicable to the context and Member States, should be incorpo- rated into screening for DDR processes to identify and disqualify persons who have committed or are reasonably believed to have committed a terrorist act, or who are identified as clearly associated with a Security Council-designated terrorist organization. Although DDR programmes are not appropriate for persons associated with such organizations (see section below), lessons learned and programming experience from DDR programmes may be very relevant to the design, implementation and support to programmes to prosecute, rehabilitate and reintegrate these persons. As general guidance, for terrorist groups designated by the Security Council, Member States are required to develop prosecution, rehabilitation and reintegration strategies. Terrorist suspects, including foreign terrorist fighters and their family members, and victims should be the subject of such strategies, which should be both tailored to specific categories and comprehensive.25 The initial step is to establish a clear and coherent screening process to determine the main profile of a person who is in the custody of authorities or under the responsibility of authorities, in order to recommend particular treatment, including further investigation or prosecution, or immediate entry into and participation in a rehabilitation and/or reintegration programme. The criteria to be applied during the screening process shall comply with international human rights norms and standards and conform to other applicable regimes, such as interna- tional humanitarian law and the international counter-terrorism framework. Not all persons will be prosecuted as a result of this screening, but the screening process shall address the question of whether or not a person should be prosecuted. In this respect, the term \u2018screening\u2019 should be distinguished from usage in the context of a DDR programme, where screening refers to the process of ensuring that a person who met previously agreed eligibility criteria will be registered in the programme. Additional UN guidance with regard to the prosecution, rehabilitation and reinte- gration of foreign terrorist fighters can be found, inter alia, in the Madrid Guiding Principles and their December 2018 Addendum (S/2018/1177). The Madrid Guiding Principles were adopted by the Security Council (S/2015/939) in December 2015 with the aim of becoming a practical tool for use by Member States in their efforts to combat terrorism and to stem the flow of foreign terrorist fighters in accordance with resolu- tion 2178 (2014). Specific guiding principles DDR practitioners should be aware that the host State has legal obligations under Security Council resolutions and/or international counter-terrorism instruments to ensure that terrorists are brought to justice. DDR practitioners shall incorporate proper screening mechanisms and criteria into DDR processes to identify suspected terrorists. Depending on the circumstances, the terrorist organization they are associated with and the terrorist offences committed, it may not be appropriate for suspected terrorists to participate in DDR processes. Children associated with such groups should be treated in accordance with the standards set out in IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR. Sanctions relating to terrorism, including from Security Council committees The Security Council Committee concerning ISIL (Da\u2019esh), Al-Qaida and associated individuals, groups, undertakings and entities was established pursuant to Resolution 1267 (1999), 1989 (2011) and 2253 (2015). It is the only sanctions committee of the Security Council that lists individuals and groups for their association with terrorism. In addition, the Security Council may list individuals or groups for other reasons26 and impose sanctions on them. These individuals or groups may also be described as \u2018terrorist groups\u2019 in separate Council resolutions.27 In this regard, a specific set of issues arises vis-\u00e0-vis engaging groups or individ- uals in a DDR process when the group(s) or individual(s) are (a) listed as a terrorist group, individual or organization by the Security Council (either via the Da\u2019esh-Al Qaida Committee or another relevant Committee); and/or (b) listed as a terrorist group, individual or organization by a Member State for that Member State, by way of domestic legislation. Member States\u2019 listings may be premised upon an expansive definition of terrorism that may go beyond the terrorist acts described in either Security Council resolutions 1373 (2001) or 2178 (2014) or in any of the 19 international counter-terrorism instruments. DDR practitioners should be aware that donor states may also designate groups as terrorists through such \u2018national listings\u2019. Moreover, as a consequence of Security Council, regional or national listings, donor states in particular may have constraints placed upon them as a result of their national legislation that could impact what support (financial or otherwise) they can provide. Specific guiding principles DDR practitioners should be aware of whether or not a group, entity or individual has been listed by the Security Council Committee pursuant to resolutions 1267 (1999), 1989 (2011) and 2253 (2015) and should consult their legal adviser on the im- plications this may have for planning or implementation of DDR processes. DDR practitioners should be aware of whether or not a group, entity or individual has been designated a terrorist organization or individual by a regional organ- ization or Member State (including the host State or donor country) and should consult their legal adviser on the implications this may have on the planning and implementation of DDR processes. DDR practitioners should consult with their legal adviser upon applicable host State national legislation targeting the provision of support to listed terrorist groups, including its possible criminalization. Red line Groups or individuals listed by the Security Council, as well as perpetrators or sus- pected perpetrators of terrorist acts cannot be participants in DDR programmes. However, in compliance with relevant international standards and within the proper framework, support may be provided by DDR practitioners, using DDR-related tools, to persons associated to Security Council\u2013designated terrorist organizations.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "85d3c0dd-cd29-4bd6-ad44-b414782575f7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 19, + "Paragraph": "International arms control framework The international arms control framework is made up of a number of international legal instruments that set out obligations for Member States with regard to a range of arms con- trol issues relevant to DDR activities, including the management, storage, security, trans- fer and disposal of arms, ammunition and related material. These instruments include: The Protocol against the Illicit Manufacturing of and Trafficking in Fire- arms, their Parts and Components and Ammunition, supplementing the UN Convention against Transnational Organized Crime, is the only legally binding instrument at the global level to counter the illicit manufacturing of and trafficking in firearms, their parts and components and ammunition. It provides a framework for States to control and regulate licit arms and arms flows, prevent their diversion into illegal circulation, and facilitate the investigation and prosecution of related offences without hampering legitimate transfers. The Arms Trade Treaty regulates the international trade in conventional arms, ranging from small arms to battle tanks, combat aircraft and warships. The Convention on Certain Conventional Weapons Which May Be Deemed to Be Excessively Injurious or to Have Indiscriminate Effects as amended on 21 December 2001 bans or restricts the use of specific types of weapons that are considered to cause unnecessary or unjustifiable suffering to combatants or to affect civilians indiscriminately. The Convention on the Prohibition of the Use, Stockpiling, Production and Trans- fer of Anti-Personnel Mines and on their Destruction prohibits the development, production, stockpiling, transfer and use of anti-personnel mines. The Convention on Cluster Munitions prohibits all use, production, transfer and stockpiling of cluster munitions. It also establishes a framework for cooperation and assistance to ensure adequate support to survivors and their communities, clear- ance of contaminated areas, risk reduction education and destruction of stockpiles. Specific guiding principles In addition to relevant national legislation, DDR practitioners should be aware of the international and regional legal instruments that the State in which the DDR practitioner is operating has ratified, and how these may impact the design of disarmament and transitional weapons and ammunition management activities (see IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Management).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c5d292dd-288e-4d84-8177-0ef1968dc631", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 20, + "Paragraph": "Member States\u2019 international obligations and domestic legal framework A Member State\u2019s international obligations are usually translated into domestic legislation. A Member State\u2019s domestic legislation has effect within the territory of that Member State. In order to determine a DDR participant\u2019s immediate rights and freedoms in the Member State, and/or to find the domestic basis, within the State, to ensure the pro- tection of the rights of DDR participants and beneficiaries, the DDR practitioner will have to look towards the specific context of the Member State, i.e., the Member State\u2019s international obligations and its domestic legislation. This is despite the fact that the UN DDR practitioner is guided by the international law principles set out above in the conduct of the Organization\u2019s activities, or that the DDR practitioner may wish to engage with Member States to ensure that their treatment of DDR participants and beneficiaries is in line with their international obligations. For example, the following issues would usually be addressed in a Member State\u2019s domestic legislation, in particular its constitution and criminal procedure code: Length of pre-trial detention; Due process rights; Protections and procedure with regard to investigations and prosecutions of alleged crimes, and Criminal penalties. Similarly, in order to understand how the Member State has decided to implement the above Security Council resolutions on counter-terrorism, as well as relevant resolu- tions on organized crimes, DDR practitioners will have to look towards domestic legis- lation, in particular, to understand the acts that would constitute crimes in the Member State in which they work. For the purposes of DDR, it is thus important to have an understanding of the Member State that the UN DDR practitioner is operating in, in particular, 1) the Mem- ber State\u2019s international obligations, including the international conventions that the Member State has signed and ratified; and 2) the relevant protections provided for under the Member State\u2019s domestic legislation that the UN DDR practitioner can rely upon to help ensure the protection of DDR participants\u2019 rights and freedoms. Specific guiding principles DDR practitioners should be aware of the international conventions that the Member State, in which they operate, has signed and ratified. DDR practitioners should be aware of domestic legislation that may address the rights and freedoms of DDR participants and beneficiaries, as well as limit their participation in DDR processes, in particular the penal code, criminal procedure code and counter-terrorism legislation. DDR practitioners may wish to rely on domestic legislation to secure the rights and freedoms of DDR participants and beneficiaries within the Member State, as appropriate and necessary. Red line DDR practitioners shall respect the national laws of the host State. If there is a con- cern regarding the obligation to respect a host State\u2019s law and the activities of the DDR practitioner, the DDR practitioner should seek legal advice.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6d0e334b-44f3-428a-a38d-6010171aeead", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 21, + "Paragraph": "Internal rules, policies and procedures The UN has adopted a number of internal rules, policies and procedures. Other actors in the broader UN system also have similar rules, policies and procedures. Such rules, policies and procedures are binding internally. They typically also serve to signal to external parties the UN system\u2019s expectations regarding the behav- iour of those to whom it provides assistance. The general guide for UN-supported DDR processes is the UN IDDRS. Other internal documents that may be relevant to DDR processes include the following: The UN Human Rights Due Diligence Policy (HRDDP) (A/67/775-S/2013/110) governs the UN\u2019s provision of support to non-UN security forces, which could include the provision of support to national DDR processes if such processes or their programmes are being implemented by security forces, or if there is any re- patriation of DDR participants and beneficiaries by security forces. The HRDDP requires UN entities that are contemplating providing support to non-UN security forces to take certain due diligence, compliance and monitoring measures with the aim of ensuring that receiving entities do not commit grave violations of inter- national humanitarian law, international human rights law or refugee law. Where there are substantial grounds for believing that grave violations are occurring or have occurred, involving security forces to which support is being provided by the UN, the UN shall intercede with the competent authorities to bring such violations to an end and/or seek accountability in respect of them. For further information, please refer to the Guidance Note for the implementation of the HRDDP.28 The Secretary-General issued a bulletin on special measures for protection from sexual exploitation and sexual abuse (ST/SGB/2003/13), which applies to the staff of all UN departments, programmes, funds and agencies, prohibiting them from committing acts of sexual exploitation and sexual abuse. In line with the UN Staff Regulations and Rules, sexual exploitation and sexual abuse constitute acts of serious misconduct and are therefore grounds for disciplinary measures, including dismissal. Further, UN staff are obliged to create and maintain an environment that prevents sexual exploitation and sexual abuse. Managers at all levels have a particular responsibility to support and develop systems that maintain this environment. Specific guiding principles DDR practitioners should be aware of and follow relevant internal rules, policies and procedures at all stages of the DDR process. DDR practitioners in management positions shall ensure that team members are kept up to date on the most recent developments in the internal rules, policies and procedures, and that managers and team members complete all necessary train- ing and courses. Red line Violation of the UN internal rules, policies and procedures could lead to harm to the UN, and may lead to disciplinary measures for DDR practitioners.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f9306516-36bd-4d66-b96e-c2006a067dcb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 22, + "Paragraph": "Status, privileges and immunities Under the Charter, the Organization enjoys \u201cin the territory of each of its Members such privileges and immunities as are necessary for the fulfilment of its purposes\u201d. Similarly, UN officials \u201cenjoy such privileges as are necessary for the independent exercise of their functions in connexion with the Organization\u201d.29 These Charter provisions have been implemented in a detailed manner by the Convention on the Privileges and Immuni- ties of the United Nations (the \u2018General Convention\u2019). The privileges and immunities of the specialized agencies are separately set out in the Convention on the Privileges and Immunities of the Specialized Agencies (\u2018Specialized Agencies Convention\u2019). Furthermore, privileges and immunities of the UN and its personnel may be incor- porated in mission-specific Status-of-Forces Agreements (SOFAs) and Status-of-Mission Agreements (SOMAs), Standard Basic Assistance Agreements (SBAAs), host country agreements and other similar agreements concluded between the Organization and host States to allow for the secure and effective implementation of mandated activities. It is thus essential for each DDR practitioner to refer to the relevant agreement to determine the privileges and immunities of any relevant UN system actor, as well as its personnel. As regards military personnel of national contingents assigned to a UN peace- keeping operation\u2019s military component, the SOFA addresses the legal status and obligations of the military component in the host country, including with respect to privileges and immunities and criminal jurisdiction. Unlike other categories of UN personnel, military members of military contingents are subject to the exclusive juris- diction of their sending States in respect of any criminal offences they may commit in the host country. Under the SOFA or SOMA, the UN peacekeeping operation or mission, as well as its members, shall respect all local laws and regulations. Similarly, under the model host country agreement for the establishment of an office, it is the duty of all persons enjoying the privileges and immunities accorded by the agreement to respect the laws and regulations of the host country. Specifically, the General Convention provides certain privileges and immunities to the UN, as well as its officials, for the fulfilment of the Organization\u2019s purposes and to allow its personnel to conduct their official duties without interference. The Specialized Agencies Convention similarly provides for specialized agencies and their personnel. With the exception of certain high-ranking officials, who enjoy privileges and immunities similar to those accorded to diplomatic envoys by international law, UN officials and experts on mission, as well as officials of specialized agencies, enjoy im- munity from legal process in the host State only in respect of official functions (\u2018func- tional immunity\u2019). This means that they are immune from legal proceedings only with respect to acts done in their official capacity. They do not enjoy immunity in respect of private acts. Immunity is granted to UN and specialized agencies personnel in the interests of their organization and not for the personal benefit of the individuals concerned. The Secretary-General has the right and the duty to waive the immunity of any UN person- nel where, in the opinion of the Secretary-General, the immunity would impede the course of justice and can be waived without prejudice to the interests of the UN.30 Each specialized agency shall have the right and the duty to waive the immunity of their officials on the same grounds.31 The General Convention and the Specialized Agencies Convention also provide that the premises of the UN and the specialized agencies are inviolable, and that the property, assets and archives of the UN and the specialized agencies, wherever located and by whomsoever held, shall be immune from search, requisition, confiscation, ex- propriation and any other form of interference, whether by executive, administrative, judicial or legislative action. The archives of the UN and the specialized agencies, and in general all documents belonging to it or held by it, shall be inviolable wherever located. Any request for the production or disclosure of UN documents that are not in the public domain should be by way of an official request from the Member State Government to the UN. The sharing of information is regulated by the Secretary-General\u2019s bulletin on information sensitivity, classification, and handling (ST/SGB/2007/6). Pursuant to this bulletin, documents that are responsive to a request shall be reviewed to verify that they do not contain any sensitive information. \u2018Sensitive\u2019 information means: Information received from third parties under an expectation of confidentiality; Information whose disclosure would endanger the safety or security of any indi- vidual; Information whose disclosure would violate any individual\u2019s rights or invade his or her privacy; Information whose disclosure is likely to endanger the security of a Member State; Information whose disclosure would prejudice the security or proper conduct of any operation or activity of the UN; Information covered by legal privilege or relating to internal investigations; Information whose disclosure would undermine the Organization\u2019s free and independent decision-making process; Commercial information whose disclosure would harm either the financial inter- ests of the UN or those of other parties involved; or Other kinds of information, which because of their content or the circumstances of their creation or communication shall be deemed confidential. Documents that contain sensitive information should be redacted to prevent the disclosure of their information or, when this is not practically possible, not disclosed. In accordance with the applicable legal framework, the UN is required to cooper- ate, at all times, with the appropriate authorities of host States to facilitate the proper administration of justice, secure the observance of police regulations and prevent the occurrence of any abuse in connection with the privileges, immunities and facilities.32 In the event of uncertainty with respect to privileges and immunities or individ- uals, all queries should be directed to the relevant legal adviser of the mission or field presence, who may then refer the matter to the Legal Counsel. For specialized agencies, all queries should be directed to the legal adviser of the specialized agency. Specific guiding principles DDR practitioners should seek legal advice from the relevant legal adviser of the mission or field presence if there are requests for the production or disclosure of documents or information produced by or in the possession of the UN. DDR practitioners should seek legal advice if asked to provide testimony or partic- ipate in an interview or interrogation by national authorities. Red lines DDR practitioners shall not produce or disclose any documents or information produced by or in the possession of the UN that are not in the public domain with- out first seeking legal advice. DDR practitioners shall not provide testimony to or participate in any interview or interrogation by the State authorities without first seeking legal advice and receiv- ing authorization to do so (which may require a waiver of immunity).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-2.20-The-Politics-of-DDR.json b/src/Static/data/json/IDDRS-2.20-The-Politics-of-DDR.json new file mode 100644 index 0000000..1e0d2c7 --- /dev/null +++ b/src/Static/data/json/IDDRS-2.20-The-Politics-of-DDR.json @@ -0,0 +1,667 @@ +[ + { + "ID": "3cb3e539-c600-46ef-ba39-9c35ba3dd2fb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": null, + "Paragraph": "Summary Disarmament, demobilization and reintegration (DDR) is not only a technical undertaking. Many aspects of the DDR process will influence, and be influenced by, political dynamics. Understanding the political dynamics that influence DDR process- es requires knowledge of the historical and political context, the actors and stakehold- ers (armed and unarmed), and the conflict drivers, including local, national and re- gional aspects that may interact and feed into an armed conflict. Armed groups often mobilize for political reasons and/or in response to a range of security, socioeconomic or other grievances. Peace negotiations and processes provide warring parties with a way to end violence and address their grievances through peaceful means. Armed forces may also need to be factored into peace agreements and proportion- ality between armed forces and groups \u2013 in terms of DDR support \u2013 taken into account. DDR practitioners may provide support to the mediation of peace agreements and to the subsequent oversight and implementation of the relevant parts of these agree- ments. DDR practitioners can also advise mediators and facilitators so as to ensure that peace agreements incorporate realistic DDR-related clauses, that the parties have a common understanding of the outcome of the DDR process and how this will be im- plemented, and that DDR processes are not undertaken in isolation but are integrated with other aspects of a peace process, since the success of each is mutually reinforcing. All peace agreements contain security provisions to address the control and man- agement of violence in various forms including right-sizing, DDR, and/or other forms of security coordination and control. When and if a given peace agreement demands a DDR process, the national political framework for that particular DDR process is often provided by a Comprehensive Peace Agreement (CPA) that seeks to address political and security issues. Without such an agreement, warring parties are unlikely to agree to measures that reduce their ability to use military force to reach their goals. In a CPA, it is very common for DDR programmes to be tied to ceasefire provisions and \u2018final security arrangements\u2019. If armed groups have political aspirations, the chances of the successful implementation of a CPA can be improved if DDR processes are sensitively designed to support the transformation of these groups into political entities. DDR processes may also follow local-level agreements. Local politics can be as important in driving armed conflict as grievances against the State. By focusing on the latter, national-level peace agreements may not address or resolve local conflicts. Therefore, these conflicts may continue even when national-level peace agreements have been signed and implemented. Local-level peace agreements may take a number of different forms, in- cluding (but not limited to) local non-aggression pacts between armed groups, deals re- garding access to specific areas and community violence reduction (CVR) agreements. DDR practitioners should assess whether local DDR processes remain at the local level, or wheth- er local- and national-level dynamics should be linked in a common multilevel approach. Finally, DDR processes can also be undertaken in the absence of peace agreements. In these instances, DDR interventions may be designed to contribute to stabilization, to make the returns of stability more tangible or to create more conducive environments for peace agreements (see IDDRS 2.10 on The UN Approach to DDR). These interven- tions should not be reactive and ad hoc, but should be carefully planned in advance in accordance with a predefined strategy.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c544bc4b-9e82-4b0a-a4c2-5c9fe25155b6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module introduces the political dynamics of DDR and provides an overview of how to analyse and better understand them so as to develop politically sensitive DDR processes. It discusses the role of DDR practitioners in the negotiation of local and na- tional peace agreements, the role of transitional and final security arrangements, and how practitioners may work to generate political will for DDR among warring parties. Finally, this chapter discusses the transformation of armed groups into political parties and the political dynamics of DDR in active conflict settings.1", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dd72c341-c335-4189-b7b0-040cfcc05347", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardiza- tion (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifica- tions; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d34fc623-44f7-4673-b9ad-b800b0e8b9a8", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 4, + "Paragraph": "Introduction The impact of DDR on the political landscape is influenced by the context, the history of the conflict, and the structures and motivations of the warring parties. Some armed groups may have few political motivations or demands. Others, however, may fight against the State, seeking political power. Armed conflict may also be more localized, linked to local politics and issues such as access to land. There may also be complex interactions between political dynamics and conflict drivers at the local, national and regional levels. 1\tGuidance on how the designation of terrorist groups and individuals by the United Nations Security Council specifically affects the politics of DDR will be developed at a later stage. In order to support a peaceful resolution to armed conflict, DDR practitioners can support the mediation, oversight and implementation of peace agreements. Local- level peace agreements may take many forms, including (but not limited to) local non- aggression pacts between armed groups, deals regarding access to specific areas and CVR agreements. National-level peace agreements may also vary, ranging from cease- fire agreements to Comprehensive Peace Agreements (CPAs) with provisions for the establishment of a political power-sharing system. In this context, the role of former warring parties in interim political institutions may include participation in the interim administration as well as in other political bodies or movements, such as being repre- sented in national dialogues. DDR can support this process, including by helping to demilitarize politics and supporting the transformation of armed groups into political parties. DDR is not only a technical endeavour \u2013 many aspects of the DDR process will influ- ence, and be influenced by, political dynamics. For example, armed groups may refuse to disarm and demobilize until they are sure that their political demands will be met. Having control over DDR processes can constitute a powerful political position, and, as a result, groups or individuals may attempt to manipulate these processes for political gain. Furthermore, during a con- flict armed groups may become politically empowered and can challenge established political systems and structures, create alternative political arrangements or take over functions usually reserved for the State, including as security providers. Measures to disband armed groups can provide space for the restoration of the State in places where it was previously absent, and therefore can have a strong impact upon the security and political environment. The political limitations of DDR should also be considered. Integrated DDR processes can facilitate engagement with armed groups but will have limited impact unless parallel efforts are undertaken to address the reasons why these groups felt it necessary to mobilize in the first place, their current and prospective security concerns, and their expectations for the future. Overcoming these political limitations requires recognition of the strong linkages between DDR and other aspects of a peace process, including broader political arrangements, transitional justice and reconciliation, and peacebuilding activities, without which there will be no sustainable peace. Importantly, national-level peace agreements may not be appropriate to resolve ongoing local-level conflicts or regional conflicts, and it will be necessary for DDR practitioners to develop strategies and select DDR-related tools that are appropriate to each level.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1a96c5f9-b627-49af-b2ca-e048566342df", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the political dynamics of DDR:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4ce3b670-d9fa-4c34-b113-eac37e9d1508", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "People-centred A people-centred approach shall be followed. This approach must take into account the needs and positions of all stakeholders (Government, armed and unarmed opposition, the population and the international community) in a sensitive manner and seek to understand and accommodate them.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "dffe3c1e-2105-4f6b-9de6-418d825c6f4e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "Gender-responsive and inclusive DDR processes shall be gender-responsive and -inclusive, and at all stages take into account the gender dimensions of peace processes and conflict resolution. DDR practi- tioners shall advance substantive gender equality before, during and after conflict and ensure that women\u2019s diverse experiences are fully integrated into all peacebuilding, peacemaking and reconstruction processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e12866b5-0871-4cf4-bc3c-01ee0ed43843", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "Flexible, accountable and transparent Accountability, transparency and flexibility shall be maintained not only when holding stakeholders to their commitments, but also when ensuring that the process designed is appropriate for the context in which it is to be implemented.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae10441d-7be8-4137-9457-406c1d8c2748", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "Integrated It is essential to encourage unity of effort in the analysis, design and implementation of politically sensitive DDR processes. This emphasis must start with ensuring that those negotiating a peace agreement are properly advised so as to reach technically sound agreements and to integrate DDR processes with other relevant parts of the peace process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "85bb5eec-93d0-4e72-be9c-f5827ed49ec0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "5.1 Contextual considerations To understand the political dynamics of DDR processes, a thorough contextual analysis is required. In mission settings, such analyses are undertaken by UN peace operations, special political missions or offices. In non-mission settings, contextual analysis forms an integral part of the United Nations Sustainable Development Cooperation Framework (UNSDCF) process. In both mission and non-mission settings, the analysis of the political dynamics of a DDR process forms just one part of a broader situational analysis. It may therefore be linked to conflict and development analysis (CDA) or other analysis that is requested/ mandatory in the UN system. The sections immediately below focus only on the contex- tual analysis of the political dynamics of DDR processes. This type of analysis should examine the following factors:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e5c2c210-3733-450b-952c-c67a8485ef54", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 7, + "Paragraph": "5.1.1. The political and historical context Understanding the political dynamics that influence DDR processes requires knowl- edge of the historical and political context. A summary of relevant factors to consider can be found in Table 1 below.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "18735b87-99d9-4e2f-88d5-e7fd1b5ad3b4", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 7, + "Paragraph": "The structures and motivations of armed forces and groups The structures and motivations of armed forces and groups should be assessed. It should be kept in mind, however, that these structures and motivations may vary over time and at the individual and collective levels. For example, certain individuals may have been motivated to join armed groups for reasons of opportunism rather than political goals. Some opportunist individuals may become progressively politicized or, alternatively, those with political motives may become more opportunist. Crafting an effective DDR process requires an understanding of these different and changing motivations. Furthermore, the stated motives of warring parties and their members may differ significantly from their actual motives or be against international law and principles. As explained in more detail in Annex B, potential motives may include one or several of the following: Political \u2013 seeking to impose or protect a political system, ideology or party. Social \u2013 seeking to bring about changes in social status, roles or balances of power, discrimination and marginalization. Economic \u2013 seeking a redistribution or accumulation of wealth, often coupled with joining to escape poverty and to provide for the family. Security driven \u2013 seeking to protect a community or group from a real or per- ceived threat. Cultural/spiritual \u2013 seeking to protect or impose values, ideas or principles. Religious \u2013 seeking to advance religious values, customs and ideas. Material \u2013 seeking to protect material resources. Opportunistic \u2013 seeking to leverage a situation to achieve any of the above. It is important to undertake a thorough analysis of armed forces and groups so as to better understand the DDR target groups and to design DDR processes that maximize political buy-in. Analysis of armed forces and groups should include the following: Leadership: Including associated political leaders or structures (see below) and other persons who may have influence over the warring parties. The analysis should take into account external actors, including possible foreign supporters but also exiled leaders or others who may have some control over armed groups. It should also consider how much control the leadership has over the combatants and to what extent the leadership is representative of its members. Both control and representativeness can change over time. Internal group dynamics: Including the balance between an organization\u2019s po- litical and military wings, interactions between prominent members or factions within an armed force or group and how they influence the behaviour of the or- ganization, internal conflict patterns and potential fragmentation, the presence of female fighters or women associated with armed forces and groups (WAAFG), gender norms in the group, and the existence and pervasiveness of sexual violence. Associated political leaders and structures: Including whether warring parties have a separate political branch or are integrated politico-military movements and how this shapes their agenda. Are women involved in political structures, and if so to what extent? Armed groups with separate political structures or a history of political engagement prior to the conflict have sometimes been more successful at transforming themselves into political parties, although this potential may erode during a prolonged conflict. Associated religious leaders: Are religious leaders or personalities associated with the armed groups? What role could they play in peace negotiations? Do they have influence on the warring parties, and how can they help to shape the outcome of peace efforts? Linkages with their base: Is a given armed group close to a political base or a popu- lation, and how do these linkages influence the group? Has this support been weak- ened by the use of certain tactics or actions (e.g., mass atrocities), or will repression of its base influence the armed group? Will efforts to demobilize combatants affect the armed group\u2019s relations with its base or otherwise push it to change tactics \u2013 for instance eschewing violence so as to mobilize a political base that would otherwise reject violence. Linkages with local, national and regional elites: Including influential indi- viduals or groups who hold sway over the armed forces and groups. These could include business people or communities, religious or traditional leaders or insti- tutions such as trade unions or cultural groupings. The diaspora may also be an important actor, providing political and economic support to communities and/or armed groups. External support: Are there regional and/or broader international actors or net- works that provide political and financial support to armed groups, including on the basis of geopolitical interests? This might include State sponsors, diaspora or political exiles, transnational criminal networks or ideological affiliation and \u2018franchising\u2019 with foreign, often extremist, armed groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "869e508a-4fb6-4f34-a4d8-90a8ee060c9c", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 10, + "Paragraph": "Conflict outcomes The way a conflict ends can influence the political dynamics of DDR. The following scenarios should be considered: A clear victor: This usually results in a \u2018victor\u2019s peace\u2019, where the winner can \u2018im- pose\u2019 demands on the party that lost the conflict. This may mean that the armed structures of the victor are preserved, while the losing party will be the one tar- geted for DDR. Less emphasis may be placed on the reintegration of the defeated combatants, and the stigma of being an ex-combatant or person formerly associated with an armed force or group (including children associated with armed forces and groups [CAAFG] and WAAFG) is compounded by that of having been a part of a defeated group, resulting in increased marginalization, exclusion and discrim- ination. The victorious group may seek to dominate the new security structures. A negotiated process: At the national level, this is the most common form of con- flict resolution and often results in a comprehensive peace agreement (CPA) that addresses the political aspects of a conflict and might include provisions for DDR (this is considered a prerequisite for a DDR programme). Negotiated processes can also lead to local-level peace agreements, which can be followed by DDR- related tools such as CVR and transitional weapons and ammunition management (WAM) or reintegration support. DDR processes that are the outcome of negotiations (whether local or national) are more likely to be acceptable to warring parties. However, unless expert advice is provided, the DDR-related clauses in such agree- ments can be unrealistic. Partial peace: In some conflicts the multiplicity of armed groups may result in peace processes that are not fully inclusive, since some of the armed groups are excluded from or refuse to sign the agreement. This can be a disincentive for signatory armed groups to disarm and demobilize due to fear for their security and that of the population they represent, concerns over loss of territory to a non- signatory armed group or uncertainty about how their political position might be affected should other armed groups eventually join the peace process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1e97daa9-80d4-475c-9e1e-6de35e17dfac", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 11, + "Paragraph": "Local, national, regional and international dynamics National-level peace agreements will not always put an end to local-level conflicts. Local agendas \u2013 at the level of the individual, family, clan, municipality, community, district or ethnic group \u2013 can at least partly drive the continuation of violence. Some incidents of localized violence, such as clashes between rivals over positions of tradi- tional authority between two clans, will require primarily local solutions. However, other types of localized armed conflict may be intrinsically linked to the national level, and more amenable to top-down intervention. An example would be competition over political roles at the subfederal or district level. Experience shows that international interventions often neglect local mediation and conflict resolution, focusing instead on national-level cleavages. However, in many instances a combination of local and national conflict or dispute resolution mechanisms, including traditional ones, may be required. For these reasons, local political dynamics should be assessed. In addition to these local- and national-level dynamics, DDR practitioners should also understand and address cross-border/transnational conflict causes and dynamics, including their gender dimensions, as well as the interdependencies of armed groups with regional actors. In some cases, foreign armed groups may receive support from a third country, have bases across a border, or draw recruits and support from commu- nities that straddle a border. These contexts often require approaches to repatriate for- eign combatants and persons associated with foreign armed groups. Such programmes should be accompanied by reintegration support in the former combatant\u2019s country of origin (see also IDDRS 5.40 on Cross-Border Population Movements). Regional dimensions may also involve the presence of regional or international forces operating in the country. Their impact on DDR should be assessed, and the con- fluence of DDR efforts and ongoing military operations against non-signatory move- ments may need to be managed. DDR processes are voluntary and shall not be conflated with counter-insurgency operations or used to achieve counter-insurgency objectives. The conflict may also have international links beyond the immediate region. These may include proxy wars, economic interests, and political support to one or several groups, as well as links to organized crime networks. Those involved may have specific inter- ests to protect in the conflict and might favour one side over the other, or a specific out- come. DDR processes will not usually address these factors directly, but their success may be influenced by the need to engage politically or otherwise with these external actors.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "2acd5293-8afe-4d2c-975d-f6bb9b0e7a43", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 12, + "Paragraph": "DDR in conflict contexts or in contexts with multiple armed groups As outlined in IDDRS 2.10 on The UN Approach to DDR, integrated DDR processes may be pursued even when conflict is ongoing. In these contexts, DDR practitioners will need to assess how their interventions may affect local, national, regional and international political dynamics. For example, will the implementation of CVR projects contribute to the restoration and reinvigoration of (dormant) local government (see IDDRS 2.30 on Community Violence Reduction)? Will local-level interventions impact political dynamics only at the local level, or will they also have an impact on national-level dynamics? In conflict settings, DDR practitioners should also assess the political dynamics created by the presence of multiple armed groups. Complex contexts involving multiple armed groups can increase the pressure for a peace agreement to succeed (including through successful DDR and the transformation of armed groups into political parties) if this provides an example and an incentive for other armed groups to enter into a negotiated solution.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5b4e56ba-2355-48c9-936b-580bc816415c", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 12, + "Paragraph": "Fostering political support for DDR Governments and armed groups are key stakeholders in peace processes. Despite this, the commitment of these parties cannot be taken for granted and steps should be tak- en to build their support for the DDR process. It will be important to consider various options and approaches at each stage of the DDR process so as to ensure that next steps are politically acceptable and therefore more likely to be attractive to the parties. If there is insufficient political support for DDR, its efficacy may be undermined. In order to foster political will for DDR, the following factors should be taken into account:", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e39dee2e-9527-4e3c-aad8-b0d7ef8cd3e5", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 12, + "Paragraph": "The political aspirations of armed groups Participation in peacetime politics may be a key demand of groups, and the opportu- nity to do so may be used as an incentive for them to enter into a peace agreement. If armed groups, armed forces or wartime Governments are to become part of the political process, they should transform themselves into entities able to operate in a transitional political administration or an electoral system. Leaders may be reluctant to give up their command and therefore lose their political base before they are able to make the shift to a political party that can re- ab- sorb this constituency. At the same time, they may be unwilling to give up their wartime structures until they are sure that the political provisions of an agreement will be implemented. DDR processes should consider the parties\u2019 political motivations. Doing so can reassure armed groups that they can retain the ability to pursue their political agen- das through peaceful means and that they can therefore safely disband their military structures. The post-conflict demilitarization of politics and institutions goes beyond DDR practitioners\u2019 mandates, yet DDR processes should not ignore the political aspirations of armed groups and their members. Such aspirations may include participating in political life by being able to vote, being a member of a political party that represents their ideas and aims, or running for office. For some armed groups, participation in politics may involve transformation into a political party, a merger or alignment with an existing party, or the candidacy of former members in elections. The transformation of an armed group into a political party may appear to be incompatible with the aim of disbanding military structures and breaking their chains of command and control because a political party may seek to build upon wartime com- mand structures. Practitioners and political leaders need to consider the effects of a DDR process that seeks to disband and break the structures of an armed group that aims to become a political party. Attention should be paid as to whether the planned DDR pro- cess could help or hinder this transformation and whether this could support or undermine the wider peace process. DDR processes may need to be adapted accordingly.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9552fbf0-006a-4898-98ca-4ed76ebaf4fe", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 13, + "Paragraph": "Ensuring adequate provisions for DDR in peace agreements The DDR-related clauses included within peace agreements should be realistic and appropriate for the setting. In CPAs, the norm is to include a commitment to under- take a DDR programme. The details, including provisions regarding female combat- ants, WAAFG and CAAFG, are usually developed later in a national DDR programme document. Local-level peace agreements will not necessarily include a DDR programme, but may include a range of DDR-related tools such as CVR and transi- tional WAM (see IDDRS 2.10 on The UN Approach to DDR). Provisions that legitimize entitlements for those who have been members of armed forces and groups should be avoided (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Regardless of the type of peace agreement, mediators and signatories should have a minimum understanding of DDR, including the preconditions and principles of gender- responsive and child-friendly DDR (see IDDRS 2.10 on The UN Approach to DDR). Where necessary they should call upon DDR experts to build capacity and knowledge among all of the actors involved and to advise them on the negotiation of relevant and realistic DDR provisions.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7385d8cb-c928-4fb6-b691-dfa31f51d0d7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 13, + "Paragraph": "Building and ensuring integrated DDR processes In some instances, integrated DDR processes should be closely linked to other parts of a peace process. For example, DDR programmes may be connected to security sector reform and transitional justice (see IDDRS 6.10 on DDR and Security Sector Reform and IDDRS 6.20 on Transitional Justice and DDR). Unless these other activities are clear, the signatories cannot decide on their participation in DDR with full knowledge of the options available to them and may block the process. Donors and other partners may also find it difficult to support DDR processes when there are many unknowns. It is therefore important to ensure that stakeholders have a minimum level of under- standing and agreement on other related activities, as this will affect their decisions on whether or how to participate in a DDR process. Information on associated activities is usually included in a CPA; however, in the absence of such provisions, the push to disarm and demobilize forces combined with a lack of certainty on fundamental issues such as justice, security and integration can un- dermine confidence in the process. In such cases an assessment should be made of the opportunities and risks of starting or delaying a DDR process, and the consequences shall be made clear to UN senior leadership, who will take a decision on this. If the de- cision is to postpone a programme, donors and budgeting bodies shall be kept informed. There may also be a need to link local and national conflict resolution and media- tion so that one does not undermine the other.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "104b6709-3391-4470-b35c-324d5bf1a363", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 14, + "Paragraph": "Ensuring a common understanding of DDR Although the negotiating parties may not need to know the details of a DDR process when they sign a peace agreement, they should have a shared understanding of the principles and outcomes of the DDR process and how this will be implemented. It is important for the parties to a peace agreement to have a common understanding of what DDR involves, including the gender dimensions and requirements and pro- tections for children. This may not always be the case, especially if the stakeholders have not all had the same opportunity to learn about DDR. This is particularly true for groups that may be difficult to access because of security or geography, or because they are considered \u2018off limits\u2019 due to their ideology. The ability to hold meaningful dis- cussions on DDR may therefore require capacity-building with the parties to balance the levels of knowledge and ensure a common understanding of the process. In con- texts where DDR has been implemented before, this history can affect perceptions of future DDR activities, and there may be a need to review and manage expectations and clarify differences between past and planned processes. The capacity-building and provision of expertise extends to the mediation teams and international supporters of the peace process (envoys, mediators, facilitators, spon- sors and donors) who must have access to experts who can guide them in designing appropriate DDR provisions.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5fb2d7c4-97cb-4ea9-8feb-f6dc026a1cbe", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 14, + "Paragraph": "Ensuring international support for DDR International actors, including the UN, Member States and other concerned stakehold- ers must understand the need to politically support DDR processes. They must also ensure that the agreements reached are responsive to the parties\u2019 demands, fair and implementable, and create a supportive environment for DDR. Donors and UN budgetary bodies should understand that DDR is a long and expen- sive undertaking. While DDR is a crucial process, it is but one part of a broader political and peacebuilding strategy. Hence, the objectives and expectations of DDR must be realistic. A partial commitment to such an undertaking is insufficient to allow for a sustainable DDR process and may cause harm. This support must extend to an understanding of the difficult circumstances in which DDR is implemented and the need to sometimes wait until the conditions are right to start and assure that funding and support is avail- able for a long-term process. However, there is often a push to spend allocated funding even when the conditions for a process are not in place. This financial pressure should be better understood, and budgetary rules and regulations should not precipitate the premature launch of a DDR process, as this will only undermine its success.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "6909e406-cb2d-4e80-b839-10ef4626dea8", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 15, + "Paragraph": "Local peace agreements Local peace agreements can take many different forms and may include local non- aggression pacts between armed groups, deals regarding access to specific areas, CVR agreements and reintegration support for those who have left the armed groups. These local agreements may sometimes be one part of a broader peace strategy. A large range of actors can be involved in the negotiation of these agreements, including informal local mediation committees, Government-established local peace and reconciliation committees, religious actors, non-governmental organizations (NGOs) and the UN. Local capacities for peace should also be assessed and engaged in the peace and medi- ation processes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0d28a439-8d5c-454a-b7c3-869ab14b20c7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 15, + "Paragraph": "Preliminary ceasefires In some cases, preliminary ceasefires may be agreed to prior to a final agreement. These aim to create a more conducive environment for talks to take place. DDR provi- sions are not included in such agreements.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "caa31a6c-215a-434d-954a-3a9cb284c064", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 15, + "Paragraph": "Comprehensive Peace Agreements DDR programmes are often the result of a CPA that seeks to address political and security issues. Without such an agreement, warring parties are unlikely to agree to measures that reduce their ability to use military force to reach their goals. As illustrated in Diagram 1 below, CPAs usually include several chapters or annexes addressing different substantive issues. The first three activities under \u201cCeasefire and Security Arrangements\u201d are typically part of the ceasefire process. The cantonment of forces, especially when cantonment sites are also used for DDR activities, is usually the nexus between the ceasefire and the \u201cfinal security arrangements\u201d that include DDR and SSR (see section 7.5). Ceasefires usually require the parties to provide a declaration of forces for moni- toring purposes, ideally disaggregated by sex and including information regarding the presence of WAAFG, CAAFG, abductees, etc. This declaration can provide important planning information for DDR practitioners and, in some cases, negotiated agreements may stipulate the declared number of people in each movement that are expected to participate in a DDR process. Likewise, the assembly or cantonment of forces may provide the opportunity to launch disarmament and demobilization activities in assembly areas, or, at a minimum, to provide information outreach and a preliminary registra- tion of personnel for planning purposes. Outreach should always include messages about the eligibility of female DDR participants and encourage their registration. Discussions on the disengagement and withdrawal of troops may provide infor- mation as to where the process is likely to take place as well as the number of persons involved and the types and quantities of weapons and ammunition present. In addition to security arrangements, the role of armed groups in interim political institutions is usually laid out in the political chapters of a CPA. If political power-sharing systems are set up straight after a conflict, these are the bodies whose membership will be negotiated during a peace agreement. Transitional governments must deal with critical issues and processes resulting from the conflict, including in many cases DDR. It is also these bodies that may be responsible for laying the foundations of longer-term political structures, often through activities such as the review of constitutions, the holding of national political dialogues and the organization of elections. Where there is also a security role for these actors, this may be established in either the political or security chapters of a CPA. Political roles may include participation in the interim administration at all levels (central Government and regional and local authorities) as well as in other political bodies or movements such as being represented in national dialogues. Security areas of consideration might include the need to provide security for political actors, in many cases by establishing protection units for politicians, often drawn from the ranks of their combatants. It may also include the establishment of interim security systems that will incorporate elements from armed forces and groups (see section 7.5.1)", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "d22cfe30-244b-40aa-bd24-48b5d9692861", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 17, + "Paragraph": "DDR support to mediation As members of mediation support teams or mission staff in an advisory role to the Special Representative to the Secretary-General (SRSG) or the Deputy Special Repre- sentative to the Secretary-General (DSRSG), DDR practitioners can provide advice on how to engage with armed forces and groups on DDR issues and contribute to the attainment of agreements. In non-mission settings, the UN peace and development advisors (PDAs) deployed to the office of the UN Resident Coordinator (RC) play a key role in advising the RC and the government on how to engage and address armed groups. DDR practitioners assigned to UN mediation support teams may also draft DDR provisions of ceasefires, local peace agreements and CPAs, and make proposals on the design and implementation of DDR processes. In addition to the various parties to the conflict, the UN should also support the participation of civil society in peace negotiations, in particular women, youth and others traditionally excluded from peace talks. Women\u2019s participation (in mediation and negotiations) can expand the range of domestic constituencies engaged in a peace process, strengthening its legitimacy and credibility. Women\u2019s perspectives also bring a different understanding of the causes and consequences of conflict, generating more comprehensive and potentially targeted proposals for its resolution. Mediators and DDR practitioners should recognize the sensitivities around lan- guage and be flexible and contextual with the terms that are used. The term \u2018reinte- gration\u2019 may be perceived as inappropriate, particularly if members of armed groups never left their communities. Terms such as \u2018rehabilitation\u2019 or \u2018reincorporation\u2019 may be considered instead. Similarly, the term \u2018disarmament\u2019 can include connotations of surrender or of having weapons taken away by a more powerful actor, and its use can prevent warring parties from moving forward with the negotiations (see also IDDRS 4.10 on Disarmament). DDR practitioners and mediators can consider the use of more neutral terms, such as \u2018laying aside of weapons\u2019 or \u2018transitional weapons and ammu- nition management\u2019. The use of transitional WAM activities and terminology may also set the ground for more realistic arms control provisions in a peace agreement while guarantees around security, justice and integration into the security sector are lacking (see also IDDRS 4.11 on Transitional Weapons and Ammunition Management). Medi- ators and other actors supporting the mediation process should have strong DDR and WAM knowledge or have access to expertise that can guide them in designing appro- priate and evidence-based DDR WAM provisions. Within a CPA, the detail of large parts of the final security arrangements, including strategy and programme documents and budgets, is often left until later. However, CPAs should typically establish the principle that DDR will take place and outline the structures responsible for implementation. If contextual analysis reveals that both local and national conflict dynamics are at play (see section 5.1.4) DDR practitioners can support a multilevel approach to mediation. This approach should not be reactive and ad hoc, but part of a well-articulated strategy explicitly connecting the local to the national. Problems may arise if those engaged in negotiations are not well informed about DDR and commit to an unsuitable or unrealistic process. This usually occurs when DDR expertise is not available in negotiations or the organizations that might support a DDR process are not consulted by the mediators or facilitators of a peace process. It is therefore important to ensure that DDR experts are available to advise on peace agree- ments that include provisions for DDR.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1b93fc60-90bf-4bd0-88cd-7899c850d6cc", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 18, + "Paragraph": "Peace mediation and gender Security Council Resolution 1325 (2000) calls on all actors involved, when negotiating and implementing peace agreements, to adopt a gender perspective, including, inter alia: The special needs of women and girls during repatriation and resettlement and for rehabilitation, reintegration and post-conflict reconstruction; Measures that support local women\u2019s peace initiatives and indigenous pro- cesses for conflict resolution, and that involve women in all of the implementa- tion mechanisms of the peace agreements; Measures that ensure the protection of and respect for human rights of women and girls, particularly as they relate to the constitution, the electoral system, the police and the judiciary.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6e7fa3a0-e863-49da-ac6d-f2a5c9bb4849", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 18, + "Paragraph": "DDR support to confidence-building measures DDR processes often contend with a lack of trust between the signatories to peace agreements. Previous experience with DDR programmes indicates two common delay tactics: the inflation of numbers of fighters to increase a party\u2019s importance and weight in the peace negotiations, and the withholding of combatants and arms until there is greater trust in the peace process. Some peace agreements have linked progress in DDR to progress in the political track so as to overcome fears that, once disarmed, the movement will lose influence and its political claims may not be fully met. Confidence-building measures (CBMs) are often used to reduce or eliminate the causes of mistrust and tensions during negotiations or to reinforce confidence where it already exists. Certain DDR activities and related tools can also be considered CBMs and could be instituted in support of peace negotiations. For example, CVR programmes can also be used as a means to de-escalate violence during a preliminary ceasefire and to build confidence before the signature of a CPA and the launch of a DDR programme (see also IDDRS 2.30 on Community Violence Reduction). Furthermore, pre-DDR may be used to try to reduce tensions on the ground while negotiations are ongoing. Pre-DDR and CVR can provide combatants with alternatives to waging war at a time when negotiating parties may be cut off or prohibited from accessing their usual funding sources (e.g., if a preliminary agreement forbids their participation in resource exploitation, taxation or other income-generating activities). However, in the absence of a CPA, prolonged CVR and pre-DDR can also become a support mechanism for armed groups rather than an incentive to finalize peace negotiations. Such processes should therefore be approached with caution.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "39767533-b180-4722-b5d4-cd97d6a2abd7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 19, + "Paragraph": "DDR and transitional and final security arrangements Most CPAs include provisions for transitional (or \u2018interim\u2019) and final security arrange- ments. Transitional security arrangements are typically put in place to support DDR programmes by establishing security structures, often jointly or with a third party such as a UN peace operation, that can provide security before the final post-conflict security structures are established. In situations where UN peace operations are un- likely to be established following the signature of a CPA, joint security mechanisms may be put in place as part of transitional and final security arrangements with or without different forms of international verification. Alternatively, a separate mech- anism driven either by regional economic communities or bilateral players agreed to by the warring parties may be deployed. DDR programmes are usually part of the final security arrangements that establish, among other things, what will happen to the fighting forces post-conflict.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "08b6141a-2582-448e-9cac-3c5b75e3182d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 19, + "Paragraph": "Transitional security Transitional security arrangements vary in scope depending on the context, levels of trust and what might be acceptable to the parties. Options that might be considered include: Acceptable third-party actor(s) who are able to secure the process. Joint units, patrols or operations involving the parties to a conflict, often alongside a third-party presence (see also IDDRS 4.11 on Transitional Weapons and Ammu- nition Management). Local security actors such as community police who are acceptable to the commu- nities and to the actors, as they are considered neutral and not a force brought in from outside. Deployment of national police. Depending on the situation, this may have to occur with prior consent for any operations within a zone or be done alongside a third-party actor. Transitional security structures may require the parties to act as a security pro- vider during a period of political transition. This may happen prior to or alongside DDR programmes. This transition phase is vital for building confidence at a time when warring parties may be losing their military capacity and their ability to defend them- selves. This transitional period also allows for progress in parallel political, economic or social tracks. There is, however, often a push to proceed as quickly as possible to the final security arrangements and a normalization of the security scene. Consequently, DDR may take place during the transition phase so that when this comes to an end the armed groups have been demobilized. This may mean that DDR proceeds in advance of other parts of the peace process, despite its success being tied to progress in these other areas.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fd6b4060-e2b5-4853-94b3-64339199cbcb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 19, + "Paragraph": "Final security arrangements DDR programmes are usually considered to be part of the CPA\u2019s provisions on final security arrangements. These seek to address the final status of signatories to the CPA through DDR, SSR, restructuring of security governance institutions and other related reforms.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2d80fa79-e557-445f-81ed-eae20a3f5999", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 20, + "Paragraph": "Verification Verification measures are used to ensure that the parties comply with an agreement. Veri- fication is usually carried out by inclusive, neutral or joint bodies. The latter often include the parties and an impartial actor (such as the UN or local parties acceptable to all sides) that can help resolve disagreements. Verification mechanisms for disarmament may be separate from the bodies established to implement DDR (usually a DDR commission) and may also verify other parts of a peace process in both mission and non-mission settings. Designing politically sensitive DDR processes Recognizing the political dynamics of DDR DDR should not be seen as a purely technical process, but one that requires active political support at all levels. In mission settings, this also means that DDR should not be viewed as the unique preserve of the DDR section. It should be given the attention and support it deserves by the senior mission leadership, who must be the political champions of such processes. In non-mission settings, DDR will fall under the respon- sibility of the UN RC system and the UNCT. DDR-related tools A peace agreement is a precondition for a DDR programme, but DDR programmes need not always follow peace agreements. Other DDR-related tools, such as CVR, may be more appropriate, particularly following a local-level peace agreement or even during active conflict (see IDDRS 2.30 on Community Violence Reduction). DDR practitioners must assess the political consequences, if any, of supporting DDR processes in active conflict contexts. In particular, the intended outcomes of such interventions should be clear. For example, is the aim to contribute to local-level sta- bilization or to make the rewards of stability more tangible, perhaps through a CVR project or by supporting the reintegration of those who leave active armed groups? Alternatively, is the purpose to provide impetus to a national-level peace process? If the latter, a clear theory of change, outlining how local interventions are intended to scale up, is required. DDR programmes If designed properly, DDR programmes and pre-DDR can reduce parties\u2019 concerns about disbanding their fighting forces and losing political and military advantage. The following political sensitivities should be taken into account:", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b85da7fc-6792-42ae-9623-3b54085698ad", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 21, + "Paragraph": "Political optics The handover of weapons from one party to another (e.g., from an armed group to a Government) may be inappropriate, as it could be viewed as one side surrendering to the other (see also IDDRS 4.10 on Disarmament). To address this issue, DDR practitioners can consider: The handover of weapons to a neutral third party. The design of disarmament sites, as well as who is present there. The design should seek to minimize negative perceptions linked to the handover of weapons. This may also mean that the sites are under the control of a neutral party. Demobilizing selected elements (e.g., war wounded, veterans, child soldiers) from an armed force or group can be a strong signal of the movement\u2019s willingness to move forward with peace while allowing the bulk of their forces to remain intact until political goals or benchmarks have been met. This can be a controversial approach, as in some cases it can allow warring parties to get rid of members who are less combat capable, thus leaving them with smaller but more effective forces.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a2e33257-38a9-4683-9acf-1ebfbdf2d7c6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 21, + "Paragraph": "Parity in disarmament and demobilization Disarmament provisions are not always applied evenly to all parties and, most often, armed forces are not disarmed. This can create an imbalance in the process, with one side being asked to hand over more weapons than the other. Even the symbolic disar- mament or control (safe storage as a part of a supervised process) of a number of the armed forces\u2019 weapons can help to create a perception of parity in the process. This could involve the control of the same number of weapons from the armed forces as those handed in by armed groups. Similarly, because it is often argued that armed forces are required to protect the nation and uphold the rule of law, DDR processes may demobilize only the armed opposition. This can create security concerns for the disarmed and demobilized groups whose opponents retain the ability to use force, and perceptions of inequality in the way that armed forces and groups are treated, with one side retaining jobs and salaries while the other is demobilized. In order to create a more equitable process, mediators may allow for the cantonment or barracking of a number of Government troops equivalent to the number of fighters from armed groups that are cantoned, disarmed and demobilized. They may also push for the demobilization of some members of the armed forces so as to make room for the integration of members of opposition armed groups into the national army.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c1f3dbd1-f1eb-4fb6-b2ac-c27bef997b5a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 21, + "Paragraph": "Linkages to other aspects of the peace process Opposition armed groups may be reluctant to demobilize their troops and dismantle their command structures before receiving tangible indications that the political aspects of an agreement will be implemented. This can take time, and there may be a need to consider measures to keep troops under command and control, fed and paid in the interim. They could include: Extended cantonment (this should not be open ended, and a reasonable end date should be set, even if it needs to be renegotiated later); Linking demobilization to the successful completion of benchmarks in the political arena and in the transformation of armed groups into political parties; Pre-DDR activities; Providing other opportunities such as work brigades that keep the command and control of the groups but reorientate them towards more constructive activities. Such processes must be measured against the ability of the organization to control its troops and may be controversial as they retain command and control structures that can facilitate remobilization. Mid-level and senior commander\u2019s political aspirations should be considered when developing demobilization options. Support for political actors is a sensitive issue and can have important implications for the perceived neutrality of the UN, so decisions on this should be taken at the highest level. If agreed to, support in this field may require linking up with other organizations that can assist. Similarly, reintegration into civilian life could be broadened to include a political component for DDR programme participants. This could include civic education and efforts to build political platforms, including political parties. While these activities lie outside of the scope of DDR, DDR practitioners could develop partnerships with actors that are already engaged in this field. The latter could develop projects to assist armed group members who enter into politics in preparing for their new roles. Finally, when reintegration support is offered to former combatants, persons for- merly associated with armed forces and groups, and community members, there may be politically motivated attempts to influence whether these individuals opt to receive reintegration support or take up other, alternative options. Warring parties may push their members to choose an option that supports their former armed force or group as opposed to the individual\u2019s best chances at reintegration. They may push cadres to run for political office, encourage integration into the security services so as to build a power base within these forces, or opt for cash reintegration assistance, some of which is used to support political activities. The notion of individual choice should therefore be encouraged so as to counter attempts to co-opt reintegration to political ends.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b111533b-53a7-4f4e-8cdc-cf7f1fea9a9d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 22, + "Paragraph": "Elections and the transformation of armed groups Along with the signature of a peace agreement, elections are often seen as a symbol marking the end of the transition from war to peace. If they are to be truly representative and offer an alternative way of contesting power, politics must be demilitarized (\u201dtake the gun out of politics\u201d or go \u201cfrom bullet to ballot\u201d) and transform armed groups into viable political parties that compete in the political arena. It is also through political parties that citizens, including former combatants, can involve themselves in politics and policymaking, as parties provide them with a structure for political participation and a channel for making their voices heard. Not all armed groups can become viable political parties. In this case, alternatives can be sought, including the establishment of a civil society organization aimed at advancing the cause of the group. However, if the transformation of armed groups into political parties is part of the conflict resolution process, reflected in a peace agreement, then the UN should provide support towards this end. DDR may affect the holding of or influence the outcome of elections in several ways: Armed forces and groups that wield power through weapons and the threat of violence can influence the way people vote, affecting the free and fair nature of the elections. Hybrid political \u2019parties\u2019 that are armed and able to organize violence retain the ability to challenge electoral results through force. Armed groups may not have had the time nor space to transform into political actors. They may feel cheated if they are not able to participate fully in the process and revert to violence, as this is their usual way of challenging institutions or articulating grievances. Women in armed groups may be excluded or marginalized as leadership roles and places in the political ranks are carved out. There is often a push for DDR to happen before elections are held. This may be a part of the sequencing of a peace process (signature of an agreement \u2013 DDR programme \u2013 elections), and in some cases completing DDR may be a pre-condition for holding polls. Delays in DDR may affect the timing of elections, or elections that are planned too early can result in a rushed DDR process, all of which may compromise the credi- bility of the broader peace process. Conversely, postponing elections until DDR is com- pleted can be difficult, especially given the long timeframes for DDR, and when there are large caseloads of combatants still to be demobilized or non-signatory movements are still active and can become spoilers. For these reasons DDR practitioners should consider the sequencing of DDR and elections and acknowledge that the interplay between them will have knock-on effects.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-2.30-Community-Violence-Reduction.json b/src/Static/data/json/IDDRS-2.30-Community-Violence-Reduction.json new file mode 100644 index 0000000..97b71f9 --- /dev/null +++ b/src/Static/data/json/IDDRS-2.30-Community-Violence-Reduction.json @@ -0,0 +1,629 @@ +[ + { + "ID": "5357e263-b6a8-41d7-ad88-06ffe505b78d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": null, + "Paragraph": "Summary Integrated disarmament, demobilization and reintegration (DDR) processes increas- ingly include a community violence reduction (CVR) component as a direct contri- bution to the achievement of Sustainable Development Goal (SDG) 16.1: Significantly reduce all forms of violence and related deaths everywhere. As outlined in the United Nations (UN) approach to DDR, CVR is a DDR-related tool that directly responds to the presence of active and/or former members of armed groups, and is designed to pro- mote security and stability in both mission and non-mission contexts (see IDDRS 2.10 on The UN Approach to DDR). CVR shall not be used to provide material and financial assistance to active members of armed groups. In situations where the preconditions for a DDR programme exist, CVR may be pursued before, during, and after a DDR programme. Specific provisions for CVR may also be included in local-level peace agreements, sometimes instead of DDR pro- grammes (see IDDRS 2.20 on The Politics of DDR). CVR may also be pursued when the preconditions for a DDR programme are absent. In this context, CVR can contribute to security and stabilization, help to make the returns of stability more tangible, and create more conducive environments for national and local peace processes. There is no uniform or standard template for CVR, although all CVR programmes share the overarching goal of reducing armed violence and sustaining peace (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). CVR can be used for a variety of purposes, ranging from the prevention of (re-)recruitment to improving the capacities of communities to absorb ex-combatants and associated groups. CVR may also be used as stop-gap reinsertion assistance at the community level, while reintegration is still at the planning and/or resource mobilization stage. Specific theories of change for CVR programmes should be developed and adapted to particular contexts. However, very often an underlying expectation of CVR is that specific programme activities will foster social cohesion and provide former combatants and other at-risk individuals with alternatives to joining armed groups. As a result, communities will become active participants in the reduction of armed violence. While CVR can achieve significant results, it is neither a short-term panacea nor a long-term development programme. Adequate linkages with recovery and development pro- grammes are therefore key. CVR programmes may complement other elements of the broader DDR process. For example, CVR can complement other DDR-related tools such as transitional weapons and ammunition management (WAM) (see IDDRS 4.11 on Transitional Weapons and Ammunition Management), and can be used as part of programmes for those leaving armed groups designated as terrorist organizations by the United Nations Security Council (see IDDRS 2.11 on The Legal Framework for UN DDR). In mission settings, CVR will be funded through the allocation of assessed contributions. Therefore, where appropriate, planning for CVR should ensure adequate linkages with support to the reintegration of ex-combatants and associated groups. In non-mission settings, fund- ing for CVR will depend on the allocation of national budgets and/or voluntary contri- butions from donors. Therefore, in instances where CVR and support to community- based reintegration are both envisaged, they should, from the outset, be planned and implemented as a single and continuous programme.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ccd45482-379e-4bbd-8bba-b5abe421a45c", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module sets out the basic conceptual and strategic parameters of CVR and its place within integrated DDR processes. It also outlines the principles and programmatic con- siderations that should guide the design, planning and implementation of CVR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "922e3881-db08-4833-9596-4e91120a5953", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardiza- tion (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. CVR programmes may include different types of coordination mechanisms to guide CVR project selection, implementation, and monitoring and evaluation. Two common coordination mechanisms are: Project Selection Committees (PSCs): Community-based PSCs are established in selected areas, include a representative sample of stakeholders, and are responsible for selecting projects that are vetted by the PAC/PRC. (See below.) All project selec- tion should comply with gender quotas of a minimum of 30% of projects benefitting women, and women\u2019s involvement in 30% of leadership and management positions. Project Approval/Review Committee (PAC/PRC): A PAC/PRC sets the overall strategic direction for CVR, vets and approves projects selected by PSCs, and helps to raise finances. The PAC/PRC should exhibit a high degree of clarity on its roles and functions. Such entities meet on a semi-regular basis, usually after a certain number of CVR projects have been presented (a minimum of a week in advance) to PAC/PRC members for consideration. The PAC/PRC should ensure all proposals comply with gender quotas.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "dc42cc39-0cc2-4071-849e-c66c04b91d73", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 5, + "Paragraph": "Introduction CVR is a DDR-related tool that directly responds to the presence of active and/or for- mer members of armed groups in a community and is designed to promote security and stability in both mission and non-mission contexts (see IDDRS 2.10 on The UN Approach to DDR). CVR shall not be used to provide material and financial assistance to active members of armed groups. CVR programmes have a variety of uses. In situations where the preconditions for a DDR programme exist \u2013 including a ceasefire or peace agreement, trust in the peace process, willingness of the parties to engage in DDR and minimum guarantees of security \u2013 CVR may be pursued before, during and after a DDR programme, as a complementary measure. Specific provisions for CVR may also be included in local-level peace agreements, sometimes instead of DDR programmes (see IDDRS 2.20 on The Politics of DDR). When the preconditions for a DDR programme are absent, CVR may be used to contribute to security and stabilization, to help make the returns of stability more tangible, and to create more conducive environments for national and local peace processes. More specifically, CVR programmes can be used as a means to: De-escalate violence during a preliminary ceasefire and build confidence before the signature of a Comprehensive Peace Agreement (CPA) and the launch of a DDR programme; Prevent at-risk individuals, particularly at-risk youth, from joining armed groups; Stop former members of armed groups from rejoining these groups and from en- gaging in violent crime and destructive social unrest; Provide stop-gap reinsertion assistance for a defined period (6\u201318 months), par- ticularly if demobilization is complete and reintegration support is still at the planning and/or resource mobilization stage; Encourage members of armed groups that have not signed on to peace agreements to move away from armed violence; Reorient members of armed groups away from waging war and towards construc- tive activities; Reduce violence in communities and neighbourhoods that are vulnerable to high rates of armed violence, organized crime and/or sexual or gender-based violence; and Increase the capacity of communities and neighbourhoods to absorb newly rein- serted and reintegrated former combatants. CVR programmes are typically short to medium term and include, but are not limited to, a combination of: Weapons and ammunition management; Labour-intensive short-term employment; Vocational/skills training and job employment; Infrastructure improvement; Community security and police rapprochement; Educational outreach and social mobilization; Mental health and psychosocial support, in both collective and individual formats; Civic education; and Gender transformative projects including education and awareness-raising pro- grammes with community members on gender, women\u2019s empowerment, and con- flict-related sexual and gender-based violence (SGBV) prevention and response. Whether introduced in mission or non-mission settings, CVR priorities and projects should, without exception, be crafted at the local level, with representative participation, and where possible, consultation of community stakeholders, including women, boys, girls and youth. All CVR programmes should be underpinned by a clear theory of change that defines the problem to be solved, surfaces the core assumptions underlying the theory of change, explains the core targets and metrics to be addressed, and describes how the proposed intervention activities will address these issues. Specific theories of change for CVR pro- grammes should be adapted to particular con- texts. However, very often an underlying ex- pectation of CVR is that specific programme activities will provide former combatants and other at-risk individuals with alternatives that are more attractive than joining armed groups or resorting to armed violence and/or provide the mental tools and interpersonal coping strat- egies to resist incitements to violence. Another common underlying expectation is that CVR projects will contribute to social cohesion. In socially cohesive communities, com- munity members feel that they belong to the community, that there is trust between community members, and that community members can work together. Members of socially cohesive communities are more likely to be aware of, and more likely to inter- vene when they see, behaviour that may lead to violence. Therefore, by fostering social cohesion and providing alternatives, communities become active participants in the reduction of armed violence. By promoting peaceful and inclusive societies, CVR has the potential to directly contribute to the Sustainable Development Goals, and particularly SDG 16 on Peace, Justice and Strong Institutions. CVR can also reinforce other SDG targets, including 4.1 and 4.7, on education and promoting cultures of peace, respectively; 5.2 and 5.5, on preventing violence against women and girls and promoting women\u00b4s leadership and participation; and 8.7 and 8.8, related to child soldiers and improving workplace safety. CVR may also contribute to SDG 10.2, on political, social and economic inclusion; 11.1, 11.2 and 11.7, on housing, transport and safe public spaces; and 16.1, 16.2 and 16.4, related to reducing violence, especially against children, and the availability of arms. CVR programmes aim to sustain peace by preventing the (re-)recruitment of former combatants and other individuals at risk of recruitment (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). More specifically, CVR programmes should actively strengthen the protective factors that increase the resilience of young people, women and communities to involvement in, or harms associated with, violence. CVR shall not lead, but could help to facilitate, a political process (see IDDRS 2.20 on The Politics of DDR). Although CVR is essentially a technical intervention, the pro- cess of planning, formulating, negotiating and executing activities may be intensely political. CVR should involve routine engagement and negotiation with government officials, active and/or former members of armed groups, individuals at risk of recruit- ment, business and civic leaders, and communities as a whole; it necessitates a deep understanding of the local context and the common definition/understanding of an overarching CVR strategy.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "648947e0-c72c-446e-8554-de5813d1f78d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 7, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to CVR:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6d8c1292-2421-41bc-8af2-96ee68a50c57", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 7, + "Paragraph": "Criteria for participation/eligibility The eligibility criteria for CVR should be developed in consultation with target com- munities and, if in existence, a Project Selection Committee (PSC) or equivalent body. Eligibility criteria shall be developed and communicated in the most transparent man- ner possible. This is because eligibility and ineligibility can become a source of com- munity tension and conflict. Eligibility for CVR does not mean that those who partic- ipate will necessarily be ineligible to participate in other programmes that form part of the broader DDR process \u2013 this will depend on the particular framework in place. Some frameworks may require the surrender of a weapon as a precondition for partic- ipation in a CVR programme (see IDDRS 4.11 on Transitional Weapons and Ammuni- tion Management). Furthermore, when members of armed groups that are not signa- tory to a peace agreement are being considered for inclusion in CVR programmes, the status of these individuals and armed groups must be analysed and specified in order to mitigate any risks. If the individuals being considered for inclusion in a CVR pro- gramme have voluntarily left an armed group designated as a terrorist organization by the United Nations Security Council, DDR practitioners shall incorporate proper screening mechanisms and criteria to identify suspected terrorists (for further infor- mation on specific requirements for children refer to IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR). Depending on the circumstances, the terrorist organization they are associated with and the terrorist offences committed, it may not be appropriate for suspected terrorists to participate in CVR programmes (see IDDRS 2.11 on Legal Framework for UN DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "bc88578b-d15f-424a-abbc-4b9b95c0ae73", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 8, + "Paragraph": "Unconditional release and protection of children Specific provisions shall be developed to ensure the protection, care and support of young people (15\u201324) who participate in CVR programmes (see IDDRS 5.30 on Youth and DDR). Where appropriate, children (under 18) may be included in CVR activi- ties, but with relevant legal safeguards to ensure their rights and needs are carefully accounted for. Mental health and psychosocial support services as well as social services should be established, as appropriate, in consultation with relevant child protection units and agencies (see IDDRS 5.20 on Children and DDR).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9027d47-fa90-4217-aedd-0e6921d4888a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 8, + "Paragraph": "In accordance with standards and principles of humanitarian assistance CVR does not reward those who have engaged in violent behaviours for their past activi- ties, but rather invests in individuals and communities that actively renounce past violent behaviour and that are looking for a productive and peaceful future. CVR shall not be used to provide material and financial assistance to active members of armed groups.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b562c5d3-c2f7-4d01-acdc-27fa15674782", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 8, + "Paragraph": "Gender-responsive and inclusive CVR shall actively ensure a gender-responsive approach that accounts for the specific needs of men and women, boys and girls. This may include more proportional gender representation within DDR/CVR sections, among CVR project implementing partners, within PSCs (or equivalent bodies), and among individual and community beneficiaries. The inclusion of women across all aspects of CVR strengthens the overall legitimacy and credibility of the enterprise. Moreover, developing the agency of women, girls and youth will enhance their political and social influence in civic associations and their authority in relation to economic productivity, thereby reducing violence. CVR can also incorpo- rate measures to challenge harmful notions of masculinity and engage with men and boys to promote behaviours and attitudes that value gender equality and non-violence. In some settings, there may be strong sociocultural and economic constraints to expanding women\u2019s representation in PSCs or among project beneficiaries. To mitigate these challenges, DDR practitioners1 have introduced quota systems requiring a min- imum level of female participation (30%) in PSCs and among selected projects (30% of projects must directly support women\u2019s specific needs). These quota systems shall be discussed with national counterparts at the outset of UN engagement in CVR and ex- plained to all personnel and partners working on CVR programmes at the subnational and local levels. All CVR projects should report on the gender and age dimensions of PSCs as well as on CVR projects themselves. Introducing gender- and age-specific quotas in CVR project tenders should also mitigate discriminatory practices. Likewise, DDR practitioners shall ensure that any public works projects selected for support are designed in a way that respects the rights and specific needs of every person. 1\tIn this module the term \u2018DDR practitioners\u2019 refers to individuals who work on CVR programmes in a setting of armed conflict. In mission contexts, these individuals may work in either UN mission DDR or CVR sections. CVR shall be inclusive to the extent that it focuses not only on former combatants, but also on at-risk children and youth (male and female) as well as a wide range of community members living in volatile areas and in need of assistance. CVR shall be aligned with a \u2018rights-based\u2019 approach, in that processes adhere to international hu- man rights law and standards. For example, all community members in selected areas should benefit from interventions without discrimination. CVR shall also be tailored to address distinct ethnic, religious and other groups to the extent possible. Specifically, training, education and outreach initiatives that pro- mote civic education, life and parenting skills, and psychosocial support, education and counselling should reach across specific needs groups. By advocating for a plural caseload, CVR should help to promote more responsible civic engagement, a key fea- ture of social cohesion.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "b5bd6486-7b39-4698-8e66-a15f39297727", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 9, + "Paragraph": "Conflict sensitive In all cases, CVR shall do no harm. When projects and implementing partners are not adequately monitored and evaluated, CVR support can be channeled to one group at the expense of others. Moreover, communities in resource scarce and inaccessible areas that are not included in CVR may resent being left out. Some population groups may feel legitimately abandoned and resort to crime and banditry. In some cases, this may result in increases in interpersonal violence in the home, including domestic and child abuse, or increases in sexual or gender-based violence. Communities that are included in CVR programmes may also have unrealistic expectations and cre- ate problems if they feel they are not ade- quately benefiting from them. CVR should have a whole of community and equity focus, as the privileging of some geographic areas for CVR over others may result in disputes. Negative perceptions of exclusion and potential additional grievances should be anticipated and accounted for in DDR practitioners\u2019 conflict assessments.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "36c84d11-9ea5-4016-9bb1-c9d842352c7f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 9, + "Paragraph": "Context specific There is no single template for CVR, and the vast diversity of CVR programmes is by design: form follows function. As a practice area, CVR is continuing to evolve in both mission and non-mission settings. Whether implemented through the UN or through national and community-based non-governmental organizations, CVR can adapt and change over time, even in a single context.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "886378ca-9081-4b97-ba7f-ecaf658468f0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 9, + "Paragraph": "Nationally and locally owned CVR programmes are ultimately the responsibility of local, national and subnational governments and non-government partners. Yet in many settings, public and civil soci- ety capacities may be exceedingly weak. Where possible and appropriate, CVR should aim to reinforce the legitimacy, credibility and capacity of state and non-governmental partners. While guided by violence reduction imperatives, implementing partners and projects should also be selected on the basis of promoting local and national ownership. Leadership is required from government entities including, as appropriate, a national DDR commission (if one exists) or equivalent entity. In cases where government delivery of CVR is not feasible, DDR practitioners should seek to foster institutional capacities and representation. The goal in all cases must be to strengthen, not replace, state and non-state capacities. Although typically short to medium term, CVR programmes shall be strongly aligned with national and community security priorities, based on needs assessment and tailored to local capacities. Defining what security means for a particular com- munity should be part of the initial first steps. CVR should allow for direct dialogue, technical engagement, implementation and outreach with a wide array of stakeholders from the national to the community level. By working directly with affected commu- nities and local governments, CVR can help lay the foundation for stabilization and allow for recovery and reconstruction. The sustainability of CVR projects during and after they are launched requires the formation of a strong partnership with public, pri- vate and non-governmental authorities. Strategies to embed state partners and private- sector and civil society groups in CVR project design, planning, implementation and monitoring are pathways to facilitate handovers. CVR is bottom-up in orientation and should devolve decision-making, project design, implementation, and monitoring and evaluation to the local level. While the strategic direction of CVR programmes should be set by government personnel with support from the UN, decisions related to project selection and execution, and monitor- ing and evaluation, should be delegated to PSCs and local project implementers. PSCs are typically composed of local community members and leaders and should ensure representation of minority groups, women and youth. Subnational government, pri- vate-sector and civil society representatives may also be included. If alternate institu- tions already exist (such as local peace and development committees), then they should be harnessed (subject to the usual due diligence) and steps should be taken to ensure that they are representative of the broader society. DDR practitioners should ensure that once selected, CVR projects are mediated, to the extent possible, by local counterparts \u2013 at the communal, county, municipal or neighbourhood level. CVR may build trust and confidence \u2013 and stimulate local eco- nomic activity \u2013 by recruiting implementing partners and engineering support locally. When drawing on local pools of talent and expertise, it is important to explore ways that CVR projects can continue after funding ends.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "80098bf9-9f95-4901-8b98-1dc392833673", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 10, + "Paragraph": "Integrated CVR should strengthen a coordinated and integrated UN approach to addressing security threats in mission and non-mission settings. CVR can and should involve, where realistically possible, a range of UN agencies and international and national partners in the design, implementation and evaluation of specific activities. Because CVR exists at the intersection of a wide range of agendas and sectors, clear and predict- able direction is essential. CVR shall contribute to the UN \u201cdelivering as one\u201d. At a minimum, CVR pro- grammes should not compete with or duplicate other initiatives carried out by UN agencies, funds and programmes as well as those fielded by national and international partners. CVR programmes may often be implemented in contexts where development, humanitarian and peace actors and interventions co-exist. To maximize complemen- tarity and coordination, CVR strategies shall be guided by a clear set of objectives and targets, as well as a theory of change. Where feasible and appropriate, partnerships should be pursued.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f37f4ca6-c8f2-4f08-8c21-9017398d6713", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 11, + "Paragraph": "Well planned CVR programmes shall aim to be data-driven and evidence-based. Monitoring and evaluation measures shall be prepared before CVR programmes are started and ap- plied throughout the entire life cycle of the intervention (see IDDRS 3.50 on Monitoring and Evaluation). Relevant baseline assessments, the collection of gender and sex-dis- aggregated data on project participants, and mid- and end-term evaluations shall be anticipated and budgeted for by DDR practitioners well in advance. Data collection and retention policies for implementing partners and DDR practitioners shall also include privacy provisions, including procedures on data retention, sharing and disposal. The progress of CVR programmes shall be regularly analysed and communicated to rele- vant partners to ensure that core objectives are achieved, and that mitigation strategies are prepared when they are not.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "25fc03da-a2ee-4c20-9e45-7f505c82eef0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 11, + "Paragraph": "The role of CVR within a DDR process DDR practitioners should, at the outset of a CVR programme, agree on a common un- derstanding of the role of CVR within the DDR process, including its possible rela- tionship to a DDR programme, to other DDR-related tools (such as transitional WAM), and to reintegration support (see IDDRS 2.10 on The UN Approach to DDR). Achieving shared clarity of purpose between national and local stakeholders, the UN and the entities responsible for coordinating CVR is critical. The target groups for CVR programmes may vary according to the context. (See section 6.4.) However, four categories stand out: Former combatants who are part of an existing UN-supported or national DDR programme. These typically include ex-combatants and persons formerly associat- ed with armed groups who are waiting for support and could be perceived as a threat to broader security and stability. If reintegration support is delayed, CVR can serve as a stop-gap measure, providing temporary reinsertion assistance for a defined period (6\u201318 months) (also see IDDRS 4.20 on Demobilization). Members of armed groups who are not formally eligible for a DDR programme because their group is not signatory to a peace agreement. These groups may include rebel factions, paramilitaries, militia groups, members of armed gangs or other entities that are not part of a peace agreement. This category may include individuals who voluntarily leave active armed groups, including those that are designated as terrorist organizations by the United Nations Security Council (see IDDRS 2.11 on The Legal Framework for UN DDR). The status of these individuals and armed groups must be analysed and specified to mitigate any risks associated with their inclusion in CVR programmes. Individuals who are not members of an armed group, but who are at risk of re- cruitment by such groups. These individuals are not part of an established armed group and are therefore ineligible to participate in a DDR programme. They do, however, exhibit the potential to build peace and to contribute to the prevention of recruitment in their community. This wide category of beneficiaries can include male and female children and youth (see IDDRS 5.20 on Children and DDR and 5.30 on Youth and DDR). Designated communities that are susceptible to outbreaks of violence, close to cantonment sites, or likely to receive former combatants. In some cases, CVR may target communities and neighbourhoods that are situated close to cantonment sites and/or vulnerable to high rates of political violence, organized crime, or sex- ual or gender-based violence. CVR can also be focused on a sample of productive members of a community to enhance their potential to absorb newly reinserted and reintegrated former combatants.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "9402d6b7-ef31-4c0f-801f-0a48d899e591", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 12, + "Paragraph": "CVR in support of and as a complement to a DDR programme CVR may be pursued before, during and after DDR programmes in both mission and non-mission settings. (See Table 1 below.)", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "421657a1-aabc-4bc8-84bf-f7188b6da8ed", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": null, + "Paragraph": "CVR may be undertaken prior to a DDR programme. Past experience has shown that military commanders can sometimes try to recruit additional group members during negotiation processes in order to strengthen their troop numbers and conse- quent influence at the negotiating table. Similarly, previous experience has shown that imminent access to a DDR programme may have the perverse incentive of encouraging recruitment. CVR can counter this possibility, by fostering social cohesion and providing alternatives to joining armed groups. CVR may also be undertaken in parallel with DDR programmes. For example, CVR programmes can be implemented near cantonment sites for a number of reasons. Firstly, there may be community resistance to the nearby cantoning of armed forces and groups. CVR can respond to this while also showing community members that ex-combatants are not the only ones to benefit from the DDR process. CVR can also help to mitigate insecurity around cantonment sites, particularly if cantonment goes on for longer than anticipated. Even in communities that are not close to cantonment sites, CVR can be undertaken parallel to a DDR programme in order to strengthen the capacities of communities to absorb former combatants and to reduce tensions that may be caused by the arrival of ex-combatants and associated groups. More specifically, over the short to medium term, CVR can equip communities with dispute mechanisms as well as community dialogue mechanisms to manage grievances and stimulate local economic activity that benefits a wider population. CVR can also be used as a means of addressing armed groups that have not signed on to a peace agreement. The aim of CVR in this context would be to minimize the potentially disruptive effects that non-signatory groups can have on an ongoing DDR programme. Parallel to DDR programmes, CVR can also play a critical role in strengthen- ing reinsertion efforts and bridging the so-called \u2018reintegration gap\u2019. In mission set- tings, CVR will be funded through the allocation of assessed contributions. Therefore, if DDR programmes are unable to mobilize sufficient reintegration assistance, CVR may smooth the transition through the provision of tailored reinsertion assistance for ex-combatants and associated groups and the communities to which they return. For this rea- son, CVR is sometimes described as a stop-gap measure. In non-mission settings, funding for CVR and reintegration support will depend on the allocation of national budgets and/or vol- untary contributions from donors. Therefore, in instances where CVR and support to communi- ty-based reintegration are both envisaged in a non-mission setting, they should, from the outset, be planned and implemented as a single and continuous programme. The distinctions between CVR and reinsertion as part of a DDR programme are outlined in Table 2 below. CVR may also be appropriate after a formal DDR programme has ended. For ex- ample, CVR may be administered after a DDR programme in combination with transi- tional weapons and ammunition management (WAM) in order to bolster resilience to (re-)recruitment and to mop up or safely register and store any remaining civilian-held weapons (see IDDRS 4.11 on Transitional WAM and section 5.3 below). CVR may also provide a constructive transitional function, particularly if reintegration support is ended prematurely. Any plans to maintain CVR activities after a DDR programme should be agreed with relevant stakeholders.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fc953eac-b91c-471c-9126-a3ff38c31ac0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 14, + "Paragraph": "CVR in the absence of DDR programmes CVR may also be used in the absence of a DDR programme. (See Table 3 below.) CVR can be used to build confidence between warring parties and to show the possible dividends of future peace. In turn, this may help to foster an environment that is con- ducive to the signing of a peace agreement. It is possible that DDR processes will not include DDR programmes, either because the preconditions for DDR programmes are not present or because alternative meas- ures are more appropriate. For example, a local-level peace agreement may include provisions for CVR rather than a DDR programme. These local-level agreements can", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fc73eb8d-9547-4cc9-aa28-78d428408034", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 15, + "Paragraph": "TABLE 2: DISTINCTIONS BETWEEN REINSERTION AND CVR take many different forms, including (but not limited to) local non-aggression pacts between armed groups, deals regarding access to specific areas and CVR agreements (see IDDRS 2.20 on The Political Dimensions of DDR). Alternatively, in certain cases armed groups designated as terrorist organizations by the United Nations Security Council may refuse to sign peace agreements. Individ- uals who voluntarily decide to leave these armed groups may participate in CVR pro- grammes. However, they must first be screened in order to assess whether they have committed certain crimes, including terrorist acts that would disqualify them from participation in a DDR process (see IDDRS 2.11 on Legal Framework for UN DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "849bddc5-d280-4edc-b161-5cbf0a8eacad", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 15, + "Paragraph": "Relationship between CVR and weapons and ammunition management CVR may involve activities related to collecting, managing and/or destroying weapons and ammunition. Arms control initiatives and potential CVR arms-related eligibility criteria should be in line with the disarmament component of the DDR programme (if there is one), as well as other arms control initiatives running in the country (see IDDRS 4.10 on Disarmament and 4.11 on Transitional Weapons and Ammunition Management).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7af9eff0-d566-4fcb-be0d-d590f90837de", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": null, + "Paragraph": "While not a disarmament program per se, CVR may include measures to pro- mote community or locally led weapons collection and management initiatives, to sup- port national weapons amnesties, and to collect, store and destroy small arms, light weapons, other conventional arms, ammunition and explosives. The collection and destruction of weapons may play an important symbolic and catalytic role in war-torn communities. Although the return of a weapon is not typically a condition of partic- ipation in CVR, voluntary returns may demonstrate the willingness of beneficiaries to engage. Moreover, the removal and/or safe storage of weapons from individuals\u2019 or armed groups\u2019 inventories may help reduce open carrying and home possession of weaponry \u2013 factors that can contribute to violent exchanges and unintentional injuries. Even when weapons are not handed over as part of a CVR programme, it is beneficial to collect information on the weapons still in possession of those participating in CVR. This is because weapons in circulation will continue to represent a risk factor and have the potential to facilitate violence. Expectations should be kept realistic: in settings marked by high levels of insecurity, it is unlikely that voluntary surrenders or amnesties of weapons will meaningfully reduce overall accessibility. DDR practitioners may, in consultation with relevant partners, propose conditions for the submission of weapons as part of a CVR programme. In some instances, modern and artisanal weapons and ammunition have been collected as part of CVR programmes and have later been destroyed in public ceremonies. Weapons and ammunition col- lected as part of CVR programmes should be destroyed, but if the authorities decide to integrate the material into their national stockpiles, this should be done in compliance with the State\u2019s obligations under relevant international instruments and with technical guidelines.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ef1ff7a8-4b11-4ba9-8ab9-777e0c9641cd", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 17, + "Paragraph": "CVR programming The legitimacy and effectiveness of CVR begins and ends with community engage- ment. CVR programmes should not be limited to a small number of partners, but rather include a wide-ranging and representative sample of community stakeholders. Selected partners should be included at all stages of the programming cycle \u2013 project submission, design, development, implementation, communications, and monitoring and evaluation \u2013 in order to help build local capacities and achieve maximum impact. Where counterpart government capacities are weak or compromised, community-level partnerships should be pursued to promote buy-in, to reach difficult-to-access areas, and to help CVR interventions thrive after funding cycles come to an end. At a minimum, CVR strategy and programming shall be aligned with wider na- tional, regional and international stabilization objectives. While the overall strategic direction is determined from above, DDR practitioners should work closely with local intermediaries to ensure that community-driven priorities are front and centre in project selection. This is because community buy-in and local norms and sanctions are critical to limiting the prevalence of violence and helping regulate violence once it has broken out. Local ownership is not an incidental by-product \u2013 it is absolutely essential to CVR effectiveness. CVR programmes are less beholden to a predetermined design than many other stability measures, and they should take advantage of this by incorporating com- munity demands while also ensuring a comprehensive strategy for community security.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ed065fb8-ea48-4a52-8e2b-1a530908b0c6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 17, + "Paragraph": "CVR strategy and coordination mechanisms In both mission and non-mission settings, CVR programmes should be based on a clear, predictable and agile CVR strategy. The strategy shall clearly specify core goals, targets, indicators, and the theory of change and overall rationale for CVR. The strate- gic plan should spell out the division of labour, rules and responsibilities of partners, and their performance targets. CVR programmes are not static and, when political and security dynamics change, shall be regularly adjusted to reflect the new set of circumstances. All updates should be informed by comprehensive conflict and security analysis, consultations with national and international counterparts, and internal mission and United Nations Country Team (UNCT) priorities. Changes in CVR programmes should also ensure that revised tar- gets meet basic results-based practices, are aligned within budgetary constraints, and are informed by high-quality data collection and monitoring systems. While CVR shall be a short-to-medium-term measure, longer-range planning is essential to ensure linkages with broader security, rights-related, gender and develop- ment priorities. These future-looking priorities \u2013 together with potential and actual bridges to relevant UN and non-UN agencies \u2013 should be clearly articulated in the CVR strategy. CVR programme and project documents should highlight partnerships to facilitate sus- tainability. The longer-term potential of CVR should also be noted in the mandate of the National DDR Commission (if one exists) or an equivalent body as well as relevant in- ternational and national development frameworks. Preparing for the end of CVR early on \u2013 and including national government and international donor representatives in the planning process \u2013 is essential for a smooth and sustainable exit strategy. Strategically embedding CVR in national and subnational development frame- works may also generate positive effects. While CVR is not a development activity, in- tegrating CVR into a UN Sustainable Development Cooperation Framework (UNSDCF) and/or national development strategy can pro- vide stronger impetus for coordinated and ad- equately resourced activities. DDR practitioners should therefore be exposed to national, regional and municipal development strategies and pri- orities. At the subnational level, selected CVR projects should be strongly aligned with state, municipal and neighbourhood development pri- orities where possible. Representation of line ministries, secretaries and departments in relevant planning and coordination bodies is strongly encouraged. A number of different coordination mechanisms may guide CVR project selection, implementation, and monitoring and evaluation. Two possible mechanisms are high- lighted below. However, if alternate representative institutions already exist (such as village development committees), then they could be harnessed (subject to the usual due diligence) and steps should be taken to ensure that they are representative of the broader society. Two commonly utilized CVR coordination mechanisms are: Project Selection Committees (PSCs): Community-based PSCs are established in selected areas, include a representative sample of stakeholders, and are responsi- ble for selecting projects that are vetted by the PAC/PRC (see below). All project selection shall comply with gender quotas of a minimum of 30% of projects bene- fitting women, and women\u2019s involvement in 30% of leadership and management positions. A Project Approval/Review Committee (PAC/PRC): A PAC/PRC sets the over- all strategic direction for CVR and vets and approves projects selected by PSCs. The PAC/PRC should exhibit a high degree of clarity on its roles and functions. Such entities meet on a semi-regular basis, usually after a certain number of CVR projects have been presented (a minimum of a week in advance) to PAC/PRC members for consideration. The PAC/PRC may request changes to project proposals or ask for additional information to be provided. The PAC/PRC shall ensure all proposals comply with gender quotas. When the two aforementioned coordination mechanisms exist, individual CVR projects will typically be developed by the PSC, reviewed by the PAC/PRC, and then sent back to the PSC for revision and sign-off. PSCs should also proactively ensure alignment between project activities and (actual or planned) regional and municipal plans and priorities. While a short-to-medium-term focus is paramount, CVR projects that directly and indirectly stimulate development dividends (alongside violence reduc- tion) should be favourably considered. PSCs (or equivalent bodies) may conduct a number of different tasks: identifying prospective partners, developing projects, communicating tender processes, vetting project submissions, monitoring beneficiary performance and quality controls, and trouble-shooting problems as and when they arise. PSCs are typically composed of local community members and local leaders and should ensure representation of minority groups, women and youth. Subnational government, private-sector and civil society representatives may also be included, as may representatives of armed groups. PSCs should meet on a regular prescribed basis and serve as the primary interlocutor with the UN mission (mission settings) or UNCT (non-mission settings), and where relevant (such as in refugee settings) the Humanitarian Country Team (HCT). Representatives of DDR/CVR sections (in mission settings) and of the UNCT (in non-mission settings), should, where practical and appropriate, participate in the PSC. PAC/PRCs (or equivalent bodies) are often responsible for reviewing and approv- ing CVR project submissions, and for asking for changes/further information from the PSC when necessary. PAC/PRCs may be composed of senior representatives from the DSRSG (in mission settings) or senior representatives of the UNCT (in non-mission set- tings), alongside government officials and other representatives from relevant UN en- tities. These two aforementioned coordination entities are intended to properly vet pro- ject partners and ensure a high degree of quality control in project execution. In all cases, Standard Operating Procedures (SOPs) shall be developed to help clarify overall goals, structure and approaches for CVR, particularly the nature of PAC/PRCs, PSCs, target groups and criteria for projects. These SOPs shall be regularly adapted and up- dated in line with realities on the ground and the priorities of the mission or the UNCT in non-mission settings.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d4c0179a-51d9-4e2a-b0c0-14846787e71f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 19, + "Paragraph": "CVR in mission and non-mission settings If the priority is for rapid delivery or if local government and non-government capaci- ties are weak, then agreed-upon CVR responses should be administered directly by the UN. However, the UN may also work indirectly, by supporting local partners.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "426fd863-8323-4194-a19f-b77b2870ac8b", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 19, + "Paragraph": "Mission settings In mission settings, CVR may be explicitly mandated by a UN Security Council and/ or General Assembly resolution. CVR will therefore be funded through the allocation of assessed contributions. The UNSC and UNGA directives for CVR are often general, with specific pro- gramming details to be worked out by relevant UN entities in partnership with the host government. In mission settings, the DDR/CVR section should align CVR stra- tegic goals and activities with the mandate of the National DDR Commission (if one exists) or an equivalent government-designated body. The National DDR Commission, which typically includes representatives of the executive, the armed forces, police, and relevant line ministries and departments, should be solicited to provide direct inputs into CVR planning and programming. In cases where government capacity and volition exist, the National DDR Commission may manage and resource CVR by setting targets, managing tendering of local partners and administering financial oversight with donor partners. In such cases, the UN mission shall play a supportive role. Where CVR is administered directly by the UN in the context of a peace support operation or political mission, the DDR/CVR section shall be responsible for the design, development, coordination and oversight of CVR, in conjunction with senior represent- atives of the mission. DDR practitioners shall be in regular contact with representatives of the UNCT as well as international and national partners to ensure alignment of pro- gramming goals, and to leverage the strengths and capacities of relevant UN agencies and avoid duplication. Community outreach and engagement shall be pursued and nurtured at the national, regional, municipal and neighbourhood scale. The DDR/CVR section should typically include senior and mid-level DDR officers. Depending on the budget allocated to CVR, personnel may range from the director and deputy director level to field staff and volunteer officers. A dedicated DDR/CVR team should include a selection of international and national staff forming a unit at headquarters (HQ) as well as small implementation teams at the forward operating base (FOB) level. It is important that DDR practitioners are directly involved in DDR strategy development and decision-making at the HQ. Likewise, regular com- munication between DDR field personnel is crucial to share experiences, identify best practices, and understand wider political and economic dynamics. The UN DSRSG shall establish a DDR/CVR working group or an equivalent body. The working group should be co-chaired by lead agencies, with due consideration for gender equality, youth and child protection, and support to persons with disabilities. The DDR/CVR section, and particularly its field offices, could create a PSC and PAC/PRC. In this event, the PAC/PRC (or equivalent body) should liaise with UNCT partners to align stability priorities with wider development concerns. It may be appro- priate to add an additional support mechanism to oversee and support project partners. This additional support mechanism could be made up of members of the DDR/CVR section who could conduct a variety of tasks, including but not limited to support to the development of project proposals, support to the finalization of project submissions and the identification of possible implementing partners able to work in hotspot sites. Whichever approach is adopted, the DDR/CVR section should ensure transparent and predictable coordination with national institutions and within the mission or UNCT. Where appropriate, DDR/CVR sections may provide supplementary training for implementing partners in selected programming areas. The success or failure of CVR depends in large part on the quality of the partners and partnerships, so it is critical that they are properly vetted.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d0c8443e-b42a-4237-b782-1f78194ee57d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 19, + "Paragraph": "Non-mission settings In non-mission settings, the UNCT will generally undertake joint assessments in response to an official request from the host government, regional bodies and/or the UN Resident Coordinator (RC). These official requests will typically ask for assistance to address particular issues. If the issue concerns armed groups and their active and former members, CVR as a DDR-related tool may be an appropriate response. However, it is important to note that in non-mission settings, there may already be instances where community-based programming at local levels is used, but not as a DDR-related tool. These latter types of responses are anchored under Agenda 2030 and the United Nations Sustainable Development Cooperation Framework (UNSDCF), and have links to much broader issues of rule of law, community security, crime reduction, armed vio- lence reduction and small arms control. If there is no link to active or former members of armed groups, then these types of activities typically fall outside the scope of a DDR process (see IDDRS 2.10 on The UN Approach to DDR). In non-mission settings where there has been agreement that CVR as a DDR- related tool is the most appropriate response to the presence of armed groups, the UN RC shall establish a DDR/CVR working group or an equivalent body. The working group should be co-chaired by lead agencies, with due consideration for gender equality, youth and child protection, and support to persons with disabilities. In non-mission settings there may not always be a National DDR Commission to provide direct inputs into CVR planning and programming. However, alternative interlocutors should be sought \u2013 including relevant line ministries and departments \u2013 in order to ensure that the broad strategic direction of the CVR programme is aligned with relevant national and regional stabilization objectives.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "add01be3-7dde-429f-b090-2faef1a9a2d7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 22, + "Paragraph": "Assessments In both mission and non-mission contexts, CVR programmes shall be preceded by regularly updated assessments, including but not limited to: A security and consequence assessment accounting for the costs and benefits of conducting selected activities (and the risks of not conducting them). A comprehensive and gender-responsive baseline assessment of local violence dynamics. This assessment should take note of factors that may contribute to violence (e.g., harmful use of alcohol and drugs) as well as the impact that vio- lence can have on mental health and well-being (e.g., acute stress, grief, depression and Post Traumatic Stress Disorder). It should also explicitly unpack the threats to security for men, women, boys and girls, and analyse the root causes of violence and insecurity, including their gender dimensions. Conflict context analysis. A detailed stakeholder mapping and a diagnostic of the capacities, interests and cohesiveness of communities and national institutions. An assessment of local market conditions. The dynamics of eligible and non-eligible armed groups \u2013 their leadership, internal dynamics, command and control, linkages with elites and external support. Importantly, the privileging of some geographic areas for CVR over others may result in disputes that should be anticipated and accounted for in conflict assessments. While information supplied by security and intelligence units is essential, there is no substitute for grounded diagnostics and mapping by UN field offices, implementing partners and third-party researchers. Assessments can be cross-sectional or ongoing, and should be conducted by national or international experts in partnership with UNCT. Assessments should identify prospective beneficiary groups; assess govern- ment, private and civil society capacities; and review the causes and consequences of organized and interpersonal violence. These assessments are critical for the design of project proposals, setting appropriate benchmarks, and monitoring and evaluation.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "61d13646-b233-43ea-be3d-41329698770a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 23, + "Paragraph": "Target groups and locations The selection of CVR target groups and intervention sites is a political decision that should be taken on the basis of assessments (see section 6.3), and in consultation with national and/or local government authorities. The identification of target groups and locations for CVR should also be informed through: The priorities of the host government and, if in a mission context, the mandate of the mission; and Consultations with UN senior management. DDR practitioners can, where appropriate, adopt broad categories for target groups that can be applied nationally. In some cases, the selection of target groups is made pragmatically based on a list prepared by a PSC (or equivalent body) and/ or implementing partners. Prospective participants should be vetted locally according to pre-set eligibility criteria. For example, these eligibility criteria may require former affiliation to specific armed groups and/or possession of modern or artisanal weapons (see section 4.2). Clear criteria for who is included and excluded from CVR programmes should be carefully communicated in order to avoid unnecessarily inflating expectations and generating tension. One means of doing this is to prepare a glossary with specific selection criteria that can be shared with implementing partners and PSCs. In all cases, DDR practitioners shall ensure that women and girls are adequately represented in the iden- tification of priorities and implementation strategies, by making sure that: Assessments include separate focus group discussions for women, led by female facilitators. Women\u2019s groups are engaged in the consultative process and as implementing partners. The PAC/PRC (or equivalent entity) is 30% female. A minimum of 30% of CVR projects within the broader CVR programme directly benefit women\u2019s safety and security issues. The entire CVR programme integrates and leverages opportunities for women\u2019s leadership and gender equality. Staffing of CVR projects includes female employees. Additional target groups, assessed as having the potential to either amplify or undermine broader security and stability efforts in general, or DDR in particular, may be identified on a case-by-case basis. For example, CVR may be expanded to include newly displaced populations \u2013 refugees and internally displaced people (IDPs) \u2013 that are at risk of mobilization into armed groups or that may unintentionally generate flashpoints for community violence. There may also be possibilities to extend CVR programmes to particular geographic areas and population groups susceptible to out- breaks of violence and/or experiencing concentrated disadvantage. The flexibility to adapt CVR to target groups that may disrupt and impede the DDR process is critical.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e723bd5c-3135-4628-b7d6-b3d637f22c2c", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 24, + "Paragraph": "Types of projects There is tremendous heterogeneity in the types of CVR projects that are implemented as part of CVR programmes, both within and between countries. However, there are also commonalities. All CVR programmes generate interactions with state authorities and/ or stimulate inter- and intra-community dialogue. These communication exchanges not only help to ensure better identification of the types of CVR projects to support, but they can also contribute to the more effective design, implementation, and monitoring and evaluation of CVR. DDR/CVR partners should be aware that some prospective im- plementing partners shall require support in preparing project proposals. Appropriate support mechanisms should be introduced in advance to offer support in relation to proposal writing and reporting processes so as to avoid major delays. A wide array of technical sectors are included in CVR interventions. These include commercial-based projects (e.g., grocery retail, bakeries, tailors, mechanics, salons, agri- cultural production, livestock and animal husbandry activities), social projects (e.g. the construction and maintenance of youth centres, civic education, community reconcilia- tion), infrastructure initiatives (e.g., the construction of roads, bridges, clinics, schools and other labour-based activities involving training, apprenticeship and paid work for ex-com- batants and at-risk groups), security and corrections measures (e.g., community-oriented policing, lighting systems, prevention of gender-based violence and corporal punishment), and weapons and ammunition management activities (e.g., collection, storage, manage- ment and destruction). Table 5 below provides a summary of possible CVR projects. The selection of CVR projects shall be informed by political, climatic and demograph- ic factors as well as the merits of individual project proposals. PSCs and PAC/PRCs (or equivalent entities) may prioritize CVR projects according to the stage of the peace pro- cess (e.g., contingent on the short-term emergency to medium-term recovery needs), geo- graphic location (e.g., water wells and animal husbandry in dry climates and information and communications technology (ICT) training and business apprenticeships in urban settings) and social and identity-related dynamics (e.g., projects tailored to specific reli- gious or ethnic groups). The sequencing and timing of financial support for CVR projects should not be arbitrary, but should account for the specific types of projects approved. For example, financing for agricultural projects may require more rapid disbursement (in line with seasonal imperatives) than other initiatives. It is also critical that implementing part- ners are equipped with the appropriate technical capacities to meet project timelines \u2013 the lack of engineering support, for example, can generate delays and hinder maintenance. DDR practitioners should prioritize project development and financing accordingly. Precisely because CVR is short-to-medium-term, selected projects should also in- clude a basic sustainability plan, including realistic commitments for monitoring and evaluation and details on when and how CVR activities will be handed over in full to", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5c464c78-bfd7-45cb-b4e2-bee391ac1eb6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": null, + "Paragraph": "the national government (see IDDRS 3.50 on Monitoring and Evaluation). Clear provi- sions for these activities should be included (and resources appropriately allocated) in final contracts. Implementing partner contracts should include clauses that specify the maintenance and management of specific assets, together with direction on how the initiative will be sustained after funding comes to an end. Likewise, contracts should specify the requirement to collect minimum qualitative and quantitative information on CVR project outcomes and impacts. Where implementing partners lack such capac- ities or where supplementary training may not be sufficient, DDR practitioners should explore opportunities to facilitate such activities with third parties.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6500099d-71fd-416c-b346-d9a63bb9ab41", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 26, + "Paragraph": "Partnerships and implementation CVR programmes should adopt a graduated approach to implementation. In many cases, it is advisable to start CVR initiatives with an experimental pilot phase of 6\u20138 months. Pilot projects are useful to assess local capacities, identify prospective part- ners and test out community receptivity. An incremental approach may help DDR practitioners sharpen their overall objectives and theories of change, while gradually building up strategic partnerships across government, host communities and interna- tional agencies that are essential for longer-term success. There are potentially strong demonstration effects from successful projects, and these should be advertised where possible. Delays in CVR implementation \u2013 particularly in relation to project selection and project disbursements \u2013 may undermine the credibility of the intervention and gen- erate risks for personnel. Bottlenecks are routine, yet in many cases avoidable. DDR practitioners, implementing partners and PSCs (or equivalent entities) shall set real- istic timelines, manage expectations and ensure regular communication with project beneficiaries. DDR practitioners may also elect to introduce administrative procedures to speed up decision-making on project selection, reduce the number of tranches for projects and prioritize initiatives that are subject to seasonal effects (e.g., planting, har- vest, transhumance, insect-born disease), climatic factors (e.g., rainfall, flooding and droughts), and calendar years (e.g., schooling and holidays). CVR projects should ensure a high degree of oversight and support to benefi- ciaries. Effective CVR is often a function of the quality of field personnel \u2013 including implementing partners \u2013 and their ability to apply a high degree of emotional intelli- gence. Experienced DDR practitioners should have a demonstrated ability to engage with complex social and cultural norms and their intersecting gender dynamics in order to build trust with beneficiaries and affected communities. This engagement frequently requires a minimum competence in the local language(s) together with a developed capacity to empathize and communicate. DDR field practitioners should have the discretion and autonomy to craft inter-agency partnerships, rapidly solve problems in volatile settings, and innovate in moments of crisis. CVR shall involve an array implementing partners and a variety of coordinat- ing mechanisms. The nature of these partnerships and coordination mechanisms shall depend on the national and local context, the extent of capacities on the ground and the resources available. CVR coordination and partnerships should be devolved as much as possible to the local level, and bureaucratic and administrative procedures should be kept to an acceptable minimum. Decisions on the particular form and content of part- nerships and coordination will be informed by the CVR mandate; the peace agreement (if one has been signed); government, donor, and mission and UNCT capacities; and local dynamics on the ground. Partners and coordinating mechanisms may change over time.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5c612c54-0172-4d8b-af09-8853f5b46c38", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 27, + "Paragraph": "Timeframes and budgeting There is no fixed or standard timeframe for CVR. The length of CVR projects varies according to the nature of the context, including the funding source \u2013 whether an assessed budget, a dedicated trust fund, a voluntary contribution or some combination of these options. Specific CVR projects in mission contexts will be no more than one year, whereas this timeframe may be longer in non-mission contexts, particularly when it forms a single programme with reintegration support. Setting a temporal threshold is important to set expectations and to avoid an indefinite continuation of CVR projects. DDR practitioners should also set aside adequate time to undertake due diligence of partners, organize partnership modalities, transfer grants, monitor and evaluate inter- ventions, and communicate results. There are economies of scale that are associated with CVR. Specifically, there are advantages in investing in larger CVR projects with wider caseloads from capital expenditure (CAPEX) and operational expenditure (OPEX) perspectives. Specifically, the initial CAPEX in CVR \u2013 in personnel, transportation, logistics and large project outlays \u2013 can be high. This is because many CVR interventions are frequently pursued in challenging environments: large public works projects often require complex engi- neering support. The marginal OPEX implications of adding additional beneficiaries is comparatively low. CVR may at times be more cost-effective as the size of the caseload grows. There are risks, of course, in that CVR programmes may introduce biases by favouring projects and locations with larger prospective caseloads. In some cases, it may be preferable to explore mobile CVR teams for modest-sized target groups in hard-to-reach areas.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a4cd8598-cabb-4b9c-9d54-f1c78230fbdc", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 27, + "Paragraph": "Communication DDR practitioners should design a robust communications and sensitization plan to reach prospective and actual beneficiaries. The plan should be informed by the baseline assessment (see section 6.3) and by an assessment of how people take up information and what outlets and means are considered most legitimate. These assessments should be adjusted as conditions change on the ground. Outreach can be facilitated by UN rep- resentatives, implementing partners, PSCs (or equivalent entities) and project benefi- ciaries themselves. Public information and sensitization campaigns shall explain CVR objectives, project selection criteria and the timelines involved. The goal is to strengthen the self-selection of prospective participants while also shaping the expectations of in- dividuals and communities. All communications, education and outreach campaigns and activities should be gender-responsive so as to reach women and girls and men and boys. Communications should also be gender-transformative and inclusive. This entails having a balance of voices and visual representations of men, women, boys, girls, minorities and other vulnerable groups, and their active involvement in leader- ship and implementation of outreach and education activities. The communications plan for a CVR programme should have clearly identified objectives, core stakeholder groups and expected results. Such plans can be delivered through television, radio, print outlets, social media, direct SMS outreach and other platforms. Ensuring a minimum level of transparency in CVR measures is critical in order to manage stakeholder expectations, be they government counterparts, interna- tional and national partners, or beneficiaries. CVR communications activities in mission and non-mission settings should be aligned to wider UN security, stability and devel- opment priorities. The communications plan can be administered in mission and country office settings through, where appropriate, a public sensitization and outreach (PSO) unit or equivalent body. All plans shall be clear about the intended primary and intermediate audiences, the languages being used, the underlying behavioural shifts that are expected (theory of change), the particular approaches to addressing the needs of women and girls as well as the protection of children, the most appropriate methods and modes for delivering sensitization material, the training measures for staff and communicators, and the expected indicators to track outputs and outcomes. Communications strate- gies should support positive gender norms and the positive roles played by men and women.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.json b/src/Static/data/json/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.json new file mode 100644 index 0000000..34c501c --- /dev/null +++ b/src/Static/data/json/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.json @@ -0,0 +1,458 @@ +[ + { + "ID": "d95a3f56-3a62-44ab-a6ab-b08db0c34583", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": null, + "Paragraph": "Summary The reintegration of ex-combatants and persons formerly associated with armed forces and groups is a long-term process with social, economic and political dimensions. It may be influenced by factors such as the choices and capacities of individuals to shape a new life, the security situation and perceptions of security, family and support net- works, and the psychological well-being and mental health of ex-combatants and the wider community. Reintegration processes are part of the development of a country. Facilitating reintegration is therefore primarily the responsibility of national Govern- ments and their institutions, with the international community playing a supporting role if requested. Efforts to support the transition of ex-combatants and persons formerly associated with armed forces and groups into civilian life have typically taken place as part of post-conflict DDR programmes. During DDR programmes assistance is often given collectively, to large numbers of DDR participants and beneficiaries, as part of the im- plementation of a Comprehensive Peace Agreement (CPA). However, when the precon- ditions for a DDR programme are not in place, reintegration support can still play an important role in sustaining peace. The twin UN resolutions on the 2015 peacebuilding architecture review, General Assembly resolution 70/262 and Security Council resolu- tion 2282, recognize that efforts to sustain peace are necessary at all stages of conflict. This renewed UN policy engagement emerges from the need to address ongoing armed conflicts that are often protracted and complex. In these settings, individuals may exit armed forces and groups during all phases of an armed conflict. This type of exit will often be individual and can take different forms, including voluntary exit or capture. In order to support and strengthen the foundation for sustainable peace, the reintegration of ex-combatants and persons formerly associated with armed forces and groups should not only be supported after an armed conflict has ended. Instead, reintegration support should be considered at all times, even in the absence of a DDR programme. This support may include the provision of assistance to those who return to peaceful areas of the conflict-affected country, and to those who return to peaceful countries of origin, in the case of foreign fighters. When reintegration support is provided during ongoing conflict, it should aim to strengthen resilience against re-recruitment and also to prevent additional first-time recruitment. To do this it is important to strengthen what still works, including the residual capacities for peace that people and communities draw on in times of conflict. The strengthening of peace capacities can be based on the identification of the rea- sons why some individuals do not join armed groups, and why some combatants leave armed groups and turn away from armed violence. There will be additional challenges when supporting reintegration during on- going conflict. Support to reintegration as part of sustaining peace requires analysis of the intended and unintended outcomes precipitated by engagement in dynamic, conflict-affected environments. DDR practitioners and others involved in the provision of reintegration support should understand how engagement in such contexts has im- plications for social relations/dynamics \u2013 positive and negative \u2013 so as to \u2018do no harm\u2019 and, in fact, \u2018do good\u2019. It should also be recognized that the risk of doing harm is greater in ongoing conflict contexts, thereby demanding a higher level of coordination among existing and planned programmes to avoid the possibility that they may negatively affect each other. In order to support the humanitarian-development-peace nexus, rein- tegration programme coordination should extend to broader programmes and actors.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "68d0f3d3-8808-4e57-926d-32f27415244b", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 3, + "Paragraph": "Module scope and objectives This module explains the shift introduced by IDDRS 2.10 on The UN Approach to DDR concerning reintegration support to ex-combatants and persons formerly associated with armed forces and groups. Reintegration support has long been presented as a component of post-conflict DDR programmes, i.e., DDR programmes supported when the following preconditions are in place: The signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; Trust in the peace process; Willingness of the parties to the armed conflict to engage in DDR; and A minimum guarantee of security. The revised UN Approach to DDR recognizes the need to provide reintegration support even when the above preconditions are not in place. The aim of this support is to assist the sustainable reintegration of those who have left armed forces and groups even before peace agreements are negotiated and signed, responding to opportunities as well as humanitarian, developmental and security imperatives. The objectives of this module are to: Explain the implications of the UN\u2019s sustaining peace approach for reintegration support. Provide policy guidance on how to address reintegration challenges and realize reintegration opportunities across the peace continuum. Consider the general issues concerning reintegration support in contexts where the preconditions for DDR programmes are not in place. DDR practitioners involved in outlining and negotiating the content of reintegra- tion support with Governments and other stakeholders are invited to consult IDDRS 4.30 on Reintegration for specific programmatic guidance on the various ways to sup- port reintegration. Options and considerations for reintegration support to specific needs groups can be found in IDDRS 5.10 on Women, Gender and DDR; IDDRS 5.20 on Children and DDR; and IDDRS 5.30 on Youth and DDR. Finally, as reintegration support may involve a broad array of practitioners (including but not limited to \u2018DDR practitioners\u2019), when appropriate, this module refers to DDR practitioners and others involved in the planning, implementation and man- agement of reintegration support.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9d800a04-79fe-4ba5-aa5a-0f96f6a82664", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Reintegration is the process by which ex-combatants acquire civilian status and gain sustainable employment and income. Reintegration is essentially a social and economic process with an open time frame, primarily taking place in communities at the local level. It is part of the general development of a country and a national responsibility and often necessitates long-term external assistance. Recognizing new developments in the reintegration of ex-combatants and as- sociated groups since the release of the 2005 note on administrative and budgetary aspects of the financing of UN peacekeeping operations (A/C.5/59/31), the third report of the Secretary-General on DDR (A/65/741), issued in 2011, includes revised policy and guidance. It observes that, \u201cin most countries, economic aspects, while central, are not sufficient for the sustainable reintegration of ex-combatants. Serious consideration of the social and political aspects of reintegration\u2026is [also] crucial for the sustainability and success of reintegration programmes\u201d, including psychosocial and psychological support, clinical mental health care and medical health support, as well as reconciliation, access to justice/transitional justice and participation in political processes. Addition- ally, the report emphasizes that while \u201creintegration programmes supported by the United Nations are time-bound by nature\u2026the reintegration of ex-combatants and associated groups is a long-term process that takes place at the individual, community, national and regional levels, and is dependent upon wider recovery and development.\u201d Sustaining peace approach: UN General Assembly resolution 70/262 and UN Security Council resolution 2282 on sustaining peace outline a new approach for peace- building. These twin resolutions demonstrate the commitment of Member States to strengthening the United Nations\u2019 ability to prevent the \u201coutbreak, escalation, contin- uation and recurrence of [violent] conflict\u201d, and \u201caddress the root causes and assist parties to conflict to end hostilities\u201d. Sustaining peace should be understood as encom- passing not only efforts to prevent relapse into conflict, but also to prevent lapse into conflict in the first place. Humanitarian-development-peace nexus: Humanitarian, development and peace actions are linked. The nexus approach refers to the aim of strengthening collaboration, coherence and complementarity. The approach seeks to capitalize on the comparative advantages of each sector \u2013 to the extent that they are relevant in a specific context \u2013 in order to reduce overall vulnerability and the number of unmet needs, strengthen risk management capacities and address the root causes of conflict. Resilience: Resilience refers to the ability to adapt, rebound, and strengthen function- ing in the face of violence, extreme adversity or risk. For the purposes of the IDDRS, with a particular focus on reintegration processes, it refers to the ability of ex-com- batants and persons formerly associated with armed forces and groups to withstand, resist and overcome the violence and potentially traumatic events experienced in an armed force or group when coping with the social and environmental pressures typ- ical of conflict and post-conflict settings and beyond. The acquisition of social skills, emotional development, academic achievement, psychological well-being, self-esteem, coping mechanisms and attitudes when faced with stress and recovery from potential- ly traumatic events are all factors associated with resilience. Vulnerability: In the IDDRS, vulnerability is a result of exposure to risk factors, and of underlying socio-economic processes which reduce the capacity of populations to cope with risks. In the context of reintegration, vulnerability therefore refers to those factors that increase the likelihood that ex-combatants and persons formerly associated with armed forces and groups will be affected by violence, resort to it, or be drawn into groups that perpetrate it.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6c75631d-5021-4267-b56e-fae6911dddcf", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to reinte- gration:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "82c4493d-94ad-4724-b6bf-2bd910853ee6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 5, + "Paragraph": "Criteria for participation/eligibility When there is a DDR programme, eligibility shall be defined within a national DDR programme document. Different groups of those eligible will participate in each com- ponent of the DDR programme: combatants and persons associated with armed groups carrying weapons and ammunition shall participate in disarmament. In addition to these groups, all other unarmed individuals considered members of an armed force or group shall participate in demobilization. Reintegration support should be provided not only to ex-combatants, but also to persons formerly associated with armed forces and groups, including women and children among these categories, and, where appro- priate, dependants and host community members. When the preconditions for a DDR programme are not present, or when combatants are ineligible to participate in DDR programmes, eligibility for reintegration support shall be decided by relevant nation- al and local authorities, with support, where appropriate, from relevant UN mission entities as well as UN agencies, programmes and funds. Eligibility for reintegration support in such cases should also take into account ex-combatants and persons formerly associated with armed forces and groups, including women, and, where appropriate, dependants and host community members. Children associated or formerly associated with armed groups should always be encouraged to participate in DDR processes with no eligibility limitations.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dcfdceca-6643-46df-ab97-ef542e13ccb0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 6, + "Paragraph": "3.2.2 Unconditional release and protection of children Children who were recruited by armed groups may have experienced significant harm and have specific needs. Furthermore, children who joined or supported armed forces or groups may have done so under duress, coercion or manipulation. For many children and youth who have been associated with armed forces or groups, the focus should be on reintegration and highlighting their self-worth and their ability to contribute to society, as well as offering alternatives to participation in armed groups in the form of training and education. At the same time, opportunities should be provided to other children and youth in the area, so as not to create tension or stigma. The following principles regarding reintegration support to children and youth apply: Children shall be treated as children and, if they have been associated with armed forces or groups, as survivors of violations of their rights. They shall always be referred to as children. In any decision that affects children, the best interests of the child shall be a pri- mary consideration. International legal standards pertaining to children shall be applied. States shall engage children\u2019s families to support rehabilitation and reintegration. In accordance with standards and principles of humanitarian assistance Efforts shall be made to ensure that serious violations of human rights and humani- tarian law by ex-combatants and persons formerly associated with armed forces and groups are dealt with through appropriate national and international legal and/or transitional justice mechanisms (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.20 on Transitional Justice and DDR). Mechanisms shall also be designed and included in reintegration programmes to prevent those who have committed violations of human rights from going unpunished. In addition, where appropriate, community-based reintegration programmes shall explore opportunities to contribute to reparations for victims.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b9b9cfce-24e3-4979-b8dc-03ac35d979c1", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 7, + "Paragraph": "Gender-responsive and inclusive Non-discrimination and fair and equitable treatment of participants and beneficiaries are core principles of the UN\u2019s involvement in reintegration support. Differences exist among the people who benefit from reintegration support \u2013 which include, but are not limited to, sex, age, class, religion, gender identity, and physical, intellectual, psychosocial and social capacities \u2013 all of which require specific responses. Reintegration support shall therefore be based on the thorough profiling of ex-combatants and persons formerly associated with armed forces and groups, as well as assessments of the social, economic, political and cultural contexts into which they are reintegrated, in order to support specific needs. In general, individual reintegration support shall shift focus from uni- form entitlements provided to individuals with the status of ex-combatants or persons formerly associated with armed forces and groups. Instead, reintegration support shall aim to fulfil specific needs and harness individual capacities. Gender refers to the socially constructed attributes and opportunities associated with being male or female and the relationships between and among women, men, girls and boys, in a certain sociocultural context (see IDDRS 5.10 on Women, Gender and DDR). Gender-responsive reintegration programmes shall be planned, implemented, monitored and evaluated in a manner that meets the different needs of female and male ex-combatants, supporters and dependents. Understanding and addressing gender always requires careful analysis, looking into the responsibilities, activities, interests and priorities of women and men, and how their experiences of problems may differ. Planning for reintegration support shall therefore be based on sex-disaggregated data so that reintegration programmes can identify the specific needs and potential of women, men, boys and girls. These needs may include, among others, access to land, child- care facilities, property and livelihoods, resources and rehabilitation following sexual violence, and support to overcome socialization to violence and substance abuse. In some cases, women may have \u2018self-demobilized\u2019 or been excluded from DDR programmes by military commanders (see IDDRS 4.20 on Demobilization). When this happens, and if women so choose, efforts should be made to provide them with access to the reintegration programme. Female-specific reintegration programmes may also be created to address these women. To implement gender-responsive reintegration programmes, UN and Government programme staff, implementing partners and other stakeholders should receive training in gender-sensitive approaches and good practices, as well as other capacity-building support. Gender-sensitivity requires that the monitoring and evaluation framework for reintegration support shall include gender-related indicators and specific assessments on gender. Reintegration programmes shall ensure specific funding for such initiatives and shall work to monitor and evaluate their gender appropriateness.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "bca17ffc-b591-43c6-8afd-fd63fda8d252", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 7, + "Paragraph": "Conflict sensitive A conflict-sensitive approach involves ensuring a sound understanding of the two-way interaction between activities and context, and acting to minimize the negative impacts and maximize the positive impacts of intervention on conflict, within an organization\u2019s given mandate. The first principle that is usually applied in a conflict-sensitive ap- proach is do no harm; however, conflict sensitivity goes beyond this. To do no harm and to support local capacities for peace requires: An awareness of both the intended and unintended consequences of reintegration programming; Analysis of the conflict context and the programme, examining how reintegration support interacts with the conflict; A willingness to adapt, create options and, if needed, redesign programmes to improve quality; Careful reflection on staff conduct and organizational policies, to ensure that the behaviour of individuals and organizations meets the highest standards of ethics and professionalism. Conflict analysis and risk mitigation measures shall be applied as key components of a conflict sensitivity approach, as well as integrated into monitoring and evaluation processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "fe988268-b89b-4eca-9ec5-95a6b4ff0459", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 8, + "Paragraph": "Context specific Planning for the effective and sustainable reintegration of ex-combatants and persons for- merly associated with armed forces and groups shall be based, among other aspects, on a comprehensive understanding of the local context. In settings where there is no ceasefire and/or peace agreement, the ex-combatant status of those who \u2018self-demobilize\u2019 may be un- clear. Where feasible, DDR practitioners should work to clarify the status of ex-combatants through the establishment of a clear framework. However, where this is not feasible, the status of ex-combatants must still be analysed, at the programme level, in order to ensure that rein- tegration support is not provided to individuals who are active members of armed groups.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d70ffc3c-b606-404d-ac77-1d753b8129ee", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 8, + "Paragraph": "Flexible To respond to contextual changes and remain relevant, reintegration support shall be designed in a way that allows for adaptability. While the design of a reintegration pro- gramme is based on initial assessments, it is also important to note that many contex- tual factors will change significantly during the course of the programme, such as the wishes and ambitions of ex-combatants and persons formerly associated with armed forces and groups, the labour market, the capacities of service providers, the capacities of different Government bodies, and the agendas of political parties and leaders in power. Furthermore, new or broader recovery plans may be designed during the time frame of the reintegration programme, to which the latter should be linked. The need for flexibility will be particularly acute in ongoing conflict settings where the risks of doing harm, including inadvertently fuelling recruitment to active armed groups, must be carefully assessed. A flexible approach should allow for the early identification of these risks and the development of risk mitigation strategies. It is important to note that, despite the benefits of a flexible approach, providing ad hoc reintegration support can be problematic. One of the challenges is to provide clar- ity to ex-combatants, persons formerly associated with armed forces and groups, and broader communities early on about the reintegration support to be provided and the benefits and eligibility criteria involved, while on the other hand maintaining sufficient flexibility in the programme to be able to respond to changing needs and circumstances.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "f6cb8572-48ec-4c77-a6a1-ae70949b4ec3", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 9, + "Paragraph": "Accountable and transparent Reintegration support shall be based on the principles of accountability and transpar- ency. Public information and communications strategies and policies shall therefore be drawn up and implemented as early as possible. Public information allows affected participants and beneficiary groups to receive accurate information on the principles and procedures of reintegration support. Efforts to provide public information and sensitization concerning reintegration efforts may also benefit from collaboration with women\u2019s and men\u2019s organizations to address gender-specific needs (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Reintegration support measures and expected results shall be reflected in key in- dicators. Defining indicators in a participatory manner helps to clarify expectations and contributes to a broad consensus on realistic targets. Individuals or organizations responsible for monitoring shall also be agreed upon, as well as how frequently moni- toring reports should be produced. Relevant entities of the UN system shall remain transparent vis-\u00e0-vis the Govern- ment and its institutions in regard to activities and plans in support of reintegration, particularly if not fully agreed upon in advance.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "21f7be2e-404d-4292-b093-e70695522871", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 9, + "Paragraph": "Nationally and locally owned Reintegration support provided by the UN system shall be based on a partnership with the national authorities and other stakeholders. The primary responsibility for the reintegration strategy and policy, as well as the successful outcome of the programme, rests with national authorities and their local institutions. UN support to reintegration programmes shall include efforts to develop the capacities of receiving communities and local and national authorities. UN-supported DDR processes may take place when a recently established Government is still finding a political balance between (remnants of) the previously combating parties, which could include members of the Government itself (see IDDRS 2.20 on The Politics of DDR). The national institutions in charge of reintegration support may operate in a fluid political environment, which may include regular changes in institutional set-up and personnel. In these settings, international actors shall not act as substitutes for national authorities in programme management and implementation, but rather, shall put forth all efforts to strengthen those national institutions that are managing reintegration support. The success of reintegration programmes depends on the combined efforts of individuals, families and supporting communities to identify and work towards their own solutions. Reintegration should be led and implemented by community members themselves \u2013 with support from external actors where needed. The community-based approach begins with community sensitization during the earliest phases of the reinte- gration programme, to gain community inputs and consider the dynamics of the con- flict. To the extent possible, all reintegration support should be linked to existing social services and protection networks, while bolstering the capacities of existing systems. Therefore, reintegration programmes shall be designed through an inclusive par- ticipatory process involving ex-combatants, persons formerly associated with armed forces and groups, community representatives, local and national authorities, and non-governmental actors in planning and decision-making from the earliest stages. Buy-in from key members of armed forces and groups shall be a priority of the reinte- gration programme, and shall be achieved in collaboration with the national Govern- ment and other key stakeholders in accordance with UN principles and mandates.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9bdd2269-4310-44f6-b1e0-1757865dbfd1", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 10, + "Paragraph": "Regionally supported In some contexts there may be regional dimensions to reintegration support, such as cross-border flows of small arms and light weapons (SALW); trafficking in natural resources as a source of revenue; cross-border recruitment, including of children; and the repatriation and reintegration of foreign ex-combatants in their countries of origin. The design of a reintegration programme shall therefore consider the regional level in addition to the individual, community and national levels (see IDDRS 5.40 on Cross-Border Population Movements).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "14d64de1-1163-4040-826e-7389c912ab33", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 10, + "Paragraph": "Integrated Reintegration both influences and is affected by wider recovery, peacebuilding and state transformational processes. Therefore, reintegration programmes shall work collaboratively with other programmes and stakeholders in order to achieve policy coherence, sectoral programme integration, and UN inter-agency cooperation and coordination throughout design and implementation. In addition, the use of technical working groups, donor forums, and rapid response modalities shall be used to further integrate efforts in the area of reintegration support. Relevant line ministries shall also receive appropriate support from reintegration programmes to ensure that the rein- tegration of ex-combatants and persons formerly associated with armed forces and groups will be sustainable and in alignment with other national and local plans.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "d2b298f7-d0c8-4532-b581-b7f4690d9909", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 10, + "Paragraph": "Well planned Planning should consider that the reintegration of ex-combatants and persons formerly associated with armed forces and groups is a long-term process, in some contexts taking several years to be successfully and sustainably completed with family support at the community level. A well-planned reintegration programme shall be based on a comprehensive understanding of the type of armed force and/or group(s) to which the individual belonged, the duration of his or her membership with the armed force and/ or armed group(s), as well as the local context and community dynamics. Furthermore, a well-planned reintegration programme requires clear agreement among all stake- holders on the objectives and results of the programme, the establishment of realistic time frames, clear budgetary requirements and human resource needs, and a clearly defined exit strategy. Planning shall be based on existing assessments that include conflict and develop- ment analyses, gender analyses, early recovery and/or post-conflict needs assessments, and reintegration-specific assessments. Those involved in the design and negotiation of reintegration support with Government and other relevant stakeholders shall ensure that a results-based monitoring and evaluation framework is developed during the planning phase and that sufficient resources and expertise are allocated for this task at the outset. A well-planned reintegration programme shall assess and respond to the needs of its participants and beneficiaries through gender-specific planning. Planning shall be done in close collaboration with related programmes and initiatives. Although long- term planning is required, it shall still allow for a degree of flexibility (see section 3.6). Those involved in planning for reintegration support shall work in an integrated manner with those planning disarmament and demobilization in order to ensure smooth tran- sitions. DDR practitioners shall not make promises regarding reintegration support during disarmament and demobilization that cannot be delivered upon.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9cc1d3c9-adc6-4e24-82ce-2f14159c2f54", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 4, + "Paragraph": "Reintegration as part of sustaining peace The reintegration of ex-combatants and persons formerly associated with armed forces and groups is a long-term process with social, economic, political and security dimen- sions. It may be influenced by factors such as the choices and capacities of individuals to shape a new life, the security situation and perceptions of security, family and sup- port networks, and the psychological well-being of combatants and the wider commu- nity. Reintegration processes are part of the development of a country. Facilitating re- integration is therefore primarily the responsibility of national Governments and their institutions, with the international community playing a supporting role if requested. Supporting ex-combatants and persons formerly associated with armed forces and groups to sustainably reintegrate into civilian life is seen as the most complex part of the DDR process in both mission and non-mission contexts. Ex-combatants and those formerly associated with armed forces and groups find themselves, willingly or not, separated from command structures and support networks. The conflict-affected communities to which these individuals return are often characterized by weakened governance, lack of social cohesion, damaged economies and insecurity. In some in- stances, individuals may re-enter societies and communities that are unfamiliar to them, and which have been significantly affected by extended periods of conflict. The acceptance of ex-combatants and persons formerly associated with armed forces and groups by receiving commu- nities is essential and is linked to per- ceptions of fair treatment, including to- wards victims, ex-combatants and other conflict- affected groups. Reintegration support can be pro- vided to address different elements of the reintegration process, ranging from socioeconomic challenges to the psycho- social aspects of reintegration. Support can also be provided in order to mitigate destabilizing factors, such as social ex- clusion and stigmatization, the harmful use of alcohol and drugs and other phys- ical and psychosocial trauma, political disenfranchisement and insecurity. A robust and evidence-based theory of change should underpin the contribution of reintegra- tion support to the overall reduction of armed violence sought by Sustainable Develop- ment Goal 16. This will allow those working on reintegration support, across different institutions and with different programming approaches, to identify the collective out- comes that reintegration programmes are aiming to achieve. The various types of re- integration support and the different modalities of its provision are outlined in IDDRS 4.30 on Reintegration. It should be noted, however, that the support provided by a rein- tegration programme should not be expected to match the breadth, depth or duration of individual reintegration processes, nor the longer-term recovery and development process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dce2a87c-6de3-47d4-b1e9-c8b3c4fba5fd", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 12, + "Paragraph": "The Sustaining Peace Approach Reintegration support can play an important role in sustaining peace, even when a peace agreement has not yet been negotiated or signed. The twin UN resolutions on the 2015 peacebuilding architecture review, General Assembly resolution 70/262 and Security Council resolution 2282, recognize that efforts to sustain peace are necessary at all stages of conflict. Therefore, in order to support, and strengthen, the foundation for sustainable peace, the reintegration of ex-combatants and persons formerly associated with armed forces and groups should not only be supported after an armed conflict has ended. As individuals may leave armed forces and groups during all phases of armed conflict, the need to support them should be considered at all times, even in the absence of a DDR programme. This may mean providing support to those who return to peace- ful areas of the conflict-affected country, and to those who return to peaceful countries of origin, in the case of foreign fighters. As part of the sustaining peace approach, support to reintegration should be designed and carried out to contribute to dynamics that aim to prevent future recruitment. In this regard, opportunities should be seized to prevent relapse into armed conflict, including by tackling root causes and understanding peace dynamics. Armed conflict may be the result of a com- bination of root causes including exclusion, inequality, discrimination and other viola- tions of human rights, including women\u2019s rights. While these challenges cannot be ful- ly addressed through reintegration support, community-based reintegration support that is well integrated into local and national development efforts is likely to contribute to addressing the root causes of conflict and, as such, contribute to sustaining peace. It is also important to strengthen what still works, including the residual capacities for peace that people and communities draw on in times of conflict. Sustaining peace seeks to reclaim the concept of peace in its own right, by acknowledging that the exist- ing capacities for peace, i.e., the structures, attitudes and institutions that sustain peace, should be strengthened not only in situations of conflict, but even in peaceful settings. This strengthening of peace capacities can be based on the identification of the rea- sons why some individuals do not join armed groups, and why some combatants leave armed groups and turn away from armed violence. Inclusion is also an important part of reintegration support as part of the sustaining peace approach. Exclusion and marginalization, including gender inequalities, are key drivers of violent conflict. Community-owned and -led approaches to reintegration support that are inclusive and integrate a gender perspective, specifically addressing the needs of women, youth, disabled persons, ethnic minorities and indigenous groups have a positive impact on a country\u2019s capacity to manage and avoid conflict, and ulti- mately on the sustainability of peace processes. Empowering the voices and capacities of women and youth in the planning and design of reintegration programmes contrib- utes to addressing conflict drivers, socioeconomic and gender inequalities, and youth disenchantment. Additionally, given that national-level peace processes are not always possible, opportunities to leverage reintegration support, particularly around social cohesion through local peace processes between groups and communities, can be sought through local governance initiatives, such as participatory budgeting and planning. The UN\u2019s sustaining peace approach calls for the breaking of operational silos. The joint analysis, planning and management of ongoing programmes helps to ensure the sustainability of collectively defined reintegration outcomes. This process also serves as an entry point for innovative partnerships and the contextually anchored flexible ap- proaches that are needed. For effective reintegration support as part of sustaining peace, it is essential to draw on capacities across and beyond the UN system in support of local and national authorities. DDR practitioners and others involved in developing and managing this support should recognize that community authorities may be the frontline respond- ers who lay the foundation for peace and development. Innovative financing sources and partnerships should be sought, and funding partners should pay particular attention to increasing, restructuring and prioritizing the financing of reintegration support. In light of the above, reintegration support as part of sustaining peace should focus on: The enhancement of capacities for peace. The adoption of a clear definition of reintegration outcomes within the humanitar- ian-development-peace nexus, recognizing the strong interconnectedness between and among the three pillars. Efforts to actively break out of institutional silos, eliminating fragmentation and contributing to a comprehensive, coordinated and coherent DDR process. The application of a gender lens to all reintegration support. The rationale is that men and women, boys and girls, have differentiated needs, aspirations, capacities and contributions. The importance of strengthening resilience during reintegration support. Indi- viduals, communities, countries and regions lay the foundations for resilience to stresses and shocks associated with insecure environments through the develop- ment of local and national development plans, including national action plans on UN Security Council Resolution 1325. The consistent implementation of monitoring and evaluation across all phases of the peace continuum with a focus on cross-sectoral approaches that emphasize collective programming outcomes. The development of innovative partnerships to achieve reintegration as part of sustaining peace, based on whole-of-government and whole-of-society approaches, in- volving ex-combatants, persons formerly associated with armed forces and groups and their families, as well as receiving communities. The engagement of the private sector in the creation of economic opportunities, fostering capacities of local small and medium-sized enterprises, as well as involv- ing international private-sector investment in reintegration opportunities, where appropriate. For reintegration programmes to play their role in sustaining peace effectively, DDR practitioners and others involved in the planning and implementation of reinte- gration support should ensure that they: Have a shared understanding of the drivers of a specific conflict, as well as the risks faced by individuals who are reintegrating and their receiving communities and countries; Conduct joint analysis and monitoring and evaluation allowing for the development of strategic approaches that can strengthen peace and resilience; Align with the women, peace and security agenda, ensuring that gender consider- ations are front and centre in reintegration support; Have a shared understanding of the importance of youth in all efforts towards peace and security; Foster collective ownership by local authorities and other stakeholders that is anchored in local and national development plans \u2013 the international community shall play a supporting role and avoid creating parallel structures; Create the long-term partnerships necessary for sustaining peace through the development of local institutional capacity, adaptive programming that is respon- sive to the context, and adequate human and financial resources. Additionally, as part of the conflict prevention and peacebuilding agenda, rein- tegration processes should be linked more deliberately with development program- ming. For instance, the 2030 Agenda for Sustainable Development provides a universal, multi- stakeholder, multi-sector set of goals adopted by all UN Member States in 2015. The Agenda includes 17 sustainable development goals (SDGs) covering poverty, food security, education, health care, justice and peace for which strategies, policies and plans should be developed at the national level and against which progress should be measured. The human and economic cost of armed conflict globally requires all stakeholders to work collaboratively in supporting Member States to achieve the SDGs; with all those concerned with development providing support to prevention agendas through targeted and sustained engagement at the national and regional levels.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "50ce9afa-91dd-478f-811f-0611d766a6ec", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 14, + "Paragraph": "Reintegration support across the peace continuum Efforts to support the transition of ex-combatants and persons formerly associated with armed forces and groups into civilian life have typically taken place as part of post- conflict DDR programmes. DDR programmes are often \u2018collective\u2019 in that they address groups of combatants and persons associated with armed forces and groups through a formal and controlled programme, often as part of the implementation of a CPA. Increasingly, the UN is called upon to address security challenges that arise from situations where comprehensive political settlements are lacking and the precondi- tions for DDR programmes are not present. When conflict is ongoing, exit from armed groups is often individual and can take different forms. Those who are captured or who voluntarily leave armed groups will likely fall under the custody of authorities, such as the regular armed forces or law enforcement officials. In some contexts, how- ever, those leaving armed groups may find their way back into communities without falling into the custody of authorities. This is often the case for female ex-combatants and women formerly associated with armed forces and groups who escape \u2018invisibly\u2019 and who may be difficult to identify and reach for support. Community-based rein- tegration programmes aiming to support these groups should be based on credible information, verified through an agreed-upon mechanism that includes key actors. Local peace and development committees may play an important role in prioritizing and identifying these women. In addition, in contexts where the preconditions for DDR programmes are not in place, DDR-related tools such as community violence reduction (CVR) and transitional weapons and ammunition management (WAM) have been used along with support to mediation and transitional security measures (see IDDRS 2.20 on The Politics of DDR, IDDRS 2.30 on Community Violence Reduction and IDDRS 4.11 on Transitional Weapons and Ammunition Management). Where appropriate, early elements of reinte- gration support can be part of CVR programming, such as different types of employ- ment and livelihoods support, improvement of the capacities of vulnerable communi- ties to absorb returning ex-combatants, and investments in public goods designed to strengthen the social cohesion of communities. Reintegration as part of the sustaining peace approach is not only an integral part of DDR programmes. It also follows se- curity sector reform (SSR) where armed forces or the police are rightsized; comple- ments DDR-related tools, such as CVR, through sustainable measures; or is provided to persons formerly associated with armed groups designated as terrorist organizations by the United Nations Security Council. The increased complexity of the political and socioeconomic settings in which most reintegration support is provided does not necessarily imply that the support provided must also become more complicated. DDR practitioners and others involved in planning, managing and funding the support programme should be knowledgeable about the context and its dynamics, but also be able to prioritize the critical elements of the response. In addition to prioritization, effective support requires reliable and dedicated funding for these priority activities. It may also be important to lower (often inflated) expectations, and be realistic, about what reintegration support can deliver. Support to reintegration as part of sustaining peace requires analysis of the intended and unintended outcomes precipitated by engagement in dynamic, conflict-affected environments. DDR practitioners and all those involved in the provision of reintegra- tion support should understand how engagement in such contexts has implications for social relations/dynamics \u2013 positive and negative \u2013 so as to do no harm and, in fact, do good. In order to support the humanitarian-development-peace nexus, reintegration programme coordination should extend to broader programmes and actors. It should also be recognized that the risk of doing harm is greater in ongoing conflict contexts, which demand greater coordination among existing, and planned, programmes to avoid the possibility that they may negatively affect each other. Depending on the context and conflict analysis developed, DDR practitioners and others involved in the planning and implementation of reintegration support may determine that a potential unintended consequence of working with ex-combatants and persons formerly associated with armed forces and groups is the perceived injustice in supporting those who perpetrated violence when others affected by the conflict may feel they are inadequately supported. This should be avoided. One option is community-based approaches. Stigmatization related to programmes that prevent recruitment should also be avoided. Participants in these programmes could be seen as having the potential to become violent perpetrators, a stigma that could be particularly harmful to youth. In addition to programmed support, there are numerous non-programmatic factors that can have a major impact on whether or not reintegration is successful. Some of the key non-programmatic factors are: Acceptance in the community/society; The general security situation/perception of the security situation; The economic environment and associated opportunities; The availability of relevant basic and social services; The protection of land rights and other property rights. In conflict settings these non-programmatic factors may be particularly fluid and difficult to both analyse and adapt to. The security situation may not allow for rein- tegration support to take place in all areas. The economy may also be severely affect- ed by the ongoing conflict. Receiving communities may also be particularly reluctant to accept returning ex-combatants during ongoing conflict as they can, for example, constitute a security risk to the community. Influencing these non-programmatic fac- tors requires a broad structural approach. Providing an enabling environment and facilitating access to opportunities outside the reintegration programme may be as important for reintegration processes as the reintegration support provided through the programme. In addition, in most instances it is important to establish practical link- ages with existing employment creation programmes, business development services, psychosocial and mental health support referral systems, disability support networks and other relevant services. The implications of these non-programmatic factors could be different for men and women, especially in contexts where insecurity is high and the economy is depressed. Social networks and connections between different members and levels of society may provide these groups with the resilience and coping mecha- nisms necessary to navigate their reintegration process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "25d19a8d-0a94-40a5-8cea-8dc8cfd87fcc", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 16, + "Paragraph": "Resilience as a basis for reintegration Strengthening resilience is one of the most important aspects of supporting reinte- gration during ongoing conflict. Resilience refers to the ability to adapt, rebound and strengthen functioning in the face of violence, extreme adversity and risk. For ex-com- batants and persons formerly associated with armed forces and groups, it is related to the ability to withstand, resist and overcome the violence and potentially traumatic events experienced during armed conflict when coping with social and environmental pressures. Resilience also refers to the capacity to withstand the pressure to rejoin a former armed group or to join a new armed group or other type of criminal organi- zation. Community resilience can also be enhanced by reintegration support, such as when this support enhances the capacity of communities to absorb ex-combatants and persons formerly associated with armed forces and groups. The acquisition of social skills, emotional development, academic achievement, psychological well-being, self-esteem, coping mechanisms and attitudes when faced with stress and recovery from trauma, including sexual violence, are all factors of re- silience. Reintegration support should therefore consider the impact of different re- silience and vulnerability factors relevant for reintegration at the individual, family, community and institutional levels (see Figure 1).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f6102c04-008d-4459-94a2-bb4891580dfa", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 17, + "Paragraph": "Reintegration support for conflict prevention Reintegration support calls for a twin approach in fostering not only \u2018negative peace\u2019 \u2013 as in mitigation strategies \u2013 but also \u2018positive peace\u2019, by addressing the root causes of armed conflict as they manifest at the local level and strengthening peace capacities at various levels. Understood in this way, reintegration support can contribute to the pre- vention of armed conflict, helping to address some of the structural issues that create or fuel the risks of conflict escalation and recurrence. For instance, by accounting for aspects related to mental health and psychosocial support, reintegration programmes can assist in building the necessary pillars needed for a \u2018positive peace\u2019 to develop. If these issues are left unaddressed, individuals may turn to negative coping mechanisms. Conflict may also lead to negative social patterns that increase the likelihood of widespread criminality and the victimization of certain groups. These negative patterns may also serve to increase vulnerability to involve- ment in armed groups and other criminal behaviour. The specific needs of women and girls formerly associated with armed forces and groups also need to be addressed, including preventing and addressing sexual and gender-based violence. Second, while some reintegration support measures focus on education, vocational skills training and income-generating opportunities, they may help to prevent conflict if aligned with and supportive of the absorption capacities of receiving communities. Situated within the humanitarian-development-peace nexus, approaches to reintegration support shall be sensitive to the fact that populations in fragile situations and subject- ed to protracted conflict experience diverse needs simultaneously \u2013 be they humani- tarian, security-related or developmental. As a result, reintegration support may only play an effective role in conflict prevention when these needs are acknowledged and addressed comprehensively. Thus, reintegration programmes can help to prevent conflict only when they account for: The motivations of individuals to engage in and leave armed groups; The criminogenic, or crime-inducing, risks present in the context that may im- pede sustained reintegration and increase vulnerability to involvement in armed groups and other criminal behaviour; Local needs and existing capacities; The strengthened resilience of individuals, families, communities and institutions to cope with adversity and to withstand violence and conflict-related pressures. Linking reintegration programmes to other elements of the DDR process strength- ens their conflict prevention potential. Reintegration programmes should to the extent possible be combined and coordinated with mediation efforts, confidence-building measures and broader conflict resolution and peacebuilding. From a conflict sensitivity angle, it is important to note that reintegration sup- port is sometimes provided later than expected, and that actual levels of support are sometimes lower than foreseen, for example, due to slow political processes, logistical constraints and/or the unavailability (or delay) of financing. It is therefore important to explicitly raise questions about the possible negative impact of waiting for reintegration support on the actual reintegration processes of ex-combatants and persons formerly associated with armed forces and groups. The following questions should be raised as soon as the negotiation and planning of reintegration support begins: Is the reintegration support foreseen realistic? Will the reintegration support be able to meet the various expectations? How will the (expected) reintegration support affect the coping strategies of ex-combatants and persons formerly associated with armed forces and groups? What are potential negative effects of reintegration support on social dynamics, power dynamics and social equity issues? How can expectations and/or misinformation concerning reintegration support be managed by the relevant Government and UN agencies, for example, through appropriate communication and risk management?", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "74499d1a-3e93-4687-8537-2838122d8cd4", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 19, + "Paragraph": "Preventing re-recruitment As part of sustaining peace, reintegration programmes should plan to contribute to dynamics that aim to prevent re-recruitment. The risk of the re-recruitment of ex-com- batants and persons formerly associated into armed groups or their engagement in criminal activity is higher where conflict is ongoing, protracted or financed through organized crime, including illicit natural resource exploitation such as mineral mining and poaching. In such war economies, licit and illicit markets may overlap, and criminal networks may constitute an attractive source of income for ex-combatants as well as provide a sense of belonging. Criminal groups could allow ex-combatants and persons formerly associated with armed forces and groups to regain or retain a social status after leaving their armed force or group, and may bridge feelings of social dislocation in receiving communities. The risk of re-recruitment or involvement in criminal activity increases in contexts where reintegration opportunities are limited and where national and local capacity is low. This is the case when ex-combatants and persons formerly associated with armed forces and groups return to areas of high insecurity, where formal and informal econ- omies lack diversity and opportunities are limited to unskilled labour, including agri- culture. The conditions in these geographical areas should therefore be considered in the design of reintegration support. Collaborating with actors that are able to influence the non-programmatic factors mentioned above can be a first step in supporting those who have decided to settle in these areas. Rejoining a former armed group or joining a new one may be a result of the real, or perceived, absence of viable alternatives to armed conflict as a means of subsistence and as an avenue for social integration and political change (see IDDRS 2.20 on The Politics of DDR). The reasons whyindividualsjoinarmedgroupsarediverseandmayincludegrievanceslinkedtosocial status, self-defence, a lack of jobs and economic opportunities, exclusion, human rights abuses and other real or perceived injustices. Risk of re-recruitment may therefore be higher in contexts where the causes of the conflict remain unresolved and grievances persist, or where there are no viable alternative livelihoods. Community receptivity to returning ex-combatants and persons formerly associated with armed forces and groups also impacts the likelihood of return to an armed group. Receptivity is likely to be lower in contexts of ongoing conflict, as returning ex-combat- ants could constitute a risk to the community. Female ex-combatants, women formerly associated with armed forces and groups, and their children potentially face additional challenges related to community receptivity, including potential stigma that can pro- foundly impact their ability to reintegrate. The length of time an individual has spent in an armed group will also influence his or her ability to adjust to civilian life and the degree to which he or she is able to build social networks and reconnect. In general, the longer an individual spent with an armed group, the more challenging his or her reintegration process is likely to be. Given this reality, the design of reintegration programmes must be based on solid gender analysis and risk management, which could include mentorships, peer learning, insti- tutional learning and relevant institutional and programmatic linkages.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "38551180-fde6-4902-aace-88d16b566634", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 20, + "Paragraph": "5.2.2. Entry points and risk mitigation In settings of ongoing conflict, it is possible that armed groups may splinter and mul- tiply. Some of these armed groups may sign peace agreements while others refuse. Reintegration support to individuals who have exited non-signatory armed groups in ongoing conflict needs to be carefully designed; risk mitigation and adherence to principles such as \u2018do no harm\u2019 shall be ensured. A full DDR programme may in such cases not be the most appropriate response (see IDDRS 2.10 on The UN Ap- proach to DDR). Based on conflict analysis and armed group mapping, DDR practi- tioners should consider direct engagement with armed groups through political negotiations and other DDR-related activities (see IDDRS 2.20 on The Politics of DDR and IDDRS 2.30 on Community Violence Reduction). The risks of such engagement should, of course, be properly assessed in advance, and along the way. DDR practitioners and others involved in designing or managing reintegration assistance should also be aware that as a result of the risks of supporting reintegration in settings of ongoing conflict, combined with a possible lack of national political will, legitimacy of governance and weak capacity, programme funding may be difficult to mobilize. Reintegration programmes should therefore be designed in a transparent and flexible manner, scaled appropriately to offer viable opportunities to ex-combatants and persons formerly associated with armed groups. In line with the shift to peace rather than conflict as the starting point of anal- ysis, programmes should seek to identify positive entry points for supporting rein- tegration. In ongoing conflict contexts, these entry points could include geographi- cal areas where reintegration is most likely to succeed, such as pockets of peace not affected by military operations or other types of armed violence. These pilot areas could serve as models for other areas to follow. Reintegration support provided as part of a pilot effort would likely set the bar for future assistance and establish expectations for other groups that may need to be met to ensure equity and to avoid negative out- comes. Additional entry points for reintegration support in ongoing conflict may be a par- ticular armed group whose members have shown a willingness to leave or are assessed as more likely to reintegrate, or specific reintegration interventions involving local economies and partners that will function as pull factors. Reintegration programmes should consider local champions, known figures to support such efforts from local government, tribal, religious and community leadership, and private and business actors. These actors can be key in generating peace dividends and building the necessary trust and support for the programme. For more detail on entry points and risks regarding reintegration support during armed conflict, see section 9 of IDDRS 4.30 on Reintegration.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "cbfa55d8-cf4a-40cd-b146-27309ca0799f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 21, + "Paragraph": "Amnesty and other special justice measures during conflict In the absence of a peace agreement, reintegration support during ongoing conflict may follow amnesty or other legal processes. An amnesty act or special justice law is usually adopted to encourage combatants to lay down weapons and report to authorities; if they do so they usually receive pardon for having joined armed groups or, in the case of common crimes, reduced sentences. These provisions may also encourage dialogue with armed groups, promote return to communities and support reconciliation through transitional justice and reparations at the community level. Ex-combatants and persons formerly associated with armed forces and groups typically receive documentation attesting to the fact that they benefitted from amnesty under these provisions and are free to rejoin their families and communities (see IDDRS 4.20 on Demobilization). To ensure that amnesty processes are successful, they should include reintegration support to those reporting to the \u2018Amnesty Commission\u2019 and/or relevant authorities. Additional Protocol II to the Geneva Conventions encourages States to grant amnesties for mere participation in hostilities as a means of encouraging armed groups to comply with international humanitarian law. It recognizes that amnesties may also help to facilitate peace negotiations or enable a process of reconciliation. However, amnesties should not be granted for war crimes, genocide, crimes against humanity and gross violations of human rights (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.20 on DDR and Transitional Justice).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c25fb112-c583-4f73-98f8-d2d2c2c543a2", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 21, + "Paragraph": "Common challenges in supporting reintegration during conflict In summary, the following are key considerations that, in contexts of ongoing conflict, DDR practitioners and others involved in the planning, implementation and evaluation of reintegration programmes should take into account: Conflict and context analysis and assessment will be more challenging to under- take than in post-conflict settings and will need to be frequently updated. There will be increased security risks if ex-combatants and persons formerly asso- ciated with armed forces and groups: \uf06f are perceived as traitors by active members of their former group, particularly if the group is still operating in the country, across a nearby border or in the community in which the individual would like to return; become involved in providing information to military or security agencies for the planning of counter-insurgency operations; return to communities still affected by armed conflict and/or where armed groups operate. Alongside the need for constructive collaboration with military and security agencies, there will be a need to preserve the independence and impartiality of the reinte- gration programme in order to avoid the perception that the programme is part of the counter-insurgency strategy. The national stakeholders leading reintegration support could have been \u2013 or may still be \u2013 in conflict with the armed groups to which ex-combatants previously belonged. The use of case management is necessary and could include traditional chiefs or religious leaders (imams, bishops, ministers), and trained and supervised providers of mental health services as community supervision officers where appropriate. It is important to work closely with and develop common reintegration strategies with other women, peace and security actors and prevent violence against women and girls. It is important to work closely with and develop common reintegration strate- gies with programmes aiming to protect children and support the reintegration of children formerly associated with armed forces and groups. More specifically, there is a need to develop common strategies for the prevention of recruitment for youth at risk.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.json b/src/Static/data/json/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.json new file mode 100644 index 0000000..63b97b3 --- /dev/null +++ b/src/Static/data/json/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.json @@ -0,0 +1,1009 @@ +[ + { + "ID": "65b917f5-0e60-4e6f-8411-1d05a69927a7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "Summary Disarmament, demobilization and reintegration (DDR) are all complex and sensitively linked processes that demand considerable human and financial resources to plan, imple- ment and monitor. Given the many different actors involved in the various stages of DDR, and the fact that its phases are interdependent, integrated planning, effective coordination and coherent reporting arrangements are essential. Past experiences have highlighted the need for the various actors involved in planning and implementing DDR, and monitoring its impacts, to work together in a complementary way that avoids unnecessary duplication of effort or competition for funds and other resources. This module provides guidelines for improving inter-agency cooperation in the planning of DDR programmes and operations. The module shows how successful implementation can be achieved through an inclusive process of assessment and analysis that provides the basis for the formulation of a comprehensive programme framework and operational plan. This mechanism is known as the \u2018planning cycle\u2019, and originates from both the inte- grated mission planning process (IMPP) and post-conflict United Nations (UN) country team planning mechanisms.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4fd1971c-33eb-42e1-add0-b723f816be47", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "1. Module scope and objectives This module outlines a general planning process and framework for providing and struc- turing UN support for national DDR efforts in a peacekeeping environment. This planning process covers the actions carried out by DDR practitioners from the time a conflict or crisis is put on the agenda of the Security Council to the time a peacekeeping mission is formally established by a Security Council resolution, with such a resolution assigning the peace- keeping mission a role in DDR. This module also covers the broader institutional requirements for planning post-mission DDR support. (See IDDRS 3.20 on DDR Programme Design for more detailed coverage of the development of DDR programme and implementation frameworks.) The planning process and requirements given in this module are intended to serve as a general guide. A number of factors will affect the various planning processes, including: The pace and duration of a peace process: A drawn-out peace process gives the UN, and the international community generally, more time to consult, plan and develop pro- grammes for later implementation (the Sudanese peace process is a good example); Contextual and local realities: The dynamics and consequences of conflict; the attitudes of the actors and other parties associated with it; and post-conflict social, economic and institutional capacities will affect planning for DDR, and have an impact on the strategic orientation of UN support; National capacities for DDR: The extent of pre-existing national and institutional capa- cities in the conflict-affected country to plan and implement DDR will considerably 3.20 affect the nature of UN support and, consequently, planning requirements. Planning for DDR in contexts with weak or non-existent national institutions will differ greatly from planning DDR in contexts with stable and effective national institutions; The role of the UN: How the role of the UN is defined in general terms, and for DDR specifically, will depend on the extent of responsibility and direct involvement assumed by national actors, and the UN\u2019s own capacity to complement and support these efforts. This role definition will directly influence the scope and nature of the UN\u2019s engagement in DDR, and hence requirements for planning; Interaction with other international and regional actors: The presence and need to collaborate with international or regional actors (e.g., the European Union, NATO, the African Union, the Economic Community of West African States) with a current or potential role in the management of the conflict will affect the general planning process. In addition, this module provides guidance on: adapting the DDR planning process to the broader framework of mission and UN country team planning in post-conflict contexts; linking the UN planning process to national DDR planning processes; the chronological stages and sequencing (i.e., the ordering of activities over time) of DDR planning activities; the different aspects and products of the planning process, including its political (peace process and Security Council mandate), programmatic/operational and organizational/ institutional dimensions; the institutional capacities required at both Headquarters and country levels to ensure an efficient and integrated UN planning process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "862b8cf1-0cd7-4952-905c-6da561e63147", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of the abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards 1.20\t(IDDRS) is given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "69a9cc99-9c85-42a6-8263-bb035c66fded", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 4, + "Paragraph": "Introduction The ability of the UN to comprehensively and collectively plan its joint response to crisis has evolved considerably over the last decade. Nonetheless, the expansion of complex peacemaking, peacekeeping, humanitarian and peace-building tasks in complex internal conflicts, which often have regional repercussions, continues to demand an even earlier, closer and more structured process of planning among UN entities and partners. Meeting this demand for more structured planning is essential to delivering better DDR programmes, because DDR is a multisectoral, multi-stakeholder and multi-phase process requiring coordination and adequate links among various post-conflict planning mechanisms. The implementation of DDR programmes often requires difficult compromises and trade-offs among various political, security and development considerations. It also relies very much on establishing an appropriate balance between international involvement and national ownership. DDR programmes have a better chance of success when the DDR planning process starts early (preferably from the beginning of the peace process), builds on the accumulated experience and expertise of local actors, is based on a solid understanding of the conflict (causes, perpetrators, etc.), and deliberately encourages greater unity of effort among UN agencies and their community of partners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5372529e-4dbc-4e1c-88e3-66a3cd8455eb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 5, + "Paragraph": "Guiding principles The planning process for the DDR programmes is guided by the principles, key consider- ations and approaches defined in IDDRS 2.10 on the UN Approach to DDR. Of particular importance are: Unity of effort: The achievement of unity of effort and integration is only possible with an inclusive and sound mission planning process involving all relevant UN agencies, departments, funds and programmes at both the Headquarters and field levels. DDR planning takes place within this broader integrated mission planning process; Integration: The integrated approach to planning tries to develop, to the extent possible: a common framework (i.e., one that everyone involved uses) for developing, man- aging, funding and implementing a UN DDR strategy within the context of a peace mission; an integrated DDR management structure (unit or section), with the participation of staff from participating UN agencies and primary reporting lines to the Deputy Special Representative of the Secretary-General (DSRSG) for humanitarian and development affairs. Such an approach should include the co-location of staff, infrastructure and resources, as this allows for increased efficiency and reduced overhead costs, and brings about more responsive planning, implementation and coordination; joint programmes that harness UN country team and mission resources into a single process and results-based approach to putting the DDR strategy into operation and achieving shared objectives; a single framework for managing multiple sources of funding, as well as for co- ordinating funding mechanisms, thus ensuring that resources are used to deal with common priorities and needs; Efficient and effective planning: At the planning stage, a common DDR strategy and work plan should be developed on the basis of joint assessments and evaluation. This should establish a set of operational objectives, activities and expected results that all UN entities involved in DDR will use as the basis for their programming and implemen- tation activities. A common resource mobilization strategy involving all participating UN entities should be established within the integrated DDR framework in order to prevent duplication, and ensure coordination with donors and national authorities, and coherent and efficient planning. 2.10", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c580d71e-7965-4789-8545-568904aae7c5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "5. Situating DDR within UN and national planning in post- conflict contexts This section discusses integrated DDR planning in the context of planning for integrated UN peace operations, as well as broader peace-building efforts. These processes are currently under review by the UN system. While references are made to the existing integrated mission planning process (IMPP), the various steps that make up the process of integrated DDR planning (from the start of the crisis to the Security Council mandate) apply to whatever planning process the UN system eventually decides upon to guide its mission planning and peace-building support process. Where possible (and before the establishment of the Peace-building Support Office and the review of the IMPP), specific DDR planning issues are linked to the main phases or stages of mission and UN country team planning, to lay the foundations for integrated DDR planning in the UN system. At the moment, the planning cycle for integrated peace support missions is centred on the interdepartmental mission task force (IMTF) that is established for each mission. This forum includes representatives from all UN departments, agencies, funds and programmes. The IMTF provides an important link between the activities taking place on the ground and the planning cycle at Headquarters. Five general phases (stages) of planning for UN mission and post-conflict peace-building support can be identified, which form the basis for defining exactly how the DDR planning process will take place: Phase I: Pre-planning and preparatory assistance; Phase II: Initial technical assessment and concept of operations; Phase III: Development of a strategic and policy framework (strategic planning); Phase IV: Development of a programme and operational framework (operational planning); Phase V: Continuation and transition planning.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "181c6d09-7671-41cb-aada-d9c0af5cee88", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 7, + "Paragraph": "Phase I: Pre-planning and preparatory assistance During the pre-planning phase of the UN\u2019s involvement in a post-conflict peacekeeping or peace-building context, the identification of an appropriate role for the UN in supporting DDR efforts should be based on timely assessments and analyses of the situation and its requirements. The early identification of potential entry points and strategic options for UN support is essential to ensuring the UN\u2019s capacity to respond efficiently and effectively. Integrated preparatory activities and pre-mission planning are vital to the delivery of that capacity. While there is no section/unit at UN Headquarters with the specific role of coordinating integrated DDR planning at present, many of the following DDR pre-planning tasks can and should be coordinated by the lead planning depart- ment and key operational agencies of the UN country team. Activities that should be included in a preparatory assistance or pre- planning framework include: the development of an initial set of strategic options for or assessments of DDR, and the potential role of the UN in supporting DDR; the provision of DDR technical advice to special envoys, Special Representatives of the Secretary-General or country-level UN staff within the context of peace negotiations or UN mediation; the secondment of DDR specialists or hiring of private DDR consultants (sometimes funded by interested Member States) to assist during the peace process and provide strategic and policy advice to the UN and relevant national parties at country level for planning purposes; the assignment of a UN country team to carry out exploratory DDR assessments and surveys as early as possible. These surveys and assessments include: conflict assess- ment; combatant needs assessments; the identification of reintegration opportunities; and labour and goods markets assessments; assessing the in-country DDR planning and delivery capacity to support any DDR programme that might be set up (both UN and national institutional capacities); contacting key donors and other international stakeholders on DDR issues with the aim of defining priorities and methods for information sharing and collaboration; the early identification of potential key DDR personnel for the integrated DDR unit.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "969d4619-6b53-4b4b-a01e-9ae3a918f6fe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 7, + "Paragraph": "Phase II: Initial technical assessment and concept of operations Once the UN Security Council has requested the UN Secretary-General to present options for possible further UN involvement in supporting peacekeeping and peace-building in a particular country, planning enters a second stage, focusing on an initial technical assess- ment of the UN role and the preparation of a concept of operations for submission to the Security Council. In most cases, this process will be initiated through a multidimensional technical assess- ment mission fielded by the Secretary-General to develop the UN strategy in a conflict area. In this context, DDR is only one of several components such as political affairs, elections, public information, humanitarian assistance, military, security, civilian police, human rights, rule of law, gender equality, child protection, food security, HIV/AIDS and other health matters, cross-border issues, reconstruction, governance, finance and logistic support. These multidisciplinary technical assessment missions shall integrate inputs from all relevant UN entities (in particular the UN country team), resulting in a joint UN concept of operations. Initial assessments by country-level agencies, together with pre-existing efforts or initiatives, should be used to provide information on which to base the technical assessment for DDR, which itself should be closely linked with other inter-agency processes established to assess immediate post-conflict needs. A well-prepared and well-conducted technical assessment should focus on: the conditions and requirements for DDR; its relation to a peace agreement; an assessment of national capacities; the identification of options for UN support, including strategic objectives and the UN\u2019s operational role; the role of DDR within the broader UN peace-building and mission strategy; the role of UN support in relation to that of other national and international stakeholders. This initial technical assessment should be used as a basis for a more in-depth assessment 3.20\trequired for programme design (also see IDDRS 3.20 on DDR Programme Design). The results of this assessment should provide inputs to the Secretary-General\u2019s report and any Security Council resolutions and mission mandates that follow (see Annex B for a reference guide on conducting a DDR assessment mission).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b65820b7-bb22-4686-ae89-c31c29c2e238", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 8, + "Paragraph": "Report of the Secretary-General to the Security Council The key output of the planning process at this stage should be a recommendation as to whether DDR is the appropriate response for the conflict at hand and whether the UN is well suited to provide support for the DDR programme in the country concerned. This is contained in a report by the Secretary-General to the Security Council, which includes the findings of the technical assessment mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "cab2998d-c3fd-45ad-8dee-663e50c313d5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 8, + "Paragraph": "Mission mandate on DDR The report of the Secretary-General to the Security Council sometimes contains proposals for the mandate for peace operation. The following points should be considered when pro- viding inputs to the DDR mandate: It shall be consistent with the UN approach to DDR; While it is important to stress the national aspect of the DDR programme, it is also necessary to recognize the immediate need to provide capacity-building support to increase or bring about national ownership, and to recognize the political difficulties that may complicate national ownership in a transitional situation. Time-lines for planning and implementation should be realistic. The Security Council, when it establishes a multidimensional UN mission, may assign DDR responsibilities to the UN. This mandate can be either to directly support the national DDR authorities or to implement aspects of the DDR programme, especially when national capacities are lim- ited. What is important to note is that the nature of a DDR mandate, if one is given, may differ from the recommended concept of operations, for political and other reasons.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6c472990-b426-4b1f-9665-b52b43cf2975", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "Phase III: Development of a strategic and policy framework (strategic planning) The inclusion of DDR as a component of the overall UN integrated mission and peace- building support strategy will require the development of initial strategic objectives for the DDR programme to guide further planning and programme development. DDR practi- tioners shall be required to identify four key elements to create this framework: the overall strategic objectives of UN engagement in DDR in relation to national pri- orities (see Annex C for an example of how DDR aims may be developed); the key DDR tasks of the UN (see Annex C for related DDR tasks that originate from the strategic objectives); an initial organizational and institutional framework (see IDDRS 3.42 on Personnel and Staffing for the establishment of the integrated DDR unit and IDDRS 3.30 on National Institutions for DDR); the identification of other national and international stakeholders on DDR and the areas of engagement of each. The policy and strategy framework for UN support for DDR should ideally be developed after the establishment of the mission, and at the same time as its actual deployment. Several key issues should be kept in mind in developing such a framework: To ensure that this framework adequately reflects country realities and needs with respect to DDR, its development should be a joint effort of mission planners (whether Headquarters- or country-based), DDR staff already deployed and the UN country team; Development of the framework should also involve consultations with relevant national counterparts, to ensure that UN engagement is consistent with national planning and frameworks; The framework should be harmonized \u2014 and integrated \u2014 with other UN and national planning frameworks, notably Department of Peacekeeping Operations (DPKO) results- based budgeting frameworks, UN work plans and transitional appeals, and post-conflict needs assessment processes.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "28730bc1-1d37-4d67-939a-1431674f6387", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 9, + "Paragraph": "Phase IV: Development of a programme and operational framework After establishing a strategic objectives and policy framework for UN support for DDR, the UN should start developing a detailed programmatic and operational framework. Refer to IDDRS 3.20 on DDR Programme Design for the programme design process and tools to assist in the development of a DDR operational plan. The objective of developing a DDR programme and implementation plan is to provide further details on the activities and operational requirements necessary to achieve DDR goals and the strategy identified in the initial planning for DDR. In the context of integrated 3.42 3.30 3.20 DDR approaches, DDR programmes also provide a common framework for the implemen- tation and management of joint activities among actors in the UN system. In general, the programme design cycle should consist of three main phases: Detailed field assessments: A detailed field assessment builds on the initial technical assess- ment described earlier, and is intended to provide a basis for developing the full DDR programme, as well as the implementation and operational plan. The main issues that should be dealt with in a detailed assessment include: the political, social and economic context and background of the armed conflict; the causes, dynamics and consequences of the armed conflict; the identification of participants, potential partners and others involved; the distribution, availability and proliferation of weapons (primarily small arms and light weapons); the institutional capacities of national stakeholders in areas related to DDR; a survey of socio-economic conditions and the capacity of local communities to absorb ex-combatants and their dependants; preconditions and other factors influencing prospects for DDR; baseline data and performance indicators for programme design, implementation, monitoring and evaluation; Detailed programme development and costing of requirements: A DDR \u2018programme\u2019 is a framework that provides an agreed-upon blueprint (i.e., detailed plan) for how DDR will be put into operation in a given context. It also provides the basis for developing operational or implementation plans that provide time-bound information on how individual DDR tasks and activities will be carried out and who will be responsible for doing this. Designing a comprehensive DDR programme is a time- and labour-intensive process that usually takes place after a peacekeeping mission has been authorized and deployment in the field has started. In most cases, the design of a comprehensive UN programme on DDR should be integrated with the design of the national DDR programme and architecture, and linked to the design of programmes in other related sectors as part of the overall transition and recovery plan; Development of an implementation plan: Once a programme has been developed, planning instruments should be developed that will aid practitioners (UN, non-UN and national government) to implement the activities and strategies that have been planned. Depen- ding on the scale and scope of a DDR programme, an implementation or operations plan usually consists of four main elements: implementation methods; time-frame; a detailed work plan; and management arrangements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05794a37-ee6f-442f-8905-3a660ef20573", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 10, + "Paragraph": "5.5. Phase V: Continuation and transition planning A DDR strategy and plan should remain flexible so as to be able to deal with changing circumstances and demands at the country level, and should possess a capacity to adapt in order to deal with shortcomings and new opportunities. Continuation planning involves a process of periodic reviews, monitoring and real-time evaluations to measure perform- ance and impact during implementation of the DDR programme, as well as revisions to programmatic and operational plans to make adjustments to the actual implementation process. A DDR programme does not end with the exit of the peacekeeping mission. While security may be restored, the broader task of linking the DDR programme to overall development, i.e., the sustainable reintegration of ex-com- batants and long-term stability, remains. It is therefore essential that the departure of the peacekeeping mission is planned with the UN country team as early as possible to ensure that capacities are sufficiently built up in the country team for it to assume the full financial, logistic and human resources responsibilities for the continuation of the longer-term aspects of the DDR programme. A second essential requirement is the build- ing of national capacities to assume full responsibility for the DDR programme, which should begin from the start of the DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9ad1237c-ed54-4ed8-bd0f-a234f54b8098", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 11, + "Paragraph": "Institutional requirements and methods for planning The objective of an integrated UN approach to DDR in the context of peace operations is to combine the different experiences, competencies and resources of UN funds, programmes, departments and agencies within a common approach and framework for planning and developing DDR programming, and to ensure a consistent and decentralized approach to implementation. Achieving the above objective requires sound mission planning involving all relevant UN agencies, departments, funds and programmes at both the Headquarters and field levels. The planning of integrated DDR programmes should be coordinated closely with the broader integrated mission planning and design process, and, ideally, should start before the mandate for the mission is adopted. Within this framework, the following Headquarters- and country-level institutional requirements are needed to ensure an overall integrated approach to developing, implemen- ting and evaluating DDR programming in the country in which is has been implemented.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9bfc4cde-007c-4931-910b-0c1a8b5207f0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 11, + "Paragraph": "Planning structures: Headquarters The establishment of an interdepartmental mission task force (IMTF) provides a framework within which various UN entities should contribute to the coordination and planning of peace operations, and ensures that institutional and field-level capacities and resources work closely and effectively together to achieve the objectives of a particular mission. An IMTF subgroup on DDR should be established within this framework to ensure an integrated approach to pre-deployment planning at the Headquarters level (i.e., before a field presence has been established). The key planning functions to be covered by the IMTF DDR subgroup should include the design and planning of integrated staffing struc- tures (as far as possible); agreement on common lines of authority for DDR planning, operations and implementation; institutional division of responsibilities; integrated task management organization; the drawing up of an overall budget; and the inclusion of best practices learned from earlier missions. In the pre-deployment phase, the IMTF subgroups should also act as the institutional focal points and links between Headquarters and field operations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "23421522-0312-407e-8daa-d49ebb202219", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 12, + "Paragraph": "UN country team DDR task force To ensure effective and sustainable involvement of the UN country team in integrated DDR programming, a UN country team DDR task force (headed by the DSRSG) and technical working group should be established to manage and supervise the integrated approach, including providing the resources and staff that have been agreed upon, being involved in key strategic decisions, and ensuring adequate liaison with Headquarters-level bodies and processes. Individual members of the UN country team shall be responsible for ensuring that their respective agencies, funds or programmes fulfil the responsibilities and carry out the roles defined in the integrated DDR strategy.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "532ccacc-1ea5-4288-9d44-a4de689eee96", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 12, + "Paragraph": "Mission DDR steering group Given the involvement of the different components of the mission in DDR or DDR-related activities, a DDR steering group should also be established within the peacekeeping mission to ensure the exchange of information, joint planning and joint operations. The DSRSG should chair such a steering group. The steering group should include, at the very least, the DSRSG (political/rule of law), force commander, police commissioner, chief of civil affairs, chief of political affairs, chief of public information, chief of administration and chief of the DDR unit. Given the central role played by the UN country team and Resident Coordinator in coordinating UN activities in the field both before and after peace operations, as well as its continued role after peace operations have come to an end, the UN country team should retain strategic oversight of and responsibility, together with the mission, for putting the integrated DDR approach into operation at the field level.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c0cd44f5-a7d3-4d00-99b8-a2168405e32d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 12, + "Paragraph": "Integrated UN DDR unit An integrated DDR unit should be established within the peacekeeping mission in order to ensure that planning and implementation of the DDR strategy and programmes is com- prehensive and coordinated, and includes all the necessary elements, within the mission 3.42\tand among partners in the field (see Annex C and IDDRS 3.42 on Personnel and Staffing). Given the important differences among the administrative and financial procedures of different UN Agencies, Departments, Funds and Programmes, as well as their various implementation methods, it is not possible to achieve complete operational/administrative integration. Instead, the goal should be complete integration at the planning level and in the methods of the various entities involved in the mission to ensure efficient and timely coordination of operations within this framework. An integrated and centralized mechanism for reporting on DDR programme results should be established to compile, consolidate and distribute information and monitor results from the activities of all the UN entities involved.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b0217048-f46f-455f-90f4-4a8b1ab18697", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 12, + "Paragraph": "Integrated planning, programming and management To ensure an integrated approach to DDR programme development and management, all UN entities should participate in and contribute to the various processes involved, in parti- cular, conducting comprehensive technical assessments, the design of a programme strategy, the identification of key outputs and results and the development of integrated management arrangements. Participation in these processes is essential to the identification of how each UN entity can best contribute, according to its particular expertise, to both the integrated DDR strategy and the precise methods for ensuring the best possible coordination and a joint overall approach.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0f4cc4da-f2d9-4939-a912-6e666ccd060d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 13, + "Paragraph": "Joint operations and implementation A joint \u2014 as opposed to fully integrated \u2014 approach to DDR operations and implementa- tion should be adopted among all participating UN entities, involving close coordination using a common operational work plan. To maximize coordination, overall authority for coordination and supervision of implementation should be delegated to those UN staff integrated into the DDR programme management structure, while the programme should be implemented by the appropriate agency staff.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "26e52397-cc6a-42ec-8d44-79b02b78364b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "Annex B: Guide to conducting a DDR technical assessment mission This annex provides a guide to the preparation and carrying out of a DDR assessment mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3857f99f-3ffd-41f2-940b-7ffb90567696", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 15, + "Paragraph": "Preparation In order to ensure that the maximum amount of information is gathered from meetings in the mission area, a great deal of preparatory work should be done before starting the assess- ment mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "13ed0a10-920b-4d2d-9a8b-ebd7920f9cc1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 15, + "Paragraph": "Background information This will include developing a good understanding of the following: the UN approach to DDR issues; an overview of the regional conflict map; neighbouring States\u2019 political, commercial and security interests, etc.; the country situation, including the number and availability of small arms and light weapons;1 existing work being performed by the UN country team and other partners, such as the World Bank and non-governmental organizations (NGOs); existing provisions for DDR within current security arrangements or peace agreements signed between parties to the conflict; the experience of previous DDR operations (if any) and the role of regional organiza- tions and interested Member States.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "07066581-b512-481c-ba2a-877dbdd241f6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 15, + "Paragraph": "Meetings Staff members on a DDR assessment visit should plan to meet with representatives from: the parties to the conflict at the political and military levels; members of the government; civil society (such as political parties, church groups, women\u2019s organizations, local NGOs, etc.); regional mediators or regional organizations, including monitoring bodies; interested Member States supporting the peace process; members of the UN country team and international organizations; major international NGOs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7f1c09cc-dd4a-41cf-9395-2c78587a95bd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 15, + "Paragraph": "Conduct of the DDR assessment mission The aim of the assessment mission is to develop an in-depth understanding of the key DDR-related areas, in order to ensure efficient, effective and timely planning and resource mobilization for the DDR programme. The DDR staff member(s) of a DDR assessment mission should develop a good understanding of the following areas: the legal framework for the DDR programme, i.e., the peace agreement; specifically designated groups that will participate in the DDR programme; the DDR planning and implementation context; international, regional and national implementing partners; methods for implementing the different phases of the DDR programme; a public information strategy for distributing information about the DDR programme; military/police- and security-related DDR tasks; administrative and logistic support requirements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "160b8dbb-6e2f-4188-8c4a-2ba42ee4f6e3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 16, + "Paragraph": "Legal framework In most post-conflict situations, a peace agreement provides the legal framework for the implementation of a DDR programme. Many of the terms and conditions of the DDR pro- gramme should be specified in the peace agreement: who is to be disarmed; by whom; the time schedule for disarmament; the nature of the programme (disengagement, cantonment, type of reintegration assistance); and institutional arrangements (national and international) to guide and implement the programme. The assessment mission should decide whether the agreed terms and conditions con- tained in the legal framework are sufficient or realistic enough to allow successful imple- mentation of the DDR programme. If an assessment mission is carried out before any legal framework has been established, efforts should be made to ensure that there is clarity and agreement on the key DDR issues. Much of the required information may not be contained within the peace agreement. Therefore, the joint assessment mission is an important tool to gather more information in order to structure a UN approach to support the mission DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a94df386-9a11-4114-b89f-109111619a1d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 16, + "Paragraph": "Assessing the planning and implementation context A key aspect of the assessment mission is to understand the opportunities and problems posed by the unique political/diplomatic, military and socio-economic context in the post- conflict society, and assess their implications for the planning and implementation of the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a0eeaf8a-2b3f-44a6-9bd2-d6168a2b627c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 16, + "Paragraph": "Political and diplomatic factors Political will A genuine commitment of the parties to the process is vital to the success of DDR. Commit- ment on the part of the former warring parties, as well as the government and the community at large, is essential to ensure that there is national ownership of the DDR programme. Often, the fact that parties have signed a peace agreement indicating their willingness to be dis- armed may not always represent actual intent (at all levels of the armed forces and groups) to do so. A thorough understanding of the (potentially different) levels of commitment to the DDR process will be important in determining the methods by which the international community may apply pressure or offer incentives to encourage cooperation. Different incentive (and disincentive) structures are required for senior-, middle- and lower-level members of an armed force or group. It is also important that political and military com- manders (senior- and middle-level) have sufficient command and control over their rank and file to ensure compliance with DDR provisions agreed to and included in the peace agreement.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7a20b315-3ece-412c-837b-ddee84cb2dd7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Inclusive national framework An inclusive national framework to provide the political and policy guidance for the national DDR programme is central to two guiding principles of a successful programme: national ownership and inclusiveness. Past DDR programmes have been less successful when carried out entirely by the regional or international actors without the same level of local involve- ment to move the process forward. However, even when there is national involvement in the DDR programme, it is important to ensure that the framework for DDR brings together a broad spectrum of society to include the former warring parties, government, civil society (including children\u2019s and women\u2019s advocacy groups) and the private sector, as well as regional and international guarantors of the peace process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae9a90c7-abc3-49c0-aaf4-e39fc037c8a9", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Transition problems and mediation mechanisms Post-conflict political transition processes generally experience many difficulties. Problems in any one area of the transition process can have serious implications on the DDR programme.2 A good understanding of these links and potential problems should allow planners to take the required preventive action to keep the DDR process on track, as well as provide a realistic assessment of the future progress of the DDR programme. This assessment may mean that the start of any DDR activities may have to be delayed until issues that may prevent the full commitment of all the parties involved in the DDR programme have been sorted out. For this reason, mechanisms must be established in the peace agreement to mediate the inevitable differences that will arise among the parties, in order to prevent them from under- mining or holding up the planning and implementation of the DDR programme.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "30ab58ed-da86-470f-8df5-396e6ca1cb9c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Third-party support Third-party political, diplomatic and financial support is often one such mediation mechanism that can reduce some of the tensions of post-conflict political transitions. Third-party actors, either influential Member States, or regional or international organizations can also focus their attention on the broader aspects of the DDR programme, such as the regional dimen- sion of the conflict, cross-border trafficking of small arms, foreign combatants and displaced civilians, as well as questions of arms embargoes and moratoriums on the transfer of arms, or other sanctions.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "acfabaed-cb3b-4ed9-8207-f75bdb824a1c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Security factors The security situation A good understanding of the overall security situation in the country where DDR will take place is essential. Conditions and commitment often vary greatly between the capital and the regions, as well as among regions. This will influence the approach to DDR. The exist- ing security situation is one indicator of how soon and where DDR can start, and should be assessed for all stages of the DDR programme. A situation where combatants can be disarmed and demobilized, but their safety when they return to their areas of reintegration cannot be guaranteed will also be problematic.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7efbd9aa-6ede-4232-b610-8340c7ed318e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Security and enforcement capacity for DDR The capacity of local authorities to provide security for commanders and disarmed com- batants to carry out voluntary or coercive disarmament must be carefully assessed. A lack of national capacity in these two areas will seriously affect the resources needed by the peacekeeping force. UN military, civilian police and support capacities may be required to perform this function in the early phase of the peacekeeping mission, while simultaneously developing national capacities to eventually take over from the peacekeeping mission. If this security function is provided by a non-UN multinational force (e.g., an African Union or NATO force), the structure and processes for joint planning and operations must be assessed to ensure that such a force and the peacekeeping mission cooperate and coordinate effec- tively to implement (or support the implementation of) a coherent DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "04e0a3c2-0f94-4ef1-85a1-086bf2bc7177", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "Building confidence Ceasefires, disengagement and voluntary disarmament of forces are important confidence- building measures, which, when carried out by the parties, can have a positive effect on the DDR and wider recovery programme. The international community should, wherever possible, support these initiatives. Also, mechanisms should be put in place to investigate violations of ceasefires, etc., in a transparent manner.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ca29643-85c2-44ef-bb9d-d55e814b946e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "Socio-economic factors Overall socio-economic conditions The post-conflict socio-economic condition of the country is a major factor in determining the kind of DDR programme that should be implemented. The level of unemployment, the state of the (formal and informal) economy and the agricultural sector (i.e., access to land, rights and the ability of the country to feed itself), the condition of the country\u2019s infra- structure, and the capacity of state institutions to deliver basic services, combined with the length of the conflict, are all factors that should be taken into account when considering the specifics of any demobilization (length and types of programme) and socio-economic (reconciliation, justice issues and types of economic assistance) reintegration programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ab71d6b-7f21-4f0b-b62b-472a3f771c75", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "Local participation The role of the receiving communities is central to the successful reintegration of ex-com- batants. Therefore, close consultation must take place with all levels of the local community about the possible implications of the DDR programme for these communities, and the type of support (economic, reconciliation, etc.) required to reintegrate ex-combatants. This issue of returning ex-combatants to the communities must be assessed together with the overall impact of all the groups of people who will return, including internally displaced persons and refugees.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "083b66c0-a8d8-45cd-a2a4-6786f7789258", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "A development approach DDR programmes can succeed only if there is a strong link with a national recovery pro- gramme, which provides not only for political and economic development, but also for a restructuring and reform of the State\u2019s security sector and the fostering of national reconcili- ation. An assessment should ascertain if these factors are being considered and who will be supporting this aspect of post-conflict peace-building.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "58b537b3-dbfc-4481-82b1-dfb7a217bb53", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "Weapons control framework The weapons control framework is another key element that affects a DDR programme. Constitutional and legislative guarantees for weapons ownership, the import/export of small arms, and the regulation of the national gun industry and private security firms must be considered in terms of how they support or limit the effective implementation of a DDR programme. Equally important are the national administrative infrastructure and enforcement capacity to implement the weapons control framework.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "d61d64ba-3b0a-4f96-9c23-784c1e448067", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 19, + "Paragraph": "Arms embargoes The assessment mission should examine the illicit supply of small arms and light weapons coming into the post-conflict zone. This is often caused by porous borders and weak border- policing capacities. Arms embargoes should be considered as one tool available to deal with illicit trafficking of small arms and light weapons, thus supporting both DDR and the wider national recovery programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9b93da07-a43d-46ee-ad6b-f98daba1d597", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 19, + "Paragraph": "Defining specific groups for DDR The character, size, composition and location of the groups specifically identified for DDR are among the required details that are often not included the legal framework, but which are essential to the development and implementation of a DDR programme. In consultation with the parties and other implementing partners on the ground, the assessment mission should develop a detailed picture of: WHO will be disarmed, demobilized and reintegrated; WHAT weapons are to be collected, destroyed and disposed of; WHERE in the country the identified groups are situated, and where those being dis- armed and demobilized will be resettled or repatriated to; WHEN DDR will (or can) take place, and in what sequence for which identified groups, including the priority of action for the different identified groups. It is often difficult to get this information from the former warring parties. Therefore, the UN should find other, independent sources, such as Member States or local or regional agencies, in order to acquire information. Community-based organizations are a particularly useful source of information on armed groups. Potential targets for disarmament include government armed forces, opposition armed groups, civil defence forces, irregular armed groups and armed individuals. These generally include: male and female combatants, and those associated with the fighting groups, such as those performing support roles (voluntarily or because they have been forced to) or who have been abducted; child (boys and girls) soldiers, and those associated with the armed forces and groups; foreign combatants; dependants of combatants. The end product of this part of the assessment of the armed forces and groups should be a detailed listing of the key features of the armed forces/groups.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1af08ba0-0f7a-4d0a-84d0-147f7387bebe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 19, + "Paragraph": "DRR planning and implementation partners The assessment mission should document the relative capacities of the various potential DDR partners (UN family; other international, regional and national actors) in the mission area that can play a role in implementing (or supporting the implementation of) the DDR programme.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7419df1b-2847-469d-b548-2b960627b67e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 19, + "Paragraph": "UN funds, agencies and programmes UN agencies can perform certain functions needed for DDR. The resources available to the UN agencies in the country in question should be assessed and reflected in discussions at Headquarters level amongst the agencies concerned. The United Nations Development Programme may already be running a DDR programme in the mission area. This, along with support from other members of the DDR inter-agency forum, will provide the basis for the integrated DDR unit and the expansion of the DDR operation into the peacekeeping mission, if required.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9c330de0-8964-439a-a0ce-d1cd5e3d084d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "International and regional organizations Other international organizations, such as the World Bank, and other regional actors may be involved in DDR before the arrival of the peacekeeping mission. Their role should also be taken into account in the overall planning and implementation of the DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4f54fbb0-d090-4cd9-ae63-7fbd504e2d39", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "Non-governmental organizations NGOs are usually the major implementing partners of specific DDR activities as part of the overall programme. The various NGOs contain a wide range of expertise, from child protection and gender issues to small arms, they tend to have a more intimate awareness of local culture and are an integral partner in a DDR programme of a peacekeeping mission. The assessment mission should identify the major NGOs that can work with the UN and the government, and should involve them in the planning process at the earliest opportunity.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f061bb0b-e525-4382-bf75-7b5c39cc3c05", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "Support requirements Following a review of the extent and nature of the problem and an assessment of the relative capacities of other partners, the assessment mission should determine the DDR support (finance, staffing and logistics) requirements, both in the pre-mandate and establishment phases of the peacekeeping mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "388a722b-7646-4bdb-8338-232a89bc5c98", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "Finance The amount of money required for the overall DDR programme should be estimated, includ- ing what portions are required from the assessed budget and what is to come from voluntary contributions. In the pre-mandate period, the potential of quick-impact projects that can be used to stabilize ex-combatant groups or communities before the formal start of the 3.41\tDDR should be examined. Finance and budgeting processes are detailed in IDDRS 3.41 on Finance and Budgeting.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1780a52d-5e80-4080-96fd-cab998996f85", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "Staffing The civilian staff, civilian police and military staff requirements for the planning and imple- mentation of the DDR programme should be estimated, and a deployment sequence for these staff should be drawn up. The integrated DDR unit should contain personnel represent- ing mission components directly related to DDR operations: military; police; logistic support; public information; etc. (integrated DDR personnel and staffing matters are discussed in 3.42\tIDDRS 3.42 on Personnel and Staffing). The material requirements for DDR should also be estimated, in particular weapons storage facilities, destruction machines and disposal equipment, as well as requirements for the demobilization phase of the operation, including transportation (air and land). Mission 3.40\tand programme support logistics matters are discussed in IDDRS 3.40 on Mission and Pro- gramme Support for DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1dee4810-00b3-498f-8a91-5c32425fcf75", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "The structure and content of the joint assessment report The assessment mission report should be submitted in the following format (Section II on the approach of the UN forms the input into the Secretary-General\u2019s report to the Security Council): Preface Maps Introduction Background Summary of the report Section I: Situation Armed forces and groups Political context Socio-economic context Security context Legal context Lessons learned from previous DDR operations in the region, the country and else- where (as relevant) Implications and scenarios for DDR programme Key guiding principles for DDR operations Existing DDR programme in country Section II: The UN approach DDR strategy and priorities Support for national processes and institutions Approach to disarmament Approach to demobilization Approach to socio-economic reintegration Approach to children, women and disabled people in the DDR programme Approach to public information Approach to weapons control regimes (internal and external) Approach to funding of the DDR programme Role of the international community Section III: Support requirements Budget Staffing Logistics Suggested annexes Relevant Security Council resolution authorizing the assessment mission Terms of reference of the multidisciplinary assessment mission List of meetings conducted Summary of armed forces and groups Additional information on weapons flows in the region Information on existing disarmament and reintegration activities Lessons learned and evaluations of past disarmament and demobilization pro- grammes Proposed budget, staffing structure and logistic requirements", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f8d2871b-fc0a-4dfd-8669-74e406461fdc", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 22, + "Paragraph": "An example of DDR strategic objectives The UN DDR strategic framework consists of three interrelated strategic policy objectives, and supports the overall UN aim of a stable and peaceful country x, and the accompanying DDR tasks.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "facad709-299d-49b9-a08a-a8bfc288d67d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 22, + "Paragraph": "Key tasks The UN should assist in achieving this aim by providing technical support to the parties at the peace talks to support the development of: Clear and sound DDR approaches for the different identified groups, with a focus on social and economic reintegration; An equal emphasis on vulnerable identified groups (children, women and disabled people) in or associated with the armed forces and groups; A detailed description of the disposition and deployment of armed forces and groups (local and foreign) to be included in the DDR programme; A realistic time-line for the commencement and duration of the DDR programme; Unified national political, policy and operational mechanisms to support the implemen- tation of the DDR programme; A clear division of labour among parties (government and party x) and other imple- menting partners (DPKO [civilian, military]; UN agencies, funds and programmes; international financial organizations [World Bank]; and local and international NGOs).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a4cc850b-f4e9-45aa-b4d8-54fe5cfff151", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 22, + "Paragraph": "Key tasks The UN should assist in achieving this aim by providing planning capacities and physical resources to: Establish all-inclusive joint planning mechanisms; Develop a time-phased concept of the DDR operations; Establish division of labour for key DDR tasks; Estimate the broad resource requirements; Start securing voluntary contributions; Start the procurement of DDR items with long lead times; Start the phased recruitment of personnel required from DPKO and other UN agencies; Raise a military component from the armed forces of Member States for DDR activities; Establish an effective public information campaign; Establish programmatic links between the DDR operation and other areas of the mission\u2019s work: security sector reform; recovery and reconstruction; etc.; Support the implementation of the established DDR strategy/plan.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3ff4d15b-172e-4f2e-8319-04b96aac6ba7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 23, + "Paragraph": "DDR strategic objective #3 A national weapons management programme and a regional strategy to stop the flow of small arms and light weapons into country x.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c23cf74c-8e46-40e3-9844-410d3eecee69", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 22, + "Paragraph": "Key tasks To ensure a comprehensive approach to disarmament, the UN should also focus on the supply side of the weapons issue. In this regard, the UN can provide technical, political (good offices) and diplomatic support to: assist the parties to establish and implement necessary weapons management legislation; support country x\u2019s capacity to implement the UN Programme of Action to Prevent, Com bat and Eradicate the Illicit Trade in Small Arms and Light Weapons in All Its Aspects in 2001 (A/Conf.192/15); support regional initiatives to control the flow of illicit small arms and light weapons in the region.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-3.20-DDR-Programme-Design.json b/src/Static/data/json/IDDRS-3.20-DDR-Programme-Design.json new file mode 100644 index 0000000..d2ac8f9 --- /dev/null +++ b/src/Static/data/json/IDDRS-3.20-DDR-Programme-Design.json @@ -0,0 +1,914 @@ +[ + { + "ID": "81b55a49-fa8f-40a2-9739-78bc7049f691", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": null, + "Paragraph": "Summary Each programme design cycle, including the disarmament, demobilization and reintegration (DDR) programme design cycle, has three stages: (1) detailed field assessments; (2) detailed programme development and costing of requirements; and (3) development of an implemen tation plan. Throughout the programme design cycle, it is of the utmost importance to use a flexible approach. While experiencing each stage of the cycle and moving from one stage to the other, it is important to ensure coordination among all the participants and stakeholders involved, especially national stakeholders. A framework that would probably work for integrated DDR programme design is the postconflict needs assessment (PCNA), which ensures consistency between United Nations (UN) and national objectives, while consider ing differing approaches to DDR. Before the detailed programme design cycle can even begin, a comprehensive field needs assessment should be carried out, focusing on areas such as the country\u2019s social, economic and political context; possible participants, beneficiaries and partners in the DDR programme; the operational environment; and key priority objectives. This assessment helps to establish important aspects such as positive or negative factors that can affect the outcome of the DDR programme, baseline factors for programme design and identification of institutional capacities for carrying out DDR. During the second stage of the cycle, key considerations include identifying DDR participants and beneficiaries, as well as performance indicators, such as reintegration oppor tunities, the security situation, size and organization of the armed forces and groups, socioeconomic baselines, the availability and distribution of weapons, etc. Also, methodolo gies for data collection together with analysis of assessment results (quantitative, qualitative, mass surveys, etc.) need to be decided. When developing DDR programme documents, the central content should be informed by strategic objectives and outcomes, key principles of intervention, preconditions and, most importantly, a strategic vision and approach. For example, in determining an overall strategic approach to DDR, the following questions should be asked: (1) How will multiple components of DDR programme design reflect the realities and needs of the situation? (2) How will eligibility criteria for entry in the DDR programme be determined? (3) How will DDR activities be organized into phases and in what order will they take place within the recom mended programme timeframe? (4) Which key issues are vital to the implementation of the programme? Defining the overall approach to DDR defines how the DDR programme will, ultimately, be put into operation. When developing the results and budgeting framework, an important consideration should be ensuring that the programme that is designed complies with the peacekeeping resultsbased budgeting framework, and establishing a sequence of stages for the implemen tation of the programme. The final stage of the DDR programme design cycle should include developing planning instruments to aid practitioners (UN, nonUN and government) to implement the activities and strategies that have been planned. When formulating the sequence of stages for the implementation of the programme, particular attention should be paid to coordinated management arrangements, a detailed work plan, timing and methods of implementation. 3.10 1.20", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f69d2471-1d8a-4516-a316-12f7db02a32c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides guidance on how to develop a DDR programme. It is therefore the fourth stage of the overall DDR planning cycle, following the assessment of DDR require ments (which forms the basis for the DDR mandate) and the development of a strategic and policy framework for UN support to DDR (which covers key objectives, activities, basic insti tutional/operational requirements, and links with the joint assessment mission (JAM) and other processes; also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). This module does not deal with the actual content of DDR processes (which is covered in IDDRS Levels 4 and 5), but rather describes the methods, procedures and steps neces sary for the development of a programme strategy, results framework and operational plan. Assessments are essential to the success or failure of a programme, and not a mere formality.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "25c3e922-9445-4e91-b20a-fbb553f723df", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of inte grated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f75c646c-4c6f-42f0-a5f4-d21f07c6fa4f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 4, + "Paragraph": "Introduction In the past, the quality, consistency and effectiveness of UN support for DDR has sufferred as a result of a number of problems, including a narrowly defined \u2018operational/logistic\u2019 approach, inadequate attention to the national and local context, and poor coordination between UN actors and other partners in the delivery of DDR support services. The IDDRS are intended to solve most of these problems. The application of an inte grated approach to DDR should go beyond integrated or joint planning and organizational arrangements, and should be supported by an integrated programme and implementation framework for DDR. In order to do this, the inputs of various agencies need to be defined, organized and placed in sequence within a framework of objectives, results and outputs that together establish how the UN will support each DDR process. The need for an allinclusive pro gramme and implementation framework is emphasized by the lengthy timeframe of DDR (which in some cases can go beyond the lifespan of a UN peacekeeping mission, necessitating close cooperation with the UN country team), the multisectoral nature of interventions, the range of subprocesses and stakeholders, and the need to ensure close coordination with national and other DDRrelated efforts.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fda2dcaf-fd70-49c5-b291-afcf5d11291a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 5, + "Paragraph": "The programme design cycle DDR programme and implementation plans are developed so as to provide further details on the activities and operational requirements necessary to achieve DDR goals and carry out the strategy identified in the initial planning of DDR. In the context of integrated DDR approaches, DDR programmes also provide a common framework for the implementation and management of joint activities among actors in the UN system. In general, the programme design cycle consists of three main stages: I: Conducting a detailed field assessment; II: Preparing the programme document and budget; III: Developing an implementation plan. Given that the support provided by the UN for DDR forms one part of a larger multi stakeholder process, the development of a UN programme and implementation framework should be carried out with national and other counterparts, and, as far as possible, should be combined with the development of a national DDR programme. There are several frameworks that can be used to coordinate programme develop ment efforts. One of the most appropriate frameworks is the postconflict needs assess ment (PCNA) process, which attempts to define the overall objectives, strategies and activi ties for a number of different interventions in different sectors, including DDR. The PCNA represents an important mechanism to ensure consistency between UN and national objec tives and approaches to DDR, and defines the specific role and contributions of the UN, which can then be fed into the programme development process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce01a823-a218-45f2-9b60-3c483fda7742", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 4, + "Paragraph": "Objectives A detailed field assessment builds on assessments and planning for DDR that have been carried out in the preplanning and technical assessment stages of the planning process (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). Contributing to the design of the DDR programme, the detailed field assessment: deepens understanding of key DDR issues and the broader operating environment; verifies information gathered during the technical assessment mission; verifies the assumptions on which planning will be based, and defines the overall approach of DDR; identifies key priority objectives, issues of concern, and target and performance indicators; 3.10 identifies operational DDR options and interventions that are precisely targeted, realistic and sustainable.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a67b73d0-9de5-4151-845f-66195ed2915d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 6, + "Paragraph": "Planning for an assessment The following should be considered when planning a detailed field assessment for DDR: Scope: From the start of DDR, practitioners should determine the geographical area that will be covered by the programme, how long the programme will last, and the level of detail and accuracy needed for its smooth running and financing. The scope and depth of this detailed field assessment will depend on the amount of information gathered in previous assessments, such as the technical assessment mission. The current political and military situation in the country concerned and the amount of access possible to areas where combatants are located should also be carefully considered; Thematic areas of focus: The detailed field assessment should deepen understanding, analysis and assessments conducted in the premission period. It therefore builds on information gathered on the following thematic areas: political, social and economic context and background; causes, dynamics and consequences of the armed conflict; identification of specific groups, potential partners and others involved in the discussion process; distribution, availability and proliferation of weapons (primarily small arms and light weapons); institutional capacities of national stakeholders in areas related to DDR; survey of socioeconomic conditions and local capacities to absorb excombatants and their dependants; preconditions and other factors that will influence DDR; baseline data and performance indicators for programme design, implementation, monitoring and evaluation. 3.10\t(Also see Annex B of IDDRS 3.10 on Integrated DDR Planning: Processes and Structures.); Expertise: The next step is to identify the DDR expertise required. Assessment teams should be composed of specialists in all aspects of DDR (see IDDRS Level 5 for more information on the different needs that have to be met during a DDR mission). To ensure coherence with the political process and overall objectives of the peacekeeping mandate, the assessment should be led by a member of the UN DDR unit; Local participation: Where the political situation allows, national and local participation in the assessment should be emphasized to ensure that local analyses of the situation, the needs and appropriate solutions are reflected and included in the DDR pro gramme. There is a need, however, to be aware of local bias, especially in the tense immediate postconflict environment; Building confidence and managing expectations: Where possible, detailed field assessments should be linked with preparatory assistance projects and initiatives (e.g., community development programmes and quickimpact projects) to build confidence in and support for the DDR programme. Care must be taken, however, not to raise unrealistic expec tations of the DDR programme; Design of the field assessment: Before starting the assessment, DDR practitioners should: identify the research objectives and indicators (what are we assessing?); identify the sources and methods for data collection (where are we going to obtain our information?); develop appropriate analytical tools and techniques (how are we going to make sense of our data?); develop a method for interpreting the findings in a practical way (how are we going to apply the results?); Being flexible: Thinking about and answering these questions are essential to developing a welldesigned approach and work plan that allows for a systematic and wellstructured data collection process. Naturally, the approach will change once data collection begins in the field, but this should not in any way reduce its importance as an initial guiding blueprint.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "aba76d59-7102-455a-af1f-066f4a2053a7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 7, + "Paragraph": "Implementing the assessment In order to provide structured and precise data (both qualitative and quantitative) for the development of a DDR programme strategy and the accompanying implementation plan, the assessment should collect data on the basis of clear research objectives and indicators. Assessment objectives and indicators can be divided into two main categories: an assessment of the operational environment for DDR (see Annex B for a complete framework for the analysis of a DDR operating environment); an assessment of those expected to participate in the DDR programme and of perform ance indicators (see Annex C for a complete framework for the analysis of DDR parti cipants and beneficiaries, and performance indicators).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "069c1643-5771-4135-8c98-a596985a1f18", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 7, + "Paragraph": "Framework for an assessment An assessment of the DDR operating environment, potential participants, and programme and performance indicators should include the following: assessment objectives; indicators; methodology; risks and assumptions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "44bda6ec-ec27-4a08-a038-a8cc0b4ca78b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 7, + "Paragraph": "Assessing the operational environment for DDR: Assessment objectives The following should be taken into account when analysing the operational environment in which DDR will take place: Identify factors that can positively or negatively affect the outcome of DDR: A number of legal, political, socioeconomic, security, regional and international factors can influence the prospects, effectiveness and sustainability of a DDR programme. Using relevant indicators, these factors need to be identified and mapped in order to clearly define the policy and operational environment, identify key preconditions and foundations, and enable effective threat analysis and the development of strategies to reduce risk; Map baseline indicators to prepare appropriate benchmarks for DDR programme design: DDR programmes have two general aims: to decrease the overall incidence of (or potential for) armed violence; and to improve the socioeconomic conditions and productivity in host communities. Defining baseline indicators in both these areas (including, for example, the incidence and type of violence and demographic community profiles) can allow the development of appropriate programme strategies and serve as programme design benchmarks; Assess institutional capacities to undertake DDR: The extent of UN support to a DDR pro gramme will depend on the level of national institutional and other capacities within the government, civil society and communities. Assessing existing capacity in the areas of disarmament/weapons control, demobilization, reintegration and the ability of communities to absorb excombatants and their dependants therefore provides key indicators for establishing the extent and scope of UN support for DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b28f77c2-c637-467b-b1de-6107706168d2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": null, + "Paragraph": "Identifying DDR participants and beneficiaries, and performance indicators: Assessment objectives To establish the appropriate performance indicators when analysing the potential partici pants in the DDR programme, five factors should be considered: The size, organization and deployment of participants: The size and nature of the DDR programme will depend, to a large extent, on the number, organization and profile of eligible combatants. Collecting data on both command and control, and combatant profiles (military, socioeconomic, demographic, location, sex, age, health, and numbers of noncombatant associates and dependants) provides DDR programme designers with a way to accurately assess overall group size, identify client groups, and design the DDR approach according to the specific organization and profile of the armed forces and groups; The availability and distribution of weapons: The extent to which a DDR programme is able to effectively reduce the availability of weapons in a postconflict context is determined to some degree by the accuracy of disarmament/weapons collection targets. In order to set these, it is necessary to estimate the total number of weapons available, as well as their distribution. This information can allow the identification and prioritization of programme participants, help refine incentive schemes to increase the numbers of weapons collected, and be used as a baseline to assess the overall effectiveness of the weapons reduction component of DDR; The reintegration opportunities for the primary participant group: The sustainable socio economic reintegration of excombatants, women and children associated with armed forces and groups, and dependants, requires the development of economically viable reintegration options and strategies. The development of reintegration schemes should be based on a thorough understanding of conditions in areas of return/resettlement (including local markets for goods and services, infrastructure and economic needs), as well as an assessment of viable reintegration options; The socio-economic baseline in the country under reconstruction: DDR programmes should contribute to improving the economic conditions in host communities through increased security, and through programmes that boost employment and economic productivity. Measuring key development indicators before and after DDR programme implemen tation will help to assess the effectiveness of DDR in meeting these goals; The security situation: Obtaining data on levels of armed violence, impacts on security (direct/indirect), levels and types of victimization, and local perceptions of security helps to establish a baseline against which to measure changes in the security situation and the contribution of DDR to an overall increase in security.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3c32dd72-b35e-447d-a233-d4718712e88b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 10, + "Paragraph": "Methodologies for data collection Once the outlines for the assessment have been developed, the next stage should be to decide on the best methods to collect data, some of which are: direct observation; key informant interviews and focus groups; mass surveys; participatory assessments; market research; institutional capacity research; sampling. The best approach is to be flexible and \u2018mix and match\u2019 methodologies. Data should be collected from as broad a sample as possible, and particular efforts should be made to include women, younger people (youth) and children. In an unstable context with unreliable or fragmentary data, multiple sources and techniques can be used, and results derived through triangulation or crosschecking of information. The sections below describe each one of these methodologies for data collection.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9e443977-2838-46c0-bd81-0ad23d561e10", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 10, + "Paragraph": "Direct observation Several vital types of information can only be collected by direct observation. This can include sighting weapons (recording type, model, serial number, country of manufacture and condition); examining weapons caches and stockpiles (geographic location, distribu tion, contents and condition of weapons, physical size, etc.); recording information on military installations and forces (location, size, identity, etc.); investigating weapons markets and other commercial transactions (supply and demand, prices, etc.); and recording the effects of small arms (displaced camps and conditions, destruction of infrastructure, types of wounds caused by small arms, etc.). Direct observation may also be a useful technique to obtain information about \u2018hidden\u2019 members of armed groups and forces, such as children, abductees and foreign fighters, whose association with the group may not be formally acknowledged.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3ab77ccf-8cea-4a29-853c-fa2440e1363d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 10, + "Paragraph": "Key informant interviews and focus groups Interviews and focus groups are essential to obtain information on, for example, com mand structures, numbers and types of people associated with the group, weaponry, etc., through direct testimony and group discussions. Vital information, e.g., numbers, types and distribution of weapons, as well as on weapons trafficking, children and abductees being held by armed forces and groups and foreign fighters (which some groups may try to conceal), can often be obtained directly from excombatants, local authorities or civilians. Although the information given may not be quantitatively precise or reliable, important qualitative conclusions can be drawn from it. Corroboration by multiple sources is a tried and tested method of ensuring the validity of the data (also see IDDRS 4.10 on Disarma ment, IDDRS 5.10 on Women, Gender and DDR, IDDRS 5.20 on Youth and DDR, IDDRS 5.30 on Children and DDR and IDDRS 5.40 on Crossborder Population Movements).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "74f89048-554d-4919-8106-17634ccd77bc", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 10, + "Paragraph": "Mass-based surveys Surveys can reveal important information, e.g., on trends in weapons availability, possession and distribution among excombatants; or information on the extent and nature of armed violence against civilians. The success or failure of a massbased survey ultimately depends on several factors, including the willingness of combatants and civilians to disclose sensi tive information, access to affected areas, design and administration of the questionnaire (is it easy to understand and administer?), and the extent to which the sample used in the survey is inclusive and representative.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b4d33ae0-90ab-453f-a0a0-5efbd9e3ad85", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 11, + "Paragraph": "Participatory assessments Participatory assessments, using the tools and methodology of participatory rural assess ment (PRA),1 is a useful methodology when the real issues and problems are not known to the researcher, and provides a way to avoid the problem of researcher bias in orientation and analysis. It is a particularly useful methodology when working with illiterate people, and can be adapted for use with different ages and sexes. To date, PRA tools have been used in securityrelated research, e.g.: for a small arms assessment, to explore subjective perceptions of small armsrelated insecurity (e.g., what impacts are most felt by civilians?); to obtain overviews of militia organizations and weapons distribution (through social mapping and history timeline exercises); and to identify community perceptions of matters relating to security sector reform (SSR), e.g., policing.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0debb4de-abc3-48a7-a51b-3159f4c9a455", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 11, + "Paragraph": "Market research Two sets of market research should be carried out. The first focuses on gathering informa tion relating to small arms. This could include: information on prices and how these have changed over time; identification of companies and other entities involved in weapons production, procurement and distribution; and details on weapons pipelines. This can provide important data on the nature, size and dynamics of the market or trade in small arms. Price information, particularly when collected at different locations within a country, can give insights into supply and demand dynamics that reveal differences in the extent of small arms proliferation and availability. Market research can also be used as a preventive measure by monitoring small arms prices, where a dramatic spike in prices usually indicates an upsurge in demand. A second set of market research should focus on gathering information on the local economic and employment situation so as to identify opportunities in the job market for reintegrating combatants (also see IDDRS 4.30 on Social and Economic Reintegration).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "882665e2-e153-41a8-9674-515dd5fb3439", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 11, + "Paragraph": "Institutional capacity assessments An assessment of the national institutional capacity to manage and implement the different aspects of DDR requires an evaluation of existing institutions and systems, human resources, and capacities. Three issues are of particular importance: the examination of existing capaci ties, as compared with those that are still needed; the efficiency and effectiveness of existing management structures; and the adequacy of legal and regulatory frameworks. This assess ment should provide information on institutional capacities for weapons collection and control, institutional coordination, managing and running demobilization camps, managing information flows, and providing support for reintegration planning and implementation.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7a0196a6-f699-4a01-a4f6-59a532ec8fc0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 11, + "Paragraph": "Sampling Although not a method for collecting or analysing information, sampling is a useful tool for determining the scope, focus and precision of data collection activities, and should be used together with all of the methods described above. Through sampling, general insight on specific DDR issues can be obtained from civilian populations and subgroups (especially armed forces and groups). The key to obtaining valid assumptions through sampling is to ensure that the population sampled is representative, i.e., has characteristics broadly similar 4.30 to those of the entire population. The decision whether to use random as opposed to non random sampling, or stratified as opposed to clustered sampling must be taken after a careful assessment of the context, research needs and amount of diversity in the population that is being studied.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "840e8739-f41b-48b0-9020-217a2bafc6a7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 12, + "Paragraph": "Analysing results: Tools and techniques Once datasets for different themes or areas have been generated, the next step is to make sense of the results. Several analytical tools and techniques can be used, depending on the degree of accuracy needed and the quality of the data: Qualitative analytical tools are used to make sense of facts, descriptions and perceptions through comparative analysis, inference, classification and categorization. Such tools help to understand the context; the political, social and historical background; and the details that numbers alone cannot provide; Quantitative analytical tools (statistical, geometric and financial) are used to calculate trends and distribution, and help to accurately show the size and extent, quantity and dispersion of the factors being studied; Estimation and extrapolation help to obtain generalized findings or results from sampled data. Given the large geographical areas in which DDR assessments are carried out, estimating and extrapolating based on a representative sample is the only way to obtain an idea of the \u2018bigger picture\u2019; Triangulation (crossreferencing), or the comparison of results from three different methods or data sources, helps to confirm the validity of data collected in contexts where infor mation is fragmentary, imprecise or unreliable. Although normally used with direct observation and interviewing (where facts are confirmed by using three or more differ ent sources), triangulation can also be applied between different methods, to increase the probability of reaching a reasonably accurate result, and to maximize reliability and validity; Geographic/Demographic mapping, which draws on all the techniques mentioned above, involves plotting the information gained about participants and beneficiaries geo graphically (i.e., the way they are spread over a geographical area) or chronologically (over time) to determine their concentration, spread and any changes over time.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7f818337-e48d-493c-9f7f-e0e9717cc403", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 12, + "Paragraph": "Stage II: Preparing the DDR programme document Designing a comprehensive DDR programme document is a time and labourintensive process that usually takes place after a peacekeeping mission has been authorized, and before deployment in the field has started. The programme document represents a blueprint for how DDR will be put into oper ation, and by whom. It is different from an implementation plan (which is often more technical), provides timelines and information on how individual DDR tasks and activities will be carried out, and assigns responsibilities. The comprehensive DDR assessment will be the main source of primary data on which to draw when defining programme strategies, targets and so on. The programme design process should also be based on pre existing assessments and strategy development, most importantly the premandate assess ment and concept of operations, and should revalidate, refine and build on these key elements: strategic objectives and outcomes; key principles of intervention; preconditions; strategic vision and approach.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f899451c-70fc-48a1-b3b6-740ab5efa305", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 13, + "Paragraph": "Contextual analysis and rationale The DDR programme document should be based on an indepth understanding of the national or local context and the situation in which the programme is to be implemented, as this will shape the objectives, overall strategy and criteria for entry, as follows: General context and problem: This defines the \u2018problem\u2019 of DDR in the specific context in which it will be implemented (levels of violence, provisions in peace accords, lack of alternative livelihoods for excombatants, etc.), with a focus on the nature and con sequences of the conflict; existing national and local capacities for DDR and SSR; and the broad political, social and economic characteristics of the operating environment; Rationale and justification: Drawing from the situation analysis, this explains the need for DDR: why the approach suggested is an appropriate and viable response to the identified problem, the antecedents to the problem (i.e., what caused the problem in the first place) and degree of political will for its resolution; and any other factors that provide a compelling argument for undertaking DDR. In addition, the engagement and role of the UN should be specified here; Overview of armed forces and groups: This section should provide an overview of all armed forces and groups and their key characteristics, e.g., force/group strength, loca tion, organization and structure, political affiliations, type of weaponry, etc. This information should be the basis for developing specifically designed strategies and approaches for the DDR of the armed forces and groups (see Annex D for a sample table of armed forces and groups); Definition of participants and beneficiaries: Drawing on the comprehensive assessments and profiles of armed groups and forces and levels of violence that are normally inclu ded in the framework, this section should identify which armed groups and forces should be prioritized for DDR programmes. This prioritization should be based on their involvement in or potential to cause violence, or otherwise affect security and the peace process. In addition, subgroups that should be given special attention (e.g., special needs groups) should be identified; Socio-economic profile in areas of return: A general overview of socioeconomic conditions in the areas and communities to which excombatants will return is important in order to define both the general context of reintegration and specific strategies to ensure effec tive and sustainable support for it. Such an overview can also provide an indication of how much preDDR community recovery and reconstruction assistance will be necessary to improve the communities\u2019 capacity to absorb former combatants and other returning populations, and list potential links to other, either ongoing or planned, reconstruction and development initiatives.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "963a3c9a-d8b1-486d-bf67-d34fcc6be814", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 14, + "Paragraph": "DDR programme objectives Because the DDR programme document should contain strategies and requirements for a complex and multicomponent process, it should be guided by both an overall goal and a series of smaller objectives that clearly define expected outputs in each subsector. While generic (general) objectives exist, they should be adapted to the realities and needs of each context. The set of general and specific objectives outlined in this section make up the overall framework for the DDR programme. Example: Objectives of the national DDR programme in the Democratic Republic of the Congo (DRC) General objective: Contribute to the consolidation of peace, national reconciliation and the socioeconomic reconstruction of the country, as well as regional stability. Specific objectives: Disarm combatants belonging to the armed groups and forces that will not be integrated into the DRC armed forces or in the police, as foreseen in the DRC peace accords; Demobilize the military elements and armed groups not eligible for integration into the DRC armed forces; Reintegrate demobilized elements into social and economic life within the framework of community productive systems.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4ef525ed-f95c-4a2b-afcf-b286a1f1e5de", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 13, + "Paragraph": "Guiding principles The guiding principles specify those factors, considerations and assumptions that are con sidered important for a DDR programme\u2019s overall viability, effectiveness and sustainability. These guiding principles must be taken into account when developing the strategic approach and activities. Universal (general) principles (see IDDRS 2.10 on the UN Approach to DDR) can be included, but principles that are specific to the operating context and associated requirements should receive priority. Principles can apply to the entire DDR programme, and need not be limited to operational or thematic issues alone; thus they can include political principles (how DDR relates to political processes), institutional principles (how DDR should be structured insti tutionally) and operational principles (overall strategy, implementation approach, etc.).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "80643adf-787f-4894-baaa-536d40b7d247", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 15, + "Paragraph": "Preconditions and foundations for DDR This section defines the issues that must be dealt with or included in the design of the DDR programme in order to ensure its effectiveness and viability. These include preconditions (i.e., those factors that must be dealt with or be in place before DDR implementation starts), as well as foundations (i.e., those aspects or factors that must provide the basis for planning and implementing DDR). In general, preconditions and foundations can be divided into those that are vital for the overall viability of DDR and those that can influence the overall efficiency, effectiveness and relevance of the process (but which are not vital in determining whether DDR is possible or not). Example: Preconditions and foundations for DDR in Liberia A governmentdriven process of postconflict reconciliation is developed and imple mented in order to shape and define the framework for postconflict rehabilitation and reintegration measures; A National Transitional Government is established to run the affairs of the country up until 2006, when a democratically elected government will take office; Comprehensive measures to stem and control the influx and possible recycling of weapons by all armed forces and groups and their regional network of contacts are put in place; The process of disbandment of armed groups and restructuring of the Liberian security forces is organized and begun; A comprehensive national recovery programme and a programme for community reconstruction, rehabilitation and reintegration are simultaneously developed and 2.10 implemented by the government, the United Nations Development Programme (UNDP) and other UN agencies as a strategy of prepositioning and providing assistance to all waraffected communities, refugees and internally displaced persons (IDPs). This programme will provide the essential drive and broader framework for the postwar recovery effort; Other complementary political provisions in the peace agreement are initiated and implemented in support of the overall peace process; A complementary community arms collection programme, supported with legislative process outlawing the possession of arms in Liberia, would be started and enforced following the completion of formal disarmament process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "487bbc4e-1519-4a2f-b102-75d34c11b537", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 16, + "Paragraph": "Overall strategic approach to DDR While the objectives, principles and preconditions/foundations establish the overall design and structure of the DDR programme, a description of the overall strategic approach is essential in order to explain how DDR will be implemented. This section is essential in order to: explain how the multiple components of DDR will be designed to reflect realities and needs, thus ensuring efficiency, effectiveness and sustainability of the overall approach; explain how the targets for assisting DDR participants and beneficiaries (number of excombatants assisted, etc.) will be met; explain how the various components and activities of DDR will be divided into phases and sequenced (planned over time) within the programme timeframe; identify issues that are critical to the implementation of the overall programme and provide information on how they will be dealt with. 2.10 4.20", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "acd86e54-d56d-4a56-8757-6ad3d682b9ee", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 16, + "Paragraph": "Defining the approach to DDR The core components of DDR (demobilization, disarmament and reintegration) can vary significantly in terms of how they are designed, the activities they involve and how they are implemented. In other words, although the end objective may be similar, DDR varies from country to country. Each DDR process must be adapted to the specific realities and requirements of the country or setting in which it is to be carried out. Important issues that will guide this are, for example, the nature and organization of armed forces and groups, the socioeconomic context and national capacities. These need to be defined within the overall strategic approach explaining how DDR is to be put into practice, and how its components will be sequenced and implemented (also see IDDRS 2.10 on the UN Approach to DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "34bf8f7d-36d0-4c66-89f7-126780a56e31", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 16, + "Paragraph": "Putting DDR into operation The specific context in which a DDR programme is to be implemented, the programme requirements and the best way to reach the defined objectives will all affect the way in which a DDR operation is conceptualized. When developing a DDR concept, there is a need to: describe the overall strategic approach; justify why this approach was chosen; describe the activities that the programme will carry out; and lay out the broad operational methods or guidelines for implementing them. In general, there are three strategic approaches that can be taken (also see IDDRS 4.20 on Demobilization): DDR of conventional armed forces, involving the structured and centralized disarma ment and demobilization of formed units in assembly or cantonment areas. This is often linked to their restructuring as part of an SSR process; DDR of armed groups, involving a decentralized demobilization process in which indi viduals are identified, registered and processed; incentives are provided for voluntary disarmament; and reintegration assistance schemes are integrated with broader com munitybased recovery and reconstruction projects; A \u2018mixed\u2019 DDR approach, combining both of the above models, used when participant groups include both armed forces and armed groups; After a comprehensive assessment of the operational guidelines according to which DDR will be implemented, a model should be created as a basis for planning (see Annexes C and D. Annex E illustrates an approach taken to DDR in the DRC). In addition to defining how to operationalize the core components of DDR, the overall strategic approach should also describe any other components necessary for an effective and viable DDR process. For the most part, these will be activities that will take throughout the DDR programme and ensure the effectiveness of core DDR components. Some examples are: awarenessraising and sensitization (in order to increase local understanding of, and participation in, DDR processes); capacity development for national institutions and communities (in contexts where capacities are weak or nonexistent); weapons control and management (in contexts involving widespread availability of weapons in society); repatriation and resettlement (in contexts of massive internal and crossborder dis placement); local peacebuilding and reconciliation (in contexts of deep social/ethnic conflict).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "251f705c-a2ed-4e14-b23c-dd6e2356a32b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 17, + "Paragraph": "Sequencing and phasing of DDR Once the main components of a DDR programme have been identified, an overall strategy for implementation needs to be drawn up. The overall strategy should usually be developed on the basis of operational objectives and targets broken down by time period or programme phase. This enables practitioners to see in broad terms how DDR will be implemented, plan the allocation of resources and other requirements, and coordinate among themselves. 2.10 2.20", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ee011113-9bac-45c3-8c33-c20867226bae", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "Strategic elements of a DDR programme As programme scale and scope, participants and beneficiaries, eligibility criteria, incentive schemes, and monitoring and evaluation all affect programme design, they should be con sidered when developing a DDR strategy.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "db1e83a6-61cf-4485-af9c-673aa537f4bd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "Scale and scope The scale of a DDR programme is determined by the number of beneficiaries and the geo graphical area the programme covers (most often determined by the size of the country or region where the programme is taking place). These figures determine the complexity, size and resource requirements for the programme, and must be estimated at the programme design stage. The extent to which a DDR programme directly includes activities that formally belong to other sectors determines its scope or extent (i.e., exactly how much it is going to try and achieve). In the past, DDR programmes focused strictly on the core components of disarm ament, demobilization and reintegration. Today, most DDR programmes include or take account of activities relating to SSR (such as weapons control and regulation), peacebuilding and reconciliation, and community recovery and reconstruction (also see IDDRS 2.10 on the UN Approach to DDR and IDDRS 2.20 on Postconflict Stabilization, Peacebuilding and Recovery Frameworks).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "8b37c499-e2b8-469e-95c9-798d79698e25", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "DDR participants The identification of DDR participants affects the size and scope of a DDR programme. DDR participants are usually prioritized according to their political status or by the actual or potential threat to security and stability that they represent. They can include regular armed forces, irregular armed groups, militias and paramilitary groups, selfdefence groups, members of private security companies, armed street gangs, vigilance brigades and so forth. Among the beneficiaries are communities, who stand to benefit the most from improved security; local and state governments; and State structures, which gain from an improved capacity to regulate law and order. Clearly defining DDR beneficiaries determines both the operational role and the expected impacts of programme implementation.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7e3f2e54-34f7-41d5-bf37-86a84b546376", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "Operational role Another important factor that determines the scope of a DDR programme is the extent of national capacity and the involvement of national and nonUN bodies in the implementa tion of DDR activities. In a country with a strong national capacity to implement DDR, the UN\u2019s operational role (i.e. the extent to which it is involved in directly implementing DDR activities) should be focused more on ensuring adequate coordination than on direct imple mentation activities. In a country with weak national implementing capacity, the UN\u2019s role in implementation should be broader and more operational.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0113a11c-a65a-4b2e-98d9-d53203b92c75", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "Eligibility criteria Eligibility criteria provide a mechanism for determining who should enter a DDR pro gramme and receive reintegration assistance. This often involves proving combatant status or membership of an armed force or group. It is easier to establish the eligibility of par ticipants to a DDR programme when this involves organized, legal armed forces with members who have an employment contract. When armed groups are involved, however, there will be difficulties in proving combatant status, which increases the risk of admitting noncombatants and increasing the number of people who take part in a DDR programme. In such cases, it is important to have strict and welldefined eligibility criteria, which can help to eliminate the risk of noncombatants gaining access to the programme (also see IDDRS 4.20 on Demobilization).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "10ca1ef4-5aa0-4de2-863d-d94fc7867332", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 19, + "Paragraph": "Incentive schemes When targeting armed groups in a DDR programme, their oftenweak command and con trol structures should be taken into account, and it should not be assumed that combatants will obey their commanders\u2019 orders to enter DDR programmes. Moreover, there may also be risks or stigma attached to obeying such orders (i.e., fear of reprisals), which discour ages people from taking part in the programme. In such cases, incentive schemes, e.g., the offering of individual or collective benefits, may be used to overcome the combatants\u2019 concerns and encourage participation. It is important also to note that awarenessraising and public information on the DDR pro gramme can also help towards overcoming 4.20 combatants\u2019 concerns about entering a DDR programme. Incentives may be directly linked to the disarmament, demobilization or reintegration components of DDR, although care should be taken to avoid the perception of \u2018cash for weapons\u2019 or weapons buyback programmes when these are linked to the disarmament component. If used, incentives should be taken into consideration in the design of the overall programme strategy.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5bb8737c-fb1c-4f95-a23c-4e04d2ec509b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 13, + "Paragraph": "Monitoring and evaluation The development of baseline data is vital to measuring the overall effectiveness and impact of a DDR programme. Baseline data and indicators are only useful, however, if their collec tion, distribution, analysis and use are systematically managed. DDR programmes should have a good monitoring and information system that is integrated with the entire DDR programme, allowing for information collected in one component to be available in another, and for easy crossreferencing of information. The early establishment of an information management strategy as part of the overall programme design will ensure that an appro priate monitoring and evaluation system can be developed once the programme is finalized (also see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1cf5eb90-9a82-4b70-90b7-2b36714a525b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 19, + "Paragraph": "DDR strategies Once the strategic approach for the DDR programme has been designed, detailed imple mentation strategies should be developed for each programme component. These may be annexed to the original programme document or developed as separate documents. Each strategy should include the following: 3.50 the objective of the component; the strategic approach and methods adopted for its implementation; an explanation of how key issues and considerations will be dealt with; an overview of the implementation process and key activities necessary to achieve the objective. Issues that should be considered include: 4.10 4.20 4.30 4.60 3.30", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "325c3ce1-eecc-4803-afeb-e0e6854f6985", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 21, + "Paragraph": "6.7. Ensuring cross-programme links with broader transition and recovery frameworks In most cases, the development of DDR programmes happens at the same time as the devel opment of programmes in other sectors such as rule of law, SSR, reintegration and recovery, and peacebuilding. The DDR programmes should be linked, as far as possible, to these other processes so that each process supports and strengthens the others and helps integrate DDR into the broader framework for international assistance. DDR should be viewed as a com ponent of a larger strategy to achieve postconflict objectives and goals. Other processes to which DDR programme could be linked include JAM/PCNA activities, and the development of a common country assessment/UN development assessment framework and poverty reduction strategy paper (also see IDDRS 2.20 on Postconflict Stabilization, Peacebuilding and Recovery Frameworks).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e4d61251-ec54-4edb-b4ea-60f6fdbea235", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 21, + "Paragraph": "Developing the results and budgeting framework A key part of programme design is the development of a logical framework that clearly defines the hierarchy of outputs, activities and inputs necessary to achieve the objectives and outcomes that are being aimed at. In line with the shift towards resultsbased pro gramming, such logical frameworks should focus on determining how to achieve the planned outcomes within the time that has been made available. This approach ensures coordination and programme implementation, and provides a framework for monitoring and evaluating performance and impact. When DDR is conducted in an integrated peacekeeping context, two complementary resultsbased frameworks should be used: a general results framework containing the main outputs, inputs and activities of the overall DDR programme; and a framework specifically designed for DDR activities that will be funded from mission assessed funds as part of the overall mission planning process. Naturally, the two are complementary and should con tain common elements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a8237db3-c096-4399-9d99-78941de84ec3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 21, + "Paragraph": "7.1. General results framework The general results framework for a DDR programme should consist of the following elements (but not necessarily all of them) (see also Annex F for a general results framework for DDR that was used in Liberia): 2.20 Specific objectives and component outcomes: For each component of a DDR programme (i.e., disarmament, demobilization, reinsertion, reintegration, etc.), the main or longer term strategic objectives should be clearly defined, together with the outcomes the UN is supporting. These provide a strategic framework for organizing and anchoring relevant activities and outputs; Baseline data: For each specific objective, the initial starting point should be briefly described. In the absence of hard quantitative baseline data, give a qualitative descrip tion of the current situation. Defining the baseline is a critical part of monitoring and evaluating the performance and impact of programmes; Indicative activities: For each objective, a list of indicative activities should be provided in order to give a sense of the range and kind of activities that need to be implemented so as to achieve the expected outputs and objectives. For the general results frame work, these do not need to be complete or highly detailed, but they must be sufficient to provide a sense of the underlying strategy, scope and range of actions that will be implemented; Intervals: Activities and priority outputs should be have precise timelines (preferably specific dates). For each of these dates, indicate the expected level of result that should be achieved. This should allow an overview of how each relevant component of the programme is expected to progress over time and what has to be achieved by what date; Targets and monitoring indicators: For each activity there should be an observable target, objectively verifiable and useful as a monitoring indicator. These indicators will vary depending on the activity, and they do not always have to be quantitative. For example, \u2018reduction in perceptions of violence\u2019 is as useful as \u201815 percent of excombatants success fully reintegrated\u2019; Inputs: For each activity or output there should be an indication of inputs and their costs. General cost categories should be used to identify the essential requirements, which can include staff, infrastructure, equipment, operating expenses, service contracts, grants, consultancies, etc.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "1ad1360b-7fdb-4711-ab8d-d85ff781f0b5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 22, + "Paragraph": "7.2. Peacekeeping results-based budgeting framework The resultsbased budgeting (RBB) framework is the main budgetary planning tool used by the UN Secretariat and peacekeeping missions, and is part of the SecretaryGeneral\u2019s programme of reform and vision of a more resultsoriented organization. An important feature of RBB is the definition of expected results at the beginning of the planning and budget cycle, before the programme is implemented. Thus RBB aims to shift focus from output accounting (i.e., activities) to resultsbased accountability (i.e., indi cators of achievements). RBB is therefore not simply an administrative process, but a strategic planning tool, improving the clarity of programmes, and bringing about a common under standing and better communication between Member States and programme managers to improve results. Resultsbased management is intended to be a dynamic process, providing feedback throughout the full programme cycle: planning, programming, budgeting, and monitoring and evaluation. Since it was introduced, RBB has continued to evolve in order to better fulfil its role as a strategic planning tool for the UN. RBB has four main components: the DDR objective statement, serving as the basis for developing programme activities and identifying benchmarks for success; indicators of achievement, which measure performance, justify the resource requirements and are linked to outputs; outputs, listing the activities that will be conducted in order to achieve the objective; external factors, identifying factors outside of the programme manger\u2019s control that may have an impact on programme performance.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f4fbf975-bfe2-4be0-8e7b-fdff62f710e8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "Developing an RBB framework This section is intended to assist DDR programme managers in the field to develop RBB frameworks for submission to the Department of Peacekeeping Operations, which will serve as the basis for cost estimates. Mission budget officers who are specialized in the develop ment of RBB frameworks should be able to assist with the development of this tool.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "68cbbb8a-3698-4238-9709-25bda5259d57", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "The DDR objective statement The DDR objective statement draws its legal foundation from Security Council mission mandates. It is important to note that the DDR objective will not be fully achieved in the lifetime of the peacekeeping mission, although certain activities such as the (limited) phys ical disarmament of combatants may be completed. Other important aspects of DDR such as reintegration, the establishment of the legal framework, and the technical and logistic capacity to deal with small arms and light weapons often extend beyond the duration of a peacekeeping mission. In this regard, the objective statement must reflect the contribution of the peacekeeping mission to the \u2018progress towards\u2019 the DDR objective. An example of a DDR objective statement is as follows: \u201cProgress towards the disarmament, demobilization and reintegration of members of armed forces and groups, including meeting the specific needs of women and children associated with such groups, as well as weapons control and destruction.\u201d", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "c252835f-146f-469a-ba35-e02703485578", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "Indicators of achievement The targeted achievement should include no more than five clear and measurable indicators, and baseline information from which increases/decreases in the baseline variables are measured.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "80f10848-847a-49bf-89d1-66ab28206db5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "Outputs When developing the DDR outputs for an RBB framework, programmer managers should take the following into account: (1) specific references to the implementation timeframe should be included; (2) DDR technical assistance or advice needs should be further defined to specify what that means in practice and, if possible, quantified (e.g., workshops, training programmes, legislative models, draft work plans); (3) participants in DDR programmes or recipients of the mission\u2019s efforts should be included in the output description; and (4) when describing these outputs, the verb should be placed before the output definition (e.g., \u2018Destroyed 9,000 weapons\u2019; \u2018Chaired 10 community sensitization meetings\u2019).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "35d62408-bbda-4032-80ed-06fdf40c3b80", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "External factors When developing the external factors of the DDR RBB framework, programme managers are requested to identify those factors that are outside the control of the DDR unit. These should not repeat the factors that make up the indicators of achievement. For an example of an RBB framework for DDR in Sudan, see Annex G; also see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes.\t3.50 3.10 3.50", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9985c32f-1ee2-44c7-a519-2fa90051103a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 24, + "Paragraph": "Stage III: Developing an implementation plan Once a programme has been prepared, planning instruments should be developed that will aid practitioners (UN, nonUN and the national government) to implement the planned activities and strategies. An actions or operations plan usually consists of four main elements: Implementation methods: This consists of a narrative description of how each DDR com ponent will be made operational within the framework of the programme, focusing on the precise sequencing of activities, operational requirements, logistic requirements, links with other mission components, key risks and factors that will reduce these risks. This section can be used by practitioners to guide implementation and operations and provide an overall framework for the other components of the operational and action plan; Timing: There should be an overview of the timeframe and schedule for implementation of DDR activities for each component of the programme, which provides an overall picture of the phasing and sequencing of programme implementation. This will provide practitioners with a quick overview of the activities, which is important for defining and planning resource requirements and allocations. An example of a timeframe is included in Annex H; Detailed work plan: A detailed work plan should also be included in the operational plan. It should break all programme activities down into their various tasks, and indi cate who is responsible for different operational roles. The main categories of such a work plan should include: the activities to be implemented; a detailed description of individual tasks; the required inputs (human, material, financial); the actor responsible for funding each task; the actor responsible for logistic support; the actor responsible for staffing; the actor responsible for coordination/supervision; the actor responsible for implementation; the expected timeframe for implementation of task. The work plan should be considered a dynamic document that should be updated periodically and used to guide DDR planners and practitioners on programme imple mentation on a daytoday basis. A generic work plan is included in Annex I; Management arrangements: This section should detail the institutional arrangements established to provide strategic guidance, coordination and implementation of the programme (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b69f558b-a441-4143-ac94-e85b0d5814ec", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 25, + "Paragraph": "Terms and definitions Detailed field assessment: A detailed field assessment is essential to identify the nature of the problem a DDR programme is to deal with, as well as to provide key indicators for the development of a detailed DDR strategy and its associated components. Detailed field assess ments shall be undertaken to ensure that DDR strategies, programmes and implementation plans reflect realities, are well targeted and sustainable, and to assist with their monitoring and evaluation. Implementation plan: Also known as an operations or action plan, an implementation plan describes the detailed steps necessary to implement programme activities, together with a division of labour and overall timeframe. Programme: A generic (general) term for a set of activities designed to achieve a specific objective. In order to ensure that a programme\u2019s results, outputs and overall outcome are reached, activities are often framed by a strategy, key principles and identified targets. Together, these indicate how the activities will be structured and implemented. Programmes also include a description of all aspects necessary to implement the planned activities, includ ing inputs and resources (staff, equipment, funding, etc.), management arrangements, legal frameworks, partnerships and other risk analysis. Project: Within each programme there may be several projects, each of which is a separately identified undertaking. A project is an intervention that consists of a set of planned, inter related activities aimed at achieving defined objectives over a fixed time. A project\u2019s activities and objectives are normally given in a project document. This legal agreement binds the signatories to carry out the defined activities and to provide specific resources over a fixed period of time in order to reach agreed objectives.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-3.30-National-Institutions-for-DDR.json b/src/Static/data/json/IDDRS-3.30-National-Institutions-for-DDR.json new file mode 100644 index 0000000..36c3831 --- /dev/null +++ b/src/Static/data/json/IDDRS-3.30-National-Institutions-for-DDR.json @@ -0,0 +1,933 @@ +[ + { + "ID": "8b1d1a07-44dd-4ebe-967e-02d899b0b959", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": null, + "Paragraph": "Summary Disarmament, demobilization and reintegration (DDR) programmes have increasingly relied on national institutions to ensure their success and sustainability. This module discusses three main issues related to national institutions: mandates and legal frameworks; structures and functions; and coordination with international DDR structures and processes. The mandates and legal frameworks of national institutions will vary according to the nature of the DDR programme, the approach that is adopted, the division of responsi- bilities with international partners and the administrative structures found in the country. It is important to ensure that national and international mandates for DDR are clear and coherent, and that a clear division of labour is established. Mandates and basic principles, institutional mechanisms, time-frames and eligibility criteria should be defined in the peace accord, and national authorities should establish the appropriate framework for DDR through legislation, decrees or executive orders. The structures of national institutions will also vary depending on the political and institutional context in which they are created. They should nevertheless reflect the security, social and economic dimensions of the DDR process in question by including broad rep- resentation across a number of government ministries, civil society organizations and the private sector. In addition, national institutions should adequately function at three different levels: the policy/strategic level through the establishment of a national commission on DDR; the planning and technical levels through the creation of a national technical planning and coordination body; and the implementation/operational level through a joint implementation unit and field/ regional offices. There will be generally a range of national and international partners engaged in imple- mentation of different components of the national DDR programme. Coordination with international DDR structures and processes should be also ensured at the policy, planning and operational levels. The success and sustainability of a DDR pro- gramme depend on the ability of international expertise to complement and support a nationally led process. A UN strategy in support of DDR should therefore take into account not only the context in which DDR takes place, but also the existing capacity of national and local actors to develop, manage and implement DDR. Areas of support for national institutions are: institutional capacity development; legal frameworks; policy, planning and implementation; financial management; material and logis- tic assistance; training for national staff; and community development and empowerment.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "87f8b4bd-ec2f-4e6b-a47e-7ca2a53e940a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides United Nations (UN) DDR policy makers and practitioners with guidance on the structures, roles and responsibilities of national counterparts for DDR, their relationships with the UN and the legal frameworks within which they operate. It also provides guidance on how the UN should define its role, the scope of support it should offer to national structures and institutions, and capacity development.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "af1bae26-0e51-4850-966b-782b30adee68", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) 1.20\tis given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d The term \u2018a national framework for DDR\u2019 describes the political, legal, programmatic/ policy and institutional framework, resources and capacities established to structure and guide national engagement with a DDR process. The implementation of DDR requires mul- tiple stakeholders; therefore, participants in the establishment and implementation of a national DDR framework include not only the government, but also all parties to the peace agreement, civil society, and all other national and local stakeholders.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1f217c84-9ca7-4519-93a3-22488bf93196", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 4, + "Paragraph": "Introduction UN-supported DDR aims to be people-centred, flexible, accountable and transparent, na- tionally owned, integrated and well planned. Within the UN, integrated DDR is delivered with the cooperation of agencies, programmes, funds and peacekeeping missions. In a country in which it is implemented, there is a focus on capacity-building at both government and local levels to achieve sustainable national ownership of DDR, among other peace-building measures. Certain conditions should be in place for DDR to proceed: these include the signing of a negotiated peace agreement, which provides a legal frame- work for DDR; trust in the peace process; transparency; the willingness of the parties to the conflict to engage in DDR; and a minimum guarantee of security. This module focuses on how to create and sustain these conditions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5ed79f4e-8afc-4265-a6af-af178b59649c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 4, + "Paragraph": "Guiding principles The principles guiding the development of national DDR frameworks, as well as the princi- ples of UN engagement with, and support to, national institutions and stakeholders, are out- 2.10\tlined in IDDRS 2.10 on the UN Approach to DDR. Here, they are discussed in more detail.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "28589da9-dacb-406e-8030-6a6b1b91cb2a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 5, + "Paragraph": "National ownership National ownership is essential for the success and sustainability of DDR programmes, and supporting national institutions is a core principle of the UN. However, in the past, too many DDR programmes were overly controlled by external actors who did not make enough effort to establish true partnership with national institutions and local authorities, producing programmes that were insufficiently adapted to the dynamics of local conflicts, unsuppor- tive of the capacities of local institutions and unresponsive to the needs of local populations. While the UN system may be called upon to provide strategic, technical, operational and financial support to DDR, national and local actors \u2014 who are ultimately responsible for the peace, security and development of their own communities and nations \u2014 should lead the process. When the UN supports DDR, it also aims to increase the capacities of govern- ments, implementing partners, communities and participants, and to assist them as they take ownership of the process: the promotion of national ownership is therefore a principle that guides both policy and the operational design of DDR programmes carried out with UN support.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "20a011d2-d70b-47ca-a71e-464f17fa766b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 5, + "Paragraph": "Inclusivity Another core principle in the establishment and support of national institutions is the in- clusion of all stakeholders. National ownership is both broader and deeper than central government leadership: it requires the par- ticipation of a range of state and non-state actors at national, provincial and local levels. National DDR institutions should include all parties to the conflict, as well as representa- tives of civil society and the private sector. The international community should play a role in supporting the development of capacities in civil society and at local levels to enable them to participate in DDR pro- cesses (also see IDDRS 5.10 on Women, Gender and DDR, IDDRS 5.20 on Youth and DDR and IDDRS 5.30 on Children and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "30e4f8c3-7ea9-4c44-aa44-3ff2a469de52", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 5, + "Paragraph": "Accountability and transparency Accountability and transparency are important principles for all national institutions. DDR institutions should adopt and encourage/support these values in order to: build confidence among the parties to the DDR process; establish the legitimacy of the process with the general population and local commu- nities; ensure continued financial and technical support from international actors. Accountability mechanisms should be established for the monitoring, oversight and evaluation of processes through both internal and external review. Transparency should be also supported through a broad communications strategy that raises awareness of the prin- ciples and details of the programme (also see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). 5.20 5.10 5.30 3.50 4.60", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ba541697-92d6-482d-99e5-f7435060e829", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": null, + "Paragraph": "Mandates and legal frameworks for national engagement with DDR The mandates and legal frameworks established for national DDR institutions will vary according to the nature of the DDR process to be carried out and the approach adopted, the division of responsibilities with international partners, and the administrative structures of the state itself. All stakeholders should agree to the establishment of the mandate and 2.30\tlegal framework (also see IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e4f160a6-6635-479d-a110-91261f08538a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": null, + "Paragraph": "Establishing clear and coherent national and international mandates The national and international mandates for DDR should be clear and coherent. A clear division of responsibilities should be established in the different levels of programme co- ordination and for different programme components. This can be done through: supporting international experts to provide technical advice on DDR to parties to the peace negotiations; incorporating national authorities into inter-agency assessment missions to ensure that national policies and strategies are reflected in the Secretary-General\u2019s report and Secu- rity Council mandates for UN peace-support operations; discussing national and international roles, responsibilities and functions within the framework of an agreed common DDR plan or programme; providing technical advice to national authorities on the design and development of legal frameworks, institutional mechanisms and national programmes for DDR; establishing mechanisms for the joint implementation and coordination of DDR pro- grammes and activities at the policy, planning and operational levels.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9df0bd4e-c31f-4328-89a5-655bb2c6546d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 6, + "Paragraph": "Political frameworks and peace accord provisions When parties to a conflict have concluded a peace accord or political agreement, provisions should have been included in it on the establishment of a legal framework for the DDR process. Mandates and basic principles, institutional mechanisms, time-frames and eligi- bility criteria should all be defined. As the programme starts, institutional mechanisms and programme details should be elaborated further through the adoption of national legisla- tion or executive decree(s).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bce07866-d3e9-4aaa-a251-f2a870a26331", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 6, + "Paragraph": "National legislative framework In addition to the provisions of the peace accord, national authorities should develop legal instruments (legislation, decree[s] or executive order[s]) that establish the appropriate legal framework for DDR. These should include, but are not limited to, the following: a letter of demobilization policy, which establishes the intent of national authorities to carry out a process of demobilization and reduction of armed forces and groups, indi- cating the total numbers to be demobilized, how this process will be carried out and under whose authority, and links to other national processes, particularly the reform and restructuring of the security sector; legislation, decree(s) or executive order(s) establishing the national institutional frame- work for planning, implementing, monitoring and evaluating the DDR process. This legislation should include articles or separate instruments relating to: a national political body representing different parties to the process, ministries responsible for the programme and civil society. This legal instrument should establish the body\u2019s mandate for political coordination, policy direction and general oversight of the DDR programme. It should also establish the specific composi- tion of the body, frequency of meetings, responsible authority (usually the prime minister or president) and reporting lines to technical coordination and implemen- tation mechanisms; a technical planning and coordination body responsible for the technical design and implementation of the DDR programme. This legal instrument should specify the body\u2019s different technical units/directions and overall management structure, as well as functional links to implementation mechanisms; operational and implementation mechanisms at national, provincial and local levels. Legal provisions should specify the institutions, international and local partners responsible for delivering different components of the DDR programme. It should also define financial management and reporting structures within the national programme; an institution or unit responsible for the financial management and oversight of the DDR programme, funds received from national accounts, bilateral and multi- lateral donors, and contracts and procurement. This unit may be housed within a national institution or entrusted to an international partner. Often a joint national\u2013 international management and oversight system is established, particularly where donor funds are being received. The national DDR programme itself should be formally approved or adopted through legislation, executive order or decree. Programme principles and policies regarding eligi- bility criteria, definition of target groups, benefits structures and time-frame, as well as pro- gramme integration within other processes such as security sector reform (SSR), transitional justice and election timetables, should be identified through this process.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e2e71d08-0575-44d3-bfd1-a9614064c13e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 7, + "Paragraph": "Integrated peace-building and recovery framework DDR is a component of larger peace-building and recovery strategies. For this reason, na- tional DDR efforts should be linked with other national initiatives and processes, including SSR, transitional justice mechanisms, the electoral process, economic reconstruction and recovery (also see IDDRS 2.20 on Post-conflict Stabilization, Peace-building and Recovery Frameworks and IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2dfe3309-3baa-4a07-b0e5-d7f1004c6573", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 7, + "Paragraph": "Transitional justice and amnesty provisions Through the establishment of amnesties and transitional justice programmes, as part of the broader peace-building process, parties attempt to deal with crimes and violations in the conflict period, while promoting reconciliation and drawing a line between the period of conflict and a more peaceful future. Transitional justice processes vary widely from place to place, depending on the historical circumstances and root causes of the conflict. They try to balance justice and truth with national reconciliation, and may include amnesty provisions 2.20 2.30 for those involved in political and armed struggles. Generally, truth commissions are tem- porary fact-finding bodies that investigate human rights abuses within a certain period, and they present findings and recommendations to the government. They assist post-conflict communities to establish facts about what went on during the conflict period. Some truth commissions include a reconciliation component to support dialogue between factions within the community. In addition to national efforts, international criminal tribunals may be established to prosecute and hold accountable people who committed serious crimes. While national justice systems may also wish to prosecute wrongdoers, they may not be capable of doing so, owing to lack of capacity or will. During the negotiation of peace accords and political agreements, parties may make their involvement in DDR programmes conditional on the provision of amnesties for carry- ing weapons or less serious crimes. These amnesties will generally absolve (pardon) parti- cipants who conducted a political and armed struggle, and free them from prosecution. While amnesties may be agreed for violations of national law, the UN system is obliged to uphold the principles of international law, and shall therefore not support DDR processes that do not properly deal with serious violations such as genocide, war crimes or crimes against humanity.1 However, the UN should support the establishment of transitional justice processes to properly deal with such violations. Proper links should be created with DDR and the broader SSR process.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b6f49563-7960-435f-aed9-a5684d17791e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 8, + "Paragraph": "Citizenship and nationality laws In conflicts where ethnicity, religion or other identities have been causes of the conflict, there are often questions of citizenship or nationality that need to be resolved as part of the peace process. The resolution of these issues are likely to affect parties\u2019 willingness to engage in other parts of the larger peace-building framework, including elections, DDR and the re- 5.40\tstructuring of security forces (also see IDDRS 5.40 on Cross-border Population Movements).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "be7f6e2b-5903-4588-ae8f-a2e84b59c443", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 8, + "Paragraph": "Weapons control and management A national legal regime for weapons control and management establishes conditions for the lawful acquisition, trade, possession and use of arms by state authorities and citizens. Provisional laws or decrees governing weapons control and management are often intro- 4.10\tduced during periods of post-conflict transition (also see IDDRS 4.10 on Disarmament and 4.11\tIDDRS 4.11 on SALW Control, Security and Development).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "13142a7b-b54f-45e9-8aef-d35e3d6859b5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 8, + "Paragraph": "Rule of law and justice reform According to the Secretary-General\u2019s report on The Rule of Law and Transitional Justice in Con flict and PostConflict Societies, \u2018rule of law\u2019 refers to a \u201cprinciple of governance in which all persons, institutions and entities, public and private, including the State itself, are account- able to laws that are publicly promulgated, equally enforced and independently adjudicated, and which are consistent with international human rights norms and standards. It requires, as well, measures to ensure adherence to the principles of supremacy of law, equality before the law, accountability to the law, fairness in the application of the law, separation of powers, participation in decision-making, legal certainty, avoidance of arbitrariness and procedural and legal transparency\u201d.2 However, the rule of law often breaks down during long periods of conflict; or a lack of justice, or manipulation of the justice system by authorities or political groups may be one of the causes of conflict. Some parties may be reluctant to participate in DDR when the rule of law has broken down and where their personal safety is not properly protected. Re-establishing the rule of law and carrying out justice reform are often essential aspects of a larger peace-building strategy. DDR should contribute to strengthening the rule of law by disarming armed forces and groups, who afterwards become subject to regular criminal justice systems.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fbb98e11-cb0a-4787-b06d-ec08c3698e7b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 9, + "Paragraph": "Restructuring of armed forces DDR is generally linked to the restructuring of armed forces and SSR as part of a broader peace-building framework. Agreement between the parties on the new mandate, structures, composition and powers of national security forces is often a condition for their entry into a formal DDR process. As a result, the planning and design of the DDR programme needs to be closely linked to the SSR process to ensure coherence on such issues as vetting of ex- combatants (to establish eligibility for integration into the reformed security forces) and establishing the legal status and entitlements of demobilized ex-combatants, including pensions and health care benefits.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1b7f5c2a-bc2d-4c82-be52-568408f802f8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 9, + "Paragraph": "Structures and functions of national institutions The architecture of national DDR institutions will vary depending on the political and institutional context in which they are created. The following generic (general) model repre- sents a basic outline of structures and functions for a national DDR institutional framework, and lays out the structure of relationships with UN integrated missions and international coordination mechanisms. While the basic functions of national DDR institutions will be similar in most cases, the organization of institutional structures and their relation to inter- national actors will vary widely from country to country.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "043d22e6-a7a3-44e1-bef8-ef1b65feaebb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 9, + "Paragraph": "Integrated approach Integration is not only a principle for UN support to DDR, but also for the establishment of national institutions. The form of national institutions should reflect the security, economic and social dimensions of the DDR process. To achieve this, national institutions should include broad representation across a number of government ministries. Although the composition of national institutions for DDR will vary according to the particular govern- ment structures of different countries, the following institutions are generally represented at the level of policy and planning of national DDR institutions: the executive (the presidency and/or prime minister\u2019s office); the ministries of defence and interior (national security); the ministries of planning and finance; the ministries of labour, employment and industry; the ministries of agriculture and natural resources; the ministries of social welfare, status of women and protection of children; human rights and national reconciliation agencies; electoral authorities. As well as representation of the various agencies and ministries of government, it is important to include representatives of civil society and the private sector in DDR policy and strategic coordination mechanisms.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d79a8053-6ae7-47dd-9a4f-822dbc39cec3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "National DDR commission A national DDR policy body representing key national and international stakeholders should be set up under a government or transitional authority established through peace accords, or under the authority of the president or prime minister. This body meets periodically to perform the following main functions: to provide political coordination and policy direction for the national DDR programme; to coordinate all government institutions and international agencies in support of the national DDR programme; to ensure coordination of national DDR programme with other components of the national peace-building and recovery process; to ensure oversight of the agency(ies) responsible for the design and implementation of the national DDR programme; to review progress reports and financial statements; to approve annual/quarterly work plans. The precise composition of this policy body will vary; however, the following are gen- erally represented: government ministries and agencies responsible for components of DDR (including national women\u2019s councils or agencies, and agencies responsible for youth and children); representatives of parties to the peace accord/political agreement; representatives of the UN, regional organizations and donors; representatives of civil society and the private sector.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b06ac261-346a-422d-a629-bc248eec27b0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "International coordination and assistance Depending on whether a UN mission has been established, support is provided for the development of national policies and strategies through the offices of the UN Resident Co- ordinator, or upon appointment of the Special Representative of the Secretary-General (SRSG)/ Deputy SRSG (DSRSG). When there is a UN Security Council mandate, the SRSG will be responsible for the coordination of international support to the peace-building and transition process, including DDR. When the UN has a mandate to support national DDR institutions, the SRSG/DSRSG may be invited to chair or co-chair the national commission on DDR (NCDDR), particularly if there is a need for neutral arbitration.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dce614ea-23ba-4038-9210-0b2b784b76d5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "National DDR agency A national technical planning and coordination body, responsible for the design and im- plementation of the DDR programme, should be established. The national coordinator/ director of this body oversees the day-to-day management of the DDR programme and ensures regular reporting to the NCDDR. The main functions of the national DDR agency include: the design of the DDR programme, including conducting assessments, collecting base- line data, establishing indicators and targets, and defining eligibility criteria for the inclusion of individuals in DDR activities; 2.30 2.30 2.30 3.41 planning of DDR programme activities, including the establishment of information management systems, and monitoring and evaluations procedures; oversight of the joint implementation unit (JIU) for DDR programme implementation. Directed by a national coordinator/director, the staff of the national DDR agency should include programme managers and technical experts (including those seconded from national ministries) and international technical experts (these may include advisers from the UN system and/or the mission\u2019s DDR unit) (also see IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a2f9da4f-3389-4a68-a8cf-978c470c0af3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "International technical coordination committee An international technical coordination committee provides a forum for consultation, co- ordination and joint planning between national and international partners at the technical level of DDR programme development and implementation. This committee should meet regularly to review technical issues related to national DDR programme planning and implementation. Participation in the technical coordination committee will vary a great deal, depending on which international actors are present in a country. The committee should include tech- nical experts from the national DDR agency and from those multilateral and bilateral agen- cies and non-governmental organizations (NGOs) with operations or activities that have a direct or indirect impact on the national DDR programme (also see IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ef85a742-44d1-4866-ab37-e490999d4d25", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Project approval committee A project approval committee (PAC) can be established to ensure transparency in the use of donor resources for DDR by implementing partners, i.e., to review and approve applications by national and international NGOs or agencies for funding for projects. Its role does not include oversight of either the regular operating budget for national DDR institutions or programmes (monitored by the independent financial management unit), or the activities of the UN mission\u2019s DDR unit. The PAC will generally include representatives of donors, the national DDR agency and the UN mission/agencies (also see IDDRS 2.30 on Participants, Beneficiaries and Partners and IDDRS 3.41 on Finance and Budgeting.)", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3eef1db2-794c-4181-8b44-2fbc214bbd13", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 12, + "Paragraph": "Implementation/Operational level Operational and implementation mechanisms should be established at national, provincial and local levels. These mechanisms should operate under the supervision of the technical coordination and planning body.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e0397b14-62dc-427c-b84f-40cdc4a39356", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 12, + "Paragraph": "Joint implementation unit The JIU is the operational arm of a national DDR agency, responsible for the implementation of a national DDR programme under the direction of the national coordinator, and ultimately accountable to the NCDDR. The organization of a JIU will vary depending on the priorities and implementation methods of particular national DDR programmes. It should be organ- ized by a functional unit that is designed to integrate the sectors and cross-cutting compo- nents of a national DDR programme, which may include: disarmament and demobilization; reintegration; child protection, youth, gender, cross-border, food, health and HIV/AIDS advisers; public information and community sensitization; monitoring and evaluation. Other functional units may be established according to the design and needs of parti- cular DDR programmes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "abd1b4ba-261f-40e6-995d-c7e0a8efbd5b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 13, + "Paragraph": "Independent financial management unit Given the size and sensitivities of resource allocation to large DDR operations, an independ- ent financial management, contracts and procurement unit for the national DDR programme should be established. This unit may be housed within the national DDR institution or entrusted to an international partner. A joint national\u2013international management and over- sight system may be established, particularly when donors are contributing significant funds for DDR. This unit should be responsible for the following: establishing standards and procedures for financial management and accounting, con- tracts, and procurement of goods and services for the DDR programme; mobilizing and managing national and international funds received for DDR programme activities; reviewing and approving budgets for DDR programme activities; establishing a reporting system and preparing financial reports and audits as required (also see IDDRS 3.41 on Finance and Budgeting).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a72cc08b-2ec0-4059-a4c7-f266dc4c2c0b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Regional/Field offices Depending on the geographic concentration of DDR programme activities (whether these are to take place throughout the country or are limited to particular regions) and on the way in which the administrative structures in the country are organized, regional or provincial coordination should be facilitated through the establishment of DDR field offices. Field offices should report directly to the JIU, which provides technical support and project over- sight. Field offices should be responsible for: supporting disarmament and demobilization process and regional centres; developing regional reintegration strategies; coordinating DDR information and sensitization campaigns in areas of intervention; establishing information, counselling and referral systems; establishing information/communication networks and a database of local implemen- tation partners; maintaining the database, and monitoring reintegration projects and opportunities; establishing management and reporting systems for programme funds. Advisory mechanisms at regional or provincial level may also be established to ensure the broad participation of all stakeholders in the design and delivery of provincial strategies. At the local level, DDR committees or advisory councils should be established to ensure community participation in identifying reintegration opportunities, designing programmes and facilitating the reintegration of ex-combatants and dependants within the community. These councils or committees should include representatives of local and traditional authori- ties; NGOs and community-based associations, including women\u2019s and children\u2019s rights 3.41 groups; and representatives of ex-combatants, women associated with armed groups and forces, child former combatants, disabled people and dependants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a5b18c45-9976-462c-a110-3fbdc8ae5687", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Implementing agencies/partners There will generally be a range of national and international partners engaged in the im- plementation of different components of the national DDR programme. These will vary significantly depending on the presence and capabilities of government agencies, local authorities and community-based organizations; UN agencies; and national and interna- tional NGOs located near DDR operations. The activities of implementing partners should be coordinated by regional/field offices that report to the JIU of a national DDR agency 2.30\t(also see IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "24a12723-4e97-4916-9fc9-e2097e0e35fb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": null, + "Paragraph": "Coordination of national and international DDR structures and processes National and international DDR structures and processes should, as far as possible, be jointly developed and coordinated at the policy, planning and operational levels, as explained below. The planning of UN missions and national DDR institutions has not always been sufficiently integrated, reducing the efficiency and effectiveness of both. The success and sustainability of a DDR programme depend on the ability of international expertise and resources to complement and support na- tionally led processes. A key factor in close coordination is the early consultation of national authorities and parties to the DDR process during UN assessment missions and mission planning processes. International DDR expertise, political support and technical assistance should also be available from the earliest point in the peace process through the establishment of national institutions and programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "543425a5-dac6-4482-adf9-9a5115f30233", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "Policy/Strategic level Coordination of national and international efforts at the policy/strategic level will vary a great deal, depending on the dynamics of the conflict, the parties to the peace process and the role/mandate of the UN in support of peace-building and recovery, including DDR. However, coordination (and where possible, integration) of national and international efforts will be essential at the following points: ensuring national and local stakeholder participation in UN assessment and mission 3.10\tplanning exercises (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). National stakeholders should be consulted and, where possible, participate fully in the initial planning phases of international support for DDR; providing international support for the establishment of an NCDDR or political over- sight mechanisms; coordinating bilateral and multilateral actors to ensure a coherent message on DDR and to support national institutions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ac6b210d-97d7-4a2d-a0da-7daedfa548db", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "Planning and technical levels Coordination of national and international efforts at the planning and technical levels is important to ensure that the national DDR programme and UN support for DDR operations work together in an integrated and coherent way. It is important to ensure coordination at the following points: in national DDR programme development; in the development of DDR programmes of UN mission and agencies; in technical coordination with bilateral partners and NGOs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "748deb5d-2b5b-4305-89a4-34ea29813896", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 12, + "Paragraph": "Implementation/Operational level Coordination between the national DDR agency and UN mission/system at the operational level should be established through the following: the establishment of a JIU with mixed national/international staff; the provision of international technical assistance for implementation; the coordination of national and international implementing agencies/partners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "82039c4f-8f59-4f12-a1d0-d278f47d00a7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 15, + "Paragraph": "The role of international assistance The DDR of ex-combatants in countries emerging from conflict is complex and involves many different activities. Flexibility and a sound analysis of local needs and contexts are the most essential requirements for designing a UN strategy in support of DDR. It is im- portant to establish the context in which DDR is taking place and the existing capacities of national and local actors to develop, manage and implement DDR operations. The UN recognizes that a genuine, effective and broad national ownership of the DDR process is important for the successful implementation of the disarmament and demobili- zation process, and that this is essential for the sustainability of the reintegration of ex- combatants into post-conflict society. The UN should work to encourage genuine, effective and broad national ownership at all phases of the DDR programme, wherever possible.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c53de663-73aa-490c-baea-144be60e2869", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 15, + "Paragraph": "Considerations in defining the role of the UN The UN approach to the planning, management and monitoring of DDR programmes in a peacekeeping environment should be informed by the following factors: Strength and legitimacy of governments: Post-conflict governments and their attendant bureaucracies may vary widely in terms of their strength and viability; their legitimacy in the eyes of the population; their level of existing capacities for programme devel- opment and management; the territorial extent and scope of government authority; and the degree to which the State has a monopoly over the means of violence in its territory. Taken together, these will affect the degree to which a given government can take effective ownership of and responsibility for DDR; Technical capacities and knowledge: Even when post-conflict governments are legitimate and capable, they may lack the specific technical knowledge that is needed to link DDR to a national reconstruction plan and SSR; Participation of civil society: In many post-conflict situations, civil society may have been repressed or marginalized and lack access to political decision-making processes. The representation of civil society at all levels in the body politic is essential, and the UN should support the participation and engagement of civil society in DDR processes wherever possible. Possible roles may include involvement in the policy development process (and particularly its link with transitional justice and equity issues); assistance with the identification of people associated with armed groups and forces, especially women and children; and implementing (particularly focusing on the involvement of local communities) and monitoring the effectiveness of DDR programmes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "72cb1505-c977-4f68-b3b6-03f81d3835eb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 16, + "Paragraph": "Letter of agreement The national stakeholders and the UN should establish a letter of agreement where the government and relevant national stakeholders outline their respective roles and responsi- bilities; establish commitments to DDR according to international standards; establish links to SSR (including plans for future military size and budget, military unification, and restruc- turing, where relevant); and outline humanitarian activities and reconstruction/recovery efforts.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "93e16ce1-5bec-4b57-a7e8-76178f540b28", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 16, + "Paragraph": "Areas of UN support UN support to national efforts take place in the following areas (the actual degree of UN engagement should be determined on the basis of the considerations outlined above): Political/Strategic support: In order for the international community to provide political support to the DDR process, it is essential to understand the dynamics of both the conflict and the post-conflict period. By carrying out a stakeholder analysis (as part of a larger conflict assessment process), it will be possible to better understand the dynam- ics among national actors, and to identify DDR supporters and potential spoilers; Institutional capacity development: It is important that capacity development strategies are established jointly with national authorities at the start of international involvement in DDR to ensure that the parties themselves take ownership of and responsibility for the success of the process. The UN system should play an important role in supporting the development of national and local capacities for DDR through providing technical assistance, establishing partnership arrangements with national institutions, and pro- viding training and capacity-building to local implementing partners; Support for the establishment of legal frameworks: A key area in which international exper- tise can support the development of national capacities is in the drawing up of legal frameworks for DDR and related processes of SSR and weapons management. The UN system should draw on experiences from a range of political and legal systems, and assist national authorities in drafting appropriate legislation and legal instruments; Technical assistance for policy and planning: Through the provision of technical assistance, the UN system should provide direct support to the development of national DDR policy and programmes. It is important to ensure, however, that this assistance is provided through partnership or mentoring arrangements that allow for knowledge and skills transfers to national staff, and to avoid situations where international experts take direct responsibility for programme functions within national institutions. When several international institutions are providing technical assistance to national authori- ties, it is important to ensure that this assistance is coordinated and coherent; Direct support for implementation and financial management: The UN system may also be called upon, either by Security Council mandate or at the request of national authorities, to provide direct support for the implementation of certain components of a DDR pro- gramme, including the financial management of resources for DDR. A memorandum of understanding should be established between the UN and national authorities that defines the precise area of responsibility for programme delivery, mechanisms for co- ordination with local partners and clear reporting responsibilities; Material/Logistic support: In the post-conflict period, many national institutions lack both material and human resources. The UN system should provide material and logistic support to national DDR institutions and implementing agencies, particularly in the areas of: information and communications technology and equipment; transportation; rehabilitation, design and management of DDR sites, transit centres and other facilities; the establishment of information management and referral systems; and the procurement of basic goods for reinsertion kits, among others (also see IDDRS 4.10 on Disarmament, IDDRS 4.20 on Demobilization and IDDRS 4.30 on Social and Economic Reintegration); Training programmes for national staff: The UN system should further support capacity development through the provision of training. There are a number of different training methodologies, including the provision of courses or seminars, training of trainers, on- the-job or continuous training, and exchanges with experts from other national DDR institutions. Although shortage of time and money may limit the training options that can be offered, it is important that the approach chosen builds skills through a continuous process of capacity development that transfers skills to local actors; Support to local capacity development and community empowerment: Through local capacity development and community empowerment, the UN system should support local ownership of DDR processes and programmes. Since the success of the DDR process depends largely on the reintegration of individuals at the community level, it is im- portant to ensure that capacity development efforts are not restricted to assisting national authorities, but include direct support to communities in areas of reintegration. In particular, international agencies can help to build local capacities for participation in assessment and planning processes, project and financial management, reporting, and evaluation. 4.30 4.10 4.20", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "36501cbb-256d-4e4a-82b2-00bac7f5a5a0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 22, + "Paragraph": "The national commission The programme will be implemented under the guidance and supervision of the National Commission on Disarmament, Demobilization, Rehabilitation and Reintegration (NCDDRR), a temporary institution established by the peace agreement August 2003. The NCDDRR will consist of representatives from relevant National Transitional Government of Liberia (NTGL) agencies, the Government of Liberia (GOL), the Liberians United for Reconciliation and Democracy (LURD), the Movement for Democracy in Liberia (MODEL), the Economic Community of West African States (ECOWAS), the United Nations (UN), the African Union (AU) and the International Contact Group on Liberia (ICGL). The NCDDRR will: provide policy guidance to the Joint Implementation Unit (JIU); formulate the strategy and co-ordinate all government institutions in support of the Disarmament, Demobilization, Rehabilitation and Reintegration Programme (DDRRP); identify problems related to programme implementation and impact; and undertake all measures necessary for their quick and effective solution. During start-up, the NCDDRR will hold at least monthly meetings, but extraordinary meetings can be called if necessary. The NCDDRR will be supported by a Secretary, who will be responsible for: reporting to the NCDDRR on the activities of the JIU with regard to the DDRR process; promoting programme activities as well as managing relationships with external key stakeholders; assisting the JIU with necessary support and facilitation required to secure the political commitment of the leadership of the various fighting groups in order to implement the DDRR programme; participating in the various committees of the JIU \u2013 particularly with the Technical Coordination Committee and the Project Approval Committee (PAC); providing general oversight of the DDRR process on behalf of the NCDDRR committee and preparing reports to the committee.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0588fb81-38e8-41d9-af84-ada95ddabfb3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 23, + "Paragraph": "Function In order to ensure rapid implementation that will protect the credibility of the programme, a Joint Implementation Unit (JIU), headed by a Programme and Policy Adviser, will carry out the planning and implementation of the day-to-day operation and execution of the programme. The JIU will be an interdisciplinary and interdepartmental entity composed of four units dealing with: disarmament and demobilization: staffed with expertise from the UNMIL comprising a disarmament and demobilization expert, demobilization officers and field officers, as well as qualified national staff; rehabilitation and reintegration: staffed with expertise from the UNDP and other relevant agencies consisting of reintegration operation experts and national experts in vocational training and small enterprise development, employment creation and appren- ticeship promotion, agriculture and food production; monitoring and evaluation: staffed by technical assistance from the UNDP including a monitoring and evaluation (M&E) expert, and national staff as systems analyst, pro- grammer and M&E field monitors as well as short-term data entry clerks; and information and sensitization: staffed with expertise from UNMIL and OCHA includ- ing specialists in public information development and dissemination, social adaptation programmes in the area of civic education, psychosocial counselling, community-based reconciliation and peace-building measures. Accountable to the NCDDRR, the JIU will be responsible for ensuring: the planning and implementation of the individual programme components in collabo- ration with other government departments, NGOs and donors; the transparent and accountable administration of the programme (including procure- ment and disbursements); and monitoring and evaluation. The institutional capacity of the JIU will be ensured through rigorous selection of staff, payment consistent with the quality of outputs required, and staff training where appro- priate. Technical assistance will be contracted on the basis of specific terms of reference for providing a management information system (MIS) and financial management as well as the implementation of specific programme components. The various units of the JIU will be assigned with expertise from UN agencies as follows: the UNMIL DDR team will be deployed for the DD Unit in the JIU; programme and policy coordination, MIS and reintegration will be assigned to the team from the UNDP; and UNMIL and OCHA will handle the Information and Sensitization Unit. This arrangement will enhance the capacity of the JIU as well as reducing the overall staffing cost for the programme, while ensuring continuity in programme development in the event of the completion of the mandate of the mission. Each unit will be supported with national staff recruited to understudy the international staff of the JIU. A Programme and Policy Co-ordinator will manage and coordinate an internal manage- ment team comprising the heads of units of the JIU, and will report to the Office of the SRSG or to his or her designate in matters relating to the implementation of the programme. All implementing partners such as bilateral agencies, international and local NGOs will undertake their responsibilities in full compliance with programme guidelines and under the supervision of the JIU in respect of contracts entered into with the JIU of the NCDDRR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1b71c74f-cf08-4518-b5c5-91a577f7b8f0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 23, + "Paragraph": "DDRR field offices In addition to the central office in Monrovia, the JIU will establish five small DDRR field offices based on where ex-combatants are concentrated. The field offices will be co-located with the UNMIL field offices. Each DDRR field office will comprise a reintegration officer and up to four referral and counselling officers, all familiar with the local socio-political environment. The reinte- gration officers will be UN Volunteers (UNVs) recruited for this purpose and support with national staff. In addition, each DDRR field office will have an administration and account- ing officer, who will report directly to the financial manager of the Direct Execution (DEX) for administering reinsertion and reintegration assistance. In order to reinforce the capacity at the local level, each DDRR field office will have a UNV as the reintegration or DDRR officer working with various local staff. The field offices will be responsible for: information and counselling; administration of reintegration assistance under the different programme components; monitoring and evaluation; co-ordination with traditional/religious leaders, and maintaining linkages and coordi- nation with other community-based reconstruction and rehabilitation interventions; sensitizing the local population; assisting in programme implementation; identifying and solving local problems related to ex-combatant reintegration; and reporting on the progress and impact of the programme to the JIU in Monrovia. On the basis of the settlement pattern of ex-combatants, additional referral and coun- selling officers may be recruited.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9fba7418-37fd-4d93-a652-d4c5cc140ccf", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 25, + "Paragraph": "Roles and functions of the military units A military liaison office will be created to facilitate co-operation with UNMIL and the DD Unit for all security-related aspects of the programme. Within the overall mandates given to them by their respective institutions, UNMIL is expected to perform the following functions within the DDRR programme: provide relevant input and information as well as security assistance and advice with regard to the selection of potential sites for disarmament and demobilization; provide technical input with regard to the process of disarmament, registration, docu- mentation and screening of potential candidates for demobilization; develop and install systems for arms control and advise on a larger legislative frame- work to monitor and control arms recycling; monitor and verify the conformity of the DDR process according to recognized and acceptable standards; assume responsibility for effecting disarmament of combatants, maintain a pertinent registry of surrendered weaponry and conduct pre-demobilization screening and evaluation; and ensure the destruction of all weapons surrendered.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "19a1c203-6743-46ba-85ee-21f4e9d6c450", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 25, + "Paragraph": "Role of implementing partners and selection criteria A considerable part of the programme implementation will be contracted out to local and international NGOs as well as in partnership with various UN agencies, line ministries, private sector institutions and community-based structures. Implementing agencies will be selected on the basis of the following criteria: Track record and technical capacity. The agency must demonstrate a track record of technical and functional expertise in its chosen area of participation for not less then four years; Financial management capacity. It needs to demonstrate a proven record of sound finan- cial management and/or the capacity to pre-finance initial project costs. It must provide audited financial record for the past three years; Management capacity. The agency must demonstrate sound management capability in respect of the programme delivery structure and expertise. The implementing agency will be expected to adhere to the policy guidelines with regard to camp management and other operational regulations. It will be accountable to the JIU in matters of technical and financial issues related to its contractual obligations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "6d3b7c0e-8df6-4804-b55b-1ae4a3a38b57", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 5, + "Paragraph": "Monitoring and evaluation The programme comprises three separate but highly related processes, namely the military process of selecting and assembling combatants for demobilization and the civilian process of discharge, reinsertion and reintegration. How soldiers are demobilized affects the reinsertion and reintegration processes. At each phase: the administration of assistance has to be accounted for; weapons collected need to be classified and analysed; beneficiaries of reintegration assistance need to be tracked; and the quality of services provided during the implementation of the programme needs to be assessed. To plan, monitor and evaluate the processes, a management information system (MIS) regarding the discharged ex-combatants is required and will contain the following components: a database on the basic socio-economic profile of ex-combatants; a database on disarmament and weapons classification; a database of tracking benefit administration such as on payments of the settling-in package, training scholarships and employment subsidies to the ex-combatants; and a database on the programme\u2019s financial flows. The MIS depends on the satisfactory performance of all those involved in the collection and processing of information. There is, therefore, a need for extensive training of enumer- ators, country staff and headquarters staff. Particular emphasis will be given to the fact that the MIS is a system not only of control but also of assistance. Consequently, a constant two- way flow of information between the DDRR field offices and the JIU will be ensured through- out programme implementation. The MIS will provide a useful tool for planning and implementing demobilization. In connection with the reinsertion and reintegration of ex-combatants, the system is indispen- sable to the JIU in efficiently discharging its duties in planning and budgeting, implemen- tation, monitoring and evaluation. The system serves multiple functions and users. It is also updated from multiple data sources. The MIS may be conceived as comprising several simple databases that are logically linked together using a unique identifier (ID number). An MIS expert will be recruited to design, install and run the programme start-up. To keep the overheads of maintaining the system to a minimum, a self-updating and checking mechanism will be put in place.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0a520737-761e-4b3d-9ae0-9fbeef494438", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 27, + "Paragraph": "Management of the DDRR Trust Fund Fundamental principles for the management of the DDRR Trust Fund are based on trans- parency and openness with a clear separation between the policy/allocation aspects of the DDRR Trust Fund operations and the fiduciary/administrative responsibility. The Trust Fund will be administered by UNDP in accordance with the terms of refer- ence of the Trust Fund. In this capacity, the UNDP will establish and maintain appropriate records and accounts to identify the contributions to the Fund, the commitments to be financed out of the Fund and the receipt and disbursement of funds. The DEX Unit will be established and will be composed of UNDP staff with the overall responsibility for financial management and procurement for the programme. The DEX Unit will monitor expenditures related to the activities financed under the Trust Fund. The respon- sibilities of the DEX Unit will include procurement of goods, services and other items, screening and recommending UNDP\u2019s approval and payment, and monitoring all expen- ditures financed by the funds. UNDP will finance the cost of the DEX Unit from its own proper resources; therefore, all contributions will go towards direct costs of the DDRR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "012ab06b-4739-49eb-a624-56e1c56bd64f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 27, + "Paragraph": "Modalities of administration and administrative charges The UNDP, as the administrator of the DDRR Trust Fund, will be responsible for all dis- bursements in conformity with its own regulations, rules and procedures and consistent with the allocations and decisions made by the project approval and review committee of the JIU of the NCDDRR as well as the broader priorities set in consultation with the NCDDRR and the donor community. The UNDP will strive for maximum efficiency and effectiveness in administering the DDRR Trust Fund while promoting sound financial management and accountability to ensure that all required fiduciary and administrative cost elements are adequately funded.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3aada907-52dd-4281-941d-271b09704459", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 27, + "Paragraph": "Reporting and auditing Appropriate progress reports will be forwarded to the donors on a monthly basis covering general progress on implementation, financial reports on income and expenditure. The progress reporting will be the prime responsibility of the UNDP Resident Representative in Monrovia. However, the reports will also be submitted to the donors through UNDP Headquarters in New York to the relevant permanent missions to the United Nations. These progress reports will include the status of intended outputs, achievements and progress on the programme. On an annual basis, UNDP will provide financial reports on income and expenditure of the Trust Fund to donors, in accordance with UNDP\u2019s financial regulations and rules. An annual financial statement will be prepared for the Fund showing income and expendi- tures as of 31 December of every year and shall be submitted by the 30 June, i.e., six months after. Contributions made available will be subject exclusively to the internal and external auditing procedures provided for in the financial regulations, rules and directives of UNDP. Should an audit report of the Board of Auditors of UNDP to its governing body contain observations relevant to the contributions, such information will be available to the donor(s).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e5a4aaeb-7f33-4fcd-af37-5d59e58b3f45", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Technical Coordination Committee A Technical Coordinating Committee (TCC) will be established by the JIU to consult and inform external programme partners on critical issues of planning and programme develop- ment with regard to the DDRR programme. This will provide a broad forum for technical and strategic consultation in support of rational programming for all the DDRR activities. The responsibilities of the TCC will be to: identify strategic, operational and technical issues that may have an impact on the dis- armament, demobilisation and reintegration process; develop technical standards, guidelines, and operating principles, which will be adhered to by all involved in the implementation of specific DDRR activities; provide the framework for securing the support of key partners with regard to input to planning and implementing disarmament and demobilization activities as well as the reintegration process; provide the basis for operational planning and consensus on issues relating to disarm- ament, demobilization and reintegration; and on a regular basis identify key policy issues that need to be resolved by the policy com- mittee and provide policy options to the NCDDRR for consideration. The membership of the TCC will be based on invitation by the JIU and consist of rele- vant programme staff from agencies such as UNICEF, UNDP, UNHCR, WFP, WHO, EU, USAID, UNMIL, the Food and Agriculture Organization (FAO), OCHA and other appro- priate agencies. Relevant NTGL agencies could be invited for participation when necessary. The TCC will be constituted on a relevant sector basis such as disarmament and demobiliza- tion and reintegration, and it will meet fortnightly or as and when required. The membership and participation will vary according to the relevant sector.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "eeedc99d-e408-4bbb-b054-a9801b880e35", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Project Approval Committee A Project Approval Committee (PAC) will be established to ensure transparency in the use of donor resources. The PAC will be responsible for the review and approval of projects submitted by the implementing partners (i.e., international and national NGOs, etc.) to the JIU of the NCDDRRP. Financial resources from the assessed budget of the mission would be processed outside this framework. The members of the PAC will comprise one represen- tative each from the EU, USAID, UNDP, UNMIL, UNICEF and NTGL.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.json b/src/Static/data/json/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.json new file mode 100644 index 0000000..030c8cf --- /dev/null +++ b/src/Static/data/json/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.json @@ -0,0 +1,344 @@ +[ + { + "ID": "a02e1868-319a-4353-b81c-c05e0aafc98c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": null, + "Paragraph": "Summary The base of a well-functioning integrated disarmament, demobilization and reintegration (DDR) programme is the strength of its logistic, financial and administrative performance. If the multifunctional support capabilities, both within and outside peacekeeping missions, operate efficiently, then planning and delivery of logistic support to a DDR programme are more effective. The three central components of DDR logistic requirements include: equipment and services; finance and budgeting; and personnel. Depending on the DDR programme in question, many support services might be necessary in the area of equipment and services, e.g. living and working accommodation, communications, air transport, etc. Details regard- ing finance and budgeting, and personnel logistics for an integrated DDR unit are described in IDDRS 3.41 and 3.42. Logistic support in a peacekeeping mission provides a number of options. Within an integrated mission support structure, logistic support is available for civilian staffing, finances and a range of elements such as transportation, medical services and information technology. In a multidimensional operation, DDR is just one of the components requiring specific logistic needs. Some of the other components may include military and civilian headquarters staff and their functions, or military observers and their activities. When the DDR unit of a mission states its logistic requirements, the delivery of the supplies/services requested all depends on the quality of information provided to logistics planners by DDR managers. Some of the important information DDR managers need to provide to logistics planners well ahead of time are the estimated total number of ex-com- batants, broken down by sex, age, disability or illness, parties/groups and locations/sectors. Also, a time-line of the DDR programme is especially helpful. DDR managers must also be aware of long lead times for acquisition of services and materials, as procurement tends to slow down the process. It is also recommended that a list of priority equipment and services, which can be funded by voluntary contributions, is made. Each category of logistic resources (civilian, commercial, military) has distinct advantages and disadvantages, which are largely dependent upon how hostile the operating environ- ment is and the cost.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "a4282600-a573-4e34-b6c8-a1e90cfa4808", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": null, + "Paragraph": "1. Module scope and objectives This module provides practitioners with an overview of the integrated mission support concept and explains the planning and delivery of logistic support to a DDR programme. A more detailed treatment of the finance and budgeting aspects of DDR programmes are provided in IDDRS 3.41, while IDDRS 3.42 deals with the issue of personnel and staffing in an integrated DDR unit. 3.42 3.42 3.41 3.41", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "32402f4b-dfdc-44b5-9a74-55d0a521766f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A gives a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) 1.20\tis given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f122773f-aba0-455e-ac34-f6433d75728c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 4, + "Paragraph": "Introduction The effectiveness and responsiveness of a DDR programme relies on the administrative, logistic and financial support it gets from the peacekeeping mission, United Nations (UN) agencies, funds and programmes. DDR is multidimensional and involves multiple actors; as a result, different support capabilities, within and outside the peacekeeping mission, should not be seen in isolation, but should be dealt with together in an integrated way as far as possible to provide maximum flexibility and responsiveness in the implementation of the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce12377f-a82d-4100-b845-b974ff054701", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 4, + "Paragraph": "Guiding principles The planning of the logistic support for DDR programmes is guided by the principles, key con- 2.10\tsiderations and approaches outlined in IDDRS 2.10 on the UN Approach to DDR; in particular: unity of effort in the planning and implementation of support for all phases of the DDR programme, bearing in mind that different UN (and other) actors have a role to play in support of the DDR programme; accountability, transparency and flexibility in using the most appropriate support mech- anisms available to ensure an efficient and effective DDR programme, from the funding through to logistic support, bearing in mind that DDR activities may not occur sequen- tially (i.e., one after the other); a people-centred approach, by catering for the different and specific needs (such as dietary, medical and gender-specific requirements) of the participants and beneficiaries of the DDR programme; means of ensuring safety and security, which is a major consideration, as reliable estimates of the size and extent of the DDR operation may not be available; contingency planning must therefore also be included in logistics planning.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "01048e99-5304-409e-a13b-83d4edfa8fe5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 4, + "Paragraph": "Equipment and services Depending on the specific character of the DDR programme, some or all of the following support services may be required: living accommodation; camp construction material, including outsourcing of construction and management; fire prevention and precautions, and fire-fighting equipment; working accommodation; office furniture; office equipment and supplies; communications; information technology; medical services capable of responding to different needs; movement control; surface transport; air transport; water; food rations; food preparation and supply arrangements; fuel; general services such as janitorial, waste disposal, etc.; security; management information software, identity card machines; weapons destruction equipment.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4d4299fa-bb55-45ac-b242-d114fd0babaa", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 5, + "Paragraph": "Finance and budgeting DDR programmes in a peacekeeping context are funded from a combination of the peace- keeping-assessed budget and voluntary sources, which could come from UN-managed trust funds, World Bank trust funds and direct bilateral support (also see IDDRS 3.41 on Finance and Budgeting). 3.41", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7293ded8-41bf-4f8a-bbf8-0cc5f0b4e942", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 5, + "Paragraph": "5.3. Personnel The UN takes an integrated approach to DDR, which is reflected in the effort to establish a single integrated DDR unit in the field. The aim of this integrated unit is to facilitate joint planning to ensure the effective and efficient decentralization of the many DDR tasks (also see IDDRS 3.42 on Personnel and Staffing). 3.42", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b0e5e5dc-4c95-4f0e-98bc-9e7ddc657df7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 5, + "Paragraph": "Logistic support in a peacekeeping mission Note that unless otherwise specified, guidelines in this section refer to logistics issues under the direct management of the Department of Peacekeeping Operations (DPKO), or funded through assessed contributions to a peacekeeping mission budget. Other UN agencies, funds and programmes will in most cases need to comply with the rules and procedures govern- ing operations, logistics and the financing of their activities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9c932e9d-6fb9-426c-8c4c-ed0578d5a389", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 5, + "Paragraph": "Integrated mission support In a peacekeeping mission, integrated support is provided. This includes civilian staffing, different logistic elements (such as logistics planning, transportation, supply, engineering, communications and information technology, medical services and general services) and finances, which are all considered together to develop the mission support strategy (see figure 1). A peacekeeping mission adopts this general approach for the delivery of logistic support to all mandated programmes, although it also caters to the specific needs of the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "05d9b157-5dfb-44e1-8e31-244ca29defe4", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 6, + "Paragraph": "A multidimensional operation DDR is one component of a multidimensional peacekeeping operation. Other components may include: mission civilian substantive staff and the staff of political, humanitarian, human rights, public information, etc., programmes; military and civilian police headquarters staff and their functions; military observers and their activities; military contingents and their operations; civilian police officers and their activities; formed police units and their operations; UN support staffs; other UN agencies, programmes and funds, as mandated.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d3733139-ea5a-44f3-823f-78c1f9b77555", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 6, + "Paragraph": "DDR statement of requirements The quality and timeliness of DDR logistic support to a peacekeeping mission depend on the quality and timeliness of information provided by DDR planners and managers to logistics planners. DDR programme managers need to state the logistic requirements that fall under the direct managerial or financial scope of the peacekeeping mission and DPKO. In addition, the logistic requirements have to be submitted to the Division of Administration as early as possible to ensure timely logistic support. Some of the more important elements are listed below as a guideline: estimated total number of ex-combatants, broken down according to sex, age, dis- ability or illness, parties/groups and locations/sectors; estimated total number of weapons, broken down according to type of weap- on, ammunition, explosives, etc.; time-lineoftheentireprogramme, show- ing start/completion of activities; allocation of resources, materials and services included in the assessed budget; names of all participating UN entities, non-governmental organizations (NGOs) and other implementing partners, with their focal points and telephone numbers/email addresses; forums/meetings and other coordination mechanisms where Joint Logistics Operations Centre (JLOC) participation is requested; requirement of office premises, office furniture, office equipment and related services, with locations; ground transport requirements \u2014 types and quantities; air transport requirements; communications requirements, including identity card machines; medical support requirements; number and location of various disarmament sites, camps, cantonments and other facilities; layout of each site, camp/cantonment with specifications, including: camp/site management structure with designations and responsibilities of officials; number and type of combatants, and their sex and age; number and type of all categories of staff, including NGOs\u2019 staff, expected in the camp; nature of activities to be conducted in the site/camp and special requirements for rations storage, distribution of insertion benefits, etc.; security considerations and requirements; preferred type of construction; services/amenities provided by NGOs; camp services to be provided by the mission, as well as any other specific requirements; dietary restrictions/considerations; fire-fighting equipment; camp evacuation standard operating procedures; policy on employment of ex-combatants as labourers in camp construction.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1adb757b-8928-4b5f-8cb2-1c1dd556aebe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 7, + "Paragraph": "Long lead time items For procurement funded from the mission budget (assessed contributions), DDR manag- ers must recognize and build into their planning estimates of the lead times for the acqui- sition of services and materials. Typical lead times for common equipment/commodities, exclusive of processing and shipping time, are given below: In principle, programme managers should attempt to get all logistic requirements for UN support to DDR funded out of the regular mission budget. Also, they should identify a (small) number of priority pieces of equipment and services that could be funded from voluntary contributions (which often have the ability to procure locally and with shorter lead times) on a reimbursable basis. The procurement of equipment and services in this way should be carried out according to the rules and regulations of individual agencies.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "319d5b17-c861-4896-9dec-3628446222bf", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 8, + "Paragraph": "Options for the provision of logistic support for DDR activities The range of logistic support provided to a programme or activity will normally include a combination of UN civilian, commercial and military resources. Each of these elements has distinct advantages and disadvantages: UN civilian support under direct UN control is easily adjusted to programme-specific requirements, and can operate in all but the most hostile environment; however, it takes time to assemble the required personnel and equipment, and to establish the necessary organization; Commercial support comes fully staffed and equipped, but it takes time to put the appro- priate contractual arrangements in place, and commercial support cannot always be relied on to operate in hostile conditions; Military support can operate in the most hostile environments, can be mobilized rela- tively quickly (depending on the troop-contributing country) and comes fully staffed and equipped. However, military support lacks continuity, because of the need to rotate personnel every 6\u201312 months. It can also be expensive.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7d658b14-ebef-4395-9784-16910a1c875f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 8, + "Paragraph": "Support management structures and processes This section outlines the management structure, and the planning and delivery of logistic support in a peacekeeping mission. These structures apply to the components of a DDR programme managed directly by DPKO or funded from the regular mission budget.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5e1dd6ae-b5fd-48c5-803b-8e50fa639b19", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 9, + "Paragraph": "Chief administrative officer Within a UN peacekeeping mission, the chief administrative officer (CAO) (or director of administration \u2014 DOA) is the sole financially accountable officer (for the assessed budget), and is responsible for the provision of all administrative and logistic support to all mission components. The senior mission management determines the priorities for programmes and their activities. It is the responsibility of the CAO/DOA to turn these priorities into plans, resource allocations, tasks, and coordination and monitoring arrangements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "77b0740c-1796-4315-bed3-ad92c6fd7799", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 9, + "Paragraph": "Integrated support services A joint civilian\u2013military management structure, known as integrated support services (ISS), reviews and prioritizes all requests for logistic support in accordance with the mission\u2019s objectives and priorities, and allocates the most suitable civilian, commercial or military support resource to meet the requirements in the most effective and economic manner. A diagram of a typical ISS structure is given in Annex B.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "90c6fd86-6cb9-4f18-93ad-9430b99d739b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 9, + "Paragraph": "Joint Logistics Operations Centre The day-to-day planning, analysis, coordination and tasking of all requests for logistic support are handled by the JLOC; see Annex B). The JLOC is also the mission\u2019s single point of contact for the coordination of logistics issues with non-DPKO actors such as NGOs orother UNagencies, fundsandprogrammes. All requests for logistic support should be channelled through the JLOC for appropriate prioritization and tasking. For the JLOC to effectively plan and de- liver logistic support to a DDR programme, it is essential that the DDR management team keeps the JLOC informed of its future support requirements during the planning stage and that it provides the JLOC with the programme operational plan before the DDR operation starts, keeping in view the lead times for design, acquisition, packaging and delivery of logistic services. The DDR operational plan needs to describe what is needed to achieve its planned activities, as follows: physical resources: space, supplies, equipment; human resources: international, national (local, national professional officers), UN volunteers; services; supplies; partnerships/links with implementing partners; time-lines.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-3.41-Finance-and-Budgeting.json b/src/Static/data/json/IDDRS-3.41-Finance-and-Budgeting.json new file mode 100644 index 0000000..338d415 --- /dev/null +++ b/src/Static/data/json/IDDRS-3.41-Finance-and-Budgeting.json @@ -0,0 +1,762 @@ +[ + { + "ID": "cc910b40-9847-42bd-b346-c137093095cf", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": null, + "Paragraph": "Summary The system of funding of a disarmament, demobilization and reintegration (DDR) pro- gramme varies according to the different involvement of international actors. When the World Bank (with its Multi-Donor Trustfund) plays a leading role in supporting a national DDR programme, funding is normally provided for all demobilization and reintegration activities, while additional World Bank International Development Association (IDA) loans are also provided. In these instances, funding comes from a single source and is largely guaranteed. In instances where the United Nations (UN) takes the lead, several sources of funding may be brought together to support a national DDR programme. Funds may include con- tributions from the peacekeeping assessed budget; core funding from the budgets of UN agencies, funds and programmes; voluntary contributions from donors to a UN-managed trust fund; bilateral support from a Member State to the national programme; and contribu- tions from the World Bank. In a peacekeeping context, funding may come from some or all of the above funding sources. In this situation, a good understanding of the policies and procedures governing the employment and management of financial support from these different sources is vital to the success of the DDR programme. Since several international actors are involved, it is important to be aware of important DDR funding requirements, resource mobilization options, funding mechanisms and finan- cial management structures for DDR programming. Within DDR funding requirements, for example, creating an integrated DDR plan, investing heavily in the reintegration phase and increasing accountability by using the results-based budgeting (RBB) process can contribute to the success and long-term sustainability of a DDR programme. When budgeting for DDR programmes, being aware of the various funding sources available is especially helpful. The peacekeeping assessed budget process, which covers military, personnel and operational costs, is vital to DDR programming within the UN peace- keeping context. Both in and outside the UN system, rapid response funds are available. External sources of funding include voluntary donor contributions, the World Bank Post- Conflict Fund, the Multi-Country Demobilization and Reintegration Programme (MDRP), government grants and agency in-kind contributions. Once funds have been committed to DDR programmes, there are different funding mechanisms that can be used and various financial management structures for DDR pro- grammes that can be created. Suitable to an integrated DDR plan is the Consolidated Appeals Process (CAP), which is the normal UN inter-agency planning, coordination and resource mobilization mechanism for the response to a crisis. Transitional appeals, Post-Conflict Needs Assessments (PCNAs) and international donors\u2019 conferences usually involve govern- ments and are applicable to the conflict phase. In the case of RBB, programme budgeting that is defined by clear objectives, indicators of achievement, outputs and influence of external factors helps to make funds more sustainable. Effective financial management structures for DDR programmes are based on a coherent system for ensuring flexible and sustainable financing for DDR activities. Such a coherent structure is guided by, among other factors, a coordinated arrangement for the funding of DDR activities and an agreed framework for joint DDR coordination, monitoring and evaluation. 3.10 3.20 3.30 1.20", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4c6235b1-6cf5-42f1-9d0d-26b07e97ecce", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 4, + "Paragraph": "Module scope and objectives The aim of this module is to provide DDR practitioners in Headquarters and the field, in peacekeeping missions as well as field-based UN agencies, funds and programmes with a good understanding of: the major DDR activities that need to be considered and their associated cost; the planning and budgetary framework used for DDR programming in a peacekeeping environment; potential sources of funding for DDR programmes, relevant policies guiding their use and the key actors that play an important role in funding DDR programmes; the financial mechanisms and frameworks used for DDR fund and programmes man- agement. Specifically, the module outlines the policies and procedures for the mobilization, man- agement and allocation of funds for DDR programmes, from planning to implementation. It provides substantive information about the budgeting process used in a peacekeeping mission (including the RBB framework) and UN country team. It also discusses the funding mechanisms available to support the launch and implementation of DDR programmes and ensure coordination with other stakeholders involved in the funding of DDR programmes. Finally, it outlines suggestions about how the UN\u2019s financial resources for DDR can be managed as part of the broader framework for DDR, defining national and international responsibilities and roles, and mechanisms for collective decision-making. The module does not deal with the specific policies and procedures of World Bank funding of DDR programmes. It should be read together with the module on planning of integrated DDR (IDDRS 3.10 on Integrated DDR Planning: Processes and Structures), the module on programme design (IDDRS 3.20 on DDR Programme Design), which provides guidance on developing cost-efficient and effective DDR programmes, and the module on national institutions (IDDRS 3.30 on National Institutions for DDR), which specifies the role of national institutions in DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "de03c290-9a51-4128-8962-da4aa24e4c40", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of inte- grated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "72f8ba1d-ae40-49e2-88c0-4bcc323d1ad6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 5, + "Paragraph": "Introduction The primary purpose of DDR is to build the conditions for sustainable reintegration and reconciliation at the community level. Therefore, both early, adequate and sustainable funding and effective and transparent financial management arrangements are vital to the success of DDR programmes. Funding and financial management must be com- bined with cost-efficient and effective DDR programme strategies that both increase immediate security and contribute to the longer-term reintegration of ex-combatants. Strategies containing poorly conceived eligibility criteria, a focus on individual combatants, up-front cash incentives, weapons buy-back schemes and hastily planned re- integration programmes must be avoided. They are both a financial drain and will not help to achieve the purpose of DDR. Programme managers should be aware that the reliance on multiple sources and mechanisms for funding DDR in a peacekeeping environment has several implications: First, most programmes experience a gap of about a year from the time funds are pledged at a donors\u2019 conference to the time they are received. Payment may be further delayed if there is a lack of donor confidence in the peace process or in the implemen- tation of the peace agreement; Second, the peacekeeping assessed budget is a predictable and reliable source of funding, but a lack of knowledge about what can or cannot be carried out with this source of funding, lack of clarity about the budgetary process and late submissions have all lim- ited the contributions of the peacekeeping assessed budget to the full DDR programme; Third, the multiple funding sources have, on occasion, resulted in poorly planned and unsynchronized resource mobilization activities and unnecessary duplication of administrative structures. This has led to further confusion among DDR planners and implementers, diminished donor confidence in the DDR programme and, as a result, increased unwillingness to contribute the required funds.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "36e15442-99d2-4ae7-8cbb-1e115e48e77d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 5, + "Paragraph": "Integrated DDR plan The funding strategy of the UN for a DDR programme should be based on an integrated DDR plan and strategy that show the division of labour and relationships among different national and local stakeholders, and UN departments, agencies, funds and programmes. The planning process to develop the integrated plan should include the relevant national stakeholders, UN partners, implementing local and international partners (wherever pos- sible), donors and other actors such as the World Bank. The integrated DDR plan shall also define programme and resource management arrangements, and the roles and responsi- bilities of key national and international stakeholders.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d5bd08f2-e014-40c1-a52b-6111a6791017", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Harmonization with other post-conflict planning mechanisms Planning and budgeting for DDR shall also be harmonized with other assessment, planning and financing mechanisms that are established to manage and allocate financial resources for transition and recovery needs.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "5a52f0ac-f903-4db7-8d4b-e51eb310b15b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Funding DDR as an indivisible process DDR practitioners and donors shall recognize the indivisible character of DDR. Sufficient funds must be secured to finance the disarmament, demobilization and reintegration acti- vities for an individual participant and his/her receiving community before the UN should consider starting the disarmament process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "eae363b0-1452-4bcf-b221-bfd9337cf1b2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Minimizing duplication The UN must avoid duplicative, high-cost administrative structures for fund management in-country, as well as unnecessary duplication in programmes for ex-combatants and those associated with the armed forces and groups.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "93d3dfc3-5dff-48ff-9c13-3e1a1cf1e304", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Investing in reintegration The UN system should ensure that adequate, timely funding is allocated for the reintegra- tion component of the programme. Additional investments into community level services to assist and support reintegration and reconciliation (such as community security initia- tives) should be planned and harmonized with the investments of the UN system and bilateral and multilateral actors working on reintegrating internally displaced persons and refugees.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "805dc327-9f89-4982-8c3e-39bf33aed52c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Flexibility and worst-case planning estimates Wherever possible, cost estimates should be based on thorough assessments and surveys. In the absence of concrete information, the UN shall make the assumptions/estimates needed in order to carry out planning and budgeting for a DDR programme. The planning and budgetary process shall take into account realistic worst-case scenarios and build in sufficient financial flexibility to deal with potential identified political and security contin- gencies that may affect DDR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "94065790-aa30-420a-8d18-6695f2112e79", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Accountability The UN, together with relevant bilateral or multilateral partners, shall establish rigorous oversight mechanisms at the national and international levels to ensure a high degree of accuracy in monitoring and evaluation, transparency, and accountability. These tools ensure that the use of funds meets the programme objectives and conforms to both the financial rules and regulations of the UN (in the case of the assessed budget) and those of donors contributing funds to the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "210b0faf-99dc-45b6-ab99-64aeaff7f7dd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 7, + "Paragraph": "Funding requirements The matrix below identifies the main DDR activities from the negotiation of the peace proc- ess to the implementation of the programme, the main activities that may take place in each phase of the process, and possible resource requirements and sources of funding. This list provides a general example of the processes involved, and other issues may have to be included, depending on the requirements of a particular DDR mission.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ba405478-1788-4844-bc26-fadbc738466b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 8, + "Paragraph": "Budgeting for DDR during programme development The design of DDR budgets should follow the basic template for results-based budgeting 3.20\t(RBB) in use by the UN system as international standards (also see IDDRS 3.20 on DDR Programme Design). Annex D.1 gives suggestions on how to develop an RBB framework, while Annex D.2 provides an example from Sudan. When drawing up the budget in the programme development process, the following considerations should be taken into account: It is necessary to accurately cost programme requirements during the assessment/pro- gramme design phase in consultation with all key stakeholders (particularly national authorities, main donors and partners); The costing of DDR activities should be carried out within a single framework (i.e., covering all aspects of DDR, and all phases of mission planning and programme devel- opment), including a common results-based matrix with corresponding funding sources. This framework should fit in with, and be linked to, other funding frameworks (CAP, joint assessment missions, PCNA processes, etc.). Annexes B.1 provides an example of the results-focused transition framework (RFTF) on DDR from Liberia, while Annex B.2 shows integrated DDR programme planning in Sudan; Budgeting for funding UN DDR activities should be carried out with a clear under- standing of the division between national and international implementation respon- sibilities, and should be closely coordinated with the development and funding of the national DDR framework; A donors\u2019 group or forum should be established during the programme development phase to ensure adequate and sustainable participation and engagement of donors in DDR; As far as possible, the identification of funding needs, sources and methods should be integrated with broader post-conflict recovery strategy and funding frameworks (includ- ing management and governance structures). Most important for DDR programme budgeting within the UN system is the peace- keeping assessed budget process. While other funding sources are available, the peacekeeping assessed budget process requires complex planning considerations for DDR programmes in the peacekeeping context.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "afd1aae6-bf53-481e-95b1-389fc7779bbe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 9, + "Paragraph": "The peacekeeping assessed budget of the UN The peacekeeping assessed budget of the UN is an important source of funding for DDR programmes. It is normally established for one year and covers the three major categories of expenses. These are: military costs (troops, military observers and equipment); personnel costs (international and local staff members, consultants, etc.); operational costs (logistics and limited programme implementation costs).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b2618f31-ad3d-4a70-b85c-4220422ddcab", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 9, + "Paragraph": "Elements of budgeting for DDR Budgeting for DDR activities, using the peacekeeping assessed budget, must be guided by two elements: The Secretary-General\u2019s DDR definitions: In May 2005, the Secretary-General standardized the DDR definitions to be used by all peacekeeping missions in their budget submissions, in his note to the General Assembly (A/C.5/59/31); General Assembly resolution A/RES/59/296: Following the note of the Secretary-General on DDR definitions, the General Assembly in resolution A/RES/59/296 recognized that a reinsertion period of one year is an integral part of the demobilization phase of the programme, and agreed to finance reinsertion activities for demobilized combatants for up to that period. (For the remaining text of resolution A/RES/59/296, please see Annex C.)", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "2c99713d-6542-43d6-bf0a-a836131cdd0a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 10, + "Paragraph": "Categories that may be funded by the peacekeeping assessed budget Guided by the Secretary-General\u2019s definitions and resolution A/RES/59/296 of the Gen- eral Assembly, below is a list of the categories that may be funded by the peacekeeping assessed budget:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d940c5de-7a15-4da1-8d8f-fb5ce511c891", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 11, + "Paragraph": "The peacekeeping budgeting process This section outlines the typical process for developing the budget for a peacekeeping mission and describes the RBB methodology used in DPKO missions for the preparation and sub- mission of budgets to the General Assembly. (Note: With the exception of new missions, the budget cycle for all peacekeeping budgets is from 1 July to 30 June of the following year.)", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fc473e23-3ce0-4afe-88bb-a4df450c55e3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 12, + "Paragraph": "Section II: Resource mobilization This section provides an overview of the main sources of funding used for DDR, as well as the types of activities they can finance. The section also illustrates how different funds and funding sources can be used within an overall phased plan for funding DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "64d892ac-0630-4ec7-96b5-d12e24a871ad", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 12, + "Paragraph": "Sources of funding In general, five funding sources are used to finance DDR activities. These are: the peacekeeping assessed budget of the UN; rapid response (emergency) funds; voluntary contributions from donors; government grants, government loans and credits; agency cost-sharing. An outline of the peacekeeping assessed budget process of the UN is given at the end of Section I. Next to the peacekeeping assessed budget, rapid response funds are another vital source of funding for DDR programming.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4c4b4eb7-e753-4277-b3a9-984c9828bbb5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 12, + "Paragraph": "Rapid response funds There are several sources of funds that can be accessed relatively quickly to fund urgent require- ments and emergencies: they can be used to fund specific activities needed to develop and launch DDR activities. The funds provide up-front capacities and resources in the immedi- ate post-conflict period that cannot be covered by voluntary contributions, owing to delays in funds being disbursed and often lengthy procedures for authorization and disbursement. These funds often have flexible management arrangements, can be quickly disbursed, and can help the peacekeeping assessed budget to deal with strategic priorities immediately preceding, and during, the development and launch of DDR programmes. These sources of funding include the following:", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9a230f48-60fe-48bc-99ca-94910f1874f8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 13, + "Paragraph": "UNDP crisis prevention and recovery funds The UN Development Programme (UNDP), through both its core funds for emergency situations (known as TRAC 1.1.3) and its Crisis Prevention and Recovery Thematic Trust Fund (CPR/TTF), can provide limited seed funding for developing and launching DDR programmes in the immediate pre-mandate and mission deployment period, and for providing technical and capacity-development assistance to parties engaged in peace negotiations:1", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a104367d-8736-4a3e-b0d3-5005c2d2c032", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 14, + "Paragraph": "European Commission Rapid Reaction Mechanism2 The European Commission (EC) Rapid Reaction Mechanism (RRM) is designed to allow the European Union (EU) to respond urgently to the needs of countries threatened with or undergoing severe political instability or suffering from the effects of technological or natu- ral disasters.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d50414a2-37b6-4d2a-9a31-0b5acd7e2219", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 14, + "Paragraph": "World Bank Post-Conflict Fund3 The World Bank Post-Conflict Fund (PCF) supports planning, piloting and analysing of DDR activities by funding governments and partner organizations doing this work. The emphasis is on speed and flexibility without sacrificing quality.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "89a0b24c-ac97-498d-be7e-eb7a35ce682c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": null, + "Paragraph": "Voluntary (donor) contributions Voluntary contributions from UN Member States are the main source of financing for DDR programmes, and in particular reintegration activities. Contributions can originate from various sources, including foreign affairs ministries, overseas development assistance funds and defence ministries, among others. Key donors that usually provide financing for DDR, as well as security sector reform (SSR) and post-conflict recovery initiatives, include the following countries, together with their re- spective bilateral aid agencies and specialized mechanisms for funding post-conflict and transition priorities:", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b1f00f95-1b44-4bcf-93c9-f314feb69b84", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 16, + "Paragraph": "Government grants Although most post-conflict governments lack institutional capacity to carry out DDR, many (such as Sierra Leone) contribute towards the cost of domestic DDR programmes, given their importance as a national priority. Although these funds are not generally used to finance UN-implemented activities and operations, they play a key role in establishing and making operational national DDR institutions and programmes, while helping to generate a mean- ingful sense of national ownership of the process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bd29f872-fb7c-4fd1-964e-8590366ad10c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 16, + "Paragraph": "Agency in-kind contributions For some activities in a DDR programme, certain UN agencies might be in a position to provide in-kind contributions, particularly when these activities correspond to or consist of priorities and goals in their general programming and assistance strategy. Such in-kind contributions could include, for instance, the provision of food assistance to ex-combatants during their cantonment in the demobilization stage, medical health screening, or HIV/ AIDS counselling and sensitization. The availability and provision of these contributions for DDR programming should be discussed, identified and agreed upon during the programme design/planning phase, and the agencies in question should be active participants in the overall integrated approach to DDR. Traditional types of in-kind contributions include: security and protection services (military) \u2014 mainly outside of DDR in peacekeeping missions; construction of basic infrastructure; logistics and transport; food assistance to ex-combatants and dependants; child-specific assistance; shelter, clothes and other basic subsistence needs; health assistance; HIV/AIDS screening and testing; public information services; counselling; employment creation in existing development projects.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f7ea487b-5ac9-45d3-8fe0-5eef14ce9400", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 16, + "Paragraph": "Overview of phased DDR funding requirements A key element of a resource mobilization strategy is to focus on different donors and fund- ing sources, depending on what range of activities they can fund at different phases in the DDR programme cycle. Some types of funding (particularly emergency response funding) are particularly useful in the initial planning and launch phase of DDR programmes, owing to their imme- diate availability, quick disbursal and flexibility, while other types of funding (voluntary contributions or loans) are more applicable for financing long-term reintegration assistance, owing to their slower disbursement, often of larger amounts, and their ability to finance multi-year arrangements. Annex E illustrates how different sources and kinds of funds could be utilized within an overall phased approach to implementing DDR programmes. This type of planning could form a vital component of a resource mobilization strategy and allow the establishment of clear goals.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3f947a84-7d5c-4fba-b77a-ff86c0c10fef", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 17, + "Paragraph": "Standard funding mechanisms The UN system uses a number of different funding mechanisms and frameworks to mobilize financial resources in crisis and post-conflict contexts, covering all stages of the relief-to- development continuum, and including the mission period. For the purposes of financing DDR, the following mechanisms and instruments should be considered:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ca6cd320-7b28-4c90-8041-a07c932e0ae5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 18, + "Paragraph": "12.1. Results-based budgeting for DDR in a peacekeeping environment The results-based budgeting (RBB) framework is the primary budgetary planning tool used by the UN Secretariat and peacekeeping missions, and is part of the Secretary-General\u2019s programme of reform and vision of a more results-oriented organization. A significant feature of RBB is the defining of expected results at the beginning of the planning and budget cycle, before implementation. Thus RBB aims to shift focus from output accounting (i.e., activities) to results-based accountability (i.e., indicators of achievements). RBB is not simply an administrative process, but a strategic planning tool, improving the clarity of programmes, bringing about a common understanding and better communication between Member States and programme managers about the desired results. Results-based management is intended to be a dynamic process, providing feedback throughout the full programme cycle: in planning, programming, budgeting, and monitoring and evaluation. Since its inception, RBB has continued to evolve in order to better fulfil its role as a strategic planning tool for the UN. (See Annex D.1 for an overview of the RBB framework develop- ment and Annex D. 2 for an example from Sudan.) RBB has four main components: Objective: Serving as the basis for developing programme activities and identifying benchmarks for success; Indicators of achievement: Measuring performance, justifying the resource requirements and linking them to outputs; Outputs: Listing the activities that will be conducted in order to achieve the objective; External factors: Identifying factors outside the control of the programme manager that may affect programme performance.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "23aed21d-e5d8-4ad9-9d7b-5b6806d63820", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 5, + "Paragraph": "Financial management Integrated DDR programmes should develop, to the extent possible, a single structure for managing and coordinating: the receipt of funds from various funding sources and mechanisms; the allocation of funds to specific projects, activities and implementing partners; adequate monitoring, oversight and reporting on the use of funds. In order to achieve these goals, the structure should ideally: include a coordinated arrangement for the funding of DDR activities that would be administered by either the UN or jointly with another organization such as the World Bank, with an agreed structure for joint coordination, monitoring and evaluation; establish a direct link with integrated DDR planning and programming frameworks; include all key stakeholders on DDR, while ensuring the primacy of national ownership; bring together within one framework all available sources of funding, as well as related methods (including trust funds and pass-through arrangements, for instance), in order to establish a well-coordinated and coherent system for ensuring flexible and sustain- able financing of DDR activities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "90b73697-4453-4ece-b66b-dc011804b646", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 18, + "Paragraph": "National role and coordination The establishment of a financial and management structure for funding DDR should clearly reflect the primacy of national ownership and responsibility, the extent of direct national implementation and fund management, and the nature of UN support. In this sense, a DDR funding structure should not be exclusively oriented towards UN management and imple- mentation, but rather be planned as an \u2018open\u2019 architecture to enable national and other international actors to meaningfully participate in the DDR process. As a part of the process of ensuring national participation, meaningful national ownership should be reflected in the leadership role that national stakeholders should play in the coordination mechanisms established within the overall financial and management structure.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b8626e0d-44ff-4031-bb4f-3cec2b2ef673", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 19, + "Paragraph": "Institutional and management structures The core elements of a DDR financial and management structure should ideally include the following: a steering committee to provide overall strategic guidance and policy direction on DDR financing; ensure coherence with DDR strategy, priorities and programming framework; and ensure adequate coordination among key stakeholders (national actors, donors, UN agencies, the World Bank and other partners); a coordination committee to coordinate the overall programme of activities to be financed through the funding structure, monitor coherence of programme activities and funding structure objectives, and ensure that the programmes are coordinated with broader frameworks and processes (e.g., recovery and SSR), as well as the overall national pro- gramme and other initiatives taking place at the same time; a technical committee to provide general technical advice, carry out technical review of funding proposals and eligibility, and provide recommendations on the suitability of funding. The technical committee should include UN technical advisers, national rep- resentatives, donors and the chair of the steering committee; a project approval committee to examine and approve eligible funding proposals sub- mitted to the DDR funding structure, provide strategic guidance on the use of funds, and ensure coherence and coordination between the funding structure and national priorities; a secretariat to support the work of the committee through informational, administra- tive and secretarial responsibilities. The secretariat should also ensure adequate and consistent reporting on activities financed by the funding structure, as well as overall financial tracking. In certain cases, the secretariat could also be tasked with management of financial services such as procurement and contracting.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0c80a78d-b55d-4bd4-8806-42c6b33377e5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 19, + "Paragraph": "Administration of funds The organization responsible for the administration of funds is responsible for establishing and maintaining appropriate records and accounts to identify financial contributions to funds and arrangements established within the funding structure, as well as to identify the commitments to be financed out of the contributions, and the receipt and disbursement of these funds, in accordance with specified arrangements. If multiple mechanisms are established to manage receipt of funds (such as two separate trust funds covering different funding areas or funding sources), multiple administrative agents (AAs) will be required. To avoid confusion, the same standards and criteria for allo- cating, monitoring and reporting funds should be adopted.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1f736e04-5f51-421a-9bca-ff95e5bba0c0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 20, + "Paragraph": "Linking parallel funding mechanisms Given the complexity and scope of DDR interventions, as well as the range of stakeholders involved, parallel initiatives, both UN and non-UN, are inevitable. Links shall be created between the national and UN DDR frameworks to ensure that these do not duplicate or otherwise affect overall coherence. The basic requirement of good coordination between integrated and parallel processes is an agreement on common strategic, planning and policy frameworks, which should be based on national policy priorities, if they exist. Structurally, stakeholders involved in parallel initiatives should participate on the steering and coordi- nation committees of the DDR funding structure, even though the actual administration and management of funds takes place outside this framework. This will avoid duplication of efforts and ensure a link to operational coordination, and enable the development of an aggregated/consolidated overall budget and work plan for DDR. Normal parallel funding mechanisms include the following: Mission financing: Although the UN peacekeeping mission is a key component of the overall UN integrated structure for DDR, its main funding mechanism (assessed contri- butions) is managed directly by the mission itself in coordination with DPKO Head- quarters, and cannot be integrated fully into the DDR funding structure. For this reason, it should be considered a parallel funding mechanism, even though the DDR funding structure decides how funds are used and managed; Parallel agency funds: Certain agencies might have programmes that could support DDR activities (e.g., food assistance for ex-combatants as part of a broader food assistance programme), or even DDR projects that fall outside the overall integrated programme framework; Bilateral assistance funds: Some donors, particularly those whose bilateral aid agencies are active on post-conflict and/or DDR issues (such as USAID, DFID, CIDA, etc.) might choose to finance programmes that are parallel to integrated efforts, and which are directly implemented by national or sub-national partners. In this context, it is important to ensure that these donors are active participants in DDR and the funding structures involved, and to ensure adequate operational coordination (particularly to ensure that the intended geographic areas and beneficiaries are covered by the programme).", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f01f5861-6881-42b7-be6a-5b6e4ef0d6b2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 20, + "Paragraph": "Pooled funding Under this option, participating UN organizations pool funds together within one UN organization, chosen jointly by the coordination committee of the DDR financial management structure, which will assume the responsibility of administering the funds. This organization, known as the administrative agent (AA), will support the partners authorized to manage and implement the joint programme of activities identified for these funds. Programme and financial accountability for the UN support to the joint programme will rest with the AA. This fund management option is likely to be the most effective and efficient when participating UN organizations work for the same results with a common national or sub- national partner (e.g., department, provincial office, NGO) and/or in the same geographical area (see Annex D.1).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ce0f8598-5fa9-439d-977d-72e8b0bb2451", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 21, + "Paragraph": "Pass-through funding If the integrated DDR programme is made operational through an association between activi- ties and projects to be implemented and/or managed by identified UN agencies or other partners, funding can be still be channelled through a central mechanism. If the donor(s) and participating UN organizations agree to channel the funds through one participating UN organization, then the pass-through method is used. In such a case, the AA would be jointly selected by the DDR coordination committee. Programmatic and financial account- ability should then rest with the participating organizations and (sub-)national partners that are managing their respective components of the joint programme. This approach has the advantage of allowing funding of DDR on the basis of an agreed-upon division of labour within the UN system (see Annex D.2).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8e89cfe6-8506-4dfc-aca6-22e1832e8274", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 21, + "Paragraph": "Cost-sharing Cost-sharing is a procedure for receiving and managing funds for objectives, activities and results within a specific project or programme managed by a single UN agency. Given the relatively higher transaction costs involved in these arrangements, cost-sharing should be used exclusively for: specialized projects not foreseen in the initial programme document; smaller projects for implementation before the main funding mechanisms are established; funding with special arrangements; and projects that serve as a bridge to other processes and programmes and, therefore, require different management arrangements. Although funding is tied to specific projects and UN agencies in this method, its use should nonetheless be governed by the DDR coordination committee and the applicable criteria, procedures and reporting requirements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6374f6c9-8436-4ad0-880b-9f572b62d88f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 7, + "Paragraph": "Trust funds A trust fund is a mechanism used to receive and manage donor funds to achieve a broad aim as opposed to carrying out a specific project. As such, it is established as a separate accounting entity with a designated trust fund manager (an AA, in this case), as well as a governance structure that decides on the allocation of received funding, and is responsible for monitoring and evaluating how funds have been used. When located within an overall funding structure, these structures would be linked or merged with the coordination com- mittee and its respective subsidiary organs. In general, funds channeled through a trust fund are not initially allocated to a particular project and can therefore later be allocated to spe- cific projects or activities working to achieve the broad aim of the programme, based on the discretion of the DDR funding structure and the programme of work the trust fund is supposed to support, which can be a part of the overall DDR programme (e.g., covering reintegration activities specifically). In the area of DDR, both the UN (through UNDP) and the World Bank have established and managed trust funds. Experience has shown that the use of trust funds for DDR offers several advantages, including: the ability to rapidly mobilize and disburse voluntary funding (especially where up- front financing is available); decentralized decision-making and management systems (where trust funds are country- specific); the capacity to ensure broad national oversight and ownership, through national leader- ship of the trust fund governance structure; the capacity to ensure sustainability and continuity (by not being linked to the opera- tional presence of any one organization); unified donor coordination and funding structures so that gaps and duplication in funding, and inconsistency in policy advice, are avoided; implementation and funding methods that create transparency and accountability and bring about efficient and prompt delivery.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a17c2467-ba7b-4b78-93c1-fd98fb37334b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 22, + "Paragraph": "Fund allocation criteria Funds will be allocated on the basis of a set of criteria dealing with programme objectives, activities and results, among others, which will be used by the technical and project appraisal committees when they consider individual requests for funding by UN agencies and other implementing partners. Criteria can vary depending on the funding mechanism (e.g., a reintegration trust fund will consider only those proposals directly centred on reintegration). Generic categories of criteria can include: links to the general thematic sector and/or programme objective(s); the capacity and demonstrated results of the proposing organization; the strength of the technical proposal; cost-efficiency; the involvement of national and local stakeholders; the results that can be achieved.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a0fc0757-7ac0-4358-a87d-644fe78309b8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 22, + "Paragraph": "Coordination of planning, monitoring and reporting In order to ensure that the DDR funding structure reflects the overall strategic direction and substantive content of the integrated DDR programme, all funding decisions and criteria should be based, as far as possible, on the planning, results, and monitoring and evaluation frameworks of the DDR programme and action plan. For this reason, DDR planning and programme officers should participate at all levels of the fund management structure, and the same information management systems should be used. Changes to programme strat- egy should be immediately reflected in the way in which the funding structure is organized and approved by the key stakeholders involved. With respect to financial monitoring and reporting, the members of the funding facility secretariat should maintain close links with the monitoring and evaluation staff of the integrated DDR section, and use the same metho- dologies, frameworks and mechanisms as much as possible.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-3.42-Personnel-and-Staffing.json b/src/Static/data/json/IDDRS-3.42-Personnel-and-Staffing.json new file mode 100644 index 0000000..628168c --- /dev/null +++ b/src/Static/data/json/IDDRS-3.42-Personnel-and-Staffing.json @@ -0,0 +1,971 @@ +[ + { + "ID": "14a0eafa-09d1-4c8f-bb2b-77c6a7c98136", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": null, + "Paragraph": "Summary Creating an effective disarmament, demobilization and reintegration (DDR) unit requires paying careful attention to a set of multidimensional components and principles. The main components of an integrated DDR unit are: political and programme management; overall DDR planning and coordination; monitoring and evaluation; public information and sen sitization; administrative and financial management; and setting up and running regional DDR offices. Each of these components has specific requirements for appropriate and well trained personnel. As the process of DDR includes numerous crosscutting issues, personnel in an inte grated DDR unit include individuals from varying work sectors and specialities. Therefore, the selection and maintenance of integrated DDR unit personnel, based on a memorandum of understanding (MoU) between the Department of Peacekeeping Operations (DPKO) and the United Nations Development Programme (UNDP), is defined by the following principles: joint management of the DDR unit (in this case, management by a peacekeeping mission chief and UNDP chief); secondment of an administrative and finance cell by UNDP; second ment of staff from other United Nations (UN) entities assisted by project support staff to fulfil the range of needs for an integrated DDR unit; and, finally, continuous links with other parts of the peacekeeping mission for the development of a joint DDR planning and programming approach.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "56273030-3034-46ec-9aba-b35659cb5bcd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": null, + "Paragraph": "Module scope and objectives The aim of this module is to explain: the role of an integrated DDR unit in a peacekeeping mission; personnel requirements of the DDR unit; the recruitment and deployment process; training opportunities for DDR practitioners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "749f6a73-5970-4ec1-adce-8df21c66f11f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": null, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of the abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. 1.20 \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c40e945a-8a4e-4c51-8457-d45890d6a30f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 4, + "Paragraph": "Introduction The success of a DDR strategy depends to a great extent on the timely selection and appoint ment of qualified, experienced and appropriately trained personnel deployed in a coherent DDR organizational structure. To ensure maximum cooperation (and minimize duplication) among the many UN agencies, funds and programmes working on DDR, the UN adopts an integrated approach towards the establishment of a DDR unit.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "95cb9b42-a622-4da3-b2c4-d694dc50fec6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 4, + "Paragraph": "Guiding principles The design of the personnel structure, and the deployment and management of personnel in the integrated unit and how they relate to others working in DDR are guided by the 2.10\tprinciples, key considerations and approaches defined in IDDRS 2.10 on the UN Approach to DDR. Of particular importance are: Unity of effort: The peacekeeping mission, UN agencies, funds and programmes should work together at all stages of the DDR programme \u2014 from planning to implementa tion to evaluation \u2014 to ensure that the programme is successful. An appropriate joint planning and coordination mechanism must be established as early as possible to ensure cooperation among all UN partners that may be involved in any aspect of the DDR programme; Integration: Wherever possible, and when consistent with the mandate of the Security Council, the peacekeeping mission and the UN agencies, funds and programmes shall support an integrated DDR unit, which brings together the expertise, planning and coordination capacities of the various UN entities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "ff61e251-b3c1-4fd9-a2e2-bd4231fe7384", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 4, + "Paragraph": "The aim of the integrated unit The aim of establishing an integrated unit is to ensure joint planning and coordination, and effective and efficient decentralized implementation. The integrated DDR unit also employs the particular skills and expertise of the different UN entities to ensure flexibility, responsiveness, expertise and success for the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "40cc114e-4f48-437b-ab50-cc7a1cffdc0f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 4, + "Paragraph": "Components of the integrated DDR unit The integrated DDR unit, in general terms, should fulfil the following functions: Political and programme management: The chief and deputy chief of the integrated DDR unit are responsible for the overall political and programme management. Both the chief and his/her deputy will work to ensure that the DDR programme supports the overall peace process and mission objectives, and that there is close cooperation and collaboration with national stakeholders and other implementing partners, such as other UN entities, international organizations, nongovernmental organizations (NGOs) and the donor community; Overall DDR planning and coordination: This component of the DDR unit is responsible for the overall development of the DDR programme. Seconded personnel from UN agencies, funds and programmes will work in this section to contribute to the joint planning and coordination of the DDR programme. Attached military and police per sonnel from within the mission will also form part of this component; Disarmament and demobilization: This component will be responsible for the overall implementation and management of all aspects of the disarmament and demobilization phases of the DDR programme. This includes shortterm disarmament activities, such as weapons collection and registration, but also longerterm disarmament activities that support the establishment of a legal regime for the control of small arms and light weapons, and other community weapons collection initiatives. Where mandated, this component will coordinate with the military to assist in the destruction of weapons, ammunition and unexploded ordnance; Reintegration: This component plans the economic and social reintegration strategies. It also plans the reinsertion programme to ensure consistency and coherence with the overall reintegration strategy. It needs to work closely with other parts of the mission facilitating the return and reintegration of internally displaced persons (IDPs) and refugees; Monitoring and evaluation: This component is responsible for setting up and monitoring indicators to measure the achievements in all phases of the DDR programme. It also conducts DDRrelated surveys such as small arms baseline surveys, profiling of parti cipants and beneficiaries, mapping of economic opportunities, etc.; Public information and sensitization: This component works to develop the public informa tion and sensitization strategy for the DDR programme. It draws on the direct support of the public information unit in the peacekeeping mission, but also employs other information dissemination personnel within the mission, such as the military, police and civil affairs officers, as well as local mechanisms such as theatre groups, adminis trative structures, etc.; Administrative and financial management: This is a small component of the unit, which may be seconded from an integrating UN entity to support the programme delivery aspect of the DDR unit. Its role is to utilize the administrative and financial capacities of the UN country office; Regional DDR offices: These are the regional implementing components of the DDR unit, which would implement programmes at the local level in close cooperation with the other regionalized components of civil affairs, military, police, etc.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "31beca06-d57f-4dcf-b9ed-81d46a264432", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 5, + "Paragraph": "Principles of integration DPKO and UNDP are in the process of developing an MoU on the establishment of an integrated DDR unit in a peacekeeping mission. For the time being, the following principles shall guide the establishment of the integrated DDR unit: Joint management of the DDR unit: The chief of the DDR unit shall come from the peace keeping mission. His/Her post shall be funded from the peacekeeping assessed budget. The deputy chief of the integrated DDR unit shall be seconded from UNDP, although the peacekeeping mission will provide him/her with administrative and logistic support for him/her to perform his/her function as deputy chief of the DDR unit. Such integration allows the DDR unit to use the particular skills of both the mission and the country office, maximizing existing local knowledge and ensuring a smooth transition on DDRrelated issues when the mandate of the peacekeeping mission ends; Administrative and finance cell from UNDP: UNDP shall second a small administrative and finance cell from its country office to support the programme delivery aspects of the DDR component. The principles of secondment use for the deputy chief of the DDR unit shall apply; Secondment of staff from other UN entities: In order to maximize coherence and coordina tion on DDR between missions and UN agencies, staff members from other agencies may be seconded to specific posts in the integrated DDR unit. Use of this method ensures the active engagement and participation of UN agencies in strategic policy decisions and coordination of UN DDR activities (including both mission operational support and programme implementation). The integration and colocation of UN agency staff in this structure are essential, given the complex and highly operational nature of DDR. Decisions on secondment shall be made at the earliest stages of planning to ensure that the proper budgetary support is secure to support the integrated DDR unit and the seconded personnel; Project support units: Core UN agency staff seconded to the integrated DDR unit may be complemented by additional project support staff located in project support units (PSUs) in order to provide capacity (programme, monitoring, operations, finance) for implementing key elements of UN assistance within the national planning and pro gramme framework for DDR. The PSU will also be responsible for ensuring links and coordination with other agency programme areas (particularly in rule of law and security sector reform). Additional PSUs managed by other UN agencies can also be established, depending on the implementation/operational role attributed to them; Links with other parts of the peacekeeping mission: The integrated DDR unit shall be closely linked with other parts of the peacekeeping mission, in particular the military and the police, to ensure a \u2018joinedup\u2019 approach to the DDR programme.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "123dd998-7b26-49fc-bd49-0399f837c900", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 6, + "Paragraph": "Personnel requirements of the DDR unit In line with the wideranging functions of the integrated DDR unit, the list below gives typical (generic) appointments that may be made in a DDR unit. Regardless of the size of the DDR programme, appointments of staff concerned with joint planning and coordination will remain largely the same, although they need to be consistent with the specific DDR mandate provided by the Security Council. The regional offices and the personnel requirement in these offices will differ, however, according the size of the DDR programme. The list below provides an example of a relatively large mission DDR unit appointment list, which may be adapted to suit missionspecific needs. 2 x NS\tdrivers/interpreters", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dca0ee90-9a64-4a63-9e18-79c3e03e3e26", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 8, + "Paragraph": "Recruitment and deployment process Given the breadth and scope of DDR activities, staff members may come from a number of sources such as: peacekeeping missions; UN agencies, funds and programmes; UN Headquarters; UN volunteer system; other international organizations (World Bank, European Union, Organization for Secu rity and Cooperation in Europe, etc.); local and international NGOs; the private sector.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d8ede8f3-ace8-4a99-b649-e31a8e3ea415", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 8, + "Paragraph": "Personnel Management and Support Service The Personnel Management and Support Service (PMSS) in the Office of Mission Support is responsible for the recruitment and deployment of staff in a peacekeeping mission, with the exception of staff seconded from UN agencies (who will follow their own recruitment procedures).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "22701237-3745-4cdc-9781-11969dcaf0cc", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 8, + "Paragraph": "Recruitment process The typical recruitment process for a staff member in the mission is as follows: candidate applies on line to a generic vacancy announcement in the Galaxy system (http://www.jobs.un.org); PMSS screens applications to select candidates who meet all the requirements of the post, and includes them in a roster of candidates for that occupational group/level; mission chief civilian personnel officer identifies the vacancy and requests recruitment action from PMSS; PMSS makes available to the mission rosters of prescreened and technically cleared candidates; mission programme manager interviews candidates and recommends selection; PMSS commences recruitment action (e.g., reference checks, offer of appointment, medical clearance, travel arrangements, etc.).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3d38888a-7600-4d63-815a-759f49d74ff1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 9, + "Paragraph": "Staff induction plan At the planning stages of the mission, the DDR programme manager should develop the staff induction plan for the DDR unit. The staff induction plan specifies the recruitment and deployment priorities for the personnel in the DDR unit, who will be hired at different times during the mission startup period. The plan will assist the mission support compo nent to recruit and deploy the appropriate personnel at the required time. The following template may be used in the development of the staff induction plan:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8d6c44e4-d524-477c-95ae-6f3e757e8c42", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 9, + "Paragraph": "DDR training strategy A training strategy will be developed as soon as possible to assist staff members at every level in the DDR unit to advance their professional knowledge of DDR, and assist them to gain access to the more general leadership and management training available through the civilian training and development section.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e3ffd1b2-65e9-4a33-9372-a2a6cce7ed79", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile Chief, DDR Unit (D1\u2013P5) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent normally reports directly to the Deputy SRSG (Resident Coordinator/ Humanitarian Coordinator). Accountabilities: Within limits of delegated authority and under the supervision of the Deputy SRSG (Resident Coordinator/Humanitarian Coordinator), the Chief of the DDR Unit is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) provide effective leadership and ensure the overall management of the DDR Unit in all its components; provide strategic vision and guidance to the DDR Unit and its staff; coordinate activities among international and national partners on disarmament, demo bilization and reintegration; develop frameworks and policies to integrate civil society in the development and implementation of DDR activities; account to the national disarmament commission on matters of policy as well as peri odic updates with regard to the process of disarmament and reintegration; advise the Deputy SRSG (Humanitarian and Development Component) on various aspects of DDR and recommend appropriate action; advise and assist the government on DDR policy and operations; coordinate and integrate activities with other components of the mission on DDR, notably communications and public information, legal affairs, policy/planning, civilian police and the military component; develop resource mobilization strategy and ensure coordination with donors, includ ing the private sector; be responsible for the mission\u2019s DDR programme page in the UN DDR Resource Centre to ensure uptodate information is presented to the international community. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "23cf11e5-6ba1-4325-bff7-8150c4debdad", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Vision: Identifies and defines strategic direction for the unit\u2019s work programme; ability to recognize requirements and translate requirements into programmes and services that achieve objectives and goals. Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations; strong negotiating skills; proven critical thinking skills. Leadership: Proven ability to provide effective leadership and transfer advice and knowl edge to staff at all levels and from different national and cultural backgrounds. Managing performance: Proven effective supervisory skills; ability to mentor staff and provide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, coor dinate and monitor own work plan and provide advice and guidance to others. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/problems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes and services, offer new and different options to solve problems/meet client needs. Communications: Excellent communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating positions on issues, articulating options, concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Excellent interpersonal skills and the ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e7ee45e7-d8ba-4ef4-88bb-00982b957b50", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree (Masters or equivalent) in social sciences, manage ment, economics, business administration, international development or other relevant fields. Experience: Minimum of 10 years of progressively responsible professional experience in peacekeeping and peacebuilding operations in the field of DDR of excombatants, including extensive experience in working on small arms reduction programmes. Detailed knowledge of development process and postconflict related issues particularly on the DDR process. Additional experience in developing support strategies for IDPs, refugees, disaffected popu lations, children and women in postconflict situations will be valuable. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9fd4fe45-4c01-4c33-a149-6cf02eedf259", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile Deputy Chief, DDR Unit (P5\u2013P4) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent reports directly to the Deputy SRSG (Resident Coordinator/Humani tarian Coordinator). In most cases, the staff member filling this post would be seconded and paid for by UNDP. For duration of his/her secondment as Deputy Chief, he/she will receive administrative and logistic support from the peacekeeping mission. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Deputy Chief is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) assist Chief of DDR Unit in the overall management of the DDR Unit in all its components; support Chief of DDR Unit in the overall daytoday supervision of staff and field operations; support Chief of DDR Unit in the identification and development of synergies and partnerships with other actors (national and international) at the strategic, technical and operational levels; support Chief of DDR Unit in resource mobilization and ensure coordination with donors, including the private sector; provide technical advice and support to the national disarmament commission and programme as necessary; act as the programmatic linkage to the work of the UN country team on the broader reintegration and development issues of peacebuilding; provide overall coordination and financial responsibility for the programming and implementation of UNDP funds for disarmament and reintegration; oversee the development and coordination of the implementation of a comprehensive socioeconomic reintegration framework for members of armed forces and groups taking advantage of existing or planned recovery and reconstruction plans; oversee the development and coordination of the implementation of a comprehensive national capacity development support strategy focusing on weapons control, manage ment, stockpiling and destruction; support Chief of DDR Unit in all other areas necessary for the success of DDR activities. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "352ff7bf-f56b-42d1-8dea-d16fa9aadc35", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Vision: Identifies and defines strategic direction for the unit\u2019s work programme; ability to recognize requirements and translate requirements into programmes and services that achieve objectives and goals. Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations; strong negotiating skills; proven critical thinking skills. Leadership: Proven ability to provide effective leadership and transfer advice and knowl edge to staff at all levels and from different national and cultural backgrounds. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, coor dinate and monitor own work plan and provide advice and guidance to others. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/problems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes and services, offer new and diff erent options to solve problems/meet client needs. Communications: Excellent communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating positions on issues, articulating options concisely, conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Excellent interpersonal skills and the ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "740fde42-72d4-4934-86b4-6e5500c1f3a5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree (Masters or equivalent) in social sciences, manage ment, economics, business administration, international development or other relevant fields. Experience: Minimum of 10 years of progressively responsible professional experience in peacekeeping and peacebuilding operations in the field of DDR of excombatants, including extensive experience in working on small arms reduction programmes. Detailed knowledge of development process and postconflict related issues, particularly on the DDR process. Additional experience in developing support strategies for IDPs, refugees, disaffected popu lations, children and women in postconflict situations will be valuable. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a5832bfb-a97f-48b0-afe7-7203fa2f092a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile Senior Military DDR Officer (Lieutenant-Colonel/Colonel) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Senior Military DDR Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) support the overall DDR plan, specifically in the strategic, functional and operational areas relating to disarmament and demobilization; direct and supervise all military personnel appointed to the DDR Unit; ensure direct liaison and coordination between DDR operations and the military head quarters, specifically the Joint Operations Centre; ensure accurate and timely reporting of security matters, particularly those likely to affect DDR tasks; provide direct liaison, advice and expertise to the Force Commander relating to DDR matters; assist Chief of DDR Unit in the preparation and planning of the DDR strategy, provid ing military advice, coordination between subunits and civilian agencies; liaise with other mission military elements, as well as national military commanders and, where appropriate, those in national DDR bodies; supervise the development of appropriate mechanisms and systems for the registration and tracking of weapons collection, registration, storage and disposal/destruction, etc.; coordinate and facilitate the use of mission forces for the potential construction or development of DDR facilities \u2014 camps, reception centres, pickup points, etc. As required, facilitate security of such locations; assist in the coordination and development of DDR Unit mechanisms for receiving and recording group profile information, liaise on this subject with the military information unit; liaise with military operations for the deployment of military observers in support of DDR tasks; be prepared to support security sector reform linkages and activities in future mission planning; undertake such other tasks as may be reasonably requested by the Force Commander and Chief of DDR Unit in relation to DDR activities. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "379fc98b-1e65-40c4-980b-082e5bb1af8e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Should be formally staff trained and command qualified. Ideally experi enced in other peacekeeping operations, specifically in relation to DDR activities. The selected candidate should be well acquainted with regional and subregional conflict/political issues and ideally have knowledge of the specific mission background. Managing performance: Proven effective command and supervisory skills; ability to mentor staff and provide guidance and support. Must be capable of working within a multiagency integrated team. The candidate would benefit from CIMIC experience and should have an understanding of the nature, capacities and limitations of nonUN agencies, NGOs, etc. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness, sound judgement and decisionmaking skills. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/problems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Excellent and effective communication (verbal and written) skills, includ ing ability to prepare reports and conduct presentations by clearly formulating positions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Excellent interpersonal skills; ability to establish and maintain effective work ing relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5b0d4965-8445-4415-9b3a-24221f2c3fbb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education and work experience: Graduate of Military Command and Staff College. A minimum of 15 years of progressive responsibility in military command appointments, preferably to include peacekeeping and peacebuilding operations in the field of DDR of excombatants. Detailed knowledge of development process and postconflict related issues, particularly on the DDR process. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9b21ce20-69d2-44bd-a83c-10aea165460f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Field Officer (P4\u2013P3) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the DDR Field Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) be in charge of the overall planning and implementation of the DDR programme in his/her regional area of responsibility; act as officer in charge of all DDR staff members in the regional office, including the administration and management of funds allocated to achieve DDR programme in the region; be responsible for the daytoday coordination of DDR operations with other mission components in the regional office and other UN entities; identify and develop synergies and partnerships with other actors (national and inter national) in his/her area of responsibility; provide technical advice and support to regional and local DDR commissions and offices, as appropriate; be responsible for regular reporting on the situation pertaining to the armed forces and groups in his/her area of responsibility and progress on the implementation of the DDR strategy. Prepare and contribute to the preparation of various reports and documents. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "51b853d3-63fa-43a1-9ea4-f683e4288fd3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and provide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "568abcd7-79b9-4e8b-8f25-c2bb7fb5a4a5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Experience: Minimum of five years of substantial experience working on postconflict, crisis and economic recovery issues. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "098fcfb6-697e-412e-95d9-266a51b6bf7b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Field Officer (UNV) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within the limits of delegated authority and under the supervision of the Regional DDR Officer, the DDR Field Officer (UNV) is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) assist the DDR Field Officer in the planning and implementation of one aspect of the DDR programme in his/her regional area of responsibility; be responsible for the daytoday coordination of DDR operations with other mission components in the regional office and other UN entities on the specific area of respon sibility; identify and develop synergies and partnerships with other actors (national and inter national) in his/her area of responsibility; provide technical advice and support to regional and local DDR commissions and offices, as appropriate; be responsible for regular reporting on the situation pertaining to the armed forces and groups in his/her area of responsibility and progress on the implementation of the DDR strategy. Prepare and contribute to the preparation of various reports and documents.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "26333821-b609-4d7c-875f-9c6549b9a232", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Core values are integrity, professionalism and respect for diversity. Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "95dc9153-c51f-4ffe-a544-91e7cc4bc228", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of three years of substantial experience working on postconflict, crisis and economic recovery issues. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2ba79199-b73a-41e5-99ca-ff7285c46238", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Programme Officer (UNV) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit and DDR Field Coordinator, the DDR Programme Officer is respon sible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) work with local authorities and civil society organizations to facilitate and implement all aspects of the DDR programme represent the DDR Unit in mission internal regional meetings; work closely with DDR partners at the regional level to facilitate collection, safe storage and accountable collection of small arms and light weapons. Ensure efficient, account able and transparent management of all field facilities pertaining to communityspecific DDR projects; plan and support activities at the regional level pertaining to the community arms col lection and development including: (1) capacitybuilding; (2) sensitization and public awarenessraising on the dangers of illicit weapons circulating in the community; (3) implementation of community project; monitor, evaluate and report on all field project activities; monitor and guide field staff working in the project, including the coordination of sensitization and arms col lection activities undertaken by Field Assistants at regional level; ensure proper handling of project equipment and accountability of all project resources. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5427dc2c-176f-4662-be33-7b4ca1bd79f1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1871df85-8e07-4ffb-899b-beb758f602aa", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on postconflict, crisis and economic recovery issues. Experience with local development, microcredit and participatory approaches essential. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a1325f80-b4df-49d4-88e5-94c4c0be1be6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Monitoring and Evaluation Officer (P2\u2013UNV) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Monitoring and Evaluation Officer is responsible for the follow ing duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) develop monitoring and evaluation criteria for all aspects of disarmament and reinte gration activities, as well as an overall strategy and monitoring calendar; establish baselines for monitoring and evaluation purposes in the areas related to disarmament and reintegration, working in close collaboration with the disarmament and reintegration officers, to allow for effective evaluations of programme impact; undertake periodic reviews of disarmament and reintegration activities to assess effec tiveness, efficiency, achievement of results and compliance with procedures; develop a field manual on standards and procedures for use by local partners and executing agencies, and organize training; undertake periodic field visits to inspect the provision of reinsertion benefits and the implementation of reintegration projects, and reporting; develop recommendations on ongoing and future activities, lessons learned, modifica tions to implementation strategies and arrangements with partners. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "72c3ce02-3853-4705-91e7-69867edcba3a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7252fb7b-3716-4a7d-b424-97907b36b0cd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of three years of substantial experience working on postconflict, crisis and economic recovery issues. Experience in resultsoriented programming and moni toring and evaluation. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9e2d4ab6-26da-46c4-a031-b4a615343baf", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Officer (P4\u2013P3, International) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the DDR Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) support the Chief and Deputy Chief of the DDR Unit in operational planning for the disarmament, demobilization and reintegration, including developing the policies and programmes, as well as implementation targets and work plans; undertake negotiations with armed forces and groups in order to create conditions for their entrance into the DDR programme; undertake and organize risk and threat assessments, target group profiles, political fac tors, security, and other factors affecting operations; undertake planning of weapons collection activities, in conjunction with the military component of the peacekeeping mission; undertake planning and management of the demobilization phase of the programme, which may include camp management, as well as shortterm transitional support to demobilized combatants; provide support for the development of joint programming frameworks on reintegration with the government and partner organizations, taking advantage of opportunities and synergies with economic recovery and community development programmes; assist in the development of criteria for the selection of partners (local and interna tional) for the implementation of reinsertion and reintegration activities; liaise with other national and international actors on activities and initiatives related to reinsertion and reintegration; supervise the development of appropriate mechanisms and systems for the registration and tracking of beneficiaries for reinsertion and reintegration, as well as mapping of socioeconomic opportunities in other development projects, employment possibili ties, etc.; coordinate and facilitate the participation of local communities in the planning and implementation of reintegration assistance, using existing capacities at the local level and in close synergy with economic recovery and local development initiatives; liaise closely with organizations and partners to develop assistance programmes for vulnerable groups, e.g., women and children; facilitate the mobilization and organization of networks of local partners around the goals of socioeconomic reintegration and economic recovery, involving local NGOs, communitybased organizations, private sector enterprises, and local authorities (com munal and municipal); supervise the undertaking of studies to determine reinsertion and reintegration benefits and implementation modalities; ensure good coordination and information sharing with implementation partners and other organizations, as well as with other relevant sections of the mission; ensure that DDR activities are well integrated and coordinated with the activities of other mission components (particularly communication and public information, mis sion analysis, political, military and police components); perform a liaison function with other national and international actors in matters related to DDR; support development of appropriate legal frameworks on disarmament and weapons control. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "da1b5af6-a8ca-4d5e-8e45-1f18a191b2be", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and provide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c47d01ef-2029-4956-b42c-2b8f61db6cca", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on postconflict, crisis and economic recovery issues. Experience with local development, microcredit and participatory approaches essential. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "07d3d927-767a-49c9-a9d0-2e8be2aac2f5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile Reintegration Officer (P4\u2013P3, International) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Reintegration Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. There fore, incumbents may carry out most, but not all, of the functions listed.) support the development of the registration, reinsertion and reintegration component of the disarmament and reintegration programme, including overall framework, imple mentation strategy, and operational modalities, respecting national programme priori ties and targets; supervise field office personnel on work related to reinsertion and reintegration; assist in the development of criteria for the selection of partners (local and interna tional) for the implementation of reinsertion and reintegration activities; liaise with other national and international actors on activities and initiatives related to reinsertion and reintegration; supervise the development of appropriate mechanisms and systems for the registration and tracking of beneficiaries for reinsertion and reintegration, as well as mapping of socioeconomic opportunities in other development projects, employment possibili ties, etc.; coordinate and facilitate the participation of local communities in the planning and implementation of reintegration assistance, using existing capacities at the local level and in close synergy with economic recovery and local development initiatives; liaise closely with organizations and partners to develop assistance programmes for vulnerable groups, e.g., women and children; facilitate the mobilization and organization of networks of local partners around the goals of socioeconomic reintegration and economic recovery, involving local NGOs, communitybased organizations, private sector enterprises and local authorities (com munal and municipal); supervise the undertaking of studies to determine reinsertion and reintegration benefits and implementation modalities. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d2c316ca-e46b-4bb8-ba61-6b7df49dd6dd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs; Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "253964b9-3d2d-434f-94ef-5bf1247ebc9b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on postconflict, crisis and economic recovery issues. Experience with local development, microcredit and participatory approaches essential. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b4c75a65-fb0c-49a8-87b1-211223809ec0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Field Coordination Officer (National) Under the overall supervision of the Chief of DDR Unit and working closely with the DDR Officer, the Field Coordination Officer carries out the work, information feedback and coordination of field rehabilitation and reintegration activities. The Field Coordination Officer will improve field supervision, sensitization, monitoring and evaluation mechanisms. He/she will also assist in strengthening the working relationships of DDR staff with other peacekeeping mission substantive sections in the field. He/she will also endeavour to strengthen, coordination and collaboration with government offices, the national commis sion on DDR (NCDDR), international NGOs, NGOs (implementing partners) and other UN agencies working on reintegration in order to unify reintegration activities. The Field Coordination Officer will liaise closely with the DDR Officer/Reintegration Officer and undertake the following duties: assist and advise DDR Unit in areas within his/her remit; provide direction and support to field staff and activities; carry out monitoring, risk assessment and reporting in relation to the environment and practices that bear on the security of staff in the field (physical security, accommo dation, programme fiscal and procurement practices, transport and communications); support the efficient implementation of all DDR coordination projects; develop and sustain optimal information feedback, in both directions, between the field and Headquarters; support the DDR Unit in the collection of programme performance information, pro gress and impact assessment; collect the quantitative and qualitative information on programme implementation; carry out followup monitoring visits on activities of implementing partners and regional offices; liaise with excombatants, beneficiaries, implementing partners and referral officer for proper sensitization and reinforcement of the programme; create efficient early warning alert system and rapid response mechanisms for \u2018hot spot\u2019 development; ensure DDR coordination programmes complement each other and are implemented efficiently; support liaison with the NCDDR and other agencies in relation to the reintegration of excombatants, CAAFG, WAAFG and waraffected people in the field; provide guidance and ontheground support to reintegration officers ; liaise with Military Observers, Reintegration Unit and UN Police in accordance with the terms of reference; liaise and coordinate with civil affairs section in matters of mutual interest; carry out any other duties as directed by the DDR Unit.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "336c9dac-dd9d-4289-aaa2-c078fe26eab0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic Job Profile Small Arms and Light Weapons Officer (P4\u2013P3) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Small Arms and Light Weapons Officer is responsible for the follow ing duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) formulate and implement, within the DDR programme, a small arms and light weapons (SALW) reduction and control project for the country in support of the peace process; coordinate SALW reduction and control activities taking place in the country and among the parties, the national government, civil society and the donor community; provide substantive technical inputs and advice to the Chief of the DDR Unit and the national authorities for the development of national legal instruments for the control of SALW; undertake broad consultations with relevant stakeholders through inclusive and par ticipatory processes through communitybased violence and weapons reduction pro gramme; manage the collection of data on SALW stocks during the disengagement and DDR processes; develop targeted training programmes for national institutions on SALW; liaise closely with the gender and HIV/AIDS adviser in the mission or these capacities seconded to the DDR Unit by UN entities to ensure that gender issues are adequately reflected in policy, legislation, programming and resource mobilization, and develop strategies for involvement of women in small arms management and control activities; ensure timely and effective delivery of project inputs and outputs; undertake continuous monitoring of project activities; produce toplevel progress and briefing reports; support efforts in resource mobilization and development of strategic partnerships with multiple donors and agencies. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "42487cee-101c-4672-aba2-3ccad6ce629c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Vision: An indepth understanding of the unit\u2019s strategic direction and ability to transform it into a resultsoriented work programme. Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Leadership: Proven ability to provide effective leadership and transfer advice and knowl edge staff at all levels and from different national and cultural backgrounds. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness, sound judgement and decisionmaking skills. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Excellent and effective communication (verbal and written) skills, includ ing ability to prepare reports and conduct presentations by clearly formulating positions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Excellent interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity. Negotiation skills: Effective negotiating skills and ability to work with others to reach mutually benefiting and lasting understanding.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4af21563-1925-4788-af01-0d4f3675f598", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on postconflict, progressive national and international experience and knowledge in development work, with specific focus on disarmament, demobilization, reintegration and small arms control programmes. An understanding of the literature on DDR and security sector reform. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0caccaf5-422a-42ef-907c-4be170828d9b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Gender Officer (P3\u2013P2) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. This staff member is expected to be seconded from a UN specialized agency working on mainstreaming gender issues in postconflict peacebuilding, and is expected to work closely with the Gender Adviser of the peace keeping mission. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the DDR Gender Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) ensure the full integration of gender through all DDR processes (including small arms) in the DDR programme; provide close coordination and technical support to national institutions for DDR, particularly Offices of Gender, Special Groups and Reintegration; provide support to decisionmaking and programme formulation on the DDR pro gramme to ensure that gender issues are fully integrated and that the programme promotes equal involvement and access of women; undertake ongoing monitoring and evaluation of the DDR process to ensure applica tion of principles of gender sensitivity as stated in the peace agreement; provide support to policy development in all areas of DDR to ensure integration of gender; develop mechanisms to support the equal access and involvement of female combatants in the DDR process; take the lead in development of advocacy strategies to gain commitment from key actors on gender issues within DDR; support national parties in coordinating the profiling, documentation and dissemina tion of data and issues relating to the presence and role of women and girls associated with the armed forces and groups, and militias; review the differing needs of male and female excombatants during communitybased reintegration, including analysis of reintegration opportunities and constraints, and advocate for these needs to be taken into account in DDR and communitybased re integration programming; prepare and provide briefing notes and guidance for relevant actors, including national partners, UN agencies, international NGOs, donors and others, on gender in the con text of DDR; provide technical support and advice on gender to national partners on policy devel opment related to DDR and human security; develop tools and other practical guides for the implementation of gender within DDR and human security frameworks; assist in the development of capacitybuilding activities for the national offices drawing on lessons learned on gender and DDR in the region, and facilitating regional resource networks on these issues; participate in field missions and assessments related to human security and DDR to advise on gender issues. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7a64abe6-58d1-4c61-8e40-97540c70443f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "61f4099e-7846-43ea-a7e8-36844abae706", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on gender issues in postconflict, crisis and economic recovery issues. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5ec3085d-a034-4d32-b22c-8c83fdc33f0a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR HIV/AIDS Officer (P3\u2013P2) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. This staff member is expected to be seconded from a UN specialized agency working on mainstreaming activities to deal with the HIV/ AIDS issue in postconflict peacebuilding, and is expected to work closely with the HIV/ AIDS adviser of the peacekeeping mission. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the DDR HIV/AIDS Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) ensure the full integration of activities to address the HIV/AIDS issue through all phases of the DDR programme; provide close coordination and technical support to national institutions for DDR, par ticularly offices of HIV/AIDS reintegration; support national parties in coordinating the profiling, documentation and dissemina tion of data and issues relating to the presence and role of women and girls associated with the armed forces and groups; document and disseminate data and issues relating to HIV/AIDS as well as the factors fuelling the epidemic in the armed forces and groups; prepare and provide briefing notes and guidance for relevant actors including national partners, UN agencies, international NGOs, donors and others on gender and HIV/ AIDS in the context of DDR; provide technical support and advice on HIV/AIDS to national partners on policy development related to DDR and human security; develop tools and other practical guides for the implementation of HIV/AIDS strategies within DDR and human security frameworks; generate effective resultsoriented partnerships among different partners, civil society and communitybased actors to implement a consolidated response to HIV/AIDS within the framework of the DDR programme. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e6838ebe-b8cd-4a0d-8460-4ba9a33b561e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and re spect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "16ed6bee-46fc-432d-a308-3d8ba372706a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on gender issues in postconflict, crisis and economic recovery issues. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.json b/src/Static/data/json/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.json new file mode 100644 index 0000000..67a16ff --- /dev/null +++ b/src/Static/data/json/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.json @@ -0,0 +1,401 @@ +[ + { + "ID": "7dab686c-fa8b-47b0-b103-005f716c876b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": null, + "Paragraph": "Summary Monitoring and evaluation (M&E) has been one of the weakest areas of disarmament, demo bilization and reintegration (DDR) programme management in the past, partly due to a lack of proper planning, a standardized M&E framework, and human and financial resources specifically dedicated to M&E. Past experiences have highlighted the need for more effective M&E in order to develop an effective, efficient and sustainable DDR programme that will achieve the objectives of improving stability and security. M&E is an essential management tool and provides a chance to track progress, improve activities, objectively verify the outcomes and impact of a programme, and learn lessons that can be fed into future programmes and policies. This module outlines standards for improving interagency cooperation in designing and conducting effective M&E. It further shows how M&E can be planned and implemented effectively through a creation of a DDR specific M&E work plan, which consists of a plan for data collection, data analysis and reporting. It also provides some generic M&E indicators within a resultsmanagement frame work, which can be modified and adapted to each programme and project.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ab60e014-fb5e-4c86-92be-87ec45dfa7c1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": null, + "Paragraph": "Module scope and objectives These guidelines cover the basic M&E procedures for integrated DDR programmes. The purpose of these guidelines is to establish standards for managing the implementation of integrated DDR projects and to provide guidance on how to perform M&E in a way that will make project management more effective, lead to followup and make reporting more consistent.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "42aab5bd-6704-49d1-95e9-8f07f3b067d9", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 16, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A com plete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d 1.20", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9261dd46-e43a-4811-9a8e-c8533500b60f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 4, + "Paragraph": "Introduction Traditionally, M&E in DDR programmes has focused on assessing inputs and implemen tation processes. Today, the focus is on assessing how various factors contribute to or detract from the achievement of the proposed outcomes and programme objectives, and measur ing the effectiveness of outputs, partnerships, policy advice and dialogue, advocacy, and brokering/coordination. The main objectives of resultsoriented M&E are to: increase organizational and development learning; ensure informed decisionmaking; support genuine accountability and ensure quality control; contribute to the further development of best practice and policy; build country capacities, especially in M&E. In order to enable programme managers to improve strategies, programmes and other activities, M&E aims to generate information in several key areas to allow the measure ment of: programme performance, which indicates whether programme implementation is pro ceeding in accordance with the programme plan and budget; programme effectiveness, which answers such questions as whether and to what extent the programme has achieved its objectives, and on what external conditions it depends; programme efficiency, which determines whether programme outputs and outcomes were produced in the most economical way, i.e., by maximizing outputs and/or mini mizing inputs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "36827bfa-654f-40fc-9e38-c375e2e4c9a0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 4, + "Paragraph": "Guiding principles When developing an M&E strategy as part of the overall process of programme development, several important principles are relevant for DDR: Planners shall ensure that baseline data (data that describes the problem or situation before the intervention and which can be used to later provide a point of comparison) and relevant performance indicators are built into the programme development process itself. Baseline data are best collected within the framework of the comprehensive assess ments that are carried out before the programme is developed, while performance indicators are defined in relation to both baseline data and the outputs, activities and outcomes that are expected; The development of an M&E strategy and framework for a DDR programme is essen tial in order to develop a systematic approach for collecting, processing, and using data and results; M&E should use information and data from the regular information collection mech anisms and reports, as well as periodic measurement of key indicators; Monitoring and data collection should be an integral component of the information management system for the DDR process, and as such should be made widely available to key DDR staff and stakeholders for consultation; M&E plans specifying the frequency and type of reviews and evaluations should be a part of the overall DDR work planning process; A distinction should be made between the evaluation of UN support for national DDR (i.e., the UN DDR programme itself) and the overall national DDR effort, given the focus on measuring the overall effectiveness and impact of UN inputs on DDR, as opposed to the overall effectiveness and impact of DDR at the national level; All integrated DDR sections should make provision for the necessary staff, equipment and other requirements to ensure that M&E is adequately dealt with and carried out, independently of other DDR activities, using resources that are specifically allocated to this purpose.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c6322a11-be7a-4e31-b7a6-1fce6031eba6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 5, + "Paragraph": "Developing an M&E strategy and framework for DDR M&E is far more than periodic assessments of performance. Particularly with complex processes like DDR, with its diversity of activities and multitude of partners, M&E plays an important role in ensuring constant qual ity control of activities and processes, and it also provides a mechanism for periodic evaluations of performance in order to adapt strategies and deal with the problems and bottlenecks that inevitably arise. Because of the political importance of DDR, and its po tential impacts (both positive and negative) on both security and prospects for develop ment, impact assessments are essential to ensuring that DDR contributes to the overall goal of improving stability and security in a particular country. The definition of a comprehensive strat egy and framework for DDR is a vital part of the overall programme implementation process. Although strategies will differ a great deal in different contexts, key guiding questions that should be asked when designing an effec tive framework for M&E include: What objectives should an M&E strategy and framework measure? What elements should go into a work plan for reporting, monitoring and evaluating performance and results? What key indicators are important in such a framework? What information management systems are necessary to ensure timely capture of appro priate data and information? How can the results of M&E be integrated into programme implementation and used to control quality and adapt processes? The following section discusses these and other key elements involved in the develop ment of an M&E work plan and strategy.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ac83f7d5-dd33-4388-9853-c9394c0908f2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 5, + "Paragraph": "M&E and results-based management M&E is an essential part of the resultsbased approach to implementing and managing programmes. It allows for the measurement of progress made towards achieving outcomes and outputs, and assesses the overall impact of programme on security and stability. In the context of DDR, M&E is particularly important, because it helps keep track of a complex range of outcomes and outputs in different components of the DDR mission, and assesses how each contributes towards achieving the goal of improved stability and security. M&E also gives a longitudinal assessment of the efficiency and effectiveness of the strat egies, mechanisms and processes carried out in DDR. For the purposes of integrated DDR, M&E can be divided into two levels related to the resultsbased framework: measurement of the performance of DDR programmes in achieving outcomes and outputs throughout its various components generated by a set of activities: disarma ment (e.g., number of weapons collected and destroyed); demobilization (number of excombatants screened, processed and assisted); and reintegration (number of ex combatants reintegrated and communities assisted); measurement of the outcomes of DDR programmes in contributing towards an overall goal. This can include reductions in levels of violence in society, increased stability and security, and consolidation of peace processes. It is difficult, however, to determine the impact of DDR on broader society without isolating it from other processes and initiatives (e.g., peacebuilding, security sector reform [SSR]) that also have an impact.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d05637dd-ab21-4b39-8fb6-b7145085fb50", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 7, + "Paragraph": "Integrating M&E in programme development and implementation Provisions for M&E, and in particular the key elements of a strategy and framework, should be integrated into the programme development and implementation process from the beginning. This should occur in the following ways: Performance indicators relevant for M&E should be identified, together with the devel opment of a baseline study and indicators framework for the comprehensive assessment, as well as the results framework for the DDR programme itself (see IDDRS 3.20 on DDR Programme Design for advice on the development of a results framework); Requirements for establishing and implementing an M&E system should be taken into consideration during the identification of programme requirements, including dedicated staff, material and information management systems; Key aspects of the M&E system and activities should be developed and harmonized with the overall programme implementation cycle and included in the corresponding work plans; Programme implementation methods should be designed to permit the analysis and incorporation of M&E results into planning and coordination of activities in order to provide programmes with the capacity to modify the implementation approach based on M&E results and lessons learned.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "14155340-e009-4679-b5ae-30c6a5592c2e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 7, + "Paragraph": "The M&E work plan An M&E work plan can be integrated into general or specific programme implementation work plans, or can be designed separately. In general, implementing and supervising the implementation of such a work plan is the basic responsibility of the M&E officer respon sible for this process. Key elements of an M&E work plan include the following, which are usually arranged in the form of a matrix: 3.20", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f305246-254a-4b89-bfad-441c4edfffa0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 8, + "Paragraph": "M&E tracking systems Given the potentially large number of reports and documents generated by M&E activities, the development and maintenance of a reporttracking system is essential in order to pro vide a \u2018history\u2019 of M&E results and make them accessible to managers. This provides the DDR programme with institutional memory that can be drawn from to monitor progress and ensure that emerging best practices and problems are identified.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "310b1f16-83d9-409b-89c7-cd0ab6ff465f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 8, + "Paragraph": "Development of M&E indicators Indicators are variables (i.e., factors that can change, e.g., number of weapons collected) that should be measured to reveal progress (or lack thereof) towards the achievement of objectives, outcomes or outputs, and should provide information on what has been achieved in either quantitative or qualitative terms, or changes over time. In order for indicators to be meaningful, measurement must be made against a baseline, or baseline data, both of which are collected either in the context of the preprogramme comprehensive assessment or during programme implementation. In general, most indicators should be developed together with the definition of programme activities, outputs, outcomes, objectives and goals. In general, indicators can be classified as follows: Performance indicator: A particular characteristic or dimension used to measure intended changes defined by a programme results framework. Performance indicators are used to observe progress and to measure actual outputs and outcomes compared to those that were expected. They indicate \u2018how, \u2018whether\u2019 or \u2018to what extent\u2019 a unit is pro gressing towards its objectives, rather than \u2018why\u2019 or \u2018why not\u2019 such progress is being made. Performance indicators are usually expressed in quantifiable terms, and should be objective and measurable (e.g., numeric values, percentages, scores and indices); Impact indicator: A variable or set of variables used to measure the overall and long term impact of an intervention, i.e., overall changes in the environment that DDR aims to influence. Impact indicators often use a composite set (or group) of indicators, each of which provides information on the size, sustainability and consequences of a change brought about by a DDR intervention. Such indicators can include both quan titative variables (e.g., change in homicide levels or incidence of violence) or qualitative variables (e.g., behavioural change among reintegrated excombatants, social cohesion, etc.). Impact indicators depend on comprehensive and reliable baseline data, and should be as specific in possible in order to isolate the impact of DDR on complex social and economic dynamics from other factors and processes; Proxy indicators: Cost, complexity and/or the timeliness of data collection may prevent a result from being measured directly. In this case, proxy indicators \u2014 which are variables that substitute for others that are difficult to measure directly \u2014 may reveal performance trends and make managers aware of potential problems or areas of success. This is often the case for outcomes in behavioural change, social cohesion and other results that are difficult to measure.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "32e92671-8eca-4f3f-bf0b-ea002b6d3326", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 8, + "Paragraph": "Balanced scorecards The balanced scorecard is a useful tool for capturing key indicators for M&E activities. It lists the main indicators used to measure progress in the implementation of different pro gramme components, as well as overall effectiveness. Annex B provides an example of a balanced scorecard used in the Afghanistan DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2b12aa55-6e32-4961-9b07-5f49f09b6002", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 6, + "Paragraph": "Monitoring Monitoring is the systematic oversight of the implementation of an activity, and establishes the extent to which input deliveries, work schedules, other required actions and targeted outputs are proceeding according to the actual plan, so that timely action can be taken to correct deficiencies. The application of monitoring mechanisms and tools, the reporting of outcomes, and subsequent adjustments in the implementation process are an integral part of the programme cycle and a key management tool.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "594a5f36-09dc-48bf-8526-65c116ce4308", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 9, + "Paragraph": "Monitoring mechanisms and tools Three types of monitoring mechanisms and tools can be identified, which should be planned as part of the overall M&E work plan: reporting/analysis, which entails obtaining and analysing documentation from the project that provides information on progress; validation, which involves checking or verifying whether or not the reported progress is accurate; participation, which involves obtaining feedback from partners and participants on pro gress and proposed actions. The table below lists the different types of monitoring mechanisms and tools according to these categories, while Annex C provides illustrations of monitoring tools used for DDR in Afghanistan. Source: UNDP Evaluation Handbook Monitoring indicators1 Although the definition of monitoring indicators will differ a great deal according to both the context in which DDR is implemented and the DDR strategy and components, certain generic (general or typical) indicators should be identified that can guide DDR managers to establish monitoring mechanisms and systems. These indicators should aim to measure performance in terms of outcomes and outputs, effectiveness in achieving programme objec tives, and the efficiency of the performance by which outcomes and outputs are achieved (i.e., in relation to inputs). (See IDDRS 5.10 on Women, Gender and DDR, Annex D, sec. 4 for genderrelated and femalespecific monitoring and evaluation indicators.) These indica tors can be divided to address the main components of DDR, as follows: 5.10", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "32973d14-ea2e-4b80-b4e0-88ddb62e843d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 11, + "Paragraph": "6.3. Use of monitoring results In general, the results of monitoring activities and tools should be used in three different ways to improve overall programme effectiveness and increase the achievement of objec tives and goals: Programme management: Monitoring outputs and outcomes for specific components or activities can provide important information about whether programme implementa tion is proceeding in accordance with the programme plan and budget. If results indicate that implementation is \u2018off course\u2019, these results provide DDR management with infor mation on what corrective action needs to be taken in order to bring implementation back into conformity with the overall programme implementation strategy and work plan. These results are therefore an important management tool; Revision of programme strategy: Monitoring results can also provide information on the relevance or effectiveness of an existing strategy or course of action to produce specific outcomes or achieve key objectives. In certain cases, such results can demonstrate that a given course of action is not producing the intended outcomes and can provide DDR managers with an opportunity to reformulate or revise specific implementation strategies and approaches, and make the corresponding changes to the programme work plan. Examples include types of reintegration assistance that are not viable or appro priate to the local context, and that can be corrected before many other excombatants enter similar schemes; Use of resources: Monitoring results can provide important indications about the effi ciency with which resources are used to implement activities and achieve outcomes. Given the large scale and number of activities and subprojects involved in DDR, overall costeffectiveness is an essential element in ensuring that DDR programmes achieve their overall objectives. In this regard, accurate and timely monitoring can enable programme managers to develop more costeffective or efficient uses and distri bution of resources.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "369a69f5-421e-499d-9f3d-0c5b13d5341b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 5, + "Paragraph": "Evaluations As described earlier, evaluations are a method of systematically and objectively assessing the relevance, efficiency, sustainability, effectiveness and impact of ongoing and completed programmes and projects. Evaluation is carried out selectively to answer questions that will guide decision makers and/or programme managers. It is a valuable strategic manage ment tool enabling DDR managers and policy makers to assess the overall role and impact of DDR in a postconflict setting, make strategic decisions, generate important lessons for future programmes and contribute to the refinement of international policy.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a51943d6-ecb3-4ee2-a4cd-e471135a4e56", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 11, + "Paragraph": "Establishing evaluation scope The scope or extent of an evaluation, which determines the range and type of indicators or factors that will be measured and analysed, should be directly linked to the objectives and purpose of the evaluation process, and how its results, conclusions and proposals will be used. In general, the scope of an evaluation varies between evaluations that focus primarily on \u2018impacts\u2019 and those that focus on broader \u2018outcomes\u2019: Outcome evaluations: These focus on examining how a set of related projects, programmes and strategies brought about an anticipated outcome. DDR programmes, for instance, contribute to the consolidation of peace and security, but they are not the sole pro gramme or factor that explains progress in achieving (or not achieving) this outcome, owing to the role of other programmes (SSR, police training, peacebuilding activities, etc.). Outcome evaluations define the specific contribution made by DDR to achieving this goal, or explain how DDR programmes interrelated with other processes to achieve the outcome. In this regard, outcome evaluations are primarily designed for broad comparative or strategic policy purposes. Example of an objective: \u201cto contribute to the consolidation of peace, national security, reconciliation and development through the disarmament, demobilization and reintegration of excombatants into civil society\u201d; Impact evaluations: These focus on the overall, longerterm impact, whether intended or unintended, of a programme. Impact evaluations can focus on the direct impacts of a DDR programme \u2014 e.g., its ability to successfully demobilize entire armies and decrease the potential for a return to conflict \u2014 and its indirect impact in helping to increase economic productivity at the local level, or in attracting excombatants from neighbouring countries where other conflicts are occurring. An example of an objective of a DDR programme is: \u201cto facilitate the development and environment in which ex combatants are able to be disarmed, demobilized and reintegrated into their communities of choice and have access to social and economic reintegration opportunities\u201d.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f886219a-892b-473d-9287-8e78b9e4c06d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 12, + "Paragraph": "Timing and objectives of evaluations In general, evaluations should be carried out at key points in the programme implementation cycle in order to achieve related yet distinct objectives. Four main categories or types of evaluations can be identified: Formative internal evaluations are primarily conducted in the early phase of programme implementation in order to assess early hypotheses and working assumptions, analyse outcomes from pilot interventions and activities, or verify the viability or relevance of a strategy or set of intended outputs. Such evaluations are valuable mechanisms that allow implementation strategies to be corrected early on in the programme implemen tation process by identifying potential problems. This type of evaluation is particularly important for DDR processes, given their complex strategic arrangements and the many different subprocesses involved. Most formative internal evaluations can be carried out internally by the M&E officer or unit within a DDR section; Mid-term evaluations are similar to formative internal evaluations, but are usually more comprehensive and strategic in their scope and focus, as opposed to the more diag nostic function of the formative type. Midterm evaluations are usually intended to provide an assessment of the performance and outcomes of a DDR process for stake holders, partners and donors, and to enable policy makers to assess the overall role of DDR in the broader postconflict context. Midterm evaluations can also include early assessments of the overall contribution of a DDR process to achieving broader post conflict goals; Terminal evaluations are usually carried out at the end of the programme cycle, and are designed to evaluate the overall outcomes and effectiveness of a DDR strategy and programme, the degree to which their main aims were achieved, and their overall effec tiveness in contributing to broader goals. Terminal evaluations usually also try to answer a number of key questions regarding the overall strategic approach and focus of the programme, mainly its relevance, efficiency, sustainability and effectiveness; Ex-post evaluations are usually carried out some time (usually several years) after the end of a DDR programme in order to evaluate the longterm effectiveness of the programme, mainly the sustainability of its activities and positive outcomes (e.g., the extent to which excombatants remain productively engaged in alternatives to violence or mili tary activity) or its direct and indirect impacts on security conditions, prospects for peacebuilding, and consequences for economic productivity and development. Expost evaluations of DDR programmes can also form part of larger impact evaluations to assess the overall effectiveness of a postconflict recovery strategy. Both terminal and expost evaluations are valuable mechanisms for identifying key lessons learned and best practice for further policy development and the design of future DDR programmes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f7e4b5b4-1f07-4447-ae36-e2df2a24cd80", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 13, + "Paragraph": "Selection of results and indicators for evaluation Given the broad scope of DDR programmes, and the differences in strategies, objectives and context, it is difficult to identify specific or generic (i.e., general) results or indicators for evaluating DDR programmes. A more meaningful approach is to identify the various types of impacts or issues to be analysed, and to construct composite (i.e., a group of) indi cators as part of an overall methodological approach to evaluating the programme. The following factors usually form the basis from which an evaluation\u2019s focus is defined: Relevance describes the extent to which the objectives of a programme or project remain valid and pertinent (relevant) as originally planned, or as modified owing to changing circumstances within the immediate context and external environment of that pro gramme or project. Relevance can also include the suitability of a particular strategy or approach for dealing with a specific problem or issue. A DDRspecific evaluation could focus on the relevance of cantonmentbased demobilization strategies, for instance, in comparison with other approaches (e.g., decentralized registration of combatants) that perhaps could have more effectively achieved the same objectives; Sustainability involves the success of a strategy in continuing to achieve its initial objec tives even after the end of a programme, i.e., whether it has a longlasting effect. In a DDR programme, this is most important in determining the longterm viability and effectiveness of reintegration assistance and the extent to which it ensures that ex combatants remain in civilian life and do not return to military or violencebased livelihoods. Indicators in such a methodology include the viability of alternative eco nomic livelihoods, behavioural change among excombatants, and so forth; Impact includes the immediate and longterm consequences of an intervention on the place in which it is implemented, and on the lives of those who are assisted or who benefit from the programme. Evaluating the impact of DDR includes focusing on the immediate social and economic effects of the return of excombatants and their inte gration into social and economic life, and the attitudes of communities and the specific direct or indirect effects of these on the lives of individuals; Effectiveness measures the extent to which a programme has been successful in achieving its key objectives. The measurement of effectiveness can be quite specific (e.g., the success of a DDR programme in demobilizing and reintegrating the majority of ex combatants) or can be defined in broad or strategic terms (e.g., the extent to which a DDR programme has lowered political tensions, reduced levels of insecurity or improved the wellbeing of host communities); Efficiency refers to how well a given DDR programme and strategy transformed inputs into results and outputs. This is a different way of focusing on the impact of a pro gramme, because it places more emphasis on how economically resources were used to achieve specific outcomes. In certain cases, a DDR programme might have been successful in demobilizing and reintegrating a significant number of excombatants, and improving the welfare of host communities, but used up a disproportionately large share of resources that could have been better used to assist other groups that were not covered by the programme. In such a case, a lack of programme efficiency limited the potential scope of its impact.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "09916f8d-7093-4fed-9f9f-6a6297912e10", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 14, + "Paragraph": "Use of evaluation results In general, the results and conclusions of evaluations should be used in several important and strategic ways: A key function of evaluations is to enable practitioners and programme managers to identify, capture and disseminate lessons learned from programme implementation. This can have an immediate operational benefit, as these lessons can be \u2018fed back\u2019 to the programme implementation process, but it can also contribute to the body of lessons learned on DDR at regional and global levels; Evaluations can also provide important mechanisms for identifying and institutional izing best practice by identifying effective models, strategies and techniques that can be applied in other contexts; innovative approaches to dealing with outstanding problems; or linking DDR to other processes such as local peacebuilding, access to justice, and so forth; Evaluation results also enable practitioners and managers to refine and further develop their programme strategy. This is particularly useful when programmes are designed to be implemented in phases, which allows for the assessment and identification of problems and best practice at the end of each phase, which can then be fed into later phases; Evaluations also contribute to discussions between policy makers and practitioners on the further development of international and regional policies on DDR, by providing them with information and analyses that influence the way key policy issues can be dealt with and decisions reached. Evaluations can provide invaluable support to the elaboration of future policy frameworks for DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "97a3cfe4-2024-47db-8a04-82528c8934d8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 14, + "Paragraph": "Planning evaluations The complexity of DDR and the specific skills needed for indepth and comprehensive evaluations usually means that this activity should be carried out by specialized, contracted external actors or partners. Because an external team will be brought in, it is essential to draw up precise terms of reference for the carrying out of the evaluation, and to be clear about how the overall objective and coverage of issues will be defined/expressed. An evaluation terms of reference document includes the following sections: Introduction: Contains a brief description of the rationale and focus of the evaluation (outcome, programme, project, series of interventions by several partners, etc.); Objectives: Describes the purpose of the evaluation, e.g., \u201cto analyse strategic program matic and policy dimensions\u201d; Scope: Defines which issues, subjects and areas the evaluation will cover, and the period of the programme\u2019s life it will examine; Expected results: Defines what results the evaluation is expected to produce (e.g., findings, recommendations, lessons learned, rating on performance, an \u2018action item\u2019 list, etc.); Methodology or approach: Defines how data is collected and analysed for the evaluation; Evaluation team: Defines the composition of the staff involved and their areas of expertise; Management arrangements: Defines how the evaluation will be managed and organized, and how interactions with the DDR programme management will be structured.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-4.10-Disarmament.pdf.json b/src/Static/data/json/IDDRS-4.10-Disarmament.pdf.json new file mode 100644 index 0000000..ddb63d9 --- /dev/null +++ b/src/Static/data/json/IDDRS-4.10-Disarmament.pdf.json @@ -0,0 +1,895 @@ +[ + { + "ID": "e15a4563-f019-4295-9ccd-7a620bef9d86", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": null, + "Paragraph": "Summary Disarmament is the act of reducing or eliminating access to weapons. It is usually regarded as the first step in a DDR programme. This voluntary handover of weapons, ammunition and explosives is a highly symbolic act in sealing the end of armed con- flict, and in concluding an individual\u2019s active role as a combatant. Disarmament is also essential to developing and maintaining a secure environment in which demobilization and reintegration can take place and can play an important role in crime prevention. Disarmament operations are increasingly implemented in contexts characterized by acute armed violence, complex and varied armed forces and groups, and the preva- lence of a wide range of weaponry and explosives. This module provides the guidance necessary to effectively plan and implement disarmament operations within DDR programmes and to ensure that these operations contribute to the establishment of an environment conducive to inclusive political tran- sition and sustainable peace. The disarmament component of a DDR programme is usually broken down into four main phases: (1) operational planning, (2) weapons collection operations, stockpile management, and (4) disposal of collected materiel. This module provides technical and programmatic guidance for each phase to ensure that activities are evi- dence-based, coherent, effective, gender-responsive and as safe as possible. The handling of weapons, ammunition and explosives comes with significant risks. Therefore, the guidance provided within this module is based on the Modular Small-Arms Control Implementation Compendium (MOSAIC)1 and the International Ammunition Technical Guidelines (IATG).2 Additional documents containing norms, standards and guidelines relevant to this module can be found in Annex B. Disarmament operations must take the regional and sub-regional context into con- sideration, as well as applicable legal frameworks. All disarmament operations must also be designed and implemented in an inclusive and gender responsive manner. Disarmament carried out within a DDR programme is only one aspect of broader DDR arms control activities and of the national arms control management system (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). DDR programmes should therefore be designed to reinforce security nationwide and be planned in coor- dination with wider peacebuilding and recovery efforts.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4f0d066c-6247-4441-b9e3-b575c8b1b323", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 4, + "Paragraph": "Module scope and objectives DDR processes include two main arms control components: (a) disarmament as part of a DDR programme and (b) transitional weapons and ammunition management (WAM). This module provides DDR practitioners with practical standards for the planning and implementation of the disarmament component of a DDR programme in contexts where the preconditions for such programmes are present. These preconditions include a negoti- ated ceasefire and/or peace agreement, sufficient trust in the peace process, willingness of the parties to the armed conflict to engage in DDR and a minimum guarantee of security (see IDDRS 2.10 on The UN Approach to DDR). Transitional WAM in support of DDR pro- cesses is covered in IDDRS 4.11 on Transitional Weapons and Ammunition Management. The linkages between disarmament as part of a DDR programme and Security Sector Reform are covered in IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "51a9c794-7b26-4d2a-a9b6-8ff275b9d672", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. In the context of DDR, disarmament refers to the collection, documentation, con- trol and disposal of small arms, ammunition, explosives and light and heavy weapons of combatants and often also of the civilian population. Disarmament also includes the development of responsible arms management programmes. The term \u2018disarmament\u2019 can be sensitive. It can carry connotations of surrender or of having weapons forcibly removed by a more powerful actor. Depending on the contex- tual realities and sensitivities, as well as the provisions of the peace agreement, alter- native terms, such as \u2018laying down arms\u2019 or \u2018putting weapons beyond use\u2019 or \u2018weapons control\u2019, may be employed. Ammunition: A complete device (e.g., missile, shell, mine, demolition store) charged with explosives, propellants, pyrotechnics, initiating composition, or nuclear, biological or chemical material for use in connection with offence or defence, or training, or non-operational purposes, including those parts of weapons systems containing explosives. Deactivated weapon: A weapon that has been rendered incapable of expelling or launching a shot, bullet, missile or other projectile by the action of an explosive, that cannot be readily restored to do so, and that has been certified and marked as deacti- vated by a competent State authority. Note 1: Deactivation requires that all pressure-bearing components of a weapon be permanently altered in such a way so as to render the weapon unusable. This includes modifications to the barrel, bolt, cylinder, slide, firing pin and/or receiver/frame. Demilitarization: The complete range of processes that render weapons, ammunition and explosives unfit for their originally intended purpose. Demilitarization not only involves the final destruction process, but also includes all of the other transport, storage, accounting and pre-processing operations that are equally critical to achieving the final result. Destruction: The rendering as permanently inoperable weapons, their parts, components or ammunition. Disposal: The removal of arms, ammunition and explosives from a stockpile by the utilization of a variety of methods (that may not necessarily involve destruction). Environ- mental concerns should be considered when selecting which method to use. There are six traditional methods of disposal used by armed forces around the world: (1) sale, (2) gift, (3) use for training, (4) deep sea dumping, (5) land fill, and (6) destruction or demilitarization. Diversion: The movement \u2013 physical, administrative or otherwise \u2013 of a weapon and/or its parts, components or ammunition from the legal to the illicit realm. Explosive: A substance or mixture of substances that, under external influences, is capable of rapidly releasing energy in the form of gases and heat, without undergoing a nuclear chain reaction. Explosive ordnance disposal (EOD): The detection, identification, evaluation, render- ing safe, recovery and final disposal of unexploded explosive ordnance. Note 1: It may also include the rendering safe and/or disposal of explosive ordnance that has become hazardous through damage or deterioration, when such tasks are beyond the capabilities of personnel normally assigned responsibility for routine disposal. Note 2: The presence of ammunition and explosives during disarmament opera- tions inevitably requires some degree of EOD response. The level of EOD response will be dictated by the condition of the ammunition or explosives, their level of deterioration and the way in which the local community handles them. Firearms: Any portable barreled weapon that expels, is designed to expel or may be readily converted to expel a shot, bullet or projectile by the action of an explosive, excluding antique firearms of their replicas. Antique firearms and their replicas shall be defined in accordance with domestic law. In no case, however, shall antique firearms include firearms manufactured after 1899. Light weapon: Any man-portable lethal weapon designed for use by two or three persons serving as a crew (although some may be carried and used by a single person) that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, heavy machine guns, hand-held under-barrel and mounted grenade launchers, portable anti-aircraft guns, portable anti-tank guns, recoilless rifles, portable launchers of anti- tank missile and rocket systems, portable launchers of anti-aircraft missile systems, and mortars of a calibre of less than 100 mil- limetres, as well as their parts, components and ammunition. Note 2: Excludes antique light weapons and their replicas. Marking: The application of permanent inscriptions on weapons, ammunition and ammunition packaging to permit their identification. Render safe procedure (RSP): The application of special explosive ordnance disposal methods and tools to provide for the interruption of functions or separation of essential components to prevent an unacceptable detonation. Safe to move: A technical assessment, by an appropriately qualified technician or tech- nical officer, of the physical condition and stability of ammunition and explosives prior to any proposed move. Should the ammunition and explosives fail a \u2018safe to move\u2019 inspection, they must be destroyed in situ (i.e., at the place where they are found) by a qualified EOD team acting under the advice and control of the qualified technician or technical officer who conducted the initial \u2018safe to move\u2019 inspection. Small arm: Any man-portable lethal weapon designed for individual use that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, revolvers and self-loading pistols, rifles and carbines, sub-machine guns, assault rifles and light machine guns, as well as their parts, compo- nents and ammunition. Note 2 : Excludes antique small arms and their replicas. Stockpile: In the context of DDR, the term refers to a large accumulated stock of weap- ons and explosive ordnance.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "728535ee-ce89-49e6-a548-6f63b0dbbc89", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 7, + "Paragraph": "Introduction Disarmament is generally understood to be the act of reducing or eliminating arms and, as such, is applicable to all weapons systems, ammunition and explosives, including nuclear, chemical, biological, radiological and conventional systems. This module will focus only on conventional weapons systems and ammunition that are typically held by members of armed forces and groups dealt with during DDR programmes.3 When transitioning out of armed conflict, States may be vulnerable to conflict relapse, particularly if key conflict drivers, including the proliferation of arms and ammunition, remain unaddressed. Inclu- sive and effective arms control, and disar- mament in particular, is critical to prevent and reduce armed conflict and crime and to support recovery and development, as reflected in the 2030 Agenda for Sustaina- ble Development and the Security Council and General Assembly\u2019s 2016 resolutions on sustaining peace. National arms control management systems encompass more than just disarmament. Therefore, disarmament operations should be planned and conduct- ed in coordination with, and in support of, other arms control and reduction measures, including SALW control (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). The disarmament component of any DDR programme should be specifically de- signed to respond and adapt to the security environment. It should also be planned in coherence with wider peace-making, peacebuilding and recovery efforts. Disarma- ment plays an essential role in maintaining a secure environment in which demobili- zation and reintegration can take place as part of a long-term peacebuilding strategy. Depending on the context, DDR phases could be differently sequenced with, for exam- ple, demobilization and reintegration paving the way for disarmament. The disarmament component of a DDR programme will usually consist of four main phases: Operational planning; Weapons collection; Stockpile management; Disposal of collected materiel. The cross-cutting activities that should take place throughout these four main phases are data collection, awareness raising, and monitoring and evaluation. Within each phase there are also a number of recommended specific components (see Table 1). TABLE 1: MAIN PHASES OF THE DISARMAMENT COMPONENT OF A DDR PROGRAMME", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c0e216fd-9887-42c0-b29f-fbe3894a5a63", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the disarmament component of DDR programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9cd51f5e-a09a-4e7a-b596-4f57fcf0a672", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Voluntary In order to lay the foundation for an effective DDR programme and sustainable peace, disarmament shall be voluntary. Forced disarmament can have a negative impact on contexts in transition, including in terms of restoring trust in authorities and efforts towards national reconciliation. In addition, removing weapons forcibly from com- batants or persons associated with armed forces and groups risks creating a security vacuum and an imbalance in military capabilities which may generate increased tensions and lead to a resumption of armed violence. Voluntary disarmament should be facilitated through strong sensitization and communication efforts. It should also be underpinned by firm guarantees of security and immunity from prosecution for the illegal possession of weapon(s) handed in.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "bfbbc560-620a-47b2-ae58-a304b680530e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 9, + "Paragraph": "Unconditional release and protection of children Agreeing on child-specific disarmament procedures avoids further possible abuse and exploitation of children, especially for political or tactical gain; and, prepares children for separate and specific child-related demobilization and reintegration processes (see IDDRS 5.20 on Children and DDR). Specific attention should also be given to the disar- mament of youth (see IDDRS 5.30 on Youth and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6aa3f7ea-0e04-40bc-bc01-b5aec8ab244a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 9, + "Paragraph": "Gender-responsive and inclusive Disarmament activities must not introduce distinctions based on sex, race, ethnicity, religion or other arbitrary criteria that may create or exacerbate vulnerabilities and power imbalances. All stages of disarmament or other arms control initiatives must integrate gender and age considerations, including the differing impacts and percep- tions of such processes on women, men, boys and girls. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data, and the meaningful participation of women and girls at each stage of the process. A gender-transformative approach actively examines, questions and changes unequal gender norms and imbalances of power. A gender-transformative approach thus helps countries to promote equitable rights and health, and contributes to the prevention of sexual and gender-based violence. A gender-transformative DDR programme should acknowledge, incorporate and address messages on masculinities and violence, including the linkage between masculinities and weapons ownership. Gender-transformative DDR programmes should also ensure that there are both male and female UN military personnel in leadership roles at pick-up points and mobile disarmament sites, and par- ticipating in the destruction of weapons. All precautions shall also be taken to avoid reinforcing or generating gender inequalities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "679f0099-487c-4d16-a508-ad3951e030f7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 9, + "Paragraph": "Conflict sensitive Disarmament operations shall not increase the vulnerability of communities, groups or individuals to internal or external threats. Disarmament strategies should therefore be based on a thorough analysis of the security context, relevant actors and their mil- itary capabilities to avoid creating a security imbalance or vacuum, leading to further tensions or jeopardizing the implementation of a peace agreement.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "17f9a69e-c461-4a26-b39b-1f8c9185a9d0", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 9, + "Paragraph": "Nationally and locally owned National Governments have the right and responsibility to apply their own national standards to all disarmament operations on their territory and shall act in compliance with international arms control instruments and applicable legal frameworks. The pri- mary responsibility for disarmament and weapons collection lies with the Govern- ment of the affected State. The support and specialist knowledge of the UN is placed at the disposal of a national Government to ensure that disarmament planning and implementation are conducted in accordance with international arms control instru- ments, standards and guidance, including those of the IDDRS, the IATG and MOSAIC. Strong national ownership is important, including where the UN is supporting DDR programmes in non-mission settings. Building national and local institutional and technical capacity is essential to the effective, successful, sustainable continuation of disarmament and other arms control efforts.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e25baea3-3014-4d2b-b5ad-6aeb24a1f420", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 10, + "Paragraph": "Safety and security Handling weapons, ammunition and explosives comes with high levels of risk. The involvement of technically qualified WAM advisers in the planning and implemen- tation of disarmament operations is critical to their safety and success. Technical advisers shall have formal training and operational field experience in ammunition and weapons storage, marking, transportation, deactivation and the destruction of arms, ammunition and explosives, as relevant.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "4431e2c4-76da-472f-ba57-f47805abd16d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 10, + "Paragraph": "Planning and designing disarmament operations In order to effectively implement the disarmament component of a DDR programme, meticulous planning is required. Planning for disarmament operations includes infor- mation collection, a risk and security assessment, identification of eligibility criteria, the development of standard operating procedures (SOPs), the identification of the dis- armament team structure, and a clear and realistic timetable for operations. All disar- mament operations shall be based on gender responsive analysis. The disarmament component is often the first stage of the entire DDR programme, and operational decisions made at this stage will have an impact on subsequent stages. Disarmament, therefore, cannot be designed in isolation from the rest of the DDR pro- gramme, and integrated assessment and DDR planning is key (see IDDRS 3.10 on Inte- grated DDR Planning: Processes and Structures, and IDDRS 3.11 on Integrated Assessments). It is essential to determine the extent of the capability needed to carry out a disar- mament component, and then to compare this with a realistic appraisal of the current capacity available to deliver it. Requests for further assistance from the UN mission military and police components shall be made as early as possible in the planning stage (see IDDRS 4.40 on UN Military Roles and Responsibilities and IDDRS 4.50 on UN Police Roles and Responsibilities). In non-mission settings, requests for capacity development assistance for disarmament operations may be directed to relevant UN agency(ies). Key terms and conditions for disarmament should be discussed during the peace negotiations and included in the agreement (see IDDRS 2.20 on The Politics of DDR). This requires that parties and mediators have an in-depth understanding of disarmament and arms control, or access to expertise to guide them and provide a common under- standing of the different options available. In some contexts, the handover of weapons from one party to another (for example, from armed groups to State institutions) may be inappropriate, resulting in the need for the involvement of a neutral third party.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f740c3d2-19ed-438c-adf8-24fa5ca592de", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 11, + "Paragraph": "Information collection Initial planning should be based on a careful data collection and analysis on the armed forces and groups to be disarmed, disaggregated by sex and age, as well as an analysis of the dynamics of armed violence and illicitly held weapons and ammunition. DDR programmes are increasingly implemented in environments with a myriad of armed forces and groups whose alliances are fluid or unclear, often within a context of weak State institutions and fragile or absent rule of law. Solid analysis informed by continu- ous data gathering and assessment is essential in order to navigate these challenging, rapidly changing environments.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "73d9eafb-1339-47f8-bd33-9dc1806eaea5", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 11, + "Paragraph": "Integrated assessment A DDR integrated assessment should start as early as possible in the peace negotiation process and the pre-planning phase (see IDDRS 3.11 on Integrated Assessments). This assessment should contribute to determining whether disarmament or any transitional arms control initiatives are desirable or feasible in the current context, and the potential positive and negative impacts of any such activities. The collection of information is an ongoing process that requires sufficient resources to ensure that assessments are updated throughout the lifecycle of a DDR programme. Information management systems and data protection measures should be employed from the start by DDR practitioners with support from the UN mission or lead UN agency(ies) Information Technology (IT) unit. The collection of data relating to weapons and those who carry them is a sensitive undertaking and can present sig- nificant risks to DDR practitioners and their sources. United Nations security guide- lines should be followed at all times, particularly with regards to protecting sources by maintaining their anonymity. Integrated assessments should include information related to the political and security context and the main drivers of armed conflict. In addition, in order to design evidence-based, age-specific and gender-sensitive disarmament operations, the inte- grated assessment should include: An analysis of the memberships of armed forces and groups (number, origin, age, sex, etc.) and their arsenals (estimates of the number and the type of weapons, ammunition and explosives); An analysis of the patterns of weapons possession among men, women, girls, boys, and youth; A mapping of the locations and access routes to materiel and potential caches (to the extent possible); An understanding of the power imbalances and disparities in weapons possession between communities; An analysis of the use of weapons in the commission of serious human rights violations or abuses and grave breaches of international humanitarian law, as well as crime, including organized crime; An understanding of cultural and gendered attitudes towards weapons and the value of arms and ammunition locally; The identification of sources of illicit weapons and ammunition and possible trafficking routes; Lessons learnt from any past disarmament or weapons collections initiatives; An understanding of the willingness of and incentives for armed forces and groups to participate in DDR. An assessment of the presence of armed groups not involved in DDR and the possible impact these groups can have on the DDR process. Methods to gather data, including desk research, telephone interviews and face-to-face meetings, should be adapted to the resources available, as well as to the security and po- litical context. Information should be centralized and managed by a dedicated focal point. Once sufficient, reliable information has been gathered, collaborative plans can be drawn up by the National DDR Commission and the UN DDR component in mis- sion settings or the National DDR Commission and lead UN agency(ies) in non-mis- sion settings outlining the intended locations and site requirements for disarmament operations, the logistics and staffing required to carry out disarmament, and a timetable for operations.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "671e6b77-5eb2-40b8-9e79-6c184e06bba6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 13, + "Paragraph": "Weapons survey An accurate and detailed weapons survey is essential to draw up effective and safe plans for the disarmament component of a DDR programme. Weapons surveys are also important for transitional weapons and ammunition management activities (ID- DRS 4.11 on Transitional Weapons and Ammunition Management). Sufficient data on the number and type of weapons, ammunition and explosives that can be expected to be recovered are crucial. A weapons survey enables the accurate definition of the extent of the disarmament task, allowing for planning of the collection and future storage and destruction requirements. The more accurate and verifiable the initial data regarding the specifically identified armed forces and groups participating in the con- flict, the better the capacity of the UN to make appropriate plans or provide national authorities with relevant advice to achieve the aims of the disarmament component. Data disaggregated by sex and age is a prerequisite for understanding the age- and gender-specific impacts of arms misuse and for designing evidence-based, gen- der-responsive disarmament operations to address them. It is important to take into consideration the fact that, while women may be active members of armed groups, they may not actually hold weapons. Evi- dence has shown that female combatants have been left out of DDR processes as a result of this on multiple occasions in the past. A gender-responsive mapping of armed forces and groups is therefore critical to identify patterns of gender-differentiated roles within armed forces and groups, and to ensure that the design of any approach is appropriately targeted. A weapons survey should be implemented as early as possible in the planning of a DDR programme; however, it requires significant resources, access to sensitive and often unstable parts of the country, buy-in from local authorities and ownership by national authorities, all of which can take considerable time to pull together and secure. A survey should draw on a range of research methods and sources in order to collate, compare and confirm information (see Annex C on the methodology of weapons surveys).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2e50d487-e49d-4004-8aad-dbdf38bf9bd4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Objectives of disarmament The overarching aim of the disarmament component of a DDR programme is to control and reduce arms, ammunition and explosives held by combatants before demobilization in order to build confidence in the peace process, increase security and prevent a return to conflict. Clear operational objectives should also be developed and agreed. These may include: A reduction in the number of weapons, ammunition and explosives possessed by, or available to, armed forces and groups; A reduction in actual armed violence or the threat of it; Optimally zero, or at the most minimal, casualties during the disarmament component; An improvement in the perception of human security by men, women, boys, girls and youth within communities; A public connection between the availability of weapons and armed violence in society; The development of community awareness of the problem and hence community solidarity; The reduction and disruption of the illicit trade of weapons within the DDR area of operations; A reduction in the open visibility of weapons in the community; A reduction in crimes committed with weapons, such as conflict-related sexual violence; The development of norms against the illegal use of weapons.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c3a5d542-15b0-45ec-8f86-500e3dc80698", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Risk and security assessment A comprehensive risk and security assessment should be conducted to inform the planning of disarmament operations and identify threats to the DDR programme and its personnel, as well as to participants and beneficiaries. The assessment should iden- tify the tolerable risk (the risk accepted by society in a given context based on cur- rent values), and then identify the protective measures necessary to achieve a residual risk (the risk remaining after protective measures have been taken). Risks related to women, youth, children and other specific-needs groups should also be considered. Operational and technical risks to be assessed when considering which approach to take might relate to the combatants themselves, as well as to the types of weapons, ammunition and explosives being collected, and to external threats. In developing this \u2018safe\u2019 working environment, it must be acknowledged that there can be no absolute safety, and that many of the activities carried out during weapons collection operations have a high risk associated with them. However, national author- ities, international organizations and non-governmental organizations (NGOs) must try to achieve the highest possible levels of safety.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "05c2abaf-74e6-44b1-a5e8-ed4b5e37ed65", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 15, + "Paragraph": "Operational risks There are likely to be several operational risks, depending on the context, including the following: Threats to the safety and security of DDR programme personnel (both UN and non-UN): During the disarmament phase of the DDR programme, staff are likely to be in direct contact with armed individuals, including members of both armed forces and groups. Staff should be conscious not only of the risks associated with handling weapons, ammunition and explosives, but also of the risks of unpre- dictable behaviour as a result of the significant levels of stress that disarmament activities can generate among combatants and other stakeholders. Avoid supporting weapons buy-back: UN supported DDR programmes shall avoid attaching monetary value to weapons as a means of encouraging their surrender by members of armed forces and groups. Weapons buy-back programmes within and outside DDR have proven to be inefficient and even counter-productive as they tend to fuel national and regional arms flows, which in the end can jeopardize the achievement of disarmament objectives in a DDR programme. Buy-back pro- grammes can also have unintended societal consequences such as economically rewarding combatants and exacerbating existing gender inequalities Disarmament of foreign combatants: Disarmament operations may also need to consider armed foreign combatants. Foreign combatants may be disarmed in the host country or at the border of the country of origin to which they will be returning. DDR programmes should plan for disarmament of foreign combatants within or outside repatriation agreements between the country of origin and the host country (see IDDRS 5.40 on Cross-Border Population Movements). Terrorism and violent extremism threats: DDR programmes are increasingly being conducted in contexts affected by terrorism. Disarmament operations in these contexts require the highest security safeguards and robust on-site WAM expertise to maximize the safety of all involved. DDR practitioners should be aware of the requirements imposed on States by UN Security Council resolutions 2370 (2017) and 2482 (2019) and Council\u2019s 2015 Madrid Guiding Principles and its 2018 Addendum, in terms of, inter alia, ensuring that appropriate legal actions are taken against those who knowingly engage in providing terrorists with weapons.4 Lack of sustainability: Disarmament operations shall not start unless the sus- tainability of funding and resources is guaranteed. Previous attempts to carry out disarmament operations with insufficient assets and funds have resulted in unconstructive, partial disarmament, a return to armed conflict, and the failure of the entire DDR process. The reconfiguring and closing of UN missions is another crucial moment that should be planned in advance. Such transitions often require handing over responsibility to national authorities or to the United Nations Country Team (UNCT). It is important to ensure these entities have the mandate and capacity to complete the DDR programme even after the withdrawal of UN mission resources.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6136d4e9-001a-47fc-b375-4f6ea01d33cc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 16, + "Paragraph": "Technical risks and hazards In order to deal with potential technical threats during the disarmament component of DDR programmes, and to implement an appropriate response to such threats, it is necessary to distinguish between risks and hazards. Commonly, a hazard is defined as \u201ca potential source of physical injury or damage to the health of people, or damage to property or the environment,\u201d while a risk can be defined as \u201cthe combination of the probability of occurrence of a hazard and the severity of that hazard\u201d (see ISO/IEC Guide 51: 2014 [E)). In terms of disarmament operations, many hazards are created by the presence of weapons, ammunition and explosives. The level of risk is mostly dependent on the knowledge and training of the disarmament teams (see section 5.7). The physical con- dition of the weapons, ammunition and explosives and the environment in which they are handed over or stored have a major effect on that risk. A range of techniques for estimating risk are contained in IATG 2.10 on Introduction to Risk Management Prin- ciples and Processes. All relevant guidelines contained in the IATG should be strictly adhered to in order to ensure the safety of all persons and assets when handling con- ventional ammunition. Adequate expertise is critical. Unqualified personnel should never handle ammunition or any type of explosive material.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b30dc47f-2b6d-466c-8aa0-986ea50d4b99", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 16, + "Paragraph": "Gender-sensitive disarmament operations If women are not adequately integrated into DDR programmes, and disarmament op- erations in particular, gender stereotypes of masculinity associated with violence, and femininity dissociated from power and decision-making, may be reinforced. If imple- mented in a gender-sensitive manner, a DDR programme can actually highlight the constructive roles of women in the transition from conflict to sustainable peace. Disarmament can increase a combatant\u2019s feeling of vulnerability. In addition to providing physical protection, weapons are often seen as important symbols of power and status. Men may experience disarmament as a symbolic loss of manhood and sta- tus. Undermined masculinities at all ages can lead to profound feelings of frustra- tion and disempowerment. For women, disarmament can threaten the gender equality and respect that may have been gained through the possession of a weapon while in an armed force or group. DDR programmes should explore ways to promote alternative symbols of power that are relevant to particular cultural contexts and that foster peace dividends. This can be done by removing the gun as a symbol of power, addressing key concerns over safety and protection, and developing strategic engagement with women (particularly female dependants) in disarmament operations. Female combatants and women and girls associated with armed forces and groups are common in armed conflicts across the world. To ensure that men and women have equal rights to participate in the design and implementation of disarmament opera- tions, a gender-inclusive and -responsive approach should be applied at every stage of assessment, planning, implementation, and monitoring and evaluation. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data, and the meaningful participation of women at each stage of the DDR process. Gender-sensitive disarmament operations are proven to be more effective in addressing the impact of the illicit circulation and misuse of weapons than those that do not incorporate a gender perspective (MOSAIC 6.10 on Women, Men and the Gendered Nature of Small Arms and Light Weapons). Therefore, ensuring that gender is adequately integrated into all stages of disarmament and other DDR-related arms control initiatives is essential to the overall success of DDR processes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5fcf604a-7c3e-42fa-9424-40365ad89910", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 17, + "Paragraph": "Eligibility criteria for access to DDR programmes Establishing rigorous, unambiguous and transparent criteria that allow people to par- ticipate in DDR programmes is vital to achieving the objectives of DDR. Eligibility cri- teria must be carefully designed and agreed to by all parties, and screening processes must be in place in the disarmament stage. Eligibility for a DDR programme may or may not require the physical possession of a weapon and/or ammunition, depending on the context. The determination of eligi- bility criteria shall be based on the content of the peace agreement or ceasefire, if these documents include relevant provisions, as well as the results of the aforementioned integrated assessment. In either case, eligi- bility for a DDR programme must be gender inclusive and shall not discriminate on the basis of age or gender. Participants in DDR programmes may include individuals in support and non-combatant roles or those associated with armed forces and groups, including children. As these individuals are typically unarmed, they may not be eligible for dis- armament, but will be eligible for demobilization and reintegration (see IDDRS 3.21 on Participants, Beneficiaries and Partners). Historically, women who are eligible to par- ticipate in DDR programmes may not be aware of their eligibility, may be deliberately excluded by commanders or may be deprived of their weapons to the benefit of men seeking to enter the DDR programme. For these reasons, DDR practitioners shall be aware of different categories of eligibility and should ensure that proper public infor- mation and sensitization with commanders and potential DDR participants and bene- ficiaries is completed (on female participants and beneficiaries, see Figure 1 and Box 3). Eligibility criteria must be designed to prevent individuals who are not members of armed forces and groups from gaining access to DDR programmes. The prospect of a DDR programme and the associated benefits can present an enticement to many individuals. Furthermore, armed groups that inflate their membership numbers to in- crease their political weight could try to rapidly recruit civilians to meet the short- fall. The screening process is used to confirm whether individuals meet the eligibility criteria for entering the DDR programme (see IDDRS 4.20 on Demobilization). Close cooperation with the leadership of armed forces and groups, civil society (including women\u2019s groups), local police and national DDR-related bodies, and a well-conducted public information and sensitization campaign are essential tools to ensure that only those who are eligible participate in a DDR programme (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "30ceab6c-c3c9-41b5-bdca-4d09ed72d9c3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": null, + "Paragraph": "Eligibility criteria must be designed to prevent individuals who are not members of armed forces and groups from gaining access to DDR programmes. The prospect of a DDR programme and the associated benefits can present an enticement to many individuals. Furthermore, armed groups that inflate their membership numbers to increase their political weight could try to rapidly recruit civilians to meet the short- fall. The screening process is used to confirm whether individuals meet the eligibility criteria for entering the DDR programme (see IDDRS 4.20 on Demobilization). Close cooperation with the leadership of armed forces and groups, civil society (including women\u2019s groups), local police and national DDR-related bodies, and a well-conducted public information and sensitization campaign are essential tools to ensure that only those who are eligible participate in a DDR programme (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Weapons-related eligibility criteria Depending on the context and the content of the ceasefire and/or peace agreement, eligibility for a DDR programme can include specific weapons/ammunition-related criteria. These criteria should be based on a thorough understanding of the context if effective disarmament is to be achieved. The arsenals of armed forces and groups vary in size, quality and types of weapons. For instance, in conflicts where foreign States actively support armed groups, these groups\u2019 arsenals are often quite large and varied, including not only serviceable SALW but also heavy-weapons systems. Past experience shows that the eligibility criteria related to weapons and ammu- nition are often not consistent or stringent enough. This can lead to the inclusion of individuals who are not members of armed forces and groups and the collection of poor-quality materiel while illicit serviceable materiel remains in circulation. Accurate information regarding armed forces and groups\u2019 arsenals (see section 5.1) is key in determining relevant and effective weapons-related criteria. These include the type and status (serviceable versus non-serviceable) of weapons or the quantity of ammu- nition that a combatant should bring along in order to be enrolled in the programme. According to the context, the ratio of arms and ammunition to individual combatants can vary and may include SALW as well as heavy weapons and ammunition. In order to ascertain their eligibility, combatants may also need to take a weapons procedures test, which will identify their familiarity with and ability to handle weapons. Although members of armed groups may not have received formal training to military standards, they should be able to demonstrate an understanding of how to use a weapon. This test should be balanced against other ways to identify combatant status (see IDDRS 4.20 on Demobilization). Children with weapons should be disarmed but should not be required to demonstrate their capacity to use a weapon or prove familiarity with weap- onry to be admitted to the DDR programme (see IDDRS 5.20 on Children and DDR). All weapons brought by ineligible individuals as part of a disarmament operation shall be collected even if these individuals will not be eligible to enter the DDR programme. To avoid confusion and frustration, it is key that eligibility criteria are communi- cated clearly and unambiguously to members of armed groups and the wider popu- lation (see Box 4 and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Legal implications should also be clearly explained \u2013 for example, that the voluntary submission of weapons during the disarmament phase by eligible and ineligible individuals will not result in prosecution for illegal possession.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "1d17e95f-b644-4a15-a485-acc35d38bc37", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Standard operating procedures Standard operating procedures (SOPs) are a set of mandatory step-by-step instructions designed to guide practitioners within a particular DDR programme in the conduct of disarmament operations and subsequent WAM activities. The development of disar- mament SOPs has become common practice across DDR programmes, as it allows for coherence in the delivery of activities, ensuring greater safety and security through adherence to standardized regulations. In mission contexts, SOPs should identify the precise responsibilities of the various UN components involved in disarmament. All stakeholders should agree on the content of the SOP(s), and the document(s) should be reviewed by the UN\u2019s legal office at Headquarters. The development of SOPs is led by the DDR component, with the support of WAM advisers, and signed off by the head of the UN mission. All staff from the DDR component as well as UN military component members and any other partners supporting disarmament activities shall be familiar with the relevant SOPs. The content of SOPs shall be kept up to date. In non-mission contexts, the national authority should also be advised by the lead UN agency(ies) on the development of national SOPs for the safe, effective and efficient conduct of the disarmament component of the DDR programme. All those engaged in supporting disarmament operations shall also be familiar with the relevant SOPs. A single disarmament SOP, or a set of SOPs each covering specific procedures related to disarmament activities, should be informed by the integrated assessment and the national DDR policy document, and comply with international guidelines and standards (IATG and MOSAIC), as well as with national laws and international obli- gations of the country where the programme is being implemented (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). SOPs should cover all disarmament-related activities and include two lines of management procedures: one for ammunition and explosives, and one for weapons systems. The SOP(s) should refer to and be consistent with any other WAM SOPs adopt- ed by the mission and/or national authorities. While some missions and/or national authorities have developed a single disar- mament SOP, others have preferred a set of SOPs. Regardless, SOPs should cover the following procedures: Reception of arms and/or ammunition and explosives in static or mobile disarmament; Compliance with weapons- and ammunition-related eligibility criteria (e.g., what is considered a serviceable weapon?); Weapons storage management; Ammunition and explosives storage management; Accounting for weapons and ammunition; Transportation of weapons; Transportation of ammunition; Storage checks; Reporting and investigating loss or theft; Destruction of weapons (or other appropriate methods of disposal and potential marking); Destruction of ammunition (or other appropriate methods of disposal). Managing spontaneous disarmament, including in advance of a formal DDR process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "7fbb9bda-fdc2-4115-8b54-e5cccdd3de09", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 22, + "Paragraph": "Disarmament team structure The disarmament team is responsible for implementing all operational procedures for disarmament: physical verification of arms and ammunition, recording of materiel, issuance of disarmament receipts/certificates, storage of materiel, and the destruction of unsafe ammunition and explosives.5 WAM advisers (see Box 5) should be duly incorporated from the planning stage throughout the implementation of the disarmament phase. As per the IATG, force commanders (military component) should designate a force explosives safety officer responsible for advising on all arms, ammunition and explosives safety matters, in- cluding with regards to DDR activities (see Annex L of IATG 01.90). A disarmament team should include a gender-balanced composition of: DDR practitioners; A representative of the national DDR commission (and potentially other national institutions); An adequately sized technical support team from a specialized UN agency or NGO, including a team leader/WAM adviser (IMAS EOD level 3), two weapons inspectors to identify weapons and assess safety of items, registration officers, storemen/women and a medic; Military observers (MILOBs) and representatives from the protection force; National security forces armament specialists (police, army and/or gendarmerie); A representative from the mission\u2019s department for child protection; A national gender specialist. A national youth specialist. Depending on the provisions of the ceasefire and/or peace agreement and the national DDR policy document, commanders of armed groups may also be part of the disarmament team. Disarmament teams should receive training on the disarmament SOPs (see section 5.6), the chain of procedures involved in conducting disarmament operations, entering data into the registration database, and the types of arms and ammunition they are likely to deal with and their safe handling. Training should be designed by the DDR component with the support of WAM/EOD-qualified force representatives or a specialized UN agency or NGO. DDR practitioners and other personnel who are not arms and ammunition specialists should also attend the training to ensure that they fully understand the chain of operations and security procedures involved; how- ever, unless qualified to do so, staff shall not handle weapons or ammunition at any stage. Before the launch of operations, a simulation exercise should be organized to test the planning phase, and to support each stakeholder in understanding his or her role and responsibilities. The mission DDR component, specialized UN agencies, and the military component should identify liaison officers to facilitate the implementation of disarmament operations In non-mission settings, the conduct and security of disarmament operations may rely on national security forces, joint commissions or teams and on national specialists with technical support from relevant UN agency (ies), multilateral and bilateral part- ners. The UN and partners should support the organization of training for national disarmament teams to develop capacity.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "da92d011-afa0-4686-afc5-68baa7b5443d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 23, + "Paragraph": "Timelines for disarmament Timelines for the implementation of the disarmament component of a DDR programme should be developed by taking the following factors into account: The provisions of the peace agreement or the ceasefire agreement; The availability of accurate information about demographics, including sex and age, as well as the size of the armed forces and groups to be disarmed; The location of the armed forces\u2019 and groups\u2019 units and the number, type and location of their weapons; The nature, processing capacity and location of mobile and static disarmament sites; The time it takes to process each ex-combatant or person formerly associated with an armed force or group (this could be anywhere from 15 to 20 minutes per per- son). The simulation exercise will help to determine how long individual weapons collection and accounting will take. Depending on the nature of the conflict and other political and social conditions, a well-planned and well-implemented disarmament component may see large numbers of combatants and persons associated with armed forces and groups arriving for dis- armament during the early stages of the DDR programme. The number of individuals reporting for disarmament may drop in the middle of the process, but it is prudent to plan for a rush towards the end. Late arrivals may report for disarmament because of improved confidence in the peace process or because some combatants and weapons have been held back until the final stages of disarmament as a self-protection measure. The minimum possible time should be taken to safely process combatants and persons associated with armed forces and groups through the disarmament and demobilization phases, and then back into the community. This swiftness is necessary to avoid a loss of momentum and to prevent former combatants and persons formerly associated with armed forces and groups from settling in temporary camps away from their communities. Depending on the context, individuals may leave armed groups and engage in spontaneous disarmament outside of official DDR programme and disarmament operations (see section 6.3). In such situations, DDR practitioners should ensure adher- ence to this disarmament standard as much as possible. To facilitate this spontaneous disarmament process, procedures and timelines should be clearly communicated to authorities, members of armed groups and the wider community.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9b64695e-7e6f-4451-93b2-d382ec853344", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 24, + "Paragraph": "Disarmament locations The planning of disarmament operations should be initiated at the peace negotiations stage when the appropriate modus operandi for disarming combatants and persons associated with armed forces and groups will be set out. The UN should support the national authorities in identifying the best disarmament approach. Mobile and static approaches have been developed to fit different contexts and constraints, and can be combined to form a multi-strand approach. Depending on the national strategy and the sequencing of DDR phases, the disarmament component may be intrinsically linked to demobilization, and sites for both activities could be combined (see IDDRS 4.20 on Demobilization). The selection of the approach, or combination of approaches, to take should be based on the following: Findings from the integrated assessment and weapons survey, including a review of previous approaches to disarmament (see section 5.1); Discussions and strategic planning by the national authorities; Exchanges with leaders of armed forces and groups; The security and risk assessment; Gender analysis; Financial resources. Notwithstanding the selection of the specific disarmament approach, all combatants and persons associated with armed forces and groups should be informed of: The time and date to report, and the location to which to report; Appropriate weapons and ammunition safety measures; The activities involved and steps they will be asked to follow; The level of UN or military security to expect on arrival.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "85ff4d25-439e-47ad-af4e-7c1f2ee19494", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 23, + "Paragraph": "Static disarmament Static or site-based (cantonment) disarmament uses specifically designed disarma- ment sites to carry out the disarmament operation. These require detailed planning and considerable organization and rely on the coordination of a range of implementing partners. The establishment and management of disarmament sites should be specif- ically included in the peace agreement to ensure that former warring factions agree and are aware that they have a responsibility under the peace agreement to proceed to such sites. Depending on the disarmament plan, geographic and security constraints, combatants and persons associated with armed forces and groups can move directly to disarmament sites, or their transportation can be organized through pick-up points. Pick-up points The role of pick-up points (PUPs) is to concentrate combatants and persons associated with armed forces and groups in a safe location, prior to a controlled and supervised move to designated disarmament sites. Administrative and safety processes begin at the PUP. There are similarities between procedures at the PUP and those carried out during mobile disarmament operations, but the two processes are different and should not be confused. Members of armed forces and groups that report to a PUP will then be moved to a disarmament site, while those who enter through the mobile disarmament route will be directed to make their way to demobilization. PUPs are locations agreed to in advance by the leaders of armed forces and groups and the UN mission military component. They are selected because of their conveni- ence, security and accessibility for all parties. The time, date, place and conditions for entering the disarmament process should be negotiated by commanders, the National DDR Commission and the DDR component in mission settings and the UN lead agen- cy(ies) in non-mission settings. Combatants often need to be moved from rural locations, and since many armed forces and groups will not have adequate transport, PUPs should be situated close to their positions. PUPs shall not be located in or near civilian areas such as villages, towns or cities. Special measures should be considered for children associated with armed forces and groups arriving at PUPs (see IDDRS 5.20 on Children and DDR). Gender-responsive provisions shall also be planned to provide guidance on how to process female combatants and WAAFG, including DDR/UN military staff composed of a mix of genders, separation of men and women during screening and clothing/ baggage searches at PUPs, and adequate medical support particularly in the case of pregnant and lactating women (see IDDRS 5.10 on Women, Gender and DDR). Disarmament operations should also include combatants and persons associated with armed forces and groups with disabilities and/or chronically ill and/or wounded who may not be able to access the PUPs. These persons may also qualify for disarmament, while re- quiring special transportation and assistance by specialists, such as medical staff and psy- chologists (see IDDRS 5.70 on Health and DDR and IDDRS 5.80 on Disabilities and DDR). Once combatants and persons associated with armed forces and groups have ar- rived at the designated PUP, they will be met by male and female UN representatives, including military and child protection staff, who shall arrange their transportation to the disarmament site. This first meeting between armed individuals and UN staff shall be considered a high-risk situation, and all members of armed forces and groups shall be considered potentially dangerous until disarmed. At the PUP, combatants and persons associated with armed forces and groups may either be completely disarmed or may keep their weapons during movement to the disarmament site. In the latter case, they should surrender their ammunition. The issue of weapons surrender at the PUP will either be a requirement of the peace agree- ment, or, more usually, a matter of negotiation between the leadership of armed forces and groups, the national authorities and the UN. The following activities should occur at the PUP: Members of the disarmament team meet combatants and persons associated with armed forces and groups outside the PUP at clearly marked waiting areas; personnel deliver a PUP briefing, explaining what will happen at the sites. Qualified personnel check that weapons are clear of ammunition and made safe, ensuring that magazines are removed; combatants and persons associated with armed forces and groups are screened to identify those carrying ammunition and explosives. These individuals should be immediately moved to the ammunition area in the disarmament site. Qualified personnel conduct a clothing and baggage search of all combatants and persons associated with armed forces and groups; men and women should be searched separately by those of the same sex. Combatants and persons associated with armed forces and groups with eligible weapons and safe ammunition pass through the screening area to the transport area, before moving to the disarmament site. The UN shall be responsible for ensuring the protection and physical security of combatants and persons asso- ciated with armed forces and groups during their movement from the PUP. In non-mission settings, the national security forces, joint commissions or teams would be responsible for the above-mentioned tasks with technical support from relevant UN agency(ies), multilateral and bilateral partners. Those individuals who do not meet the eligibility criteria for entry into the DDR programme should leave the PUP after being disarmed and, where needed, transport- ed away from the PUP. Individuals with defective weapons should hand these over, but, depending on the eligibility criteria, may not be allowed to enter the DDR programme. These individuals should be given a receipt that shows full details of the ineligible weapon handed over. This receipt may be used if there is an appeal process at a later date. People who do not meet the eligibility criteria for the DDR programme should be told why and orientated towards different programmes, if available, including CVR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce89f90c-b7be-4803-9b35-0df43b260562", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Mobile disarmament In certain circumstances, the establishment of a fixed disarmament site may be inap- propriate. In such cases, one option is the use of mobile disarmament, which usually consists of a group of modified road vehicles and has the advantage of decreased logis- tical outlay, increased flexibility, reduced cost, and rapid deployment and assembly. A mobile approach permits a more rapid response than site-based disarmament and can be used when weapons are concentrated in a specific geographical area, when moving collected arms, or when assembling scattered members of armed forces and groups would be difficult or trigger insecurity. This approach allows for more flexibil- ity and for the limited movement of armed combatants and persons associated with armed forces and groups who remain in their communities. Mobile disarmament may also be more accessible to women, children, disabled and other specific-needs groups. While mobile disarmament ensures the limited movement of unsafe ammunition, a sound mobile WAM and EOD capacity is required to collect and destroy items on site and to transport arms and ammunition to storage facilities.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "552a07d6-eb66-4b0e-bd3e-76ce9ec00547", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 28, + "Paragraph": "Procedures for disarmament A disarmament SOP should state the step-by-step procedures for receiving weapons and ammunition, including identifying who has responsibility for each step and the gender-responsive provisions required. The SOP should also include a diagram of the disarmament site(s) (either mobile or static). Combatants and persons associated with armed forces and groups are processed one by one. Procedures, to be adapted to the context, are generally as follows. Before entering the disarmament site perimeter: The individual is identified by his/her commander and physically checked by the designated security officials. Special measures will be required for children (see IDDRS 5.20 on Children and DDR). Men and women will be checked by those of the same sex, which requires having both male and female officers among UN military/DDR staff in mission settings and national security/DDR staff in non-mission settings. If the individual is carrying ammunition or explosives that might present a threat, she/he will be asked to leave it outside the handover area, in a location identified by a WAM/EOD specialist, to be handled separately. The individual is asked to move with the weapon pointing towards the ground, the catch in safety position (if relevant) and her/his finger off the trigger. After entering the perimeter: The individual is directed to the unloading bay, where she/he will proceed with the clearing of his/her weapon under the instruction and supervision of a MILOB or representative of the UN military component in mission settings or designated security official in a non-mission setting. If the individual is under 18 years old, child protection staff shall be present throughout the process. Once the weapon has been cleared, it is handed over to a MILOB or representative of the military component in a mission setting or designated security official in a non-mission setting who will proceed with verification. If the individual is also in possession of ammunition for small arms or machine guns, she/he will be asked to place it in a separate pre-identified location, away from the weapons. The materiel handed in is recorded by a DDR practitioner with guidance on weap- ons and ammunition identification from specialist UN agency personnel or other arms specialists along with information on the individual concerned. The individual is provided with a receipt that proves she/he has handed in a weapon and/or ammunition. The receipt indicates the name of the individual, the date and location, the type, the status (serviceable or not) and the serial number of the weapon. Weapons are tagged with a code to facilitate storage, management and record- keeping throughout the disarmament process until disposal (see section 7.1). Weapons and ammunition are stored separately or organized for transportation under the instructions and guidance of a WAM adviser (see section 7.2 and DDR WAM Handbook Unit 11). Ammunition presenting an immediate risk, or deemed unfit for transport, should be destroyed in situ by qualified EOD specialists.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "fe764492-be06-4337-bfd3-fa3d322b0183", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 29, + "Paragraph": "Spontaneous disarmament outside of official disarmament operations In some contexts, in order to encourage individuals to leave armed groups when there is no DDR programme, a modus operandi for receiving combatants and persons as- sociated with armed groups may be established. This may include the identification of a network of reception points, such as DDR offices or peacekeeping camps, or the deployment of mobile disarmament units. Procedures should be communicated to au- thorities, members of armed groups and the wider community on a regular basis to en- sure all are informed and sensitized (see Box 4 and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). In the case peacekeeping camps are designated as reception points, the DDR com- ponent \u2013 in coordination with the military component and the battalion commander \u2013 should identify specific focal points within the camp to deal with combatants and persons associated with armed groups. These focal points should be trained in how to handle and disarm new arrivals, including taking gender-sensitive approaches with women and age-sensitive approaches with children, and in how to register and store materiel until DDR practitioners take over. Unsafe items should be stored in a pre-iden- tified or purpose-built area as advised by DDR WAM advisers until specialized UN agency personnel or force EOD specialists can assess the safety of the items and rec- ommend appropriate action.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9924dafe-1e91-4dc3-8114-8cb022910809", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 30, + "Paragraph": "Stockpile management phase The term \u2018stockpile management\u2019 can be defined as procedures and activities designed to ensure the safe and secure accounting, storage, transportation and handling of arms, ammunition and explosives. The IATG and MOSAIC shall guide the design and implementation of this phase, and qualified WAM advisers should develop relevant SOP(s) (see section 5.6). The stockpile management and destruction of ammunition and explosives require a much more detailed technical response, as the risks and haz- ards are greater than for weapons, and stockpiles present a larger logistical challenge. Ammunition and explosives shall be handled only by those with the necessary technical competencies.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "7f223b1f-47ce-4041-8053-c27ee660a5c9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Accounting for weapons and ammunition The recordkeeping of weapons, ammunition and explosives during the disarma- ment phase of a DDR programme is critical to the effective management of materiel, to ensure the transparency of the DDR programme, and to monitor activities and pre- vent diversion. Information management systems (IMS) used by DDR components and lead UN agency(ies) supporting national authorities for registering combatants and accounting for weapons should provide sufficient recorded information to allow for precise identification and tracking of the movement of materiel from the point of col- lection to the point of disposal (see IDDRS 4.20 on Demobilization). In order to support effective recording, close-up and full-frame photographs should be taken of each piece of materiel wherever possible.6 In smaller disarmament operations or when IMS has not yet been set for the cap- ture of the above information, a separate simple database should be developed to man- age weapons, ammunition and explosives collected. For example, the use of a standard- ized Excel spreadsheet template which would allow for the effective centralization of data. DDR components and UN lead agency(ies) should dedicate appropriate resources to the development and ongoing maintenance of this database and consider the estab- lishment of a more comprehensive and permanent IMS where disarmament operations will clearly involve the collection of thousands of weapons and ammunition. Owner- ship of data by the UN, the national authorities or both should be decided ahead of the launch of the DDR programme. Data should be protected in order to ensure the security of DDR participants and stockpiles but could be shared with relevant UN entities for analysis and tracing pur- poses, as appropriate. In instances where the peace agreement does not prevent the formal tracing or investigation of the weapons and ammunition collected, specialized UN entities including Panels of Experts or a Joint Mission Analysis Centre may analyse information and send tracing requests to national authorities, manufacturing countries or other former custodians of weapons regarding the origins of the materiel. These", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "eb405aba-ea25-4815-8085-863b10c471b4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 31, + "Paragraph": "TABLE 3: RECORDING SALW, AMMUNITION AND EXPLOSIVES entities should be given access to weapons, ammunition and explosives collected and also check firearms against INTERPOL\u2019s Illicit Arms Records and tracing Management System (iARMS) database. Doing this would shed light on points of diversion, supply chains, and trafficking routes, inter alia, which may contribute to efforts to counter proliferation and illicit trafficking and support the overall objectives of DDR. Forensic analysis may also lead to investigations regarding the licit or illicit origin of the collect- ed weapons and possible linkages to terrorist organizations, in line with UN Security Council resolutions 2370 (2017) and 2482 (2019). In a number of DDR settings, ammunition is generally handed in without its orig- inal packaging and will be loose packed and consist of a range of different calibres. Ammunition should be segregated into separate calibres and then accounted for in accordance with IATG 03.10 on Inventory Management.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6b78c647-3074-440a-86e4-fed32b25765c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Transportation of weapons and ammunition The transportation of dangerous goods from disarmament sites to storage areas should be planned in order to mitigate the risk of explosions and diversions. A WAM adviser should supervise the organization of materiel: arms and ammunition should be trans- ported separately and moved in different shipments. Similarly, whenever advisable for security reasons and practicable in terms of time and capacity, the weapons to be trans- ported should be made temporarily inactive by removing a principal functional part (e.g., bolt, cylinder, slide) and providing for separate transportation of ammunition, ultimately in a different shipment or convoy. All boxes and crates containing weapons or ammunition should be secured and sealed prior to loading onto transport vehicles. As most DDR materiel is transported by road, security of transportation should be ensured by the UN military component in mission settings or by national security forces or by designated security officials in non-mission settings. In the absence of qualified personnel, all ammunition and explosives other than small arms and machine gun ammunition7 should not be transported. In such cases, SOPs should provide directions and WAM advisers should be contacted to confirm instructions on how and where the remaining ammunition should be stored until rel- evant personnel are able to come and transport it or destroy it in situ. Upon receipt, the shipment should be checked against the DDR weapons and ammunition database, which should be updated accordingly, and a handover declara- tion should be signed.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1fd581bd-ce3d-4a79-85d8-aa643aa3736d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Storage The safety and security of collected weapons, ammunition and explosives shall be a primary concern. This is because the diversion of materiel or an unplanned stor- age explosion would have an immediate negative impact on the credibility and the objectives of the whole DDR programme, while also posing a serious safety and secu- rity risk. DDR programmes very rarely have appropriate storage infrastructure at their disposal, and most are therefore required to build their own temporary structures, for example, using shipping containers. Conventional arms and ammunition can be stored effectively and safely in these temporary facilities if they comply with international guidelines including IATG 04.10 on Field Storage, IATG 04.20 on Temporary Storage and MOSAIC 5.20 on Stockpile Management. The stockpile management phase shall be as short as possible. The sooner that collected weapons and ammunition are disposed of (see section 8), the better in terms of (1) security and safety risks; (2) improved confidence and trust; and (3) a lower requirement for personnel and funding. Post-collection storage shall be planned before the start of the collection phase with the support of a qualified DDR WAM adviser who will determine the size, location, staff and equipment required based on the findings of the integrated assessment (see section 5.1). The SOP should identify the actors responsible for securing storage sites, and a risk assessment shall be conducted by a WAM adviser in order to determine the optimal locations for storage facilities, including appropriate safety distances. The assessment shall also help identify priorities in terms of security measures to be adopted with regard to physical protection (see DDR WAM Handbook Unit 16). The content of DDR storage sites shall be checked and verified on a regular basis against the DDR weapons and ammunition database (see section 7.3.1). Any suspected loss or theft shall be reported immediately and investigated according to the SOP (see MOSAIC 5.20 for an investigative report template as well as UN SOP Ref.2017.22 on Loss of Weapons and Ammunition in Peace Operations). Weapons and ammunition must be taken from a store only by personnel who are authorized to do so. These personnel and their affiliation should be identified and authenticated before removing the materiel. The details of personnel removing and returning materiel should be recorded in a log, identifying their name, affiliation and signature, dates and times, weapons/ammunition details and the purpose of removal.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "72a518b4-d337-40b6-a80d-5f51cd742d06", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 33, + "Paragraph": "Storing weapons The storage of weapons is less technical than that of ammunition and explosives, with the primary risks being loss and theft due to poor management. Although options for security measures are often quite limited in the field, in order to prevent or delay theft, containers should be equipped with fixed racks on which weapons can be secured with chains or steel cables affixed with padlocks. Some light weapons that contain explosive components, such as man-portable air-defence systems, will present explo- sive hazards and should be stored with other explosive materiel, in line with guidance on Compatibility Groups as defined by IATG 01.50 on UN Explosive Hazard Classifi- cation Systems and Codes. To allow for effective management and stocktaking, weapons that have been collected should be tagged. Most DDR programmes use handwritten tags, including the serial number and a tag number, which are registered in the DDR database. How- ever, this method is not effective in the long term and, more recently, DDR components have been using purpose-made bar code tags, allowing for electronic reading, includ- ing with a smartphone. A physical stock check by number and type of arms should be conducted on a weekly basis in each storage facility, and the serial numbers of no less than 10 per cent of arms should be checked against the DDR weapons and ammunition database. Every six months, a 100 per cent physical stock check by quantity, type and serial number should be conducted, and records of storage checks should be kept for review and audit processes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f92b6756-cf40-492f-a26f-96cf1e3d387a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 33, + "Paragraph": "Storing ammunition and explosives The storage of ammunition and explosives, other than for small arms and machine guns (1.4 UN Hazard Division), requires highly qualified personnel, as the risks re- lated to this materiel are substantial. Technical guidance to minimize the risk of acci- dents and their effects is very specific with regard to storing ammunition and explo- sives in line with Compatibility Groups (see IATG 01.50) and distances (see IATG 2.20). Ammunition collected during the disarmament phase of a DDR programme is often of unknown status and may have been stored in non-optimal environmental condi- tions (e.g., high temperature/high humidity) that render ammunition unsafe. A thorough risk assessment of ammunition storage facilities shall be carried out by the WAM adviser. A range of quantitative and qualitative methods for this assessment are avail- able in IATG 2.10. In accordance with the IATG, all ammunition storage facilities should be at a min- imum of Risk-Reduction Process Level 1 compliance (see IATG 12.20) in order to miti- gate the risk of explosions and diversion. A physical stock check by quantity and type of ammunition should be conducted on a weekly basis. An accessible demolition area that can be used for the destruction of ammunition deemed unsafe and at risk of detonation or deflagration should be identified.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "71f602e5-f5ac-4460-8609-d5c81ba26f2e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 34, + "Paragraph": "Disposal phase Destruction shall be the preferred method of disposal of materiel collected through DDR. However, other options may be possible, including the transfer of materiel to national stockpiles and the deactivation of weapons. Operations should be safe, cost-ef- fective and environmentally benign.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "4b4f211f-5e94-4a53-bd10-03120c007c5f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 34, + "Paragraph": "Destruction of materiel Destruction reduces the flow of illicit arms and ammunition in circulation and removes the risk of materiel being diverted (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). Arms and ammunition that are surrendered during disarmament operations are in an unknown state and likely hazardous, and their markings may have been altered or removed. The destruction of arms and ammu- nition during a DDR programme is a highly symbolic gesture and serves as a strong confidence-building measure if performed and verified transparently. Furthermore, destruction is usually less financially burdensome than storing and guarding arms and ammunition in accordance with global guidelines. Obtaining agreement from the appropriate authorities to proceed usually takes time, resulting in delays and related risks of diversion or unplanned explosions. Dis- posal methods should therefore be decided upon with the national authorities at an early stage and clearly stated in the national DDR programme. Transparency in the disposal of weapons and ammunition collected from former warring parties is key to building trust in DDR and the entire peace process. A clear plan for destruction should be established by the DDR component or the lead UN agency(ies) with the support of WAM advisers, including the most suitable method for destruction (see Annex E), the development of an SOP, the location, as well as options for the processing and monitoring of scrap metal recycling, if relevant, and the associated costs of the destruction process. The plan shall also provide for the mon- itoring of the destruction by a third party to ensure that the process was efficient and that all materiel is accounted for to avoid diversion. The physical destruction of weap- ons is much simpler and safer than the physical destruction of ammunition, which requires highly qualified personnel and a thorough risk assessment.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9ace6f10-09c0-4bbe-9f9b-50d9f1d9608f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 34, + "Paragraph": "Destruction of weapons In most existing DDR programmes, due to the absence of an industrial steel smelting facility to melt down small arms, cutting is the preferred method of destruction, par- ticularly where quantities of weapons are limited and where it is logistically easier and safer to take the cutting tool to the weapons rather than vice versa. If not done correctly, cutting carries the risk that the parts may be re-used to produce new weapons. Cutting is also labour intensive and produces significant quantities of scrap metal. (See Annex E to select the most suitable method of destruction.) With regard to heavy weapons, demilitarization by dismantling and recycling should be the preferred disposal option for the majority of these systems. The market for conversion to civilian use is very limited. This is because sale is also a prolifera- tion risk and reputable end users are rare. The demilitarization by dismantling and recycling technique involves the cleaning and dismantling/cutting of the vehicle but results in significant quantities of scrap. If a large quantity of heavy weapons is to be destroyed, financial planning could include the value of the scrap recovered.8 It is also important to maintain strict control over weapons designated for destruction to prevent the risk of their entry into the illicit market before the destruction takes place.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "757304d4-15df-4137-8e95-a6101330afec", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 33, + "Paragraph": "Destruction of ammunition The safe destruction of recovered ammunition and explosives presents a variety of technical challenges, and the demolition of a large number of explosive items requires a significant degree of training. Risks inherent in destruction are significant if the pro- cedure does not comply with strict technical guidelines (see IATG 10.10), including casualties and contamination. During the disarmament phase of a DDR programme, ammunition may need to be destroyed either at the collection point (PUP, disarmament site) because it is unsafe, or after being transferred to a secure DDR storage facility. Ammunition destruction requires a strict planning phase by WAM/EOD advisers or engineers who should identify priorities, obtain authorization from the national au- thorities, select the most appropriate method (see Annex E) and location for destruc- tion, and develop a risk assessment and security plan for the operation. The following types of ammunition should be destroyed as a priority: (a) ammunition that poses the greatest risk in terms of explosive safety, (b) ammunition that is attractive to criminals or armed groups, (c) ammunition that must be destroyed in order to comply with inter- national obligations (for instance, anti-personnel mines for States that are party to the Mine Ban Treaty) and (d) small arms and machine gun ammunition less than 20 mm. After destruction, decontamination operations at demolition sites and demilitarization facilities should be undertaken to ensure that all recovered materials and other gen- erated residues, including unexploded items, are appropriately treated, and that scrap and empty packaging are free from explosives.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "9c94697b-bc5e-4250-88c6-732a38d10f26", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Transfers to national authorities National authorities may insist that serviceable materiel collected during disarmament should be incorporated into national stockpiles. Reasons for this may be linked to a lack of resources to acquire new materiel, the desire to regain control over materiel previously looted from national stockpiles or the existence of an arms embargo making procurement difficult. Before transferring arms or ammunition to the national authorities, the DDR component or lead UN agency(ies) shall take account of all obligations under relevant regional and international instruments as well as potential UN arms embargos and should seek the advice of the mission\u2019s or lead UN agency(ies) legal adviser (see IDDRS 2.11 on The Legal Framework for UN DDR). If the host State is prohibited from using or possessing certain weapons or ammunition (e.g., mines or cluster munitions), such ma- teriel shall be destroyed. Furthermore, in line with the UN human rights due diligence policy, materiel shall not be transferred where there are substantial indications that the consignee is committing grave violations of international humanitarian, human rights or refugee law. WAM advisers should explain to the national authorities the potential negative consequences of incorporating DDR weapons and ammunition into their stockpiles. These consequences not only include the symbolic connotations of using conflict weap- ons, but also the costs and operational challenges that come from the management of materiel that differs from standard equipment. The integration of ammunition into national stockpiles should be discouraged, as ammunition of unknown origin can be extremely hazardous. A technical inspection of weapons and ammunition should be jointly carried out by both UN and national experts before handover to the national authorities. Finally, weapons handed over to national authorities should bear markings made at the time of manufacture, and best practice recommends the destruction or remark- ing of weapons whose original markings have been altered or erased. Weapons should be registered by the national authorities in line with international standards.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a9c588f3-9282-4f46-96bf-fabce9d94677", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 36, + "Paragraph": "8.3 Deactivation of weapons The deactivation of arms involves rendering the weapon incapable of expelling or launching a shot, bullet, missile or other projectile by the action of an explosive, that cannot be readily restored to do so, and that has been certified and marked as deacti- vated in compliance with international guidelines by a competent State authority. De- activation requires that all pressure-bearing components of a weapon be permanently altered in such a way so as to render the weapon unusable; this includes modifications to the barrel, bolt, cylinder, slide, firing pin and/or receiver/frame. Weapons that have not been properly deactivated represent a significant threat, as they may be reactivated and used by criminals and terrorists.9 While destruction of weapons should be the preferred method of disposal, deac- tivation could be stipulated as part of a peace agreement where some of the collected weapons would be used in museum settings, or to create \u2018peace art\u2019 or monuments, to symbolically reflect the end of armed conflict. The process of deactivation should occur rapidly after a peace agreement so that weapons do not remain indefinitely in stores incurring unnecessary costs and raising the risk of diversion.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "58686ad5-12bc-4903-83b8-9a22d7097942", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 38, + "Paragraph": "Annex C: Weapons survey Source: DDR WAM Handbook, Unit 13 A weapons survey can take more than a year from the time resources are allocated and mobilized to completion and the publication of results and recommendations. The survey must be designed, implemented and the results applied in a gender responsive manner.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "c024bf11-1920-454a-b01c-eb3466ac3f16", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": null, + "Paragraph": "Who should implement the weapons survey? While the DDR component and specialized UN agencies can secure funding and coor- dinate the process, it is critical to ensure that ownership of the project sits at the national level due to the sensitivities involved, and so that the results have greater legitimacy in informing any future national policymaking on the subject. This could be through the National Coordinating Mechanism on SALW, for example, or the National DDR Commission. Buy-in must also be secured from local authorities on the ground where research is to be conducted. Such authorities must also be kept informed of develop- ments for political and security reasons. Weapons surveys are often sub-contracted out by UN agencies and national authorities to independent and impartial research organizations and/or an expert consultant to design and coordinate the survey components. The survey team should include independent experts and surveyors who are nationals of the country in which the DDR component or the UN lead agency(ies) is operating and who speak the local language(s). The implementation of weapons surveys should always serve as an oppor- tunity to develop national research capacity.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "0cccff93-c801-4768-9bfc-cdc0befdbe7b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": null, + "Paragraph": "What information should be gathered during a weapons survey? Weapons surveys can support the design of multiple types of activities related to SALW control in various contexts, including those related to DDR. The information collected during this process can inform a wide range of initiatives, and it is therefore important to identify other UN stakeholders with whom to engage when designing the survey to avoid duplication of effort. Components Contextual analysis: conflict analysis; mapping of armed actors; political, economic, social, environmental, cultural factors. Weapons distribution assessment: types; quantities; possession by men, women and children; movements of SALW; illicit sources of weapons and ammunition; potential locations of materiel and caches. Impact survey: impact of weapons on children, women, men, vulnerable groups, DDR beneficiaries etc.; social and economic developments; number of acts of armed violence and victims. Perception survey: attitudes of various groups towards weapons; reasons for armed groups holding weapons; alternatives to weapons possession, etc. Capacity assessment: community, local, national coping mechanism; legal tools; security and non-security responses.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3898f50a-0b2a-4546-82f8-db70fd247149", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 39, + "Paragraph": "Methodology The survey should draw on a variety of research methods and sources in order to collate, compare and confirm information \u2013 e.g., desk research, collection of official quantitative data (including crime and health data related to firearms), and interviews with key informants such as national security and defence forces, community leaders, representatives of civilian groups (including women, youth and professionals) affected by armed violence, armed groups, foreign analysts and diplomats. The main component of the survey should be the perception survey (see above) \u2013 i.e., the administration of a questionnaire. A representative sample is to be deter- mined by an expert according to the target population. The questionnaire should be developed and administered by a research team including male and female nationals, ensuring respect for ethical considerations and gender and cultural sensitivities. The questionnaire should not take more than 30 minutes to administer, and careful thought should be given as to how to frame the questions to ensure maximum impact (see Annex C of MOSAIC 5.10 for a list of sample questions). A survey can help the DDR component to identify interventions related to disar- mament of combatants or ex-combatants, but also to CVR and other transitional pro- gramming. Among others, the weapons survey will help identify the following: Communities particularly affected by weapons availability and armed violence. Communities particularly affected by violence related to ex-combatants. Communities ready to participate in CVR and the types of programming they would like to see developed. Types of weapons and ammunition in circulation and in demand. Trafficking routes and modus operandi of weapons trafficking. Groups holding weapons and the profiles of combatants. Cultural and monetary values of weapons. Security concerns and other negative impacts linked to potential interventions.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.json b/src/Static/data/json/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.json new file mode 100644 index 0000000..e81a828 --- /dev/null +++ b/src/Static/data/json/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.json @@ -0,0 +1,534 @@ +[ + { + "ID": "ecf2566d-4ee4-4677-9bb5-c96a5dfe517a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": null, + "Paragraph": "Summary DDR practitioners increasingly operate in contexts with fragmented but well-equipped armed groups and acute levels of proliferation of illicit weapons, ammunition and ex- plosives. In settings where armed conflict is ongoing and peace agreements have been neither signed nor implemented, disarmament as part of a DDR programme may not be the most suitable approach to control the circulation of weapons, ammunition and explosives because armed groups may be reluctant to disarm without strong security guarantees (see IDDRS 4.10 on Disarmament). Instead, these contexts require the de- sign and implementation of innovative DDR-related tools, such as transitional weapons and ammunition management (WAM). When implemented as part of a DDR process (either with or without a DDR pro- gramme), transitional WAM has two primary aims: to reduce the capacity of individ- uals and groups to engage in armed conflict, and to reduce accidents and save lives by addressing the immediate risks related to the illicit possession of weapons, ammuni- tion and explosives. By supporting better arms control and preventing the diversion of weapons, ammunition and explosives to unauthorized end users, transitional WAM can be a strong component of the sustaining peace approach and contribute to pre- venting the outbreak, escalation, continuation and recurrence of conflict (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). In settings where a peace agreement has been signed and the necessary preconditions for a DDR programme are in place, transitional WAM can also be used before, during and after DDR programmes as a complementary measure (see IDDRS 2.10 on The UN Approach to DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "40ab9b33-b6b5-44fb-b399-28faf17ae1be", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": null, + "Paragraph": "Module scope and objectives As shown in Figure 1, DDR arms control activities include: (1) disarmament as part of a DDR programme and (2) transitional WAM as a DDR-related tool. This sub-module, which should be read as a complement to IDDRS 4.10 on Disarmament, aims to equip DDR practitioners with the basic legal, programmatic and technical knowledge to de- sign and implement safe and effective transitional WAM in both mission and non-mis- sion contexts. This sub-module also provides guidance on how transitional WAM implemented as part of a DDR process should align with and reinforce security sector reform (SSR), as well as national small arms and light weapons (SALW) control strategies.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1af7832d-c93b-4cf0-88c0-f38526f6b0f1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": null, + "Paragraph": "When collecting, registering, storing, transporting, and disposing of weapons, ammunition and explosives during transitional WAM the core guidelines outlined in IDDRS 4.10 on Disarmament apply. As such, DDR-related transitional WAM should always adhere to United Nations standards and guidelines, namely the Modular small- arms-control Implementation Compendium (MOSAIC) and International Ammunition Technical Guidelines (IATG).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "19cda30e-4e78-41fd-a4af-f9db04ff342c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 3, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Weapons and ammunition management (WAM) is the oversight, accountability and management of arms and ammunition throughout their lifecycle, including the estab- lishment of frameworks, processes and practices for safe and secure materiel acquisi- tion, stockpiling, transfers, tracing and disposal.1 WAM does not only focus on small arms and light weapons, but on a broader range of conventional weapons including ammunition and artillery. Transitional WAM is a series of interim arms control measures that can be imple- mented by DDR practitioners before, after and alongside DDR programmes. Transi- tional WAM can also be implemented when the preconditions for a DDR programme are absent. The transitional WAM component of a DDR process is primarily aimed at reducing the capacity of individuals and groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives. Light weapon: Any man-portable lethal weapon designed for use by two or three per- sons serving as a crew (although some may be carried and used by a single person) that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, heavy machine guns, hand-held under-barrel and mounted grenade launchers, portable anti-aircraft guns, portable anti-tank guns, re- coilless rifles, portable launchers of anti- tank missile and rocket systems, portable launchers of anti-aircraft missile systems, and mortars of a calibre of less than 100 millimetres, as well as their parts, components and ammunition. Note 2: Excludes antique light weapons and their replicas. Small arm: Any man-portable lethal weapon designed for individual use that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, re- volvers and self-loading pistols, rifles and carbines, sub-machine guns, assault rifles and light machine guns, as well as their parts, components and ammunition. Note 2 Excludes antique small arms and their replicas.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "65a28904-cbbd-4de1-81e2-a3588e1ebba4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 4, + "Paragraph": "Introduction DDR processes are increasingly launched in contexts where members of armed groups and communities are unwilling to disarm because of concerns for their security. In such situations, communities and individuals may take their own security measures, including through increased weapons ownership. Some armed groups may also be characterized as community self-defence forces or \u2018vigilante groups\u2019. The ownership of weapons, ammunition and explosives by individuals and armed groups carries a number of risks. For example, if armed groups store incompatible types of ammunition together then it may lead to explosions and surrounding loss of life. Furthermore, inadequately secured weapons and ammunition can facilitate inter-personal armed violence, including sexual and gender-based violence, as well as theft and diversion to the illicit market. In order to contribute to a more secure environment that is conducive to long-term stability, development and reconciliation, DDR practitioners may consider the use of transitional WAM. Transitional WAM may be used as an alternative to disarmament as part of a DDR programme or it can also be used before, during or after a DDR pro- gramme as a complementary measure. In both contexts, a multifaceted approach is required that addresses both the root causes of armed violence and the means through which that violence is perpetrated. Transitional WAM may therefore also be used in combination with programmes of Community Violence Reduction, particularly when these programmes include for- mer combatants or individuals at-risk of recruitment by armed groups (see IDDRS 2.30 on Community Violence Reduction). Finally, transitional WAM may also be used in combination with activities that support the reintegration of former combatants and persons formerly associated with armed groups (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "47737e68-9879-4947-a081-d1c314e55b11", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to tran- sitional WAM as part of a DDR process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f42ed5cb-5d22-4619-a677-ddde2b75d3a3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 5, + "Paragraph": "Voluntary Transitional WAM as part of a DDR process shall be implemented on a voluntary basis and, where appropriate, through engaging communities and armed forces and groups to identify issues and design solutions.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b4ad83e1-1163-40b3-a918-49476bffb98b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 5, + "Paragraph": "Gender-responsive and inclusive Transitional WAM shall not introduce distinctions based on age, sex, race, ethnicity, religion or other arbitrary criteria that may create or exacerbate vulnerabilities and power imbalances. DDR practitioners shall ensure that the gendered dimensions of WAM and its links to gender identities, as well as the differing impacts on men and women and their perceptions of weapons, ammunition and explosives, are adequately integrated into all stages of arms control initiatives. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data as well as considerations related to children. DDR practitioners shall also adopt a gender-transformative approach, including through interventions and messages on the linkages between masculinities and weapons ownership, and by ensuring that both men and women are involved in the design and implementation of transitional WAM.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "86536f56-8a2c-4d8b-89f9-e10f6a1547be", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 5, + "Paragraph": "Conflict sensitive Transitional WAM shall not increase the vulnerability of communities, groups (including ethnic and religious minorities), or individuals to internal or external threats by desta- bilizing the distribution of power. All precautions shall also be taken to avoid reinforcing or generating inequalities based on age and gender.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f50c8f1e-7e39-4eae-af18-dc472ad2a04e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 6, + "Paragraph": "Nationally and locally owned National Governments have the right and responsibility to apply their own national standards to all transitional WAM measures within their territories and shall act in compliance with relevant international and (sub)-regional arms control instruments and applicable legal frameworks (see section 5.2). The primary responsibility for transi- tional WAM lies with the Government of the concerned State. The support and special- ist knowledge of the UN is placed at the disposal of a national Government to ensure that the planning and implementation of transitional WAM are conducted in ac- cordance with international arms control instruments, standards and guidance, in- cluding those of the IDDRS, the IATG and MOSAIC. Transitional WAM shall be de- signed and implemented in coordination with, and in support of, national arms control policies and management systems. Building national and local institutional and technical WAM capacity is essential to effective and sustainable arms control ef- forts and, where relevant could support SSR processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e045339a-1b9e-4989-aeaa-69471c4e1e69", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 6, + "Paragraph": "Integrated Transitional WAM shall be coordinated with all other aspects of an integrated DDR process as well as with other components of the broader peace process, including, ceasefires and arms control measures associated with transitional security arrange- ments, arms embargo measures where existent and applicable, SSR and SALW control.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "32269a6d-bdfe-40bc-81c2-daee1476d49f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 6, + "Paragraph": "Safety and security Handling weapons, ammunition and explosives comes with high levels of risk. The involvement of technically and appropriately qualified WAM personnel in the planning and implementation of transitional WAM is absolutely critical. Techni- cal advisers shall have formal training and operational field experience in ammu- nition and weapons storage, marking, transportation, deactivation and disposal including the destruction of weapons, ammunition and explosives.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "662a27fd-8fe5-45fc-83ce-d4ea37fdc1b1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 6, + "Paragraph": "Planning and designing transitional WAM Meticulous assessments, planning and monitoring are required in order to implement effective, evidence-based, tailored, gender- and age-responsive transitional WAM as part of a DDR process. Such an approach includes a contextual analysis, age and gen- der analysis, a risk and security assessment, the development of standard operating procedures (SOPs), the identification of technical and logistical resources, and a timeta- ble for operations and public awareness activities (see IDDRS 4.10 on Disarmament for guidance on these activities). The planning for transitional WAM should be articulated in the DDR national strategy, arms control strategy and/or broader national security strategy. If the context is a UN mission setting, the planning for transitional WAM should also be articulated in the mission concept, lower-level strategies and vision doc- uments of the UN mission. Importantly, DDR-related transitional WAM must not be designed in isolation from other arms control or related initiatives run by the national authorities and their international partners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "c5334061-bf97-44b7-8e03-bfa3473250ae", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 7, + "Paragraph": "Assessments and weapons survey The design, modalities and objectives of transitional WAM as part of a DDR process vary according to the political and security context, the level of proliferation of weap- ons, ammunition and explosives, the weapons culture and societal perspectives, gen- dered experiences of WAM, and the timing and sequencing of other initiatives (which may include a DDR programme, DDR-related tools, and/or reintegration support) (see IDDRS 2.10 on The UN Approach to DDR). Integrated assessments should start as early as possible in the peace negotiation process and in the pre-planning phase (see IDDRS 3.11 on Integrated Assessments). An integrated assessment should contribute to determining whether any disarmament or transitional WAM measures are desirable or feasible in the current context, and the po- tential positive and negative impacts of any such measures (see section 5.1.1 of IDDRS 4.10 on Disarmament for guidance on integrated assessments). In addition, DDR practitioners can commission a weapons survey (the same weap- ons survey outlined in section 5.1.2 and Annex C of IDDRS 4.10 on Disarmament) and draw information from national injury surveillance systems (see section 5.5.2 of MO- SAIC 05.10). Weapons surveys and injury surveillance are essential in order to draw up effective and safe plans for both disarmament and transitional WAM. A weapons survey and injury surveillance system also allow DDR practitioners to scope the extent of the WAM task ahead and to gauge national and local expectations concerning the transitional WAM measures to be carried out. This knowledge helps to ensure tailored programming and results. Data disaggregated by sex and age is a prerequisite for un- derstanding age- and gender-specific attitudes towards weapons, ammunition and ex- plosives, and their age- and gender-specific impacts. This type of data is also necessary to design evidence-based, and age- and gender-sensitive responses. The early collection of data also provides a baseline for DDR monitoring and eval- uation activities. These baseline indicators should be adjusted in line with evolving conflict dynamics. Monitoring and evaluation are crucial to ensure accountability and the effective implementation and management of transitional WAM. For more detailed guidance on monitoring and evaluation, refer to Box 2 of IDDRS 4.10 on Disarmament, IDDRS 3.50 on Monitoring and Evaluation of DDR and section 5.5 of MOSAIC 05.10. Once reliable information has been gathered, collaborative transitional WAM plans can be drawn up by the national DDR commission and the UN DDR component in mission settings and by the national DDR commission and the UN lead agency(ies) in non-mission settings. These plans should outline the intended target populations and requirements for transitional WAM, the type of WAM measures and operations that are planned, a timetable, and logistics, budget and staffing needs.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0812a2b5-a938-4493-9527-0baa1a50e8f4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 8, + "Paragraph": "National, regional and international regulatory framework DDR-related transitional WAM shall be conducted in compliance with the national legislation of the concerned country and relevant international and regional legal frame- works, as well as complying with any reporting requirements under relevant sub-/ regional and international instruments. Compliance with provisions specifically designed to promote gender equality, in particular, the empowerment of women, and the prevention of serious acts of armed violence against women and girls is especially critical.2 So too is compliance with provisions designed to support youth engagement and participation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "88c4c07a-aedd-4610-8ac9-3bf2ddc062ee", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 8, + "Paragraph": "National legislation Many countries have national legislation regulating all or parts of the life cycle of weap- ons, ammunition and explosives, including manufacture, marking, import, export, re- cord-keeping and civilian possession. Often, if States have ratified/adopted global and regional treaties and instruments, then relevant provisions of these instruments will be reflected in their national legislation. There may, however, be some variation in the extent to which States have developed or updated this legislation. In addition to legislation, national authorities may have developed national weap- ons and ammunition normative frameworks and/or operational guidance documents, including a SALW national action plan and SOPs in accordance with the IATG and MOSAIC. These standards, strategies, national action plans and/or strategic and oper- ational guidance documents should, at an early stage, be taken into consideration when planning and executing transitional WAM as part of a DDR process.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "346eba7a-904a-471e-b012-8f5c65efdd47", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 8, + "Paragraph": "Legally binding instruments The regional and global instruments referred to below are legally binding. DDR prac- titioners should therefore identify which instruments are applicable to the country in which they operate. Regional instruments Several regional, legally binding instruments have been adopted to support the imple- mentation of the UN Programme of Action to Prevent, Combat and Eradicate the Illicit Trade in SALW in All Its Aspects (see below).3 International instruments The Protocol against the Illicit Manufacturing of and Trafficking in Firearms, Their Parts and Components and Ammunition, which supplements the UN Con- vention against Transnational Organized Crime, was adopted in the context of crime prevention and law enforcement. State parties to the legally binding treaty agreed to prevent, combat and eradicate the illicit manufacturing of and traffick- ing in firearms, their parts and components and ammunition. The Arms Trade Treaty regulates the international legal trade in conventional arms and seeks to prevent and eradicate their diversion to the illicit market by es- tablishing international standards governing arms transfers. The Treaty addresses the relationship between conventional arms transfers and the commission of gen- der-based violence. It requires States parties to assess the risk of the transferred conventional arms being used to commit or facilitate serious acts of gender-based violence or serious acts of violence against women and children. United Nations human rights conventions, such as the International Covenant on Civil and Political Rights, as interpreted by their universal oversight mechanisms, require States to curb the proliferation of small arms and regulate access to them as part of the duty to protect the right to life. Other binding instruments may be relevant, including the Anti-Personnel Mine Ban Convention, the Convention on Certain Conventional Weapons and the Conven- tion on Cluster Munitions. Security Council resolutions related to counter-terrorism as well as the Security Council\u2019s 2015 Madrid Guiding Principles and its 2018 Addendum may also be relevant.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce4a6f31-f2d8-49dd-a90e-a9fb333be169", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 9, + "Paragraph": "Politically binding instruments The UN Programme of Action to Prevent, Combat and Eradicate the Illicit Trade in Small Arms and Light Weapons in All Its Aspects (PoA) addresses the illicit trade in SALW with the objective of reducing human suffering. The PoA consists of commit- ments at the national, regional and global levels to combat the illicit trade in SALW. The International Tracing Instrument, which was adopted within the framework of the PoA, promotes the development of marking, record-keeping and tracing meas- ures for SALW. The Basic Principles on the Use of Force and Firearms by Law Enforcement Offi- cials is also relevant for planning and designing transitional WAM where inter-linkages between SSR and DDR exist.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3ec10b98-70cf-4605-9019-da9c0128187b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 10, + "Paragraph": "Gender-sensitive transitional WAM Women, men, children, adolescents and youth play an instrumental role in the imple- mentation of transitional WAM as part of a DDR process, including through encourag- ing family, community members and members of armed forces and groups to partic- ipate. Gender- and age-responsive transitional WAM is proven to be more effective in addressing the impacts of the illicit circulation and misuse of weapons, ammunition and explosives than transitional WAM that is gender or age blind. Gender and age mainstreaming is essential to assuring the overall success of DDR processes. DDR practitioners should involve women, children, adolescents and youth from affected communities in the planning, design, implementation, and monitoring and eval- uation phases of transitional WAM. Women can, for example, contribute to raising aware- ness of the risks associated with weapons ownership and ensure that rules adopted by the community, in terms of weapons control, are effective and enforced. As the owners and users of weapons, ammunition and explosives are predominantly men, including youth, communication and outreach efforts should focus on dissociating arms ownership from notions of power, protection, status and masculinity. For this type of gender- and age-transformative transitional WAM to be effective, it should be linked to other DDR- related tools, such as CVR, pre-DDR, and DDR support to mediation (see section 6). To ensure that transitional WAM is gender- and age-responsive, DDR practitioners should focus on the following areas of strategic importance: (a) the involvement of both men and women at all stages of transitional WAM, as well as children, adolescents and youth where appropriate; (b) the collection of sex- and age-disaggregated data and gender and age analysis as a baseline for understanding challenges and needs; (c) the measurement of progress through the development of age- and gender-sensitive in- dicators; (d) the enhancement of the gender competence and commitment to gender equality among programme staff and national partners, including the national DDR commission and other relevant bodies; (e) ensuring organizational structures, work- flows and knowledge management are responsive to different environments; (f) work- ing with partners to strengthen age- and gender-responsiveness, including women\u2019s, men\u2019s and youth networks and organizations; and (g) gender- and age-sensitive pro- gramme monitoring and evaluation exercises. Specific guidance can be found in ID- DRS 5.10 on Women, Gender and DDR, as well as in MOSAIC Module 06.10 on Women, Men and the Gendered Nature of SALW and MOSAIC Module 06.20 on Children, Ad- olescents, Youth and SALW. (See Annex B for other normative references.)", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "13a26f32-e65d-41bb-8e90-b3cb5a76e82f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 10, + "Paragraph": "Transitional WAM as a DDR-related tool When part of a DDR process, transitional WAM should be considered when there is a need to respond to the presence of active and/or former members of armed groups. For example, transitional WAM may be appropriate when: Armed groups refuse to disarm as the pre-conditions for a DDR programme are not in place. Former combatants and/or persons formerly associated with armed groups return to their communities with weapons, ammunition and/or explosives, perhaps be- cause of ongoing insecurity or because weapons possession is a cultural practice or tied to notions of power and masculinity. Weapons and ammunition are circulating in communities and pose a security threat, especially where: Civilians, including in certain contexts children, are at-risk of recruitment by armed groups; Civilians, including women, girls, men and boys, are at risk of serious interna- tional crimes, including conflict-related sexual violence. Former combatants and/or persons formerly associated with armed groups are about to return as part of DDR programmes. While transitional WAM should always aim to remove or facilitate the legal regis- tration of all weapons in circulation, the reality of weapons culture and the desire for self-protection and/or empowerment should be recognized, with transitional WAM options and objectives identified accordingly. A generic typology of DDR-related tran- sitional WAM measures is found in Table 1. When reference is made to the collec- tion, registration, storage, transportation and/or disposal, including the destruction, of weapons, ammunition and explosives during transitional WAM, the core guidelines outlined in IDDRS 4.10 on Disarmament apply. In addition to the generic measures outlined above, in some instances DDR practi- tioners may consider supporting the WAM capacity of armed groups. DDR practition- ers should exercise extreme caution when supporting armed groups\u2019 WAM capacity. While transitional WAM may help to build trust with national and international stake- holders and address some of the immediate risks with regard to the proliferation of weapons, ammunition and explosives, building the WAM capacity of armed groups carries certain risks, and may inadvertently reinforce the fighting capacity of armed groups, legitimize their status, and tarnish the UN\u2019s reputation, all of which could threaten wider DDR objectives. As a result, any decision to support armed groups\u2019 WAM capacity shall consider the following: This approach must align with the broader DDR strategy agreed with and approved by national authorities as an integral part of a peace process or an alter- native conflict resolution strategy. This approach must be in line with the overall UN mission mandate and objec- tives of the UN mission (if a UN mission has been established). Engagement with armed groups shall follow UN policy on this matter, i.e. UN mission policy, including SOPs on engagement with armed groups where they have been adopted, the UN\u2019s Aide Memoire on Engaging with Non-State Armed Groups (NSAGs) for Political Purposes (see Annex B) and the UN Human Rights Due Diligence Policy. This approach shall be informed by risk analysis and be accompanied by risk mitigation measures. If all of the above conditions are fulfilled, DDR support to WAM capacity-building for armed groups may include storing ammunition stockpiles away from inhabited areas and in line with the IATG, destroying hazardous ammunition and explosives as identified by armed groups, and providing basic stockpile management advice, support and solutions.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "dc67cd1b-55b3-4ccc-97be-8c2442a4fe90", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 14, + "Paragraph": "Transitional WAM in support of DDR-related tools Efforts focused solely on weapons, ammunition and explosives are proven to have lim- ited impact on instability. Therefore, DDR practitioners should seek to address other conflict drivers in parallel, for example, through the use of DDR-related tools such as pre-DDR, CVR, DDR support to transitional security arrangements and DDR support to mediation. DDR-related tools are immediate and targeted measures that may be used before, after or alongside DDR programmes, or when the preconditions for DDR programmes are not in place (see IDDRS 2.10 on The UN Approach to DDR and MOSAIC 02.30 on Small Arms and Light Weapons Control in the Context of DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ff9e128f-7023-44fb-b023-e3f692d70add", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 14, + "Paragraph": "Community violence reduction and transitional WAM When implemented as part of a DDR process, CVR programmes aim to reduce armed violence in communities. By tackling the drivers of armed violence and improving perceptions of security, CVR programmes can have a direct impact on the demand for and misuse of weapons, as well as on the creation of favourable conditions for future disarmament initiatives. As outlined in IDDRS 2.30 on Community Violence Reduction, CVR programmes may target: Members of armed groups who are not formally eligible for a DDR programme because their group is not signatory to a peace agreement. Individuals who are not members of an armed group but who are at-risk of recruitment by such groups. Designated communities that are susceptible to outbreaks of violence, close to can- tonment sites, or likely to receive former combatants. When CVR programmes target members of armed groups who are not formally eligible for a DDR programme, because their group is not signatory to a peace agree- ment, individual eligibility for CVR may be tied to the handover of a serviceable weapon. Transitional WAM and potential CVR arms-related eligibility criteria should be set in line with the disarmament component of a DDR programme (if one is running), as well as other arms control initiatives running in the country (see section 7). If weapons and ammunition collection as part of a CVR programme is conducted at the same time as the disarmament component of a DDR programme, it is critical that these activities are strategically sequenced and that a robust public awareness strategy based on clear messaging accompanies these efforts (see IDDRS 4.10 on Disarmament, MOSAIC 04.30 on Awareness Raising and IMAS 12.10 on Explosive Ordnance Risk Education). This is because civilians may attempt to surrender weapons at a pick-up point designed to receive combatants, which could result in increased tensions. When CVR programmes target communities susceptible to outbreaks of violence or individuals at-risk of recruitment, the willingness of community members to surrender or restrict immediate access to weapons, ammunition and explosives will depend great- ly on perceptions of security, the existence of internal or external security threats, the quality of formal security provisions and the absence of criminal prosecution for illicit arms possession. If disarmament is not possible, encouraging communities to control their weapons, ammunition and explosives, for example, through awareness-raising campaigns, registration and the development of community storage facilities, can help to reduce open carrying and home possession of weapons (see IDDRS 4.10 on Disar- mament for guidelines on these activities, MOSAIC 04.30 on Awareness Raising and IMAS 12.10 on Explosive Ordnance Risk Education). Such awareness-raising and com- munity-focused initiatives can help to lower the risk of accidents involving weapons and ammunition and reduce the resort to weapons in violent interpersonal disputes, including against women. Although the surrender of a weapon or ammunition need not always be a pre- condition for participation in a CVR programme, one approach may be to make the implementation of a CVR programme in a particular community conditional on com- munity or group collection efforts and voluntary handovers of weapons and ammuni- tion. Manufactured and/or artisanal weapons and ammunition can be collected, and quantities destroyed by burning in public; while this is not considered a best practice, as burning does not totally destroy the weapons, this kind of ceremony can play an important symbolic role in supporting communities emerging from conflict. The full cycle of transitional WAM should be transparent and accountable from collection through to disposal. Weapons and ammunition collected as part of a CVR programme should be destroyed, but if the authorities decide to integrate the materiel into their national stockpiles, this should be done in compliance with the State\u2019s obliga- tions under relevant international instruments and in line with international technical guidelines (see sections 5.2 and 8). At a minimum, such weapons should be properly marked and registered, and their origin traced, if deemed necessary, prior to any in- tegration into the national stockpile. Specific technical inspections on the functional- ity and safety of the weapons to be integrated should be jointly carried out to ensure serviceability (see IDDRS 4.10 on Disarmament).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ddfdc80-2e97-4240-bb86-a6e67dbbfd2c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 15, + "Paragraph": "Pre-DDR and transitional WAM Pre-DDR is an interim, time-limited stabilization mechanism aimed at creating the necessary political and security conditions to facilitate the negotiation and/or imple- mentation of peace agreements and pave the way towards a full DDR programme (see IDDRS 2.10 on The UN Approach to DDR and IDDRS 2.20 on The Politics of DDR). Pre-DDR is designed for those who are eligible for a national DDR programme. The eligibility criteria for both will therefore be the same and could require individu- als, among other things, to prove that they have combatant status and are in possession of a serviceable manufactured weapon or a certain quantity of ammunition (see IDDRS 4.10 on Disarmament). The eligibility criteria shall be gender-responsive and not dis- criminate against women. Depending on the specific circumstances, individuals who do not meet the eligibility criteria could be enrolled in a CVR programme (see IDDRS 2.30 on Community Violence Reduction). While most materiel should be handed in during the disarmament phase of a DDR programme, pre-DDR offers DDR practitioners the opportunity to better understand the quantity and types of materiel that armed groups possess and to collect, register and manage such materiel. Depending on the context, pre-DDR can include the handing over of weapons and ammunition by members of armed groups and armed forces. In order to avoid confu- sion, this phase could be named \u2018Pre-disarmament\u2019 rather than \u2018Disarmament\u2019, which will take place at a point in the future. Pre-disarmament Pre-disarmament involves collecting, registering and storing materiel in a safe loca- tion. Depending on the context and agreements in place with armed forces and groups, pre-disarmament could focus on certain types of materiel, including larger crew- operated systems in contexts where warring parties are very well equipped. Hand- overs can be: Temporary: Materiel is registered and stored properly but remains under the joint control of armed forces, armed groups and the United Nations through a dual-key system with well established roles and procedures; Permanent: Materiel is handed over, registered and ultimately disposed of (see IDDRS 4.10 on Disarmament). In both cases, unsafe ammunition shall be destroyed, and all activities must be carried out in full transparency and with respect of safety and security procedures during the destruction process. Pre-disarmament should: Build and strengthen the confidence of armed forces, armed groups and the civilian population in any future disarmament process and the wider DDR programme; Reduce the circulation and visibility of weapons and ammunition; Contribute to improved perceptions of peace and security; Raise awareness about the dangers of illicit weapons and ammunition; Build knowledge of armed groups\u2019 arsenals; Allow DDR practitioners to identify and mitigate risks that may arise during the disarmament component of the future DDR programme, including through the planning and conduct of operational tests (see section 5.3 in IDDRS 4.10 on Disar- mament); Encourage members of armed groups to voluntarily disarm and engage in a full DDR programme.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4388f030-0209-4a14-9f99-2db1238921fe", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 16, + "Paragraph": "DDR support to transitional security arrangements and transitional WAM During a period of political transition, warring parties may be required to act as security providers. This may happen prior to or alongside DDR programmes. This transition phase is vital for building confidence at a time when warring parties may be losing their military capacity and their ability to defend themselves. Transitional security arrangements may include joint units, patrols or operations involving the parties to a conflict, often alongside a third-party presence (see IDDRS 2.20 on The Politics of DDR). The management of the weapons and ammunition used during these types of transitional security arrangements shall be governed by a clear legal framework and will require a robust plan agreed to by all actors. This plan shall also be underpinned by detailed SOPs for conducting activities and identifying precise responsibilities, by which all shall abide (see IDDRS 4.10 on Disarmament). These SOPs should include guidance on how to handle arms and ammunition captured, collected or found by the joint units.4 Depending on the context and the positions of stakeholders, members of armed forces and groups would be demobilized and disarmed, or would retain use of their own small arms and ammunition, which would be registered and stored when not in use.5 In some cases, such measures could facilitate the large-scale integration of ex-combatants into the security sector as part of a peace agreement (see IDDRS 6.10 on DDR and SSR).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6d90adc1-39ee-4a75-88a5-633119a066cb", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 17, + "Paragraph": "DDR support to peace mediation efforts and transitional WAM There is a strong arms control component to the negotiation of peace, including through the setting of preliminary ceasefires and the design and adoption of comprehensive peace agreements. Transitional WAM in support of peace mediation efforts should con- tribute to weapons control, reduce armed violence, build confidence in the process, generate a better understanding of the weapons arsenals of armed forces and groups, and prepare the ground for the transfer of responsibility for weapons management later in the DDR process, either to the UN or to the national authorities. Disarmament can be associated with defeat and a significant shift in the balance of power, as well as the removal of a key bargaining chip for well-equipped armed groups. Disarmament can also be perceived as the removal of symbols of masculinity, protection and power. Pushing for disarmament while guarantees around security, justice or integration into the security sector are lacking will have limited effectiveness and may undermine the overall DDR process. The use of transitional WAM concepts, measures and terminology provides a solution to this issue and lays the ground for more realistic arms control provisions in peace agreements. Transitional WAM can also be a first step towards more comprehen- sive arms control, paving the way for full disarmament once the context has matured. Mediators and DDR practitioners supporting the mediation process should have strong DDR and WAM knowledge, or at least have access to expertise that can guide them in designing appropriate and evidence-based DDR-related transitional WAM provisions. Transitional WAM as part of CVR and pre-DDR can also enable relevant parties to engage more confidently in negotiations as they maintain ownership of and access to their materiel. Prolonged CVR and pre-DDR, however, can also become a support mechanism for armed groups rather than an incentive to finalize peace negotiations. Such processes should therefore be approached with caution (see IDDRS 2.20 on The Politics of DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "16839c88-5c6b-4bed-9029-db99a267914e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 17, + "Paragraph": "6.2 Transitional WAM and reintegration support Reintegration support can be provided to ex-combatants as part of a DDR programme and also when the preconditions for a DDR programme are not in place (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). When transitional WAM and rein- tegration support are linked as part of a DDR programme, ex-combatants will have already been disarmed and demobilized. In contexts where there is no DDR programme, combatants may leave armed groups during active conflict and return to their com- munities, taking their weapons and ammunition with them or hiding them in weap- ons caches. In both scenarios, ex-combatants may return to communities where levels of weapons and ammunition possession are high. It may therefore be necessary to coherently combine the transitional WAM measures listed in Table 1 with reintegration support as part of a single programme.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3fb98fa4-67a8-4042-b24d-e9f8b87d625b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 18, + "Paragraph": "DDR arms control activities and SALW control Although DDR and SALW control are separate areas of engagement, technically they are very closely linked, particularly in DDR settings where transitional WAM overlaps with SALW control objectives, activities and target audiences. SALW remain particu- larly prevalent in many regions where DDR is implemented. Furthermore, the uncon- trolled circulation of SALW can impede the implementation of DDR processes and enable conflict (see the report of the Secretary General on SALW (S/2019/1011)). DDR practitioners should work in close collaboration with both national DDR commissions and SALW control bodies, if they exist, and both areas of work should be closely co- ordinated and strategically sequenced. For instance, the implementation of a weapons survey and the use of mortality and morbidity data from an ongoing injury surveil- lance national system could serve as the basis for the development of both DDR-related transitional WAM activities and SALW control strategy.6 The term \u2018SALW control\u2019 refers to those activities that together aim to reduce the security, social, economic and environmental impact of uncontrolled SALW proliferation, possession and circulation. These activities largely consist of, but are not limited to: Cross-border control measures; Information management and exchange; Legislative and regulatory measures; SALW awareness and outreach strategies; SALW surveys and assessments; SALW collection and registration, including utilization of relevant regional and international databases for cross-checking SALW destruction; Stockpile management; Marking, recordkeeping and tracing. The international community, recognizing the need to deal with the challenges posed by the illicit trade in SALW, adopted the United Nations Programme of Action to Prevent, Combat and Eradicate the Illicit Trade in Small Arms and Light Weapons in All Its Aspects (A/Conf.192/15) in 2001 (PoA) (see section 5.2). In this framework, states commit themselves to, among other things, strengthen agreed norms and measures to help prevent and combat the illicit trade in SALW, and mobilize political will and resources in order to prevent the illicit transfer, manufacture, export and import of SALW. Regional agreements, declarations and conventions have built upon and deepened the commitments contained within the PoA. As a result, a number of countries around the world have set up SALW control programmes as well as institutional processes to implement them. SALW control programmes and activities should be designed and implemented in line with MOSAIC (see Annex B), which provides clear, practical and comprehensive guidance to practitioners and policymakers. During DDR, SALW control should be implemented to focus on wider arms con- trol at the national and community levels. It is essential that all weapons are considered during a DDR process, even though the focus may initially be on those weapons held by armed forces and groups. For these reasons, the transitional WAM mechanisms established during DDR processes should be designed to be applicable and sustainable in broader arms control initiatives even after the DDR process has been completed. It is also critical that DDR-related transitional WAM and SALW control activities are strategically sequenced, and that a robust public awareness strategy based on clear messaging accompanies these efforts (see IDDRS 4.10 on Disarmament, MOSAIC 04.30 on Awareness Raising and IMAS 12.10 on Explosive Ordnance Risk Education).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ea0109e5-1710-486f-a76d-ee2e00fcdc50", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 19, + "Paragraph": "SSR and transitional WAM DDR-related transitional WAM may be implemented at the same time as the UN is providing support to SSR. The UN may support national authorities in the rightsizing of their armed forces (see IDDRS 6.10 on DDR and SSR). Such reforms include the need to adapt national arsenals to the size, needs and objectives of the security sector of the country in question. This requires an effective needs assessment, strategic planning, and the technical capacity and support to identify surplus or obsolete materiel and destroy it. When SSR is ongoing, DDR-related transitional WAM may be used as an entry point to align national WAM capacity with international WAM guidance and inter- national and regional legal frameworks. For instance, storage facilities built or refur- bished to store DDR materiel could then be used to house stockpiles for security insti- tutions, and as a proof of concept for upgrading of facilities. All WAM activities shall be designed and implemented in line with international technical guidance, including MOSAIC Module 02.20 Small Arms and Light Weapons Control in the Context of SSR and the IATG.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-4.20-Demobilization.json b/src/Static/data/json/IDDRS-4.20-Demobilization.json new file mode 100644 index 0000000..102c52d --- /dev/null +++ b/src/Static/data/json/IDDRS-4.20-Demobilization.json @@ -0,0 +1,648 @@ +[ + { + "ID": "3ac1dea2-379d-4082-a0cb-5e17493b340a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": null, + "Paragraph": "Summary Demobilization occurs when members of armed forces and groups transition from military to civilian life. It is the second step of a DDR programme and part of the demil- itarization efforts of a society emerging from conflict. Demobilization operations shall be designed for combatants and persons associated with armed forces and groups. Female combatants and women associated with armed forces and groups have tradi- tionally faced obstacles to entering DDR programmes, so particular attention should be given to facilitating their access to reinsertion and reintegration support. Victims, dependants and community members do not participate in demobilization activities. However, where dependants have accompanied armed forces or groups, provisions may be made for them during demobilization, including for their accommodation or transportation to their communities. All demobilization operations shall be gender and age sensitive, nationally and locally owned, context specific and conflict sensitive. Demobilization must be meticulously planned. Demobilization operations should be preceded by an in-depth assessment of the location, number and type of individuals who are expected to demobilize, as well as their immediate needs. A risk and securi- ty assessment, to identify threats to the DDR programme, should also be conducted. Under the leadership of national authorities, rigorous, unambiguous and transparent eligibility criteria should be established, and decisions should be made on the number, type (semi-permanent or temporary) and location of demobilization sites. During demobilization, potential DDR participants should be screened to ascertain if they are eligible. Mechanisms to verify eligibility should be led or conducted with the close engagement of the national authorities. Verification can include questions concerning the location of specific battles and military bases, and the names of senior group members. If DDR participants are found to have committed, or there is a clear and reasonable indication that a DDR participant knowingly committed war crimes, crimes against humanity, terrorist acts or offences1 and/or genocide, they shall be removed from the DDR programme. Once eligibility has been established, basic registration data (name, age, contact information, etc.) should be entered into a case management system. Individuals who demobilize should also be provided with orientation briefings, physical and psychosocial health screenings and information that will support their return to the community. A discharge document, such as a demobilization declaration or certificate, should be given to former members of armed forces and groups as proof of their demobilization. During demobilization, DDR practitioners should also conduct a profiling exercise to identify obstacles that may prevent those eligible from full par- ticipation in the DDR programme, as well as the specific needs and ambitions of the demobilized. This information should be used to inform planning for reinsertion and/ or reintegration support. If reinsertion assistance is foreseen as the second stage of the demobilization operation, DDR practitioners should also determine an appropriate transfer modali- ty (cash-based transfers, commodity vouchers, in-kind support and/or public works programmes). As much as possible, reinsertion assistance should be designed to pave the way for subsequent reintegration support.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "9fe8fad1-04c6-4773-bcd9-03eb85790117", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 5, + "Paragraph": "Module scope and objectives The aim of this module is to provide guidance to DDR practitioners supporting the planning, design and implementation of demobilization operations during DDR programmes within the framework of peace agreements in mission and non-mission settings. Additional guidance related to the demobilization of women, children, youth, foreign combatants and persons with disabilities can be found in IDDRS 5.10 on Women, Gender and DDR; IDDRS 5.20 on Children and DDR; IDDRS 5.30 on Youth and DDR; IDDRS 5.40 on Cross-Border Population Movements; and IDDRS 5.60 on Disability and DDR. The guidance in this module is also relevant for practitioners supporting de- mobilization in the context of security sector reform as part of a rightsizing process (see IDDRS 6.10 on DDR and Security Sector Reform). In addition, the guidance may be relevant to contexts where the preconditions for a DDR programme are not in place. For example, in some instances, DDR practitioners may be called upon to support national entities charged with the application of amnesty laws or other pathways for individuals to leave armed groups and return to civilian status Those individuals who take this route \u2013 reporting to amnesty commissions or the national authorities \u2013 also transition from military to civilian life.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8c60778e-eb29-4e11-9f8d-1827776960ba", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 5, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Demobilization as part of a DDR programme is the separation of members of armed forces and groups from military command and control structures and their transition to civilian status. The first stage of demobilization includes the formal and controlled discharge of members of armed forces and groups in designated sites. A peace agreement provides the political, policy and operational framework for demobi- lization and may be accompanied by a DDR policy document. When the preconditions for a DDR programme do not exist, the transition from combatant to civilian status can be facilitated and formalized through different approaches by national authorities. Reinsertion, the second stage of demobilization, is transitional assistance offered for a period of up to one year and prior to reintegration support. Reinsertion assistance is offered to combatants and persons associated with armed forces and groups who have been formally demobilized. Self-demobilization is the term used in this module to refer to situations where individuals leave armed forces or groups to return to civilian life without reporting to national authorities and officially changing their status from military to civilian. Members of armed forces and groups is the term used in the IDDRS to refer both to combatants (armed) and those who belong to an armed force or group but who serve in a supporting role (generally unarmed, providing logistical and other types of sup- port). The latter are referred to in the IDDRS as \u2018persons associated with armed forces and groups\u2019. The IDDRS use the term \u2018combatant\u2019 in its generic meaning, indicating that these persons do not enjoy the protection against attack accorded to civilians. This also does not imply the right to combatant status or prisoner-of-war status, as applicable in international armed conflicts.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "e45af30e-d152-4805-8dca-88a398fdcf5a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 6, + "Paragraph": "Introduction Demobilization officially certifies an individual\u2019s change of status from being a member of an armed force or group to being a civilian. Combatants and persons associated with armed forces and groups formally acquire civilian status when they receive official documentation that confirms their new status. Demobilization contributes to the rightsizing of armed forces, the complete dis- banding of armed groups, or the disbanding of armed forces and groups with a view to forming new armed forces. It is generally part of the demilitarization efforts of a society emerging from conflict. It is therefore a symbolically important step in the consolidation of peace, particularly within the framework of the implementation of peace agreements. Demobilization is the second component of a DDR programme. DDR programmes require certain preconditions in order to be viable, including the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security (see IDDRS 2.10 on The UN Approach to DDR). When demobilization contributes to the rightsizing of armed forces or the dis- banding and creation of new armed forces, it is part of a security sector reform process (see IDDRS 6.10 on DDR and Security Sector Reform). In such a context, those who are not integrated into the armed forces may be demobilized and provided with reintegration support (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration). Combatants and persons associated with armed forces and groups may experience challenges related to demobilization and the transition to civilian life. Armed forces and groups are often effective in socializing their members to violence and military ways of life. Training, initiation rituals and hazing are common methods of military so- cialization. So too are shared experiences of violence and combat. When leaving armed forces and groups, individuals may experience difficulties in shedding their military identity as well as rejection and stigmatization in their communities. Demobilization can mean adjustment to a new role and status, and new routines of family or home life. Persons who demobilize may also experience a loss of purpose, difficulty in creating and sustaining a livelihood, and a loss of military community and friendships. The way in which an individual de- mobilizes has implications for the type of support that DDR practitioners can and should provide. For example, those who are demobilized as part of a DDR pro- gramme are entitled to reinsertion and reintegration support. However, in some in- stances, individuals may decide to return to civilian life without first reporting to and passing through an official process to formalize their civilian status. DDR practitioners shall be aware that providing targeted assistance to these individuals may create se- vere legal and reputational risks for the UN. Such self-demobilized individuals may, however, benefit from broader, non-targeted community-based reintegration support as part of developmental and peacebuilding efforts implemented in their community of settlement. Standard operating procedures on how to address such cases shall be developed jointly with the national authorities responsible for DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a45abe37-eef7-4131-b186-69aeac88de76", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 8, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to demobilization.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8dc3ca89-e7fd-4cf8-9de4-e8fa38e80c2d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 8, + "Paragraph": "Voluntary Integrated DDR shall be a voluntary process for armed forces and groups, both as organizations and for their members. Groups and individuals shall not be coerced to participate in demobilization as part of a DDR programme. When DDR programmes are negotiated as part of a peace agreement, the decision to demobilize combatants is usually taken by the national authorities and/or the leadership of armed groups. When combatants are part of an organized military hierarchy, the decision to demobilize may not be their own. Instead, they may be instructed by their commanders or by national authorities to engage in demobilization. However, their participation in other aspects of the DDR programme shall be voluntary.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "6d50ea14-b19e-4e16-a76c-05f4d8ba3d0b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 8, + "Paragraph": "Criteria for participation/eligibility Where the preconditions for a DDR programme are in place, combatants and persons associated with armed forces and groups shall be included in demobilization. Histor- ically, women associated with armed forces and groups, and even sometimes female combatants, have not received accurate information on eligibility, either because com- manders have attempted to exclude them or because DDR practitioners have not been effective in reaching them. DDR practitioners shall therefore employ carefully crafted communication strategies to ensure that eligible women know that they can access DDR support (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR and IDDRS 5.10 on Women, Gender and DDR). Furthermore, depending on the context, some women may not want to participate in demobilization, owing to fear of stigmatization. DDR practitioners shall find alternative, less visible options for women to be formally demobilized in order to gain access to the same reinsertion and/ or reintegration assistance as their male counterparts. Victims, dependants and community members will not participate in demobiliza- tion activities. However, where dependants have accompanied armed forces or groups in the field, provisions may be made for them during demobilization, including pro- visions for their accommodation or transportation to their communities. If those who have already left armed groups wish to join an ongoing DDR programme, they may report to national authorities, reception centres or mobile disarmament sites. Whether or not these individuals participate in the DDR programme will then depend on the nationally agreed eligibility criteria in place. In some instances, they may also be eligible for other assistance, such as access to DDR-related tools, including community violence reduction or reintegration support. Information on each DDR participant should be collected in order to define his/her reintegration needs and to provide information for the design of reinsertion and reintegration programmes (also see IDDRS 4.30 on Reintegration).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "99cb0ded-055f-4a50-8e72-f49889278622", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 9, + "Paragraph": "Unconditional release and protection of children Public information campaigns can be used to inform adult members of armed forces and groups that they should not report to demobilization sites with members of their family, including children. Because this communication may have the unintended con- sequence of discouraging eligible women from appearing at demobilization sites, DDR practitioners shall take care in crafting such messages. If family members and children do arrive at demobilization sites, DDR practitioners shall consult with child protection actors in order to ensure that children are safely transferred to a different, civilian fam- ily member while the demobilization process is under way. If a combatant or person associated with an armed force or group reports to a demobilization site with a spouse and/or a child, then DDR practitioners may provide support to transfer both of these individuals to a community of their choice. Contingent on the DDR process in place, dependants may also be provided with transitional reinsertion assistance (see sections 4.2.1 and 5.4). When children have been recruited into armed forces and groups, their uncondi- tional and immediate release must be a priority, irrespective of the status of peace ne- gotiations and/or the development of DDR processes. Children shall be separated from armed forces and groups and handed over to child protection agencies at all times, not only when adult combatants are being demobilized. All children shall be permitted to demobilize as part of a DDR process if it is in their best interest (see IDDRS 5.30 on Youth and DDR). If there is doubt about an individual\u2019s age, the age claimed by the child or young person should be resolved in his or her favour, based on the \u201cbenefit of the doubt\u201d principle. Girls and boys associated with an armed force or group in any role shall be identified as early on as possible, handled in accordance with the Paris Commit- ments and the Paris Principles on children associated with armed forces and groups, and taken to an interim care centre for fur- ther attention. The interim care centre shall be separate from the demobilization site and should be run by an organization specializing in the care of children associated with armed forces and groups. Special assistance shall also be provided to child moth- ers and young mothers, regardless of the role they played in the armed force or group (also see IDDRS 5.10 on Women, Gender and DDR; IDDRS 5.20 on Children and DDR; and IDDRS 5.30 on Youth and DDR). Family tracing to help reunite children with their families may also take place at demobilization sites. In addition, reinsertion assistance for children should focus on their education.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "0fa0af11-d9dc-405e-907b-a2a6951b799f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 9, + "Paragraph": "In accordance with standards and principles of humanitarian assistance When managing demobilization sites, DDR practitioners should strive to harmonize their approach with humanitarian actors running internally displaced persons/returnee/ refugee camps in the vicinity, and to learn from the experiences of humanitarian and early recovery efforts in the area.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b515d59b-06d5-433f-89c5-1d3d8d79cf58", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 10, + "Paragraph": "Gender-responsive and inclusive Demobilization has different implications for women and men. For example, women may have earned a higher degree of equality and social recognition as combatants than they previously had in civilian life. Demobilization may mean that these status gains are lost. In addition, following demobilization, high-ranking women associated with armed forces and groups are often relegated to lower-ranking positions in new military structures, or are passed over in the selection of political positions in a new Government. It is known that women often self-demobilize in order to avoid the stigma associated with being a female combatant, war wife or sex slave. Appropriate attention shall be given to the needs of women so that (1) they are not excluded from DDR programmes; (2) their security and well-being is assured during demobilization; (3) demobilization operations respond to their specific needs and lev- erage their unique capacities; and (4) they are not overlooked in terms of reintegration support and/or security sector reform processes. To fulfil these objectives, demobili- zation operations shall be based on gender-sensitive eligibility criteria and operational protocols that take into account the needs and experiences of women (see Figure 1 and Box 2). Where possible, women who are self-demobilized shall be encouraged to join DDR programmes in order to receive ex-combatant status and access to other forms of support. Alternatively, when the stigma of being associated with armed forces or groups prevents women from participating in a DDR programme, other methods of reaching out to this group should be explored. Women\u2019s specific needs at demobiliza- tion sites shall also be considered, including reproductive and maternal health services; sexual and gender-based violence (SGBV) recovery services; psychosocial screening; provision of sanitary napkins in kits; and safe lighting, bathrooms and sleeping quarters (where required). For men, demobilization may also signal a loss of the status and respect gained as a fighter. Additionally, high-ranking men may gain key political positions in a new Government, but lower-ranking men may be passed over and experience disillusion- ment or feel betrayed by commanders. The loss of status and wartime family may be especially challenging for men, whose gender identity may be intricately intertwined with membership in an armed force or group. Additionally, socialization to violence can often impact gender identities, leading to notions of masculinities becoming tied to the use of violence. When supporting men during demobilization operations, it is im- portant to leverage opportunities to promote healthy non-violent forms of masculinity and partnership with women (e.g., in public information and awareness-raising cam- paigns, joint health promotion teams in demobilization sites, or through life skills ses- sions). Through social/health sessions and psychosocial screening, DDR practitioners can support a healthier and more equitable transition for both male and female DDR participants. See IDDRS 5.10 on Women, Gender and DDR for additional guidance.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "88b72353-ecac-4ca0-bc05-1912572b2125", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 10, + "Paragraph": "Conflict sensitive \u2018Do no harm\u2019 is a standard principle against which all DDR programmes shall be eval- uated at all times. Armed forces and groups to be demobilized shall be treated equally. No false promises shall be made concerning post-demobilization support. If DDR par- ticipants are well treated during demobilization, their attitudes towards the process are more likely to be positive, and others may be encouraged to demobilize. Demobilization shall bring together participants and community members, or participants from different sides of the conflict in the implementation of activities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "78836a88-6d1a-4c3a-86fe-9c4816e2b14b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 11, + "Paragraph": "Context specific DDR practitioners shall use the guidance and analytical tools in this module to plan and design context-specific demobilization operations, rather than relying on a stand- ard template or formula.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "265e2316-f556-4647-ba52-f41917af4bd7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 11, + "Paragraph": "Flexible, sustainable and transparent funding arrangements In mission settings with peacekeeping operations, the UN Security Council mandate forms the basis for assessed funding for all activities related to disarmament and demo- bilization (including reinsertion), which can be complemented by national budgets. In non-mission settings, demobilization and reinsertion activities will require the alloca- tion of national budgets and/or the mobilization of voluntary contributions, including through the establishment of financial management structures, such as a multi-donor trust fund or catalytic funds provided by the UN Peacebuilding Fund. When a DDR programme is being implemented following a peace agreement, clear and comprehen- sive consensus of all parties from the outset regarding the number of combatants and persons associated with armed forces and groups to be demobilized will greatly assist resource management. If eligibility criteria are ambiguous and the warring parties do not specify the number of eligible combatants in advance, more participants may be accepted than there is funding available, creating challenges for the DDR programme.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "77483f46-ed85-4555-b120-5e029fa6b744", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 11, + "Paragraph": "Accountability and transparency DDR practitioners shall ensure that there is a mechanism in place for every individual present at a demobilization site to report complaints. Early discussion of any problem will reduce the risk to internal site security. At the earliest opportunity, the manager of the demobilization site is responsible for ensuring that a discussion forum is estab- lished, which should be used regularly to ensure that information is provided to those who need it and to deal with issues raised. Furthermore, an appeal mechanism shall be provided so that individuals who feel they have been unfairly left out of the demobi- lization operation can seek recourse, including a specific mechanism for women, who are often intentionally excluded.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5404b27c-b6c9-4297-8468-bdb199de7d10", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 11, + "Paragraph": "Nationally and locally owned DDR programmes shall be led by national Governments and relevant DDR institutions (see IDDRS 3.30 on National Institutions for DDR). They shall be guided by peace agreements and clear policy and legal frameworks. National authorities should lead the process of developing eligibility criteria and be involved in every step of the de- mobilization operation. In some contexts, the national authorities should involve rep- resentatives of signatory armed groups to ensure that demobilization is transparent to all. DDR practitioners shall advise and support national authorities in accordance with IDDRS guidance, ensuring that gender-responsive and -inclusive eligibility criteria are established.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ff104431-8a0e-45e0-abcc-5dcf7be70dea", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 12, + "Paragraph": "Regionally supported The demobilization and repatriation of foreign former combatants and persons asso- ciated with armed forces and groups will require a specific strategy (see IDDRS 5.40 on Cross-Border Population Movements). Where appropriate, DDR practitioners shall engage regional stakeholders, including neighbouring countries, to foster a conducive environment.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "47e2c13a-a002-48bf-aad2-adc8d4519a2c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 12, + "Paragraph": "Integrated When a DDR programme is being implemented, demobilization shall be linked to dis- armament and reintegration. If other components of a broader DDR process are also being implemented at the same time as a DDR programme, in different localities across the country, such as community violence reduction programmes or transitional weapons and ammunition management, public information campaigns should make clear who is eligible for what. DDR practitioners shall also consider whether there is a need to har- monize the benefits to those participating in different DDR programmes or activities. To the extent possible, integrated information collection efforts, covering each part of the DDR process, shall be pursued (see IDDRS 3.11 on Integrated Assessments). At a minimum, information related to different parts of the DDR process should be shared.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce8d2672-267a-45fc-acd0-44ec069170f4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 12, + "Paragraph": "Safety and security Demobilization sites (both semi-permanent and temporary \u2013 see section 5.3) shall be identified in such a manner that the safety and security of the individuals passing through is ensured. External, area and proximity security at demobilization sites shall be provided by military and/or police forces (national and/or international) or by other transitional security arrangements, such as mixed brigades (see IDDRS 4.40 on Military Roles and Responsibilities). Internal security at demobilization sites (both temporary and semi-permanent) should be provided by lightly equipped local security servic- es or police, including both men and women where possible. Plans for emergencies and evacuations of DDR staff and participants shall be developed and, where possible, rehearsed. Food and water supplies shall be provided in order to ensure that combatants and persons associated with armed forces and groups do not go without basic essentials, and to reduce the risk that these individuals will resort to criminality in the immediate vicinity of the demobilization site.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b20f3882-61ec-4618-b77c-d870554dc90b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 13, + "Paragraph": "Planning, assessment, design, and monitoring and evaluation The planning, assessment, design, and monitoring and evaluation of demobilization operations should be participatory and age and gender sensitive. In addition to assess- ing the short-term outputs of the DDR programme, such as the number of people de- mobilized, monitoring and evaluation shall also focus on qualitative indicators, such as changes in community perceptions and in the behaviour of ex-combatants and persons formerly associated with armed forces and groups. The planning for demobilization, disarmament and reintegration must be coherent. Before demobilization operations commence, DDR practitioners shall also ensure that resources are available for the pro- gramme as a whole.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "c185f3b9-1dd1-4c08-b8fe-0b64d583a1cc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 13, + "Paragraph": "Public information and community sensitization Public information and awareness campaigns shall be designed prior to demobiliza- tion in order to manage the expectations of ex-combatants, persons formerly associated with armed forces and groups, receiving communities and other stakeholders. Military commanders or spoilers may not always pass on accurate information about demobi- lization to their subordinates. Carefully designed public information campaigns and face-to-face visits by DDR practitioners can help to combat disinformation and reduce the risk that DDR participants will resort to violence if their expectations are not met (see IDDRS 4.60 on Public Information and Strategic Communication).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "aa3e2dd7-dc01-4d0a-9ff8-9ab694f5333a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 13, + "Paragraph": "Planning and designing demobilization operations To effectively demobilize members of armed forces and groups, meticulous planning is required. At a minimum, planning for demobilization operations should include information collection; agreement with national authorities on eligibility criteria; deci- sions on the type, number and location of demobilization sites; decisions on the type of transfer modality for reinsertion assistance; a risk and security assessment; the devel- opment of standard operating procedures; and the creation of a demobilization team. All demobilization operations shall be based on gender- and age-responsive analysis and shall be developed in close cooperation with the national authorities or institutions responsible for the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "994d69c7-8d96-44ce-8911-4ea18095c574", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 13, + "Paragraph": "Information collection Planning for demobilization should be based on an in-depth assessment of the location, number and type of individuals who are expected to demobilize. This should include the number of members of armed forces and groups but also the number of dependants who are expected to accompany them. To the extent possible, this assessment should be disaggregated by sex and age, and include data on specific sub-groups such as foreign combatants and persons with disabilities. Armed forces and groups that have signed on to peace agreements are likely to provide reliable information on their memberships and the location of their bases only when there is no strategic advantage to be gained from keeping this information secret. Disclosures at a very early planning stage can therefore be quite unreliable, and should be complemented by information from a va- riety of (independent) sources (see box 1 on How to Collect Information in IDDRS 4.10 on Disarmament). All assessments should be regularly updated in order to respond to changing circumstances on the ground. In addition to these assessments, planning for reinsertion should be informed by an analysis of the preferences and needs of ex-combatants and persons formerly associ- ated with armed forces and groups. These immediate needs may be wide ranging and include food, clothes, health care, psychosocial support, children\u2019s education, shelter, agricultural tools and other materials needed to earn a livelihood. The profiling exer- cises undertaken at demobilization sites (see section 6.3) may allow for the tailoring of reinsertion and reintegration assistance \u2013 i.e., matching individual needs to the re- insertion options on offer. However, profiling undertaken at demobilization sites will likely occur too late for reinsertion planning purposes. For these reasons, the following assessments should be conducted as early as possible, before demobilization gets under way: An analysis of the needs and preferences of ex-combatants and associated persons; Market analysis; A review of the local economy\u2019s capacity to absorb cash inflation (if cash-based transfers are being considered); Gender analysis; Feasibility studies; and Assessments of the capacity of potential implementing partners.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "297bb6ab-63b1-44b9-aab0-a0be023b0c20", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 14, + "Paragraph": "Eligibility criteria Establishing rigorous, unambiguous, transparent and nationally owned criteria that allow people to participate in DDR programmes is vital. Eligibility criteria must be carefully designed and agreed by all parties. Eligibility for a DDR programme may or may not require the physical possession of a weapon and/or ammunition, depending on the context. The determination of eligi- bility criteria shall be based on the peace agreement or ceasefire, if these documents include relevant provisions, as well as the results of the aforementioned integrated assessment. In either case, eligibility for a DDR programme must be gender in- clusive and shall not discriminate on the basis of age or gender. When pre-DDR is being implemented prior to the onset of a full DDR programme, the same process for determining eligibility criteria shall be used (for more information on pre-DDR and eligibility related to weapons and ammunition possession, see IDDRS 4.10 on Disarmament). Persons associated with armed forces and groups may be participants in DDR programmes. As these individuals are typically unarmed, they may not be eligible for disarmament, but will be eligible for demobilization and reintegration (see IDDRS 3.21 on Participants, Beneficiaries and Partners). Historically, it has been shown that women who are eligible to participate in DDR programmes may not be aware of their eligibility, may be deliberately excluded by commanders or may be deprived of their weapons to the benefit of men seeking to enter the DDR programme. For these reasons, DDR practitioners shall be aware of different categories of eligibility and should ensure that proper public information and sensitization with commanders and potential DDR par- ticipants and beneficiaries is completed (on female participants and beneficiaries, see figure 1 and box 2). While Figure 1 could also apply to men, it has been designed spe- cifically to minimize the potential for women to be excluded from DDR programmes. Eligibility criteria must be designed to prevent individuals who are not members of armed forces and groups from gaining access to DDR programmes. The prospect of a DDR programme and the associated benefits can present an enticement to many individuals. Furthermore, armed groups that inflate their membership numbers to in- crease their political weight could try to rapidly recruit civilians to meet the shortfall. The screening process (see section 6.1) is used to confirm whether individuals meet the eligibility criteria for entering the DDR programme. Close cooperation with the leadership of armed forces and groups, civil society (including women\u2019s groups), local police and national DDR-related bodies, and a well-conducted public information and sensitization campaign are essential tools to ensure that only those who are eligible participate in a DDR programme (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "3e622165-1980-43a6-8ffc-435f36d4d0c4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 16, + "Paragraph": "Demobilization sites Demobilization activities are carried out at designated sites. Static demobilization sites are most typically used for the demobilization of large numbers of combatants and persons associated with armed forces and groups. They can be semi-permanent and constructed specifically for this purpose, such as cantonment camps (see Annex B for the generic layout of a cantonment camp). Although cantonment was long considered standard practice in DDR programmes, temporary sites may also be appropriate. The decision concerning which type of demobilization site to use should be guided by the specific country context, the security situation, and the advantages and disadvantages associated with semi-permanent and temporary sites, as outlined in the sections that follow.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "04893e9e-e414-4947-8a86-b90e3be74ab8", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 16, + "Paragraph": "Semi-permanent demobilization sites Semi-permanent demobilization sites can provide an important means for armed forces and groups to show their commitment to the peace process, although they are often costly to construct and maintain and are ill-suited for armed groups based in commu- nities. For a full list of the advantages and disadvantages of semi-permanent demobi- lization sites, see table 1. Where assessments recommend the use of cantonment sites, DDR practition- ers and planning teams should take all possible measures to minimize the negative aspects of this approach.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "04fccea0-5496-4d11-8854-afce2673a9c6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 17, + "Paragraph": "Temporary demobilization sites Temporary demobilization sites that make use of existing facilities may be used as an alternative to the construction of semi-permanent demobilization sites. In this approach, combatants and persons associated with armed forces and groups are told to meet at a specific location for demobilization within a specific time period. Temporary demobilization sites may be particularly useful if the target group is small, if indi- viduals are likely to report for demobilization in small groups, or if the target group is scattered in multiple, known locations that are logistically accessible. This kind of site allows demobilization teams to carry out their activities in these locations without the need to build permanent structures. This approach may also be more appropri- ate than semi-permanent cantonment sites when the target group is already based in the community where its members will reintegrate. This is because combatants who are already in their communities should, where possible, remain there rather than be transported to a demobilization centre and back again. For a full list of the advantages and disadvantages of temporary demobilization sites, see table 2.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fb2f6e7e-4854-47db-b0c4-9933539b736f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 19, + "Paragraph": "Location Semi-permanent demobilization sites If the DDR programme has been negotiated within the framework of a peace agree- ment, then the location of semi-permanent demobilization sites may have already been agreed. If agreement has not been reached, the parties to the conflict should be in- volved in selecting locations. The following factors should be taken into account in the selection of locations for semi-permanent demobilization sites: Accessibility: The site should be easily accessible. Distance to roads, airfields, riv- ers and railways should be considered. Locations and routes for medical and ob- stetric emergency referral must be identified, and there should be sufficient capac- ity for referral or medical evacuation to address any emergencies that may arise. Accessibility allowing national or international military forces to secure the site and for logistic and supply lines is extremely important. The effects of weather changes (e.g., the start of the rainy season) should be considered when assessing accessibility. Security: Ex-combatants and persons formerly associated with armed forces and groups should feel and be safe in the selected location. When establishing sites, it is important to consider the general political and military environment, as well as how vulnerable DDR participants are to potential threats, including cross-border violence and retaliation by active armed forces and groups. The security of nearby communities must also be taken into account. Local communities: DDR practitioners should adequately liaise with local leaders and national and international military forces to ensure that nearby communities are not adversely affected by the demobilization site or operation. General amenities: Demobilization sites should be chosen with the following needs taken into account: potable water supply, washing and toilet facilities (sep- arate facilities for men and women, with locks and lighting if they will be used after dark), drainage for rain and waste, flooding potential and the natural water course, local power and food supply, environmental hazards, pollution, infesta- tion, cooking and eating facilities, lighting both for security and functionality, and, finally, facility space for recreation, including sports. Special arrangements/ contingency plans should be made for children, persons with disabilities, persons with chronic illnesses, and pregnant or lactating women. Storage facilities/armoury: If disarmament and demobilization are to take place at the same site, secure and guarded facilities/armouries for temporary storage of collected weapons shall be set up (see IDDRS 4.10 on Disarmament). Communications infrastructure: The site should be located in an area suitable for radio and/or telecommunications infrastructure. Temporary demobilization sites Temporary demobilization sites require few facilities because the period during which they will be used is relatively short. Finding a location that offers protection is neces- sary. The internal perimeter of an old school or warehouse, or, where the local popu- lation supports the DDR programme, a football field may be all that is required. Fresh potable water and electricity should be available. If they are not, a water purification system or water supplies and a generator should be brought in. Sanitary facilities must be supplied. Lighting should be installed to ensure security around the perimeter of the camp. When temporary demobilization sites are being used, it is particularly important to agree, in advance, on the distribution of tasks, financial responsibilities and the post-DDR ownership of the location. Where relevant, the following should also be considered: The refurbishment and temporary use of community property: If available in the area where the demobilization site is to be set up, the use of existing hard-walled property should be considered. The decision should be made by weighing the medium- and long-term benefits to the community of repairing local facil- ities against the overall security and financial implications. These installations may not need rebuilding, and may be made usable by adding plastic sheeting, concertina wire, etc. Possible sites include disused factories, warehouses, hospitals, colleges and farms. Efforts should be made to verify ownership and to avoid legal complications. The refurbishment and temporary use of state/military property: Where regular armed forces or well-organized/disciplined armed groups are to be demobilized, the use of existing military barracks, with the agreement of national authorities, should be considered. Generally speaking, these facilities should offer a degree of security and may have the required infrastructure already in place. The same security and administrative arrangements should apply to these sites as to others.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "5b00db1d-361a-41dc-9237-5f10913ff6ea", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 21, + "Paragraph": "Size, capacity and duration The size and capacity of demobilization sites should be determined by the number of combatants and persons associated with armed forces and groups to be processed. Typically, demobilization sites with a small number of combatants and associated persons are easier to administer, control and secure. However, if many small demobi- lization sites are in operation at one time, this can lead to widely dispersed resources and difficult logistical situations. Demobilization sites should not accommodate more than 600 people at one time. When time constraints mean that larger numbers must be dealt with in a short period of time, two demobilization sites may be constructed simultaneously and managed by the same team. In order to optimize the use of de- mobilization sites and avoid bottlenecks, an operational plan should be developed that contains methods for controlling the number and flow of people to be demobi- lized at any particular time. Carrying out demobilization in phases is one option to increase efficiency. This process may include a pilot test phase, which makes it possible to learn from mistakes in the early phases and adapt the process so as to improve performance in later phases. Families often accompany combatants to cantonment sites. Where necessary, camps that are close to cantonment sites may be established for family members. Alternatively, transport may be provided for family members to return to their com- munities. The duration of demobilization will depend on the time that is needed to complete the activities planned during demobilization (e.g., screening, profiling, awareness rais- ing). Generally speaking, the demobilization component of a DDR process should be as short as possible. At temporary demobilization sites, it may be possible to process individuals in one or two days. If semi-permanent demobilization sites have been con- structed, cantonment should be kept as short as possible \u2013 from one week to a maxi- mum of one month. DDR practitioners should also seek to ensure that the conditions at demobilization sites are equivalent to those in civilian life. If this is the case, then it is less likely that demobilized individuals will be reluctant to leave. Demobilization should not begin until plans for reinsertion (or community violence reduction, as a stop-gap measure) and reintegration are ready to be put into operation.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "18a0f5a1-4275-41ca-b3f7-77af951035bd", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 21, + "Paragraph": "Managing a demobilization site The manager of the demobilization site and his/her support team are responsible for the day-to-day running of the site and should be trained before demobilization oper- ations begin. In semi-permanent sites, where those who demobilize may reside for up to one month, DDR practitioners should consider involving DDR participants in the management of the site. Group leaders, including women, should be chosen and given the responsibility of reporting any misbehaviour. A mechanism should also exist be- tween group leaders and staff that will enable arbitration to take place should disputes or complaints arise.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4242934f-6dcd-48a3-bbc2-280ad6e9dc32", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 22, + "Paragraph": "Risk and security assessment A comprehensive risk and security assessment should be conducted to inform the plan- ning of demobilization operations and identify threats to the DDR programme and its personnel, as well as to participants and beneficiaries. The assessment should identify the tolerable risk (the risk accepted by society in a given context based on current values), and then identify the protective measures necessary to achieve a residual risk (the risk remaining after protective measures have been taken). Risks related to women, youth, children, dependants and other specific-needs groups should also be considered. In developing this \u2018safe\u2019 working environment, it must be acknowledged that there can be no absolute safety and that many of the activities carried out during demobilization operations have a high risk associated with them. However, national authorities, inter- national organizations and non-governmental organizations must try to achieve the highest possible levels of safety. Risks during demobilization operations may include: Attacks on demobilization site personnel: The personnel who staff demobiliza- tion sites may be targeted by armed groups that have not signed on to the peace agreement. Attacks on demobilized individuals: In some instances, peace agreements may cause armed groups to fracture, with some parts of the group opting to enter DDR while others continue fighting. In these instances, those who favour continued armed conflict may retaliate against individuals who demobilize. In some cases, active armed groups may approach demobilization sites with the aim of retrieving their former members. If demobilized individuals have already returned home, members of active armed groups may attempt to track these individuals down in order to punish or forcibly re-recruit them. The family members of the demobi- lized may also be subject to threats and attacks, particularly if they reside in areas where members of their family member\u2019s former group are still present. Attacks on women and minority groups: Historically, SGBV against women and minority groups in cantonment sites has been high. It is essential that security and risk assessments take into consideration the specific vulnerabilities of women, identify minority groups who may also be at risk and provide additional security measures to ensure their safety. Attacks on individuals transporting and receiving reinsertion support: Security risks are associated with the transportation of cash and commodities that can be easily seized by armed individuals. If it is known that demobilized individuals will receive cash and/or commodities at a certain time and/or place, it may make them targets for robbery. Unrest and criminality: If armed groups remain in demobilization sites (par- ticularly cantonment sites) for long periods of time, perhaps because of delays in the DDR programme, these sites may become places of unrest, especially if food and water become scarce. Demobilization delays can lead to mutinies by combat- ants and persons associated with armed forces and groups as they lose trust in the process. This is especially true if demobilizing individuals begin to feel that the State and/or international community is reneging on previous promises. In these circumstances, demobilized individuals may resort to criminality in nearby communities or mount protests against demobilization personnel. Recruitment: Armed forces and groups may use the prospect of demobilization (and associated reinsertion benefits) as an incentive to recruit civilians.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "87927274-fbba-4e3f-a7d1-c070c8e31995", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 23, + "Paragraph": "Gender-sensitive demobilization operations Action should be taken to ensure that demobilization sites (whether temporary, semi-permanent or otherwise) respond to the different needs of men and women. Gen- der-sensitive demobilization sites should: Include separate accommodation and sanitation facilities (with locks) for men and women. In some circumstances these separate facilities may be located within the same demobilization site, or separate demobilization sites for men and women may be set up; Feature sanitary facilities designed to ensure women\u2019s privacy and support their hygiene needs (e.g., sanitary napkins), as well as take into consideration cultural norms; Include provisions for childcare; Be safe for women and recognize and deal with the threat of sexual violence with- in the demobilization site, including ensuring locks in facilities, good lighting, information provided on specific contact within the camp to address women\u2019s se- curity incidents and issues, and, where possible, the presence of female security guards and police (for internal site security). If female security guards are not available, male security guards shall be trained on sexual exploitation and harass- ment, sexual violence prevention, and gender sensitivity prior to deployment, and there shall exist a clear and gender-responsive system at the demobilization site for handling any complaints by women against security guards, as well as policies that call for the immediate removal of any officer about whom security concerns are raised; Provide for the specific nutritional needs of nursing and pregnant women; Ensure that health care and counselling is available to meet women\u2019s specific needs, including those women who have suffered SGBV; and Take protective measures to ensure women\u2019s safety during transportation to and from the demobilization sites. Where possible, female staff should receive and process women at demobiliza- tion sites. Gender balance should be a priority among the staff managing demobili- zation sites. If men do not see women in positions of authority, they are less likely to take efforts aimed at changing their atti- tudes towards traditional gender roles and women\u2019s empowerment seriously. Screen- ing and profiling tools should be designed to be responsive to women\u2019s specific needs and experiences. Women should also have the same opportunities to access support as men, and the briefings and information provided should include specific information on the challenges that women may encounter upon reinsertion into their communities. As women formerly associated with armed forces and groups are often stigma- tized upon return to their communities, briefings during the demobilization operation should include attention to safety and referrals to support services in civilian life. Irre- spective of the type of transfer modality that has been selected for reinsertion support (see section 7), the delivery mechanism (cash, vouchers, mobile money transfer) should take into account potential protection issues and gender-specific barriers. It is important that the delivery mechanism chosen permits women to access their entitlement safely and confidently, without being exposed to the risks of private service providers abus- ing their power over recipients, or encountering difficulties in the redemption of their entitlement because of numerical or financial illiteracy. A help desk and complaint mechanism should also be set up, and these should include specific referral pathways for women.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8dca6c36-0f2a-4fcd-a02c-20d3abd910ff", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 25, + "Paragraph": "Standard operating procedures Standard operating procedures (SOPs) are mandatory step-by-step instructions designed to guide practitioners through particular activities. The development of SOPs has become common practice across DDR programmes, as it allows for coherence in the delivery of activities, ensuring greater safety and security through adherence to stand- ardized regulations. In mission contexts, SOPs should identify the precise responsibili- ties of the various UN components involved in demobilization. All stakeholders should agree on the content of the SOP(s), and the document(s) should be reviewed by the UN\u2019s legal office at Headquarters. The development of SOPs is led by the mission DDR component and signed off on by the head of the UN mission. All staff from the DDR component as well as other relevant stakeholders shall be familiar with the relevant SOPs. The content of SOPs shall be kept up to date. In non-mission contexts, the national authority should also be advised by the lead UN agency(ies) on the development of national SOPs for demobilization. All those engaged in supporting demobilization shall be familiar with the relevant SOPs, which shall also be kept up to date. A single demobilization SOP or a set of SOPs each covering specific procedures related to demobilization activities (see section 6) should be informed by integrated assessments (see IDDRS 3.11 on Integrated Assessments) and the national DDR policy document, and comply with international guidelines and standards as well as national laws and the international obligations of the country where DDR is being implemented. At a minimum, SOPs should cover the following procedures: Security of demobilization sites; Reception of combatants, persons associated with armed forces and groups, and dependants; Transportation to and from demobilization sites (i.e., from reception or pick-up points); Transportation from demobilization sites either to communities or to take up positions in the reformed security sector; Orientation at the demobilization site (this may include the rules and regulations at the site); Registration/identification; Screening for eligibility; Demobilization and integration into the security sector (if applicable); Health screenings, including psychosocial assessments, HIV/AIDS, STIs, repro- ductive health services, sexual violence recovery services (e.g., rape kits), etc.; Gender-aware services and procedures; Reinsertion (e.g., procedures for cash-based transfers, commodity vouchers, in- kind support, public works programmes, vocational training and/or income- generating opportunities); Handling of foreign combatants, associated persons and dependants (if applicable); and Interaction with national authorities and/or other mission components.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "61e12986-558b-41e5-ba1b-e00f80831e7b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 26, + "Paragraph": "Demobilization team structure The demobilization team is responsible for implementing all operational procedures for demobilization and should be trained in the use of the abovementioned SOPs. The demobilization team should include a gender-balanced composition of: DDR practitioners; Representatives from the national DDR commission (and potentially other national institutions); Child protection officers; Gender specialists; and Youth specialists.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e8acebd9-c196-4bd9-ae15-463aaa07eb11", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 26, + "Paragraph": "Activities during demobilization The activities outlined below should be carried out during the demobilization compo- nent of a DDR programme. These activities can be conducted at either semi-permanent or temporary demobilization sites. Screening, verification and registration Potential DDR participants shall be screened to ascertain if they are eligible to partici- pate in a DDR programme. The objectives of screening are to: Establish the eligibility of the potential DDR participant and register those who meet the criteria; Weed out individuals trying to cheat the system, for example, those attempting to demobilize more than once in the hope of receiving additional benefits, or civil- ians trying to access demobilization benefits; Identify DDR participants with specific requirements (children, youth, child mo- bilized\u2013adult demobilized, women, persons with disabilities and persons with chronic illnesses); and Depending on the context, identify foreign combatants that need to be repatriated to their home countries (see IDDRS 5.40 on Cross-Border Population Movements). When combatants and persons associated with armed forces and groups report for a DDR programme, their eligibility should be determined by a specific set of eligi- bility criteria developed by national authorities, such as membership in a specific armed force or group, possession of a weapon and/or ammunition, and/or proven ability to use a weapon (see IDDRS 4.10 on Disarmament). Whether or not an individual meets these eligibility criteria should be verified. Verification can be conducted by repre- sentatives from the armed forces and groups undergoing demobilization; the UN and national authorities, such as the national DDR commission; or joint teams. Questions touching upon the location of specific battles and military bases and the names of sen- ior group members should be asked. Without verification, military commanders may attempt to bring civilians into the DDR programme. They may also attempt to engage in recruitment just prior to the onset of DDR in order to provide benefits to followers of the group or to take a cut of the benefits being offered to these newly recruited indi- viduals. Explicitly stating the maximum number of individuals who may participate in a peace agreement or DDR policy document can limit incentives for commanders to engage in recruitment. So too can a cut-off date for eligibility. Armed forces and groups often prepare lists of their members prior to the onset of a DDR programme. Whenever lists are prepared, DDR practitioners shall ensure that a verification mechanism is in place to ensure that those listed meet the required eligibility criteria. A mechanism should also be in place to resolve disputed cases and to deal with those who are ex- cluded. Clear messaging shall be employed to ensure that armed forces and groups are aware that being named on a list does not automatically confer DDR eligibility. Once the eligibility of a particular individual has been established, his/her basic registration data (name, age, contact information, sex, etc.) should be entered into a case management system. This system can be used to track when and where DDR benefits are disbursed and to whom (see section 6.8). The data recorded in the case manage- ment system should include a biometric component where possible. Biometric systems store the unique physical features \u2013 iris, face or fingerprint data \u2013 of individuals for future reference. Biometric registration serves mainly to ensure that DDR partic- ipants do not try to \u2018game the system\u2019 by going through the DDR programme more than once to receive multiple benefits. An advantage of all biometric systems is that, if properly implemented, they are completely confidential. A unique string of letters or numbers is assigned to a photograph or fingerprint, and the original photos or prints are then discarded. Different biometric systems have different levels of cost and user friendliness. Facial recognition systems are the most sophisticated but also the most expensive. DDR practitioners using this technology will require appropriate training. Alternatively, fingerprinting is an easy and cheap way to obtain biometric data. Fin- gerprints can be taken on smart phones or mobile fingerprint scanners, and training requirements are minimal. The context in which registration takes place should be taken into account when considering biometric registration. For example, if the armed conflict was tied to civic and national honour, peer control mechanisms may be suffi- cient to ensure that individuals do not try to \u2018double dip\u2019. However, in contexts marked by distrust between the warring parties, and combatants who move from one group or conflict to another, more careful biometric monitoring may be required. The biometric registration systems established for demobilization processes can also be linked to pro- cesses of security sector integration and reform (see IDDRS 6.10 on DDR and Security Sector Reform). Immediately after eligible individuals have been registered, they should be in- formed of their rights and obligations during the DDR programme and the terms and conditions of their participation. If they agree to these terms and conditions, DDR par- ticipants should be asked to sign a terms and conditions form and be provided with a copy of this form in their chosen language (see Annex C for a sample terms and con- ditions form). Individuals shall be ineligible for DDR programmes if they have committed, or if there is a clear and reasonable indication that they knowingly committed war crimes, terrorist acts or offences, crimes against humanity and/or genocide (see IDDRS 2.11 on The Legal Framework for UN DDR). As it may not always be possible to check the criminal background of all DDR participants prior to the onset of a DDR process, due to scarcity of information or a large caseload of demobilizing individuals, background checks should begin prior to DDR and continue, where necessary, throughout the DDR programme. If evidence is found to suggest that a particular participant in the DDR programme has committed crimes, the individuals\u2019 eligibility to participate in DDR shall be revoked. These types of background checks will typically not be conducted by DDR practitioners. Instead, national criminal justice authorities would need to be involved. DDR practitioners should seek support from human rights experts who can undertake a proactive process of collecting background information from a variety of sources. For a more detailed description of this process, see IDDRS 6.20 on DDR and Transitional Justice. Reception Combatants and persons associated with armed forces and groups should be provided with clear and simple guidance when they arrive at demobilization sites, taking into consideration their level of literacy. This is to ensure that they are informed about the demobilization process, their rights during the process, and the rules and regulations they are expected to observe. If a large number of participants are being addressed, it is key to stick to simple concepts, mainly who, what and where. More complex explana- tions can be provided to smaller groups organized in follow-up to the initial briefing. This can help to prevent unrest and stress within the group. Contingent on the type of demobilization site, introductory briefings should cover, among other things, the following: Site orientation; Outline of activities and processes; Routines and time schedules; The rights and obligations of combatants and persons associated with armed forces and groups throughout the demobilization process; Rules and discipline, including areas that are off limits; Policies concerning freedom of movement in and out of the demobilization site; Policies on SGBV and the consequences of infringement of these policies; Security at the demobilization site; How to report misbehaviour, including specific mechanisms for women; Mechanisms to raise complaints about conditions and treatment at the demobili- zation site; Procedures for dependants; and Fire precautions and physical safety. Where possible, oral briefings should be supported by written material produced in the local language(s). Experience has shown that drawings and cartoons displayed at key locations within demobilization sites can also be helpful in transmitting infor- mation about the different steps of the demobilization operation. Profiling When demobilization is to be followed by reinsertion and reintegration support, then profiling should be used, at a minimum, to identify obstacles that may prevent demo- bilized individuals from full participation and to identify the specific needs and ambi- tions of males and females. Profiling should build on the information gathered prior to the onset of the DDR programme (see section 5.1) and should be used to inform, revise and better tailor existing planning and resource allocation. Profiling should include an emphasis on better understanding the reasons why these individuals joined armed forces or groups, aspirations for reintegration, what is needed for a given individual to become a productive citizen, education and technical/professional skill levels and major gaps, heath-related issues that may affect reintegration (including psychosocial health), family situation, economic status, and any other relevant information that will aid in the design of reinsertion and reintegration support. A standardized ques- tionnaire collecting quantitative and qualitative information from ex-combatants and persons formerly associated with armed forces and groups shall be developed. This questionnaire can be supported by qualitative profiling, such as assessing life skills and skills learned during armed service (for example, leadership, driving, mainte- nance/repair, construction, logistics). DDR practitioners should be aware that profiling may lead to raised expectations, especially if ex-combatants and persons formerly asso- ciated with armed forces and groups interpret questions about what they want to do in civilian life as promises of future support. DDR practitioners should therefore clearly explain the purpose of the profiling survey (i.e., to better tailor subsequent support) and inform participants of the limitations of future support. A sample profiling ques- tionnaire can be found in Annex D. Health screening During demobilization, individuals should be directed to a doctor or medical team for physical and pyschosocial health screening. Both general and specific health needs should be assessed (see IDDRS 5.70 on Health and DDR and IDDRS 5.80 on Disabil- ity-Inclusive DDR). Medical screening facilities shall ensure privacy during physical check-ups. Those who require immediate medical attention of a kind that is not avail- able at the demobilization site shall be taken to hospital. Others shall be treated in situ. Basic specialized attention in the areas of reproductive health and sexually transmitted infections, including voluntary testing and counselling for HIV/AIDS, shall be provided (see IDDRS 5.60 on HIV/AIDS). Reproductive health education and materials shall be provided to both men and women. Possible addictions (such as to drugs and/or alcohol) shall also be assessed and specific provisions provided for follow-up care. Psychoso- cial screening for mental health issues, including post-traumatic stress, shall be initi- ated at sites with available counselling support for initial consultation and referral to appropriate services. Although the demobilization period will not be long enough to sufficiently address these issues, DDR practitioners shall support ex-combatants and persons formerly associated with armed forces and groups to continue to access treat- ment throughout subsequent stages of the DDR programme and closely liaise with re- integration practitioners to ensure that data collected is utilized to design appropriate reintegration interventions. This can be done, for example, through an Information, Counselling and Referral System (see section 6.8). Awareness raising and sensitization Demobilization operations provide an opportunity to offer individuals information that can practically and psychologically prepare them for the transition from military to civilian life. For example, if demobilized individuals are to receive reinsertion sup- port (cash, vouchers, in-kind support, public works programmes, etc.), then the modal- ities of this support should be clearly explained. Furthermore, if reinsertion assistance is to be followed by reintegration support, orientation sessions should include infor- mation on the opportunities and support services available as part of the reintegration programme and how these can be accessed. Awareness-raising materials and educational sessions should leverage opportu- nities to promote healthy, non-violent gender identities, including fatherhood, and to showcase men and women in equal roles in the community. Materials shall also be visually representative of different reli- gious, ethnic, and racial compositions of the community and promote social cohe- sion among all groups and genders. Con- versely, misinformation, disinformation and the creation of false expectations can undermine the reinsertion and reintegra- tion efforts of DDR programmes. Accurate information should be provided by the DDR team and partners (also see IDDRS 4.60 on Public Information and Strategic Commu- nication in Support of DDR). Those about to leave the demobilization site should be provided with counselling on what to expect regarding their changed status and role in society, and what they can do if they are stigmatized or not accepted back by their communities. They should also receive advice on political and legal issues, civic and community responsibilities, recon- ciliation initiatives and logistics for transportation when they leave the demobilization site. Demobilized individuals and their dependants may be reluctant to return to their home areas if members of their former group (or a different group) remain active in the region. This is because they may fear retaliation against themselves and/or their fami- lies. This possibility should be addressed through a security and risk assessment (see section 5.5). When retaliation is a possibility, those affected should be informed of the risks and supported to find alternative accommodation in a different location (if they so choose). Where possible, specialized confidential counselling should be offered, to avoid peer pressure and promote the independence of each demobilized individual. Sensitization sessions can be an essential part of supporting the transition from military to civilian life and preparing DDR participants for their return to families and communities. Core sensitization may include sessions on: Reproductive health, including HIV/AIDS and STI awareness raising; Psychosocial education and awareness raising, including the symptoms associated with post-traumatic stress, destigmatizing experiences, education on managing stress responses, navigating discussions with families and host communities, and when to seek help; Conflict resolution, non-violent communication and anger management; Human rights, including women\u2019s and children\u2019s rights; Parenting, for both fathers and mothers; Gender, for both men and women, including discussion on gender identities and how they may be impacted by the conflict, as well as roles and responsibilities in armed forces and groups and in the community (see IDDRS 5.10 on Women, Gender and DDR); and First aid or other key skills. See Module 5.10 on Women, Gender and DDR for additional guidance on SGBV mitigation and response during demobilization. Documentation DDR participants shall be registered and issued a non-transferable identity document (such as a photographic demobilization card) that attests to their eligibility and their official civilian status. Such documents have important symbolic and legal value for demobilized individuals. Demobilized individuals should be required to present them in order to access DDR-related entitlements in subsequent phases of the DDR pro- gramme. To avoid discrimination based on prior factional affiliation, these documents should not include the name of the armed force or group of which the individual was previously a member. Wherever demobilization is carried out, whether in temporary or semi-permanent sites, provisions should be made to ensure that information can be entered into a case management system and that demobilization papers/identity doc- uments can be printed on site. Transportation DDR practitioners may provide transport to DDR participants to assist them to return to their communities. The logistical implications of providing transport must be taken into account. It will not be possible for all ex-combatants and persons formerly associat- ed with armed forces and groups to be transported to their final destination. A mixture of transport to certain key locations and funding for onward transport may therefore be required. Cash for transport may be given as part of transitional reinsertion assis- tance (see section 7). Specific attention shall be paid to the safe transport of women and minorities to their final destination, recognizing the unique security threats they may face. If transport is provided in UN vehicles, authorizations from UN administration and waivers for passengers need to be signed. DDR practitioners should arrange pre- signed authorizations and waivers in order to avoid last-minute blockages and delays. Alternatively, private companies and/or other implementing partners may be subcon- tracted to provide transport. In cases where it is necessary to repatriate foreign ex-combatants and persons formerly associated with armed forces and groups, transportation arrangements will need to be adjusted to involve national authorities from these individuals\u2019 countries of origin as well as other sub-regional organizations and mechanisms (see IDDRS 5.40 on Cross-Border Population Movements). Case Management Information from the demobilization operation (registration data, information related to screening and profiling, etc.), should be recorded in a secure case management system (or \u2018database\u2019). A case management system enables DDR practitioners to track assis- tance and progress at the individual level, and to analyse the data as a whole to iden- tify good practices; flag problem areas; and understand how geography, gender and other variables influence demobilization and reintegration outcomes (see IDDRS 3.50 on Monitoring and Evaluation of DDR Processes). DDR case management systems shall be the property of the national Government but may sometimes be managed by the United Nations and handed over to the national authorities when the DDR process is complete. Which stakeholders and individuals have access to all (or some) of the data in the case management system should be agreed upon when the system is established so that necessary data protections (such as different levels of password protection) can be built in. The establishment of an effective and reliable means of case management is es- sential to the entire DDR programme, and is necessary to track the reinsertion and reintegration of DDR participants and fol- low up on protection and human rights is- sues. A good-quality case management system should be installed, tested and secured before DDR programmes begin. This system should be mobile, suitable for use in the field, cross-referenced and able to provide DDR teams with a clear aggregate picture of the DDR programme (including how many individuals have been processed). In all cases, security and data protections are imperative, but this is especially true in set- tings where armed groups remain active. In these settings, if information containing the names and locations of demobilized individuals is leaked, these individuals may find themselves subject to forcible re-recruitment. If appropriate, DDR practitioners can consider an Information, Counselling and Referral System (ICRS). An ICRS stores data not only on the reintegration intentions of ex-combatants and persons formerly associated with armed forces and groups, but on available services and reintegration opportunities, which should be mapped prior to reintegration (see IDDRS 4.30 on Reintegration). By mapping and regularly updating referral information, DDR practitioners can identify critical gaps in service delivery and take steps to address these gaps, for example, by investing in existing services to strengthen their capacities, advocating to remove access barriers for DDR participants and providing direct assistance. ICRS caseworkers should be trained in basic counselling techniques and refer demobilized individuals to services/opportunities, including peacebuilding and recov- ery programmes, governmental services, potential employers and community-based support structures. Counselling involves the identification of individual needs and capabilities, and may lead to a wide variety of referrals, ranging from job placement to psychosocial assistance to voluntary testing for HIV/AIDS (see IDDRS 5.60 on HIV/ AIDS and DDR). Integrating specific questions on psychosocial screening, health and gender is pivotal to understanding the specific needs of men and women and defining appropriate reintegration interventions. The usefulness of an ICRS hinges on having trained ICRS caseworkers with whom ex-combatants can regularly and easily commu- nicate. Female caseworkers should provide information, counselling and referral ser- vices to female DDR participants. By actively seeking the feedback of DDR participants on programmes and services, the counselling relationship fosters accountability. If an ICRS is to be used, it should be established as soon as possible during demobilization and continued throughout the DDR programme. Reinsertion: Provision of transitional assistance Reinsertion support is transitional assistance provided as part of a DDR programme and is the second step of demobilization. It aims to provide ex-combatants and persons formerly associated with armed forces and groups with support to meet their immediate needs and those of their dependants, until they are able to enter a reintegration pro- gramme. Reinsertion assistance should be planned to pave the way for reintegration support and should consist of time-bound, basic benefits delivered for up to 12 months. In mission settings, reinsertion assistance may be funded from the UN peacekeeping operation\u2019s assessed budget. This kind of transitional assistance may be provided in a number of different ways, including: Cash-based transfers; Commodity vouchers; In-kind support; and Public works programmes Cash-based transfers include cash; digital transfers, such as payments made to mobile phones (\u2018mobile money transfers\u2019); and value vouchers. Value vouchers \u2013 also known as gift cards or stamps \u2013 provide access to commodities for a given mon- etary amount and can often be used in predetermined locations, including selected shops. Vouchers may also be commodity-based \u2013 i.e., tied to a predefined quantity of given commodities, for example, food (see IDDRS 5.50 on Food Assistance in DDR). Commodities may also be provid- ed directly as in-kind support. In-kind support may take various forms, includ- ing food or \u2018reinsertion kits\u2019. The latter are often composed of materials linked to job training or future employment, such as fishing kits and agricultural tools. Finally, public works programmes cre- ate temporary opportunities for demobilized individuals to receive cash, vouch- ers or food/other commodities as part of a reinsertion package. In some cases, re- insertion support may also be provided in the form of vocational training and/ or income-generating opportunities. For guidance on these latter two options, see IDDRS 4.30 on Reintegration. Cash There are many benefits associated with the provision of reinsertion assistance in the form of cash. Not only can the recipients of cash determine their own needs, but the ability to do so is a fundamental step towards empowerment. Cash can also be an effi- cient way to deliver support because it entails lower transaction and logistics costs than in-kind assistance, particularly in terms of transportation and storage. Less stigma may be attached to cash, which, compared with in-kind assistance or vouchers, is less visi- ble to non-recipients. Providing cash to ex-combatants and persons formerly associat- ed with armed forces and groups can also reduce the burden on the households and communities that receive these individuals. If a banking system is operational, cash can be paid directly into recipients\u2019 bank accounts, thereby reducing the security risks involved in cash distribution and, at the same time, strengthening the local banking system. The provision of cash may also have beneficial knock-on effects for local mar- kets and trade. Prior to the provision of cash pay- ments, DDR practitioners shall conduct a review of the local economy\u2019s capacity to absorb cash inflation. This is because the injection of cash into one locality can cause local prices to rise and adversely affect non-recipients living in the area. DDR practitioners shall also review the goods available on the local market. This is because cash will be of little utility in places where the commodities that people require (such as tools, equipment and food) are unavailable locally. DDR practitioners shall seek to avoid the perception that cash is being provided as payment for weapons (\u2018buy-back\u2019) or in return for demobilization. If combatants perceive that they are paid and rewarded for their participation in a DDR programme, this may lead to expecta- tions that cannot be met, perhaps sparking unrest. One option to avoid this percep- tion is to pay cash only when demobilized individuals leave demobilization sites and return to their communities, not at earlier stages of the DDR programme. The common concern that cash is often misused, and used to purchase alcohol and drugs, is, for the most part, not borne out by the evidence. Any potential misuse can be reduced through decisions related to targeting and conditionality. For example, household control over the way that cash is spent can be supported by providing cash to the families of ex-combatants, rather than ex-combatants alone. Ex-combatants and their wives/husbands can also be asked to sign a contract that leads to the release of cash. This contract can outline how the money is supposed to be spent and would require follow-up to check that the goods purchased comply with the terms of this contract. Basic literacy and financial education should be provided alongside cash pay- ments, as this can also help to reduce the risk that cash is misused. Providing cash is sometimes seen as posing security risks both for the staff that transport large amounts of money and for recipients. This is because cash is prone to diversion, capture by elites and seizure by armed groups, particularly in settings where corruption is high and armed conflict is ongoing. This is especially true for cash payments that are distributed at regular times at publicly known locations. Mili- tary commanders may also try to confiscate reinsertion payments from ex-combatants that were formerly under their control. Women and more vulnerable participants such as persons with disabilities, those with chronic illnesses and the elderly are at an in- creased risk for confiscation of payments and/or intimidation or threats. Cash transfers may also be hampered by the absence of banks in some parts of the country, and banks may be slow to process payments and have strict requirements in terms of identifica- tion documents. These requirements may, in some instances, lead to delays. Digital payments, such as over-the-counter and mobile money payments, may help to circumvent these problems by offering new and discreet opportunities to distrib- ute cash. Preliminary evidence indicates that distributing cash through mobile money transfers has a positive impact because it does not require that the recipient has a bank account, and because recipients spend less time traveling to cash pick-up points and waiting for their transfer. Recipients can also cash out small amounts of their payment as and when needed and/or store money on their mobile wallet over the long term. In order to benefit from mobile money transfers, recipients need to be in the pos- session of a mobile phone or, at a minimum, a SIM card that can be used in a mo- bile phone that is shared with others. The recipient will also need to reside in an area (or close to an area) where there are mobile network coverage and accessible cash-out points or agents. It is also necessary to ensure that agents have sufficient cash on hand in order to make the payment. The agents will need to be monitored to ensure that they adhere to previously agreed-upon standards. It is also important to ensure that recip- ients are not subjected to coercion or undue pressure by the agent to use their cash to buy goods in the agent\u2019s store. Finally, new users of digital payments may need to be educated in how to use them and should, where possible, be provided with accompa- nying literacy training and financial education. Vouchers and in-kind support Value and/or commodity vouchers may be used together with or instead of cash. Sev- eral factors may prompt this choice, including donor constraints, security concerns surrounding the transportation of large amounts of cash, market weakness and/or a desire to ensure that a particular type of good or commodity is purchased by the recip- ients.2 Vouchers may be more effective than cash if the objective is not just to transfer income to a household, but to meet a particular goal. For example, if the goal is to im- prove nutrition, then a commodity voucher may be linked to a specific type of food (see IDDRS 5.50 on Food Assistance in DDR). In some cases, vouchers may also be linked to specific services, such as health care, as part of the reinsertion package. Vouchers can be designed to help ex-combatants and persons formerly associated with armed forces and groups meet their familial responsibilities. For example, vouchers can be designed so that they are redeemable at schools and shops and can be used to cover school fees or to purchase books or uniforms. Voucher systems generally require more planning and preparation than the distribution of cash, including agreements with traders so that vouchers can be exchanged easily. Setting up such a system may be challenging if local trade is mainly informal. Although giving value vouchers or cash may be preferable when local prices are declining, recipients are protected from price increases when they receive commodity vouchers or in-kind support. Many past DDR programmes have provided in-kind support through the provision of reinsertion kits, which often include clothing, eat- ing utensils, sanitary napkins for women, diapers, hygiene materials, basic household goods, seeds and tools. While such kits may be useful if certain items are not easily available on the local market, if not well tailored to the local job market demobi- lized individuals may simply resell these kits at a lower market value in order to receive the cash that is required to meet more pressing and specific needs. In countries with limited infrastructure, the delivery of in-kind support may be very challenging, particularly during the rainy season. Delays may lead to unrest among demobilized individuals waiting for benefits. Ex-com- batants and persons formerly associated with armed forces and groups may also allege that the kits are overpriced and that the items they contain could have been sourced more cheaply from elsewhere if they were instead given cash. Public works programmes The work that is conducted as part of a public works programme is labour intensive and aims to build or rehabilitate public/community assets and infrastructure that are vital for sustaining the livelihoods of a community and create immediate job opportu- nities for former members of armed forces and groups and members of the community. Examples are the rehabilitation and maintenance of roads, improving drainage, water supplies and sanitation, demining, or environmental work including the planting of trees. In return for their participation in a public works programme, demobilized indi- viduals and community members receive income in the form of cash, vouchers or in- kind assistance (food or other commodities) and on-the-job training. Public works pro- grammes may be favoured over cash, vouchers or in-kind transfers alone, because the creation or rehabilitation of community assets may provide communities with better protection against future negative shocks, such as rising food prices or drought. In ad- dition, by maintaining ex-combatant support networks for a short period of time, this approach may soften the otherwise abrupt transition from military to civilian life. It ensures that incomes are maintained as demobilized individuals are re-entering their communities. Furthermore, by enabling former members of armed forces and groups to contribute to the rebuilding of their communities, public works programmes pro- vide training opportunities and may encourage reconciliation and community accept- ance of demobilized individuals, and may ease the reintegration process. Public works programmes must be preceded by needs and feasibility assess- ments. The willingness of civilians, ex-combatants and persons formerly associated with armed forces and groups to undertake this kind of work must also be assessed. Public works programmes should only be implemented when markets are functioning (although this is not necessary for food for work programmes); when cash for work activities will not interfere with already-existing livelihood practices; and when the assets and infrastructure to be built or rehabilitated will meet the basic needs of the target population, be useful to the community and can be maintained. Additional key questions for determining the appropriateness of public works programmes include: Is there sufficient useful work available? Is the security situation conducive to public works programmes? What are the risks for demobilized participants? Would public works programmes disrupt traditional community practices that value unpaid collective work for the community? Are both men and women interested in participating in public works programmes? Are there any specific cultural considerations? What is the attitude of the community towards paid labour? Will public works programmes compete with local labour and disrupt seasonal activities? Do work activities vary by season? Do demobilized participants require training and/or equipment to conduct the work? Salaries for participation in public works programmes shall consider what is re- quired in order to meet the basic needs of ex-combatants and persons formerly asso- ciated with armed forces and groups. The minimum wage in the programme location shall also be taken into account, together with the total number of days of work to be completed and the benefits being offered by other providers. If demobilized partici- pants assume different tasks \u2013 e.g., some manage small teams \u2013 then differential wage criteria should be considered, corresponding to level of responsibility. DDR practition- ers shall also decide whether wages are to be time based (a daily or weekly wage) or output based (tied to the accomplishment of a particular task). Time-based wages require close monitoring to ensure that individuals complete a pre-defined number of hours of work. Output-based wages can help to avoid a situation in which workers deliberately prolong the programme. Wage levels shall be regularly reviewed and shall not be so high as to distort the local economy, for example, by causing a steep increase in local prices. When planning public works programmes, DDR practitioners shall carefully assess the barriers to participation for demobilized individuals who are unable to engage in labour-intensive work because they are elderly, are disabled or suffer from chronic illnesses. In these cases, additional alternative assistance measures, such as the direct provision of cash transfers, vouchers or in-kind support should be consid- ered. DDR practitioners shall also identify obstacles that prevent the participation of women formerly associated with armed forces and groups. For example, in contexts where employment is in short supply and labour-intensive jobs are usually reserved for men, it may be difficult for women to gain access to public works programmes. It may also be difficult for women to take on additional work, particularly if they are already managing households and childcare responsibilities. Measures should be taken to address these obstacles, such as providing flexible work schedules and childcare facilities close to public works sites. While women should be encouraged to participate in public works programmes, if they choose, direct cash transfers, vouchers and in-kind support may be considered instead. Determining transfer modality As explained above, cash, vouchers and in-kind support can be provided as part of a public works programme or as stand-alone reinsertion support. DDR practitioners should choose whether to use one of these transfer modalities (e.g., cash), or a mix of cash, vouchers and/or in-kind support. At a minimum, the choice of a particular mo- dality or combination of modalities should be based on: The preference of recipients; The ability of markets to supply goods at an appropriate price and quality; The access of DDR participants to local markets; The predicted effectiveness of different transfers in meeting the desired outcome; The timeliness in which transitional reinsertion assistance can be delivered; Time to delivery; The potential negative impacts of different types of transfers; The potential benefits of different types of transfers; The comparative efficiency and cost of different types of transfers; The risks associated with different types of transfers; The protection risks related to gender; The capacity of different organizations to deliver transfers; The availability of reliable delivery mechanisms; and Potential links to social protection programming. When an appropriate transfer modality has been decided upon, DDR practitioners shall also consider whether reinsertion assistance should be given as one-off support or paid in instalments. One preferred approach is payment by instalments that de- crease over time, thereby reducing dependency and clearly establishing that assistance is strictly time limited. DDR practitioners shall also consider whether all demobilized individuals should be provided with the same amount of assistance or whether different amounts should be given to different individuals on the basis of pre-defined criteria such as rank, number of dependants, length of service, reintegration location (urban or rural) and/or level of disability. If differentiating criteria are adopted, they should be transparent, clearly communicated and based on needs identified through careful profiling (see section 6.3). Finally, a non-corruptible identification system must be established during demo- bilization that will allow former combatants to receive their reinsertion assistance. The payment list needs to be complete and accurate, former combatants should be reg- istered and provided with a non-transferable photographic ID, and benefits should be tracked through a DDR database or case management system. For information on registration and identity documents, see sections 6.2 and 6.6; for information on case management, see section 6.8. As much as possible, the value of reinsertion assistance should be similar to the standard of living of the rest of the population and be in line with assistance provided to other conflict-affected populations such as refugees or internally displaced persons. This is to avoid the perception that ex-combatants and persons formerly associated with armed forces and groups are receiving special treatment. It is also to avoid creat- ing a disincentive to find employment. Irrespective of the type of transfer modality selected, the delivery mechanism (cash, vouchers, mobile money transfer) should take into account potential protection issues and gender-specific barriers. For guidance on cash, voucher and in-kind assistance to children, as well as the participation of children in public works programmes, see IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-4.30-Reintegration.json b/src/Static/data/json/IDDRS-4.30-Reintegration.json new file mode 100644 index 0000000..2f29237 --- /dev/null +++ b/src/Static/data/json/IDDRS-4.30-Reintegration.json @@ -0,0 +1,1674 @@ +[ + { + "ID": "7320296c-11a4-4a1a-a020-be081cac3e81", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 3, + "Paragraph": "Summary Successful reintegration is a particular complex part of DDR. Ex-combatants and those previously associated with armed forces and groups are finally cut loose from structures and processes that are familiar to them. In some contexts, they re-enter societies that may be equally unfamiliar and that have often been significantly transformed by conflict. A key challenge that faces former combatants and associated groups is that it may be impossible for them to reintegrate in the area of origin. Their limited skills may have more relevance and market-value in urban settings, which are also likely to be unable to absorb them. In the worst cases, places from which ex-combatants came may no longer exist after a war, or ex-combatants may have been with armed forces and groups that committed atrocities in or near their own communities and may not be able to return home. Family and community support is essential for the successful reintegration of ex-com- batants and associated groups, but their presence may make worse the real or perceived vulnerability of local populations, which have neither the capacity nor the desire to assist a \u2018lost generation\u2019 with little education, employment or training, war trauma, and a high militarized view of the world. Unsupported former combatants can be a major threat to the security of communities because of their lack of skills or assets and their tendency to rely on violence to get what they want. Ex-combatants and associated groups will usually need specifically designed, sus- tainable support to help them with their transition from military to civilian life. Yet the United Nations (UN) must also ensure that such support does not mean that other war-af- fected groups are treated unfairly or resentment is caused within the wider community. The reintegration of ex-combatants and associated groups must therefore be part of wider recovery strategies for all war-affected populations. Reintegration programmes should aim to build local and national capacities to manage the process in the long-term, as rein- tegration increasingly turns into reconstruction and development. This module recognizes that reintegration challenges are multidimensional, rang- ing from creating micro-enterprises and providing education and training, through to preparing receiving communities for the return of ex-combatants and associated groups, dealing with the psychosocial effects of war, ensuring ex-combatants also enjoy their civil and political rights, and meeting the specific needs of different groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "49361320-ba4f-4d77-9129-76fdc5af5876", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 3, + "Paragraph": "Module scope and objectives The objective of this module is to provide DDR planners and practitioners with an over- view of the issues that need to be taken into account when planning, designing and implementing a reintegration programme, in addition to offering practical guidance on how to successfully deal with any challenges that may arise. Given the complexity of reintegration, and the need for context-specific programmes, the guidance offered here is less prescriptive than in some other modules of the IDDRS. Following discussion of the approaches to reintegration and guidance on programme planning and design, the key components of a reintegration programme are outlined and discussed, from economic, social/psychosocial, and political perspectives. Finally, the module identifies linkages between reintegration and the wider recovery/peacebuilding frameworks.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0c4a708d-6ca6-42a9-bce8-09c0347f9de4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of definitions used in this Reintegration standard. A complete glossary of all the terms, definitions and abbreviations used in the series of Integrated DDR Standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201da) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "78e4290e-c5b2-4d38-ae29-46e291a2f5df", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 4, + "Paragraph": "Introduction Sustainable reintegration of former combatants and associated groups into their commu- nities of origin or choice is the ultimate objective of DDR. A reintegration programme is designed to address the many destabilizing factors that threaten ex-combatants\u2019 suc- cessful transition to peace, including: economic hardship, social exclusion, psychological and physical trauma, and political disenfranchisement. Failure to successfully reintegrate ex-combatants will undermine the achievements of disarmament and demobilization, furthering the risk of renewal of armed conflict. Reintegration of ex-combatants and associated groups is a long-term process that occurs at the individual, community, national, and at times even regional level, and has economic, social/psychosocial, political and security factors affecting its success. Post-conflict economies have often collapsed, posing significant challenges to creating sustainable livelihoods for former combatants and other conflict-affected groups. Social and psychological issues of identity, trust, and acceptance are crucial to ensure violence prevention and lasting peace. In addition, empowering ex-combatants to take part in the political life of their communities and state can bring forth a range of benefits, such as providing civilians with a voice to address any former or residual grievances in a socially constructive, non-violent manner. Without sustainable and comprehensive reintegration, former combatants may become further marginalized and vulnerable to re-recruitment or engagement in criminal or gang activities. A reintegration programme will attempt to facilitate the longer-term reintegration process by providing time-bound, targeted assistance. A reintegration programme cannot match the breadth, depth or duration of the reintegration process, nor of the long-term recovery and development process; therefore, careful analysis is required in order to design and implement a strategic and pragmatic reintegration programme that best bal- ances timing, sequencing and a mix of programme elements from among the resources available. A strong monitoring system is needed to continuously track if the approach taken is yielding the desired effect. A well-planned exit strategy, with an emphasis on capacity building and ownership by national and local actors who will be engaged in the reintegration process for much longer than the externally assisted reintegration pro- gramme, is therefore crucial from the beginning. A number of key contextual factors should be taken into account when planning and designing the reintegration strategy. These contextual factors include: (i) the nature of the conflict (i.e. ideology-driven, resource-driven, identity-driven, etc.) and duration as determined by a conflict and security analysis; (ii) the nature of the peace (i.e. military victory, principle party negotiation, third party mediation); (iii) the state of the economy (especially demand for skills and labour); (iv) the governance capacity and reach of the state (legitimacy and institutional capacity); and, (v) the character and cohesiveness of combatants and receiving communities (trust and social cohesiveness). These will be dis- cussed in greater detail throughout the module. There are also several risks and challenges that must be carefully assessed, moni- tored and managed in order to successfully implement a reintegration programme. One of the key challenges in designing and implementing DDR programmes is how to ful- fill the specific and essential needs of ex-combatants without turning them into a real or perceived privileged group within the community. The reintegration support for ex-com- batants should therefore be planned in such a manner as to avoid creating resentment and bitterness within wider communities or society or putting a strain on a community\u2019s limited resources. Accordingly, this module seeks to emphasize the importance and ben- efits of approaching reintegration programmes from a community-based perspective in order to more effectively execute programme activities and avoid possible tensions form- ing between ex-combatants and community members. In order to increase the effectiveness of reintegration programmes, it is also essential to recognize and identify their limitations and boundaries. Firstly, the trust of ex-com- batants in the political process is often heavily influenced by the nature of the peace settlement and the trust of the overall population in the process; DDR both influences and is influenced by political processes. Secondly, the presence of economic opportunities is critical. And thirdly, the governance capacity of the state, referring to its perceived legit- imacy and institutional capacity to govern and provide basic services, is essential to the successful implementation of a DDR programme. DDR is fundamentally social, economic and political in character and should be seen as part of a broader integrated approach to recovery, including security, governance, and political and developmental aspects. There- fore, programmes shall be based upon context analyses (see above on contextual factors) that are integrated, comprehensive and coordinated across the UN family with national and other international partners.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "b92adb3d-afb1-4708-82ab-f63eb12c98fa", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 6, + "Paragraph": "Guiding Principles IDDRS 2.10 on the UN Approach to DDR sets out the main principles that shall guide all aspects of DDR planning and implementation. All UN DDR programmes shall be: people-centred; flexible; accountable and transparent; nationally and locally owned; inte- grated; and well-planned, in addition to being gender-sensitive. More specifically, when designing and implementing reintegration programmes, planners and practitioners shall take the following guidance into consideration:", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "2bef827b-247c-4dcf-8517-46d9309e8ca5", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 6, + "Paragraph": "People-centred UN-supported reintegration strategies will include diverse people and communities with various needs. Non-discrimination and fair and equitable treatment of participants and beneficiaries are core principles of the UN approach to DDR. A \u2018people-centred\u2019 approach recognizes that differences exist among reintegration participants and beneficiaries \u2013 differences which include, but are not limited to sex, age, class, religion, and physical, intellectual or psycho-social capacities \u2013 all of which require targeted responses. Rein- tegration assistance shall therefore be based on thorough profiling of ex-combatants and assessments of the social, economic, political and cultural contexts into which they are reintegrating in order to support specific needs.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "197619ca-f0d1-45d1-aabf-ee701f810447", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 6, + "Paragraph": "Flexible To respond to contextual changes and remain relevant, reintegration programmes should be designed in such a way that allows for maximum adaptability. While the reintegration programme design will be based on initial assessments, it is important to remember that many contextual factors will change significantly during the course of the programme, such as the wishes and ambitions of ex-combatants, the labour market, the capacity of service providers, the capacity of the different government bodies, in addition to the agen- das of political parties and leaders in power. Furthermore, new or broader recovery plans may be designed during the timeframe of the DDR programme, for which reintegration programmes should be linked. Additionally, flexibility is required on the issue of targeting principles. While in the beginning of the programme exclusive targeted approaches might be appropriate, flexibil- ity to enlarge the target group within the scope of the programme should be considered and may also be part of the programme exit strategy. This means that the total number of combatants might be known at the beginning of a programme, but not necessarily the total number of beneficiaries or people assisted. Furthermore, flexibility of the types of reintegration assistance offered should be applied within the national programme. Fixed packages of individual assistance shall therefore be avoided.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "cee383af-1050-41dd-a675-e3cb534e6656", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 7, + "Paragraph": "Accountable and transparent Reintegration assistance shall be based on the principles of accountability and transpar- ency. Public information and communication strategies shall therefore be drawn up and implemented as early as possible. Public information, awareness-raising and community consultation and sensitization ensure that affected participant and beneficiary groups have a chance to influence and to receive accurate information on DDR programme proce- dures and reintegration assistance. Once expected results are clearly defined by all stakeholders, key indicators for mon- itoring and measuring programme impact shall be agreed upon, based on careful context assessments and analysis. Defining a set of indicators in a participatory manner helps to clarify expectations and leads to a broad agreement on realistic targets. Individuals or organizations responsible for monitoring should also be agreed upon, as well as how often monitoring reports will be drawn up. The data for indicators should be updated at least quarterly and communicated to stakeholders.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e4ac3515-87f2-4cfb-9d4f-c57757662ef1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 7, + "Paragraph": "Nationally and locally owned The success of reintegration programmes depends on the combined efforts of individu- als, families and communities and therefore reintegration programmes shall be designed through an inclusive, participatory process that involves ex-combatants and communities, local and national authorities, and non-governmental actors in planning and deci- sion-making from the earliest stages. Buy-in to the reintegration process by key armed actors and military leaders shall be one of the first priorities of the DDR programme, and should be achieved in collaboration with national government and other key stakeholders in accordance with UN mandates. All parties to the conflict shall commit themselves to accepting an agreed framework, together with a timetable for carrying out activities. The primary responsibility for the successful outcome of DDR programmes rests with national authorities and local stakeholders. Reintegration programmes shall there- fore seek to develop the capacities of receiving communities, as well as local and national authorities. In contexts where national capacity is weak, it is important to ensure that international actors do not act as substitutes for national authorities in programme man- agement and implementation, but rather put forth all efforts to strengthen the national capacities needed to implement the long-term reintegration process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "93107c0e-a7a0-4316-8aed-84e3f71f4457", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 4, + "Paragraph": "Integrated DDR processes both influence and are affected by wider recovery, peacebuilding and state transformational processes. It is therefore essential that reintegration programmes work collaboratively with other programmes and stakeholders to achieve policy coherence, sec- toral programme integration, inter-agency cooperation and coordination from the start. UN integrated units should be used wherever possible to support the implementation of DDR programmes. In addition, the use of technical working groups, donor forums, and rapid response/surge modalities should be used to further integrate efforts in the area of DDR. It is also particularly relevant that line ministries receive appropriate support from DDR programmes to ensure that reintegration will be sustainable and in accordance with other national policies and plans.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05254ac6-5c4d-41aa-a885-c6a47607bdb9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 8, + "Paragraph": "Well-planned A well-planned reintegration programme shall assess and respond to the specific needs of its male and female participants (i.e. gender-sensitive planning), who might be children, youth, adults, elders and/or persons with disabilities. Effective and sustainable reintegration depends on early planning that is based on: a comprehensive understanding of the local context, a clear and unambiguous agreement among all stakeholders about objectives and results of the programme, the establishment of realistic timeframes, clear budgeting requirements and human resource needs, and a clearly defined programme exit strategy. Planning shall be based on existing assessments which include conflict and security analyses, gender analyses, early recovery and/or post-conflict needs assessments, in addition to reintegration-specific assessments. Reinte- gration practitioners shall furthermore ensure a results-based monitoring and evaluation (M&E) framework is developed during the planning phase and that sufficient resources and expertise are allocated for this task at the outset. Those planning the disarmament and demobilization phases shall work in tandem with the reintegration phase planners and experts to ensure a smooth transition, and more specifically that the programme has sufficient resources and capacity to absorb the demo- bilized groups, where applicable. It is important that promises on reintegration assistance are not made during the disarmament and demobilization phases that cannot be deliv- ered upon later. Finally, planning should recognize that DDR programming does not take place in a vacuum. Planners should therefore carefully consider, and where possible link with, other early recovery and peacebuilding initiatives and processes.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c6880387-45f3-4888-b048-b8367055255c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 8, + "Paragraph": "Gender-sensitive Reintegration programmes shall be designed, implemented and evaluated in a gen- der-sensitive manner. Gender-sensitive reintegration includes planning based upon sex-disaggregated data so that programmes can identify the specific needs and potentials of women, men, boys and girls. Women\u2019s and young girls\u2019 needs may include availability of child care facilities, access to land, property and livelihoods resources and rehabil- itation from sexual violence, whereas men and young boys may need more support to overcome socialization to violence and substance abuse, for example. In cases where women have self-demobilized or were excluded from DDR prog- ammes by commanders, efforts should be made to provide them with access to the formal or official reintegration programme, if they so choose. Female-specific reintegration pro- grammes may also be devised to address those women who will not access reintegration opportunities in official DDR programmes to avoid further stigmatization. In order to implement gender-responsive reintegration programmes, DDR staff, local stakeholders and implementing parterns may need to receive gender training and other capacity development. Public information and sensitization may also benefit from collab- oration with women\u2019s and men\u2019s organizations to address gender-specific needs. Gender-sensitive monitoring and evaluation requires that the DDR M&E framework includes gender-related indicators and specific assessments on gender. Reintegration pro- grammes should seek specific funding for such initiatives, and should work to monitor and evaluate the gender appropriateness of programmes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "957b5a75-edfa-49fa-b770-f43b8c7d2229", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 9, + "Paragraph": "Transitioning from reinsertion to reintegration In post-conflict settings that require economic revitalization and infrastructure develop- ment, the transition of ex-combatants to reintegration may be facilitated through reinsertion interventions. These short-term interventions are sometimes termed stabilization or \u2018stop gap\u2019 measures and may take on various forms, such as emergency employment, liveli- hood and start-up grants or quick-impact projects (QIPs). Reinsertion assistance should not be confused with or substituted for reintegration programme assistance; reinsertion assistance is meant to assist ex-combatants, associated groups and their families for a limited period of time until the reintegration programme begins, filling the gap in support often present between demobilization and reintegration activities. Although reinsertion is considered as part of the demobilization phase, it is important to understand that it is closely linked with and can support reintegration. In fact, these two phases at times overlap or run almost parallel to each other with different levels of intensity, as seen in the figure below. DPKO budgets will likely cover up to one year of reinsertion assistance. However, in some cases reinsertion may last beyond the one year mark. Reinsertion is often focused on economic aspects of the reintegration process, but does not guarantee sustainable income for ex-combatants and associated groups. Reinte- gration takes place by definition at the community level, should lead to sustainable income, social belonging and political participation. Reintegration aims to tackle the motives that led ex-combatants to join armed forces and groups. Wand when successful, it dissuades ex-combatants and associated groups from re-joining and/or makes re-recruitment efforts useless. If well designed, reinsertion activities can buy the necessary time and/or space to establish better conditions for reintegration programmes to be prepared. Reinsertion train- ing initiatives and emergency employment and quick-impact projects can also serve to demonstrate peace dividends to communities, especially in areas suffering from destroyed infrastructure and lacking in basic services like water, roads and communication. Rein- sertion and reintegration should therefore be jointly planned to maximize opportunities 4.20\tfor the latter to meaningfully support the former (see Module 4.20 on Demobilization for more information on reinsertion activities).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6bab2074-86ec-46ba-894d-9b8fd542fcd9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 10, + "Paragraph": "Approaches to the reintegration of ex-combatants The approaches to the reintegration of ex-combatants represent the different options avail- able to DDR planners when defining the reintegration strategy. The approaches discussed are not mutually exclusive. Rather, they can be used in an appropriate mix, timing and sequencing in order to support the overall goal of the specific DDR programme. An understanding of the needs and capacities of the ex-combatants, how they were psychosocially affected by the conflict, whether they are marginalized or not, the absorp- tive capacities of the receiving communities\u2019 labour markets, and the functionality of related markets and resources (land, natural resources and capital), including the local political (power dynamics) and institutional realities, should guide programme design and resource allocation. Local knowledge of these dynamics is essential to informing pro- gramme design. Based on the data gathered and its analysis, programme planners and practitioners should build consensus with partners and stakeholders on how to best allocate available resources to provide reintegration support to the identified participants and beneficiaries, deciding on the appropriate approach or mix of approaches.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "841a739c-41d8-4616-a17a-c01cc6d59c5d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 10, + "Paragraph": "Individual reintegration In practice, individual reintegration has aimed to provide long-term assistance to each ex-combatant depending upon his/her specific needs, the nature of the environment of return (urban or rural), and the services available in these locations. Individual reintegra- tion has typically included targeted activities geared towards increasing ex-combatants\u2019 individual employability and enabling their access to productive assets and opportunities. In addition, activities and means that have aimed to facilitate social reintegration \u2013 such as access to land and water, livelihoods assets, life skills training, psychosocial assistance, and activities that stimulate community acceptance \u2013 have been included. The individual reintegration approach has included ongoing technical advice, train- ing and mentoring, and other support services for the individual ex-combatant. Proper and timely advice, adequate monitoring, and follow-up have aimed to keep each ex-combatant focused on his/her plan and to help him/her to adapt to the ever-changing post-con- flict environment. Furthermore, assistance has often been delivered through information, counseling and referral services (ICRS). While individual reintegration has historically been a leading approach in the reinte- gration of ex-combatants, lessons learned from DDR programmes around the world have shown that reintegration approaches that include elements of community and family participation and assistance, as well as enlarged targeting principles, have higher success rates. For more information, see section 6.2. on community-based reintegration.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5b4e1246-e952-4cf3-883f-51be6602b290", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Community-based reintegration (CBR) Lessons learned from DDR programmes around the world have shown that reintegration approaches that include elements of community and family participation and assistance, as well as enlarged targeting principles, have higher success rates. Where DDR programmes have delivered individual reintegration to ex-combatants alone, the result has often been hostility or resentment on the part of community members who feel excluded from reintegration benefits. The problems arising from such dynamics have created barriers to the goals of social reintegration and the strengthening of com- munity cohesion, ultimately threatening the sustainability of reintegration programmes. Where community members are included in the planning process and provided access to concrete benefits, however, the result is often enhanced local ownership and acceptance of the reintegration programme. Reintegration programmes should therefore facilitate com- munities coming together to discuss and decide on their own priorities and methods that they believe will help in the reintegration of ex-combatants. While it is not the whole community that will receive reintegration assistance, in community-based reintegration approaches ex-combatants are assisted together with other members of the community. Selection criteria and percentages of ex-combatants to community members can vary. Lessons learned have shown that targeting community members with a similar profile to the ex-combatants can be particularly effective (such as unemployed youth).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "60389826-0275-48f6-a9ae-a2cda66714e0", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 11, + "Paragraph": "Dual targeting Dual targeting \u2013 providing reintegration assistance that simultaneously targets individ- ual ex-combatants and members of their communities of return or choice \u2013 can create a \u201cwin-win\u201d situation, contributing to the achievement of economic and social goals for both individual participants and community beneficiaries. Such assistance typically targets 50% ex-combatants and 50% conflict-affected community members, though pro- portions may vary depending on the context. This approach promotes greater inclusion in the reintegration process and can prove to be a useful way to manage risks and improve community security.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5cee03f5-6554-4d6a-b83d-bd203764fbed", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 11, + "Paragraph": "Ex-combatant-led initiatives Ex-combatant-led initiatives are those reintegration activities identified, planned and exe- cuted by the ex-combatants themselves with the aim of directly benefiting communities of return or choice. Through consultation and dialogue with community and civil society leaders, ex-combatants can work to identify those activities best suited to the community at large and their own skill sets. Such activities can provide ex-combatants with a sense of ownership of the reintegration achievements that take place at the community level. In addition, if well-executed and genuinely planned with the best interest of the community in mind, this approach has the potential to build ex-combatants\u2019 rapport with community members and greatly enhance reconciliation. DDR staff shall work closely with ex-combatants in the planning, implementation and monitoring of these initiatives to ensure that the activities chosen are transparent, fea- sible (e.g. sufficient capacity exists to implement the initiative, the activity is cost efficient, the activity can be completed within a reasonable timeframe) and appropriately benefit the community as a whole based on prior assessments and the local context.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f679a42d-352e-4b5a-9784-d6194b76456d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 12, + "Paragraph": "Area-based interventions Area-based reintegration targets a specifically defined geographic territory containing conflict-affected communities where large clusters of ex-combatants have been identi- fied. It aims to reintegrate conflict-affected groups into the economic and social life of a community through economic projects, such as those that focus on rebuilding public infrastructure, in addition to social reintegration activities that promote reconciliation. The objective of these interventions is to optimize the use of locally-based resources (rural and/or urban) and the synergies arising among local businesses, civil society, busi- ness development service providers, investors, authorities, etc. Rather than focusing on specific target groups, area-based interventions make use of local resources and exter- nal investments in order to offer context-specific solutions to post-war economic recovery. When applying an area-based approach, reintegration planners shall consider all net- works and economic flows that affect (or could affect) the defined territory.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "72c5bfdb-2c5f-416d-8093-434a2ee632a3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 12, + "Paragraph": "Focus on command structures The risks posed by enduring command structures should also be taken into account dur- ing reintegration planning and may require specific action. A stated aim of demobilization is the breakdown of armed groups\u2019 command structures. However, experience has shown this is difficult to achieve, quantify, qualify or monitor. Over time hierarchical structures erode, but informal networks and associations based upon loyalties and shared experi- ences may remain long into the post-conflict period. In order to break command structures and prevent mid-level commanders from becoming spoilers in DDR, programmes may have to devise specific assistance strategies that better correspond to the profiles and needs of mid-level commanders. Such support may include preparation for nominations/vetting for public appointments, redundancy payments based on years of service, and guidance on investment options, expanding a family business and creating employment, etc. Commander incentive programmes (CIPs) can further work to support the transformation of command structures into more defined organizations, such as political parties and groups, or socially and economically produc- tive entities such as cooperatives and credit unions. DDR managers should keep in mind that the creation of veterans\u2019 associations should be carefully assessed and these groups supported only if they positively support the DDR process. Extreme caution should be exercised when requested to support the creation and maintenance of veterans\u2019 associations. Although these associations may arise spontane- ously as representation and self-help groups due to the fact that members face similar challenges, have affinities and have common pasts, prolonged affiliation may perpetu- ate the retention of \u201cex-combatant\u201d identities, preventing ex-combatants from effectively transitioning from military to their new civilian identities and roles. The overriding principle for supporting transformed command structures is that the associations that arise permit individual freedom of choice (i.e. joining is not required or coerced). In some instances, these associations may provide early warning and response systems for identifying dissatisfaction among ex-combatants, and for building confidence between discontented groups and the rest of the community.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "02433864-8107-4d7a-a0a7-34e659de669f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 13, + "Paragraph": "Overview Reintegration planning should be based on rapid, reliable and detailed assessments and should begin as early as possible. This is to ensure that reintegration programmes are designed and implemented in a timely and effective manner, where the gap between demobilization/reinsertion and reintegration support is minimized as much as pos- sible. This requires that relevant UN agencies, programmes and funds jointly plan for reintegration. The planning phase of a reintegration programme should be based on clear assess- ments that, at a minimum, ask the following questions: A comprehensive understanding and constant re-appraisal of these questions and corresponding factors during planning and implementation phases will enhance and shape a programme\u2019s strategy and resource allocation. This data will also serve to inform concerned parties of the objectives and expected results of the DDR programme and linkages to broader recovery and development issues. Finally, DDR planners and practitioners should also be aware of existing policies, strategies and framework on reintegration and recovery to ensure adequate coordina- tion. DDR planners and managers should carefully assess timings, opportunities and risks involved in order to integrate DDR programmes with wider frameworks and pro- grammes. Partnerships with institutions and agencies leading on the implementation of such frameworks and programmes should be sought as much as possible to make an effi- cient and effective use of resources and avoid overlapping interventions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "292408c0-2402-435f-91ba-bd4376354058", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 14, + "Paragraph": "Mainstreaming gender into analyses and assessments The planning and design of reintegration programmes should be based on the collection of sex and age disaggregated data in order to analyze and identify the specific needs of both male and female programme participants. Sex and age disaggregated data should be captured in all types of pre-programme and programme assessments, starting with the conflict and security analysis, moving into post-conflict needs assessments and in all DDR-specific assessments. The gathering of gender-sensitive data from the start will help make visible the unique and varying needs, capacities, interests, priorities, power relations and roles of women, men, girls and boys. At this early stage, conflict and security analysis and rein- tegration assessments should also identify any variations among certain subgroups (i.e. children, youth, elderly, dependants, disabled, foreign combatants, abducted and so on) within male and female DDR beneficiaries and participants. The overall objective of integrating gender into conflict and security analysis and DDR assessments is to build efficiency into reintegration programmes. By taking a more gender-sensitive approach from the start, DDR programmes can make more informed decisions and take appropriate action to ensure that women, men, boys and girls equally benefit from reintegration opportunities that are designed to meet their specific needs. For 5.10\tmore information on gender-sensitive programming, see Module 5.10 on Women, Gender and DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bdc5d456-5552-4e9c-a11b-36e4e042d59d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 14, + "Paragraph": "Conflict and security analysis The nature of the conflict will determine the nature of the peace process, which in turn will influence the objectives and expected results of DDR and the type of reintegration approach that is required. Conflict and security analyses should be carried out and con- sulted in order to clarify the nature of the conflict and how it was resolved, and to identify the political, economic and social challenges facing a DDR programme. These analyses can provide critical information on the structure of armed groups during the conflict, how ex-combatants are perceived by their communities (e.g. as heroes who defended their communities or as perpetrators of violent acts who should be punished), and what ex-combatants\u2019 expectations will be following a peace agreement. A holistic analysis of conflict and security dynamics should inform the development of the objectives and strategies of the DDR programme. The following table suggests ques- tions for this analysis and assessment. For further information, please also refer to the UNDP Guide on Conflict-related Development Analysis (available online).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "27dea9df-9fae-4809-9a17-ed8814772a02", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Post-conflict needs assessments (PCNAs) Post-conflict needs assessments (PCNAs) are a tool developed jointly by the UN Develop- ment Group (UNDG), the European Commission (EC), the World Bank (WB) and regional development banks in collaboration with national governments and with the cooperation of donor countries. National and international actors use PCNAs as an entry point for conceptualizing, negotiating and financing a common shared strategy for recovery and development in fragile, post-conflict settings. The PCNA includes both the assessment of needs and the national prioritization and costing of needs in an accompanying transi- tional results matrix. PCNAs are also used to determine baselines on crosscutting issues such as gender, HIV/AIDS, human rights and the environment. To this end, the results of completed PCNAs represent a valuable tool that should be used by DDR experts during reintegration programming. In countries where PCNAs are in the process of being completed, DDR managers and planners should integrate as much as possible DDR into these exercises. In addition to influencing inclusion of more traditional areas of practice, DDR planners should aim to influence and lobby for the inclusion of more recently identified areas of need, such as psy- chosocial and political reintegration. For more detailed and updated information about PCNAs, see Joint Guidance Note on Integrated Recovery Planning using Post-Conflict Needs 2.20\tAssessments and Transitional Frameworks, www.undg.org. Also see Module 2.20 section 6.1.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6390ff6e-ba3e-457a-af2f-8bd857117658", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 16, + "Paragraph": "Ex-combatant-focused reintegration assessments The registration of ex-combatants during the demobilization phase provides detailed information on each programme participant\u2019s social and economic expectations, as well as his/her capacities, resources, or even the nature of his/her marginalization. How- ever, by the time this registration takes place, it is already too late to begin planning the reintegration programme. As a result, to adequately plan for the reintegration phase, a general profile of potential beneficiaries and participants of the DDR programme should be developed before disarmament and demobilization begins. Such a profile can be done through carefully randomized and stratified (to the extent possible) sampled surveys of smaller numbers of representative combatants. In order for these assessments to adequately form the basis for reintegration pro- gramme planning, implementation, and M&E, they should be further supplemented by data on specific needs groups and additional research, particularly in the fields of anthro- pology, history, and area studies. During the assessment process, attention should be paid to specific needs groups, including female combatants, WAAFG, youth, children, and combatants with disabilities. In addition, research on specific countries and peoples, including that of scholars from the country or region will prove useful. Cultural rela- tionships to land and other physical resources should also be noted here to better inform reintegration programme planners. The most important types of ex-combatant focused assessments are: Early profiling and pre-registration surveys; Full profiling and registration of ex-combatants; Identification and assessment of areas of return and resettlement; Community perception surveys; Reintegration opportunity mapping; and Services mapping and institutional capacity assessment.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "523ca9e8-4f28-4f8b-b154-8a1b774c78eb", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 17, + "Paragraph": "Early profiling and pre-registration surveys Also known as pre-programme assessments, early profiling and pre-registration surveys will establish the nature and size of the group for which a reintegration programme is to be designed. Profiling on a sample basis is typically done as soon as access to combatants is possible. This enables a quick assessment of the combatants to be included in DDR, including information on their demographics, human and material capital, as well as their aspirations. The collection of personal and socio-economic data also provides baseline information needed for the planning, design and formulation of a monitoring and evalu- ation plan. Early profiling, registration, and surveying should take into account gender-sensitive procedures, so that women, men, girls and boys are able to accurately state their involve- ment and needs, and other relevant information. Early information should be gathered about the issues listed in the following table: In some cases it can be very difficult to obtain accurate or any information regarding the profiles and number of ex-combatants for the DDR programme. In such cases, DDR experts should rely on information from local civil society and other UN agencies, and plan their programmes as best they can with the available information.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ced8f4ad-4b2a-4f48-96d3-99c07a20806e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 18, + "Paragraph": "Full profiling and registration of ex-combatants As full profiling and registration of ex-combatants is typically conducting during disar- mament and demobilization, programme planners and managers should ensure that these activities are designed to support reintegration, and that information gathered through profiling forms the basis of reintegration assistance. For more information on profiling and registration during disarmament and demobilization, see Module 4.10 section 7 and Module 4.20 sections 6 and 8. Previous DDR programmes have often experienced a delay between registration and the delivery of assistance, which can lead to frustration among ex-combatants. To deal with this problem, DDR programmes should provide ex-combatants with a clear and realistic timetable of when they will receive reintegration assistance when they first register for DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b44e20ce-a645-4dd7-bc86-0ef615aa0b68", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 19, + "Paragraph": "Identification and assessment of areas of return and resettlement Based on the information gathered from the early profiling and pre-registration survey, an assessment should be made of the economic, political, and social potential and con- straints of the areas that ex-combatants and associated groups are expected to return to or resettle in. This assessment should then be enhanced and greatly expanded based on the individual data collected during disarmament and/or demobilization, and stored in a management information system (MIS) (for more information on managing data see sec- tion 7.6). Among its benefits, it may prove an important component of risk assessments to map and monitor \u201chot spots.\u201d The assessment of communities and areas of return or choice should take into account the availability of natural resources (including land, water, forests, wildlife), livelihood conditions, economic opportunities and existing infrastructure (such as transportation, access to markets, and the availability of communications and services), and the overall security situation in the area. It should also map the accessibility of local social services and institutions that serve persons with disabilities, offer psychosocial care, etc. Local and traditional knowledge related to ownership of land, resource use, man- agement of natural resources (including agricultural practices in cultivation, animal husbandry, fishing rights and access, etc.) should be sought during these assessments. See Module 6.30 for more information on natural resource management and DDR. Additional data will need to be examined concerning social and political conditions to be sure that there are not underlying historical tensions which could prevent success- ful reintegration. Gender audits will also be necessary. From a political perspective, an assessment of the formal and informal leadership, power relationships and group dynam- ics within receptor communities should also be undertaken. This information should be placed within an understanding of the macroeconomic situation (i.e. the country and regional situation). 4.10 4.20 6.30", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "503cfaf6-7467-418b-8948-1b7304048a75", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 20, + "Paragraph": "Community perception surveys Community perception surveys include background information on socioeconomic and demographic data on all future direct beneficiaries of the reintegration programme including community expectations and perceptions of assistance provided to returning/ resettling ex-combatants. Community perception surveys collect useful data which can be used for qualitative indicators and to monitor changes in community perceptions of the reintegration process over time. DDR programmes should assess the strength of support for the reintegration process from these surveys and try their best to produce activities and programming that match the needs and desires of both programme participants and beneficiaries. DDR programmes should rely on local institutions and civil society to carry out such surveys whenever and wherever possible. These can be conducted as interviews or focus groups, depending on appropriateness and context. Communities should have the opportunity to express their opinions and preferences freely in terms of activities that best support the reintegration process and the community as a whole. Surveyors should also be careful not to raise expectations here as well, since the reintegration programme will not be able to meet all desires in terms of economic opportunities and social support to communities.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9ccbd4cd-9beb-4fd5-a99a-d373892d43b1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 21, + "Paragraph": "Reintegration opportunity mapping The post-conflict economic environment can be extremely complex and difficult as armed conflicts invariably damage or destroy human and economic capital, transform social relationships and trust, weaken production and trade systems, and distort the labour mar- ket. In this challenging environment, it is essential that DDR programmes avoid creating unrealistic expectations among stakeholders, especially programme participants and ben- eficiaries. By conducting reintegration opportunity mappings, programme managers will have a clearer understanding of the actual economic opportunities and assets available to those being reintegrated and be better equipped to provide ex-combatants with clear information as to what the reintegration programme will involve. DDR programme planners should prioritize the development of a countrywide sys- tematic mapping that builds upon the PCNA and other assessments conducted by relevant organizations to identify existing and potential employment opportunities. The analysis should include the functioning of: i) markets (labour, capital, goods and services, etc.); ii) input factors (land, energy resources, infrastructure, technology and information, etc.); and iii) supporting factors (institutional capacity in formal and informal economies, finan- cial markets, etc.). It should also capture potential financial service providers or training institutions available to support self-employment opportunities. Successful collaboration with development agencies and their monitoring activities is essential to this process. Opportunity mappings will also assess access to land and other natural resources, education and training possibilities, micro credit services (in contexts where they exist) and other employment and business development services (i.e. technical advisory, information and counseling services). The survey should include other development pro- grammes (both existing and planned) within the national recovery effort, as well as those of international and national development organizations. Attention shall be paid to different groups during opportunity mapping so that the employment, education and training needs and opportunities, as well as other resource needs of women and men, youth, children, and persons with disabilities, are well-un- derstood (also see Module 5.10 on Women, Gender and DDR, Module 5.20 on Youth and DDR, and Module 5.30 on Children and DDR). Social support services, such as support for people living with HIV/AIDS, trauma and drug abuse counseling, and/or disability rehabilitation services, should also be identified. This mapping should take place as early as possible (ideally beginning 9-12 months before the disarmament and demobilization phases begin) to ensure that training and social support programmes are ready when ex-combatants need them. They should reflect local and international laws and standards on gender- and age-appropriate labour, as well as changes in gender roles that may have occurred during conflict. On the basis of these assessments, the DDR programme can select training provid- ers, assess costs and capacity support needs, and develop context-specific programmes designed to meet the needs of diverse programme participants and beneficiaries. 5.10 5.20 5.30", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f00f9ac8-8e46-44c7-a1bb-57c956d73803", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 23, + "Paragraph": "Services mapping and capacity assessment Capacity development of government entities and service providers after a conflict consti- tutes one of the most important aspects to successful reintegration. It is therefore essential for reintegration assessments to collect data on levels of institutional capacities to ensure adequate funding for capacity development of partners from the outset. Institutional capacity assessments should start as early as possible with an analysis of potential service providers such as public vocational centers, business development services, relevant line ministries and NGOs, including organizational practices and absorption capacities as it takes several months to upgrade capacities. Capacity development can be \u201cindirect\u201d (designed to support national partners in the creation of conditions and relationships needed to foster incentives for outcomes) or \u201cdirect\u201d support for the achievements of outcomes (such as technical interventions or information management in a finance ministry or a central bank). The first step is to help to identify the country\u2019s specific needs on which the overall capacity building actions will be based.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "76002410-22d4-4778-ad70-6b2e2dd45d63", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 23, + "Paragraph": "Managing data collected in assessments A management information system (MIS) is vital in order to capture, store, access, and manage information on individual ex-combatants and communities of return/resettle- ment, and data on available opportunities for training, education and employment. It can also provide vital data for monitoring, feedback, and evaluation. DDR planners shall give early consideration to the design and maintenance of an MIS, as it will work to support and better organize all reintegration activities. See the generic MIS called DREAM (\u2018Dis- armament, Demobilization, Reintegration and Arms Management\u2019) developed by UNDP, which can be adapted to the needs of each UN integrated DDR programme to minimize implementation delays and provide savings for DDR projects. Individual ex-combatant data included within an MIS should be captured prior to the start of reintegration activities, preferably during the disarmament and demobilization phases. The design and construction of the MIS should capture data that can be used to build a profile of the participant caseload. The collection of sex-, age- and disability-dis- aggregated socio-economic data (including information on specific needs, such as for wheelchairs or psychosocial services) is essential to the DDR programme. In addition, the data in the MIS should be easy to aggregate in order to provide regular updates for broad indicators. The development of new technologies, such as fingerprint identification and retina scanning, possess the potential to eradicate \u2018double dipping\u2019 of DDR assistance, particu- larly when cash assistance is provided as part of reinsertion assistance, or as an element of reintegration support. building respect for the rights of marginalized and specific needs groups (also see IDDRS 5.10 on Women, Gender and DDR and 5.30 on Children and DDR); and helping to ensure the sustainability of reintegration by developing community capac- ity to provide services and establishing community monitoring, management and oversight structures and systems. 5.10 5.30", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "da5d5b3c-698b-49be-86e8-10c9e1cc0222", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 25, + "Paragraph": "Ex-combatant engagement DDR programme planners should ensure that participatory planning includes representa- tion of the armed forces\u2019 and groups\u2019 leadership and the (ex-) combatants themselves, both women and men. To facilitate the inclusion of younger and less educated (ex-) combatants and associated groups in planning activities, DDR representatives should seek out cred- ible mid-level commanders to encourage and inform about participation. This outreach will help to ensure that the range of expectations (of leaders, mid-level commanders, and the rank and file) are, where possible, met in the programme design or at least managed from an early stage. DDR planners and managers should exercise caution and carefully analyze pros and cons in supporting the creation of veterans\u2019 associations as a way of ensuring adequate representation and social support to ex-combatants in a DDR process. Although these asso- ciations may be useful in some contexts and function as an early warning and response system for identifying dissatisfaction among ex-combatants, and for confidence-building between discontented groups and the rest of the community, they should not become an impediment to the reintegration of ex-combatants in society by perpetuating violent or militaristic identities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6dcde342-a0fb-4dc8-a09d-a129aae549ac", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 25, + "Paragraph": "Community engagement Ultimately, it is communities who will or who will not accept ex-combatants, and who will foster their reintegration into civilian life. It is therefore important to ensure that com- munities are at the centre of reintegration planning. Through community engagement, reintegration programmes will be better able to identify opportunities for ex-combatants, cope with transitional justice issues affecting ex-combatants and victims, pinpoint poten- tial stressors, and identify priorities for community recovery projects. However, while it is crucial to involve communities in the design and implementation of reintegration 5.10 5.60 programmes, their capacities and commitment to encourage ex-combatants\u2019 reintegration should be carefully assessed. It is good practice to involve or consult families, traditional and religious leaders, women\u2019s, men\u2019s and youth groups, disabled persons\u2019 organizations and other local asso- ciations when planning the return of ex-combatants. These groups should receive support and training to assist in the process. Community women\u2019s groups should be sensitized to support and protect women and girls returning from armed forces and groups, who may struggle to reintegrate (see Module 5.10 on Women, Gender and DDR for more informa- tion). Linkages with existing HIV programmes should also be made, and people living with HIV/AIDS in the community should be consulted and involved in planning for HIV activities from the outset (see Module 5.60 on HIV/AIDS and DDR for more information). Disabled persons\u2019 organizations can be similarly mobilized to participate in planning and as potential implementing partners. When engaging communities, it should be remembered that youth and women have not always benefited from the services or opportunities created in receptor communities, nor have they automatically had a voice in community-driven approaches. To ensure a holistic approach to community engagement, such realities should be carefully considered and addressed so that the whole community \u2013 including specific needs groups \u2013 can ben- efit from reintegration programming.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c2c008b1-8580-4b8d-8a67-b4c9b905532a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 26, + "Paragraph": "Private sector involvement Building a close partnership with the private sector is indispensable to creating oppor- tunities to absorb ex-combatants into a labour market. Job referral, training (especially apprenticeship, training voucher, and employment subsidy programmes) and employ- ment creation aspects of reintegration are often reliant on the private sector and existing businesses. Involvement of the private sector in the planning of reintegration programmes maximizes the relevance of reintegration assistance and can ensure that training activities support the skills required within the prevailing employment market. Private sector actors should be sensitized to DDR programme activities and con- sulted from the initial programme design stage so that the reintegration assistance can target actual needs in the labour market. A thorough understanding of the existing pri- vate sector and war economy is also necessary for reintegration planning. The following options can be considered to encourage private sector investment (see ILO Guidelines for the Socio-economic Reintegration of Ex-combatants, pp. 26-27): Create incentives for private companies and employers\u2019 associations to help re-estab- lish small local units (e.g. sub-contracting) to supply services and provide employment. Consider how short-term job creation for ex-combatants can be linked to the private sector. For example, provide private sector actors incentives in primary and second- ary infrastructure contracts, with contractual obligations to take on a fixed number of labourers and apprentices from ex-combatant groups. Upgrade existing enterprises, transfer appropriate technology (especially to the urban informal economy), organize livelihoods and vocational training, and provide access to credit. Stimulate public-private partnerships (PPPs) in areas most suitable to commu- nity reintegration (infrastructure, basic services) that promote social inclusion. Reintegration programmes can seek to facilitate linking the entities to make such partnerships possible.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "da95d35f-2682-4735-b6d6-dd6918212e37", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 27, + "Paragraph": "Urban vs. rural reintegration planning In the programme planning phase, attention must be paid to the inherent differences between urban and rural reintegration. Even though the majority of ex-combatants come from rural areas, experience has shown that they often prefer to be reintegrated in urban settings. This is likely due to a change in lifestyle during time with armed forces and groups, as well as an association of agricultural work with poorer living conditions. Another reason may be that rural reintegration packages are seen as less attractive than urban packages, the latter of which often include vocational training in more appealing professions. A key issue to consider when planning for reintegration is that urban areas generally involve more complex and demand-driven planning than rural areas. Depending on the context and in accordance with national recovery and development policies, it may be necessary to encourage ex-combatants and associated members to return to rural areas through the promotion of agricultural activities. Reintegration programmes should there- fore offer agriculture packages that include high quality farming tools and seeds, as well as financial means (or food) to cover the first pre-harvest period. For ex-combatants with limited or no previous knowledge of farming and/or with limited access to land, cooper- atives may be favorable. Careful attention should also be paid to the question of land acquisition since pro- gramme participants may have lost their access to land due to conflict. Terms must be negotiated that are profitable to both the landowner/community and the ex-combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "9daac00e-1bcc-42d4-9e74-9ed2acaa5f39", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 27, + "Paragraph": "Reintegration design A well-designed DDR programme shall not only enhance basic security but shall also sup- port wider recovery and development efforts. It shall further define strategies to address the following essential elements for progamme success: Reintegration strategy and exit strategy; Eligibility criteria; Public information and sensitization; Information counseling and referral services (ICRS); Monitoring and evaluation (M&E); Capacity development; Resource mobilization.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e954600d-b262-4ad2-8896-686a93204d4d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 27, + "Paragraph": "Reintegration strategy and exit strategy Reintegration programmes are often only able to cover the conflict transition and early recovery periods as the timeframes of externally-supported programmes is limited. Reintegration processes, however, take much longer and become in large part \u2013 if not entirely \u2013 the responsibility of national actors. Due to this timeframe, the reintegration process is inherently linked to long-term recovery and development processes. Many aspects and outcomes of the reintegration programme, therefore, need to be transferred and sustained beyond the lifespan of the DDR operation to support national counterparts in the immense task at hand. To ensure this smooth transition, reintegration programme managers shall clearly define the exit strategy during the planning stage, focusing on the transition between reintegration and broader SSR, violence prevention, wider recovery, peace building and development processes. A capacity development component at the end of the reintegration programme should be planned for from the earliest stage to assure a smooth programme transition and to ensure that the responsibility for reintegration consistently rests with national institutions and government ministries.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c7839243-67a3-4f8a-9e75-2e2a12748ffc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 28, + "Paragraph": "Eligibility criteria The eligibility criteria established for the reintegration programme will not necessarily be the same as the criteria established for the disarmament and demobilization phases. Groups associated with armed forces and groups and dependants may not have been eligible to participate in disarmament or demobilization, for instance, but may qualify to participate in reintegration programme activities. It is therefore important to assess eligi- bility on an individual basis using a screening or verification process. DDR planners should develop transparent, easily understood and unambiguous and verifiable eligibility criteria as early as possible, taking into account a balance between security, equity and vulnerability; available resources and funding; and logistical consid- erations. Establishing criteria will therefore depend largely on the size and nature of the caseload and context-specific elements.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc826f2a-4ded-4a52-9fa2-bbd04a74a702", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 28, + "Paragraph": "Public information and sensitization The return of ex-combatants to communities can create real or perceived security prob- lems. The DDR programme should therefore include a strong, long-term public information campaign to keep communities and ex-combatants informed of the reintegration strategy, timetable and resources available. Communication strategies can also integrate broader peace-building messages as part of support for reconciliation processes. Substantial opportunities exist for disseminating public information and sensitiza- tion around DDR programmes through creative use of media (film, radio, television) as well as through using central meeting places (such as market areas) to provide regular programme information and updates. Bringing film messages via portable screens and equipment to rural areas is also an effective way to disseminate messages about DDR and the peace process in general. Lessons learned from previous DDR programmes suggest that radio programmes in which ex-combatants have spoken about their experiences can 4.60\tbe a powerful tool for reconciliation (also see IDDRS 4.60 on Public Information and Stra- tegic Communication in Support of DDR). Focus-group interviews with a wide range of people in sample communities can pro- vide DDR programme managers with a sense of the difficulties and issues that should be dealt with before the return of the ex-combatants. Identifying \u2018areas at-risk\u2019 can also help managers and practitioners prioritize areas in which communication strategies should initially be focused. Particular communication strategies should be developed in receiving communities to provide information support services, including \u2018safe spaces\u2019 for reporting security threats related to sexual and gender-based violence (especially for women and girls). Like- wise, focus groups for women and girls who are being reintegrated into communities should assess socio-economic and security needs of those individual who may face stig- matization and exclusion during reintegration.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ef76d74-d23f-44de-ade2-53e3e4e084f4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Information, counseling and referral services (ICRS) Information, counseling and referral services (ICRS) should serve as a repository of information concerning all the programmes, training and assistance available through government, international organizations and local organizations. These services should, where possible, build on strengthening existing national and local capacities to deliver reintegration assistance, for example through the Ministries of Labour, Health, Agriculture, Forestry, Fisheries and Aquaculture, Youth and Sports, Education and Planning. In coun- tries where government structures and services are weak or non-existent, the reintegration programme may consider temporary structures for targeting ex-combatants, if necessary.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "cbbbafe7-e96f-45e6-91c1-ba74296b38fd", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Monitoring and evaluation (M&E) One of the weaknesses of past DDR programmes has been the lack of clearly defined objectives and measurable indicators, which are needed for the monitoring and evalua- tion (M&E) of the programme. The measurement of outcomes is essential to determining the success and effectiveness of inputs and outputs in the programme. Once the decision to implement a DDR programme has been taken, the government and/or national and local stakeholders, together with UN agencies and partners, shall develop a framework for results-based monitoring and evaluation. For more details on M&E see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes and the UNDP How-to Guide on Monitor- ing and Evaluation for Disarmament, Demobilization and Reintegration Programmes. The starting point for effective, results-based M&E is for all concerned parties to arrive at a clear and unambiguous agreement about the context-specific objectives and expected results of the reintegration programme. Once expected results are clearly defined, all stakeholders must agree on key indicators for monitoring progress towards and measur- ing the achievement of outputs and outcomes. Reintegration outcomes typically refer to employment rates, changes in income, changes in ex-combatant behaviour, successful interactions with other social groups, and improvement in security both at national and local levels. M&E programmes should be sure to include indicators related to the efficient use of livelihoods resources in order to determine if programme approaches need to be adapted mid-way to increase the likeli- hood of success in the long-term. The programme budget required for M&E will largely depend on the following factors: The number of dedicated M&E staff the programme hires and at what level; The number of planned external evaluations; The number and type of surveys and other primary data collection activities; The costs associated with training; The costs of establishing baselines. 3.50 A very approximate rule of thumb is that around 3-7 percent of dedicated programme resources will be needed for effective and meaningful M&E.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "bfd6b201-3aa7-457e-a81d-df55d1546d8e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 30, + "Paragraph": "Capacity development Armed conflict often has devastating effects on educational development, employment and business development, health systems, legal institutions, etc. Qualified individuals have often fled, organizations have lost their capacity and resources, and the systems within which institutions function have been disrupted. Often reintegration programmes and development plans have no alternative but to work towards (re-) building the capacity of those individuals who have remained or returned. A primary role of all international assistance, and specifically UN assistance, is to support the development of national and local capacities. This capacity built as part of rein- tegration programmes will encourage ownership, commitment and successful delivery of services, as well as the long-term sustainability of reintegration processes. Reintegration assistance should include a component on developing the capacity of national actors including line ministries, training institutions and service providers through educa- tion and training in institution building, organizational and financial management, and technical and material assistance. Support should also be given to communities to set up local forums and consultative committees that form the basis of decision-making processes that define and shape the focus of local reintegration assistance, and provide community oversight and ownership. It is particularly important to synchronize the tim- ing of ex-combatants\u2019 reintegration with the period necessary to develop the capacity of local governments. Providing training in planning, management and social skills to reintegration service providers constitutes an important contribution, but capacity building must not be lim- ited to training. On-the-job learning and knowledge transfer is effective as well. In many cases it will prove necessary and beneficial for international staff in key positions to work directly with local counterparts in order to ensure transfer of competences in a timely manner. Since this method is not suitable for the long-term, institution-based and cross-in- stitutional assistance programmes can replace the assistance provided by internationals.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "8709a1f4-efff-4a91-b75c-0173168f155c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 31, + "Paragraph": "Resource mobilization Reintegration programmes\u2019 scope, commencement and timeframe are subject to funding availability, meaning implementation can frequently be delayed due to late or absent dis- bursement of funding. Previous reintegration programmes have faced serious funding problems, as outlined below. However, such examples can be readily used to inform and improve future reintegration initiatives. The move towards integration across the UN could help to solve some of these prob- lems. Resolution A/C.5/59/L.53 of the Fifth Committee of the UN General Assembly formally endorsed the financing of staffing and operational costs for disarmament and demobilization (including reinsertion activities), which allows the use of the assessed budget for DDR during peacekeeping activities. The resolution agreed that the demo- bilization process must provide \u201ctransitional assistance to help cover the basic needs of ex-combatants and their families and can include transitional safety allowances, food, clothes, shelter, medical services, short-term education, training, employment and tools.\u201d However, committed funding for reintegration programming remains a key issue. Due to the challenges faced when mobilizing resources and funding, it is essential that DDR funding arrangements remain flexible. As past experience shows, strict alloca- tion of funds for specific DDR components (e.g. reintegration only) or expenditures (e.g. logistics and equipment) reinforces an artificial distinction between the different phases of DDR. Cooperation with projects and programmes or interventions by bilateral donors may work to fill this gap. For more information on funding and resource mobilization see 3.41\tModule 3.41 on Finance and Budgeting. Finally, ensuring the formulation of gender-responsive budgets and better tracking of spending and resource allocation on gender issues in DDR programmes would be an important accountability tool for the UN system internally, as well as for the host country and population.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "aad44475-9484-4dfb-b0b1-f65c9a7687d3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 20, + "Paragraph": "Economic reintegration The end of hostilities does not automatically result in an improvement of economic condi- tions. The war economy may still be in full-force and understanding its effects on labour markets, private security and public sector activities is essential to ensuring successful economic reintegration. Access to those productive assets (such as land, capital, technol- ogy, natural resources and markets) needed for reintegration, for example, may be limited. At the end of a conflict there is often an abrupt release into the labour market of thousands of ex-combatants who compete with ordinary civilians for extremely scarce jobs and live- lihood opportunities. In such circumstances, ex-combatants and vulnerable youth may turn to illicit activities such as organized crime, banditry, illegal exploitation of natural resources and other socially harmful and violent activities. Providing immediate support for the reintegration of ex-combatants is therefore vital to help develop alternatives to vio- lence-based livelihoods and to enhance security. Creating economic opportunities is essential to helping ex-combatants (re-) build their civilian lives and develop alternatives to violence-based livelihoods. Ex-combatants in many contexts have consistently identified an alternative livelihood and the ability to generate income as key factors to their successful reintegration. Many have also indicated that being able to provide for family is particularly important in establishing their sense of identity, the level of respect they receive in communities, and to ensuring a healthy self-esteem. Efforts should be made by reintegration programmes to pave the way for decent and sustainable work. Decent work involves employment opportunities that are productive and deliver a fair income, provide security in the workplace and social protection for workers and their families, offer prospects for personal development and encourage social integra- tion, and give people the freedom to express their concerns, to organize and to participate in decisions that affect their lives. Furthermore, decent work guarantees equal oppor- tunities and equal treatment for all.1 Reintegration programmes should be particularly careful not to lead girls or boys, young women or men, into any forms of hazardous work. In addition, women and girls who choose to self-reintegrate should be offered support mechanisms within their communities, such as vocational training to gain economic live- lihoods and decent work. Support for reintegration should go beyond placing programme participants in survival occupations and trades, although as alluded to earlier it may be necessary to develop interim stabilization programmes during reinsertion, such as labour intensive public works, to buy time and space to establish more sustainable programming. Atten- tion should be paid to the specific needs of the agricultural industry, as this sector is likely to absorb most of those returning to rural areas in the aftermath of conflict. Availability of land, soil conditions, access to water and irrigation infrastructure, availability of seed vari- etals and support for value-added production or processing should be expertly evaluated. Progress towards economic reintegration can typically be monitored using quantita- tive tools like surveys based on small representative samples. Recovery and sustainable employment creation should be a priority national or regional level effort, and local level reintegration programmes should make all efforts to link to national economic policies.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2008f873-e7fd-4468-bd4e-c755a28df5a2", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "United Nations Policy for Post-Conflict Employment Creation, Income Generation and Reintegration Recognizing that employment creation, income generation and reintegration are particu- larly challenging in post-conflict environments, in May 2008 the UN Secretary-General endorsed the UN Policy for Post-Conflict Employment Creation, Income Generation and Reinte- gration. The objective of the Policy is to scale up and maximize the impact, coherence and efficiency of employment and reintegration support provided to post-conflict countries by UN programmes, funds and specialized agencies. According to the Policy, programming for employment creation and reintegration should be structured along three concurrent tracks as shown in Figure 1 below. These tracks are: Track A, focused on stabilizing income generation and creating emergency employ- ment and targeting specific conflict-affected individuals, including ex-combatants; Track B, focused on local economic recovery (LER) for employment and reintegration, including in communities ex-combatants and displaced persons chose to return to; and Track C, focused on sustainable employment creation and decent work. The implementation of the three programme tracks should start simultaneously dur- ing peace negotiations, with varying intensity and duration depending on the national/ local context. This implies that an enabling environment for employment creation needs to be actively promoted by reintegration programmes within the immediate aftermath of conflict. During the implementation of the Policy, specific attention should be given to conflict-affected groups, such as displaced people, returnees and ex-combatants, with particular focus on women and youth who are often marginalized during these processes. This module focuses on interventions that fall primarily under Track B programmes, whereas most reinsertion activities fall under Track A programmes. Track B is the most critical for reintegration as its success is dependent on the adoption of employment crea- tion and income generation strategies, mainly through local economic recovery. See ILO Guidelines on Local Economic Recovery in Post-Conflict (2010). This approach will allow the economy to absorb the numerous new entrants in the labour market and build the foun- dations for creating decent work.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "07690b5d-51a7-4079-a8f1-f4cf186c8606", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 34, + "Paragraph": "Economic reintegration opportunity and mapping surveys Early assessment of the opportunities and services open to ex-combatants is vital in the design and planning of a reintegration programme. It should be emphasized that analyses of the labour market need to be regularly updated during the implementation of the rein- tegration programme to ensure relevant responses. Economic reintegration opportunity and mapping surveys should include analy- sis of culturally appropriate professions and/or trades for men and women of varying age groups, abilities, capacities and literacy levels, recognizing how conflict may have changed cultural norms about gender-appropriate work. However, analyses should not just assess what is culturally appropriate for men and women, but also what women and men want to do. At times, such information may contradict what is or was thought to be culturally appropriate. Acting carefully, reintegration assis- tance should aim to avoid reinforcing traditional gender stereotypes which may only permit women to work in lower paying professional activities. National capacity (such as the Min- istry of Employment or Labour), should be strengthened to perform this task at the national and provincial level, while providers of vocational training and employment services should be equipped to complement these efforts with regular assessments at the local level. Mapping surveys should seek to include detailed information concerning the avail- ability of livelihoods resources and desires by beneficiaries to more efficiently transform these resources into productive assets. A realistic assessment of existing employment opportunities and opportunities that could be supported quickly in the short term by either the public or private sector should also be included.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "95adc4b4-09db-413a-8ed6-e46e03f7bbf7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 35, + "Paragraph": "Employability of ex-combatants Armed conflict interrupts skills development for many wage-earning and self-employ- ment activities and disrupts the typical institutions and social mechanisms through which people develop social skills. As a result, the immediate post-conflict period may be characterized by a skills and education crisis. Many ex-combatants have missed opportunities for basic and further education, and as a result are disadvantaged in the competition for jobs and other opportunities. Provision of adult literacy classes, adult education, and technical and vocational train- ing is important both to improve the skill sets of adult and young ex-combatants and to provide opportunities for reorientation and demilitarization. While functional literacy programmes may help ex-combatants find employment, utilizing educational training techniques, which are tailored for illiterate beneficiaries, may also be highly effective in teaching marketable skills. As far as possible, education and training for ex-combatants and those associated with armed forces and groups should be supplied as part of the wider provision of edu- cational services to the general population, and not in schools or colleges exclusively for them. Such inclusiveness will play an important facilitative role in the social reintegration of ex-combatants. Reintegration experts should also take into account the multiple skill sets and liveli- hoods possibilities that one individual may have so that training and livelihoods support can reflect the cross-sector realities of individuals\u2019 skills and training. This is especially true in contexts where there appears to be little or no capacity for employable skills; each individual will have some type of skill that she or he is capable of, and the DDR reintegra- tion programme should be designed to capitalize on this in the best way possible.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8f2e0a45-5ccd-46d6-8ebd-5bbfd81ee3f9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 35, + "Paragraph": "Life skills Reintegration programme managers should regard the provision of life skills as a neces- sity, not a luxury, in reintegration programmes. Life skills include non-violent ways of resolving conflict at the workplace and in civilian life. Life skills also allow individuals to learn socially-acceptable behaviours to use in their personal and professional lives. This type of training requires an understanding of ever-shifting cultural and gen- der identities and roles and should complement the various other forms of educational and/or training services provided. Youth can benefit from acquisition of basic skills for managing a family and other domestic responsibilities. Economic, labour, education and political rights and responsibilities shall be communicated to ex-combatants, especially in countries undergoing major governance reform where it is essential to encourage the participation of ex-combatants in democratic structures and processes.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "562852bc-a5ec-43b5-90e1-db67a271c481", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Vocational training Ex-combatants often need to learn new skills in order to make a living in the civilian economy. Vocational education (formal school-based or informal apprenticeship) plays a vital role in successful reintegration, by increasing the chances of ex-combatants chances to effectively join the labour market. Training can also help break down military attitudes and behaviour, and develop values and norms based on peace and democracy. Vocational training activities should be based upon the outcomes of the opportunity mapping assess- ments and the profiles of the (ex-) combatants. Skills training does not by itself create employment. However, when it matches the real requirements of the labour market, it may enhance a person\u2019s employability and chances of finding a wage-paying job or of becoming self-employed. Training is therefore a natural component of any effective strategy for tackling poverty and social exclusion, as well as for empowering conflict-affected people to fend for themselves, to contribute to the reconstruction of their countries, and to be able to overcome some of the inequalities they suffered before the conflict and to enhance their human security. Typically, training has received inadequate attention in post-conflict contexts. Inertia and resistance often prove to be among the greatest challenges in relation to changing training systems. The focus on employability and more flexible training approaches in post-crisis contexts, however, constitutes an opportunity to revisit the relevance and the efficiency of the training supply systems in close relation to the real market demands. Providing training at later stages of reintegration is also advisable, since beneficiaries will have some experience after returning to their communities and may have a clearer idea of the types of training that they would most benefit from. Additionally, provisions for gender equity, to ensure that all participants can equally access the programme should be considered, including child care for female participants, their other duties (such as household activities which may prevent them from partici- pating at certain times of the day), as well as considerations for transportation. Training locations should be in close proximity to women\u2019s homes so it is more likely they can attend. Training activities can also include other essential components, such as reproduc- tive health and HIV information and care.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "97abd463-b854-48f1-975e-449ff55817c8", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 37, + "Paragraph": "Education and scholarships Young ex-combatants, especially those aged under 15, should be reintegrated into formal education, which may mean extra support for teachers and trainers to manage the special needs of such learners. Some ex-combatants can be offered scholarships to finish their studies. Youth (see IDDRS 5.20 on Youth) should have priority in these cases, and particu- lar attention must be paid to assisting girls to return to school, requiring making available child care facilities for children in their care as well as evening courses. In some countries where the conflict was particularly protracted and ex-combatants have received little or no schooling, emphasis should be placed on \u2018catch-up\u2019 education to ensure that this group does not remain in a disadvantaged position, in relation to their peers. If allowances or school fees are to be funded by the reintegration programme, programme managers should ensure that resources are available for the full duration of ex-combatants\u2019 catch-up or accelerated education, which could be longer than the reinte- gration programme. If resources are not available, there should be a clearly communicated plan for phasing out support. It is clear that the funding available from a DDR programme will not cover all edu- cation costs of the programme participants who wish to continue their studies. This must be acknowledged and expectations managed during counseling for reintegration, so that ex-combatants are able to plan for some way to pay for the rest of their studies. It should also be acknowledged during counseling that in post-conflict economies education does not guarantee employment.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2e629c67-1e35-4248-8368-28073fb601b6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 37, + "Paragraph": "Apprenticeships and on-the-job training Apprenticeships and other forms of on-the-job training can be particularly effective as they are likely to result in more sustainable employment and fill the large gap in the avail- ability of training providers. Apprenticeships are a form of on-the-job training where employers agree by contract to train individuals (apprentices) in a particular trade for a fixed period of time. A reinte- gration programme can subsidize such learning and training opportunities by paying the trainees an allowance and/or subsidizing the employers directly with equivalent wage support to take on apprentices for a fixed period. These interventions can also be an excel- lent means of social reintegration and reconciliation, as they place ex-combatants into an 5.20 already existing socio-economic network consisting of non-ex-combatants through the mentor/trainer. Apprenticeships are also a particularly effective form of training for youth employability as they impart technical and business skills and induct young people into a business culture and network of clients. In order to protect existing incentives for master craftspeople and apprentices to par- ticipate, apprenticeships should be carried out according to local traditions and norms regarding access, cost-sharing arrangements, duration and conditions for graduation, when appropriate. Skill certification mechanisms should be established to provide legiti- macy to those with existing skills as well as those acquiring new skills. Such certification is useful for potential future employers and consumers as a form of verification and con- fidence for employment. For trades with no apprenticeship system in place, other forms of on-the-job-training should be considered to support socio-economic reintegration. In addition, since fund- ing is often not sufficient within a reintegration programme to cover all training during apprenticeships, linkages to microfinance programmes should be established in an effort to address this gap.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "41c8f296-00ee-40f2-a4c6-08cced2d6ccc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 38, + "Paragraph": "Micro and small business training and start-ups Since most programme participants will need to rely on the informal economy for employ- ment, a strong focus on self-employment through business training support will offer those with entrepreneurial drive an effective means to succeed independently. While the recovery and expansion of the private sector should be encouraged, it is often necessary to focus on creating new micro enterprises for most ex-combatants. Vocational training needs to be accompanied by the provision of access to micro- finance and start-up grants or tools to facilitate micro business and self-employment activities. If such institutions and mechanisms are already locally available, the reinte- gration programme should establish partnerships with them to ensure accessibility for programme participants. Consistent follow up of such programmes is extremely impor- tant, as many reintegration programme participants may be attempting self-employment for the first time and will need significant coaching and mentoring. The success of microfinance projects involves a significant amount of business skills training, for which provisions must be made for participants to attend (i.e. subsidies for food, transportation, childcare etc). Such assistance should culminate in a business plan. In situations of low literacy or illiteracy, a programme must begin with literacy training or must develop low literacy tools such as pictograms for accounting, stock management, market analysis, how to access micro-credit and other business functions. One of the most important parts of any micro-finance programme is the social benefit. Often the business skills and training are complemented by social education on a range of context-appropri- ate topics including reproductive health, HIV, peace building, conflict resolution, gender equality, and general sessions that work to build self-esteem and self-confidence. Reintegration programmes should also ensure that many different kinds of small businesses are started to avoid distorting the balance of supply and demand in local markets. In addition, these businesses should be based on market surveys that iden- tify businesses and services needed in a particular area. It is also important to ensure that the same businesses do not get support from multiple organizations. Finally, value chain analysis focusing on small and medium enterprises (SMEs) in high demand niche market commodities, and linkage arrangements between micro enterprises as suppliers to medium and larger scale firms, should be sought out, thus helping to guarantee sustaina- bility for SMEs in an otherwise difficult post-conflict market environment.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "ffb997fa-20fa-4aa0-b9be-b33169317fd8", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 39, + "Paragraph": "Income generating opportunities A national enabling environment for job creation and decent work is essential as con- sensus-building and policy development take time. Enabling policies and programmes therefore need to be initiated early and supported by DDR planners. The ILO Guidelines for the Socio-Economic Reintegration of Ex-Combatants identify the following key factors for creating such an environment at the policy level:3 Strongly considering policy choices that ensure that infrastructure production and maintenance rely on local labour, local technical capacity and local materials to the greatest extent possible. Supporting national policies for labour-intensive work that are especially suitable for employing large numbers of ex-combatants. Reviewing and supporting national policies and legislation to create an enabling environment for private sector and small and medium enterprise (SME) development in rural and urban areas. This should include incentives for local companies to hire high-risk groups, often linked to reconstruction and rehabilitation. It should also consider the role of the private sector in supporting conflict-sensitive business devel- opment and in aiding in the transition from a war to peace economy. Recognizing potential limitations within the post-conflict context when supporting particular national policies. Identifying priority economic sectors with potential of rapid expansion and job creation. International assistance should be aligned with national priorities in building capac- ities to support and/or implement these policies. Early support and capacity-building within the NCDDR and line ministries relevant to reintegration should be aligned with an element of wider reintegration assistance and long-term recovery and development.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "946f39b1-09cc-45d8-810e-2d74084ea70d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 40, + "Paragraph": "Private sector employment Reintegration programmes should ideally aim to place qualified ex-combatants in existing businesses. Nonetheless, this is often difficult since business owners may not be willing (i.e. due to negative perceptions of ex-combatants) or able (i.e. du to stark economic real- ities) to employ them. Reintegration programmes should therefore help to increase the opportunities available to ex-combatants by offering wage, training and equipment subsi- dies. These subsidies, however, should have the following conditions: Wage subsidies should be partial and last for a fixed period of time; In-kind donations of equipment or training to allow for the expansion of existing businesses should be explored in exchange for the employment of reintegration pro- gramme beneficiaries; Newly hired ex-combatants should not take the jobs of workers who are already employed; Employers should use the subsidies to expand their businesses and to provide long- term employment for ex-combatants. Providing business development services (BDS) can help overcome the difficulties faced by ex-combatants, such as lack of education, inadequate technical skills, poor access to markets and lack of information. In many post-conflict societies, government agen- cies lack the capacity to support and deliver services to micro- and small enterprises. Various actors, including businesses, local NGOs with experience in economic projects, governmental institutions and community groups should therefore be encouraged and supported to provide BDS. Governments should also be supported in the creation of a legal framework to ensure that labour rights are respected and that demobilized or other vulnerable groups are not exploited within the private sector. Concessions and contracts created between the private sector and the national, regional or local government must be transparent and conducted in such a way that affected communities are able to make their voices heard. In the case of extraction of natural resources upon which livelihoods and recovery depends, it is espe- cially important to be sure that the terms of the contracts are fair to the communities and local peoples, and that the contracts of private companies address human security. When it comes to job placement, DDR practitioners should also support affirmative action for disadvantaged groups where applicable. See section 8.1.4. on private sector involvement for more information.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "786ce816-d9dc-48a7-afb8-50efe975ed65", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 40, + "Paragraph": "Micro-grants and access to credit If the main way of funding the creation of micro enterprises is decided to be micro- grants, they should be provided to the ex-combatants only after they have drawn up a clear start-up business plan and should be paid in installments with diligent follow-up. As part of information and counseling services, reintegration programmes should ensure that relevant service providers are in place to advise ex-combatants on financial manage- ment. Installments should, when possible, be given in kind (equipment, supplies, training, etc.), avoiding large cash payments, which are difficult to monitor effectively. Training and technical assistance services are also essential to the success of start-ups, together with direct, on-the-ground supervision and monitoring by the reintegration programme. Grant schemes have often been used in reintegration programmes. However, where possible, it is important that reintegration programmes gradually shift aim from small grants to credit access. This shift is needed so as not to create dependencies on grant schemes and to support entrepreneurship. Involving female family members \u2013 such as wives of ex-combatants \u2013 in economic activities and access to credit may further help cre- ate successful outcomes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1b28a7a5-19bc-4d22-a663-a1324176e391", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 41, + "Paragraph": "Access to technology, information and capital Technology and information which can lead to better information concerning agricultural growing techniques, commodities markets, and fluctuations in food prices is essential to sustainable reintegration programmes which incorporate agricultural livelihoods and agriculturally-derived livelihoods. DDR experts must address issues of access to such assets in the reintegration phase through coordination with relevant national ministries, government counterparts, rule of law and early recovery partners, and in line with appro- priate cultural norms. Access to technology and information can be further promoted through the use of low tech and appropriate means, such as cellular phones, SMS market information ser- vices, radios, personal digital assistants (PDAs), internet kiosks, and any other means of transmitting information about commodity market changes, changes in the supply or demand for goods, shifting weather patterns, or other potential impacts. Where access is not possible through the DDR programme, DDR experts should make every effort to link with NGOs, other UN agencies, or private sector actors who can support such access to technology and information. Access to technology, information and capital is also essential to build value chains for products derived from the agricultural or other rural livelihood sectors, to diversify such sectors and to ensure the sustainability of the activities in question in terms of use of natural and other resources. Capital used to provide essential equipment to scale-up processing, manufacturing and marketing of goods derived from agricultural products or other natural resources should be sought through networks and other implementing partners working with the DDR programme and in the early recovery context. This capital should be supplied along with proper training programmes and business education skills. It should not be given in the form of cash payments. DDR programmes should seek to address the access of women, youth, disabled, indig- enous and other marginalized groups to technology, information and capital through coordination with national and local government and rule of law programmes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "f2af5740-4a36-40f1-a1a0-42c5531e549d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 41, + "Paragraph": "Land tenure and access to land Many comprehensive peace agreements (CPAs) do not contain specific provisions to resolve land ownership issues and disputes. However, property rights, land tenure and access to land are all extremely important to economic reintegration in both rural and urban contexts. Land distribution, for example, can inform DDR practitioners of potential tensions and grievances that may (re-) emerge and lead to further disputes or conflict. While DDR programmes cannot produce land reform mechanisms, they can incorpo- rate awareness of the linkages between land and livelihoods into reintegration planning and implementation. Land becomes an asset when it is coupled with access to agricultural tools and inputs, technology, and information regarding markets and services. Access to land and security of land tenure are also essential to the development of land as an asset. Access to land cannot be granted and legitimized without capacity for land manage- ment at the local and national government levels, which involve land policies, laws and land administrations. Most DDR contexts are likely to be faced with a myriad of land ten- ure systems and legal procedures involving traditional, indigenous, religious, colonial or other legacies. Support for legal aid services to aid those undergoing land disputes should be coordinated with relevant international and national actors to compliment reintegra- tion programmes. Special attention should be paid to access to land by women, widows, child-headed households, disabled individuals and other groups with specific needs. For more information on housing, land and property dispute mechanisms see section 10.6. The roles of women and their relationship to land and property should be addressed by the DDR programme through community-based reintegration whenever possible. In many cases, women suffer the most discrimination when it comes to access to land. DDR programmes should aim to support women\u2019s access to land and tenure security to promote gender equality and women\u2019s civil and human rights, but also because their productivity in the agricultural sector is extremely important for increased food security and overall GDP growth, as shown in several studies conducted in post-conflict settings. While it is important to encourage land management and tenure policies that are consistent with cultural norms, the reform of such administrative sectors also provides an opportunity to pave the way for women\u2019s rights in terms of property and land tenure. DDR programmes should seek to make land as profitable an asset as possible, by providing incentives for the sustainable use of natural resources, helping to develop the capacity for land and property rights through local and national institutions. These efforts can be augmented by linking up with early recovery and rule of law institutions wherever possible as well. In addition, land tenure security to protect those who are invested in land and who depend on it for livelihoods, such as in agricultural sectors, should be addressed through other partners at the national and international level.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2a618cda-e8c1-422e-95e1-dc59aecfb33e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 42, + "Paragraph": "Social/Psychosocial reintegration Former combatants face a number of personal challenges during reintegration, including separation from social support networks inherent within armed groups and a subsequent sense of isolation, stigma, and rejection by communities of return and challenges related to renegotiating their societal and gender roles within the public and private spheres. Other challenges faced by ex-combatants include difficulty obtaining employment, psy- chosocial issues, including trauma-spectrum disorders, and physical health issues, such as living with a disability. These challenges may leave former combatants in particularly vulnerable social and/or mental health situations and at risk for developing \u201canti-so- cial\u201d behaviors such as drug and alcohol abuse or engaging in violence against others or themselves. Acceptance of ex-combatants within communities of return, and wider society, is a key indicator of successful reintegration. An ex-combatant who has economic oppor- tunities but who is socially isolated or excluded cannot be considered as successfully reintegrated. Experience has shown that social reintegration is not only as equally impor- tant as economic reintegration, but that it can also be a pre-condition and a catalyst for employment and economic security. Progress towards and the success of social reinte- gration can often be tracked through qualitative tools like focus groups or key informant interviews with communities.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1b760d53-be1b-40c9-85e9-b6ea9f427ce3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 43, + "Paragraph": "Socialization to violence of combatants Many ex-combatants have been trained and socialized to use violence, and have inter- nalized norms that condone violence. Socialization to violence is often the result of an ex-combatant\u2019s exposure to and involvement in violence while with armed forces or groups who may have encouraged, taught, promoted, and/or condoned the use of vio- lence (such as rape, torture or killing) as a mechanism to achieve group objectives. As a result of time spent with armed forces and groups, ex-combatants may associate weapons and/or violence in general with power and see these things as central to their identities as men or women and to fulfilling their personal needs. Systematic data on patterns of violence among ex-combatants is still fragmentary, but evidence from many post-conflict contexts suggests that ex-combatants who have been socialized to use violence often continue these patterns into the peacebuilding period. Violence is carried from the battlefield to the home and the community, where it can take on new forms and expressions. While the majority of ex-combatants are male, and vio- lence among male ex-combatants is more visible, female ex-combatants also appear to be more vulnerable to violent behaviour than civilian women in the general population. Without breaking down these norms, learning alternative behaviors, and coming to terms with the violent acts that they have experienced or committed, ex-combatants can find it difficult to reintegrate into civilian life. In economically challenging and socially complex post-conflict environments, male ex-combatants in particular may find it difficult to fulfill traditional gender and cultural roles associated with masculinity. Many may return home to discover that in their absence women have taken on traditional male responsibilities such as the role of \u2018breadwinner\u2019 or \u2018protector\u2019, challenging men\u2019s place in both the home and community and leading lead- ing to frustration, feelings of helplessness, etc. Equally, the return of men to communities may challenge these new roles, freedoms and authority experienced by women, causing further social disquiet. Ex-combatants\u2019 inability to deal with feelings of frustration, anger or sadness can result in self-directed violence (suicide, drug and alcohol abuse as coping mechanisms), interpersonal violence (GBV, intimate partner violence, child abuse, rape and murder) and group violence against the community (burglary, rape, harassment, beatings and murder), all forms of violence which are found to be common in some post-conflict environments. Integrated approaches work best for facilitating comprehensive change. In order to effectively address socialization to violence, reintegration assistance should target family and community members as well as ex-combatants themselves to address social and psy- chosocial needs and perceptions of these needs holistically. For more information on the concept of \u2018socialization to violence\u2019 see UNDP\u2019s report entitled, Blame It on the War? The Gender Dimensions of Violence in Disarmament, Demobilization and Reintegration (2012).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "78274ba8-a6a6-420a-9256-6ad2e3e90c4c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 43, + "Paragraph": "Reconciliation Reconciliation among all groups is perhaps the most fragile and significant process within a national peace-building strategy, and may include many parallel processes, such as 6.20\ttransitional justice measures (i.e. reparations and truth commissions) (see Module 6.20 on DDR and Transitional Justice for more information). A key component of the reintegration is the process of reconciliation. Reconciliation should take place within war-affected communities if long-term security is to be firmly established. Ex-combatants, associated groups and their dependants are one of several groups, including refugees and the internally displaced, who are returning and reinte- grating into post-conflict communities. These groups, and the community itself, have each had different experiences of the conflict and may require different strategies and assis- tance to rebuild their lives and social networks. Reconciliation between ex-combatants and receiving communities is the backbone of the reintegration process. Any reconciliation initiative needs to make sure that the dignity and safety of victims, especially survivors of sexual and gender-based vio- lence, is respected. Furthermore, it must be remembered that conceptions of transitional justice and reconciliation differ in each context. DDR practitioners should therefore explore and consider cultural traditions and indigenous practices that may be effectively used to begin reconciliation processes. Ceremonies that involve a public confrontation between victim and perpetrator should be avoided as they can lead to further trauma and stigmatization. In addition to focused \u2018reconciliation activities\u2019, reintegration programmes should aim to mainstream and encourage reconciliation in all components of reintegration. To achieve this, DDR programmes should benefit the community as a whole and should offer specifically-designed assistance to other war-affected groups (see section 6.2. on commu- nity-based reintegration). Working together in mixed groups of returning combatants, IDPs, refugees, and com- munity members, especially on economically productive activities such as agricultural cooperatives, group micro credit schemes, and labour-intensive community infrastruc- ture rehabilitation, can reduce negative stereotypes and build trust. DDR programmes should also identify \u2013 together with other reintegration and recovery programmes \u2013 ways of supporting reconciliation, peacebuilding and reparation initiatives and mechanisms.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4692aa62-592a-48ed-a503-d04d41f76abf", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 44, + "Paragraph": "Strengthening social capital and social acceptance Successful reintegration of ex-combatants is a complex process that depends on a myriad of factors, including satisfying the complex expectations of receiving communities. It is the interplay of a community\u2019s physical and social capital and an ex-combatant\u2019s financial and human capital that determines the ease and success of reintegration. The acceptance of ex-combatants by community members is essential, but relations between ex-combatants and other community members are usually anything but \u2018nor- mal\u2019 at the end of a conflict. Ex-combatants often reintegrate into extremely difficult social environments where they might be seen as additional burdens to communities rather than assets. In some cases, communities may have perceptions that returning combat- ants are HIV positive, regardless of actual HIV status, resulting in discrimination against and stigmatization of returnees and inhibiting effective reintegration. The success of any DDR programme and the effective reintegration of former combatants therefore depend on the extent to which ex-combatants can become (and be perceived as) positive agents for change in receptor communities. The importance of providing civilian life skills training to ex-combatants will prove vital to strengthening their social capital and jumpstarting their integration into com- munities. Ex-combatants who have been socialized to use violence may face difficulties when trying to negotiate everyday situations in the public and private spheres. Those who have been out of their communities for an extended period of time, and who may have committed extreme acts of violence, might feel disconnected from the human compo- nents of home and community life. Reintegration programme managers should therefore regard the provision of civilian life skills as a necessity, not a luxury. Life skills include understanding gender identities and roles, non-violent ways of resolving conflict, and non-violent civilian and social behaviours (such as good parenting skills). See section 9.4.1. for more information on life skills. Public information and sentitization campaigns can also be an extremely effective mech- anism for facilitating social reintegration, including utilizing media to address issues such as returnees, their dependants, stigma, peacebuilding, reconciliation/co-habitation, and socialization to violence. Reintegration programme planners should carry out public information and sensitization campaigns to ensure a broad understanding among stake- holders that DDR is not about rewarding ex-combatants, but rather about turning them into valuable assets to rebuild their communities and ensure that security and peace pre- vail. In order to combat discrimination against returning combatants due to perceived HIV status, HIV/AIDS initiatives need to start in receiving communities before demobilization and continue during the reintegration process. The same applies for female ex-combatants and women and girls associated with armed forces and groups who in many cases expe- rienced sexual and gender-based violence, and risk stigmatization and social exclusion. See Module 4.60 on Public Information and Strategic Communication in Support of DDR for more information.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3208b5ef-67e1-4c43-8197-a58fe4eee994", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 45, + "Paragraph": "Social support networks Social support networks are key to ex-combatants\u2019 adjustment to a normal civilian life. In addition to family members, having persons to turn to who share one\u2019s background and experiences in times of need and uncertainty is a common feature of many successful adjustment programmes, ranging from Alcoholics Anonymous (AA) to widows support groups. Socially-constructive support networks, such as peer groups in addition to groups formed during vocational and life skills training, should therefore be encouraged and supported with information, training and guidance, where possible and appropriate. As previously stated, DDR practitioners should keep in mind that the creation of vet- erans\u2019 associations should be carefully assessed and these groups supported only if they positively support the DDR process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "20cf9260-b372-4472-b71b-6fed08a08cc5", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 45, + "Paragraph": "Nuclear and extended families Although various forms of family structures exist in different cultural, political and social systems, reference is commonly made to two types of family: the nuclear family and the extended family. Nuclear families comprise the ex-combatant, his/her spouse, companion or permanent companion, dependent children and/or parents and siblings in those cases where the previously mentioned family members do not exist. Extended family includes a 4.60 social unit that contains the nuclear family together with blood relatives, often spanning three or more generations. Family members often need to be assisted to play the supporting, educating and nur- turing roles that will aid ex-combatants in their transitions from military to civilian life and in their reintegration into families and communities. This is especially important for elderly, chronically-ill, and ex-combatants with disabilities. Family members will need to understand the experiences that ex-combatants have gone through, such as socialization to violence and the use of drugs and other substances, in order to help them to overcome trauma and/or inappropriate habits acquired during the time they spent with armed forces and groups. In order to encourage their peaceful transition into civilian life, family members will also need to be particularly attentive to help prevent feelings of isolation, alienation and stigmatization. DDR planners should recognize the vital importance of family reunification and pro- mote its integration into DDR programmes and strategies to ensure protection of the unity of the family, where reunification proves appropriate. Depending on the context, nuclear and/or extended families should be assisted to play a positive supporting role in the social reintegration of ex-combatants and associated groups. DDR programmes should also create opportunities for family members of nuclear and/or extended families to understand and meet their social responsibilities related to the return of ex-combatant relatives. Nuclear and/or extended family members also need to understand the challenges involved in welcoming back ex-combatants and the need to deal with such return in a way that will allow for mutual respect, tolerance and coopera- tion within the family and within communities. 5.20\t5.30", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e27aaf8e-9b98-4f03-97f8-06b767d8bba5", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 46, + "Paragraph": "Youth engagement Involving youth in any approach addressing socialization to violence and social reinte- gration is critical to programme success. Oftentimes, youth who were raised in the midst of conflict have become socialized to see violence and weapons as a means to gaining power, prestige and respect (see Module 5.20 on Youth and DDR and Module 5.30 on Children and DDR). If youth interventions are not designed and implemented during the post-conflict stage, DDR programmes risk neglecting a new generation of citizens raised and socialized to take part in a culture of violence. Youth also often tend to be far more vulnerable than adults to political manipulation and (re-) recruitment into armed forces and groups, as well as gangs in the post-conflict environment. Youth who participated in conflict often face considerable struggles to rein- tegrate into communities where they are frequently marginalized, offered few economic opportunities, or taken for mere children despite their wartime experiences. Civic engage- ment of youth has been shown to contribute to the social reintegration of at-risk youth and young ex-combatants.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f9de616-1c92-48a8-bca7-fc081db1790c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 46, + "Paragraph": "Men\u2019s and women\u2019s groups Informal or formal men\u2019s and women\u2019s groups can provide a forum for women and men to discuss social expectations of women, men, violence, and health issues. It can be an extremely effective way to harness their interest and capacities to become agents of change in their community by disseminating information and educating the public. Many times, due to social constraints, men do not have forums to discuss such issues, either because there are social barriers or because there has never been a space or guided assistance in starting one. Support to such activities through reintegration assistance, should allow for a mix of ex-combatants and civilians. Oftentimes women\u2019s and men\u2019s groups are started informally around points of interest for men, such as recreational/ sports associations, cooperatives, coffee houses, or water points, or for women such as beauty salons, water points, schools, in the community. Many times they evolve to be more formal groups, which provide a forum for civic education as well as discussion on issues affecting personal lives, the community and the family. Continued assessments of the effects of reintegration assistance and communities of return may identify such groupings forming, and may provide support.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "42949e36-1a3b-4139-a591-587b6af33975", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 47, + "Paragraph": "Housing, land and property dispute mechanisms The lack of available land for resettlement has been a major obstacle to successful rein- tegration in several countries, particularly those with high demographic pressure. Land is of critical concern in all components of reintegration ranging from the political to the social and economic spheres (for more information see section 9.5.4. of this module). It is also very closely associated with the definition of one\u2019s identity, and can represent a diffi- cult issue for DDR programme participants in both rural and urban settings. The return of refugees and IDPs along with ex-combatants and associated groups is likely to heighten tensions over land, thereby calling for the need to address these issues early on. Disputes over land and access to natural resources are among the root causes of many conflicts and can prove instrumental in the deterioration of the security situation (see Module 6.30 on DDR and Natural Resource Management). DDR programme planners must take these underlying tensions into account when planning the return, resettlement and reintegration of ex-combatants, as they are often competing with other returnees for access to land. Conducting an early conflict analysis which includes information on his- torical and available dispute mechanisms will assist reintegration planners in identifying the impact, availability and effectiveness of land and property dispute mechanisms. These assessments will also allow DDR programmes to respond to these issues with support to wider initiatives addressing land and access to natural resources and to avoid doing more harm through their interventions. DDR reintegration programmes should seek to support the mediation of housing and land disputes at the local level whenever possible, through support to legal aid groups or other appropriate service providers. Such mechanisms can transform potential conflict scenarios into reconciliation opportunities (e.g. through involving both ex-combatants and community members in finding solutions through mediation and arbitration that are acceptable to all and in line with cultural norms, where appropriate). Women, youth, children and disabled ex-combatants are among the most vulnerable groups with regard to land exclusion and disfranchisement. This not only has direct con- sequences on their livelihoods but also on their social standing within their communities. DDR planners and managers must keep in mind that in rural areas, traditional laws are likely to be those most abided by the population. In these systems, women may not tradi- tionally have access to property rights, but rather to user rights through their husbands and families. Should they find themselves widowed, separated or single for any reason, 6.30 their livelihoods may be threatened unless recourse to traditional/local authorities is 5.10\tmade on their behalf (see also IDDRS 5.10 on Women, Gender and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "fc0dd7b4-1af2-4bd7-9213-8896e3614b1b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 48, + "Paragraph": "Psychosocial services The widespread presence of psychosocial problems among ex-combatants and those associated with armed forces and groups has only recently been recognized as a serious obstacle to successful reintegration. Research has begun to reveal that reconciliation and peacebuilding is impeded if a critical mass of individuals (including both ex-combatants and civilians) is affected by psychological concerns. Ex-combatants and those associated with armed forces and groups have often been exposed to extreme and repeated traumatic events and stress, especially long-term recruits and children formerly associated with armed forces and groups. Such exposure can have a severe negative impact on the mental health of ex-combatants and is directly related to the development of psychopathology and bodily illness. This can lead to emotional-, social-, occupational- and/or educational-impairment of functioning on several levels. At the individual level, repeated exposure to traumatic events can lead to post-trau- matic stress disorder (PTSD), alcohol and substance abuse, as well as depression (including suicidal tendencies). At the interpersonal level, affected ex-combatants may struggle in their personal relationships, as well as face difficulties adjusting to changes in societal roles and concepts of identity. Persons affected by trauma-spectrum disorders also dis- play an increased vulnerability to contract infectious diseases and have a heightened risk to develop chronic diseases. In studies, individuals suffering from trauma-related symp- toms have shown greater tendencies towards aggression, hostility and acting out against both self and others \u2013 a significant impediment to efforts at reconciliation and peace. Severely psychologically-affected ex-combatants and other vulnerable groups should be identified as early as possible through screening tools within the DDR pro- gramme and referred to psychological services. If these ex-combatants do not receive adequate psychosocial care, they face an extraordinarily high risk of failing in their reintegration. Unfortunately, insufficient availability, adequacy and access to mental health services and social support for ex-combatants, and other vulnerable groups in post-war communities, continues to prove a huge problem during DDR. Given the great risks posed by psychologically-affected participants, reintegration programmes should seek to prioritize psychological and physical health rehabilitation as a key measure to successful reintegration.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4f19df87-536a-471d-838e-113f9a8e4716", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 48, + "Paragraph": "Screening for mental health At a minimum, the psychosocial component of DDR programmes should offer an initial screening of ex-combatants as well as regular basic counseling where needed. A screen- ing procedure can be carried out by trained local staff to identify ex-combatants who are in need of special assistance. Early screening will not only aid psychologically-affected ex-combatants, but it will makes it possible to establish which participants are unlikely to benefit from more standard reintegration options. Providing more specialized options for this group will save valuable resources, and even more importantly, it will spare par- ticipants from the frustrating experience of not being able to fully engage in trainings or make use of economic support in the way healthier participants might. Following the screening process, ex-combatants who show clear signs of mental ill- health should, at a minimum, receive continuous basic counseling. This counseling must take place on a regular basis and allow for continuous contact with the affected ex-com- batants. As with screening, this basic counseling can be carried out by locally-trained DDR programme staff, and/or trained community professionals such as social workers, teachers or nurses. DDR programmes will likely encounter a number of ex-combatants suffering from full-blown trauma-spectrum disorders. These disorders cannot be treated through basic counseling and should be referred to psychological experts. In field settings, using narra- tive exposure therapy may be an option.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "0065bff5-466b-4b53-a58b-fc582a8f3fcf", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 49, + "Paragraph": "Community-based stepped-care system To adequately assess the existing capacities of local/regional support systems, an inven- tory and analysis of existing gaps is a first priority. Such an inventory should help to identify the existing local means used to address social and psychosocial issues, poten- tial partners, and the need to create or strengthen a network of practitioners. Next, the capacity of the existing social/psychosocial support structures as well as new ones (where needed), can be built to provide adequate services. A standard team consisting of trauma counselors (locally trained lay practitioners), may serve as a first-level of service providers in terms of trauma-related counseling as well as treatment of psycho-somatic condi- tions. They could also serve as mediators in cases of social adversity (e.g. family violence, extreme poverty, abuse and neglect of children). For the set-up of the treatment it has to be ensured that it is culturally acceptable (i.e. cultural acceptable gender and age match of trauma counselor and client). Sensitization and public awareness programmes on mental health and related psycho-social issues should also be developed and informed by the work of the commu- nity-based local staff. The focus of such programms should be sensitizing the community to the symptoms experienced by those who suffer from mental illness and impairment of associated functioning. This will involve strong efforts to de-stigmatize the conditions faced by psychologically-affected individuals. They should also provide information on access to care. Ideally, specialized treatment to address mental health should be offered to both civil- ians and ex-combatants in a community-based structure. Every DDR programme within a post-conflict setting is confronted with the challenge of reintegrating ex-combatants into a society which is itself recovering from trauma. Offering psychosocial care in a commu- nity-based structure for both former ex-combatants and civilians will foster reconciliation and make it possible for both groups to learn about each other\u2019s experiences during the war. In this way, psychosocial care does not only support the individual to heal, but can foster the restoration of the social fabric. Thus, a DDR programme may refer mentally-ill ex-combatants who cannot be treated through basic counseling to a common health ser- vice structure. Most importantly, all interventions have to be carried out within a framework of implementation research, including micro-level analysis. It will be important to con- duct impact evaluations on effectiveness and efficiency of trauma treatment, functioning recovery pre- and post-treatment in selected individuals, impact on social cohesion in the community, recovery of occupational functioning, socio-economic indicators, impact on readiness for reconciliation, etc,., on a continuing basis. Without such evaluations, there is the risk that ineffective and sometimes even harmful programmes are extended to regional services. Parallel to these evaluations, a measure of supervision (by master coun- selor, clinical practitioners) and peer sharing has to be set in motion between community, district practitioners and researchers at national level.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0f8dd93b-a564-43b8-a95d-7faa64f35587", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 50, + "Paragraph": "Medical and physical health issues If an ex-combatants\u2019 life expectancy is short due to war-related injuries or other illnesses, no degree of reintegration assistance will achieve its aim. Experience has shown that untreated wounded, ill and terminal ex-combatants constitute the most violent and dis- ruptive elements within any immediate post-conflict environment. Immediate health care assistance should therefore be provided during DDR from the very earliest stage. Planning for such assistance should include issues of sustainability by ensuring that ex-combatants are not a distinct target group for medical assistance, but receive care along with members of their communities of return/choice. Support should also be given to the main caregivers in receptor communities. The demobilization process provides a first opportunity to brief ex-combatants on key health issues. Former combatants are likely to suffer a range of both short- and long- term health problems that can affect both their own reintegration prospects and receptor communities. In addition to basic medical screening and treatment for wounds and dis- eases, particular attention should be directed towards the needs of those with disabilities, those infected with HIV/AIDS, the chronically ill, and those experiencing psychosocial trauma and related illnesses. As in the case of information, counseling and referral, the services may start during the demobilization process, but continue into and, in some cases 5.70\tgo beyond, the reintegration programme (also see IDDRS 5.70 on Health and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e5e2133f-7bc6-4ecc-b1f3-3244d59d0e00", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 50, + "Paragraph": "HIV/AIDS The conditions that exist during conflict increase risk of infection for HIV and other sexu- ally transmitted infections (STIs), and can have a devastating effect on access to essential information, care and treatment. The lack of a safe blood supply; the shortage of clean equipment for injecting drug users; an insufficient supply of condoms and health care; and the widespread practice of sexual and gender-based violence, both as a weapon of war and as a means to discipline and control people (especially women and girls within armed forces and groups), are just a few examples of the ways conflict can heighten risk of HIV infection (see Module 5.60 on HIV/AIDS and DDR for more information). In addition, a growing body of evidence shows that immediate post-conflict and recovery phases, including the reintegration process, involve heightened risk of HIV trans- mission due to the re-opening of borders and other formerly inaccessible areas, increased mobility, the return of displaced populations, and other factors. Often, regardless of actual HIV status, receptor communities may perceive ex-com- batants as HIV-positive and react with discrimination or stigmatization. In many cases, these negative reactions from communities are a result of fear due to misinformation about HIV and AIDS. Discrimination against or stigmatization of (potentially) HIV-in- fected individuals can be countered with appropriate sensitization campaigns. DDR can provide an opportunity to plan and implement essential HIV/AIDS initi- atives, in close coordination with broader recovery and humanitarian assistance at the community level and the National AIDS Control Programme (see section 9 of Module 5.60 on HIV/AIDS and DDR for more information on planning and implementing HIV/AIDS activities in the reinsertion and reintegration phases). These services can be integrated into existing reintegration packages through the development of joint programming and strategic partnerships. Furthermore, with the right engagement and training, former com- batants have the potential to become agents of change by assisting in their communities with HIV prevention and awareness activities. HIV initiatives need to start in receiving communities before demobilization, and should be linked wherever possible with the broader recovery and humanitarian assis- tance provided at the community level, and to National AIDS Control Programmes. Activities such as peer education training in HIV prevention and awareness can begin prior to demobilization.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0ece26e0-b947-4245-ac7d-4d6a1220fa29", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 51, + "Paragraph": "Persons with disabilities War leaves behind large numbers of injured people, including both civilians and com- batants. Ex-combatants with disabilities should be treated equally to others injured or affected by conflict. This group should be included in general reintegration pro- grammes, not excluded from them, i.e. many ex-combatants with disabilities can and should benefit from the same programmes and services made available to non-disabled ex-combatants. DDR programme managers should ensure that the following guidelines are taken into account when addressing persons with disabilities in reintegration programmes: 5.60 5.60 Some ex-combatants with disabilities will require long-term medical care and family support. While some will receive some form of pension and medical assistance (especially if they were part of a government force), most disabled ex-combatants who were part of informal armed groups will not receive long-term assistance. In places where the health infrastructure has been damaged or destroyed, attention must be paid to informal care providers \u2014 often women and girls \u2014 who care for disabled combatants. In addition, support structures must be put into place to lessen the largely unpaid burden of the care that these informal providers carry. DDR programmes must also plan for participants with disabilities by agreeing on and arranging for alternative methods of transport of supplies or kits given to partici- pants. These may include livelihoods kits, food supplies, or other vocational materials. Assistance and special planning for these groups during reintegration should be included in the assessment and planning phases of DDR.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "21e7b789-2f21-42d8-86d9-c488cdfca004", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 52, + "Paragraph": "Reproductive health The provision of reproductive health services, which should start as soon as the demo- bilization registration and screening process has identified specific needs, should be continued, as appropriate, during reintegration. Linkages should be made to public or private national and/or community health facilities. Preferential or subsidized access may still be required, particularly in those cases where the lack of continued treatment can in itself create a renewed public threat, such as HIV/AIDS, drug abuse and psycho- logical illness.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "82425e14-a224-4c09-9322-ab064c7d6380", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 52, + "Paragraph": "Political Reintegration Political reintegration is the involvement and participation of ex-combatants and people associated with armed forces and groups\u2014and the communities to which they return\u2014in post-conflict decision- and policy-making processes at the national, regional and commu- nity levels. Political reintegration activities include providing ex-combatants and other war-affected individuals with the support, training, technical assitance and knowledge to vote, form political parties and extend their civil and political rights as part of the overar- ching democratic and transitional processes in their communities and countries. It is important to differentiate between political reintegration and the political nature of DDR and other peace-building processes. Almost without exception, DDR processes are part of an overarching political strategy to induce armed actors to exchange violence for dialogue and compromise through power-sharing and electoral participation. In that it aims to reestablish the State as the sole authority over the use of violence, DDR is inherently part of the overall political strategy during peacemaking, peacekeeping and peace-building. While political reintegration is related to this strategy, its goals are far more specific, focusing on integrating programme participants into the political processes of their communities and countries at both the individual and group level. If properly executed, political reintegration will allow for the legitimate grievances and concerns of ex-combatants and former armed groups to be voiced in a socially-con- structive and peaceful manner that addresses root causes of conflict.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d2317a73-e992-4080-a9af-4f4b9ee70261", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 53, + "Paragraph": "Types of political reintegration Generally, political reintegration occurs along two broad trajectories, namely at the group level and the individual level, as follows: Group level: At the group level, political reintegration is transformative in that it seeks to aid in transforming a group or organization from an illegally armed entity into a legit- imate political party or civilian unit operating within the legal parameters of the state. Individual level: At the individual level, political reintegration is restorative in that it involves restoring an ex-combatant\u2019s (and other programme participants\u2019) deci- sion-making power within a given community in relation to his/her citizen status within that community.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a6a6bdca-0940-4b76-85ea-c6c5fd2887ee", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 53, + "Paragraph": "Group level political reintegration Aiding former armed forces and groups and ex-combatants to form political parties and peaceful civilian movements is essential to ensuring that grievances and visions for soci- ety continue to be expressed in a non-violent manner in the post-conflict period. Group level political reintegration is most evidently seen in transformations of armed groups into political parties that seek to enter or re-enter the political arena as a way to advance their claims and perspectives. While a successful transformation from armed group to political party can yield a plethora of benefits for citizens and the overall democratization process, new political parties in post-conflict societies often lack the capacity, structural organization, resources, political knowledge and legitimacy necessary to successfully compete in the political arena. Moreover, individual ex-combatants and armed groups often face a number of uncertainties concerning how they will fare in the post-conflict period. Without proper guidance and careful monitoring, emerging political parties can likely face failure or even do more harm than good. Given such complexities, when planning and designing political reintegration inter- ventions, DDR practitioners must consider the following key factors influencing the viability and outcome of group level political transformations of armed forces and groups: Nature of the peace (e.g. negotiated peace agreement, military victory, etc.); Post-conflict security situation; Motivation(s) of armed group (keeping in mind that such motivations can change over time); Degree of popular support and perceived legitimacy; Degree of political experience and capacity; Leadership capacities; Organizational structure; Resources, funding and technical support; Criminal prosecutions and transitional justice measures. Notably, group level political reintegration processes largely depend on both the country context and form of the peace settlement established. In the case of a negotiated peace agreement, for instance, political reintegration typically involves the transforma- tion of armed groups (both political and military wings) into political parties, usually in tandem with a mix of DDR processes linked to larger SSR efforts. Political reintegration in cases of military victory, however, involve a different set of considerations that are less-de- fined and require further research and experiential understanding at this point in time. In cases where political reintegration is part and parcel of a CPA, explicit programming in DDR is more evident.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "5211d36e-2276-4298-9d33-453a67918613", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 54, + "Paragraph": "Individual level political reintegration Effective political reintegration at the individual level involves empowering citizens by providing them with the knowledge and tools to voice their opinions, vote and take part in the government of their country without fear of intimidation, discrimination, retalia- tion or violence. Due to the nature and duration of a conflict, many ex-combatants and associated groups, particularly youth, may have little or no past experience in taking part in elections or joining a political party. In some cases, authoritative regimes or widespread conflict may have completely prevented the extension of one\u2019s civil and political rights. The right to vote and take part in the political life of one\u2019s country has become a funda- mental tenant in international law and democratic frameworks as outlined in several key human rights instruments, such as the International Covenant on Civil and Political Rights, the Universal Declaration of Human Rights, the African Charter on Human and Peoples\u2019 Rights, the American Declaration of the Right and Duties of Man and the Asian Human Rights Charter. Engaging individual ex-combatants in the political process has the dual advantage of pre-empting them from becoming spoilers to an electoral process while aiming to vest in them the desire and knowledge to exercise their civil rights. Building the capacities of ex-combatants and community members in the various areas of civic participation and democratic governance is found to be a critical step in enabling the political reintegration of national stakeholders.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f2c11b7d-f42f-4e7b-a077-625ffa92b714", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Context assessments In order to determine the role of, relevance of and obstacles to initiating and supporting political reintegration activities, DDR planners should ensure that the assessment and planning phases of DDR programming include questions and analyses that address the context-specific aspects of political reintegration. In preparing and analyzing assessments, DDR planners and reintegration practition- ers should pay close attention to the nature of the peace (e.g. negotiated peace agreement, military victory, etc.) to determine how it might impact DDR participants\u2019 and beneficiar- ies\u2019 ability to form political parties, extend their civil and political rights and take part in the overall democratic transition period. To inform both group level and individual level political reintegration activities, DDR planners should consider asking the following questions, as outlined below:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6aa6fee6-4913-458f-acba-48844e5e2e73", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 56, + "Paragraph": "Establishing partnerships and coordination mechanisms It is important to recall that DDR programmes are not vested with the authority or capacity to deliver full-scale political and electoral support. Development of political reintegration programme activities should therefore aim to link closely with relevant organizations and capacities involved specifically in electoral processes and political party development, including national stakeholders, UN agencies, international and regional organizations and NGOs. Within the UN system, the Department of Political Affairs, through its Electoral Assistance Division (EAD), the United Nations Development Programme (UNDP), and existing civil affairs and PI units of UN missions, can be looked to for key guidance on implementing both individual and group political reintegration efforts. Outside the UN system, key multilateral organizations working to provide political party assistance and election observations include the Organization for Security and Co-operation in Europe (OSCE), the Organization of American States (OAS) and the International Institute for Democracy and Electoral Assistance (IDEA). In addition, leading international actors active in providing relevant assistance include: the German and Swedish party foundations, the National Democratic Insti- tute (NDI) and the International Republican Institute (IRI) in the United States, Britain\u2019s Westminster Foundation for Democracy (WFD), the Netherlands Institute for Multiparty Democracy (NIMD) and Australia\u2019s Centre for Democratic Institutions (CDI). It is impor- tant to emphasize that the majority of these party assistance organizations, although mostly funded by bilateral aid agencies and governments, are independent institutes that are relatively autonomous as regards how, with whom and where they execute their pro- grammes. Where applicable and appropriate, DDR managers should aim to partner with such organizations to build capacity within the DDR programme on political reintegra- tion issues and exchange information regarding best practices. For more information on coordination and partnerships in the area of political rein- tegration, see UNDP\u2019s Elections and Conflict Prevention: A Guide to Analysis, Planning, and Programming, 2009.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "588ce308-3ab9-424e-af91-5995a016a1f1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 57, + "Paragraph": "Entry points for political reintegration Offering information services and capacity development in the area of civic and political participation is central to creating an enabling environment for the political reintegra- tion of all stakeholders in a DDR process. This may include community sensitization campaigns, education on the nature and functioning of democratic institutions (at the national, regional and/or local levels), leadership training, and initiatives to foster wom- en\u2019s participation. Focusing on particular subject areas, such as human rights (especially those rights reflected in the International Covenant on Civil and Political Rights) and in the devel- opment of political parties in the methods and processes of democracy, constituency relations, community organizing and participation in dialogue processes that involve other stakeholders and political opponents, is recommended. Specific entry points to build capacity and enhance participation in political processes include, but are not limited to, the following: Public information and sensitization campaigns on civil and political rights Communities of return should receive sensitization related to political reintegration and the accompanying peace process.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "934872c8-dd31-4f7c-b42a-377bbb93164e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 57, + "Paragraph": "Civic and voter education In order to build capacity and enhance participation in the democratic process, DDR programmes should support civic and voter education. This may include providing edu- cation or referrals to education opportunities on the nature and functioning of democratic institutions at the national, regional and/or local levels. Civic education on the country\u2019s comprehensive peace agreement (where applicable) or peace process should be consid- ered. At the local level, approaches to human rights education that draw from \u201cstreet law\u201d may be particularly effective, such as the practical application of citizens\u2019 rights, such as freedom of expression, the right to dissent, and the right to vote in secrecy in electoral processes that are free of coercion or intimidation, may be particularly effective.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5b4e6417-16cf-4c61-912f-22979744f05f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 57, + "Paragraph": "Leadership training Senior DDR managers can serve in an advisory capacity to senior government and military officials on issues concerning political reintegration. Through implementing leadership training, DDR programmes will aim to facilitate and increase the legitimacy and support received by newly-established political leaders. DDR managers should consider undergo- ing targeted training in leadership and political negotiation that is IDDRS compliant.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3d825886-0817-4239-b092-6b0bb86fb574", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 57, + "Paragraph": "Lobbying for mid-level commanders Research into comparative peace processes suggests that the political roles and associ- ated livelihoods futures of mid-level commanders are critical in post-conflict contexts. Given mid-level commanders\u2019 ranks and level of responsibility and authority while with armed forces or groups, they often seek commensurate positions in post-conflict settings. Many seek an explicitly political role in post-conflict governance. Where DDR programmes have determined that commander incentive programmes will be required, a resource mobilization strategy should be planned and implemented in addition to a dedicated vetting process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "190311fc-f87c-471b-8027-fc90b05cf237", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 58, + "Paragraph": "Women\u2019s participation The UN\u2019s commitment to restoring security, the protection of vulnerable groups and gen- der equality has been formalized in United Nations Security Council resolutions 1325 and 1820, and more recently re-affirmed by resolutions 1888 and 1889. DDR processes form an invaluable window of opportunity to enhance women\u2019s inclu- sion in decision-making and political processes. Civil affairs and human rights sections, in addition to civil society organizations and NGOs specialized in gender and women\u2019s rights can support political reintegration efforts to include trainings on gender and wom- en\u2019s inclusion in civil and political affairs. Women\u2019s participation and representation in public institutions ranging from public administration to justice and security sectors will not only enhance gender equality, but may prove critical in addressing the vulnerabilities that initially led many women and girls into forced recruitment or association with armed forces or groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "46a5982e-b17a-456f-8a60-d996603285f7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 58, + "Paragraph": "11.4.9. Youth participation The special needs of youth should be addressed during political reintegration not only because this group may become a security threat, but also because they can act as a major force for positive change in contemporary politics. Youth are often more open to voting for new parties, less loyal to established traditions and more idealistic in their goals for their societies.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "06ec4c57-db05-48cd-9b90-546ef04018a6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 59, + "Paragraph": "Linking reintegration to wider recovery and development Many DDR programmes have failed in the past due to their narrow focus and short-term approach. To achieve sustainability and meet its goals to improve security, DDR must pave the way for post-conflict recovery and development to take root. Reintegration pro- grammes shall therefore be conceptualized, planned, designed and implemented as part of, or at least in very close cooperation with, wider recovery strategies. Linkages shall include, but not be limited to the areas of post-conflict rehabilitation, resettlement of dis- placed populations, reconciliation efforts, human rights promotion, transitional justice, improved governance and security sector reform. To achieve coherence, when design- ing reintegration programmes, UN practitioners should coordinate, and where possible, jointly plan programmes with actors working in these areas. In the case of reintegration, a number of UN agencies work in parallel to integrate various war-affected peoples including ex-combatants, returnees and IDPs, into the same labour market and communities. Information, such as number and profile of beneficiar- ies, therefore needs to be shared among UN agencies engaged in reintegration assistance. It should be the guiding principle from the earliest pre-mission assessment phase and continue throughout all stages of strategy development, programme planning and imple- mentation. The use of Memoranda of Understanding (MoU) between agencies intervening in the same sector or on the same issue has proven an efficient mechanism for coordination. DDR programme managers will need to ensure close coordination: In the field, where coordination among UN entities, national counterparts, receiving communities, NGOs, donors, governmental aid organizations, and other implement- ing partners should be established at the earliest stages of mission planning; At Headquarters, through integrated mission planning structures and processes (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures) to ensure that coordinated, coherent and consistent direction and support is provided to field operators; Between the field and Headquarters, to ensure that lessons learned and policy devel- opment on DDR are built into field-level programming, particularly at the start of missions and DDR processes, as well as to ensure the participation of key stakehold- ers at the international level. Programme managers should also focus on building strong local, national and inter- national partnerships from the start. Partnerships are essential, both in direct, short-term programme implementation and in forming links to longer-term recovery, peace-build- ing, governance and development programmes. DDR managers should also ensure that relevant recovery and development frame- works are identified and guide their programmes, with specific attention to national recovery plans and poverty reduction strategy papers (PRSPs), the UN Development Assistance Framework (UNDAF), and the UN Policy for Post-Conflict Employment Crea- tion, Income Generation and Reintegration. This is vital to ensure that DDR programming is linked to peace-building, transition, recovery and reconstruction strategies and that it will facilitate the involvement of the various UN and other international agencies. While all efforts should be made to coordinate closely with other actors implementing related programmes, DDR programme managers should also clearly identify those objectives 3.10 that the reintegration programme can deal with directly, and those in which it can only contribute. Experience has shown that coordination is difficult to achieve, and that post-conflict governments often do not possess the organizational capacity to coordinate all of the pro- gram partners. This must be effectively communicated to donors so that they do not have unrealistic expectations on the ground for DDR programmes.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6566619d-2512-41c6-a8d4-1053c2b36af7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 61, + "Paragraph": "Annex A: Terms and definitions Apprenticeship: Refers to any system by which an employer undertakes by contract to employ a young person and to train him or have him trained systematically for a trade for a period of which the duration has been fixed in advance and in the course of which the apprentice is bound to work in the employer\u2019s service. (ILO Apprenticeship Recommendation no. 60, 1939). Business development services: Services that improve the performance of the enterprise, its access to markets, and its ability to compete. The definition of \u201cbusiness development services\u201d includes a wide array of business services, both strategic and operational. Busi- ness development services are designed to serve individual businesses, as opposed to larger business community. (Business Development Services for Small Enterprises: Guiding Principles for Donor Intervention, 2001). Cooperatives: Autonomous association of persons united voluntarily to meet common economic, social and cultural needs and aspirations through a jointly owned and dem- ocratically controlled enterprise. A cooperative is essentially a vehicle for self-help and mutual aid. Many cooperatives throughout the world have a commitment to a distinctive statement of identity formulated by the International Cooperative Alliance (ICA). (Interna- tional Labour Conference, Recommendation 193, Recommendation Concerning the Promotion of Cooperatives,Section 1 Paragraph 2, 2002). Decent work: Involves opportunities for work that is productive and delivers a fair income provide s security in the workplace and social protection for workers and their families; offers better prospects for personal development and encourages social integration; gives people the freedom to express their concerns, to organize and to participate in decisions that affect their lives; and guarantees equal opportunities and equal treatment for all. (United Nations System Chief Executives Board for Coordination (CEB) Toolkit for Main- streaming Employment and Decent Work, 2007). Employment: The employed comprise all persons about a specified age who during the reference period were either (i) at work or (ii) with a job or enterprise but not at work (i.e.) persons temporarily absent from work). Persons at work are defined as persons who during the reference period performed work for a wage or a salary, or for profit or family gain, in cash or in kind, for at least an hour. (The Thirteenth International Conference of Labour Statisticians, 1982). Minimum working age: The Minimum Age Convention defines a range of minimum ages below which no child should be allowed to work and stipulates that: (a) the mini- mum age for employment should normally not be less than 15 years , but exemptions can be made for developing countries which may fix it at 14; (b) the minimum age for permit- ting light work should be not less than 13 years, but developing countries may fix it at 12; the minimum age for admission to hazardous work should not be less than 18 years, but under strict conditions may be permitted at 16. (ILO Minimum Age Convention 138, 1973). Sustainable livelihoods approach: Approach that tries to ensure that households can cope with and recover from stresses and shocks, and maintain and improve their capabil- ities and assets now and in the future. (IDDRS, 2006). Vocational (career) guidance: The OECD Career Guidance Policy Review defines it as \u201cser- vices and activities intended to assist individuals, of any age and at any point throughout their lives, to make educational, training and occupational choices and to manage their careers.\u201d This definition includes making information about the labour market and about educational and employment opportunities more accessible by organizing it, systematizing it and having it available when and where people need it. It also includes assisting people to reflect on their aspirations, interests, competencies, personal attributes, qualifications and abilities and to match these with available training and employment opportunities. The term career guidance is replacing the term vocational guidance in high-income coun- tries. Vocational guidance is focused upon the choice of occupation and is distinguished from educational guidance, which focuses upon choices of courses of study. Career guid- ance brings the two together and stresses the interaction between learning and work. (Career Guidance \u2013 A Resource Handbook for Low- and Middle-Income Countries, 2006). Vocational training: The expression vocational training means any form of training by means of which technical or trade knowledge can be acquired or developed, whether the training is given at school or at the place of work. (ILO Recommendation 57, 1939) Training is not an end in itself, but a means of developing a person\u2019s occupational capacities, due account being taken of the employment opportunities, and of enabling him to use his abilities to the greatest advantage of himself and of the community; it should be designed to develop personality, particularly where young persons are concerned. (ILO Recommen- dation 117, 1962) For the purpose of this Recommendation, the qualification of the terms guidance and training by the term vocational means that guidance and training are directed to identify and developing human. Socialization to violence: In the case of combatants and associated groups, this sociali- zation or conditioning process involves the development of violent behaviours that are, or that appear to be, essential for effective participation in the armed force or armed group, or more broadly essential for basic survival in an environment rife with armed violence. During armed conflict, many combatants witness and become victims of violence and severe abuse themselves and may enter into the early recovery period with significant psychosocial support needs. Systematic data on patterns of violence among ex-combatants is still fragmentary, but evidence from many post-conflict contexts suggests that ex-com- batants who have been socialized to use violence often continue these patterns into the peacebuilding period. (UNDP Report, Blame It on the War? The Gender Dimensions of Vio- lence in DDR, 2012). Culture of violence: When socialization to violence reaches a level where it has become an integral part of a particular society and of individuals\u2019 collective response mechanisms. Behaviour change communication (BCC): An interactive process with communities (as integrated with an overall program) to develop tailored messages and approaches using a variety of communication channels (such as drama, music, radio, media, print, etc) to develop positive behaviours; promote and sustain individual, community and societal behaviour change; and maintain appropriate/non-violent behaviours and interactions between individuals and groups. Behaviour change interventions (BCI): A combination of activities/interventions tailored to the needs of a specific group and developed with that group to help reduce violence by creating an enabling environment for individual and collective change. Caregiving: A kind of interaction of a person with the world around him/her, including objects, plants, animals and particularly other human beings. This also includes self-care. In many cultures this \u2018caring\u2019 relationship or attitude can be defined as a \u201cfemale\u201d attrib- ute or characteristic, and from whose domain men, from an early age, are encouraged to exclude themselves. Interim stabilization measures: Stabilization measures that may be used to keep former combatants\u2019 cohesiveness intact within a military or civilian structure for a time-bound period of time, creating space and buying time for a political dialogue and the formation of an environment conducive to social and economic reintegration. Such measures range from military integration to the formation of transitional security forces, to the establish- ment of civilian service corps, among other such arrangements \u2018holding patterns\u2019.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.json b/src/Static/data/json/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.json new file mode 100644 index 0000000..9aeac99 --- /dev/null +++ b/src/Static/data/json/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.json @@ -0,0 +1,629 @@ +[ + { + "ID": "e60b8e43-f8cb-4f16-a980-306f5e2d0ce7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": null, + "Paragraph": "Summary Military personnel possess a wide range of skills and capacities that can contribute to DDR processes in mission and non-mission settings. As outlined in IDDRS 2.10 on the UN Approach to DDR, mission settings are those situations in which peace operations are deployed through peacekeeping operations, political missions and good offices engagements, by the UN or a regional organization. Non-mission settings are those where no peace operation is deployed, either through a peacekeeping operation, political missions or good offices engagements. When DDR is implemented in mission settings with a UN peacekeeping operation, the primary role of the military component should be to provide a secure environment and to observe, monitor and report on security-related issues. This role may include the provision of security to DDR programmes and to DDR-related tools, including pre- DDR. In addition to providing security, military components in mission settings may also provide technical support to disarmament, transitional weapons and ammunition management, and the establishment and maintenance of transitional security arrange- ments (see IDDRS 4.10 on Disarmament, IDDRS 4.11 on Transitional Weapons and Ammunition Management, and IDDRS 2.20 on The Politics of DDR). To ensure the successful employment of a military component within a mission setting, DDR tasks must be included in endorsed mission operational requirements, include a gender perspective and be specifically mandated and properly resourced. Without the requisite planning and coordination, military logistical capacity cannot be guaranteed. UN military contingents are often absent from special political missions (SPMs) and non-mission settings. In SPMs, UN military personnel will more often consist of military observers (MILOBs) and military advisers.1 These personnel may be able to provide technical advice on a range of security issues in support of DDR processes. They may also be required to build relationships with non-UN military forces mandated to support DDR processes, including national armed forces and regionally-led peace support operations. In non-mission settings, UN or regionally-led peace operations with military com- ponents are absent. Instead, national and international military personnel can be man- dated to support DDR processes either as part of national armed forces or as part of joint military teams formed through bilateral military cooperation. The roles and re- sponsibilities of these military personnel may be similar to those played by UN military personnel in mission settings.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "bdb54a61-a547-48b7-8db5-30c059b5377c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 4, + "Paragraph": "Module scope and objectives The objective of this module is to outline possible military contributions to DDR processes in the context of UN peacekeeping operations, special political missions (SPMs) and non-mission settings. Although the guidance in this module is based on the experience of UN military components, it is designed for all military personnel who contribute to DDR processes, irrespective of whether these personnel are affiliated to the UN, regional organizations, joint military teams or national armed forces. The guidance is also designed for civilian DDR practitioners who are interested in the ways that military personnel may be able to support their work. The module discusses the factors to be considered when employing military capacity in support of DDR. Routine military tasks that are carried out according to national security policies and strategies are beyond the scope of this module.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8468efa0-99ec-47bb-8404-6de34f0c11d2", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "ce674a0b-592f-4d18-b07a-f73ba8225dae", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 4, + "Paragraph": "Introduction Military personnel possess a wide range of skills and capacities that may contribute to DDR processes in the context of UN peacekeeping operations, SPMs, and non-mission settings. In peacekeeping operations, military components may be made up of formed contingents/units, MILOBs, and staff officers (see section 4). In contrast, in SPMs, MI- LOBs and military advisers may be deployed in the absence of formed military con- tingents. In non-mission settings, national and international military personnel can be mandated to support DDR processes either as part of national armed forces or as part of joint military teams formed through bilateral military cooperation. In these various types of settings, the role of the military will differ depending on the specific mandate and the resources available.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "be139949-751c-415e-b854-b4dd0375e496", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to military roles and responsibilities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a577480b-86eb-4fdb-b331-f387202f0a32", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 5, + "Paragraph": "Voluntary Integrated DDR shall not be conflated with military operations or counter-insurgen- cy strategies. DDR is a voluntary process, and practitioners shall therefore seek legal advice if confronted with combatants who surrender or are captured during overt mil- itary operations, or if there are any concerns regarding the voluntariness of persons participating in DDR. In contexts where DDR is linked to Security Sector Reform, the integration of vetted former members of armed groups into national armed forces, the police or other uniformed services as part of a DDR process shall be voluntary (see IDDRS 6.10 on DDR and SSR).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "fd418e56-dfa1-454f-acbf-5eaa00805079", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 5, + "Paragraph": "Criteria for participation/eligibility When DDR and SSR processes are linked, former members of armed groups shall only be recruited into the reformed security sector if they are thoroughly vetted and meet the designated recruitment criteria. Former members of armed groups shall not be integrated into the national armed forces merely because of their status as a member of an armed group. Children shall not be recruited into the national armed forces and effective age assessment procedures must be in place (see IDDRS 5.20 on Children and DDR). Former members of armed groups who have been involved in the commission of war crimes or human rights violations shall not be eligible for recruitment into the national armed forces, including when DDR processes are linked to SSR.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "1520386c-6072-4669-8139-6aa34bf891f4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 5, + "Paragraph": "Unconditional release and protection of children In missions that hold a specific Child Protection/Children and Armed Conflict man- date, child protection is a specified mandated task for the military component. The child protection mandates for missions can include: support to DDR processes, includ- ing the effective identification and demobilization of children, taking into account the specific concerns of girls and boys; a requirement to monitor and report on the Six Grave Violations against children, namely, recruitment and use of children, killing and maiming, sexual violence against children, abduction, attacks on schools and hospitals and denial of humanitarian access; and/or a requirement for the mission to work closely with the government or armed groups to adopt and implement measures to protect children including Action Plans to end and prevent grave violations.. The tasks of the military component, in close coordination with mission child protection advisors, therefore include, but are not limited to: providing physical protection for children; gathering and sharing information through the military chain of command and child protection advisors on the Six Grave Violations; supporting the separation of children from armed forces and groups, including their handover to civilian child protection actors; and providing security for Child Protection Advisers or civil society actors when they visit the military barracks of armed forces/armed groups. Child protection shall be integrated into all military work, including when UN civilian and military personnel undertake mentoring and advisory activities and build the capacity of State armed forces in conflict-affected countries. The military component shall ensure that gender-responsive child protection is understood by all members of the force and those persons working with military per- sonnel through in-mission induction briefings and ongoing training on child protec- tion. Child protection shall also be mainstreamed into daily operations and, in particu- lar, into protection activities. Commanders, staff and associated personnel at all levels should ensure that threats to and from children and their vulnerabilities are identified, and that plans and orders are developed to provide effective protection on the ground, working in concert with mission child protection advisers, other protection partners and local communities. These plans should include a gender perspective in order to recognise the different threats to, and protection concerns of, girls and boys. A military child protection focal point network shall be implemented at the oper- ational and tactical levels to ensure that child protection concerns are considered at all stages of the planning process and in operational activities. The military component shall appoint a military child protection focal point at mission headquarters as well as child protection focal points within Battalion/Company Headquarters. Child protection and child rights shall be included not only in military training but in standard operating procedures as well as in military guidance as appropriate. Force commanders and tactical level commanders, in consultation with mission child protection actors, shall issue specific guidance on child protection in the format of a Force Directive on Child Protection and tactical level SOPs. Specific SOPs and/or pro- tocols shall be developed on the handover to civilian child protection actors of children captured in operations, those who surrender to the peacekeeping force, or those re- leased en masse. Specific gender-responsive guidelines shall also be developed for the battalion on child protection concerns for girls and boys, including detention, conduct during interaction with children, and prevention of all forms of exploitation against children, including child labour, sexual exploitation and abuse, and protection of civil- ians. Whenever orders are written, or an activity planned, military staff should always consider the impact on girls and boys and their protection, and always consult mission child protection advisers. All SOPs and guidelines shall include a gender perspective in order for practitioners to develop fully gender-responsive plans that meet the differ- ing needs of girls and boys. For further guidance, refer to the UN\u2019s Military Specialised Training Materials on Child Protection.2", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e5b50f9e-815f-4204-af9b-8067020050e3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 6, + "Paragraph": "In accordance with standards and principles of humanitarian assistance UN military personnel should be impartial. Furthermore, any form of support by Unit- ed Nations military personnel or UN entities to non-UN security forces must be pro- vided in full compliance with the UN Human Rights Due Diligence Policy on United Nations Support to Non-UN Security Forces.3 This policy requires an assessment of the risk that recipients of UN support will commit grave violations of international humanitarian, human rights or refugee law. If a level of risk is identified, mitigating measures shall be put in place. It is the responsibility of every UN entity providing sup- port to undertake such a risk assessment. As defined in the HRDDP, \u201csupport\u201d encom- passes a range of potential activities, from training, mentoring and advisory services to joint operations conducted by UN and non-UN security forces. Risk assessments shall be undertaken prior to the delivery of support to recipients.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "184bd22b-e3f4-40ce-97b7-f366228f93be", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 7, + "Paragraph": "Gender-responsive and inclusive Since the adoption in 2000 of Security Council Resolution 1325 on women, peace, and security, there have been numerous resolutions and calls for more women in peace- keeping. Under the 2018 Action for Peace (A4P) initiative, Member States commit them- selves to ensure the full, equal and meaningful participation of women in all stages of the peace process by systematically integrating a gender perspective into all stages of analysis, planning, implementation and reporting. They further commit to increase the number of civilian and uniformed women in peacekeeping at all levels and in key positions. The Uniformed Gender Parity Strategy 2018\u20142028 calls for 15 % female rep- resentation in the contingent unit and 25% in individual positions. The meaningful participation of women as peacekeepers, MILOBs, and staff of- ficers has a number of benefits to the DDR process. Female military personnel can access populations and venues that are closed to men. They can search women when necessary and can help to make peacekeeping forces more approachable to local com- munities, particularly to women and girls who may have suffered acts of sexual vio- lence. Lastly, female military personnel are role models in the communities in which they serve and in their respective countries. For these reasons, the planning phase of any operation must include a gender perspective, and the gender composition of in- coming forces should reflect the community it is mandated to protect. UNSCR 1325 stipulates that all peacekeeping personnel shall receive training on \u201cthe protection, rights and the particular needs of women, as well as on the importance of involving women in all peacekeeping and peacebuilding measures\u201d. All incoming forces shall also receive training on gender and Sexual Exploitation and Abuse, par- ticularly the UN\u2019s Zero Tolerance Policy.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "02848d53-0ca9-4d2b-8f8a-c685e065fb8b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 7, + "Paragraph": "Context specific There is no one-size-fits-all military policy and, as a result, there can be no standard- ized approach to determining military support to a particular DDR process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "07aed46c-ab17-4846-b237-5444db830bc9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 7, + "Paragraph": "Safety and security In a mission context with a peacekeeping operation, the provision of security around disarmament and demobilization sites will typically be undertaken by the military component. However, all matters related to law and order shall be undertaken by the UN police component (see IDDRS 4.50 on UN Police Roles and Responsibilities).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b019b644-917d-46a3-ab71-51ba0882e38e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 8, + "Paragraph": "Transition and exit strategies The withdrawal of international peacekeeping forces shall be a carefully planned exercise, drawing on consultations with all relevant stakeholders, including concerned Governments and the humanitarian, development, peace and political arms of the UN system present in mission contexts. The pace of this withdrawal shall be based, among other factors, on the ability of State security institutions to take over the maintenance of security and public order, as well as of other actors to take over certain services previously provided by the peacekeeping force.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "80494787-1852-46a2-8d4b-86361d8554d4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 8, + "Paragraph": "The military component in mission settings Most UN peacekeeping operations, particularly those with a DDR mandate, rely on contingent troops and MILOBS that are collectively referred to as the peacekeeping force. The primary function of the military component is to provide security and to observe and report on security-related issues. Military contingents vary in their capa- bilities, structures, policies and procedures. Each peacekeeping operation has a military component specifically designed to fulfil the mandate and operational requirement of the mission. Early and comprehensive DDR planning will ensure that appropriately trained and equipped units are available to support DDR. As military resources and assets for peace operations are limited, and often provided for multiple purposes, it is important to identify specific DDR tasks that are to be carried out by the military at an early stage in the mission-planning process. These tasks will be different from the generic tasks usually captured in Statement of Unit Requirements. If any specific DDR-related tasks are identified during the planning phase, they must be specified in the Statement of Unit Requirements of the concerned unit(s).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "c9190a58-194c-4395-a371-e8915b5160ad", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 8, + "Paragraph": "Composition The military component can be made up of: Formed units or contingents: These can include motorized, mechanized and light infantry units, aviation units, engineering units, and various support units, some of which can provide logistics support, including specialists in explosives and weapons destruction. Normally the support element of the force, usually called the Enabler, is designed primarily for the needs of the overall mission. The chief of mission support controls the tasking of logistics support, aviation, engineering and mobile medical/field hospital units. Military observers: MILOBs are officers normally provided by Member States for 12 months who operate in small teams of between two and six. Where possible, MILOBs are incorporated into the force command structure. MILOBs typically op- erate unarmed. Staff officers: Individual military officers serve in staff posts, both within the force headquarters and in various specialized positions where some are integrated with the civilian staff. Some staff officers are deployed on individual assignments, while others are part of broader military contingents. Table 1 below shows the various structures and ranks within a military component. It should be taken as a broad guide only, as each contingent may vary.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5a913d20-c189-432f-bff2-e1914e3dff95", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 9, + "Paragraph": "Command and control The peacekeeping force is commanded by a force commander. It is important to dis- tinguish between operational military tasks in support of DDR processes, which are directed by the military chain of command in close coordination with the DDR compo- nent of the mission, and engagement in the DDR planning and policymaking process, which is often politically sensitive. Any military personnel involved in the latter, al- though remaining under military command and control, will operate under the overall guidance of the chief of the DDR component, senior mission leadership, and the Joint Operations Centre (JOC). For support and logistics tasks, the peacekeeping force will operate under the guidance of the Chief of Mission Support/Director of Mission Sup- port (CMS/DMS).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7c583c6d-1d15-463c-92f6-d5e90cb91e67", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 9, + "Paragraph": "Military component contribution Specialized military capacities such as communications, aviation, engineering, medical and logistics support are often in short supply, and hence may be used only when uniquely able to fulfil the task at hand. Where civilian sources can meet an approved operational requirement and the military component of a mission is fully engaged with other tasks, civilian resources should be used. If mandated, resourced and ap- propriately equipped, the military should be able to contribute to DDR in the ways de- scribed below. Furthermore, if the mandate and the concept of operations specify military support to a DDR process, then this should be factored into the force structure when the concept of operations is drawn up.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "890fdb60-bcad-41f9-9ca4-245eab882a8d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 7, + "Paragraph": "Security The primary contribution of the military component to a DDR process is to provide security for DDR staff, partners, infrastructure and beneficiaries. Security is essential to ensure former combatants\u2019 confidence in DDR, and to ensure the security of other elements of a mission and the civilian population. If tasked and resourced, a military component may contribute to the creation and maintenance of a stable, secure environment in which DDR can take place. This may include the provision of security to areas in which DDR programmes and DDR-related tools (including pre-DDR and community violence reduction) are being implemented. Military components may also provide security to DDR and child protection practitioners, and to those participating in DDR processes, including children and dependants. This may include the provi- sion of security to routes that participants will use to enter DDR and/or the provision of military escorts. Security is provided primarily by armed UN troops, but could be supplemented by the State\u2019s defence security forces and/or any other security provider. Finally, military components may also secure the collection, transportation and storage of weapons and ammunition handed in as part of a DDR process. They may also monitor and report on security-related issues, including incidents of sexual and gender-based violence. Experience has shown that unarmed MILOBs do not provide security, although in some situations they can assist by contributing to early warning, wider information gathering and information distribution.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2530fa47-1dc7-41ef-b538-4c3cd15b6209", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 10, + "Paragraph": "Disarmament Military components may possess ammunition and weapons expertise useful for the disarmament phase of a DDR programme. Disarmament typically involves the col- lection, documentation (registration), identification, storage, and disposal (including destruction) of conventional arms and ammunition (see IDDRS 4.10 on Disarmament). Depending on the methods agreed in peace agreements and plans for future national security forces, weapons and ammunition will either be destroyed or safely and se- curely managed. Military components can therefore assist in performing the following disarmament-related tasks, which should include a gender perspective in their plan- ning and execution: Monitoring the separation of forces. Monitoring troop withdrawal from agreed-upon areas. Manning reception centres. Undertaking identification and physical checks of weapons. Collection, registration and identification of weapons, ammunition and explosives. Registration of male and female ex-combatants and associated groups. Not all military units possess the requisite capabilities to support the disarmament component of a DDR programme. Early and comprehensive planning should identify whether this is a requirement, and units/capabilities should be generated accordingly. For example, the collection of unused landmines may constitute a component of disar- mament and requires military explosive ordnance disposal (EOD) units. The destruc- tion and disposal of ammunition and explosives is also a highly specialized process and shall only be conducted by specially trained EOD military personnel in coordina- tion with the DDR component of the mission. When the military is receiving weapons, it is important that both male and female soldiers participate in the process, particular- ly if it is necessary to search former combatants and persons formerly associated with armed forces and groups.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "68b515e9-2cfa-4a28-9e30-596959b11813", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 11, + "Paragraph": "Transitional weapons and ammunition management Military components may also assist with transitional weapons and ammunition management (WAM) as part of pre-DDR, as part of community violence reduction, or as part of DDR support to transitional security arrangements. The precise roles and responsibilities to be played by military components in each of these scenarios should be outlined in a set of standard operating procedures for transitional WAM (see IDDRS 4.11 on Transitional Weapons and Ammunition Management).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "471ac6b0-c60a-4b9d-9325-71ed26282b2d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 11, + "Paragraph": "Information gathering and reporting The DDR component of the mission should coordinate and manage information gathering and reporting tasks, with supplementary information provided by the Joint Operations Centre (JOC) and Joint Mission Analysis Centre (JMAC). The military com- ponent can seek information on the following: The locations, sex- and age-disaggregated troop strengths, and intentions of former combatants or associated groups, who may or will become part of a DDR process. Estimates of the number/type of weapons and ammunition expected to be collected/stored dur- ing a DDR process, including those held by women and children. As accurate estimates may be difficult to achieve, planning for disarmament and broader transitional WAM must include some flexibility. Sex- and age-disaggregated estimates of non-combatants associated with the armed forces, including women, children, and elderly or wounded/disabled people. Their roles and responsibilities should also be identified, particularly if human trafficking, slavery, and/or sexual and gender-based violence is suspected. Information from UN system organizations, NGOs, and women\u2019s and youth groups. The information-gathering process can be a specific task of the military compo- nent, but it can also be a by-product of its normal operations, e.g., information gathered by patrols and the activities of MILOBs. Previous experience has shown that the lead- ers of armed groups often withhold or distort information related to DDR, particularly when communicating with the rank and file. Military components can be used to de- tect whether this is happening and can assist in dealing with this challenge as part of the public information and sensitization campaigns associated with DDR (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). The military component can assist dedicated mission DDR staff by monitoring and reporting on progress. This work must be managed by the DDR staff in conjunc- tion with the JOC.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5ed6d515-ab7a-42ee-935e-7b26672eb167", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 12, + "Paragraph": "Information dissemination and sensitization Military components are typically widely spread across the conflict-affected country/ region and can therefore assist by distributing information on DDR to potential partic- ipants and beneficiaries. Any information campaign should be planned and monitored by the DDR component and wider mission public information staff (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). MILOBs and the infantry battalion can assist in the dissemination of public information and in sensiti- zation campaigns.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0c390864-3bf3-4cd1-ad1f-0c88ff044b32", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 12, + "Paragraph": "Logistics support Military components may conduct a wide range of logistical tasks ranging from trans- portation to the construction of static disarmament and demobilization sites (see ID- DRS 4.10 on Disarmament and IDDRS 4.20 on Demobilization). Logistics support pro- vided by a military component must be coordinated with units that provide integrated services support to a mission. Where the military is specifically tasked with providing certain kinds of support, additional military capability may be required by the military component for the duration of the task. A less ideal solution would be to reprioritize or reschedule the activities of military elements carrying out other mandated tasks. This approach can have the disadvantage of degrading wider efforts to provide a secure environment, perhaps even at the expense of the security of the population at large.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "90165e3d-784e-499e-bedf-a8ff4cf319b7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 12, + "Paragraph": "Pre-deployment planning During pre-deployment planning, assessment and advisory visits (AAVs) are con- ducted to facilitate planning and decision-making processes at the UN Headquarters (UNHQ) level and to improve understanding of the preparedness of Member States wishing to contribute to UN peacekeeping operations. For new and emerging Troop Contributing Countries (TCCs), an AAV provides advice on specific UN operation- al and performance requirements. If DDR is required, TCCs can be provided with advice on the preparation of DDR activities during AAVs. A lead role should be played by the Integrated Training Service, who should include information on the prepara- tion and implementation of DDR, including through a gender-perspective, within the pre-deployment training package. AAVs also support those Member States that are contributing a new capability in UN peace operations with guidance on specific UN requirements and assist them in meeting those requirements. Finally, preparedness for DDR is a responsibility of TCCs with UNHQ guidance. During pre-deployment visits, preparedness for DDR can be evaluated/assessed. For the military component, DDR planning is not very different from planning related to other military tasks in UN peace operations. Clear guidance is necessary on the scope of the military\u2019s involvement.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "54f13a99-9a84-4345-8034-cce79db7251d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Contingency planning Contingency planning for military contributions to DDR processes will typically be carried out by military staff at UNHQ in collaboration with the Force Headquarters of the Mission. Ideally, once it appears likely that a mission will be established, individu- als can be identified in Member States to fill specialist DDR military staff officer posts in a DDR component in mission headquarters. These specialists could be called upon to assist at UNHQ if required, ahead of the main deployment.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7a54480e-cb0b-4ce2-ab5d-6a2238c0f70e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Joint assessment mission Military staff officers, either from UNHQ or, ideally, individuals specifically allocated as DDR staff for peace operations, will participate, when required and available, in joint assessment missions to assist in determining the military operational requirement spe- cifically needed to support DDR. These officers can advise on technical issues that will be relevant to the particular DDR process and should possess gender expertise.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a6993628-ddf5-41f4-83d5-c308d20aff75", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Mission concept of operations A mission concept of operations is drawn up as part of an integrated activity at UNHQ. As part of this process, a detailed operational requirement will be developed for mil- itary capability to meet the proposed tasks in the concept. This will include military capability to support UN DDR. The overall military requirement is the responsibili- ty of the Military Adviser, however, this individual is not responsible for the overall DDR plan. There must be close consultation among all components involved in DDR throughout the planning process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "b260c55d-3812-4cd5-8a26-35ae71121245", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Mission plan Ideally, detailed mission plans will be drawn up by individuals who will fill planning and management positions in the proposed new mission. If this is not possible, initial plans will be drawn up by UNHQ staff, then reviewed and adjusted by mission staff as DDR progresses. Mission plans and concepts of operations will also need to be re- viewed, should the Security Council not approve all identified and proposed operation- al requirements. In addition, as DDR processes should be owned by Governments or transitional Governments, mission plans should be flexible and allow for adjustments.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "38bc197c-d0eb-4e9f-b196-9f33d0faab13", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Force generation The UN\u2019s Force Generation Service is responsible for interaction with Member States to acquire the military capabilities identified in the operational requirement. Contri- butions are negotiated on a case-by-case basis. Member States will not start formal negotiations until the Security Council has mandated a mission. For complex missions, i.e., most missions involving DDR, the UN has a target of having troops completely deployed within 90 days. If the military operational requirement specifically identified to support DDR is likely to be concentrated on support to disarmament, transitional WAM, and demobi- lization, it may be possible to reduce the size of the force once these aspects have been completed, if the security situation allows. In other words, it may be possible to design a force structure that has an element that will be required only for these specific activities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "90803a03-672f-4b2d-9f0d-0c8172bdc9ee", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 14, + "Paragraph": "DDR component staffing Military capacity used in a DDR process is planned in detail and carried out by the military component of the mission within the limits of its capabilities. Military staff officers could fill posts in a DDR component as follows: Mil SO1 DDR \u2013 military liaison (Lieutenant Colonel); Mil SO2 DDR \u2013 military liaison (Major); Mil SO2 DDR \u2013 disarmament and weapons control (Major); Mil SO2 DDR \u2013 gender and protection issues (Major). The posts will be designed to meet the specific requirements of the mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d83ed09c-f58a-4dd5-b2ed-ada660593bab", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 14, + "Paragraph": "Special political missions and non-mission settings In SPMs, MILOBs and military advisers may be deployed in the absence of formed mil- itary contingents. Depending on the particular context, the roles and responsibilities of military personnel in these settings may include the provision of technical advice on dis- armament and transitional WAM (see section 5.3.3); and the building of bilateral relation- ships with non-UN military forces including national armies and regional peace support operations. Importantly, DDR practitioners shall ensure that all UN engagement with non-UN security forces be undertaken in accordance with the United Nations Human Rights Due Diligence Policy on UN Support to Non-UN Security Forces. In non-mission settings, national and international military personnel can be invited to support DDR processes either as part of national armed forces or as part of joint military teams formed through bilateral military cooperation. The roles and responsibilities of these military personnel may be similar to those played by UN military personnel in mission settings.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "c80c6002-ed81-48d1-ab9e-804cc417bae9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 14, + "Paragraph": "DDR and security sector reform DDR may be closely linked to security sector reform (SSR) in a peace agreement. This agreement may stipulate that vetted former members of armed forces and groups are to be integrated into the national armed forces, police, gendarmerie or other uniformed services. In some DDR-SSR processes, the reform of the security sector may also lead to the discharge of members of the armed forces for reintegration into civilian life. Dependent on the DDR-SSR agreement in place, these individuals can be given the option of benefiting from reintegration support. The modalities of integration into the security sector can be outlined in technical agreements and/or in protocols on defence and security. National legislation regulat- ing the security sector may also need to be adjusted through the passage of laws and decrees in line with the peace agreement. At a minimum, the institutional and legal framework for SSR shall provide: An agreement on the number of former members of armed groups for integration into the security sector; Clear vetting criteria, in particular a process shall be in place to ensure that in- dividuals who have committed war crimes, crimes against humanity, genocide, terrorist offences or human rights violations are not eligible for integration; in addition, due diligence measures shall be taken to ensure that children are not recruited into the military; A clear framework to establish a policy and ensure implementation of appropriate training on relevant legal and regulatory instruments applicable to the security sector, including a code of conduct; A clear and transparent policy for rank harmonization. DDR planning and management should be closely linked to SSR planning and management. Although international engagement with SSR is often provided through bilateral cooperation agreements, between the State carrying out SSR and the State(s) providing support, UN entities may provide SSR support upon request of the parties concerned, including by participating in reviews that lead to the rightsizing of the se- curity sector in conflict-affected countries. Military personnel supporting DDR pro- cesses may also engage with external actors in order to contribute to coherent and in- terconnected DDR and SSR efforts, and may provide tactical, strategic and operational advice on the reform of the armed forces. For further information on vetting and the integration of armed forces and groups in the security sector, see IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "78a7e742-e879-42eb-a8d1-9fb0f3112591", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 15, + "Paragraph": "DDR training requirements for military personnel Military components and personnel must be adequately trained. In General Assem- bly Resolution A/RES/49/37 (1995), Member States recognized their responsibility for the training of uniformed personnel for UN peacekeeping operations and requested the Secretary-General to develop relevant training materials and establish a range of measures to assist Member States. In 2007, the Integrated Training Service was creat- ed as the centre responsible for peacekeeping training. The Peacekeeping Resource Hub was also launched in order to disseminate peacekeeping guidance and training materials to Member States, peacekeeping training institutes and other partners. A number of trainings institutions, including peacekeeping training centers, offer annu- al DDR training courses for both civilian and military personnel. DDR practitioners should plan and budget for the participation of civilian and military personnel in DDR training courses.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-4.50-Police-Roles-and-Responsibilities.json b/src/Static/data/json/IDDRS-4.50-Police-Roles-and-Responsibilities.json new file mode 100644 index 0000000..800be39 --- /dev/null +++ b/src/Static/data/json/IDDRS-4.50-Police-Roles-and-Responsibilities.json @@ -0,0 +1,686 @@ +[ + { + "ID": "f8a1cf1a-543d-4bab-824d-22e606bc6952", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": null, + "Paragraph": "Summary Police personnel possess a wide range of skills and capacities that can contribute to DDR processes in mission and non-mission settings. As outlined in IDDRS 2.10 on The UN Approach to DDR, mission settings are those situations in which peace op- erations are deployed through peacekeeping operations, political missions and good offices engagements, by the UN or a regional organization. Non-mission settings are those where no peace operation is deployed, either through a peacekeeping operation, political missions or good offices engagements. In mission settings, the mandate granted by the UN Security Council will dictate the type and extent of UN police involvement in a DDR process. Dependent on the sit- uation on the ground, this mandate can range from monitoring and advisory functions to full policing responsibilities. In mission settings with a peacekeeping operation, the UN police component will typically consist of individual police officers, formed police units and specialized police teams. In special political missions, formed police units will typically not be present, and the UN police presence may consist of senior advisers. In non-mission settings there is no UN Security Council mandate. Therefore, the type and extent of UN or international police involvement in a DDR process will be determined by the nature of the request received from a national Government or by bilateral cooperation agreements. An international police presence in a non-mission setting (whether UN or otherwise) will typically consist of advisers, mentors, trainers and/or policing experts, complemented where necessary by a specialized police team. When supporting DDR processes, police personnel may conduct several general tasks, including the provision of advice, support to coordination, monitoring and build- ing public confidence. Police personnel may also conduct more specific tasks related to the particular type of DDR process that is underway. For example, as part of a DDR programme, police personnel at disarmament and demobilization sites can facilitate weapons tracing and the dynamic surveillance of weapons and ammunition storage sites. Police personnel may also support the implementation of different DDR-related tools (see IDDRS 2.10 on The UN Approach to DDR). For example, police may support DDR practitioners who are engaged in the mediation of local peace agreements by orienting these individuals, and broader negotiating teams, to entry points in the com- munity. Community-oriented policing practices and community violence reduction (CVR) programmes can also be mutually reinforcing (see IDDRS 2.30 on Community Violence Reduction). Finally, when DDR processes are linked to security sector reform (SSR), UN police personnel have an important role to play in the reform of State police and law enforce- ment institutions and can positively contribute to the establishment and furtherance of professional standards and codes of conduct of policing.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7ec03231-327e-4364-a899-d7a1f464760a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 4, + "Paragraph": "Module scope and objectives The objective of this module is to outline possible police contributions to DDR processes in the context of UN peacekeeping operations, special political missions (SPMs) and non-mission settings. Although the guidance in this module is based on the experience of UN police components, it is designed for all police personnel who contribute to DDR processes, irrespective of whether these personnel are affiliated to the UN, regional organizations, or State police. The module is also designed for civilian DDR practi- tioners who are interested in the ways that police personnel and UN law enforcement experts may support their work.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4fcd01a2-f042-4964-8e32-7078523272a2", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. UN police personnel can include both uniformed police officers and civilian policing experts. Individual police officers (IPOs) are usually unarmed and have historically been utilized for community-oriented policing, information gathering, capacity-building, training and monitoring. Formed Police Units (FPUs) are self-contained police units of 140 to 160 officers capable of providing a range of tactical police options, including an effective public order function. FPUs are armed, and, generally speaking, deliver a more robust form of policing than IPOs based on mandate authority and tasks. Specialized Police Teams (SPTs) sometimes reinforce FPUs and consist of a group of experts in a particular area of policing such as special weapons and tactics teams. UN policing experts may be deployed to Member States as part of technical assistance programmes agreed between United Nations country team entities and the Member State, to provide capacity-building or other forms of technical assistance. Interim Executive mandate: The mandates provided to UN police personnel in mission settings may range from non-executive to partial-executive to full-executive. Full-exec- utive mandates are rarely granted, as they mean that UN police will assume complete responsibility for the maintenance of law and order, and the performance of the whole spectrum of activities associated with policing, including powers of arrest and detention, collecting evidence, investigation of crime and assistance in criminal investigations, border security, riot and crowd control, and robust patrols.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "eb1418bd-28ea-48fd-b62c-57f0a00e880d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 5, + "Paragraph": "Introduction Police personnel possess a wide range of skills and capacities that may contribute to DDR processes in the context of UN peacekeeping operations, SPMs and non-mission settings. In peacekeeping operations, UN police components will typically consist of IPOs, FPUs and SPTs. In special political missions, FPUs will typically not be present, and the UN police presence may consist of IPOs who work as senior advisers. In non-mis- sion contexts, the UN or international police presence will typically consist of advisers, mentors, trainers and/or policing experts complemented, where necessary, by a SPT. The type and extent of UN or international police involvement in a DDR process in a non-mission setting will be determined by the nature of the request received from a national Government or by bilateral cooperation agreements. In mission settings, the mandate given to a UN police component will dictate the level and extent of its in- volvement in a DDR process. Dependent on the situation on the ground, the Security Council can grant mandates to UN police that range from monitoring and advisory functions to full policing responsibilities. In both mission and non-mission settings, police-related tasks may also include support for the reform, restructuring and devel- opment of the State police service and other law enforcement institutions.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e0a58ff3-c4da-457b-9d1a-17c5a8a09fff", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to police roles and responsibilities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "00feb9f0-b09e-4d7e-b8a5-5f47d539e21c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 5, + "Paragraph": "Voluntary In contexts where DDR is linked to SSR, the integration of vetted former members of armed groups into the armed forces, the State police service or other uniformed services as part of DDR processes shall be voluntary (also see IDDRS 6.10 on DDR and Security Sector Reform).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e715229f-48f9-402e-9f5b-e5fc4cc0ec27", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 5, + "Paragraph": "Criteria for participation/eligibility When DDR and SSR processes are linked, former members of armed groups shall only be recruited into the State police service if they are thoroughly vetted and meet the designated recruitment criteria. Former members of armed groups shall not be integrated into the State police service merely because of their status as former members of an armed group. Furthermore, former members of armed groups who have been involved in war crimes, crimes against humanity, terrorist offences and genocide shall not be eligible for recruit- ment into State police services (see IDDRS 2.11 on The Legal Framework for UN DDR). Importantly, children shall not be recruited into the State police service and effective age assessment procedures must be put in place (see IDDRS 5.20 on Children and DDR).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "15cde379-8d93-4ec8-972e-19f914642762", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 6, + "Paragraph": "Unconditional release and protection of children In both mission and non-mission settings, UN police personnel are bound to interna- tional norms, laws and standards and must uphold the highest standards of protection, including child protection standards, in all aspects of their work. The importance of child protection shall be understood by all police personnel, through ongoing training, and mainstreamed into daily operations, and in particular, into protection activities. Police officers at all levels should ensure that differentiated and shared threats to boys and girls and their vulnerabilities are identified and that plans and orders are developed to provide effective protection on the ground, working in concert with mission child protection advisers (when relevant), other child protection partners and the responsi- ble government authorities. A police child protection focal point shall be established. Child protection and child rights, including justice for children and other special pro- tections in international law and standards applicable to children in contact with the law, shall be included not only in police training but in standard operating procedures as well as in police guidance as appropriate. Child protection shall be integrated into all police work, including when UN and international police personnel undertake mentoring and advisory activities and build the capacity of State police services in conflict-affected countries. UN police personnel shall contribute to larger efforts to bring about positive change in national laws and practices, promoting the highest standards for protecting children. Whenever orders are written, or an activity planned, UN police personnel shall always consider the impact on children and their protection, including the appropriate measures to be taken to address any child protection concerns.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "3f4fd6f8-adfb-4f76-94e0-b92225069d5b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 6, + "Paragraph": "In accordance with standards and principles of humanitarian assistance Any form of support by United Nations police personnel or UN entities to non-UN security forces shall be governed by the UN Human Rights Due Diligence Policy on United Nations Support to Non-UN Security Forces.1 This policy requires an assess- ment of the risk that recipients of UN support will commit grave violations of inter- national humanitarian, human rights or refugee law. If a level of risk is identified, mitigating measures shall be put in place. It is the responsibility of every UN entity providing support to undertake such a risk assessment. As identified in the HRDDP, \u201csupport\u201d encompasses a range of potential activities from training, mentoring and advisory services to joint operations conducted by UN and non-UN security forces. Risk assessments shall be undertaken prior to the delivery of support to recipients.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "3ba5e023-86b3-4938-9d22-3bfa4a92a7b6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 6, + "Paragraph": "Gender-responsive and inclusive Gender-sensitive policing is an operational necessity to address the different and shared security needs of women, men, boys and girls. Particular attention shall be granted to the ability of women, men, boys and girls to share protection threats that concern them and to help identify responses to these threats. Security Council Resolution 2185 (2014) on policing in peacekeeping emphasizes the promotion of gender equality as part of a comprehensive approach to conflict prevention and sustainable peace. UN police personnel shall use a gender analysis and incorporate gender considerations into key aspects of UN police operations such as assessment, planning, management, budgeting and capacity development programmes for police reform. UN police personnel shall promote non-discriminatory and adequate representation of qualified women in State police services at all levels and work to ensure that women in State police services are provided with equal capacity and career development opportunities. UN police per- sonnel shall ensure adequate participation of female police officers in decision-making in the police reform process. UN police personnel shall recognize the specific needs and contributions of women in conflict and post-conflict environments, including the need for protection from sexual and gender-based violence and for community strat- egies to reflect women\u2019s needs, including through the deployment of women within FPUs and the establishment of special protection units.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae00268e-3504-41ab-9d7b-35a3ef2444f3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 7, + "Paragraph": "Conflict sensitive Community engagement through community-oriented policing shall not expose persons to risk or cause them harm \u2013 particularly those who may be at greatest risk, including the most vulnerable, human rights defenders and/or civil society activists.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "80e6e16c-eaee-44b2-b5ed-99ea49611c1f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 7, + "Paragraph": "Context specific There is no one-size-fits all policing policy and, as a result, there can be no standardized ap- proach to determining police support to a particular DDR process. Instead,police support to DDR processes shall be context specific and in accordance with country plans and strategies.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "27261332-8fb7-4be5-bde7-38b0860c883d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 7, + "Paragraph": "Flexible, accountable and transparent funding arrangements Police reform and capacity-building is a long-term commitment. Piecemeal police reform without sustained international support often brings no long-term benefits. However, con- tributing to the police reform process can be politically sensitive, and many donor countries are not willing to support this particular activity. It is therefore very important to make the best use of available resources by coordinating and integrating international support so that, through the united effort of all concerned, the best possible end result can be achieved.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0ff94119-9729-4463-92bf-e39c785bbdc6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 7, + "Paragraph": "Nationally and locally owned Police reform, restructuring and development require strong national political will. This is demonstrated when measures are taken to ensure the promulgation and amend- ment of police regulations and police statutes. National political will is also shown by protecting police reform plans and processes from political interference. The police shall be a non-partisan institution that represents all groups and sex and age consid- erations within a nation, and police officers shall be responsible to the public through obeying and being loyal to a duly elected Government. Making resources available for paying regular salaries and providing basic needs such as uniforms are other ways of displaying political will and commitment. Ultimately, the police reform process shall be nationally owned and rooted in the particular needs and conditions of the country concerned and based on the development of expertise at the national and community levels. The sustainability of the reform depends on the level of national ownership of the entire process and the ability of the Government to support it in the long run.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "09c5b300-2e5c-45f8-9aca-4c17862a0a5a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 8, + "Paragraph": "Regionally supported When necessary, UN police personnel shall coordinate with international and regional police in information sharing and strategic and operational cooperation and planning, particularly when dealing with regional DDR processes, arms trafficking, terrorism and other trans-border crimes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "a090a3c7-b8be-4ae6-8cf0-655490b09841", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 8, + "Paragraph": "Integrated When police support to a DDR process is mandated by the Security Council or requested by a Government, it shall be integrated appropriately into DDR planning and management processes. Additionally, support to police reform cannot be an isolat- ed activity and should take place at the same time as the reform and development of the criminal justice system, including prosecution, judiciary and prison systems, in a comprehensive SSR process (see IDDRS 6.10 on DDR and SSR). All three components of the criminal justice system work together and support one another.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc43bdad-58b6-47d4-aaf0-2034350fb42a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 8, + "Paragraph": "Safety and security In DDR processes in mission settings, the protection of civilians and of UN personnel, their assets and freedom of movement can be provided by UN police personnel, either in the form of IPOs or FPUs. The support of IPOs and FPUs shall be sought if and when DDR personnel, sites and activities are endangered. FPU engagement shall always be limited to the regular maintenance of law and order and shall not cross into high-risk matters of weapons security and military security. If the situation does escalate to in- volve violence and the use of firearms, military units shall be alerted in order to be ready to support the FPU (see IDDRS 4.40 on UN Military Roles and Responsibilities).", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "547a1aaa-bc50-4ea6-8d40-42bc7f21bc50", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 8, + "Paragraph": "Transition and exit strategies Often during armed conflict, State police services are reduced in size and many of the functions of the police are taken over by the military. As peace returns, the State police service and other law enforcement institutions often need to be restructured and their role in maintaining internal security and public order re-established and strength- ened. While a short transition period increases the chances of successfully establishing accountable public institutions, the withdrawal of an international police presence shall be a carefully planned exercise, and the pace of this withdrawal shall be based on the ability of State security institutions to take over the maintenance of security and public order.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ff0a85ae-e4b0-4aff-8950-945eeed6eeee", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 9, + "Paragraph": "The pre-mission assessment As soon as the possibility of UN involvement in peacekeeping activities becomes evident, a multi-agency technical team will visit the area to draw up an operational strategy. The level of engagement of UN police will be decided based on the existing structures and capability of the State police service, including its legal basis; human resources; and administrative, technical, management and operational capabilities, including a gender analysis. The police assessment takes into account the capabilities of the State police service that are in place to deal with the immediate problems of the conflict and post-conflict environment. It also estimates what would be required to ensure the long-term effectiveness of the State police service as it is redeveloped into a professional police service. Of critical importance during this assessment is the identi- fication of the various security agencies that are actually performing law enforcement tasks. During conflict, military intelligence units may have been utilized to perform law enforcement functions. Paramilitary forces and other irregular forces may have also carried out these functions, using methods and techniques that would exceed the ordinary capacities of a State police service. During the assessment phase, it should be decided whether the State police ser- vice is also to be included in the DDR process. Police may have been directly involved in the conflict as combatants or as supporters of the armed forces. If this is the case, maintaining the same police in service could jeopardize the peace and stability of the nation. Furthermore, the police as an institution would have to be disarmed, demobi- lized, adequately vetted for any violation of human rights, and then re-recruited and trained to perform proper policing functions. The assessment phase should also examine the extent to which disarmament or transitional weapons and ammunition management (WAM) will be required. UN police personnel can play a central role in contributing to the assessment and identifi- cation of the number and type of small arms in the possession of civilians and armed groups, in close cooperation with national authorities and civil society. This assessment should also evaluate the capacity of the State police service to protect civilians in light of the prospective number of combatants, persons associated with armed forces and groups, and dependents who will be demobilized and supported to return and rein- tegrate into the community, as well as the impact of this return on public order and security at national and community levels. UN police personnel should then, with the approval of the national authorities and in coordination with relevant stakeholders, contribute to a preliminary assessment of the possibility of rapid rearmament by armed groups due to unregulated arms pos- session and arms flows. Legal statutes to regulate the possession of arms by individu- als for self-protection should be carefully assessed, and recommendations in support of appropriate weapons control should be made. If it is necessary to rapidly reduce the number of weapons in circulation, ad hoc provisions, in the form of decrees emanating from the central, regional and provincial authorities, can be recommended.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3a39dd0f-8c33-40f3-86a2-f17f44a268bb", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 10, + "Paragraph": "Pre-deployment planning Before the establishment of any UN mission, the prospective mission mandate will be examined in order to jumpstart work on the UN police concept of operations. This is the document that will translate the political intent of the mission mandate into UN police strategies and operational directives, and will contain references to all UN police structures, locations, assets, capabilities and indicators of achievement. The necessary course of action for UN police personnel in relation to the DDR process should be outlined, taking into account the broad aims of the integrated mission, the integrated assessment, and consultations with other UN agencies, funds and programmes. The outlined course of action will also depend on the realities on the ground, the expecta- tions of the parties concerned and the DDR structures to be deployed (see IDDRS 3.10 on Integrated DDR Planning: Structures and Processes). As soon as a Security Council Resolution is issued, a UN police deployment plan is drawn up.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "725d2ce1-8b82-4a03-8093-e019d8e3b260", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 10, + "Paragraph": "Peacekeeping operations The UN police structure in an integrated UN peacekeeping operation will be based on the Strategic Guidance Framework for International Police Peacekeeping and will con- sist of four pillars: UN Police Command, UN Police Operations, UN Police Capacity- Build- ing and Development, and UN Police Administration. Capabilities to prevent serious and organized crime should be activated and coordinated in order to support oper- ations conducted by the State police service and to build the capacity of these forces where necessary. SPTs should also be included in the police contingent to assist in the development of national police capacities in specific technical fields including, but not limited to, forensics, criminal intelligence, investigations, and sexual exploitation and abuse/sexual and gender-based violence. At the strategic level, the UN police deployment will engage with the State\u2019s cen- tral police and security authorities and with the UN Country Team. At the operation- al level, the UN police deployment will develop regional and sector commands with team sites in critical locations. IPOs will work alongside and in close coordination with the national police, while FPUs will be based at the provincial level, in areas sensitive to public order and security disturbances. These FPUs may undertake protection of ci- vilian tasks, secure and reinforce the activities of the IPOs, participate in joint missions with the force and civilian components of the mission, and provide general protection to UN staff, assets and freedom of movement. In this latter regard, FPUs shall be ready to implement evacuation plans if the need arises. Upon deployment to a mission area with a peacekeeping operation, all UN police personnel shall receive induction training which outlines their role in the DDR pro- cess. It is essential that all UN police personnel in the mission fully understand the aims and scope of the DDR process and are aware of the responsibilities of the UN police component in relation to DDR. With the deployment of UN police personnel to the mission area, the UN police commissioner will (depending on the size of the UN police component and its mandate) establish a dedicated DDR coordinating unit with a liaison officer who will work very closely with the mission\u2019s DDR command structures to coordinate activity with the military, the State police service and other relevant insti- tutions involved in the DDR process. The DDR coordinating unit should be supported by a police gender adviser/focal point who can advise on gender perspectives related to the work of the police on DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f08cb8af-3235-4bb6-8f94-c7da1c9b4081", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 11, + "Paragraph": "Special political missions In special political missions, pre-mission assessment and pre-deployment planning will take place as outlined above. However, UN police will be structured within a Police Advisory Unit. Within this unit, a Senior Police Adviser to the Special Repre- sentative of the Secretary General will be tasked to liaise and coordinate with the State police and security authorities in order to foster reform and development, to engage in the routing and channelling of international assistance, and to oversee the UN Coun- try Office\u2019s activities related to police and security issues. The police deployment will typically occur in phases, responding to the immediate priorities in the country where the mission will be deployed.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d805cc22-9393-42a2-8da7-5288196465f8", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 11, + "Paragraph": "Non-mission settings In non-mission settings, UN policing experts may be deployed to support a DDR pro- cess in response to a request from a national Government. The deployment may be part of a technical assistance programme agreed between a UN entity and the Government, or may be defined by the Global Focal Point for Police, Justice and Corrections Areas in the Rule of Law in Post-Conflict and Other Crisis Situations (GFP). Advisers, mentors, trainers and/or policing experts may be deployed complemented, where necessary, by the deployment of a SPT. International police deployments of non-UN personnel can also take place on the basis of bilateral cooperation agreements.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "24990c3f-27be-40a9-98ba-17df8b974610", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 11, + "Paragraph": "DDR processes and policing \u2013 general tasks The general tasks that police personnel undertake in relation to DDR processes are advice, coordination, monitoring and building public confidence. The capacity of UN police personnel to carry out these functions will differ in different settings \u2013 mission and non-mission \u2013 contingent on mandated tasks and whether FPUs, IPOs and SPTs are present or absent. For example, building public confidence and strong relationships with local communities will not be realistically achievable in a non-mission setting if only one police adviser is deployed.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8df96bd6-e676-4cff-b9ce-590c4e41ba85", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 11, + "Paragraph": "Advice UN police personnel carry out advisory functions when serving within missions that include advisory and assistance tasks within their mandate. In non-mission settings, UN or international police personnel may be deployed in response to a request from a national Government or as a result of bilateral cooperation agreements. Advisory functions can take place at three levels and shall also be in compliance with the United Nations Human Rights Due Diligence Policy (HRDDP). Strategic: This is the level where specific policy issues are conceptualized and formulated, usually with the ministry of interior or equivalent. UN police personnel can provide assistance in adopting policing policies, drafting police reform decrees, and reiterating that professional, effective, accountable, accessible and gender-respon- sive law enforcement, corrections, and judicial institutions are necessary to lay the foundations for sustaining peace and peacebuilding. They can also provide advice to police executive boards and senior police leadership on the establishment of institu- tional development plans, the enhancement of internal and effective oversight structures, the creation of training programmes and the promotion of gender equality within the police service. Operational or middle management: At this level, UN police personnel can work with operational commanders and mid-level managers, advising them on how to im- plement concepts and policies on the ground. UN police personnel should also take note of any specific equipment, infrastructure and training requirements and take action to address these needs. Service delivery: At this level, UN police personnel can monitor, mentor and advise local police officers working at the community-level, both through working side by side and by conducting joint activities. This work is done in order to ensure that the delivery of the State police service is appropriate and complies with professional standards and codes of conduct of policing as well as with the UN HRDDP. This work is also built on the recognition that State police services are often the primary link between the Government and communities on security issues. UN police personnel can positively influence the way that State police services perform their tasks in a human rights compliant manner. Advice and capacity-building can range from establishing policy frameworks on disarmament to drawing up future regulations on arms possession, and can include reforming the State police service in its entirety, including through the adop- tion of policies to promote gender equality within the police service (see section 8). At the operational level, UN police personnel can help local operational commanders to prevent and tackle crime and lawlessness, and suggest ways to deal with these problems. Furthermore, UN police personnel can assist in planning specific crime prevention and security strategies that can be opera- tionalized with an integrated commitment by the UN mission (if in a mission setting), or by the State police service, particularly in settings where armed groups are engaged in criminal activities (see IDDRS 6.40 on DDR and Organized Crime) This may include the creation of Quick Impact Projects (QIPs) and CVR programmes (see section 7.1). Preventing and combating crime and lawlessness can be particularly important when conflict-affected populations \u2013 including ex-combatants, their dependants, persons formerly associated with armed forces and groups, displaced persons and refugees \u2013 begin to return to communities. As the return of these individuals gets underway, social tensions may appear. Such tensions, if not tackled straight away, could lead to more complicated situations that require a major diversion of resources, effort and time. In these situations, UN police personnel can provide information and criminal intelli- gence that help to prevent a deterioration of the security situation and of public order. In mission settings, UN police personnel can also engage with local authorities, com- munities and civil society organizations, including women and youth organizations, in order to enhance early warning and situational awareness for the benefit of all mission components. In a similar manner, UN police personnel are often well positioned to gather information that the military component of the mission can use to maintain and improve the security of the area in which the mission operates. In non-mission settings, the UN Country Team will be well positioned to detect the signs of a potential return to armed conflict. In these contexts UN police personnel can be utilized in order to advise on the implementation of preventative measures.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "28f5a5b3-b4b6-4ec2-8808-018ecbeb669f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 13, + "Paragraph": "Coordination DDR is a complex process requiring full coordination among all stakeholders, particularly local communities. Contingent on mandate and/or deployment strength, UN police personnel should aim to build a strong working relationship with different segments of local communities that enables the DDR process to take place. More spe- cifically, UN police personnel can contribute to the selection of sites for disarmament and demobilization, broker agreements with communities and help to assure the safety of community members. UN police personnel can monitor disarmament and demobilization sites and regularly liaise with communities and their male and fe- male leaders at critical phases of the DDR process. Experience has shown that neglecting to address the different and shared con- cerns of the various segments of communities can lead to delays and a loss of the mo- mentum required to push DDR forward. Due to their role in community policing, UN police personnel are often well placed to identify local concerns and coordinate with the parties involved to quickly resolve any problems that may arise. The presence of a dedicated UN police liaison officer within a mission\u2019s DDR com- ponent helps in the gathering and processing of intelligence on ex-combatants and persons formerly associated with armed forces and groups, their current situation and their possible future activities/locations. Such a liaison officer provides a valuable link to the operations of the UN police component and State police and law enforcement institutions. In this regard, the liaison officer can also keep the DDR component up to date on the progress of UN police personnel in advising and training the State police service.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "cf4c9eb3-3bac-4faa-999e-2053e5401824", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 14, + "Paragraph": "Monitoring The monitoring of crime trends is important to limit and control the spread of activities that could hinder stability and derail the peace process. Demobilized combatants are sometimes involved in human trafficking, the sex trade, racketeering, smuggling and other organized criminal activities (see IDDRS 6.40 on DDR and Organized Crime). UN police personnel, contingent on mandate and/or deployment strength, shall try to ensure that these activities are controlled effectively right from the start. If DDR practitioners obtain information that is relevant to crime monitoring and prevention, this information shall be shared with UN police. Furthermore, if UN police personnel observe a return to military-style activities, they can assist in getting rid of check- points, illegal collection points and hold-ups, and can help persuade former combatants to abandon violence. Another aspect of monitoring should be that of establishing mechanisms to gather information and intelligence and observe any increase in the possession of arms by the civilian population. Where rules and regulations on the possession of arms for self-protection are well defined, they shall be strictly enforced by the State police service. Monitoring the efforts of the national authorities in controlling the movement of arms across borders will be crucial to identifying possible rearmament trends. Disarmament and/or transitional WAM as part of a DDR process will not be successful if the flow of small arms and light weapons is not fully controlled (see IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Management). When provided with a mandate and/or appropriate deployment strength, UN police personnel shall also monitor whether State police personnel comply with pro- fessional standards of policing. This type of monitoring should be linked to capacity- building, in that, if problems are found, UN police personnel should then support the State police to apply corrective measures. If police misconduct is discovered during the monitoring process, UN police personnel shall report this to the appropriate national or local internal oversight mechanism. Non-compliance reporting is one of the best tools available to monitors for ensuring that host authorities fulfil their obligations, and it should be used to apply pressure if State police personnel and authorities fail to deal with incidents of non-compliance, or routinely violate the principles of an agreement. Non-compliance reporting usually focuses on two themes: the standards of profession- al service delivery (client-focused) and the agreed principles of access and transpar- ency with regard to commitments (bilateral agreements, access to records, detention centres, etc.). Finally, in UN missions that hold a specific Child Protection/Children and Armed Conflict mandate, child protection is a specified mandated task for the UN police com- ponent. The child protection mandates for missions can include support to DDR pro- cesses, to ensure the effective identification and demobilization of children, taking into account the specific concerns of girls and boys, a requirement to monitor and report on the Six Grave Violations against children, namely recruitment and use of children, killing and maiming, sexual violence against children, abduction, attacks on schools and hospitals and denial of humanitarian access, and/or a requirement for the mission to work closely with the government or armed groups to adopt and implement meas- ures to protect children, including Action Plans to end and prevent grave violations. The tasks of the police component, in close consultation with mission child protection advisers, therefore include, but are not limited to: providing physical protection for children; monitoring child protection concerns through community-oriented policing; gathering and sharing information on the Six Grave Violations; ensuring the rights of children in contact with the law; and addressing juvenile justice issues such as arbi- trary or prolonged pre-trial detention and prison conditions.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "38e5ee98-646a-483d-9a80-9feca351cbff", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 15, + "Paragraph": "Building public confidence A division between the State police service and the community may emerge during armed conflict. This division should be bridged, and public confidence in the State police service should be (re)built, in order for long-term peace to be sustained. Community-oriented policing initiatives, as espoused in the United Nations Strategic Guidance Framework for International Police Peacekeeping, are an effective means of establishing and sustaining long-term community reconciliation processes.2 They involve a shift in policing methods and practice, so that the police and different segments of the community work together to solve problems concerning crime, disorder and insecurity (see Box 1). In this way, and through a gender-responsive approach, a relationship between the police and the public is (re)established. The philosophy of community-oriented policing encourages the development of new ways of dealing with community security concerns, particularly to ensure that the needs of women, men, the old and young, minorities, persons with disabilities and other specific-needs groups are systematically addressed. Police personnel (both State and UN) shall be trained in how to tackle gender-based violence towards women and children, both girls and boys, in addition to other hidden social problems such as abuse of the elderly. UN police personnel shall utilize their gender officers and advisers to closely follow up on all aspects related to protections for women and vulnerable groups. They shall include engagement with local communities and civil society organizations, in- cluding women\u2019s and youth organizations, to assess the nature and extent of possible abuses and provide immediate assistance and follow-up. The sensitization of communities on how to take preventative action and avoid interpersonal violence increases public confidence in the police and enables them to more effectively address the needs of the most vulnerable. The following steps can be taken to strengthen public confidence in the police: Open access to all police services; The availability of police services 24 hours a day, 7 days a week; A highly visible police presence; Extensive public information campaigns; The representation of minority groups and balanced ethnic composition in the police service; The promotion of gender balance in the police service and gender mainstreaming in all police work; The establishment of police stations or temporary advances in localities where security services are not installed. Raising awareness among the police on human rights and rule of law compliant policing in practice. In addition to these steps, community policing forums are useful means to cre- ate environments that enable the acceptance of ex-combatants, persons formerly as- sociated with armed forces and groups, and discredited local police personnel back into the community. In both mission and non-mission contexts, UN police person- nel can support the development of such local forums and sensitize all concerned parties to the need for reconciliation and trust. Such initiatives offer the opportuni- ty for community members to regularly share matters of concern and encourage mutual understanding. They also provide an opportunity for community members and civil society representatives to regularly evaluate the actions of the police. When fulfilling an executive mandate, UN police personnel shall develop and car- ry out all appropriate confidence-building measures. When fulfilling a non-executive mandate, UN police personnel shall assist and advise the State police service in their confidence-building initiatives. Where appropriate, UN police personnel can conduct community policing activities and gradually include the State service. This approach can help to ensure that community trust in the State police service is increased over time. This will enable the State police service to take over when the mission withdraws.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "16772f2f-c387-4df3-b6c3-01ffcfd9a3fe", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 16, + "Paragraph": "DDR processes and policing \u2013 specific tasks As outlined in IDDRS 2.10 on The UN Approach to DDR, integrated DDR processes are made up of various combinations of DDR programmes, DDR-related tools and reinte- gration support. In addition to the general tasks outlined above, UN police personnel may also perform more specific tasks that are linked to the particular DDR process in place. These tasks may be implemented in both mission and non-mission settings, con- tingent on mandate and/or deployment strength, and are outlined below:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8bbd6a90-3998-464d-9964-e9fec651e5fe", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 17, + "Paragraph": "DDR programmes When disarmament and demobilization is planned as part of a DDR programme, UN police personnel can provide advice and training to State police personnel to ensure that they develop procedures and processes to deal with the shorter-term aspects of disarmament and demobilization. These shorter-term aspects may include, but are not limited to, the travel and assembly of combatants, persons associated with armed forces and groups and dependants. In disarmament and demobilization sites (including encampments or canton- ments), the gathering of large numbers of ex-combatants and persons formerly asso- ciated with armed forces and groups may create security risks. The mere presence of UN police personnel at disarmament and demobilization sites can help to reassure local communities. For example, regular FPU patrols in cantonment sites are a strong confidence-building initiative, providing a highly visible presence to deter crime and criminal activities. This presence also eases the burden on the military component of the mission, which can then concentrate on other threats to security and wider human- itarian support. Importantly, FPU engagement shall always be limited to the regular maintenance of law and order and shall not cross into high-risk matters of weapons security and military security. With that said, the outreach and mediation capabili- ties of UN police personnel may sometimes be deployed in such situations in order to defuse tensions. In a mission context with a peacekeeping operation, the provision of security around disarmament and demobilization sites will typically be undertaken by the mil- itary component (see IDDRS 4.40 on Military Roles and Responsibilities). State police shall proactively act to address criminal activities inside and in the immediate vicinity of disarmament and demobilization sites. However, if the State police service delays or appears reluctant to take action, UN police personnel may intervene in order to ensure that the DDR process is not adversely affected. The immediate deployment of an FPU, to operationally engage in crowd control and public order challenges, can serve to con- tain the situation with minimum use of force. In contrast, direct military engagement in these situations may lead to escalation and consequently to greater numbers of casu- alties and wider damage. If public order disturbances are foreseen, it may be necessary to plan in advance for the engagement of FPU contingents and place a request for a specific, temporary deployment, particularly if the FPU is not conveniently located in the area of the disarmament and/or demobilization site. If the situation does escalate to involve violence and the use of firearms, military units shall be alerted in order to be ready to support the FPU. In mission settings where an FPU is deployed, the presence of UN police personnel should be requested, as often as possible, when combatants assemble for disarmament and demobilization as part of a DDR programme. Duplicate records of the weapons and ammunition handed over should, wherever possible, be shared with UN police personnel for the purposes of (i) preservation of the records and (ii) weapons tracing. UN police personnel can also be requested to provide dynamic surveillance of weapons and ammunition storage sites, together with a perimeter to secure destruc- tion operations. Furthermore, when weapons and ammunition are temporarily stored, as a form of confidence-building, UN police personnel can oversee the management of the double-key system or be entrusted with custody of one of the keys (see IDDRS 4.10 on Disarmament).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "468aac42-9e35-481d-b223-ebf7394646cd", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 18, + "Paragraph": "Community violence reduction The role of CVR programmes within DDR processes is explained in IDDRS 2.30 on Community Violence Reduction. CVR programmes can contribute to the ability of UN and State police personnel to improve local security conditions, especially outside capital cities, by exploring synergies between CVR and community-oriented policing. These possible synergies include: The involvement of UN and/or local State police representatives in the project advisory/review committee or local selection committees. In particular, UN police personnel may be able to provide advice on sources of community violence that need to be addressed. The development of CVR projects that reinforce State policing capacities. Quick Impact Projects (QIPs) implemented by UN police personnel, such as the re- habilitation of local police infrastructure or the training of female police personnel, could also, where appropriate, become part of a CVR programme. If the eligibility criteria for a CVR programme require the handover of weapons and/or ammunition, UN police personnel can provide support in a variety of ways including the preliminary assessment of weapons collected, the choice of tempo- rary storage facilities for weapons and ammunition, the registration of weapons and ammunition, and the collection of photographic records. UN police personnel can also provide support to CVR programmes by diffusing key messages related to the programme. When relevant to the project at hand, UN police personnel can also provide lectures on civic education, multicultural toler- ance, gender equality and respect for the rule of law.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "88cdab95-8f9e-45c7-931d-4aadf569d64d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 18, + "Paragraph": "Transitional weapons and ammunition management The role of transitional WAM in DDR processes is explained in IDDRS 4.11 on Transi- tional WAM. UN police personnel can contribute to transitional WAM activities in a variety of ways, including by supporting and advising State police on the control of civilian-held weapons, and encouraging registration and handover procedures with the aim of establishing weapons-free zones and enhancing security. These measures can help to limit the recirculation of weapons diverted or illicitly retained by former combatants. Community-based policing can play an important role in strengthening weap- ons control initiatives. If community members have a certain degree of trust in police and security institutions, they may feel more comfortable engaging in activities related to transitional WAM. Similarly, if there is a good working relationship between the police and the community, the police will more easily obtain information about weapons caches. In addition, UN police personnel may also provide support to the development of longer-term laws and procedures to manage the legitimate possession of weapons. UN police personnel can then contribute to the verification, registration and tracing of the weapons held by citizens, offering advice on the security, handling and custody of these weapons, as well as encouraging civilians to hand these weapons over to the au- thorities as a means of building confidence in the State police and security institutions.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "15b92484-c31b-4363-aab1-75ea76681a51", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 19, + "Paragraph": "DDR support to mediation When DDR practitioners provide support to the mediation of local-level peace agree- ments, UN police personnel can orient these practitioners, and broader negotiating teams, to the most suitable entry channels in the community. To build confidence, UN police personnel can then assist and facilitate the introduction of negotiating teams and provide them with security that allows freedom of movement. UN police personnel can also be deployed to ensure that delegates on both sides of the negotiations are not subject to hostile actions during the discussions or when en route to the chosen venue for the negotiations. UN police personnel can also be used to obtain the commitment of community and religious leaders, representatives of women\u2019s and youth groups, and other relevant stakeholders in order to support the settlement of local disputes and encourage acceptance of a DDR process. When requested, UN police personnel can also give advice concerning the security portion of the agreement being discussed.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b434504e-d121-4375-8ba0-f5df6cd0a948", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 19, + "Paragraph": "DDR support to transitional security arrangements When DDR practitioners support the creation of TSAs, UN police personnel can contribute to analyses of the overall security situation in the area of interest, the activities undertaken by criminal and armed groups (including any trends in these activities), and what type of TSA may be most useful and where (see IDDRS 2.20 on The Politics of DDR). Where re- quired, UN police personnel can engage male and female community leaders to ensure that their expectations and experience are taken into account when tailoring particular TSAs. In addition, UN police personnel can oversee the general security and protection tasks under- taken by the armed forces and groups that are participating in TSAs to ensure that these activities are not being used as a cover for illicit activities or harassment of the population.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d085a048-10a1-4a30-bf26-cf8a08de3924", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 19, + "Paragraph": "Police support during reintegration into society Police can also play an important security role during reintegration. State police services should be supported to discharge community-policing functions during re- integration in accordance with international human rights law and principles. State police can play an important dissuasive role where ex-combatants may be at risk of using violent means to gain access to illegal income and livelihoods. They can also protect ex-combatants and persons formerly associated with armed forces and groups who are reintegrating into society. Law and order disturbances may arise if the reintegration of these groups is inadequately supported, if grievances related to the conflict remain unresolved and in situations where ex-combatants, persons formerly associated with armed forces and groups and their families are not necessarily welcomed by communities (see IDDRS 4.30 on Reintegration). Contingent on mandate and/or deployment strength, UN police personnel can also assist in the monitoring and countering of efforts by armed groups to re-recruit demobilized combatants and/or formerly associated persons. In particular, UN police personnel can disseminate messages discouraging the resort to arms among demobilized combatants and their families and protect these individuals from stigmatization and reprisals by community members or other armed groups yet to adhere to the DDR process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e7bf9663-38c3-4a1c-bc26-88dc8d92a768", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 20, + "Paragraph": "Police reform and restructuring The establishment of an effective and professional police service is essential to the transformation of militarized societies into civilian ones. Often, the police service that existed previously will have been reduced in both its size and powers during the period of armed conflict, and many of its functions will have been taken over by a military apparatus with far greater resources. This serves to militarize the police, which is then comprised of personnel who may not have a specific police background and may op- erate without professional police capacities and attitudes. When States use the military in police functions, the distinction between maintaining internal order and external security becomes blurred, particularly because policing and public order control tend to be conducted with military techniques. At the same time, the general population will increasingly come to identify military forces as the primary security and order responder/provider. As countries transition from war to peace, the State police service should be re- formed and restructured and its role as the security service responsible for main- taining internal security and public or- der should be (re)established. The period during which the police assume overall responsibility for internal security can be challenging. There may, for example, be a lack of accountability for acts committed during the prior conflict and rivalry be- tween the different institutions involved. In this context, the withdrawal of interna- tional peacekeeping forces \u2013 including the UN police component \u2013 should be carefully planned, and the speed and phasing of the withdrawal should be based on the ability of State security institutions to assume responsibility for the maintenance of security and public order. During the period of transition from war to peace, DDR processes are sometimes linked to the reform of the State police services, particularly through the integration of former members of armed groups into the police and other law enforcement institu- tions. For further information on this integration process, see IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.json b/src/Static/data/json/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.json new file mode 100644 index 0000000..0007aa7 --- /dev/null +++ b/src/Static/data/json/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.json @@ -0,0 +1,401 @@ +[ + { + "ID": "4821189e-3b48-4be6-934e-d6ef90f1ed86", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": null, + "Paragraph": "Summary Public information and strategic communication (PI/SC) are key support activities that are instrumental in the overall success of DDR processes. Public information is used to inform DDR participants, beneficiaries and other stakeholders of the process, while strategic communication influences attitudes towards DDR. If successful, PI/SC strat- egies will secure buy-in to the DDR process by outlining what DDR consists of and encouraging individuals to take part, as well as contribute to changing attitudes and behaviour. A DDR process should always be accompanied by a clearly articulated PI/SC strategy. As DDR does not occur in a vacuum, the design, dissemination and planning of PI/SC interventions should be an iterative process that occurs at all stages of the DDR process. PI/SC interventions should be continuously updated to be relevant to political and op- erational realities, including public sentiment about DDR and the wider international effort to which DDR contributes. It is crucial that DDR is framed and communicated carefully, taking into account the varying informational requirements of different stake- holders and the various grievances, perceptions, culture, biases and political perspec- tives of DDR participants, beneficiaries and communities. An effective PI/SC strategy should have clear overall objectives based on a careful assessment of the context in which DDR will take place. There are four principal objec- tives of PI/SC: (i) to inform by providing accurate information about the DDR process; to mitigate the potential negative impact of inaccurate and deceptive information that may hamper the success of DDR and wider peace efforts; (iii) to sensitize mem- bers of armed forces and groups to the DDR process; and (iv) to transform attitudes in communities in such a way that is conducive to DDR. PI/SC should make an important contribution towards creating a climate of peace and security, as well as promote gender- equitable norms and non-violent forms of masculinities. DDR practitioners should sup- port their national counterparts (national Government and local authorities) to define these objectives so that activities related to PI/SC can be conducted while planning for the wider DDR process is ongoing. PI/SC as part of a DDR process should (i) be based on a sound analysis of the context, conflict and motivations of the many different groups at which these activities are directed; (ii) make use of the best and most trusted local methods of communication; and (iii) ensure that PI/SC materials and messages are pre-tested on a local audience and subsequently closely monitored and evaluated.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "009b38a8-4012-4de3-81fb-a858d96f9b48", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module aims to present the range of objectives, target groups and means of com- munication that DDR practitioners may choose from to formulate a PI/SC strategy in support of DDR, both at the field and headquarters levels. The module includes guidance, applicable to both mission and non-mission settings, on the planning, design, implementation and monitoring of a PI/SC strategy.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "21cf2e7f-79ab-44dc-8f1f-e06edd666d9f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Public information seeks to provide relevant and factually accurate information to a specific audience. Strategic communication involves persuading an identified audience to adopt a de- sired behaviour. Disinformation: The deliberate dissemination of false information. It is an act of de- ception to convince an audience of something. Disinformation is intended to mislead. Misinformation: Giving erroneous or incorrect information. It is false or inaccurate information that is spread unintentionally.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "cd31a3e4-b923-48c5-bf85-5e5f3f16cf44", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 4, + "Paragraph": "Introduction DDR is a process that requires the involvement of multiple actors, including the Government or legitimate authority and other signatories to a peace agreement (if one is in place); combatants and persons associated with armed forces and groups, their dependants, receiving communities and youth at risk of recruitment; and other regional, national and international stakeholders. Attitudes towards the DDR process may vary within and between these groups. Potential spoilers, such as those left out of the peace agreement or former commanders, may wish to sabotage DDR, while others will be adamant that it takes place. These dif- fering attitudes will be at least partly determined by individuals\u2019 levels of knowledge of the DDR and broader peace process, their personal expectations and their motiva- tions. In order to bring the many different stakeholders in a conflict or post-conflict country (and region) together in support of DDR, it is essential to ensure that they are aware of how DDR is meant to take place and that they do not have false expectations about what it can mean for them. Changing and managing attitudes and behaviour \u2013 whether in support of or in opposition to DDR \u2013 through information dissemina- tion and strategic communication are therefore essential parts of the planning, design and implementation of a DDR process. PI/SC plays an important catalytic function in the DDR process, and the conceptualization of and preparation for the PI/SC strategy should start in a timely manner, in parallel with planning for the DDR process. The basic rule for an effective PI/SC strategy is to have clear overall objectives. DDR practitioners should, in close collaboration with PI/SC experts, support their national and local counterparts to define these objectives. These national counter- parts may include, but are not limited to, Government; civil society organizations; media partners; and other entities with experience in community sensitization, community engagement, public relations and media relations. It is important to note, however, that PI activities cannot compensate for a faulty DDR process, or on their own convince people that it is safe to enter the programme. If combatants are not willing to disarm, for whatever reason, PI alone will not persuade them to do so. DDR practitioners should keep in mind that PI/SC should be aimed at a much wider audience than those people who are directly involved in or affected by the DDR process within a particular context. PI/SC strategies can also play an essential role in building regional and international political support for DDR efforts and can help to mobilize resources for parts of the DDR process that are funded through voluntary donor contributions and are crucial for the success of reintegration programmes. PI/ SC staff in both mission and non-mission settings should therefore be actively involved in the preparation, design and planning of any events in-country or elsewhere that can be used to highlight the objectives of the DDR process and raise awareness of DDR among relevant regional and international stakeholders. Additionally, PI can play an important role in encouraging a holistic view of the challenges of rebuilding a nation and can serve as a major tool in advocacy for gender equality and inclusiveness, which form part of DDR (also see IDDRS 2.10 on the UN Approach to DDR and IDDRS 5.10 on Women, Gender and DDR). The role of national authorities is also critical in public information. DDR must be nationally-led in order to build the foundation of long-term peace. Therefore, DDR practitioners should ensure that relevant messages are approved and transmitted by national authorities. Communication is rarely neutral. This means that DDR practitioners should con- sider how messages will be received as well as how they are to be delivered. Culture, custom, gender, and other contextual drivers shall form part of the PI/SC strategy de- sign. Information, disinformation and misinformation are all hallmarks of the conflict settings in which DDR takes place. In times of crisis, information becomes a critical need for those affected, and individuals and communities can become vulnerable to misinformation and disinformation. Therefore, one objective of a DDR PI/SC strategy should be to provide information that can address this uncertainty and the fear, mis- trust and possible violence that can arise from a lack of reliable information. Merely providing information to ex-combatants, persons formerly associated with armed forces and groups, dependants, victims, youth at risk of recruitment and conflict-affected communities will not in itself transform behaviour. It is therefore im- portant to make a distinction between public in- formation and strategic communication. Public information is reliable, accurate, objective and sincere. For example, if members of armed forces and groups are not provided with such infor- mation but, instead, with confusing, inaccurate and misleading information (or promises that cannot be fulfilled), then this will undermine their trust, willingness and ability to participate in DDR. Likewise, the information communicated to communities and other stakeholders about the DDR process must be factually correct. This information shall not, in any case, stigmatize or stereotype former members of armed forces and groups. Here it is particularly important to acknowledge that: (i) no ex-combatant or person formerly associated with an armed force or group should be assumed to have a natural inclination towards violence; (ii) studies have shown that most ex-combatants do not (want to) resort to violence once they have returned to their communities; but (iii) they have to live with preconceptions, distrust and fear of the local communities towards them, which further marginalizes them and makes their return to civilian life more difficult; and (iv) female ex-combatants and women asso- ciated with armed forces and groups (WAAFAG) and their children are often stigmatized, and may be survivors of conflict-related sexual violence and other grave rights violations. If public information relates to activities surrounding DDR, strategic communi- cation, on the other hand, needs to be understood as activities that are undertaken in support of DDR objectives. Strategic communication explicitly involves persuading an identified audience to adopt a desired behaviour. In other words, whereas public infor- mation seeks to provide relevant and factually accurate information to a specific audi- ence, strategic communication involves complex messaging that may evolve along with the DDR process and the broader strategic objectives of the national authorities or the UN. It is therefore important to systematically assess the impact of the communicated messages. In many cases, armed forces and groups themselves are engaged in simi- lar activities based on their own objectives, perceptions and goals. Therefore, strategic communication is a means to provide alternative narratives in response to rumours and to debunk false information that may be circulating. In addition, strategic communication has the vital purpose of helping communities understand how the DDR process will involve them, for example, in programmes of community violence reduction (CVR) or in the reintegration of ex-combatants and persons formerly associated with armed forc- es and groups. Strategic communication can directly contribute to the promotion of both peacebuilding and social cohesion, increasing the prospects of peaceful co- existence between community members and returning former members of armed trategic communication is a means to provide alter- native narratives in response to rumours and to de- bunk false information that may be circulating. forces and groups. It can also provide alternative narratives about female returnees, mitigating stigma for women as well as the impact of the conflict on mental health for both DDR participants and beneficiaries in the community at large.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "8d69dfd2-9a0c-47cf-9fea-6dc040a9363c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 7, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to PI/SC strategies for DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8becb402-fea0-4ab5-9c6d-b46019f99e4d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 7, + "Paragraph": "People-centred DDR practitioners shall manage expectations concerning the DDR process by being clear, realistic, honest, communicative and consistent about what DDR can and cannot deliver. The PI/SC strategy shall focus on the national (and, where applicable, regional) stake- holders, participants and beneficiaries of the DDR process, i.e., ex-combatants, persons associated with armed forces and groups, dependants, receiving communities, parties to the peace agreement, civil society, local and national authorities, and the media.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f8f4105a-d7cf-48df-9e2d-beed9774f864", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 7, + "Paragraph": "Unconditional release and protection of children Children associated with armed forces and groups and their caregivers shall be provided with child-friendly, age-appropriate and gender-sensitive information about DDR. Infor- mation should be provided to children on access to justice and reparation, and on their rights to be free from discrimination and to be safe and protected from violence and abuse. Children should also be informed of the services and support available to them, how to access this support and the procedures to access safe complaint mechanisms and judicial recourse. PI/SC strategies developed as part of a DDR process shall include provisions for disseminating messages on the rights of children and the consequences that armed forces and groups will face if engaging in child recruitment, including messages that dismantle stigma and ostracization by the child\u2019s family or home community (noting that stigma can be imposed disproportionately on girls). Communities, local authorities and police shall also be provided with information and training on how to assist children who have exited or been released from armed forces and groups and which protocols apply to en- sure their protection and safe handover to child protection services. The personal infor- mation of children shall never be shared for the purposes of PI/SC, and all information gathered from children shall be treated according to the requirements of confidentiality.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "09730206-ff1a-464d-8852-7176cf592204", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 8, + "Paragraph": "Gender-responsive and inclusive PI/SC messages shall take into consideration the needs and interests of women and girls, who play a central role in peacebuilding at the community level. Female ex-com- batants and other WAAFAG must be informed about their eligibility for DDR and any special programmes for them, which may require specific strategies and approaches. PI/SC messages shall also encourage the participation of women and girls in the DDR process. DDR practitioners shall strive to ensure that key messages, communications material and information campaigns are gender responsive, taking into account the need for tailored messaging that addresses the specific needs of women, men, boys and girls. They shall also leverage opportunities to support gender-transformative norms and women\u2019s empowerment. Specific attention should be paid to developing gender-responsive information strategies that can play an important role in the rein- tegration and return of women by mitigating their stigmatization and contributing to community sensitization.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "2d4d95d4-1d3e-4688-aad5-eee3cd4e0f3f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 8, + "Paragraph": "Conflict sensitive DDR practitioners shall base any and all strategic communications interventions \u2013 for example, to combat misinformation and disinformation \u2013 on clear conflict analysis. Strategic communications have a direct impact on conflict dynamics and the percep- tions of armed forces and groups, and shall therefore be carefully considered. \u2018Do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. No false promises shall be made through the PI/SC strategy.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "0184be41-3c5f-4ef5-b7bd-918208715112", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 8, + "Paragraph": "Context specific To increase the effectiveness of a PI/SC strategy, DDR practitioners shall consider cultural factors and levels of trust in different types of media. PI/SC strategies shall be responsive to new political, social and/or technological developments, as well as changes within the DDR process as it evolves. DDR practitioners shall also take into account the accessibility of the information provided. This includes considerations related to both the selection of media and choice of language. All communications methods shall be designed with an understanding of potential context-specific barriers, including, for example, the remoteness of combatants and persons associated with armed forces and groups. Messages should be tested before dissemination to ensure that they meet the above-mentioned criteria.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc3291e4-b546-44d4-a27d-b103dbaa3bd6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 8, + "Paragraph": "Nationally and locally owned DDR practitioners shall ensure that PI/SC strategies are nationally and locally owned. National authorities should lead the implementation of PI/SC strategies. National own- ership ensures that DDR programmes, DDR-related tools and reintegration support are informed by an understanding of the local context, the dynamics of the conflict, and the dynamics between community members and former members of armed forces and groups. National ownership also ensures that PI/SC strategies are culturally and con- textually relevant, especially with regard to the PI/SC messages and communication tools used. In both mission and non-mission contexts, UN practitioners should coordi- nate closely with, and provide support to, national actors as part of the larger national PI/SC strategy. When combined with UN support (e.g. technical, logistical), national ownership encourages national authorities to assume leadership in the overall transi- tion process. Additionally, PI/SC capacities must be kept close to central decision-mak- ing processes, in order to be responsive to the prerogatives of the DDR process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6fb94c70-c0fe-4dd0-a011-f2962a139bd2", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 9, + "Paragraph": "Objectives of PI/SC in support of DDR A PI/SC strategy should outline what the DDR process in the specific context con- sists of through public information activities and contribute to changing attitudes and behaviour through strategic communication interventions. There are four overall objectives of PI/SC: To inform stakeholders about the DDR process (public information): This includes providing tailored key messages to various stakeholders, such as where to go, when to deposit weapons, who is eligible for DDR and what reinte- gration options are available. The result is that DDR participants, beneficiaries and other stakeholders are made fully aware of what the DDR process involves. This kind of messaging also serves the purpose of making communities understand how the DDR process will involve them. Most importantly, it serves to manage expectations, clearly defining what falls within and outside the scope of DDR. If the DDR process is made up of different combinations of DDR programmes, DDR-related tools or reintegration support, messages should clearly define who is eligible for what. Given that, historically, women and girls have not always received the same information as male combatants, as they may be purpose- ly hidden by male commanders or may have \u2018self-demobilized\u2019, it is essential that PI/SC strategies take into consideration the specific information channels required to reach them. It is important to note, however, that PI activities cannot compensate for a faulty DDR process, or on their own convince people that it is safe to participate. If combatants are not willing to disarm, for whatever reason, PI alone will not persuade them to do so. In such sitatutions, strategic communi- cations may be used to create the conditions for a successful DDR process. To mitigate the negative impact of misinformation and disinformation (strategic communication): It is important to understand how conflict actors such as armed groups and other stakeholders respond, react to and/or provide alter- native messages that are disseminated in support of the DDR process. In the volatile conflict and post-conflict contexts in which DDR takes place, those who profit(ed) from war or who believe their political objectives have not been met may not wish to see the DDR process succeed. They may have access to radio stations from which they can make broadcasts or may distribute pamphlets and other materials spreading \u2018hate\u2019 or messages that incite violence and undermine the UN and/or some of the (former) warring parties. These spoilers likely will have access to online platforms, such as blogs and social media, where they can easily reach and influence a large number of people. It is therefore critical that PI/SC extends beyond merely providing information to the public. A com- prehensive PI/SC strategy shall be designed to identify and address sources of misinformation and disinformation and to develop tailored strategic commu- nication interventions. Implementation should be iterative, whereby messages are deployed to provide alternative narratives for specific misinformation or disinformation that may hamper the implementation of a DDR process. To sensitize members of armed forces and groups to the DDR process (strategic communication): Strategic communication interventions can be used to sensitize potential DDR participants. That is, beyond informing stakeholders, beneficiar- ies and participants about the details of the DDR process and beyond mitigating the negative impacts of misinformation and disinformation, strategic commu- nication can be used to influence the decisions of individuals who are consider- ing leaving their armed force or group including providing the necessary infor- mation to leave safely. The transformative objective of strategic communication interventions should be context specific and based on a concrete understanding of the political aspects of the conflict, the grievances of members of armed forces and groups, and an analysis of the potential motivations of individuals to join/ leave warring parties. Strategic communication interventions may include mes- sages targeting active combatants to encourage their participation in the DDR process, for example, stories and testimonials from ex-combatants and other positive DDR impact stories. They may also include communication campaigns aimed at preventing recruitment. The potential role of the national authorities should also be assessed through analysis and where possible, national authorities should lead the strategic communication. To transform attitudes in communities so as to foster DDR (strategic communica- tion): Reintegration and/or CVR programmes are often crucial elements of DDR processes (see IDDRS 2.30 on Community Violence Reduction and IDDRS 4.30 on Reintegration). Strategic communication interventions can help to create con- ditions that facilitate peacebuilding and social cohesion and encourage the peace- ful return of former members of armed forces and groups to civilian life. Commu- nities are not homogeneous entities, and individuals within a single community may have differing attitudes towards the return of former members of armed forces and groups. For example, those who have been hit hardest by the conflict may be more likely to have negative perceptions of returning combatants. Others may simply be happy to be reunited with fam- ily members. The DDR process may also be negatively perceived as rewarding combatants. When necessary, strategic communication can be used as a means to transform the perceptions of communities and to combat stigmatization, hate speech, marginalization and discrimination against former members of armed forces and groups. Women and girls are often stigmatized in receiving communities and PI/SC can play a pivotal role in creating a more supportive environment for them. PI/SC should also be utilized to promote non-violent behaviour, including engaging men and boys as allies in promoting positive masculine norms (see IDDRS 5.10 on Women, Gender and DDR). Finally, PI/SC should also be used to destigmatize the mental health impacts of conflict and raise awareness of psychosocial support services.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc8f5d7d-32c9-44ff-9069-d32d1a6bdcab", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 11, + "Paragraph": "Planning and designing PI/SC strategies When designing a PI/SC strategy, DDR practitioners should take the following key factors into account: At what stage is the DDR process? Who are the primary and intermediary target audiences? Do these target audienc- es differ for different components of the DDR process (DDR programmes, DDR-re- lated tools, reintegration support)? Who may not be eligible to participate in the DDR process? Does eligibility dif- fer for different components of the DDR process (DDR programmes, DDR-related tools, reintegration support)? Are other, related PI/SC campaigns underway, and should these be aligned/ deconflicted with the PI/SC strategy for the DDR process? What are the roles of men, women, boys and girls, and how have each of these groups been impacted by the conflict? What are the existing gender stereotypes and identities, and how can PI/SC strategies support positive change? Is there stigma against women and girls associated with armed forces and groups? Is there stigma against mental health issues such as post-traumatic stress? What are the literacy levels of the men and women intended to receive the information? What behavioural/attitude change is the PI/SC strategy trying to bring about? How can this change be achieved (taking into account literacy rates, the presence of different media, etc.)? What are the various networks involved in the dissemination of information (e.g., interconnections among social networks of ex-combatants, household member- ship, community ties, military reporting lines, etc.)? Which network members have the greatest influence? Do women and men obtain information by different means? (If so, which channels most effectively reach women?) In what language does the information need to be delivered (also taking into account possible foreign combatants)? What other organizations are involved, and what are their PI/SC strategies? How can the PI/SC strategy be monitored? What is the prevailing information situation? (What are the information needs?) What are the sources of disinformation and misinformation? Who are the key local influencers/amplifiers? What dominant media technologies are in use locally and by which population segments/demographics? Understanding the local context and \u2018do no harm\u2019 considerations To ensure that the DDR PI/SC strategy fits local needs, DDR practitioners should understand the social, political and cultural context and identify factors that shape attitudes. It will then be possible to define behavioural objectives and design messages to bring about the required social change. Target audience and issue analysis must be adopted to provide a tailored approach to engage with different audiences based on their concerns, issues and attitudes. During the planning stage, the aim should be to collect the following minimum information to aid practitioners in understanding the local context: Conflict analysis, including an understanding of local ethnic, racial and religious divisions at the national and local levels; Gender analysis, including the role of women, men, girls and boys in society, as well as the gendered power structures in society and in armed forces and groups; Media mapping, including the geographic reach, political slant and cost of different media; Social mapping to identify key influencers and communicators in the society and their constituencies (e.g., academics and intelligentsia, politicians, youth leaders, women leaders, religious leaders, village leaders, commanders, celebrities, etc.); Traditional methods of communication; Cultural perceptions of the disabled, the chronically ill, rape survivors, extra-marital childbirth, mental health issues including post-traumatic stress, etc.; Literacy rates; Prevalence of intimate partner violence and sexual and gender-based violence; and Cultural moments and/or religious holidays that may be used to amplify messages of peace and the benefits of DDR. Partners in the process also need to be identified. Particular emphasis \u2013 especially in the case of information directed at DDR participants, beneficiaries and communities \u2013 should be placed on selecting local theatre troops and animators who can explain concepts such as DDR, reconciliation and acceptance using figurative language. Others who command the respect of communities, such as traditional village leaders, should also be brought into PI/SC efforts and may be asked to distribute DDR messages. DDR practitioners should ensure that partners are able and willing to speak to all DDR par- ticipants and beneficiaries and also to all community members, including women and children. Two additional context determinants may fundamentally alter the design and delivery of the PI/SC intervention: The attitudes of community members towards ex-combatants, women and men formerly associated with armed forces and groups, and youth at risk; and The presence of hate speech and/or xenophobic discourse. In this regard, DDR practitioners shall have a full understanding of how the open communication and publicity surrounding a DDR process may negatively impact the safety and security of participants, as well as DDR practitioners themselves. To this end, DDR practitioners should continuously assess and determine measures that need to be taken to adjust information related to the DDR process. These measures may include: Removing and/or amending specific designation of sensitive information related to the DDR process, including but not limited to the location of reception centres, the location of disarmament and demobilization sites, details related to the ben- efits provided to former members of armed forces and groups, and so forth; and Ensuring the protection of the privacy, and rights thereof, of former members of armed forces and groups related to their identity, ensuring at all times that per- mission is obtained should any identifiable details be used in communication ma- terial (such as photo stories, testimonials or ex-combatant profiles).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "bfde0539-e191-478e-9db2-3e064ce2b7fe", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 13, + "Paragraph": "Communicating about former members of armed forces and groups It is very important to pay attention to the language used in reference to DDR. This includes messaging about the process of disarmament and the \u2018surrender\u2019 of weapons, as well as the terms and expressions used to speak about and to ex-combatants and persons formerly associated with armed forces and groups. It is necessary to acknowl- edge that they are not naturally violent; that they might have left a lot behind in terms of social standing, respect and income in their armed group; and that therefore their return to civilian life may come with great economic and social sacrifices. The self- perception of former members of armed forces and groups (e.g., as revolutionaries or liberty fighters) also needs be understood, taken into consideration and, in some cas- es, positively reinforced to ensure their buy-in to the DDR process. Taking these sensitives into account may sometimes in- clude the need to reprofile the language used by Government and local or even in- ternational media. It is of vital importance, especially when it comes to the prospect of reintegration, that the discourse used to talk about ex-combatants and persons formerly associated with armed forces and groups is not pejorative and does not reinforce existing stereotypes or community fears. Communicating about former members of armed forces and groups is also im- portant in contexts where transitional justice measures are underway. The strategic communication and public information elements of supporting transitional justice as part of a DDR process (including, truth telling, criminal prosecutions and other accountability measures, reparations, and guarantees of non-recurrence) should be carefully planned (see IDDRS 6.20 on DDR and Transitional Justice). PI/SC campaigns should be designed to complement transitional justice interventions, and to manage the expectations of DDR participants, beneficiaries and communities. When transitional justice measures are visibly and publically integrated into DDR processes, this may help to ensure that grievances are addressed and demonstrate that these grievances were heard and taken into account. The visibility of these measures, in turn, contribute to improving the the prospects of social cohesion and receptibility between ex-combat- ants and communities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "39f41bb0-cc8b-4005-8a1c-7ac6f4200150", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 14, + "Paragraph": "The preparation of PI/SC material While a PI/SC strategy is being prepared, other public information resources can be activated. In mission settings, ready-made public information material on peacekeeping and the UN\u2019s role can be distributed. However, DDR practitioners should be aware that most DDR-specific material will be created for the particular country where DDR will take place. Production of PI/SC material is a lengthy process. The time needed to design and produce printed sensitization tools, develop online content, and establishing dissemination channels (such as radio stations) should be taken into account when planning the schedule for PI/SC activities. Certain PI/SC materials may take less time to produce, such as digital communication; basic pamphlets; DDR radio programmes for broadcasting on non-UN radios; interviews on local and international media; and debates, seminars and public theatre productions. Pre-testing of PI/SC materials must also be included in operational schedules. In addition to these considerations, the strategy should have a coherent timeline, bearing in mind that while some PI/SC activities will continue throughout the DDR process, others will take place at specific times or during specific phases. For instance, particularly during reintegration, SC activities may be oriented towards educating communities to accept DDR participants and to have reasonable expectations of what reintegration will bring, as well as ensuring that survivors of sexual violence and/or those living with HIV/AIDS are not stigmatized and that connections are made with ongoing security sector reform, including arms control, police and judicial reform.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "782377ff-255e-4971-ad9f-eed73b73acfa", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 14, + "Paragraph": "Hate speech and developing counter-narratives Measures must be developed that, in addition to addressing misinformation and dis- information, challenge hate speech and attempt to mitigate its potential impacts on the DDR process. If left unchecked, hate speech and incitement to hatred in the media can lead to atrocities and genocide. In line with the United Nations Strategy and Plan of Action on Hate Speech, there must be intentional efforts to address the root causes and drivers of hate speech and to enable effective responses to the impact of hate speech. Hate speech is any kind of communication in speech, writing, or behaviour that attacks or uses pejorative or discriminatory language with reference to a person or a group on the basis of who they are, in other words, based on their religion, ethnicity, nationality, race, colour, descent, gender or other identifying factor. Hate speech aims to exclude, dehumanize and often legitimize the extinction of \u201cthe Other\u201d. It is supported by stereotypes, enemy images, attributions of blame for national misery and xenophobic discourse, all of which aim to strip the imagined Other of all humanity. This kind of communication often successfully incites violence. Preventing and challenging hate speech is vital to the DDR process and sustainable peace. Depending on the nature of the conflict, former members of armed forces and groups and their dependants may be the targets of hate speech. In some contexts, those who leave armed groups may be perceived, by some segments of the population, as traitors to the cause. They or their families may be targeted by hate speech, rumours, and other means of incitement to violence against them. As part of the planning for a DDR process in contexts where hate speech is occurring, DDR practitioners shall make all necessary efforts to include counter-narratives in the PI/SC strategy. These measures may include the following: Counter hate speech by using accurate and reliable information. Include peaceful counter-narratives in education and communication skills train- ing related to the DDR process (e.g., as part of training provided during reintegra- tion support). Incorporate media and information literacy skills to recognize and critically eval- uate hate speech when engaging with communities. Include specific language on hate speech in DDR policy documents and/or related legislation. Include narratives, stories, and other material that rehumanize ex-combatants and persons formerly associated with armed forces and groups in strategic communi- cation interventions in support of DDR processes. Gender-sensitive PI/SC in support of DDR PI officers and gender officers shall work closely together in the formulation of PI/SC strategies for DDR processes, drawing on existing gender analysis, and conducting ad- ditional gender assessments as required. Doing so allows the PI/SC strategy to support gender-equitable norms, to promote women\u2018s empowerment and non-violent versions of masculinities, and to combat stigma and socialization to violence (see IDDRS 5.10 on Women, Gender and DDR). One of the most critical PI/SC objectives in DDR is reaching WAAFAG and in- forming them of their eligibility. Ensuring that women are well represented in all PI materials helps prevent their exclusion from DDR processes. Engaging women early in the development and testing of PI messaging is essential to ensuring that communica- tion materials and approaches respond to the specific needs and capacities of women and girls. Recognizing women\u2019s roles in peacebuilding and social cohesion, and utiliz- ing opportunities to actively engage them in disseminating PI messages, is essential. Sensitization activities can provide an important entry point to address the gender dimensions of violence early in the DDR process. PI activities should capitalize on lessons already learned about how to implement gender-responsive PI campaigns geared towards men. For example, showing male leaders and male youth as strong and non-violent, and men as engaged fathers and partners with females in the community, can help to support both men and boys as well as women and girls. Through these approaches, PI/SC can support broader gender equality work in the country, ensuring that campaign messages, visuals, and awareness raising activities incorporate gender transformative messages including supporting women\u2019s empow- erment, men\u2019s role as fathers, and non-violent, demilitarized forms of masculinities. PI/SC interventions and tools should include messaging on: Women\u2019s and men\u2019s roles as leaders working in partnership; Demilitarization of masculinities; Positive gender norms, including men\u2019s roles in communities as fathers; Destigmatization of psychosocial support services and individuals dealing with post-traumatic stress; Promotion of non-violent behaviour; Destigmatization of female combatants, females associated with armed forces and groups and their children, and male combatants; Men\u2019s and women\u2019s mutual responsibility and awareness around reproductive health and HIV/AIDS; Women\u2019s empowerment; and Destigmatization of victims/survivors of sexual violence and their children.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "c51a73b5-ce0e-4763-bd4e-97de093c49ab", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 16, + "Paragraph": "Anti-stigma and mental health PI/SC in support of DDR Given the psychological impact of conflict on ex-combatants and persons associated with armed forces and groups, as well as survivors and conflict-affected communities, it is essential for PI/SC to support anti-stigma campaigns and programmes, and to dis- seminate accurate and reliable information on ways to access support (see IDDRS 5.70 on Health and DDR, IDDRS 5.80 on Disability-Inclusive DDR and IASC Guidelines on Mental Health and Psychosocial Support). PI/SC should draw on assessments and mapping of services and be developed in collaboration with health authorities, ensuring continuous access to information on the availability of assistance as well as clear referral pathways (clincs, servies, hotlines, etc). Anti-stigma campaigns should include messaging on normalizing the mental health impacts of conflict on both men and women and fostering support for individuals and communities. In conflict settings, one person in five is living with some form of mental disorder, from mild depression or anxiety to psychosis. In this regard, PI/SC should avoid targeting or singling out DDR participants as the impact of conflict extends further than those who actively participated in combat.z Interventions may include radio pro- grammes, public service announcements, community theatre or seminars, print media, and other outlets as outlined in section 8.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6149bc4b-5304-407f-b297-dade58d45ebc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 16, + "Paragraph": "Stakeholders or target audiences The planning and implementation of the PI/SC strategy shall acknowledge the diversity of stakeholders involved in the DDR process and their varied information needs. The PI/SC strategy shall also be based on integrated conflict and security analyses (see IDDRS 3.11 on Integrated Assessments). As each DDR process may contain different combinations of DDR programmes, DDR-related tools and reintegration support, the type of DDR process under way will influence the stakeholders involved and the primary and secondary audiences, and will shape the nature and content of PI/SC activities. The intended audience(s) will also vary according to the phase of the DDR process and, crucially, the changes in people\u2019s attitudes that the PI/SC strategy would like to bring about. What follows is therefore a non-exhaustive list of the types of target audiences most commonly found in a PI/SC strategy for DDR:", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "20a16d5e-5ce6-4ac6-9c81-076b2f88d3e6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": null, + "Paragraph": "Primary audience (participants and beneficiaries) The following stakeholders are often the primary audience of a DDR process: The political leadership: This may include the signatories of ceasefires and peace accords, when they are in place. Political leaderships may or may not represent the military branches of their organizations. The military leadership of armed forces and groups: These leaders may have motivations and interests that differ from the political leaderships of these entities. Likewise, within these military leaderships, mid-level commanders may hold their own views concerning the DDR process. DDR practitioners should recognize that the rank-and-file members of armed forces and groups often receive informa- tion about DDR from their immediate commanders, who may have incentives to provide disinformation about DDR if they are reluctant for their subordinates to leave military life. Rank-and-file of armed forces and groups: It is important to make the distinction between military leaderships, military commanders, mid-level commanders and their rank-and-file, because their motivations and interests may differ. Testimonials from the successfully demobilized and reintegrated rank-and-file have proven to be effective in informing their peers. Ex-combatants and persons formerly asso- ciated with armed forces and groups can play an important role in amplifying messages aimed at demonstrating life after war. Women associated with armed groups and forces in non-combat roles: It is important to cater to the information needs of WAAFAG, especially those who have been abducted. Communities, particularly women\u2019s groups, should also be informed about how to further assist women who manage to leave an armed force or group of their own accord. Children associated with armed forces and groups: Individuals in this group need child-friendly, age- and gender-sensitive information to help reassure and safely remove those who are illegally held by an armed force or group. Commu- nities, local authorities and police should also be informed about how to assist children who have exited or been released from armed groups, as well as about protocols to ensure the protection of children and their prompt handover to child protection services. Ex-combatants and persons formerly associated with armed forces and groups with disabilities: Information and sensitization to opportunities to access and participate in DDR should reach this group. Families and communities should also be informed on how to support the reintegration of persons with disabilities. Youth at risk of recruitment: In countries affected by conflict, youth are both a force for positive change and, at the same time, a group that may be vulnerable to being drawn into renewed violence. When PI/SC strategies focus only on children and mature adults, the specific needs and experiences of youth are missed. Local authorities and receiving communities: Enabling the smooth reintegra- tion of DDR participants into their communities is vital to the success of DDR. Communities and their leaders also have an important role to play in other local-level DDR activities, such as CVR programmes and transitional WAM as well as community-based reintegration support.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8ae40bec-5440-44bf-8650-bdbe20449766", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": null, + "Paragraph": "Secondary audience (partners) In many cases, partnerships with other stakeholders are required to support the de- sign, planning and implementation of the PI/SC strategy. The following partners are often the secondary audience of a DDR process; however, depending on the context, they may also be the primary audience (e.g., the international community in a region- alized armed conflict): Civil society: This includes women\u2019s groups, youth groups, local associations and non-governmental organizations that play a role in the DDR process, including those working as implementing partners of national and international govern- mental institutions. Religious leaders and institutions: The voices of moderate religious leaders can be amplified and coordinated with educators to foster coordination and promote messages of peace and tolerance. Legislative and policy-setting authorities: The legal framework in the country regulating the media can be reviewed and laws put in place to prevent the distri- bution of messages inciting hate or spreading misinformation. If this approach is used, care must be taken to ensure that civil and political rights are not affected. International and local media: International and local media are often the main source of information on progress in the peace process. Keeping both media segments supplied with accurate and up-to-date information on the planning and implementation of DDR is important in order to increase support for the process and avoid bad press. The media are also key whistleblowers that can identify, expose and denounce potential spoilers of the peace process. Private sector: Companies in the private sector can also be important amplifiers and partners, for example, by generating specific recruitment advertisements in support of reintegration opportunities. Local telecommunication companies and in- ternet service providers can also offer avenues to further disseminate key messages. Opinion leaders/influencers: In many contexts, opinion leaders are public person- alities who actively produce and interpret multiple sources of information to form an opinion. With the advent of social media, these actors generate viewership and large followings through regular programming and online presence. Regional stakeholders: These include Governments, regional organizations, mil- itary and political parties of neighbouring countries, civil society in neighboring States, businesses and potential spoilers. The international community: This includes donors, their constituencies (including, if applicable, the diaspora who can influence the direction of DDR), troop-contribut- ing countries, the UN system, international financial institutions, non-governmental organizations and think tanks.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "909355a9-ccd2-44e4-8a34-3e2e5453ba05", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 18, + "Paragraph": "Media This section outlines the various media that can be used in PI/SC strategies and the advantages and disadvantages associated with each. In both mission and non-mission settings, DDR practitioners should proactively identify PI/SC capacities to support national counterparts that are leading the process. Most peacekeeping operations include a PI/SC office with the following work streams and skill sets: media relations, multimedia and content production, radio content or station, and an outreach and campaigns unit. It is important for DDR practitioners to keep in mind that former members of armed forces and groups are not usually a standard target audience within a mission\u2019s PI/SC strategy. They may therefore need to engage with the PI/SC office in order for this group to be considered. In non-mission settings, DDR practitioners may seek out partnerships with relevant organizations or explore the possibility of bringing on board or working with existing PI/SC person- nel. For example, most agencies, funds and programmes within the UN country team maintain communications officers or individuals with similar job profiles. In all con- texts, local advisers shall be consulted. Once created, PI/SC messages and activities can be channelled using the various media outlined below. The selection of media type should be based on a thorough anal- ysis of the geographic availability of that media, as well as which form of media best suits the content to be disseminated. Online and web presence When internet access is widespread, online tools (videos, dedicated websites, podcasts, social media campaigns, etc.) are important. Social media campaigns should be consid- ered as they represent a low-resource way of reaching a large audience. Local, national and international radio stations When compared with other media, the advantage of radio is that it often reaches the largest number of people, particularly in developing countries. This is because radio is less dependent on infrastructural development or the technological sophistication and wealth of the listener. It can also reach those who are illiterate. However, it should not be assumed that women (and children) have the same access to radio as men, especially in rural areas, since they may not have the resources to buy either the radio or batteries. A DDR radio programme can assist in providing updates on the DDR process (e.g., the opening of demobilization sites and inauguration of reintegration projects). It can also be used to disseminate messages targeting women and girls (to encourage their participation in the process), as well as children associated with armed forces and groups (for e.g., on the consequences of enlisting or holding children). Radio messages can also support behavioural change programming, for example, by destigmatizing mental health needs (see IDDRS 5.70 on Health and DDR, IDDRS 5.80 on Disability- Inclusive DDR and IASC Guidelines on Mental Health and Psychosocial Support). Some peacekeeping missions have their own UN Radio stations. In contexts where this is not the case, DDR practitioners should explore partnerships with the private sector and/or civil society. Print media Print media may include leaflets, pamphlets, posters/cartoons, newsletters and maga- zines. Although the effectiveness of these various formats will be limited by the literacy of the intended audience, their main advantage is the durability and level of detail that printed information can contain. The added benefit of print media is that it can be passed from person to person in close-knit networks, increasing the potential impact of the content as it comes from a trusted source. Visual media: television, film and billboards In countries where television is the most popular way of distributing information, it is essential that this medium is used, even if in a limited way. Some peacekeeping missions have established their own UN TV stations on a dedicated broadcasting frequency, while others have made arrangements to broadcast films, documentaries or other programming on existing public or private stations. The scheduling and frequency of broadcasts must be carefully planned to respond to the needs of the widest possible audience. Where cultural restrictions prevent women from watching films in public, alternatives, such as a women-only screening, should be negotiated. Billboards should not be overlooked as an effective tool for advertising DDR activities and/or achievements, as, when strategically positioned, they can reach a significant number of people. Interactive forums: theatre, seminars, debates Although the main impact of theatre productions, seminars and debates may be on their direct audience, oral forms of communication have the advantage of involving the audience and building on existing cultural norms. Presenting ideas and concepts figuratively, especially if based on local folklore, culture and humour, can be particu- larly useful in communities with a strong oral culture. Interactive opportunities like this also afford critical opportunities to support equitable and positive gender norms, destigmatize mental health, and foster peacebuilding and social cohesion. These inter- active mechanisms may also help to build social cohesion and work through trauma. Local townhall events Local townhall events that are open to the public can offer a platform for dialogue with communities. They can serve as a wider peacebuilding platform using participatory methods to solicit input from affected populations. They can also provide the opportu- nity to pre-test messages on a small scale to ascertain their impact and reception before wider use and dissemination. Hotlines Hotlines can be a useful tool to inform DDR participants and beneficiaries about the development of the DDR process. Hotlines should be free of charge and can foster the engagement of the target audience and provide information and clarification on the DDR process. Augmented and virtual reality Augmented and virtual reality techniques can allow partners, donors and members of the general public who are unfamiliar with DDR to immerse themselves in a real-life setting \u2013 for example, walking the path of an ex-combatant as he/she leaves an armed group and participates in a DDR process. Gamification Gamification involves the application of typical elements of game playing (e.g., point scoring, competition with others, rules of play) to other areas of activity, typically as an interactive and social technique to encourage engagement with a topic, such as DDR. Monitoring and evaluation From the start, it is important to identify measurable indicators (the pieces of information that will show whether objectives are being met) as well as how this information will be gathered (sources and techniques) in order to monitor and evaluate the impact of the PI/SC strategy. Any aspects of the PI/SC strategy that do not have the effect they were designed to achieve shall be adapted. Indicators may include: The number, sex, age and location (e.g, rural or urban) of people listening to radio programmes and consulting other media, including websites and social media, that convey messages regarding DDR; The number of participants and beneficiaries engaging in the DDR process as a result of PI/SC activities; The extent of the involvement of the local civilian population in reintegration programmes as a result of PI/SC efforts; and The change in expectations and knowledge about the process among target audi- ences before and after PI/SC activities. This information can be gathered through surveys and interviews conducted throughout the implementation of the DDR process and also from the activity reports of other organizations, media reports, staff at the demobilization sites, local civil society actors in the communities, etc. Findings should be used to guide and shape ongoing activities and contribute to improving future efforts. For further information, refer to IDDRS 3.50 on Monitoring and Evaluation.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-5.10-Women-Gender-and-DDR.json b/src/Static/data/json/IDDRS-5.10-Women-Gender-and-DDR.json new file mode 100644 index 0000000..6598e99 --- /dev/null +++ b/src/Static/data/json/IDDRS-5.10-Women-Gender-and-DDR.json @@ -0,0 +1,952 @@ +[ + { + "ID": "eae18cbd-3254-472d-a627-2b4132327419", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Summary Women are increasingly involved in combat or are associated with armed groups and forces in other roles, work as community peace-builders, and play essential roles in disarmament, demobilization and reintegration (DDR) processes. Yet they are almost never included in the planning or implementation of DDR. Since 2000, the United Nations (UN) and all other agencies involved in DDR and other post-conflict reconstruction activities have been in a better position to change this state of affairs by using Security Council resolution 1325, which sets out a clear and practical agenda for measuring the advancement of women in all aspects of peace-building. The resolution begins with the recognition that women\u2019s visibility, both in national and regional instruments and in bi- and multilateral organizations, is vital. It goes on to call for gender awareness in all aspects of peacekeeping initiatives, especially demobi- lization and reintegration, urges women\u2019s informed and active participation in disarmament exercises, and insists on the right of women to carry out their post-conflict reconstruction activities in an environment free from threat, especially of sexualized violence. Even when they are not involved with armed forces and groups themselves, women are strongly affected by decisions made during the demobilization of men. Furthermore, it is impossible to tackle the problems of women\u2019s political, social and economic marginaliza- tion or the high levels of violence against women in conflict and post-conflict zones without paying attention to how men\u2019s experiences and expectations also shape gender relations. This module therefore includes some ideas about how to design DDR processes for men in such a way that they will learn to resolve interpersonal conflicts without using violence to do so, which will increase the security of their families and broader communities. Special note is also made of girl soldiers in this module, because in some parts of the world, a girl who bears a child, no matter how young she is, immediately gains the status of a woman. Care should therefore be taken to understand local interpretations of who is seen as a girl and who a woman soldier. Peace-building, especially in the form of practical disarmament, needs to continue for a long time after formal demobilization and reintegration processes come to an end. This module is therefore intended to assist planners in designing and implementing gender- sensitive short-term goals, and to help in the planning of future-oriented long-term peace support measures. It focuses on practical ways in which both women and girls, and men and boys can be included in the processes of disarmament and demobilization, and be recognized and supported in the roles they play in reintegration. The processes of DDR take place in such a wide variety of conditions that it would be impossible to discuss each of the circumstance-specific challenges that might arise. This module raises issues that frequently disappear in the planning stages of DDR, and aims to provoke further thinking and debate on the best ways to deal with the varied needs of people \u2014 male and female, old and young, healthy and unwell \u2014 in armed groups and forces, and those of the communities to which they return after war.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "60543163-dbee-46db-ac2c-d4ea214e4480", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides policy guidance on the gender aspects of the various stages in a DDR process, and outlines gender-aware interventions and female-specific actions that should be carried out in order to make sure that DDR programmes are sustainable and equitable. The module is also designed to give guidance on mainstreaming gender into all DDR poli- cies and programmes to create gender-responsive DDR programmes. As gender roles and relations are by definition constructed in a specific cultural, geographic and communal con- text, the guidance offered is intended to be applied with sensitivity to and understanding of the context in which a DDR process is taking place. However, all UN and bilateral policies and programmes should comply with internationally agreed norms and standards, such as Security Council resolution 1325, the Convention on the Elimination of All Forms of Discrim- ination Against Women and the Beijing Platform for Action.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f5e2ecbf-5b3e-4c86-82e5-01e5f5b74658", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A com- plete glossary of all the terms, definitions and abbreviations used in the series of integrated 1.20\tDDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicated requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "4ba64b87-0772-4598-a2f6-cee868586e3e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 4, + "Paragraph": "Introduction Generally, it is assumed that armed men are the primary threat to post-conflict security and that they should therefore be the main focus of DDR. The picture is usually more complex than this: although males (adults, youth and boys) may more obviously take part in the conflict and make up the largest number of combatants, females (adults, youth and girls) are also likely to have been involved in violence, and may have participated in every aspect of the conflict. Despite stereotypical beliefs, women and girls are not peacemakers only, but can also contribute to ongoing insecurity and violence during wartime and when wars come to an end. The work carried out by women and girl combatants and other women and girls asso- ciated with armed forces and groups in non-fighting roles may be difficult to measure, but efforts should be made to assess their contribution as accurately as possible when a DDR programme is designed. The involvement of women in the security sector reform (SSR) pro- cesses that accompany and follow DDR should also be deliberately planned from the start. Women take on a variety of roles during wartime. For example, many may fight for brief periods and then return to their communities to carry out other forms of work that contri- bute to the war. These women will have reintegrated and are unlikely to present themselves for DDR. Nor should they be encouraged to do so, since the resources allocated for DDR are limited and intended to create a founda- tion of stability on which longer-term peace and SSR can be built. It is therefore appro- priate, in the reconstruction period, to focus resources on women and men who are still active fighters and potential spoilers. Women who have already rejoined their communities can, however, be an important asset in the rein- tegration period, including through playing expanded roles in the security sector, and efforts should be made to include their views when designing reintegration processes. Their experiences may significantly help commu- nities with the work of reintegrating former fighters, especially when they are able to help bring about reconciliation and assist in making communities safer. It is important to remember that women are present in every part of a society touched by DDR \u2014 from armed groups and forces to receiving communities. Exclusionary power struc- tures, including a backlash against women entering into political, economic and security structures in a post-conflict period, may make their contributions difficult to assess. It is therefore the responsibility of all DDR planners to work with female representatives and women\u2019s groups, and to make it difficult for male leaders to exclude women from the form- ulation and implementation of DDR processes. Planners of SSR should also pay attention to women as a resource base for improving all aspects of human security in the post-conflict period. It is especially important not to lose the experiences and public standing acquired by those women who played peace-building roles in the conflict period, or who served in an armed group or force, learning skills that can usefully be turned to community service in the reconstruction period. Ultimately, DDR should lead to a sustainable transition from military to civilian rule, and therefore from militarized to civilian structures in the society more broadly. Since women make up at least half the adult population, and in post-conflict situations may head up to 75 percent of all households, the involvement of women in DDR and SSR is the most important factor in achieving effective and sustainable security. Furthermore, as the main caregivers in most cultures, women and girls shoulder more than their fair share of the burden for the social reintegration of male and female ex-combatants, especially the sick, traumatized, injured, HIV-positive and under-aged. Dealing with the needs and harnessing the different capacities and potential of men, women, boy and girl former fighters; their supporters; and their dependants will improve the success of the challenging and long-term transformation process that is DDR, as well as providing a firm foundation for the reconstruction of the security sector to meet peacetime needs. However, even five years since the passing of Security Council resolution 1325 (2000) on Women and Peace and Security, gender is still not fully taken into account in DDR plan- ning and delivery. This module shows policy makers and practitioners how to replace this with a routine consideration of the different needs and capacities of the women and men involved in DDR processes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4b572db1-8608-41c6-93e0-309ff93a92e5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 5, + "Paragraph": "Guiding principles Up till now, DDR efforts have concerned themselves mainly with the disarmament, demo- bilization and reintegration of male combatants. This approach fails to deal with the fact that women can also be armed combatants, and that they may have different needs from their male counterparts. Nor does it deal with the fact that women play essential roles in maintaining and enabling armed forces and groups, in both forced and voluntary capacities. A narrow definition of who qualifies as a \u2018combatant\u2019 came about because DDR focuses on neutralizing the most potentially dangerous members of a society (and because of limits imposed by the size of the DDR budget); but leaving women out of the process underesti- mates the extent to which sustainable peace-building and security require them to participate equally in social transformation. In UN-supported DDR, the following principles of gender equality are applied: Non-discrimination, and fair and equitable treatment: In practice, this means that no group is to be given special status or treatment within a DDR programme, and that indivi- duals should not be discriminated against on the basis of gender, age, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associa- tions. This is particularly important when establishing eligibility criteria for entry into 4.10\tDDR programmes (also see IDDRS 4.10 on Disarmament); Gender equality and women\u2019s participation: Encouraging gender equality as a core principle of UN-supported DDR programmes means recognizing and supporting the equal rights of women and men, and girls and boys in the DDR process. The different experiences, roles and responsibilities of each of them during and after conflict should be recognized and reflected in the design and implementation of DDR programmes; Respect for human rights: DDR programmes should support ways of preventing reprisal or discrimination against, or stigmatization of those who participate. The rights of the community should also be protected and upheld.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b53eee15-97c3-4e22-896c-009c36a8d2e0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 6, + "Paragraph": "Security Council resolution 1325 Security Council resolution 1325 marks an important step towards the recognition of women\u2019s contributions to peace and reconstruction, and draws attention to the particular impact of conflict on women and girls. On DDR, it specifically \u201cencourages all those involved in the planning for disarmament, demobilization and reintegration to consider the different needs of female and male ex-combatants and to take into account the needs of their depen- dants\u201d. Since it was passed, the Council has recalled the principles laid down in resolution 1325 when establishing the DDR-related mandates of several peacekeeping missions, such as the UN Missions in Liberia and Sudan and the UN Stabilization Mission in Haiti.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "417e2c2b-a54b-4050-a950-3629587f69ea", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 7, + "Paragraph": "The Beijing Platform for Action At the Fourth World Conference on Women, held in Beijing in 1995, 189 Member States com- mitted themselves to a range of strategic objectives and actions aimed at achieving gender equality. The Member States repeated their commitment to ensuring that women make up 30 percent of all decision-making bodies and further committed themselves, among other things, to: increase the participation of women in conflict resolution at decision-making levels, and protect women living in situations of armed and other conflicts or under foreign occupation (E.1); reduce excessive military expenditures and control the availability of armaments (E.2); encourage and support women\u2019s contribution to fostering a culture of peace (E.4). The Secretary-General\u2019s Study on Women, Peace and Security In his 2002 Study on Women, Peace and Security, the Secretary-General recommended the following actions on DDR: Action 1: Incorporate the needs and priorities of women and girls as ex-combatants, \u2018camp-followers\u201d\u2019 and families of ex-combatants in the design and implementation of DDR programmes, including the design of camps; the distribution of benefits; and access to basic resources and services, including food, water, health care and counsel- ling, in order to ensure the success of such programmes, women and girls\u2019 full partici- pation, and their access to benefits; Action 2: Increase the number of programmes for child soldiers, fully include attention to the specific situation and needs of girl soldiers, and identify means to support child soldiers, including girls, who do not enter DDR programmes; Action 3: Recognize the impact of armed conflict and displacement on family relations, and develop awareness of the risk of increased domestic violence, especially in the fami- lies of ex-combatants; and develop programmes on the prevention of domestic violence that are designed for families and communities, and especially male ex-combatants; Action 4: Recognize and use the contributions of women and girls in encouraging ex- combatants to lay down arms and participate in weapons-collection programmes, and ensure that they benefit from any incentives provided for such activities; Action 5: Ensure full access of women and girls to all resources and benefits provided in reintegration programmes, including skills development programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e937756a-7be4-4186-9619-2051803f5cae", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 8, + "Paragraph": "Negotiating DDR: Ensuring women\u2019s political participation A gender-responsive approach to DDR should be built into every stage of DDR. This begins with discussions during the peace negotiations on the methods that will be used to carry out DDR. DDR advisers participating in such negotiations should ensure that women\u2019s interests and needs are adequately included. This can be done by insisting on the participation of female representatives at the negotiations, ensuring they understand DDR-related clauses and insisting on their active involvement in the DDR planning phase. Trained female leaders will contribute towards ensuring that women and girls involved in DDR (women and girls who are ex-combatants, women and girls working in support functions for armed groups and forces, wives and dependants of male ex-combatants, and members of the receiving com- munity) understand, support and strengthen the DDR process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "de523e32-5a1a-48fe-8f27-f4fe249e29d4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 8, + "Paragraph": "Negotiating DDR: Gender-aware interventions Negotiation, mediation and facilitation teams should get expert advice on current gender dynamics, gender relations in and around armed groups and forces, and the impact the peace agreement will have on the status quo. All the participants at the negotiation table should have a good understanding of gender issues in the country and be willing to include ideas from female representatives. To ensure this, facilitators of meetings and gender advisers should organize gender workshops for wom- en participants before the start of the formal negotiation. The UN should develop a group of deployment-ready experts in gender and DDR by using a combined strategy of recruit- ment and training, and insist on their full participation in the DDR process through af- firmative action.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05e9fd7d-026e-4f9e-9a3a-cbd53a5cc4da", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 9, + "Paragraph": "Negotiating DDR: Female-specific interventions Facilitators, Special Representatives of the Secretary-General (SRSGs) and senior UN person- nel supporting the peace process should receive an explicit mandate to cater for the needs and interests of women and girls, whether combatants, supporters or dependants. Moni- toring and evaluation mechanisms should be set in place to assess the effectiveness of their interventions. (See Annex D for a gender-responsive monitoring and evaluation framework.) Peace process facilitators, SRSGs and envoys should be made aware of the interna- tionally agreed minimum standard of 30 percent female participation in any democratic decision-making forum. Women who are familiar with the needs of female fighters, veterans and other community-based women peace-builders should attend and be allowed to raise concerns in the negotiation process. In circumstances where the participation of women is not possible, DDR planners should hold consultations with women\u2019s groups during the planning and pre-deployment phase and ensure that the latter\u2019s views are represented at negotiation forums. Women in leadership positions at national and local levels, including female local coun- cillors, representatives of women\u2019s non-governmental organizations (NGOs) and female community leaders, all of whom will assist the return of male and female ex-combatants, supporters and dependants to civilian life, are stakeholders in the peace process, and should be enlisted as partners in the DDR process. Furthermore, governmental ministries or depart- ments with gender-related mandates should be included in negotiations and decision-making whenever possible. To facilitate women\u2019s participation, the UN advance team or country team should carry out a risk assessment to evaluate the threat posed to women who take up a public role in the peace process. Adequate protection should be provided by governmental bodies or the UN itself if these women\u2019s security is at risk. Facilitators and other participants in the peace process should attempt to create an inclusive environment so that female representatives feel comfortable to raise their concerns and needs. The release of abducted women and girls from within the ranks of an armed force or group should be made a condition of the peace agreement. The requirement for the representation of women in structures established to manage DDR processes, such as a national DDR commission, should be included in the peace accord. Information about the DDR programme and process should be made available to any sub- sidiary bodies or sub-committees established to facilitate the participation of civil society in the peace process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "037c348f-2612-44bc-b23f-9bede0bbb7e9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 9, + "Paragraph": "Assessment phase Planners should develop a good understanding of the legal, political, economic, social and security context of the DDR programme and how it affects women, men, girls and boys Wife of ex-combatant, Sierra Leone, January 2002 Photo: P. Marwah, UNFPA Humanitarian Response Unit differently, both in the armed forces and groups and in the receiving communities. In addition, planners should understand the different needs of women, men, girls and boys who participate in DDR processes according to their different roles during the conflict (i.e., armed ex-combatants, supporters, or/and depend- ants). The following should be considered. Different choices: There may be a difference in the life choices made by women and girls, as opposed to men and boys. This is because women, men, girls and boys have different roles before, during and after conflicts, and they face different problems and expectations from society and their family. They may, as a result, have different prefer- ences for reintegration training and support. Some women and girls may wish to return to their original homes, while others may choose to follow male partners to a new loca- tion, including across international boundaries; Different functions: Many women and girls participate in armed conflict in roles other than as armed combatants. These individuals, who may have participated as cooks, mes- sengers, informal health care providers, por- ters, sex slaves, etc., are often overlooked in the DDR process. Women and girls carry out these roles both through choice and, in the case of abductees and slaves, because they are forced to do so. Within receiving communities, in which women already have heavy responsibilities for caregiving, reintegration may place fur- ther burdens of work and care on them that will undermine sustainable reintegration if they are not adequately supported. (See Annex B for an integrated assessment checklist on gender and DDR.)", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4e9ebcbf-d343-46cf-abe1-319a4b06868d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 11, + "Paragraph": "Assessment phase: Gender-aware interventions Gender expertise should be considered an essential element of any assessment mission carried out by the UN, specifically those teams with DDR-related mandates, and gender analysis and information should be adequately reflected in reporting to the Security Council and the UN Development Group that coordinates joint assessment missions before the deployment of a peacekeeping mission. The assessment team should identify community responses to giving female ex-com- batants the option of joining reconstructed peacetime armies and other security institutions such as intelligence services, border police, customs, immigration services and other law- enforcement services. To boost the number of female peacekeepers, women\u2019s eligibility for peacekeeping roles in other conflict zones should also be determined. In order to plan how to deal with obstacles to reintegration and better prepare the community and returnees to play supportive roles, an ongoing assessment should be con- ducted of community attitudes towards returning female combatants, supporters and depend- ants. Baseline data and analysis should be gathered and then reassessed at various stages of the process. Analysis should focus closely on potential causes of insecurity for returning women and on the extent of gender-based insecurity (e.g., gender-based violence) in comm- unities more generally. If the assessment team has the task of identifying sites for cantonment, such sites should be able to provide separate facilities for women and men, and girls and boys, as required. Sanitary facilities should be designed in a way that allows for privacy, in accordance with culturally accepted norms, and water and sanitation should be available to meet women\u2019s and girls\u2019 hygiene needs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7b6ae6a0-467a-406e-8c38-1246a0951852", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 11, + "Paragraph": "Assessment phase: Female-specific interventions The number and percentage of women and girls in armed groups and forces, and their rank and category, should be ascertained as far as possible before planning begins. Necessary measures should be put in place \u2014 in cooperation with existing military structures, where possible \u2014 to deal with commanders who refuse to disclose the number of female combat- ants or associates in the armed forces or groups that they command. It is the human right of all women and girls who have been abducted to receive assistance to safely leave an armed force or group. Baseline information on patterns of weapons possession and ownership among women and girls should be collected \u2014 if possible, before demobilization \u2014 to gain an accurate picture of what should be expected during disarmament, and to guard against exploitation of women and girls by military personnel, in attempts either to cache weapons or control access to DDR. The assessment team should identify local capacities of women\u2019s organizations already working on security-related issues and work with them to learn about the presence of women and girls in armed groups and forces. All interventions should be designed to sup- port and strengthen existing capacity. (See Annex D for gender-responsive needs assessment and the capacities and vulnerabilities analysis matrix of women\u2019s organizations.) Along with community peace-building forums, women\u2019s organizations should routinely be consulted during assessment missions, as they are often a valuable source of information for planners and public information specialists about, for instance, the community\u2019s percep- tions of the dangers posed by illicit weapons, attitudes towards various types of weapons, the location of weapons caches and other issues such as trans-border weapons trade. Women\u2019s organizations can also provide information about local perceptions of returning female ex- combatants, and of women and girls associated with armed groups and forces. Working closely with senior commanders within armed forces and groups before demo- bilization to begin raising awareness about women\u2019s inclusion and involvement in DDR will have a positive impact and can help improve the cooperation of mid-level commanders where a functioning chain of command is in place. Female interpreters familiar with relevant terminology and concepts should be hired and trained by assessment teams to help with interviewing women and girls involved in or associated with armed groups or forces. Women\u2019s specific health needs, including gynaecological care, should be planned for. Reproductive health services (including items such as reusable sanitary napkins) and pro- phylactics against sexually transmitted infection (both male and female condoms) should be included as essential items in any health care packages. When planning the transportation of people associated with armed groups and forces to cantonment sites or to their communities, sufficient resources should be budgeted for to offer women and girls the option of being transported separately from men and boys, if their personal safety is a concern. The assessment team report and recommendations for personnel and budgetary require- ments for the DDR process should include provision for female DDR experts, female trans- lators and female field staff for reception centres and cantonment sites to which women combatants and women associated with armed forces and groups can safely report.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d9f6df09-28e1-4328-bd79-9755393ecd84", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 12, + "Paragraph": "Demobilization A strict \u2018one man, one gun\u2019 eligibility requirement for DDR, or an eligibility test based on proficiency in handling weapons, may exclude many women and girls from entry into DDR programmes. The narrow definition of who qualifies as a \u2018combatant\u2019 has been moti- vated to a certain extent by budgetary considerations, and this has meant that DDR planners have often overlooked or inadequately attended to the needs of a large group of people participating in and associated with armed groups and forces. However, these same peo- ple also present potential security concerns that might complicate DDR. If those who do not fit the category of a \u2018male, able-bodied combatant\u2019 are overlooked, DDR activities are not only less efficient, but run the risk of reinforcing existing gender inequalities in local communities and making economic hardship worse for women and girls in armed groups and forces, some of whom may have unresolved trauma and reduced physical capacity as a result of violence experienced during the conflict. Marginalized women with experience of combat are at risk for re-recruitment into armed groups and forces and may ultimately undermine the peace-building potential of DDR processes. The involvement of women is the best way of ensuring their longer-term participation in security sector reform and in the uniformed services more generally, which again will improve long-term security.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "04b4da25-9053-4c15-99f6-1b81b030a1c9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 13, + "Paragraph": "Demobilization mandates, scope, institutional arrangements: Gender-aware interventions In drafting a peace mission\u2019s plan of operations, the Department of Peacekeeping Operations (DPKO) shall reflect the recommendations of the assessment team and produce language that defines a mandate for a gender-sensitive DDR process in compliance with Security Council resolution 1325. Specifically, DDR programme participants shall include those who play support functions essential for the maintenance and cohesion of armed groups and forces, and reflect consideration of the needs of individuals dependent on combatants. When the Security Council establishes a peacekeeping operation with mandated DDR functions, components that will ensure gender equity should be adequately financed through the assessed budget of UN peacekeeping operations and not voluntary contributions alone. From the start, funds should be allocated for gender experts and expertise to help with the planning and implementation of dedicated programmes serving the needs of female ex-com- batants, supporters and dependants. Gender advisers and expertise should be considered essential in the staffing structure of DDR units. The UN should facilitate financial support of the gender components of DDR processes. DDR programme budgets should be made gender-responsive by allocating sufficient amounts of resources to all gender-related activities and female-specific interventions. When collaborating with regional, bilateral and multilateral organizations, DDR prac- titioners should encourage gender mainstreaming and compliance with Security Council resolution 1325 throughout all DDR efforts that they lead or support, encouraging all partners, such as client countries, donors and other stakeholders, to dedicate human and economic resources towards gender mainstreaming throughout all phases of DDR. DDR practitioners should ensure that the various personnel of the peacekeeping mission, from the SRSG to the troops on the ground, are aware of the importance of gender consid- erations in DDR activities. Several strategies can be used: (1) ensuring that DDR training programmes that are routinely provided for military and civilian staff reflect gender-related aspects; (2) developing accountability mechanisms to ensure that all staff are committed to gender equity; and (3) integrating gender training into the training programme for the troops involved. Box 4 Gender training in DDR", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "74e208a2-2131-4429-bd2e-157b4c50b9d7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 14, + "Paragraph": "Demobilization mandates, scope, institutional arrangements: Female-specific interventions Definitions of who is a dependant should reflect the varied nature and complexity of the conflict situation, where dependent women and girls may not be legal wives of ex-combatants. Where a male ex-combatant and a woman or girl live as man and wife according to local perceptions and practices, this will guarantee the eligibility of the woman or girl for inclu- sion in the DDR programme. Eligibility criteria should be determined so that they include \u2014 where relevant \u2014 multiple wives (both formal and informal) of a male ex-combatant. The dependants of an ex-combatant should include any person living as part of the ex- combatant\u2019s household under their care. In situations where governments are responsible for all or part of the DDR process, UN representatives should encourage national DDR commissions to work closely with government ministries in charge of women\u2019s affairs, as well as women\u2019s peace-building networks. National DDR commissions should be encouraged to employ women in leader- ship positions and assign gender focal points within the commission. Troop-contributing countries should be encouraged by DPKO to make it an urgent priority to deploy women in peacekeeping operations. Female military personnel with gen- der training should be used as much as possible during the DDR process, in particular during the initial stages of screening and identification. Female military personnel should also play an important role in receiving and transmitting information on gender-based violence and/or sexual exploitation and abuse occurring in DDR sites.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9c81be3d-386c-4621-86f8-b01998ba3f96", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 15, + "Paragraph": "Transitional support Transitional support can include one or more of the following: financial resources; material resources; and basic training. The overall aim should be to ensure that the distribution of benefits enables women and girls to have the same economic choices as men and boys, regardless of the roles they performed during the war, and that women and men, and girls and boys are able to engage constructively in reintegration activities that contribute to overall security in their communities. A good understanding of women\u2019s rights and social attitudes relating to women\u2019s access to economic resources is needed when designing the benefits package. This will assist planners in designing the package in a way that will allow women to keep control over benefits, especially financial reinsertion packages, after leaving the cantonment site. For example, providing land as part of the benefits package may not be appropriate in a country where women cannot legally own land. Although DDR planners have assumed that financial packages given to male ex-com- batants will be used for the benefit of family members, anecdotal evidence from the field suggests that demobilized men use their start- up cash irresponsibly, rather than to the benefit of family and community. This com- promises the success of DDR programmes and undermines security and community recovery. On the other hand, much empirical evidence from the field indicates that women use the resources they are given for family sustenance and community development.1 For reintegration to be sustainable, gendered strategies must be developed that will equally benefit women and men, and ensure the equitable distribution of aid and resources within the family unit.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b1a69959-4373-46b5-a487-010f8da63026", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 15, + "Paragraph": "Transitional support: Gender-aware interventions When planning the demobilization package, women/girls and men/boys who were armed ex-combatants and supporters should receive equitable and appropriate basic demobili- zation benefits packages, including access to land, tools, credit and training. Planning should include a labour market assessment that provides details of the various job options and market opportunities that will be available to men and women after they leave demobilization sites. This assessment should take place as early as possible so that train- ing programmes are ready when ex-combatants and supporters need them. Opportunities for women\u2019s economic independence should be considered and potential problems faced by women entering previously \u2018male\u2019 workplaces and professions should be dealt with as far as possible. Offering demobilized women credit and capital should be viewed as a positive investment in reconstruction, since women have an established record of high rates of return and reinvestment. Demobilization packages for men and boys should be also sensitive to their different gender roles and identities. Demobilization packages might be prepared under the assump- tion that men are the \u2018breadwinner\u2019 in a household, which might pressurize men to be more aggressively hierarchical in their behaviour at home. Men can also feel emasculated when women appear more successful than them, and may express their frustration in increased violence. More careful preparation is needed so that transitional support packages will not reinforce negative gender stereotypes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fda0a38d-d67d-405a-853a-f21f81522c9d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 16, + "Paragraph": "Transitional support: Female-specific interventions If cash hand-outs are given to DDR participants as part of their transitional support, the needs and spending patterns of women should be taken into account, and accommodated as much as possible (e.g., do women prefer large payments of cash or monthly payments? Does either form of payment subject women and girls to additional security risks?). Women\u2019s traditional forms of money management should be recognized and supported (e.g., through rotational loan and credit schemes or other innovative forms of microcredit), and, where available, women should be given access to banks and encouraged to open private bank accounts to safeguard their money. Education and training efforts should deal with the needs and desires of the women and girls and start as soon as possible during the demobilization phase. Experience has shown that women and girls tend to be overwhelmed by household responsibilities and may be unable to move around freely once they return home, and are therefore less likely to be able to attend training programmes. Women\u2019s access will be greatly improved if efforts are made to provide child-care and other services. In many countries, women and girls have lower educational levels and are skilled in jobs that earn less money than their male peers. This should be taken into account in training programmes through providing additional resources for literacy and training in high-earning skills for women and girls. Skills should be culturally appropriate as far as possible, although efforts should be made not to restrict women to low-paid \u2018traditional\u2019 female work, since the post-conflict period offers the possibility of social transformation, including making use of skills acquired by women in wartime. Educational opportunities should be equally available to female and male children of ex-combatants and widows. The spouse or other female family mem- bers of a male ex-combatant should be brought in to witness the signing of an agreement on Female Officer, Democratic Republic of Congo Photo: P. Delargy, UNFPA Humanitarian Response Unit how his money will get paid. In this way, the resources may actually get passed on to the family, and from there move into the broader community. Receiving communities and women community leaders should be informed about the intention and use of reintegration packages and their potential impact. It cannot be assumed that the benefits of DDR will automatically enrich the community that they enter; they may in fact cause resentment and violence. Efforts should be made to include communities when deciding how development packages will be provided so that ex-combatants\u2019 access to these resources can be influenced and monitored by the community to which they return.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "beea7829-172f-4092-96f2-0bb4eaaa12d0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 17, + "Paragraph": "Assembly Female ex-combatants are less likely to ask to participate in DDR than their male peers, for a variety of reasons: a failure to adequately assess the number of women and girl combatants, supporters and dependants in the assessment phase, so that women and girls are neither expected nor catered for; women and girls in many post-war contexts having poorer access to news sources such as radios and being less likely to be able to read than men; the stigma during peacetime of being associated with an armed force or group; the perception or fact that a weapon is required for participation in a DDR programme; security concerns or a fear of exposure or re-exposure to sexual and gender-based violence; in some cases, commanders deliberately holding girls back because they are considered essential workers and the most desirable sexual partners within the group.2 They may also hide women and girls who have been abducted, for fear of legal and social conse- quences. Measures should be put in place to ensure women know they have the right to leave, and the capacity to do so in safety.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a3ce82cc-c70e-464c-9e0e-d010e70205b0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 17, + "Paragraph": "Assembly: Gender-aware interventions Male and female ex-combatants should be equally able to get access to clear information on their eligibility for participation in DDR programmes, as well as the benefits available to them and how to obtain them. At the same time, information and awareness-raising sessions should be offered to the communities that will receive ex-combatants, especially to women\u2019s groups, to help them understand what DDR is, and what they can and cannot expect to gain from it. Information campaigns though the media (e.g., radio and newspapers) should provide information that encourages ex-combatants, supporters and dependants to join programmes. However, it is important to bear in mind that women do not always have access to these tech- nologies, and word of mouth may be the best way of spreading information aimed at them. Eligibility criteria for the three groups of participants should be clearly provided through the information campaign. This includes informing male ex-combatants that women and girls are participants in DDR and that they (i.e., the men) face punishment if they do not release sex slaves. Women and girls should be informed that separate accommodation facil- ities and services (including registration) will be provided for them. Female staff should be present at all assembly areas to process women who report for DDR. Gender balance shall be a priority among staff in the assembly and cantonment sites. It is especially important that men see women in positions of authority in DDR processes. If there are no female leaders (including field officers), men are unlikely to take seriously education efforts aimed at changing their attitudes and ideas about militarized, masculine power. Therefore, information campaigns should emphasize the importance of female lead- ership and of coordination between local women\u2019s NGOs and other civil society groups. Registration forms and questionnaires should be designed to supply sex-disaggregated data on groups to be demobilized.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d12e53b1-c306-44ff-98e6-e9c896ece4b3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 18, + "Paragraph": "Assembly: Female-specific interventions It is imperative that information on the DDR process, including eligibility and benefits, reach women and girls associated with armed groups or forces, as commanders may try to exclude them. In the past, commanders have been known to remove weapons from the possession of girls and women combatants when DDR begins. Public information and advocacy cam- paigners should ensure that information on women-specific assistance, as well as on women\u2019s rights, is transmitted through various media. Many female combatants, supporters, females associated with armed groups and forces, and female dependants were sexually abused during the war. Links should be developed between the DDR programme and the justice system \u2014 and with a truth and reconciliation commission, if it exists \u2014 to ensure that criminals are prosecuted. Women and girls par- ticipating in the DDR process should be made aware of their rights at the cantonment and demobilization stages. DDR practitioners may consider taking steps to gather information on human rights abuses against women during both stages, including setting up a separate and discreet reporting office specifically for this purpose, because the process of assembling testimonies once the DDR participants return to their communities is complicated. Female personnel, including translators, military staff, social workers and gender ex- perts, should be available to deal with the needs and concerns of those assembling, who are often experiencing high levels of anxiety and facing particular problems such as separation from family members, loss of property, lack of identity documents, etc. In order for women and girl fighters to feel safe and welcomed in a DDR process, and to avoid their self-demobilization, female workers at the assembly point are essential. Training should be put in place for female field workers whose role will be to interview female combatants and other participants in order to identify who should be included in DDR processes, and to support those who are eligible. (See Annex C for gender-sensitive interview questions.)", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "588d5911-405f-4b74-918a-572738347048", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 19, + "Paragraph": "Cantonment: Gender-aware interventions The physical layout of the reception centre should be structured so that women and girls may register separately from their male partner, and receive separate identity cards. This will help ensure the safety and autonomy of women and girls who are sex slaves or forced \u2018wives\u2019, for whom the assembly point may offer a rare opportunity for escape from their captors. Separate facilities will be made available to male and female DDR participants at the cantonment site. However, it is also important to make space available for families that do not wish to be separated. Men, women, boys and girls will initially be escorted to separate facilities, but reassured and shown that there will be frequent opportunities offered for con- tact in the early stages of the demobilization processes, as families may have joint decisions to make about their futures. However, women and girls should be given the option of being out of contact with their male counterparts, if they choose to be. Men, women, boys and girls should be offered equal (but, if necessary, separate) access to education about HIV/AIDS, including voluntary testing, and other health services and supplies (also see IDDRS 5.60 on HIV/AIDS and DDR). Efforts should be made to balance domestic duties between men and women so that rather than collecting fuel or water, women and girls can take equal advantage of briefings, retrainings and other facilities at the site. An unequal division of domestic duties can also make women and girls more likely to suffer gender-based violence as they leave the site to fetch water, food or fuel.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "088eb523-0e63-47ec-92c0-e7e9be7fe9af", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 19, + "Paragraph": "Cantonment: Female-specific interventions If women and girls are to take advantage of training and education opportunities offered in the cantonment phase, child-care provisions cannot be optional or considered as non-essential. In order to safeguard against sexual violence, latrines, ablution areas, and washing and kitchen facilities should be placed in open areas and should be well lit at night. Cooking facilities, fuel and water should be provided so that women and girls do not need to leave the cantonment area. Health care services, which include reproductive and psychosocial health services, are essential. Women and girls may have specific health and psychosocial needs, e.g., relating to maternity or gender-based violence. Cantonment sites should provide birthing kits, suffi- cient clean water, supplemental feeding and medical facilities. Women and girls who have been abducted and/or suffered sexual assault during and after the conflict should be assisted by women who are trained in trauma management and offered counselling services, pro- vided that these are culturally acceptable and appropriate. Such assistance is essential to allow female ex-combatants in particular to participate in training and receive any health care or counselling services required. Opportunities should be provided during cantonment to educate women and girls about their rights, e.g., the right to own land or the right to take legal action against those who have committed crimes against them. In some countries, demobilized soldiers are offered opportunities to be employed in new security structures. Female ex-combatants should be provided with the same opportuni- ties as their male counterparts to join the restructured police and security forces.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5266359f-3b1a-4ed8-b777-62bf656e1679", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 13, + "Paragraph": "Disarmament Weapons possession has traditionally been a criterion for eligibility in DDR programmes. Because women and girls are often less likely to possess weapons even when they are actively 5.60 engaged in armed forces and groups, and because commanders have been known to remove weapons from the possession of women and girls before assembly, this criterion often leads 4.10\tto the exclusion of women and girls from DDR processes (also see IDDRS 4.10 on Disarmament).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "39eb61ad-af76-45e7-884d-ff79e137afce", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 20, + "Paragraph": "Disarmament: Gender-aware interventions Women\u2019s equal access to secure disarmament sites is important to ensure that gendered stereo- types of male and female weapons ownership are not reinforced. Ongoing programmes to disarm, through weapons collections, weapons amnesties, the creation of new gun control laws that assist in the registration of legally owned weapons, programmes of action such as weapons in exchange for development (WED; also referred to as WfD), and other initiatives, should be put in place to support reintegration and devel- opment processes. Such initiatives should be carried out with a full understanding of the gender dynamics in the society and of how gun ownership is gendered in a given context. Media images that encourage or support violent masculinity should be discouraged. Other incentives can be given that replace the prestige and power of owning a weap- on, and social pressure can be applied when communities have a sense of involvement in weapons-collection processes. Men are traditionally associated with the use, ownership and promotion of small arms, and are injured and killed by guns in far larger numbers than are women. However, the difference between female and male gun ownership does not mean that women have no guns. They may pose threats to security and are not only nurturers, innocents and victims in situations of armed conflict.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5ff676b7-083d-42ab-a17c-a726c7f38082", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 20, + "Paragraph": "Disarmament: Female-specific interventions At the weapons-collection sites, identification of female ex-combatants who return their weapons and female community members who hand in weapons on behalf of ex-combatants is vital in order to collect and distribute different types of information. Female ex-combatants can be a source of information about the number, location and situation of hidden weapons, and can be asked about these, provided there are adequate security measures to protect the identity of the informant. Programme staff should also ask female community members if they know any female ex-combatant, supporter or dependant who has \u2018self-reintegrated\u2019 and ask them to participate in any WED programmes and other disarmament processes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2fe148d9-7ac6-4b15-9172-059ff9cdf3e1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 20, + "Paragraph": "Arms reduction and control: Female-specific interventions WED projects are ideal opportunities for delivering specific training for women and girls, as such projects are often tied to the provision of services or goods that can reduce the burden of care disproportionately placed on women and girls in many parts of the world, such as water and fuel collection. Existing efforts of women\u2019s NGOs and female community leaders to raise awareness of weapons spread and misuse should be identified and recognized when planning long-term disarmament processes. Women\u2019s knowledge of trading routes, weapons caches, and other sources of hidden small arms and light weapons should be accessed, where this can be done safely, during the field assessment phase, and this information should be used in disarmament planning. Those conducting interviews will need to establish a close relationship with interviewees; and there is a moral responsibility on the part of such interviewers to protect their sources. When surveys are being carried out to determine attitudes to small arms and light weap- ons, women and girls (both those who participated in conflicts and community members) should be interviewed at the same time as, but separately from, men. Educating and including women prominently in disarmament activities can strengthen women\u2019s profile and leadership roles in the public sphere, and should be encouraged. Opportun- ities should be taken to link women\u2019s knowledge and awareness of disarmament to the pro- motion of their broader political participation and involvement in community development. Collected weapons should be properly guarded and, ideally, destroyed. The involvement of women\u2019s groups in monitoring weapons collection and destruction, and as participants in destruction ceremonies, can be a powerful way of solidifying community support for and investment in the peace process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d4d40d1c-f0bb-41a4-b8c5-73072ed58df1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Resettlement: Female-specific interventions After demobilization, mechanisms should be put in place to allow female ex-combatants and supporters to return to their destination of choice using a safe means of transport that minimizes exposure to gender-based violence, re-recruitment and abduction or human trafficking. Female ex-combatants and supporters should be properly catered for and included in any travel assistance that is offered after encampment. If a journey will take several days, the needs of women and girls and their children should be catered for, with separate vehicles made available if required. Female ex-combatants and supporters should be free to choose where they will live, and can decide to return to a rural area from which they or their partner came, or to move to a semi-urban or urban area where they may have more freedom from traditional gender roles. Those who have been attached to an armed force or group for a long period of time might not know where they want to go, and therefore need more time and special support to help them decide. A transitional safety net should be put in place to help resettled female ex-combatants and supporters with housing, health care and counselling, and offer educational support to get their children (especially girls) into school. Female ex-combatants and supporters should be fully informed about, and able to access, any reintegration support services, e.g., a local demobilization support office, if one is established. Measures should be put in place to help reunify mothers and children.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1191dfa7-ec00-4192-b34e-ca4ac0056531", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 21, + "Paragraph": "Social reintegration: Gender-aware interventions Ex-combatants who have been wounded or disabled in action, or have become chronically ill owing to exposure to combat, should be provided with medical care, counselling, reha- bilitation facilities and relevant vocational training. Counselling should also deal with problems such as drugs, alcohol and gender-based violence. These measures will reduce the burden of care that is carried by women and girls, usually unpaid, and can lead to nega- tive coping mechanisms, such as the withdrawal of girls from school to care for disabled relatives. Ex-combatants, their partners and dependants, and receiving families and communities need to be sensitized to the difficulties of readjustment to civilian life of persons participat- ing in or associated with armed groups and forces. Messages of reconciliation should also deal with the problems and specific needs of women and girls who may have suffered abuse in armed groups or forces. Leadership training for community leaders, including church leaders, traditional author- ities and women\u2019s NGOs, should be carried out before community sensitization projects begin, in order to inform them about community development projects associated with reintegration programmes and to strengthen their leadership skills. Training for community members should also include gender training. The media and arts should be used to exchange ideas and experiences and encourage a culture of peace, and respect for human rights and women\u2019s rights", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7f472293-b2a1-4d6b-8557-4849e3c70ed0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Social reintegration: Female-specific interventions As part of the broad consultation carried out with a wide variety of social actors, community awareness-raising meetings should be held to prepare the community to receive ex-combat- ants. Inclusion of women and women\u2019s organizations in these processes shall be essential, as women often play a central role in post-conflict reconstruction and the provision of care. Receiving communities should be informed about the intention and use of reintegration programmes and their potential impact on community development and sustainable peace- building. WED projects should recognize the important role of women in development activities, and should organize information campaigns specifically for female community members. Resources should be allocated to train female community members, ex-combatants and supporters to understand and cope with traumatized children, including how to help ab- ducted girls gain demobilization and reintegration support. It is unfair to burden women with the challenges of reintegrating and rehabilitating child soldiers simply because they are usually the primary caregivers of children. Women\u2019s organizations should be supported; and should be trained to participate in healing and reconciliation work in general, and, in particular, to assist in the reconciliation and reintegration of ex-combatants from different factions. Have women in the post-conflict zone already begun the process of reconstruction after war? Is this work recognized and supported? The expertise of female ex-combatants and supporters \u2014 which may be non-traditional expertise \u2014 should be recognized, respected and utilized by other women. Female ex- combatants\u2019 reintegration should be connected to broader strategies aimed at women\u2019s post-conflict development in order to prevent resentment against fighters as a \u2018privileged\u2019 group. Radio networks should include women\u2019s voices and experiences when educating local people about those who are being reintegrated, to prevent potential tensions from developing. Community mental health practices (such as cleansing ceremonies) should be encour- aged to contribute to the long-term psychological rehabilitation of ex-combatants and to address women\u2019s and girls\u2019 specific suffering or trauma (often a result of sexualized violence), as long as they encourage and support rather than undermine women\u2019s and girls\u2019 human rights and well-being. Female ex-combatants should have equal access to legal aid or support to assist them in combating discrimination (in both the private and public spheres). The establishment of formal/informal network groups among female ex-combatants and supporters should be encouraged, with support from women\u2019s NGOs. This will give them an opportunity to support each other and foster leadership. Particularly for those who decide to go to a new place rather than home, such support will be essential.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "011275a3-c654-4a32-a7cf-6eeb2a08bf7b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 23, + "Paragraph": "Economic reintegration Women and girls may have acquired skills during the conflict that do not fit in with tradi- tional ideas of appropriate work for women and girls, so female ex-combatants often find it more difficult than male ex-combatants to achieve economic success in the reintegration period, especially if they have not received their full entitlements under the DDR programme. Women often find it more difficult to get access to credit, especially the bigger amounts needed in order to enter the formal sectors of the economy. With few job opportunities, particularly within the formal sector, women and girls have limited options for economic success, which has serious implications if they are the main providers for their dependants. The burden of care that many women and girls shoulder means they are less able to take advantage of training and capacity-building opportunities that could offer them better opportunities for economic self-sufficiency.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fba9f618-ddfb-4023-9fa0-bbd8d4436273", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 23, + "Paragraph": "Economic reintegration: Gender-aware interventions Measures should be put in place to prevent women ex-combatants, supporters, dependants and war widows from being forced to live on the fringes of the economy. Even excessive reliance on women\u2019s unpaid or low-paid NGO activity might become a substitute for their meaningful participation in the labour market. One of the greatest needs of ex-combatants and their families is access to land and housing. In securing these, specific gender dynamics should be taken into account, particu- larly when traditional practices do not allow female-headed households or women\u2019s land ownership. Legal reform should aim to get rid of this exclusion. In many societies, the production of crops and animal husbandry is divided among household members according to gender and age. This division of labour should be assessed and should be taken into account when providing reintegration assistance that is aimed at reviving the agricultural sector, improving food security and securing livelihoods for ex- combatants.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0c242132-ae0e-47a9-93de-4a2bcef79410", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Economic reintegration: Female-specific interventions Special measures have to be put in place to ensure that female participants have equal training and employment opportunities after leaving the cantonment site. Funding should be allocated for childcare to be provided, and for training to be conducted as close as possible to where the women and girls live. This will also reduce the chances of irregular attendance as a result of problems with transport (e.g., infrequent buses) or mobility (e.g., cultural restric- tions on women\u2019s travel). Barriers such as employers refusing to hire women ex-combatants or narrow expectations of the work women are permitted to do should be taken into account before retraining is offered. Potential employees should be identified for sensitization train- ing to encourage them to employ female ex-combatants. Women and girls should be given a say in determining the types of skills they learn. They should be provided with options that will allow them to build on useful skills acquired during their time with armed groups and forces, including skills that may not usually be considered \u2018women\u2019s work\u2019, such as driving or construction jobs. They should be taught vocational skills in fields for which there is likely to be a long-term demand. Those success- fully completing vocational training should be issued with certificates confirming this. Widows, widowers and dependants of ex-combatants killed in action may need financial and material assistance. They should be assisted in setting up income-generating initiatives. Widows and widowers should be made active participants in reintegration training pro- grammes and should also be able to benefit from credit schemes. Because women\u2019s homes are often the main geographical base for their work, technical and labour support systems should be in place to assist demobilized women in building a house and to support self-employment opportunities. Single or widowed women ex-combatants should be recognized as heads of household and permitted to own and rent existing housing and land. Measures should be taken to protect women ex-combatants or war widows from being forced into casual labour on land that is not their own. Where needed, particularly in rural areas, women should be provided with training in agricultural methods and they should have the right to farm cash crops and own and use livestock, as opposed to engaging in subsistence agriculture. Security should be provided for women on their way to work, or to the marketplace, particularly to protect them from banditry, especially in places with large numbers of small arms. Women should have equal access to communally owned farming tools and water- pumping equipment, and have the right to own such equipment. Greater coordination with development agencies and women\u2019s NGOs that carry out projects to assist women, such as adult literacy courses, microcredit facilities and family planning advice, is essential to make this reintegration programme sustainable and to reach all beneficiaries.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bc3b49eb-a072-46b4-9d39-1a644c505aec", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 25, + "Paragraph": "Terms and definitions Empowerment: Refers to women and men taking control over their lives: setting their own agendas, gaining skills, building self-confidence, solving problems and developing self- reliance. No one can empower another; only the individual can empower herself or himself to make choices or to speak out. However, institutions, including international cooperation agencies, can support processes that can nurture self-empowerment of individuals or groups.3 Empowerment of participants, regardless of their gender, should be a central goal of any DDR interventions, and measures should be taken to ensure that no particular group is disem- powered or excluded through the DDR process. Gender: The social attributes and opportunities associated with being male and female and the relationships between women, men, girls and boys, as well as the relations between women and those between men. These attributes, opportunities and relationships are socially con- structed and are learned through socialization processes. They are context/time-specific and changeable. Gender is part of the broader sociocultural context. Other important criteria for sociocultural analysis include class, race, poverty level, ethnic group and age.4 The concept of gender also includes the expectations held about the characteristics, aptitudes and likely behaviours of both women and men (femininity and masculinity). The concept of gender is vital, because, when it is applied to social analysis, it reveals how women\u2019s sub- ordination (or men\u2019s domination) is socially constructed. As such, the subordination can be changed or ended. It is not biologically predetermined, nor is it fixed forever.5 As with any group, interactions among armed forces and groups, members\u2019 roles and responsibili- ties within the group, and interactions between members of armed forces/groups and policy and decision makers are all heavily influenced by prevailing gender roles and gender rela- tions in society. In fact, gender roles significantly affect the behaviour of individuals even when they are in a sex-segregated environment, such as an all-male cadre. Gender analysis: The collection and analysis of sex-disaggregated information. Men and women perform different roles in societies and in armed groups and forces. This leads to women and men having different experience, knowledge, talents and needs. Gender analysis explores these differences so that policies, programmes and projects can identify and meet the different needs of men and women. Gender analysis also facilitates the strategic use of distinct knowledge and skills possessed by women and men, which can greatly improve the long-term sustainability of interventions.6 In the context of DDR, gender analysis should be used to design policies and interventions that will reflect the different roles, capacity and needs of women, men, girls and boys. Gender balance: The objective of achieving representational numbers of women and men among staff. The shortage of women in leadership roles, as well as extremely low numbers of women peacekeepers and civilian personnel, has contributed to the invisibility of the needs and capacities of women and girls in the DDR process. Achieving gender balance, or at least improving the representation of women in peace operations, has been defined as a strategy for increasing operational capacity on issues related to women, girls, gender equality and mainstreaming.7 Gender equality: The equal rights, responsibilities and opportunities of women and men and girls and boys. Equality does not mean that women and men will become the same, but that women\u2019s and men\u2019s rights, responsibilities and opportunities will not depend on whether they are born male or female. Gender equality implies that the interests, needs and priorities of both women and men are taken into consideration, while recognizing the di- versity of different groups of women and men. Gender equality is not a women\u2019s issue, but should concern and fully engage men as well as women. Equality between women and men is seen both as a human rights issue and as a precondition for, and indicator of, sus- tainable people-centred development.8 Gender equity: The process of being fair to men and women. To ensure fairness, measures must often be put in place to compensate for the historical and social disadvantages that prevent women and men from operating on a level playing field. Equity is a means; equality is the result.9 Gender mainstreaming: Defined by the 52nd session of the UN Economic and Social Council (ECOSOC) in 1997 as \u201cthe process of assessing the implications for women and men of any planned action, including legislation, policies or programmes, in all areas and at all levels. It is a strategy for making women\u2019s as well as men\u2019s concerns and experiences an integral dimension of the design, implementation, monitoring and evaluation of policies and pro- grammes in all political, economic and societal spheres so that women and men benefit equally and inequality is not perpetrated. The ultimate goal of this strategy is to achieve gender equality.\u201d10 Gender mainstreaming emerged as a major strategy for achieving gen- der equality following the Fourth World Conference on Women held in Beijing in 1995. In the context of DDR, gender mainstreaming is necessary in order to ensure that women and girls receive equitable access to assistance programmes and packages, and it should, there- fore, be an essential component of all DDR-related interventions. In order to maximize the impact of gender mainstreaming efforts, these should be complemented with activities that are directly tailored for marginalized segments of the intended beneficiary group. Gender relations: The social relationship between men, women, girls and boys. Gender relations shape how power is distributed among women, men, girls and boys and how that power is translated into different positions in society. Gender relations are generally fluid and vary depending on other social relations, such as class, race, ethnicity, etc. Gender-aware policies: Policies that utilize gender analysis in their formulation and design, and recognize gender differences in terms of needs, interests, priorities, power and roles. They recognize further that both men and women are active development actors for their community. Gender-aware policies can be further divided into the following three policies: Gender-neutral policies use the knowledge of gender differences in a society to reduce biases in development work in order to enable both women and men to meet their prac- tical gender needs. Gender-specific policies are based on an understanding of the existing gendered division of resources and responsibilities and gender power relations. These policies use knowl- edge of gender difference to respond to the practical gender needs of women or men. Gender-transformative policies consist of interventions that attempt to transform existing distributions of power and resources to create a more balanced relationship among women, men, girls and boys by responding to their strategic gender needs. These poli- cies can target both sexes together, or separately. Interventions may focus on women\u2019s and/or men\u2019s practical gender needs, but with the objective of creating a conducive environment in which women or men can empower themselves.11 Gendered division of labour is the result of how each society divides work between men and women according to what is considered suitable or appropriate to each gender.12 Atten- tion to the gendered division of labour is essential when determining reintegration oppor- tunities for both male and female ex-combatants, including women and girls associated with armed forces and groups in non-combat roles and dependants. Gender-responsive DDR programmes: Programmes that are planned, implemented, moni- tored and evaluated in a gender-responsive manner to meet the different needs of female and male ex-combatants, supporters and dependants. Gender-responsive objectives: Programme and project objectives that are non-discrimina- tory, equally benefit women and men and aim at correcting gender imbalances.13 Practical gender needs: What women (or men) perceive as immediate necessities, such as water, shelter, food and security.14 Practical needs vary according to gendered differences in the division of agricultural labour, reproductive work, etc., in any social context. Sex: The biological differences between men and women, which are universal and deter- mined at birth.15 Sex-disaggregated data: Data that are collected and presented separately on men and women.16 The availability of sex-disaggregated data, which would describe the proportion of women, men, girls and boys associated with armed forces and groups, is an essential precondition for building gender-responsive policies and interventions. Strategic gender needs: Long-term needs, usually not material, and often related to struc- tural changes in society regarding women\u2019s status and equity. They include legislation for equal rights, reproductive choice and increased participation in decision-making. The notion of \u2018strategic gender needs\u2019, first coined in 1985 by Maxine Molyneux, helped develop gender planning and policy development tools, such as the Moser Framework, which are currently being used by development institutions around the world. Interventions dealing with stra- tegic gender interests focus on fundamental issues related to women\u2019s (or, less often, men\u2019s) subordination and gender inequities.17 Violence against women: Defined by the UN General Assembly in the 1993 Declaration on the Elimination of Violence Against Women as \u201cany act of gender-based violence that results in, or is likely to result in physical, sexual or psychological harm or suffering to women, including threats of such acts, coercion or arbitrary deprivation of liberty, whether occurring in public or in private. Violence against women shall be understood to encom- pass, but not be limited to, the following: Physical, sexual and psychological violence occurring in the family, including batter- ing, sexual abuse of female children in the household, dowry-related violence, marital rape, female genital mutilation and other traditional practices harmful to women, non- spousal violence and violence related to exploitation; Physical, sexual and psychological violence occurring within the general community, including rape, sexual abuse, sexual harassment and intimidation at work, in educa- tional institutions and elsewhere, trafficking in women and forced prostitution; Physical, sexual and psychological violence perpetrated or condoned by the State, wherever it occurs.\u201d18", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "0b5e33b5-002a-405f-bc8b-cefabf176a71", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Annex B: DDR gender checklist for peace operations assessment missions19 How many women and girls are in and associated with the armed forces and groups? What roles have they played? Are there facilities for treatment, counselling and protection to prevent sexualized vio- lence against women combatants, both during the conflict and after it? Who is demobilized and who is retained as part of the restructured force? Do women and men have the same right to choose to be demobilized or retained? Is there sustainable funding to ensure the long-term success of the DDR process? Are special funds allocated to women, and if not, what measures are in place to ensure that their needs will receive proper attention? Has the support of local, regional and national women\u2019s organizations been enlisted to aid reintegration? Has the collaboration of women leaders in assisting ex-combatants and widows returning to civilian life been enlisted? Are existing women\u2019s organizations being trained to understand the needs and experiences of ex-combatants? If cantonment is being planned, will there be separate and secure facilities for women? Will fuel, food and water be provided so women do not have to leave the security of the site? If a social security system exists, can women ex-combatants easily access it? Is it speci- fically designed to meet their needs and to improve their skills? Can the economy support the kind of training women might ask for during the demobi- lization period? Have obstacles, such as narrow expectations of women\u2019s work, been taken into account? Will childcare be provided to ensure that women have equitable access to training opportunities? Do training packages offered to women reflect local gender norms and standards about gender-appropriate behaviour or does training attempt to change these norms? Does this benefit or hinder women\u2019s economic independence? Are single or widowed female ex-combatants recognized as heads of households and permitted access to housing and land? Are legal measures in place to protect their access to land and water?Annex D: Gender-responsive DDR programme management frameworks and indicators", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2c67e727-6cc1-4e1b-a92a-fe5c3bb66bc9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 31, + "Paragraph": "Gender-responsive field/needs assessment Field/Needs assessment for female ex-combatants, supporters and dependants should be carried out independently of general need assessment, because of the specific needs and concerns of women. Those assessing the needs of women should be aware of gender needs in conflict situations. The use of gender-analysis frameworks should be strongly encouraged to collect information and data on the following: The methodology of data collection should be participatory, and sensitive to gender- related issues. The assessment group should include representatives from local women\u2019s organizations and the local community. This might mean that local female interpreter(s) and translator(s) are needed (also see IDDRS 3.20 on DDR Programme Design).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "eb0cdec9-cfb3-4c7a-828b-d68f6950600e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 31, + "Paragraph": "Matrix to assess capacities and vulnerabilities The Capacities and Vulnerabilities Framework21 can be used to plan and measure the out- come of gender-responsive DDR programmes. This framework is also useful for assessing needs by mapping the strengths and weaknesses of the target population. The matrix below is an example of how the framework can be used. A similar approach can be created in the field, based on collective interviews and/or focus groups with women\u2019s NGOs, community leaders, female ex-combatants and supporters: Capacities refer to the existing strengths of individuals and groups to cope with a crisis and to improve the quality of their lives; Vulnerabilities refer to factors that weaken the people\u2019s ability to create positive changes in their lives and community.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "65497248-7092-4d9e-aa11-c5238d2b1399", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 32, + "Paragraph": "Gender-responsive programme design The formulation of a project/programme should reflect the results of needs assessments of female ex-combatants and other FAAFGs. Gender dimensions should be included in the following components: programme goals; project objectives; outputs; indicative activities; inputs; indicators (for baseline data and monitoring and evaluation). 3.20\t(Also see IDDRS 3.20 on DDR Programme Design.)", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b8fc4229-1cfc-4ee5-b356-1dce0472c67f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 33, + "Paragraph": "Gender-responsive budgeting in DDR programming The formulation of a gender-responsive budget is a way of ensuring that female-specific interventions will be sufficiently funded. It also ensures that equal attention is paid to females and males by disaggregating costs by gender. Budgetary processes should ensure the par- ticipation of a DDR gender adviser, women\u2019s organizations and community members in order to encourage accountability and transparency. 3.41 3.50 In addition to objectives, indicators and outputs defined in the programme design, there is a need to specify the following categories within a results-based budgeting framework: female-specific activities (e.g., job training for female ex-combatants, counselling for the victims of gender-based violence) and its inputs (trained staff, adequate facilities); gender training (to programme staff, government officials, ex-combatants, supporters and dependants) and its inputs (trained staff, adequate facilities); gender adviser(s); unit cost (per participant) of all activities disaggregated by gender. It is also advisable to ask donors to specify the allocation of funds to female-specific interventions and gender training (also see IDDRS 3.41 on Finance and Budgeting).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "785e01c0-2e4f-4f1d-885b-4c3798f9f828", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 34, + "Paragraph": "4. Gender-responsive monitoring and evaluation Gender-responsive monitoring and evaluation (M&E) is necessary to find out if DDR pro- grammes are meeting the needs of women and girls, and to examine the gendered impact of DDR. At present, the gender dimensions of DDR are not monitored and evaluated effec- tively in DDR programmes, partly because of poorly allocated resources, and partly because there is a shortage of evaluators who are aware of gender issues and have the skills needed to include gender in their evaluation practices. To overcome these gaps, it is necessary to create a primary framework for gender- responsive M&E. Disaggregating existing data by gender alone is not enough. By identifying a set of specific indicators that measure the gender dimensions of DDR programmes and their impacts, it should be possible to come up with more comprehensive and practical recommendations for future programmes. The following matrixes show a set of gender- related indicators for M&E (also see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes). These matrixes consist of six M&E frameworks: Monitoring programme performance (disarmament; demobilization; reintegration) Monitoring process Evaluation of outcomes/results Evaluation of impact Evaluation of budget (gender-responsive budget analysis) Evaluation of programme management. The following are the primary sources of data, and data collection instruments and techniques: national and municipal government data; health-related data (e.g., data collected at ante-natal clinics); programme/project reports; surveys (e.g., household surveys); interviews (e.g., focus groups, structured and open-ended interviews). Whenever necessary, data should be disaggregated not only by gender (to compare men and women), but also by age, different role(s) during the conflict, location (rural/urban) and ethnic background. Gender advisers in the regional office of DDR programme and general evaluators will be the main coordinators for these gender-responsive M&E activities, but the responsibility will fall to the programme director and chief as well. All information should be shared with donors, programme management staff and programme participants, where relevant. Key findings will be used to improve future programmes and M&E. The following tables offer examples of gender analysis frameworks and gender-responsive budgeting analysis for DDR programmes. Note: Female ex-combatants = FXC; women associated with armed groups and forces = FS; female dependants = FD", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8b72f591-1bec-488c-90d1-3d65df2ad945", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 35, + "Paragraph": "Gender-responsive monitoring of programme performance Purpose of monitoring: To monitor programme performance for female ex-combatants, supporters and dependants at each stage of DDR: monitoring of disarmament; monitoring of demobilization; monitoring of reintegration; Data collection frequency: Every month during the implementation of the programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a6595e7f-a026-4b0b-bccb-c2fb49effdc3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 35, + "Paragraph": "Monitoring of disarmament Key questions to ask: To what extent did the disarmament programme succeed in disarming female ex- combatants? To what extent did the disarmament programme provide gender-sensitive and female- specific services?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "81d1dc9a-0cc7-4ed6-a576-9b913e3a03ca", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 35, + "Paragraph": "Monitoring of demobilization Key questions to ask: To what extent did the demobilization programme succeed in demobilizing female ex-combatants and supporters? To what extent did the demobilization programme provide gender-sensitive and female- specific services?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "96ff82f0-a751-4c9f-abbf-7fdb00097e98", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 36, + "Paragraph": "Monitoring of reintegration Key questions to ask: To what extent did the reintegration programme succeed in reintegrating female ex- combatants, supporters and dependants? To what extent did the reintegration programme provide gender-sensitive and female- specific services?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9a605787-29be-423f-bc61-5aa71d8374ae", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 37, + "Paragraph": "Gender-responsive monitoring of process Purpose of evaluation: To examine if and to what extent DDR programmes meet the needs of female ex-combatants, supporters and dependants, and to examine the level of participation of women; Process: (1) Reaching the right target population; (2) meeting the needs of stakeholders; the dynamics of participation of stakeholders; Gendered dimensions of process: (1) Reaching female target population; (2) meeting the needs of women and girls; (3) equal participation of women and women\u2019s organi- zations; Data collection frequency: Every three weeks during the implementation of the pro- gramme. Key questions to ask: To what extent did the DDR programme meet the needs of female ex-combatants, FAAGFs, and dependants? To what extent did the DDR programme encourage and support the participation of women and women\u2019s organizations at each stage of the programme?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "664dc007-90cc-4136-931b-fb7dec829c1f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 37, + "Paragraph": "Gender-responsive evaluation of outcomes/results Purpose of evaluation: To examine the contribution of DDR programmes to the creation of security for female ex-combatants, FAAGFs and dependants; Outcomes and intermediate results: (1) Capacity-building of ex-combatants and com- munity members; (2) human security; (3) social capital; Gender dimensions of outcomes: (1) Reduction of gender-based violence and dis- crimination against women and girls; (2) human security for women and girls; (3) capacity-building of female ex-combatants, FAAGFs and dependants; Data collection frequency: Every three months upon the completion of programme. Key question to ask: To what extent did the DDR programme increase human security (physical, psycho- logical, economic, social, political, cultural) for female ex-combatants, FAAFGs and dependants?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e3d36a3e-982d-4b36-b1b9-2fb488b446c8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 38, + "Paragraph": "Gender-responsive evaluation of impact Purpose of evaluation: To examine (1) the impact of DDR on empowerment of female ex-combatants, FAAGFs and dependants; (2) the contribution of DDR programme towards the creation of gender-responsive community development: Impact/Long-term goals: (1) Community development; (2) sustainable peace; Gender dimensions of impact: (1) Gender equality in community development and peace; (2) empowerment of women; Data collection frequency: Every six months for at least one to three years after the completion of the programme. Key questions to ask: To what extent did the DDR programme empower female ex-combatants, FAAGFs and dependants? To what extent did the reintegration programme encourage and support the creation of gender-responsive community development?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1946ccb8-728a-4e1c-97a9-7bb6d00fd4a4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Gender-responsive evaluation of budget (gender-responsive budgeting analysis) Purpose of evaluation: To examine the level of gender mainstreaming in the DDR budget; Budget: Allocation of resources, balancing revenue and expenditure, cost efficiency; Gender dimensions of budget: (1) Allocation of sufficient resources for female-specific interventions and gender-related interventions, such as gender training; (2) equal treat- ment of male and female ex-combatants in the overall programmes; (3) participation of women and women\u2019s NGOs in budgetary processes; Data collection frequency: Every stage of the budget cycle (preparation, approval, appre- ciation, auditing, revision, reporting). Key questions to ask: To what extent did the budget specify female-specific and gender-related activities, their inputs, and the cost? To what extent was the allocation of resources adequate to effectively implement female- specific and gender-specific activities? To what extent did gender specialists/advisers and women\u2019s organizations participate in the processes of the budget cycle (e.g., preparation, auditing)?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f8ff42cd-b0c5-4f0e-ad7b-aebce7f00694", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 40, + "Paragraph": "Evaluation to assess the level of gender mainstreaming in programme management Purpose of evaluation: To examine the level of gender mainstreaming in each DDR programme/project cycle and its management; Programme/Project cycle: (1) Situational analysis and need assessment; (2) project design; (3) project appraisal; (4) secure funding; (5) project implementation; (6) M&E; Gender dimensions of project cycle: (1) Assessment of women\u2019s and girls\u2019 participation; (2) gender-responsive project design and M&E; (3) understanding and implementation of gender mainstreaming among programme staff; Data collection frequency: Every month during the implementation of the programme, and before and after the implementation of the programme. Key question to ask: To what extent was gender mainstreamed in the DDR programme management and its project cycle?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-5.20-Children-and-DDR.json b/src/Static/data/json/IDDRS-5.20-Children-and-DDR.json new file mode 100644 index 0000000..7b4af8d --- /dev/null +++ b/src/Static/data/json/IDDRS-5.20-Children-and-DDR.json @@ -0,0 +1,1427 @@ +[ + { + "ID": "124e9478-2616-45e1-a037-029c2d96e5b7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": null, + "Paragraph": "Summary The recruitment of children \u2013 girls and boys under the age of 18 \u2013 and their use in hostilities or for other purposes by armed forces and groups is illegal. It is also one of the worst forms of child labour and exploitation. Efforts to prevent the recruitment of children into armed forces and groups should be a primary consideration during all DDR processes. Prevention efforts should start early\u2014when possible, they should com- mence prior to armed conflict\u2014and they should take place continuously throughout the conflict, with careful consideration given to the structural, social and individual factors associated with the risk of recruitment and re-recruitment. Irrespective of how children were recruited, the unconditional and immediate release of children associated with armed forces and groups (CAAFAG) shall be re- quired. Any person under 18 years old must be supported to demobilize and rein- tegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR processes. Nonetheless, where relevant, peace processes, including peace agreements and DDR policy documents, offer an op- portunity to highlight the needs of children affected by armed conflict and to ensure that actions and funding streams to support child-specific processes are included. The commitment to stop the recruitment and use of children and to release children from armed forces and groups shall be explicit within peace agreements. DRR processes shall be specific to the needs of children and apply child-sensitive and gender-transformative approaches to planning, implementation, and monitoring. As such, children shall be separated from armed forces and groups, handed over to child protection actors and supported to demobilize and reintegrate into families and communities. DDR practitioners and relevant child protection actors shall work togeth- er to design and implement services and interventions that aim to prevent children\u2019s recruitment and re-recruitment, that help children to recover and reintegrate into their communities, and that take into account differences in age and gender needs. DDR practitioners should promote agency of children, enabling their right to participate in decision-making and shape DDR processes in line with their concerns/needs. The specific needs of children formerly associated with armed forces and groups during reintegration are multisectoral, as boys and girls often require support in (re) accessing education, an alternative livelihood, medical and mental health services, in- cluding reproductive health services and sexual violence recovery services, as well as other services that promote life skills and help them establish a meaningful role in society. Child-sensitive approaches to reintegration support should be focused on long- term and sustainable opportunities for children formerly associated with armed forces and groups that are gender- and age-sensitive. For sustainability, and to avoid tension, stigmatization or envy when a child is returned, DDR practitioners should ensure that broader community development processes are also considered. DDR practitioners should also be aware that no child below the minimum age of criminal responsibility (MACR) should be investigated, prosecuted, or deprived of their liberty for any offence, including security and terrorism-related offences, in line with the provisions of the Convention on the Rights of the Child. The Committee on the Rights of the Child encourages States to increase the MACR where possible, and not to lower it below 14 years of age, commending States that set a higher MACR such as 15 or 16 years of age. Children, above the age of criminal responsibility, who are sus- pected of committing a serious crime, shall be handed over to civilian actors, and jus- tice should be provided within juvenile justice frameworks. During all processes they shall be treated primarily as victims and as survivors of grave violations of their rights. Any investigation or determination of culpability shall be handled by trained civilian actors, including, where relevant, trained juvenile justice actors and made based on processes consistent with applicable international child rights standards, including the Convention on the Rights of the Child, and internationally recognized juvenile justice standards and principles, due process and fair trial standards, prioritizing the child\u2019s recovery, reintegration, and best interests in all decisions.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "799c4a77-c058-4ccc-a4af-4e1816a1c21a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module aims to provide DDR practitioners and child protection actors with guid- ance on the planning, design and implementation of DDR processes for CAAFAG in both mission and non-mission settings. The main objectives of this guidance are: To set out the main principles that guide all aspects of DDR processes for children. To outline the normative legal framework that applies to children and must be integrated across DDR processes for children through planning, design, imple- mentation and monitoring and evaluation. To provide guidance and key considerations to drive continuous efforts to prevent the recruitment and re-recruitment of children into armed forces and groups. To provide guidance on child- and gender-sensitive approaches to DDR highlight- ing the importance of both individualized and community-based approaches. To highlight international norms and standards around criminal responsibility and accountability in relation to CAAFAG. This module is applicable to all CAAFAG but should be used in conjunction with ID- DRS 5.30 on Youth and DDR. IDDRS 5.30 provides guidance on children who are closer to 18 years of age. These children, who are likely to enter into employment and who have socio-political reintegration demands, especially young adults with their own children, require special assistance. The challenge of demobilizing and reintegrating former combatants who were mobilized as children and demobilized as adults is also covered in IDDRS 5.30. In addition, this module should also be read in conjunction with IDDRS 5.10 on Women, Gender and DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2e85d807-a364-4cab-9a6b-7da678a15667", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 5, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Children associated with armed forces or armed groups refers to persons below 18 years of age who are or who have been recruited or used by an armed force or group in any capacity, including but not limited to children, boys or girls, used as fighters, cooks, porters, messengers, spies or for sexual purposes. This term is used in the Paris Principles and is used here instead of the term \u2018child soldiers\u2019 because it more inclu- sively recognizes children who perform not only combat roles but also support or other functions in an armed force or group. Child recruitment refers to compulsory, forced and any other conscription or enlist- ment of children into any kind of armed force or armed group. This can include re- cruitment by communities, coerced recruitment, or abductions into armed forces and groups. The definition is purposefully broad and encompasses the possibility that any child recruitment may be coerced, forced, or manipulated based on the child\u2019s circum- stances and may appear voluntary. Unlawful recruitment or use is recruitment or use of children under the age stipulated in the international treaties applicable to the armed force or group in question or under applicable national law. The Optional Protocol on the Involvement of Children in Armed Conflict (OPAC) bans recruitment of children under 15 and requires States to take all pos- sible measures to prevent recruitment of children under 18 including the adoption of legal measures necessary to prohibit and criminalize such practices.1 It also bans all recruitment and use of children by armed groups. The Convention on the Rights of the Child (CRC), the Geneva Conventions and the Rome Statute ban recruitment of children under age 15. Release includes the process of formal and controlled disarmament and demobiliza- tion of children from an armed force or group, as well as the informal ways in which children leave by escaping, being captured or any other means. It implies a disassoci- ation from the armed force or group and the beginning of the transition from military to civilian life. Release can take place during a situation of armed conflict; it is not dependent on the temporary or permanent cessation of hostilities. Release is not de- pendent on children having weapons to forfeit. Reintegration of children is the process through which children transition into soci- ety and enter meaningful roles and identities as civilians who are accepted by their families and communities in a context of local and national reconciliation. Sustainable reintegration is achieved when the political, legal, economic and social conditions needed for children to maintain life, livelihood and dignity have been secured. The reintegra- tion process aims to ensure that children can access their rights, including formal and non-formal education, family unity, dignified livelihoods and safety from harm.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6bdd19ee-5d61-4928-8b32-6e432788de10", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 6, + "Paragraph": "Introduction All child recruitment or use by armed groups is illegal under international law (OPAC Article 4), as is all use of children in hostilities (OPAC Article 1), conscription by state armed forces (OPAC Article 2, International Convention on the Worst Forms of Child Labour (ILO Convention (No. 182)), or enlistment of children without appropriate safe- guards (OPAC Article 3). All child recruitment and use into armed forces is also illegal for those State parties to the Operational Protocol to the Convention Against Torture. The recruitment and use of children under 15 by armed forces and groups may amount to a war crime. There is significant international consensus that the recruitment of children under 18 years old is inconsistent with international standards on child pro- tection. DDR processes, including release and reintegration support for children, shall therefore prioritize prevention, separation of children from armed forces or groups, and redress of this human rights violation. DDR processes shall be specific to the needs of children and apply child- and gender-sensitive approaches. This mod- ule provides critical guidance for DDR practitioners and child protection actors on how to work together to plan, design and implement services and interventions that aim to prevent children\u2019s recruit- ment and re-recruitment, as well as help children to recover and reintegrate children into their families and communities. The guidance recognizes that the needs of children formerly associated with armed forces and groups during reintegration are multisectoral and different than those of adults. Child-sensitive approaches require DDR practitioners and child protection actors to tailor interventions to meet the specific needs of individual boys and girls, but also to target other conflict-affected or at-risk children within the broader community in which children are reintegrating. Finally, the module recognizes that children, as victims of recruitment and use, should not be prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, and notes that children who have reached the MACR and who may have committed criminal acts shall be afforded the protections to which they are entitled, including their rights to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc28de07-32fd-4cce-9abb-94c7d7bf1f46", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 7, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to children and DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b69e18dd-1e71-4874-9b7d-be32dc2508d5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 7, + "Paragraph": "Voluntary Children are entitled to release from armed forces and groups at all times, without pre-condition. Processes for planning and implementing DDR processes shall not delay demobilization or other forms of release of children. Given their age, vulnerability and child-specific needs, during DDR processes, children shall be separated from armed forces and groups and handed over to child protection actors and supported to de- mobilize and reintegrate into families and communities in processes that are separate from those for adults, according to their best interests. While it is critical that children be supported, they shall not be pressured to wait for or to participate in release process- es. They shall also not be removed from their families or communities to participate in DDR processes unless it has been determined to be in their best interest. Their decision to participate shall voluntary and based on informed consent.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "94a80315-f398-4af3-acd6-45fc3ba830da", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 7, + "Paragraph": "Criteria for participation/eligibility Any person below 18 years of age who is associated with an armed force or group shall be eligible for participation in a DDR process designed specifically for children. Children can be associated with armed forces and groups in a variety of ways, not only as combatants, so some may not have access to weapons or ammunition. This is especially true for girls who are often used for sexual purposes, as wives or cooks, but may also be used as spies, logisticians, fighters, etc. DDR practitioners shall recognize that all children must be released by the armed forces and groups that recruited them and receive reintegration support. Eligibility for DDR processes for CAAFAG shall not be conditioned on the child\u2019s possession and handover of a weapon or ammunition, participation in hostilities or weapons training; there shall be no conditions, of any kind, for their participation. If there is doubt as to whether an individual is under 18 years old, an age assessment shall be conducted (see Annex B). In cases where there is no proof of age, or inconclusive evidence, the child shall have the right to the rule of the benefit of the doubt. A dependent child of an ex-combatant shall not automatically be considered to be associated with an armed force or group. However, armed forces or groups may identify some children, particularly girls, as dependents, including as wives, when the child is an extended family member/relative, or when the child has been abducted, or otherwise recruited or used, including through forced marriage. A safe, child- and gender-sensitive individualized determination shall be undertaken to determine the child\u2019s status and eligibility for participation in a DDR process. DDR practitioners and child protection actors shall be aware that, although not all dependent children may be eligible for DDR, they may be at heightened vulnerability and may have been exposed to conflict-related violence, especially if they were in close proximity to combatants or if their parents are ex-combatants. These children shall therefore be referred for sup- port as part of wider child protection and humanitarian services in their communities.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "8dd59f35-32cb-48f2-8fb9-c2d36fd4dbe6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 8, + "Paragraph": "Unconditional release and protection of children DDR processes for children shall not be contingent on political negotiations or adult DDR processes. Efforts shall always be made to prevent recruitment and to secure the release of children associated with armed forces or armed groups, irrespective of the stage of the conflict or status of peace negotiations. Doing so may require negotiations with armed forces or groups. Special provisions and efforts may be needed to reach girls, who often face unique obstacles to identification and release. These obstacles may include specific sociocultural factors, such as the perception that girl \u2018wives\u2019 are de- pendents rather than associated children, gendered barriers to information and sensi- tization, or fear by armed forces and groups of admitting to the presence of girls. The mechanisms and structures for the release and reintegration of children shall be set up as soon as possible and continue during ongoing armed conflict, before a peace agreement is signed, a peacekeeping mission is deployed, or a DDR process or security sector reform (SSR) process is established. Armed forces and groups rarely acknowledge the presence of children in their ranks, so children are often not identified and are therefore excluded from support linked to DDR. DDR practitioners and child protection actors involved in providing services during DDR processes, as well as UN personnel more broadly, shall actively call for the unconditional release of all CAAFAG at all times, and for children\u2019s needs to be considered. Advocacy of this kind aims to highlight the issues faced by CAAFAG and ensures that the roles played by girls and boys in conflict situations are identified and acknowledged. Advocacy shall take place at all levels, through both formal and informal discussions. UN agencies, diplomatic missions, mediators, donors and repre- sentatives of parties to conflict should all be involved. If possible, advocacy should also be linked to existing civil society actions and national systems.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ea55abe5-40ab-4cab-b7df-fa13ec2af928", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 8, + "Paragraph": "In accordance with standards and principles of humanitarian assistance DDR processes shall respect the principles of international humanitarian law and pro- mote the human rights of DDR participants, including children, and the communities into which they reintegrate. Core principles for delivery of humanitarian assistances include humanity, impartiality, neutrality and independence. When supporting chil- dren and families therefore, care shall be taken to assess the possible impact of meas- ures on vulnerable populations which may, by their very nature, have disproportionate or discriminatory impacts on different groups, even if unintended. Responses shall en- hance the safety, dignity, and rights of people, and avoid exposing them to harm, pro- vide access to assistance according to need and without discrimination, assist people to recover from the physical and psychological effects of threatened or actual violence, coercion or deliberate deprivation, and support people to fulfil their rights.2", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b85b1804-3c00-4d53-9c24-bfd56ddf62f5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 9, + "Paragraph": "Gender responsive and inclusive Conflict harms all children, whether they have been recruited or not. An inclusive approach that provides support to all conflict-affected children, including girls, par- ticularly those with vulnerabilities that place them at risk of recruitment and use, shall be adopted to address children\u2019s needs and to avoid the perception that CAAFAG are being rewarded for association with an armed force or group. Gender-responsive ap- proaches recognize the unique and specific needs of boys and girls, including the need for both to have access to sexual violence recovery services, emotional skill develop- ment and mental health and psychosocial support. Non-discrimination and fair and equitable treatment are core principles of DDR processes. Children shall not be dis- criminated against due to age, sex, race, religion, nationality, ethnicity, disability or other personal characteristics or associations they or their families may hold. Based on their needs, CAAFAG shall have access to the same opportunities irrespective of the armed force or group with which they were associated. Non-discrimination also requires the establishment of mechanisms to enable those CAAFAG who informally leave armed forces or groups to access child-sensitive DDR processes (see section 4.1).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "130bf457-4549-4407-bebe-c67acde66874", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 9, + "Paragraph": "Conflict sensitive A conflict sensitive approach ensures that children associated with different groups and forces shall have equal access to and benefit from programmes. Additionally, opportunities to promote peacebuilding and social cohesion through child protection support services and activities shall be leveraged to fortify and build stronger connec- tions between children, irrespective of the armed group or force with which they were previously traveling or associated. DDR practitioners shall ensure that no harm is done to children or their families. Rather, they shall seek to maximize any benefits to children, while minimizing any harm. This shall be done through: Assessing and monitoring both positive and negative impacts for children, disag- gregating data by age, gender and vulnerabilities of the child, while keeping such data protected; and Listening to and considering the voices and views of children in the planning, design, implementation and review of DDR processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "76a4b1eb-5e3b-47ad-8797-0a17f733af5f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 9, + "Paragraph": "Context specific DDR practitioners shall recognize that each conflict context is different, with its own social, political, cultural, economic, gender and other dynamics, and that girls and boys have different needs and capacities. These specificities also require DDR practitioners to recognize that the mechanisms for consultation and engagement may differ by con- text, hence requiring tailored strategies. There is no simple formula that can be applied in all circumstances.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "38628db5-f512-4d9a-986c-b4e86592bd6d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 10, + "Paragraph": "Flexible, sustainable and transparent funding arrangements Sufficient long-term funding is required to implement effective child-sensitive DDR processes. Funding should be made available through a funding mechanism that is independent of, and managed separately from, DDR processes for adults. This funding should be planned for at the outset. DDR practitioners and specialized child protection actors shall be called upon for the necessary political, technical and operational leader- ship within the Government and within the framework of the UN mission or the UN Country Team.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "026c68d2-8171-4c50-8aad-8669f821c78f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 10, + "Paragraph": "Accountability and transparency DDR practitioners and child protection actors shall reaffirm the importance of and respect the best interests of the child and require project staff to be accountable to chil- dren and their caregivers.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7e238778-1bee-48f8-a9df-0ffd8b22eea3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 10, + "Paragraph": "Nationally and locally owned DDR processes for children shall link to national and local structures for child protec- tion with efforts to strengthen institutions working on child rights and advocacy. DDR processes for children require a long implementation period and the long-term success of DDR processes depends on and correlates to the capacities of local actors and com- munities. These capacities shall be strengthened to support community acceptance and local advocacy potential. Participatory and decentralized consultation should be encouraged so that com- mon strategies, responsive to local realities, can be designed. National frameworks, including guiding principles, norms and procedures specific to the local and regional context, shall be established. Clear roles and responsibilities, including engagement and exit strategies, shall be agreed upon by all actors. All such consultation must en- sure that the voices of children, both boys and girls, are heard and their views are in- corporated into the design of DDR processes. As social norms may influence the ability of children to speak openly and safely, DDR practitioners shall consult with experts on child participation. To ensure long-term sustainability, Government should be a key partner/owner in DDR processes for children. The level of responsibility and national ownership will depend on the context and/or the terms of the peace accord (if one exists). Appropriate ministries, such as those of education, social affairs, families, women, labour, etc., as well as any national DDR commission that is set up, shall be involved in the planning and design of DDR processes for children. Where possible, support should be provided to build Government capacity on child protection and other critical social services.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6359a9b6-49a3-44e1-ac2a-b8571b830c71", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 10, + "Paragraph": "Regionally supported Where appropriate, DDR practitioners shall consider regional initiatives prohibiting and responding to the recruitment and use of CAAFAG. Furthermore, regional organ- izations and arrangements to undertake efforts to obtain the release of children from armed forces and groups and their family reunification shall be supported.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "73b8aaaf-1833-4c17-990d-7b778f63ca4e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 11, + "Paragraph": "Integrated Effective coordination with other related sectors (including education, health, youth, and employment) and relevant agencies/ministries is critical to the success of DDR pro- cesses for children. Systems for coordination, information-sharing and reporting shall be established and continuously implemented, so that all concerned parties can work together and support each other, particularly in the case of contingency and security planning. Coordination shall be seen as a vital element of the ongoing monitoring of children\u2019s well-being and shall be utilized to further advanced preparedness, prevent (re-)recruitment and ensure conflict sensitivity. Effective coordination between DDR practitioners working with children and adults should be promoted to support the transition from child to adult for older children (ages 15\u201318). Data on CAAFAG shall be safely secured and only made available to those who have a specific need to access it for a specific purpose that is in a child\u2019s best interests, for example, to deliver a service or make a referral. Confidentiality shall be respected at all times.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f43593f8-8b0c-40a9-9a70-c5f8605e8d45", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 11, + "Paragraph": "Safety and security Prevention and release require considerations related to safety of children, families, communities, DDR practitioners and other staff delivering services for children. DDR processes for children may be implemented in locations where conflict is ongoing or escalating, or in fragile environments. Such contexts present many potential risks and DDR practitioners shall therefore conduct risk assessments and put in place measures to mitigate identified risks before initiating DDR processes. Particular consideration shall be given to the needs of girls and protection of all children from sexual exploitation and abuse. All staff of UN organizations delivering child protection services and organizing DDR processes shall adhere to the require- ments of the Secretary-General\u2019s Bulletin on the Special Measures for Protection from Sexual Exploitation and Sexual Abuse (for UN entities) and the Interagency Standing Committee\u2019s Six Core Principles Relating to Sexual Exploitation and Abuse. DDR processes shall establish an organizational child protection policy and/or safeguarding policy and an individual code of conduct that have clear, strong, and positive commitments to safeguard children and that outline appropriate standards of conduct, preventive measures, reporting, monitoring, investigation and corrective measures the Organization will take to protect participants and beneficiaries from sex- ual exploitation and abuse.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "5db2b515-10c9-4bcc-8b26-b668a677be90", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 11, + "Paragraph": "Planning, assessment, design, monitoring and evaluation The best interests of the child shall be a primary consideration in all assumptions and decisions made during planning. Emphasis is often placed on the need to estimate the numbers of children in armed forces and groups in order to plan actions. While this is important, policymakers and planners should also recognize that it is difficult to obtain accurate figures. Uncertain estimates during planning, however, should not prevent DDR processes for children from being implemented, or from assuring that every child will have sustained reintegration support. Children shall not be included in the count of members of any armed force or group at the time of a DDR process, SSR, or power-sharing negotiations. Legitimacy shall not be given to child recruitment through the inclusion of children within DDR processes to inflate numbers, for example. However, as children will require services, for the purposes of planning the budget and the DDR process itself, children shall be included in the count of persons qualifying for demobilization and reintegration support. Many children who are formally or informally released or who have otherwise left armed forces or groups never have the opportunity to participate in child-sensitive DDR processes. This can happen when a child who flees an armed force or group is not aware of their rights or lives in an area where DDR processes are unavailable. Girls, in particular, may be at higher risk of this as they are often \u2018unseen\u2019 or viewed as depend- ants. DDR practitioners and child protection actors shall understand and plan for this type of \u201cself-demobilization,\u201d and the difficulties associated with accessing children who have taken this route. If levels of informal release or separation are believed to be high (through informal knowledge, data collection or situation analysis), during the planning and design phases, in collaboration with child protection actors, DDR practi- tioners shall establish mechanisms to inform these children of their rights and enable access to reintegration support.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f4ce6622-cff5-421b-8b1f-9e3e61e8909b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 12, + "Paragraph": "Public information and community sensitization Families and communities shall be sensitized on the experiences their children may have had during their association with an armed force or group and the changes they may see, without stigmatizing them. CAAFAG, both girls and boys, often experience high levels of abuse (sexual, physical, and emotional), neglect and distressing and events (e.g., exposure to and perpetration of violence, psychological and physical inju- ry, etc.). They will require significant support from their families and communities to overcome these challenges, and it is therefore important that appropriate sensitization initiatives are in place to ensure that this support is understood and forthcoming. To increase children\u2019s awareness of their rights and the services available, DDR practitioners should use targeted gender- and age-sensitive public communication strategies such as public service announcement campaigns (radio, social media and print), child-friendly leaflet drops in strategic locations, peer messaging and coordi- nation with grassroots service providers to reach children. It is critical for DDR practi- tioners to maintain regular communication with CAAFAG regarding release and rein- tegration processes and support, including services offered and eligibility criteria, any changes to the support provided (delays or alternative modes of service delivery), and the availability of other services and referrals. A lack of proper communication may lead to misunderstandings and frustration among children and community members and further conflict. Communications strategies should be highly flexible and responsive to changing situations and needs. Strategies should include providing opportunities for people to ask questions about DDR processes for children and involve credible and legitimate local actors (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). A well-designed communications strategy creates trust within the community and among the key actors involved in the response and facilitates max- imum participation. In all communications, children\u2019s confidentiality shall be main- tained, and their privacy protected.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "3065c44a-adef-44fa-a2c8-bf0139defc73", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 13, + "Paragraph": "Normative legal frameworks DDR practitioners shall proactively seek to build the following key normative legal frameworks into DDR, from planning, design, and implementation to monitoring and evaluation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "348d519f-5b36-49ac-bd99-ffeb76fd06e1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 13, + "Paragraph": "The Convention on the Rights of the Child and its Optional Protocols The CRC and its OPAC constitute the framework for the principles, norms and standards that underpin DDR processes for children. The CRC defines a \u2018child\u2019 as any human being below the age of 18 years unless, under the law applicable to the child, majority is attained earlier. OPAC prohibits recruitment and use in hostilities of anybody under 18 years of age by armed groups. OPAC also obligates States Parties to set the minimum age of voluntary recruitment of persons into their national armed forces as 15 years of age, establishes safeguards for the voluntary recruitment of persons below the age of 18, and asserts that State Parties take all feasible measures to ensure that members of the national armed forces that are under the age of 18 do not take part in direct hostilities. The rights of the child, as espoused through the CRC and its OPAC, further support the reintegration of CAAFAG through requiring States to promote: The child\u2019s right to life, survival and development: This right is not limited to ensuring a child\u2019s physical well-being but includes the need to ensure full and harmonious devel- opment, including at the spiritual, moral and social levels, where education plays a key role. In respect to DDR processes for children, this shall include consideration of how a child\u2019s experience in conflict impacts upon his/her own evolving capacities, as well as recognition of the resilience displayed in surviving and overcoming difficulties. The child\u2019s right to be free from arbitrary detention: No child shall be deprived of his or her liberty unlawfully or arbitrarily. The arrest, detention or imprisonment of a child shall be in conformity with the law and shall be used only as a measure of last resort and for the shortest appropriate period of time. The child\u2019s right to fair justice and fair treatment: States recognize the right of every child alleged as, accused of, or recognized as having infringed the penal law to be treated in a manner consistent with the promotion of the child\u2019s sense of dignity and worth, which reinforces the child\u2019s respect for the human rights and fundamental free- doms of others and which takes into account the child\u2019s age and the desirability of promoting the child\u2019s reintegration and the child\u2019s assuming a constructive role in soci- ety. States shall seek to promote the establishment of laws, procedures, authorities and institutions specifically applicable to children alleged as, accused of, or recognized as having infringed the penal law, and, in particular The physical and psychological recovery and social reintegration of child victims: States shall take all appropriate measures to promote physical and psychological recovery and social reintegration of a child victim of: any form of neglect, exploitation, or abuse; torture or any other form of cruel, inhuman or degrading treatment or pun- ishment; or armed conflicts. DDR practitioners shall work with States to ensure that recovery and reintegration takes place in an environment which fosters the health, self-respect and dignity of the child. Article 7 of the OPAC forms the legal basis for support to CAAFAG through the obligation of signatories to rehabilitate and socially reintegrate CAAFAG. The child\u2019s right to be free from discrimination: States shall ensure respect for the rights of all children within their jurisdiction \u2013 including non-national children \u2013 regardless of race, sex, age, religion, ethnicity, opinions, disability or any other status of the child or the child\u2019s parents or legal guardians. DDR practitioners shall pay particular atten- tion to ensuring the full involvement and inclusion of girls and their children, as well as addressing any stigmatization of CAAFAG. The child\u2019s right to participate: Children shall be allowed to express their opinions freely and participate in making decisions concerning family reunification and career and educational opportunities, and those opinions should be given due weight in accordance with the age and maturity of the child. Children shall be consulted at all stages of the release and reintegration process, and actions that affect them shall be in their best interests, considering their needs and concerns, placement and family. The child\u2019s best interests as a primary consideration: Actions that affect the child should be based on an assessment of whether those actions are in the child\u2019s best interests. As part of DDR processes for children, this shall mean that all measures to assure release, protection, reintegration and prevention of re-recruitment shall be determined by their best interests. A child shall participate in determining what is in his/her best interests.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5550ec72-2d59-4ed5-bb10-713d9687bc28", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 14, + "Paragraph": "The Worst Forms of Child Labour Convention Under Article 3 of the International Labour Organization Convention No. 182, States Parties shall take immediate and effective measures to secure the prohibition and elim- ination of the worst forms of child labour, which include the forced or compulsory re- cruitment of children for use in armed conflict (a child being defined as a person under the age of 18). Under Article 7(b) the convention also requires States to prevent the en- gagement of children in the worst forms of child labour, and to provide the necessary and appropriate direct assistance for the removal of children from the worst forms of child labour and for their rehabilitation and reintegration.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "961b914f-a7f0-4e56-86b4-8aabcfa5d1ef", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 14, + "Paragraph": "African Charter on the Rights and Welfare of the Child The African Charter on the Rights and Welfare of the Child (1990) requires that States take all necessary measures to ensure that no child shall take a direct part in hostilities and refrain, in particular, from recruiting any child (Article 22).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8125ab6a-0db9-4a02-bb77-7d59beb6f5e7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 15, + "Paragraph": "Additional Protocols I and II to the Geneva Conventions The Additional Protocols I (Article 77) and II (Article 4(3)) to the Geneva Conventions call for the special respect and protection of children in armed conflict (Rule 135), underscoring that children who have not attained the age of fifteen years, shall neither be recruited into armed forces or groups (Rule 136), nor be allowed to take part in hos- tilities (Rule 137). The protocols provide for additional special protection for children affected by armed conflict to include protection against all forms of sexual violence (Rule 93), sepa- ration from adults while deprived of liberty, unless they are members of the same family (Rule 120), access to education food and health care (Rules 55, 118, and 131), evacuation from areas of combat for safety reasons (Rule 129), reunification of unaccompanied children with their families (Rules 105 and 131), and application of the death penalty.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "37233e1a-0cff-4bb1-9744-e84c38b275c7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 15, + "Paragraph": "The Rome Statute of the International Criminal Court Article 8(2)(b)(xxvi) and 8(2)(e)(vii) of the Rome Statute of the International Criminal Court makes it a war crime, leading to individual criminal prosecution, to conscript or enlist children under the age of 15 years into armed forces or groups or to use them to participate actively in hostilities, in both international and non-international armed conflicts.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4b7f3360-b263-42a0-b1bc-d707f5d70071", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 15, + "Paragraph": "Security Council Resolution 1539 Security Council resolution 1539 (2004) calls for engaging armed forces and groups in dialogue leading to time-bound action plans to prevent and end grave violations against children, including the release of children. Those engaged in securing the release of children should make contact with armed forces and groups recruiting and using children, where it is safe to do so and in accordance with UN guidelines.3 Engagement with armed forces and groups will often occur as part of the Monitoring and Reporting Mechanism (MRM) led by the Country Task Force on Monitoring and Reporting. Those parties to the conflict that enter into dialogue with the UN can develop time-bound action plans, following their listing in the annexes of the Secretary General\u2019s annual report for grave violations against children (including the recruitment and use of children). The unconditional release of children, prevention of grave violations and awareness-raising on the issue of child recruitment and use, as well as other activities, shall be included in such action plans. Training and capacity building for armed forces or groups on their obligations un- der international law relating to the recruitment and use of children should be provid- ed, including the identification and release of children, age assessment procedures to prevent child association, gender-based violence and other child protection concerns, and respect for humanitarian norms and principles.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "18256fca-b5f0-47cc-beb7-a3fa65b656c6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 16, + "Paragraph": "Security Council Resolution 2427 Security Council Resolution 2427 (2018) urges \u201cconcerned Member States to main- stream child protection and ensure that the specific needs of girls and boys are fully taken into account at all stages of disarmament, demobilization, and reintegration pro- cesses (DDR), including through the development of a gender-and age-sensitive DDR process\u201d. The resolution also stresses the need to pay particular attention to the treat- ment of children associated or allegedly associated with all non-state armed groups, including those who commit acts of terrorism, in particular by establishing standard operating procedures for the rapid handover of these children to relevant civilian child protection actors.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1305c4e5-c09f-433e-97b4-dee274922a52", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 16, + "Paragraph": "The Paris Principles and Paris Commitments The 2007 Paris Principles, building on the 1997 Cape Town Principles, detail eight general principles and eight operational principles to protect children. Specific consideration is given to girls and their particular needs and challenges. The Paris Principles aim to guide interventions with the following objectives: To prevent the unlawful recruitment or use of children; and To facilitate the release of CAAFAG; and To facilitate the reintegration of all CAAFAG; and To ensure the most protective environment for all children. The Paris Commitments \u2013 commitments to protect children from unlawful recruit- ment or use by armed forces or groups \u2013 supplement the Paris Principles and have two main priorities: (1) to put an end to the unlawful recruitment and use of children by armed forces and groups globally, and (2) to make all necessary efforts to uphold and apply the Paris Principles through political, diplomatic, humanitarian, technical assis- tance and funding roles, consistent with international obligations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7eaef814-c421-4c3f-ba9e-567ba84f84e3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": null, + "Paragraph": "\u201cThe Beijing Rules\u201d for the administration of Juvenile Justice. Applicable in the context of CAAFAG, the UN Standard Minimum Rules for the Administration of Juvenile Justice adopted by General Assembly resolution 40/33 in 1985 provide guidance for the arrest or detention of children. Children retain all the rights already covered for adults if arrested. The rules require detention of children only as a last resort so that arrest, detention or imprisonment of children should be avoided whenever possible. When children are arrested and detained, their cases are to be given the highest priority and handled expeditiously to ensure the shortest possible period of detention prior to trial. States should ensure that accountability mechanisms are fully in line with international law related to juvenile justice. International child rights and juvenile justice standards require that alternatives to normal judicial proceedings in criminal courts should be applied, providing that human rights and legal safeguards are fully respected (CRC, Article 40[3b], Rule 11, \u2018Beijing Rules\u2019). For example, restorative justice \u2013 achieved through finding alternatives to criminal courts \u2013 involves the child offender understanding and taking responsibility for his/her actions with the goal of achieving reconciliation between the offender, the victim and the wider community through reparations. Such a procedure should ensure that the rights of the child are protected throughout. The child\u2019s participation in a re- storative justice process shall be voluntary and preceded by informed consent (given by both the child and his/her parent or guardian). Measures to prevent the child from becoming distressed must be in place.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "1c10fd7f-d17b-48e5-952a-40e03baf6343", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 17, + "Paragraph": "Planning DDR processes for children DDR processes for children require joint planning and coordination between DDR prac- titioners and child protection actors involved in providing services. Joint planning and coordination should be informed by a detailed situation analysis and by a number of Minimum Preparedness Actions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "39e02e3c-22fa-4909-b209-f7c9b79b63a3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 17, + "Paragraph": "Assessments: Context analysis A detailed situation analysis should assess broad conflict-related issues (location, political and social dynamics, causes, impacts, etc.) but also the specific impacts on children, including disaggregation by gender, age and location (urban-rural). The situ- ation analysis is critical to identifying obstacles to, and opportunities for, reintegration support. A detailed situation analysis should examine: The objectives, tactics and command structure/management/hierarchy of the armed force or group; The circumstances, patterns, causes, conditions, means and extent of child recruit- ment by age and gender; The emotional and psychological consequences of children\u2019s living conditions and experiences and their gendered dimensions; Attitudes, beliefs and norms regarding gender identities in armed forces and groups and in the community; The attitudes of families and communities towards the conflict, and the extent of their resilience and capacities; The absorption capacity of and support services necessary in communities of re- turn, in particular families, which play a critical role in successful release and reintegration efforts; The extent of children\u2019s participation in armed forces and groups, including roles played and gender, age or other differences; Children\u2019s needs, expectations, and aspirations; The evident obstacles to, and opportunities for, child and youth reintegration, with consideration of what risks and opportunities may arise in the future; and The needs of, and challenges of working with, special groups (girls, girl mothers, disabled children, foreign children, young children, adolescents, male survivors of sexual violence, severely distressed children, children displaying signs of post-traumatic stress disorder, and unaccompanied and separated children). DDR practitioners should be aware that the act of asking about children\u2019s and commu- nities\u2019 wishes through assessments can raise expectations, which can only be managed by being honest about which services or assistance may or may not ultimately be provid- ed. Under no circumstances should interviewers or practitioners make promises or give assurances that they are not certain they can deliver. Neither should they make promises about actions others may take. Some suggested key questions for context analysis can be found in Box 1 (see also IDDRS 3.11 on Integrated Assessments).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "612902e7-b2a2-4ef8-9a9f-543ca884f355", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 19, + "Paragraph": "Minimum Preparedness Actions In addition to the context analysis, DDR practitioners and child protection actors should take the following Minimum Preparedness Actions into consideration when planning. These actions (outlined below) are informed by the Interagency Standing Committee\u2019s Emergency Response Preparedness Guidelines (2015): Risk monitoring is an activity that should be ongoing throughout implementation, based on initial risk assessments. Plans should be developed detailing how this ac- tion will be conducted. For CAAFAG, specific risks might include (re-)recruitment; lack of access to DDR processes; unidentified psychosocial trauma; family or community abuse; stigmatization; and sexual and gender-based violence. Risk monitoring should specifically consider the needs of girls of all ages. Risk monitoring is especially critical when children self-demobilize and return to communities during ongoing conflict. Results should be disaggregated to ensure that girls and other particularly vulnerable groups are considered. Clearly defined coordination and management arrangements are critical to ensuring a child-sensitive approach for DDR processes, particularly given the complexity of the process and the need for transparency and accountability to generate community sup- port. DDR processes for children involve a number of agencies and stakeholders (na- tional and international) and require comprehensive planning regarding how these bodies will coordinate and report. The opportunity for children to be able to report and provide feedback on DDR processes in a safe and confidential manner shall be ensured. Moreover, an exit strategy should feature within a coordinated approach. Needs assessments, information management and response monitoring arrangements must be central to any planning process. The needs of boy and girl CAAFAG are mul- tifaceted and may change over time. A robust needs assessment and ongoing moni- toring of the reintegration process for children is essential to minimize risk, identify opportunities for extended support and ensure the effective protection of all children \u2013 especially vulnerable children \u2013 involved in DDR. Effective information manage- ment should be a priority and should include disaggregated data (by age, sex, ethnicity, location, or any other valid variable) to enable DDR practitioners and child protection actors to proactively adapt their approaches as needs emerge. It is important to note that all organizations working with children should fully respect the rights and confi- dentiality of data subjects, and act in accordance with the \u201cdo no harm\u201d principle and the best interests of children. Case management systems should be community-based and, ideally, fit within existing community-based structures. Case management systems should be used to tailor the types of support that each child needs and should link to sexual and/or gender-based violence case management systems that provide specialized support for children who need it. Because reintegration of children is tailored to the individual needs of a child over time, a case management system is best to both address those needs and to build up case management systems in communities for the long term. Reintegration opportunities and services, including market analysis are critical to in- form an effective response that supports the sustainable economic reintegration of chil- dren. They should be used in conjunction with socioeconomic profiles to enable the development of solutions that meet market demand as well as the expectations of child participants and beneficiaries, taking into account gendered socio-cultural dynamics. See IDDRS 5.30 on Youth and DDR, sections 7 and 8, for more information. Operational capacity and arrangements to deliver reintegration outcomes and ensure protection are essential to DDR processes for children. Plans should be put in place to enhance the institutional capacity of relevant stakeholders (including UN agencies, national and local Governments, civil society and sectors/clusters) where necessary. Negotiation capacity should also be considered in situations where children continue to be retained by armed forces and groups. The capacity of local service providers, businesses and communities, all of which will be directly involved on a daily basis in the reintegration process, should also be supported. Contingency plans, linked to the risk analysis and monitoring system, should be developed to ensure that DDR processes for children retain enough flexibility to adapt to changing circumstances.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "cb3fade5-8d62-43ab-a08c-3b5ab37fbe27", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 20, + "Paragraph": "Data Data is critical to the design and implementation of DDR processes for children. Information on a child\u2019s identity, family, the history of their recruitment and experi- ence in their armed force or group, and their additional needs shall be collected by trained child protection personnel as early as possible and safely stored. All data shall be sex-disaggregated to ensure that DDR processes are able to effectively respond to gendered concerns.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8b9aee0f-b1ab-47e4-a42e-7cd39244dc7c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 20, + "Paragraph": "Data collection Information collected from CAAFAG shall be used only to deliver services to children and to design and implement child- and gender-sensitive DDR processes. Other actors often try to obtain actionable military or intelligence information on armed opposition groups from demobilized children or may interrogate children as they view them as threats. Such actions could amount to a violation of child rights, as it places children in danger and may undermine the release process. The Paris Principles (Article 7.25) expressly state that \u201cinterviews should never be conducted to collect information for military purposes.\u201d In addition, Security Council resolution 2427 (2018) states that CAAFAG are to be treated as victims of violations of international law. A commitment shall be obtained from Governments that children will be handed over to civilian child protection authorities as soon as possible and that military information will not be sought from them under any circumstances. Where interviews are necessary for legit- imate purposes, as few individuals as possible should interview children to eliminate risks and harms that stem from repeated interviewing. Interviewers shall be trained child protection actors skilled in interviewing children. The Security Council has expressed \u201cgrave concern at the use of detained chil- dren for information gathering purposes.\u201d (UNSCR 2427, OP 20) Therefore, interviews with CAAFAG shall be carried out with the utmost concern for the child\u2019s privacy, dignity and confidentiality. Those providing information (children and caregivers) shall be fully informed about the purpose of the information gathering, how the in- formation will be used and how it will be kept confidential. Voluntary and informed consent shall be required before proceeding with any interview and the child shall be informed that he or she may stop the interview at any time without any need to give a reason. Child protection agencies and/or safeguarding personnel shall provide support, guidance and direction for such interviews. If no parent or guardian is avail- able, a trusted adult shall be provided during any interview and undertake the role of protecting the child\u2019s interests. Interviews shall be conducted in the mother tongue of the child at the pace that he or she sets. Questions shall be posed in child-friendly and age-appropriate language and be rephrased if necessary, and information received clarified. Some information can be sensitive, and the children who provide it may be subject to threats. As children are usually aware of the threats they face, they may provide misleading information to try to protect themselves. These fears shall be identified and measures to deal with them shall be developed. Security should be a key concern and informed by a security risk assessment. During interviews, staff shall pay attention to, and have plans to safe- guard children from, anyone who may intimidate or threaten them. Interviews with children shall be carried out in a safe place. If the child wishes to stop the interview, or begins to display signs of distress, the interview shall be stopped immediately. To safeguard the child and the interviewer, no adult shall conduct an interview alone with the child; mixed gender teams shall be provided. No child shall be subject to pressure, coercion, manipulation, including promises, or to any other physical, emotional or psychological tactics to obtain information.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "27a73c7a-b693-4958-aa80-829d4b53efb8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 21, + "Paragraph": "Data management Effective and secure data management is an important aspect of DDR processes for children as, beyond ethical considerations, it helps to create trust in the DDR process. Data management shall follow a predetermined and standardized format, including information on roles and responsibilities, procedures and protocols for data collec- tion, processing, storage, sharing, reporting and archiving. Rules on confidentiality and information security shall be established, and all relevant staff shall be trained in these rules, to protect the security of children and their families, and staff. Databases that contain sensitive information related to children shall be encrypted and access to information shall be based on principles of informed consent, \u2018need to know\u2019 basis, \u2018do no harm\u2019 and the best interests of the child so that only those who need to have access to the information shall be granted permissions and the ability to do so.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7a30defa-06df-4183-b054-d99cc2f06d98", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 22, + "Paragraph": "Gender responsive and transformative The specific needs of girls and boys shall be fully considered in all stages of DDR pro- cesses. A gender-transformative approach should be pursued, aiming to shift social norms and address structural inequalities that lead girls and boys to engage in armed conflict and that negatively affect their reintegration. Within DDR processes, a gen- der-transformative approach shall focus on the following: Agency: Interventions should strengthen the individual and collective capacities (knowledge and skills), attitudes, critical reflection, assets, actions and access to services that support the reintegration of girls. Relations: Interventions should equip girls with the skills to navigate the expec- tations and cooperative or negotiation dynamics embedded within relationships between people in the home, market, community, and groups and organizations that will influence choice. Structures: Interventions should address the informal and formal institutional rules and practices, social norms and statuses that limit options available to girls and work to create space for their empowerment. The inclusion of girls in DDR processes is central to a gender-transformative approach. CAAFAG are often at great risk of gender-based violence, including sexual violence, and hence may require a range of gender-specific services and programmes to support their recovery. Children, especially girls, are often not identified during DDR processes as they are not always considered to be full members of an armed force or group or may be treated as dependents or wives. Furthermore, DDR practitioners are not always properly trained to identify girls associated with or formerly associated with armed forces and groups and cater to their needs. Often, girls who informally leave armed forces or groups do so to avoid stigma- tization or reprisal, or because they are unaware that they have the right to ben- efit from any kind of support. For these reasons, specific mechanisms should be developed to identify girls formerly asso- ciated with armed forces and groups and inform them about the benefits they may be entitled to through child-sensitive DDR processes. In order not to put girls at risk, this must be done in a sensitive manner, for example, through organizations and groups with which girls are already involved, such as health care facilities (particularly those dealing with reproductive health), religious centres and organizations that assist survivors of sexual violence (see IDDRS 5.10 on Women, Gender and DDR). As a key element, a gender-transformative approach should also engage boys, young men, and the wider community so that girls may be viewed and treated more equally by the whole community. It should also recognize that boys and men may also become associated with armed forces and groups due to expectations about the gender roles they should perform, including roles as protector and bread winner even at young ages, particularly where a father has died or is missing, and about social norms that promote violence and/or taking up arms as acceptable or preferred measures to resolve problems. This community-based approach is necessary to help promote the empower- ment of girls by educating traditional patriarchal communities on gender equality and thus work towards countering harmful gender norms that enable violence to flourish. Other gender transformative approaches critical for boys include: Non-violent forms of masculinities: Often through socialization into violence or through witnessing the use of violence while with armed forces and groups, boys may develop an association of violence through social norms surrounding mas- culinity and social recognition. Such associations may in turn lead to the develop- ment of anti-social behaviour towards themselves, to girls or vulnerable groups, or to community. Supporting boys in deconstructing violent or militarized norms about masculinity is an essential part of breaking the cycle of violence and sup- porting successful reintegration. This may also involve supporting emotional skill development, including understanding and working with anger in a healthy way. Gender-Equitable Relations and Structures: The ideology, structure and treatment of women or girls in armed forces and groups may have led to the development of non-equitable views regarding gender norms, which may affect notions of what \u2018consent\u2019 is. Supporting equitable norms, views, and approaches to being in relationship with girls, and cultivating respect for agency and choice of girls and women, is critical to supporting boys formulate healthy norms and relationships in adulthood. A gender-transformative approach should also ensure that gender is a key feature of all DDR assessments and is incorporated into all elements of release and reintegration (see IDDRS 3.10 on Integrated Assessments).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "09781376-34e6-4676-98b4-67ec2043e280", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 23, + "Paragraph": "Prevention of recruitment and re-recruitment of children The factors that lead to children associating with armed forces and groups are com- plex, and usually involve a number of push and pull factors specific to each child and their wider environment. Understanding the recruitment pathways of children into armed forces and groups is important for development of effective (re-)recruitment prevention strategies and can influence reintegration programming. For example, in some instances of forcible recruitment, new members are required to engage in violence against their family and community to reduce the incentive to escape. This can make their reintegration and community acceptance particularly difficult. Prevention efforts should start early and take place before and continuously throughout armed conflict. Furthermore, these efforts should recognize that children are embedded in families and communities, and programmes must target each part of their ecosystem. Prevention efforts should be based on an analysis of the dynam- ics of recruitment and its underlying causes and include advocacy strategies that are directed at all levels of governance, both formal and informal. Government ministries, child focused nongovernmental organizations, DDR practitioners and child protec- tion actors should monitor and analyse information on the recruitment of children to understand recruitment patterns.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "d6646c5b-1665-48d3-a01f-33342ff1fe87", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": null, + "Paragraph": "Identification and documentation of risks of (re-)recruitment To prevent the (re-)recruitment of children as part of DDR processes, various risk factors should be analysed at the structural, social and individual levels (see Table 1 below). Special focus shall be given to children at the most risk of recruitment.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1553b951-2e6f-40e3-bcd6-639d41fa7dad", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": null, + "Paragraph": "Some children are particularly vulnerable to (re-)recruitment because of inadequate protection, such as children living in conflict zones, child refugees or those who have been internally displaced, unaccompanied children, orphans or those separated from their families, children in child- or female-headed households, and children with very young parents. Girls and boys are at greater risk of being recruited in certain locations, such as zones of intense conflict; areas frequently crossed by troops; and public places with concentrations of children such as markets, schools, refugee camps or camps for internally displaced persons, and places where children go to fetch wood or water. Child recruitment is not always a sudden occurrence, but can take place gradually, progressing from initial contact to formal association. Children may start with occa- sional visits to the camps of armed forces or groups to look for food, polish shoes or carry out other tasks. Increasingly, they are given more responsibilities, then they may seek shelter at these camps, and even- tually they start to take part fully in mili- tary life. Preventing this kind of \u2018voluntary\u2019 recruitment is a particular challenge and engagement is needed to sensitize communities on the risks of children having contact and forming associations with an armed force or group, even if it appears harmless. It is also important that the identification and documentation of (re-)recruitment risk considers aspects of child agency that may make children more vulnerable to recruitment. While forcible recruitment remains an issue, most children are recruit- ed through the manipulation of their economic, social, political and/or psychological vulnerability.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "59a6580f-46ef-4138-a2ab-cb4ac6326876", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 25, + "Paragraph": "Prevention of recruitment through the creation of a protective environment The most effective way to prevent child (re-)recruitment is the development and on- going strengthening of a protective environment. Building a protective environment helps all children in the community and supports not only prevention of (re-)recruit- ment but effective reintegration. To this end, DDR practitioners should jointly coordi- nate with Government, civil society, and child protection actors involved in providing services during DDR processes to strengthen the protective environment of children in affected communities through:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a429dff6-7187-472c-9fdd-126558fb78eb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 25, + "Paragraph": "Family resilience Efforts should be made to strengthen family resilience, especially in assisting parents to cope with wartime stress, including through access to mental health support and parenting classes, and to minimize the risks of negative family coping behaviours (e.g., child neglect, domestic violence, child marriage and parental discord). Parents also have a role to play to build resilience in their children and educate them on the risks of recruitment. This may include informing them about recruiting efforts on the internet and social media, if they play a key role in driving the conflict. Parents should also be supported to counter gender-based societal expectations of boys as fighters and girls as \u2018bush wives\u2019.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9ee39c56-239a-422f-86ce-266beb47a70f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 25, + "Paragraph": "Community resilience Working with communities to help them better understand why children might join armed forces and groups, explain the developmental effects of child recruitment, and identify how to protect children will all help to prevent (re-)recruitment. Communi- ties should be encouraged to establish communitybased child protection networks. These networks can work on awareness-raising, good parenting skills, identifying at- risk children and mediating family disputes (where appropriate and with training). Where appropriate, these networks can be supported to establish community mon- itoring mechanisms, such as early warn- ing systems. Non-individually identifiable data from these early warning systems can then be shared with national human rights commissions, national observatories and/or Government authorities. In addition, where appropriate, children may be included in community violence reduction (CVR) programmes, consistent with relevant national and international legal safeguards, including on the involvement of children in hazardous work, to ensure their rights, needs and well-being are carefully accounted for (see section 8.4 below and IDDRS 2.30 on Community Violence Reduction).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "48431d43-1f2e-45f0-ae0d-a24651584f59", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 26, + "Paragraph": "Addressing socioeconomic insecurity An important way to prevent child recruitment into armed forces and groups can be to address the underlying socioeconomic factors that cause children to be vulnerable to (re-)recruitment. Investment in education and broader economic development and employment opportunities may help. Investment in basic service delivery, necessary community infrastructure and key markets at the local level can also support commu- nity initiatives to prevent (re-)recruitment. Socioeconomic prevention methodologies should be linked \u201ccoherently and as early as possible to national and sectoral frame- works and policies for peacebuilding, recovery and development where they exist at the country level.\u201d4", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "577d2666-39a5-4906-8fa6-b2df71d50c4d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 26, + "Paragraph": "Child protection advocacy Adult members of armed forces and groups shall be sensitized regarding child rights, including rights of girls. Taking this action contributes to a protective environment, as it removes justifications for recruitment of children. Advocacy shall also be directed towards national decision makers, as this can raise awareness of the recruitment and use of children in armed conflict and can lead to the introduction of new laws. Advocacy may include measures towards the ratifi- cation and implementation of international legal instruments on child protection, or the reinforcement of these legal instruments; the adaptation of laws related to the re- cruitment and use of children in armed conflict; and the end of impunity for those who recruit and/or use children in armed conflict. It should also include laws and policies that protect children against forms of child abuse, including gender-based vio- lence, that are sometimes among the factors that prompt children to join armed forces and groups. After enactment, appropriate sanctions can be implemented and enforced against people who continue to recruit children. A strong awareness of the existing legal framework is considered central to pre- vention strategies, but international norms and procedures alone do not restrain armed groups. Awareness campaigns should be followed up with accountability measures against the perpetrators. However, it should also be recognized that punitive approach- es intended to strengthen prevention down the line can also have unintended conse- quences, including armed groups actively hiding information about children in their ranks, which may make military commanders more reluctant to enter DDR processes (see IDDRS 6.20 on DDR and Transitional Justice).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b5b3df13-1b13-4ae5-97d8-b3e86a7aad94", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 27, + "Paragraph": "7.2.7 Monitoring and reporting on the recruitment and use of children Monitoring and reporting on the (re-)recruitment of children is an important compo- nent of prevention and should be given adequate investment in terms of resourcing, capacity, safety and time. The UN mandated monitoring and reporting mechanism (MRM) on grave violations of child rights in situations of armed conflict, including their recruitment and use, is a comprehensive system for collecting, verifying and reporting on such violations (UNSCR 1612 (2005)). The MRM is designed \u201cto provide for the systematic gathering of accurate, timely, objective and reliable information on grave violations committed against children\u201d5 within the context of armed conflict that will enable responses to increase compliance with international legal obligations and to end and prevent violations. Where the MRM has been activated, engagement with parties to the conflict to develop action plans to eliminate recruitment and use of children can both lead to release of children in the ranks of armed forces or groups and provide opportunities to prevent future (re-)recruitment (see section 5.3). Where pos- sible and safe to do so, DDR processes should support engagement with armed forces and groups and be part of verification of compliance with such action plans, including commitments to release children. Any activities should adhere to mandatory reporting laws on child abuse or gender- based violence against children, regardless of whether an MRM has been activated. Practitioners should be clear about what these laws are, be sure that children under- stand any mandatory reporting nationally and provide informed consent if relevant. Referral pathways for necessary response services should be available before engaging with survivors so that referrals can be made in the event of a disclosure. In addition, where relevant and safe, there should be coordination, harmonization and cross checks with the Monitoring and Reporting Arrangement (MARA) of the Conflict Related Sexual Violence (CRSV). CRSV takes multiple forms such as rape, forced pregnancy, forced sterilization, forced abortion, forced prostitution, sexual exploitation, trafficking, sexual enslavement, forced circumcision, castration, forced nudity or any other form of sexual violence of comparable gravity. Depending on the circumstances, it could constitute a war crime, a crime against humanity, genocide, torture or other gross violation of human rights. See definition of CRSV: Analytical and Conceptual Framing of Conflict-related Sexual Violence, June 2011.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d262a5ea-12d8-4026-b2bc-0c79179a3095", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 28, + "Paragraph": "Child-sensitive approaches to DDR When designing and implementing DDR processes for CAAFAG, DDR practitioners and child protection actors must tailor support to the individual child and root them in community-based approaches and structures. Individualized interventions recognize that there important differences between children based on age; from those who may appear to have voluntarily joined an armed force or group and those who have been obviously forced to do so; from those who have made decisions and been given leadership or other responsibilities when they were members of armed forces and groups and those who have been slaves; and from those who have a family waiting for them and those who cannot or wish not to return, etc. Not all children will require the same level of attention, the same approach, or the same support. Some children (e.g., girl mothers, child heads of households, etc.) may have current responsibilities that re- quire training support for immediate em- ployment. Workable ways of addressing each child\u2019s situation should be developed. However, it is critical that support to CAAFAG be provided through broader holis- tic community-based strategies and approaches, that target CAAFAG as well as other children in conflict-affected communities. Providing similar services and reintegration support that benefit children within the wider community will mitigate against the risk of resentment, while also serving as a prevention tool that can build community resilience and address some of the underlying factors that contribute to the (re)recruit- ment of children into armed forces and groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4449027c-9d93-4c3e-8fcd-68793771296d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 28, + "Paragraph": "Disarmament Disarmament may represent the first sustained contact for CAAFAG with people out- side of the armed force or group. This can be a difficult process, as it is often the first step in the transition from military to civilian life. As outlined in section 4.2.1, CAAFAG shall be eligible for DDR processes for children irrespective of whether they present themselves with a weapon or ammunition and irrespective of the role they may have played. Children with weapons and ammunition shall be disarmed, preferably by a military or government authority rather than a DDR practitioner or child protection actor. They shall not be required to demonstrate that they know how to use a weapon. CAAFAG shall be given the option of receiving a document certifying the surrender of their weapon or ammunition if there is a procedure in place and if this is in their best interests. For example, this would be a positive option if the certificate can protect the child against any doubt over his/her surrender of the weapon/ammunition, but not if it will be seen as an admission of guilt and participation in violence in an unstable or insecure environment or if it could lead to criminal prosecution (see IDDRS 4.10 on Disarmament).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "373e8d65-c34b-42fe-8be2-fa085d9bce53", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 29, + "Paragraph": "Demobilization Transition from military to civilian life may be difficult for CAAFAG because, in spite of the hardships they may have experienced during their association, they may also have found a defined role, responsibility, purpose, status and power in an armed force or group. For children who have been in an armed force or group for many years, it may at first seem impossible to conceive of a new life; this is particularly true of young- er children or CAAFAG who have been indoctrinated to believe that military life is best for them and who know nothing else. DDR practitioners must work together with child protection actors to prioritize physically removing CAAFAG from contact with adult combatants. Removing CAAF- AG from armed forces and groups should be done in a responsible but efficient way. Symbolic actions \u2013 such as replacing military clothing with civilian clothing \u2013 can aid this adjustment; however, such actions must be clearly explained, and the child\u2019s wel- fare must be paramount. Providing civilian documentation such as identity papers may be symbolic but also practical as it may allow the child to access certain services and therefore ease the child\u2019s reintegration. Children need immediate reassurance that there are fair and realistic alternatives to military life and should receive information that they can understand about the benefits of participating in DDR processes as well as the different steps of the process. However, under no circumstances should inter- viewers or practitioners make promises or give assurances that they are not absolutely certain they can deliver. Official documentation marking demobilization may help to protect children from abuse by authorities or armed forces and groups that are still active. However, staff should establish that such documents cannot be seen and will not be used as an admission of guilt or wrongdoing. Official identification documents certifying that a child has demobilized can be provided when this protects children from re-recruit- ment and assures their access to reintegration support. Civilian documents proving the identity of the child with no mention of his/her participation in an armed force or group should be made available as soon as possible.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "01d02e77-aa49-4e95-be15-bf081f294334", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 29, + "Paragraph": "Demobilization sites Depending on the specific DDR process in place, demobilization may occur at semi- permanent military-controlled sites (such as cantonment sites), reception centres or mobile demobilization sites (see IDDRS 4.20 on Demobilization). When reporting to such sites, the time CAAFAG spend at the site shall be as short as possible, and every effort shall be made to rapidly identify them, register them and supply them with their immediate needs. Where possible, children should be identified before arrival at the demobilization site so that the documentation process (identification, verification, reg- istration, medical needs) and other applicable procedures last no longer than 48 hours, after which they shall be transferred to an interim care centre (ICC) for children or to another location under civilian control. If CAAFAG report or are brought to mobile demobilization sites or reception centres, standard operating procedures shall be in place outlining when and how the handover to civilian authorities will take place. At all demobilization sites, semi-permanent or otherwise, particular attention shall be given to the safety and protection of children during their stay, through measures such as proper lighting, regular surveillance and security patrols. Children shall be physically separated from adult combatants, and a security system shall be established to prevent adult access to them. Girl mothers, however, shall not be separated from their children. Separate accommodation must be provided for boys and girls, including separate washing and toilet facilities, with specific health services provided when nec- essary (e.g., reproductive health services and hygiene kits adapted to specific needs). Female staff shall be provided for locations where girls are staying. Since a number of girls are likely to be mothers, demobilization sites shall also be designed to provide proper food and health care for infants and young children, with childcare assistance provided for mothers unable to care for their children. Demo- bilization sites must, without exception, provide medical health screening, including sexual health screening to all children, and provide necessary treatment. Efforts shall be made to improve the overall health of CAAFAG through early detection, immuniza- tion, treatment of severe conditions (such as malaria and acute respiratory infections), treatment for wounds and injuries, triage and referral of serious cases to secondary/ tertiary facilities (see IDDRS 5.70 on Health and DDR). Children shall be informed that they have the right not to be abused or exploited including the right to protection from sexual exploitation and abuse, and child labour, and that they have the right and ability, through adapted and efficient report- ing and complaints mechanisms, to report abuse. When children do report abuse or exploitation by adult former combatants, staff or adult caregivers, they shall not be stigmatized or made to feel disloyal in any way. Their complaints must also be acted upon immediately through child-friendly mechanisms designed and put in place to protect them from such exploitation and to punish the offenders to the fullest extent possible. If children reporting abuse request such a service, they shall be given space and time to share their emotions and reflect on their experiences with health workers trained in psychotherapeutic assistance. Mechanisms shall be established to prevent offending staff from working with children in similar situations in the future (see also section 4.10.1).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "612a8154-afe6-49d1-a998-1dcade911918", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 30, + "Paragraph": "Transport Children are particularly vulnerable when their physical protection is no longer secure, including during troop movements between camps and demobilization sites. Suffi- cient, appropriate and secured means of transportation shall be planned in order to transport children in the shortest time possible, and they should be accompanied by civilian child protection staff. Children shall be informed, clearly and in advance, of all movements arranged for them. Family accompaniment during transport should be encouraged where possible, as this will promote community acceptance. Interim alternative care", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d2c23e97-8843-460d-8974-2205fa9d4fe3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 30, + "Paragraph": "8.3. 1 Interim care centres Interim care centres are not necessary in all DDR processes for children, especially when the placement of a child in an ICC delays family and community reunification. However, ICCs can be used as a last resort, as they provide a secure space that may help children sever their links with armed forces and groups; allow time for family tracing, verification and, if necessary, gradual reunification (see section 7.4); enable medical support to be provided, including mental health and psychosocial support; and pro- vide an opportunity for pre-discharge awareness-raising/ sensitization. ICCs are not the same as cantonment sites. ICCs shall be child-friendly and their management and services consistent with the Alliance for Child Protection in Human- itarian Action\u2019s Minimum Standards and the Guiding Principles in Interim Care Plan- ning and Provision6 for community-based interim care. The best interests of the child shall be a primary consideration. Factors of necessity and appropriateness shall also be considered with the aim that a child will be placed into an ICC only if there is no other family- or community-based interim care available, and any placement will be for the shortest period necessary. Staffing levels for ICCs shall depend on the number, ages and needs of children in the facility. Their care and protection should be paramount, with an emphasis on reuniting children with their families or providing alternative community-based care solutions as swiftly as possible (see Annex C for more details). While security of the facility is a key concern, ICCs shall remain child-friendly and not inadvertently transform into detention facilities. Adults shall not be accommodated at ICCs, and children accommodated at these centres should be grouped according to age (unless they are girl mothers). Tracing, verification, reunification, case management and monitoring should be carried out at ICCs to facilitate the return of children to their communities (including community outreach). Health check-ups and specialized health services should be provided \u2013 for example, reproductive health and antenatal services, diagnosis of sexually transmitted infections, and voluntary and confidential HIV testing and counselling \u2013 while nutri- tional deficiencies and war-related injuries should receive treatment. Children should receive counselling, including help to overcome distress or trauma, develop self-esteem and learn life skills; learn about reintegration and livelihood opportunities, as well as information about child labour; and receive peace education and training in non-violent conflict resolution to help them regain a sense of the social norms and routines of civil- ian life. Sports, cultural and recreational activities should be provided to keep children occupied and help them build trust, but there should be no formal education or train- ing activities within the ICC apart from assessments of literacy and numeracy. Formal education and training should be provided within the community. Children should be transferred as quickly as possible to their communities, consistent with their best inter- ests, for reintegration into communities, education, and social cohesion activities with all children as well as any community-based case management support needed. Where return is not possible, family and community-based solutions should be sought.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f249e318-7f07-4692-ac37-8e36de204b53", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 31, + "Paragraph": "Interim care placements Interim care placements should be used in cases where ICCs are not available or appro- priate (for example, when a child is already in the community) and when family unifi- cation is not possible or in the best interests of the child. These types of placements can include community-based care, fostering or guardianship. The Inter-Agency Guiding Principles on Unaccompanied and Separated Children (2004) provide clear guidelines on how interim care placements should be conducted. Furthermore, community-based temporary alternative care must be consistent with the United Nations Guidelines for Alternative Care (General Assembly resolution 64/142).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "de1c004c-91c4-4f4d-a5cd-3c4d3178adde", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 32, + "Paragraph": "Community violence reduction DDR processes increasingly include CVR programmes in an effort to reduce armed violence and sustain peace (see IDDRS 2.30 on Community Violence Reduction). Spe- cific provisions shall be developed to ensure the protection, care and support of young people (aged 15\u201324) who participate in CVR programmes (see IDDRS 5.30 on Youth and DDR). Where appropriate, children (under 18) may be included in CVR activities, but with relevant legal safeguards to ensure their rights and needs are carefully accounted for.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "00ba8b63-da91-4062-9001-c6bfc4c03a45", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 14, + "Paragraph": "Reintegration The purpose of reintegration support is to provide children with assistance that has been tailored to their needs and that provides them with a viable, long-term alternative to military life. Reintegration support provided to children shall take into account dif- ferences in age, sex, individual resilience, the capacity of the child to make informed decisions, the length of stay and individual experience with an armed force or group, culture, the reintegration opportunities in an environment that will have changed in the child\u2019s absence and other relevant fac- tors. Reintegration support should be in- dividualized, targeting CAAFAG as well as other at-risk, vulnerable or conflict- affected children, as well as community-based, utilizing strategies and approaches that empower communities to accept and receive CAAFAG and support their reintegration. Because reintegration of adult ex-combatants and persons formerly associated with armed forces and groups should be considered even in the absence of a DDR programme, reintegration programmes of adults and children can mutually reinforce each other and where relevant and safe to do so should be coordinated as much as possible. (see IDDRS 2.40 Reintegration as Part of Sustaining Peace, and IDDRS 4.30 on Reintegration).", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce189911-3021-4f1d-becd-8fcf0396613e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 32, + "Paragraph": "Health CAAFAG face a range of health issues that may impact their reintegration. The identi- fication of health needs shall begin when the child first comes into contact with a DDR process, for example, at a reception centre or cantonment site or an interim care centre. However, ongoing health needs shall also be addressed during the reintegration pro- cess. This may be via referral to relevant local or national health facilities, medical fee coverage or the direct provision of support. All service and referral provision shall be private and confidential. Reproductive health As soon as possible after their release from an armed force or group, and for as long as necessary, girls and boys who have survived sexual violence, abuse and exploitation shall receive medical care in addition to mental health and psychosocial care (see section 7.9.1). Consideration shall also be given to boys who may have been forced to perpetrate sexual violence. All children who have experienced sexual violence shall receive access to the Minimum Initial Service Package (MISP) for sexual and reproductive health.7 Girl mothers shall be referred to community health services and psychosocial support as a priority. To prevent cycles of violence, girl mothers shall be enabled to learn posi- tive parenting skills so that their children develop in a nurturing household. DDR practitioners should invest in reproductive health awareness-raising initi- atives for boys and girls (especially adolescents) covering issues such as safe mother- hood, sexual violence, sexually transmitted infections, family planning and the repro- ductive health of young people. Increasing the awareness of boys will help to reduce the reproductive health burden on girls and enable a gender-transformative approach (see section 4.3). Consideration shall be given to any sensitivities that may arise through the inclusion of boys in these awareness-raising initiatives, and necessary preparations shall be made with families and community leaders to gain their support. HIV/AIDS Children who test positive for HIV/AIDS may experience additional community stig- matization that negatively impacts upon their reintegration. Initial screening and test- ing for HIV/AIDS shall be provided to CAAFAG during demobilization in a manner that voluntary and confidential. During reintegration, support for children living with HIV/AIDS should include specialist counselling by personnel with experience of work- ing with children, support to families, targeted referrals to existing medical facilities and linkages to local, national and/or international health programmes. To ease rein- tegration, community-based HIV/AIDS awareness training and education can be con- sidered (see IDDRS 5.60 on HIV/AIDS and DDR). Children may also prefer to receive treatment in locations that are discreet (i.e., not in public spaces or through discreet entrances at clinics). Drug and alcohol addiction Drugs and alcohol are often used by commanders to establish dependence, manipu- late and coerce children into committing violence. Children\u2019s substance use can cre- ate obstacles to reintegration such as behavioural issues in the home and community, risk-taking behaviour, poor nutrition and general health, and increased vulnerability to re-recruitment. DDR practitioners should coordinate with child-focused local, na- tional and/or international health organizations to develop or identify for referral drug and alcohol rehabilitation programmes adapted to the needs of CAAFAG. Treatment shall follow the International Standards for the Treatment of Drug Use Disorders.8", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "4223ed90-c56e-456d-a14e-30a789e92998", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 33, + "Paragraph": "Mental health and psychosocial support and special care Mental and psychosocial health is critical to effective reintegration for all age groups; however, children face specific challenges that can seriously undermine their return to civilian life. Some children may have mental health or psychosocial needs when they re-enter their communities due to their experiences during conflict, the tremendous effort required to adapt to being back in civilian life, anxiety and uncertainty, stigma- tization, fear of being rejected, poverty and a lack of livelihood. Mental health and psychosocial support should be offered (dependent on individ- ual need and resources) to help children develop new patterns of behaviour, improve their self-esteem, develop their capacity to make decisions about the future and enable them to express emotions should they want to do so. Children and communities, with support, do have the capacity to cope with the distress caused by war. Mental health and psychosocial support activities should build on children\u2019s natural resilience and family and community support mechanisms and encourage coping and positive devel- opment. A community-based case management system should be active for children who require individualized mental health support. This system should be available for all children in the community who may be in need. Some children may need specific mental health or psychosocial assistance to over- come particularly negative or harmful experiences during their stay with an armed force or group. Boys and girls who have experienced sexual violence, including when of a prolonged nature, may face sig- nificant psychosocial issues affecting their reintegration \u2013 for example, an inability to trust adults, aggression and social with- drawal. Those living with injury and disa- bility and the terminally ill, in particular, require care that is adapted to their needs and environment. Mental health and psychosocial support interventions for children in DDR processes shall abide by the following core principles:9 Human rights and equality: Focus on the protection of children most at risk of human rights violations and the promotion of equity and non-discrimination, maximizing fairness across all sub-groups of children. Equality in provision of support includes taking into consideration and tailoring support to the specific, and different needs, of boys and girls. Participation: Ensure the participation of children in decisions affecting them to support their resilience and promote the participation of families and communi- ties, as they are the most important support structures for children\u2019s psychosocial health. Do no harm: Minimize the risk of harm to children through psychosocial support by employing good coordination (with families, communities and other actors), appropriate needs assessments, cultural sensitivity, and ongoing monitoring and reflection on approach. Build on available resources and capacities: Engage with existing structures and self-help mechanisms to root the intervention in local solutions. Integrated support systems: Integrate into wider systems (e.g., existing community support mechanisms, formal/non-formal school systems, general health services, general mental health services, social services) to reach more people (community- based approaches) and limit stigma. Multilayered supports: A layered system of complementary supports is most effective in meeting different needs: Basic services and security: Securing basic needs (food, shelter, water, basic health care) and ensuring a minimum level of security represent the first steps in mental and psychosocial well-being. Community and family supports: Most children will require some level of fami- ly/community support to address psychosocial disruption. This may include communal healing ceremonies, supportive parenting programmes, formal and non-formal educational activities, livelihood activities and the activation of social networks. Focused, non-specialized supports: More-affected children will require interven- tions by trained and supervised personnel in areas such as psychological first aid and basic mental health care by primary health-care workers. Specialized services: Targeting the most affected children who exhibit serious mental health and psychosocial symptoms and require either (a) referral to specialized services, if they exist, or (b) initiation of longer-term training and supervision of primary/general health-care providers. Each context requires a specific approach to mental health and psychosocial support. However, Annex D provides some generalized do\u2019s and don\u2019ts for planning mental health and psychosocial support interventions. The guidelines for psychosocial sup- port set out in IDDRS 5.30 on Youth and DDR are also applicable to children, although specific considerations for age should be made.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "32905fde-2662-44a4-8b82-262514f8cd16", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 35, + "Paragraph": "Family tracing and reunification Following the release of children from armed forces and groups, efforts should be made to reunify children with their families, whenever possible and in their best interests. Family tracing and reunification shall be based on the Inter-Agency Guiding Principles on Unaccompanied and Separated Children.10 Family reunification is not simply a mat- ter of returning a child to his or her family, but requires preparation, mediation, and follow-up, possibly including ceremonies of return, to help the family recognize and address problems of alienation, addiction, aggression and resistance to civil forms of authority. Reunification also involves the family in decisions regarding the child\u2019s re-adaptation, education, learning and training. Children need to be reassured that their families want them back and accept them as they now are. Assistance should not only consist of material aid, but also include social support and follow-up. Family tracing should be started at the earliest possible stage and can be carried out at the same time as other activities. Family reunification will follow after mediation and an assessment of the situation that is quick, but thorough enough to be sure that there is no threat or discomfort to the child. Children can feel worried about returning to their family or community because of acts they may have committed when with armed forces or groups, or for any number of other reasons (e.g., girls may have been victims of sexual violence, abuse or exploitation, and may feel especially trepidatious if they have children born from those experiences). Phased approaches to reunification may be considered if reunification is deter- mined to be in the best interests of the child but certain challenges exist. For example, there may be family trauma as a result of conflict, or economic conditions may make immediate reunification difficult. These issues may also necessitate ongoing mediation, as well as psychosocial support to the child and family focused initially on the im- mediate challenge of reunification, but with a longer-term strategy to address more systemic issues. Family-based reintegration and services are crucial to the long-term success of reintegration. Case management may need to include components on support to families such as parenting support or economic support to the adults in the family. In some cases, family reunification may not be in the best interests of the child, because of difficult security or family conditions that do not provide the child with required levels of protection. It must also be recognized that poor family conditions or family connections to armed forces and groups may have been the reason the child was recruited in the first place. If these conditions remain unchanged, children are at risk of being re-recruited. When family reunification is not in the best interests of the child, for whatever reason, the aforementioned Guidelines for Alternative Care shall be followed.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "36c3b2d4-03c7-42e5-836c-c4011c4ed2cf", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 36, + "Paragraph": "Supporting families and communities Families and communities have a critical role to play in the successful reintegration of CAAFAG. After their release, many CAAFAG return to some form of family relation- ship \u2013 be it with parents or extended family. Others, however, do not return to their family due to fear or rejection, or because their families may have been killed or cannot be traced. Family rejection often disproportionately affects girls, as they are presumed to have engaged in sexual relations with men or to have performed roles not regarded as suitable for girls according to traditional norms. With family acceptance and support, reintegration is more likely to be successful. The process of family reintegration, however, is not always simple. Residual conflict may remain, or new conflicts may emerge due to various stressors. Intergeneration- al conflict, often a feature of societies in conflict, may be an issue and, as returning children push for voice and recognition, can intensify. Assisting families in the creation of a supportive environment for returning CAAFAG can be achieved through a variety of means and should be considered in all DDR processes for children. This support may take a number of different forms: Psychosocial support to the extended family can help to address broader psycho- social well-being concerns, overcome initial tensions and strengthen the resilience of the family as a whole. Positive parenting programmes can increase awareness of the rights (and needs) of the child and help to develop parenting skills to better support returning CAAFAG (e.g., recognizing symptoms of trauma, parent-child communication, productively addressing negative behaviours in the child). Promotion of parent-teacher associations (development or membership of) can provide ways for parents to support their children in school and highlight parents\u2019 needs (e.g., help with fees, uniforms, food). Income-generating activities that involve or support the whole family rather than only the child can alleviate financial concerns and promote working together. Establishment of community-based child protection networks involving parents can assist in the delivery of early warnings related to recruitment risk, children\u2019s engagement in risk-taking behaviours (e.g., drug or alcohol abuse, unsafe sex) or conflicts among children and youth in the community. Support to associations of families of conflict-affected children beyond CAAFAG can help build awareness in the community of their specific needs, address stigma and provide support in a range of areas including health, income generation, com- munity voice and participation. When supporting families to take a stronger role in the reintegration of their chil- dren, it is important that the wider community does not feel that children are rewarded for their involvement with armed forces or groups, or that broader community needs are being neglected. Community acceptance is essential for a child\u2019s reintegration, but preconceived ideas about children coming out of armed forces and groups, or the scars of violence committed against families and/or communities, can severely limit community sup- port. To prevent reprisals, stigmatization and community rejection, communities shall be prepared for returning CAAFAG through sensitization. This sensitization process shall begin as early as possible. Additional activities to help prepare the community include the strengthening of local child protection networks, peace and reconciliation education, and events aimed at encouraging the lasting reintegration of children. Cultural, religious and traditional rituals can play an important role in the pro- tection and reintegration of girls and boys into their communities. These may include traditional healing, cleansing and forgiveness rituals, where they are considered not to be harmful; the development of solidarity mechanisms based on tradition; and the use of proverbs and sayings in sensitization and mediation activities. Care should be taken to ensure that religious beliefs serve the best interests of the child, especially in areas where religion or cultural values may have played a role in recruitment. Reconciliation ceremonies can offer forgiveness for acts committed, allow children to be \u2018cleansed\u2019 of the violence they have suffered or contributed to, restore cultural links and demonstrate children\u2019s involve- ment in civilian life. Such ceremonies can increase the commitment of communities to a child\u2019s reintegration process. Chil- dren should contribute to the creation of appropriate reintegration mechanisms to improve their sense of belonging and capacity. However, it is also essential to under- stand and neutralize community traditions that are physically or mentally harmful to a child. In addition, such rituals may not be suitable in all contexts. Particular attention should be paid to the information that circulates among com- munities about returning boys and girls, so that harmful rumours (e.g., about real or presumed rates of HIV/AIDS among them and the alleged sexual behaviour of girls) can be effectively countered. Girls are at highest risk of rejection by their communities, and it is important for programme staff to engage on a continual basis with the com- munity to educate them about the experience girls have had and the challenges they face without fostering pity or stigma. Programme staff should consult with affected girls and include them in the planning and implementation of initiatives, including how their experiences are portrayed, where possible. Specific focus should be given to addressing issues of gender-based violence, in- cluding sexual violence. Girls who experience gender-based violence during their time associated with an armed force or group will often face stigmatization on their return, while boys will often never discuss it due to societal taboos. Specific engagement with communities to aid the reintegration of CAAFAG may include: Community sensitization and awareness-raising to educate communities on the rights of the child, the challenges CAAFAG face in their reintegration and the role that the community plays in this process; Community-based psychosocial support addressing the needs of conflict-affected community members as well as CAAFAG and their families; Community-wide parenting programmes that include the parents of CAAFAG and non-CAAFAG and help improve awareness and foster social inclusion and cohesion; Support to community-based child protection structures that benefits the whole community, including those that reduce the risk of recruitment; Investment in child-focused infrastructure rehabilitation (e.g., schools, health centres, child/youth centres) that provide benefit to all children in the community; Community-wide income-generation and employment programmes that bring older children as well as the parents of CAAFAG and non-CAAFAG together and provide much-needed livelihood opportunities; Creation of community child committees that bring together community leaders, parents and child representatives (selected from children in the community, including CAAFAG and non-CAAFAG) to provide children with a platform to ensure their voice and participation, especially in the reconstruction process, is guaranteed; and Advocacy support (including training, resources and/or linkages) to increase the role and voice of communities and children/youth in the development/revision of national child and youth policies, as well as interventions.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "89b5b94c-1f62-4b6d-aa28-0fb1deeb4799", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 38, + "Paragraph": "Access to Education Education is a critical component of enabling returning CAAFAG to successfully tran- sition into normal civilian routines and helps to prepare them for future opportunities. The higher a child\u2019s level of education, the more likely his/her reintegration is to suc- ceed. DDR processes for children shall therefore support children to try to reach (or recover) as high a level of education as possible, often starting with basic literacy. After a relatively long stay within armed forces or groups, or because of the difficulties they previously experienced in school, children may not be able to adapt to tradition- al teaching methods. For these situations, schooling programmes should be devel- oped in consultation with the ministry of education that are specifically designed for such children, and that achieve the same results as other formal educational programmes. To better support children who are struggling, teachers should receive specific training. This may include train- ing in recognizing signs of emotional stress, managing problematic behaviour and developing effective pupil-parent relations. Accelerated Education Programmes (AEPs) and other remedial schooling pro- grammes for children who have been out of school for long periods can provide vital catchup education. An AEP is \u201ca flexible, age-appropriate programme, run in an accel- erated timeframe, which aims to provide access to education for disadvantaged, over- age, out-of-school children and youth. This may include those who missed out on or had their education disrupted due to poverty, marginalization, conflict and crisis. The goal of AEPs is to provide learners with equivalent, certified competencies for basic education using effective teaching and learning approaches that match their level of cognitive maturity.\u201d11 The AEP Working Group details 10 principles for the delivery of accelerated ed- ucation, as well as key action points, key definitions, essential information, examples and case studies, and indications of challenges and other points to consider. These principles shall be followed by any programme engaging in AEPs. DDR processes for children can further support the education of demobilized CAAFAG through various other means including AEP teacher training; capacity-build- ing of a country training team; provision of teaching and learning materials; provision of school furniture; payment of incentives to AEP teachers; payment of registration and examination fees; and the renovation and rehabilitation of schools, including sanitation facilities. Moreover, modalities should be developed that enable part-time study if this is desirable, and other assistance should be provided to boost attendance (e.g., food, childcare facilities for girl mothers). The aim, wherever possible, should be to integrate returning children into existing education systems. Supporting these systems provides a benefit for the entire commu- nity and can help to ease reintegration of CAAFAG. However, even with the assistance of such programmes, some children may not be able to return to the regular school system. In such cases, programmes should be designed to include vocational training activities (skills training and apprenticeships) that are suited to local conditions and markets, and in line with national legislation on minimum working age and working conditions, (see section 7.9.5).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5bbdddb5-4f59-4be3-aa3f-c8fb5de3304e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 26, + "Paragraph": "Life skills Life skills are those abilities that help to promote psychological well-being and compe- tence in children as they face the realities of life. These are the ten core life skill strate- gies and techniques: problem-solving; critical thinking; effective communication skills; agency and decision-making; creative thinking; interpersonal relationship skills; self-awareness building skills; empathy; coping with stress; and emotions. Programmes aimed at developing life skills can, among other effects, lessen violent behaviour and increase prosocial behaviour. They can also increase children\u2019s ability to plan ahead and choose effective solutions to problems. CAAFAG often lose the oppor- tunity to develop life skills during armed conflict, and this can adversely affect their reintegration. For this reason, DDR processes for children should explicitly focus on the development of such skills. Life skills training can be integrated into other parts of the reintegration process, such as education or health initiatives, or can be developed as a stand-alone initiative if the need is identified during demobilization. The inclusion of all conflict-affected children within a community in such initiatives will have greater impact than focusing solely on CAAFAG.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e2e6d38d-5d0f-4233-bc1c-f03a0ff9fdc6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 40, + "Paragraph": "Vocational training and livelihood development Vocational training opportunities for children shall be realistic in terms of what the local economy can support and shall also reflect the wishes of the child. There should be made available as wide a range of training options as possible, consistent with local market conditions, to help children adapt successfully to civilian life and to what the market demands. This training may build on skills and competencies learned when the child was associated with an armed force or group. A choice of training options beyond traditional areas should be promoted, as should the provision of support to girls (including financial and childcare support, where appropriate). More specifically, vocational and skills training may include: Analysis of livelihood systems, agriculture, market opportunities, and household economies to develop economically relevant training, alternative forms of education and opportunities for economic reintegration. Coordination between stakeholders to improve lessons learned, development of joint programmes, appropriate referrals and measures to avoid inconsistencies in the benefits provided. Community consultation to develop collective initiatives benefiting the community. Business skills training to prepare children to keep accounts and handle money. Apprenticeships and on-the-job training for those with no previous work experience. Life skills training, including basic social norms and civic education, parenting skills, rights at work and home, prevention of HIV/AIDS, and education to counter interpersonal violence. Incorporation of gender-transformative approaches to ensure sensitivity to the particular challenges faced by girls, increase awareness in both girls and boys of the challenges faced by the other gender, and foster positive gender relationships. Development of skills in non-violent conflict resolution and anger management to help CAAFAG in their everyday lives. Provision of childcare and, if necessary, flexible training schedules for girl mothers. Some children need to start earning a living immediately after they return to their family and community and should be helped to earn an income or receive benefits while they obtain training and/or an education. For example, the sale of things they have made, or animals reared during their training may facilitate the purchase of tools or other equipment that are needed for future work. Boys and girls, particularly those of legal working age, should benefit from an adapted version of socioeconomic sup- port programmes designed for demobilized adults (see IDDRS 4.30 on Reintegration). However, income-generating activities for children should be in line with national and international laws on child labour, including ILO convention 138 on minimum age of work. Livelihood options for girls should not be based on traditionally assigned gender roles. Instead, the focus should be on what girls want to do. Linkages to the local business, trades and agricultural communities should be sought and can aid in employment, small business mentoring and ongoing analysis of market needs.12", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ea53e8f8-0cd2-4e76-aebe-e6e3887d68a4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 41, + "Paragraph": "Social protection assistance As part of planning and implementing a child-sensitive approach to DDR-related interventions, CAAFAG can be provided with social protection assistance to reduce vulnerability to poverty and deprivation, promote social inclusion and child protection, and strengthen family and community resilience. This may include: Multipurpose cash grants. Commodity (e.g., food or rent) or value vouchers. Family and child allowances. Disability social pensions and benefits. Transfers in exchange for a parent working (cash for work). Transfers in exchange for attending health check-ups (for all family members). Business recovery or start-up grants (for older children or parents of CAAFAG) subject to conditions (e.g., business management training, business plan develop- ment, etc.); and Scholarship benefits restricted to certain areas (e.g., school fees, school supplies, etc.). To ensure that assistance is child-sensitive, it must be governed by a number of guiding principles: Assistance must be designed with the child\u2019s best interests in mind and neces- sary safeguards in place, so that cash or other material assistance does not create incentives or push/pull factors to recruitment of children in the community or re-recruitment of the child and does not draw attention to the child. Assistance must be based on findings from the situation analysis and risk assess- ments (see sections 6.1 and 6.2). Assistance shall be targeted towards the most vulnerable CAAFAG (for example, girl mothers, persons with disabilities, and separated or unaccompanied minors) and their families. Assistance shall be predictable, allowing households to plan, manage risk and invest in diverse activities. Mixed delivery approaches (individual and community) should be considered, where appropriate, to strengthen conflict sensitivity. Community-based approaches should be promoted when they are likely to reduce resentment, increase community acceptance of returning CAAFAG, result in local economic benefits and strengthen social reintegration outcomes. Focus should be given to assistance that is multisectoral (e.g., health, education, water, sanitation and protection) and that has multiplier impacts. Conditions should be placed on community grants (e.g., training, awareness-raising activities, investment in community-level income-generating activities and bene- fits for the children of the households engaged). Investment in community structures should be promoted when these structures foster a protective environment for children (e.g., community-based child protection committees and community early warning prevention systems). Risk mitigation strategies shall be developed and implemented to reduce the risk of abuse. For example, it should be ensured that distributors of assistance work in pairs, that post-distribution monitoring is carried out and that children are empowered to speak out about their rights.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "e722e495-ac45-4b08-8f2d-501dee042f0d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 42, + "Paragraph": "Voice, participation and representation Being recognized, accepted, respected, and heard in the community is an important part of the reintegration process. However, this is a complex issue for children, as they are generally excluded from community decision-making processes. Children may also lack the self-esteem and skills necessary to engage in community affairs usually reserved for adults. Reintegration support should strive to generate capacities for such participation in civilian life. Although political reintegration is generally a feature of adult DDR processes (see IDDRS 4.30 on Reintegration), children also have political rights and should be heard in decisions that shape their future. Efforts should be made to ensure that children\u2019s voices are heard in local-level decision-making processes that affect them. Not only is this a rights-based issue, but it is also an important way to address some of the griev- ances that may have led to their recruitment (and potential re-recruitment). For chil- dren nearing the age of majority, having a voice in decision-making can be a key factor in reducing intergenerational conflict. CAAFAG may face particular difficulties attaining a role in their community due to their past associations or because they belong to communities that were excluded prior to the conflict. Girls, persons with disabilities, or people living with HIV/AIDS may also be denied full participation in community life. The creation of inclusive so- cieties is an issue bigger than DDR. However, the reintegration process provides an opportunity to make an initial investment in this endeavour through potential inter- ventions in several areas. Civic education To make the transition from military to civilian life, children need to be aware of their political rights and, eventually, responsibilities. They need to understand good citi- zenship, communication and teamwork, and nonviolent conflict resolution methods. Ultimately, it is the child\u2019s behaviour that will facilitate successful reintegration, and preparing a child to engage socially and politically, in a productive manner, will be central to this process. Such activities can prepare them to play a socially useful role that is acknowledged by the community. Special efforts should be made to include girls in civic education training to ensure they are aware of their rights. However, children should not be forced to participate in any activities, nor used by armed or political groups to achieve specific political objectives, and their rights to free speech, opinion and privacy should be prioritized. Ensure child participants in DDR processes have a voice in local and national recovery DDR processes should be aligned with national plans and strategies for recovery, the design of which should be informed by inputs from their participants. The inclusion of conflict-affected children and CAAFAG in these processes enables children to identify and advocate for specific measures of importance with regard to youth and recovery policies. Specific attention should be given to particularly vulnerable groups who may ordinarily be marginalized. Promote the gender transformation agenda Efforts to strengthen the agency of girls will only go so far in addressing gender ine- quality. It is also important to work with the relationships and structures present that contribute to their (dis)empowerment. It is critical to support the voice and representa- tion of girls within their communities to enable their full reintegration and to con- tribute to eradication of the structural inequalities that influenced their recruitment. Working with men and boys to address male gender roles and masculine norms that promote violence is required. Build a collective voice An inclusive programme sees community children, particularly those affected by con- flict in other ways, participating in programming alongside CAAFAG. This provides an opportunity for children and youth to coordinate and advocate for greater inclusion in decision-making processes. Create children\u2019s committees across the various areas of reintegration programming Children should have the opportunity to put forward their views individually and collectively. Doing so will provide a mechanism to substantively improve programme outcomes and thus ensure the best interests of the child. It also gives greater voice to other vulnerable and marginalized children in the community. Steps should be taken to ensure that girls, and especially girl mothers, are included in these committees. Encourage the participation and visibility of programme beneficiaries in public events Greater participation and visibility of CAAFAG as well as non-CAAFAG will increase the opportunities for children to be involved in community processes. As community members, and community decision makers in particular, have more positive interac- tions with CAAFAG, they are more likely to open up space for their involvement in community affairs. However, all participation shall be voluntary, and CAAFAG should not be pushed into visible roles unless they feel comfortable occupying them.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ecb7ce0d-9ad3-442f-8eb7-7635e1024d0c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 43, + "Paragraph": "Monitoring and follow-up After CAAFAG have returned to their families and communities, monitoring and fol- low-up is essential. It requires careful planning, adequate funding and the collabora- tion of key governmental bodies, UN agencies and non-governmental organizations. Monitoring activities should occur through regular visits to children\u2019s homes, schools, and communities, including meetings with families, peers, teachers, and community leaders, without creating stigma or risk to the individuals and families in- volved. The living conditions of the child, the quality of his/her relationship with fam- ily members and caregivers, and the level of reintegration in the community should be regularly assessed. Confidential, accessible, and safe feedback mechanisms that allow children to report any concerns should be in place. Challenges should be identified to facilitate problem-solving, referral or programme adaptation where required. Success stories are also important for the generation of positive lessons learned and to present opportunities for replication in other areas or programmes. Monitoring should be conducted by a dedicated monitoring, evaluation and learn- ing team. More staff are likely to be needed when large numbers of children are reunit- ed with their families, because monitoring visits and other support activities become more labour-intensive and time-consuming as children are dispersed from a few cen- tral locations to scattered communities. Communitybased child protection networks and community leaders, especially women, should be actively involved in monitoring the safety and wellbeing of reunited children, and should assume increasing responsi- bility for ongoing monitoring and follow-up to ensure a smooth takeover of this work by the community. Monitoring systems should be developed to use programme-related data gath- ered during demobilization including verification exercises for children. Effective pro- gramme monitoring improves accountability by recording information on programme progress, suitability of selected approach- es, and impact of support on children\u2019s well-being. Monitoring should be con- ducted throughout programming to in- form programme adjustments, including how to better reach particularly vulnera- ble groups of children, such as girls or disabled children. Close, continuous monitoring at the situational level is also essential, as the context will certainly change over time as issues relating to child recruitment and use, verification and release are complex and often unpredictable. Follow-up systems should be established to ensure post-programme support for reintegrating children. The reintegration process takes time and will usually not be completed within the period of the programme. Returning CAAFAG remain vulner- able to re-recruitment, social exclusion and poverty and will require ongoing support for several years. Regular follow-up should be seen as an important element of the con- tinuum of care for children. Therefore, follow-up support is critical to an effective exit strategy, ensuring that programme gains in reintegration are safeguarded. Follow-up systems should be developed in close consultation with children and the community. They should focus on especially vulnerable children (e.g., girl mothers, those not reunited with their family, those with severe psychosocial issues and disa- bled children). Support measures should be informed by disaggregated monitoring to ensure accurate targeting. Follow-up systems should also be community-based but linked to national systems. This can be achieved, for example, by supporting child well-being assessments.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "008ede84-32ae-47f9-8fd3-01f5299b8112", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 44, + "Paragraph": "8.6 Security sector reform When DDR programmes are linked to security sector reform (SSR), the composition of the new national army may be tied to the number of members of each armed force and group (see IDDRS 6.10 on DDR and SSR). Children are often included in these figures. Negotiations on SSR and force reduction must include the release of all children. CAAFAG shall not be included in troop numbers because the presence of children is illegal and including them may encourage more recruitment of children in the period before negotiations.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "43a3729d-0d10-414a-9365-514a66d49c91", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 45, + "Paragraph": "Criminal responsibility and accountability Governments are bound by the CRC and guided by international standards and norms when dealing with children who are alleged to have, accused of having, or recognized as having infringed the penal law during the course of their association with an armed force or group. This is independent of the type of crime that is alleged to have been committed. In all cases, children shall be treated primarily as victims of human rights violations. Prosecution and judicial proceedings should only be used as a last resort, with emphasis instead on recovery and reintegration.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a6ec68e2-a060-4349-800c-3067cd985eeb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 45, + "Paragraph": "Children as victims Children, as victims of recruitment and use, should not be deprived of their liberty, prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, consistent with Article 8.7 of the Paris Princi- ples. National laws that criminalize child association effectively criminalize the child\u2019s status (associated) which results from an adult\u2019s criminal conduct (recruitment and use), and that violates the human rights of the child. Such laws should not apply to children. In addition, as for adults, any ex- pressions of support for particular groups, acts, or ideologies that do not rise to the level of legally defined crimes such as in- citement to discrimination, hostility, or violence, or to committing terrorist acts, should not constitute criminal offenses. Under the convention on the rights of the child (Article 2) States Parties shall take all appropriate measures to protect children against discrimination or punishment on the basis of the status, activities, expressed opinions, or beliefs of their parents, legal guardians, or family members. Thus, children should not be interrogated as a suspect or prosecuted due to the actual or alleged affiliation of a family member. As part of the investigation of cases involving a child victim or witness, child victims or witnesses, their parents or guardians, legal representatives or a designated support person, should be promptly and adequately informed of their rights, availability of services and protection measures, and procedures in relation to any adult and/or juvenile justice processes, from their first contact with the justice pro- cess and throughout, to the extent feasible and consistent with the child\u2019s best interests. Any investigative action, including interviews with or examinations of the child, shall be conducted by professionals specially trained in dealing with children using a child-sensitive approach. All investigative actions shall be conducted in a suitable environment, in a language that the child uses and understands, and in the presence of the child\u2019s parent, legal guardian, legal representative, or designated support person.13 To the extent possible, the repetition of interviews of child victims or witnesses should be minimized to prevent secondary victimization. The child\u2019s best interest and right to privacy must be considered in all actions (see also Section 6.3.1 Data Collection, and Section 9.5 Collecting testimonies from children).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "f29d231d-a5a6-4e6c-aa23-073a5b8c5916", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 46, + "Paragraph": "Minimum age of criminal responsibility Under the CRC, States are required to establish a minimum age of criminal responsi- bility (MACR). The Committee on the Rights of the Child encouraged States to increase the MACR where possible, and not to lower it below 14 years of age, commending States that set a higher MACR such as 15 or 16 years of age. This is because children\u2019s brain development is still evolving during these years. Children under the MACR shall never be processed through the criminal justice system. Criminal accountability measures imposed on a child above the MACR shall consider the child\u2019s best interests, the child\u2019s age at the time of the commission of any alleged crime, the coercive environment under which the child may have been living, and any other mitigating circumstances, while simultaneously supporting the child\u2019s protection and reintegration. For all children, reintegration processes should be focused on addressing the root causes of their asso- ciation and recovery, rather than punishment for any actions.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d1ad0155-957c-4df8-a613-672190a1544c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 46, + "Paragraph": "Juvenile justice and child-specific due process and minimum standards Children over the MACR can be held accountable for criminal acts they may have com- mitted, including terrorist offences, but only while respecting their rights, employing child-specific juvenile justice processes, and with their best interests as a primary consid- eration. Due consideration shall be given to their right to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities, including for example, the right to legal representation, and protections against self-incrimination. Justice systems handling cases of children over the MACR should always also prior- itize the child\u2019s best interests and recog- nize the long-term process for children to sustainably reintegrate. Any judicial pro- ceedings for children shall respect interna- tionally recognized juvenile justice and fair trial standards, with a focus on recovery and restorative justice in order to assist children\u2019s physical, psychological and social recov- ery.14 Where no separate juvenile justice system is in place, cases should be handled by civilian authorities who have special training in child-friendly procedures, rather than military or intelligence authorities. All judicial actions relating to children shall take place in the presence of the child\u2019s appointed legal representative or other appropriate assistance, whose role it is to protect the rights and interests of the child, and unless contrary to the best interests of the child, in the presence of the child\u2019s parents or legal guardians. The UN Standard Minimum Rules for the Administration of Juvenile Justice (\u2018The Beijing Rules\u2019) adopted by General Assembly resolution 40/33 in 1985 provide guidance for the arrest or detention of children. Children retain all the rights already covered for adults if arrested. The Beijing Rules require detention of children only as a last resort so that arrest, detention or imprisonment of children should be avoided whenever possible. This requirement is further supported through the CRC which pro- vides an obligation under international law for States to ensure that \u201cno child shall be deprived of his or her liberty unlawfully or arbitrarily\u201d and that the \u201carrest, detention or imprisonment of a child shall be in conformity with the law and shall be used only as a measure of last resort and for the shortest appropriate period of time\u201d.15 As such when children are arrested and detained, their cases are to be given the highest prior- ity and handled expeditiously to ensure the shortest possible period of detention prior to trial. States should ensure that accountability mechanisms are fully in line with international law related to juvenile justice. International child rights and juvenile justice standards require that alternatives to normal judicial proceedings in criminal courts should be applied, providing that human rights and legal safeguards are fully respected (CRC, Article 40[3b], Rule 11, \u2018Beijing Rules\u2019). For example, restorative justice \u2013 achieved through finding alternatives to criminal courts \u2013 involves the child offender understanding and taking responsibil- ity for his/her actions with the goal of achieving reconciliation between the offender, the victim and the wider community through reparations. Such a procedure should ensure that the rights of the child are protected throughout. The child\u2019s participation in a restorative justice process shall be voluntary and preceded by informed consent (given by both the child and his/her parent or guardian). Measures to prevent the child from becoming distressed must be in place.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "f562fd24-3ec7-497c-91b8-a051d3de69e1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 47, + "Paragraph": "9.3.1 Girl mothers and their children Girl mothers in contact with the law should receive special consideration \u2013 such as con- sideration of mitigating circumstances in sentencing \u2013 and the rights of her child(ren) should be factored into judicial decisions. This may include allowing mothers to serve sentences at home, in order to respect the best interests of their children and maintain family unity. Specific interventions shall be developed to address the various challeng- es that girl mothers and their children may face. Any such interventions shall be based on the best interests of each child, in recognition of the detrimental impacts that family separation and deprivation of liberty have on children. Family unity should be main- tained save in exceptional circumstances where the parent poses an immediate and actual harm to the child. Practitioners shall advocate with Governments for mothers under 18 years of age to have the right to confer their nationality onto their children,16 a right that protects their children from becoming stateless. Children associated with armed groups designated by the UN as terrorist organizations DDR practitioners shall encourage the release and reintegration of CAAFAG at all times and without precondition. There is no exception to this rule for children associ- ated with armed groups that have been designated as terrorist by the Security Coun- cil Committee concerning ISIL (Da\u2019esh), Al-Qaida and associated individuals, groups, undertakings and entities established pursuant to resolution 1267 (1999), 1989 (2011) and 2253 (2015) or by any other state or regional body. No matter the armed group involved and no matter the age, status or conduct of the child, all relevant provisions of international law, including human rights, humanitarian, and refugee law. This includes all provisions and standards previous- ly discussed, including the Convention on the Rights of the Child and its Optional Protocols, all standards for justice for children, the Paris Principles and Guidelines, where applicable, and the Geneva Conventions. As with all CAAFAG, children asso- ciated with designated terrorist groups shall be treated primarily as victims and be afforded their right to be released and provide them with the reintegration and other support described in this module without discrimination (Optional Protocol to the Convention on the Rights of the Child, Articles 6(3) and 7(1) and the Paris Princi- ples and Guidelines on Children Associated with Armed Forces and Armed Groups (Articles 3.11-3.13). Security Council resolution 2427 (2018) \u201c[s]trongly condemns all violations of applicable international law involving the recruitment and use of children by par- ties to armed conflict as well as their re- recruitment\u2026\u201d and \u201c\u2026all other violations of international law, including interna- tional humanitarian law, human rights law and refugee law, committed against children in situations of armed conflict and demands that all relevant parties immediately put an end to such practices and take special measures to protect children.\u201d (OP1) The Security Council also emphasizes the responsibility of states to end impunity \u201cfor genocide, crimes against humanity, war crimes and other egregious crimes perpetrated against children\u201d including their recruitment and use.17 Children who have been recruited and used by terrorist groups are victims of violations of international law and have the same rights and protections as all chil- dren. Some children may also have committed crimes during their period of associa- tion. While children above the minimum age of criminal responsibility may be held accountable consistent with international law (see section 9.3), as victims of crime, these children should not face criminal charges for the mere fact of their association with a designated terrorist group or for activities that would not otherwise be criminal such as cooking, cleaning, or driving.18 Children whose parents, caregivers or family mem- bers are alleged to be associated with a designated terrorist group, also shall not be held accountable for the actions of their relatives nor shall they be excluded from meas- ures or services that promote their physical and psychosocial recovery or reintegration. Security Council resolution 2427 (2018) stresses the need for States \u201cto pay par- ticular attention to the treatment of children associated or allegedly associated with all non-state armed groups, including those who commit actors of terrorism, in par- ticular by establishing standard operating procedures for the rapid handover of chil- dren to relevant civilian child protection actors\u201d (OP 19). It also urges Member States to mainstream child protection in all stages of DDR (OP24) and in security sector reforms (OP25), including through gender- and age-sensitive DDR processes, the establishment of child protection units in national security forces, and the strengthening of effective age assessment mechanisms to prevent underage recruitment. It stresses the impor- tance of long-term sustainable reintegration for all boys and girls affected by armed conflict and working with communities to avoid stigmatization of children while facil- itating their return in a way that enhances their wellbeing (OP 26). Children formerly under the control of UN designated terrorist groups, may be able to access refugee and asylum procedures depending on their individual situation and status (e.g., if they were forcibly recruited and trafficked across borders). All chil- dren and asylum seekers have a right to individual determinations to assess any claims they may have. For any child who asks for refugee or asylum status, the practitioner shall refer the child to the relevant UN entity or to a legal services provider. DDR prac- titioners shall not determine eligibility for asylum or refugee status. Justice for children suspected, accused, or convicted of committing terrorism-related offences Consistent with Article 40 of the CRC, any child suspected, accused, or convicted of having committed a terrorism-related offence or an offence against national security has the right to be treated in a manner consistent with international law and stand- ards, including juvenile justice standards: \u201cProcedures employed should promote the child\u2019s dignity and worth and reinforce the child\u2019s respect for the human rights and fundamental freedoms of others. It should take into account the child\u2019s age and the desirability of promoting the child\u2019s reintegration and the child\u2019s assuming a constructive role in society.\u201d19 In addition, if a state seeks to hold a child accountable for crimi- nal acts alleged to have been committed while under the control of an armed group, courts and service providers should account for the child\u2019s experience and the coercive environment under which the child was living or forced to act when determining both criminal responsibility and the services or support that a child may need. In all deci- sions, the child\u2019s best interests shall be a primary consideration, \u201ceven when the child\u2019s interests may conflict with the State\u2019s perceived security interests.\u201d20 Any child allegedly associated with an armed group should be treated primarily as a victim. In this regard, irrespective of considerations of their legal responsibility with regard to any alleged offence defined as terrorist and/or a threat to national se- curity under national legislation, children shall be afforded the rights set forth by the international legal framework related to child victims. Any child associated with an armed group and who is or has been suspected, charged or convicted of a terrorism related offence or is deprived of his or her liberty as a result, shall be treated in accordance with international law and internationally recognized juvenile justice standards, including the right to legal representation and the right to appeal. In case such a child is released from detention, the child shall be provided with required reintegration assistance and be part of the overall reintegration programme.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8b914793-f368-404a-b4bd-9431d1d94e4d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 49, + "Paragraph": "Collecting testimonies from children As with all decisions involving children, the best interests of the child shall be a pri- mary consideration when determining if a child should give information or testimony; however, under no circumstances shall a child be compelled to give testimony or a statement against himself or herself. Protective rules shall be established when collect- ing testimonies from children through justice mechanisms, a truth and reconciliation commission or the International Criminal Court. It is essential to protect the identity of child witnesses, to not require children to relive traumatic experiences as they testify, and to make it clear in criminal cases that their testimony may or may not succeed in convicting the accused, so that they do not have unrealistic expectations. Social support, such as psychological support, to facilitate this engagement should be provided at all times according to specific needs. Testimonies shall only be gathered once the child has given informed consent. The process should be explained in child-friendly language (in the language of the child), and, where possible, and if not contrary to the child\u2019s best interest, a parent or guardian should support the child in giving informed consent.21", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "2ab864f9-e100-4a15-b8f7-0ea86200a614", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 50, + "Paragraph": "Annex B. Determining a child\u2019s age Often children do not have civil registration documents showing their birth or age. However, because it is a breach of international humanitarian law, human rights law and international criminal law to recruit children under 15 years old anywhere, and to allow any child to take part in hostilities, and because children are entitled to special protections and support, it may be important to determine whether an individual is be- low age 18. Reintegration and child DDR generally are designed to ensure appropriate support to children under age 18, with no difference in definition, and regardless of the legal age of recruitment or other definitions or age of a child locally. It is important to manage the identification and separation of children from adults in a coordinated way during demobilization, and throughout DDR. Failure to do so may lead to serious unintended consequences, such as the re-recruitment of children, children claiming to be adults, and adults claiming to be children. To determine a child\u2019s age, the following are general principles: If in doubt, assume the person is below 18. Identification should take place as early as possible to allow them to access age-ap- propriate services. Identification must occur before disarmament. A child protection actor should be given access to disarmament sites to identify children. Children should be immediately informed that they are entitled to support so that they are less likely to try to identify as adults. Considerations: Interviews should be confidential. Identification of children should take place before any other identification pro- cesses. Children should be required to show that they can use a weapon (this is because they may have been used in a non-combat role). During negotiations, children should not be counted in the number of armed forc- es or group (this is to avoid incentivizing child recruitment to inflate numbers). The role that a person plays in the armed group should have no effect of the deter- mination of whether the person is a child. For practitioners who are handling demobilization, Age Assessment: A Technical Note (2013) gives more detailed information on age determinations and includes the follow- ing core standards: An age assessment should only be requested when it is in the best interests of the child. Children should be given relevant information about the age assessment pro- cedure Informed consent must be sought from the person whose age is being assessed before the assessment begins. Age assessments should only be a measure of last resort and be initiated only if a serious doubt about the person\u2019s age exists. Age assessments should be applied without discrimination. An unaccompanied or separated child should have a guardian appointed to support them through the age assessment procedure. Assessments must follow the least intrusive method, which upholds the dignity and physical integrity of the child at all times, and be gender and culturally appropriate Where there is a margin of error, this margin should be applied in favour of the child. Age assessments should take an holistic approach. A means of challenging the age determination should exist if the child wishes to contest the outcome of the assessment. Age assessments should only be undertaken by independent and appropriately skilled practitioners. The checklist to determine the age includes: Pre-procedure: Undertake an age assessment only when relevant actors have serious doubts about the stated age of the child; ensure that the assessment is not being initiated as a routine or standard procedure. Is the procedure really necessary? Plan any physical examination only as a measure of last resort to take place only when all other attempts e.g., the gathering of documentary evidence, interviewing the child, etc., have failed to establish age. Is a physical examination the only method of assessing age? Secure informed consent to conduct the age assessment from the child or the guardian. It is extremely unlikely that genuine informed consent can be forthcom- ing at a time of \u2018crisis\u2019 and consent should only be sought when a child has had time to recover from traumatic or unsettling episodes \u2013 this may take considerable time in some instances. In circumstances where there is no consent, it cannot be used against the person and the person should be considered a child. Has the child given informed consent to a physical examination? During the Procedure Conduct any age assessment procedure using a multi-disciplinary approach that draws on a range of appropriately skilled professionals and not solely on a physi- cal examination. Is a range of approaches being used in the age assessment? When selecting professionals to conduct an age assessment, select only those with- out a vested interest in the outcome, and who are independent from any agencies and actors that would provide services or support to the child or who would be- come responsible for the child if they are assessed as being a child. Are the profes- sionals engaged in the assessment independent? Subject to the wishes of the child, support him or her throughout the process of assessment, including by informing the child in a language he or she understands, and providing a guardian, legal or other representative to accompany them dur- ing the entire process. Is the child supported throughout the process? Develop and conduct the age assessment process in a culturally and gender sen- sitive way using practitioners who are fully familiar with the child\u2019s cultural and ethnic background. Is the assessment sensitive to cultural and gender needs? Protect the child\u2019s bodily integrity and dignity at every stage of the process. Is the process free from humiliation, discrimination, or other affront? Conduct the age assessment in an environment that is safe for children, which supports their needs and is child appropriate. Is the process consistent with child safeguarding principles and child-friendly? Post procedure Provide any services and support relevant to the outcome of the assessment with- out delay. What services and support are required to address the person\u2019s identified needs? If any doubt remains about the age of the child, ensure that this is applied to the advantage of the child. Has any doubt about the child\u2019s age been resolved in favor of the child? As promptly as is reasonably practical, explain the outcome and the conse- quences of the outcome to the child. Have the outcome and its consequences been explained? Inform the child of the ways that he or she can challenge a decision which they disagree with. Has the child been informed of his or her rights to challenge the de- cision?", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "dee3edfe-9181-4f3e-a539-e6c2e56b855a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 53, + "Paragraph": "Annex C: Management guidelines for interim care centres Interim care centres (ICCs), sometimes referred to as transit centres, are not a necessary step in all DDR situations. Indeed, in the view of many protection agencies, an ICC may delay the reunification of children with their families and communities, which should happen as soon as possible. Nevertheless, while in some circumstances imme- diate reunification and support can occur, in others a centre can provide a protected temporary environment before family reunification. Other advantages to ICCs include that they provide the necessary space and time to carry out family tracing and verification; they provide a secure space in an other- wise insecure context before reunification, and gradual reunification when necessary; they allow medical support, including psychosocial support, to be provided; they pro- vide additional time to children to cut their links with the military; and they provide an opportunity for pre-discharge awareness-raising/sensitization. Guiding principles and implementation strategies The decision to open a centre should be based on the following conditions: The level of insecurity in community of origin; The level of success in tracing the child\u2019s family or primary caregiver; The level of medical assistance and followup required before integration; and The level of immediate psychosocial support required before reintegration. Management guidelines for Interim Care Centres The following management guidelines apply: Child protection specialists, not military or other actors should manage the cen- tres. Children should only stay a limited amount of time in ICCs, and documentation and monitoring systems should be established to ensure that the length of stay is brief (weeks not months). At the end of their stay, if family reunification is not feasible, provision should be made for children to be cared for in other ways (in foster families, extended family networks, etc.). Systems should be established to protect children from abuse, and a code of conduct should be drawn up and applied. An adequate number of male and female staff should be available to deal with the differing needs of boys and girls. Staff should be trained in prevention of and response to genderbased violence and exploitation involving children, norms of confidentiality, child psychosocial development, tracing and reunification. ICCs should only accommodate children under 18. Some flexibility can be consid- ered, based on the best interests of the child, e.g., in relation to girl mothers with infants and children or on medical grounds, on a casebycase basis. In addition, young children (under 14) should be separated from adolescents in order to avoid any risk of older children abusing younger ones. Sanitation and accommodation facilities should separate girls from boys and be sensitive to the needs of infants and girl mothers. ICCs should be located at a safe distance from conflict and recruitment areas; ex- ternal access to the centre should be controlled. (For example, entry of adult com- batants and fighters and the media can be disruptive, and can expose children to additional risks.) Security should be provided by peacekeepers or neutral forces.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c97258c8-c5ab-440c-a011-9be108c221db", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 54, + "Paragraph": "Activity guidelines Tracing, verification, reunification and monitoring should be carried out. Temporary care should take place within a communitybased tracing and reinte- gration programme to assist the return of children to their communities (including community outreach), and to encourage the protection and development of war- affected children in general. Experience has showed that when only care is offered, centres present a risk of children becoming \u2018institutionalized\u2019 and dependent. Health checkups and specialized health services should be provided when nec- essary (e.g., reproductive health and antenatal services, diagnosis of sexually transmitted infections, voluntary and confidential HIV testing with appropriate psychosocial support, and health care for nutritional deficiencies and warrelated injuries). Basic psychosocial counselling should be provided, including help to overcome trauma and develop selfesteem and life skills. Information and guidance should be provided on the reintegration opportunities available. Activities should focus on restoring the social norms and routines of civilian life; age and genderappropriate sports, cultural and recreational activities should be provided. Community sensitization should be carried out before the child\u2019s arrival. Formal education or training activities should not be provided at the ICC; however, literacy testing can be conducted. Communities near the ICC should be sensitized about the ICC\u2019s role. Children in the centres should be encouraged to participate in community activities to encourage trust. During temporary care, peace education should be part of everyday life as well as the formal programmes, and cover key principles, objectives, and values related to the non- violent resolution of conflict.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-5.30-Youth-and-DDR.json b/src/Static/data/json/IDDRS-5.30-Youth-and-DDR.json new file mode 100644 index 0000000..376a7a8 --- /dev/null +++ b/src/Static/data/json/IDDRS-5.30-Youth-and-DDR.json @@ -0,0 +1,458 @@ +[ + { + "ID": "1c393de3-2580-4b3e-9fbf-bc9cc26b96fa", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": null, + "Paragraph": "Summary DDR processes are often conducted in contexts where the majority of combatants and fighters are youth, an age group defined by the United Nations (UN) as those between 15 and 24 years of age. If DDR processes cater only to younger children and mature adults, the specific needs and experiences of youth may be missed. DDR practitioners shall promote the participation, recovery and sustainable reintegration of youth, as failure to consider their needs and opinions can undermine their rights, their agency and, ultimately, peace processes. In countries affected by conflict, youth are a force for positive change, while at the same time, some young people may be vulnerable to being drawn into conflict. To provide a safe and inclusive space for youth, manage the expectations of youth in DDR processes and direct their energies positively, DDR practitioners shall support youth in developing the necessary knowledge and skills to thrive and promote an enabling environment where young people can more systematically have influence upon their own lives and societies. The reintegration of youth is particularly complex due to a mix of underlying economic, social, political, and/or personal factors often driving the recruitment of youth into armed forces or groups. This may include social and political marginalization, protracted displacement, other forms of social exclusion, or grievances against the State. DDR practitioners shall therefore pay special attention to promoting significant participation and representation of youth in all DDR processes, so that reintegration support is sensitive to the rights, aspirations, and perspectives of youth. Their reintegration may also be more complex, as they may have become associated with an armed forces or group during formative years of brain development and social conditioning. Whenever possible, reintegration planning for youth should be linked to national reconciliation strategies, socioeconomic reconstruction plans, and youth development policies. The specific needs of youth transitioning to civilian life are diverse, as youth often require gender responsive services to address social, acute and/or chronic medical and psychosocial support needs resulting from the conflict. Youth may face greater levels of societal pressure and responsibility, and as such, be expected to work, support family, and take on leadership roles in their communities. Recognizing this, as well as the need for youth to have the ability to resolve conflict in non-violent ways, DDR practitioners shall invest in and mainstream life skills development across all components of reintegration programming. As youth may have missed out on education or may have limited employable skills to enable them to provide for their families and contribute to their communities, complementary programming is required to promote educational and employment opportunities that are sensitive to their needs and challenges. This may include support to access formal education, accelerated learning curricula, or market-driven vocational training coupled with apprenticeships or \u2018on-the-job\u2019 (OTJ) training to develop employable skills. Youth should also be supported with employment services ranging from employment counselling, career guidance and information on the labour market to help youth identify opportunities for learning and work and navigate the complex barriers they may face when entering the labour market. Given the severe competition often seen in post-conflict labour markets, DDR processes should support opportunities for youth entrepreneurship, business training, and access to microfinance to equip youth with practical skills and capital to start and manage small businesses or cooperatives and should consider the long-term impact of educational deprivation on their employment opportunities. It is critical that youth have a structured platform to have their voices heard by decision- makers, often comprised of the elder generation. Where possible DDR practitioners should look for opportunities to include the perspective of youth in local and national peace processes. DDR practitioners should ensure that youth play a central role in the planning, design, implementation and monitoring and evaluation of Community Violence Reduction (CVR) programmes and transitional Weapons and Ammunition Management (WAM) measures.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "84595409-869a-44ae-aff8-cd7b0c2f1008", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module aims to provide DDR practitioners with guidance on the planning, design and implementation of youth-focused DDR processes in both mission and non-mission contexts. The main objectives of this guidance are: To set out the main principles that guide aspects of DDR processes for Youth. To provide guidance and key considerations to drive continuous efforts to prevent the recruitment and re-recruitment of youth into armed forces and groups. To provide guidance on youth-focused approaches to DDR and reintegration support highlighting critical personal, social, political, and economic factors. This module is applicable to youth between the ages of 15 and 24. However, the document should be read in conjunction with IDDRS 5.20 on Children and DDR, as youth between the ages of 15 to 17, are also children, and require special considerations and protections in line with legal frameworks for children and may benefit from child sensitive approaches to DDR consistent with the best interests of the child. Children between the ages of 15 to 17 are included in this module in recognition of the reality that children who are nearing the age of 18 are more likely to have employment needs and/or socio- political reintegration demands, requiring additional guidance that is youth-focused. This module should also be read in conjunction with IDDRS 5.10 on Women, Gender and DDR.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6ed53602-11d0-412c-909e-9b6277550f0a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Decent work: Used in reference to the Decent Work Agenda and Sustainable Development Goal 8, which aims to promote sustained, inclusive and sustainable economic growth, full and productive employment and decent work for all. The term is used to describe the need for access to quality jobs that provide dignity, equality of opportunity for men and women, a fair income, and safe working conditions. Decent work ensures that people have a voice in what they do and are protected from exploitation.1 Youth: There is no universally agreed international definition of youth. For statistical purposes the United Nations defines \u2018youth\u2019 as those persons between the ages of 15 and 24 years, while in context of the UN Security Council resolution 2250 (2015) on youth, peace and security, youth is defined as those persons between the ages of 18 and 29 years. . Beyond the UN system, the age of people included in this cohort can vary considerably between one context and another. Social, legal, economic and cultural systems define the age limits for the specific roles and responsibilities of children, youth and adults. Conflicts and violence often force youth to assume adult roles such as being parents, breadwinners, caregivers or fighters. Cultural expectations surrounding girls and boys also affect the perception of them as adults, such as the age of marriage, initiation and circumcision practices, and motherhood. Such expectations can be disturbed by conflict. UN Security Council resolution 2250 (2015) on youth, peace and security recognizes the positive role that youth have in building, contributing to and maintaining international peace and security and urges member states to take steps to enable the participation of youth in this regard.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "af10cd7b-0899-48c8-8413-55f686fcf6c7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 5, + "Paragraph": "Introduction DDR processes are often implemented in contexts where the majority of former combatants are youth, an age group defined by the United Nations (UN) as those between 15 and 24 years of age. Individuals within this age bracket have a unique set of needs and do not easily fit into pre-determined categories. Those under 18 are regarded as children associated with armed forces or armed groups (CAAFAG) and shall be treated as children. Legally, children and youth up to the age of 18 are covered under the UN Convention on the Rights of the Child and other protective frameworks (see section 5 of IDDRS 5.20 on Children and DDR) and all have the same rights and protections. Youth above the age of 18 are treated as adults in DDR processes despite that, if recruited as children, their emotional, social and educational development may have been severely disrupted. Regardless of whether or not they were recruited as children, youth who demobilize when they are over the age of 18 generally fall under the same legal frameworks as adults. However, in terms of criminal responsibility and accountability, any criminal process applicable to youth regarding acts they may have committed as a child should be subject to the criminal procedure relevant for juveniles in the jurisdiction and should consider their status as a child at the time of the alleged offense and the coercive environment under which they lived or were forced to act as mitigating factors. Youth in countries that are affected by armed conflict may be forced to \u2018grow up quickly\u2019 and take on adult roles and responsibilities. As with children associated with armed forces or armed groups, engagement in armed conflict negatively affects the stages of social and emotional development as well as educational outcomes of young people. Conflict may create barriers to youth building basic literacy and numeracy skills, and gaps in key social, cognitive and emotional development phases such as skill building in critical thinking, problem solving, emotional self- regulation, and sense of self-identity within their community and the world. When schools close due to conflict or insecurity, and there are few opportunities for decent work, many young people lose their sense of pride, trust and place in the community, as well as their hope for the future. Compounding this, youth are often ignored by authorities after conflict, excluded from decision- making structures and, in many cases, their needs and opinions are not taken into account. Health care services, especially reproductive health care services, are often unavailable to them. The accumulation of these factors, particularly where insecurity exists, may push young people into a cycle of poverty and social exclusion, and expose them to criminality, violence and (re-)recruitment into armed forces or groups. These disruptions also reduce the ability of communities and States to benefit from and harness the positive resilience, energy and endeavour of youth. Youth can provide leadership and inspiration to their societies. UN Security Council resolution 2250 explicitly recognises \u201cthe important and positive contribution of youth in efforts for the maintenance and promotion of peace and security\u2026[and affirms]\u2026 the important role youth can play in the prevention and resolution of conflicts and as a key aspect of the sustainability, inclusiveness and success of peacekeeping and peacebuilding efforts.\u201d Youth should have a stake in the post-conflict social order so that they support it. Their exposure to violence and risky behaviour, as well as their disadvantages in the labour market, are specific. Youth are at a critical stage in their life cycle and may be permanently disadvantaged if they do not receive appropriate assistance. This module provides critical guidance for DDR practitioners on how to plan, design and implement youth-focused DDR processes that aim to promote the participation, recovery and sustainable reintegration of youth into their families and communities. The guidance recognizes the unique needs and challenges facing youth during their transition to civilian life, as well as the critical role they play in armed conflict and peace processes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "2df5830d-51fb-4e00-8740-55268dd90b14", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 6, + "Paragraph": "Guiding Principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to youth and DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2c17b98a-7bf1-4e7e-a3bc-417a56017d9c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 7, + "Paragraph": "People-centred Criteria for participation/eligibility As outlined in IDDRS 5.20 on Children and DDR, any person below 18 years of age who is associated with an armed force or group shall be eligible for participation in a DDR process designed specifically for children. Eligibility for DDR processes for CAAFAG shall not be conditioned on the child\u2019s possession and handover of a weapon or ammunition, participation in hostilities or weapons training; there shall be no conditions, of any kind, for their participation. If there is doubt as to whether an individual is under 18 years old, an age assessment shall be conducted (see Annex B in IDDRS 5.20 on Children and DDR). For any youth under age 18, child-specific programming and rights shall be the priority, however, when appropriate, DDR practitioners may consider complementary youth-focused approaches to address the risks and needs of youth nearing adulthood. For ex-combatants and persons associated with armed forces or groups aged 18-24, eligibility for DDR will depend on the particular DDR process in place. If a DDR programme is being implemented, eligibility criteria shall be defined in a national DDR programme document. If a CVR programme is being implemented, then eligibility criteria shall be developed in consultation with target communities, and, if in existence, a Project Selection Committee (see IDDRS 2.30 on Community Violence Reduction). If the preconditions for a DDR programme are not in place, eligibility for reintegration support shall be decided by relevant national and local authorities, with support, where appropriate, from relevant UN mission entities as well as UN agencies, programmes and funds (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Unconditional release and protection of children DDR processes for children shall not be contingent on political negotiations or adult DDR processes. Efforts shall always be made to prevent recruitment and to secure the release of CAFFAG, irrespective of the stage of the conflict or status of peace negotiations. Doing so may require negotiations with armed forces or groups for this specific purpose. Special provisions and efforts may be needed to reach girls, who often face unique obstacles to identification and release. These obstacles may include specific sociocultural factors, such as the perception that girl \u2018wives\u2019 are dependents rather than associated children, gendered barriers to information and sensitization, or fear by armed forces and groups of admitting to the presence of girls. The mechanisms and structures for the release and reintegration of children shall be set up as soon as possible and continue during ongoing armed conflict, before a peace agreement is signed, a peacekeeping mission is deployed, or a DDR process or related process, such as Security Sector Reform (SSR), is established. Armed forces and groups rarely acknowledge the presence of children in their ranks, so children are often not identified and therefore may be excluded from DDR support. DDR practitioners and child protection actors involved in providing services during DDR processes, as well as UN personnel more broadly, shall actively call for and take steps to obtain the unconditional release of all CAAFAG at all times, and for children\u2019s needs to be considered. Advocacy of this kind aims to highlight the issues faced by CAAFAG and ensures that the roles played by girls and boys in conflict situations are identified and acknowledged. Advocacy shall take place at all levels, through both formal and informal discussions. UN agencies, foreign missions, mediators, donors and representatives of parties to conflict should all be involved. If possible, advocacy should also be linked to existing civil society actions and national systems (see IDDRS 5.20 on Children and DDR). In accordance with standards and principles of humanitarian assistance Youth-focused DDR processes shall respect the principles of international humanitarian law and promote the human rights of DDR participants and the communities into which they reintegrate. Core principles for delivery of humanitarian assistances include humanity, impartiality, neutrality and independence. When supporting youth, care shall be taken to assess the possible impact of measures on vulnerable populations which may, by their very nature, have disproportionate or discriminatory impacts on different groups, even if unintended. Responses shall enhance the safety, dignity, and rights of all people, and avoid exposing them to harm, provide access to assistance according to need and without discrimination, assist people to recover from the physical and psychological effects of threatened or actual violence, coercion or deliberate deprivation, and support people to fulfil their rights.2", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "94fd90dd-6ce7-4b56-b646-5a72a12d5687", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 8, + "Paragraph": "Gender-responsive and inclusive Non-discrimination and fair and equitable treatment are core principles of integrated DDR processes. Youth who are ex-combatants or persons formerly associated with armed forces or groups shall not be discriminated against due to age, gender, sex, race, religion, nationality, ethnicity, disability or other personal characteristics or associations. The specific needs of male and female youth shall be fully taken into account in all stages of planning and implementation of youth-focused DDR processes. A gender transformative approach to youth-focused DDR should also be pursued. This is because overcoming gender inequality is particularly important when dealing with young people in their formative years. DDR processes shall also foster connections between youth who are (and are not) former members of armed forces or groups and the wider community. Community-based approaches to DDR expose young people who are former members of armed forces or groups to non-military rules and behaviour and encourage their inclusion in the community and society at large. This exposure also provides opportunities for joint economic activities and supports broader reconciliation efforts.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "aac6170b-6adc-40f4-96b1-cb5f92fac99f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 8, + "Paragraph": "Conflict sensitive A youth-focused approach to DDR shall ensure that no harm is done to youth. Rather, DDR processes shall seek to maximize the benefit to youth, while minimizing any harm. This shall be done through: Assessing and monitoring both positive and negative impacts for youth, and disaggregating data by age, gender and vulnerabilities of young people (while protecting youth\u2019s privacy) and where safe to do so, other social identities. Listening to and taking account of the voices and views of youth in the planning, design, implementation and review of youth-focused DDR processes. Leveraging opportunities for youth to promote peacebuilding and social cohesion through DDR including by building and fortifying stronger connections between youth, irrespective of the armed group or force they may have been traveling or associated with, including those in receiving communities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "92cec84d-22e3-48d2-8a0a-b2d4bc71824b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 9, + "Paragraph": "Context specific There is no simple formula for youth-focused DDR that can be routinely applied in all circumstances. DDR processes shall be contextualized as much as possible in order to take into account the different needs and capacities of youth DDR participants and beneficiaries based on conflict dynamics, cultural, socio-economic, gender and other factors.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "805c34f4-a7ce-4514-84b7-f4e930f65097", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 9, + "Paragraph": "Flexible, accountable and transparent Flexible, sustainable and transparent funding arrangements Sufficient long-term funding for DDR processes for children should be made available through a funding mechanism that is independent of and managed separately from adult DDR (see IDDRS 5.20 on Children and DDR). Youth-focused DDR processes for those aged 18 \u2013 24 should also be backed by flexible and long-term funding, that takes into account the importance of creating space for youth (especially the most marginalised) to participate in the planning, design, implementation, monitoring and evaluation of DDR processes. Accountability and transparency Youth shall be provided information about the DDR process so that they can make an informed decision about whether and how they may participate. DDR practitioners shall also solicit and take the views of youth seriously and act upon them.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8bd3b118-61f3-4ed5-a44d-4caeb6bab52a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 9, + "Paragraph": "Nationally and locally owned Youth-focused DDR processes shall be closely linked to national development strategies, the Sustainable Development Goals and youth development policies. Youth development policies generally include different combinations of social, economic, environmental and health objectives relating to young women and men. In some countries, youth programmes focus on education and training; in others, they focus on youth, sports and other recreational activities, cultural heritage, prevention of substance abuse and HIV/AIDS, and population planning. The variety of approaches is reflected in different institutional frameworks that may include different ministries \u2014 such as education, health, labour and sports and/or youth affairs. DDR practitioners shall support the active participation of youth organizations in DDR processes as local youth organizations, working with other civil society groups, often have the potential to direct the energy and ability of young people towards rebuilding a prosperous and fair society.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "40ab3c5a-b4b8-4ce4-8d1c-590a8dd7d7b7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 10, + "Paragraph": "Regionally supported Where appropriate, youth-focused DDR processes shall consider regional initiatives to prevent the (re-)recruitment of youth. DDR practitioners shall also tap into regional youth networks where these have the potential to support the DDR process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f334074e-6450-4102-85f9-ca066ee0520b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 10, + "Paragraph": "4.9 Integrated Many of the problems confronting youth are complex, interrelated and require integrated solutions. However, national youth policies are often drawn up by different institutions with little coordination between them. The setting up of a national commission on DDR (NCDDR) that prioritizes inclusion of youth perspectives, allows the process of coordination and integration to take place, creates synergies and can help to ensure continuity in strategies from DDR to reconstruction and development. To meet the needs of young people in a sustainable way, when applicable, DDR practitioners shall support the NCDDR to make sure that a wide range of people and institutions take part, including representatives from the ministries of youth, gender, family, labour, education and sports, and encourage local governments and community-based youth organizations to play an important part in the identification of specific youth priorities, in order to promote bottom-up approaches that encourage the inclusion and participation of young people.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "aa0523e2-8034-42b3-a861-6ddcae8fa77b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 10, + "Paragraph": "Well planned Safety and security Youth shall not be put in harm\u2019s way during DDR processes. Youth shall be kept safe and shall be provided information about where to go for help if they feel unsafe while participating in a DDR process. Risks to youth shall be identified, and efforts shall be made to mitigate such risks. DDR practitioners shall promote decent work conditions to avoid creating further grievances, with a focus on equal conditions for all regardless of their past engagement in armed conflicts, ethnic or other sociocultural background, political or religious beliefs, gender or other considerations to avoid prejudice and discrimination. Planning, assessment, design, monitoring and evaluation The planning, assessment, design, monitoring and evaluation of youth-focused DDR processes shall, at a minimum, involve youth representatives (ex-combatants, persons associated with armed forces or groups, and community members), including both male and female youth. This helps to ensure that youth immediately begin to act as agents of their own future, fosters trust between the generations, and ensures that both male and female youth priorities are given adequate consideration. Preventing the (re-) recruitment of youth into armed groups shall be a stated goal of DDR processes and included in the planning process. Public information and community sensitization Effective communication is a critical aspect of successful DDR (see IDDRS 4.60 on Public Information and Strategic Communication). A specific communication strategy involving, and where safe and possible, led by youth, shall be developed while planning for a youth-focused DDR process. At a minimum, this communication strategy shall include actions to ensure that youth participants and beneficiaries (and their families) are aware of their eligibility and the opportunities on offer, as well as alternative support available for those that are ineligible. Youth can help to identify how best to communicate this information to other youth and to reach youth in a variety of locations. Youth participants and beneficiaries shall be partners in the communications approach, rather than passive recipients. Public information and awareness raising campaigns shall be designed to specifically address the challenges faced by male and female youth transitioning to civilian status and to provide gender responsive information. Specific efforts shall be made to address societal gender norms that may create stigmatization based on gender and hinder reintegration. For example, female youth who were combatants or associated with armed forces or groups may be particularly affected due to societal perceptions surrounding traditional roles. Male youth may also be similarly affected due to community expectations surrounding masculinity.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "bcfe7f08-135e-489e-bd5b-c27286bc539b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 11, + "Paragraph": "Planning for youth-focused DDR processes For CAAFAG between the ages of 15 to 17, the situation analysis and minimum preparedness actions outlined in IDDRS 5.20 on Children and DDR shall be undertaken. For youth between the ages of 18 and 24, who are members of armed forces or groups, planning should follow similar processes for that of adult combatants, integrating specific considerations for youth. Specific focus shall be given to the following: Assessments shall include data disaggregated by age and gender. For example, prior to a CVR programme, baseline assessments of local violence dynamics should explicitly unpack the threats and risks to the security of male and female youth (see section 6.3 in IDDRS 2.30 on Community Violence Reduction). If the DDR process involves reintegration support, assessments of local market conditions should take into account the skills that youth acquired before and during their engagement in armed forces or groups (see section 7.5.5 in IDDRS 4.30 on Reintegration). Weapons surveys for disarmament and/or T-WAM activities should also include youth and youth organizations as sources of information, analyse the patterns of weapons possession among youth, map risk and protective factors in relation to youth, and identify youth-specific entry points for programming (see IDDRS 4.10 on Disarmament, IDDRS 4.11 on Transitional Weapons and Ammunition Management and MOSAIC 6.20 on Children, Adolescents, Youth and Small Arms and Light Weapons). It is also important for intergenerational issues to be included in the conflict/context assessments that are undertaken prior to a youth-focused DDR process. This will elucidate whether it is necessary to include reconciliation measures to reduce inter-generational conflict in the DDR process. Gender analysis including age specific considerations should also be conducted. For more information on DDR-related assessments, see IDDRS 3.11 on Integrated Assessments. Planning should also take into account different possible types of youth participation \u2013 from consultative participation to collaborative participation, to participation that is youth-led. In certain instances, for example CVR programmes and reintegration support, there may be space for youth to assume an active, leading role. In other instances, such as when a Comprehensive Peace Agreement is being negotiated, the UN should, at a minimum, ensure that youth representatives are consulted (see IDDRS 2.20 on The Politics of DDR). More broadly, youth representatives (both civilians and members of armed forces or groups) shall be consulted in the planning, design, implementation and monitoring and evaluation of all DDR processes as key stakeholders, rather than presented with a DDR process in which they had no influence. Principles on how to involve youth in planning processes in a non-tokenistic way can be found in section 7.4 of MOSAIC 6.20 on Children, Adolescents, Youth and Small Arms and Light Weapons. No matter how youth are involved, safety of youth and do no harm principles should always be considered when engaging them on sensitive topics such as association with armed actors.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "0abe5612-19c8-42e6-a4aa-fb0f4268daee", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 12, + "Paragraph": "5.1 Gender responsive and transformative DDR processes for female ex-combatants, females formerly associated with armed forces or groups and female dependents shall be gender-responsive and gender-transformative. To ensure that DDR processes reflect the differing needs, capacities, and priorities of young women and girls, it is critical that gender analysis is a key feature of all DDR assessments and is incorporated into in all stages of DDR (see IDDRS 3.11 on Integrated Assessments and IDDRS 5.10 Women, Gender and DDR for more information). Young women and girls are often at great risk of gender-based violence, including conflict related sexual violence, and hence may require a range of gender-specific services and programmes to support their recovery. Women\u2019s specific health needs, including gynaecological care should be planned for, and reproductive health services, and prophylactics against sexually transmitted infections (STI) should be included as essential items in any health care packages (see IDDRS 5.60 on HIV/AIDS and DDR and IDDRS 5.70 on Health and DDR). With the exception of identified child dependents, young women and girls shall be kept separately from men during demobilization processes. Young women and girls (and their dependents) should be provided with gender-sensitive legal assistance, as well as support in securing civil documentation (i.e., personal ID, birth certificate, marriage certificate, death certificate, etc.), if and when relevant. An absence of such documentation can create significant barriers to reintegration, access to basic services such as health care and education, and in some cases can leave women and children at risk of statelessness. Young women and girls often face different challenges during the reintegration process, facing increased stigma, discrimination and rejection, which may be exacerbated by the presence of a child that was conceived during their association with the armed force or armed group. Based on gender analysis which considers the level of stigma and risk in communities of return, DDR practitioners should engage with communities, leveraging women\u2019s civil society organizations, to address and navigate the different cultural, political, protection and socioeconomic barriers faced by young women and girls (and their dependents) during reintegration. The inclusion of young women and girls in DDR processes is central to a gender- transformative approach, aimed at shifting social norms and addressing structural inequalities that lead young women and girls to engage in armed conflict and that negatively affect their reintegration. Within DDR processes, a gender-transformative approach shall focus on the following: Agency: Interventions should strengthen the individual and collective capacities (knowledge and skills), attitudes, critical reflection, assets, actions and access to services that support the reintegration of young women and girls. Relations: Interventions should equip young women and girls with the skills to navigate the expectations and cooperative or negotiation dynamics embedded within relationships between people in the home, market, community, and groups and organizations that will influence choice. Interventions should also engage men and boys to challenge gender inequities including through education and dialogue on gender norms, relations, violence and inequality, which can negatively impact women, men, children, families and societies. Structures: Interventions should address the informal and formal institutional rules and practices, social norms and statuses that limit options available to young women and girls and work to create space for their empowerment. This will require engaging both female and male leaders including community and religious leaders.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "acd2d65d-43df-4bf8-91e4-f96039ddae27", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 13, + "Paragraph": "Prevention of recruitment and re-recruitment of youth Understanding the recruitment pathways of youth into armed forces and groups is essential for the development of effective (re-)recruitment prevention strategies. Prevention efforts should start early and take place continuously throughout armed conflict. Prevention efforts should be based on an analysis of the dynamics of recruitment and its underlying causes and include advocacy strategies that are directed at all levels of governance, both formal and informal. In recognition that youth are often recruited as children, and/or face similar \u2018push\u2019 and \u2018pull\u2019 risk factors, DDR practitioners should analyse the structural, social, and individual-level risk factors outlined in section 8 of IDDRS 5.20 on Children and DDR when designing and implementing strategies to prevent the (re-)recruitment of youth. DDR practitioners should also be aware that: Youth participation in armed conflict is not always driven by negative motivations. Volunteerism into armed groups can be driven by a desire to change the social and political landscape in positive ways and to participate in something bigger than oneself. Gender must be considered when considering reasons for youth engagement. Although an increasing number of young women and girls are involved in conflicts, particularly the longer conflicts continue, young men and boys are over-represented in armed forces and groups. This pattern is most often a result of societal gender expectations that value aggressive masculinity and peaceable femininity. While young women and girls often serve armed forces and groups in non- fighting roles and their contributions can be difficult to measure, their participation, reintegration and recovery is critical to peace building processes as marginalized women and girls remain at higher risk of (re)recruitment. Societal expectations may have implications for the roles of young women and men in conflict, as well as how they reintegrate following conflict (see IDDRS Module 5.10 Gender and DDR). It is important to understand the drivers for recruitment and re- recruitment, including the different challenges that male and female youth may experience.; CVR and community-based reintegration programmes can be useful in preventing the (re-) recruitment of youth (see section 7.4 and IDDRS 2.30 on Community Violence Reduction and IDDRS 4.30 on Reintegration); Young people can play a crucial role in preventing the spread of rumours that may fuel recruitment and armed conflict, particularly through social media. Different youth networks and organizations may use their connections to fact-check rumours and then spread corrected information to their communities; \u2018Safe spaces\u2019 that may take the form of youth centres or other contextually appropriate and gender sensitive form are recommended to be created as a place for young people to interact with each other. Centres that allow youth to meet off the streets and experience non-violent excitement and social connection can provide alternatives to joining armed forces or groups, offer marginalized youth a space where they feel included, and provide spaces to educate youth about the realities of life in armed groups. These centres can also help with training and employment efforts by, for example, organizing job information fairs and providing referrals to employment services and counselling. Informal youth drop-in centres may also attract young former combatants who are vulnerable to re-recruitment, and who did not go through DDR because of fear or misinformation, or because they managed to escape and are looking for help by themselves. Well-trained mentors who act as role models should manage these centres; Interaction between different youth organizations, networks and movements as well as youth centres, platforms and councils or others similar entitiescan provide opportunities to build trust between members of different communities. DDR practitioners should support programmes that encourage young people to initiate spaces that form bridges across conflict lines at community and state levels.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "25a2f361-ef70-4eeb-bd14-ba53adfc9efd", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 14, + "Paragraph": "Youth-focused approaches to DDR It is neither possible nor advisable to design and implement DDR processes for all young people in the same way. For youth between the ages of 15 to 17, the guidance outlined in section 7 of IDDRS 5.20 on Children and DDR shall be followed. However, elements of the guidance in this section, which focuses on youth aged 18 to 24, may also be applicable.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae87a7d7-4bc1-4adf-a399-a8b2afe18631", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 15, + "Paragraph": "DDR Programmes DDR programmes consist of a set of related measures, with a particular aim, falling under the operational categories of disarmament, demobilization and reintegration. DDR programmes require certain preconditions, such as the signing of a peace agreement, to be viable (see IDDRS 2.10 on The UN Approach to DDR). Personnel Youth-focused DDR programmes should include technical personnel and local staff with experience in working on youth and gender issues in order to ensure that explicit needs are identified and addressed from an early stage of engagement. This should be expressed either through distinct roles or as a function of an existing role and developed into relevant terms of reference. For example, the disarmament team should include a national youth specialist. Disarmament and demobilization sites During disarmament or demobilisation processes youth should be screened for age, following age assessment guidance found in Annex B of IDDRS 5.20 on Children and DDR. Youth, under the age of 18, should be separated from adults. With the exception of young child dependants who are with their caregivers, female youth participating in DDR programmes should, at a minimum, be accommodated in a female only section and, where possible, housed in female only facilities along with other female ex-combatants and females associated with armed forces or groups. Further guidance can be found in IDDRS 4.10 on Disarmament, IDDRS 4.20 on Demobilization, and IDDRS 5.10 on Women, Gender and DDR Profiling Even before disarmament begins, a general profile of the potential participants and beneficiaries of a DDR programme should be developed in order to inform later reintegration programming. The following data should be collected: demographic composition of participants and beneficiaries, education and skills, special needs, areas of return, expectations and security risks. To the extent possible, a random and representative sample should be taken, and the data gathered should be disaggregated by age and gender (see IDDRS 4.30 on Reintegration). During disarmament and demobilization, ex-combatants and persons formerly associated with armed forces or groups should be registered and more comprehensive profiling should take place (see IDDRS 4.20 on Demobilization). This profiling should be used, at a minimum, to identify obstacles that may prevent youth from full participation in a DDR programme, to identify the specific needs and ambitions of youth, and to devise protective measures for youth. For example, profiling may reveal the need for extended outreach services to families to address trauma, distress, or loss, and increase their ability to support returning youth. The registration and profiling of youth should include an emphasis on better understanding their reasons for engagement, aspirations for reintegration, education and technical/professional skill levels and major gaps, health-related issues that may affect reintegration (including psychosocial health), family situation, economic status, and any other relevant information that will aid in the design of reintegration solutions that are most appropriate for youth. A standardized questionnaire collecting quantitative and qualitative data from youth ex-combatants and youth formerly associated with armed forces or groups should be designed. This questionnaire can be supported by conducting qualitative profiling: assessing life skills and skills learned during armed service (for example, leadership, driving, maintenance/repair, construction, logistics) which their record often does not reflect (see Annex B for Sample Profiling Questions to Guide Reintegration). Medical health screening During demobilization, individuals shall be directed to a doctor or medical team for health screening. Both general and specific health needs shall be assessed. Given their age and increased risk factors, youth shall be provided with basic specialized attention in the areas of reproductive health and STIs, including voluntary testing and counselling for HIV/AIDS (see IDDRS 5.60 on HIV/AIDS and DDR and IDDRS 5.70 on Health and DDR). Female medical personnel shall be made available for women and girls. In addition, screening for mental health and psychosocial support needs should be available. Plans for how to protect personal health information shall also be made. Pre-discharge awareness raising The transition from military to civilian life can be extremely difficult and stressful for youth who are ex-combatants or persons associated with armed forces or groups. These young men and women often lack experience in navigating civilian systems or processes such as finding accommodation, accessing services and engaging in civilian life. Pre-discharge awareness raising can be a critical component in ensuring a smooth initial transition and to begin to prepare youth for civilian life. As such, specialized sensitization programmes should be developed for youth to address the various concerns specific to this group. These programmes should take into account specific gender differences such as addressing societal expectations (e.g., for males to be the primary breadwinner, for females to fulfil traditional gender roles) and risks of stigmatization/rejection. However, they should also be designed to prepare youth for their reintegration, including beginning to raise and where appropriate address issues such as social norms and how to resolve disagreements and disputes non-violently. Given that youth may have been socialized into violence during the period they were associated with an armed force or group, longer-term reintegration support is necessary. Sensitization should therefore focus on helping youth find solutions to the challenges they may face on their return, rather than purely identifying those challenges.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "21de2667-160f-47ec-ad7e-3b278f972107", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 14, + "Paragraph": "Reintegration Reintegration support can be provided as part of a DDR programme, or when the preconditions for a DDR programme are not in place (see IDDRS 2.10 on The UN Approach to DDR). For youth 15-17, reintegration support can be provided at any time (see IDDRS 5.20 on Children and DDR) The guidance provided in this section is applicable to both scenarios. Reintegration is a complex mix of economic, social, political and personal factors, all of which work together. While the reintegration of youth ex-combatants and youth formerly associated with armed forces or groups may depend, in part, on their successful transition into the world of work, if youth retain deep-rooted grievances due to political marginalization, or face significant, unaddressed psychosocial distress, or are experiencing ongoing conflict with their family, then they are extremely unlikely to be successful in making such a transition. Additionally, if communities and other stakeholders, including the State, do not recognize or value young people\u2019s contributions, expertise, and opinions it may increase the vulnerability of youth to re-recruitment. Youth-focused reintegration support should be designed and developed in consultation with youth. From the beginning, programme components should address the rights, aspirations, and perspectives of youth, and be as inclusive, multisectoral, and long term as is feasible from the earliest phases. Mental health and psychosocial support and special care Mental health and psychosocial support needs and capacities should be identified during the profiling survey undertaken during demobilization (see above) and appropriate support mechanisms should be established to be implemented during reintegration. When necessary, demobilized youth should be supported through extended outreach mental health and psychosocial support services. This may include individual, group or family therapy, or training in various community-based psychosocial support and psychological first aid techniques. It may require recruitment of mental health or psychosocial support professionals as staff or outsourcing to local service providers or civil society. Local providers can also help address potential stigmatization relating to mental health and psychosocial support. All DDR participants and beneficiaries requiring and/or requesting mental health or psychosocial support should have access to such support. Programme staff must ensure that appropriate protections are put in place and that any stigmatization is effectively addressed. DDR practitioners should consider the utility of a variety of innovative strategies to help young people deal with trauma. In some contexts, for example, music and theatre have been used to spread information, raise awareness and empower youth (e.g., \u2018theatre of the oppressed\u2019). Sports and cultural events can strongly attract young people while also having great social benefits. DDR practitioners should be aware that the cultural sector can also provide employment. Youth radio can be an excellent way of allowing youth to communicate and engage with each other and DDR practitioners should consider supplying related equipment and professional trainers. Radio can reach and inform many people and is accessible even to difficult-to-reach groups. Rural cinemas may also serve as an interactive activity in which youth can participate. Such initiatives may benefit wider social cohesion. Some of these strategies could result in new businesses run by both civilian youth and youth who are former members of armed forces or groups. This may help to bring youth together and provide/strengthen support networks. Mental health and psychosocial support interventions should be planned to respond to specific gender needs. Female youth ex-combatants may face several distinct challenges that affect their mental and psychosocial health in different ways. Specific experience of conflict (for e.g., forced sexual activity, childbirth, abortion, desertion by \u2018bush husbands\u2019) and of reintegration (e.g., rejection by family and community due to involvement in socially unacceptable activities for a female, lack of access to specific employment opportunities, and greater care-giver duties) may create a subset of mental health and psychosocial support needs that the programme should address. Likewise, young male ex-combatants may face psychosocial difficulties associated with their conflict experience (e.g., perpetrator and victim of sexual violence, extreme violence) and reintegration (e.g., high levels of post-traumatic stress, appetitive aggression, and notions of masculinity and societal expectation). The capacity of the health and social services sectors to assist youth with mental health and psychosocial support should be improved. Training of trainers in psychological first aid and other community-based techniques can be particularly useful, especially in the short to medium-term. However, longer term planning for the health and social services sectors is required. Health Youth reintegration programmes should build on healthcare provided during the demobilization process to support youth to address the various health issues that may negatively impact their successful reintegration. These health interventions should be planned as a distinct component of reintegration programming rather than as ad hoc support. For more information, see IDDRS 5.70 Health and DDR. Disability Conflict-related disability can represent a significant barrier to reintegration for youth who are former members of armed forces or groups. As well as having to cope with the pain and difficulty of living with a disability, it can have a disruptive influence on employment and social engagement. Moreover, individuals with disabilities can be extremely hard to access and, as a result, have often been overlooked and excluded from meaningful reintegration support. Support for disabled youth ex- combatants and persons formerly associated with armed forces and groups should be informed by the Convention on the Rights of Persons with Disabilities (CPRD) (see IDDRS 5.80 on Disability- Inclusive DDR). Based on the principles of non-discrimination, inclusion, participation and accessibility, compliance with the CPRD enables DDR programmes to be more inclusive of young former members of armed forces and groups with disabilities and responsive to their specific and unique needs. While young ex-combatants and persons formerly associated with armed forces or groups with disabilities should be supported through innovative employment and social protections initiatives (e.g., pensions, housing, compensation funds, land, etc.), medical and physical rehabilitation support should also be a feature of reintegration, or at the least, effective referral for necessary support. HIV/AIDS Educating young people about HIV and AIDS and teaching them skills in negotiation, conflict resolution, critical thinking, self-awareness, decision-making and communication improves their self- confidence and ability to make informed choices about their own reproductive health and to keep themselves safer and healthier. Since the involvement of parents, extended families, communities, schools and peers is vital in guiding and supporting young people to make safe choices about their health and well-being, DDR practitioners should consult with agencies involved in HIV prevention strategies and ensure that any health component of DDR works together with other community-based strategies to avoid transmission of HIV and to care for those infected with HIV or who are AIDS patients. Studies have shown that a consistent, positive, emotional relationship with a caring adult helps young people feel safe and secure, allowing them to develop the resilience needed to manage challenges in their lives and to protect their sexual well-being. Mentors in DDR training programmes should therefore be trained as educators and counsellors on HIV. Young women are much more likely to be infected with HIV than young men, especially when they live in conditions of poverty, are exploited by older men, or carry out sex work to survive. Specific interventions to reduce the vulnerabilities of young women to sexually transmitted infections (STI\u2019s) should be considered to address this risk and should include young men, given the role that they may play in transmission. Respect for each other can protect both young men and young women from the dangers of forced or unwanted sex and enable them to feel comfortable discussing sexual matters and negotiating safety and protection. Youth-friendly services within reintegration programmes should offer treatment for STI\u2019s and help young people access sexual and reproductive health information and services. Voluntary and confidential HIV counselling and testing services allow young people to find out their HIV status and understand safe ways of behaving, whether they are infected or not (see IDDRS 5.60 on HIV/AIDS and DDR). Drug and alcohol addiction Many youths may have habitually taken or been given drugs as combatants. In some war zones, commanders routinely give drugs to youngsters to make them dependent on the group, more obedient, and reduce their resistance to committing violent acts or crimes. At the end of the conflict, some youth may fall into drug and alcohol abuse as a coping mechanism. Reintegration programmes should make a particular effort to deal with the issue of the harmful use of drugs and alcohol by young combatants, including through the provision of drug/alcohol abuse treatment and/or the provision of referral services. In many countries, the use of such substances seriously undermines the effective implementation of youth employment and reintegration programmes. If young combatants are provided with money to start their businesses while they are not fully detoxed and rehabilitated from drugs they were using during combat, their reintegration is less likely to be successful. A fear that ex-combatants are habitual drug users is also an important reason why employers may be unwilling to recruit these individuals (also see IDDRS 5.70 on Health and DDR). Life skills Life skills represent a key aspect of reintegration. Youth face greater levels of responsibility than children but may have had their education or personal development interrupted due to armed conflict. Youth may be expected to work, support family, and take on leadership roles for which they may not be prepared. For female youth, strengthening life skills can facilitate the development of mechanisms to help overcome societal pressures and obstacles, positively influence the role of women in peacebuilding, and ensure that any elevation in their position during the conflict is not lost in civilian life. For male youth, improved life skills can help address negative aspects of contextual notions of masculinity and increase their ability to resolve conflict in non-violent ways. Investment in life skills development for all youth must be considered of critical importance for DDR practitioners. This should be seen as a key reintegration strategy and should be mainstreamed throughout all the main components of reintegration programming. Examples of the type of life skills that may be developed through reintegration support are outlined in Table 1 below. When reintegration is being supported as part of a DDR programme, the life skills to be developed should be determined by the findings from the profiling survey conducted during demobilization. Education A young person\u2019s level of education will often determine whether he or she makes a successful transition into the world of work. There is also evidence that keeping young people in school slows the transmission of HIV/AIDS and has other mental health and psychosocial benefits for youth affected by armed conflict (see IDDRS 5.60 on HIV/AIDS and DDR). Although a lack of primary education is normally a problem that only affects younger children, in an increasing number of conflict-affected countries, low literacy has become a major problem among youth. Time spent with an armed force or group results in a loss of educational opportunities. This in turn can create barriers to socioeconomic (re)integration, as youth are often faced with pressure to provide for themselves and their families. In contrast, a return to education can help to foster a sense of normalcy, including social interaction with other students, that assists with other elements of reintegration. As explained in detail in IDDRS 5.20 on Children and DDR, when transitioning from military to civilian life, youth may be reluctant to resume formal basic education because they feel embarrassed to attend schools with children of a much younger age, or because their care-giving responsibilities are simply too heavy to allow them the time to study without earning an income. Costs can be prohibitive, and older youth may be pressured into employment. For those youth who do return to education, many experience diminished educational attainment. This may be due to an inability to concentrate because of the trauma they experienced, or due to the absence of teachers with the experience and capacity to deal with the obstacles to learning that they face. Obstacles to the education of youth who are ex-combatants and persons associated with armed forces or groups must be overcome if their reintegration is to be successful. Youth should not feel stigmatized because they lost the opportunity to acquire an education, served in armed forces or groups, became refugees, or were not able to attend school for other reasons. Youth should also not be prevented from attending school due to costs, or because they are parents or hold other responsibilities (e.g., main household earner). The best solution may be to provide youth who have missed out on education with Accelerated Learning Programmes (ALP), which are designed and tailored for older learners and that are compatible with and recognized by the formal system of education (see section 7.9.4 in IDDRS 5.20 on Children and DDR). This may require the development of creative modalities for the provision of catch-up education in order to remain sensitive to the needs of youth, overcome obstacles, and maximize accessibility. For example: Begin education (basic literacy, numeracy and primary education) during demobilization and begin youth on a trajectory that will enable easier integration into formal education. Develop education programmes for different subsets of youth who are former members of armed forces and groups to best take into account their ability to learn and their level of development and maturity (e.g., through remedial education). Provide initial bridging education in separate facilities (for a short time only) to build up to a minimal level of educational attainment before entering mainstream classes. Train and mentor teachers in the provision of education to vulnerable, at-risk youth. Train teachers to promote peaceful coexistence and adapt curricula accordingly. Provide child-care facilities at all schools offering education for youth, to allow young mothers and youth who have responsibilities for dependents to attend. Childcare should be free and include a feeding/nutritional programme. Deliver vocational training on a part-time basis, so that it is possible to use the rest of the week for regular catch-up education. The mix of education and vocational training provides former combatants with a broader basis for finding long-term employment than simple vocational training. This system has the additional advantage of increasing the number of places available at training centres, which exist only in a limited number, as trainees will only attend two half-days of training a week, allowing many more people to be trained than if only one group attended full-time. Vocational training Vocational training can play a key role in the successful reintegration of young ex-combatants and persons formerly associated with armed forces or groups by increasing their chances to effectively participate in the labour market. By providing youth with the means to acquire \u2018employable skills,\u2019 vocational training can increase self-esteem and build confidence, while helping young people to (re)gain respect and appreciation from the community. Most armed conflicts result in the disruption of training and economic systems and, because of time spent in armed forces or groups, many young ex-combatants and persons associated with armed forces and groups do not acquire the skills that lead to a job or to sustainable livelihoods. At the same time, the reconstruction and recovery of a conflict-affected country requires large numbers of skilled and unskilled persons. Training provision needs to reflect the balance between demand and supply, as well as the aspirations of youth DDR participants and beneficiaries. DDR practitioners should develop strong networks with local businesses and agriculturalists in their area of operation as early as possible to engage them as key stakeholders in the reintegration process and to enhance employment and livelihood options post-training. Partnerships with the private sector should be established early on to identify specific employment opportunities for youth post-training. This could include the development of apprenticeship programmes (see below), entering into Memoranda of Understanding (MOUs) with local chambers of commerce or orientation events bringing together key business and community leaders, local authorities, service providers, trade unions, and youth participants. DDR practitioners should explore opportunities to collaborate with vocational training institutes to see how they could adapt their programmes to specifically cater for demobilized youth. Employers\u2019, agriculturalists, and trade unions are important partners, as they may identify growth sectors in the economy, and provide assistance and advice to vocational training agencies. They can help to identify a list of national core competencies or curricula and create a system for national recognition of these competencies/curricula. Employers\u2019 organizations can also encourage their members to offer on-the-job training to young employees by explaining the benefits to their businesses such as increased productivity and competitiveness, and reduced job turn-over and recruitment expenses. Systematic data on the labour market and on the quantitative and qualitative capacities of training partners may be unavailable in conflict-affected countries. Engagement with businesses, agriculturalists, and service providers at the national, sub-national and local levels is therefore vital to fill these knowledge gaps in real-time, and to sensitize these actors on the challenges faced by youth ex-combatants and persons formerly associated with armed forces and groups. DDR practitioners should also explore opportunities to collaborate with national and local authorities, other UN agencies/programmes and any other relevant/appropriate actors to promote the restoration of training facilities and institutions, apprenticeship education and training programmes, and the capacity building of trainers. For youth who have little or no experience of decent work, vocational training should include a broad range of training and livelihood options to provide young people with choice and control over decision-making that affects their lives. In rural settings, agricultural and animal husbandry, veterinary, and related skills may be more valuable and more marketable and should not be ignored as options. Specifically, consideration should be given to the type of training that female youth would prefer, rather than limiting them to training for roles that have traditionally been associated with females . The level of training should also match the need of the local economy to increase the probability of employment, so that the skills and expectations of youth match labour market needs, and training modalities should be developed to most appropriately reflect the learning needs of youth deprived of much of their schooling. As youth may have experienced trauma or loss, mental health and psychosocial support should be available during training to those who need it. Vocational training modalities should also specifically consider those with dependants (particularly young women) to enable them sustained access to training programmes. This may include supporting access to social protection measures such as kindergarten or other forms of childcare. In addition, it is important to understand the motivations and interests of young people as part of facilitating a match of training with the local economy needs. Young people require learning strategies that allow them to learn at their own pace. Learning approaches should be interactive and utilize appropriate new technologies, particularly when attempting to extend skills training to hard-to-reach youth. This may include digital resources and eLearning, as well as mobile skills-building facilities. The role of the trainer involved in these programmes should be that of a facilitator who encourages active learning, supports teamwork and provides a positive adult \u2018role model\u2019 for young participants. Traditional supply-driven and instructor-oriented training methods should be avoided. Where possible, and in order to prepare young people with no previous work experience for the highly competitive labour market, vocational training should be paired with apprenticeship and/or on-the-job training opportunities. Trainees can then combine the skills they are learning with practical experience of norms and values, productivity and competition in the world of work. DDR practitioners should also plan staff development activities that aim at training existing or newly recruited vocational trainers in how to address the specific needs and experiences of young DDR participants and beneficiaries. Youth ex-combatants and persons formerly associated with armed forces or groups can experience further frustration and hopelessness if they do not find a job after having been involved in ineffective or poorly targeted training programme. These feelings can make re-recruitment more likely. One of the clearest lessons learned from past DDR programmes is that even after training, young combatants often struggle to succeed in weak economies that have been damaged by war, as do adults. Businesses owned by former members of armed forces and groups regularly fail due to market saturation, competition with highly qualified people already running the same kinds of businesses, limited experience in business start-up, management and development, and because of the very limited cash available to pay for goods and services in post-war societies. Youth may also be in competition for limited job opportunities with more experienced adults. To address these issues, reintegration programmes should more effectively empower youth by combining several skills in one course, e.g., home economics with tailoring, pastry or soap- making. This is because possession of a range of skills greatly improves the employability of young people. Also, providing easy-to-learn skills such as mobile phone repair makes young people less vulnerable and more adaptable to rapidly changing market demands. Together the acquisition of business skills and life skills (see above) can help young people become more effective in the market. Depending on the context, agricultural and animal husbandry, veterinary, and related skills should be considered. Training demobilized youth in trades they might identify as their preference should be avoided if the trades are not required in the labour market. The feeling of frustration and helplessness that might have caused people to take up arms in the first place only increases when they cannot find employment after training and could increase the risk of re-recruitment. Training and apprenticeship programmes should be adapted to young people\u2019s abilities, interests and needs, to enable them to complete the programme, which will both boost their employment prospects and bolster their self- confidence. A commitment to motivating young people to realize their potential is a vital part of successful programming and implementation. This can be achieved through greater involvement of both youth participants and the business community in reintegration programming and design. This can enable a more realistic appreciation of the economic context, the identification of interesting but non-standard alternatives (so long as they can lead to sustainable job prospects or livelihoods), and the development of initial relationships. Effective career or livelihood counselling will be central to this process, and it is therefore necessary to recruit DDR staff with skills not only in vocational and technical training provision, but also in working with youth. Where such capacities are not evident it is important to invest in capacity development before DDR staff make contact with programme participants. Employment services Vocational training should be accompanied by high quality employment counselling and livelihood or career guidance. Young people who have been engaged with an armed force or armed group may have no experience of looking for employment, no professional contacts, and may not know what they can do or even want to do. Employment counselling, career guidance and labour market information that is grounded in the realities of the context can help youth ex-combatants and youth formerly associated with an armed force or group to: manage the change from the military to civilian life and from childhood to adulthood; understand the labour market; identify opportunities for work and learning; build important attitudes and life skills; make decisions; plan their career and life. Employment counselling and career and livelihood guidance should match the skills and aspirations of youth who have transitioned to civilian status with employment or education and training opportunities. Counselling and guidance should be offered as early as possible (and at an early stage of the DDR programme if one exists), so that they can play a key role in designing employment programmes, identifying education and training opportunities, and helping young ex- combatants and persons formerly associated with armed forces or groups make realistic choices. Female youth and youth with disabilities should receive tailored support to make choices that appropriately reflect their wishes rather than being pressured into following a career path that fits with social norms. This will require significant work with service providers, employers, family and the wider community to sensitize on these issues, and may necessitate additional training, capacity building and orientation of DDR staff to ensure that this is done effectively. Employment counsellors should work closely with the business community and youth both before and during vocational training. Employment services including counselling, career guidance, and directing young people to the appropriate jobs and educational institutions should also be offered to all young people seeking employment, not only those previously engaged with armed forces or groups. Such a community-based approach will demonstrate the benefit of accepting returning former members of armed forces and groups into the community. Employment and livelihood services must build on existing national structures and are normally under the control of the ministry of labour and/or youth. DDR practitioners should be aware of fair recruitment principles and guidelines 3 and how they may apply to a DDR context when seeking to promote employment through both public employment services and private recruitment agencies. Public works programmes Public works programmes aim to build or rehabilitate public/community assets and infrastructure that are vital for sustaining the livelihoods of a community. Examples are the rehabilitation of maintenance of roads, improving drainage, water supplies and sanitation, demining or environmental work including the planting of trees (see IDDRS 4.20 on Demobilization). Public works programmes can be easily designed to create job opportunities for youth who are community members and/or former members of armed forces and groups. There is always urgent work to be done in priority sectors \u2014 such as essential public facilities \u2014 and geographical areas, especially those most affected by armed conflict. Job-creation schemes may provide employment and income support and, at the same time, develop physical and social infrastructure. Such schemes should be designed to promote the value-chain, exploring the full range of activities needed to create a product or services, and should make use of locally available resources, whenever possible, to boost the sustainable economic impact. Although these programmes offer only a limited number of long-term jobs, they can provide immediate employment, increase the productivity of low-skilled youth and help young participants gain work experience that can be critical for more sustainable employment. A further key impact is that they can assist in raising the social status of youth former members of armed forces and groups from individuals who may be perceived as \u201cdestroyers\u201d to individuals who are considered \u201cconstructors\u201d. Chosen schemes can be part of special reconstruction projects to directly benefit youth, such as training centres, sports facilities, health facilities, schools, or places where young people can engage in local politics or play and listen to music. Such projects can be developed within the local construction industry and assist groups of youth to become small contractors. Community-based employment provides an ideal opportunity to mix young former members of armed forces and groups with other youth, paving the way for social reintegration, and should be made available equally to young women and men. Where possible, public works programmes shall be implemented immediately after young people transition from military to civilian status. Care must be taken to ensure that safe labour standards are prioritized, and that youth are given options in terms of the type of work available to them, and not forced into physically demanding work. The creation of employment-intensive work for youth should include other components such as flexible on-site training, mentoring, community services and psychosocial care (where necessary) to support their reintegration into society. Wage incentives Employers may be hesitant to hire youth who are former members of armed forces or groups for a wide range of reasons. These reasons may include distrust, image/perceptions, as well as issues of discrimination linked to ethnicity, sociocultural background, political and/or religious beliefs, gender, etc. To help overcome barriers and create opportunities, employers should be given incentives to hire youth or create apprenticeship places. For example, construction companies could receive certain DDR-related contracts on the condition that their labour force includes a high percentage of youth or even a specific group of youth, such as female youth who are ex-combatants. Wage subsidies and other incentives, such as tax exemptions for a limited period, can also be offered to employers who hire young former members of armed forces and groups. This can, for example, pay for the cost of initial training required for young workers. These subsidies can be particularly useful in enabling certain groups of youth to access the labour market (e.g., ex-combatants with disabilities), or areas of the labour market that may traditionally be off limits (e.g., female ex-combatants with a desire to work in traditionally male dominated areas). There are many schemes for sharing initial hiring costs between employers and government. The main issues to be decided are the length of the period in which young people will be employed; the amount of subsidy or other compensation employers will receive; and the type of contracts that young people will be offered. Employers may, for example, receive the same amount as the wage of each person hired or apprenticed. Other programmes combine subsidized employment with limited-term employment contracts for young people. Work training contracts may provide incentives to employers who recruit young former members of armed forces and groups and provide them with on-the-job training. Care should be taken to make sure that this opportunity includes youth who are former members of armed forces and groups, in order to incentivize employers to work with a group that they may have otherwise been wary of. Furthermore, DDR practitioners should develop an efficient monitoring system to make sure that training, mentoring and employment incentives are used to improve employability, rather than turn youth into a cheap source of labour. Trade unions Trade unions should be encouraged to identify and share examples of good practice for organizing and recruiting young people. These include youth-recruiting-youth methods, networks of young trade union activists for sharing experiences, and other informal networks for exchanging information. Youth committees and working groups from different unions should be set up in order to share information, identify the needs and problems of young people and implement relevant policies and strategies. Young members can learn from other unions about how to open up job opportunities and improve working conditions. Tripartite consultations and collective bargaining can be used by unions to pressure governments and employers to deal with questions of youth employment and make youth issues part of policies and programmes. It is also a good idea to work with governments and workers\u2019 organizations to develop and implement strategies for youth reintegration that everyone involved supports. Decent work for youth can be made part of collective agreements negotiated by unions. Unions can also provide advice on workplace issues and proposed legislation, support and encourage the provision of social protection for both young people and adults, put pressure on employers and employers\u2019 organizations to prevent child labour, and make sure that young workers are informed about their rights and the role of trade unions. The private sector The private sector can play an important role in reintegration, not only through employers\u2019 organizations, but also because individual companies can contribute to the socioeconomic (re)integration of young people. There are a great many potential initiatives that the private sector can contribute to, ranging from strategic dialogue to high-risk arrangements. The private sector may sponsor scholarships and support education by, for example: sponsoring young people working toward higher qualifications that provide relevant skills for the labour market; sponsoring special events or school infrastructure, such as books and computers or other office equipment; and establishing meaningful traineeships that provide young people with valuable work experience and help them reintegrate into society. The private sector should also be encouraged to support young entrepreneurs during the critical first years of their new business. Large firms could introduce mentorship or coaching programmes, and offer practical support such as providing non-financial resources by allowing young people to use company facilities (internet, printer, etc.), which is a low-cost yet effective way of helping them to start their own businesses or apply for jobs. Volunteer work at a large business provides young entrepreneurs with valuable expertise, knowledge, experience and advice. This could also be provided in seminars and workshops. The private sector can also provide start-up capital, for example, by holding competitions to provide young people who develop innovative business ideas with start- up funding. Networks of small businesses run by young people should be helped to cooperate with each other and with other businesses, as well as with institutions such as universities and specialized institutions in particular sectors of the economy, so that they can better compete with large, well- established companies. They can cooperate and share the costs of buying more expensive equipment, as well as share experiences and knowledge. Public\u2013private partnerships can also assist youth who are former members of armed forces and groups, for e.g., by working together to provide employment service centres for young people. Training centres, job centres and microfinance providers should be linked to members of the private sector, be well informed of the needs and potential of youth, and adapt their services to help this group. Youth entrepreneurship As there is often severe competition in post-conflict labour markets, youth will often have very limited access to existing jobs. The large majority of youth will need to start their own businesses, in groups or individually. To increase their success rate, DDR practitioners should: develop young people\u2019s ability to deal with the problems they will face in the world of work through business development education. They should learn the following sets of skills: being enterprising \u2014 learning to see and respond to opportunities; business development skills \u2014 learning to investigate and develop a business idea; business management skills \u2014 learning how to get a business going and manage it successfully. develop the capacities of young entrepreneurs to manage businesses that positively contribute to sustainable development in their communities and societies and that do no harm. encourage business persons and agricultural leaders to support young (or young potential) entrepreneurs during the vital first years of their new enterprise by transferring their knowledge, experience and contacts to them. They can do this by providing on-the-job learning, mentoring, including them in their networks and associations, and using youth businesses to supply their own businesses. The more support a young entrepreneur receives in the first years of their business, the better their chances of creating a sustainable business or of becoming more employable. ensure business-focused DDR activities align with national priorities and strategies in order to maximise potential access to resources and government support. provide access to business training. Among several business training methods, Start Your Business, for start-ups, and Start and Improve Your Business (SIYB) help train people who train entrepreneurs and through this multiplier effect, reach a large number of unemployed or potential business starters. SIYB is a sustainable and cost- effective method that equips young entrepreneurs with the practical management skills needed in a competitive business environment. If the illiteracy rate among young combatants is very high, other methods are available, such as Grassroots Management Training.4 Youth entrepreneurship is more likely to be effective if supported by enabling policies and regulations. For example, efficient and fair regulations for business registration will help young people to start a business in the formal economy. Employers\u2019 organizations can play an important role in providing one-on-one mentoring to young entrepreneurs. Support from a mentor is particularly effective for young entrepreneurs during the first years of business start-up, since this is when youth enterprises tend to have high failure rates. It is important that youth themselves control the mentoring relationships they engage in to ensure these are formed on a voluntary basis and are positive in nature. Some youth may enjoy more formal structures, while for others an informal arrangement is preferable. Group-based youth entrepreneurship, in the form of associations or cooperatives, is another important way of providing decent jobs for youth ex-combatants and youth formerly associated with armed forces and groups. This is because many of the obstacles that young entrepreneurs face can be overcome by working in a team with other people. In recognition of this, DDR practitioners should encourage business start-ups in small groups and where possible there should be a balance between civilians and former members of armed forces and groups. DDR practitioners should empower these youth businesses by monitoring their performance and defending their interests through business advisory services, including them in employers\u2019 and workers\u2019 organizations, providing access to business development services and micro-finance, and creating a favourable environment for business development. A number of issues may also need to be tackled in relation to youth entrepreneurship, including: the need for investment in premises and equipment (a warehouse, marketplace, cooling stores, workplace, equipment); the size and nature of the local market (purchasing power and availability of raw materials); the economic infrastructure (roads, communications, energy); and the safety of the environment and of any new equipment. Given that such issues go beyond the scope of DDR, there should be direct links between DDR and other development initiatives or programmes to encourage national or international investments in these areas. Where possible, reintegration programmes should also source products and services from local suppliers. Microfinance for youth Microcredit remains an important source of financial help for people who do not meet the criteria for regular bank loans and has wide reaching benefits in terms of enhancing social capital and facilitating conflict resolution and reconciliation through cross-group cooperation. Reintegration programmes should take active steps to provide microfinance options. The success of microfinance lies in its bottom-up approach, which allows for the establishment of new links among individuals, NGOs, governments and businesses. Traditionally, youth have largely been denied access to finance. While some young people are simply too young to sign legal contracts, there is also a perception that youth ex-combatants and youth formerly associated with armed forces and groups are unpredictable, volatile, and therefore a high-risk group for credits or investments. These prejudices tend to disempower youth, turning them into passive receivers of assistance rather than enabling them to take charge of their own lives. Microfinance holds great potential for young people. Youth should be allowed access to loans within small cooperatives in which they can buy essential assets as a group. When the group members have together been able to save or accumulate some capital, the savings or loans group can be linked to, or even become, a microfinance institution with access to donor capital. Governments should assist youth to get credits on favourable terms to help them start their own business, e.g., by guaranteeing loans through microfinance institutions or temporarily subsidizing loans. In general, providing credit is a controversial issue, whether it aims at creating jobs or making profits. It is thus important to determine which lending agencies can best meet the specific needs of young entrepreneurs. With adequate support, such credit agencies can play an important role in helping young people to become successful entrepreneurs. Depending on the case, the credit can either be publicly or privately funded, or through a public-private partnership that would increase the buy-in of the local business community into the reintegration process. Microfinance programmes designed specifically for youth should be accompanied by complementary support services, including business training and other non-financial services such as business development services, information and counselling, skills development, and networking. The role of families and communities The reintegration of young former members of armed forces and groups is more likely to be successful they receive support from their families. The family unit provides critical initial needs (shelter, food, clothing, etc.) and the beginning of a social network that can be crucial to community acceptance and finding employment, both important factors in minimising the risk of re-recruitment and in successful, sustained reintegration. Youth-focused reintegration programmes should develop initiatives that promote family reintegration through preparing families for youth returns, providing support to families who welcome back youth who are reintegrating, and working with families and communities to come together to reduce potential stigma that the family may experience for welcoming back a former member of an armed force or group. After serving in armed groups or forces in which they had status and even power, youth are likely to experience a sudden drop in their influence in families and communities. A community- based approach that elevates the position of youth and ensures their social and political inclusion, is central to the successful reintegration of youth. Young men and women should be explicitly involved in the decision-making structures that affect the reintegration process, to allow them to express their specific concerns and needs, and to build their sense of ownership of post-conflict reconstruction processes. Youth-focused reintegration programmes should emphasise the identification and support of role models to provide leadership to all youth. This may include young women who are engaged in non-gender-traditional employment to demonstrate the possibilities open to young women and to provide mentoring support to others in training and employment choices. Equally, it may include young men who challenge gender norms and promote non-violent conflict management who can help to change attitudes towards gender and violence in both young men and women. Youth who have successfully transitioned from military to civilian life may serve as mentors to those who have more recently made the transition, preferably in a group setting alongside civilian youth so as to avoid stigma and isolation. Voice, participation and representation Political marginalization is a significant driving factor behind youth (re-)recruitment into armed forces and groups. Ensuring that youth have necessary and appropriate levels of voice and representation in their communities and nationally is a critical element of successful reintegration. Reintegration support should aim to create opportunities for young people\u2019s civic and political engagement at the local level, including strategies for ensuring the inclusion of youth former combatants and youth formerly associated with armed forces and groups in local decision-making processes. Programmatic collaboration with community-based organizations and NGOs engaging in political development initiatives (for e.g., political party capacity development and the establishment of youth parliaments) to identify and promote opportunities for youth engagement can be a useful way to develop this stream of work. At the national level, DDR practitioners should coordinate and collaborate with national youth organisations to help facilitate social relations with peers and opportunities to engage in youth-led political initiatives. This should be accompanied by the aforementioned life-skills, including civic education, which could be jointly attended by civilian youth, to ensure a conflict sensitive approach. Youth ex-combatants and youth formerly associated with armed forces and groups have the potential to play a significant, positive role in peace building. Reintegration programmes should therefore make significant resources available to promote youth as agents of change. Programmatic interventions seeking to promote the role of youth as peaceful agents of change might include: a training programme for youth (former members of armed forces and groups and otherwise) in political mediation, grassroots organization and advocacy. a youth-led community peace education programme utilising creative platforms (e.g. sport, music, visual arts, theatre and dance) to promote a culture of non-violence and peace a youth managed peer education and mentoring programme promoting equality, trust and thought-provoking learning on issues such as SGBV, social inclusion, violence prevention, climate change and sustainable development, among others. an activity reusing scrapped weapons for artistic and symbolic purposes could be included as a reintegration activity involving community youth in an effort to build confidence and connections between youth, as well as leave lasting messages for peace in communities. a small grants facility for youth (both former members of armed forces and groups and otherwise) supporting youth designed and implemented social programmes that have an articulated community benefit. a community-driven development facility that brings youth (both former members of armed forces and groups and otherwise) together with community leaders to identify, design and implement small infrastructure projects benefiting the community (and providing employment). a local-level political forum that enables youth to engagement in local decision-making processes and provides referral services for access to resources. a national dialogue process, coordinating with other relevant youth actors, to lobby for greater youth participation in the formal political process and give youth a seat at the table at local, sub- national and national levels. Such an approach should promote the inclusion of all youth, male and female, whether former members of armed forces or groups or not. However, it is critical that such interventions are youth owned and that it is the youth themselves who drive these initiatives forward. DDR practitioners and community leaders can work with local and national authorities, formal and informal, to help open up space for youth to pursue these activities. This might be by first engaging in joint activities that benefit the community and demonstrate the positive effect youth can have on the reconstruction process. This is important as Governments should be convinced of the \u2018added value\u2019 of youth involvement in reconstruction activities and of the positive reasons for investing in youth. After leaving armed forces and groups, youth may wish to retain some linkage with the political entity of the armed group to which they were previously affiliated. Every person has the legal right to freedom of political expression, which should be considered and supported at all stages of the planning and implementation of youth-focused DDR. DRR practitioners shall ensure that youth are not inadvertently prevented from freely expressing their rights.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "2e338f0f-033d-48b2-99be-712de5b66f65", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 33, + "Paragraph": "DDR support to mediation Young people often lack a structured platform and the opportunity to have their voice heard by decision makers, comprised mainly of the elder generation. For this reason, the process by which national level peace agreements are negotiated often provides very little space for young people to share their perspectives. To counteract this, youth often create their own youth forums and networks. In some settings, interaction between different youth networks has been used to encourage trust- building between different communities and to reduce the risk of escalation to armed conflict. Some young people also informally mediate conflicts at the community level. The likelihood that a peace agreement will be sustainable in the future depends on the engagement of young people, as the ultimate owners, implementers and stakeholders of the peace process. UN Security Council Resolution 2250 recognises this, urging Member States to increase inclusive representation of youth in decision making, including direct involvement in peace processes. While youth may have the energy, flexibility and time to work on peacebuilding they may also lack exposure to education, theory, technical skill and best practice around peacebuilding and mediation. They may also be vulnerable to being instrumentalized by spoilers or other political actors during peace processes. Where possible, DDR practitioners should support the empowerment of youth to act as agents of positive change by advocating for youth representation in peace processes and for spaces through which youth can apply creative approaches to conflict resolution. DDR practitioners should also invest in the capacity development of young women and men in mediation and dialogue, and aim to strengthen existing youth-led efforts. All youth empowerment efforts should be developed and designed in consultation with young people. Seeing youth as positive assets for society and acting on that new perception is vital to prevent alienation.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4520ba1c-d2b5-4d96-a3ef-c4049b03dcb4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 34, + "Paragraph": "Community violence reduction CVR programmes are bottom-up interventions that focus on the reduction of armed violence at the local level by fostering improved social cohesion and providing incentives to resist recruitment. CVR programmes may include an explicit focus on youth, including youth ex-combatants and youth formerly associated with armed forces and groups. In addition, CVR programmes may explicitly target individuals who are not members of an armed group, but who are at risk of recruitment by such groups. This may include youth who are ineligible to participate in a DDR programme, but who exhibit the potential to build peace and to contribute to the prevention of recruitment in their community. Wherever possible, youth should be represented in CVR Project Selection Committees and youth organizations should be engaged as project partners. In instances where CVR is due to be followed by support to community-based reintegration then CVR and community-based reintegration should, from the outset, be planned as a single and continuous programme. In addition, where safe and appropriate, children may be included in CVR programmes, consistent with relevant national and international legal safeguards, including on the involvement of children in hazardous work, to ensure their rights, needs and well-being are carefully accounted for. If the individuals being considered for inclusion in a CVR programme have left an armed group designated as a terrorist organization by the UN Security Council, then proper screening mechanisms and criteria shall be incorporated to identify (and exclude) individuals who may have committed terrorist acts in compliance with international law (for further information on specific requirements see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.50 on Armed Groups Designated as Terrorist Organizations). For further information on CVR, see IDDRS 2.30 on Community Violence Reduction.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8ddd8a2c-81e3-47e7-bc0d-dbceade2e795", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 34, + "Paragraph": "Transitional weapons and ammunition management Transitional WAM is primarily aimed at reducing the capacity of individuals and groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives. In order to design effective transitional WAM measures targeting youth, it is essential to understand the factors contributing to the proliferation and misuse of weapons, ammunition and explosives. As outlined in MOSAIC 6.20 on Children, Adolescents, Youth and Small Arms and Light Weapons, armed violence puts youth at risk by threatening their security, health, education, wellbeing and development, both during and after conflict. By far the greatest risk of death and injury by gunshot is borne by young males aged 15 to 29. The risks to and behaviour of young men are often influenced by social and group norms related to masculinity and manhood. As young men constitute the primary victims and perpetrators of armed violence, they should play a central role in the development of transitional WAM initiatives. Equally, young women, both as victims and perpetrators can offer an alternative and no less important perspective. While it may not be possible to keep youth physically separate from weapons and ammunition in the context of a transitional WAM initiative (such as when youth are handing over weapons during a collection programme), such physical separation should be imposed to the extent possible in order to minimise risks. It should also be kept in mind that youth may be targeted by individuals, such as former commanders, who seek to discourage T-WAM initiatives. Special attention should therefore be given to ensuring their protection and security. The priorities and inputs of youth should be taken into account, as relevant, throughout the planning, design, implementation and monitoring and evaluation of transitional WAM initiatives. For further information, see IDDRS 4.11 on Transitional Weapons and Ammunition Management.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d46bf72e-dad5-47e7-a022-d6f83f14eac4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 35, + "Paragraph": "Monitoring and follow-up It is vital to monitor and follow-up with youth DDR participants and beneficiaries. For children under the age of 18 the guidance in IDDRS 5.20 should be followed. In developing follow-up monitoring and support services for older youth, it is critical to provide a platform for feedback on the impact of DDR (positive and negative) to promote participation and representation and give youth a voice on their rights, aspirations, and perspectives which are critical for sustainable outcomes. Youth should also be sensitized on how to seek follow-up support from DDR practitioners, or relevant government or civil society actors, linked to service provision as well as how to address protection issues or other barriers to reintegration that they may face. Criminal Responsibility and Accountability Treating all youth, in the same manner, irrespective of age, when it comes to criminal responsibility and accountability presents a challenge because the definition of youth includes children under the age of 18, who have the right to special protection through child justice mechanisms, as well as adults, who are subject to standard criminal processes. To be sure that children are afforded their rights and protection under law, where there is any question about whether the person is a child, an age assessment shall be conducted before any kind of criminal process, interrogation, or prosecution occurs. Any judicial proceedings for children shall respect internationally recognized juvenile justice and fair trial standards, with a focus on recovery and restorative justice in order to assist children\u2019s physical, psychological and social recovery.5 Where no separate juvenile justice system is in place, cases should be handled by civilian authorities who have special training in child-friendly procedures, rather than military or intelligence authorities. All judicial actions relating to children shall take place in the presence of the child\u2019s appointed legal representative or other appropriate assistance, whose role it is to protect the rights and interests of the child, and unless contrary to the best interests of the child, in the presence of the child\u2019s parents or legal guardians. Most youth will fall over the minimum age of criminal responsibility (recommended to be 14- 16 by the Committee on the Rights of the Child), and thus may be held liable for crimes that they commit. Nevertheless, children, as victims of recruitment and use, should not be deprived of their liberty, prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, consistent with Article 8.7 of the Paris Principles. National laws that criminalize child association effectively criminalize the child\u2019s status (associated) which results from an adult\u2019s criminal conduct (recruitment and use), and that violates the human rights of the child. Such laws should not apply to children. In addition, as for adults, expressions of support for particular groups, acts, or ideologies that do not rise to the level of legally defined crimes, should not constitute criminal offenses. Children should not be interrogated as a suspect or prosecuted due to the actual or alleged affiliation of a family member. With respect to children suspected of committing crimes, due consideration shall be given to children\u2019s right to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities, including for example, the right to legal representation, prioritizing the child\u2019s best interests, protections against self- incrimination, and support from their families (see IDDRS 5.20 Children and DDR for more guidance). Any processes for youth who were recruited and used by an armed force or group as children but who were demobilized as adults should consider their status as a child at the time of the alleged offense and the coercive environment under which they lived or been forced to act. For example, a youth who is demobilized as an adult, but became associated as a child and who is suspected of committing a crime before reaching the age of 18, should, be subject to the criminal procedure relevant for juveniles in the jurisdiction and the court should consider the fact that the individual was recruited as a child as a mitigating factor. If a youth is suspected of committing multiple offences, some before and some after he or she has reached 18 years of age, states should consider establishing procedures that allow the application of juvenile procedures in respect of all offences alleged to have been committed, when there are reasonable grounds to do so.6", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-5.40-Cross-border-Population-Movements.json b/src/Static/data/json/IDDRS-5.40-Cross-border-Population-Movements.json new file mode 100644 index 0000000..0552e53 --- /dev/null +++ b/src/Static/data/json/IDDRS-5.40-Cross-border-Population-Movements.json @@ -0,0 +1,1617 @@ +[ + { + "ID": "e93e77f0-6d92-4835-a3a0-067033cae4c0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Summary This module offers advice to policy makers and operational staff of agencies dealing with combatants and associated civilians moving across international borders on how to work closely together to establish regional strategies for disarmament, demobilization and rein tegration (DDR) processes. Armed conflicts are increasingly characterized by \u2018mixed population movements\u2019 of combatants and civilians moving across international borders, as well as lines of conflict spilling over and across State boundaries. Because many previous DDR programmes lacked a regional dimension that took this reality into account, the \u2018recycling\u2019 of combatants from conflict to conflict within a region and even beyond has become an increasing problem. However, combatants are not the only people who are highly mobile in times of complex emergency. Given that the majority of people fleeing across borders are civilians seeking asylum, it remains vital for the civilian and humanitarian character of asylum to be preserved by host States, with the support of the international community. Combatants must therefore be separated from civilians in order to maintain States\u2019 internal and external security and to safeguard asylum for refugees, as well as to find appropriate longlasting ways of assisting the various population groups concerned, in accordance with international law standards.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "a84887db-37cf-4001-9906-03746baa2d29", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Module scope and objectives This module attempts to answer the following questions: What are the population groups connected with combatants moving across interna tional borders? What are the standards and legal frameworks governing their treatment? What are recommendations for action on both sides of the border? What are the roles and responsibilities of international and national agencies on both sides of the border? The module discusses issues relating to foreign adult combatants, foreign women asso ciated with armed groups and forces in noncombat roles, foreign children associated with armed groups and forces, civilian family members/dependants of foreign combatants, and crossborder abductees. Their status at various phases \u2014 upon crossing into a host country, at the stage of DDR and repatriation planning, and upon return to and reintegration in their country of origin \u2014 is discussed, and ways of dealing with those who do not repatriate are explored. The module\u2019s aims to provide guidance to agencies supporting governments to fulfil their obligations under international law in deciding on the appropriate treatment of the population groups connected with crossborder combatants. The principles in this module are intended to be applied not only in formal DDR pro grammes, but also in situations where there may be no such programme (and perhaps no United Nations [UN] mission), but where activities related to the identification of foreign combatants, disarmament, demobilization, internment, repatriation and reintegration or other processes are nevertheless needed in response to the presence of foreign combatants on a State\u2019s territory.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "43a47c19-bf84-4caf-9eef-6bbd0c47e330", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A com plete glossary of all the terms, definitions and abbreviations used in the series of integrated 1.20\tDDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicated requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6ccd86ba-798b-4fe5-ace2-acd29cc843cc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 4, + "Paragraph": "Introduction This module is intended primarily for policy makers and operational staff of agencies deal ing with combatants and associated civilians moving across international borders, regardless of whether or not there are DDR programmes on either side of the border. The guidelines offered in it are also aimed at assisting governments to fulfil their international obligations, and at guiding donors in making funding decisions. They are based on relevant provisions of international law, field experience and lessons learned from a number of operations, par ticularly in Africa. This module on crossborder population movements has been included in the integrated DDR standards because of the regional and international dimensions of conflicts and the impact on population movements: wars lead to both combatants and civilians crossing borders; there are regional and international causes and actors; and crossborder combatants can a pose a threat to regional and international security. At the end of a conflict, repatriation and sustainable reintegration are needed for both combatants and civilians, contributing to the creation of properly functioning communities in the country of origin. For some, local integration in the host country \u2014 or, in exceptional cases, thirdcountry resettlement \u2014 will be the appropriate longterm course of action.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "751ca80e-f015-4260-b705-5e5c35a9c799", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 4, + "Paragraph": "Guiding principles International law provides a framework for dealing with crossborder movements of com batants and associated civilians. In particular, neutral States have an obligation to identify, separate and intern foreign combatants who cross into their territory, to prevent the use of their territory as a base from which to engage in hostilities against another State. In con sidering how to deal with foreign combatants in a DDR programme, it is important to recognize that they may have many different motives for crossing international borders, and that host States in turn will have their own agendas for either preventing or encour aging such movement. No single international agency has a mandate for issues relating to crossborder movements of combatants, but all have an interest in ensuring that these issues are prop erly dealt with, and that States abide by their international obligations. Therefore, DDRrelated processes such as identification, disarmament, separation, internment, demo bilization and reintegration of combatants, as well as building State capacity in host countries and countries of origin, must be carried out within an interagency framework. Annex B contains an overview of key inter national agencies with relevant mandates that could be expected to assist governments to deal with regional and crossborder issues relating to combatants in host countries and countries of origin. Foreign combatants are not necessarily \u2018mercenaries\u2019 within the definition of interna tional law; and since achieving lasting peace and stability in a region depends on the ability of DDR programmes to attract and retain the maximum possible number of former com batants, careful distinctions are necessary between foreign combatants and mercenaries. It is also essential, however, to ensure coherence between DDR processes in adjacent countries in regions engulfed by conflict in order to prevent combatants from moving around from process to process in the hopes of gaining benefits in more than one place. Foreign children associated with armed forces and groups should be treated separately from adult foreign combatants, and should be given special protection and assistance dur ing the DDR process, with a particular emphasis on rehabilitation and reintegration. Their social reintegration, recovery and reconciliation with their communities may work better if they are granted protection such as refugee status, following an appropriate process to determine if they deserve that status, while they are in host countries. Civilian family members of foreign combatants should be treated as refugees or asylum seekers, unless there are individual circumstances that suggest they should be treated dif ferently. Thirdcountry nationals/civilians who are not seeking refugee status \u2014 such as crossborder abductees \u2014 should be assisted to voluntarily repatriate or find another long term course of action to assist them within an applicable framework and in close consultation/ collaboration with the diplomatic representations of their countries of nationality. At the end of an armed conflict, UN missions should support host countries and countries of origin to find longterm solutions to the problems faced by foreign combatants. The primary solution is to return them in safety and dignity to their country of origin, a process that should be carried out in coordination with the voluntary repatriation of their civilian family members. When designing and implementing DDR programmes, the regional dimensions of the conflict should be taken into account, ensuring that foreign combatants who have parti cipated in the war are eligible for such programmes, as well as other individuals who have crossed an international border with an armed force or group and need to be repatriated and included in DDR processes. DDR programmes should therefore be open to all persons who have taken part in the conflict, regardless of their nationality, and close coordination and links should be formed among all DDR programmes in a region to ensure that they are coherently planned and implemented. As a matter of principle and because of the nature of his/her activities, an active foreign combatant cannot be considered as a refugee. However, a former combatant who has gen uinely given up military activities and become a civilian may at a later stage be given refugee status, provided that he/she applies for this status after a reasonable period of time and is not \u2018excludable from international protection\u2019 on account of having committed crimes against peace, war crimes, crimes against humanity, serious nonpolitical crimes outside the country of refuge before entering that country, or acts contrary to the purposes and principles of the UN. The UN High Commissioner for Refugees (UNHCR) assists governments in host countries to determine whether demobilized former combatants are eligible for refugee status using special procedures when they ask for asylum.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2e6a7114-03f7-454e-ac59-b7f47952028f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "The context of regional conflicts and cross-border population movements Forced displacement is mainly caused by the insecurity of armed conflict. Conflicts that cause refugee movements across international borders by definition involve neighbouring States, and thus have regional security implications. As is evident in recent conflicts in Africa in particular, the lines of conflict frequently run across State boundaries, because they are being fought by people with ethnic, cultural, political and military ties that are not confined to one country. The mixed movements of populations that result are very complex and involve not only refugees, but also combatants and civilians associated with armed groups and forces, including family members and other dependants, crossborder abductees, etc. The ofteninterconnected nature of conflicts within a region, recruitment (both forced and voluntary) across borders and the \u2018recycling\u2019 of combatants from conflict to conflict within a region has meant that not only nationals of a country at war, but also foreign com batants may be involved in the struggle. When wars come to an end, it is not only refugees who are in need of repatriation and reintegration, but also foreign combatants and associated civilians. DDR programmes need to be regional in scope in order to deal with this reality. Enormous complexities are involved in managing mass influxes and mixed population movements of combatants and civilians. Combatants\u2019 status may not be obvious, as many arrive without weapons and in civilian clothes. At the same time, however, especially in societies where there are large numbers of weapons, not everyone who arrives with a weap on is a combatant or can be presumed to be a combatant (refugee influxes usually include young males and females escaping from forced recruitment). The sheer size of population movements can be overwhelming, sometimes making it impossible to carry out any screen ing of arrivals. Whereas refugees by definition flee to seek sanctuary, combatants who cross inter national borders may have a range of motives for doing so \u2014 to launch crossborder attacks, to escape from the heat of battle before re grouping to fight, to desert permanently, to seek refuge, to bring family members and other dependants to safety, to find food, etc. Their reasons for moving with civilians may be varied \u2014 not only to protect and assist their dependants, but also sometimes to ex ploit civilians as human shields and to prevent voluntary repatriation, to use refugee camps as a place for rest and recuperation between attacks or as a recruiting and/or training ground, and to divert humanitarian assistance for military purposes. Civilians may be supportive of or intimidated by combatants. The presence of combatants and militarized camps close to border areas may provoke cross border reprisals and risk a spillover of the conflict. Host countries may also have their own reasons for sheltering foreign combatants, since complete neutrality is probably rare in today\u2019s conflicts, and in addition there may be a lack of political will and capacity to prevent foreign combatants from entering a neighbouring country. In their responses to mixed cross border population movements, the international community should take into account these complexities. Experience has shown that DDR processes directed at nationals of a specific country in isolation have failed to adequately deal with the problems of combatants being recycled from conflict to conflict within (and sometimes even outside) a region, and with the spillover effects of such wars. In addition, the failure of host countries to identify, disarm and separate foreign combatants from refugee populations has contributed to endless cycles of security problems, including militarization of and attacks on refugee camps and settlements, xeno phobia, and failure to maintain asylum for refugees. These issues compromise the neutrality of aid work and pose a security threat to the host State and surrounding countries. The disarmament, demobilization, rehabilitation, reintegration and repatriation of com batants and associated civilians therefore require a stronger and more consistent crossborder focus, involving both host countries and countries of origin and benefiting both national and foreign combatants. This dimension has increasingly been recognized by the UN in its recent peacekeeping operations.1", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "cec9e0a1-6322-4a7b-a813-2cc34a4e9760", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "International law framework governing cross-border movements of foreign combatants and associated civilians International law lays down obligations for host countries with regard to foreign combatants and associated civilians who cross their borders. This framework is derived from the laws of neutrality, international humanitarian law, human rights law and refugee law, as well as international principles governing the conduct of interState relations. These different areas of law provide grounds for the identification and separation of foreign combatants from civilians who cross an international border, as well as for the disarmament and internment of foreign combatants until either they can be repatriated or another course of action can be found at the end of the conflict. As long as a host country fulfils its obligations under international law, it may also rely on its national law: e.g., the criminal law can be used to prosecute crossborder combatants in order to protect national security, prevent subversive activities, and deal with illegal arms possession and forced recruitment.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9dc5cef8-a059-43fc-8473-c26fc81c81bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 8, + "Paragraph": "The Charter of the United Nations Under Article 2(4) of the Charter of the UN, States have an obligation to \u201crefrain in their international relations from the threat or use of force against the territorial integrity or political independence of any State, or in any other manner inconsistent with the Purposes of the United Nations\u201d (this is regarded as customary international law binding on all States). This article should be read and interpreted within the wider spirit of the Charter, and parti cularly article 1, which includes among the aims of the UN the maintenance of international peace and security, the development of friendly relations among nations and the resolution of international problems. Therefore, in addition to refraining from actions that might endanger peace and security, States also have a duty to take steps to strengthen peace and encourage friendly relations with others. Article 2(4) provides the foundation for the premise that States have an obligation to disarm, separate and intern foreign combatants. UN General Assembly resolution 2625 (XXV) of 24 October 1970, which adopted the Declaration on Principles of International Law concerning Friendly Relations and Coop eration among States in Accordance with the Charter of the United Nations, prohibits the indirect use of armed force, through assisting, encouraging or tolerating armed activities against another State by irregular forces, armed bands or individuals, whether nationals or foreigners.2", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "68ad1dfb-de0b-4dd1-8f87-2339767a97f8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 9, + "Paragraph": "The law of neutrality The law of neutrality requires neutral States to disarm foreign combatants, separate them from civilian populations, intern them at a safe distance from the conflict zone and pro vide humane treatment until the end of the war, in order to ensure that they no longer pose a threat or continue to engage in hostilities. Neutral States are also required to provide such interned combatants with humane treatment and conditions of internment. The Hague Convention of 1907 dealing with the Rights and Duties of Neutral Powers and Persons in Case of War on Land, which is considered to have attained customary law status, making it binding on all States, sets out the rules governing the conduct of neutral States. Although it relates to international armed conflicts, it is generally accepted as appli cable by analogy also to internal armed conflicts in which foreign combatants from govern ment armed forces or opposition armed groups have entered the territory of a neutral State. It contains an obligation to intern such combatants, as is described in detail in section 7.3.7 of this module.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6efe5334-227d-46e2-90e7-9db2b2f5c4a6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 9, + "Paragraph": "International humanitarian law In accordance with article 4(B)2 of the Third Geneva Convention of 1949 relative to the Treatment of Prisoners of War, foreign combatants interned by neutral States are entitled to treatment and conditions of internment given to prisoners of war under the Convention. Additional Protocol II, relating to Protection of Victims of NonInternational Armed Conflicts, provides in Part II for humane, nondiscriminatory treatment for those who do not take a direct part or who have ceased to take part in hostilities, whether or not their liberty has been restricted. These standards are discussed in section 7.3.7 of this paper dealing with the internment of adult foreign combatants.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "162ba36c-5ea5-436a-89c0-021cda6ed1fc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 9, + "Paragraph": "Human rights law The 1984 UN Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment contains a broad nonrefoulement provision, which states that: \u201cNo State shall expel, return (\u2018refouler\u2019) or extradite a person to another State where there are sub stantial grounds for believing that he would be in danger of being subjected to torture\u201d (art. 3[1]). As there are no exceptions to this nonrefoulement provision, foreign combatants may benefit from this prohibition against forcible return to a country of origin in situations where there are grounds to believe that they would be at risk of torture if returned. \u201cFor the purposes of determining whether there are such grounds, the competent authorities shall take into account all relevant considerations including, where applicable, the existence in the State concerned of a consistent pattern of gross, flagrant or mass violation of human rights\u201d (art. 3[2]). Several UN and regional conventions protect children caught up in armed conflict, in cluding the 1989 UN Convention on the Rights of the Child and the 2000 Optional Protocol to the Convention on the Rights of the Child on the Involvement of Children in Armed Con 5.30\tflict (for details, see IDDRS 5.30 on Children and DDR). International law standards on detention are relevant to internment of foreign com batants, e.g., the Body of Principles for the Protection of All Persons Under Any Form of Detention or Imprisonment,3 UN Standard Minimum Rules for the Treatment of Prisoners,4 and the Basic Principles for the Treatment of Prisoners.5", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "9d1061a1-2f75-4cde-b22c-dde11f27b8bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 10, + "Paragraph": "Refugee law A refugee is defined in the 1951 UN Convention and 1967 Protocol relating to the Status of Refugees as a person who: is outside his/her country of origin; has a wellfounded fear of persecution because of race, religion, nationality, member ship of a particular social group or political opinion; is unable or unwilling to avail him/herself of the protection of that country, or to return there, owing to the wellfounded fear of persecution. Later regional instruments extended this definition. The 1969 Organization of African Unity (OAU) Convention Governing the Specific Aspects of Refugee Problems in Africa repeats the 1951 Convention\u2019s definition of a refugee, but also covers any person who, \u201cowing to external aggression, occupation, foreign domination or events seriously disturbing public order in either part or the whole of his country of origin or nationality, is compelled to leave his place of habitual residence in order to seek refuge in another place outside his country of origin or nationality\u201d (art. 1[2]). This means that in Africa, persons fleeing civil distur bances, widespread violence and war are entitled to refugee status in States parties to the OAU Convention, whether or not they have a wellfounded fear of persecution. In Latin America, the Cartagena Declaration of 1984, although not binding, recommends that the definition of a refugee used in the region should include, in addition to those fitting the 1951 Convention definition, persons who fled their country \u201cbecause their lives, safety or freedom have been threatened by generalized violence, foreign aggression, internal conflicts, massive violations of human rights or other circumstances which have seriously disturbed public order\u201d. Some Latin American States have incorporated this definition into their national legislation. The 1951 Convention \u2014 and also the 1969 OAU Convention \u2014 explicitly defines those who do not deserve international protection as refugees, even if they meet the above defi nitions. These exclusion clauses are particularly relevant in the case of former combatants who have committed crimes against humanity, war crimes, etc., and are discussed in more detail in section 13.3.4. The instruments of refugee law set out a range of obligations of States parties, as well as rights and duties of refugees. The fundamental obligation of a country of asylum is not to \u201cexpel or return (\u2018refouler\u2019) a refugee in any manner whatsoever to the frontiers of territories where his life or freedom would be threatened on account of his race, religion, nationality, membership of a particular social group or political opinion\u201d (art.e 33[1] of the 1951 UN Convention). However, there is an exception to this rule, permitting return to the country of origin in the case of \u201ca refugee whom there are reasonable grounds for regarding as a danger to the security of the country in which he is, or who, having been convicted by a final judg ment of a particularly serious crime, constitutes a danger to the community of that country\u201d (art. 33[2]). While the humanitarian character of asylum is implicit in the 1951 UN Convention, its definition of a refugee describes a victim of serious human rights violations, and it pro vides an obligation for refugees to obey the laws and public order measures of the host country. It does not, however, deal explicitly with issues relating to combatants. Neverthe less, principles relating to the humanitarian and civilian character of asylum have been developed in the OAU Refugee Convention and in recommendations of UNHCR\u2019s Executive Committee (the governing body of representatives of States) and have been reaffirmed by the UN General Assembly. The OAU Convention specifies that \u201cthe grant of asylum to refugees is a peaceful and humanitarian act and shall not be regarded as an unfriendly act by any Member State\u201d and highlights the need to make \u201ca distinction between a refugee who seeks a peaceful and normal life and a person fleeing his country for the sole purpose of fomenting subver sion from outside\u201d and to be \u201cdetermined that the activities of such subversives should be discouraged, in accordance with the Declaration on the Problem of Subversion and Reso lution of the Problem of Refugees adopted in Accra in 1965\u201d. Under article III of the OAU Convention, refugees not only have a duty to obey the laws of the country of asylum, but must also abstain from subversive activities against other countries. Parties to the OAU Convention undertake to prohibit refugees residing in their countries from attacking other countries, by any activities likely to cause tensions with other countries. Under article II, countries of asylum have an obligation \u201cas far as possible [to] settle refugees at a reasonable distance from the frontier of their country of origin\u201d. The UNHCR Executive Committee has formulated a number of conclusions, providing guidance for protection during mixed population movements. Conclusion 94 on preserving the humanitarian and civilian character of asylum is attached as Annex C. It recommends, among other things, that States receiving influxes of refugees and combatants should take measures as early as possible to: disarm armed elements; identify and separate combatants from the refugee population; intern combatants. These recommendations are reaffirmed in various UN General Assembly resolutions. The General Assembly has \u201curge[d] States to uphold the civilian and humanitarian character of refugee camps and settlements, consistent with international law, inter alia, through effec tive measures to prevent the infiltration of armed elements, to identify and separate any such armed elements from refugee populations, to settle refugees at safe locations, where possible away from the border, and to ensure prompt and unhindered access to them by humanitarian personnel\u201d.6 The General Assembly has also \u201cwelcom[ed] the increased atten tion being given by the United Nations to the problem of refugee camp security, including through the development of operational guidelines on the separation of armed elements from refugee populations\u201d.7 In a report to the General Assembly, the UNHCR Executive Committee has recommended that the international community \u201cmobiliz[e] . . . adequate resources to support and assist host States in maintaining the civilian and humanitarian character of asylum, including in particular through disarmament of armed elements and the identification, separation and internment of combatants\u201d.8 The exclusively civilian and humanitarian character of asylum serves several purposes: it reduces potential tensions between countries of asylum and origin; it provides refugees with better protection; it allows the identification and separation of armed elements; and it helps to deal with internal and external security problems. A foreigner planning or carrying out militaryrelated activities in the host country is therefore not a refugee, and the host country must prevent foreign armed elements from using its territory to attack another State and prevent genuine refugees from joining them.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "917fe200-d539-4076-a01b-54dbe7fbfcd9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Context The varying reasons for the arrival of foreign combatants in a host country, as well as whether or not that country is involved in armed conflict, will be among the factors that determine the response of the host country and that of the international community. For example, foreign combatants may enter a country directly involved in armed conflict; they may be in a country that is a neutral neighbouring State; or they may be in a nonneutral country not directly involved in the conflict. Host countries may have political sympathies or State interests with regard to one of the parties to a conflict, and this may affect their policies or responses to influxes of combatants mixed in with refugees. Even if the host country is not neutral, international agencies should highlight the benefits to the host country and the region of complying with the international law framework described above. Awarenessraising, training and ad vocacy efforts, as well as individual country strategies to deal with issues of State capacity, cooperation and compliance with interna tional obligations and recommended actions, should be carried out.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "98cde800-2661-406a-8f59-0b5786a00f84", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Key agencies Key international agencies that could assist governments with issues relating to adult combatants include the Department of Peacekeeping Operations (DPKO), the International Committee of the Red Cross (ICRC), UNHCR, the UN High Commission on Human Rights (UNHCHR), the UN Development Programme (UNDP), the World Food Programme (WFP), the Office for the Coordination of Humanitarian Affairs (OCHA), the International Labour Organization (ILO) and the International Organization for Migration (IOM). Key national agencies that deal with these issues are those concerned with defence, armed forces, police, DDR, refugee/humanitarian activities and foreign affairs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "23323677-d2ae-487b-9795-50708b371fca", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 6, + "Paragraph": "Coordination Identification, disarmament, separation, internment, demobilization and eventual repatri ation and reintegration of foreign combatants (as well as other interventions) are multiState processes that require the participation and cooperation of multiple actors, including the host State, countries of origin, local communities, refugee communities, donor States, interna tional and national agencies, regional organizations, and the political and military parts of the UN system. Therefore coordination within a host State and crossborder is vital. At the national level, it may be helpful for key government and international agencies to set up an interagency forum for coordination and collaboration. This will be particu larly useful where the capacity and resources of the host country are limited, and there is a need for the international community to provide large amounts of assistance. It is recom mended that such a forum be restricted to essential and operational agencies present in the host country. The forum could arrange for and manage coordination and collaboration in matters of advocacy, awarenessraising, providing policy guidance, capacitybuilding, and setting up and supervising the methods used for the separation and internment of com batants, as well as later repatriation. Such a forum may also provide assistance with the maintenance of State security and with the mobilization of resources, including funding.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f810d3b5-53d1-4aa7-a5e5-6fdb72032b0e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 13, + "Paragraph": "Advocacy Advocacy by agencies should be coordinated. Agencies should focus on assisting the host government to understand and implement its obligations under international law and show how this would be beneficial to State interests, such as preserving State security, demonstrating neutrality, etc. What key points should be highlighted in advocacy on international obligations?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7c9a3b1a-ceaf-49dd-81f5-60a9f1505947", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 14, + "Paragraph": "Security screening and identification of foreign combatants Security screening is vital to the identification and separation of combatants. This screening is the responsibility of the host government\u2019s police or armed forces, which should be present at entry points during population influxes. International personnel/agencies that may be present at border entry points during influxes include: peacekeeping forces; military observers; UN Civilian Police; UNHCR for reception of refugees, as well as reception of foreign children associated with fighting forces, if the latter are to be given refugee status; and the UN Children\u2019s Fund (UNICEF) for gen eral issues relating to children. UNHCR\u2019s and/or UNICEF\u2019s child protection partner non governmental organizations (NGOs) may also be present to assist with separated refugee children and children associated with armed forces and groups. Child protection agencies may be able to assist the police or army with identifying persons under the age of 18 years among foreign combatants. Training in security screening and identification of foreign combatants could usefully be provided to government authorities by specialist personnel, such as international police, DPKO and military experts. They may also be able to help in making assessments of situa tions where there has been an infiltration of combatants, providing advice on preventive and remedial measures, and advocating for responses from the international community. The presence of international agencies as observers in identification, disarmament and separation processes for foreign combatants will make the combatants more confident that the process is transparent and neutral. Identification and disarmament of combatants should be carried out at the earliest possible stage in the host country, preferably at the entry point or at the first reception/ transit centre for new arrivals. Security maintenance at refugee camps and settlements may also lead to identification of combatants. If combatants are identified, they should be disarmed and transported to a secure loca tion in the host country for processing for internment, in accordance with the host govern ment\u2019s obligations under international humanitarian law.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9d70150-6ab8-4bb0-8764-25a8494dd42d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 15, + "Paragraph": "Disarmament Once combatants are identified, they will usually be taken into the custody of the army of the host country and/or peacekeepers. They should be disarmed as soon as possible. Inter national military and police personnel may need to assist in this process. Weapons should be documented and securely stored for destruction or handing over to the government of the country of origin at the end of the internment period (e.g., at the end of the conflict). Other items such as vehicles should be kept in safe locations, also to be handed over at the end of the internment period. Personal items may be left in the possession of the owner. After they have been disarmed, foreign combatants may be handed over to the author ity responsible for their transportation to an internment facility \u2014 usually the police or security forces. The assistance of peacekeeping forces and any other relevant agencies may be required.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "21d1fc17-82a6-4f5a-b116-8da0667a59f2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 5, + "Paragraph": "Demobilization The host country, in collaboration with UN missions and other relevant international agencies, should decide at an early stage what level of demobilization of interned foreign combatants is desirable and within what timeframe. This will depend partly on the profile and motives of internees, and will determine the types of structures, services and level of security in the internment facility. For example, keeping military command and control structures will assist with maintaining discipline through commanders. Lack of demobilization, however, will delay the process of internees becoming civilians, and as a result the possibility of their gaining future refugee status as an exit strategy for foreign combatants who are seeking asylum. On the other hand, discouraging and dismantling military hierarchies will assist the demobilization process. Reuniting family members or putting them in contact with each other and providing skills training, peace education and rehabilitation programmes will also aid demobilization. Mixing different and rival factions from the country of origin, the feasibility of which will depend on the nature of the conflict and the reasons for the fighting, will also make demobilization and reconciliation processes easier.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "be7b2be3-84b2-43d1-beeb-9b8f49eda8ac", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Internment10 The nature of internment Article 11 of the 1907 Hague Convention provides that: \u201cA Neutral Power which receives on its territory troops belonging to the belligerent armies shall intern them, as far as possible, at a distance from the theatre of war. It may keep them in camps and even confine them in fortresses or in places set apart for this purpose. It shall decide whether officers can be left at liberty on giving their parole not to leave the neutral territory without permission.\u201d Internment therefore does not necessarily require complete loss of liberty, and host States could grant internees varying degrees of freedom of movement, as long as the foreign combatants can no longer participate in hostilities from the neutral States\u2019 territory. The host government should therefore decide what level of freedom of movement it wants to allow internees and set up a system to regulate movement in and out of internment camps. In order to be able to monitor the movement of internees properly and prevent them from engaging in unlawful activities, including use of the host country\u2019s territory for military purposes, it is likely to be necessary for internment to involve at least some level of confinement. Depending on the local circumstances (mainly the extent of the security risk), this may range from a closed camp with no external freedom of movement to systems that provide for freedom of movement (e.g., a pass system that permits visits outside the camp or a system of reporting to authorities). Article 12 of the Convention lays down the conditions of treatment for internees as follows: \u201cIn the absence of a special convention to the contrary, the Neutral Power shall supply the interned with the food, clothing, and relief required by humanity. At the conclu sion of peace the expenses caused by the internment shall be made good.\u201d", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "036ebbc8-8f47-4e39-a71c-aaaf032513f4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 16, + "Paragraph": "Standards of internment The Third Geneva Convention of 1949 lays down minimum rights and conditions of intern ment to be granted to captured combatants. These rights also apply by analogy to foreign combatants interned in a neutral State. What are the basic standards under the Third Geneva Convention?11 Additional Protocol II relating to Protection of Victims of NonInternational Armed Conflicts provides in Part II for humane, nondiscriminatory treatment for those who do not take a direct part in, or who have ceased to take part in, hostilities, whether or not their liberty has been restricted. Such persons may include internees. What are applicable standards under Additional Protocol II? Assistance by the international community At least at the early stages of setting up and managing an internment camp, it is likely that host governments will lack capacity and resources for the task. International agencies have an important role to play in acquiring and supplying resources in order to assist the host government to provide internees with the \u201crelief required by humanity\u201d (as required under the Hague Convention): In collaboration with the host government, international agencies should assist with awarenessraising and lobbying of donors, which should take place as soon as possible, as donor funding often takes time to be made available. Donors should be informed about the resource needed to separate and intern combatants and the benefits of such policies, e.g., maintaining State security, helping the host government to keep borders open for asylum seekers, etc.; International agencies should favourably consider contributing financial grants, mate rial and other assistance to internment programmes, especially in the early phases when the host government will not have donor funding for such programmes. Contributing assistance, even on an ad hoc and temporary basis, will make international agencies\u2019 advocacy and advisory roles more effective. The following are some illustrations of ways in which international agencies can contribute: Food. WFP may assist with providing food. Given the inability of internees to feed themselves because of their restricted freedom of movement, each internee should be entitled to a full food ration of at least 2,100 kilocalories per day. Health care. International agencies\u2019 partners (e.g., local Red Cross societies) may be able to provide mobile health clinics, to supplement hospital treatment for more serious medical matters. Medical care should include reproductive health care for female internees. Non-food items. Items such as plastic sheeting, plates, buckets, blankets, sleeping mats, soap, etc. will be needed for each internee and agency contributions will be essential. Agencies such as UNHCR and ICRC, if they have the resources, may be able to give extra assistance at least temporarily until the government receives regular donor funding for the internment initiative. Registration and documentation. Agencies could help the host government to develop a system for regi- stration and issuing of identity documentation. Agencies will often need the data themselves, e.g., ICRC in order to arrange family tracing and family visits, and UNHCR for the purpose of getting information on the profiles of internees who may later come within their mandate if, at a later stage, internees apply for refugee status. ICRC may issue its own documentation to internees in connection with its detention- monitoring role. Skills training. To combat the problem of idleness and to provide rehabilitation and alternative skills for internees, as well as to maintain order and dignity during internment, agency partners must try to pro- vide/fund vocational skills training programmes as soon as possible. In order for demobilization and reintegration to start in internment camps, it is essential to have skills training programmes that could help internees to become rehabilitated. Social skills training would also be helpful here, such as sensiti- zation in human rights, civic education, peace-building, HIV/AIDS, and sexual and gender-based violence. Recreation. Sufficient space for recreation and sporting equipment should be provided for the purpose of recreation. Re-establishing family links. ICRC, together with national societies, should try to trace family members of internees, both across borders and within the host country, which will allow family links to be re- established and maintained (e.g., through exchange of Red Cross messages). Where civilian family members have also crossed into the host country, arrangements should be made for maintaining family unity. There are various options: families could be accommodated in internment camps, or in a separate nearby facility, or in a refugee camp or settlement. If family members are voluntarily accommodated", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "e53bdcc5-9b20-4fb3-ae56-5c949e0355f1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 19, + "Paragraph": "Nationality issues In view of the chaotic conditions usually found in conflict situations and the difficulties in setting up an adequate identification programme that could be operational immediately, combatants may be admitted to separation, disarmament and internment processes re gardless of their nationality. Hence, it would be more practical to deal with problems of nationality at the end of internment, in order to decide, in consultation with the former combatants, the country in which they would undergo a DDR programme and the country to which they would finally return. This will require liaison between the governments in volved, and should be closely monitored/supervised by the relevant agencies.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ced1efa8-ad62-41a3-a251-321ac314d369", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 19, + "Paragraph": "Special requirements of female combatants Internment camps should provide genderappropriate facilities, including separate accom modation, washing and toilet facilities, as well as sexspecific health services, including reproductive health care. This must include sanitary kits and clean birthing kits for women. Women with babies should be given the means to care for their own children. With the ex ception of young babies, accommodating children in internment camps should be avoided and alternative accommodation should be found for them and their mothers. When intern ees are transported, sufficient vehicles should be provided to offer women the option of being transported separately from men, if their personal safety is threatened. Protection from sexual harassment and other violence should be ensured at all times (also see IDDRS 5.10 on Women, Gender and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "04f6182a-55ce-4406-a28c-9c63d0e7e2cb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 19, + "Paragraph": "Redressing incorrect internment decisions In the internment camps, authorities should have flexibility to review and change incorrect decisions regarding who has been interned on a casebycase basis. For this purpose, agen cies with a protection mandate, such as ICRC, UNHCR, UNHCHR and UNICEF, should have confidential access to internees. Persons incorrectly interned include: civilians who have not participated in military activities, and who could therefore be regarded as refugees or asylum seekers; civilians who have not participated in military activities and who were abducted by combatants (including women and girls abducted for the purpose of sexual slavery 5.10 and men abducted for medical or other labour services), but who do not fall within the definition of a refugee. Such persons will usually be voluntarily repatriated; children associated with armed forces and groups who were not identified as children during the separation process, incorrectly ending up in internment camps for adult combatants; persons who do not fit the definition of combatant, and who were separated and in terned on the basis of criteria other than those established for the separation process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a00216b7-6335-4bbc-95c5-085901c21b96", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 20, + "Paragraph": "Exit strategies It is important, whenever possible, to plan for exit strategies for internment programmes, although where the conflict in the country of origin lasts a long time, internment may also be lengthy. Exit strategies may include: including internees in DDR programmes in the country of origin at the end of the conflict; deciding whether internees who are considered to have become civilians after a period of demobilization and who apply for refugee status should be given that status.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6c723cb5-bc86-49a4-b143-6ae0193b6d75", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 20, + "Paragraph": "Mercenaries International law makes special provision for and prohibits the recruitment, use, financing or training of mercenaries. A mercenary is defined as a foreign fighter who is specially recruited to fight in an armed conflict, is motivated essentially by the desire for private gain, and is promised wages or other rewards much higher than those received by local combat ants of a similar rank and function.12 Mercenaries are not considered to be combatants, and are not entitled to prisonerofwar status. The crime of being a mercenary is committed by any person who sells his/her labour as an armed fighter, or the State that assists or recruits mercenaries or allows mercenary activities to be carried out in territory under its jurisdiction. Not every foreign combatant meets the definition of a mercenary: those who are not motivated by private gain and given high wages and other rewards are not mercenaries. It may sometimes be difficult to distinguish between mercenaries and other types of foreign combatants, because of the crossborder nature of many conflicts, ethnic links across porous borders, the high levels of recruitment and recycling of combatants from conflict to conflict within a region, sometimes the lack of real alternatives to recruitment, and the lack of a regional dimension to many previous DDR programmes. Even when a foreign combatant may fall within the definition of a mercenary, this does not limit the State\u2019s authority to include such a person in a DDR programme, despite any legal action States may choose to take against mercenaries and those who recruit them or assist them in other ways. In practice, in many conflicts, it is likely that officials carrying out disarmament and demobilization processes would experience great difficulty distinguish ing between mercenaries and other types of foreign combatants. Since the achievement of lasting peace and stability in a region depends on the ability of DDR programmes to attract the maximum possible number of former combatants, it is recommended that mercenaries should not be automatically excluded from DDR processes/programmes, in order to break the cycle of recruitment and weapons circulation and provide the individual with sustain able alternative ways of making a living. DDR programmers may establish criteria to deal with such cases. Issues for consid eration include: Who is employing and commanding mercenaries and how do they fit into the conflict? What threat do mercenaries pose to the peace process, and are they factored into the peace accord? If there is resistance to account for mercenaries in peace processes, what are the underlying political reasons and how can the situation be resolved? How can mercenaries be identified and distinguished from other foreign combatants? Do individuals have the capacity to act on their own? Do they have a chain of command? If so, is their lead ership seen as legitimate and representative by the other parties to the process and the UN? Can this leadership be approached for discussions on DDR? Do its members have an interest in DDR? If mercenaries fought for personal gain, are DDR benefits likely to be large enough to make them genuinely give up armed activities? If DDR is not appropriate, what measures can be put in place to deal with mercenaries, and by whom \u2014 their employers and/or the national authorities and/or the UN?", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b8cde622-45c3-4b54-af9a-69639898fb8a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Context In many armed conflicts, it is common to find large numbers of children among combat ants, especially in armed groups and in long lasting conflicts. Priority shall be given to identifying, removing and providing appro priate care for children during operations to identify and separate foreign combatants. Correct identification of children among com batants who enter a host country is vital, because children shall benefit from separate programmes that provide for their safe re moval, rehabilitation and reintegration.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "bfc60ba4-4a68-42a4-ac30-f459a4fca2b8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Key agencies UNHCR, UNICEF and ICRC will be particularly involved in helping governments to deal with foreign children associated with armed forces and groups. Key national agencies in clude those concerned with children\u2019s issues, social welfare, and refugee and humanitarian affairs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "cda957ec-c0a8-49c5-9414-2dece705601d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Agreement with host country government on the status and treatment of foreign children associated with armed forces and groups Agencies such as UNHCR, UNICEF and ICRC should advocate with the host country for foreign children associated with armed forces and groups to be given a legal status, and care and protection that promote their speedy rehabilitation and best interests, in accordance with States\u2019 obligations under the Convention on the Rights of the Child and its Optional Protocol on Involvement of Children in Armed Conflict. An appropriate status for children may include refugee status, because of the illegality of and serious child rights violations involved in the underaged recruitment of children, as well as the need for children to be removed, rehabilitated and reintegrated in their com munities as soon as possible. Refugee status can be given on a prima facie and collective basis in cases of largescale arrivals, as and if applicable. Where the refugee status of indi viduals must be decided, reasons for giving refugee status in the case of children fleeing armed conflict may include a wellfounded fear of illegal recruitment, sexual slavery or other serious child rights violations. Agreement should be reached with the host government on the definition of a \u2018child\u2019 for the purpose of providing separate treatment for children associated with armed forces and groups. In view of the development of international law towards the position that persons under age 18 should not participate in hostilities, it is recommended that advocacy with host governments should be for all combatants under the age of 18 to be regarded as children.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "0b9ebc14-6d65-4fb8-bd64-5ec6ef60a709", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 22, + "Paragraph": "Identification of children among foreign combatants When agreement is reached with the host country government about the definition of a child and the methods for providing children with separate treatment from adults, this informa tion should be provided to all those involved in the process of identifying and separating combatants (i.e., army, police, peacekeepers, international police, etc.). It is often difficult to decide whether a combatant is under the age of 18, for a range of reasons. The children themselves may not know their own ages. They are likely to be under the influence of commanders who may not want to lose them, or they may be afraid to separate from commanders. Questioning children in the presence of commanders may not, therefore, always provide accurate information, and should be avoided. On the other hand, young adult combatants who do not want to be interned may try to falsify their age. Child protection agencies present at border entry points may be able to help army and police personnel with determining the ages of persons who may be children. It is therefore rec ommended that agreement be reached with the government of the host country on the 5.30\tinvolvement of such agencies as advisers in the identification process (also see IDDRS 5.30 on Children and DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8849856e-7866-49b1-9bb0-4ece04402098", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 22, + "Paragraph": "Separation of foreign children associated with armed forces and groups Once identified, children should be disarmed if necessary, removed from commanders and handed over to the custody of relevant agencies present at the border such as UNHCR, UNICEF and child protection NGOs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "35f2ab13-d7ec-402a-bb8d-1a566e173475", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 22, + "Paragraph": "Demobilization, rehabilitation and reintegration Children should not be accommodated in internment camps with adult combatants, unless a particular child is a serious security threat. This should only happen in exceptional circum stances, and for no longer than absolutely necessary. Where the government has agreed to recognize children associated with fighting forces as refugees, these children can be accommodated in refugee camps or settlements, with due care given to possible security risks. For example, a short period in a refugee transit centre or appropriate interim care facility may give time for the child to start the demobilization process, socialize, readjust to a civilian environment, and prepare to transfer to a refugee camp or settlement. Temporary care measures like these would also provide time for agencies to carry out registration and documentation of the child and intercamp tracing for family members, and find a suitable camp for placement. Finally, the use of an interim facility will allow the organization of a sensitization campaign in the camp to help other refugees to accept children associated with armed forces and groups who may be placed with them for reintegration in communities. Children associated with armed forces and groups should be included in programmes for other populations of separated children rather than being isolated as a separate group within a refugee camp or settlement. The social reintegration of children associated with fighting forces in refugee communities will be assisted by offering them normal activities such as education, vocational skills training and recreation, as well as family tracing and reunification. Younger children may be placed in foster care, whereas \u2018independent/group living\u2019 arrangements with supervision by a welfare officer and \u2018older brother\u2019 peer support may be more appropriate for older adolescents.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dfb50492-308e-473f-8a6b-619b1690d63f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 23, + "Paragraph": "Prevention of military recruitment Prevention of (re)recruitment, especially of atrisk young people such as children previously associated with armed forces and groups and separated children, must be an important focus in refugee camps and settlements. Preventive measures include: locating camps and settlements a safe distance from the border; sufficient agency staff being present at the camps; security and good governance measures; sensitization of refugee communities, families and children themselves to assist them to avoid recruitment in camps; birth registration of children; and adequate programmes for atrisk young people, including familytracing activities, education and vocational skills programmes to provide alternative livelihood options for the future.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "91232464-24b2-4958-8a95-1f9cd7d7305b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 23, + "Paragraph": "Specific needs of girls In many conflicts, there is a significant level of warrelated sexual violence against girls. (NB: Boys may also be affected by sexual abuse, and it is necessary to identify survivors, although 5.20\t5.10 5.10 this may be difficult.) Girls who have been associated with armed groups and forces may have been subjected to sexual slavery, exploitation and other abuses and may have babies of their own. Once removed from the armed group or force, they may continue to be at risk of exploitation in a refugee camp or settlement, especially if they are separated from their families. Adequate and culturally appropriate sexual and genderbased violence pro grammes should be provided in refugee camps and communities to help protect girls, and community mobilization is needed to raise awareness and help prevent exploitation and abuse. Special efforts should be made to allow girls access to basic services in order to prevent exploitation (also see IDDRS 5.20 on Youth and DDR and IDDRS 5.10 on Women, Gender and DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "12f318e2-8e90-44d8-9237-2216e59202d5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Context Foreign combatants entering a host country may sometimes be accompanied by civilian fam ily members or other dependants. Family members may also independently make their way to the host country. If the family members have entered the host country to seek asylum, they should be considered as refugees or asylum seekers, unless there are individual cir cumstances to the contrary.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b76198d4-20ca-4854-9b2e-52313d241112", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 24, + "Paragraph": "Providing safe asylum and accommodation When civilian family members of combatants enter a country of asylum, they should be directed to UNHCR and the host government\u2019s refugee agency, while the adult combatants will be dealt with by the army and police. Family members or dependants may be accom modated in refugee camps or settlements or urban areas (depending on the policy of the government of the host country). Accommodation placements should be carried out with due regard to protection concerns, e.g., family members of a combatant should be protected from other refugees who may be victims of that combatant.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b873d0ca-d3c3-4448-9b91-0aa14577d949", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 24, + "Paragraph": "Maintaining family links with foreign combatants It is important to try to establish family links between refugee family members and com batants in internment camps, since separation and internment policies may create many femaleheaded households. Family links can be maintained through family tracing, ex changes of Red Cross messages and family visits to internment camps, which should be organized by ICRC, Red Cross national societies and UNHCR. Women and girls who have been forcibly abducted and are married under circumstances not recognized by customary or national law have the right, with their children where applicable, to be safely separated from their \u2018husbands\u2019 (also see IDDRS 5.10 on Women, Gender and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4186960d-97c5-471e-8495-691d45e969d9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 25, + "Paragraph": "Preserving the civilian and humanitarian character of asylum It is essential to ensure that refugee camps and settlements do not become militarized through the infiltration of combatants, which may lead to camps and settlements becoming the focus of security problems, including military attacks. Preventing this problem is primarily the responsibility of the government of the host country, but international agencies should support the government, and donor support will be essential. Security in and around refugee camps and settlements can be achieved through: locating refugee camps and settlements a safe distance away from the border (generally at least 50 kilometres) and conflict zones; the systematic identification, disarmament, separation and internment of combatants; the screening of persons being relocated to refugee camps to ensure that only civilians are admitted; prohibiting armed elements from residence in, transit though or visits to refugee camps and settlements; prohibiting all military activities in refugee camps, including recruitment, training and providing support to combatants; prohibiting the holding, trading and bringing of weapons and ammunition into refugee camps and settlements by unauthorized persons; ensuring the presence of enough agency staff in camps and settlements; enforcing law and order in camps and settlements; enforcing security measures such as stationing police in and around camps and settle ments; involving refugees in ensuring their own security and the peaceful and humanitarian character of camps and settlements, e.g., through communitybased neighbourhood watch schemes and good governance measures in camps and settlements; enforcing properly functioning camp rules and bylaws to regulate the conduct of refugees, resolve disputes, etc., in order to supplement the laws of the host country (to which refugees are also subject); correctly designing the size and physical layout of camps and settlements; encouraging good neighbourliness between refugee camps/settlements and host communities.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8c8f8dc6-5455-46c4-8046-2c132a4ebacd", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 5, + "Paragraph": "countries In the context of regionalized conflicts, crossborder attacks and movements of combatants across borders, experience has shown that within the households of combatants, or under their control in other ways, will be persons who have been abducted across borders for the purposes of forced labour, sexual exploitation, military recruitment, etc. Their presence may not become known until some time after fighting has ended.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9daceb08-0446-485a-aa2d-c86208b6e3bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Key agencies Crossborder abductees do not necessarily come within the mandate of any specific inter national agency. However, agencies such as UNHCR and ICRC are encouraged to assist such thirdcountry nationals on humanitarian grounds in view of their situation of external dis placement. Key national agencies include those concerned with humanitarian affairs. 5.10\t5.30", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "71e93dfe-170f-4f2e-ad2c-9f9f3ea97cec", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Identification, release, finding long-lasting solutions The main ways in which agencies can protect and assist crossborder abductees are for them to: (1) identify those who have been abducted (they may often be \u2018invisible\u2019, particularly in view of their vulnerability and their marginalization from the local community because of their foreign nationality, although it may be possible to get access to them by working through local, especially women\u2019s organizations); (2) arrange for their release if necessary; and (3) arrange for their voluntary repatriation or find another longterm way to help them. Foreign abductees should be included in interagency efforts to help national abductees, such as advocacy with and sensitization of combatants to release abductees under their control (also see IDDRS 5.10 on Women, Gender and DDR and IDDRS 5.30 on Children and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "402be46f-7177-4998-b73f-5989afa054c4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 26, + "Paragraph": "Eligibility for DDR Crossborder abductees should be considered as eligible to participate in reintegration pro grammes in the host country or country of origin together with other persons associated with the armed forces and groups, regardless of whether or not they are in possession of weapons. Although linked to the main DDR process, such programmes should be separate from those dealing with persons who have fought/carried weapons, and should carefully screen refugees to identify those who are eligible.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "596611ff-7b1f-4ad6-a650-3a7d39c7a88f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 26, + "Paragraph": "Issues relating to women and girls Women and girl abductees, including forced wives of combatants and those with children conceived during their captivity, are likely to be in a particularly difficult situation, both in the host country and in the country of origin. They will need special attention in protection, reintegration and reconciliation activities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "861f7c5f-18ac-4852-8525-b0b21f63b7f4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 26, + "Paragraph": "Local integration and empowerment Crossborder abductees who do not want to repatriate, or are not in a position to make a decision to separate themselves from abduc tors/combatants, should be included in hu manitarian assistance programmes in these locations, in order to empower them so that they can make decisions about their future, as well as to help them integrate into the host country, if that is what they want to do.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b4a368b9-b836-4ba9-86f2-62ff531ebd16", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 26, + "Paragraph": "Re-establishing family links Crossborder family links should be estab lished and coordinated in collaboration with ICRC and national Red Cross and Red Cres Repatriation, Republic of Congo, 2005. Photo: J. Ose, UNHCR cent societies (which have a mandate for tracing people across international borders) or other relevant agencies. This service will assist crossborder abductees to make decisions about their longterm future (e.g., by helping them to assess the reaction of family members to their situation) and will help to bring about future family reunification. Both abductees and family members are likely to be in need of counselling before family reunification.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d1b0b95a-0fa9-4cf0-90e2-d83476cf6ce1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 27, + "Paragraph": "Regional dimensions to be taken into account in setting up DDR programmes Since lasting peace and stability in a region depend on the ability of DDR programmes to attract the maximum possible number of former combatants, the following principles relat ing to regional and crossborder issues should be taken into account in planning for DDR: DDR programmes should be open to all persons who have taken part in the con flict, including foreigners and nationals who have crossed international borders. Extensive sensitization is needed both in countries of origin and host countries to ensure that all persons entitled to par ticipate in DDR programmes are aware of their right to do so; close coordination and links among all DDR programmes in a region are essential. There should be regular coordination meetings on DDR issues \u2014 including, in particular, regional aspects \u2014 among UN missions, national commissions on DDR or competent government agencies, and other relevant agencies; to avoid disruptive consequences, including illicit crossborder movements and traffick ing of weapons, standards in DDR programmes within a region should be harmonized as much as possible. While DDR programmes may be implemented within a regional framework, such programmes must nevertheless take into full consideration the poli tical, social and economic contexts of the different countries in which they are to be implemented; in order to have accurate information on foreign combatants who have been involved in a conflict, DDR registration forms should contain a specific question on the national ity of the combatant.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "9525ca0b-831b-497c-a741-a1ffc18bd13f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 27, + "Paragraph": "Repatriation agreements As part of regional DDR processes, agreements should be concluded between countries of origin and host countries to allow both the repatriation and the incorporation into DDR programmes of combatants who have crossed international borders. UN peacekeeping missions and regional organizations have a key role to play in carrying out such agreements, particularly in view of the sensitivity of issues concerning foreign combatants. Agreements should contain guarantees for the repatriation in safety and dignity of former combatants, bearing in mind, however, that States have the right to try individuals for criminal offences not covered by amnesties. In the spirit of postwar reconciliation, guarantees may include an amnesty for desertion or an undertaking that no action will be taken in the case of former combatants from the government forces who laid down their arms upon entry into the host country. Protection from prosecution as mercenaries may also be necessary. However, there shall be no amnesty for breaches of international humanitarian law during the conflict. Agreements should also provide a basis for resolving nationality issues, including meth ods of finding out the nationality those involved, deciding on the country in which former combatants will participate in a DDR programme and the country of eventual destination. Family members\u2019 nationalities may have to be taken into account when making longterm plans for particular families, such as in cases where spouses and children are of different nationalities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "fd95602b-50d3-4f7d-9d49-9baa51b6bba8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 28, + "Paragraph": "Information and sensitization campaigns UN missions, with the support of agencies such as UNDP, UNICEF and UNHCR, should lead extensive information campaigns in host countries to ensure that foreign combatants are provided with essential information on how to present themselves for DDR programmes. The information should enable them to make free and informed decisions about their repa triation and reintegration prospects. It is important to ensure that refugee family members in camps and settlements in the host country also receive relevant information. UN missions should help arrange voluntary contacts between government officials and foreign combatants. This will assist in encouraging voluntary repatriation and planning for the inclusion of such combatants in DDR programmes in their country of origin. However, foreign combatants who do not want to meet with government officials of their country of origin should not be forced to do so. The government of the country of origin, together with the UN mission and relevant agencies, should sensitize receiving communities in areas to which former combatants will be repatriating, in order to encourage reintegration and reconciliation. Receiving com munities may plan traditional ceremonies for healing, forgiveness and reconciliation, and these should be encouraged, provided they do not violate human rights standards.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "26abd182-9d8c-425f-8ba8-6119cbc4d766", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 28, + "Paragraph": "Identification of foreign combatants and disarmament Apart from combatants who are confined in internment camps, there are likely to be other former or active combatants living in communities in host countries. Therefore, national security authorities in host countries, in collaboration with UN missions, should identify sites in the host country where combatants can present themselves for voluntary repatria tion and incorporation in DDR programmes. In all locations, UNICEF, in collaboration with child protection NGOs, should verify each child\u2019s age and status as a child soldier. In the event that female combatants and women associated with armed forces and groups are identified, their situation should be brought to the attention of the lead agency for women in the DDR process. Where combatants are in possession of armaments, they should be immediately disarmed by security forces in collaboration with the UN mission in the host country.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fc1a95ee-c21f-496b-8ee6-27f732502375", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 28, + "Paragraph": "Voluntary repatriation In keeping with the principle that \u201ceveryone has the right to seek and to enjoy in other countries asylum from persecution\u201d,13 repatriation should be voluntary. However, where an application for refugee status has been rejected according to fair procedures and the individual has been assessed as not being in need of international protection, he/she may be returned to the country of origin even against his/her will (see section 10.6). The fact that repatriation is voluntary could be verified by UN missions in the case of adult combatants, and by UNICEF and child protection agencies in the case of children associated with armed forces and groups. Where children associated with armed forces and groups are living in refugee camps, the fact that repatriation is voluntary shall be verified by UNHCR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "83799249-8eb7-4460-ba0e-f52d9867fb77", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 29, + "Paragraph": "Maintaining family unity during repatriation Every effort should be made to ensure that family unity is preserved in repatriation move ments. UN missions should support the governments of the host country and country of origin by assisting with transportation. Where combatants have family members or other dependants in refugee camps, there should be close consultation with UNHCR so that the voluntary repatriation of family members can be coordinated and carried out according to the wishes of the family members and with full respect for their safety and dignity. In cases where it is not possible to repatriate combatants and family members/dependants as family units, mechanisms to reunite the family upon return should be established. Spouses and children who are not citizens of the country to which they are travelling should be allowed by the government concerned to enter and live in that country with an appropriate legal status. This applies equally to spouses and children of \u2018traditional mar riages\u2019 and legally recognized marriages.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c63d525a-e589-4d99-a63c-f722793d1383", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 29, + "Paragraph": "Repatriation movements Governments and UN missions will be responsible for repatriation movements of foreign combatants, while UNHCR will provide transportation of family members. Depending on the local circumstances, the two repatriation operations could be merged under the overall management of one agency. The concerned governments should agree on travel documents for foreign former com batants, e.g., DDR cards for those who have been admitted to a disarmament programme in the host country, or ICRC travel documents or host country documentation for those who have been interned. To allow the speedy repatriation of foreign former combatants and their family members, the governments involved should consider not requesting or obliging those being repatri ated to complete official immigration, customs and health formalities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8fa909eb-6be7-492d-9f75-8c677f7c9f9b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 29, + "Paragraph": "Factors affecting foreign children associated with armed forces and groups Particular care should be taken with regard to whether, and how, to include foreign children associated with armed forces and groups in DDR programmes in the country of origin, especially if they have been living in refugee camps and communities. Since they are already living in a civilian environment, they will benefit most from DDR rehabilitation and rein tegration processes. Their level of integration in refugee camps and communities is likely to be different. Some children may be fully integrated as refugees, and it may no longer be in their best interests to be considered as children associated with armed forces and groups in need of DDR assistance upon their return to the country of origin. Other children may not yet have made the transition to a civilian status, even if they have been living in a civilian environment, and it may be in their best interests to participate in a DDR programme. In all cases, stigmatization should be avoided. It is recommended that foreign children associated with armed forces and groups should be individually assessed by UNHCR, UNICEF and/or child protection partner NGOs to plan for the child\u2019s needs upon repatriation, including possible inclusion in an appropriate DDR programme. Factors to consider should include: the nature of the child\u2019s association with armed forces or groups; the circumstances of arrival in the asylum country; the stability of present care arrangements; the levels of integration into camp/communitybased civilian activities; and the status of familytracing efforts. All decisions should involve the partici pation of the child and reflect his/her best interests. It is recommended that assessments should be carried out in the country of asylum, where the child should already be well known to, and should have a relationship of trust with, relevant agencies in the refugee camp or settlement. The assessment can then be given to relevant agencies in the country of origin when planning the voluntary repatriation of the child, and decisions can be made about whether and how to include the child in a DDR programme. If it is recommended that a child should be included in a DDR programme, he/she should receive counselling and 5.30\tfull information about the programme (also see IDDRS 5.30 on Children and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "34968c16-a867-44a5-ab2b-2a23c6c6155e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 30, + "Paragraph": "Assurances upon return Governments must ensure that former combatants and their dependants are able to return in conditions of safety and dignity. Return in safety implies a guarantee of: legal security (e.g., appropriate amnesties or public assurances of personal safety, integ rity, nondiscrimination and freedom from fear of persecution); physical security (e.g., protection from armed attacks, routes that are free of unexploded ordnances and mines); material security (e.g., access to land or ways to earn a living). Return in dignity implies that returnees should not be harassed on departure, on route or on arrival. If returning spontaneously, they should be allowed to do so at their own pace; should not be separated from family members; should be allowed to return without pre conditions; should be accepted and welcomed by national authorities and local populations; and their rights and freedoms should be fully restored so that they can start a meaningful life with selfesteem and selfconfidence. In keeping with the spirit of postwar reconciliation, it is recommended that the govern ment of the country of origin should not take disciplinary action against former combatants who were members of the government armed forces and who laid down their arms during the war. They should benefit from any amnesties in force for former combatants in general.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "979ebafe-e8c7-46c1-a68b-ac31d52804e9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 30, + "Paragraph": "Inclusion in DDR programmes In accordance with agreements reached between the country of asylum and the country of origin during the planning for repatriation of former combatants, they should be included Liberian former combatants, who were interned in Sierra Leone during the Liberian civil war, listen to speeches of welcome upon their repatriation and incorporation in the Liberia DDR programme in 2005. Returning home is usually the best solution for cross- border combatants. Photo: T.Sharpe, UNMIL/UNHCR in appropriate DDR programmes in their country of origin. Entitlements should be syn chronized with DDR assistance received in the host country, e.g., if disarmament and demo bilization has been carried out in the host country, then reintegration is likely to be the most important process for repatriated former combatants in the country of origin. Lack of rein tegration may contribute to future crossborder movements of combatants and mercenaries.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9835678b-edc6-428a-a1df-ccb7bcdcdcbd", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 22, + "Paragraph": "Reintegration Entitlements under DDR programmes are only a contribution towards the process of rein tegration. This process should gradually result in the disappearance of differences in legal rights, duties and opportunities of different population groups who have rejoined society \u2014 whether they were previously displaced persons or demobilized combatants \u2014 so that all are able to contribute to community stabilization and development. Agencies involved in reintegration programming should support the creation of eco nomic and social opportunities that assist the recovery of the community as a whole, rather than focusing on former combatants. Every effort shall be made not to increase tensions that could result from differences in the type of assistance received by victims and perpetrators. Communitybased reintegration assistance should therefore be designed in a way that encourages reconciliation through community participation and commitment, including demobilized former combatants, returnees, internally displaced persons (IDPs) and other needy community members (also see IDDRS 4.30 on Social and Economic Reintegration). 4.30 Efforts should be made to ensure that different types of reintegration programmes work closely together. For example, in countries where the \u20184Rs\u2019 (repatriation, reintegration, re habilitation and reconstruction) approach is used to deal with the return and reintegration of displaced populations, it is important to ensure that programme contents, methodologies and approaches support each other and work towards achieving the overall objective of 2.30\tsupporting communities affected by conflict (also see IDDRS 2.30 on Participants, Benefici aries and Partners).14 Links between DDR and other reintegration programming activities are especially relevant where there are plans to reintegrate former combatants into communities or areas alongside returnees and IDPs (e.g., former combatants may benefit from UNHCR\u2019s com munitybased reintegration programmes for returnees and waraffected communities in the main areas of return). Such links will not only contribute to agencies working well together and supporting each other\u2019s activities, but also ensure that all efforts contribute to social and political stability and reconciliation, particularly at the grassroots level. In accordance with the principle of equity for different categories of persons returning to communities, repatriation/returnee policies and DDR programmes should be coordinated and harmonized as much as possible.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "17d9c140-51a5-4080-9445-071a5749918b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 32, + "Paragraph": "12.4. Monitoring The disarmament, demobilization, rehabilitation and reintegration of former combatants should be monitored and reported on by relevant agencies as part of a communityfocused approach (i.e., including monitoring the rights of waraffected communities, returnees and IDPs, rather than singling out former combatants for preferential treatment). Relevant monitoring agencies include UN missions, UNHCHR, UNICEF and UNHCR. Human rights monitoring partnerships should also be established with relevant NGOs. In the case of an overlap in areas of return, UNHCR will usually have established a field office. As returnee family members of former combatants come within UNHCR\u2019s mandate, the agency should monitor both the rights and welfare of the family unit as a whole, and those of the receiving community. Such monitoring should also help to build confidence. What issues should be monitored?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2190284e-0d49-49c1-8c7a-6f89243c8d19", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 6, + "Paragraph": "Refugee status Foreign combatants should not be included in the prima facie awarding of refugee status to large groups of refugees, as asylum should be granted to civilians only. UNHCR recom mends that where active or former combatants may be mixed in with refugees in population influxes, host countries should declare that prima facie recognition of refugee status does not apply to either group. After a reasonable period of time has been allowed to confirm that former combatants have genuinely renounced armed/military activities, UNHCR will support governments of host countries by helping to determine the refugee status (or helping governments to determine the refugee status) of former combatants who refuse to repatriate and instead ask for international protection. These assessments should carefully take into account the \u2018excludability\u2019 of such individuals from international protection as provided by article 1 F of the 1951 Convention relating to the Status of Refugees and its 1967 Protocol.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "208a4d20-41cd-43fd-a63b-9c7597738d95", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 33, + "Paragraph": "Sustainable plans for the future Determining refugee status must be linked to making sustainable longterm future plans for former combatants. These could be: Repatriation: Voluntary, safe and dignified repatriation to the country of origin at the end of the conflict or other event that gave rise to refugee claims is considered the best response for most population influxes; Local integration: For former combatants who are protected as refugees and therefore cannot be repatriated, the best option will be local integration, since options for third country resettlement are likely to be limited. UNHCR negotiates with countries of asylum for local integration, and this process should be supported by UN missions and agencies. Local integration involves: Legal processes: Refugees are granted an increasingly wider range of rights and entitlements identical to those enjoyed by other citizens, e.g., freedom of move ment; family reunification in the country of asylum; access to education, the labour market, public relief and assistance, including health facilities; the possibility of acquiring and disposing of property; and the capacity to travel out of and return to the country of asylum with valid travel and identity documents. This process should gradually lead to permanent residence rights and the option to apply for citizenship in accordance with national laws; Economic processes: Refugees become increasingly less reliant on humanitarian assistance or State aid, achieving a growing degree of selfreliance and having permanent jobs, thus contributing to the economic life of the host country; Social and cultural processes: These are interactive processes involving refugees feeling more and more at home in their new country, and local communities accept ing their presence with greater ease, which allow refugees to live among the host population without fear of discrimination and contribute actively to the social life of their country of asylum; Resettlement: Thirdcountry resettlement may be appropriate for certain refugees who were formerly combatants, e.g., where the refugee has protection needs that cannot be met in the country of asylum, is unlikely to integrate into the host country, etc. However, despite UNHCR advocacy for assistance from the international community, it is often difficult to find resettlement opportunities for refugees who were former combatants. Some resettlement countries do not take former combatants, with sometimes varying definitions of what exactly a former combatant is. Therefore, resettlement to a third coun try is unlikely to be a viable option for large numbers of former combatants, although it may be a solution in individual cases. The fact that very few countries take former com batants could be used to encourage the host country to accept them for local integration.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "93a15d04-a499-4bce-9e82-39f20aedc22d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 34, + "Paragraph": "Timing and sequence of applications for refugee status UNHCR recommends that applications for refugee status by former combatants should not be encouraged in the early stages of influxes into the host country, because it is not practical to determine individual refugee status when large numbers of people have to be processed. The timing of applications for refugee status will be one of the factors that decide what will eventually happen to refugees in the long term, e.g., voluntary repatriation is more likely to be a viable option at the end of the conflict. Where a peace process is under way or is in sight and therefore voluntary repatriation is feasible in the foreseeable future, the refugee status should be determined after repatria tion operations have been completed for former combatants who wish to return at the end of the conflict. Former combatants who are afraid to return to the country of origin must be given the option of applying for refugee status instead of being repatriated against their will. Where voluntary repatriation is not yet feasible because of unsafe conditions in the coun try of origin, the determination of refugee status should preferably be conducted only after a meaningful DDR process in the host country, in order to ensure that former combatants applying for refugee status have achieved civilian status through demobilization, rehabilita tion and reintegration initiatives in the host country. In order to determine whether former combatants have genuinely given up armed activities, there should be a reasonable period of time between an individual laying down arms and being considered for refugee status. This \u2018coolingoff period\u2019, during which former combatants will be monitored to ensure that they really have given up military activities, will vary depending on the local circumstances, but should not be too long \u2014 generally only a matter of months. The length of the waiting period could be decided according to the profile of the former combatants, either individually or as a group (e.g., length of service, rank and position, type of recruitment ([orced or voluntary], whether there are addictions, family situation, etc.), and the nature of the armed conflict in which they have been involved (duration, intensity, whether there were human rights violations, etc.). Determining the refugee status of children associated with armed forces and groups who have applied for refugee status shall be done as quickly as possible. Determining the refugee status of other vulnerable persons can also be done quickly, such as disabled former combatants whose disabilities prevent them from further participating in military activities.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "ea723775-7e0d-4fdc-a5a1-a395eccdf560", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 35, + "Paragraph": "Requirements for refugee status for foreign former combatants Refugee status determination for former combatants involves establishing three facts: that they have genuinely and permanently given up arms and become civilians; that they meet the definition of a refugee under the 1951 UN Refugee Convention or regional instruments; that they are not excluded from being protected as refugees, according to the exclusion clauses of refugee conventions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "13db4181-abb3-4706-840c-e50efb87c31d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 35, + "Paragraph": "Genuine and permanent giving up of military activities The giving up of military activities by foreign former combatants is more likely to be genuine if they have been demobilized and they have a real chance of earning a living in civilian life, including through DDR programmes in the host country. Detention in internment camps without demobilization and rehabilitation activities will not automatically lead to combatants becoming civilians. Breaking up military structures; linking up families; and providing vocational skills training, counselling, rehabilitation and peace education programmes for foreign former combatants in the host country will make it easier for them to become civil ians and be considered for refugee status some time in the future. It needs to be carefully verified that individuals have given up military activities, includ ing in situations where foreign former combatants are interned or where they have some degree of freedom of movement. Verification should include information gathered through out the period of identification, separation and internment. For example, it will be easier to understand individual motives and activities if the movements of internees in and out of internment camps are monitored. Actions or attitudes that may prove that an individual has genuinely given up military activities may include expressions of regret for past military ac tivities and for the victims of the conflict, signs of weariness with the war and a general feeling of homesickness, and clear signs of dissatisfaction with a military or political organization. Internment camp authorities or other agencies that are closely in contact with internees should share information with UNHCR, unless such information must be kept confidential.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "761b3db7-fa51-496e-b3ee-85cb7a12e3eb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 35, + "Paragraph": "Exclusion from refugee protection Even if a foreign former combatant has a genuine fear of persecution, he/she may not be eligible for international protection as a refugee if he/she has committed acts that would mean that the exclusion clauses of the Refugee Convention would apply to him/her. This is to prevent abuse of asylum by undeserving persons who have seriously abused the human rights of others. The issue of exclusion from protection as a refugee will be particularly relevant if there are serious reasons for believing that an individual has committed a crime against peace, a war crime, a crime against humanity, a serious nonpolitical crime outside the country of refuge before he/she was admitted to that country as a refugee, or acts contrary to the pur poses and principles of the UN. As defined by international instruments and interpreted in case law, exclusion clauses would apply if an individual had committed any of the following: crimes against peace, e.g., planning or participating in an unlawful war; war crimes involving grave breaches of international humanitarian law, e.g., mistreatment of civilians and prisoners of war, infliction of unjustified property damage during wartime; crimes against humanity involving fundamentally inhumane conduct on a widespread or system atic scale against a civilian population, e.g., genocide, slavery, torture, rape, deportations; serious nonpolitical crimes committed outside the country of refuge prior to admission to that country as a refugee: The purpose of this clause is to ensure that important fugitives from justice are not able to avoid the jurisdiction of a State in which they may lawfully face punishment for genuine, serious crimes, by claiming refugee status in another country; acts contrary to the purposes and principles of the UN: This clause covers, for example, high level government officials (Heads of State, ministers, high officials) who have exploited their political authority to endanger the wellbeing of individuals, their country and/ or the world community. A foreign former combatant cannot be excluded from refugee protection simply because he/she is a member of an organization or political party involved in a conflict. It must be established whether he/she was personally responsible for excludable acts. However, affili ation with a particularly violent group or unit (that is known on the basis of clear and cred ible information from the country of origin to carry out serious crimes of the type included in the exclusion clauses) may not only be important evidence, but also give rise to a presump tion that the individual has been involved in the excludable acts of that group. However, the procedure for determining refugee status must give the individual an opportunity to show that this is not the case. If an individual can defend his/her actions or claim mitigating circumstances, these should be taken into account in assessing whether to exclude an indi vidual from refugee protection. In examining refugee claims by foreign children associated with armed forces and groups, a child\u2019s age and maturity should be taken into account when assessing whether he/she had the mental capacity to be held responsible for crimes that may exclude him/her from protection as a refugee. Refugee status may be cancelled if information comes to light that an individual, who was recognized as a refugee (either individually or on a prima facie basis), should have been subject to the exclusion clauses when the refugee status was accorded (i.e., where refugee status was obtained through fraudulent means or substantial misrepresentations). Refugee status may be withdrawn if an individual who was properly recognized as a refugee later commits acts covered by the exclusion clauses.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4497a7f0-1ccd-4024-90a2-3bf8f6f30d75", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 36, + "Paragraph": "Foreign former combatants who are given refugee status When foreign former combatants are recognized as refugees, UNHCR will try to integrate them into the country of asylum or resettle them in a third country. The refugee always has the option to voluntarily repatriate in the future, when conditions in his/her country of origin improve. Foreign former combatants who have been detained (e.g., in internment camps) should be reunited with their families as soon as they are found to be refugees and may be accom modated in refugee camps or settlements, but specific measures may be necessary to protect them.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "222c67c0-b654-443b-9352-d50b04f2f280", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 37, + "Paragraph": "Foreign former combatants who are excluded from protection as refugees Individuals who fall within the Refugee Convention\u2019s exclusion clauses are not entitled to international protection or assistance from UNHCR. As a matter of principle, they should not be accommodated in refugee camps or settlements. Practical solutions to manage them will depend on the host country\u2019s capacity and willingness to deal with matters such as separating them from refugee populations. Foreign former combatants who are excluded from protection as refugees may be re turned to their country of origin. However, the UN Convention Against Torture provides an obligation for host countries not to return an individual to his/her country of origin where there are serious reasons to believe he/she would be tortured or treated inhumanely in other ways. In such cases, the UNHCHR and UN missions, as well as any human rights organizations established in the host country, should advocate for the protection provided in the Convention Against Torture. Foreign former combatants who have committed crimes that exclude them from being given refugee status should not only be excluded from refugee protection, but also be brought to justice, e.g., extradited to face prosecution in the domestic courts of the country of origin or international tribunals (ad hoc war crimes tribunals and the International Criminal Court). In exceptional cases of the most serious types of crimes (e.g., genocide, serious breaches of the laws of armed conflict, torture as defined in the Convention Against Torture), there have been an increasing number of prosecutions in the national courts of host countries, under the principle of universality, which recognizes that some crimes are so grave that all countries have an interest in prosecuting them.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b053b67f-be9f-42f2-a031-cd2b6e50239d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Foreign former combatants who do not meet the criteria for refugee status and are not in need of international protection The term \u2018not in need of international protection\u2019 is understood to refer to persons who, after due consideration of their applications for refugee status in fair procedures, are found not to qualify for refugee status under refugee conventions, nor to be in need of international protection on other grounds after a review of protection needs of whatever nature, and who are not authorized to stay in the host country for other good reasons. Such persons include those for whom there are no serious reasons to believe that they would be tortured or treated inhumanely in other ways if returned to the country of origin, as provided for under the UN Convention Against Torture. Foreign former combatants whose applications for refugee status have been rejected by fair procedures and who have been assessed not to be in need of international protection on any other basis may be returned to their country of origin, as an exercise of national sovereignty by the host country if it does not want them to be integrated into the local community. Return of persons not in need of international protection is necessary in order to maintain the integrity of the asylum system. The return of such persons is a bilateral matter between the two countries. The UN mission and other relevant agencies (e.g., UNHCHR, IOM) should support governments in finding other options, such as repatriation and local integration, for foreign former combatants who are not in need of international protection.15", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "47f19a7a-fe46-4149-8803-e5899c9c997c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 39, + "Paragraph": "Terms and definitions (NB: For the purposes of this document, the following terms are given the meaning set out below, without prejudice to more precise definitions they may have for other purposes.) Asylum: The grant, by a State, of protection on its territory to persons from another State who are fleeing persecution or serious danger. A person who is granted asylum is a refugee. Asylum encompasses a variety of elements, including nonrefoulement, permission to remain in the territory of the asylum country and humane standards of treatment. Asylum seeker: A person whose request or application for refugee status has not been finally decided on by a possible country of refuge. Child associated with armed forces and groups: According to the Cape Town Principles and Best Practices (1997), \u201cAny person under 18 years of age who is part of any kind of regular or irregular armed force or armed group in any capacity, including, but not limited to: cooks, porters, messengers and anyone accompanying such groups, other than family members. The definition includes girls recruited for sexual purposes and for forced mar riage. It does not, therefore, only refer to a child who is carrying or has carried weapons.\u201d For further discussion of the term, see the entry in IDRRS 1.20. Combatant: Based on an analogy with the definition set out in the Third Geneva Conven tion of 1949 relative to the Treatment of Prisoners of War in relation to persons engaged in international armed conflicts, a combatant is a person who: is a member of a national army or an irregular military organization; or is actively participating in military activities and hostilities; or is involved in recruiting or training military personnel; or holds a command or decisionmaking position within a national army or an armed organization; or arrived in a host country carrying arms or in military uniform or as part of a military structure; or having arrived in a host country as an ordinary civilian, thereafter assumes, or shows determination to assume, any of the above attributes. Exclusion from protection as a refugee: This is provided for in legal provisions under refugee law that deny the benefits of international protection to persons who would other wise satisfy the criteria for refugee status, including persons in respect of whom there are serious reasons for considering that they have committed a crime against peace, a war crime, a crime against humanity, a serious nonpolitical crime, or acts contrary to the purposes and principles of the UN. Ex-combatant/Former combatant: A person who has assumed any of the responsibilities or carried out any of the activities mentioned in the above definition of \u2018combatant\u2019, and has laid down or surrendered his/her arms with a view to entering a DDR process. Foreign former combatant: A person who previously met the above definition of combatant and has since disarmed and genuinely demobilized, but is not a national of the country where he/she finds him/herself. Host country: A foreign country into whose territory a combatant crosses. Internally displaced persons (IDPs): Persons who have been obliged to flee from their homes \u201cin particular as a result of or in order to avoid the effects of armed conflicts, situations of 1.20 generalized violence, violations of human rights or natural or humanmade disasters, and who have not crossed an internationally recognized State border\u201d (according to the definition in the UN Guiding Principles on Internal Displacement). Internee: A person who falls within the definition of combatant (see above) who has crossed an international border from a State experiencing armed conflict and is interned by a neutral State whose territory he/she has entered. Internment: An obligation of a neutral State to restrict the liberty of movement of foreign combatants who cross into its territory, as provided for under the 1907 Hague Convention Respecting the Rights and Duties of Neutral Powers and Persons in the Case of War on Land. This rule is considered to have attained customary international law status, so that it is binding on all States, whether or not they are parties to the Hague Convention. It is appli cable by analogy also to internal armed conflicts in which combatants from government armed forces or opposition armed groups enter the territory of a neutral State. Internment involves confining foreign combatants who have been separated from civilians in a safe location away from combat zones and providing basic relief and humane treatment. Varying degrees of freedom of movement can be provided, subject to the interning State ensuring that the in ternees cannot use its territory for participation in hostilities. Mercenary: A mercenary is defined in article 1 of the International Convention Against the Recruitment, Use, Financing and Training of Mercenaries (1989) in the following terms: \u201c1. A mercenary is any person who: Is specially recruited locally or abroad in order to fight in an armed conflict; Is motivated to take part in the hostilities essentially by the desire for private gain and, in fact, is promised, by or on behalf of a party to the conflict, material compensation substantially in excess of that promised or paid to combatants of similar rank and func tions in the armed forces of that party; Is neither a national of a party to the conflict nor a resident of territory controlled by a party to the conflict; Is not a member of the armed forces of a party to the conflict; and Has not been sent by a State which is not a party to the conflict on official duty as a member of its armed forces. 2. A mercenary is also any person who, in any other situation: Is specially recruited locally or abroad for the purpose of participating in a concerted act of violence aimed at: Overthrowing a Government or otherwise undermining the constitutional order of a State; or Undermining the territorial integrity of a State; Is motivated to take part therein essentially by the desire for significant private gain and is prompted by the promise of payment of material compensation; Is neither a national nor a resident of the State against which such an act is directed; Has not been sent by a State on official duty; and Is not a member of the armed forces of the State on whose territory the act is undertaken.\u201d Non-refoulement: A core principle of international law that prohibits States from returning persons in any manner whatsoever to countries or territories in which their lives or freedom may be threatened. It finds expression in refugee law, human rights law and international humanitarian law and is a rule of customary international law and is therefore binding on all States, whether or not they are parties to specific instruments such as the 1951 Convention relating to the Status of Refugees. Prima facie: As appearing at first sight or on first impression; relating to refugees, if someone seems obviously to be a refugee. Refugee: A refugee is defined in the 1951 UN Convention relating to the Status of Refugees as a person who: \u201cIs outside the country of origin; Has a wellfounded fear of persecution because of race, religion, nationality, member ship of a particular social group or political opinion; and Is unable or unwilling to avail himself of the protection of that country, or to return there, for fear of persecution.\u201d In Africa and Latin America, this definition has been extended. The 1969 OAU Conven tion Governing the Specific Aspects of Refugee Problems in Africa also includes as refugees persons fleeing civil disturbances, widespread violence and war. In Latin America, the Carta gena Declaration of 1984, although not binding, recommends that the definition should also include persons who fled their country \u201cbecause their lives, safety or freedom have been threatened by generalized violence, foreign aggression, internal conflicts, massive violations of human rights or other circumstances which have seriously disturbed public order\u201d. Refugee status determination: Legal and administrative procedures undertaken by UNHCR and/or States to determine whether an individual should be recognized as a refugee in accordance with national and international law. Returnee: A refugee who has voluntarily repatriated from a country of asylum to his/her country of origin, after the country of origin has confirmed that its environment is stable and secure and not prone to persecution of any person. Also refers to a person (who could be an internally displaced person [IDP] or excombatant) returning to a community/town/ village after conflict has ended. Annex C: UNHCR Executive Committee Conclusion on the Civilian and Humanitarian Character of Asylum No. 94 (LIII) The Executive Committee, Remaining seriously concerned by the continuing occurrence of military or armed attacks and other threats to the security of refugees, including the infiltration and presence of armed elements in refugee camps and settlements;17 Recalling the relevant provisions of international refugee law, international human rights law and international humanitarian law; Recalling its Conclusion No. 27 (XXXIII) and Conclusion No. 32 (XXXIV) on military attacks on refugee camps and settlements in Southern Africa and elsewhere; Conclusion 72 (XLIV) on personal security of refugees; Conclusion No. 48 (XXXVIII) on military or armed attacks on refugee camps and settlements; Conclusion No. 47 (XXXVIII) and Conclusion No. 84 (XLVII), on refugee children and adolescents, as well as Conclusion 64 (XLI) on refugee women and international protection; Recalling also United Nations Security Council resolution S/RES/1208 (1998) and S/RES/1296 (2000), and the two reports of the United Nations SecretaryGeneral on the Protection of Civilians in Armed Conflict18, noting in particular the recommendations made therein with respect to enhancing the security of refugee camps and settlements; Welcoming the discussion which took place on the civilian character of asylum in the context of the Global Consultations on International Protection;19 Noting that several international meetings have recently been held, aimed at identifying effective operational strategies for maintaining the civilian and humanitarian character of asylum;20 Reiterating that refugee camps and settlements should have an exclusively civilian and humanitarian character, that the grant of asylum is a peaceful and humanitarian act which should not be regarded as unfriendly by another State, as stated in the 1969 OAU Convention Governing the Specific Aspects of Refugee Problems in Africa and a number of EXCOM Conclusions, and that all actors, including refugees themselves, have the obligation to coop erate in ensuring the peaceful and humanitarian character of refugee camps and settlements; Recognizing that the presence of armed elements in refugee camps or settlements; recruit ment and training by government armed forces or organized armed groups; the use of such camps, intended to accommodate refugee populations on purely humanitarian grounds, for the internment of prisoners of war; as well as other forms of exploitation of refugee situations for the purpose of promoting military objectives are likely to expose refugees, par ticularly women and children, to serious physical danger, inhibit the realization of durable solutions, in particular voluntary repatriation, but also local integration, jeopardize the civilian and humanitarian character of asylum and may threaten the national security of States, as well as interState relations; Recognizing the special protection needs of refugee children and adolescents who, especially when living in camps where refugees are mixed with armed elements, are particularly vul nerable to recruitment by government armed forces or organized armed groups; Reaffirming the importance of States, UNHCR and other relevant actors, integrating safety and security concerns from the outset of a refugee emergency into refugee camp manage ment in a holistic manner; Acknowledges that host States have the primary responsibility to ensure the civilian and humanitarian character of asylum by, inter alia, making all efforts to locate refugee camps and settlements at a reasonable distance from the border, maintaining law and order, curtailing the flow of arms into refugee camps and settlements, preventing their use for the internment of prisoners of war, as well as through the disarmament of armed elements and the identification, separation and internment of combatants; Urges refugeehosting States to respect the civilian and humanitarian character of refu gee camps by preventing their use for purposes which are incompatible with their civilian character; Recommends that action taken by States to ensure respect for the civilian and humani tarian character of asylum be guided, inter alia, by the following principles; Respect for the right to seek asylum, and for the fundamental principle of non refoulement, should be maintained at all times; Measures for the disarmament of armed elements and the identification, sep aration and internment of combatants should be taken as early as possible, preferably at the point of entry or at the first reception/transit centres for new arrivals; To facilitate early identification and separation of combatants, registration of new arrivals should be conducted by means of a careful screening process; Refugee camps and settlements should benefit from adequate security arrange ments to deter infiltration by armed elements and the strengthening of law and order; Once identified, disarmed and separated from the refugee population, combat ants should be interned at a safe location from the border; Where the granting of refugee status is based on group determination, civilian family members of combatants should be treated as refugees and should not be interned together with them; Combatants should not be considered as asylumseekers until the authorities have established within a reasonable timeframe that they have genuinely and permanently renounced military activities. Once this has been established, special procedures should be put in place for individual refugee status deter mination, to ensure that those seeking asylum fulfil the criteria for the recogni tion of refugee status. During the refugee status determination process, utmost attention should be paid to article 1F of the 1951 Convention, in order to avoid abuse of the asylum system by those who do not deserve international protection; Former child soldiers should benefit from special protection and assistance measures, in particular as regards their demobilization and rehabilitation; Where necessary, host States should develop, with assistance from UNHCR, operational guidelines in the context of group determination to exclude those individuals who are not deserving of international refugee protection; Further to para 3 (b) above, calls upon UNHCR to convene a meeting of experts in sup port of the elaboration of measures for the disarmament of armed elements and the identification, separation, and internment of combatants, including the clarification of relevant procedures and standards, in consultation with States, United Nations Secre tariat entities and agencies, and interested organizations, such as the ICRC, and report back to the Executive Committee on progress achieved; Calls upon States to ensure that measures are taken to prevent the recruitment of refugees by government armed forces or organized armed groups, in particular of children, taking into account also that unaccompanied and separated children are even more vulner able to recruitment than other children; Calls upon the relevant United Nations organs and regional organizations, in pursuance of their respective mandates, as well as the international community at large, to mobi lize adequate resources to support and assist host States in maintaining the civilian and humanitarian character of asylum, in line with the principles of international solidarity, cooperation, burden and responsibility sharing; Calls upon UNHCR and the Department of Peacekeeping Operations of the United Nations Secretariat to enhance collaboration on all aspects of this complex matter, and as appropriate, to deploy, with the consent of host States, multidisciplinary assess ment teams to an emerging crisis area in order to clarify the situation on the ground, evaluate security threats for refugee populations and consider appropriate practical responses; Calls upon UNHCR to explore how it may develop, in consultation with relevant part ners, its own institutional capacity to address insecurity in refugee camps, inter alia by assisting States to ensure the physical safety and dignity of refugees, building, as appro priate, upon its protection and operational expertise.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fb072ee0-fb4b-4170-9e18-8178307a9888", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Agreement between the Government of [country of origin] and the Government of [host country] for the voluntary repatriation and reintegration of combatants of [country of origin]", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5d5550c7-2615-4c85-8f60-542f6963050a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 47, + "Paragraph": "Preamble Combatants of [country of origin] have been identified in neighbouring countries. Approxi mately [number] of these combatants are presently located in [host country]. This Agreement is the result of a series of consultations for the repatriation and incorporation in a disarma ment, demobilization and reintegration (DDR) programme of these combatants between the Government of [country of origin] and the Government of [host country]. The Parties have agreed to facilitate the process of repatriating and reintegrating the combatants from [host country] to [country of origin] in conditions of safety and dignity. Accordingly, this Agree ment outlines the obligations of the Parties.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5e455562-96d8-4a8e-b388-ffca2362d9d5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Article 1 \u2013 Definitions Article 2 \u2013 Legal bases The Parties to this Agreement are mindful of the legal bases for the [internment and] repatri ation of the said combatants and base their intentions and obligations on the following inter national instruments: [If applicable, in cases involving internment] The Hague Convention (V) Respecting the Rights and Duties of Neutral Powers and Persons in Case of War on Land, 18 October 1907 (Annex 1) [If applicable, in cases involving internment] The Third Geneva Convention relative to the Treatment of Prisoners of War, Geneva, 12 August 1949 (Annex 2) [If applicable, in cases involving internment] The Protocol Additional to the Geneva Conventions of 12 August 1949, and Relating to the Protection of Victims of NonInter national Armed Conflicts (Protocol II), Geneva, 12 December 1977 (Annex 3) Article 33 of the 1951 Convention relating to the Status of Refugees, Geneva, 28 July 1951 (Annex 4) [If applicable, in cases involving African States] The 1969 OAU Convention Governing the Specific Aspects of Refugee Problems in Africa (Annex 5)", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "06ee5b35-676c-49e2-b7bf-55cb9acf9b5d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 47, + "Paragraph": "Article 4 \u2013 Technical Task Force A Technical Task Force of representatives of the following parties to determine the opera tional framework for the repatriation and reintegration of the said combatants shall be constituted: National Commission on DDR [of country of origin and of host country] Representatives of the embassies [of country of origin and host country] [Relevant government departments of country of origin and host country, e.g. foreign affairs, defence, internal affairs, immigration, refugee/humanitarian affairs, children and women/gender] UN Missions [in country of origin and host country] [Relevant international agencies, e.g. UNHCR, UNICEF, ICRC, IOM]", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "21b81f37-b855-4846-aed2-f9f09ae37ca8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Article 5 \u2013 Obligations of Government of [country of origin] The Government of [country of origin] agrees: To accept the return in safety and dignity of the said combatants. To provide sufficient information to the said combatants, as well as to their family members, to make free and informed decisions concerning their repatriation and rein tegration. To include the returning combatants in the amnesty provided for in article [ ] of the Peace Accord (Annex 6). To waive any court martial action for desertion from government forces. To facilitate the return of the said combatants to their places of origin or choice through [relevant government agencies such as the National Commission on DDR and inter national agencies and NGO partners], taking into account the specific needs and circum stances of the said combatants and their family members. To consider and facilitate the payment of any DDR benefits, including reintegration assistance, upon the return of the said combatants and to provide appropriate identi fication papers in accordance with the eligibility criteria of the DDR programme. To assist the returning combatants of government forces who wish to benefit from the restructuring of the army by rejoining the army or obtaining retirement benefits, depend ing on their choice and if they meet the criteria for the above purposes. To facilitate through the immigration department the entry of spouses, partners, children and other family members of the combatants who may not be citizens of [country of origin] and to regularize their residence in [country of origin] in accordance with the provisions of its immigration or other relevant laws. To grant free and unhindered access to [UN Missions, relevant international agencies, etc.] to monitor the treatment of returning combatants and their family members in accordance with human rights and humanitarian standards, including the implemen tation of commitments contained in this Agreement. To meet the [applicable] cost of repatriation and reintegration of the combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fe8ab118-b6c2-43c6-bad9-cecc712e626b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Article 6 \u2013 Obligations of Government of [host country] The Government of [host country] agrees: To facilitate the processing of repatriation of the said combatants who wish to return to [country of origin]. To return the personal effects (excluding arms and ammunition) of the said combatants. To provide clear documentation and records which account for arms and ammunition collected from the said combatants. To meet the [applicable] cost of repatriation of the said combatants. To consider local integration for any of the said combatants for whom this is assessed to be the most appropriate durable solution.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ca6bc81c-bc1e-45a8-ace8-741117cd1ce8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 7 \u2013 Children associated with armed forces and groups The return, family reunification and reintegration of children associated with armed forces and groups will be carried out under separate arrangements, taking into account the special needs of the children.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d169e9b2-fefd-45f3-968e-e12e96938d51", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 8 \u2013 Special measures for vulnerable persons/persons with special needs The Parties shall take special measures to ensure that vulnerable persons and those with special needs, such as disabled combatants or those with other medical conditions that affect their travel, receive adequate protection, assistance and care throughout the repatri ation and reintegration processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae88d025-0cde-4f53-86ec-3c109e0d79b8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 9 \u2013 Families of combatants Wherever possible, the Parties shall ensure that the families of the said combatants residing in [host country] return to [country of origin] in a coordinated manner that allows for the maintenance of family links and reunion.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "385b7c47-b1d6-4b08-a17e-c124090c1210", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 10 \u2013 Nationality issues The Parties shall mutually resolve through the Technical Task Force any applicable nation ality issues, including establishment of modalities for ascertaining nationality, and deter mining the country in which combatants will benefit from a DDR programme and the country of eventual destination.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "94a13736-4b47-411c-a78b-49a3c594145e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 11 \u2013 Asylum Should any of the said combatants, having permanently renounced armed activities, not wish to repatriate for reasons relevant to the 1951 Convention relating to the Status of Refugees, they shall have the right to seek and enjoy asylum in [host country]. The grant of asylum is a peaceful and humanitarian act and shall not be regarded as an unfriendly act.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "00daa4d7-cab3-44ad-906e-48dad887f406", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 12 \u2013 Designated border crossing points The Parties shall agree on border crossing points for repatriation movements. Such agree ment may be modified to better suit operational requirements.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "007bee3e-38d3-47a0-b401-a7e983ec87e4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 13 \u2013 Immigration, customs and health formalities To ensure the expeditious return of the said combatants, their family members and belongings, the Parties shall waive their respective immigration, customs and health formalities usually carried out at border crossing points. The personal or communal property of the said combatants and their family members, including livestock and pets, shall be exempted from all customs duties, charges and tariffs. [If applicable] The Parties shall also waive any fees, passenger service charges as well as all other airport, marine, road or other taxes for vehicles entering or transiting their respective territories under the auspices of [repatriation agency] for the repatriation operation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e822129e-69c7-4669-9ec6-609b21e016db", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 50, + "Paragraph": "Article 14 \u2013 Access and monitoring upon return [The UN Mission and other relevant international and nongovernmental agencies] shall be granted free and unhindered access to all the said combatants and their family members in [the host country] and upon return in [the country of origin], in order to monitor their treatment in accordance with human rights and humanitarian standards, including the implementation of commitments contained in this Agreement.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "3ffc215a-dc5c-4347-aeb8-17fbdc0839ae", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 50, + "Paragraph": "Article 15 \u2013 Continued validity of other agreements This Agreement shall not affect the validity of any existing agreements, arrangements or mechanisms of cooperation between the Parties. To the extent necessary or applicable, such agreements, arrangements or mechanisms may be relied upon and applied as if they formed part of this Agreement to assist in the pursuit of this Agreement, namely the repa triation and reintegration of the said combatants.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "d49e38e8-a2a3-42ee-ac5b-4f191f4e272f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 50, + "Paragraph": "Article 16 \u2013 Resolution of disputes Any question arising out of the interpretation or application of this Agreement, or for which no provision is expressly made herein, shall be resolved amicably through consultations between the Parties.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "1a4ad794-f4a3-4349-a34e-b53502e1638c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 50, + "Paragraph": "Article 20 \u2013 Succession This Agreement binds any successors of both Parties. In witness whereof, the authorized representatives of the Parties have hereby signed this Agreement. DONE at ..........................., this ..... day of\t, in two originals. For the Government of [country of origin]: For the Government of [host country]:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ad435f47-07c0-4712-a965-7bce4127b6b3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 51, + "Paragraph": "Endnotes See, for example, Special Report of the SecretaryGeneral on the United Nations Organization Mission in the Democratic Republic of the Congo, S/2002/1005, 10 September 2002, section on \u2018Principles Involved in the Disarmament, Demobilization, Repatriation, Resettlement and Reintegration of Foreign Armed Groups\u2019, pp. 6\u20137; Report of the SecretaryGeneral to the Security Council on Liberia, 11 September 2003, para. 49: \u201cFor the planned disarmament, demobilization and reintegration process in Liberia to suc ceed, a subregional approach which takes into account the presence of foreign combatants in Liberia and Liberian excombatants in neighbouring countries would be essential In view of the subre gional dimensions of the conflict, any disarmament, demobilization and reintegration programme for Liberia should be linked, to the extent possible, to the ongoing disarmament, demobilization and rein tegration process in C\u00f4te d\u2019Ivoire \u201d; Security Council resolution 1509 (2003) establishing the United Nations Mission in Liberia, para. 1(f) on DDR: \u201caddressing the inclusion of nonLiberian combatants\u201d; Security Council press release, \u2018Security Council Calls for Regional Approach in West Africa to Address such Crossborder Issues as Child Soldiers, Mercenaries, Small Arms\u2019, SC/8037, 25 March 2004. \u201cEvery State has the duty to refrain from organizing or encouraging the organization of irregular forces or armed bands, including mercenaries, for incursion into the territory of another state . . . . Every State has the duty to refrain from organizing, instigating, assisting or participating in acts of civil strife or terrorist acts in another State or acquiescing in organized activities within its territory directed towards the commission of such acts, when the acts referred to in the present paragraph involve a threat or use of force No State shall organize, assist, foment, finance, incite or tolerate subversive, terrorist or armed activities directed towards the violent overthrow of the regime of another State, or interfere in civil strife in another State.\u201d Adopted by UN General Assembly resolution 43/173, 9 December 1988. Adopted by the First UN Congress on the Prevention of Crime and the Treatment of Offenders, Geneva 1955, and approved by the UN Economic and Social Council in resolutions 663 C (XXIV) of 31 July 1957 and 2076 (LXII) of 13 May 1977. Adopted by UN General Assembly resolution 45/111, 14 December 1990. UN General Assembly resolution 56/166, Human Rights and Mass Exoduses, para. 8, 26 February 2002; see also General Assembly resolution 58/169, para. 7. UN General Assembly resolution 58/169, Human Rights and Mass Exoduses, 9 March 2004. UN General Assembly, Report of the FiftyFifth Session of the Executive Committee of the High Commissioner\u2019s Programme, A/AC.96/1003, 12 October 2004. Information on separation and internment of combatants in sections 7 to 10 draws significantly from papers presented at the Experts\u2019 Roundtable organized by UNHCR on the Civilian and Humanitar ian Character of Asylum (June 2004), in particular the background resource paper prepared for the conference, Maintaining the Civilian and Humanitarian Character of Asylum by Rosa da Costa, UNHCR (Legal and Protection Policy Research Series, Department of International Protection, PPLA/2004/02, June 2004), as well as the subsequent UNHCR draft, Operational Guidelines on Maintaining the Civilian Character of Asylum in Mass Refugee Influx Situations. Internment camps for foreign combatants have been established in Sierra Leone (Mapeh and Mafanta camps for combatants from the Liberian war), the Democratic Republic of the Congo (DRC) (Zongo for combatants from Central African Republic), Zambia (Ukwimi camp for combatants from Angola, Burundi, Rwanda and DRC) and Tanzania (Mwisa separation facility for combatants from Burundi and DRC). Da Costa, op. cit. The full definition in the 1989 International Convention Against the Recruitment, Use, Financing and Training of Mercenaries is contained in the glossary of terms in Annex A. In Africa, the 1977 Convention of the OAU for the Elimination of Mercenarism in Africa is also applicable. Universal Declaration of Human Rights, art. 14. The article contains an exception \u201cin the case of prose cutions genuinely arising from nonpolitical crimes or from acts contrary to the purposes and principles of the United Nations\u201d. For further information see UNHCR, Handbook for Repatriation and Reintegration Activities, Geneva, May 2004. The UN General Assembly has \u201cemphasiz[ed] the obligation of all States to accept the return of their nationals, call[ed] upon States to facilitate the return of their nationals who have been determined not to be in need of international protection, and affirm[ed] the need for the return of persons to be undertaken in a safe and humane manner and with full respect for their human rights and dignity, irrespective of the status of the persons concerned\u201d (UN General Assembly resolution 57/187, para. 11, 18 December 2002). Refer to UNHCR/DPKO note on cooperation, 2004. For the purpose of this Conclusion, the term \u201carmed elements\u201d is used as a generic term in a refugee context that refers to combatants as well as civilians carrying weapons. Similarly, for the purpose of this Conclusion, the term \u201ccombatants\u201d covers persons taking active part in hostilities in both inter national and noninternational armed conflict who have entered a country of asylum. 18 S/1999/957; S/2001/331 19 EC/GC/01/8/Rev.1 20 Workshop on the Potential Role of International Police in Refugee Camp Security (Ottawa, Canada, March 2001); Regional Symposium on Maintaining the Civilian and Humanitarian Character of Refugee Status, Camps and other locations (Pretoria, South Africa, February 2001); International Seminar on Exploring the Role of the Military in Refugee Camp Security (Oxford, UK, July 2001).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-5.50-Food-Asssistance-in-DDR.json b/src/Static/data/json/IDDRS-5.50-Food-Asssistance-in-DDR.json new file mode 100644 index 0000000..7ce3fe8 --- /dev/null +++ b/src/Static/data/json/IDDRS-5.50-Food-Asssistance-in-DDR.json @@ -0,0 +1,781 @@ +[ + { + "ID": "6955218f-a0c8-4c39-ae90-be3912c4b555", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": null, + "Paragraph": "Summary Acute food insecurity can be a trigger or root cause of armed conflict. Furthermore, armed conflict itself is a major driver of food insecurity. In countries and regions affected by armed conflict, humanitarian food assistance agencies are often already engaged in large-scale life-saving and livelihood support programmes to assist vulnerable and conflict-affected civilian communities, including displaced populations. These same agencies may be asked by a national Government, a peace operation or UN Resident Coordinator (UN RC) to provide food assistance in support of a disarmament, demobi- lization and reintegration (DDR) process. Food assistance provided by humanitarian food assistance agencies as part of a DDR process shall adhere to humanitarian principles and the best practices of human- itarian food assistance. Humanitarian agencies shall not provide food assistance to armed personnel at any point in a DDR process and all reasonable precautions and measures shall be taken to ensure that food assistance is not taken or used by combat- ants or warring factions. When food is provided to armed forces and groups prior to their demobilization, Governments or peacekeeping actors and their cooperating part- ners, and not humanitarian agencies, shall be responsible for all aspects of the process \u2013 from the acquisition of food to its distribution. As outlined in IDDRS 2.10 on The UN Approach to DDR, DDR processes can include various combinations of DDR programmes, DDR-related tools and reintegration support. The objectives and means through which food assistance is provided will differ depending on the type of DDR process being supported. For example, during DDR programmes food assistance can be provided at disarmament and/or cantonment sites and as part of a transitional safety net in support of reinsertion and reintegration. Food assistance can also be provided as part of reintegration support either during a DDR programme or when the preconditions for a DDR programme are not in place (see IDDRS 4.20 on Demobilization). In addition, food assistance can be part of pre-DDR and CVR (see IDDRS 2.30 on Community Violence Reduction). Food assistance that is provided in support of a DDR process shall be based on a careful analysis of the food security situation. This shall include an analysis of any potential gender, age or disability barriers to receiving food assistance. The capaci- ties and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of the assistance. Food assistance as part of a DDR process shall also be informed by a context/conflict analysis and an analysis of the protection risks that could potentially be created by this assistance. For example, it is important to analyse whether food assistance may inadvertently create or exacerbate household or community tensions. Available and flexible resources are necessary in order to respond to the changes and unexpected problems that may arise during DDR processes. A food assistance component of a DDR process should not be implemented unless adequate resources and capacity are in place, including human, financial and logistics resources. If resources are not adequate, a risk analysis must inform decision-making and implementation. Maintaining a well-resourced food assistance pipeline, regardless of the selected trans- fer modality (in-kind support or cash-based transfers) is essential.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d1588430-3517-4072-9fd7-95ed0bd86543", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module outlines the operational requirements for the planning, design and implementation of the food assistance component of a DDR process in both mission and non-mission settings. It focuses on instances where food assistance is provided by humanitarian food assistance agencies as part of a DDR process to ex-combatants, per- sons formerly associated with armed forces and groups, dependants and community members.1 It also examines the different modalities through which food assistance can be provided, including in-kind support, cash-based transfers, vouchers and digital payments (such as mobile money transfers). Although not the focus of this module, the guidance provided herein may also be of use to Government and peacekeeping actors engaged in the provision of food assistance during DDR.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "43721096-ee61-4211-898d-9af674b7ac3c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Cash-based transfers (CBTs): This term is used when, instead of providing a package of food, money is given to buy food. CBTs include cash as well as value vouchers. Value vouchers \u2013 also known as gift cards or stamps - provide access to commodities for a given monetary amount and can often be used in predetermined locations, includ- ing selected shops. CBTs may also include digital transfers such as payments made to mobile phones (\u201cmobile money transfers\u201d). Commodity vouchers: Vouchers may also be commodity-based i.e., tied to a pre- defined quantity of given foods. Coping mechanisms: The methods by which members of households try to deal with a crisis. For example, at times of severe food insecurity, household members may (1) make greater use than normal of wild foods, (2) plant other crops, (3) seek other sourc- es of income, (4) rely more on gifts and remittances, (5) sell off assets to buy food and (6) migrate. Coping mechanisms should be discouraged if they lead to disinvestment, reduce a household\u2019s capacity to recover its long-term ability to survive, or harm the environment. Positive coping mechanisms should be encouraged and strengthened. Food assistance for assets (FFA): FFA aims to address the immediate food needs of the most food-insecure people while improving their long-term food security and re- silience. People receive cash, vouchers or in-kind food assistance while they build or boost assets, such as constructing a road or rehabilitating degraded land. These assets should in turn improve their livelihoods by creating healthier natural environments, reducing risks and the impact of shocks, increasing food productivity and strengthen- ing resilience to natural disasters. FFA is sometimes referred to as food for work. Food assistance programmes (FAPs): These programmes aim to improve the food secu- rity and nutritional status of the targeted population and can be implemented through different transfer modalities, including in-kind food rations and CBTs. Food assistance for training (FFT): A programme in which food or cash is supplied on the condition that the recipient attends a training programme. Food security: A situation where all people, at all times, have physical, social and eco- nomic access to sufficient, safe and nutritious food that meets their dietary needs and food preferences for an active and healthy life. (Note: This definition includes the three key dimensions of food security: sufficient availability of food, adequate access to food, and appropriate utilization of food.) Vulnerability: In terms of food supply, vulnerability refers to the presence of factors that place people at risk of becoming food insecure or malnourished, including those factors that affect their ability to cope with these risks.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "a4e50eb0-c922-47ee-a4a9-4639c2f3c8fc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 5, + "Paragraph": "Introduction Acute food insecurity can be a trigger or root cause of armed conflict. Furthermore, armed conflict itself is a major driver of food insecurity. In countries and regions affected by armed conflict, humanitarian food assistance agencies are often already engaged in programmes to assist vulnerable and conflict-affected civilian communities, including displaced populations. These same agencies may be asked by a national Government, a peace operation or UN RC to provide food assistance in support of a DDR process. As outlined in IDDRS 2.10 on The UN Approach to DDR, DDR processes can include various combinations of DDR programmes, DDR-related tools and reintegra- tion support. The objectives and means through which food assistance is provided will differ depending on the type of DDR process being supported (see Table 1 below). For example, during DDR programmes food assistance can be provided at disarma- ment and/or cantonment sites and as part of a transitional safety net in support of reinsertion and reintegration. Food assistance can also be provided as part of reinte- gration support either a part of a DDR programme or when the preconditions for a DDR programme are not in place (see IDDRS 4.20 on Demobilization). In addition, food assistance can be part of pre-DDR and CVR (see IDDRS 2.30 on Community Violence Reduction). When food assistance is provided prior to demobilization, i.e., to active armed forces and groups, it shall be provided by Governments or peacekeeping actors and their cooperating partners, not humanitarian agencies.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "c351010f-3d2a-49ff-930b-2973b390680b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 8, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the food assistance provided by humanitarian food assistance agencies during DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1dde9443-9597-4cc4-a0f4-2f367da06645", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 8, + "Paragraph": "Criteria for participation/eligibility Food assistance may be provided to all five categories of people that should be taken into consideration in integrated DDR processes, depending on the context (see IDDRS 2.10 on The UN Approach to DDR and IDDRS 3.21 on Participants, Beneficiaries and Partners). In a DDR process, those who receive food assistance may be eligible not just because they are in a particular situation of vulnerability to food and nutrition inse- curity, but because they are members of, or associated with, a particular armed force or group. The objectives and eligibility criteria are different from those of a purely humanitarian food assistance intervention and align with those of the broader DDR process. This may in some circumstances contradict the needs-based approach of humanitarian food security organizations, and, as such, shall be carefully considered and weighed against overall peacebuilding and stabilization objectives. Some female combatants and women associated with armed forces and groups (WAAFG) may self-demobilize in order to avoid the stigmatization that may result from being known as a female member of an armed force or group. These women may also be forcibly prevented from registering for DDR by male commanders (see IDDRS 4.20 on Demobilization and IDDRS 5.10 on Women, Gender and DDR). Therefore, com- munity-based food assistance in areas where WAAFG have returned may be the only way to reach these women (see IDDRS 4.30 on Reintegration). Careful consideration shall also be given to how to best meet the food assistance requirements and other humanitarian needs of the dependants (partners, children and relatives) of ex-combatants. Whenever possible, meeting the food assistance needs of this group shall be part of broader strategies that are developed to improve food security in receiving communities. Dependants are eligible for assistance from DDR processes if they fulfil certain vulnerability criteria and/or if their main household income was that of an eligible combatant. The criteria for eligibility for food assistance and to assess vulnerability shall be agreed upon and coordinated among key national and agency stakeholders, with humanitarian agencies playing a key role in this process. The process shall also involve participatory consultations with women and men of different ages. Because dependants are civilians, they should not be involved in disarmament and demobilization. However, they should be screened and identified as dependants of an eligible combatant (see IDDRS 4.20 on Demobilization). In this context, food assis- tance for dependants may be implemented in one of two ways. The first would involve dependants being cantoned in a separate, nearby camp while combatants are disarmed and demobilized. The second would involve dependants being taken or being asked to go directly to their communities. These two approaches would require different methods for distributing food assistance. During the planning process for the food assistance component of a DDR process, a clear, coordinated approach to inter-agency procedures for meeting the needs of dependants shall be outlined for all agency partners that will be involved. It is also essential when planning food assistance, that support provided to DDR participants and beneficiaries be balanced against the assistance provided to host com- munity members or other returnees (such as internally displaced persons and refugees) as part of wider recovery programmes. When possible, and depending on the opera- tional context, the needs of dependants may be best met by linking to concurrent food assistance programmes that are designed to assist the recovery of other conflict-affected populations. This approach shall be considered the preferred programming option.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c3478fbf-d284-47ec-84ed-6b4c971a7046", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 9, + "Paragraph": "Unconditional release and protection of children Children associated with armed forces and armed groups (CAAFAG) are particularly vulnerable to re-recruitment, and, because of this, food assistance can provide valuable support for programmes of education, training, rehabilitation, and family and commu- nity reunification. When dealing with CAAFAG, appropriate food assistance benefits should only be selected after careful analysis of the situation and context, and be guided by the principle of \u2018do no harm\u2019. Although food assistance can in some cases offer these children incentives to reintegrate into their communities, food assistance can also motivate children to join or re-join armed forces and groups in order to access this support. Food assistance in the form of cash shall not be provided to children, as cash may easily be taken from children (for e.g., by military commanders). Instead, in-kind food assistance may be offered during child DDR processes. Any food assistance support shall be coordinated with specialized child protection actors. Protection analysis and referral systems to child protection agencies shall be included in the food assistance component of the DDR process (see section 7.1). The diverse and specific needs of CAAFAG, boys and girls, including in relation to nutrition, shall be taken into account in the design and implementation of the food assistance component of a child DDR process. DDR practitioners and food assistance staff shall be aware of the relevant legal conventions and key issues and vulnerabilities that have to be dealt with when assisting CAAFAG and work closely with child protection specialists when developing the food assistance component of a child DDR process. In addition, appropriate reporting mechanisms shall be established in advance with specialized child protection agencies to deal with child protection and other issues that arise during child demobilization (\u2018release\u2019) (see IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "fe80938d-df78-4fe1-a1cf-bd671ed22f1b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 10, + "Paragraph": "In accordance with standards and principles of humanitarian assistance Any food assistance component that is part of a DDR process shall be designed in accordance with humanitarian principles and the best practices of humanitarian food assistance. Food assistance shall only be provided when an overall assessment con- cludes that it is a required form of assistance as part of the DDR process. Similarly, the transfer modality to be used for the food assistance shall be based on a careful contextual and feasibility analysis (see section 5.5). Furthermore, when food assistance is provided as part of a DDR process in a mission context, the political requirements of the peacekeeping mission and the guiding principles of humanitarian assistance and development aid shall be kept completely separate. Food assistance as part of a DDR process shall be designed and implemented in a way that contributes to the safety, dignity and integrity of ex-combatants, their dependants, persons formerly associated with armed forces and groups, and community members. In any circumstance where these conditions are not met, humanitarian agencies shall carefully consider the appropriateness of providing food assistance. Humanitarian food assistance agencies shall only be involved in DDR processes when they have sufficient capacity. Support to a DDR process shall not undermine a humanitarian food assistance agency\u2019s capacity to deal with other urgent humanitar- ian problems/crises, nor shall it affect the process of prioritizing food assistance to conflict-affected populations. In accordance with humanitarian principles, food assistance agencies shall not provide food assistance to armed personnel at any point in a DDR process. All reasonable precautions and measures shall be taken to ensure that food assistance is not taken or used by combatants or warring factions. When food is provided to armed forces and groups during the pre-disarmament and disarmament phases of a DDR process, Governments or peacekeeping actors and their cooperating partners, and not humani- tarian agencies, shall be responsible for all aspects of the process \u2013 from the acquisition of food to its distribution.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e7501fef-ec69-4ae9-9ccc-cf1751e218f5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 10, + "Paragraph": "Gender-responsive and inclusive In each context in which a DDR process takes place, women, men, girls and boys will have different needs, interests and capacities. Food assistance in support of DDR shall be designed and implemented to take this into account. In particular, DDR practitioners shall be aware of the nutritional needs of women, adolescent girls and girls and boys. They shall also assess in advance and monitor whether food assistance provides equal benefit to women/girls and men/boys, and whether the assistance exacerbates gender inequality or promotes gender equality. The food assistance component of a DDR process shall ensure that women and girls have control over the assistance they receive and that they are empowered to make their own choices about their lives. In order to achieve this, it is essential that women and girls and women\u2019s groups, as well as child advocacy groups, be closely and meaningfully involved in DDR planning and implementation. The food assistance component of a DDR process shall also consider gender analysis and power dynamics in household resource distribution, as it may be necessary to create specific benefit tracks for women. As with all food assistance programmes, those established in support of a DDR process shall be gender-responsive and appropriate to the rights and specific needs of women and girls (see IDDRS 5.10 on Women, Gender and DDR). A gender-transformative approach to food assistance shall be applied, promoting women\u2019s roles in decision-making, leadership, distribution, and monitoring and eval- uation. More specifically: A gender-transformative lens shall be integrated into the design and delivery of food assistance components, leveraging opportunities to support gender-equitable engagement by men, women, boys and girls, including ensuring equal representation of women in leadership roles. The women and men who are to be recipients of food assistance shall determine the selection of the transfer modality and delivery mechanism (time, date, place, quantity of food, separate queues, etc.). The transfer type and delivery mechanism shall not reinforce discriminatory and restrictive gender roles. The provision of food assistance shall be monitored, and gender and gender-equality considerations shall be integrated into the tools, procedures and reporting of on-site, post-distribution and market monitoring. Changes in food security, nutrition situation, decision-making authority and em- powerment, equitable participation and access, protection and safety issues, and satisfaction with assistance received shall be monitored for individual women, men, girls and boys, households and community groups. Food assistance staff shall receive training on protection from sexual exploitation and abuse (PSEA), including regular refresher trainings. Confidential complaints and feedback mechanisms related to food assistance that are accessible to women, men, girls and boys shall be designed, established and managed. These mechanisms shall ensure that women have a safe space to report protection issues and incidents of sexual and gender-based violence. An accounta- bility system should be designed, established and managed to ensure appropriate follow up. Possible violations of women\u2019s and girls\u2019 rights shall be identified, addressed and responded to when supporting the food assistance component of a DDR process. Opportunities for women to take a more active role in designing and implementing food assistance programmes shall also be promoted. The equal representation of women and men in peace mediation and decision-making at all levels and stages of humanitarian assistance shall be ensured, including in food management committees and at distribution points. The participation of women\u2019s organizations in capacity-building for humanitarian response, rehabilitation and recovery shall be ensured.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8ba9eca7-b81d-4533-b29c-97c20f0666e0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 11, + "Paragraph": "Conflict sensitive DDR processes shall be designed through a conflict-sensitive lens with careful consid- eration given to how a possible food assistance component could potentially increase tensions and vulnerabilities. Food assistance provided as part of a DDR process shall not create, exacerbate or contribute to gender inequalities or discrimination, including the risk of gender-based violence. Furthermore, it shall not present possibilities for theft or manipulation of assistance, or compromise the legitimacy of organizations and actors providing humanitarian and development aid. The most adequate transfer mo- dalities and delivery mechanisms for food assistance as part of a DDR process shall be identified. Food assistance staff and DDR practitioners shall be highly aware of the potential for their decisions to have unintended negative consequences and shall ana- lyse possible inadvertent contributions to tension/conflict. This analysis shall include: Having a sound understanding of the social tensions that already exist; Assessing how the DDR process and the food assistance component may inter- act with those tensions; Adapting the DDR process and the food assistance component to avoid con- tributing to tension/conflict, and to support sustainable peace where possible. DDR processes with a food assistance component shall also leverage opportuni- ties to \u2018do more good\u2019 and contribute to social cohesion and peacebuilding as well as to gender equality and women\u2019s empowerment.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b4460245-44ff-4eaa-a8b9-a896b4696ea1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 12, + "Paragraph": "Context specific The food assistance component of a DDR process, and the modality through which food assistance is provided, will be highly context-specific. The appropriate local, country and/or regional approach to assistance shall be adopted and be based on good-quality data and analysis of the social, political and economic context, taking into account gender and age inequalities.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "6e99dac3-6dd9-46ee-8e7a-f6931e6728cb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 12, + "Paragraph": "4.6.1. Flexible, sustainable and transparent funding arrangements If the food assistance component of a DDR process is to be effective, sufficient human, financial and logistics resources are required. In a mission context, contributions from the UN peacekeeping assessed budget, supplemented by voluntary donations, must be available. Security provisions and the presence of adequate numbers of peacekeepers are also required. The lead food assistance agency shall support the UN mission ad- ministration in defining scenarios and predicting operational costs. In a non-mission context, voluntary donations are required.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "ef40897b-ebba-44c1-b313-3cbaf35c2cf8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 12, + "Paragraph": "4.6.2 Accountability and transparency Accountability to affected populations is essential to ensure that the design, imple- mentation, and monitoring and evaluation of the food assistance component of a DDR process is informed by and reflects the views of affected people. As part of accounta- bility to affected populations, information about food assistance shall be provided to affected populations in an accurate, timely and accessible way. The information pro- vided shall be clearly understandable to all, irrespective of age, gender, ability, literacy level or other characteristics. In addition, the views of the affected population shall be sought throughout each stage of the food assistance component of a DDR process. This requires separate consultations with women, men, youth and elders to ensure that their views and concerns are heard and accounted for. In particular, separate consul- tations with men and women shall be required in order to provide opportunities for confidential feedback and to report protection or sexual exploitation and abuse (SEA) issues related to food assistance (see Box 1).2", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e29c07c9-49b1-414b-a4aa-829f3f2cb185", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 14, + "Paragraph": "Nationally and locally owned The food assistance component of a DDR process shall be linked to the broader recovery strategy of the country concerned. This linkage shall be included in the earliest stag- es of inter-agency DDR planning and negotiations, so that eligibility criteria and the necessary processes for receiving assistance are clearly communicated to all concerned. It is also essential to work with humanitarian coordinating structures, including the UN Humanitarian Coordinator (UN HC).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "cffb9396-cec8-4a50-9a9a-ce95d1f23000", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 14, + "Paragraph": "Integrated Food assistance to DDR processes shall be provided in close consultation with all rele- vant UN components (peacekeeping, humanitarian and development), as well as with the Government, affected populations, donors and cooperating partner organizations, including representatives of women\u2019s organizations and organizations working for gender equality. Food assistance shall not be provided as part of DDR processes if there is no clear, established institutional and operational framework. Effective mechanisms for sharing information, and where appropriate joint planning and preparation, shall be estab- lished between the leading food agency, its cooperating partners and other UN agencies, as well as peacekeeping actors and donors. This will further help uphold and respect humanitarian principles.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "34bd7899-94a0-4a41-b006-c0856abce95c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 14, + "Paragraph": "Assessment, design, monitoring and evaluation The lead food assistance agency shall participate in all negotiation and planning pro- cesses that may have a direct or indirect effect on the design and implementation of the food assistance component of a DDR process. All cooperating and implementing partners in the food assistance component shall be consulted during the planning process in order to establish the appropriate and necessary measures for exchanging information and coordinating activities. Assessments shall involve and inform local communities and, where possible, consultation on the design of a food assistance component shall include these communities and a feedback mechanism to support continual refinement.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7434838e-d68b-44b1-ad91-cf129a0674ac", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 14, + "Paragraph": "Public information and community sensitization Community members may sometimes believe that more attractive food assistance (such as rice) is being provided to ex-combatants and persons formerly associated with armed forces and groups than the support being provided to broader communities (for example, bulgur). This can cause resentment in these communities and potentially fuel conflict. There is also the danger that humanitarian food assistance agencies will no longer be seen as neutral. For these reasons, every effort shall be made to manage public information and community perceptions when sensitizing communities where ex-combatants and persons formerly associated with armed forces and groups will return (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "cae4cbff-461f-4a9e-90f0-e754b3c2ac04", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 15, + "Paragraph": "Transition and exit strategies The food assistance component of a DDR process may initially focus on ex-combatants and persons formerly associated with armed forces and groups. In order to encourage self-reliance and minimize resentment from others in the community who do not have access to similar support, over time, and where appropriate, this focus shall be phased out. Any continuing efforts to address the vulnerabilities of reintegrating former combat- ants, their dependants, and persons formerly associated with armed forces and groups shall take place through other programmes of assistance dealing with the needs of the broader conflict-affected population, recognizing that the effectiveness of these pro- grammes is often related to available resources. The aim shall always be to encour- age the re-establishment of self-reliance from the earliest possible moment, therefore minimizing the possible negative effects of distributing food assistance over a long period of time.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "51bd6a32-c965-4001-8db2-ce02b70c34c8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 15, + "Paragraph": "Planning for food assistance in DDR processes Planning for food assistance as part of a DDR process often begins when food assis- tance agencies receive a request from a national Government, a peace operation or a UN RC. This request signals the need for the lead food agency to begin inter-agency coordination, in order to ensure that the operational requirements of a food assistance component are fully incorporated into an integrated DDR process framework.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "86f43a2e-c851-4f43-88cc-7f799a82d0e5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 15, + "Paragraph": "Food assistance planning data Food assistance may be provided as part of a DDR process only when the overall analy- sis shows that it is a needed, appropriate form of assistance as part of a broader package of DDR support. When developing the initial plans for a short-term food assistance component, the lead food agency shall gather information about the numbers and categories of recipients, the modality to be used to provide assistance, logistics and distribution/ disbursement plans. Depending on the timeline of the response, security concerns, and difficulties in terms of access, food assistance agencies may have to rely on secondary data provided by Governments and/or the UN mission and the UN peacekeeping DDR component. Nevertheless, sex and age disaggregated data should be sought to ensure that the food assistance component responds to the specific needs of the targeted pop- ulation. Longer-term food assistance interventions, such as those supporting reintegration, should ideally be based on more accurate food security and vulnerability data and analysis. This is to ensure that the food assistance component is designed according to a comprehensive understanding of food security and nutrition issues in a particular context. The analysis should include a detailed protection, gender and age analysis of the context and populations where the operation will take place. Generally, data col- lected through assessments carried out by humanitarian agencies to inform other food assistance programmes for the conflict-affected population should be used as the basis for planning reintegration support. In all planning for food assistance, vulnerability and feasibility assessments should be carried out, if possible, at the regional, commu- nity and/or household levels to gather data on areas that are particularly vulnerable, as well as communities, households and specific groups (such as single parents with small children, older people) or individuals (women versus men) experiencing food insecurity. To the extent possible, the analysis should also consider individual food security and nutrition needs, as well as the use of food and livelihood coping strategies within households, taking into account intra-household inequalities in access to and the utilization of food. The tools available for assessment and analysis include: Crop and food security assessment mission; Emergency food security assessments; Mobile vulnerability analysis and mapping remote surveys; Essential needs assessments; Integrated food security phase classification exercises including acute malnutrition; Food security monitoring systems; Transfer modality selection guidance; Standardized Monitoring and Assessment of Relief and Transition (SMART) nutrition surveys or joint food security and nutrition assessments; Other types of rapid assessments to identify vulnerable communities and to better understand local food management practices. Rapid assessments use a variety of quick and inexpensive survey techniques. They tend to be qualitative rather than quantitative, and they depend more on the ability and judgement of the person carrying out the survey than do other research methods that are more rigorous, but also slower and costlier. These assessment methods provide the basis for identifying the demographic and socioeconomic characteristics and the needs of communities, households and in- dividuals in specific locations, and provide detailed information on food availability, food markets, economic and physical ac- cess to food, food consumption and utili- zation, food and livelihood-based coping strategies, exposure to shocks, and other root causes of food insecurity, including inse- curity or gender inequalities. When possible, such assessments should be carried out through a participatory, gender-sensitive approach to ensure that the needs, interests and capacities of all community members (women, men, old, young) are identified. Community-based organizations such as women\u2019s organizations and village relief committees, including local leaders, can help to identify the people or households most in need of assistance and the local root causes of food insecurity. Engaging lo- cal organizations in surveys and assessments as key informants can contribute to the engagement of all members of the community in ensuring that food assistance is effective and that it benefits all those in need equally and does not create protection risks.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e1714971-d723-4910-946c-57baa2ca7635", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 17, + "Paragraph": "5.1.1 Data needed for planning Early in the integrated planning process, food assistance agencies should provide details of the data that they require to the lead coordinating actors in the DDR process so that information can be collected in the early phases of preparing for the food assis- tance component. The transfer modality that is chosen to provide food assistance will have implications for the types of data required, and this should be taken into account. Agencies should also be careful to ask for data about less visible groups (e.g., abducted girls, breastfeeding mothers) so that these groups can be included in the estimates. It should be noted, however, that acquiring certain data (e.g., accurate numbers and descriptions of members of armed forces and groups) is not always possible, because of the tendency of parties to hide children, ignore (leave out) women who were not in combat positions, and increase or reduce figures for political, financial or strategic rea- sons. Therefore, plans will often be made according to a best estimate that can only be verified when the food assistance component is in progress. For this reason, DDR prac- titioners and food assistance staff should be prepared for unexpected or unplanned events/circumstances. The following data are essential for food assistance planning as part of a DDR process, and shall be provided to, or collected by, the lead agency at the earliest possible stages of planning, ensuring that data protection standards are respected: Numbers of ex-combatants and persons formerly associated with armed forces and groups (disaggregated by sex and age, and with specific assessments of the numbers and characteristics of vulnerable groups); Numbers of dependants (partners, children, relatives, disaggregated by sex and age) and their expenditure on food and food intake; Profiles of participants and beneficiaries (i.e., who they are, what their special needs are); Basic nutritional data, by sex and age; Logistics corridors/supply routes; Roads and infrastructure information; Information on market capacity and functionality; Information on financial service provider networks; Basic information on beneficiary expenditure/consumption behaviour; Information regarding demining; Other security-related information. Qualitative data, that will be especially useful in planning reintegration assis- tance, should also be collected, including through ad hoc surveys carried out among ex-combatants, persons formerly associated with armed forces and groups, and dependants on the initiative of the UN humanitarian coordinating body and partner UN agencies. This process should be carried out in consultation with the national Government and third parties. These surveys identify the main features of the social profile of the intended participants and beneficiaries and provide useful information about the different needs, interests and capacities of the women, men and children of various ages that will be eligible for assistance. Preliminary data gathered through surveys can be checked and verified at a later stage, for e.g., during an identification and registration process. Data on food habits and preliminary information on nutritional requirements may also be collected by food agencies through ad hoc surveys before, or immediately following, the start of the DDR process (also see IDDRS 3.10 on Integrated DDR Plan- ning: Processes and Structures).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "7513b936-7cb5-4fed-957f-e2d21e77f136", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 18, + "Paragraph": "The food assistance plan The following parts of the food assistance component should be finalized in a food assistance plan and made part of the inter-agency approach to the DDR process: Context/conflict analysis, including protection and gender analysis; Agreement on ration/food basket/transfer value for assembly and reinsertion periods, taking into account the diverse needs of recipients; Agreement on the most appropriate modality (i.e., in-kind food, cash, or voucher/ e-voucher); The identification of programme resources; The establishment of viable distribution/disbursement/voucher redemption mechanisms, taking into consideration gender and protection issues; Putting plans and resources in place for special feeding programmes (e.g., school/ interim care centre feeding, take home rations, malnutrition and prevention treat- ment programmes; integrating nutrition awareness education); Preparations for special project activities (e.g., FFA, FFT, etc.); The development of a logistics plan; The establishment of monitoring and reporting systems; The development of contingency plans; The establishment of security measures. Having one lead food assistance agency as part of the DDR process will permit a more cost-effective operation and minimize coordination problems. In some cases, to improve the quality and variety of the food that is provided, extra supplies may be contributed by donors and other agencies. These actors can also provide non-food items required for the preparation and distribution of food (e.g., cooking pots, charcoal, paper plates, condiments, etc.). Experience has shown that the sharing of responsibilities between humanitarian and Government actors in the provision of food assistance must be done with caution. In countries emerging from conflict situations, Governments may have limited capac- ity and/or resources to ensure timely and regular food assistance supplies. In such situations, upon a request from a national Government, a peace operation or a UN RC, humanitarian actors may step in appealing for donor funds to cover gaps in the provision of food assistance.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "6098f7ff-3d88-4fdb-b0d2-101feb5095f5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 18, + "Paragraph": "Participatory planning As with all parts of an integrated DDR process, the planning process for a food assistance component should involve, as far as possible, the participation of leaders of stakeholder groups (local Government; leaders of armed forces and groups; and repre- sentatives of civil society, communities, women\u2019s groups and vulnerable groups). This participatory approach enables a better understanding of the sociopolitical, gender and economic contexts in which the food assistance component of a DDR process will operate. It also allows for the identification of any possible protection risks to individuals or communities, and the risks of becoming caught up in conflict. Finally, a participatory approach can increase trust and social cohesion among groups and create consensus and raise awareness of the benefits offered and the procedures for receiving benefits. Representatives of communities, women\u2019s leaders and women\u2019s organizations, associa- tions or informal groups should be meaningfully and equitably consulted. Although the extent to which any group participates should be decided on a case- by-case basis, even limited consultations, as long as they involve a variety of stake- holders, can improve the security of the food assistance component of a DDR process and increase the appropriateness of the assistance, distribution and monitoring. Such participation builds confidence among ex-combatant groups, improves the ability to meet the needs of vulnerable groups and helps strengthen links with the receiving community. Participants in the planning process should be specified in advance, as well as how these groups/individuals will work together and what factors will aid or hinder the process. Food/cash/voucher distribution arrangements shall also be designed in consultation with women to avoid putting them at risk. In cases where rations are to be collected from distribution points, a participatory assessment shall take place to identify the best place, date and time for distribution in order to allow women and girls to collect the rations themselves and to avoid difficult and unsafe travel, for example in the dark. It shall also be determined whether special packaging is needed to make the collection and carrying of food rations by women easier.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5f3386af-834c-4da4-ab6e-19e0ff10c9a7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 19, + "Paragraph": "Resources and funding Once food assistance requirements have been identified, the lead food agency should take part in the drawing up of budget proposals. The food assistance component of a DDR process is often funded as part of the wider strategy of assistance and recovery, although the costs of a DDR food assistance component will depend largely on the resources and organizational capacity already in place in a given context. In both mission and non-mission contexts, food assistance in support of a DDR process shall not be implemented in the absence of adequate resources and capacity, including human, financial and logistic resources from donor contributions and/or the UN peacekeeping assessed budget. In mission contexts, the UN peacekeeping assessed budget should be available to support food assistance costs and should be designed to take into account unexpected adjustments to the length of the food assistance component, delays, and other changes that require sufficient and flexible funding. Owing to the potential for unexpected changes, maintaining a well-resourced pipeline is essential. DDR processes are often time-sensitive and volatile, and food/ CBTs shall be available for pre-positioning, distribution and/or timely disbursement to avoid the risks caused by delays. The pipeline shall have enough resources not only to meet the needs of the present situation, but also to meet the needs of other possible circumstances outlined in contingency plans.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9067795d-f9ab-462a-81e3-10febf28d5a4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 20, + "Paragraph": "Transfer modality selection Some transfer modalities will more effectively contribute to food assistance objectives than others, depending on the specific circumstances of each intervention. CBTs pro- vide people with money while in-kind food transfers include the distribution of com- modities. Vouchers \u2013 also known as gift cards or stamps - can be used in predetermined locations, including selected shops. Vouchers can be value-based i.e., provide access to commodities for a given monetary amount. They may also be commodity-based i.e., tied to a predefined quantity of given foods. In some situations, combinations of trans- fer modalities may also prove most effective. For example, half of the transfer could be delivered in cash and the other half in-kind. Another alternative is the distribution of cash and food transfers by season, with food provided in the lean season and cash immediately after the harvest. Before deciding on the transfer modality for the food assistance component of a DDR process, an analysis shall be conducted to determine the appropriate transfer mo- dality in a given context, and how this food component complements other transitional DDR support. At a minimum, the analysis should take into account factors linked to context, feasibility, market functioning, targeting, conditionality, women\u2019s preferences, duration, effectiveness towards objectives and cost-efficiency, as well as \u2018safety and dignity\u2019 (see Figure 1). This can be done for the food assistance component alone or for a multipurpose transfer to meet the essential needs of the targeted population. Particu- lar care shall be taken to select an appropriate transfer modality when food assistance is provided during ongoing conflict. This is because armed groups can attempt to steal cash and food during the time that this assistance is being transported or stored.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c70cd20d-b635-4809-bb8e-2df73cd7c868", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 20, + "Paragraph": "Logistics strategy The primary logistical goal of the food assistance component of a DDR process is to deliver food supplies to the right place, at the right time and cost, in good condition and with no loss. The main elements of a logistics strategy should include: Port(s) of entry \u2013 identifying the most appropriate unloading port with the best location, capacity and costs; Identifying the location for/of the warehouses in transit and recipient countries; Identifying logistics corridors/routes and means of transport. The logistics strategy should plan for the following: Organizing transport; Setting up and managing warehouses; Identifying additional needs; Special operations; Recommended logistic arrangements; Cost analysis. The logistics strategy should be based on the logistics capacity assessment, which gives a detailed overview of the logistics infrastructure in the relevant country. Once the agen- cies and partners in the DDR process have been identified, an assessment of their logistics capacity is prepared through consultations, in order to develop the logistics strategy. Agreements signed by all the organizations and agencies concerned provide the basis for logistics planning. All partners shall formally define their logistics roles and responsibilities, including the reporting and financial obligations of each. Every agreement must deal with logistics issues and clearly define the logistics responsibilities of all participating partners. The assessments of partners\u2019 capacities and structures carried out during the preparation phase shall provide the basis for agreements and eventually be reflected in them.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "503a5329-3760-453f-ad16-b61ab49128a0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 21, + "Paragraph": "Selecting commodities for in-kind rations A cereal that is familiar to recipients, pulses and oil are the basic foods included in most rations. Other items are included to provide extra nutrients if people have no access to fresh foods. When selecting the types of food that will be supplied, the following issues should be considered:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f48fcea7-a40b-44ae-b644-6c54136a8f35", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 21, + "Paragraph": "Nutritional and dietary requirements The mix of food must provide the nutrients required to supply recipients with adequate energy, protein, fat and micronutrients, taking into account what they can acquire from other sources. For in-kind transfers, foods that are rich in energy, protein or micronutrients, in- cluding fortified complementary foods, are preferred. In emergencies, fortified flours and oil, bio-fortified staple foods and iodized salt may be good options to optimize the nutritional quality of the food basket. When CBTs or commodity vouchers are provided, food baskets that address the nutrient needs of the targeted households must be closely examined as part of prepared- ness and planning. Pre-calculated transfer values can factor in the prices of nutrient- dense foods that are available in local markets, including those mentioned above as well as animal-source foods, fruits and vegetables, taking into account any impacts that emergency or crisis situations may have on availability and affordability of food and especially for nutritionally vulnerable groups. A key opportunity to enhance the nutrition-sensitivity of food transfers is to improve their nutritional quality and to ensure adequate size and timing of the transfers. Particular consideration shall also be given to those with specific nutrient require- ments, including women of childbearing age; pregnant and breastfeeding women and girls; children 6\u201323 months old; preschool children (2\u20135 years); school-age children (6\u2013 10 years); adolescents (10\u201319 years), especially girls; and older people. Other important vulnerable groups shall be considered according to the context and type of intervention, such as persons with disabilities and persons with chronic illnesses. In addition, for young children, provision of food supplements should always be accompanied by dedicated counselling on feeding and other infant and young child feeding practices like breastfeeding, consumption of family/local foods, hygiene and responsive feeding and care.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "8b74b99b-ae6b-49f7-af05-98f431d090c2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Local food habits Foods shall be familiar to those who receive them, be compatible with their traditional dietary habits and respectful of any religious taboos. Consultation with those who are to receive food assistance, including women, shall be undertaken prior to determining the composition of the food basket.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "99a58bc3-5a59-4b48-a651-c775926dfb50", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Children and older people Families must be able to prepare easily digestible energy-dense foods for young children. Easily chewed and digestible foods are also needed for older people.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "b333056b-d8d7-4547-8020-ec42a422b040", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Ease of transport, storage and use Foods shall be reasonably easy to transport, capable of being stored in the average household, and simple to prepare using little fuel. This last criterion takes into con- sideration that women and girls are usually overburdened with preparing food and collecting firewood, which sometimes creates new protection risks, and that domestic pollution is a major health concern. In addition, this criterion further protects people living with disabilities. Foods must be adapted to available cooking facilities, water and cooking fuel. The provision, promotion and use of fuel-efficient stoves is recom- mended, wherever possible.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "d3cd1ea3-9693-4ac5-b4ff-6587cafc71f1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Cost-effectiveness, attractiveness and local value Cost must be taken into account for each of the various items that could be provided: In relation to the nutrient value the food supplies to those who will receive it; In relation to local (resale) value, as recipients may trade limited quantities of some items to obtain other essential items, e.g., fruits and vegetables from the local market; With regard to whether some items are more likely to be misappropriated than others, as items that do not reach the groups they are intended for, or that are stolen from them, are of no benefit.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "de7a8f7e-b542-4f64-91ea-725595237f45", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Availability of local commodities Commodities should be purchased locally wherever possible, to support local market recovery and employment opportunities. The quality and shelf-life of the food available should also be considered. It is important to determine whether whole grains or milled cereals should be provided and whether fortified blended foods might be produced locally rather than imported.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "71923c55-d98c-4080-b56a-636c33c34e50", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 23, + "Paragraph": "Cash-based transfers CBTs can be paid in cash, in the form of value vouchers, or by bank or digital-money transfers (for example, through mobile phones). They can be one-off or paid in instal- ments and used instead of or alongside in-kind food assistance. There are many different benefits associated with the provision of food assistance in the form of cash. For example, not only can the recipients of cash determine and meet their individual consumption and nutritional needs more efficiently, the ability to do so is a fundamental step towards empowerment, as it helps restore a sense of normalcy and dignity in the lives of recipients. Cash can also be an efficient way to deliver support because it entails lower transaction and logistical costs than in-kind food assistance, particularly in terms of transportation and storage. The provision of cash may also have beneficial knock-on effects for local markets and trade. It also helps to avoid a scenario in which the recipients of in-kind food assistance simply resell the commodities they receive at a loss in value. Cash will be of little utility in places where the food items that people require are unavailable on the local market. However, the oft-cited concern that cash is often mis- used, and used to purchase alcohol and drugs, is, in the most part, not borne out by the evidence. Any potential misuse can also be reduced through decisions related to targeting and conditionality. For example, household control over the way that cash is spent can be supported by providing cash to the families of ex-combatants, rather than ex-combatants alone. Ex-combatants and their wives/husbands can also be asked to sign a contract that leads to the release of cash. This contract could outline how the money is supposed to be spent, and would require follow-up to check that the goods purchased comply with the terms of this contract. Basic literacy and financial education can also help to reduce the risk that cash is misused, and basic nutrition education can help to ensure that families are aware of the importance of feeding nutritious foods, especially to young children who rely on caregivers to be fed. Providing cash is sometimes seen as generating security risks both for the staff that transport large amounts of money and for recipients. This is because cash is prone to diversion, capture by elites and seizure by armed groups, particularly in settings where corruption is high and armed conflict is ongoing. This is particularly true for cash payments that are distributed at regular times at publicly known locations. Digital payments, such as over-the-counter and mobile money payments, may help to circum- vent this problem by offering new and discrete opportunities to distribute CBTs. For example, recipients may cash out small amounts of their payment as and when it is needed to buy food, directly transfer money to a bank account, or store money on their mobile wallet over the long-term. Preliminary evidence indicates that distributing cash for food through mobile money transfers has a positive impact on dietary diversity, in part because recipients spend less time traveling to and waiting for their transfer. In order to benefit from mobile money transfers, recipients need to be in the possession of a mobile phone, or at a minimum, a SIM card that can be used in a mobile phone that is shared with others. The recipient will also need to reside in an area (or close to an area) where there is mobile network coverage and where there are accessible cash-out points or agents. It is also necessary to ensure that agents have sufficient cash on hand in order to make the payment. The agents will need to be monitored in order to ensure that they adhere to previously agreed upon standards. It is also important to ensure that recipients are not subjected to coercion or undue pressure by the agent to use their cash to buy other goods in the agent\u2019s store. Adequate sensitization campaigns targeting both recipients and agents should be an integral part of the programme design. Finally, new users of digital payments may need to be educated in how to use them and should, where pos- sible, be provided with accompanying literacy training and financial education. Irrespective of the type of CBT selected, the delivery mechanism (cash, vouchers, mobile money transfer) should take into account potential protection issues and gender- specific barriers. It is important that the delivery mechanism chosen permits women to access their entitlement safely and confidently, without being exposed to the risks of private service providers abusing their power over recipients and encountering dif- ficulties in the redemption of their entitlement because of numerical or financial illit- eracy. A help desk and complaint mechanism should also be set-up, and these should include specific referral pathways for women. When food assistance is provided through CBTs, humanitarian agencies often work closely with service providers from the private sector (financial service providers, traders, etc.). Where this is the case, all necessary service procurement procedures shall be followed to ensure timely set-up of the operation. Clear Standard Operating Procedures (SOPs) shall be put in place to en- sure that all stakeholders have the same understanding of their roles and responsibilities.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dee5755f-df35-446e-a54c-b7c9e2de4dae", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 24, + "Paragraph": "5.7.1 Calculating the transfer value for CBTs The transfer value for a CBT to cover basic food needs should take into consideration the preferences of recipients, consumption patterns and the availability of food items in the local market. The transfer value should be sufficient to cover the consumption gap of the target group to consume a nutritionally balanced diet covering essential macro- and micronutrients. The transfer value can be obtained by multiplying the cost of a nutritionally balanced basket informed by consumption patterns and preferences by average food prices of the most commonly consumed items in the local market. Cash transfers in the form of value vouchers should be sufficient to cover the con- sumption gap of the target group to consume a nutritionally balanced diet covering essential macro- and micronutrients. The value can be calculated by multiplying the cost of a nutritionally balanced basket informed by consumption patterns and prefer- ences by prices negotiated with contracted retailers.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6b25dd50-2d1f-4976-b191-b52b07d60dac", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 24, + "Paragraph": "Equity with other assistance programmes Food assistance provided to DDR participants and beneficiaries should be balanced against assistance provided to other returnees or conflict-affected populations as part of the wider recovery programme to avoid treating some conflict-affected groups unfairly. The provision of special entitlements to DDR participants should always be seen in the context of the needs and resources of the broader population. If communities perceive that preferential treatment is being given to ex-combat- ants and persons formerly associated with armed forces and groups, this can cause resentment, and there is the danger that humanitarian food assistance agencies will no longer be perceived as neutral. Every effort to achieve an equal standard of living for ex-combatants, persons formerly associated with armed forces and groups, dependants and other members of the community should be made in order to minimize the risk that benefits given through DDR could fuel tensions among these groups.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "97012c4b-c579-49cf-8291-7b05780fa3b3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 6, + "Paragraph": "Food assistance as part of a DDR process Food assistance can be provided at different points throughout a DDR process, including as part of DDR programmes, DDR-related tools and reintegration support. Food assistance during DDR programmes", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7602bbb4-9aa0-43c9-b6e9-d713c691bc80", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 25, + "Paragraph": "Disarmament and Demobilization When DDR participants are grouped at specific locations, such as disarmament and/ or cantonment sites, in-kind food assistance is distributed in a way that is similar to a typi- cal encampment relief situation. In this context, demobilizing combatants and persons associated with armed forces and groups have limited buying power and their access to alternative sources of income and food security is restricted. In addition, their health may be poor after the prolonged isolation they have experienced and the poor food they may have eaten during war- time (see IDDRS 5.70 on Health and DDR). Ex-combatants and persons formerly associ- ated with armed forces and groups may see the regular provision of food assistance as proof of the commitment by the Government and the international community to support the transition to peace. Insufficient, irregular or substandard food assistance can become a source of friction and protest. Every reasonable measure should be taken to ensure that, at the very minimum, standard rations or transfers are distributed when DDR participants are grouped together at disarmament and/or cantonment sites. If ex-combatants and persons formerly associated with armed forces and groups are present at disarmament and/or cantonment sites, the type of food supplied should normally be more varied than in standard food assistance emergency operations. Table 2 provides an example of a recommended food basket. Recommended ration per person per day: 560 grams (g), 2,132 kilocalories (Kcal), 12.9% Kcal from protein and 20.2% from fat. Inclusion of fortified blended flour such as Super Cereal is essential to cover basic micronutrients and protein needs. Up to 20g of sugar can be added to meet local pref- erences. Fresh vegetables and fruit or other foods to increase the nutritional value of the food basket should be supplied when alternative sources can be found and if they can be stored and distributed. Standard emergency food baskets can be supplied to family dependants if they are included as beneficiaries of the DDR programme. In this context, food assistance for dependants may often be implemented in one of two possible ways. The first involves dependants being cantoned in a separate, nearby camp while combatants are disarmed and demobilized. The second involves dependants being taken or directed to their communities. These two approaches would require different methods for distributing food assistance. Although food assistance should not encourage ex-combatants, per- sons formerly associated with armed forces and groups and/or dependants to stay for long periods at cantonment sites, prepared foods may be served when doing so is more appropriate than creating cooking spaces and/or providing equipment for participants to prepare their own food. DDR practitioners and food assistance staff shall be aware of problems concerning protection and human rights that are especially relevant to women and girls at disar- mament and demobilization sites. Codes of conduct and appropriate reporting and referral mechanisms shall be established in advance among UN agencies and human rights and child protection actors to deal with gender-based violence, sexual exploitation and abuse, and human rights abuses. There shall also be strict procedures in place to protect women and girls from sexual exploitation by those who control access to food assistance. Staff and the recipients of food assistance alike shall be aware of the proper channels available to them for reporting cases of abuse or attempted abuse linked to food distribution. Women, men, girls and boys shall be consulted from the outset in order to identify protection issues that need to be taken into account.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a0c0b544-4cca-4f24-9b4a-d5f5a330645e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 6, + "Paragraph": "Reinsertion If a DDR programme is underway, food assistance can be part of a broader reinsertion package made available by Governments and the international community (see IDDRS 4.20 on Demobilization). Food assistance can form part of a transitional safety net and support the establishment of medium-term household food security. In this scenario, food assistance can be provided as a take-home package (for those leaving cantonment sites) and/or can be provided in the community. In communities that have access to functional markets, and where there is a reliable financial network, CBTs are likely to be a useful option during the reinsertion phase, as these transfers provide recipients with the flexibility to redeem the entitlement in the location and moment they prefer, according to their needs. When CBTs are dispensed through financial service providers who offer additional financial services, linking the food assistance to a financial inclusion objective can help to facilitate reinsertion. Where CBTs are not possible for contextual or infrastructural reasons, in-kind assistance can be considered for take-home rations. A general guideline is that food assistance in the reinsertion phase of a DDR pro- gramme should not be provided for longer than a year; however, benefits should also be appropriate to the particular context. The following factors should be taken into account when deciding on the length of time the transfer should cover: Whether ex-combatants and persons formerly associated with armed forces and groups will be transported by vehicle to the relevant communities or whether they will have to carry the ration (if in-kind) (the latter may require protection mecha- nisms for women or other vulnerable groups); The level of assistance when they reach the community; The resources available to the food component of the DDR programme; The timing and expected yields/production of the next harvest; The prospects for the re-establishment of employment and other income-generating activities, or the creation of new opportunities; The overall food policy for the area, taking into account the total economic, social and ecological situation and related recovery and development activities. The aim shall always be to encourage the re-establishment of self-reliance from the earliest possible moment, therefore minimizing the possible negative effects of dis- tributing food assistance over a long period of time. Food assistance and reintegration support Reintegration support can be provided as part of a DDR programme, or when the pre- conditions for a DDR programme are not in place. In both instances, the role of food assistance will depend on the type of reintegration support provided and whether any form of targeting is applied (see IDDRS 4.30 on Reintegration). DDR participants and beneficiaries will often eventually be included in a community-based approach and access food in the same way as members of these communities, rather than receive special entitlements. Ultimately, they should be seen as part of the community and, if in need of assistance, take part in programmes covering broader recovery efforts. In broader operations in post-conflict environments during the recovery phase, where there are pockets of relative security and political stability and greater access to groups in need, general free food distribution is gradually replaced by help directed at particular groups, to develop the ability of affected populations to meet their own food needs and work towards long-term food security. Activities should be closely linked to efforts to restart positive coping mechanisms and methods of households supplying their own food by growing it themselves or earning the money to buy it. The following food assistance activities could be implemented when support to reintegration is provided as part of a DDR process within or outside a DDR programme: Supporting communities through FFA activities that directly benefit the selected populations; Providing support, in particular nutrition interventions, directed at specific vulner- able groups; Providing support to restore production capacity and increase food production by households; Providing support (training, equipment, seeds and agricultural inputs) to selected populations or the wider community to restart agricultural production, enhance post-harvest management, identify market access options, and organise farmers to work and sell collectively; Providing support for local markets through CBTs, buying supplies for DDR processes locally, encouraging private-sector involvement in food transport and delivery, and supporting social market outlets and community-based activities such as small enterprises for both women and men, and linking CBT programmes to a financial inclusion objective; Encouraging participation in education and skills training (school feeding with nutrition education, FFT, education, adult literacy); Maintaining the capacity to respond to emergencies and setbacks; Expanding emergency rehabilitation projects (i.e., projects which rehabilitate local infrastructure) and reintegration projects; Running household food security projects (urban/rural). The link between learning and nutrition is well established, and inter-agency col- laboration should ensure that all those who enter training and education programmes in the reintegration period are properly nourished. Different nutritional needs for girls and boys and women and men should be taken into account. Food Assistance and DDR-Related Tools", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b2a245a9-5471-4ebb-976e-f48f796c132b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 28, + "Paragraph": "Community Violence Reduction Community violence reduction as part of a DDR process seeks to build social cohesion and provide ex-combatants and other at-risk individuals, particularly youth, with alternatives to (re-)joining armed groups. As outlined in IDDRS 2.30 on Community Violence Reduction, one way to achieve this may be to involve various groups in the design, implementation and evaluation of an FFA or FFT programme. During these programmes, interaction and dialogue among these groups can build social cohesion and reduce the risk of violence. Food assistance as part of CVR shall be based on food assistance analysis (see section 5) in addition to the assessments that are regularly con- ducted as part of planning for CVR. These include, among others, a context/conflict analysis, a security and consequence assessment, and a comprehensive and gender- responsive baseline assessment of local violence dynamics (see section 6.3 in IDDRS 2.30 on Community Violence Reduction and IDDRS 3.11 on Integrated Assessments).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "49d14858-01d0-4576-abad-30681dedaff6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 7, + "Paragraph": "Pre-DDR Pre-DDR is a local-level transitional stabilization measure designed for those who are eligible for a DDR programme (see IDDRS 2.10 on The UN Approach to DDR). When a DDR programme is delayed, pre-DDR can be conducted with male and female ex-com- batants who are in camps, or with ex-combatants who are already in communities. Activities may include cash for work, FFT or FFA. Wherever possible, pre-DDR activi- ties should be linked to the reintegration support that will be provided when the DDR programme is eventually implemented. Nutritionally vulnerable groups Food assistance may be provided to all five categories of people that should be taken into consideration in integrated DDR processes, depending on the context: Members of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); Abductees/victims; Dependants/families; Civilian returnees/\u2019self-demobilized\u2019; Community members. Within these five categories, consideration should be given to addressing the spe- cific needs of nutritionally vulnerable groups. These groups have specific nutrient re- quirements and include: Women of childbearing age; Pregnant and breastfeeding women and girls; Children 6\u201323 months old; Preschool children (2\u20135 years); School-age children (6\u201310 years); Adolescents (10\u201319 years), especially girls; Older people; Persons with disabilities; and Persons with chronic illnesses including people leaving with HIV and TB. Analysis of the particular nutritional needs of vulnerable groups is a prerequisite of programming for the food assistance component of a DDR process. The Fill the Nu- trient Gap tool in countries where this analysis has been completed is an invaluable resource to understand the key barriers to adequate nutrient intake in a specific context for different target groups.3 A key opportunity to make food assistance components of DDR processes more nutrition sensitive is to deliver them within a multi-sectoral package of interventions that aim to improve food security, nutrition, health, and water, sanitation and hygiene (WASH). Social and behaviour change communication (SBCC) is likely to enhance the nutritional impact of the transfer. Gender equality and ensuring a gender lens in anal- ysis and design also make nutrition programmes more effective. As far as possible, the food assistance component of a DDR process should try to ensure that the nutritionally vulnerable receive assistance that meets their energy and nutrient intake needs. Although not all women are nutritionally vulnerable, the nutrition of women who are single heads of households or sole caregivers of children often suffers when there is a scarcity of food. Special attention should therefore be paid to food assistance for households where women are the only adult (see IDDRS 5.10 on Women, Gender and DDR). Referral mechanisms and procedures should also be established to ensure that vulnerable individuals in need of specialized services \u2013 for example, those related to health \u2013 have timely and confidential access to these services (see IDDRS 5.70 on Health and DDR). Monitoring and evaluation Mechanisms for monitoring and evaluating (M&E) interventions are essential when food assistance is provided as part of a DDR process, to ensure accountability to all stakeholders and in particular to the affected population. The food assistance component shall be monitored and evaluated as part of a broader M&E plan for the DDR process. In general, arrangements for monitoring the distribution of assistance provided during DDR should be made in advance between all the implementing partners, using existing tools for monitoring and applying inter- national best practices. In terms of food distribution, at a minimum, information shall be gathered on: The receipt and delivery of commodities; The number (disaggregated by sex and age) of people receiving assistance; Food storage, handling and the distribution of commodities; Food assistance availability and unmet needs. There are two main types of monitoring through which this information can be gathered: Distribution: This type of monitoring, which is conducted on the day of distribu- tion, includes several activities, including commodity monitoring, on-site moni- toring and food basket monitoring. Post-distribution: This monitoring takes place sometime after the distribution but before the next one. It includes monitoring of the way in which food assistance is used in households and communities, and market surveys. In order to increase the effectiveness of the current and future food assistance component, it is particularly important for data on DDR participants and beneficiaries to be collected so that it can be easily disaggregated. Numerical data should be systemati- cally collected for the following categories: ex-combatants, persons formerly associated with armed forces and groups, and dependants (partners and relatives of ex-combat- ants). Every effort should be made to disaggregate the data by: Sex and age; Vulnerable group category (CAAFAG, people living with HIV/ AIDS, persons with disabilities, etc.); DDR location(s); Armed force/group affiliation. Also, identifying lessons learned and conducting evaluations of the impacts of food assistance helps to improve the approach to delivering food assistance within DDR processes and the broader inter-agency approach to DDR. The UN agencies in- volved in the DDR process should ensure that a comprehensive evaluation of the food assistance provided during early stages of the DDR process (for example the disarma- ment and demobilization phases of a DDR programme) are carried out and factored into later stages (such as the reintegration phase of a DDR programme). The evaluation should provide an in-depth analysis of early food assistance activities and allow for lat- er food assistance components to be reviewed and, if necessary, redesigned/reoriented. Gender should be taken into consideration in the evaluation to assess if there were any unexpected outcomes of food assistance on women and men, and on gender relations and gender equality. Lessons learned should be recorded and shared with all relevant stakeholders to guide future policies and to improve the effectiveness of future plan- ning and support to operations.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-5.60-HIV-AIDS-and-DDR.json b/src/Static/data/json/IDDRS-5.60-HIV-AIDS-and-DDR.json new file mode 100644 index 0000000..45abc87 --- /dev/null +++ b/src/Static/data/json/IDDRS-5.60-HIV-AIDS-and-DDR.json @@ -0,0 +1,629 @@ +[ + { + "ID": "7fb9449f-97af-4d5e-b60c-cf2c22ef856e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": null, + "Paragraph": "Summary The United Nations (UN) Security Council and General Assembly have noted that a number of converging factors make conflict and post-conflict settings high risk environments for the spread of HIV, and that there is an elevated risk of infection among uniformed services and ex-combatants. This module outlines the strategies to address HIV/AIDS during disarm- ament, demobilization and reintegration (DDR) processes, in the interests of the individuals concerned, the sustainability of reintegration efforts and general post-conflict recovery. National beneficiaries should provide the lead for HIV/AIDS initiatives, and interven- tions should be as inclusive as possible, while acknowledging the limitations of DDR HIV/ AIDS programmes. A risk-mapping exercise should include the collection of baseline data on knowledge, attitudes and vulnerability, HIV/AIDS prevalence, and identify existing capacity. The basic requirements for HIV/AIDS programmes in DDR are: identification and training of HIV focal points within DDR field offices; the development of HIV/AIDS awareness material and provision of basic awareness training for target groups, with peer education programmes during the reinsertion and reintegration phases to build capacity. Awareness training can start before demobiliza- tion, depending on the nature of soldiers\u2019/ex-combatants\u2019 deployment and organizational structure; the provision of voluntary confidential counselling and testing (VCT) during demobi- lization and reintegration. An HIV test, with counselling, should be routinely offered (opt-in) as a standard part of medical screening in countries with an HIV prevalence of 5 percent or more. VCT should be provided in all settings throughout the DDR process, building on local services. Undergoing an HIV test, however, should not be a condition for participation in the DDR process, although planners should be aware of any national legislation that may exclude HIV-positive personnel from newly formed military or civil defence forces; screening and treatment for sexually transmitted infections (STIs), which should be a standard part of health checks for participants; the provision of condoms and availability of post-exposure prophylaxis (PEP) kits dur- ing demobilization, reinsertion and reintegration; treatment for opportunistic infections and, where feasible, referral for anti-retroviral (ARV) treatment within the national health care system; the implementation of HIV/AIDS public information and awareness campaigns to sensitize \u2018receiving\u2019 communities, to raise general awareness and to reduce possible stigma and discrimination against returning combatants, including women associated with armed forces and groups, which could undermine reintegration efforts. Planning in communities needs to start in advance of demobilization. In instances where the time allotted for a specific phase is very limited or has been re- duced, as when there is a shortened cantonment period, it must be understood that the HIV/ AIDS requirements envisaged are not dropped, but will be included in the next DDR phase.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "32b24aad-fad5-4aed-96dc-43072410388d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module aims to provide policy makers, operational planners and DDR officers with guidance on how to plan and implement HIV/AIDS programmes as part of a DDR frame- work. It focuses on interventions during the demobilization and reintegration phases. A basic assumption is that broader HIV/AIDS programmes at the community level fall outside the planning requirements of DDR officers. Community programmes require a multisectoral approach and should be sustainable after DDR is completed. The need to integrate HIV/ AIDS in community-based demobilization and reintegration efforts, however, can make this distinction unclear, and therefore it is vital that the national and international part- ners responsible for longer-term HIV/AIDS programmes are involved and have a lead role in DDR initiatives from the outset, and that HIV/AIDS is included in national recon- struction. DDR programmes need to integrate HIV concerns and the planning of national HIV strategies need to consider DDR. The importance of HIV/AIDS sensitization and awareness programmes for peace- keepers is acknowledged, and their potential to assist with programmes is briefly discussed. Guidance on this issue can be provided by mission-based HIV/AIDS advisers, the Depart- ment of Peacekeeping Operations and the Joint UN Programme on HIV/AIDS (UNAIDS).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8d769b72-eeb2-4600-93bc-00decdffc71d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of inte- 1.20\tgrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "0bd2d2fc-ebc1-4c77-8112-3fcbde3c5509", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 4, + "Paragraph": "Introduction AIDS is a global issue. Every region of the world is affected and all are reporting increases in HIV infection rates. There is still no cure and no vaccine. Access to ARV treatment, which mitigates the effects of the virus, is being scaled up in low- and middle-income countries; but an emphasis on preventing new infections remains paramount. HIV/AIDS challenges human rights and gender relations, aggravates socio-economic crises and undermines \u2018human security\u2019. In the most severely affected countries, AIDS threatens to deplete the supply of skilled labour, reverse economic progress and under- mine food security. It overwhelms health systems and changes the demographic profile of nations.1 In July 2000, Security Council resolution 1308 (S/RES/1308) recognized that the \u201cspread of HIV/AIDS can have a uniquely devastating impact on all sectors and levels of society\u201d. In addition, resolution 1308 recognized that the HIV/AIDS pandemic is \u201cexacerbated by conditions of violence and instability\u201d. DDR programmes often take place in areas of high HIV/AIDS prevalence or high-risk environments, and ex-combatants are considered a high-risk group. As noted by the Inter- Agency Standing Committee (IASC), the very characteristics that define a complex emer- gency, such as conflict, social instability, poverty and powerlessness, are those that favour the spread of HIV and other sexually transmitted infections (STIs). Mass displace- ments can result in the movement of people between high and low HIV/AIDS prevalence areas, especially with migration towards urban settings. The breakdown of social networks and support mechanisms place women and children at an increased risk of violence, and can force them into having sex to gain access to basic needs such as food, water and security. The risk of HIV is further increased when rape and sexual abuse are used as tools of war, as illustrated by the recent conflicts in Haiti, Liberia and Sudan. The UN General Assembly\u2019s 2001 Declaration of Commitment on HIV/AIDS, endorsed by General Assembly resolution A/RES/S-26/2, further emphasized the concern that con- flicts contribute to the spread of HIV, and recognized that \u201cpopulations destabilized by armed conflict, humanitarian emergencies and natural disasters, including refugees, inter- nally displaced persons and in particular women and children, are at increased risk of exposure to HIV infection\u201d. In some circumstances, however, conflict may actually slow the transmission of HIV in pockets of communities or specific areas, as it restricts access and trade routes, and it is the post-conflict phase including, potentially, the reintegration process, that sees an increase in HIV vulnerability.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "159a3654-bc00-4ee6-ab2a-32918674e322", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 5, + "Paragraph": "UN institutional mandates and responsibilities A number of UN resolutions and declarations highlight the obligation to include HIV/AIDS initiatives in responses to conflict and provide the legal framework for such a requirement: Security Council resolution 1308 (S/RES/1308) of 2000 and Presidential Statement (S/PRST/2005/33) of 2005; Security Council resolution 1325 (S/RES/1325) of 2000; UN General Assembly HIV/AIDS Declaration of Commitment of June 2001, endorsed by General Assembly resolution A/RES/S-26/2 and reiterated by General Assembly A/RES/60/262.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "169905d7-e71b-4d70-a026-6a28ff9806bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 5, + "Paragraph": "Security Council resolution 1308 and Presidential Statement 2005/33 Security Council resolution 1308 (2000) \u201con the responsibility of the Security Council in the maintenance of international peace and security: HIV/AIDS and international peace- keeping operations\u201d,2 calls for HIV/AIDS training and prevention programmes for peace- keeping personnel. In addition, by recognizing the devastating impact that HIV/AIDS has on all sectors of society and by stressing that \u201cthe HIV/AIDS pandemic, if unchecked, may pose a risk to stability and security\u201d, the resolution points to a broader framework and obli- gation to integrate HIV/AIDS initiatives into post-conflict programmes, including DDR. Furthermore, the resolution stresses the importance of a coordinated approach among UN agencies, and essentially calls for the mainstreaming of HIV/AIDS into their respective mandates. Following discussions in 2005 on the implementation of Security Council resolu- tion 1308 (2000), the Security Council Presidential Statement (S/PRST/2005/33) supported the efforts of peacekeeping missions to integrate HIV/AIDS awareness into their activities and outreach projects for vulnerable communities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "77761e1b-4af2-4e01-ad6b-21f659b3e00b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 6, + "Paragraph": "Security Council resolution 1325 Security Council resolution 1325 (2000) \u201con Women, peace and security\u201d3 encourages \u201call involved in the planning for disarmament, demobilization and reintegration to consider the different needs of female and male ex-combatants and to take into account the needs of their dependants\u201d. Consideration of HIV/AIDS interventions and requirements comes under this obligation. Furthermore, the resolution makes specific reference for the need to provide HIV/AIDS training for military, civilian police, and civilian personnel deployed in peace- keeping operations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "87a2e07c-89f5-4e42-bb25-ab36a9e2086a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": null, + "Paragraph": "General Assembly Declaration of Commitment on HIV/AIDS and General Assembly resolutions A/RES/S-26/2 and A/RES/60/262 The UN General Assembly Special Session on HIV/AIDS Declaration of Commitment (June 2001), endorsed by resolution A/RES/S-26/2 and reiterated in 2006 by resolution A/RES/ 60/262, established a common set of targets and agreed strategies to reduce the spread of HIV and mitigate its impact. It called for HIV/AIDS components to be included in interna- tional assistance programmes in crisis situations. More specifically, in addition to training for personnel involved in peacekeeping operations, the Declaration called on Member States \u201cby 2003 to have in place national strategies to address the spread of HIV among national uniformed services, where this is required, including armed forces and civil defence forces\u201d (para. 77). The obligation to include strategies to address HIV/AIDS in DDR programmes is clear for two reasons. First, national uniformed (government) forces, directly referred to in the Declaration, and non-State combatants face HIV risks. Second, by extension, there is a need to consider HIV in broader security sector reform (SSR) initiatives and efforts to establish newly integrated national armed service and civil defence forces in post-conflict settings, as DDR is often closely linked to SSR. The Declaration also points to national uniformed services as being a possible resource in themselves for HIV/AIDS initiatives, calling on Member States to \u201cconsider ways of using personnel from these services who are educated and trained in HIV/AIDS awareness and prevention to assist with HIV/AIDS awareness and prevention activities, including participation in emergency, humanitarian, disaster relief and rehabilitation assistance\u201d (para. 77).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1a5fdd7c-e5d4-49ff-abe1-81ca1c537a8f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": null, + "Paragraph": "Inter-Agency Standing Committee guidelines on HIV/AIDS interventions in emergency settings The Inter-Agency Standing Committee, which is the primary mechanism for facilitating inter-agency decision-making in response to complex emergencies and natural disasters, issued guidelines in 2004 for HIV/AIDS interventions in emergency settings. The guide- lines are a practical handbook and planning tool to enable governments and cooperating organizations, including UN agencies and non-governmental organizations (NGOs), to make the minimum required multisectoral response to HIV/AIDS during the early phase of emergency situations, as well as during the stabilization phase.4 Most of the recommended actions for vulnerable groups are also valid for DDR and addressing HIV/AIDS among DDR participants (see Annex B).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "129e13a6-96f4-4098-81c6-c0fc52dc91a3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 7, + "Paragraph": "Rationale for HIV/AIDS integration into DDR programming As noted in the introduction, a number of factors make conflict and post-conflict settings high-risk environments for the spread of HIV. The age range, mobility and risk taking ethos of armed forces and groups can make them high-risk to HIV \u2014 with some national mili- taries reporting higher rates of HIV than their civilian counterparts \u2014 and \u2018core transmitters\u2019 to the wider population.5 Child soldiers are often (though not always) sexually active at a much earlier age and are therefore potentially exposed to HIV. Female combatants, women associated with fighting forces, abductees and dependants are frequently at high risk, given widespread sexual violence and abuse and because, in situations of insecurity and destitu- tion, sex is often exchanged for basic goods or protection. In some conflicts, drugs have been used to induce in combatants a fighting spirit and a belief in their own invincibility. This not only increases risk behaviour but also, in the case of intravenous drug users, can directly result in HIV infection as the virus can be transmitted through the sharing of in- fected needles. Integrating HIV/AIDS into DDR initiatives is necessary to meet the immediate health and social needs of the participant and the interests of the wider community, and it is impor- tant for the long-term recovery of the country. The impact of HIV/AIDS at every level of society undermines development and makes it more difficult for a country to emerge from conflict and achieve social and economic stability. The sustainability of reintegration efforts requires that HIV/AIDS awareness and prevention strategies be directed at DDR partici- pants, beneficiaries and stakeholders in order to prevent increases in HIV rates or more generalized epidemics developing in countries where HIV infection may be mainly limited to particular high-risk groups. Negative community responses to returning former combatants may also arise and make HIV a community security issue. To assist reintegration into communities, it is necessary to counter discrimination against, and stigmatization of, those who are (or are perceived to be) HIV-positive. In some instances, communities have reacted with threats of violence; such responses are largely based on fear because of misinformation about the disease. In cases where SSR follows a DDR process, former combatants may enter into reintegrated/ reformed military, police and civil defence forces. In many developing countries, ministries of defence and of the interior are reporting high HIV infection rates in the uniformed services, which are compromising command structures and combat readiness. Increasingly, there are national policies of screening recruits and excluding those who are HIV-positive. Engaging in HIV/AIDS prevention at the outset of DDR will help to reduce new in- fections, thus \u2014 where national policies of HIV screening are in place \u2014 increasing the pool of potential candidates for recruitment, and will assist in planning for alternative occu- pational support and training for those found to be HIV-positive.6 DDR programmes offer a unique opportunity to target high-risk groups for sensitization. In addition, with the right engagement and training, former combatants have the potential to become \u2018change agents\u2019, assisting in their communities with HIV/AIDS prevention activi- ties, and so becoming part of the solution rather than being perceived as part of the problem.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "287e1dfb-9959-4b78-b222-82498e8e62b0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 8, + "Paragraph": "Guiding principles Lead to be provided by national beneficiaries/stakeholders. HIV/AIDS initiatives within the DDR process will constitute only a small element of the overall national AIDS strategy (assum- ing there is one). It is essential that local actors are included from the outset to guide the process and implementation, in order to harmonize approaches and ensure that awareness- raising and the provision of voluntary confidential counselling and testing and support, including, wherever possible, treatment, can be sustained. Information gained in focus group discussions with communities and participants, particularly those living with HIV/AIDS, should inform the design of HIV/AIDS initiatives. Interventions must be sensitive to local culture and customs. Inclusive approach. As far as possible, it is important that participants and beneficiaries have access to the same/similar facilities \u2014 for example, voluntary confidential counselling and testing \u2014 so that programmes continue to be effective during reintegration and to reduce stigma. This emphasises the need to link and harmonize DDR initiatives with national programmes. (A lack of national programmes does not mean, however, that HIV/AIDS initiatives should be dropped from the DDR framework.) Men and women, boys and girls should be included in all HIV/AIDS initiatives. Standard definitions of \u2018sexually active age\u2019 often do not apply in conflict settings. Child soldiers, for example, may take on an adult mantle, which can extend to their sexual behaviour, and children of both sexes can also be subject to sexual abuse. Strengthen existing capacity. Successful HIV/AIDS interventions are part of a long-term pro- cess going beyond the DDR programme. It is therefore necessary to strengthen the capacity of communities and local actors in order for projects to be sustainable. Planning should seek to build on existing capacity rather than create new programmes or structures. For example, local health care workers should be included in any training of HIV counsellors, and the capacity of existing testing facilities should be augmented rather than parallel facilities being set up. This also assists in building a referral system for demobilized ex-combatants who may need additional or follow-up care and treatment. Ethical/human rights considerations. The UN supports the principle of VCT. Undergoing an HIV test should not be a condition for participation in the DDR process or eligibility for any programme. HIV test should be voluntary and results should be confidential or \u2018medical- in-confidence\u2019 (for the knowledge of a treating physician). A person\u2019s actual or perceived HIV status should not be considered grounds for exclusion from any of the benefits. Planners, however, must be aware of any existing national legislation on HIV testing. For example, in some countries recruitment into the military or civil defence forces includes HIV screen- ing and the exclusion of those found to be HIV-positive. Universal precautions and training for UN personnel. Universal precautions shall be followed by UN personnel at all times. These are a standard set of procedures to be used in the care of all patients or at accident sites in order to minimize the risk of transmission of blood- borne pathogens, including, but not exclusively, HIV. All UN staff should be trained in basic HIV/AIDS awareness in preparation for field duty and as part of initiatives on HIV/ AIDS in the workplace, and peacekeeping personnel should be trained and sensitized in HIV/AIDS awareness and prevention. Using specialized agencies and expertise. Agencies with expertise in HIV/AIDS prevention, care and support, such as UNAIDS, the UN Development Programme, the UN Population Fund (UNFPA), the UN High Commissioner for Refugees, the World Health Organization (WHO), and relevant NGOs and other experts, should be consulted and involved in opera- tions. HIV/AIDS is often wrongly regarded as only a medical issue. While medical guidance is certainly essential when dealing with issues such as testing procedures and treatment, the broader social, human rights and political ramifications of the epidemic must also be considered and are often the most challenging in terms of their impact on reintegration efforts. As a result, the HIV/AIDS programme requires specific expertise in HIV/AIDS train- ing, counselling and communication strategies, in addition to qualified medical personnel. Teams must include both men and women: the HIV/AIDS epidemic has specific gender dimensions and it is important that prevention and care are carried out in close coordination with gender officers (also see IDDRS 5.10 on Women, Gender and DDR). Limitations and obligations of DDR HIV/AIDS initiatives. it is crucial that DDR planners are transparent about the limitations of the HIV/AIDS programme to avoid creating false expectations. It must be clear from the start that it is normally beyond the mandate, capacity and financial limitations of the DDR programme to start any kind of roll-out plan for ARV treatment (beyond, perhaps, the provision of PEP kits and the prevention of mother-to- child transmission (also see IDDRS 5.70 on Health and DDR). The provision of treatment needs to be sustainable beyond the conclusion of the DDR programme in order to avoid the development of resistant strains of the virus, and should be part of national AIDS strat- egies and health care programmes. DDR programmes can, however, provide the following for target groups: treatment for opportunis- tic infections; information on ARV treatment 5.10 5.70 options available in the country; and referrals to treatment centres and support groups. The roll-out of ARVs is increasing, but in many countries access to treatment is still very limited or non-existent. This means that much of the emphasis still has to be placed on prevention initiatives. HIV/AIDS community initiatives require a long-term commit- ment and fundamentally form part of humanitarian assistance, reconstruction and develop- ment programmes. However, in the absence of a functioning national AIDS strategy or implementing partners in the relevant communities, there is a moral and operational challenge in DDR providing awareness, testing and prevention programmes only to demobilized personnel. Reducing HIV transmission relies on changing risk behaviours, so focusing on only one group during reintegration would ultimately be counter-productive. At the same time, extending the ben- efits beyond former combatants and associated groups becomes unmanageable within the DDR specific framework \u2014 again emphasising the need to link with national programmes. If HIV/AIDS programmes do not exist at the local level or are very limited, DDR officers should aim to support basic programmes in receiving communities for a minimum of 12 months as part of reinsertion, community security initiatives or reintegration. During this time there should be proactive efforts to involve partners in broader community-based programming.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "64cd21d6-761e-44c4-9023-39c22b43a275", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 10, + "Paragraph": "Planning assessments During the planning process, a risk mapping exercise and assessment of local capacities (at the national and community level) needs to be conducted as part of a situation analysis and to profile the country\u2019s epidemic. This will include the collection of qualitative and quantitative data, including attitudes of communities towards those being demobilized and presumed or real HIV infection rates among different groups, and an inventory of both actors on the ground and existing facilities and programmes. There may be very little reliable data about HIV infection rates in conflict and post- conflict environments. In many cases, available statistics only relate to the epidemic before the conflict started and may be years out of date. A lack of data, however, should not prevent HIV/AIDS initiatives from being put in place. Data on rates of STIs from health clinics and NGOs are valuable proxy indicators for levels of risk. It is also useful to consider the epi- demic in its regional context by examining prevalence rates in neighbouring countries and the degree of movement between states. In \u2018younger\u2019 epidemics, HIV infections may not yet have translated into AIDS-related deaths, and the epidemic could still be relatively hidden, especially as AIDS deaths may be recorded by the opportunistic infection and not the pres- ence of the virus. Tuberculosis (TB), for example, is both a common opportunistic infection and a common disease in many low-income countries. A situation analysis for action planning for HIV should include the following impor- tant components: Baseline data: What is the national HIV/AIDS prevalence (usually based on sentinel surveillance of pregnant women)? What are the rates of STIs? Are there significant differences in different areas of the country? Is it a generalized epidemic or restricted to high-risk groups? What data are available from blood donors (are donors routinely tested)? What are the high-risk groups? What is driving the epidemic (for example: heterosexual sex; men who have sex with men; poor medical procedures and blood transfusions; mother-to-child transmission; intravenous drug use)? What is the regional status of the epidemic, especially in neighbouring countries that may have provided an external base for ex-combatants? Knowledge, attitudes and vulnerability: Qualitative data can be obtained through key in- formant interviews and focus group discussions that include health and community workers, religious leaders, women and youth groups, government officials, UN agency and NGO/CBOs, as well as ex-combatants and those associated with fighting forces and groups. Sometimes data on knowledge, attitudes and practice regarding HIV/ AIDS are contained in demographic and health surveys that are regularly carried out in many countries (although these may have been interrupted because of the conflict). It is important to identify the factors that may increase vulnerability to HIV \u2014 such as levels of rape and gender-based violence and the extent of \u2018survival sex\u2019. In the planning process, the cultural sensitivities of participants and beneficiaries must be considered so that appropriate services can be designed. Within a given country, for example, the acceptability and trends of condom use or attitudes to sexual relations outside of marriage can vary enormously; the country specific context must inform the design of programmes. Understanding local perceptions is also important in order to prevent problems during the reintegration phase, for example in cases where communities may blame ex-com- batants or women associated with fighting forces for the spread of HIV and therefore stigmatize them. Identify existing capacities: The assessment needs to map existing health care facilities in and around communities where reintegration is going to take place. The exercise should ascertain whether the country has a functioning national AIDS control strategy and programme, and the extent that ministries are engaged (this should go beyond just the health ministry and include, for example, ministries of the interior, defence, educa- tion, etc.). Are there prevention and awareness programmes in place? Are these directed at specific groups? Does any capacity for counselling and testing exist? Is there a strategy for the roll-out of ARVs? Is there financial support available or pending from the Global Fund for AIDS, Malaria and TB, the US President\u2019s Emergency Plan for AIDS Relief or the World Bank? Do these assistance frameworks include DDR? What other actors (national and international) are present in the country? Are the UN theme group and technical working group in place ( the standard mechanisms to coordinate the HIV initiatives of UN agencies)? Basic requirements for HIV/AIDS programmes in DDR include: collection of baseline HIV/AIDS data; identification and training of HIV focal points within DDR field offices; development of HIV/AIDS awareness material and provision of basic awareness train- ing, with peer education programmes during extended cantonment and the reinsertion and reintegration phases to build capacity; provision of VCT, both specifically within cantonment sites, where relevant, and through support to community services, and the routine offer of (opt-in) testing with counselling as a standard part of medical screening in countries with an HIV prevalence of 5 per- cent or more; provision of condoms, PEP kits, and awareness material; treatment of STIs and opportunistic infections, and referral to existing services for ARV treatment; public information campaigns and sensitization of receiving communities as part of more general preparations for the return of DDR participants. The number of those being processed through a particular site and the amount of time available would determine what can be offered before or during demobilization, what is part of reinsertion packages and what can be offered during reintegration. The IASC guidelines are a useful tool for planning and implementation (see section 4.4 of this module).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b778be24-a054-4072-8db0-594676831a5a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 11, + "Paragraph": "Design of DDR field offices The design of DDR field offices responsible for the registration and reintegration process must take into account the need for capacity to address HIV/AIDS. Possible options include a central dedicated (but mobile) unit to coordinate HIV issues; the establishment of focal points in each region; and the secondment of experts to field offices from relevant UN agencies and NGOs or, in the case of national DDR field offices, from the national ministry of health, National AIDS Control Programme and local NGOs. In many cases, field offices will play a key role in basic briefings to DDR participants and referrals to VCT, so it is essential that all personnel are trained in HIV awareness strategies and are fully aware of on available facilities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "6eaeba76-9fd3-46e6-89cc-f768cefe2e54", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 12, + "Paragraph": "Monitoring and evaluation During planning, core indicators need to be developed to monitor the progress and impact of DDR HIV initiatives. This should include process indicators, such as the provision of condoms and the number of peer educators trained, and outcome indicators, like STI inci- dence by syndrome and the number of people seeking voluntary counselling and testing. DDR planners need to work with national programmes in the design and monitoring of initiatives, as it is important that the indicators used in DDR programmes are harmonised with national indicators. DDR planners, implementing partners and national counterparts should agree on the bench-marks against which DDR-HIV programmes will be assessed. The IASC guidelines include reference material for developing indicators in emergency settings.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c468bfa5-01c6-4383-bc2e-0084453c2997", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 12, + "Paragraph": "HIV initiatives before and during demobilization Depending on the nature of soldiers\u2019/ex-combatants\u2019 deployment and organizational structure, it may be possible to start awareness training before demobilization begins. For example, it may be that troops are being kept in their barracks in the interim period between the signing of a peace accord and the roll-out of DDR; this provides an ideal captive (and restive) audience for awareness programmes and makes use of existing structures.7 In such cases, DDR planners should design joint projects with other actors working on HIV issues in the country. To avoid duplication or over-extending DDR HIV budgets, costs could be shared based on a proportional breakdown of the target group. For example, if it is anticipated that 40% of armed personnel will be demobilized, the DDR programme could cover 40% of the costs of awareness and prevention strategies at the pre-demobilization stage. Such an approach would be more comprehensive, easier to implement, and have longer-term benefits. It would also comple- ment HIV/AIDS initiatives in broader SSR programmes. Demobilization is often a very short process, in some cases involving only reception and documentation. While cantonment offers an ideal environment to train and raise the awareness of a \u2018captive audience\u2019, there is a general trend to shorten the cantonment period and instead carry out community-based demobilization. Ultimately, most HIV initiatives will take place during the reinsertion phase and the longer process of reintegration. However, initial awareness training (distinct from peer education programmes) should be considered part of general demobilization orientation training, and the provision of voluntary HIV testing and counselling should be included alongside general medical screening and should be available throughout the reinsertion and reintegration phases. During cantonments of five days or more, voluntary counselling and testing, and awareness sessions should be provided during demobilization. If the time allowed for a specific phase is changed, for example, if an envisaged cantonment period is shortened, it should be understood that the HIV/AIDS minimum requirements are not dropped but are instead included in the next phase of the DDR programme. Condoms and awareness material/referral information should be available whatever the length of cantonment, and must be included in \u2018transitional packages\u2019.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "135f1590-64d7-4bfa-95de-ebe656d8fa62", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 13, + "Paragraph": "Planning for cantonment sites The safety and protection of women, girls and boys must be taken into account in the plan- ning for cantonment sites and interim care centres (ICCs), to reduce the possibility of sexual exploitation and abuse (also see IDDRS 5.10 on Women, Gender and DDR, IDDRS 5.20 on Youth and DDR and IDDRS 5.30 on Children and DDR). Medical screening facilities should ensure privacy during physical check-ups, and shall ensure that universal precautions are respected. An enclosed space is required for testing and counselling. This can be a tent, as long as the privacy of conversations can be maintained. Laboratory facilities are not required on site.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "7af93035-b368-4098-abc3-57ab4077e64f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 13, + "Paragraph": "HIV/AIDS awareness training Initial HIV awareness training should be provided to DDR participants, covering the basic facts of HIV transmission and prevention methods, and debunking common myths (2-hour sessions). On the basis of the qualitative data gathered during the planning stages, infor- mation, education and communication materials should be developed that are sensitive to the local culture and customs. Written materials in local languages are useful, but alternative materials using pictures should also be provided to account for different literacy rates and specifically to target children. Separate training for men and women should be available to encourage individuals to speak openly and ask questions. Children should receive special training in ICCs, in collaboration with child-protection officers (also see IDDRS 5.10 on Women, Gender and DDR and IDDRS 5.30 on Children and DDR). Peer education programmes can be initiated during more extended cantonment periods of four weeks or more, and during reinsertion. Peer education typically involves training and supporting a small group with the same background, experience and values to share knowledge and change behaviour patterns among their peers. Peer education is often used to bring about changes in the knowledge, attitudes, beliefs and behaviours at the indivi- dual level. However, the approach can also be used as part of efforts to create change at the group level or in society as a whole by modifying norms and stimulating collective action, both of which contribute to changes in policies and programmes. Globally, peer education is one of the most widely used strategies to address the HIV/AIDS pandemic. It increases the capacity and sustainability of HIV/AIDS awareness and sensitization efforts. HIV/AIDS peer education kits for uniformed services and additional material for awareness sessions for women and children are available from UNAIDS and Family Health International.8 (See section 9.2 of this module.)", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05120e94-fe1f-45a6-a05b-81a2f65485b2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 13, + "Paragraph": "Syndromic management of STIs Screening and treatment for STIs should be a standard component of health screening for participants. STIs indicate risk behaviour, and their presence increases the chances of con- 5.20 5.10 5.30 5.10 5.30 tracting or transmitting HIV. Syndromic management is a cost-effective approach that allows health workers to diagnose STIs based on a patient\u2019s history and symptoms, without the need for laboratory analysis. Treatment normally includes the use of broad-spectrum anti- biotics. Individuals with an STI should be strongly encouraged to bring their partners in for STI screening so that both can receive treatment in order to prevent reinfection (also see 5.70\tIDDRS 5.70 on Health and DDR).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8d845323-d478-4068-b370-685116d9ad13", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 14, + "Paragraph": "HIV counselling and testing Counselling and testing as a way of allowing people to find out their HIV status is an inte- gral element of prevention activities. Testing can be problematic in countries where ARVs are not yet easily available, and it is therefore important that any test is based on informed consent and that providers are transparent about benefits and options (for example, addi- tional nutritional support for HIV-positive people from the World Food Programme, and treatment for opportunistic infections). The confidentiality of results shall also be assured. Even if treatment is not available, HIV-positive individuals can be provided with nutritional 5.50\tand other health advice to avoid opportunistic infections (also see IDDRS 5.50 on Food Aid Programmes in DDR). Their HIV status may also influence their personal planning, includ- ing vocational choices, etc. According to UNAIDS, the majority of people living with HIV do not even know that they are infected. This emphasizes the importance of providing DDR participants with the option to find out their HIV status. Indeed, it may be that demand for VCT at the local level will have to be generated through awareness and advocacy cam- paigns, as people may either not understand the relevance of, or be reluctant to have, an HIV-test. It is particularly important for pregnant women to know their HIV status, as this may affect the health of their baby. During counselling, information on mother-to-child-trans- mission, including short-course ARV therapy (to reduce the risk of transmission from an HIV-positive mother to the foetus), and guidance on breastfeeding can be provided. Testing technologies have improved significantly, cutting the time required to get a result and reduc- ing the reliance on laboratory facilities. It is therefore more feasible to include testing and counselling in DDR. Testing and counselling for children associated with armed forces and groups should only be carried out in consultation with a child-protection officer with, where possible, the informed consent of the parent (see IDDRS 5.30 on Children and DDR). Training and funding of HIV counsellors: Based on an assessment of existing capacity, counsellors could include local medical personnel, religious leaders, NGOs and CBOs. Counselling capacity needs to be generated (where it does not already exist) and funded to ensure suffi- cient personnel to run VCT and testing being offered as part of routine health checks, either in cantonment sites or during community-based demobilization, and continued during rein- sertion and reintegration (see section 10.1 of this module).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "53a1d682-1c55-49af-93ac-5b80332ae309", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 11, + "Paragraph": "Counselling Counselling is generally offered before and after an HIV test in order to help individuals make an informed decision about whether they want a test and to understand their risk behaviour and cope with a possible positive result (including information on how to stay as healthy as possible and how to minimize the risk of transmission to others) and provide referrals to options for treatment, care and support within the national system. Counselling also helps those who are not infected to stay HIV-negative. Counselling on an individual basis is ideal but it can also be offered in group settings with individual follow up. Individuals shall always be informed of their test result and post-test counselling should be provided for both an HIV-positive and an HIV-negative result, especially given the \u2018window period\u2019, the possibility for \u2018false negatives\u2019 and the need to impact on behav- iour. HIV-positive individuals should be strongly encouraged to bring their partner(s) for testing. In all instances, participants should be provided with referrals to further services in their communities. (For psychological, medical and legal support to rape victims see IDDRS 5.10 on Women, Gender and DDR.)", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e7b5dd13-8659-4a69-98dc-9b4518c717b5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 14, + "Paragraph": "Testing In countries with an estimated HIV prevalence of 5 percent or more, an HIV test (opt-in), with counselling and informed consent, should be routinely offered as part of standard health checks for ex-combatants, but this must be linked to provisions for treatment and/or other benefits. In opt-in testing, individuals in a defined group (in this case, DDR participants) are given counselling and are offered the option of having an HIV test. It must be explained that they have the right to decide whether or not they wish to undergo an HIV test, without any personal repercussions. Routinely offering a test respects human rights guidelines, while also reaching a larger population. In general, such an approach results in greater numbers of people finding out their HIV status. Routine opt-in testing is suggested on the basis that DDR participants are a distinct and potentially high-risk group. However, VCT services for participants and beneficiaries should also be provided alongside any offer of testing as part of medicals. Voluntary testing is a client initiated process, whereby an individual chooses to go to a testing facility/provider to find out his/her HIV status. 5.30 5.10 Advances in testing technology mean that rapid tests can provide a test result within approximately 30 minutes and do not require blood to be drawn or laboratory facilities. HIV-positive results need to be confirmed to rule out \u2018false positives\u2019. If local laboratory facilities do not exist, a combination of two further different rapid tests should be used to confirm an HIV-positive result. The map- 5.70\tping exercise will have identified national capacities (also see IDDRS 5.70 on Health and DDR). Planners also need to consult national legislation regarding which HIV tests are ac- cepted, particularly with regard to rapid tests.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "e98ebb2e-3abf-4393-bad4-b3dcb0e5139b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 16, + "Paragraph": "Providing condoms Male and female condoms should be available, and information regarding their correct use should be provided during the demobilization and in transitional packs. A range of contra- ception measures also need to be considered as part of basic reproductive health services to prevent unwanted pregnancies. Many countries may not be familiar with female condoms. Post-conflict settings, how- ever, have proved to be receptive environments for the introduction of female-controlled methods of HIV/STI prevention and contraception. It is important that any introduction of female condoms in DDR programmes be strongly linked to national/local initiatives. UNFPA and Population Services International can provide information on designing and running programmes to promote and supply female condoms. If female condoms are not available locally and there are no existing programmes, it may not be feasible or appropriate for DDR HIV/AIDS programmes to introduce and promote the use of female condoms, as it requires training and specifically tailored information campaigns.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0d2f14e4-2a49-41fc-8616-680235d3401f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 16, + "Paragraph": "Provision of post-exposure prophylaxis kits Post-exposure prophylaxis (PEP) kits are a short-term antiretroviral treatment that reduces the likelihood of HIV infection after potential exposure to infected body fluids, such as through a needle-stick injury, or as a result of rape. The treatment should only be admin- istered by a qualified health care practitioner. It essentially consists of taking high doses of ARVs for 28 days. To be effective, the treatment must start within 2 to 72 hours of the pos- sible exposure; the earlier the treatment is started, the more effective it is. The patient should be counselled extensively before starting treatment, and advised to follow up with regular check-ups and HIV testing. PEP kits shall be available for all DDR staff and for 5.10\tvictims of rape who present within the 72-hour period required (also see IDDRS 5.10 on Women, Gender and DDR).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "fa1f3184-a7db-4d08-969f-197282ca63a5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 16, + "Paragraph": "Planning and preparation in receiving communities HIV/AIDS initiatives need to start in receiving communities before demobilization in order to support or create local capacity and an environment conducive to sustainable reintegra- tion. HIV/AIDS activities are a vital part of, but not limited to, DDR initiatives. Whenever possible, planners should work with stakeholders and implementing partners to link these activities with the broader recovery and humanitarian assistance being provided at the community level and the Strategy of the national AIDS Control Programme. People living with HIV/AIDS in the community should be consulted and involved in planning from the outset. The DDR programme should plan and budget for the following initiatives: Community capacity-enhancement and public information programmes: These involve pro- viding training for local government, NGOs/community-based organizations (CBOs) and faith-based organizations to support forums for communities to talk openly about HIV/AIDS and related issues of stigma, discrimination, gender and power relations; the issue of men having sex with men; taboos and fears. This enables communities to better define their needs and address concerns about real or perceived HIV rates among returning ex-combatants. Public information campaigns should raise awareness among communities, but it is important that communication strategies do not inadvertently increase stigma and discrimination. HIV/AIDS should be approached as an issue of concern for the entire community and not something that only affects those being demobilized; Maintain counsellor and peer educator capacity: training and funding is needed to maintain VCT and peer education programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f267c9cd-e163-4f2f-88a1-0168c63124b8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 18, + "Paragraph": "Peer education programme Peer education training (including behaviour-change communication strategies) should be initiated during the reinsertion and reintegration phases or, if started during cantonment, continued during the subsequent phases. Based on the feedback from the programmes to improve community capacity, training sessions should be extended to include both DDR participants and communities, in particular local NGOs. During peer education programmes, it may be possible to identify among DDR parti- cipants those who have the necessary skills and personal profile to provide ongoing HIV/ AIDS programmes in the communities and become \u2018change agents\u2019. Planning and funding for vocational training should consider including such HIV/AIDS educators in broader initiatives within national HIV/AIDS strategies and the public health sector. It cannot be assumed, however, that all those trained will be sufficiently equipped to become peer edu- cators. Trainees should be individually evaluated and supported with refresher courses in order to maintain levels of knowledge and tackle any problems that may arise. During the selection of participants for peer education training, it is important to con- sider the different profiles of DDR participants and the different phases of the programme. For example, women associated with fighting forces would probably be demobilized before combatants and peer education programmes need to target them and NGOs working with women specifically. In addition, before using DDR participants as community HIV/AIDS workers, it is essential to identify whether they may be feared within the community because of the nature of the conflict in which they participated. If ex-combatants are highly respected in their communities this can strengthen reintegration and acceptance of HIV- sensitization activities. Conversely, if involving them in HIV/AIDS training could increase stigma, and therefore undermine reintegration efforts, they should not be involved in peer education at the community level. Focus group discussions and local capacity-enhancement programmes that are started before reintegration begins should include an assessment of the community\u2019s receptiveness. An understanding of the community\u2019s views on the subject will help in the selection of people to train as peer educators.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "82159c0d-2aec-48b6-b4e5-0b40f7c95565", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 18, + "Paragraph": "Voluntary counselling and testing Voluntary counselling and testing (VCT) should be available during the reinsertion and reintegration phases in the communities to which ex-combatants are returning. This is distinct from any routine offer of testing as part of medical checks. VCT can be provided through a variety of mechanisms, including through free-standing sites, VCT services inte- grated with other health services, VCT services provided within already established non- health locations and facilities, and mobile/outreach VCT services.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "675e7c6b-17fa-4da5-967c-739679006c3b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 18, + "Paragraph": "Condoms and PEP kits Male and female condoms should continue to be provided during the reinsertion and re- integration phases to the DDR target groups. It is imperative, though, that such access to condoms is linked \u2014 and ultimately handed over to \u2014 local HIV initiatives as it would be unmanageable for the DDR programme to maintain the provision of condoms to former combatants, associated groups and their families. Similarly, DDR planners should link with local initiatives for providing PEP kits, especially in instances of rape. (also see IDDRS 5.10 on Women, Gender and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "afc73b51-b76e-4ec6-a14b-79d5e8f41328", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 19, + "Paragraph": "Vocational training One of the major factors increasing vulnerability to HIV in post-conflict settings is the increased levels of commercial/survival sex in communities where unemployment rates are high. Poverty-reductioninitiatives, includingincome-generationandvocationaltrainingprogrammes, should be seen as vital parts of overall community reconstruction, and also contribute to reducing the social risk factors for HIV transmission. For HIV-negative DDR participants, the creation of livelihoods is, by extension, an important aspect of HIV prevention for them and their families. For those who may be HIV-positive, but otherwise healthy (i.e., have functioning immune systems and showing no symptoms), vocational counselling may need to consider health and risk issues, but shall not deny each individual\u2019s ability or right to be trained and have a livelihood. The long incubation period of the virus means that it can be many years before an HIV-positive individual develops AIDS, even if he/she is not on treatment.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "854bf207-f053-47b0-b1b2-81bd9b116616", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 19, + "Paragraph": "Caring for people living with AIDS Caring for people living with AIDS, especially in resource poor settings, can present a number of challenges, particularly the provision of even basic drugs and treatments. It also raises concerns about the extent to which families (some of who may already be affected by the disease) and communities are able or willing to commit themselves to caring for ex-combat- ants who may have been away for some time. Overall, the burden of care tends to fall on women in communities who will already be facing an increased burden of care with the return of ex-combatants. This will make the overall support and absorption of ex-combat- ants into civilian life more complicated. In addition, any differences in the types or levels of AIDS care and support provided to ex-combatants and communities is a very sensitive issue. It is extremely important to provide a balance in services, so that communities do not think that ex-combatants are receiving preferential treatment. Wherever possible, support should be provided to existing medical and hospice facilities, linking up with national and local programmes, with targeted support and referrals for families caring for ex-combatants suffering from AIDS.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "12921bd6-e132-4df1-aaa1-53c03a22a909", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 19, + "Paragraph": "Identifying existing capacities National AIDS control programmes, where they exist, must be the first point of reference for, and key actors in, designing and running HIV/AIDS DDR programmes. UNAIDS country coordinators can give essential guidance and will have established networks with relevant NGOs/CBOs. The UN theme group is the main mechanism to coordinate HIV/ AIDS initiatives among UN agencies and other partners.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "be381085-8d94-49af-adf5-6d3da3b4b1f4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 9, + "Paragraph": "Implementing partners In many settings, key HIV/AIDS implementing partners, such as the International Rescue Committee and Family Health International, may already be working in the country, but 5.10 not necessarily in all the areas where demobilization and reinsertion/reintegration will take place. To initiate programmes, DDR officers should consider providing seed money to kick-start projects, for example covering the initial costs of establishing a basic VCT centre and training counsellors in a particular area, on the understanding that the implementing partner would assume the costs of running the facility for an agreed period of time. This is because it is often easier for NGOs to raise donor funds to maintain a project that has been shown to work than to set one up. Such an approach has the additional benefit of extend- ing HIV facilities to local communities beyond the time-frame of DDR, and can provide a buffer for HIV-related services at the reinsertion stage for example if there are delays in the demobilization process such as time-lags between the demobilization of special groups and ex-combatants.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "30b850eb-6a13-47c3-bf69-c313c5d8ae0b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 20, + "Paragraph": "10.2. HIV-related support for peacekeeping missions HIV/AIDS advisers. Peacekeeping missions routinely have HIV/AIDS advisers, assisted by UN volunteers and international/national professionals, as a support function of the mis- sion to provide awareness and prevention programmes for peacekeeping personnel and to integrate HIV/AIDS into mission mandated activities. HIV/AIDS advisers can facilitate the initial training of peer educators, provide guidance on setting up VCT, and assist with the design of information, education and communication materials. They should be involved in the planning of DDR from the outset. Peacekeepers. Peacekeepers are increasingly being trained as HIV/AIDS peer educators, and therefore might be used to help support training. This role would, however, be beyond their agreed duties as defined in troop contributing country memorandums of understanding (MoUs), and would require the agreement of their contingent commander and the force commander. In addition, abilities vary enormously: the mission HIV/AIDS adviser should be consulted to identify those who could take part. Many battalion medical facilities offer basic treatment to host populations, often treating cases of STIs, as part of \u2018hearts and minds\u2019 initiatives. Battalion doctors may be able to assist in training local medical personnel in the syndromic management of STIs, or directly pro- vide treatment to communities. Again, any such assistance provided to host communities is not included in MoUs or self-sustainment agreements, and so would require the authori- zation of contingent commanders and the force commander, and the capability and expertise of any troop-contributing country doctor would have to be assessed in advance.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bf125e78-ec99-4471-951f-5d8724ab513c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 21, + "Paragraph": "Terms and definitions AIDS: Acquired immune deficiency syndrome: the stage of HIV when the immune system is depleted, leaving the body vulnerable to one or more life-threatening diseases. Anti-retrovirals (ARVs): Broad term for the main type of treatment for HIV and AIDS. ARVs are not a cure. Behaviour-change communication (BCC): A participatory, community-level process aimed at developing positive behaviours; promoting and sustaining individual, community and societal behaviour change; and maintaining appropriate behaviours. False negative/positive: HIV test result that is wrong, either giving a negative result when the person is HIV-positive, or a positive result when the person is HIV-negative. HIV: Human immunodeficiency virus, the virus that causes AIDS. HIV confirmation tests: According to WHO/UNAIDS recommendations, all positive HIV- test results (whether ELISA [enzyme-linked immunabsorbent assay] or simple/rapid tests) should be confirmed using a second, different test to confirm accuracy, or two further dif- ferent rapid tests if laboratory facilities are not available. HIV counselling: Counselling generally offered before and after an HIV test in order to help individuals understand their risk behaviour and cope with an HIV-positive result or stay HIV-negative. The counselling service also links individuals to options for treatment, care and support, and provides information on how to stay as healthy as possible and how to minimize the risk of transmission to others. Test results shall be confidential. Usually a vol- untary counselling and testing service package ensures that: the HIV test is voluntary; pre and post test counselling is offered; informed consent is obtained (agreement to a medical test or procedure after clear explanation of risks and benefits); and HIV tests are performed using approved HIV test kits and following testing protocols. HIV-negative result: The HIV test did not detect any antibodies in the blood. This either means that the person is not infected with the virus at the time of the test or that he/she is in the \u2018window period\u2019 (i.e., false negative, see above). It does not mean that he/she is immune to the virus. HIV-positive result: A positive HIV test result means that a person has the HIV antibodies in his/her blood and is infected with HIV. It does not mean that he/she has AIDS. HIV test: Usually a test for the presence of antibodies. There are two main methods of HIV testing: HIV ELISA (enzyme-linked immunoabsorbent assay) test: This is the most efficient test for testing large numbers per day, but requires laboratory facilities with equipment, maintenance staff and a reliable power supply; Simple/rapid HIV tests: These do not require special equipment or highly trained staff and are as accurate as ELISA. Rapid tests will usually give results in approximately 30 minutes and are easy to perform. Suitable combinations of three simple/rapid tests are recommended by WHO where facilities for ELISA or ELISA/Western Blot testing are not available. Inconclusive (indeterminate) result: A small percentage of HIV test results are inconclu- sive. This means that the result is neither positive nor negative. This may be due to a number of factors that are not related to HIV infection, or it can be because of the person is in the early stages of infection when there are insufficient HIV antibodies present to give a positive result. If this happens the test must be repeated. Information, education and communication (IEC): The development of communication strategies and support materials, based on formative research and designed to impact on levels of knowledge and influence behaviours among specific groups. Mandatory testing: Testing or screening required by federal, state, or local law to compel individuals to submit to HIV testing without informed consent. Within those countries that conduct mandatory testing, it is usually limited to specific \u2018populations\u2019 such as cat- egories of health care providers, members of the military, prisoners or people in high-risk situations. Nutritional requirements: AIDS patients usually need a food intake that is 30 percent higher than standard recommended levels. Opportunistic infection (OI): Infection that occurs when an immune system is weakened, but which might not cause a disease \u2014 or be as serious \u2014 in a person with a properly func- tioning immune system. Peer education: A popular concept that variously refers to an approach, a communication channel, a methodology and/or an intervention strategy. Peer education usually involves training and supporting members of a given group with the same background, experience and values to effect change among members of that group. It is often used to influence knowledge, attitudes, beliefs and behaviours at the individual level. However, peer educa- tion may also create change at the group or societal level by modifying norms and stimulating collective action that contributes to changes in policies and programmes. Worldwide, peer education is one of the most widely used HIV/AIDS awareness strategies. Post-exposure prophylaxis/post-exposure prevention (PEP): A short-term antiretroviral treatment that reduce the likelihood of HIV infection after potential exposure to infected body fluids, such as through a needle-stick injury or as a result of rape. The treatment should only be administered by a qualified health care practitioner. It essentially consists of taking high doses of ARVs for 28 days. To be effective, the treatment must start within 2 to 72 hours of the possible exposure; the earlier the treatment is started, the more effective it is. Its success rate varies. Routine opt-in testing: Approach to testing whereby the individual is offered an HIV test as a standard part of a treatment/health check that he/she is about to receive. The indivi- dual is informed that he/she has the right to decide whether or not to undergo the test. Sentinel surveillance: Surveillance based on selected population samples chosen to repre- sent the relevant experience of particular groups. Sero-conversion: The period when the blood starts producing detectable antibodies in response to HIV infection. Sero-positive: Having HIV antibodies; being HIV-positive. Sexually transmitted infection (STI): Disease that is commonly transmitted through vaginal, oral or anal sex. The presence of an STI is indicative of risk behaviour and also increases the actual risk of contracting HIV. STI syndromic management: A cost-effective approach that allows health workers to diag- nose sexually transmitted infections on the basis of a patient\u2019s history and symptoms, without the need for laboratory analysis. Treatment normally includes the use of broad-spectrum antibiotics. Universal precautions: Simple infection control measures that reduce the risk of transmis- sion of blood borne pathogens through exposure to blood or body fluids among patients and health care workers. Under the \u2018universal precaution\u2019 principle, blood and body fluids from all persons should be considered as infected with HIV, regardless of the known or supposed status of the person. Use of new, single-use disposable injection equipment for all injections is highly recom- mended. Sterilising injection equipment should only be considered if single-use equip- ment is not available. Discard contaminated sharps immediately and without recapping in puncture- and liquid-proof containers that are closed, sealed and destroyed before completely full. Document the quality of the sterilization for all medical equipment used for percuta- neous procedures. Wash hands with soap and water before and after procedures; use protective barriers such as gloves, gowns, aprons, masks and goggles for direct contact with blood and other body fluids. Disinfect instruments and other contaminated equipment. Handle properly soiled linen with care. Soiled linen should be handled as little as pos- sible. Gloves and leak-proof bags should be used if necessary. Cleaning should occur outside patient areas, using detergent and hot water. Voluntary HIV testing: A client-initiated HIV test whereby the individual chooses to go to a testing facility/provider to find out his/her HIV status. Window period: The time period between initial infection with HIV and the body\u2019s pro- duction of antibodies, which can be up to three months. During this time, an HIV test for antibodies may be negative, even though the person has the virus and can infect others.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-5.70-Health-and-DDR.json b/src/Static/data/json/IDDRS-5.70-Health-and-DDR.json new file mode 100644 index 0000000..3417ecd --- /dev/null +++ b/src/Static/data/json/IDDRS-5.70-Health-and-DDR.json @@ -0,0 +1,458 @@ +[ + { + "ID": "2b865931-276a-42e0-814a-b84fafa1c764", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": null, + "Paragraph": "Summary This module is intended to assist operators and managers from other sectors who are involved in disarmament, demobilization and reintegration (DDR), as well as health practitioners, to understand how health partners, like the World Health Organization (WHO), United Nations (UN) Population Fund (UNFPA), Joint UN Programme on AIDS (UNAIDS), Inter- national Committee of the Red Cross (ICRC) and so on, can make their best contribution to the short- and long-term goals of DDR. It provides a framework to support cooperative decision-making for health action rather than technical advice on health care needs. Its intended audiences are generalists who need to be aware of each component of a DDR pro- cess, including health actions; and health practitioners who, when called upon to support the DDR process, might need some basic guidance and reference on the subject to help contextualize their technical expertise. Because of its close interconnections with these areas, the module should be read in conjunction with IDDRS 5.60 on HIV/AIDS and DDR and IDDRS 5.50 on Food Aid Programmes in DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8abe1e52-9d56-4386-b315-cefa9d993663", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": null, + "Paragraph": "Module scope and objectives This module is intended to assist operators and managers from other sectors who are involved in DDR, as well as health practitioners, to understand how health partners can make their best contribution to the short- and long-term goals of DDR. It provides a framework to support decision-making for health actions. The module highlights key areas that deserve attention and details the specific challenges that are likely to emerge when operating within a DDR framework. It cannot provide a response to all technical problems, but it provides technical references when these are relevant and appropriate, and it assumes that managers, generalists and experienced health staff will consult with each other and coordinate their efforts when planning and implementing health programmes. As the objective of this module is to provide a platform for dialogue in support of the design and implementation of health programmes within a DDR framework, there are two intended audiences: generalists who need to be aware of each component of a DDR process, including health actions; and health practitioners who, when called upon to support the DDR process, might need some basic guidance and reference on the subject to help contex- tualize their technical expertise.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "045d7f86-4885-47e1-a67d-285c61069e71", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": null, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of the abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. 5.60 5.50 1.20 In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicated requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "4045dad8-7ef2-40c8-a444-d3252c9d3a60", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 4, + "Paragraph": "Introduction This module consolidates the lessons learned by WHO and its partners, including UNFPA, UNAIDS, ICRC, etc., in supporting DDR processes in a number of countries. UN technical agencies play a supportive role within a DDR framework, and WHO has a specific respon- sibility as far as health is concerned. The exact nature of this role may change in different situations, ranging from standards-setting to direct operational responsibilities such as con- tracting with and supervising non-governmental organizations (NGOs) delivering health care and health-related activities in assembly areas and demobilization sites, negotiating with conflicting parties to implement health programmes, and supporting the provision of health equipment and services in transit/cantonment areas. The priority of public health partners in DDR is: to assess health situations and monitor levels of risk; to co-ordinate the work of health actors and others whose activities contribute to health (e.g., food programmes); to provide \u2014 or to ensure that others provide \u2014 key health services that may be lacking in particular contexts where DDR programmes are operating; to build capacity within national authorities and civil society. Experience shows that, even with the technical support offered by UN and partner agencies, meeting these priorities can be difficult. Both in the initial demobilization phase and afterwards in the reintegration period, combatants, child soldiers, women associated with armed forces and groups, and their dependants may present a range of specific needs to which the national health sector is not always capable of responding. While the basic mech- anisms governing the interaction between individuals and the various threats to their health are very much the same anywhere, what alters is the environment where these interactions take place, e.g., in terms of epidemiological profile, security and political context. In each country where a DDR process is being implemented, even without considering the different features of each process itself, a unique set of health needs will have to be met. Nonetheless, some general lessons can be drawn from the past: In DDR processes, the short-term planning that is part of humanitarian interventions also needs to be built into a medium- to long-term framework. This applies to health as well as to other sectors;1 A clear understanding of the various phases laid out in the peace process in general and specified for DDR in particular is vital for the appropriate timing, delivery and targeting of health activities;2 The capacity to identify and engage key stakeholders and build long-term capacity is essential for coordination, implementation and sustainability.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "202bf315-34a7-4a60-aeb8-5edba9f1fc10", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 5, + "Paragraph": "Guiding principles Health action should always prioritize basic preventive and curative care to manage the entire range of health threats in the geographical area, and deal with the specific risks that threaten the target population. Health action within a DDR process should apply four key principles: Principle 1: Health programmes/actions that are part of DDR should be devised in coordi- nation with plans to rehabilitate the entire health system of the country, and to build local and national capacity; and they should be planned and implemented in cooperation and consultation with the national authorities and other key stakeholders so that resources are equitably shared and the long-term health needs of former combatants, women associated with armed groups and forces, their family members and communities of reintegration are sustainably met; Principle 2: Health programmes/actions that are part of DDR should promote and respect ethical and internationally accepted human rights standards; Principle 3: Health programmes/actions that are part of DDR should be devised after careful analysis of different needs and in consultation with a variety of representatives (male and female, adults, youth and children) of the various fighting factions; and services offered during demobilization should specifically deal with the variety of health needs presented by adult and young combatants and women associated with armed groups and forces; Principle 4: In the reintegration part of DDR, as an essential component of community- based DDR in resource-poor environments, health programmes/actions should be open to all those in need, not only those formerly associated with armed groups and forces.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "84495573-af5f-4095-976a-f883f5677d87", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 5, + "Paragraph": "Tensions between humanitarian and political objectives DDR programmes result from political settlements negotiated to create the political and legal system necessary to bring about a transition from violent conflict to stability and peace. To contribute to these political goals, DDR processes use military, economic and humani- tarian \u2014 including health care delivery \u2014 tools. Thus, humanitarian work carried out within a DDR process is implemented as part of a political framework whose objectives are not specifically humanitarian. In such a situation, tensions can arise between humanitarian principles and the establishment of the overall political\u2013strategic crisis management framework of integrated peace-building missions, which is the goal of the UN system. Offering health services as part of the DDR process can cause a conflict between the \u2018partiality\u2019 involved in supporting a political transition and the \u2018im- partiality\u2019 needed to protect the humanitarian aspects of the process and humanitarian space.3 It is not within the scope of this module to explore all the possible features of such tensions. However, it is useful for personnel involved in the delivery of health care as part of DDR processes to be aware that political priorities can affect operations, and can result in tensions with humanitarian principles. For example, this can occur when humanitarian programmes aimed at combatants are used to create an incentive for them to \u2018buy in\u2019 to the peace process.4", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f0539b3a-085e-4a50-a28c-a10531b935f1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 6, + "Paragraph": "Linking health action to DDR and the peace process A good understanding of the various phases of the peace process in general, and of how DDR in particular will take place over time, is vital for the appropriate timing and targeting of health activities. Similarly, it must be clearly understood which national or international institutions will lead each aspect or phase of health care delivery within DDR, and the coordination mechanism needed to streamline delivery. Operationally, deciding on the tim- ing and targeting of health interventions requires two things to be done. First, an analysis of the political and legal terms and arrangements of the peace proto- col and the specific nature of the situation on the ground should be carried out as part of the general assessment that will guide and inform the planning and implementation of health activities. For appropriate planning to take place, information must be gathered on the expected numbers of combatants, associates and dependants involved in the process; their gender- and age-specific needs; the planned length of the demobilization phase and its location (demobilization sites, assembly areas, cantonment sites, or other); and local capa- cities for the provision of health care services. Key questions for the pre-planning assessment: Second, the health sector should be represented in all bodies established to oversee DDR from the earliest stages of the process possible. Early inclusion is essential if the guiding principles described above are to be applied in practice during operations. In particular: It can ensure that public health concerns are taken into account when key planning decisions are made, e.g., on the selection of locations for pick-up points or other assem- bly/transit areas, on the level of services that will be established there, and on the best way of dealing with different health needs; It can advocate in favour of vulnerable groups; It will establish a political, legislative and administrative link with national authorities, which is necessary to create the space for health actions in the short and medium/long term. For example, appropriate support for the health needs of specific groups, such as girl mothers or the war-disabled, can be provided only if the appropriate legislative/ administrative frameworks have been set up and capacity-building begun; It will reduce the risk of creating ad hoc health services for former combatants, women associated with armed groups and forces, dependants and the communities to which they return. Health programmes in support of a DDR process can be highly visible, but they are seldom more than a limited part of all the health-related activities taking place in a country during a transition period; Careful cooperation with health and relevant non-health national authorities can result in the establishment of health programmes that start out in support of demobilization, but later, through coordination with the overall rehabilitation of the country strategy for the health sector, become a sustainable asset in the reintegration period and beyond; It can bring about the adoption at national level of specific health guidelines/protocols that are equitable, affordable by and accessible to all, and gender- and age-responsive. It should be seen as a priority to encourage the collaboration of international and national health staff in all areas of health-related work, as this increases local ownership of health activities and builds capacity.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "f299e831-15d8-42ad-ac49-14e77f8b11c5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 7, + "Paragraph": "Health and the sequencing of DDR processes The different aspects of DDR processes \u2014 disarmament, demobilization and reintegration \u2014 may not necessarily follow a fixed chronological order, and are closely interrelated. The extent of the contribution of health activities in each phase increases steadily, from assess- ment and planning to the actual delivery of health services. Health services, in turn, will evolve: starting by focusing on immediate, life-threatening conditions, they will at a later stage be required to support ex-combatants and those associated with them when they return to civilian life and take up civilian jobs as a part of reintegration. Figure 1 provides a simplified image of the general direction in which the health sector has to move to best support a DDR process. Clearly, health actions set up to meet the specific needs of the demobilization phase, which will only last for a short period of time, must be planned as only the first steps of a longer-term, open-ended and comprehensive reintegra- tion process. In what follows, some of the factors that will help the achievement of this long-term goal are outlined.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "5e669443-7ad3-4fb4-a82b-c56bbd98f4fc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 7, + "Paragraph": "Health and the geographical dimensions of DDR The geography of the country/region in which the DDR operation takes place should be taken into account when planning the health-related parts of the operation, as this will help in the difficult task of identifying the stakeholders and the possible partners that will be involved, and to plan the network of fixed structures and outreach circuits designed to cater for first health contact and/or referral, health logistics, etc., all of which have to be organized at local, district, national or even international (i.e., possibly cross-border) levels. Health activities in support of DDR processes must take into account the movements of populations within countries and across borders. From an epidemiological point of view, the mass movements of people displaced by conflict may bring some communicable diseases into areas where they are not yet endemic, and also speed up the spread of outbreaks of diseases that can easily turn into epidemics. Thus, health actors need to develop appropriate strategies to prevent or minimize the risk that these diseases will propagate and to allow for the early detection and containment of any possible epidemic resulting from the popula- tion movements. Those whom health actors will be dealing with include former combatants, associates and dependants, as well as the hosting communities in the transit areas and at the final destinations. In cases where foreign combatants will be repatriated, cross-border health strategies should be devised in collaboration with the local health authorities and partner organizations 5.40\tin both the sending and receiving countries (also see IDDRS 5.40 on Cross-border Popula- tion Movements). Figure 2 shows the likely movements of combatants and associates (and often their dependants) during a DDR process. It should be noted that the assembly/cantonment/ transit area is the most important place (and probably the only place) where adult combat- ants come into contact with health programmes designed in support of the DDR process, because both before and after they assemble here, they are dispersed over a wide area. Chil- dren should receive health assistance at interim care centres (ICCs) after being released from armed groups and forces. Before and after the cantonment/transit period, combatants, associates and their dependants are mainly the responsibility of the national health system, which is likely to be degraded and in need of systematic, long-term support in order to do its work.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "c2937dc9-99d2-42ef-8432-498d97c0a159", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 9, + "Paragraph": "Operational objectives for the health sector in the DDR process The overall goal of health action is to reduce avoidable illness and death. In the context of DDR, this requires that the health programmes focus on providing: basic, preventive and curative, specifically designed and good-quality health care that is easily accessible at every stage of the process \u2014 in any transit stations, in demobili- zation/cantonment/assembly camps if they are used, in ICCs for children, and in the communities where combatants will live once they are demobilized; basic health care, including reproductive health care and psychosocial care, that is appropriate to the different needs of men, women, youth, girls and boys going through DDR. This service needs to be supported by effective referral systems and emergency back-up systems, e.g., to control outbreaks of infectious diseases or deal with immediate, life-threatening mental trauma. Health information and advice must be made available in language that can be understood by the different groups for which the health care is designed; training of camp managers on health-related matters, e.g., on the construction of appro- priate areas for the registration and protection of vulnerable groups, the provision of food appropriate to different needs (e.g., for the sick, and for nursing mothers, infants and small children), problems with drug and alcohol addiction, water, shelter, sanita- tion, supplies of items needed for hygiene (soap, buckets), and fuel. Women and girls will need specific assistance to meet their hygiene needs, including menstrual supplies and clean birthing kits.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "ff8bedb6-0cf5-4d8b-8b86-e621a1ff053c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 9, + "Paragraph": "The role of the health sector in the planning process The health sector has three main areas of responsibility during the planning phase: (1) to assess the epidemiological profile in the areas and populations of interest; (2) to assess exist- ing health resources; and (3) to advise on public health concerns in choosing the sites where combatants, women associated with armed groups and forces and/or dependants will be assembled. Planning to meet health needs should start as early as possible and should be constantly updated as the DDR process develops.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9a6aebf5-d593-461b-bad0-07b1548047d7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 9, + "Paragraph": "Assessing epidemiological profiles Three key questions must be asked in order to create an epidemiological profile: (1) What is the health status of the targeted population? (2) What health risks, if any, will they face when they move during DDR processes? (3) What health threats might they pose, if any, to local communities near transit areas or those in which they reintegrate? Assess the risks and plan accordingly.5 Information that will be needed includes: the composition of target population (age and sex) and their general health status; the transit sites and the health care situation there; the places to which former combatants and the people associated with them will return and the capacity to supply health services there. Epidemiological data, i.e., at least minimum statistics on the most prevalent causes of illness and death, are usually available from the national health authorities or the WHO country office. These data are usually of poor quality in war-torn countries or those in transi- tion into a post-conflict phase, and are often outdated. However, even a broad overview can provide enough information to start planning. More detailed and updated information may be available from NGOs working in the area or the health services of the armed forces or groups. If possible, it should come from field assessments or rapid surveys.6 The following guiding questions should be asked: What kinds of population movements are expected during the DDR process (not only movements of people associated with armed forces and groups, but also an idea of where populations of refugees and internally displaced persons might intersect/interact with them in some way)? What are the most prevalent health hazards (e.g., endemic diseases, history of epidem- ics) in the areas of origin, transit and destination? What is the size of groups (women combatants and associates, child soldiers, disabled people, etc.) with specific health needs? Are there specific health concerns relating to military personnel, as opposed to the civil- ian population?", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "aa264418-74fe-48b2-9486-4d22c72b03ad", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 10, + "Paragraph": "Assessment of health resources After the completion of an assessment of the health needs to be met in a crisis, the capacity of the system to meet these needs should be examined. It is necessary to identify the system\u2019s main weaknesses and to make improvements so that they do not endanger the success of the DDR process.7 The following information is needed: What is the location and state of existing health infrastructure? What can be done to upgrade it quickly, if necessary? Do adequate storage facilities for health supplies exist nearby? Is there an adequate communications infrastructure/system with a good flow of information? What human resources are there (numbers, qualification and experience levels, and geographical distribution)? Where is the closest humanitarian and/or health organization? Is it ready to participate or offer support? Who will coordinate efforts? What material resources, including supplies, equipment and finances, have been established? What is the state of support systems, including transport, energy, logistics and admin- istration? After answering these questions and assessing the situation, it is possible to identify important gaps in the health system and to start taking steps to support the DDR process (e.g., rehabilitating a health centre in an area where troops will be assembled), and to identify stakeholders \u2014 national and international \u2014 who can form partnerships with the health sector. When relevant and possible, the level of health expertise within armed groups and forces should be assessed to start identifying people who can be trained during the demo- bilization phase. Health expertise should be understood in a wide sense to include, when this is relevant and appropriate, traditional practitioners, and combatants and associates who have experience of health work, even without formal education and training, provided that appropriate supervision is guaranteed.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d4880668-eadc-4e87-ac61-dd33d2e96187", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 11, + "Paragraph": "Support in the identification of assembly areas When assembly areas or cantonment sites are established to carry out demobilization and disarmament, health personnel should help with site selection and provide technical advice on site design. International humanitarian standards on camp design should apply, and gender-specific requirements should be taken into account (e.g., security, rape prevention, the provision of female-specific health care assistance). As a general rule, the area must conform with the Sphere standards for water supply and sanitation, drainage, vector control, etc. Locations and routes for medical and obstetric emergency referral must be pre-identi- fied, and there should be sufficient capacity for referral or medical evacuation to cater for any emergencies that might arise, e.g., post-partum bleeding (the distance to the nearest health facility and the time required to get there are important factors to consider here). When combatants are housed in military barracks or public buildings are restored for this purpose, these should also be assessed in terms of public health needs. Issues to con- sider include basic sanitary facilities, the possibility of health referrals in the surrounding area, and so on. If nearby health facilities are to be rehabilitated or new facilities established, the work should fit in with medium- to long-term plans. Even though health care will be provided for combatants, associates and dependants during the DDR process only for a short time, facilities should be rehabilitated or established that meet the requirements of the national strategy for rehabilitating the health system and provide the maximum long-term benefit possible to the general population.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5ab5a647-e90f-45e2-9b25-92ac5347f5d3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 11, + "Paragraph": "The role of health actions in the demobilization process The concrete features of a DDR health programme will depend on the nature of a specific situation and on the key characteristics of the demobilization process (e.g., how long it is planned for). In all cases, at least the follow- ing must be guaranteed: a medical screening on first contact, ongoing access to health care and outbreak control. Supplementary or therapeutic feeding and other specific care should be planned for if pregnant or lactating women and girls, children or infants, and chronically ill patients are expected at the site.8 Skilled workers, supplies, equipment and infrastructures will be needed inside, or within a very short distance from, the assembly area (within a maximum of one kilometre), to deliver, on a routine basis: (1) medical screening of newcomers; (2) basic health care; and, if necessary, (3) therapeutic feeding. Coordination with local health authorities and other sectors will ensure the presence of the necessary systems for medical evacuation, early detection of and response to disease outbreaks, and the equitable catering for people\u2019s vital needs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "ff848c93-8348-4e5b-aafb-c240b638ded4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 12, + "Paragraph": "Dealing with key health concerns during demobilization Health concerns will vary greatly according to the geographical area where the demobili- zation occurs. Depending on location, health activities will normally include some or all of the following: providing medical screening and counselling for combatants and dependants; establishing basic preventive and curative health services. Priority should go to acute and infectious conditions (typically malaria); however, as soon as possible, measures should also be set in place for chronic and non-infectious cases (e.g., tuberculosis and diabetes, or epilepsy) and for voluntary testing and counselling services for sexually transmitted infections (STIs), including HIV/AIDS; establishing a referral system that can cover medical, surgical and obstetric emergencies, as well as laboratory confirmation at least for diseases that could cause epidemics; adopting and adapting national standard protocols for the treatment of the most common diseases;9 establishing systems to monitor potential epidemiological/nutritional problems within assembly areas, barracks, camps for dependants, etc. with the capacity for early warning and outbreak response; providing drugs and equipment including a system for water quality control and bio- logical sample management; organizing public health information campaigns on STIs (including HIV/AIDS), water- borne disease, sanitation issues such as excreta disposal, food conservation and basic hygiene (especially for longer-term cantonment); establishing systems for coordination, communication and logistics in support of the delivery of preventive and curative health care; establishing systems for coordination with other sectors, to ensure that all vital needs and support systems are in place and functioning. Whenever people are grouped together in a temporary facility such as a cantonment site, there will be matters of specific concern to health practitioners. Issues to be aware of include: Chronic communicable diseases: Proper compliance with anti-TB treatment can be difficult to organize and sustain, but it should be considered a priority; HIV/AIDS: Screening of soldiers should be voluntary and carried out after combatants are given enough information about the screening process. The usefulness of screening when the system is not able to respond adequately (by providing anti-retroviral therapy and proper follow-up) should be carefully thought out. Combatants have the right to the confidentiality of the information collected;10 Violence/injury prevention: Cantonment is a strategy for reducing violence, because it aims to contain armed combatants until their weapons can be safely removed. However, there is a strong likelihood of violence within cantonment sites, especially when abducted women or girls are separated from men. Specific care should be taken to avoid all pos- sible situations that might lead to sexual violence; Mental health, psychosocial support and substance abuse:11 While cantonment provides an opportunity to check for the presence of self-directed violence such as drug and alcohol abuse, a key principle is that the best way of improving the mental well-being of ex- combatants and their associates is through economic and social reintegration, with com- munities having the central role in developing and implementing the social support systems needed to achieve this. In the demobilization stage of DDR, the health services must have the capacity to detect and treat severe, acute and chronic mental disorders. An evidence-based approach to substance abuse in DDR processes has still to be developed.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4a065944-5511-445a-8d88-d34ea85967fb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 13, + "Paragraph": "An essential DDR health package in resource-poor settings In sites where resources are limited, health planning to meet the needs of those going through the DDR process starts from a minimum package of medical screening, on-the-spot treat- ment, provision of condoms and medical evacuation/referral, which should be developed to cover, at least: early detection of and response to epidemic outbreaks; measles immunization + vitamin A for children aged 0\u201315 years; polio immunization for children under 5; treatment of severe, acute conditions (malaria, acute respiratory infections), diarrhoea, anaemia in pregnant women, acute malnutrition, dressing of wounds, STIs, etc.); uncomplicated deliveries; provision of long-lasting impregnated bed nets to prevent malaria; referral of serious cases to secondary/tertiary care facilities; voluntary testing and counselling for STIs, including HIV/AIDS; care and treatment for survivors of sexual violence, including testing and treatment for STIs. The delivery of such services requires the following personnel and equipment in each cantonment site or assembly area: an average team of one doctor or mid-level health technician, 4\u20135 public health care nurses and 3\u20134 ancillary workers per camp; one midwife where necessary; essential medicines and equipment (for sterilization, stabilization, cold-chain, etc.); rapid tests and combined treatment for P. Falciparum malaria; means of transport, easy procedures and pre-positioned facilities for medical/obstetric evacuation; options \u2014 either locally or by referral \u2014 for the treatment of chronic conditions: at least TB and epilepsy should be covered; back-up systems \u2014 teams on call, easy-access procedures, transport and buffer stocks (including protective equipment) \u2014 for early detection and treatment of outbreaks; availability and adoption of national standard case definitions and case management protocols.12 WHO provides hospitals with emergency health kits and UNFPA can provide emergency reproductive health kits (which may include post-exposure prophylaxis kits, when appro- priate) to individuals, clinics and hospitals, along with training on their use as and when 5.60\tthis is appropriate (also see IDDRS 5.60 on HIV/AIDS and DDR).13", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "79a824f8-28a8-40c5-8663-c065de29f9d5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 14, + "Paragraph": "Training of personnel Training of local health personnel is vital in order to implement the complex health response needed during DDR processes. In many cases, the warring parties will have their own mili- tary medical staff who have had different training, roles, experiences and expectations. However, these personnel can all play a vital role in the DDR process. Their skills and knowl- edge will need to be updated and refreshed, since the health priorities likely to emerge in assembly areas or cantonment sites \u2014 or neighbouring villages \u2014 are different from those of the battlefield. An analysis of the skills of the different armed forces\u2019 and groups\u2019 health workers is needed during the planning of the health programme, both to identify the areas in need of in-service training and to compare the medical knowledge and practices of different armed groups and forces. This analysis will not only be important for standardizing care during the demobilization phase, but will give a basic understanding of the capacities of military health workers, which will assist in their reintegration into civilian life, for example, as employees of the ministry of health. The following questions can guide this assessment process: What kinds of capacity are needed for each health service delivery point (tent-to-tent active case finding and/or specific health promotion messages, health posts within camps, referral health centre/hospital)? Which mix of health workers and how many are needed at each of these delivery points? (The WHO recommended standard is 60 health workers for each 10,000 members of the target population.) Are there national standard case definitions and case management protocols available, and is there any need to adapt these to the specific circumstances of DDR? Is there a need to define or agree to specific public health intervention(s) at national level to respond to or prevent any public health threats (e.g., sleeping sickness mass screening to prevent the spread of the diseases during the quartering process)? It is important to assume that no sophisticated tools will be available in assembly or transit areas. Therefore, training should be based on syndrome-based case definitions, indi- vidual treatment protocols and the implementation of mass treatment interventions.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "68a2abc3-bae6-4de9-8ca4-a28402ad2b4a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 15, + "Paragraph": "Responding to the needs of vulnerable groups Special arrangements will be necessary for vulnerable groups. WHO recommends planning for children, the elderly, chronically sick and disabled people, as well as for women and girls who are pregnant or lactating, and anyone who has survived sexual violence. Guiding questions to assess the specific needs of each of these groups are as follows: What are the specific health needs of these groups? Do they need special interventions? Are health personnel aware of their specific needs? Are health personnel trained to assist individuals who have survived extreme inter- personal violence and have symptoms that they may be unable or unwilling to describe (e.g., survivors of rape describing \u2018stomach pains\u2019)?", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "68645507-ee22-4781-8966-9a152b2d74c4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 15, + "Paragraph": "Children and adolescents associated with armed groups and forces Boy and girl child and adolescent soldiers can range in age from 6 to 18. It is very likely that they have been exposed to a variety of physical and psychological traumas, including mental and sexual abuse, and that they have had very limited access to clinical and public health services. Child and adolescent soldiers, who are often brutally recruited from very poor communities, or orphaned, are already in a poor state of health before they face the additional hardship of life with an armed group or force. Their vulnerability remains high during the DDR process, and health services should therefore deal with their specific needs as a priority. Special attention should be given to problems that may cause the child fear, embarrassment or stigmatization, e.g.: child and adolescent care and support services should offer a special focus on trauma- related stress disorders, depression and anxiety; treatment should be provided for drug and alcohol addiction; there should be services for the prevention, early detection and clinical management of STIs and HIV/AIDS; special assistance should be offered to girls and boys for the treatment and clinical management of the consequences of sexual abuse, and every effort should be made to prevent sexual abuse taking place, with due respect for confidentiality.14 To decrease the risk of stigma, these services should be provided as a part of general medical care. Ideally, all health care providers should have training in basic counselling, with some having the capacity to deal with the most serious cases (also see IDDRS 5.20 on Youth and DDR and IDDRS 5.30 on Children and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "200021f3-7629-4685-bcad-47e702eaa582", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 15, + "Paragraph": "Disabled or chronically ill people To assist this group, DDR health practitioners and national authorities should agree on a system to respond to war disabilities in order for disabled people to gain entitlement to disability pensions and/or to join the social security system. An approach can be designed that measures an individual\u2019s physical impairment and how much the impairment limits his/her capacity to benefit from socio-economic reintegration.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d7f0fd90-bc4f-4dc0-b465-bca1d20f4e22", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 7, + "Paragraph": "Women Women combatants and other women associated with armed forces and groups in non- combat roles require special measures to protect them throughout the cantonment or assembly 5.20 5.30 5.10\t5.60 phase, in transit camps and while travelling to their reintegration locations. Camps must be designed to offer women security, privacy and protection. Women who are pregnant, lac- tating or caring for young children will require health services that cater for their specific needs. Those who have survived rape or other gender-based violence should receive access to the Minimal Initial Service Package for reproductive health.15 Particular care should be taken to include women in the health team at assembly areas or cantonment sites (also see IDDRS 5.10 on Women, Gender and DDR and IDDRS 5.60 on HIV/AIDS and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "477e1bb7-f8d2-46da-b680-6c9ff6dae2a1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 16, + "Paragraph": "The role of health services in the reintegration process This section explains how to use the resources allocated to health action in DDR to reinforce and support the national health system in the medium and longer term. It needs to be emphasized that after combatants are discharged, they come under the responsibility of the national health system. It is vital, therefore, for all the health actions carried out during the demobilization phase to be consistent with national protocols and regulation (e.g., the administration of TB drugs). Especially in countries emerging from long-lasting violent conflict, the capacity of the national health system may not be able to meet the needs of population, and more often than not, good health care is expensive. In this case, preferential or subsidized access to health care for former combatants and others associated with armed groups and forces can be provided if possible. It needs to be em- phasized that the decision to create positive discrimination for former combatants is a political one.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e31bef68-a486-43ee-9bf6-8eda11711eea", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 16, + "Paragraph": "Systems for programme implementation The diagram in figure 3 (to be read from the top) shows how it is possible to systematize the various components, levels and executive lines of the health programme in a country emerging from conflict. Whatever the overall institutional setting in which DDR takes place, WHO, in consultation with the other agencies contributing to health service deliv- ery, will be represented as member of the UN/Inter-Agency Standing Committee country team. The WHO country representatives will be in a position to: (1) ensure that the neces- sary lines of liaison and coordination with the national health authorities are set up and managed; and (2) provide health information to other sectors and agencies, in order to ensure cooperation among the different actors involved in different components of the DDR process. In administering a DDR programme, the health sector is expected to supply both the technical guidance and the resources \u2014 personnel, supplies, funds, and administrative and logistic support \u2014 that are necessary for various partners to deliver coordinated and effective health preventive and curative care at the local level, i.e., in the assembly camps, etc., and beyond into the reintegration phase. In some instances, the military will be the main implementing partners at local level, with the support, in most cases, of medical NGOs and possibly the health units of peacekeeping forces.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-5.80-Disability-Inclusive-DDR.json b/src/Static/data/json/IDDRS-5.80-Disability-Inclusive-DDR.json new file mode 100644 index 0000000..a50f2ac --- /dev/null +++ b/src/Static/data/json/IDDRS-5.80-Disability-Inclusive-DDR.json @@ -0,0 +1,971 @@ +[ + { + "ID": "81f5833c-5ef1-4d49-9940-895dc3a32929", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "Summary DDR requires specific planning and interventions to eliminate barriers to participation and to address the specific needs of persons with disabilities. Disability-inclusive DDR processes shall be led by national and local authorities, in line with national and local policies and strategies, and build on existing systems and structures. A DDR process and all forms of support provided for that process shall adhere to humanitarian prin- ciples, including non-discrimination on the basis of disability and the best practices of disability inclusion in humanitarian action. Consistent with the principles of disa- bility-inclusive humanitarian action, the inclusion of persons with disabilities in DDR shall encompass mainstreaming and targeted interventions. Armed conflict relates to disability in two respects. First, it is a cause of disability, and, second, it is a complicating factor for persons living with disability who face spe- cific support and protection needs during conflict and its aftermath. Impairments giv- ing rise to disability occur in direct and indirect ways in the context of conflict. Direct impairments arise as a consequence of the immediate physical and psychosocial conse- quences of violent conflict, such as being hit by a bullet, stepping on a land mine or be- ing raped. Impairment also arises indirectly from conflict, and can include psycholog- ical trauma from witnessing violence, as well as a lack of basic needs (shelter, adequate clothing, sanitation, water, food, health care, etc.) and exposure to the elements.1 This context shall be borne in mind in the design and implementation of DDR processes. Conflict can also serve to amplify existing barriers for persons with disabilities, making it even more challenging to access the benefits of a DDR process. For example, destruction of infrastructure such as roads and the breakdown of social safety nets can result in the exclusion of persons with disabilities. Furthermore, conflict often weakens community-based organizations, and organizations of persons with disabilities (OPDs) may be particularly affected, owing to their frequently marginalized status in society. The intersectionality of disability and gender can heighten risk. Women and girls with disabilities face a double stigma, often experience abuse and social exclusion, and are financially and physically vulnerable. Additionally, women and girls are often car- egivers and may take on additional caregiving roles for returning DDR participants with disabilities. Disability-inclusive DDR shall be based on a careful situational anal- ysis of the context. This shall include an analysis of any potential disability as well as age- or gender-related barriers to participation in DDR. The capacities and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of disability-inclusive assistance. Protec- tion risks that could potentially be created by this assistance shall also be assessed. For example, it is important to analyse whether DDR support to former members of armed forces and groups with disabilities may inadvertently create or exacerbate household or community tensions.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "c581d1d3-fc60-459c-a772-246f8a6a72a8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module outlines the requirements for the planning, design and implementation of disability-inclusive DDR processes in both mission and non-mission settings. It focuses on disability inclusion as part of a DDR process for ex-combatants, persons formerly associated with armed forces and groups, dependants and community members. It also examines the different modalities through which disability-inclusive approaches and support may be provided.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f2d686d-22b0-4e5f-ad01-d385aa2365d7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations This section contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. The following terms and definitions are drawn from the Convention on the Rights of Persons with Disabilities, the Committee on the Rights of Persons with Disabilities, the UN Disability Strategy and UNICEF\u2019s Guidance on Including Children with Disabili- ties in Humanitarian Action. Accessibility means ensuring persons with disabilities have access, on an equal basis with others, to the physical environment; transportation; information and com- munications, including information and communications technologies and systems; and other facilities and services open or provided to the public, in both urban and rural areas. This includes the identification and elimination of obstacles and barriers to accessibility. Accessible formats refer to the provision of information in a variety of formats to make it accessible to persons with disabilities, including displays of text, Braille, tactile communication, large print, plain language, human reader, written and audio. CRPD compliant refers to policies and practices that follow the general principles and obligations set forth in the Convention on the Rights of Persons with Disabilities (CRPD) and the interpretive guidance of the CRPD Committee. Disability is an evolving concept and results from the interaction between persons with impairments and attitudinal and environmental barriers that hinder their full and effective participation in society on an equal basis with others. Discrimination on the basis of disability means any distinction, exclusion or restriction on the basis of disability that has the purpose or effect of impairing or nullifying the recognition, enjoyment or exercise, on an equal basis with others, of all human rights and fundamental freedoms in a political, economic, social, cultural, civil or any other field. It includes all forms of discrimination, including denial of reasona- ble accommodation. Disability-disaggregated data means data that are collected and presented separately on the basis of disability/impairment type. The availability of disability- disaggregated data (together with sex and age disaggregation) is an essential precondi- tion for building disability-inclusive policies and interventions. Disability inclusion is an approach that aims to identify and dismantle barriers faced by persons with disabilities, support their specific requirements and ensure their full participation. It also means ensuring the meaningful participation of persons with disabilities in all their diversity, the promotion of their rights, and the consideration of disability-related perspectives in compliance with the CRPD. Disability-inclusive DDR processes are planned, implemented, monitored and evaluated in a disability-inclusive manner. Intersectionality is the interaction of multiple factors, such as disability, age and gender, which can create multiple layers of discrimination, and, depending on the con- text, entail greater legal, social or cultural barriers. These can further hinder a person\u2019s access to and participation in humanitarian action and, more generally, in society. Organizations of persons with disabilities (OPD) are organizations com- prising a majority of persons with disabilities \u2013 at least half their membership \u2013 and governed, led and directed by persons with disabilities. Organizations of persons with disabilities should be rooted in, committed to and fully respect the principles and rights recognized in the CRPD. Persons with disabilities include those who have long-term physical, mental, intellectual or sensory impairments that in interaction with various barriers may hinder their full and effective participation in society on an equal basis with others (CRPD, art. 1). Reasonable accommodation means necessary and appropriate modification and adjustments not imposing a disproportionate or undue burden, where needed in a particular case, to ensure to persons with disabilities the enjoyment or exercise on an equal basis with others of all human rights and fundamental freedoms (CRPD, art. 2). Rehabilitation in the context of disability refers to a range of effective and appro- priate measures, including through peer support, to enable persons with disabilities to attain and maintain maximum independence; full physical, mental, social and voca- tional ability; and full inclusion and participation in all aspects of life (CRPD, art. 26). Universal design means the design of products, environments, programmes and services to be usable by all people, to the greatest extent possible, without the need for adaptation or specialized design. Universal design shall not exclude assistive devices for particular groups of persons with disabilities, where needed (CRPD, art. 2).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "73e364e3-d37b-4bb6-bd56-4de493103363", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 6, + "Paragraph": "Introduction Male and female persons with disabilities have unique needs and experiences. In sit- uations of risk, they are entitled to specific care and protection, and their intersecting rights and individual circumstances shall be given due consideration. International law recognizes persons with disabilities as individuals endowed with agency and legal capacity and acknowledges the risk and differentiated impact that armed conflict and human rights abuses can have on persons with disabilities. Persons with disabilities face heightened risks and vulnerability during conflict. Inadequate attention to the needs of persons with disabilities in humanitarian opera- tions and in DDR may result in harms. Barriers such as inaccessible shelters, lack of accessible warnings in alternate formats, barriers to evacuation, communication barri- ers, loss of assistive aids (for example, wheelchairs and walking canes), and challenges in obtaining long-term recovery services (for example, fistula repair or psychosocial recovery services) are some examples of how inattention to disability access inhibits participation. Research highlights the shortcom- ings of traditional approaches to meeting the needs of persons with disabilities that focus narrowly on specific medical and rehabilitation needs, to the exclusion of social and economic needs.2 It also demon- strates that separate and segregated programming for individuals with disabilities leads to isolation and disaffection. This is instructive for disability inclusion in DDR and in the broader context of post-conflict peacebuilding and development. Disability- inclusive DDR processes shall therefore not be siloed, but comprehensive and integrated. A twin-track approach is appropriate, meaning that DDR processes shall be fully inclusive of persons with disabilities and that targeted, specific interventions may also be needed to address specific needs (see Figure 1).3 Targeted interventions may include empowering and supporting persons with disabilities to participate in a DDR process or providing assistive technologies (such as mobility or hearing aids). Applied to DDR, this means that persons with disabilities must be able to access a DDR process on an equitable basis with other participants. The planning, design, implementation and evaluation of a DDR process shall reflect this objective. However, mainstreaming alone is insufficient to ensure that no one is left behind. Therefore, a DDR process shall also, where necessary, address the individual and collective requirements of DDR par- ticipants and beneficiaries with disabilities by providing targeted interventions. While this may include programmes to address specific requirements, what the twin-track approach does not do is support separate or segregated programming. Rather, a DDR process shall aim for disability inclusion within an integrated DDR process. Many potential DDR participants and beneficiaries will have experienced the onset of one or more physical, sensory, cognitive or psychosocial disabilities during conflict. These individuals are likely to have been exposed to trauma. It is therefore im- portant for DDR practitioners to understand and be trained to respond to the specific needs of persons with disabilities and their families. The heterogeneity of disability means that former members of armed forces and groups with disabilities will have differing needs and face different kinds of barriers to participation in DDR. For example, former members of armed forces and groups with disabilities who find themselves restricted in their mobility may not be able to call attention to their specific requirements in DDR processes. DDR planning must also account for the reality that former members of armed forces and groups with disabili- ties may face physical and communication barriers in accessing information about the potential support offered through a DDR process.4 In addition, the self-demobilization of ex-combatants with disabilities, a common phenomenon, means that they may be difficult to identify and thus be excluded from benefits unless specific measures are taken to identify and include them. Association with an armed group combined with disability results in intersec- tional stigma and disadvantage, including for women and girls. Emerging research demonstrates that females with ex-combatant status are far less likely to have ties with the disability community or to embrace a disability identity that might facilitate out- reach to OPDs for support.5 Women with disabilities, including female ex-combatants and women and girls associated with armed forces and groups, are also at greater risk of sexual violence due to the insecurity brought about by armed conflict.6 Survivors of sexual violence (both male and female) are at risk of psychosocial disability, vul- nerability to HIV and other sexually transmitted diseases, and physical disability ow- ing to violence, including the need for fistula surgery. While it is sometimes assumed that persons with disabilities do not require access to sexual and reproductive health services, including HIV and AIDS services, this is a falsehood.7 Former members of armed forces and groups with disabilities experience multi- dimensional discrimination in making a successful transition back into soci- ety in ways that are both similar to and distinct from their counterparts with- out disabilities. Discrimination on ac- count of disability works in combina- tion with other status attributes based on association with, for instance, a par- ticular fighting force, gender, poverty, ethnicity, age and so forth. The well-documented barriers that persons with disabil- ities experience during peacetime in accessing education, employment, health and rehabilitation, and an adequate standard of living are exacerbated for former mem- bers of armed forces and groups with disabilities. These individuals confront re-en- try into a fragile society with weak institutions and infrastructure and, all too fre- quently, an under-developed disability law and policy environment. Understanding DDR through a disability lens facilitates the identification of barriers to participation and the possibilities for dismantling them to create an inclusive process. For some examples of these barriers, see Table 1. For a checklist of steps that may be taken to remove these barriers, see Annex B. Making DDR efforts responsive to the needs of persons with disabilities presents some challenges, and yet recognition should be given to the problem-solving skills, resilience and coping strategies of these individuals and the role that peer support can and should play in facilitating their reintegration into society. Provided persons with disabilities are afforded opportunities to participate in DDR, they can and should emerge as leaders in their communities. Former members of armed forces and groups with disabilities should be given meaningful roles in the post-conflict period and rec- ognized as having a stake in the post-conflict social order and development efforts.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "eba528e1-2adb-417e-af01-3554b2a1a530", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 10, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the inclu- sion of persons with disabilities during DDR processes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f9cba5c-bcb8-4f5b-990b-11af1c746290", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 10, + "Paragraph": "Criteria for participation/eligibility DDR practitioners shall ensure that they do not exclude or discriminate against per- sons with disabilities. Persons with disabilities shall obtain meaningful access to DDR services, programmes, aid and benefits on an equal basis with other persons. No group is to be given special status or treatment within a particular DDR process, and indi- viduals shall not be discriminated against on the basis of disability, gender, age, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associations. This is particularly important when establishing eligibility criteria. All members of armed forces and groups \u2014 male, female, and persons with or without disabilities \u2014 shall be equally able to access clear information about their eligibility for DDR, as well as the benefits available to them and how to obtain them. Eligibility criteria shall be clearly provided and persons with disabilities shall understand what they can expect regarding the accessibility of facilities and services.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "cc60fdde-6b1c-402f-98d0-8d78f8e50b9c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 10, + "Paragraph": "Unconditional release and protection of children Actions shall be taken to identify and dismantle barriers to entry to DDR processes for children associated with armed forces and groups with disabilities. These children will be at heightened risk of community exclusion and family separation. Support shall include referral to ongoing community-based support and disability- and age-appro- priate services (for example, community-based rehabilitation and inclusive education) to help ensure that reintegrated children with disabilities can stay with their families and participate fully in the community. DDR practitioners shall be aware that, in all actions concerning children with disabilities (irrespective of former association with armed forces or groups), the best interests of the child shall be a primary consideration (see IDDRS 5.20 on Children and DDR). Where possible, DDR practitioners shall also provide support to the caregivers and family members of children with disabilities who were formerly associated with armed forces and groups both during and after the family reunification process.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "347b10b0-3adc-4674-8e2c-27d6c70cb38d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 11, + "Paragraph": "Accountability and transparency During the planning, design, implementation and evaluation of a DDR process, DDR participants and beneficiaries with disabilities shall be consulted and participate in key decisions that affect their well-being. Persons with disabilities shall be recognized and respected as experts in relation to their needs and engaged at all stages of the DDR process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "fffdc4d6-93dc-41b6-8c51-a490ad7bef47", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 11, + "Paragraph": "Nationally and locally owned Successful disability inclusion is a long-term process going beyond DDR. It requires leadership from national and local authorities and shall be undertaken in accordance with national and local policies and strategies, building on existing systems and struc- tures. Therefore, disability-inclusive DDR processes shall, as early as possible, estab- lish links to existing national and local policies and strategies on disability, work to strengthen them and create linkages with broader peacebuilding and recovery efforts for disability inclusion. If such policies and strategies do not already exist, DDR processes may trigger their establishment. Persons with disabilities in the local community shall be consulted and engaged in planning from the start. The capacities of local communities and local actors shall also be strengthened in order for initiatives to be sustainable. Planning shall seek to build on existing national and local capacity rather than create new externally led programmes or structures. The capacity of existing rehabilitation centres and services facilities shall be augmented rather than parallel facilities being set up only for former members of armed forces and groups with disabilities. This approach also assists in building referral systems and social support groups for former members of armed forces and groups with disabilities who may need follow-up services.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "bc66b19b-bb32-4ea4-8099-dea5e1171e15", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 11, + "Paragraph": "Well planned Members of the local disability community and former members of armed forces and groups with disabilities shall be encouraged to contribute to the planning and imple- mentation of DDR processes. DDR practitioners shall ensure that the planning and design of DDR processes facilitates equal access to DDR sites, procedures, services and support, with the provision of individual support as needed. The principles of accessi- bility and universal design shall be addressed in DDR planning, design, implementation and evaluation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "acf797ac-5d4e-412b-9b6c-6cdd79bc73c1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 12, + "Paragraph": "Public information and community sensitization Where appropriate, DDR practitioners shall support broad gender-responsive commu- nity sensitization programming to raise awareness and address stigma regarding per- sons with disabilities. DDR practitioners shall also work with state and local leaders, civil society representatives and media to portray persons with disabilities in ways that counter stigmatization, marginalization and stereotyping. The communities to which former members of armed forces and groups will return, including OPDs in these com- munities, shall be offered information and awareness-raising sessions to help them un- derstand the DDR process. More broadly, public information and strategic communica- tion on DDR shall be provided in various formats to ensure the widest possible access for persons with disabilities (see IDDRS 4.60 on Public Information and Strategic Com- munication in Support of DDR). This information should encourage former members of armed forces and groups with disabilities to participate. Moreover, positive images and voices of persons with disabilities shall be reflected in such campaigns.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "94ffe693-e5b4-4a4c-be76-7d5be66efa44", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 12, + "Paragraph": "Legal frameworks DDR processes are undertaken within the context of the international legal frame- work of rights and obligations (see IDDRS 2.11 on The Legal Framework for UN DDR). These rights and frameworks are relevant to the implementation of disability-inclusive DDR. This includes, in particular, international human rights law, international hu- manitarian law, international criminal law, international refugee law, and international counter-terrorism and arms control frameworks. UN-supported DDR processes shall be implemented so as to ensure that the relevant rights and obligations under that normative legal framework are respected. DDR practitioners shall be aware of the international conventions that the Member State in which they operate has signed and ratified specifically related to persons with disabilities. The discussion that follows summarizes the primary authorizing environment for approaching disability inclusion in a DDR context. The list is not exhaustive but takes into account the law and policy instruments that have been adopted since 2006. The chart below identifies the primary legal framework for advancing disability-inclusive DDR and is followed by a more detailed discussion of the legal instruments that are especially important for disability inclusion. Thereafter, additional policy frameworks are reviewed.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "90be691c-e256-4991-9925-dc3fd7f106be", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 13, + "Paragraph": "International human rights law Consistent with Article 55 of the UN Charter, UN DDR practitioners have a duty, in car- rying out their work, to promote and respect the human rights of all DDR participants and beneficiaries. These international human rights obligations are elaborated in the core human rights conventions, all of which apply to persons with disabilities. Of par- ticular importance for disability-inclusive DDR are the obligations set out in the CRPD.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f654de68-d0e2-4689-8487-3885ef8e5758", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 4, + "Paragraph": "Convention on the Rights of Persons with Disabilities The CRPD, adopted in 2006 and now nearing universal ratification, reflects current international law on the protection of persons with disabilities and the prevailing conceptualization of disability. Moreover, it integrates within its frame the protection regime extant in international humanitarian law through its provision on the protection of persons with disabilities in situations of risk. Article 11 of the CRPD requires positive measures of protection and safety for per- sons with disabilities affected by situations of risk, including natural disasters, armed conflicts and other emergencies. These persons include combatants and others disa- bled as a consequence of armed conflict. The necessity of such protection is recognized overtly in the CRPD\u2019s preamble, which affirms that \u201cthe observance of applicable hu- man rights instruments [is] indispensable for the full protection of persons with disa- bilities, in particular during armed conflicts and foreign occupation\u201d. Notably, the adoption of the CRPD created a mandate for the United Nations and triggered the adoption of a UN-wide Disability Inclusion Strategy (see section 5.4) that commits to an approach to disability inclusion that is rights-based and informed by a social model. Furthermore, article 32 of the CRPD sets out obligations to ensure that internation- al development programmes \u2013 whatever the sector of development in question \u2013 are inclusive of persons with disabilities, both as beneficiaries of development and as par- ticipants in processes of development.8", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ecfb309c-cc1b-4331-8f85-c4df4af4f58e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 14, + "Paragraph": "Convention on the Rights of the Child Article 23 of the Convention on the Rights of the Child (CRC) recognizes that a men- tally or physically disabled child should enjoy a full and decent life, in conditions that ensure dignity, promote self-reliance and facilitate the child\u2019s active participation in the community. The CRC recognizes the right of a disabled child to special care and encourages the extension of assistance to the eligible child and those responsible for his or her care. Assistance shall be designed to ensure that the disabled child has effective access to and receives education, training, health-care services, rehabilitation services, preparation for employment and recreation opportunities in a manner conducive to the child\u2019s achieving the fullest possible social integration and individual development, including his or her cultural and spiritual development (CRC, art. 23, para. 3).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d25e8605-3555-4f61-9076-d2ad679694de", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 14, + "Paragraph": "International humanitarian law obligations International humanitarian law seeks both to limit the effects of armed conflict, prin- cipally through protecting persons who are not or are no longer participating in hos- tilities, and to regulate the means and methods of warfare. The Geneva Conventions (1949) and the two Additional Protocols (1977) provide protections to persons who are in need of specific protection, including civilians or combatants who have been injured as a result of conflict as well as civilians with disabilities.9 International humanitarian law thus sets out positive measures for persons with disabilities that must be undertak- en to ensure that they effectively access services on an equal basis with others. These include, among others, measures such as the adaptation of infrastructure and informa- tion on available vital services relating to water, food, sanitation, shelter, health care and rehabilitation, the facilitation of support to transport food and non-food relief items, the continued provision of specific services required by persons with disabilities, or assistance to victims of the use of certain weapons in armed conflicts. The Mine Ban Treaty in Article 6(3) creates an obligation for the socioeconomic reintegration of land- mine survivors and, more expansively, the Cluster Munitions Convention, rooted in obligations under international humanitarian law and the CRPD, sets out implementa- tion measures including disability and sex-disaggregated data collection, the adoption and implementation of national laws and policies, the development of national plans and budgets, and the requirement to ensure the effective participation of cluster mu- nition victims and their representative organizations. These protection measures have clear application to the DDR context.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "2cb7f19e-7314-4a73-b00f-ee44849400e8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 15, + "Paragraph": "Domestic legal frameworks Domestic legal frameworks are an important element of protection and rights recog- nition for persons with disabilities. National law sometimes addresses the rights of for- mer members of armed forces and groups with disabilities. Increasingly, countries are adopting comprehensive legislation and national action plans specifically for those with disabilities. Other sources of rights for persons with disabilities are found wide- ly dispersed across the legal system (e.g., election laws, social protection laws, educa- tion, health). Legal reform often accompanies the transition period following conflict, presenting an opportunity to harmonize disability legislation with international legal ob- ligations. The review of the disability law framework likewise presents an important op- portunity to ensure consistency in disability rights protection and to avoid differential pro- tections between former members of armed forces and groups with disabilities, on the one hand, and persons with disabilities not affiliated with armed forces or groups, on the other. The following issues would usually be addressed in a Member State\u2019s domestic legislation and may have relevance to disability-inclusion in a DDR process: Anti-discrimination legislation and the prohibition of discrimination on the basis of disability, together with the duty to provide reasonable accommodation; Obligations relating to the accessibility of the physical environment; transporta- tion; information and communications, including information and communica- tions technologies and systems; and other facilities and services open or provided to the public, both in urban and in rural areas; Legal recognition before the law; Protection of the privacy of personal, health and rehabilitation information of persons with disabilities; Right to live independently and in the community; Access to justice and measures of support to guarantee access for persons with disabilities, including the provision of procedural and age-appropriate accommo- dation, in order to facilitate their effective role as participants and beneficiaries, including as witnesses, in all legal proceedings, including at investigative and other preliminary stages.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9651bd9a-4fdb-4dae-bb18-ff8b923ec065", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 15, + "Paragraph": "Institutional mandates, internal rules, policies and procedures The UN has adopted a number of internal rules, policies and procedures, some of which directly address disability inclusion and the rights of persons with disabilities. The general guide for UN-supported DDR processes is the UN IDDRS. Other internal documents that may be relevant to DDR processes include the following: Security Council resolution 2475 (2019). This resolution draws attention to the dis- proportionate impact of armed conflict on persons with disabilities. It also recognizes the importance of taking into account the discrete needs of persons with disabilities. The resolution has three main objectives: first, to raise awareness of the need to involve persons with disabilities in conflict prevention processes, reconstruction and post-con- flict reconciliation; second, to underline the significance of a broadening knowledge of the needs and rights of persons with disabilities in peacekeeping missions; and third, to improve the reporting system on conditions experienced by persons with disabilities. UN Disability Inclusion Strategy. The UN has initiated a system-wide effort and accompanying policies to become more inclusive of persons with disabilities. In March 2019, it adopted the UN Disability Inclusion Strategy, according to which UN entities, country teams and humanitarian country teams will measure and track their performance with respect to disability inclusion. The Inter-Agency Standing Committee (IASC) Guidelines on Inclusion of Persons with Disabilities in Humanitarian Action (2019).10 These provide detailed operationally oriented guidance in the broader humanitarian action con- text, much of which is directly applicable to DDR. This and other efforts, such as the adoption of the World Charter on Disability Inclusion in Humanitarian Action, provide evidence of disability-inclusive agenda setting by humanitarian actors.11 The IASC Guidelines for Mental Health and Psychosocial Support in Emergency Settings (MHPSS) (2007). These recognize that during humanitar- ian crises, many factors (e.g., violence, uncertainty, loss of family members, loss of home) can negatively affect the mental health and psychosocial well-being of in- dividuals, families and communities, and that persons with disabilities are often disproportionately affected. The MHPSS is therefore important to integrate into DDR to improve the mental health and psychosocial well-being of all DDR partic- ipants and beneficiaries, including those with physical, sensory, psychosocial or intellectual disabilities (for more, see IDDRS 5.60 on Health and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b3882400-49b1-43ff-92a4-d34da019be85", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 16, + "Paragraph": "Other instruments informing disability inclusion in humanitarian crises Sustainable Development Goals. The 2030 Agenda for Sustainable Development pledges to \u201cleave no one behind\u201d. Its plan of action is directed towards a peaceful and prosperous world, where dignity of an individual person and equality among all is applied as the fundamental principle, cutting across three dimensions of the UN\u2019s work, namely, (1) development; (2) human rights; and (3) peace and security. Sendai Framework for Disaster Risk Reduction 2015\u20132030. The guiding prin- ciples of this framework state that disability should be included in all disaster risk mitigation policies and practices.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "36c38170-1586-4041-8a1d-2b0cb137014d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 16, + "Paragraph": "Planning for disability-inclusive DDR processes Disability-inclusive DDR begins at the ear- liest stage possible, during the context of peace negotiations (if these exist) and con- sidering the specific requirements of per- sons with disabilities. DDR practitioners should therefore facilitate meetings with OPDs, former members of armed forces and groups with disabilities, leaders in the disability community, and other key constituents. DDR practitioners should hold con- sultations with disability organizations during the planning and pre-deployment phase", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "99d2adbb-0912-4c57-9f06-429f37d8f67d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "and ensure that the voices of former members of armed forces and groups with disabil- ities are heard. This will help facilitate linkages with persons from the wider disability community. For an approach to disability inclusion in DDR, see Figure 3.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6f1fdd00-6d92-4378-b3d4-b8493e42673d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 17, + "Paragraph": "Disability-inclusive situational assessment During the DDR planning process, a broad situational analysis should be conducted. At a minimum, this analysis should gather information on local perceptions, disability prevalence, local capacities, intersectional discrimination and accessibility. A disability- inclusive situational analysis should lead to the inclusion of explicit measures in the programme/project design that: Avoid perpetuating or reinforcing inequalities based on disability; Take a \u2018do no harm\u2019 approach that includes the provision of reasonable accommo- dation for an individual with a disability, where needed; Overcome barriers to the full participation of persons with disabilities in a DDR process; Ensure that women, men, girls and boys with disabilities benefit equitably from a DDR process and its results; Incorporate specific activities to address disability-based inequalities and con- straints, and meet disability-specific needs and priorities; and Use disability and gender-specific and/or sex-disaggregated indicators, including impact indicators, to monitor and evaluate progress and results. The box below provides a summary of some basic requirements when planning disability-inclusive DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "de6807a0-7d6e-40e3-807b-729686b4e47d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 18, + "Paragraph": "Knowledge and attitudes Understanding local perceptions is important given the stigmatization of disability prevalent in many societies. This takes many forms and sometimes includes stigmati- zation rooted in false notions about the cause of disability (e.g., curse, witchcraft). Con- sultations to assess the views of local communities towards returning former members of armed forces and groups with disabilities should begin as early as possible to en- hance local capacity and create an enabling environment for the reintegration of former members of armed forces and groups. Qualitative data can be obtained through key informant interviews and focus group discussions that, first and foremost, include per- sons with disabilities affected by armed conflict, as well as ex-combatants and persons formerly associated with armed forces and groups. It should also include the family mem- bers of former members of armed forces and groups, disability community leaders, health and community workers, religious leaders, women and youth groups, govern- ment officials and nongovernmental organizations/community-based organizations. During these consultations, support should be provided to ensure that persons with different types of disabilities, including sensory, psychosocial or intellectual disabili- ties, can fully participate.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7cf989ec-a3b4-4d29-8885-3c77763e35f8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 18, + "Paragraph": "Disability data It is often the case that little reliable data exists on disability, although some progress has been made globally since 2006. While there may be little reliable data about disability, and in particular about persons with disabilities affected by armed conflict, planning assessments should consider available data, including from surveys undertaken by humanitarian organizations, especially those with disability-specific programming. National census data can provide some insights into prevalence rates, although, again, this data may be highly unreliable. Sometimes disability data may be contained in demographic and health surveys that are regularly carried out in many countries, although these may have been interrupted because of the conflict or may not use recog- nized approaches to identifying persons with disabilities. DDR planning shall aim to capture disability data in all aspects of DDR. See Annex C for more detailed guidance and resources on disability and data.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a7b44af5-3fca-4045-a67f-15124a8706bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 19, + "Paragraph": "Identify existing capacities When DDR sites are established (such as reception centres, disarmament and/or de- mobilization sites, military barracks, etc.), existing capacities in the surrounding area shall be assessed. As a general rule, the area around a DDR site must conform with the Sphere standards for water supply and sanitation, drainage, vector control, etc.12 The availability and accessibility of basic sanitary facilities shall be considered, as shall the possibility of health and rehabilitation referrals in the surrounding area. Locations and routes for medical and obstetric emergency referral must be pre-identified, and there should be sufficient capacity for referral or medical evacuation to cope with any emer- gencies that may arise, e.g., post-partum bleeding (the distance to the nearest health facility and the time required to get there are important factors to consider) (see IDDRS 4.20 on Demobilization). Planning should also take into careful consideration the potential rehabilitation needs of former members of armed forc- es and groups with disabilities and plan for the provision of assistive devices (e.g., crutches, wheelchairs, walking sticks) and for linking and referrals to community support. Such needs shall be budgeted for during planning (see Annex D for guidance on how to conduct a disability-inclusive budget scan). OPDs as well as existing facilities and programmes that provide services to per- sons with disabilities should form part of the initial assessment, as they can provide support to DDR participants and beneficiaries. Identification of the local capacities of OPDs and organizations that provide services to persons with disabilities and working in collaboration with them is important, especially to ensure that former members of armed forces and groups with disabilities who have self-demobilized can be identified and included in DDR and to help strengthen existing capacity that may have been seriously undermined during the armed conflict. Transport planning is also an important dimension of effectively accommodating former members of armed forces and groups with disabilities in the DDR process, as individuals with disabilities in may require accessible forms of transport. In addition to examining capacities in and around DDR sites, the existing capac- ities and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of disability-inclusive assistance. This assessment should map existing health-care and rehabilitation facilities in and around communities where former members of armed forces and groups are likely to return. This should include a mapping of social protection programmes, in- cluding safety nets, programmes to support access to employment, skills development, and access to assistive technology. This exercise should ascertain whether the country has a functioning national disability strategy and programme, and the extent that min- istries are engaged (this should go beyond a ministry of labour and social affairs or a ministry of health, to include other key ministries such as education and planning and development, among others).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4320e20b-77ad-48e7-b3c1-e2bba4ff4ff2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 20, + "Paragraph": "Planning for the accessible design of DDR sites Planning assessments and recommendations for personnel and budgetary allocation for inclusive DDR shall make provisions for disability expertise and accessibility for DDR sites (e.g., removal of physical barriers, ensuring safe and accessible WASH facilities, appropriate preparation to receive individuals with sensory disabilities). The accessi- ble design of DDR sites will ensure that former members of armed forces and groups with physical and sensory disabilities are included and make it more likely that they will participate. International humanitarian standards shall apply and gender-specific requirements shall be taken into account (e.g., security, sexual and gender-based violence prevention measures, the provision of disability-inclusive and female-specific health- care assistance and support). Engagement with persons with disabilities and OPDs in the design, construction and modification of site infrastructure for accessibility is a strat- egy promoted in disability-inclusive humanitarian action and should be considered.13 Persons with disabilities should be reasonably accommodated, meaning that nec- essary and appropriate modifications and adjustments are applied to meet the require- ments of the individual in question (for some examples, see Box 4). In all instances, reasonable accommodation is intended to ensure that persons with disabilities are able to enjoy or exercise on an equal basis with others all human rights. The duty to provide reasonable accommodation is thus a requirement of the obligation not to discriminate on the basis of disability and applies to all aspects of DDR. Research underscores that reasonable accommodation is typically at no or low cost.14 Engaging the local disability community or volunteers from among former members of armed forces and groups to provide support is an option that may be considered. Sites must take into account the need for capacity to address the specific require- ments of former members of armed forces and groups with disabilities. Information on DDR should be made available in multiple and accessible formants, and registration processes should account for the accessibility of persons with disabilities, including having protocols for the provision of reasonable accommodation. Possible options in- clude the establishment of disability focal points in each region and the secondment of experts, including those from OPDs, the national disability programme (if one ex- ists) or an umbrella association of OPDs. DDR participants with disabilities should be briefed on community-based support and disability services, so it is essential that all personnel are trained in disability awareness strategies and are fully aware of available facilities and services.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4be76fc0-8622-43d6-8104-df102dffefb6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 21, + "Paragraph": "Gender and disability Planning for DDR processes shall take into account the intersection of age, gender, disability and other forms of diversity. DDR practitioners shall also be aware of the different ways in which these categories intersect, and the differing impacts that such intersectionality may have on former members of armed forces and groups with disa- bilities. Although male and female former members of armed forces and groups with disabilities may both experience social marginalization, women and girls often face unique forms of stigma and are more vulnerable to abuse. Limited access to viable eco- nomic opportunities may leave persons with disability more financially (and physically) at risk than they were as part of armed forces and groups, which may leave women and girls facing unique protection risks. Gender norms in the community may also be more traditional than in armed forces and groups, leading to losses in gender equality for women and girls. For example, community members may ex- pect female combatants to return to tradi- tional gender roles in the domestic sphere, even if they held leadership roles in their armed force or group. Female combatants with disabilities may find this readjustment particularly difficult, especially if they are locally perceived as unable to fulfil the role of a wife and mother due to their disabili- ty. Adolescent girls may also be excluded from decision-making due to their previous association with an armed force or group, because of discrimination on the basis of disability and gender norms, or because of a lack of accessibility measures. Therefore, when designing programmes, planners shall consult with male and female persons with disabilities as well as community members, including those belonging to OPDs and women\u2019s and youth groups. Planning and programme design Scoping Questions on the Attitudinal Environment What are prevailing attitudes towards persons with disabilities/former members of armed forces and groups with disabilities in the country? In returning commu- nities? Are they different for women and men? Scoping Questions on Existing Data on Disability How many persons with disabilities (women, men, girls, boys) are in and associat- ed with the armed forces and groups? What is the national disability prevalence? Are there particular types of trauma or injury that are associated with the armed conflict (e.g., amputations, trauma from sexual violence, mine injuries)? Scoping Questions on Existing Support and Service Provision What services exist to provide support to persons with disabilities at the national and community level (community-based rehabilitation programmes, OPDs, etc.)? What specific measures will be put into place to ensure that the requirements of former members of armed forces and groups with disabilities are given due attention? Are they gender and age responsive? If DDR sites are planned, what measures will be taken to ensure accessibility of services and facilities, including for women and girls? What expertise and training are needed to ensure that the needs of persons with disabilities are taken into account in all phases of DDR? Are there facilities for treatment, counselling and protection of those who suf- fered sexual and gender-based violence that are equally accessible to women and girls with disabilities? And men and boys with disabilities? Has the support of local, regional and national OPDs been enlisted to assist in the reintegration process? Has collaboration with leaders with disabilities in assisting former members of armed forces and groups and others returning to civilian life been facilitated? Are existing OPDs trained to understand the require- ments and experiences of former members of armed forces and groups with disabilities? Scoping Questions on Legal and Institutional Frameworks What is the legal framework for persons with disabilities, and is disability support provided in that framework? Is there a differentiation in support for civilians ver- sus former members of armed forces and groups? Can persons with disabilities easily access such support (e.g., disability pensions)? Is any existing social security system accessible to persons with disabilities, including former members of armed forces and groups, and does it meet their particular needs? What funding will be allocated to facilitate the participation of persons with disabilities in DDR? Are funds allocated specifically to ensure the inclusion of persons with disabilities in the DDR process? should also be based on assessments that are gender responsive. Safety and dignity shall be prioritized, and any unintended negative effects of DDR processes shall be minimized. Special attention shall be paid to ensure that female DDR participants and beneficiaries, including those with disabilities, are able to access assistance and services in proportion to need and without barriers or protection risks. Mechanisms should be established through which DDR participants and beneficiaries can express concerns and make complaints. Monitoring and evaluation shall include protection dimensions and take decisive action to address issues identified.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c4781c6f-fedf-4936-9841-3d3529b31cee", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 23, + "Paragraph": "Disability-inclusive DDR programmes DDR programmes consist of a set of related measures, with a particular aim, falling un- der the operational categories of disarmament, demobilization and reintegration. DDR programmes require certain preconditions, such as the signing of a peace agreement (see IDDRS 2.10 on The UN Approach to DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0b6ab4aa-a98d-4db7-b61b-3e14c7a3ebb5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 23, + "Paragraph": "Access to information specific to disability services and support Upon entry to a DDR programme, all DDR participants should be made aware of their rights and, in particular, any specific rights related to disability. They should also be provided with access to information specific to disability services and support, such as rehabilitation services, the provision of assistive devices, and peer support. The ap- proach taken to providing disability-specific support to DDR participants should be informed by existing principles of rehabilitation.15", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "104f672e-1fb9-4fb1-84ed-62e3c7402da0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 23, + "Paragraph": "Physical layout of DDR sites The physical layout of DDR sites should allow for DDR participants with disabilities to participate in all aspects of the DDR programme, from reception (if applicable) to disarmament and demobilization. Universal design and accessibility should be at the forefront of layout planning. While males and females shall be provided separate facil- ities, in part to ensure the safety and autonomy of women and girls who are sex slaves or forced \u2018wives\u2019, persons shall not be separated based on disability. Furthermore, space should be available for persons with disabilities who have caregivers required for per- sonal assistance, or who require assistive devices and technology.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a9bd19b1-6971-4ad6-97df-265759329b6c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 23, + "Paragraph": "WASH access Water, sanitation and hygiene (WASH) play a key role in ensuring the well-being of people, including persons with disabilities and their families, who may need to ac- cess extra quantities of water as well as extra or specific hygiene-related items, and require reliable access to water and sanitation infrastructures. Persons with disabilities are often confronted with non-accessible facilities that they find difficult to negotiate, and they may face stigma and discrimination when using WASH facilities. This can seriously impact the health and dignity of DDR participants with disabilities. The gen- dered dimension of accessible WASH is also essential to consider, as women and girls report considerable anxiety about safety and security in this context. The addition- al challenge of menstrual hygiene management for women and girls with disabilities should be factored into WASH accessibility, including the need for adaptive and acces- sible menstrual health products. Suggested measures to address accessible WASH in a DDR process include the following: Engage OPDs in planning for access to safe water and sanitation to persons with disabilities. In low-resource settings, civil society organizations often play a criti- cal role in supporting government efforts in WASH. Invest in and allocate financial resources/budget for accessible WASH in DDR sites. Partner with organizations that provide accessible WASH in communities, house- holds and settings outside the home, prioritizing schools, workplaces, health facil- ities and communal WASH facilities. Partner with organizations that provide safe, accessible and affordable menstrual hygiene items, such as underwear with built-in menstrual protection. Adopt a twin-track approach: mainstream disability in DDR WASH policy and develop disability-specific WASH measures.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "485614fe-acea-4fa1-8bff-832706561acc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 24, + "Paragraph": "Equal access to health services During demobilization, individuals should be directed to a doctor or medical team for physical and psychosocial health screening (see IDDRS 4.20 on Demobilization). The specific needs of former members of armed forces and groups with disabilities should be assessed, and DDR practitioners should support these individuals to access the assistance they need throughout demobilization and the subsequent reintegration stage of the DDR programme. This can be done, for example, by referring individuals to health facilities identified during previous assessments (see section 6.1.3). Residential demobilization sites (such as cantonment sites) should provide birth- ing kits, sufficient clean water, supplemental feeding and medical facilities. Women and girls with disabilities who have been abducted and/or suffered sexual assault dur- ing and after the conflict should be assisted by women who are trained in trauma management and offered counselling services appropriate to the cultural context. They must also be included in HIV and AIDS programming in DDR. Research demonstrates that men and women with disabilities are often assumed to be non-sexual and to have no need for HIV and AIDS services, which is wholly without basis in fact. Persons with disabilities, especially girls, are also at heightened risk of sexual abuse and assault. Persons with disabilities must be able to access all health facilities, including tem- porary ones.16 When health facilities are rebuilt or rehabilitated, they should be fully accessible to persons with disabilities, including elements such as entrances, restrooms, ease of movement within buildings, and signage. Also relevant for DDR programming is the promotion of initiatives to transport persons with disabilities to health facilities and to ensure that entrances are wide enough, signage is clear and pathways facilitate movement. Information on all health services should be provided in multiple accessible formats, taking into account the requirements of former members of armed forces and groups with disabilities who have hearing, visual, intellectual or psychosocial disabilities. For specific guidance on persons with disabilities, mental health and psychosocial support, refer to IDDRS 5.70 on Health and DDR.17", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "21dcc3b1-80ee-4ff4-a74f-a4b3443f36c0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 25, + "Paragraph": "Reinsertion As part of a DDR programme, transitional reinsertion assistance may entail the pro- vision of cash payments, vouchers and/or in-kind support, or the participation of for- mer members of armed forces and groups in public works programmes (see IDDRS 4.20 on Demobilization). Irrespective of the type of reinsertion assistance provided, DDR practitioners should take the specific needs of those with disabilities into ac- count. Food assistance should, for example, cater to the specific nutritional needs of persons with disabilities (see IDDRS 5.50 on Food Assistance in DDR). More gener- ally, DDR practitioners should always ask themselves whether the specific transfer modality selected (cash, voucher, in-kind support, public works programme) poses any specific challenges or opportunities to persons with disabilities, and how these challenges and opportunities intersect with considerations related to age and gender. When considering the provision of transitional reinsertion assistance, DDR practitioners should:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6779ff3b-d89e-4d1e-89fa-3ec8581eb2e7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "More generally, DDR practitioners should always ask themselves whether the specific transfer modality selected (cash, voucher, in-kind support, public works programme) poses any specific challenges or opportunities to persons with disabilities, and how these challenges and opportunities intersect with considerations related to age and gender. Plan for extra costs associated with transitional reinsertion assistance for persons with disabilities (e.g., assistive devices,18 transport, specific nutritional needs, community-based services); Ensure that, where possible, reinsertion kits are universal in their design (i.e., that they can be used by persons with disabilities without additional modifications); Ensure accessibility, for example, of pick-up points for cash payments, vouchers and/or in-kind assistance; Be aware of any safety or protection concerns that may impact transitional assis- tance or require extra costs, particularly for women and girls with disabilities if travelling to pick-up points for reinsertion assistance (e.g., ensuring safe transport and providing for extra costs as needed); Ensure that, when voucher systems are used, they allow persons with disabilities to cater to their specific needs in terms of nutrition, accommodation, etc., and are viable for them to utilize (e.g., accounting for distance and accessibility to locations where they can use vouchers, as well as any additional transportation costs incurred); Include persons with disabilities in public works programmes where possible, planning for any extra costs needed to enable them to effectively do their jobs, and provide alternative roles or reinsertion/reintegration support only when an individual is unable to do the work required; Ensure, where possible, that education and training efforts provide support for participants with disabilities, and account for any additional costs this may require. Failure to ensure that transitional reinsertion assistance meets the needs of former members of armed forces and groups with disabilities will compromise their reinte- gration and could be a potential source of conflict or care burden within their commu- nities and family. Research shows that caregiving responsibilities for former members of armed forces and groups with disabilities fall disproportionately on women and girls. DDR practitioners should also ensure that former members of armed forces and groups with disabilities have accessible means of transport to the area where they will receive reinsertion and/or reintegration support. Ensuring a safe means of transport that does not subject women (including women with disabilities) to sexual violence or trafficking is essential.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0435c56b-64f6-4560-aab5-0d33b969f583", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 26, + "Paragraph": "7.6 Reintegration DDR practitioners shall plan for and allocate resources for disability inclusion in re- integration activities, both when these activities are implemented as part of a DDR programme and when they are imple- mented during ongoing conflict (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration). These activities shall, as far as possible, be inclusive, and mainstream initiatives where persons with disabilities are able to participate in the same kinds of economic, social and political initiatives as their non-dis- abled counterparts. Where possible, community-based rehabilitation ap- proaches should be sought to ensure the inclusion of those with disabilities (see Box 7). Disability-specific (target- ed) initiatives may be appropriate but should not take the place of inclusive programming. Barriers to full partici- pation in social, economic and political reintegration shall be identified and addressed.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e03e3ad4-87ed-4157-98e4-1c44817ccef2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 26, + "Paragraph": "Economic reintegration Economic inclusion for individuals with disabilities shall be accounted for in DDR planning and design. DDR practitioners shall not make decisions on the basis of as- sumptions about what DDR participants with disabilities can and cannot do and shall not foster exclusion from livelihood activities. DDR processes shall not discriminate on the basis of disability and shall observe the duty to provide reasonable accommoda- tion where needed. Accessibility measures to foster economic inclusion and equality of opportunity shall be put in place (for example, physical, transport, communication and information). Specific measures must be implemented to ensure that former members of armed forces and groups with disabilities have access to the same kind of reintegration op- portunities provided to other DDR participants and beneficiaries. Like their non-disa- bled counterparts, they should have a voice in their choice of training and livelihoods activities and should not be segregated into initiatives that put them on the fringes of the economy. Participation in the open labour market should be the goal for all adult former members of armed forces and groups, including those with disabilities. Considering that many conflict-prone countries are agriculture-based economies, the facilitation of a return to farming or fishing can be key to successful reintegration and to the transition from subsistence farming to more sustainable livelihoods. Inter- ventions to support smallholder farmers and marginal fishers are needed, as these groups constitute the largest segments of the workforce in current conflict zones. The capacity of these agricultural workers to jump-start their livelihoods could be greatly enhanced by providing them with an understanding of how markets work, facilitating their access to improved production systems and making their farms more resilient. Examples of disability-inclusive approaches for economic reintegration include the fol- lowing: Implement strategies to counter negative attitudes and discrimination against per- sons with disabilities, particularly regarding their ability to participate in training and economic activity. Sensitize family and community members to the rights and capacities of persons with disabilities, including their right and capacity to work. Mainstream protection and safeguarding measures across livelihood and eco- nomic inclusion programming. Inform persons with disabilities about these meas- ures and how they can access them. Recognize the gendered dimension of some protection and safeguarding risks. Assess and ensure the accessibility of skills training, apprenticeships and finan- cial service providers, and markets and market-related information for persons with different types of disability. Assist vocational or business skills training providers to make the courses they offer accessible to persons with different types of disability. Ensure that trainers are aware of how to train individuals with certain types of impairment. Provide (or provide referrals to) technical aids and assistive devices where neces- sary, such as crutches, white canes and hearing aids. Adapt equipment or commu- nication methods, for example, Braille and sign-language interpretation. Encourage training and apprenticeship providers, potential employers, and busi- ness development and financial service providers to respect the rights of per- sons with disabilities, including their right to have full access to livelihoods, and prevent stigmatization. Support engagement with local communities, including OPDs, to identify barriers and employment opportunities for reintegrating former members of armed forces and groups with disabilities. Develop outreach and community-based processes that can identify and connect with persons with disabilities who are not visible, for example, the self-demobilized.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "f2cdde2d-dfc2-4def-b531-fd376245f7aa", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 28, + "Paragraph": "Social reintegration Families and social networks can remove or reduce barriers that hinder the social re- integration of persons with disabilities. Supportive families can promote inclusion, particularly for former members of armed forces and groups who are stigmatized or excluded. However, families may also act as barriers as well as enablers, particularly if stigma and misconceptions about persons with disabilities persist. To identify and address barriers to social reintegration, DDR practitioners should conduct sensitiza- tion that both challenges negative perceptions and acknowledges the gender and age dimensions of discrimination, engaging civil society representatives and supporting co-existence and social cohesion. Where necessary and possible, reintegration support should also be made available to caregivers to former members of armed forces and groups with disabilities. Peer support can also be critical to social reintegration, and is a well-established intervention used with success in facilitating the reintegration of individuals with dis- abilities following traumatic injury, such as one sustained from a landmine or unex- ploded ordinance. Peer support refers to the process of support and assistance to fa- cilitate long-term recovery. It may involve knowledge sharing, skills sharing, practical assistance and/or emotional support that contributes to mental health and psychoso- cial well-being. Individuals who are trained in peer support can connect individuals with disabilities to opportunities, resourc-", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e779f10d-7c2e-4518-8f94-d16f1b1db08e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "Former members of armed forces and groups with psychosocial and intellectual disabilities may need focused additional support delivered by trained non-specialists or mental health and psychosocial health specialists. es and communities of support. Persons with disabilities from the community are potential peer supporters for former members of armed forces and groups with disabilities. These individuals may also be important resources for facilitating access to social protection programmes, in coun- tries where these exist. Peer support is specifically referenced in the CRPD, and capacity-building to establish peer support must be tailored to the specific DDR context. OPDs may provide peer support services, and the provision of seed money for the training of peer support workers and related initiatives can benefit both the community and returning members of armed forces and groups. Where appropriate, former members of armed forces and groups with disabilities can also be trained as peer support workers. Research in other contexts has demonstrated the empowering role that persons with disabilities can play when included in peer training for HIV/AIDS education, for example. Psychosocial and intellectual disabilities, including mental impairments, can hinder social and economic reintegration, particularly when these are associated with per- sistent mental health or cognitive conditions or disturbances in behaviour, including those stemming from acute stress, grief, depression and/or post-traumatic stress (see IDDRS 5.70 on Health and DDR). Former members of armed forces and groups with psychosocial and intellectual disabilities may need focused additional support deliv- ered by trained non-specialists or mental health and psychosocial health specialists. These needs should be identified in health screenings conducted during demobiliza- tion and throughout the reintegration phase of the DDR programme (see section 7.4). Finally, schools offer critical avenues for achieving disability-inclusion for children and youth with disabilities affected by conflict. The global comprehensive school safe- ty framework emphasizes three school safety pillars important for DDR and includes key guidance on disability-inclusive approaches (see also IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR).19", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "420cd5cb-f6a0-49db-a77a-26d1d3558e21", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 29, + "Paragraph": "Political reintegration Political reintegration highlights the importance of giving voice and agency to former members of armed forces and groups with disabilities in decision-making in the com- munity and broader political processes. In this regard, it may be useful to encourage the representation of former members of armed forces and groups with disabilities, exploring opportunities to partner with or join existing political associations for persons with disabilities. Such associations may help individuals to receive information regarding rights, resources and opportunities and may advocate for equitable assis- tance. These associations may also engage in counselling, training, the provision of credit for income-generating activities and employment, and other referral services. For further information on associations of former members of armed forces and groups, see IDDRS 4.30 on Reintegration.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8e514b1b-5b15-4834-afd3-8a9f5ae0b79d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 29, + "Paragraph": "Disability-inclusive DDR-related tools In addition to DDR programmes, DDR processes can also include DDR-related tools such as community violence reduction (CVR), DDR support to mediation, and transi- tional weapons and ammunition management (WAM). DDR-related tools are immedi- ate and targeted measures that can complement DDR programmes or be implemented when the preconditions for a DDR programme are not in place (see IDDRS 2.10 on The UN Approach to DDR).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e4250bef-570b-479b-a698-8f9995e0890c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 29, + "Paragraph": "Community violence reduction CVR programmes are bottom-up interventions that focus on the reduction of armed vi- olence at the local level by fostering improved social cohesion and providing incentives to resist recruitment (see IDDRS 2.30 on Community Violence Reduction). They offer important avenues for disability inclusion, such as: Ensuring that targeting of groups susceptible to recruitment (i.e., youth at risk) includes persons with disabilities; Provision of disability- and gender-inclusive alternatives to violence-based liveli- hoods; Provision of mental health and psychosocial support to at-risk youth and former members of armed forces and groups, inclusive of persons with disabilities; Partnerships with OPDs and the capacity-building of these organizations; Raising awareness of the rights of persons with disabilities and disability in- clusion, including through civil society networks in coordination with national human rights mechanisms and working groups on disability functioning at national and/or local levels; and Provision of stop-gap support to former members of armed forces and groups with disabilities who are waiting for reintegration support, in close cooperation with the national DDR programme (where applicable) and national disability structures.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "67d4acf3-1e9f-4b44-93f7-6b1392eb6c87", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 30, + "Paragraph": "DDR support to mediation Peace agreements seek to end armed conflict but also to ensure sustainable peace by addressing those issues that caused conflict.20 As such, they can help to create envi- ronments where persons with disabilities are empowered and fully integrated into post-conflict societies. In this regard, DDR practitioners should advise mediators on the importance of including the voices of persons with disabilities in peace negoti- ations and actively removing barriers to their inclusion. It should also be clear as to whether peace agreement provisions relate to disabilities acquired prior to conflict, during conflict or both. Intersectionality should also be acknowledged, as failure to do so means that the specific challenges of certain groups (children with disabilities, women with disabilities, former members of armed forces and groups with disabilities, etc.) may not be identified and addressed. Peace agreements can lay the foundations for more substantive policies and law reform by ensuring that a disability lens is adopted in post-conflict mechanisms. DDR practitioners should therefore advise mediators that the language included in peace agreement provisions related to persons with disability should be empowering, for example, by viewing disability as a differentiating char- acteristic no different from gender, race or religion. Viewing persons with disabilities only as victims requiring support may perpetuate their marginalization and disem- powerment. Where DDR is linked to a process of security sector reform, peace agreements may contain specific provisions related to the integration of former members of armed forc- es and groups with disabilities into the security sector (see IDDRS 6.10 on DDR and Se- curity Sector Reform). In line with CRPD, DDR practitioners should advise mediators that members of armed forces and groups with disabilities shall not be excluded from opportunities to integrate into the security sector solely because of their disability. If a person is unable to perform a specific role due to the nature of his/her disability, an alternative role should be sought, and only if an alternative role is unavailable should the person be demobilized and supported to reintegrate into civilian life. Persons with disabilities may also opt for demobilization and reintegration on a voluntary basis, if this option is on offer. However, existing members of armed forces shall not be forced to demobilize solely on the basis of their disability.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1d35763b-fce8-4a5c-8370-342e738397cf", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 30, + "Paragraph": "Transitional weapons and ammunition management Transitional WAM is primarily aimed at reducing the capacity of individuals and groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). Barriers to the participation of persons with disabilities in transitional WAM measures should be identified and rectified. It may also be particu- larly helpful to engage persons with disabilities in sensitization efforts highlighting the dangers of weapons possession and unsafe storage (irrespective of whether their disa- bility was caused by armed conflict). Such sensitization work can positively highlight the capacities of persons with disabilities.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a4092c02-367f-4761-8829-8c55e814a14a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 31, + "Paragraph": "Monitoring and evaluating disability-inclusive DDR processes Addressing disability inclusion in mechanisms for monitoring and evaluation (M&E) is essential for a DDR process to ensure accountability to all stakeholders and, in par- ticular, the affected population. Disability inclusion shall be monitored and evaluated as part of a broader M&E plan for the DDR process (see IDDRS 3.50 on Monitoring and Evaluation). In general, arrangements for monitoring disability inclusion during DDR should be made in advance between all implementing partners, using existing tools for monitoring and applying international best practices on disability data (see Annex C for more on disability and data). It is important for data on DDR par- ticipants and beneficiaries to be collected so that it can be easily disaggregated on the basis of disability (and other factors, including sex and age). This means that numerical data should be systematically collected for ex-combatants, persons for- merly associated with armed forces and", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "02e04ec3-a2ae-472f-a7ec-959582185ec4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 31, + "Paragraph": "Identifying lessons learned and conducting evaluations of the impacts of DDR assistance on persons with disabilities helps to improve the approach to disability inclusion within DDR processes and the broader inter- agency approach to DDR. groups, and dependants. Every effort should be made to disaggregate the data by disa- bility in addition to sex and age, other specific needs categories (e.g., people living with HIV/AIDS), DDR location(s), armed force/group affiliation, etc. Identifying lessons learned and conducting evaluations of the impacts of DDR assistance on persons with disabilities helps to improve the approach to disability in- clusion within DDR processes and the broader inter-agency approach to DDR. DDR practitioners should ensure that an evaluation of disability inclusion during the early stages of a DDR process is carried out and factored into later stages. Gender should also be taken into consideration in the evaluation to assess if there were any unexpect- ed outcomes of the DDR process on women and men with disabilities, and on gender relations and gender equality. Lessons learned should be recorded and shared with all relevant stakeholders, in accessible formats, to guide future policies and to improve the effectiveness of future planning and support to operations. While monitoring indicators appropriate for DDR will be designed according to the context in which DDR is implemented and the DDR strategy and components, the inclusion of disability-specific indicators should be identified to guide DDR practition- ers in the establishment of monitoring mechanisms and systems. Some sample indi- cators for DDR programmes are provided in Box 8, and more detailed guidance is provided in Annex C. Disarmament To what extent did the disarmament programme succeed in disarming male and female ex-combatants with disabilities? To what extent did the disarmament programme provide disability-inclusive access and services for men and women with disabilities? Sample indicator: Number of persons with disabilities who registered for disarmament programme (disaggregated by disability status, gender, age). Sample indicator: Number of information materials that included images/ voices of ex-combatants with disabilities. Sample indicator: Number of DDR staff with disability-specific training. Sample indicator: Number of information campaigns that informed ex-com- batants with disabilities about DDR programmes. Demobilization To what extent did the demobilization programme succeed in demobilizing former members of armed forces and groups with disabilities? To what extent did the demobilization programme provide disability inclusion access and services? Sample indicator: Number of persons with disabilities who registered for demobilization programme (disaggregated by disability status, gender, age). Sample indicator: Number of former members of armed forces and groups with disabilities who received transitional support to prepare for reintegra- tion. Sample indicator: Number of assistive devices distributed. Reintegration To what extent did the reintegration programme succeed in reintegrating former members of armed forces and groups with disabilities? To what extent did the reintegration programme provide disability inclusion access and services? Sample indicator: Number of persons with disabilities who registered for reintegration programme (disaggregated by disability status, gender, age). Sample indicator: Number of persons with disabilities who participated in micro-credit programme (disaggregated by disability status, gender, age). Sample indicator: Number of persons with disabilities who participated in vocational training alongside other former members of armed forces and groups (disaggregated by disability status, gender, age).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8aee24af-b43b-444b-8b99-96f1db4d877b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 33, + "Paragraph": "Annex A: Abbreviations CRC\tConvention on the Rights of the Child CRPD\tConvention on the Rights of Persons with Disabilities CVR\tcommunity violence reduction M&E\tmonitoring and evaluation OPD\torganization of persons with disabilities WAM\tweapons and ammunition management WASH\twater, sanitation and hygiene", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ac1d5720-194f-48e0-8ce4-724bc74c3cdc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 33, + "Paragraph": "Annex B: Barrier checklist A social understanding of disability in the context of a DDR process focuses attention on the removal of barriers to equalize opportunities between persons with and without disabilities. Directing attention to the removal of barriers in a DDR process provides benefits to a broad range of persons with disabilities. While reasonable accommodation will still be required to ensure all persons with disabilities can participate in and bene- fit from a DDR process, this approach is applicable to complex DDR processes. The fol- lowing table provides examples of how an approach to barrier removal may be applied to benefit individuals with a range of functioning difficulties. The functional difficulty categories in the final column of the table are based on the Washington Group Short Set of questions. The examples provided are not exhaustive and are not a substitute for consultation with OPDs.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fdadfa6b-481c-4db9-a82c-191b2c31872e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "Annex C: Disability and data The necessity of ensuring that disability data is captured accurately is underscored in the UN Convention on the Rights of Persons with Disabilities. Article 31 provides that \u201cinformation \u2026 shall be disaggregated, as appropriate, and used to help assess the im- plementation of States Parties\u2019 obligations \u2026 to identify and address the barriers faced by persons with disabilities in exercising their rights\u201d. The 2030 Agenda for Sustainable Development has as its overarching goal that no one is left behind in development and, accordingly, acknowledges the role of data \u2013 specifically, the disaggregation of data \u2013 as central to this effort. There are numerous challenges to capturing accurate disability data: It is not possible to write one question or a short set of survey questions that can adequately, accurately and comprehensively capture the complexity of disability. Any survey questions must be short, clear and precise. Often, problematic questions are used that result in poor capture of data. These challenges can be addressed. In 2001, the Washington Group on Disability Statistics was established as a City Group under the aegis of the UN Statistical Commission to: Address the need for population-based measures of disability. Foster international cooperation in the area of health and disability statistics. Produce internationally tested measures to monitor the status of persons with disability. Incorporate disability into national statistical systems. The Washington Group website and complete set of resources may be found at http://www.washingtongroup-disability.com/. The Washington Group approach acknowledges that: Disability is complex. Disability incorporates a variety of different components: body functions and structure, limitations in activities (capacity), and restrictions in participation (per- formance). Disability includes characteristics of both the person and their environment. The language of disability is not specific. In many cultures, stigma is associated with disability, creating additional chal- lenges to measurement and, ultimately, inclusion. The Washington Group developed a set of questions that capture a part of the disability complexity and that can be used in a valid, reliable and internationally comparable manner. They can be used in conjunction with other data collected in a census or survey (related to outcomes like access to DDR processes, education or employment) to under- take analyses consistent with the social model of disability. The Washington Group defined an approach to measuring disability based on identifying those who, because of difficulties doing certain universal, basic actions, are at greater risk than the general population for limitations in participation. The objectives of the Washington Group Short Set are to: Identify persons with similar types and degree of limitations in basic actions, re- gardless of nationality or culture. Represent the majority of (but not all) persons with limitations in basic actions. Represent commonly occurring limitations in domains that can be captured in the census context. The intended use of the Washington Group Short Set is to: Compare levels of participation in employment, education or family life for those with disability versus those without disability to see if persons with disability have achieved social inclusion. Monitor effectiveness of programmes and policies to promote full participation. Monitor prevalence trends for persons with limitations in specific basic action do- mains. For some important limitations and considerations in relation to using the Washington Group Short Set, see Box 9. The Washington Group questions are not designed to identify all persons with disabilities. The identification of persons with disabilities should be ongoing throughout a DDR process. The Washington Group Short Set will identify some persons with intellectual disabilities. The Extended Set of questions has additional questions to improve the identification of persons with intellectual disabilities or cognitive difficulties. The questions do not apply to children under the age of five, and they miss many children with developmental disabilities over the age of five. UNICEF and the Washington Group developed the Child Functioning Module, which is de- signed to better identify all children with disability. A limitation of the Washington Group Short Set is that it misses many people with psychosocial disabilities, according to research from the US showing that about half of people with psychosocial disabilities are missed by the six questions in the Short Set. For that reason, the Washington Group developed a set of four addi- tional questions that address anxiety and depression. These additional questions are part of the Extended Survey and are also included in the Short Set \u2013 En- hanced, thus helping to identify people with mental health concerns while still limiting the number of questions that need to be added to a census or survey. The Washington Group questions do not identify impairments or health con- ditions. However, the questions can be used as a screening tool for referral for medical assessment to ensure specific health needs are met. The Washington Group recommends \u2018a lot of difficulty\u2019 as the cut-off for identi- fying persons with disabilities in censuses and surveys. Including \u2018some difficulty\u2019 responses may identify more persons with disabilities if the objective is broader inclusion in a DDR process. The brevity of the module \u2013 six questions \u2013 makes it well suited for inclusion in larger surveys, and for disaggregating outcome indicators by disability status. To maximize international comparability, the Washington Group Short Set ob- tains information on difficulties a person may have in undertaking basic functioning activities that apply to people in all cultures and societies and of all nationalities, and so are universally applicable. The final set of questions includes difficulties seeing, hearing, walking or climb- ing stairs, remembering or concentrating, self-care and communication (expressive and receptive). The question set with specific instructions may be accessed at https://www. washingtongroup-disability.com/fileadmin/uploads/wg/Documents/Questions/ Washington_Group_Questionnaire__1_-_WG_Short_Set_on_Functioning.pdf.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "315bebce-77ea-4c79-ab68-998e3791587f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 11, + "Paragraph": "Children with disabilities The Washington Group questions are designed to collect information on the popu- lation aged five years and above, with a knowledgeable proxy respondent providing information for children. Because they were not specifically designed for use among children, they do not include key aspects of child development important for identify- ing disability in children, and the wording of certain domains may not be relevant (or suitable) for children and adolescents. The WG-UNICEF Module on Child Function- ing is designed to meet the needs of identifying and measuring disability in children. The question set with specific instructions may be accessed at https://www.washing- tongroup-disability.com/question-sets/wg-unicef-child-functioning-module-cfm/.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1be1071e-7cce-4090-a1e9-babfa1663bc1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 37, + "Paragraph": "Indicators for disability-inclusive DDR During planning, core indicators need to be developed to monitor the progress and impact of disability-inclusive DDR initiatives. These should include process indicators, such as the provision of assistive devices and the number of peer supporters trained, and outcome indicators, like disability prevalence among DDR participants and the number of ex-combatants seeking disability supports. Where relevant, DDR planners need to work with national programmes in the design and monitoring of initiatives, as it is important that the indicators used in DDR programmes are harmonized with national indicators (if they exist). DDR planners, implementing partners and national counterparts should agree on the benchmarks against which disability inclusion in DDR will be assessed. Demobilization Patterns of resettlement of ex-combatants with disabilities in areas of return (e.g., community-based versus segregated) Perceptions of host communities of ex-combatants with disabilities and reinte- gration % of ex-combatants with disabilities receiving employment creation assistance (into new or existing jobs) % of ex-combatants with disabilities receiving assistance to establish individual or small-group projects (e.g., microenterprises) % of ex-combatants with disabilities granted additional assistance to address disability-related needs % of ex-combatants with disabilities integrated into local or community-based development projects Incidence of violence among ex-combatants with disabilities Existence and degree of community mobilization to manage and facilitate rein- tegration of ex-combatants in areas of return % of ex-combatants achieving results in their reintegration activity over time % of ex-combatants with disability accommodation needs groups provided with reintegration assistance Sensitization and Awareness Popular opinion polls on DDR Number of sensitization activities at national level using voice/image of persons with disabilities/ex-combatants with disabilities Inclusivity, by disability, of sensitization activities Number of reports on individuals with disabilities in DDR coverage in national and local media Degree of local disability community participation and mobilization in sensitiza- tion activities Number of national and local non-governmental organizations of persons with disabilities voluntarily participating in awareness raising and sensitization Degree of comprehension among ex-combatants with disabilities of the DDR process Perceptions of ex-combatants with disabilities among national and local popula- tions Ex-combatants\u2019 attitudes to livelihoods and reintegration", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fc2e14ae-4221-4a2d-9aa8-42c3666f1edf", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 39, + "Paragraph": "Annex D: Disability-inclusion markers Disability-inclusion markers are under development in various organizations.21 To en- sure disability inclusion in a DDR process, an inclusion marker applied to budgeting at the design stage could help to ensure that disability-inclusion measures are adequately aligned to budgeting, a factor the research discloses has been inadequate in past DDR processes and has led to serious disaffection and required emergency donor budget infusions. A Disability Budget Scan, a tracking mechanism to monitor the integration of disability-inclusive interventions from the design to the implementation and evalua- tion phase, could help ensure that disability-inclusive interventions within DDR are adequately funded at the outset (and throughout) a DDR process. Under a Disability Budget Scan, budget lines are screened and classified according to four categories: No disability-inclusive link. Disbursements made without any disability- inclusive analysis. No expenditures aimed at, for example, barrier removal in DDR cantonment and registration sites. No budget lines to address reasonable accommodations for individual needs such as assistive devices or sign language interpreters. Disability-sensitive link. These expenditures are intended to provide different responses to meet the individual and collective needs of persons with disabilities. Examples include budgeting for physical barrier removal for housing, assistive devices, screening for disability prevalence and supplemental cash payments to address requirements of individuals with disabilities. Strengthening disability-inclusion link. Expenditures aimed at strength- ening disability inclusion, at the institutional level. Examples include capacity- building of disability focal points in line ministries or in partner institutions or strengthening community-based organizations that provide supports to persons with disabilities. Disability inclusive. Specific actions within a DDR process seeking to trans- form disability inclusion broadly in society. These expenditures address the strategic interests of persons with disabilities by contributing to long-term structural and sustainable changes in societies to promote disability equality and non-discrimination on the basis of disability. Examples include support for disability awareness campaigning in returning communities and local sensiti- zation about disability inclusion, support for disability law and policy reforms, and support for the establishment of community-based rehabilitation program- ming broadly.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-6.10-DDR-and-SSR.json b/src/Static/data/json/IDDRS-6.10-DDR-and-SSR.json new file mode 100644 index 0000000..b9b4925 --- /dev/null +++ b/src/Static/data/json/IDDRS-6.10-DDR-and-SSR.json @@ -0,0 +1,1351 @@ +[ + { + "ID": "05c36745-b8a3-433c-b5af-0c3eee36daad", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 3, + "Paragraph": "Module scope and objectives The purpose of this module is to provide policy makers, operational planners and officers at field level with background information and guidance on related but distinct sets of activi- ties associated with disarmament, demobilization and reintegration (DDR) and security sector reform (SSR).1 The intention is not to set out a blueprint but to build from common principles in order to provide insights that will support the development of synergies as well as preventing harmful contradictions in the design, implementation and sequencing of different elements of DDR and SSR programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "329e3c99-abdc-4d64-b25f-007ec2136832", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 3, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "03fadba2-75fe-433c-9efb-b2128cba325c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 3, + "Paragraph": "Background The UN has recognised in several texts and key documents that inter-linkages exist between DDR and SSR.2 This does not imply a linear relationship between different activities that involve highly distinct challenges depending on the context. It is essential to take into account the specific objectives, timelines, stakeholders and interests that affect these issues. However, understanding the relationship between DDR and SSR can help identify synergies in policy and programming and provide ways of ensuring short to medium term activities associated with DDR are linked to broader efforts to support the development of an effec- tive, well-managed and accountable security sector. Ignoring how DDR and SSR affect each other may result in missed opportunities or unintended consequences that undermine broader security and development goals. The Secretary-General\u2019s report Securing Peace and Development: the Role of the United Nations in Security Sector Reform (S/2008/39) of 23 January 2008 describes SSR as \u201ca process of assessment, review and implementation as well as monitoring and evalu- ation led by national authorities that has as its goal the enhancement of effective and accountable security for the State and its peoples without discrimination and with full respect for human rights and the rule of law.\u201d3 The security sector includes security pro- viders such as defence, law enforcement, intelligence and border management services as well as actors involved in management and oversight, notably government ministries, legislative bodies and relevant civil society actors. Non-state actors also fulfill important security provision, management and oversight functions. SSR therefore draws on a diverse range of stakeholders and may include activities as varied as political dialogue, policy and legal advice, training programmes and technical and financial assistance. While individual activities can involve short term goals, achieving broader SSR objec- tives requires a long term perspective. In contrast, DDR tends to adopt a more narrow focus on ex-combatants and their dependents. Relevant activities and actors are often more clearly defined and limited while timelines generally focus on the short to medium-term period following the end of armed conflict. But the distinctions between DDR and SSR are potentially less important than the convergences. Both sets of activities are preoccupied with enhancing the security of the state and its citizens. They advocate policies and programmes that engage public and private security actors including the military and ex-combatants as well as groups responsible for their management and oversight. Decisions associated with DDR contribute to defining central elements of the size and composition of a country\u2019s security sector while the gains from carefully executed SSR programmes can also generate positive consequences on DDR interventions. SSR may lead to downsizing and the conse- quent need for reintegration. DDR may also free resources for SSR. Most significantly, considering these issues together situates DDR within a developing security governance framework. If conducted sensitively, this can contribute to the legitimacy and sustainability of DDR programmes by helping to ensure that decisions are based on a nationally-driven assessment of applicable capacities, objectives and values.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e7c68913-7dc6-4363-be63-aaa1bb244917", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Why are DDR-SSR dynamics important? DDR and SSR play an important role in post-conflict efforts to prevent the resurgence of armed conflict and to create the conditions necessary for sustainable peace and longer term development.4 They form part of a broader post-conflict peacebuilding agenda that may include measures to address small arms and light weapons (SALW), mine action activi- ties or efforts to redress past crimes and promote reconciliation through transitional justice 6.20\t(see IDDRS 6.20 on DDR and Transitional Justice). The security challenges that these meas- ures seek to address are often the result of a state\u2019s loss of control over the legitimate use of force. DDR and SSR should therefore be understood as closely linked to processes of post- conflict statebuilding that enhance the ability of the state to deliver security and reinforce the rule of law. The complex, interrelated nature of these challenges has been reflected by the development of whole of system (e.g. \u2018one UN\u2019 or \u2018whole of government\u2019) approaches to supporting states emerging from conflict. The increasing drive towards such integrated approaches reflects a clear need to bridge early areas of post-conflict engagement with support to the consolidation of reconstruction and longer term development. An important point of departure for this module is the inherently political nature of DDR and SSR. DDR and SSR processes will only be successful if they acknowledge the need to develop sufficient political will to drive and build synergies between them. Box 1 DDR/SSR dynamics This reflects the sensitivity of issues that touch directly on internal power relations, sover- eignty and national security as well as the fact that decisions in both areas create \u2018winners\u2019 and \u2018losers.\u2019 In order to avoid doing more harm than good, related policies and programmes must be grounded in a close understanding of context-specific political, socio-economic and security factors. Understanding \u2018what the market will bear\u2019 and ensuring that activities and how they are sequenced incorporate practical constraints are crucial considerations for assessments, programme design, implementation, monitoring and evaluation. The core objective of SSR is \u201cthe enhancement of effective and accountable security for the state and its peoples.\u201d5 This underlines an emerging consensus that insists on the need to link effective and efficient provision of security to a framework of democratic gov- ernance and the rule of law.6 If one legacy of conflict is mistrust between the state, security providers and citizens, supporting participative processes that enhance the oversight roles of actors such as parliament and civil society7 can meet a common DDR/SSR goal of build- ing trust in post-conflict security governance institutions. Oversight mechanisms can provide necessary checks and balances to ensure that national decisions on DDR and SSR are appro- priate, cost effective and made in a transparent manner.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2b61f707-3da1-4177-830f-33276abddba3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 5, + "Paragraph": "Challenges of operationalising the DDR/SSR nexus A number of DDR and SSR activities have been challenged for their lack of context-specificity and flexibility, leading to questions concerning their effectiveness when weighed against the major investments such activities entail.8 The lack of coordination between bilateral and multilateral partners that support these activities is widely acknowledged as a contrib- uting factor: stovepiped or contradictory approaches each present major obstacles to pro- viding mutually reinforcing support to DDR and SSR. The UN\u2019s legitimacy, early presence on the ground and scope of its activities points to an important coordinating role that can help to address challenges of coordination and coherence within the international commu- nity in these areas. A lack of conceptual clarity on \u2018SSR\u2019 has had negative consequences for the division of responsibilities, prioritisation of tasks and allocation of resources.9 Understandings of the constituent activities within DDR are relatively well-established. On the other hand, while common definitions of SSR may be emerging at a policy level, these are often not reflected in programming. This situation is further complicated by the absence of clear indicators for success in both areas. Providing clarity on the scope of activities and linking these to a desired end state provide an important starting point to better understanding the relationship between DDR and SSR. Both DDR and SSR should be nationally owned and designed to fit the circumstances of each particular country. However, the engagement by the international community in these areas is routinely criticised for failing to apply these key principles in practice. SSR in particular is viewed by some as a vehicle for imposing externally driven objectives and approaches. In part, this reflects the particular challenges of post-conflict environments, including weak or illegitimate institutions, shortage of capacity amongst national actors, a lack of political will and the marginalisation of civil society. There is a need to recognise these context-specific sensitivities and ensure that approaches are built around the contributions of a broad cross-section of national stakeholders. Prioritising support for the development of national capacities to develop effective, legitimate and sustainable security institutions is essential to meeting common DDR/SSR goals. Following a summary of applicable UN institutional mandates and responsibilities (Section 4), this module outlines a rationale for the appropriate linkage of DDR and SSR (Section 5) and sets out a number of guiding principles common to the UN approach to both sets of activities (Section 6). Important DDR-SSR dynamics before and during demo- bilization (Section 7) and before and during repatriation and reintegration (Section 8) are then considered. Operationalising the DDR-SSR nexus in different elements of the pro- gramme cycle and consideration of potential entry points (Section 9) is followed by a focus on national and international capacities in these areas (Section 10). The module concludes with a checklist that is intended as a point of departure for the development of context- specific policies and programmes that take into account the relationship between DDR and SSR (Section 11).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ef6d5420-8a27-4f13-90f0-1757c4dfbe6f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 6, + "Paragraph": "UN institutional mandates and responsibilities A number of UN documents address the interrelated issues of DDR, SSR and rule of law. Short summaries of some of the following key documents are included in Annex \u2018A\u2019 to this module: Report of the Secretary-General on \u201cThe role of United Nations Peacekeeping in disarm- ament, demobilization and reintegration\u201d of 11 February 2000 (S/2000/101) Report of the Secretary-General on \u201cThe rule of law and transitional justice in conflict and post-conflict societies\u201d of 3 August 2004 (S/2004/616) Report of the Secretary-General on \u201cDisarmament, demobilization and reintegration\u201d of 2 March 2006 (A/60/705) Presidential Statement on \u201cMaintenance of international peace and security: role of the Security Council in supporting security sector reform\u201d of 21 February 2007 (S/PRST/ 2007/3); Report of the Secretary-General on \u201cSecuring peace and development: the role of the United Nations in supporting security sector reform\u201d of 23 January 2008 (S/2008/39); Presidential Statement on \u201cMaintenance of international peace and security: role of the Security Council in supporting security sector reform\u201d of 12 May 2008 (S/PRST/ 2008/14).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b061a9d6-da70-42bd-ae91-dedf9cfab3ee", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 7, + "Paragraph": "Rationale for linking DDR and SSR Considering the relationship between DDR \u2018design\u2019 and the appropriate parameters of a state\u2019s security sector provides an important dimension to shape strategic decision making and thus to broader processes of national policy formulation and implementation. The con- siderations outlined below suggest ways that different components of DDR and SSR can relate to each other.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2df6f3cc-369b-4f0f-ac48-6b2b69cc25d6", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 7, + "Paragraph": "Disarmament Disarmament is not just a short term security measure designed to collect surplus weapons and ammunition. It is also implicitly part of a broader process of state regulation and con- trol over the transfer, trafficking and use of weapons within a national territory. As with civilian disarmament, disarming former combatants should be based on a level of confi- dence that can be fostered through broader SSR measures (such as police or corrections reform). These can contribute jointly to an increased level of community security and pro- vide the necessary reassurance that these weapons are no longer necessary. There are also direct linkages between disarmament of ex-combatants and efforts to strengthen border management capacities, particularly in light of unrestricted flows of arms (and combatants) across porous borders in conflict-prone regions.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f1bb2fff-4b03-401a-b676-7fe02b58acf4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 7, + "Paragraph": "Demobilization While often treated narrowly as a feature of DDR, demobilization can also be conceived within an SSR framework more generally. Where decisions affecting force size and structure provide for inefficient, unaffordable or abusive security structures this will undermine long term peace and security. Decisions should therefore be based on a rational, inclusive assess- ment by national actors of the objectives, role and values of the future security sector. One important element of the relationship between demobilization and SSR relates to the impor- tance of avoiding security vacuums. Ensuring that decisions on both the structures estab- lished to house the demobilization process and the return of demobilised ex-combatants are taken in parallel with complementary community law enforcement activities can miti- gate this concern. The security implications of cross-border flows of ex-combatants also highlight the positive relationship between demobilization and border security.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "99e95065-f518-472a-b962-b896ea0793d5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 7, + "Paragraph": "Reintegration Successful reintegration fulfils a common DDR/SSR goal of ensuring a well-managed tran- sition of former combatants to civilian life while taking into account the needs of receiving communities. By contrast, failed reintegration can undermine SSR efforts by placing exces- sive pressures on police, courts and prisons while harming the security of the state and its citizens. Speed of response and adequate financial support are important since a delayed or underfunded reintegration process may skew options for SSR and limit flexibility. Ex- combatants may find employment in different parts of the formal or informal security sector. In such cases, clear criteria should be established to ensure that individuals with inappropriate backgrounds or training are not re-deployed within the security sector, weakening the effectiveness and legitimacy of relevant bodies. Appropriate re-training of personnel and processes that support vetting within reformed security institutions are therefore two examples where DDR and SSR efforts intersect.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "574dfc19-a14f-4672-a342-c2486ee30096", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 8, + "Paragraph": "Guiding principles The overarching principles for a comprehensive and coherent UN approach to DDR stress the need to be people-centred, flexible, transparent and accountable, nationally owned, integrated and well-planned. In the absence of a specific UN doctrine,10 the Secretary- General\u2019s Report on SSR is a significant departure because it provides a clear statement of the UN\u2019s general understanding of and approach to SSR. It is important that there is comple- mentarity between the two: shared principles provide a common basis in order to develop an integrated UN approach to DDR and SSR. This section reviews these shared principles in order to underline key elements that can support the development of synergies.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0666b2b8-ce0e-41cc-9771-0c7b2322cd13", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "People-centred and rights-based: DDR and SSR to improve the security of individuals and communities While a given DDR programme might generate important returns in terms of performance indicators (e.g. numbers of weapons collected and ex-combatants reintegrated) this may not translate into effective outcomes (e.g. improvements in real and perceived individual or community security). Involving communities and local authorities in planning, implement- ing and monitoring interventions can potentially integrate efforts such as the community reintegration of former combatants with the provision of security at the local level in order to ensure that reintegration and SSR are complementary. Supporting the capacity of national armed and other security forces and line ministries can build morale, demonstrating a \u2018duty of care\u2019 through fair treatment.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4bf0b537-7c07-497e-ad49-b298d256baf4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 8, + "Paragraph": "Flexibility: the importance of context and sequencing DDR and SSR interventions need to be flexible and responsive to changing conditions on the ground. Policy guidance must build in the need to understand contextual factors and adjust to changing realities. Mapping relevant actors and understanding the opportunities and constraints posed by specific political, security and socio-economic factors are common requirements for DDR and SSR. Addressing these issues in assessments, ensuring that such knowledge informs both mediation support and negotiating processes, integrating it into the design of DDR and SSR programmes will help to ensure a common appreciation of what is realistic in a given context. Regular monitoring and evaluation should inform the sequencing of activities while avoiding inappropriate or insensitive approaches.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "60bb9c30-5765-43cf-bd09-5fa402e6234a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 8, + "Paragraph": "Transparency and accountability: a good governance approach to DDR/SSR DDR and SSR conceived narrowly as technical support for military or other security bodies may fail to take sufficient account of the dynamic political environment within which these actors are situated. Emphasising the need to build or enhance the respective roles of the executive, legislative, judiciary as well as civil society will help to ensure that programmes are realistic, transparent and widely understood. Developing a nationally-driven picture of security needs in order to determine the scope and objectives of DDR is a lengthy and challenging process that may be too sensitive to address in the early post-conflict period. Avoiding rigid prescriptions is therefore important while identifying and applying mini- mum standards that should be non-negotiable.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4b0a4156-b4ce-46e6-96ae-44328916937c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 9, + "Paragraph": "National ownership: legitimacy and the DDR/SSR nexus National ownership is a much broader concept than \u2018state\u2019 ownership and includes both state and non-state actors at national, regional and local levels. Seeking to involve as many former conflict parties as possible as well as groups that have been marginalised, or are generally under-represented on issues of security in DDR and SSR decision-making is particularly important. This contributes to ensuring that different segments of society feel part of this process. Participatory approaches provide a means to work through the conflict- ing interests of different domestic constituencies. Enhancing the capacity of national and regional authorities to manage, implement and oversee these programmes provides a cru- cial bridge from post-conflict stabilisation to longer term recovery and development by supporting the creation of skills that will remain once international support has been drawn down.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4a23da52-3304-4a4f-8377-d291ceb32973", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 9, + "Paragraph": "Integration and planning: the importance of coordination & coherence The range of objectives and actors involved in DDR and SSR place particular emphasis on coordination issues. Failures to align activities may result in incoherent and potentially destructive outcomes. It is important to coordinate DDR and SSR and relate them to other post-conflict peacebuilding activities such as small arms and light weapons (SALW), transi- tional justice or mine action programmes. Due attention to context-specific issues of timing and sequencing is essential to ensure that the different activities do not become incompat- ible. The absence of adequate, timely and well-targeted funding provides a particularly acute challenge to sustainable, coherent DDR and SSR.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dcfbeb6e-39f7-46a9-a171-1be09c984a33", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "DDR and SSR dynamics to consider before and during demobilization This section begins by identifying certain early areas of SSR support that can reinforce DDR activities (7.1-7.4) while preparing the ground for a more programmatic approach to SSR. An important element of the DDR-SSR nexus is the integration of ex-combatants into the reformed security sector. Particular emphasis is therefore put on issues relating to secu- rity sector integration (7.5-7.12).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a3064873-0425-453e-aa6d-ef21c90e8b78", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 9, + "Paragraph": "7.1. Disarmament and longer-term SSR Reducing the availability of illegal weapons connects DDR and SSR to related security challenges such as wider civilian arms availability. In particular, there is a danger of \u2018leak- age\u2019 during transportation of weapons and ammunition gathered through disarmament processes or as a result of inadequately managed and controlled storage facilities. Failing to recognise these links may represent a missed opportunity to develop the awareness and capacity of the security sector to address security concerns related to the collection and management of weapon stocks (see IDDRS 2.20 on post-conflict stabilization, peace-building and recovery frameworks). Disarmament programmes should be complemented, where appropriate, by training and other activities to enhance law enforcement capacities and national control over weap- ons and ammunition stocks. The collection of arms through the disarmament component 2.20 of the DDR programme may in certain cases provide an important source of weapons for reformed security forces. In such cases, disarmament may be considered a potential entry point for coordination between DDR and SSR.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9e752fe-8f47-4de1-8fc8-7a470edeafd1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 10, + "Paragraph": "Illegal armed groups In cases where combatants are declared part of illegal groups, progress in police reform and relevant judicial functions can project deterrence and help ensure compliance with the DDR process. This role must be based on adequate police capacity to play such a supporting role (see Case Study Box 1). The role of the police in supporting DDR activities should be an element of joint plan- ning. In particular, decisions on police support to DDR should be based on their capacity to support the DDR programme. Where there are synergies to be realised, this should be reflected in resource allocation, training and priority setting for police reform activities. Case Study Box 1 Police support to DDR in Afghanistan", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "3d1c22f1-f36a-4f8a-adab-0abb04bd3ac8", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 10, + "Paragraph": "The disengagement process A number of common DDR/SSR concerns relate to the disengagement of ex-combatants. Rebel groups often inflate their numbers before or at the start of a DDR process due to financial incentives as well as to strengthen their negotiating position for terms of entry into the security sector. This practice can result in forced recruitment of individuals, including children, to increase the head- count. Security vacuums may be one further consequence of a disengagement process with the movement of ex-combatants to de- mobilization centres resulting in potential risks to communities. Analysis of context-specific security dy- 3.20 5.30 namics linked to the disengagement process should provide a common basis for DDR/SSR decisions. When negotiating with rebel groups, criteria for integration to the security sector should be carefully set and not based simply on the number of people the group can round up (see IDDRS 3.20 on DDR Programme Design, Para 6.5.3.4). The requirement that chil- dren be released prior to negotiations on integration into the armed forces should be stip- ulated and enforced to discourage their forced recruitment (see IDDRS 5.30 on Children and DDR). The risks of potential security vacuums as a result of the DDR process should provide a basis for joint DDR/SSR coordination and planning.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0425e62b-d307-4484-80ae-1b55c01fd367", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 11, + "Paragraph": "Natural resource exploitation The illegal exploitation of natural resources creates an obstacle to effective DDR and under- mines prospects for economic recovery. Control over natural resources provides a resource base for continued recruitment of combatants and the prolonging of violence. Rebel groups are unlikely to agree to disarmament/demobilization if that means losing control of valu- able land. SSR activities should address relevant training requirements necessary for targeting armed groups in control of natural resources. Mandates and resource allocation for national security forces should be elaborated and allocated, where appropriate, to focus on this priority.11 Shared conflict and security analysis that focuses on this issue should inform DDR/SSR planning processes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4343b574-4309-4f23-ba2d-bb6c1ad2156d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 11, + "Paragraph": "Rank harmonisation Policies establishing a new rank structure for members of the reformed security sector may facilitate integration by supporting the creation of a new command structure. It is particu- larly important to address perceived inequities between different groups in order to avoid resulting security risks. Rank harmonisation processes should be based on clear provisions in a peace agreement or other legal documents and be planned in full consideration of the consequences this may have on security budgets (i.e. if too many high ranks are attributed to ex-combatants). Policies should be based on consideration of appropriate criteria for determining ranks, the need for affirmative action for marginalised groups and an agreed formula for conver- sion from former armed groups to members of the reformed security sector.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4504e4c1-2d08-4c4e-bf1b-b9877005f6e0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 11, + "Paragraph": "Data collection and management While the data capture at disarmament or demobilization points is designed to be utilised during reintegration, the early provision of relevant data can provide essential support to SSR processes. Sharing information can 1) help avoid multiple payments to ex-combatants registering for integration into more than one security sector institution, or for both inte- gration and reintegration; 2) provide the basis for a security sector census to help national authorities assess the number of ex-combatants that can realistically be accommodated within the security sector; 3) support human resource management by providing relevant information for the reform of security institutions; and 4) where appropriate, inform the vetting process for members of security sector institutions (see IDDRS 6.20 on DDR and Transitional Justice). Extensive data is often collected during the demobilization stage (see Module 4.20 on Demobilization, Para 5.4). A mechanism for collecting and processing this information within the Management Information System (MIS) should capture information require- ments for both DDR and SSR and may also support related activities such as mine action (See Box 2). Relevant information should be used to support human resource and financial management needs for the security sector. (See Module 4.20 on Demobilization, Para 8.2, especially box on Military Information.) This may also support the work of those respon- sible for undertaking a census or vetting of security personnel. Guidelines should include confidentiality issues in order to mitigate against inappropriate use of information. 6.20 4.20 4.20", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "165795bd-6100-439a-bb0f-9e59f63c1421", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 12, + "Paragraph": "Vetting Vetting is a particularly contentious issue in many post-conflict contexts. However, sensi- tively conducted, it provides a means of enhancing the integrity of security sector institutions through ensuring that personnel have the appropriate background and skills.12 Failure to take into account issues relating to past conduct can undermine the development of effec- tive and accountable security institutions that are trusted by individuals and communities. The introduction of vetting programmes should be carefully considered in relation to minimum political conditions being met. These include sufficient political will and ade- quate national capacity to implement measures. Vetting processes should not single out ex-combatants but apply common criteria to all members of the vetted institution. Minimum requirements should include relevant skills or provision for re-training (particularly im- portant for ex-combatants integrated into reformed law enforcement bodies). Criteria should also include consideration of past conduct to ensure that known criminals, human rights abusers or perpetrators of war crimes are not admitted to the reformed security sector. (See IDDRS 6.20 on DDR and Transitional Justice.)", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "29a9d75e-2df7-4afc-b6a4-71e69d238c5e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 12, + "Paragraph": "Support to the integration of ex-combatants within the security sector Ex-combatants that have been socialized to the use of violence in conflict require proper support and training to assist their transition from armed combatant to security provider. Moreover, high HIV infection rates are common in many uniformed services and can com- promise command structures and combat readiness. Increasingly, there are national policies of screening recruits and excluding those who are HIV-positive. In addition to identifying appropriate selection criteria for combatants eligible for inte- gration, ex-combatants should be provided with sufficient training and sensitization on behaviour change, and access to psychosocial support to enable a successful transition. Engaging in HIV/AIDS prevention at the outset of DDR will help to reduce new infections, thus\u2014where national policies of HIV screening are in place\u2014increasing the pool of potential candidates for recruitment, as well as assisting in planning for alternative occupational support and training for those found to be HIV-positive (see IDDRS Module 5.60 on HIV/ AIDS and DDR).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "95972d5e-c6fe-488c-b741-01d73adc93d2", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 13, + "Paragraph": "Balancing demobilization and security sector integration Offering ex-combatants a voluntary choice between integrating into the security sector and pursuing civilian livelihoods can, in certain cases, be problematic. Resulting challenges may include disproportionate numbers of officers compared to other ranks, or mismatches between national security priorities and the comparative advantages of different security providers. Excessive integration into the security sector may be unrealistic in relation to the absorptive capacity of these institutions as well as financial limitations and perceived security requirements. There is also a risk to community security if large numbers of ex- combatants return without the prospect of meaningful employment. Decisions on the incentives provided to ex-combatants registering for demobilization versus those registering for integration should be carefully considered to avoid unsustain- able outcomes. The financial and social benefits provided to each group should not therefore strongly favour one option over the other. Funding considerations should reflect national financial limitations in order to avoid unwanted course corrections. A communication strategy should be developed to ensure that options are clearly understood. Job counsel- ling\u2014presenting realistic career options\u2014may also reduce the risk of raising expectations among demobilised combatants entering into socio-economic programmes (see IDDRS 4.30 on Social and Economic Reintegration, Section 9.2). Case Study Box 2 Integration followed by rightsizing in Burundi 4.30", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "01b56ee9-0d00-4c23-9750-cd4a91e62d04", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 13, + "Paragraph": "Social conditions within the security sector Research has shown that there is a link between (future) crimes committed by security forces and inadequate terms and conditions of service. Poor social conditions within the security sector may also contribute to an unbalanced distribution of ex-combatants between reinte- gration and security sector integration. SSR activities should focus from an early stage on addressing right-financing, man- agement and accountability in security budgeting. An important early measure may be to support the establishment of a chain of payments system to prevent the diversion of sala- ries and ensure prompt payment. These measures may be most effective if combined with a census of the armed and security forces (see Case Study Box 3). In parallel to the DDR process, efforts to enhance the knowledge base of groups responsible for oversight of the security sector should be supported. This may include visits of parliamentarians, repre- sentatives of the Ministry of Labour, the media and civil society organisations to security installations (including barracks). Case Study Box 3 The impact of the census and chain of payments system in the DRC", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b2214568-0d04-42d4-a92d-bd9dbfa2f8cc", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 14, + "Paragraph": "Gender-responsive DDR and SSR The absence of women from the security sector is not just discriminatory but can represent a lost opportunity to benefit from the different skill sets and approaches offered by women as security providers.13 Giving women the means and support to enter the DDR process should be linked to encouraging the full representation of women in the security sector 5.10\tand thus to meeting a key goal of Security Council Resolution 1325 (2000) (see IDDRS 5.10 on Women, Gender and DDR, Para 6.3). If female ex-combatants are not given adequate consideration in DDR processes, it is very unlikely they will be able to enter the security forces through the path of integration. Specific measures shall be undertaken to ensure that women are encouraged to enter the DDR process by taking measures to de-stigmatise female combatants, by making avail- able adequate facilities for women during disarmament and demobilization, and by provid- ing specialised reinsertion kits and appropriate reintegration options to women. Female ex-combatants should be informed of their options under the DDR and SSR processes and incentives for joining a DDR programme should be linked to the option of a career within the security sector when female ex-combatants demobilise. Consideration of the specific challenges female ex-combatants face during reintegration (stigma, non-conventional skill sets, trauma) should also be given when considering their integration into the security sector. Related SSR measures should ensure that reformed security institutions provide fair and equal treatment to female personnel including their special security and protection needs.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "91b1d4f9-8d99-4523-a24d-d5b8685aa0d1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 15, + "Paragraph": "Physical vs. mobile DDR structures When considering demobilization based on semi-permanent (encampment) or mobile de- mobilization sites, a number of SSR-related factors should be taken into account. Mobile demobilization sites may offer greater flexibility for the DDR process as they are easier to set up, cheaper and may pose less of a security risk than encampment (see IDDRS 4.20 on Demobilization). On the other hand, the cantonment of ex-combatants in a physical struc- ture can provide for greater oversight and control in sites that may have longer term utility as part of an SSR process. Planning for demobilization sites should assess the availability of a capable and neutral security provider, paying particular attention to the safety of women, girls and vulnerable groups. Developing a communication strategy in partnership with community leaders should be encouraged in order to dispel misperceptions, better understand potential threats and build confidence. The potential long term use of demobilization sites may also be a factor in DDR planning. Investment in physical sites may be used post-DDR for SSR activities with semi-permanent sites subsequently converted into barracks, thus offering cost savings. Similarly, the infrastructure created under the auspices of a DDR programme to collect and manage weapons may support a longer term weapons procurement and storage system.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "59383f03-567f-481b-af56-a25a018c8652", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "DDR and SSR dynamics to consider before and during reintegration While the military remains a central actor, during the reintegration phase, common DDR/ SSR concerns focus on community safety and policing initiatives. Activities relating to the judiciary, border management and revenue collection, as well as wider issues pertaining to the inclusion of ex-combatants and their receiving communities in local and national decision making processes are also significant.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6f06cc49-1acb-41f2-a2ce-d3416dc8532e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 16, + "Paragraph": "Securing vulnerable communities Targeting reintegration options and securing vulnerable communities represents an im- portant area where synergies can be developed between DDR and SSR programmes. The reintegration of ex-combatants into the community provides a unique opportunity for con- fidence building between law enforcement bodies and local residents. The police has a key role to play in ensuring the safety of returning ex-combatants as well as securing communi- 4.50\tties that may be at greater risk following their return (see IDDRS 4.50 on UN Police Roles and Responsibilities, Para 11). However, police capacities will only be focused on this prior- ity if support to the DDR process is factored into planning, training and resource allocation. The ability of ex-combatants and their receiving communities to communicate their concerns and priorities to local law enforcement agencies, and vice-versa, is a key compo- nent of sustainable reintegration. Reintegration may provide an entry point for the develop- ment of local security plans through constructive dialogue between communities, including vulnerable and marginalised groups, and security providers. Capacity development within the military, police and other community level security providers should be prioritised to ensure police support for DDR objectives. In parallel, mandates and tasking should reflect the critical role of the police in establishing an enabling environment for the successful reintegration of ex-combatants.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "99edfae1-f057-4459-ad05-03513a4cdd5d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 16, + "Paragraph": "Tracking the return of ex-combatants There is a need to identify and act on information relating to the return and reintegration of ex-combatants. This can support the DDR process by facilitating reinsertion payments for ex-combatants and monitoring areas where employment opportunities exist. From an SSR perspective, better understanding the dynamics of returning ex-combatants can help identify potential security risks and sequence appropriate SSR support. Conflict and security analysis that takes account of returning ex-combatants is a com- mon DDR/SSR requirement. Comprehensive and reliable data collection and analysis may be developed and shared in order to understand shifting security dynamics and agree security needs linked to the return of ex-combatants. This should provide the basis for coordinated planning and implementation of DDR/SSR activities. Where there is mistrust between security forces and ex-combatants, information security should be an important consideration.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b3294171-5f1e-4234-aef3-69804aa39a15", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Housing, land and property (HLP) dispute mechanisms HLP projects are often developed to support the return of internally displaced persons (IDPs) and other vulnerable groups. While ex-combatants only represent a small segment of this group, they are more likely to resort to intimidation or force in order to attempt to resolve disputes. Moreover, ex-combatants may find that their land has been occupied as a deliberate strategy of intimidation. HLP therefore offers an opportunity to support re- integration while mitigating potential security problems down the line (see IDDRS module 4.30 on Social and Economic Reintegration). Complementary SSR measures that address the return of ex-combatants may focus on supporting dispute resolution mechanisms as well as addressing related security threats. Engagement with local authorities, community security and justice providers on HLP offers a means to link SSR concerns with support for returning ex-combatants. The devel- opment of special mechanisms for ex-combatants may be considered so that the time- sensitivity and stigma associated with their cases is taken into consideration. This should be balanced against the risk of perceived inequalities between ex-combatants and receiving communities. In either case, it is important to provide sensitisation on available support structures and how to access them.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc89d5e1-a9ff-49d3-8dc8-24234d7a6c15", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 17, + "Paragraph": "Community security initiatives Community security initiatives can be considered as a mechanism for both encouraging acceptance of ex-combatants and enhancing the status of local police forces in the eyes of communities (see IDDRS 4.50 on UN Police Roles and Responsibilities). Community-policing is increasingly supported as part of SSR programmes. Integrated DDR programme plan- ning may also include community security projects such as youth at risk programmes and community policing and support services (see IDDRS 3.41 on Finance and Budgeting). Community security initiatives provide an entry point for developing synergies be- tween DDR and SSR. DDR programmes may benefit from engaging with police public information units to disseminate information about the DDR process at the community level. Pooling financial and human resources including joint information campaigns may contribute to improved outreach, cost-savings and increased coherence.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ac2d89b8-bd23-4d69-acae-d0fe6c1b3685", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 17, + "Paragraph": "DDR, SSR and SALW While DDR and SALW control initiatives tend to take place separately, they are linked because in practice they both seek to manage, reduce and control the availability of weapons. SALW control measures are also closely linked to SSR because they depend on the enforce- ment capacity of the police, the ability of border management bodies to restrict illicit flows of these weapons across borders as well as security sector oversight and accountability mechanisms to ensure appropriate control over national stocks. SALW control initiatives may provide an entry point for coordinating DDR-SSR efforts. Developing linkages between national SALW Commissions and DDR/SSR Commissions may provide one means to institutionalise coordination. To ensure potential synergies are not lost, SALW control measures should form part of joint assessments and be reflected in the design of DDR/SSR programmes. SALW availability should be a component of conflict 4.30\tand security analysis (see IDDRS 4.30 on Social and Economic Reintegration, Section 5.1.).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ba138f0-0f92-4e87-918a-96965d2efb0f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "DDR and the private security sector There is a need to understand the influence of DDR processes on the role and capacities of the private security sector and how this affects the security of communities and individuals (see Case Study Box 4). Ex-combatants are a natural target group for recruitment by pri- vate security bodies. However, the security implications of DDR activities in this area are unclear due to lack of knowledge concerning the nature, capacity, motives and the general lack of oversight and accountability of the private security sector. The scale and role of private security bodies should form part of evaluations of ex- combatants reintegrating into rural and urban settings in order to inform potential SSR responses. Complementary SSR initiatives may include regulation of commercial entities or practical measures at the community level to align the roles and objectives of state and non-state security providers. Case Study Box 4 PSC regulation as an entry point for coordination", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d11a672c-7cfc-4a38-8593-e859421bed71", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "DDR and border management Instability is exacerbated by the flow of combatants as well as the trafficking of people, arms and other goods across porous borders. Cross-border trafficking can provide com- batants with the resource base and motivation to resist entering the DDR process. There is also a risk of re-recruitment of ex-combatants into armed groups in adjacent countries, thus undermining regional stability. Developing sustainable border management capacities can therefore enhance the effectiveness of disarmament measures, prevent the re-recruitment of foreign combatants that transit across borders and contribute to the protection of vulner- able communities. Training and capacity building activities should acknowledge linkages between DDR and border security. Where appropriate, conflict and security analysis should address re- gional security considerations including cross-border flows of combatants in order to coor- dinate responses with border security authorities. At the same time, adequate options and opportunities should be open to ex-combatants in case they are intercepted at the border. Lack of logistics and personnel capacity as well as inaccessibility of border areas can pose major challenges that should be addressed through complementary SSR activities. SALW projects may also benefit from coordination with border management programmes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "85721bb1-9bd4-418f-a9cb-ee7dfd609012", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 19, + "Paragraph": "Programming factors and entry points DDR and related programmes should be mutually supportive and integrated within a common framework (see IDDRS 3.20 on DDR Programme Design). This section proposes ways to appropriately integrate SSR concerns into DDR assessments, programme design, monitoring and evaluation (9.1-9.3). To avoid unrealistic and counter-productive approaches, decisions on how to sequence activities should be tailored to context-specific security, political and socio-economic factors. Entry points are therefore identified where DDR/SSR concerns may be usefully considered (9.4).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "98fc3e7d-d886-4fc3-b50d-345b625c42ff", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 19, + "Paragraph": "SSR-sensitive assessments Needs assessments are undertaken periodically in order to help planners and programmers understand progress and undertake appropriate course corrections. During the period prior to the development of a DDR programme, assessments can have the dual purpose of identifying programming options and providing guidance for DDR-related input into peace agreements. While DDR specialists should be included in integrated assessments that situate DDR within broader UN and national planning (see IDDRS 3.10 on Integrated DDR Planning) this should also be a regular practice for SSR. Promoting joint assessments through includ- ing representatives of other relevant bilateral/multilateral actors should also be encouraged to enhance coherence and reduce duplication. In designing DDR assessments, SSR con- siderations should be reflected in ToRs, the composition of assessment teams and in the knowledge gathered during assessment missions (see Box 5).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9d57f474-a7e9-4d04-9310-6e0f69efed0f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 20, + "Paragraph": "Multidimensional technical assessment mission A first step in the pre-mission planning stage leading to the development of a UN concept of 3.10\toperations is the initial technical assessment (see IDDRS 3.10 on Integrated DDR Planning). In most cases, this is now conducted through a multidimensional technical assessment mission. Multidimensional technical assessment missions represent an entry point to begin en- gaging in discussion with SSR counterparts on potential synergies between DDR and SSR. If these elements are already reflected in the initial assessment report submitted to the Secretary-General, it is more likely that the provisions that subsequently appear in the mis- sion mandate for DDR and SSR will be coherent and mutually supportive.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7bff0d19-fdcc-4a2c-aa33-6745f55a02cd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 20, + "Paragraph": "Detailed field assessments If SSR issues and perspectives are to be integrated at an early stage, assessments and their outputs must reflect a holistic SSR approach and not just partial elements that may be most applicable in terms of early deployment. Situational analysis of relevant political, economic and security factors is essential in order to determine the type of SSR support that will best complement the DDR programme as well as to identify local and regional implications of decisions that may be crafted at the national level. Detailed field assessments that inform the development of the DDR programme should 3.10\tbe linked to the design of SSR activities (see IDDRS 3.10 on Integrated DDR Planning, Para 5.4). This may be done through joint assessment missions combining DDR and SSR com- ponents, or by drawing on SSR expertise throughout the assessment phase. Up to date conflict and security analysis should address the nexus between DDR and SSR in order to support effective engagement (see Box 6). Participatory assessments and institutional capac- ity assessments may be particularly useful for security-related research (see IDDRS 3.20 on DDR Programme Design, Para. 5.3.6).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "aefbec4b-a458-4cf4-86a3-91098694cc37", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 21, + "Paragraph": "Programme design It is particularly important that each phase of DDR programme design (see IDDRS 3.20 on DDR Programme Design) addresses the context-specific political environment within which DDR/SSR issues are situated. Shifting political and security dynamics means that flexibility is an essential design factor. Specific elements of programme design should be integrated within overall strategic objectives that reflect the end state goals that DDR and SSR are seeking to achieve. Detailed field assessments should cover political and security issues as well as identifying key national and international stakeholders in these processes (see Box 6). The programme development and costing phase should result in indicators that reflect the relationship between DDR and SSR. These may include: linking disarmament/demobilization and community security; ensuring integration reflects national security priorities and budgets; or demonstrating that operational DDR activities are combined with support for national management and oversight capacities. Development of the DDR implementation plan should integrate relevant capacities across UN, international community and national stake- holders that support DDR and SSR and reflect the implementation capacity of national authorities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1f0822af-d103-4650-86c6-0d8ce46f43d2", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 21, + "Paragraph": "Monitoring and evaluation Monitoring and evaluation can provide for a structured approach to recognising and opera- tionalising the linkages between DDR and SSR. It also serves as a mechanism for enhancing knowledge management and transfer. A common challenge results from information gaps due to rapidly changing political and security dynamics. While the MIS provides a structured means of collecting information, baseline data should be established and continuously mon- itored to adjust to changing conditions. In outcome evaluations, effective monitoring and evaluation should provide an entry point for reviewing DDR and SSR programmes to ensure that they are planned in a mutually supportive manner (see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes). Reports of impact evaluations may provide a useful basis for analysing the intended impact of DDR/SSR programmes, identifying their unintended consequences as well as adjusting programming objectives and priorities as appropriate. Mid-term reviews should be used as an opportunity to assess effectiveness and make necessary changes to programmes.14", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e68cdca3-d58c-4a62-9472-3770b06ea9da", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 19, + "Paragraph": "Entry points Linking international support to a broad based, nationally owned process provides an important basis for coherent DDR and SSR programming. As discussed below, national dialogue, peace processes and national security or sector-specific policy reviews all repre- sent entry points to link DDR and SSR within a broader national governance framework. 3.20 3.20", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "da7a1d2b-f8ee-4cf6-a200-12c17aa26de5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 22, + "Paragraph": "National dialogue Holding a national seminar does not mean that a common vision of necessary reform measures will (or should) be the outcome. Rather, it can mark the start of a participatory process of dialogue intended to clarify national needs and values and thus link short term security goals to longer term objectives. How national dialogue processes are designed and implemented may be more important than concrete outputs. Broad participation, in- cluding the transitional or elected authorities as well as representatives of the security sector, oversight bodies and civil society is important to enhance legitimacy and relevance. They can occur before or after the signing of a peace agreement. Equally, they can take place during transitional periods or following national elections to provide impetus to the peacebuilding process. National dialogue processes should be supported as a means to foster common under- standings of DDR and SSR challenges (See Case Study Box 5). Depending on the circumstances, specific sectoral presentations at national seminars may be useful to share developments in different parts of the security sector, foster national ownership and better understand the expectations and perspectives of different stakeholder groups. A sub-group on DDR-SSR linkages or specific sub-groups on issues such as political good governance may be established in order to develop knowledge and raise awareness on this nexus. Support to national dia- logue processes should include provision of follow-up mechanisms to enhance sustainability. Case Study Box 5 DDR & the national dialogue on SSR in the CAR", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "96552558-1f25-4031-be07-f606dbb18df0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 22, + "Paragraph": "Peace agreements Peace processes serve as an early opportunity to ensure DDR and SSR concerns are in- cluded on the national agenda and linked within a common framework.15 While DDR decisions often form part of agreements, the relationship between these provisions and decisions on the size and nature of post-conflict security forces frequently reflect the im- mediate priorities and interests of the different parties\u2014such as maintaining a power base and rewarding allies\u2014rather than being determined by the security needs of the state and its citizens. In supporting peace processes, SSR concerns should therefore influence approach and substance. Where feasible, decisions within peace agreements on demobilization and retention of ex-combatants should be informed by the needs of the future security sector. Given that SSR frameworks will evolve long after the conclusion of peace negotiations, flexibility is important to ensure that parties are not tightly bound to decisions (e.g. on force size) that later prove unrealistic. However, agreement on the broad frameworks of subsequent SSR processes, especially commitments to consultative mechanisms, can provide parties with confidence in and commitment to both the initial DDR programme and recognition of the linkages with longer term SSR requirements. The provision of both DDR and SSR expertise within negotiations can ensure coherence between the two processes. In particular, it is important that advisers promote a broad understand- ing of SSR that links reform of security providers to issues of management, oversight and accountability. Providing expertise drawn from the same region and ensuring a role for regional political organisations in negotiations may provide additional credibility through their contextual awareness and legitimacy.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "549de91a-d1ea-49ce-acd4-ee84ee35e24c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 23, + "Paragraph": "Transitional arrangements Transitional political arrangements offer clear entry points and opportunities to link DDR and SSR. In particular, transitional arrangements often have a high degree of legitimacy when they are linked to peace agreements and can be used to prepare the ground for longer term reform processes. However, a programmatic approach to SSR that offers opportunities to link DDR to longer term governance objectives may require levels of political will and legiti- mate governance institutions that will most likely only follow the successful completion of national elections that meet minimum democratic standards. During transitional periods prior to national elections, SSR activities should address immediate security needs linked to the DDR process while supporting the development of sustainable national capacities. Building management capacity, promoting an active civil society role and identifying practical measures such as a security sector census or improved payroll system can enhance the long term effectiveness and sustainability of DDR and SSR programmes. In the absence of appropriate oversight mechanisms for the security sector, supporting an ad hoc mechanism to oversee the DDR process, which includes a coordina- tion mechanism for DDR and SSR, should be considered. Such provision should include the subsequent transfer of competencies to formal oversight bodies.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c6cc2659-2a48-4092-9350-52fddba23ed7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 23, + "Paragraph": "Elections Elections should serve as an entry point for discussions on DDR and SSR. While successful elections can provide important legitimacy for DDR and SSR processes, they tend to mono- polise the available political space and thus strongly influence timelines and priorities, including resource allocation for DDR and SSR. Army integration may be prioritised in order to support the provision of effective security forces for election security while SSR measures may be designed around the development of an election security plan which brings together the different actors involved. Election security can provide a useful catalyst for discussion on the roles and respon- sibilities of different security actors. It may also result in a focus on capacity building for police and other bodies with a role in elections. Priority setting and planning around sup- port for elections should be linked to longer term SSR priorities. In particular, criteria for entry and training for ex-combatants integrating within the security sector should be con- sistent with the broader values and approaches that underpin the SSR process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6525f0ef-a27f-49d2-9a52-25165c1dd0f5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "National commissions National DDR commissions exist in many of the countries that embark on DDR processes and are used to coordinate government authorities and international entities that support 3.30\tthe national DDR programme (see IDDRS 3.30 on National Institutions for DDR). National DDR commissions therefore provide an important entry point to incorporate SSR-relevant approaches and priorities. The ToRs of National DDR commissions may provide an opportunity to link national DDR and SSR capacities. For example, the commission may share information with rele- vant Ministries (beyond the Ministry of Defence) such as Justice and the Interior as well as the legislative and civil society. Depending on the context, national commissions may be- come permanent parts of the national security sector governance architecture. This can help to ensure that capacities developed in support of a DDR programme are retained within the system beyond the lifespan of the DDR process itself.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "349616d1-94cb-4ef1-b8f1-e84ddd1e434b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "Supporting national and international capacities This section addresses the common challenge of operationalising national ownership in DDR and SSR programmes. It then considers how to enhance synergies in international support for DDR and SSR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "612f3141-ee4b-4425-9184-297f073e7318", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "National ownership Weak institutions and limited capacities are frequently cited as impediments to national ownership in post-conflict contexts. However, this points to the need for a dual focus on supporting transparent, inclusive national decision-making combined with the develop- ment of sustainable national capacities. Due attention to national ownership is therefore critical to addressing challenges of legitimacy and sustainability that are common to DDR and SSR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "37c6a545-b87d-433d-924c-55cbbd6f50cd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "Participation and consultation National ownership extends beyond central government to include a wide range of actors with a role in security provision, management and oversight. An important component of the DDR assessment phase should therefore be to identify national stakeholders that can contribute to the process. Supporting the meaningful involvement of parliament, civil soci- ety as well as local authorities and communities in DDR and SSR decision-making can help ensure that programmes are realistic and respond to local needs. The development of a comprehensive national security strategy (NSS) or narrower, sector specific strategies can (and should) be a lengthy process that continues after DDR is underway. However, insights drawn from discussions at national and local levels should be reflected in the de- sign, implementation and sequencing of DDR and SSR programmes. A process of national dialogue (see 9.4.1.) can help shape DDR/SSR frameworks that are underpinned by context-specific political and security considerations. Processes enacted to develop national or sector-specific security strategies should inform priorities and har- monise the roles of actors involved in both DDR and SSR (see Box 7). Participation should be encouraged from relevant government ministries (e.g. interior, finance, defence, intelli- gence, police, justice, immigration, health, education, labour, social welfare, gender, national HIV/AIDS Programme Councils), as well as legislative committees and financial manage- ment bodies. Civil society represents a key target group in helping to build trust, fostering \u2018buy in\u2019 and avoiding perceptions that the security sector is de-linked from the needs of citizens. Community consultations and communications strategies should be developed with national and local media to enhance dialogue processes in support of DDR and SSR programmes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9319235b-62f4-4626-af67-95a0d95c1261", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 25, + "Paragraph": "Capacity development Supporting the development of relevant national capacities to develop, manage and imple- ment programmes enhances the effectiveness of DDR and SSR while creating cross-cutting skills that contribute to the long term integrity of security institutions. Given their experi- ence, ex-combatants may play a significant role in these areas at national and community levels. In particular, a focus on security sector management and oversight provides an important means of contributing to sustainable national capacities. Identifying national capacity gaps linked to DDR/SSR should be an important objec- tive of needs assessments (see Box 6). Opportunities to develop cross-cutting skills (e.g. strategic planning, human resources, financial management, including gender budgeting, communications and outreach) should be agreed and prioritised with national authorities. Measures to enhance national capacities for democratic control and civilian oversight and to develop effective checks and balances within a clear legal framework are particularly important. Support for parliaments in fulfilling their oversight function can promote trans- parency and therefore trust in programmes and their use of resources.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f44c483f-77f4-4083-be17-1f62df0c8429", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 4, + "Paragraph": "Sustainability The politically sensitive nature of decisions relating to DDR and SSR means that external actors must pay particular attention to both the form and substance of their engagement. Close understanding of context, including identification of key stakeholders, is essential to ensure that support to national actors is realistic, culturally sensitive and sustainable. Externally- driven pressure to move forward on programming priorities will be counter-productive if this is de-linked from necessary political will and implementation capacity to develop policy and implement programmes at the national level. The design, implementation and timing of external support for DDR and SSR should be closely aligned with national priorities and capacities (see Boxes 6, 7 and 8). Given that activities may raise concerns over interference in areas of national sovereignty, design and approach should be carefully framed. In certain cases, \u201cdevelopment\u201d or \u201cprofessionalisation\u201d rather than \u201creform\u201d may represent more acceptable terminology. Setting out DDR/SSR commitments in a joint letter of agreement and regularly monitoring implementation pro- vides a transparent means to set out agreed commitments between national authorities and the international community.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "d5e43202-57a9-4071-bc17-9677a1935251", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "International support A common challenge for DDR and SSR programmes is to develop approaches where exter- nal assistance supports national actors in defining and implementing their own security needs and objectives. While operationalising national ownership remains a major challenge for the international community, this can be mitigated through effective coordination, en- hanced capacities and targeted funding.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3921bca5-d1c1-47e4-ad9c-ba1f11268c5e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "Coordination Improved coordination can support more coherent policy making and programming that takes into account the nexus between DDR and SSR. By contrast, parallel or contradictory approaches risk undermining common objectives to support national DDR and SSR proc- esses. While DDR is characterised by a strong UN role, SSR activities (and funding) are predominantly supported by bilateral donors through specific arrangements with national authorities. In some cases there may be a mixed approach, for example, with bilateral partners supporting army reform, whereas UN Police is advising on rebuilding the police sector. Promoting \u2018joint\u2019 assessments and develop- ing in-country coordination mechanisms can provide a clearer basis for developing co- herent international support in these areas. In practice, limited overlap between ac- tors engaged in DDR and SSR indicates a need to establish more effective coordination mechanisms. The UN may in many cases provide a coordinating role for international support in a given context. Mapping the var- ious actors involved in DDR and SSR and their activities provides a structured basis to identify gaps and build synergies across the international community (see Case Study Box 6 below). Agreeing common understandings of \u2018SSR\u2019, consistent with the UN approach and other relevant policy frameworks is an important starting point for coordination. The creation of a joint steering committee or similar coordination mechanism for DDR/SSR may contribute to enhancing coherence throughout programme implementation. However, sufficient political will to implement \u2018joined up\u2019 approaches remains the key enabling fac- tor for improved coordination. Case Study Box 6 Strengthening SSR coordination in Burundi", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a22a171e-0b14-48a3-b3fc-e061090f359d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "Capacities Support to DDR/SSR processes requires the deployment of a range of different capacities.17 Awareness of the potential synergies that may be realised through a coherent approach to these activities is equally important. Appropriate training offers a means to develop such awareness while including the need to consider the relationship between DDR and SSR in the terms of reference (ToRs) of staff members provides a practical means to embed this issue within programmes. Cross-participation by DDR and SSR experts in tailored training programmes that ad- dress the DDR/SSR nexus should be developed to support knowledge transfer and foster common understandings. Where appropriate, coordination with SSR counterparts (and vice versa) should be included in the ToRs of relevant headquarters and field-based personnel. Linking the provision of DDR/SSR capacities to a shared vision of DDR/SSR objectives in a given context and an understanding of comparative advantages in different aspects of DDR/ SSR should be an important component of joint coordination and planning (see 10.2.1.).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c9cb9660-a101-4568-888b-609ace89b8ee", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 27, + "Paragraph": "10.2.3 Funding Recognizing that the success of DDR may be linked to progress in SSR, or vice versa, re- quires sensitivity to the need to invest simultaneously in related programmes. Implementation of DDR and SSR programmes is frequently hampered by the non-availability or slow disburse- ment of funds. Delays in one area due to lack of funding can mean that funds earmarked for other key activities can also be blocked. If ex-combatants are forced to wait to enter the DDR process because of funding delays, this may result in heightened tensions or participants abandoning the process. Given the context specific ways that DDR and SSR can influence each other, there is no ideal model for integrated DDR-SSR funding. Increased use of multi-donor trust funds that address both issues represents one potential means to more effectively integrate DDR and SSR through pooled funding. National ownership is a key consideration: funding support for DDR/SSR should reflect the absorptive capacity of the state, including national resource limitations. In particular, the levels of ex-combatants integrated within the reformed security sector should be sus- tainable through national budgets. Supporting measures to enhance management and oversight of security budgeting provide an important means to support the effective use of limited resources for DDR and SSR. Improved transparency and accountability also contributes to building trust at the national level and between national authorities and international partners.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6ed768be-ead5-44ea-9f9e-a60b14a37a13", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 28, + "Paragraph": "Planning and design checklist The following is an indicative checklist for considering DDR-SSR linkages. Without being exhaustive, it summarises key points emerging from the module relevant for policy mak- ers and practitioners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2b8e1310-ca6c-48bc-9f0a-05981f1a5751", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "General Have measures been taken to engage both DDR and SSR experts in the negotiation of peace agreements so that provisions for the two are mutually supportive? Are a broad range of stakeholders involved in discussions on DDR and SSR in peace negotiations including civil society and relevant regional organisations? Do decisions reflect a nationally-driven vision of the role, objective and values for the security forces? Have SSR considerations been introduced into DDR decision-making and vice versa? Do assessments include the concerns of all stakeholders, including national and inter- national partners? Have SSR experts commented on the terms of reference of the assess- ment and participated in the assessment mission? Is monitoring and evaluation carried out systematically and are efforts made to link it with SSR? Is M&E used as an entry-point for linking DDR and SSR concerns in planning?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0dab698b-0b76-423d-be59-90904482bce1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 28, + "Paragraph": "SSR/DDR dynamics before and during demobilization Has the potential long-term use of demobilization and disarmament sites been fac- tored into planning for DDR? Have disarmament programmes been complemented by security sector training and other activities to improve national control over stocks of weapons and ammunition? Has a security sector census been considered/implemented to support human and financial resource management and inform integration decisions? Have clear criteria been developed for entry of ex-combatants into the security sector? Does this reflect national security priorities as well as the capacity of the security forces to absorb them? Is provision made for vetting to ensure appropriate skills and consid- eration of past conduct? Have rank harmonisation policies been introduced which establish a formula for con- version from former armed groups to national armed forces? Was this the result of a dialogue which considered the need for affirmative action for marginalised groups? Is there a sustainable distribution of ex-combatants between the reintegration and inte- gration programmes? Has information been disseminated and counselling been offered to ex-combatants facing a voluntary choice between integration and reintegration? Have measures been taken to identify and address potential security vacuums in places where ex-combatants are demobilized, and has this information been shared with rel- evant authorities? Are security concerns related to dependents taken into account? Have efforts been made to actively encourage female ex-combatants to enter the DDR process? Have they been offered the choice to integrate into the security sector? Has appropriate action been taken to ensure that the security institutions provide women with fair and equal treatment, including realistic employment opportunities? Is there a communications/training strategy in place? Does it include messages specifi- cally designed to facilitate the transition from combatant to security provider including behaviour change, HIV risks and GBV?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bea0e52d-4099-40cf-b664-1b15ecca7429", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 29, + "Paragraph": "SSR/DDR dynamics before and during reintegration Is data collected on the return and reintegration of ex-combatants? Is this analysed in order to coordinate relevant DDR and SSR activities? Has capacity-building within the security sector been prioritised in a way to ensure that security institutions are capable of supporting DDR objectives? Have ex-combatants been sensitised to the availability of housing, land and property dispute mechanisms? In cases where private security bodies are a source of employment for ex-combatants, are efforts actively made to ensure their regulation and that appropriate vetting mech- anisms are in place? Have border management services been sensitised and trained on issues relating to cross-border flows of ex-combatants?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b7d249fa-2c97-4b66-912e-7fbd3bcfd1a5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "Coordination Have opportunities been taken to engage with national security sector management and oversight bodies on how they can support the DDR process? Is there a mechanism that supports national dialogue and coordination across DDR and SSR? If not, could the national commission on DDR fulfil this role by inviting representatives of other ministries to selected meetings? Are the specific objectives of DDR and SSR clearly set out and understood (e.g. in a \u2018letter of commitment\u2019)? Is this understanding shared by national actors and interna- tional partners as the basis for a mutually supportive approach?", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5871b651-7b87-4aca-82b0-003f60f53b36", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 30, + "Paragraph": "Knowledge management When developing information management systems, are efforts made to also collect data that will be useful for SSR? Is there a mechanism in place to share this data? Is there provision for up to date conflict and security analysis as a common basis for DDR/SSR decision-making? Have efforts been made to share information with border management authorities on high risk areas for foreign combatants transiting borders? Has regular information sharing taken place with relevant security sector institutions as a basis for planning to ensure appropriate support to DDR objectives? Are adequate mechanisms in place to ensure institutional memory and avoid over reliance on key individuals? Are assessment reports and other key documents retained and easily accessible in order to support lessons learned processes for DDR/SSR?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0d5f1e40-86b4-4043-b186-1346a11ff1ee", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 27, + "Paragraph": "Funding Does resource planning seek to identify gaps, increase coherence and mitigate compe- tition between DDR and SSR? Have the financial resource implications of DDR for the security sector been considered, and vice versa? Are DDR and SSR programmes realistic and compatible with national budgets?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "886c49db-a659-4a64-9821-9fe05327586e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 30, + "Paragraph": "Capacity development, pooling resources and training Have efforts been made to sensitise staff on the DDR/SSR nexus through training or other activities? Has the need for personnel to link DDR and SSR concerns been clearly agreed at Head- quarters and included in the ToRs of relevant personnel? Has cross-participation in DDR or SSR training been implemented to foster knowledge transfer and build relationships? Have key skills sets been identified and provision made for the availability of a multi- disciplinary resource pool? Are linguistic and \u2018knowledge transfer\u2019 skills adequately represented in order to support national capacity development? In the area of national capacity-building, has the development of cross-cutting skills such as human resources and financial management (common requirements for both DDR and SSR) been encouraged? Has pooling financial and physical resources for DDR and SSR been considered, for example, in the area of community security initiatives or SALW initiatives? Are UN personnel aware of available SSR Resources, including through the UN Inter- Agency SSR Task Force (e.g. policy guidance, resources, gap analysis, backstopping)?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "41e5b9ac-9aa6-4186-a479-4d93f83385cd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Report of the Secretary-General on \u201cThe rule of law and transitional justice in conflict and post-conflict societies\u201d (2004) The Secretary-General\u2019s Report \u201cThe rule of law and transitional justice in conflict and post-conflict societies,\u201d defines the rule of law as \u201ca principle of governance in which all persons, institutions and entities, public and private, including the State itself, are account- able to laws that are publicly promulgated, equally enforced and independently adjudicated, and which are consistent with international human rights norms and standards\u201d.18 DDR is identified as one key element of \u201ctransitioning out of conflict and back to normalcy.\u201d", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8115f53e-f992-4c73-9067-dd2aa0d80d0b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Report of the Secretary-General on \u201cDisarmament, demobilization and reintegration\u201d (2006) The Secretary-General\u2019s report on \u201cDisarmament, demobilization and reintegration\u201d dis- cusses the increased engagement of the United Nations in DDR from 2000-2005 in peace- keeping and non-peacekeeping contexts. Some important \u201clessons learned\u201d from this work include: 1) DDR cannot be implemented without coordinating with the wider peacebuild- ing and recovery process; 2) DDR work should continue beyond the life of a traditional peacekeeping operation thus national capacities must be developed to ensure sustainability; 3) a fragmented approach to DDR is counterproductive; and 4) DDR \u201cmust also be planned in close coordination with transitional processes to review and reform the rule of law and security sectors, as well as efforts to control and reduce small arms proliferation.\u201d19", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "6dcfc012-2c98-49e5-849f-5af188c11aaf", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Presidential Statement on \u201cMaintenance of international peace and security: role of the Security Council in supporting security sector reform\u201d (21 February 2007) The Presidential Statement of 21 February 2007 emphasises that \u201creforming the security sector in post-conflict environments is critical to the consolidation of peace and stability, promoting poverty reduction, rule of law and good governance, extending legitimate state authority, and preventing countries from relapsing into conflict.\u201d20 The importance of a \u201cprofessional\u201d and \u201caccountable\u201d security sector as well as an \u201cimpartial\u201d justice sector are critical to sustainable peace and development. The fundamental role of the United Nations in \u201cpromoting comprehensive, coherent, and co-ordinated international support to nationally- owned security sector reform programmes, implemented with the consent of the country concerned\u201d is stressed, as is the need for a balanced approach to SSR that considers institu- tional capacity, affordability and sustainability of SSR programmes. Inter-linkages between SSR and \u201ctransitional justice, disarmament, demobilization and repatriation, reintegration and rehabilitation of former combatants, small arms and light weapons control, as well as gender equality, children and armed conflict and human rights issues\u201d are emphasised.21", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c1edd204-7080-4c70-83db-e00eefd4f14b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Report of the Secretary-General on \u201cSecuring peace and development: the role of the United Nations in supporting security sector reform\u201d (2008) The Secretary-General\u2019s report \u201cSecuring peace and development: the role of the United Nations in supporting security sector reform\u201d, notes that \u201cthe development of effective and accountable security institutions on the basis of non-discrimination, full respect for human rights and the rule of law is essential\u201d.22 As part of a holistic strategy, the United Nations can play a normative as well as operational role in SSR. Normatively, the United Nations can \u201c[elaborate] policies and guidelines for the implementation of security sector reform plans and programmes and ensure that peacekeeping operations and United Nations country teams engaged in reform receive practical guidance and assistance in the estab- lishment of benchmarks and other evaluation processes\u201d.23 Operationally, the United Nations can: 1) provide a minimum level of security from which to launch SSR activities; 2) support needs assessments and strategic planning efforts; 3) facilitate dialogue among the many actors and stakeholders involved in a country\u2019s SSR process; 4) provide technical advice on defence and law enforcement institutions, border management, crime prevention and customs, among others; 5) coordinate and mobilize resources; 6) support the development of oversight mechanisms; and 7) support monitoring, evaluation and review efforts.24", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2be73c93-fabe-4f75-9e53-83daee0f28ef", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Presidential Statement on \u201cMaintenance of international peace and security: role of the Security Council in supporting security sector reform\u201d (12 May 2008) The Presidential Statement of 12 May 2008 on supporting security sector reform highlights that SSR is a long-term process and that \u201cit is the sovereign right and primary responsibil- ity of the country concerned to determine its national approach and priorities for security sector reform\u201d.25 The statement also reiterates that a holistic and coherent UN approach is needed and underlines the important role the Peacebuilding Commission \u201ccan play in ensuring continuous international support to countries emerging from conflict.\u201d26", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-6.20-DDR-and-Transitional-Justice.json b/src/Static/data/json/IDDRS-6.20-DDR-and-Transitional-Justice.json new file mode 100644 index 0000000..cdc0d72 --- /dev/null +++ b/src/Static/data/json/IDDRS-6.20-DDR-and-Transitional-Justice.json @@ -0,0 +1,933 @@ +[ + { + "ID": "44a972e6-e40d-4a3d-8228-e318ff7092b3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Summary This module on DDR and transitional justice aims to contribute to accountable DDR pro- grammes that are based on more systematic and improved coordination between DDR and transitional justice processes, so as to best support the successful transition from con- flict to sustainable peace. It is intended to provide a legal framework, guiding principles and options for policymakers and programme planners who are contributing to strategies that aim to minimize tensions and build on opportunities between transitional justice and DDR. Coordination between transitional justice and DDR programmes begins with an under- standing of how transitional justice and DDR may interact positively in the short-term in ways that, at a minimum, do not hinder their respective objectives of accountability and stability. Coordination between transitional justice and DDR practitioners should, however, aim beyond that. Efforts should be undertaken to constructively connect these two proc- esses in ways that contribute to a stable, just and long-term peace.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "27b8f266-29bc-42a4-88fa-978d55c069a9", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Module scope and objectives This module will explore the linkages between DDR programmes and transitional justice measures that seek prosecutions, truth-seeking, reparation for victims and institutional reform to address mass atrocities that occurred in the past. It is based on the principle that DDR programmes that are informed by international humanitarian law and international human rights law are more likely to achieve the long term objectives of the programme and be better supported by the international community. It aims to contribute to DDR programmes that comply with international standards and promote transitional justice objectives by pro- viding a relevant legal framework and set of guidelines and options for practitioners to consider when designing, implementing, and evaluating DDR programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a8f4ab36-7219-48a0-b166-ebbb7a7e8ef7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Terms, definitions, and abbreviations Annex A contains a list of terms and definitions used in this module. A complete glossary of all terms, definitions and abbreviations used in this series of Integrated DDR Standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards. This use is consistent with the language used in the Inter- national Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c8706847-5cfa-4810-a345-72ace1ee4c60", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 4, + "Paragraph": "Introduction Since the mid-1980s, societies emerging from violent conflict or repressive rule have often chosen to address past violations of international human rights law and international humani- tarian law through transitional justice measures. Transitional justice \u201ccomprises the full range of processes and measures associated with a society\u2019s attempts to come to terms with a legacy of large-scale past abuses, in order to ensure accountability, serve justice and achieve reconciliation.\u201d1 (S/2004/616) It is primarily concerned with gross violations of international human rights law2 and seri- ous violations of international humanitarian law. Transitional justice measures may in- clude judicial and non-judicial responses such as prosecutions, truth commissions, reparations programmes for victims and tools for institutional reform such as vetting. Whatever combination is chosen must be in conformity with international legal standards and obligations. This module will also provide information on locally-based processes of justice, justice for women, and justice for children. Transitional justice measures are increasingly part of the political package that is agreed to by the parties to a conflict in a cease-fire or peace agreement. Subsequently, it is not uncommon for DDR programmes and transitional justice measures to coexist in the post- conflict period. The overlap of transitional justice measures with DDR programmes can create tension. Yet the coexistence of these two types of initiatives in the immediate aftermath of conflict\u2014one focused on accountability, truth and redress and the other on security\u2014 may also contribute to achieving the long-term shared objectives of reconciliation and peace. DDR may contribute to the stability necessary to implement transitional justice ini- tiatives; and the implementation of transitional justice measures for accountability, truth, redress and institutional reform can increase the likelihood that DDR programmes will achieve their aims, by strengthening the legitimacy of the programme from the perspec- tive of the victims of violence and their communities, and contributing in this way to their willingness to accept returning ex-combatants. The relationship between DDR programmes and transitional justice measures can vary widely depending on the country context, the manner in which the conflict was fought and how it ended, and the level of involvement by the international community, among many other factors. In situations where DDR programmes and transitional justice meas- ures coexist in the field, both stand to benefit from a better understanding of their respec- tive mandates and ultimate aims. In all DDR processes there is a need to understand how DDR programmes link in with other aspects of a peace consolidation process, be they political, humanitarian, security or justice related, so as to avoid one process impacting negatively on another. UN-supported DDR aims to be people-centred, flexible, accountable and 2.10\ttransparent; nationally owned; integrated; and well planned (see IDDRS 2.10 on the UN Approach to DDR). This module therefore further aims to contribute to an accountable DDR that is based on more systematic and improved coordination between DDR and tran- sitional justice processes so as to best facilitate the successful transition from conflict to sustainable peace. Box 1 Primary approaches to transitional justice Prosecutions \u2013 are the conduct of investigations and judicial proceedings against an alleged perpetrator of a crime in accordance with international standards for the administration of justice. For the purposes of this module, the focus is on the prosecution of individuals accused of criminal conduct involving gross violations of international human rights law, serious violations of interna- tional humanitarian law and violations of international criminal law. Prosecutions initiatives can vary. They can be broad in scope, aiming to try many perpetrators, or they can be narrowly focused on those that bear the most responsibility for the crimes committed. Reparations \u2013 are a set of measures that provides redress for victims of gross violations of international human rights law, serious violations of international humanitarian law and violations of international criminal law. Reparations can take the form of restitution, compensation, rehabili- tation, satisfaction, and guarantees of non-repetition. Reparations programs have two goals: first, to provide recognition for victims because reparation are explicitly and primarily carried out on behalf of victims; and, second, to encourage trust among citizens, and between citizens and the state, by demonstrating that past abuses are regarded seriously by the new government. Truth commissions \u2013 are non-judicial or quasi-judicial fact-finding bodies. They have the primary purpose of investigating and reporting on past abuses in an attempt to understand the extent and patterns of past violations, as well as their causes and consequences. The work of a commission is to help a society understand and acknowledge a contested or denied history, and bring the voices and stories of victims to the public at large. It also aims at preventing further abuses. Truth commissions can be official, local or national. They can conduct investigations and hearings, and can identify the individuals and institutions responsible for abuse. Truth commissions can also be empowered to make policy and prosecutorial recommendations. Institutional reform \u2013 is changing public institutions, including those that may have perpetu- ated a conflict or served a repressive regime, and transforming them into institutions that are more effective and accountable and thus better able to support the transition, sustain peace and preserve the rule of law. Following a period of massive human rights abuse, building fair and efficient public institutions play a critical role in preventing future abuses. It also enables public institutions, in particular in the security and justice sectors, to provide criminal accountability for past abuses.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "6604b193-ad83-4101-881c-4735d170ceb0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 5, + "Paragraph": "Background There are good reasons to anticipate a rise in situations where DDR and transitional justice initiatives will be pursued simultaneously. Transitioning states are increasingly using transitional justice measures to address past violations of international human rights law and humanitarian law, and prevent such violations in the future. At present, formal institutional connections between DDR and transitional justice are rarely considered. In some cases, the different timings of DDR and transitional justice processes constrain the forging of more formal institutional interconnections. Disarmament and demobilization components of DDR are frequently initiated during a cease-fire, or immediately after a peace agreement is signed; while transitional justice initiatives often require the forming of a new government and some kind of legislative approval, which may delay implementation by months or, not uncommonly, years. Additionally, DDR processes and transitional justice initiatives have very different constituencies: DDR pro- grammes are directed primarily at ex-combatants while transitional justice initiatives focus more on victims and on society more generally. The lack of coordination between transitional justice and DDR may lead to unbal- anced outcomes and missed opportunities. One outcome, for example, is that victims receive markedly less attention and resources than ex-combatants. The inequity is most stark when comparing benefits for ex-combatants with reparations for victims. In many cases the latter receive nothing whereas ex-combatants usually receive some sort of DDR package. The im- balance between the benefits provided to ex-combatants and the lack of benefits provided to victims has led to criticism by some that DDR rewards violent behaviour. Enhanced coordination between DDR and transitional justice measures may create opportunities to mitigate this imbalance and increase the legitimacy of the DDR programme from the per- spective of the communities which need to accept returning ex-combatants. The relationships between DDR and transitional justice are important to consider be- cause both processes are critical components of strategies for peacekeeping and peace- building. UN peacekeeping operations have increasingly been entrusted with mandates to promote and protect human rights and accountability, as well as to assist national authori- ties in strengthening the rule of law. For example, the UN Peacekeeping Operation in the Democratic Republic of the Congo was given a specific mandate \u201cto contribute to the dis- armament portion of the national programme of disarmament, demobilization and reinte- gration (DDR) of Congolese combatants and their dependants, in monitoring the process and providing as appropriate security in some sensitive locations;\u201d as well as \u201cto assist in the promotion and protection of human rights, with particular attention to women, children and vulnerable persons, investigate human rights violations to put an end to impunity, and continue to cooperate with efforts to ensure that those responsible for serious violations of human rights and international humanitarian law are brought to justice\u201d.3 Importantly DDR and transitional justice also aim to contribute to peacebuilding and 2.20\treconciliation (see IDDRS 2.20 on Post-conflict Stabilization, Peace-building and Recovery Frameworks). DDR programmes may contribute to peacemaking and stability, creating environments more conducive to establishing transitional justice measures. Comprehensive approaches to transitional justice may address some of the root causes of conflict, provide accountability for past violations of international human rights and humanitarian law, and inform the institutional reform necessary to prevent the reemergence of violence. To that end they are \u201cmutually reinforcing imperatives\u201d.4 Reconciliation remains a difficult concept to define or measure. There is no single model for overcoming divisions and building trust within societies recovering from conflict or totalitarian rule. DDR aims to encourage trust and confidence between ex-combatants, society and the State by presenting a transparent process by which former fighters give up their weapons, renounce their affiliations to armed groups, and commit to respecting the basic norms and laws including in the resolution of conflicts and the struggle for political 2.10\tpower (see IDDRS 2.10 on the UN Approach to DDR). Transitional justice initiatives aim to build trust between victims, society, and the state through transitional justice measures that provide some acknowledgement from the State that citizen rights have been violated and that they deserve justice, truth and reparation. Increased consultation with victims\u2019 groups, communities receiving demobilized combatants, municipal governments, faith- based organizations and the demobilized combatants and their families, may inform and strengthen the legitimacy of DDR and transitional justice processes and enhance the pros- pects of reconciliation.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a1fd9e1d-b145-4852-80ae-1e572d80f34e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 7, + "Paragraph": "International legal framework for transitional justice The Charter of the United Nations, the Universal Declaration of Human Rights, interna- tional human rights law, international humanitarian law, international criminal law and international refugee law provide the normative framework for transitional justice. In rec- ognition of these international instruments, transitional justice mechanisms seek to ensure compliance with the right to justice, the right to truth, the right to reparations, and the guarantees of non-repetition. Various widely ratified human rights and humanitarian law treaties require States to ensure punishment of specific offences.5 Furthermore, treaty bodies repeatedly found that amnesties that foreclose criminal prosecutions of gross violations of human rights violate States\u2019 obligations under these treaties. An amnesty that impeded victims\u2019 recourse to effective civil remedy would also violate this obligation. The important developments in international law and practice related to transitional justice and witnessed in the last several decades, have been reflected in the Updated Set of Principles for the protection and promotion of human rights through action to combat impunity 6 (E/CN.4/2005/102/Add.1) and in the Basic Principles and Guidelines on the Right to a Remedy and Reparation for Victims of Gross Violations of International Human Rights Law and Serious Violations of the International Humanitarian Law.7 (A/RES/60/147) The Updated Principles affirm the need for a comprehensive approach towards combating impunity, including investigations and prosecutions, remedies and reparations, truth seeking, and guarantees of non-repetition of violations.\u201d8 Furthermore, the 2004 Report of the Secretary General on The rule of law and transitional justice in conflict and post-conflict societies (S/2004/616) is a notable contribution to the UN doctrine on transitional justice and highlights key issues and lessons learned from the UN experiences.9 While not exhaustive, the following section provides an overview of some of the inter- nationally recognized rights relevant to transitional justice processes and DDR. It also offers a review of the various transitional justice measures that could be established to implement these rights.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "12ed515d-c0a8-42b3-82b5-2edb1d672cba", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 7, + "Paragraph": "The right to justice Various widely ratified human rights and humanitarian law treaties require State parties to investigate, prosecute and bring to justice the perpetrators of specific offences (see also the Updated Principles, principle 19). Amnesties that foreclose prosecution of those respon- sible for genocide, crimes against humanity, war crimes or gross violations of human rights are inconsistent with States\u2019 obligations under international law10 and the UN policy. The \u201cUnited Nations-endorsed peace agreements may never promise amnesties for genocide, war crimes, crimes against humanity or gross violations of human rights\u201d11 and the UN staff may never condone amnesties that international law condemn. States have the primary responsibility to ensure accountability for violations of inter- national human rights law and international humanitarian law and thus domestic court systems are often the preferred venue. Yet in post-conflict situations, the domestic court system is often unable or unwilling to conduct effective investigations or prosecutions. Important options are international ad hoc tribunals or hybrid courts. These judicial bodies are created to address particular situations, for a limited amount of time, and are the result of singular political and historical circumstances. They are composed of independent judges, working on the basis of predetermined rules of procedure, and rendering binding decisions. They are subject to the same principles governing the work of all international judiciaries (e.g., due process, impartiality and independence). The creation of international or hybrid tribunals in situations where national actors are unwilling or unable to prosecute alleged perpetrators is a revolutionary step in establishing accountability for gross violations of international human rights law and serious violations of international humanitarian law. For instance, the Statute of the International Tribunal for the Former Yugoslavia (ICTY), Statute of the International Tribunal for Rwanda (ICTR), and the Statute of the Special Court for Sierra Leone (SCSL) provide these tribunals with jurisdiction over serious crimes under international law. The entry into force of the Rome Statute of the International Criminal Court in 2002 was a major step forward in the history of international criminal accountability. For the first time, the world has an independent, permanent court to try individuals for the most serious crimes under international law: genocide, crimes against humanity and war crimes. The ICC is complementary to national criminal jurisdictions. The ICC will not exercise its jurisdiction, unless the State is unwilling or unable genuinely to carry out the investigation or prosecution.12 As of July 2009, the ICC treaty had been ratified by 110 states. In addition to domestic courts, ad hoc and hybrid tribunals, and the ICC, prosecutions against individuals who have committed human rights violations and international crimes may also, in certain circumstances and depending on national laws, be pursued through the principle of \u2018universal jurisdiction\u2019. This principle is based on the notion that certain crimes are so harmful to international interests that States are entitled\u2014and even obliged\u2014 to bring proceedings against the perpetrator, regardless of the location of the crime and the nationality of the perpetrator or the victim.13", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "eccd7591-af8f-4833-a924-b48e065e40f0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 8, + "Paragraph": "The right to the truth There has been a growing recognition that both individual victims and society as a whole have the right to know the truth about past violations, and the State has responsibility in giving effect to this right. The Updated Principles emphasize that States must take appropri- ate measures to give effect to the right to know the truth. This may include non-judicial processes such as truth commissions that complement the role of the judiciary. Regardless of whether a State establishes such a body, it must ensure the preservation of archives and other information relevant to exercising the right to know about past violations. The Updated Principles also emphasize the importance of the participation of victims and other citizens, and specifically women and minorities, in the truth-seeking process.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "aba76081-690c-4dcf-a70b-f5e11c5f5f18", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 8, + "Paragraph": "The right to reparations Victims of gross violations of human rights and serious violations of international humani- tarian law are entitled to a remedy, including reparations. The Basic Principles and Guide- lines14 provide that \u201ca State shall provide reparation to victims for acts or omissions which may be attributed to the State and constitute gross violations of international human rights law or serious violations of international humanitarian law.\u201d15 Moreover, \u201cStates should endeavor to establish national programmes for reparation and other assistance to victims in the event that the parties liable for the harm suffered are unable or unwilling to meet their obligations.\u201d16 Reparations may include the following forms of redress: restitution, compensation, rehabilitation, satisfaction and guarantees of non-repetition.17", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9a619e3-53a5-40b9-a49c-ca953b3ac1be", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 9, + "Paragraph": "Guarantees of non-repetition The Updated Principles contribute to a normative framework for institutional reform, one of the most important means of guaranteeing that the systemic violation of human rights will not be repeated. They observe that \u201c[S]tates must take all necessary measures, includ- ing legislative and administrative reforms, to ensure that public institutions are organised in a manner that ensures respect for the rule of law and protection of human rights.\u201d18 To this extent, civilian control of military and security forces, as well as of intelligence agencies must be ensured and, where necessary, established or restored. At the same time, public officials and employees who are personally responsible for gross violations of human rights or serious crimes under international law, in particular those involved in military, security, police, intelligence and judicial sectors, should not continue to serve in State institu- tions.19 Vetting processes have been an important aspect of institutional reform in countries in transition. They aim to exclude individuals from public service whose previous conduct is incompatible with their holding a public position, with a view to re-establishing civic trust and re-legitimize public institutions.20 Their removal should comply with requirements of due process of law and principles of non-discrimination.21", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "68a60a06-167a-4fb1-921c-d695f951be02", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 9, + "Paragraph": "Guiding principles Do no harm: A first step in creating a constructive relationship between DDR and transitional justice is to understand how transitional justice and DDR can interact in ways that, at a minimum, do not obstruct their respective objectives of accountability and reconciliation and maintenance of peace and security. Balanced approaches: While the imperative to maintain peace and security often de- mands a specific focus on ex-combatants in the short-term, long-term strategies should aim to provide reintegration opportunities to all war-affected populations, including victims.22 Respect for international human rights law: DDR programmes shall respect and promote international human rights law. This includes supporting ways of preventing reprisal or discrimination against, or stigmatization of those who participate in DDR programmes as well as to protect the rights of the communities that are asked to receive ex-combatants, and members of the society at large. DDR processes shall provide for a commitment to gender, age and disability specific principles and shall comply with principles of non-discrimination. Respect for international humanitarian law: DDR programmes shall respect and promote international humanitarian law, including the humane treatment of persons no longer actively engaged in combat. United Nations Peacekeeping Forces, includ- ing military members involved in administrative DDR programmes, are also subject to the fundamental principles and rules of international humanitarian law, and in cases of violation, are subject to prosecution in their national courts.23", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1a279573-a870-40d1-9812-d4b937d8b4d3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 9, + "Paragraph": "Transitional justice and DDR This section provides an overview of how DDR programmes may relate to transitional jus- tice measures, including prosecutions, truth commissions, reparations, institutional reform, and locally-based justice processes. The section also explores how DDR and transitional justice measures address issues concerning women and children associated with armed groups and forces. The section identifies potential positive and negative aspects of these relationships in order to provide an informed basis for future strategies that aim to minimize tensions and build on opportunities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d90cf2f2-dee1-4246-9766-64c5c24c41f4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 10, + "Paragraph": "Criminal investigations and prosecutions Criminal investigations and DDR have potentially important synergies. In particular, infor- mation gathered through DDR processes may be very useful for criminal investigations. Such information does not need to be person-specific, but might focus on more general issues such as structures and areas of operation. Since criminal justice initiatives in post-conflict situations would often only be able to deal with a relatively small number of suspects, most prosecutions strategies ought to focus on those bearing the greatest degree of responsibility for crimes committed. As such, these objectives must be effectively communicated in a context of DDR processes to ensure that those participating in DDR understand whether or not they are likely to face prosecutions. Prosecutions can make positive contributions to DDR. First, at the most general level, a DDR process stands to gain if the distinction between ex-combatants and perpetrators of human rights violations can be firmly established. Obviously, not all ex-combatants are human rights violators. This is a distinction to which criminal prosecutions can make a contribution: prosecutions may serve to individualize the guilt of specific perpetrators and therefore lessen the public perception that all ex-combatants are guilty of serious crimes under international law. Second, prosecution efforts may remove spoilers and potential spoilers from threatening the DDR process. Prosecutions may remove obstacles to the demo- bilization of vast numbers of combatants that would be ready to cease hostilities but for the presence of recalcitrant commanders. A successful prosecutorial strategy in a transitional justice context requires a clear, transparent and publicized criminal policy indicating what kind of cases will be prosecuted and what kind of cases will be dealt with in an alternative manner. Most importantly, prosecutions may foster trust in the reintegration process and enhance the prospects for trust building between ex-combatants and other citizens by pro- viding communities with some assurance that those whom they are asked to admit back into their midst do not include the perpetrators of serious crimes under international law. The pursuit of accountability through prosecutions may also create tensions with DDR efforts. When these processes overlap, or when prosecutions are instigated early in a DDR process, some tension between prosecutions and DDR, stemming from the fact that DDR requires the cooperation of ex-combatants and their leaders, while prosecutors seek to hold accountable those responsible for criminal conduct involving violations of international humanitarian law and human rights law, may be hard to avoid. This tension may be dimin- ished by effective communications campaigns. Misinformation or partial information about prosecutions efforts may further contribute to this tension. Ex-combatants are often unin- formed of the mandate of a prosecutions process and are unaware of the basic tenets of international law. In Liberia, for example, confusion about whether or not the mandate of the Special Court for Sierra Leone covered crimes committed in Liberia initially inhibited some fighters from entering the DDR process. While these concerns deserve careful consideration, there have been a number of con- texts in which DDR processes have coexisted with prosecutorial efforts, and the latter have not created an impediment to DDR. In some situations, transitional justice measures and DDR programmes have been connected through some sort of conditionality. For example, there have been cases where combatants who have committed crimes have been offered judicial benefits in exchange for disarming, demobilizing and providing information or collaborating in dismantling the group to which they belong. There are, however, serious concerns about whether such measures comply with the international legal obligations to ensure that perpetrators of serious crimes are subject to appropriate criminal process, that victims\u2019 and societies\u2019 right to the truth is fully realized, and that victims receive an effective remedy and reparation.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "ffd10a9a-9cd5-4e48-9f3e-35fba04f2ec3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 11, + "Paragraph": "Truth commissions Truth commissions seek to provide societies with an even-handed account of the causes and consequences of armed conflict. The reports created by truth commissions may provide recommendations for reform and reparation as well as, in a few cases, recommendations for judicial proceedings. Truth commissions may demonstrate to victims and victimized communities a willingness to acknowledge and address past injustices. They may also pro- vide a strategy for peacebuilding; such is the case with the comprehensive report of the Truth and Reconciliation Commission (TRC) in Sierra Leone. Ex-combatants may hold varying views of truth commissions. Some will avoid them entirely, refusing to acknowledge victims or the harm caused by themselves or other mem- bers of armed forces and groups. Others may regard truth commissions as an opportunity to tell their side of the story and to apologize. Accompanied by appropriate public infor- mation and outreach initiatives, including tailored responses such as in-camera hearings for survivors of sexual violence, they may help break down rigid representations of victims and perpetrators by allowing ex-combatants to tell their own stories of victimization and by exploring and identifying the roots of violent conflict. Less positively, ex-combatants may perceive truth commissions as a threat, for example in cases where the names of indi- vidual perpetrators are made public. More often truth commissions are perceived as initiatives for victims and the partici- pation of demobilized combatants is minimal, even in situations where ex-combatants have experienced victimization. For example, in South Africa, ex-combatant participation in the TRC was limited primarily to the amnesty hearings\u2014relatively few made statements as victims of abuse or were given a chance to testify at victims\u2019 hearings. Ex-combatants later expressed a sense that they had been left out of the process. Children should also have an opportunity to, voluntarily, participate in truth commissions. They should be treated equally as witnesses or victims. In at least one case a truth commission has played a direct role in reintegrating former combatants and promoting reconciliation. The Commission for Reception, Truth and Rec- onciliation in East Timor included a process of community reconciliation for those who had committed \u2018less serious crimes\u2019, including members of militias. The Community Recon- ciliation Process was a voluntary process that combined \u201cpractices of traditional justice, arbitration, mediation and aspects of both criminal and civil law.\u201d24 In community hearings, the perpetrators were asked to explain their participation in the armed conflict. Victims and other members of the community were allowed to ask questions and make comments. Finally, a panel of local leaders worked with the perpetrators and the victims to come to an agreement on some kind of reparation\u2014often in the form of community service\u2014that the guilty party could provide in exchange for acceptance back into the community.25 Box 2 Sierra Leone case study: DDR in the context of a hybrid tribunal and a truth and reconciliation commission* The post conflict situation in Sierra Leone was distinctive in that the DDR process and the national transitional justice initiatives were implemented very closely after each other, and because of the co-existence of both a truth commission and a criminal tribunal. The Lom\u00e9 Peace Agreement stipulated the mandates for DDR and for the Truth and Reconciliation Commission (TRC), no formal links, however, were made between the two processes in the peace document or in practice. Disarmament and demobi- lization was largely successful in Sierra Leone, yet some research suggests that the lack of accountability had a negative impact on the reintegration of certain ex-combatants. Ex-combatants of armed factions that were known to have committed abuses against the civilian population have faced more difficulties in reintegration than others.** The Lom\u00e9 Accord of 1999 included a cessation of hostilities, the initiation of a DDR program, inclusion of the rebel force the Revolutionary United Front (RUF) in government, a blanket amnesty for all combatants, and DDR for fighters. During the signing of the Accord, the representative of the Secretary General of the United Nations (UN) to the peace negotiations included a disclaimer stating that the UN understood that the amnesty and pardon provided by the agreement would not cover international crimes of genocide, crimes against humanity, and other serious crimes under international humanitarian law. Through the active efforts of civil society leaders in Sierra Leone, as well as international advocates, the Lom\u00e9 Accord also mandated a truth and reconciliation commission and a human rights commission. The progress made at Lom\u00e9 was shattered in May 2000 when fighting resumed in the capital city of Freetown. The peace process was put back on track after the reinforcement of the UN peacekeeping mission there and increased mediation efforts resulting in the signing of the Abuja Protocols in 2001. The Abuja Protocols also marked an abrupt change in the national approach to accountability and justice. The government formally requested the UN\u2019s assistance to establish a court to try members of the RUF involved in war crimes. The UN supported the initiative, and the Special Court for Sierra Leone (SCSL) was set up in August 2002 with a mandate to try those who bear the greatest responsibility for the atrocities committed in Sierra Leone. The DDR was in its closing phases when the SCSL and TRC were established. All parties to the Lom\u00e9 peace agreement, including the national government and the RUF, backed the establishment of a TRC, which began operations in 2002. While the SCSL stoked fears among ex-combatants about their possible criminal prosecution, there was a great deal of hope that the TRC would provide an effective and essential mechanism for promoting reconciliation. Although, at first, the concurrence of a tribunal and a truth commission generated considerable misunderstanding, civil society efforts to provide information to ex-combatants were successful in increasing the latters understanding of the separate mandates of each institution. Support for the TRC amongst ex-combatants rose from 53 to 85 per cent after ex-combatants understood its design and purpose, while those who believed it would bring reconciliation rose from 52 to 84 per cent. For those ex-combatants who admitted to human rights violations the TRC offered an opportunity to take respon- sibility for their actions. According to one report, \u201cThey want to confess to the TRC because they think it will enable them to return to their communities.\u201d*** * This is excerpted from: Gibril Sesay and Mohamed Suma, \u201cDDR, Transitional Justice, and Sierra Leone,\u201d A Case Study on DDR and Transi- tional Justice (New York: International Center for Transitional Justice, forthcoming). ** Jeremy Weinstein and Macartan Humphreys, Disentangling the Determinants of Successful Demobilization and Reintegration, Working Paper No. 69, Washington DC: Center for Global Development, 2005. *** The Post-conflict Reintegration Initiative for Development and Empowerment (PRIDE) and ICTJ, \u201cEx-Combatants Views of the Truth and Reconciliation Commission and the Special Court in Sierra Leone,\u201d (September 2002). http://www.ictj/org/en/where/region1/141.html", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0b8bb36d-f2a3-4581-9ea9-67e61a28f7b7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 8, + "Paragraph": "Reparations Reparations focus directly on the recognition and acknowledgement of victims\u2019 rights, and seek to provide some redress for the harms they have suffered. The aspect of recogni- tion is what makes reparations distinct from social services that attend to the basic socio- economic rights of all citizens, such as housing, water and education. A comprehensive approach to reparations provides a combination of material and symbolic benefits to victims, such as cash payments or access to health, psycho-social rehabilitation or educational bene- fits, as well as a formal apology or a memorial. Often public acknowledgement is indicated by victims as the most important element of the reparations they seek. Reparations are a means of including victims and victims\u2019 rights firmly on the post-conflict agenda and may contribute to the process of building trust in the government and in its commitment to guaranteeing human rights in the future. Yet victims\u2019 needs are often marginalized in post conflict, peacebuilding contexts. The design of a reparations programme may have positive implications for the entire community and include elements of social healing. Individual measures deliver concrete benefits to individual recipients. In East Timor, the truth commission recommended a process that combined individual benefits with a form of delivery designed to promote collective healing. Single mothers, including war widows and victims of sexual violence, would benefit from scholarship grants for their school-aged children. In picking up their benefits, the mothers would have to travel to a regional service center, where they would, in turn, have access to peer support, skills training, healthcare, and counseling. Collective reparations may deliver reparations either in the context of practical limita- tions or of concerns about drawing too stark a line between classes of victims or between victims and non-victim groups. In this way, a specific village that was particularly affected by various kinds of abuses might, for example, receive a fund for community projects, even though not every individual in the village was affected in the same way and even if some people there contributed to the harms. In Peru, for example, communities hardest hit by the violence were asked to submit community funding proposals up to a $30,000 limit. These projects would benefit the entire community, generally, rather than only serve spe- cific victims and would be implemented regardless of whether some former perpetrators also live there. Generally, programmes for ex-combatants and reparations programmes for victims are developed in isolation of one another. Reinsertion assistance is offered to demobilized com- batants in order to assist with their immediate civilian resettlement\u2014i.e., to get them home and provide them with a start toward establishing a livelihood\u2014prior to longer-term support for reintegration (see IDDRS 4.30 on Social and Economic Reintegration). Support to ex-combatants is motivated by the genuine concern that without such assistance ex- combatants will re-associate themselves with armed groups as a means of supporting them- selves or become frustrated and threaten the peace process. Victims rarely represent the same kinds of threat, and reparations programmes may be politically challenging and expen- sive to design and implement. The result is that ex-combatants participating in DDR often receive aid in the form of cash, counseling, skills training, education opportunities, access to micro-credit loans and/or land, as part of the benefits of DDR programmes, while, in 4.30 most cases no programmes to redress the vio- lations of the rights of victims are established. Providing benefits to ex-combatants while ignoring the rights of victims may give rise to new grievances and increase their resistance against returning ex-combatants, in this way becoming an obstacle to their reintegration. The absence of reparations pro- grammes for victims in contexts in which DDR programmes provide various benefits to ex-combatants, grounds the judgment that ex-combatants are receiving special treatment. For example, the Rwanda Demobilization and Reintegration Programme, financed by the World, Bank has a budget of US$65.5 million. Ex-combatants receive reinsertion, recognition of service, and reintegration benefits in cash from between US$500 to US$1,000 depending on the rank of the ex-combatant.26 Yet as of 2009, the compensation fund for genocide sur- vivors called for in the 1996 Genocide Law has not been established. Such outcomes are not merely inequitable; they may also undermine the possibilities of effective reintegration. The provision of reparations for victims may contribute to the reintegration dimension of a DDR programme by reducing the resentment and compara- tive grievance that victims and communities may feel in the aftermath of violent conflict. In some cases the reintegration component of DDR programmes includes funding for community development that benefits individuals in the community beyond ex-combatants 4.30\t(see also IDDRS 4.30 on Social and Economic Reintegration). While the objective and nature of reparations programmes for victims are distinct, most importantly in the critical area of acknowledgement of the violations of victims\u2019 rights, these efforts to focus on aiding the communities where ex-combatants live are noteworthy and may contribute to the effective reintegration of ex-combatants, as well as victims and other war-affected populations.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "81feda03-3483-4eee-b482-c6fedb67720c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 14, + "Paragraph": "7.4. Institutional reform DDR can contribute to ending or limiting violence by disarming large numbers of armed actors, disbanding illegal or dysfunctional military organizations, and reintegrating ex- combatants into civilian or legitimate security-related livelihoods. DDR alone, however, cannot build peace, nor can it prevent armed groups from reverting to conflict. DDR needs to be part of a larger system of peacebuilding interventions, including institutional reform. Institutional reform that transforms public institutions that perpetuated human rights violations is critical to peace and reconciliation. Transitional justice initiatives contribute to institutional reform efforts in a variety of ways. Prosecutions of leaders for war crimes, or violations of international human rights and humanitarian law, criminalizes this kind of behavior, demonstrates that no one is above the law, and may act as a deterrent and con- tribute to the prevention of future abuse. Truth commissions and other truth-seeking en- deavors can provide critical analysis about the roots of conflict, identifying individuals and institutions responsible for abuse. Truth commissions can also provide critical informa- tion about the patterns of violence and violations, so that institutional reform can target or prioritize efforts in particular areas. Reparations for victims may contribute to trust-building between victims and government, including public institutions. Vetting processes contribute to dismantling abusive structures by excluding from public service those who have com- mitted gross human rights violations and serious violations of international humanitarian law (See Box 3: Vetting.) As security sector institutions are sometimes implicated in past and ongoing viola- tions of human rights and international humanitarian law, there is a particular interest in reforming security sector institutions. Security Sector Reform (SSR) aims to enhance \u201ceffec- tive and accountable security for the State and its people without discrimination and with full respect for human rights and the rule of law.\u201d27 SSR efforts may sustain the DDR process in multiple ways, for example by providing employment opportunities. Yet DDR pro- grammes are seldom coordinated to SSR. The lack of coordination can lead to further vio- lations, such as the reappointment of human rights abusers into the legitimate security sector. Such cases undermine public faith in security sector institutions, and may also lead to distrust within the armed forces. (See IDDRS Module 6.10 on DDR and Security Sector Reform for a detailed discussion on the relationship between DDR and SSR.) Box 3 Vetting* 6.10", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "564201d9-52b1-4519-a709-483217b5ccee", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 15, + "Paragraph": "DDR and locally-based processes of justice In his 2004 report on transitional justice and the rule of law, the Secretary General of the UN wrote that \u201cdue regard must be given to indigenous and informal traditions for admin- istering justice or settling disputes, to help them to continue their often vital role and to do so in conformity with both international standards and local tradition.\u201d28 Locally-based justice processes range from informal courts to local truth-telling exercises, to traditional ceremonies. They may include an approach that directly involves victims and communi- ties in defining the responsibilities and obligations of those who have committed crimes. In some situations, these locally-based processes are used to promote trust between ex- combatants and their communities. In Mozambique, for example, cleansing ceremonies offered ex-combatants a way to reintegrate into communities by renouncing violence, acknowledging wrong-doing and providing victims, or families of victims, with some kind of compensation. Locally-based justice processes may complement reintegration efforts and national level transitional justice measures by providing a community-level means of addressing issues of accountability of ex-combatants. These locally based processes may contain elements of the four main transitional justice approaches: prosecutions, truth-telling, reparation and institutional reform, and thus offer similar incentives and disincentives for ex-combatants, but they have an additional aim of reintegration. To a large extent the purpose of these processes is to reintegrate community members who have violated the norms of the com- munity and to reconcile them with the victims. When ex-combatants participate in these processes, they demonstrate their desire to be a part of the community again, and to take steps to repair the damage for which they are responsible. This contributes to building or renewing trust between ex-combatants and the communities in which they seek to reinte- grate. These processes may not be as successful in situations where combatants refuse to acknowledge responsibility or continue to perceive themselves as heroes. Locally-based justice processes may, however, be problematic. They may not comply with national and international human rights standards, in particular fair trial guarantees. Unfair treatment of ex-combatants who participate in such processes may hinder reintegra- tion. Additionally, many of these processes are not equipped to handle serious violations of international law, such as war crimes, crimes against humanity or genocide. Locally-based processes also frequently replicate gender or other biases that are present in community life and traditions, for example, by excluding women and children, or by forgiving men for acts of sexual aggression against women. The experience of linking national reintegration strategies with locally-based justice processes is limited, but there are a few positive examples to build on. UNICEF\u2019s work with locally based justice processes supported the reintegration of children in Sierra Leone, for example. Creating connections between reintegration strategies, particularly community reinte- gration strategies, for ex-combatants and locally-based justice processes may be one way to bridge the gap between the aims of DDR and the aims of transitional justice. Such con- nections should be consistent with the broad peacebuilding goals of security, respect for human rights including international standards of child rights and juvenile justice, rule of law, and reconciliation.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "864cfd8d-17e9-4172-a5cd-7e28be8e7855", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 16, + "Paragraph": "Justice for women associated with armed forces and groups The IDDRS module 5.10 on Women, Gender and DDR refers to three types of female ben- eficiaries: 1) female ex-combatants, 2) female supporters, and females associated with armed forces and groups and 3) female dependents. The module identifies a range of possible barriers for entry of women into DDR programmes and proposes strategies and guide- lines to ensure that DDR programmes are gender responsive. Likewise, practitioners in the field of transitional justice seek to understand and better design means to facilitate the participation of women. Yet there is still a gap between the policy and the implementation of comprehensive approaches. The experience of women in conflict often goes beyond usual notions of victim and perpetrator. Women returning to life as civilians may face greater social barriers and exclu- sion than men. They may not participate in either DDR or transitional justice measures for a variety of reasons, including because of their exclusion from the agendas of these proc- esses, the refusal of armed forces and groups to release women, fear of further stigmatiza- tion, or lack of faith in public institutions to address their particular situations (for a more 5.10\tin-depth analysis, see IDDRS 5.10 on Women, Gender and DDR). Women\u2019s lack of partici- pation may undermine their reintegration, and prevent those among them who have also experienced human rights violations from their rights to justice or reparation, and rein- force gender biases. Yet women may also be agents of change, actively involved in efforts to make and build peace. Women and girl combatants have displayed remarkable com- mitment to reintegrating into communities and working for peace. In Northern Uganda, former teenage LRA combatants (themselves abducted and abused) run community projects supporting other \u2018girl mothers\u2019, provide counseling for the young abductees and care for their children, and seek reconciliation with communities they were often forced to terrorize. The trauma and victimization they endured is being transformed into a positive force for empowerment and development. Transitional justice measures may facilitate the reintegration of women associated with armed forces and groups. Prosecutions initiatives, for example, may contribute to the re- integration of women by prosecuting those involved in their forcible recruitment, and by recognizing and prosecuting crimes committed against all women, particularly rape and other forms of sexual violence. Women ex-combatants who have committed crimes should also be prosecuted. Excluding women from prosecution denies their role as participants in the armed conflict. Women have been central to the process of truth seeking, exposing hidden truths about the legacy of human rights in conflict. Many female combatants, like their male counter- parts, do not participate in truth commissions because they perceive these processes to be for victims, and they do not identify themselves as victims. Yet their participation may help the community to better understand the many dimensions of women\u2019s involvement in conflict, and in turn, increase the probability of their acceptance. Great care must be taken to ensure that women who choose to participate are well-informed as to the purpose and mandate of the truth commission, that they understand their rights in terms of confidenti- ality, and are protected from any possible harm resulting from their testimony. Women associated with armed forces and groups have frequently endured violations such as abduction, torture, and sexual violations, including rape and other forms of sexual violence, and may be eligible for reparation. Reparations may provide official acknowledge- ment of these violations, access to specialized health care related to the specific violation they have suffered, and material benefits that may facilitate their integration. Yet these women, due to frequent stigmatization, are commonly reluctant to explain what happened to them, particularly when it involves sexual violations, and often do not come forward to claim their due. Women associated with armed forces and groups are potential participants in both DDR and transitional justice measures, and both are faced with the challenge of increasing and supporting their participation. See Module 5.10 for a detailed discussion of Women, Gender, and DDR.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "62849912-5a7b-45fe-8374-d1ee8c4f66c5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 17, + "Paragraph": "Justice for children recruited or used by armed groups and forces Children\u2014girls and boys under 18\u2014associated with armed forces and groups (CAAFG) represent a special category of protected persons under international law and should be subject to a separate DDR process from adults (for a detailed normative and legal frame- work, see Annex B of IDDRS 5.30 on Children and DDR). Recruitment of children under the age of 15 is recognized as a war crime in the ICC Statute. Many states have criminal- ized the recruitment of children below the age of 18. Child DDR requires that the release (as opposed to demobilization) and reintegration of children be actively carried out at all times, including before a DDR process is formerly implemented and that actions to pre- vent child recruitment should be continuous. In this process, particular attention needs to 5.10 5.30 be given to girls since their gender makes girls particularly vulnerable to violations, includ- ing sexual violence and exploitation, lack of educational and training opportunities, mis- treatment and neglect (for specific ways to address girls\u2019 needs in DDR programmes, see 5.30\tChapter 6 of IDDRS 5.30 on Children and DDR). Transitional justice processes can play a positive role in facilitating the long-term re- integration of children. At the same time such processes can create obstacles to children\u2019s reconciliation and reintegration. The best interests of the child should always guide deci- sions related to children\u2019s involvement in transitional justice mechanisms. Children who have been illegally recruited and used by armed groups or forces are victims and witnesses and may also be alleged perpetrators. Each of these aspects of children\u2019s experiences cor- responds to specific international obligations outlined below.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d5448817-aaf5-4b1c-af76-a00b73f3f99c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 18, + "Paragraph": "Children as victims and witnesses The Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict prohibits the compulsory recruitment and the direct participa- tion in hostilities of persons below 18 by armed forces (arts. 1 and 2). When it comes to armed groups distinct from regular armed forces, such recruitment is under any circum- stance prohibited (no matter whether voluntary or compulsory). Recruitment or use of children under the age of 15 is a recognized war crime in the Rome Statute of the ICC. The Special Court for Sierra Leone also considers child recruitment under the age of 15 as a war crime based on customary international law. A growing number of states have criminal- ized the recruitment of children (under 18) as reflected in the Optional Protocol of the Convention on the Rights of the Child on the involvement of children in armed conflict. Of the 130 countries that have ratified the Optional Protocol, more than two thirds have adopted a minimum age of 18 for entry into the armed forces (the so called \u2018straight 18\u2019 standard.) Domestic proceedings following or during an armed conflict may also try adults for having recruited children, in which case the domestic legal standard would apply. The prosecution of commanders who have recruited children may help the reintegra- tion of children by highlighting that children associated with armed forces and groups who may have been responsible for violations of human rights and international humanitarian law should be considered primarily as victims, not only as perpetrators.29 International law further establishes binding obligations on States with regard to physical and psycho- logical recovery and social reintegration of child victims.30 To facilitate the participation of child victims and witnesses in legal proceedings, the justice systems need to adopt child-sensitive and gender-appropriate procedures in line with the provisions of the Convention on the Rights of the Child, its Optional Protocols as well as with the UN Guidelines on Justice Matters involving Child Victims and Witnesses of Crime and adapted to the evolving capacities of the child. It is also important that child vic- tims are informed of their rights to receive redress, including legal and psycho-social support. Child victims and witnesses should have access to independent and free legal assist- ance to ensure that their rights are guaranteed, that they are informed of the purpose of their role and are able to participate in a meaningful way. In order to avoid further trauma and re-victimization a careful assessment should be carried out to determine whether or not it is in the best interests of the child to testify in court during a criminal proceeding and what special protective measures are required to facilitate the testimony. Protection meas- ures to facilitate the child\u2019s testimony should protect the child\u2019s identity and privacy, be culturally appropriate and include: private interview rooms designed for children, modified court environments that take child witnesses into consideration, interviews by specially trained staff out of sight of the alleged perpetrator using testimonial aids and psychosocial support before, during and after the process.31 Likewise, children\u2019s statements given before a truth commission or other non-judicial process can offer unique potential for children\u2019s participation in post-conflict reconcilia- tion and may foster dialogue about the impact of war on children and contribute to pre- vention of further conflict and victimization of children. Children should participate in truth commissions only on a voluntary basis and child-friendly policy and protection measures should be in place to protect the rights of children involved. It is important to recognize that children demobilized from fighting forces may be identified as a vulnerable group and eligible for reparations through a reintegration pro- gramme, such as specific education support, access to specialized healthcare, vocational training, and follow-up social work. In some situations children may benefit from financial reparation, not as part of the reintegration programme but as part of a reparations scheme, on the basis of particular violations that they have suffered. Providing benefits to children formerly associated with fighting forces that other children in the community do not receive may increase resentment and create obstacles for reintegration. If benefits or reparations are provided for children affected by armed conflict, careful consideration must be given to ensure that such benefits are in the best interests of the child. It is important to coordi- nate benefits that may be offered to demobilized children through a DDR programme and what is offered to them, more generally, as victims. This is to prevent the provision of double benefits, something which is particularly important in country situations where these programmes rarely cover all of their potential beneficiaries.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "befbd402-01c0-42b2-9eac-c4ca33471c7c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 19, + "Paragraph": "Children as alleged perpetrators Children who have been associated with armed forces or armed groups should not be prosecuted or punished solely for their membership in these forces or groups. Children accused of crimes under international law must be treated in accordance with the CRC, the Beijing Rules and related international juvenile justice and fair trial standards. Accounta- bility measures for alleged child perpetrators should be in the best interests of the child and should be conducted in a manner that takes into account their age at the time of the alleged commission of the crime, promotes their sense of dignity and worth, and supports their reintegration and potential to assume a constructive role in society. Wherever appropriate, alternatives to judicial proceedings should be pursued. In situations where children are alleged to have participated in crimes committed during armed conflict, the primary objectives should be i) reintegration and return to a \u2018constructive role\u2019 in society (article 40, CRC); rehabilitation (article 14(4), ICCPR; article 39, CRC), reinforcing the child\u2019s respect for the rights of others (article 40, CRC; Paris Princi- ples, sections 3.6 to 3.8 and 8.6 to 8.11). If national judicial proceedings take place, children must be treated in accordance with the CRC, in particular its articles 37 and 40, the Beijing Rules and other international law and standards governing juvenile justice, including the Committee\u2019s General Comment n\u00b0 10 on \u201cChildren\u2019s rights in juvenile justice.\u201d While some process of accountability serves the best interest of the child, international child rights and juvenile justice standards recommend that alternatives to judicial proceedings should be applied, whenever appropriate and desirable (article 40(3b), CRC; rule 11, Beijing Rules). Staff working on release and reintegration associated with armed groups and forces should advocate and enable, where appropriate, the diversion of children from judicial proceedings to alternative mechanisms suitable for dealing with the nature of the particular offence, in line with international standards and the best interests of the child. If a child has been convicted for a crime, alternatives to deprivation of liberty should be put in place and advocated for, in view of promoting the successful reintegration of the child. The death penalty and life imprisonment without possibility of release must never be imposed against children and detention of children should only be used as a measure of last resort and for the shortest period of time. As discussed in Chapter 9 of IDDRS 5.30 on Children and DDR, locally-based justice and reconciliation processes may contribute to the reintegration of children. These proc- esses may create a means for the child to express remorse and make reparation for past action. In all cases, local processes must adhere to international standards of child protec- tion. Locally-based processes for justice and reconciliation for children may be more effec- tive if they are considered as part of a comprehensive peacebuilding approach strategy, in which reintegration, justice, and reconciliation are key goals; and are consistent with over- all strategies for the reintegration of children demobilized from fighting forces. 5.30\tSee Module 5.30 for a more detailed discussion on Children and DDR. Box 4 The rule of law and transitional justice", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "16b78c96-0ad7-48fb-a27d-eed515747dc3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 20, + "Paragraph": "8. Prospects for coordination Coordination between transitional justice and DDR programmes begins with an understand- ing of how the two processes may interact positively in the short-term in ways that, at the very least, do not hinder their respective objectives of accountability and stability. Coordination between transitional justice and DDR practitioners should, however, aim to constructively connect these two processes in ways that contribute to a stable, just and long-term peace. In the UN System, the Office of the High Commissioner for Human Rights (OHCHR) has the lead responsibility for transitional justice issues. UN support to DDR programmes may be led by the Department of Peacekeeping (DPKO) or the United Nations Develop- ment Programme (UNDP). In other cases, such support may be led by the International Organization for Migration (IOM) or a combination of the above UN entities. OHCHR representatives can coordinate directly with DDR practitioners on transitional justice. Human rights officers who work as part of UN peacekeeping missions may also be appropriate focal points or liaisons between a DDR programme and transitional justice initiatives. This section presents options for DDR that stress the international obligations stem- ming from the right to accountability, truth, reparation, and guarantees of non-repetition. These options are meant to make DDR compliant with international standards, being mindful of both equity and security considerations. At the very least, they seek to ensure that DDR observes the \u201cdo no harm\u201d principle, and does not foreclose the possibility of achieving accountability in the future. When possible, the options presented in this section seek to go beyond \u201cdo no harm,\u201d establishing more constructive and positive connections between DDR and transi- tional justice. These options are presented with the understanding that diverse contexts will present different opportunities and challenges for connecting DDR and transitional justice. DDR must be designed and implemented with reference to the country context, including the existing justice provisions.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "06a128b6-faae-47c1-9a23-67bddbba6063", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Observe obligations concerning accountability, truth, reparation and guarantees of non- repetition in peace agreements A peace agreement can be considered a reflection of the priorities of the government(s), armed groups, and international organization(s), and other parties involved in a negotia- tion. While political and security issues, including DDR, may dominate the agenda, these issues need to be addressed in ways that observe international legal obligations. UN media- tors and other UN staff involved in advising a peace negotiation shall advise that agree- ments must be based on a commitment to international humanitarian and human rights law, and include specific reference to obligations concerning accountability, truth, repara- tions and guarantees of non-repetition. Inclusion of these obligations demonstrates, at the least, that the violations suffered by war-affected populations other than ex-combatants are acknowledged, and keeps the door open for transitional justice in the future. This kind of acknowledgement may \u201cbuy time\u201d for DDR, reducing the initial resentment that vic- tims and their advocates may feel towards ex-combatants. It signals to victims and their advocates that while the attention of the government and the international community involved in a peace process may be on the armed actors in the immediate post conflict period the obligation to victims will not be disregarded.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "8cb5abb7-b122-4edd-a4a4-8f34d6fac8bc", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 22, + "Paragraph": "Include victims and civil society in peace negotiation processes Similarly to armed actors, victims and civil society should have a role in peace negotiation processes that allows them to articulate demands for accountability, truth and reparations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "63c49773-2e83-4cd7-bf77-af28a57c44d6", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Reject amnesties for genocide, crimes against humanity, war crimes and gross violations of human rights It has been recognized that amnesties can play a valuable role in ending armed conflicts and reconciling divided communities, provided that they do not grant immunity to indi- viduals responsible for serious violations of international law. Under international law and UN policy, amnesties are impermissible if they: prevent prosecution of those who may be responsible for genocide, crimes against humanity, war crimes and gross violations of human rights: violate victims\u2019 rights to an effective remedy and to the truth; Such broad amnesties may also undermine the law\u2019s function as a deterrent against crime and may create the impression that serious international crimes may be com- mitted with impunity.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c21ff6e6-2735-4b82-83b0-6e63bb7fec86", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 22, + "Paragraph": "Consider targeted amnesties While UN mediators and staff shall not condone amnesties for genocide, crimes against humanity, war crimes and gross violations of human rights, certain targeted amnesties for political offences such as treason and rebellion may act as an incentive for demobilization while still allowing for prosecution of those most responsible for serious violations of inter- national humanitarian law and gross violations of international human rights law.32", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "4e6cf351-2e59-47f9-be4f-182ccba34a43", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 22, + "Paragraph": "Donors for DDR programmes may consider comparable commitments to reparations for victims Member states that provide funding for DDR programmes should consider an equitable approach to war-affected populations, including investing in reparation and services to victims.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "55bd0679-40c8-433c-8fa8-ccf2d9aacfd3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Integrate transitional justice into the training programmes and support materials for DDR practitioners Important elements of both DDR and transitional justice are shaped during peace negotia- tions in the preparation of the legal framework regulating post-conflict situations. When both DDR and transitional justice initiatives are included in a peace agreement, a connection is de facto created. UN mediators and other advisors to peace negotiations should be aware of the impact DDR and transitional justice measures may have on one another and con- sider how features of the peace agreement or a newly established legal framework may sustain the objectives of accountability and stability sought by transitional justice and DDR initiatives. Integrating transitional justice into the training programmes and support materials for UN mediators and officials and staff working in UN peacekeeping missions will provide UN professionals with a basic knowledge of different transitional justice measures, the relationship between transitional justice and DDR, and a sense of how these issues have been approached in other country contexts.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c2b8696b-2c26-41a4-b71e-5756ee582462", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 23, + "Paragraph": "Integrate information on transitional justice measures into the field assessment Information about transitional justice measures is an important component of DDR assess- ment and design. Transitional justice measures and their potential for contributing to or hindering DDR objectives should be considered in the integrated DDR planning process, particularly in the detailed field assessment. Are transitional justice measures mandated in the peace agreement? Did the peace agreement stipulate any connection between the DDR process and transitional justice measures? A list of critical questions related to the intersection between transitional justice and DDR is available in Annex C. For more infor- mation on conducting a field assessment see Module 3.20 on DDR Programme Design.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "281d26a1-8a26-42dc-80b8-832aacd9c7eb", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Incorporate a commitment to international humanitarian and human right law into the design of DDR programmes DDR programmes supported by the UN are committed to respect, ensure respect for, and implement international humanitarian and human rights law (see Module 2.1, section 5.15). This means protecting the rights of those who participate in DDR programmes, as well as the rights of the members of the communities who are asked to receive and inte- grate ex-combatants. DDR programmes that uphold humanitarian and human rights law and hold accountable those who violate the law are likely to be perceived as more legiti- mate processes by both the ex-combatants, who are their immediate beneficiaries, and the society as a whole. Procedures that affirm this commitment may include the following: 3.20 2.10 International and national staff shall be trained as to their obligations under interna- tional law; Rules and regulations aimed at protecting human rights and upholding international humanitarian law shall be developed, posted, and communicated to staff and all ex- combatants who participate in DDR. Additionally, an appropriate means of reporting and penalizing those who violate international or national law to the appropriate authorities shall be created and made available to staff, participating ex-combatants, and members of recipient communities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "d4964a10-92db-4ced-b486-3f95255c2a13", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Identify a transitional justice focal point in the DDR programme and plan regular briefing and meetings with UN and national authorities working on transitional justice measures Identification of individuals that may serve as formal focal points within the DDR programme, within the UN country team working on transitional justice, and within relevant national institutions, may facilitate regular communication between DDR and transitional justice measures. DDR administrators and international and national actors working on transitional justice initiatives should plan for regular meetings as opportunities for exchange, to proac- tively deal with any possible tensions, and to explore the possibilities for effective coordination.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "31412958-8074-4333-b06f-1735b1b60fe1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 24, + "Paragraph": "Coordinate on public information and outreach The dissemination of public information is a crucial task of both DDR and transitional 4.60\tjustice initiatives (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Poor coordination in public outreach may generate conflicting and par- tial messages. DDR and transitional justice should seek ways to coordinate their public information efforts. Increased consultation and coordination concerning what and how information is released to the public may reduce the spread of misinformation and rein- force the objectives of both transitional justice and DDR. The designation of a transitional justice focal point in the DDR programme, and regular meetings with other relevant UN and national actors, may facilitate discussion on how to better coordinate public informa- tion and outreach to support the goals of both DDR and transitional justice. Civil society may also play a role in public information and outreach. Working with relevant civil society organizations may help the DDR programme to reach a wider audi- ence and ensure that information offered to the public is communicated in appropriate ways, for example, in local languages or through local radio.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5b6241a2-0c29-4d2c-9ca5-ceb466dfb158", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Integrate information on transitional justice into the ex-combatant pre-discharge sensitization process Ex-combatants also need information about provisions for justice, particularly if it could affect their reintegration process. Clearly communicated information may decrease anxiety that ex-combatants may feel about transitional justice measures. The discharge awareness raising process is an opportunity to work with UN colleagues or national authorities to develop a briefing on transitional justice measures ongoing in the country and to discuss how, or if, this will have an impact on ex-combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3eff870a-9849-40df-ab39-fa9600acfa33", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 24, + "Paragraph": "Involve and prepare recipient communities Community tension around reintegration processes will be eased if recipient communities are involved and prepared for returning ex-combatants. Recipient communities should be included in the public information and outreach strategy and should have an opportunity to ask questions and discuss the reintegration process before ex-combatants return, including issues related to ex-combatant accountability. In some cases, DDR programmes have encour- aged the organization of community committees to deal with ex-combatant reintegration. These committees may serve as a forum for exploring ex-combatant participation in locally- based justice processes as well as for dispute resolution and problem solving if problems arise between community members and ex-combatants (also see IDDRS 4.30 on Reintegration).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "77c243e2-3418-43d8-809a-d32b711fc2de", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 25, + "Paragraph": "Consider community-based reintegration approaches Compared to targeted assistance programmes for ex-combatants, community-based reinte- gration approaches have advantages that may provide broader benefits within the com- munity. Such approaches have more potential for sustainability as ex-combatants are located in the communities and work together with other community members for local develop- ment. Such an approach may also promote community reconciliation as ex-combatants are not seen as the sole beneficiaries of assistance. Additionally, reintegration activities, apart from community recovery and reintegration, may link into other development programmes. It also promotes closer collaboration with other development actors. Finally, community- based reintegration promotes community empowerment, transparency and accountability as beneficiaries are selected through community-based approaches.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f07ca53b-bf09-4a0f-9997-c4d17e88a606", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 25, + "Paragraph": "Transitional justice initiatives should designate a focal point for DDR Transitional justice practitioners working on prosecutions processes, truth commissions, reparations programmes and institutional reform initiatives should communicate with the DDR program, identify a focal point for DDR as part of their outreach activities and actively seek opportunities for information exchange and collaboration, including possible coordi- nation on public information strategies as proposed above.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f52cfb84-9636-486e-8e0d-54168ac43b0a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Integrate information on DDR in conflict analysis, assessments and evaluations undertaken to support or advance transitional justice initiatives Transitional justice practitioners should also be aware of the impact of DDR on their goals and objectives by considering the DDR programme in their analytical tools for design, assess- ment and evaluation.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1d9321db-306f-438e-b01c-044300b3068d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 26, + "Paragraph": "Consider sharing DDR information with transitional justice measures Both DDR and transitional justice initiatives engage in gathering, sharing, and disseminating information. However, rarely is information shared in a systematic or coherent manner between these two programmes. DDR programmes, which are usually established before transitional justice measures may consider sharing information with the latter. This need not necessarily include sharing information relating to particular individuals for purposes of prosecutions, as this may create difficulties in some contexts (although, as illustrated in section 7.1 above, it frequently does not). Information about the more structural dimen- sion of combating forces, none of which needs to be person-specific, may be very useful for transitional justice measures. Socio-economic and background data gathered from ex- combatants through DDR programmes can also be informative. Similarly, transitional justice initiatives may obtain information that is important to DDR programmes, for example on the location or operations of armed groups. DDR programmes may also accommodate procedures that include gathering infor- mation on ex-combatants accused or suspected of gross violations of international human rights law and serious violations of international humanitarian law. This could be done for example through the information management database, which is essential for tracking 4.20\tthe DDR participants throughout the DDR process (also see IDDRS 4.20 on Demobilization, section 5.4). Truth commissions, in particular, present optimum opportunities for DDR programmes to share certain data. Truth commissions often try to reliably describe broad patterns of past violence. Insights into the size, location, and territory of armed groups, their com- mand structures, type of arms collected, recruitment processes, and other aspects of their mode of operation could assist in reconstructing an historical \u2018memory\u2019 of past patterns of collective violence. Sharing information with a national reparations programme may also be important. Here, details about benefits offered to ex-combatants through DDR programmes may be useful in efforts to secure equity in the treatment of victims through reparations programmes. If communities received benefits through DDR programmes, this will also be relevant to those who are tasked with the responsibility of designing collective reparations programmes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bd3bc3b3-4e7c-440f-ae00-f897a3febf18", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Consider developing a common approach to gathering information on children who leave armed forces and groups DDR programmes, UNICEF, child protection NGOs and the relevant child DDR agency in the Government often develop common individual child date forms, and even shared data- bases, for consistent gathering of information on children who leave the armed forces or groups. Various child protection agencies do not systematically record in their individual child forms the identity of the commanders who recruited the children. Yet, this informa- tion could be used later on for justice or vetting purposes regarding perpetrators of child recruitment. While the agencies indicate that such omission is done intentionally to protect the individual children released and CAAGF more generally, in some cases a thorough discussion on the value of recording certain data and the links of DDR with ongoing/poten- tial transitional justice initiatives had not taken place amongst these actors. Child DDR and child protection actors may examine DDR information management databases, with appropriate consideration for issues of confidentiality, disclosure and consent, with a view on their potential value for justice and TJ purposes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c6acc0ae-53f3-44d0-8363-f259bee397ad", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 27, + "Paragraph": "Consider screening of human rights records of ex-combatants DDR programmes may include a variety of screening procedures, for example screening against eligibility criteria for entry into the programme, and screening for different kinds of skills training. Screening procedures designed to put in place measures that avoid provid- ing benefits to known or suspected violators of human rights or international humanitarian law should also be considered. Integrating a screening procedure based on human rights considerations may be more problematic in some contexts than others because of concern that it will deter combatants from entering the DDR programme. At a minimum, those ex- combatants against whom judicial investigations are pending or against whom credible allegations of perpetrating violations of international human rights law or international humanitarian law have been raised should not receive benefits until these allegations are resolved. The proposed focal point on transitional justice should correspond regularly with national and international authorities in order to develop strategies for dealing with alleged perpetrators among the ex-combatants population.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f095cd2f-7186-40bc-80c3-5316cba3df3f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 27, + "Paragraph": "Collaborate on sequencing DDR and TJ efforts DDR donors, administrators and prosecutors may also collaborate more effectively in terms of sequencing their efforts. The possibilities for sequencing are numerous; this section merely provides ideas that can facilitate sequencing discussions between DDR and TJ practitioners. Prosecutors, for instance, may inform DDR administrators of the imminent announce- ment of indictments of certain commanders so that there is time to prepare for the possible negative reactions. Alternatively, in some cases prosecutors may take into account the prog- ress of the disarmament and demobilization operations when timing the announcement of their indictments. United Nations Staff working on DDR programmes should encourage their national interlocutors to coordinate on sequencing with truth commissions. Hearings for truth commissions, for example, could be scheduled in communities that are receiving large numbers of demobilized ex-combatants, thus providing ex-combatants with an immediate opportunity to apologize or tell their side of the story. The most important reason that implementation of reparations and DDR initiatives is not coordinated is that while DDR is funded, reparations are not. However, in situations where reparations are funded, the design and disbursements of reintegration benefits for ex-combatants through the DDR programme may be sequenced with reparation for victims and delivery of return packages for refugees and IDPs returning to their home communi- ties (see IDDRS 5.40 on Cross-border Population Movements). Assistance offered to ex- combatants is less likely to foster resentment if reparations for victims are provided at a comparative level and within the same relative time period. If calendars for the provision of DDR benefits to ex-combatants and reparations to individual victims may not be made to coincide, some benefits to communities perhaps may be planned either through DDR or parallel programmes, or through an early phase of a national reparation or reconstruction programme. Likewise, where collective reparations are provided in a community or region, both victims and ex-combatants potentially benefit\u2014even as separate individualized DDR benefits are also made available (see IDDRS 4.30 on Social and Economic Reintegration). The Stockholm Initiative on DDR recommends establishing parallel windows of financ- ing for DDR and community oriented programming. This has the virtue of providing incen- tives for the coordination of programmes without providing incentives for fusing or merging programmes which may result in a dilution of mandates\u2014and effectiveness. Moreover ex- 5.40 4.30 combatants may play a direct role in some reparations, either by providing direct repara- tion when they have individual responsibility for the violations that occurred, or, when appropriate, by contributing to reparations projects that aim to address community needs, such as working on a memorial or rebuilding a school or home that was destroyed in the armed conflict.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fcc8de72-7e72-4790-a97f-8dce91fa6bfd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 28, + "Paragraph": "Collaborate on strategies to target spoilers Even after a ceasefire or peace agreement, DDR is frequently challenged by commanders who refuse for a variety of reasons to disarm and demobilize, and impede their combatants from participating in DDR. In some of these cases, national DDR commissions (or other officials charged with DDR) and prosecutors may collaborate on prosecutorial strategies, for example focused on those most responsible for violations of international human rights and humanitarian law, that may help to remove these spoilers from the situation and allow for the DDR of the combat unit or group. Such an approach requires an accompanying pub- lic information strategy that indicates a clear and transparent criminal policy, indicating what kind of cases will be prosecuted, and avoiding any perception of political influence, arbitrary prosecution, corruption or favoritism. The public information efforts of both the DDR programme and the prosecutions outreach units should seek to reassure lower rank- ing combatants that the focus of the prosecution initiative is on those most responsible and that they will be welcomed into the DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "73546d32-27ed-4ebc-b371-3062db207fdd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 28, + "Paragraph": "Encourage ex-combatants to participate in transitional justice measures Ex-combatants are often simultaneously fighters, witnesses, and victims of an armed con- flict. Their testimonies may be valuable for a prosecutions initiative or a truth commission. Additionally their story or experience may change the way others in the society may view them, by blurring the sharp distinctions between combatants, often seen solely as perpetra- tors, and victims, and exposing the structural roots of the conflict. A more comprehensive understanding of the experience of ex-combatants may ease the reintegration process. DDR programmes may encourage ex-combatant participation in transitional justice measures by offering information sessions on transitional justice during the demobilization process and working collaboratively with national actors working on transitional justice measures in their outreach to ex-combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c6cb744b-ff47-44b0-a6a8-59ffef551f3e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 28, + "Paragraph": "Consider how DDR may connect to and support legitimate locally based justice processes Locally based justice processes may complement reintegration efforts and national level transitional justice measures by providing a community-level means of addressing issues of accountability of ex-combatants. When ex-combatants participate in these processes, they demonstrate their desire to be a part of the community again, and to take steps to repair the damage for which they are responsible. This contributes to building or renewing trust between ex-combatants and the communities in which they seek to reintegrate. Locally based justice processes have particular potential for the reintegration of children associated with armed forces and groups. Creating links between reintegration strategies, particularly community reintegration strategies, for ex-combatants and locally-based justice processes may be one way to bridge the gap between the aims of DDR and the aims of transitional justice. UNICEF\u2019s work with locally based justice processes in support of the reintegration of children in Sierra Leone is one example. Before establishing a link with locally based processes, DDR programmes must ensure that they are legitimate and that they respect international human rights standards, includ- ing that they do not discriminate, particularly against women, and children. The national authorities in charge of DDR will include local experts that may provide advice to DDR programmes about locally based processes. Additionally civil society organizations may be able to provide information and contribute to strategies for connecting DDR programmes to locally based justice processes. Finally, outreach to recipient communities may include discussions about locally based justice processes and their applicability to the situations of ex-combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "ed0e239e-a89a-4a96-abd3-7c58dc31e285", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Consider how DDR and transitional justice measures may coordinate to support the reintegration of women associated with armed groups and forces Women associated with armed groups and forces are potential participants in both DDR programmes and transitional justice measures, and both are faced with the challenge of increasing and supporting the participation of women. Both DDR and transitional justice should work towards a better understanding of the motivations, roles and needs of women ex-combatants and other women associated with armed forces and groups by directly engaging women in planning for both programmes and ensuring they are adequately rep- resented in decision-making bodies, in line with UNSC Resolution1325 on women, peace and security (also see IDDRS 5.10 on Women, Gender, and DDR). Sharing information on their respective lessons learned in terms of facilitating the participation of women may be a first step. The ways in which women victims articulate their need for reparations, for example, might be considered in developing specific reintegration strategies for women. Additionally, DDR programme managers may coordinate with transitional justice meas- ures on community approaches that include women, such as strengthening women\u2019s role in locally based justice processes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "58b58690-fe7f-4034-91c3-b1fe3bd30737", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Consider how DDR and transitional justice measures may coordinate to support the reintegration of children associated with armed groups and forces (CAAGF) DDR and transitional justice represent two types of initiatives among a range of interven- tions that are (at least partly) aimed at reintegrating children associated with armed groups and forces. Given the status of children as a special category of protected persons under international law, both DDR and transitional justice actors should work together on a strat- egy that considers these children primarily as victims. Joint coordination on the reintegration of children is possible in at least three broad areas. First, DDR and transitional justice measures may coordinate on a strategy to iden- tify and hold accountable those who are recruiting children\u2014in order to make sure that the welfare of children is considered as the highest priority in that process. Second, both kinds of measures may work together on approaches to reintegrating children who may be responsible for violations of international humanitarian law or human rights law. Given the focus on CAAGF as victims, such an approach would preferably focus on non-judicial measures such as truth commissions and locally-based processes of truth and reconcilia- tion, which may better contribute to the reintegration of children than prosecution. At a minimum, a clear DDR and TJ policy should be developed as to the criminal responsibil- ity of children that takes adequate account of their protection and social reintegration. In the DRC, for example, the position shared by child protection agencies was for CAAFG accused of serious crimes to go through the juvenile justice system, applying special pro- 5.10 cedures and reintegration measures. Third, if a reparations programme is under considera- tion, DDR and Transitional justice actors may work together to ensure a balance between what kind of DDR benefits are offered to CAAGF as former combatants and what is offered to them as reparations as victims. In this process, particular attention needs to be given to girls. Gender inequality and cultural perceptions of women and girls may have particularly negative consequences for the reintegration of girl children associated with armed groups and forces. Targeted efforts by DDR and TJ may be necessary to ensure that girls are protected, but also that girls are given the opportunity to participate and benefit from these programmes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c075e684-0289-4898-a37a-544af09cc539", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Consider how the design of the DDR programme contributes to the aims of institutional reform, including vetting processes Consideration should be given to how the design of the DDR process relates to institutional reform efforts. For example, DDR programmes may coordinate with vetting procedures, providing information to ensure that ex-combatants who are responsible for gross viola- tions of human rights or serious crimes under international law are not reintegrated into public institutions, particularly the armed forces or other national security institutions 6.10\t(also see IDDRS 6.10 on DDR and Security Sector Reform).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1d9796cd-d6b0-4d91-a13b-5a760c86cf79", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 31, + "Paragraph": "Annex A: Terms and definitions Ad hoc international criminal tribunals \u2013 are international judicial bodies created to ad- dress particular situations, for a limited amount of time, and are the result of singular political and historical circumstances. They are composed of independent judges, working on the basis of predetermined rules of procedure, and rendering binding decisions. They are subject to the same principles governing the work of all international judiciaries (e.g., due process, impartiality and independence). Hybrid courts or tribunals \u2013 are courts of mixed composition and jurisdiction, encom- passing both national and international aspects, and usually operating where the crimes occurred. Similar to international tribunals, hybrid courts are ad hoc institutions, created to address particular situations, for a limited amount of time, and are the result of singular political and historical circumstances. They are composed of independent judges, working on the basis of predetermined rules of procedure, and rendering binding decisions. They are subject to the same principles governing the work of all international judiciaries (e.g., due process, impartiality and independence). Institutional reform \u2013 is changing public institutions that perpetuated a conflict or served a repressive regime to be transformed into institutions that support the transition, sustain peace and preserve the rule of law. Following a period of massive human rights abuse, building fair and efficient public institutions play a critical role in preventing future abuses. It also enables public institutions, in particular in the security and justice sectors, to pro- vide criminal accountability for past abuses. International Humanitarian Law (IHL) \u2013 is a set of international rules, established by trea- ties and customary law, which seeks to limit the effects of armed conflict. It aims to protect persons who are not, or are no longer, participating in the hostilities and restricts the means and methods of warfare. International humanitarian law main treaty sources applicable in international armed conflict are the four Geneva Conventions of 1949 and their Additional Protocol I of 1977. The main treaty sources applicable in non-international armed conflict are article 3 common to the Geneva Conventions and Additional Protocol II of 1977. Inter- national humanitarian law is applicable in times of armed conflict, whether international or non-international. For more information see OHCHR\u2019s Fact Sheet No.13, International Humanitarian Law and Human Rights at http://www.unhchr.ch/html/menu6/2/fs13.htm International human rights law \u2013 is a set of international rules, established by treaties and customary law which lays down obligations on States to respect, protect and fulfill human rights and fundamental freedoms of individuals or groups. International human rights law main treaty sources, inter alia, are the Universal Declaration of Human Rights, the International Covenants on Civil and Political Rights (1966) and on Economic, Social and Cultural Rights (1966), as well as Conventions on the Prevention and Punishment of the Crime of Genocide (1948), the Elimination of All Forms of Racial Discrimination (1965), the Elimination of All Forms of Discrimination against Women (1979), against Torture and Other Cruel, Inhuman or Degrading Treatment (1984), and on the Rights of the Child (1989). Other instruments, such as declarations, guidelines and principles adopted at the interna- tional level also belong to the body of international human rights standards. International human rights law applies at all times, both in peacetime and in situations of armed con- flict. See also http://www.ohchr.org/EN/ProfessionalInterest/Pages/InternationalLaw.aspx Prosecutions \u2013 are the conduct of investigations and judicial proceedings against an alleged perpetrator of a crime in accordance with international standards for the administration of justice. For the purposes of this module, the focus is on the prosecution of individuals ac- cused of criminal conduct involving gross violations of international human rights law, serious violations of international humanitarian law and violations of international criminal law. The form, function and mandate of prosecutions initiatives can vary. They can be broad in scope, aiming to try many perpetrators, or they can be narrowly focused on those that bear the most responsibility for the crimes committed. Reparations \u2013 are a set of measures that provides redress for victims of gross violations of international human rights law, serious violations of international humanitarian law and violations of international criminal law. Reparations can take the form of restitution, com- pensation, rehabilitation, satisfaction, and guarantees of non-repetition. Reparations programs have two goals: first, to provide recognition for victims because reparation are explicitly and primarily carried out on behalf of victims ; and, second, to encourage trust among citizens, and between citizens and the state, by demonstrating that past abuses are regarded seriously by the new government. Transitional justice \u2013 comprises the full range of processes and measures associated with a society\u2019s attempts to come to terms with a legacy of large-scale past abuses, in order to ensure accountability, serve justice and achieve reconciliation. It may include criminal pros- ecutions, truth commissions, vetting, reparations programs and memorialization efforts. Whatever combination is chosen must be in conformity with international legal standards and obligations. Truth commissions \u2013 are non-judicial or quasi-judicial fact-finding bodies. They have the primary purpose of investigating and reporting on past abuses in an attempt to understand the extent and patterns of past violations, as well as their causes and consequences. The work of a commission is to help a society understand and acknowledge a contested or denied history, and bring the voices and stories of victims to the public at large. It also aims at preventing further abuses. Truth commissions can be official, local or national. They may conduct investigations and hearings, and may identify the individuals and insti- tutions responsible for abuse. Truth commissions may also be empowered to make policy and prosecutorial recommendations. Vetting \u2013 is a process that aims to exclude individuals from public service whose previous conduct is incompatible with their holding a public position, with a view to re-establishing civic trust and re-legitimize public institutions. Their removal should comply with require- ments of due process of law and principles of non-discrimination.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "c7d5dada-c231-4bd2-a9f8-ff4a95799804", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 33, + "Paragraph": "Annex B: Critical questions for the field assessment Questions related to the overall human rights situation What crimes involving violations of international human rights law and international humanitarian law were perpetrated by the different protagonists in the armed conflict? In what different ways were women involved in the conflict? Describe any specific forms of abuse to which women and girls were subjected during the conflict. Describe any use of children by combatant groups. Was this abuse part of an orches- trated strategy, i.e. systematic and perpetrated by state and non-state security forces? If so, what were the institutional processes that facilitated such abuse? Questions related to the peace agreement What were the key components of the final peace agreement? Was amnesty offered as part of the peace process? What type of amnesty? And for what abuses (forced recruitment of children, sexual violence etc)? Were there any transitional justice measures mandated in the peace agreement such as a truth commission, prosecutions process, reparations programme for victims, or insti- tutional reform aimed at preventing future human rights violations? Did the peace agreement stipulate any connection between the DDR process and transitional justice measures? How was information about the peace agreement disseminated to the general popu- lation, in particular to vulnerable and marginalized groups? Questions related to DDR Is there any form of conditionality that links DDR and justice measures, for example, amnesty or the promise of reduced sentences for combatants that enter the DDR program? What are the criteria for admittance into the DDR program? Do the criteria take into consideration the varied roles of women and children associated with armed forces and groups? Will there be any stipulated differences between treatment of men, women or children in the DDR programme? What kind of information will be gathered from combatants during the DDR process? Will the information collected be disaggregated by gender? Will it assess whether ex- combatants committed acts of sexual violence? Will demobilized combatants have the opportunity to be reintegrated into a new army or police force? Is the local community involved in the reintegration programme? Will the reintegration programme consider or aim to provide benefits to the commu- nities where demobilized combatants will return? Questions related to transitional justice What office in the United Nations peacekeeping mission and/or what UN agency is the focal point on transitional justice, human rights, and rule of law issues? What government entity is the focal point on transitional justice, human rights and rule of law issues? Is there a national truth commission? Are there any other truth-seeking initiatives, for example at the local or regional level of the country? Are there any investigations and/or prosecutions of perpetrators of crimes involving violations of international human rights law and international humanitarian law that occurred during the conflict? Does the truth commission or prosecutions process have any specific outreach to, or strategy for dealing with, ex-combatants? Does the truth commission or prosecutions process have a public information or out- reach capacity? What kind of information is being disseminated? How are they reaching out to vulnerable, marginalized groups including ex-combatants in communicating mandate and operations? Are there plans to offer reparations to victims or communities ravaged by the conflict? Who are the targeted beneficiaries of the reparations? How are women survivors of sexual violence considered in reparations programmes, female ex-combatants, WAAFG, children? When will reparations be distributed? How will reparations distributed? Who is funding or could fund the reparation programme? Are reparations tied to any other transitional justice measures such as prosecutions, truth-telling, institutional reform and/or local justice initiatives? Is institutional reform, such as vetting, mandated as part of the peace agreement or post-conflict legal framework? Are security sector institutions targeted for such reform? Are there any accountability mechanisms set up to address the integrity of the secu- rity sector personnel? Are there any justice or reconciliation efforts at the local/community level? What is the involvement of women and/or children in locally based justice and rec- onciliation initiatives? What is the criterion for determining who could participate in locally based justice and reconciliation initiatives? Are these locally based justice and reconciliation initiatives linked to any other tran- sitional justice measures such as prosecutions, truth-telling and/or reparations? Questions related to possibilities for coordination Will the planned timetable for the DDR programme overlap with planned transitional justice measures? Are there opportunities to coordinate information strategies around DDR and transi- tional justice measures? Will ex-combatants be screened on human rights criteria as part of the DDR programme? Can the DDR programme integrate human rights education and/or information ses- sions that specifically provide information on transitional justice? Can the DDR programme provide incentives for ex-combatants to participate in pros- ecutions processes or truth-seeking initiatives? Will there be any screening on human rights criteria of those ex-combatants interested in staying in or joining the security forces? How can the DDR programme support or coordinate with other initiatives that address justice for women and justice for children? Can any information gathered during the DDR programme be shared with a truth com- mission or prosecutions process? How do the benefits offered to ex-combatants in the DDR programme compare to any reparations offered to victims of the armed conflict? Can the benefits provided to ex-combatants be considered in light of reparations offered to victims? Is coordination between these two mechanisms possible? Are there opportunities to connect the reintegration programme with locally based justice and reconciliation initiatives? For example, can any benefits provided to the community include support for locally based justice and reconciliation initiatives? Can the reintegration programme include a component that involves ex-combatants in efforts to rebuild communities that have been physically destroyed as a result of the armed conflict? Does the monitoring and assessment of the DDR programme include assessment of the impact of the programme on human rights, justice, and rule of law?", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-6.30-DDR-and-Natural-Resources.json b/src/Static/data/json/IDDRS-6.30-DDR-and-Natural-Resources.json new file mode 100644 index 0000000..16ec1ed --- /dev/null +++ b/src/Static/data/json/IDDRS-6.30-DDR-and-Natural-Resources.json @@ -0,0 +1,401 @@ +[ + { + "ID": "187a4d14-e61f-4551-a122-7c9506f42aa1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": null, + "Paragraph": "Summary The relationship between natural resources and armed conflict is well known and documented, evidenced by numerous examples from all over the world.1 Natural resources may be implicated all along the peace continuum, from contributing to grievances, to financing armed groups, to supporting livelihoods and recovery via the sound management of natural resources. Furthermore, the economies of countries suffering from armed conflict are often marked by unsustainable or illicit trade in natural resources, thereby tying conflict areas to the rest of the world through global supply chains. For DDR processes to be effective, practitioners should consider both the risks and opportunities that natural resource management may pose to their efforts. As part of the war economy, natural resources may be exploited and traded directly by, or through local communities under the auspices of, armed groups, organized criminal groups or members of the security sector, and eventually be placed on national and international markets through trade with multinational companies. This not only reinforces the actors directly implicated in the conflict, but it also undermines the good governance of natural resources needed to support development and sustainable peace. Once conflict is underway, natural resources may be exploited to finance the acquisition of weapons and ammunition and to reinforce the war economy, linking armed groups and even the security sector to international markets and organized criminal groups. These dynamics are challenging to address through DDR processes, but are necessary to contend with if sustainable peace is to be achieved. When DDR processes promote good governance practices, transparent policies and community engagement around natural resource management, they can also simultaneously address conflict drivers and the impacts of armed conflict on the environment and host communities. Issues of land rights, equal access to natural resources for livelihoods, equitable distribution of their benefits, and sociocultural disparities may all underpin the drivers of conflict that motivate individuals and groups to take up arms. It is critical that DDR practitioners take these linkages into account to avoid exacerbating existing grievances or creating new conflicts, as well as to effectively use natural resource management to contribute to sustainable peace. This module aims to contribute to DDR processes that are grounded in a clear understanding of how natural resource management can contribute to sustainable peace and reduce the likelihood of a resurgence of conflict. It considers how DDR practitioners can integrate youth, women, persons with disabilities and other key specific needs groups when addressing natural resource management in reintegration. It also includes guidance on relevant natural resource management related issues like public health, disaster-risk reduction, resiliency and climate change. With enhanced interagency cooperation, coordination and dialogue among relevant stakeholders working in DDR, natural resource management and governance sectors - especially national actors - these linkages can be addressed in a more conscious and deliberate manner for sustainable peace. Lastly, this module recognizes that the degree to which natural resources are incorporated into DDR processes will vary based on the political economy of a given context, size, resource availability, partners and capacity. While some contexts may have different agencies or stakeholders with expertise in natural resource management to inform context analyses, assessment processes and subsequent programme design and implementation, DDR processes may also need to rely primarily on external experts and partners. However, limited natural resource management capacities within a DDR process should not discourage practitioners from capitalizing on the opportunities or guidance available, or to seek collaboration and possible programme synergies with other partners that can offer natural resource management expertise. For example, in settings where the UN has no mission presence, such capacity and expertise may also be found within the UN country team, civil society, and/or academia.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1c25795d-f60c-4524-b402-b41ab44632b2", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides DDR practitioners - in mission and non-mission settings - with necessary information on the linkages between natural resource management and integrated DDR processes during the various stages of the peace continuum. The guidance provided highlights the role of natural resources in all phases of the conflict cycle, focusing especially on the linkages with armed groups, the war economy, and how natural resource management can support successful DDR processes. It also emphasizes the ways that natural resource management can support the additional goals of gender-responsive reconciliation, resiliency to climate change, and sustainable reintegration through livelihoods and employment creation. The module highlights the risks and opportunities presented by natural resource management in an effort to improve the overall effectiveness and sustainability of DDR processes. It also seeks to support DDR practitioners in understanding the associated risks that threaten people\u2019s health, livelihoods, security and the opportunities to build economic and environmental resilience against future crises.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "966ceb79-bd12-4491-87be-600e01c57154", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Natural resources refer to any natural assets (raw materials) occurring in nature that can be used for economic production or consumption (OECD).2 These may include, but are not limited to, hard commodities such as minerals, gemstones, petroleum resources, timber, or other geological resources. They can also include soft commodities including agricultural products like cocoa, palm oil, sugar, coffee, wheat and other highly traded global commodities. Natural resources can also include endangered rare species of flora and fauna (including those used in narcotics) and related products traded on global markets. War economy refers to the economic structure developed to support armed conflict in a given jurisdiction, whether set up by the existing government or an armed group. The war economy includes legal and illegal exploitation of natural resources with the aim of supporting one or more sides of a conflict. Sustainable use of natural resources refers to the exploitation or management of natural resources in a way that ensures their long-term availability to support development for future generations. Natural resource management: Activities related with the management of natural capital stocks, (monitoring, control, surveys, administration and actions for facilitating structural adjustments of the sectors concerned) and their exploitation (e.g., abstraction and harvesting).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "a7170f3c-ae76-4d98-8b21-f7c7730b23a5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 5, + "Paragraph": "Introduction When well-managed, natural resources have the potential to support sustainable peace, development, and to address long-standing grievances. However, there is also mounting evidence that in many violent conflicts worldwide there is a strong link between armed conflict and weak governance or mismanagement of natural resources, dynamics which also contribute to violent conflict.3 Over the past 60 years at least 40 percent of all intrastate conflicts were linked to natural resources.4 Furthermore, conflicts where natural resources are implicated have been shown to be more likely to relapse within five years.5 Looking back over the history of UN peacekeeping operations, nearly twenty missions have been deployed to conflicts fuelled or financed by natural resources, yet only a few of these missions have had a direct mandate to tackle natural resource challenges. However, the United Nations recognizes the need to incorporate the environment and natural resource dimensions of conflict and peacebuilding along the entire peace continuum, as evidenced in the UN Sustainable Development Cooperation Framework, the Humanitarian Response Plan and/or the Integrated Strategic Framework across multiple settings.6 Although evident risks exist, natural resource management also has the potential to enable sustainable peace, including through sustainable development that contributes to job creation, reduced grievances, and equitable sharing of benefits from natural resources. Through sound management, individuals and societies can employ natural resources in ways that secure livelihoods, generate tax revenues, stimulate exports, and engage the private sector in employment-creation purposes. Furthermore, natural resource management provides both temporary (Track A) and more sustainable (Track B) employment opportunities, as outlined in the United Nations Post Conflict Policy for Employment Creation, Income Generation and Reintegration. In DDR contexts where strong governance is present, policy processes may specifically target natural resource sectors - including forestry, mining and conservation - to support job creation for long-term sustainable peace. Since natural resources underpin livelihoods for the vast majority of populations in post-conflict contexts, DDR practitioners should ensure to analyze any ways in which special-needs groups - such as women, youth, persons with disabilities or different vulnerable populations - can safely access and productively use natural resources. Gender issues in particular are crucial for sustainability and efficiency in economic recovery when it comes to natural resource management as gender norms in society can affect the division of labour between men and women and the distribution of capital assets, including land, credit, skills and participation in decision making, often negatively impacting women. Gender can also impact whether natural resources can be accessed and used safely; for example, the provisioning of essential natural resources for daily subsistence by women and girls, such as gathering firewood or charcoal, often puts them at risk for sexual and gender-based violence (SGBV).7 In other cases, the physical strength needed to work in natural resource management sectors can prohibit women from accessing these kinds of economic opportunities (e.g., certain roles in the forestry or mining sectors). In addition to their economic benefits, natural resources can play an important role in supporting successful social reintegration and reconciliation through community-based approaches to natural resource management, including promoting access to grievance- and dispute-resolution mechanisms. To ensure that growth in natural resource management sectors will contribute positively to peace efforts, DDR practitioners shall undertake all necessary efforts to understand the risks and opportunities presented by natural resource management and fully analyze and incorporate them into process planning, design and implementation. The linkages between organized criminal groups, armed forces and groups and illicit trade - including implications of local community actors - should also be taken into account. These include the potential for poor natural resource management, coupled with weak governance, to lead to further grievances and recruitment. Since natural resource management takes place at the local, regional and national levels, there are multiple opportunities to work cooperatively with relevant stakeholders during DDR processes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "980f0bb3-6354-4a40-ae8c-e07200e42ebe", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 7, + "Paragraph": "Guiding Principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the linkages between DDR and natural resource management.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2bd7b3ec-33e2-49a2-8410-61be0f7dd8aa", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 7, + "Paragraph": "People-centred Natural resources can be used to support or to undermine development and sustainable peace. Ultimately, natural resources are part of the naturally protected rights of the citizens of any sovereign nation and DDR practitioners must seek to protect and respect these rights in accordance with relevant international and national laws and policies (including customary law). In particular, DDR practitioners shall seek advice from human rights officers, rule of law or other experts in natural resource management, especially if the land and other rights of indigenous or otherwise marginalized communities are potentially affected.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "8928dad9-6ebf-4a4d-9a2d-5f84b4735b20", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 7, + "Paragraph": "Gender responsive and inclusive Equitable participation and access to natural resource-related opportunities and benefits shall be ensured for women, men, girls and boys, regardless of their ethnicity, sexual orientation and other intersecting factors. For DDR practitioners, a special emphasis should be placed on helping to secure tenure and access to land and other resources within existing or proposed frameworks for women and girls, since this is shown to be key to their successful reintegration, as well as to providing both male and female DDR participants and beneficiaries with equitable access to economic reintegration opportunities in natural resource management sectors.8 As part of DDR assessments, a specific gender analysis - carried out in consultation with both female and male participants and community members in their preferred language - should be undertaken in order to map the gender-specific roles and responsibilities in natural resource management and gender division of labour as well as associated risks and protection concerns. Based on the analysis, DDR practitioners shall promote the equal participation and decision-making opportunities of female and male participants and beneficiaries in natural resource management.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e063faab-3077-4ff2-94be-b9b0a3a38d2b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 7, + "Paragraph": "Conflict sensitive As outlined in IDDRS 2.10, \u201cdo no harm\u201d is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. In the case of natural resources, DDR practitioners shall ensure that they are not implementing or encouraging practices that will threaten the long-term sustainability of natural resources and the livelihoods that depend on them. They should further seek to ensure that they will not contribute to potential environment- related health problems for affected populations; this is particularly important when considering water resources, land allocation and increase in demand for natural resources by development programmes or aid groups (such as increased demand for charcoal, timber, etc. without proper natural resource management measures in place).9 Finally, DDR practitioners should approach natural resource issues with conflict sensitivity to ensure that interventions do not exacerbate conflict or grievances around natural resources or other existing community tensions or grievances (such as those based on ethnic, religious, racial or other dimensions), contribute to any environmental damage, and are equipped to deal with potential tensions related to natural resource management. In particular, sectors targeted by reintegration programmes should be carefully analysed to ensure that interventions will not cause further grievances or aggravate existing tensions between communities; this may include encouraging grievance- and dispute-resolution mechanisms to be put in place.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "0780cb9c-9d47-4ee1-8803-949136ff62af", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 8, + "Paragraph": "Context-specific DDR processes shall be context-specific to reflect both the nature of the conflict and the role of natural resources in the conflict, taking into account the national, regional and global implications of any activities. The specific role of natural resources should be considered in each context by DDR practitioners, including where natural resources are part of underlying grievances, or where they are being exploited directly by armed forces, groups or organized criminal groups - or by local communities under the auspices of these actors - to control territories or to finance the purchase of weapons and ammunition. DDR practitioners should also consult any local civil society, academic institutions and other expertise that may be available at the local level to inform interventions. Local experts may be included in assessments of all types of local institutions, armed groups, organized criminal groups, and local political activities, as well as in the development and implementation of DDR processes. Where possible and appropriate, DDR processes should seek to adopt livelihoods strategies and employment generation opportunities that respect human rights and the rights of indigenous peoples and local communities, promote sound natural resource management, participatory decision- making, conflict sensitivity and that do not exploit natural resources at unsustainable rates. DDR practitioners should focus on promoting sustainable livelihoods and consider incorporating environmental feasibility studies for any projects based on natural resource exploitation. They should also ensure that post-project impact monitoring and evaluation includes the environment, natural resources and ecosystem services, especially where the latter relates to disaster-risk reduction and resiliency in the face of climate change.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d791d377-f210-43c3-ad06-40b1bf3e5376", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 8, + "Paragraph": "Flexible, accountable and transparent DDR processes are undertaken in the context of national and local frameworks that must comply with relevant rights and obligations under international law (see IDDRS 2.11 on The Legal Framework for UN DDR). Whether in a conflict setting or not, the State and any other regional law enforcement authorities have the responsibility to implement any criminal justice measures related to the illegal exploitation and/or trafficking of natural resources, including instances of scorched-earth policies or other violations of humanitarian or human rights law. DDR practitioners shall also take into account any international or regional sanctions regimes in place against the export of natural resources. At times when the State itself is directly involved in these activities, DDR practitioners must be aware and factor this risk into interventions.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "63c4b13e-9ee0-49f0-a2ba-9a7fbe6d382d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 9, + "Paragraph": "Nationally and locally owned Every context is unique when it comes to natural resource management, depending on the characteristics of local ecosystems and existing socio-cultural relationships to land and other natural resources. Strong or weak local and national governance can also impact how natural resources may be treated by DDR processes, specifically where a weak state can lead to more incentives for illicit exploitation and trafficking of natural resources in ways that may fuel or exacerbate armed conflict. DDR practitioners should ensure they thoroughly understand these dynamics through assessments and risk management efforts when designing interventions. For DDR processes, local communities and national institutions - including relevant line ministries - are sources of critical knowledge and information. For this reason, DDR processes shall explicitly incorporate national and local civil society organizations, academic institutions, private sector and other stakeholders into intervention planning and implementation where appropriate. Since international mandates and resources for DDR processes are limited, DDR practitioners shall seek to build local capacities around natural resource management whenever possible and shall establish relevant local partnerships to ensure coordination and technical capacities are available for the implementation of any interventions incorporating natural resource management. In some cases, natural resource management can be used as a platform for reconciliation and trust building between communities and even regional actors. DDR practitioners should seek to identify these opportunities where they exist and integrate them into interventions.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "29773901-790b-432e-bad7-9b362bc3119b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 9, + "Paragraph": "Regionally supported In cases where natural resources are exploited and trafficked to finance the activities of armed forces and groups or organized criminal groups active in conflict settings, regional dynamics may be at play. Private sector and government actors from neighbouring States may be implicated in the trade of natural resources and DDR practitioners should engage regional stakeholders as much as possible to control for these risks and to identify opportunities to create a regional environment conducive to sustainable peace.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "91572477-3ebf-4918-8b10-defe05db0940", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 9, + "Paragraph": "Integrated DDR processes will be more successful when considerations related to natural resource management are integrated from the earliest assessment phase through all stages of strategy development, planning and implementation. Expertise within the UN system and with other interagency partners should inform the interventions of DDR processes, in tandem with local and national expertise and knowledge.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4ef426c2-3613-43c5-acc8-1531ce28878f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 10, + "Paragraph": "Natural resources in conflict settings In contexts with poor governance, weak diversification and poor sectoral linkages, natural resources may be exploited to sustain the political and military agendas of armed forces and/or other groups.10 This dynamic contributes to a broader war economy that may incentivize unsustainable exploitation, resource grabs and human rights abuses that may be related, although not exhaustively, to the environment and natural resources.11 When captured by armed forces and groups, or organized criminal groups, high-value commodity sectors with significant global demand - such as minerals, oil and gas, timber and other agricultural commodities - represent a serious threat to peace, security and development.12 This may occur with high-value commodities including charcoal, timber, ivory, gems and minerals, as well as agricultural commodities like cocoa and or palm oil. This trade links conflict actors to the global economy and ultimately to the end consumer of the good or service, thereby implicating a multitude of stakeholders from local private sector to regional and global multi-national enterprises and their investors.13 The exploitation of natural resources and associated environmental stresses, such as the contamination of soils, air or water during extraction processes, can impact all phases of the conflict cycle, from contributing to the outbreak and perpetuation of violence to undermining prospects for peace. In addition, the environment itself may be damaged through scorched-earth tactics in order to harm specific groups of people or to render land and areas unusable by opposing groups. In extreme cases, land can also be damaged when communities are significantly displaced, where populations may be forced to degrade the natural resource base in order to survive. This environmental damage, coupled with the collapse of institutions and governance practices, can present significant risks that threaten people\u2019s health, livelihoods and undermine security. It may also undermine a country\u2019s capacity to achieve the 2030 Agenda for Sustainable Development, as well as exacerbate vulnerabilities to climate change and natural disasters. Identifying the role of natural resources in armed conflict is a necessary starting point to effectively address the factors that may have caused or sustained conflict, could trigger a relapse into violence, or may impede the process of consolidating sustainable peace. Analyses and assessments on environmental and natural resource issues can help DDR practitioners to identify the ways in which natural resources are intentionally and/or inadvertently utilized, exploited, depleted and destroyed as part of conflict. While the UN has increasingly adopted guidance on integrating natural resource considerations into its peacebuilding assessments and interventions, in practice, natural resources are still too often considered as \u201ctoo hard to fix\u201d and as an issue to be addressed at a later stage in the recovery or peacebuilding process. However, doing so fails to take into account the broad and changing nature of threats to national and international security, as well as opportunities for natural resource management to contribute to sustainable peace. Integrating natural resource management issues into peacebuilding \u2013 and DDR in particular \u2013 should be seen as a security imperative following the strong linkages between natural resources and conflict. Deferred action or uninformed choices made early on often establish unsustainable trajectories of recovery that can undermine long-term peace and stability. At the same time, natural resource management offers important opportunities for sustainable livelihoods recovery, employment creation and reconciliation. The following sections provide a frame of reference to support the improved consideration of natural resources in DDR processes. In order to apply this frame, DDR practitioners should seek the appropriate expertise and work across different national and international agencies to gather the information related to natural resources needed to inform interventions. The relationship between natural resources, the environment and conflict is multidimensional and complex, but three principal pathways can be drawn. These pathways are described in more detail in the following sections:", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d985f0a9-86ae-4290-9cf2-6b7b188bc1a1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 11, + "Paragraph": "Contributing to the causes of conflict Natural resources underpin livelihoods and the socio-cultural rights of peoples in many parts of the world. When access to these resources is disrupted - and especially where long-standing historic grievances (real or perceived) over access to land and resources are present - natural resources may be more easily exploited to encourage recruitment by armed groups. This relationship can be complex, but there is evidence in the historical record as to how access to land or other natural resources can motivate parties to a conflict. Grievances related to land (communal or individually owned) and access to resources can be deeply embedded in the historical narrative of peoples and hugely motivating for individuals and groups to participate in violent conflict. These dynamics are critical for DDR practitioners to understand and to factor into planning. Natural resources can also contribute to the causes of conflict where their governance and management has been handled in a way that privileges certain social or ethnic groups over others. Marginalized groups, excluded from access to natural resources and related benefits, may be more inclined to participate in the illicit or informal economy where armed conflict is present, thereby potentially engaging in riskier livelihoods sectors less protected by labour regulations.14 They may also be more likely to participate in the activities of organized criminal groups involved in the exploitation of natural resources. These dynamics can further undermine the ability of the Government to provide benefits (i.e., education, healthcare and development) and resources to communities due to a loss of tax revenue from formal economic sectors, as well as create the right conditions for illicit trade in weapons, ammunition and other illicit goods. This combination of factors can increase the likelihood that additional resentments will build and fuel recruitment into armed forces and groups. Finally, in some cases, scorched earth tactics may be used to gain control of a particular territory, resulting in significant displacement of populations and permanent damage to the environment. To secure a strategic advantage, demoralize local populations or subdue resistance, leaders and members of armed forces and groups may pollute water wells, burn crops, cut down forests, poison soils and kill domestic animals. In some cases, entire ecosystems have been deliberately targeted to achieve political and military goals. These tactics can result in grievances that ultimately undermine DDR processes and sustainable peace, and limit the positive role that natural resource management can play in sustaining peace.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2b0b041e-5d09-48d9-8855-6a8dcab6090c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 12, + "Paragraph": "Financing and sustaining conflict Once armed conflict is underway, natural resources will often be targeted by armed forces and groups - as well as organized criminal groups - in order to trade them for revenues or for weapons and ammunition. These resources may be used to finance the activities of armed forces and groups, including their ability to compensate recruits, purchase weapons and ammunition, acquire materials necessary for transportation or control of strategic territories, and even their ability to expand territorial control. The exploitation of natural resources in conflict contexts is also closely linked to corruption and weak governance, where government, organized criminal groups, the private sector and armed forces and groups become interdependent through the licit or illicit revenue and trade flows that natural resources provide. In this way, armed groups and organized criminal groups can even capture the role of government and can integrate themselves into political processes by leveraging their influence over trade and access to markets and associated revenues (see IDDRS 6.40 on DDR and Organized Crime). In addition to capturing the market for natural resources, the financing of weapons and ammunition may permit armed forces and groups to coerce or force communities to abandon their lands and territories, depriving them of livelihoods resources such as livestock or crops. Hostile takeovers of land can also target valuable natural resources for the purpose of taxing their local trade routes or gaining access to markets and/or licit or illicit commodity flows associated with those resources.15 This is especially true in contexts of weak governance. Conflict contexts with weak governance are ripe for the proliferation of organized criminal groups and capture of revenues from the exploitation and trade of natural resources. However, this is only possible where there are market actors willing to purchase these resources and to engage in trade with armed forces and groups. This relationship may be further complicated on the ground by the different actors involved in markets and trade, which could include government authorities in customs and border protection, shell companies created to purposely distort the paper trail around this trade and subvert efforts at traceability by markets further downstream (i.e., closer to the end consumer), or direct involvement of other governments surrounding the country experiencing violent conflict to facilitate this trade. In these cases, the private sector at the local and national level, as well as buyers in international markets, may be implicated, whether the resources are legally or illegally traded. The relationship between the private sector and armed forces and groups in conflict is complex and can involve trade, arms and financial flows that may or may not be addressed by sanctions regimes, national and international regulations or other measures. Tracing conflict resources in global supply chains is inherently difficult; these materials may be one of hundreds that are part of a product purchased by an end user and may be traded through dozens of markets and jurisdictions before they end up in a manufacturing process, allowing multiple opportunities for the laundering of resources through fake certificates in the chain of custody.16 Consumer goods companies find the traceability of materials to a point of origin challenging in the best of circumstances; the complexities of a war economy and outbreak of violent conflict makes this even more complicated. However, technologies developed in recent years - including chemical markers, RFID tags and QR codes - are increasingly reliable, and the manufacturers, brands and retailers who sell products that contain conflict resources are increasingly subject to legal regimes that address these issues, depending on where they are domiciled.17 Globally, legal regimes that address conflict resources in global supply chains are still nascent, but awareness of these issues is growing in consumer markets and technological solutions to traceability and company due diligence challenges are emerging at a rapid rate.18 There are many groups working to track the trade in conflict resources that DDR practitioners can collaborate with to ensure they are able to identify critical changes and shifts in the activities, tactics and potential resource flows of armed forces and groups. DDR practitioners should seek out these resources and engage these stakeholders to support assessments and the design and implementation of DDR processes whenever appropriate and possible.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce553288-f9ad-42c4-a20f-6c9fa04fa458", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 13, + "Paragraph": "Contributing to reconciliation and sustaining peace Governance institutions and State authorities, including those critical to accountability and transparency, may have been eroded by conflict or weak to start with. When tensions intensify and lead to armed conflict, rule of law breaks down and the resulting institutional vacuum can lead to a culture of impunity and corruption. This collapse of governance structures contributes directly to widespread institutional failures in all sectors, allowing opportunistic individuals, organized criminal groups, armed groups and/or private entities to establish uncontrolled systems of resource exploitation.19 At the same time, public finances are often diverted for military purposes, resulting in the decay of, or lack of investment in, water, waste management and energy services, with corresponding health and environmental contamination risks. During a DDR process, the success and the long-term sustainability of natural resource-based interventions will largely depend on whether there is a good, functioning governance structure at the local, sub-regional, national or regional level. The effective and inclusive governance of natural resources and the environment should be viewed as an investment in conflict prevention within peacebuilding and development processes. Where past activities violate national laws, it is up to the State to exercise its jurisdiction, but egregious crimes constituting gross violations of human rights, as often seen with scorched earth tactics, oblige DDR processes to exclude any individuals associated with these events from participating in the process (see IDDRS 2.11 on The Legal Framework for UN DDR). However, there may be other jurisdictions where multi-national private entities can be targeted and pressured or prosecuted to cut their ties with armed forces and organized criminal groups in conflict areas. Sanctions set by the UN Security Council may also be brought to bear where they cover natural resources that are trafficked or traded by private sector entities and armed forces and groups. DDR practitioners will not be able to influence, control or focus upon all aspects of natural resource governance. However, through careful attention to risk factors in the planning, design and implementation of natural resource-based activities, DDR processes can play a multifaceted and pivotal role in paving the way for good natural resource governance that supports sustainable peace and development. Moreover, DDR practitioners can ensure that access to grievance- and non-violent dispute-resolution mechanisms are available for participants, beneficiaries and others implicated in the DDR process, in order to mitigate the risks that natural resources pose for conflict relapse. Furthermore, environmental issues and protection of natural resources can serve as effective platforms or catalysts for enhancing dialogue, building confidence, exploiting shared interests and broadening cooperation and reconciliation between ex-combatants and their communities, between communities themselves, between communities and the State, as well as between States themselves.20 People and cultures are closely tied to the environment in which they live and to the natural resources upon which they depend. In addition to their economic benefits, natural resources and ecosystem services can support successful social reintegration and reconciliation. In this sense, the management of natural resources can be used as a tool for engaging community members to work together, to revive and strengthen traditional natural resource management techniques that may have been lost during the conflict, and to encourage cooperation towards a shared goal, between and amongst communities and between communities and the State. In settings where natural resources have played a significant role in the conflict, DDR practitioners should explore opportunities for addressing underlying grievances over such resources by promoting equitable and fair access to natural resources, including for women, youth and participants with disability. Access to natural resources, especially land, often carries significant importance for ex-combatants during reintegration, particularly for female ex-combatants and women associated with armed forces and groups. Whether the communities are their original places of origin or are new to them, ensuring that they have access to land will be important in establishing their social status and in ensuring that they have access to basic resources for livelihoods. In rural areas, it is essential that DDR practitioners recognize the connection between land and social identity, especially for young men, who often have few alternative options for establishing their place in society, and for women, who are often responsible for food security and extremely vulnerable to exclusion from land or lack of access. To further support social reintegration and reconciliation, as well as to enhance peacebuilding, DDR practitioners should seek to support reintegration activities that empower communities affected by natural resource issues, applying community-based natural resource management (CBNRM) approaches where applicable and promoting inclusive approaches to natural resource management. Ensuring that specific needs groups such as women and youth receive equitable access to and opportunities in natural resource sectors is especially important, as they are essential to ensuring that peacebuilding interventions are sustainable in the long-term.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dafc9c2f-4446-46a7-ada8-33eddf501333", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 15, + "Paragraph": "DDR and natural resources: planning considerations At the outset, there are several key risk factors to consider when looking to leverage natural resources to support DDR processes. Depending on where DDR practitioners are working along the peace continuum, the following are three key areas where risks and opportunities should be considered: Supporting economic recovery: When natural resources are properly governed and carefully managed, \u201chigh-value\u201d resources (such as hydrocarbons, minerals, metals, stones and export timber) can form an important basis for employment creation and budget revenue for development. With close attention to whether a robust framework is in place with respect to land rights, and sub-surface natural resource rights as a pre-cursor, engagement with private sector entities can help to facilitate these types of opportunities, whether for high-value natural resources or agricultural commodities with significant market value such as coffee, cocoa, grains or other soft commodities. The risk, however, is that the pressure to kick-start development and earn foreign exchange can lead to rapid, uncontrolled exploitation of such resources at sub-optimal prices, without due attention to land and sub-surface resource rights, environmental sustainability, employment creation and the equitable distribution of revenues. When the benefits are not shared, or when environmental degradation occurs as a consequence of exploitation, there could be serious potential for conflict to resume. Developing sustainable livelihoods for peace: Sustainable peace fundamentally hinges on the development of sustainable livelihoods, the provision of basic services, and on the recovery and sound management (including equitable distribution of related benefits) of the natural resource base. Environmental damage caused by conflicts, coping strategies and chronic environmental problems (including climate change impacts) that undermine livelihoods must therefore be addressed from the outset. Minimizing vulnerability to natural hazards and climate change through the management of key natural resources and the introduction of appropriate technologies may also be addressed. Women and children are often disproportionally affected by environmental contamination economically, socially as well as in terms of their health and well-being. DDR practitioners should therefore seek to address the specific needs of women and children in relation to their dependence on natural resources and risks involved. Careful coordination and attention to issues of land access, tenure and the availability of agricultural inputs and access to financing are critical elements for ensuring success and sustainability. Women, and especially unmarried women and women who are not closely associated with a male relative, or those who face stigma or discrimination due to various other circumstances (i.e., sexual violence survivors, single mothers, unmarried women, etc.) are often disadvantaged in regard to access to capital assets as women\u2019s ownership rights are often based on de facto agreements through male community members and traditional gender roles may prevent women and girls from accessing education and capacity building. Contributing to dialogue, reconciliation and confidence building: Natural resources can be a neutral entry point or catalyst for enhancing dialogue, building confidence, exploring shared interests and broadening cooperation between divided communities as well as within and between states. Such actions should aim to use an inclusive approach that seeks to consider and respond to the needs of the entire population, especially women and youth. Bringing communities together to discuss and resolve common challenges and concerns, such as access to water points and grazing lands, can be a powerful peacebuilding tool and can help to mitigate the risk of further conflict between competing natural resource user groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2418abdd-5a3b-4dc9-a31a-f27138739fe0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 16, + "Paragraph": "Assessments and design During the pre-planning and preparatory assistance phase, DDR practitioners should clarify the role natural resources may have played in contributing to the causes of conflict, if any, and determine whether DDR is an appropriate response or whether there are other types of interventions that could be employed. In line with IDDRS 3.11 on Integrated Assessments, DDR practitioners should factor the linkage between natural resources and armed forces and groups, as well as organized criminal groups, into baseline assessments, programme design and exit strategies. This includes identifying the key natural resources involved in addition to key individuals, armed forces and groups, any known organized criminal groups and/or Governments who may have used (or continue to use) these particular resources to finance or sustain conflict or undermine peace. The analysis should also consider gender, disability and other intersectional considerations by examining the sex- and age- disaggregated impacts of natural resource conflicts or grievances on female ex-combatants and women associated with armed forces and groups. The assessments should seek to achieve two main objectives regarding natural resources and will form the basis for risk management. First, they should determine the role that natural resources have played in contributing to the outbreak of conflict (i.e., through grievances or other factors), how they have been used to finance conflict and how natural resources that are essential for livelihoods may have been degraded or damaged due to the conflict, or become a security factor (especially for women and girls, but also boys and men) at a community level. Secondly, they should seek to anticipate any potential conflicts or relapse into conflict that could occur as a result of unresolved or newly aggravated grievances, competition or disputes over natural resources, continued war economy dynamics, and the risk of former combatants joining ranks with criminal networks to continue exploiting natural resources. This requires working closely with national actors through coordinated interagency processes. Once these elements have been identified, and the potential consequences of such analysis are fully understood, DDR practitioners can seek to explicitly address them. Where appropriate, DDR practitioners should ensure that assessment activities include technical experts on land and natural resources who can successfully incorporate key natural resource issues into DDR processes. These technical experts should also display expertise in recognizing the social, psychological and economic livelihoods issues connected to natural resources to be able to properly inform programme design. The participation of local civil society organizations and groups with knowledge on natural resources will also aid in the formation of a holistic perspective during the assessment phase. In addition, special attention should be given to gathering any relevant information on issues of access to land (both individually owned and communal), water and other natural resources, especially for women and youth. Land governance and tenure issues - including around sub-surface resource rights - are likely to be an issue in almost every context where DDR processes are implemented. DDR practitioners should identify existing efforts and potential partners working on issues of land governance and tenure and use this as a starting point for assessments to identify the risk and opportunities associated with related natural resources. Land governance will underpin all other natural resource sectors and should be a key element of any assessment carried out when planning DDR. While DDR processes cannot directly overcome challenges related to land governance issues, DDR practitioners should be aware of the risk and opportunities that current land governance issues present and do their best to mitigate these through planning and implementation. Natural resources and conflict linkages In order to determine if natural resources have played (or continue to play) a critical role in armed conflict, assessments should seek to understand the key actors in the conflict and their linkages to natural resources (see Table 1). Assessments should also identify: Key financial and strategic benefits and drawbacks of the identified resources on all warring parties and civilian populations affected by the conflict. The nature and extent of grievances over the identified natural resources (real and perceived), if any. The location of implicated resources and overlap with territories under the control of armed forces and groups. The role of sanctions in deterring illegal exploitation of natural resources. The extent and type of resource depletion and environmental damage caused as a result of mismanagement of natural resources during the conflict. Displacement of local populations and their potential loss of access to natural resources. Cross-border activities regarding natural resources. Linkages to organized criminal groups (see IDDRS 6.40 on DDR and Organized Crime). Linkages to armed groups designated as terrorist organizations (see IDDRS 6.50 on DDR and Armed Groups Designated as Terrorist Organizations) Analyses of different actors in the conflict and their relationship with natural resources. The abovementioned assessments can be completed through desk reviews (i.e., using reports from the national Government, UN agencies, NGOs, local civil society groups and media) as well as field assessments. An assessment mission can also help to collect the necessary background information for analysis. Assessment methodology shall be developed in consultation with gender experts and assessment teams shall include gender expertise. The role of natural resources in the political and security sectors affecting the planning of DDR processes should be duly considered. Where appropriate, conflict and security analysis should factor in considerations related to natural resources (see Box 1). In post-conflict contexts, assessments of the linkages between natural resources and armed conflict should also complement a post-conflict needs assessment that identifies the main social and physical needs of conflict-affected populations. For further information, see IDDRS 3.11 on Integrated Assessments. The results of these assessments and the natural resource sectors targeted should indicate to DDR practitioners as to which planning and implementation partners will be required. A diverse range of partners should be sought, including partners from local civil society as well as those working in and with the private sector. When planning and implementation partners have been identified, DDR practitioners should ensure that there are dedicated resources for a knowledge management focal point to support natural resource management, gender and other cross-cutting themes. Many DDR processes already use natural resource management in CVR or reintegration efforts. Without recognizing the potential risks and adopting adequate safeguards, DDR processes could have negative impacts on natural resources. See section 6.3 for information on how to recognize and mitigate these risks. Employment and livelihood opportunities DDR practitioners planning the implementation of employment and livelihoods programmes - for example, as part of a CVR or DDR programme - should also seek to gather information on the risks and opportunities associated with natural resources. For example, questions concerning natural resources should be integrated into the profiling questionnaires administered during the demobilization component of a DDR programme (see Box 2). These questionnaires seek to identify the specific needs and ambitions of ex-combatants and persons formerly associated with armed forces and groups (for further information on profiling, see section 6.3 in IDDRS 4.20 on Demobilization). Natural resource related questions should also be included in assessments conducted for the purpose of designing reintegration programmes. For sample questions see Table 2 and, for further information on reintegration assessments, see section 7 in IDDRS 4.30 on Reintegration. Many of these sample questions may also be relevant for the design of CVR programmes (see IDDRS 2.30 on Community Violence Reduction). At a minimum, assessments focused on natural resources and employment and livelihood opportunities should reflect on the demand for natural resources and any derived products in local, regional, national and international markets. They should also examine existing and planned private sector activity in natural resource sectors. Assessments should also consider whether any areas environmentally degraded or damaged as a result of the conflict can be rehabilitated and strengthened through quick-impact projects (see section 7.2.1). DDR practitioners should seek to incorporate information gathered in Strategic Environmental Assessments and Environmental and Social Impact Assessments where appropriate and possible, to avoid unnecessary duplication of efforts. The data collected can also be used to identify potential reconciliation and conflict resolution activities around natural resources. These activities may, for example, be included in the design of reintegration programmes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9632be63-8faf-417b-885a-0b59743d5f19", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 23, + "Paragraph": "Specific-needs groups and cross-cutting issues In order to appropriately address the needs of all DDR participants and beneficiaries, a thorough analysis of groups with specific needs in natural resource management should be carried out as part of general DDR assessments. These considerations should then be mainstreamed throughout design and implementation. Specific needs groups often include women and girls, youth, persons with disabilities and persons with chronic illnesses, and indigenous and tribal peoples and local communities, but other vulnerabilities might also exist in different DDR contexts. Annex B presents a non-exhaustive list of questions that can be incorporated into DDR assessments in regard to specific- needs groups and natural resource management. Youth Many conflict-affected countries have substantial numbers of youth \u2013 individuals between 15 and 24 years of age - relative to the rest of the population. Natural resources can offer specific opportunities for this group. For example, when following a value chain approach (see section 7.3.1) with agricultural products, non-timber forest products or fisheries, DDR practitioners should seek to identify processing stages that can be completed by youth with little work experience or skills. Habitat and ecosystem services restoration can also offer opportunities for young people. Youth can also be targeted as leaders through training-of-trainers programmes to further disseminate best practices and skills for improving the use of natural resources. When embarking on youth-focused DDR processes, efforts should be made to ensure that both male and female youth are engaged. While male youth are often the more visible group in conflict-affected countries, there are proven peace dividends in providing support to female youth. For additional guidance, see IDDRS 5.30 on Youth and DDR. Women and girls Women and girls often directly manage communal natural resources for their livelihoods and provide for the food security of their families (e.g., through the direct cultivation of land and the collection of water, fodder, herbs, firewood, etc.). However, they often lack tenure or official rights to the natural resources they rely on, or may have access to communal resources that are not recognized (or upheld if they are recognized) in local or national laws. DDR practitioners should pay special attention to ensuring that women are able to access natural resources especially in situations where this access is restricted due to lack of support from a male relative. In rural areas, this is especially crucial for access to land, which can provide the basis for women\u2019s livelihoods and which often determines their ability to access credit and take-out loans. For example, where DDR processes link to land titling, they should encourage shared titling between male and female heads of households. In addition, DDR practitioners should ensure that employment opportunities and necessary skills training are available for girls and women in natural resource sectors, including non-traditional women\u2019s jobs. Moreover, DDR practitioners should also ensure that women are part of any decision-making processes related to natural resources and that their voices are heard in planning, programmatic decisions and prioritization of policy. In cases where access to natural resources for livelihoods has put women and girls at higher risk of SGBV, special care must be taken to establish safe and secure access to these resources, or a safe and secure alternative. Awareness and training of security forces may be appropriate for this, as well as negotiated safe spaces for women and girls to use to cultivate or gather natural resources that they rely on. DDR practitioners should ensure that these considerations are included in DDR assessments so that the safety and security risks to women and girls from accessing natural resources are minimized during the DDR process and beyond. For more guidance, see IDDRS 5.10 on Women, Gender and DDR. Persons with disabilities Many DDR participants and beneficiaries will have experienced the onset of one or more physical, sensory, cognitive or psychosocial disabilities during conflict. DDR practitioners should ensure that in all contexts, including those in which natural resources are present, disability-inclusive DDR is integrated into the overall DDR process and is not pursued in a segregated, siloed fashion. Persons with disabilities have many different needs and face different barriers to participation in DDR and in activities involving the natural resources sector. DDR practitioners should identify these barriers and the possibilities for dismantling them when conducting assessments. DDR practitioners should seek expert advice from, and engage in discussions with, organizations of persons with disabilities, relevant NGOs and government line ministries working to promote the rights of persons with disabilities, as outlined in the United Nations Convention on the Rights of Persons with Disabilities (2006) and Standard Rules on the Equalization of Opportunities for Persons with Disabilities (1993). Health considerations Natural resource management can have profound implications on public health. For example, the use of firewood and charcoal for cooking can lead to significant respiratory problems and is a major health concern, particularly for women and children in many countries. Improved access to energy resources, can help to mitigate this (see section 7.3.4). Other key health concerns include waste management and water management, both natural resource management issues that can be addressed through CVR and reintegration programmes. DDR practitioners should include these considerations into assessments and seek to improve health conditions through natural resource management wherever possible. Other areas where health is implicated is related to the deforestation and degradation of land. Pushing the forest frontier can lead to increased exposure of local populations to wildlife that may transmit disease, even leading to the outbreak of pandemics. DDR practitioners should identify areas that have experienced high rates of deforestation and target them for reforestation and other ecosystem rehabilitation activities wherever possible, according to the results of assessments and risk considerations. For further guidance, see IDDRS 5.70 on Health and DDR. Indigenous and tribal peoples and local communities Indigenous and tribal peoples and local communities around the world have close traditional and cultural ties to land and other aspects of natural resources. They often have customary forms of managing natural resources that support overall goals of conservation and preservation of natural resources - including for food, medicines and cultural purposes - as a form of management. In many contexts, the rights of indigenous peoples to their land are undermined or under-recognized (or not recognized at all) in national legislation, leading to allocation of these lands through concessions or other acts to private companies or groups seeking to exploit the land for commercial production of agricultural or forest commodities. Their right to free, prior and informed consent (FPIC) may often be undermined or ignored. DDR practitioners should identify where indigenous peoples and local communities have claim to lands that are otherwise subjected to overlapping claims by private or state entities seeking to exploit these lands and once identified, seek to support these groups with access to local civil society and other legal aid groups that can help them to advocate for their lands and resources. DDR practitioners can also ensure that representatives of indigenous groups and local communities are included in natural resource management decision-making at local, national and regional levels.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "16a75353-a3c6-458f-bb5d-4edc5f016cb5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 25, + "Paragraph": "Risk management and implementation Following the abovementioned assessments, DDR practitioners shall develop an inclusive and gender-responsive risk management approach to implementation. The table below includes a comprehensive set of risk factors related to natural resources to assist DDR practitioners when navigating and mitigating risks. In some cases, there may be systems in place to mitigate against the risk of the exploitation of natural resources by armed forces and groups as well as organized criminal groups. These measures are often implemented by the UN (e.g., sanctions) but will implicate other actors as well, especially when the natural resources in question are traded in global markets and end up in products placed in consumer markets with protections in place against trade in conflict resources. DDR practitioners shall avoid being seen as supporting individuals or armed forces and groups that are targeted by sanctions or other regimes and work closely with national and international authorities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/IDDRS-6.40-DDR-and-Organized-Crime.json b/src/Static/data/json/IDDRS-6.40-DDR-and-Organized-Crime.json new file mode 100644 index 0000000..1fe2e74 --- /dev/null +++ b/src/Static/data/json/IDDRS-6.40-DDR-and-Organized-Crime.json @@ -0,0 +1,781 @@ +[ + { + "ID": "bd1e7799-01f1-451b-8a73-956c4d66dab7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": null, + "Paragraph": "Summary Organized crime and conflict converge in several ways, notably in terms of the ac- tors and motives involved, modes of operating and economic opportunities. Conflict settings \u2013 marked by weakened social, economic and security institutions; the delegitimi- zation or absence of State authority; shortages of goods and services for local popula- tions; and emerging war economies \u2013provide opportunities for criminal actors to fill these voids. They also offer an opening for illicit activities, including human, drugs and weapons trafficking, to flourish. At the same time, the profits from criminal activities provide conflict parties and individual combatants with economic and often social and political incentives to carry on fighting. For DDR processes to succeed, DDR practitioners should consider these factors. Dealing with the involvement of ex-combatants and persons associated with armed forces and groups in organized crime not only requires the promotion of alternative livelihoods and reconciliation, but also the strengthening of national and local capac- ities. When DDR processes promote good governance practices, transparent policies and community engagement to find alternatives to illicit economies, they can simulta- neously address conflict drivers and the impacts of conflict on organized crime, while supporting sustainable economic and social opportunities. Building stronger State institutions and civil service systems can contribute to better governance and respect for the rule of law. Civil services can be strengthened not only through training, but also by improving the salaries and living conditions of those working in the system. It is through the concerted efforts and goodwill of these systems, among other players, that the sustainability of DDR efforts can be realized. This module highlights the need for DDR practitioners to translate the recognized linkages between organized crime, conflict and peacebuilding into the design and implementation of DDR processes. It aims to contribute to age- and gender-sensitive DDR processes that are based on a more systematic understanding of organized crime in conflict and post-conflict settings, so as to best support the successful transition from conflict to sustainable peace. Through enhanced cooperation, mapping and dia- logue among relevant stakeholders, the linkages between DDR and organized crime interventions can be addressed in a manner that supports DDR in the context of wider recovery, peacebuilding and sustainable development.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e634fc45-5bf5-41d3-93fe-7efffc8bee0c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides DDR practitioners with information on the linkages between organized crime and DDR and guidance on how to include these linkages in integrated planning and assessment in an age- and gender-sensitive way. The module also aims to help DDR practitioners identify the risks and opportunities associated with incorporating organized crime considerations into DDR processes. The module highlights the role of organized crime across all phases of the peace continuum, from conflict prevention and resolution to peacekeeping, peacebuilding and longer-term development. It addresses the linkages between armed conflict, armed groups and organized crime, and outlines the ways that illicit economies can tem- porarily support reconciliation and sustainable reintegration. The guidance provided is applicable to mission and non-mission settings and may be relevant for all actors engaged in combating the conflict-crime nexus at local, national and regional levels.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9ee5a5cb-b61d-4819-9cdd-7cb9b2fb8a18", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. An organized criminal group shall mean a structured group of three or more persons, existing for a period of time and acting in concert with the aim of committing one or more serious crimes or offences established in accordance with the United Nations Convention against Transnational Organized Crime (UNTOC), in order to obtain, di- rectly or indirectly, a financial or other material benefit.1 A serious crime shall mean conduct constituting an offence punishable by a maximum deprivation of liberty of at least four years or a more serious penalty.2 A structured group shall mean a group that is not randomly formed for the immediate commission of an offence and that does not need to have formally defined roles for its members, continuity of its membership or a developed structure.3 Illicit economies are generally defined as economic transactions that are deemed ille- gal either because (a) \u2018licit\u2019 commodities or services are traded unlawfully or (b) illicit commodities or services are traded through unlawful measures.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4a59b6fe-b6b6-442a-be58-7aa412bc18ca", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 5, + "Paragraph": "Introduction Organized crime can impact all stages of conflict, contributing to its onset, perpet- uating violence (including through the financing of armed groups) and posing ob- stacles to lasting peace. Crime and conflict interact cyclically. Conflict creates space and opportunities for organized crime to flourish by weakening States\u2019 capacities to enforce the rule of law and social order. This creates the conditions for those engaging in organized crime (including both armed forces and armed groups) to operate with comparably little risk.4 Criminal activities can directly contribute to the intensity and duration of war, as new armed groups emerge that engage in illicit activities (involving both licit and illicit commodities) while fighting each other and the State.5 Criminal activities help to sup- ply parties to armed conflict with weapons, ammunition and revenues, augmenting their ability to engage in armed violence, exploit and abuse the most vulnerable, and promote the proliferation of weapons and ammunition in society, therefore undermining prospects for peace.6 Armed groups in part derive resources, power and legitimacy from participa- tion in illicit economies that allow them to impose a scheme of violent governance on locals or provide services to the communities where they are based.7 Additionally, extortion schemes may be imposed on communities, whereby payments are made to armed groups in exchange for protection and/or the provision of other services. In the absence of State institutions, such tactics can often become accepted and acknowledged as a form of taxation by armed groups. This means that those engaged in criminal activities can, over time, be perceived as legitimate political actors. This perceived legit- imacy can, in turn, translate into popular support, while undermining State authority and complicating conflict resolution. Additionally, the UN Security Council has emphasized that terrorists and terrorist groups can benefit from organized crime, whether domestic or transnational, as a source of financing or logistical support. Recognizing that the nature and scope of the linkages between terrorism and organized crime, whether domestic or transnational, vary by context,8 these ties may include an alliance of opportunities such as the en- gagement of terrorist groups in criminal activities for profit and/or the receipt of taxes to allow illicit flows to pass through territory under the control of terrorist groups. Overall, the combined presence of terrorism, violent extremism conducive to terrorism and organized crime, whether domestic or transnational, may exacerbate conflicts in affected regions and may contribute to undermining the security, stability, governance, and social and economic development of States. Importantly, in addition to diminishing law and order, armed conflict also makes it more difficult for local populations to meet their basic needs. Communities may turn to the black market for licit goods and services and seek economic opportunities in the illicit economy in order to survive. Since organized crime can underpin livelihoods for local populations before, during and after conflict, the planning for DDR processes must consider the role illicit activities play in communities at large and for specific portions of the population, including women, as well as the linkages between criminal groups and armed forces and groups. The response to organized crime will vary depending on whether the criminal activities at play involve licit or illicit commodities. The legality of commodities may also impact notions of who or what acts as a \u2018spoiler\u2019 to the peace process, community perceptions of DDR and which reintegration options are sought. DDR practitioners should also consider gender dimensions when contemplating how organized crime and armed conflict interact. Organized crime and armed con- flict affect and involve women, men, boys and girls differently, irrespective of wheth- er they are combatants, persons associated with armed forces and groups, victims of organized crime or a combination thereof. For example, although notions of mascu- linity may be more often associated with engagement in organized crime and males (adults, youth and boys) may more obviously take part in the conflict and make up the largest number of combatants, females who engage in criminal activities and conflict (both in combat and non-combat roles) can face discrimination based on gender from both ex-combatants and communities. Moreover, women are more often survi- vors of certain forms of organized crime, particularly human trafficking, and can be stigmatized or shamed due to the sex- ual exploitation they have experienced. They may be rejected by their families and communities upon their return leaving them with few opportunities for social and economic support. The experiences and treatment of males and females both during armed conflict and during their return to society may vary based on social, cultural and economic practices and norms. The organized crime\u2013conflict nexus therefore re- quires a gender- and age-sensitive DDR response. Children are highly vulnerable to trafficking and to the worst forms of child labour. Child victims may also be stigmatized, hidden or identified as dependants of adults. Therefore, within DDR, the identification of child victims and abductees, both girls and boys, requires age-sensitive approaches. Depending on the circumstances, organized crime may have existed prior to armed conflict (and possibly have given rise to it) or may have emerged during conflict. Organized crime may also remain long after peace is negotiated. Given the linkages between organized crime and armed conflict, it is necessary to recognize and under- stand this nexus as an integral part of the entire DDR process. DDR practitioners shall understand this convergence and implement measures that mitigate against associated risks, such as the reengagement of DDR participants in organized crime or the inad- vertent removal of illegal livelihoods without alternatives.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "a2ab10b1-4867-49ed-b556-1ad5de068211", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 7, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the linkages between DDR and organized crime.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "19519837-c3a7-4e3c-889d-15345eb0f38c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 7, + "Paragraph": "Criteria for participation/eligibility In contexts in which organized crime and armed conflict converge, members of armed forces and groups under consideration to participate in DDR may be (or may have been) engagedincriminalactivities. Ultimately, Stateshavetheprerogative tolegislateoncrimes and determine applicable sanctions, including judicial and non-judicial measures. Inter- national humanitarian law encourages the granting of amnesties at the end of hostilities to persons who have participated in armed conflict as a measure of clemency favouring national reconciliation and a return to peace. DDR practitioners shall therefore seek advice from human rights officers or rule-of-law or other legal experts to assess the types of crimes committed in a particular context, whether amnesties have been issued in accordance with international humanitarian and human rights law, and for which types of crimes those amnesties have been issued, as their commission may make those involved ineligible for DDR. Engagement in organized criminal activities may sometimes rise to the level of war crimes, crimes against humanity and genocide, and/ or gross violations of human rights. Therefore, if DDR participants are found to have committed these crimes, they shall immediately be removed from participation. For additional guidance on armed groups and individuals listed by the Security Council as terrorists, as well as perpetrators or suspected perpetrators of terrorist acts, see IDDRS 2.11 on The Legal Framework for UN DDR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8d644e90-b123-4da4-8d29-ec0f2dbcf910", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 7, + "Paragraph": "Unconditional release and protection of children The majority of girls and boys associated with armed forces and groups may be victims of human trafficking, and DDR practitioners shall treat all children who have been recruited by armed forces and groups, including children who have otherwise been exploited, as victims of crime and of human rights violations. When DDR processes are implemented, children shall be separated from armed forces and groups and handed over to child protection agencies. As victims of crime, children\u2019s cases shall be han- dled by child protection authorities. Children shall be provided with support for their recovery and reintegration into families and communities, and the specific needs arising from their exploitation shall be addressed. For further information, see IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7fefa261-c83c-4d06-b7a8-98be2de31c6b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 8, + "Paragraph": "Gender-responsive and inclusive DDR practitioners shall be aware that, in contexts of organized crime, not all DDR par- ticipants and beneficiaries have the same needs. For example, the majority of victims of human trafficking, sexual abuse and exploitation are women, girls and boys. More- over, women may be forcibly recruited for labour by armed groups and used as smug- gling agents for weapons and ammunition. Whether they become members of armed groups or are abductees, women have specific needs derived from their human traf- ficking exploitation including debt bondage; physical, psychological and sexual abuse; and restricted movement. DDR practitioners shall therefore pay particular attention to the specific needs of women and men, boys and girls derived from their condition of having been trafficked and implement DDR processes that offer appropriate, age- and gender-specific psychological, economic and social assistance. For further information, see IDDRS 5.10 on Women, Gender and DDR, IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "1b1a0800-9f62-4d84-b971-21d0147341f2", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 8, + "Paragraph": "Conflict sensitive DDR practitioners shall be aware of the way that crime can influence politics in the country in which they operate and avoid inadvertently feeding harmful dynamics. For example, DDR participants may seek to negotiate for political positions in exchange for violence reduction, without necessarily stepping away from their links to organized criminal groups.9 In these scenarios, DDR practitioners shall consider wider strate- gies to strengthen institutions, fight corruption and foster good governance. DDR prac- titioners shall be aware that without safeguards, DDR processes may inadvertently legitimize illicit flows of both licit and illicit commodities, and corruption in politi- cal and State institutions. The establishment of prevention, protection and monitoring mechanisms (including systems for ensuring access to justice and police protection) is essential to prevent and punish sexual and gender-based violence, harassment and intimidation, and any other violation of human rights.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8af2ae15-ecae-492a-9922-da961e4ce473", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 8, + "Paragraph": "Context specific DDR processes shall be context specific in order to address local, national, regional and global circumstances. Organized crime takes on very different shapes and forms from one place to another and can evolve over time to adapt to changing realities. The evolution of organized crime may outpace DDR processes that require time to adapt. DDR processes that address organized crime through risk prevention and mitigation measures in one particular context cannot necessarily be replicated in another. Thus, in the planning of DDR processes, practitioners shall incorporate organized crime consid- erations into integrated assessments, by including an examination of organized crime as well as the local political economy, potential risks, mitigating factors and oppor- tunities for local collaboration. For further information, see IDDRS 3.11 on Integrated Assessments.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "fecb4214-225b-4f92-829e-1ce074b0eea8", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 9, + "Paragraph": "Accountable and transparent DDR processes are undertaken in the context of national and local frameworks that must comply with relevant rights and obligations under international law (see IDDRS 2.11 on The Legal Framework for UN DDR). Both in and out of conflict settings, it is the State that has prosecutorial discretion and identifies which crimes are \u2018serious\u2019. In the absence of most serious crimes under international law, such as crimes against humanity, war crimes and gross violations of human rights, it falls on the State to implement criminal justice measures to tackle individuals\u2019 engagement in organized criminal activities. However, issues arise when the State itself engages in criminal activities or is a party to the conflict (and therefore cannot perform a neutral role in prosecuting members of adversarial groups). For armed groups, DDR processes and other peacebuilding/peacekeeping measures may be perceived as implementing victors\u2019 justice by focusing on engagement in illicit activities that fuel con- flict, rather than seeking to understand why the group was fighting in the first place. DDR practitioners shall be aware of these potential risks to the success of DDR processes and ensure that efforts are as transparent as possible. For further information, see IDDRS 6.20 on DDR and Transitional Justice..", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "69d7a4d6-02f2-4c7b-aca3-00d95002c220", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 9, + "Paragraph": "Nationally and locally owned DDR processes shall have built-in mechanisms to allow for national stakeholders, in- cluding civil society groups and the private sector, to not only be engaged in the imple- mentation of DDR processes but to be involved in planning. Ultimately, internationally supported DDR processes are finite and constricted by mandates and resources. There- fore, both external and national DDR practitioners shall, to the extent possible, work with (other) national stakeholders to build political will and capacities on organized crime issues. DDR practitioners shall establish relevant and appropriate partnerships to make available technical assistance on organized crime issues through expert con- sultations, staff training, and resource guides and toolkits. Armed forces may themselves be discharged as part of DDR processes and, at the same time, may have been actively involved in facilitating or gatekeeping illicit activities. To address the challenges posed by the entrenched interests of conflict en- trepreneurs, improved law enforcement, border controls, police training and criminal justice reform is required. Where appropriate, DDR practitioners shall seek to partner with entities engaged in this type of broader security sector reform (SSR). For further information, see IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8c01799f-014d-426d-81c0-c6aba276f6c4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 9, + "Paragraph": "Regionally supported The regional causes of conflict and the political, social and economic interrelationships among neighbouring States sharing insecure borders will present challenges in the im- plementation of DDR. Organized crime that is transnational in nature can exacerbate these challenges. DDR practitioners shall carefully coordinate with regional organi- zations and other relevant stakeholders when managing issues related to repatriation and the cross-border movement of weapons, armed groups and trafficked persons. The return of foreign former combatants and children formerly associated with armed forces and groups may pose particular challenges and will require separate strategies (see IDDRS 5.40 on Cross-Border Population Movements and IDDRS 5.20 on Children and DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f416a3af-3a92-41a7-9f7a-4580bff27040", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 10, + "Paragraph": "Combatting organized crime in conflict settings Identifying the role of organized crime in armed conflict is integral to effectively addressing the factors that may give rise to conflict, sustain it or pose obstacles to sus- tainable peace. Broader analysis of organized crime in local contexts and the role it plays in local economies and in social and political frameworks can help DDR prac- titioners develop processes that minimize risks, including the risk of a relapse in violence, the risk that former members of armed forces and groups will re-engage in illicit activities, the risk that DDR processes will remove livelihoods, and the risk of impunity. By integrating organized crime considerations throughout DDR processes and in overall peacebuilding efforts, practitioners can provide ex-combatants, persons associated with armed forces and groups, and local communities with holistic recovery assistance that promotes long-term peace and stability. The following sections seek to clarify the relationship between DDR processes, organized crime and armed conflict by looking at the role that criminal activities play in armed conflict, how and why armed forces and groups engage in organized crime, and the implications for DDR planning and implementation.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f34ae68e-5b06-4839-a29f-9eb0156cdaff", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 10, + "Paragraph": "The role of organized crime in conflict Although multi-dimensional and complex, the impact of criminal activities on armed conflict can generally be described as the following:", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "22be8a24-cc64-4e3e-a427-47e01c2d0d70", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 10, + "Paragraph": "Contributing to the outbreak of conflict Organized crime often emerges when resources, governance, and social and economic opportunities are distributed inequitably. Individuals who feel politically and econom- ically marginalized may turn to the illicit or informal economy, and the social gains derived from illicit activities may become increasingly attractive. Likewise, those who are marginalized may become increasingly resentful of formal economies and social and political channels from which they are excluded. This may make engagement in criminal activities and/or armed conflict appear legitimate. At the same time, illicit funds from criminal activities detract from the formal economy and divert potential tax revenues from States that could have used these funds to invest in education, health care and development. This diversion of funds further exacerbates discontent among the population while diminishing governance. The illicit trade in arms and ammuni- tion may also result in the increased circulation of illicit materiel in communities at the same time as discontent is rising.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5636191e-3e73-42fb-9f00-6e4020d36e76", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 11, + "Paragraph": "Sustaining conflict Once armed conflict has erupted, illicit and informal economies are vulnerable to cap- ture by armed groups, which transforms them into both war and criminal economies. Criminal economies can interweave with war economies by providing financial sup- port and weapons and ammunition for armed groups. Violence can serve as a tool, not only to facilitate or control the illicit movement of goods, but also among armed groups that sell violence to provide protection or reinforcement of a flow under extortion schemes.10 While some armed groups may impose their authority over populations within their captured territory through a scheme of violent governance, in other cases (or in parallel), they may bolster their authority through organized crime by acting as (perceived) legitimate economic and political regulators to local communities. For example, illicit revenue gained by armed groups engaged in criminal activ- ities may be used to maintain social services and protect civilians and supporters in marginalized communities against pred- atory groups, particularly where the State is weak, absent or corrupt. In areas where the illicit economy forms the largest or sole source of income for local communi- ties, armed groups can protect local liveli- hoods from State efforts to suppress these illegal activities. Often, marginalized com- munities depend on the informal economy to survive, and even more so in times of armed conflict, when goods and services are scarce. During armed conflict, when armed forces and groups make territorial gains, they may also gain access to informal markets and illicit flows of both licit and illicit com- modities. This access can be used to further their war efforts. In these circumstances, in addition to direct engagement in criminal activities, rent-seeking dynamics emerge between armed groups and local communities and other actors, under the threat of violence or under the premise of protection of locals against other predatory groups. For example, rather than engaging in criminal activities directly, armed groups may extort or tax those using key transport (and consequently trafficking) hubs or demand payment for access to resources and extraction sites.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c447fe76-dbe3-42b6-8911-e5d039b6164d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 11, + "Paragraph": "Undermining peace Criminal economies risk becoming embedded in a State\u2019s economic and social fabric even after an armed conflict and its war economy formally end. Civilian livelihoods may continue to depend on illicit activities previously undertaken during wartime. Corruption patterns established by State actors during wartime may also continue, particularly when the rule of law has been weakened. This may prevent the develop- ment of effective institutions of governance and pose challenges to establishing long- term peace and stability. Even in a post-conflict context, the widespread availability of weapons and am- munition (due to trafficking by armed forces and groups, stockpile mismanagement and weapons retention by former combatants) may undermine the transition to peace. Violence may be used strategically in order to disrupt the distribution of power and resources, particularly in transitioning States where criminal violence has erupted.11 Where communities are supported and protected by armed groups, combatants become legitimized in the eyes of the people. Armed groups that act as protectors of local livelihoods, even if livelihoods are made illegally, may gain more widespread political and social capital than State institutions. Where organized crime becomes embedded, these circumstances can result in a resurgence of conflict. The relationship between organized crime and armed forces and groups As a preliminary consideration, DDR practitioners should first distinguish between organized crime as an entity and organized crime as an activity. Labelling groups as \u2018organized criminal groups\u2019 (entity) has become increasingly irrelevant in conflict set- tings where armed groups (and occasionally armed forces) are engaged in organized crime, often rendering organized criminal groups and armed groups indistinguisha- ble. The progressive blurring of lines between organized criminal groups and armed groups necessitates an understanding of the motivations for engaging in organized crime (as an activity) and armed conflict. This awareness is particularly important for DDR practitioners when determining whom to involve as participants in DDR process- es and when determining the types of measures to implement in order to minimize continued involvement (and/or re-engagement) in illicit activities. Where crime and armed conflict converge, two general motives emerge: economic and social/political. Economic motivations arise in conflict when the State is absent or weak and actors can monopolize a market or carry out a lucrative illicit activity with impunity. Social/political motives can also arise in the absence of the State apparatus, leading actors to take the State\u2019s place through the pursuit of legitimacy or exercise of power through violent governance. While organized criminal groups have largely been described as carrying out their activities for a financial or material benefit, recent evidence indicates that motives exist beyond profits. Similarly, where armed groups have traditionally fought for a political or ideological reason, economic opportunities presented by organized crime may expand their objectives. While these considerations are most frequently applied to armed groups, armed forces may also directly engage in organized crime. For example, poor working con- ditions coupled with low wages may be insufficient for individual members of armed forces to survive, leading some to sell weapons to armed groups and communities for financial gain. More broadly, in some cases, challenges to State strongholds mean that State actors must struggle to maintain their power, joining armed groups in competing for resources and territorial control, and often also engaging in organized crime activ- ities for economic profit.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b67b0d1e-6648-450a-ac3a-b311fcdac629", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 12, + "Paragraph": "The politicization of crime and criminalization of politics When State involvement in criminal activities is indirect, symbiotic relationships can arise with other conflict actors through corruption. Corruption has been widely iden- tified as a major spoiler of peace processes and poses serious risks to the success of DDR processes. Armed groups engaged in organized crime may actively seek political protection and facilitation for their operations, using bribery and the threat of violence and capturing parts of the democratic process to influence progressively higher levels of the State. In some cases, organized crime becomes so pervasive that it \u2018captures\u2019 the State\u2019s public and political spaces. Due to individuals\u2019 positions within the State appa- ratus, illicit activities may flourish with impunity. State officials who are linked to illicit activities that contribute to violence can exert their political influence and power to sway negotiations and settlements to benefit their dealings, at the expense of sustaina- ble peace. While the criminalization of politics can become a residual legacy of conflict, the subversion of the rule of law and mismanagement of public services may lead to conditions that risk the recurrence of conflict.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4f73fac1-cd70-4b1e-892e-64170c54adf7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": null, + "Paragraph": "Relevant frameworks and approaches to combat organized crime during armed conflict In supporting DDR processes, organizations are governed by their respective constit- uent instruments; specific mandates; and applicable internal rules, policies and pro- cedures. DDR is also supported within the context of a broader international legal framework, which contains rights and obligations that must be adhered to in the im- plementation of DDR. As such, the applicable legal frameworks should be considered at every stage of the DDR process, from planning to execution and evaluation, and, in some cases, the legal architecture to counter organized crime may supersede DDR policies and frameworks. Failure to abide by the applicable legal framework may result in consequences for the UN, national institutions, the individual DDR practitioners involved and the success of the DDR process as a whole. Within the context of organized crime and armed conflict, DDR practitioners must consider national as well as international legal frameworks that pertain to organized crime, in both conflict and post-conflict settings, in order to understand how they may apply to combatants and persons associated with armed forces and groups who have engaged in criminal activities. While \u2018organized crime\u2019 itself remains undefined, a number of related international instruments that define concepts and specific mani- festations of organized crime form the legal framework upon which interventions and obligations are based (refer to Annex B for a list of key instruments). A country\u2019s international obligations put forth by these instruments are usually translated into domestic legislation. While domestic legal frameworks on organized crime may differ in the treatment of organized crime across States, by ratifying inter- national instruments, States are required to align their national legislation with inter- national standards. Given that DDR processes are carried out within the jurisdiction of a State, DDR practitioners should be aware of the international instruments that the State in which DDR is taking place has ratified and how these may impact the im- plementation of DDR processes, particularly when determining the eligibility of DDR participants. As a preliminary obligation, DDR practitioners shall respect the national laws of the host State, which in turn must comply with standards set forth by the international legal framework on organized crime, corruption and terrorism as well as international humanitarian and human rights laws. For example, participation in criminal activi- ties by certain former members of armed forces and groups may limit their partici- pation in DDR processes, as outlined in a State\u2019s penal code and criminal procedure codes. Moreover, where crimes (such as forms of human trafficking) committed by ex-combatants and persons formerly associated with armed forces and groups are so egregious as to constitute crimes against humanity, war crimes or gross violations of human rights, their participation in DDR processes must be excluded by international humanitarian law. In cases where armed forces have engaged in criminal activities amounting to the most serious crimes under international law, it is the duty of every State to exercise its criminal jurisdiction over those responsible. DDR practitioners shall not facilitate any violations of international human rights law or international humanitarian law by the host State, including arbitrary depriva- tion of liberty and unlawful confinement, or surveillance/maintaining watchlists of participants. DDR practitioners should be aware of local and international mecha- nisms for achieving justice and account- ability. Moreover, it is a long-established policy that the UN will not endorse pro- visions in a transitional justice process that include amnesties for genocide, war crimes, crimes against humanity and gross violations of human rights (see IDDRS 6.10 on DDR and Security Sector Reform and IDDRS 6.20 on DDR and Transitional Justice). Therefore, if there is a concern regarding the obligation to respect a host State\u2019s law and the activities of the DDR practitioner, the DDR practitioner shall seek legal advice from the competent legal office and human rights office, and DDR processes may need to be adjusted. For further information, see IDDRS 2.11 on The Legal Framework for UN DDR. DDR processes may also be impacted by Security Council sanctions regimes. Targeted sanctions against individuals, groups and entities have been utilized by the UN to address threats to international peace and security, including the threat of organized crime by armed groups. DDR practitioners should be aware of any relevant sanctions regime, particularly arms embargo measures that may restrict the options available during disarmament or transitional weapons and ammunitions management activities, limit eligibility for participation in DDR processes and restrict the provision of financial support to DDR participants. (For more information, refer to IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Manage- ment.) While each sanctions regime is unique, DDR practitioners shall be aware of those applicable to armed groups and seek legal advice about whether listed individu- als or groups can indeed be eligible to participate in DDR processes. For example, the Security Council Committee concerning ISIL (Da\u2019esh), Al-Qaida and associated individuals, groups, undertakings and entities, established pursuant to Resolutions 1267 (1999), 1989 (2011) and 2253 (2015), is the only sanctions committee of the Security Council that lists individuals and groups for their association with ter- rorism. DDR practitioners shall be further aware that donor States may also designate groups as terrorists through \u2018national listings\u2019. DDR practitioners should consult their legal adviser on the implications a terrorist listing may have for the planning or imple- mentation of DDR processes, including whether the group was designated by the UN Security Council, a regional organization, the host State or a State supporting the DDR process, as well as whether the host or a donor State criminalizes the provision of sup- port to terrorists, in line with applicable international counter-terrorism requirements. For an overview of the legal framework related to DDR more generally, see IDDRS 2.11 on The Legal Framework for UN DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "331f00d3-a24f-4427-bef2-f7d27f9d57df", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 15, + "Paragraph": "Implications for DDR The crime-conflict nexus shall be considered by DDR practitioners as they contemplate engagement and ultimately determine whether DDR is an appropriate response or whether law enforcement interventions and/or criminal justice mechanisms are better suited to the context. In order to develop successful DDR processes, DDR practitioners should assess whether participants\u2019 involvement in criminal economies came about as a function of war or as part of broader economic or social dynamics. During DDR processes, incen- tives for combatants to disarm and demobilize may be insufficient if they control ac- cess to lucrative resources and have well-established informal taxation regimes that de- pend upon the continued threat or use of violence.12 Regardless of whether conflict is ongoing or has ended, if these economic motives are not addressed, the risk that former members of armed forces and groups will re-engage in criminal activities increases. Likewise, DDR processes that do not consider social and political motives risk fail- ure. Participation in DDR processes may decrease if members of armed forces and groups feel that they will lose social and political status in their communities by disarming and demobilizing, or if they fear retaliation against themselves and their families for abandoning armed forc- es and groups who engage in criminal activities. Similarly, communities them- selves may be reluctant to accept and trust DDR processes if they feel that such efforts mean losing protection and stability. In such cases, public information can play an important role in supporting DDR process- es, by helping to raise awareness of what the DDR process involves and the opportuni- ties available to leave behind illicit economies. For further information, see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR. Moreover, the type of illicit economy can influence local perspectives. For exam- ple, labour-intensive illicit economies, such as the cultivation of drug crops or artisanal mining of natural resources including metals and minerals, but also logging and fishing, can easily employ hundreds of thousands to millions of people in a particular locale.13 In these instances, DDR processes that work to remove involvement in what can be \u2018positive\u2019 illicit activities may be unsuccessful if no alternative economic opportunities are offered, and a better route may be to support the formalization and regulation of the relevant sectors. Additionally, the interaction between organized crime and armed conflict is a fundamentally gendered phenomenon, affecting men and women differently in both conflict and post-conflict settings. Although notions of masculinity may be more fre- quently associated with engagement in organized crime, and males (adults, youth and boys) may more obviously take part in the conflict and make up the largest number of combatants, females who engage in criminal activities and conflict (both in combat and non-combat roles) can face discrimination on the basis of gender from both ex-combat- ants and communities. Moreover, women are more frequently victims of certain forms of organized crime, particularly human trafficking for sexual exploitation, and can be stigmatized or shamed due to the sexual exploitation they have experienced.14 They may be rejected by their families and communities upon their return, leaving them with few opportunities for social and economic support. At the same time, men and boys who are trafficked, either through sexual ex- ploitation or otherwise, may face a different set of challenges based on perceived emas- culation. In addition to economic difficulties, they may face stigma in communities who may not view them as victims at all. DDR processes should therefore follow an intersectional and gender-based ap- proach in providing social, economic and psychological services to former members of armed forces and groups. For example, providing reintegration opportunities specific to female or male DDR participants and beneficiaries that promote equality, independence and a sense of ownership over their futures can have a significant im- pact on social, psychological and economic well-being. Finally, given that DDR processes are guided by national and local policies, DDR practitioners should bear in mind the role that crime can play in the politics of the countries in which they operate. Even if ex-combatants lay down their arms, they may retain their links to organized crime. In some cases, participation in DDR may be pred- icated on the condition that ex-combatants engaged in criminal activities are offered positions in the political sphere. This condition risks embedding criminality in the State apparatus. Moreover, for certain types of organized crime, amnesties cannot be granted, as serious human rights violations may have taken place, as in the case of hu- man trafficking. DDR processes must form part of a wider response to strengthening institutions, building resilience towards corruption, strengthening the rule of law, and fostering good governance, which can, in turn, prevent the conditions that may con- tribute to the recurrence of conflict.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "0ea36439-7170-488f-8f2a-b7db31f1d3e9", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 17, + "Paragraph": "DDR and organized crime: planning considerations DDR processes shall form part of overall efforts to achieve peace, considering organ- ized crime as an element of the conflict, through a political prism rather than solely an economic one. Illicit economies should be carefully tackled to avoid unintentionally stigmatizing combatants, persons associated with armed forces and groups, and other DDR participants and beneficiaries. Political dynamics and balances of power should also be kept in mind. Given the complexities of organized crime and conflict, there are very few good practices in peace time, let alone during ongoing conflict. Nevertheless, the basis of any DDR processes should centre on a robust analysis of the local context and thorough information gathering on the dynamics of criminality and conflict. The following section provides guidance on integrating organized crime consid- erations into DDR planning, including in assessments such as conflict, security and political economy analysis.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "50894c7a-fd53-4c5c-9bf3-3354df8e80d0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 17, + "Paragraph": "Assessments and design Crime in conflict and post-conflict settings means that DDR must be planned with three major overlapping factors in mind: Actors: When organized crime and conflict converge, several actors may be in- volved, including combatants and criminal groups as well as State actors, each fuelled by particular and often overlapping motives and engagement in similar activities. Moreover, the blurring of motivations, whether they be political, social or economic, means that membership across these groups may be fluid. In this con- text, the success and sustainability of DDR rests not in treating armed groups as monolithic entities separate from State armed forces, but rather in making allianc- es with those who benefit from adopting rule-of-law procedures. The labelling of what is legal and illegal, or legitimate and illegitimate, is done by State actors and, as this is a normative decision, the definition privileges the State. Particularly in conflict settings in which State governance is weak, corrupt or contested, the bina- ry choice of good versus bad is arbitrary and often does not reflect the views of the population. In labelling actors as organized criminal groups, potential partners in peace processes may be discouraged from engaging and become spoilers instead. In DDR planning, the economic, social and political motives that persuade individuals to partake in organized criminal activities should be identified and un- derstood. DDR practitioners should also recognize how organized crime and conflict affect particular groups of actors, such as women and children, differently. Criminal activities: The type of criminal activity in a given conflict setting may have implications for the planning of DDR processes. While organized crime encompasses a wide range of activities, certain criminal markets frequent- ly arise in conflict settings, including the illegal exploitation of natural resourc- es, weapons and ammunition trafficking, drug trafficking and the trafficking of human beings. Recent conflicts also show conflict actors profiting from pro- tection and extortion payments, as well as kidnapping for ransom and other exploitation-based crimes. Not all organized crimes are similar in nature. For example, while some organized crimes are guided by personal greed and profit, others receive local legitimacy because they address the needs of the local com- munity amid an infrastructural and political collapse. For instance, the traf- ficking of licit goods, such as subsidized food products, can form an integral part of economic and livelihoods strategies. In this context, rather than being seen as criminal conduct, the activities of organized criminal networks may be viewed as a way to build parallel informal economies and greater resilience.15 A number of factors relating to any given criminal economy should be consid- ered when planning a DDR process, including the pervasiveness of the crimi- nal economy; whether it evolved before, during or after the conflict; how violence links criminal activities to armed conflict; whether criminal activities carried out reach the threshold of the most serious crimes under international law; linkages between organized crime and terrorists and/or terrorist groups; and the labour intensiveness of criminal activities. Context: How the local context serves as both a driver and spoiler of peacebuilding efforts is central to the planning of DDR processes, particularly reintegration. Social factors, including local culture, the perceived legitimacy of criminal activities and individual combatants, and general notions of support or hostil- ity towards DDR itself, shape the way that DDR should be approached. More- over, understanding the broader economic and/or political environment in which armed conflict begins and ends allows DDR practitioners to identify en- try points, potential obstacles and pro- jections for sustainability. Although DDR processes deal with members of armed forces and groups rather than criminals, it is important to understand how local circumstances beyond the war context can affect reintegration, and the role that reintegration can play in preventing former combatants and persons formerly associated with armed groups from falling into organized crime. This includes assessing the State\u2019s role in either contributing to or deterring engagement in illicit activities, and the abilities of criminal groups to infiltrate conflict settings by appealing to former combatants. UN peace operations may inadvertently contribute to criminal flows because of misguided interventions or as an indirect consequence of their presence. Inter- ventions should be guided by the \u2018do no harm\u2019 principle, and DDR practition- ers should support the formulation of context-specific DDR processes based on a sound analysis of local factors, vulnerabilities and risks, rather than by replicat- ing past experiences. A political analysis of the local context should consider the non-exhaustive list of elements listed in table 1 and, to the extent possible, identify gender dimensions where applicable.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5a2ce9c4-e16a-4f89-9aa4-d0521abd3aaa", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 20, + "Paragraph": "Risk management and implementation In the planning, design, implementation and monitoring of DDR processes in organ- ized crime contexts, practitioners shall undertake a comprehensive risk management scheme. The following list of organized crime\u2013related risks is intended to assist DDR practitioners to assess and manage vulnerabilities in such contexts in order to prevent negative consequences. Programmatic risk: In contexts of ongoing conflict, organized crime activities can be used to further both economic and power-seeking gains. The risk that ex-com- batants will be re-recruited or (continue to) engage in criminal activity is higher when conflict is ongoing, protracted or financed through organized crime. In the absence of a formal peace agreement, DDR participants may be more reluctant to give up the perceived opportunities that illicit activities offer, particularly when reintegration opportunities are limited, formal and informal economies overlap, and unresolved grievances persist. \u2018Do no harm\u2019 risk: Because DDR processes not only present the risk of reinforcing illicit activities and flows, but may also be vulnerable to corruption and capture, DDR practitioners shall ensure that processes are implemented in a manner that avoids inadvertently contributing to illicit flows and/or retaliation by armed forc- es and groups that engage in criminal activities. This includes the careful selec- tion of partnering institutions and groups to implement DDR processes. Within an organized crime\u2013conflict context, DDR processes may also present the risk of reinforcing extortion schemes through the payment of cash/stipends to DDR participants as part of reinsertion assistance. Practitioners should consider the dis- tribution of payments through the issuance of pre-paid cards, vouchers or digital transfers where possible, to reduce the risk that participants will be extorted by those engaged in criminal activities, including armed forces and groups. Security risk: The possibility of armed groups directly targeting staff/programmes they may perceive as hostile is high in ongoing conflict contexts, particularly if DDR processes are perceived to be associated with the removal of livelihoods and social status. Conversely, DDR practitioners who are perceived to be supporting individuals (formerly) associated with criminal activities, particularly those who engaged in violence against local populations, can also be at risk of reprisals by certain communities or national actors. It is also important that potential risks to communities and civil society groups that may arise as a consequence of their engagement with DDR processes be properly assessed, managed and mitigated. Reputational risk: DDR practitioners should be aware of the risk of being seen as promoting impunity or being lenient towards individuals who may have engaged in schemes of violent governance against communities. DDR practitioners should also be aware of the risk that they may be seen as being complicit in abusive State policies and/or behaviour, particularly if armed forces are known to engage in organized criminal activities and pervasive corruption. Due diligence and appro- priate frameworks, safeguards and mechanisms shall be applied to continuously address these complex issues. Legal risks: DDR practitioners who rely on Government donors may face addi- tional challenges if these Governments insert conditions or clauses into their grant agreements in order to comply with Security Council resolutions. As stated in IDDRS 2.11 on The Legal Framework for UN DDR, DDR practitioners should con- sult with their legal adviser if applicable host State national legislation criminalizes the provision of support, including to suspected terrorists or armed groups des- ignated as terrorist organizations. For more information on legal issues and risks, see section 5.3 of this module.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5941f3a4-96b5-4302-abe8-c672b1bfcc8b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 21, + "Paragraph": "Opportunities for joint approaches in combatting organized crime Planning for DDR processes should be undertaken with a diverse range of partners. By coordinating with Government institutions, the criminal justice sector, academia, civil society and the private sector, DDR can provide ex-combatants and persons formerly associated with armed forces and groups with a wide range of viable alternatives to criminal activities and violence. While the nature of partnerships in DDR processes may vary, local actors possess in- depth knowledge of the local context. This knowledge should serve as an entry point for joint approaches, particularly in the mapping of actors and local conditions. DDR practi- tioners can also draw on the research skills of academia and crime observatories to build evidence-based DDR processes. Additionally, cooperation with the criminal justice sector can provide a basis for the sharing of criminal intelligence and expertise to inform DDR processes, as well as capacity-building to assist in the integration of former combatants. DDR practitioners should recognize that not only local authorities, but also civil society actors and the private sector, may be the frontline responders who lay the foundation for peace and development and ensure its long-term sustainability. Innovative financing sources and partner- ships should be sought. Local partnerships contribute to the collective ownership of DDR processes. DDR practitioners should therefore be exposed to national and local development actors, strategies and priorities. Beyond engagement with local actors, when conflict and organized crime have a transnational element, DDR practitioners should seek to build partnerships regionally to coordinate the repatriation and sustainable reintegration of ex-combatants and per- sons associated with armed forces and groups. Armed forces and groups may engage in criminal activities that span borders in terms of perpetrators, victims, violence, sup- ply chains and commodities, including arms and ammunition. When armed conflicts affect more than one country, DDR practitioners should engage regional bodies to ad- dress issues related to armed groups operating on foreign territory and to coordinate the repatriation of victims of trafficking. Moreover, even when an armed conflict re- mains in one country, DDR practitioners should be aware that criminal links may tran- scend borders and should avoid inadvertently reinforcing illicit cross-border flows. For further information, see IDDRS 5.40 on Cross-Border Population Movements.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2172d372-5be0-4daa-a1fe-b7a03da0b5f0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 22, + "Paragraph": "DDR prioritization in organized crime\u2013conflict settings Based on a local mapping of the conflict and its ties to criminal activities, DDR prac- titioners should set out their primary objectives, taking into account risk factors while managing expectations. It may be useful to outline priorities sequentially, in terms of short-, medium-, and long-term goals, followed by how to achieve them and a baseline of areas for bargaining and concessions. For example, recognizing that some criminal mar- ket types are beneficial to local communities in terms of employment, DDR practitioners may negotiate with ex-combatants to continue their involvement in informal economies temporarily, rather than providing training for employment opportunities that do not yet exist. When setting out these objectives, DDR practitioners should be thorough and organized but flexible enough to adapt to changes in the conflict landscape.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "852801b6-747b-42bc-a7b5-1708252542da", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 22, + "Paragraph": "7.1 Disarmament The trafficking of arms and ammunition supports the capacity of armed groups to engage in conflict settings. Disarmament as part of a DDR programme is essential to developing and maintaining a secure environment in which demobilization and rein- tegration can take place and can play an important role in crime prevention (see IDDRS 4.10 on Disarmament). Moreover, in many cases, Government stockpiles can be a key source of illicit weapons and ammunition, underlining the need to support the devel- opment of national weapons and ammunition management capacity. While arms traf- ficking in and of itself is a direct factor in the duration and escalation of violence, the possession of weapons also secures the ability to maintain or expand other criminal econ- omies, including human trafficking, environmental crimes and the illicit drug trade. Where criminal activities and economic predation are entrenched, armed groups can secure income through the pillaging of lucrative natural resources, movement of other goods or civilian predation. Under these circumstances, the possession of weapons and ammunition is not merely a function of ongoing insecurity but is also an economic asset and means of control. Weapons are needed to maintain protection economies that centre around governance and violence, thereby creating enormous disincentives for armed groups to disarm. Even after formal peace negotiations, post-conflict areas may remain saturated with weapons and ammunition. Their widespread availability and misuse can lead to increased crime and renewed violence, while undermining peacebuilding efforts. Furthermore, if illicit trafficking of weapons and ammunition is combined with the failure of the State to provide security to its citizens, locals may be motivated to acquire weapons for self-protection. In addition to the considerations laid out in IDDRS 4.10 on Disarmament, DDR practitioners should consider the following key factors when developing disarmament operations as part of DDR programmes in contexts of organized crime: Transparency mechanisms: Specifically, the collection and destruction of weapons, ammunition and explosives should have accounting and monitoring measures in place to prevent diversion. This includes recordkeeping of weapons, ammunition and explosives collected during the disarmament phase of a DDR programme. Transparency in the disposal of weapons and ammunition collected from for- mer conflict parties is key to building trust in the DDR programme. Destruction should not take place if there is a risk that judicial evidence may be lost as a re- sult of the disposal, and especially where there is a risk of linkages to organized crime activities. Recordkeeping and tracing of weapons should be mandatory, and of ammunition where feasible. The use of digital technology should be deployed during recordkeeping, where possible, to allow for weapons tracing from the time of retrieval and throughout the management chain, enhancing accountability. For further information, see IDDRS 4.10 on Disarmament. Link to wider SSR and arms control: Law enforcement agencies in conflict-af- fected countries often lack the capacity to investigate and prosecute weapons trafficking offenders and to collect and secure illegal weapons and ammunition. DDR practitioners should therefore align their efforts with broader arms control initiatives to ensure that weapons and ammunition management capacity deficits do not further contribute to illicit flows and the perpetration of armed violence. Understanding arms trafficking dynamics, achieved by ensuring collected weap- ons are marked and thus traceable, is critical to countering illicit arms flows. In the absence of this understanding, illicit flows may continue to provide arms to conflict parties and may continue to provide traffickers with incentives to fuel armed conflicts in order to create or expand their illicit arms market. For further information, see IDDRS 4.11 on Transitional Weapons and Ammunition Manage- ment and IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "51edf99c-6dee-484d-a544-46ba31277046", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 24, + "Paragraph": "Demobilization In crime-conflict contexts, demobilization as part of a DDR programme presents a number of challenges. While the formal and controlled discharge of active combatants may be clear cut, persuading them to relinquish their ties to organized criminal ac- tivities may be harder. This is also true for persons associated with armed forces and groups. Given the clandestine nature of organized crime, establishing whether DDR programme participants continue to engage in organized crime may be difficult. Continued engagement in organized criminal activities can serve not only to further war efforts, but may also offer former members of armed forces and groups a stable livelihood that they otherwise would not have. In some cases, the economic oppor- tunities and rewards available through violent predation and/or patronage networks might exceed those expected through the DDR programme. Therefore, it is important that the short-term reinsertion support on offer is linked to long-term prospects for a sustainable livelihood and is sufficient to fight the perceived short-term \u2018benefits\u2019 from engagement in illicit activities. For further information, see IDDRS 4.20 on Demobili- zation. Moreover, if DDR programme participants are not swiftly integrated into the legal workforce, the probability of their falling prey to organized criminal groups or finding livelihoods in illicit economies is high. Even if members of armed forces and groups demobilize, they continue to be at risk for recruitment by criminal groups due to the expertise they have gained during war. These circumstances mean that DDR practitioners should compare what DDR programmes and criminal groups offer. For example, beyond economic incentives, male combatants often perceive a loss of masculinity, while female ex-combatants struggle with losing some degree of gender equality, respect and security compared to wartime. When demobilizing, feelings of comradeship and belonging can erode, and joining criminal groups may serve as a replacement if DDR programmes do not fill this gap. On the other hand, involvement in illicit activities may pose a risk to the personal safety and well-being of former members of armed forces and groups and their fami- lies. Individuals may remain \u2018loyal\u2019 to criminal groups for fear of retaliation. As such, it is important for DDR practitioners to ensure the safety of DDR programme partici- pants. Similarly, where aims are political and actors have built legitimacy in local com- munities, demobilization may be perceived as accepting a loss of status or defeat. DDR programme participants may continue to engage in criminal activities post-conflict in order to maintain the provision of goods and services to local communities, thereby retaining loyalty and respect.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5f013274-bc39-44a3-8ca4-1bdc75c4c3c7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 16, + "Paragraph": "Reintegration Reintegration support should be based on an assessment of the economic, social, psy- chosocial and political challenges faced by ex-combatants and persons formerly asso- ciated with armed forces and groups, their families and communities. In addition to the guidance outlined in IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration, DDR practitioners should also consider the factors that sustain organized criminal networks and activities when planning reintegration support. In communities where engagement in illicit economies is widespread and nor- malized, certain criminal activities may have no social stigma attached to them. DDR practitioners or may even bring power and prestige. Ex-combatants \u2013 especially those who were previously in high-ranking positions \u2013 often share the same level of status as successful criminals, posing challenges to their long-lasting reintegration into law- ful society. DDR practitioners should therefore consider the impact of involvement of ex-combatants\u2019 involvement in organized crime on the design of reintegration sup- port programmes, taking into account the roles they played in illicit activities and crime-conflict dynamics in the society at large. DDR practitioners should examine the types and characteristics of criminal activities. While organized crime can encompass a range of activities, the distinction between violent and non-violent criminal enterprises, or non-labour intensive and labour-intensive criminal economies may help DDR practitioners to prioritize certain reintegration strategies. For example, some criminal market activities may be consid- ered vital to the local economy of communities, particularly when employing most of the local workforce. Economic reintegration can be a challenging process because there may be few available jobs in the formal sector. It becomes imperative that reintegration support not only enable former members of armed forces and groups to earn a living, but that the livelihood is enough to disincentivize the return to illicit activities. In other cas- es, laissez-faire policies towards labour-intensive criminal economies, such as the ex- ploitation of natural resources, may open windows of opportunity, regardless of their legality, and could be accompanied by a process to formalize and regulate informal and artisanal sectors. Partnerships with multiple stakeholders, including civil society and the private sector, may be useful in devising holistic reintegration assessments and programmatic responses. The box below outlines key questions that DDR practitioners should consider when supporting reintegration in conflict-crime contexts. For further information on reintegration support, and specific guidance on environment crime, drug and human trafficking, see section 9.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "096fff50-b904-40e1-a90a-5bffd8d846d4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 26, + "Paragraph": "DDR-related tools and organized crime Organized crime often exacerbates and may prolong armed conflict. When the precon- ditions are not present to support a DDR programme, a number of DDR-related tools may be used in crime-conflict contexts. Alternatively, DDR-related tools may also be used before, during and after DDR programmes as complementary measures (see ID- DRS 2.10 on The UN Approach to DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "80351792-1919-4356-9bdd-aa04413c7876", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 26, + "Paragraph": "DDR support to mediation When DDR practitioners provide support to mediation teams, they can help to ensure that the provisions included within peace agreements are realistic and implementable (see IDDRS 2.20 on The Politics of DDR). In organized crime contexts, DDR practitioners should seek to provide mediators with a contextual analysis of combatants\u2019 motives for engaging in illicit activities. They should also be aware that engaging with armed groups may confer legitimacy that impacts upon the local political economy. DDR prac- titioners should advise mediators to be wary of entrenching criminal interests in the peace agreement. Where feasible, DDR practitioners may advise mediators to address organized crime activities within the peace agreement, either directly or by putting in place an institutional framework to deal with these issues at a later date. Lessons learned from gang truces can be instructive and should be considered before entering a mediation process with actors involved in criminal activities.16", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "026d81f2-d8ff-4c2f-92df-15962a92fc4a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 27, + "Paragraph": "Transitional weapons and ammunition management The trafficking of weapons and ammunition facilitates not only conflict but other criminal activities as well, including the trafficking of persons and drugs. Transitional weapons and ammunition management (WAM) may be a suitable approach to control or limit the circulation of weapons, ammunition and explosives to reduce violence and engagement in illicit activities. Transitional WAM can contribute to preventing the out- break, escalation, continuation and recurrence of conflict by preventing the diversion of weapons, ammunition and explosives to unauthorized end users, including both communities and armed groups engaged in illicit activities. For more information, re- fer to IDDRS 4.11 on Transitional Weapons and Ammunition Management.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f8c4dfa-4257-4baf-a5fa-64587b65b770", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 27, + "Paragraph": "Community violence reduction In an organized crime\u2013conflict context, community violence reduction (CVR) can help foster social cohesion and provide ex-combatants, persons formerly associated with armed forces and groups, and other at-risk individuals with economic and social alter- natives to joining armed groups and engaging in criminal activities. Community-based initiatives, such as vocational training and short-term employment opportunities, not only reduce the risk that ex-combatants will return to conflict but also that they will continue participating in illicit activities as a means to survive. CVR can also serve as a complementary measure to other DDR processes. For ex- ample, as part of transitional WAM, communities prone to violence can be encouraged to build community storage facilities or hand over a certain quantity of weapons and ammunition as a precondition for benefiting from a CVR programme. Such measures not only disrupt illicit weapons flows but encourage collective and active participation in the security of communities. Additionally, CVR efforts such as mental health and psychosocial support and empowerment initiatives for specific needs groups, including women, children and persons with drug addictions, can both prevent and reduce victimization from con- flict-related criminal activities, including sexual exploitation and drug trafficking. For further information, see IDDRS 2.30 on Community Violence Reduction.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "48fa6998-4b0b-423e-b58e-9d114cd5cc0c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 27, + "Paragraph": "Transitional security arrangements Although they may vary depending on the context, transitional security arrangements can support DDR processes by establishing security structures either jointly between State forces, armed groups, and communities or with a third party (see IDDRS 2.20 on The Politics of DDR). Members of armed groups may be reluctant to participate in the DDR process for fear that they may lose their capacity to defend themselves against those who continue to engage in conflict and illicit activities. Through joint efforts, transitional security arrangements can be vital for building trust and confidence and encourage collective ownership of the steps towards peace. DDR practitioners should be aware that engagement in illicit activities can complicate efforts to create transition- al security arrangements, particularly if certain members of armed forces and groups are required to redeploy away from areas that are rich in natural resources. In this scenario, it may be appropriate for DDR practitioners to advise mediating teams that provisions regarding the governance of natural resources be included in the peace agreement (also see IDDRS 6.10 on DDR and Security Sector Reform).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9b69f23-360f-499f-85b9-c12e62387994", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 28, + "Paragraph": "Reintegration support and organized crime Reintegration support may be provided at all stages of conflict, even when there is no peace agreement and no DDR programme. The risk of the re-recruitment of ex-combatants and persons formerly associated with armed forces and groups or their engagement in criminal activity is higher where conflict is ongoing, protracted or financed through organized crime. DDR practitioners should seek to identify positive entry points for supporting reintegration. In contexts of ongoing conflict and organized crime, these entry points may include geographical areas where reintegration is most likely to succeed, such as pock- ets of peace not affected by military operations or other types of armed violence. These pilot areas could serve as models of reintegration support for other areas to follow. Additional entry points may include armed groups whose members have shown a will- ingness to leave or are assessed as more likely to reintegrate, or specific reintegration interventions involving local economies and partners that will function as pull factors. The guidance on supporting reintegration within DDR programmes provided in section 7.3 is also applicable to planning reintegration support in contexts of ongoing conflict. For further information on reintegration more generally, see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration. The sub-sections below offer guidance on reintegration support in relation to com- mon forms of organized criminal activity in conflict and post-conflict settings: envi- ronmental crime, drug and human trafficking.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dd794b91-7566-4c88-8f0c-a7558265b282", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 28, + "Paragraph": "Reintegration support and environmental crime Natural resources have an enormous impact on armed conflict, and they can be used to either support or undermine efforts towards peace. Members of armed forces and groups frequently engage in environmental crime as a low-risk, high-profit source of revenue to fund recruitment or the purchase of weapons, or even to exert de facto con- trol over geographic territories. Environmental crime encompasses a range of different activities in which natural resources are illegally exploited and often trafficked or sold into global supply chains. It can have heavy consequences on communities, including direct environmental degradation, such as the contamination of water or soils, or the destruction of agricultural crops; indirect environmental degradation, such as the loss of biodiversity and other ecosystem services; and/or direct displacement and exposure to violence. At the same time, natural resources hold tremendous potential to support peace and development. In many parts of the world, elements of the natural environment are culturally significant and represent key components of social status and identity. Engaging former members of armed forces and groups in the management of natu- ral resources, including in decision-making, direct environmental rehabilitation and/ or community-based natural resource management, helps to consolidate their status as civil citizens, thus reinforcing their political and social reintegration. Additionally, linking reintegration with well-managed natural resources can increase the range of options for economic reintegration support. Given the increase in environmental crime as a transnational organized crime activity and its role in war economies, understand- ing the links between natural resources, crime and reintegration is key.17 For further information, see IDDRS 6.30 on DDR and Natural Resources. The reintegration of individuals who were previously engaged in environmen- tal organized crime should aim to create sustainable alternatives in the same natural resources sector (to the extent possible, barring illegal trade in endangered species), keeping in mind the principle of \u2018do no harm\u2019. Reintegration in natural resource sectors should be consistent with national laws and legal frameworks and promote environ- mental protection and restoration of the rule of law.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a2a67b94-c67c-4c78-b150-7f139259e192", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 29, + "Paragraph": "Reintegration support and drug trafficking The drug trade has an important impact on conflict-affected societies. It weakens State authority and drives legitimacy away from legal institutions, diverts funds from the formal economy, creates economic dependence, and causes widespread violence and insecurity. The drug trade also impacts communities, with serious consequences for people\u2019s general well-being and health. High rates of addiction and HIV/AIDS preva- lence have been found in societies where narcotics are cultivated and produced. DDR practitioners implementing reintegration programmes may respond to illicit crop cultivation through support to crop substitution, integrated rural development and/or alternative livelihoods. However, DDR practitioners should consider the risks and opportunities associated with these approaches, including the security require- ments and socioeconomic impacts of removing illicit cultivation. Crop substitution is a valid but lengthy measure that may deprive small-scale farmers of an immediate and valuable source of income. It may also make them vulnerable to threats and violence from the criminal networks that control illicit cultivation and trade. It may be possi- ble to encourage the private sector to purchase substituted crops cultivated by former members of armed forces and groups. This will help to ensure the sustainability of crop substitution, by providing income and investment in exchange for locally pro- duced raw material. This can in turn decrease costs and increase product quality. Crop substitution, integrated rural development and alternative livelihoods should fit into broader macroeconomic and rural reform. These measures should be accompa- nied by a law enforcement strategy to guarantee protection and justice to participants in the reintegration programme. DDR practitioners should also consider rehabilitation and health-care assistance to tackle high levels of substance addiction and drug-related illness. Since the funding for reintegration support is often timebound, it is important for DDR practitioners to establish partnerships and coordination mechanisms with rel- evant local organizations in a range of sectors, including civil society, health care and the private sector. These entities can work to address the social and medical issues of former members of armed forces and groups, as well as community members, who have been engaged in or affected by the illicit drug trade.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05a71a1d-f7cc-486c-a9fd-ddd474543d73", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 31, + "Paragraph": "Reintegration support and human trafficking Armed conflict amplifies the conditions in which human trafficking occurs. During a conflict, the vulnerability of the affected population increases, due to economic des- peration, weak rule of law and unavailability of social services, forcing people to flee for safety. Human trafficking targets the most vulnerable segments of the popula- tion. Armed groups \u2018recruit\u2019 their victims in refugee and internally displaced persons camps, as well as among populations affected by the conflict, attracting them with false promises of employment, education or safety. Many trafficked people end up being exploited abroad, but others remain inside the country\u2019s borders filling armed groups, providing forced labour, and becoming \u2018war wives\u2019 and sex slaves. Human trafficking often has a strong transnational component, which, in turn, may affect reintegration efforts. Armed groups and organized criminal groups engage in human trafficking by collaborating with networks active in other countries. Conflict areas can be source, transit or destination countries. Reintegration pro- grammes should exercise extreme caution in sustaining activities that may conceal trafficking links or may be used to launder the proceeds of trafficking. Continuous assessment is key to recognizing and evaluating the risk of human trafficking. DDR practitioners should engage with a wide range of actors in neighbour- ing countries and regionally to coordinate the repatriation and reintegration of victims of human trafficking, where appropriate. Children are often victims of organized crime, including child trafficking and the worst forms of child labour, being frequent victims of sexual exploitation, forced marriage, forced labour and recruitment into armed forces or groups. Reintegration practitioners should be aware that children who present as dependants may be vic- tims of trafficking. Reintegration efforts specifically targeting children, as survivors of cross-border human trafficking, including forcible recruitment, forced labour and sexual exploitation by armed forces and groups, require working closely with local, national and regional child protection agencies and programmes to ensure their spe- cific needs are met and that they are supported in their reintegration beyond the end of DDR. Family tracing and reunification (if in the best interests of the child) should be started at the earliest possible stage and can be carried out at the same time as other activities. Children who have been trafficked should be considered and treated as victims, in- cluding those who may have committed crimes during the period of their exploitation. Any criminal action taken against them should be handled according to child-friend- ly juvenile justice procedures, consistent with international law and norms regarding children in contact with the law, including the Beijing Rules and Havana Principles, among others. Consistent with the UN Convention on the Rights of the Child, the best interests of the child shall be a primary consideration in all decisions pertaining to a child. For further information, see IDDRS 5.30 on Children and DDR. Women are more likely to become victims of organized crime than men, being subjected to sex exploitation and trade, rape, abuse and murder. The prevailing sub- cultures of hegemonic masculinity and machismo become detrimental to women in conflict situations where there is a lack of instituted rule of law and security measures. In these situations, since the criminal justice system is rendered ineffective, organized crimes directed against women go unpunished. DDR practitioners, as part of reintegra- tion programming, should develop targeted measures to address the organized crime subculture and correlated machismo. For further information, see IDDRS 5.10 on Women, Gender and DDR. Box 3 outlines key questions that DDR practitioners should consider when sup- porting reintegration in conflict-crime contexts, irrespective of involvement in environ- mental crimes and drug and human trafficking.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "86dd9a70-3e27-4731-91e1-c454cda2a034", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 32, + "Paragraph": "DDR, transitional justice and organized crime In an organized crime\u2013conflict context, States may decide to adjust the range of crim- inal acts that preclude members of armed forces and groups from participation in DDR programmes, DDR-related tools and reintegration support. For example, human trafficking encompasses a wide range of forms, from the recruitment of children into armed forces and groups, to forced labour and sexual exploitation. In certain instances, engagement in these crimes may rise to the level of war crimes, crimes against human- ity, genocide and/or gross violations of human rights. Therefore, if DDR participants are found to have committed these crimes, they shall immediately be removed from participation. Similarly, the degree of engagement in criminal activities is not the only consid- eration, and States may also consider who commits specific acts. For example, should a foot soldier who is involved in the sexual exploitation of individuals from specific groups in their controlled territory or who marries a child bride be held accountable to the same degree as a commander who issues orders that the foot soldier do so? Just as international humanitarian law declares that compliance with a superior order does not constitute a defence, but a mitigating factor, DDR practitioners may also advise States as to whether different approaches are needed for different ranks. DDR practitioners inevitably operate within a State-based framework and must therefore abide by the determinations set by the State, identified as the legitimate au- thority. Both in and out of conflict settings, it is the State that has prosecutorial discre- tion and identifies which crimes are \u2018serious\u2019 as defined under the United Nations Con- vention against Transnational Organized Crime. In the absence of genocide, crimes against humanity, war crimes or serious human rights violations, it falls on the State to implement criminal justice measures to tackle individuals\u2019 and groups\u2019 engagement in organized criminal activities. However, issues arise when the State itself is a party to the conflict and either weaponizes organized crime in order to prosecute members of adversarial groups or engages in criminal activities itself. Although illicit economies are a major source of fi- nancing for armed groups, in many cases they could not be in place without the as- sistance of the State. Corruption is an im- portant issue that needs to be addressed as much as organized crime. Political ac- tors may be involved with criminal economies at various levels, particularly locally. In addition, the State apparatus may pay lip service to fighting organize crime while at the same time participating in the illegal economy. DDR practitioners should assess the state of corruption in the country in which they are operating. Additionally, reintegration programmes should be conceptualized in close interaction with related anti-corruption and transitional justice efforts focused on \u2018institutional reform\u2019. Transitional justice initiatives contribute to institutional re- form efforts in a variety of ways. Prosecutions of leaders for war crimes or violations of international human rights and humanitarian law criminalize this kind of behaviour, demonstrate that no one is above the law, and may act as a deterrent and contribute to the prevention of future abuse. Truth commissions and other truth-seeking endeav- ours can provide critical analysis of the roots of conflict, identifying individuals and institutions responsible for abuse. Truth commissions can also provide critical infor- mation about the patterns of violence and violations, so that institutional reform can target or prioritize efforts in particular areas. A successful prosecutorial strategy in a transitional justice context requires a clear, transparent and publicized criminal policy indicating what kind of cases will be prose- cuted and what kind of cases will be dealt with in an alternative manner. Most important- ly, prosecutions can foster trust in the reintegration process and enhance the prospects for trust building between former members of armed forces and groups and other citizens by providing communities with some assurance that those they are asked to admit back into their midst do not include the perpetrators of serious crimes under international law. Moreover, while it theoretically falls on the State to implement criminal justice measures, in reality, the State apparatus may be too weak to administer justice fairly, if at all. In order to build confidence and ensure legitimacy, DDR processes must estab- lish transparent mechanisms for independent monitoring, oversight and evaluation, and their financing mechanisms, so as to avoid inadvertently contributing to criminal activities and undermining the overall objective of sustainable peace. Transitional jus- tice and human rights components should be incorporated into DDR processes from the outset. For further information, see IDDRS 6.20 on DDR and Transitional Justice and IDDRS 2.11 on the Legal Framework for UN DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "b6387a17-d045-4e76-8621-5a1855d6310c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 34, + "Paragraph": "DDR, security sector reform and organized crime As State actors can be implicated in organized criminal activities in conflict and post-conflict settings, including past and ongoing violations of human rights and inter- national humanitarian law, there may be a need to reform security sector institutions. As IDDRS 6.10 on DDR and Security Sector Reform states, SSR aims to enhance \u201ceffec- tive and accountable security for the State and its people without discrimination and with full respect for human rights and the rule of law\u201d. DDR processes that fail to co- ordinate with SSR can lead to further violations, such as the reappointment of human rights abusers or those engaged in other criminal activities into the legitimate security sector. Such cases undermine public faith in security sector institutions. Mistrust between the State, security providers and citizens is a potential contribut- ing factor to the outbreak of a conflict, and one that has the potential to undermine sus- tainable peace, particularly if the State itself is corrupt or directly engages in criminal activities. Another factor is the integration of ex-combatants who may still have crim- inal ties into the reformed security sector. To avoid further propagation of criminal- ity, vetting should be conducted prior to integration, with a special focus on any evidence relating to continued links with actors known to engage in criminal activ- ities. Finally, Government security forces, both civilian and military, may themselves be part of rightsizing exercises. The demobilization of excess forces may be particularly difficult if these individuals have been actively involved in facilitating or gatekeeping the illicit economy, and DDR practitioners should take these dynamics into account in the design of reintegration support (see sections 7.3 and 9). SSR that encourages participatory processes that enhance the oversight roles of actors such as parliament and civil society can meet the common goal of DDR and SSR of building trust in post-conflict security governance institutions. Additionally, over- sight mechanisms can provide necessary checks and balances to ensure that national decisions on DDR and SSR are appropriate, cost effective and made in a transparent manner. For further information, see IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f53420d4-e2ca-40fa-9753-bd5148654480", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 35, + "Paragraph": "Annex B: International legal framework for organized crime United Nations Convention against Transnational Organized Crime (2000) The UNTOC is the main international instrument in the fight against transnational organized crime. States that ratify this instrument commit themselves to taking a se- ries of measures against transnational organized crime, including creating domestic criminal offences (participation in an organized criminal group, money laundering, corruption and obstruction of justice); adopting new and sweeping frameworks for extradition, mutual legal assistance and law enforcement cooperation; and promoting training and technical assistance for building or upgrading the necessary capacity of national authorities. The UNTOC defines the terms \u2018organized criminal group\u2019, \u2018seri- ous crime\u2019, and \u2018structured group\u2019 (as per section 3 of this module). Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Wom- en and Children, supplementing the United Nations Convention against Transna- tional Organized Crime (2000) This is the first global legally binding instrument with an agreed definition on traf- ficking in persons. This definition is intended to facilitate convergence in national ap- proaches with regard to the establishment of domestic criminal offences that would support efficient international cooperation in investigating and prosecuting trafficking in persons cases. An additional objective of the Protocol is to protect and assist the vic- tims of trafficking with full respect for their human rights. Protocol against the Smuggling of Migrants by Land, Sea and Air, supplementing the United Nations Convention against Transnational Organized Crime (2000) The Protocol deals with the growing problem of organized criminal groups who smug- gle migrants. It marks the first time that a definition of smuggling of migrants was developed and agreed upon in a global international instrument. The Protocol aims at preventing and combating the smuggling of migrants, as well as promoting coopera- tion among States parties, while protecting the rights of smuggled migrants and pre- venting the worst forms of their exploitation, which often characterize the smuggling process. Protocol against the Illicit Manufacturing of and Trafficking in Firearms, Their Parts and Components and Ammunition, supplementing the United Nations Con- vention against Transnational Organized Crime (2001) The objective of the Protocol, the first legally binding instrument on small arms adopt- ed at the global level, is to promote, facilitate and strengthen cooperation among States parties in order to prevent, combat and eradicate the illicit manufacturing of and traf- ficking in firearms, their parts and components and ammunition. By ratifying the Pro- tocol, States make a commitment to adopt a series of crime-control measures and im- plement in their domestic legal order three sets of normative provisions: the first one relates to the establishment of criminal offences related to illegal manufacturing of and trafficking in firearms on the basis of the Protocol requirements and definitions; the second to a system of Government authorizations or licencing intended to ensure legit- imate manufacturing of and trafficking in firearms; and the third one to the marking and tracing of firearms. In addition to the Protocol, a number of non-legally binding instruments also apply to the illicit trade of small arms and light weapons.18 Single Convention on Narcotic Drugs of 1961 as amended by the 1972 Protocol This Convention aims to combat drug abuse by coordinated international action. There are two forms of intervention and control that work together. First, the Convention seeks to limit the possession, use, trade, distribution, import, export, manufacture and production of drugs exclusively to medical and scientific purposes. Second, it combats drug trafficking through international cooperation to deter and discourage drug traf- fickers. Convention on Psychotropic Substances of 1971 The Convention establishes an international control system for psychotropic substanc- es in response to the diversification and expansion of the spectrum of drugs of abuse. The Convention introduces controls over a number of synthetic drugs, balancing their abuse against their therapeutic value. United Nations Convention against Illicit Traffic in Narcotic Drugs and Psycho- tropic Substances of 1988 This Convention provides comprehensive measures against drug trafficking, includ- ing provisions against money laundering and the diversion of precursor chemicals. It provides for international cooperation through, for example, extradition of drug traf- fickers, controlled deliveries and transfer of proceedings. United Nations Convention against Corruption (2003) This Convention is the only legally binding universal anti-corruption instrument. It covers five main areas: preventive measures, criminalization and law enforcement, in- ternational cooperation, asset recovery, and technical assistance and information ex- change. The Convention covers many different forms of corruption, such as bribery, trading in influence and abuse of functions. Security Council Resolutions The United Nations Security Council has increasingly recognized the role that organ- ized crime and illicit markets play in sustaining and fuelling contemporary conflicts. Since the UNTOC was adopted in 2000, the UN Security Council has passed hundreds of resolutions on organized crime in specific countries, missions or regions. Security Council resolution 2220 (2015) on small arms The Council emphasizes that the illicit trafficking in small arms and light weapons can aid terrorism and illegal armed groups and facilitate increasing levels of transnational organized crime, and underscores that such illicit trafficking could harm civilians, in- cluding women and children, create instability and long-term governance challenges, and complicate conflict resolution. Security Council resolution 2331 (2016) on trafficking in persons in conflict situations, including linkages with the activities of armed groups, terrorism and sexual violence in conflict The Security Council recognizes the connection between trafficking in persons, sex- ual violence, terrorism and other transnational organized criminal activities that can prolong and exacerbate conflict and instability or intensify its impact on civilian pop- ulations. The Council condemns all acts of trafficking, particularly the sale or trade in persons undertaken by the Islamic State of Iraq and the Levant (ISIL, also known as Da\u2019esh), and recognizes the importance of collecting and preserving evidence relating to such acts to ensure that those responsible can be held accountable. Security Council Resolution 2388 (2017) on trafficking in persons in armed conflict This resolution recognizes \u201cthat trafficking in persons in areas affected by armed con- flict and post-conflict situations can be for the purpose of various forms of exploita- tion\u201d, including sexual exploitation and the recruitment of child soldiers. The resolu- tion underlines the importance of providing \u201cappropriate care, assistance and services for their physical, psychological and social recovery, rehabilitation and reintegration, in full respect of their human rights\u201d. The resolution also recognizes \u201cthat traffick- ing in persons entails the violation or abuse of human rights\u201d and underscores \u201cthat certain acts or offences associated with trafficking in persons in the context of armed conflict may constitute war crimes\u201d, and it notes States\u2019 responsibility to \u201cprosecute those responsible for genocide, crimes against humanity, war crimes as well as other crimes\u201d. The resolution calls for the \u201ctraining of relevant personnel of special political and peacekeeping missions\u201d. Security Council resolution 2462 (2019) on the financing of terrorism through illicit activities and sanctions lists This resolution reaffirms the Security Council\u2019s decision in its resolution 1373 (2001) that all States shall prevent and suppress the financing of terrorist acts, including through organized criminal activity, and shall refrain from providing support to those involved in them. Furthermore, the resolution urges all States to participate actively in implementing and updating the ISIL (Da\u2019esh) and Al-Qaida Sanctions List and to consider including, when submitting new listing requests, individuals and entities in- volved in the financing of terrorism. Security Council Resolution 2482 (2019) on threats to international peace and security caused by international terrorism and organized crime This resolution underlines that organized crime, along with terrorism and violent extremism, whether domestic or transnational, \u201cmay exacerbate conflicts in affected regions, and may contribute to undermining affected States, specifically their securi- ty, stability, governance, social and economic development\u201d and notes that organized criminal groups \u201ccan, in some cases and in some regions, complicate conflict preven- tion and resolution efforts\u201d. The resolution also notes the impact of the illicit drug trade, trafficking in persons and arms trafficking, and their links to corruption in furthering the financing of terrorism and fuelling conflict. Environmental Crime A number of General Assembly and Security Council documents highlight the inter- section between conflict, criminality and the illicit exploitation of natural resources. Crimes against the environment, such as deforestation, illegal logging, fishing and the illicit wildlife trade have a more fragmented legal framework. For more information on specific natural resources policy frameworks and legal instruments, refer to IDDRS 6.30 on DDR and Natural Resources.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + } +] \ No newline at end of file diff --git a/src/Static/data/json/data.json b/src/Static/data/json/data.json new file mode 100644 index 0000000..4ef52d5 --- /dev/null +++ b/src/Static/data/json/data.json @@ -0,0 +1,24284 @@ +[ + { + "ID": "f8a1cf1a-543d-4bab-824d-22e606bc6952", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": null, + "Paragraph": "Summary Police personnel possess a wide range of skills and capacities that can contribute to DDR processes in mission and non-mission settings. As outlined in IDDRS 2.10 on The UN Approach to DDR, mission settings are those situations in which peace op- erations are deployed through peacekeeping operations, political missions and good offices engagements, by the UN or a regional organization. Non-mission settings are those where no peace operation is deployed, either through a peacekeeping operation, political missions or good offices engagements. In mission settings, the mandate granted by the UN Security Council will dictate the type and extent of UN police involvement in a DDR process. Dependent on the sit- uation on the ground, this mandate can range from monitoring and advisory functions to full policing responsibilities. In mission settings with a peacekeeping operation, the UN police component will typically consist of individual police officers, formed police units and specialized police teams. In special political missions, formed police units will typically not be present, and the UN police presence may consist of senior advisers. In non-mission settings there is no UN Security Council mandate. Therefore, the type and extent of UN or international police involvement in a DDR process will be determined by the nature of the request received from a national Government or by bilateral cooperation agreements. An international police presence in a non-mission setting (whether UN or otherwise) will typically consist of advisers, mentors, trainers and/or policing experts, complemented where necessary by a specialized police team. When supporting DDR processes, police personnel may conduct several general tasks, including the provision of advice, support to coordination, monitoring and build- ing public confidence. Police personnel may also conduct more specific tasks related to the particular type of DDR process that is underway. For example, as part of a DDR programme, police personnel at disarmament and demobilization sites can facilitate weapons tracing and the dynamic surveillance of weapons and ammunition storage sites. Police personnel may also support the implementation of different DDR-related tools (see IDDRS 2.10 on The UN Approach to DDR). For example, police may support DDR practitioners who are engaged in the mediation of local peace agreements by orienting these individuals, and broader negotiating teams, to entry points in the com- munity. Community-oriented policing practices and community violence reduction (CVR) programmes can also be mutually reinforcing (see IDDRS 2.30 on Community Violence Reduction). Finally, when DDR processes are linked to security sector reform (SSR), UN police personnel have an important role to play in the reform of State police and law enforce- ment institutions and can positively contribute to the establishment and furtherance of professional standards and codes of conduct of policing.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7ec03231-327e-4364-a899-d7a1f464760a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 4, + "Paragraph": "Module scope and objectives The objective of this module is to outline possible police contributions to DDR processes in the context of UN peacekeeping operations, special political missions (SPMs) and non-mission settings. Although the guidance in this module is based on the experience of UN police components, it is designed for all police personnel who contribute to DDR processes, irrespective of whether these personnel are affiliated to the UN, regional organizations, or State police. The module is also designed for civilian DDR practi- tioners who are interested in the ways that police personnel and UN law enforcement experts may support their work.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4fcd01a2-f042-4964-8e32-7078523272a2", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. UN police personnel can include both uniformed police officers and civilian policing experts. Individual police officers (IPOs) are usually unarmed and have historically been utilized for community-oriented policing, information gathering, capacity-building, training and monitoring. Formed Police Units (FPUs) are self-contained police units of 140 to 160 officers capable of providing a range of tactical police options, including an effective public order function. FPUs are armed, and, generally speaking, deliver a more robust form of policing than IPOs based on mandate authority and tasks. Specialized Police Teams (SPTs) sometimes reinforce FPUs and consist of a group of experts in a particular area of policing such as special weapons and tactics teams. UN policing experts may be deployed to Member States as part of technical assistance programmes agreed between United Nations country team entities and the Member State, to provide capacity-building or other forms of technical assistance. Interim Executive mandate: The mandates provided to UN police personnel in mission settings may range from non-executive to partial-executive to full-executive. Full-exec- utive mandates are rarely granted, as they mean that UN police will assume complete responsibility for the maintenance of law and order, and the performance of the whole spectrum of activities associated with policing, including powers of arrest and detention, collecting evidence, investigation of crime and assistance in criminal investigations, border security, riot and crowd control, and robust patrols.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "eb1418bd-28ea-48fd-b62c-57f0a00e880d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 5, + "Paragraph": "Introduction Police personnel possess a wide range of skills and capacities that may contribute to DDR processes in the context of UN peacekeeping operations, SPMs and non-mission settings. In peacekeeping operations, UN police components will typically consist of IPOs, FPUs and SPTs. In special political missions, FPUs will typically not be present, and the UN police presence may consist of IPOs who work as senior advisers. In non-mis- sion contexts, the UN or international police presence will typically consist of advisers, mentors, trainers and/or policing experts complemented, where necessary, by a SPT. The type and extent of UN or international police involvement in a DDR process in a non-mission setting will be determined by the nature of the request received from a national Government or by bilateral cooperation agreements. In mission settings, the mandate given to a UN police component will dictate the level and extent of its in- volvement in a DDR process. Dependent on the situation on the ground, the Security Council can grant mandates to UN police that range from monitoring and advisory functions to full policing responsibilities. In both mission and non-mission settings, police-related tasks may also include support for the reform, restructuring and devel- opment of the State police service and other law enforcement institutions.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e0a58ff3-c4da-457b-9d1a-17c5a8a09fff", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to police roles and responsibilities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "00feb9f0-b09e-4d7e-b8a5-5f47d539e21c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 5, + "Paragraph": "Voluntary In contexts where DDR is linked to SSR, the integration of vetted former members of armed groups into the armed forces, the State police service or other uniformed services as part of DDR processes shall be voluntary (also see IDDRS 6.10 on DDR and Security Sector Reform).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e715229f-48f9-402e-9f5b-e5fc4cc0ec27", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 5, + "Paragraph": "Criteria for participation/eligibility When DDR and SSR processes are linked, former members of armed groups shall only be recruited into the State police service if they are thoroughly vetted and meet the designated recruitment criteria. Former members of armed groups shall not be integrated into the State police service merely because of their status as former members of an armed group. Furthermore, former members of armed groups who have been involved in war crimes, crimes against humanity, terrorist offences and genocide shall not be eligible for recruit- ment into State police services (see IDDRS 2.11 on The Legal Framework for UN DDR). Importantly, children shall not be recruited into the State police service and effective age assessment procedures must be put in place (see IDDRS 5.20 on Children and DDR).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "15cde379-8d93-4ec8-972e-19f914642762", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 6, + "Paragraph": "Unconditional release and protection of children In both mission and non-mission settings, UN police personnel are bound to interna- tional norms, laws and standards and must uphold the highest standards of protection, including child protection standards, in all aspects of their work. The importance of child protection shall be understood by all police personnel, through ongoing training, and mainstreamed into daily operations, and in particular, into protection activities. Police officers at all levels should ensure that differentiated and shared threats to boys and girls and their vulnerabilities are identified and that plans and orders are developed to provide effective protection on the ground, working in concert with mission child protection advisers (when relevant), other child protection partners and the responsi- ble government authorities. A police child protection focal point shall be established. Child protection and child rights, including justice for children and other special pro- tections in international law and standards applicable to children in contact with the law, shall be included not only in police training but in standard operating procedures as well as in police guidance as appropriate. Child protection shall be integrated into all police work, including when UN and international police personnel undertake mentoring and advisory activities and build the capacity of State police services in conflict-affected countries. UN police personnel shall contribute to larger efforts to bring about positive change in national laws and practices, promoting the highest standards for protecting children. Whenever orders are written, or an activity planned, UN police personnel shall always consider the impact on children and their protection, including the appropriate measures to be taken to address any child protection concerns.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "3f4fd6f8-adfb-4f76-94e0-b92225069d5b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 6, + "Paragraph": "In accordance with standards and principles of humanitarian assistance Any form of support by United Nations police personnel or UN entities to non-UN security forces shall be governed by the UN Human Rights Due Diligence Policy on United Nations Support to Non-UN Security Forces.1 This policy requires an assess- ment of the risk that recipients of UN support will commit grave violations of inter- national humanitarian, human rights or refugee law. If a level of risk is identified, mitigating measures shall be put in place. It is the responsibility of every UN entity providing support to undertake such a risk assessment. As identified in the HRDDP, \u201csupport\u201d encompasses a range of potential activities from training, mentoring and advisory services to joint operations conducted by UN and non-UN security forces. Risk assessments shall be undertaken prior to the delivery of support to recipients.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "3ba5e023-86b3-4938-9d22-3bfa4a92a7b6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 6, + "Paragraph": "Gender-responsive and inclusive Gender-sensitive policing is an operational necessity to address the different and shared security needs of women, men, boys and girls. Particular attention shall be granted to the ability of women, men, boys and girls to share protection threats that concern them and to help identify responses to these threats. Security Council Resolution 2185 (2014) on policing in peacekeeping emphasizes the promotion of gender equality as part of a comprehensive approach to conflict prevention and sustainable peace. UN police personnel shall use a gender analysis and incorporate gender considerations into key aspects of UN police operations such as assessment, planning, management, budgeting and capacity development programmes for police reform. UN police personnel shall promote non-discriminatory and adequate representation of qualified women in State police services at all levels and work to ensure that women in State police services are provided with equal capacity and career development opportunities. UN police per- sonnel shall ensure adequate participation of female police officers in decision-making in the police reform process. UN police personnel shall recognize the specific needs and contributions of women in conflict and post-conflict environments, including the need for protection from sexual and gender-based violence and for community strat- egies to reflect women\u2019s needs, including through the deployment of women within FPUs and the establishment of special protection units.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae00268e-3504-41ab-9d7b-35a3ef2444f3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 7, + "Paragraph": "Conflict sensitive Community engagement through community-oriented policing shall not expose persons to risk or cause them harm \u2013 particularly those who may be at greatest risk, including the most vulnerable, human rights defenders and/or civil society activists.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "80e6e16c-eaee-44b2-b5ed-99ea49611c1f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 7, + "Paragraph": "Context specific There is no one-size-fits all policing policy and, as a result, there can be no standardized ap- proach to determining police support to a particular DDR process. Instead,police support to DDR processes shall be context specific and in accordance with country plans and strategies.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "27261332-8fb7-4be5-bde7-38b0860c883d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 7, + "Paragraph": "Flexible, accountable and transparent funding arrangements Police reform and capacity-building is a long-term commitment. Piecemeal police reform without sustained international support often brings no long-term benefits. However, con- tributing to the police reform process can be politically sensitive, and many donor countries are not willing to support this particular activity. It is therefore very important to make the best use of available resources by coordinating and integrating international support so that, through the united effort of all concerned, the best possible end result can be achieved.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0ff94119-9729-4463-92bf-e39c785bbdc6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 7, + "Paragraph": "Nationally and locally owned Police reform, restructuring and development require strong national political will. This is demonstrated when measures are taken to ensure the promulgation and amend- ment of police regulations and police statutes. National political will is also shown by protecting police reform plans and processes from political interference. The police shall be a non-partisan institution that represents all groups and sex and age consid- erations within a nation, and police officers shall be responsible to the public through obeying and being loyal to a duly elected Government. Making resources available for paying regular salaries and providing basic needs such as uniforms are other ways of displaying political will and commitment. Ultimately, the police reform process shall be nationally owned and rooted in the particular needs and conditions of the country concerned and based on the development of expertise at the national and community levels. The sustainability of the reform depends on the level of national ownership of the entire process and the ability of the Government to support it in the long run.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "09c5b300-2e5c-45f8-9aca-4c17862a0a5a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 8, + "Paragraph": "Regionally supported When necessary, UN police personnel shall coordinate with international and regional police in information sharing and strategic and operational cooperation and planning, particularly when dealing with regional DDR processes, arms trafficking, terrorism and other trans-border crimes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "a090a3c7-b8be-4ae6-8cf0-655490b09841", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 8, + "Paragraph": "Integrated When police support to a DDR process is mandated by the Security Council or requested by a Government, it shall be integrated appropriately into DDR planning and management processes. Additionally, support to police reform cannot be an isolat- ed activity and should take place at the same time as the reform and development of the criminal justice system, including prosecution, judiciary and prison systems, in a comprehensive SSR process (see IDDRS 6.10 on DDR and SSR). All three components of the criminal justice system work together and support one another.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc43bdad-58b6-47d4-aaf0-2034350fb42a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 8, + "Paragraph": "Safety and security In DDR processes in mission settings, the protection of civilians and of UN personnel, their assets and freedom of movement can be provided by UN police personnel, either in the form of IPOs or FPUs. The support of IPOs and FPUs shall be sought if and when DDR personnel, sites and activities are endangered. FPU engagement shall always be limited to the regular maintenance of law and order and shall not cross into high-risk matters of weapons security and military security. If the situation does escalate to in- volve violence and the use of firearms, military units shall be alerted in order to be ready to support the FPU (see IDDRS 4.40 on UN Military Roles and Responsibilities).", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "547a1aaa-bc50-4ea6-8d40-42bc7f21bc50", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 8, + "Paragraph": "Transition and exit strategies Often during armed conflict, State police services are reduced in size and many of the functions of the police are taken over by the military. As peace returns, the State police service and other law enforcement institutions often need to be restructured and their role in maintaining internal security and public order re-established and strength- ened. While a short transition period increases the chances of successfully establishing accountable public institutions, the withdrawal of an international police presence shall be a carefully planned exercise, and the pace of this withdrawal shall be based on the ability of State security institutions to take over the maintenance of security and public order.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ff0a85ae-e4b0-4aff-8950-945eeed6eeee", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 9, + "Paragraph": "The pre-mission assessment As soon as the possibility of UN involvement in peacekeeping activities becomes evident, a multi-agency technical team will visit the area to draw up an operational strategy. The level of engagement of UN police will be decided based on the existing structures and capability of the State police service, including its legal basis; human resources; and administrative, technical, management and operational capabilities, including a gender analysis. The police assessment takes into account the capabilities of the State police service that are in place to deal with the immediate problems of the conflict and post-conflict environment. It also estimates what would be required to ensure the long-term effectiveness of the State police service as it is redeveloped into a professional police service. Of critical importance during this assessment is the identi- fication of the various security agencies that are actually performing law enforcement tasks. During conflict, military intelligence units may have been utilized to perform law enforcement functions. Paramilitary forces and other irregular forces may have also carried out these functions, using methods and techniques that would exceed the ordinary capacities of a State police service. During the assessment phase, it should be decided whether the State police ser- vice is also to be included in the DDR process. Police may have been directly involved in the conflict as combatants or as supporters of the armed forces. If this is the case, maintaining the same police in service could jeopardize the peace and stability of the nation. Furthermore, the police as an institution would have to be disarmed, demobi- lized, adequately vetted for any violation of human rights, and then re-recruited and trained to perform proper policing functions. The assessment phase should also examine the extent to which disarmament or transitional weapons and ammunition management (WAM) will be required. UN police personnel can play a central role in contributing to the assessment and identifi- cation of the number and type of small arms in the possession of civilians and armed groups, in close cooperation with national authorities and civil society. This assessment should also evaluate the capacity of the State police service to protect civilians in light of the prospective number of combatants, persons associated with armed forces and groups, and dependents who will be demobilized and supported to return and rein- tegrate into the community, as well as the impact of this return on public order and security at national and community levels. UN police personnel should then, with the approval of the national authorities and in coordination with relevant stakeholders, contribute to a preliminary assessment of the possibility of rapid rearmament by armed groups due to unregulated arms pos- session and arms flows. Legal statutes to regulate the possession of arms by individu- als for self-protection should be carefully assessed, and recommendations in support of appropriate weapons control should be made. If it is necessary to rapidly reduce the number of weapons in circulation, ad hoc provisions, in the form of decrees emanating from the central, regional and provincial authorities, can be recommended.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3a39dd0f-8c33-40f3-86a2-f17f44a268bb", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 10, + "Paragraph": "Pre-deployment planning Before the establishment of any UN mission, the prospective mission mandate will be examined in order to jumpstart work on the UN police concept of operations. This is the document that will translate the political intent of the mission mandate into UN police strategies and operational directives, and will contain references to all UN police structures, locations, assets, capabilities and indicators of achievement. The necessary course of action for UN police personnel in relation to the DDR process should be outlined, taking into account the broad aims of the integrated mission, the integrated assessment, and consultations with other UN agencies, funds and programmes. The outlined course of action will also depend on the realities on the ground, the expecta- tions of the parties concerned and the DDR structures to be deployed (see IDDRS 3.10 on Integrated DDR Planning: Structures and Processes). As soon as a Security Council Resolution is issued, a UN police deployment plan is drawn up.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "725d2ce1-8b82-4a03-8093-e019d8e3b260", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 10, + "Paragraph": "Peacekeeping operations The UN police structure in an integrated UN peacekeeping operation will be based on the Strategic Guidance Framework for International Police Peacekeeping and will con- sist of four pillars: UN Police Command, UN Police Operations, UN Police Capacity- Build- ing and Development, and UN Police Administration. Capabilities to prevent serious and organized crime should be activated and coordinated in order to support oper- ations conducted by the State police service and to build the capacity of these forces where necessary. SPTs should also be included in the police contingent to assist in the development of national police capacities in specific technical fields including, but not limited to, forensics, criminal intelligence, investigations, and sexual exploitation and abuse/sexual and gender-based violence. At the strategic level, the UN police deployment will engage with the State\u2019s cen- tral police and security authorities and with the UN Country Team. At the operation- al level, the UN police deployment will develop regional and sector commands with team sites in critical locations. IPOs will work alongside and in close coordination with the national police, while FPUs will be based at the provincial level, in areas sensitive to public order and security disturbances. These FPUs may undertake protection of ci- vilian tasks, secure and reinforce the activities of the IPOs, participate in joint missions with the force and civilian components of the mission, and provide general protection to UN staff, assets and freedom of movement. In this latter regard, FPUs shall be ready to implement evacuation plans if the need arises. Upon deployment to a mission area with a peacekeeping operation, all UN police personnel shall receive induction training which outlines their role in the DDR pro- cess. It is essential that all UN police personnel in the mission fully understand the aims and scope of the DDR process and are aware of the responsibilities of the UN police component in relation to DDR. With the deployment of UN police personnel to the mission area, the UN police commissioner will (depending on the size of the UN police component and its mandate) establish a dedicated DDR coordinating unit with a liaison officer who will work very closely with the mission\u2019s DDR command structures to coordinate activity with the military, the State police service and other relevant insti- tutions involved in the DDR process. The DDR coordinating unit should be supported by a police gender adviser/focal point who can advise on gender perspectives related to the work of the police on DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f08cb8af-3235-4bb6-8f94-c7da1c9b4081", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 11, + "Paragraph": "Special political missions In special political missions, pre-mission assessment and pre-deployment planning will take place as outlined above. However, UN police will be structured within a Police Advisory Unit. Within this unit, a Senior Police Adviser to the Special Repre- sentative of the Secretary General will be tasked to liaise and coordinate with the State police and security authorities in order to foster reform and development, to engage in the routing and channelling of international assistance, and to oversee the UN Coun- try Office\u2019s activities related to police and security issues. The police deployment will typically occur in phases, responding to the immediate priorities in the country where the mission will be deployed.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d805cc22-9393-42a2-8da7-5288196465f8", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 11, + "Paragraph": "Non-mission settings In non-mission settings, UN policing experts may be deployed to support a DDR pro- cess in response to a request from a national Government. The deployment may be part of a technical assistance programme agreed between a UN entity and the Government, or may be defined by the Global Focal Point for Police, Justice and Corrections Areas in the Rule of Law in Post-Conflict and Other Crisis Situations (GFP). Advisers, mentors, trainers and/or policing experts may be deployed complemented, where necessary, by the deployment of a SPT. International police deployments of non-UN personnel can also take place on the basis of bilateral cooperation agreements.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "24990c3f-27be-40a9-98ba-17df8b974610", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 11, + "Paragraph": "DDR processes and policing \u2013 general tasks The general tasks that police personnel undertake in relation to DDR processes are advice, coordination, monitoring and building public confidence. The capacity of UN police personnel to carry out these functions will differ in different settings \u2013 mission and non-mission \u2013 contingent on mandated tasks and whether FPUs, IPOs and SPTs are present or absent. For example, building public confidence and strong relationships with local communities will not be realistically achievable in a non-mission setting if only one police adviser is deployed.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8df96bd6-e676-4cff-b9ce-590c4e41ba85", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 11, + "Paragraph": "Advice UN police personnel carry out advisory functions when serving within missions that include advisory and assistance tasks within their mandate. In non-mission settings, UN or international police personnel may be deployed in response to a request from a national Government or as a result of bilateral cooperation agreements. Advisory functions can take place at three levels and shall also be in compliance with the United Nations Human Rights Due Diligence Policy (HRDDP). Strategic: This is the level where specific policy issues are conceptualized and formulated, usually with the ministry of interior or equivalent. UN police personnel can provide assistance in adopting policing policies, drafting police reform decrees, and reiterating that professional, effective, accountable, accessible and gender-respon- sive law enforcement, corrections, and judicial institutions are necessary to lay the foundations for sustaining peace and peacebuilding. They can also provide advice to police executive boards and senior police leadership on the establishment of institu- tional development plans, the enhancement of internal and effective oversight structures, the creation of training programmes and the promotion of gender equality within the police service. Operational or middle management: At this level, UN police personnel can work with operational commanders and mid-level managers, advising them on how to im- plement concepts and policies on the ground. UN police personnel should also take note of any specific equipment, infrastructure and training requirements and take action to address these needs. Service delivery: At this level, UN police personnel can monitor, mentor and advise local police officers working at the community-level, both through working side by side and by conducting joint activities. This work is done in order to ensure that the delivery of the State police service is appropriate and complies with professional standards and codes of conduct of policing as well as with the UN HRDDP. This work is also built on the recognition that State police services are often the primary link between the Government and communities on security issues. UN police personnel can positively influence the way that State police services perform their tasks in a human rights compliant manner. Advice and capacity-building can range from establishing policy frameworks on disarmament to drawing up future regulations on arms possession, and can include reforming the State police service in its entirety, including through the adop- tion of policies to promote gender equality within the police service (see section 8). At the operational level, UN police personnel can help local operational commanders to prevent and tackle crime and lawlessness, and suggest ways to deal with these problems. Furthermore, UN police personnel can assist in planning specific crime prevention and security strategies that can be opera- tionalized with an integrated commitment by the UN mission (if in a mission setting), or by the State police service, particularly in settings where armed groups are engaged in criminal activities (see IDDRS 6.40 on DDR and Organized Crime) This may include the creation of Quick Impact Projects (QIPs) and CVR programmes (see section 7.1). Preventing and combating crime and lawlessness can be particularly important when conflict-affected populations \u2013 including ex-combatants, their dependants, persons formerly associated with armed forces and groups, displaced persons and refugees \u2013 begin to return to communities. As the return of these individuals gets underway, social tensions may appear. Such tensions, if not tackled straight away, could lead to more complicated situations that require a major diversion of resources, effort and time. In these situations, UN police personnel can provide information and criminal intelli- gence that help to prevent a deterioration of the security situation and of public order. In mission settings, UN police personnel can also engage with local authorities, com- munities and civil society organizations, including women and youth organizations, in order to enhance early warning and situational awareness for the benefit of all mission components. In a similar manner, UN police personnel are often well positioned to gather information that the military component of the mission can use to maintain and improve the security of the area in which the mission operates. In non-mission settings, the UN Country Team will be well positioned to detect the signs of a potential return to armed conflict. In these contexts UN police personnel can be utilized in order to advise on the implementation of preventative measures.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "28f5a5b3-b4b6-4ec2-8808-018ecbeb669f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 13, + "Paragraph": "Coordination DDR is a complex process requiring full coordination among all stakeholders, particularly local communities. Contingent on mandate and/or deployment strength, UN police personnel should aim to build a strong working relationship with different segments of local communities that enables the DDR process to take place. More spe- cifically, UN police personnel can contribute to the selection of sites for disarmament and demobilization, broker agreements with communities and help to assure the safety of community members. UN police personnel can monitor disarmament and demobilization sites and regularly liaise with communities and their male and fe- male leaders at critical phases of the DDR process. Experience has shown that neglecting to address the different and shared con- cerns of the various segments of communities can lead to delays and a loss of the mo- mentum required to push DDR forward. Due to their role in community policing, UN police personnel are often well placed to identify local concerns and coordinate with the parties involved to quickly resolve any problems that may arise. The presence of a dedicated UN police liaison officer within a mission\u2019s DDR com- ponent helps in the gathering and processing of intelligence on ex-combatants and persons formerly associated with armed forces and groups, their current situation and their possible future activities/locations. Such a liaison officer provides a valuable link to the operations of the UN police component and State police and law enforcement institutions. In this regard, the liaison officer can also keep the DDR component up to date on the progress of UN police personnel in advising and training the State police service.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "cf4c9eb3-3bac-4faa-999e-2053e5401824", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 14, + "Paragraph": "Monitoring The monitoring of crime trends is important to limit and control the spread of activities that could hinder stability and derail the peace process. Demobilized combatants are sometimes involved in human trafficking, the sex trade, racketeering, smuggling and other organized criminal activities (see IDDRS 6.40 on DDR and Organized Crime). UN police personnel, contingent on mandate and/or deployment strength, shall try to ensure that these activities are controlled effectively right from the start. If DDR practitioners obtain information that is relevant to crime monitoring and prevention, this information shall be shared with UN police. Furthermore, if UN police personnel observe a return to military-style activities, they can assist in getting rid of check- points, illegal collection points and hold-ups, and can help persuade former combatants to abandon violence. Another aspect of monitoring should be that of establishing mechanisms to gather information and intelligence and observe any increase in the possession of arms by the civilian population. Where rules and regulations on the possession of arms for self-protection are well defined, they shall be strictly enforced by the State police service. Monitoring the efforts of the national authorities in controlling the movement of arms across borders will be crucial to identifying possible rearmament trends. Disarmament and/or transitional WAM as part of a DDR process will not be successful if the flow of small arms and light weapons is not fully controlled (see IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Management). When provided with a mandate and/or appropriate deployment strength, UN police personnel shall also monitor whether State police personnel comply with pro- fessional standards of policing. This type of monitoring should be linked to capacity- building, in that, if problems are found, UN police personnel should then support the State police to apply corrective measures. If police misconduct is discovered during the monitoring process, UN police personnel shall report this to the appropriate national or local internal oversight mechanism. Non-compliance reporting is one of the best tools available to monitors for ensuring that host authorities fulfil their obligations, and it should be used to apply pressure if State police personnel and authorities fail to deal with incidents of non-compliance, or routinely violate the principles of an agreement. Non-compliance reporting usually focuses on two themes: the standards of profession- al service delivery (client-focused) and the agreed principles of access and transpar- ency with regard to commitments (bilateral agreements, access to records, detention centres, etc.). Finally, in UN missions that hold a specific Child Protection/Children and Armed Conflict mandate, child protection is a specified mandated task for the UN police com- ponent. The child protection mandates for missions can include support to DDR pro- cesses, to ensure the effective identification and demobilization of children, taking into account the specific concerns of girls and boys, a requirement to monitor and report on the Six Grave Violations against children, namely recruitment and use of children, killing and maiming, sexual violence against children, abduction, attacks on schools and hospitals and denial of humanitarian access, and/or a requirement for the mission to work closely with the government or armed groups to adopt and implement meas- ures to protect children, including Action Plans to end and prevent grave violations. The tasks of the police component, in close consultation with mission child protection advisers, therefore include, but are not limited to: providing physical protection for children; monitoring child protection concerns through community-oriented policing; gathering and sharing information on the Six Grave Violations; ensuring the rights of children in contact with the law; and addressing juvenile justice issues such as arbi- trary or prolonged pre-trial detention and prison conditions.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "38e5ee98-646a-483d-9a80-9feca351cbff", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 15, + "Paragraph": "Building public confidence A division between the State police service and the community may emerge during armed conflict. This division should be bridged, and public confidence in the State police service should be (re)built, in order for long-term peace to be sustained. Community-oriented policing initiatives, as espoused in the United Nations Strategic Guidance Framework for International Police Peacekeeping, are an effective means of establishing and sustaining long-term community reconciliation processes.2 They involve a shift in policing methods and practice, so that the police and different segments of the community work together to solve problems concerning crime, disorder and insecurity (see Box 1). In this way, and through a gender-responsive approach, a relationship between the police and the public is (re)established. The philosophy of community-oriented policing encourages the development of new ways of dealing with community security concerns, particularly to ensure that the needs of women, men, the old and young, minorities, persons with disabilities and other specific-needs groups are systematically addressed. Police personnel (both State and UN) shall be trained in how to tackle gender-based violence towards women and children, both girls and boys, in addition to other hidden social problems such as abuse of the elderly. UN police personnel shall utilize their gender officers and advisers to closely follow up on all aspects related to protections for women and vulnerable groups. They shall include engagement with local communities and civil society organizations, in- cluding women\u2019s and youth organizations, to assess the nature and extent of possible abuses and provide immediate assistance and follow-up. The sensitization of communities on how to take preventative action and avoid interpersonal violence increases public confidence in the police and enables them to more effectively address the needs of the most vulnerable. The following steps can be taken to strengthen public confidence in the police: Open access to all police services; The availability of police services 24 hours a day, 7 days a week; A highly visible police presence; Extensive public information campaigns; The representation of minority groups and balanced ethnic composition in the police service; The promotion of gender balance in the police service and gender mainstreaming in all police work; The establishment of police stations or temporary advances in localities where security services are not installed. Raising awareness among the police on human rights and rule of law compliant policing in practice. In addition to these steps, community policing forums are useful means to cre- ate environments that enable the acceptance of ex-combatants, persons formerly as- sociated with armed forces and groups, and discredited local police personnel back into the community. In both mission and non-mission contexts, UN police person- nel can support the development of such local forums and sensitize all concerned parties to the need for reconciliation and trust. Such initiatives offer the opportuni- ty for community members to regularly share matters of concern and encourage mutual understanding. They also provide an opportunity for community members and civil society representatives to regularly evaluate the actions of the police. When fulfilling an executive mandate, UN police personnel shall develop and car- ry out all appropriate confidence-building measures. When fulfilling a non-executive mandate, UN police personnel shall assist and advise the State police service in their confidence-building initiatives. Where appropriate, UN police personnel can conduct community policing activities and gradually include the State service. This approach can help to ensure that community trust in the State police service is increased over time. This will enable the State police service to take over when the mission withdraws.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "16772f2f-c387-4df3-b6c3-01ffcfd9a3fe", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 16, + "Paragraph": "DDR processes and policing \u2013 specific tasks As outlined in IDDRS 2.10 on The UN Approach to DDR, integrated DDR processes are made up of various combinations of DDR programmes, DDR-related tools and reinte- gration support. In addition to the general tasks outlined above, UN police personnel may also perform more specific tasks that are linked to the particular DDR process in place. These tasks may be implemented in both mission and non-mission settings, con- tingent on mandate and/or deployment strength, and are outlined below:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8bbd6a90-3998-464d-9964-e9fec651e5fe", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 17, + "Paragraph": "DDR programmes When disarmament and demobilization is planned as part of a DDR programme, UN police personnel can provide advice and training to State police personnel to ensure that they develop procedures and processes to deal with the shorter-term aspects of disarmament and demobilization. These shorter-term aspects may include, but are not limited to, the travel and assembly of combatants, persons associated with armed forces and groups and dependants. In disarmament and demobilization sites (including encampments or canton- ments), the gathering of large numbers of ex-combatants and persons formerly asso- ciated with armed forces and groups may create security risks. The mere presence of UN police personnel at disarmament and demobilization sites can help to reassure local communities. For example, regular FPU patrols in cantonment sites are a strong confidence-building initiative, providing a highly visible presence to deter crime and criminal activities. This presence also eases the burden on the military component of the mission, which can then concentrate on other threats to security and wider human- itarian support. Importantly, FPU engagement shall always be limited to the regular maintenance of law and order and shall not cross into high-risk matters of weapons security and military security. With that said, the outreach and mediation capabili- ties of UN police personnel may sometimes be deployed in such situations in order to defuse tensions. In a mission context with a peacekeeping operation, the provision of security around disarmament and demobilization sites will typically be undertaken by the mil- itary component (see IDDRS 4.40 on Military Roles and Responsibilities). State police shall proactively act to address criminal activities inside and in the immediate vicinity of disarmament and demobilization sites. However, if the State police service delays or appears reluctant to take action, UN police personnel may intervene in order to ensure that the DDR process is not adversely affected. The immediate deployment of an FPU, to operationally engage in crowd control and public order challenges, can serve to con- tain the situation with minimum use of force. In contrast, direct military engagement in these situations may lead to escalation and consequently to greater numbers of casu- alties and wider damage. If public order disturbances are foreseen, it may be necessary to plan in advance for the engagement of FPU contingents and place a request for a specific, temporary deployment, particularly if the FPU is not conveniently located in the area of the disarmament and/or demobilization site. If the situation does escalate to involve violence and the use of firearms, military units shall be alerted in order to be ready to support the FPU. In mission settings where an FPU is deployed, the presence of UN police personnel should be requested, as often as possible, when combatants assemble for disarmament and demobilization as part of a DDR programme. Duplicate records of the weapons and ammunition handed over should, wherever possible, be shared with UN police personnel for the purposes of (i) preservation of the records and (ii) weapons tracing. UN police personnel can also be requested to provide dynamic surveillance of weapons and ammunition storage sites, together with a perimeter to secure destruc- tion operations. Furthermore, when weapons and ammunition are temporarily stored, as a form of confidence-building, UN police personnel can oversee the management of the double-key system or be entrusted with custody of one of the keys (see IDDRS 4.10 on Disarmament).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "468aac42-9e35-481d-b223-ebf7394646cd", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 18, + "Paragraph": "Community violence reduction The role of CVR programmes within DDR processes is explained in IDDRS 2.30 on Community Violence Reduction. CVR programmes can contribute to the ability of UN and State police personnel to improve local security conditions, especially outside capital cities, by exploring synergies between CVR and community-oriented policing. These possible synergies include: The involvement of UN and/or local State police representatives in the project advisory/review committee or local selection committees. In particular, UN police personnel may be able to provide advice on sources of community violence that need to be addressed. The development of CVR projects that reinforce State policing capacities. Quick Impact Projects (QIPs) implemented by UN police personnel, such as the re- habilitation of local police infrastructure or the training of female police personnel, could also, where appropriate, become part of a CVR programme. If the eligibility criteria for a CVR programme require the handover of weapons and/or ammunition, UN police personnel can provide support in a variety of ways including the preliminary assessment of weapons collected, the choice of tempo- rary storage facilities for weapons and ammunition, the registration of weapons and ammunition, and the collection of photographic records. UN police personnel can also provide support to CVR programmes by diffusing key messages related to the programme. When relevant to the project at hand, UN police personnel can also provide lectures on civic education, multicultural toler- ance, gender equality and respect for the rule of law.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "88cdab95-8f9e-45c7-931d-4aadf569d64d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 18, + "Paragraph": "Transitional weapons and ammunition management The role of transitional WAM in DDR processes is explained in IDDRS 4.11 on Transi- tional WAM. UN police personnel can contribute to transitional WAM activities in a variety of ways, including by supporting and advising State police on the control of civilian-held weapons, and encouraging registration and handover procedures with the aim of establishing weapons-free zones and enhancing security. These measures can help to limit the recirculation of weapons diverted or illicitly retained by former combatants. Community-based policing can play an important role in strengthening weap- ons control initiatives. If community members have a certain degree of trust in police and security institutions, they may feel more comfortable engaging in activities related to transitional WAM. Similarly, if there is a good working relationship between the police and the community, the police will more easily obtain information about weapons caches. In addition, UN police personnel may also provide support to the development of longer-term laws and procedures to manage the legitimate possession of weapons. UN police personnel can then contribute to the verification, registration and tracing of the weapons held by citizens, offering advice on the security, handling and custody of these weapons, as well as encouraging civilians to hand these weapons over to the au- thorities as a means of building confidence in the State police and security institutions.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "15b92484-c31b-4363-aab1-75ea76681a51", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 19, + "Paragraph": "DDR support to mediation When DDR practitioners provide support to the mediation of local-level peace agree- ments, UN police personnel can orient these practitioners, and broader negotiating teams, to the most suitable entry channels in the community. To build confidence, UN police personnel can then assist and facilitate the introduction of negotiating teams and provide them with security that allows freedom of movement. UN police personnel can also be deployed to ensure that delegates on both sides of the negotiations are not subject to hostile actions during the discussions or when en route to the chosen venue for the negotiations. UN police personnel can also be used to obtain the commitment of community and religious leaders, representatives of women\u2019s and youth groups, and other relevant stakeholders in order to support the settlement of local disputes and encourage acceptance of a DDR process. When requested, UN police personnel can also give advice concerning the security portion of the agreement being discussed.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b434504e-d121-4375-8ba0-f5df6cd0a948", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 19, + "Paragraph": "DDR support to transitional security arrangements When DDR practitioners support the creation of TSAs, UN police personnel can contribute to analyses of the overall security situation in the area of interest, the activities undertaken by criminal and armed groups (including any trends in these activities), and what type of TSA may be most useful and where (see IDDRS 2.20 on The Politics of DDR). Where re- quired, UN police personnel can engage male and female community leaders to ensure that their expectations and experience are taken into account when tailoring particular TSAs. In addition, UN police personnel can oversee the general security and protection tasks under- taken by the armed forces and groups that are participating in TSAs to ensure that these activities are not being used as a cover for illicit activities or harassment of the population.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d085a048-10a1-4a30-bf26-cf8a08de3924", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 19, + "Paragraph": "Police support during reintegration into society Police can also play an important security role during reintegration. State police services should be supported to discharge community-policing functions during re- integration in accordance with international human rights law and principles. State police can play an important dissuasive role where ex-combatants may be at risk of using violent means to gain access to illegal income and livelihoods. They can also protect ex-combatants and persons formerly associated with armed forces and groups who are reintegrating into society. Law and order disturbances may arise if the reintegration of these groups is inadequately supported, if grievances related to the conflict remain unresolved and in situations where ex-combatants, persons formerly associated with armed forces and groups and their families are not necessarily welcomed by communities (see IDDRS 4.30 on Reintegration). Contingent on mandate and/or deployment strength, UN police personnel can also assist in the monitoring and countering of efforts by armed groups to re-recruit demobilized combatants and/or formerly associated persons. In particular, UN police personnel can disseminate messages discouraging the resort to arms among demobilized combatants and their families and protect these individuals from stigmatization and reprisals by community members or other armed groups yet to adhere to the DDR process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e7bf9663-38c3-4a1c-bc26-88dc8d92a768", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.50-Police-Roles-and-Responsibilities", + "PageNum": 20, + "Paragraph": "Police reform and restructuring The establishment of an effective and professional police service is essential to the transformation of militarized societies into civilian ones. Often, the police service that existed previously will have been reduced in both its size and powers during the period of armed conflict, and many of its functions will have been taken over by a military apparatus with far greater resources. This serves to militarize the police, which is then comprised of personnel who may not have a specific police background and may op- erate without professional police capacities and attitudes. When States use the military in police functions, the distinction between maintaining internal order and external security becomes blurred, particularly because policing and public order control tend to be conducted with military techniques. At the same time, the general population will increasingly come to identify military forces as the primary security and order responder/provider. As countries transition from war to peace, the State police service should be re- formed and restructured and its role as the security service responsible for main- taining internal security and public or- der should be (re)established. The period during which the police assume overall responsibility for internal security can be challenging. There may, for example, be a lack of accountability for acts committed during the prior conflict and rivalry be- tween the different institutions involved. In this context, the withdrawal of interna- tional peacekeeping forces \u2013 including the UN police component \u2013 should be carefully planned, and the speed and phasing of the withdrawal should be based on the ability of State security institutions to assume responsibility for the maintenance of security and public order. During the period of transition from war to peace, DDR processes are sometimes linked to the reform of the State police services, particularly through the integration of former members of armed groups into the police and other law enforcement institu- tions. For further information on this integration process, see IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e15a4563-f019-4295-9ccd-7a620bef9d86", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": null, + "Paragraph": "Summary Disarmament is the act of reducing or eliminating access to weapons. It is usually regarded as the first step in a DDR programme. This voluntary handover of weapons, ammunition and explosives is a highly symbolic act in sealing the end of armed con- flict, and in concluding an individual\u2019s active role as a combatant. Disarmament is also essential to developing and maintaining a secure environment in which demobilization and reintegration can take place and can play an important role in crime prevention. Disarmament operations are increasingly implemented in contexts characterized by acute armed violence, complex and varied armed forces and groups, and the preva- lence of a wide range of weaponry and explosives. This module provides the guidance necessary to effectively plan and implement disarmament operations within DDR programmes and to ensure that these operations contribute to the establishment of an environment conducive to inclusive political tran- sition and sustainable peace. The disarmament component of a DDR programme is usually broken down into four main phases: (1) operational planning, (2) weapons collection operations, stockpile management, and (4) disposal of collected materiel. This module provides technical and programmatic guidance for each phase to ensure that activities are evi- dence-based, coherent, effective, gender-responsive and as safe as possible. The handling of weapons, ammunition and explosives comes with significant risks. Therefore, the guidance provided within this module is based on the Modular Small-Arms Control Implementation Compendium (MOSAIC)1 and the International Ammunition Technical Guidelines (IATG).2 Additional documents containing norms, standards and guidelines relevant to this module can be found in Annex B. Disarmament operations must take the regional and sub-regional context into con- sideration, as well as applicable legal frameworks. All disarmament operations must also be designed and implemented in an inclusive and gender responsive manner. Disarmament carried out within a DDR programme is only one aspect of broader DDR arms control activities and of the national arms control management system (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). DDR programmes should therefore be designed to reinforce security nationwide and be planned in coor- dination with wider peacebuilding and recovery efforts.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4f0d066c-6247-4441-b9e3-b575c8b1b323", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 4, + "Paragraph": "Module scope and objectives DDR processes include two main arms control components: (a) disarmament as part of a DDR programme and (b) transitional weapons and ammunition management (WAM). This module provides DDR practitioners with practical standards for the planning and implementation of the disarmament component of a DDR programme in contexts where the preconditions for such programmes are present. These preconditions include a negoti- ated ceasefire and/or peace agreement, sufficient trust in the peace process, willingness of the parties to the armed conflict to engage in DDR and a minimum guarantee of security (see IDDRS 2.10 on The UN Approach to DDR). Transitional WAM in support of DDR pro- cesses is covered in IDDRS 4.11 on Transitional Weapons and Ammunition Management. The linkages between disarmament as part of a DDR programme and Security Sector Reform are covered in IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "51a9c794-7b26-4d2a-a9b6-8ff275b9d672", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. In the context of DDR, disarmament refers to the collection, documentation, con- trol and disposal of small arms, ammunition, explosives and light and heavy weapons of combatants and often also of the civilian population. Disarmament also includes the development of responsible arms management programmes. The term \u2018disarmament\u2019 can be sensitive. It can carry connotations of surrender or of having weapons forcibly removed by a more powerful actor. Depending on the contex- tual realities and sensitivities, as well as the provisions of the peace agreement, alter- native terms, such as \u2018laying down arms\u2019 or \u2018putting weapons beyond use\u2019 or \u2018weapons control\u2019, may be employed. Ammunition: A complete device (e.g., missile, shell, mine, demolition store) charged with explosives, propellants, pyrotechnics, initiating composition, or nuclear, biological or chemical material for use in connection with offence or defence, or training, or non-operational purposes, including those parts of weapons systems containing explosives. Deactivated weapon: A weapon that has been rendered incapable of expelling or launching a shot, bullet, missile or other projectile by the action of an explosive, that cannot be readily restored to do so, and that has been certified and marked as deacti- vated by a competent State authority. Note 1: Deactivation requires that all pressure-bearing components of a weapon be permanently altered in such a way so as to render the weapon unusable. This includes modifications to the barrel, bolt, cylinder, slide, firing pin and/or receiver/frame. Demilitarization: The complete range of processes that render weapons, ammunition and explosives unfit for their originally intended purpose. Demilitarization not only involves the final destruction process, but also includes all of the other transport, storage, accounting and pre-processing operations that are equally critical to achieving the final result. Destruction: The rendering as permanently inoperable weapons, their parts, components or ammunition. Disposal: The removal of arms, ammunition and explosives from a stockpile by the utilization of a variety of methods (that may not necessarily involve destruction). Environ- mental concerns should be considered when selecting which method to use. There are six traditional methods of disposal used by armed forces around the world: (1) sale, (2) gift, (3) use for training, (4) deep sea dumping, (5) land fill, and (6) destruction or demilitarization. Diversion: The movement \u2013 physical, administrative or otherwise \u2013 of a weapon and/or its parts, components or ammunition from the legal to the illicit realm. Explosive: A substance or mixture of substances that, under external influences, is capable of rapidly releasing energy in the form of gases and heat, without undergoing a nuclear chain reaction. Explosive ordnance disposal (EOD): The detection, identification, evaluation, render- ing safe, recovery and final disposal of unexploded explosive ordnance. Note 1: It may also include the rendering safe and/or disposal of explosive ordnance that has become hazardous through damage or deterioration, when such tasks are beyond the capabilities of personnel normally assigned responsibility for routine disposal. Note 2: The presence of ammunition and explosives during disarmament opera- tions inevitably requires some degree of EOD response. The level of EOD response will be dictated by the condition of the ammunition or explosives, their level of deterioration and the way in which the local community handles them. Firearms: Any portable barreled weapon that expels, is designed to expel or may be readily converted to expel a shot, bullet or projectile by the action of an explosive, excluding antique firearms of their replicas. Antique firearms and their replicas shall be defined in accordance with domestic law. In no case, however, shall antique firearms include firearms manufactured after 1899. Light weapon: Any man-portable lethal weapon designed for use by two or three persons serving as a crew (although some may be carried and used by a single person) that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, heavy machine guns, hand-held under-barrel and mounted grenade launchers, portable anti-aircraft guns, portable anti-tank guns, recoilless rifles, portable launchers of anti- tank missile and rocket systems, portable launchers of anti-aircraft missile systems, and mortars of a calibre of less than 100 mil- limetres, as well as their parts, components and ammunition. Note 2: Excludes antique light weapons and their replicas. Marking: The application of permanent inscriptions on weapons, ammunition and ammunition packaging to permit their identification. Render safe procedure (RSP): The application of special explosive ordnance disposal methods and tools to provide for the interruption of functions or separation of essential components to prevent an unacceptable detonation. Safe to move: A technical assessment, by an appropriately qualified technician or tech- nical officer, of the physical condition and stability of ammunition and explosives prior to any proposed move. Should the ammunition and explosives fail a \u2018safe to move\u2019 inspection, they must be destroyed in situ (i.e., at the place where they are found) by a qualified EOD team acting under the advice and control of the qualified technician or technical officer who conducted the initial \u2018safe to move\u2019 inspection. Small arm: Any man-portable lethal weapon designed for individual use that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, revolvers and self-loading pistols, rifles and carbines, sub-machine guns, assault rifles and light machine guns, as well as their parts, compo- nents and ammunition. Note 2 : Excludes antique small arms and their replicas. Stockpile: In the context of DDR, the term refers to a large accumulated stock of weap- ons and explosive ordnance.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "728535ee-ce89-49e6-a548-6f63b0dbbc89", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 7, + "Paragraph": "Introduction Disarmament is generally understood to be the act of reducing or eliminating arms and, as such, is applicable to all weapons systems, ammunition and explosives, including nuclear, chemical, biological, radiological and conventional systems. This module will focus only on conventional weapons systems and ammunition that are typically held by members of armed forces and groups dealt with during DDR programmes.3 When transitioning out of armed conflict, States may be vulnerable to conflict relapse, particularly if key conflict drivers, including the proliferation of arms and ammunition, remain unaddressed. Inclu- sive and effective arms control, and disar- mament in particular, is critical to prevent and reduce armed conflict and crime and to support recovery and development, as reflected in the 2030 Agenda for Sustaina- ble Development and the Security Council and General Assembly\u2019s 2016 resolutions on sustaining peace. National arms control management systems encompass more than just disarmament. Therefore, disarmament operations should be planned and conduct- ed in coordination with, and in support of, other arms control and reduction measures, including SALW control (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). The disarmament component of any DDR programme should be specifically de- signed to respond and adapt to the security environment. It should also be planned in coherence with wider peace-making, peacebuilding and recovery efforts. Disarma- ment plays an essential role in maintaining a secure environment in which demobili- zation and reintegration can take place as part of a long-term peacebuilding strategy. Depending on the context, DDR phases could be differently sequenced with, for exam- ple, demobilization and reintegration paving the way for disarmament. The disarmament component of a DDR programme will usually consist of four main phases: Operational planning; Weapons collection; Stockpile management; Disposal of collected materiel. The cross-cutting activities that should take place throughout these four main phases are data collection, awareness raising, and monitoring and evaluation. Within each phase there are also a number of recommended specific components (see Table 1). TABLE 1: MAIN PHASES OF THE DISARMAMENT COMPONENT OF A DDR PROGRAMME", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c0e216fd-9887-42c0-b29f-fbe3894a5a63", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the disarmament component of DDR programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9cd51f5e-a09a-4e7a-b596-4f57fcf0a672", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Voluntary In order to lay the foundation for an effective DDR programme and sustainable peace, disarmament shall be voluntary. Forced disarmament can have a negative impact on contexts in transition, including in terms of restoring trust in authorities and efforts towards national reconciliation. In addition, removing weapons forcibly from com- batants or persons associated with armed forces and groups risks creating a security vacuum and an imbalance in military capabilities which may generate increased tensions and lead to a resumption of armed violence. Voluntary disarmament should be facilitated through strong sensitization and communication efforts. It should also be underpinned by firm guarantees of security and immunity from prosecution for the illegal possession of weapon(s) handed in.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "bfbbc560-620a-47b2-ae58-a304b680530e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 9, + "Paragraph": "Unconditional release and protection of children Agreeing on child-specific disarmament procedures avoids further possible abuse and exploitation of children, especially for political or tactical gain; and, prepares children for separate and specific child-related demobilization and reintegration processes (see IDDRS 5.20 on Children and DDR). Specific attention should also be given to the disar- mament of youth (see IDDRS 5.30 on Youth and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6aa3f7ea-0e04-40bc-bc01-b5aec8ab244a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 9, + "Paragraph": "Gender-responsive and inclusive Disarmament activities must not introduce distinctions based on sex, race, ethnicity, religion or other arbitrary criteria that may create or exacerbate vulnerabilities and power imbalances. All stages of disarmament or other arms control initiatives must integrate gender and age considerations, including the differing impacts and percep- tions of such processes on women, men, boys and girls. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data, and the meaningful participation of women and girls at each stage of the process. A gender-transformative approach actively examines, questions and changes unequal gender norms and imbalances of power. A gender-transformative approach thus helps countries to promote equitable rights and health, and contributes to the prevention of sexual and gender-based violence. A gender-transformative DDR programme should acknowledge, incorporate and address messages on masculinities and violence, including the linkage between masculinities and weapons ownership. Gender-transformative DDR programmes should also ensure that there are both male and female UN military personnel in leadership roles at pick-up points and mobile disarmament sites, and par- ticipating in the destruction of weapons. All precautions shall also be taken to avoid reinforcing or generating gender inequalities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "679f0099-487c-4d16-a508-ad3951e030f7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 9, + "Paragraph": "Conflict sensitive Disarmament operations shall not increase the vulnerability of communities, groups or individuals to internal or external threats. Disarmament strategies should therefore be based on a thorough analysis of the security context, relevant actors and their mil- itary capabilities to avoid creating a security imbalance or vacuum, leading to further tensions or jeopardizing the implementation of a peace agreement.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "17f9a69e-c461-4a26-b39b-1f8c9185a9d0", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 9, + "Paragraph": "Nationally and locally owned National Governments have the right and responsibility to apply their own national standards to all disarmament operations on their territory and shall act in compliance with international arms control instruments and applicable legal frameworks. The pri- mary responsibility for disarmament and weapons collection lies with the Govern- ment of the affected State. The support and specialist knowledge of the UN is placed at the disposal of a national Government to ensure that disarmament planning and implementation are conducted in accordance with international arms control instru- ments, standards and guidance, including those of the IDDRS, the IATG and MOSAIC. Strong national ownership is important, including where the UN is supporting DDR programmes in non-mission settings. Building national and local institutional and technical capacity is essential to the effective, successful, sustainable continuation of disarmament and other arms control efforts.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e25baea3-3014-4d2b-b5ad-6aeb24a1f420", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 10, + "Paragraph": "Safety and security Handling weapons, ammunition and explosives comes with high levels of risk. The involvement of technically qualified WAM advisers in the planning and implemen- tation of disarmament operations is critical to their safety and success. Technical advisers shall have formal training and operational field experience in ammunition and weapons storage, marking, transportation, deactivation and the destruction of arms, ammunition and explosives, as relevant.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "4431e2c4-76da-472f-ba57-f47805abd16d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 10, + "Paragraph": "Planning and designing disarmament operations In order to effectively implement the disarmament component of a DDR programme, meticulous planning is required. Planning for disarmament operations includes infor- mation collection, a risk and security assessment, identification of eligibility criteria, the development of standard operating procedures (SOPs), the identification of the dis- armament team structure, and a clear and realistic timetable for operations. All disar- mament operations shall be based on gender responsive analysis. The disarmament component is often the first stage of the entire DDR programme, and operational decisions made at this stage will have an impact on subsequent stages. Disarmament, therefore, cannot be designed in isolation from the rest of the DDR pro- gramme, and integrated assessment and DDR planning is key (see IDDRS 3.10 on Inte- grated DDR Planning: Processes and Structures, and IDDRS 3.11 on Integrated Assessments). It is essential to determine the extent of the capability needed to carry out a disar- mament component, and then to compare this with a realistic appraisal of the current capacity available to deliver it. Requests for further assistance from the UN mission military and police components shall be made as early as possible in the planning stage (see IDDRS 4.40 on UN Military Roles and Responsibilities and IDDRS 4.50 on UN Police Roles and Responsibilities). In non-mission settings, requests for capacity development assistance for disarmament operations may be directed to relevant UN agency(ies). Key terms and conditions for disarmament should be discussed during the peace negotiations and included in the agreement (see IDDRS 2.20 on The Politics of DDR). This requires that parties and mediators have an in-depth understanding of disarmament and arms control, or access to expertise to guide them and provide a common under- standing of the different options available. In some contexts, the handover of weapons from one party to another (for example, from armed groups to State institutions) may be inappropriate, resulting in the need for the involvement of a neutral third party.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f740c3d2-19ed-438c-adf8-24fa5ca592de", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 11, + "Paragraph": "Information collection Initial planning should be based on a careful data collection and analysis on the armed forces and groups to be disarmed, disaggregated by sex and age, as well as an analysis of the dynamics of armed violence and illicitly held weapons and ammunition. DDR programmes are increasingly implemented in environments with a myriad of armed forces and groups whose alliances are fluid or unclear, often within a context of weak State institutions and fragile or absent rule of law. Solid analysis informed by continu- ous data gathering and assessment is essential in order to navigate these challenging, rapidly changing environments.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "73d9eafb-1339-47f8-bd33-9dc1806eaea5", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 11, + "Paragraph": "Integrated assessment A DDR integrated assessment should start as early as possible in the peace negotiation process and the pre-planning phase (see IDDRS 3.11 on Integrated Assessments). This assessment should contribute to determining whether disarmament or any transitional arms control initiatives are desirable or feasible in the current context, and the potential positive and negative impacts of any such activities. The collection of information is an ongoing process that requires sufficient resources to ensure that assessments are updated throughout the lifecycle of a DDR programme. Information management systems and data protection measures should be employed from the start by DDR practitioners with support from the UN mission or lead UN agency(ies) Information Technology (IT) unit. The collection of data relating to weapons and those who carry them is a sensitive undertaking and can present sig- nificant risks to DDR practitioners and their sources. United Nations security guide- lines should be followed at all times, particularly with regards to protecting sources by maintaining their anonymity. Integrated assessments should include information related to the political and security context and the main drivers of armed conflict. In addition, in order to design evidence-based, age-specific and gender-sensitive disarmament operations, the inte- grated assessment should include: An analysis of the memberships of armed forces and groups (number, origin, age, sex, etc.) and their arsenals (estimates of the number and the type of weapons, ammunition and explosives); An analysis of the patterns of weapons possession among men, women, girls, boys, and youth; A mapping of the locations and access routes to materiel and potential caches (to the extent possible); An understanding of the power imbalances and disparities in weapons possession between communities; An analysis of the use of weapons in the commission of serious human rights violations or abuses and grave breaches of international humanitarian law, as well as crime, including organized crime; An understanding of cultural and gendered attitudes towards weapons and the value of arms and ammunition locally; The identification of sources of illicit weapons and ammunition and possible trafficking routes; Lessons learnt from any past disarmament or weapons collections initiatives; An understanding of the willingness of and incentives for armed forces and groups to participate in DDR. An assessment of the presence of armed groups not involved in DDR and the possible impact these groups can have on the DDR process. Methods to gather data, including desk research, telephone interviews and face-to-face meetings, should be adapted to the resources available, as well as to the security and po- litical context. Information should be centralized and managed by a dedicated focal point. Once sufficient, reliable information has been gathered, collaborative plans can be drawn up by the National DDR Commission and the UN DDR component in mis- sion settings or the National DDR Commission and lead UN agency(ies) in non-mis- sion settings outlining the intended locations and site requirements for disarmament operations, the logistics and staffing required to carry out disarmament, and a timetable for operations.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "671e6b77-5eb2-40b8-9e79-6c184e06bba6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 13, + "Paragraph": "Weapons survey An accurate and detailed weapons survey is essential to draw up effective and safe plans for the disarmament component of a DDR programme. Weapons surveys are also important for transitional weapons and ammunition management activities (ID- DRS 4.11 on Transitional Weapons and Ammunition Management). Sufficient data on the number and type of weapons, ammunition and explosives that can be expected to be recovered are crucial. A weapons survey enables the accurate definition of the extent of the disarmament task, allowing for planning of the collection and future storage and destruction requirements. The more accurate and verifiable the initial data regarding the specifically identified armed forces and groups participating in the con- flict, the better the capacity of the UN to make appropriate plans or provide national authorities with relevant advice to achieve the aims of the disarmament component. Data disaggregated by sex and age is a prerequisite for understanding the age- and gender-specific impacts of arms misuse and for designing evidence-based, gen- der-responsive disarmament operations to address them. It is important to take into consideration the fact that, while women may be active members of armed groups, they may not actually hold weapons. Evi- dence has shown that female combatants have been left out of DDR processes as a result of this on multiple occasions in the past. A gender-responsive mapping of armed forces and groups is therefore critical to identify patterns of gender-differentiated roles within armed forces and groups, and to ensure that the design of any approach is appropriately targeted. A weapons survey should be implemented as early as possible in the planning of a DDR programme; however, it requires significant resources, access to sensitive and often unstable parts of the country, buy-in from local authorities and ownership by national authorities, all of which can take considerable time to pull together and secure. A survey should draw on a range of research methods and sources in order to collate, compare and confirm information (see Annex C on the methodology of weapons surveys).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2e50d487-e49d-4004-8aad-dbdf38bf9bd4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Objectives of disarmament The overarching aim of the disarmament component of a DDR programme is to control and reduce arms, ammunition and explosives held by combatants before demobilization in order to build confidence in the peace process, increase security and prevent a return to conflict. Clear operational objectives should also be developed and agreed. These may include: A reduction in the number of weapons, ammunition and explosives possessed by, or available to, armed forces and groups; A reduction in actual armed violence or the threat of it; Optimally zero, or at the most minimal, casualties during the disarmament component; An improvement in the perception of human security by men, women, boys, girls and youth within communities; A public connection between the availability of weapons and armed violence in society; The development of community awareness of the problem and hence community solidarity; The reduction and disruption of the illicit trade of weapons within the DDR area of operations; A reduction in the open visibility of weapons in the community; A reduction in crimes committed with weapons, such as conflict-related sexual violence; The development of norms against the illegal use of weapons.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c3a5d542-15b0-45ec-8f86-500e3dc80698", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Risk and security assessment A comprehensive risk and security assessment should be conducted to inform the planning of disarmament operations and identify threats to the DDR programme and its personnel, as well as to participants and beneficiaries. The assessment should iden- tify the tolerable risk (the risk accepted by society in a given context based on cur- rent values), and then identify the protective measures necessary to achieve a residual risk (the risk remaining after protective measures have been taken). Risks related to women, youth, children and other specific-needs groups should also be considered. Operational and technical risks to be assessed when considering which approach to take might relate to the combatants themselves, as well as to the types of weapons, ammunition and explosives being collected, and to external threats. In developing this \u2018safe\u2019 working environment, it must be acknowledged that there can be no absolute safety, and that many of the activities carried out during weapons collection operations have a high risk associated with them. However, national author- ities, international organizations and non-governmental organizations (NGOs) must try to achieve the highest possible levels of safety.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "05c2abaf-74e6-44b1-a5e8-ed4b5e37ed65", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 15, + "Paragraph": "Operational risks There are likely to be several operational risks, depending on the context, including the following: Threats to the safety and security of DDR programme personnel (both UN and non-UN): During the disarmament phase of the DDR programme, staff are likely to be in direct contact with armed individuals, including members of both armed forces and groups. Staff should be conscious not only of the risks associated with handling weapons, ammunition and explosives, but also of the risks of unpre- dictable behaviour as a result of the significant levels of stress that disarmament activities can generate among combatants and other stakeholders. Avoid supporting weapons buy-back: UN supported DDR programmes shall avoid attaching monetary value to weapons as a means of encouraging their surrender by members of armed forces and groups. Weapons buy-back programmes within and outside DDR have proven to be inefficient and even counter-productive as they tend to fuel national and regional arms flows, which in the end can jeopardize the achievement of disarmament objectives in a DDR programme. Buy-back pro- grammes can also have unintended societal consequences such as economically rewarding combatants and exacerbating existing gender inequalities Disarmament of foreign combatants: Disarmament operations may also need to consider armed foreign combatants. Foreign combatants may be disarmed in the host country or at the border of the country of origin to which they will be returning. DDR programmes should plan for disarmament of foreign combatants within or outside repatriation agreements between the country of origin and the host country (see IDDRS 5.40 on Cross-Border Population Movements). Terrorism and violent extremism threats: DDR programmes are increasingly being conducted in contexts affected by terrorism. Disarmament operations in these contexts require the highest security safeguards and robust on-site WAM expertise to maximize the safety of all involved. DDR practitioners should be aware of the requirements imposed on States by UN Security Council resolutions 2370 (2017) and 2482 (2019) and Council\u2019s 2015 Madrid Guiding Principles and its 2018 Addendum, in terms of, inter alia, ensuring that appropriate legal actions are taken against those who knowingly engage in providing terrorists with weapons.4 Lack of sustainability: Disarmament operations shall not start unless the sus- tainability of funding and resources is guaranteed. Previous attempts to carry out disarmament operations with insufficient assets and funds have resulted in unconstructive, partial disarmament, a return to armed conflict, and the failure of the entire DDR process. The reconfiguring and closing of UN missions is another crucial moment that should be planned in advance. Such transitions often require handing over responsibility to national authorities or to the United Nations Country Team (UNCT). It is important to ensure these entities have the mandate and capacity to complete the DDR programme even after the withdrawal of UN mission resources.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6136d4e9-001a-47fc-b375-4f6ea01d33cc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 16, + "Paragraph": "Technical risks and hazards In order to deal with potential technical threats during the disarmament component of DDR programmes, and to implement an appropriate response to such threats, it is necessary to distinguish between risks and hazards. Commonly, a hazard is defined as \u201ca potential source of physical injury or damage to the health of people, or damage to property or the environment,\u201d while a risk can be defined as \u201cthe combination of the probability of occurrence of a hazard and the severity of that hazard\u201d (see ISO/IEC Guide 51: 2014 [E)). In terms of disarmament operations, many hazards are created by the presence of weapons, ammunition and explosives. The level of risk is mostly dependent on the knowledge and training of the disarmament teams (see section 5.7). The physical con- dition of the weapons, ammunition and explosives and the environment in which they are handed over or stored have a major effect on that risk. A range of techniques for estimating risk are contained in IATG 2.10 on Introduction to Risk Management Prin- ciples and Processes. All relevant guidelines contained in the IATG should be strictly adhered to in order to ensure the safety of all persons and assets when handling con- ventional ammunition. Adequate expertise is critical. Unqualified personnel should never handle ammunition or any type of explosive material.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b30dc47f-2b6d-466c-8aa0-986ea50d4b99", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 16, + "Paragraph": "Gender-sensitive disarmament operations If women are not adequately integrated into DDR programmes, and disarmament op- erations in particular, gender stereotypes of masculinity associated with violence, and femininity dissociated from power and decision-making, may be reinforced. If imple- mented in a gender-sensitive manner, a DDR programme can actually highlight the constructive roles of women in the transition from conflict to sustainable peace. Disarmament can increase a combatant\u2019s feeling of vulnerability. In addition to providing physical protection, weapons are often seen as important symbols of power and status. Men may experience disarmament as a symbolic loss of manhood and sta- tus. Undermined masculinities at all ages can lead to profound feelings of frustra- tion and disempowerment. For women, disarmament can threaten the gender equality and respect that may have been gained through the possession of a weapon while in an armed force or group. DDR programmes should explore ways to promote alternative symbols of power that are relevant to particular cultural contexts and that foster peace dividends. This can be done by removing the gun as a symbol of power, addressing key concerns over safety and protection, and developing strategic engagement with women (particularly female dependants) in disarmament operations. Female combatants and women and girls associated with armed forces and groups are common in armed conflicts across the world. To ensure that men and women have equal rights to participate in the design and implementation of disarmament opera- tions, a gender-inclusive and -responsive approach should be applied at every stage of assessment, planning, implementation, and monitoring and evaluation. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data, and the meaningful participation of women at each stage of the DDR process. Gender-sensitive disarmament operations are proven to be more effective in addressing the impact of the illicit circulation and misuse of weapons than those that do not incorporate a gender perspective (MOSAIC 6.10 on Women, Men and the Gendered Nature of Small Arms and Light Weapons). Therefore, ensuring that gender is adequately integrated into all stages of disarmament and other DDR-related arms control initiatives is essential to the overall success of DDR processes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5fcf604a-7c3e-42fa-9424-40365ad89910", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 17, + "Paragraph": "Eligibility criteria for access to DDR programmes Establishing rigorous, unambiguous and transparent criteria that allow people to par- ticipate in DDR programmes is vital to achieving the objectives of DDR. Eligibility cri- teria must be carefully designed and agreed to by all parties, and screening processes must be in place in the disarmament stage. Eligibility for a DDR programme may or may not require the physical possession of a weapon and/or ammunition, depending on the context. The determination of eligi- bility criteria shall be based on the content of the peace agreement or ceasefire, if these documents include relevant provisions, as well as the results of the aforementioned integrated assessment. In either case, eligi- bility for a DDR programme must be gender inclusive and shall not discriminate on the basis of age or gender. Participants in DDR programmes may include individuals in support and non-combatant roles or those associated with armed forces and groups, including children. As these individuals are typically unarmed, they may not be eligible for dis- armament, but will be eligible for demobilization and reintegration (see IDDRS 3.21 on Participants, Beneficiaries and Partners). Historically, women who are eligible to par- ticipate in DDR programmes may not be aware of their eligibility, may be deliberately excluded by commanders or may be deprived of their weapons to the benefit of men seeking to enter the DDR programme. For these reasons, DDR practitioners shall be aware of different categories of eligibility and should ensure that proper public infor- mation and sensitization with commanders and potential DDR participants and bene- ficiaries is completed (on female participants and beneficiaries, see Figure 1 and Box 3). Eligibility criteria must be designed to prevent individuals who are not members of armed forces and groups from gaining access to DDR programmes. The prospect of a DDR programme and the associated benefits can present an enticement to many individuals. Furthermore, armed groups that inflate their membership numbers to in- crease their political weight could try to rapidly recruit civilians to meet the short- fall. The screening process is used to confirm whether individuals meet the eligibility criteria for entering the DDR programme (see IDDRS 4.20 on Demobilization). Close cooperation with the leadership of armed forces and groups, civil society (including women\u2019s groups), local police and national DDR-related bodies, and a well-conducted public information and sensitization campaign are essential tools to ensure that only those who are eligible participate in a DDR programme (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "30ceab6c-c3c9-41b5-bdca-4d09ed72d9c3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": null, + "Paragraph": "Eligibility criteria must be designed to prevent individuals who are not members of armed forces and groups from gaining access to DDR programmes. The prospect of a DDR programme and the associated benefits can present an enticement to many individuals. Furthermore, armed groups that inflate their membership numbers to increase their political weight could try to rapidly recruit civilians to meet the short- fall. The screening process is used to confirm whether individuals meet the eligibility criteria for entering the DDR programme (see IDDRS 4.20 on Demobilization). Close cooperation with the leadership of armed forces and groups, civil society (including women\u2019s groups), local police and national DDR-related bodies, and a well-conducted public information and sensitization campaign are essential tools to ensure that only those who are eligible participate in a DDR programme (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Weapons-related eligibility criteria Depending on the context and the content of the ceasefire and/or peace agreement, eligibility for a DDR programme can include specific weapons/ammunition-related criteria. These criteria should be based on a thorough understanding of the context if effective disarmament is to be achieved. The arsenals of armed forces and groups vary in size, quality and types of weapons. For instance, in conflicts where foreign States actively support armed groups, these groups\u2019 arsenals are often quite large and varied, including not only serviceable SALW but also heavy-weapons systems. Past experience shows that the eligibility criteria related to weapons and ammu- nition are often not consistent or stringent enough. This can lead to the inclusion of individuals who are not members of armed forces and groups and the collection of poor-quality materiel while illicit serviceable materiel remains in circulation. Accurate information regarding armed forces and groups\u2019 arsenals (see section 5.1) is key in determining relevant and effective weapons-related criteria. These include the type and status (serviceable versus non-serviceable) of weapons or the quantity of ammu- nition that a combatant should bring along in order to be enrolled in the programme. According to the context, the ratio of arms and ammunition to individual combatants can vary and may include SALW as well as heavy weapons and ammunition. In order to ascertain their eligibility, combatants may also need to take a weapons procedures test, which will identify their familiarity with and ability to handle weapons. Although members of armed groups may not have received formal training to military standards, they should be able to demonstrate an understanding of how to use a weapon. This test should be balanced against other ways to identify combatant status (see IDDRS 4.20 on Demobilization). Children with weapons should be disarmed but should not be required to demonstrate their capacity to use a weapon or prove familiarity with weap- onry to be admitted to the DDR programme (see IDDRS 5.20 on Children and DDR). All weapons brought by ineligible individuals as part of a disarmament operation shall be collected even if these individuals will not be eligible to enter the DDR programme. To avoid confusion and frustration, it is key that eligibility criteria are communi- cated clearly and unambiguously to members of armed groups and the wider popu- lation (see Box 4 and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Legal implications should also be clearly explained \u2013 for example, that the voluntary submission of weapons during the disarmament phase by eligible and ineligible individuals will not result in prosecution for illegal possession.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "1d17e95f-b644-4a15-a485-acc35d38bc37", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Standard operating procedures Standard operating procedures (SOPs) are a set of mandatory step-by-step instructions designed to guide practitioners within a particular DDR programme in the conduct of disarmament operations and subsequent WAM activities. The development of disar- mament SOPs has become common practice across DDR programmes, as it allows for coherence in the delivery of activities, ensuring greater safety and security through adherence to standardized regulations. In mission contexts, SOPs should identify the precise responsibilities of the various UN components involved in disarmament. All stakeholders should agree on the content of the SOP(s), and the document(s) should be reviewed by the UN\u2019s legal office at Headquarters. The development of SOPs is led by the DDR component, with the support of WAM advisers, and signed off by the head of the UN mission. All staff from the DDR component as well as UN military component members and any other partners supporting disarmament activities shall be familiar with the relevant SOPs. The content of SOPs shall be kept up to date. In non-mission contexts, the national authority should also be advised by the lead UN agency(ies) on the development of national SOPs for the safe, effective and efficient conduct of the disarmament component of the DDR programme. All those engaged in supporting disarmament operations shall also be familiar with the relevant SOPs. A single disarmament SOP, or a set of SOPs each covering specific procedures related to disarmament activities, should be informed by the integrated assessment and the national DDR policy document, and comply with international guidelines and standards (IATG and MOSAIC), as well as with national laws and international obli- gations of the country where the programme is being implemented (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). SOPs should cover all disarmament-related activities and include two lines of management procedures: one for ammunition and explosives, and one for weapons systems. The SOP(s) should refer to and be consistent with any other WAM SOPs adopt- ed by the mission and/or national authorities. While some missions and/or national authorities have developed a single disar- mament SOP, others have preferred a set of SOPs. Regardless, SOPs should cover the following procedures: Reception of arms and/or ammunition and explosives in static or mobile disarmament; Compliance with weapons- and ammunition-related eligibility criteria (e.g., what is considered a serviceable weapon?); Weapons storage management; Ammunition and explosives storage management; Accounting for weapons and ammunition; Transportation of weapons; Transportation of ammunition; Storage checks; Reporting and investigating loss or theft; Destruction of weapons (or other appropriate methods of disposal and potential marking); Destruction of ammunition (or other appropriate methods of disposal). Managing spontaneous disarmament, including in advance of a formal DDR process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "7fbb9bda-fdc2-4115-8b54-e5cccdd3de09", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 22, + "Paragraph": "Disarmament team structure The disarmament team is responsible for implementing all operational procedures for disarmament: physical verification of arms and ammunition, recording of materiel, issuance of disarmament receipts/certificates, storage of materiel, and the destruction of unsafe ammunition and explosives.5 WAM advisers (see Box 5) should be duly incorporated from the planning stage throughout the implementation of the disarmament phase. As per the IATG, force commanders (military component) should designate a force explosives safety officer responsible for advising on all arms, ammunition and explosives safety matters, in- cluding with regards to DDR activities (see Annex L of IATG 01.90). A disarmament team should include a gender-balanced composition of: DDR practitioners; A representative of the national DDR commission (and potentially other national institutions); An adequately sized technical support team from a specialized UN agency or NGO, including a team leader/WAM adviser (IMAS EOD level 3), two weapons inspectors to identify weapons and assess safety of items, registration officers, storemen/women and a medic; Military observers (MILOBs) and representatives from the protection force; National security forces armament specialists (police, army and/or gendarmerie); A representative from the mission\u2019s department for child protection; A national gender specialist. A national youth specialist. Depending on the provisions of the ceasefire and/or peace agreement and the national DDR policy document, commanders of armed groups may also be part of the disarmament team. Disarmament teams should receive training on the disarmament SOPs (see section 5.6), the chain of procedures involved in conducting disarmament operations, entering data into the registration database, and the types of arms and ammunition they are likely to deal with and their safe handling. Training should be designed by the DDR component with the support of WAM/EOD-qualified force representatives or a specialized UN agency or NGO. DDR practitioners and other personnel who are not arms and ammunition specialists should also attend the training to ensure that they fully understand the chain of operations and security procedures involved; how- ever, unless qualified to do so, staff shall not handle weapons or ammunition at any stage. Before the launch of operations, a simulation exercise should be organized to test the planning phase, and to support each stakeholder in understanding his or her role and responsibilities. The mission DDR component, specialized UN agencies, and the military component should identify liaison officers to facilitate the implementation of disarmament operations In non-mission settings, the conduct and security of disarmament operations may rely on national security forces, joint commissions or teams and on national specialists with technical support from relevant UN agency (ies), multilateral and bilateral part- ners. The UN and partners should support the organization of training for national disarmament teams to develop capacity.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "da92d011-afa0-4686-afc5-68baa7b5443d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 23, + "Paragraph": "Timelines for disarmament Timelines for the implementation of the disarmament component of a DDR programme should be developed by taking the following factors into account: The provisions of the peace agreement or the ceasefire agreement; The availability of accurate information about demographics, including sex and age, as well as the size of the armed forces and groups to be disarmed; The location of the armed forces\u2019 and groups\u2019 units and the number, type and location of their weapons; The nature, processing capacity and location of mobile and static disarmament sites; The time it takes to process each ex-combatant or person formerly associated with an armed force or group (this could be anywhere from 15 to 20 minutes per per- son). The simulation exercise will help to determine how long individual weapons collection and accounting will take. Depending on the nature of the conflict and other political and social conditions, a well-planned and well-implemented disarmament component may see large numbers of combatants and persons associated with armed forces and groups arriving for dis- armament during the early stages of the DDR programme. The number of individuals reporting for disarmament may drop in the middle of the process, but it is prudent to plan for a rush towards the end. Late arrivals may report for disarmament because of improved confidence in the peace process or because some combatants and weapons have been held back until the final stages of disarmament as a self-protection measure. The minimum possible time should be taken to safely process combatants and persons associated with armed forces and groups through the disarmament and demobilization phases, and then back into the community. This swiftness is necessary to avoid a loss of momentum and to prevent former combatants and persons formerly associated with armed forces and groups from settling in temporary camps away from their communities. Depending on the context, individuals may leave armed groups and engage in spontaneous disarmament outside of official DDR programme and disarmament operations (see section 6.3). In such situations, DDR practitioners should ensure adher- ence to this disarmament standard as much as possible. To facilitate this spontaneous disarmament process, procedures and timelines should be clearly communicated to authorities, members of armed groups and the wider community.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9b64695e-7e6f-4451-93b2-d382ec853344", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 24, + "Paragraph": "Disarmament locations The planning of disarmament operations should be initiated at the peace negotiations stage when the appropriate modus operandi for disarming combatants and persons associated with armed forces and groups will be set out. The UN should support the national authorities in identifying the best disarmament approach. Mobile and static approaches have been developed to fit different contexts and constraints, and can be combined to form a multi-strand approach. Depending on the national strategy and the sequencing of DDR phases, the disarmament component may be intrinsically linked to demobilization, and sites for both activities could be combined (see IDDRS 4.20 on Demobilization). The selection of the approach, or combination of approaches, to take should be based on the following: Findings from the integrated assessment and weapons survey, including a review of previous approaches to disarmament (see section 5.1); Discussions and strategic planning by the national authorities; Exchanges with leaders of armed forces and groups; The security and risk assessment; Gender analysis; Financial resources. Notwithstanding the selection of the specific disarmament approach, all combatants and persons associated with armed forces and groups should be informed of: The time and date to report, and the location to which to report; Appropriate weapons and ammunition safety measures; The activities involved and steps they will be asked to follow; The level of UN or military security to expect on arrival.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "85ff4d25-439e-47ad-af4e-7c1f2ee19494", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 23, + "Paragraph": "Static disarmament Static or site-based (cantonment) disarmament uses specifically designed disarma- ment sites to carry out the disarmament operation. These require detailed planning and considerable organization and rely on the coordination of a range of implementing partners. The establishment and management of disarmament sites should be specif- ically included in the peace agreement to ensure that former warring factions agree and are aware that they have a responsibility under the peace agreement to proceed to such sites. Depending on the disarmament plan, geographic and security constraints, combatants and persons associated with armed forces and groups can move directly to disarmament sites, or their transportation can be organized through pick-up points. Pick-up points The role of pick-up points (PUPs) is to concentrate combatants and persons associated with armed forces and groups in a safe location, prior to a controlled and supervised move to designated disarmament sites. Administrative and safety processes begin at the PUP. There are similarities between procedures at the PUP and those carried out during mobile disarmament operations, but the two processes are different and should not be confused. Members of armed forces and groups that report to a PUP will then be moved to a disarmament site, while those who enter through the mobile disarmament route will be directed to make their way to demobilization. PUPs are locations agreed to in advance by the leaders of armed forces and groups and the UN mission military component. They are selected because of their conveni- ence, security and accessibility for all parties. The time, date, place and conditions for entering the disarmament process should be negotiated by commanders, the National DDR Commission and the DDR component in mission settings and the UN lead agen- cy(ies) in non-mission settings. Combatants often need to be moved from rural locations, and since many armed forces and groups will not have adequate transport, PUPs should be situated close to their positions. PUPs shall not be located in or near civilian areas such as villages, towns or cities. Special measures should be considered for children associated with armed forces and groups arriving at PUPs (see IDDRS 5.20 on Children and DDR). Gender-responsive provisions shall also be planned to provide guidance on how to process female combatants and WAAFG, including DDR/UN military staff composed of a mix of genders, separation of men and women during screening and clothing/ baggage searches at PUPs, and adequate medical support particularly in the case of pregnant and lactating women (see IDDRS 5.10 on Women, Gender and DDR). Disarmament operations should also include combatants and persons associated with armed forces and groups with disabilities and/or chronically ill and/or wounded who may not be able to access the PUPs. These persons may also qualify for disarmament, while re- quiring special transportation and assistance by specialists, such as medical staff and psy- chologists (see IDDRS 5.70 on Health and DDR and IDDRS 5.80 on Disabilities and DDR). Once combatants and persons associated with armed forces and groups have ar- rived at the designated PUP, they will be met by male and female UN representatives, including military and child protection staff, who shall arrange their transportation to the disarmament site. This first meeting between armed individuals and UN staff shall be considered a high-risk situation, and all members of armed forces and groups shall be considered potentially dangerous until disarmed. At the PUP, combatants and persons associated with armed forces and groups may either be completely disarmed or may keep their weapons during movement to the disarmament site. In the latter case, they should surrender their ammunition. The issue of weapons surrender at the PUP will either be a requirement of the peace agree- ment, or, more usually, a matter of negotiation between the leadership of armed forces and groups, the national authorities and the UN. The following activities should occur at the PUP: Members of the disarmament team meet combatants and persons associated with armed forces and groups outside the PUP at clearly marked waiting areas; personnel deliver a PUP briefing, explaining what will happen at the sites. Qualified personnel check that weapons are clear of ammunition and made safe, ensuring that magazines are removed; combatants and persons associated with armed forces and groups are screened to identify those carrying ammunition and explosives. These individuals should be immediately moved to the ammunition area in the disarmament site. Qualified personnel conduct a clothing and baggage search of all combatants and persons associated with armed forces and groups; men and women should be searched separately by those of the same sex. Combatants and persons associated with armed forces and groups with eligible weapons and safe ammunition pass through the screening area to the transport area, before moving to the disarmament site. The UN shall be responsible for ensuring the protection and physical security of combatants and persons asso- ciated with armed forces and groups during their movement from the PUP. In non-mission settings, the national security forces, joint commissions or teams would be responsible for the above-mentioned tasks with technical support from relevant UN agency(ies), multilateral and bilateral partners. Those individuals who do not meet the eligibility criteria for entry into the DDR programme should leave the PUP after being disarmed and, where needed, transport- ed away from the PUP. Individuals with defective weapons should hand these over, but, depending on the eligibility criteria, may not be allowed to enter the DDR programme. These individuals should be given a receipt that shows full details of the ineligible weapon handed over. This receipt may be used if there is an appeal process at a later date. People who do not meet the eligibility criteria for the DDR programme should be told why and orientated towards different programmes, if available, including CVR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce89f90c-b7be-4803-9b35-0df43b260562", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Mobile disarmament In certain circumstances, the establishment of a fixed disarmament site may be inap- propriate. In such cases, one option is the use of mobile disarmament, which usually consists of a group of modified road vehicles and has the advantage of decreased logis- tical outlay, increased flexibility, reduced cost, and rapid deployment and assembly. A mobile approach permits a more rapid response than site-based disarmament and can be used when weapons are concentrated in a specific geographical area, when moving collected arms, or when assembling scattered members of armed forces and groups would be difficult or trigger insecurity. This approach allows for more flexibil- ity and for the limited movement of armed combatants and persons associated with armed forces and groups who remain in their communities. Mobile disarmament may also be more accessible to women, children, disabled and other specific-needs groups. While mobile disarmament ensures the limited movement of unsafe ammunition, a sound mobile WAM and EOD capacity is required to collect and destroy items on site and to transport arms and ammunition to storage facilities.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "552a07d6-eb66-4b0e-bd3e-76ce9ec00547", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 28, + "Paragraph": "Procedures for disarmament A disarmament SOP should state the step-by-step procedures for receiving weapons and ammunition, including identifying who has responsibility for each step and the gender-responsive provisions required. The SOP should also include a diagram of the disarmament site(s) (either mobile or static). Combatants and persons associated with armed forces and groups are processed one by one. Procedures, to be adapted to the context, are generally as follows. Before entering the disarmament site perimeter: The individual is identified by his/her commander and physically checked by the designated security officials. Special measures will be required for children (see IDDRS 5.20 on Children and DDR). Men and women will be checked by those of the same sex, which requires having both male and female officers among UN military/DDR staff in mission settings and national security/DDR staff in non-mission settings. If the individual is carrying ammunition or explosives that might present a threat, she/he will be asked to leave it outside the handover area, in a location identified by a WAM/EOD specialist, to be handled separately. The individual is asked to move with the weapon pointing towards the ground, the catch in safety position (if relevant) and her/his finger off the trigger. After entering the perimeter: The individual is directed to the unloading bay, where she/he will proceed with the clearing of his/her weapon under the instruction and supervision of a MILOB or representative of the UN military component in mission settings or designated security official in a non-mission setting. If the individual is under 18 years old, child protection staff shall be present throughout the process. Once the weapon has been cleared, it is handed over to a MILOB or representative of the military component in a mission setting or designated security official in a non-mission setting who will proceed with verification. If the individual is also in possession of ammunition for small arms or machine guns, she/he will be asked to place it in a separate pre-identified location, away from the weapons. The materiel handed in is recorded by a DDR practitioner with guidance on weap- ons and ammunition identification from specialist UN agency personnel or other arms specialists along with information on the individual concerned. The individual is provided with a receipt that proves she/he has handed in a weapon and/or ammunition. The receipt indicates the name of the individual, the date and location, the type, the status (serviceable or not) and the serial number of the weapon. Weapons are tagged with a code to facilitate storage, management and record- keeping throughout the disarmament process until disposal (see section 7.1). Weapons and ammunition are stored separately or organized for transportation under the instructions and guidance of a WAM adviser (see section 7.2 and DDR WAM Handbook Unit 11). Ammunition presenting an immediate risk, or deemed unfit for transport, should be destroyed in situ by qualified EOD specialists.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "fe764492-be06-4337-bfd3-fa3d322b0183", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 29, + "Paragraph": "Spontaneous disarmament outside of official disarmament operations In some contexts, in order to encourage individuals to leave armed groups when there is no DDR programme, a modus operandi for receiving combatants and persons as- sociated with armed groups may be established. This may include the identification of a network of reception points, such as DDR offices or peacekeeping camps, or the deployment of mobile disarmament units. Procedures should be communicated to au- thorities, members of armed groups and the wider community on a regular basis to en- sure all are informed and sensitized (see Box 4 and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). In the case peacekeeping camps are designated as reception points, the DDR com- ponent \u2013 in coordination with the military component and the battalion commander \u2013 should identify specific focal points within the camp to deal with combatants and persons associated with armed groups. These focal points should be trained in how to handle and disarm new arrivals, including taking gender-sensitive approaches with women and age-sensitive approaches with children, and in how to register and store materiel until DDR practitioners take over. Unsafe items should be stored in a pre-iden- tified or purpose-built area as advised by DDR WAM advisers until specialized UN agency personnel or force EOD specialists can assess the safety of the items and rec- ommend appropriate action.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9924dafe-1e91-4dc3-8114-8cb022910809", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 30, + "Paragraph": "Stockpile management phase The term \u2018stockpile management\u2019 can be defined as procedures and activities designed to ensure the safe and secure accounting, storage, transportation and handling of arms, ammunition and explosives. The IATG and MOSAIC shall guide the design and implementation of this phase, and qualified WAM advisers should develop relevant SOP(s) (see section 5.6). The stockpile management and destruction of ammunition and explosives require a much more detailed technical response, as the risks and haz- ards are greater than for weapons, and stockpiles present a larger logistical challenge. Ammunition and explosives shall be handled only by those with the necessary technical competencies.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "7f223b1f-47ce-4041-8053-c27ee660a5c9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Accounting for weapons and ammunition The recordkeeping of weapons, ammunition and explosives during the disarma- ment phase of a DDR programme is critical to the effective management of materiel, to ensure the transparency of the DDR programme, and to monitor activities and pre- vent diversion. Information management systems (IMS) used by DDR components and lead UN agency(ies) supporting national authorities for registering combatants and accounting for weapons should provide sufficient recorded information to allow for precise identification and tracking of the movement of materiel from the point of col- lection to the point of disposal (see IDDRS 4.20 on Demobilization). In order to support effective recording, close-up and full-frame photographs should be taken of each piece of materiel wherever possible.6 In smaller disarmament operations or when IMS has not yet been set for the cap- ture of the above information, a separate simple database should be developed to man- age weapons, ammunition and explosives collected. For example, the use of a standard- ized Excel spreadsheet template which would allow for the effective centralization of data. DDR components and UN lead agency(ies) should dedicate appropriate resources to the development and ongoing maintenance of this database and consider the estab- lishment of a more comprehensive and permanent IMS where disarmament operations will clearly involve the collection of thousands of weapons and ammunition. Owner- ship of data by the UN, the national authorities or both should be decided ahead of the launch of the DDR programme. Data should be protected in order to ensure the security of DDR participants and stockpiles but could be shared with relevant UN entities for analysis and tracing pur- poses, as appropriate. In instances where the peace agreement does not prevent the formal tracing or investigation of the weapons and ammunition collected, specialized UN entities including Panels of Experts or a Joint Mission Analysis Centre may analyse information and send tracing requests to national authorities, manufacturing countries or other former custodians of weapons regarding the origins of the materiel. These", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "eb405aba-ea25-4815-8085-863b10c471b4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 31, + "Paragraph": "TABLE 3: RECORDING SALW, AMMUNITION AND EXPLOSIVES entities should be given access to weapons, ammunition and explosives collected and also check firearms against INTERPOL\u2019s Illicit Arms Records and tracing Management System (iARMS) database. Doing this would shed light on points of diversion, supply chains, and trafficking routes, inter alia, which may contribute to efforts to counter proliferation and illicit trafficking and support the overall objectives of DDR. Forensic analysis may also lead to investigations regarding the licit or illicit origin of the collect- ed weapons and possible linkages to terrorist organizations, in line with UN Security Council resolutions 2370 (2017) and 2482 (2019). In a number of DDR settings, ammunition is generally handed in without its orig- inal packaging and will be loose packed and consist of a range of different calibres. Ammunition should be segregated into separate calibres and then accounted for in accordance with IATG 03.10 on Inventory Management.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6b78c647-3074-440a-86e4-fed32b25765c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Transportation of weapons and ammunition The transportation of dangerous goods from disarmament sites to storage areas should be planned in order to mitigate the risk of explosions and diversions. A WAM adviser should supervise the organization of materiel: arms and ammunition should be trans- ported separately and moved in different shipments. Similarly, whenever advisable for security reasons and practicable in terms of time and capacity, the weapons to be trans- ported should be made temporarily inactive by removing a principal functional part (e.g., bolt, cylinder, slide) and providing for separate transportation of ammunition, ultimately in a different shipment or convoy. All boxes and crates containing weapons or ammunition should be secured and sealed prior to loading onto transport vehicles. As most DDR materiel is transported by road, security of transportation should be ensured by the UN military component in mission settings or by national security forces or by designated security officials in non-mission settings. In the absence of qualified personnel, all ammunition and explosives other than small arms and machine gun ammunition7 should not be transported. In such cases, SOPs should provide directions and WAM advisers should be contacted to confirm instructions on how and where the remaining ammunition should be stored until rel- evant personnel are able to come and transport it or destroy it in situ. Upon receipt, the shipment should be checked against the DDR weapons and ammunition database, which should be updated accordingly, and a handover declara- tion should be signed.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1fd581bd-ce3d-4a79-85d8-aa643aa3736d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Storage The safety and security of collected weapons, ammunition and explosives shall be a primary concern. This is because the diversion of materiel or an unplanned stor- age explosion would have an immediate negative impact on the credibility and the objectives of the whole DDR programme, while also posing a serious safety and secu- rity risk. DDR programmes very rarely have appropriate storage infrastructure at their disposal, and most are therefore required to build their own temporary structures, for example, using shipping containers. Conventional arms and ammunition can be stored effectively and safely in these temporary facilities if they comply with international guidelines including IATG 04.10 on Field Storage, IATG 04.20 on Temporary Storage and MOSAIC 5.20 on Stockpile Management. The stockpile management phase shall be as short as possible. The sooner that collected weapons and ammunition are disposed of (see section 8), the better in terms of (1) security and safety risks; (2) improved confidence and trust; and (3) a lower requirement for personnel and funding. Post-collection storage shall be planned before the start of the collection phase with the support of a qualified DDR WAM adviser who will determine the size, location, staff and equipment required based on the findings of the integrated assessment (see section 5.1). The SOP should identify the actors responsible for securing storage sites, and a risk assessment shall be conducted by a WAM adviser in order to determine the optimal locations for storage facilities, including appropriate safety distances. The assessment shall also help identify priorities in terms of security measures to be adopted with regard to physical protection (see DDR WAM Handbook Unit 16). The content of DDR storage sites shall be checked and verified on a regular basis against the DDR weapons and ammunition database (see section 7.3.1). Any suspected loss or theft shall be reported immediately and investigated according to the SOP (see MOSAIC 5.20 for an investigative report template as well as UN SOP Ref.2017.22 on Loss of Weapons and Ammunition in Peace Operations). Weapons and ammunition must be taken from a store only by personnel who are authorized to do so. These personnel and their affiliation should be identified and authenticated before removing the materiel. The details of personnel removing and returning materiel should be recorded in a log, identifying their name, affiliation and signature, dates and times, weapons/ammunition details and the purpose of removal.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "72a518b4-d337-40b6-a80d-5f51cd742d06", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 33, + "Paragraph": "Storing weapons The storage of weapons is less technical than that of ammunition and explosives, with the primary risks being loss and theft due to poor management. Although options for security measures are often quite limited in the field, in order to prevent or delay theft, containers should be equipped with fixed racks on which weapons can be secured with chains or steel cables affixed with padlocks. Some light weapons that contain explosive components, such as man-portable air-defence systems, will present explo- sive hazards and should be stored with other explosive materiel, in line with guidance on Compatibility Groups as defined by IATG 01.50 on UN Explosive Hazard Classifi- cation Systems and Codes. To allow for effective management and stocktaking, weapons that have been collected should be tagged. Most DDR programmes use handwritten tags, including the serial number and a tag number, which are registered in the DDR database. How- ever, this method is not effective in the long term and, more recently, DDR components have been using purpose-made bar code tags, allowing for electronic reading, includ- ing with a smartphone. A physical stock check by number and type of arms should be conducted on a weekly basis in each storage facility, and the serial numbers of no less than 10 per cent of arms should be checked against the DDR weapons and ammunition database. Every six months, a 100 per cent physical stock check by quantity, type and serial number should be conducted, and records of storage checks should be kept for review and audit processes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f92b6756-cf40-492f-a26f-96cf1e3d387a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 33, + "Paragraph": "Storing ammunition and explosives The storage of ammunition and explosives, other than for small arms and machine guns (1.4 UN Hazard Division), requires highly qualified personnel, as the risks re- lated to this materiel are substantial. Technical guidance to minimize the risk of acci- dents and their effects is very specific with regard to storing ammunition and explo- sives in line with Compatibility Groups (see IATG 01.50) and distances (see IATG 2.20). Ammunition collected during the disarmament phase of a DDR programme is often of unknown status and may have been stored in non-optimal environmental condi- tions (e.g., high temperature/high humidity) that render ammunition unsafe. A thorough risk assessment of ammunition storage facilities shall be carried out by the WAM adviser. A range of quantitative and qualitative methods for this assessment are avail- able in IATG 2.10. In accordance with the IATG, all ammunition storage facilities should be at a min- imum of Risk-Reduction Process Level 1 compliance (see IATG 12.20) in order to miti- gate the risk of explosions and diversion. A physical stock check by quantity and type of ammunition should be conducted on a weekly basis. An accessible demolition area that can be used for the destruction of ammunition deemed unsafe and at risk of detonation or deflagration should be identified.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "71f602e5-f5ac-4460-8609-d5c81ba26f2e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 34, + "Paragraph": "Disposal phase Destruction shall be the preferred method of disposal of materiel collected through DDR. However, other options may be possible, including the transfer of materiel to national stockpiles and the deactivation of weapons. Operations should be safe, cost-ef- fective and environmentally benign.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "4b4f211f-5e94-4a53-bd10-03120c007c5f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 34, + "Paragraph": "Destruction of materiel Destruction reduces the flow of illicit arms and ammunition in circulation and removes the risk of materiel being diverted (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). Arms and ammunition that are surrendered during disarmament operations are in an unknown state and likely hazardous, and their markings may have been altered or removed. The destruction of arms and ammu- nition during a DDR programme is a highly symbolic gesture and serves as a strong confidence-building measure if performed and verified transparently. Furthermore, destruction is usually less financially burdensome than storing and guarding arms and ammunition in accordance with global guidelines. Obtaining agreement from the appropriate authorities to proceed usually takes time, resulting in delays and related risks of diversion or unplanned explosions. Dis- posal methods should therefore be decided upon with the national authorities at an early stage and clearly stated in the national DDR programme. Transparency in the disposal of weapons and ammunition collected from former warring parties is key to building trust in DDR and the entire peace process. A clear plan for destruction should be established by the DDR component or the lead UN agency(ies) with the support of WAM advisers, including the most suitable method for destruction (see Annex E), the development of an SOP, the location, as well as options for the processing and monitoring of scrap metal recycling, if relevant, and the associated costs of the destruction process. The plan shall also provide for the mon- itoring of the destruction by a third party to ensure that the process was efficient and that all materiel is accounted for to avoid diversion. The physical destruction of weap- ons is much simpler and safer than the physical destruction of ammunition, which requires highly qualified personnel and a thorough risk assessment.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9ace6f10-09c0-4bbe-9f9b-50d9f1d9608f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 34, + "Paragraph": "Destruction of weapons In most existing DDR programmes, due to the absence of an industrial steel smelting facility to melt down small arms, cutting is the preferred method of destruction, par- ticularly where quantities of weapons are limited and where it is logistically easier and safer to take the cutting tool to the weapons rather than vice versa. If not done correctly, cutting carries the risk that the parts may be re-used to produce new weapons. Cutting is also labour intensive and produces significant quantities of scrap metal. (See Annex E to select the most suitable method of destruction.) With regard to heavy weapons, demilitarization by dismantling and recycling should be the preferred disposal option for the majority of these systems. The market for conversion to civilian use is very limited. This is because sale is also a prolifera- tion risk and reputable end users are rare. The demilitarization by dismantling and recycling technique involves the cleaning and dismantling/cutting of the vehicle but results in significant quantities of scrap. If a large quantity of heavy weapons is to be destroyed, financial planning could include the value of the scrap recovered.8 It is also important to maintain strict control over weapons designated for destruction to prevent the risk of their entry into the illicit market before the destruction takes place.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "757304d4-15df-4137-8e95-a6101330afec", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 33, + "Paragraph": "Destruction of ammunition The safe destruction of recovered ammunition and explosives presents a variety of technical challenges, and the demolition of a large number of explosive items requires a significant degree of training. Risks inherent in destruction are significant if the pro- cedure does not comply with strict technical guidelines (see IATG 10.10), including casualties and contamination. During the disarmament phase of a DDR programme, ammunition may need to be destroyed either at the collection point (PUP, disarmament site) because it is unsafe, or after being transferred to a secure DDR storage facility. Ammunition destruction requires a strict planning phase by WAM/EOD advisers or engineers who should identify priorities, obtain authorization from the national au- thorities, select the most appropriate method (see Annex E) and location for destruc- tion, and develop a risk assessment and security plan for the operation. The following types of ammunition should be destroyed as a priority: (a) ammunition that poses the greatest risk in terms of explosive safety, (b) ammunition that is attractive to criminals or armed groups, (c) ammunition that must be destroyed in order to comply with inter- national obligations (for instance, anti-personnel mines for States that are party to the Mine Ban Treaty) and (d) small arms and machine gun ammunition less than 20 mm. After destruction, decontamination operations at demolition sites and demilitarization facilities should be undertaken to ensure that all recovered materials and other gen- erated residues, including unexploded items, are appropriately treated, and that scrap and empty packaging are free from explosives.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "9c94697b-bc5e-4250-88c6-732a38d10f26", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 8, + "Paragraph": "Transfers to national authorities National authorities may insist that serviceable materiel collected during disarmament should be incorporated into national stockpiles. Reasons for this may be linked to a lack of resources to acquire new materiel, the desire to regain control over materiel previously looted from national stockpiles or the existence of an arms embargo making procurement difficult. Before transferring arms or ammunition to the national authorities, the DDR component or lead UN agency(ies) shall take account of all obligations under relevant regional and international instruments as well as potential UN arms embargos and should seek the advice of the mission\u2019s or lead UN agency(ies) legal adviser (see IDDRS 2.11 on The Legal Framework for UN DDR). If the host State is prohibited from using or possessing certain weapons or ammunition (e.g., mines or cluster munitions), such ma- teriel shall be destroyed. Furthermore, in line with the UN human rights due diligence policy, materiel shall not be transferred where there are substantial indications that the consignee is committing grave violations of international humanitarian, human rights or refugee law. WAM advisers should explain to the national authorities the potential negative consequences of incorporating DDR weapons and ammunition into their stockpiles. These consequences not only include the symbolic connotations of using conflict weap- ons, but also the costs and operational challenges that come from the management of materiel that differs from standard equipment. The integration of ammunition into national stockpiles should be discouraged, as ammunition of unknown origin can be extremely hazardous. A technical inspection of weapons and ammunition should be jointly carried out by both UN and national experts before handover to the national authorities. Finally, weapons handed over to national authorities should bear markings made at the time of manufacture, and best practice recommends the destruction or remark- ing of weapons whose original markings have been altered or erased. Weapons should be registered by the national authorities in line with international standards.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a9c588f3-9282-4f46-96bf-fabce9d94677", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 36, + "Paragraph": "8.3 Deactivation of weapons The deactivation of arms involves rendering the weapon incapable of expelling or launching a shot, bullet, missile or other projectile by the action of an explosive, that cannot be readily restored to do so, and that has been certified and marked as deacti- vated in compliance with international guidelines by a competent State authority. De- activation requires that all pressure-bearing components of a weapon be permanently altered in such a way so as to render the weapon unusable; this includes modifications to the barrel, bolt, cylinder, slide, firing pin and/or receiver/frame. Weapons that have not been properly deactivated represent a significant threat, as they may be reactivated and used by criminals and terrorists.9 While destruction of weapons should be the preferred method of disposal, deac- tivation could be stipulated as part of a peace agreement where some of the collected weapons would be used in museum settings, or to create \u2018peace art\u2019 or monuments, to symbolically reflect the end of armed conflict. The process of deactivation should occur rapidly after a peace agreement so that weapons do not remain indefinitely in stores incurring unnecessary costs and raising the risk of diversion.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "58686ad5-12bc-4903-83b8-9a22d7097942", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 38, + "Paragraph": "Annex C: Weapons survey Source: DDR WAM Handbook, Unit 13 A weapons survey can take more than a year from the time resources are allocated and mobilized to completion and the publication of results and recommendations. The survey must be designed, implemented and the results applied in a gender responsive manner.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "c024bf11-1920-454a-b01c-eb3466ac3f16", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": null, + "Paragraph": "Who should implement the weapons survey? While the DDR component and specialized UN agencies can secure funding and coor- dinate the process, it is critical to ensure that ownership of the project sits at the national level due to the sensitivities involved, and so that the results have greater legitimacy in informing any future national policymaking on the subject. This could be through the National Coordinating Mechanism on SALW, for example, or the National DDR Commission. Buy-in must also be secured from local authorities on the ground where research is to be conducted. Such authorities must also be kept informed of develop- ments for political and security reasons. Weapons surveys are often sub-contracted out by UN agencies and national authorities to independent and impartial research organizations and/or an expert consultant to design and coordinate the survey components. The survey team should include independent experts and surveyors who are nationals of the country in which the DDR component or the UN lead agency(ies) is operating and who speak the local language(s). The implementation of weapons surveys should always serve as an oppor- tunity to develop national research capacity.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "0cccff93-c801-4768-9bfc-cdc0befdbe7b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": null, + "Paragraph": "What information should be gathered during a weapons survey? Weapons surveys can support the design of multiple types of activities related to SALW control in various contexts, including those related to DDR. The information collected during this process can inform a wide range of initiatives, and it is therefore important to identify other UN stakeholders with whom to engage when designing the survey to avoid duplication of effort. Components Contextual analysis: conflict analysis; mapping of armed actors; political, economic, social, environmental, cultural factors. Weapons distribution assessment: types; quantities; possession by men, women and children; movements of SALW; illicit sources of weapons and ammunition; potential locations of materiel and caches. Impact survey: impact of weapons on children, women, men, vulnerable groups, DDR beneficiaries etc.; social and economic developments; number of acts of armed violence and victims. Perception survey: attitudes of various groups towards weapons; reasons for armed groups holding weapons; alternatives to weapons possession, etc. Capacity assessment: community, local, national coping mechanism; legal tools; security and non-security responses.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3898f50a-0b2a-4546-82f8-db70fd247149", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.10-Disarmament.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.10-Disarmament.pdf", + "PageNum": 39, + "Paragraph": "Methodology The survey should draw on a variety of research methods and sources in order to collate, compare and confirm information \u2013 e.g., desk research, collection of official quantitative data (including crime and health data related to firearms), and interviews with key informants such as national security and defence forces, community leaders, representatives of civilian groups (including women, youth and professionals) affected by armed violence, armed groups, foreign analysts and diplomats. The main component of the survey should be the perception survey (see above) \u2013 i.e., the administration of a questionnaire. A representative sample is to be deter- mined by an expert according to the target population. The questionnaire should be developed and administered by a research team including male and female nationals, ensuring respect for ethical considerations and gender and cultural sensitivities. The questionnaire should not take more than 30 minutes to administer, and careful thought should be given as to how to frame the questions to ensure maximum impact (see Annex C of MOSAIC 5.10 for a list of sample questions). A survey can help the DDR component to identify interventions related to disar- mament of combatants or ex-combatants, but also to CVR and other transitional pro- gramming. Among others, the weapons survey will help identify the following: Communities particularly affected by weapons availability and armed violence. Communities particularly affected by violence related to ex-combatants. Communities ready to participate in CVR and the types of programming they would like to see developed. Types of weapons and ammunition in circulation and in demand. Trafficking routes and modus operandi of weapons trafficking. Groups holding weapons and the profiles of combatants. Cultural and monetary values of weapons. Security concerns and other negative impacts linked to potential interventions.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ecf2566d-4ee4-4677-9bb5-c96a5dfe517a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": null, + "Paragraph": "Summary DDR practitioners increasingly operate in contexts with fragmented but well-equipped armed groups and acute levels of proliferation of illicit weapons, ammunition and ex- plosives. In settings where armed conflict is ongoing and peace agreements have been neither signed nor implemented, disarmament as part of a DDR programme may not be the most suitable approach to control the circulation of weapons, ammunition and explosives because armed groups may be reluctant to disarm without strong security guarantees (see IDDRS 4.10 on Disarmament). Instead, these contexts require the de- sign and implementation of innovative DDR-related tools, such as transitional weapons and ammunition management (WAM). When implemented as part of a DDR process (either with or without a DDR pro- gramme), transitional WAM has two primary aims: to reduce the capacity of individ- uals and groups to engage in armed conflict, and to reduce accidents and save lives by addressing the immediate risks related to the illicit possession of weapons, ammuni- tion and explosives. By supporting better arms control and preventing the diversion of weapons, ammunition and explosives to unauthorized end users, transitional WAM can be a strong component of the sustaining peace approach and contribute to pre- venting the outbreak, escalation, continuation and recurrence of conflict (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). In settings where a peace agreement has been signed and the necessary preconditions for a DDR programme are in place, transitional WAM can also be used before, during and after DDR programmes as a complementary measure (see IDDRS 2.10 on The UN Approach to DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "40ab9b33-b6b5-44fb-b399-28faf17ae1be", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": null, + "Paragraph": "Module scope and objectives As shown in Figure 1, DDR arms control activities include: (1) disarmament as part of a DDR programme and (2) transitional WAM as a DDR-related tool. This sub-module, which should be read as a complement to IDDRS 4.10 on Disarmament, aims to equip DDR practitioners with the basic legal, programmatic and technical knowledge to de- sign and implement safe and effective transitional WAM in both mission and non-mis- sion contexts. This sub-module also provides guidance on how transitional WAM implemented as part of a DDR process should align with and reinforce security sector reform (SSR), as well as national small arms and light weapons (SALW) control strategies.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1af7832d-c93b-4cf0-88c0-f38526f6b0f1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": null, + "Paragraph": "When collecting, registering, storing, transporting, and disposing of weapons, ammunition and explosives during transitional WAM the core guidelines outlined in IDDRS 4.10 on Disarmament apply. As such, DDR-related transitional WAM should always adhere to United Nations standards and guidelines, namely the Modular small- arms-control Implementation Compendium (MOSAIC) and International Ammunition Technical Guidelines (IATG).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "19cda30e-4e78-41fd-a4af-f9db04ff342c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 3, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Weapons and ammunition management (WAM) is the oversight, accountability and management of arms and ammunition throughout their lifecycle, including the estab- lishment of frameworks, processes and practices for safe and secure materiel acquisi- tion, stockpiling, transfers, tracing and disposal.1 WAM does not only focus on small arms and light weapons, but on a broader range of conventional weapons including ammunition and artillery. Transitional WAM is a series of interim arms control measures that can be imple- mented by DDR practitioners before, after and alongside DDR programmes. Transi- tional WAM can also be implemented when the preconditions for a DDR programme are absent. The transitional WAM component of a DDR process is primarily aimed at reducing the capacity of individuals and groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives. Light weapon: Any man-portable lethal weapon designed for use by two or three per- sons serving as a crew (although some may be carried and used by a single person) that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, heavy machine guns, hand-held under-barrel and mounted grenade launchers, portable anti-aircraft guns, portable anti-tank guns, re- coilless rifles, portable launchers of anti- tank missile and rocket systems, portable launchers of anti-aircraft missile systems, and mortars of a calibre of less than 100 millimetres, as well as their parts, components and ammunition. Note 2: Excludes antique light weapons and their replicas. Small arm: Any man-portable lethal weapon designed for individual use that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, re- volvers and self-loading pistols, rifles and carbines, sub-machine guns, assault rifles and light machine guns, as well as their parts, components and ammunition. Note 2 Excludes antique small arms and their replicas.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "65a28904-cbbd-4de1-81e2-a3588e1ebba4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 4, + "Paragraph": "Introduction DDR processes are increasingly launched in contexts where members of armed groups and communities are unwilling to disarm because of concerns for their security. In such situations, communities and individuals may take their own security measures, including through increased weapons ownership. Some armed groups may also be characterized as community self-defence forces or \u2018vigilante groups\u2019. The ownership of weapons, ammunition and explosives by individuals and armed groups carries a number of risks. For example, if armed groups store incompatible types of ammunition together then it may lead to explosions and surrounding loss of life. Furthermore, inadequately secured weapons and ammunition can facilitate inter-personal armed violence, including sexual and gender-based violence, as well as theft and diversion to the illicit market. In order to contribute to a more secure environment that is conducive to long-term stability, development and reconciliation, DDR practitioners may consider the use of transitional WAM. Transitional WAM may be used as an alternative to disarmament as part of a DDR programme or it can also be used before, during or after a DDR pro- gramme as a complementary measure. In both contexts, a multifaceted approach is required that addresses both the root causes of armed violence and the means through which that violence is perpetrated. Transitional WAM may therefore also be used in combination with programmes of Community Violence Reduction, particularly when these programmes include for- mer combatants or individuals at-risk of recruitment by armed groups (see IDDRS 2.30 on Community Violence Reduction). Finally, transitional WAM may also be used in combination with activities that support the reintegration of former combatants and persons formerly associated with armed groups (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "47737e68-9879-4947-a081-d1c314e55b11", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to tran- sitional WAM as part of a DDR process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f42ed5cb-5d22-4619-a677-ddde2b75d3a3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 5, + "Paragraph": "Voluntary Transitional WAM as part of a DDR process shall be implemented on a voluntary basis and, where appropriate, through engaging communities and armed forces and groups to identify issues and design solutions.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b4ad83e1-1163-40b3-a918-49476bffb98b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 5, + "Paragraph": "Gender-responsive and inclusive Transitional WAM shall not introduce distinctions based on age, sex, race, ethnicity, religion or other arbitrary criteria that may create or exacerbate vulnerabilities and power imbalances. DDR practitioners shall ensure that the gendered dimensions of WAM and its links to gender identities, as well as the differing impacts on men and women and their perceptions of weapons, ammunition and explosives, are adequately integrated into all stages of arms control initiatives. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data as well as considerations related to children. DDR practitioners shall also adopt a gender-transformative approach, including through interventions and messages on the linkages between masculinities and weapons ownership, and by ensuring that both men and women are involved in the design and implementation of transitional WAM.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "86536f56-8a2c-4d8b-89f9-e10f6a1547be", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 5, + "Paragraph": "Conflict sensitive Transitional WAM shall not increase the vulnerability of communities, groups (including ethnic and religious minorities), or individuals to internal or external threats by desta- bilizing the distribution of power. All precautions shall also be taken to avoid reinforcing or generating inequalities based on age and gender.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f50c8f1e-7e39-4eae-af18-dc472ad2a04e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 6, + "Paragraph": "Nationally and locally owned National Governments have the right and responsibility to apply their own national standards to all transitional WAM measures within their territories and shall act in compliance with relevant international and (sub)-regional arms control instruments and applicable legal frameworks (see section 5.2). The primary responsibility for transi- tional WAM lies with the Government of the concerned State. The support and special- ist knowledge of the UN is placed at the disposal of a national Government to ensure that the planning and implementation of transitional WAM are conducted in ac- cordance with international arms control instruments, standards and guidance, in- cluding those of the IDDRS, the IATG and MOSAIC. Transitional WAM shall be de- signed and implemented in coordination with, and in support of, national arms control policies and management systems. Building national and local institutional and technical WAM capacity is essential to effective and sustainable arms control ef- forts and, where relevant could support SSR processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e045339a-1b9e-4989-aeaa-69471c4e1e69", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 6, + "Paragraph": "Integrated Transitional WAM shall be coordinated with all other aspects of an integrated DDR process as well as with other components of the broader peace process, including, ceasefires and arms control measures associated with transitional security arrange- ments, arms embargo measures where existent and applicable, SSR and SALW control.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "32269a6d-bdfe-40bc-81c2-daee1476d49f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 6, + "Paragraph": "Safety and security Handling weapons, ammunition and explosives comes with high levels of risk. The involvement of technically and appropriately qualified WAM personnel in the planning and implementation of transitional WAM is absolutely critical. Techni- cal advisers shall have formal training and operational field experience in ammu- nition and weapons storage, marking, transportation, deactivation and disposal including the destruction of weapons, ammunition and explosives.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "662a27fd-8fe5-45fc-83ce-d4ea37fdc1b1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 6, + "Paragraph": "Planning and designing transitional WAM Meticulous assessments, planning and monitoring are required in order to implement effective, evidence-based, tailored, gender- and age-responsive transitional WAM as part of a DDR process. Such an approach includes a contextual analysis, age and gen- der analysis, a risk and security assessment, the development of standard operating procedures (SOPs), the identification of technical and logistical resources, and a timeta- ble for operations and public awareness activities (see IDDRS 4.10 on Disarmament for guidance on these activities). The planning for transitional WAM should be articulated in the DDR national strategy, arms control strategy and/or broader national security strategy. If the context is a UN mission setting, the planning for transitional WAM should also be articulated in the mission concept, lower-level strategies and vision doc- uments of the UN mission. Importantly, DDR-related transitional WAM must not be designed in isolation from other arms control or related initiatives run by the national authorities and their international partners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "c5334061-bf97-44b7-8e03-bfa3473250ae", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 7, + "Paragraph": "Assessments and weapons survey The design, modalities and objectives of transitional WAM as part of a DDR process vary according to the political and security context, the level of proliferation of weap- ons, ammunition and explosives, the weapons culture and societal perspectives, gen- dered experiences of WAM, and the timing and sequencing of other initiatives (which may include a DDR programme, DDR-related tools, and/or reintegration support) (see IDDRS 2.10 on The UN Approach to DDR). Integrated assessments should start as early as possible in the peace negotiation process and in the pre-planning phase (see IDDRS 3.11 on Integrated Assessments). An integrated assessment should contribute to determining whether any disarmament or transitional WAM measures are desirable or feasible in the current context, and the po- tential positive and negative impacts of any such measures (see section 5.1.1 of IDDRS 4.10 on Disarmament for guidance on integrated assessments). In addition, DDR practitioners can commission a weapons survey (the same weap- ons survey outlined in section 5.1.2 and Annex C of IDDRS 4.10 on Disarmament) and draw information from national injury surveillance systems (see section 5.5.2 of MO- SAIC 05.10). Weapons surveys and injury surveillance are essential in order to draw up effective and safe plans for both disarmament and transitional WAM. A weapons survey and injury surveillance system also allow DDR practitioners to scope the extent of the WAM task ahead and to gauge national and local expectations concerning the transitional WAM measures to be carried out. This knowledge helps to ensure tailored programming and results. Data disaggregated by sex and age is a prerequisite for un- derstanding age- and gender-specific attitudes towards weapons, ammunition and ex- plosives, and their age- and gender-specific impacts. This type of data is also necessary to design evidence-based, and age- and gender-sensitive responses. The early collection of data also provides a baseline for DDR monitoring and eval- uation activities. These baseline indicators should be adjusted in line with evolving conflict dynamics. Monitoring and evaluation are crucial to ensure accountability and the effective implementation and management of transitional WAM. For more detailed guidance on monitoring and evaluation, refer to Box 2 of IDDRS 4.10 on Disarmament, IDDRS 3.50 on Monitoring and Evaluation of DDR and section 5.5 of MOSAIC 05.10. Once reliable information has been gathered, collaborative transitional WAM plans can be drawn up by the national DDR commission and the UN DDR component in mission settings and by the national DDR commission and the UN lead agency(ies) in non-mission settings. These plans should outline the intended target populations and requirements for transitional WAM, the type of WAM measures and operations that are planned, a timetable, and logistics, budget and staffing needs.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0812a2b5-a938-4493-9527-0baa1a50e8f4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 8, + "Paragraph": "National, regional and international regulatory framework DDR-related transitional WAM shall be conducted in compliance with the national legislation of the concerned country and relevant international and regional legal frame- works, as well as complying with any reporting requirements under relevant sub-/ regional and international instruments. Compliance with provisions specifically designed to promote gender equality, in particular, the empowerment of women, and the prevention of serious acts of armed violence against women and girls is especially critical.2 So too is compliance with provisions designed to support youth engagement and participation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "88c4c07a-aedd-4610-8ac9-3bf2ddc062ee", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 8, + "Paragraph": "National legislation Many countries have national legislation regulating all or parts of the life cycle of weap- ons, ammunition and explosives, including manufacture, marking, import, export, re- cord-keeping and civilian possession. Often, if States have ratified/adopted global and regional treaties and instruments, then relevant provisions of these instruments will be reflected in their national legislation. There may, however, be some variation in the extent to which States have developed or updated this legislation. In addition to legislation, national authorities may have developed national weap- ons and ammunition normative frameworks and/or operational guidance documents, including a SALW national action plan and SOPs in accordance with the IATG and MOSAIC. These standards, strategies, national action plans and/or strategic and oper- ational guidance documents should, at an early stage, be taken into consideration when planning and executing transitional WAM as part of a DDR process.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "346eba7a-904a-471e-b012-8f5c65efdd47", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 8, + "Paragraph": "Legally binding instruments The regional and global instruments referred to below are legally binding. DDR prac- titioners should therefore identify which instruments are applicable to the country in which they operate. Regional instruments Several regional, legally binding instruments have been adopted to support the imple- mentation of the UN Programme of Action to Prevent, Combat and Eradicate the Illicit Trade in SALW in All Its Aspects (see below).3 International instruments The Protocol against the Illicit Manufacturing of and Trafficking in Firearms, Their Parts and Components and Ammunition, which supplements the UN Con- vention against Transnational Organized Crime, was adopted in the context of crime prevention and law enforcement. State parties to the legally binding treaty agreed to prevent, combat and eradicate the illicit manufacturing of and traffick- ing in firearms, their parts and components and ammunition. The Arms Trade Treaty regulates the international legal trade in conventional arms and seeks to prevent and eradicate their diversion to the illicit market by es- tablishing international standards governing arms transfers. The Treaty addresses the relationship between conventional arms transfers and the commission of gen- der-based violence. It requires States parties to assess the risk of the transferred conventional arms being used to commit or facilitate serious acts of gender-based violence or serious acts of violence against women and children. United Nations human rights conventions, such as the International Covenant on Civil and Political Rights, as interpreted by their universal oversight mechanisms, require States to curb the proliferation of small arms and regulate access to them as part of the duty to protect the right to life. Other binding instruments may be relevant, including the Anti-Personnel Mine Ban Convention, the Convention on Certain Conventional Weapons and the Conven- tion on Cluster Munitions. Security Council resolutions related to counter-terrorism as well as the Security Council\u2019s 2015 Madrid Guiding Principles and its 2018 Addendum may also be relevant.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce4a6f31-f2d8-49dd-a90e-a9fb333be169", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 9, + "Paragraph": "Politically binding instruments The UN Programme of Action to Prevent, Combat and Eradicate the Illicit Trade in Small Arms and Light Weapons in All Its Aspects (PoA) addresses the illicit trade in SALW with the objective of reducing human suffering. The PoA consists of commit- ments at the national, regional and global levels to combat the illicit trade in SALW. The International Tracing Instrument, which was adopted within the framework of the PoA, promotes the development of marking, record-keeping and tracing meas- ures for SALW. The Basic Principles on the Use of Force and Firearms by Law Enforcement Offi- cials is also relevant for planning and designing transitional WAM where inter-linkages between SSR and DDR exist.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3ec10b98-70cf-4605-9019-da9c0128187b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 10, + "Paragraph": "Gender-sensitive transitional WAM Women, men, children, adolescents and youth play an instrumental role in the imple- mentation of transitional WAM as part of a DDR process, including through encourag- ing family, community members and members of armed forces and groups to partic- ipate. Gender- and age-responsive transitional WAM is proven to be more effective in addressing the impacts of the illicit circulation and misuse of weapons, ammunition and explosives than transitional WAM that is gender or age blind. Gender and age mainstreaming is essential to assuring the overall success of DDR processes. DDR practitioners should involve women, children, adolescents and youth from affected communities in the planning, design, implementation, and monitoring and eval- uation phases of transitional WAM. Women can, for example, contribute to raising aware- ness of the risks associated with weapons ownership and ensure that rules adopted by the community, in terms of weapons control, are effective and enforced. As the owners and users of weapons, ammunition and explosives are predominantly men, including youth, communication and outreach efforts should focus on dissociating arms ownership from notions of power, protection, status and masculinity. For this type of gender- and age-transformative transitional WAM to be effective, it should be linked to other DDR- related tools, such as CVR, pre-DDR, and DDR support to mediation (see section 6). To ensure that transitional WAM is gender- and age-responsive, DDR practitioners should focus on the following areas of strategic importance: (a) the involvement of both men and women at all stages of transitional WAM, as well as children, adolescents and youth where appropriate; (b) the collection of sex- and age-disaggregated data and gender and age analysis as a baseline for understanding challenges and needs; (c) the measurement of progress through the development of age- and gender-sensitive in- dicators; (d) the enhancement of the gender competence and commitment to gender equality among programme staff and national partners, including the national DDR commission and other relevant bodies; (e) ensuring organizational structures, work- flows and knowledge management are responsive to different environments; (f) work- ing with partners to strengthen age- and gender-responsiveness, including women\u2019s, men\u2019s and youth networks and organizations; and (g) gender- and age-sensitive pro- gramme monitoring and evaluation exercises. Specific guidance can be found in ID- DRS 5.10 on Women, Gender and DDR, as well as in MOSAIC Module 06.10 on Women, Men and the Gendered Nature of SALW and MOSAIC Module 06.20 on Children, Ad- olescents, Youth and SALW. (See Annex B for other normative references.)", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "13a26f32-e65d-41bb-8e90-b3cb5a76e82f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 10, + "Paragraph": "Transitional WAM as a DDR-related tool When part of a DDR process, transitional WAM should be considered when there is a need to respond to the presence of active and/or former members of armed groups. For example, transitional WAM may be appropriate when: Armed groups refuse to disarm as the pre-conditions for a DDR programme are not in place. Former combatants and/or persons formerly associated with armed groups return to their communities with weapons, ammunition and/or explosives, perhaps be- cause of ongoing insecurity or because weapons possession is a cultural practice or tied to notions of power and masculinity. Weapons and ammunition are circulating in communities and pose a security threat, especially where: Civilians, including in certain contexts children, are at-risk of recruitment by armed groups; Civilians, including women, girls, men and boys, are at risk of serious interna- tional crimes, including conflict-related sexual violence. Former combatants and/or persons formerly associated with armed groups are about to return as part of DDR programmes. While transitional WAM should always aim to remove or facilitate the legal regis- tration of all weapons in circulation, the reality of weapons culture and the desire for self-protection and/or empowerment should be recognized, with transitional WAM options and objectives identified accordingly. A generic typology of DDR-related tran- sitional WAM measures is found in Table 1. When reference is made to the collec- tion, registration, storage, transportation and/or disposal, including the destruction, of weapons, ammunition and explosives during transitional WAM, the core guidelines outlined in IDDRS 4.10 on Disarmament apply. In addition to the generic measures outlined above, in some instances DDR practi- tioners may consider supporting the WAM capacity of armed groups. DDR practition- ers should exercise extreme caution when supporting armed groups\u2019 WAM capacity. While transitional WAM may help to build trust with national and international stake- holders and address some of the immediate risks with regard to the proliferation of weapons, ammunition and explosives, building the WAM capacity of armed groups carries certain risks, and may inadvertently reinforce the fighting capacity of armed groups, legitimize their status, and tarnish the UN\u2019s reputation, all of which could threaten wider DDR objectives. As a result, any decision to support armed groups\u2019 WAM capacity shall consider the following: This approach must align with the broader DDR strategy agreed with and approved by national authorities as an integral part of a peace process or an alter- native conflict resolution strategy. This approach must be in line with the overall UN mission mandate and objec- tives of the UN mission (if a UN mission has been established). Engagement with armed groups shall follow UN policy on this matter, i.e. UN mission policy, including SOPs on engagement with armed groups where they have been adopted, the UN\u2019s Aide Memoire on Engaging with Non-State Armed Groups (NSAGs) for Political Purposes (see Annex B) and the UN Human Rights Due Diligence Policy. This approach shall be informed by risk analysis and be accompanied by risk mitigation measures. If all of the above conditions are fulfilled, DDR support to WAM capacity-building for armed groups may include storing ammunition stockpiles away from inhabited areas and in line with the IATG, destroying hazardous ammunition and explosives as identified by armed groups, and providing basic stockpile management advice, support and solutions.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "dc67cd1b-55b3-4ccc-97be-8c2442a4fe90", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 14, + "Paragraph": "Transitional WAM in support of DDR-related tools Efforts focused solely on weapons, ammunition and explosives are proven to have lim- ited impact on instability. Therefore, DDR practitioners should seek to address other conflict drivers in parallel, for example, through the use of DDR-related tools such as pre-DDR, CVR, DDR support to transitional security arrangements and DDR support to mediation. DDR-related tools are immediate and targeted measures that may be used before, after or alongside DDR programmes, or when the preconditions for DDR programmes are not in place (see IDDRS 2.10 on The UN Approach to DDR and MOSAIC 02.30 on Small Arms and Light Weapons Control in the Context of DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ff9e128f-7023-44fb-b023-e3f692d70add", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 14, + "Paragraph": "Community violence reduction and transitional WAM When implemented as part of a DDR process, CVR programmes aim to reduce armed violence in communities. By tackling the drivers of armed violence and improving perceptions of security, CVR programmes can have a direct impact on the demand for and misuse of weapons, as well as on the creation of favourable conditions for future disarmament initiatives. As outlined in IDDRS 2.30 on Community Violence Reduction, CVR programmes may target: Members of armed groups who are not formally eligible for a DDR programme because their group is not signatory to a peace agreement. Individuals who are not members of an armed group but who are at-risk of recruitment by such groups. Designated communities that are susceptible to outbreaks of violence, close to can- tonment sites, or likely to receive former combatants. When CVR programmes target members of armed groups who are not formally eligible for a DDR programme, because their group is not signatory to a peace agree- ment, individual eligibility for CVR may be tied to the handover of a serviceable weapon. Transitional WAM and potential CVR arms-related eligibility criteria should be set in line with the disarmament component of a DDR programme (if one is running), as well as other arms control initiatives running in the country (see section 7). If weapons and ammunition collection as part of a CVR programme is conducted at the same time as the disarmament component of a DDR programme, it is critical that these activities are strategically sequenced and that a robust public awareness strategy based on clear messaging accompanies these efforts (see IDDRS 4.10 on Disarmament, MOSAIC 04.30 on Awareness Raising and IMAS 12.10 on Explosive Ordnance Risk Education). This is because civilians may attempt to surrender weapons at a pick-up point designed to receive combatants, which could result in increased tensions. When CVR programmes target communities susceptible to outbreaks of violence or individuals at-risk of recruitment, the willingness of community members to surrender or restrict immediate access to weapons, ammunition and explosives will depend great- ly on perceptions of security, the existence of internal or external security threats, the quality of formal security provisions and the absence of criminal prosecution for illicit arms possession. If disarmament is not possible, encouraging communities to control their weapons, ammunition and explosives, for example, through awareness-raising campaigns, registration and the development of community storage facilities, can help to reduce open carrying and home possession of weapons (see IDDRS 4.10 on Disar- mament for guidelines on these activities, MOSAIC 04.30 on Awareness Raising and IMAS 12.10 on Explosive Ordnance Risk Education). Such awareness-raising and com- munity-focused initiatives can help to lower the risk of accidents involving weapons and ammunition and reduce the resort to weapons in violent interpersonal disputes, including against women. Although the surrender of a weapon or ammunition need not always be a pre- condition for participation in a CVR programme, one approach may be to make the implementation of a CVR programme in a particular community conditional on com- munity or group collection efforts and voluntary handovers of weapons and ammuni- tion. Manufactured and/or artisanal weapons and ammunition can be collected, and quantities destroyed by burning in public; while this is not considered a best practice, as burning does not totally destroy the weapons, this kind of ceremony can play an important symbolic role in supporting communities emerging from conflict. The full cycle of transitional WAM should be transparent and accountable from collection through to disposal. Weapons and ammunition collected as part of a CVR programme should be destroyed, but if the authorities decide to integrate the materiel into their national stockpiles, this should be done in compliance with the State\u2019s obliga- tions under relevant international instruments and in line with international technical guidelines (see sections 5.2 and 8). At a minimum, such weapons should be properly marked and registered, and their origin traced, if deemed necessary, prior to any in- tegration into the national stockpile. Specific technical inspections on the functional- ity and safety of the weapons to be integrated should be jointly carried out to ensure serviceability (see IDDRS 4.10 on Disarmament).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ddfdc80-2e97-4240-bb86-a6e67dbbfd2c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 15, + "Paragraph": "Pre-DDR and transitional WAM Pre-DDR is an interim, time-limited stabilization mechanism aimed at creating the necessary political and security conditions to facilitate the negotiation and/or imple- mentation of peace agreements and pave the way towards a full DDR programme (see IDDRS 2.10 on The UN Approach to DDR and IDDRS 2.20 on The Politics of DDR). Pre-DDR is designed for those who are eligible for a national DDR programme. The eligibility criteria for both will therefore be the same and could require individu- als, among other things, to prove that they have combatant status and are in possession of a serviceable manufactured weapon or a certain quantity of ammunition (see IDDRS 4.10 on Disarmament). The eligibility criteria shall be gender-responsive and not dis- criminate against women. Depending on the specific circumstances, individuals who do not meet the eligibility criteria could be enrolled in a CVR programme (see IDDRS 2.30 on Community Violence Reduction). While most materiel should be handed in during the disarmament phase of a DDR programme, pre-DDR offers DDR practitioners the opportunity to better understand the quantity and types of materiel that armed groups possess and to collect, register and manage such materiel. Depending on the context, pre-DDR can include the handing over of weapons and ammunition by members of armed groups and armed forces. In order to avoid confu- sion, this phase could be named \u2018Pre-disarmament\u2019 rather than \u2018Disarmament\u2019, which will take place at a point in the future. Pre-disarmament Pre-disarmament involves collecting, registering and storing materiel in a safe loca- tion. Depending on the context and agreements in place with armed forces and groups, pre-disarmament could focus on certain types of materiel, including larger crew- operated systems in contexts where warring parties are very well equipped. Hand- overs can be: Temporary: Materiel is registered and stored properly but remains under the joint control of armed forces, armed groups and the United Nations through a dual-key system with well established roles and procedures; Permanent: Materiel is handed over, registered and ultimately disposed of (see IDDRS 4.10 on Disarmament). In both cases, unsafe ammunition shall be destroyed, and all activities must be carried out in full transparency and with respect of safety and security procedures during the destruction process. Pre-disarmament should: Build and strengthen the confidence of armed forces, armed groups and the civilian population in any future disarmament process and the wider DDR programme; Reduce the circulation and visibility of weapons and ammunition; Contribute to improved perceptions of peace and security; Raise awareness about the dangers of illicit weapons and ammunition; Build knowledge of armed groups\u2019 arsenals; Allow DDR practitioners to identify and mitigate risks that may arise during the disarmament component of the future DDR programme, including through the planning and conduct of operational tests (see section 5.3 in IDDRS 4.10 on Disar- mament); Encourage members of armed groups to voluntarily disarm and engage in a full DDR programme.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4388f030-0209-4a14-9f99-2db1238921fe", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 16, + "Paragraph": "DDR support to transitional security arrangements and transitional WAM During a period of political transition, warring parties may be required to act as security providers. This may happen prior to or alongside DDR programmes. This transition phase is vital for building confidence at a time when warring parties may be losing their military capacity and their ability to defend themselves. Transitional security arrangements may include joint units, patrols or operations involving the parties to a conflict, often alongside a third-party presence (see IDDRS 2.20 on The Politics of DDR). The management of the weapons and ammunition used during these types of transitional security arrangements shall be governed by a clear legal framework and will require a robust plan agreed to by all actors. This plan shall also be underpinned by detailed SOPs for conducting activities and identifying precise responsibilities, by which all shall abide (see IDDRS 4.10 on Disarmament). These SOPs should include guidance on how to handle arms and ammunition captured, collected or found by the joint units.4 Depending on the context and the positions of stakeholders, members of armed forces and groups would be demobilized and disarmed, or would retain use of their own small arms and ammunition, which would be registered and stored when not in use.5 In some cases, such measures could facilitate the large-scale integration of ex-combatants into the security sector as part of a peace agreement (see IDDRS 6.10 on DDR and SSR).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6d90adc1-39ee-4a75-88a5-633119a066cb", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 17, + "Paragraph": "DDR support to peace mediation efforts and transitional WAM There is a strong arms control component to the negotiation of peace, including through the setting of preliminary ceasefires and the design and adoption of comprehensive peace agreements. Transitional WAM in support of peace mediation efforts should con- tribute to weapons control, reduce armed violence, build confidence in the process, generate a better understanding of the weapons arsenals of armed forces and groups, and prepare the ground for the transfer of responsibility for weapons management later in the DDR process, either to the UN or to the national authorities. Disarmament can be associated with defeat and a significant shift in the balance of power, as well as the removal of a key bargaining chip for well-equipped armed groups. Disarmament can also be perceived as the removal of symbols of masculinity, protection and power. Pushing for disarmament while guarantees around security, justice or integration into the security sector are lacking will have limited effectiveness and may undermine the overall DDR process. The use of transitional WAM concepts, measures and terminology provides a solution to this issue and lays the ground for more realistic arms control provisions in peace agreements. Transitional WAM can also be a first step towards more comprehen- sive arms control, paving the way for full disarmament once the context has matured. Mediators and DDR practitioners supporting the mediation process should have strong DDR and WAM knowledge, or at least have access to expertise that can guide them in designing appropriate and evidence-based DDR-related transitional WAM provisions. Transitional WAM as part of CVR and pre-DDR can also enable relevant parties to engage more confidently in negotiations as they maintain ownership of and access to their materiel. Prolonged CVR and pre-DDR, however, can also become a support mechanism for armed groups rather than an incentive to finalize peace negotiations. Such processes should therefore be approached with caution (see IDDRS 2.20 on The Politics of DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "16839c88-5c6b-4bed-9029-db99a267914e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 17, + "Paragraph": "6.2 Transitional WAM and reintegration support Reintegration support can be provided to ex-combatants as part of a DDR programme and also when the preconditions for a DDR programme are not in place (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). When transitional WAM and rein- tegration support are linked as part of a DDR programme, ex-combatants will have already been disarmed and demobilized. In contexts where there is no DDR programme, combatants may leave armed groups during active conflict and return to their com- munities, taking their weapons and ammunition with them or hiding them in weap- ons caches. In both scenarios, ex-combatants may return to communities where levels of weapons and ammunition possession are high. It may therefore be necessary to coherently combine the transitional WAM measures listed in Table 1 with reintegration support as part of a single programme.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3fb98fa4-67a8-4042-b24d-e9f8b87d625b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 18, + "Paragraph": "DDR arms control activities and SALW control Although DDR and SALW control are separate areas of engagement, technically they are very closely linked, particularly in DDR settings where transitional WAM overlaps with SALW control objectives, activities and target audiences. SALW remain particu- larly prevalent in many regions where DDR is implemented. Furthermore, the uncon- trolled circulation of SALW can impede the implementation of DDR processes and enable conflict (see the report of the Secretary General on SALW (S/2019/1011)). DDR practitioners should work in close collaboration with both national DDR commissions and SALW control bodies, if they exist, and both areas of work should be closely co- ordinated and strategically sequenced. For instance, the implementation of a weapons survey and the use of mortality and morbidity data from an ongoing injury surveil- lance national system could serve as the basis for the development of both DDR-related transitional WAM activities and SALW control strategy.6 The term \u2018SALW control\u2019 refers to those activities that together aim to reduce the security, social, economic and environmental impact of uncontrolled SALW proliferation, possession and circulation. These activities largely consist of, but are not limited to: Cross-border control measures; Information management and exchange; Legislative and regulatory measures; SALW awareness and outreach strategies; SALW surveys and assessments; SALW collection and registration, including utilization of relevant regional and international databases for cross-checking SALW destruction; Stockpile management; Marking, recordkeeping and tracing. The international community, recognizing the need to deal with the challenges posed by the illicit trade in SALW, adopted the United Nations Programme of Action to Prevent, Combat and Eradicate the Illicit Trade in Small Arms and Light Weapons in All Its Aspects (A/Conf.192/15) in 2001 (PoA) (see section 5.2). In this framework, states commit themselves to, among other things, strengthen agreed norms and measures to help prevent and combat the illicit trade in SALW, and mobilize political will and resources in order to prevent the illicit transfer, manufacture, export and import of SALW. Regional agreements, declarations and conventions have built upon and deepened the commitments contained within the PoA. As a result, a number of countries around the world have set up SALW control programmes as well as institutional processes to implement them. SALW control programmes and activities should be designed and implemented in line with MOSAIC (see Annex B), which provides clear, practical and comprehensive guidance to practitioners and policymakers. During DDR, SALW control should be implemented to focus on wider arms con- trol at the national and community levels. It is essential that all weapons are considered during a DDR process, even though the focus may initially be on those weapons held by armed forces and groups. For these reasons, the transitional WAM mechanisms established during DDR processes should be designed to be applicable and sustainable in broader arms control initiatives even after the DDR process has been completed. It is also critical that DDR-related transitional WAM and SALW control activities are strategically sequenced, and that a robust public awareness strategy based on clear messaging accompanies these efforts (see IDDRS 4.10 on Disarmament, MOSAIC 04.30 on Awareness Raising and IMAS 12.10 on Explosive Ordnance Risk Education).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ea0109e5-1710-486f-a76d-ee2e00fcdc50", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management", + "PageNum": 19, + "Paragraph": "SSR and transitional WAM DDR-related transitional WAM may be implemented at the same time as the UN is providing support to SSR. The UN may support national authorities in the rightsizing of their armed forces (see IDDRS 6.10 on DDR and SSR). Such reforms include the need to adapt national arsenals to the size, needs and objectives of the security sector of the country in question. This requires an effective needs assessment, strategic planning, and the technical capacity and support to identify surplus or obsolete materiel and destroy it. When SSR is ongoing, DDR-related transitional WAM may be used as an entry point to align national WAM capacity with international WAM guidance and inter- national and regional legal frameworks. For instance, storage facilities built or refur- bished to store DDR materiel could then be used to house stockpiles for security insti- tutions, and as a proof of concept for upgrading of facilities. All WAM activities shall be designed and implemented in line with international technical guidance, including MOSAIC Module 02.20 Small Arms and Light Weapons Control in the Context of SSR and the IATG.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e60b8e43-f8cb-4f16-a980-306f5e2d0ce7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": null, + "Paragraph": "Summary Military personnel possess a wide range of skills and capacities that can contribute to DDR processes in mission and non-mission settings. As outlined in IDDRS 2.10 on the UN Approach to DDR, mission settings are those situations in which peace operations are deployed through peacekeeping operations, political missions and good offices engagements, by the UN or a regional organization. Non-mission settings are those where no peace operation is deployed, either through a peacekeeping operation, political missions or good offices engagements. When DDR is implemented in mission settings with a UN peacekeeping operation, the primary role of the military component should be to provide a secure environment and to observe, monitor and report on security-related issues. This role may include the provision of security to DDR programmes and to DDR-related tools, including pre- DDR. In addition to providing security, military components in mission settings may also provide technical support to disarmament, transitional weapons and ammunition management, and the establishment and maintenance of transitional security arrange- ments (see IDDRS 4.10 on Disarmament, IDDRS 4.11 on Transitional Weapons and Ammunition Management, and IDDRS 2.20 on The Politics of DDR). To ensure the successful employment of a military component within a mission setting, DDR tasks must be included in endorsed mission operational requirements, include a gender perspective and be specifically mandated and properly resourced. Without the requisite planning and coordination, military logistical capacity cannot be guaranteed. UN military contingents are often absent from special political missions (SPMs) and non-mission settings. In SPMs, UN military personnel will more often consist of military observers (MILOBs) and military advisers.1 These personnel may be able to provide technical advice on a range of security issues in support of DDR processes. They may also be required to build relationships with non-UN military forces mandated to support DDR processes, including national armed forces and regionally-led peace support operations. In non-mission settings, UN or regionally-led peace operations with military com- ponents are absent. Instead, national and international military personnel can be man- dated to support DDR processes either as part of national armed forces or as part of joint military teams formed through bilateral military cooperation. The roles and re- sponsibilities of these military personnel may be similar to those played by UN military personnel in mission settings.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "bdb54a61-a547-48b7-8db5-30c059b5377c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 4, + "Paragraph": "Module scope and objectives The objective of this module is to outline possible military contributions to DDR processes in the context of UN peacekeeping operations, special political missions (SPMs) and non-mission settings. Although the guidance in this module is based on the experience of UN military components, it is designed for all military personnel who contribute to DDR processes, irrespective of whether these personnel are affiliated to the UN, regional organizations, joint military teams or national armed forces. The guidance is also designed for civilian DDR practitioners who are interested in the ways that military personnel may be able to support their work. The module discusses the factors to be considered when employing military capacity in support of DDR. Routine military tasks that are carried out according to national security policies and strategies are beyond the scope of this module.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8468efa0-99ec-47bb-8404-6de34f0c11d2", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "ce674a0b-592f-4d18-b07a-f73ba8225dae", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 4, + "Paragraph": "Introduction Military personnel possess a wide range of skills and capacities that may contribute to DDR processes in the context of UN peacekeeping operations, SPMs, and non-mission settings. In peacekeeping operations, military components may be made up of formed contingents/units, MILOBs, and staff officers (see section 4). In contrast, in SPMs, MI- LOBs and military advisers may be deployed in the absence of formed military con- tingents. In non-mission settings, national and international military personnel can be mandated to support DDR processes either as part of national armed forces or as part of joint military teams formed through bilateral military cooperation. In these various types of settings, the role of the military will differ depending on the specific mandate and the resources available.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "be139949-751c-415e-b854-b4dd0375e496", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to military roles and responsibilities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a577480b-86eb-4fdb-b331-f387202f0a32", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 5, + "Paragraph": "Voluntary Integrated DDR shall not be conflated with military operations or counter-insurgen- cy strategies. DDR is a voluntary process, and practitioners shall therefore seek legal advice if confronted with combatants who surrender or are captured during overt mil- itary operations, or if there are any concerns regarding the voluntariness of persons participating in DDR. In contexts where DDR is linked to Security Sector Reform, the integration of vetted former members of armed groups into national armed forces, the police or other uniformed services as part of a DDR process shall be voluntary (see IDDRS 6.10 on DDR and SSR).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "fd418e56-dfa1-454f-acbf-5eaa00805079", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 5, + "Paragraph": "Criteria for participation/eligibility When DDR and SSR processes are linked, former members of armed groups shall only be recruited into the reformed security sector if they are thoroughly vetted and meet the designated recruitment criteria. Former members of armed groups shall not be integrated into the national armed forces merely because of their status as a member of an armed group. Children shall not be recruited into the national armed forces and effective age assessment procedures must be in place (see IDDRS 5.20 on Children and DDR). Former members of armed groups who have been involved in the commission of war crimes or human rights violations shall not be eligible for recruitment into the national armed forces, including when DDR processes are linked to SSR.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "1520386c-6072-4669-8139-6aa34bf891f4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 5, + "Paragraph": "Unconditional release and protection of children In missions that hold a specific Child Protection/Children and Armed Conflict man- date, child protection is a specified mandated task for the military component. The child protection mandates for missions can include: support to DDR processes, includ- ing the effective identification and demobilization of children, taking into account the specific concerns of girls and boys; a requirement to monitor and report on the Six Grave Violations against children, namely, recruitment and use of children, killing and maiming, sexual violence against children, abduction, attacks on schools and hospitals and denial of humanitarian access; and/or a requirement for the mission to work closely with the government or armed groups to adopt and implement measures to protect children including Action Plans to end and prevent grave violations.. The tasks of the military component, in close coordination with mission child protection advisors, therefore include, but are not limited to: providing physical protection for children; gathering and sharing information through the military chain of command and child protection advisors on the Six Grave Violations; supporting the separation of children from armed forces and groups, including their handover to civilian child protection actors; and providing security for Child Protection Advisers or civil society actors when they visit the military barracks of armed forces/armed groups. Child protection shall be integrated into all military work, including when UN civilian and military personnel undertake mentoring and advisory activities and build the capacity of State armed forces in conflict-affected countries. The military component shall ensure that gender-responsive child protection is understood by all members of the force and those persons working with military per- sonnel through in-mission induction briefings and ongoing training on child protec- tion. Child protection shall also be mainstreamed into daily operations and, in particu- lar, into protection activities. Commanders, staff and associated personnel at all levels should ensure that threats to and from children and their vulnerabilities are identified, and that plans and orders are developed to provide effective protection on the ground, working in concert with mission child protection advisers, other protection partners and local communities. These plans should include a gender perspective in order to recognise the different threats to, and protection concerns of, girls and boys. A military child protection focal point network shall be implemented at the oper- ational and tactical levels to ensure that child protection concerns are considered at all stages of the planning process and in operational activities. The military component shall appoint a military child protection focal point at mission headquarters as well as child protection focal points within Battalion/Company Headquarters. Child protection and child rights shall be included not only in military training but in standard operating procedures as well as in military guidance as appropriate. Force commanders and tactical level commanders, in consultation with mission child protection actors, shall issue specific guidance on child protection in the format of a Force Directive on Child Protection and tactical level SOPs. Specific SOPs and/or pro- tocols shall be developed on the handover to civilian child protection actors of children captured in operations, those who surrender to the peacekeeping force, or those re- leased en masse. Specific gender-responsive guidelines shall also be developed for the battalion on child protection concerns for girls and boys, including detention, conduct during interaction with children, and prevention of all forms of exploitation against children, including child labour, sexual exploitation and abuse, and protection of civil- ians. Whenever orders are written, or an activity planned, military staff should always consider the impact on girls and boys and their protection, and always consult mission child protection advisers. All SOPs and guidelines shall include a gender perspective in order for practitioners to develop fully gender-responsive plans that meet the differ- ing needs of girls and boys. For further guidance, refer to the UN\u2019s Military Specialised Training Materials on Child Protection.2", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e5b50f9e-815f-4204-af9b-8067020050e3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 6, + "Paragraph": "In accordance with standards and principles of humanitarian assistance UN military personnel should be impartial. Furthermore, any form of support by Unit- ed Nations military personnel or UN entities to non-UN security forces must be pro- vided in full compliance with the UN Human Rights Due Diligence Policy on United Nations Support to Non-UN Security Forces.3 This policy requires an assessment of the risk that recipients of UN support will commit grave violations of international humanitarian, human rights or refugee law. If a level of risk is identified, mitigating measures shall be put in place. It is the responsibility of every UN entity providing sup- port to undertake such a risk assessment. As defined in the HRDDP, \u201csupport\u201d encom- passes a range of potential activities, from training, mentoring and advisory services to joint operations conducted by UN and non-UN security forces. Risk assessments shall be undertaken prior to the delivery of support to recipients.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "184bd22b-e3f4-40ce-97b7-f366228f93be", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 7, + "Paragraph": "Gender-responsive and inclusive Since the adoption in 2000 of Security Council Resolution 1325 on women, peace, and security, there have been numerous resolutions and calls for more women in peace- keeping. Under the 2018 Action for Peace (A4P) initiative, Member States commit them- selves to ensure the full, equal and meaningful participation of women in all stages of the peace process by systematically integrating a gender perspective into all stages of analysis, planning, implementation and reporting. They further commit to increase the number of civilian and uniformed women in peacekeeping at all levels and in key positions. The Uniformed Gender Parity Strategy 2018\u20142028 calls for 15 % female rep- resentation in the contingent unit and 25% in individual positions. The meaningful participation of women as peacekeepers, MILOBs, and staff of- ficers has a number of benefits to the DDR process. Female military personnel can access populations and venues that are closed to men. They can search women when necessary and can help to make peacekeeping forces more approachable to local com- munities, particularly to women and girls who may have suffered acts of sexual vio- lence. Lastly, female military personnel are role models in the communities in which they serve and in their respective countries. For these reasons, the planning phase of any operation must include a gender perspective, and the gender composition of in- coming forces should reflect the community it is mandated to protect. UNSCR 1325 stipulates that all peacekeeping personnel shall receive training on \u201cthe protection, rights and the particular needs of women, as well as on the importance of involving women in all peacekeeping and peacebuilding measures\u201d. All incoming forces shall also receive training on gender and Sexual Exploitation and Abuse, par- ticularly the UN\u2019s Zero Tolerance Policy.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "02848d53-0ca9-4d2b-8f8a-c685e065fb8b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 7, + "Paragraph": "Context specific There is no one-size-fits-all military policy and, as a result, there can be no standard- ized approach to determining military support to a particular DDR process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "07aed46c-ab17-4846-b237-5444db830bc9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 7, + "Paragraph": "Safety and security In a mission context with a peacekeeping operation, the provision of security around disarmament and demobilization sites will typically be undertaken by the military component. However, all matters related to law and order shall be undertaken by the UN police component (see IDDRS 4.50 on UN Police Roles and Responsibilities).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b019b644-917d-46a3-ab71-51ba0882e38e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 8, + "Paragraph": "Transition and exit strategies The withdrawal of international peacekeeping forces shall be a carefully planned exercise, drawing on consultations with all relevant stakeholders, including concerned Governments and the humanitarian, development, peace and political arms of the UN system present in mission contexts. The pace of this withdrawal shall be based, among other factors, on the ability of State security institutions to take over the maintenance of security and public order, as well as of other actors to take over certain services previously provided by the peacekeeping force.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "80494787-1852-46a2-8d4b-86361d8554d4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 8, + "Paragraph": "The military component in mission settings Most UN peacekeeping operations, particularly those with a DDR mandate, rely on contingent troops and MILOBS that are collectively referred to as the peacekeeping force. The primary function of the military component is to provide security and to observe and report on security-related issues. Military contingents vary in their capa- bilities, structures, policies and procedures. Each peacekeeping operation has a military component specifically designed to fulfil the mandate and operational requirement of the mission. Early and comprehensive DDR planning will ensure that appropriately trained and equipped units are available to support DDR. As military resources and assets for peace operations are limited, and often provided for multiple purposes, it is important to identify specific DDR tasks that are to be carried out by the military at an early stage in the mission-planning process. These tasks will be different from the generic tasks usually captured in Statement of Unit Requirements. If any specific DDR-related tasks are identified during the planning phase, they must be specified in the Statement of Unit Requirements of the concerned unit(s).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "c9190a58-194c-4395-a371-e8915b5160ad", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 8, + "Paragraph": "Composition The military component can be made up of: Formed units or contingents: These can include motorized, mechanized and light infantry units, aviation units, engineering units, and various support units, some of which can provide logistics support, including specialists in explosives and weapons destruction. Normally the support element of the force, usually called the Enabler, is designed primarily for the needs of the overall mission. The chief of mission support controls the tasking of logistics support, aviation, engineering and mobile medical/field hospital units. Military observers: MILOBs are officers normally provided by Member States for 12 months who operate in small teams of between two and six. Where possible, MILOBs are incorporated into the force command structure. MILOBs typically op- erate unarmed. Staff officers: Individual military officers serve in staff posts, both within the force headquarters and in various specialized positions where some are integrated with the civilian staff. Some staff officers are deployed on individual assignments, while others are part of broader military contingents. Table 1 below shows the various structures and ranks within a military component. It should be taken as a broad guide only, as each contingent may vary.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5a913d20-c189-432f-bff2-e1914e3dff95", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 9, + "Paragraph": "Command and control The peacekeeping force is commanded by a force commander. It is important to dis- tinguish between operational military tasks in support of DDR processes, which are directed by the military chain of command in close coordination with the DDR compo- nent of the mission, and engagement in the DDR planning and policymaking process, which is often politically sensitive. Any military personnel involved in the latter, al- though remaining under military command and control, will operate under the overall guidance of the chief of the DDR component, senior mission leadership, and the Joint Operations Centre (JOC). For support and logistics tasks, the peacekeeping force will operate under the guidance of the Chief of Mission Support/Director of Mission Sup- port (CMS/DMS).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7c583c6d-1d15-463c-92f6-d5e90cb91e67", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 9, + "Paragraph": "Military component contribution Specialized military capacities such as communications, aviation, engineering, medical and logistics support are often in short supply, and hence may be used only when uniquely able to fulfil the task at hand. Where civilian sources can meet an approved operational requirement and the military component of a mission is fully engaged with other tasks, civilian resources should be used. If mandated, resourced and ap- propriately equipped, the military should be able to contribute to DDR in the ways de- scribed below. Furthermore, if the mandate and the concept of operations specify military support to a DDR process, then this should be factored into the force structure when the concept of operations is drawn up.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "890fdb60-bcad-41f9-9ca4-245eab882a8d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 7, + "Paragraph": "Security The primary contribution of the military component to a DDR process is to provide security for DDR staff, partners, infrastructure and beneficiaries. Security is essential to ensure former combatants\u2019 confidence in DDR, and to ensure the security of other elements of a mission and the civilian population. If tasked and resourced, a military component may contribute to the creation and maintenance of a stable, secure environment in which DDR can take place. This may include the provision of security to areas in which DDR programmes and DDR-related tools (including pre-DDR and community violence reduction) are being implemented. Military components may also provide security to DDR and child protection practitioners, and to those participating in DDR processes, including children and dependants. This may include the provi- sion of security to routes that participants will use to enter DDR and/or the provision of military escorts. Security is provided primarily by armed UN troops, but could be supplemented by the State\u2019s defence security forces and/or any other security provider. Finally, military components may also secure the collection, transportation and storage of weapons and ammunition handed in as part of a DDR process. They may also monitor and report on security-related issues, including incidents of sexual and gender-based violence. Experience has shown that unarmed MILOBs do not provide security, although in some situations they can assist by contributing to early warning, wider information gathering and information distribution.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2530fa47-1dc7-41ef-b538-4c3cd15b6209", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 10, + "Paragraph": "Disarmament Military components may possess ammunition and weapons expertise useful for the disarmament phase of a DDR programme. Disarmament typically involves the col- lection, documentation (registration), identification, storage, and disposal (including destruction) of conventional arms and ammunition (see IDDRS 4.10 on Disarmament). Depending on the methods agreed in peace agreements and plans for future national security forces, weapons and ammunition will either be destroyed or safely and se- curely managed. Military components can therefore assist in performing the following disarmament-related tasks, which should include a gender perspective in their plan- ning and execution: Monitoring the separation of forces. Monitoring troop withdrawal from agreed-upon areas. Manning reception centres. Undertaking identification and physical checks of weapons. Collection, registration and identification of weapons, ammunition and explosives. Registration of male and female ex-combatants and associated groups. Not all military units possess the requisite capabilities to support the disarmament component of a DDR programme. Early and comprehensive planning should identify whether this is a requirement, and units/capabilities should be generated accordingly. For example, the collection of unused landmines may constitute a component of disar- mament and requires military explosive ordnance disposal (EOD) units. The destruc- tion and disposal of ammunition and explosives is also a highly specialized process and shall only be conducted by specially trained EOD military personnel in coordina- tion with the DDR component of the mission. When the military is receiving weapons, it is important that both male and female soldiers participate in the process, particular- ly if it is necessary to search former combatants and persons formerly associated with armed forces and groups.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "68b515e9-2cfa-4a28-9e30-596959b11813", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 11, + "Paragraph": "Transitional weapons and ammunition management Military components may also assist with transitional weapons and ammunition management (WAM) as part of pre-DDR, as part of community violence reduction, or as part of DDR support to transitional security arrangements. The precise roles and responsibilities to be played by military components in each of these scenarios should be outlined in a set of standard operating procedures for transitional WAM (see IDDRS 4.11 on Transitional Weapons and Ammunition Management).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "471ac6b0-c60a-4b9d-9325-71ed26282b2d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 11, + "Paragraph": "Information gathering and reporting The DDR component of the mission should coordinate and manage information gathering and reporting tasks, with supplementary information provided by the Joint Operations Centre (JOC) and Joint Mission Analysis Centre (JMAC). The military com- ponent can seek information on the following: The locations, sex- and age-disaggregated troop strengths, and intentions of former combatants or associated groups, who may or will become part of a DDR process. Estimates of the number/type of weapons and ammunition expected to be collected/stored dur- ing a DDR process, including those held by women and children. As accurate estimates may be difficult to achieve, planning for disarmament and broader transitional WAM must include some flexibility. Sex- and age-disaggregated estimates of non-combatants associated with the armed forces, including women, children, and elderly or wounded/disabled people. Their roles and responsibilities should also be identified, particularly if human trafficking, slavery, and/or sexual and gender-based violence is suspected. Information from UN system organizations, NGOs, and women\u2019s and youth groups. The information-gathering process can be a specific task of the military compo- nent, but it can also be a by-product of its normal operations, e.g., information gathered by patrols and the activities of MILOBs. Previous experience has shown that the lead- ers of armed groups often withhold or distort information related to DDR, particularly when communicating with the rank and file. Military components can be used to de- tect whether this is happening and can assist in dealing with this challenge as part of the public information and sensitization campaigns associated with DDR (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). The military component can assist dedicated mission DDR staff by monitoring and reporting on progress. This work must be managed by the DDR staff in conjunc- tion with the JOC.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5ed6d515-ab7a-42ee-935e-7b26672eb167", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 12, + "Paragraph": "Information dissemination and sensitization Military components are typically widely spread across the conflict-affected country/ region and can therefore assist by distributing information on DDR to potential partic- ipants and beneficiaries. Any information campaign should be planned and monitored by the DDR component and wider mission public information staff (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). MILOBs and the infantry battalion can assist in the dissemination of public information and in sensiti- zation campaigns.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0c390864-3bf3-4cd1-ad1f-0c88ff044b32", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 12, + "Paragraph": "Logistics support Military components may conduct a wide range of logistical tasks ranging from trans- portation to the construction of static disarmament and demobilization sites (see ID- DRS 4.10 on Disarmament and IDDRS 4.20 on Demobilization). Logistics support pro- vided by a military component must be coordinated with units that provide integrated services support to a mission. Where the military is specifically tasked with providing certain kinds of support, additional military capability may be required by the military component for the duration of the task. A less ideal solution would be to reprioritize or reschedule the activities of military elements carrying out other mandated tasks. This approach can have the disadvantage of degrading wider efforts to provide a secure environment, perhaps even at the expense of the security of the population at large.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "90165e3d-784e-499e-bedf-a8ff4cf319b7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 12, + "Paragraph": "Pre-deployment planning During pre-deployment planning, assessment and advisory visits (AAVs) are con- ducted to facilitate planning and decision-making processes at the UN Headquarters (UNHQ) level and to improve understanding of the preparedness of Member States wishing to contribute to UN peacekeeping operations. For new and emerging Troop Contributing Countries (TCCs), an AAV provides advice on specific UN operation- al and performance requirements. If DDR is required, TCCs can be provided with advice on the preparation of DDR activities during AAVs. A lead role should be played by the Integrated Training Service, who should include information on the prepara- tion and implementation of DDR, including through a gender-perspective, within the pre-deployment training package. AAVs also support those Member States that are contributing a new capability in UN peace operations with guidance on specific UN requirements and assist them in meeting those requirements. Finally, preparedness for DDR is a responsibility of TCCs with UNHQ guidance. During pre-deployment visits, preparedness for DDR can be evaluated/assessed. For the military component, DDR planning is not very different from planning related to other military tasks in UN peace operations. Clear guidance is necessary on the scope of the military\u2019s involvement.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "54f13a99-9a84-4345-8034-cce79db7251d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Contingency planning Contingency planning for military contributions to DDR processes will typically be carried out by military staff at UNHQ in collaboration with the Force Headquarters of the Mission. Ideally, once it appears likely that a mission will be established, individu- als can be identified in Member States to fill specialist DDR military staff officer posts in a DDR component in mission headquarters. These specialists could be called upon to assist at UNHQ if required, ahead of the main deployment.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7a54480e-cb0b-4ce2-ab5d-6a2238c0f70e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Joint assessment mission Military staff officers, either from UNHQ or, ideally, individuals specifically allocated as DDR staff for peace operations, will participate, when required and available, in joint assessment missions to assist in determining the military operational requirement spe- cifically needed to support DDR. These officers can advise on technical issues that will be relevant to the particular DDR process and should possess gender expertise.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a6993628-ddf5-41f4-83d5-c308d20aff75", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Mission concept of operations A mission concept of operations is drawn up as part of an integrated activity at UNHQ. As part of this process, a detailed operational requirement will be developed for mil- itary capability to meet the proposed tasks in the concept. This will include military capability to support UN DDR. The overall military requirement is the responsibili- ty of the Military Adviser, however, this individual is not responsible for the overall DDR plan. There must be close consultation among all components involved in DDR throughout the planning process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "b260c55d-3812-4cd5-8a26-35ae71121245", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Mission plan Ideally, detailed mission plans will be drawn up by individuals who will fill planning and management positions in the proposed new mission. If this is not possible, initial plans will be drawn up by UNHQ staff, then reviewed and adjusted by mission staff as DDR progresses. Mission plans and concepts of operations will also need to be re- viewed, should the Security Council not approve all identified and proposed operation- al requirements. In addition, as DDR processes should be owned by Governments or transitional Governments, mission plans should be flexible and allow for adjustments.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "38bc197c-d0eb-4e9f-b196-9f33d0faab13", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 13, + "Paragraph": "Force generation The UN\u2019s Force Generation Service is responsible for interaction with Member States to acquire the military capabilities identified in the operational requirement. Contri- butions are negotiated on a case-by-case basis. Member States will not start formal negotiations until the Security Council has mandated a mission. For complex missions, i.e., most missions involving DDR, the UN has a target of having troops completely deployed within 90 days. If the military operational requirement specifically identified to support DDR is likely to be concentrated on support to disarmament, transitional WAM, and demobi- lization, it may be possible to reduce the size of the force once these aspects have been completed, if the security situation allows. In other words, it may be possible to design a force structure that has an element that will be required only for these specific activities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "90803a03-672f-4b2d-9f0d-0c8172bdc9ee", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 14, + "Paragraph": "DDR component staffing Military capacity used in a DDR process is planned in detail and carried out by the military component of the mission within the limits of its capabilities. Military staff officers could fill posts in a DDR component as follows: Mil SO1 DDR \u2013 military liaison (Lieutenant Colonel); Mil SO2 DDR \u2013 military liaison (Major); Mil SO2 DDR \u2013 disarmament and weapons control (Major); Mil SO2 DDR \u2013 gender and protection issues (Major). The posts will be designed to meet the specific requirements of the mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d83ed09c-f58a-4dd5-b2ed-ada660593bab", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 14, + "Paragraph": "Special political missions and non-mission settings In SPMs, MILOBs and military advisers may be deployed in the absence of formed mil- itary contingents. Depending on the particular context, the roles and responsibilities of military personnel in these settings may include the provision of technical advice on dis- armament and transitional WAM (see section 5.3.3); and the building of bilateral relation- ships with non-UN military forces including national armies and regional peace support operations. Importantly, DDR practitioners shall ensure that all UN engagement with non-UN security forces be undertaken in accordance with the United Nations Human Rights Due Diligence Policy on UN Support to Non-UN Security Forces. In non-mission settings, national and international military personnel can be invited to support DDR processes either as part of national armed forces or as part of joint military teams formed through bilateral military cooperation. The roles and responsibilities of these military personnel may be similar to those played by UN military personnel in mission settings.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "c80c6002-ed81-48d1-ab9e-804cc417bae9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 14, + "Paragraph": "DDR and security sector reform DDR may be closely linked to security sector reform (SSR) in a peace agreement. This agreement may stipulate that vetted former members of armed forces and groups are to be integrated into the national armed forces, police, gendarmerie or other uniformed services. In some DDR-SSR processes, the reform of the security sector may also lead to the discharge of members of the armed forces for reintegration into civilian life. Dependent on the DDR-SSR agreement in place, these individuals can be given the option of benefiting from reintegration support. The modalities of integration into the security sector can be outlined in technical agreements and/or in protocols on defence and security. National legislation regulat- ing the security sector may also need to be adjusted through the passage of laws and decrees in line with the peace agreement. At a minimum, the institutional and legal framework for SSR shall provide: An agreement on the number of former members of armed groups for integration into the security sector; Clear vetting criteria, in particular a process shall be in place to ensure that in- dividuals who have committed war crimes, crimes against humanity, genocide, terrorist offences or human rights violations are not eligible for integration; in addition, due diligence measures shall be taken to ensure that children are not recruited into the military; A clear framework to establish a policy and ensure implementation of appropriate training on relevant legal and regulatory instruments applicable to the security sector, including a code of conduct; A clear and transparent policy for rank harmonization. DDR planning and management should be closely linked to SSR planning and management. Although international engagement with SSR is often provided through bilateral cooperation agreements, between the State carrying out SSR and the State(s) providing support, UN entities may provide SSR support upon request of the parties concerned, including by participating in reviews that lead to the rightsizing of the se- curity sector in conflict-affected countries. Military personnel supporting DDR pro- cesses may also engage with external actors in order to contribute to coherent and in- terconnected DDR and SSR efforts, and may provide tactical, strategic and operational advice on the reform of the armed forces. For further information on vetting and the integration of armed forces and groups in the security sector, see IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "78a7e742-e879-42eb-a8d1-9fb0f3112591", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf", + "PageNum": 15, + "Paragraph": "DDR training requirements for military personnel Military components and personnel must be adequately trained. In General Assem- bly Resolution A/RES/49/37 (1995), Member States recognized their responsibility for the training of uniformed personnel for UN peacekeeping operations and requested the Secretary-General to develop relevant training materials and establish a range of measures to assist Member States. In 2007, the Integrated Training Service was creat- ed as the centre responsible for peacekeeping training. The Peacekeeping Resource Hub was also launched in order to disseminate peacekeeping guidance and training materials to Member States, peacekeeping training institutes and other partners. A number of trainings institutions, including peacekeeping training centers, offer annu- al DDR training courses for both civilian and military personnel. DDR practitioners should plan and budget for the participation of civilian and military personnel in DDR training courses.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "7320296c-11a4-4a1a-a020-be081cac3e81", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 3, + "Paragraph": "Summary Successful reintegration is a particular complex part of DDR. Ex-combatants and those previously associated with armed forces and groups are finally cut loose from structures and processes that are familiar to them. In some contexts, they re-enter societies that may be equally unfamiliar and that have often been significantly transformed by conflict. A key challenge that faces former combatants and associated groups is that it may be impossible for them to reintegrate in the area of origin. Their limited skills may have more relevance and market-value in urban settings, which are also likely to be unable to absorb them. In the worst cases, places from which ex-combatants came may no longer exist after a war, or ex-combatants may have been with armed forces and groups that committed atrocities in or near their own communities and may not be able to return home. Family and community support is essential for the successful reintegration of ex-com- batants and associated groups, but their presence may make worse the real or perceived vulnerability of local populations, which have neither the capacity nor the desire to assist a \u2018lost generation\u2019 with little education, employment or training, war trauma, and a high militarized view of the world. Unsupported former combatants can be a major threat to the security of communities because of their lack of skills or assets and their tendency to rely on violence to get what they want. Ex-combatants and associated groups will usually need specifically designed, sus- tainable support to help them with their transition from military to civilian life. Yet the United Nations (UN) must also ensure that such support does not mean that other war-af- fected groups are treated unfairly or resentment is caused within the wider community. The reintegration of ex-combatants and associated groups must therefore be part of wider recovery strategies for all war-affected populations. Reintegration programmes should aim to build local and national capacities to manage the process in the long-term, as rein- tegration increasingly turns into reconstruction and development. This module recognizes that reintegration challenges are multidimensional, rang- ing from creating micro-enterprises and providing education and training, through to preparing receiving communities for the return of ex-combatants and associated groups, dealing with the psychosocial effects of war, ensuring ex-combatants also enjoy their civil and political rights, and meeting the specific needs of different groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "49361320-ba4f-4d77-9129-76fdc5af5876", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 3, + "Paragraph": "Module scope and objectives The objective of this module is to provide DDR planners and practitioners with an over- view of the issues that need to be taken into account when planning, designing and implementing a reintegration programme, in addition to offering practical guidance on how to successfully deal with any challenges that may arise. Given the complexity of reintegration, and the need for context-specific programmes, the guidance offered here is less prescriptive than in some other modules of the IDDRS. Following discussion of the approaches to reintegration and guidance on programme planning and design, the key components of a reintegration programme are outlined and discussed, from economic, social/psychosocial, and political perspectives. Finally, the module identifies linkages between reintegration and the wider recovery/peacebuilding frameworks.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0c4a708d-6ca6-42a9-bce8-09c0347f9de4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of definitions used in this Reintegration standard. A complete glossary of all the terms, definitions and abbreviations used in the series of Integrated DDR Standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201da) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "78e4290e-c5b2-4d38-ae29-46e291a2f5df", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 4, + "Paragraph": "Introduction Sustainable reintegration of former combatants and associated groups into their commu- nities of origin or choice is the ultimate objective of DDR. A reintegration programme is designed to address the many destabilizing factors that threaten ex-combatants\u2019 suc- cessful transition to peace, including: economic hardship, social exclusion, psychological and physical trauma, and political disenfranchisement. Failure to successfully reintegrate ex-combatants will undermine the achievements of disarmament and demobilization, furthering the risk of renewal of armed conflict. Reintegration of ex-combatants and associated groups is a long-term process that occurs at the individual, community, national, and at times even regional level, and has economic, social/psychosocial, political and security factors affecting its success. Post-conflict economies have often collapsed, posing significant challenges to creating sustainable livelihoods for former combatants and other conflict-affected groups. Social and psychological issues of identity, trust, and acceptance are crucial to ensure violence prevention and lasting peace. In addition, empowering ex-combatants to take part in the political life of their communities and state can bring forth a range of benefits, such as providing civilians with a voice to address any former or residual grievances in a socially constructive, non-violent manner. Without sustainable and comprehensive reintegration, former combatants may become further marginalized and vulnerable to re-recruitment or engagement in criminal or gang activities. A reintegration programme will attempt to facilitate the longer-term reintegration process by providing time-bound, targeted assistance. A reintegration programme cannot match the breadth, depth or duration of the reintegration process, nor of the long-term recovery and development process; therefore, careful analysis is required in order to design and implement a strategic and pragmatic reintegration programme that best bal- ances timing, sequencing and a mix of programme elements from among the resources available. A strong monitoring system is needed to continuously track if the approach taken is yielding the desired effect. A well-planned exit strategy, with an emphasis on capacity building and ownership by national and local actors who will be engaged in the reintegration process for much longer than the externally assisted reintegration pro- gramme, is therefore crucial from the beginning. A number of key contextual factors should be taken into account when planning and designing the reintegration strategy. These contextual factors include: (i) the nature of the conflict (i.e. ideology-driven, resource-driven, identity-driven, etc.) and duration as determined by a conflict and security analysis; (ii) the nature of the peace (i.e. military victory, principle party negotiation, third party mediation); (iii) the state of the economy (especially demand for skills and labour); (iv) the governance capacity and reach of the state (legitimacy and institutional capacity); and, (v) the character and cohesiveness of combatants and receiving communities (trust and social cohesiveness). These will be dis- cussed in greater detail throughout the module. There are also several risks and challenges that must be carefully assessed, moni- tored and managed in order to successfully implement a reintegration programme. One of the key challenges in designing and implementing DDR programmes is how to ful- fill the specific and essential needs of ex-combatants without turning them into a real or perceived privileged group within the community. The reintegration support for ex-com- batants should therefore be planned in such a manner as to avoid creating resentment and bitterness within wider communities or society or putting a strain on a community\u2019s limited resources. Accordingly, this module seeks to emphasize the importance and ben- efits of approaching reintegration programmes from a community-based perspective in order to more effectively execute programme activities and avoid possible tensions form- ing between ex-combatants and community members. In order to increase the effectiveness of reintegration programmes, it is also essential to recognize and identify their limitations and boundaries. Firstly, the trust of ex-com- batants in the political process is often heavily influenced by the nature of the peace settlement and the trust of the overall population in the process; DDR both influences and is influenced by political processes. Secondly, the presence of economic opportunities is critical. And thirdly, the governance capacity of the state, referring to its perceived legit- imacy and institutional capacity to govern and provide basic services, is essential to the successful implementation of a DDR programme. DDR is fundamentally social, economic and political in character and should be seen as part of a broader integrated approach to recovery, including security, governance, and political and developmental aspects. There- fore, programmes shall be based upon context analyses (see above on contextual factors) that are integrated, comprehensive and coordinated across the UN family with national and other international partners.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "b92adb3d-afb1-4708-82ab-f63eb12c98fa", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 6, + "Paragraph": "Guiding Principles IDDRS 2.10 on the UN Approach to DDR sets out the main principles that shall guide all aspects of DDR planning and implementation. All UN DDR programmes shall be: people-centred; flexible; accountable and transparent; nationally and locally owned; inte- grated; and well-planned, in addition to being gender-sensitive. More specifically, when designing and implementing reintegration programmes, planners and practitioners shall take the following guidance into consideration:", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "2bef827b-247c-4dcf-8517-46d9309e8ca5", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 6, + "Paragraph": "People-centred UN-supported reintegration strategies will include diverse people and communities with various needs. Non-discrimination and fair and equitable treatment of participants and beneficiaries are core principles of the UN approach to DDR. A \u2018people-centred\u2019 approach recognizes that differences exist among reintegration participants and beneficiaries \u2013 differences which include, but are not limited to sex, age, class, religion, and physical, intellectual or psycho-social capacities \u2013 all of which require targeted responses. Rein- tegration assistance shall therefore be based on thorough profiling of ex-combatants and assessments of the social, economic, political and cultural contexts into which they are reintegrating in order to support specific needs.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "197619ca-f0d1-45d1-aabf-ee701f810447", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 6, + "Paragraph": "Flexible To respond to contextual changes and remain relevant, reintegration programmes should be designed in such a way that allows for maximum adaptability. While the reintegration programme design will be based on initial assessments, it is important to remember that many contextual factors will change significantly during the course of the programme, such as the wishes and ambitions of ex-combatants, the labour market, the capacity of service providers, the capacity of the different government bodies, in addition to the agen- das of political parties and leaders in power. Furthermore, new or broader recovery plans may be designed during the timeframe of the DDR programme, for which reintegration programmes should be linked. Additionally, flexibility is required on the issue of targeting principles. While in the beginning of the programme exclusive targeted approaches might be appropriate, flexibil- ity to enlarge the target group within the scope of the programme should be considered and may also be part of the programme exit strategy. This means that the total number of combatants might be known at the beginning of a programme, but not necessarily the total number of beneficiaries or people assisted. Furthermore, flexibility of the types of reintegration assistance offered should be applied within the national programme. Fixed packages of individual assistance shall therefore be avoided.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "cee383af-1050-41dd-a675-e3cb534e6656", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 7, + "Paragraph": "Accountable and transparent Reintegration assistance shall be based on the principles of accountability and transpar- ency. Public information and communication strategies shall therefore be drawn up and implemented as early as possible. Public information, awareness-raising and community consultation and sensitization ensure that affected participant and beneficiary groups have a chance to influence and to receive accurate information on DDR programme proce- dures and reintegration assistance. Once expected results are clearly defined by all stakeholders, key indicators for mon- itoring and measuring programme impact shall be agreed upon, based on careful context assessments and analysis. Defining a set of indicators in a participatory manner helps to clarify expectations and leads to a broad agreement on realistic targets. Individuals or organizations responsible for monitoring should also be agreed upon, as well as how often monitoring reports will be drawn up. The data for indicators should be updated at least quarterly and communicated to stakeholders.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e4ac3515-87f2-4cfb-9d4f-c57757662ef1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 7, + "Paragraph": "Nationally and locally owned The success of reintegration programmes depends on the combined efforts of individu- als, families and communities and therefore reintegration programmes shall be designed through an inclusive, participatory process that involves ex-combatants and communities, local and national authorities, and non-governmental actors in planning and deci- sion-making from the earliest stages. Buy-in to the reintegration process by key armed actors and military leaders shall be one of the first priorities of the DDR programme, and should be achieved in collaboration with national government and other key stakeholders in accordance with UN mandates. All parties to the conflict shall commit themselves to accepting an agreed framework, together with a timetable for carrying out activities. The primary responsibility for the successful outcome of DDR programmes rests with national authorities and local stakeholders. Reintegration programmes shall there- fore seek to develop the capacities of receiving communities, as well as local and national authorities. In contexts where national capacity is weak, it is important to ensure that international actors do not act as substitutes for national authorities in programme man- agement and implementation, but rather put forth all efforts to strengthen the national capacities needed to implement the long-term reintegration process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "93107c0e-a7a0-4316-8aed-84e3f71f4457", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 4, + "Paragraph": "Integrated DDR processes both influence and are affected by wider recovery, peacebuilding and state transformational processes. It is therefore essential that reintegration programmes work collaboratively with other programmes and stakeholders to achieve policy coherence, sec- toral programme integration, inter-agency cooperation and coordination from the start. UN integrated units should be used wherever possible to support the implementation of DDR programmes. In addition, the use of technical working groups, donor forums, and rapid response/surge modalities should be used to further integrate efforts in the area of DDR. It is also particularly relevant that line ministries receive appropriate support from DDR programmes to ensure that reintegration will be sustainable and in accordance with other national policies and plans.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05254ac6-5c4d-41aa-a885-c6a47607bdb9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 8, + "Paragraph": "Well-planned A well-planned reintegration programme shall assess and respond to the specific needs of its male and female participants (i.e. gender-sensitive planning), who might be children, youth, adults, elders and/or persons with disabilities. Effective and sustainable reintegration depends on early planning that is based on: a comprehensive understanding of the local context, a clear and unambiguous agreement among all stakeholders about objectives and results of the programme, the establishment of realistic timeframes, clear budgeting requirements and human resource needs, and a clearly defined programme exit strategy. Planning shall be based on existing assessments which include conflict and security analyses, gender analyses, early recovery and/or post-conflict needs assessments, in addition to reintegration-specific assessments. Reinte- gration practitioners shall furthermore ensure a results-based monitoring and evaluation (M&E) framework is developed during the planning phase and that sufficient resources and expertise are allocated for this task at the outset. Those planning the disarmament and demobilization phases shall work in tandem with the reintegration phase planners and experts to ensure a smooth transition, and more specifically that the programme has sufficient resources and capacity to absorb the demo- bilized groups, where applicable. It is important that promises on reintegration assistance are not made during the disarmament and demobilization phases that cannot be deliv- ered upon later. Finally, planning should recognize that DDR programming does not take place in a vacuum. Planners should therefore carefully consider, and where possible link with, other early recovery and peacebuilding initiatives and processes.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c6880387-45f3-4888-b048-b8367055255c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 8, + "Paragraph": "Gender-sensitive Reintegration programmes shall be designed, implemented and evaluated in a gen- der-sensitive manner. Gender-sensitive reintegration includes planning based upon sex-disaggregated data so that programmes can identify the specific needs and potentials of women, men, boys and girls. Women\u2019s and young girls\u2019 needs may include availability of child care facilities, access to land, property and livelihoods resources and rehabil- itation from sexual violence, whereas men and young boys may need more support to overcome socialization to violence and substance abuse, for example. In cases where women have self-demobilized or were excluded from DDR prog- ammes by commanders, efforts should be made to provide them with access to the formal or official reintegration programme, if they so choose. Female-specific reintegration pro- grammes may also be devised to address those women who will not access reintegration opportunities in official DDR programmes to avoid further stigmatization. In order to implement gender-responsive reintegration programmes, DDR staff, local stakeholders and implementing parterns may need to receive gender training and other capacity development. Public information and sensitization may also benefit from collab- oration with women\u2019s and men\u2019s organizations to address gender-specific needs. Gender-sensitive monitoring and evaluation requires that the DDR M&E framework includes gender-related indicators and specific assessments on gender. Reintegration pro- grammes should seek specific funding for such initiatives, and should work to monitor and evaluate the gender appropriateness of programmes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "957b5a75-edfa-49fa-b770-f43b8c7d2229", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 9, + "Paragraph": "Transitioning from reinsertion to reintegration In post-conflict settings that require economic revitalization and infrastructure develop- ment, the transition of ex-combatants to reintegration may be facilitated through reinsertion interventions. These short-term interventions are sometimes termed stabilization or \u2018stop gap\u2019 measures and may take on various forms, such as emergency employment, liveli- hood and start-up grants or quick-impact projects (QIPs). Reinsertion assistance should not be confused with or substituted for reintegration programme assistance; reinsertion assistance is meant to assist ex-combatants, associated groups and their families for a limited period of time until the reintegration programme begins, filling the gap in support often present between demobilization and reintegration activities. Although reinsertion is considered as part of the demobilization phase, it is important to understand that it is closely linked with and can support reintegration. In fact, these two phases at times overlap or run almost parallel to each other with different levels of intensity, as seen in the figure below. DPKO budgets will likely cover up to one year of reinsertion assistance. However, in some cases reinsertion may last beyond the one year mark. Reinsertion is often focused on economic aspects of the reintegration process, but does not guarantee sustainable income for ex-combatants and associated groups. Reinte- gration takes place by definition at the community level, should lead to sustainable income, social belonging and political participation. Reintegration aims to tackle the motives that led ex-combatants to join armed forces and groups. Wand when successful, it dissuades ex-combatants and associated groups from re-joining and/or makes re-recruitment efforts useless. If well designed, reinsertion activities can buy the necessary time and/or space to establish better conditions for reintegration programmes to be prepared. Reinsertion train- ing initiatives and emergency employment and quick-impact projects can also serve to demonstrate peace dividends to communities, especially in areas suffering from destroyed infrastructure and lacking in basic services like water, roads and communication. Rein- sertion and reintegration should therefore be jointly planned to maximize opportunities 4.20\tfor the latter to meaningfully support the former (see Module 4.20 on Demobilization for more information on reinsertion activities).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6bab2074-86ec-46ba-894d-9b8fd542fcd9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 10, + "Paragraph": "Approaches to the reintegration of ex-combatants The approaches to the reintegration of ex-combatants represent the different options avail- able to DDR planners when defining the reintegration strategy. The approaches discussed are not mutually exclusive. Rather, they can be used in an appropriate mix, timing and sequencing in order to support the overall goal of the specific DDR programme. An understanding of the needs and capacities of the ex-combatants, how they were psychosocially affected by the conflict, whether they are marginalized or not, the absorp- tive capacities of the receiving communities\u2019 labour markets, and the functionality of related markets and resources (land, natural resources and capital), including the local political (power dynamics) and institutional realities, should guide programme design and resource allocation. Local knowledge of these dynamics is essential to informing pro- gramme design. Based on the data gathered and its analysis, programme planners and practitioners should build consensus with partners and stakeholders on how to best allocate available resources to provide reintegration support to the identified participants and beneficiaries, deciding on the appropriate approach or mix of approaches.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "841a739c-41d8-4616-a17a-c01cc6d59c5d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 10, + "Paragraph": "Individual reintegration In practice, individual reintegration has aimed to provide long-term assistance to each ex-combatant depending upon his/her specific needs, the nature of the environment of return (urban or rural), and the services available in these locations. Individual reintegra- tion has typically included targeted activities geared towards increasing ex-combatants\u2019 individual employability and enabling their access to productive assets and opportunities. In addition, activities and means that have aimed to facilitate social reintegration \u2013 such as access to land and water, livelihoods assets, life skills training, psychosocial assistance, and activities that stimulate community acceptance \u2013 have been included. The individual reintegration approach has included ongoing technical advice, train- ing and mentoring, and other support services for the individual ex-combatant. Proper and timely advice, adequate monitoring, and follow-up have aimed to keep each ex-combatant focused on his/her plan and to help him/her to adapt to the ever-changing post-con- flict environment. Furthermore, assistance has often been delivered through information, counseling and referral services (ICRS). While individual reintegration has historically been a leading approach in the reinte- gration of ex-combatants, lessons learned from DDR programmes around the world have shown that reintegration approaches that include elements of community and family participation and assistance, as well as enlarged targeting principles, have higher success rates. For more information, see section 6.2. on community-based reintegration.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5b4e1246-e952-4cf3-883f-51be6602b290", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Community-based reintegration (CBR) Lessons learned from DDR programmes around the world have shown that reintegration approaches that include elements of community and family participation and assistance, as well as enlarged targeting principles, have higher success rates. Where DDR programmes have delivered individual reintegration to ex-combatants alone, the result has often been hostility or resentment on the part of community members who feel excluded from reintegration benefits. The problems arising from such dynamics have created barriers to the goals of social reintegration and the strengthening of com- munity cohesion, ultimately threatening the sustainability of reintegration programmes. Where community members are included in the planning process and provided access to concrete benefits, however, the result is often enhanced local ownership and acceptance of the reintegration programme. Reintegration programmes should therefore facilitate com- munities coming together to discuss and decide on their own priorities and methods that they believe will help in the reintegration of ex-combatants. While it is not the whole community that will receive reintegration assistance, in community-based reintegration approaches ex-combatants are assisted together with other members of the community. Selection criteria and percentages of ex-combatants to community members can vary. Lessons learned have shown that targeting community members with a similar profile to the ex-combatants can be particularly effective (such as unemployed youth).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "60389826-0275-48f6-a9ae-a2cda66714e0", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 11, + "Paragraph": "Dual targeting Dual targeting \u2013 providing reintegration assistance that simultaneously targets individ- ual ex-combatants and members of their communities of return or choice \u2013 can create a \u201cwin-win\u201d situation, contributing to the achievement of economic and social goals for both individual participants and community beneficiaries. Such assistance typically targets 50% ex-combatants and 50% conflict-affected community members, though pro- portions may vary depending on the context. This approach promotes greater inclusion in the reintegration process and can prove to be a useful way to manage risks and improve community security.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5cee03f5-6554-4d6a-b83d-bd203764fbed", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 11, + "Paragraph": "Ex-combatant-led initiatives Ex-combatant-led initiatives are those reintegration activities identified, planned and exe- cuted by the ex-combatants themselves with the aim of directly benefiting communities of return or choice. Through consultation and dialogue with community and civil society leaders, ex-combatants can work to identify those activities best suited to the community at large and their own skill sets. Such activities can provide ex-combatants with a sense of ownership of the reintegration achievements that take place at the community level. In addition, if well-executed and genuinely planned with the best interest of the community in mind, this approach has the potential to build ex-combatants\u2019 rapport with community members and greatly enhance reconciliation. DDR staff shall work closely with ex-combatants in the planning, implementation and monitoring of these initiatives to ensure that the activities chosen are transparent, fea- sible (e.g. sufficient capacity exists to implement the initiative, the activity is cost efficient, the activity can be completed within a reasonable timeframe) and appropriately benefit the community as a whole based on prior assessments and the local context.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f679a42d-352e-4b5a-9784-d6194b76456d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 12, + "Paragraph": "Area-based interventions Area-based reintegration targets a specifically defined geographic territory containing conflict-affected communities where large clusters of ex-combatants have been identi- fied. It aims to reintegrate conflict-affected groups into the economic and social life of a community through economic projects, such as those that focus on rebuilding public infrastructure, in addition to social reintegration activities that promote reconciliation. The objective of these interventions is to optimize the use of locally-based resources (rural and/or urban) and the synergies arising among local businesses, civil society, busi- ness development service providers, investors, authorities, etc. Rather than focusing on specific target groups, area-based interventions make use of local resources and exter- nal investments in order to offer context-specific solutions to post-war economic recovery. When applying an area-based approach, reintegration planners shall consider all net- works and economic flows that affect (or could affect) the defined territory.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "72c5bfdb-2c5f-416d-8093-434a2ee632a3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 12, + "Paragraph": "Focus on command structures The risks posed by enduring command structures should also be taken into account dur- ing reintegration planning and may require specific action. A stated aim of demobilization is the breakdown of armed groups\u2019 command structures. However, experience has shown this is difficult to achieve, quantify, qualify or monitor. Over time hierarchical structures erode, but informal networks and associations based upon loyalties and shared experi- ences may remain long into the post-conflict period. In order to break command structures and prevent mid-level commanders from becoming spoilers in DDR, programmes may have to devise specific assistance strategies that better correspond to the profiles and needs of mid-level commanders. Such support may include preparation for nominations/vetting for public appointments, redundancy payments based on years of service, and guidance on investment options, expanding a family business and creating employment, etc. Commander incentive programmes (CIPs) can further work to support the transformation of command structures into more defined organizations, such as political parties and groups, or socially and economically produc- tive entities such as cooperatives and credit unions. DDR managers should keep in mind that the creation of veterans\u2019 associations should be carefully assessed and these groups supported only if they positively support the DDR process. Extreme caution should be exercised when requested to support the creation and maintenance of veterans\u2019 associations. Although these associations may arise spontane- ously as representation and self-help groups due to the fact that members face similar challenges, have affinities and have common pasts, prolonged affiliation may perpetu- ate the retention of \u201cex-combatant\u201d identities, preventing ex-combatants from effectively transitioning from military to their new civilian identities and roles. The overriding principle for supporting transformed command structures is that the associations that arise permit individual freedom of choice (i.e. joining is not required or coerced). In some instances, these associations may provide early warning and response systems for identifying dissatisfaction among ex-combatants, and for building confidence between discontented groups and the rest of the community.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "02433864-8107-4d7a-a0a7-34e659de669f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 13, + "Paragraph": "Overview Reintegration planning should be based on rapid, reliable and detailed assessments and should begin as early as possible. This is to ensure that reintegration programmes are designed and implemented in a timely and effective manner, where the gap between demobilization/reinsertion and reintegration support is minimized as much as pos- sible. This requires that relevant UN agencies, programmes and funds jointly plan for reintegration. The planning phase of a reintegration programme should be based on clear assess- ments that, at a minimum, ask the following questions: A comprehensive understanding and constant re-appraisal of these questions and corresponding factors during planning and implementation phases will enhance and shape a programme\u2019s strategy and resource allocation. This data will also serve to inform concerned parties of the objectives and expected results of the DDR programme and linkages to broader recovery and development issues. Finally, DDR planners and practitioners should also be aware of existing policies, strategies and framework on reintegration and recovery to ensure adequate coordina- tion. DDR planners and managers should carefully assess timings, opportunities and risks involved in order to integrate DDR programmes with wider frameworks and pro- grammes. Partnerships with institutions and agencies leading on the implementation of such frameworks and programmes should be sought as much as possible to make an effi- cient and effective use of resources and avoid overlapping interventions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "292408c0-2402-435f-91ba-bd4376354058", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 14, + "Paragraph": "Mainstreaming gender into analyses and assessments The planning and design of reintegration programmes should be based on the collection of sex and age disaggregated data in order to analyze and identify the specific needs of both male and female programme participants. Sex and age disaggregated data should be captured in all types of pre-programme and programme assessments, starting with the conflict and security analysis, moving into post-conflict needs assessments and in all DDR-specific assessments. The gathering of gender-sensitive data from the start will help make visible the unique and varying needs, capacities, interests, priorities, power relations and roles of women, men, girls and boys. At this early stage, conflict and security analysis and rein- tegration assessments should also identify any variations among certain subgroups (i.e. children, youth, elderly, dependants, disabled, foreign combatants, abducted and so on) within male and female DDR beneficiaries and participants. The overall objective of integrating gender into conflict and security analysis and DDR assessments is to build efficiency into reintegration programmes. By taking a more gender-sensitive approach from the start, DDR programmes can make more informed decisions and take appropriate action to ensure that women, men, boys and girls equally benefit from reintegration opportunities that are designed to meet their specific needs. For 5.10\tmore information on gender-sensitive programming, see Module 5.10 on Women, Gender and DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bdc5d456-5552-4e9c-a11b-36e4e042d59d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 14, + "Paragraph": "Conflict and security analysis The nature of the conflict will determine the nature of the peace process, which in turn will influence the objectives and expected results of DDR and the type of reintegration approach that is required. Conflict and security analyses should be carried out and con- sulted in order to clarify the nature of the conflict and how it was resolved, and to identify the political, economic and social challenges facing a DDR programme. These analyses can provide critical information on the structure of armed groups during the conflict, how ex-combatants are perceived by their communities (e.g. as heroes who defended their communities or as perpetrators of violent acts who should be punished), and what ex-combatants\u2019 expectations will be following a peace agreement. A holistic analysis of conflict and security dynamics should inform the development of the objectives and strategies of the DDR programme. The following table suggests ques- tions for this analysis and assessment. For further information, please also refer to the UNDP Guide on Conflict-related Development Analysis (available online).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "27dea9df-9fae-4809-9a17-ed8814772a02", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Post-conflict needs assessments (PCNAs) Post-conflict needs assessments (PCNAs) are a tool developed jointly by the UN Develop- ment Group (UNDG), the European Commission (EC), the World Bank (WB) and regional development banks in collaboration with national governments and with the cooperation of donor countries. National and international actors use PCNAs as an entry point for conceptualizing, negotiating and financing a common shared strategy for recovery and development in fragile, post-conflict settings. The PCNA includes both the assessment of needs and the national prioritization and costing of needs in an accompanying transi- tional results matrix. PCNAs are also used to determine baselines on crosscutting issues such as gender, HIV/AIDS, human rights and the environment. To this end, the results of completed PCNAs represent a valuable tool that should be used by DDR experts during reintegration programming. In countries where PCNAs are in the process of being completed, DDR managers and planners should integrate as much as possible DDR into these exercises. In addition to influencing inclusion of more traditional areas of practice, DDR planners should aim to influence and lobby for the inclusion of more recently identified areas of need, such as psy- chosocial and political reintegration. For more detailed and updated information about PCNAs, see Joint Guidance Note on Integrated Recovery Planning using Post-Conflict Needs 2.20\tAssessments and Transitional Frameworks, www.undg.org. Also see Module 2.20 section 6.1.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6390ff6e-ba3e-457a-af2f-8bd857117658", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 16, + "Paragraph": "Ex-combatant-focused reintegration assessments The registration of ex-combatants during the demobilization phase provides detailed information on each programme participant\u2019s social and economic expectations, as well as his/her capacities, resources, or even the nature of his/her marginalization. How- ever, by the time this registration takes place, it is already too late to begin planning the reintegration programme. As a result, to adequately plan for the reintegration phase, a general profile of potential beneficiaries and participants of the DDR programme should be developed before disarmament and demobilization begins. Such a profile can be done through carefully randomized and stratified (to the extent possible) sampled surveys of smaller numbers of representative combatants. In order for these assessments to adequately form the basis for reintegration pro- gramme planning, implementation, and M&E, they should be further supplemented by data on specific needs groups and additional research, particularly in the fields of anthro- pology, history, and area studies. During the assessment process, attention should be paid to specific needs groups, including female combatants, WAAFG, youth, children, and combatants with disabilities. In addition, research on specific countries and peoples, including that of scholars from the country or region will prove useful. Cultural rela- tionships to land and other physical resources should also be noted here to better inform reintegration programme planners. The most important types of ex-combatant focused assessments are: Early profiling and pre-registration surveys; Full profiling and registration of ex-combatants; Identification and assessment of areas of return and resettlement; Community perception surveys; Reintegration opportunity mapping; and Services mapping and institutional capacity assessment.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "523ca9e8-4f28-4f8b-b154-8a1b774c78eb", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 17, + "Paragraph": "Early profiling and pre-registration surveys Also known as pre-programme assessments, early profiling and pre-registration surveys will establish the nature and size of the group for which a reintegration programme is to be designed. Profiling on a sample basis is typically done as soon as access to combatants is possible. This enables a quick assessment of the combatants to be included in DDR, including information on their demographics, human and material capital, as well as their aspirations. The collection of personal and socio-economic data also provides baseline information needed for the planning, design and formulation of a monitoring and evalu- ation plan. Early profiling, registration, and surveying should take into account gender-sensitive procedures, so that women, men, girls and boys are able to accurately state their involve- ment and needs, and other relevant information. Early information should be gathered about the issues listed in the following table: In some cases it can be very difficult to obtain accurate or any information regarding the profiles and number of ex-combatants for the DDR programme. In such cases, DDR experts should rely on information from local civil society and other UN agencies, and plan their programmes as best they can with the available information.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ced8f4ad-4b2a-4f48-96d3-99c07a20806e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 18, + "Paragraph": "Full profiling and registration of ex-combatants As full profiling and registration of ex-combatants is typically conducting during disar- mament and demobilization, programme planners and managers should ensure that these activities are designed to support reintegration, and that information gathered through profiling forms the basis of reintegration assistance. For more information on profiling and registration during disarmament and demobilization, see Module 4.10 section 7 and Module 4.20 sections 6 and 8. Previous DDR programmes have often experienced a delay between registration and the delivery of assistance, which can lead to frustration among ex-combatants. To deal with this problem, DDR programmes should provide ex-combatants with a clear and realistic timetable of when they will receive reintegration assistance when they first register for DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b44e20ce-a645-4dd7-bc86-0ef615aa0b68", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 19, + "Paragraph": "Identification and assessment of areas of return and resettlement Based on the information gathered from the early profiling and pre-registration survey, an assessment should be made of the economic, political, and social potential and con- straints of the areas that ex-combatants and associated groups are expected to return to or resettle in. This assessment should then be enhanced and greatly expanded based on the individual data collected during disarmament and/or demobilization, and stored in a management information system (MIS) (for more information on managing data see sec- tion 7.6). Among its benefits, it may prove an important component of risk assessments to map and monitor \u201chot spots.\u201d The assessment of communities and areas of return or choice should take into account the availability of natural resources (including land, water, forests, wildlife), livelihood conditions, economic opportunities and existing infrastructure (such as transportation, access to markets, and the availability of communications and services), and the overall security situation in the area. It should also map the accessibility of local social services and institutions that serve persons with disabilities, offer psychosocial care, etc. Local and traditional knowledge related to ownership of land, resource use, man- agement of natural resources (including agricultural practices in cultivation, animal husbandry, fishing rights and access, etc.) should be sought during these assessments. See Module 6.30 for more information on natural resource management and DDR. Additional data will need to be examined concerning social and political conditions to be sure that there are not underlying historical tensions which could prevent success- ful reintegration. Gender audits will also be necessary. From a political perspective, an assessment of the formal and informal leadership, power relationships and group dynam- ics within receptor communities should also be undertaken. This information should be placed within an understanding of the macroeconomic situation (i.e. the country and regional situation). 4.10 4.20 6.30", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "503cfaf6-7467-418b-8948-1b7304048a75", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 20, + "Paragraph": "Community perception surveys Community perception surveys include background information on socioeconomic and demographic data on all future direct beneficiaries of the reintegration programme including community expectations and perceptions of assistance provided to returning/ resettling ex-combatants. Community perception surveys collect useful data which can be used for qualitative indicators and to monitor changes in community perceptions of the reintegration process over time. DDR programmes should assess the strength of support for the reintegration process from these surveys and try their best to produce activities and programming that match the needs and desires of both programme participants and beneficiaries. DDR programmes should rely on local institutions and civil society to carry out such surveys whenever and wherever possible. These can be conducted as interviews or focus groups, depending on appropriateness and context. Communities should have the opportunity to express their opinions and preferences freely in terms of activities that best support the reintegration process and the community as a whole. Surveyors should also be careful not to raise expectations here as well, since the reintegration programme will not be able to meet all desires in terms of economic opportunities and social support to communities.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9ccbd4cd-9beb-4fd5-a99a-d373892d43b1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 21, + "Paragraph": "Reintegration opportunity mapping The post-conflict economic environment can be extremely complex and difficult as armed conflicts invariably damage or destroy human and economic capital, transform social relationships and trust, weaken production and trade systems, and distort the labour mar- ket. In this challenging environment, it is essential that DDR programmes avoid creating unrealistic expectations among stakeholders, especially programme participants and ben- eficiaries. By conducting reintegration opportunity mappings, programme managers will have a clearer understanding of the actual economic opportunities and assets available to those being reintegrated and be better equipped to provide ex-combatants with clear information as to what the reintegration programme will involve. DDR programme planners should prioritize the development of a countrywide sys- tematic mapping that builds upon the PCNA and other assessments conducted by relevant organizations to identify existing and potential employment opportunities. The analysis should include the functioning of: i) markets (labour, capital, goods and services, etc.); ii) input factors (land, energy resources, infrastructure, technology and information, etc.); and iii) supporting factors (institutional capacity in formal and informal economies, finan- cial markets, etc.). It should also capture potential financial service providers or training institutions available to support self-employment opportunities. Successful collaboration with development agencies and their monitoring activities is essential to this process. Opportunity mappings will also assess access to land and other natural resources, education and training possibilities, micro credit services (in contexts where they exist) and other employment and business development services (i.e. technical advisory, information and counseling services). The survey should include other development pro- grammes (both existing and planned) within the national recovery effort, as well as those of international and national development organizations. Attention shall be paid to different groups during opportunity mapping so that the employment, education and training needs and opportunities, as well as other resource needs of women and men, youth, children, and persons with disabilities, are well-un- derstood (also see Module 5.10 on Women, Gender and DDR, Module 5.20 on Youth and DDR, and Module 5.30 on Children and DDR). Social support services, such as support for people living with HIV/AIDS, trauma and drug abuse counseling, and/or disability rehabilitation services, should also be identified. This mapping should take place as early as possible (ideally beginning 9-12 months before the disarmament and demobilization phases begin) to ensure that training and social support programmes are ready when ex-combatants need them. They should reflect local and international laws and standards on gender- and age-appropriate labour, as well as changes in gender roles that may have occurred during conflict. On the basis of these assessments, the DDR programme can select training provid- ers, assess costs and capacity support needs, and develop context-specific programmes designed to meet the needs of diverse programme participants and beneficiaries. 5.10 5.20 5.30", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f00f9ac8-8e46-44c7-a1bb-57c956d73803", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 23, + "Paragraph": "Services mapping and capacity assessment Capacity development of government entities and service providers after a conflict consti- tutes one of the most important aspects to successful reintegration. It is therefore essential for reintegration assessments to collect data on levels of institutional capacities to ensure adequate funding for capacity development of partners from the outset. Institutional capacity assessments should start as early as possible with an analysis of potential service providers such as public vocational centers, business development services, relevant line ministries and NGOs, including organizational practices and absorption capacities as it takes several months to upgrade capacities. Capacity development can be \u201cindirect\u201d (designed to support national partners in the creation of conditions and relationships needed to foster incentives for outcomes) or \u201cdirect\u201d support for the achievements of outcomes (such as technical interventions or information management in a finance ministry or a central bank). The first step is to help to identify the country\u2019s specific needs on which the overall capacity building actions will be based.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "76002410-22d4-4778-ad70-6b2e2dd45d63", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 23, + "Paragraph": "Managing data collected in assessments A management information system (MIS) is vital in order to capture, store, access, and manage information on individual ex-combatants and communities of return/resettle- ment, and data on available opportunities for training, education and employment. It can also provide vital data for monitoring, feedback, and evaluation. DDR planners shall give early consideration to the design and maintenance of an MIS, as it will work to support and better organize all reintegration activities. See the generic MIS called DREAM (\u2018Dis- armament, Demobilization, Reintegration and Arms Management\u2019) developed by UNDP, which can be adapted to the needs of each UN integrated DDR programme to minimize implementation delays and provide savings for DDR projects. Individual ex-combatant data included within an MIS should be captured prior to the start of reintegration activities, preferably during the disarmament and demobilization phases. The design and construction of the MIS should capture data that can be used to build a profile of the participant caseload. The collection of sex-, age- and disability-dis- aggregated socio-economic data (including information on specific needs, such as for wheelchairs or psychosocial services) is essential to the DDR programme. In addition, the data in the MIS should be easy to aggregate in order to provide regular updates for broad indicators. The development of new technologies, such as fingerprint identification and retina scanning, possess the potential to eradicate \u2018double dipping\u2019 of DDR assistance, particu- larly when cash assistance is provided as part of reinsertion assistance, or as an element of reintegration support. building respect for the rights of marginalized and specific needs groups (also see IDDRS 5.10 on Women, Gender and DDR and 5.30 on Children and DDR); and helping to ensure the sustainability of reintegration by developing community capac- ity to provide services and establishing community monitoring, management and oversight structures and systems. 5.10 5.30", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "da5d5b3c-698b-49be-86e8-10c9e1cc0222", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 25, + "Paragraph": "Ex-combatant engagement DDR programme planners should ensure that participatory planning includes representa- tion of the armed forces\u2019 and groups\u2019 leadership and the (ex-) combatants themselves, both women and men. To facilitate the inclusion of younger and less educated (ex-) combatants and associated groups in planning activities, DDR representatives should seek out cred- ible mid-level commanders to encourage and inform about participation. This outreach will help to ensure that the range of expectations (of leaders, mid-level commanders, and the rank and file) are, where possible, met in the programme design or at least managed from an early stage. DDR planners and managers should exercise caution and carefully analyze pros and cons in supporting the creation of veterans\u2019 associations as a way of ensuring adequate representation and social support to ex-combatants in a DDR process. Although these asso- ciations may be useful in some contexts and function as an early warning and response system for identifying dissatisfaction among ex-combatants, and for confidence-building between discontented groups and the rest of the community, they should not become an impediment to the reintegration of ex-combatants in society by perpetuating violent or militaristic identities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6dcde342-a0fb-4dc8-a09d-a129aae549ac", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 25, + "Paragraph": "Community engagement Ultimately, it is communities who will or who will not accept ex-combatants, and who will foster their reintegration into civilian life. It is therefore important to ensure that com- munities are at the centre of reintegration planning. Through community engagement, reintegration programmes will be better able to identify opportunities for ex-combatants, cope with transitional justice issues affecting ex-combatants and victims, pinpoint poten- tial stressors, and identify priorities for community recovery projects. However, while it is crucial to involve communities in the design and implementation of reintegration 5.10 5.60 programmes, their capacities and commitment to encourage ex-combatants\u2019 reintegration should be carefully assessed. It is good practice to involve or consult families, traditional and religious leaders, women\u2019s, men\u2019s and youth groups, disabled persons\u2019 organizations and other local asso- ciations when planning the return of ex-combatants. These groups should receive support and training to assist in the process. Community women\u2019s groups should be sensitized to support and protect women and girls returning from armed forces and groups, who may struggle to reintegrate (see Module 5.10 on Women, Gender and DDR for more informa- tion). Linkages with existing HIV programmes should also be made, and people living with HIV/AIDS in the community should be consulted and involved in planning for HIV activities from the outset (see Module 5.60 on HIV/AIDS and DDR for more information). Disabled persons\u2019 organizations can be similarly mobilized to participate in planning and as potential implementing partners. When engaging communities, it should be remembered that youth and women have not always benefited from the services or opportunities created in receptor communities, nor have they automatically had a voice in community-driven approaches. To ensure a holistic approach to community engagement, such realities should be carefully considered and addressed so that the whole community \u2013 including specific needs groups \u2013 can ben- efit from reintegration programming.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c2c008b1-8580-4b8d-8a67-b4c9b905532a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 26, + "Paragraph": "Private sector involvement Building a close partnership with the private sector is indispensable to creating oppor- tunities to absorb ex-combatants into a labour market. Job referral, training (especially apprenticeship, training voucher, and employment subsidy programmes) and employ- ment creation aspects of reintegration are often reliant on the private sector and existing businesses. Involvement of the private sector in the planning of reintegration programmes maximizes the relevance of reintegration assistance and can ensure that training activities support the skills required within the prevailing employment market. Private sector actors should be sensitized to DDR programme activities and con- sulted from the initial programme design stage so that the reintegration assistance can target actual needs in the labour market. A thorough understanding of the existing pri- vate sector and war economy is also necessary for reintegration planning. The following options can be considered to encourage private sector investment (see ILO Guidelines for the Socio-economic Reintegration of Ex-combatants, pp. 26-27): Create incentives for private companies and employers\u2019 associations to help re-estab- lish small local units (e.g. sub-contracting) to supply services and provide employment. Consider how short-term job creation for ex-combatants can be linked to the private sector. For example, provide private sector actors incentives in primary and second- ary infrastructure contracts, with contractual obligations to take on a fixed number of labourers and apprentices from ex-combatant groups. Upgrade existing enterprises, transfer appropriate technology (especially to the urban informal economy), organize livelihoods and vocational training, and provide access to credit. Stimulate public-private partnerships (PPPs) in areas most suitable to commu- nity reintegration (infrastructure, basic services) that promote social inclusion. Reintegration programmes can seek to facilitate linking the entities to make such partnerships possible.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "da95d35f-2682-4735-b6d6-dd6918212e37", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 27, + "Paragraph": "Urban vs. rural reintegration planning In the programme planning phase, attention must be paid to the inherent differences between urban and rural reintegration. Even though the majority of ex-combatants come from rural areas, experience has shown that they often prefer to be reintegrated in urban settings. This is likely due to a change in lifestyle during time with armed forces and groups, as well as an association of agricultural work with poorer living conditions. Another reason may be that rural reintegration packages are seen as less attractive than urban packages, the latter of which often include vocational training in more appealing professions. A key issue to consider when planning for reintegration is that urban areas generally involve more complex and demand-driven planning than rural areas. Depending on the context and in accordance with national recovery and development policies, it may be necessary to encourage ex-combatants and associated members to return to rural areas through the promotion of agricultural activities. Reintegration programmes should there- fore offer agriculture packages that include high quality farming tools and seeds, as well as financial means (or food) to cover the first pre-harvest period. For ex-combatants with limited or no previous knowledge of farming and/or with limited access to land, cooper- atives may be favorable. Careful attention should also be paid to the question of land acquisition since pro- gramme participants may have lost their access to land due to conflict. Terms must be negotiated that are profitable to both the landowner/community and the ex-combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "9daac00e-1bcc-42d4-9e74-9ed2acaa5f39", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 27, + "Paragraph": "Reintegration design A well-designed DDR programme shall not only enhance basic security but shall also sup- port wider recovery and development efforts. It shall further define strategies to address the following essential elements for progamme success: Reintegration strategy and exit strategy; Eligibility criteria; Public information and sensitization; Information counseling and referral services (ICRS); Monitoring and evaluation (M&E); Capacity development; Resource mobilization.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e954600d-b262-4ad2-8896-686a93204d4d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 27, + "Paragraph": "Reintegration strategy and exit strategy Reintegration programmes are often only able to cover the conflict transition and early recovery periods as the timeframes of externally-supported programmes is limited. Reintegration processes, however, take much longer and become in large part \u2013 if not entirely \u2013 the responsibility of national actors. Due to this timeframe, the reintegration process is inherently linked to long-term recovery and development processes. Many aspects and outcomes of the reintegration programme, therefore, need to be transferred and sustained beyond the lifespan of the DDR operation to support national counterparts in the immense task at hand. To ensure this smooth transition, reintegration programme managers shall clearly define the exit strategy during the planning stage, focusing on the transition between reintegration and broader SSR, violence prevention, wider recovery, peace building and development processes. A capacity development component at the end of the reintegration programme should be planned for from the earliest stage to assure a smooth programme transition and to ensure that the responsibility for reintegration consistently rests with national institutions and government ministries.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c7839243-67a3-4f8a-9e75-2e2a12748ffc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 28, + "Paragraph": "Eligibility criteria The eligibility criteria established for the reintegration programme will not necessarily be the same as the criteria established for the disarmament and demobilization phases. Groups associated with armed forces and groups and dependants may not have been eligible to participate in disarmament or demobilization, for instance, but may qualify to participate in reintegration programme activities. It is therefore important to assess eligi- bility on an individual basis using a screening or verification process. DDR planners should develop transparent, easily understood and unambiguous and verifiable eligibility criteria as early as possible, taking into account a balance between security, equity and vulnerability; available resources and funding; and logistical consid- erations. Establishing criteria will therefore depend largely on the size and nature of the caseload and context-specific elements.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc826f2a-4ded-4a52-9fa2-bbd04a74a702", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 28, + "Paragraph": "Public information and sensitization The return of ex-combatants to communities can create real or perceived security prob- lems. The DDR programme should therefore include a strong, long-term public information campaign to keep communities and ex-combatants informed of the reintegration strategy, timetable and resources available. Communication strategies can also integrate broader peace-building messages as part of support for reconciliation processes. Substantial opportunities exist for disseminating public information and sensitiza- tion around DDR programmes through creative use of media (film, radio, television) as well as through using central meeting places (such as market areas) to provide regular programme information and updates. Bringing film messages via portable screens and equipment to rural areas is also an effective way to disseminate messages about DDR and the peace process in general. Lessons learned from previous DDR programmes suggest that radio programmes in which ex-combatants have spoken about their experiences can 4.60\tbe a powerful tool for reconciliation (also see IDDRS 4.60 on Public Information and Stra- tegic Communication in Support of DDR). Focus-group interviews with a wide range of people in sample communities can pro- vide DDR programme managers with a sense of the difficulties and issues that should be dealt with before the return of the ex-combatants. Identifying \u2018areas at-risk\u2019 can also help managers and practitioners prioritize areas in which communication strategies should initially be focused. Particular communication strategies should be developed in receiving communities to provide information support services, including \u2018safe spaces\u2019 for reporting security threats related to sexual and gender-based violence (especially for women and girls). Like- wise, focus groups for women and girls who are being reintegrated into communities should assess socio-economic and security needs of those individual who may face stig- matization and exclusion during reintegration.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ef76d74-d23f-44de-ade2-53e3e4e084f4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Information, counseling and referral services (ICRS) Information, counseling and referral services (ICRS) should serve as a repository of information concerning all the programmes, training and assistance available through government, international organizations and local organizations. These services should, where possible, build on strengthening existing national and local capacities to deliver reintegration assistance, for example through the Ministries of Labour, Health, Agriculture, Forestry, Fisheries and Aquaculture, Youth and Sports, Education and Planning. In coun- tries where government structures and services are weak or non-existent, the reintegration programme may consider temporary structures for targeting ex-combatants, if necessary.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "cbbbafe7-e96f-45e6-91c1-ba74296b38fd", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Monitoring and evaluation (M&E) One of the weaknesses of past DDR programmes has been the lack of clearly defined objectives and measurable indicators, which are needed for the monitoring and evalua- tion (M&E) of the programme. The measurement of outcomes is essential to determining the success and effectiveness of inputs and outputs in the programme. Once the decision to implement a DDR programme has been taken, the government and/or national and local stakeholders, together with UN agencies and partners, shall develop a framework for results-based monitoring and evaluation. For more details on M&E see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes and the UNDP How-to Guide on Monitor- ing and Evaluation for Disarmament, Demobilization and Reintegration Programmes. The starting point for effective, results-based M&E is for all concerned parties to arrive at a clear and unambiguous agreement about the context-specific objectives and expected results of the reintegration programme. Once expected results are clearly defined, all stakeholders must agree on key indicators for monitoring progress towards and measur- ing the achievement of outputs and outcomes. Reintegration outcomes typically refer to employment rates, changes in income, changes in ex-combatant behaviour, successful interactions with other social groups, and improvement in security both at national and local levels. M&E programmes should be sure to include indicators related to the efficient use of livelihoods resources in order to determine if programme approaches need to be adapted mid-way to increase the likeli- hood of success in the long-term. The programme budget required for M&E will largely depend on the following factors: The number of dedicated M&E staff the programme hires and at what level; The number of planned external evaluations; The number and type of surveys and other primary data collection activities; The costs associated with training; The costs of establishing baselines. 3.50 A very approximate rule of thumb is that around 3-7 percent of dedicated programme resources will be needed for effective and meaningful M&E.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "bfd6b201-3aa7-457e-a81d-df55d1546d8e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 30, + "Paragraph": "Capacity development Armed conflict often has devastating effects on educational development, employment and business development, health systems, legal institutions, etc. Qualified individuals have often fled, organizations have lost their capacity and resources, and the systems within which institutions function have been disrupted. Often reintegration programmes and development plans have no alternative but to work towards (re-) building the capacity of those individuals who have remained or returned. A primary role of all international assistance, and specifically UN assistance, is to support the development of national and local capacities. This capacity built as part of rein- tegration programmes will encourage ownership, commitment and successful delivery of services, as well as the long-term sustainability of reintegration processes. Reintegration assistance should include a component on developing the capacity of national actors including line ministries, training institutions and service providers through educa- tion and training in institution building, organizational and financial management, and technical and material assistance. Support should also be given to communities to set up local forums and consultative committees that form the basis of decision-making processes that define and shape the focus of local reintegration assistance, and provide community oversight and ownership. It is particularly important to synchronize the tim- ing of ex-combatants\u2019 reintegration with the period necessary to develop the capacity of local governments. Providing training in planning, management and social skills to reintegration service providers constitutes an important contribution, but capacity building must not be lim- ited to training. On-the-job learning and knowledge transfer is effective as well. In many cases it will prove necessary and beneficial for international staff in key positions to work directly with local counterparts in order to ensure transfer of competences in a timely manner. Since this method is not suitable for the long-term, institution-based and cross-in- stitutional assistance programmes can replace the assistance provided by internationals.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "8709a1f4-efff-4a91-b75c-0173168f155c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 31, + "Paragraph": "Resource mobilization Reintegration programmes\u2019 scope, commencement and timeframe are subject to funding availability, meaning implementation can frequently be delayed due to late or absent dis- bursement of funding. Previous reintegration programmes have faced serious funding problems, as outlined below. However, such examples can be readily used to inform and improve future reintegration initiatives. The move towards integration across the UN could help to solve some of these prob- lems. Resolution A/C.5/59/L.53 of the Fifth Committee of the UN General Assembly formally endorsed the financing of staffing and operational costs for disarmament and demobilization (including reinsertion activities), which allows the use of the assessed budget for DDR during peacekeeping activities. The resolution agreed that the demo- bilization process must provide \u201ctransitional assistance to help cover the basic needs of ex-combatants and their families and can include transitional safety allowances, food, clothes, shelter, medical services, short-term education, training, employment and tools.\u201d However, committed funding for reintegration programming remains a key issue. Due to the challenges faced when mobilizing resources and funding, it is essential that DDR funding arrangements remain flexible. As past experience shows, strict alloca- tion of funds for specific DDR components (e.g. reintegration only) or expenditures (e.g. logistics and equipment) reinforces an artificial distinction between the different phases of DDR. Cooperation with projects and programmes or interventions by bilateral donors may work to fill this gap. For more information on funding and resource mobilization see 3.41\tModule 3.41 on Finance and Budgeting. Finally, ensuring the formulation of gender-responsive budgets and better tracking of spending and resource allocation on gender issues in DDR programmes would be an important accountability tool for the UN system internally, as well as for the host country and population.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "aad44475-9484-4dfb-b0b1-f65c9a7687d3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 20, + "Paragraph": "Economic reintegration The end of hostilities does not automatically result in an improvement of economic condi- tions. The war economy may still be in full-force and understanding its effects on labour markets, private security and public sector activities is essential to ensuring successful economic reintegration. Access to those productive assets (such as land, capital, technol- ogy, natural resources and markets) needed for reintegration, for example, may be limited. At the end of a conflict there is often an abrupt release into the labour market of thousands of ex-combatants who compete with ordinary civilians for extremely scarce jobs and live- lihood opportunities. In such circumstances, ex-combatants and vulnerable youth may turn to illicit activities such as organized crime, banditry, illegal exploitation of natural resources and other socially harmful and violent activities. Providing immediate support for the reintegration of ex-combatants is therefore vital to help develop alternatives to vio- lence-based livelihoods and to enhance security. Creating economic opportunities is essential to helping ex-combatants (re-) build their civilian lives and develop alternatives to violence-based livelihoods. Ex-combatants in many contexts have consistently identified an alternative livelihood and the ability to generate income as key factors to their successful reintegration. Many have also indicated that being able to provide for family is particularly important in establishing their sense of identity, the level of respect they receive in communities, and to ensuring a healthy self-esteem. Efforts should be made by reintegration programmes to pave the way for decent and sustainable work. Decent work involves employment opportunities that are productive and deliver a fair income, provide security in the workplace and social protection for workers and their families, offer prospects for personal development and encourage social integra- tion, and give people the freedom to express their concerns, to organize and to participate in decisions that affect their lives. Furthermore, decent work guarantees equal oppor- tunities and equal treatment for all.1 Reintegration programmes should be particularly careful not to lead girls or boys, young women or men, into any forms of hazardous work. In addition, women and girls who choose to self-reintegrate should be offered support mechanisms within their communities, such as vocational training to gain economic live- lihoods and decent work. Support for reintegration should go beyond placing programme participants in survival occupations and trades, although as alluded to earlier it may be necessary to develop interim stabilization programmes during reinsertion, such as labour intensive public works, to buy time and space to establish more sustainable programming. Atten- tion should be paid to the specific needs of the agricultural industry, as this sector is likely to absorb most of those returning to rural areas in the aftermath of conflict. Availability of land, soil conditions, access to water and irrigation infrastructure, availability of seed vari- etals and support for value-added production or processing should be expertly evaluated. Progress towards economic reintegration can typically be monitored using quantita- tive tools like surveys based on small representative samples. Recovery and sustainable employment creation should be a priority national or regional level effort, and local level reintegration programmes should make all efforts to link to national economic policies.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2008f873-e7fd-4468-bd4e-c755a28df5a2", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "United Nations Policy for Post-Conflict Employment Creation, Income Generation and Reintegration Recognizing that employment creation, income generation and reintegration are particu- larly challenging in post-conflict environments, in May 2008 the UN Secretary-General endorsed the UN Policy for Post-Conflict Employment Creation, Income Generation and Reinte- gration. The objective of the Policy is to scale up and maximize the impact, coherence and efficiency of employment and reintegration support provided to post-conflict countries by UN programmes, funds and specialized agencies. According to the Policy, programming for employment creation and reintegration should be structured along three concurrent tracks as shown in Figure 1 below. These tracks are: Track A, focused on stabilizing income generation and creating emergency employ- ment and targeting specific conflict-affected individuals, including ex-combatants; Track B, focused on local economic recovery (LER) for employment and reintegration, including in communities ex-combatants and displaced persons chose to return to; and Track C, focused on sustainable employment creation and decent work. The implementation of the three programme tracks should start simultaneously dur- ing peace negotiations, with varying intensity and duration depending on the national/ local context. This implies that an enabling environment for employment creation needs to be actively promoted by reintegration programmes within the immediate aftermath of conflict. During the implementation of the Policy, specific attention should be given to conflict-affected groups, such as displaced people, returnees and ex-combatants, with particular focus on women and youth who are often marginalized during these processes. This module focuses on interventions that fall primarily under Track B programmes, whereas most reinsertion activities fall under Track A programmes. Track B is the most critical for reintegration as its success is dependent on the adoption of employment crea- tion and income generation strategies, mainly through local economic recovery. See ILO Guidelines on Local Economic Recovery in Post-Conflict (2010). This approach will allow the economy to absorb the numerous new entrants in the labour market and build the foun- dations for creating decent work.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "07690b5d-51a7-4079-a8f1-f4cf186c8606", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 34, + "Paragraph": "Economic reintegration opportunity and mapping surveys Early assessment of the opportunities and services open to ex-combatants is vital in the design and planning of a reintegration programme. It should be emphasized that analyses of the labour market need to be regularly updated during the implementation of the rein- tegration programme to ensure relevant responses. Economic reintegration opportunity and mapping surveys should include analy- sis of culturally appropriate professions and/or trades for men and women of varying age groups, abilities, capacities and literacy levels, recognizing how conflict may have changed cultural norms about gender-appropriate work. However, analyses should not just assess what is culturally appropriate for men and women, but also what women and men want to do. At times, such information may contradict what is or was thought to be culturally appropriate. Acting carefully, reintegration assis- tance should aim to avoid reinforcing traditional gender stereotypes which may only permit women to work in lower paying professional activities. National capacity (such as the Min- istry of Employment or Labour), should be strengthened to perform this task at the national and provincial level, while providers of vocational training and employment services should be equipped to complement these efforts with regular assessments at the local level. Mapping surveys should seek to include detailed information concerning the avail- ability of livelihoods resources and desires by beneficiaries to more efficiently transform these resources into productive assets. A realistic assessment of existing employment opportunities and opportunities that could be supported quickly in the short term by either the public or private sector should also be included.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "95adc4b4-09db-413a-8ed6-e46e03f7bbf7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 35, + "Paragraph": "Employability of ex-combatants Armed conflict interrupts skills development for many wage-earning and self-employ- ment activities and disrupts the typical institutions and social mechanisms through which people develop social skills. As a result, the immediate post-conflict period may be characterized by a skills and education crisis. Many ex-combatants have missed opportunities for basic and further education, and as a result are disadvantaged in the competition for jobs and other opportunities. Provision of adult literacy classes, adult education, and technical and vocational train- ing is important both to improve the skill sets of adult and young ex-combatants and to provide opportunities for reorientation and demilitarization. While functional literacy programmes may help ex-combatants find employment, utilizing educational training techniques, which are tailored for illiterate beneficiaries, may also be highly effective in teaching marketable skills. As far as possible, education and training for ex-combatants and those associated with armed forces and groups should be supplied as part of the wider provision of edu- cational services to the general population, and not in schools or colleges exclusively for them. Such inclusiveness will play an important facilitative role in the social reintegration of ex-combatants. Reintegration experts should also take into account the multiple skill sets and liveli- hoods possibilities that one individual may have so that training and livelihoods support can reflect the cross-sector realities of individuals\u2019 skills and training. This is especially true in contexts where there appears to be little or no capacity for employable skills; each individual will have some type of skill that she or he is capable of, and the DDR reintegra- tion programme should be designed to capitalize on this in the best way possible.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8f2e0a45-5ccd-46d6-8ebd-5bbfd81ee3f9", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 35, + "Paragraph": "Life skills Reintegration programme managers should regard the provision of life skills as a neces- sity, not a luxury, in reintegration programmes. Life skills include non-violent ways of resolving conflict at the workplace and in civilian life. Life skills also allow individuals to learn socially-acceptable behaviours to use in their personal and professional lives. This type of training requires an understanding of ever-shifting cultural and gen- der identities and roles and should complement the various other forms of educational and/or training services provided. Youth can benefit from acquisition of basic skills for managing a family and other domestic responsibilities. Economic, labour, education and political rights and responsibilities shall be communicated to ex-combatants, especially in countries undergoing major governance reform where it is essential to encourage the participation of ex-combatants in democratic structures and processes.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "562852bc-a5ec-43b5-90e1-db67a271c481", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Vocational training Ex-combatants often need to learn new skills in order to make a living in the civilian economy. Vocational education (formal school-based or informal apprenticeship) plays a vital role in successful reintegration, by increasing the chances of ex-combatants chances to effectively join the labour market. Training can also help break down military attitudes and behaviour, and develop values and norms based on peace and democracy. Vocational training activities should be based upon the outcomes of the opportunity mapping assess- ments and the profiles of the (ex-) combatants. Skills training does not by itself create employment. However, when it matches the real requirements of the labour market, it may enhance a person\u2019s employability and chances of finding a wage-paying job or of becoming self-employed. Training is therefore a natural component of any effective strategy for tackling poverty and social exclusion, as well as for empowering conflict-affected people to fend for themselves, to contribute to the reconstruction of their countries, and to be able to overcome some of the inequalities they suffered before the conflict and to enhance their human security. Typically, training has received inadequate attention in post-conflict contexts. Inertia and resistance often prove to be among the greatest challenges in relation to changing training systems. The focus on employability and more flexible training approaches in post-crisis contexts, however, constitutes an opportunity to revisit the relevance and the efficiency of the training supply systems in close relation to the real market demands. Providing training at later stages of reintegration is also advisable, since beneficiaries will have some experience after returning to their communities and may have a clearer idea of the types of training that they would most benefit from. Additionally, provisions for gender equity, to ensure that all participants can equally access the programme should be considered, including child care for female participants, their other duties (such as household activities which may prevent them from partici- pating at certain times of the day), as well as considerations for transportation. Training locations should be in close proximity to women\u2019s homes so it is more likely they can attend. Training activities can also include other essential components, such as reproduc- tive health and HIV information and care.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "97abd463-b854-48f1-975e-449ff55817c8", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 37, + "Paragraph": "Education and scholarships Young ex-combatants, especially those aged under 15, should be reintegrated into formal education, which may mean extra support for teachers and trainers to manage the special needs of such learners. Some ex-combatants can be offered scholarships to finish their studies. Youth (see IDDRS 5.20 on Youth) should have priority in these cases, and particu- lar attention must be paid to assisting girls to return to school, requiring making available child care facilities for children in their care as well as evening courses. In some countries where the conflict was particularly protracted and ex-combatants have received little or no schooling, emphasis should be placed on \u2018catch-up\u2019 education to ensure that this group does not remain in a disadvantaged position, in relation to their peers. If allowances or school fees are to be funded by the reintegration programme, programme managers should ensure that resources are available for the full duration of ex-combatants\u2019 catch-up or accelerated education, which could be longer than the reinte- gration programme. If resources are not available, there should be a clearly communicated plan for phasing out support. It is clear that the funding available from a DDR programme will not cover all edu- cation costs of the programme participants who wish to continue their studies. This must be acknowledged and expectations managed during counseling for reintegration, so that ex-combatants are able to plan for some way to pay for the rest of their studies. It should also be acknowledged during counseling that in post-conflict economies education does not guarantee employment.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2e629c67-1e35-4248-8368-28073fb601b6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 37, + "Paragraph": "Apprenticeships and on-the-job training Apprenticeships and other forms of on-the-job training can be particularly effective as they are likely to result in more sustainable employment and fill the large gap in the avail- ability of training providers. Apprenticeships are a form of on-the-job training where employers agree by contract to train individuals (apprentices) in a particular trade for a fixed period of time. A reinte- gration programme can subsidize such learning and training opportunities by paying the trainees an allowance and/or subsidizing the employers directly with equivalent wage support to take on apprentices for a fixed period. These interventions can also be an excel- lent means of social reintegration and reconciliation, as they place ex-combatants into an 5.20 already existing socio-economic network consisting of non-ex-combatants through the mentor/trainer. Apprenticeships are also a particularly effective form of training for youth employability as they impart technical and business skills and induct young people into a business culture and network of clients. In order to protect existing incentives for master craftspeople and apprentices to par- ticipate, apprenticeships should be carried out according to local traditions and norms regarding access, cost-sharing arrangements, duration and conditions for graduation, when appropriate. Skill certification mechanisms should be established to provide legiti- macy to those with existing skills as well as those acquiring new skills. Such certification is useful for potential future employers and consumers as a form of verification and con- fidence for employment. For trades with no apprenticeship system in place, other forms of on-the-job-training should be considered to support socio-economic reintegration. In addition, since fund- ing is often not sufficient within a reintegration programme to cover all training during apprenticeships, linkages to microfinance programmes should be established in an effort to address this gap.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "41c8f296-00ee-40f2-a4c6-08cced2d6ccc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 38, + "Paragraph": "Micro and small business training and start-ups Since most programme participants will need to rely on the informal economy for employ- ment, a strong focus on self-employment through business training support will offer those with entrepreneurial drive an effective means to succeed independently. While the recovery and expansion of the private sector should be encouraged, it is often necessary to focus on creating new micro enterprises for most ex-combatants. Vocational training needs to be accompanied by the provision of access to micro- finance and start-up grants or tools to facilitate micro business and self-employment activities. If such institutions and mechanisms are already locally available, the reinte- gration programme should establish partnerships with them to ensure accessibility for programme participants. Consistent follow up of such programmes is extremely impor- tant, as many reintegration programme participants may be attempting self-employment for the first time and will need significant coaching and mentoring. The success of microfinance projects involves a significant amount of business skills training, for which provisions must be made for participants to attend (i.e. subsidies for food, transportation, childcare etc). Such assistance should culminate in a business plan. In situations of low literacy or illiteracy, a programme must begin with literacy training or must develop low literacy tools such as pictograms for accounting, stock management, market analysis, how to access micro-credit and other business functions. One of the most important parts of any micro-finance programme is the social benefit. Often the business skills and training are complemented by social education on a range of context-appropri- ate topics including reproductive health, HIV, peace building, conflict resolution, gender equality, and general sessions that work to build self-esteem and self-confidence. Reintegration programmes should also ensure that many different kinds of small businesses are started to avoid distorting the balance of supply and demand in local markets. In addition, these businesses should be based on market surveys that iden- tify businesses and services needed in a particular area. It is also important to ensure that the same businesses do not get support from multiple organizations. Finally, value chain analysis focusing on small and medium enterprises (SMEs) in high demand niche market commodities, and linkage arrangements between micro enterprises as suppliers to medium and larger scale firms, should be sought out, thus helping to guarantee sustaina- bility for SMEs in an otherwise difficult post-conflict market environment.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "ffb997fa-20fa-4aa0-b9be-b33169317fd8", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 39, + "Paragraph": "Income generating opportunities A national enabling environment for job creation and decent work is essential as con- sensus-building and policy development take time. Enabling policies and programmes therefore need to be initiated early and supported by DDR planners. The ILO Guidelines for the Socio-Economic Reintegration of Ex-Combatants identify the following key factors for creating such an environment at the policy level:3 Strongly considering policy choices that ensure that infrastructure production and maintenance rely on local labour, local technical capacity and local materials to the greatest extent possible. Supporting national policies for labour-intensive work that are especially suitable for employing large numbers of ex-combatants. Reviewing and supporting national policies and legislation to create an enabling environment for private sector and small and medium enterprise (SME) development in rural and urban areas. This should include incentives for local companies to hire high-risk groups, often linked to reconstruction and rehabilitation. It should also consider the role of the private sector in supporting conflict-sensitive business devel- opment and in aiding in the transition from a war to peace economy. Recognizing potential limitations within the post-conflict context when supporting particular national policies. Identifying priority economic sectors with potential of rapid expansion and job creation. International assistance should be aligned with national priorities in building capac- ities to support and/or implement these policies. Early support and capacity-building within the NCDDR and line ministries relevant to reintegration should be aligned with an element of wider reintegration assistance and long-term recovery and development.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "946f39b1-09cc-45d8-810e-2d74084ea70d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 40, + "Paragraph": "Private sector employment Reintegration programmes should ideally aim to place qualified ex-combatants in existing businesses. Nonetheless, this is often difficult since business owners may not be willing (i.e. due to negative perceptions of ex-combatants) or able (i.e. du to stark economic real- ities) to employ them. Reintegration programmes should therefore help to increase the opportunities available to ex-combatants by offering wage, training and equipment subsi- dies. These subsidies, however, should have the following conditions: Wage subsidies should be partial and last for a fixed period of time; In-kind donations of equipment or training to allow for the expansion of existing businesses should be explored in exchange for the employment of reintegration pro- gramme beneficiaries; Newly hired ex-combatants should not take the jobs of workers who are already employed; Employers should use the subsidies to expand their businesses and to provide long- term employment for ex-combatants. Providing business development services (BDS) can help overcome the difficulties faced by ex-combatants, such as lack of education, inadequate technical skills, poor access to markets and lack of information. In many post-conflict societies, government agen- cies lack the capacity to support and deliver services to micro- and small enterprises. Various actors, including businesses, local NGOs with experience in economic projects, governmental institutions and community groups should therefore be encouraged and supported to provide BDS. Governments should also be supported in the creation of a legal framework to ensure that labour rights are respected and that demobilized or other vulnerable groups are not exploited within the private sector. Concessions and contracts created between the private sector and the national, regional or local government must be transparent and conducted in such a way that affected communities are able to make their voices heard. In the case of extraction of natural resources upon which livelihoods and recovery depends, it is espe- cially important to be sure that the terms of the contracts are fair to the communities and local peoples, and that the contracts of private companies address human security. When it comes to job placement, DDR practitioners should also support affirmative action for disadvantaged groups where applicable. See section 8.1.4. on private sector involvement for more information.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "786ce816-d9dc-48a7-afb8-50efe975ed65", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 40, + "Paragraph": "Micro-grants and access to credit If the main way of funding the creation of micro enterprises is decided to be micro- grants, they should be provided to the ex-combatants only after they have drawn up a clear start-up business plan and should be paid in installments with diligent follow-up. As part of information and counseling services, reintegration programmes should ensure that relevant service providers are in place to advise ex-combatants on financial manage- ment. Installments should, when possible, be given in kind (equipment, supplies, training, etc.), avoiding large cash payments, which are difficult to monitor effectively. Training and technical assistance services are also essential to the success of start-ups, together with direct, on-the-ground supervision and monitoring by the reintegration programme. Grant schemes have often been used in reintegration programmes. However, where possible, it is important that reintegration programmes gradually shift aim from small grants to credit access. This shift is needed so as not to create dependencies on grant schemes and to support entrepreneurship. Involving female family members \u2013 such as wives of ex-combatants \u2013 in economic activities and access to credit may further help cre- ate successful outcomes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1b28a7a5-19bc-4d22-a663-a1324176e391", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 41, + "Paragraph": "Access to technology, information and capital Technology and information which can lead to better information concerning agricultural growing techniques, commodities markets, and fluctuations in food prices is essential to sustainable reintegration programmes which incorporate agricultural livelihoods and agriculturally-derived livelihoods. DDR experts must address issues of access to such assets in the reintegration phase through coordination with relevant national ministries, government counterparts, rule of law and early recovery partners, and in line with appro- priate cultural norms. Access to technology and information can be further promoted through the use of low tech and appropriate means, such as cellular phones, SMS market information ser- vices, radios, personal digital assistants (PDAs), internet kiosks, and any other means of transmitting information about commodity market changes, changes in the supply or demand for goods, shifting weather patterns, or other potential impacts. Where access is not possible through the DDR programme, DDR experts should make every effort to link with NGOs, other UN agencies, or private sector actors who can support such access to technology and information. Access to technology, information and capital is also essential to build value chains for products derived from the agricultural or other rural livelihood sectors, to diversify such sectors and to ensure the sustainability of the activities in question in terms of use of natural and other resources. Capital used to provide essential equipment to scale-up processing, manufacturing and marketing of goods derived from agricultural products or other natural resources should be sought through networks and other implementing partners working with the DDR programme and in the early recovery context. This capital should be supplied along with proper training programmes and business education skills. It should not be given in the form of cash payments. DDR programmes should seek to address the access of women, youth, disabled, indig- enous and other marginalized groups to technology, information and capital through coordination with national and local government and rule of law programmes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "f2af5740-4a36-40f1-a1a0-42c5531e549d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 41, + "Paragraph": "Land tenure and access to land Many comprehensive peace agreements (CPAs) do not contain specific provisions to resolve land ownership issues and disputes. However, property rights, land tenure and access to land are all extremely important to economic reintegration in both rural and urban contexts. Land distribution, for example, can inform DDR practitioners of potential tensions and grievances that may (re-) emerge and lead to further disputes or conflict. While DDR programmes cannot produce land reform mechanisms, they can incorpo- rate awareness of the linkages between land and livelihoods into reintegration planning and implementation. Land becomes an asset when it is coupled with access to agricultural tools and inputs, technology, and information regarding markets and services. Access to land and security of land tenure are also essential to the development of land as an asset. Access to land cannot be granted and legitimized without capacity for land manage- ment at the local and national government levels, which involve land policies, laws and land administrations. Most DDR contexts are likely to be faced with a myriad of land ten- ure systems and legal procedures involving traditional, indigenous, religious, colonial or other legacies. Support for legal aid services to aid those undergoing land disputes should be coordinated with relevant international and national actors to compliment reintegra- tion programmes. Special attention should be paid to access to land by women, widows, child-headed households, disabled individuals and other groups with specific needs. For more information on housing, land and property dispute mechanisms see section 10.6. The roles of women and their relationship to land and property should be addressed by the DDR programme through community-based reintegration whenever possible. In many cases, women suffer the most discrimination when it comes to access to land. DDR programmes should aim to support women\u2019s access to land and tenure security to promote gender equality and women\u2019s civil and human rights, but also because their productivity in the agricultural sector is extremely important for increased food security and overall GDP growth, as shown in several studies conducted in post-conflict settings. While it is important to encourage land management and tenure policies that are consistent with cultural norms, the reform of such administrative sectors also provides an opportunity to pave the way for women\u2019s rights in terms of property and land tenure. DDR programmes should seek to make land as profitable an asset as possible, by providing incentives for the sustainable use of natural resources, helping to develop the capacity for land and property rights through local and national institutions. These efforts can be augmented by linking up with early recovery and rule of law institutions wherever possible as well. In addition, land tenure security to protect those who are invested in land and who depend on it for livelihoods, such as in agricultural sectors, should be addressed through other partners at the national and international level.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2a618cda-e8c1-422e-95e1-dc59aecfb33e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 42, + "Paragraph": "Social/Psychosocial reintegration Former combatants face a number of personal challenges during reintegration, including separation from social support networks inherent within armed groups and a subsequent sense of isolation, stigma, and rejection by communities of return and challenges related to renegotiating their societal and gender roles within the public and private spheres. Other challenges faced by ex-combatants include difficulty obtaining employment, psy- chosocial issues, including trauma-spectrum disorders, and physical health issues, such as living with a disability. These challenges may leave former combatants in particularly vulnerable social and/or mental health situations and at risk for developing \u201canti-so- cial\u201d behaviors such as drug and alcohol abuse or engaging in violence against others or themselves. Acceptance of ex-combatants within communities of return, and wider society, is a key indicator of successful reintegration. An ex-combatant who has economic oppor- tunities but who is socially isolated or excluded cannot be considered as successfully reintegrated. Experience has shown that social reintegration is not only as equally impor- tant as economic reintegration, but that it can also be a pre-condition and a catalyst for employment and economic security. Progress towards and the success of social reinte- gration can often be tracked through qualitative tools like focus groups or key informant interviews with communities.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1b760d53-be1b-40c9-85e9-b6ea9f427ce3", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 43, + "Paragraph": "Socialization to violence of combatants Many ex-combatants have been trained and socialized to use violence, and have inter- nalized norms that condone violence. Socialization to violence is often the result of an ex-combatant\u2019s exposure to and involvement in violence while with armed forces or groups who may have encouraged, taught, promoted, and/or condoned the use of vio- lence (such as rape, torture or killing) as a mechanism to achieve group objectives. As a result of time spent with armed forces and groups, ex-combatants may associate weapons and/or violence in general with power and see these things as central to their identities as men or women and to fulfilling their personal needs. Systematic data on patterns of violence among ex-combatants is still fragmentary, but evidence from many post-conflict contexts suggests that ex-combatants who have been socialized to use violence often continue these patterns into the peacebuilding period. Violence is carried from the battlefield to the home and the community, where it can take on new forms and expressions. While the majority of ex-combatants are male, and vio- lence among male ex-combatants is more visible, female ex-combatants also appear to be more vulnerable to violent behaviour than civilian women in the general population. Without breaking down these norms, learning alternative behaviors, and coming to terms with the violent acts that they have experienced or committed, ex-combatants can find it difficult to reintegrate into civilian life. In economically challenging and socially complex post-conflict environments, male ex-combatants in particular may find it difficult to fulfill traditional gender and cultural roles associated with masculinity. Many may return home to discover that in their absence women have taken on traditional male responsibilities such as the role of \u2018breadwinner\u2019 or \u2018protector\u2019, challenging men\u2019s place in both the home and community and leading lead- ing to frustration, feelings of helplessness, etc. Equally, the return of men to communities may challenge these new roles, freedoms and authority experienced by women, causing further social disquiet. Ex-combatants\u2019 inability to deal with feelings of frustration, anger or sadness can result in self-directed violence (suicide, drug and alcohol abuse as coping mechanisms), interpersonal violence (GBV, intimate partner violence, child abuse, rape and murder) and group violence against the community (burglary, rape, harassment, beatings and murder), all forms of violence which are found to be common in some post-conflict environments. Integrated approaches work best for facilitating comprehensive change. In order to effectively address socialization to violence, reintegration assistance should target family and community members as well as ex-combatants themselves to address social and psy- chosocial needs and perceptions of these needs holistically. For more information on the concept of \u2018socialization to violence\u2019 see UNDP\u2019s report entitled, Blame It on the War? The Gender Dimensions of Violence in Disarmament, Demobilization and Reintegration (2012).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "78274ba8-a6a6-420a-9256-6ad2e3e90c4c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 43, + "Paragraph": "Reconciliation Reconciliation among all groups is perhaps the most fragile and significant process within a national peace-building strategy, and may include many parallel processes, such as 6.20\ttransitional justice measures (i.e. reparations and truth commissions) (see Module 6.20 on DDR and Transitional Justice for more information). A key component of the reintegration is the process of reconciliation. Reconciliation should take place within war-affected communities if long-term security is to be firmly established. Ex-combatants, associated groups and their dependants are one of several groups, including refugees and the internally displaced, who are returning and reinte- grating into post-conflict communities. These groups, and the community itself, have each had different experiences of the conflict and may require different strategies and assis- tance to rebuild their lives and social networks. Reconciliation between ex-combatants and receiving communities is the backbone of the reintegration process. Any reconciliation initiative needs to make sure that the dignity and safety of victims, especially survivors of sexual and gender-based vio- lence, is respected. Furthermore, it must be remembered that conceptions of transitional justice and reconciliation differ in each context. DDR practitioners should therefore explore and consider cultural traditions and indigenous practices that may be effectively used to begin reconciliation processes. Ceremonies that involve a public confrontation between victim and perpetrator should be avoided as they can lead to further trauma and stigmatization. In addition to focused \u2018reconciliation activities\u2019, reintegration programmes should aim to mainstream and encourage reconciliation in all components of reintegration. To achieve this, DDR programmes should benefit the community as a whole and should offer specifically-designed assistance to other war-affected groups (see section 6.2. on commu- nity-based reintegration). Working together in mixed groups of returning combatants, IDPs, refugees, and com- munity members, especially on economically productive activities such as agricultural cooperatives, group micro credit schemes, and labour-intensive community infrastruc- ture rehabilitation, can reduce negative stereotypes and build trust. DDR programmes should also identify \u2013 together with other reintegration and recovery programmes \u2013 ways of supporting reconciliation, peacebuilding and reparation initiatives and mechanisms.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4692aa62-592a-48ed-a503-d04d41f76abf", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 44, + "Paragraph": "Strengthening social capital and social acceptance Successful reintegration of ex-combatants is a complex process that depends on a myriad of factors, including satisfying the complex expectations of receiving communities. It is the interplay of a community\u2019s physical and social capital and an ex-combatant\u2019s financial and human capital that determines the ease and success of reintegration. The acceptance of ex-combatants by community members is essential, but relations between ex-combatants and other community members are usually anything but \u2018nor- mal\u2019 at the end of a conflict. Ex-combatants often reintegrate into extremely difficult social environments where they might be seen as additional burdens to communities rather than assets. In some cases, communities may have perceptions that returning combat- ants are HIV positive, regardless of actual HIV status, resulting in discrimination against and stigmatization of returnees and inhibiting effective reintegration. The success of any DDR programme and the effective reintegration of former combatants therefore depend on the extent to which ex-combatants can become (and be perceived as) positive agents for change in receptor communities. The importance of providing civilian life skills training to ex-combatants will prove vital to strengthening their social capital and jumpstarting their integration into com- munities. Ex-combatants who have been socialized to use violence may face difficulties when trying to negotiate everyday situations in the public and private spheres. Those who have been out of their communities for an extended period of time, and who may have committed extreme acts of violence, might feel disconnected from the human compo- nents of home and community life. Reintegration programme managers should therefore regard the provision of civilian life skills as a necessity, not a luxury. Life skills include understanding gender identities and roles, non-violent ways of resolving conflict, and non-violent civilian and social behaviours (such as good parenting skills). See section 9.4.1. for more information on life skills. Public information and sentitization campaigns can also be an extremely effective mech- anism for facilitating social reintegration, including utilizing media to address issues such as returnees, their dependants, stigma, peacebuilding, reconciliation/co-habitation, and socialization to violence. Reintegration programme planners should carry out public information and sensitization campaigns to ensure a broad understanding among stake- holders that DDR is not about rewarding ex-combatants, but rather about turning them into valuable assets to rebuild their communities and ensure that security and peace pre- vail. In order to combat discrimination against returning combatants due to perceived HIV status, HIV/AIDS initiatives need to start in receiving communities before demobilization and continue during the reintegration process. The same applies for female ex-combatants and women and girls associated with armed forces and groups who in many cases expe- rienced sexual and gender-based violence, and risk stigmatization and social exclusion. See Module 4.60 on Public Information and Strategic Communication in Support of DDR for more information.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3208b5ef-67e1-4c43-8197-a58fe4eee994", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 45, + "Paragraph": "Social support networks Social support networks are key to ex-combatants\u2019 adjustment to a normal civilian life. In addition to family members, having persons to turn to who share one\u2019s background and experiences in times of need and uncertainty is a common feature of many successful adjustment programmes, ranging from Alcoholics Anonymous (AA) to widows support groups. Socially-constructive support networks, such as peer groups in addition to groups formed during vocational and life skills training, should therefore be encouraged and supported with information, training and guidance, where possible and appropriate. As previously stated, DDR practitioners should keep in mind that the creation of vet- erans\u2019 associations should be carefully assessed and these groups supported only if they positively support the DDR process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "20cf9260-b372-4472-b71b-6fed08a08cc5", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 45, + "Paragraph": "Nuclear and extended families Although various forms of family structures exist in different cultural, political and social systems, reference is commonly made to two types of family: the nuclear family and the extended family. Nuclear families comprise the ex-combatant, his/her spouse, companion or permanent companion, dependent children and/or parents and siblings in those cases where the previously mentioned family members do not exist. Extended family includes a 4.60 social unit that contains the nuclear family together with blood relatives, often spanning three or more generations. Family members often need to be assisted to play the supporting, educating and nur- turing roles that will aid ex-combatants in their transitions from military to civilian life and in their reintegration into families and communities. This is especially important for elderly, chronically-ill, and ex-combatants with disabilities. Family members will need to understand the experiences that ex-combatants have gone through, such as socialization to violence and the use of drugs and other substances, in order to help them to overcome trauma and/or inappropriate habits acquired during the time they spent with armed forces and groups. In order to encourage their peaceful transition into civilian life, family members will also need to be particularly attentive to help prevent feelings of isolation, alienation and stigmatization. DDR planners should recognize the vital importance of family reunification and pro- mote its integration into DDR programmes and strategies to ensure protection of the unity of the family, where reunification proves appropriate. Depending on the context, nuclear and/or extended families should be assisted to play a positive supporting role in the social reintegration of ex-combatants and associated groups. DDR programmes should also create opportunities for family members of nuclear and/or extended families to understand and meet their social responsibilities related to the return of ex-combatant relatives. Nuclear and/or extended family members also need to understand the challenges involved in welcoming back ex-combatants and the need to deal with such return in a way that will allow for mutual respect, tolerance and coopera- tion within the family and within communities. 5.20\t5.30", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e27aaf8e-9b98-4f03-97f8-06b767d8bba5", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 46, + "Paragraph": "Youth engagement Involving youth in any approach addressing socialization to violence and social reinte- gration is critical to programme success. Oftentimes, youth who were raised in the midst of conflict have become socialized to see violence and weapons as a means to gaining power, prestige and respect (see Module 5.20 on Youth and DDR and Module 5.30 on Children and DDR). If youth interventions are not designed and implemented during the post-conflict stage, DDR programmes risk neglecting a new generation of citizens raised and socialized to take part in a culture of violence. Youth also often tend to be far more vulnerable than adults to political manipulation and (re-) recruitment into armed forces and groups, as well as gangs in the post-conflict environment. Youth who participated in conflict often face considerable struggles to rein- tegrate into communities where they are frequently marginalized, offered few economic opportunities, or taken for mere children despite their wartime experiences. Civic engage- ment of youth has been shown to contribute to the social reintegration of at-risk youth and young ex-combatants.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f9de616-1c92-48a8-bca7-fc081db1790c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 46, + "Paragraph": "Men\u2019s and women\u2019s groups Informal or formal men\u2019s and women\u2019s groups can provide a forum for women and men to discuss social expectations of women, men, violence, and health issues. It can be an extremely effective way to harness their interest and capacities to become agents of change in their community by disseminating information and educating the public. Many times, due to social constraints, men do not have forums to discuss such issues, either because there are social barriers or because there has never been a space or guided assistance in starting one. Support to such activities through reintegration assistance, should allow for a mix of ex-combatants and civilians. Oftentimes women\u2019s and men\u2019s groups are started informally around points of interest for men, such as recreational/ sports associations, cooperatives, coffee houses, or water points, or for women such as beauty salons, water points, schools, in the community. Many times they evolve to be more formal groups, which provide a forum for civic education as well as discussion on issues affecting personal lives, the community and the family. Continued assessments of the effects of reintegration assistance and communities of return may identify such groupings forming, and may provide support.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "42949e36-1a3b-4139-a591-587b6af33975", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 47, + "Paragraph": "Housing, land and property dispute mechanisms The lack of available land for resettlement has been a major obstacle to successful rein- tegration in several countries, particularly those with high demographic pressure. Land is of critical concern in all components of reintegration ranging from the political to the social and economic spheres (for more information see section 9.5.4. of this module). It is also very closely associated with the definition of one\u2019s identity, and can represent a diffi- cult issue for DDR programme participants in both rural and urban settings. The return of refugees and IDPs along with ex-combatants and associated groups is likely to heighten tensions over land, thereby calling for the need to address these issues early on. Disputes over land and access to natural resources are among the root causes of many conflicts and can prove instrumental in the deterioration of the security situation (see Module 6.30 on DDR and Natural Resource Management). DDR programme planners must take these underlying tensions into account when planning the return, resettlement and reintegration of ex-combatants, as they are often competing with other returnees for access to land. Conducting an early conflict analysis which includes information on his- torical and available dispute mechanisms will assist reintegration planners in identifying the impact, availability and effectiveness of land and property dispute mechanisms. These assessments will also allow DDR programmes to respond to these issues with support to wider initiatives addressing land and access to natural resources and to avoid doing more harm through their interventions. DDR reintegration programmes should seek to support the mediation of housing and land disputes at the local level whenever possible, through support to legal aid groups or other appropriate service providers. Such mechanisms can transform potential conflict scenarios into reconciliation opportunities (e.g. through involving both ex-combatants and community members in finding solutions through mediation and arbitration that are acceptable to all and in line with cultural norms, where appropriate). Women, youth, children and disabled ex-combatants are among the most vulnerable groups with regard to land exclusion and disfranchisement. This not only has direct con- sequences on their livelihoods but also on their social standing within their communities. DDR planners and managers must keep in mind that in rural areas, traditional laws are likely to be those most abided by the population. In these systems, women may not tradi- tionally have access to property rights, but rather to user rights through their husbands and families. Should they find themselves widowed, separated or single for any reason, 6.30 their livelihoods may be threatened unless recourse to traditional/local authorities is 5.10\tmade on their behalf (see also IDDRS 5.10 on Women, Gender and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "fc0dd7b4-1af2-4bd7-9213-8896e3614b1b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 48, + "Paragraph": "Psychosocial services The widespread presence of psychosocial problems among ex-combatants and those associated with armed forces and groups has only recently been recognized as a serious obstacle to successful reintegration. Research has begun to reveal that reconciliation and peacebuilding is impeded if a critical mass of individuals (including both ex-combatants and civilians) is affected by psychological concerns. Ex-combatants and those associated with armed forces and groups have often been exposed to extreme and repeated traumatic events and stress, especially long-term recruits and children formerly associated with armed forces and groups. Such exposure can have a severe negative impact on the mental health of ex-combatants and is directly related to the development of psychopathology and bodily illness. This can lead to emotional-, social-, occupational- and/or educational-impairment of functioning on several levels. At the individual level, repeated exposure to traumatic events can lead to post-trau- matic stress disorder (PTSD), alcohol and substance abuse, as well as depression (including suicidal tendencies). At the interpersonal level, affected ex-combatants may struggle in their personal relationships, as well as face difficulties adjusting to changes in societal roles and concepts of identity. Persons affected by trauma-spectrum disorders also dis- play an increased vulnerability to contract infectious diseases and have a heightened risk to develop chronic diseases. In studies, individuals suffering from trauma-related symp- toms have shown greater tendencies towards aggression, hostility and acting out against both self and others \u2013 a significant impediment to efforts at reconciliation and peace. Severely psychologically-affected ex-combatants and other vulnerable groups should be identified as early as possible through screening tools within the DDR pro- gramme and referred to psychological services. If these ex-combatants do not receive adequate psychosocial care, they face an extraordinarily high risk of failing in their reintegration. Unfortunately, insufficient availability, adequacy and access to mental health services and social support for ex-combatants, and other vulnerable groups in post-war communities, continues to prove a huge problem during DDR. Given the great risks posed by psychologically-affected participants, reintegration programmes should seek to prioritize psychological and physical health rehabilitation as a key measure to successful reintegration.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4f19df87-536a-471d-838e-113f9a8e4716", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 48, + "Paragraph": "Screening for mental health At a minimum, the psychosocial component of DDR programmes should offer an initial screening of ex-combatants as well as regular basic counseling where needed. A screen- ing procedure can be carried out by trained local staff to identify ex-combatants who are in need of special assistance. Early screening will not only aid psychologically-affected ex-combatants, but it will makes it possible to establish which participants are unlikely to benefit from more standard reintegration options. Providing more specialized options for this group will save valuable resources, and even more importantly, it will spare par- ticipants from the frustrating experience of not being able to fully engage in trainings or make use of economic support in the way healthier participants might. Following the screening process, ex-combatants who show clear signs of mental ill- health should, at a minimum, receive continuous basic counseling. This counseling must take place on a regular basis and allow for continuous contact with the affected ex-com- batants. As with screening, this basic counseling can be carried out by locally-trained DDR programme staff, and/or trained community professionals such as social workers, teachers or nurses. DDR programmes will likely encounter a number of ex-combatants suffering from full-blown trauma-spectrum disorders. These disorders cannot be treated through basic counseling and should be referred to psychological experts. In field settings, using narra- tive exposure therapy may be an option.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "0065bff5-466b-4b53-a58b-fc582a8f3fcf", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 49, + "Paragraph": "Community-based stepped-care system To adequately assess the existing capacities of local/regional support systems, an inven- tory and analysis of existing gaps is a first priority. Such an inventory should help to identify the existing local means used to address social and psychosocial issues, poten- tial partners, and the need to create or strengthen a network of practitioners. Next, the capacity of the existing social/psychosocial support structures as well as new ones (where needed), can be built to provide adequate services. A standard team consisting of trauma counselors (locally trained lay practitioners), may serve as a first-level of service providers in terms of trauma-related counseling as well as treatment of psycho-somatic condi- tions. They could also serve as mediators in cases of social adversity (e.g. family violence, extreme poverty, abuse and neglect of children). For the set-up of the treatment it has to be ensured that it is culturally acceptable (i.e. cultural acceptable gender and age match of trauma counselor and client). Sensitization and public awareness programmes on mental health and related psycho-social issues should also be developed and informed by the work of the commu- nity-based local staff. The focus of such programms should be sensitizing the community to the symptoms experienced by those who suffer from mental illness and impairment of associated functioning. This will involve strong efforts to de-stigmatize the conditions faced by psychologically-affected individuals. They should also provide information on access to care. Ideally, specialized treatment to address mental health should be offered to both civil- ians and ex-combatants in a community-based structure. Every DDR programme within a post-conflict setting is confronted with the challenge of reintegrating ex-combatants into a society which is itself recovering from trauma. Offering psychosocial care in a commu- nity-based structure for both former ex-combatants and civilians will foster reconciliation and make it possible for both groups to learn about each other\u2019s experiences during the war. In this way, psychosocial care does not only support the individual to heal, but can foster the restoration of the social fabric. Thus, a DDR programme may refer mentally-ill ex-combatants who cannot be treated through basic counseling to a common health ser- vice structure. Most importantly, all interventions have to be carried out within a framework of implementation research, including micro-level analysis. It will be important to con- duct impact evaluations on effectiveness and efficiency of trauma treatment, functioning recovery pre- and post-treatment in selected individuals, impact on social cohesion in the community, recovery of occupational functioning, socio-economic indicators, impact on readiness for reconciliation, etc,., on a continuing basis. Without such evaluations, there is the risk that ineffective and sometimes even harmful programmes are extended to regional services. Parallel to these evaluations, a measure of supervision (by master coun- selor, clinical practitioners) and peer sharing has to be set in motion between community, district practitioners and researchers at national level.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0f8dd93b-a564-43b8-a95d-7faa64f35587", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 50, + "Paragraph": "Medical and physical health issues If an ex-combatants\u2019 life expectancy is short due to war-related injuries or other illnesses, no degree of reintegration assistance will achieve its aim. Experience has shown that untreated wounded, ill and terminal ex-combatants constitute the most violent and dis- ruptive elements within any immediate post-conflict environment. Immediate health care assistance should therefore be provided during DDR from the very earliest stage. Planning for such assistance should include issues of sustainability by ensuring that ex-combatants are not a distinct target group for medical assistance, but receive care along with members of their communities of return/choice. Support should also be given to the main caregivers in receptor communities. The demobilization process provides a first opportunity to brief ex-combatants on key health issues. Former combatants are likely to suffer a range of both short- and long- term health problems that can affect both their own reintegration prospects and receptor communities. In addition to basic medical screening and treatment for wounds and dis- eases, particular attention should be directed towards the needs of those with disabilities, those infected with HIV/AIDS, the chronically ill, and those experiencing psychosocial trauma and related illnesses. As in the case of information, counseling and referral, the services may start during the demobilization process, but continue into and, in some cases 5.70\tgo beyond, the reintegration programme (also see IDDRS 5.70 on Health and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e5e2133f-7bc6-4ecc-b1f3-3244d59d0e00", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 50, + "Paragraph": "HIV/AIDS The conditions that exist during conflict increase risk of infection for HIV and other sexu- ally transmitted infections (STIs), and can have a devastating effect on access to essential information, care and treatment. The lack of a safe blood supply; the shortage of clean equipment for injecting drug users; an insufficient supply of condoms and health care; and the widespread practice of sexual and gender-based violence, both as a weapon of war and as a means to discipline and control people (especially women and girls within armed forces and groups), are just a few examples of the ways conflict can heighten risk of HIV infection (see Module 5.60 on HIV/AIDS and DDR for more information). In addition, a growing body of evidence shows that immediate post-conflict and recovery phases, including the reintegration process, involve heightened risk of HIV trans- mission due to the re-opening of borders and other formerly inaccessible areas, increased mobility, the return of displaced populations, and other factors. Often, regardless of actual HIV status, receptor communities may perceive ex-com- batants as HIV-positive and react with discrimination or stigmatization. In many cases, these negative reactions from communities are a result of fear due to misinformation about HIV and AIDS. Discrimination against or stigmatization of (potentially) HIV-in- fected individuals can be countered with appropriate sensitization campaigns. DDR can provide an opportunity to plan and implement essential HIV/AIDS initi- atives, in close coordination with broader recovery and humanitarian assistance at the community level and the National AIDS Control Programme (see section 9 of Module 5.60 on HIV/AIDS and DDR for more information on planning and implementing HIV/AIDS activities in the reinsertion and reintegration phases). These services can be integrated into existing reintegration packages through the development of joint programming and strategic partnerships. Furthermore, with the right engagement and training, former com- batants have the potential to become agents of change by assisting in their communities with HIV prevention and awareness activities. HIV initiatives need to start in receiving communities before demobilization, and should be linked wherever possible with the broader recovery and humanitarian assis- tance provided at the community level, and to National AIDS Control Programmes. Activities such as peer education training in HIV prevention and awareness can begin prior to demobilization.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0ece26e0-b947-4245-ac7d-4d6a1220fa29", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 51, + "Paragraph": "Persons with disabilities War leaves behind large numbers of injured people, including both civilians and com- batants. Ex-combatants with disabilities should be treated equally to others injured or affected by conflict. This group should be included in general reintegration pro- grammes, not excluded from them, i.e. many ex-combatants with disabilities can and should benefit from the same programmes and services made available to non-disabled ex-combatants. DDR programme managers should ensure that the following guidelines are taken into account when addressing persons with disabilities in reintegration programmes: 5.60 5.60 Some ex-combatants with disabilities will require long-term medical care and family support. While some will receive some form of pension and medical assistance (especially if they were part of a government force), most disabled ex-combatants who were part of informal armed groups will not receive long-term assistance. In places where the health infrastructure has been damaged or destroyed, attention must be paid to informal care providers \u2014 often women and girls \u2014 who care for disabled combatants. In addition, support structures must be put into place to lessen the largely unpaid burden of the care that these informal providers carry. DDR programmes must also plan for participants with disabilities by agreeing on and arranging for alternative methods of transport of supplies or kits given to partici- pants. These may include livelihoods kits, food supplies, or other vocational materials. Assistance and special planning for these groups during reintegration should be included in the assessment and planning phases of DDR.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "21e7b789-2f21-42d8-86d9-c488cdfca004", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 52, + "Paragraph": "Reproductive health The provision of reproductive health services, which should start as soon as the demo- bilization registration and screening process has identified specific needs, should be continued, as appropriate, during reintegration. Linkages should be made to public or private national and/or community health facilities. Preferential or subsidized access may still be required, particularly in those cases where the lack of continued treatment can in itself create a renewed public threat, such as HIV/AIDS, drug abuse and psycho- logical illness.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "82425e14-a224-4c09-9322-ab064c7d6380", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 52, + "Paragraph": "Political Reintegration Political reintegration is the involvement and participation of ex-combatants and people associated with armed forces and groups\u2014and the communities to which they return\u2014in post-conflict decision- and policy-making processes at the national, regional and commu- nity levels. Political reintegration activities include providing ex-combatants and other war-affected individuals with the support, training, technical assitance and knowledge to vote, form political parties and extend their civil and political rights as part of the overar- ching democratic and transitional processes in their communities and countries. It is important to differentiate between political reintegration and the political nature of DDR and other peace-building processes. Almost without exception, DDR processes are part of an overarching political strategy to induce armed actors to exchange violence for dialogue and compromise through power-sharing and electoral participation. In that it aims to reestablish the State as the sole authority over the use of violence, DDR is inherently part of the overall political strategy during peacemaking, peacekeeping and peace-building. While political reintegration is related to this strategy, its goals are far more specific, focusing on integrating programme participants into the political processes of their communities and countries at both the individual and group level. If properly executed, political reintegration will allow for the legitimate grievances and concerns of ex-combatants and former armed groups to be voiced in a socially-con- structive and peaceful manner that addresses root causes of conflict.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d2317a73-e992-4080-a9af-4f4b9ee70261", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 53, + "Paragraph": "Types of political reintegration Generally, political reintegration occurs along two broad trajectories, namely at the group level and the individual level, as follows: Group level: At the group level, political reintegration is transformative in that it seeks to aid in transforming a group or organization from an illegally armed entity into a legit- imate political party or civilian unit operating within the legal parameters of the state. Individual level: At the individual level, political reintegration is restorative in that it involves restoring an ex-combatant\u2019s (and other programme participants\u2019) deci- sion-making power within a given community in relation to his/her citizen status within that community.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a6a6bdca-0940-4b76-85ea-c6c5fd2887ee", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 53, + "Paragraph": "Group level political reintegration Aiding former armed forces and groups and ex-combatants to form political parties and peaceful civilian movements is essential to ensuring that grievances and visions for soci- ety continue to be expressed in a non-violent manner in the post-conflict period. Group level political reintegration is most evidently seen in transformations of armed groups into political parties that seek to enter or re-enter the political arena as a way to advance their claims and perspectives. While a successful transformation from armed group to political party can yield a plethora of benefits for citizens and the overall democratization process, new political parties in post-conflict societies often lack the capacity, structural organization, resources, political knowledge and legitimacy necessary to successfully compete in the political arena. Moreover, individual ex-combatants and armed groups often face a number of uncertainties concerning how they will fare in the post-conflict period. Without proper guidance and careful monitoring, emerging political parties can likely face failure or even do more harm than good. Given such complexities, when planning and designing political reintegration inter- ventions, DDR practitioners must consider the following key factors influencing the viability and outcome of group level political transformations of armed forces and groups: Nature of the peace (e.g. negotiated peace agreement, military victory, etc.); Post-conflict security situation; Motivation(s) of armed group (keeping in mind that such motivations can change over time); Degree of popular support and perceived legitimacy; Degree of political experience and capacity; Leadership capacities; Organizational structure; Resources, funding and technical support; Criminal prosecutions and transitional justice measures. Notably, group level political reintegration processes largely depend on both the country context and form of the peace settlement established. In the case of a negotiated peace agreement, for instance, political reintegration typically involves the transforma- tion of armed groups (both political and military wings) into political parties, usually in tandem with a mix of DDR processes linked to larger SSR efforts. Political reintegration in cases of military victory, however, involve a different set of considerations that are less-de- fined and require further research and experiential understanding at this point in time. In cases where political reintegration is part and parcel of a CPA, explicit programming in DDR is more evident.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "5211d36e-2276-4298-9d33-453a67918613", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 54, + "Paragraph": "Individual level political reintegration Effective political reintegration at the individual level involves empowering citizens by providing them with the knowledge and tools to voice their opinions, vote and take part in the government of their country without fear of intimidation, discrimination, retalia- tion or violence. Due to the nature and duration of a conflict, many ex-combatants and associated groups, particularly youth, may have little or no past experience in taking part in elections or joining a political party. In some cases, authoritative regimes or widespread conflict may have completely prevented the extension of one\u2019s civil and political rights. The right to vote and take part in the political life of one\u2019s country has become a funda- mental tenant in international law and democratic frameworks as outlined in several key human rights instruments, such as the International Covenant on Civil and Political Rights, the Universal Declaration of Human Rights, the African Charter on Human and Peoples\u2019 Rights, the American Declaration of the Right and Duties of Man and the Asian Human Rights Charter. Engaging individual ex-combatants in the political process has the dual advantage of pre-empting them from becoming spoilers to an electoral process while aiming to vest in them the desire and knowledge to exercise their civil rights. Building the capacities of ex-combatants and community members in the various areas of civic participation and democratic governance is found to be a critical step in enabling the political reintegration of national stakeholders.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f2c11b7d-f42f-4e7b-a077-625ffa92b714", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": null, + "Paragraph": "Context assessments In order to determine the role of, relevance of and obstacles to initiating and supporting political reintegration activities, DDR planners should ensure that the assessment and planning phases of DDR programming include questions and analyses that address the context-specific aspects of political reintegration. In preparing and analyzing assessments, DDR planners and reintegration practition- ers should pay close attention to the nature of the peace (e.g. negotiated peace agreement, military victory, etc.) to determine how it might impact DDR participants\u2019 and beneficiar- ies\u2019 ability to form political parties, extend their civil and political rights and take part in the overall democratic transition period. To inform both group level and individual level political reintegration activities, DDR planners should consider asking the following questions, as outlined below:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6aa6fee6-4913-458f-acba-48844e5e2e73", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 56, + "Paragraph": "Establishing partnerships and coordination mechanisms It is important to recall that DDR programmes are not vested with the authority or capacity to deliver full-scale political and electoral support. Development of political reintegration programme activities should therefore aim to link closely with relevant organizations and capacities involved specifically in electoral processes and political party development, including national stakeholders, UN agencies, international and regional organizations and NGOs. Within the UN system, the Department of Political Affairs, through its Electoral Assistance Division (EAD), the United Nations Development Programme (UNDP), and existing civil affairs and PI units of UN missions, can be looked to for key guidance on implementing both individual and group political reintegration efforts. Outside the UN system, key multilateral organizations working to provide political party assistance and election observations include the Organization for Security and Co-operation in Europe (OSCE), the Organization of American States (OAS) and the International Institute for Democracy and Electoral Assistance (IDEA). In addition, leading international actors active in providing relevant assistance include: the German and Swedish party foundations, the National Democratic Insti- tute (NDI) and the International Republican Institute (IRI) in the United States, Britain\u2019s Westminster Foundation for Democracy (WFD), the Netherlands Institute for Multiparty Democracy (NIMD) and Australia\u2019s Centre for Democratic Institutions (CDI). It is impor- tant to emphasize that the majority of these party assistance organizations, although mostly funded by bilateral aid agencies and governments, are independent institutes that are relatively autonomous as regards how, with whom and where they execute their pro- grammes. Where applicable and appropriate, DDR managers should aim to partner with such organizations to build capacity within the DDR programme on political reintegra- tion issues and exchange information regarding best practices. For more information on coordination and partnerships in the area of political rein- tegration, see UNDP\u2019s Elections and Conflict Prevention: A Guide to Analysis, Planning, and Programming, 2009.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "588ce308-3ab9-424e-af91-5995a016a1f1", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 57, + "Paragraph": "Entry points for political reintegration Offering information services and capacity development in the area of civic and political participation is central to creating an enabling environment for the political reintegra- tion of all stakeholders in a DDR process. This may include community sensitization campaigns, education on the nature and functioning of democratic institutions (at the national, regional and/or local levels), leadership training, and initiatives to foster wom- en\u2019s participation. Focusing on particular subject areas, such as human rights (especially those rights reflected in the International Covenant on Civil and Political Rights) and in the devel- opment of political parties in the methods and processes of democracy, constituency relations, community organizing and participation in dialogue processes that involve other stakeholders and political opponents, is recommended. Specific entry points to build capacity and enhance participation in political processes include, but are not limited to, the following: Public information and sensitization campaigns on civil and political rights Communities of return should receive sensitization related to political reintegration and the accompanying peace process.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "934872c8-dd31-4f7c-b42a-377bbb93164e", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 57, + "Paragraph": "Civic and voter education In order to build capacity and enhance participation in the democratic process, DDR programmes should support civic and voter education. This may include providing edu- cation or referrals to education opportunities on the nature and functioning of democratic institutions at the national, regional and/or local levels. Civic education on the country\u2019s comprehensive peace agreement (where applicable) or peace process should be consid- ered. At the local level, approaches to human rights education that draw from \u201cstreet law\u201d may be particularly effective, such as the practical application of citizens\u2019 rights, such as freedom of expression, the right to dissent, and the right to vote in secrecy in electoral processes that are free of coercion or intimidation, may be particularly effective.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5b4e6417-16cf-4c61-912f-22979744f05f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 57, + "Paragraph": "Leadership training Senior DDR managers can serve in an advisory capacity to senior government and military officials on issues concerning political reintegration. Through implementing leadership training, DDR programmes will aim to facilitate and increase the legitimacy and support received by newly-established political leaders. DDR managers should consider undergo- ing targeted training in leadership and political negotiation that is IDDRS compliant.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3d825886-0817-4239-b092-6b0bb86fb574", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 57, + "Paragraph": "Lobbying for mid-level commanders Research into comparative peace processes suggests that the political roles and associ- ated livelihoods futures of mid-level commanders are critical in post-conflict contexts. Given mid-level commanders\u2019 ranks and level of responsibility and authority while with armed forces or groups, they often seek commensurate positions in post-conflict settings. Many seek an explicitly political role in post-conflict governance. Where DDR programmes have determined that commander incentive programmes will be required, a resource mobilization strategy should be planned and implemented in addition to a dedicated vetting process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "190311fc-f87c-471b-8027-fc90b05cf237", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 58, + "Paragraph": "Women\u2019s participation The UN\u2019s commitment to restoring security, the protection of vulnerable groups and gen- der equality has been formalized in United Nations Security Council resolutions 1325 and 1820, and more recently re-affirmed by resolutions 1888 and 1889. DDR processes form an invaluable window of opportunity to enhance women\u2019s inclu- sion in decision-making and political processes. Civil affairs and human rights sections, in addition to civil society organizations and NGOs specialized in gender and women\u2019s rights can support political reintegration efforts to include trainings on gender and wom- en\u2019s inclusion in civil and political affairs. Women\u2019s participation and representation in public institutions ranging from public administration to justice and security sectors will not only enhance gender equality, but may prove critical in addressing the vulnerabilities that initially led many women and girls into forced recruitment or association with armed forces or groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "46a5982e-b17a-456f-8a60-d996603285f7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 58, + "Paragraph": "11.4.9. Youth participation The special needs of youth should be addressed during political reintegration not only because this group may become a security threat, but also because they can act as a major force for positive change in contemporary politics. Youth are often more open to voting for new parties, less loyal to established traditions and more idealistic in their goals for their societies.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "06ec4c57-db05-48cd-9b90-546ef04018a6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 59, + "Paragraph": "Linking reintegration to wider recovery and development Many DDR programmes have failed in the past due to their narrow focus and short-term approach. To achieve sustainability and meet its goals to improve security, DDR must pave the way for post-conflict recovery and development to take root. Reintegration pro- grammes shall therefore be conceptualized, planned, designed and implemented as part of, or at least in very close cooperation with, wider recovery strategies. Linkages shall include, but not be limited to the areas of post-conflict rehabilitation, resettlement of dis- placed populations, reconciliation efforts, human rights promotion, transitional justice, improved governance and security sector reform. To achieve coherence, when design- ing reintegration programmes, UN practitioners should coordinate, and where possible, jointly plan programmes with actors working in these areas. In the case of reintegration, a number of UN agencies work in parallel to integrate various war-affected peoples including ex-combatants, returnees and IDPs, into the same labour market and communities. Information, such as number and profile of beneficiar- ies, therefore needs to be shared among UN agencies engaged in reintegration assistance. It should be the guiding principle from the earliest pre-mission assessment phase and continue throughout all stages of strategy development, programme planning and imple- mentation. The use of Memoranda of Understanding (MoU) between agencies intervening in the same sector or on the same issue has proven an efficient mechanism for coordination. DDR programme managers will need to ensure close coordination: In the field, where coordination among UN entities, national counterparts, receiving communities, NGOs, donors, governmental aid organizations, and other implement- ing partners should be established at the earliest stages of mission planning; At Headquarters, through integrated mission planning structures and processes (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures) to ensure that coordinated, coherent and consistent direction and support is provided to field operators; Between the field and Headquarters, to ensure that lessons learned and policy devel- opment on DDR are built into field-level programming, particularly at the start of missions and DDR processes, as well as to ensure the participation of key stakehold- ers at the international level. Programme managers should also focus on building strong local, national and inter- national partnerships from the start. Partnerships are essential, both in direct, short-term programme implementation and in forming links to longer-term recovery, peace-build- ing, governance and development programmes. DDR managers should also ensure that relevant recovery and development frame- works are identified and guide their programmes, with specific attention to national recovery plans and poverty reduction strategy papers (PRSPs), the UN Development Assistance Framework (UNDAF), and the UN Policy for Post-Conflict Employment Crea- tion, Income Generation and Reintegration. This is vital to ensure that DDR programming is linked to peace-building, transition, recovery and reconstruction strategies and that it will facilitate the involvement of the various UN and other international agencies. While all efforts should be made to coordinate closely with other actors implementing related programmes, DDR programme managers should also clearly identify those objectives 3.10 that the reintegration programme can deal with directly, and those in which it can only contribute. Experience has shown that coordination is difficult to achieve, and that post-conflict governments often do not possess the organizational capacity to coordinate all of the pro- gram partners. This must be effectively communicated to donors so that they do not have unrealistic expectations on the ground for DDR programmes.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6566619d-2512-41c6-a8d4-1053c2b36af7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.30-Reintegration", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.30-Reintegration", + "PageNum": 61, + "Paragraph": "Annex A: Terms and definitions Apprenticeship: Refers to any system by which an employer undertakes by contract to employ a young person and to train him or have him trained systematically for a trade for a period of which the duration has been fixed in advance and in the course of which the apprentice is bound to work in the employer\u2019s service. (ILO Apprenticeship Recommendation no. 60, 1939). Business development services: Services that improve the performance of the enterprise, its access to markets, and its ability to compete. The definition of \u201cbusiness development services\u201d includes a wide array of business services, both strategic and operational. Busi- ness development services are designed to serve individual businesses, as opposed to larger business community. (Business Development Services for Small Enterprises: Guiding Principles for Donor Intervention, 2001). Cooperatives: Autonomous association of persons united voluntarily to meet common economic, social and cultural needs and aspirations through a jointly owned and dem- ocratically controlled enterprise. A cooperative is essentially a vehicle for self-help and mutual aid. Many cooperatives throughout the world have a commitment to a distinctive statement of identity formulated by the International Cooperative Alliance (ICA). (Interna- tional Labour Conference, Recommendation 193, Recommendation Concerning the Promotion of Cooperatives,Section 1 Paragraph 2, 2002). Decent work: Involves opportunities for work that is productive and delivers a fair income provide s security in the workplace and social protection for workers and their families; offers better prospects for personal development and encourages social integration; gives people the freedom to express their concerns, to organize and to participate in decisions that affect their lives; and guarantees equal opportunities and equal treatment for all. (United Nations System Chief Executives Board for Coordination (CEB) Toolkit for Main- streaming Employment and Decent Work, 2007). Employment: The employed comprise all persons about a specified age who during the reference period were either (i) at work or (ii) with a job or enterprise but not at work (i.e.) persons temporarily absent from work). Persons at work are defined as persons who during the reference period performed work for a wage or a salary, or for profit or family gain, in cash or in kind, for at least an hour. (The Thirteenth International Conference of Labour Statisticians, 1982). Minimum working age: The Minimum Age Convention defines a range of minimum ages below which no child should be allowed to work and stipulates that: (a) the mini- mum age for employment should normally not be less than 15 years , but exemptions can be made for developing countries which may fix it at 14; (b) the minimum age for permit- ting light work should be not less than 13 years, but developing countries may fix it at 12; the minimum age for admission to hazardous work should not be less than 18 years, but under strict conditions may be permitted at 16. (ILO Minimum Age Convention 138, 1973). Sustainable livelihoods approach: Approach that tries to ensure that households can cope with and recover from stresses and shocks, and maintain and improve their capabil- ities and assets now and in the future. (IDDRS, 2006). Vocational (career) guidance: The OECD Career Guidance Policy Review defines it as \u201cser- vices and activities intended to assist individuals, of any age and at any point throughout their lives, to make educational, training and occupational choices and to manage their careers.\u201d This definition includes making information about the labour market and about educational and employment opportunities more accessible by organizing it, systematizing it and having it available when and where people need it. It also includes assisting people to reflect on their aspirations, interests, competencies, personal attributes, qualifications and abilities and to match these with available training and employment opportunities. The term career guidance is replacing the term vocational guidance in high-income coun- tries. Vocational guidance is focused upon the choice of occupation and is distinguished from educational guidance, which focuses upon choices of courses of study. Career guid- ance brings the two together and stresses the interaction between learning and work. (Career Guidance \u2013 A Resource Handbook for Low- and Middle-Income Countries, 2006). Vocational training: The expression vocational training means any form of training by means of which technical or trade knowledge can be acquired or developed, whether the training is given at school or at the place of work. (ILO Recommendation 57, 1939) Training is not an end in itself, but a means of developing a person\u2019s occupational capacities, due account being taken of the employment opportunities, and of enabling him to use his abilities to the greatest advantage of himself and of the community; it should be designed to develop personality, particularly where young persons are concerned. (ILO Recommen- dation 117, 1962) For the purpose of this Recommendation, the qualification of the terms guidance and training by the term vocational means that guidance and training are directed to identify and developing human. Socialization to violence: In the case of combatants and associated groups, this sociali- zation or conditioning process involves the development of violent behaviours that are, or that appear to be, essential for effective participation in the armed force or armed group, or more broadly essential for basic survival in an environment rife with armed violence. During armed conflict, many combatants witness and become victims of violence and severe abuse themselves and may enter into the early recovery period with significant psychosocial support needs. Systematic data on patterns of violence among ex-combatants is still fragmentary, but evidence from many post-conflict contexts suggests that ex-com- batants who have been socialized to use violence often continue these patterns into the peacebuilding period. (UNDP Report, Blame It on the War? The Gender Dimensions of Vio- lence in DDR, 2012). Culture of violence: When socialization to violence reaches a level where it has become an integral part of a particular society and of individuals\u2019 collective response mechanisms. Behaviour change communication (BCC): An interactive process with communities (as integrated with an overall program) to develop tailored messages and approaches using a variety of communication channels (such as drama, music, radio, media, print, etc) to develop positive behaviours; promote and sustain individual, community and societal behaviour change; and maintain appropriate/non-violent behaviours and interactions between individuals and groups. Behaviour change interventions (BCI): A combination of activities/interventions tailored to the needs of a specific group and developed with that group to help reduce violence by creating an enabling environment for individual and collective change. Caregiving: A kind of interaction of a person with the world around him/her, including objects, plants, animals and particularly other human beings. This also includes self-care. In many cultures this \u2018caring\u2019 relationship or attitude can be defined as a \u201cfemale\u201d attrib- ute or characteristic, and from whose domain men, from an early age, are encouraged to exclude themselves. Interim stabilization measures: Stabilization measures that may be used to keep former combatants\u2019 cohesiveness intact within a military or civilian structure for a time-bound period of time, creating space and buying time for a political dialogue and the formation of an environment conducive to social and economic reintegration. Such measures range from military integration to the formation of transitional security forces, to the establish- ment of civilian service corps, among other such arrangements \u2018holding patterns\u2019.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3ac1dea2-379d-4082-a0cb-5e17493b340a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": null, + "Paragraph": "Summary Demobilization occurs when members of armed forces and groups transition from military to civilian life. It is the second step of a DDR programme and part of the demil- itarization efforts of a society emerging from conflict. Demobilization operations shall be designed for combatants and persons associated with armed forces and groups. Female combatants and women associated with armed forces and groups have tradi- tionally faced obstacles to entering DDR programmes, so particular attention should be given to facilitating their access to reinsertion and reintegration support. Victims, dependants and community members do not participate in demobilization activities. However, where dependants have accompanied armed forces or groups, provisions may be made for them during demobilization, including for their accommodation or transportation to their communities. All demobilization operations shall be gender and age sensitive, nationally and locally owned, context specific and conflict sensitive. Demobilization must be meticulously planned. Demobilization operations should be preceded by an in-depth assessment of the location, number and type of individuals who are expected to demobilize, as well as their immediate needs. A risk and securi- ty assessment, to identify threats to the DDR programme, should also be conducted. Under the leadership of national authorities, rigorous, unambiguous and transparent eligibility criteria should be established, and decisions should be made on the number, type (semi-permanent or temporary) and location of demobilization sites. During demobilization, potential DDR participants should be screened to ascertain if they are eligible. Mechanisms to verify eligibility should be led or conducted with the close engagement of the national authorities. Verification can include questions concerning the location of specific battles and military bases, and the names of senior group members. If DDR participants are found to have committed, or there is a clear and reasonable indication that a DDR participant knowingly committed war crimes, crimes against humanity, terrorist acts or offences1 and/or genocide, they shall be removed from the DDR programme. Once eligibility has been established, basic registration data (name, age, contact information, etc.) should be entered into a case management system. Individuals who demobilize should also be provided with orientation briefings, physical and psychosocial health screenings and information that will support their return to the community. A discharge document, such as a demobilization declaration or certificate, should be given to former members of armed forces and groups as proof of their demobilization. During demobilization, DDR practitioners should also conduct a profiling exercise to identify obstacles that may prevent those eligible from full par- ticipation in the DDR programme, as well as the specific needs and ambitions of the demobilized. This information should be used to inform planning for reinsertion and/ or reintegration support. If reinsertion assistance is foreseen as the second stage of the demobilization operation, DDR practitioners should also determine an appropriate transfer modali- ty (cash-based transfers, commodity vouchers, in-kind support and/or public works programmes). As much as possible, reinsertion assistance should be designed to pave the way for subsequent reintegration support.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "9fe8fad1-04c6-4773-bcd9-03eb85790117", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 5, + "Paragraph": "Module scope and objectives The aim of this module is to provide guidance to DDR practitioners supporting the planning, design and implementation of demobilization operations during DDR programmes within the framework of peace agreements in mission and non-mission settings. Additional guidance related to the demobilization of women, children, youth, foreign combatants and persons with disabilities can be found in IDDRS 5.10 on Women, Gender and DDR; IDDRS 5.20 on Children and DDR; IDDRS 5.30 on Youth and DDR; IDDRS 5.40 on Cross-Border Population Movements; and IDDRS 5.60 on Disability and DDR. The guidance in this module is also relevant for practitioners supporting de- mobilization in the context of security sector reform as part of a rightsizing process (see IDDRS 6.10 on DDR and Security Sector Reform). In addition, the guidance may be relevant to contexts where the preconditions for a DDR programme are not in place. For example, in some instances, DDR practitioners may be called upon to support national entities charged with the application of amnesty laws or other pathways for individuals to leave armed groups and return to civilian status Those individuals who take this route \u2013 reporting to amnesty commissions or the national authorities \u2013 also transition from military to civilian life.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8c60778e-eb29-4e11-9f8d-1827776960ba", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 5, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Demobilization as part of a DDR programme is the separation of members of armed forces and groups from military command and control structures and their transition to civilian status. The first stage of demobilization includes the formal and controlled discharge of members of armed forces and groups in designated sites. A peace agreement provides the political, policy and operational framework for demobi- lization and may be accompanied by a DDR policy document. When the preconditions for a DDR programme do not exist, the transition from combatant to civilian status can be facilitated and formalized through different approaches by national authorities. Reinsertion, the second stage of demobilization, is transitional assistance offered for a period of up to one year and prior to reintegration support. Reinsertion assistance is offered to combatants and persons associated with armed forces and groups who have been formally demobilized. Self-demobilization is the term used in this module to refer to situations where individuals leave armed forces or groups to return to civilian life without reporting to national authorities and officially changing their status from military to civilian. Members of armed forces and groups is the term used in the IDDRS to refer both to combatants (armed) and those who belong to an armed force or group but who serve in a supporting role (generally unarmed, providing logistical and other types of sup- port). The latter are referred to in the IDDRS as \u2018persons associated with armed forces and groups\u2019. The IDDRS use the term \u2018combatant\u2019 in its generic meaning, indicating that these persons do not enjoy the protection against attack accorded to civilians. This also does not imply the right to combatant status or prisoner-of-war status, as applicable in international armed conflicts.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "e45af30e-d152-4805-8dca-88a398fdcf5a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 6, + "Paragraph": "Introduction Demobilization officially certifies an individual\u2019s change of status from being a member of an armed force or group to being a civilian. Combatants and persons associated with armed forces and groups formally acquire civilian status when they receive official documentation that confirms their new status. Demobilization contributes to the rightsizing of armed forces, the complete dis- banding of armed groups, or the disbanding of armed forces and groups with a view to forming new armed forces. It is generally part of the demilitarization efforts of a society emerging from conflict. It is therefore a symbolically important step in the consolidation of peace, particularly within the framework of the implementation of peace agreements. Demobilization is the second component of a DDR programme. DDR programmes require certain preconditions in order to be viable, including the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security (see IDDRS 2.10 on The UN Approach to DDR). When demobilization contributes to the rightsizing of armed forces or the dis- banding and creation of new armed forces, it is part of a security sector reform process (see IDDRS 6.10 on DDR and Security Sector Reform). In such a context, those who are not integrated into the armed forces may be demobilized and provided with reintegration support (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration). Combatants and persons associated with armed forces and groups may experience challenges related to demobilization and the transition to civilian life. Armed forces and groups are often effective in socializing their members to violence and military ways of life. Training, initiation rituals and hazing are common methods of military so- cialization. So too are shared experiences of violence and combat. When leaving armed forces and groups, individuals may experience difficulties in shedding their military identity as well as rejection and stigmatization in their communities. Demobilization can mean adjustment to a new role and status, and new routines of family or home life. Persons who demobilize may also experience a loss of purpose, difficulty in creating and sustaining a livelihood, and a loss of military community and friendships. The way in which an individual de- mobilizes has implications for the type of support that DDR practitioners can and should provide. For example, those who are demobilized as part of a DDR pro- gramme are entitled to reinsertion and reintegration support. However, in some in- stances, individuals may decide to return to civilian life without first reporting to and passing through an official process to formalize their civilian status. DDR practitioners shall be aware that providing targeted assistance to these individuals may create se- vere legal and reputational risks for the UN. Such self-demobilized individuals may, however, benefit from broader, non-targeted community-based reintegration support as part of developmental and peacebuilding efforts implemented in their community of settlement. Standard operating procedures on how to address such cases shall be developed jointly with the national authorities responsible for DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a45abe37-eef7-4131-b186-69aeac88de76", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 8, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to demobilization.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8dc3ca89-e7fd-4cf8-9de4-e8fa38e80c2d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 8, + "Paragraph": "Voluntary Integrated DDR shall be a voluntary process for armed forces and groups, both as organizations and for their members. Groups and individuals shall not be coerced to participate in demobilization as part of a DDR programme. When DDR programmes are negotiated as part of a peace agreement, the decision to demobilize combatants is usually taken by the national authorities and/or the leadership of armed groups. When combatants are part of an organized military hierarchy, the decision to demobilize may not be their own. Instead, they may be instructed by their commanders or by national authorities to engage in demobilization. However, their participation in other aspects of the DDR programme shall be voluntary.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "6d50ea14-b19e-4e16-a76c-05f4d8ba3d0b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 8, + "Paragraph": "Criteria for participation/eligibility Where the preconditions for a DDR programme are in place, combatants and persons associated with armed forces and groups shall be included in demobilization. Histor- ically, women associated with armed forces and groups, and even sometimes female combatants, have not received accurate information on eligibility, either because com- manders have attempted to exclude them or because DDR practitioners have not been effective in reaching them. DDR practitioners shall therefore employ carefully crafted communication strategies to ensure that eligible women know that they can access DDR support (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR and IDDRS 5.10 on Women, Gender and DDR). Furthermore, depending on the context, some women may not want to participate in demobilization, owing to fear of stigmatization. DDR practitioners shall find alternative, less visible options for women to be formally demobilized in order to gain access to the same reinsertion and/ or reintegration assistance as their male counterparts. Victims, dependants and community members will not participate in demobiliza- tion activities. However, where dependants have accompanied armed forces or groups in the field, provisions may be made for them during demobilization, including pro- visions for their accommodation or transportation to their communities. If those who have already left armed groups wish to join an ongoing DDR programme, they may report to national authorities, reception centres or mobile disarmament sites. Whether or not these individuals participate in the DDR programme will then depend on the nationally agreed eligibility criteria in place. In some instances, they may also be eligible for other assistance, such as access to DDR-related tools, including community violence reduction or reintegration support. Information on each DDR participant should be collected in order to define his/her reintegration needs and to provide information for the design of reinsertion and reintegration programmes (also see IDDRS 4.30 on Reintegration).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "99cb0ded-055f-4a50-8e72-f49889278622", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 9, + "Paragraph": "Unconditional release and protection of children Public information campaigns can be used to inform adult members of armed forces and groups that they should not report to demobilization sites with members of their family, including children. Because this communication may have the unintended con- sequence of discouraging eligible women from appearing at demobilization sites, DDR practitioners shall take care in crafting such messages. If family members and children do arrive at demobilization sites, DDR practitioners shall consult with child protection actors in order to ensure that children are safely transferred to a different, civilian fam- ily member while the demobilization process is under way. If a combatant or person associated with an armed force or group reports to a demobilization site with a spouse and/or a child, then DDR practitioners may provide support to transfer both of these individuals to a community of their choice. Contingent on the DDR process in place, dependants may also be provided with transitional reinsertion assistance (see sections 4.2.1 and 5.4). When children have been recruited into armed forces and groups, their uncondi- tional and immediate release must be a priority, irrespective of the status of peace ne- gotiations and/or the development of DDR processes. Children shall be separated from armed forces and groups and handed over to child protection agencies at all times, not only when adult combatants are being demobilized. All children shall be permitted to demobilize as part of a DDR process if it is in their best interest (see IDDRS 5.30 on Youth and DDR). If there is doubt about an individual\u2019s age, the age claimed by the child or young person should be resolved in his or her favour, based on the \u201cbenefit of the doubt\u201d principle. Girls and boys associated with an armed force or group in any role shall be identified as early on as possible, handled in accordance with the Paris Commit- ments and the Paris Principles on children associated with armed forces and groups, and taken to an interim care centre for fur- ther attention. The interim care centre shall be separate from the demobilization site and should be run by an organization specializing in the care of children associated with armed forces and groups. Special assistance shall also be provided to child moth- ers and young mothers, regardless of the role they played in the armed force or group (also see IDDRS 5.10 on Women, Gender and DDR; IDDRS 5.20 on Children and DDR; and IDDRS 5.30 on Youth and DDR). Family tracing to help reunite children with their families may also take place at demobilization sites. In addition, reinsertion assistance for children should focus on their education.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "0fa0af11-d9dc-405e-907b-a2a6951b799f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 9, + "Paragraph": "In accordance with standards and principles of humanitarian assistance When managing demobilization sites, DDR practitioners should strive to harmonize their approach with humanitarian actors running internally displaced persons/returnee/ refugee camps in the vicinity, and to learn from the experiences of humanitarian and early recovery efforts in the area.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b515d59b-06d5-433f-89c5-1d3d8d79cf58", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 10, + "Paragraph": "Gender-responsive and inclusive Demobilization has different implications for women and men. For example, women may have earned a higher degree of equality and social recognition as combatants than they previously had in civilian life. Demobilization may mean that these status gains are lost. In addition, following demobilization, high-ranking women associated with armed forces and groups are often relegated to lower-ranking positions in new military structures, or are passed over in the selection of political positions in a new Government. It is known that women often self-demobilize in order to avoid the stigma associated with being a female combatant, war wife or sex slave. Appropriate attention shall be given to the needs of women so that (1) they are not excluded from DDR programmes; (2) their security and well-being is assured during demobilization; (3) demobilization operations respond to their specific needs and lev- erage their unique capacities; and (4) they are not overlooked in terms of reintegration support and/or security sector reform processes. To fulfil these objectives, demobili- zation operations shall be based on gender-sensitive eligibility criteria and operational protocols that take into account the needs and experiences of women (see Figure 1 and Box 2). Where possible, women who are self-demobilized shall be encouraged to join DDR programmes in order to receive ex-combatant status and access to other forms of support. Alternatively, when the stigma of being associated with armed forces or groups prevents women from participating in a DDR programme, other methods of reaching out to this group should be explored. Women\u2019s specific needs at demobiliza- tion sites shall also be considered, including reproductive and maternal health services; sexual and gender-based violence (SGBV) recovery services; psychosocial screening; provision of sanitary napkins in kits; and safe lighting, bathrooms and sleeping quarters (where required). For men, demobilization may also signal a loss of the status and respect gained as a fighter. Additionally, high-ranking men may gain key political positions in a new Government, but lower-ranking men may be passed over and experience disillusion- ment or feel betrayed by commanders. The loss of status and wartime family may be especially challenging for men, whose gender identity may be intricately intertwined with membership in an armed force or group. Additionally, socialization to violence can often impact gender identities, leading to notions of masculinities becoming tied to the use of violence. When supporting men during demobilization operations, it is im- portant to leverage opportunities to promote healthy non-violent forms of masculinity and partnership with women (e.g., in public information and awareness-raising cam- paigns, joint health promotion teams in demobilization sites, or through life skills ses- sions). Through social/health sessions and psychosocial screening, DDR practitioners can support a healthier and more equitable transition for both male and female DDR participants. See IDDRS 5.10 on Women, Gender and DDR for additional guidance.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "88b72353-ecac-4ca0-bc05-1912572b2125", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 10, + "Paragraph": "Conflict sensitive \u2018Do no harm\u2019 is a standard principle against which all DDR programmes shall be eval- uated at all times. Armed forces and groups to be demobilized shall be treated equally. No false promises shall be made concerning post-demobilization support. If DDR par- ticipants are well treated during demobilization, their attitudes towards the process are more likely to be positive, and others may be encouraged to demobilize. Demobilization shall bring together participants and community members, or participants from different sides of the conflict in the implementation of activities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "78836a88-6d1a-4c3a-86fe-9c4816e2b14b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 11, + "Paragraph": "Context specific DDR practitioners shall use the guidance and analytical tools in this module to plan and design context-specific demobilization operations, rather than relying on a stand- ard template or formula.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "265e2316-f556-4647-ba52-f41917af4bd7", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 11, + "Paragraph": "Flexible, sustainable and transparent funding arrangements In mission settings with peacekeeping operations, the UN Security Council mandate forms the basis for assessed funding for all activities related to disarmament and demo- bilization (including reinsertion), which can be complemented by national budgets. In non-mission settings, demobilization and reinsertion activities will require the alloca- tion of national budgets and/or the mobilization of voluntary contributions, including through the establishment of financial management structures, such as a multi-donor trust fund or catalytic funds provided by the UN Peacebuilding Fund. When a DDR programme is being implemented following a peace agreement, clear and comprehen- sive consensus of all parties from the outset regarding the number of combatants and persons associated with armed forces and groups to be demobilized will greatly assist resource management. If eligibility criteria are ambiguous and the warring parties do not specify the number of eligible combatants in advance, more participants may be accepted than there is funding available, creating challenges for the DDR programme.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "77483f46-ed85-4555-b120-5e029fa6b744", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 11, + "Paragraph": "Accountability and transparency DDR practitioners shall ensure that there is a mechanism in place for every individual present at a demobilization site to report complaints. Early discussion of any problem will reduce the risk to internal site security. At the earliest opportunity, the manager of the demobilization site is responsible for ensuring that a discussion forum is estab- lished, which should be used regularly to ensure that information is provided to those who need it and to deal with issues raised. Furthermore, an appeal mechanism shall be provided so that individuals who feel they have been unfairly left out of the demobi- lization operation can seek recourse, including a specific mechanism for women, who are often intentionally excluded.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5404b27c-b6c9-4297-8468-bdb199de7d10", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 11, + "Paragraph": "Nationally and locally owned DDR programmes shall be led by national Governments and relevant DDR institutions (see IDDRS 3.30 on National Institutions for DDR). They shall be guided by peace agreements and clear policy and legal frameworks. National authorities should lead the process of developing eligibility criteria and be involved in every step of the de- mobilization operation. In some contexts, the national authorities should involve rep- resentatives of signatory armed groups to ensure that demobilization is transparent to all. DDR practitioners shall advise and support national authorities in accordance with IDDRS guidance, ensuring that gender-responsive and -inclusive eligibility criteria are established.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ff104431-8a0e-45e0-abcc-5dcf7be70dea", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 12, + "Paragraph": "Regionally supported The demobilization and repatriation of foreign former combatants and persons asso- ciated with armed forces and groups will require a specific strategy (see IDDRS 5.40 on Cross-Border Population Movements). Where appropriate, DDR practitioners shall engage regional stakeholders, including neighbouring countries, to foster a conducive environment.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "47e2c13a-a002-48bf-aad2-adc8d4519a2c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 12, + "Paragraph": "Integrated When a DDR programme is being implemented, demobilization shall be linked to dis- armament and reintegration. If other components of a broader DDR process are also being implemented at the same time as a DDR programme, in different localities across the country, such as community violence reduction programmes or transitional weapons and ammunition management, public information campaigns should make clear who is eligible for what. DDR practitioners shall also consider whether there is a need to har- monize the benefits to those participating in different DDR programmes or activities. To the extent possible, integrated information collection efforts, covering each part of the DDR process, shall be pursued (see IDDRS 3.11 on Integrated Assessments). At a minimum, information related to different parts of the DDR process should be shared.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce8d2672-267a-45fc-acd0-44ec069170f4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 12, + "Paragraph": "Safety and security Demobilization sites (both semi-permanent and temporary \u2013 see section 5.3) shall be identified in such a manner that the safety and security of the individuals passing through is ensured. External, area and proximity security at demobilization sites shall be provided by military and/or police forces (national and/or international) or by other transitional security arrangements, such as mixed brigades (see IDDRS 4.40 on Military Roles and Responsibilities). Internal security at demobilization sites (both temporary and semi-permanent) should be provided by lightly equipped local security servic- es or police, including both men and women where possible. Plans for emergencies and evacuations of DDR staff and participants shall be developed and, where possible, rehearsed. Food and water supplies shall be provided in order to ensure that combatants and persons associated with armed forces and groups do not go without basic essentials, and to reduce the risk that these individuals will resort to criminality in the immediate vicinity of the demobilization site.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b20f3882-61ec-4618-b77c-d870554dc90b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 13, + "Paragraph": "Planning, assessment, design, and monitoring and evaluation The planning, assessment, design, and monitoring and evaluation of demobilization operations should be participatory and age and gender sensitive. In addition to assess- ing the short-term outputs of the DDR programme, such as the number of people de- mobilized, monitoring and evaluation shall also focus on qualitative indicators, such as changes in community perceptions and in the behaviour of ex-combatants and persons formerly associated with armed forces and groups. The planning for demobilization, disarmament and reintegration must be coherent. Before demobilization operations commence, DDR practitioners shall also ensure that resources are available for the pro- gramme as a whole.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "c185f3b9-1dd1-4c08-b8fe-0b64d583a1cc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 13, + "Paragraph": "Public information and community sensitization Public information and awareness campaigns shall be designed prior to demobiliza- tion in order to manage the expectations of ex-combatants, persons formerly associated with armed forces and groups, receiving communities and other stakeholders. Military commanders or spoilers may not always pass on accurate information about demobi- lization to their subordinates. Carefully designed public information campaigns and face-to-face visits by DDR practitioners can help to combat disinformation and reduce the risk that DDR participants will resort to violence if their expectations are not met (see IDDRS 4.60 on Public Information and Strategic Communication).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "aa3e2dd7-dc01-4d0a-9ff8-9ab694f5333a", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 13, + "Paragraph": "Planning and designing demobilization operations To effectively demobilize members of armed forces and groups, meticulous planning is required. At a minimum, planning for demobilization operations should include information collection; agreement with national authorities on eligibility criteria; deci- sions on the type, number and location of demobilization sites; decisions on the type of transfer modality for reinsertion assistance; a risk and security assessment; the devel- opment of standard operating procedures; and the creation of a demobilization team. All demobilization operations shall be based on gender- and age-responsive analysis and shall be developed in close cooperation with the national authorities or institutions responsible for the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "994d69c7-8d96-44ce-8911-4ea18095c574", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 13, + "Paragraph": "Information collection Planning for demobilization should be based on an in-depth assessment of the location, number and type of individuals who are expected to demobilize. This should include the number of members of armed forces and groups but also the number of dependants who are expected to accompany them. To the extent possible, this assessment should be disaggregated by sex and age, and include data on specific sub-groups such as foreign combatants and persons with disabilities. Armed forces and groups that have signed on to peace agreements are likely to provide reliable information on their memberships and the location of their bases only when there is no strategic advantage to be gained from keeping this information secret. Disclosures at a very early planning stage can therefore be quite unreliable, and should be complemented by information from a va- riety of (independent) sources (see box 1 on How to Collect Information in IDDRS 4.10 on Disarmament). All assessments should be regularly updated in order to respond to changing circumstances on the ground. In addition to these assessments, planning for reinsertion should be informed by an analysis of the preferences and needs of ex-combatants and persons formerly associ- ated with armed forces and groups. These immediate needs may be wide ranging and include food, clothes, health care, psychosocial support, children\u2019s education, shelter, agricultural tools and other materials needed to earn a livelihood. The profiling exer- cises undertaken at demobilization sites (see section 6.3) may allow for the tailoring of reinsertion and reintegration assistance \u2013 i.e., matching individual needs to the re- insertion options on offer. However, profiling undertaken at demobilization sites will likely occur too late for reinsertion planning purposes. For these reasons, the following assessments should be conducted as early as possible, before demobilization gets under way: An analysis of the needs and preferences of ex-combatants and associated persons; Market analysis; A review of the local economy\u2019s capacity to absorb cash inflation (if cash-based transfers are being considered); Gender analysis; Feasibility studies; and Assessments of the capacity of potential implementing partners.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "297bb6ab-63b1-44b9-aab0-a0be023b0c20", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 14, + "Paragraph": "Eligibility criteria Establishing rigorous, unambiguous, transparent and nationally owned criteria that allow people to participate in DDR programmes is vital. Eligibility criteria must be carefully designed and agreed by all parties. Eligibility for a DDR programme may or may not require the physical possession of a weapon and/or ammunition, depending on the context. The determination of eligi- bility criteria shall be based on the peace agreement or ceasefire, if these documents include relevant provisions, as well as the results of the aforementioned integrated assessment. In either case, eligibility for a DDR programme must be gender in- clusive and shall not discriminate on the basis of age or gender. When pre-DDR is being implemented prior to the onset of a full DDR programme, the same process for determining eligibility criteria shall be used (for more information on pre-DDR and eligibility related to weapons and ammunition possession, see IDDRS 4.10 on Disarmament). Persons associated with armed forces and groups may be participants in DDR programmes. As these individuals are typically unarmed, they may not be eligible for disarmament, but will be eligible for demobilization and reintegration (see IDDRS 3.21 on Participants, Beneficiaries and Partners). Historically, it has been shown that women who are eligible to participate in DDR programmes may not be aware of their eligibility, may be deliberately excluded by commanders or may be deprived of their weapons to the benefit of men seeking to enter the DDR programme. For these reasons, DDR practitioners shall be aware of different categories of eligibility and should ensure that proper public information and sensitization with commanders and potential DDR par- ticipants and beneficiaries is completed (on female participants and beneficiaries, see figure 1 and box 2). While Figure 1 could also apply to men, it has been designed spe- cifically to minimize the potential for women to be excluded from DDR programmes. Eligibility criteria must be designed to prevent individuals who are not members of armed forces and groups from gaining access to DDR programmes. The prospect of a DDR programme and the associated benefits can present an enticement to many individuals. Furthermore, armed groups that inflate their membership numbers to in- crease their political weight could try to rapidly recruit civilians to meet the shortfall. The screening process (see section 6.1) is used to confirm whether individuals meet the eligibility criteria for entering the DDR programme. Close cooperation with the leadership of armed forces and groups, civil society (including women\u2019s groups), local police and national DDR-related bodies, and a well-conducted public information and sensitization campaign are essential tools to ensure that only those who are eligible participate in a DDR programme (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "3e622165-1980-43a6-8ffc-435f36d4d0c4", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 16, + "Paragraph": "Demobilization sites Demobilization activities are carried out at designated sites. Static demobilization sites are most typically used for the demobilization of large numbers of combatants and persons associated with armed forces and groups. They can be semi-permanent and constructed specifically for this purpose, such as cantonment camps (see Annex B for the generic layout of a cantonment camp). Although cantonment was long considered standard practice in DDR programmes, temporary sites may also be appropriate. The decision concerning which type of demobilization site to use should be guided by the specific country context, the security situation, and the advantages and disadvantages associated with semi-permanent and temporary sites, as outlined in the sections that follow.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "04893e9e-e414-4947-8a86-b90e3be74ab8", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 16, + "Paragraph": "Semi-permanent demobilization sites Semi-permanent demobilization sites can provide an important means for armed forces and groups to show their commitment to the peace process, although they are often costly to construct and maintain and are ill-suited for armed groups based in commu- nities. For a full list of the advantages and disadvantages of semi-permanent demobi- lization sites, see table 1. Where assessments recommend the use of cantonment sites, DDR practition- ers and planning teams should take all possible measures to minimize the negative aspects of this approach.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "04fccea0-5496-4d11-8854-afce2673a9c6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 17, + "Paragraph": "Temporary demobilization sites Temporary demobilization sites that make use of existing facilities may be used as an alternative to the construction of semi-permanent demobilization sites. In this approach, combatants and persons associated with armed forces and groups are told to meet at a specific location for demobilization within a specific time period. Temporary demobilization sites may be particularly useful if the target group is small, if indi- viduals are likely to report for demobilization in small groups, or if the target group is scattered in multiple, known locations that are logistically accessible. This kind of site allows demobilization teams to carry out their activities in these locations without the need to build permanent structures. This approach may also be more appropri- ate than semi-permanent cantonment sites when the target group is already based in the community where its members will reintegrate. This is because combatants who are already in their communities should, where possible, remain there rather than be transported to a demobilization centre and back again. For a full list of the advantages and disadvantages of temporary demobilization sites, see table 2.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fb2f6e7e-4854-47db-b0c4-9933539b736f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 19, + "Paragraph": "Location Semi-permanent demobilization sites If the DDR programme has been negotiated within the framework of a peace agree- ment, then the location of semi-permanent demobilization sites may have already been agreed. If agreement has not been reached, the parties to the conflict should be in- volved in selecting locations. The following factors should be taken into account in the selection of locations for semi-permanent demobilization sites: Accessibility: The site should be easily accessible. Distance to roads, airfields, riv- ers and railways should be considered. Locations and routes for medical and ob- stetric emergency referral must be identified, and there should be sufficient capac- ity for referral or medical evacuation to address any emergencies that may arise. Accessibility allowing national or international military forces to secure the site and for logistic and supply lines is extremely important. The effects of weather changes (e.g., the start of the rainy season) should be considered when assessing accessibility. Security: Ex-combatants and persons formerly associated with armed forces and groups should feel and be safe in the selected location. When establishing sites, it is important to consider the general political and military environment, as well as how vulnerable DDR participants are to potential threats, including cross-border violence and retaliation by active armed forces and groups. The security of nearby communities must also be taken into account. Local communities: DDR practitioners should adequately liaise with local leaders and national and international military forces to ensure that nearby communities are not adversely affected by the demobilization site or operation. General amenities: Demobilization sites should be chosen with the following needs taken into account: potable water supply, washing and toilet facilities (sep- arate facilities for men and women, with locks and lighting if they will be used after dark), drainage for rain and waste, flooding potential and the natural water course, local power and food supply, environmental hazards, pollution, infesta- tion, cooking and eating facilities, lighting both for security and functionality, and, finally, facility space for recreation, including sports. Special arrangements/ contingency plans should be made for children, persons with disabilities, persons with chronic illnesses, and pregnant or lactating women. Storage facilities/armoury: If disarmament and demobilization are to take place at the same site, secure and guarded facilities/armouries for temporary storage of collected weapons shall be set up (see IDDRS 4.10 on Disarmament). Communications infrastructure: The site should be located in an area suitable for radio and/or telecommunications infrastructure. Temporary demobilization sites Temporary demobilization sites require few facilities because the period during which they will be used is relatively short. Finding a location that offers protection is neces- sary. The internal perimeter of an old school or warehouse, or, where the local popu- lation supports the DDR programme, a football field may be all that is required. Fresh potable water and electricity should be available. If they are not, a water purification system or water supplies and a generator should be brought in. Sanitary facilities must be supplied. Lighting should be installed to ensure security around the perimeter of the camp. When temporary demobilization sites are being used, it is particularly important to agree, in advance, on the distribution of tasks, financial responsibilities and the post-DDR ownership of the location. Where relevant, the following should also be considered: The refurbishment and temporary use of community property: If available in the area where the demobilization site is to be set up, the use of existing hard-walled property should be considered. The decision should be made by weighing the medium- and long-term benefits to the community of repairing local facil- ities against the overall security and financial implications. These installations may not need rebuilding, and may be made usable by adding plastic sheeting, concertina wire, etc. Possible sites include disused factories, warehouses, hospitals, colleges and farms. Efforts should be made to verify ownership and to avoid legal complications. The refurbishment and temporary use of state/military property: Where regular armed forces or well-organized/disciplined armed groups are to be demobilized, the use of existing military barracks, with the agreement of national authorities, should be considered. Generally speaking, these facilities should offer a degree of security and may have the required infrastructure already in place. The same security and administrative arrangements should apply to these sites as to others.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "5b00db1d-361a-41dc-9237-5f10913ff6ea", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 21, + "Paragraph": "Size, capacity and duration The size and capacity of demobilization sites should be determined by the number of combatants and persons associated with armed forces and groups to be processed. Typically, demobilization sites with a small number of combatants and associated persons are easier to administer, control and secure. However, if many small demobi- lization sites are in operation at one time, this can lead to widely dispersed resources and difficult logistical situations. Demobilization sites should not accommodate more than 600 people at one time. When time constraints mean that larger numbers must be dealt with in a short period of time, two demobilization sites may be constructed simultaneously and managed by the same team. In order to optimize the use of de- mobilization sites and avoid bottlenecks, an operational plan should be developed that contains methods for controlling the number and flow of people to be demobi- lized at any particular time. Carrying out demobilization in phases is one option to increase efficiency. This process may include a pilot test phase, which makes it possible to learn from mistakes in the early phases and adapt the process so as to improve performance in later phases. Families often accompany combatants to cantonment sites. Where necessary, camps that are close to cantonment sites may be established for family members. Alternatively, transport may be provided for family members to return to their com- munities. The duration of demobilization will depend on the time that is needed to complete the activities planned during demobilization (e.g., screening, profiling, awareness rais- ing). Generally speaking, the demobilization component of a DDR process should be as short as possible. At temporary demobilization sites, it may be possible to process individuals in one or two days. If semi-permanent demobilization sites have been con- structed, cantonment should be kept as short as possible \u2013 from one week to a maxi- mum of one month. DDR practitioners should also seek to ensure that the conditions at demobilization sites are equivalent to those in civilian life. If this is the case, then it is less likely that demobilized individuals will be reluctant to leave. Demobilization should not begin until plans for reinsertion (or community violence reduction, as a stop-gap measure) and reintegration are ready to be put into operation.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "18a0f5a1-4275-41ca-b3f7-77af951035bd", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 21, + "Paragraph": "Managing a demobilization site The manager of the demobilization site and his/her support team are responsible for the day-to-day running of the site and should be trained before demobilization oper- ations begin. In semi-permanent sites, where those who demobilize may reside for up to one month, DDR practitioners should consider involving DDR participants in the management of the site. Group leaders, including women, should be chosen and given the responsibility of reporting any misbehaviour. A mechanism should also exist be- tween group leaders and staff that will enable arbitration to take place should disputes or complaints arise.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4242934f-6dcd-48a3-bbc2-280ad6e9dc32", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 22, + "Paragraph": "Risk and security assessment A comprehensive risk and security assessment should be conducted to inform the plan- ning of demobilization operations and identify threats to the DDR programme and its personnel, as well as to participants and beneficiaries. The assessment should identify the tolerable risk (the risk accepted by society in a given context based on current values), and then identify the protective measures necessary to achieve a residual risk (the risk remaining after protective measures have been taken). Risks related to women, youth, children, dependants and other specific-needs groups should also be considered. In developing this \u2018safe\u2019 working environment, it must be acknowledged that there can be no absolute safety and that many of the activities carried out during demobilization operations have a high risk associated with them. However, national authorities, inter- national organizations and non-governmental organizations must try to achieve the highest possible levels of safety. Risks during demobilization operations may include: Attacks on demobilization site personnel: The personnel who staff demobiliza- tion sites may be targeted by armed groups that have not signed on to the peace agreement. Attacks on demobilized individuals: In some instances, peace agreements may cause armed groups to fracture, with some parts of the group opting to enter DDR while others continue fighting. In these instances, those who favour continued armed conflict may retaliate against individuals who demobilize. In some cases, active armed groups may approach demobilization sites with the aim of retrieving their former members. If demobilized individuals have already returned home, members of active armed groups may attempt to track these individuals down in order to punish or forcibly re-recruit them. The family members of the demobi- lized may also be subject to threats and attacks, particularly if they reside in areas where members of their family member\u2019s former group are still present. Attacks on women and minority groups: Historically, SGBV against women and minority groups in cantonment sites has been high. It is essential that security and risk assessments take into consideration the specific vulnerabilities of women, identify minority groups who may also be at risk and provide additional security measures to ensure their safety. Attacks on individuals transporting and receiving reinsertion support: Security risks are associated with the transportation of cash and commodities that can be easily seized by armed individuals. If it is known that demobilized individuals will receive cash and/or commodities at a certain time and/or place, it may make them targets for robbery. Unrest and criminality: If armed groups remain in demobilization sites (par- ticularly cantonment sites) for long periods of time, perhaps because of delays in the DDR programme, these sites may become places of unrest, especially if food and water become scarce. Demobilization delays can lead to mutinies by combat- ants and persons associated with armed forces and groups as they lose trust in the process. This is especially true if demobilizing individuals begin to feel that the State and/or international community is reneging on previous promises. In these circumstances, demobilized individuals may resort to criminality in nearby communities or mount protests against demobilization personnel. Recruitment: Armed forces and groups may use the prospect of demobilization (and associated reinsertion benefits) as an incentive to recruit civilians.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "87927274-fbba-4e3f-a7d1-c070c8e31995", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 23, + "Paragraph": "Gender-sensitive demobilization operations Action should be taken to ensure that demobilization sites (whether temporary, semi-permanent or otherwise) respond to the different needs of men and women. Gen- der-sensitive demobilization sites should: Include separate accommodation and sanitation facilities (with locks) for men and women. In some circumstances these separate facilities may be located within the same demobilization site, or separate demobilization sites for men and women may be set up; Feature sanitary facilities designed to ensure women\u2019s privacy and support their hygiene needs (e.g., sanitary napkins), as well as take into consideration cultural norms; Include provisions for childcare; Be safe for women and recognize and deal with the threat of sexual violence with- in the demobilization site, including ensuring locks in facilities, good lighting, information provided on specific contact within the camp to address women\u2019s se- curity incidents and issues, and, where possible, the presence of female security guards and police (for internal site security). If female security guards are not available, male security guards shall be trained on sexual exploitation and harass- ment, sexual violence prevention, and gender sensitivity prior to deployment, and there shall exist a clear and gender-responsive system at the demobilization site for handling any complaints by women against security guards, as well as policies that call for the immediate removal of any officer about whom security concerns are raised; Provide for the specific nutritional needs of nursing and pregnant women; Ensure that health care and counselling is available to meet women\u2019s specific needs, including those women who have suffered SGBV; and Take protective measures to ensure women\u2019s safety during transportation to and from the demobilization sites. Where possible, female staff should receive and process women at demobiliza- tion sites. Gender balance should be a priority among the staff managing demobili- zation sites. If men do not see women in positions of authority, they are less likely to take efforts aimed at changing their atti- tudes towards traditional gender roles and women\u2019s empowerment seriously. Screen- ing and profiling tools should be designed to be responsive to women\u2019s specific needs and experiences. Women should also have the same opportunities to access support as men, and the briefings and information provided should include specific information on the challenges that women may encounter upon reinsertion into their communities. As women formerly associated with armed forces and groups are often stigma- tized upon return to their communities, briefings during the demobilization operation should include attention to safety and referrals to support services in civilian life. Irre- spective of the type of transfer modality that has been selected for reinsertion support (see section 7), the delivery mechanism (cash, vouchers, mobile money transfer) should take into account potential protection issues and gender-specific barriers. It is important that the delivery mechanism chosen permits women to access their entitlement safely and confidently, without being exposed to the risks of private service providers abus- ing their power over recipients, or encountering difficulties in the redemption of their entitlement because of numerical or financial illiteracy. A help desk and complaint mechanism should also be set up, and these should include specific referral pathways for women.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8dca6c36-0f2a-4fcd-a02c-20d3abd910ff", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 25, + "Paragraph": "Standard operating procedures Standard operating procedures (SOPs) are mandatory step-by-step instructions designed to guide practitioners through particular activities. The development of SOPs has become common practice across DDR programmes, as it allows for coherence in the delivery of activities, ensuring greater safety and security through adherence to stand- ardized regulations. In mission contexts, SOPs should identify the precise responsibili- ties of the various UN components involved in demobilization. All stakeholders should agree on the content of the SOP(s), and the document(s) should be reviewed by the UN\u2019s legal office at Headquarters. The development of SOPs is led by the mission DDR component and signed off on by the head of the UN mission. All staff from the DDR component as well as other relevant stakeholders shall be familiar with the relevant SOPs. The content of SOPs shall be kept up to date. In non-mission contexts, the national authority should also be advised by the lead UN agency(ies) on the development of national SOPs for demobilization. All those engaged in supporting demobilization shall be familiar with the relevant SOPs, which shall also be kept up to date. A single demobilization SOP or a set of SOPs each covering specific procedures related to demobilization activities (see section 6) should be informed by integrated assessments (see IDDRS 3.11 on Integrated Assessments) and the national DDR policy document, and comply with international guidelines and standards as well as national laws and the international obligations of the country where DDR is being implemented. At a minimum, SOPs should cover the following procedures: Security of demobilization sites; Reception of combatants, persons associated with armed forces and groups, and dependants; Transportation to and from demobilization sites (i.e., from reception or pick-up points); Transportation from demobilization sites either to communities or to take up positions in the reformed security sector; Orientation at the demobilization site (this may include the rules and regulations at the site); Registration/identification; Screening for eligibility; Demobilization and integration into the security sector (if applicable); Health screenings, including psychosocial assessments, HIV/AIDS, STIs, repro- ductive health services, sexual violence recovery services (e.g., rape kits), etc.; Gender-aware services and procedures; Reinsertion (e.g., procedures for cash-based transfers, commodity vouchers, in- kind support, public works programmes, vocational training and/or income- generating opportunities); Handling of foreign combatants, associated persons and dependants (if applicable); and Interaction with national authorities and/or other mission components.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "61e12986-558b-41e5-ba1b-e00f80831e7b", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 26, + "Paragraph": "Demobilization team structure The demobilization team is responsible for implementing all operational procedures for demobilization and should be trained in the use of the abovementioned SOPs. The demobilization team should include a gender-balanced composition of: DDR practitioners; Representatives from the national DDR commission (and potentially other national institutions); Child protection officers; Gender specialists; and Youth specialists.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e8acebd9-c196-4bd9-ae15-463aaa07eb11", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.20-Demobilization", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.20-Demobilization", + "PageNum": 26, + "Paragraph": "Activities during demobilization The activities outlined below should be carried out during the demobilization compo- nent of a DDR programme. These activities can be conducted at either semi-permanent or temporary demobilization sites. Screening, verification and registration Potential DDR participants shall be screened to ascertain if they are eligible to partici- pate in a DDR programme. The objectives of screening are to: Establish the eligibility of the potential DDR participant and register those who meet the criteria; Weed out individuals trying to cheat the system, for example, those attempting to demobilize more than once in the hope of receiving additional benefits, or civil- ians trying to access demobilization benefits; Identify DDR participants with specific requirements (children, youth, child mo- bilized\u2013adult demobilized, women, persons with disabilities and persons with chronic illnesses); and Depending on the context, identify foreign combatants that need to be repatriated to their home countries (see IDDRS 5.40 on Cross-Border Population Movements). When combatants and persons associated with armed forces and groups report for a DDR programme, their eligibility should be determined by a specific set of eligi- bility criteria developed by national authorities, such as membership in a specific armed force or group, possession of a weapon and/or ammunition, and/or proven ability to use a weapon (see IDDRS 4.10 on Disarmament). Whether or not an individual meets these eligibility criteria should be verified. Verification can be conducted by repre- sentatives from the armed forces and groups undergoing demobilization; the UN and national authorities, such as the national DDR commission; or joint teams. Questions touching upon the location of specific battles and military bases and the names of sen- ior group members should be asked. Without verification, military commanders may attempt to bring civilians into the DDR programme. They may also attempt to engage in recruitment just prior to the onset of DDR in order to provide benefits to followers of the group or to take a cut of the benefits being offered to these newly recruited indi- viduals. Explicitly stating the maximum number of individuals who may participate in a peace agreement or DDR policy document can limit incentives for commanders to engage in recruitment. So too can a cut-off date for eligibility. Armed forces and groups often prepare lists of their members prior to the onset of a DDR programme. Whenever lists are prepared, DDR practitioners shall ensure that a verification mechanism is in place to ensure that those listed meet the required eligibility criteria. A mechanism should also be in place to resolve disputed cases and to deal with those who are ex- cluded. Clear messaging shall be employed to ensure that armed forces and groups are aware that being named on a list does not automatically confer DDR eligibility. Once the eligibility of a particular individual has been established, his/her basic registration data (name, age, contact information, sex, etc.) should be entered into a case management system. This system can be used to track when and where DDR benefits are disbursed and to whom (see section 6.8). The data recorded in the case manage- ment system should include a biometric component where possible. Biometric systems store the unique physical features \u2013 iris, face or fingerprint data \u2013 of individuals for future reference. Biometric registration serves mainly to ensure that DDR partic- ipants do not try to \u2018game the system\u2019 by going through the DDR programme more than once to receive multiple benefits. An advantage of all biometric systems is that, if properly implemented, they are completely confidential. A unique string of letters or numbers is assigned to a photograph or fingerprint, and the original photos or prints are then discarded. Different biometric systems have different levels of cost and user friendliness. Facial recognition systems are the most sophisticated but also the most expensive. DDR practitioners using this technology will require appropriate training. Alternatively, fingerprinting is an easy and cheap way to obtain biometric data. Fin- gerprints can be taken on smart phones or mobile fingerprint scanners, and training requirements are minimal. The context in which registration takes place should be taken into account when considering biometric registration. For example, if the armed conflict was tied to civic and national honour, peer control mechanisms may be suffi- cient to ensure that individuals do not try to \u2018double dip\u2019. However, in contexts marked by distrust between the warring parties, and combatants who move from one group or conflict to another, more careful biometric monitoring may be required. The biometric registration systems established for demobilization processes can also be linked to pro- cesses of security sector integration and reform (see IDDRS 6.10 on DDR and Security Sector Reform). Immediately after eligible individuals have been registered, they should be in- formed of their rights and obligations during the DDR programme and the terms and conditions of their participation. If they agree to these terms and conditions, DDR par- ticipants should be asked to sign a terms and conditions form and be provided with a copy of this form in their chosen language (see Annex C for a sample terms and con- ditions form). Individuals shall be ineligible for DDR programmes if they have committed, or if there is a clear and reasonable indication that they knowingly committed war crimes, terrorist acts or offences, crimes against humanity and/or genocide (see IDDRS 2.11 on The Legal Framework for UN DDR). As it may not always be possible to check the criminal background of all DDR participants prior to the onset of a DDR process, due to scarcity of information or a large caseload of demobilizing individuals, background checks should begin prior to DDR and continue, where necessary, throughout the DDR programme. If evidence is found to suggest that a particular participant in the DDR programme has committed crimes, the individuals\u2019 eligibility to participate in DDR shall be revoked. These types of background checks will typically not be conducted by DDR practitioners. Instead, national criminal justice authorities would need to be involved. DDR practitioners should seek support from human rights experts who can undertake a proactive process of collecting background information from a variety of sources. For a more detailed description of this process, see IDDRS 6.20 on DDR and Transitional Justice. Reception Combatants and persons associated with armed forces and groups should be provided with clear and simple guidance when they arrive at demobilization sites, taking into consideration their level of literacy. This is to ensure that they are informed about the demobilization process, their rights during the process, and the rules and regulations they are expected to observe. If a large number of participants are being addressed, it is key to stick to simple concepts, mainly who, what and where. More complex explana- tions can be provided to smaller groups organized in follow-up to the initial briefing. This can help to prevent unrest and stress within the group. Contingent on the type of demobilization site, introductory briefings should cover, among other things, the following: Site orientation; Outline of activities and processes; Routines and time schedules; The rights and obligations of combatants and persons associated with armed forces and groups throughout the demobilization process; Rules and discipline, including areas that are off limits; Policies concerning freedom of movement in and out of the demobilization site; Policies on SGBV and the consequences of infringement of these policies; Security at the demobilization site; How to report misbehaviour, including specific mechanisms for women; Mechanisms to raise complaints about conditions and treatment at the demobili- zation site; Procedures for dependants; and Fire precautions and physical safety. Where possible, oral briefings should be supported by written material produced in the local language(s). Experience has shown that drawings and cartoons displayed at key locations within demobilization sites can also be helpful in transmitting infor- mation about the different steps of the demobilization operation. Profiling When demobilization is to be followed by reinsertion and reintegration support, then profiling should be used, at a minimum, to identify obstacles that may prevent demo- bilized individuals from full participation and to identify the specific needs and ambi- tions of males and females. Profiling should build on the information gathered prior to the onset of the DDR programme (see section 5.1) and should be used to inform, revise and better tailor existing planning and resource allocation. Profiling should include an emphasis on better understanding the reasons why these individuals joined armed forces or groups, aspirations for reintegration, what is needed for a given individual to become a productive citizen, education and technical/professional skill levels and major gaps, heath-related issues that may affect reintegration (including psychosocial health), family situation, economic status, and any other relevant information that will aid in the design of reinsertion and reintegration support. A standardized ques- tionnaire collecting quantitative and qualitative information from ex-combatants and persons formerly associated with armed forces and groups shall be developed. This questionnaire can be supported by qualitative profiling, such as assessing life skills and skills learned during armed service (for example, leadership, driving, mainte- nance/repair, construction, logistics). DDR practitioners should be aware that profiling may lead to raised expectations, especially if ex-combatants and persons formerly asso- ciated with armed forces and groups interpret questions about what they want to do in civilian life as promises of future support. DDR practitioners should therefore clearly explain the purpose of the profiling survey (i.e., to better tailor subsequent support) and inform participants of the limitations of future support. A sample profiling ques- tionnaire can be found in Annex D. Health screening During demobilization, individuals should be directed to a doctor or medical team for physical and pyschosocial health screening. Both general and specific health needs should be assessed (see IDDRS 5.70 on Health and DDR and IDDRS 5.80 on Disabil- ity-Inclusive DDR). Medical screening facilities shall ensure privacy during physical check-ups. Those who require immediate medical attention of a kind that is not avail- able at the demobilization site shall be taken to hospital. Others shall be treated in situ. Basic specialized attention in the areas of reproductive health and sexually transmitted infections, including voluntary testing and counselling for HIV/AIDS, shall be provided (see IDDRS 5.60 on HIV/AIDS). Reproductive health education and materials shall be provided to both men and women. Possible addictions (such as to drugs and/or alcohol) shall also be assessed and specific provisions provided for follow-up care. Psychoso- cial screening for mental health issues, including post-traumatic stress, shall be initi- ated at sites with available counselling support for initial consultation and referral to appropriate services. Although the demobilization period will not be long enough to sufficiently address these issues, DDR practitioners shall support ex-combatants and persons formerly associated with armed forces and groups to continue to access treat- ment throughout subsequent stages of the DDR programme and closely liaise with re- integration practitioners to ensure that data collected is utilized to design appropriate reintegration interventions. This can be done, for example, through an Information, Counselling and Referral System (see section 6.8). Awareness raising and sensitization Demobilization operations provide an opportunity to offer individuals information that can practically and psychologically prepare them for the transition from military to civilian life. For example, if demobilized individuals are to receive reinsertion sup- port (cash, vouchers, in-kind support, public works programmes, etc.), then the modal- ities of this support should be clearly explained. Furthermore, if reinsertion assistance is to be followed by reintegration support, orientation sessions should include infor- mation on the opportunities and support services available as part of the reintegration programme and how these can be accessed. Awareness-raising materials and educational sessions should leverage opportu- nities to promote healthy, non-violent gender identities, including fatherhood, and to showcase men and women in equal roles in the community. Materials shall also be visually representative of different reli- gious, ethnic, and racial compositions of the community and promote social cohe- sion among all groups and genders. Con- versely, misinformation, disinformation and the creation of false expectations can undermine the reinsertion and reintegra- tion efforts of DDR programmes. Accurate information should be provided by the DDR team and partners (also see IDDRS 4.60 on Public Information and Strategic Commu- nication in Support of DDR). Those about to leave the demobilization site should be provided with counselling on what to expect regarding their changed status and role in society, and what they can do if they are stigmatized or not accepted back by their communities. They should also receive advice on political and legal issues, civic and community responsibilities, recon- ciliation initiatives and logistics for transportation when they leave the demobilization site. Demobilized individuals and their dependants may be reluctant to return to their home areas if members of their former group (or a different group) remain active in the region. This is because they may fear retaliation against themselves and/or their fami- lies. This possibility should be addressed through a security and risk assessment (see section 5.5). When retaliation is a possibility, those affected should be informed of the risks and supported to find alternative accommodation in a different location (if they so choose). Where possible, specialized confidential counselling should be offered, to avoid peer pressure and promote the independence of each demobilized individual. Sensitization sessions can be an essential part of supporting the transition from military to civilian life and preparing DDR participants for their return to families and communities. Core sensitization may include sessions on: Reproductive health, including HIV/AIDS and STI awareness raising; Psychosocial education and awareness raising, including the symptoms associated with post-traumatic stress, destigmatizing experiences, education on managing stress responses, navigating discussions with families and host communities, and when to seek help; Conflict resolution, non-violent communication and anger management; Human rights, including women\u2019s and children\u2019s rights; Parenting, for both fathers and mothers; Gender, for both men and women, including discussion on gender identities and how they may be impacted by the conflict, as well as roles and responsibilities in armed forces and groups and in the community (see IDDRS 5.10 on Women, Gender and DDR); and First aid or other key skills. See Module 5.10 on Women, Gender and DDR for additional guidance on SGBV mitigation and response during demobilization. Documentation DDR participants shall be registered and issued a non-transferable identity document (such as a photographic demobilization card) that attests to their eligibility and their official civilian status. Such documents have important symbolic and legal value for demobilized individuals. Demobilized individuals should be required to present them in order to access DDR-related entitlements in subsequent phases of the DDR pro- gramme. To avoid discrimination based on prior factional affiliation, these documents should not include the name of the armed force or group of which the individual was previously a member. Wherever demobilization is carried out, whether in temporary or semi-permanent sites, provisions should be made to ensure that information can be entered into a case management system and that demobilization papers/identity doc- uments can be printed on site. Transportation DDR practitioners may provide transport to DDR participants to assist them to return to their communities. The logistical implications of providing transport must be taken into account. It will not be possible for all ex-combatants and persons formerly associat- ed with armed forces and groups to be transported to their final destination. A mixture of transport to certain key locations and funding for onward transport may therefore be required. Cash for transport may be given as part of transitional reinsertion assis- tance (see section 7). Specific attention shall be paid to the safe transport of women and minorities to their final destination, recognizing the unique security threats they may face. If transport is provided in UN vehicles, authorizations from UN administration and waivers for passengers need to be signed. DDR practitioners should arrange pre- signed authorizations and waivers in order to avoid last-minute blockages and delays. Alternatively, private companies and/or other implementing partners may be subcon- tracted to provide transport. In cases where it is necessary to repatriate foreign ex-combatants and persons formerly associated with armed forces and groups, transportation arrangements will need to be adjusted to involve national authorities from these individuals\u2019 countries of origin as well as other sub-regional organizations and mechanisms (see IDDRS 5.40 on Cross-Border Population Movements). Case Management Information from the demobilization operation (registration data, information related to screening and profiling, etc.), should be recorded in a secure case management system (or \u2018database\u2019). A case management system enables DDR practitioners to track assis- tance and progress at the individual level, and to analyse the data as a whole to iden- tify good practices; flag problem areas; and understand how geography, gender and other variables influence demobilization and reintegration outcomes (see IDDRS 3.50 on Monitoring and Evaluation of DDR Processes). DDR case management systems shall be the property of the national Government but may sometimes be managed by the United Nations and handed over to the national authorities when the DDR process is complete. Which stakeholders and individuals have access to all (or some) of the data in the case management system should be agreed upon when the system is established so that necessary data protections (such as different levels of password protection) can be built in. The establishment of an effective and reliable means of case management is es- sential to the entire DDR programme, and is necessary to track the reinsertion and reintegration of DDR participants and fol- low up on protection and human rights is- sues. A good-quality case management system should be installed, tested and secured before DDR programmes begin. This system should be mobile, suitable for use in the field, cross-referenced and able to provide DDR teams with a clear aggregate picture of the DDR programme (including how many individuals have been processed). In all cases, security and data protections are imperative, but this is especially true in set- tings where armed groups remain active. In these settings, if information containing the names and locations of demobilized individuals is leaked, these individuals may find themselves subject to forcible re-recruitment. If appropriate, DDR practitioners can consider an Information, Counselling and Referral System (ICRS). An ICRS stores data not only on the reintegration intentions of ex-combatants and persons formerly associated with armed forces and groups, but on available services and reintegration opportunities, which should be mapped prior to reintegration (see IDDRS 4.30 on Reintegration). By mapping and regularly updating referral information, DDR practitioners can identify critical gaps in service delivery and take steps to address these gaps, for example, by investing in existing services to strengthen their capacities, advocating to remove access barriers for DDR participants and providing direct assistance. ICRS caseworkers should be trained in basic counselling techniques and refer demobilized individuals to services/opportunities, including peacebuilding and recov- ery programmes, governmental services, potential employers and community-based support structures. Counselling involves the identification of individual needs and capabilities, and may lead to a wide variety of referrals, ranging from job placement to psychosocial assistance to voluntary testing for HIV/AIDS (see IDDRS 5.60 on HIV/ AIDS and DDR). Integrating specific questions on psychosocial screening, health and gender is pivotal to understanding the specific needs of men and women and defining appropriate reintegration interventions. The usefulness of an ICRS hinges on having trained ICRS caseworkers with whom ex-combatants can regularly and easily commu- nicate. Female caseworkers should provide information, counselling and referral ser- vices to female DDR participants. By actively seeking the feedback of DDR participants on programmes and services, the counselling relationship fosters accountability. If an ICRS is to be used, it should be established as soon as possible during demobilization and continued throughout the DDR programme. Reinsertion: Provision of transitional assistance Reinsertion support is transitional assistance provided as part of a DDR programme and is the second step of demobilization. It aims to provide ex-combatants and persons formerly associated with armed forces and groups with support to meet their immediate needs and those of their dependants, until they are able to enter a reintegration pro- gramme. Reinsertion assistance should be planned to pave the way for reintegration support and should consist of time-bound, basic benefits delivered for up to 12 months. In mission settings, reinsertion assistance may be funded from the UN peacekeeping operation\u2019s assessed budget. This kind of transitional assistance may be provided in a number of different ways, including: Cash-based transfers; Commodity vouchers; In-kind support; and Public works programmes Cash-based transfers include cash; digital transfers, such as payments made to mobile phones (\u2018mobile money transfers\u2019); and value vouchers. Value vouchers \u2013 also known as gift cards or stamps \u2013 provide access to commodities for a given mon- etary amount and can often be used in predetermined locations, including selected shops. Vouchers may also be commodity-based \u2013 i.e., tied to a predefined quantity of given commodities, for example, food (see IDDRS 5.50 on Food Assistance in DDR). Commodities may also be provid- ed directly as in-kind support. In-kind support may take various forms, includ- ing food or \u2018reinsertion kits\u2019. The latter are often composed of materials linked to job training or future employment, such as fishing kits and agricultural tools. Finally, public works programmes cre- ate temporary opportunities for demobilized individuals to receive cash, vouch- ers or food/other commodities as part of a reinsertion package. In some cases, re- insertion support may also be provided in the form of vocational training and/ or income-generating opportunities. For guidance on these latter two options, see IDDRS 4.30 on Reintegration. Cash There are many benefits associated with the provision of reinsertion assistance in the form of cash. Not only can the recipients of cash determine their own needs, but the ability to do so is a fundamental step towards empowerment. Cash can also be an effi- cient way to deliver support because it entails lower transaction and logistics costs than in-kind assistance, particularly in terms of transportation and storage. Less stigma may be attached to cash, which, compared with in-kind assistance or vouchers, is less visi- ble to non-recipients. Providing cash to ex-combatants and persons formerly associat- ed with armed forces and groups can also reduce the burden on the households and communities that receive these individuals. If a banking system is operational, cash can be paid directly into recipients\u2019 bank accounts, thereby reducing the security risks involved in cash distribution and, at the same time, strengthening the local banking system. The provision of cash may also have beneficial knock-on effects for local mar- kets and trade. Prior to the provision of cash pay- ments, DDR practitioners shall conduct a review of the local economy\u2019s capacity to absorb cash inflation. This is because the injection of cash into one locality can cause local prices to rise and adversely affect non-recipients living in the area. DDR practitioners shall also review the goods available on the local market. This is because cash will be of little utility in places where the commodities that people require (such as tools, equipment and food) are unavailable locally. DDR practitioners shall seek to avoid the perception that cash is being provided as payment for weapons (\u2018buy-back\u2019) or in return for demobilization. If combatants perceive that they are paid and rewarded for their participation in a DDR programme, this may lead to expecta- tions that cannot be met, perhaps sparking unrest. One option to avoid this percep- tion is to pay cash only when demobilized individuals leave demobilization sites and return to their communities, not at earlier stages of the DDR programme. The common concern that cash is often misused, and used to purchase alcohol and drugs, is, for the most part, not borne out by the evidence. Any potential misuse can be reduced through decisions related to targeting and conditionality. For example, household control over the way that cash is spent can be supported by providing cash to the families of ex-combatants, rather than ex-combatants alone. Ex-combatants and their wives/husbands can also be asked to sign a contract that leads to the release of cash. This contract can outline how the money is supposed to be spent and would require follow-up to check that the goods purchased comply with the terms of this contract. Basic literacy and financial education should be provided alongside cash pay- ments, as this can also help to reduce the risk that cash is misused. Providing cash is sometimes seen as posing security risks both for the staff that transport large amounts of money and for recipients. This is because cash is prone to diversion, capture by elites and seizure by armed groups, particularly in settings where corruption is high and armed conflict is ongoing. This is especially true for cash payments that are distributed at regular times at publicly known locations. Mili- tary commanders may also try to confiscate reinsertion payments from ex-combatants that were formerly under their control. Women and more vulnerable participants such as persons with disabilities, those with chronic illnesses and the elderly are at an in- creased risk for confiscation of payments and/or intimidation or threats. Cash transfers may also be hampered by the absence of banks in some parts of the country, and banks may be slow to process payments and have strict requirements in terms of identifica- tion documents. These requirements may, in some instances, lead to delays. Digital payments, such as over-the-counter and mobile money payments, may help to circumvent these problems by offering new and discreet opportunities to distrib- ute cash. Preliminary evidence indicates that distributing cash through mobile money transfers has a positive impact because it does not require that the recipient has a bank account, and because recipients spend less time traveling to cash pick-up points and waiting for their transfer. Recipients can also cash out small amounts of their payment as and when needed and/or store money on their mobile wallet over the long term. In order to benefit from mobile money transfers, recipients need to be in the pos- session of a mobile phone or, at a minimum, a SIM card that can be used in a mo- bile phone that is shared with others. The recipient will also need to reside in an area (or close to an area) where there are mobile network coverage and accessible cash-out points or agents. It is also necessary to ensure that agents have sufficient cash on hand in order to make the payment. The agents will need to be monitored to ensure that they adhere to previously agreed-upon standards. It is also important to ensure that recip- ients are not subjected to coercion or undue pressure by the agent to use their cash to buy goods in the agent\u2019s store. Finally, new users of digital payments may need to be educated in how to use them and should, where possible, be provided with accompa- nying literacy training and financial education. Vouchers and in-kind support Value and/or commodity vouchers may be used together with or instead of cash. Sev- eral factors may prompt this choice, including donor constraints, security concerns surrounding the transportation of large amounts of cash, market weakness and/or a desire to ensure that a particular type of good or commodity is purchased by the recip- ients.2 Vouchers may be more effective than cash if the objective is not just to transfer income to a household, but to meet a particular goal. For example, if the goal is to im- prove nutrition, then a commodity voucher may be linked to a specific type of food (see IDDRS 5.50 on Food Assistance in DDR). In some cases, vouchers may also be linked to specific services, such as health care, as part of the reinsertion package. Vouchers can be designed to help ex-combatants and persons formerly associated with armed forces and groups meet their familial responsibilities. For example, vouchers can be designed so that they are redeemable at schools and shops and can be used to cover school fees or to purchase books or uniforms. Voucher systems generally require more planning and preparation than the distribution of cash, including agreements with traders so that vouchers can be exchanged easily. Setting up such a system may be challenging if local trade is mainly informal. Although giving value vouchers or cash may be preferable when local prices are declining, recipients are protected from price increases when they receive commodity vouchers or in-kind support. Many past DDR programmes have provided in-kind support through the provision of reinsertion kits, which often include clothing, eat- ing utensils, sanitary napkins for women, diapers, hygiene materials, basic household goods, seeds and tools. While such kits may be useful if certain items are not easily available on the local market, if not well tailored to the local job market demobi- lized individuals may simply resell these kits at a lower market value in order to receive the cash that is required to meet more pressing and specific needs. In countries with limited infrastructure, the delivery of in-kind support may be very challenging, particularly during the rainy season. Delays may lead to unrest among demobilized individuals waiting for benefits. Ex-com- batants and persons formerly associated with armed forces and groups may also allege that the kits are overpriced and that the items they contain could have been sourced more cheaply from elsewhere if they were instead given cash. Public works programmes The work that is conducted as part of a public works programme is labour intensive and aims to build or rehabilitate public/community assets and infrastructure that are vital for sustaining the livelihoods of a community and create immediate job opportu- nities for former members of armed forces and groups and members of the community. Examples are the rehabilitation and maintenance of roads, improving drainage, water supplies and sanitation, demining, or environmental work including the planting of trees. In return for their participation in a public works programme, demobilized indi- viduals and community members receive income in the form of cash, vouchers or in- kind assistance (food or other commodities) and on-the-job training. Public works pro- grammes may be favoured over cash, vouchers or in-kind transfers alone, because the creation or rehabilitation of community assets may provide communities with better protection against future negative shocks, such as rising food prices or drought. In ad- dition, by maintaining ex-combatant support networks for a short period of time, this approach may soften the otherwise abrupt transition from military to civilian life. It ensures that incomes are maintained as demobilized individuals are re-entering their communities. Furthermore, by enabling former members of armed forces and groups to contribute to the rebuilding of their communities, public works programmes pro- vide training opportunities and may encourage reconciliation and community accept- ance of demobilized individuals, and may ease the reintegration process. Public works programmes must be preceded by needs and feasibility assess- ments. The willingness of civilians, ex-combatants and persons formerly associated with armed forces and groups to undertake this kind of work must also be assessed. Public works programmes should only be implemented when markets are functioning (although this is not necessary for food for work programmes); when cash for work activities will not interfere with already-existing livelihood practices; and when the assets and infrastructure to be built or rehabilitated will meet the basic needs of the target population, be useful to the community and can be maintained. Additional key questions for determining the appropriateness of public works programmes include: Is there sufficient useful work available? Is the security situation conducive to public works programmes? What are the risks for demobilized participants? Would public works programmes disrupt traditional community practices that value unpaid collective work for the community? Are both men and women interested in participating in public works programmes? Are there any specific cultural considerations? What is the attitude of the community towards paid labour? Will public works programmes compete with local labour and disrupt seasonal activities? Do work activities vary by season? Do demobilized participants require training and/or equipment to conduct the work? Salaries for participation in public works programmes shall consider what is re- quired in order to meet the basic needs of ex-combatants and persons formerly asso- ciated with armed forces and groups. The minimum wage in the programme location shall also be taken into account, together with the total number of days of work to be completed and the benefits being offered by other providers. If demobilized partici- pants assume different tasks \u2013 e.g., some manage small teams \u2013 then differential wage criteria should be considered, corresponding to level of responsibility. DDR practition- ers shall also decide whether wages are to be time based (a daily or weekly wage) or output based (tied to the accomplishment of a particular task). Time-based wages require close monitoring to ensure that individuals complete a pre-defined number of hours of work. Output-based wages can help to avoid a situation in which workers deliberately prolong the programme. Wage levels shall be regularly reviewed and shall not be so high as to distort the local economy, for example, by causing a steep increase in local prices. When planning public works programmes, DDR practitioners shall carefully assess the barriers to participation for demobilized individuals who are unable to engage in labour-intensive work because they are elderly, are disabled or suffer from chronic illnesses. In these cases, additional alternative assistance measures, such as the direct provision of cash transfers, vouchers or in-kind support should be consid- ered. DDR practitioners shall also identify obstacles that prevent the participation of women formerly associated with armed forces and groups. For example, in contexts where employment is in short supply and labour-intensive jobs are usually reserved for men, it may be difficult for women to gain access to public works programmes. It may also be difficult for women to take on additional work, particularly if they are already managing households and childcare responsibilities. Measures should be taken to address these obstacles, such as providing flexible work schedules and childcare facilities close to public works sites. While women should be encouraged to participate in public works programmes, if they choose, direct cash transfers, vouchers and in-kind support may be considered instead. Determining transfer modality As explained above, cash, vouchers and in-kind support can be provided as part of a public works programme or as stand-alone reinsertion support. DDR practitioners should choose whether to use one of these transfer modalities (e.g., cash), or a mix of cash, vouchers and/or in-kind support. At a minimum, the choice of a particular mo- dality or combination of modalities should be based on: The preference of recipients; The ability of markets to supply goods at an appropriate price and quality; The access of DDR participants to local markets; The predicted effectiveness of different transfers in meeting the desired outcome; The timeliness in which transitional reinsertion assistance can be delivered; Time to delivery; The potential negative impacts of different types of transfers; The potential benefits of different types of transfers; The comparative efficiency and cost of different types of transfers; The risks associated with different types of transfers; The protection risks related to gender; The capacity of different organizations to deliver transfers; The availability of reliable delivery mechanisms; and Potential links to social protection programming. When an appropriate transfer modality has been decided upon, DDR practitioners shall also consider whether reinsertion assistance should be given as one-off support or paid in instalments. One preferred approach is payment by instalments that de- crease over time, thereby reducing dependency and clearly establishing that assistance is strictly time limited. DDR practitioners shall also consider whether all demobilized individuals should be provided with the same amount of assistance or whether different amounts should be given to different individuals on the basis of pre-defined criteria such as rank, number of dependants, length of service, reintegration location (urban or rural) and/or level of disability. If differentiating criteria are adopted, they should be transparent, clearly communicated and based on needs identified through careful profiling (see section 6.3). Finally, a non-corruptible identification system must be established during demo- bilization that will allow former combatants to receive their reinsertion assistance. The payment list needs to be complete and accurate, former combatants should be reg- istered and provided with a non-transferable photographic ID, and benefits should be tracked through a DDR database or case management system. For information on registration and identity documents, see sections 6.2 and 6.6; for information on case management, see section 6.8. As much as possible, the value of reinsertion assistance should be similar to the standard of living of the rest of the population and be in line with assistance provided to other conflict-affected populations such as refugees or internally displaced persons. This is to avoid the perception that ex-combatants and persons formerly associated with armed forces and groups are receiving special treatment. It is also to avoid creat- ing a disincentive to find employment. Irrespective of the type of transfer modality selected, the delivery mechanism (cash, vouchers, mobile money transfer) should take into account potential protection issues and gender-specific barriers. For guidance on cash, voucher and in-kind assistance to children, as well as the participation of children in public works programmes, see IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4821189e-3b48-4be6-934e-d6ef90f1ed86", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": null, + "Paragraph": "Summary Public information and strategic communication (PI/SC) are key support activities that are instrumental in the overall success of DDR processes. Public information is used to inform DDR participants, beneficiaries and other stakeholders of the process, while strategic communication influences attitudes towards DDR. If successful, PI/SC strat- egies will secure buy-in to the DDR process by outlining what DDR consists of and encouraging individuals to take part, as well as contribute to changing attitudes and behaviour. A DDR process should always be accompanied by a clearly articulated PI/SC strategy. As DDR does not occur in a vacuum, the design, dissemination and planning of PI/SC interventions should be an iterative process that occurs at all stages of the DDR process. PI/SC interventions should be continuously updated to be relevant to political and op- erational realities, including public sentiment about DDR and the wider international effort to which DDR contributes. It is crucial that DDR is framed and communicated carefully, taking into account the varying informational requirements of different stake- holders and the various grievances, perceptions, culture, biases and political perspec- tives of DDR participants, beneficiaries and communities. An effective PI/SC strategy should have clear overall objectives based on a careful assessment of the context in which DDR will take place. There are four principal objec- tives of PI/SC: (i) to inform by providing accurate information about the DDR process; to mitigate the potential negative impact of inaccurate and deceptive information that may hamper the success of DDR and wider peace efforts; (iii) to sensitize mem- bers of armed forces and groups to the DDR process; and (iv) to transform attitudes in communities in such a way that is conducive to DDR. PI/SC should make an important contribution towards creating a climate of peace and security, as well as promote gender- equitable norms and non-violent forms of masculinities. DDR practitioners should sup- port their national counterparts (national Government and local authorities) to define these objectives so that activities related to PI/SC can be conducted while planning for the wider DDR process is ongoing. PI/SC as part of a DDR process should (i) be based on a sound analysis of the context, conflict and motivations of the many different groups at which these activities are directed; (ii) make use of the best and most trusted local methods of communication; and (iii) ensure that PI/SC materials and messages are pre-tested on a local audience and subsequently closely monitored and evaluated.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "009b38a8-4012-4de3-81fb-a858d96f9b48", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module aims to present the range of objectives, target groups and means of com- munication that DDR practitioners may choose from to formulate a PI/SC strategy in support of DDR, both at the field and headquarters levels. The module includes guidance, applicable to both mission and non-mission settings, on the planning, design, implementation and monitoring of a PI/SC strategy.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "21cf2e7f-79ab-44dc-8f1f-e06edd666d9f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Public information seeks to provide relevant and factually accurate information to a specific audience. Strategic communication involves persuading an identified audience to adopt a de- sired behaviour. Disinformation: The deliberate dissemination of false information. It is an act of de- ception to convince an audience of something. Disinformation is intended to mislead. Misinformation: Giving erroneous or incorrect information. It is false or inaccurate information that is spread unintentionally.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "cd31a3e4-b923-48c5-bf85-5e5f3f16cf44", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 4, + "Paragraph": "Introduction DDR is a process that requires the involvement of multiple actors, including the Government or legitimate authority and other signatories to a peace agreement (if one is in place); combatants and persons associated with armed forces and groups, their dependants, receiving communities and youth at risk of recruitment; and other regional, national and international stakeholders. Attitudes towards the DDR process may vary within and between these groups. Potential spoilers, such as those left out of the peace agreement or former commanders, may wish to sabotage DDR, while others will be adamant that it takes place. These dif- fering attitudes will be at least partly determined by individuals\u2019 levels of knowledge of the DDR and broader peace process, their personal expectations and their motiva- tions. In order to bring the many different stakeholders in a conflict or post-conflict country (and region) together in support of DDR, it is essential to ensure that they are aware of how DDR is meant to take place and that they do not have false expectations about what it can mean for them. Changing and managing attitudes and behaviour \u2013 whether in support of or in opposition to DDR \u2013 through information dissemina- tion and strategic communication are therefore essential parts of the planning, design and implementation of a DDR process. PI/SC plays an important catalytic function in the DDR process, and the conceptualization of and preparation for the PI/SC strategy should start in a timely manner, in parallel with planning for the DDR process. The basic rule for an effective PI/SC strategy is to have clear overall objectives. DDR practitioners should, in close collaboration with PI/SC experts, support their national and local counterparts to define these objectives. These national counter- parts may include, but are not limited to, Government; civil society organizations; media partners; and other entities with experience in community sensitization, community engagement, public relations and media relations. It is important to note, however, that PI activities cannot compensate for a faulty DDR process, or on their own convince people that it is safe to enter the programme. If combatants are not willing to disarm, for whatever reason, PI alone will not persuade them to do so. DDR practitioners should keep in mind that PI/SC should be aimed at a much wider audience than those people who are directly involved in or affected by the DDR process within a particular context. PI/SC strategies can also play an essential role in building regional and international political support for DDR efforts and can help to mobilize resources for parts of the DDR process that are funded through voluntary donor contributions and are crucial for the success of reintegration programmes. PI/ SC staff in both mission and non-mission settings should therefore be actively involved in the preparation, design and planning of any events in-country or elsewhere that can be used to highlight the objectives of the DDR process and raise awareness of DDR among relevant regional and international stakeholders. Additionally, PI can play an important role in encouraging a holistic view of the challenges of rebuilding a nation and can serve as a major tool in advocacy for gender equality and inclusiveness, which form part of DDR (also see IDDRS 2.10 on the UN Approach to DDR and IDDRS 5.10 on Women, Gender and DDR). The role of national authorities is also critical in public information. DDR must be nationally-led in order to build the foundation of long-term peace. Therefore, DDR practitioners should ensure that relevant messages are approved and transmitted by national authorities. Communication is rarely neutral. This means that DDR practitioners should con- sider how messages will be received as well as how they are to be delivered. Culture, custom, gender, and other contextual drivers shall form part of the PI/SC strategy de- sign. Information, disinformation and misinformation are all hallmarks of the conflict settings in which DDR takes place. In times of crisis, information becomes a critical need for those affected, and individuals and communities can become vulnerable to misinformation and disinformation. Therefore, one objective of a DDR PI/SC strategy should be to provide information that can address this uncertainty and the fear, mis- trust and possible violence that can arise from a lack of reliable information. Merely providing information to ex-combatants, persons formerly associated with armed forces and groups, dependants, victims, youth at risk of recruitment and conflict-affected communities will not in itself transform behaviour. It is therefore im- portant to make a distinction between public in- formation and strategic communication. Public information is reliable, accurate, objective and sincere. For example, if members of armed forces and groups are not provided with such infor- mation but, instead, with confusing, inaccurate and misleading information (or promises that cannot be fulfilled), then this will undermine their trust, willingness and ability to participate in DDR. Likewise, the information communicated to communities and other stakeholders about the DDR process must be factually correct. This information shall not, in any case, stigmatize or stereotype former members of armed forces and groups. Here it is particularly important to acknowledge that: (i) no ex-combatant or person formerly associated with an armed force or group should be assumed to have a natural inclination towards violence; (ii) studies have shown that most ex-combatants do not (want to) resort to violence once they have returned to their communities; but (iii) they have to live with preconceptions, distrust and fear of the local communities towards them, which further marginalizes them and makes their return to civilian life more difficult; and (iv) female ex-combatants and women asso- ciated with armed forces and groups (WAAFAG) and their children are often stigmatized, and may be survivors of conflict-related sexual violence and other grave rights violations. If public information relates to activities surrounding DDR, strategic communi- cation, on the other hand, needs to be understood as activities that are undertaken in support of DDR objectives. Strategic communication explicitly involves persuading an identified audience to adopt a desired behaviour. In other words, whereas public infor- mation seeks to provide relevant and factually accurate information to a specific audi- ence, strategic communication involves complex messaging that may evolve along with the DDR process and the broader strategic objectives of the national authorities or the UN. It is therefore important to systematically assess the impact of the communicated messages. In many cases, armed forces and groups themselves are engaged in simi- lar activities based on their own objectives, perceptions and goals. Therefore, strategic communication is a means to provide alternative narratives in response to rumours and to debunk false information that may be circulating. In addition, strategic communication has the vital purpose of helping communities understand how the DDR process will involve them, for example, in programmes of community violence reduction (CVR) or in the reintegration of ex-combatants and persons formerly associated with armed forc- es and groups. Strategic communication can directly contribute to the promotion of both peacebuilding and social cohesion, increasing the prospects of peaceful co- existence between community members and returning former members of armed trategic communication is a means to provide alter- native narratives in response to rumours and to de- bunk false information that may be circulating. forces and groups. It can also provide alternative narratives about female returnees, mitigating stigma for women as well as the impact of the conflict on mental health for both DDR participants and beneficiaries in the community at large.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "8d69dfd2-9a0c-47cf-9fea-6dc040a9363c", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 7, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to PI/SC strategies for DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8becb402-fea0-4ab5-9c6d-b46019f99e4d", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 7, + "Paragraph": "People-centred DDR practitioners shall manage expectations concerning the DDR process by being clear, realistic, honest, communicative and consistent about what DDR can and cannot deliver. The PI/SC strategy shall focus on the national (and, where applicable, regional) stake- holders, participants and beneficiaries of the DDR process, i.e., ex-combatants, persons associated with armed forces and groups, dependants, receiving communities, parties to the peace agreement, civil society, local and national authorities, and the media.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f8f4105a-d7cf-48df-9e2d-beed9774f864", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 7, + "Paragraph": "Unconditional release and protection of children Children associated with armed forces and groups and their caregivers shall be provided with child-friendly, age-appropriate and gender-sensitive information about DDR. Infor- mation should be provided to children on access to justice and reparation, and on their rights to be free from discrimination and to be safe and protected from violence and abuse. Children should also be informed of the services and support available to them, how to access this support and the procedures to access safe complaint mechanisms and judicial recourse. PI/SC strategies developed as part of a DDR process shall include provisions for disseminating messages on the rights of children and the consequences that armed forces and groups will face if engaging in child recruitment, including messages that dismantle stigma and ostracization by the child\u2019s family or home community (noting that stigma can be imposed disproportionately on girls). Communities, local authorities and police shall also be provided with information and training on how to assist children who have exited or been released from armed forces and groups and which protocols apply to en- sure their protection and safe handover to child protection services. The personal infor- mation of children shall never be shared for the purposes of PI/SC, and all information gathered from children shall be treated according to the requirements of confidentiality.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "09730206-ff1a-464d-8852-7176cf592204", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 8, + "Paragraph": "Gender-responsive and inclusive PI/SC messages shall take into consideration the needs and interests of women and girls, who play a central role in peacebuilding at the community level. Female ex-com- batants and other WAAFAG must be informed about their eligibility for DDR and any special programmes for them, which may require specific strategies and approaches. PI/SC messages shall also encourage the participation of women and girls in the DDR process. DDR practitioners shall strive to ensure that key messages, communications material and information campaigns are gender responsive, taking into account the need for tailored messaging that addresses the specific needs of women, men, boys and girls. They shall also leverage opportunities to support gender-transformative norms and women\u2019s empowerment. Specific attention should be paid to developing gender-responsive information strategies that can play an important role in the rein- tegration and return of women by mitigating their stigmatization and contributing to community sensitization.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "2d4d95d4-1d3e-4688-aad5-eee3cd4e0f3f", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 8, + "Paragraph": "Conflict sensitive DDR practitioners shall base any and all strategic communications interventions \u2013 for example, to combat misinformation and disinformation \u2013 on clear conflict analysis. Strategic communications have a direct impact on conflict dynamics and the percep- tions of armed forces and groups, and shall therefore be carefully considered. \u2018Do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. No false promises shall be made through the PI/SC strategy.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "0184be41-3c5f-4ef5-b7bd-918208715112", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 8, + "Paragraph": "Context specific To increase the effectiveness of a PI/SC strategy, DDR practitioners shall consider cultural factors and levels of trust in different types of media. PI/SC strategies shall be responsive to new political, social and/or technological developments, as well as changes within the DDR process as it evolves. DDR practitioners shall also take into account the accessibility of the information provided. This includes considerations related to both the selection of media and choice of language. All communications methods shall be designed with an understanding of potential context-specific barriers, including, for example, the remoteness of combatants and persons associated with armed forces and groups. Messages should be tested before dissemination to ensure that they meet the above-mentioned criteria.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc3291e4-b546-44d4-a27d-b103dbaa3bd6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 8, + "Paragraph": "Nationally and locally owned DDR practitioners shall ensure that PI/SC strategies are nationally and locally owned. National authorities should lead the implementation of PI/SC strategies. National own- ership ensures that DDR programmes, DDR-related tools and reintegration support are informed by an understanding of the local context, the dynamics of the conflict, and the dynamics between community members and former members of armed forces and groups. National ownership also ensures that PI/SC strategies are culturally and con- textually relevant, especially with regard to the PI/SC messages and communication tools used. In both mission and non-mission contexts, UN practitioners should coordi- nate closely with, and provide support to, national actors as part of the larger national PI/SC strategy. When combined with UN support (e.g. technical, logistical), national ownership encourages national authorities to assume leadership in the overall transi- tion process. Additionally, PI/SC capacities must be kept close to central decision-mak- ing processes, in order to be responsive to the prerogatives of the DDR process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6fb94c70-c0fe-4dd0-a011-f2962a139bd2", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 9, + "Paragraph": "Objectives of PI/SC in support of DDR A PI/SC strategy should outline what the DDR process in the specific context con- sists of through public information activities and contribute to changing attitudes and behaviour through strategic communication interventions. There are four overall objectives of PI/SC: To inform stakeholders about the DDR process (public information): This includes providing tailored key messages to various stakeholders, such as where to go, when to deposit weapons, who is eligible for DDR and what reinte- gration options are available. The result is that DDR participants, beneficiaries and other stakeholders are made fully aware of what the DDR process involves. This kind of messaging also serves the purpose of making communities understand how the DDR process will involve them. Most importantly, it serves to manage expectations, clearly defining what falls within and outside the scope of DDR. If the DDR process is made up of different combinations of DDR programmes, DDR-related tools or reintegration support, messages should clearly define who is eligible for what. Given that, historically, women and girls have not always received the same information as male combatants, as they may be purpose- ly hidden by male commanders or may have \u2018self-demobilized\u2019, it is essential that PI/SC strategies take into consideration the specific information channels required to reach them. It is important to note, however, that PI activities cannot compensate for a faulty DDR process, or on their own convince people that it is safe to participate. If combatants are not willing to disarm, for whatever reason, PI alone will not persuade them to do so. In such sitatutions, strategic communi- cations may be used to create the conditions for a successful DDR process. To mitigate the negative impact of misinformation and disinformation (strategic communication): It is important to understand how conflict actors such as armed groups and other stakeholders respond, react to and/or provide alter- native messages that are disseminated in support of the DDR process. In the volatile conflict and post-conflict contexts in which DDR takes place, those who profit(ed) from war or who believe their political objectives have not been met may not wish to see the DDR process succeed. They may have access to radio stations from which they can make broadcasts or may distribute pamphlets and other materials spreading \u2018hate\u2019 or messages that incite violence and undermine the UN and/or some of the (former) warring parties. These spoilers likely will have access to online platforms, such as blogs and social media, where they can easily reach and influence a large number of people. It is therefore critical that PI/SC extends beyond merely providing information to the public. A com- prehensive PI/SC strategy shall be designed to identify and address sources of misinformation and disinformation and to develop tailored strategic commu- nication interventions. Implementation should be iterative, whereby messages are deployed to provide alternative narratives for specific misinformation or disinformation that may hamper the implementation of a DDR process. To sensitize members of armed forces and groups to the DDR process (strategic communication): Strategic communication interventions can be used to sensitize potential DDR participants. That is, beyond informing stakeholders, beneficiar- ies and participants about the details of the DDR process and beyond mitigating the negative impacts of misinformation and disinformation, strategic commu- nication can be used to influence the decisions of individuals who are consider- ing leaving their armed force or group including providing the necessary infor- mation to leave safely. The transformative objective of strategic communication interventions should be context specific and based on a concrete understanding of the political aspects of the conflict, the grievances of members of armed forces and groups, and an analysis of the potential motivations of individuals to join/ leave warring parties. Strategic communication interventions may include mes- sages targeting active combatants to encourage their participation in the DDR process, for example, stories and testimonials from ex-combatants and other positive DDR impact stories. They may also include communication campaigns aimed at preventing recruitment. The potential role of the national authorities should also be assessed through analysis and where possible, national authorities should lead the strategic communication. To transform attitudes in communities so as to foster DDR (strategic communica- tion): Reintegration and/or CVR programmes are often crucial elements of DDR processes (see IDDRS 2.30 on Community Violence Reduction and IDDRS 4.30 on Reintegration). Strategic communication interventions can help to create con- ditions that facilitate peacebuilding and social cohesion and encourage the peace- ful return of former members of armed forces and groups to civilian life. Commu- nities are not homogeneous entities, and individuals within a single community may have differing attitudes towards the return of former members of armed forces and groups. For example, those who have been hit hardest by the conflict may be more likely to have negative perceptions of returning combatants. Others may simply be happy to be reunited with fam- ily members. The DDR process may also be negatively perceived as rewarding combatants. When necessary, strategic communication can be used as a means to transform the perceptions of communities and to combat stigmatization, hate speech, marginalization and discrimination against former members of armed forces and groups. Women and girls are often stigmatized in receiving communities and PI/SC can play a pivotal role in creating a more supportive environment for them. PI/SC should also be utilized to promote non-violent behaviour, including engaging men and boys as allies in promoting positive masculine norms (see IDDRS 5.10 on Women, Gender and DDR). Finally, PI/SC should also be used to destigmatize the mental health impacts of conflict and raise awareness of psychosocial support services.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc8f5d7d-32c9-44ff-9069-d32d1a6bdcab", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 11, + "Paragraph": "Planning and designing PI/SC strategies When designing a PI/SC strategy, DDR practitioners should take the following key factors into account: At what stage is the DDR process? Who are the primary and intermediary target audiences? Do these target audienc- es differ for different components of the DDR process (DDR programmes, DDR-re- lated tools, reintegration support)? Who may not be eligible to participate in the DDR process? Does eligibility dif- fer for different components of the DDR process (DDR programmes, DDR-related tools, reintegration support)? Are other, related PI/SC campaigns underway, and should these be aligned/ deconflicted with the PI/SC strategy for the DDR process? What are the roles of men, women, boys and girls, and how have each of these groups been impacted by the conflict? What are the existing gender stereotypes and identities, and how can PI/SC strategies support positive change? Is there stigma against women and girls associated with armed forces and groups? Is there stigma against mental health issues such as post-traumatic stress? What are the literacy levels of the men and women intended to receive the information? What behavioural/attitude change is the PI/SC strategy trying to bring about? How can this change be achieved (taking into account literacy rates, the presence of different media, etc.)? What are the various networks involved in the dissemination of information (e.g., interconnections among social networks of ex-combatants, household member- ship, community ties, military reporting lines, etc.)? Which network members have the greatest influence? Do women and men obtain information by different means? (If so, which channels most effectively reach women?) In what language does the information need to be delivered (also taking into account possible foreign combatants)? What other organizations are involved, and what are their PI/SC strategies? How can the PI/SC strategy be monitored? What is the prevailing information situation? (What are the information needs?) What are the sources of disinformation and misinformation? Who are the key local influencers/amplifiers? What dominant media technologies are in use locally and by which population segments/demographics? Understanding the local context and \u2018do no harm\u2019 considerations To ensure that the DDR PI/SC strategy fits local needs, DDR practitioners should understand the social, political and cultural context and identify factors that shape attitudes. It will then be possible to define behavioural objectives and design messages to bring about the required social change. Target audience and issue analysis must be adopted to provide a tailored approach to engage with different audiences based on their concerns, issues and attitudes. During the planning stage, the aim should be to collect the following minimum information to aid practitioners in understanding the local context: Conflict analysis, including an understanding of local ethnic, racial and religious divisions at the national and local levels; Gender analysis, including the role of women, men, girls and boys in society, as well as the gendered power structures in society and in armed forces and groups; Media mapping, including the geographic reach, political slant and cost of different media; Social mapping to identify key influencers and communicators in the society and their constituencies (e.g., academics and intelligentsia, politicians, youth leaders, women leaders, religious leaders, village leaders, commanders, celebrities, etc.); Traditional methods of communication; Cultural perceptions of the disabled, the chronically ill, rape survivors, extra-marital childbirth, mental health issues including post-traumatic stress, etc.; Literacy rates; Prevalence of intimate partner violence and sexual and gender-based violence; and Cultural moments and/or religious holidays that may be used to amplify messages of peace and the benefits of DDR. Partners in the process also need to be identified. Particular emphasis \u2013 especially in the case of information directed at DDR participants, beneficiaries and communities \u2013 should be placed on selecting local theatre troops and animators who can explain concepts such as DDR, reconciliation and acceptance using figurative language. Others who command the respect of communities, such as traditional village leaders, should also be brought into PI/SC efforts and may be asked to distribute DDR messages. DDR practitioners should ensure that partners are able and willing to speak to all DDR par- ticipants and beneficiaries and also to all community members, including women and children. Two additional context determinants may fundamentally alter the design and delivery of the PI/SC intervention: The attitudes of community members towards ex-combatants, women and men formerly associated with armed forces and groups, and youth at risk; and The presence of hate speech and/or xenophobic discourse. In this regard, DDR practitioners shall have a full understanding of how the open communication and publicity surrounding a DDR process may negatively impact the safety and security of participants, as well as DDR practitioners themselves. To this end, DDR practitioners should continuously assess and determine measures that need to be taken to adjust information related to the DDR process. These measures may include: Removing and/or amending specific designation of sensitive information related to the DDR process, including but not limited to the location of reception centres, the location of disarmament and demobilization sites, details related to the ben- efits provided to former members of armed forces and groups, and so forth; and Ensuring the protection of the privacy, and rights thereof, of former members of armed forces and groups related to their identity, ensuring at all times that per- mission is obtained should any identifiable details be used in communication ma- terial (such as photo stories, testimonials or ex-combatant profiles).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "bfde0539-e191-478e-9db2-3e064ce2b7fe", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 13, + "Paragraph": "Communicating about former members of armed forces and groups It is very important to pay attention to the language used in reference to DDR. This includes messaging about the process of disarmament and the \u2018surrender\u2019 of weapons, as well as the terms and expressions used to speak about and to ex-combatants and persons formerly associated with armed forces and groups. It is necessary to acknowl- edge that they are not naturally violent; that they might have left a lot behind in terms of social standing, respect and income in their armed group; and that therefore their return to civilian life may come with great economic and social sacrifices. The self- perception of former members of armed forces and groups (e.g., as revolutionaries or liberty fighters) also needs be understood, taken into consideration and, in some cas- es, positively reinforced to ensure their buy-in to the DDR process. Taking these sensitives into account may sometimes in- clude the need to reprofile the language used by Government and local or even in- ternational media. It is of vital importance, especially when it comes to the prospect of reintegration, that the discourse used to talk about ex-combatants and persons formerly associated with armed forces and groups is not pejorative and does not reinforce existing stereotypes or community fears. Communicating about former members of armed forces and groups is also im- portant in contexts where transitional justice measures are underway. The strategic communication and public information elements of supporting transitional justice as part of a DDR process (including, truth telling, criminal prosecutions and other accountability measures, reparations, and guarantees of non-recurrence) should be carefully planned (see IDDRS 6.20 on DDR and Transitional Justice). PI/SC campaigns should be designed to complement transitional justice interventions, and to manage the expectations of DDR participants, beneficiaries and communities. When transitional justice measures are visibly and publically integrated into DDR processes, this may help to ensure that grievances are addressed and demonstrate that these grievances were heard and taken into account. The visibility of these measures, in turn, contribute to improving the the prospects of social cohesion and receptibility between ex-combat- ants and communities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "39f41bb0-cc8b-4005-8a1c-7ac6f4200150", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 14, + "Paragraph": "The preparation of PI/SC material While a PI/SC strategy is being prepared, other public information resources can be activated. In mission settings, ready-made public information material on peacekeeping and the UN\u2019s role can be distributed. However, DDR practitioners should be aware that most DDR-specific material will be created for the particular country where DDR will take place. Production of PI/SC material is a lengthy process. The time needed to design and produce printed sensitization tools, develop online content, and establishing dissemination channels (such as radio stations) should be taken into account when planning the schedule for PI/SC activities. Certain PI/SC materials may take less time to produce, such as digital communication; basic pamphlets; DDR radio programmes for broadcasting on non-UN radios; interviews on local and international media; and debates, seminars and public theatre productions. Pre-testing of PI/SC materials must also be included in operational schedules. In addition to these considerations, the strategy should have a coherent timeline, bearing in mind that while some PI/SC activities will continue throughout the DDR process, others will take place at specific times or during specific phases. For instance, particularly during reintegration, SC activities may be oriented towards educating communities to accept DDR participants and to have reasonable expectations of what reintegration will bring, as well as ensuring that survivors of sexual violence and/or those living with HIV/AIDS are not stigmatized and that connections are made with ongoing security sector reform, including arms control, police and judicial reform.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "782377ff-255e-4971-ad9f-eed73b73acfa", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 14, + "Paragraph": "Hate speech and developing counter-narratives Measures must be developed that, in addition to addressing misinformation and dis- information, challenge hate speech and attempt to mitigate its potential impacts on the DDR process. If left unchecked, hate speech and incitement to hatred in the media can lead to atrocities and genocide. In line with the United Nations Strategy and Plan of Action on Hate Speech, there must be intentional efforts to address the root causes and drivers of hate speech and to enable effective responses to the impact of hate speech. Hate speech is any kind of communication in speech, writing, or behaviour that attacks or uses pejorative or discriminatory language with reference to a person or a group on the basis of who they are, in other words, based on their religion, ethnicity, nationality, race, colour, descent, gender or other identifying factor. Hate speech aims to exclude, dehumanize and often legitimize the extinction of \u201cthe Other\u201d. It is supported by stereotypes, enemy images, attributions of blame for national misery and xenophobic discourse, all of which aim to strip the imagined Other of all humanity. This kind of communication often successfully incites violence. Preventing and challenging hate speech is vital to the DDR process and sustainable peace. Depending on the nature of the conflict, former members of armed forces and groups and their dependants may be the targets of hate speech. In some contexts, those who leave armed groups may be perceived, by some segments of the population, as traitors to the cause. They or their families may be targeted by hate speech, rumours, and other means of incitement to violence against them. As part of the planning for a DDR process in contexts where hate speech is occurring, DDR practitioners shall make all necessary efforts to include counter-narratives in the PI/SC strategy. These measures may include the following: Counter hate speech by using accurate and reliable information. Include peaceful counter-narratives in education and communication skills train- ing related to the DDR process (e.g., as part of training provided during reintegra- tion support). Incorporate media and information literacy skills to recognize and critically eval- uate hate speech when engaging with communities. Include specific language on hate speech in DDR policy documents and/or related legislation. Include narratives, stories, and other material that rehumanize ex-combatants and persons formerly associated with armed forces and groups in strategic communi- cation interventions in support of DDR processes. Gender-sensitive PI/SC in support of DDR PI officers and gender officers shall work closely together in the formulation of PI/SC strategies for DDR processes, drawing on existing gender analysis, and conducting ad- ditional gender assessments as required. Doing so allows the PI/SC strategy to support gender-equitable norms, to promote women\u2018s empowerment and non-violent versions of masculinities, and to combat stigma and socialization to violence (see IDDRS 5.10 on Women, Gender and DDR). One of the most critical PI/SC objectives in DDR is reaching WAAFAG and in- forming them of their eligibility. Ensuring that women are well represented in all PI materials helps prevent their exclusion from DDR processes. Engaging women early in the development and testing of PI messaging is essential to ensuring that communica- tion materials and approaches respond to the specific needs and capacities of women and girls. Recognizing women\u2019s roles in peacebuilding and social cohesion, and utiliz- ing opportunities to actively engage them in disseminating PI messages, is essential. Sensitization activities can provide an important entry point to address the gender dimensions of violence early in the DDR process. PI activities should capitalize on lessons already learned about how to implement gender-responsive PI campaigns geared towards men. For example, showing male leaders and male youth as strong and non-violent, and men as engaged fathers and partners with females in the community, can help to support both men and boys as well as women and girls. Through these approaches, PI/SC can support broader gender equality work in the country, ensuring that campaign messages, visuals, and awareness raising activities incorporate gender transformative messages including supporting women\u2019s empow- erment, men\u2019s role as fathers, and non-violent, demilitarized forms of masculinities. PI/SC interventions and tools should include messaging on: Women\u2019s and men\u2019s roles as leaders working in partnership; Demilitarization of masculinities; Positive gender norms, including men\u2019s roles in communities as fathers; Destigmatization of psychosocial support services and individuals dealing with post-traumatic stress; Promotion of non-violent behaviour; Destigmatization of female combatants, females associated with armed forces and groups and their children, and male combatants; Men\u2019s and women\u2019s mutual responsibility and awareness around reproductive health and HIV/AIDS; Women\u2019s empowerment; and Destigmatization of victims/survivors of sexual violence and their children.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "c51a73b5-ce0e-4763-bd4e-97de093c49ab", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 16, + "Paragraph": "Anti-stigma and mental health PI/SC in support of DDR Given the psychological impact of conflict on ex-combatants and persons associated with armed forces and groups, as well as survivors and conflict-affected communities, it is essential for PI/SC to support anti-stigma campaigns and programmes, and to dis- seminate accurate and reliable information on ways to access support (see IDDRS 5.70 on Health and DDR, IDDRS 5.80 on Disability-Inclusive DDR and IASC Guidelines on Mental Health and Psychosocial Support). PI/SC should draw on assessments and mapping of services and be developed in collaboration with health authorities, ensuring continuous access to information on the availability of assistance as well as clear referral pathways (clincs, servies, hotlines, etc). Anti-stigma campaigns should include messaging on normalizing the mental health impacts of conflict on both men and women and fostering support for individuals and communities. In conflict settings, one person in five is living with some form of mental disorder, from mild depression or anxiety to psychosis. In this regard, PI/SC should avoid targeting or singling out DDR participants as the impact of conflict extends further than those who actively participated in combat.z Interventions may include radio pro- grammes, public service announcements, community theatre or seminars, print media, and other outlets as outlined in section 8.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6149bc4b-5304-407f-b297-dade58d45ebc", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 16, + "Paragraph": "Stakeholders or target audiences The planning and implementation of the PI/SC strategy shall acknowledge the diversity of stakeholders involved in the DDR process and their varied information needs. The PI/SC strategy shall also be based on integrated conflict and security analyses (see IDDRS 3.11 on Integrated Assessments). As each DDR process may contain different combinations of DDR programmes, DDR-related tools and reintegration support, the type of DDR process under way will influence the stakeholders involved and the primary and secondary audiences, and will shape the nature and content of PI/SC activities. The intended audience(s) will also vary according to the phase of the DDR process and, crucially, the changes in people\u2019s attitudes that the PI/SC strategy would like to bring about. What follows is therefore a non-exhaustive list of the types of target audiences most commonly found in a PI/SC strategy for DDR:", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "20a16d5e-5ce6-4ac6-9c81-076b2f88d3e6", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": null, + "Paragraph": "Primary audience (participants and beneficiaries) The following stakeholders are often the primary audience of a DDR process: The political leadership: This may include the signatories of ceasefires and peace accords, when they are in place. Political leaderships may or may not represent the military branches of their organizations. The military leadership of armed forces and groups: These leaders may have motivations and interests that differ from the political leaderships of these entities. Likewise, within these military leaderships, mid-level commanders may hold their own views concerning the DDR process. DDR practitioners should recognize that the rank-and-file members of armed forces and groups often receive informa- tion about DDR from their immediate commanders, who may have incentives to provide disinformation about DDR if they are reluctant for their subordinates to leave military life. Rank-and-file of armed forces and groups: It is important to make the distinction between military leaderships, military commanders, mid-level commanders and their rank-and-file, because their motivations and interests may differ. Testimonials from the successfully demobilized and reintegrated rank-and-file have proven to be effective in informing their peers. Ex-combatants and persons formerly asso- ciated with armed forces and groups can play an important role in amplifying messages aimed at demonstrating life after war. Women associated with armed groups and forces in non-combat roles: It is important to cater to the information needs of WAAFAG, especially those who have been abducted. Communities, particularly women\u2019s groups, should also be informed about how to further assist women who manage to leave an armed force or group of their own accord. Children associated with armed forces and groups: Individuals in this group need child-friendly, age- and gender-sensitive information to help reassure and safely remove those who are illegally held by an armed force or group. Commu- nities, local authorities and police should also be informed about how to assist children who have exited or been released from armed groups, as well as about protocols to ensure the protection of children and their prompt handover to child protection services. Ex-combatants and persons formerly associated with armed forces and groups with disabilities: Information and sensitization to opportunities to access and participate in DDR should reach this group. Families and communities should also be informed on how to support the reintegration of persons with disabilities. Youth at risk of recruitment: In countries affected by conflict, youth are both a force for positive change and, at the same time, a group that may be vulnerable to being drawn into renewed violence. When PI/SC strategies focus only on children and mature adults, the specific needs and experiences of youth are missed. Local authorities and receiving communities: Enabling the smooth reintegra- tion of DDR participants into their communities is vital to the success of DDR. Communities and their leaders also have an important role to play in other local-level DDR activities, such as CVR programmes and transitional WAM as well as community-based reintegration support.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8ae40bec-5440-44bf-8650-bdbe20449766", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": null, + "Paragraph": "Secondary audience (partners) In many cases, partnerships with other stakeholders are required to support the de- sign, planning and implementation of the PI/SC strategy. The following partners are often the secondary audience of a DDR process; however, depending on the context, they may also be the primary audience (e.g., the international community in a region- alized armed conflict): Civil society: This includes women\u2019s groups, youth groups, local associations and non-governmental organizations that play a role in the DDR process, including those working as implementing partners of national and international govern- mental institutions. Religious leaders and institutions: The voices of moderate religious leaders can be amplified and coordinated with educators to foster coordination and promote messages of peace and tolerance. Legislative and policy-setting authorities: The legal framework in the country regulating the media can be reviewed and laws put in place to prevent the distri- bution of messages inciting hate or spreading misinformation. If this approach is used, care must be taken to ensure that civil and political rights are not affected. International and local media: International and local media are often the main source of information on progress in the peace process. Keeping both media segments supplied with accurate and up-to-date information on the planning and implementation of DDR is important in order to increase support for the process and avoid bad press. The media are also key whistleblowers that can identify, expose and denounce potential spoilers of the peace process. Private sector: Companies in the private sector can also be important amplifiers and partners, for example, by generating specific recruitment advertisements in support of reintegration opportunities. Local telecommunication companies and in- ternet service providers can also offer avenues to further disseminate key messages. Opinion leaders/influencers: In many contexts, opinion leaders are public person- alities who actively produce and interpret multiple sources of information to form an opinion. With the advent of social media, these actors generate viewership and large followings through regular programming and online presence. Regional stakeholders: These include Governments, regional organizations, mil- itary and political parties of neighbouring countries, civil society in neighboring States, businesses and potential spoilers. The international community: This includes donors, their constituencies (including, if applicable, the diaspora who can influence the direction of DDR), troop-contribut- ing countries, the UN system, international financial institutions, non-governmental organizations and think tanks.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "909355a9-ccd2-44e4-8a34-3e2e5453ba05", + "Color": "#7366A3", + "Level": "4", + "LevelName": "", + "Title": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR", + "PageNum": 18, + "Paragraph": "Media This section outlines the various media that can be used in PI/SC strategies and the advantages and disadvantages associated with each. In both mission and non-mission settings, DDR practitioners should proactively identify PI/SC capacities to support national counterparts that are leading the process. Most peacekeeping operations include a PI/SC office with the following work streams and skill sets: media relations, multimedia and content production, radio content or station, and an outreach and campaigns unit. It is important for DDR practitioners to keep in mind that former members of armed forces and groups are not usually a standard target audience within a mission\u2019s PI/SC strategy. They may therefore need to engage with the PI/SC office in order for this group to be considered. In non-mission settings, DDR practitioners may seek out partnerships with relevant organizations or explore the possibility of bringing on board or working with existing PI/SC person- nel. For example, most agencies, funds and programmes within the UN country team maintain communications officers or individuals with similar job profiles. In all con- texts, local advisers shall be consulted. Once created, PI/SC messages and activities can be channelled using the various media outlined below. The selection of media type should be based on a thorough anal- ysis of the geographic availability of that media, as well as which form of media best suits the content to be disseminated. Online and web presence When internet access is widespread, online tools (videos, dedicated websites, podcasts, social media campaigns, etc.) are important. Social media campaigns should be consid- ered as they represent a low-resource way of reaching a large audience. Local, national and international radio stations When compared with other media, the advantage of radio is that it often reaches the largest number of people, particularly in developing countries. This is because radio is less dependent on infrastructural development or the technological sophistication and wealth of the listener. It can also reach those who are illiterate. However, it should not be assumed that women (and children) have the same access to radio as men, especially in rural areas, since they may not have the resources to buy either the radio or batteries. A DDR radio programme can assist in providing updates on the DDR process (e.g., the opening of demobilization sites and inauguration of reintegration projects). It can also be used to disseminate messages targeting women and girls (to encourage their participation in the process), as well as children associated with armed forces and groups (for e.g., on the consequences of enlisting or holding children). Radio messages can also support behavioural change programming, for example, by destigmatizing mental health needs (see IDDRS 5.70 on Health and DDR, IDDRS 5.80 on Disability- Inclusive DDR and IASC Guidelines on Mental Health and Psychosocial Support). Some peacekeeping missions have their own UN Radio stations. In contexts where this is not the case, DDR practitioners should explore partnerships with the private sector and/or civil society. Print media Print media may include leaflets, pamphlets, posters/cartoons, newsletters and maga- zines. Although the effectiveness of these various formats will be limited by the literacy of the intended audience, their main advantage is the durability and level of detail that printed information can contain. The added benefit of print media is that it can be passed from person to person in close-knit networks, increasing the potential impact of the content as it comes from a trusted source. Visual media: television, film and billboards In countries where television is the most popular way of distributing information, it is essential that this medium is used, even if in a limited way. Some peacekeeping missions have established their own UN TV stations on a dedicated broadcasting frequency, while others have made arrangements to broadcast films, documentaries or other programming on existing public or private stations. The scheduling and frequency of broadcasts must be carefully planned to respond to the needs of the widest possible audience. Where cultural restrictions prevent women from watching films in public, alternatives, such as a women-only screening, should be negotiated. Billboards should not be overlooked as an effective tool for advertising DDR activities and/or achievements, as, when strategically positioned, they can reach a significant number of people. Interactive forums: theatre, seminars, debates Although the main impact of theatre productions, seminars and debates may be on their direct audience, oral forms of communication have the advantage of involving the audience and building on existing cultural norms. Presenting ideas and concepts figuratively, especially if based on local folklore, culture and humour, can be particu- larly useful in communities with a strong oral culture. Interactive opportunities like this also afford critical opportunities to support equitable and positive gender norms, destigmatize mental health, and foster peacebuilding and social cohesion. These inter- active mechanisms may also help to build social cohesion and work through trauma. Local townhall events Local townhall events that are open to the public can offer a platform for dialogue with communities. They can serve as a wider peacebuilding platform using participatory methods to solicit input from affected populations. They can also provide the opportu- nity to pre-test messages on a small scale to ascertain their impact and reception before wider use and dissemination. Hotlines Hotlines can be a useful tool to inform DDR participants and beneficiaries about the development of the DDR process. Hotlines should be free of charge and can foster the engagement of the target audience and provide information and clarification on the DDR process. Augmented and virtual reality Augmented and virtual reality techniques can allow partners, donors and members of the general public who are unfamiliar with DDR to immerse themselves in a real-life setting \u2013 for example, walking the path of an ex-combatant as he/she leaves an armed group and participates in a DDR process. Gamification Gamification involves the application of typical elements of game playing (e.g., point scoring, competition with others, rules of play) to other areas of activity, typically as an interactive and social technique to encourage engagement with a topic, such as DDR. Monitoring and evaluation From the start, it is important to identify measurable indicators (the pieces of information that will show whether objectives are being met) as well as how this information will be gathered (sources and techniques) in order to monitor and evaluate the impact of the PI/SC strategy. Any aspects of the PI/SC strategy that do not have the effect they were designed to achieve shall be adapted. Indicators may include: The number, sex, age and location (e.g, rural or urban) of people listening to radio programmes and consulting other media, including websites and social media, that convey messages regarding DDR; The number of participants and beneficiaries engaging in the DDR process as a result of PI/SC activities; The extent of the involvement of the local civilian population in reintegration programmes as a result of PI/SC efforts; and The change in expectations and knowledge about the process among target audi- ences before and after PI/SC activities. This information can be gathered through surveys and interviews conducted throughout the implementation of the DDR process and also from the activity reports of other organizations, media reports, staff at the demobilization sites, local civil society actors in the communities, etc. Findings should be used to guide and shape ongoing activities and contribute to improving future efforts. For further information, refer to IDDRS 3.50 on Monitoring and Evaluation.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "05c36745-b8a3-433c-b5af-0c3eee36daad", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 3, + "Paragraph": "Module scope and objectives The purpose of this module is to provide policy makers, operational planners and officers at field level with background information and guidance on related but distinct sets of activi- ties associated with disarmament, demobilization and reintegration (DDR) and security sector reform (SSR).1 The intention is not to set out a blueprint but to build from common principles in order to provide insights that will support the development of synergies as well as preventing harmful contradictions in the design, implementation and sequencing of different elements of DDR and SSR programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "329e3c99-abdc-4d64-b25f-007ec2136832", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 3, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "03fadba2-75fe-433c-9efb-b2128cba325c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 3, + "Paragraph": "Background The UN has recognised in several texts and key documents that inter-linkages exist between DDR and SSR.2 This does not imply a linear relationship between different activities that involve highly distinct challenges depending on the context. It is essential to take into account the specific objectives, timelines, stakeholders and interests that affect these issues. However, understanding the relationship between DDR and SSR can help identify synergies in policy and programming and provide ways of ensuring short to medium term activities associated with DDR are linked to broader efforts to support the development of an effec- tive, well-managed and accountable security sector. Ignoring how DDR and SSR affect each other may result in missed opportunities or unintended consequences that undermine broader security and development goals. The Secretary-General\u2019s report Securing Peace and Development: the Role of the United Nations in Security Sector Reform (S/2008/39) of 23 January 2008 describes SSR as \u201ca process of assessment, review and implementation as well as monitoring and evalu- ation led by national authorities that has as its goal the enhancement of effective and accountable security for the State and its peoples without discrimination and with full respect for human rights and the rule of law.\u201d3 The security sector includes security pro- viders such as defence, law enforcement, intelligence and border management services as well as actors involved in management and oversight, notably government ministries, legislative bodies and relevant civil society actors. Non-state actors also fulfill important security provision, management and oversight functions. SSR therefore draws on a diverse range of stakeholders and may include activities as varied as political dialogue, policy and legal advice, training programmes and technical and financial assistance. While individual activities can involve short term goals, achieving broader SSR objec- tives requires a long term perspective. In contrast, DDR tends to adopt a more narrow focus on ex-combatants and their dependents. Relevant activities and actors are often more clearly defined and limited while timelines generally focus on the short to medium-term period following the end of armed conflict. But the distinctions between DDR and SSR are potentially less important than the convergences. Both sets of activities are preoccupied with enhancing the security of the state and its citizens. They advocate policies and programmes that engage public and private security actors including the military and ex-combatants as well as groups responsible for their management and oversight. Decisions associated with DDR contribute to defining central elements of the size and composition of a country\u2019s security sector while the gains from carefully executed SSR programmes can also generate positive consequences on DDR interventions. SSR may lead to downsizing and the conse- quent need for reintegration. DDR may also free resources for SSR. Most significantly, considering these issues together situates DDR within a developing security governance framework. If conducted sensitively, this can contribute to the legitimacy and sustainability of DDR programmes by helping to ensure that decisions are based on a nationally-driven assessment of applicable capacities, objectives and values.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e7c68913-7dc6-4363-be63-aaa1bb244917", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Why are DDR-SSR dynamics important? DDR and SSR play an important role in post-conflict efforts to prevent the resurgence of armed conflict and to create the conditions necessary for sustainable peace and longer term development.4 They form part of a broader post-conflict peacebuilding agenda that may include measures to address small arms and light weapons (SALW), mine action activi- ties or efforts to redress past crimes and promote reconciliation through transitional justice 6.20\t(see IDDRS 6.20 on DDR and Transitional Justice). The security challenges that these meas- ures seek to address are often the result of a state\u2019s loss of control over the legitimate use of force. DDR and SSR should therefore be understood as closely linked to processes of post- conflict statebuilding that enhance the ability of the state to deliver security and reinforce the rule of law. The complex, interrelated nature of these challenges has been reflected by the development of whole of system (e.g. \u2018one UN\u2019 or \u2018whole of government\u2019) approaches to supporting states emerging from conflict. The increasing drive towards such integrated approaches reflects a clear need to bridge early areas of post-conflict engagement with support to the consolidation of reconstruction and longer term development. An important point of departure for this module is the inherently political nature of DDR and SSR. DDR and SSR processes will only be successful if they acknowledge the need to develop sufficient political will to drive and build synergies between them. Box 1 DDR/SSR dynamics This reflects the sensitivity of issues that touch directly on internal power relations, sover- eignty and national security as well as the fact that decisions in both areas create \u2018winners\u2019 and \u2018losers.\u2019 In order to avoid doing more harm than good, related policies and programmes must be grounded in a close understanding of context-specific political, socio-economic and security factors. Understanding \u2018what the market will bear\u2019 and ensuring that activities and how they are sequenced incorporate practical constraints are crucial considerations for assessments, programme design, implementation, monitoring and evaluation. The core objective of SSR is \u201cthe enhancement of effective and accountable security for the state and its peoples.\u201d5 This underlines an emerging consensus that insists on the need to link effective and efficient provision of security to a framework of democratic gov- ernance and the rule of law.6 If one legacy of conflict is mistrust between the state, security providers and citizens, supporting participative processes that enhance the oversight roles of actors such as parliament and civil society7 can meet a common DDR/SSR goal of build- ing trust in post-conflict security governance institutions. Oversight mechanisms can provide necessary checks and balances to ensure that national decisions on DDR and SSR are appro- priate, cost effective and made in a transparent manner.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2b61f707-3da1-4177-830f-33276abddba3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 5, + "Paragraph": "Challenges of operationalising the DDR/SSR nexus A number of DDR and SSR activities have been challenged for their lack of context-specificity and flexibility, leading to questions concerning their effectiveness when weighed against the major investments such activities entail.8 The lack of coordination between bilateral and multilateral partners that support these activities is widely acknowledged as a contrib- uting factor: stovepiped or contradictory approaches each present major obstacles to pro- viding mutually reinforcing support to DDR and SSR. The UN\u2019s legitimacy, early presence on the ground and scope of its activities points to an important coordinating role that can help to address challenges of coordination and coherence within the international commu- nity in these areas. A lack of conceptual clarity on \u2018SSR\u2019 has had negative consequences for the division of responsibilities, prioritisation of tasks and allocation of resources.9 Understandings of the constituent activities within DDR are relatively well-established. On the other hand, while common definitions of SSR may be emerging at a policy level, these are often not reflected in programming. This situation is further complicated by the absence of clear indicators for success in both areas. Providing clarity on the scope of activities and linking these to a desired end state provide an important starting point to better understanding the relationship between DDR and SSR. Both DDR and SSR should be nationally owned and designed to fit the circumstances of each particular country. However, the engagement by the international community in these areas is routinely criticised for failing to apply these key principles in practice. SSR in particular is viewed by some as a vehicle for imposing externally driven objectives and approaches. In part, this reflects the particular challenges of post-conflict environments, including weak or illegitimate institutions, shortage of capacity amongst national actors, a lack of political will and the marginalisation of civil society. There is a need to recognise these context-specific sensitivities and ensure that approaches are built around the contributions of a broad cross-section of national stakeholders. Prioritising support for the development of national capacities to develop effective, legitimate and sustainable security institutions is essential to meeting common DDR/SSR goals. Following a summary of applicable UN institutional mandates and responsibilities (Section 4), this module outlines a rationale for the appropriate linkage of DDR and SSR (Section 5) and sets out a number of guiding principles common to the UN approach to both sets of activities (Section 6). Important DDR-SSR dynamics before and during demo- bilization (Section 7) and before and during repatriation and reintegration (Section 8) are then considered. Operationalising the DDR-SSR nexus in different elements of the pro- gramme cycle and consideration of potential entry points (Section 9) is followed by a focus on national and international capacities in these areas (Section 10). The module concludes with a checklist that is intended as a point of departure for the development of context- specific policies and programmes that take into account the relationship between DDR and SSR (Section 11).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ef6d5420-8a27-4f13-90f0-1757c4dfbe6f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 6, + "Paragraph": "UN institutional mandates and responsibilities A number of UN documents address the interrelated issues of DDR, SSR and rule of law. Short summaries of some of the following key documents are included in Annex \u2018A\u2019 to this module: Report of the Secretary-General on \u201cThe role of United Nations Peacekeeping in disarm- ament, demobilization and reintegration\u201d of 11 February 2000 (S/2000/101) Report of the Secretary-General on \u201cThe rule of law and transitional justice in conflict and post-conflict societies\u201d of 3 August 2004 (S/2004/616) Report of the Secretary-General on \u201cDisarmament, demobilization and reintegration\u201d of 2 March 2006 (A/60/705) Presidential Statement on \u201cMaintenance of international peace and security: role of the Security Council in supporting security sector reform\u201d of 21 February 2007 (S/PRST/ 2007/3); Report of the Secretary-General on \u201cSecuring peace and development: the role of the United Nations in supporting security sector reform\u201d of 23 January 2008 (S/2008/39); Presidential Statement on \u201cMaintenance of international peace and security: role of the Security Council in supporting security sector reform\u201d of 12 May 2008 (S/PRST/ 2008/14).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b061a9d6-da70-42bd-ae91-dedf9cfab3ee", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 7, + "Paragraph": "Rationale for linking DDR and SSR Considering the relationship between DDR \u2018design\u2019 and the appropriate parameters of a state\u2019s security sector provides an important dimension to shape strategic decision making and thus to broader processes of national policy formulation and implementation. The con- siderations outlined below suggest ways that different components of DDR and SSR can relate to each other.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2df6f3cc-369b-4f0f-ac48-6b2b69cc25d6", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 7, + "Paragraph": "Disarmament Disarmament is not just a short term security measure designed to collect surplus weapons and ammunition. It is also implicitly part of a broader process of state regulation and con- trol over the transfer, trafficking and use of weapons within a national territory. As with civilian disarmament, disarming former combatants should be based on a level of confi- dence that can be fostered through broader SSR measures (such as police or corrections reform). These can contribute jointly to an increased level of community security and pro- vide the necessary reassurance that these weapons are no longer necessary. There are also direct linkages between disarmament of ex-combatants and efforts to strengthen border management capacities, particularly in light of unrestricted flows of arms (and combatants) across porous borders in conflict-prone regions.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f1bb2fff-4b03-401a-b676-7fe02b58acf4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 7, + "Paragraph": "Demobilization While often treated narrowly as a feature of DDR, demobilization can also be conceived within an SSR framework more generally. Where decisions affecting force size and structure provide for inefficient, unaffordable or abusive security structures this will undermine long term peace and security. Decisions should therefore be based on a rational, inclusive assess- ment by national actors of the objectives, role and values of the future security sector. One important element of the relationship between demobilization and SSR relates to the impor- tance of avoiding security vacuums. Ensuring that decisions on both the structures estab- lished to house the demobilization process and the return of demobilised ex-combatants are taken in parallel with complementary community law enforcement activities can miti- gate this concern. The security implications of cross-border flows of ex-combatants also highlight the positive relationship between demobilization and border security.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "99e95065-f518-472a-b962-b896ea0793d5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 7, + "Paragraph": "Reintegration Successful reintegration fulfils a common DDR/SSR goal of ensuring a well-managed tran- sition of former combatants to civilian life while taking into account the needs of receiving communities. By contrast, failed reintegration can undermine SSR efforts by placing exces- sive pressures on police, courts and prisons while harming the security of the state and its citizens. Speed of response and adequate financial support are important since a delayed or underfunded reintegration process may skew options for SSR and limit flexibility. Ex- combatants may find employment in different parts of the formal or informal security sector. In such cases, clear criteria should be established to ensure that individuals with inappropriate backgrounds or training are not re-deployed within the security sector, weakening the effectiveness and legitimacy of relevant bodies. Appropriate re-training of personnel and processes that support vetting within reformed security institutions are therefore two examples where DDR and SSR efforts intersect.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "574dfc19-a14f-4672-a342-c2486ee30096", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 8, + "Paragraph": "Guiding principles The overarching principles for a comprehensive and coherent UN approach to DDR stress the need to be people-centred, flexible, transparent and accountable, nationally owned, integrated and well-planned. In the absence of a specific UN doctrine,10 the Secretary- General\u2019s Report on SSR is a significant departure because it provides a clear statement of the UN\u2019s general understanding of and approach to SSR. It is important that there is comple- mentarity between the two: shared principles provide a common basis in order to develop an integrated UN approach to DDR and SSR. This section reviews these shared principles in order to underline key elements that can support the development of synergies.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0666b2b8-ce0e-41cc-9771-0c7b2322cd13", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "People-centred and rights-based: DDR and SSR to improve the security of individuals and communities While a given DDR programme might generate important returns in terms of performance indicators (e.g. numbers of weapons collected and ex-combatants reintegrated) this may not translate into effective outcomes (e.g. improvements in real and perceived individual or community security). Involving communities and local authorities in planning, implement- ing and monitoring interventions can potentially integrate efforts such as the community reintegration of former combatants with the provision of security at the local level in order to ensure that reintegration and SSR are complementary. Supporting the capacity of national armed and other security forces and line ministries can build morale, demonstrating a \u2018duty of care\u2019 through fair treatment.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4bf0b537-7c07-497e-ad49-b298d256baf4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 8, + "Paragraph": "Flexibility: the importance of context and sequencing DDR and SSR interventions need to be flexible and responsive to changing conditions on the ground. Policy guidance must build in the need to understand contextual factors and adjust to changing realities. Mapping relevant actors and understanding the opportunities and constraints posed by specific political, security and socio-economic factors are common requirements for DDR and SSR. Addressing these issues in assessments, ensuring that such knowledge informs both mediation support and negotiating processes, integrating it into the design of DDR and SSR programmes will help to ensure a common appreciation of what is realistic in a given context. Regular monitoring and evaluation should inform the sequencing of activities while avoiding inappropriate or insensitive approaches.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "60bb9c30-5765-43cf-bd09-5fa402e6234a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 8, + "Paragraph": "Transparency and accountability: a good governance approach to DDR/SSR DDR and SSR conceived narrowly as technical support for military or other security bodies may fail to take sufficient account of the dynamic political environment within which these actors are situated. Emphasising the need to build or enhance the respective roles of the executive, legislative, judiciary as well as civil society will help to ensure that programmes are realistic, transparent and widely understood. Developing a nationally-driven picture of security needs in order to determine the scope and objectives of DDR is a lengthy and challenging process that may be too sensitive to address in the early post-conflict period. Avoiding rigid prescriptions is therefore important while identifying and applying mini- mum standards that should be non-negotiable.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4b0a4156-b4ce-46e6-96ae-44328916937c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 9, + "Paragraph": "National ownership: legitimacy and the DDR/SSR nexus National ownership is a much broader concept than \u2018state\u2019 ownership and includes both state and non-state actors at national, regional and local levels. Seeking to involve as many former conflict parties as possible as well as groups that have been marginalised, or are generally under-represented on issues of security in DDR and SSR decision-making is particularly important. This contributes to ensuring that different segments of society feel part of this process. Participatory approaches provide a means to work through the conflict- ing interests of different domestic constituencies. Enhancing the capacity of national and regional authorities to manage, implement and oversee these programmes provides a cru- cial bridge from post-conflict stabilisation to longer term recovery and development by supporting the creation of skills that will remain once international support has been drawn down.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4a23da52-3304-4a4f-8377-d291ceb32973", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 9, + "Paragraph": "Integration and planning: the importance of coordination & coherence The range of objectives and actors involved in DDR and SSR place particular emphasis on coordination issues. Failures to align activities may result in incoherent and potentially destructive outcomes. It is important to coordinate DDR and SSR and relate them to other post-conflict peacebuilding activities such as small arms and light weapons (SALW), transi- tional justice or mine action programmes. Due attention to context-specific issues of timing and sequencing is essential to ensure that the different activities do not become incompat- ible. The absence of adequate, timely and well-targeted funding provides a particularly acute challenge to sustainable, coherent DDR and SSR.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dcfbeb6e-39f7-46a9-a171-1be09c984a33", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "DDR and SSR dynamics to consider before and during demobilization This section begins by identifying certain early areas of SSR support that can reinforce DDR activities (7.1-7.4) while preparing the ground for a more programmatic approach to SSR. An important element of the DDR-SSR nexus is the integration of ex-combatants into the reformed security sector. Particular emphasis is therefore put on issues relating to secu- rity sector integration (7.5-7.12).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a3064873-0425-453e-aa6d-ef21c90e8b78", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 9, + "Paragraph": "7.1. Disarmament and longer-term SSR Reducing the availability of illegal weapons connects DDR and SSR to related security challenges such as wider civilian arms availability. In particular, there is a danger of \u2018leak- age\u2019 during transportation of weapons and ammunition gathered through disarmament processes or as a result of inadequately managed and controlled storage facilities. Failing to recognise these links may represent a missed opportunity to develop the awareness and capacity of the security sector to address security concerns related to the collection and management of weapon stocks (see IDDRS 2.20 on post-conflict stabilization, peace-building and recovery frameworks). Disarmament programmes should be complemented, where appropriate, by training and other activities to enhance law enforcement capacities and national control over weap- ons and ammunition stocks. The collection of arms through the disarmament component 2.20 of the DDR programme may in certain cases provide an important source of weapons for reformed security forces. In such cases, disarmament may be considered a potential entry point for coordination between DDR and SSR.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9e752fe-8f47-4de1-8fc8-7a470edeafd1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 10, + "Paragraph": "Illegal armed groups In cases where combatants are declared part of illegal groups, progress in police reform and relevant judicial functions can project deterrence and help ensure compliance with the DDR process. This role must be based on adequate police capacity to play such a supporting role (see Case Study Box 1). The role of the police in supporting DDR activities should be an element of joint plan- ning. In particular, decisions on police support to DDR should be based on their capacity to support the DDR programme. Where there are synergies to be realised, this should be reflected in resource allocation, training and priority setting for police reform activities. Case Study Box 1 Police support to DDR in Afghanistan", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "3d1c22f1-f36a-4f8a-adab-0abb04bd3ac8", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 10, + "Paragraph": "The disengagement process A number of common DDR/SSR concerns relate to the disengagement of ex-combatants. Rebel groups often inflate their numbers before or at the start of a DDR process due to financial incentives as well as to strengthen their negotiating position for terms of entry into the security sector. This practice can result in forced recruitment of individuals, including children, to increase the head- count. Security vacuums may be one further consequence of a disengagement process with the movement of ex-combatants to de- mobilization centres resulting in potential risks to communities. Analysis of context-specific security dy- 3.20 5.30 namics linked to the disengagement process should provide a common basis for DDR/SSR decisions. When negotiating with rebel groups, criteria for integration to the security sector should be carefully set and not based simply on the number of people the group can round up (see IDDRS 3.20 on DDR Programme Design, Para 6.5.3.4). The requirement that chil- dren be released prior to negotiations on integration into the armed forces should be stip- ulated and enforced to discourage their forced recruitment (see IDDRS 5.30 on Children and DDR). The risks of potential security vacuums as a result of the DDR process should provide a basis for joint DDR/SSR coordination and planning.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0425e62b-d307-4484-80ae-1b55c01fd367", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 11, + "Paragraph": "Natural resource exploitation The illegal exploitation of natural resources creates an obstacle to effective DDR and under- mines prospects for economic recovery. Control over natural resources provides a resource base for continued recruitment of combatants and the prolonging of violence. Rebel groups are unlikely to agree to disarmament/demobilization if that means losing control of valu- able land. SSR activities should address relevant training requirements necessary for targeting armed groups in control of natural resources. Mandates and resource allocation for national security forces should be elaborated and allocated, where appropriate, to focus on this priority.11 Shared conflict and security analysis that focuses on this issue should inform DDR/SSR planning processes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4343b574-4309-4f23-ba2d-bb6c1ad2156d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 11, + "Paragraph": "Rank harmonisation Policies establishing a new rank structure for members of the reformed security sector may facilitate integration by supporting the creation of a new command structure. It is particu- larly important to address perceived inequities between different groups in order to avoid resulting security risks. Rank harmonisation processes should be based on clear provisions in a peace agreement or other legal documents and be planned in full consideration of the consequences this may have on security budgets (i.e. if too many high ranks are attributed to ex-combatants). Policies should be based on consideration of appropriate criteria for determining ranks, the need for affirmative action for marginalised groups and an agreed formula for conver- sion from former armed groups to members of the reformed security sector.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4504e4c1-2d08-4c4e-bf1b-b9877005f6e0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 11, + "Paragraph": "Data collection and management While the data capture at disarmament or demobilization points is designed to be utilised during reintegration, the early provision of relevant data can provide essential support to SSR processes. Sharing information can 1) help avoid multiple payments to ex-combatants registering for integration into more than one security sector institution, or for both inte- gration and reintegration; 2) provide the basis for a security sector census to help national authorities assess the number of ex-combatants that can realistically be accommodated within the security sector; 3) support human resource management by providing relevant information for the reform of security institutions; and 4) where appropriate, inform the vetting process for members of security sector institutions (see IDDRS 6.20 on DDR and Transitional Justice). Extensive data is often collected during the demobilization stage (see Module 4.20 on Demobilization, Para 5.4). A mechanism for collecting and processing this information within the Management Information System (MIS) should capture information require- ments for both DDR and SSR and may also support related activities such as mine action (See Box 2). Relevant information should be used to support human resource and financial management needs for the security sector. (See Module 4.20 on Demobilization, Para 8.2, especially box on Military Information.) This may also support the work of those respon- sible for undertaking a census or vetting of security personnel. Guidelines should include confidentiality issues in order to mitigate against inappropriate use of information. 6.20 4.20 4.20", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "165795bd-6100-439a-bb0f-9e59f63c1421", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 12, + "Paragraph": "Vetting Vetting is a particularly contentious issue in many post-conflict contexts. However, sensi- tively conducted, it provides a means of enhancing the integrity of security sector institutions through ensuring that personnel have the appropriate background and skills.12 Failure to take into account issues relating to past conduct can undermine the development of effec- tive and accountable security institutions that are trusted by individuals and communities. The introduction of vetting programmes should be carefully considered in relation to minimum political conditions being met. These include sufficient political will and ade- quate national capacity to implement measures. Vetting processes should not single out ex-combatants but apply common criteria to all members of the vetted institution. Minimum requirements should include relevant skills or provision for re-training (particularly im- portant for ex-combatants integrated into reformed law enforcement bodies). Criteria should also include consideration of past conduct to ensure that known criminals, human rights abusers or perpetrators of war crimes are not admitted to the reformed security sector. (See IDDRS 6.20 on DDR and Transitional Justice.)", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "29a9d75e-2df7-4afc-b6a4-71e69d238c5e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 12, + "Paragraph": "Support to the integration of ex-combatants within the security sector Ex-combatants that have been socialized to the use of violence in conflict require proper support and training to assist their transition from armed combatant to security provider. Moreover, high HIV infection rates are common in many uniformed services and can com- promise command structures and combat readiness. Increasingly, there are national policies of screening recruits and excluding those who are HIV-positive. In addition to identifying appropriate selection criteria for combatants eligible for inte- gration, ex-combatants should be provided with sufficient training and sensitization on behaviour change, and access to psychosocial support to enable a successful transition. Engaging in HIV/AIDS prevention at the outset of DDR will help to reduce new infections, thus\u2014where national policies of HIV screening are in place\u2014increasing the pool of potential candidates for recruitment, as well as assisting in planning for alternative occupational support and training for those found to be HIV-positive (see IDDRS Module 5.60 on HIV/ AIDS and DDR).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "95972d5e-c6fe-488c-b741-01d73adc93d2", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 13, + "Paragraph": "Balancing demobilization and security sector integration Offering ex-combatants a voluntary choice between integrating into the security sector and pursuing civilian livelihoods can, in certain cases, be problematic. Resulting challenges may include disproportionate numbers of officers compared to other ranks, or mismatches between national security priorities and the comparative advantages of different security providers. Excessive integration into the security sector may be unrealistic in relation to the absorptive capacity of these institutions as well as financial limitations and perceived security requirements. There is also a risk to community security if large numbers of ex- combatants return without the prospect of meaningful employment. Decisions on the incentives provided to ex-combatants registering for demobilization versus those registering for integration should be carefully considered to avoid unsustain- able outcomes. The financial and social benefits provided to each group should not therefore strongly favour one option over the other. Funding considerations should reflect national financial limitations in order to avoid unwanted course corrections. A communication strategy should be developed to ensure that options are clearly understood. Job counsel- ling\u2014presenting realistic career options\u2014may also reduce the risk of raising expectations among demobilised combatants entering into socio-economic programmes (see IDDRS 4.30 on Social and Economic Reintegration, Section 9.2). Case Study Box 2 Integration followed by rightsizing in Burundi 4.30", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "01b56ee9-0d00-4c23-9750-cd4a91e62d04", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 13, + "Paragraph": "Social conditions within the security sector Research has shown that there is a link between (future) crimes committed by security forces and inadequate terms and conditions of service. Poor social conditions within the security sector may also contribute to an unbalanced distribution of ex-combatants between reinte- gration and security sector integration. SSR activities should focus from an early stage on addressing right-financing, man- agement and accountability in security budgeting. An important early measure may be to support the establishment of a chain of payments system to prevent the diversion of sala- ries and ensure prompt payment. These measures may be most effective if combined with a census of the armed and security forces (see Case Study Box 3). In parallel to the DDR process, efforts to enhance the knowledge base of groups responsible for oversight of the security sector should be supported. This may include visits of parliamentarians, repre- sentatives of the Ministry of Labour, the media and civil society organisations to security installations (including barracks). Case Study Box 3 The impact of the census and chain of payments system in the DRC", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b2214568-0d04-42d4-a92d-bd9dbfa2f8cc", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 14, + "Paragraph": "Gender-responsive DDR and SSR The absence of women from the security sector is not just discriminatory but can represent a lost opportunity to benefit from the different skill sets and approaches offered by women as security providers.13 Giving women the means and support to enter the DDR process should be linked to encouraging the full representation of women in the security sector 5.10\tand thus to meeting a key goal of Security Council Resolution 1325 (2000) (see IDDRS 5.10 on Women, Gender and DDR, Para 6.3). If female ex-combatants are not given adequate consideration in DDR processes, it is very unlikely they will be able to enter the security forces through the path of integration. Specific measures shall be undertaken to ensure that women are encouraged to enter the DDR process by taking measures to de-stigmatise female combatants, by making avail- able adequate facilities for women during disarmament and demobilization, and by provid- ing specialised reinsertion kits and appropriate reintegration options to women. Female ex-combatants should be informed of their options under the DDR and SSR processes and incentives for joining a DDR programme should be linked to the option of a career within the security sector when female ex-combatants demobilise. Consideration of the specific challenges female ex-combatants face during reintegration (stigma, non-conventional skill sets, trauma) should also be given when considering their integration into the security sector. Related SSR measures should ensure that reformed security institutions provide fair and equal treatment to female personnel including their special security and protection needs.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "91b1d4f9-8d99-4523-a24d-d5b8685aa0d1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 15, + "Paragraph": "Physical vs. mobile DDR structures When considering demobilization based on semi-permanent (encampment) or mobile de- mobilization sites, a number of SSR-related factors should be taken into account. Mobile demobilization sites may offer greater flexibility for the DDR process as they are easier to set up, cheaper and may pose less of a security risk than encampment (see IDDRS 4.20 on Demobilization). On the other hand, the cantonment of ex-combatants in a physical struc- ture can provide for greater oversight and control in sites that may have longer term utility as part of an SSR process. Planning for demobilization sites should assess the availability of a capable and neutral security provider, paying particular attention to the safety of women, girls and vulnerable groups. Developing a communication strategy in partnership with community leaders should be encouraged in order to dispel misperceptions, better understand potential threats and build confidence. The potential long term use of demobilization sites may also be a factor in DDR planning. Investment in physical sites may be used post-DDR for SSR activities with semi-permanent sites subsequently converted into barracks, thus offering cost savings. Similarly, the infrastructure created under the auspices of a DDR programme to collect and manage weapons may support a longer term weapons procurement and storage system.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "59383f03-567f-481b-af56-a25a018c8652", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "DDR and SSR dynamics to consider before and during reintegration While the military remains a central actor, during the reintegration phase, common DDR/ SSR concerns focus on community safety and policing initiatives. Activities relating to the judiciary, border management and revenue collection, as well as wider issues pertaining to the inclusion of ex-combatants and their receiving communities in local and national decision making processes are also significant.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6f06cc49-1acb-41f2-a2ce-d3416dc8532e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 16, + "Paragraph": "Securing vulnerable communities Targeting reintegration options and securing vulnerable communities represents an im- portant area where synergies can be developed between DDR and SSR programmes. The reintegration of ex-combatants into the community provides a unique opportunity for con- fidence building between law enforcement bodies and local residents. The police has a key role to play in ensuring the safety of returning ex-combatants as well as securing communi- 4.50\tties that may be at greater risk following their return (see IDDRS 4.50 on UN Police Roles and Responsibilities, Para 11). However, police capacities will only be focused on this prior- ity if support to the DDR process is factored into planning, training and resource allocation. The ability of ex-combatants and their receiving communities to communicate their concerns and priorities to local law enforcement agencies, and vice-versa, is a key compo- nent of sustainable reintegration. Reintegration may provide an entry point for the develop- ment of local security plans through constructive dialogue between communities, including vulnerable and marginalised groups, and security providers. Capacity development within the military, police and other community level security providers should be prioritised to ensure police support for DDR objectives. In parallel, mandates and tasking should reflect the critical role of the police in establishing an enabling environment for the successful reintegration of ex-combatants.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "99edfae1-f057-4459-ad05-03513a4cdd5d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 16, + "Paragraph": "Tracking the return of ex-combatants There is a need to identify and act on information relating to the return and reintegration of ex-combatants. This can support the DDR process by facilitating reinsertion payments for ex-combatants and monitoring areas where employment opportunities exist. From an SSR perspective, better understanding the dynamics of returning ex-combatants can help identify potential security risks and sequence appropriate SSR support. Conflict and security analysis that takes account of returning ex-combatants is a com- mon DDR/SSR requirement. Comprehensive and reliable data collection and analysis may be developed and shared in order to understand shifting security dynamics and agree security needs linked to the return of ex-combatants. This should provide the basis for coordinated planning and implementation of DDR/SSR activities. Where there is mistrust between security forces and ex-combatants, information security should be an important consideration.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b3294171-5f1e-4234-aef3-69804aa39a15", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Housing, land and property (HLP) dispute mechanisms HLP projects are often developed to support the return of internally displaced persons (IDPs) and other vulnerable groups. While ex-combatants only represent a small segment of this group, they are more likely to resort to intimidation or force in order to attempt to resolve disputes. Moreover, ex-combatants may find that their land has been occupied as a deliberate strategy of intimidation. HLP therefore offers an opportunity to support re- integration while mitigating potential security problems down the line (see IDDRS module 4.30 on Social and Economic Reintegration). Complementary SSR measures that address the return of ex-combatants may focus on supporting dispute resolution mechanisms as well as addressing related security threats. Engagement with local authorities, community security and justice providers on HLP offers a means to link SSR concerns with support for returning ex-combatants. The devel- opment of special mechanisms for ex-combatants may be considered so that the time- sensitivity and stigma associated with their cases is taken into consideration. This should be balanced against the risk of perceived inequalities between ex-combatants and receiving communities. In either case, it is important to provide sensitisation on available support structures and how to access them.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc89d5e1-a9ff-49d3-8dc8-24234d7a6c15", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 17, + "Paragraph": "Community security initiatives Community security initiatives can be considered as a mechanism for both encouraging acceptance of ex-combatants and enhancing the status of local police forces in the eyes of communities (see IDDRS 4.50 on UN Police Roles and Responsibilities). Community-policing is increasingly supported as part of SSR programmes. Integrated DDR programme plan- ning may also include community security projects such as youth at risk programmes and community policing and support services (see IDDRS 3.41 on Finance and Budgeting). Community security initiatives provide an entry point for developing synergies be- tween DDR and SSR. DDR programmes may benefit from engaging with police public information units to disseminate information about the DDR process at the community level. Pooling financial and human resources including joint information campaigns may contribute to improved outreach, cost-savings and increased coherence.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ac2d89b8-bd23-4d69-acae-d0fe6c1b3685", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 17, + "Paragraph": "DDR, SSR and SALW While DDR and SALW control initiatives tend to take place separately, they are linked because in practice they both seek to manage, reduce and control the availability of weapons. SALW control measures are also closely linked to SSR because they depend on the enforce- ment capacity of the police, the ability of border management bodies to restrict illicit flows of these weapons across borders as well as security sector oversight and accountability mechanisms to ensure appropriate control over national stocks. SALW control initiatives may provide an entry point for coordinating DDR-SSR efforts. Developing linkages between national SALW Commissions and DDR/SSR Commissions may provide one means to institutionalise coordination. To ensure potential synergies are not lost, SALW control measures should form part of joint assessments and be reflected in the design of DDR/SSR programmes. SALW availability should be a component of conflict 4.30\tand security analysis (see IDDRS 4.30 on Social and Economic Reintegration, Section 5.1.).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ba138f0-0f92-4e87-918a-96965d2efb0f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "DDR and the private security sector There is a need to understand the influence of DDR processes on the role and capacities of the private security sector and how this affects the security of communities and individuals (see Case Study Box 4). Ex-combatants are a natural target group for recruitment by pri- vate security bodies. However, the security implications of DDR activities in this area are unclear due to lack of knowledge concerning the nature, capacity, motives and the general lack of oversight and accountability of the private security sector. The scale and role of private security bodies should form part of evaluations of ex- combatants reintegrating into rural and urban settings in order to inform potential SSR responses. Complementary SSR initiatives may include regulation of commercial entities or practical measures at the community level to align the roles and objectives of state and non-state security providers. Case Study Box 4 PSC regulation as an entry point for coordination", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d11a672c-7cfc-4a38-8593-e859421bed71", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "DDR and border management Instability is exacerbated by the flow of combatants as well as the trafficking of people, arms and other goods across porous borders. Cross-border trafficking can provide com- batants with the resource base and motivation to resist entering the DDR process. There is also a risk of re-recruitment of ex-combatants into armed groups in adjacent countries, thus undermining regional stability. Developing sustainable border management capacities can therefore enhance the effectiveness of disarmament measures, prevent the re-recruitment of foreign combatants that transit across borders and contribute to the protection of vulner- able communities. Training and capacity building activities should acknowledge linkages between DDR and border security. Where appropriate, conflict and security analysis should address re- gional security considerations including cross-border flows of combatants in order to coor- dinate responses with border security authorities. At the same time, adequate options and opportunities should be open to ex-combatants in case they are intercepted at the border. Lack of logistics and personnel capacity as well as inaccessibility of border areas can pose major challenges that should be addressed through complementary SSR activities. SALW projects may also benefit from coordination with border management programmes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "85721bb1-9bd4-418f-a9cb-ee7dfd609012", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 19, + "Paragraph": "Programming factors and entry points DDR and related programmes should be mutually supportive and integrated within a common framework (see IDDRS 3.20 on DDR Programme Design). This section proposes ways to appropriately integrate SSR concerns into DDR assessments, programme design, monitoring and evaluation (9.1-9.3). To avoid unrealistic and counter-productive approaches, decisions on how to sequence activities should be tailored to context-specific security, political and socio-economic factors. Entry points are therefore identified where DDR/SSR concerns may be usefully considered (9.4).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "98fc3e7d-d886-4fc3-b50d-345b625c42ff", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 19, + "Paragraph": "SSR-sensitive assessments Needs assessments are undertaken periodically in order to help planners and programmers understand progress and undertake appropriate course corrections. During the period prior to the development of a DDR programme, assessments can have the dual purpose of identifying programming options and providing guidance for DDR-related input into peace agreements. While DDR specialists should be included in integrated assessments that situate DDR within broader UN and national planning (see IDDRS 3.10 on Integrated DDR Planning) this should also be a regular practice for SSR. Promoting joint assessments through includ- ing representatives of other relevant bilateral/multilateral actors should also be encouraged to enhance coherence and reduce duplication. In designing DDR assessments, SSR con- siderations should be reflected in ToRs, the composition of assessment teams and in the knowledge gathered during assessment missions (see Box 5).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9d57f474-a7e9-4d04-9310-6e0f69efed0f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 20, + "Paragraph": "Multidimensional technical assessment mission A first step in the pre-mission planning stage leading to the development of a UN concept of 3.10\toperations is the initial technical assessment (see IDDRS 3.10 on Integrated DDR Planning). In most cases, this is now conducted through a multidimensional technical assessment mission. Multidimensional technical assessment missions represent an entry point to begin en- gaging in discussion with SSR counterparts on potential synergies between DDR and SSR. If these elements are already reflected in the initial assessment report submitted to the Secretary-General, it is more likely that the provisions that subsequently appear in the mis- sion mandate for DDR and SSR will be coherent and mutually supportive.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7bff0d19-fdcc-4a2c-aa33-6745f55a02cd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 20, + "Paragraph": "Detailed field assessments If SSR issues and perspectives are to be integrated at an early stage, assessments and their outputs must reflect a holistic SSR approach and not just partial elements that may be most applicable in terms of early deployment. Situational analysis of relevant political, economic and security factors is essential in order to determine the type of SSR support that will best complement the DDR programme as well as to identify local and regional implications of decisions that may be crafted at the national level. Detailed field assessments that inform the development of the DDR programme should 3.10\tbe linked to the design of SSR activities (see IDDRS 3.10 on Integrated DDR Planning, Para 5.4). This may be done through joint assessment missions combining DDR and SSR com- ponents, or by drawing on SSR expertise throughout the assessment phase. Up to date conflict and security analysis should address the nexus between DDR and SSR in order to support effective engagement (see Box 6). Participatory assessments and institutional capac- ity assessments may be particularly useful for security-related research (see IDDRS 3.20 on DDR Programme Design, Para. 5.3.6).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "aefbec4b-a458-4cf4-86a3-91098694cc37", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 21, + "Paragraph": "Programme design It is particularly important that each phase of DDR programme design (see IDDRS 3.20 on DDR Programme Design) addresses the context-specific political environment within which DDR/SSR issues are situated. Shifting political and security dynamics means that flexibility is an essential design factor. Specific elements of programme design should be integrated within overall strategic objectives that reflect the end state goals that DDR and SSR are seeking to achieve. Detailed field assessments should cover political and security issues as well as identifying key national and international stakeholders in these processes (see Box 6). The programme development and costing phase should result in indicators that reflect the relationship between DDR and SSR. These may include: linking disarmament/demobilization and community security; ensuring integration reflects national security priorities and budgets; or demonstrating that operational DDR activities are combined with support for national management and oversight capacities. Development of the DDR implementation plan should integrate relevant capacities across UN, international community and national stake- holders that support DDR and SSR and reflect the implementation capacity of national authorities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1f0822af-d103-4650-86c6-0d8ce46f43d2", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 21, + "Paragraph": "Monitoring and evaluation Monitoring and evaluation can provide for a structured approach to recognising and opera- tionalising the linkages between DDR and SSR. It also serves as a mechanism for enhancing knowledge management and transfer. A common challenge results from information gaps due to rapidly changing political and security dynamics. While the MIS provides a structured means of collecting information, baseline data should be established and continuously mon- itored to adjust to changing conditions. In outcome evaluations, effective monitoring and evaluation should provide an entry point for reviewing DDR and SSR programmes to ensure that they are planned in a mutually supportive manner (see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes). Reports of impact evaluations may provide a useful basis for analysing the intended impact of DDR/SSR programmes, identifying their unintended consequences as well as adjusting programming objectives and priorities as appropriate. Mid-term reviews should be used as an opportunity to assess effectiveness and make necessary changes to programmes.14", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e68cdca3-d58c-4a62-9472-3770b06ea9da", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 19, + "Paragraph": "Entry points Linking international support to a broad based, nationally owned process provides an important basis for coherent DDR and SSR programming. As discussed below, national dialogue, peace processes and national security or sector-specific policy reviews all repre- sent entry points to link DDR and SSR within a broader national governance framework. 3.20 3.20", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "da7a1d2b-f8ee-4cf6-a200-12c17aa26de5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 22, + "Paragraph": "National dialogue Holding a national seminar does not mean that a common vision of necessary reform measures will (or should) be the outcome. Rather, it can mark the start of a participatory process of dialogue intended to clarify national needs and values and thus link short term security goals to longer term objectives. How national dialogue processes are designed and implemented may be more important than concrete outputs. Broad participation, in- cluding the transitional or elected authorities as well as representatives of the security sector, oversight bodies and civil society is important to enhance legitimacy and relevance. They can occur before or after the signing of a peace agreement. Equally, they can take place during transitional periods or following national elections to provide impetus to the peacebuilding process. National dialogue processes should be supported as a means to foster common under- standings of DDR and SSR challenges (See Case Study Box 5). Depending on the circumstances, specific sectoral presentations at national seminars may be useful to share developments in different parts of the security sector, foster national ownership and better understand the expectations and perspectives of different stakeholder groups. A sub-group on DDR-SSR linkages or specific sub-groups on issues such as political good governance may be established in order to develop knowledge and raise awareness on this nexus. Support to national dia- logue processes should include provision of follow-up mechanisms to enhance sustainability. Case Study Box 5 DDR & the national dialogue on SSR in the CAR", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "96552558-1f25-4031-be07-f606dbb18df0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 22, + "Paragraph": "Peace agreements Peace processes serve as an early opportunity to ensure DDR and SSR concerns are in- cluded on the national agenda and linked within a common framework.15 While DDR decisions often form part of agreements, the relationship between these provisions and decisions on the size and nature of post-conflict security forces frequently reflect the im- mediate priorities and interests of the different parties\u2014such as maintaining a power base and rewarding allies\u2014rather than being determined by the security needs of the state and its citizens. In supporting peace processes, SSR concerns should therefore influence approach and substance. Where feasible, decisions within peace agreements on demobilization and retention of ex-combatants should be informed by the needs of the future security sector. Given that SSR frameworks will evolve long after the conclusion of peace negotiations, flexibility is important to ensure that parties are not tightly bound to decisions (e.g. on force size) that later prove unrealistic. However, agreement on the broad frameworks of subsequent SSR processes, especially commitments to consultative mechanisms, can provide parties with confidence in and commitment to both the initial DDR programme and recognition of the linkages with longer term SSR requirements. The provision of both DDR and SSR expertise within negotiations can ensure coherence between the two processes. In particular, it is important that advisers promote a broad understand- ing of SSR that links reform of security providers to issues of management, oversight and accountability. Providing expertise drawn from the same region and ensuring a role for regional political organisations in negotiations may provide additional credibility through their contextual awareness and legitimacy.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "549de91a-d1ea-49ce-acd4-ee84ee35e24c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 23, + "Paragraph": "Transitional arrangements Transitional political arrangements offer clear entry points and opportunities to link DDR and SSR. In particular, transitional arrangements often have a high degree of legitimacy when they are linked to peace agreements and can be used to prepare the ground for longer term reform processes. However, a programmatic approach to SSR that offers opportunities to link DDR to longer term governance objectives may require levels of political will and legiti- mate governance institutions that will most likely only follow the successful completion of national elections that meet minimum democratic standards. During transitional periods prior to national elections, SSR activities should address immediate security needs linked to the DDR process while supporting the development of sustainable national capacities. Building management capacity, promoting an active civil society role and identifying practical measures such as a security sector census or improved payroll system can enhance the long term effectiveness and sustainability of DDR and SSR programmes. In the absence of appropriate oversight mechanisms for the security sector, supporting an ad hoc mechanism to oversee the DDR process, which includes a coordina- tion mechanism for DDR and SSR, should be considered. Such provision should include the subsequent transfer of competencies to formal oversight bodies.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c6cc2659-2a48-4092-9350-52fddba23ed7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 23, + "Paragraph": "Elections Elections should serve as an entry point for discussions on DDR and SSR. While successful elections can provide important legitimacy for DDR and SSR processes, they tend to mono- polise the available political space and thus strongly influence timelines and priorities, including resource allocation for DDR and SSR. Army integration may be prioritised in order to support the provision of effective security forces for election security while SSR measures may be designed around the development of an election security plan which brings together the different actors involved. Election security can provide a useful catalyst for discussion on the roles and respon- sibilities of different security actors. It may also result in a focus on capacity building for police and other bodies with a role in elections. Priority setting and planning around sup- port for elections should be linked to longer term SSR priorities. In particular, criteria for entry and training for ex-combatants integrating within the security sector should be con- sistent with the broader values and approaches that underpin the SSR process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6525f0ef-a27f-49d2-9a52-25165c1dd0f5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "National commissions National DDR commissions exist in many of the countries that embark on DDR processes and are used to coordinate government authorities and international entities that support 3.30\tthe national DDR programme (see IDDRS 3.30 on National Institutions for DDR). National DDR commissions therefore provide an important entry point to incorporate SSR-relevant approaches and priorities. The ToRs of National DDR commissions may provide an opportunity to link national DDR and SSR capacities. For example, the commission may share information with rele- vant Ministries (beyond the Ministry of Defence) such as Justice and the Interior as well as the legislative and civil society. Depending on the context, national commissions may be- come permanent parts of the national security sector governance architecture. This can help to ensure that capacities developed in support of a DDR programme are retained within the system beyond the lifespan of the DDR process itself.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "349616d1-94cb-4ef1-b8f1-e84ddd1e434b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "Supporting national and international capacities This section addresses the common challenge of operationalising national ownership in DDR and SSR programmes. It then considers how to enhance synergies in international support for DDR and SSR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "612f3141-ee4b-4425-9184-297f073e7318", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "National ownership Weak institutions and limited capacities are frequently cited as impediments to national ownership in post-conflict contexts. However, this points to the need for a dual focus on supporting transparent, inclusive national decision-making combined with the develop- ment of sustainable national capacities. Due attention to national ownership is therefore critical to addressing challenges of legitimacy and sustainability that are common to DDR and SSR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "37c6a545-b87d-433d-924c-55cbbd6f50cd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "Participation and consultation National ownership extends beyond central government to include a wide range of actors with a role in security provision, management and oversight. An important component of the DDR assessment phase should therefore be to identify national stakeholders that can contribute to the process. Supporting the meaningful involvement of parliament, civil soci- ety as well as local authorities and communities in DDR and SSR decision-making can help ensure that programmes are realistic and respond to local needs. The development of a comprehensive national security strategy (NSS) or narrower, sector specific strategies can (and should) be a lengthy process that continues after DDR is underway. However, insights drawn from discussions at national and local levels should be reflected in the de- sign, implementation and sequencing of DDR and SSR programmes. A process of national dialogue (see 9.4.1.) can help shape DDR/SSR frameworks that are underpinned by context-specific political and security considerations. Processes enacted to develop national or sector-specific security strategies should inform priorities and har- monise the roles of actors involved in both DDR and SSR (see Box 7). Participation should be encouraged from relevant government ministries (e.g. interior, finance, defence, intelli- gence, police, justice, immigration, health, education, labour, social welfare, gender, national HIV/AIDS Programme Councils), as well as legislative committees and financial manage- ment bodies. Civil society represents a key target group in helping to build trust, fostering \u2018buy in\u2019 and avoiding perceptions that the security sector is de-linked from the needs of citizens. Community consultations and communications strategies should be developed with national and local media to enhance dialogue processes in support of DDR and SSR programmes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9319235b-62f4-4626-af67-95a0d95c1261", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 25, + "Paragraph": "Capacity development Supporting the development of relevant national capacities to develop, manage and imple- ment programmes enhances the effectiveness of DDR and SSR while creating cross-cutting skills that contribute to the long term integrity of security institutions. Given their experi- ence, ex-combatants may play a significant role in these areas at national and community levels. In particular, a focus on security sector management and oversight provides an important means of contributing to sustainable national capacities. Identifying national capacity gaps linked to DDR/SSR should be an important objec- tive of needs assessments (see Box 6). Opportunities to develop cross-cutting skills (e.g. strategic planning, human resources, financial management, including gender budgeting, communications and outreach) should be agreed and prioritised with national authorities. Measures to enhance national capacities for democratic control and civilian oversight and to develop effective checks and balances within a clear legal framework are particularly important. Support for parliaments in fulfilling their oversight function can promote trans- parency and therefore trust in programmes and their use of resources.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f44c483f-77f4-4083-be17-1f62df0c8429", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 4, + "Paragraph": "Sustainability The politically sensitive nature of decisions relating to DDR and SSR means that external actors must pay particular attention to both the form and substance of their engagement. Close understanding of context, including identification of key stakeholders, is essential to ensure that support to national actors is realistic, culturally sensitive and sustainable. Externally- driven pressure to move forward on programming priorities will be counter-productive if this is de-linked from necessary political will and implementation capacity to develop policy and implement programmes at the national level. The design, implementation and timing of external support for DDR and SSR should be closely aligned with national priorities and capacities (see Boxes 6, 7 and 8). Given that activities may raise concerns over interference in areas of national sovereignty, design and approach should be carefully framed. In certain cases, \u201cdevelopment\u201d or \u201cprofessionalisation\u201d rather than \u201creform\u201d may represent more acceptable terminology. Setting out DDR/SSR commitments in a joint letter of agreement and regularly monitoring implementation pro- vides a transparent means to set out agreed commitments between national authorities and the international community.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "d5e43202-57a9-4071-bc17-9677a1935251", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 24, + "Paragraph": "International support A common challenge for DDR and SSR programmes is to develop approaches where exter- nal assistance supports national actors in defining and implementing their own security needs and objectives. While operationalising national ownership remains a major challenge for the international community, this can be mitigated through effective coordination, en- hanced capacities and targeted funding.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3921bca5-d1c1-47e4-ad9c-ba1f11268c5e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "Coordination Improved coordination can support more coherent policy making and programming that takes into account the nexus between DDR and SSR. By contrast, parallel or contradictory approaches risk undermining common objectives to support national DDR and SSR proc- esses. While DDR is characterised by a strong UN role, SSR activities (and funding) are predominantly supported by bilateral donors through specific arrangements with national authorities. In some cases there may be a mixed approach, for example, with bilateral partners supporting army reform, whereas UN Police is advising on rebuilding the police sector. Promoting \u2018joint\u2019 assessments and develop- ing in-country coordination mechanisms can provide a clearer basis for developing co- herent international support in these areas. In practice, limited overlap between ac- tors engaged in DDR and SSR indicates a need to establish more effective coordination mechanisms. The UN may in many cases provide a coordinating role for international support in a given context. Mapping the var- ious actors involved in DDR and SSR and their activities provides a structured basis to identify gaps and build synergies across the international community (see Case Study Box 6 below). Agreeing common understandings of \u2018SSR\u2019, consistent with the UN approach and other relevant policy frameworks is an important starting point for coordination. The creation of a joint steering committee or similar coordination mechanism for DDR/SSR may contribute to enhancing coherence throughout programme implementation. However, sufficient political will to implement \u2018joined up\u2019 approaches remains the key enabling fac- tor for improved coordination. Case Study Box 6 Strengthening SSR coordination in Burundi", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a22a171e-0b14-48a3-b3fc-e061090f359d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "Capacities Support to DDR/SSR processes requires the deployment of a range of different capacities.17 Awareness of the potential synergies that may be realised through a coherent approach to these activities is equally important. Appropriate training offers a means to develop such awareness while including the need to consider the relationship between DDR and SSR in the terms of reference (ToRs) of staff members provides a practical means to embed this issue within programmes. Cross-participation by DDR and SSR experts in tailored training programmes that ad- dress the DDR/SSR nexus should be developed to support knowledge transfer and foster common understandings. Where appropriate, coordination with SSR counterparts (and vice versa) should be included in the ToRs of relevant headquarters and field-based personnel. Linking the provision of DDR/SSR capacities to a shared vision of DDR/SSR objectives in a given context and an understanding of comparative advantages in different aspects of DDR/ SSR should be an important component of joint coordination and planning (see 10.2.1.).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c9cb9660-a101-4568-888b-609ace89b8ee", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 27, + "Paragraph": "10.2.3 Funding Recognizing that the success of DDR may be linked to progress in SSR, or vice versa, re- quires sensitivity to the need to invest simultaneously in related programmes. Implementation of DDR and SSR programmes is frequently hampered by the non-availability or slow disburse- ment of funds. Delays in one area due to lack of funding can mean that funds earmarked for other key activities can also be blocked. If ex-combatants are forced to wait to enter the DDR process because of funding delays, this may result in heightened tensions or participants abandoning the process. Given the context specific ways that DDR and SSR can influence each other, there is no ideal model for integrated DDR-SSR funding. Increased use of multi-donor trust funds that address both issues represents one potential means to more effectively integrate DDR and SSR through pooled funding. National ownership is a key consideration: funding support for DDR/SSR should reflect the absorptive capacity of the state, including national resource limitations. In particular, the levels of ex-combatants integrated within the reformed security sector should be sus- tainable through national budgets. Supporting measures to enhance management and oversight of security budgeting provide an important means to support the effective use of limited resources for DDR and SSR. Improved transparency and accountability also contributes to building trust at the national level and between national authorities and international partners.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6ed768be-ead5-44ea-9f9e-a60b14a37a13", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 28, + "Paragraph": "Planning and design checklist The following is an indicative checklist for considering DDR-SSR linkages. Without being exhaustive, it summarises key points emerging from the module relevant for policy mak- ers and practitioners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2b8e1310-ca6c-48bc-9f0a-05981f1a5751", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "General Have measures been taken to engage both DDR and SSR experts in the negotiation of peace agreements so that provisions for the two are mutually supportive? Are a broad range of stakeholders involved in discussions on DDR and SSR in peace negotiations including civil society and relevant regional organisations? Do decisions reflect a nationally-driven vision of the role, objective and values for the security forces? Have SSR considerations been introduced into DDR decision-making and vice versa? Do assessments include the concerns of all stakeholders, including national and inter- national partners? Have SSR experts commented on the terms of reference of the assess- ment and participated in the assessment mission? Is monitoring and evaluation carried out systematically and are efforts made to link it with SSR? Is M&E used as an entry-point for linking DDR and SSR concerns in planning?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0dab698b-0b76-423d-be59-90904482bce1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 28, + "Paragraph": "SSR/DDR dynamics before and during demobilization Has the potential long-term use of demobilization and disarmament sites been fac- tored into planning for DDR? Have disarmament programmes been complemented by security sector training and other activities to improve national control over stocks of weapons and ammunition? Has a security sector census been considered/implemented to support human and financial resource management and inform integration decisions? Have clear criteria been developed for entry of ex-combatants into the security sector? Does this reflect national security priorities as well as the capacity of the security forces to absorb them? Is provision made for vetting to ensure appropriate skills and consid- eration of past conduct? Have rank harmonisation policies been introduced which establish a formula for con- version from former armed groups to national armed forces? Was this the result of a dialogue which considered the need for affirmative action for marginalised groups? Is there a sustainable distribution of ex-combatants between the reintegration and inte- gration programmes? Has information been disseminated and counselling been offered to ex-combatants facing a voluntary choice between integration and reintegration? Have measures been taken to identify and address potential security vacuums in places where ex-combatants are demobilized, and has this information been shared with rel- evant authorities? Are security concerns related to dependents taken into account? Have efforts been made to actively encourage female ex-combatants to enter the DDR process? Have they been offered the choice to integrate into the security sector? Has appropriate action been taken to ensure that the security institutions provide women with fair and equal treatment, including realistic employment opportunities? Is there a communications/training strategy in place? Does it include messages specifi- cally designed to facilitate the transition from combatant to security provider including behaviour change, HIV risks and GBV?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bea0e52d-4099-40cf-b664-1b15ecca7429", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 29, + "Paragraph": "SSR/DDR dynamics before and during reintegration Is data collected on the return and reintegration of ex-combatants? Is this analysed in order to coordinate relevant DDR and SSR activities? Has capacity-building within the security sector been prioritised in a way to ensure that security institutions are capable of supporting DDR objectives? Have ex-combatants been sensitised to the availability of housing, land and property dispute mechanisms? In cases where private security bodies are a source of employment for ex-combatants, are efforts actively made to ensure their regulation and that appropriate vetting mech- anisms are in place? Have border management services been sensitised and trained on issues relating to cross-border flows of ex-combatants?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b7d249fa-2c97-4b66-912e-7fbd3bcfd1a5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 18, + "Paragraph": "Coordination Have opportunities been taken to engage with national security sector management and oversight bodies on how they can support the DDR process? Is there a mechanism that supports national dialogue and coordination across DDR and SSR? If not, could the national commission on DDR fulfil this role by inviting representatives of other ministries to selected meetings? Are the specific objectives of DDR and SSR clearly set out and understood (e.g. in a \u2018letter of commitment\u2019)? Is this understanding shared by national actors and interna- tional partners as the basis for a mutually supportive approach?", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5871b651-7b87-4aca-82b0-003f60f53b36", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 30, + "Paragraph": "Knowledge management When developing information management systems, are efforts made to also collect data that will be useful for SSR? Is there a mechanism in place to share this data? Is there provision for up to date conflict and security analysis as a common basis for DDR/SSR decision-making? Have efforts been made to share information with border management authorities on high risk areas for foreign combatants transiting borders? Has regular information sharing taken place with relevant security sector institutions as a basis for planning to ensure appropriate support to DDR objectives? Are adequate mechanisms in place to ensure institutional memory and avoid over reliance on key individuals? Are assessment reports and other key documents retained and easily accessible in order to support lessons learned processes for DDR/SSR?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0d5f1e40-86b4-4043-b186-1346a11ff1ee", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 27, + "Paragraph": "Funding Does resource planning seek to identify gaps, increase coherence and mitigate compe- tition between DDR and SSR? Have the financial resource implications of DDR for the security sector been considered, and vice versa? Are DDR and SSR programmes realistic and compatible with national budgets?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "886c49db-a659-4a64-9821-9fe05327586e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": 30, + "Paragraph": "Capacity development, pooling resources and training Have efforts been made to sensitise staff on the DDR/SSR nexus through training or other activities? Has the need for personnel to link DDR and SSR concerns been clearly agreed at Head- quarters and included in the ToRs of relevant personnel? Has cross-participation in DDR or SSR training been implemented to foster knowledge transfer and build relationships? Have key skills sets been identified and provision made for the availability of a multi- disciplinary resource pool? Are linguistic and \u2018knowledge transfer\u2019 skills adequately represented in order to support national capacity development? In the area of national capacity-building, has the development of cross-cutting skills such as human resources and financial management (common requirements for both DDR and SSR) been encouraged? Has pooling financial and physical resources for DDR and SSR been considered, for example, in the area of community security initiatives or SALW initiatives? Are UN personnel aware of available SSR Resources, including through the UN Inter- Agency SSR Task Force (e.g. policy guidance, resources, gap analysis, backstopping)?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "41e5b9ac-9aa6-4186-a479-4d93f83385cd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Report of the Secretary-General on \u201cThe rule of law and transitional justice in conflict and post-conflict societies\u201d (2004) The Secretary-General\u2019s Report \u201cThe rule of law and transitional justice in conflict and post-conflict societies,\u201d defines the rule of law as \u201ca principle of governance in which all persons, institutions and entities, public and private, including the State itself, are account- able to laws that are publicly promulgated, equally enforced and independently adjudicated, and which are consistent with international human rights norms and standards\u201d.18 DDR is identified as one key element of \u201ctransitioning out of conflict and back to normalcy.\u201d", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8115f53e-f992-4c73-9067-dd2aa0d80d0b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Report of the Secretary-General on \u201cDisarmament, demobilization and reintegration\u201d (2006) The Secretary-General\u2019s report on \u201cDisarmament, demobilization and reintegration\u201d dis- cusses the increased engagement of the United Nations in DDR from 2000-2005 in peace- keeping and non-peacekeeping contexts. Some important \u201clessons learned\u201d from this work include: 1) DDR cannot be implemented without coordinating with the wider peacebuild- ing and recovery process; 2) DDR work should continue beyond the life of a traditional peacekeeping operation thus national capacities must be developed to ensure sustainability; 3) a fragmented approach to DDR is counterproductive; and 4) DDR \u201cmust also be planned in close coordination with transitional processes to review and reform the rule of law and security sectors, as well as efforts to control and reduce small arms proliferation.\u201d19", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "6dcfc012-2c98-49e5-849f-5af188c11aaf", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Presidential Statement on \u201cMaintenance of international peace and security: role of the Security Council in supporting security sector reform\u201d (21 February 2007) The Presidential Statement of 21 February 2007 emphasises that \u201creforming the security sector in post-conflict environments is critical to the consolidation of peace and stability, promoting poverty reduction, rule of law and good governance, extending legitimate state authority, and preventing countries from relapsing into conflict.\u201d20 The importance of a \u201cprofessional\u201d and \u201caccountable\u201d security sector as well as an \u201cimpartial\u201d justice sector are critical to sustainable peace and development. The fundamental role of the United Nations in \u201cpromoting comprehensive, coherent, and co-ordinated international support to nationally- owned security sector reform programmes, implemented with the consent of the country concerned\u201d is stressed, as is the need for a balanced approach to SSR that considers institu- tional capacity, affordability and sustainability of SSR programmes. Inter-linkages between SSR and \u201ctransitional justice, disarmament, demobilization and repatriation, reintegration and rehabilitation of former combatants, small arms and light weapons control, as well as gender equality, children and armed conflict and human rights issues\u201d are emphasised.21", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c1edd204-7080-4c70-83db-e00eefd4f14b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Report of the Secretary-General on \u201cSecuring peace and development: the role of the United Nations in supporting security sector reform\u201d (2008) The Secretary-General\u2019s report \u201cSecuring peace and development: the role of the United Nations in supporting security sector reform\u201d, notes that \u201cthe development of effective and accountable security institutions on the basis of non-discrimination, full respect for human rights and the rule of law is essential\u201d.22 As part of a holistic strategy, the United Nations can play a normative as well as operational role in SSR. Normatively, the United Nations can \u201c[elaborate] policies and guidelines for the implementation of security sector reform plans and programmes and ensure that peacekeeping operations and United Nations country teams engaged in reform receive practical guidance and assistance in the estab- lishment of benchmarks and other evaluation processes\u201d.23 Operationally, the United Nations can: 1) provide a minimum level of security from which to launch SSR activities; 2) support needs assessments and strategic planning efforts; 3) facilitate dialogue among the many actors and stakeholders involved in a country\u2019s SSR process; 4) provide technical advice on defence and law enforcement institutions, border management, crime prevention and customs, among others; 5) coordinate and mobilize resources; 6) support the development of oversight mechanisms; and 7) support monitoring, evaluation and review efforts.24", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2be73c93-fabe-4f75-9e53-83daee0f28ef", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.10-DDR-and-SSR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.10-DDR-and-SSR", + "PageNum": null, + "Paragraph": "Presidential Statement on \u201cMaintenance of international peace and security: role of the Security Council in supporting security sector reform\u201d (12 May 2008) The Presidential Statement of 12 May 2008 on supporting security sector reform highlights that SSR is a long-term process and that \u201cit is the sovereign right and primary responsibil- ity of the country concerned to determine its national approach and priorities for security sector reform\u201d.25 The statement also reiterates that a holistic and coherent UN approach is needed and underlines the important role the Peacebuilding Commission \u201ccan play in ensuring continuous international support to countries emerging from conflict.\u201d26", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "44a972e6-e40d-4a3d-8228-e318ff7092b3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Summary This module on DDR and transitional justice aims to contribute to accountable DDR pro- grammes that are based on more systematic and improved coordination between DDR and transitional justice processes, so as to best support the successful transition from con- flict to sustainable peace. It is intended to provide a legal framework, guiding principles and options for policymakers and programme planners who are contributing to strategies that aim to minimize tensions and build on opportunities between transitional justice and DDR. Coordination between transitional justice and DDR programmes begins with an under- standing of how transitional justice and DDR may interact positively in the short-term in ways that, at a minimum, do not hinder their respective objectives of accountability and stability. Coordination between transitional justice and DDR practitioners should, however, aim beyond that. Efforts should be undertaken to constructively connect these two proc- esses in ways that contribute to a stable, just and long-term peace.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "27b8f266-29bc-42a4-88fa-978d55c069a9", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Module scope and objectives This module will explore the linkages between DDR programmes and transitional justice measures that seek prosecutions, truth-seeking, reparation for victims and institutional reform to address mass atrocities that occurred in the past. It is based on the principle that DDR programmes that are informed by international humanitarian law and international human rights law are more likely to achieve the long term objectives of the programme and be better supported by the international community. It aims to contribute to DDR programmes that comply with international standards and promote transitional justice objectives by pro- viding a relevant legal framework and set of guidelines and options for practitioners to consider when designing, implementing, and evaluating DDR programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a8f4ab36-7219-48a0-b166-ebbb7a7e8ef7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Terms, definitions, and abbreviations Annex A contains a list of terms and definitions used in this module. A complete glossary of all terms, definitions and abbreviations used in this series of Integrated DDR Standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards. This use is consistent with the language used in the Inter- national Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c8706847-5cfa-4810-a345-72ace1ee4c60", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 4, + "Paragraph": "Introduction Since the mid-1980s, societies emerging from violent conflict or repressive rule have often chosen to address past violations of international human rights law and international humani- tarian law through transitional justice measures. Transitional justice \u201ccomprises the full range of processes and measures associated with a society\u2019s attempts to come to terms with a legacy of large-scale past abuses, in order to ensure accountability, serve justice and achieve reconciliation.\u201d1 (S/2004/616) It is primarily concerned with gross violations of international human rights law2 and seri- ous violations of international humanitarian law. Transitional justice measures may in- clude judicial and non-judicial responses such as prosecutions, truth commissions, reparations programmes for victims and tools for institutional reform such as vetting. Whatever combination is chosen must be in conformity with international legal standards and obligations. This module will also provide information on locally-based processes of justice, justice for women, and justice for children. Transitional justice measures are increasingly part of the political package that is agreed to by the parties to a conflict in a cease-fire or peace agreement. Subsequently, it is not uncommon for DDR programmes and transitional justice measures to coexist in the post- conflict period. The overlap of transitional justice measures with DDR programmes can create tension. Yet the coexistence of these two types of initiatives in the immediate aftermath of conflict\u2014one focused on accountability, truth and redress and the other on security\u2014 may also contribute to achieving the long-term shared objectives of reconciliation and peace. DDR may contribute to the stability necessary to implement transitional justice ini- tiatives; and the implementation of transitional justice measures for accountability, truth, redress and institutional reform can increase the likelihood that DDR programmes will achieve their aims, by strengthening the legitimacy of the programme from the perspec- tive of the victims of violence and their communities, and contributing in this way to their willingness to accept returning ex-combatants. The relationship between DDR programmes and transitional justice measures can vary widely depending on the country context, the manner in which the conflict was fought and how it ended, and the level of involvement by the international community, among many other factors. In situations where DDR programmes and transitional justice meas- ures coexist in the field, both stand to benefit from a better understanding of their respec- tive mandates and ultimate aims. In all DDR processes there is a need to understand how DDR programmes link in with other aspects of a peace consolidation process, be they political, humanitarian, security or justice related, so as to avoid one process impacting negatively on another. UN-supported DDR aims to be people-centred, flexible, accountable and 2.10\ttransparent; nationally owned; integrated; and well planned (see IDDRS 2.10 on the UN Approach to DDR). This module therefore further aims to contribute to an accountable DDR that is based on more systematic and improved coordination between DDR and tran- sitional justice processes so as to best facilitate the successful transition from conflict to sustainable peace. Box 1 Primary approaches to transitional justice Prosecutions \u2013 are the conduct of investigations and judicial proceedings against an alleged perpetrator of a crime in accordance with international standards for the administration of justice. For the purposes of this module, the focus is on the prosecution of individuals accused of criminal conduct involving gross violations of international human rights law, serious violations of interna- tional humanitarian law and violations of international criminal law. Prosecutions initiatives can vary. They can be broad in scope, aiming to try many perpetrators, or they can be narrowly focused on those that bear the most responsibility for the crimes committed. Reparations \u2013 are a set of measures that provides redress for victims of gross violations of international human rights law, serious violations of international humanitarian law and violations of international criminal law. Reparations can take the form of restitution, compensation, rehabili- tation, satisfaction, and guarantees of non-repetition. Reparations programs have two goals: first, to provide recognition for victims because reparation are explicitly and primarily carried out on behalf of victims; and, second, to encourage trust among citizens, and between citizens and the state, by demonstrating that past abuses are regarded seriously by the new government. Truth commissions \u2013 are non-judicial or quasi-judicial fact-finding bodies. They have the primary purpose of investigating and reporting on past abuses in an attempt to understand the extent and patterns of past violations, as well as their causes and consequences. The work of a commission is to help a society understand and acknowledge a contested or denied history, and bring the voices and stories of victims to the public at large. It also aims at preventing further abuses. Truth commissions can be official, local or national. They can conduct investigations and hearings, and can identify the individuals and institutions responsible for abuse. Truth commissions can also be empowered to make policy and prosecutorial recommendations. Institutional reform \u2013 is changing public institutions, including those that may have perpetu- ated a conflict or served a repressive regime, and transforming them into institutions that are more effective and accountable and thus better able to support the transition, sustain peace and preserve the rule of law. Following a period of massive human rights abuse, building fair and efficient public institutions play a critical role in preventing future abuses. It also enables public institutions, in particular in the security and justice sectors, to provide criminal accountability for past abuses.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "6604b193-ad83-4101-881c-4735d170ceb0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 5, + "Paragraph": "Background There are good reasons to anticipate a rise in situations where DDR and transitional justice initiatives will be pursued simultaneously. Transitioning states are increasingly using transitional justice measures to address past violations of international human rights law and humanitarian law, and prevent such violations in the future. At present, formal institutional connections between DDR and transitional justice are rarely considered. In some cases, the different timings of DDR and transitional justice processes constrain the forging of more formal institutional interconnections. Disarmament and demobilization components of DDR are frequently initiated during a cease-fire, or immediately after a peace agreement is signed; while transitional justice initiatives often require the forming of a new government and some kind of legislative approval, which may delay implementation by months or, not uncommonly, years. Additionally, DDR processes and transitional justice initiatives have very different constituencies: DDR pro- grammes are directed primarily at ex-combatants while transitional justice initiatives focus more on victims and on society more generally. The lack of coordination between transitional justice and DDR may lead to unbal- anced outcomes and missed opportunities. One outcome, for example, is that victims receive markedly less attention and resources than ex-combatants. The inequity is most stark when comparing benefits for ex-combatants with reparations for victims. In many cases the latter receive nothing whereas ex-combatants usually receive some sort of DDR package. The im- balance between the benefits provided to ex-combatants and the lack of benefits provided to victims has led to criticism by some that DDR rewards violent behaviour. Enhanced coordination between DDR and transitional justice measures may create opportunities to mitigate this imbalance and increase the legitimacy of the DDR programme from the per- spective of the communities which need to accept returning ex-combatants. The relationships between DDR and transitional justice are important to consider be- cause both processes are critical components of strategies for peacekeeping and peace- building. UN peacekeeping operations have increasingly been entrusted with mandates to promote and protect human rights and accountability, as well as to assist national authori- ties in strengthening the rule of law. For example, the UN Peacekeeping Operation in the Democratic Republic of the Congo was given a specific mandate \u201cto contribute to the dis- armament portion of the national programme of disarmament, demobilization and reinte- gration (DDR) of Congolese combatants and their dependants, in monitoring the process and providing as appropriate security in some sensitive locations;\u201d as well as \u201cto assist in the promotion and protection of human rights, with particular attention to women, children and vulnerable persons, investigate human rights violations to put an end to impunity, and continue to cooperate with efforts to ensure that those responsible for serious violations of human rights and international humanitarian law are brought to justice\u201d.3 Importantly DDR and transitional justice also aim to contribute to peacebuilding and 2.20\treconciliation (see IDDRS 2.20 on Post-conflict Stabilization, Peace-building and Recovery Frameworks). DDR programmes may contribute to peacemaking and stability, creating environments more conducive to establishing transitional justice measures. Comprehensive approaches to transitional justice may address some of the root causes of conflict, provide accountability for past violations of international human rights and humanitarian law, and inform the institutional reform necessary to prevent the reemergence of violence. To that end they are \u201cmutually reinforcing imperatives\u201d.4 Reconciliation remains a difficult concept to define or measure. There is no single model for overcoming divisions and building trust within societies recovering from conflict or totalitarian rule. DDR aims to encourage trust and confidence between ex-combatants, society and the State by presenting a transparent process by which former fighters give up their weapons, renounce their affiliations to armed groups, and commit to respecting the basic norms and laws including in the resolution of conflicts and the struggle for political 2.10\tpower (see IDDRS 2.10 on the UN Approach to DDR). Transitional justice initiatives aim to build trust between victims, society, and the state through transitional justice measures that provide some acknowledgement from the State that citizen rights have been violated and that they deserve justice, truth and reparation. Increased consultation with victims\u2019 groups, communities receiving demobilized combatants, municipal governments, faith- based organizations and the demobilized combatants and their families, may inform and strengthen the legitimacy of DDR and transitional justice processes and enhance the pros- pects of reconciliation.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a1fd9e1d-b145-4852-80ae-1e572d80f34e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 7, + "Paragraph": "International legal framework for transitional justice The Charter of the United Nations, the Universal Declaration of Human Rights, interna- tional human rights law, international humanitarian law, international criminal law and international refugee law provide the normative framework for transitional justice. In rec- ognition of these international instruments, transitional justice mechanisms seek to ensure compliance with the right to justice, the right to truth, the right to reparations, and the guarantees of non-repetition. Various widely ratified human rights and humanitarian law treaties require States to ensure punishment of specific offences.5 Furthermore, treaty bodies repeatedly found that amnesties that foreclose criminal prosecutions of gross violations of human rights violate States\u2019 obligations under these treaties. An amnesty that impeded victims\u2019 recourse to effective civil remedy would also violate this obligation. The important developments in international law and practice related to transitional justice and witnessed in the last several decades, have been reflected in the Updated Set of Principles for the protection and promotion of human rights through action to combat impunity 6 (E/CN.4/2005/102/Add.1) and in the Basic Principles and Guidelines on the Right to a Remedy and Reparation for Victims of Gross Violations of International Human Rights Law and Serious Violations of the International Humanitarian Law.7 (A/RES/60/147) The Updated Principles affirm the need for a comprehensive approach towards combating impunity, including investigations and prosecutions, remedies and reparations, truth seeking, and guarantees of non-repetition of violations.\u201d8 Furthermore, the 2004 Report of the Secretary General on The rule of law and transitional justice in conflict and post-conflict societies (S/2004/616) is a notable contribution to the UN doctrine on transitional justice and highlights key issues and lessons learned from the UN experiences.9 While not exhaustive, the following section provides an overview of some of the inter- nationally recognized rights relevant to transitional justice processes and DDR. It also offers a review of the various transitional justice measures that could be established to implement these rights.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "12ed515d-c0a8-42b3-82b5-2edb1d672cba", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 7, + "Paragraph": "The right to justice Various widely ratified human rights and humanitarian law treaties require State parties to investigate, prosecute and bring to justice the perpetrators of specific offences (see also the Updated Principles, principle 19). Amnesties that foreclose prosecution of those respon- sible for genocide, crimes against humanity, war crimes or gross violations of human rights are inconsistent with States\u2019 obligations under international law10 and the UN policy. The \u201cUnited Nations-endorsed peace agreements may never promise amnesties for genocide, war crimes, crimes against humanity or gross violations of human rights\u201d11 and the UN staff may never condone amnesties that international law condemn. States have the primary responsibility to ensure accountability for violations of inter- national human rights law and international humanitarian law and thus domestic court systems are often the preferred venue. Yet in post-conflict situations, the domestic court system is often unable or unwilling to conduct effective investigations or prosecutions. Important options are international ad hoc tribunals or hybrid courts. These judicial bodies are created to address particular situations, for a limited amount of time, and are the result of singular political and historical circumstances. They are composed of independent judges, working on the basis of predetermined rules of procedure, and rendering binding decisions. They are subject to the same principles governing the work of all international judiciaries (e.g., due process, impartiality and independence). The creation of international or hybrid tribunals in situations where national actors are unwilling or unable to prosecute alleged perpetrators is a revolutionary step in establishing accountability for gross violations of international human rights law and serious violations of international humanitarian law. For instance, the Statute of the International Tribunal for the Former Yugoslavia (ICTY), Statute of the International Tribunal for Rwanda (ICTR), and the Statute of the Special Court for Sierra Leone (SCSL) provide these tribunals with jurisdiction over serious crimes under international law. The entry into force of the Rome Statute of the International Criminal Court in 2002 was a major step forward in the history of international criminal accountability. For the first time, the world has an independent, permanent court to try individuals for the most serious crimes under international law: genocide, crimes against humanity and war crimes. The ICC is complementary to national criminal jurisdictions. The ICC will not exercise its jurisdiction, unless the State is unwilling or unable genuinely to carry out the investigation or prosecution.12 As of July 2009, the ICC treaty had been ratified by 110 states. In addition to domestic courts, ad hoc and hybrid tribunals, and the ICC, prosecutions against individuals who have committed human rights violations and international crimes may also, in certain circumstances and depending on national laws, be pursued through the principle of \u2018universal jurisdiction\u2019. This principle is based on the notion that certain crimes are so harmful to international interests that States are entitled\u2014and even obliged\u2014 to bring proceedings against the perpetrator, regardless of the location of the crime and the nationality of the perpetrator or the victim.13", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "eccd7591-af8f-4833-a924-b48e065e40f0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 8, + "Paragraph": "The right to the truth There has been a growing recognition that both individual victims and society as a whole have the right to know the truth about past violations, and the State has responsibility in giving effect to this right. The Updated Principles emphasize that States must take appropri- ate measures to give effect to the right to know the truth. This may include non-judicial processes such as truth commissions that complement the role of the judiciary. Regardless of whether a State establishes such a body, it must ensure the preservation of archives and other information relevant to exercising the right to know about past violations. The Updated Principles also emphasize the importance of the participation of victims and other citizens, and specifically women and minorities, in the truth-seeking process.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "aba76081-690c-4dcf-a70b-f5e11c5f5f18", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 8, + "Paragraph": "The right to reparations Victims of gross violations of human rights and serious violations of international humani- tarian law are entitled to a remedy, including reparations. The Basic Principles and Guide- lines14 provide that \u201ca State shall provide reparation to victims for acts or omissions which may be attributed to the State and constitute gross violations of international human rights law or serious violations of international humanitarian law.\u201d15 Moreover, \u201cStates should endeavor to establish national programmes for reparation and other assistance to victims in the event that the parties liable for the harm suffered are unable or unwilling to meet their obligations.\u201d16 Reparations may include the following forms of redress: restitution, compensation, rehabilitation, satisfaction and guarantees of non-repetition.17", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9a619e3-53a5-40b9-a49c-ca953b3ac1be", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 9, + "Paragraph": "Guarantees of non-repetition The Updated Principles contribute to a normative framework for institutional reform, one of the most important means of guaranteeing that the systemic violation of human rights will not be repeated. They observe that \u201c[S]tates must take all necessary measures, includ- ing legislative and administrative reforms, to ensure that public institutions are organised in a manner that ensures respect for the rule of law and protection of human rights.\u201d18 To this extent, civilian control of military and security forces, as well as of intelligence agencies must be ensured and, where necessary, established or restored. At the same time, public officials and employees who are personally responsible for gross violations of human rights or serious crimes under international law, in particular those involved in military, security, police, intelligence and judicial sectors, should not continue to serve in State institu- tions.19 Vetting processes have been an important aspect of institutional reform in countries in transition. They aim to exclude individuals from public service whose previous conduct is incompatible with their holding a public position, with a view to re-establishing civic trust and re-legitimize public institutions.20 Their removal should comply with requirements of due process of law and principles of non-discrimination.21", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "68a60a06-167a-4fb1-921c-d695f951be02", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 9, + "Paragraph": "Guiding principles Do no harm: A first step in creating a constructive relationship between DDR and transitional justice is to understand how transitional justice and DDR can interact in ways that, at a minimum, do not obstruct their respective objectives of accountability and reconciliation and maintenance of peace and security. Balanced approaches: While the imperative to maintain peace and security often de- mands a specific focus on ex-combatants in the short-term, long-term strategies should aim to provide reintegration opportunities to all war-affected populations, including victims.22 Respect for international human rights law: DDR programmes shall respect and promote international human rights law. This includes supporting ways of preventing reprisal or discrimination against, or stigmatization of those who participate in DDR programmes as well as to protect the rights of the communities that are asked to receive ex-combatants, and members of the society at large. DDR processes shall provide for a commitment to gender, age and disability specific principles and shall comply with principles of non-discrimination. Respect for international humanitarian law: DDR programmes shall respect and promote international humanitarian law, including the humane treatment of persons no longer actively engaged in combat. United Nations Peacekeeping Forces, includ- ing military members involved in administrative DDR programmes, are also subject to the fundamental principles and rules of international humanitarian law, and in cases of violation, are subject to prosecution in their national courts.23", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1a279573-a870-40d1-9812-d4b937d8b4d3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 9, + "Paragraph": "Transitional justice and DDR This section provides an overview of how DDR programmes may relate to transitional jus- tice measures, including prosecutions, truth commissions, reparations, institutional reform, and locally-based justice processes. The section also explores how DDR and transitional justice measures address issues concerning women and children associated with armed groups and forces. The section identifies potential positive and negative aspects of these relationships in order to provide an informed basis for future strategies that aim to minimize tensions and build on opportunities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d90cf2f2-dee1-4246-9766-64c5c24c41f4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 10, + "Paragraph": "Criminal investigations and prosecutions Criminal investigations and DDR have potentially important synergies. In particular, infor- mation gathered through DDR processes may be very useful for criminal investigations. Such information does not need to be person-specific, but might focus on more general issues such as structures and areas of operation. Since criminal justice initiatives in post-conflict situations would often only be able to deal with a relatively small number of suspects, most prosecutions strategies ought to focus on those bearing the greatest degree of responsibility for crimes committed. As such, these objectives must be effectively communicated in a context of DDR processes to ensure that those participating in DDR understand whether or not they are likely to face prosecutions. Prosecutions can make positive contributions to DDR. First, at the most general level, a DDR process stands to gain if the distinction between ex-combatants and perpetrators of human rights violations can be firmly established. Obviously, not all ex-combatants are human rights violators. This is a distinction to which criminal prosecutions can make a contribution: prosecutions may serve to individualize the guilt of specific perpetrators and therefore lessen the public perception that all ex-combatants are guilty of serious crimes under international law. Second, prosecution efforts may remove spoilers and potential spoilers from threatening the DDR process. Prosecutions may remove obstacles to the demo- bilization of vast numbers of combatants that would be ready to cease hostilities but for the presence of recalcitrant commanders. A successful prosecutorial strategy in a transitional justice context requires a clear, transparent and publicized criminal policy indicating what kind of cases will be prosecuted and what kind of cases will be dealt with in an alternative manner. Most importantly, prosecutions may foster trust in the reintegration process and enhance the prospects for trust building between ex-combatants and other citizens by pro- viding communities with some assurance that those whom they are asked to admit back into their midst do not include the perpetrators of serious crimes under international law. The pursuit of accountability through prosecutions may also create tensions with DDR efforts. When these processes overlap, or when prosecutions are instigated early in a DDR process, some tension between prosecutions and DDR, stemming from the fact that DDR requires the cooperation of ex-combatants and their leaders, while prosecutors seek to hold accountable those responsible for criminal conduct involving violations of international humanitarian law and human rights law, may be hard to avoid. This tension may be dimin- ished by effective communications campaigns. Misinformation or partial information about prosecutions efforts may further contribute to this tension. Ex-combatants are often unin- formed of the mandate of a prosecutions process and are unaware of the basic tenets of international law. In Liberia, for example, confusion about whether or not the mandate of the Special Court for Sierra Leone covered crimes committed in Liberia initially inhibited some fighters from entering the DDR process. While these concerns deserve careful consideration, there have been a number of con- texts in which DDR processes have coexisted with prosecutorial efforts, and the latter have not created an impediment to DDR. In some situations, transitional justice measures and DDR programmes have been connected through some sort of conditionality. For example, there have been cases where combatants who have committed crimes have been offered judicial benefits in exchange for disarming, demobilizing and providing information or collaborating in dismantling the group to which they belong. There are, however, serious concerns about whether such measures comply with the international legal obligations to ensure that perpetrators of serious crimes are subject to appropriate criminal process, that victims\u2019 and societies\u2019 right to the truth is fully realized, and that victims receive an effective remedy and reparation.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "ffd10a9a-9cd5-4e48-9f3e-35fba04f2ec3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 11, + "Paragraph": "Truth commissions Truth commissions seek to provide societies with an even-handed account of the causes and consequences of armed conflict. The reports created by truth commissions may provide recommendations for reform and reparation as well as, in a few cases, recommendations for judicial proceedings. Truth commissions may demonstrate to victims and victimized communities a willingness to acknowledge and address past injustices. They may also pro- vide a strategy for peacebuilding; such is the case with the comprehensive report of the Truth and Reconciliation Commission (TRC) in Sierra Leone. Ex-combatants may hold varying views of truth commissions. Some will avoid them entirely, refusing to acknowledge victims or the harm caused by themselves or other mem- bers of armed forces and groups. Others may regard truth commissions as an opportunity to tell their side of the story and to apologize. Accompanied by appropriate public infor- mation and outreach initiatives, including tailored responses such as in-camera hearings for survivors of sexual violence, they may help break down rigid representations of victims and perpetrators by allowing ex-combatants to tell their own stories of victimization and by exploring and identifying the roots of violent conflict. Less positively, ex-combatants may perceive truth commissions as a threat, for example in cases where the names of indi- vidual perpetrators are made public. More often truth commissions are perceived as initiatives for victims and the partici- pation of demobilized combatants is minimal, even in situations where ex-combatants have experienced victimization. For example, in South Africa, ex-combatant participation in the TRC was limited primarily to the amnesty hearings\u2014relatively few made statements as victims of abuse or were given a chance to testify at victims\u2019 hearings. Ex-combatants later expressed a sense that they had been left out of the process. Children should also have an opportunity to, voluntarily, participate in truth commissions. They should be treated equally as witnesses or victims. In at least one case a truth commission has played a direct role in reintegrating former combatants and promoting reconciliation. The Commission for Reception, Truth and Rec- onciliation in East Timor included a process of community reconciliation for those who had committed \u2018less serious crimes\u2019, including members of militias. The Community Recon- ciliation Process was a voluntary process that combined \u201cpractices of traditional justice, arbitration, mediation and aspects of both criminal and civil law.\u201d24 In community hearings, the perpetrators were asked to explain their participation in the armed conflict. Victims and other members of the community were allowed to ask questions and make comments. Finally, a panel of local leaders worked with the perpetrators and the victims to come to an agreement on some kind of reparation\u2014often in the form of community service\u2014that the guilty party could provide in exchange for acceptance back into the community.25 Box 2 Sierra Leone case study: DDR in the context of a hybrid tribunal and a truth and reconciliation commission* The post conflict situation in Sierra Leone was distinctive in that the DDR process and the national transitional justice initiatives were implemented very closely after each other, and because of the co-existence of both a truth commission and a criminal tribunal. The Lom\u00e9 Peace Agreement stipulated the mandates for DDR and for the Truth and Reconciliation Commission (TRC), no formal links, however, were made between the two processes in the peace document or in practice. Disarmament and demobi- lization was largely successful in Sierra Leone, yet some research suggests that the lack of accountability had a negative impact on the reintegration of certain ex-combatants. Ex-combatants of armed factions that were known to have committed abuses against the civilian population have faced more difficulties in reintegration than others.** The Lom\u00e9 Accord of 1999 included a cessation of hostilities, the initiation of a DDR program, inclusion of the rebel force the Revolutionary United Front (RUF) in government, a blanket amnesty for all combatants, and DDR for fighters. During the signing of the Accord, the representative of the Secretary General of the United Nations (UN) to the peace negotiations included a disclaimer stating that the UN understood that the amnesty and pardon provided by the agreement would not cover international crimes of genocide, crimes against humanity, and other serious crimes under international humanitarian law. Through the active efforts of civil society leaders in Sierra Leone, as well as international advocates, the Lom\u00e9 Accord also mandated a truth and reconciliation commission and a human rights commission. The progress made at Lom\u00e9 was shattered in May 2000 when fighting resumed in the capital city of Freetown. The peace process was put back on track after the reinforcement of the UN peacekeeping mission there and increased mediation efforts resulting in the signing of the Abuja Protocols in 2001. The Abuja Protocols also marked an abrupt change in the national approach to accountability and justice. The government formally requested the UN\u2019s assistance to establish a court to try members of the RUF involved in war crimes. The UN supported the initiative, and the Special Court for Sierra Leone (SCSL) was set up in August 2002 with a mandate to try those who bear the greatest responsibility for the atrocities committed in Sierra Leone. The DDR was in its closing phases when the SCSL and TRC were established. All parties to the Lom\u00e9 peace agreement, including the national government and the RUF, backed the establishment of a TRC, which began operations in 2002. While the SCSL stoked fears among ex-combatants about their possible criminal prosecution, there was a great deal of hope that the TRC would provide an effective and essential mechanism for promoting reconciliation. Although, at first, the concurrence of a tribunal and a truth commission generated considerable misunderstanding, civil society efforts to provide information to ex-combatants were successful in increasing the latters understanding of the separate mandates of each institution. Support for the TRC amongst ex-combatants rose from 53 to 85 per cent after ex-combatants understood its design and purpose, while those who believed it would bring reconciliation rose from 52 to 84 per cent. For those ex-combatants who admitted to human rights violations the TRC offered an opportunity to take respon- sibility for their actions. According to one report, \u201cThey want to confess to the TRC because they think it will enable them to return to their communities.\u201d*** * This is excerpted from: Gibril Sesay and Mohamed Suma, \u201cDDR, Transitional Justice, and Sierra Leone,\u201d A Case Study on DDR and Transi- tional Justice (New York: International Center for Transitional Justice, forthcoming). ** Jeremy Weinstein and Macartan Humphreys, Disentangling the Determinants of Successful Demobilization and Reintegration, Working Paper No. 69, Washington DC: Center for Global Development, 2005. *** The Post-conflict Reintegration Initiative for Development and Empowerment (PRIDE) and ICTJ, \u201cEx-Combatants Views of the Truth and Reconciliation Commission and the Special Court in Sierra Leone,\u201d (September 2002). http://www.ictj/org/en/where/region1/141.html", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0b8bb36d-f2a3-4581-9ea9-67e61a28f7b7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 8, + "Paragraph": "Reparations Reparations focus directly on the recognition and acknowledgement of victims\u2019 rights, and seek to provide some redress for the harms they have suffered. The aspect of recogni- tion is what makes reparations distinct from social services that attend to the basic socio- economic rights of all citizens, such as housing, water and education. A comprehensive approach to reparations provides a combination of material and symbolic benefits to victims, such as cash payments or access to health, psycho-social rehabilitation or educational bene- fits, as well as a formal apology or a memorial. Often public acknowledgement is indicated by victims as the most important element of the reparations they seek. Reparations are a means of including victims and victims\u2019 rights firmly on the post-conflict agenda and may contribute to the process of building trust in the government and in its commitment to guaranteeing human rights in the future. Yet victims\u2019 needs are often marginalized in post conflict, peacebuilding contexts. The design of a reparations programme may have positive implications for the entire community and include elements of social healing. Individual measures deliver concrete benefits to individual recipients. In East Timor, the truth commission recommended a process that combined individual benefits with a form of delivery designed to promote collective healing. Single mothers, including war widows and victims of sexual violence, would benefit from scholarship grants for their school-aged children. In picking up their benefits, the mothers would have to travel to a regional service center, where they would, in turn, have access to peer support, skills training, healthcare, and counseling. Collective reparations may deliver reparations either in the context of practical limita- tions or of concerns about drawing too stark a line between classes of victims or between victims and non-victim groups. In this way, a specific village that was particularly affected by various kinds of abuses might, for example, receive a fund for community projects, even though not every individual in the village was affected in the same way and even if some people there contributed to the harms. In Peru, for example, communities hardest hit by the violence were asked to submit community funding proposals up to a $30,000 limit. These projects would benefit the entire community, generally, rather than only serve spe- cific victims and would be implemented regardless of whether some former perpetrators also live there. Generally, programmes for ex-combatants and reparations programmes for victims are developed in isolation of one another. Reinsertion assistance is offered to demobilized com- batants in order to assist with their immediate civilian resettlement\u2014i.e., to get them home and provide them with a start toward establishing a livelihood\u2014prior to longer-term support for reintegration (see IDDRS 4.30 on Social and Economic Reintegration). Support to ex-combatants is motivated by the genuine concern that without such assistance ex- combatants will re-associate themselves with armed groups as a means of supporting them- selves or become frustrated and threaten the peace process. Victims rarely represent the same kinds of threat, and reparations programmes may be politically challenging and expen- sive to design and implement. The result is that ex-combatants participating in DDR often receive aid in the form of cash, counseling, skills training, education opportunities, access to micro-credit loans and/or land, as part of the benefits of DDR programmes, while, in 4.30 most cases no programmes to redress the vio- lations of the rights of victims are established. Providing benefits to ex-combatants while ignoring the rights of victims may give rise to new grievances and increase their resistance against returning ex-combatants, in this way becoming an obstacle to their reintegration. The absence of reparations pro- grammes for victims in contexts in which DDR programmes provide various benefits to ex-combatants, grounds the judgment that ex-combatants are receiving special treatment. For example, the Rwanda Demobilization and Reintegration Programme, financed by the World, Bank has a budget of US$65.5 million. Ex-combatants receive reinsertion, recognition of service, and reintegration benefits in cash from between US$500 to US$1,000 depending on the rank of the ex-combatant.26 Yet as of 2009, the compensation fund for genocide sur- vivors called for in the 1996 Genocide Law has not been established. Such outcomes are not merely inequitable; they may also undermine the possibilities of effective reintegration. The provision of reparations for victims may contribute to the reintegration dimension of a DDR programme by reducing the resentment and compara- tive grievance that victims and communities may feel in the aftermath of violent conflict. In some cases the reintegration component of DDR programmes includes funding for community development that benefits individuals in the community beyond ex-combatants 4.30\t(see also IDDRS 4.30 on Social and Economic Reintegration). While the objective and nature of reparations programmes for victims are distinct, most importantly in the critical area of acknowledgement of the violations of victims\u2019 rights, these efforts to focus on aiding the communities where ex-combatants live are noteworthy and may contribute to the effective reintegration of ex-combatants, as well as victims and other war-affected populations.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "81feda03-3483-4eee-b482-c6fedb67720c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 14, + "Paragraph": "7.4. Institutional reform DDR can contribute to ending or limiting violence by disarming large numbers of armed actors, disbanding illegal or dysfunctional military organizations, and reintegrating ex- combatants into civilian or legitimate security-related livelihoods. DDR alone, however, cannot build peace, nor can it prevent armed groups from reverting to conflict. DDR needs to be part of a larger system of peacebuilding interventions, including institutional reform. Institutional reform that transforms public institutions that perpetuated human rights violations is critical to peace and reconciliation. Transitional justice initiatives contribute to institutional reform efforts in a variety of ways. Prosecutions of leaders for war crimes, or violations of international human rights and humanitarian law, criminalizes this kind of behavior, demonstrates that no one is above the law, and may act as a deterrent and con- tribute to the prevention of future abuse. Truth commissions and other truth-seeking en- deavors can provide critical analysis about the roots of conflict, identifying individuals and institutions responsible for abuse. Truth commissions can also provide critical informa- tion about the patterns of violence and violations, so that institutional reform can target or prioritize efforts in particular areas. Reparations for victims may contribute to trust-building between victims and government, including public institutions. Vetting processes contribute to dismantling abusive structures by excluding from public service those who have com- mitted gross human rights violations and serious violations of international humanitarian law (See Box 3: Vetting.) As security sector institutions are sometimes implicated in past and ongoing viola- tions of human rights and international humanitarian law, there is a particular interest in reforming security sector institutions. Security Sector Reform (SSR) aims to enhance \u201ceffec- tive and accountable security for the State and its people without discrimination and with full respect for human rights and the rule of law.\u201d27 SSR efforts may sustain the DDR process in multiple ways, for example by providing employment opportunities. Yet DDR pro- grammes are seldom coordinated to SSR. The lack of coordination can lead to further vio- lations, such as the reappointment of human rights abusers into the legitimate security sector. Such cases undermine public faith in security sector institutions, and may also lead to distrust within the armed forces. (See IDDRS Module 6.10 on DDR and Security Sector Reform for a detailed discussion on the relationship between DDR and SSR.) Box 3 Vetting* 6.10", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "564201d9-52b1-4519-a709-483217b5ccee", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 15, + "Paragraph": "DDR and locally-based processes of justice In his 2004 report on transitional justice and the rule of law, the Secretary General of the UN wrote that \u201cdue regard must be given to indigenous and informal traditions for admin- istering justice or settling disputes, to help them to continue their often vital role and to do so in conformity with both international standards and local tradition.\u201d28 Locally-based justice processes range from informal courts to local truth-telling exercises, to traditional ceremonies. They may include an approach that directly involves victims and communi- ties in defining the responsibilities and obligations of those who have committed crimes. In some situations, these locally-based processes are used to promote trust between ex- combatants and their communities. In Mozambique, for example, cleansing ceremonies offered ex-combatants a way to reintegrate into communities by renouncing violence, acknowledging wrong-doing and providing victims, or families of victims, with some kind of compensation. Locally-based justice processes may complement reintegration efforts and national level transitional justice measures by providing a community-level means of addressing issues of accountability of ex-combatants. These locally based processes may contain elements of the four main transitional justice approaches: prosecutions, truth-telling, reparation and institutional reform, and thus offer similar incentives and disincentives for ex-combatants, but they have an additional aim of reintegration. To a large extent the purpose of these processes is to reintegrate community members who have violated the norms of the com- munity and to reconcile them with the victims. When ex-combatants participate in these processes, they demonstrate their desire to be a part of the community again, and to take steps to repair the damage for which they are responsible. This contributes to building or renewing trust between ex-combatants and the communities in which they seek to reinte- grate. These processes may not be as successful in situations where combatants refuse to acknowledge responsibility or continue to perceive themselves as heroes. Locally-based justice processes may, however, be problematic. They may not comply with national and international human rights standards, in particular fair trial guarantees. Unfair treatment of ex-combatants who participate in such processes may hinder reintegra- tion. Additionally, many of these processes are not equipped to handle serious violations of international law, such as war crimes, crimes against humanity or genocide. Locally-based processes also frequently replicate gender or other biases that are present in community life and traditions, for example, by excluding women and children, or by forgiving men for acts of sexual aggression against women. The experience of linking national reintegration strategies with locally-based justice processes is limited, but there are a few positive examples to build on. UNICEF\u2019s work with locally based justice processes supported the reintegration of children in Sierra Leone, for example. Creating connections between reintegration strategies, particularly community reinte- gration strategies, for ex-combatants and locally-based justice processes may be one way to bridge the gap between the aims of DDR and the aims of transitional justice. Such con- nections should be consistent with the broad peacebuilding goals of security, respect for human rights including international standards of child rights and juvenile justice, rule of law, and reconciliation.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "864cfd8d-17e9-4172-a5cd-7e28be8e7855", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 16, + "Paragraph": "Justice for women associated with armed forces and groups The IDDRS module 5.10 on Women, Gender and DDR refers to three types of female ben- eficiaries: 1) female ex-combatants, 2) female supporters, and females associated with armed forces and groups and 3) female dependents. The module identifies a range of possible barriers for entry of women into DDR programmes and proposes strategies and guide- lines to ensure that DDR programmes are gender responsive. Likewise, practitioners in the field of transitional justice seek to understand and better design means to facilitate the participation of women. Yet there is still a gap between the policy and the implementation of comprehensive approaches. The experience of women in conflict often goes beyond usual notions of victim and perpetrator. Women returning to life as civilians may face greater social barriers and exclu- sion than men. They may not participate in either DDR or transitional justice measures for a variety of reasons, including because of their exclusion from the agendas of these proc- esses, the refusal of armed forces and groups to release women, fear of further stigmatiza- tion, or lack of faith in public institutions to address their particular situations (for a more 5.10\tin-depth analysis, see IDDRS 5.10 on Women, Gender and DDR). Women\u2019s lack of partici- pation may undermine their reintegration, and prevent those among them who have also experienced human rights violations from their rights to justice or reparation, and rein- force gender biases. Yet women may also be agents of change, actively involved in efforts to make and build peace. Women and girl combatants have displayed remarkable com- mitment to reintegrating into communities and working for peace. In Northern Uganda, former teenage LRA combatants (themselves abducted and abused) run community projects supporting other \u2018girl mothers\u2019, provide counseling for the young abductees and care for their children, and seek reconciliation with communities they were often forced to terrorize. The trauma and victimization they endured is being transformed into a positive force for empowerment and development. Transitional justice measures may facilitate the reintegration of women associated with armed forces and groups. Prosecutions initiatives, for example, may contribute to the re- integration of women by prosecuting those involved in their forcible recruitment, and by recognizing and prosecuting crimes committed against all women, particularly rape and other forms of sexual violence. Women ex-combatants who have committed crimes should also be prosecuted. Excluding women from prosecution denies their role as participants in the armed conflict. Women have been central to the process of truth seeking, exposing hidden truths about the legacy of human rights in conflict. Many female combatants, like their male counter- parts, do not participate in truth commissions because they perceive these processes to be for victims, and they do not identify themselves as victims. Yet their participation may help the community to better understand the many dimensions of women\u2019s involvement in conflict, and in turn, increase the probability of their acceptance. Great care must be taken to ensure that women who choose to participate are well-informed as to the purpose and mandate of the truth commission, that they understand their rights in terms of confidenti- ality, and are protected from any possible harm resulting from their testimony. Women associated with armed forces and groups have frequently endured violations such as abduction, torture, and sexual violations, including rape and other forms of sexual violence, and may be eligible for reparation. Reparations may provide official acknowledge- ment of these violations, access to specialized health care related to the specific violation they have suffered, and material benefits that may facilitate their integration. Yet these women, due to frequent stigmatization, are commonly reluctant to explain what happened to them, particularly when it involves sexual violations, and often do not come forward to claim their due. Women associated with armed forces and groups are potential participants in both DDR and transitional justice measures, and both are faced with the challenge of increasing and supporting their participation. See Module 5.10 for a detailed discussion of Women, Gender, and DDR.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "62849912-5a7b-45fe-8374-d1ee8c4f66c5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 17, + "Paragraph": "Justice for children recruited or used by armed groups and forces Children\u2014girls and boys under 18\u2014associated with armed forces and groups (CAAFG) represent a special category of protected persons under international law and should be subject to a separate DDR process from adults (for a detailed normative and legal frame- work, see Annex B of IDDRS 5.30 on Children and DDR). Recruitment of children under the age of 15 is recognized as a war crime in the ICC Statute. Many states have criminal- ized the recruitment of children below the age of 18. Child DDR requires that the release (as opposed to demobilization) and reintegration of children be actively carried out at all times, including before a DDR process is formerly implemented and that actions to pre- vent child recruitment should be continuous. In this process, particular attention needs to 5.10 5.30 be given to girls since their gender makes girls particularly vulnerable to violations, includ- ing sexual violence and exploitation, lack of educational and training opportunities, mis- treatment and neglect (for specific ways to address girls\u2019 needs in DDR programmes, see 5.30\tChapter 6 of IDDRS 5.30 on Children and DDR). Transitional justice processes can play a positive role in facilitating the long-term re- integration of children. At the same time such processes can create obstacles to children\u2019s reconciliation and reintegration. The best interests of the child should always guide deci- sions related to children\u2019s involvement in transitional justice mechanisms. Children who have been illegally recruited and used by armed groups or forces are victims and witnesses and may also be alleged perpetrators. Each of these aspects of children\u2019s experiences cor- responds to specific international obligations outlined below.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d5448817-aaf5-4b1c-af76-a00b73f3f99c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 18, + "Paragraph": "Children as victims and witnesses The Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict prohibits the compulsory recruitment and the direct participa- tion in hostilities of persons below 18 by armed forces (arts. 1 and 2). When it comes to armed groups distinct from regular armed forces, such recruitment is under any circum- stance prohibited (no matter whether voluntary or compulsory). Recruitment or use of children under the age of 15 is a recognized war crime in the Rome Statute of the ICC. The Special Court for Sierra Leone also considers child recruitment under the age of 15 as a war crime based on customary international law. A growing number of states have criminal- ized the recruitment of children (under 18) as reflected in the Optional Protocol of the Convention on the Rights of the Child on the involvement of children in armed conflict. Of the 130 countries that have ratified the Optional Protocol, more than two thirds have adopted a minimum age of 18 for entry into the armed forces (the so called \u2018straight 18\u2019 standard.) Domestic proceedings following or during an armed conflict may also try adults for having recruited children, in which case the domestic legal standard would apply. The prosecution of commanders who have recruited children may help the reintegra- tion of children by highlighting that children associated with armed forces and groups who may have been responsible for violations of human rights and international humanitarian law should be considered primarily as victims, not only as perpetrators.29 International law further establishes binding obligations on States with regard to physical and psycho- logical recovery and social reintegration of child victims.30 To facilitate the participation of child victims and witnesses in legal proceedings, the justice systems need to adopt child-sensitive and gender-appropriate procedures in line with the provisions of the Convention on the Rights of the Child, its Optional Protocols as well as with the UN Guidelines on Justice Matters involving Child Victims and Witnesses of Crime and adapted to the evolving capacities of the child. It is also important that child vic- tims are informed of their rights to receive redress, including legal and psycho-social support. Child victims and witnesses should have access to independent and free legal assist- ance to ensure that their rights are guaranteed, that they are informed of the purpose of their role and are able to participate in a meaningful way. In order to avoid further trauma and re-victimization a careful assessment should be carried out to determine whether or not it is in the best interests of the child to testify in court during a criminal proceeding and what special protective measures are required to facilitate the testimony. Protection meas- ures to facilitate the child\u2019s testimony should protect the child\u2019s identity and privacy, be culturally appropriate and include: private interview rooms designed for children, modified court environments that take child witnesses into consideration, interviews by specially trained staff out of sight of the alleged perpetrator using testimonial aids and psychosocial support before, during and after the process.31 Likewise, children\u2019s statements given before a truth commission or other non-judicial process can offer unique potential for children\u2019s participation in post-conflict reconcilia- tion and may foster dialogue about the impact of war on children and contribute to pre- vention of further conflict and victimization of children. Children should participate in truth commissions only on a voluntary basis and child-friendly policy and protection measures should be in place to protect the rights of children involved. It is important to recognize that children demobilized from fighting forces may be identified as a vulnerable group and eligible for reparations through a reintegration pro- gramme, such as specific education support, access to specialized healthcare, vocational training, and follow-up social work. In some situations children may benefit from financial reparation, not as part of the reintegration programme but as part of a reparations scheme, on the basis of particular violations that they have suffered. Providing benefits to children formerly associated with fighting forces that other children in the community do not receive may increase resentment and create obstacles for reintegration. If benefits or reparations are provided for children affected by armed conflict, careful consideration must be given to ensure that such benefits are in the best interests of the child. It is important to coordi- nate benefits that may be offered to demobilized children through a DDR programme and what is offered to them, more generally, as victims. This is to prevent the provision of double benefits, something which is particularly important in country situations where these programmes rarely cover all of their potential beneficiaries.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "befbd402-01c0-42b2-9eac-c4ca33471c7c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 19, + "Paragraph": "Children as alleged perpetrators Children who have been associated with armed forces or armed groups should not be prosecuted or punished solely for their membership in these forces or groups. Children accused of crimes under international law must be treated in accordance with the CRC, the Beijing Rules and related international juvenile justice and fair trial standards. Accounta- bility measures for alleged child perpetrators should be in the best interests of the child and should be conducted in a manner that takes into account their age at the time of the alleged commission of the crime, promotes their sense of dignity and worth, and supports their reintegration and potential to assume a constructive role in society. Wherever appropriate, alternatives to judicial proceedings should be pursued. In situations where children are alleged to have participated in crimes committed during armed conflict, the primary objectives should be i) reintegration and return to a \u2018constructive role\u2019 in society (article 40, CRC); rehabilitation (article 14(4), ICCPR; article 39, CRC), reinforcing the child\u2019s respect for the rights of others (article 40, CRC; Paris Princi- ples, sections 3.6 to 3.8 and 8.6 to 8.11). If national judicial proceedings take place, children must be treated in accordance with the CRC, in particular its articles 37 and 40, the Beijing Rules and other international law and standards governing juvenile justice, including the Committee\u2019s General Comment n\u00b0 10 on \u201cChildren\u2019s rights in juvenile justice.\u201d While some process of accountability serves the best interest of the child, international child rights and juvenile justice standards recommend that alternatives to judicial proceedings should be applied, whenever appropriate and desirable (article 40(3b), CRC; rule 11, Beijing Rules). Staff working on release and reintegration associated with armed groups and forces should advocate and enable, where appropriate, the diversion of children from judicial proceedings to alternative mechanisms suitable for dealing with the nature of the particular offence, in line with international standards and the best interests of the child. If a child has been convicted for a crime, alternatives to deprivation of liberty should be put in place and advocated for, in view of promoting the successful reintegration of the child. The death penalty and life imprisonment without possibility of release must never be imposed against children and detention of children should only be used as a measure of last resort and for the shortest period of time. As discussed in Chapter 9 of IDDRS 5.30 on Children and DDR, locally-based justice and reconciliation processes may contribute to the reintegration of children. These proc- esses may create a means for the child to express remorse and make reparation for past action. In all cases, local processes must adhere to international standards of child protec- tion. Locally-based processes for justice and reconciliation for children may be more effec- tive if they are considered as part of a comprehensive peacebuilding approach strategy, in which reintegration, justice, and reconciliation are key goals; and are consistent with over- all strategies for the reintegration of children demobilized from fighting forces. 5.30\tSee Module 5.30 for a more detailed discussion on Children and DDR. Box 4 The rule of law and transitional justice", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "16b78c96-0ad7-48fb-a27d-eed515747dc3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 20, + "Paragraph": "8. Prospects for coordination Coordination between transitional justice and DDR programmes begins with an understand- ing of how the two processes may interact positively in the short-term in ways that, at the very least, do not hinder their respective objectives of accountability and stability. Coordination between transitional justice and DDR practitioners should, however, aim to constructively connect these two processes in ways that contribute to a stable, just and long-term peace. In the UN System, the Office of the High Commissioner for Human Rights (OHCHR) has the lead responsibility for transitional justice issues. UN support to DDR programmes may be led by the Department of Peacekeeping (DPKO) or the United Nations Develop- ment Programme (UNDP). In other cases, such support may be led by the International Organization for Migration (IOM) or a combination of the above UN entities. OHCHR representatives can coordinate directly with DDR practitioners on transitional justice. Human rights officers who work as part of UN peacekeeping missions may also be appropriate focal points or liaisons between a DDR programme and transitional justice initiatives. This section presents options for DDR that stress the international obligations stem- ming from the right to accountability, truth, reparation, and guarantees of non-repetition. These options are meant to make DDR compliant with international standards, being mindful of both equity and security considerations. At the very least, they seek to ensure that DDR observes the \u201cdo no harm\u201d principle, and does not foreclose the possibility of achieving accountability in the future. When possible, the options presented in this section seek to go beyond \u201cdo no harm,\u201d establishing more constructive and positive connections between DDR and transi- tional justice. These options are presented with the understanding that diverse contexts will present different opportunities and challenges for connecting DDR and transitional justice. DDR must be designed and implemented with reference to the country context, including the existing justice provisions.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "06a128b6-faae-47c1-9a23-67bddbba6063", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Observe obligations concerning accountability, truth, reparation and guarantees of non- repetition in peace agreements A peace agreement can be considered a reflection of the priorities of the government(s), armed groups, and international organization(s), and other parties involved in a negotia- tion. While political and security issues, including DDR, may dominate the agenda, these issues need to be addressed in ways that observe international legal obligations. UN media- tors and other UN staff involved in advising a peace negotiation shall advise that agree- ments must be based on a commitment to international humanitarian and human rights law, and include specific reference to obligations concerning accountability, truth, repara- tions and guarantees of non-repetition. Inclusion of these obligations demonstrates, at the least, that the violations suffered by war-affected populations other than ex-combatants are acknowledged, and keeps the door open for transitional justice in the future. This kind of acknowledgement may \u201cbuy time\u201d for DDR, reducing the initial resentment that vic- tims and their advocates may feel towards ex-combatants. It signals to victims and their advocates that while the attention of the government and the international community involved in a peace process may be on the armed actors in the immediate post conflict period the obligation to victims will not be disregarded.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "8cb5abb7-b122-4edd-a4a4-8f34d6fac8bc", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 22, + "Paragraph": "Include victims and civil society in peace negotiation processes Similarly to armed actors, victims and civil society should have a role in peace negotiation processes that allows them to articulate demands for accountability, truth and reparations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "63c49773-2e83-4cd7-bf77-af28a57c44d6", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Reject amnesties for genocide, crimes against humanity, war crimes and gross violations of human rights It has been recognized that amnesties can play a valuable role in ending armed conflicts and reconciling divided communities, provided that they do not grant immunity to indi- viduals responsible for serious violations of international law. Under international law and UN policy, amnesties are impermissible if they: prevent prosecution of those who may be responsible for genocide, crimes against humanity, war crimes and gross violations of human rights: violate victims\u2019 rights to an effective remedy and to the truth; Such broad amnesties may also undermine the law\u2019s function as a deterrent against crime and may create the impression that serious international crimes may be com- mitted with impunity.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c21ff6e6-2735-4b82-83b0-6e63bb7fec86", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 22, + "Paragraph": "Consider targeted amnesties While UN mediators and staff shall not condone amnesties for genocide, crimes against humanity, war crimes and gross violations of human rights, certain targeted amnesties for political offences such as treason and rebellion may act as an incentive for demobilization while still allowing for prosecution of those most responsible for serious violations of inter- national humanitarian law and gross violations of international human rights law.32", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "4e6cf351-2e59-47f9-be4f-182ccba34a43", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 22, + "Paragraph": "Donors for DDR programmes may consider comparable commitments to reparations for victims Member states that provide funding for DDR programmes should consider an equitable approach to war-affected populations, including investing in reparation and services to victims.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "55bd0679-40c8-433c-8fa8-ccf2d9aacfd3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Integrate transitional justice into the training programmes and support materials for DDR practitioners Important elements of both DDR and transitional justice are shaped during peace negotia- tions in the preparation of the legal framework regulating post-conflict situations. When both DDR and transitional justice initiatives are included in a peace agreement, a connection is de facto created. UN mediators and other advisors to peace negotiations should be aware of the impact DDR and transitional justice measures may have on one another and con- sider how features of the peace agreement or a newly established legal framework may sustain the objectives of accountability and stability sought by transitional justice and DDR initiatives. Integrating transitional justice into the training programmes and support materials for UN mediators and officials and staff working in UN peacekeeping missions will provide UN professionals with a basic knowledge of different transitional justice measures, the relationship between transitional justice and DDR, and a sense of how these issues have been approached in other country contexts.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c2b8696b-2c26-41a4-b71e-5756ee582462", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 23, + "Paragraph": "Integrate information on transitional justice measures into the field assessment Information about transitional justice measures is an important component of DDR assess- ment and design. Transitional justice measures and their potential for contributing to or hindering DDR objectives should be considered in the integrated DDR planning process, particularly in the detailed field assessment. Are transitional justice measures mandated in the peace agreement? Did the peace agreement stipulate any connection between the DDR process and transitional justice measures? A list of critical questions related to the intersection between transitional justice and DDR is available in Annex C. For more infor- mation on conducting a field assessment see Module 3.20 on DDR Programme Design.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "281d26a1-8a26-42dc-80b8-832aacd9c7eb", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Incorporate a commitment to international humanitarian and human right law into the design of DDR programmes DDR programmes supported by the UN are committed to respect, ensure respect for, and implement international humanitarian and human rights law (see Module 2.1, section 5.15). This means protecting the rights of those who participate in DDR programmes, as well as the rights of the members of the communities who are asked to receive and inte- grate ex-combatants. DDR programmes that uphold humanitarian and human rights law and hold accountable those who violate the law are likely to be perceived as more legiti- mate processes by both the ex-combatants, who are their immediate beneficiaries, and the society as a whole. Procedures that affirm this commitment may include the following: 3.20 2.10 International and national staff shall be trained as to their obligations under interna- tional law; Rules and regulations aimed at protecting human rights and upholding international humanitarian law shall be developed, posted, and communicated to staff and all ex- combatants who participate in DDR. Additionally, an appropriate means of reporting and penalizing those who violate international or national law to the appropriate authorities shall be created and made available to staff, participating ex-combatants, and members of recipient communities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "d4964a10-92db-4ced-b486-3f95255c2a13", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Identify a transitional justice focal point in the DDR programme and plan regular briefing and meetings with UN and national authorities working on transitional justice measures Identification of individuals that may serve as formal focal points within the DDR programme, within the UN country team working on transitional justice, and within relevant national institutions, may facilitate regular communication between DDR and transitional justice measures. DDR administrators and international and national actors working on transitional justice initiatives should plan for regular meetings as opportunities for exchange, to proac- tively deal with any possible tensions, and to explore the possibilities for effective coordination.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "31412958-8074-4333-b06f-1735b1b60fe1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 24, + "Paragraph": "Coordinate on public information and outreach The dissemination of public information is a crucial task of both DDR and transitional 4.60\tjustice initiatives (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Poor coordination in public outreach may generate conflicting and par- tial messages. DDR and transitional justice should seek ways to coordinate their public information efforts. Increased consultation and coordination concerning what and how information is released to the public may reduce the spread of misinformation and rein- force the objectives of both transitional justice and DDR. The designation of a transitional justice focal point in the DDR programme, and regular meetings with other relevant UN and national actors, may facilitate discussion on how to better coordinate public informa- tion and outreach to support the goals of both DDR and transitional justice. Civil society may also play a role in public information and outreach. Working with relevant civil society organizations may help the DDR programme to reach a wider audi- ence and ensure that information offered to the public is communicated in appropriate ways, for example, in local languages or through local radio.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5b6241a2-0c29-4d2c-9ca5-ceb466dfb158", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Integrate information on transitional justice into the ex-combatant pre-discharge sensitization process Ex-combatants also need information about provisions for justice, particularly if it could affect their reintegration process. Clearly communicated information may decrease anxiety that ex-combatants may feel about transitional justice measures. The discharge awareness raising process is an opportunity to work with UN colleagues or national authorities to develop a briefing on transitional justice measures ongoing in the country and to discuss how, or if, this will have an impact on ex-combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3eff870a-9849-40df-ab39-fa9600acfa33", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 24, + "Paragraph": "Involve and prepare recipient communities Community tension around reintegration processes will be eased if recipient communities are involved and prepared for returning ex-combatants. Recipient communities should be included in the public information and outreach strategy and should have an opportunity to ask questions and discuss the reintegration process before ex-combatants return, including issues related to ex-combatant accountability. In some cases, DDR programmes have encour- aged the organization of community committees to deal with ex-combatant reintegration. These committees may serve as a forum for exploring ex-combatant participation in locally- based justice processes as well as for dispute resolution and problem solving if problems arise between community members and ex-combatants (also see IDDRS 4.30 on Reintegration).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "77c243e2-3418-43d8-809a-d32b711fc2de", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 25, + "Paragraph": "Consider community-based reintegration approaches Compared to targeted assistance programmes for ex-combatants, community-based reinte- gration approaches have advantages that may provide broader benefits within the com- munity. Such approaches have more potential for sustainability as ex-combatants are located in the communities and work together with other community members for local develop- ment. Such an approach may also promote community reconciliation as ex-combatants are not seen as the sole beneficiaries of assistance. Additionally, reintegration activities, apart from community recovery and reintegration, may link into other development programmes. It also promotes closer collaboration with other development actors. Finally, community- based reintegration promotes community empowerment, transparency and accountability as beneficiaries are selected through community-based approaches.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f07ca53b-bf09-4a0f-9997-c4d17e88a606", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 25, + "Paragraph": "Transitional justice initiatives should designate a focal point for DDR Transitional justice practitioners working on prosecutions processes, truth commissions, reparations programmes and institutional reform initiatives should communicate with the DDR program, identify a focal point for DDR as part of their outreach activities and actively seek opportunities for information exchange and collaboration, including possible coordi- nation on public information strategies as proposed above.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f52cfb84-9636-486e-8e0d-54168ac43b0a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Integrate information on DDR in conflict analysis, assessments and evaluations undertaken to support or advance transitional justice initiatives Transitional justice practitioners should also be aware of the impact of DDR on their goals and objectives by considering the DDR programme in their analytical tools for design, assess- ment and evaluation.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1d9321db-306f-438e-b01c-044300b3068d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 26, + "Paragraph": "Consider sharing DDR information with transitional justice measures Both DDR and transitional justice initiatives engage in gathering, sharing, and disseminating information. However, rarely is information shared in a systematic or coherent manner between these two programmes. DDR programmes, which are usually established before transitional justice measures may consider sharing information with the latter. This need not necessarily include sharing information relating to particular individuals for purposes of prosecutions, as this may create difficulties in some contexts (although, as illustrated in section 7.1 above, it frequently does not). Information about the more structural dimen- sion of combating forces, none of which needs to be person-specific, may be very useful for transitional justice measures. Socio-economic and background data gathered from ex- combatants through DDR programmes can also be informative. Similarly, transitional justice initiatives may obtain information that is important to DDR programmes, for example on the location or operations of armed groups. DDR programmes may also accommodate procedures that include gathering infor- mation on ex-combatants accused or suspected of gross violations of international human rights law and serious violations of international humanitarian law. This could be done for example through the information management database, which is essential for tracking 4.20\tthe DDR participants throughout the DDR process (also see IDDRS 4.20 on Demobilization, section 5.4). Truth commissions, in particular, present optimum opportunities for DDR programmes to share certain data. Truth commissions often try to reliably describe broad patterns of past violence. Insights into the size, location, and territory of armed groups, their com- mand structures, type of arms collected, recruitment processes, and other aspects of their mode of operation could assist in reconstructing an historical \u2018memory\u2019 of past patterns of collective violence. Sharing information with a national reparations programme may also be important. Here, details about benefits offered to ex-combatants through DDR programmes may be useful in efforts to secure equity in the treatment of victims through reparations programmes. If communities received benefits through DDR programmes, this will also be relevant to those who are tasked with the responsibility of designing collective reparations programmes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bd3bc3b3-4e7c-440f-ae00-f897a3febf18", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Consider developing a common approach to gathering information on children who leave armed forces and groups DDR programmes, UNICEF, child protection NGOs and the relevant child DDR agency in the Government often develop common individual child date forms, and even shared data- bases, for consistent gathering of information on children who leave the armed forces or groups. Various child protection agencies do not systematically record in their individual child forms the identity of the commanders who recruited the children. Yet, this informa- tion could be used later on for justice or vetting purposes regarding perpetrators of child recruitment. While the agencies indicate that such omission is done intentionally to protect the individual children released and CAAGF more generally, in some cases a thorough discussion on the value of recording certain data and the links of DDR with ongoing/poten- tial transitional justice initiatives had not taken place amongst these actors. Child DDR and child protection actors may examine DDR information management databases, with appropriate consideration for issues of confidentiality, disclosure and consent, with a view on their potential value for justice and TJ purposes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c6acc0ae-53f3-44d0-8363-f259bee397ad", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 27, + "Paragraph": "Consider screening of human rights records of ex-combatants DDR programmes may include a variety of screening procedures, for example screening against eligibility criteria for entry into the programme, and screening for different kinds of skills training. Screening procedures designed to put in place measures that avoid provid- ing benefits to known or suspected violators of human rights or international humanitarian law should also be considered. Integrating a screening procedure based on human rights considerations may be more problematic in some contexts than others because of concern that it will deter combatants from entering the DDR programme. At a minimum, those ex- combatants against whom judicial investigations are pending or against whom credible allegations of perpetrating violations of international human rights law or international humanitarian law have been raised should not receive benefits until these allegations are resolved. The proposed focal point on transitional justice should correspond regularly with national and international authorities in order to develop strategies for dealing with alleged perpetrators among the ex-combatants population.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f095cd2f-7186-40bc-80c3-5316cba3df3f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 27, + "Paragraph": "Collaborate on sequencing DDR and TJ efforts DDR donors, administrators and prosecutors may also collaborate more effectively in terms of sequencing their efforts. The possibilities for sequencing are numerous; this section merely provides ideas that can facilitate sequencing discussions between DDR and TJ practitioners. Prosecutors, for instance, may inform DDR administrators of the imminent announce- ment of indictments of certain commanders so that there is time to prepare for the possible negative reactions. Alternatively, in some cases prosecutors may take into account the prog- ress of the disarmament and demobilization operations when timing the announcement of their indictments. United Nations Staff working on DDR programmes should encourage their national interlocutors to coordinate on sequencing with truth commissions. Hearings for truth commissions, for example, could be scheduled in communities that are receiving large numbers of demobilized ex-combatants, thus providing ex-combatants with an immediate opportunity to apologize or tell their side of the story. The most important reason that implementation of reparations and DDR initiatives is not coordinated is that while DDR is funded, reparations are not. However, in situations where reparations are funded, the design and disbursements of reintegration benefits for ex-combatants through the DDR programme may be sequenced with reparation for victims and delivery of return packages for refugees and IDPs returning to their home communi- ties (see IDDRS 5.40 on Cross-border Population Movements). Assistance offered to ex- combatants is less likely to foster resentment if reparations for victims are provided at a comparative level and within the same relative time period. If calendars for the provision of DDR benefits to ex-combatants and reparations to individual victims may not be made to coincide, some benefits to communities perhaps may be planned either through DDR or parallel programmes, or through an early phase of a national reparation or reconstruction programme. Likewise, where collective reparations are provided in a community or region, both victims and ex-combatants potentially benefit\u2014even as separate individualized DDR benefits are also made available (see IDDRS 4.30 on Social and Economic Reintegration). The Stockholm Initiative on DDR recommends establishing parallel windows of financ- ing for DDR and community oriented programming. This has the virtue of providing incen- tives for the coordination of programmes without providing incentives for fusing or merging programmes which may result in a dilution of mandates\u2014and effectiveness. Moreover ex- 5.40 4.30 combatants may play a direct role in some reparations, either by providing direct repara- tion when they have individual responsibility for the violations that occurred, or, when appropriate, by contributing to reparations projects that aim to address community needs, such as working on a memorial or rebuilding a school or home that was destroyed in the armed conflict.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fcc8de72-7e72-4790-a97f-8dce91fa6bfd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 28, + "Paragraph": "Collaborate on strategies to target spoilers Even after a ceasefire or peace agreement, DDR is frequently challenged by commanders who refuse for a variety of reasons to disarm and demobilize, and impede their combatants from participating in DDR. In some of these cases, national DDR commissions (or other officials charged with DDR) and prosecutors may collaborate on prosecutorial strategies, for example focused on those most responsible for violations of international human rights and humanitarian law, that may help to remove these spoilers from the situation and allow for the DDR of the combat unit or group. Such an approach requires an accompanying pub- lic information strategy that indicates a clear and transparent criminal policy, indicating what kind of cases will be prosecuted, and avoiding any perception of political influence, arbitrary prosecution, corruption or favoritism. The public information efforts of both the DDR programme and the prosecutions outreach units should seek to reassure lower rank- ing combatants that the focus of the prosecution initiative is on those most responsible and that they will be welcomed into the DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "73546d32-27ed-4ebc-b371-3062db207fdd", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 28, + "Paragraph": "Encourage ex-combatants to participate in transitional justice measures Ex-combatants are often simultaneously fighters, witnesses, and victims of an armed con- flict. Their testimonies may be valuable for a prosecutions initiative or a truth commission. Additionally their story or experience may change the way others in the society may view them, by blurring the sharp distinctions between combatants, often seen solely as perpetra- tors, and victims, and exposing the structural roots of the conflict. A more comprehensive understanding of the experience of ex-combatants may ease the reintegration process. DDR programmes may encourage ex-combatant participation in transitional justice measures by offering information sessions on transitional justice during the demobilization process and working collaboratively with national actors working on transitional justice measures in their outreach to ex-combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c6cb744b-ff47-44b0-a6a8-59ffef551f3e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 28, + "Paragraph": "Consider how DDR may connect to and support legitimate locally based justice processes Locally based justice processes may complement reintegration efforts and national level transitional justice measures by providing a community-level means of addressing issues of accountability of ex-combatants. When ex-combatants participate in these processes, they demonstrate their desire to be a part of the community again, and to take steps to repair the damage for which they are responsible. This contributes to building or renewing trust between ex-combatants and the communities in which they seek to reintegrate. Locally based justice processes have particular potential for the reintegration of children associated with armed forces and groups. Creating links between reintegration strategies, particularly community reintegration strategies, for ex-combatants and locally-based justice processes may be one way to bridge the gap between the aims of DDR and the aims of transitional justice. UNICEF\u2019s work with locally based justice processes in support of the reintegration of children in Sierra Leone is one example. Before establishing a link with locally based processes, DDR programmes must ensure that they are legitimate and that they respect international human rights standards, includ- ing that they do not discriminate, particularly against women, and children. The national authorities in charge of DDR will include local experts that may provide advice to DDR programmes about locally based processes. Additionally civil society organizations may be able to provide information and contribute to strategies for connecting DDR programmes to locally based justice processes. Finally, outreach to recipient communities may include discussions about locally based justice processes and their applicability to the situations of ex-combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "ed0e239e-a89a-4a96-abd3-7c58dc31e285", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Consider how DDR and transitional justice measures may coordinate to support the reintegration of women associated with armed groups and forces Women associated with armed groups and forces are potential participants in both DDR programmes and transitional justice measures, and both are faced with the challenge of increasing and supporting the participation of women. Both DDR and transitional justice should work towards a better understanding of the motivations, roles and needs of women ex-combatants and other women associated with armed forces and groups by directly engaging women in planning for both programmes and ensuring they are adequately rep- resented in decision-making bodies, in line with UNSC Resolution1325 on women, peace and security (also see IDDRS 5.10 on Women, Gender, and DDR). Sharing information on their respective lessons learned in terms of facilitating the participation of women may be a first step. The ways in which women victims articulate their need for reparations, for example, might be considered in developing specific reintegration strategies for women. Additionally, DDR programme managers may coordinate with transitional justice meas- ures on community approaches that include women, such as strengthening women\u2019s role in locally based justice processes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "58b58690-fe7f-4034-91c3-b1fe3bd30737", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Consider how DDR and transitional justice measures may coordinate to support the reintegration of children associated with armed groups and forces (CAAGF) DDR and transitional justice represent two types of initiatives among a range of interven- tions that are (at least partly) aimed at reintegrating children associated with armed groups and forces. Given the status of children as a special category of protected persons under international law, both DDR and transitional justice actors should work together on a strat- egy that considers these children primarily as victims. Joint coordination on the reintegration of children is possible in at least three broad areas. First, DDR and transitional justice measures may coordinate on a strategy to iden- tify and hold accountable those who are recruiting children\u2014in order to make sure that the welfare of children is considered as the highest priority in that process. Second, both kinds of measures may work together on approaches to reintegrating children who may be responsible for violations of international humanitarian law or human rights law. Given the focus on CAAGF as victims, such an approach would preferably focus on non-judicial measures such as truth commissions and locally-based processes of truth and reconcilia- tion, which may better contribute to the reintegration of children than prosecution. At a minimum, a clear DDR and TJ policy should be developed as to the criminal responsibil- ity of children that takes adequate account of their protection and social reintegration. In the DRC, for example, the position shared by child protection agencies was for CAAFG accused of serious crimes to go through the juvenile justice system, applying special pro- 5.10 cedures and reintegration measures. Third, if a reparations programme is under considera- tion, DDR and Transitional justice actors may work together to ensure a balance between what kind of DDR benefits are offered to CAAGF as former combatants and what is offered to them as reparations as victims. In this process, particular attention needs to be given to girls. Gender inequality and cultural perceptions of women and girls may have particularly negative consequences for the reintegration of girl children associated with armed groups and forces. Targeted efforts by DDR and TJ may be necessary to ensure that girls are protected, but also that girls are given the opportunity to participate and benefit from these programmes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c075e684-0289-4898-a37a-544af09cc539", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": null, + "Paragraph": "Consider how the design of the DDR programme contributes to the aims of institutional reform, including vetting processes Consideration should be given to how the design of the DDR process relates to institutional reform efforts. For example, DDR programmes may coordinate with vetting procedures, providing information to ensure that ex-combatants who are responsible for gross viola- tions of human rights or serious crimes under international law are not reintegrated into public institutions, particularly the armed forces or other national security institutions 6.10\t(also see IDDRS 6.10 on DDR and Security Sector Reform).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1d9796cd-d6b0-4d91-a13b-5a760c86cf79", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 31, + "Paragraph": "Annex A: Terms and definitions Ad hoc international criminal tribunals \u2013 are international judicial bodies created to ad- dress particular situations, for a limited amount of time, and are the result of singular political and historical circumstances. They are composed of independent judges, working on the basis of predetermined rules of procedure, and rendering binding decisions. They are subject to the same principles governing the work of all international judiciaries (e.g., due process, impartiality and independence). Hybrid courts or tribunals \u2013 are courts of mixed composition and jurisdiction, encom- passing both national and international aspects, and usually operating where the crimes occurred. Similar to international tribunals, hybrid courts are ad hoc institutions, created to address particular situations, for a limited amount of time, and are the result of singular political and historical circumstances. They are composed of independent judges, working on the basis of predetermined rules of procedure, and rendering binding decisions. They are subject to the same principles governing the work of all international judiciaries (e.g., due process, impartiality and independence). Institutional reform \u2013 is changing public institutions that perpetuated a conflict or served a repressive regime to be transformed into institutions that support the transition, sustain peace and preserve the rule of law. Following a period of massive human rights abuse, building fair and efficient public institutions play a critical role in preventing future abuses. It also enables public institutions, in particular in the security and justice sectors, to pro- vide criminal accountability for past abuses. International Humanitarian Law (IHL) \u2013 is a set of international rules, established by trea- ties and customary law, which seeks to limit the effects of armed conflict. It aims to protect persons who are not, or are no longer, participating in the hostilities and restricts the means and methods of warfare. International humanitarian law main treaty sources applicable in international armed conflict are the four Geneva Conventions of 1949 and their Additional Protocol I of 1977. The main treaty sources applicable in non-international armed conflict are article 3 common to the Geneva Conventions and Additional Protocol II of 1977. Inter- national humanitarian law is applicable in times of armed conflict, whether international or non-international. For more information see OHCHR\u2019s Fact Sheet No.13, International Humanitarian Law and Human Rights at http://www.unhchr.ch/html/menu6/2/fs13.htm International human rights law \u2013 is a set of international rules, established by treaties and customary law which lays down obligations on States to respect, protect and fulfill human rights and fundamental freedoms of individuals or groups. International human rights law main treaty sources, inter alia, are the Universal Declaration of Human Rights, the International Covenants on Civil and Political Rights (1966) and on Economic, Social and Cultural Rights (1966), as well as Conventions on the Prevention and Punishment of the Crime of Genocide (1948), the Elimination of All Forms of Racial Discrimination (1965), the Elimination of All Forms of Discrimination against Women (1979), against Torture and Other Cruel, Inhuman or Degrading Treatment (1984), and on the Rights of the Child (1989). Other instruments, such as declarations, guidelines and principles adopted at the interna- tional level also belong to the body of international human rights standards. International human rights law applies at all times, both in peacetime and in situations of armed con- flict. See also http://www.ohchr.org/EN/ProfessionalInterest/Pages/InternationalLaw.aspx Prosecutions \u2013 are the conduct of investigations and judicial proceedings against an alleged perpetrator of a crime in accordance with international standards for the administration of justice. For the purposes of this module, the focus is on the prosecution of individuals ac- cused of criminal conduct involving gross violations of international human rights law, serious violations of international humanitarian law and violations of international criminal law. The form, function and mandate of prosecutions initiatives can vary. They can be broad in scope, aiming to try many perpetrators, or they can be narrowly focused on those that bear the most responsibility for the crimes committed. Reparations \u2013 are a set of measures that provides redress for victims of gross violations of international human rights law, serious violations of international humanitarian law and violations of international criminal law. Reparations can take the form of restitution, com- pensation, rehabilitation, satisfaction, and guarantees of non-repetition. Reparations programs have two goals: first, to provide recognition for victims because reparation are explicitly and primarily carried out on behalf of victims ; and, second, to encourage trust among citizens, and between citizens and the state, by demonstrating that past abuses are regarded seriously by the new government. Transitional justice \u2013 comprises the full range of processes and measures associated with a society\u2019s attempts to come to terms with a legacy of large-scale past abuses, in order to ensure accountability, serve justice and achieve reconciliation. It may include criminal pros- ecutions, truth commissions, vetting, reparations programs and memorialization efforts. Whatever combination is chosen must be in conformity with international legal standards and obligations. Truth commissions \u2013 are non-judicial or quasi-judicial fact-finding bodies. They have the primary purpose of investigating and reporting on past abuses in an attempt to understand the extent and patterns of past violations, as well as their causes and consequences. The work of a commission is to help a society understand and acknowledge a contested or denied history, and bring the voices and stories of victims to the public at large. It also aims at preventing further abuses. Truth commissions can be official, local or national. They may conduct investigations and hearings, and may identify the individuals and insti- tutions responsible for abuse. Truth commissions may also be empowered to make policy and prosecutorial recommendations. Vetting \u2013 is a process that aims to exclude individuals from public service whose previous conduct is incompatible with their holding a public position, with a view to re-establishing civic trust and re-legitimize public institutions. Their removal should comply with require- ments of due process of law and principles of non-discrimination.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "c7d5dada-c231-4bd2-a9f8-ff4a95799804", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.20-DDR-and-Transitional-Justice", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.20-DDR-and-Transitional-Justice", + "PageNum": 33, + "Paragraph": "Annex B: Critical questions for the field assessment Questions related to the overall human rights situation What crimes involving violations of international human rights law and international humanitarian law were perpetrated by the different protagonists in the armed conflict? In what different ways were women involved in the conflict? Describe any specific forms of abuse to which women and girls were subjected during the conflict. Describe any use of children by combatant groups. Was this abuse part of an orches- trated strategy, i.e. systematic and perpetrated by state and non-state security forces? If so, what were the institutional processes that facilitated such abuse? Questions related to the peace agreement What were the key components of the final peace agreement? Was amnesty offered as part of the peace process? What type of amnesty? And for what abuses (forced recruitment of children, sexual violence etc)? Were there any transitional justice measures mandated in the peace agreement such as a truth commission, prosecutions process, reparations programme for victims, or insti- tutional reform aimed at preventing future human rights violations? Did the peace agreement stipulate any connection between the DDR process and transitional justice measures? How was information about the peace agreement disseminated to the general popu- lation, in particular to vulnerable and marginalized groups? Questions related to DDR Is there any form of conditionality that links DDR and justice measures, for example, amnesty or the promise of reduced sentences for combatants that enter the DDR program? What are the criteria for admittance into the DDR program? Do the criteria take into consideration the varied roles of women and children associated with armed forces and groups? Will there be any stipulated differences between treatment of men, women or children in the DDR programme? What kind of information will be gathered from combatants during the DDR process? Will the information collected be disaggregated by gender? Will it assess whether ex- combatants committed acts of sexual violence? Will demobilized combatants have the opportunity to be reintegrated into a new army or police force? Is the local community involved in the reintegration programme? Will the reintegration programme consider or aim to provide benefits to the commu- nities where demobilized combatants will return? Questions related to transitional justice What office in the United Nations peacekeeping mission and/or what UN agency is the focal point on transitional justice, human rights, and rule of law issues? What government entity is the focal point on transitional justice, human rights and rule of law issues? Is there a national truth commission? Are there any other truth-seeking initiatives, for example at the local or regional level of the country? Are there any investigations and/or prosecutions of perpetrators of crimes involving violations of international human rights law and international humanitarian law that occurred during the conflict? Does the truth commission or prosecutions process have any specific outreach to, or strategy for dealing with, ex-combatants? Does the truth commission or prosecutions process have a public information or out- reach capacity? What kind of information is being disseminated? How are they reaching out to vulnerable, marginalized groups including ex-combatants in communicating mandate and operations? Are there plans to offer reparations to victims or communities ravaged by the conflict? Who are the targeted beneficiaries of the reparations? How are women survivors of sexual violence considered in reparations programmes, female ex-combatants, WAAFG, children? When will reparations be distributed? How will reparations distributed? Who is funding or could fund the reparation programme? Are reparations tied to any other transitional justice measures such as prosecutions, truth-telling, institutional reform and/or local justice initiatives? Is institutional reform, such as vetting, mandated as part of the peace agreement or post-conflict legal framework? Are security sector institutions targeted for such reform? Are there any accountability mechanisms set up to address the integrity of the secu- rity sector personnel? Are there any justice or reconciliation efforts at the local/community level? What is the involvement of women and/or children in locally based justice and rec- onciliation initiatives? What is the criterion for determining who could participate in locally based justice and reconciliation initiatives? Are these locally based justice and reconciliation initiatives linked to any other tran- sitional justice measures such as prosecutions, truth-telling and/or reparations? Questions related to possibilities for coordination Will the planned timetable for the DDR programme overlap with planned transitional justice measures? Are there opportunities to coordinate information strategies around DDR and transi- tional justice measures? Will ex-combatants be screened on human rights criteria as part of the DDR programme? Can the DDR programme integrate human rights education and/or information ses- sions that specifically provide information on transitional justice? Can the DDR programme provide incentives for ex-combatants to participate in pros- ecutions processes or truth-seeking initiatives? Will there be any screening on human rights criteria of those ex-combatants interested in staying in or joining the security forces? How can the DDR programme support or coordinate with other initiatives that address justice for women and justice for children? Can any information gathered during the DDR programme be shared with a truth com- mission or prosecutions process? How do the benefits offered to ex-combatants in the DDR programme compare to any reparations offered to victims of the armed conflict? Can the benefits provided to ex-combatants be considered in light of reparations offered to victims? Is coordination between these two mechanisms possible? Are there opportunities to connect the reintegration programme with locally based justice and reconciliation initiatives? For example, can any benefits provided to the community include support for locally based justice and reconciliation initiatives? Can the reintegration programme include a component that involves ex-combatants in efforts to rebuild communities that have been physically destroyed as a result of the armed conflict? Does the monitoring and assessment of the DDR programme include assessment of the impact of the programme on human rights, justice, and rule of law?", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bd1e7799-01f1-451b-8a73-956c4d66dab7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": null, + "Paragraph": "Summary Organized crime and conflict converge in several ways, notably in terms of the ac- tors and motives involved, modes of operating and economic opportunities. Conflict settings \u2013 marked by weakened social, economic and security institutions; the delegitimi- zation or absence of State authority; shortages of goods and services for local popula- tions; and emerging war economies \u2013provide opportunities for criminal actors to fill these voids. They also offer an opening for illicit activities, including human, drugs and weapons trafficking, to flourish. At the same time, the profits from criminal activities provide conflict parties and individual combatants with economic and often social and political incentives to carry on fighting. For DDR processes to succeed, DDR practitioners should consider these factors. Dealing with the involvement of ex-combatants and persons associated with armed forces and groups in organized crime not only requires the promotion of alternative livelihoods and reconciliation, but also the strengthening of national and local capac- ities. When DDR processes promote good governance practices, transparent policies and community engagement to find alternatives to illicit economies, they can simulta- neously address conflict drivers and the impacts of conflict on organized crime, while supporting sustainable economic and social opportunities. Building stronger State institutions and civil service systems can contribute to better governance and respect for the rule of law. Civil services can be strengthened not only through training, but also by improving the salaries and living conditions of those working in the system. It is through the concerted efforts and goodwill of these systems, among other players, that the sustainability of DDR efforts can be realized. This module highlights the need for DDR practitioners to translate the recognized linkages between organized crime, conflict and peacebuilding into the design and implementation of DDR processes. It aims to contribute to age- and gender-sensitive DDR processes that are based on a more systematic understanding of organized crime in conflict and post-conflict settings, so as to best support the successful transition from conflict to sustainable peace. Through enhanced cooperation, mapping and dia- logue among relevant stakeholders, the linkages between DDR and organized crime interventions can be addressed in a manner that supports DDR in the context of wider recovery, peacebuilding and sustainable development.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e634fc45-5bf5-41d3-93fe-7efffc8bee0c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides DDR practitioners with information on the linkages between organized crime and DDR and guidance on how to include these linkages in integrated planning and assessment in an age- and gender-sensitive way. The module also aims to help DDR practitioners identify the risks and opportunities associated with incorporating organized crime considerations into DDR processes. The module highlights the role of organized crime across all phases of the peace continuum, from conflict prevention and resolution to peacekeeping, peacebuilding and longer-term development. It addresses the linkages between armed conflict, armed groups and organized crime, and outlines the ways that illicit economies can tem- porarily support reconciliation and sustainable reintegration. The guidance provided is applicable to mission and non-mission settings and may be relevant for all actors engaged in combating the conflict-crime nexus at local, national and regional levels.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9ee5a5cb-b61d-4819-9cdd-7cb9b2fb8a18", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. An organized criminal group shall mean a structured group of three or more persons, existing for a period of time and acting in concert with the aim of committing one or more serious crimes or offences established in accordance with the United Nations Convention against Transnational Organized Crime (UNTOC), in order to obtain, di- rectly or indirectly, a financial or other material benefit.1 A serious crime shall mean conduct constituting an offence punishable by a maximum deprivation of liberty of at least four years or a more serious penalty.2 A structured group shall mean a group that is not randomly formed for the immediate commission of an offence and that does not need to have formally defined roles for its members, continuity of its membership or a developed structure.3 Illicit economies are generally defined as economic transactions that are deemed ille- gal either because (a) \u2018licit\u2019 commodities or services are traded unlawfully or (b) illicit commodities or services are traded through unlawful measures.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4a59b6fe-b6b6-442a-be58-7aa412bc18ca", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 5, + "Paragraph": "Introduction Organized crime can impact all stages of conflict, contributing to its onset, perpet- uating violence (including through the financing of armed groups) and posing ob- stacles to lasting peace. Crime and conflict interact cyclically. Conflict creates space and opportunities for organized crime to flourish by weakening States\u2019 capacities to enforce the rule of law and social order. This creates the conditions for those engaging in organized crime (including both armed forces and armed groups) to operate with comparably little risk.4 Criminal activities can directly contribute to the intensity and duration of war, as new armed groups emerge that engage in illicit activities (involving both licit and illicit commodities) while fighting each other and the State.5 Criminal activities help to sup- ply parties to armed conflict with weapons, ammunition and revenues, augmenting their ability to engage in armed violence, exploit and abuse the most vulnerable, and promote the proliferation of weapons and ammunition in society, therefore undermining prospects for peace.6 Armed groups in part derive resources, power and legitimacy from participa- tion in illicit economies that allow them to impose a scheme of violent governance on locals or provide services to the communities where they are based.7 Additionally, extortion schemes may be imposed on communities, whereby payments are made to armed groups in exchange for protection and/or the provision of other services. In the absence of State institutions, such tactics can often become accepted and acknowledged as a form of taxation by armed groups. This means that those engaged in criminal activities can, over time, be perceived as legitimate political actors. This perceived legit- imacy can, in turn, translate into popular support, while undermining State authority and complicating conflict resolution. Additionally, the UN Security Council has emphasized that terrorists and terrorist groups can benefit from organized crime, whether domestic or transnational, as a source of financing or logistical support. Recognizing that the nature and scope of the linkages between terrorism and organized crime, whether domestic or transnational, vary by context,8 these ties may include an alliance of opportunities such as the en- gagement of terrorist groups in criminal activities for profit and/or the receipt of taxes to allow illicit flows to pass through territory under the control of terrorist groups. Overall, the combined presence of terrorism, violent extremism conducive to terrorism and organized crime, whether domestic or transnational, may exacerbate conflicts in affected regions and may contribute to undermining the security, stability, governance, and social and economic development of States. Importantly, in addition to diminishing law and order, armed conflict also makes it more difficult for local populations to meet their basic needs. Communities may turn to the black market for licit goods and services and seek economic opportunities in the illicit economy in order to survive. Since organized crime can underpin livelihoods for local populations before, during and after conflict, the planning for DDR processes must consider the role illicit activities play in communities at large and for specific portions of the population, including women, as well as the linkages between criminal groups and armed forces and groups. The response to organized crime will vary depending on whether the criminal activities at play involve licit or illicit commodities. The legality of commodities may also impact notions of who or what acts as a \u2018spoiler\u2019 to the peace process, community perceptions of DDR and which reintegration options are sought. DDR practitioners should also consider gender dimensions when contemplating how organized crime and armed conflict interact. Organized crime and armed con- flict affect and involve women, men, boys and girls differently, irrespective of wheth- er they are combatants, persons associated with armed forces and groups, victims of organized crime or a combination thereof. For example, although notions of mascu- linity may be more often associated with engagement in organized crime and males (adults, youth and boys) may more obviously take part in the conflict and make up the largest number of combatants, females who engage in criminal activities and conflict (both in combat and non-combat roles) can face discrimination based on gender from both ex-combatants and communities. Moreover, women are more often survi- vors of certain forms of organized crime, particularly human trafficking, and can be stigmatized or shamed due to the sex- ual exploitation they have experienced. They may be rejected by their families and communities upon their return leaving them with few opportunities for social and economic support. The experiences and treatment of males and females both during armed conflict and during their return to society may vary based on social, cultural and economic practices and norms. The organized crime\u2013conflict nexus therefore re- quires a gender- and age-sensitive DDR response. Children are highly vulnerable to trafficking and to the worst forms of child labour. Child victims may also be stigmatized, hidden or identified as dependants of adults. Therefore, within DDR, the identification of child victims and abductees, both girls and boys, requires age-sensitive approaches. Depending on the circumstances, organized crime may have existed prior to armed conflict (and possibly have given rise to it) or may have emerged during conflict. Organized crime may also remain long after peace is negotiated. Given the linkages between organized crime and armed conflict, it is necessary to recognize and under- stand this nexus as an integral part of the entire DDR process. DDR practitioners shall understand this convergence and implement measures that mitigate against associated risks, such as the reengagement of DDR participants in organized crime or the inad- vertent removal of illegal livelihoods without alternatives.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "a2ab10b1-4867-49ed-b556-1ad5de068211", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 7, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the linkages between DDR and organized crime.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "19519837-c3a7-4e3c-889d-15345eb0f38c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 7, + "Paragraph": "Criteria for participation/eligibility In contexts in which organized crime and armed conflict converge, members of armed forces and groups under consideration to participate in DDR may be (or may have been) engagedincriminalactivities. Ultimately, Stateshavetheprerogative tolegislateoncrimes and determine applicable sanctions, including judicial and non-judicial measures. Inter- national humanitarian law encourages the granting of amnesties at the end of hostilities to persons who have participated in armed conflict as a measure of clemency favouring national reconciliation and a return to peace. DDR practitioners shall therefore seek advice from human rights officers or rule-of-law or other legal experts to assess the types of crimes committed in a particular context, whether amnesties have been issued in accordance with international humanitarian and human rights law, and for which types of crimes those amnesties have been issued, as their commission may make those involved ineligible for DDR. Engagement in organized criminal activities may sometimes rise to the level of war crimes, crimes against humanity and genocide, and/ or gross violations of human rights. Therefore, if DDR participants are found to have committed these crimes, they shall immediately be removed from participation. For additional guidance on armed groups and individuals listed by the Security Council as terrorists, as well as perpetrators or suspected perpetrators of terrorist acts, see IDDRS 2.11 on The Legal Framework for UN DDR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8d644e90-b123-4da4-8d29-ec0f2dbcf910", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 7, + "Paragraph": "Unconditional release and protection of children The majority of girls and boys associated with armed forces and groups may be victims of human trafficking, and DDR practitioners shall treat all children who have been recruited by armed forces and groups, including children who have otherwise been exploited, as victims of crime and of human rights violations. When DDR processes are implemented, children shall be separated from armed forces and groups and handed over to child protection agencies. As victims of crime, children\u2019s cases shall be han- dled by child protection authorities. Children shall be provided with support for their recovery and reintegration into families and communities, and the specific needs arising from their exploitation shall be addressed. For further information, see IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7fefa261-c83c-4d06-b7a8-98be2de31c6b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 8, + "Paragraph": "Gender-responsive and inclusive DDR practitioners shall be aware that, in contexts of organized crime, not all DDR par- ticipants and beneficiaries have the same needs. For example, the majority of victims of human trafficking, sexual abuse and exploitation are women, girls and boys. More- over, women may be forcibly recruited for labour by armed groups and used as smug- gling agents for weapons and ammunition. Whether they become members of armed groups or are abductees, women have specific needs derived from their human traf- ficking exploitation including debt bondage; physical, psychological and sexual abuse; and restricted movement. DDR practitioners shall therefore pay particular attention to the specific needs of women and men, boys and girls derived from their condition of having been trafficked and implement DDR processes that offer appropriate, age- and gender-specific psychological, economic and social assistance. For further information, see IDDRS 5.10 on Women, Gender and DDR, IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "1b1a0800-9f62-4d84-b971-21d0147341f2", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 8, + "Paragraph": "Conflict sensitive DDR practitioners shall be aware of the way that crime can influence politics in the country in which they operate and avoid inadvertently feeding harmful dynamics. For example, DDR participants may seek to negotiate for political positions in exchange for violence reduction, without necessarily stepping away from their links to organized criminal groups.9 In these scenarios, DDR practitioners shall consider wider strate- gies to strengthen institutions, fight corruption and foster good governance. DDR prac- titioners shall be aware that without safeguards, DDR processes may inadvertently legitimize illicit flows of both licit and illicit commodities, and corruption in politi- cal and State institutions. The establishment of prevention, protection and monitoring mechanisms (including systems for ensuring access to justice and police protection) is essential to prevent and punish sexual and gender-based violence, harassment and intimidation, and any other violation of human rights.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8af2ae15-ecae-492a-9922-da961e4ce473", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 8, + "Paragraph": "Context specific DDR processes shall be context specific in order to address local, national, regional and global circumstances. Organized crime takes on very different shapes and forms from one place to another and can evolve over time to adapt to changing realities. The evolution of organized crime may outpace DDR processes that require time to adapt. DDR processes that address organized crime through risk prevention and mitigation measures in one particular context cannot necessarily be replicated in another. Thus, in the planning of DDR processes, practitioners shall incorporate organized crime consid- erations into integrated assessments, by including an examination of organized crime as well as the local political economy, potential risks, mitigating factors and oppor- tunities for local collaboration. For further information, see IDDRS 3.11 on Integrated Assessments.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "fecb4214-225b-4f92-829e-1ce074b0eea8", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 9, + "Paragraph": "Accountable and transparent DDR processes are undertaken in the context of national and local frameworks that must comply with relevant rights and obligations under international law (see IDDRS 2.11 on The Legal Framework for UN DDR). Both in and out of conflict settings, it is the State that has prosecutorial discretion and identifies which crimes are \u2018serious\u2019. In the absence of most serious crimes under international law, such as crimes against humanity, war crimes and gross violations of human rights, it falls on the State to implement criminal justice measures to tackle individuals\u2019 engagement in organized criminal activities. However, issues arise when the State itself engages in criminal activities or is a party to the conflict (and therefore cannot perform a neutral role in prosecuting members of adversarial groups). For armed groups, DDR processes and other peacebuilding/peacekeeping measures may be perceived as implementing victors\u2019 justice by focusing on engagement in illicit activities that fuel con- flict, rather than seeking to understand why the group was fighting in the first place. DDR practitioners shall be aware of these potential risks to the success of DDR processes and ensure that efforts are as transparent as possible. For further information, see IDDRS 6.20 on DDR and Transitional Justice..", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "69d7a4d6-02f2-4c7b-aca3-00d95002c220", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 9, + "Paragraph": "Nationally and locally owned DDR processes shall have built-in mechanisms to allow for national stakeholders, in- cluding civil society groups and the private sector, to not only be engaged in the imple- mentation of DDR processes but to be involved in planning. Ultimately, internationally supported DDR processes are finite and constricted by mandates and resources. There- fore, both external and national DDR practitioners shall, to the extent possible, work with (other) national stakeholders to build political will and capacities on organized crime issues. DDR practitioners shall establish relevant and appropriate partnerships to make available technical assistance on organized crime issues through expert con- sultations, staff training, and resource guides and toolkits. Armed forces may themselves be discharged as part of DDR processes and, at the same time, may have been actively involved in facilitating or gatekeeping illicit activities. To address the challenges posed by the entrenched interests of conflict en- trepreneurs, improved law enforcement, border controls, police training and criminal justice reform is required. Where appropriate, DDR practitioners shall seek to partner with entities engaged in this type of broader security sector reform (SSR). For further information, see IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8c01799f-014d-426d-81c0-c6aba276f6c4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 9, + "Paragraph": "Regionally supported The regional causes of conflict and the political, social and economic interrelationships among neighbouring States sharing insecure borders will present challenges in the im- plementation of DDR. Organized crime that is transnational in nature can exacerbate these challenges. DDR practitioners shall carefully coordinate with regional organi- zations and other relevant stakeholders when managing issues related to repatriation and the cross-border movement of weapons, armed groups and trafficked persons. The return of foreign former combatants and children formerly associated with armed forces and groups may pose particular challenges and will require separate strategies (see IDDRS 5.40 on Cross-Border Population Movements and IDDRS 5.20 on Children and DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f416a3af-3a92-41a7-9f7a-4580bff27040", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 10, + "Paragraph": "Combatting organized crime in conflict settings Identifying the role of organized crime in armed conflict is integral to effectively addressing the factors that may give rise to conflict, sustain it or pose obstacles to sus- tainable peace. Broader analysis of organized crime in local contexts and the role it plays in local economies and in social and political frameworks can help DDR prac- titioners develop processes that minimize risks, including the risk of a relapse in violence, the risk that former members of armed forces and groups will re-engage in illicit activities, the risk that DDR processes will remove livelihoods, and the risk of impunity. By integrating organized crime considerations throughout DDR processes and in overall peacebuilding efforts, practitioners can provide ex-combatants, persons associated with armed forces and groups, and local communities with holistic recovery assistance that promotes long-term peace and stability. The following sections seek to clarify the relationship between DDR processes, organized crime and armed conflict by looking at the role that criminal activities play in armed conflict, how and why armed forces and groups engage in organized crime, and the implications for DDR planning and implementation.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f34ae68e-5b06-4839-a29f-9eb0156cdaff", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 10, + "Paragraph": "The role of organized crime in conflict Although multi-dimensional and complex, the impact of criminal activities on armed conflict can generally be described as the following:", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "22be8a24-cc64-4e3e-a427-47e01c2d0d70", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 10, + "Paragraph": "Contributing to the outbreak of conflict Organized crime often emerges when resources, governance, and social and economic opportunities are distributed inequitably. Individuals who feel politically and econom- ically marginalized may turn to the illicit or informal economy, and the social gains derived from illicit activities may become increasingly attractive. Likewise, those who are marginalized may become increasingly resentful of formal economies and social and political channels from which they are excluded. This may make engagement in criminal activities and/or armed conflict appear legitimate. At the same time, illicit funds from criminal activities detract from the formal economy and divert potential tax revenues from States that could have used these funds to invest in education, health care and development. This diversion of funds further exacerbates discontent among the population while diminishing governance. The illicit trade in arms and ammuni- tion may also result in the increased circulation of illicit materiel in communities at the same time as discontent is rising.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5636191e-3e73-42fb-9f00-6e4020d36e76", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 11, + "Paragraph": "Sustaining conflict Once armed conflict has erupted, illicit and informal economies are vulnerable to cap- ture by armed groups, which transforms them into both war and criminal economies. Criminal economies can interweave with war economies by providing financial sup- port and weapons and ammunition for armed groups. Violence can serve as a tool, not only to facilitate or control the illicit movement of goods, but also among armed groups that sell violence to provide protection or reinforcement of a flow under extortion schemes.10 While some armed groups may impose their authority over populations within their captured territory through a scheme of violent governance, in other cases (or in parallel), they may bolster their authority through organized crime by acting as (perceived) legitimate economic and political regulators to local communities. For example, illicit revenue gained by armed groups engaged in criminal activ- ities may be used to maintain social services and protect civilians and supporters in marginalized communities against pred- atory groups, particularly where the State is weak, absent or corrupt. In areas where the illicit economy forms the largest or sole source of income for local communi- ties, armed groups can protect local liveli- hoods from State efforts to suppress these illegal activities. Often, marginalized com- munities depend on the informal economy to survive, and even more so in times of armed conflict, when goods and services are scarce. During armed conflict, when armed forces and groups make territorial gains, they may also gain access to informal markets and illicit flows of both licit and illicit com- modities. This access can be used to further their war efforts. In these circumstances, in addition to direct engagement in criminal activities, rent-seeking dynamics emerge between armed groups and local communities and other actors, under the threat of violence or under the premise of protection of locals against other predatory groups. For example, rather than engaging in criminal activities directly, armed groups may extort or tax those using key transport (and consequently trafficking) hubs or demand payment for access to resources and extraction sites.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c447fe76-dbe3-42b6-8911-e5d039b6164d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 11, + "Paragraph": "Undermining peace Criminal economies risk becoming embedded in a State\u2019s economic and social fabric even after an armed conflict and its war economy formally end. Civilian livelihoods may continue to depend on illicit activities previously undertaken during wartime. Corruption patterns established by State actors during wartime may also continue, particularly when the rule of law has been weakened. This may prevent the develop- ment of effective institutions of governance and pose challenges to establishing long- term peace and stability. Even in a post-conflict context, the widespread availability of weapons and am- munition (due to trafficking by armed forces and groups, stockpile mismanagement and weapons retention by former combatants) may undermine the transition to peace. Violence may be used strategically in order to disrupt the distribution of power and resources, particularly in transitioning States where criminal violence has erupted.11 Where communities are supported and protected by armed groups, combatants become legitimized in the eyes of the people. Armed groups that act as protectors of local livelihoods, even if livelihoods are made illegally, may gain more widespread political and social capital than State institutions. Where organized crime becomes embedded, these circumstances can result in a resurgence of conflict. The relationship between organized crime and armed forces and groups As a preliminary consideration, DDR practitioners should first distinguish between organized crime as an entity and organized crime as an activity. Labelling groups as \u2018organized criminal groups\u2019 (entity) has become increasingly irrelevant in conflict set- tings where armed groups (and occasionally armed forces) are engaged in organized crime, often rendering organized criminal groups and armed groups indistinguisha- ble. The progressive blurring of lines between organized criminal groups and armed groups necessitates an understanding of the motivations for engaging in organized crime (as an activity) and armed conflict. This awareness is particularly important for DDR practitioners when determining whom to involve as participants in DDR process- es and when determining the types of measures to implement in order to minimize continued involvement (and/or re-engagement) in illicit activities. Where crime and armed conflict converge, two general motives emerge: economic and social/political. Economic motivations arise in conflict when the State is absent or weak and actors can monopolize a market or carry out a lucrative illicit activity with impunity. Social/political motives can also arise in the absence of the State apparatus, leading actors to take the State\u2019s place through the pursuit of legitimacy or exercise of power through violent governance. While organized criminal groups have largely been described as carrying out their activities for a financial or material benefit, recent evidence indicates that motives exist beyond profits. Similarly, where armed groups have traditionally fought for a political or ideological reason, economic opportunities presented by organized crime may expand their objectives. While these considerations are most frequently applied to armed groups, armed forces may also directly engage in organized crime. For example, poor working con- ditions coupled with low wages may be insufficient for individual members of armed forces to survive, leading some to sell weapons to armed groups and communities for financial gain. More broadly, in some cases, challenges to State strongholds mean that State actors must struggle to maintain their power, joining armed groups in competing for resources and territorial control, and often also engaging in organized crime activ- ities for economic profit.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b67b0d1e-6648-450a-ac3a-b311fcdac629", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 12, + "Paragraph": "The politicization of crime and criminalization of politics When State involvement in criminal activities is indirect, symbiotic relationships can arise with other conflict actors through corruption. Corruption has been widely iden- tified as a major spoiler of peace processes and poses serious risks to the success of DDR processes. Armed groups engaged in organized crime may actively seek political protection and facilitation for their operations, using bribery and the threat of violence and capturing parts of the democratic process to influence progressively higher levels of the State. In some cases, organized crime becomes so pervasive that it \u2018captures\u2019 the State\u2019s public and political spaces. Due to individuals\u2019 positions within the State appa- ratus, illicit activities may flourish with impunity. State officials who are linked to illicit activities that contribute to violence can exert their political influence and power to sway negotiations and settlements to benefit their dealings, at the expense of sustaina- ble peace. While the criminalization of politics can become a residual legacy of conflict, the subversion of the rule of law and mismanagement of public services may lead to conditions that risk the recurrence of conflict.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4f73fac1-cd70-4b1e-892e-64170c54adf7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": null, + "Paragraph": "Relevant frameworks and approaches to combat organized crime during armed conflict In supporting DDR processes, organizations are governed by their respective constit- uent instruments; specific mandates; and applicable internal rules, policies and pro- cedures. DDR is also supported within the context of a broader international legal framework, which contains rights and obligations that must be adhered to in the im- plementation of DDR. As such, the applicable legal frameworks should be considered at every stage of the DDR process, from planning to execution and evaluation, and, in some cases, the legal architecture to counter organized crime may supersede DDR policies and frameworks. Failure to abide by the applicable legal framework may result in consequences for the UN, national institutions, the individual DDR practitioners involved and the success of the DDR process as a whole. Within the context of organized crime and armed conflict, DDR practitioners must consider national as well as international legal frameworks that pertain to organized crime, in both conflict and post-conflict settings, in order to understand how they may apply to combatants and persons associated with armed forces and groups who have engaged in criminal activities. While \u2018organized crime\u2019 itself remains undefined, a number of related international instruments that define concepts and specific mani- festations of organized crime form the legal framework upon which interventions and obligations are based (refer to Annex B for a list of key instruments). A country\u2019s international obligations put forth by these instruments are usually translated into domestic legislation. While domestic legal frameworks on organized crime may differ in the treatment of organized crime across States, by ratifying inter- national instruments, States are required to align their national legislation with inter- national standards. Given that DDR processes are carried out within the jurisdiction of a State, DDR practitioners should be aware of the international instruments that the State in which DDR is taking place has ratified and how these may impact the im- plementation of DDR processes, particularly when determining the eligibility of DDR participants. As a preliminary obligation, DDR practitioners shall respect the national laws of the host State, which in turn must comply with standards set forth by the international legal framework on organized crime, corruption and terrorism as well as international humanitarian and human rights laws. For example, participation in criminal activi- ties by certain former members of armed forces and groups may limit their partici- pation in DDR processes, as outlined in a State\u2019s penal code and criminal procedure codes. Moreover, where crimes (such as forms of human trafficking) committed by ex-combatants and persons formerly associated with armed forces and groups are so egregious as to constitute crimes against humanity, war crimes or gross violations of human rights, their participation in DDR processes must be excluded by international humanitarian law. In cases where armed forces have engaged in criminal activities amounting to the most serious crimes under international law, it is the duty of every State to exercise its criminal jurisdiction over those responsible. DDR practitioners shall not facilitate any violations of international human rights law or international humanitarian law by the host State, including arbitrary depriva- tion of liberty and unlawful confinement, or surveillance/maintaining watchlists of participants. DDR practitioners should be aware of local and international mecha- nisms for achieving justice and account- ability. Moreover, it is a long-established policy that the UN will not endorse pro- visions in a transitional justice process that include amnesties for genocide, war crimes, crimes against humanity and gross violations of human rights (see IDDRS 6.10 on DDR and Security Sector Reform and IDDRS 6.20 on DDR and Transitional Justice). Therefore, if there is a concern regarding the obligation to respect a host State\u2019s law and the activities of the DDR practitioner, the DDR practitioner shall seek legal advice from the competent legal office and human rights office, and DDR processes may need to be adjusted. For further information, see IDDRS 2.11 on The Legal Framework for UN DDR. DDR processes may also be impacted by Security Council sanctions regimes. Targeted sanctions against individuals, groups and entities have been utilized by the UN to address threats to international peace and security, including the threat of organized crime by armed groups. DDR practitioners should be aware of any relevant sanctions regime, particularly arms embargo measures that may restrict the options available during disarmament or transitional weapons and ammunitions management activities, limit eligibility for participation in DDR processes and restrict the provision of financial support to DDR participants. (For more information, refer to IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Manage- ment.) While each sanctions regime is unique, DDR practitioners shall be aware of those applicable to armed groups and seek legal advice about whether listed individu- als or groups can indeed be eligible to participate in DDR processes. For example, the Security Council Committee concerning ISIL (Da\u2019esh), Al-Qaida and associated individuals, groups, undertakings and entities, established pursuant to Resolutions 1267 (1999), 1989 (2011) and 2253 (2015), is the only sanctions committee of the Security Council that lists individuals and groups for their association with ter- rorism. DDR practitioners shall be further aware that donor States may also designate groups as terrorists through \u2018national listings\u2019. DDR practitioners should consult their legal adviser on the implications a terrorist listing may have for the planning or imple- mentation of DDR processes, including whether the group was designated by the UN Security Council, a regional organization, the host State or a State supporting the DDR process, as well as whether the host or a donor State criminalizes the provision of sup- port to terrorists, in line with applicable international counter-terrorism requirements. For an overview of the legal framework related to DDR more generally, see IDDRS 2.11 on The Legal Framework for UN DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "331f00d3-a24f-4427-bef2-f7d27f9d57df", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 15, + "Paragraph": "Implications for DDR The crime-conflict nexus shall be considered by DDR practitioners as they contemplate engagement and ultimately determine whether DDR is an appropriate response or whether law enforcement interventions and/or criminal justice mechanisms are better suited to the context. In order to develop successful DDR processes, DDR practitioners should assess whether participants\u2019 involvement in criminal economies came about as a function of war or as part of broader economic or social dynamics. During DDR processes, incen- tives for combatants to disarm and demobilize may be insufficient if they control ac- cess to lucrative resources and have well-established informal taxation regimes that de- pend upon the continued threat or use of violence.12 Regardless of whether conflict is ongoing or has ended, if these economic motives are not addressed, the risk that former members of armed forces and groups will re-engage in criminal activities increases. Likewise, DDR processes that do not consider social and political motives risk fail- ure. Participation in DDR processes may decrease if members of armed forces and groups feel that they will lose social and political status in their communities by disarming and demobilizing, or if they fear retaliation against themselves and their families for abandoning armed forc- es and groups who engage in criminal activities. Similarly, communities them- selves may be reluctant to accept and trust DDR processes if they feel that such efforts mean losing protection and stability. In such cases, public information can play an important role in supporting DDR process- es, by helping to raise awareness of what the DDR process involves and the opportuni- ties available to leave behind illicit economies. For further information, see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR. Moreover, the type of illicit economy can influence local perspectives. For exam- ple, labour-intensive illicit economies, such as the cultivation of drug crops or artisanal mining of natural resources including metals and minerals, but also logging and fishing, can easily employ hundreds of thousands to millions of people in a particular locale.13 In these instances, DDR processes that work to remove involvement in what can be \u2018positive\u2019 illicit activities may be unsuccessful if no alternative economic opportunities are offered, and a better route may be to support the formalization and regulation of the relevant sectors. Additionally, the interaction between organized crime and armed conflict is a fundamentally gendered phenomenon, affecting men and women differently in both conflict and post-conflict settings. Although notions of masculinity may be more fre- quently associated with engagement in organized crime, and males (adults, youth and boys) may more obviously take part in the conflict and make up the largest number of combatants, females who engage in criminal activities and conflict (both in combat and non-combat roles) can face discrimination on the basis of gender from both ex-combat- ants and communities. Moreover, women are more frequently victims of certain forms of organized crime, particularly human trafficking for sexual exploitation, and can be stigmatized or shamed due to the sexual exploitation they have experienced.14 They may be rejected by their families and communities upon their return, leaving them with few opportunities for social and economic support. At the same time, men and boys who are trafficked, either through sexual ex- ploitation or otherwise, may face a different set of challenges based on perceived emas- culation. In addition to economic difficulties, they may face stigma in communities who may not view them as victims at all. DDR processes should therefore follow an intersectional and gender-based ap- proach in providing social, economic and psychological services to former members of armed forces and groups. For example, providing reintegration opportunities specific to female or male DDR participants and beneficiaries that promote equality, independence and a sense of ownership over their futures can have a significant im- pact on social, psychological and economic well-being. Finally, given that DDR processes are guided by national and local policies, DDR practitioners should bear in mind the role that crime can play in the politics of the countries in which they operate. Even if ex-combatants lay down their arms, they may retain their links to organized crime. In some cases, participation in DDR may be pred- icated on the condition that ex-combatants engaged in criminal activities are offered positions in the political sphere. This condition risks embedding criminality in the State apparatus. Moreover, for certain types of organized crime, amnesties cannot be granted, as serious human rights violations may have taken place, as in the case of hu- man trafficking. DDR processes must form part of a wider response to strengthening institutions, building resilience towards corruption, strengthening the rule of law, and fostering good governance, which can, in turn, prevent the conditions that may con- tribute to the recurrence of conflict.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "0ea36439-7170-488f-8f2a-b7db31f1d3e9", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 17, + "Paragraph": "DDR and organized crime: planning considerations DDR processes shall form part of overall efforts to achieve peace, considering organ- ized crime as an element of the conflict, through a political prism rather than solely an economic one. Illicit economies should be carefully tackled to avoid unintentionally stigmatizing combatants, persons associated with armed forces and groups, and other DDR participants and beneficiaries. Political dynamics and balances of power should also be kept in mind. Given the complexities of organized crime and conflict, there are very few good practices in peace time, let alone during ongoing conflict. Nevertheless, the basis of any DDR processes should centre on a robust analysis of the local context and thorough information gathering on the dynamics of criminality and conflict. The following section provides guidance on integrating organized crime consid- erations into DDR planning, including in assessments such as conflict, security and political economy analysis.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "50894c7a-fd53-4c5c-9bf3-3354df8e80d0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 17, + "Paragraph": "Assessments and design Crime in conflict and post-conflict settings means that DDR must be planned with three major overlapping factors in mind: Actors: When organized crime and conflict converge, several actors may be in- volved, including combatants and criminal groups as well as State actors, each fuelled by particular and often overlapping motives and engagement in similar activities. Moreover, the blurring of motivations, whether they be political, social or economic, means that membership across these groups may be fluid. In this con- text, the success and sustainability of DDR rests not in treating armed groups as monolithic entities separate from State armed forces, but rather in making allianc- es with those who benefit from adopting rule-of-law procedures. The labelling of what is legal and illegal, or legitimate and illegitimate, is done by State actors and, as this is a normative decision, the definition privileges the State. Particularly in conflict settings in which State governance is weak, corrupt or contested, the bina- ry choice of good versus bad is arbitrary and often does not reflect the views of the population. In labelling actors as organized criminal groups, potential partners in peace processes may be discouraged from engaging and become spoilers instead. In DDR planning, the economic, social and political motives that persuade individuals to partake in organized criminal activities should be identified and un- derstood. DDR practitioners should also recognize how organized crime and conflict affect particular groups of actors, such as women and children, differently. Criminal activities: The type of criminal activity in a given conflict setting may have implications for the planning of DDR processes. While organized crime encompasses a wide range of activities, certain criminal markets frequent- ly arise in conflict settings, including the illegal exploitation of natural resourc- es, weapons and ammunition trafficking, drug trafficking and the trafficking of human beings. Recent conflicts also show conflict actors profiting from pro- tection and extortion payments, as well as kidnapping for ransom and other exploitation-based crimes. Not all organized crimes are similar in nature. For example, while some organized crimes are guided by personal greed and profit, others receive local legitimacy because they address the needs of the local com- munity amid an infrastructural and political collapse. For instance, the traf- ficking of licit goods, such as subsidized food products, can form an integral part of economic and livelihoods strategies. In this context, rather than being seen as criminal conduct, the activities of organized criminal networks may be viewed as a way to build parallel informal economies and greater resilience.15 A number of factors relating to any given criminal economy should be consid- ered when planning a DDR process, including the pervasiveness of the crimi- nal economy; whether it evolved before, during or after the conflict; how violence links criminal activities to armed conflict; whether criminal activities carried out reach the threshold of the most serious crimes under international law; linkages between organized crime and terrorists and/or terrorist groups; and the labour intensiveness of criminal activities. Context: How the local context serves as both a driver and spoiler of peacebuilding efforts is central to the planning of DDR processes, particularly reintegration. Social factors, including local culture, the perceived legitimacy of criminal activities and individual combatants, and general notions of support or hostil- ity towards DDR itself, shape the way that DDR should be approached. More- over, understanding the broader economic and/or political environment in which armed conflict begins and ends allows DDR practitioners to identify en- try points, potential obstacles and pro- jections for sustainability. Although DDR processes deal with members of armed forces and groups rather than criminals, it is important to understand how local circumstances beyond the war context can affect reintegration, and the role that reintegration can play in preventing former combatants and persons formerly associated with armed groups from falling into organized crime. This includes assessing the State\u2019s role in either contributing to or deterring engagement in illicit activities, and the abilities of criminal groups to infiltrate conflict settings by appealing to former combatants. UN peace operations may inadvertently contribute to criminal flows because of misguided interventions or as an indirect consequence of their presence. Inter- ventions should be guided by the \u2018do no harm\u2019 principle, and DDR practition- ers should support the formulation of context-specific DDR processes based on a sound analysis of local factors, vulnerabilities and risks, rather than by replicat- ing past experiences. A political analysis of the local context should consider the non-exhaustive list of elements listed in table 1 and, to the extent possible, identify gender dimensions where applicable.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5a2ce9c4-e16a-4f89-9aa4-d0521abd3aaa", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 20, + "Paragraph": "Risk management and implementation In the planning, design, implementation and monitoring of DDR processes in organ- ized crime contexts, practitioners shall undertake a comprehensive risk management scheme. The following list of organized crime\u2013related risks is intended to assist DDR practitioners to assess and manage vulnerabilities in such contexts in order to prevent negative consequences. Programmatic risk: In contexts of ongoing conflict, organized crime activities can be used to further both economic and power-seeking gains. The risk that ex-com- batants will be re-recruited or (continue to) engage in criminal activity is higher when conflict is ongoing, protracted or financed through organized crime. In the absence of a formal peace agreement, DDR participants may be more reluctant to give up the perceived opportunities that illicit activities offer, particularly when reintegration opportunities are limited, formal and informal economies overlap, and unresolved grievances persist. \u2018Do no harm\u2019 risk: Because DDR processes not only present the risk of reinforcing illicit activities and flows, but may also be vulnerable to corruption and capture, DDR practitioners shall ensure that processes are implemented in a manner that avoids inadvertently contributing to illicit flows and/or retaliation by armed forc- es and groups that engage in criminal activities. This includes the careful selec- tion of partnering institutions and groups to implement DDR processes. Within an organized crime\u2013conflict context, DDR processes may also present the risk of reinforcing extortion schemes through the payment of cash/stipends to DDR participants as part of reinsertion assistance. Practitioners should consider the dis- tribution of payments through the issuance of pre-paid cards, vouchers or digital transfers where possible, to reduce the risk that participants will be extorted by those engaged in criminal activities, including armed forces and groups. Security risk: The possibility of armed groups directly targeting staff/programmes they may perceive as hostile is high in ongoing conflict contexts, particularly if DDR processes are perceived to be associated with the removal of livelihoods and social status. Conversely, DDR practitioners who are perceived to be supporting individuals (formerly) associated with criminal activities, particularly those who engaged in violence against local populations, can also be at risk of reprisals by certain communities or national actors. It is also important that potential risks to communities and civil society groups that may arise as a consequence of their engagement with DDR processes be properly assessed, managed and mitigated. Reputational risk: DDR practitioners should be aware of the risk of being seen as promoting impunity or being lenient towards individuals who may have engaged in schemes of violent governance against communities. DDR practitioners should also be aware of the risk that they may be seen as being complicit in abusive State policies and/or behaviour, particularly if armed forces are known to engage in organized criminal activities and pervasive corruption. Due diligence and appro- priate frameworks, safeguards and mechanisms shall be applied to continuously address these complex issues. Legal risks: DDR practitioners who rely on Government donors may face addi- tional challenges if these Governments insert conditions or clauses into their grant agreements in order to comply with Security Council resolutions. As stated in IDDRS 2.11 on The Legal Framework for UN DDR, DDR practitioners should con- sult with their legal adviser if applicable host State national legislation criminalizes the provision of support, including to suspected terrorists or armed groups des- ignated as terrorist organizations. For more information on legal issues and risks, see section 5.3 of this module.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5941f3a4-96b5-4302-abe8-c672b1bfcc8b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 21, + "Paragraph": "Opportunities for joint approaches in combatting organized crime Planning for DDR processes should be undertaken with a diverse range of partners. By coordinating with Government institutions, the criminal justice sector, academia, civil society and the private sector, DDR can provide ex-combatants and persons formerly associated with armed forces and groups with a wide range of viable alternatives to criminal activities and violence. While the nature of partnerships in DDR processes may vary, local actors possess in- depth knowledge of the local context. This knowledge should serve as an entry point for joint approaches, particularly in the mapping of actors and local conditions. DDR practi- tioners can also draw on the research skills of academia and crime observatories to build evidence-based DDR processes. Additionally, cooperation with the criminal justice sector can provide a basis for the sharing of criminal intelligence and expertise to inform DDR processes, as well as capacity-building to assist in the integration of former combatants. DDR practitioners should recognize that not only local authorities, but also civil society actors and the private sector, may be the frontline responders who lay the foundation for peace and development and ensure its long-term sustainability. Innovative financing sources and partner- ships should be sought. Local partnerships contribute to the collective ownership of DDR processes. DDR practitioners should therefore be exposed to national and local development actors, strategies and priorities. Beyond engagement with local actors, when conflict and organized crime have a transnational element, DDR practitioners should seek to build partnerships regionally to coordinate the repatriation and sustainable reintegration of ex-combatants and per- sons associated with armed forces and groups. Armed forces and groups may engage in criminal activities that span borders in terms of perpetrators, victims, violence, sup- ply chains and commodities, including arms and ammunition. When armed conflicts affect more than one country, DDR practitioners should engage regional bodies to ad- dress issues related to armed groups operating on foreign territory and to coordinate the repatriation of victims of trafficking. Moreover, even when an armed conflict re- mains in one country, DDR practitioners should be aware that criminal links may tran- scend borders and should avoid inadvertently reinforcing illicit cross-border flows. For further information, see IDDRS 5.40 on Cross-Border Population Movements.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2172d372-5be0-4daa-a1fe-b7a03da0b5f0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 22, + "Paragraph": "DDR prioritization in organized crime\u2013conflict settings Based on a local mapping of the conflict and its ties to criminal activities, DDR prac- titioners should set out their primary objectives, taking into account risk factors while managing expectations. It may be useful to outline priorities sequentially, in terms of short-, medium-, and long-term goals, followed by how to achieve them and a baseline of areas for bargaining and concessions. For example, recognizing that some criminal mar- ket types are beneficial to local communities in terms of employment, DDR practitioners may negotiate with ex-combatants to continue their involvement in informal economies temporarily, rather than providing training for employment opportunities that do not yet exist. When setting out these objectives, DDR practitioners should be thorough and organized but flexible enough to adapt to changes in the conflict landscape.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "852801b6-747b-42bc-a7b5-1708252542da", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 22, + "Paragraph": "7.1 Disarmament The trafficking of arms and ammunition supports the capacity of armed groups to engage in conflict settings. Disarmament as part of a DDR programme is essential to developing and maintaining a secure environment in which demobilization and rein- tegration can take place and can play an important role in crime prevention (see IDDRS 4.10 on Disarmament). Moreover, in many cases, Government stockpiles can be a key source of illicit weapons and ammunition, underlining the need to support the devel- opment of national weapons and ammunition management capacity. While arms traf- ficking in and of itself is a direct factor in the duration and escalation of violence, the possession of weapons also secures the ability to maintain or expand other criminal econ- omies, including human trafficking, environmental crimes and the illicit drug trade. Where criminal activities and economic predation are entrenched, armed groups can secure income through the pillaging of lucrative natural resources, movement of other goods or civilian predation. Under these circumstances, the possession of weapons and ammunition is not merely a function of ongoing insecurity but is also an economic asset and means of control. Weapons are needed to maintain protection economies that centre around governance and violence, thereby creating enormous disincentives for armed groups to disarm. Even after formal peace negotiations, post-conflict areas may remain saturated with weapons and ammunition. Their widespread availability and misuse can lead to increased crime and renewed violence, while undermining peacebuilding efforts. Furthermore, if illicit trafficking of weapons and ammunition is combined with the failure of the State to provide security to its citizens, locals may be motivated to acquire weapons for self-protection. In addition to the considerations laid out in IDDRS 4.10 on Disarmament, DDR practitioners should consider the following key factors when developing disarmament operations as part of DDR programmes in contexts of organized crime: Transparency mechanisms: Specifically, the collection and destruction of weapons, ammunition and explosives should have accounting and monitoring measures in place to prevent diversion. This includes recordkeeping of weapons, ammunition and explosives collected during the disarmament phase of a DDR programme. Transparency in the disposal of weapons and ammunition collected from for- mer conflict parties is key to building trust in the DDR programme. Destruction should not take place if there is a risk that judicial evidence may be lost as a re- sult of the disposal, and especially where there is a risk of linkages to organized crime activities. Recordkeeping and tracing of weapons should be mandatory, and of ammunition where feasible. The use of digital technology should be deployed during recordkeeping, where possible, to allow for weapons tracing from the time of retrieval and throughout the management chain, enhancing accountability. For further information, see IDDRS 4.10 on Disarmament. Link to wider SSR and arms control: Law enforcement agencies in conflict-af- fected countries often lack the capacity to investigate and prosecute weapons trafficking offenders and to collect and secure illegal weapons and ammunition. DDR practitioners should therefore align their efforts with broader arms control initiatives to ensure that weapons and ammunition management capacity deficits do not further contribute to illicit flows and the perpetration of armed violence. Understanding arms trafficking dynamics, achieved by ensuring collected weap- ons are marked and thus traceable, is critical to countering illicit arms flows. In the absence of this understanding, illicit flows may continue to provide arms to conflict parties and may continue to provide traffickers with incentives to fuel armed conflicts in order to create or expand their illicit arms market. For further information, see IDDRS 4.11 on Transitional Weapons and Ammunition Manage- ment and IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "51edf99c-6dee-484d-a544-46ba31277046", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 24, + "Paragraph": "Demobilization In crime-conflict contexts, demobilization as part of a DDR programme presents a number of challenges. While the formal and controlled discharge of active combatants may be clear cut, persuading them to relinquish their ties to organized criminal ac- tivities may be harder. This is also true for persons associated with armed forces and groups. Given the clandestine nature of organized crime, establishing whether DDR programme participants continue to engage in organized crime may be difficult. Continued engagement in organized criminal activities can serve not only to further war efforts, but may also offer former members of armed forces and groups a stable livelihood that they otherwise would not have. In some cases, the economic oppor- tunities and rewards available through violent predation and/or patronage networks might exceed those expected through the DDR programme. Therefore, it is important that the short-term reinsertion support on offer is linked to long-term prospects for a sustainable livelihood and is sufficient to fight the perceived short-term \u2018benefits\u2019 from engagement in illicit activities. For further information, see IDDRS 4.20 on Demobili- zation. Moreover, if DDR programme participants are not swiftly integrated into the legal workforce, the probability of their falling prey to organized criminal groups or finding livelihoods in illicit economies is high. Even if members of armed forces and groups demobilize, they continue to be at risk for recruitment by criminal groups due to the expertise they have gained during war. These circumstances mean that DDR practitioners should compare what DDR programmes and criminal groups offer. For example, beyond economic incentives, male combatants often perceive a loss of masculinity, while female ex-combatants struggle with losing some degree of gender equality, respect and security compared to wartime. When demobilizing, feelings of comradeship and belonging can erode, and joining criminal groups may serve as a replacement if DDR programmes do not fill this gap. On the other hand, involvement in illicit activities may pose a risk to the personal safety and well-being of former members of armed forces and groups and their fami- lies. Individuals may remain \u2018loyal\u2019 to criminal groups for fear of retaliation. As such, it is important for DDR practitioners to ensure the safety of DDR programme partici- pants. Similarly, where aims are political and actors have built legitimacy in local com- munities, demobilization may be perceived as accepting a loss of status or defeat. DDR programme participants may continue to engage in criminal activities post-conflict in order to maintain the provision of goods and services to local communities, thereby retaining loyalty and respect.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5f013274-bc39-44a3-8ca4-1bdc75c4c3c7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 16, + "Paragraph": "Reintegration Reintegration support should be based on an assessment of the economic, social, psy- chosocial and political challenges faced by ex-combatants and persons formerly asso- ciated with armed forces and groups, their families and communities. In addition to the guidance outlined in IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration, DDR practitioners should also consider the factors that sustain organized criminal networks and activities when planning reintegration support. In communities where engagement in illicit economies is widespread and nor- malized, certain criminal activities may have no social stigma attached to them. DDR practitioners or may even bring power and prestige. Ex-combatants \u2013 especially those who were previously in high-ranking positions \u2013 often share the same level of status as successful criminals, posing challenges to their long-lasting reintegration into law- ful society. DDR practitioners should therefore consider the impact of involvement of ex-combatants\u2019 involvement in organized crime on the design of reintegration sup- port programmes, taking into account the roles they played in illicit activities and crime-conflict dynamics in the society at large. DDR practitioners should examine the types and characteristics of criminal activities. While organized crime can encompass a range of activities, the distinction between violent and non-violent criminal enterprises, or non-labour intensive and labour-intensive criminal economies may help DDR practitioners to prioritize certain reintegration strategies. For example, some criminal market activities may be consid- ered vital to the local economy of communities, particularly when employing most of the local workforce. Economic reintegration can be a challenging process because there may be few available jobs in the formal sector. It becomes imperative that reintegration support not only enable former members of armed forces and groups to earn a living, but that the livelihood is enough to disincentivize the return to illicit activities. In other cas- es, laissez-faire policies towards labour-intensive criminal economies, such as the ex- ploitation of natural resources, may open windows of opportunity, regardless of their legality, and could be accompanied by a process to formalize and regulate informal and artisanal sectors. Partnerships with multiple stakeholders, including civil society and the private sector, may be useful in devising holistic reintegration assessments and programmatic responses. The box below outlines key questions that DDR practitioners should consider when supporting reintegration in conflict-crime contexts. For further information on reintegration support, and specific guidance on environment crime, drug and human trafficking, see section 9.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "096fff50-b904-40e1-a90a-5bffd8d846d4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 26, + "Paragraph": "DDR-related tools and organized crime Organized crime often exacerbates and may prolong armed conflict. When the precon- ditions are not present to support a DDR programme, a number of DDR-related tools may be used in crime-conflict contexts. Alternatively, DDR-related tools may also be used before, during and after DDR programmes as complementary measures (see ID- DRS 2.10 on The UN Approach to DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "80351792-1919-4356-9bdd-aa04413c7876", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 26, + "Paragraph": "DDR support to mediation When DDR practitioners provide support to mediation teams, they can help to ensure that the provisions included within peace agreements are realistic and implementable (see IDDRS 2.20 on The Politics of DDR). In organized crime contexts, DDR practitioners should seek to provide mediators with a contextual analysis of combatants\u2019 motives for engaging in illicit activities. They should also be aware that engaging with armed groups may confer legitimacy that impacts upon the local political economy. DDR prac- titioners should advise mediators to be wary of entrenching criminal interests in the peace agreement. Where feasible, DDR practitioners may advise mediators to address organized crime activities within the peace agreement, either directly or by putting in place an institutional framework to deal with these issues at a later date. Lessons learned from gang truces can be instructive and should be considered before entering a mediation process with actors involved in criminal activities.16", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "026d81f2-d8ff-4c2f-92df-15962a92fc4a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 27, + "Paragraph": "Transitional weapons and ammunition management The trafficking of weapons and ammunition facilitates not only conflict but other criminal activities as well, including the trafficking of persons and drugs. Transitional weapons and ammunition management (WAM) may be a suitable approach to control or limit the circulation of weapons, ammunition and explosives to reduce violence and engagement in illicit activities. Transitional WAM can contribute to preventing the out- break, escalation, continuation and recurrence of conflict by preventing the diversion of weapons, ammunition and explosives to unauthorized end users, including both communities and armed groups engaged in illicit activities. For more information, re- fer to IDDRS 4.11 on Transitional Weapons and Ammunition Management.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f8c4dfa-4257-4baf-a5fa-64587b65b770", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 27, + "Paragraph": "Community violence reduction In an organized crime\u2013conflict context, community violence reduction (CVR) can help foster social cohesion and provide ex-combatants, persons formerly associated with armed forces and groups, and other at-risk individuals with economic and social alter- natives to joining armed groups and engaging in criminal activities. Community-based initiatives, such as vocational training and short-term employment opportunities, not only reduce the risk that ex-combatants will return to conflict but also that they will continue participating in illicit activities as a means to survive. CVR can also serve as a complementary measure to other DDR processes. For ex- ample, as part of transitional WAM, communities prone to violence can be encouraged to build community storage facilities or hand over a certain quantity of weapons and ammunition as a precondition for benefiting from a CVR programme. Such measures not only disrupt illicit weapons flows but encourage collective and active participation in the security of communities. Additionally, CVR efforts such as mental health and psychosocial support and empowerment initiatives for specific needs groups, including women, children and persons with drug addictions, can both prevent and reduce victimization from con- flict-related criminal activities, including sexual exploitation and drug trafficking. For further information, see IDDRS 2.30 on Community Violence Reduction.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "48fa6998-4b0b-423e-b58e-9d114cd5cc0c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 27, + "Paragraph": "Transitional security arrangements Although they may vary depending on the context, transitional security arrangements can support DDR processes by establishing security structures either jointly between State forces, armed groups, and communities or with a third party (see IDDRS 2.20 on The Politics of DDR). Members of armed groups may be reluctant to participate in the DDR process for fear that they may lose their capacity to defend themselves against those who continue to engage in conflict and illicit activities. Through joint efforts, transitional security arrangements can be vital for building trust and confidence and encourage collective ownership of the steps towards peace. DDR practitioners should be aware that engagement in illicit activities can complicate efforts to create transition- al security arrangements, particularly if certain members of armed forces and groups are required to redeploy away from areas that are rich in natural resources. In this scenario, it may be appropriate for DDR practitioners to advise mediating teams that provisions regarding the governance of natural resources be included in the peace agreement (also see IDDRS 6.10 on DDR and Security Sector Reform).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9b69f23-360f-499f-85b9-c12e62387994", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 28, + "Paragraph": "Reintegration support and organized crime Reintegration support may be provided at all stages of conflict, even when there is no peace agreement and no DDR programme. The risk of the re-recruitment of ex-combatants and persons formerly associated with armed forces and groups or their engagement in criminal activity is higher where conflict is ongoing, protracted or financed through organized crime. DDR practitioners should seek to identify positive entry points for supporting reintegration. In contexts of ongoing conflict and organized crime, these entry points may include geographical areas where reintegration is most likely to succeed, such as pock- ets of peace not affected by military operations or other types of armed violence. These pilot areas could serve as models of reintegration support for other areas to follow. Additional entry points may include armed groups whose members have shown a will- ingness to leave or are assessed as more likely to reintegrate, or specific reintegration interventions involving local economies and partners that will function as pull factors. The guidance on supporting reintegration within DDR programmes provided in section 7.3 is also applicable to planning reintegration support in contexts of ongoing conflict. For further information on reintegration more generally, see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration. The sub-sections below offer guidance on reintegration support in relation to com- mon forms of organized criminal activity in conflict and post-conflict settings: envi- ronmental crime, drug and human trafficking.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dd794b91-7566-4c88-8f0c-a7558265b282", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 28, + "Paragraph": "Reintegration support and environmental crime Natural resources have an enormous impact on armed conflict, and they can be used to either support or undermine efforts towards peace. Members of armed forces and groups frequently engage in environmental crime as a low-risk, high-profit source of revenue to fund recruitment or the purchase of weapons, or even to exert de facto con- trol over geographic territories. Environmental crime encompasses a range of different activities in which natural resources are illegally exploited and often trafficked or sold into global supply chains. It can have heavy consequences on communities, including direct environmental degradation, such as the contamination of water or soils, or the destruction of agricultural crops; indirect environmental degradation, such as the loss of biodiversity and other ecosystem services; and/or direct displacement and exposure to violence. At the same time, natural resources hold tremendous potential to support peace and development. In many parts of the world, elements of the natural environment are culturally significant and represent key components of social status and identity. Engaging former members of armed forces and groups in the management of natu- ral resources, including in decision-making, direct environmental rehabilitation and/ or community-based natural resource management, helps to consolidate their status as civil citizens, thus reinforcing their political and social reintegration. Additionally, linking reintegration with well-managed natural resources can increase the range of options for economic reintegration support. Given the increase in environmental crime as a transnational organized crime activity and its role in war economies, understand- ing the links between natural resources, crime and reintegration is key.17 For further information, see IDDRS 6.30 on DDR and Natural Resources. The reintegration of individuals who were previously engaged in environmen- tal organized crime should aim to create sustainable alternatives in the same natural resources sector (to the extent possible, barring illegal trade in endangered species), keeping in mind the principle of \u2018do no harm\u2019. Reintegration in natural resource sectors should be consistent with national laws and legal frameworks and promote environ- mental protection and restoration of the rule of law.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a2a67b94-c67c-4c78-b150-7f139259e192", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 29, + "Paragraph": "Reintegration support and drug trafficking The drug trade has an important impact on conflict-affected societies. It weakens State authority and drives legitimacy away from legal institutions, diverts funds from the formal economy, creates economic dependence, and causes widespread violence and insecurity. The drug trade also impacts communities, with serious consequences for people\u2019s general well-being and health. High rates of addiction and HIV/AIDS preva- lence have been found in societies where narcotics are cultivated and produced. DDR practitioners implementing reintegration programmes may respond to illicit crop cultivation through support to crop substitution, integrated rural development and/or alternative livelihoods. However, DDR practitioners should consider the risks and opportunities associated with these approaches, including the security require- ments and socioeconomic impacts of removing illicit cultivation. Crop substitution is a valid but lengthy measure that may deprive small-scale farmers of an immediate and valuable source of income. It may also make them vulnerable to threats and violence from the criminal networks that control illicit cultivation and trade. It may be possi- ble to encourage the private sector to purchase substituted crops cultivated by former members of armed forces and groups. This will help to ensure the sustainability of crop substitution, by providing income and investment in exchange for locally pro- duced raw material. This can in turn decrease costs and increase product quality. Crop substitution, integrated rural development and alternative livelihoods should fit into broader macroeconomic and rural reform. These measures should be accompa- nied by a law enforcement strategy to guarantee protection and justice to participants in the reintegration programme. DDR practitioners should also consider rehabilitation and health-care assistance to tackle high levels of substance addiction and drug-related illness. Since the funding for reintegration support is often timebound, it is important for DDR practitioners to establish partnerships and coordination mechanisms with rel- evant local organizations in a range of sectors, including civil society, health care and the private sector. These entities can work to address the social and medical issues of former members of armed forces and groups, as well as community members, who have been engaged in or affected by the illicit drug trade.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05a71a1d-f7cc-486c-a9fd-ddd474543d73", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 31, + "Paragraph": "Reintegration support and human trafficking Armed conflict amplifies the conditions in which human trafficking occurs. During a conflict, the vulnerability of the affected population increases, due to economic des- peration, weak rule of law and unavailability of social services, forcing people to flee for safety. Human trafficking targets the most vulnerable segments of the popula- tion. Armed groups \u2018recruit\u2019 their victims in refugee and internally displaced persons camps, as well as among populations affected by the conflict, attracting them with false promises of employment, education or safety. Many trafficked people end up being exploited abroad, but others remain inside the country\u2019s borders filling armed groups, providing forced labour, and becoming \u2018war wives\u2019 and sex slaves. Human trafficking often has a strong transnational component, which, in turn, may affect reintegration efforts. Armed groups and organized criminal groups engage in human trafficking by collaborating with networks active in other countries. Conflict areas can be source, transit or destination countries. Reintegration pro- grammes should exercise extreme caution in sustaining activities that may conceal trafficking links or may be used to launder the proceeds of trafficking. Continuous assessment is key to recognizing and evaluating the risk of human trafficking. DDR practitioners should engage with a wide range of actors in neighbour- ing countries and regionally to coordinate the repatriation and reintegration of victims of human trafficking, where appropriate. Children are often victims of organized crime, including child trafficking and the worst forms of child labour, being frequent victims of sexual exploitation, forced marriage, forced labour and recruitment into armed forces or groups. Reintegration practitioners should be aware that children who present as dependants may be vic- tims of trafficking. Reintegration efforts specifically targeting children, as survivors of cross-border human trafficking, including forcible recruitment, forced labour and sexual exploitation by armed forces and groups, require working closely with local, national and regional child protection agencies and programmes to ensure their spe- cific needs are met and that they are supported in their reintegration beyond the end of DDR. Family tracing and reunification (if in the best interests of the child) should be started at the earliest possible stage and can be carried out at the same time as other activities. Children who have been trafficked should be considered and treated as victims, in- cluding those who may have committed crimes during the period of their exploitation. Any criminal action taken against them should be handled according to child-friend- ly juvenile justice procedures, consistent with international law and norms regarding children in contact with the law, including the Beijing Rules and Havana Principles, among others. Consistent with the UN Convention on the Rights of the Child, the best interests of the child shall be a primary consideration in all decisions pertaining to a child. For further information, see IDDRS 5.30 on Children and DDR. Women are more likely to become victims of organized crime than men, being subjected to sex exploitation and trade, rape, abuse and murder. The prevailing sub- cultures of hegemonic masculinity and machismo become detrimental to women in conflict situations where there is a lack of instituted rule of law and security measures. In these situations, since the criminal justice system is rendered ineffective, organized crimes directed against women go unpunished. DDR practitioners, as part of reintegra- tion programming, should develop targeted measures to address the organized crime subculture and correlated machismo. For further information, see IDDRS 5.10 on Women, Gender and DDR. Box 3 outlines key questions that DDR practitioners should consider when sup- porting reintegration in conflict-crime contexts, irrespective of involvement in environ- mental crimes and drug and human trafficking.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "86dd9a70-3e27-4731-91e1-c454cda2a034", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 32, + "Paragraph": "DDR, transitional justice and organized crime In an organized crime\u2013conflict context, States may decide to adjust the range of crim- inal acts that preclude members of armed forces and groups from participation in DDR programmes, DDR-related tools and reintegration support. For example, human trafficking encompasses a wide range of forms, from the recruitment of children into armed forces and groups, to forced labour and sexual exploitation. In certain instances, engagement in these crimes may rise to the level of war crimes, crimes against human- ity, genocide and/or gross violations of human rights. Therefore, if DDR participants are found to have committed these crimes, they shall immediately be removed from participation. Similarly, the degree of engagement in criminal activities is not the only consid- eration, and States may also consider who commits specific acts. For example, should a foot soldier who is involved in the sexual exploitation of individuals from specific groups in their controlled territory or who marries a child bride be held accountable to the same degree as a commander who issues orders that the foot soldier do so? Just as international humanitarian law declares that compliance with a superior order does not constitute a defence, but a mitigating factor, DDR practitioners may also advise States as to whether different approaches are needed for different ranks. DDR practitioners inevitably operate within a State-based framework and must therefore abide by the determinations set by the State, identified as the legitimate au- thority. Both in and out of conflict settings, it is the State that has prosecutorial discre- tion and identifies which crimes are \u2018serious\u2019 as defined under the United Nations Con- vention against Transnational Organized Crime. In the absence of genocide, crimes against humanity, war crimes or serious human rights violations, it falls on the State to implement criminal justice measures to tackle individuals\u2019 and groups\u2019 engagement in organized criminal activities. However, issues arise when the State itself is a party to the conflict and either weaponizes organized crime in order to prosecute members of adversarial groups or engages in criminal activities itself. Although illicit economies are a major source of fi- nancing for armed groups, in many cases they could not be in place without the as- sistance of the State. Corruption is an im- portant issue that needs to be addressed as much as organized crime. Political ac- tors may be involved with criminal economies at various levels, particularly locally. In addition, the State apparatus may pay lip service to fighting organize crime while at the same time participating in the illegal economy. DDR practitioners should assess the state of corruption in the country in which they are operating. Additionally, reintegration programmes should be conceptualized in close interaction with related anti-corruption and transitional justice efforts focused on \u2018institutional reform\u2019. Transitional justice initiatives contribute to institutional re- form efforts in a variety of ways. Prosecutions of leaders for war crimes or violations of international human rights and humanitarian law criminalize this kind of behaviour, demonstrate that no one is above the law, and may act as a deterrent and contribute to the prevention of future abuse. Truth commissions and other truth-seeking endeav- ours can provide critical analysis of the roots of conflict, identifying individuals and institutions responsible for abuse. Truth commissions can also provide critical infor- mation about the patterns of violence and violations, so that institutional reform can target or prioritize efforts in particular areas. A successful prosecutorial strategy in a transitional justice context requires a clear, transparent and publicized criminal policy indicating what kind of cases will be prose- cuted and what kind of cases will be dealt with in an alternative manner. Most important- ly, prosecutions can foster trust in the reintegration process and enhance the prospects for trust building between former members of armed forces and groups and other citizens by providing communities with some assurance that those they are asked to admit back into their midst do not include the perpetrators of serious crimes under international law. Moreover, while it theoretically falls on the State to implement criminal justice measures, in reality, the State apparatus may be too weak to administer justice fairly, if at all. In order to build confidence and ensure legitimacy, DDR processes must estab- lish transparent mechanisms for independent monitoring, oversight and evaluation, and their financing mechanisms, so as to avoid inadvertently contributing to criminal activities and undermining the overall objective of sustainable peace. Transitional jus- tice and human rights components should be incorporated into DDR processes from the outset. For further information, see IDDRS 6.20 on DDR and Transitional Justice and IDDRS 2.11 on the Legal Framework for UN DDR.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "b6387a17-d045-4e76-8621-5a1855d6310c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 34, + "Paragraph": "DDR, security sector reform and organized crime As State actors can be implicated in organized criminal activities in conflict and post-conflict settings, including past and ongoing violations of human rights and inter- national humanitarian law, there may be a need to reform security sector institutions. As IDDRS 6.10 on DDR and Security Sector Reform states, SSR aims to enhance \u201ceffec- tive and accountable security for the State and its people without discrimination and with full respect for human rights and the rule of law\u201d. DDR processes that fail to co- ordinate with SSR can lead to further violations, such as the reappointment of human rights abusers or those engaged in other criminal activities into the legitimate security sector. Such cases undermine public faith in security sector institutions. Mistrust between the State, security providers and citizens is a potential contribut- ing factor to the outbreak of a conflict, and one that has the potential to undermine sus- tainable peace, particularly if the State itself is corrupt or directly engages in criminal activities. Another factor is the integration of ex-combatants who may still have crim- inal ties into the reformed security sector. To avoid further propagation of criminal- ity, vetting should be conducted prior to integration, with a special focus on any evidence relating to continued links with actors known to engage in criminal activ- ities. Finally, Government security forces, both civilian and military, may themselves be part of rightsizing exercises. The demobilization of excess forces may be particularly difficult if these individuals have been actively involved in facilitating or gatekeeping the illicit economy, and DDR practitioners should take these dynamics into account in the design of reintegration support (see sections 7.3 and 9). SSR that encourages participatory processes that enhance the oversight roles of actors such as parliament and civil society can meet the common goal of DDR and SSR of building trust in post-conflict security governance institutions. Additionally, over- sight mechanisms can provide necessary checks and balances to ensure that national decisions on DDR and SSR are appropriate, cost effective and made in a transparent manner. For further information, see IDDRS 6.10 on DDR and Security Sector Reform.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f53420d4-e2ca-40fa-9753-bd5148654480", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.40-DDR-and-Organized-Crime", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.40-DDR-and-Organized-Crime", + "PageNum": 35, + "Paragraph": "Annex B: International legal framework for organized crime United Nations Convention against Transnational Organized Crime (2000) The UNTOC is the main international instrument in the fight against transnational organized crime. States that ratify this instrument commit themselves to taking a se- ries of measures against transnational organized crime, including creating domestic criminal offences (participation in an organized criminal group, money laundering, corruption and obstruction of justice); adopting new and sweeping frameworks for extradition, mutual legal assistance and law enforcement cooperation; and promoting training and technical assistance for building or upgrading the necessary capacity of national authorities. The UNTOC defines the terms \u2018organized criminal group\u2019, \u2018seri- ous crime\u2019, and \u2018structured group\u2019 (as per section 3 of this module). Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Wom- en and Children, supplementing the United Nations Convention against Transna- tional Organized Crime (2000) This is the first global legally binding instrument with an agreed definition on traf- ficking in persons. This definition is intended to facilitate convergence in national ap- proaches with regard to the establishment of domestic criminal offences that would support efficient international cooperation in investigating and prosecuting trafficking in persons cases. An additional objective of the Protocol is to protect and assist the vic- tims of trafficking with full respect for their human rights. Protocol against the Smuggling of Migrants by Land, Sea and Air, supplementing the United Nations Convention against Transnational Organized Crime (2000) The Protocol deals with the growing problem of organized criminal groups who smug- gle migrants. It marks the first time that a definition of smuggling of migrants was developed and agreed upon in a global international instrument. The Protocol aims at preventing and combating the smuggling of migrants, as well as promoting coopera- tion among States parties, while protecting the rights of smuggled migrants and pre- venting the worst forms of their exploitation, which often characterize the smuggling process. Protocol against the Illicit Manufacturing of and Trafficking in Firearms, Their Parts and Components and Ammunition, supplementing the United Nations Con- vention against Transnational Organized Crime (2001) The objective of the Protocol, the first legally binding instrument on small arms adopt- ed at the global level, is to promote, facilitate and strengthen cooperation among States parties in order to prevent, combat and eradicate the illicit manufacturing of and traf- ficking in firearms, their parts and components and ammunition. By ratifying the Pro- tocol, States make a commitment to adopt a series of crime-control measures and im- plement in their domestic legal order three sets of normative provisions: the first one relates to the establishment of criminal offences related to illegal manufacturing of and trafficking in firearms on the basis of the Protocol requirements and definitions; the second to a system of Government authorizations or licencing intended to ensure legit- imate manufacturing of and trafficking in firearms; and the third one to the marking and tracing of firearms. In addition to the Protocol, a number of non-legally binding instruments also apply to the illicit trade of small arms and light weapons.18 Single Convention on Narcotic Drugs of 1961 as amended by the 1972 Protocol This Convention aims to combat drug abuse by coordinated international action. There are two forms of intervention and control that work together. First, the Convention seeks to limit the possession, use, trade, distribution, import, export, manufacture and production of drugs exclusively to medical and scientific purposes. Second, it combats drug trafficking through international cooperation to deter and discourage drug traf- fickers. Convention on Psychotropic Substances of 1971 The Convention establishes an international control system for psychotropic substanc- es in response to the diversification and expansion of the spectrum of drugs of abuse. The Convention introduces controls over a number of synthetic drugs, balancing their abuse against their therapeutic value. United Nations Convention against Illicit Traffic in Narcotic Drugs and Psycho- tropic Substances of 1988 This Convention provides comprehensive measures against drug trafficking, includ- ing provisions against money laundering and the diversion of precursor chemicals. It provides for international cooperation through, for example, extradition of drug traf- fickers, controlled deliveries and transfer of proceedings. United Nations Convention against Corruption (2003) This Convention is the only legally binding universal anti-corruption instrument. It covers five main areas: preventive measures, criminalization and law enforcement, in- ternational cooperation, asset recovery, and technical assistance and information ex- change. The Convention covers many different forms of corruption, such as bribery, trading in influence and abuse of functions. Security Council Resolutions The United Nations Security Council has increasingly recognized the role that organ- ized crime and illicit markets play in sustaining and fuelling contemporary conflicts. Since the UNTOC was adopted in 2000, the UN Security Council has passed hundreds of resolutions on organized crime in specific countries, missions or regions. Security Council resolution 2220 (2015) on small arms The Council emphasizes that the illicit trafficking in small arms and light weapons can aid terrorism and illegal armed groups and facilitate increasing levels of transnational organized crime, and underscores that such illicit trafficking could harm civilians, in- cluding women and children, create instability and long-term governance challenges, and complicate conflict resolution. Security Council resolution 2331 (2016) on trafficking in persons in conflict situations, including linkages with the activities of armed groups, terrorism and sexual violence in conflict The Security Council recognizes the connection between trafficking in persons, sex- ual violence, terrorism and other transnational organized criminal activities that can prolong and exacerbate conflict and instability or intensify its impact on civilian pop- ulations. The Council condemns all acts of trafficking, particularly the sale or trade in persons undertaken by the Islamic State of Iraq and the Levant (ISIL, also known as Da\u2019esh), and recognizes the importance of collecting and preserving evidence relating to such acts to ensure that those responsible can be held accountable. Security Council Resolution 2388 (2017) on trafficking in persons in armed conflict This resolution recognizes \u201cthat trafficking in persons in areas affected by armed con- flict and post-conflict situations can be for the purpose of various forms of exploita- tion\u201d, including sexual exploitation and the recruitment of child soldiers. The resolu- tion underlines the importance of providing \u201cappropriate care, assistance and services for their physical, psychological and social recovery, rehabilitation and reintegration, in full respect of their human rights\u201d. The resolution also recognizes \u201cthat traffick- ing in persons entails the violation or abuse of human rights\u201d and underscores \u201cthat certain acts or offences associated with trafficking in persons in the context of armed conflict may constitute war crimes\u201d, and it notes States\u2019 responsibility to \u201cprosecute those responsible for genocide, crimes against humanity, war crimes as well as other crimes\u201d. The resolution calls for the \u201ctraining of relevant personnel of special political and peacekeeping missions\u201d. Security Council resolution 2462 (2019) on the financing of terrorism through illicit activities and sanctions lists This resolution reaffirms the Security Council\u2019s decision in its resolution 1373 (2001) that all States shall prevent and suppress the financing of terrorist acts, including through organized criminal activity, and shall refrain from providing support to those involved in them. Furthermore, the resolution urges all States to participate actively in implementing and updating the ISIL (Da\u2019esh) and Al-Qaida Sanctions List and to consider including, when submitting new listing requests, individuals and entities in- volved in the financing of terrorism. Security Council Resolution 2482 (2019) on threats to international peace and security caused by international terrorism and organized crime This resolution underlines that organized crime, along with terrorism and violent extremism, whether domestic or transnational, \u201cmay exacerbate conflicts in affected regions, and may contribute to undermining affected States, specifically their securi- ty, stability, governance, social and economic development\u201d and notes that organized criminal groups \u201ccan, in some cases and in some regions, complicate conflict preven- tion and resolution efforts\u201d. The resolution also notes the impact of the illicit drug trade, trafficking in persons and arms trafficking, and their links to corruption in furthering the financing of terrorism and fuelling conflict. Environmental Crime A number of General Assembly and Security Council documents highlight the inter- section between conflict, criminality and the illicit exploitation of natural resources. Crimes against the environment, such as deforestation, illegal logging, fishing and the illicit wildlife trade have a more fragmented legal framework. For more information on specific natural resources policy frameworks and legal instruments, refer to IDDRS 6.30 on DDR and Natural Resources.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "187a4d14-e61f-4551-a122-7c9506f42aa1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": null, + "Paragraph": "Summary The relationship between natural resources and armed conflict is well known and documented, evidenced by numerous examples from all over the world.1 Natural resources may be implicated all along the peace continuum, from contributing to grievances, to financing armed groups, to supporting livelihoods and recovery via the sound management of natural resources. Furthermore, the economies of countries suffering from armed conflict are often marked by unsustainable or illicit trade in natural resources, thereby tying conflict areas to the rest of the world through global supply chains. For DDR processes to be effective, practitioners should consider both the risks and opportunities that natural resource management may pose to their efforts. As part of the war economy, natural resources may be exploited and traded directly by, or through local communities under the auspices of, armed groups, organized criminal groups or members of the security sector, and eventually be placed on national and international markets through trade with multinational companies. This not only reinforces the actors directly implicated in the conflict, but it also undermines the good governance of natural resources needed to support development and sustainable peace. Once conflict is underway, natural resources may be exploited to finance the acquisition of weapons and ammunition and to reinforce the war economy, linking armed groups and even the security sector to international markets and organized criminal groups. These dynamics are challenging to address through DDR processes, but are necessary to contend with if sustainable peace is to be achieved. When DDR processes promote good governance practices, transparent policies and community engagement around natural resource management, they can also simultaneously address conflict drivers and the impacts of armed conflict on the environment and host communities. Issues of land rights, equal access to natural resources for livelihoods, equitable distribution of their benefits, and sociocultural disparities may all underpin the drivers of conflict that motivate individuals and groups to take up arms. It is critical that DDR practitioners take these linkages into account to avoid exacerbating existing grievances or creating new conflicts, as well as to effectively use natural resource management to contribute to sustainable peace. This module aims to contribute to DDR processes that are grounded in a clear understanding of how natural resource management can contribute to sustainable peace and reduce the likelihood of a resurgence of conflict. It considers how DDR practitioners can integrate youth, women, persons with disabilities and other key specific needs groups when addressing natural resource management in reintegration. It also includes guidance on relevant natural resource management related issues like public health, disaster-risk reduction, resiliency and climate change. With enhanced interagency cooperation, coordination and dialogue among relevant stakeholders working in DDR, natural resource management and governance sectors - especially national actors - these linkages can be addressed in a more conscious and deliberate manner for sustainable peace. Lastly, this module recognizes that the degree to which natural resources are incorporated into DDR processes will vary based on the political economy of a given context, size, resource availability, partners and capacity. While some contexts may have different agencies or stakeholders with expertise in natural resource management to inform context analyses, assessment processes and subsequent programme design and implementation, DDR processes may also need to rely primarily on external experts and partners. However, limited natural resource management capacities within a DDR process should not discourage practitioners from capitalizing on the opportunities or guidance available, or to seek collaboration and possible programme synergies with other partners that can offer natural resource management expertise. For example, in settings where the UN has no mission presence, such capacity and expertise may also be found within the UN country team, civil society, and/or academia.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1c25795d-f60c-4524-b402-b41ab44632b2", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides DDR practitioners - in mission and non-mission settings - with necessary information on the linkages between natural resource management and integrated DDR processes during the various stages of the peace continuum. The guidance provided highlights the role of natural resources in all phases of the conflict cycle, focusing especially on the linkages with armed groups, the war economy, and how natural resource management can support successful DDR processes. It also emphasizes the ways that natural resource management can support the additional goals of gender-responsive reconciliation, resiliency to climate change, and sustainable reintegration through livelihoods and employment creation. The module highlights the risks and opportunities presented by natural resource management in an effort to improve the overall effectiveness and sustainability of DDR processes. It also seeks to support DDR practitioners in understanding the associated risks that threaten people\u2019s health, livelihoods, security and the opportunities to build economic and environmental resilience against future crises.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "966ceb79-bd12-4491-87be-600e01c57154", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Natural resources refer to any natural assets (raw materials) occurring in nature that can be used for economic production or consumption (OECD).2 These may include, but are not limited to, hard commodities such as minerals, gemstones, petroleum resources, timber, or other geological resources. They can also include soft commodities including agricultural products like cocoa, palm oil, sugar, coffee, wheat and other highly traded global commodities. Natural resources can also include endangered rare species of flora and fauna (including those used in narcotics) and related products traded on global markets. War economy refers to the economic structure developed to support armed conflict in a given jurisdiction, whether set up by the existing government or an armed group. The war economy includes legal and illegal exploitation of natural resources with the aim of supporting one or more sides of a conflict. Sustainable use of natural resources refers to the exploitation or management of natural resources in a way that ensures their long-term availability to support development for future generations. Natural resource management: Activities related with the management of natural capital stocks, (monitoring, control, surveys, administration and actions for facilitating structural adjustments of the sectors concerned) and their exploitation (e.g., abstraction and harvesting).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "a7170f3c-ae76-4d98-8b21-f7c7730b23a5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 5, + "Paragraph": "Introduction When well-managed, natural resources have the potential to support sustainable peace, development, and to address long-standing grievances. However, there is also mounting evidence that in many violent conflicts worldwide there is a strong link between armed conflict and weak governance or mismanagement of natural resources, dynamics which also contribute to violent conflict.3 Over the past 60 years at least 40 percent of all intrastate conflicts were linked to natural resources.4 Furthermore, conflicts where natural resources are implicated have been shown to be more likely to relapse within five years.5 Looking back over the history of UN peacekeeping operations, nearly twenty missions have been deployed to conflicts fuelled or financed by natural resources, yet only a few of these missions have had a direct mandate to tackle natural resource challenges. However, the United Nations recognizes the need to incorporate the environment and natural resource dimensions of conflict and peacebuilding along the entire peace continuum, as evidenced in the UN Sustainable Development Cooperation Framework, the Humanitarian Response Plan and/or the Integrated Strategic Framework across multiple settings.6 Although evident risks exist, natural resource management also has the potential to enable sustainable peace, including through sustainable development that contributes to job creation, reduced grievances, and equitable sharing of benefits from natural resources. Through sound management, individuals and societies can employ natural resources in ways that secure livelihoods, generate tax revenues, stimulate exports, and engage the private sector in employment-creation purposes. Furthermore, natural resource management provides both temporary (Track A) and more sustainable (Track B) employment opportunities, as outlined in the United Nations Post Conflict Policy for Employment Creation, Income Generation and Reintegration. In DDR contexts where strong governance is present, policy processes may specifically target natural resource sectors - including forestry, mining and conservation - to support job creation for long-term sustainable peace. Since natural resources underpin livelihoods for the vast majority of populations in post-conflict contexts, DDR practitioners should ensure to analyze any ways in which special-needs groups - such as women, youth, persons with disabilities or different vulnerable populations - can safely access and productively use natural resources. Gender issues in particular are crucial for sustainability and efficiency in economic recovery when it comes to natural resource management as gender norms in society can affect the division of labour between men and women and the distribution of capital assets, including land, credit, skills and participation in decision making, often negatively impacting women. Gender can also impact whether natural resources can be accessed and used safely; for example, the provisioning of essential natural resources for daily subsistence by women and girls, such as gathering firewood or charcoal, often puts them at risk for sexual and gender-based violence (SGBV).7 In other cases, the physical strength needed to work in natural resource management sectors can prohibit women from accessing these kinds of economic opportunities (e.g., certain roles in the forestry or mining sectors). In addition to their economic benefits, natural resources can play an important role in supporting successful social reintegration and reconciliation through community-based approaches to natural resource management, including promoting access to grievance- and dispute-resolution mechanisms. To ensure that growth in natural resource management sectors will contribute positively to peace efforts, DDR practitioners shall undertake all necessary efforts to understand the risks and opportunities presented by natural resource management and fully analyze and incorporate them into process planning, design and implementation. The linkages between organized criminal groups, armed forces and groups and illicit trade - including implications of local community actors - should also be taken into account. These include the potential for poor natural resource management, coupled with weak governance, to lead to further grievances and recruitment. Since natural resource management takes place at the local, regional and national levels, there are multiple opportunities to work cooperatively with relevant stakeholders during DDR processes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "980f0bb3-6354-4a40-ae8c-e07200e42ebe", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 7, + "Paragraph": "Guiding Principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the linkages between DDR and natural resource management.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2bd7b3ec-33e2-49a2-8410-61be0f7dd8aa", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 7, + "Paragraph": "People-centred Natural resources can be used to support or to undermine development and sustainable peace. Ultimately, natural resources are part of the naturally protected rights of the citizens of any sovereign nation and DDR practitioners must seek to protect and respect these rights in accordance with relevant international and national laws and policies (including customary law). In particular, DDR practitioners shall seek advice from human rights officers, rule of law or other experts in natural resource management, especially if the land and other rights of indigenous or otherwise marginalized communities are potentially affected.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "8928dad9-6ebf-4a4d-9a2d-5f84b4735b20", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 7, + "Paragraph": "Gender responsive and inclusive Equitable participation and access to natural resource-related opportunities and benefits shall be ensured for women, men, girls and boys, regardless of their ethnicity, sexual orientation and other intersecting factors. For DDR practitioners, a special emphasis should be placed on helping to secure tenure and access to land and other resources within existing or proposed frameworks for women and girls, since this is shown to be key to their successful reintegration, as well as to providing both male and female DDR participants and beneficiaries with equitable access to economic reintegration opportunities in natural resource management sectors.8 As part of DDR assessments, a specific gender analysis - carried out in consultation with both female and male participants and community members in their preferred language - should be undertaken in order to map the gender-specific roles and responsibilities in natural resource management and gender division of labour as well as associated risks and protection concerns. Based on the analysis, DDR practitioners shall promote the equal participation and decision-making opportunities of female and male participants and beneficiaries in natural resource management.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e063faab-3077-4ff2-94be-b9b0a3a38d2b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 7, + "Paragraph": "Conflict sensitive As outlined in IDDRS 2.10, \u201cdo no harm\u201d is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. In the case of natural resources, DDR practitioners shall ensure that they are not implementing or encouraging practices that will threaten the long-term sustainability of natural resources and the livelihoods that depend on them. They should further seek to ensure that they will not contribute to potential environment- related health problems for affected populations; this is particularly important when considering water resources, land allocation and increase in demand for natural resources by development programmes or aid groups (such as increased demand for charcoal, timber, etc. without proper natural resource management measures in place).9 Finally, DDR practitioners should approach natural resource issues with conflict sensitivity to ensure that interventions do not exacerbate conflict or grievances around natural resources or other existing community tensions or grievances (such as those based on ethnic, religious, racial or other dimensions), contribute to any environmental damage, and are equipped to deal with potential tensions related to natural resource management. In particular, sectors targeted by reintegration programmes should be carefully analysed to ensure that interventions will not cause further grievances or aggravate existing tensions between communities; this may include encouraging grievance- and dispute-resolution mechanisms to be put in place.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "0780cb9c-9d47-4ee1-8803-949136ff62af", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 8, + "Paragraph": "Context-specific DDR processes shall be context-specific to reflect both the nature of the conflict and the role of natural resources in the conflict, taking into account the national, regional and global implications of any activities. The specific role of natural resources should be considered in each context by DDR practitioners, including where natural resources are part of underlying grievances, or where they are being exploited directly by armed forces, groups or organized criminal groups - or by local communities under the auspices of these actors - to control territories or to finance the purchase of weapons and ammunition. DDR practitioners should also consult any local civil society, academic institutions and other expertise that may be available at the local level to inform interventions. Local experts may be included in assessments of all types of local institutions, armed groups, organized criminal groups, and local political activities, as well as in the development and implementation of DDR processes. Where possible and appropriate, DDR processes should seek to adopt livelihoods strategies and employment generation opportunities that respect human rights and the rights of indigenous peoples and local communities, promote sound natural resource management, participatory decision- making, conflict sensitivity and that do not exploit natural resources at unsustainable rates. DDR practitioners should focus on promoting sustainable livelihoods and consider incorporating environmental feasibility studies for any projects based on natural resource exploitation. They should also ensure that post-project impact monitoring and evaluation includes the environment, natural resources and ecosystem services, especially where the latter relates to disaster-risk reduction and resiliency in the face of climate change.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d791d377-f210-43c3-ad06-40b1bf3e5376", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 8, + "Paragraph": "Flexible, accountable and transparent DDR processes are undertaken in the context of national and local frameworks that must comply with relevant rights and obligations under international law (see IDDRS 2.11 on The Legal Framework for UN DDR). Whether in a conflict setting or not, the State and any other regional law enforcement authorities have the responsibility to implement any criminal justice measures related to the illegal exploitation and/or trafficking of natural resources, including instances of scorched-earth policies or other violations of humanitarian or human rights law. DDR practitioners shall also take into account any international or regional sanctions regimes in place against the export of natural resources. At times when the State itself is directly involved in these activities, DDR practitioners must be aware and factor this risk into interventions.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "63c4b13e-9ee0-49f0-a2ba-9a7fbe6d382d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 9, + "Paragraph": "Nationally and locally owned Every context is unique when it comes to natural resource management, depending on the characteristics of local ecosystems and existing socio-cultural relationships to land and other natural resources. Strong or weak local and national governance can also impact how natural resources may be treated by DDR processes, specifically where a weak state can lead to more incentives for illicit exploitation and trafficking of natural resources in ways that may fuel or exacerbate armed conflict. DDR practitioners should ensure they thoroughly understand these dynamics through assessments and risk management efforts when designing interventions. For DDR processes, local communities and national institutions - including relevant line ministries - are sources of critical knowledge and information. For this reason, DDR processes shall explicitly incorporate national and local civil society organizations, academic institutions, private sector and other stakeholders into intervention planning and implementation where appropriate. Since international mandates and resources for DDR processes are limited, DDR practitioners shall seek to build local capacities around natural resource management whenever possible and shall establish relevant local partnerships to ensure coordination and technical capacities are available for the implementation of any interventions incorporating natural resource management. In some cases, natural resource management can be used as a platform for reconciliation and trust building between communities and even regional actors. DDR practitioners should seek to identify these opportunities where they exist and integrate them into interventions.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "29773901-790b-432e-bad7-9b362bc3119b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 9, + "Paragraph": "Regionally supported In cases where natural resources are exploited and trafficked to finance the activities of armed forces and groups or organized criminal groups active in conflict settings, regional dynamics may be at play. Private sector and government actors from neighbouring States may be implicated in the trade of natural resources and DDR practitioners should engage regional stakeholders as much as possible to control for these risks and to identify opportunities to create a regional environment conducive to sustainable peace.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "91572477-3ebf-4918-8b10-defe05db0940", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 9, + "Paragraph": "Integrated DDR processes will be more successful when considerations related to natural resource management are integrated from the earliest assessment phase through all stages of strategy development, planning and implementation. Expertise within the UN system and with other interagency partners should inform the interventions of DDR processes, in tandem with local and national expertise and knowledge.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4ef426c2-3613-43c5-acc8-1531ce28878f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 10, + "Paragraph": "Natural resources in conflict settings In contexts with poor governance, weak diversification and poor sectoral linkages, natural resources may be exploited to sustain the political and military agendas of armed forces and/or other groups.10 This dynamic contributes to a broader war economy that may incentivize unsustainable exploitation, resource grabs and human rights abuses that may be related, although not exhaustively, to the environment and natural resources.11 When captured by armed forces and groups, or organized criminal groups, high-value commodity sectors with significant global demand - such as minerals, oil and gas, timber and other agricultural commodities - represent a serious threat to peace, security and development.12 This may occur with high-value commodities including charcoal, timber, ivory, gems and minerals, as well as agricultural commodities like cocoa and or palm oil. This trade links conflict actors to the global economy and ultimately to the end consumer of the good or service, thereby implicating a multitude of stakeholders from local private sector to regional and global multi-national enterprises and their investors.13 The exploitation of natural resources and associated environmental stresses, such as the contamination of soils, air or water during extraction processes, can impact all phases of the conflict cycle, from contributing to the outbreak and perpetuation of violence to undermining prospects for peace. In addition, the environment itself may be damaged through scorched-earth tactics in order to harm specific groups of people or to render land and areas unusable by opposing groups. In extreme cases, land can also be damaged when communities are significantly displaced, where populations may be forced to degrade the natural resource base in order to survive. This environmental damage, coupled with the collapse of institutions and governance practices, can present significant risks that threaten people\u2019s health, livelihoods and undermine security. It may also undermine a country\u2019s capacity to achieve the 2030 Agenda for Sustainable Development, as well as exacerbate vulnerabilities to climate change and natural disasters. Identifying the role of natural resources in armed conflict is a necessary starting point to effectively address the factors that may have caused or sustained conflict, could trigger a relapse into violence, or may impede the process of consolidating sustainable peace. Analyses and assessments on environmental and natural resource issues can help DDR practitioners to identify the ways in which natural resources are intentionally and/or inadvertently utilized, exploited, depleted and destroyed as part of conflict. While the UN has increasingly adopted guidance on integrating natural resource considerations into its peacebuilding assessments and interventions, in practice, natural resources are still too often considered as \u201ctoo hard to fix\u201d and as an issue to be addressed at a later stage in the recovery or peacebuilding process. However, doing so fails to take into account the broad and changing nature of threats to national and international security, as well as opportunities for natural resource management to contribute to sustainable peace. Integrating natural resource management issues into peacebuilding \u2013 and DDR in particular \u2013 should be seen as a security imperative following the strong linkages between natural resources and conflict. Deferred action or uninformed choices made early on often establish unsustainable trajectories of recovery that can undermine long-term peace and stability. At the same time, natural resource management offers important opportunities for sustainable livelihoods recovery, employment creation and reconciliation. The following sections provide a frame of reference to support the improved consideration of natural resources in DDR processes. In order to apply this frame, DDR practitioners should seek the appropriate expertise and work across different national and international agencies to gather the information related to natural resources needed to inform interventions. The relationship between natural resources, the environment and conflict is multidimensional and complex, but three principal pathways can be drawn. These pathways are described in more detail in the following sections:", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d985f0a9-86ae-4290-9cf2-6b7b188bc1a1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 11, + "Paragraph": "Contributing to the causes of conflict Natural resources underpin livelihoods and the socio-cultural rights of peoples in many parts of the world. When access to these resources is disrupted - and especially where long-standing historic grievances (real or perceived) over access to land and resources are present - natural resources may be more easily exploited to encourage recruitment by armed groups. This relationship can be complex, but there is evidence in the historical record as to how access to land or other natural resources can motivate parties to a conflict. Grievances related to land (communal or individually owned) and access to resources can be deeply embedded in the historical narrative of peoples and hugely motivating for individuals and groups to participate in violent conflict. These dynamics are critical for DDR practitioners to understand and to factor into planning. Natural resources can also contribute to the causes of conflict where their governance and management has been handled in a way that privileges certain social or ethnic groups over others. Marginalized groups, excluded from access to natural resources and related benefits, may be more inclined to participate in the illicit or informal economy where armed conflict is present, thereby potentially engaging in riskier livelihoods sectors less protected by labour regulations.14 They may also be more likely to participate in the activities of organized criminal groups involved in the exploitation of natural resources. These dynamics can further undermine the ability of the Government to provide benefits (i.e., education, healthcare and development) and resources to communities due to a loss of tax revenue from formal economic sectors, as well as create the right conditions for illicit trade in weapons, ammunition and other illicit goods. This combination of factors can increase the likelihood that additional resentments will build and fuel recruitment into armed forces and groups. Finally, in some cases, scorched earth tactics may be used to gain control of a particular territory, resulting in significant displacement of populations and permanent damage to the environment. To secure a strategic advantage, demoralize local populations or subdue resistance, leaders and members of armed forces and groups may pollute water wells, burn crops, cut down forests, poison soils and kill domestic animals. In some cases, entire ecosystems have been deliberately targeted to achieve political and military goals. These tactics can result in grievances that ultimately undermine DDR processes and sustainable peace, and limit the positive role that natural resource management can play in sustaining peace.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2b0b041e-5d09-48d9-8855-6a8dcab6090c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 12, + "Paragraph": "Financing and sustaining conflict Once armed conflict is underway, natural resources will often be targeted by armed forces and groups - as well as organized criminal groups - in order to trade them for revenues or for weapons and ammunition. These resources may be used to finance the activities of armed forces and groups, including their ability to compensate recruits, purchase weapons and ammunition, acquire materials necessary for transportation or control of strategic territories, and even their ability to expand territorial control. The exploitation of natural resources in conflict contexts is also closely linked to corruption and weak governance, where government, organized criminal groups, the private sector and armed forces and groups become interdependent through the licit or illicit revenue and trade flows that natural resources provide. In this way, armed groups and organized criminal groups can even capture the role of government and can integrate themselves into political processes by leveraging their influence over trade and access to markets and associated revenues (see IDDRS 6.40 on DDR and Organized Crime). In addition to capturing the market for natural resources, the financing of weapons and ammunition may permit armed forces and groups to coerce or force communities to abandon their lands and territories, depriving them of livelihoods resources such as livestock or crops. Hostile takeovers of land can also target valuable natural resources for the purpose of taxing their local trade routes or gaining access to markets and/or licit or illicit commodity flows associated with those resources.15 This is especially true in contexts of weak governance. Conflict contexts with weak governance are ripe for the proliferation of organized criminal groups and capture of revenues from the exploitation and trade of natural resources. However, this is only possible where there are market actors willing to purchase these resources and to engage in trade with armed forces and groups. This relationship may be further complicated on the ground by the different actors involved in markets and trade, which could include government authorities in customs and border protection, shell companies created to purposely distort the paper trail around this trade and subvert efforts at traceability by markets further downstream (i.e., closer to the end consumer), or direct involvement of other governments surrounding the country experiencing violent conflict to facilitate this trade. In these cases, the private sector at the local and national level, as well as buyers in international markets, may be implicated, whether the resources are legally or illegally traded. The relationship between the private sector and armed forces and groups in conflict is complex and can involve trade, arms and financial flows that may or may not be addressed by sanctions regimes, national and international regulations or other measures. Tracing conflict resources in global supply chains is inherently difficult; these materials may be one of hundreds that are part of a product purchased by an end user and may be traded through dozens of markets and jurisdictions before they end up in a manufacturing process, allowing multiple opportunities for the laundering of resources through fake certificates in the chain of custody.16 Consumer goods companies find the traceability of materials to a point of origin challenging in the best of circumstances; the complexities of a war economy and outbreak of violent conflict makes this even more complicated. However, technologies developed in recent years - including chemical markers, RFID tags and QR codes - are increasingly reliable, and the manufacturers, brands and retailers who sell products that contain conflict resources are increasingly subject to legal regimes that address these issues, depending on where they are domiciled.17 Globally, legal regimes that address conflict resources in global supply chains are still nascent, but awareness of these issues is growing in consumer markets and technological solutions to traceability and company due diligence challenges are emerging at a rapid rate.18 There are many groups working to track the trade in conflict resources that DDR practitioners can collaborate with to ensure they are able to identify critical changes and shifts in the activities, tactics and potential resource flows of armed forces and groups. DDR practitioners should seek out these resources and engage these stakeholders to support assessments and the design and implementation of DDR processes whenever appropriate and possible.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce553288-f9ad-42c4-a20f-6c9fa04fa458", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 13, + "Paragraph": "Contributing to reconciliation and sustaining peace Governance institutions and State authorities, including those critical to accountability and transparency, may have been eroded by conflict or weak to start with. When tensions intensify and lead to armed conflict, rule of law breaks down and the resulting institutional vacuum can lead to a culture of impunity and corruption. This collapse of governance structures contributes directly to widespread institutional failures in all sectors, allowing opportunistic individuals, organized criminal groups, armed groups and/or private entities to establish uncontrolled systems of resource exploitation.19 At the same time, public finances are often diverted for military purposes, resulting in the decay of, or lack of investment in, water, waste management and energy services, with corresponding health and environmental contamination risks. During a DDR process, the success and the long-term sustainability of natural resource-based interventions will largely depend on whether there is a good, functioning governance structure at the local, sub-regional, national or regional level. The effective and inclusive governance of natural resources and the environment should be viewed as an investment in conflict prevention within peacebuilding and development processes. Where past activities violate national laws, it is up to the State to exercise its jurisdiction, but egregious crimes constituting gross violations of human rights, as often seen with scorched earth tactics, oblige DDR processes to exclude any individuals associated with these events from participating in the process (see IDDRS 2.11 on The Legal Framework for UN DDR). However, there may be other jurisdictions where multi-national private entities can be targeted and pressured or prosecuted to cut their ties with armed forces and organized criminal groups in conflict areas. Sanctions set by the UN Security Council may also be brought to bear where they cover natural resources that are trafficked or traded by private sector entities and armed forces and groups. DDR practitioners will not be able to influence, control or focus upon all aspects of natural resource governance. However, through careful attention to risk factors in the planning, design and implementation of natural resource-based activities, DDR processes can play a multifaceted and pivotal role in paving the way for good natural resource governance that supports sustainable peace and development. Moreover, DDR practitioners can ensure that access to grievance- and non-violent dispute-resolution mechanisms are available for participants, beneficiaries and others implicated in the DDR process, in order to mitigate the risks that natural resources pose for conflict relapse. Furthermore, environmental issues and protection of natural resources can serve as effective platforms or catalysts for enhancing dialogue, building confidence, exploiting shared interests and broadening cooperation and reconciliation between ex-combatants and their communities, between communities themselves, between communities and the State, as well as between States themselves.20 People and cultures are closely tied to the environment in which they live and to the natural resources upon which they depend. In addition to their economic benefits, natural resources and ecosystem services can support successful social reintegration and reconciliation. In this sense, the management of natural resources can be used as a tool for engaging community members to work together, to revive and strengthen traditional natural resource management techniques that may have been lost during the conflict, and to encourage cooperation towards a shared goal, between and amongst communities and between communities and the State. In settings where natural resources have played a significant role in the conflict, DDR practitioners should explore opportunities for addressing underlying grievances over such resources by promoting equitable and fair access to natural resources, including for women, youth and participants with disability. Access to natural resources, especially land, often carries significant importance for ex-combatants during reintegration, particularly for female ex-combatants and women associated with armed forces and groups. Whether the communities are their original places of origin or are new to them, ensuring that they have access to land will be important in establishing their social status and in ensuring that they have access to basic resources for livelihoods. In rural areas, it is essential that DDR practitioners recognize the connection between land and social identity, especially for young men, who often have few alternative options for establishing their place in society, and for women, who are often responsible for food security and extremely vulnerable to exclusion from land or lack of access. To further support social reintegration and reconciliation, as well as to enhance peacebuilding, DDR practitioners should seek to support reintegration activities that empower communities affected by natural resource issues, applying community-based natural resource management (CBNRM) approaches where applicable and promoting inclusive approaches to natural resource management. Ensuring that specific needs groups such as women and youth receive equitable access to and opportunities in natural resource sectors is especially important, as they are essential to ensuring that peacebuilding interventions are sustainable in the long-term.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dafc9c2f-4446-46a7-ada8-33eddf501333", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 15, + "Paragraph": "DDR and natural resources: planning considerations At the outset, there are several key risk factors to consider when looking to leverage natural resources to support DDR processes. Depending on where DDR practitioners are working along the peace continuum, the following are three key areas where risks and opportunities should be considered: Supporting economic recovery: When natural resources are properly governed and carefully managed, \u201chigh-value\u201d resources (such as hydrocarbons, minerals, metals, stones and export timber) can form an important basis for employment creation and budget revenue for development. With close attention to whether a robust framework is in place with respect to land rights, and sub-surface natural resource rights as a pre-cursor, engagement with private sector entities can help to facilitate these types of opportunities, whether for high-value natural resources or agricultural commodities with significant market value such as coffee, cocoa, grains or other soft commodities. The risk, however, is that the pressure to kick-start development and earn foreign exchange can lead to rapid, uncontrolled exploitation of such resources at sub-optimal prices, without due attention to land and sub-surface resource rights, environmental sustainability, employment creation and the equitable distribution of revenues. When the benefits are not shared, or when environmental degradation occurs as a consequence of exploitation, there could be serious potential for conflict to resume. Developing sustainable livelihoods for peace: Sustainable peace fundamentally hinges on the development of sustainable livelihoods, the provision of basic services, and on the recovery and sound management (including equitable distribution of related benefits) of the natural resource base. Environmental damage caused by conflicts, coping strategies and chronic environmental problems (including climate change impacts) that undermine livelihoods must therefore be addressed from the outset. Minimizing vulnerability to natural hazards and climate change through the management of key natural resources and the introduction of appropriate technologies may also be addressed. Women and children are often disproportionally affected by environmental contamination economically, socially as well as in terms of their health and well-being. DDR practitioners should therefore seek to address the specific needs of women and children in relation to their dependence on natural resources and risks involved. Careful coordination and attention to issues of land access, tenure and the availability of agricultural inputs and access to financing are critical elements for ensuring success and sustainability. Women, and especially unmarried women and women who are not closely associated with a male relative, or those who face stigma or discrimination due to various other circumstances (i.e., sexual violence survivors, single mothers, unmarried women, etc.) are often disadvantaged in regard to access to capital assets as women\u2019s ownership rights are often based on de facto agreements through male community members and traditional gender roles may prevent women and girls from accessing education and capacity building. Contributing to dialogue, reconciliation and confidence building: Natural resources can be a neutral entry point or catalyst for enhancing dialogue, building confidence, exploring shared interests and broadening cooperation between divided communities as well as within and between states. Such actions should aim to use an inclusive approach that seeks to consider and respond to the needs of the entire population, especially women and youth. Bringing communities together to discuss and resolve common challenges and concerns, such as access to water points and grazing lands, can be a powerful peacebuilding tool and can help to mitigate the risk of further conflict between competing natural resource user groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2418abdd-5a3b-4dc9-a31a-f27138739fe0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 16, + "Paragraph": "Assessments and design During the pre-planning and preparatory assistance phase, DDR practitioners should clarify the role natural resources may have played in contributing to the causes of conflict, if any, and determine whether DDR is an appropriate response or whether there are other types of interventions that could be employed. In line with IDDRS 3.11 on Integrated Assessments, DDR practitioners should factor the linkage between natural resources and armed forces and groups, as well as organized criminal groups, into baseline assessments, programme design and exit strategies. This includes identifying the key natural resources involved in addition to key individuals, armed forces and groups, any known organized criminal groups and/or Governments who may have used (or continue to use) these particular resources to finance or sustain conflict or undermine peace. The analysis should also consider gender, disability and other intersectional considerations by examining the sex- and age- disaggregated impacts of natural resource conflicts or grievances on female ex-combatants and women associated with armed forces and groups. The assessments should seek to achieve two main objectives regarding natural resources and will form the basis for risk management. First, they should determine the role that natural resources have played in contributing to the outbreak of conflict (i.e., through grievances or other factors), how they have been used to finance conflict and how natural resources that are essential for livelihoods may have been degraded or damaged due to the conflict, or become a security factor (especially for women and girls, but also boys and men) at a community level. Secondly, they should seek to anticipate any potential conflicts or relapse into conflict that could occur as a result of unresolved or newly aggravated grievances, competition or disputes over natural resources, continued war economy dynamics, and the risk of former combatants joining ranks with criminal networks to continue exploiting natural resources. This requires working closely with national actors through coordinated interagency processes. Once these elements have been identified, and the potential consequences of such analysis are fully understood, DDR practitioners can seek to explicitly address them. Where appropriate, DDR practitioners should ensure that assessment activities include technical experts on land and natural resources who can successfully incorporate key natural resource issues into DDR processes. These technical experts should also display expertise in recognizing the social, psychological and economic livelihoods issues connected to natural resources to be able to properly inform programme design. The participation of local civil society organizations and groups with knowledge on natural resources will also aid in the formation of a holistic perspective during the assessment phase. In addition, special attention should be given to gathering any relevant information on issues of access to land (both individually owned and communal), water and other natural resources, especially for women and youth. Land governance and tenure issues - including around sub-surface resource rights - are likely to be an issue in almost every context where DDR processes are implemented. DDR practitioners should identify existing efforts and potential partners working on issues of land governance and tenure and use this as a starting point for assessments to identify the risk and opportunities associated with related natural resources. Land governance will underpin all other natural resource sectors and should be a key element of any assessment carried out when planning DDR. While DDR processes cannot directly overcome challenges related to land governance issues, DDR practitioners should be aware of the risk and opportunities that current land governance issues present and do their best to mitigate these through planning and implementation. Natural resources and conflict linkages In order to determine if natural resources have played (or continue to play) a critical role in armed conflict, assessments should seek to understand the key actors in the conflict and their linkages to natural resources (see Table 1). Assessments should also identify: Key financial and strategic benefits and drawbacks of the identified resources on all warring parties and civilian populations affected by the conflict. The nature and extent of grievances over the identified natural resources (real and perceived), if any. The location of implicated resources and overlap with territories under the control of armed forces and groups. The role of sanctions in deterring illegal exploitation of natural resources. The extent and type of resource depletion and environmental damage caused as a result of mismanagement of natural resources during the conflict. Displacement of local populations and their potential loss of access to natural resources. Cross-border activities regarding natural resources. Linkages to organized criminal groups (see IDDRS 6.40 on DDR and Organized Crime). Linkages to armed groups designated as terrorist organizations (see IDDRS 6.50 on DDR and Armed Groups Designated as Terrorist Organizations) Analyses of different actors in the conflict and their relationship with natural resources. The abovementioned assessments can be completed through desk reviews (i.e., using reports from the national Government, UN agencies, NGOs, local civil society groups and media) as well as field assessments. An assessment mission can also help to collect the necessary background information for analysis. Assessment methodology shall be developed in consultation with gender experts and assessment teams shall include gender expertise. The role of natural resources in the political and security sectors affecting the planning of DDR processes should be duly considered. Where appropriate, conflict and security analysis should factor in considerations related to natural resources (see Box 1). In post-conflict contexts, assessments of the linkages between natural resources and armed conflict should also complement a post-conflict needs assessment that identifies the main social and physical needs of conflict-affected populations. For further information, see IDDRS 3.11 on Integrated Assessments. The results of these assessments and the natural resource sectors targeted should indicate to DDR practitioners as to which planning and implementation partners will be required. A diverse range of partners should be sought, including partners from local civil society as well as those working in and with the private sector. When planning and implementation partners have been identified, DDR practitioners should ensure that there are dedicated resources for a knowledge management focal point to support natural resource management, gender and other cross-cutting themes. Many DDR processes already use natural resource management in CVR or reintegration efforts. Without recognizing the potential risks and adopting adequate safeguards, DDR processes could have negative impacts on natural resources. See section 6.3 for information on how to recognize and mitigate these risks. Employment and livelihood opportunities DDR practitioners planning the implementation of employment and livelihoods programmes - for example, as part of a CVR or DDR programme - should also seek to gather information on the risks and opportunities associated with natural resources. For example, questions concerning natural resources should be integrated into the profiling questionnaires administered during the demobilization component of a DDR programme (see Box 2). These questionnaires seek to identify the specific needs and ambitions of ex-combatants and persons formerly associated with armed forces and groups (for further information on profiling, see section 6.3 in IDDRS 4.20 on Demobilization). Natural resource related questions should also be included in assessments conducted for the purpose of designing reintegration programmes. For sample questions see Table 2 and, for further information on reintegration assessments, see section 7 in IDDRS 4.30 on Reintegration. Many of these sample questions may also be relevant for the design of CVR programmes (see IDDRS 2.30 on Community Violence Reduction). At a minimum, assessments focused on natural resources and employment and livelihood opportunities should reflect on the demand for natural resources and any derived products in local, regional, national and international markets. They should also examine existing and planned private sector activity in natural resource sectors. Assessments should also consider whether any areas environmentally degraded or damaged as a result of the conflict can be rehabilitated and strengthened through quick-impact projects (see section 7.2.1). DDR practitioners should seek to incorporate information gathered in Strategic Environmental Assessments and Environmental and Social Impact Assessments where appropriate and possible, to avoid unnecessary duplication of efforts. The data collected can also be used to identify potential reconciliation and conflict resolution activities around natural resources. These activities may, for example, be included in the design of reintegration programmes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9632be63-8faf-417b-885a-0b59743d5f19", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 23, + "Paragraph": "Specific-needs groups and cross-cutting issues In order to appropriately address the needs of all DDR participants and beneficiaries, a thorough analysis of groups with specific needs in natural resource management should be carried out as part of general DDR assessments. These considerations should then be mainstreamed throughout design and implementation. Specific needs groups often include women and girls, youth, persons with disabilities and persons with chronic illnesses, and indigenous and tribal peoples and local communities, but other vulnerabilities might also exist in different DDR contexts. Annex B presents a non-exhaustive list of questions that can be incorporated into DDR assessments in regard to specific- needs groups and natural resource management. Youth Many conflict-affected countries have substantial numbers of youth \u2013 individuals between 15 and 24 years of age - relative to the rest of the population. Natural resources can offer specific opportunities for this group. For example, when following a value chain approach (see section 7.3.1) with agricultural products, non-timber forest products or fisheries, DDR practitioners should seek to identify processing stages that can be completed by youth with little work experience or skills. Habitat and ecosystem services restoration can also offer opportunities for young people. Youth can also be targeted as leaders through training-of-trainers programmes to further disseminate best practices and skills for improving the use of natural resources. When embarking on youth-focused DDR processes, efforts should be made to ensure that both male and female youth are engaged. While male youth are often the more visible group in conflict-affected countries, there are proven peace dividends in providing support to female youth. For additional guidance, see IDDRS 5.30 on Youth and DDR. Women and girls Women and girls often directly manage communal natural resources for their livelihoods and provide for the food security of their families (e.g., through the direct cultivation of land and the collection of water, fodder, herbs, firewood, etc.). However, they often lack tenure or official rights to the natural resources they rely on, or may have access to communal resources that are not recognized (or upheld if they are recognized) in local or national laws. DDR practitioners should pay special attention to ensuring that women are able to access natural resources especially in situations where this access is restricted due to lack of support from a male relative. In rural areas, this is especially crucial for access to land, which can provide the basis for women\u2019s livelihoods and which often determines their ability to access credit and take-out loans. For example, where DDR processes link to land titling, they should encourage shared titling between male and female heads of households. In addition, DDR practitioners should ensure that employment opportunities and necessary skills training are available for girls and women in natural resource sectors, including non-traditional women\u2019s jobs. Moreover, DDR practitioners should also ensure that women are part of any decision-making processes related to natural resources and that their voices are heard in planning, programmatic decisions and prioritization of policy. In cases where access to natural resources for livelihoods has put women and girls at higher risk of SGBV, special care must be taken to establish safe and secure access to these resources, or a safe and secure alternative. Awareness and training of security forces may be appropriate for this, as well as negotiated safe spaces for women and girls to use to cultivate or gather natural resources that they rely on. DDR practitioners should ensure that these considerations are included in DDR assessments so that the safety and security risks to women and girls from accessing natural resources are minimized during the DDR process and beyond. For more guidance, see IDDRS 5.10 on Women, Gender and DDR. Persons with disabilities Many DDR participants and beneficiaries will have experienced the onset of one or more physical, sensory, cognitive or psychosocial disabilities during conflict. DDR practitioners should ensure that in all contexts, including those in which natural resources are present, disability-inclusive DDR is integrated into the overall DDR process and is not pursued in a segregated, siloed fashion. Persons with disabilities have many different needs and face different barriers to participation in DDR and in activities involving the natural resources sector. DDR practitioners should identify these barriers and the possibilities for dismantling them when conducting assessments. DDR practitioners should seek expert advice from, and engage in discussions with, organizations of persons with disabilities, relevant NGOs and government line ministries working to promote the rights of persons with disabilities, as outlined in the United Nations Convention on the Rights of Persons with Disabilities (2006) and Standard Rules on the Equalization of Opportunities for Persons with Disabilities (1993). Health considerations Natural resource management can have profound implications on public health. For example, the use of firewood and charcoal for cooking can lead to significant respiratory problems and is a major health concern, particularly for women and children in many countries. Improved access to energy resources, can help to mitigate this (see section 7.3.4). Other key health concerns include waste management and water management, both natural resource management issues that can be addressed through CVR and reintegration programmes. DDR practitioners should include these considerations into assessments and seek to improve health conditions through natural resource management wherever possible. Other areas where health is implicated is related to the deforestation and degradation of land. Pushing the forest frontier can lead to increased exposure of local populations to wildlife that may transmit disease, even leading to the outbreak of pandemics. DDR practitioners should identify areas that have experienced high rates of deforestation and target them for reforestation and other ecosystem rehabilitation activities wherever possible, according to the results of assessments and risk considerations. For further guidance, see IDDRS 5.70 on Health and DDR. Indigenous and tribal peoples and local communities Indigenous and tribal peoples and local communities around the world have close traditional and cultural ties to land and other aspects of natural resources. They often have customary forms of managing natural resources that support overall goals of conservation and preservation of natural resources - including for food, medicines and cultural purposes - as a form of management. In many contexts, the rights of indigenous peoples to their land are undermined or under-recognized (or not recognized at all) in national legislation, leading to allocation of these lands through concessions or other acts to private companies or groups seeking to exploit the land for commercial production of agricultural or forest commodities. Their right to free, prior and informed consent (FPIC) may often be undermined or ignored. DDR practitioners should identify where indigenous peoples and local communities have claim to lands that are otherwise subjected to overlapping claims by private or state entities seeking to exploit these lands and once identified, seek to support these groups with access to local civil society and other legal aid groups that can help them to advocate for their lands and resources. DDR practitioners can also ensure that representatives of indigenous groups and local communities are included in natural resource management decision-making at local, national and regional levels.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "16a75353-a3c6-458f-bb5d-4edc5f016cb5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS-6.30-DDR-and-Natural-Resources", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-6.30-DDR-and-Natural-Resources", + "PageNum": 25, + "Paragraph": "Risk management and implementation Following the abovementioned assessments, DDR practitioners shall develop an inclusive and gender-responsive risk management approach to implementation. The table below includes a comprehensive set of risk factors related to natural resources to assist DDR practitioners when navigating and mitigating risks. In some cases, there may be systems in place to mitigate against the risk of the exploitation of natural resources by armed forces and groups as well as organized criminal groups. These measures are often implemented by the UN (e.g., sanctions) but will implicate other actors as well, especially when the natural resources in question are traded in global markets and end up in products placed in consumer markets with protections in place against trade in conflict resources. DDR practitioners shall avoid being seen as supporting individuals or armed forces and groups that are targeted by sanctions or other regimes and work closely with national and international authorities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7811fffe-efd4-4e98-9f2a-81958edaab4a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "Summary Integrated disarmament, demobilization and reintegration (DDR) is part of the United Nations (UN) system\u2019s multidimensional approach that contributes to the en- tire peace continuum, from prevention, conflict resolution and peacekeeping, to peace- building and development. Integrated DDR processes are made up of various combi- nations of: DDR programmes; DDR-related tools; Reintegration support, including when complementing DDR-related tools. DDR practitioners select the most appropriate of these measures to be applied on the basis of a thorough analysis of the particular context. Coordination is key to inte- grated DDR and is predicated on mechanisms that guarantee synergy and common purpose among all UN actors. The Integrated DDR Standards (IDDRS) contained in this document are a compi- lation of the UN\u2019s knowledge and experience in this field. They show how integrated DDR processes can contribute to preventing conflict escalation, supporting political processes, building security, protecting civilians, promoting gender equality and ad- dressing its root causes, reconstructing the social fabric and developing human capaci- ty. Integrated DDR is at the heart of peacebuilding and aims to contribute to long-term security and stability. Within the UN, integrated DDR takes place in partnership with Member States in both mission and non-mission settings, including in peace operations where they are mandated, and with the cooperation of agencies, funds and programmes. In countries and regions where integrated DDR processes are implemented, there should be a focus on capacity-building at the regional, national and local levels in order to encourage sus- tainable regional, national and/or local ownership and other peacebuilding measures. Integrated DDR processes should work towards sustaining peace. Whereas peace- building activities are typically understood as a response to conflict once it has already broken out, the sustaining peace approach recognizes the need to work along the entire peace continuum and towards the prevention of conflict before it occurs. In this way the UN should support those capacities, institutions and attitudes that help commu- nities to resolve conflicts peacefully. The implications of working along the peace con- tinuum are particularly important for the provision of reintegration support. Now, as part of the sustaining peace approach those individuals leaving armed groups can be supported not only in post-conflict situations, but also during conflict escalation and ongoing conflict. Community-based approaches to reintegration support, in particular, are well po- sitioned to operationalize the sustaining peace approach. They address the needs of former combatants, persons formerly associated with armed forces and groups, and receiving communities, while necessitating the multidimensional/sectoral expertise of several UN and regional actors across the humanitarian-peace-development nexus (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Integrated DDR should also be characterized by flexibility, including in funding structures, to adapt quickly to the dynamic and often volatile conflict and post-con- flict environment. DDR programmes, DDR-related tools and reintegration support, in whichever combination they are implemented, shall be synchronized through inte- grated coordination mechanisms, and carefully monitored and evaluated for effective- ness and with sensitivity to conflict dynamics and potential unintended effects. Five categories of people should be taken into consideration in integrated DDR processes as participants or beneficiaries, depending on the context: members of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); abductees or victims; dependents/families; civilian returnees or \u2018self-demobilized\u2019; community members. In each of these five categories, consideration should be given to addressing the spe- cific needs and capacities of women, youth, children, persons with disabilities, and persons with chronic illnesses. In particular, the unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR pro- grammes and DDR-related tools. DDR programmes consist of a set of related measures, with a particular aim, fall- ing under the operational categories of disarmament, demobilization and reintegra- tion. Disarmament and other DDR-related weapons control activities aim to reduce the number of illicit weapons, ammunition and explosives in circulation and are important elements in responding to and addressing the drivers of conflict. Demobilization, in- cluding the provision of tailored reinsertion packages, is crucial in discharging com- batants and those in support roles from the structures of armed forces and groups. Furthermore, DDR programmes emphasize the developmental impact of sustainable and inclusive reintegration and its positive effect on the consolidation of long-lasting peace and security. Lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. When these preconditions are in place, a DDR programme provides a common results framework for the coordination, management and implementation of DDR by national Governments with support from the UN system and regional and local stake- holders. A DDR programme establishes the outcomes, outputs, activities and inputs required, organizes costing requirements into a budget, and sets the monitoring and evaluation framework, including by identifying indicators, targets and milestones. In addition to DDR programmes, the UN has developed a set of DDR-related tools aiming to provide immediate and targeted responses. These include pre-DDR, tran- sitional weapons and ammunition management (WAM), community violence reduc- tion (CVR), initiatives to prevent individuals from joining armed groups designated as terrorist organizations, DDR support to mediation, and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may also be provided by DDR practitioners in compliance with international standards. The specific aims of DDR-related tools vary according to the context and can con- tribute to broader political and peacebuilding efforts in line with United Nations Secu- rity Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementa- tion and monitoring of DDR-related tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to de- limit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN approach to integrated DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In these contexts, reintegration may take place alongside/following DDR-related tools, or when DDR-related tools are not in use. The aim of this support is to facilitate the sustaina- ble reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes also aim to contribute to preventing further recruitment and to sustaining peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequita- ble access to resources. In this context, exits from armed groups and the reintegration of adult ex-combatants can and should be supported at all times, even in the absence of a DDR programme. Support to sustainable reintegration that addresses the needs of affected groups and harnesses their capacities, either as part of DDR programmes or not, requires a thorough understanding of the drivers of conflict, the specific needs of men, women, children and youth, their coping mechanisms and the opportunities for peace. Rein- tegration assistance should ensure the transition from individually focused to community approaches. This is so that resources can be applied to the benefit of the community in a balanced manner minimizing the stigmatization of former armed group members and contributing to reconciliation and reconstruction of the social fabric. In non-mission contexts, where funding mechanisms are not linked to peacekeeping assessed budgets, the use of DDR-related tools should, even in the initial planning phases, be coordinated with community-based reintegration support in order to ensure sustainability. Together, DDR programmes, DDR-related tools, and reintegration support provide a menu of options for DDR practitioners. If the aforementioned preconditions are in place, DDR-related tools may be used before, after or alongside a DDR programme. DDR-related tools and/or reintegration support may also be applied in the absence of preconditions and/or following the determination that a DDR programme is not appropriate for the context. In these cases, DDR-related tools may serve to build trust among the parties and contribute to a secure environment, possibly even paving the way for a DDR programme in the future (if still necessary). Notably, if DDR-related tools are applied with the explicit intent of creating the preconditions for a DDR pro- gramme, a combination of top-down and bottom-up measures (e.g., CVR coupled with DDR support to mediation) may be required. When the preconditions for a DDR programme are not in place, all DDR-related tools and support to reintegration efforts shall be implemented in line with the appli- cable legal framework and the key principles of integrated DDR as defined in these standards.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "97a4c405-f15f-4fe8-9b51-383d35988ceb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 5, + "Paragraph": "Module scope and objectives This module outlines the reasons behind integrated DDR, defines the elements that make up DDR programmes as agreed by the UN General Assembly, and establish- es how the UN views integrated DDR processes. The module also defines the UN approach to integrated DDR for both mission and non-mission settings, which is: voluntary; people-centred; gender-responsive and inclusive; conflict-sensitive; context-specific; flexible, accountable and transparent; nationally and locally owned; regionally supported; integrated; and well planned.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bfe08544-fac4-4d87-9989-ede7141e5531", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 5, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardiza- tion (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. A DDR programme contains the elements set out by the Secretary-General in his May 2005 note to the General Assembly (A/C.5/59/31). (See box below.) These definitions are also used for drawing up budgets where UN Member States have agreed to fund the disarmament and demobilization (including reinsertion) phases of DDR programmes from the peacekeeping assessed budget. These budgetary aspects are also reflected in a General Assembly resolution on cross-cutting issues, including DDR (A/RES/59/296). Further reviews of both the United Nations Peacebuilding Architecture and the Women, Peace and Security Agenda refer to the full, unencumbered participation of women in all phases of DDR programmes, as ex-combatants or persons formerly associated with armed forces and groups. REINTEGRATION Reintegration is the process by which ex-combatants acquire civilian status and gain sustainable employment and income. Reintegration is essentially a social and economic process with an open time frame, primarily taking place in communities at the local level. It is part of the general development of a country and a national responsibility and often necessitates long-term external assistance. Recognizing new developments in the reintegration of ex-combatants and associated groups since the release of the 2005 Note, the Third Report of the Secretary-General on DDR (2011) includes revised policy and guidance. It observes that, \u201cin most countries, economic aspects, while central, are not sufficient for the sustainable reintegration of ex-combatants. Serious consideration of the social and political aspects of reintegra- tion \u2026 is [also] crucial for the sustainability and success of reintegration programmes\u201d, including interventions, such as psychosocial support, mental health counseling and clinical treatment and medical health support, as well as reconciliation, access to justice/ transitional justice and participation in political processes. Additionally, it emphasizes that while \u201creintegration programmes supported by the United Nations are time-bound by nature \u2026 the reintegration of ex-combatants and associated groups is a long-term process that takes place at the individual, community, national and regional levels, and is dependent upon wider recovery and development.\u201d Note by the Secretary-General on administrative and budgetary aspects of the financ- ing of UN peacekeeping operations, 24 May 2005 (A/C.5/59/31); Third report of the Secretary-General on disarmament, demobilization and reintegration, 21 March 2011 (A/65/741) DDR-related tools are immediate and targeted measures that may be used before, after or alongside DDR programmes or when the preconditions for DDR-programmes are not in place. These include pre-DDR, transitional weapons and ammunition man- agement (WAM), community violence reduction (CVR), initiatives to prevent individ- uals from joining armed groups designated as terrorist organizations, DDR support to mediation and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may be provided by DDR practitioners in compliance with international standards. Reintegration support, including when complementing DDR-related tools: The UN should provide support to the reintegration of former members of armed forces and groups not only as part of DDR programmes, but also in the absence of such pro- grammes, during conflict escalation, conflict and post-conflict. In these contexts, rein- tegration may take place alongside/following DDR-related tools or when DDR-related tools are not in use. The aim of this support is to facilitate the sustainable reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes should also aim to contribute to dynamics that aim to prevent further recruitment and sustain peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequita- ble access to resources. Integrated DDR processes are made up of different combinations of DDR pro- grammes, DDR-related tools and reintegration support, including when complement- ing DDR-related tools. These different measures should be applied in an integrated manner, with joint mechanisms that guarantee coordination and synergy among all UN actors. The UN shall use the concept and abbreviation \u2018DDR\u2019 as a comprehensive term referring to integrated DDR, and including DDR programmes, DDR-related tools and reintegration support. Importantly, integrated DDR processes without DDR pro- grammes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration ef- forts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d3c25fb9-3524-4e59-ad1d-2a6666fc4cbc", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "Introduction: The rationale and mandate for integrated DDR As DDR is implemented in partnership with Member States and draws on the exper- tise of a wide range of stakeholders, an integrated approach is vital to ensure that all actors are working in harmony towards the same end. Past experiences have highlight- ed the need for those involved in planning and implementing DDR and monitoring its impacts to work together in a complementary way that avoids unnecessary duplication of effort or competition for funds and other resources (see IDDRS 3.10 on Integrated DDR Planning). The UN\u2019s integrated approach to DDR is guided by several policies and agendas that frame the UN\u2019s work on peace, security and development: Echoing the Brahimi Report (A/55/305; S/2000/809), the High-Level Independent Panel on Peace Operations (HIPPO) in June 2015 recommended a common and realistic un- derstanding of mandates, including required capabilities and standards, to improve the design and delivery of peace operations. Integrated DDR is part of this effort, based on joint analysis, comprehensive approaches, coordinated policies, DDR programmes, DDR-related tools and reintegration support. The Sustaining Peace Approach \u2013 manifested in the General Assembly and Secu- rity Council twin resolutions on the Review of the United Nations Peacebuilding Ar- chitecture (General Assembly resolution 70/262 and Security Council resolution 2282 [2016]) \u2013 underscores the mutually reinforcing relationship between prevention and sustaining peace, while recognizing that effective peacebuilding must involve the en- tire UN system. It also emphasizes the importance of joint analysis and effective strate- gic planning across the UN system in its long-term engagement with conflict-affected countries, and, where appropriate, in cooperation and coordination with regional and sub-regional organizations as well as international financial institutions. Integrated DDR also needs to be understood as a concrete and direct contribution to the implementation of the Sustainable Development Goals (SDGs). The SDGs are underpinned by the principle of leaving no one behind. The 2030 Agenda for Sustain- able Development explicitly links development to peace and security, while SDG 16 is focused on the promotion of peaceful, just and inclusive societies. Specifically, integrated DDR contributes to the implementation of:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "5cd3deb1-c193-4d27-aa82-bbdc226a4482", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "SDG 16.1: Significantly reduce all forms of violence and related death rates everywhere. SDG 16.4: By 2030, significantly reduce illicit financial and arms flows, strengthen the recovery and return of stolen assets and combat all forms of organized crime.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5d7d6359-0a62-44b2-b126-def05d75a870", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "SDG 8.7: Take immediate steps to secure the prohibition and elimination of child labour, including recruitment and use of child soldiers, and by 2015 end child labour in all its forms. Gender-responsive DDR also contributes to:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "770834a7-f6b5-49bc-a179-c2496cc7b782", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "SDG 5.1: End all forms of discrimination against women. SDG 5.2: Eliminate all forms of violence against all women and girls in public and private spaces, including trafficking, sexual and other types of exploitation.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e46c9c82-cf5c-492b-a179-ecce89e833ae", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "SDG 5.6: Ensure universal access to sexual and reproductive health and repro- ductive rights. The Quadrennial Comprehensive Policy Review (A/71/243, 21 December 2016, para. 14), states that \u201ca comprehensive whole-of-system response, including greater co- operation and complementarity among development, disaster risk reduction, human- itarian action and sustaining peace, is fundamental to most efficiently and effectively addressing needs and attaining the Sustainable Development Goals.\u201d Moreover, integrated DDR often takes place amid protracted humanitarian con- texts which, since the 2016 World Humanitarian Summit Commitment to Action, have been framed through various initiatives that recognize the need to strengthen the humanitarian, development and peace nexus. These initiatives \u2013 such as the Grand Bargain, the New Way of Working (NWoW), and the Global Compact on Refugees \u2013 all call for humanitarian, development and peace stakeholders to identify shared priori- ties or collective outcomes that can serve as a common framework to guide respective planning processes. In contexts where the UN system implements these approaches, in- tegrated DDR processes can contribute to the achievement of these collective outcomes. In all contexts \u2013 humanitarian, development, and peacebuilding \u2013 upholding hu- man rights, including gender equality, is pivotal to UN-supported integrated DDR. The Universal Declaration of Human Rights (UDHR, UNGA 217, 1948), the International Covenant on Civil and Political Rights, and the International Covenant on Economic, Social and Cultural Rights form the International Bill of Human Rights. These funda- mental instruments, combined with various treaties and conventions, including (but not limited to) the Convention on the Elimination of Discrimination Against Wom- en (CEDAW), the International Convention on the Elimination of All Forms of Racial Discrimination, the United Nations Convention on the Rights of the Child, and the United Nations Convention Against Torture, establish the obligations of Governments to promote and protect human rights and the fundamental freedoms of individuals and groups, applicable throughout integrated DDR. The work of the United Nations in all contexts is conducted under the auspices of upholding this body of law, promoting and protecting the rights of DDR participants and the communities into which they integrate, and assisting States in carrying out their responsibilities. At the same time, the Secretary-General\u2019s Action for Peacekeeping (A4P) initiative, launched in March 2018 as the core agenda for peacekeeping reform, seeks to refocus peacekeeping with realistic expectations, make peacekeeping missions stronger and safer, and mobilize greater support for political solutions and for well-structured, well- equipped and well-trained forces. In relation to the need for integrated DDR solutions, the A4P Declaration of Shared Commitment, shared by the Secretary-General on 16 August 2018, calls for the inclusion and engagement of civil society and all segments of the local population in peacekeeping mandate implementation. In addition, it includes commitments related to strengthening national ownership and capacity, ensuring inte- grated analysis and planning, and seeking greater coherence among UN system actors, including through joint platforms such as the Global Focal Point on Police, Justice and Corrections. Relatedly, the Secretary-General\u2019s Agenda for Disarmament, launched in May 2018, also calls for \u201cdisarmament that saves lives\u201d, including new efforts to rein in the use of explosive weapons in populated areas \u2013 through common standards, the collection of data on collateral harm, and the sharing of policy and practice. The UN General Assembly and the Security Council have called on all parts of the UN system to promote gender equality and the empowerment of women within their mandates, ensuring that commitments made are translated into progress on the ground and gender policies in the IDDRS. More concretely, UNSCR 1325 (2000) encour- ages all those involved in the planning of disarmament, demobilization and reintegra- tion to consider the distinct needs of female and male ex-combatants and to take into account the needs of their dependents. The Global Study on 1325, reflected in UNSCR 2242 (2015), also recommends that mission planning include gender-responsive DDR programmes. Furthermore, Security Council Resolution 2282 (2016), the Review of the United Nations Peacebuilding Architecture, the Review of Women, Peace and Security, and the High-Level Panel on Peace Operations (HIPPO) note the importance of women\u2019s roles in sustaining peace. UNSCR 2282 highlights the importance of women\u2019s leader- ship and participation in conflict prevention, resolution and peacebuilding, recogniz- ing the continued need to increase the representation of women at all decision-making levels, including in the negotiation and implementation of DDR programmes. UN Gen- eral Assembly resolution 70/304 calls for women\u2019s participation as negotiators in peace processes, including those incorporating DDR provisions, while the Secretary-Gen- eral\u2019s Seven Point Action Plan on Gender-Responsive Peacebuilding calls for 15% of funding in support of post-conflict peacebuilding projects to be earmarked for wom- en\u2019s empowerment and gender-equality programming. Finally, the Secretary-General\u2019s Agenda for Disarmament calls on States to incorporate gender perspectives into the development of national legislation and policies on disarmament and arms control \u2013 in particular, the gendered aspects of ownership, use and misuse of arms; the differenti- ated impacts of weapons on women and men; and the ways in which gender roles can shape arms control and disarmament policies and practices.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a39d4c83-ec99-4d85-8e37-f0c1b2424e31", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 11, + "Paragraph": "The UN DDR approach The UN\u2019s integrated approach to DDR is applicable to mission and non-mission contexts, and emphasizes the role of DDR programmes, DDR-related tools, and reinte- gration support, including when complementing DDR-related tools. The unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and rein- tegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. DDR programmes consist of a range of activities falling under the operational categories of disarmament, demobilization and reintegration. (See definitions above.) These programmes are typically top-down and are designed to implement the terms of a peace agreement between armed groups and the Government. The UN views DDR programmes as an integral part of peacebuilding efforts. DDR programmes focus on the post-conflict security problem that arises when combatants are left without livelihoods and support networks during the vital period stretching from conflict to peace, recovery and development. DDR programmes also help to build national capacity for long-term reintegration and human security, and they recognize the need to contribute to the right to reparation and to guarantees of non-repetition (see IDDRS 6.20 on DDR and Transitional Justice). DDR programmes are complex endeavours, with political, military, security, hu- manitarian and socio-economic dimensions. The establishment of a DDR programme is usually agreed to and defined within a ceasefire, the ending of hostilities or a com- prehensive peace agreement. This provides the political, policy and operational frame- work for the DDR programme. More generally, lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. DDR programmes provide a framework for their coordination, management and implementation by national Governments with support from the UN system, inter- national financial institutions, and regional stakeholders. They establish the expect- ed outcomes, outputs and activities required, organize costing requirements into a budget, and set the monitoring and evaluation framework by identifying indicators, targets and milestones. The UN\u2019s integrated approach to DDR acknowledges that planning for DDR pro- grammes shall be initiated as early as possible, even before a ceasefire and/or peace agreement is signed, before sufficient trust is built in the peace process, and before minimum conditions of security are reached that enable the parties to the conflict to engage willingly in DDR (see IDDRS 3.10 on Integrated DDR Planning). DDR programmes alone cannot resolve conflict or prevent violence, and such pro- grammes need to be firmly anchored in an overall political and peacebuilding strategy. However, DDR programmes can contribute to security and stability so that other ele- ments of a political and peacebuilding strategy, such as elections and power sharing, weapons and ammunition management, security sector reform (SSR) and rule of law reform, can proceed (see IDDRS 6.10 on DDR and SSR). In recent years, DDR practitioners have increasingly been deployed in settings where the preconditions for DDR programmes are not in place. In some contexts, a peace agreement may have been signed but the armed groups have lost trust in the peace process or reneged on the terms of the deal. In other settings, where there are multiple armed groups, some may sign on to a peace agreement while others do not. In contexts of violent extremism conducive to terrorism, peace agreements are only a remote possibility. It is not solely the lack of ceasefire agreements or peace processes that makes inte- grated DDR more challenging, but also the proliferation and diversification of armed groups, including some with links to transnational networks and organized crime. The phenomenon of violent extremism, as and when conducive to terrorism, creates legal and operational challenges for integrated DDR and, as a result, requires specific guidance. (For legal guidance pertinent to the UN approach to DDR, see IDDRS 2.11 on The Legal Framework for UN DDR.) Support to programmes for individuals leav- ing armed groups labelled and/or designated as terrorist organizations, among other things, should be predicated on a comprehensive screening process based on interna- tional standards, including international human rights obligations and national justice frameworks. There is no universally agreed upon definition of \u2018terrorism\u2019, nor associat- ed terms such as \u2018violent extremism\u2019. Nevertheless, the 19 international instruments on terrorism agree on definitions of terrorist acts/offenses, which are binding on Member States that are party to these conventions, as well as Security Council resolutions that describe terrorist acts. Practitioners should have a solid grounding in the evolving in- ternational counter-terrorism framework as established by the United Nations Global Counter-Terrorism Strategy, relevant General Assembly and Security Council resolu- tions and mandates, and the Secretary-General\u2019s Plan of Action to Prevent Violent Ex- tremism. In response to these challenges, DDR practitioners may contribute to stabilization initiatives through the use of DDR-related tools. The specific aims of DDR-related tools will vary according to the context and can contribute to broader political and peace- building efforts in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP), and/or the Integrated Strategic Framework. A gender- and child-sensitive ap- proach should be applied to the planning, implementation and monitoring of DDR-re- lated tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to de- limit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN\u2019s integrated approach to DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In line with the sustaining peace approach, this means that the UN should provide long-term support to reintegration that takes place in the absence of DDR programmes during conflict escalation, ongoing conflict and post-conflict reconstruction (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). The first goal of this support should be to facilitate the sustainable reintegration of those leaving armed forces and groups. However, as part of the sustaining peace approach, community-based re-", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "b6bec7af-5c46-4ff0-83d3-be638d943e6e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "In line with the sustaining peace approach, the UN should provide long-term support to reintegration during conflict escalation, conflict and post-conflict situations. integration programmes should also aim to contribute to dynamics that aim to prevent future recruitment and sus- tain peace. In this regard, opportunities should be seized to prevent relapse into conflict (or any form of violence), including by tackling root causes and understanding peace dynamics. Appropriate linkages should also be established with local and national stabilization, recovery and development plans. Reintegration sup- port as part of sustaining peace is not only an integral part of DDR programmes, it also follows SSR where armed forces or the police are rightsized; complements DDR-related tools, such as CVR, through sustainable measures; or is provided to persons formerly associated with armed groups labelled and/or designated as terrorist organizations. In sum, in countries in active armed conflict or emerging from armed conflict, DDR programmes, related tools and reintegration support contribute to stabilization efforts, to addressing gender inequalities exacerbated by conflict, and to creating an environment in which a peace process, political and social reconciliation, access to live- lihoods and sustainable decent work, and long-term development can take root. When the preconditions for a DDR programme are in place, the DDR of combatants from both armed forces and groups can help to establish a climate of confidence and security, a necessity for recovery activities to begin, which can directly yield tangible benefits for the population. When the preconditions for a DDR programme are not in place, practitioners may choose from a set of DDR-related tools and measures in support of reintegration that can contribute to stabilization, help to make the returns of stability more tangible, and create more conducive environments for national and local peace processes. As such, integrated DDR processes should be seen as integral parts of efforts to consolidate peace and promote stability, and not merely as a set of sequenced tech- nical programmes and activities. Overall, integrated DDR has evolved beyond support to national, linear and sequenced DDR programmes, to become a process addressing the entire peace contin- uum in both mission and non-mission contexts, at regional, national and local levels.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "81c6ac07-be39-4785-8d65-e366ffaf940e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 14, + "Paragraph": "UN DDR in mission and non-mission settings The UN has been involved in integrated DDR across the peace continuum since the late 1980s. During the past 25 years, the UN has amassed considerable experience and knowledge of the coordination, design, implementation, financing, and monitoring and evaluation of DDR programmes. Over the past 10 years the UN has also gained similar experience in the use of DDR-related tools and reintegration support when the preconditions for DDR programmes are not present. Integrated DDR originates from various parts of the UN\u2019s core mandate, as set out in the Charter of the UN, particularly the areas of peace and security, economic and social development, human rights and humanitarian assistance. UN departments, agencies, programmes and funds are uniquely able to support integrated DDR processes both in mission settings, where peace operations are in place, and in non-mission settings, where there is no peace operation present, provid- ing breadth of scope, neutrality, impartiality and capacity-building through the shar- ing of technical DDR skills.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dde73fdd-b77d-4813-b3a6-827d910b377e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 14, + "Paragraph": "DDR in mission settings Mission settings are those situations in which peace operations are deployed through peacekeeping operations, political missions and good offices engagements, by the UN or a regional organization. Where peace operations are mandated to manage and re- solve an actual or potential conflict within States, DDR is generally mandated through a UN Security Council resolution, ideally within the framework of a ceasefire and/or a comprehensive peace agreement with specific provisions on DDR. Decision-making and accountability rest with the Special Representative or Special Envoy of the Secretary- General. Missions with a DDR mandate usually include a dedicated DDR component to support the design and implementation of a nationally led DDR programme. When the preconditions for a DDR programme are not in place, the Security Council may also mandate UN peace operations to implement specific DDR-related tools, such as CVR, to support the creation of a conducive environment for a DDR programme. These types of DDR-related tools can also be designed and implemented to contribute to other mandated priorities such as the protection of civilians, stabilization and support to the overall peace process. Integrated disarmament, demobilization (including reinsertion) and other DDR- related tools (except those covering reintegration support) fall under the responsibility of the UN peace operation\u2019s DDR component. The reintegration component will be supported and/or undertaken in an integrated manner very often by relevant agencies, funds and programmes within the United Nations Country Team (UNCT), as well as international financial institutions, under the leadership of the Deputy Special Repre- sentative of the Secretary-General (DSRSG)/Humanitarian Coordinator (HC)/Resident Coordinator (RC), who will designate lead agency(ies). The DDR mission component shall therefore work in close coordination with the UNCT. The UN DSRSG/HC/RC should establish a UN DDR Working Group at the country level with co-chairs to be defined, as appropriate, to coordinate the contributions of the UNCT and international financial institutions to integrated DDR. While UN military and police contingents provide a minimum level of security, support from other mission components may include communications, gender equal- ity, women\u2019s empowerment, and youth and child protection. With regard to special political missions and good offices engagements, DDR implementation structures and partnerships may need to be adjusted to the mission\u2019s composition as the mandate evolves. This adjustment can take account of needs at the country level, most notably with regard to the size and capacities of the DDR component, uniformed personnel and other relevant technical expertise. In the case of peace operations, the Security Council mandate also forms the basis for assessed funding for all activities related to disarmament, demobilization (including reinsertion) and DDR-related tools (except those covering reintegration support). Fund- raising for reintegration assistance and other activities needs to be conducted by Govern- ments and/or regional organizations with support from United Nations peace operations, agencies, funds and programmes, bilateral donors and relevant international financial institutions. Regarding special political missions and good offices engagements, support to integrated DDR planning and implementation may require extra-budgetary funding in the form of voluntary contributions and the establishment of alternative financial management structures, such as a dedicated multi-donor trust fund.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6c728ae1-40af-4c28-9f2d-c569a4f0ab55", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 15, + "Paragraph": "DDR in non-mission settings Non-mission settings are those situations in which there is no peace operation deployed to a country, either through peacekeeping, political missions or good offices engage- ments, by either the UN or regional organizations. In countries where there is no United Nations peace operation mandated by the Security Council, UN DDR support will be provided when either a national Government and/or UN RC requests assistance. The disarmament and demobilization components of a DDR programme will be undertaken by national institutions with advice and technical support from relevant UN departments, agencies, programmes and funds, the UNCT, regional organizations and bilateral actors. The reintegration component will be supported and/or imple- mented by the UNCT and relevant international financial institutions in an integrated manner. When the preconditions for a DDR programme are not in place, the imple- mentation of specific DDR-related tools, such as CVR, and/or reintegration support, may be considered. The alignment of CVR initiatives in non-mission contexts with reintegration assistance is essential. Decision-making and accountability for UN-supported DDR rest, in this context, with the UN RC, who will identify one or more UN lead agency(ies) in the UNCT based on in-country capacity and expertise. The UN RC should establish a UN DDR Working Group co-chaired by the lead agency(ies) at the country level to coordinate the contribution of the UNCT to integrated DDR, including on issues related to gender equality, women\u2019s empowerment, youth and child protection, and support to persons with disabilities. DDR programmes, DDR-related tools and reintegration support, where applicable, will require the allocation of national budgets and/or the mobilization of voluntary contributions, including through the establishment of financial management struc- tures, such as a dedicated multi-donor trust fund or catalytic funding provided by the Peacebuilding Fund (PBF).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "822b368b-e76c-406a-bf3f-ab7d7ade236a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "When is DDR appropriate? Violent conflicts do not always completely cease when a political settlement is reached or a peace agreement is signed. There remains a real danger that violence will flare up again during the immediate post-conflict period, because putting right the political, security, social and economic problems and other root causes of war is a long-term project. Furthermore, peace operations are often mandated in contexts where an agree- ment is yet to be reached or where a peace process is yet to be initiated or is only par- tially initiated. In non-mission contexts, requests from the Government for the UN to support DDR are made either when ceasefires are reached or when a peace agreement or a comprehensive peace agreement is signed. This is why practitioners should decide whether DDR programmes, DDR-related tools and/or reintegration support constitute the most appropriate response to a particular situation. A DDR programme will only be appropriate when the preconditions referred to above are in place.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "00fae480-a90a-41db-8e0a-4f35e0e98c76", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 16, + "Paragraph": "When the preconditions for a DDR programme are not in place When the preconditions for a DDR programme are not in place, the reintegration of for- mer combatants and persons formerly associated with armed forces and groups may be supported in line with the sustaining peace approach, i.e., during conflict escala- tion, conflict and post-conflict. Furthermore, practitioners may choose from a menu of DDR-related tools. (See table above.) Unlike DDR programmes, DDR-related tools are not designed to implement the terms of a peace agreement. Instead, when the preconditions for a DDR-programme are not in place, DDR-related tools may be used in line with United Nations Securi- ty Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementa- tion and monitoring of DDR-related tools.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9f3ee80d-5a78-4a8c-b538-05635c4f7000", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 16, + "Paragraph": "When the preconditions for a DDR programme are in place When the preconditions are in place, the UN may support the establishment of DDR programmes. Other DDR-related tools can also be implemented before, after or along- side DDR programmes, as complementary measures (see table above). The UN may employ or support a variety of DDR programming elements adapted to suit each context. These may include: The disbanding of armed groups: Governments may request assistance to disband armed groups. The establishment of a DDR programme is agreed to and defined within a ceasefire, the ending of hostilities or a comprehensive peace agreement. Trust and commitment by the parties to the implementation of an agreement and minimum conditions of security are essential for the success of a DDR programme. Administratively, there is little difference between DDR programmes for armed forces and armed groups. Both may require the full registration of weapons and personnel, followed by the collection of information, referral and counselling that are needed before effective reintegration programmes can be put in place. Level 2 Concepts, Policy and Strategy of the IDDRS \uf06e The UN Approach to DDR\t17\t2.10 \uf06e 18\tIntegrated Disarmament, Demobilization and Reintegration Standards \uf06e 19 November 2019 The rightsizing of armed forces or police: Governments may request assistance to downsize or restructure their armies or police and supporting institutional infra- structure (salaries, benefits, basic services, etc.). Such processes contribute to secu- rity sector reform (SSR) (see IDDRS 6.10 on DDR and Security Sector Reform). DDR practitioners should work in close collaboration with SSR experts while planning reintegration support to former members of armed forces. The repatriation of foreign combatants and associated groups: Considering the regional dimensions of conflict, Governments may agree to assistance to repatri- ation. DDR programmes may need to become involved in repatriating national combatants and their civilian family members, as well as children associated with armed forces and groups who may have crossed an international border. Such re- patriation needs to be in accordance with the principle of non-refoulement, as set out in international humanitarian, human rights and refugee law (see IDDRS 2.11 on The Legal Framework for UN DDR). While DDR programmes are primarily used to address the security challenges posed by members of armed forces and groups, provisions should be made for the in- clusion of other groups (including civilians and youth at risk), depending on resources and local circumstances. National institutions should be supported to determine the policy on direct benefits and reintegration assistance during a DDR programme. Civilians and civil society groups in communities to which members of the above- mentioned groups will return should be consulted during the planning and design phase of DDR programmes, as well as informed and supported in order to assist them to receive ex-combatants and their dependents/families during the reintegration phase.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bbea7e76-f756-4c83-b61a-314f65be663b", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "Who is DDR for? Five categories of people should be taken into consideration, as participants and ben- eficiaries, in integrated DDR processes. This will depend on the context, and the par- ticular combination of DDR programmes, DDR-related tools, and reintegration support in use: members of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); abductees/victims; dependents/families; civilian returnees/\u2019self-demobilized\u2019; community members. Consideration should be given to addressing the specific needs of women, youth, chil- dren, persons with disabilities, and persons with chronic illnesses in each of these five categories. National actors, such as Governments, political parties, the military, signatory and non-signatory armed groups, non-governmental organizations, civil society organiza- tions and the media are all stakeholders in integrated DDR processes along with inter- national actors.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "45b5a6bd-3179-4b29-a66d-e8a3545e7b74", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "What principles guide UN DDR? All UN DDR programmes, DDR-related tools, and reintegration support shall be voluntary, people-centred, gender-responsive and inclusive, conflict sensitive, context specific, flexible, accountable and transparent, nationally and locally owned, regionally supported, integrated and well planned.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "efdd9a60-d9a4-42dd-ac4b-d706d88affb8", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 15, + "Paragraph": "Voluntary Integrated DDR shall be a voluntary process for both armed forces and groups, both as organizations and individual (ex)combatants. Groups and individuals shall not be coerced to participate. This principle has become even more important, but contested, in contemporary conflict environments where the participation of some combatants in nationally, locally, or privately supported efforts is arguably involuntary, for example as a result of their capture on the battlefield or their being forced into a DDR pro- gramme under duress. Integrated DDR should not be conflated with military operations or counter-insur- gency strategies. Although the UN does not generally engage in detention operations and DDR has traditionally been a voluntary process, the nature of conflict environ- ments and the growing potential for overlap with State-led efforts countering violent extremism and counter-terrorism has increased the likelihood that the UN and other actors engaging in DDR may be faced with detention-related dilemmas. DDR practi- tioners should therefore pay particular attention to such questions when operating in complex conflict environments and seek legal advice if confronted with surrendered or captured combatants in overt military operations, or if there are any concerns regard- ing the voluntariness of persons participating in DDR. They should also be aware of requirements contained in Chapter VII resolutions of the Security Council that, among other things, call for Member States to bring terrorists to justice and oblige national authorities to ensure the prosecution of suspected terrorists as appropriate (see IDDRS 2.11 on The Legal Framework for UN DDR).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "435cddc3-35ff-4c9f-b642-4ac13dce9777", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 21, + "Paragraph": "Criteria for participation/eligibility Determining the criteria that define which people are eligible to participate in inte- grated DDR, particularly in situations where mainly armed groups are involved, is vital if aims are to be achieved. In DDR programmes, eligibility criteria must be care- fully designed and ready for use in the disarmament and demobilization stages. DDR programmes are aimed at combatants and persons associated with armed forces and groups. These groups may be composed of different categories of people who have participated in the conflict within armed forces and groups such as abductees/victims or dependents/families. In instances where the preconditions for a DDR programme are not in place, or where combatants are ineligible for DDR programmes, DDR-related tools, such as CVR, or support to reintegration may be provided. Determination of eligibility for these ac- tivities should be undertaken by relevant national and local authorities with support from UN missions, agencies, programmes and funds as appropriate. Armed groups in particular have a variety of structures \u2013 rebel groups, armed gangs, etc. In order to provide the best assistance, operational and implementation strategies that deal with their specific needs should be adopted.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "1a9ce742-31fb-4359-9381-13dff428a686", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 22, + "Paragraph": "Unconditional release and protection of children The unconditional and immediate release of children associated with armed forces and groups must be a priority, irrespective of the status of peace negotiations and/ or the development of DDR programmes and DDR-related tools. UN-supported DDR interventions shall not be allowed to encourage the recruitment of children into armed forces and groups in any way, especially by commanders trying to increase the number of combatants entering DDR programmes in order to profit from assistance provided to combatants. When DDR programmes, DDR-related tools and reintegration support are implemented, children shall be separated from armed forces and groups and hand- ed over to child protection agencies. Children will then be supported to demobilize and reintegrate into families and communities (see IDDRS 5.30 on Children and DDR). Only child protection practitioners should interview children associated with armed forces and groups.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "53d71875-2bb8-4e0b-9a19-8dc22992985f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 22, + "Paragraph": "8.2.3 In accordance with standards and principles of humanitarian assistance UN-supported integrated DDR processes promote the human rights of participants and the communities into which they integrate, and are conducted in line with inter- national humanitarian, human rights and refugee law. The UN and its partners should be neutral, transparent and impartial, and should not take sides in any conflict or in political, racial, religious or ideological controversies, or give preferential treatment to different parties taking part in DDR. Neutrality within a rights-based approach should not, however, prevent UN per- sonnel from protesting against or documenting human rights violations or taking some other action (e.g., advocacy, simple presence, political steps, local negotiations, etc.) to prevent them. Under the UN\u2019s Human Rights Due Diligence Policy (HRDDP), provid- ers of support have a responsibility to monitor the related human rights context, to suspend support under certain circumstances and to en- gage with national authorities towards address- ing violations. Where one or more parties or in- dividuals violate agreements and undertakings,", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dd5651ef-143c-47d0-845b-a1d219d7f135", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": null, + "Paragraph": "Neutrality within a rights-based approach should not prevent UN personnel from protesting against or documenting human rights violations. the UN can take appropriate remedial action and/or exclude individuals from DDR. Humanitarian aid must be delivered to all those who are suffering, according to their need, and human rights provide the framework on which an assessment of needs is based. However, mechanisms must also be designed to prevent those who have com- mitted violations of human rights from going unpunished by ensuring that DDR pro- grammes, related tools and reintegration support do not operate as a reward system for the worst violators. In many post-conflict situations, there is often a tension between reconciliation and justice, but efforts must be made to ensure that serious violations of human rights and humanitarian law by ex-combatants and their supporters are dealt with through appropriate national and international legal and/or transitional justice mechanisms. Children released from their association with armed forces and groups who have committed war crimes and mass violations of human rights may also be criminally re- sponsible under national law, though any criminal responsibility must be in accordance with international juvenile justice standards and the International Criminal Court Policy on Children (see IDDRS 5.20 on Youth and DDR, and IDDRS 5.30 on Children and DDR). UN-supported DDR interventions should take into consideration local and inter- national mechanisms for achieving justice and accountability, as well as respect for the rule of law, including any accountability, justice and reconciliation mechanisms that may be established with respect to crimes committed in a particular Member State. These can take various forms, depending on the specificities of the local context.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "41c4d275-806f-46e0-824a-4a38111a68bf", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 23, + "Paragraph": "Gender responsive and inclusive Like men and boys, women and girls are likely to have played many different roles in armed forces and groups, as fighters, supporters, wives or sex slaves, messengers and cooks. The design and implementation of integrated DDR processes should aim to ad- dress the specific needs of women and girls, as well as men and boys, taking into account these different experiences, roles, capacities and responsibilities acquired during and after conflicts. Specific measures should be put in place to ensure the equal and mean- ingful participation of women in all stages of integrated DDR \u2013 from the negotiation of DDR provisions in peace agreements and the establishment of national institutions, to CVR and community-based reintegration support (see IDDRS 5.10 on Gender and DDR). Non-discrimination and fair and equitable treatment are core principles in both the design and implementation of integrated DDR processes. The eligibility criteria for DDR shall not discriminate against individuals on the basis of sex, age, gender identity, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associations. Furthermore, the opportunities/benefits that eligible ex-combatants have access to when participating in a particular DDR process shall not discriminate against individuals on the basis of their former affiliation with a particular armed force or group. It is likely there will be a need to address potential \u2018spoilers\u2019, e.g., by negotiating \u2018special packages\u2019 for commanders in order to secure their buy-in and to ensure that they allow combatants to participate. This political compromise must be carefully ne- gotiated on a case-by-case basis. Furthermore, the inclusion of youth at risk and other non-combatants should also be seen as a measure helping to prevent future recruitment.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d9bc78f9-f506-4865-ba2c-386df68845cd", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 23, + "Paragraph": "Conflict sensitive \u2018Do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. No false promises shall be made; and, ultimately, no individual or community should be made less secure by the return of ex-combatants or the presence of UN peacekeeping, police or civilian personnel. The establishment of UN-supported prevention, protection and monitoring mechanisms (including systems for ensuring access to justice and police protection, etc.) is essential to prevent and punish sexual and gender-based violence, harassment and intimidation, or any other violation of human rights. It is particularly important to consider \u2018do no harm\u2019 when assessing the reinsertion and reintegration options for female fighters or women and girls associated with armed forces and groups.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "444e78eb-140d-4d58-9bda-5cec7d03542d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 24, + "Paragraph": "Context specific Integrated DDR needs to be flexible and context-specific in order to address national, regional, and global realities. DDR should consider the nature of armed groups, con- flict drivers, peace opportunities, gender dynamics, and community dynamics. All UN or UN-supported DDR interventions shall be designed to take local conditions and needs into account. The IDDRS provide DDR practitioners with comprehensive guid- ance and analytical tools for the planning and design of DDR rather than a standard formula that is applicable to every situation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1f2c83de-6a06-47dc-a6ba-08f8e374981e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 24, + "Paragraph": "Flexible, sustainable and transparent funding arrangements Due to the complex and dynamic nature of integrated DDR processes, flexible and long-term funding arrangements are essential. The multidimensional nature of DDR requires an initial investment of staff and funds for planning and programming, as well as accessible and sustainable sources of funding throughout the different phases of implementation. Funding mechanisms, including trust funds, pooled funding, etc., and the criteria established for the use of funds shall be flexible. Past experience has shown that assigning funds exclusively for specific DDR components (e.g., disarma- ment and demobilization) or expenditures (e.g., logistics and equipment) sets up an artificial distinction between the different elements of a DDR programme and makes it difficult to implement the programme in an integrated, flexible and dynamic way. The importance of planning and initiating reinsertion and reintegration support ac- tivities at the start of a DDR programme has become increasingly evident, so adequate financing for reintegration needs to be secured in advance. This should help to prevent delays or gaps in implementation that could threaten or undermine the programme\u2019s credibility and viability (see IDDRS 3.41 on Finance and Budgeting).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c94a7114-0059-4d2b-94cf-99bde53fa396", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 24, + "Paragraph": "Accountability and transparency In order to build confidence and ensure legitimacy, and to justify financial and tech- nical support by international actors, DDR programmes, DDR-related tools and reinte- gration support are, from the very beginning, predicated on the principles of accounta- bility and transparency. Post-conflict stabilization and the establishment of immediate security are the overall goals of DDR, but integrated DDR also takes place in a wider re- covery and reconstruction framework. While both short-term and long-term strategies should be developed in the planning phase, due to the dynamic and volatile conflict and post-conflict context, interventions must be flexible and adaptable. The UN aims to establish transparent mechanisms for the independent monitor- ing, oversight and evaluation of integrated DDR and its financing mechanisms. It also attempts to create an environment in which all stakeholders understand and are accountable for achieving broad objectives and implementing the details of integrated DDR processes, even if circumstances change. Many types of accountability are needed to ensure transparency, including: the commitment of the national authorities and the parties to a peace agreement or political framework to honour the agreements they have signed and implement DDR programmes in good faith; the accountability and transparency of all relevant actors in contexts where the preconditions for DDR are not in place and alternative DDR-related tools and rein- tegration support measures are implemented; the accountability of national and international implementing agencies to the five categories of persons who can become participants in DDR for the professional and timely carrying out of activities and delivery of services; the adherence of all parts of the UN system (missions, departments, agencies, pro- grammes and funds) to IDDRS principles and guidance for designing and imple- menting DDR; the commitment of Member States and bilateral partners to provide timely politi- cal and financial support to integrated DDR processes. Although DDR practitioners should always aim to meet core commitments, setbacks and unforeseen events should be expected. Flexibility and contingency planning are therefore needed. It is essential to establish realistic goals and make reasonable prom- ises to those involved, and to explain setbacks to stakeholders and participants in order to maintain their confidence and cooperation.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "ec58e058-59fb-40d4-83e2-954ec1288c43", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 25, + "Paragraph": "8.7. Nationally and locally owned Ensuring national and local ownership is crucial to the success of integrated DDR. Na- tional ownership ensures that DDR programmes, DDR-related tools and reintegration support are informed by an understanding of the local context, the dynamics of the conflict, and the dynamics between ex-combatants and community members. Even when receiving financial and technical assistance from partners, it is the responsibility of national Governments to ensure coordination between government ministries and local government, between Government and national civil society, and between Gov- ernment and external partners. In contexts where national capacity is weak, a Government exerts national own- ership by building the capacity of its national institutions, by contributing to the inte- grated DDR process and by creating links to other peacebuilding and development ini- tiatives. This is particularly important in the case of reintegration support, as measures should be designed as part of national development and recovery efforts. National and local capacity must be systematically developed, as follows: Creating national and local institutional capacity: A primary role of the UN is to supply technical assistance, training and financial support to national authorities to establish credible, capable, representative and sustainable national institutions and programmes. Such assistance should be based on an assessment and under- standing of the particular context and the type of DDR activities to be implement- ed, including commitments to gender equality. Finding implementing partners: Besides national institutions, civil society is a key partner in DDR. The technical capacity and expertise of civil society groups will often need to be strengthened, particularly when conflict has diminished hu- man and financial resources. Particular attention should be paid to supporting the capacity development of women\u2019s civil society groups to ensure equal participa- tion as partners in DDR. Doing so will help to create a sustainable environment for DDR and to ensure its long-term success. Employing local communities and authorities: Local communities and authorities play an important role in ensuring the sustainability of DDR, particularly in sup- port of reintegration and the implementation of DDR-related tools. Therefore, their capacities for strategic planning and programme and/or financial management must be strengthened. Local authorities and populations, ex-combatants and their dependents/families, and women and girls formerly associated with armed forces and groups shall all be involved in the planning, implementation and monitoring of integrated DDR processes. This is to ensure that the needs of both individuals and the community are addressed. Increased local ownership builds support for reintegration and reconciliation efforts and supports other local peacebuilding and recovery processes. As the above list shows, national ownership involves more than just central gov- ernment leadership: it includes the participation of a broad range of State and non-State actors at national, provincial and local levels. Within the IDDRS framework, the UN supports the development of a national DDR strategy, not only by representatives of the various parties to the conflict, but also by civil society; and it encourages the active participation of affected communities and groups, particularly those formerly mar- ginalized in DDR and post-conflict reconstruction processes, such as representatives of women\u2019s groups, children\u2019s advocates, people from minority communities, and per- sons with disabilities and chronic illness. In supporting national institutions, the UN, along with key international and re- gional actors, can help to ensure broad national ownership, adherence to international principles, credibility, transparency and accountability (see IDDRS 3.30 on National Institutions for DDR).", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d5458cb5-2f8b-4b29-a8f1-72641cb4a0bb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 26, + "Paragraph": "8.8 Regionally supported The regional causes of conflict and the political, social and economic interrelationships among neighbouring States sharing insecure borders will present challenges in the implementation of DDR. Managing repatriation and the cross-border movement of weapons and armed groups requires careful coordination among UN agencies and regional organizations supporting DDR, both in the countries concerned and in neigh- bouring countries where there may be spill-over effects. The return of foreign former combatants and mercenaries may be a particular problem and will require a separate strategy (see IDDRS 5.40 on Cross-Border Population Movements). Most notably, UN actors need to engage regional stakeholders in order to foster a conducive regional environment, including support from neighbouring countries, for DDR interventions addressing armed groups operating on foreign national territory and with regional structures.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f0704d8f-39ae-4279-998b-582a9b9965b6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 8, + "Paragraph": "Integrated From the earliest assessment phase and throughout all stages of strategy development, planning and implementation, it is essential to encourage integration and unity of effort within the UN system and with national players. It is also important to coordinate the participation of international partners so as to achieve common objectives. Joint assess- ments and programming are key to ensuring that DDR programmes in both mission and non-mission contexts are implemented in an integrated manner. DDR practitioners should also strive for an integrated approach in contexts where DDR programmes are used in combination with DDR-related tools, and in settings where the preconditions for DDR programmes are absent (see IDDRS 3.10 on Integrated Planning).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6a3355cd-a33a-4e0a-8b08-0fedf1a60c3e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 27, + "Paragraph": "Safety and security Given that DDR is aimed at groups who are a security risk and is implemented in fragile security environments, both risks and operational security and safety proto- cols should be decided on before the planning and implementation of activities. These should include the security and safety needs of UN and partner agency personnel in- volved in DDR operations, DDR participants (who will have many different needs) and members of local communities. Security and other services must be provided either by UN military and/or a UN police component or national police and security forces. Security concerns should be included in operational plans, and clear criteria, in line with the UN Programme Criticality Framework, should be established for starting, delaying, suspending or cancelling activities and/or operations, should security risks be too high.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "58749023-5d2c-4c5c-b178-3b7f20fcfeab", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 27, + "Paragraph": "Planning: assessment, design, monitoring and evaluation Integrated DDR processes shall be designed on the basis of detailed quantitative and qualitative data. Supporting information management systems should ensure that this data remains up to date, accurate and accessible. In the planning stages, information is gathered on the location of armed forces and groups, the demographics of their mem- bers (grouped according to sex and age), their weapons stocks, and the political and conflict dynamics at national and local levels. Surveys of national and local labour market conditions and reintegration opportunities should be undertaken. Regularly updating this information, as well as population-specific surveys (e.g., with women associated with armed forces and groups), allows for DDR to adapt to changing circumstances (also see IDDRS 3.10 on Integrated Planning, IDDRS 3.20 on DDR Programme Design and IDDRS 3.30 on National Institutions for DDR). Internal and external monitoring and evaluation mechanisms must be established from the start to strengthen accountability within integrated DDR, ensure quality in the implementation and delivery of DDR activities and services, and allow for flexi- bility and adaptation of strategies and activities when required. Monitoring and eval- uation should be based on an integrated approach to metrics, and produce lessons learned and best practices that will influence the further development of IDDRS policy and practice (see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "686364a2-dcd4-42b4-b32a-da7bde5a4960", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 27, + "Paragraph": "Public information and community sensitization Public information, awareness-raising and community sensitization ensure that affected communities and participants receive accurate information on DDR procedures and benefits. The sharing of information helps generate broad public support and national ownership, and at the same time manages expectations and encourages behavioural change, the demilitarization of hearts and minds, and reconciliation between ex-com- batants and war-affected communities. Public information strategies should be drawn up and implemented as early as possible. Messages should be appropriately tailored for different audiences, considering gender and cultural dimensions in design and de- livery, and should employ many different and locally appropriate means of communi- cation (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7d6b6141-f14a-4391-a1c9-0c0fd2fbfaf2", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.10-The-UN-Approach-To-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.10-The-UN-Approach-To-DDR", + "PageNum": 28, + "Paragraph": "Transition and exit strategies While DDR programmes last for a specific period of time that includes the immediate post-conflict situation and the transition and early recovery periods, other aspects of DDR may need to be continued, albeit in a different form. DDR-related tools can be initiated after DDR programmes, such as when the disarmament of armed groups is followed by community-based weapons and ammunition management. Reintegration assistance also becomes an integral part of recovery and development. To ensure a smooth transition from one stage to another, an exit strategy should be defined as soon as possible, and should focus on how integrated DDR will seamlessly transform into broader and/or longer-term development strategies, such as security sector reform, violence prevention, socio-economic recovery, national reconciliation, peacebuilding, gender equality and poverty reduction.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d95a3f56-3a62-44ab-a6ab-b08db0c34583", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": null, + "Paragraph": "Summary The reintegration of ex-combatants and persons formerly associated with armed forces and groups is a long-term process with social, economic and political dimensions. It may be influenced by factors such as the choices and capacities of individuals to shape a new life, the security situation and perceptions of security, family and support net- works, and the psychological well-being and mental health of ex-combatants and the wider community. Reintegration processes are part of the development of a country. Facilitating reintegration is therefore primarily the responsibility of national Govern- ments and their institutions, with the international community playing a supporting role if requested. Efforts to support the transition of ex-combatants and persons formerly associated with armed forces and groups into civilian life have typically taken place as part of post-conflict DDR programmes. During DDR programmes assistance is often given collectively, to large numbers of DDR participants and beneficiaries, as part of the im- plementation of a Comprehensive Peace Agreement (CPA). However, when the precon- ditions for a DDR programme are not in place, reintegration support can still play an important role in sustaining peace. The twin UN resolutions on the 2015 peacebuilding architecture review, General Assembly resolution 70/262 and Security Council resolu- tion 2282, recognize that efforts to sustain peace are necessary at all stages of conflict. This renewed UN policy engagement emerges from the need to address ongoing armed conflicts that are often protracted and complex. In these settings, individuals may exit armed forces and groups during all phases of an armed conflict. This type of exit will often be individual and can take different forms, including voluntary exit or capture. In order to support and strengthen the foundation for sustainable peace, the reintegration of ex-combatants and persons formerly associated with armed forces and groups should not only be supported after an armed conflict has ended. Instead, reintegration support should be considered at all times, even in the absence of a DDR programme. This support may include the provision of assistance to those who return to peaceful areas of the conflict-affected country, and to those who return to peaceful countries of origin, in the case of foreign fighters. When reintegration support is provided during ongoing conflict, it should aim to strengthen resilience against re-recruitment and also to prevent additional first-time recruitment. To do this it is important to strengthen what still works, including the residual capacities for peace that people and communities draw on in times of conflict. The strengthening of peace capacities can be based on the identification of the rea- sons why some individuals do not join armed groups, and why some combatants leave armed groups and turn away from armed violence. There will be additional challenges when supporting reintegration during on- going conflict. Support to reintegration as part of sustaining peace requires analysis of the intended and unintended outcomes precipitated by engagement in dynamic, conflict-affected environments. DDR practitioners and others involved in the provision of reintegration support should understand how engagement in such contexts has im- plications for social relations/dynamics \u2013 positive and negative \u2013 so as to \u2018do no harm\u2019 and, in fact, \u2018do good\u2019. It should also be recognized that the risk of doing harm is greater in ongoing conflict contexts, thereby demanding a higher level of coordination among existing and planned programmes to avoid the possibility that they may negatively affect each other. In order to support the humanitarian-development-peace nexus, rein- tegration programme coordination should extend to broader programmes and actors.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "68d0f3d3-8808-4e57-926d-32f27415244b", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 3, + "Paragraph": "Module scope and objectives This module explains the shift introduced by IDDRS 2.10 on The UN Approach to DDR concerning reintegration support to ex-combatants and persons formerly associated with armed forces and groups. Reintegration support has long been presented as a component of post-conflict DDR programmes, i.e., DDR programmes supported when the following preconditions are in place: The signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; Trust in the peace process; Willingness of the parties to the armed conflict to engage in DDR; and A minimum guarantee of security. The revised UN Approach to DDR recognizes the need to provide reintegration support even when the above preconditions are not in place. The aim of this support is to assist the sustainable reintegration of those who have left armed forces and groups even before peace agreements are negotiated and signed, responding to opportunities as well as humanitarian, developmental and security imperatives. The objectives of this module are to: Explain the implications of the UN\u2019s sustaining peace approach for reintegration support. Provide policy guidance on how to address reintegration challenges and realize reintegration opportunities across the peace continuum. Consider the general issues concerning reintegration support in contexts where the preconditions for DDR programmes are not in place. DDR practitioners involved in outlining and negotiating the content of reintegra- tion support with Governments and other stakeholders are invited to consult IDDRS 4.30 on Reintegration for specific programmatic guidance on the various ways to sup- port reintegration. Options and considerations for reintegration support to specific needs groups can be found in IDDRS 5.10 on Women, Gender and DDR; IDDRS 5.20 on Children and DDR; and IDDRS 5.30 on Youth and DDR. Finally, as reintegration support may involve a broad array of practitioners (including but not limited to \u2018DDR practitioners\u2019), when appropriate, this module refers to DDR practitioners and others involved in the planning, implementation and man- agement of reintegration support.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9d800a04-79fe-4ba5-aa5a-0f96f6a82664", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Reintegration is the process by which ex-combatants acquire civilian status and gain sustainable employment and income. Reintegration is essentially a social and economic process with an open time frame, primarily taking place in communities at the local level. It is part of the general development of a country and a national responsibility and often necessitates long-term external assistance. Recognizing new developments in the reintegration of ex-combatants and as- sociated groups since the release of the 2005 note on administrative and budgetary aspects of the financing of UN peacekeeping operations (A/C.5/59/31), the third report of the Secretary-General on DDR (A/65/741), issued in 2011, includes revised policy and guidance. It observes that, \u201cin most countries, economic aspects, while central, are not sufficient for the sustainable reintegration of ex-combatants. Serious consideration of the social and political aspects of reintegration\u2026is [also] crucial for the sustainability and success of reintegration programmes\u201d, including psychosocial and psychological support, clinical mental health care and medical health support, as well as reconciliation, access to justice/transitional justice and participation in political processes. Addition- ally, the report emphasizes that while \u201creintegration programmes supported by the United Nations are time-bound by nature\u2026the reintegration of ex-combatants and associated groups is a long-term process that takes place at the individual, community, national and regional levels, and is dependent upon wider recovery and development.\u201d Sustaining peace approach: UN General Assembly resolution 70/262 and UN Security Council resolution 2282 on sustaining peace outline a new approach for peace- building. These twin resolutions demonstrate the commitment of Member States to strengthening the United Nations\u2019 ability to prevent the \u201coutbreak, escalation, contin- uation and recurrence of [violent] conflict\u201d, and \u201caddress the root causes and assist parties to conflict to end hostilities\u201d. Sustaining peace should be understood as encom- passing not only efforts to prevent relapse into conflict, but also to prevent lapse into conflict in the first place. Humanitarian-development-peace nexus: Humanitarian, development and peace actions are linked. The nexus approach refers to the aim of strengthening collaboration, coherence and complementarity. The approach seeks to capitalize on the comparative advantages of each sector \u2013 to the extent that they are relevant in a specific context \u2013 in order to reduce overall vulnerability and the number of unmet needs, strengthen risk management capacities and address the root causes of conflict. Resilience: Resilience refers to the ability to adapt, rebound, and strengthen function- ing in the face of violence, extreme adversity or risk. For the purposes of the IDDRS, with a particular focus on reintegration processes, it refers to the ability of ex-com- batants and persons formerly associated with armed forces and groups to withstand, resist and overcome the violence and potentially traumatic events experienced in an armed force or group when coping with the social and environmental pressures typ- ical of conflict and post-conflict settings and beyond. The acquisition of social skills, emotional development, academic achievement, psychological well-being, self-esteem, coping mechanisms and attitudes when faced with stress and recovery from potential- ly traumatic events are all factors associated with resilience. Vulnerability: In the IDDRS, vulnerability is a result of exposure to risk factors, and of underlying socio-economic processes which reduce the capacity of populations to cope with risks. In the context of reintegration, vulnerability therefore refers to those factors that increase the likelihood that ex-combatants and persons formerly associated with armed forces and groups will be affected by violence, resort to it, or be drawn into groups that perpetrate it.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6c75631d-5021-4267-b56e-fae6911dddcf", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to reinte- gration:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "82c4493d-94ad-4724-b6bf-2bd910853ee6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 5, + "Paragraph": "Criteria for participation/eligibility When there is a DDR programme, eligibility shall be defined within a national DDR programme document. Different groups of those eligible will participate in each com- ponent of the DDR programme: combatants and persons associated with armed groups carrying weapons and ammunition shall participate in disarmament. In addition to these groups, all other unarmed individuals considered members of an armed force or group shall participate in demobilization. Reintegration support should be provided not only to ex-combatants, but also to persons formerly associated with armed forces and groups, including women and children among these categories, and, where appro- priate, dependants and host community members. When the preconditions for a DDR programme are not present, or when combatants are ineligible to participate in DDR programmes, eligibility for reintegration support shall be decided by relevant nation- al and local authorities, with support, where appropriate, from relevant UN mission entities as well as UN agencies, programmes and funds. Eligibility for reintegration support in such cases should also take into account ex-combatants and persons formerly associated with armed forces and groups, including women, and, where appropriate, dependants and host community members. Children associated or formerly associated with armed groups should always be encouraged to participate in DDR processes with no eligibility limitations.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dcfdceca-6643-46df-ab97-ef542e13ccb0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 6, + "Paragraph": "3.2.2 Unconditional release and protection of children Children who were recruited by armed groups may have experienced significant harm and have specific needs. Furthermore, children who joined or supported armed forces or groups may have done so under duress, coercion or manipulation. For many children and youth who have been associated with armed forces or groups, the focus should be on reintegration and highlighting their self-worth and their ability to contribute to society, as well as offering alternatives to participation in armed groups in the form of training and education. At the same time, opportunities should be provided to other children and youth in the area, so as not to create tension or stigma. The following principles regarding reintegration support to children and youth apply: Children shall be treated as children and, if they have been associated with armed forces or groups, as survivors of violations of their rights. They shall always be referred to as children. In any decision that affects children, the best interests of the child shall be a pri- mary consideration. International legal standards pertaining to children shall be applied. States shall engage children\u2019s families to support rehabilitation and reintegration. In accordance with standards and principles of humanitarian assistance Efforts shall be made to ensure that serious violations of human rights and humani- tarian law by ex-combatants and persons formerly associated with armed forces and groups are dealt with through appropriate national and international legal and/or transitional justice mechanisms (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.20 on Transitional Justice and DDR). Mechanisms shall also be designed and included in reintegration programmes to prevent those who have committed violations of human rights from going unpunished. In addition, where appropriate, community-based reintegration programmes shall explore opportunities to contribute to reparations for victims.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b9b9cfce-24e3-4979-b8dc-03ac35d979c1", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 7, + "Paragraph": "Gender-responsive and inclusive Non-discrimination and fair and equitable treatment of participants and beneficiaries are core principles of the UN\u2019s involvement in reintegration support. Differences exist among the people who benefit from reintegration support \u2013 which include, but are not limited to, sex, age, class, religion, gender identity, and physical, intellectual, psychosocial and social capacities \u2013 all of which require specific responses. Reintegration support shall therefore be based on the thorough profiling of ex-combatants and persons formerly associated with armed forces and groups, as well as assessments of the social, economic, political and cultural contexts into which they are reintegrated, in order to support specific needs. In general, individual reintegration support shall shift focus from uni- form entitlements provided to individuals with the status of ex-combatants or persons formerly associated with armed forces and groups. Instead, reintegration support shall aim to fulfil specific needs and harness individual capacities. Gender refers to the socially constructed attributes and opportunities associated with being male or female and the relationships between and among women, men, girls and boys, in a certain sociocultural context (see IDDRS 5.10 on Women, Gender and DDR). Gender-responsive reintegration programmes shall be planned, implemented, monitored and evaluated in a manner that meets the different needs of female and male ex-combatants, supporters and dependents. Understanding and addressing gender always requires careful analysis, looking into the responsibilities, activities, interests and priorities of women and men, and how their experiences of problems may differ. Planning for reintegration support shall therefore be based on sex-disaggregated data so that reintegration programmes can identify the specific needs and potential of women, men, boys and girls. These needs may include, among others, access to land, child- care facilities, property and livelihoods, resources and rehabilitation following sexual violence, and support to overcome socialization to violence and substance abuse. In some cases, women may have \u2018self-demobilized\u2019 or been excluded from DDR programmes by military commanders (see IDDRS 4.20 on Demobilization). When this happens, and if women so choose, efforts should be made to provide them with access to the reintegration programme. Female-specific reintegration programmes may also be created to address these women. To implement gender-responsive reintegration programmes, UN and Government programme staff, implementing partners and other stakeholders should receive training in gender-sensitive approaches and good practices, as well as other capacity-building support. Gender-sensitivity requires that the monitoring and evaluation framework for reintegration support shall include gender-related indicators and specific assessments on gender. Reintegration programmes shall ensure specific funding for such initiatives and shall work to monitor and evaluate their gender appropriateness.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "bca17ffc-b591-43c6-8afd-fd63fda8d252", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 7, + "Paragraph": "Conflict sensitive A conflict-sensitive approach involves ensuring a sound understanding of the two-way interaction between activities and context, and acting to minimize the negative impacts and maximize the positive impacts of intervention on conflict, within an organization\u2019s given mandate. The first principle that is usually applied in a conflict-sensitive ap- proach is do no harm; however, conflict sensitivity goes beyond this. To do no harm and to support local capacities for peace requires: An awareness of both the intended and unintended consequences of reintegration programming; Analysis of the conflict context and the programme, examining how reintegration support interacts with the conflict; A willingness to adapt, create options and, if needed, redesign programmes to improve quality; Careful reflection on staff conduct and organizational policies, to ensure that the behaviour of individuals and organizations meets the highest standards of ethics and professionalism. Conflict analysis and risk mitigation measures shall be applied as key components of a conflict sensitivity approach, as well as integrated into monitoring and evaluation processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "fe988268-b89b-4eca-9ec5-95a6b4ff0459", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 8, + "Paragraph": "Context specific Planning for the effective and sustainable reintegration of ex-combatants and persons for- merly associated with armed forces and groups shall be based, among other aspects, on a comprehensive understanding of the local context. In settings where there is no ceasefire and/or peace agreement, the ex-combatant status of those who \u2018self-demobilize\u2019 may be un- clear. Where feasible, DDR practitioners should work to clarify the status of ex-combatants through the establishment of a clear framework. However, where this is not feasible, the status of ex-combatants must still be analysed, at the programme level, in order to ensure that rein- tegration support is not provided to individuals who are active members of armed groups.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d70ffc3c-b606-404d-ac77-1d753b8129ee", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 8, + "Paragraph": "Flexible To respond to contextual changes and remain relevant, reintegration support shall be designed in a way that allows for adaptability. While the design of a reintegration pro- gramme is based on initial assessments, it is also important to note that many contex- tual factors will change significantly during the course of the programme, such as the wishes and ambitions of ex-combatants and persons formerly associated with armed forces and groups, the labour market, the capacities of service providers, the capacities of different Government bodies, and the agendas of political parties and leaders in power. Furthermore, new or broader recovery plans may be designed during the time frame of the reintegration programme, to which the latter should be linked. The need for flexibility will be particularly acute in ongoing conflict settings where the risks of doing harm, including inadvertently fuelling recruitment to active armed groups, must be carefully assessed. A flexible approach should allow for the early identification of these risks and the development of risk mitigation strategies. It is important to note that, despite the benefits of a flexible approach, providing ad hoc reintegration support can be problematic. One of the challenges is to provide clar- ity to ex-combatants, persons formerly associated with armed forces and groups, and broader communities early on about the reintegration support to be provided and the benefits and eligibility criteria involved, while on the other hand maintaining sufficient flexibility in the programme to be able to respond to changing needs and circumstances.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "f6cb8572-48ec-4c77-a6a1-ae70949b4ec3", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 9, + "Paragraph": "Accountable and transparent Reintegration support shall be based on the principles of accountability and transpar- ency. Public information and communications strategies and policies shall therefore be drawn up and implemented as early as possible. Public information allows affected participants and beneficiary groups to receive accurate information on the principles and procedures of reintegration support. Efforts to provide public information and sensitization concerning reintegration efforts may also benefit from collaboration with women\u2019s and men\u2019s organizations to address gender-specific needs (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Reintegration support measures and expected results shall be reflected in key in- dicators. Defining indicators in a participatory manner helps to clarify expectations and contributes to a broad consensus on realistic targets. Individuals or organizations responsible for monitoring shall also be agreed upon, as well as how frequently moni- toring reports should be produced. Relevant entities of the UN system shall remain transparent vis-\u00e0-vis the Govern- ment and its institutions in regard to activities and plans in support of reintegration, particularly if not fully agreed upon in advance.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "21f7be2e-404d-4292-b093-e70695522871", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 9, + "Paragraph": "Nationally and locally owned Reintegration support provided by the UN system shall be based on a partnership with the national authorities and other stakeholders. The primary responsibility for the reintegration strategy and policy, as well as the successful outcome of the programme, rests with national authorities and their local institutions. UN support to reintegration programmes shall include efforts to develop the capacities of receiving communities and local and national authorities. UN-supported DDR processes may take place when a recently established Government is still finding a political balance between (remnants of) the previously combating parties, which could include members of the Government itself (see IDDRS 2.20 on The Politics of DDR). The national institutions in charge of reintegration support may operate in a fluid political environment, which may include regular changes in institutional set-up and personnel. In these settings, international actors shall not act as substitutes for national authorities in programme management and implementation, but rather, shall put forth all efforts to strengthen those national institutions that are managing reintegration support. The success of reintegration programmes depends on the combined efforts of individuals, families and supporting communities to identify and work towards their own solutions. Reintegration should be led and implemented by community members themselves \u2013 with support from external actors where needed. The community-based approach begins with community sensitization during the earliest phases of the reinte- gration programme, to gain community inputs and consider the dynamics of the con- flict. To the extent possible, all reintegration support should be linked to existing social services and protection networks, while bolstering the capacities of existing systems. Therefore, reintegration programmes shall be designed through an inclusive par- ticipatory process involving ex-combatants, persons formerly associated with armed forces and groups, community representatives, local and national authorities, and non-governmental actors in planning and decision-making from the earliest stages. Buy-in from key members of armed forces and groups shall be a priority of the reinte- gration programme, and shall be achieved in collaboration with the national Govern- ment and other key stakeholders in accordance with UN principles and mandates.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9bdd2269-4310-44f6-b1e0-1757865dbfd1", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 10, + "Paragraph": "Regionally supported In some contexts there may be regional dimensions to reintegration support, such as cross-border flows of small arms and light weapons (SALW); trafficking in natural resources as a source of revenue; cross-border recruitment, including of children; and the repatriation and reintegration of foreign ex-combatants in their countries of origin. The design of a reintegration programme shall therefore consider the regional level in addition to the individual, community and national levels (see IDDRS 5.40 on Cross-Border Population Movements).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "14d64de1-1163-4040-826e-7389c912ab33", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 10, + "Paragraph": "Integrated Reintegration both influences and is affected by wider recovery, peacebuilding and state transformational processes. Therefore, reintegration programmes shall work collaboratively with other programmes and stakeholders in order to achieve policy coherence, sectoral programme integration, and UN inter-agency cooperation and coordination throughout design and implementation. In addition, the use of technical working groups, donor forums, and rapid response modalities shall be used to further integrate efforts in the area of reintegration support. Relevant line ministries shall also receive appropriate support from reintegration programmes to ensure that the rein- tegration of ex-combatants and persons formerly associated with armed forces and groups will be sustainable and in alignment with other national and local plans.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "d2b298f7-d0c8-4532-b581-b7f4690d9909", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 10, + "Paragraph": "Well planned Planning should consider that the reintegration of ex-combatants and persons formerly associated with armed forces and groups is a long-term process, in some contexts taking several years to be successfully and sustainably completed with family support at the community level. A well-planned reintegration programme shall be based on a comprehensive understanding of the type of armed force and/or group(s) to which the individual belonged, the duration of his or her membership with the armed force and/ or armed group(s), as well as the local context and community dynamics. Furthermore, a well-planned reintegration programme requires clear agreement among all stake- holders on the objectives and results of the programme, the establishment of realistic time frames, clear budgetary requirements and human resource needs, and a clearly defined exit strategy. Planning shall be based on existing assessments that include conflict and develop- ment analyses, gender analyses, early recovery and/or post-conflict needs assessments, and reintegration-specific assessments. Those involved in the design and negotiation of reintegration support with Government and other relevant stakeholders shall ensure that a results-based monitoring and evaluation framework is developed during the planning phase and that sufficient resources and expertise are allocated for this task at the outset. A well-planned reintegration programme shall assess and respond to the needs of its participants and beneficiaries through gender-specific planning. Planning shall be done in close collaboration with related programmes and initiatives. Although long- term planning is required, it shall still allow for a degree of flexibility (see section 3.6). Those involved in planning for reintegration support shall work in an integrated manner with those planning disarmament and demobilization in order to ensure smooth tran- sitions. DDR practitioners shall not make promises regarding reintegration support during disarmament and demobilization that cannot be delivered upon.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9cc1d3c9-adc6-4e24-82ce-2f14159c2f54", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 4, + "Paragraph": "Reintegration as part of sustaining peace The reintegration of ex-combatants and persons formerly associated with armed forces and groups is a long-term process with social, economic, political and security dimen- sions. It may be influenced by factors such as the choices and capacities of individuals to shape a new life, the security situation and perceptions of security, family and sup- port networks, and the psychological well-being of combatants and the wider commu- nity. Reintegration processes are part of the development of a country. Facilitating re- integration is therefore primarily the responsibility of national Governments and their institutions, with the international community playing a supporting role if requested. Supporting ex-combatants and persons formerly associated with armed forces and groups to sustainably reintegrate into civilian life is seen as the most complex part of the DDR process in both mission and non-mission contexts. Ex-combatants and those formerly associated with armed forces and groups find themselves, willingly or not, separated from command structures and support networks. The conflict-affected communities to which these individuals return are often characterized by weakened governance, lack of social cohesion, damaged economies and insecurity. In some in- stances, individuals may re-enter societies and communities that are unfamiliar to them, and which have been significantly affected by extended periods of conflict. The acceptance of ex-combatants and persons formerly associated with armed forces and groups by receiving commu- nities is essential and is linked to per- ceptions of fair treatment, including to- wards victims, ex-combatants and other conflict- affected groups. Reintegration support can be pro- vided to address different elements of the reintegration process, ranging from socioeconomic challenges to the psycho- social aspects of reintegration. Support can also be provided in order to mitigate destabilizing factors, such as social ex- clusion and stigmatization, the harmful use of alcohol and drugs and other phys- ical and psychosocial trauma, political disenfranchisement and insecurity. A robust and evidence-based theory of change should underpin the contribution of reintegra- tion support to the overall reduction of armed violence sought by Sustainable Develop- ment Goal 16. This will allow those working on reintegration support, across different institutions and with different programming approaches, to identify the collective out- comes that reintegration programmes are aiming to achieve. The various types of re- integration support and the different modalities of its provision are outlined in IDDRS 4.30 on Reintegration. It should be noted, however, that the support provided by a rein- tegration programme should not be expected to match the breadth, depth or duration of individual reintegration processes, nor the longer-term recovery and development process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dce2a87c-6de3-47d4-b1e9-c8b3c4fba5fd", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 12, + "Paragraph": "The Sustaining Peace Approach Reintegration support can play an important role in sustaining peace, even when a peace agreement has not yet been negotiated or signed. The twin UN resolutions on the 2015 peacebuilding architecture review, General Assembly resolution 70/262 and Security Council resolution 2282, recognize that efforts to sustain peace are necessary at all stages of conflict. Therefore, in order to support, and strengthen, the foundation for sustainable peace, the reintegration of ex-combatants and persons formerly associated with armed forces and groups should not only be supported after an armed conflict has ended. As individuals may leave armed forces and groups during all phases of armed conflict, the need to support them should be considered at all times, even in the absence of a DDR programme. This may mean providing support to those who return to peace- ful areas of the conflict-affected country, and to those who return to peaceful countries of origin, in the case of foreign fighters. As part of the sustaining peace approach, support to reintegration should be designed and carried out to contribute to dynamics that aim to prevent future recruitment. In this regard, opportunities should be seized to prevent relapse into armed conflict, including by tackling root causes and understanding peace dynamics. Armed conflict may be the result of a com- bination of root causes including exclusion, inequality, discrimination and other viola- tions of human rights, including women\u2019s rights. While these challenges cannot be ful- ly addressed through reintegration support, community-based reintegration support that is well integrated into local and national development efforts is likely to contribute to addressing the root causes of conflict and, as such, contribute to sustaining peace. It is also important to strengthen what still works, including the residual capacities for peace that people and communities draw on in times of conflict. Sustaining peace seeks to reclaim the concept of peace in its own right, by acknowledging that the exist- ing capacities for peace, i.e., the structures, attitudes and institutions that sustain peace, should be strengthened not only in situations of conflict, but even in peaceful settings. This strengthening of peace capacities can be based on the identification of the rea- sons why some individuals do not join armed groups, and why some combatants leave armed groups and turn away from armed violence. Inclusion is also an important part of reintegration support as part of the sustaining peace approach. Exclusion and marginalization, including gender inequalities, are key drivers of violent conflict. Community-owned and -led approaches to reintegration support that are inclusive and integrate a gender perspective, specifically addressing the needs of women, youth, disabled persons, ethnic minorities and indigenous groups have a positive impact on a country\u2019s capacity to manage and avoid conflict, and ulti- mately on the sustainability of peace processes. Empowering the voices and capacities of women and youth in the planning and design of reintegration programmes contrib- utes to addressing conflict drivers, socioeconomic and gender inequalities, and youth disenchantment. Additionally, given that national-level peace processes are not always possible, opportunities to leverage reintegration support, particularly around social cohesion through local peace processes between groups and communities, can be sought through local governance initiatives, such as participatory budgeting and planning. The UN\u2019s sustaining peace approach calls for the breaking of operational silos. The joint analysis, planning and management of ongoing programmes helps to ensure the sustainability of collectively defined reintegration outcomes. This process also serves as an entry point for innovative partnerships and the contextually anchored flexible ap- proaches that are needed. For effective reintegration support as part of sustaining peace, it is essential to draw on capacities across and beyond the UN system in support of local and national authorities. DDR practitioners and others involved in developing and managing this support should recognize that community authorities may be the frontline respond- ers who lay the foundation for peace and development. Innovative financing sources and partnerships should be sought, and funding partners should pay particular attention to increasing, restructuring and prioritizing the financing of reintegration support. In light of the above, reintegration support as part of sustaining peace should focus on: The enhancement of capacities for peace. The adoption of a clear definition of reintegration outcomes within the humanitar- ian-development-peace nexus, recognizing the strong interconnectedness between and among the three pillars. Efforts to actively break out of institutional silos, eliminating fragmentation and contributing to a comprehensive, coordinated and coherent DDR process. The application of a gender lens to all reintegration support. The rationale is that men and women, boys and girls, have differentiated needs, aspirations, capacities and contributions. The importance of strengthening resilience during reintegration support. Indi- viduals, communities, countries and regions lay the foundations for resilience to stresses and shocks associated with insecure environments through the develop- ment of local and national development plans, including national action plans on UN Security Council Resolution 1325. The consistent implementation of monitoring and evaluation across all phases of the peace continuum with a focus on cross-sectoral approaches that emphasize collective programming outcomes. The development of innovative partnerships to achieve reintegration as part of sustaining peace, based on whole-of-government and whole-of-society approaches, in- volving ex-combatants, persons formerly associated with armed forces and groups and their families, as well as receiving communities. The engagement of the private sector in the creation of economic opportunities, fostering capacities of local small and medium-sized enterprises, as well as involv- ing international private-sector investment in reintegration opportunities, where appropriate. For reintegration programmes to play their role in sustaining peace effectively, DDR practitioners and others involved in the planning and implementation of reinte- gration support should ensure that they: Have a shared understanding of the drivers of a specific conflict, as well as the risks faced by individuals who are reintegrating and their receiving communities and countries; Conduct joint analysis and monitoring and evaluation allowing for the development of strategic approaches that can strengthen peace and resilience; Align with the women, peace and security agenda, ensuring that gender consider- ations are front and centre in reintegration support; Have a shared understanding of the importance of youth in all efforts towards peace and security; Foster collective ownership by local authorities and other stakeholders that is anchored in local and national development plans \u2013 the international community shall play a supporting role and avoid creating parallel structures; Create the long-term partnerships necessary for sustaining peace through the development of local institutional capacity, adaptive programming that is respon- sive to the context, and adequate human and financial resources. Additionally, as part of the conflict prevention and peacebuilding agenda, rein- tegration processes should be linked more deliberately with development program- ming. For instance, the 2030 Agenda for Sustainable Development provides a universal, multi- stakeholder, multi-sector set of goals adopted by all UN Member States in 2015. The Agenda includes 17 sustainable development goals (SDGs) covering poverty, food security, education, health care, justice and peace for which strategies, policies and plans should be developed at the national level and against which progress should be measured. The human and economic cost of armed conflict globally requires all stakeholders to work collaboratively in supporting Member States to achieve the SDGs; with all those concerned with development providing support to prevention agendas through targeted and sustained engagement at the national and regional levels.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "50ce9afa-91dd-478f-811f-0611d766a6ec", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 14, + "Paragraph": "Reintegration support across the peace continuum Efforts to support the transition of ex-combatants and persons formerly associated with armed forces and groups into civilian life have typically taken place as part of post- conflict DDR programmes. DDR programmes are often \u2018collective\u2019 in that they address groups of combatants and persons associated with armed forces and groups through a formal and controlled programme, often as part of the implementation of a CPA. Increasingly, the UN is called upon to address security challenges that arise from situations where comprehensive political settlements are lacking and the precondi- tions for DDR programmes are not present. When conflict is ongoing, exit from armed groups is often individual and can take different forms. Those who are captured or who voluntarily leave armed groups will likely fall under the custody of authorities, such as the regular armed forces or law enforcement officials. In some contexts, how- ever, those leaving armed groups may find their way back into communities without falling into the custody of authorities. This is often the case for female ex-combatants and women formerly associated with armed forces and groups who escape \u2018invisibly\u2019 and who may be difficult to identify and reach for support. Community-based rein- tegration programmes aiming to support these groups should be based on credible information, verified through an agreed-upon mechanism that includes key actors. Local peace and development committees may play an important role in prioritizing and identifying these women. In addition, in contexts where the preconditions for DDR programmes are not in place, DDR-related tools such as community violence reduction (CVR) and transitional weapons and ammunition management (WAM) have been used along with support to mediation and transitional security measures (see IDDRS 2.20 on The Politics of DDR, IDDRS 2.30 on Community Violence Reduction and IDDRS 4.11 on Transitional Weapons and Ammunition Management). Where appropriate, early elements of reinte- gration support can be part of CVR programming, such as different types of employ- ment and livelihoods support, improvement of the capacities of vulnerable communi- ties to absorb returning ex-combatants, and investments in public goods designed to strengthen the social cohesion of communities. Reintegration as part of the sustaining peace approach is not only an integral part of DDR programmes. It also follows se- curity sector reform (SSR) where armed forces or the police are rightsized; comple- ments DDR-related tools, such as CVR, through sustainable measures; or is provided to persons formerly associated with armed groups designated as terrorist organizations by the United Nations Security Council. The increased complexity of the political and socioeconomic settings in which most reintegration support is provided does not necessarily imply that the support provided must also become more complicated. DDR practitioners and others involved in planning, managing and funding the support programme should be knowledgeable about the context and its dynamics, but also be able to prioritize the critical elements of the response. In addition to prioritization, effective support requires reliable and dedicated funding for these priority activities. It may also be important to lower (often inflated) expectations, and be realistic, about what reintegration support can deliver. Support to reintegration as part of sustaining peace requires analysis of the intended and unintended outcomes precipitated by engagement in dynamic, conflict-affected environments. DDR practitioners and all those involved in the provision of reintegra- tion support should understand how engagement in such contexts has implications for social relations/dynamics \u2013 positive and negative \u2013 so as to do no harm and, in fact, do good. In order to support the humanitarian-development-peace nexus, reintegration programme coordination should extend to broader programmes and actors. It should also be recognized that the risk of doing harm is greater in ongoing conflict contexts, which demand greater coordination among existing, and planned, programmes to avoid the possibility that they may negatively affect each other. Depending on the context and conflict analysis developed, DDR practitioners and others involved in the planning and implementation of reintegration support may determine that a potential unintended consequence of working with ex-combatants and persons formerly associated with armed forces and groups is the perceived injustice in supporting those who perpetrated violence when others affected by the conflict may feel they are inadequately supported. This should be avoided. One option is community-based approaches. Stigmatization related to programmes that prevent recruitment should also be avoided. Participants in these programmes could be seen as having the potential to become violent perpetrators, a stigma that could be particularly harmful to youth. In addition to programmed support, there are numerous non-programmatic factors that can have a major impact on whether or not reintegration is successful. Some of the key non-programmatic factors are: Acceptance in the community/society; The general security situation/perception of the security situation; The economic environment and associated opportunities; The availability of relevant basic and social services; The protection of land rights and other property rights. In conflict settings these non-programmatic factors may be particularly fluid and difficult to both analyse and adapt to. The security situation may not allow for rein- tegration support to take place in all areas. The economy may also be severely affect- ed by the ongoing conflict. Receiving communities may also be particularly reluctant to accept returning ex-combatants during ongoing conflict as they can, for example, constitute a security risk to the community. Influencing these non-programmatic fac- tors requires a broad structural approach. Providing an enabling environment and facilitating access to opportunities outside the reintegration programme may be as important for reintegration processes as the reintegration support provided through the programme. In addition, in most instances it is important to establish practical link- ages with existing employment creation programmes, business development services, psychosocial and mental health support referral systems, disability support networks and other relevant services. The implications of these non-programmatic factors could be different for men and women, especially in contexts where insecurity is high and the economy is depressed. Social networks and connections between different members and levels of society may provide these groups with the resilience and coping mecha- nisms necessary to navigate their reintegration process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "25d19a8d-0a94-40a5-8cea-8dc8cfd87fcc", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 16, + "Paragraph": "Resilience as a basis for reintegration Strengthening resilience is one of the most important aspects of supporting reinte- gration during ongoing conflict. Resilience refers to the ability to adapt, rebound and strengthen functioning in the face of violence, extreme adversity and risk. For ex-com- batants and persons formerly associated with armed forces and groups, it is related to the ability to withstand, resist and overcome the violence and potentially traumatic events experienced during armed conflict when coping with social and environmental pressures. Resilience also refers to the capacity to withstand the pressure to rejoin a former armed group or to join a new armed group or other type of criminal organi- zation. Community resilience can also be enhanced by reintegration support, such as when this support enhances the capacity of communities to absorb ex-combatants and persons formerly associated with armed forces and groups. The acquisition of social skills, emotional development, academic achievement, psychological well-being, self-esteem, coping mechanisms and attitudes when faced with stress and recovery from trauma, including sexual violence, are all factors of re- silience. Reintegration support should therefore consider the impact of different re- silience and vulnerability factors relevant for reintegration at the individual, family, community and institutional levels (see Figure 1).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f6102c04-008d-4459-94a2-bb4891580dfa", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 17, + "Paragraph": "Reintegration support for conflict prevention Reintegration support calls for a twin approach in fostering not only \u2018negative peace\u2019 \u2013 as in mitigation strategies \u2013 but also \u2018positive peace\u2019, by addressing the root causes of armed conflict as they manifest at the local level and strengthening peace capacities at various levels. Understood in this way, reintegration support can contribute to the pre- vention of armed conflict, helping to address some of the structural issues that create or fuel the risks of conflict escalation and recurrence. For instance, by accounting for aspects related to mental health and psychosocial support, reintegration programmes can assist in building the necessary pillars needed for a \u2018positive peace\u2019 to develop. If these issues are left unaddressed, individuals may turn to negative coping mechanisms. Conflict may also lead to negative social patterns that increase the likelihood of widespread criminality and the victimization of certain groups. These negative patterns may also serve to increase vulnerability to involve- ment in armed groups and other criminal behaviour. The specific needs of women and girls formerly associated with armed forces and groups also need to be addressed, including preventing and addressing sexual and gender-based violence. Second, while some reintegration support measures focus on education, vocational skills training and income-generating opportunities, they may help to prevent conflict if aligned with and supportive of the absorption capacities of receiving communities. Situated within the humanitarian-development-peace nexus, approaches to reintegration support shall be sensitive to the fact that populations in fragile situations and subject- ed to protracted conflict experience diverse needs simultaneously \u2013 be they humani- tarian, security-related or developmental. As a result, reintegration support may only play an effective role in conflict prevention when these needs are acknowledged and addressed comprehensively. Thus, reintegration programmes can help to prevent conflict only when they account for: The motivations of individuals to engage in and leave armed groups; The criminogenic, or crime-inducing, risks present in the context that may im- pede sustained reintegration and increase vulnerability to involvement in armed groups and other criminal behaviour; Local needs and existing capacities; The strengthened resilience of individuals, families, communities and institutions to cope with adversity and to withstand violence and conflict-related pressures. Linking reintegration programmes to other elements of the DDR process strength- ens their conflict prevention potential. Reintegration programmes should to the extent possible be combined and coordinated with mediation efforts, confidence-building measures and broader conflict resolution and peacebuilding. From a conflict sensitivity angle, it is important to note that reintegration sup- port is sometimes provided later than expected, and that actual levels of support are sometimes lower than foreseen, for example, due to slow political processes, logistical constraints and/or the unavailability (or delay) of financing. It is therefore important to explicitly raise questions about the possible negative impact of waiting for reintegration support on the actual reintegration processes of ex-combatants and persons formerly associated with armed forces and groups. The following questions should be raised as soon as the negotiation and planning of reintegration support begins: Is the reintegration support foreseen realistic? Will the reintegration support be able to meet the various expectations? How will the (expected) reintegration support affect the coping strategies of ex-combatants and persons formerly associated with armed forces and groups? What are potential negative effects of reintegration support on social dynamics, power dynamics and social equity issues? How can expectations and/or misinformation concerning reintegration support be managed by the relevant Government and UN agencies, for example, through appropriate communication and risk management?", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "74499d1a-3e93-4687-8537-2838122d8cd4", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 19, + "Paragraph": "Preventing re-recruitment As part of sustaining peace, reintegration programmes should plan to contribute to dynamics that aim to prevent re-recruitment. The risk of the re-recruitment of ex-com- batants and persons formerly associated into armed groups or their engagement in criminal activity is higher where conflict is ongoing, protracted or financed through organized crime, including illicit natural resource exploitation such as mineral mining and poaching. In such war economies, licit and illicit markets may overlap, and criminal networks may constitute an attractive source of income for ex-combatants as well as provide a sense of belonging. Criminal groups could allow ex-combatants and persons formerly associated with armed forces and groups to regain or retain a social status after leaving their armed force or group, and may bridge feelings of social dislocation in receiving communities. The risk of re-recruitment or involvement in criminal activity increases in contexts where reintegration opportunities are limited and where national and local capacity is low. This is the case when ex-combatants and persons formerly associated with armed forces and groups return to areas of high insecurity, where formal and informal econ- omies lack diversity and opportunities are limited to unskilled labour, including agri- culture. The conditions in these geographical areas should therefore be considered in the design of reintegration support. Collaborating with actors that are able to influence the non-programmatic factors mentioned above can be a first step in supporting those who have decided to settle in these areas. Rejoining a former armed group or joining a new one may be a result of the real, or perceived, absence of viable alternatives to armed conflict as a means of subsistence and as an avenue for social integration and political change (see IDDRS 2.20 on The Politics of DDR). The reasons whyindividualsjoinarmedgroupsarediverseandmayincludegrievanceslinkedtosocial status, self-defence, a lack of jobs and economic opportunities, exclusion, human rights abuses and other real or perceived injustices. Risk of re-recruitment may therefore be higher in contexts where the causes of the conflict remain unresolved and grievances persist, or where there are no viable alternative livelihoods. Community receptivity to returning ex-combatants and persons formerly associated with armed forces and groups also impacts the likelihood of return to an armed group. Receptivity is likely to be lower in contexts of ongoing conflict, as returning ex-combat- ants could constitute a risk to the community. Female ex-combatants, women formerly associated with armed forces and groups, and their children potentially face additional challenges related to community receptivity, including potential stigma that can pro- foundly impact their ability to reintegrate. The length of time an individual has spent in an armed group will also influence his or her ability to adjust to civilian life and the degree to which he or she is able to build social networks and reconnect. In general, the longer an individual spent with an armed group, the more challenging his or her reintegration process is likely to be. Given this reality, the design of reintegration programmes must be based on solid gender analysis and risk management, which could include mentorships, peer learning, insti- tutional learning and relevant institutional and programmatic linkages.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "38551180-fde6-4902-aace-88d16b566634", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 20, + "Paragraph": "5.2.2. Entry points and risk mitigation In settings of ongoing conflict, it is possible that armed groups may splinter and mul- tiply. Some of these armed groups may sign peace agreements while others refuse. Reintegration support to individuals who have exited non-signatory armed groups in ongoing conflict needs to be carefully designed; risk mitigation and adherence to principles such as \u2018do no harm\u2019 shall be ensured. A full DDR programme may in such cases not be the most appropriate response (see IDDRS 2.10 on The UN Ap- proach to DDR). Based on conflict analysis and armed group mapping, DDR practi- tioners should consider direct engagement with armed groups through political negotiations and other DDR-related activities (see IDDRS 2.20 on The Politics of DDR and IDDRS 2.30 on Community Violence Reduction). The risks of such engagement should, of course, be properly assessed in advance, and along the way. DDR practitioners and others involved in designing or managing reintegration assistance should also be aware that as a result of the risks of supporting reintegration in settings of ongoing conflict, combined with a possible lack of national political will, legitimacy of governance and weak capacity, programme funding may be difficult to mobilize. Reintegration programmes should therefore be designed in a transparent and flexible manner, scaled appropriately to offer viable opportunities to ex-combatants and persons formerly associated with armed groups. In line with the shift to peace rather than conflict as the starting point of anal- ysis, programmes should seek to identify positive entry points for supporting rein- tegration. In ongoing conflict contexts, these entry points could include geographi- cal areas where reintegration is most likely to succeed, such as pockets of peace not affected by military operations or other types of armed violence. These pilot areas could serve as models for other areas to follow. Reintegration support provided as part of a pilot effort would likely set the bar for future assistance and establish expectations for other groups that may need to be met to ensure equity and to avoid negative out- comes. Additional entry points for reintegration support in ongoing conflict may be a par- ticular armed group whose members have shown a willingness to leave or are assessed as more likely to reintegrate, or specific reintegration interventions involving local economies and partners that will function as pull factors. Reintegration programmes should consider local champions, known figures to support such efforts from local government, tribal, religious and community leadership, and private and business actors. These actors can be key in generating peace dividends and building the necessary trust and support for the programme. For more detail on entry points and risks regarding reintegration support during armed conflict, see section 9 of IDDRS 4.30 on Reintegration.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "cbfa55d8-cf4a-40cd-b146-27309ca0799f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 21, + "Paragraph": "Amnesty and other special justice measures during conflict In the absence of a peace agreement, reintegration support during ongoing conflict may follow amnesty or other legal processes. An amnesty act or special justice law is usually adopted to encourage combatants to lay down weapons and report to authorities; if they do so they usually receive pardon for having joined armed groups or, in the case of common crimes, reduced sentences. These provisions may also encourage dialogue with armed groups, promote return to communities and support reconciliation through transitional justice and reparations at the community level. Ex-combatants and persons formerly associated with armed forces and groups typically receive documentation attesting to the fact that they benefitted from amnesty under these provisions and are free to rejoin their families and communities (see IDDRS 4.20 on Demobilization). To ensure that amnesty processes are successful, they should include reintegration support to those reporting to the \u2018Amnesty Commission\u2019 and/or relevant authorities. Additional Protocol II to the Geneva Conventions encourages States to grant amnesties for mere participation in hostilities as a means of encouraging armed groups to comply with international humanitarian law. It recognizes that amnesties may also help to facilitate peace negotiations or enable a process of reconciliation. However, amnesties should not be granted for war crimes, genocide, crimes against humanity and gross violations of human rights (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.20 on DDR and Transitional Justice).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c25fb112-c583-4f73-98f8-d2d2c2c543a2", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf", + "PageNum": 21, + "Paragraph": "Common challenges in supporting reintegration during conflict In summary, the following are key considerations that, in contexts of ongoing conflict, DDR practitioners and others involved in the planning, implementation and evaluation of reintegration programmes should take into account: Conflict and context analysis and assessment will be more challenging to under- take than in post-conflict settings and will need to be frequently updated. There will be increased security risks if ex-combatants and persons formerly asso- ciated with armed forces and groups: \uf06f are perceived as traitors by active members of their former group, particularly if the group is still operating in the country, across a nearby border or in the community in which the individual would like to return; become involved in providing information to military or security agencies for the planning of counter-insurgency operations; return to communities still affected by armed conflict and/or where armed groups operate. Alongside the need for constructive collaboration with military and security agencies, there will be a need to preserve the independence and impartiality of the reinte- gration programme in order to avoid the perception that the programme is part of the counter-insurgency strategy. The national stakeholders leading reintegration support could have been \u2013 or may still be \u2013 in conflict with the armed groups to which ex-combatants previously belonged. The use of case management is necessary and could include traditional chiefs or religious leaders (imams, bishops, ministers), and trained and supervised providers of mental health services as community supervision officers where appropriate. It is important to work closely with and develop common reintegration strategies with other women, peace and security actors and prevent violence against women and girls. It is important to work closely with and develop common reintegration strate- gies with programmes aiming to protect children and support the reintegration of children formerly associated with armed forces and groups. More specifically, there is a need to develop common strategies for the prevention of recruitment for youth at risk.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3cb3e539-c600-46ef-ba39-9c35ba3dd2fb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": null, + "Paragraph": "Summary Disarmament, demobilization and reintegration (DDR) is not only a technical undertaking. Many aspects of the DDR process will influence, and be influenced by, political dynamics. Understanding the political dynamics that influence DDR process- es requires knowledge of the historical and political context, the actors and stakehold- ers (armed and unarmed), and the conflict drivers, including local, national and re- gional aspects that may interact and feed into an armed conflict. Armed groups often mobilize for political reasons and/or in response to a range of security, socioeconomic or other grievances. Peace negotiations and processes provide warring parties with a way to end violence and address their grievances through peaceful means. Armed forces may also need to be factored into peace agreements and proportion- ality between armed forces and groups \u2013 in terms of DDR support \u2013 taken into account. DDR practitioners may provide support to the mediation of peace agreements and to the subsequent oversight and implementation of the relevant parts of these agree- ments. DDR practitioners can also advise mediators and facilitators so as to ensure that peace agreements incorporate realistic DDR-related clauses, that the parties have a common understanding of the outcome of the DDR process and how this will be im- plemented, and that DDR processes are not undertaken in isolation but are integrated with other aspects of a peace process, since the success of each is mutually reinforcing. All peace agreements contain security provisions to address the control and man- agement of violence in various forms including right-sizing, DDR, and/or other forms of security coordination and control. When and if a given peace agreement demands a DDR process, the national political framework for that particular DDR process is often provided by a Comprehensive Peace Agreement (CPA) that seeks to address political and security issues. Without such an agreement, warring parties are unlikely to agree to measures that reduce their ability to use military force to reach their goals. In a CPA, it is very common for DDR programmes to be tied to ceasefire provisions and \u2018final security arrangements\u2019. If armed groups have political aspirations, the chances of the successful implementation of a CPA can be improved if DDR processes are sensitively designed to support the transformation of these groups into political entities. DDR processes may also follow local-level agreements. Local politics can be as important in driving armed conflict as grievances against the State. By focusing on the latter, national-level peace agreements may not address or resolve local conflicts. Therefore, these conflicts may continue even when national-level peace agreements have been signed and implemented. Local-level peace agreements may take a number of different forms, in- cluding (but not limited to) local non-aggression pacts between armed groups, deals re- garding access to specific areas and community violence reduction (CVR) agreements. DDR practitioners should assess whether local DDR processes remain at the local level, or wheth- er local- and national-level dynamics should be linked in a common multilevel approach. Finally, DDR processes can also be undertaken in the absence of peace agreements. In these instances, DDR interventions may be designed to contribute to stabilization, to make the returns of stability more tangible or to create more conducive environments for peace agreements (see IDDRS 2.10 on The UN Approach to DDR). These interven- tions should not be reactive and ad hoc, but should be carefully planned in advance in accordance with a predefined strategy.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c544bc4b-9e82-4b0a-a4c2-5c9fe25155b6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module introduces the political dynamics of DDR and provides an overview of how to analyse and better understand them so as to develop politically sensitive DDR processes. It discusses the role of DDR practitioners in the negotiation of local and na- tional peace agreements, the role of transitional and final security arrangements, and how practitioners may work to generate political will for DDR among warring parties. Finally, this chapter discusses the transformation of armed groups into political parties and the political dynamics of DDR in active conflict settings.1", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dd72c341-c335-4189-b7b0-040cfcc05347", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardiza- tion (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifica- tions; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d34fc623-44f7-4673-b9ad-b800b0e8b9a8", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 4, + "Paragraph": "Introduction The impact of DDR on the political landscape is influenced by the context, the history of the conflict, and the structures and motivations of the warring parties. Some armed groups may have few political motivations or demands. Others, however, may fight against the State, seeking political power. Armed conflict may also be more localized, linked to local politics and issues such as access to land. There may also be complex interactions between political dynamics and conflict drivers at the local, national and regional levels. 1\tGuidance on how the designation of terrorist groups and individuals by the United Nations Security Council specifically affects the politics of DDR will be developed at a later stage. In order to support a peaceful resolution to armed conflict, DDR practitioners can support the mediation, oversight and implementation of peace agreements. Local- level peace agreements may take many forms, including (but not limited to) local non- aggression pacts between armed groups, deals regarding access to specific areas and CVR agreements. National-level peace agreements may also vary, ranging from cease- fire agreements to Comprehensive Peace Agreements (CPAs) with provisions for the establishment of a political power-sharing system. In this context, the role of former warring parties in interim political institutions may include participation in the interim administration as well as in other political bodies or movements, such as being repre- sented in national dialogues. DDR can support this process, including by helping to demilitarize politics and supporting the transformation of armed groups into political parties. DDR is not only a technical endeavour \u2013 many aspects of the DDR process will influ- ence, and be influenced by, political dynamics. For example, armed groups may refuse to disarm and demobilize until they are sure that their political demands will be met. Having control over DDR processes can constitute a powerful political position, and, as a result, groups or individuals may attempt to manipulate these processes for political gain. Furthermore, during a con- flict armed groups may become politically empowered and can challenge established political systems and structures, create alternative political arrangements or take over functions usually reserved for the State, including as security providers. Measures to disband armed groups can provide space for the restoration of the State in places where it was previously absent, and therefore can have a strong impact upon the security and political environment. The political limitations of DDR should also be considered. Integrated DDR processes can facilitate engagement with armed groups but will have limited impact unless parallel efforts are undertaken to address the reasons why these groups felt it necessary to mobilize in the first place, their current and prospective security concerns, and their expectations for the future. Overcoming these political limitations requires recognition of the strong linkages between DDR and other aspects of a peace process, including broader political arrangements, transitional justice and reconciliation, and peacebuilding activities, without which there will be no sustainable peace. Importantly, national-level peace agreements may not be appropriate to resolve ongoing local-level conflicts or regional conflicts, and it will be necessary for DDR practitioners to develop strategies and select DDR-related tools that are appropriate to each level.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1a96c5f9-b627-49af-b2ca-e048566342df", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 5, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the political dynamics of DDR:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4ce3b670-d9fa-4c34-b113-eac37e9d1508", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "People-centred A people-centred approach shall be followed. This approach must take into account the needs and positions of all stakeholders (Government, armed and unarmed opposition, the population and the international community) in a sensitive manner and seek to understand and accommodate them.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "dffe3c1e-2105-4f6b-9de6-418d825c6f4e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "Gender-responsive and inclusive DDR processes shall be gender-responsive and -inclusive, and at all stages take into account the gender dimensions of peace processes and conflict resolution. DDR practi- tioners shall advance substantive gender equality before, during and after conflict and ensure that women\u2019s diverse experiences are fully integrated into all peacebuilding, peacemaking and reconstruction processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e12866b5-0871-4cf4-bc3c-01ee0ed43843", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "Flexible, accountable and transparent Accountability, transparency and flexibility shall be maintained not only when holding stakeholders to their commitments, but also when ensuring that the process designed is appropriate for the context in which it is to be implemented.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae10441d-7be8-4137-9457-406c1d8c2748", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "Integrated It is essential to encourage unity of effort in the analysis, design and implementation of politically sensitive DDR processes. This emphasis must start with ensuring that those negotiating a peace agreement are properly advised so as to reach technically sound agreements and to integrate DDR processes with other relevant parts of the peace process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "85bb5eec-93d0-4e72-be9c-f5827ed49ec0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 6, + "Paragraph": "5.1 Contextual considerations To understand the political dynamics of DDR processes, a thorough contextual analysis is required. In mission settings, such analyses are undertaken by UN peace operations, special political missions or offices. In non-mission settings, contextual analysis forms an integral part of the United Nations Sustainable Development Cooperation Framework (UNSDCF) process. In both mission and non-mission settings, the analysis of the political dynamics of a DDR process forms just one part of a broader situational analysis. It may therefore be linked to conflict and development analysis (CDA) or other analysis that is requested/ mandatory in the UN system. The sections immediately below focus only on the contex- tual analysis of the political dynamics of DDR processes. This type of analysis should examine the following factors:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e5c2c210-3733-450b-952c-c67a8485ef54", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 7, + "Paragraph": "5.1.1. The political and historical context Understanding the political dynamics that influence DDR processes requires knowl- edge of the historical and political context. A summary of relevant factors to consider can be found in Table 1 below.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "18735b87-99d9-4e2f-88d5-e7fd1b5ad3b4", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 7, + "Paragraph": "The structures and motivations of armed forces and groups The structures and motivations of armed forces and groups should be assessed. It should be kept in mind, however, that these structures and motivations may vary over time and at the individual and collective levels. For example, certain individuals may have been motivated to join armed groups for reasons of opportunism rather than political goals. Some opportunist individuals may become progressively politicized or, alternatively, those with political motives may become more opportunist. Crafting an effective DDR process requires an understanding of these different and changing motivations. Furthermore, the stated motives of warring parties and their members may differ significantly from their actual motives or be against international law and principles. As explained in more detail in Annex B, potential motives may include one or several of the following: Political \u2013 seeking to impose or protect a political system, ideology or party. Social \u2013 seeking to bring about changes in social status, roles or balances of power, discrimination and marginalization. Economic \u2013 seeking a redistribution or accumulation of wealth, often coupled with joining to escape poverty and to provide for the family. Security driven \u2013 seeking to protect a community or group from a real or per- ceived threat. Cultural/spiritual \u2013 seeking to protect or impose values, ideas or principles. Religious \u2013 seeking to advance religious values, customs and ideas. Material \u2013 seeking to protect material resources. Opportunistic \u2013 seeking to leverage a situation to achieve any of the above. It is important to undertake a thorough analysis of armed forces and groups so as to better understand the DDR target groups and to design DDR processes that maximize political buy-in. Analysis of armed forces and groups should include the following: Leadership: Including associated political leaders or structures (see below) and other persons who may have influence over the warring parties. The analysis should take into account external actors, including possible foreign supporters but also exiled leaders or others who may have some control over armed groups. It should also consider how much control the leadership has over the combatants and to what extent the leadership is representative of its members. Both control and representativeness can change over time. Internal group dynamics: Including the balance between an organization\u2019s po- litical and military wings, interactions between prominent members or factions within an armed force or group and how they influence the behaviour of the or- ganization, internal conflict patterns and potential fragmentation, the presence of female fighters or women associated with armed forces and groups (WAAFG), gender norms in the group, and the existence and pervasiveness of sexual violence. Associated political leaders and structures: Including whether warring parties have a separate political branch or are integrated politico-military movements and how this shapes their agenda. Are women involved in political structures, and if so to what extent? Armed groups with separate political structures or a history of political engagement prior to the conflict have sometimes been more successful at transforming themselves into political parties, although this potential may erode during a prolonged conflict. Associated religious leaders: Are religious leaders or personalities associated with the armed groups? What role could they play in peace negotiations? Do they have influence on the warring parties, and how can they help to shape the outcome of peace efforts? Linkages with their base: Is a given armed group close to a political base or a popu- lation, and how do these linkages influence the group? Has this support been weak- ened by the use of certain tactics or actions (e.g., mass atrocities), or will repression of its base influence the armed group? Will efforts to demobilize combatants affect the armed group\u2019s relations with its base or otherwise push it to change tactics \u2013 for instance eschewing violence so as to mobilize a political base that would otherwise reject violence. Linkages with local, national and regional elites: Including influential indi- viduals or groups who hold sway over the armed forces and groups. These could include business people or communities, religious or traditional leaders or insti- tutions such as trade unions or cultural groupings. The diaspora may also be an important actor, providing political and economic support to communities and/or armed groups. External support: Are there regional and/or broader international actors or net- works that provide political and financial support to armed groups, including on the basis of geopolitical interests? This might include State sponsors, diaspora or political exiles, transnational criminal networks or ideological affiliation and \u2018franchising\u2019 with foreign, often extremist, armed groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "869e508a-4fb6-4f34-a4d8-90a8ee060c9c", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 10, + "Paragraph": "Conflict outcomes The way a conflict ends can influence the political dynamics of DDR. The following scenarios should be considered: A clear victor: This usually results in a \u2018victor\u2019s peace\u2019, where the winner can \u2018im- pose\u2019 demands on the party that lost the conflict. This may mean that the armed structures of the victor are preserved, while the losing party will be the one tar- geted for DDR. Less emphasis may be placed on the reintegration of the defeated combatants, and the stigma of being an ex-combatant or person formerly associated with an armed force or group (including children associated with armed forces and groups [CAAFG] and WAAFG) is compounded by that of having been a part of a defeated group, resulting in increased marginalization, exclusion and discrim- ination. The victorious group may seek to dominate the new security structures. A negotiated process: At the national level, this is the most common form of con- flict resolution and often results in a comprehensive peace agreement (CPA) that addresses the political aspects of a conflict and might include provisions for DDR (this is considered a prerequisite for a DDR programme). Negotiated processes can also lead to local-level peace agreements, which can be followed by DDR- related tools such as CVR and transitional weapons and ammunition management (WAM) or reintegration support. DDR processes that are the outcome of negotiations (whether local or national) are more likely to be acceptable to warring parties. However, unless expert advice is provided, the DDR-related clauses in such agree- ments can be unrealistic. Partial peace: In some conflicts the multiplicity of armed groups may result in peace processes that are not fully inclusive, since some of the armed groups are excluded from or refuse to sign the agreement. This can be a disincentive for signatory armed groups to disarm and demobilize due to fear for their security and that of the population they represent, concerns over loss of territory to a non- signatory armed group or uncertainty about how their political position might be affected should other armed groups eventually join the peace process.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1e97daa9-80d4-475c-9e1e-6de35e17dfac", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 11, + "Paragraph": "Local, national, regional and international dynamics National-level peace agreements will not always put an end to local-level conflicts. Local agendas \u2013 at the level of the individual, family, clan, municipality, community, district or ethnic group \u2013 can at least partly drive the continuation of violence. Some incidents of localized violence, such as clashes between rivals over positions of tradi- tional authority between two clans, will require primarily local solutions. However, other types of localized armed conflict may be intrinsically linked to the national level, and more amenable to top-down intervention. An example would be competition over political roles at the subfederal or district level. Experience shows that international interventions often neglect local mediation and conflict resolution, focusing instead on national-level cleavages. However, in many instances a combination of local and national conflict or dispute resolution mechanisms, including traditional ones, may be required. For these reasons, local political dynamics should be assessed. In addition to these local- and national-level dynamics, DDR practitioners should also understand and address cross-border/transnational conflict causes and dynamics, including their gender dimensions, as well as the interdependencies of armed groups with regional actors. In some cases, foreign armed groups may receive support from a third country, have bases across a border, or draw recruits and support from commu- nities that straddle a border. These contexts often require approaches to repatriate for- eign combatants and persons associated with foreign armed groups. Such programmes should be accompanied by reintegration support in the former combatant\u2019s country of origin (see also IDDRS 5.40 on Cross-Border Population Movements). Regional dimensions may also involve the presence of regional or international forces operating in the country. Their impact on DDR should be assessed, and the con- fluence of DDR efforts and ongoing military operations against non-signatory move- ments may need to be managed. DDR processes are voluntary and shall not be conflated with counter-insurgency operations or used to achieve counter-insurgency objectives. The conflict may also have international links beyond the immediate region. These may include proxy wars, economic interests, and political support to one or several groups, as well as links to organized crime networks. Those involved may have specific inter- ests to protect in the conflict and might favour one side over the other, or a specific out- come. DDR processes will not usually address these factors directly, but their success may be influenced by the need to engage politically or otherwise with these external actors.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "2acd5293-8afe-4d2c-975d-f6bb9b0e7a43", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 12, + "Paragraph": "DDR in conflict contexts or in contexts with multiple armed groups As outlined in IDDRS 2.10 on The UN Approach to DDR, integrated DDR processes may be pursued even when conflict is ongoing. In these contexts, DDR practitioners will need to assess how their interventions may affect local, national, regional and international political dynamics. For example, will the implementation of CVR projects contribute to the restoration and reinvigoration of (dormant) local government (see IDDRS 2.30 on Community Violence Reduction)? Will local-level interventions impact political dynamics only at the local level, or will they also have an impact on national-level dynamics? In conflict settings, DDR practitioners should also assess the political dynamics created by the presence of multiple armed groups. Complex contexts involving multiple armed groups can increase the pressure for a peace agreement to succeed (including through successful DDR and the transformation of armed groups into political parties) if this provides an example and an incentive for other armed groups to enter into a negotiated solution.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5b4e56ba-2355-48c9-936b-580bc816415c", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 12, + "Paragraph": "Fostering political support for DDR Governments and armed groups are key stakeholders in peace processes. Despite this, the commitment of these parties cannot be taken for granted and steps should be tak- en to build their support for the DDR process. It will be important to consider various options and approaches at each stage of the DDR process so as to ensure that next steps are politically acceptable and therefore more likely to be attractive to the parties. If there is insufficient political support for DDR, its efficacy may be undermined. In order to foster political will for DDR, the following factors should be taken into account:", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e39dee2e-9527-4e3c-aad8-b0d7ef8cd3e5", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 12, + "Paragraph": "The political aspirations of armed groups Participation in peacetime politics may be a key demand of groups, and the opportu- nity to do so may be used as an incentive for them to enter into a peace agreement. If armed groups, armed forces or wartime Governments are to become part of the political process, they should transform themselves into entities able to operate in a transitional political administration or an electoral system. Leaders may be reluctant to give up their command and therefore lose their political base before they are able to make the shift to a political party that can re- ab- sorb this constituency. At the same time, they may be unwilling to give up their wartime structures until they are sure that the political provisions of an agreement will be implemented. DDR processes should consider the parties\u2019 political motivations. Doing so can reassure armed groups that they can retain the ability to pursue their political agen- das through peaceful means and that they can therefore safely disband their military structures. The post-conflict demilitarization of politics and institutions goes beyond DDR practitioners\u2019 mandates, yet DDR processes should not ignore the political aspirations of armed groups and their members. Such aspirations may include participating in political life by being able to vote, being a member of a political party that represents their ideas and aims, or running for office. For some armed groups, participation in politics may involve transformation into a political party, a merger or alignment with an existing party, or the candidacy of former members in elections. The transformation of an armed group into a political party may appear to be incompatible with the aim of disbanding military structures and breaking their chains of command and control because a political party may seek to build upon wartime com- mand structures. Practitioners and political leaders need to consider the effects of a DDR process that seeks to disband and break the structures of an armed group that aims to become a political party. Attention should be paid as to whether the planned DDR pro- cess could help or hinder this transformation and whether this could support or undermine the wider peace process. DDR processes may need to be adapted accordingly.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9552fbf0-006a-4898-98ca-4ed76ebaf4fe", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 13, + "Paragraph": "Ensuring adequate provisions for DDR in peace agreements The DDR-related clauses included within peace agreements should be realistic and appropriate for the setting. In CPAs, the norm is to include a commitment to under- take a DDR programme. The details, including provisions regarding female combat- ants, WAAFG and CAAFG, are usually developed later in a national DDR programme document. Local-level peace agreements will not necessarily include a DDR programme, but may include a range of DDR-related tools such as CVR and transi- tional WAM (see IDDRS 2.10 on The UN Approach to DDR). Provisions that legitimize entitlements for those who have been members of armed forces and groups should be avoided (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Regardless of the type of peace agreement, mediators and signatories should have a minimum understanding of DDR, including the preconditions and principles of gender- responsive and child-friendly DDR (see IDDRS 2.10 on The UN Approach to DDR). Where necessary they should call upon DDR experts to build capacity and knowledge among all of the actors involved and to advise them on the negotiation of relevant and realistic DDR provisions.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7385d8cb-c928-4fb6-b691-dfa31f51d0d7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 13, + "Paragraph": "Building and ensuring integrated DDR processes In some instances, integrated DDR processes should be closely linked to other parts of a peace process. For example, DDR programmes may be connected to security sector reform and transitional justice (see IDDRS 6.10 on DDR and Security Sector Reform and IDDRS 6.20 on Transitional Justice and DDR). Unless these other activities are clear, the signatories cannot decide on their participation in DDR with full knowledge of the options available to them and may block the process. Donors and other partners may also find it difficult to support DDR processes when there are many unknowns. It is therefore important to ensure that stakeholders have a minimum level of under- standing and agreement on other related activities, as this will affect their decisions on whether or how to participate in a DDR process. Information on associated activities is usually included in a CPA; however, in the absence of such provisions, the push to disarm and demobilize forces combined with a lack of certainty on fundamental issues such as justice, security and integration can un- dermine confidence in the process. In such cases an assessment should be made of the opportunities and risks of starting or delaying a DDR process, and the consequences shall be made clear to UN senior leadership, who will take a decision on this. If the de- cision is to postpone a programme, donors and budgeting bodies shall be kept informed. There may also be a need to link local and national conflict resolution and media- tion so that one does not undermine the other.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "104b6709-3391-4470-b35c-324d5bf1a363", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 14, + "Paragraph": "Ensuring a common understanding of DDR Although the negotiating parties may not need to know the details of a DDR process when they sign a peace agreement, they should have a shared understanding of the principles and outcomes of the DDR process and how this will be implemented. It is important for the parties to a peace agreement to have a common understanding of what DDR involves, including the gender dimensions and requirements and pro- tections for children. This may not always be the case, especially if the stakeholders have not all had the same opportunity to learn about DDR. This is particularly true for groups that may be difficult to access because of security or geography, or because they are considered \u2018off limits\u2019 due to their ideology. The ability to hold meaningful dis- cussions on DDR may therefore require capacity-building with the parties to balance the levels of knowledge and ensure a common understanding of the process. In con- texts where DDR has been implemented before, this history can affect perceptions of future DDR activities, and there may be a need to review and manage expectations and clarify differences between past and planned processes. The capacity-building and provision of expertise extends to the mediation teams and international supporters of the peace process (envoys, mediators, facilitators, spon- sors and donors) who must have access to experts who can guide them in designing appropriate DDR provisions.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5fb2d7c4-97cb-4ea9-8feb-f6dc026a1cbe", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 14, + "Paragraph": "Ensuring international support for DDR International actors, including the UN, Member States and other concerned stakehold- ers must understand the need to politically support DDR processes. They must also ensure that the agreements reached are responsive to the parties\u2019 demands, fair and implementable, and create a supportive environment for DDR. Donors and UN budgetary bodies should understand that DDR is a long and expen- sive undertaking. While DDR is a crucial process, it is but one part of a broader political and peacebuilding strategy. Hence, the objectives and expectations of DDR must be realistic. A partial commitment to such an undertaking is insufficient to allow for a sustainable DDR process and may cause harm. This support must extend to an understanding of the difficult circumstances in which DDR is implemented and the need to sometimes wait until the conditions are right to start and assure that funding and support is avail- able for a long-term process. However, there is often a push to spend allocated funding even when the conditions for a process are not in place. This financial pressure should be better understood, and budgetary rules and regulations should not precipitate the premature launch of a DDR process, as this will only undermine its success.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "6909e406-cb2d-4e80-b839-10ef4626dea8", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 15, + "Paragraph": "Local peace agreements Local peace agreements can take many different forms and may include local non- aggression pacts between armed groups, deals regarding access to specific areas, CVR agreements and reintegration support for those who have left the armed groups. These local agreements may sometimes be one part of a broader peace strategy. A large range of actors can be involved in the negotiation of these agreements, including informal local mediation committees, Government-established local peace and reconciliation committees, religious actors, non-governmental organizations (NGOs) and the UN. Local capacities for peace should also be assessed and engaged in the peace and medi- ation processes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0d28a439-8d5c-454a-b7c3-869ab14b20c7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 15, + "Paragraph": "Preliminary ceasefires In some cases, preliminary ceasefires may be agreed to prior to a final agreement. These aim to create a more conducive environment for talks to take place. DDR provi- sions are not included in such agreements.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "caa31a6c-215a-434d-954a-3a9cb284c064", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 15, + "Paragraph": "Comprehensive Peace Agreements DDR programmes are often the result of a CPA that seeks to address political and security issues. Without such an agreement, warring parties are unlikely to agree to measures that reduce their ability to use military force to reach their goals. As illustrated in Diagram 1 below, CPAs usually include several chapters or annexes addressing different substantive issues. The first three activities under \u201cCeasefire and Security Arrangements\u201d are typically part of the ceasefire process. The cantonment of forces, especially when cantonment sites are also used for DDR activities, is usually the nexus between the ceasefire and the \u201cfinal security arrangements\u201d that include DDR and SSR (see section 7.5). Ceasefires usually require the parties to provide a declaration of forces for moni- toring purposes, ideally disaggregated by sex and including information regarding the presence of WAAFG, CAAFG, abductees, etc. This declaration can provide important planning information for DDR practitioners and, in some cases, negotiated agreements may stipulate the declared number of people in each movement that are expected to participate in a DDR process. Likewise, the assembly or cantonment of forces may provide the opportunity to launch disarmament and demobilization activities in assembly areas, or, at a minimum, to provide information outreach and a preliminary registra- tion of personnel for planning purposes. Outreach should always include messages about the eligibility of female DDR participants and encourage their registration. Discussions on the disengagement and withdrawal of troops may provide infor- mation as to where the process is likely to take place as well as the number of persons involved and the types and quantities of weapons and ammunition present. In addition to security arrangements, the role of armed groups in interim political institutions is usually laid out in the political chapters of a CPA. If political power-sharing systems are set up straight after a conflict, these are the bodies whose membership will be negotiated during a peace agreement. Transitional governments must deal with critical issues and processes resulting from the conflict, including in many cases DDR. It is also these bodies that may be responsible for laying the foundations of longer-term political structures, often through activities such as the review of constitutions, the holding of national political dialogues and the organization of elections. Where there is also a security role for these actors, this may be established in either the political or security chapters of a CPA. Political roles may include participation in the interim administration at all levels (central Government and regional and local authorities) as well as in other political bodies or movements such as being represented in national dialogues. Security areas of consideration might include the need to provide security for political actors, in many cases by establishing protection units for politicians, often drawn from the ranks of their combatants. It may also include the establishment of interim security systems that will incorporate elements from armed forces and groups (see section 7.5.1)", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "d22cfe30-244b-40aa-bd24-48b5d9692861", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 17, + "Paragraph": "DDR support to mediation As members of mediation support teams or mission staff in an advisory role to the Special Representative to the Secretary-General (SRSG) or the Deputy Special Repre- sentative to the Secretary-General (DSRSG), DDR practitioners can provide advice on how to engage with armed forces and groups on DDR issues and contribute to the attainment of agreements. In non-mission settings, the UN peace and development advisors (PDAs) deployed to the office of the UN Resident Coordinator (RC) play a key role in advising the RC and the government on how to engage and address armed groups. DDR practitioners assigned to UN mediation support teams may also draft DDR provisions of ceasefires, local peace agreements and CPAs, and make proposals on the design and implementation of DDR processes. In addition to the various parties to the conflict, the UN should also support the participation of civil society in peace negotiations, in particular women, youth and others traditionally excluded from peace talks. Women\u2019s participation (in mediation and negotiations) can expand the range of domestic constituencies engaged in a peace process, strengthening its legitimacy and credibility. Women\u2019s perspectives also bring a different understanding of the causes and consequences of conflict, generating more comprehensive and potentially targeted proposals for its resolution. Mediators and DDR practitioners should recognize the sensitivities around lan- guage and be flexible and contextual with the terms that are used. The term \u2018reinte- gration\u2019 may be perceived as inappropriate, particularly if members of armed groups never left their communities. Terms such as \u2018rehabilitation\u2019 or \u2018reincorporation\u2019 may be considered instead. Similarly, the term \u2018disarmament\u2019 can include connotations of surrender or of having weapons taken away by a more powerful actor, and its use can prevent warring parties from moving forward with the negotiations (see also IDDRS 4.10 on Disarmament). DDR practitioners and mediators can consider the use of more neutral terms, such as \u2018laying aside of weapons\u2019 or \u2018transitional weapons and ammu- nition management\u2019. The use of transitional WAM activities and terminology may also set the ground for more realistic arms control provisions in a peace agreement while guarantees around security, justice and integration into the security sector are lacking (see also IDDRS 4.11 on Transitional Weapons and Ammunition Management). Medi- ators and other actors supporting the mediation process should have strong DDR and WAM knowledge or have access to expertise that can guide them in designing appro- priate and evidence-based DDR WAM provisions. Within a CPA, the detail of large parts of the final security arrangements, including strategy and programme documents and budgets, is often left until later. However, CPAs should typically establish the principle that DDR will take place and outline the structures responsible for implementation. If contextual analysis reveals that both local and national conflict dynamics are at play (see section 5.1.4) DDR practitioners can support a multilevel approach to mediation. This approach should not be reactive and ad hoc, but part of a well-articulated strategy explicitly connecting the local to the national. Problems may arise if those engaged in negotiations are not well informed about DDR and commit to an unsuitable or unrealistic process. This usually occurs when DDR expertise is not available in negotiations or the organizations that might support a DDR process are not consulted by the mediators or facilitators of a peace process. It is therefore important to ensure that DDR experts are available to advise on peace agree- ments that include provisions for DDR.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1b93fc60-90bf-4bd0-88cd-7899c850d6cc", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 18, + "Paragraph": "Peace mediation and gender Security Council Resolution 1325 (2000) calls on all actors involved, when negotiating and implementing peace agreements, to adopt a gender perspective, including, inter alia: The special needs of women and girls during repatriation and resettlement and for rehabilitation, reintegration and post-conflict reconstruction; Measures that support local women\u2019s peace initiatives and indigenous pro- cesses for conflict resolution, and that involve women in all of the implementa- tion mechanisms of the peace agreements; Measures that ensure the protection of and respect for human rights of women and girls, particularly as they relate to the constitution, the electoral system, the police and the judiciary.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6e7fa3a0-e863-49da-ac6d-f2a5c9bb4849", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 18, + "Paragraph": "DDR support to confidence-building measures DDR processes often contend with a lack of trust between the signatories to peace agreements. Previous experience with DDR programmes indicates two common delay tactics: the inflation of numbers of fighters to increase a party\u2019s importance and weight in the peace negotiations, and the withholding of combatants and arms until there is greater trust in the peace process. Some peace agreements have linked progress in DDR to progress in the political track so as to overcome fears that, once disarmed, the movement will lose influence and its political claims may not be fully met. Confidence-building measures (CBMs) are often used to reduce or eliminate the causes of mistrust and tensions during negotiations or to reinforce confidence where it already exists. Certain DDR activities and related tools can also be considered CBMs and could be instituted in support of peace negotiations. For example, CVR programmes can also be used as a means to de-escalate violence during a preliminary ceasefire and to build confidence before the signature of a CPA and the launch of a DDR programme (see also IDDRS 2.30 on Community Violence Reduction). Furthermore, pre-DDR may be used to try to reduce tensions on the ground while negotiations are ongoing. Pre-DDR and CVR can provide combatants with alternatives to waging war at a time when negotiating parties may be cut off or prohibited from accessing their usual funding sources (e.g., if a preliminary agreement forbids their participation in resource exploitation, taxation or other income-generating activities). However, in the absence of a CPA, prolonged CVR and pre-DDR can also become a support mechanism for armed groups rather than an incentive to finalize peace negotiations. Such processes should therefore be approached with caution.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "39767533-b180-4722-b5d4-cd97d6a2abd7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 19, + "Paragraph": "DDR and transitional and final security arrangements Most CPAs include provisions for transitional (or \u2018interim\u2019) and final security arrange- ments. Transitional security arrangements are typically put in place to support DDR programmes by establishing security structures, often jointly or with a third party such as a UN peace operation, that can provide security before the final post-conflict security structures are established. In situations where UN peace operations are un- likely to be established following the signature of a CPA, joint security mechanisms may be put in place as part of transitional and final security arrangements with or without different forms of international verification. Alternatively, a separate mech- anism driven either by regional economic communities or bilateral players agreed to by the warring parties may be deployed. DDR programmes are usually part of the final security arrangements that establish, among other things, what will happen to the fighting forces post-conflict.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "08b6141a-2582-448e-9cac-3c5b75e3182d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 19, + "Paragraph": "Transitional security Transitional security arrangements vary in scope depending on the context, levels of trust and what might be acceptable to the parties. Options that might be considered include: Acceptable third-party actor(s) who are able to secure the process. Joint units, patrols or operations involving the parties to a conflict, often alongside a third-party presence (see also IDDRS 4.11 on Transitional Weapons and Ammu- nition Management). Local security actors such as community police who are acceptable to the commu- nities and to the actors, as they are considered neutral and not a force brought in from outside. Deployment of national police. Depending on the situation, this may have to occur with prior consent for any operations within a zone or be done alongside a third-party actor. Transitional security structures may require the parties to act as a security pro- vider during a period of political transition. This may happen prior to or alongside DDR programmes. This transition phase is vital for building confidence at a time when warring parties may be losing their military capacity and their ability to defend them- selves. This transitional period also allows for progress in parallel political, economic or social tracks. There is, however, often a push to proceed as quickly as possible to the final security arrangements and a normalization of the security scene. Consequently, DDR may take place during the transition phase so that when this comes to an end the armed groups have been demobilized. This may mean that DDR proceeds in advance of other parts of the peace process, despite its success being tied to progress in these other areas.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fd6b4060-e2b5-4853-94b3-64339199cbcb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 19, + "Paragraph": "Final security arrangements DDR programmes are usually considered to be part of the CPA\u2019s provisions on final security arrangements. These seek to address the final status of signatories to the CPA through DDR, SSR, restructuring of security governance institutions and other related reforms.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2d80fa79-e557-445f-81ed-eae20a3f5999", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 20, + "Paragraph": "Verification Verification measures are used to ensure that the parties comply with an agreement. Veri- fication is usually carried out by inclusive, neutral or joint bodies. The latter often include the parties and an impartial actor (such as the UN or local parties acceptable to all sides) that can help resolve disagreements. Verification mechanisms for disarmament may be separate from the bodies established to implement DDR (usually a DDR commission) and may also verify other parts of a peace process in both mission and non-mission settings. Designing politically sensitive DDR processes Recognizing the political dynamics of DDR DDR should not be seen as a purely technical process, but one that requires active political support at all levels. In mission settings, this also means that DDR should not be viewed as the unique preserve of the DDR section. It should be given the attention and support it deserves by the senior mission leadership, who must be the political champions of such processes. In non-mission settings, DDR will fall under the respon- sibility of the UN RC system and the UNCT. DDR-related tools A peace agreement is a precondition for a DDR programme, but DDR programmes need not always follow peace agreements. Other DDR-related tools, such as CVR, may be more appropriate, particularly following a local-level peace agreement or even during active conflict (see IDDRS 2.30 on Community Violence Reduction). DDR practitioners must assess the political consequences, if any, of supporting DDR processes in active conflict contexts. In particular, the intended outcomes of such interventions should be clear. For example, is the aim to contribute to local-level sta- bilization or to make the rewards of stability more tangible, perhaps through a CVR project or by supporting the reintegration of those who leave active armed groups? Alternatively, is the purpose to provide impetus to a national-level peace process? If the latter, a clear theory of change, outlining how local interventions are intended to scale up, is required. DDR programmes If designed properly, DDR programmes and pre-DDR can reduce parties\u2019 concerns about disbanding their fighting forces and losing political and military advantage. The following political sensitivities should be taken into account:", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b85da7fc-6792-42ae-9623-3b54085698ad", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 21, + "Paragraph": "Political optics The handover of weapons from one party to another (e.g., from an armed group to a Government) may be inappropriate, as it could be viewed as one side surrendering to the other (see also IDDRS 4.10 on Disarmament). To address this issue, DDR practitioners can consider: The handover of weapons to a neutral third party. The design of disarmament sites, as well as who is present there. The design should seek to minimize negative perceptions linked to the handover of weapons. This may also mean that the sites are under the control of a neutral party. Demobilizing selected elements (e.g., war wounded, veterans, child soldiers) from an armed force or group can be a strong signal of the movement\u2019s willingness to move forward with peace while allowing the bulk of their forces to remain intact until political goals or benchmarks have been met. This can be a controversial approach, as in some cases it can allow warring parties to get rid of members who are less combat capable, thus leaving them with smaller but more effective forces.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a2e33257-38a9-4683-9acf-1ebfbdf2d7c6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 21, + "Paragraph": "Parity in disarmament and demobilization Disarmament provisions are not always applied evenly to all parties and, most often, armed forces are not disarmed. This can create an imbalance in the process, with one side being asked to hand over more weapons than the other. Even the symbolic disar- mament or control (safe storage as a part of a supervised process) of a number of the armed forces\u2019 weapons can help to create a perception of parity in the process. This could involve the control of the same number of weapons from the armed forces as those handed in by armed groups. Similarly, because it is often argued that armed forces are required to protect the nation and uphold the rule of law, DDR processes may demobilize only the armed opposition. This can create security concerns for the disarmed and demobilized groups whose opponents retain the ability to use force, and perceptions of inequality in the way that armed forces and groups are treated, with one side retaining jobs and salaries while the other is demobilized. In order to create a more equitable process, mediators may allow for the cantonment or barracking of a number of Government troops equivalent to the number of fighters from armed groups that are cantoned, disarmed and demobilized. They may also push for the demobilization of some members of the armed forces so as to make room for the integration of members of opposition armed groups into the national army.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c1f3dbd1-f1eb-4fb6-b2ac-c27bef997b5a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 21, + "Paragraph": "Linkages to other aspects of the peace process Opposition armed groups may be reluctant to demobilize their troops and dismantle their command structures before receiving tangible indications that the political aspects of an agreement will be implemented. This can take time, and there may be a need to consider measures to keep troops under command and control, fed and paid in the interim. They could include: Extended cantonment (this should not be open ended, and a reasonable end date should be set, even if it needs to be renegotiated later); Linking demobilization to the successful completion of benchmarks in the political arena and in the transformation of armed groups into political parties; Pre-DDR activities; Providing other opportunities such as work brigades that keep the command and control of the groups but reorientate them towards more constructive activities. Such processes must be measured against the ability of the organization to control its troops and may be controversial as they retain command and control structures that can facilitate remobilization. Mid-level and senior commander\u2019s political aspirations should be considered when developing demobilization options. Support for political actors is a sensitive issue and can have important implications for the perceived neutrality of the UN, so decisions on this should be taken at the highest level. If agreed to, support in this field may require linking up with other organizations that can assist. Similarly, reintegration into civilian life could be broadened to include a political component for DDR programme participants. This could include civic education and efforts to build political platforms, including political parties. While these activities lie outside of the scope of DDR, DDR practitioners could develop partnerships with actors that are already engaged in this field. The latter could develop projects to assist armed group members who enter into politics in preparing for their new roles. Finally, when reintegration support is offered to former combatants, persons for- merly associated with armed forces and groups, and community members, there may be politically motivated attempts to influence whether these individuals opt to receive reintegration support or take up other, alternative options. Warring parties may push their members to choose an option that supports their former armed force or group as opposed to the individual\u2019s best chances at reintegration. They may push cadres to run for political office, encourage integration into the security services so as to build a power base within these forces, or opt for cash reintegration assistance, some of which is used to support political activities. The notion of individual choice should therefore be encouraged so as to counter attempts to co-opt reintegration to political ends.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b111533b-53a7-4f4e-8cdc-cf7f1fea9a9d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.20-The-Politics-of-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.20-The-Politics-of-DDR", + "PageNum": 22, + "Paragraph": "Elections and the transformation of armed groups Along with the signature of a peace agreement, elections are often seen as a symbol marking the end of the transition from war to peace. If they are to be truly representative and offer an alternative way of contesting power, politics must be demilitarized (\u201dtake the gun out of politics\u201d or go \u201cfrom bullet to ballot\u201d) and transform armed groups into viable political parties that compete in the political arena. It is also through political parties that citizens, including former combatants, can involve themselves in politics and policymaking, as parties provide them with a structure for political participation and a channel for making their voices heard. Not all armed groups can become viable political parties. In this case, alternatives can be sought, including the establishment of a civil society organization aimed at advancing the cause of the group. However, if the transformation of armed groups into political parties is part of the conflict resolution process, reflected in a peace agreement, then the UN should provide support towards this end. DDR may affect the holding of or influence the outcome of elections in several ways: Armed forces and groups that wield power through weapons and the threat of violence can influence the way people vote, affecting the free and fair nature of the elections. Hybrid political \u2019parties\u2019 that are armed and able to organize violence retain the ability to challenge electoral results through force. Armed groups may not have had the time nor space to transform into political actors. They may feel cheated if they are not able to participate fully in the process and revert to violence, as this is their usual way of challenging institutions or articulating grievances. Women in armed groups may be excluded or marginalized as leadership roles and places in the political ranks are carved out. There is often a push for DDR to happen before elections are held. This may be a part of the sequencing of a peace process (signature of an agreement \u2013 DDR programme \u2013 elections), and in some cases completing DDR may be a pre-condition for holding polls. Delays in DDR may affect the timing of elections, or elections that are planned too early can result in a rushed DDR process, all of which may compromise the credi- bility of the broader peace process. Conversely, postponing elections until DDR is com- pleted can be difficult, especially given the long timeframes for DDR, and when there are large caseloads of combatants still to be demobilized or non-signatory movements are still active and can become spoilers. For these reasons DDR practitioners should consider the sequencing of DDR and elections and acknowledge that the interplay between them will have knock-on effects.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5357e263-b6a8-41d7-ad88-06ffe505b78d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": null, + "Paragraph": "Summary Integrated disarmament, demobilization and reintegration (DDR) processes increas- ingly include a community violence reduction (CVR) component as a direct contri- bution to the achievement of Sustainable Development Goal (SDG) 16.1: Significantly reduce all forms of violence and related deaths everywhere. As outlined in the United Nations (UN) approach to DDR, CVR is a DDR-related tool that directly responds to the presence of active and/or former members of armed groups, and is designed to pro- mote security and stability in both mission and non-mission contexts (see IDDRS 2.10 on The UN Approach to DDR). CVR shall not be used to provide material and financial assistance to active members of armed groups. In situations where the preconditions for a DDR programme exist, CVR may be pursued before, during, and after a DDR programme. Specific provisions for CVR may also be included in local-level peace agreements, sometimes instead of DDR pro- grammes (see IDDRS 2.20 on The Politics of DDR). CVR may also be pursued when the preconditions for a DDR programme are absent. In this context, CVR can contribute to security and stabilization, help to make the returns of stability more tangible, and create more conducive environments for national and local peace processes. There is no uniform or standard template for CVR, although all CVR programmes share the overarching goal of reducing armed violence and sustaining peace (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). CVR can be used for a variety of purposes, ranging from the prevention of (re-)recruitment to improving the capacities of communities to absorb ex-combatants and associated groups. CVR may also be used as stop-gap reinsertion assistance at the community level, while reintegration is still at the planning and/or resource mobilization stage. Specific theories of change for CVR programmes should be developed and adapted to particular contexts. However, very often an underlying expectation of CVR is that specific programme activities will foster social cohesion and provide former combatants and other at-risk individuals with alternatives to joining armed groups. As a result, communities will become active participants in the reduction of armed violence. While CVR can achieve significant results, it is neither a short-term panacea nor a long-term development programme. Adequate linkages with recovery and development pro- grammes are therefore key. CVR programmes may complement other elements of the broader DDR process. For example, CVR can complement other DDR-related tools such as transitional weapons and ammunition management (WAM) (see IDDRS 4.11 on Transitional Weapons and Ammunition Management), and can be used as part of programmes for those leaving armed groups designated as terrorist organizations by the United Nations Security Council (see IDDRS 2.11 on The Legal Framework for UN DDR). In mission settings, CVR will be funded through the allocation of assessed contributions. Therefore, where appropriate, planning for CVR should ensure adequate linkages with support to the reintegration of ex-combatants and associated groups. In non-mission settings, fund- ing for CVR will depend on the allocation of national budgets and/or voluntary contri- butions from donors. Therefore, in instances where CVR and support to community- based reintegration are both envisaged, they should, from the outset, be planned and implemented as a single and continuous programme.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ccd45482-379e-4bbd-8bba-b5abe421a45c", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module sets out the basic conceptual and strategic parameters of CVR and its place within integrated DDR processes. It also outlines the principles and programmatic con- siderations that should guide the design, planning and implementation of CVR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "922e3881-db08-4833-9596-4e91120a5953", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardiza- tion (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. CVR programmes may include different types of coordination mechanisms to guide CVR project selection, implementation, and monitoring and evaluation. Two common coordination mechanisms are: Project Selection Committees (PSCs): Community-based PSCs are established in selected areas, include a representative sample of stakeholders, and are responsible for selecting projects that are vetted by the PAC/PRC. (See below.) All project selec- tion should comply with gender quotas of a minimum of 30% of projects benefitting women, and women\u2019s involvement in 30% of leadership and management positions. Project Approval/Review Committee (PAC/PRC): A PAC/PRC sets the overall strategic direction for CVR, vets and approves projects selected by PSCs, and helps to raise finances. The PAC/PRC should exhibit a high degree of clarity on its roles and functions. Such entities meet on a semi-regular basis, usually after a certain number of CVR projects have been presented (a minimum of a week in advance) to PAC/PRC members for consideration. The PAC/PRC should ensure all proposals comply with gender quotas.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "dc42cc39-0cc2-4071-849e-c66c04b91d73", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 5, + "Paragraph": "Introduction CVR is a DDR-related tool that directly responds to the presence of active and/or for- mer members of armed groups in a community and is designed to promote security and stability in both mission and non-mission contexts (see IDDRS 2.10 on The UN Approach to DDR). CVR shall not be used to provide material and financial assistance to active members of armed groups. CVR programmes have a variety of uses. In situations where the preconditions for a DDR programme exist \u2013 including a ceasefire or peace agreement, trust in the peace process, willingness of the parties to engage in DDR and minimum guarantees of security \u2013 CVR may be pursued before, during and after a DDR programme, as a complementary measure. Specific provisions for CVR may also be included in local-level peace agreements, sometimes instead of DDR programmes (see IDDRS 2.20 on The Politics of DDR). When the preconditions for a DDR programme are absent, CVR may be used to contribute to security and stabilization, to help make the returns of stability more tangible, and to create more conducive environments for national and local peace processes. More specifically, CVR programmes can be used as a means to: De-escalate violence during a preliminary ceasefire and build confidence before the signature of a Comprehensive Peace Agreement (CPA) and the launch of a DDR programme; Prevent at-risk individuals, particularly at-risk youth, from joining armed groups; Stop former members of armed groups from rejoining these groups and from en- gaging in violent crime and destructive social unrest; Provide stop-gap reinsertion assistance for a defined period (6\u201318 months), par- ticularly if demobilization is complete and reintegration support is still at the planning and/or resource mobilization stage; Encourage members of armed groups that have not signed on to peace agreements to move away from armed violence; Reorient members of armed groups away from waging war and towards construc- tive activities; Reduce violence in communities and neighbourhoods that are vulnerable to high rates of armed violence, organized crime and/or sexual or gender-based violence; and Increase the capacity of communities and neighbourhoods to absorb newly rein- serted and reintegrated former combatants. CVR programmes are typically short to medium term and include, but are not limited to, a combination of: Weapons and ammunition management; Labour-intensive short-term employment; Vocational/skills training and job employment; Infrastructure improvement; Community security and police rapprochement; Educational outreach and social mobilization; Mental health and psychosocial support, in both collective and individual formats; Civic education; and Gender transformative projects including education and awareness-raising pro- grammes with community members on gender, women\u2019s empowerment, and con- flict-related sexual and gender-based violence (SGBV) prevention and response. Whether introduced in mission or non-mission settings, CVR priorities and projects should, without exception, be crafted at the local level, with representative participation, and where possible, consultation of community stakeholders, including women, boys, girls and youth. All CVR programmes should be underpinned by a clear theory of change that defines the problem to be solved, surfaces the core assumptions underlying the theory of change, explains the core targets and metrics to be addressed, and describes how the proposed intervention activities will address these issues. Specific theories of change for CVR pro- grammes should be adapted to particular con- texts. However, very often an underlying ex- pectation of CVR is that specific programme activities will provide former combatants and other at-risk individuals with alternatives that are more attractive than joining armed groups or resorting to armed violence and/or provide the mental tools and interpersonal coping strat- egies to resist incitements to violence. Another common underlying expectation is that CVR projects will contribute to social cohesion. In socially cohesive communities, com- munity members feel that they belong to the community, that there is trust between community members, and that community members can work together. Members of socially cohesive communities are more likely to be aware of, and more likely to inter- vene when they see, behaviour that may lead to violence. Therefore, by fostering social cohesion and providing alternatives, communities become active participants in the reduction of armed violence. By promoting peaceful and inclusive societies, CVR has the potential to directly contribute to the Sustainable Development Goals, and particularly SDG 16 on Peace, Justice and Strong Institutions. CVR can also reinforce other SDG targets, including 4.1 and 4.7, on education and promoting cultures of peace, respectively; 5.2 and 5.5, on preventing violence against women and girls and promoting women\u00b4s leadership and participation; and 8.7 and 8.8, related to child soldiers and improving workplace safety. CVR may also contribute to SDG 10.2, on political, social and economic inclusion; 11.1, 11.2 and 11.7, on housing, transport and safe public spaces; and 16.1, 16.2 and 16.4, related to reducing violence, especially against children, and the availability of arms. CVR programmes aim to sustain peace by preventing the (re-)recruitment of former combatants and other individuals at risk of recruitment (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). More specifically, CVR programmes should actively strengthen the protective factors that increase the resilience of young people, women and communities to involvement in, or harms associated with, violence. CVR shall not lead, but could help to facilitate, a political process (see IDDRS 2.20 on The Politics of DDR). Although CVR is essentially a technical intervention, the pro- cess of planning, formulating, negotiating and executing activities may be intensely political. CVR should involve routine engagement and negotiation with government officials, active and/or former members of armed groups, individuals at risk of recruit- ment, business and civic leaders, and communities as a whole; it necessitates a deep understanding of the local context and the common definition/understanding of an overarching CVR strategy.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "648947e0-c72c-446e-8554-de5813d1f78d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 7, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to CVR:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6d8c1292-2421-41bc-8af2-96ee68a50c57", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 7, + "Paragraph": "Criteria for participation/eligibility The eligibility criteria for CVR should be developed in consultation with target com- munities and, if in existence, a Project Selection Committee (PSC) or equivalent body. Eligibility criteria shall be developed and communicated in the most transparent man- ner possible. This is because eligibility and ineligibility can become a source of com- munity tension and conflict. Eligibility for CVR does not mean that those who partic- ipate will necessarily be ineligible to participate in other programmes that form part of the broader DDR process \u2013 this will depend on the particular framework in place. Some frameworks may require the surrender of a weapon as a precondition for partic- ipation in a CVR programme (see IDDRS 4.11 on Transitional Weapons and Ammuni- tion Management). Furthermore, when members of armed groups that are not signa- tory to a peace agreement are being considered for inclusion in CVR programmes, the status of these individuals and armed groups must be analysed and specified in order to mitigate any risks. If the individuals being considered for inclusion in a CVR pro- gramme have voluntarily left an armed group designated as a terrorist organization by the United Nations Security Council, DDR practitioners shall incorporate proper screening mechanisms and criteria to identify suspected terrorists (for further infor- mation on specific requirements for children refer to IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR). Depending on the circumstances, the terrorist organization they are associated with and the terrorist offences committed, it may not be appropriate for suspected terrorists to participate in CVR programmes (see IDDRS 2.11 on Legal Framework for UN DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "bc88578b-d15f-424a-abbc-4b9b95c0ae73", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 8, + "Paragraph": "Unconditional release and protection of children Specific provisions shall be developed to ensure the protection, care and support of young people (15\u201324) who participate in CVR programmes (see IDDRS 5.30 on Youth and DDR). Where appropriate, children (under 18) may be included in CVR activi- ties, but with relevant legal safeguards to ensure their rights and needs are carefully accounted for. Mental health and psychosocial support services as well as social services should be established, as appropriate, in consultation with relevant child protection units and agencies (see IDDRS 5.20 on Children and DDR).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9027d47-fa90-4217-aedd-0e6921d4888a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 8, + "Paragraph": "In accordance with standards and principles of humanitarian assistance CVR does not reward those who have engaged in violent behaviours for their past activi- ties, but rather invests in individuals and communities that actively renounce past violent behaviour and that are looking for a productive and peaceful future. CVR shall not be used to provide material and financial assistance to active members of armed groups.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b562c5d3-c2f7-4d01-acdc-27fa15674782", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 8, + "Paragraph": "Gender-responsive and inclusive CVR shall actively ensure a gender-responsive approach that accounts for the specific needs of men and women, boys and girls. This may include more proportional gender representation within DDR/CVR sections, among CVR project implementing partners, within PSCs (or equivalent bodies), and among individual and community beneficiaries. The inclusion of women across all aspects of CVR strengthens the overall legitimacy and credibility of the enterprise. Moreover, developing the agency of women, girls and youth will enhance their political and social influence in civic associations and their authority in relation to economic productivity, thereby reducing violence. CVR can also incorpo- rate measures to challenge harmful notions of masculinity and engage with men and boys to promote behaviours and attitudes that value gender equality and non-violence. In some settings, there may be strong sociocultural and economic constraints to expanding women\u2019s representation in PSCs or among project beneficiaries. To mitigate these challenges, DDR practitioners1 have introduced quota systems requiring a min- imum level of female participation (30%) in PSCs and among selected projects (30% of projects must directly support women\u2019s specific needs). These quota systems shall be discussed with national counterparts at the outset of UN engagement in CVR and ex- plained to all personnel and partners working on CVR programmes at the subnational and local levels. All CVR projects should report on the gender and age dimensions of PSCs as well as on CVR projects themselves. Introducing gender- and age-specific quotas in CVR project tenders should also mitigate discriminatory practices. Likewise, DDR practitioners shall ensure that any public works projects selected for support are designed in a way that respects the rights and specific needs of every person. 1\tIn this module the term \u2018DDR practitioners\u2019 refers to individuals who work on CVR programmes in a setting of armed conflict. In mission contexts, these individuals may work in either UN mission DDR or CVR sections. CVR shall be inclusive to the extent that it focuses not only on former combatants, but also on at-risk children and youth (male and female) as well as a wide range of community members living in volatile areas and in need of assistance. CVR shall be aligned with a \u2018rights-based\u2019 approach, in that processes adhere to international hu- man rights law and standards. For example, all community members in selected areas should benefit from interventions without discrimination. CVR shall also be tailored to address distinct ethnic, religious and other groups to the extent possible. Specifically, training, education and outreach initiatives that pro- mote civic education, life and parenting skills, and psychosocial support, education and counselling should reach across specific needs groups. By advocating for a plural caseload, CVR should help to promote more responsible civic engagement, a key fea- ture of social cohesion.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "b5bd6486-7b39-4698-8e66-a15f39297727", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 9, + "Paragraph": "Conflict sensitive In all cases, CVR shall do no harm. When projects and implementing partners are not adequately monitored and evaluated, CVR support can be channeled to one group at the expense of others. Moreover, communities in resource scarce and inaccessible areas that are not included in CVR may resent being left out. Some population groups may feel legitimately abandoned and resort to crime and banditry. In some cases, this may result in increases in interpersonal violence in the home, including domestic and child abuse, or increases in sexual or gender-based violence. Communities that are included in CVR programmes may also have unrealistic expectations and cre- ate problems if they feel they are not ade- quately benefiting from them. CVR should have a whole of community and equity focus, as the privileging of some geographic areas for CVR over others may result in disputes. Negative perceptions of exclusion and potential additional grievances should be anticipated and accounted for in DDR practitioners\u2019 conflict assessments.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "36c84d11-9ea5-4016-9bb1-c9d842352c7f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 9, + "Paragraph": "Context specific There is no single template for CVR, and the vast diversity of CVR programmes is by design: form follows function. As a practice area, CVR is continuing to evolve in both mission and non-mission settings. Whether implemented through the UN or through national and community-based non-governmental organizations, CVR can adapt and change over time, even in a single context.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "886378ca-9081-4b97-ba7f-ecaf658468f0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 9, + "Paragraph": "Nationally and locally owned CVR programmes are ultimately the responsibility of local, national and subnational governments and non-government partners. Yet in many settings, public and civil soci- ety capacities may be exceedingly weak. Where possible and appropriate, CVR should aim to reinforce the legitimacy, credibility and capacity of state and non-governmental partners. While guided by violence reduction imperatives, implementing partners and projects should also be selected on the basis of promoting local and national ownership. Leadership is required from government entities including, as appropriate, a national DDR commission (if one exists) or equivalent entity. In cases where government delivery of CVR is not feasible, DDR practitioners should seek to foster institutional capacities and representation. The goal in all cases must be to strengthen, not replace, state and non-state capacities. Although typically short to medium term, CVR programmes shall be strongly aligned with national and community security priorities, based on needs assessment and tailored to local capacities. Defining what security means for a particular com- munity should be part of the initial first steps. CVR should allow for direct dialogue, technical engagement, implementation and outreach with a wide array of stakeholders from the national to the community level. By working directly with affected commu- nities and local governments, CVR can help lay the foundation for stabilization and allow for recovery and reconstruction. The sustainability of CVR projects during and after they are launched requires the formation of a strong partnership with public, pri- vate and non-governmental authorities. Strategies to embed state partners and private- sector and civil society groups in CVR project design, planning, implementation and monitoring are pathways to facilitate handovers. CVR is bottom-up in orientation and should devolve decision-making, project design, implementation, and monitoring and evaluation to the local level. While the strategic direction of CVR programmes should be set by government personnel with support from the UN, decisions related to project selection and execution, and monitor- ing and evaluation, should be delegated to PSCs and local project implementers. PSCs are typically composed of local community members and leaders and should ensure representation of minority groups, women and youth. Subnational government, pri- vate-sector and civil society representatives may also be included. If alternate institu- tions already exist (such as local peace and development committees), then they should be harnessed (subject to the usual due diligence) and steps should be taken to ensure that they are representative of the broader society. DDR practitioners should ensure that once selected, CVR projects are mediated, to the extent possible, by local counterparts \u2013 at the communal, county, municipal or neighbourhood level. CVR may build trust and confidence \u2013 and stimulate local eco- nomic activity \u2013 by recruiting implementing partners and engineering support locally. When drawing on local pools of talent and expertise, it is important to explore ways that CVR projects can continue after funding ends.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "80098bf9-9f95-4901-8b98-1dc392833673", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 10, + "Paragraph": "Integrated CVR should strengthen a coordinated and integrated UN approach to addressing security threats in mission and non-mission settings. CVR can and should involve, where realistically possible, a range of UN agencies and international and national partners in the design, implementation and evaluation of specific activities. Because CVR exists at the intersection of a wide range of agendas and sectors, clear and predict- able direction is essential. CVR shall contribute to the UN \u201cdelivering as one\u201d. At a minimum, CVR pro- grammes should not compete with or duplicate other initiatives carried out by UN agencies, funds and programmes as well as those fielded by national and international partners. CVR programmes may often be implemented in contexts where development, humanitarian and peace actors and interventions co-exist. To maximize complemen- tarity and coordination, CVR strategies shall be guided by a clear set of objectives and targets, as well as a theory of change. Where feasible and appropriate, partnerships should be pursued.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f37f4ca6-c8f2-4f08-8c21-9017398d6713", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 11, + "Paragraph": "Well planned CVR programmes shall aim to be data-driven and evidence-based. Monitoring and evaluation measures shall be prepared before CVR programmes are started and ap- plied throughout the entire life cycle of the intervention (see IDDRS 3.50 on Monitoring and Evaluation). Relevant baseline assessments, the collection of gender and sex-dis- aggregated data on project participants, and mid- and end-term evaluations shall be anticipated and budgeted for by DDR practitioners well in advance. Data collection and retention policies for implementing partners and DDR practitioners shall also include privacy provisions, including procedures on data retention, sharing and disposal. The progress of CVR programmes shall be regularly analysed and communicated to rele- vant partners to ensure that core objectives are achieved, and that mitigation strategies are prepared when they are not.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "25fc03da-a2ee-4c20-9e45-7f505c82eef0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 11, + "Paragraph": "The role of CVR within a DDR process DDR practitioners should, at the outset of a CVR programme, agree on a common un- derstanding of the role of CVR within the DDR process, including its possible rela- tionship to a DDR programme, to other DDR-related tools (such as transitional WAM), and to reintegration support (see IDDRS 2.10 on The UN Approach to DDR). Achieving shared clarity of purpose between national and local stakeholders, the UN and the entities responsible for coordinating CVR is critical. The target groups for CVR programmes may vary according to the context. (See section 6.4.) However, four categories stand out: Former combatants who are part of an existing UN-supported or national DDR programme. These typically include ex-combatants and persons formerly associat- ed with armed groups who are waiting for support and could be perceived as a threat to broader security and stability. If reintegration support is delayed, CVR can serve as a stop-gap measure, providing temporary reinsertion assistance for a defined period (6\u201318 months) (also see IDDRS 4.20 on Demobilization). Members of armed groups who are not formally eligible for a DDR programme because their group is not signatory to a peace agreement. These groups may include rebel factions, paramilitaries, militia groups, members of armed gangs or other entities that are not part of a peace agreement. This category may include individuals who voluntarily leave active armed groups, including those that are designated as terrorist organizations by the United Nations Security Council (see IDDRS 2.11 on The Legal Framework for UN DDR). The status of these individuals and armed groups must be analysed and specified to mitigate any risks associated with their inclusion in CVR programmes. Individuals who are not members of an armed group, but who are at risk of re- cruitment by such groups. These individuals are not part of an established armed group and are therefore ineligible to participate in a DDR programme. They do, however, exhibit the potential to build peace and to contribute to the prevention of recruitment in their community. This wide category of beneficiaries can include male and female children and youth (see IDDRS 5.20 on Children and DDR and 5.30 on Youth and DDR). Designated communities that are susceptible to outbreaks of violence, close to cantonment sites, or likely to receive former combatants. In some cases, CVR may target communities and neighbourhoods that are situated close to cantonment sites and/or vulnerable to high rates of political violence, organized crime, or sex- ual or gender-based violence. CVR can also be focused on a sample of productive members of a community to enhance their potential to absorb newly reinserted and reintegrated former combatants.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "9402d6b7-ef31-4c0f-801f-0a48d899e591", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 12, + "Paragraph": "CVR in support of and as a complement to a DDR programme CVR may be pursued before, during and after DDR programmes in both mission and non-mission settings. (See Table 1 below.)", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "421657a1-aabc-4bc8-84bf-f7188b6da8ed", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": null, + "Paragraph": "CVR may be undertaken prior to a DDR programme. Past experience has shown that military commanders can sometimes try to recruit additional group members during negotiation processes in order to strengthen their troop numbers and conse- quent influence at the negotiating table. Similarly, previous experience has shown that imminent access to a DDR programme may have the perverse incentive of encouraging recruitment. CVR can counter this possibility, by fostering social cohesion and providing alternatives to joining armed groups. CVR may also be undertaken in parallel with DDR programmes. For example, CVR programmes can be implemented near cantonment sites for a number of reasons. Firstly, there may be community resistance to the nearby cantoning of armed forces and groups. CVR can respond to this while also showing community members that ex-combatants are not the only ones to benefit from the DDR process. CVR can also help to mitigate insecurity around cantonment sites, particularly if cantonment goes on for longer than anticipated. Even in communities that are not close to cantonment sites, CVR can be undertaken parallel to a DDR programme in order to strengthen the capacities of communities to absorb former combatants and to reduce tensions that may be caused by the arrival of ex-combatants and associated groups. More specifically, over the short to medium term, CVR can equip communities with dispute mechanisms as well as community dialogue mechanisms to manage grievances and stimulate local economic activity that benefits a wider population. CVR can also be used as a means of addressing armed groups that have not signed on to a peace agreement. The aim of CVR in this context would be to minimize the potentially disruptive effects that non-signatory groups can have on an ongoing DDR programme. Parallel to DDR programmes, CVR can also play a critical role in strengthen- ing reinsertion efforts and bridging the so-called \u2018reintegration gap\u2019. In mission set- tings, CVR will be funded through the allocation of assessed contributions. Therefore, if DDR programmes are unable to mobilize sufficient reintegration assistance, CVR may smooth the transition through the provision of tailored reinsertion assistance for ex-combatants and associated groups and the communities to which they return. For this rea- son, CVR is sometimes described as a stop-gap measure. In non-mission settings, funding for CVR and reintegration support will depend on the allocation of national budgets and/or vol- untary contributions from donors. Therefore, in instances where CVR and support to communi- ty-based reintegration are both envisaged in a non-mission setting, they should, from the outset, be planned and implemented as a single and continuous programme. The distinctions between CVR and reinsertion as part of a DDR programme are outlined in Table 2 below. CVR may also be appropriate after a formal DDR programme has ended. For ex- ample, CVR may be administered after a DDR programme in combination with transi- tional weapons and ammunition management (WAM) in order to bolster resilience to (re-)recruitment and to mop up or safely register and store any remaining civilian-held weapons (see IDDRS 4.11 on Transitional WAM and section 5.3 below). CVR may also provide a constructive transitional function, particularly if reintegration support is ended prematurely. Any plans to maintain CVR activities after a DDR programme should be agreed with relevant stakeholders.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fc953eac-b91c-471c-9126-a3ff38c31ac0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 14, + "Paragraph": "CVR in the absence of DDR programmes CVR may also be used in the absence of a DDR programme. (See Table 3 below.) CVR can be used to build confidence between warring parties and to show the possible dividends of future peace. In turn, this may help to foster an environment that is con- ducive to the signing of a peace agreement. It is possible that DDR processes will not include DDR programmes, either because the preconditions for DDR programmes are not present or because alternative meas- ures are more appropriate. For example, a local-level peace agreement may include provisions for CVR rather than a DDR programme. These local-level agreements can", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fc73eb8d-9547-4cc9-aa28-78d428408034", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 15, + "Paragraph": "TABLE 2: DISTINCTIONS BETWEEN REINSERTION AND CVR take many different forms, including (but not limited to) local non-aggression pacts between armed groups, deals regarding access to specific areas and CVR agreements (see IDDRS 2.20 on The Political Dimensions of DDR). Alternatively, in certain cases armed groups designated as terrorist organizations by the United Nations Security Council may refuse to sign peace agreements. Individ- uals who voluntarily decide to leave these armed groups may participate in CVR pro- grammes. However, they must first be screened in order to assess whether they have committed certain crimes, including terrorist acts that would disqualify them from participation in a DDR process (see IDDRS 2.11 on Legal Framework for UN DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "849bddc5-d280-4edc-b161-5cbf0a8eacad", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 15, + "Paragraph": "Relationship between CVR and weapons and ammunition management CVR may involve activities related to collecting, managing and/or destroying weapons and ammunition. Arms control initiatives and potential CVR arms-related eligibility criteria should be in line with the disarmament component of the DDR programme (if there is one), as well as other arms control initiatives running in the country (see IDDRS 4.10 on Disarmament and 4.11 on Transitional Weapons and Ammunition Management).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7af9eff0-d566-4fcb-be0d-d590f90837de", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": null, + "Paragraph": "While not a disarmament program per se, CVR may include measures to pro- mote community or locally led weapons collection and management initiatives, to sup- port national weapons amnesties, and to collect, store and destroy small arms, light weapons, other conventional arms, ammunition and explosives. The collection and destruction of weapons may play an important symbolic and catalytic role in war-torn communities. Although the return of a weapon is not typically a condition of partic- ipation in CVR, voluntary returns may demonstrate the willingness of beneficiaries to engage. Moreover, the removal and/or safe storage of weapons from individuals\u2019 or armed groups\u2019 inventories may help reduce open carrying and home possession of weaponry \u2013 factors that can contribute to violent exchanges and unintentional injuries. Even when weapons are not handed over as part of a CVR programme, it is beneficial to collect information on the weapons still in possession of those participating in CVR. This is because weapons in circulation will continue to represent a risk factor and have the potential to facilitate violence. Expectations should be kept realistic: in settings marked by high levels of insecurity, it is unlikely that voluntary surrenders or amnesties of weapons will meaningfully reduce overall accessibility. DDR practitioners may, in consultation with relevant partners, propose conditions for the submission of weapons as part of a CVR programme. In some instances, modern and artisanal weapons and ammunition have been collected as part of CVR programmes and have later been destroyed in public ceremonies. Weapons and ammunition col- lected as part of CVR programmes should be destroyed, but if the authorities decide to integrate the material into their national stockpiles, this should be done in compliance with the State\u2019s obligations under relevant international instruments and with technical guidelines.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ef1ff7a8-4b11-4ba9-8ab9-777e0c9641cd", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 17, + "Paragraph": "CVR programming The legitimacy and effectiveness of CVR begins and ends with community engage- ment. CVR programmes should not be limited to a small number of partners, but rather include a wide-ranging and representative sample of community stakeholders. Selected partners should be included at all stages of the programming cycle \u2013 project submission, design, development, implementation, communications, and monitoring and evaluation \u2013 in order to help build local capacities and achieve maximum impact. Where counterpart government capacities are weak or compromised, community-level partnerships should be pursued to promote buy-in, to reach difficult-to-access areas, and to help CVR interventions thrive after funding cycles come to an end. At a minimum, CVR strategy and programming shall be aligned with wider na- tional, regional and international stabilization objectives. While the overall strategic direction is determined from above, DDR practitioners should work closely with local intermediaries to ensure that community-driven priorities are front and centre in project selection. This is because community buy-in and local norms and sanctions are critical to limiting the prevalence of violence and helping regulate violence once it has broken out. Local ownership is not an incidental by-product \u2013 it is absolutely essential to CVR effectiveness. CVR programmes are less beholden to a predetermined design than many other stability measures, and they should take advantage of this by incorporating com- munity demands while also ensuring a comprehensive strategy for community security.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ed065fb8-ea48-4a52-8e2b-1a530908b0c6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 17, + "Paragraph": "CVR strategy and coordination mechanisms In both mission and non-mission settings, CVR programmes should be based on a clear, predictable and agile CVR strategy. The strategy shall clearly specify core goals, targets, indicators, and the theory of change and overall rationale for CVR. The strate- gic plan should spell out the division of labour, rules and responsibilities of partners, and their performance targets. CVR programmes are not static and, when political and security dynamics change, shall be regularly adjusted to reflect the new set of circumstances. All updates should be informed by comprehensive conflict and security analysis, consultations with national and international counterparts, and internal mission and United Nations Country Team (UNCT) priorities. Changes in CVR programmes should also ensure that revised tar- gets meet basic results-based practices, are aligned within budgetary constraints, and are informed by high-quality data collection and monitoring systems. While CVR shall be a short-to-medium-term measure, longer-range planning is essential to ensure linkages with broader security, rights-related, gender and develop- ment priorities. These future-looking priorities \u2013 together with potential and actual bridges to relevant UN and non-UN agencies \u2013 should be clearly articulated in the CVR strategy. CVR programme and project documents should highlight partnerships to facilitate sus- tainability. The longer-term potential of CVR should also be noted in the mandate of the National DDR Commission (if one exists) or an equivalent body as well as relevant in- ternational and national development frameworks. Preparing for the end of CVR early on \u2013 and including national government and international donor representatives in the planning process \u2013 is essential for a smooth and sustainable exit strategy. Strategically embedding CVR in national and subnational development frame- works may also generate positive effects. While CVR is not a development activity, in- tegrating CVR into a UN Sustainable Development Cooperation Framework (UNSDCF) and/or national development strategy can pro- vide stronger impetus for coordinated and ad- equately resourced activities. DDR practitioners should therefore be exposed to national, regional and municipal development strategies and pri- orities. At the subnational level, selected CVR projects should be strongly aligned with state, municipal and neighbourhood development pri- orities where possible. Representation of line ministries, secretaries and departments in relevant planning and coordination bodies is strongly encouraged. A number of different coordination mechanisms may guide CVR project selection, implementation, and monitoring and evaluation. Two possible mechanisms are high- lighted below. However, if alternate representative institutions already exist (such as village development committees), then they could be harnessed (subject to the usual due diligence) and steps should be taken to ensure that they are representative of the broader society. Two commonly utilized CVR coordination mechanisms are: Project Selection Committees (PSCs): Community-based PSCs are established in selected areas, include a representative sample of stakeholders, and are responsi- ble for selecting projects that are vetted by the PAC/PRC (see below). All project selection shall comply with gender quotas of a minimum of 30% of projects bene- fitting women, and women\u2019s involvement in 30% of leadership and management positions. A Project Approval/Review Committee (PAC/PRC): A PAC/PRC sets the over- all strategic direction for CVR and vets and approves projects selected by PSCs. The PAC/PRC should exhibit a high degree of clarity on its roles and functions. Such entities meet on a semi-regular basis, usually after a certain number of CVR projects have been presented (a minimum of a week in advance) to PAC/PRC members for consideration. The PAC/PRC may request changes to project proposals or ask for additional information to be provided. The PAC/PRC shall ensure all proposals comply with gender quotas. When the two aforementioned coordination mechanisms exist, individual CVR projects will typically be developed by the PSC, reviewed by the PAC/PRC, and then sent back to the PSC for revision and sign-off. PSCs should also proactively ensure alignment between project activities and (actual or planned) regional and municipal plans and priorities. While a short-to-medium-term focus is paramount, CVR projects that directly and indirectly stimulate development dividends (alongside violence reduc- tion) should be favourably considered. PSCs (or equivalent bodies) may conduct a number of different tasks: identifying prospective partners, developing projects, communicating tender processes, vetting project submissions, monitoring beneficiary performance and quality controls, and trouble-shooting problems as and when they arise. PSCs are typically composed of local community members and local leaders and should ensure representation of minority groups, women and youth. Subnational government, private-sector and civil society representatives may also be included, as may representatives of armed groups. PSCs should meet on a regular prescribed basis and serve as the primary interlocutor with the UN mission (mission settings) or UNCT (non-mission settings), and where relevant (such as in refugee settings) the Humanitarian Country Team (HCT). Representatives of DDR/CVR sections (in mission settings) and of the UNCT (in non-mission settings), should, where practical and appropriate, participate in the PSC. PAC/PRCs (or equivalent bodies) are often responsible for reviewing and approv- ing CVR project submissions, and for asking for changes/further information from the PSC when necessary. PAC/PRCs may be composed of senior representatives from the DSRSG (in mission settings) or senior representatives of the UNCT (in non-mission set- tings), alongside government officials and other representatives from relevant UN en- tities. These two aforementioned coordination entities are intended to properly vet pro- ject partners and ensure a high degree of quality control in project execution. In all cases, Standard Operating Procedures (SOPs) shall be developed to help clarify overall goals, structure and approaches for CVR, particularly the nature of PAC/PRCs, PSCs, target groups and criteria for projects. These SOPs shall be regularly adapted and up- dated in line with realities on the ground and the priorities of the mission or the UNCT in non-mission settings.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d4c0179a-51d9-4e2a-b0c0-14846787e71f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 19, + "Paragraph": "CVR in mission and non-mission settings If the priority is for rapid delivery or if local government and non-government capaci- ties are weak, then agreed-upon CVR responses should be administered directly by the UN. However, the UN may also work indirectly, by supporting local partners.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "426fd863-8323-4194-a19f-b77b2870ac8b", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 19, + "Paragraph": "Mission settings In mission settings, CVR may be explicitly mandated by a UN Security Council and/ or General Assembly resolution. CVR will therefore be funded through the allocation of assessed contributions. The UNSC and UNGA directives for CVR are often general, with specific pro- gramming details to be worked out by relevant UN entities in partnership with the host government. In mission settings, the DDR/CVR section should align CVR stra- tegic goals and activities with the mandate of the National DDR Commission (if one exists) or an equivalent government-designated body. The National DDR Commission, which typically includes representatives of the executive, the armed forces, police, and relevant line ministries and departments, should be solicited to provide direct inputs into CVR planning and programming. In cases where government capacity and volition exist, the National DDR Commission may manage and resource CVR by setting targets, managing tendering of local partners and administering financial oversight with donor partners. In such cases, the UN mission shall play a supportive role. Where CVR is administered directly by the UN in the context of a peace support operation or political mission, the DDR/CVR section shall be responsible for the design, development, coordination and oversight of CVR, in conjunction with senior represent- atives of the mission. DDR practitioners shall be in regular contact with representatives of the UNCT as well as international and national partners to ensure alignment of pro- gramming goals, and to leverage the strengths and capacities of relevant UN agencies and avoid duplication. Community outreach and engagement shall be pursued and nurtured at the national, regional, municipal and neighbourhood scale. The DDR/CVR section should typically include senior and mid-level DDR officers. Depending on the budget allocated to CVR, personnel may range from the director and deputy director level to field staff and volunteer officers. A dedicated DDR/CVR team should include a selection of international and national staff forming a unit at headquarters (HQ) as well as small implementation teams at the forward operating base (FOB) level. It is important that DDR practitioners are directly involved in DDR strategy development and decision-making at the HQ. Likewise, regular com- munication between DDR field personnel is crucial to share experiences, identify best practices, and understand wider political and economic dynamics. The UN DSRSG shall establish a DDR/CVR working group or an equivalent body. The working group should be co-chaired by lead agencies, with due consideration for gender equality, youth and child protection, and support to persons with disabilities. The DDR/CVR section, and particularly its field offices, could create a PSC and PAC/PRC. In this event, the PAC/PRC (or equivalent body) should liaise with UNCT partners to align stability priorities with wider development concerns. It may be appro- priate to add an additional support mechanism to oversee and support project partners. This additional support mechanism could be made up of members of the DDR/CVR section who could conduct a variety of tasks, including but not limited to support to the development of project proposals, support to the finalization of project submissions and the identification of possible implementing partners able to work in hotspot sites. Whichever approach is adopted, the DDR/CVR section should ensure transparent and predictable coordination with national institutions and within the mission or UNCT. Where appropriate, DDR/CVR sections may provide supplementary training for implementing partners in selected programming areas. The success or failure of CVR depends in large part on the quality of the partners and partnerships, so it is critical that they are properly vetted.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d0c8443e-b42a-4237-b782-1f78194ee57d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 19, + "Paragraph": "Non-mission settings In non-mission settings, the UNCT will generally undertake joint assessments in response to an official request from the host government, regional bodies and/or the UN Resident Coordinator (RC). These official requests will typically ask for assistance to address particular issues. If the issue concerns armed groups and their active and former members, CVR as a DDR-related tool may be an appropriate response. However, it is important to note that in non-mission settings, there may already be instances where community-based programming at local levels is used, but not as a DDR-related tool. These latter types of responses are anchored under Agenda 2030 and the United Nations Sustainable Development Cooperation Framework (UNSDCF), and have links to much broader issues of rule of law, community security, crime reduction, armed vio- lence reduction and small arms control. If there is no link to active or former members of armed groups, then these types of activities typically fall outside the scope of a DDR process (see IDDRS 2.10 on The UN Approach to DDR). In non-mission settings where there has been agreement that CVR as a DDR- related tool is the most appropriate response to the presence of armed groups, the UN RC shall establish a DDR/CVR working group or an equivalent body. The working group should be co-chaired by lead agencies, with due consideration for gender equality, youth and child protection, and support to persons with disabilities. In non-mission settings there may not always be a National DDR Commission to provide direct inputs into CVR planning and programming. However, alternative interlocutors should be sought \u2013 including relevant line ministries and departments \u2013 in order to ensure that the broad strategic direction of the CVR programme is aligned with relevant national and regional stabilization objectives.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "add01be3-7dde-429f-b090-2faef1a9a2d7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 22, + "Paragraph": "Assessments In both mission and non-mission contexts, CVR programmes shall be preceded by regularly updated assessments, including but not limited to: A security and consequence assessment accounting for the costs and benefits of conducting selected activities (and the risks of not conducting them). A comprehensive and gender-responsive baseline assessment of local violence dynamics. This assessment should take note of factors that may contribute to violence (e.g., harmful use of alcohol and drugs) as well as the impact that vio- lence can have on mental health and well-being (e.g., acute stress, grief, depression and Post Traumatic Stress Disorder). It should also explicitly unpack the threats to security for men, women, boys and girls, and analyse the root causes of violence and insecurity, including their gender dimensions. Conflict context analysis. A detailed stakeholder mapping and a diagnostic of the capacities, interests and cohesiveness of communities and national institutions. An assessment of local market conditions. The dynamics of eligible and non-eligible armed groups \u2013 their leadership, internal dynamics, command and control, linkages with elites and external support. Importantly, the privileging of some geographic areas for CVR over others may result in disputes that should be anticipated and accounted for in conflict assessments. While information supplied by security and intelligence units is essential, there is no substitute for grounded diagnostics and mapping by UN field offices, implementing partners and third-party researchers. Assessments can be cross-sectional or ongoing, and should be conducted by national or international experts in partnership with UNCT. Assessments should identify prospective beneficiary groups; assess govern- ment, private and civil society capacities; and review the causes and consequences of organized and interpersonal violence. These assessments are critical for the design of project proposals, setting appropriate benchmarks, and monitoring and evaluation.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "61d13646-b233-43ea-be3d-41329698770a", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 23, + "Paragraph": "Target groups and locations The selection of CVR target groups and intervention sites is a political decision that should be taken on the basis of assessments (see section 6.3), and in consultation with national and/or local government authorities. The identification of target groups and locations for CVR should also be informed through: The priorities of the host government and, if in a mission context, the mandate of the mission; and Consultations with UN senior management. DDR practitioners can, where appropriate, adopt broad categories for target groups that can be applied nationally. In some cases, the selection of target groups is made pragmatically based on a list prepared by a PSC (or equivalent body) and/ or implementing partners. Prospective participants should be vetted locally according to pre-set eligibility criteria. For example, these eligibility criteria may require former affiliation to specific armed groups and/or possession of modern or artisanal weapons (see section 4.2). Clear criteria for who is included and excluded from CVR programmes should be carefully communicated in order to avoid unnecessarily inflating expectations and generating tension. One means of doing this is to prepare a glossary with specific selection criteria that can be shared with implementing partners and PSCs. In all cases, DDR practitioners shall ensure that women and girls are adequately represented in the iden- tification of priorities and implementation strategies, by making sure that: Assessments include separate focus group discussions for women, led by female facilitators. Women\u2019s groups are engaged in the consultative process and as implementing partners. The PAC/PRC (or equivalent entity) is 30% female. A minimum of 30% of CVR projects within the broader CVR programme directly benefit women\u2019s safety and security issues. The entire CVR programme integrates and leverages opportunities for women\u2019s leadership and gender equality. Staffing of CVR projects includes female employees. Additional target groups, assessed as having the potential to either amplify or undermine broader security and stability efforts in general, or DDR in particular, may be identified on a case-by-case basis. For example, CVR may be expanded to include newly displaced populations \u2013 refugees and internally displaced people (IDPs) \u2013 that are at risk of mobilization into armed groups or that may unintentionally generate flashpoints for community violence. There may also be possibilities to extend CVR programmes to particular geographic areas and population groups susceptible to out- breaks of violence and/or experiencing concentrated disadvantage. The flexibility to adapt CVR to target groups that may disrupt and impede the DDR process is critical.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e723bd5c-3135-4628-b7d6-b3d637f22c2c", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 24, + "Paragraph": "Types of projects There is tremendous heterogeneity in the types of CVR projects that are implemented as part of CVR programmes, both within and between countries. However, there are also commonalities. All CVR programmes generate interactions with state authorities and/ or stimulate inter- and intra-community dialogue. These communication exchanges not only help to ensure better identification of the types of CVR projects to support, but they can also contribute to the more effective design, implementation, and monitoring and evaluation of CVR. DDR/CVR partners should be aware that some prospective im- plementing partners shall require support in preparing project proposals. Appropriate support mechanisms should be introduced in advance to offer support in relation to proposal writing and reporting processes so as to avoid major delays. A wide array of technical sectors are included in CVR interventions. These include commercial-based projects (e.g., grocery retail, bakeries, tailors, mechanics, salons, agri- cultural production, livestock and animal husbandry activities), social projects (e.g. the construction and maintenance of youth centres, civic education, community reconcilia- tion), infrastructure initiatives (e.g., the construction of roads, bridges, clinics, schools and other labour-based activities involving training, apprenticeship and paid work for ex-com- batants and at-risk groups), security and corrections measures (e.g., community-oriented policing, lighting systems, prevention of gender-based violence and corporal punishment), and weapons and ammunition management activities (e.g., collection, storage, manage- ment and destruction). Table 5 below provides a summary of possible CVR projects. The selection of CVR projects shall be informed by political, climatic and demograph- ic factors as well as the merits of individual project proposals. PSCs and PAC/PRCs (or equivalent entities) may prioritize CVR projects according to the stage of the peace pro- cess (e.g., contingent on the short-term emergency to medium-term recovery needs), geo- graphic location (e.g., water wells and animal husbandry in dry climates and information and communications technology (ICT) training and business apprenticeships in urban settings) and social and identity-related dynamics (e.g., projects tailored to specific reli- gious or ethnic groups). The sequencing and timing of financial support for CVR projects should not be arbitrary, but should account for the specific types of projects approved. For example, financing for agricultural projects may require more rapid disbursement (in line with seasonal imperatives) than other initiatives. It is also critical that implementing part- ners are equipped with the appropriate technical capacities to meet project timelines \u2013 the lack of engineering support, for example, can generate delays and hinder maintenance. DDR practitioners should prioritize project development and financing accordingly. Precisely because CVR is short-to-medium-term, selected projects should also in- clude a basic sustainability plan, including realistic commitments for monitoring and evaluation and details on when and how CVR activities will be handed over in full to", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5c464c78-bfd7-45cb-b4e2-bee391ac1eb6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": null, + "Paragraph": "the national government (see IDDRS 3.50 on Monitoring and Evaluation). Clear provi- sions for these activities should be included (and resources appropriately allocated) in final contracts. Implementing partner contracts should include clauses that specify the maintenance and management of specific assets, together with direction on how the initiative will be sustained after funding comes to an end. Likewise, contracts should specify the requirement to collect minimum qualitative and quantitative information on CVR project outcomes and impacts. Where implementing partners lack such capac- ities or where supplementary training may not be sufficient, DDR practitioners should explore opportunities to facilitate such activities with third parties.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6500099d-71fd-416c-b346-d9a63bb9ab41", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 26, + "Paragraph": "Partnerships and implementation CVR programmes should adopt a graduated approach to implementation. In many cases, it is advisable to start CVR initiatives with an experimental pilot phase of 6\u20138 months. Pilot projects are useful to assess local capacities, identify prospective part- ners and test out community receptivity. An incremental approach may help DDR practitioners sharpen their overall objectives and theories of change, while gradually building up strategic partnerships across government, host communities and interna- tional agencies that are essential for longer-term success. There are potentially strong demonstration effects from successful projects, and these should be advertised where possible. Delays in CVR implementation \u2013 particularly in relation to project selection and project disbursements \u2013 may undermine the credibility of the intervention and gen- erate risks for personnel. Bottlenecks are routine, yet in many cases avoidable. DDR practitioners, implementing partners and PSCs (or equivalent entities) shall set real- istic timelines, manage expectations and ensure regular communication with project beneficiaries. DDR practitioners may also elect to introduce administrative procedures to speed up decision-making on project selection, reduce the number of tranches for projects and prioritize initiatives that are subject to seasonal effects (e.g., planting, har- vest, transhumance, insect-born disease), climatic factors (e.g., rainfall, flooding and droughts), and calendar years (e.g., schooling and holidays). CVR projects should ensure a high degree of oversight and support to benefi- ciaries. Effective CVR is often a function of the quality of field personnel \u2013 including implementing partners \u2013 and their ability to apply a high degree of emotional intelli- gence. Experienced DDR practitioners should have a demonstrated ability to engage with complex social and cultural norms and their intersecting gender dynamics in order to build trust with beneficiaries and affected communities. This engagement frequently requires a minimum competence in the local language(s) together with a developed capacity to empathize and communicate. DDR field practitioners should have the discretion and autonomy to craft inter-agency partnerships, rapidly solve problems in volatile settings, and innovate in moments of crisis. CVR shall involve an array implementing partners and a variety of coordinat- ing mechanisms. The nature of these partnerships and coordination mechanisms shall depend on the national and local context, the extent of capacities on the ground and the resources available. CVR coordination and partnerships should be devolved as much as possible to the local level, and bureaucratic and administrative procedures should be kept to an acceptable minimum. Decisions on the particular form and content of part- nerships and coordination will be informed by the CVR mandate; the peace agreement (if one has been signed); government, donor, and mission and UNCT capacities; and local dynamics on the ground. Partners and coordinating mechanisms may change over time.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5c612c54-0172-4d8b-af09-8853f5b46c38", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 27, + "Paragraph": "Timeframes and budgeting There is no fixed or standard timeframe for CVR. The length of CVR projects varies according to the nature of the context, including the funding source \u2013 whether an assessed budget, a dedicated trust fund, a voluntary contribution or some combination of these options. Specific CVR projects in mission contexts will be no more than one year, whereas this timeframe may be longer in non-mission contexts, particularly when it forms a single programme with reintegration support. Setting a temporal threshold is important to set expectations and to avoid an indefinite continuation of CVR projects. DDR practitioners should also set aside adequate time to undertake due diligence of partners, organize partnership modalities, transfer grants, monitor and evaluate inter- ventions, and communicate results. There are economies of scale that are associated with CVR. Specifically, there are advantages in investing in larger CVR projects with wider caseloads from capital expenditure (CAPEX) and operational expenditure (OPEX) perspectives. Specifically, the initial CAPEX in CVR \u2013 in personnel, transportation, logistics and large project outlays \u2013 can be high. This is because many CVR interventions are frequently pursued in challenging environments: large public works projects often require complex engi- neering support. The marginal OPEX implications of adding additional beneficiaries is comparatively low. CVR may at times be more cost-effective as the size of the caseload grows. There are risks, of course, in that CVR programmes may introduce biases by favouring projects and locations with larger prospective caseloads. In some cases, it may be preferable to explore mobile CVR teams for modest-sized target groups in hard-to-reach areas.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a4cd8598-cabb-4b9c-9d54-f1c78230fbdc", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.30-Community-Violence-Reduction", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.30-Community-Violence-Reduction", + "PageNum": 27, + "Paragraph": "Communication DDR practitioners should design a robust communications and sensitization plan to reach prospective and actual beneficiaries. The plan should be informed by the baseline assessment (see section 6.3) and by an assessment of how people take up information and what outlets and means are considered most legitimate. These assessments should be adjusted as conditions change on the ground. Outreach can be facilitated by UN rep- resentatives, implementing partners, PSCs (or equivalent entities) and project benefi- ciaries themselves. Public information and sensitization campaigns shall explain CVR objectives, project selection criteria and the timelines involved. The goal is to strengthen the self-selection of prospective participants while also shaping the expectations of in- dividuals and communities. All communications, education and outreach campaigns and activities should be gender-responsive so as to reach women and girls and men and boys. Communications should also be gender-transformative and inclusive. This entails having a balance of voices and visual representations of men, women, boys, girls, minorities and other vulnerable groups, and their active involvement in leader- ship and implementation of outreach and education activities. The communications plan for a CVR programme should have clearly identified objectives, core stakeholder groups and expected results. Such plans can be delivered through television, radio, print outlets, social media, direct SMS outreach and other platforms. Ensuring a minimum level of transparency in CVR measures is critical in order to manage stakeholder expectations, be they government counterparts, interna- tional and national partners, or beneficiaries. CVR communications activities in mission and non-mission settings should be aligned to wider UN security, stability and devel- opment priorities. The communications plan can be administered in mission and country office settings through, where appropriate, a public sensitization and outreach (PSO) unit or equivalent body. All plans shall be clear about the intended primary and intermediate audiences, the languages being used, the underlying behavioural shifts that are expected (theory of change), the particular approaches to addressing the needs of women and girls as well as the protection of children, the most appropriate methods and modes for delivering sensitization material, the training measures for staff and communicators, and the expected indicators to track outputs and outcomes. Communications strate- gies should support positive gender norms and the positive roles played by men and women.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c224ff43-3b04-426c-af94-9b40029f12af", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": null, + "Paragraph": "Summary A variety of actors in the UN system support DDR processes within national contexts. In carrying out DDR, these actors are governed by their respective constituent instru- ments, by the specific mandates provided by their respective governing bodies, and by applicable internal rules, policies and procedures. DDR is also undertaken within the context of a broader international legal frame- work, which contains rights and obligations that may be of relevance for the imple- mentation of DDR tasks. This framework includes international humanitarian law, international human rights law, international criminal law, and international refugee law, as well as the international counter-terrorism and arms control frameworks. UN system-supported DDR processes should be implemented in a manner that ensures that the relevant rights and obligations under the international legal framework are respected.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f53faeca-b2d5-471c-8b56-3adfcdc76f48", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": null, + "Paragraph": "Module scope and objectives This module aims to provide an overview of the international legal framework that may be relevant to UN system-supported DDR processes. Unless otherwise stated, in this module, the term \u201cDDR practitioners\u201d refers only to DDR practitioners within the UN system, namely the United Nations (UN), its subsidiary organs, country offices and field missions, as well as UN specialized agencies and related organizations. This module is intended to sensitize DDR practitioners within the UN system to the legal issues that should be considered, and that may arise, when developing or im- plementing a DDR process. This sensitization is done so that DDR practitioners will be conscious of when to reach out to an appropriate, competent legal office to seek legal advice. Each section thus contains guiding principles and some red lines, where they exist, to highlight issues that DDR practitioners should be aware of. Guiding principles seek to provide direction, while red lines indicate boundaries that DDR practitioners should not cross. If it is possible that a red line might be crossed, or if a red line has been crossed inadvertently, legal advice should be sought immediately. This module should not be relied upon to the exclusion of legal advice in a specific case or context. In situations of doubt with regard to potential legal issues, or to the application or interpretation of a particular legal rule, advice should always be sought from the competent legal office of the relevant entity, who may, when and as appropri- ate, refer it to their relevant legal office at headquarters.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8e5cc8ba-24d9-4f0e-bfb4-6b2b25237777", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 3, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in ID- DRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardiza- tion (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \t\u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. This Module does not adopt the terminology of \u2018must\u2019. For the purposes of this Module, the word \u2018shall\u2019 is used to indicate an obligation, arising from a variety of sources1 , which has to be complied with by the DDR practitioner.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "02870d57-424a-4f80-8bf4-e5b86a3f3874", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 3, + "Paragraph": "Introduction In carrying out DDR processes, UN system actors are governed by their constituent instruments and by the specific mandates given to them by their respective governing bodies. In general, a mandate authorizes and tasks an actor to carry out specific func- tions. Mandates are the main points of reference for UN-supported DDR processes that will determine the scope of activities that can be undertaken. In the case of the UN and its subsidiary organs, including its funds and programmes, the primary source of all mandates is the Charter of the United Nations (the \u2018Charter\u2019). Specific man- dates are further established through the adop- tion of decisions by the Organization\u2019s principal organs in accordance with their authority under the Charter. Both the General Assembly and the Security Council have the competency to provide DDR mandates as measures related to the main- tenance of international peace and security. For the funds and programmes, mandates are further provided by the decisions of their executive boards. Specialized agencies and related organizations of the UN system similarly operate in host States in accordance with the terms of their constituent instruments and the decisions of their deliberative bodies or other competent organs. In addition to mandates, UN system actors are governed by their internal rules, policies and procedures. DDR processes are also undertaken in the context of a broader international le- gal framework and should be implemented in a manner that ensures that the rele- vant rights and obligations under that broader legal framework are respected. Peace agreements, where they exist, are also crucial in informing the implementation of DDR practitioners\u2019 mandates by providing a framework for the DDR process. Peace agree- ments can take a variety of forms, ranging from local-level agreements to national-level ceasefires and Comprehensive Peace Agreements (see IDDRS 2.20 on The Politics of DDR). Following the conclusion of an agreement, a DDR policy document may also be developed by the Government and the signatory armed groups, often with UN support. Where the UN DDR mandate consists of providing support to national DDR efforts and makes reference to the peace agreement, DDR practitioners will typically work within the framework of the peace agreement and the DDR policy document. DDR processes can also be implemented in contexts where there are no peace agreements (see IDDRS 2.10 on The UN Approach to DDR). Therefore, if there is no such framework in place, UN system DDR practitioners will have to rely solely on their own entity\u2019s mandate in order to determine their role and responsibilities, as well as the applicable basic principles. Finally, to facilitate DDR processes, UN system actors conclude project and technical agreements with the States in which they operate, which also provide a framework. They also enter into agreements with the host State to regulate their status, privileges and immunities and those of their personnel.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "34c524c1-059d-470e-a042-a5a6f30508ab", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 4, + "Paragraph": "General guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of UN supported DDR processes. In addition to these principles, the following general guiding principles related specifically to the legal framework apply when carrying out DDR processes. Abide by the applicable legal framework. The applicable legal framework should be a core consideration at all stages, when drafting, designing, executing and eval- uating DDR processes. Failure to abide by the applicable legal framework may result in consequences for the UN entity involved and the UN more generally, including possible liabilities. It may also lead to personal accountability for the DDR practitioner(s) involved. Know your mandate. DDR practitioners should be familiar with the source and scope of their mandate. To the extent that their involvement in the DDR process requires coordination and/or cooperation with other UN system actors, they should also know the respective roles and responsibilities of those other actors. If a peace agreement exists, it should be one of the first documents that DDR practitioners consult to understand the framework in which they will carry out the DDR process. Develop a concept of operations (CONOPS). DDR practitioners should have a com- mon, agreed approach in order to ensure coherence amongst UN system-supported DDR processes and coordination among the various UN system actors that are con- ducting DDR in a particular context. This can be achieved through a written CON- OPS, developed in consultation, as necessary, with the relevant headquarters. The CONOPS can also be adjusted to include the legal obligations of the UN system actor. Develop operation-specific standard operating procedures (SOPs) or guide- lines for DDR. Consistent with the CONOPS, DDR practitioners should consider developing operation-specific SOPs or guidelines. These may address, for instance, standards for cooperation with criminal justice and other accountability process- es, measures for controlling access to DDR encampments or other installations, measures for the safe handling and destruction of weapons and ammunition, and other relevant issues. They may also include references to, and explanations of, the applicable legal standards. Include legal considerations in all relevant project documents. In general, legal considerations should be integrated and addressed, as appropriate, in all relevant written project documents, including those agreed with the host State. Seek legal advice. As a general matter, DDR practitioners should seek legal advice when they are in doubt as to whether a situation raises legal concerns. In particular, DDR practitioners should seek advice when they foresee new elements or signif- icant changes in their DDR processes (e.g., when a new type of activity or new partners are involved). It is important to know where, and how, such advice may be requested and obtained. Familiarity with the legal office in-country and having clear channels of communication for seeking expeditious advice from headquarters are critical.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2ed78381-1492-46ae-8f75-1b017e00dec1", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 5, + "Paragraph": "Mandates As noted above, mandates are the main points of reference for UN-supported DDR processes. The mandate will determine what, when and how DDR processes can be supported or implemented. There are various sources of a UN actor\u2019s mandate to assist DDR processes. For UN peace operations, which are subsidiary organs of the Security Council, the mandate is found in the applicable Security Council resolution. Certain UN funds and programmes also have explicit mandates addressing DDR. In the absence of explicit, specific DDR-related provisions within their mandates, these UN funds and programmes should conduct any activity related to DDR processes in accordance with the principles and objectives in their general mandates. In addition, a number of specialized agen- cies and related organizations are mandated to conduct activities related to DDR processes. These entities often cooperate with UN peace operations, funds and programmes within their respective mandates in order to ensure a common approach to and coherency of their activities. Where a peace agreement exists, it may address the roles and responsibilities of DDR practitioners, both domestic and international, the basic principles applicable to the DDR pro- cess, the strategic approach, institutional mech- anisms, timeframes and eligibility criteria. The peace agreement would thus provide guidance to DDR practitioners as to the implementation of their DDR mandate, where they are tasked with providing support to national DDR efforts undertaken pursuant to the peace agreement. It is important to remember, however, that while peace agree- ments may provide a framework for and guide the implementation of the DDR process, they do not provide the actual mandate to undertake such activities for UN system actors. It is the reference to the peace agreement in the practitioner\u2019s DDR mandate that makes the peace agreement (and the accompanying DDR policy document) relevant. As mentioned above, the authority to carry out DDR processes is established in a UN system actor\u2019s constitutive instrument and/or in a decision by the actor\u2019s governing organ. In countries where no peace agreement exists, there may be no overarching frame- work for the DDR process, which could result in a lack of clarity regarding objectives, activities, coordination and strategy. In such cases, the fall-back for DDR practitioners would be to rely solely on the mandate of their own entity that is applicable in the relevant State to determine their role in the DDR process, how to coordinate with other actors and the activities they may undertake. If a particular mandate includes assistance to the national authorities in the devel- opment and implementation of a DDR process, the UN system actor concerned may, in accordance with its mandate, enter into a technical agreement with the host State on logistical and operational coordination and cooperation. The technical agreement may, as necessary, integrate elements from the peace agreement, if one exists. DDR mandates may also include provisions that tie the development and imple- mentation of DDR processes to other ongoing conflict and post-conflict initiatives, including ones concerning transitional justice (TJ). Many UN system entities operating in post-conflict situations have simultaneous DDR and TJ mandates. The overlap of TJ measures with DDR processes can create tension but may also contribute towards achieving the long-term shared objectives of reconciliation and peace. It is thus crucial that UN-supported DDR processes have a clear and coherent relationship with any TJ measures ongoing within the country (see IDDRS 6.20 on DDR and Transitional Justice). Specific guiding principles DDR practitioners should be familiar with the most recent documents establishing the mandate to conduct DDR processes, specifically, the source and scope of that mandate. When starting a new form of activity related to the DDR process, DDR practitioners should seek legal advice if there is doubt as to whether this new form of activity is authorized under the mandate of their particular entity. When starting a new form of activity related to the DDR process, DDR practitioners should ensure coordination with other relevant initiatives. Peace agreements, in themselves, do not provide UN entities with a mandate to support DDR. It is the reference to the peace agreement in the mandate of the DDR practitioner\u2019s particular entity that makes the peace agreement (and the accompa- nying DDR policy document) relevant. This mandate may set boundaries regarding what DDR practitioners can do or how they go about their jobs.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3a2dde33-6d80-4b45-bb49-7706a4e70a09", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 7, + "Paragraph": "Normative legal framework DDR processes are also undertaken within the context of a broader international legal framework of rights and obligations that may be relevant to their implementation. This includes, in particular, international humanitarian law, international human rights law, international criminal law, international refugee law, and the international counter- terrorism and arms control frameworks. For the purpose of this module, this interna- tional legal framework is referred to as the \u2018normative legal framework\u2019. UN-supported DDR processes should be implemented so as to ensure that the relevant rights and obligations under that normative legal framework are respected.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1627dc9c-ea17-471a-b407-7d04ce16e4a9", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 7, + "Paragraph": "International humanitarian law International humanitarian law (IHL) applies to situations of armed conflict and regulates the conduct of armed forces and non-State armed groups in such situations. It seeks to limit the effects of armed conflict, mainly by protecting persons who are not or are no longer participating in the hostilities and by regulating the means and methods of warfare. Among other things, IHL sets out the obligations of parties to armed conflicts to protect civilians, injured and sick persons, and persons deprived of their liberty for reasons related to armed conflicts. The main sources of IHL are the Geneva Conventions (1949) and the two Additional Protocols (1977).2 There are two types of armed conflict under IHL: (1) international armed conflict (an armed conflict between States) and (2) non-international armed conflict (an armed conflict between a State\u2019s armed forces and an organized armed group, or between organized armed groups). Each type of armed conflict is governed by a distinct set of rules, though the differences between the two regimes have diminished as the law governing non-international armed conflict has developed. Article 3, which is contained in all four Geneva Conventions (often referred to as \u2018common article 3\u2019), applies to non-international armed conflicts and establishes fun- damental rules from which no derogation is permitted (i.e., States cannot suspend the performance of their obligations under common article 3). It requires, among other things, humane treatment for all persons in enemy hands, without any adverse distinc- tion. It also specifically prohibits murder; mutilation; torture; cruel, humiliating and degrading treatment; the taking of hostages and unfair trial. Serious violations of IHL (e.g., murder, rape, torture, arbitrary deprivation of liberty and unlawful confinement) in an international or non-international armed conflict situation may constitute war crimes. Issues relating to the possible commission of such crimes (together with crimes against humanity and genocide), and the prosecution of such criminals, are of particular concern when assisting Member States in the development of eligibility criteria for DDR processes (see section 4.2.4, as well as IDDRS 6.20 on DDR and Transitional Justice). The UN is not a party to the international legal instruments comprising IHL. However, the Secretary-General has confirmed that certain fundamental principles and rules of IHL are applicable to UN forces when, in situations of armed conflict, they are actively engaged as combatants, to the extent and for the duration of their engage- ment (ST/SGB/1999/13, sect. 1.1). In the context of DDR processes assisted by UN peacekeeping operations, IHL rules regarding deprivation of liberty are normally not applicable to activities under- taken within DDR processes. This is based on the fact that participation in DDR is voluntary \u2014 in other words, persons enrol in DDR processes of their own accord and stay in DDR processes voluntarily (see IDDRS 2.10 on The UN Approach to DDR). They are not deprived of their liberty, and IHL rules concerning detention or internment do not apply. In the event that there are doubts as to whether a person is in fact enrolled in DDR voluntarily, this issue should immediately be brought to the attention of the com- petent legal office, and advice should be sought. Separately, legal advice should also be sought if the DDR practitioner is of the view that detention is in fact taking place. IHL may nevertheless apply to the wider context within which a DDR process is situated. For example, when national authorities, for whatever purpose, wish to take into custody persons enrolled in DDR processes, the UN peacekeeping operation or other UN system actor concerned should take measures to ensure that those national authorities will treat the persons concerned in accordance with their obligations under IHL, and international human rights and refugee laws, where applicable. Specific guiding principles DDR practitioners should be conscious of the conditions of DDR facilities, particu- larly with respect to the voluntariness of the presence and involvement of DDR participants and beneficiaries (see IDDRS 3.10 on Participants, Beneficiaries and Partners). DDR practitioners should be conscious of the fact that IHL may apply to the wider context within which DDR processes are situated. Safeguards should be put in place to ensure compliance with IHL and international human rights and refugee laws by the host State authorities. Red lines Participation in DDR processes shall be voluntary at all times. DDR participants and beneficiaries are not detained, interned or otherwise deprived of their liberty. DDR practitioners should seek legal advice if there are concerns about the volun- tariness of involvement in DDR processes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "235efd1c-ca30-4c0e-b6d0-8911c257a3be", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 8, + "Paragraph": "International human rights law Article 55 of the UN Charter calls on the Organization to promote universal respect for, and observance of, human rights and fundamental freedoms for all, based on the recogni- tion of the dignity, worth and equal rights of all. In their work, all UN personnel have a re- sponsibility to ensure that human rights are promoted, respected, protected and advanced. Accordingly, UN DDR practitioners have a duty in carrying out their work to promote and respect the human rights of all DDR participants and beneficiaries. The main sources of international human rights law are: The Universal Declaration of Human Rights (1948) (UDHR) was proclaimed by the UN General Assembly in Paris on 10 December 1948 as a common standard of achievement for all peoples and all nations. It set out, for the first time, fundamen- tal human rights to be universally protected.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "74ee1805-dece-47e6-bf98-cff39330b221", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": null, + "Paragraph": "The International Covenant on Civil and Political Rights (1966) (ICCPR) estab- lishes a range of civil and political rights, including rights of due process and equality before the law, freedom of movement and association, freedom of religion and political opinion, and the right to liberty and security of person. The International Covenant on Economic, Social and Cultural Rights (1966) (ICESCR) establishes the rights of individuals and duties of States to provide for the basic needs of all persons, including access to employment, education and health care. The Convention against Torture and Other Cruel, Inhuman or Degrading Treat- ment or Punishment (1984) (CAT) establishes that torture is prohibited under all circumstances, including in times of war, internal political instability or other public emergency, and regardless of the orders of superiors or public authorities. The Convention on the Rights of the Child (1989) (CRC) and the Optional Proto- col to the CRC on Involvement of Children in Armed Conflict (2000) recognize the special status of children and reconfirm their rights, as well as States\u2019 duty to protect children in a number of specific settings, including during armed conflict. The Optional Protocol is particularly relevant to the DDR context, as it concerns the rights of children involved in armed conflict.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "780cf03d-0f91-47eb-ba32-2d66785ef946", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 9, + "Paragraph": "The Convention on the Elimination of All Forms of Discrimination against Women (1979) (CEDAW) defines what constitutes discrimination against women and sets up an agenda for national action to end it. CEDAW provides the basis for realizing equality between women and men through ensuring women\u2019s equal access to, and equal opportunities in, political and public life \u2013 including the right to vote and to stand for election \u2013 as well as education, health and employment. States parties agree to take all appropriate measures, including legislation and temporary special measures, so that women can enjoy all their human rights and fundamental freedoms. General recommendation No. 30 on women in conflict prevention, conflict and post-conflict situations, issued by the CEDAW Commit- tee in 2013, specifically recommends that States parties, among others, ensure (a) women\u2019s participation in all stages of DDR processes; (b) that DDR processes spe- cifically target female combatants and women and girls associated with armed groups and that barriers to their equitable participation are addressed; (c) that mental health and psychosocial support as well as other support services are pro- vided to them; and (d) that DDR processes specifically address women\u2019s distinct needs in order to provide age and gender-specific DDR support. The Convention on the Rights of Persons with Disabilities (2006) (CRPD) clarifies and qualifies how all categories of rights apply to persons with disabilities and identifies areas where adaptations have to be made for persons with disabilities to effectively exercise their rights, and where protection of rights must be reinforced. This is also relevant for people with psychosocial, intellectual and cognitive disa- bilities, and is a key legislative framework addressing their human rights including the right to quality services and the right to community integration. The International Convention for the Protection of All Persons from Enforced Disappearance (2006) (ICPPED) establishes that enforced disappearances are pro- hibited under all circumstances, including in times of war or a threat of war, inter- nal political instability or other public emergency. The following rights enshrined in these instruments are particularly relevant, as they often arise within the DDR context, especially with regard to the treatment of per- sons located in DDR facilities (including but not limited to encampments): Right to life (article 3 of UDHR; article 6 of ICCPR; article 6 of CRC; article 10 of CRPD); Right to freedom from torture or other cruel, inhuman or degrading treatment or punishment (article 5 of UDHR; article 7 of ICCPR; article 2 of CAT; article 37(a) of CRC; article 15 of CRPD); Right to liberty and security of person, which includes the prohibition of arbitrary arrest or detention (article 9 of UDHR; article 9(1) of ICCPR; article 37 of CRC); Right to fair trial (article 10 of UDHR; article 9 of ICCPR; article 40(2)(iii) of CRC); Right to be free from discrimination (article 2 of UDHR; articles 2 and 24 of ICCPR; article 2 of CRC; article 2 of CEDAW; article 5 of CRPD); and Rights of the child, including considering the best interests of the child (article 3 of CRC; article 7(2) of CRPD), and protection from all forms of physical or mental violence, injury or abuse, neglect or negligent treatment, maltreatment or exploitation (article 19 of CRC). While the UN is not a party to the above instruments, they provide relevant standards to guide its operations. Accordingly, the above rights should be tak- en into consideration when developing UN-supported DDR processes, when supporting host State DDR processes and when national authorities, for what- ever purpose, wish to take into custody persons enrolled in DDR processes, in order to ensure that the rights of DDR participants and beneficiaries are promoted and respected at all times. The application and interpretation of inter- national human rights law must also be viewed in light of the voluntary nature of DDR process- es. The participants and beneficiaries of DDR processes shall not be held against their will or subjected to other deprivations of their liber- ty and security of their persons. They shall be treated at all times in accordance with interna- tional human rights law norms and standards. Special protections may also apply with respect to members of particularly vulnerable groups, including women, children and persons with disabilities. Specifically, with regard to women participating in DDR processes, Security Council resolution 1325 (2000) on women and peace and security calls on all actors involved, when negoti- ating and implementing peace agreements, to adopt a gender perspective, including the special needs of women and girls during repatriation and resettlement and for rehabilitation, reintegration and post-conflict reconstruction (para. 8(a)), and encourages all those involved in the planning for DDR to consider the different needs of female and male ex-combatants and to take into account the needs of their dependents. In all, DDR processes should be gender-responsive, and there should be equal access for and participation of women at all stages (see IDDRS 5.10 on Women, Gender and DDR). Specific guiding principles DDR practitioners should be aware of the international human rights instruments that guide the UN in supporting DDR processes. DDR practitioners should be aware of the relevant domestic legislation that pro- vides for the rights and freedoms of DDR participants and beneficiaries within the Member State where the DDR process is being undertaken. DDR practitioners shall take the necessary precautions, special measures or actions to protect and ensure the human rights of DDR participants and beneficiaries. DDR practitioners shall report and seek legal advice in the event that they witness any violations of human rights by national authorities within a UN-supported DDR facility. Red lines DDR practitioners shall not facilitate any violations of human rights by national authorities within a UN-supported DDR facility.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "62aa1242-d903-4802-a7e9-948c08787d72", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 11, + "Paragraph": "International refugee law and internally displaced persons International refugee law International refugee law serves as another part of the normative international legal framework that may be of relevance to UN-supported DDR processes. This area of law may be particularly relevant when DDR processes include a repatriation component or are open to foreign nationals (see IDDRS 5.40 on Cross-Border Population Movements). The Convention Relating to the Status of Refugees (the \u20181951 Convention\u2019) estab- lishes the rights and duties of refugees, and the obligations of States to such persons, including the prohibition of forced repatriation of asylum seekers and refugees (the principle of non-refoulement). While the UN is not a party to the 1951 Convention, it provides relevant standards to guide its operations (ST/SGB/1999/13). The Convention is both a status- and rights-based instrument and is founded upon a number of funda- mental principles, most notably non-discrimination, non-penalization for illegal entry or presence3 , and non-refoulement. A refugee is a person who is outside his or her country of nationality or habitual residence; has a well-founded fear of being persecuted because of his or her race, religion, nationality, membership of a particular social group or political opinion; and is unable or unwilling to avail himself or herself of the protection of that country, or to return there, for fear of persecution.4 However, articles 1C to 1F of the 1951 Convention provide for circumstances in which it shall not apply to a person who would otherwise fall within the general defi- nition of a refugee. In the context of situations involving DDR processes, article 1F is of particular relevance, in that it stipulates that the provisions of the 1951 Convention shall not apply to any person with respect to whom there are serious reasons for con- sidering that he or she has: committed a crime against peace, a war crime or a crime against humanity, as defined in relevant international instruments; committed a serious non-political crime outside the country of refuge prior to the person\u2019s admission to that country as a refugee; or been guilty of acts contrary to the purposes and principles of the UN. Asylum means the granting by a State of protection on its territory to individu- als fleeing another country owing to persecution, armed conflict or violence. Military activity is incompatible with the concept of asylum. Persons who pursue military activ- ities in a country of asylum cannot be asylum seekers or refugees. It is thus important to ensure that refugee camps/settlements are protected from militarization and the presence of fighters or combatants. During emergency situations, particularly when people are fleeing armed con- flict, refugee flows may occur simultaneously or mixed with combatants or fighters. It is thus important that combatants or fighters are identified and separated. Once sep- arated from the refugee population, combatants and fighters may enter into a DDR process, if available. Former combatants or fighters who have been verified to have genuinely and per- manently renounced military activities may seek asylum. Participation in a DDR pro- gramme provides a verifiable process through which the former combatant or fighter genuinely and permanently renounces military activities. Other types of DDR processes may also provide this verification, as long as there is a formal process through which a combatant becomes an ex-combatant (see IDDRS 4.20 on Demobilization). DDR practitioners should also take into consideration that civilian family mem- bers of participants in DDR processes may be refugees or asylum seekers, and efforts must be in place to consider family unity during, for example, repatriation. The principle of non-refoulement The principle of non-refoulement (article 33 of the 1951 Convention) is so fundamental that no reservations or derogations may be made to it. The principle also has the status of international customary law, which means that it is binding on all States, including those that are not party to the 1951 Convention. It provides that no State shall expel or return (\u2018refouler\u2019) a refugee against his or her will, in any manner whatsoever, to a territory where he or she fears with good reason that his or her life or freedom would be threatened, or where he or she would be subject to persecution on account of his/her race, religion, nationality, membership of a particular social group or political opinion. The prohibition of refoulement under international refugee law is applicable to any form of forcible removal, including deportation, expulsion, extradition, informal transfer or \u2018renditions\u2019, and non-admission at the border, as per article 33(1) of the 1951 Convention, which refers to expulsion or return (refoulement) \u201cin any manner what- soever\u201d. This has been interpreted to include not only a return to the country of origin or, in the case of a stateless person, the country of former habitual residence, but also to any other place where a person has reason to fear threats to his or her life or freedom related to one or more of the grounds set out in the 1951 Convention, or from where the person risks being sent to a territory where he or she faces such a risk.5 In the context of DDR, this means that a former fighter/combatant who has re- nounced military activity and been admitted to the asylum procedure is protected from refoulement by virtue of Article 33(1) of the 1951 Convention and international customary law. This precludes the forced repatriation of this individual unless and until his or her asylum claim is finally rejected. Under Article 33(2) of the 1951 Convention, an exception to the non-refoulement obliga- tion in international refugee law exists where (1) there are reasonable grounds for regarding the refugee as a danger to the security of the country in which the refugee is located; or (2) the refugee, having been convicted of a particularly serious crime by final judgment, consti- tutes a danger to the community of the country where the refugee is located. While the principle of non-refoulement originates in international refugee law, it has also become an integral part of international human rights law. This principle is ex- plicitly contained in Article 3 of the CAT, and has also been interpreted by the Human Rights Committee to be part of Articles 6 (right to life) and 7 (right to be free from tor- ture or other cruel, inhuman or degrading treatment or punishment) of the ICCPR.6 In international human rights law, the principle applies without exception, and there is no provision similar to Article 33(2) of the 1951 Convention (see above). Accordingly, States are bound not to transfer any individual to another State, if this would expose him or her to a real risk of being subjected to arbitrary deprivation of life, or torture or other cruel, inhuman or degrading treatment or punishment, or enforced disappearance. As such, the principle of non-refoulement under international human rights law also applies to active fighters/combatants even though these individuals are not con- sidered refugees. Internally displaced persons Relatedly, a body of rules has also been developed with respect to internally displaced persons (IDPs). In addition to relevant human rights law principles, the \u201cGuiding Prin- ciples on Internal Displacement\u201d (E/CN.4/1998/53/Add.2) provide a framework for the protection and assistance of IDPs. The Guiding Principles contain practical guidance to the UN in its protection of IDPs, as well as serve as an instrument for public policy education and awareness-raising. Substantively, the Guiding Principles address the specific needs of IDPs worldwide. They identify rights and guarantees relevant to the protection of persons from forced displacement and to their protection and assistance during displacement as well as during return or reintegration. Specific guiding principles DDR practitioners should be aware of international refugee law and how it relates to UN DDR processes. DDR practitioners should be aware of the principle of non-refoulement, which exists under both international human rights law and international refugee law, though with different conditions. DDR practitioners should be aware of the relevant domestic legislation that pro- vides for the rights and freedoms of DDR participants and beneficiaries within the Member State where the DDR process is carried out. Red lines DDR practitioners shall not facilitate any violations of international refugee law by national authorities. In particular, they shall not facilitate any violations of the principle of non-refoulement including for DDR participants and beneficiaries who may not qualify as refugees.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "52511f07-fb86-4b4e-b852-58c6378f80c9", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 13, + "Paragraph": "Accountability mechanisms at the national and international levels In general, it is the duty of every State to exercise its criminal jurisdiction over those responsible for international crimes.7 DDR practitioners should be aware of local and international mechanisms for achieving justice and accountability for international crimes. These include any judi- cial or non-judicial mechanisms that may be established with respect to international crimes committed in the host State. These can take various forms, depending on the specificities of local context. National courts usually have jurisdiction over all crimes committed within the State\u2019s territory, even when there are international criminal accountability mechanisms with complementary or concurrent jurisdiction over the same crimes. In terms of international criminal law, the Rome Statute of the International Criminal Court (ICC) establishes individual and command responsibility under international law for (1) genocide;8 (2) crimes against humanity, which include, inter alia, murder, enslavement, deportation or forcible transfer of population, imprisonment, torture, rape, sexual slavery, enforced prostitution, forced pregnancy, enforced sterilization or \u201cany other form of sexual violence of comparable gravity\u201d, when committed as part of a widespread or systematic attack against the civilian population;9 (3) war crimes, which similarly include sexual violence;10 and (4) the crime of aggression.11 The law governing international crimes is also developed further by other sources of international law (e.g., treaties12 and cus- tomary international law13 ). Separately, there have been a number of international criminal tribunals14 and \u2018hybrid\u2019 international tribunals15 addressing crimes committed in specific situations. These tribunals have contributed to the extensive development of substantive and pro- cedural international criminal law. Recently, there have also been a number of initiatives to provide degrees of inter- national support to domestic courts or tribunals that are established in States to try international law crimes.16 Various other transitional justice initiatives may also apply, depending on the context. The UN opposes the application of the death penalty, including with respect to persons convicted of international crimes. The UN also discourages the extradition or deportation of a person where there is genuine risk that the death penalty may be imposed unless credible and reliable assurances are obtained that the death penalty will not be sought or imposed and, if imposed, will not be carried out but commuted. The UN\u2019s own criminal tribunals, UN-assisted criminal tribunals and the ICC are not empowered to impose capital punishment on any convicted person, regardless of the seriousness of the crime(s) of which he or she has been convicted. UN investigative mechanisms mandated to share information with national courts and tribunals should only do so with jurisdictions that respect international human rights law and standards, including the right to a fair trial, and shall only do so for use in criminal proceedings in which capital punishment will not be sought, imposed or carried out. Accountability mechanisms, together with DDR processes, form part of the toolkit for advancing peace processes. However, there is often tension, whether real or per- ceived, between peace, on the one hand, and justice and accountability, on the other. A prominent example is the issuance of amnesties or assurances of non-prosecution in exchange for participation in DDR processes, which could hinder the achievement of justice-related aims. It is a long-established policy that the UN will not endorse provisions in a transi- tional justice process that include amnesties for genocide, war crimes, crimes against humanity and gross violations of human rights (see IDDRS 6.20 on DDR and Transi- tional Justice). With regard to the issue of terrorist offences, see section 4.2.6. The Security Council, in establishing a DDR mandate, may address the tension between transitional justice and DDR, by excluding combatants suspected of genocide, war crimes, crimes against humanity or abuses of human rights from participation in DDR processes. Specific guiding principles DDR practitioners should be aware that it is the primary duty of States to prosecute those responsible for international crimes. DDR practitioners should be aware of a parallel UN or national mandate, if any, for transitional justice in the State. DDR practitioners should be aware of ongoing international and/or national accountability and/or transitional justice mechanisms or processes. When planning for and conducting DDR processes, DDR practitioners should consult with UN human rights, accountability and/or transitional justice advisers to ensure coordination, where such mechanisms or processes exist. DDR practitioners should incorporate screening mechanisms and criteria into DDR processes for adults to identify suspected perpetrators of international crimes and exclude them from DDR processes. Suspected perpetrators should be reported to the competent national authorities. Legal advice should be sought, if possible, beforehand. If the potential DDR participant is under 18 years old, DDR practitioners should refer to IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR for additional guidance.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "74482800-1e34-4d8b-9980-d186629c7f0d", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 15, + "Paragraph": "UN Security Council sanctions regimes DDR processes may be impacted by Security Council sanctions regimes. In particular, the fact that an individual or a group has been designated by a Security Council Sanctions Committee may have implications for their eligibility to participate in DDR processes, or their potential integration into the national security sector (see IDDRS 6.10 on DDR and Security Sector Reform). Sanctions pertaining to the counter-terrorism framework are discussed further in section 4.2.6(iii). For additional information on the Security Council sanction regimes, please refer to: https://www.un.org/securitycouncil/sanctions/information Specific guiding principles DDR practitioners should be aware of any relevant sanctions regime, if any, target- ing individuals, groups and entities in the State in which they are operating. DDR practitioners shall take particular note of arms embargo measures, which may restrict the options available for the disposal of arms, ammunition and related material collected during the implementation of disarmament or transitional weapons and ammunition management activities (see IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Management). DDR practitioners should be aware of individuals, groups and entities listed by the Security Council under its sanctions regimes, in particular when conducting screening for eligibility for participation in DDR processes, or when providing any financial support to DDR participants.17 Legal advice should be sought if in doubt.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc0250ba-97d1-48a8-8fff-81272980afc2", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 16, + "Paragraph": "International counter-terrorism framework The requirement \u2018to bring terrorists to justice\u2019 The international counter-terrorism framework is comprised of relevant Security Council resolutions, as well as 19 international counter-terrorism instruments,18 which have been widely ratified by UN Member States. That framework must be implemented in compliance with other relevant international standards, particularly international hu- manitarian law, international refugee law and international human rights law. Under the Security Council resolutions, Member States are required, among other things, to: Ensure that any person who participates in the preparation or perpetration of terrorist acts or in supporting terrorist acts is brought to justice; Ensure that such terrorist acts are established as serious criminal offences in domestic laws and regulations and that the punishment duly reflects the serious- ness of such terrorist acts,19 including with respect to: Financing, planning, preparation or perpetration of terrorist acts or support of these acts and Offences related to the travel of foreign terrorist fighters.20 Under the Security Council resolutions, Member States are also exhorted to establish criminal responsibility for: Terrorist acts intended to destroy critical infrastructure21 and Trafficking in persons by terrorist organizations and individuals.22 While there is no universally agreed definition of terrorism, several of the 19 interna- tional counter-terrorism instruments define certain terrorist acts and/or offences with clarity and precision, including offences related to the financing of terrorism, the taking of hostages and terrorist bombing.23 The Member State\u2019s obligation to \u2018bring terrorists to justice\u2019 is triggered and it shall consider whether a prosecution is warranted when there are reasonable grounds to believe that a group or individual has committed a terrorist offence set out in: A Security Council resolution or One of the 19 international counter-terrorism instruments to which a Member State is a party. DDR practitioners should be aware of the fact that their host State has an interna- tional legal obligation to comply with relevant Security Council resolutions on counter- terrorism (that is, those that the Security Council has adopted in binding terms) and the international counter-terrorism instruments to which it is a party. Of particular relevance to the DDR practitioner is the fact that under Security Council resolutions, with respect to suspected terrorists (as defined above), Member States are further called upon to: Develop and implement comprehensive and tailored prosecution, rehabilitation, and reintegration strategies and protocols, in line with their obligations under in- ternational law, including with respect to returning and relocating foreign terror- ist fighters and their spouses and children who accompany them, and to address their suitability for rehabilitation.24 There are two main scenarios where DDR processes and the international counter- terrorism legal framework may intersect: In addition to the traditional concerns with regard to screening out for prosecu- tion persons suspected of war crimes, crimes against humanity or genocide, the DDR practitioner, in advising and assisting a Member State, should also be aware of the Member State\u2019s obligations under the international counter-terrorism legal framework, and remind them of those obligations, if need be. Specific criteria, as appropriate and applicable to the context and Member States, should be incorpo- rated into screening for DDR processes to identify and disqualify persons who have committed or are reasonably believed to have committed a terrorist act, or who are identified as clearly associated with a Security Council-designated terrorist organization. Although DDR programmes are not appropriate for persons associated with such organizations (see section below), lessons learned and programming experience from DDR programmes may be very relevant to the design, implementation and support to programmes to prosecute, rehabilitate and reintegrate these persons. As general guidance, for terrorist groups designated by the Security Council, Member States are required to develop prosecution, rehabilitation and reintegration strategies. Terrorist suspects, including foreign terrorist fighters and their family members, and victims should be the subject of such strategies, which should be both tailored to specific categories and comprehensive.25 The initial step is to establish a clear and coherent screening process to determine the main profile of a person who is in the custody of authorities or under the responsibility of authorities, in order to recommend particular treatment, including further investigation or prosecution, or immediate entry into and participation in a rehabilitation and/or reintegration programme. The criteria to be applied during the screening process shall comply with international human rights norms and standards and conform to other applicable regimes, such as interna- tional humanitarian law and the international counter-terrorism framework. Not all persons will be prosecuted as a result of this screening, but the screening process shall address the question of whether or not a person should be prosecuted. In this respect, the term \u2018screening\u2019 should be distinguished from usage in the context of a DDR programme, where screening refers to the process of ensuring that a person who met previously agreed eligibility criteria will be registered in the programme. Additional UN guidance with regard to the prosecution, rehabilitation and reinte- gration of foreign terrorist fighters can be found, inter alia, in the Madrid Guiding Principles and their December 2018 Addendum (S/2018/1177). The Madrid Guiding Principles were adopted by the Security Council (S/2015/939) in December 2015 with the aim of becoming a practical tool for use by Member States in their efforts to combat terrorism and to stem the flow of foreign terrorist fighters in accordance with resolu- tion 2178 (2014). Specific guiding principles DDR practitioners should be aware that the host State has legal obligations under Security Council resolutions and/or international counter-terrorism instruments to ensure that terrorists are brought to justice. DDR practitioners shall incorporate proper screening mechanisms and criteria into DDR processes to identify suspected terrorists. Depending on the circumstances, the terrorist organization they are associated with and the terrorist offences committed, it may not be appropriate for suspected terrorists to participate in DDR processes. Children associated with such groups should be treated in accordance with the standards set out in IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR. Sanctions relating to terrorism, including from Security Council committees The Security Council Committee concerning ISIL (Da\u2019esh), Al-Qaida and associated individuals, groups, undertakings and entities was established pursuant to Resolution 1267 (1999), 1989 (2011) and 2253 (2015). It is the only sanctions committee of the Security Council that lists individuals and groups for their association with terrorism. In addition, the Security Council may list individuals or groups for other reasons26 and impose sanctions on them. These individuals or groups may also be described as \u2018terrorist groups\u2019 in separate Council resolutions.27 In this regard, a specific set of issues arises vis-\u00e0-vis engaging groups or individ- uals in a DDR process when the group(s) or individual(s) are (a) listed as a terrorist group, individual or organization by the Security Council (either via the Da\u2019esh-Al Qaida Committee or another relevant Committee); and/or (b) listed as a terrorist group, individual or organization by a Member State for that Member State, by way of domestic legislation. Member States\u2019 listings may be premised upon an expansive definition of terrorism that may go beyond the terrorist acts described in either Security Council resolutions 1373 (2001) or 2178 (2014) or in any of the 19 international counter-terrorism instruments. DDR practitioners should be aware that donor states may also designate groups as terrorists through such \u2018national listings\u2019. Moreover, as a consequence of Security Council, regional or national listings, donor states in particular may have constraints placed upon them as a result of their national legislation that could impact what support (financial or otherwise) they can provide. Specific guiding principles DDR practitioners should be aware of whether or not a group, entity or individual has been listed by the Security Council Committee pursuant to resolutions 1267 (1999), 1989 (2011) and 2253 (2015) and should consult their legal adviser on the im- plications this may have for planning or implementation of DDR processes. DDR practitioners should be aware of whether or not a group, entity or individual has been designated a terrorist organization or individual by a regional organ- ization or Member State (including the host State or donor country) and should consult their legal adviser on the implications this may have on the planning and implementation of DDR processes. DDR practitioners should consult with their legal adviser upon applicable host State national legislation targeting the provision of support to listed terrorist groups, including its possible criminalization. Red line Groups or individuals listed by the Security Council, as well as perpetrators or sus- pected perpetrators of terrorist acts cannot be participants in DDR programmes. However, in compliance with relevant international standards and within the proper framework, support may be provided by DDR practitioners, using DDR-related tools, to persons associated to Security Council\u2013designated terrorist organizations.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "85d3c0dd-cd29-4bd6-ad44-b414782575f7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 19, + "Paragraph": "International arms control framework The international arms control framework is made up of a number of international legal instruments that set out obligations for Member States with regard to a range of arms con- trol issues relevant to DDR activities, including the management, storage, security, trans- fer and disposal of arms, ammunition and related material. These instruments include: The Protocol against the Illicit Manufacturing of and Trafficking in Fire- arms, their Parts and Components and Ammunition, supplementing the UN Convention against Transnational Organized Crime, is the only legally binding instrument at the global level to counter the illicit manufacturing of and trafficking in firearms, their parts and components and ammunition. It provides a framework for States to control and regulate licit arms and arms flows, prevent their diversion into illegal circulation, and facilitate the investigation and prosecution of related offences without hampering legitimate transfers. The Arms Trade Treaty regulates the international trade in conventional arms, ranging from small arms to battle tanks, combat aircraft and warships. The Convention on Certain Conventional Weapons Which May Be Deemed to Be Excessively Injurious or to Have Indiscriminate Effects as amended on 21 December 2001 bans or restricts the use of specific types of weapons that are considered to cause unnecessary or unjustifiable suffering to combatants or to affect civilians indiscriminately. The Convention on the Prohibition of the Use, Stockpiling, Production and Trans- fer of Anti-Personnel Mines and on their Destruction prohibits the development, production, stockpiling, transfer and use of anti-personnel mines. The Convention on Cluster Munitions prohibits all use, production, transfer and stockpiling of cluster munitions. It also establishes a framework for cooperation and assistance to ensure adequate support to survivors and their communities, clear- ance of contaminated areas, risk reduction education and destruction of stockpiles. Specific guiding principles In addition to relevant national legislation, DDR practitioners should be aware of the international and regional legal instruments that the State in which the DDR practitioner is operating has ratified, and how these may impact the design of disarmament and transitional weapons and ammunition management activities (see IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Management).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c5d292dd-288e-4d84-8177-0ef1968dc631", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 20, + "Paragraph": "Member States\u2019 international obligations and domestic legal framework A Member State\u2019s international obligations are usually translated into domestic legislation. A Member State\u2019s domestic legislation has effect within the territory of that Member State. In order to determine a DDR participant\u2019s immediate rights and freedoms in the Member State, and/or to find the domestic basis, within the State, to ensure the pro- tection of the rights of DDR participants and beneficiaries, the DDR practitioner will have to look towards the specific context of the Member State, i.e., the Member State\u2019s international obligations and its domestic legislation. This is despite the fact that the UN DDR practitioner is guided by the international law principles set out above in the conduct of the Organization\u2019s activities, or that the DDR practitioner may wish to engage with Member States to ensure that their treatment of DDR participants and beneficiaries is in line with their international obligations. For example, the following issues would usually be addressed in a Member State\u2019s domestic legislation, in particular its constitution and criminal procedure code: Length of pre-trial detention; Due process rights; Protections and procedure with regard to investigations and prosecutions of alleged crimes, and Criminal penalties. Similarly, in order to understand how the Member State has decided to implement the above Security Council resolutions on counter-terrorism, as well as relevant resolu- tions on organized crimes, DDR practitioners will have to look towards domestic legis- lation, in particular, to understand the acts that would constitute crimes in the Member State in which they work. For the purposes of DDR, it is thus important to have an understanding of the Member State that the UN DDR practitioner is operating in, in particular, 1) the Mem- ber State\u2019s international obligations, including the international conventions that the Member State has signed and ratified; and 2) the relevant protections provided for under the Member State\u2019s domestic legislation that the UN DDR practitioner can rely upon to help ensure the protection of DDR participants\u2019 rights and freedoms. Specific guiding principles DDR practitioners should be aware of the international conventions that the Member State, in which they operate, has signed and ratified. DDR practitioners should be aware of domestic legislation that may address the rights and freedoms of DDR participants and beneficiaries, as well as limit their participation in DDR processes, in particular the penal code, criminal procedure code and counter-terrorism legislation. DDR practitioners may wish to rely on domestic legislation to secure the rights and freedoms of DDR participants and beneficiaries within the Member State, as appropriate and necessary. Red line DDR practitioners shall respect the national laws of the host State. If there is a con- cern regarding the obligation to respect a host State\u2019s law and the activities of the DDR practitioner, the DDR practitioner should seek legal advice.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6d0e334b-44f3-428a-a38d-6010171aeead", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 21, + "Paragraph": "Internal rules, policies and procedures The UN has adopted a number of internal rules, policies and procedures. Other actors in the broader UN system also have similar rules, policies and procedures. Such rules, policies and procedures are binding internally. They typically also serve to signal to external parties the UN system\u2019s expectations regarding the behav- iour of those to whom it provides assistance. The general guide for UN-supported DDR processes is the UN IDDRS. Other internal documents that may be relevant to DDR processes include the following: The UN Human Rights Due Diligence Policy (HRDDP) (A/67/775-S/2013/110) governs the UN\u2019s provision of support to non-UN security forces, which could include the provision of support to national DDR processes if such processes or their programmes are being implemented by security forces, or if there is any re- patriation of DDR participants and beneficiaries by security forces. The HRDDP requires UN entities that are contemplating providing support to non-UN security forces to take certain due diligence, compliance and monitoring measures with the aim of ensuring that receiving entities do not commit grave violations of inter- national humanitarian law, international human rights law or refugee law. Where there are substantial grounds for believing that grave violations are occurring or have occurred, involving security forces to which support is being provided by the UN, the UN shall intercede with the competent authorities to bring such violations to an end and/or seek accountability in respect of them. For further information, please refer to the Guidance Note for the implementation of the HRDDP.28 The Secretary-General issued a bulletin on special measures for protection from sexual exploitation and sexual abuse (ST/SGB/2003/13), which applies to the staff of all UN departments, programmes, funds and agencies, prohibiting them from committing acts of sexual exploitation and sexual abuse. In line with the UN Staff Regulations and Rules, sexual exploitation and sexual abuse constitute acts of serious misconduct and are therefore grounds for disciplinary measures, including dismissal. Further, UN staff are obliged to create and maintain an environment that prevents sexual exploitation and sexual abuse. Managers at all levels have a particular responsibility to support and develop systems that maintain this environment. Specific guiding principles DDR practitioners should be aware of and follow relevant internal rules, policies and procedures at all stages of the DDR process. DDR practitioners in management positions shall ensure that team members are kept up to date on the most recent developments in the internal rules, policies and procedures, and that managers and team members complete all necessary train- ing and courses. Red line Violation of the UN internal rules, policies and procedures could lead to harm to the UN, and may lead to disciplinary measures for DDR practitioners.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f9306516-36bd-4d66-b96e-c2006a067dcb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-2.11-The-Legal-Framework-For-UNDDR", + "PageNum": 22, + "Paragraph": "Status, privileges and immunities Under the Charter, the Organization enjoys \u201cin the territory of each of its Members such privileges and immunities as are necessary for the fulfilment of its purposes\u201d. Similarly, UN officials \u201cenjoy such privileges as are necessary for the independent exercise of their functions in connexion with the Organization\u201d.29 These Charter provisions have been implemented in a detailed manner by the Convention on the Privileges and Immuni- ties of the United Nations (the \u2018General Convention\u2019). The privileges and immunities of the specialized agencies are separately set out in the Convention on the Privileges and Immunities of the Specialized Agencies (\u2018Specialized Agencies Convention\u2019). Furthermore, privileges and immunities of the UN and its personnel may be incor- porated in mission-specific Status-of-Forces Agreements (SOFAs) and Status-of-Mission Agreements (SOMAs), Standard Basic Assistance Agreements (SBAAs), host country agreements and other similar agreements concluded between the Organization and host States to allow for the secure and effective implementation of mandated activities. It is thus essential for each DDR practitioner to refer to the relevant agreement to determine the privileges and immunities of any relevant UN system actor, as well as its personnel. As regards military personnel of national contingents assigned to a UN peace- keeping operation\u2019s military component, the SOFA addresses the legal status and obligations of the military component in the host country, including with respect to privileges and immunities and criminal jurisdiction. Unlike other categories of UN personnel, military members of military contingents are subject to the exclusive juris- diction of their sending States in respect of any criminal offences they may commit in the host country. Under the SOFA or SOMA, the UN peacekeeping operation or mission, as well as its members, shall respect all local laws and regulations. Similarly, under the model host country agreement for the establishment of an office, it is the duty of all persons enjoying the privileges and immunities accorded by the agreement to respect the laws and regulations of the host country. Specifically, the General Convention provides certain privileges and immunities to the UN, as well as its officials, for the fulfilment of the Organization\u2019s purposes and to allow its personnel to conduct their official duties without interference. The Specialized Agencies Convention similarly provides for specialized agencies and their personnel. With the exception of certain high-ranking officials, who enjoy privileges and immunities similar to those accorded to diplomatic envoys by international law, UN officials and experts on mission, as well as officials of specialized agencies, enjoy im- munity from legal process in the host State only in respect of official functions (\u2018func- tional immunity\u2019). This means that they are immune from legal proceedings only with respect to acts done in their official capacity. They do not enjoy immunity in respect of private acts. Immunity is granted to UN and specialized agencies personnel in the interests of their organization and not for the personal benefit of the individuals concerned. The Secretary-General has the right and the duty to waive the immunity of any UN person- nel where, in the opinion of the Secretary-General, the immunity would impede the course of justice and can be waived without prejudice to the interests of the UN.30 Each specialized agency shall have the right and the duty to waive the immunity of their officials on the same grounds.31 The General Convention and the Specialized Agencies Convention also provide that the premises of the UN and the specialized agencies are inviolable, and that the property, assets and archives of the UN and the specialized agencies, wherever located and by whomsoever held, shall be immune from search, requisition, confiscation, ex- propriation and any other form of interference, whether by executive, administrative, judicial or legislative action. The archives of the UN and the specialized agencies, and in general all documents belonging to it or held by it, shall be inviolable wherever located. Any request for the production or disclosure of UN documents that are not in the public domain should be by way of an official request from the Member State Government to the UN. The sharing of information is regulated by the Secretary-General\u2019s bulletin on information sensitivity, classification, and handling (ST/SGB/2007/6). Pursuant to this bulletin, documents that are responsive to a request shall be reviewed to verify that they do not contain any sensitive information. \u2018Sensitive\u2019 information means: Information received from third parties under an expectation of confidentiality; Information whose disclosure would endanger the safety or security of any indi- vidual; Information whose disclosure would violate any individual\u2019s rights or invade his or her privacy; Information whose disclosure is likely to endanger the security of a Member State; Information whose disclosure would prejudice the security or proper conduct of any operation or activity of the UN; Information covered by legal privilege or relating to internal investigations; Information whose disclosure would undermine the Organization\u2019s free and independent decision-making process; Commercial information whose disclosure would harm either the financial inter- ests of the UN or those of other parties involved; or Other kinds of information, which because of their content or the circumstances of their creation or communication shall be deemed confidential. Documents that contain sensitive information should be redacted to prevent the disclosure of their information or, when this is not practically possible, not disclosed. In accordance with the applicable legal framework, the UN is required to cooper- ate, at all times, with the appropriate authorities of host States to facilitate the proper administration of justice, secure the observance of police regulations and prevent the occurrence of any abuse in connection with the privileges, immunities and facilities.32 In the event of uncertainty with respect to privileges and immunities or individ- uals, all queries should be directed to the relevant legal adviser of the mission or field presence, who may then refer the matter to the Legal Counsel. For specialized agencies, all queries should be directed to the legal adviser of the specialized agency. Specific guiding principles DDR practitioners should seek legal advice from the relevant legal adviser of the mission or field presence if there are requests for the production or disclosure of documents or information produced by or in the possession of the UN. DDR practitioners should seek legal advice if asked to provide testimony or partic- ipate in an interview or interrogation by national authorities. Red lines DDR practitioners shall not produce or disclose any documents or information produced by or in the possession of the UN that are not in the public domain with- out first seeking legal advice. DDR practitioners shall not provide testimony to or participate in any interview or interrogation by the State authorities without first seeking legal advice and receiv- ing authorization to do so (which may require a waiver of immunity).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8b1d1a07-44dd-4ebe-967e-02d899b0b959", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": null, + "Paragraph": "Summary Disarmament, demobilization and reintegration (DDR) programmes have increasingly relied on national institutions to ensure their success and sustainability. This module discusses three main issues related to national institutions: mandates and legal frameworks; structures and functions; and coordination with international DDR structures and processes. The mandates and legal frameworks of national institutions will vary according to the nature of the DDR programme, the approach that is adopted, the division of responsi- bilities with international partners and the administrative structures found in the country. It is important to ensure that national and international mandates for DDR are clear and coherent, and that a clear division of labour is established. Mandates and basic principles, institutional mechanisms, time-frames and eligibility criteria should be defined in the peace accord, and national authorities should establish the appropriate framework for DDR through legislation, decrees or executive orders. The structures of national institutions will also vary depending on the political and institutional context in which they are created. They should nevertheless reflect the security, social and economic dimensions of the DDR process in question by including broad rep- resentation across a number of government ministries, civil society organizations and the private sector. In addition, national institutions should adequately function at three different levels: the policy/strategic level through the establishment of a national commission on DDR; the planning and technical levels through the creation of a national technical planning and coordination body; and the implementation/operational level through a joint implementation unit and field/ regional offices. There will be generally a range of national and international partners engaged in imple- mentation of different components of the national DDR programme. Coordination with international DDR structures and processes should be also ensured at the policy, planning and operational levels. The success and sustainability of a DDR pro- gramme depend on the ability of international expertise to complement and support a nationally led process. A UN strategy in support of DDR should therefore take into account not only the context in which DDR takes place, but also the existing capacity of national and local actors to develop, manage and implement DDR. Areas of support for national institutions are: institutional capacity development; legal frameworks; policy, planning and implementation; financial management; material and logis- tic assistance; training for national staff; and community development and empowerment.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "87f8b4bd-ec2f-4e6b-a47e-7ca2a53e940a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides United Nations (UN) DDR policy makers and practitioners with guidance on the structures, roles and responsibilities of national counterparts for DDR, their relationships with the UN and the legal frameworks within which they operate. It also provides guidance on how the UN should define its role, the scope of support it should offer to national structures and institutions, and capacity development.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "af1bae26-0e51-4850-966b-782b30adee68", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) 1.20\tis given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d The term \u2018a national framework for DDR\u2019 describes the political, legal, programmatic/ policy and institutional framework, resources and capacities established to structure and guide national engagement with a DDR process. The implementation of DDR requires mul- tiple stakeholders; therefore, participants in the establishment and implementation of a national DDR framework include not only the government, but also all parties to the peace agreement, civil society, and all other national and local stakeholders.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1f217c84-9ca7-4519-93a3-22488bf93196", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 4, + "Paragraph": "Introduction UN-supported DDR aims to be people-centred, flexible, accountable and transparent, na- tionally owned, integrated and well planned. Within the UN, integrated DDR is delivered with the cooperation of agencies, programmes, funds and peacekeeping missions. In a country in which it is implemented, there is a focus on capacity-building at both government and local levels to achieve sustainable national ownership of DDR, among other peace-building measures. Certain conditions should be in place for DDR to proceed: these include the signing of a negotiated peace agreement, which provides a legal frame- work for DDR; trust in the peace process; transparency; the willingness of the parties to the conflict to engage in DDR; and a minimum guarantee of security. This module focuses on how to create and sustain these conditions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5ed79f4e-8afc-4265-a6af-af178b59649c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 4, + "Paragraph": "Guiding principles The principles guiding the development of national DDR frameworks, as well as the princi- ples of UN engagement with, and support to, national institutions and stakeholders, are out- 2.10\tlined in IDDRS 2.10 on the UN Approach to DDR. Here, they are discussed in more detail.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "28589da9-dacb-406e-8030-6a6b1b91cb2a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 5, + "Paragraph": "National ownership National ownership is essential for the success and sustainability of DDR programmes, and supporting national institutions is a core principle of the UN. However, in the past, too many DDR programmes were overly controlled by external actors who did not make enough effort to establish true partnership with national institutions and local authorities, producing programmes that were insufficiently adapted to the dynamics of local conflicts, unsuppor- tive of the capacities of local institutions and unresponsive to the needs of local populations. While the UN system may be called upon to provide strategic, technical, operational and financial support to DDR, national and local actors \u2014 who are ultimately responsible for the peace, security and development of their own communities and nations \u2014 should lead the process. When the UN supports DDR, it also aims to increase the capacities of govern- ments, implementing partners, communities and participants, and to assist them as they take ownership of the process: the promotion of national ownership is therefore a principle that guides both policy and the operational design of DDR programmes carried out with UN support.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "20a011d2-d70b-47ca-a71e-464f17fa766b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 5, + "Paragraph": "Inclusivity Another core principle in the establishment and support of national institutions is the in- clusion of all stakeholders. National ownership is both broader and deeper than central government leadership: it requires the par- ticipation of a range of state and non-state actors at national, provincial and local levels. National DDR institutions should include all parties to the conflict, as well as representa- tives of civil society and the private sector. The international community should play a role in supporting the development of capacities in civil society and at local levels to enable them to participate in DDR pro- cesses (also see IDDRS 5.10 on Women, Gender and DDR, IDDRS 5.20 on Youth and DDR and IDDRS 5.30 on Children and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "30e4f8c3-7ea9-4c44-aa44-3ff2a469de52", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 5, + "Paragraph": "Accountability and transparency Accountability and transparency are important principles for all national institutions. DDR institutions should adopt and encourage/support these values in order to: build confidence among the parties to the DDR process; establish the legitimacy of the process with the general population and local commu- nities; ensure continued financial and technical support from international actors. Accountability mechanisms should be established for the monitoring, oversight and evaluation of processes through both internal and external review. Transparency should be also supported through a broad communications strategy that raises awareness of the prin- ciples and details of the programme (also see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). 5.20 5.10 5.30 3.50 4.60", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ba541697-92d6-482d-99e5-f7435060e829", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": null, + "Paragraph": "Mandates and legal frameworks for national engagement with DDR The mandates and legal frameworks established for national DDR institutions will vary according to the nature of the DDR process to be carried out and the approach adopted, the division of responsibilities with international partners, and the administrative structures of the state itself. All stakeholders should agree to the establishment of the mandate and 2.30\tlegal framework (also see IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e4f160a6-6635-479d-a110-91261f08538a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": null, + "Paragraph": "Establishing clear and coherent national and international mandates The national and international mandates for DDR should be clear and coherent. A clear division of responsibilities should be established in the different levels of programme co- ordination and for different programme components. This can be done through: supporting international experts to provide technical advice on DDR to parties to the peace negotiations; incorporating national authorities into inter-agency assessment missions to ensure that national policies and strategies are reflected in the Secretary-General\u2019s report and Secu- rity Council mandates for UN peace-support operations; discussing national and international roles, responsibilities and functions within the framework of an agreed common DDR plan or programme; providing technical advice to national authorities on the design and development of legal frameworks, institutional mechanisms and national programmes for DDR; establishing mechanisms for the joint implementation and coordination of DDR pro- grammes and activities at the policy, planning and operational levels.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9df0bd4e-c31f-4328-89a5-655bb2c6546d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 6, + "Paragraph": "Political frameworks and peace accord provisions When parties to a conflict have concluded a peace accord or political agreement, provisions should have been included in it on the establishment of a legal framework for the DDR process. Mandates and basic principles, institutional mechanisms, time-frames and eligi- bility criteria should all be defined. As the programme starts, institutional mechanisms and programme details should be elaborated further through the adoption of national legisla- tion or executive decree(s).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bce07866-d3e9-4aaa-a251-f2a870a26331", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 6, + "Paragraph": "National legislative framework In addition to the provisions of the peace accord, national authorities should develop legal instruments (legislation, decree[s] or executive order[s]) that establish the appropriate legal framework for DDR. These should include, but are not limited to, the following: a letter of demobilization policy, which establishes the intent of national authorities to carry out a process of demobilization and reduction of armed forces and groups, indi- cating the total numbers to be demobilized, how this process will be carried out and under whose authority, and links to other national processes, particularly the reform and restructuring of the security sector; legislation, decree(s) or executive order(s) establishing the national institutional frame- work for planning, implementing, monitoring and evaluating the DDR process. This legislation should include articles or separate instruments relating to: a national political body representing different parties to the process, ministries responsible for the programme and civil society. This legal instrument should establish the body\u2019s mandate for political coordination, policy direction and general oversight of the DDR programme. It should also establish the specific composi- tion of the body, frequency of meetings, responsible authority (usually the prime minister or president) and reporting lines to technical coordination and implemen- tation mechanisms; a technical planning and coordination body responsible for the technical design and implementation of the DDR programme. This legal instrument should specify the body\u2019s different technical units/directions and overall management structure, as well as functional links to implementation mechanisms; operational and implementation mechanisms at national, provincial and local levels. Legal provisions should specify the institutions, international and local partners responsible for delivering different components of the DDR programme. It should also define financial management and reporting structures within the national programme; an institution or unit responsible for the financial management and oversight of the DDR programme, funds received from national accounts, bilateral and multi- lateral donors, and contracts and procurement. This unit may be housed within a national institution or entrusted to an international partner. Often a joint national\u2013 international management and oversight system is established, particularly where donor funds are being received. The national DDR programme itself should be formally approved or adopted through legislation, executive order or decree. Programme principles and policies regarding eligi- bility criteria, definition of target groups, benefits structures and time-frame, as well as pro- gramme integration within other processes such as security sector reform (SSR), transitional justice and election timetables, should be identified through this process.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e2e71d08-0575-44d3-bfd1-a9614064c13e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 7, + "Paragraph": "Integrated peace-building and recovery framework DDR is a component of larger peace-building and recovery strategies. For this reason, na- tional DDR efforts should be linked with other national initiatives and processes, including SSR, transitional justice mechanisms, the electoral process, economic reconstruction and recovery (also see IDDRS 2.20 on Post-conflict Stabilization, Peace-building and Recovery Frameworks and IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2dfe3309-3baa-4a07-b0e5-d7f1004c6573", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 7, + "Paragraph": "Transitional justice and amnesty provisions Through the establishment of amnesties and transitional justice programmes, as part of the broader peace-building process, parties attempt to deal with crimes and violations in the conflict period, while promoting reconciliation and drawing a line between the period of conflict and a more peaceful future. Transitional justice processes vary widely from place to place, depending on the historical circumstances and root causes of the conflict. They try to balance justice and truth with national reconciliation, and may include amnesty provisions 2.20 2.30 for those involved in political and armed struggles. Generally, truth commissions are tem- porary fact-finding bodies that investigate human rights abuses within a certain period, and they present findings and recommendations to the government. They assist post-conflict communities to establish facts about what went on during the conflict period. Some truth commissions include a reconciliation component to support dialogue between factions within the community. In addition to national efforts, international criminal tribunals may be established to prosecute and hold accountable people who committed serious crimes. While national justice systems may also wish to prosecute wrongdoers, they may not be capable of doing so, owing to lack of capacity or will. During the negotiation of peace accords and political agreements, parties may make their involvement in DDR programmes conditional on the provision of amnesties for carry- ing weapons or less serious crimes. These amnesties will generally absolve (pardon) parti- cipants who conducted a political and armed struggle, and free them from prosecution. While amnesties may be agreed for violations of national law, the UN system is obliged to uphold the principles of international law, and shall therefore not support DDR processes that do not properly deal with serious violations such as genocide, war crimes or crimes against humanity.1 However, the UN should support the establishment of transitional justice processes to properly deal with such violations. Proper links should be created with DDR and the broader SSR process.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b6f49563-7960-435f-aed9-a5684d17791e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 8, + "Paragraph": "Citizenship and nationality laws In conflicts where ethnicity, religion or other identities have been causes of the conflict, there are often questions of citizenship or nationality that need to be resolved as part of the peace process. The resolution of these issues are likely to affect parties\u2019 willingness to engage in other parts of the larger peace-building framework, including elections, DDR and the re- 5.40\tstructuring of security forces (also see IDDRS 5.40 on Cross-border Population Movements).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "be7f6e2b-5903-4588-ae8f-a2e84b59c443", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 8, + "Paragraph": "Weapons control and management A national legal regime for weapons control and management establishes conditions for the lawful acquisition, trade, possession and use of arms by state authorities and citizens. Provisional laws or decrees governing weapons control and management are often intro- 4.10\tduced during periods of post-conflict transition (also see IDDRS 4.10 on Disarmament and 4.11\tIDDRS 4.11 on SALW Control, Security and Development).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "13142a7b-b54f-45e9-8aef-d35e3d6859b5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 8, + "Paragraph": "Rule of law and justice reform According to the Secretary-General\u2019s report on The Rule of Law and Transitional Justice in Con flict and PostConflict Societies, \u2018rule of law\u2019 refers to a \u201cprinciple of governance in which all persons, institutions and entities, public and private, including the State itself, are account- able to laws that are publicly promulgated, equally enforced and independently adjudicated, and which are consistent with international human rights norms and standards. It requires, as well, measures to ensure adherence to the principles of supremacy of law, equality before the law, accountability to the law, fairness in the application of the law, separation of powers, participation in decision-making, legal certainty, avoidance of arbitrariness and procedural and legal transparency\u201d.2 However, the rule of law often breaks down during long periods of conflict; or a lack of justice, or manipulation of the justice system by authorities or political groups may be one of the causes of conflict. Some parties may be reluctant to participate in DDR when the rule of law has broken down and where their personal safety is not properly protected. Re-establishing the rule of law and carrying out justice reform are often essential aspects of a larger peace-building strategy. DDR should contribute to strengthening the rule of law by disarming armed forces and groups, who afterwards become subject to regular criminal justice systems.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fbb98e11-cb0a-4787-b06d-ec08c3698e7b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 9, + "Paragraph": "Restructuring of armed forces DDR is generally linked to the restructuring of armed forces and SSR as part of a broader peace-building framework. Agreement between the parties on the new mandate, structures, composition and powers of national security forces is often a condition for their entry into a formal DDR process. As a result, the planning and design of the DDR programme needs to be closely linked to the SSR process to ensure coherence on such issues as vetting of ex- combatants (to establish eligibility for integration into the reformed security forces) and establishing the legal status and entitlements of demobilized ex-combatants, including pensions and health care benefits.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1b7f5c2a-bc2d-4c82-be52-568408f802f8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 9, + "Paragraph": "Structures and functions of national institutions The architecture of national DDR institutions will vary depending on the political and institutional context in which they are created. The following generic (general) model repre- sents a basic outline of structures and functions for a national DDR institutional framework, and lays out the structure of relationships with UN integrated missions and international coordination mechanisms. While the basic functions of national DDR institutions will be similar in most cases, the organization of institutional structures and their relation to inter- national actors will vary widely from country to country.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "043d22e6-a7a3-44e1-bef8-ef1b65feaebb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 9, + "Paragraph": "Integrated approach Integration is not only a principle for UN support to DDR, but also for the establishment of national institutions. The form of national institutions should reflect the security, economic and social dimensions of the DDR process. To achieve this, national institutions should include broad representation across a number of government ministries. Although the composition of national institutions for DDR will vary according to the particular govern- ment structures of different countries, the following institutions are generally represented at the level of policy and planning of national DDR institutions: the executive (the presidency and/or prime minister\u2019s office); the ministries of defence and interior (national security); the ministries of planning and finance; the ministries of labour, employment and industry; the ministries of agriculture and natural resources; the ministries of social welfare, status of women and protection of children; human rights and national reconciliation agencies; electoral authorities. As well as representation of the various agencies and ministries of government, it is important to include representatives of civil society and the private sector in DDR policy and strategic coordination mechanisms.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d79a8053-6ae7-47dd-9a4f-822dbc39cec3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "National DDR commission A national DDR policy body representing key national and international stakeholders should be set up under a government or transitional authority established through peace accords, or under the authority of the president or prime minister. This body meets periodically to perform the following main functions: to provide political coordination and policy direction for the national DDR programme; to coordinate all government institutions and international agencies in support of the national DDR programme; to ensure coordination of national DDR programme with other components of the national peace-building and recovery process; to ensure oversight of the agency(ies) responsible for the design and implementation of the national DDR programme; to review progress reports and financial statements; to approve annual/quarterly work plans. The precise composition of this policy body will vary; however, the following are gen- erally represented: government ministries and agencies responsible for components of DDR (including national women\u2019s councils or agencies, and agencies responsible for youth and children); representatives of parties to the peace accord/political agreement; representatives of the UN, regional organizations and donors; representatives of civil society and the private sector.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b06ac261-346a-422d-a629-bc248eec27b0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "International coordination and assistance Depending on whether a UN mission has been established, support is provided for the development of national policies and strategies through the offices of the UN Resident Co- ordinator, or upon appointment of the Special Representative of the Secretary-General (SRSG)/ Deputy SRSG (DSRSG). When there is a UN Security Council mandate, the SRSG will be responsible for the coordination of international support to the peace-building and transition process, including DDR. When the UN has a mandate to support national DDR institutions, the SRSG/DSRSG may be invited to chair or co-chair the national commission on DDR (NCDDR), particularly if there is a need for neutral arbitration.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dce614ea-23ba-4038-9210-0b2b784b76d5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "National DDR agency A national technical planning and coordination body, responsible for the design and im- plementation of the DDR programme, should be established. The national coordinator/ director of this body oversees the day-to-day management of the DDR programme and ensures regular reporting to the NCDDR. The main functions of the national DDR agency include: the design of the DDR programme, including conducting assessments, collecting base- line data, establishing indicators and targets, and defining eligibility criteria for the inclusion of individuals in DDR activities; 2.30 2.30 2.30 3.41 planning of DDR programme activities, including the establishment of information management systems, and monitoring and evaluations procedures; oversight of the joint implementation unit (JIU) for DDR programme implementation. Directed by a national coordinator/director, the staff of the national DDR agency should include programme managers and technical experts (including those seconded from national ministries) and international technical experts (these may include advisers from the UN system and/or the mission\u2019s DDR unit) (also see IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a2f9da4f-3389-4a68-a8cf-978c470c0af3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "International technical coordination committee An international technical coordination committee provides a forum for consultation, co- ordination and joint planning between national and international partners at the technical level of DDR programme development and implementation. This committee should meet regularly to review technical issues related to national DDR programme planning and implementation. Participation in the technical coordination committee will vary a great deal, depending on which international actors are present in a country. The committee should include tech- nical experts from the national DDR agency and from those multilateral and bilateral agen- cies and non-governmental organizations (NGOs) with operations or activities that have a direct or indirect impact on the national DDR programme (also see IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ef85a742-44d1-4866-ab37-e490999d4d25", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Project approval committee A project approval committee (PAC) can be established to ensure transparency in the use of donor resources for DDR by implementing partners, i.e., to review and approve applications by national and international NGOs or agencies for funding for projects. Its role does not include oversight of either the regular operating budget for national DDR institutions or programmes (monitored by the independent financial management unit), or the activities of the UN mission\u2019s DDR unit. The PAC will generally include representatives of donors, the national DDR agency and the UN mission/agencies (also see IDDRS 2.30 on Participants, Beneficiaries and Partners and IDDRS 3.41 on Finance and Budgeting.)", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3eef1db2-794c-4181-8b44-2fbc214bbd13", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 12, + "Paragraph": "Implementation/Operational level Operational and implementation mechanisms should be established at national, provincial and local levels. These mechanisms should operate under the supervision of the technical coordination and planning body.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e0397b14-62dc-427c-b84f-40cdc4a39356", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 12, + "Paragraph": "Joint implementation unit The JIU is the operational arm of a national DDR agency, responsible for the implementation of a national DDR programme under the direction of the national coordinator, and ultimately accountable to the NCDDR. The organization of a JIU will vary depending on the priorities and implementation methods of particular national DDR programmes. It should be organ- ized by a functional unit that is designed to integrate the sectors and cross-cutting compo- nents of a national DDR programme, which may include: disarmament and demobilization; reintegration; child protection, youth, gender, cross-border, food, health and HIV/AIDS advisers; public information and community sensitization; monitoring and evaluation. Other functional units may be established according to the design and needs of parti- cular DDR programmes.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "abd1b4ba-261f-40e6-995d-c7e0a8efbd5b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 13, + "Paragraph": "Independent financial management unit Given the size and sensitivities of resource allocation to large DDR operations, an independ- ent financial management, contracts and procurement unit for the national DDR programme should be established. This unit may be housed within the national DDR institution or entrusted to an international partner. A joint national\u2013international management and over- sight system may be established, particularly when donors are contributing significant funds for DDR. This unit should be responsible for the following: establishing standards and procedures for financial management and accounting, con- tracts, and procurement of goods and services for the DDR programme; mobilizing and managing national and international funds received for DDR programme activities; reviewing and approving budgets for DDR programme activities; establishing a reporting system and preparing financial reports and audits as required (also see IDDRS 3.41 on Finance and Budgeting).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a72cc08b-2ec0-4059-a4c7-f266dc4c2c0b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Regional/Field offices Depending on the geographic concentration of DDR programme activities (whether these are to take place throughout the country or are limited to particular regions) and on the way in which the administrative structures in the country are organized, regional or provincial coordination should be facilitated through the establishment of DDR field offices. Field offices should report directly to the JIU, which provides technical support and project over- sight. Field offices should be responsible for: supporting disarmament and demobilization process and regional centres; developing regional reintegration strategies; coordinating DDR information and sensitization campaigns in areas of intervention; establishing information, counselling and referral systems; establishing information/communication networks and a database of local implemen- tation partners; maintaining the database, and monitoring reintegration projects and opportunities; establishing management and reporting systems for programme funds. Advisory mechanisms at regional or provincial level may also be established to ensure the broad participation of all stakeholders in the design and delivery of provincial strategies. At the local level, DDR committees or advisory councils should be established to ensure community participation in identifying reintegration opportunities, designing programmes and facilitating the reintegration of ex-combatants and dependants within the community. These councils or committees should include representatives of local and traditional authori- ties; NGOs and community-based associations, including women\u2019s and children\u2019s rights 3.41 groups; and representatives of ex-combatants, women associated with armed groups and forces, child former combatants, disabled people and dependants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a5b18c45-9976-462c-a110-3fbdc8ae5687", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Implementing agencies/partners There will generally be a range of national and international partners engaged in the im- plementation of different components of the national DDR programme. These will vary significantly depending on the presence and capabilities of government agencies, local authorities and community-based organizations; UN agencies; and national and interna- tional NGOs located near DDR operations. The activities of implementing partners should be coordinated by regional/field offices that report to the JIU of a national DDR agency 2.30\t(also see IDDRS 2.30 on Participants, Beneficiaries and Partners).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "24a12723-4e97-4916-9fc9-e2097e0e35fb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": null, + "Paragraph": "Coordination of national and international DDR structures and processes National and international DDR structures and processes should, as far as possible, be jointly developed and coordinated at the policy, planning and operational levels, as explained below. The planning of UN missions and national DDR institutions has not always been sufficiently integrated, reducing the efficiency and effectiveness of both. The success and sustainability of a DDR programme depend on the ability of international expertise and resources to complement and support na- tionally led processes. A key factor in close coordination is the early consultation of national authorities and parties to the DDR process during UN assessment missions and mission planning processes. International DDR expertise, political support and technical assistance should also be available from the earliest point in the peace process through the establishment of national institutions and programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "543425a5-dac6-4482-adf9-9a5115f30233", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "Policy/Strategic level Coordination of national and international efforts at the policy/strategic level will vary a great deal, depending on the dynamics of the conflict, the parties to the peace process and the role/mandate of the UN in support of peace-building and recovery, including DDR. However, coordination (and where possible, integration) of national and international efforts will be essential at the following points: ensuring national and local stakeholder participation in UN assessment and mission 3.10\tplanning exercises (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). National stakeholders should be consulted and, where possible, participate fully in the initial planning phases of international support for DDR; providing international support for the establishment of an NCDDR or political over- sight mechanisms; coordinating bilateral and multilateral actors to ensure a coherent message on DDR and to support national institutions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ac6b210d-97d7-4a2d-a0da-7daedfa548db", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 11, + "Paragraph": "Planning and technical levels Coordination of national and international efforts at the planning and technical levels is important to ensure that the national DDR programme and UN support for DDR operations work together in an integrated and coherent way. It is important to ensure coordination at the following points: in national DDR programme development; in the development of DDR programmes of UN mission and agencies; in technical coordination with bilateral partners and NGOs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "748deb5d-2b5b-4305-89a4-34ea29813896", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 12, + "Paragraph": "Implementation/Operational level Coordination between the national DDR agency and UN mission/system at the operational level should be established through the following: the establishment of a JIU with mixed national/international staff; the provision of international technical assistance for implementation; the coordination of national and international implementing agencies/partners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "82039c4f-8f59-4f12-a1d0-d278f47d00a7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 15, + "Paragraph": "The role of international assistance The DDR of ex-combatants in countries emerging from conflict is complex and involves many different activities. Flexibility and a sound analysis of local needs and contexts are the most essential requirements for designing a UN strategy in support of DDR. It is im- portant to establish the context in which DDR is taking place and the existing capacities of national and local actors to develop, manage and implement DDR operations. The UN recognizes that a genuine, effective and broad national ownership of the DDR process is important for the successful implementation of the disarmament and demobili- zation process, and that this is essential for the sustainability of the reintegration of ex- combatants into post-conflict society. The UN should work to encourage genuine, effective and broad national ownership at all phases of the DDR programme, wherever possible.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c53de663-73aa-490c-baea-144be60e2869", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 15, + "Paragraph": "Considerations in defining the role of the UN The UN approach to the planning, management and monitoring of DDR programmes in a peacekeeping environment should be informed by the following factors: Strength and legitimacy of governments: Post-conflict governments and their attendant bureaucracies may vary widely in terms of their strength and viability; their legitimacy in the eyes of the population; their level of existing capacities for programme devel- opment and management; the territorial extent and scope of government authority; and the degree to which the State has a monopoly over the means of violence in its territory. Taken together, these will affect the degree to which a given government can take effective ownership of and responsibility for DDR; Technical capacities and knowledge: Even when post-conflict governments are legitimate and capable, they may lack the specific technical knowledge that is needed to link DDR to a national reconstruction plan and SSR; Participation of civil society: In many post-conflict situations, civil society may have been repressed or marginalized and lack access to political decision-making processes. The representation of civil society at all levels in the body politic is essential, and the UN should support the participation and engagement of civil society in DDR processes wherever possible. Possible roles may include involvement in the policy development process (and particularly its link with transitional justice and equity issues); assistance with the identification of people associated with armed groups and forces, especially women and children; and implementing (particularly focusing on the involvement of local communities) and monitoring the effectiveness of DDR programmes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "72cb1505-c977-4f68-b3b6-03f81d3835eb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 16, + "Paragraph": "Letter of agreement The national stakeholders and the UN should establish a letter of agreement where the government and relevant national stakeholders outline their respective roles and responsi- bilities; establish commitments to DDR according to international standards; establish links to SSR (including plans for future military size and budget, military unification, and restruc- turing, where relevant); and outline humanitarian activities and reconstruction/recovery efforts.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "93e16ce1-5bec-4b57-a7e8-76178f540b28", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 16, + "Paragraph": "Areas of UN support UN support to national efforts take place in the following areas (the actual degree of UN engagement should be determined on the basis of the considerations outlined above): Political/Strategic support: In order for the international community to provide political support to the DDR process, it is essential to understand the dynamics of both the conflict and the post-conflict period. By carrying out a stakeholder analysis (as part of a larger conflict assessment process), it will be possible to better understand the dynam- ics among national actors, and to identify DDR supporters and potential spoilers; Institutional capacity development: It is important that capacity development strategies are established jointly with national authorities at the start of international involvement in DDR to ensure that the parties themselves take ownership of and responsibility for the success of the process. The UN system should play an important role in supporting the development of national and local capacities for DDR through providing technical assistance, establishing partnership arrangements with national institutions, and pro- viding training and capacity-building to local implementing partners; Support for the establishment of legal frameworks: A key area in which international exper- tise can support the development of national capacities is in the drawing up of legal frameworks for DDR and related processes of SSR and weapons management. The UN system should draw on experiences from a range of political and legal systems, and assist national authorities in drafting appropriate legislation and legal instruments; Technical assistance for policy and planning: Through the provision of technical assistance, the UN system should provide direct support to the development of national DDR policy and programmes. It is important to ensure, however, that this assistance is provided through partnership or mentoring arrangements that allow for knowledge and skills transfers to national staff, and to avoid situations where international experts take direct responsibility for programme functions within national institutions. When several international institutions are providing technical assistance to national authori- ties, it is important to ensure that this assistance is coordinated and coherent; Direct support for implementation and financial management: The UN system may also be called upon, either by Security Council mandate or at the request of national authorities, to provide direct support for the implementation of certain components of a DDR pro- gramme, including the financial management of resources for DDR. A memorandum of understanding should be established between the UN and national authorities that defines the precise area of responsibility for programme delivery, mechanisms for co- ordination with local partners and clear reporting responsibilities; Material/Logistic support: In the post-conflict period, many national institutions lack both material and human resources. The UN system should provide material and logistic support to national DDR institutions and implementing agencies, particularly in the areas of: information and communications technology and equipment; transportation; rehabilitation, design and management of DDR sites, transit centres and other facilities; the establishment of information management and referral systems; and the procurement of basic goods for reinsertion kits, among others (also see IDDRS 4.10 on Disarmament, IDDRS 4.20 on Demobilization and IDDRS 4.30 on Social and Economic Reintegration); Training programmes for national staff: The UN system should further support capacity development through the provision of training. There are a number of different training methodologies, including the provision of courses or seminars, training of trainers, on- the-job or continuous training, and exchanges with experts from other national DDR institutions. Although shortage of time and money may limit the training options that can be offered, it is important that the approach chosen builds skills through a continuous process of capacity development that transfers skills to local actors; Support to local capacity development and community empowerment: Through local capacity development and community empowerment, the UN system should support local ownership of DDR processes and programmes. Since the success of the DDR process depends largely on the reintegration of individuals at the community level, it is im- portant to ensure that capacity development efforts are not restricted to assisting national authorities, but include direct support to communities in areas of reintegration. In particular, international agencies can help to build local capacities for participation in assessment and planning processes, project and financial management, reporting, and evaluation. 4.30 4.10 4.20", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "36501cbb-256d-4e4a-82b2-00bac7f5a5a0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 22, + "Paragraph": "The national commission The programme will be implemented under the guidance and supervision of the National Commission on Disarmament, Demobilization, Rehabilitation and Reintegration (NCDDRR), a temporary institution established by the peace agreement August 2003. The NCDDRR will consist of representatives from relevant National Transitional Government of Liberia (NTGL) agencies, the Government of Liberia (GOL), the Liberians United for Reconciliation and Democracy (LURD), the Movement for Democracy in Liberia (MODEL), the Economic Community of West African States (ECOWAS), the United Nations (UN), the African Union (AU) and the International Contact Group on Liberia (ICGL). The NCDDRR will: provide policy guidance to the Joint Implementation Unit (JIU); formulate the strategy and co-ordinate all government institutions in support of the Disarmament, Demobilization, Rehabilitation and Reintegration Programme (DDRRP); identify problems related to programme implementation and impact; and undertake all measures necessary for their quick and effective solution. During start-up, the NCDDRR will hold at least monthly meetings, but extraordinary meetings can be called if necessary. The NCDDRR will be supported by a Secretary, who will be responsible for: reporting to the NCDDRR on the activities of the JIU with regard to the DDRR process; promoting programme activities as well as managing relationships with external key stakeholders; assisting the JIU with necessary support and facilitation required to secure the political commitment of the leadership of the various fighting groups in order to implement the DDRR programme; participating in the various committees of the JIU \u2013 particularly with the Technical Coordination Committee and the Project Approval Committee (PAC); providing general oversight of the DDRR process on behalf of the NCDDRR committee and preparing reports to the committee.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0588fb81-38e8-41d9-af84-ada95ddabfb3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 23, + "Paragraph": "Function In order to ensure rapid implementation that will protect the credibility of the programme, a Joint Implementation Unit (JIU), headed by a Programme and Policy Adviser, will carry out the planning and implementation of the day-to-day operation and execution of the programme. The JIU will be an interdisciplinary and interdepartmental entity composed of four units dealing with: disarmament and demobilization: staffed with expertise from the UNMIL comprising a disarmament and demobilization expert, demobilization officers and field officers, as well as qualified national staff; rehabilitation and reintegration: staffed with expertise from the UNDP and other relevant agencies consisting of reintegration operation experts and national experts in vocational training and small enterprise development, employment creation and appren- ticeship promotion, agriculture and food production; monitoring and evaluation: staffed by technical assistance from the UNDP including a monitoring and evaluation (M&E) expert, and national staff as systems analyst, pro- grammer and M&E field monitors as well as short-term data entry clerks; and information and sensitization: staffed with expertise from UNMIL and OCHA includ- ing specialists in public information development and dissemination, social adaptation programmes in the area of civic education, psychosocial counselling, community-based reconciliation and peace-building measures. Accountable to the NCDDRR, the JIU will be responsible for ensuring: the planning and implementation of the individual programme components in collabo- ration with other government departments, NGOs and donors; the transparent and accountable administration of the programme (including procure- ment and disbursements); and monitoring and evaluation. The institutional capacity of the JIU will be ensured through rigorous selection of staff, payment consistent with the quality of outputs required, and staff training where appro- priate. Technical assistance will be contracted on the basis of specific terms of reference for providing a management information system (MIS) and financial management as well as the implementation of specific programme components. The various units of the JIU will be assigned with expertise from UN agencies as follows: the UNMIL DDR team will be deployed for the DD Unit in the JIU; programme and policy coordination, MIS and reintegration will be assigned to the team from the UNDP; and UNMIL and OCHA will handle the Information and Sensitization Unit. This arrangement will enhance the capacity of the JIU as well as reducing the overall staffing cost for the programme, while ensuring continuity in programme development in the event of the completion of the mandate of the mission. Each unit will be supported with national staff recruited to understudy the international staff of the JIU. A Programme and Policy Co-ordinator will manage and coordinate an internal manage- ment team comprising the heads of units of the JIU, and will report to the Office of the SRSG or to his or her designate in matters relating to the implementation of the programme. All implementing partners such as bilateral agencies, international and local NGOs will undertake their responsibilities in full compliance with programme guidelines and under the supervision of the JIU in respect of contracts entered into with the JIU of the NCDDRR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1b71c74f-cf08-4518-b5c5-91a577f7b8f0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 23, + "Paragraph": "DDRR field offices In addition to the central office in Monrovia, the JIU will establish five small DDRR field offices based on where ex-combatants are concentrated. The field offices will be co-located with the UNMIL field offices. Each DDRR field office will comprise a reintegration officer and up to four referral and counselling officers, all familiar with the local socio-political environment. The reinte- gration officers will be UN Volunteers (UNVs) recruited for this purpose and support with national staff. In addition, each DDRR field office will have an administration and account- ing officer, who will report directly to the financial manager of the Direct Execution (DEX) for administering reinsertion and reintegration assistance. In order to reinforce the capacity at the local level, each DDRR field office will have a UNV as the reintegration or DDRR officer working with various local staff. The field offices will be responsible for: information and counselling; administration of reintegration assistance under the different programme components; monitoring and evaluation; co-ordination with traditional/religious leaders, and maintaining linkages and coordi- nation with other community-based reconstruction and rehabilitation interventions; sensitizing the local population; assisting in programme implementation; identifying and solving local problems related to ex-combatant reintegration; and reporting on the progress and impact of the programme to the JIU in Monrovia. On the basis of the settlement pattern of ex-combatants, additional referral and coun- selling officers may be recruited.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9fba7418-37fd-4d93-a652-d4c5cc140ccf", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 25, + "Paragraph": "Roles and functions of the military units A military liaison office will be created to facilitate co-operation with UNMIL and the DD Unit for all security-related aspects of the programme. Within the overall mandates given to them by their respective institutions, UNMIL is expected to perform the following functions within the DDRR programme: provide relevant input and information as well as security assistance and advice with regard to the selection of potential sites for disarmament and demobilization; provide technical input with regard to the process of disarmament, registration, docu- mentation and screening of potential candidates for demobilization; develop and install systems for arms control and advise on a larger legislative frame- work to monitor and control arms recycling; monitor and verify the conformity of the DDR process according to recognized and acceptable standards; assume responsibility for effecting disarmament of combatants, maintain a pertinent registry of surrendered weaponry and conduct pre-demobilization screening and evaluation; and ensure the destruction of all weapons surrendered.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "19a1c203-6743-46ba-85ee-21f4e9d6c450", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 25, + "Paragraph": "Role of implementing partners and selection criteria A considerable part of the programme implementation will be contracted out to local and international NGOs as well as in partnership with various UN agencies, line ministries, private sector institutions and community-based structures. Implementing agencies will be selected on the basis of the following criteria: Track record and technical capacity. The agency must demonstrate a track record of technical and functional expertise in its chosen area of participation for not less then four years; Financial management capacity. It needs to demonstrate a proven record of sound finan- cial management and/or the capacity to pre-finance initial project costs. It must provide audited financial record for the past three years; Management capacity. The agency must demonstrate sound management capability in respect of the programme delivery structure and expertise. The implementing agency will be expected to adhere to the policy guidelines with regard to camp management and other operational regulations. It will be accountable to the JIU in matters of technical and financial issues related to its contractual obligations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "6d3b7c0e-8df6-4804-b55b-1ae4a3a38b57", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 5, + "Paragraph": "Monitoring and evaluation The programme comprises three separate but highly related processes, namely the military process of selecting and assembling combatants for demobilization and the civilian process of discharge, reinsertion and reintegration. How soldiers are demobilized affects the reinsertion and reintegration processes. At each phase: the administration of assistance has to be accounted for; weapons collected need to be classified and analysed; beneficiaries of reintegration assistance need to be tracked; and the quality of services provided during the implementation of the programme needs to be assessed. To plan, monitor and evaluate the processes, a management information system (MIS) regarding the discharged ex-combatants is required and will contain the following components: a database on the basic socio-economic profile of ex-combatants; a database on disarmament and weapons classification; a database of tracking benefit administration such as on payments of the settling-in package, training scholarships and employment subsidies to the ex-combatants; and a database on the programme\u2019s financial flows. The MIS depends on the satisfactory performance of all those involved in the collection and processing of information. There is, therefore, a need for extensive training of enumer- ators, country staff and headquarters staff. Particular emphasis will be given to the fact that the MIS is a system not only of control but also of assistance. Consequently, a constant two- way flow of information between the DDRR field offices and the JIU will be ensured through- out programme implementation. The MIS will provide a useful tool for planning and implementing demobilization. In connection with the reinsertion and reintegration of ex-combatants, the system is indispen- sable to the JIU in efficiently discharging its duties in planning and budgeting, implemen- tation, monitoring and evaluation. The system serves multiple functions and users. It is also updated from multiple data sources. The MIS may be conceived as comprising several simple databases that are logically linked together using a unique identifier (ID number). An MIS expert will be recruited to design, install and run the programme start-up. To keep the overheads of maintaining the system to a minimum, a self-updating and checking mechanism will be put in place.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0a520737-761e-4b3d-9ae0-9fbeef494438", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 27, + "Paragraph": "Management of the DDRR Trust Fund Fundamental principles for the management of the DDRR Trust Fund are based on trans- parency and openness with a clear separation between the policy/allocation aspects of the DDRR Trust Fund operations and the fiduciary/administrative responsibility. The Trust Fund will be administered by UNDP in accordance with the terms of refer- ence of the Trust Fund. In this capacity, the UNDP will establish and maintain appropriate records and accounts to identify the contributions to the Fund, the commitments to be financed out of the Fund and the receipt and disbursement of funds. The DEX Unit will be established and will be composed of UNDP staff with the overall responsibility for financial management and procurement for the programme. The DEX Unit will monitor expenditures related to the activities financed under the Trust Fund. The respon- sibilities of the DEX Unit will include procurement of goods, services and other items, screening and recommending UNDP\u2019s approval and payment, and monitoring all expen- ditures financed by the funds. UNDP will finance the cost of the DEX Unit from its own proper resources; therefore, all contributions will go towards direct costs of the DDRR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "012ab06b-4739-49eb-a624-56e1c56bd64f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 27, + "Paragraph": "Modalities of administration and administrative charges The UNDP, as the administrator of the DDRR Trust Fund, will be responsible for all dis- bursements in conformity with its own regulations, rules and procedures and consistent with the allocations and decisions made by the project approval and review committee of the JIU of the NCDDRR as well as the broader priorities set in consultation with the NCDDRR and the donor community. The UNDP will strive for maximum efficiency and effectiveness in administering the DDRR Trust Fund while promoting sound financial management and accountability to ensure that all required fiduciary and administrative cost elements are adequately funded.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3aada907-52dd-4281-941d-271b09704459", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 27, + "Paragraph": "Reporting and auditing Appropriate progress reports will be forwarded to the donors on a monthly basis covering general progress on implementation, financial reports on income and expenditure. The progress reporting will be the prime responsibility of the UNDP Resident Representative in Monrovia. However, the reports will also be submitted to the donors through UNDP Headquarters in New York to the relevant permanent missions to the United Nations. These progress reports will include the status of intended outputs, achievements and progress on the programme. On an annual basis, UNDP will provide financial reports on income and expenditure of the Trust Fund to donors, in accordance with UNDP\u2019s financial regulations and rules. An annual financial statement will be prepared for the Fund showing income and expendi- tures as of 31 December of every year and shall be submitted by the 30 June, i.e., six months after. Contributions made available will be subject exclusively to the internal and external auditing procedures provided for in the financial regulations, rules and directives of UNDP. Should an audit report of the Board of Auditors of UNDP to its governing body contain observations relevant to the contributions, such information will be available to the donor(s).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e5a4aaeb-7f33-4fcd-af37-5d59e58b3f45", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Technical Coordination Committee A Technical Coordinating Committee (TCC) will be established by the JIU to consult and inform external programme partners on critical issues of planning and programme develop- ment with regard to the DDRR programme. This will provide a broad forum for technical and strategic consultation in support of rational programming for all the DDRR activities. The responsibilities of the TCC will be to: identify strategic, operational and technical issues that may have an impact on the dis- armament, demobilisation and reintegration process; develop technical standards, guidelines, and operating principles, which will be adhered to by all involved in the implementation of specific DDRR activities; provide the framework for securing the support of key partners with regard to input to planning and implementing disarmament and demobilization activities as well as the reintegration process; provide the basis for operational planning and consensus on issues relating to disarm- ament, demobilization and reintegration; and on a regular basis identify key policy issues that need to be resolved by the policy com- mittee and provide policy options to the NCDDRR for consideration. The membership of the TCC will be based on invitation by the JIU and consist of rele- vant programme staff from agencies such as UNICEF, UNDP, UNHCR, WFP, WHO, EU, USAID, UNMIL, the Food and Agriculture Organization (FAO), OCHA and other appro- priate agencies. Relevant NTGL agencies could be invited for participation when necessary. The TCC will be constituted on a relevant sector basis such as disarmament and demobiliza- tion and reintegration, and it will meet fortnightly or as and when required. The membership and participation will vary according to the relevant sector.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "eeedc99d-e408-4bbb-b054-a9801b880e35", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.30-National-Institutions-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.30-National-Institutions-for-DDR", + "PageNum": 10, + "Paragraph": "Project Approval Committee A Project Approval Committee (PAC) will be established to ensure transparency in the use of donor resources. The PAC will be responsible for the review and approval of projects submitted by the implementing partners (i.e., international and national NGOs, etc.) to the JIU of the NCDDRRP. Financial resources from the assessed budget of the mission would be processed outside this framework. The members of the PAC will comprise one represen- tative each from the EU, USAID, UNDP, UNMIL, UNICEF and NTGL.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a02e1868-319a-4353-b81c-c05e0aafc98c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": null, + "Paragraph": "Summary The base of a well-functioning integrated disarmament, demobilization and reintegration (DDR) programme is the strength of its logistic, financial and administrative performance. If the multifunctional support capabilities, both within and outside peacekeeping missions, operate efficiently, then planning and delivery of logistic support to a DDR programme are more effective. The three central components of DDR logistic requirements include: equipment and services; finance and budgeting; and personnel. Depending on the DDR programme in question, many support services might be necessary in the area of equipment and services, e.g. living and working accommodation, communications, air transport, etc. Details regard- ing finance and budgeting, and personnel logistics for an integrated DDR unit are described in IDDRS 3.41 and 3.42. Logistic support in a peacekeeping mission provides a number of options. Within an integrated mission support structure, logistic support is available for civilian staffing, finances and a range of elements such as transportation, medical services and information technology. In a multidimensional operation, DDR is just one of the components requiring specific logistic needs. Some of the other components may include military and civilian headquarters staff and their functions, or military observers and their activities. When the DDR unit of a mission states its logistic requirements, the delivery of the supplies/services requested all depends on the quality of information provided to logistics planners by DDR managers. Some of the important information DDR managers need to provide to logistics planners well ahead of time are the estimated total number of ex-com- batants, broken down by sex, age, disability or illness, parties/groups and locations/sectors. Also, a time-line of the DDR programme is especially helpful. DDR managers must also be aware of long lead times for acquisition of services and materials, as procurement tends to slow down the process. It is also recommended that a list of priority equipment and services, which can be funded by voluntary contributions, is made. Each category of logistic resources (civilian, commercial, military) has distinct advantages and disadvantages, which are largely dependent upon how hostile the operating environ- ment is and the cost.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "a4282600-a573-4e34-b6c8-a1e90cfa4808", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": null, + "Paragraph": "1. Module scope and objectives This module provides practitioners with an overview of the integrated mission support concept and explains the planning and delivery of logistic support to a DDR programme. A more detailed treatment of the finance and budgeting aspects of DDR programmes are provided in IDDRS 3.41, while IDDRS 3.42 deals with the issue of personnel and staffing in an integrated DDR unit. 3.42 3.42 3.41 3.41", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "32402f4b-dfdc-44b5-9a74-55d0a521766f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A gives a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) 1.20\tis given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f122773f-aba0-455e-ac34-f6433d75728c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 4, + "Paragraph": "Introduction The effectiveness and responsiveness of a DDR programme relies on the administrative, logistic and financial support it gets from the peacekeeping mission, United Nations (UN) agencies, funds and programmes. DDR is multidimensional and involves multiple actors; as a result, different support capabilities, within and outside the peacekeeping mission, should not be seen in isolation, but should be dealt with together in an integrated way as far as possible to provide maximum flexibility and responsiveness in the implementation of the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce12377f-a82d-4100-b845-b974ff054701", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 4, + "Paragraph": "Guiding principles The planning of the logistic support for DDR programmes is guided by the principles, key con- 2.10\tsiderations and approaches outlined in IDDRS 2.10 on the UN Approach to DDR; in particular: unity of effort in the planning and implementation of support for all phases of the DDR programme, bearing in mind that different UN (and other) actors have a role to play in support of the DDR programme; accountability, transparency and flexibility in using the most appropriate support mech- anisms available to ensure an efficient and effective DDR programme, from the funding through to logistic support, bearing in mind that DDR activities may not occur sequen- tially (i.e., one after the other); a people-centred approach, by catering for the different and specific needs (such as dietary, medical and gender-specific requirements) of the participants and beneficiaries of the DDR programme; means of ensuring safety and security, which is a major consideration, as reliable estimates of the size and extent of the DDR operation may not be available; contingency planning must therefore also be included in logistics planning.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "01048e99-5304-409e-a13b-83d4edfa8fe5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 4, + "Paragraph": "Equipment and services Depending on the specific character of the DDR programme, some or all of the following support services may be required: living accommodation; camp construction material, including outsourcing of construction and management; fire prevention and precautions, and fire-fighting equipment; working accommodation; office furniture; office equipment and supplies; communications; information technology; medical services capable of responding to different needs; movement control; surface transport; air transport; water; food rations; food preparation and supply arrangements; fuel; general services such as janitorial, waste disposal, etc.; security; management information software, identity card machines; weapons destruction equipment.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4d4299fa-bb55-45ac-b242-d114fd0babaa", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 5, + "Paragraph": "Finance and budgeting DDR programmes in a peacekeeping context are funded from a combination of the peace- keeping-assessed budget and voluntary sources, which could come from UN-managed trust funds, World Bank trust funds and direct bilateral support (also see IDDRS 3.41 on Finance and Budgeting). 3.41", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7293ded8-41bf-4f8a-bbf8-0cc5f0b4e942", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 5, + "Paragraph": "5.3. Personnel The UN takes an integrated approach to DDR, which is reflected in the effort to establish a single integrated DDR unit in the field. The aim of this integrated unit is to facilitate joint planning to ensure the effective and efficient decentralization of the many DDR tasks (also see IDDRS 3.42 on Personnel and Staffing). 3.42", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b0e5e5dc-4c95-4f0e-98bc-9e7ddc657df7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 5, + "Paragraph": "Logistic support in a peacekeeping mission Note that unless otherwise specified, guidelines in this section refer to logistics issues under the direct management of the Department of Peacekeeping Operations (DPKO), or funded through assessed contributions to a peacekeeping mission budget. Other UN agencies, funds and programmes will in most cases need to comply with the rules and procedures govern- ing operations, logistics and the financing of their activities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9c932e9d-6fb9-426c-8c4c-ed0578d5a389", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 5, + "Paragraph": "Integrated mission support In a peacekeeping mission, integrated support is provided. This includes civilian staffing, different logistic elements (such as logistics planning, transportation, supply, engineering, communications and information technology, medical services and general services) and finances, which are all considered together to develop the mission support strategy (see figure 1). A peacekeeping mission adopts this general approach for the delivery of logistic support to all mandated programmes, although it also caters to the specific needs of the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "05d9b157-5dfb-44e1-8e31-244ca29defe4", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 6, + "Paragraph": "A multidimensional operation DDR is one component of a multidimensional peacekeeping operation. Other components may include: mission civilian substantive staff and the staff of political, humanitarian, human rights, public information, etc., programmes; military and civilian police headquarters staff and their functions; military observers and their activities; military contingents and their operations; civilian police officers and their activities; formed police units and their operations; UN support staffs; other UN agencies, programmes and funds, as mandated.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d3733139-ea5a-44f3-823f-78c1f9b77555", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 6, + "Paragraph": "DDR statement of requirements The quality and timeliness of DDR logistic support to a peacekeeping mission depend on the quality and timeliness of information provided by DDR planners and managers to logistics planners. DDR programme managers need to state the logistic requirements that fall under the direct managerial or financial scope of the peacekeeping mission and DPKO. In addition, the logistic requirements have to be submitted to the Division of Administration as early as possible to ensure timely logistic support. Some of the more important elements are listed below as a guideline: estimated total number of ex-combatants, broken down according to sex, age, dis- ability or illness, parties/groups and locations/sectors; estimated total number of weapons, broken down according to type of weap- on, ammunition, explosives, etc.; time-lineoftheentireprogramme, show- ing start/completion of activities; allocation of resources, materials and services included in the assessed budget; names of all participating UN entities, non-governmental organizations (NGOs) and other implementing partners, with their focal points and telephone numbers/email addresses; forums/meetings and other coordination mechanisms where Joint Logistics Operations Centre (JLOC) participation is requested; requirement of office premises, office furniture, office equipment and related services, with locations; ground transport requirements \u2014 types and quantities; air transport requirements; communications requirements, including identity card machines; medical support requirements; number and location of various disarmament sites, camps, cantonments and other facilities; layout of each site, camp/cantonment with specifications, including: camp/site management structure with designations and responsibilities of officials; number and type of combatants, and their sex and age; number and type of all categories of staff, including NGOs\u2019 staff, expected in the camp; nature of activities to be conducted in the site/camp and special requirements for rations storage, distribution of insertion benefits, etc.; security considerations and requirements; preferred type of construction; services/amenities provided by NGOs; camp services to be provided by the mission, as well as any other specific requirements; dietary restrictions/considerations; fire-fighting equipment; camp evacuation standard operating procedures; policy on employment of ex-combatants as labourers in camp construction.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1adb757b-8928-4b5f-8cb2-1c1dd556aebe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 7, + "Paragraph": "Long lead time items For procurement funded from the mission budget (assessed contributions), DDR manag- ers must recognize and build into their planning estimates of the lead times for the acqui- sition of services and materials. Typical lead times for common equipment/commodities, exclusive of processing and shipping time, are given below: In principle, programme managers should attempt to get all logistic requirements for UN support to DDR funded out of the regular mission budget. Also, they should identify a (small) number of priority pieces of equipment and services that could be funded from voluntary contributions (which often have the ability to procure locally and with shorter lead times) on a reimbursable basis. The procurement of equipment and services in this way should be carried out according to the rules and regulations of individual agencies.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "319d5b17-c861-4896-9dec-3628446222bf", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 8, + "Paragraph": "Options for the provision of logistic support for DDR activities The range of logistic support provided to a programme or activity will normally include a combination of UN civilian, commercial and military resources. Each of these elements has distinct advantages and disadvantages: UN civilian support under direct UN control is easily adjusted to programme-specific requirements, and can operate in all but the most hostile environment; however, it takes time to assemble the required personnel and equipment, and to establish the necessary organization; Commercial support comes fully staffed and equipped, but it takes time to put the appro- priate contractual arrangements in place, and commercial support cannot always be relied on to operate in hostile conditions; Military support can operate in the most hostile environments, can be mobilized rela- tively quickly (depending on the troop-contributing country) and comes fully staffed and equipped. However, military support lacks continuity, because of the need to rotate personnel every 6\u201312 months. It can also be expensive.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7d658b14-ebef-4395-9784-16910a1c875f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 8, + "Paragraph": "Support management structures and processes This section outlines the management structure, and the planning and delivery of logistic support in a peacekeeping mission. These structures apply to the components of a DDR programme managed directly by DPKO or funded from the regular mission budget.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5e1dd6ae-b5fd-48c5-803b-8e50fa639b19", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 9, + "Paragraph": "Chief administrative officer Within a UN peacekeeping mission, the chief administrative officer (CAO) (or director of administration \u2014 DOA) is the sole financially accountable officer (for the assessed budget), and is responsible for the provision of all administrative and logistic support to all mission components. The senior mission management determines the priorities for programmes and their activities. It is the responsibility of the CAO/DOA to turn these priorities into plans, resource allocations, tasks, and coordination and monitoring arrangements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "77b0740c-1796-4315-bed3-ad92c6fd7799", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 9, + "Paragraph": "Integrated support services A joint civilian\u2013military management structure, known as integrated support services (ISS), reviews and prioritizes all requests for logistic support in accordance with the mission\u2019s objectives and priorities, and allocates the most suitable civilian, commercial or military support resource to meet the requirements in the most effective and economic manner. A diagram of a typical ISS structure is given in Annex B.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "90c6fd86-6cb9-4f18-93ad-9430b99d739b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.40-Mission-and-Programme-Support-for-DDR", + "PageNum": 9, + "Paragraph": "Joint Logistics Operations Centre The day-to-day planning, analysis, coordination and tasking of all requests for logistic support are handled by the JLOC; see Annex B). The JLOC is also the mission\u2019s single point of contact for the coordination of logistics issues with non-DPKO actors such as NGOs orother UNagencies, fundsandprogrammes. All requests for logistic support should be channelled through the JLOC for appropriate prioritization and tasking. For the JLOC to effectively plan and de- liver logistic support to a DDR programme, it is essential that the DDR management team keeps the JLOC informed of its future support requirements during the planning stage and that it provides the JLOC with the programme operational plan before the DDR operation starts, keeping in view the lead times for design, acquisition, packaging and delivery of logistic services. The DDR operational plan needs to describe what is needed to achieve its planned activities, as follows: physical resources: space, supplies, equipment; human resources: international, national (local, national professional officers), UN volunteers; services; supplies; partnerships/links with implementing partners; time-lines.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "65b917f5-0e60-4e6f-8411-1d05a69927a7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "Summary Disarmament, demobilization and reintegration (DDR) are all complex and sensitively linked processes that demand considerable human and financial resources to plan, imple- ment and monitor. Given the many different actors involved in the various stages of DDR, and the fact that its phases are interdependent, integrated planning, effective coordination and coherent reporting arrangements are essential. Past experiences have highlighted the need for the various actors involved in planning and implementing DDR, and monitoring its impacts, to work together in a complementary way that avoids unnecessary duplication of effort or competition for funds and other resources. This module provides guidelines for improving inter-agency cooperation in the planning of DDR programmes and operations. The module shows how successful implementation can be achieved through an inclusive process of assessment and analysis that provides the basis for the formulation of a comprehensive programme framework and operational plan. This mechanism is known as the \u2018planning cycle\u2019, and originates from both the inte- grated mission planning process (IMPP) and post-conflict United Nations (UN) country team planning mechanisms.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4fd1971c-33eb-42e1-add0-b723f816be47", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "1. Module scope and objectives This module outlines a general planning process and framework for providing and struc- turing UN support for national DDR efforts in a peacekeeping environment. This planning process covers the actions carried out by DDR practitioners from the time a conflict or crisis is put on the agenda of the Security Council to the time a peacekeeping mission is formally established by a Security Council resolution, with such a resolution assigning the peace- keeping mission a role in DDR. This module also covers the broader institutional requirements for planning post-mission DDR support. (See IDDRS 3.20 on DDR Programme Design for more detailed coverage of the development of DDR programme and implementation frameworks.) The planning process and requirements given in this module are intended to serve as a general guide. A number of factors will affect the various planning processes, including: The pace and duration of a peace process: A drawn-out peace process gives the UN, and the international community generally, more time to consult, plan and develop pro- grammes for later implementation (the Sudanese peace process is a good example); Contextual and local realities: The dynamics and consequences of conflict; the attitudes of the actors and other parties associated with it; and post-conflict social, economic and institutional capacities will affect planning for DDR, and have an impact on the strategic orientation of UN support; National capacities for DDR: The extent of pre-existing national and institutional capa- cities in the conflict-affected country to plan and implement DDR will considerably 3.20 affect the nature of UN support and, consequently, planning requirements. Planning for DDR in contexts with weak or non-existent national institutions will differ greatly from planning DDR in contexts with stable and effective national institutions; The role of the UN: How the role of the UN is defined in general terms, and for DDR specifically, will depend on the extent of responsibility and direct involvement assumed by national actors, and the UN\u2019s own capacity to complement and support these efforts. This role definition will directly influence the scope and nature of the UN\u2019s engagement in DDR, and hence requirements for planning; Interaction with other international and regional actors: The presence and need to collaborate with international or regional actors (e.g., the European Union, NATO, the African Union, the Economic Community of West African States) with a current or potential role in the management of the conflict will affect the general planning process. In addition, this module provides guidance on: adapting the DDR planning process to the broader framework of mission and UN country team planning in post-conflict contexts; linking the UN planning process to national DDR planning processes; the chronological stages and sequencing (i.e., the ordering of activities over time) of DDR planning activities; the different aspects and products of the planning process, including its political (peace process and Security Council mandate), programmatic/operational and organizational/ institutional dimensions; the institutional capacities required at both Headquarters and country levels to ensure an efficient and integrated UN planning process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "862b8cf1-0cd7-4952-905c-6da561e63147", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of the abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards 1.20\t(IDDRS) is given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "69a9cc99-9c85-42a6-8263-bb035c66fded", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 4, + "Paragraph": "Introduction The ability of the UN to comprehensively and collectively plan its joint response to crisis has evolved considerably over the last decade. Nonetheless, the expansion of complex peacemaking, peacekeeping, humanitarian and peace-building tasks in complex internal conflicts, which often have regional repercussions, continues to demand an even earlier, closer and more structured process of planning among UN entities and partners. Meeting this demand for more structured planning is essential to delivering better DDR programmes, because DDR is a multisectoral, multi-stakeholder and multi-phase process requiring coordination and adequate links among various post-conflict planning mechanisms. The implementation of DDR programmes often requires difficult compromises and trade-offs among various political, security and development considerations. It also relies very much on establishing an appropriate balance between international involvement and national ownership. DDR programmes have a better chance of success when the DDR planning process starts early (preferably from the beginning of the peace process), builds on the accumulated experience and expertise of local actors, is based on a solid understanding of the conflict (causes, perpetrators, etc.), and deliberately encourages greater unity of effort among UN agencies and their community of partners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5372529e-4dbc-4e1c-88e3-66a3cd8455eb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 5, + "Paragraph": "Guiding principles The planning process for the DDR programmes is guided by the principles, key consider- ations and approaches defined in IDDRS 2.10 on the UN Approach to DDR. Of particular importance are: Unity of effort: The achievement of unity of effort and integration is only possible with an inclusive and sound mission planning process involving all relevant UN agencies, departments, funds and programmes at both the Headquarters and field levels. DDR planning takes place within this broader integrated mission planning process; Integration: The integrated approach to planning tries to develop, to the extent possible: a common framework (i.e., one that everyone involved uses) for developing, man- aging, funding and implementing a UN DDR strategy within the context of a peace mission; an integrated DDR management structure (unit or section), with the participation of staff from participating UN agencies and primary reporting lines to the Deputy Special Representative of the Secretary-General (DSRSG) for humanitarian and development affairs. Such an approach should include the co-location of staff, infrastructure and resources, as this allows for increased efficiency and reduced overhead costs, and brings about more responsive planning, implementation and coordination; joint programmes that harness UN country team and mission resources into a single process and results-based approach to putting the DDR strategy into operation and achieving shared objectives; a single framework for managing multiple sources of funding, as well as for co- ordinating funding mechanisms, thus ensuring that resources are used to deal with common priorities and needs; Efficient and effective planning: At the planning stage, a common DDR strategy and work plan should be developed on the basis of joint assessments and evaluation. This should establish a set of operational objectives, activities and expected results that all UN entities involved in DDR will use as the basis for their programming and implemen- tation activities. A common resource mobilization strategy involving all participating UN entities should be established within the integrated DDR framework in order to prevent duplication, and ensure coordination with donors and national authorities, and coherent and efficient planning. 2.10", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c580d71e-7965-4789-8545-568904aae7c5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "5. Situating DDR within UN and national planning in post- conflict contexts This section discusses integrated DDR planning in the context of planning for integrated UN peace operations, as well as broader peace-building efforts. These processes are currently under review by the UN system. While references are made to the existing integrated mission planning process (IMPP), the various steps that make up the process of integrated DDR planning (from the start of the crisis to the Security Council mandate) apply to whatever planning process the UN system eventually decides upon to guide its mission planning and peace-building support process. Where possible (and before the establishment of the Peace-building Support Office and the review of the IMPP), specific DDR planning issues are linked to the main phases or stages of mission and UN country team planning, to lay the foundations for integrated DDR planning in the UN system. At the moment, the planning cycle for integrated peace support missions is centred on the interdepartmental mission task force (IMTF) that is established for each mission. This forum includes representatives from all UN departments, agencies, funds and programmes. The IMTF provides an important link between the activities taking place on the ground and the planning cycle at Headquarters. Five general phases (stages) of planning for UN mission and post-conflict peace-building support can be identified, which form the basis for defining exactly how the DDR planning process will take place: Phase I: Pre-planning and preparatory assistance; Phase II: Initial technical assessment and concept of operations; Phase III: Development of a strategic and policy framework (strategic planning); Phase IV: Development of a programme and operational framework (operational planning); Phase V: Continuation and transition planning.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "181c6d09-7671-41cb-aada-d9c0af5cee88", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 7, + "Paragraph": "Phase I: Pre-planning and preparatory assistance During the pre-planning phase of the UN\u2019s involvement in a post-conflict peacekeeping or peace-building context, the identification of an appropriate role for the UN in supporting DDR efforts should be based on timely assessments and analyses of the situation and its requirements. The early identification of potential entry points and strategic options for UN support is essential to ensuring the UN\u2019s capacity to respond efficiently and effectively. Integrated preparatory activities and pre-mission planning are vital to the delivery of that capacity. While there is no section/unit at UN Headquarters with the specific role of coordinating integrated DDR planning at present, many of the following DDR pre-planning tasks can and should be coordinated by the lead planning depart- ment and key operational agencies of the UN country team. Activities that should be included in a preparatory assistance or pre- planning framework include: the development of an initial set of strategic options for or assessments of DDR, and the potential role of the UN in supporting DDR; the provision of DDR technical advice to special envoys, Special Representatives of the Secretary-General or country-level UN staff within the context of peace negotiations or UN mediation; the secondment of DDR specialists or hiring of private DDR consultants (sometimes funded by interested Member States) to assist during the peace process and provide strategic and policy advice to the UN and relevant national parties at country level for planning purposes; the assignment of a UN country team to carry out exploratory DDR assessments and surveys as early as possible. These surveys and assessments include: conflict assess- ment; combatant needs assessments; the identification of reintegration opportunities; and labour and goods markets assessments; assessing the in-country DDR planning and delivery capacity to support any DDR programme that might be set up (both UN and national institutional capacities); contacting key donors and other international stakeholders on DDR issues with the aim of defining priorities and methods for information sharing and collaboration; the early identification of potential key DDR personnel for the integrated DDR unit.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "969d4619-6b53-4b4b-a01e-9ae3a918f6fe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 7, + "Paragraph": "Phase II: Initial technical assessment and concept of operations Once the UN Security Council has requested the UN Secretary-General to present options for possible further UN involvement in supporting peacekeeping and peace-building in a particular country, planning enters a second stage, focusing on an initial technical assess- ment of the UN role and the preparation of a concept of operations for submission to the Security Council. In most cases, this process will be initiated through a multidimensional technical assess- ment mission fielded by the Secretary-General to develop the UN strategy in a conflict area. In this context, DDR is only one of several components such as political affairs, elections, public information, humanitarian assistance, military, security, civilian police, human rights, rule of law, gender equality, child protection, food security, HIV/AIDS and other health matters, cross-border issues, reconstruction, governance, finance and logistic support. These multidisciplinary technical assessment missions shall integrate inputs from all relevant UN entities (in particular the UN country team), resulting in a joint UN concept of operations. Initial assessments by country-level agencies, together with pre-existing efforts or initiatives, should be used to provide information on which to base the technical assessment for DDR, which itself should be closely linked with other inter-agency processes established to assess immediate post-conflict needs. A well-prepared and well-conducted technical assessment should focus on: the conditions and requirements for DDR; its relation to a peace agreement; an assessment of national capacities; the identification of options for UN support, including strategic objectives and the UN\u2019s operational role; the role of DDR within the broader UN peace-building and mission strategy; the role of UN support in relation to that of other national and international stakeholders. This initial technical assessment should be used as a basis for a more in-depth assessment 3.20\trequired for programme design (also see IDDRS 3.20 on DDR Programme Design). The results of this assessment should provide inputs to the Secretary-General\u2019s report and any Security Council resolutions and mission mandates that follow (see Annex B for a reference guide on conducting a DDR assessment mission).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b65820b7-bb22-4686-ae89-c31c29c2e238", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 8, + "Paragraph": "Report of the Secretary-General to the Security Council The key output of the planning process at this stage should be a recommendation as to whether DDR is the appropriate response for the conflict at hand and whether the UN is well suited to provide support for the DDR programme in the country concerned. This is contained in a report by the Secretary-General to the Security Council, which includes the findings of the technical assessment mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "cab2998d-c3fd-45ad-8dee-663e50c313d5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 8, + "Paragraph": "Mission mandate on DDR The report of the Secretary-General to the Security Council sometimes contains proposals for the mandate for peace operation. The following points should be considered when pro- viding inputs to the DDR mandate: It shall be consistent with the UN approach to DDR; While it is important to stress the national aspect of the DDR programme, it is also necessary to recognize the immediate need to provide capacity-building support to increase or bring about national ownership, and to recognize the political difficulties that may complicate national ownership in a transitional situation. Time-lines for planning and implementation should be realistic. The Security Council, when it establishes a multidimensional UN mission, may assign DDR responsibilities to the UN. This mandate can be either to directly support the national DDR authorities or to implement aspects of the DDR programme, especially when national capacities are lim- ited. What is important to note is that the nature of a DDR mandate, if one is given, may differ from the recommended concept of operations, for political and other reasons.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6c472990-b426-4b1f-9665-b52b43cf2975", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "Phase III: Development of a strategic and policy framework (strategic planning) The inclusion of DDR as a component of the overall UN integrated mission and peace- building support strategy will require the development of initial strategic objectives for the DDR programme to guide further planning and programme development. DDR practi- tioners shall be required to identify four key elements to create this framework: the overall strategic objectives of UN engagement in DDR in relation to national pri- orities (see Annex C for an example of how DDR aims may be developed); the key DDR tasks of the UN (see Annex C for related DDR tasks that originate from the strategic objectives); an initial organizational and institutional framework (see IDDRS 3.42 on Personnel and Staffing for the establishment of the integrated DDR unit and IDDRS 3.30 on National Institutions for DDR); the identification of other national and international stakeholders on DDR and the areas of engagement of each. The policy and strategy framework for UN support for DDR should ideally be developed after the establishment of the mission, and at the same time as its actual deployment. Several key issues should be kept in mind in developing such a framework: To ensure that this framework adequately reflects country realities and needs with respect to DDR, its development should be a joint effort of mission planners (whether Headquarters- or country-based), DDR staff already deployed and the UN country team; Development of the framework should also involve consultations with relevant national counterparts, to ensure that UN engagement is consistent with national planning and frameworks; The framework should be harmonized \u2014 and integrated \u2014 with other UN and national planning frameworks, notably Department of Peacekeeping Operations (DPKO) results- based budgeting frameworks, UN work plans and transitional appeals, and post-conflict needs assessment processes.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "28730bc1-1d37-4d67-939a-1431674f6387", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 9, + "Paragraph": "Phase IV: Development of a programme and operational framework After establishing a strategic objectives and policy framework for UN support for DDR, the UN should start developing a detailed programmatic and operational framework. Refer to IDDRS 3.20 on DDR Programme Design for the programme design process and tools to assist in the development of a DDR operational plan. The objective of developing a DDR programme and implementation plan is to provide further details on the activities and operational requirements necessary to achieve DDR goals and the strategy identified in the initial planning for DDR. In the context of integrated 3.42 3.30 3.20 DDR approaches, DDR programmes also provide a common framework for the implemen- tation and management of joint activities among actors in the UN system. In general, the programme design cycle should consist of three main phases: Detailed field assessments: A detailed field assessment builds on the initial technical assess- ment described earlier, and is intended to provide a basis for developing the full DDR programme, as well as the implementation and operational plan. The main issues that should be dealt with in a detailed assessment include: the political, social and economic context and background of the armed conflict; the causes, dynamics and consequences of the armed conflict; the identification of participants, potential partners and others involved; the distribution, availability and proliferation of weapons (primarily small arms and light weapons); the institutional capacities of national stakeholders in areas related to DDR; a survey of socio-economic conditions and the capacity of local communities to absorb ex-combatants and their dependants; preconditions and other factors influencing prospects for DDR; baseline data and performance indicators for programme design, implementation, monitoring and evaluation; Detailed programme development and costing of requirements: A DDR \u2018programme\u2019 is a framework that provides an agreed-upon blueprint (i.e., detailed plan) for how DDR will be put into operation in a given context. It also provides the basis for developing operational or implementation plans that provide time-bound information on how individual DDR tasks and activities will be carried out and who will be responsible for doing this. Designing a comprehensive DDR programme is a time- and labour-intensive process that usually takes place after a peacekeeping mission has been authorized and deployment in the field has started. In most cases, the design of a comprehensive UN programme on DDR should be integrated with the design of the national DDR programme and architecture, and linked to the design of programmes in other related sectors as part of the overall transition and recovery plan; Development of an implementation plan: Once a programme has been developed, planning instruments should be developed that will aid practitioners (UN, non-UN and national government) to implement the activities and strategies that have been planned. Depen- ding on the scale and scope of a DDR programme, an implementation or operations plan usually consists of four main elements: implementation methods; time-frame; a detailed work plan; and management arrangements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05794a37-ee6f-442f-8905-3a660ef20573", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 10, + "Paragraph": "5.5. Phase V: Continuation and transition planning A DDR strategy and plan should remain flexible so as to be able to deal with changing circumstances and demands at the country level, and should possess a capacity to adapt in order to deal with shortcomings and new opportunities. Continuation planning involves a process of periodic reviews, monitoring and real-time evaluations to measure perform- ance and impact during implementation of the DDR programme, as well as revisions to programmatic and operational plans to make adjustments to the actual implementation process. A DDR programme does not end with the exit of the peacekeeping mission. While security may be restored, the broader task of linking the DDR programme to overall development, i.e., the sustainable reintegration of ex-com- batants and long-term stability, remains. It is therefore essential that the departure of the peacekeeping mission is planned with the UN country team as early as possible to ensure that capacities are sufficiently built up in the country team for it to assume the full financial, logistic and human resources responsibilities for the continuation of the longer-term aspects of the DDR programme. A second essential requirement is the build- ing of national capacities to assume full responsibility for the DDR programme, which should begin from the start of the DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9ad1237c-ed54-4ed8-bd0f-a234f54b8098", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 11, + "Paragraph": "Institutional requirements and methods for planning The objective of an integrated UN approach to DDR in the context of peace operations is to combine the different experiences, competencies and resources of UN funds, programmes, departments and agencies within a common approach and framework for planning and developing DDR programming, and to ensure a consistent and decentralized approach to implementation. Achieving the above objective requires sound mission planning involving all relevant UN agencies, departments, funds and programmes at both the Headquarters and field levels. The planning of integrated DDR programmes should be coordinated closely with the broader integrated mission planning and design process, and, ideally, should start before the mandate for the mission is adopted. Within this framework, the following Headquarters- and country-level institutional requirements are needed to ensure an overall integrated approach to developing, implemen- ting and evaluating DDR programming in the country in which is has been implemented.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9bfc4cde-007c-4931-910b-0c1a8b5207f0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 11, + "Paragraph": "Planning structures: Headquarters The establishment of an interdepartmental mission task force (IMTF) provides a framework within which various UN entities should contribute to the coordination and planning of peace operations, and ensures that institutional and field-level capacities and resources work closely and effectively together to achieve the objectives of a particular mission. An IMTF subgroup on DDR should be established within this framework to ensure an integrated approach to pre-deployment planning at the Headquarters level (i.e., before a field presence has been established). The key planning functions to be covered by the IMTF DDR subgroup should include the design and planning of integrated staffing struc- tures (as far as possible); agreement on common lines of authority for DDR planning, operations and implementation; institutional division of responsibilities; integrated task management organization; the drawing up of an overall budget; and the inclusion of best practices learned from earlier missions. In the pre-deployment phase, the IMTF subgroups should also act as the institutional focal points and links between Headquarters and field operations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "23421522-0312-407e-8daa-d49ebb202219", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 12, + "Paragraph": "UN country team DDR task force To ensure effective and sustainable involvement of the UN country team in integrated DDR programming, a UN country team DDR task force (headed by the DSRSG) and technical working group should be established to manage and supervise the integrated approach, including providing the resources and staff that have been agreed upon, being involved in key strategic decisions, and ensuring adequate liaison with Headquarters-level bodies and processes. Individual members of the UN country team shall be responsible for ensuring that their respective agencies, funds or programmes fulfil the responsibilities and carry out the roles defined in the integrated DDR strategy.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "532ccacc-1ea5-4288-9d44-a4de689eee96", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 12, + "Paragraph": "Mission DDR steering group Given the involvement of the different components of the mission in DDR or DDR-related activities, a DDR steering group should also be established within the peacekeeping mission to ensure the exchange of information, joint planning and joint operations. The DSRSG should chair such a steering group. The steering group should include, at the very least, the DSRSG (political/rule of law), force commander, police commissioner, chief of civil affairs, chief of political affairs, chief of public information, chief of administration and chief of the DDR unit. Given the central role played by the UN country team and Resident Coordinator in coordinating UN activities in the field both before and after peace operations, as well as its continued role after peace operations have come to an end, the UN country team should retain strategic oversight of and responsibility, together with the mission, for putting the integrated DDR approach into operation at the field level.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c0cd44f5-a7d3-4d00-99b8-a2168405e32d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 12, + "Paragraph": "Integrated UN DDR unit An integrated DDR unit should be established within the peacekeeping mission in order to ensure that planning and implementation of the DDR strategy and programmes is com- prehensive and coordinated, and includes all the necessary elements, within the mission 3.42\tand among partners in the field (see Annex C and IDDRS 3.42 on Personnel and Staffing). Given the important differences among the administrative and financial procedures of different UN Agencies, Departments, Funds and Programmes, as well as their various implementation methods, it is not possible to achieve complete operational/administrative integration. Instead, the goal should be complete integration at the planning level and in the methods of the various entities involved in the mission to ensure efficient and timely coordination of operations within this framework. An integrated and centralized mechanism for reporting on DDR programme results should be established to compile, consolidate and distribute information and monitor results from the activities of all the UN entities involved.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b0217048-f46f-455f-90f4-4a8b1ab18697", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 12, + "Paragraph": "Integrated planning, programming and management To ensure an integrated approach to DDR programme development and management, all UN entities should participate in and contribute to the various processes involved, in parti- cular, conducting comprehensive technical assessments, the design of a programme strategy, the identification of key outputs and results and the development of integrated management arrangements. Participation in these processes is essential to the identification of how each UN entity can best contribute, according to its particular expertise, to both the integrated DDR strategy and the precise methods for ensuring the best possible coordination and a joint overall approach.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0f4cc4da-f2d9-4939-a912-6e666ccd060d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 13, + "Paragraph": "Joint operations and implementation A joint \u2014 as opposed to fully integrated \u2014 approach to DDR operations and implementa- tion should be adopted among all participating UN entities, involving close coordination using a common operational work plan. To maximize coordination, overall authority for coordination and supervision of implementation should be delegated to those UN staff integrated into the DDR programme management structure, while the programme should be implemented by the appropriate agency staff.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "26e52397-cc6a-42ec-8d44-79b02b78364b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": null, + "Paragraph": "Annex B: Guide to conducting a DDR technical assessment mission This annex provides a guide to the preparation and carrying out of a DDR assessment mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3857f99f-3ffd-41f2-940b-7ffb90567696", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 15, + "Paragraph": "Preparation In order to ensure that the maximum amount of information is gathered from meetings in the mission area, a great deal of preparatory work should be done before starting the assess- ment mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "13ed0a10-920b-4d2d-9a8b-ebd7920f9cc1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 15, + "Paragraph": "Background information This will include developing a good understanding of the following: the UN approach to DDR issues; an overview of the regional conflict map; neighbouring States\u2019 political, commercial and security interests, etc.; the country situation, including the number and availability of small arms and light weapons;1 existing work being performed by the UN country team and other partners, such as the World Bank and non-governmental organizations (NGOs); existing provisions for DDR within current security arrangements or peace agreements signed between parties to the conflict; the experience of previous DDR operations (if any) and the role of regional organiza- tions and interested Member States.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "07066581-b512-481c-ba2a-877dbdd241f6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 15, + "Paragraph": "Meetings Staff members on a DDR assessment visit should plan to meet with representatives from: the parties to the conflict at the political and military levels; members of the government; civil society (such as political parties, church groups, women\u2019s organizations, local NGOs, etc.); regional mediators or regional organizations, including monitoring bodies; interested Member States supporting the peace process; members of the UN country team and international organizations; major international NGOs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7f1c09cc-dd4a-41cf-9395-2c78587a95bd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 15, + "Paragraph": "Conduct of the DDR assessment mission The aim of the assessment mission is to develop an in-depth understanding of the key DDR-related areas, in order to ensure efficient, effective and timely planning and resource mobilization for the DDR programme. The DDR staff member(s) of a DDR assessment mission should develop a good understanding of the following areas: the legal framework for the DDR programme, i.e., the peace agreement; specifically designated groups that will participate in the DDR programme; the DDR planning and implementation context; international, regional and national implementing partners; methods for implementing the different phases of the DDR programme; a public information strategy for distributing information about the DDR programme; military/police- and security-related DDR tasks; administrative and logistic support requirements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "160b8dbb-6e2f-4188-8c4a-2ba42ee4f6e3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 16, + "Paragraph": "Legal framework In most post-conflict situations, a peace agreement provides the legal framework for the implementation of a DDR programme. Many of the terms and conditions of the DDR pro- gramme should be specified in the peace agreement: who is to be disarmed; by whom; the time schedule for disarmament; the nature of the programme (disengagement, cantonment, type of reintegration assistance); and institutional arrangements (national and international) to guide and implement the programme. The assessment mission should decide whether the agreed terms and conditions con- tained in the legal framework are sufficient or realistic enough to allow successful imple- mentation of the DDR programme. If an assessment mission is carried out before any legal framework has been established, efforts should be made to ensure that there is clarity and agreement on the key DDR issues. Much of the required information may not be contained within the peace agreement. Therefore, the joint assessment mission is an important tool to gather more information in order to structure a UN approach to support the mission DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a94df386-9a11-4114-b89f-109111619a1d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 16, + "Paragraph": "Assessing the planning and implementation context A key aspect of the assessment mission is to understand the opportunities and problems posed by the unique political/diplomatic, military and socio-economic context in the post- conflict society, and assess their implications for the planning and implementation of the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a0eeaf8a-2b3f-44a6-9bd2-d6168a2b627c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 16, + "Paragraph": "Political and diplomatic factors Political will A genuine commitment of the parties to the process is vital to the success of DDR. Commit- ment on the part of the former warring parties, as well as the government and the community at large, is essential to ensure that there is national ownership of the DDR programme. Often, the fact that parties have signed a peace agreement indicating their willingness to be dis- armed may not always represent actual intent (at all levels of the armed forces and groups) to do so. A thorough understanding of the (potentially different) levels of commitment to the DDR process will be important in determining the methods by which the international community may apply pressure or offer incentives to encourage cooperation. Different incentive (and disincentive) structures are required for senior-, middle- and lower-level members of an armed force or group. It is also important that political and military com- manders (senior- and middle-level) have sufficient command and control over their rank and file to ensure compliance with DDR provisions agreed to and included in the peace agreement.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7a20b315-3ece-412c-837b-ddee84cb2dd7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Inclusive national framework An inclusive national framework to provide the political and policy guidance for the national DDR programme is central to two guiding principles of a successful programme: national ownership and inclusiveness. Past DDR programmes have been less successful when carried out entirely by the regional or international actors without the same level of local involve- ment to move the process forward. However, even when there is national involvement in the DDR programme, it is important to ensure that the framework for DDR brings together a broad spectrum of society to include the former warring parties, government, civil society (including children\u2019s and women\u2019s advocacy groups) and the private sector, as well as regional and international guarantors of the peace process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae9a90c7-abc3-49c0-aaf4-e39fc037c8a9", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Transition problems and mediation mechanisms Post-conflict political transition processes generally experience many difficulties. Problems in any one area of the transition process can have serious implications on the DDR programme.2 A good understanding of these links and potential problems should allow planners to take the required preventive action to keep the DDR process on track, as well as provide a realistic assessment of the future progress of the DDR programme. This assessment may mean that the start of any DDR activities may have to be delayed until issues that may prevent the full commitment of all the parties involved in the DDR programme have been sorted out. For this reason, mechanisms must be established in the peace agreement to mediate the inevitable differences that will arise among the parties, in order to prevent them from under- mining or holding up the planning and implementation of the DDR programme.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "30ab58ed-da86-470f-8df5-396e6ca1cb9c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Third-party support Third-party political, diplomatic and financial support is often one such mediation mechanism that can reduce some of the tensions of post-conflict political transitions. Third-party actors, either influential Member States, or regional or international organizations can also focus their attention on the broader aspects of the DDR programme, such as the regional dimen- sion of the conflict, cross-border trafficking of small arms, foreign combatants and displaced civilians, as well as questions of arms embargoes and moratoriums on the transfer of arms, or other sanctions.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "acfabaed-cb3b-4ed9-8207-f75bdb824a1c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Security factors The security situation A good understanding of the overall security situation in the country where DDR will take place is essential. Conditions and commitment often vary greatly between the capital and the regions, as well as among regions. This will influence the approach to DDR. The exist- ing security situation is one indicator of how soon and where DDR can start, and should be assessed for all stages of the DDR programme. A situation where combatants can be disarmed and demobilized, but their safety when they return to their areas of reintegration cannot be guaranteed will also be problematic.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7efbd9aa-6ede-4232-b610-8340c7ed318e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 17, + "Paragraph": "Security and enforcement capacity for DDR The capacity of local authorities to provide security for commanders and disarmed com- batants to carry out voluntary or coercive disarmament must be carefully assessed. A lack of national capacity in these two areas will seriously affect the resources needed by the peacekeeping force. UN military, civilian police and support capacities may be required to perform this function in the early phase of the peacekeeping mission, while simultaneously developing national capacities to eventually take over from the peacekeeping mission. If this security function is provided by a non-UN multinational force (e.g., an African Union or NATO force), the structure and processes for joint planning and operations must be assessed to ensure that such a force and the peacekeeping mission cooperate and coordinate effec- tively to implement (or support the implementation of) a coherent DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "04e0a3c2-0f94-4ef1-85a1-086bf2bc7177", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "Building confidence Ceasefires, disengagement and voluntary disarmament of forces are important confidence- building measures, which, when carried out by the parties, can have a positive effect on the DDR and wider recovery programme. The international community should, wherever possible, support these initiatives. Also, mechanisms should be put in place to investigate violations of ceasefires, etc., in a transparent manner.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ca29643-85c2-44ef-bb9d-d55e814b946e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "Socio-economic factors Overall socio-economic conditions The post-conflict socio-economic condition of the country is a major factor in determining the kind of DDR programme that should be implemented. The level of unemployment, the state of the (formal and informal) economy and the agricultural sector (i.e., access to land, rights and the ability of the country to feed itself), the condition of the country\u2019s infra- structure, and the capacity of state institutions to deliver basic services, combined with the length of the conflict, are all factors that should be taken into account when considering the specifics of any demobilization (length and types of programme) and socio-economic (reconciliation, justice issues and types of economic assistance) reintegration programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1ab71d6b-7f21-4f0b-b62b-472a3f771c75", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "Local participation The role of the receiving communities is central to the successful reintegration of ex-com- batants. Therefore, close consultation must take place with all levels of the local community about the possible implications of the DDR programme for these communities, and the type of support (economic, reconciliation, etc.) required to reintegrate ex-combatants. This issue of returning ex-combatants to the communities must be assessed together with the overall impact of all the groups of people who will return, including internally displaced persons and refugees.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "083b66c0-a8d8-45cd-a2a4-6786f7789258", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "A development approach DDR programmes can succeed only if there is a strong link with a national recovery pro- gramme, which provides not only for political and economic development, but also for a restructuring and reform of the State\u2019s security sector and the fostering of national reconcili- ation. An assessment should ascertain if these factors are being considered and who will be supporting this aspect of post-conflict peace-building.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "58b537b3-dbfc-4481-82b1-dfb7a217bb53", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 18, + "Paragraph": "Weapons control framework The weapons control framework is another key element that affects a DDR programme. Constitutional and legislative guarantees for weapons ownership, the import/export of small arms, and the regulation of the national gun industry and private security firms must be considered in terms of how they support or limit the effective implementation of a DDR programme. Equally important are the national administrative infrastructure and enforcement capacity to implement the weapons control framework.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "d61d64ba-3b0a-4f96-9c23-784c1e448067", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 19, + "Paragraph": "Arms embargoes The assessment mission should examine the illicit supply of small arms and light weapons coming into the post-conflict zone. This is often caused by porous borders and weak border- policing capacities. Arms embargoes should be considered as one tool available to deal with illicit trafficking of small arms and light weapons, thus supporting both DDR and the wider national recovery programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9b93da07-a43d-46ee-ad6b-f98daba1d597", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 19, + "Paragraph": "Defining specific groups for DDR The character, size, composition and location of the groups specifically identified for DDR are among the required details that are often not included the legal framework, but which are essential to the development and implementation of a DDR programme. In consultation with the parties and other implementing partners on the ground, the assessment mission should develop a detailed picture of: WHO will be disarmed, demobilized and reintegrated; WHAT weapons are to be collected, destroyed and disposed of; WHERE in the country the identified groups are situated, and where those being dis- armed and demobilized will be resettled or repatriated to; WHEN DDR will (or can) take place, and in what sequence for which identified groups, including the priority of action for the different identified groups. It is often difficult to get this information from the former warring parties. Therefore, the UN should find other, independent sources, such as Member States or local or regional agencies, in order to acquire information. Community-based organizations are a particularly useful source of information on armed groups. Potential targets for disarmament include government armed forces, opposition armed groups, civil defence forces, irregular armed groups and armed individuals. These generally include: male and female combatants, and those associated with the fighting groups, such as those performing support roles (voluntarily or because they have been forced to) or who have been abducted; child (boys and girls) soldiers, and those associated with the armed forces and groups; foreign combatants; dependants of combatants. The end product of this part of the assessment of the armed forces and groups should be a detailed listing of the key features of the armed forces/groups.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1af08ba0-0f7a-4d0a-84d0-147f7387bebe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 19, + "Paragraph": "DRR planning and implementation partners The assessment mission should document the relative capacities of the various potential DDR partners (UN family; other international, regional and national actors) in the mission area that can play a role in implementing (or supporting the implementation of) the DDR programme.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7419df1b-2847-469d-b548-2b960627b67e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 19, + "Paragraph": "UN funds, agencies and programmes UN agencies can perform certain functions needed for DDR. The resources available to the UN agencies in the country in question should be assessed and reflected in discussions at Headquarters level amongst the agencies concerned. The United Nations Development Programme may already be running a DDR programme in the mission area. This, along with support from other members of the DDR inter-agency forum, will provide the basis for the integrated DDR unit and the expansion of the DDR operation into the peacekeeping mission, if required.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9c330de0-8964-439a-a0ce-d1cd5e3d084d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "International and regional organizations Other international organizations, such as the World Bank, and other regional actors may be involved in DDR before the arrival of the peacekeeping mission. Their role should also be taken into account in the overall planning and implementation of the DDR programme.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4f54fbb0-d090-4cd9-ae63-7fbd504e2d39", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "Non-governmental organizations NGOs are usually the major implementing partners of specific DDR activities as part of the overall programme. The various NGOs contain a wide range of expertise, from child protection and gender issues to small arms, they tend to have a more intimate awareness of local culture and are an integral partner in a DDR programme of a peacekeeping mission. The assessment mission should identify the major NGOs that can work with the UN and the government, and should involve them in the planning process at the earliest opportunity.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f061bb0b-e525-4382-bf75-7b5c39cc3c05", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "Support requirements Following a review of the extent and nature of the problem and an assessment of the relative capacities of other partners, the assessment mission should determine the DDR support (finance, staffing and logistics) requirements, both in the pre-mandate and establishment phases of the peacekeeping mission.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "388a722b-7646-4bdb-8338-232a89bc5c98", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "Finance The amount of money required for the overall DDR programme should be estimated, includ- ing what portions are required from the assessed budget and what is to come from voluntary contributions. In the pre-mandate period, the potential of quick-impact projects that can be used to stabilize ex-combatant groups or communities before the formal start of the 3.41\tDDR should be examined. Finance and budgeting processes are detailed in IDDRS 3.41 on Finance and Budgeting.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1780a52d-5e80-4080-96fd-cab998996f85", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "Staffing The civilian staff, civilian police and military staff requirements for the planning and imple- mentation of the DDR programme should be estimated, and a deployment sequence for these staff should be drawn up. The integrated DDR unit should contain personnel represent- ing mission components directly related to DDR operations: military; police; logistic support; public information; etc. (integrated DDR personnel and staffing matters are discussed in 3.42\tIDDRS 3.42 on Personnel and Staffing). The material requirements for DDR should also be estimated, in particular weapons storage facilities, destruction machines and disposal equipment, as well as requirements for the demobilization phase of the operation, including transportation (air and land). Mission 3.40\tand programme support logistics matters are discussed in IDDRS 3.40 on Mission and Pro- gramme Support for DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1dee4810-00b3-498f-8a91-5c32425fcf75", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 20, + "Paragraph": "The structure and content of the joint assessment report The assessment mission report should be submitted in the following format (Section II on the approach of the UN forms the input into the Secretary-General\u2019s report to the Security Council): Preface Maps Introduction Background Summary of the report Section I: Situation Armed forces and groups Political context Socio-economic context Security context Legal context Lessons learned from previous DDR operations in the region, the country and else- where (as relevant) Implications and scenarios for DDR programme Key guiding principles for DDR operations Existing DDR programme in country Section II: The UN approach DDR strategy and priorities Support for national processes and institutions Approach to disarmament Approach to demobilization Approach to socio-economic reintegration Approach to children, women and disabled people in the DDR programme Approach to public information Approach to weapons control regimes (internal and external) Approach to funding of the DDR programme Role of the international community Section III: Support requirements Budget Staffing Logistics Suggested annexes Relevant Security Council resolution authorizing the assessment mission Terms of reference of the multidisciplinary assessment mission List of meetings conducted Summary of armed forces and groups Additional information on weapons flows in the region Information on existing disarmament and reintegration activities Lessons learned and evaluations of past disarmament and demobilization pro- grammes Proposed budget, staffing structure and logistic requirements", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f8d2871b-fc0a-4dfd-8669-74e406461fdc", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 22, + "Paragraph": "An example of DDR strategic objectives The UN DDR strategic framework consists of three interrelated strategic policy objectives, and supports the overall UN aim of a stable and peaceful country x, and the accompanying DDR tasks.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "facad709-299d-49b9-a08a-a8bfc288d67d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 22, + "Paragraph": "Key tasks The UN should assist in achieving this aim by providing technical support to the parties at the peace talks to support the development of: Clear and sound DDR approaches for the different identified groups, with a focus on social and economic reintegration; An equal emphasis on vulnerable identified groups (children, women and disabled people) in or associated with the armed forces and groups; A detailed description of the disposition and deployment of armed forces and groups (local and foreign) to be included in the DDR programme; A realistic time-line for the commencement and duration of the DDR programme; Unified national political, policy and operational mechanisms to support the implemen- tation of the DDR programme; A clear division of labour among parties (government and party x) and other imple- menting partners (DPKO [civilian, military]; UN agencies, funds and programmes; international financial organizations [World Bank]; and local and international NGOs).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a4cc850b-f4e9-45aa-b4d8-54fe5cfff151", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 22, + "Paragraph": "Key tasks The UN should assist in achieving this aim by providing planning capacities and physical resources to: Establish all-inclusive joint planning mechanisms; Develop a time-phased concept of the DDR operations; Establish division of labour for key DDR tasks; Estimate the broad resource requirements; Start securing voluntary contributions; Start the procurement of DDR items with long lead times; Start the phased recruitment of personnel required from DPKO and other UN agencies; Raise a military component from the armed forces of Member States for DDR activities; Establish an effective public information campaign; Establish programmatic links between the DDR operation and other areas of the mission\u2019s work: security sector reform; recovery and reconstruction; etc.; Support the implementation of the established DDR strategy/plan.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3ff4d15b-172e-4f2e-8319-04b96aac6ba7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 23, + "Paragraph": "DDR strategic objective #3 A national weapons management programme and a regional strategy to stop the flow of small arms and light weapons into country x.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c23cf74c-8e46-40e3-9844-410d3eecee69", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures", + "PageNum": 22, + "Paragraph": "Key tasks To ensure a comprehensive approach to disarmament, the UN should also focus on the supply side of the weapons issue. In this regard, the UN can provide technical, political (good offices) and diplomatic support to: assist the parties to establish and implement necessary weapons management legislation; support country x\u2019s capacity to implement the UN Programme of Action to Prevent, Com bat and Eradicate the Illicit Trade in Small Arms and Light Weapons in All Its Aspects in 2001 (A/Conf.192/15); support regional initiatives to control the flow of illicit small arms and light weapons in the region.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "81b55a49-fa8f-40a2-9739-78bc7049f691", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": null, + "Paragraph": "Summary Each programme design cycle, including the disarmament, demobilization and reintegration (DDR) programme design cycle, has three stages: (1) detailed field assessments; (2) detailed programme development and costing of requirements; and (3) development of an implemen tation plan. Throughout the programme design cycle, it is of the utmost importance to use a flexible approach. While experiencing each stage of the cycle and moving from one stage to the other, it is important to ensure coordination among all the participants and stakeholders involved, especially national stakeholders. A framework that would probably work for integrated DDR programme design is the postconflict needs assessment (PCNA), which ensures consistency between United Nations (UN) and national objectives, while consider ing differing approaches to DDR. Before the detailed programme design cycle can even begin, a comprehensive field needs assessment should be carried out, focusing on areas such as the country\u2019s social, economic and political context; possible participants, beneficiaries and partners in the DDR programme; the operational environment; and key priority objectives. This assessment helps to establish important aspects such as positive or negative factors that can affect the outcome of the DDR programme, baseline factors for programme design and identification of institutional capacities for carrying out DDR. During the second stage of the cycle, key considerations include identifying DDR participants and beneficiaries, as well as performance indicators, such as reintegration oppor tunities, the security situation, size and organization of the armed forces and groups, socioeconomic baselines, the availability and distribution of weapons, etc. Also, methodolo gies for data collection together with analysis of assessment results (quantitative, qualitative, mass surveys, etc.) need to be decided. When developing DDR programme documents, the central content should be informed by strategic objectives and outcomes, key principles of intervention, preconditions and, most importantly, a strategic vision and approach. For example, in determining an overall strategic approach to DDR, the following questions should be asked: (1) How will multiple components of DDR programme design reflect the realities and needs of the situation? (2) How will eligibility criteria for entry in the DDR programme be determined? (3) How will DDR activities be organized into phases and in what order will they take place within the recom mended programme timeframe? (4) Which key issues are vital to the implementation of the programme? Defining the overall approach to DDR defines how the DDR programme will, ultimately, be put into operation. When developing the results and budgeting framework, an important consideration should be ensuring that the programme that is designed complies with the peacekeeping resultsbased budgeting framework, and establishing a sequence of stages for the implemen tation of the programme. The final stage of the DDR programme design cycle should include developing planning instruments to aid practitioners (UN, nonUN and government) to implement the activities and strategies that have been planned. When formulating the sequence of stages for the implementation of the programme, particular attention should be paid to coordinated management arrangements, a detailed work plan, timing and methods of implementation. 3.10 1.20", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f69d2471-1d8a-4516-a316-12f7db02a32c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides guidance on how to develop a DDR programme. It is therefore the fourth stage of the overall DDR planning cycle, following the assessment of DDR require ments (which forms the basis for the DDR mandate) and the development of a strategic and policy framework for UN support to DDR (which covers key objectives, activities, basic insti tutional/operational requirements, and links with the joint assessment mission (JAM) and other processes; also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). This module does not deal with the actual content of DDR processes (which is covered in IDDRS Levels 4 and 5), but rather describes the methods, procedures and steps neces sary for the development of a programme strategy, results framework and operational plan. Assessments are essential to the success or failure of a programme, and not a mere formality.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "25c3e922-9445-4e91-b20a-fbb553f723df", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of inte grated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f75c646c-4c6f-42f0-a5f4-d21f07c6fa4f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 4, + "Paragraph": "Introduction In the past, the quality, consistency and effectiveness of UN support for DDR has sufferred as a result of a number of problems, including a narrowly defined \u2018operational/logistic\u2019 approach, inadequate attention to the national and local context, and poor coordination between UN actors and other partners in the delivery of DDR support services. The IDDRS are intended to solve most of these problems. The application of an inte grated approach to DDR should go beyond integrated or joint planning and organizational arrangements, and should be supported by an integrated programme and implementation framework for DDR. In order to do this, the inputs of various agencies need to be defined, organized and placed in sequence within a framework of objectives, results and outputs that together establish how the UN will support each DDR process. The need for an allinclusive pro gramme and implementation framework is emphasized by the lengthy timeframe of DDR (which in some cases can go beyond the lifespan of a UN peacekeeping mission, necessitating close cooperation with the UN country team), the multisectoral nature of interventions, the range of subprocesses and stakeholders, and the need to ensure close coordination with national and other DDRrelated efforts.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fda2dcaf-fd70-49c5-b291-afcf5d11291a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 5, + "Paragraph": "The programme design cycle DDR programme and implementation plans are developed so as to provide further details on the activities and operational requirements necessary to achieve DDR goals and carry out the strategy identified in the initial planning of DDR. In the context of integrated DDR approaches, DDR programmes also provide a common framework for the implementation and management of joint activities among actors in the UN system. In general, the programme design cycle consists of three main stages: I: Conducting a detailed field assessment; II: Preparing the programme document and budget; III: Developing an implementation plan. Given that the support provided by the UN for DDR forms one part of a larger multi stakeholder process, the development of a UN programme and implementation framework should be carried out with national and other counterparts, and, as far as possible, should be combined with the development of a national DDR programme. There are several frameworks that can be used to coordinate programme develop ment efforts. One of the most appropriate frameworks is the postconflict needs assess ment (PCNA) process, which attempts to define the overall objectives, strategies and activi ties for a number of different interventions in different sectors, including DDR. The PCNA represents an important mechanism to ensure consistency between UN and national objec tives and approaches to DDR, and defines the specific role and contributions of the UN, which can then be fed into the programme development process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce01a823-a218-45f2-9b60-3c483fda7742", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 4, + "Paragraph": "Objectives A detailed field assessment builds on assessments and planning for DDR that have been carried out in the preplanning and technical assessment stages of the planning process (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). Contributing to the design of the DDR programme, the detailed field assessment: deepens understanding of key DDR issues and the broader operating environment; verifies information gathered during the technical assessment mission; verifies the assumptions on which planning will be based, and defines the overall approach of DDR; identifies key priority objectives, issues of concern, and target and performance indicators; 3.10 identifies operational DDR options and interventions that are precisely targeted, realistic and sustainable.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a67b73d0-9de5-4151-845f-66195ed2915d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 6, + "Paragraph": "Planning for an assessment The following should be considered when planning a detailed field assessment for DDR: Scope: From the start of DDR, practitioners should determine the geographical area that will be covered by the programme, how long the programme will last, and the level of detail and accuracy needed for its smooth running and financing. The scope and depth of this detailed field assessment will depend on the amount of information gathered in previous assessments, such as the technical assessment mission. The current political and military situation in the country concerned and the amount of access possible to areas where combatants are located should also be carefully considered; Thematic areas of focus: The detailed field assessment should deepen understanding, analysis and assessments conducted in the premission period. It therefore builds on information gathered on the following thematic areas: political, social and economic context and background; causes, dynamics and consequences of the armed conflict; identification of specific groups, potential partners and others involved in the discussion process; distribution, availability and proliferation of weapons (primarily small arms and light weapons); institutional capacities of national stakeholders in areas related to DDR; survey of socioeconomic conditions and local capacities to absorb excombatants and their dependants; preconditions and other factors that will influence DDR; baseline data and performance indicators for programme design, implementation, monitoring and evaluation. 3.10\t(Also see Annex B of IDDRS 3.10 on Integrated DDR Planning: Processes and Structures.); Expertise: The next step is to identify the DDR expertise required. Assessment teams should be composed of specialists in all aspects of DDR (see IDDRS Level 5 for more information on the different needs that have to be met during a DDR mission). To ensure coherence with the political process and overall objectives of the peacekeeping mandate, the assessment should be led by a member of the UN DDR unit; Local participation: Where the political situation allows, national and local participation in the assessment should be emphasized to ensure that local analyses of the situation, the needs and appropriate solutions are reflected and included in the DDR pro gramme. There is a need, however, to be aware of local bias, especially in the tense immediate postconflict environment; Building confidence and managing expectations: Where possible, detailed field assessments should be linked with preparatory assistance projects and initiatives (e.g., community development programmes and quickimpact projects) to build confidence in and support for the DDR programme. Care must be taken, however, not to raise unrealistic expec tations of the DDR programme; Design of the field assessment: Before starting the assessment, DDR practitioners should: identify the research objectives and indicators (what are we assessing?); identify the sources and methods for data collection (where are we going to obtain our information?); develop appropriate analytical tools and techniques (how are we going to make sense of our data?); develop a method for interpreting the findings in a practical way (how are we going to apply the results?); Being flexible: Thinking about and answering these questions are essential to developing a welldesigned approach and work plan that allows for a systematic and wellstructured data collection process. Naturally, the approach will change once data collection begins in the field, but this should not in any way reduce its importance as an initial guiding blueprint.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "aba76d59-7102-455a-af1f-066f4a2053a7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 7, + "Paragraph": "Implementing the assessment In order to provide structured and precise data (both qualitative and quantitative) for the development of a DDR programme strategy and the accompanying implementation plan, the assessment should collect data on the basis of clear research objectives and indicators. Assessment objectives and indicators can be divided into two main categories: an assessment of the operational environment for DDR (see Annex B for a complete framework for the analysis of a DDR operating environment); an assessment of those expected to participate in the DDR programme and of perform ance indicators (see Annex C for a complete framework for the analysis of DDR parti cipants and beneficiaries, and performance indicators).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "069c1643-5771-4135-8c98-a596985a1f18", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 7, + "Paragraph": "Framework for an assessment An assessment of the DDR operating environment, potential participants, and programme and performance indicators should include the following: assessment objectives; indicators; methodology; risks and assumptions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "44bda6ec-ec27-4a08-a038-a8cc0b4ca78b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 7, + "Paragraph": "Assessing the operational environment for DDR: Assessment objectives The following should be taken into account when analysing the operational environment in which DDR will take place: Identify factors that can positively or negatively affect the outcome of DDR: A number of legal, political, socioeconomic, security, regional and international factors can influence the prospects, effectiveness and sustainability of a DDR programme. Using relevant indicators, these factors need to be identified and mapped in order to clearly define the policy and operational environment, identify key preconditions and foundations, and enable effective threat analysis and the development of strategies to reduce risk; Map baseline indicators to prepare appropriate benchmarks for DDR programme design: DDR programmes have two general aims: to decrease the overall incidence of (or potential for) armed violence; and to improve the socioeconomic conditions and productivity in host communities. Defining baseline indicators in both these areas (including, for example, the incidence and type of violence and demographic community profiles) can allow the development of appropriate programme strategies and serve as programme design benchmarks; Assess institutional capacities to undertake DDR: The extent of UN support to a DDR pro gramme will depend on the level of national institutional and other capacities within the government, civil society and communities. Assessing existing capacity in the areas of disarmament/weapons control, demobilization, reintegration and the ability of communities to absorb excombatants and their dependants therefore provides key indicators for establishing the extent and scope of UN support for DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b28f77c2-c637-467b-b1de-6107706168d2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": null, + "Paragraph": "Identifying DDR participants and beneficiaries, and performance indicators: Assessment objectives To establish the appropriate performance indicators when analysing the potential partici pants in the DDR programme, five factors should be considered: The size, organization and deployment of participants: The size and nature of the DDR programme will depend, to a large extent, on the number, organization and profile of eligible combatants. Collecting data on both command and control, and combatant profiles (military, socioeconomic, demographic, location, sex, age, health, and numbers of noncombatant associates and dependants) provides DDR programme designers with a way to accurately assess overall group size, identify client groups, and design the DDR approach according to the specific organization and profile of the armed forces and groups; The availability and distribution of weapons: The extent to which a DDR programme is able to effectively reduce the availability of weapons in a postconflict context is determined to some degree by the accuracy of disarmament/weapons collection targets. In order to set these, it is necessary to estimate the total number of weapons available, as well as their distribution. This information can allow the identification and prioritization of programme participants, help refine incentive schemes to increase the numbers of weapons collected, and be used as a baseline to assess the overall effectiveness of the weapons reduction component of DDR; The reintegration opportunities for the primary participant group: The sustainable socio economic reintegration of excombatants, women and children associated with armed forces and groups, and dependants, requires the development of economically viable reintegration options and strategies. The development of reintegration schemes should be based on a thorough understanding of conditions in areas of return/resettlement (including local markets for goods and services, infrastructure and economic needs), as well as an assessment of viable reintegration options; The socio-economic baseline in the country under reconstruction: DDR programmes should contribute to improving the economic conditions in host communities through increased security, and through programmes that boost employment and economic productivity. Measuring key development indicators before and after DDR programme implemen tation will help to assess the effectiveness of DDR in meeting these goals; The security situation: Obtaining data on levels of armed violence, impacts on security (direct/indirect), levels and types of victimization, and local perceptions of security helps to establish a baseline against which to measure changes in the security situation and the contribution of DDR to an overall increase in security.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "3c32dd72-b35e-447d-a233-d4718712e88b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 10, + "Paragraph": "Methodologies for data collection Once the outlines for the assessment have been developed, the next stage should be to decide on the best methods to collect data, some of which are: direct observation; key informant interviews and focus groups; mass surveys; participatory assessments; market research; institutional capacity research; sampling. The best approach is to be flexible and \u2018mix and match\u2019 methodologies. Data should be collected from as broad a sample as possible, and particular efforts should be made to include women, younger people (youth) and children. In an unstable context with unreliable or fragmentary data, multiple sources and techniques can be used, and results derived through triangulation or crosschecking of information. The sections below describe each one of these methodologies for data collection.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9e443977-2838-46c0-bd81-0ad23d561e10", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 10, + "Paragraph": "Direct observation Several vital types of information can only be collected by direct observation. This can include sighting weapons (recording type, model, serial number, country of manufacture and condition); examining weapons caches and stockpiles (geographic location, distribu tion, contents and condition of weapons, physical size, etc.); recording information on military installations and forces (location, size, identity, etc.); investigating weapons markets and other commercial transactions (supply and demand, prices, etc.); and recording the effects of small arms (displaced camps and conditions, destruction of infrastructure, types of wounds caused by small arms, etc.). Direct observation may also be a useful technique to obtain information about \u2018hidden\u2019 members of armed groups and forces, such as children, abductees and foreign fighters, whose association with the group may not be formally acknowledged.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3ab77ccf-8cea-4a29-853c-fa2440e1363d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 10, + "Paragraph": "Key informant interviews and focus groups Interviews and focus groups are essential to obtain information on, for example, com mand structures, numbers and types of people associated with the group, weaponry, etc., through direct testimony and group discussions. Vital information, e.g., numbers, types and distribution of weapons, as well as on weapons trafficking, children and abductees being held by armed forces and groups and foreign fighters (which some groups may try to conceal), can often be obtained directly from excombatants, local authorities or civilians. Although the information given may not be quantitatively precise or reliable, important qualitative conclusions can be drawn from it. Corroboration by multiple sources is a tried and tested method of ensuring the validity of the data (also see IDDRS 4.10 on Disarma ment, IDDRS 5.10 on Women, Gender and DDR, IDDRS 5.20 on Youth and DDR, IDDRS 5.30 on Children and DDR and IDDRS 5.40 on Crossborder Population Movements).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "74f89048-554d-4919-8106-17634ccd77bc", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 10, + "Paragraph": "Mass-based surveys Surveys can reveal important information, e.g., on trends in weapons availability, possession and distribution among excombatants; or information on the extent and nature of armed violence against civilians. The success or failure of a massbased survey ultimately depends on several factors, including the willingness of combatants and civilians to disclose sensi tive information, access to affected areas, design and administration of the questionnaire (is it easy to understand and administer?), and the extent to which the sample used in the survey is inclusive and representative.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b4d33ae0-90ab-453f-a0a0-5efbd9e3ad85", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 11, + "Paragraph": "Participatory assessments Participatory assessments, using the tools and methodology of participatory rural assess ment (PRA),1 is a useful methodology when the real issues and problems are not known to the researcher, and provides a way to avoid the problem of researcher bias in orientation and analysis. It is a particularly useful methodology when working with illiterate people, and can be adapted for use with different ages and sexes. To date, PRA tools have been used in securityrelated research, e.g.: for a small arms assessment, to explore subjective perceptions of small armsrelated insecurity (e.g., what impacts are most felt by civilians?); to obtain overviews of militia organizations and weapons distribution (through social mapping and history timeline exercises); and to identify community perceptions of matters relating to security sector reform (SSR), e.g., policing.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0debb4de-abc3-48a7-a51b-3159f4c9a455", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 11, + "Paragraph": "Market research Two sets of market research should be carried out. The first focuses on gathering informa tion relating to small arms. This could include: information on prices and how these have changed over time; identification of companies and other entities involved in weapons production, procurement and distribution; and details on weapons pipelines. This can provide important data on the nature, size and dynamics of the market or trade in small arms. Price information, particularly when collected at different locations within a country, can give insights into supply and demand dynamics that reveal differences in the extent of small arms proliferation and availability. Market research can also be used as a preventive measure by monitoring small arms prices, where a dramatic spike in prices usually indicates an upsurge in demand. A second set of market research should focus on gathering information on the local economic and employment situation so as to identify opportunities in the job market for reintegrating combatants (also see IDDRS 4.30 on Social and Economic Reintegration).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "882665e2-e153-41a8-9674-515dd5fb3439", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 11, + "Paragraph": "Institutional capacity assessments An assessment of the national institutional capacity to manage and implement the different aspects of DDR requires an evaluation of existing institutions and systems, human resources, and capacities. Three issues are of particular importance: the examination of existing capaci ties, as compared with those that are still needed; the efficiency and effectiveness of existing management structures; and the adequacy of legal and regulatory frameworks. This assess ment should provide information on institutional capacities for weapons collection and control, institutional coordination, managing and running demobilization camps, managing information flows, and providing support for reintegration planning and implementation.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7a0196a6-f699-4a01-a4f6-59a532ec8fc0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 11, + "Paragraph": "Sampling Although not a method for collecting or analysing information, sampling is a useful tool for determining the scope, focus and precision of data collection activities, and should be used together with all of the methods described above. Through sampling, general insight on specific DDR issues can be obtained from civilian populations and subgroups (especially armed forces and groups). The key to obtaining valid assumptions through sampling is to ensure that the population sampled is representative, i.e., has characteristics broadly similar 4.30 to those of the entire population. The decision whether to use random as opposed to non random sampling, or stratified as opposed to clustered sampling must be taken after a careful assessment of the context, research needs and amount of diversity in the population that is being studied.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "840e8739-f41b-48b0-9020-217a2bafc6a7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 12, + "Paragraph": "Analysing results: Tools and techniques Once datasets for different themes or areas have been generated, the next step is to make sense of the results. Several analytical tools and techniques can be used, depending on the degree of accuracy needed and the quality of the data: Qualitative analytical tools are used to make sense of facts, descriptions and perceptions through comparative analysis, inference, classification and categorization. Such tools help to understand the context; the political, social and historical background; and the details that numbers alone cannot provide; Quantitative analytical tools (statistical, geometric and financial) are used to calculate trends and distribution, and help to accurately show the size and extent, quantity and dispersion of the factors being studied; Estimation and extrapolation help to obtain generalized findings or results from sampled data. Given the large geographical areas in which DDR assessments are carried out, estimating and extrapolating based on a representative sample is the only way to obtain an idea of the \u2018bigger picture\u2019; Triangulation (crossreferencing), or the comparison of results from three different methods or data sources, helps to confirm the validity of data collected in contexts where infor mation is fragmentary, imprecise or unreliable. Although normally used with direct observation and interviewing (where facts are confirmed by using three or more differ ent sources), triangulation can also be applied between different methods, to increase the probability of reaching a reasonably accurate result, and to maximize reliability and validity; Geographic/Demographic mapping, which draws on all the techniques mentioned above, involves plotting the information gained about participants and beneficiaries geo graphically (i.e., the way they are spread over a geographical area) or chronologically (over time) to determine their concentration, spread and any changes over time.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7f818337-e48d-493c-9f7f-e0e9717cc403", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 12, + "Paragraph": "Stage II: Preparing the DDR programme document Designing a comprehensive DDR programme document is a time and labourintensive process that usually takes place after a peacekeeping mission has been authorized, and before deployment in the field has started. The programme document represents a blueprint for how DDR will be put into oper ation, and by whom. It is different from an implementation plan (which is often more technical), provides timelines and information on how individual DDR tasks and activities will be carried out, and assigns responsibilities. The comprehensive DDR assessment will be the main source of primary data on which to draw when defining programme strategies, targets and so on. The programme design process should also be based on pre existing assessments and strategy development, most importantly the premandate assess ment and concept of operations, and should revalidate, refine and build on these key elements: strategic objectives and outcomes; key principles of intervention; preconditions; strategic vision and approach.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f899451c-70fc-48a1-b3b6-740ab5efa305", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 13, + "Paragraph": "Contextual analysis and rationale The DDR programme document should be based on an indepth understanding of the national or local context and the situation in which the programme is to be implemented, as this will shape the objectives, overall strategy and criteria for entry, as follows: General context and problem: This defines the \u2018problem\u2019 of DDR in the specific context in which it will be implemented (levels of violence, provisions in peace accords, lack of alternative livelihoods for excombatants, etc.), with a focus on the nature and con sequences of the conflict; existing national and local capacities for DDR and SSR; and the broad political, social and economic characteristics of the operating environment; Rationale and justification: Drawing from the situation analysis, this explains the need for DDR: why the approach suggested is an appropriate and viable response to the identified problem, the antecedents to the problem (i.e., what caused the problem in the first place) and degree of political will for its resolution; and any other factors that provide a compelling argument for undertaking DDR. In addition, the engagement and role of the UN should be specified here; Overview of armed forces and groups: This section should provide an overview of all armed forces and groups and their key characteristics, e.g., force/group strength, loca tion, organization and structure, political affiliations, type of weaponry, etc. This information should be the basis for developing specifically designed strategies and approaches for the DDR of the armed forces and groups (see Annex D for a sample table of armed forces and groups); Definition of participants and beneficiaries: Drawing on the comprehensive assessments and profiles of armed groups and forces and levels of violence that are normally inclu ded in the framework, this section should identify which armed groups and forces should be prioritized for DDR programmes. This prioritization should be based on their involvement in or potential to cause violence, or otherwise affect security and the peace process. In addition, subgroups that should be given special attention (e.g., special needs groups) should be identified; Socio-economic profile in areas of return: A general overview of socioeconomic conditions in the areas and communities to which excombatants will return is important in order to define both the general context of reintegration and specific strategies to ensure effec tive and sustainable support for it. Such an overview can also provide an indication of how much preDDR community recovery and reconstruction assistance will be necessary to improve the communities\u2019 capacity to absorb former combatants and other returning populations, and list potential links to other, either ongoing or planned, reconstruction and development initiatives.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "963a3c9a-d8b1-486d-bf67-d34fcc6be814", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 14, + "Paragraph": "DDR programme objectives Because the DDR programme document should contain strategies and requirements for a complex and multicomponent process, it should be guided by both an overall goal and a series of smaller objectives that clearly define expected outputs in each subsector. While generic (general) objectives exist, they should be adapted to the realities and needs of each context. The set of general and specific objectives outlined in this section make up the overall framework for the DDR programme. Example: Objectives of the national DDR programme in the Democratic Republic of the Congo (DRC) General objective: Contribute to the consolidation of peace, national reconciliation and the socioeconomic reconstruction of the country, as well as regional stability. Specific objectives: Disarm combatants belonging to the armed groups and forces that will not be integrated into the DRC armed forces or in the police, as foreseen in the DRC peace accords; Demobilize the military elements and armed groups not eligible for integration into the DRC armed forces; Reintegrate demobilized elements into social and economic life within the framework of community productive systems.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4ef525ed-f95c-4a2b-afcf-b286a1f1e5de", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 13, + "Paragraph": "Guiding principles The guiding principles specify those factors, considerations and assumptions that are con sidered important for a DDR programme\u2019s overall viability, effectiveness and sustainability. These guiding principles must be taken into account when developing the strategic approach and activities. Universal (general) principles (see IDDRS 2.10 on the UN Approach to DDR) can be included, but principles that are specific to the operating context and associated requirements should receive priority. Principles can apply to the entire DDR programme, and need not be limited to operational or thematic issues alone; thus they can include political principles (how DDR relates to political processes), institutional principles (how DDR should be structured insti tutionally) and operational principles (overall strategy, implementation approach, etc.).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "80643adf-787f-4894-baaa-536d40b7d247", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 15, + "Paragraph": "Preconditions and foundations for DDR This section defines the issues that must be dealt with or included in the design of the DDR programme in order to ensure its effectiveness and viability. These include preconditions (i.e., those factors that must be dealt with or be in place before DDR implementation starts), as well as foundations (i.e., those aspects or factors that must provide the basis for planning and implementing DDR). In general, preconditions and foundations can be divided into those that are vital for the overall viability of DDR and those that can influence the overall efficiency, effectiveness and relevance of the process (but which are not vital in determining whether DDR is possible or not). Example: Preconditions and foundations for DDR in Liberia A governmentdriven process of postconflict reconciliation is developed and imple mented in order to shape and define the framework for postconflict rehabilitation and reintegration measures; A National Transitional Government is established to run the affairs of the country up until 2006, when a democratically elected government will take office; Comprehensive measures to stem and control the influx and possible recycling of weapons by all armed forces and groups and their regional network of contacts are put in place; The process of disbandment of armed groups and restructuring of the Liberian security forces is organized and begun; A comprehensive national recovery programme and a programme for community reconstruction, rehabilitation and reintegration are simultaneously developed and 2.10 implemented by the government, the United Nations Development Programme (UNDP) and other UN agencies as a strategy of prepositioning and providing assistance to all waraffected communities, refugees and internally displaced persons (IDPs). This programme will provide the essential drive and broader framework for the postwar recovery effort; Other complementary political provisions in the peace agreement are initiated and implemented in support of the overall peace process; A complementary community arms collection programme, supported with legislative process outlawing the possession of arms in Liberia, would be started and enforced following the completion of formal disarmament process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "487bbc4e-1519-4a2f-b102-75d34c11b537", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 16, + "Paragraph": "Overall strategic approach to DDR While the objectives, principles and preconditions/foundations establish the overall design and structure of the DDR programme, a description of the overall strategic approach is essential in order to explain how DDR will be implemented. This section is essential in order to: explain how the multiple components of DDR will be designed to reflect realities and needs, thus ensuring efficiency, effectiveness and sustainability of the overall approach; explain how the targets for assisting DDR participants and beneficiaries (number of excombatants assisted, etc.) will be met; explain how the various components and activities of DDR will be divided into phases and sequenced (planned over time) within the programme timeframe; identify issues that are critical to the implementation of the overall programme and provide information on how they will be dealt with. 2.10 4.20", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "acd86e54-d56d-4a56-8757-6ad3d682b9ee", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 16, + "Paragraph": "Defining the approach to DDR The core components of DDR (demobilization, disarmament and reintegration) can vary significantly in terms of how they are designed, the activities they involve and how they are implemented. In other words, although the end objective may be similar, DDR varies from country to country. Each DDR process must be adapted to the specific realities and requirements of the country or setting in which it is to be carried out. Important issues that will guide this are, for example, the nature and organization of armed forces and groups, the socioeconomic context and national capacities. These need to be defined within the overall strategic approach explaining how DDR is to be put into practice, and how its components will be sequenced and implemented (also see IDDRS 2.10 on the UN Approach to DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "34bf8f7d-36d0-4c66-89f7-126780a56e31", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 16, + "Paragraph": "Putting DDR into operation The specific context in which a DDR programme is to be implemented, the programme requirements and the best way to reach the defined objectives will all affect the way in which a DDR operation is conceptualized. When developing a DDR concept, there is a need to: describe the overall strategic approach; justify why this approach was chosen; describe the activities that the programme will carry out; and lay out the broad operational methods or guidelines for implementing them. In general, there are three strategic approaches that can be taken (also see IDDRS 4.20 on Demobilization): DDR of conventional armed forces, involving the structured and centralized disarma ment and demobilization of formed units in assembly or cantonment areas. This is often linked to their restructuring as part of an SSR process; DDR of armed groups, involving a decentralized demobilization process in which indi viduals are identified, registered and processed; incentives are provided for voluntary disarmament; and reintegration assistance schemes are integrated with broader com munitybased recovery and reconstruction projects; A \u2018mixed\u2019 DDR approach, combining both of the above models, used when participant groups include both armed forces and armed groups; After a comprehensive assessment of the operational guidelines according to which DDR will be implemented, a model should be created as a basis for planning (see Annexes C and D. Annex E illustrates an approach taken to DDR in the DRC). In addition to defining how to operationalize the core components of DDR, the overall strategic approach should also describe any other components necessary for an effective and viable DDR process. For the most part, these will be activities that will take throughout the DDR programme and ensure the effectiveness of core DDR components. Some examples are: awarenessraising and sensitization (in order to increase local understanding of, and participation in, DDR processes); capacity development for national institutions and communities (in contexts where capacities are weak or nonexistent); weapons control and management (in contexts involving widespread availability of weapons in society); repatriation and resettlement (in contexts of massive internal and crossborder dis placement); local peacebuilding and reconciliation (in contexts of deep social/ethnic conflict).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "251f705c-a2ed-4e14-b23c-dd6e2356a32b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 17, + "Paragraph": "Sequencing and phasing of DDR Once the main components of a DDR programme have been identified, an overall strategy for implementation needs to be drawn up. The overall strategy should usually be developed on the basis of operational objectives and targets broken down by time period or programme phase. This enables practitioners to see in broad terms how DDR will be implemented, plan the allocation of resources and other requirements, and coordinate among themselves. 2.10 2.20", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ee011113-9bac-45c3-8c33-c20867226bae", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "Strategic elements of a DDR programme As programme scale and scope, participants and beneficiaries, eligibility criteria, incentive schemes, and monitoring and evaluation all affect programme design, they should be con sidered when developing a DDR strategy.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "db1e83a6-61cf-4485-af9c-673aa537f4bd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "Scale and scope The scale of a DDR programme is determined by the number of beneficiaries and the geo graphical area the programme covers (most often determined by the size of the country or region where the programme is taking place). These figures determine the complexity, size and resource requirements for the programme, and must be estimated at the programme design stage. The extent to which a DDR programme directly includes activities that formally belong to other sectors determines its scope or extent (i.e., exactly how much it is going to try and achieve). In the past, DDR programmes focused strictly on the core components of disarm ament, demobilization and reintegration. Today, most DDR programmes include or take account of activities relating to SSR (such as weapons control and regulation), peacebuilding and reconciliation, and community recovery and reconstruction (also see IDDRS 2.10 on the UN Approach to DDR and IDDRS 2.20 on Postconflict Stabilization, Peacebuilding and Recovery Frameworks).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "8b37c499-e2b8-469e-95c9-798d79698e25", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "DDR participants The identification of DDR participants affects the size and scope of a DDR programme. DDR participants are usually prioritized according to their political status or by the actual or potential threat to security and stability that they represent. They can include regular armed forces, irregular armed groups, militias and paramilitary groups, selfdefence groups, members of private security companies, armed street gangs, vigilance brigades and so forth. Among the beneficiaries are communities, who stand to benefit the most from improved security; local and state governments; and State structures, which gain from an improved capacity to regulate law and order. Clearly defining DDR beneficiaries determines both the operational role and the expected impacts of programme implementation.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7e3f2e54-34f7-41d5-bf37-86a84b546376", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "Operational role Another important factor that determines the scope of a DDR programme is the extent of national capacity and the involvement of national and nonUN bodies in the implementa tion of DDR activities. In a country with a strong national capacity to implement DDR, the UN\u2019s operational role (i.e. the extent to which it is involved in directly implementing DDR activities) should be focused more on ensuring adequate coordination than on direct imple mentation activities. In a country with weak national implementing capacity, the UN\u2019s role in implementation should be broader and more operational.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0113a11c-a65a-4b2e-98d9-d53203b92c75", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 18, + "Paragraph": "Eligibility criteria Eligibility criteria provide a mechanism for determining who should enter a DDR pro gramme and receive reintegration assistance. This often involves proving combatant status or membership of an armed force or group. It is easier to establish the eligibility of par ticipants to a DDR programme when this involves organized, legal armed forces with members who have an employment contract. When armed groups are involved, however, there will be difficulties in proving combatant status, which increases the risk of admitting noncombatants and increasing the number of people who take part in a DDR programme. In such cases, it is important to have strict and welldefined eligibility criteria, which can help to eliminate the risk of noncombatants gaining access to the programme (also see IDDRS 4.20 on Demobilization).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "10ca1ef4-5aa0-4de2-863d-d94fc7867332", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 19, + "Paragraph": "Incentive schemes When targeting armed groups in a DDR programme, their oftenweak command and con trol structures should be taken into account, and it should not be assumed that combatants will obey their commanders\u2019 orders to enter DDR programmes. Moreover, there may also be risks or stigma attached to obeying such orders (i.e., fear of reprisals), which discour ages people from taking part in the programme. In such cases, incentive schemes, e.g., the offering of individual or collective benefits, may be used to overcome the combatants\u2019 concerns and encourage participation. It is important also to note that awarenessraising and public information on the DDR pro gramme can also help towards overcoming 4.20 combatants\u2019 concerns about entering a DDR programme. Incentives may be directly linked to the disarmament, demobilization or reintegration components of DDR, although care should be taken to avoid the perception of \u2018cash for weapons\u2019 or weapons buyback programmes when these are linked to the disarmament component. If used, incentives should be taken into consideration in the design of the overall programme strategy.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5bb8737c-fb1c-4f95-a23c-4e04d2ec509b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 13, + "Paragraph": "Monitoring and evaluation The development of baseline data is vital to measuring the overall effectiveness and impact of a DDR programme. Baseline data and indicators are only useful, however, if their collec tion, distribution, analysis and use are systematically managed. DDR programmes should have a good monitoring and information system that is integrated with the entire DDR programme, allowing for information collected in one component to be available in another, and for easy crossreferencing of information. The early establishment of an information management strategy as part of the overall programme design will ensure that an appro priate monitoring and evaluation system can be developed once the programme is finalized (also see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1cf5eb90-9a82-4b70-90b7-2b36714a525b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 19, + "Paragraph": "DDR strategies Once the strategic approach for the DDR programme has been designed, detailed imple mentation strategies should be developed for each programme component. These may be annexed to the original programme document or developed as separate documents. Each strategy should include the following: 3.50 the objective of the component; the strategic approach and methods adopted for its implementation; an explanation of how key issues and considerations will be dealt with; an overview of the implementation process and key activities necessary to achieve the objective. Issues that should be considered include: 4.10 4.20 4.30 4.60 3.30", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "325c3ce1-eecc-4803-afeb-e0e6854f6985", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 21, + "Paragraph": "6.7. Ensuring cross-programme links with broader transition and recovery frameworks In most cases, the development of DDR programmes happens at the same time as the devel opment of programmes in other sectors such as rule of law, SSR, reintegration and recovery, and peacebuilding. The DDR programmes should be linked, as far as possible, to these other processes so that each process supports and strengthens the others and helps integrate DDR into the broader framework for international assistance. DDR should be viewed as a com ponent of a larger strategy to achieve postconflict objectives and goals. Other processes to which DDR programme could be linked include JAM/PCNA activities, and the development of a common country assessment/UN development assessment framework and poverty reduction strategy paper (also see IDDRS 2.20 on Postconflict Stabilization, Peacebuilding and Recovery Frameworks).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e4d61251-ec54-4edb-b4ea-60f6fdbea235", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 21, + "Paragraph": "Developing the results and budgeting framework A key part of programme design is the development of a logical framework that clearly defines the hierarchy of outputs, activities and inputs necessary to achieve the objectives and outcomes that are being aimed at. In line with the shift towards resultsbased pro gramming, such logical frameworks should focus on determining how to achieve the planned outcomes within the time that has been made available. This approach ensures coordination and programme implementation, and provides a framework for monitoring and evaluating performance and impact. When DDR is conducted in an integrated peacekeeping context, two complementary resultsbased frameworks should be used: a general results framework containing the main outputs, inputs and activities of the overall DDR programme; and a framework specifically designed for DDR activities that will be funded from mission assessed funds as part of the overall mission planning process. Naturally, the two are complementary and should con tain common elements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a8237db3-c096-4399-9d99-78941de84ec3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 21, + "Paragraph": "7.1. General results framework The general results framework for a DDR programme should consist of the following elements (but not necessarily all of them) (see also Annex F for a general results framework for DDR that was used in Liberia): 2.20 Specific objectives and component outcomes: For each component of a DDR programme (i.e., disarmament, demobilization, reinsertion, reintegration, etc.), the main or longer term strategic objectives should be clearly defined, together with the outcomes the UN is supporting. These provide a strategic framework for organizing and anchoring relevant activities and outputs; Baseline data: For each specific objective, the initial starting point should be briefly described. In the absence of hard quantitative baseline data, give a qualitative descrip tion of the current situation. Defining the baseline is a critical part of monitoring and evaluating the performance and impact of programmes; Indicative activities: For each objective, a list of indicative activities should be provided in order to give a sense of the range and kind of activities that need to be implemented so as to achieve the expected outputs and objectives. For the general results frame work, these do not need to be complete or highly detailed, but they must be sufficient to provide a sense of the underlying strategy, scope and range of actions that will be implemented; Intervals: Activities and priority outputs should be have precise timelines (preferably specific dates). For each of these dates, indicate the expected level of result that should be achieved. This should allow an overview of how each relevant component of the programme is expected to progress over time and what has to be achieved by what date; Targets and monitoring indicators: For each activity there should be an observable target, objectively verifiable and useful as a monitoring indicator. These indicators will vary depending on the activity, and they do not always have to be quantitative. For example, \u2018reduction in perceptions of violence\u2019 is as useful as \u201815 percent of excombatants success fully reintegrated\u2019; Inputs: For each activity or output there should be an indication of inputs and their costs. General cost categories should be used to identify the essential requirements, which can include staff, infrastructure, equipment, operating expenses, service contracts, grants, consultancies, etc.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "1ad1360b-7fdb-4711-ab8d-d85ff781f0b5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 22, + "Paragraph": "7.2. Peacekeeping results-based budgeting framework The resultsbased budgeting (RBB) framework is the main budgetary planning tool used by the UN Secretariat and peacekeeping missions, and is part of the SecretaryGeneral\u2019s programme of reform and vision of a more resultsoriented organization. An important feature of RBB is the definition of expected results at the beginning of the planning and budget cycle, before the programme is implemented. Thus RBB aims to shift focus from output accounting (i.e., activities) to resultsbased accountability (i.e., indi cators of achievements). RBB is therefore not simply an administrative process, but a strategic planning tool, improving the clarity of programmes, and bringing about a common under standing and better communication between Member States and programme managers to improve results. Resultsbased management is intended to be a dynamic process, providing feedback throughout the full programme cycle: planning, programming, budgeting, and monitoring and evaluation. Since it was introduced, RBB has continued to evolve in order to better fulfil its role as a strategic planning tool for the UN. RBB has four main components: the DDR objective statement, serving as the basis for developing programme activities and identifying benchmarks for success; indicators of achievement, which measure performance, justify the resource requirements and are linked to outputs; outputs, listing the activities that will be conducted in order to achieve the objective; external factors, identifying factors outside of the programme manger\u2019s control that may have an impact on programme performance.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f4fbf975-bfe2-4be0-8e7b-fdff62f710e8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "Developing an RBB framework This section is intended to assist DDR programme managers in the field to develop RBB frameworks for submission to the Department of Peacekeeping Operations, which will serve as the basis for cost estimates. Mission budget officers who are specialized in the develop ment of RBB frameworks should be able to assist with the development of this tool.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "68cbbb8a-3698-4238-9709-25bda5259d57", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "The DDR objective statement The DDR objective statement draws its legal foundation from Security Council mission mandates. It is important to note that the DDR objective will not be fully achieved in the lifetime of the peacekeeping mission, although certain activities such as the (limited) phys ical disarmament of combatants may be completed. Other important aspects of DDR such as reintegration, the establishment of the legal framework, and the technical and logistic capacity to deal with small arms and light weapons often extend beyond the duration of a peacekeeping mission. In this regard, the objective statement must reflect the contribution of the peacekeeping mission to the \u2018progress towards\u2019 the DDR objective. An example of a DDR objective statement is as follows: \u201cProgress towards the disarmament, demobilization and reintegration of members of armed forces and groups, including meeting the specific needs of women and children associated with such groups, as well as weapons control and destruction.\u201d", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "c252835f-146f-469a-ba35-e02703485578", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "Indicators of achievement The targeted achievement should include no more than five clear and measurable indicators, and baseline information from which increases/decreases in the baseline variables are measured.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "80f10848-847a-49bf-89d1-66ab28206db5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "Outputs When developing the DDR outputs for an RBB framework, programmer managers should take the following into account: (1) specific references to the implementation timeframe should be included; (2) DDR technical assistance or advice needs should be further defined to specify what that means in practice and, if possible, quantified (e.g., workshops, training programmes, legislative models, draft work plans); (3) participants in DDR programmes or recipients of the mission\u2019s efforts should be included in the output description; and (4) when describing these outputs, the verb should be placed before the output definition (e.g., \u2018Destroyed 9,000 weapons\u2019; \u2018Chaired 10 community sensitization meetings\u2019).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "35d62408-bbda-4032-80ed-06fdf40c3b80", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 23, + "Paragraph": "External factors When developing the external factors of the DDR RBB framework, programme managers are requested to identify those factors that are outside the control of the DDR unit. These should not repeat the factors that make up the indicators of achievement. For an example of an RBB framework for DDR in Sudan, see Annex G; also see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes.\t3.50 3.10 3.50", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9985c32f-1ee2-44c7-a519-2fa90051103a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 24, + "Paragraph": "Stage III: Developing an implementation plan Once a programme has been prepared, planning instruments should be developed that will aid practitioners (UN, nonUN and the national government) to implement the planned activities and strategies. An actions or operations plan usually consists of four main elements: Implementation methods: This consists of a narrative description of how each DDR com ponent will be made operational within the framework of the programme, focusing on the precise sequencing of activities, operational requirements, logistic requirements, links with other mission components, key risks and factors that will reduce these risks. This section can be used by practitioners to guide implementation and operations and provide an overall framework for the other components of the operational and action plan; Timing: There should be an overview of the timeframe and schedule for implementation of DDR activities for each component of the programme, which provides an overall picture of the phasing and sequencing of programme implementation. This will provide practitioners with a quick overview of the activities, which is important for defining and planning resource requirements and allocations. An example of a timeframe is included in Annex H; Detailed work plan: A detailed work plan should also be included in the operational plan. It should break all programme activities down into their various tasks, and indi cate who is responsible for different operational roles. The main categories of such a work plan should include: the activities to be implemented; a detailed description of individual tasks; the required inputs (human, material, financial); the actor responsible for funding each task; the actor responsible for logistic support; the actor responsible for staffing; the actor responsible for coordination/supervision; the actor responsible for implementation; the expected timeframe for implementation of task. The work plan should be considered a dynamic document that should be updated periodically and used to guide DDR planners and practitioners on programme imple mentation on a daytoday basis. A generic work plan is included in Annex I; Management arrangements: This section should detail the institutional arrangements established to provide strategic guidance, coordination and implementation of the programme (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b69f558b-a441-4143-ac94-e85b0d5814ec", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.20-DDR-Programme-Design", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.20-DDR-Programme-Design", + "PageNum": 25, + "Paragraph": "Terms and definitions Detailed field assessment: A detailed field assessment is essential to identify the nature of the problem a DDR programme is to deal with, as well as to provide key indicators for the development of a detailed DDR strategy and its associated components. Detailed field assess ments shall be undertaken to ensure that DDR strategies, programmes and implementation plans reflect realities, are well targeted and sustainable, and to assist with their monitoring and evaluation. Implementation plan: Also known as an operations or action plan, an implementation plan describes the detailed steps necessary to implement programme activities, together with a division of labour and overall timeframe. Programme: A generic (general) term for a set of activities designed to achieve a specific objective. In order to ensure that a programme\u2019s results, outputs and overall outcome are reached, activities are often framed by a strategy, key principles and identified targets. Together, these indicate how the activities will be structured and implemented. Programmes also include a description of all aspects necessary to implement the planned activities, includ ing inputs and resources (staff, equipment, funding, etc.), management arrangements, legal frameworks, partnerships and other risk analysis. Project: Within each programme there may be several projects, each of which is a separately identified undertaking. A project is an intervention that consists of a set of planned, inter related activities aimed at achieving defined objectives over a fixed time. A project\u2019s activities and objectives are normally given in a project document. This legal agreement binds the signatories to carry out the defined activities and to provide specific resources over a fixed period of time in order to reach agreed objectives.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "cc910b40-9847-42bd-b346-c137093095cf", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": null, + "Paragraph": "Summary The system of funding of a disarmament, demobilization and reintegration (DDR) pro- gramme varies according to the different involvement of international actors. When the World Bank (with its Multi-Donor Trustfund) plays a leading role in supporting a national DDR programme, funding is normally provided for all demobilization and reintegration activities, while additional World Bank International Development Association (IDA) loans are also provided. In these instances, funding comes from a single source and is largely guaranteed. In instances where the United Nations (UN) takes the lead, several sources of funding may be brought together to support a national DDR programme. Funds may include con- tributions from the peacekeeping assessed budget; core funding from the budgets of UN agencies, funds and programmes; voluntary contributions from donors to a UN-managed trust fund; bilateral support from a Member State to the national programme; and contribu- tions from the World Bank. In a peacekeeping context, funding may come from some or all of the above funding sources. In this situation, a good understanding of the policies and procedures governing the employment and management of financial support from these different sources is vital to the success of the DDR programme. Since several international actors are involved, it is important to be aware of important DDR funding requirements, resource mobilization options, funding mechanisms and finan- cial management structures for DDR programming. Within DDR funding requirements, for example, creating an integrated DDR plan, investing heavily in the reintegration phase and increasing accountability by using the results-based budgeting (RBB) process can contribute to the success and long-term sustainability of a DDR programme. When budgeting for DDR programmes, being aware of the various funding sources available is especially helpful. The peacekeeping assessed budget process, which covers military, personnel and operational costs, is vital to DDR programming within the UN peace- keeping context. Both in and outside the UN system, rapid response funds are available. External sources of funding include voluntary donor contributions, the World Bank Post- Conflict Fund, the Multi-Country Demobilization and Reintegration Programme (MDRP), government grants and agency in-kind contributions. Once funds have been committed to DDR programmes, there are different funding mechanisms that can be used and various financial management structures for DDR pro- grammes that can be created. Suitable to an integrated DDR plan is the Consolidated Appeals Process (CAP), which is the normal UN inter-agency planning, coordination and resource mobilization mechanism for the response to a crisis. Transitional appeals, Post-Conflict Needs Assessments (PCNAs) and international donors\u2019 conferences usually involve govern- ments and are applicable to the conflict phase. In the case of RBB, programme budgeting that is defined by clear objectives, indicators of achievement, outputs and influence of external factors helps to make funds more sustainable. Effective financial management structures for DDR programmes are based on a coherent system for ensuring flexible and sustainable financing for DDR activities. Such a coherent structure is guided by, among other factors, a coordinated arrangement for the funding of DDR activities and an agreed framework for joint DDR coordination, monitoring and evaluation. 3.10 3.20 3.30 1.20", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4c6235b1-6cf5-42f1-9d0d-26b07e97ecce", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 4, + "Paragraph": "Module scope and objectives The aim of this module is to provide DDR practitioners in Headquarters and the field, in peacekeeping missions as well as field-based UN agencies, funds and programmes with a good understanding of: the major DDR activities that need to be considered and their associated cost; the planning and budgetary framework used for DDR programming in a peacekeeping environment; potential sources of funding for DDR programmes, relevant policies guiding their use and the key actors that play an important role in funding DDR programmes; the financial mechanisms and frameworks used for DDR fund and programmes man- agement. Specifically, the module outlines the policies and procedures for the mobilization, man- agement and allocation of funds for DDR programmes, from planning to implementation. It provides substantive information about the budgeting process used in a peacekeeping mission (including the RBB framework) and UN country team. It also discusses the funding mechanisms available to support the launch and implementation of DDR programmes and ensure coordination with other stakeholders involved in the funding of DDR programmes. Finally, it outlines suggestions about how the UN\u2019s financial resources for DDR can be managed as part of the broader framework for DDR, defining national and international responsibilities and roles, and mechanisms for collective decision-making. The module does not deal with the specific policies and procedures of World Bank funding of DDR programmes. It should be read together with the module on planning of integrated DDR (IDDRS 3.10 on Integrated DDR Planning: Processes and Structures), the module on programme design (IDDRS 3.20 on DDR Programme Design), which provides guidance on developing cost-efficient and effective DDR programmes, and the module on national institutions (IDDRS 3.30 on National Institutions for DDR), which specifies the role of national institutions in DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "de03c290-9a51-4128-8962-da4aa24e4c40", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of inte- grated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the word \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "72f8ba1d-ae40-49e2-88c0-4bcc323d1ad6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 5, + "Paragraph": "Introduction The primary purpose of DDR is to build the conditions for sustainable reintegration and reconciliation at the community level. Therefore, both early, adequate and sustainable funding and effective and transparent financial management arrangements are vital to the success of DDR programmes. Funding and financial management must be com- bined with cost-efficient and effective DDR programme strategies that both increase immediate security and contribute to the longer-term reintegration of ex-combatants. Strategies containing poorly conceived eligibility criteria, a focus on individual combatants, up-front cash incentives, weapons buy-back schemes and hastily planned re- integration programmes must be avoided. They are both a financial drain and will not help to achieve the purpose of DDR. Programme managers should be aware that the reliance on multiple sources and mechanisms for funding DDR in a peacekeeping environment has several implications: First, most programmes experience a gap of about a year from the time funds are pledged at a donors\u2019 conference to the time they are received. Payment may be further delayed if there is a lack of donor confidence in the peace process or in the implemen- tation of the peace agreement; Second, the peacekeeping assessed budget is a predictable and reliable source of funding, but a lack of knowledge about what can or cannot be carried out with this source of funding, lack of clarity about the budgetary process and late submissions have all lim- ited the contributions of the peacekeeping assessed budget to the full DDR programme; Third, the multiple funding sources have, on occasion, resulted in poorly planned and unsynchronized resource mobilization activities and unnecessary duplication of administrative structures. This has led to further confusion among DDR planners and implementers, diminished donor confidence in the DDR programme and, as a result, increased unwillingness to contribute the required funds.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "36e15442-99d2-4ae7-8cbb-1e115e48e77d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 5, + "Paragraph": "Integrated DDR plan The funding strategy of the UN for a DDR programme should be based on an integrated DDR plan and strategy that show the division of labour and relationships among different national and local stakeholders, and UN departments, agencies, funds and programmes. The planning process to develop the integrated plan should include the relevant national stakeholders, UN partners, implementing local and international partners (wherever pos- sible), donors and other actors such as the World Bank. The integrated DDR plan shall also define programme and resource management arrangements, and the roles and responsi- bilities of key national and international stakeholders.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d5bd08f2-e014-40c1-a52b-6111a6791017", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Harmonization with other post-conflict planning mechanisms Planning and budgeting for DDR shall also be harmonized with other assessment, planning and financing mechanisms that are established to manage and allocate financial resources for transition and recovery needs.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "5a52f0ac-f903-4db7-8d4b-e51eb310b15b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Funding DDR as an indivisible process DDR practitioners and donors shall recognize the indivisible character of DDR. Sufficient funds must be secured to finance the disarmament, demobilization and reintegration acti- vities for an individual participant and his/her receiving community before the UN should consider starting the disarmament process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "eae363b0-1452-4bcf-b221-bfd9337cf1b2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Minimizing duplication The UN must avoid duplicative, high-cost administrative structures for fund management in-country, as well as unnecessary duplication in programmes for ex-combatants and those associated with the armed forces and groups.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "93d3dfc3-5dff-48ff-9c13-3e1a1cf1e304", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Investing in reintegration The UN system should ensure that adequate, timely funding is allocated for the reintegra- tion component of the programme. Additional investments into community level services to assist and support reintegration and reconciliation (such as community security initia- tives) should be planned and harmonized with the investments of the UN system and bilateral and multilateral actors working on reintegrating internally displaced persons and refugees.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "805dc327-9f89-4982-8c3e-39bf33aed52c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Flexibility and worst-case planning estimates Wherever possible, cost estimates should be based on thorough assessments and surveys. In the absence of concrete information, the UN shall make the assumptions/estimates needed in order to carry out planning and budgeting for a DDR programme. The planning and budgetary process shall take into account realistic worst-case scenarios and build in sufficient financial flexibility to deal with potential identified political and security contin- gencies that may affect DDR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "94065790-aa30-420a-8d18-6695f2112e79", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 6, + "Paragraph": "Accountability The UN, together with relevant bilateral or multilateral partners, shall establish rigorous oversight mechanisms at the national and international levels to ensure a high degree of accuracy in monitoring and evaluation, transparency, and accountability. These tools ensure that the use of funds meets the programme objectives and conforms to both the financial rules and regulations of the UN (in the case of the assessed budget) and those of donors contributing funds to the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "210b0faf-99dc-45b6-ab99-64aeaff7f7dd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 7, + "Paragraph": "Funding requirements The matrix below identifies the main DDR activities from the negotiation of the peace proc- ess to the implementation of the programme, the main activities that may take place in each phase of the process, and possible resource requirements and sources of funding. This list provides a general example of the processes involved, and other issues may have to be included, depending on the requirements of a particular DDR mission.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ba405478-1788-4844-bc26-fadbc738466b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 8, + "Paragraph": "Budgeting for DDR during programme development The design of DDR budgets should follow the basic template for results-based budgeting 3.20\t(RBB) in use by the UN system as international standards (also see IDDRS 3.20 on DDR Programme Design). Annex D.1 gives suggestions on how to develop an RBB framework, while Annex D.2 provides an example from Sudan. When drawing up the budget in the programme development process, the following considerations should be taken into account: It is necessary to accurately cost programme requirements during the assessment/pro- gramme design phase in consultation with all key stakeholders (particularly national authorities, main donors and partners); The costing of DDR activities should be carried out within a single framework (i.e., covering all aspects of DDR, and all phases of mission planning and programme devel- opment), including a common results-based matrix with corresponding funding sources. This framework should fit in with, and be linked to, other funding frameworks (CAP, joint assessment missions, PCNA processes, etc.). Annexes B.1 provides an example of the results-focused transition framework (RFTF) on DDR from Liberia, while Annex B.2 shows integrated DDR programme planning in Sudan; Budgeting for funding UN DDR activities should be carried out with a clear under- standing of the division between national and international implementation respon- sibilities, and should be closely coordinated with the development and funding of the national DDR framework; A donors\u2019 group or forum should be established during the programme development phase to ensure adequate and sustainable participation and engagement of donors in DDR; As far as possible, the identification of funding needs, sources and methods should be integrated with broader post-conflict recovery strategy and funding frameworks (includ- ing management and governance structures). Most important for DDR programme budgeting within the UN system is the peace- keeping assessed budget process. While other funding sources are available, the peacekeeping assessed budget process requires complex planning considerations for DDR programmes in the peacekeeping context.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "afd1aae6-bf53-481e-95b1-389fc7779bbe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 9, + "Paragraph": "The peacekeeping assessed budget of the UN The peacekeeping assessed budget of the UN is an important source of funding for DDR programmes. It is normally established for one year and covers the three major categories of expenses. These are: military costs (troops, military observers and equipment); personnel costs (international and local staff members, consultants, etc.); operational costs (logistics and limited programme implementation costs).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b2618f31-ad3d-4a70-b85c-4220422ddcab", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 9, + "Paragraph": "Elements of budgeting for DDR Budgeting for DDR activities, using the peacekeeping assessed budget, must be guided by two elements: The Secretary-General\u2019s DDR definitions: In May 2005, the Secretary-General standardized the DDR definitions to be used by all peacekeeping missions in their budget submissions, in his note to the General Assembly (A/C.5/59/31); General Assembly resolution A/RES/59/296: Following the note of the Secretary-General on DDR definitions, the General Assembly in resolution A/RES/59/296 recognized that a reinsertion period of one year is an integral part of the demobilization phase of the programme, and agreed to finance reinsertion activities for demobilized combatants for up to that period. (For the remaining text of resolution A/RES/59/296, please see Annex C.)", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "2c99713d-6542-43d6-bf0a-a836131cdd0a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 10, + "Paragraph": "Categories that may be funded by the peacekeeping assessed budget Guided by the Secretary-General\u2019s definitions and resolution A/RES/59/296 of the Gen- eral Assembly, below is a list of the categories that may be funded by the peacekeeping assessed budget:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d940c5de-7a15-4da1-8d8f-fb5ce511c891", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 11, + "Paragraph": "The peacekeeping budgeting process This section outlines the typical process for developing the budget for a peacekeeping mission and describes the RBB methodology used in DPKO missions for the preparation and sub- mission of budgets to the General Assembly. (Note: With the exception of new missions, the budget cycle for all peacekeeping budgets is from 1 July to 30 June of the following year.)", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fc473e23-3ce0-4afe-88bb-a4df450c55e3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 12, + "Paragraph": "Section II: Resource mobilization This section provides an overview of the main sources of funding used for DDR, as well as the types of activities they can finance. The section also illustrates how different funds and funding sources can be used within an overall phased plan for funding DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "64d892ac-0630-4ec7-96b5-d12e24a871ad", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 12, + "Paragraph": "Sources of funding In general, five funding sources are used to finance DDR activities. These are: the peacekeeping assessed budget of the UN; rapid response (emergency) funds; voluntary contributions from donors; government grants, government loans and credits; agency cost-sharing. An outline of the peacekeeping assessed budget process of the UN is given at the end of Section I. Next to the peacekeeping assessed budget, rapid response funds are another vital source of funding for DDR programming.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4c4b4eb7-e753-4277-b3a9-984c9828bbb5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 12, + "Paragraph": "Rapid response funds There are several sources of funds that can be accessed relatively quickly to fund urgent require- ments and emergencies: they can be used to fund specific activities needed to develop and launch DDR activities. The funds provide up-front capacities and resources in the immedi- ate post-conflict period that cannot be covered by voluntary contributions, owing to delays in funds being disbursed and often lengthy procedures for authorization and disbursement. These funds often have flexible management arrangements, can be quickly disbursed, and can help the peacekeeping assessed budget to deal with strategic priorities immediately preceding, and during, the development and launch of DDR programmes. These sources of funding include the following:", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9a230f48-60fe-48bc-99ca-94910f1874f8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 13, + "Paragraph": "UNDP crisis prevention and recovery funds The UN Development Programme (UNDP), through both its core funds for emergency situations (known as TRAC 1.1.3) and its Crisis Prevention and Recovery Thematic Trust Fund (CPR/TTF), can provide limited seed funding for developing and launching DDR programmes in the immediate pre-mandate and mission deployment period, and for providing technical and capacity-development assistance to parties engaged in peace negotiations:1", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a104367d-8736-4a3e-b0d3-5005c2d2c032", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 14, + "Paragraph": "European Commission Rapid Reaction Mechanism2 The European Commission (EC) Rapid Reaction Mechanism (RRM) is designed to allow the European Union (EU) to respond urgently to the needs of countries threatened with or undergoing severe political instability or suffering from the effects of technological or natu- ral disasters.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d50414a2-37b6-4d2a-9a31-0b5acd7e2219", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 14, + "Paragraph": "World Bank Post-Conflict Fund3 The World Bank Post-Conflict Fund (PCF) supports planning, piloting and analysing of DDR activities by funding governments and partner organizations doing this work. The emphasis is on speed and flexibility without sacrificing quality.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "89a0b24c-ac97-498d-be7e-eb7a35ce682c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": null, + "Paragraph": "Voluntary (donor) contributions Voluntary contributions from UN Member States are the main source of financing for DDR programmes, and in particular reintegration activities. Contributions can originate from various sources, including foreign affairs ministries, overseas development assistance funds and defence ministries, among others. Key donors that usually provide financing for DDR, as well as security sector reform (SSR) and post-conflict recovery initiatives, include the following countries, together with their re- spective bilateral aid agencies and specialized mechanisms for funding post-conflict and transition priorities:", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b1f00f95-1b44-4bcf-93c9-f314feb69b84", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 16, + "Paragraph": "Government grants Although most post-conflict governments lack institutional capacity to carry out DDR, many (such as Sierra Leone) contribute towards the cost of domestic DDR programmes, given their importance as a national priority. Although these funds are not generally used to finance UN-implemented activities and operations, they play a key role in establishing and making operational national DDR institutions and programmes, while helping to generate a mean- ingful sense of national ownership of the process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "bd29f872-fb7c-4fd1-964e-8590366ad10c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 16, + "Paragraph": "Agency in-kind contributions For some activities in a DDR programme, certain UN agencies might be in a position to provide in-kind contributions, particularly when these activities correspond to or consist of priorities and goals in their general programming and assistance strategy. Such in-kind contributions could include, for instance, the provision of food assistance to ex-combatants during their cantonment in the demobilization stage, medical health screening, or HIV/ AIDS counselling and sensitization. The availability and provision of these contributions for DDR programming should be discussed, identified and agreed upon during the programme design/planning phase, and the agencies in question should be active participants in the overall integrated approach to DDR. Traditional types of in-kind contributions include: security and protection services (military) \u2014 mainly outside of DDR in peacekeeping missions; construction of basic infrastructure; logistics and transport; food assistance to ex-combatants and dependants; child-specific assistance; shelter, clothes and other basic subsistence needs; health assistance; HIV/AIDS screening and testing; public information services; counselling; employment creation in existing development projects.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f7ea487b-5ac9-45d3-8fe0-5eef14ce9400", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 16, + "Paragraph": "Overview of phased DDR funding requirements A key element of a resource mobilization strategy is to focus on different donors and fund- ing sources, depending on what range of activities they can fund at different phases in the DDR programme cycle. Some types of funding (particularly emergency response funding) are particularly useful in the initial planning and launch phase of DDR programmes, owing to their imme- diate availability, quick disbursal and flexibility, while other types of funding (voluntary contributions or loans) are more applicable for financing long-term reintegration assistance, owing to their slower disbursement, often of larger amounts, and their ability to finance multi-year arrangements. Annex E illustrates how different sources and kinds of funds could be utilized within an overall phased approach to implementing DDR programmes. This type of planning could form a vital component of a resource mobilization strategy and allow the establishment of clear goals.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3f947a84-7d5c-4fba-b77a-ff86c0c10fef", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 17, + "Paragraph": "Standard funding mechanisms The UN system uses a number of different funding mechanisms and frameworks to mobilize financial resources in crisis and post-conflict contexts, covering all stages of the relief-to- development continuum, and including the mission period. For the purposes of financing DDR, the following mechanisms and instruments should be considered:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ca6cd320-7b28-4c90-8041-a07c932e0ae5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 18, + "Paragraph": "12.1. Results-based budgeting for DDR in a peacekeeping environment The results-based budgeting (RBB) framework is the primary budgetary planning tool used by the UN Secretariat and peacekeeping missions, and is part of the Secretary-General\u2019s programme of reform and vision of a more results-oriented organization. A significant feature of RBB is the defining of expected results at the beginning of the planning and budget cycle, before implementation. Thus RBB aims to shift focus from output accounting (i.e., activities) to results-based accountability (i.e., indicators of achievements). RBB is not simply an administrative process, but a strategic planning tool, improving the clarity of programmes, bringing about a common understanding and better communication between Member States and programme managers about the desired results. Results-based management is intended to be a dynamic process, providing feedback throughout the full programme cycle: in planning, programming, budgeting, and monitoring and evaluation. Since its inception, RBB has continued to evolve in order to better fulfil its role as a strategic planning tool for the UN. (See Annex D.1 for an overview of the RBB framework develop- ment and Annex D. 2 for an example from Sudan.) RBB has four main components: Objective: Serving as the basis for developing programme activities and identifying benchmarks for success; Indicators of achievement: Measuring performance, justifying the resource requirements and linking them to outputs; Outputs: Listing the activities that will be conducted in order to achieve the objective; External factors: Identifying factors outside the control of the programme manager that may affect programme performance.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "23aed21d-e5d8-4ad9-9d7b-5b6806d63820", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 5, + "Paragraph": "Financial management Integrated DDR programmes should develop, to the extent possible, a single structure for managing and coordinating: the receipt of funds from various funding sources and mechanisms; the allocation of funds to specific projects, activities and implementing partners; adequate monitoring, oversight and reporting on the use of funds. In order to achieve these goals, the structure should ideally: include a coordinated arrangement for the funding of DDR activities that would be administered by either the UN or jointly with another organization such as the World Bank, with an agreed structure for joint coordination, monitoring and evaluation; establish a direct link with integrated DDR planning and programming frameworks; include all key stakeholders on DDR, while ensuring the primacy of national ownership; bring together within one framework all available sources of funding, as well as related methods (including trust funds and pass-through arrangements, for instance), in order to establish a well-coordinated and coherent system for ensuring flexible and sustain- able financing of DDR activities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "90b73697-4453-4ece-b66b-dc011804b646", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 18, + "Paragraph": "National role and coordination The establishment of a financial and management structure for funding DDR should clearly reflect the primacy of national ownership and responsibility, the extent of direct national implementation and fund management, and the nature of UN support. In this sense, a DDR funding structure should not be exclusively oriented towards UN management and imple- mentation, but rather be planned as an \u2018open\u2019 architecture to enable national and other international actors to meaningfully participate in the DDR process. As a part of the process of ensuring national participation, meaningful national ownership should be reflected in the leadership role that national stakeholders should play in the coordination mechanisms established within the overall financial and management structure.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b8626e0d-44ff-4031-bb4f-3cec2b2ef673", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 19, + "Paragraph": "Institutional and management structures The core elements of a DDR financial and management structure should ideally include the following: a steering committee to provide overall strategic guidance and policy direction on DDR financing; ensure coherence with DDR strategy, priorities and programming framework; and ensure adequate coordination among key stakeholders (national actors, donors, UN agencies, the World Bank and other partners); a coordination committee to coordinate the overall programme of activities to be financed through the funding structure, monitor coherence of programme activities and funding structure objectives, and ensure that the programmes are coordinated with broader frameworks and processes (e.g., recovery and SSR), as well as the overall national pro- gramme and other initiatives taking place at the same time; a technical committee to provide general technical advice, carry out technical review of funding proposals and eligibility, and provide recommendations on the suitability of funding. The technical committee should include UN technical advisers, national rep- resentatives, donors and the chair of the steering committee; a project approval committee to examine and approve eligible funding proposals sub- mitted to the DDR funding structure, provide strategic guidance on the use of funds, and ensure coherence and coordination between the funding structure and national priorities; a secretariat to support the work of the committee through informational, administra- tive and secretarial responsibilities. The secretariat should also ensure adequate and consistent reporting on activities financed by the funding structure, as well as overall financial tracking. In certain cases, the secretariat could also be tasked with management of financial services such as procurement and contracting.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0c80a78d-b55d-4bd4-8806-42c6b33377e5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 19, + "Paragraph": "Administration of funds The organization responsible for the administration of funds is responsible for establishing and maintaining appropriate records and accounts to identify financial contributions to funds and arrangements established within the funding structure, as well as to identify the commitments to be financed out of the contributions, and the receipt and disbursement of these funds, in accordance with specified arrangements. If multiple mechanisms are established to manage receipt of funds (such as two separate trust funds covering different funding areas or funding sources), multiple administrative agents (AAs) will be required. To avoid confusion, the same standards and criteria for allo- cating, monitoring and reporting funds should be adopted.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1f736e04-5f51-421a-9bca-ff95e5bba0c0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 20, + "Paragraph": "Linking parallel funding mechanisms Given the complexity and scope of DDR interventions, as well as the range of stakeholders involved, parallel initiatives, both UN and non-UN, are inevitable. Links shall be created between the national and UN DDR frameworks to ensure that these do not duplicate or otherwise affect overall coherence. The basic requirement of good coordination between integrated and parallel processes is an agreement on common strategic, planning and policy frameworks, which should be based on national policy priorities, if they exist. Structurally, stakeholders involved in parallel initiatives should participate on the steering and coordi- nation committees of the DDR funding structure, even though the actual administration and management of funds takes place outside this framework. This will avoid duplication of efforts and ensure a link to operational coordination, and enable the development of an aggregated/consolidated overall budget and work plan for DDR. Normal parallel funding mechanisms include the following: Mission financing: Although the UN peacekeeping mission is a key component of the overall UN integrated structure for DDR, its main funding mechanism (assessed contri- butions) is managed directly by the mission itself in coordination with DPKO Head- quarters, and cannot be integrated fully into the DDR funding structure. For this reason, it should be considered a parallel funding mechanism, even though the DDR funding structure decides how funds are used and managed; Parallel agency funds: Certain agencies might have programmes that could support DDR activities (e.g., food assistance for ex-combatants as part of a broader food assistance programme), or even DDR projects that fall outside the overall integrated programme framework; Bilateral assistance funds: Some donors, particularly those whose bilateral aid agencies are active on post-conflict and/or DDR issues (such as USAID, DFID, CIDA, etc.) might choose to finance programmes that are parallel to integrated efforts, and which are directly implemented by national or sub-national partners. In this context, it is important to ensure that these donors are active participants in DDR and the funding structures involved, and to ensure adequate operational coordination (particularly to ensure that the intended geographic areas and beneficiaries are covered by the programme).", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f01f5861-6881-42b7-be6a-5b6e4ef0d6b2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 20, + "Paragraph": "Pooled funding Under this option, participating UN organizations pool funds together within one UN organization, chosen jointly by the coordination committee of the DDR financial management structure, which will assume the responsibility of administering the funds. This organization, known as the administrative agent (AA), will support the partners authorized to manage and implement the joint programme of activities identified for these funds. Programme and financial accountability for the UN support to the joint programme will rest with the AA. This fund management option is likely to be the most effective and efficient when participating UN organizations work for the same results with a common national or sub- national partner (e.g., department, provincial office, NGO) and/or in the same geographical area (see Annex D.1).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ce0f8598-5fa9-439d-977d-72e8b0bb2451", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 21, + "Paragraph": "Pass-through funding If the integrated DDR programme is made operational through an association between activi- ties and projects to be implemented and/or managed by identified UN agencies or other partners, funding can be still be channelled through a central mechanism. If the donor(s) and participating UN organizations agree to channel the funds through one participating UN organization, then the pass-through method is used. In such a case, the AA would be jointly selected by the DDR coordination committee. Programmatic and financial account- ability should then rest with the participating organizations and (sub-)national partners that are managing their respective components of the joint programme. This approach has the advantage of allowing funding of DDR on the basis of an agreed-upon division of labour within the UN system (see Annex D.2).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8e89cfe6-8506-4dfc-aca6-22e1832e8274", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 21, + "Paragraph": "Cost-sharing Cost-sharing is a procedure for receiving and managing funds for objectives, activities and results within a specific project or programme managed by a single UN agency. Given the relatively higher transaction costs involved in these arrangements, cost-sharing should be used exclusively for: specialized projects not foreseen in the initial programme document; smaller projects for implementation before the main funding mechanisms are established; funding with special arrangements; and projects that serve as a bridge to other processes and programmes and, therefore, require different management arrangements. Although funding is tied to specific projects and UN agencies in this method, its use should nonetheless be governed by the DDR coordination committee and the applicable criteria, procedures and reporting requirements.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6374f6c9-8436-4ad0-880b-9f572b62d88f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 7, + "Paragraph": "Trust funds A trust fund is a mechanism used to receive and manage donor funds to achieve a broad aim as opposed to carrying out a specific project. As such, it is established as a separate accounting entity with a designated trust fund manager (an AA, in this case), as well as a governance structure that decides on the allocation of received funding, and is responsible for monitoring and evaluating how funds have been used. When located within an overall funding structure, these structures would be linked or merged with the coordination com- mittee and its respective subsidiary organs. In general, funds channeled through a trust fund are not initially allocated to a particular project and can therefore later be allocated to spe- cific projects or activities working to achieve the broad aim of the programme, based on the discretion of the DDR funding structure and the programme of work the trust fund is supposed to support, which can be a part of the overall DDR programme (e.g., covering reintegration activities specifically). In the area of DDR, both the UN (through UNDP) and the World Bank have established and managed trust funds. Experience has shown that the use of trust funds for DDR offers several advantages, including: the ability to rapidly mobilize and disburse voluntary funding (especially where up- front financing is available); decentralized decision-making and management systems (where trust funds are country- specific); the capacity to ensure broad national oversight and ownership, through national leader- ship of the trust fund governance structure; the capacity to ensure sustainability and continuity (by not being linked to the opera- tional presence of any one organization); unified donor coordination and funding structures so that gaps and duplication in funding, and inconsistency in policy advice, are avoided; implementation and funding methods that create transparency and accountability and bring about efficient and prompt delivery.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a17c2467-ba7b-4b78-93c1-fd98fb37334b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 22, + "Paragraph": "Fund allocation criteria Funds will be allocated on the basis of a set of criteria dealing with programme objectives, activities and results, among others, which will be used by the technical and project appraisal committees when they consider individual requests for funding by UN agencies and other implementing partners. Criteria can vary depending on the funding mechanism (e.g., a reintegration trust fund will consider only those proposals directly centred on reintegration). Generic categories of criteria can include: links to the general thematic sector and/or programme objective(s); the capacity and demonstrated results of the proposing organization; the strength of the technical proposal; cost-efficiency; the involvement of national and local stakeholders; the results that can be achieved.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a0fc0757-7ac0-4358-a87d-644fe78309b8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.41-Finance-and-Budgeting", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.41-Finance-and-Budgeting", + "PageNum": 22, + "Paragraph": "Coordination of planning, monitoring and reporting In order to ensure that the DDR funding structure reflects the overall strategic direction and substantive content of the integrated DDR programme, all funding decisions and criteria should be based, as far as possible, on the planning, results, and monitoring and evaluation frameworks of the DDR programme and action plan. For this reason, DDR planning and programme officers should participate at all levels of the fund management structure, and the same information management systems should be used. Changes to programme strat- egy should be immediately reflected in the way in which the funding structure is organized and approved by the key stakeholders involved. With respect to financial monitoring and reporting, the members of the funding facility secretariat should maintain close links with the monitoring and evaluation staff of the integrated DDR section, and use the same metho- dologies, frameworks and mechanisms as much as possible.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "14a0eafa-09d1-4c8f-bb2b-77c6a7c98136", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": null, + "Paragraph": "Summary Creating an effective disarmament, demobilization and reintegration (DDR) unit requires paying careful attention to a set of multidimensional components and principles. The main components of an integrated DDR unit are: political and programme management; overall DDR planning and coordination; monitoring and evaluation; public information and sen sitization; administrative and financial management; and setting up and running regional DDR offices. Each of these components has specific requirements for appropriate and well trained personnel. As the process of DDR includes numerous crosscutting issues, personnel in an inte grated DDR unit include individuals from varying work sectors and specialities. Therefore, the selection and maintenance of integrated DDR unit personnel, based on a memorandum of understanding (MoU) between the Department of Peacekeeping Operations (DPKO) and the United Nations Development Programme (UNDP), is defined by the following principles: joint management of the DDR unit (in this case, management by a peacekeeping mission chief and UNDP chief); secondment of an administrative and finance cell by UNDP; second ment of staff from other United Nations (UN) entities assisted by project support staff to fulfil the range of needs for an integrated DDR unit; and, finally, continuous links with other parts of the peacekeeping mission for the development of a joint DDR planning and programming approach.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "56273030-3034-46ec-9aba-b35659cb5bcd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": null, + "Paragraph": "Module scope and objectives The aim of this module is to explain: the role of an integrated DDR unit in a peacekeeping mission; personnel requirements of the DDR unit; the recruitment and deployment process; training opportunities for DDR practitioners.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "749f6a73-5970-4ec1-adce-8df21c66f11f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": null, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of the abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. 1.20 \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c40e945a-8a4e-4c51-8457-d45890d6a30f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 4, + "Paragraph": "Introduction The success of a DDR strategy depends to a great extent on the timely selection and appoint ment of qualified, experienced and appropriately trained personnel deployed in a coherent DDR organizational structure. To ensure maximum cooperation (and minimize duplication) among the many UN agencies, funds and programmes working on DDR, the UN adopts an integrated approach towards the establishment of a DDR unit.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "95cb9b42-a622-4da3-b2c4-d694dc50fec6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 4, + "Paragraph": "Guiding principles The design of the personnel structure, and the deployment and management of personnel in the integrated unit and how they relate to others working in DDR are guided by the 2.10\tprinciples, key considerations and approaches defined in IDDRS 2.10 on the UN Approach to DDR. Of particular importance are: Unity of effort: The peacekeeping mission, UN agencies, funds and programmes should work together at all stages of the DDR programme \u2014 from planning to implementa tion to evaluation \u2014 to ensure that the programme is successful. An appropriate joint planning and coordination mechanism must be established as early as possible to ensure cooperation among all UN partners that may be involved in any aspect of the DDR programme; Integration: Wherever possible, and when consistent with the mandate of the Security Council, the peacekeeping mission and the UN agencies, funds and programmes shall support an integrated DDR unit, which brings together the expertise, planning and coordination capacities of the various UN entities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "ff61e251-b3c1-4fd9-a2e2-bd4231fe7384", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 4, + "Paragraph": "The aim of the integrated unit The aim of establishing an integrated unit is to ensure joint planning and coordination, and effective and efficient decentralized implementation. The integrated DDR unit also employs the particular skills and expertise of the different UN entities to ensure flexibility, responsiveness, expertise and success for the DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "40cc114e-4f48-437b-ab50-cc7a1cffdc0f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 4, + "Paragraph": "Components of the integrated DDR unit The integrated DDR unit, in general terms, should fulfil the following functions: Political and programme management: The chief and deputy chief of the integrated DDR unit are responsible for the overall political and programme management. Both the chief and his/her deputy will work to ensure that the DDR programme supports the overall peace process and mission objectives, and that there is close cooperation and collaboration with national stakeholders and other implementing partners, such as other UN entities, international organizations, nongovernmental organizations (NGOs) and the donor community; Overall DDR planning and coordination: This component of the DDR unit is responsible for the overall development of the DDR programme. Seconded personnel from UN agencies, funds and programmes will work in this section to contribute to the joint planning and coordination of the DDR programme. Attached military and police per sonnel from within the mission will also form part of this component; Disarmament and demobilization: This component will be responsible for the overall implementation and management of all aspects of the disarmament and demobilization phases of the DDR programme. This includes shortterm disarmament activities, such as weapons collection and registration, but also longerterm disarmament activities that support the establishment of a legal regime for the control of small arms and light weapons, and other community weapons collection initiatives. Where mandated, this component will coordinate with the military to assist in the destruction of weapons, ammunition and unexploded ordnance; Reintegration: This component plans the economic and social reintegration strategies. It also plans the reinsertion programme to ensure consistency and coherence with the overall reintegration strategy. It needs to work closely with other parts of the mission facilitating the return and reintegration of internally displaced persons (IDPs) and refugees; Monitoring and evaluation: This component is responsible for setting up and monitoring indicators to measure the achievements in all phases of the DDR programme. It also conducts DDRrelated surveys such as small arms baseline surveys, profiling of parti cipants and beneficiaries, mapping of economic opportunities, etc.; Public information and sensitization: This component works to develop the public informa tion and sensitization strategy for the DDR programme. It draws on the direct support of the public information unit in the peacekeeping mission, but also employs other information dissemination personnel within the mission, such as the military, police and civil affairs officers, as well as local mechanisms such as theatre groups, adminis trative structures, etc.; Administrative and financial management: This is a small component of the unit, which may be seconded from an integrating UN entity to support the programme delivery aspect of the DDR unit. Its role is to utilize the administrative and financial capacities of the UN country office; Regional DDR offices: These are the regional implementing components of the DDR unit, which would implement programmes at the local level in close cooperation with the other regionalized components of civil affairs, military, police, etc.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "31beca06-d57f-4dcf-b9ed-81d46a264432", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 5, + "Paragraph": "Principles of integration DPKO and UNDP are in the process of developing an MoU on the establishment of an integrated DDR unit in a peacekeeping mission. For the time being, the following principles shall guide the establishment of the integrated DDR unit: Joint management of the DDR unit: The chief of the DDR unit shall come from the peace keeping mission. His/Her post shall be funded from the peacekeeping assessed budget. The deputy chief of the integrated DDR unit shall be seconded from UNDP, although the peacekeeping mission will provide him/her with administrative and logistic support for him/her to perform his/her function as deputy chief of the DDR unit. Such integration allows the DDR unit to use the particular skills of both the mission and the country office, maximizing existing local knowledge and ensuring a smooth transition on DDRrelated issues when the mandate of the peacekeeping mission ends; Administrative and finance cell from UNDP: UNDP shall second a small administrative and finance cell from its country office to support the programme delivery aspects of the DDR component. The principles of secondment use for the deputy chief of the DDR unit shall apply; Secondment of staff from other UN entities: In order to maximize coherence and coordina tion on DDR between missions and UN agencies, staff members from other agencies may be seconded to specific posts in the integrated DDR unit. Use of this method ensures the active engagement and participation of UN agencies in strategic policy decisions and coordination of UN DDR activities (including both mission operational support and programme implementation). The integration and colocation of UN agency staff in this structure are essential, given the complex and highly operational nature of DDR. Decisions on secondment shall be made at the earliest stages of planning to ensure that the proper budgetary support is secure to support the integrated DDR unit and the seconded personnel; Project support units: Core UN agency staff seconded to the integrated DDR unit may be complemented by additional project support staff located in project support units (PSUs) in order to provide capacity (programme, monitoring, operations, finance) for implementing key elements of UN assistance within the national planning and pro gramme framework for DDR. The PSU will also be responsible for ensuring links and coordination with other agency programme areas (particularly in rule of law and security sector reform). Additional PSUs managed by other UN agencies can also be established, depending on the implementation/operational role attributed to them; Links with other parts of the peacekeeping mission: The integrated DDR unit shall be closely linked with other parts of the peacekeeping mission, in particular the military and the police, to ensure a \u2018joinedup\u2019 approach to the DDR programme.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "123dd998-7b26-49fc-bd49-0399f837c900", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 6, + "Paragraph": "Personnel requirements of the DDR unit In line with the wideranging functions of the integrated DDR unit, the list below gives typical (generic) appointments that may be made in a DDR unit. Regardless of the size of the DDR programme, appointments of staff concerned with joint planning and coordination will remain largely the same, although they need to be consistent with the specific DDR mandate provided by the Security Council. The regional offices and the personnel requirement in these offices will differ, however, according the size of the DDR programme. The list below provides an example of a relatively large mission DDR unit appointment list, which may be adapted to suit missionspecific needs. 2 x NS\tdrivers/interpreters", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "dca0ee90-9a64-4a63-9e18-79c3e03e3e26", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 8, + "Paragraph": "Recruitment and deployment process Given the breadth and scope of DDR activities, staff members may come from a number of sources such as: peacekeeping missions; UN agencies, funds and programmes; UN Headquarters; UN volunteer system; other international organizations (World Bank, European Union, Organization for Secu rity and Cooperation in Europe, etc.); local and international NGOs; the private sector.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d8ede8f3-ace8-4a99-b649-e31a8e3ea415", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 8, + "Paragraph": "Personnel Management and Support Service The Personnel Management and Support Service (PMSS) in the Office of Mission Support is responsible for the recruitment and deployment of staff in a peacekeeping mission, with the exception of staff seconded from UN agencies (who will follow their own recruitment procedures).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "22701237-3745-4cdc-9781-11969dcaf0cc", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 8, + "Paragraph": "Recruitment process The typical recruitment process for a staff member in the mission is as follows: candidate applies on line to a generic vacancy announcement in the Galaxy system (http://www.jobs.un.org); PMSS screens applications to select candidates who meet all the requirements of the post, and includes them in a roster of candidates for that occupational group/level; mission chief civilian personnel officer identifies the vacancy and requests recruitment action from PMSS; PMSS makes available to the mission rosters of prescreened and technically cleared candidates; mission programme manager interviews candidates and recommends selection; PMSS commences recruitment action (e.g., reference checks, offer of appointment, medical clearance, travel arrangements, etc.).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "3d38888a-7600-4d63-815a-759f49d74ff1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 9, + "Paragraph": "Staff induction plan At the planning stages of the mission, the DDR programme manager should develop the staff induction plan for the DDR unit. The staff induction plan specifies the recruitment and deployment priorities for the personnel in the DDR unit, who will be hired at different times during the mission startup period. The plan will assist the mission support compo nent to recruit and deploy the appropriate personnel at the required time. The following template may be used in the development of the staff induction plan:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8d6c44e4-d524-477c-95ae-6f3e757e8c42", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 9, + "Paragraph": "DDR training strategy A training strategy will be developed as soon as possible to assist staff members at every level in the DDR unit to advance their professional knowledge of DDR, and assist them to gain access to the more general leadership and management training available through the civilian training and development section.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e3ffd1b2-65e9-4a33-9372-a2a6cce7ed79", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile Chief, DDR Unit (D1\u2013P5) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent normally reports directly to the Deputy SRSG (Resident Coordinator/ Humanitarian Coordinator). Accountabilities: Within limits of delegated authority and under the supervision of the Deputy SRSG (Resident Coordinator/Humanitarian Coordinator), the Chief of the DDR Unit is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) provide effective leadership and ensure the overall management of the DDR Unit in all its components; provide strategic vision and guidance to the DDR Unit and its staff; coordinate activities among international and national partners on disarmament, demo bilization and reintegration; develop frameworks and policies to integrate civil society in the development and implementation of DDR activities; account to the national disarmament commission on matters of policy as well as peri odic updates with regard to the process of disarmament and reintegration; advise the Deputy SRSG (Humanitarian and Development Component) on various aspects of DDR and recommend appropriate action; advise and assist the government on DDR policy and operations; coordinate and integrate activities with other components of the mission on DDR, notably communications and public information, legal affairs, policy/planning, civilian police and the military component; develop resource mobilization strategy and ensure coordination with donors, includ ing the private sector; be responsible for the mission\u2019s DDR programme page in the UN DDR Resource Centre to ensure uptodate information is presented to the international community. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "23cf11e5-6ba1-4325-bff7-8150c4debdad", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Vision: Identifies and defines strategic direction for the unit\u2019s work programme; ability to recognize requirements and translate requirements into programmes and services that achieve objectives and goals. Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations; strong negotiating skills; proven critical thinking skills. Leadership: Proven ability to provide effective leadership and transfer advice and knowl edge to staff at all levels and from different national and cultural backgrounds. Managing performance: Proven effective supervisory skills; ability to mentor staff and provide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, coor dinate and monitor own work plan and provide advice and guidance to others. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/problems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes and services, offer new and different options to solve problems/meet client needs. Communications: Excellent communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating positions on issues, articulating options, concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Excellent interpersonal skills and the ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e7ee45e7-d8ba-4ef4-88bb-00982b957b50", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree (Masters or equivalent) in social sciences, manage ment, economics, business administration, international development or other relevant fields. Experience: Minimum of 10 years of progressively responsible professional experience in peacekeeping and peacebuilding operations in the field of DDR of excombatants, including extensive experience in working on small arms reduction programmes. Detailed knowledge of development process and postconflict related issues particularly on the DDR process. Additional experience in developing support strategies for IDPs, refugees, disaffected popu lations, children and women in postconflict situations will be valuable. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9fd4fe45-4c01-4c33-a149-6cf02eedf259", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile Deputy Chief, DDR Unit (P5\u2013P4) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent reports directly to the Deputy SRSG (Resident Coordinator/Humani tarian Coordinator). In most cases, the staff member filling this post would be seconded and paid for by UNDP. For duration of his/her secondment as Deputy Chief, he/she will receive administrative and logistic support from the peacekeeping mission. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Deputy Chief is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) assist Chief of DDR Unit in the overall management of the DDR Unit in all its components; support Chief of DDR Unit in the overall daytoday supervision of staff and field operations; support Chief of DDR Unit in the identification and development of synergies and partnerships with other actors (national and international) at the strategic, technical and operational levels; support Chief of DDR Unit in resource mobilization and ensure coordination with donors, including the private sector; provide technical advice and support to the national disarmament commission and programme as necessary; act as the programmatic linkage to the work of the UN country team on the broader reintegration and development issues of peacebuilding; provide overall coordination and financial responsibility for the programming and implementation of UNDP funds for disarmament and reintegration; oversee the development and coordination of the implementation of a comprehensive socioeconomic reintegration framework for members of armed forces and groups taking advantage of existing or planned recovery and reconstruction plans; oversee the development and coordination of the implementation of a comprehensive national capacity development support strategy focusing on weapons control, manage ment, stockpiling and destruction; support Chief of DDR Unit in all other areas necessary for the success of DDR activities. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "352ff7bf-f56b-42d1-8dea-d16fa9aadc35", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Vision: Identifies and defines strategic direction for the unit\u2019s work programme; ability to recognize requirements and translate requirements into programmes and services that achieve objectives and goals. Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations; strong negotiating skills; proven critical thinking skills. Leadership: Proven ability to provide effective leadership and transfer advice and knowl edge to staff at all levels and from different national and cultural backgrounds. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, coor dinate and monitor own work plan and provide advice and guidance to others. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/problems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes and services, offer new and diff erent options to solve problems/meet client needs. Communications: Excellent communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating positions on issues, articulating options concisely, conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Excellent interpersonal skills and the ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "740fde42-72d4-4934-86b4-6e5500c1f3a5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree (Masters or equivalent) in social sciences, manage ment, economics, business administration, international development or other relevant fields. Experience: Minimum of 10 years of progressively responsible professional experience in peacekeeping and peacebuilding operations in the field of DDR of excombatants, including extensive experience in working on small arms reduction programmes. Detailed knowledge of development process and postconflict related issues, particularly on the DDR process. Additional experience in developing support strategies for IDPs, refugees, disaffected popu lations, children and women in postconflict situations will be valuable. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a5832bfb-a97f-48b0-afe7-7203fa2f092a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile Senior Military DDR Officer (Lieutenant-Colonel/Colonel) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Senior Military DDR Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) support the overall DDR plan, specifically in the strategic, functional and operational areas relating to disarmament and demobilization; direct and supervise all military personnel appointed to the DDR Unit; ensure direct liaison and coordination between DDR operations and the military head quarters, specifically the Joint Operations Centre; ensure accurate and timely reporting of security matters, particularly those likely to affect DDR tasks; provide direct liaison, advice and expertise to the Force Commander relating to DDR matters; assist Chief of DDR Unit in the preparation and planning of the DDR strategy, provid ing military advice, coordination between subunits and civilian agencies; liaise with other mission military elements, as well as national military commanders and, where appropriate, those in national DDR bodies; supervise the development of appropriate mechanisms and systems for the registration and tracking of weapons collection, registration, storage and disposal/destruction, etc.; coordinate and facilitate the use of mission forces for the potential construction or development of DDR facilities \u2014 camps, reception centres, pickup points, etc. As required, facilitate security of such locations; assist in the coordination and development of DDR Unit mechanisms for receiving and recording group profile information, liaise on this subject with the military information unit; liaise with military operations for the deployment of military observers in support of DDR tasks; be prepared to support security sector reform linkages and activities in future mission planning; undertake such other tasks as may be reasonably requested by the Force Commander and Chief of DDR Unit in relation to DDR activities. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "379fc98b-1e65-40c4-980b-082e5bb1af8e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Should be formally staff trained and command qualified. Ideally experi enced in other peacekeeping operations, specifically in relation to DDR activities. The selected candidate should be well acquainted with regional and subregional conflict/political issues and ideally have knowledge of the specific mission background. Managing performance: Proven effective command and supervisory skills; ability to mentor staff and provide guidance and support. Must be capable of working within a multiagency integrated team. The candidate would benefit from CIMIC experience and should have an understanding of the nature, capacities and limitations of nonUN agencies, NGOs, etc. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness, sound judgement and decisionmaking skills. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/problems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Excellent and effective communication (verbal and written) skills, includ ing ability to prepare reports and conduct presentations by clearly formulating positions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Excellent interpersonal skills; ability to establish and maintain effective work ing relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5b0d4965-8445-4415-9b3a-24221f2c3fbb", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education and work experience: Graduate of Military Command and Staff College. A minimum of 15 years of progressive responsibility in military command appointments, preferably to include peacekeeping and peacebuilding operations in the field of DDR of excombatants. Detailed knowledge of development process and postconflict related issues, particularly on the DDR process. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9b21ce20-69d2-44bd-a83c-10aea165460f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Field Officer (P4\u2013P3) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the DDR Field Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) be in charge of the overall planning and implementation of the DDR programme in his/her regional area of responsibility; act as officer in charge of all DDR staff members in the regional office, including the administration and management of funds allocated to achieve DDR programme in the region; be responsible for the daytoday coordination of DDR operations with other mission components in the regional office and other UN entities; identify and develop synergies and partnerships with other actors (national and inter national) in his/her area of responsibility; provide technical advice and support to regional and local DDR commissions and offices, as appropriate; be responsible for regular reporting on the situation pertaining to the armed forces and groups in his/her area of responsibility and progress on the implementation of the DDR strategy. Prepare and contribute to the preparation of various reports and documents. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "51b853d3-63fa-43a1-9ea4-f683e4288fd3", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and provide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "568abcd7-79b9-4e8b-8f25-c2bb7fb5a4a5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Experience: Minimum of five years of substantial experience working on postconflict, crisis and economic recovery issues. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "098fcfb6-697e-412e-95d9-266a51b6bf7b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Field Officer (UNV) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within the limits of delegated authority and under the supervision of the Regional DDR Officer, the DDR Field Officer (UNV) is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) assist the DDR Field Officer in the planning and implementation of one aspect of the DDR programme in his/her regional area of responsibility; be responsible for the daytoday coordination of DDR operations with other mission components in the regional office and other UN entities on the specific area of respon sibility; identify and develop synergies and partnerships with other actors (national and inter national) in his/her area of responsibility; provide technical advice and support to regional and local DDR commissions and offices, as appropriate; be responsible for regular reporting on the situation pertaining to the armed forces and groups in his/her area of responsibility and progress on the implementation of the DDR strategy. Prepare and contribute to the preparation of various reports and documents.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "26333821-b609-4d7c-875f-9c6549b9a232", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Core values are integrity, professionalism and respect for diversity. Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "95dc9153-c51f-4ffe-a544-91e7cc4bc228", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of three years of substantial experience working on postconflict, crisis and economic recovery issues. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2ba79199-b73a-41e5-99ca-ff7285c46238", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Programme Officer (UNV) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit and DDR Field Coordinator, the DDR Programme Officer is respon sible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) work with local authorities and civil society organizations to facilitate and implement all aspects of the DDR programme represent the DDR Unit in mission internal regional meetings; work closely with DDR partners at the regional level to facilitate collection, safe storage and accountable collection of small arms and light weapons. Ensure efficient, account able and transparent management of all field facilities pertaining to communityspecific DDR projects; plan and support activities at the regional level pertaining to the community arms col lection and development including: (1) capacitybuilding; (2) sensitization and public awarenessraising on the dangers of illicit weapons circulating in the community; (3) implementation of community project; monitor, evaluate and report on all field project activities; monitor and guide field staff working in the project, including the coordination of sensitization and arms col lection activities undertaken by Field Assistants at regional level; ensure proper handling of project equipment and accountability of all project resources. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5427dc2c-176f-4662-be33-7b4ca1bd79f1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1871df85-8e07-4ffb-899b-beb758f602aa", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on postconflict, crisis and economic recovery issues. Experience with local development, microcredit and participatory approaches essential. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a1325f80-b4df-49d4-88e5-94c4c0be1be6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Monitoring and Evaluation Officer (P2\u2013UNV) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Monitoring and Evaluation Officer is responsible for the follow ing duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) develop monitoring and evaluation criteria for all aspects of disarmament and reinte gration activities, as well as an overall strategy and monitoring calendar; establish baselines for monitoring and evaluation purposes in the areas related to disarmament and reintegration, working in close collaboration with the disarmament and reintegration officers, to allow for effective evaluations of programme impact; undertake periodic reviews of disarmament and reintegration activities to assess effec tiveness, efficiency, achievement of results and compliance with procedures; develop a field manual on standards and procedures for use by local partners and executing agencies, and organize training; undertake periodic field visits to inspect the provision of reinsertion benefits and the implementation of reintegration projects, and reporting; develop recommendations on ongoing and future activities, lessons learned, modifica tions to implementation strategies and arrangements with partners. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "72c3ce02-3853-4705-91e7-69867edcba3a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7252fb7b-3716-4a7d-b424-97907b36b0cd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of three years of substantial experience working on postconflict, crisis and economic recovery issues. Experience in resultsoriented programming and moni toring and evaluation. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9e2d4ab6-26da-46c4-a031-b4a615343baf", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Officer (P4\u2013P3, International) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the DDR Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) support the Chief and Deputy Chief of the DDR Unit in operational planning for the disarmament, demobilization and reintegration, including developing the policies and programmes, as well as implementation targets and work plans; undertake negotiations with armed forces and groups in order to create conditions for their entrance into the DDR programme; undertake and organize risk and threat assessments, target group profiles, political fac tors, security, and other factors affecting operations; undertake planning of weapons collection activities, in conjunction with the military component of the peacekeeping mission; undertake planning and management of the demobilization phase of the programme, which may include camp management, as well as shortterm transitional support to demobilized combatants; provide support for the development of joint programming frameworks on reintegration with the government and partner organizations, taking advantage of opportunities and synergies with economic recovery and community development programmes; assist in the development of criteria for the selection of partners (local and interna tional) for the implementation of reinsertion and reintegration activities; liaise with other national and international actors on activities and initiatives related to reinsertion and reintegration; supervise the development of appropriate mechanisms and systems for the registration and tracking of beneficiaries for reinsertion and reintegration, as well as mapping of socioeconomic opportunities in other development projects, employment possibili ties, etc.; coordinate and facilitate the participation of local communities in the planning and implementation of reintegration assistance, using existing capacities at the local level and in close synergy with economic recovery and local development initiatives; liaise closely with organizations and partners to develop assistance programmes for vulnerable groups, e.g., women and children; facilitate the mobilization and organization of networks of local partners around the goals of socioeconomic reintegration and economic recovery, involving local NGOs, communitybased organizations, private sector enterprises, and local authorities (com munal and municipal); supervise the undertaking of studies to determine reinsertion and reintegration benefits and implementation modalities; ensure good coordination and information sharing with implementation partners and other organizations, as well as with other relevant sections of the mission; ensure that DDR activities are well integrated and coordinated with the activities of other mission components (particularly communication and public information, mis sion analysis, political, military and police components); perform a liaison function with other national and international actors in matters related to DDR; support development of appropriate legal frameworks on disarmament and weapons control. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "da1b5af6-a8ca-4d5e-8e45-1f18a191b2be", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and provide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "c47d01ef-2029-4956-b42c-2b8f61db6cca", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on postconflict, crisis and economic recovery issues. Experience with local development, microcredit and participatory approaches essential. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "07d3d927-767a-49c9-a9d0-2e8be2aac2f5", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile Reintegration Officer (P4\u2013P3, International) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Reintegration Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. There fore, incumbents may carry out most, but not all, of the functions listed.) support the development of the registration, reinsertion and reintegration component of the disarmament and reintegration programme, including overall framework, imple mentation strategy, and operational modalities, respecting national programme priori ties and targets; supervise field office personnel on work related to reinsertion and reintegration; assist in the development of criteria for the selection of partners (local and interna tional) for the implementation of reinsertion and reintegration activities; liaise with other national and international actors on activities and initiatives related to reinsertion and reintegration; supervise the development of appropriate mechanisms and systems for the registration and tracking of beneficiaries for reinsertion and reintegration, as well as mapping of socioeconomic opportunities in other development projects, employment possibili ties, etc.; coordinate and facilitate the participation of local communities in the planning and implementation of reintegration assistance, using existing capacities at the local level and in close synergy with economic recovery and local development initiatives; liaise closely with organizations and partners to develop assistance programmes for vulnerable groups, e.g., women and children; facilitate the mobilization and organization of networks of local partners around the goals of socioeconomic reintegration and economic recovery, involving local NGOs, communitybased organizations, private sector enterprises and local authorities (com munal and municipal); supervise the undertaking of studies to determine reinsertion and reintegration benefits and implementation modalities. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d2c316ca-e46b-4bb8-ba61-6b7df49dd6dd", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs; Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "253964b9-3d2d-434f-94ef-5bf1247ebc9b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on postconflict, crisis and economic recovery issues. Experience with local development, microcredit and participatory approaches essential. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b4c75a65-fb0c-49a8-87b1-211223809ec0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Field Coordination Officer (National) Under the overall supervision of the Chief of DDR Unit and working closely with the DDR Officer, the Field Coordination Officer carries out the work, information feedback and coordination of field rehabilitation and reintegration activities. The Field Coordination Officer will improve field supervision, sensitization, monitoring and evaluation mechanisms. He/she will also assist in strengthening the working relationships of DDR staff with other peacekeeping mission substantive sections in the field. He/she will also endeavour to strengthen, coordination and collaboration with government offices, the national commis sion on DDR (NCDDR), international NGOs, NGOs (implementing partners) and other UN agencies working on reintegration in order to unify reintegration activities. The Field Coordination Officer will liaise closely with the DDR Officer/Reintegration Officer and undertake the following duties: assist and advise DDR Unit in areas within his/her remit; provide direction and support to field staff and activities; carry out monitoring, risk assessment and reporting in relation to the environment and practices that bear on the security of staff in the field (physical security, accommo dation, programme fiscal and procurement practices, transport and communications); support the efficient implementation of all DDR coordination projects; develop and sustain optimal information feedback, in both directions, between the field and Headquarters; support the DDR Unit in the collection of programme performance information, pro gress and impact assessment; collect the quantitative and qualitative information on programme implementation; carry out followup monitoring visits on activities of implementing partners and regional offices; liaise with excombatants, beneficiaries, implementing partners and referral officer for proper sensitization and reinforcement of the programme; create efficient early warning alert system and rapid response mechanisms for \u2018hot spot\u2019 development; ensure DDR coordination programmes complement each other and are implemented efficiently; support liaison with the NCDDR and other agencies in relation to the reintegration of excombatants, CAAFG, WAAFG and waraffected people in the field; provide guidance and ontheground support to reintegration officers ; liaise with Military Observers, Reintegration Unit and UN Police in accordance with the terms of reference; liaise and coordinate with civil affairs section in matters of mutual interest; carry out any other duties as directed by the DDR Unit.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "336c9dac-dd9d-4289-aaa2-c078fe26eab0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic Job Profile Small Arms and Light Weapons Officer (P4\u2013P3) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the Small Arms and Light Weapons Officer is responsible for the follow ing duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) formulate and implement, within the DDR programme, a small arms and light weapons (SALW) reduction and control project for the country in support of the peace process; coordinate SALW reduction and control activities taking place in the country and among the parties, the national government, civil society and the donor community; provide substantive technical inputs and advice to the Chief of the DDR Unit and the national authorities for the development of national legal instruments for the control of SALW; undertake broad consultations with relevant stakeholders through inclusive and par ticipatory processes through communitybased violence and weapons reduction pro gramme; manage the collection of data on SALW stocks during the disengagement and DDR processes; develop targeted training programmes for national institutions on SALW; liaise closely with the gender and HIV/AIDS adviser in the mission or these capacities seconded to the DDR Unit by UN entities to ensure that gender issues are adequately reflected in policy, legislation, programming and resource mobilization, and develop strategies for involvement of women in small arms management and control activities; ensure timely and effective delivery of project inputs and outputs; undertake continuous monitoring of project activities; produce toplevel progress and briefing reports; support efforts in resource mobilization and development of strategic partnerships with multiple donors and agencies. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "42487cee-101c-4672-aba2-3ccad6ce629c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Vision: An indepth understanding of the unit\u2019s strategic direction and ability to transform it into a resultsoriented work programme. Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Leadership: Proven ability to provide effective leadership and transfer advice and knowl edge staff at all levels and from different national and cultural backgrounds. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness, sound judgement and decisionmaking skills. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Excellent and effective communication (verbal and written) skills, includ ing ability to prepare reports and conduct presentations by clearly formulating positions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Excellent interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity. Negotiation skills: Effective negotiating skills and ability to work with others to reach mutually benefiting and lasting understanding.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4af21563-1925-4788-af01-0d4f3675f598", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on postconflict, progressive national and international experience and knowledge in development work, with specific focus on disarmament, demobilization, reintegration and small arms control programmes. An understanding of the literature on DDR and security sector reform. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0caccaf5-422a-42ef-907c-4be170828d9b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR Gender Officer (P3\u2013P2) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. This staff member is expected to be seconded from a UN specialized agency working on mainstreaming gender issues in postconflict peacebuilding, and is expected to work closely with the Gender Adviser of the peace keeping mission. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the DDR Gender Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) ensure the full integration of gender through all DDR processes (including small arms) in the DDR programme; provide close coordination and technical support to national institutions for DDR, particularly Offices of Gender, Special Groups and Reintegration; provide support to decisionmaking and programme formulation on the DDR pro gramme to ensure that gender issues are fully integrated and that the programme promotes equal involvement and access of women; undertake ongoing monitoring and evaluation of the DDR process to ensure applica tion of principles of gender sensitivity as stated in the peace agreement; provide support to policy development in all areas of DDR to ensure integration of gender; develop mechanisms to support the equal access and involvement of female combatants in the DDR process; take the lead in development of advocacy strategies to gain commitment from key actors on gender issues within DDR; support national parties in coordinating the profiling, documentation and dissemina tion of data and issues relating to the presence and role of women and girls associated with the armed forces and groups, and militias; review the differing needs of male and female excombatants during communitybased reintegration, including analysis of reintegration opportunities and constraints, and advocate for these needs to be taken into account in DDR and communitybased re integration programming; prepare and provide briefing notes and guidance for relevant actors, including national partners, UN agencies, international NGOs, donors and others, on gender in the con text of DDR; provide technical support and advice on gender to national partners on policy devel opment related to DDR and human security; develop tools and other practical guides for the implementation of gender within DDR and human security frameworks; assist in the development of capacitybuilding activities for the national offices drawing on lessons learned on gender and DDR in the region, and facilitating regional resource networks on these issues; participate in field missions and assessments related to human security and DDR to advise on gender issues. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7a64abe6-58d1-4c61-8e40-97540c70443f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and respect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "61f4099e-7846-43ea-a7e8-36844abae706", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on gender issues in postconflict, crisis and economic recovery issues. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5ec3085d-a034-4d32-b22c-8c83fdc33f0a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Draft generic job profile DDR HIV/AIDS Officer (P3\u2013P2) Organizational setting and reporting relationship: These positions are located in peace operations. Depending on the organizational structure of the mission and location of the post, the incumbent may report directly to the Chief of the DDR Unit or to a senior official in charge of DDR activities in a field location. This staff member is expected to be seconded from a UN specialized agency working on mainstreaming activities to deal with the HIV/ AIDS issue in postconflict peacebuilding, and is expected to work closely with the HIV/ AIDS adviser of the peacekeeping mission. Accountabilities: Within limits of delegated authority and under the supervision of the Chief of the DDR Unit, the DDR HIV/AIDS Officer is responsible for the following duties: (These functions are generic and may vary depending on the mission\u2019s mandate. Therefore, incumbents may carry out most, but not all, of the functions listed.) ensure the full integration of activities to address the HIV/AIDS issue through all phases of the DDR programme; provide close coordination and technical support to national institutions for DDR, par ticularly offices of HIV/AIDS reintegration; support national parties in coordinating the profiling, documentation and dissemina tion of data and issues relating to the presence and role of women and girls associated with the armed forces and groups; document and disseminate data and issues relating to HIV/AIDS as well as the factors fuelling the epidemic in the armed forces and groups; prepare and provide briefing notes and guidance for relevant actors including national partners, UN agencies, international NGOs, donors and others on gender and HIV/ AIDS in the context of DDR; provide technical support and advice on HIV/AIDS to national partners on policy development related to DDR and human security; develop tools and other practical guides for the implementation of HIV/AIDS strategies within DDR and human security frameworks; generate effective resultsoriented partnerships among different partners, civil society and communitybased actors to implement a consolidated response to HIV/AIDS within the framework of the DDR programme. Core values are integrity, professionalism and respect for diversity.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e6838ebe-b8cd-4a0d-8460-4ba9a33b561e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 12, + "Paragraph": "Competencies Professionalism: Proven expertise in area of assignment; indepth understanding of and an ability to evaluate international political situations in that area; experience in bilateral and multilateral negotiations. Managing performance: Proven effective supervisory skills; ability to mentor staff and pro vide guidance and support. Planning and organizing: Proven ability to establish priorities and to plan, organize, co ordinate and monitor own work plan and provide advice and guidance to others; indepth understanding of division\u2019s strategic direction; resourcefulness. Judgement/Decision-making: Demonstrated sound judgement in resolving issues/prob lems; ability to proactively seek and recommend sound policy initiatives. Creativity: Ability to actively seek to improve programmes/services, offer new and different options to solve problems/meet client needs. Communications: Welldeveloped and effective communication (verbal and written) skills, including ability to prepare reports and conduct presentations by clearly formulating posi tions on issues, articulating options concisely conveying maximum necessary information, making and defending recommendations; diplomacy and tact; ability to convey difficult issues and positions to senior officials. Teamwork: Proven interpersonal skills; ability to establish and maintain effective working relations with people in a multicultural, multiethnic environment with sensitivity and re spect for diversity.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "16ed6bee-46fc-432d-a308-3d8ba372706a", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.42-Personnel-and-Staffing", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.42-Personnel-and-Staffing", + "PageNum": 13, + "Paragraph": "Qualifications Education: Advanced university degree in social sciences, management, economics, business administration, international development or other relevant fields. A relevant combination of academic qualifications and experience in related areas may be accepted in lieu of the advanced degree. Work experience: Minimum of five years of substantial experience working on gender issues in postconflict, crisis and economic recovery issues. Languages: Fluency in oral and written English and/or French, depending on the working language of the mission; knowledge of a second UN official language may be a requirement for a specific post.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7dab686c-fa8b-47b0-b103-005f716c876b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": null, + "Paragraph": "Summary Monitoring and evaluation (M&E) has been one of the weakest areas of disarmament, demo bilization and reintegration (DDR) programme management in the past, partly due to a lack of proper planning, a standardized M&E framework, and human and financial resources specifically dedicated to M&E. Past experiences have highlighted the need for more effective M&E in order to develop an effective, efficient and sustainable DDR programme that will achieve the objectives of improving stability and security. M&E is an essential management tool and provides a chance to track progress, improve activities, objectively verify the outcomes and impact of a programme, and learn lessons that can be fed into future programmes and policies. This module outlines standards for improving interagency cooperation in designing and conducting effective M&E. It further shows how M&E can be planned and implemented effectively through a creation of a DDR specific M&E work plan, which consists of a plan for data collection, data analysis and reporting. It also provides some generic M&E indicators within a resultsmanagement frame work, which can be modified and adapted to each programme and project.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ab60e014-fb5e-4c86-92be-87ec45dfa7c1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": null, + "Paragraph": "Module scope and objectives These guidelines cover the basic M&E procedures for integrated DDR programmes. The purpose of these guidelines is to establish standards for managing the implementation of integrated DDR projects and to provide guidance on how to perform M&E in a way that will make project management more effective, lead to followup and make reporting more consistent.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "42aab5bd-6704-49d1-95e9-8f07f3b067d9", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 16, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A com plete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d 1.20", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9261dd46-e43a-4811-9a8e-c8533500b60f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 4, + "Paragraph": "Introduction Traditionally, M&E in DDR programmes has focused on assessing inputs and implemen tation processes. Today, the focus is on assessing how various factors contribute to or detract from the achievement of the proposed outcomes and programme objectives, and measur ing the effectiveness of outputs, partnerships, policy advice and dialogue, advocacy, and brokering/coordination. The main objectives of resultsoriented M&E are to: increase organizational and development learning; ensure informed decisionmaking; support genuine accountability and ensure quality control; contribute to the further development of best practice and policy; build country capacities, especially in M&E. In order to enable programme managers to improve strategies, programmes and other activities, M&E aims to generate information in several key areas to allow the measure ment of: programme performance, which indicates whether programme implementation is pro ceeding in accordance with the programme plan and budget; programme effectiveness, which answers such questions as whether and to what extent the programme has achieved its objectives, and on what external conditions it depends; programme efficiency, which determines whether programme outputs and outcomes were produced in the most economical way, i.e., by maximizing outputs and/or mini mizing inputs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "36827bfa-654f-40fc-9e38-c375e2e4c9a0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 4, + "Paragraph": "Guiding principles When developing an M&E strategy as part of the overall process of programme development, several important principles are relevant for DDR: Planners shall ensure that baseline data (data that describes the problem or situation before the intervention and which can be used to later provide a point of comparison) and relevant performance indicators are built into the programme development process itself. Baseline data are best collected within the framework of the comprehensive assess ments that are carried out before the programme is developed, while performance indicators are defined in relation to both baseline data and the outputs, activities and outcomes that are expected; The development of an M&E strategy and framework for a DDR programme is essen tial in order to develop a systematic approach for collecting, processing, and using data and results; M&E should use information and data from the regular information collection mech anisms and reports, as well as periodic measurement of key indicators; Monitoring and data collection should be an integral component of the information management system for the DDR process, and as such should be made widely available to key DDR staff and stakeholders for consultation; M&E plans specifying the frequency and type of reviews and evaluations should be a part of the overall DDR work planning process; A distinction should be made between the evaluation of UN support for national DDR (i.e., the UN DDR programme itself) and the overall national DDR effort, given the focus on measuring the overall effectiveness and impact of UN inputs on DDR, as opposed to the overall effectiveness and impact of DDR at the national level; All integrated DDR sections should make provision for the necessary staff, equipment and other requirements to ensure that M&E is adequately dealt with and carried out, independently of other DDR activities, using resources that are specifically allocated to this purpose.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c6322a11-be7a-4e31-b7a6-1fce6031eba6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 5, + "Paragraph": "Developing an M&E strategy and framework for DDR M&E is far more than periodic assessments of performance. Particularly with complex processes like DDR, with its diversity of activities and multitude of partners, M&E plays an important role in ensuring constant qual ity control of activities and processes, and it also provides a mechanism for periodic evaluations of performance in order to adapt strategies and deal with the problems and bottlenecks that inevitably arise. Because of the political importance of DDR, and its po tential impacts (both positive and negative) on both security and prospects for develop ment, impact assessments are essential to ensuring that DDR contributes to the overall goal of improving stability and security in a particular country. The definition of a comprehensive strat egy and framework for DDR is a vital part of the overall programme implementation process. Although strategies will differ a great deal in different contexts, key guiding questions that should be asked when designing an effec tive framework for M&E include: What objectives should an M&E strategy and framework measure? What elements should go into a work plan for reporting, monitoring and evaluating performance and results? What key indicators are important in such a framework? What information management systems are necessary to ensure timely capture of appro priate data and information? How can the results of M&E be integrated into programme implementation and used to control quality and adapt processes? The following section discusses these and other key elements involved in the develop ment of an M&E work plan and strategy.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ac83f7d5-dd33-4388-9853-c9394c0908f2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 5, + "Paragraph": "M&E and results-based management M&E is an essential part of the resultsbased approach to implementing and managing programmes. It allows for the measurement of progress made towards achieving outcomes and outputs, and assesses the overall impact of programme on security and stability. In the context of DDR, M&E is particularly important, because it helps keep track of a complex range of outcomes and outputs in different components of the DDR mission, and assesses how each contributes towards achieving the goal of improved stability and security. M&E also gives a longitudinal assessment of the efficiency and effectiveness of the strat egies, mechanisms and processes carried out in DDR. For the purposes of integrated DDR, M&E can be divided into two levels related to the resultsbased framework: measurement of the performance of DDR programmes in achieving outcomes and outputs throughout its various components generated by a set of activities: disarma ment (e.g., number of weapons collected and destroyed); demobilization (number of excombatants screened, processed and assisted); and reintegration (number of ex combatants reintegrated and communities assisted); measurement of the outcomes of DDR programmes in contributing towards an overall goal. This can include reductions in levels of violence in society, increased stability and security, and consolidation of peace processes. It is difficult, however, to determine the impact of DDR on broader society without isolating it from other processes and initiatives (e.g., peacebuilding, security sector reform [SSR]) that also have an impact.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d05637dd-ab21-4b39-8fb6-b7145085fb50", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 7, + "Paragraph": "Integrating M&E in programme development and implementation Provisions for M&E, and in particular the key elements of a strategy and framework, should be integrated into the programme development and implementation process from the beginning. This should occur in the following ways: Performance indicators relevant for M&E should be identified, together with the devel opment of a baseline study and indicators framework for the comprehensive assessment, as well as the results framework for the DDR programme itself (see IDDRS 3.20 on DDR Programme Design for advice on the development of a results framework); Requirements for establishing and implementing an M&E system should be taken into consideration during the identification of programme requirements, including dedicated staff, material and information management systems; Key aspects of the M&E system and activities should be developed and harmonized with the overall programme implementation cycle and included in the corresponding work plans; Programme implementation methods should be designed to permit the analysis and incorporation of M&E results into planning and coordination of activities in order to provide programmes with the capacity to modify the implementation approach based on M&E results and lessons learned.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "14155340-e009-4679-b5ae-30c6a5592c2e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 7, + "Paragraph": "The M&E work plan An M&E work plan can be integrated into general or specific programme implementation work plans, or can be designed separately. In general, implementing and supervising the implementation of such a work plan is the basic responsibility of the M&E officer respon sible for this process. Key elements of an M&E work plan include the following, which are usually arranged in the form of a matrix: 3.20", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f305246-254a-4b89-bfad-441c4edfffa0", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 8, + "Paragraph": "M&E tracking systems Given the potentially large number of reports and documents generated by M&E activities, the development and maintenance of a reporttracking system is essential in order to pro vide a \u2018history\u2019 of M&E results and make them accessible to managers. This provides the DDR programme with institutional memory that can be drawn from to monitor progress and ensure that emerging best practices and problems are identified.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "310b1f16-83d9-409b-89c7-cd0ab6ff465f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 8, + "Paragraph": "Development of M&E indicators Indicators are variables (i.e., factors that can change, e.g., number of weapons collected) that should be measured to reveal progress (or lack thereof) towards the achievement of objectives, outcomes or outputs, and should provide information on what has been achieved in either quantitative or qualitative terms, or changes over time. In order for indicators to be meaningful, measurement must be made against a baseline, or baseline data, both of which are collected either in the context of the preprogramme comprehensive assessment or during programme implementation. In general, most indicators should be developed together with the definition of programme activities, outputs, outcomes, objectives and goals. In general, indicators can be classified as follows: Performance indicator: A particular characteristic or dimension used to measure intended changes defined by a programme results framework. Performance indicators are used to observe progress and to measure actual outputs and outcomes compared to those that were expected. They indicate \u2018how, \u2018whether\u2019 or \u2018to what extent\u2019 a unit is pro gressing towards its objectives, rather than \u2018why\u2019 or \u2018why not\u2019 such progress is being made. Performance indicators are usually expressed in quantifiable terms, and should be objective and measurable (e.g., numeric values, percentages, scores and indices); Impact indicator: A variable or set of variables used to measure the overall and long term impact of an intervention, i.e., overall changes in the environment that DDR aims to influence. Impact indicators often use a composite set (or group) of indicators, each of which provides information on the size, sustainability and consequences of a change brought about by a DDR intervention. Such indicators can include both quan titative variables (e.g., change in homicide levels or incidence of violence) or qualitative variables (e.g., behavioural change among reintegrated excombatants, social cohesion, etc.). Impact indicators depend on comprehensive and reliable baseline data, and should be as specific in possible in order to isolate the impact of DDR on complex social and economic dynamics from other factors and processes; Proxy indicators: Cost, complexity and/or the timeliness of data collection may prevent a result from being measured directly. In this case, proxy indicators \u2014 which are variables that substitute for others that are difficult to measure directly \u2014 may reveal performance trends and make managers aware of potential problems or areas of success. This is often the case for outcomes in behavioural change, social cohesion and other results that are difficult to measure.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "32e92671-8eca-4f3f-bf0b-ea002b6d3326", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 8, + "Paragraph": "Balanced scorecards The balanced scorecard is a useful tool for capturing key indicators for M&E activities. It lists the main indicators used to measure progress in the implementation of different pro gramme components, as well as overall effectiveness. Annex B provides an example of a balanced scorecard used in the Afghanistan DDR programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2b12aa55-6e32-4961-9b07-5f49f09b6002", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 6, + "Paragraph": "Monitoring Monitoring is the systematic oversight of the implementation of an activity, and establishes the extent to which input deliveries, work schedules, other required actions and targeted outputs are proceeding according to the actual plan, so that timely action can be taken to correct deficiencies. The application of monitoring mechanisms and tools, the reporting of outcomes, and subsequent adjustments in the implementation process are an integral part of the programme cycle and a key management tool.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "594a5f36-09dc-48bf-8526-65c116ce4308", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 9, + "Paragraph": "Monitoring mechanisms and tools Three types of monitoring mechanisms and tools can be identified, which should be planned as part of the overall M&E work plan: reporting/analysis, which entails obtaining and analysing documentation from the project that provides information on progress; validation, which involves checking or verifying whether or not the reported progress is accurate; participation, which involves obtaining feedback from partners and participants on pro gress and proposed actions. The table below lists the different types of monitoring mechanisms and tools according to these categories, while Annex C provides illustrations of monitoring tools used for DDR in Afghanistan. Source: UNDP Evaluation Handbook Monitoring indicators1 Although the definition of monitoring indicators will differ a great deal according to both the context in which DDR is implemented and the DDR strategy and components, certain generic (general or typical) indicators should be identified that can guide DDR managers to establish monitoring mechanisms and systems. These indicators should aim to measure performance in terms of outcomes and outputs, effectiveness in achieving programme objec tives, and the efficiency of the performance by which outcomes and outputs are achieved (i.e., in relation to inputs). (See IDDRS 5.10 on Women, Gender and DDR, Annex D, sec. 4 for genderrelated and femalespecific monitoring and evaluation indicators.) These indica tors can be divided to address the main components of DDR, as follows: 5.10", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "32973d14-ea2e-4b80-b4e0-88ddb62e843d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 11, + "Paragraph": "6.3. Use of monitoring results In general, the results of monitoring activities and tools should be used in three different ways to improve overall programme effectiveness and increase the achievement of objec tives and goals: Programme management: Monitoring outputs and outcomes for specific components or activities can provide important information about whether programme implementa tion is proceeding in accordance with the programme plan and budget. If results indicate that implementation is \u2018off course\u2019, these results provide DDR management with infor mation on what corrective action needs to be taken in order to bring implementation back into conformity with the overall programme implementation strategy and work plan. These results are therefore an important management tool; Revision of programme strategy: Monitoring results can also provide information on the relevance or effectiveness of an existing strategy or course of action to produce specific outcomes or achieve key objectives. In certain cases, such results can demonstrate that a given course of action is not producing the intended outcomes and can provide DDR managers with an opportunity to reformulate or revise specific implementation strategies and approaches, and make the corresponding changes to the programme work plan. Examples include types of reintegration assistance that are not viable or appro priate to the local context, and that can be corrected before many other excombatants enter similar schemes; Use of resources: Monitoring results can provide important indications about the effi ciency with which resources are used to implement activities and achieve outcomes. Given the large scale and number of activities and subprojects involved in DDR, overall costeffectiveness is an essential element in ensuring that DDR programmes achieve their overall objectives. In this regard, accurate and timely monitoring can enable programme managers to develop more costeffective or efficient uses and distri bution of resources.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "369a69f5-421e-499d-9f3d-0c5b13d5341b", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 5, + "Paragraph": "Evaluations As described earlier, evaluations are a method of systematically and objectively assessing the relevance, efficiency, sustainability, effectiveness and impact of ongoing and completed programmes and projects. Evaluation is carried out selectively to answer questions that will guide decision makers and/or programme managers. It is a valuable strategic manage ment tool enabling DDR managers and policy makers to assess the overall role and impact of DDR in a postconflict setting, make strategic decisions, generate important lessons for future programmes and contribute to the refinement of international policy.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a51943d6-ecb3-4ee2-a4cd-e471135a4e56", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 11, + "Paragraph": "Establishing evaluation scope The scope or extent of an evaluation, which determines the range and type of indicators or factors that will be measured and analysed, should be directly linked to the objectives and purpose of the evaluation process, and how its results, conclusions and proposals will be used. In general, the scope of an evaluation varies between evaluations that focus primarily on \u2018impacts\u2019 and those that focus on broader \u2018outcomes\u2019: Outcome evaluations: These focus on examining how a set of related projects, programmes and strategies brought about an anticipated outcome. DDR programmes, for instance, contribute to the consolidation of peace and security, but they are not the sole pro gramme or factor that explains progress in achieving (or not achieving) this outcome, owing to the role of other programmes (SSR, police training, peacebuilding activities, etc.). Outcome evaluations define the specific contribution made by DDR to achieving this goal, or explain how DDR programmes interrelated with other processes to achieve the outcome. In this regard, outcome evaluations are primarily designed for broad comparative or strategic policy purposes. Example of an objective: \u201cto contribute to the consolidation of peace, national security, reconciliation and development through the disarmament, demobilization and reintegration of excombatants into civil society\u201d; Impact evaluations: These focus on the overall, longerterm impact, whether intended or unintended, of a programme. Impact evaluations can focus on the direct impacts of a DDR programme \u2014 e.g., its ability to successfully demobilize entire armies and decrease the potential for a return to conflict \u2014 and its indirect impact in helping to increase economic productivity at the local level, or in attracting excombatants from neighbouring countries where other conflicts are occurring. An example of an objective of a DDR programme is: \u201cto facilitate the development and environment in which ex combatants are able to be disarmed, demobilized and reintegrated into their communities of choice and have access to social and economic reintegration opportunities\u201d.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f886219a-892b-473d-9287-8e78b9e4c06d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 12, + "Paragraph": "Timing and objectives of evaluations In general, evaluations should be carried out at key points in the programme implementation cycle in order to achieve related yet distinct objectives. Four main categories or types of evaluations can be identified: Formative internal evaluations are primarily conducted in the early phase of programme implementation in order to assess early hypotheses and working assumptions, analyse outcomes from pilot interventions and activities, or verify the viability or relevance of a strategy or set of intended outputs. Such evaluations are valuable mechanisms that allow implementation strategies to be corrected early on in the programme implemen tation process by identifying potential problems. This type of evaluation is particularly important for DDR processes, given their complex strategic arrangements and the many different subprocesses involved. Most formative internal evaluations can be carried out internally by the M&E officer or unit within a DDR section; Mid-term evaluations are similar to formative internal evaluations, but are usually more comprehensive and strategic in their scope and focus, as opposed to the more diag nostic function of the formative type. Midterm evaluations are usually intended to provide an assessment of the performance and outcomes of a DDR process for stake holders, partners and donors, and to enable policy makers to assess the overall role of DDR in the broader postconflict context. Midterm evaluations can also include early assessments of the overall contribution of a DDR process to achieving broader post conflict goals; Terminal evaluations are usually carried out at the end of the programme cycle, and are designed to evaluate the overall outcomes and effectiveness of a DDR strategy and programme, the degree to which their main aims were achieved, and their overall effec tiveness in contributing to broader goals. Terminal evaluations usually also try to answer a number of key questions regarding the overall strategic approach and focus of the programme, mainly its relevance, efficiency, sustainability and effectiveness; Ex-post evaluations are usually carried out some time (usually several years) after the end of a DDR programme in order to evaluate the longterm effectiveness of the programme, mainly the sustainability of its activities and positive outcomes (e.g., the extent to which excombatants remain productively engaged in alternatives to violence or mili tary activity) or its direct and indirect impacts on security conditions, prospects for peacebuilding, and consequences for economic productivity and development. Expost evaluations of DDR programmes can also form part of larger impact evaluations to assess the overall effectiveness of a postconflict recovery strategy. Both terminal and expost evaluations are valuable mechanisms for identifying key lessons learned and best practice for further policy development and the design of future DDR programmes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f7e4b5b4-1f07-4447-ae36-e2df2a24cd80", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 13, + "Paragraph": "Selection of results and indicators for evaluation Given the broad scope of DDR programmes, and the differences in strategies, objectives and context, it is difficult to identify specific or generic (i.e., general) results or indicators for evaluating DDR programmes. A more meaningful approach is to identify the various types of impacts or issues to be analysed, and to construct composite (i.e., a group of) indi cators as part of an overall methodological approach to evaluating the programme. The following factors usually form the basis from which an evaluation\u2019s focus is defined: Relevance describes the extent to which the objectives of a programme or project remain valid and pertinent (relevant) as originally planned, or as modified owing to changing circumstances within the immediate context and external environment of that pro gramme or project. Relevance can also include the suitability of a particular strategy or approach for dealing with a specific problem or issue. A DDRspecific evaluation could focus on the relevance of cantonmentbased demobilization strategies, for instance, in comparison with other approaches (e.g., decentralized registration of combatants) that perhaps could have more effectively achieved the same objectives; Sustainability involves the success of a strategy in continuing to achieve its initial objec tives even after the end of a programme, i.e., whether it has a longlasting effect. In a DDR programme, this is most important in determining the longterm viability and effectiveness of reintegration assistance and the extent to which it ensures that ex combatants remain in civilian life and do not return to military or violencebased livelihoods. Indicators in such a methodology include the viability of alternative eco nomic livelihoods, behavioural change among excombatants, and so forth; Impact includes the immediate and longterm consequences of an intervention on the place in which it is implemented, and on the lives of those who are assisted or who benefit from the programme. Evaluating the impact of DDR includes focusing on the immediate social and economic effects of the return of excombatants and their inte gration into social and economic life, and the attitudes of communities and the specific direct or indirect effects of these on the lives of individuals; Effectiveness measures the extent to which a programme has been successful in achieving its key objectives. The measurement of effectiveness can be quite specific (e.g., the success of a DDR programme in demobilizing and reintegrating the majority of ex combatants) or can be defined in broad or strategic terms (e.g., the extent to which a DDR programme has lowered political tensions, reduced levels of insecurity or improved the wellbeing of host communities); Efficiency refers to how well a given DDR programme and strategy transformed inputs into results and outputs. This is a different way of focusing on the impact of a pro gramme, because it places more emphasis on how economically resources were used to achieve specific outcomes. In certain cases, a DDR programme might have been successful in demobilizing and reintegrating a significant number of excombatants, and improving the welfare of host communities, but used up a disproportionately large share of resources that could have been better used to assist other groups that were not covered by the programme. In such a case, a lack of programme efficiency limited the potential scope of its impact.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "09916f8d-7093-4fed-9f9f-6a6297912e10", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 14, + "Paragraph": "Use of evaluation results In general, the results and conclusions of evaluations should be used in several important and strategic ways: A key function of evaluations is to enable practitioners and programme managers to identify, capture and disseminate lessons learned from programme implementation. This can have an immediate operational benefit, as these lessons can be \u2018fed back\u2019 to the programme implementation process, but it can also contribute to the body of lessons learned on DDR at regional and global levels; Evaluations can also provide important mechanisms for identifying and institutional izing best practice by identifying effective models, strategies and techniques that can be applied in other contexts; innovative approaches to dealing with outstanding problems; or linking DDR to other processes such as local peacebuilding, access to justice, and so forth; Evaluation results also enable practitioners and managers to refine and further develop their programme strategy. This is particularly useful when programmes are designed to be implemented in phases, which allows for the assessment and identification of problems and best practice at the end of each phase, which can then be fed into later phases; Evaluations also contribute to discussions between policy makers and practitioners on the further development of international and regional policies on DDR, by providing them with information and analyses that influence the way key policy issues can be dealt with and decisions reached. Evaluations can provide invaluable support to the elaboration of future policy frameworks for DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "97a3cfe4-2024-47db-8a04-82528c8934d8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes", + "PageNum": 14, + "Paragraph": "Planning evaluations The complexity of DDR and the specific skills needed for indepth and comprehensive evaluations usually means that this activity should be carried out by specialized, contracted external actors or partners. Because an external team will be brought in, it is essential to draw up precise terms of reference for the carrying out of the evaluation, and to be clear about how the overall objective and coverage of issues will be defined/expressed. An evaluation terms of reference document includes the following sections: Introduction: Contains a brief description of the rationale and focus of the evaluation (outcome, programme, project, series of interventions by several partners, etc.); Objectives: Describes the purpose of the evaluation, e.g., \u201cto analyse strategic program matic and policy dimensions\u201d; Scope: Defines which issues, subjects and areas the evaluation will cover, and the period of the programme\u2019s life it will examine; Expected results: Defines what results the evaluation is expected to produce (e.g., findings, recommendations, lessons learned, rating on performance, an \u2018action item\u2019 list, etc.); Methodology or approach: Defines how data is collected and analysed for the evaluation; Evaluation team: Defines the composition of the staff involved and their areas of expertise; Management arrangements: Defines how the evaluation will be managed and organized, and how interactions with the DDR programme management will be structured.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "124e9478-2616-45e1-a037-029c2d96e5b7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": null, + "Paragraph": "Summary The recruitment of children \u2013 girls and boys under the age of 18 \u2013 and their use in hostilities or for other purposes by armed forces and groups is illegal. It is also one of the worst forms of child labour and exploitation. Efforts to prevent the recruitment of children into armed forces and groups should be a primary consideration during all DDR processes. Prevention efforts should start early\u2014when possible, they should com- mence prior to armed conflict\u2014and they should take place continuously throughout the conflict, with careful consideration given to the structural, social and individual factors associated with the risk of recruitment and re-recruitment. Irrespective of how children were recruited, the unconditional and immediate release of children associated with armed forces and groups (CAAFAG) shall be re- quired. Any person under 18 years old must be supported to demobilize and rein- tegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR processes. Nonetheless, where relevant, peace processes, including peace agreements and DDR policy documents, offer an op- portunity to highlight the needs of children affected by armed conflict and to ensure that actions and funding streams to support child-specific processes are included. The commitment to stop the recruitment and use of children and to release children from armed forces and groups shall be explicit within peace agreements. DRR processes shall be specific to the needs of children and apply child-sensitive and gender-transformative approaches to planning, implementation, and monitoring. As such, children shall be separated from armed forces and groups, handed over to child protection actors and supported to demobilize and reintegrate into families and communities. DDR practitioners and relevant child protection actors shall work togeth- er to design and implement services and interventions that aim to prevent children\u2019s recruitment and re-recruitment, that help children to recover and reintegrate into their communities, and that take into account differences in age and gender needs. DDR practitioners should promote agency of children, enabling their right to participate in decision-making and shape DDR processes in line with their concerns/needs. The specific needs of children formerly associated with armed forces and groups during reintegration are multisectoral, as boys and girls often require support in (re) accessing education, an alternative livelihood, medical and mental health services, in- cluding reproductive health services and sexual violence recovery services, as well as other services that promote life skills and help them establish a meaningful role in society. Child-sensitive approaches to reintegration support should be focused on long- term and sustainable opportunities for children formerly associated with armed forces and groups that are gender- and age-sensitive. For sustainability, and to avoid tension, stigmatization or envy when a child is returned, DDR practitioners should ensure that broader community development processes are also considered. DDR practitioners should also be aware that no child below the minimum age of criminal responsibility (MACR) should be investigated, prosecuted, or deprived of their liberty for any offence, including security and terrorism-related offences, in line with the provisions of the Convention on the Rights of the Child. The Committee on the Rights of the Child encourages States to increase the MACR where possible, and not to lower it below 14 years of age, commending States that set a higher MACR such as 15 or 16 years of age. Children, above the age of criminal responsibility, who are sus- pected of committing a serious crime, shall be handed over to civilian actors, and jus- tice should be provided within juvenile justice frameworks. During all processes they shall be treated primarily as victims and as survivors of grave violations of their rights. Any investigation or determination of culpability shall be handled by trained civilian actors, including, where relevant, trained juvenile justice actors and made based on processes consistent with applicable international child rights standards, including the Convention on the Rights of the Child, and internationally recognized juvenile justice standards and principles, due process and fair trial standards, prioritizing the child\u2019s recovery, reintegration, and best interests in all decisions.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "799c4a77-c058-4ccc-a4af-4e1816a1c21a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module aims to provide DDR practitioners and child protection actors with guid- ance on the planning, design and implementation of DDR processes for CAAFAG in both mission and non-mission settings. The main objectives of this guidance are: To set out the main principles that guide all aspects of DDR processes for children. To outline the normative legal framework that applies to children and must be integrated across DDR processes for children through planning, design, imple- mentation and monitoring and evaluation. To provide guidance and key considerations to drive continuous efforts to prevent the recruitment and re-recruitment of children into armed forces and groups. To provide guidance on child- and gender-sensitive approaches to DDR highlight- ing the importance of both individualized and community-based approaches. To highlight international norms and standards around criminal responsibility and accountability in relation to CAAFAG. This module is applicable to all CAAFAG but should be used in conjunction with ID- DRS 5.30 on Youth and DDR. IDDRS 5.30 provides guidance on children who are closer to 18 years of age. These children, who are likely to enter into employment and who have socio-political reintegration demands, especially young adults with their own children, require special assistance. The challenge of demobilizing and reintegrating former combatants who were mobilized as children and demobilized as adults is also covered in IDDRS 5.30. In addition, this module should also be read in conjunction with IDDRS 5.10 on Women, Gender and DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2e85d807-a364-4cab-9a6b-7da678a15667", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 5, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Children associated with armed forces or armed groups refers to persons below 18 years of age who are or who have been recruited or used by an armed force or group in any capacity, including but not limited to children, boys or girls, used as fighters, cooks, porters, messengers, spies or for sexual purposes. This term is used in the Paris Principles and is used here instead of the term \u2018child soldiers\u2019 because it more inclu- sively recognizes children who perform not only combat roles but also support or other functions in an armed force or group. Child recruitment refers to compulsory, forced and any other conscription or enlist- ment of children into any kind of armed force or armed group. This can include re- cruitment by communities, coerced recruitment, or abductions into armed forces and groups. The definition is purposefully broad and encompasses the possibility that any child recruitment may be coerced, forced, or manipulated based on the child\u2019s circum- stances and may appear voluntary. Unlawful recruitment or use is recruitment or use of children under the age stipulated in the international treaties applicable to the armed force or group in question or under applicable national law. The Optional Protocol on the Involvement of Children in Armed Conflict (OPAC) bans recruitment of children under 15 and requires States to take all pos- sible measures to prevent recruitment of children under 18 including the adoption of legal measures necessary to prohibit and criminalize such practices.1 It also bans all recruitment and use of children by armed groups. The Convention on the Rights of the Child (CRC), the Geneva Conventions and the Rome Statute ban recruitment of children under age 15. Release includes the process of formal and controlled disarmament and demobiliza- tion of children from an armed force or group, as well as the informal ways in which children leave by escaping, being captured or any other means. It implies a disassoci- ation from the armed force or group and the beginning of the transition from military to civilian life. Release can take place during a situation of armed conflict; it is not dependent on the temporary or permanent cessation of hostilities. Release is not de- pendent on children having weapons to forfeit. Reintegration of children is the process through which children transition into soci- ety and enter meaningful roles and identities as civilians who are accepted by their families and communities in a context of local and national reconciliation. Sustainable reintegration is achieved when the political, legal, economic and social conditions needed for children to maintain life, livelihood and dignity have been secured. The reintegra- tion process aims to ensure that children can access their rights, including formal and non-formal education, family unity, dignified livelihoods and safety from harm.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6bdd19ee-5d61-4928-8b32-6e432788de10", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 6, + "Paragraph": "Introduction All child recruitment or use by armed groups is illegal under international law (OPAC Article 4), as is all use of children in hostilities (OPAC Article 1), conscription by state armed forces (OPAC Article 2, International Convention on the Worst Forms of Child Labour (ILO Convention (No. 182)), or enlistment of children without appropriate safe- guards (OPAC Article 3). All child recruitment and use into armed forces is also illegal for those State parties to the Operational Protocol to the Convention Against Torture. The recruitment and use of children under 15 by armed forces and groups may amount to a war crime. There is significant international consensus that the recruitment of children under 18 years old is inconsistent with international standards on child pro- tection. DDR processes, including release and reintegration support for children, shall therefore prioritize prevention, separation of children from armed forces or groups, and redress of this human rights violation. DDR processes shall be specific to the needs of children and apply child- and gender-sensitive approaches. This mod- ule provides critical guidance for DDR practitioners and child protection actors on how to work together to plan, design and implement services and interventions that aim to prevent children\u2019s recruit- ment and re-recruitment, as well as help children to recover and reintegrate children into their families and communities. The guidance recognizes that the needs of children formerly associated with armed forces and groups during reintegration are multisectoral and different than those of adults. Child-sensitive approaches require DDR practitioners and child protection actors to tailor interventions to meet the specific needs of individual boys and girls, but also to target other conflict-affected or at-risk children within the broader community in which children are reintegrating. Finally, the module recognizes that children, as victims of recruitment and use, should not be prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, and notes that children who have reached the MACR and who may have committed criminal acts shall be afforded the protections to which they are entitled, including their rights to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dc28de07-32fd-4cce-9abb-94c7d7bf1f46", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 7, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to children and DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b69e18dd-1e71-4874-9b7d-be32dc2508d5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 7, + "Paragraph": "Voluntary Children are entitled to release from armed forces and groups at all times, without pre-condition. Processes for planning and implementing DDR processes shall not delay demobilization or other forms of release of children. Given their age, vulnerability and child-specific needs, during DDR processes, children shall be separated from armed forces and groups and handed over to child protection actors and supported to de- mobilize and reintegrate into families and communities in processes that are separate from those for adults, according to their best interests. While it is critical that children be supported, they shall not be pressured to wait for or to participate in release process- es. They shall also not be removed from their families or communities to participate in DDR processes unless it has been determined to be in their best interest. Their decision to participate shall voluntary and based on informed consent.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "94a80315-f398-4af3-acd6-45fc3ba830da", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 7, + "Paragraph": "Criteria for participation/eligibility Any person below 18 years of age who is associated with an armed force or group shall be eligible for participation in a DDR process designed specifically for children. Children can be associated with armed forces and groups in a variety of ways, not only as combatants, so some may not have access to weapons or ammunition. This is especially true for girls who are often used for sexual purposes, as wives or cooks, but may also be used as spies, logisticians, fighters, etc. DDR practitioners shall recognize that all children must be released by the armed forces and groups that recruited them and receive reintegration support. Eligibility for DDR processes for CAAFAG shall not be conditioned on the child\u2019s possession and handover of a weapon or ammunition, participation in hostilities or weapons training; there shall be no conditions, of any kind, for their participation. If there is doubt as to whether an individual is under 18 years old, an age assessment shall be conducted (see Annex B). In cases where there is no proof of age, or inconclusive evidence, the child shall have the right to the rule of the benefit of the doubt. A dependent child of an ex-combatant shall not automatically be considered to be associated with an armed force or group. However, armed forces or groups may identify some children, particularly girls, as dependents, including as wives, when the child is an extended family member/relative, or when the child has been abducted, or otherwise recruited or used, including through forced marriage. A safe, child- and gender-sensitive individualized determination shall be undertaken to determine the child\u2019s status and eligibility for participation in a DDR process. DDR practitioners and child protection actors shall be aware that, although not all dependent children may be eligible for DDR, they may be at heightened vulnerability and may have been exposed to conflict-related violence, especially if they were in close proximity to combatants or if their parents are ex-combatants. These children shall therefore be referred for sup- port as part of wider child protection and humanitarian services in their communities.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "8dd59f35-32cb-48f2-8fb9-c2d36fd4dbe6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 8, + "Paragraph": "Unconditional release and protection of children DDR processes for children shall not be contingent on political negotiations or adult DDR processes. Efforts shall always be made to prevent recruitment and to secure the release of children associated with armed forces or armed groups, irrespective of the stage of the conflict or status of peace negotiations. Doing so may require negotiations with armed forces or groups. Special provisions and efforts may be needed to reach girls, who often face unique obstacles to identification and release. These obstacles may include specific sociocultural factors, such as the perception that girl \u2018wives\u2019 are de- pendents rather than associated children, gendered barriers to information and sensi- tization, or fear by armed forces and groups of admitting to the presence of girls. The mechanisms and structures for the release and reintegration of children shall be set up as soon as possible and continue during ongoing armed conflict, before a peace agreement is signed, a peacekeeping mission is deployed, or a DDR process or security sector reform (SSR) process is established. Armed forces and groups rarely acknowledge the presence of children in their ranks, so children are often not identified and are therefore excluded from support linked to DDR. DDR practitioners and child protection actors involved in providing services during DDR processes, as well as UN personnel more broadly, shall actively call for the unconditional release of all CAAFAG at all times, and for children\u2019s needs to be considered. Advocacy of this kind aims to highlight the issues faced by CAAFAG and ensures that the roles played by girls and boys in conflict situations are identified and acknowledged. Advocacy shall take place at all levels, through both formal and informal discussions. UN agencies, diplomatic missions, mediators, donors and repre- sentatives of parties to conflict should all be involved. If possible, advocacy should also be linked to existing civil society actions and national systems.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ea55abe5-40ab-4cab-b7df-fa13ec2af928", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 8, + "Paragraph": "In accordance with standards and principles of humanitarian assistance DDR processes shall respect the principles of international humanitarian law and pro- mote the human rights of DDR participants, including children, and the communities into which they reintegrate. Core principles for delivery of humanitarian assistances include humanity, impartiality, neutrality and independence. When supporting chil- dren and families therefore, care shall be taken to assess the possible impact of meas- ures on vulnerable populations which may, by their very nature, have disproportionate or discriminatory impacts on different groups, even if unintended. Responses shall en- hance the safety, dignity, and rights of people, and avoid exposing them to harm, pro- vide access to assistance according to need and without discrimination, assist people to recover from the physical and psychological effects of threatened or actual violence, coercion or deliberate deprivation, and support people to fulfil their rights.2", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b85b1804-3c00-4d53-9c24-bfd56ddf62f5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 9, + "Paragraph": "Gender responsive and inclusive Conflict harms all children, whether they have been recruited or not. An inclusive approach that provides support to all conflict-affected children, including girls, par- ticularly those with vulnerabilities that place them at risk of recruitment and use, shall be adopted to address children\u2019s needs and to avoid the perception that CAAFAG are being rewarded for association with an armed force or group. Gender-responsive ap- proaches recognize the unique and specific needs of boys and girls, including the need for both to have access to sexual violence recovery services, emotional skill develop- ment and mental health and psychosocial support. Non-discrimination and fair and equitable treatment are core principles of DDR processes. Children shall not be dis- criminated against due to age, sex, race, religion, nationality, ethnicity, disability or other personal characteristics or associations they or their families may hold. Based on their needs, CAAFAG shall have access to the same opportunities irrespective of the armed force or group with which they were associated. Non-discrimination also requires the establishment of mechanisms to enable those CAAFAG who informally leave armed forces or groups to access child-sensitive DDR processes (see section 4.1).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "130bf457-4549-4407-bebe-c67acde66874", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 9, + "Paragraph": "Conflict sensitive A conflict sensitive approach ensures that children associated with different groups and forces shall have equal access to and benefit from programmes. Additionally, opportunities to promote peacebuilding and social cohesion through child protection support services and activities shall be leveraged to fortify and build stronger connec- tions between children, irrespective of the armed group or force with which they were previously traveling or associated. DDR practitioners shall ensure that no harm is done to children or their families. Rather, they shall seek to maximize any benefits to children, while minimizing any harm. This shall be done through: Assessing and monitoring both positive and negative impacts for children, disag- gregating data by age, gender and vulnerabilities of the child, while keeping such data protected; and Listening to and considering the voices and views of children in the planning, design, implementation and review of DDR processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "76a4b1eb-5e3b-47ad-8797-0a17f733af5f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 9, + "Paragraph": "Context specific DDR practitioners shall recognize that each conflict context is different, with its own social, political, cultural, economic, gender and other dynamics, and that girls and boys have different needs and capacities. These specificities also require DDR practitioners to recognize that the mechanisms for consultation and engagement may differ by con- text, hence requiring tailored strategies. There is no simple formula that can be applied in all circumstances.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "38628db5-f512-4d9a-986c-b4e86592bd6d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 10, + "Paragraph": "Flexible, sustainable and transparent funding arrangements Sufficient long-term funding is required to implement effective child-sensitive DDR processes. Funding should be made available through a funding mechanism that is independent of, and managed separately from, DDR processes for adults. This funding should be planned for at the outset. DDR practitioners and specialized child protection actors shall be called upon for the necessary political, technical and operational leader- ship within the Government and within the framework of the UN mission or the UN Country Team.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "026c68d2-8171-4c50-8aad-8669f821c78f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 10, + "Paragraph": "Accountability and transparency DDR practitioners and child protection actors shall reaffirm the importance of and respect the best interests of the child and require project staff to be accountable to chil- dren and their caregivers.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7e238778-1bee-48f8-a9df-0ffd8b22eea3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 10, + "Paragraph": "Nationally and locally owned DDR processes for children shall link to national and local structures for child protec- tion with efforts to strengthen institutions working on child rights and advocacy. DDR processes for children require a long implementation period and the long-term success of DDR processes depends on and correlates to the capacities of local actors and com- munities. These capacities shall be strengthened to support community acceptance and local advocacy potential. Participatory and decentralized consultation should be encouraged so that com- mon strategies, responsive to local realities, can be designed. National frameworks, including guiding principles, norms and procedures specific to the local and regional context, shall be established. Clear roles and responsibilities, including engagement and exit strategies, shall be agreed upon by all actors. All such consultation must en- sure that the voices of children, both boys and girls, are heard and their views are in- corporated into the design of DDR processes. As social norms may influence the ability of children to speak openly and safely, DDR practitioners shall consult with experts on child participation. To ensure long-term sustainability, Government should be a key partner/owner in DDR processes for children. The level of responsibility and national ownership will depend on the context and/or the terms of the peace accord (if one exists). Appropriate ministries, such as those of education, social affairs, families, women, labour, etc., as well as any national DDR commission that is set up, shall be involved in the planning and design of DDR processes for children. Where possible, support should be provided to build Government capacity on child protection and other critical social services.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "6359a9b6-49a3-44e1-ac2a-b8571b830c71", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 10, + "Paragraph": "Regionally supported Where appropriate, DDR practitioners shall consider regional initiatives prohibiting and responding to the recruitment and use of CAAFAG. Furthermore, regional organ- izations and arrangements to undertake efforts to obtain the release of children from armed forces and groups and their family reunification shall be supported.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "73b8aaaf-1833-4c17-990d-7b778f63ca4e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 11, + "Paragraph": "Integrated Effective coordination with other related sectors (including education, health, youth, and employment) and relevant agencies/ministries is critical to the success of DDR pro- cesses for children. Systems for coordination, information-sharing and reporting shall be established and continuously implemented, so that all concerned parties can work together and support each other, particularly in the case of contingency and security planning. Coordination shall be seen as a vital element of the ongoing monitoring of children\u2019s well-being and shall be utilized to further advanced preparedness, prevent (re-)recruitment and ensure conflict sensitivity. Effective coordination between DDR practitioners working with children and adults should be promoted to support the transition from child to adult for older children (ages 15\u201318). Data on CAAFAG shall be safely secured and only made available to those who have a specific need to access it for a specific purpose that is in a child\u2019s best interests, for example, to deliver a service or make a referral. Confidentiality shall be respected at all times.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f43593f8-8b0c-40a9-9a70-c5f8605e8d45", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 11, + "Paragraph": "Safety and security Prevention and release require considerations related to safety of children, families, communities, DDR practitioners and other staff delivering services for children. DDR processes for children may be implemented in locations where conflict is ongoing or escalating, or in fragile environments. Such contexts present many potential risks and DDR practitioners shall therefore conduct risk assessments and put in place measures to mitigate identified risks before initiating DDR processes. Particular consideration shall be given to the needs of girls and protection of all children from sexual exploitation and abuse. All staff of UN organizations delivering child protection services and organizing DDR processes shall adhere to the require- ments of the Secretary-General\u2019s Bulletin on the Special Measures for Protection from Sexual Exploitation and Sexual Abuse (for UN entities) and the Interagency Standing Committee\u2019s Six Core Principles Relating to Sexual Exploitation and Abuse. DDR processes shall establish an organizational child protection policy and/or safeguarding policy and an individual code of conduct that have clear, strong, and positive commitments to safeguard children and that outline appropriate standards of conduct, preventive measures, reporting, monitoring, investigation and corrective measures the Organization will take to protect participants and beneficiaries from sex- ual exploitation and abuse.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "5db2b515-10c9-4bcc-8b26-b668a677be90", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 11, + "Paragraph": "Planning, assessment, design, monitoring and evaluation The best interests of the child shall be a primary consideration in all assumptions and decisions made during planning. Emphasis is often placed on the need to estimate the numbers of children in armed forces and groups in order to plan actions. While this is important, policymakers and planners should also recognize that it is difficult to obtain accurate figures. Uncertain estimates during planning, however, should not prevent DDR processes for children from being implemented, or from assuring that every child will have sustained reintegration support. Children shall not be included in the count of members of any armed force or group at the time of a DDR process, SSR, or power-sharing negotiations. Legitimacy shall not be given to child recruitment through the inclusion of children within DDR processes to inflate numbers, for example. However, as children will require services, for the purposes of planning the budget and the DDR process itself, children shall be included in the count of persons qualifying for demobilization and reintegration support. Many children who are formally or informally released or who have otherwise left armed forces or groups never have the opportunity to participate in child-sensitive DDR processes. This can happen when a child who flees an armed force or group is not aware of their rights or lives in an area where DDR processes are unavailable. Girls, in particular, may be at higher risk of this as they are often \u2018unseen\u2019 or viewed as depend- ants. DDR practitioners and child protection actors shall understand and plan for this type of \u201cself-demobilization,\u201d and the difficulties associated with accessing children who have taken this route. If levels of informal release or separation are believed to be high (through informal knowledge, data collection or situation analysis), during the planning and design phases, in collaboration with child protection actors, DDR practi- tioners shall establish mechanisms to inform these children of their rights and enable access to reintegration support.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f4ce6622-cff5-421b-8b1f-9e3e61e8909b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 12, + "Paragraph": "Public information and community sensitization Families and communities shall be sensitized on the experiences their children may have had during their association with an armed force or group and the changes they may see, without stigmatizing them. CAAFAG, both girls and boys, often experience high levels of abuse (sexual, physical, and emotional), neglect and distressing and events (e.g., exposure to and perpetration of violence, psychological and physical inju- ry, etc.). They will require significant support from their families and communities to overcome these challenges, and it is therefore important that appropriate sensitization initiatives are in place to ensure that this support is understood and forthcoming. To increase children\u2019s awareness of their rights and the services available, DDR practitioners should use targeted gender- and age-sensitive public communication strategies such as public service announcement campaigns (radio, social media and print), child-friendly leaflet drops in strategic locations, peer messaging and coordi- nation with grassroots service providers to reach children. It is critical for DDR practi- tioners to maintain regular communication with CAAFAG regarding release and rein- tegration processes and support, including services offered and eligibility criteria, any changes to the support provided (delays or alternative modes of service delivery), and the availability of other services and referrals. A lack of proper communication may lead to misunderstandings and frustration among children and community members and further conflict. Communications strategies should be highly flexible and responsive to changing situations and needs. Strategies should include providing opportunities for people to ask questions about DDR processes for children and involve credible and legitimate local actors (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). A well-designed communications strategy creates trust within the community and among the key actors involved in the response and facilitates max- imum participation. In all communications, children\u2019s confidentiality shall be main- tained, and their privacy protected.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "3065c44a-adef-44fa-a2c8-bf0139defc73", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 13, + "Paragraph": "Normative legal frameworks DDR practitioners shall proactively seek to build the following key normative legal frameworks into DDR, from planning, design, and implementation to monitoring and evaluation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "348d519f-5b36-49ac-bd99-ffeb76fd06e1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 13, + "Paragraph": "The Convention on the Rights of the Child and its Optional Protocols The CRC and its OPAC constitute the framework for the principles, norms and standards that underpin DDR processes for children. The CRC defines a \u2018child\u2019 as any human being below the age of 18 years unless, under the law applicable to the child, majority is attained earlier. OPAC prohibits recruitment and use in hostilities of anybody under 18 years of age by armed groups. OPAC also obligates States Parties to set the minimum age of voluntary recruitment of persons into their national armed forces as 15 years of age, establishes safeguards for the voluntary recruitment of persons below the age of 18, and asserts that State Parties take all feasible measures to ensure that members of the national armed forces that are under the age of 18 do not take part in direct hostilities. The rights of the child, as espoused through the CRC and its OPAC, further support the reintegration of CAAFAG through requiring States to promote: The child\u2019s right to life, survival and development: This right is not limited to ensuring a child\u2019s physical well-being but includes the need to ensure full and harmonious devel- opment, including at the spiritual, moral and social levels, where education plays a key role. In respect to DDR processes for children, this shall include consideration of how a child\u2019s experience in conflict impacts upon his/her own evolving capacities, as well as recognition of the resilience displayed in surviving and overcoming difficulties. The child\u2019s right to be free from arbitrary detention: No child shall be deprived of his or her liberty unlawfully or arbitrarily. The arrest, detention or imprisonment of a child shall be in conformity with the law and shall be used only as a measure of last resort and for the shortest appropriate period of time. The child\u2019s right to fair justice and fair treatment: States recognize the right of every child alleged as, accused of, or recognized as having infringed the penal law to be treated in a manner consistent with the promotion of the child\u2019s sense of dignity and worth, which reinforces the child\u2019s respect for the human rights and fundamental free- doms of others and which takes into account the child\u2019s age and the desirability of promoting the child\u2019s reintegration and the child\u2019s assuming a constructive role in soci- ety. States shall seek to promote the establishment of laws, procedures, authorities and institutions specifically applicable to children alleged as, accused of, or recognized as having infringed the penal law, and, in particular The physical and psychological recovery and social reintegration of child victims: States shall take all appropriate measures to promote physical and psychological recovery and social reintegration of a child victim of: any form of neglect, exploitation, or abuse; torture or any other form of cruel, inhuman or degrading treatment or pun- ishment; or armed conflicts. DDR practitioners shall work with States to ensure that recovery and reintegration takes place in an environment which fosters the health, self-respect and dignity of the child. Article 7 of the OPAC forms the legal basis for support to CAAFAG through the obligation of signatories to rehabilitate and socially reintegrate CAAFAG. The child\u2019s right to be free from discrimination: States shall ensure respect for the rights of all children within their jurisdiction \u2013 including non-national children \u2013 regardless of race, sex, age, religion, ethnicity, opinions, disability or any other status of the child or the child\u2019s parents or legal guardians. DDR practitioners shall pay particular atten- tion to ensuring the full involvement and inclusion of girls and their children, as well as addressing any stigmatization of CAAFAG. The child\u2019s right to participate: Children shall be allowed to express their opinions freely and participate in making decisions concerning family reunification and career and educational opportunities, and those opinions should be given due weight in accordance with the age and maturity of the child. Children shall be consulted at all stages of the release and reintegration process, and actions that affect them shall be in their best interests, considering their needs and concerns, placement and family. The child\u2019s best interests as a primary consideration: Actions that affect the child should be based on an assessment of whether those actions are in the child\u2019s best interests. As part of DDR processes for children, this shall mean that all measures to assure release, protection, reintegration and prevention of re-recruitment shall be determined by their best interests. A child shall participate in determining what is in his/her best interests.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5550ec72-2d59-4ed5-bb10-713d9687bc28", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 14, + "Paragraph": "The Worst Forms of Child Labour Convention Under Article 3 of the International Labour Organization Convention No. 182, States Parties shall take immediate and effective measures to secure the prohibition and elim- ination of the worst forms of child labour, which include the forced or compulsory re- cruitment of children for use in armed conflict (a child being defined as a person under the age of 18). Under Article 7(b) the convention also requires States to prevent the en- gagement of children in the worst forms of child labour, and to provide the necessary and appropriate direct assistance for the removal of children from the worst forms of child labour and for their rehabilitation and reintegration.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "961b914f-a7f0-4e56-86b4-8aabcfa5d1ef", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 14, + "Paragraph": "African Charter on the Rights and Welfare of the Child The African Charter on the Rights and Welfare of the Child (1990) requires that States take all necessary measures to ensure that no child shall take a direct part in hostilities and refrain, in particular, from recruiting any child (Article 22).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8125ab6a-0db9-4a02-bb77-7d59beb6f5e7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 15, + "Paragraph": "Additional Protocols I and II to the Geneva Conventions The Additional Protocols I (Article 77) and II (Article 4(3)) to the Geneva Conventions call for the special respect and protection of children in armed conflict (Rule 135), underscoring that children who have not attained the age of fifteen years, shall neither be recruited into armed forces or groups (Rule 136), nor be allowed to take part in hos- tilities (Rule 137). The protocols provide for additional special protection for children affected by armed conflict to include protection against all forms of sexual violence (Rule 93), sepa- ration from adults while deprived of liberty, unless they are members of the same family (Rule 120), access to education food and health care (Rules 55, 118, and 131), evacuation from areas of combat for safety reasons (Rule 129), reunification of unaccompanied children with their families (Rules 105 and 131), and application of the death penalty.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "37233e1a-0cff-4bb1-9744-e84c38b275c7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 15, + "Paragraph": "The Rome Statute of the International Criminal Court Article 8(2)(b)(xxvi) and 8(2)(e)(vii) of the Rome Statute of the International Criminal Court makes it a war crime, leading to individual criminal prosecution, to conscript or enlist children under the age of 15 years into armed forces or groups or to use them to participate actively in hostilities, in both international and non-international armed conflicts.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "4b7f3360-b263-42a0-b1bc-d707f5d70071", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 15, + "Paragraph": "Security Council Resolution 1539 Security Council resolution 1539 (2004) calls for engaging armed forces and groups in dialogue leading to time-bound action plans to prevent and end grave violations against children, including the release of children. Those engaged in securing the release of children should make contact with armed forces and groups recruiting and using children, where it is safe to do so and in accordance with UN guidelines.3 Engagement with armed forces and groups will often occur as part of the Monitoring and Reporting Mechanism (MRM) led by the Country Task Force on Monitoring and Reporting. Those parties to the conflict that enter into dialogue with the UN can develop time-bound action plans, following their listing in the annexes of the Secretary General\u2019s annual report for grave violations against children (including the recruitment and use of children). The unconditional release of children, prevention of grave violations and awareness-raising on the issue of child recruitment and use, as well as other activities, shall be included in such action plans. Training and capacity building for armed forces or groups on their obligations un- der international law relating to the recruitment and use of children should be provid- ed, including the identification and release of children, age assessment procedures to prevent child association, gender-based violence and other child protection concerns, and respect for humanitarian norms and principles.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "18256fca-b5f0-47cc-beb7-a3fa65b656c6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 16, + "Paragraph": "Security Council Resolution 2427 Security Council Resolution 2427 (2018) urges \u201cconcerned Member States to main- stream child protection and ensure that the specific needs of girls and boys are fully taken into account at all stages of disarmament, demobilization, and reintegration pro- cesses (DDR), including through the development of a gender-and age-sensitive DDR process\u201d. The resolution also stresses the need to pay particular attention to the treat- ment of children associated or allegedly associated with all non-state armed groups, including those who commit acts of terrorism, in particular by establishing standard operating procedures for the rapid handover of these children to relevant civilian child protection actors.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1305c4e5-c09f-433e-97b4-dee274922a52", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 16, + "Paragraph": "The Paris Principles and Paris Commitments The 2007 Paris Principles, building on the 1997 Cape Town Principles, detail eight general principles and eight operational principles to protect children. Specific consideration is given to girls and their particular needs and challenges. The Paris Principles aim to guide interventions with the following objectives: To prevent the unlawful recruitment or use of children; and To facilitate the release of CAAFAG; and To facilitate the reintegration of all CAAFAG; and To ensure the most protective environment for all children. The Paris Commitments \u2013 commitments to protect children from unlawful recruit- ment or use by armed forces or groups \u2013 supplement the Paris Principles and have two main priorities: (1) to put an end to the unlawful recruitment and use of children by armed forces and groups globally, and (2) to make all necessary efforts to uphold and apply the Paris Principles through political, diplomatic, humanitarian, technical assis- tance and funding roles, consistent with international obligations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7eaef814-c421-4c3f-ba9e-567ba84f84e3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": null, + "Paragraph": "\u201cThe Beijing Rules\u201d for the administration of Juvenile Justice. Applicable in the context of CAAFAG, the UN Standard Minimum Rules for the Administration of Juvenile Justice adopted by General Assembly resolution 40/33 in 1985 provide guidance for the arrest or detention of children. Children retain all the rights already covered for adults if arrested. The rules require detention of children only as a last resort so that arrest, detention or imprisonment of children should be avoided whenever possible. When children are arrested and detained, their cases are to be given the highest priority and handled expeditiously to ensure the shortest possible period of detention prior to trial. States should ensure that accountability mechanisms are fully in line with international law related to juvenile justice. International child rights and juvenile justice standards require that alternatives to normal judicial proceedings in criminal courts should be applied, providing that human rights and legal safeguards are fully respected (CRC, Article 40[3b], Rule 11, \u2018Beijing Rules\u2019). For example, restorative justice \u2013 achieved through finding alternatives to criminal courts \u2013 involves the child offender understanding and taking responsibility for his/her actions with the goal of achieving reconciliation between the offender, the victim and the wider community through reparations. Such a procedure should ensure that the rights of the child are protected throughout. The child\u2019s participation in a re- storative justice process shall be voluntary and preceded by informed consent (given by both the child and his/her parent or guardian). Measures to prevent the child from becoming distressed must be in place.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "1c10fd7f-d17b-48e5-952a-40e03baf6343", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 17, + "Paragraph": "Planning DDR processes for children DDR processes for children require joint planning and coordination between DDR prac- titioners and child protection actors involved in providing services. Joint planning and coordination should be informed by a detailed situation analysis and by a number of Minimum Preparedness Actions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "39e02e3c-22fa-4909-b209-f7c9b79b63a3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 17, + "Paragraph": "Assessments: Context analysis A detailed situation analysis should assess broad conflict-related issues (location, political and social dynamics, causes, impacts, etc.) but also the specific impacts on children, including disaggregation by gender, age and location (urban-rural). The situ- ation analysis is critical to identifying obstacles to, and opportunities for, reintegration support. A detailed situation analysis should examine: The objectives, tactics and command structure/management/hierarchy of the armed force or group; The circumstances, patterns, causes, conditions, means and extent of child recruit- ment by age and gender; The emotional and psychological consequences of children\u2019s living conditions and experiences and their gendered dimensions; Attitudes, beliefs and norms regarding gender identities in armed forces and groups and in the community; The attitudes of families and communities towards the conflict, and the extent of their resilience and capacities; The absorption capacity of and support services necessary in communities of re- turn, in particular families, which play a critical role in successful release and reintegration efforts; The extent of children\u2019s participation in armed forces and groups, including roles played and gender, age or other differences; Children\u2019s needs, expectations, and aspirations; The evident obstacles to, and opportunities for, child and youth reintegration, with consideration of what risks and opportunities may arise in the future; and The needs of, and challenges of working with, special groups (girls, girl mothers, disabled children, foreign children, young children, adolescents, male survivors of sexual violence, severely distressed children, children displaying signs of post-traumatic stress disorder, and unaccompanied and separated children). DDR practitioners should be aware that the act of asking about children\u2019s and commu- nities\u2019 wishes through assessments can raise expectations, which can only be managed by being honest about which services or assistance may or may not ultimately be provid- ed. Under no circumstances should interviewers or practitioners make promises or give assurances that they are not certain they can deliver. Neither should they make promises about actions others may take. Some suggested key questions for context analysis can be found in Box 1 (see also IDDRS 3.11 on Integrated Assessments).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "612902e7-b2a2-4ef8-9a9f-543ca884f355", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 19, + "Paragraph": "Minimum Preparedness Actions In addition to the context analysis, DDR practitioners and child protection actors should take the following Minimum Preparedness Actions into consideration when planning. These actions (outlined below) are informed by the Interagency Standing Committee\u2019s Emergency Response Preparedness Guidelines (2015): Risk monitoring is an activity that should be ongoing throughout implementation, based on initial risk assessments. Plans should be developed detailing how this ac- tion will be conducted. For CAAFAG, specific risks might include (re-)recruitment; lack of access to DDR processes; unidentified psychosocial trauma; family or community abuse; stigmatization; and sexual and gender-based violence. Risk monitoring should specifically consider the needs of girls of all ages. Risk monitoring is especially critical when children self-demobilize and return to communities during ongoing conflict. Results should be disaggregated to ensure that girls and other particularly vulnerable groups are considered. Clearly defined coordination and management arrangements are critical to ensuring a child-sensitive approach for DDR processes, particularly given the complexity of the process and the need for transparency and accountability to generate community sup- port. DDR processes for children involve a number of agencies and stakeholders (na- tional and international) and require comprehensive planning regarding how these bodies will coordinate and report. The opportunity for children to be able to report and provide feedback on DDR processes in a safe and confidential manner shall be ensured. Moreover, an exit strategy should feature within a coordinated approach. Needs assessments, information management and response monitoring arrangements must be central to any planning process. The needs of boy and girl CAAFAG are mul- tifaceted and may change over time. A robust needs assessment and ongoing moni- toring of the reintegration process for children is essential to minimize risk, identify opportunities for extended support and ensure the effective protection of all children \u2013 especially vulnerable children \u2013 involved in DDR. Effective information manage- ment should be a priority and should include disaggregated data (by age, sex, ethnicity, location, or any other valid variable) to enable DDR practitioners and child protection actors to proactively adapt their approaches as needs emerge. It is important to note that all organizations working with children should fully respect the rights and confi- dentiality of data subjects, and act in accordance with the \u201cdo no harm\u201d principle and the best interests of children. Case management systems should be community-based and, ideally, fit within existing community-based structures. Case management systems should be used to tailor the types of support that each child needs and should link to sexual and/or gender-based violence case management systems that provide specialized support for children who need it. Because reintegration of children is tailored to the individual needs of a child over time, a case management system is best to both address those needs and to build up case management systems in communities for the long term. Reintegration opportunities and services, including market analysis are critical to in- form an effective response that supports the sustainable economic reintegration of chil- dren. They should be used in conjunction with socioeconomic profiles to enable the development of solutions that meet market demand as well as the expectations of child participants and beneficiaries, taking into account gendered socio-cultural dynamics. See IDDRS 5.30 on Youth and DDR, sections 7 and 8, for more information. Operational capacity and arrangements to deliver reintegration outcomes and ensure protection are essential to DDR processes for children. Plans should be put in place to enhance the institutional capacity of relevant stakeholders (including UN agencies, national and local Governments, civil society and sectors/clusters) where necessary. Negotiation capacity should also be considered in situations where children continue to be retained by armed forces and groups. The capacity of local service providers, businesses and communities, all of which will be directly involved on a daily basis in the reintegration process, should also be supported. Contingency plans, linked to the risk analysis and monitoring system, should be developed to ensure that DDR processes for children retain enough flexibility to adapt to changing circumstances.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "cb3fade5-8d62-43ab-a08c-3b5ab37fbe27", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 20, + "Paragraph": "Data Data is critical to the design and implementation of DDR processes for children. Information on a child\u2019s identity, family, the history of their recruitment and experi- ence in their armed force or group, and their additional needs shall be collected by trained child protection personnel as early as possible and safely stored. All data shall be sex-disaggregated to ensure that DDR processes are able to effectively respond to gendered concerns.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "8b9aee0f-b1ab-47e4-a42e-7cd39244dc7c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 20, + "Paragraph": "Data collection Information collected from CAAFAG shall be used only to deliver services to children and to design and implement child- and gender-sensitive DDR processes. Other actors often try to obtain actionable military or intelligence information on armed opposition groups from demobilized children or may interrogate children as they view them as threats. Such actions could amount to a violation of child rights, as it places children in danger and may undermine the release process. The Paris Principles (Article 7.25) expressly state that \u201cinterviews should never be conducted to collect information for military purposes.\u201d In addition, Security Council resolution 2427 (2018) states that CAAFAG are to be treated as victims of violations of international law. A commitment shall be obtained from Governments that children will be handed over to civilian child protection authorities as soon as possible and that military information will not be sought from them under any circumstances. Where interviews are necessary for legit- imate purposes, as few individuals as possible should interview children to eliminate risks and harms that stem from repeated interviewing. Interviewers shall be trained child protection actors skilled in interviewing children. The Security Council has expressed \u201cgrave concern at the use of detained chil- dren for information gathering purposes.\u201d (UNSCR 2427, OP 20) Therefore, interviews with CAAFAG shall be carried out with the utmost concern for the child\u2019s privacy, dignity and confidentiality. Those providing information (children and caregivers) shall be fully informed about the purpose of the information gathering, how the in- formation will be used and how it will be kept confidential. Voluntary and informed consent shall be required before proceeding with any interview and the child shall be informed that he or she may stop the interview at any time without any need to give a reason. Child protection agencies and/or safeguarding personnel shall provide support, guidance and direction for such interviews. If no parent or guardian is avail- able, a trusted adult shall be provided during any interview and undertake the role of protecting the child\u2019s interests. Interviews shall be conducted in the mother tongue of the child at the pace that he or she sets. Questions shall be posed in child-friendly and age-appropriate language and be rephrased if necessary, and information received clarified. Some information can be sensitive, and the children who provide it may be subject to threats. As children are usually aware of the threats they face, they may provide misleading information to try to protect themselves. These fears shall be identified and measures to deal with them shall be developed. Security should be a key concern and informed by a security risk assessment. During interviews, staff shall pay attention to, and have plans to safe- guard children from, anyone who may intimidate or threaten them. Interviews with children shall be carried out in a safe place. If the child wishes to stop the interview, or begins to display signs of distress, the interview shall be stopped immediately. To safeguard the child and the interviewer, no adult shall conduct an interview alone with the child; mixed gender teams shall be provided. No child shall be subject to pressure, coercion, manipulation, including promises, or to any other physical, emotional or psychological tactics to obtain information.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "27a73c7a-b693-4958-aa80-829d4b53efb8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 21, + "Paragraph": "Data management Effective and secure data management is an important aspect of DDR processes for children as, beyond ethical considerations, it helps to create trust in the DDR process. Data management shall follow a predetermined and standardized format, including information on roles and responsibilities, procedures and protocols for data collec- tion, processing, storage, sharing, reporting and archiving. Rules on confidentiality and information security shall be established, and all relevant staff shall be trained in these rules, to protect the security of children and their families, and staff. Databases that contain sensitive information related to children shall be encrypted and access to information shall be based on principles of informed consent, \u2018need to know\u2019 basis, \u2018do no harm\u2019 and the best interests of the child so that only those who need to have access to the information shall be granted permissions and the ability to do so.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7a30defa-06df-4183-b054-d99cc2f06d98", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 22, + "Paragraph": "Gender responsive and transformative The specific needs of girls and boys shall be fully considered in all stages of DDR pro- cesses. A gender-transformative approach should be pursued, aiming to shift social norms and address structural inequalities that lead girls and boys to engage in armed conflict and that negatively affect their reintegration. Within DDR processes, a gen- der-transformative approach shall focus on the following: Agency: Interventions should strengthen the individual and collective capacities (knowledge and skills), attitudes, critical reflection, assets, actions and access to services that support the reintegration of girls. Relations: Interventions should equip girls with the skills to navigate the expec- tations and cooperative or negotiation dynamics embedded within relationships between people in the home, market, community, and groups and organizations that will influence choice. Structures: Interventions should address the informal and formal institutional rules and practices, social norms and statuses that limit options available to girls and work to create space for their empowerment. The inclusion of girls in DDR processes is central to a gender-transformative approach. CAAFAG are often at great risk of gender-based violence, including sexual violence, and hence may require a range of gender-specific services and programmes to support their recovery. Children, especially girls, are often not identified during DDR processes as they are not always considered to be full members of an armed force or group or may be treated as dependents or wives. Furthermore, DDR practitioners are not always properly trained to identify girls associated with or formerly associated with armed forces and groups and cater to their needs. Often, girls who informally leave armed forces or groups do so to avoid stigma- tization or reprisal, or because they are unaware that they have the right to ben- efit from any kind of support. For these reasons, specific mechanisms should be developed to identify girls formerly asso- ciated with armed forces and groups and inform them about the benefits they may be entitled to through child-sensitive DDR processes. In order not to put girls at risk, this must be done in a sensitive manner, for example, through organizations and groups with which girls are already involved, such as health care facilities (particularly those dealing with reproductive health), religious centres and organizations that assist survivors of sexual violence (see IDDRS 5.10 on Women, Gender and DDR). As a key element, a gender-transformative approach should also engage boys, young men, and the wider community so that girls may be viewed and treated more equally by the whole community. It should also recognize that boys and men may also become associated with armed forces and groups due to expectations about the gender roles they should perform, including roles as protector and bread winner even at young ages, particularly where a father has died or is missing, and about social norms that promote violence and/or taking up arms as acceptable or preferred measures to resolve problems. This community-based approach is necessary to help promote the empower- ment of girls by educating traditional patriarchal communities on gender equality and thus work towards countering harmful gender norms that enable violence to flourish. Other gender transformative approaches critical for boys include: Non-violent forms of masculinities: Often through socialization into violence or through witnessing the use of violence while with armed forces and groups, boys may develop an association of violence through social norms surrounding mas- culinity and social recognition. Such associations may in turn lead to the develop- ment of anti-social behaviour towards themselves, to girls or vulnerable groups, or to community. Supporting boys in deconstructing violent or militarized norms about masculinity is an essential part of breaking the cycle of violence and sup- porting successful reintegration. This may also involve supporting emotional skill development, including understanding and working with anger in a healthy way. Gender-Equitable Relations and Structures: The ideology, structure and treatment of women or girls in armed forces and groups may have led to the development of non-equitable views regarding gender norms, which may affect notions of what \u2018consent\u2019 is. Supporting equitable norms, views, and approaches to being in relationship with girls, and cultivating respect for agency and choice of girls and women, is critical to supporting boys formulate healthy norms and relationships in adulthood. A gender-transformative approach should also ensure that gender is a key feature of all DDR assessments and is incorporated into all elements of release and reintegration (see IDDRS 3.10 on Integrated Assessments).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "09781376-34e6-4676-98b4-67ec2043e280", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 23, + "Paragraph": "Prevention of recruitment and re-recruitment of children The factors that lead to children associating with armed forces and groups are com- plex, and usually involve a number of push and pull factors specific to each child and their wider environment. Understanding the recruitment pathways of children into armed forces and groups is important for development of effective (re-)recruitment prevention strategies and can influence reintegration programming. For example, in some instances of forcible recruitment, new members are required to engage in violence against their family and community to reduce the incentive to escape. This can make their reintegration and community acceptance particularly difficult. Prevention efforts should start early and take place before and continuously throughout armed conflict. Furthermore, these efforts should recognize that children are embedded in families and communities, and programmes must target each part of their ecosystem. Prevention efforts should be based on an analysis of the dynam- ics of recruitment and its underlying causes and include advocacy strategies that are directed at all levels of governance, both formal and informal. Government ministries, child focused nongovernmental organizations, DDR practitioners and child protec- tion actors should monitor and analyse information on the recruitment of children to understand recruitment patterns.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "d6646c5b-1665-48d3-a01f-33342ff1fe87", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": null, + "Paragraph": "Identification and documentation of risks of (re-)recruitment To prevent the (re-)recruitment of children as part of DDR processes, various risk factors should be analysed at the structural, social and individual levels (see Table 1 below). Special focus shall be given to children at the most risk of recruitment.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1553b951-2e6f-40e3-bcd6-639d41fa7dad", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": null, + "Paragraph": "Some children are particularly vulnerable to (re-)recruitment because of inadequate protection, such as children living in conflict zones, child refugees or those who have been internally displaced, unaccompanied children, orphans or those separated from their families, children in child- or female-headed households, and children with very young parents. Girls and boys are at greater risk of being recruited in certain locations, such as zones of intense conflict; areas frequently crossed by troops; and public places with concentrations of children such as markets, schools, refugee camps or camps for internally displaced persons, and places where children go to fetch wood or water. Child recruitment is not always a sudden occurrence, but can take place gradually, progressing from initial contact to formal association. Children may start with occa- sional visits to the camps of armed forces or groups to look for food, polish shoes or carry out other tasks. Increasingly, they are given more responsibilities, then they may seek shelter at these camps, and even- tually they start to take part fully in mili- tary life. Preventing this kind of \u2018voluntary\u2019 recruitment is a particular challenge and engagement is needed to sensitize communities on the risks of children having contact and forming associations with an armed force or group, even if it appears harmless. It is also important that the identification and documentation of (re-)recruitment risk considers aspects of child agency that may make children more vulnerable to recruitment. While forcible recruitment remains an issue, most children are recruit- ed through the manipulation of their economic, social, political and/or psychological vulnerability.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "59a6580f-46ef-4138-a2ab-cb4ac6326876", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 25, + "Paragraph": "Prevention of recruitment through the creation of a protective environment The most effective way to prevent child (re-)recruitment is the development and on- going strengthening of a protective environment. Building a protective environment helps all children in the community and supports not only prevention of (re-)recruit- ment but effective reintegration. To this end, DDR practitioners should jointly coordi- nate with Government, civil society, and child protection actors involved in providing services during DDR processes to strengthen the protective environment of children in affected communities through:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a429dff6-7187-472c-9fdd-126558fb78eb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 25, + "Paragraph": "Family resilience Efforts should be made to strengthen family resilience, especially in assisting parents to cope with wartime stress, including through access to mental health support and parenting classes, and to minimize the risks of negative family coping behaviours (e.g., child neglect, domestic violence, child marriage and parental discord). Parents also have a role to play to build resilience in their children and educate them on the risks of recruitment. This may include informing them about recruiting efforts on the internet and social media, if they play a key role in driving the conflict. Parents should also be supported to counter gender-based societal expectations of boys as fighters and girls as \u2018bush wives\u2019.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9ee39c56-239a-422f-86ce-266beb47a70f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 25, + "Paragraph": "Community resilience Working with communities to help them better understand why children might join armed forces and groups, explain the developmental effects of child recruitment, and identify how to protect children will all help to prevent (re-)recruitment. Communi- ties should be encouraged to establish communitybased child protection networks. These networks can work on awareness-raising, good parenting skills, identifying at- risk children and mediating family disputes (where appropriate and with training). Where appropriate, these networks can be supported to establish community mon- itoring mechanisms, such as early warn- ing systems. Non-individually identifiable data from these early warning systems can then be shared with national human rights commissions, national observatories and/or Government authorities. In addition, where appropriate, children may be included in community violence reduction (CVR) programmes, consistent with relevant national and international legal safeguards, including on the involvement of children in hazardous work, to ensure their rights, needs and well-being are carefully accounted for (see section 8.4 below and IDDRS 2.30 on Community Violence Reduction).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "48431d43-1f2e-45f0-ae0d-a24651584f59", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 26, + "Paragraph": "Addressing socioeconomic insecurity An important way to prevent child recruitment into armed forces and groups can be to address the underlying socioeconomic factors that cause children to be vulnerable to (re-)recruitment. Investment in education and broader economic development and employment opportunities may help. Investment in basic service delivery, necessary community infrastructure and key markets at the local level can also support commu- nity initiatives to prevent (re-)recruitment. Socioeconomic prevention methodologies should be linked \u201ccoherently and as early as possible to national and sectoral frame- works and policies for peacebuilding, recovery and development where they exist at the country level.\u201d4", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "577d2666-39a5-4906-8fa6-b2df71d50c4d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 26, + "Paragraph": "Child protection advocacy Adult members of armed forces and groups shall be sensitized regarding child rights, including rights of girls. Taking this action contributes to a protective environment, as it removes justifications for recruitment of children. Advocacy shall also be directed towards national decision makers, as this can raise awareness of the recruitment and use of children in armed conflict and can lead to the introduction of new laws. Advocacy may include measures towards the ratifi- cation and implementation of international legal instruments on child protection, or the reinforcement of these legal instruments; the adaptation of laws related to the re- cruitment and use of children in armed conflict; and the end of impunity for those who recruit and/or use children in armed conflict. It should also include laws and policies that protect children against forms of child abuse, including gender-based vio- lence, that are sometimes among the factors that prompt children to join armed forces and groups. After enactment, appropriate sanctions can be implemented and enforced against people who continue to recruit children. A strong awareness of the existing legal framework is considered central to pre- vention strategies, but international norms and procedures alone do not restrain armed groups. Awareness campaigns should be followed up with accountability measures against the perpetrators. However, it should also be recognized that punitive approach- es intended to strengthen prevention down the line can also have unintended conse- quences, including armed groups actively hiding information about children in their ranks, which may make military commanders more reluctant to enter DDR processes (see IDDRS 6.20 on DDR and Transitional Justice).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b5b3df13-1b13-4ae5-97d8-b3e86a7aad94", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 27, + "Paragraph": "7.2.7 Monitoring and reporting on the recruitment and use of children Monitoring and reporting on the (re-)recruitment of children is an important compo- nent of prevention and should be given adequate investment in terms of resourcing, capacity, safety and time. The UN mandated monitoring and reporting mechanism (MRM) on grave violations of child rights in situations of armed conflict, including their recruitment and use, is a comprehensive system for collecting, verifying and reporting on such violations (UNSCR 1612 (2005)). The MRM is designed \u201cto provide for the systematic gathering of accurate, timely, objective and reliable information on grave violations committed against children\u201d5 within the context of armed conflict that will enable responses to increase compliance with international legal obligations and to end and prevent violations. Where the MRM has been activated, engagement with parties to the conflict to develop action plans to eliminate recruitment and use of children can both lead to release of children in the ranks of armed forces or groups and provide opportunities to prevent future (re-)recruitment (see section 5.3). Where pos- sible and safe to do so, DDR processes should support engagement with armed forces and groups and be part of verification of compliance with such action plans, including commitments to release children. Any activities should adhere to mandatory reporting laws on child abuse or gender- based violence against children, regardless of whether an MRM has been activated. Practitioners should be clear about what these laws are, be sure that children under- stand any mandatory reporting nationally and provide informed consent if relevant. Referral pathways for necessary response services should be available before engaging with survivors so that referrals can be made in the event of a disclosure. In addition, where relevant and safe, there should be coordination, harmonization and cross checks with the Monitoring and Reporting Arrangement (MARA) of the Conflict Related Sexual Violence (CRSV). CRSV takes multiple forms such as rape, forced pregnancy, forced sterilization, forced abortion, forced prostitution, sexual exploitation, trafficking, sexual enslavement, forced circumcision, castration, forced nudity or any other form of sexual violence of comparable gravity. Depending on the circumstances, it could constitute a war crime, a crime against humanity, genocide, torture or other gross violation of human rights. See definition of CRSV: Analytical and Conceptual Framing of Conflict-related Sexual Violence, June 2011.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d262a5ea-12d8-4026-b2bc-0c79179a3095", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 28, + "Paragraph": "Child-sensitive approaches to DDR When designing and implementing DDR processes for CAAFAG, DDR practitioners and child protection actors must tailor support to the individual child and root them in community-based approaches and structures. Individualized interventions recognize that there important differences between children based on age; from those who may appear to have voluntarily joined an armed force or group and those who have been obviously forced to do so; from those who have made decisions and been given leadership or other responsibilities when they were members of armed forces and groups and those who have been slaves; and from those who have a family waiting for them and those who cannot or wish not to return, etc. Not all children will require the same level of attention, the same approach, or the same support. Some children (e.g., girl mothers, child heads of households, etc.) may have current responsibilities that re- quire training support for immediate em- ployment. Workable ways of addressing each child\u2019s situation should be developed. However, it is critical that support to CAAFAG be provided through broader holis- tic community-based strategies and approaches, that target CAAFAG as well as other children in conflict-affected communities. Providing similar services and reintegration support that benefit children within the wider community will mitigate against the risk of resentment, while also serving as a prevention tool that can build community resilience and address some of the underlying factors that contribute to the (re)recruit- ment of children into armed forces and groups.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4449027c-9d93-4c3e-8fcd-68793771296d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 28, + "Paragraph": "Disarmament Disarmament may represent the first sustained contact for CAAFAG with people out- side of the armed force or group. This can be a difficult process, as it is often the first step in the transition from military to civilian life. As outlined in section 4.2.1, CAAFAG shall be eligible for DDR processes for children irrespective of whether they present themselves with a weapon or ammunition and irrespective of the role they may have played. Children with weapons and ammunition shall be disarmed, preferably by a military or government authority rather than a DDR practitioner or child protection actor. They shall not be required to demonstrate that they know how to use a weapon. CAAFAG shall be given the option of receiving a document certifying the surrender of their weapon or ammunition if there is a procedure in place and if this is in their best interests. For example, this would be a positive option if the certificate can protect the child against any doubt over his/her surrender of the weapon/ammunition, but not if it will be seen as an admission of guilt and participation in violence in an unstable or insecure environment or if it could lead to criminal prosecution (see IDDRS 4.10 on Disarmament).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "373e8d65-c34b-42fe-8be2-fa085d9bce53", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 29, + "Paragraph": "Demobilization Transition from military to civilian life may be difficult for CAAFAG because, in spite of the hardships they may have experienced during their association, they may also have found a defined role, responsibility, purpose, status and power in an armed force or group. For children who have been in an armed force or group for many years, it may at first seem impossible to conceive of a new life; this is particularly true of young- er children or CAAFAG who have been indoctrinated to believe that military life is best for them and who know nothing else. DDR practitioners must work together with child protection actors to prioritize physically removing CAAFAG from contact with adult combatants. Removing CAAF- AG from armed forces and groups should be done in a responsible but efficient way. Symbolic actions \u2013 such as replacing military clothing with civilian clothing \u2013 can aid this adjustment; however, such actions must be clearly explained, and the child\u2019s wel- fare must be paramount. Providing civilian documentation such as identity papers may be symbolic but also practical as it may allow the child to access certain services and therefore ease the child\u2019s reintegration. Children need immediate reassurance that there are fair and realistic alternatives to military life and should receive information that they can understand about the benefits of participating in DDR processes as well as the different steps of the process. However, under no circumstances should inter- viewers or practitioners make promises or give assurances that they are not absolutely certain they can deliver. Official documentation marking demobilization may help to protect children from abuse by authorities or armed forces and groups that are still active. However, staff should establish that such documents cannot be seen and will not be used as an admission of guilt or wrongdoing. Official identification documents certifying that a child has demobilized can be provided when this protects children from re-recruit- ment and assures their access to reintegration support. Civilian documents proving the identity of the child with no mention of his/her participation in an armed force or group should be made available as soon as possible.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "01d02e77-aa49-4e95-be15-bf081f294334", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 29, + "Paragraph": "Demobilization sites Depending on the specific DDR process in place, demobilization may occur at semi- permanent military-controlled sites (such as cantonment sites), reception centres or mobile demobilization sites (see IDDRS 4.20 on Demobilization). When reporting to such sites, the time CAAFAG spend at the site shall be as short as possible, and every effort shall be made to rapidly identify them, register them and supply them with their immediate needs. Where possible, children should be identified before arrival at the demobilization site so that the documentation process (identification, verification, reg- istration, medical needs) and other applicable procedures last no longer than 48 hours, after which they shall be transferred to an interim care centre (ICC) for children or to another location under civilian control. If CAAFAG report or are brought to mobile demobilization sites or reception centres, standard operating procedures shall be in place outlining when and how the handover to civilian authorities will take place. At all demobilization sites, semi-permanent or otherwise, particular attention shall be given to the safety and protection of children during their stay, through measures such as proper lighting, regular surveillance and security patrols. Children shall be physically separated from adult combatants, and a security system shall be established to prevent adult access to them. Girl mothers, however, shall not be separated from their children. Separate accommodation must be provided for boys and girls, including separate washing and toilet facilities, with specific health services provided when nec- essary (e.g., reproductive health services and hygiene kits adapted to specific needs). Female staff shall be provided for locations where girls are staying. Since a number of girls are likely to be mothers, demobilization sites shall also be designed to provide proper food and health care for infants and young children, with childcare assistance provided for mothers unable to care for their children. Demo- bilization sites must, without exception, provide medical health screening, including sexual health screening to all children, and provide necessary treatment. Efforts shall be made to improve the overall health of CAAFAG through early detection, immuniza- tion, treatment of severe conditions (such as malaria and acute respiratory infections), treatment for wounds and injuries, triage and referral of serious cases to secondary/ tertiary facilities (see IDDRS 5.70 on Health and DDR). Children shall be informed that they have the right not to be abused or exploited including the right to protection from sexual exploitation and abuse, and child labour, and that they have the right and ability, through adapted and efficient report- ing and complaints mechanisms, to report abuse. When children do report abuse or exploitation by adult former combatants, staff or adult caregivers, they shall not be stigmatized or made to feel disloyal in any way. Their complaints must also be acted upon immediately through child-friendly mechanisms designed and put in place to protect them from such exploitation and to punish the offenders to the fullest extent possible. If children reporting abuse request such a service, they shall be given space and time to share their emotions and reflect on their experiences with health workers trained in psychotherapeutic assistance. Mechanisms shall be established to prevent offending staff from working with children in similar situations in the future (see also section 4.10.1).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "612a8154-afe6-49d1-a998-1dcade911918", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 30, + "Paragraph": "Transport Children are particularly vulnerable when their physical protection is no longer secure, including during troop movements between camps and demobilization sites. Suffi- cient, appropriate and secured means of transportation shall be planned in order to transport children in the shortest time possible, and they should be accompanied by civilian child protection staff. Children shall be informed, clearly and in advance, of all movements arranged for them. Family accompaniment during transport should be encouraged where possible, as this will promote community acceptance. Interim alternative care", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d2c23e97-8843-460d-8974-2205fa9d4fe3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 30, + "Paragraph": "8.3. 1 Interim care centres Interim care centres are not necessary in all DDR processes for children, especially when the placement of a child in an ICC delays family and community reunification. However, ICCs can be used as a last resort, as they provide a secure space that may help children sever their links with armed forces and groups; allow time for family tracing, verification and, if necessary, gradual reunification (see section 7.4); enable medical support to be provided, including mental health and psychosocial support; and pro- vide an opportunity for pre-discharge awareness-raising/ sensitization. ICCs are not the same as cantonment sites. ICCs shall be child-friendly and their management and services consistent with the Alliance for Child Protection in Human- itarian Action\u2019s Minimum Standards and the Guiding Principles in Interim Care Plan- ning and Provision6 for community-based interim care. The best interests of the child shall be a primary consideration. Factors of necessity and appropriateness shall also be considered with the aim that a child will be placed into an ICC only if there is no other family- or community-based interim care available, and any placement will be for the shortest period necessary. Staffing levels for ICCs shall depend on the number, ages and needs of children in the facility. Their care and protection should be paramount, with an emphasis on reuniting children with their families or providing alternative community-based care solutions as swiftly as possible (see Annex C for more details). While security of the facility is a key concern, ICCs shall remain child-friendly and not inadvertently transform into detention facilities. Adults shall not be accommodated at ICCs, and children accommodated at these centres should be grouped according to age (unless they are girl mothers). Tracing, verification, reunification, case management and monitoring should be carried out at ICCs to facilitate the return of children to their communities (including community outreach). Health check-ups and specialized health services should be provided \u2013 for example, reproductive health and antenatal services, diagnosis of sexually transmitted infections, and voluntary and confidential HIV testing and counselling \u2013 while nutri- tional deficiencies and war-related injuries should receive treatment. Children should receive counselling, including help to overcome distress or trauma, develop self-esteem and learn life skills; learn about reintegration and livelihood opportunities, as well as information about child labour; and receive peace education and training in non-violent conflict resolution to help them regain a sense of the social norms and routines of civil- ian life. Sports, cultural and recreational activities should be provided to keep children occupied and help them build trust, but there should be no formal education or train- ing activities within the ICC apart from assessments of literacy and numeracy. Formal education and training should be provided within the community. Children should be transferred as quickly as possible to their communities, consistent with their best inter- ests, for reintegration into communities, education, and social cohesion activities with all children as well as any community-based case management support needed. Where return is not possible, family and community-based solutions should be sought.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "f249e318-7f07-4692-ac37-8e36de204b53", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 31, + "Paragraph": "Interim care placements Interim care placements should be used in cases where ICCs are not available or appro- priate (for example, when a child is already in the community) and when family unifi- cation is not possible or in the best interests of the child. These types of placements can include community-based care, fostering or guardianship. The Inter-Agency Guiding Principles on Unaccompanied and Separated Children (2004) provide clear guidelines on how interim care placements should be conducted. Furthermore, community-based temporary alternative care must be consistent with the United Nations Guidelines for Alternative Care (General Assembly resolution 64/142).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "de1c004c-91c4-4f4d-a5cd-3c4d3178adde", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 32, + "Paragraph": "Community violence reduction DDR processes increasingly include CVR programmes in an effort to reduce armed violence and sustain peace (see IDDRS 2.30 on Community Violence Reduction). Spe- cific provisions shall be developed to ensure the protection, care and support of young people (aged 15\u201324) who participate in CVR programmes (see IDDRS 5.30 on Youth and DDR). Where appropriate, children (under 18) may be included in CVR activities, but with relevant legal safeguards to ensure their rights and needs are carefully accounted for.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "00ba8b63-da91-4062-9001-c6bfc4c03a45", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 14, + "Paragraph": "Reintegration The purpose of reintegration support is to provide children with assistance that has been tailored to their needs and that provides them with a viable, long-term alternative to military life. Reintegration support provided to children shall take into account dif- ferences in age, sex, individual resilience, the capacity of the child to make informed decisions, the length of stay and individual experience with an armed force or group, culture, the reintegration opportunities in an environment that will have changed in the child\u2019s absence and other relevant fac- tors. Reintegration support should be in- dividualized, targeting CAAFAG as well as other at-risk, vulnerable or conflict- affected children, as well as community-based, utilizing strategies and approaches that empower communities to accept and receive CAAFAG and support their reintegration. Because reintegration of adult ex-combatants and persons formerly associated with armed forces and groups should be considered even in the absence of a DDR programme, reintegration programmes of adults and children can mutually reinforce each other and where relevant and safe to do so should be coordinated as much as possible. (see IDDRS 2.40 Reintegration as Part of Sustaining Peace, and IDDRS 4.30 on Reintegration).", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ce189911-3021-4f1d-becd-8fcf0396613e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 32, + "Paragraph": "Health CAAFAG face a range of health issues that may impact their reintegration. The identi- fication of health needs shall begin when the child first comes into contact with a DDR process, for example, at a reception centre or cantonment site or an interim care centre. However, ongoing health needs shall also be addressed during the reintegration pro- cess. This may be via referral to relevant local or national health facilities, medical fee coverage or the direct provision of support. All service and referral provision shall be private and confidential. Reproductive health As soon as possible after their release from an armed force or group, and for as long as necessary, girls and boys who have survived sexual violence, abuse and exploitation shall receive medical care in addition to mental health and psychosocial care (see section 7.9.1). Consideration shall also be given to boys who may have been forced to perpetrate sexual violence. All children who have experienced sexual violence shall receive access to the Minimum Initial Service Package (MISP) for sexual and reproductive health.7 Girl mothers shall be referred to community health services and psychosocial support as a priority. To prevent cycles of violence, girl mothers shall be enabled to learn posi- tive parenting skills so that their children develop in a nurturing household. DDR practitioners should invest in reproductive health awareness-raising initi- atives for boys and girls (especially adolescents) covering issues such as safe mother- hood, sexual violence, sexually transmitted infections, family planning and the repro- ductive health of young people. Increasing the awareness of boys will help to reduce the reproductive health burden on girls and enable a gender-transformative approach (see section 4.3). Consideration shall be given to any sensitivities that may arise through the inclusion of boys in these awareness-raising initiatives, and necessary preparations shall be made with families and community leaders to gain their support. HIV/AIDS Children who test positive for HIV/AIDS may experience additional community stig- matization that negatively impacts upon their reintegration. Initial screening and test- ing for HIV/AIDS shall be provided to CAAFAG during demobilization in a manner that voluntary and confidential. During reintegration, support for children living with HIV/AIDS should include specialist counselling by personnel with experience of work- ing with children, support to families, targeted referrals to existing medical facilities and linkages to local, national and/or international health programmes. To ease rein- tegration, community-based HIV/AIDS awareness training and education can be con- sidered (see IDDRS 5.60 on HIV/AIDS and DDR). Children may also prefer to receive treatment in locations that are discreet (i.e., not in public spaces or through discreet entrances at clinics). Drug and alcohol addiction Drugs and alcohol are often used by commanders to establish dependence, manipu- late and coerce children into committing violence. Children\u2019s substance use can cre- ate obstacles to reintegration such as behavioural issues in the home and community, risk-taking behaviour, poor nutrition and general health, and increased vulnerability to re-recruitment. DDR practitioners should coordinate with child-focused local, na- tional and/or international health organizations to develop or identify for referral drug and alcohol rehabilitation programmes adapted to the needs of CAAFAG. Treatment shall follow the International Standards for the Treatment of Drug Use Disorders.8", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "4223ed90-c56e-456d-a14e-30a789e92998", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 33, + "Paragraph": "Mental health and psychosocial support and special care Mental and psychosocial health is critical to effective reintegration for all age groups; however, children face specific challenges that can seriously undermine their return to civilian life. Some children may have mental health or psychosocial needs when they re-enter their communities due to their experiences during conflict, the tremendous effort required to adapt to being back in civilian life, anxiety and uncertainty, stigma- tization, fear of being rejected, poverty and a lack of livelihood. Mental health and psychosocial support should be offered (dependent on individ- ual need and resources) to help children develop new patterns of behaviour, improve their self-esteem, develop their capacity to make decisions about the future and enable them to express emotions should they want to do so. Children and communities, with support, do have the capacity to cope with the distress caused by war. Mental health and psychosocial support activities should build on children\u2019s natural resilience and family and community support mechanisms and encourage coping and positive devel- opment. A community-based case management system should be active for children who require individualized mental health support. This system should be available for all children in the community who may be in need. Some children may need specific mental health or psychosocial assistance to over- come particularly negative or harmful experiences during their stay with an armed force or group. Boys and girls who have experienced sexual violence, including when of a prolonged nature, may face sig- nificant psychosocial issues affecting their reintegration \u2013 for example, an inability to trust adults, aggression and social with- drawal. Those living with injury and disa- bility and the terminally ill, in particular, require care that is adapted to their needs and environment. Mental health and psychosocial support interventions for children in DDR processes shall abide by the following core principles:9 Human rights and equality: Focus on the protection of children most at risk of human rights violations and the promotion of equity and non-discrimination, maximizing fairness across all sub-groups of children. Equality in provision of support includes taking into consideration and tailoring support to the specific, and different needs, of boys and girls. Participation: Ensure the participation of children in decisions affecting them to support their resilience and promote the participation of families and communi- ties, as they are the most important support structures for children\u2019s psychosocial health. Do no harm: Minimize the risk of harm to children through psychosocial support by employing good coordination (with families, communities and other actors), appropriate needs assessments, cultural sensitivity, and ongoing monitoring and reflection on approach. Build on available resources and capacities: Engage with existing structures and self-help mechanisms to root the intervention in local solutions. Integrated support systems: Integrate into wider systems (e.g., existing community support mechanisms, formal/non-formal school systems, general health services, general mental health services, social services) to reach more people (community- based approaches) and limit stigma. Multilayered supports: A layered system of complementary supports is most effective in meeting different needs: Basic services and security: Securing basic needs (food, shelter, water, basic health care) and ensuring a minimum level of security represent the first steps in mental and psychosocial well-being. Community and family supports: Most children will require some level of fami- ly/community support to address psychosocial disruption. This may include communal healing ceremonies, supportive parenting programmes, formal and non-formal educational activities, livelihood activities and the activation of social networks. Focused, non-specialized supports: More-affected children will require interven- tions by trained and supervised personnel in areas such as psychological first aid and basic mental health care by primary health-care workers. Specialized services: Targeting the most affected children who exhibit serious mental health and psychosocial symptoms and require either (a) referral to specialized services, if they exist, or (b) initiation of longer-term training and supervision of primary/general health-care providers. Each context requires a specific approach to mental health and psychosocial support. However, Annex D provides some generalized do\u2019s and don\u2019ts for planning mental health and psychosocial support interventions. The guidelines for psychosocial sup- port set out in IDDRS 5.30 on Youth and DDR are also applicable to children, although specific considerations for age should be made.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "32905fde-2662-44a4-8b82-262514f8cd16", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 35, + "Paragraph": "Family tracing and reunification Following the release of children from armed forces and groups, efforts should be made to reunify children with their families, whenever possible and in their best interests. Family tracing and reunification shall be based on the Inter-Agency Guiding Principles on Unaccompanied and Separated Children.10 Family reunification is not simply a mat- ter of returning a child to his or her family, but requires preparation, mediation, and follow-up, possibly including ceremonies of return, to help the family recognize and address problems of alienation, addiction, aggression and resistance to civil forms of authority. Reunification also involves the family in decisions regarding the child\u2019s re-adaptation, education, learning and training. Children need to be reassured that their families want them back and accept them as they now are. Assistance should not only consist of material aid, but also include social support and follow-up. Family tracing should be started at the earliest possible stage and can be carried out at the same time as other activities. Family reunification will follow after mediation and an assessment of the situation that is quick, but thorough enough to be sure that there is no threat or discomfort to the child. Children can feel worried about returning to their family or community because of acts they may have committed when with armed forces or groups, or for any number of other reasons (e.g., girls may have been victims of sexual violence, abuse or exploitation, and may feel especially trepidatious if they have children born from those experiences). Phased approaches to reunification may be considered if reunification is deter- mined to be in the best interests of the child but certain challenges exist. For example, there may be family trauma as a result of conflict, or economic conditions may make immediate reunification difficult. These issues may also necessitate ongoing mediation, as well as psychosocial support to the child and family focused initially on the im- mediate challenge of reunification, but with a longer-term strategy to address more systemic issues. Family-based reintegration and services are crucial to the long-term success of reintegration. Case management may need to include components on support to families such as parenting support or economic support to the adults in the family. In some cases, family reunification may not be in the best interests of the child, because of difficult security or family conditions that do not provide the child with required levels of protection. It must also be recognized that poor family conditions or family connections to armed forces and groups may have been the reason the child was recruited in the first place. If these conditions remain unchanged, children are at risk of being re-recruited. When family reunification is not in the best interests of the child, for whatever reason, the aforementioned Guidelines for Alternative Care shall be followed.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "36c3b2d4-03c7-42e5-836c-c4011c4ed2cf", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 36, + "Paragraph": "Supporting families and communities Families and communities have a critical role to play in the successful reintegration of CAAFAG. After their release, many CAAFAG return to some form of family relation- ship \u2013 be it with parents or extended family. Others, however, do not return to their family due to fear or rejection, or because their families may have been killed or cannot be traced. Family rejection often disproportionately affects girls, as they are presumed to have engaged in sexual relations with men or to have performed roles not regarded as suitable for girls according to traditional norms. With family acceptance and support, reintegration is more likely to be successful. The process of family reintegration, however, is not always simple. Residual conflict may remain, or new conflicts may emerge due to various stressors. Intergeneration- al conflict, often a feature of societies in conflict, may be an issue and, as returning children push for voice and recognition, can intensify. Assisting families in the creation of a supportive environment for returning CAAFAG can be achieved through a variety of means and should be considered in all DDR processes for children. This support may take a number of different forms: Psychosocial support to the extended family can help to address broader psycho- social well-being concerns, overcome initial tensions and strengthen the resilience of the family as a whole. Positive parenting programmes can increase awareness of the rights (and needs) of the child and help to develop parenting skills to better support returning CAAFAG (e.g., recognizing symptoms of trauma, parent-child communication, productively addressing negative behaviours in the child). Promotion of parent-teacher associations (development or membership of) can provide ways for parents to support their children in school and highlight parents\u2019 needs (e.g., help with fees, uniforms, food). Income-generating activities that involve or support the whole family rather than only the child can alleviate financial concerns and promote working together. Establishment of community-based child protection networks involving parents can assist in the delivery of early warnings related to recruitment risk, children\u2019s engagement in risk-taking behaviours (e.g., drug or alcohol abuse, unsafe sex) or conflicts among children and youth in the community. Support to associations of families of conflict-affected children beyond CAAFAG can help build awareness in the community of their specific needs, address stigma and provide support in a range of areas including health, income generation, com- munity voice and participation. When supporting families to take a stronger role in the reintegration of their chil- dren, it is important that the wider community does not feel that children are rewarded for their involvement with armed forces or groups, or that broader community needs are being neglected. Community acceptance is essential for a child\u2019s reintegration, but preconceived ideas about children coming out of armed forces and groups, or the scars of violence committed against families and/or communities, can severely limit community sup- port. To prevent reprisals, stigmatization and community rejection, communities shall be prepared for returning CAAFAG through sensitization. This sensitization process shall begin as early as possible. Additional activities to help prepare the community include the strengthening of local child protection networks, peace and reconciliation education, and events aimed at encouraging the lasting reintegration of children. Cultural, religious and traditional rituals can play an important role in the pro- tection and reintegration of girls and boys into their communities. These may include traditional healing, cleansing and forgiveness rituals, where they are considered not to be harmful; the development of solidarity mechanisms based on tradition; and the use of proverbs and sayings in sensitization and mediation activities. Care should be taken to ensure that religious beliefs serve the best interests of the child, especially in areas where religion or cultural values may have played a role in recruitment. Reconciliation ceremonies can offer forgiveness for acts committed, allow children to be \u2018cleansed\u2019 of the violence they have suffered or contributed to, restore cultural links and demonstrate children\u2019s involve- ment in civilian life. Such ceremonies can increase the commitment of communities to a child\u2019s reintegration process. Chil- dren should contribute to the creation of appropriate reintegration mechanisms to improve their sense of belonging and capacity. However, it is also essential to under- stand and neutralize community traditions that are physically or mentally harmful to a child. In addition, such rituals may not be suitable in all contexts. Particular attention should be paid to the information that circulates among com- munities about returning boys and girls, so that harmful rumours (e.g., about real or presumed rates of HIV/AIDS among them and the alleged sexual behaviour of girls) can be effectively countered. Girls are at highest risk of rejection by their communities, and it is important for programme staff to engage on a continual basis with the com- munity to educate them about the experience girls have had and the challenges they face without fostering pity or stigma. Programme staff should consult with affected girls and include them in the planning and implementation of initiatives, including how their experiences are portrayed, where possible. Specific focus should be given to addressing issues of gender-based violence, in- cluding sexual violence. Girls who experience gender-based violence during their time associated with an armed force or group will often face stigmatization on their return, while boys will often never discuss it due to societal taboos. Specific engagement with communities to aid the reintegration of CAAFAG may include: Community sensitization and awareness-raising to educate communities on the rights of the child, the challenges CAAFAG face in their reintegration and the role that the community plays in this process; Community-based psychosocial support addressing the needs of conflict-affected community members as well as CAAFAG and their families; Community-wide parenting programmes that include the parents of CAAFAG and non-CAAFAG and help improve awareness and foster social inclusion and cohesion; Support to community-based child protection structures that benefits the whole community, including those that reduce the risk of recruitment; Investment in child-focused infrastructure rehabilitation (e.g., schools, health centres, child/youth centres) that provide benefit to all children in the community; Community-wide income-generation and employment programmes that bring older children as well as the parents of CAAFAG and non-CAAFAG together and provide much-needed livelihood opportunities; Creation of community child committees that bring together community leaders, parents and child representatives (selected from children in the community, including CAAFAG and non-CAAFAG) to provide children with a platform to ensure their voice and participation, especially in the reconstruction process, is guaranteed; and Advocacy support (including training, resources and/or linkages) to increase the role and voice of communities and children/youth in the development/revision of national child and youth policies, as well as interventions.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "89b5b94c-1f62-4b6d-aa28-0fb1deeb4799", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 38, + "Paragraph": "Access to Education Education is a critical component of enabling returning CAAFAG to successfully tran- sition into normal civilian routines and helps to prepare them for future opportunities. The higher a child\u2019s level of education, the more likely his/her reintegration is to suc- ceed. DDR processes for children shall therefore support children to try to reach (or recover) as high a level of education as possible, often starting with basic literacy. After a relatively long stay within armed forces or groups, or because of the difficulties they previously experienced in school, children may not be able to adapt to tradition- al teaching methods. For these situations, schooling programmes should be devel- oped in consultation with the ministry of education that are specifically designed for such children, and that achieve the same results as other formal educational programmes. To better support children who are struggling, teachers should receive specific training. This may include train- ing in recognizing signs of emotional stress, managing problematic behaviour and developing effective pupil-parent relations. Accelerated Education Programmes (AEPs) and other remedial schooling pro- grammes for children who have been out of school for long periods can provide vital catchup education. An AEP is \u201ca flexible, age-appropriate programme, run in an accel- erated timeframe, which aims to provide access to education for disadvantaged, over- age, out-of-school children and youth. This may include those who missed out on or had their education disrupted due to poverty, marginalization, conflict and crisis. The goal of AEPs is to provide learners with equivalent, certified competencies for basic education using effective teaching and learning approaches that match their level of cognitive maturity.\u201d11 The AEP Working Group details 10 principles for the delivery of accelerated ed- ucation, as well as key action points, key definitions, essential information, examples and case studies, and indications of challenges and other points to consider. These principles shall be followed by any programme engaging in AEPs. DDR processes for children can further support the education of demobilized CAAFAG through various other means including AEP teacher training; capacity-build- ing of a country training team; provision of teaching and learning materials; provision of school furniture; payment of incentives to AEP teachers; payment of registration and examination fees; and the renovation and rehabilitation of schools, including sanitation facilities. Moreover, modalities should be developed that enable part-time study if this is desirable, and other assistance should be provided to boost attendance (e.g., food, childcare facilities for girl mothers). The aim, wherever possible, should be to integrate returning children into existing education systems. Supporting these systems provides a benefit for the entire commu- nity and can help to ease reintegration of CAAFAG. However, even with the assistance of such programmes, some children may not be able to return to the regular school system. In such cases, programmes should be designed to include vocational training activities (skills training and apprenticeships) that are suited to local conditions and markets, and in line with national legislation on minimum working age and working conditions, (see section 7.9.5).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5bbdddb5-4f59-4be3-aa3f-c8fb5de3304e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 26, + "Paragraph": "Life skills Life skills are those abilities that help to promote psychological well-being and compe- tence in children as they face the realities of life. These are the ten core life skill strate- gies and techniques: problem-solving; critical thinking; effective communication skills; agency and decision-making; creative thinking; interpersonal relationship skills; self-awareness building skills; empathy; coping with stress; and emotions. Programmes aimed at developing life skills can, among other effects, lessen violent behaviour and increase prosocial behaviour. They can also increase children\u2019s ability to plan ahead and choose effective solutions to problems. CAAFAG often lose the oppor- tunity to develop life skills during armed conflict, and this can adversely affect their reintegration. For this reason, DDR processes for children should explicitly focus on the development of such skills. Life skills training can be integrated into other parts of the reintegration process, such as education or health initiatives, or can be developed as a stand-alone initiative if the need is identified during demobilization. The inclusion of all conflict-affected children within a community in such initiatives will have greater impact than focusing solely on CAAFAG.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e2e6d38d-5d0f-4233-bc1c-f03a0ff9fdc6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 40, + "Paragraph": "Vocational training and livelihood development Vocational training opportunities for children shall be realistic in terms of what the local economy can support and shall also reflect the wishes of the child. There should be made available as wide a range of training options as possible, consistent with local market conditions, to help children adapt successfully to civilian life and to what the market demands. This training may build on skills and competencies learned when the child was associated with an armed force or group. A choice of training options beyond traditional areas should be promoted, as should the provision of support to girls (including financial and childcare support, where appropriate). More specifically, vocational and skills training may include: Analysis of livelihood systems, agriculture, market opportunities, and household economies to develop economically relevant training, alternative forms of education and opportunities for economic reintegration. Coordination between stakeholders to improve lessons learned, development of joint programmes, appropriate referrals and measures to avoid inconsistencies in the benefits provided. Community consultation to develop collective initiatives benefiting the community. Business skills training to prepare children to keep accounts and handle money. Apprenticeships and on-the-job training for those with no previous work experience. Life skills training, including basic social norms and civic education, parenting skills, rights at work and home, prevention of HIV/AIDS, and education to counter interpersonal violence. Incorporation of gender-transformative approaches to ensure sensitivity to the particular challenges faced by girls, increase awareness in both girls and boys of the challenges faced by the other gender, and foster positive gender relationships. Development of skills in non-violent conflict resolution and anger management to help CAAFAG in their everyday lives. Provision of childcare and, if necessary, flexible training schedules for girl mothers. Some children need to start earning a living immediately after they return to their family and community and should be helped to earn an income or receive benefits while they obtain training and/or an education. For example, the sale of things they have made, or animals reared during their training may facilitate the purchase of tools or other equipment that are needed for future work. Boys and girls, particularly those of legal working age, should benefit from an adapted version of socioeconomic sup- port programmes designed for demobilized adults (see IDDRS 4.30 on Reintegration). However, income-generating activities for children should be in line with national and international laws on child labour, including ILO convention 138 on minimum age of work. Livelihood options for girls should not be based on traditionally assigned gender roles. Instead, the focus should be on what girls want to do. Linkages to the local business, trades and agricultural communities should be sought and can aid in employment, small business mentoring and ongoing analysis of market needs.12", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ea53e8f8-0cd2-4e76-aebe-e6e3887d68a4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 41, + "Paragraph": "Social protection assistance As part of planning and implementing a child-sensitive approach to DDR-related interventions, CAAFAG can be provided with social protection assistance to reduce vulnerability to poverty and deprivation, promote social inclusion and child protection, and strengthen family and community resilience. This may include: Multipurpose cash grants. Commodity (e.g., food or rent) or value vouchers. Family and child allowances. Disability social pensions and benefits. Transfers in exchange for a parent working (cash for work). Transfers in exchange for attending health check-ups (for all family members). Business recovery or start-up grants (for older children or parents of CAAFAG) subject to conditions (e.g., business management training, business plan develop- ment, etc.); and Scholarship benefits restricted to certain areas (e.g., school fees, school supplies, etc.). To ensure that assistance is child-sensitive, it must be governed by a number of guiding principles: Assistance must be designed with the child\u2019s best interests in mind and neces- sary safeguards in place, so that cash or other material assistance does not create incentives or push/pull factors to recruitment of children in the community or re-recruitment of the child and does not draw attention to the child. Assistance must be based on findings from the situation analysis and risk assess- ments (see sections 6.1 and 6.2). Assistance shall be targeted towards the most vulnerable CAAFAG (for example, girl mothers, persons with disabilities, and separated or unaccompanied minors) and their families. Assistance shall be predictable, allowing households to plan, manage risk and invest in diverse activities. Mixed delivery approaches (individual and community) should be considered, where appropriate, to strengthen conflict sensitivity. Community-based approaches should be promoted when they are likely to reduce resentment, increase community acceptance of returning CAAFAG, result in local economic benefits and strengthen social reintegration outcomes. Focus should be given to assistance that is multisectoral (e.g., health, education, water, sanitation and protection) and that has multiplier impacts. Conditions should be placed on community grants (e.g., training, awareness-raising activities, investment in community-level income-generating activities and bene- fits for the children of the households engaged). Investment in community structures should be promoted when these structures foster a protective environment for children (e.g., community-based child protection committees and community early warning prevention systems). Risk mitigation strategies shall be developed and implemented to reduce the risk of abuse. For example, it should be ensured that distributors of assistance work in pairs, that post-distribution monitoring is carried out and that children are empowered to speak out about their rights.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "e722e495-ac45-4b08-8f2d-501dee042f0d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 42, + "Paragraph": "Voice, participation and representation Being recognized, accepted, respected, and heard in the community is an important part of the reintegration process. However, this is a complex issue for children, as they are generally excluded from community decision-making processes. Children may also lack the self-esteem and skills necessary to engage in community affairs usually reserved for adults. Reintegration support should strive to generate capacities for such participation in civilian life. Although political reintegration is generally a feature of adult DDR processes (see IDDRS 4.30 on Reintegration), children also have political rights and should be heard in decisions that shape their future. Efforts should be made to ensure that children\u2019s voices are heard in local-level decision-making processes that affect them. Not only is this a rights-based issue, but it is also an important way to address some of the griev- ances that may have led to their recruitment (and potential re-recruitment). For chil- dren nearing the age of majority, having a voice in decision-making can be a key factor in reducing intergenerational conflict. CAAFAG may face particular difficulties attaining a role in their community due to their past associations or because they belong to communities that were excluded prior to the conflict. Girls, persons with disabilities, or people living with HIV/AIDS may also be denied full participation in community life. The creation of inclusive so- cieties is an issue bigger than DDR. However, the reintegration process provides an opportunity to make an initial investment in this endeavour through potential inter- ventions in several areas. Civic education To make the transition from military to civilian life, children need to be aware of their political rights and, eventually, responsibilities. They need to understand good citi- zenship, communication and teamwork, and nonviolent conflict resolution methods. Ultimately, it is the child\u2019s behaviour that will facilitate successful reintegration, and preparing a child to engage socially and politically, in a productive manner, will be central to this process. Such activities can prepare them to play a socially useful role that is acknowledged by the community. Special efforts should be made to include girls in civic education training to ensure they are aware of their rights. However, children should not be forced to participate in any activities, nor used by armed or political groups to achieve specific political objectives, and their rights to free speech, opinion and privacy should be prioritized. Ensure child participants in DDR processes have a voice in local and national recovery DDR processes should be aligned with national plans and strategies for recovery, the design of which should be informed by inputs from their participants. The inclusion of conflict-affected children and CAAFAG in these processes enables children to identify and advocate for specific measures of importance with regard to youth and recovery policies. Specific attention should be given to particularly vulnerable groups who may ordinarily be marginalized. Promote the gender transformation agenda Efforts to strengthen the agency of girls will only go so far in addressing gender ine- quality. It is also important to work with the relationships and structures present that contribute to their (dis)empowerment. It is critical to support the voice and representa- tion of girls within their communities to enable their full reintegration and to con- tribute to eradication of the structural inequalities that influenced their recruitment. Working with men and boys to address male gender roles and masculine norms that promote violence is required. Build a collective voice An inclusive programme sees community children, particularly those affected by con- flict in other ways, participating in programming alongside CAAFAG. This provides an opportunity for children and youth to coordinate and advocate for greater inclusion in decision-making processes. Create children\u2019s committees across the various areas of reintegration programming Children should have the opportunity to put forward their views individually and collectively. Doing so will provide a mechanism to substantively improve programme outcomes and thus ensure the best interests of the child. It also gives greater voice to other vulnerable and marginalized children in the community. Steps should be taken to ensure that girls, and especially girl mothers, are included in these committees. Encourage the participation and visibility of programme beneficiaries in public events Greater participation and visibility of CAAFAG as well as non-CAAFAG will increase the opportunities for children to be involved in community processes. As community members, and community decision makers in particular, have more positive interac- tions with CAAFAG, they are more likely to open up space for their involvement in community affairs. However, all participation shall be voluntary, and CAAFAG should not be pushed into visible roles unless they feel comfortable occupying them.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "ecb7ce0d-9ad3-442f-8eb7-7635e1024d0c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 43, + "Paragraph": "Monitoring and follow-up After CAAFAG have returned to their families and communities, monitoring and fol- low-up is essential. It requires careful planning, adequate funding and the collabora- tion of key governmental bodies, UN agencies and non-governmental organizations. Monitoring activities should occur through regular visits to children\u2019s homes, schools, and communities, including meetings with families, peers, teachers, and community leaders, without creating stigma or risk to the individuals and families in- volved. The living conditions of the child, the quality of his/her relationship with fam- ily members and caregivers, and the level of reintegration in the community should be regularly assessed. Confidential, accessible, and safe feedback mechanisms that allow children to report any concerns should be in place. Challenges should be identified to facilitate problem-solving, referral or programme adaptation where required. Success stories are also important for the generation of positive lessons learned and to present opportunities for replication in other areas or programmes. Monitoring should be conducted by a dedicated monitoring, evaluation and learn- ing team. More staff are likely to be needed when large numbers of children are reunit- ed with their families, because monitoring visits and other support activities become more labour-intensive and time-consuming as children are dispersed from a few cen- tral locations to scattered communities. Communitybased child protection networks and community leaders, especially women, should be actively involved in monitoring the safety and wellbeing of reunited children, and should assume increasing responsi- bility for ongoing monitoring and follow-up to ensure a smooth takeover of this work by the community. Monitoring systems should be developed to use programme-related data gath- ered during demobilization including verification exercises for children. Effective pro- gramme monitoring improves accountability by recording information on programme progress, suitability of selected approach- es, and impact of support on children\u2019s well-being. Monitoring should be con- ducted throughout programming to in- form programme adjustments, including how to better reach particularly vulnera- ble groups of children, such as girls or disabled children. Close, continuous monitoring at the situational level is also essential, as the context will certainly change over time as issues relating to child recruitment and use, verification and release are complex and often unpredictable. Follow-up systems should be established to ensure post-programme support for reintegrating children. The reintegration process takes time and will usually not be completed within the period of the programme. Returning CAAFAG remain vulner- able to re-recruitment, social exclusion and poverty and will require ongoing support for several years. Regular follow-up should be seen as an important element of the con- tinuum of care for children. Therefore, follow-up support is critical to an effective exit strategy, ensuring that programme gains in reintegration are safeguarded. Follow-up systems should be developed in close consultation with children and the community. They should focus on especially vulnerable children (e.g., girl mothers, those not reunited with their family, those with severe psychosocial issues and disa- bled children). Support measures should be informed by disaggregated monitoring to ensure accurate targeting. Follow-up systems should also be community-based but linked to national systems. This can be achieved, for example, by supporting child well-being assessments.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "008ede84-32ae-47f9-8fd3-01f5299b8112", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 44, + "Paragraph": "8.6 Security sector reform When DDR programmes are linked to security sector reform (SSR), the composition of the new national army may be tied to the number of members of each armed force and group (see IDDRS 6.10 on DDR and SSR). Children are often included in these figures. Negotiations on SSR and force reduction must include the release of all children. CAAFAG shall not be included in troop numbers because the presence of children is illegal and including them may encourage more recruitment of children in the period before negotiations.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "43a3729d-0d10-414a-9365-514a66d49c91", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 45, + "Paragraph": "Criminal responsibility and accountability Governments are bound by the CRC and guided by international standards and norms when dealing with children who are alleged to have, accused of having, or recognized as having infringed the penal law during the course of their association with an armed force or group. This is independent of the type of crime that is alleged to have been committed. In all cases, children shall be treated primarily as victims of human rights violations. Prosecution and judicial proceedings should only be used as a last resort, with emphasis instead on recovery and reintegration.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a6ec68e2-a060-4349-800c-3067cd985eeb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 45, + "Paragraph": "Children as victims Children, as victims of recruitment and use, should not be deprived of their liberty, prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, consistent with Article 8.7 of the Paris Princi- ples. National laws that criminalize child association effectively criminalize the child\u2019s status (associated) which results from an adult\u2019s criminal conduct (recruitment and use), and that violates the human rights of the child. Such laws should not apply to children. In addition, as for adults, any ex- pressions of support for particular groups, acts, or ideologies that do not rise to the level of legally defined crimes such as in- citement to discrimination, hostility, or violence, or to committing terrorist acts, should not constitute criminal offenses. Under the convention on the rights of the child (Article 2) States Parties shall take all appropriate measures to protect children against discrimination or punishment on the basis of the status, activities, expressed opinions, or beliefs of their parents, legal guardians, or family members. Thus, children should not be interrogated as a suspect or prosecuted due to the actual or alleged affiliation of a family member. As part of the investigation of cases involving a child victim or witness, child victims or witnesses, their parents or guardians, legal representatives or a designated support person, should be promptly and adequately informed of their rights, availability of services and protection measures, and procedures in relation to any adult and/or juvenile justice processes, from their first contact with the justice pro- cess and throughout, to the extent feasible and consistent with the child\u2019s best interests. Any investigative action, including interviews with or examinations of the child, shall be conducted by professionals specially trained in dealing with children using a child-sensitive approach. All investigative actions shall be conducted in a suitable environment, in a language that the child uses and understands, and in the presence of the child\u2019s parent, legal guardian, legal representative, or designated support person.13 To the extent possible, the repetition of interviews of child victims or witnesses should be minimized to prevent secondary victimization. The child\u2019s best interest and right to privacy must be considered in all actions (see also Section 6.3.1 Data Collection, and Section 9.5 Collecting testimonies from children).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "f29d231d-a5a6-4e6c-aa23-073a5b8c5916", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 46, + "Paragraph": "Minimum age of criminal responsibility Under the CRC, States are required to establish a minimum age of criminal responsi- bility (MACR). The Committee on the Rights of the Child encouraged States to increase the MACR where possible, and not to lower it below 14 years of age, commending States that set a higher MACR such as 15 or 16 years of age. This is because children\u2019s brain development is still evolving during these years. Children under the MACR shall never be processed through the criminal justice system. Criminal accountability measures imposed on a child above the MACR shall consider the child\u2019s best interests, the child\u2019s age at the time of the commission of any alleged crime, the coercive environment under which the child may have been living, and any other mitigating circumstances, while simultaneously supporting the child\u2019s protection and reintegration. For all children, reintegration processes should be focused on addressing the root causes of their asso- ciation and recovery, rather than punishment for any actions.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d1ad0155-957c-4df8-a613-672190a1544c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 46, + "Paragraph": "Juvenile justice and child-specific due process and minimum standards Children over the MACR can be held accountable for criminal acts they may have com- mitted, including terrorist offences, but only while respecting their rights, employing child-specific juvenile justice processes, and with their best interests as a primary consid- eration. Due consideration shall be given to their right to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities, including for example, the right to legal representation, and protections against self-incrimination. Justice systems handling cases of children over the MACR should always also prior- itize the child\u2019s best interests and recog- nize the long-term process for children to sustainably reintegrate. Any judicial pro- ceedings for children shall respect interna- tionally recognized juvenile justice and fair trial standards, with a focus on recovery and restorative justice in order to assist children\u2019s physical, psychological and social recov- ery.14 Where no separate juvenile justice system is in place, cases should be handled by civilian authorities who have special training in child-friendly procedures, rather than military or intelligence authorities. All judicial actions relating to children shall take place in the presence of the child\u2019s appointed legal representative or other appropriate assistance, whose role it is to protect the rights and interests of the child, and unless contrary to the best interests of the child, in the presence of the child\u2019s parents or legal guardians. The UN Standard Minimum Rules for the Administration of Juvenile Justice (\u2018The Beijing Rules\u2019) adopted by General Assembly resolution 40/33 in 1985 provide guidance for the arrest or detention of children. Children retain all the rights already covered for adults if arrested. The Beijing Rules require detention of children only as a last resort so that arrest, detention or imprisonment of children should be avoided whenever possible. This requirement is further supported through the CRC which pro- vides an obligation under international law for States to ensure that \u201cno child shall be deprived of his or her liberty unlawfully or arbitrarily\u201d and that the \u201carrest, detention or imprisonment of a child shall be in conformity with the law and shall be used only as a measure of last resort and for the shortest appropriate period of time\u201d.15 As such when children are arrested and detained, their cases are to be given the highest prior- ity and handled expeditiously to ensure the shortest possible period of detention prior to trial. States should ensure that accountability mechanisms are fully in line with international law related to juvenile justice. International child rights and juvenile justice standards require that alternatives to normal judicial proceedings in criminal courts should be applied, providing that human rights and legal safeguards are fully respected (CRC, Article 40[3b], Rule 11, \u2018Beijing Rules\u2019). For example, restorative justice \u2013 achieved through finding alternatives to criminal courts \u2013 involves the child offender understanding and taking responsibil- ity for his/her actions with the goal of achieving reconciliation between the offender, the victim and the wider community through reparations. Such a procedure should ensure that the rights of the child are protected throughout. The child\u2019s participation in a restorative justice process shall be voluntary and preceded by informed consent (given by both the child and his/her parent or guardian). Measures to prevent the child from becoming distressed must be in place.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "f562fd24-3ec7-497c-91b8-a051d3de69e1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 47, + "Paragraph": "9.3.1 Girl mothers and their children Girl mothers in contact with the law should receive special consideration \u2013 such as con- sideration of mitigating circumstances in sentencing \u2013 and the rights of her child(ren) should be factored into judicial decisions. This may include allowing mothers to serve sentences at home, in order to respect the best interests of their children and maintain family unity. Specific interventions shall be developed to address the various challeng- es that girl mothers and their children may face. Any such interventions shall be based on the best interests of each child, in recognition of the detrimental impacts that family separation and deprivation of liberty have on children. Family unity should be main- tained save in exceptional circumstances where the parent poses an immediate and actual harm to the child. Practitioners shall advocate with Governments for mothers under 18 years of age to have the right to confer their nationality onto their children,16 a right that protects their children from becoming stateless. Children associated with armed groups designated by the UN as terrorist organizations DDR practitioners shall encourage the release and reintegration of CAAFAG at all times and without precondition. There is no exception to this rule for children associ- ated with armed groups that have been designated as terrorist by the Security Coun- cil Committee concerning ISIL (Da\u2019esh), Al-Qaida and associated individuals, groups, undertakings and entities established pursuant to resolution 1267 (1999), 1989 (2011) and 2253 (2015) or by any other state or regional body. No matter the armed group involved and no matter the age, status or conduct of the child, all relevant provisions of international law, including human rights, humanitarian, and refugee law. This includes all provisions and standards previous- ly discussed, including the Convention on the Rights of the Child and its Optional Protocols, all standards for justice for children, the Paris Principles and Guidelines, where applicable, and the Geneva Conventions. As with all CAAFAG, children asso- ciated with designated terrorist groups shall be treated primarily as victims and be afforded their right to be released and provide them with the reintegration and other support described in this module without discrimination (Optional Protocol to the Convention on the Rights of the Child, Articles 6(3) and 7(1) and the Paris Princi- ples and Guidelines on Children Associated with Armed Forces and Armed Groups (Articles 3.11-3.13). Security Council resolution 2427 (2018) \u201c[s]trongly condemns all violations of applicable international law involving the recruitment and use of children by par- ties to armed conflict as well as their re- recruitment\u2026\u201d and \u201c\u2026all other violations of international law, including interna- tional humanitarian law, human rights law and refugee law, committed against children in situations of armed conflict and demands that all relevant parties immediately put an end to such practices and take special measures to protect children.\u201d (OP1) The Security Council also emphasizes the responsibility of states to end impunity \u201cfor genocide, crimes against humanity, war crimes and other egregious crimes perpetrated against children\u201d including their recruitment and use.17 Children who have been recruited and used by terrorist groups are victims of violations of international law and have the same rights and protections as all chil- dren. Some children may also have committed crimes during their period of associa- tion. While children above the minimum age of criminal responsibility may be held accountable consistent with international law (see section 9.3), as victims of crime, these children should not face criminal charges for the mere fact of their association with a designated terrorist group or for activities that would not otherwise be criminal such as cooking, cleaning, or driving.18 Children whose parents, caregivers or family mem- bers are alleged to be associated with a designated terrorist group, also shall not be held accountable for the actions of their relatives nor shall they be excluded from meas- ures or services that promote their physical and psychosocial recovery or reintegration. Security Council resolution 2427 (2018) stresses the need for States \u201cto pay par- ticular attention to the treatment of children associated or allegedly associated with all non-state armed groups, including those who commit actors of terrorism, in par- ticular by establishing standard operating procedures for the rapid handover of chil- dren to relevant civilian child protection actors\u201d (OP 19). It also urges Member States to mainstream child protection in all stages of DDR (OP24) and in security sector reforms (OP25), including through gender- and age-sensitive DDR processes, the establishment of child protection units in national security forces, and the strengthening of effective age assessment mechanisms to prevent underage recruitment. It stresses the impor- tance of long-term sustainable reintegration for all boys and girls affected by armed conflict and working with communities to avoid stigmatization of children while facil- itating their return in a way that enhances their wellbeing (OP 26). Children formerly under the control of UN designated terrorist groups, may be able to access refugee and asylum procedures depending on their individual situation and status (e.g., if they were forcibly recruited and trafficked across borders). All chil- dren and asylum seekers have a right to individual determinations to assess any claims they may have. For any child who asks for refugee or asylum status, the practitioner shall refer the child to the relevant UN entity or to a legal services provider. DDR prac- titioners shall not determine eligibility for asylum or refugee status. Justice for children suspected, accused, or convicted of committing terrorism-related offences Consistent with Article 40 of the CRC, any child suspected, accused, or convicted of having committed a terrorism-related offence or an offence against national security has the right to be treated in a manner consistent with international law and stand- ards, including juvenile justice standards: \u201cProcedures employed should promote the child\u2019s dignity and worth and reinforce the child\u2019s respect for the human rights and fundamental freedoms of others. It should take into account the child\u2019s age and the desirability of promoting the child\u2019s reintegration and the child\u2019s assuming a constructive role in society.\u201d19 In addition, if a state seeks to hold a child accountable for crimi- nal acts alleged to have been committed while under the control of an armed group, courts and service providers should account for the child\u2019s experience and the coercive environment under which the child was living or forced to act when determining both criminal responsibility and the services or support that a child may need. In all deci- sions, the child\u2019s best interests shall be a primary consideration, \u201ceven when the child\u2019s interests may conflict with the State\u2019s perceived security interests.\u201d20 Any child allegedly associated with an armed group should be treated primarily as a victim. In this regard, irrespective of considerations of their legal responsibility with regard to any alleged offence defined as terrorist and/or a threat to national se- curity under national legislation, children shall be afforded the rights set forth by the international legal framework related to child victims. Any child associated with an armed group and who is or has been suspected, charged or convicted of a terrorism related offence or is deprived of his or her liberty as a result, shall be treated in accordance with international law and internationally recognized juvenile justice standards, including the right to legal representation and the right to appeal. In case such a child is released from detention, the child shall be provided with required reintegration assistance and be part of the overall reintegration programme.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8b914793-f368-404a-b4bd-9431d1d94e4d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 49, + "Paragraph": "Collecting testimonies from children As with all decisions involving children, the best interests of the child shall be a pri- mary consideration when determining if a child should give information or testimony; however, under no circumstances shall a child be compelled to give testimony or a statement against himself or herself. Protective rules shall be established when collect- ing testimonies from children through justice mechanisms, a truth and reconciliation commission or the International Criminal Court. It is essential to protect the identity of child witnesses, to not require children to relive traumatic experiences as they testify, and to make it clear in criminal cases that their testimony may or may not succeed in convicting the accused, so that they do not have unrealistic expectations. Social support, such as psychological support, to facilitate this engagement should be provided at all times according to specific needs. Testimonies shall only be gathered once the child has given informed consent. The process should be explained in child-friendly language (in the language of the child), and, where possible, and if not contrary to the child\u2019s best interest, a parent or guardian should support the child in giving informed consent.21", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "2ab864f9-e100-4a15-b8f7-0ea86200a614", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 50, + "Paragraph": "Annex B. Determining a child\u2019s age Often children do not have civil registration documents showing their birth or age. However, because it is a breach of international humanitarian law, human rights law and international criminal law to recruit children under 15 years old anywhere, and to allow any child to take part in hostilities, and because children are entitled to special protections and support, it may be important to determine whether an individual is be- low age 18. Reintegration and child DDR generally are designed to ensure appropriate support to children under age 18, with no difference in definition, and regardless of the legal age of recruitment or other definitions or age of a child locally. It is important to manage the identification and separation of children from adults in a coordinated way during demobilization, and throughout DDR. Failure to do so may lead to serious unintended consequences, such as the re-recruitment of children, children claiming to be adults, and adults claiming to be children. To determine a child\u2019s age, the following are general principles: If in doubt, assume the person is below 18. Identification should take place as early as possible to allow them to access age-ap- propriate services. Identification must occur before disarmament. A child protection actor should be given access to disarmament sites to identify children. Children should be immediately informed that they are entitled to support so that they are less likely to try to identify as adults. Considerations: Interviews should be confidential. Identification of children should take place before any other identification pro- cesses. Children should be required to show that they can use a weapon (this is because they may have been used in a non-combat role). During negotiations, children should not be counted in the number of armed forc- es or group (this is to avoid incentivizing child recruitment to inflate numbers). The role that a person plays in the armed group should have no effect of the deter- mination of whether the person is a child. For practitioners who are handling demobilization, Age Assessment: A Technical Note (2013) gives more detailed information on age determinations and includes the follow- ing core standards: An age assessment should only be requested when it is in the best interests of the child. Children should be given relevant information about the age assessment pro- cedure Informed consent must be sought from the person whose age is being assessed before the assessment begins. Age assessments should only be a measure of last resort and be initiated only if a serious doubt about the person\u2019s age exists. Age assessments should be applied without discrimination. An unaccompanied or separated child should have a guardian appointed to support them through the age assessment procedure. Assessments must follow the least intrusive method, which upholds the dignity and physical integrity of the child at all times, and be gender and culturally appropriate Where there is a margin of error, this margin should be applied in favour of the child. Age assessments should take an holistic approach. A means of challenging the age determination should exist if the child wishes to contest the outcome of the assessment. Age assessments should only be undertaken by independent and appropriately skilled practitioners. The checklist to determine the age includes: Pre-procedure: Undertake an age assessment only when relevant actors have serious doubts about the stated age of the child; ensure that the assessment is not being initiated as a routine or standard procedure. Is the procedure really necessary? Plan any physical examination only as a measure of last resort to take place only when all other attempts e.g., the gathering of documentary evidence, interviewing the child, etc., have failed to establish age. Is a physical examination the only method of assessing age? Secure informed consent to conduct the age assessment from the child or the guardian. It is extremely unlikely that genuine informed consent can be forthcom- ing at a time of \u2018crisis\u2019 and consent should only be sought when a child has had time to recover from traumatic or unsettling episodes \u2013 this may take considerable time in some instances. In circumstances where there is no consent, it cannot be used against the person and the person should be considered a child. Has the child given informed consent to a physical examination? During the Procedure Conduct any age assessment procedure using a multi-disciplinary approach that draws on a range of appropriately skilled professionals and not solely on a physi- cal examination. Is a range of approaches being used in the age assessment? When selecting professionals to conduct an age assessment, select only those with- out a vested interest in the outcome, and who are independent from any agencies and actors that would provide services or support to the child or who would be- come responsible for the child if they are assessed as being a child. Are the profes- sionals engaged in the assessment independent? Subject to the wishes of the child, support him or her throughout the process of assessment, including by informing the child in a language he or she understands, and providing a guardian, legal or other representative to accompany them dur- ing the entire process. Is the child supported throughout the process? Develop and conduct the age assessment process in a culturally and gender sen- sitive way using practitioners who are fully familiar with the child\u2019s cultural and ethnic background. Is the assessment sensitive to cultural and gender needs? Protect the child\u2019s bodily integrity and dignity at every stage of the process. Is the process free from humiliation, discrimination, or other affront? Conduct the age assessment in an environment that is safe for children, which supports their needs and is child appropriate. Is the process consistent with child safeguarding principles and child-friendly? Post procedure Provide any services and support relevant to the outcome of the assessment with- out delay. What services and support are required to address the person\u2019s identified needs? If any doubt remains about the age of the child, ensure that this is applied to the advantage of the child. Has any doubt about the child\u2019s age been resolved in favor of the child? As promptly as is reasonably practical, explain the outcome and the conse- quences of the outcome to the child. Have the outcome and its consequences been explained? Inform the child of the ways that he or she can challenge a decision which they disagree with. Has the child been informed of his or her rights to challenge the de- cision?", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "dee3edfe-9181-4f3e-a539-e6c2e56b855a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 53, + "Paragraph": "Annex C: Management guidelines for interim care centres Interim care centres (ICCs), sometimes referred to as transit centres, are not a necessary step in all DDR situations. Indeed, in the view of many protection agencies, an ICC may delay the reunification of children with their families and communities, which should happen as soon as possible. Nevertheless, while in some circumstances imme- diate reunification and support can occur, in others a centre can provide a protected temporary environment before family reunification. Other advantages to ICCs include that they provide the necessary space and time to carry out family tracing and verification; they provide a secure space in an other- wise insecure context before reunification, and gradual reunification when necessary; they allow medical support, including psychosocial support, to be provided; they pro- vide additional time to children to cut their links with the military; and they provide an opportunity for pre-discharge awareness-raising/sensitization. Guiding principles and implementation strategies The decision to open a centre should be based on the following conditions: The level of insecurity in community of origin; The level of success in tracing the child\u2019s family or primary caregiver; The level of medical assistance and followup required before integration; and The level of immediate psychosocial support required before reintegration. Management guidelines for Interim Care Centres The following management guidelines apply: Child protection specialists, not military or other actors should manage the cen- tres. Children should only stay a limited amount of time in ICCs, and documentation and monitoring systems should be established to ensure that the length of stay is brief (weeks not months). At the end of their stay, if family reunification is not feasible, provision should be made for children to be cared for in other ways (in foster families, extended family networks, etc.). Systems should be established to protect children from abuse, and a code of conduct should be drawn up and applied. An adequate number of male and female staff should be available to deal with the differing needs of boys and girls. Staff should be trained in prevention of and response to genderbased violence and exploitation involving children, norms of confidentiality, child psychosocial development, tracing and reunification. ICCs should only accommodate children under 18. Some flexibility can be consid- ered, based on the best interests of the child, e.g., in relation to girl mothers with infants and children or on medical grounds, on a casebycase basis. In addition, young children (under 14) should be separated from adolescents in order to avoid any risk of older children abusing younger ones. Sanitation and accommodation facilities should separate girls from boys and be sensitive to the needs of infants and girl mothers. ICCs should be located at a safe distance from conflict and recruitment areas; ex- ternal access to the centre should be controlled. (For example, entry of adult com- batants and fighters and the media can be disruptive, and can expose children to additional risks.) Security should be provided by peacekeepers or neutral forces.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c97258c8-c5ab-440c-a011-9be108c221db", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.20-Children-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.20-Children-and-DDR", + "PageNum": 54, + "Paragraph": "Activity guidelines Tracing, verification, reunification and monitoring should be carried out. Temporary care should take place within a communitybased tracing and reinte- gration programme to assist the return of children to their communities (including community outreach), and to encourage the protection and development of war- affected children in general. Experience has showed that when only care is offered, centres present a risk of children becoming \u2018institutionalized\u2019 and dependent. Health checkups and specialized health services should be provided when nec- essary (e.g., reproductive health and antenatal services, diagnosis of sexually transmitted infections, voluntary and confidential HIV testing with appropriate psychosocial support, and health care for nutritional deficiencies and warrelated injuries). Basic psychosocial counselling should be provided, including help to overcome trauma and develop selfesteem and life skills. Information and guidance should be provided on the reintegration opportunities available. Activities should focus on restoring the social norms and routines of civilian life; age and genderappropriate sports, cultural and recreational activities should be provided. Community sensitization should be carried out before the child\u2019s arrival. Formal education or training activities should not be provided at the ICC; however, literacy testing can be conducted. Communities near the ICC should be sensitized about the ICC\u2019s role. Children in the centres should be encouraged to participate in community activities to encourage trust. During temporary care, peace education should be part of everyday life as well as the formal programmes, and cover key principles, objectives, and values related to the non- violent resolution of conflict.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e93e77f0-6d92-4835-a3a0-067033cae4c0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Summary This module offers advice to policy makers and operational staff of agencies dealing with combatants and associated civilians moving across international borders on how to work closely together to establish regional strategies for disarmament, demobilization and rein tegration (DDR) processes. Armed conflicts are increasingly characterized by \u2018mixed population movements\u2019 of combatants and civilians moving across international borders, as well as lines of conflict spilling over and across State boundaries. Because many previous DDR programmes lacked a regional dimension that took this reality into account, the \u2018recycling\u2019 of combatants from conflict to conflict within a region and even beyond has become an increasing problem. However, combatants are not the only people who are highly mobile in times of complex emergency. Given that the majority of people fleeing across borders are civilians seeking asylum, it remains vital for the civilian and humanitarian character of asylum to be preserved by host States, with the support of the international community. Combatants must therefore be separated from civilians in order to maintain States\u2019 internal and external security and to safeguard asylum for refugees, as well as to find appropriate longlasting ways of assisting the various population groups concerned, in accordance with international law standards.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "a84887db-37cf-4001-9906-03746baa2d29", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Module scope and objectives This module attempts to answer the following questions: What are the population groups connected with combatants moving across interna tional borders? What are the standards and legal frameworks governing their treatment? What are recommendations for action on both sides of the border? What are the roles and responsibilities of international and national agencies on both sides of the border? The module discusses issues relating to foreign adult combatants, foreign women asso ciated with armed groups and forces in noncombat roles, foreign children associated with armed groups and forces, civilian family members/dependants of foreign combatants, and crossborder abductees. Their status at various phases \u2014 upon crossing into a host country, at the stage of DDR and repatriation planning, and upon return to and reintegration in their country of origin \u2014 is discussed, and ways of dealing with those who do not repatriate are explored. The module\u2019s aims to provide guidance to agencies supporting governments to fulfil their obligations under international law in deciding on the appropriate treatment of the population groups connected with crossborder combatants. The principles in this module are intended to be applied not only in formal DDR pro grammes, but also in situations where there may be no such programme (and perhaps no United Nations [UN] mission), but where activities related to the identification of foreign combatants, disarmament, demobilization, internment, repatriation and reintegration or other processes are nevertheless needed in response to the presence of foreign combatants on a State\u2019s territory.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "43a47c19-bf84-4caf-9eef-6bbd0c47e330", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A com plete glossary of all the terms, definitions and abbreviations used in the series of integrated 1.20\tDDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicated requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6ccd86ba-798b-4fe5-ace2-acd29cc843cc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 4, + "Paragraph": "Introduction This module is intended primarily for policy makers and operational staff of agencies deal ing with combatants and associated civilians moving across international borders, regardless of whether or not there are DDR programmes on either side of the border. The guidelines offered in it are also aimed at assisting governments to fulfil their international obligations, and at guiding donors in making funding decisions. They are based on relevant provisions of international law, field experience and lessons learned from a number of operations, par ticularly in Africa. This module on crossborder population movements has been included in the integrated DDR standards because of the regional and international dimensions of conflicts and the impact on population movements: wars lead to both combatants and civilians crossing borders; there are regional and international causes and actors; and crossborder combatants can a pose a threat to regional and international security. At the end of a conflict, repatriation and sustainable reintegration are needed for both combatants and civilians, contributing to the creation of properly functioning communities in the country of origin. For some, local integration in the host country \u2014 or, in exceptional cases, thirdcountry resettlement \u2014 will be the appropriate longterm course of action.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "751ca80e-f015-4260-b705-5e5c35a9c799", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 4, + "Paragraph": "Guiding principles International law provides a framework for dealing with crossborder movements of com batants and associated civilians. In particular, neutral States have an obligation to identify, separate and intern foreign combatants who cross into their territory, to prevent the use of their territory as a base from which to engage in hostilities against another State. In con sidering how to deal with foreign combatants in a DDR programme, it is important to recognize that they may have many different motives for crossing international borders, and that host States in turn will have their own agendas for either preventing or encour aging such movement. No single international agency has a mandate for issues relating to crossborder movements of combatants, but all have an interest in ensuring that these issues are prop erly dealt with, and that States abide by their international obligations. Therefore, DDRrelated processes such as identification, disarmament, separation, internment, demo bilization and reintegration of combatants, as well as building State capacity in host countries and countries of origin, must be carried out within an interagency framework. Annex B contains an overview of key inter national agencies with relevant mandates that could be expected to assist governments to deal with regional and crossborder issues relating to combatants in host countries and countries of origin. Foreign combatants are not necessarily \u2018mercenaries\u2019 within the definition of interna tional law; and since achieving lasting peace and stability in a region depends on the ability of DDR programmes to attract and retain the maximum possible number of former com batants, careful distinctions are necessary between foreign combatants and mercenaries. It is also essential, however, to ensure coherence between DDR processes in adjacent countries in regions engulfed by conflict in order to prevent combatants from moving around from process to process in the hopes of gaining benefits in more than one place. Foreign children associated with armed forces and groups should be treated separately from adult foreign combatants, and should be given special protection and assistance dur ing the DDR process, with a particular emphasis on rehabilitation and reintegration. Their social reintegration, recovery and reconciliation with their communities may work better if they are granted protection such as refugee status, following an appropriate process to determine if they deserve that status, while they are in host countries. Civilian family members of foreign combatants should be treated as refugees or asylum seekers, unless there are individual circumstances that suggest they should be treated dif ferently. Thirdcountry nationals/civilians who are not seeking refugee status \u2014 such as crossborder abductees \u2014 should be assisted to voluntarily repatriate or find another long term course of action to assist them within an applicable framework and in close consultation/ collaboration with the diplomatic representations of their countries of nationality. At the end of an armed conflict, UN missions should support host countries and countries of origin to find longterm solutions to the problems faced by foreign combatants. The primary solution is to return them in safety and dignity to their country of origin, a process that should be carried out in coordination with the voluntary repatriation of their civilian family members. When designing and implementing DDR programmes, the regional dimensions of the conflict should be taken into account, ensuring that foreign combatants who have parti cipated in the war are eligible for such programmes, as well as other individuals who have crossed an international border with an armed force or group and need to be repatriated and included in DDR processes. DDR programmes should therefore be open to all persons who have taken part in the conflict, regardless of their nationality, and close coordination and links should be formed among all DDR programmes in a region to ensure that they are coherently planned and implemented. As a matter of principle and because of the nature of his/her activities, an active foreign combatant cannot be considered as a refugee. However, a former combatant who has gen uinely given up military activities and become a civilian may at a later stage be given refugee status, provided that he/she applies for this status after a reasonable period of time and is not \u2018excludable from international protection\u2019 on account of having committed crimes against peace, war crimes, crimes against humanity, serious nonpolitical crimes outside the country of refuge before entering that country, or acts contrary to the purposes and principles of the UN. The UN High Commissioner for Refugees (UNHCR) assists governments in host countries to determine whether demobilized former combatants are eligible for refugee status using special procedures when they ask for asylum.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "2e6a7114-03f7-454e-ac59-b7f47952028f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "The context of regional conflicts and cross-border population movements Forced displacement is mainly caused by the insecurity of armed conflict. Conflicts that cause refugee movements across international borders by definition involve neighbouring States, and thus have regional security implications. As is evident in recent conflicts in Africa in particular, the lines of conflict frequently run across State boundaries, because they are being fought by people with ethnic, cultural, political and military ties that are not confined to one country. The mixed movements of populations that result are very complex and involve not only refugees, but also combatants and civilians associated with armed groups and forces, including family members and other dependants, crossborder abductees, etc. The ofteninterconnected nature of conflicts within a region, recruitment (both forced and voluntary) across borders and the \u2018recycling\u2019 of combatants from conflict to conflict within a region has meant that not only nationals of a country at war, but also foreign com batants may be involved in the struggle. When wars come to an end, it is not only refugees who are in need of repatriation and reintegration, but also foreign combatants and associated civilians. DDR programmes need to be regional in scope in order to deal with this reality. Enormous complexities are involved in managing mass influxes and mixed population movements of combatants and civilians. Combatants\u2019 status may not be obvious, as many arrive without weapons and in civilian clothes. At the same time, however, especially in societies where there are large numbers of weapons, not everyone who arrives with a weap on is a combatant or can be presumed to be a combatant (refugee influxes usually include young males and females escaping from forced recruitment). The sheer size of population movements can be overwhelming, sometimes making it impossible to carry out any screen ing of arrivals. Whereas refugees by definition flee to seek sanctuary, combatants who cross inter national borders may have a range of motives for doing so \u2014 to launch crossborder attacks, to escape from the heat of battle before re grouping to fight, to desert permanently, to seek refuge, to bring family members and other dependants to safety, to find food, etc. Their reasons for moving with civilians may be varied \u2014 not only to protect and assist their dependants, but also sometimes to ex ploit civilians as human shields and to prevent voluntary repatriation, to use refugee camps as a place for rest and recuperation between attacks or as a recruiting and/or training ground, and to divert humanitarian assistance for military purposes. Civilians may be supportive of or intimidated by combatants. The presence of combatants and militarized camps close to border areas may provoke cross border reprisals and risk a spillover of the conflict. Host countries may also have their own reasons for sheltering foreign combatants, since complete neutrality is probably rare in today\u2019s conflicts, and in addition there may be a lack of political will and capacity to prevent foreign combatants from entering a neighbouring country. In their responses to mixed cross border population movements, the international community should take into account these complexities. Experience has shown that DDR processes directed at nationals of a specific country in isolation have failed to adequately deal with the problems of combatants being recycled from conflict to conflict within (and sometimes even outside) a region, and with the spillover effects of such wars. In addition, the failure of host countries to identify, disarm and separate foreign combatants from refugee populations has contributed to endless cycles of security problems, including militarization of and attacks on refugee camps and settlements, xeno phobia, and failure to maintain asylum for refugees. These issues compromise the neutrality of aid work and pose a security threat to the host State and surrounding countries. The disarmament, demobilization, rehabilitation, reintegration and repatriation of com batants and associated civilians therefore require a stronger and more consistent crossborder focus, involving both host countries and countries of origin and benefiting both national and foreign combatants. This dimension has increasingly been recognized by the UN in its recent peacekeeping operations.1", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "cec9e0a1-6322-4a7b-a813-2cc34a4e9760", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "International law framework governing cross-border movements of foreign combatants and associated civilians International law lays down obligations for host countries with regard to foreign combatants and associated civilians who cross their borders. This framework is derived from the laws of neutrality, international humanitarian law, human rights law and refugee law, as well as international principles governing the conduct of interState relations. These different areas of law provide grounds for the identification and separation of foreign combatants from civilians who cross an international border, as well as for the disarmament and internment of foreign combatants until either they can be repatriated or another course of action can be found at the end of the conflict. As long as a host country fulfils its obligations under international law, it may also rely on its national law: e.g., the criminal law can be used to prosecute crossborder combatants in order to protect national security, prevent subversive activities, and deal with illegal arms possession and forced recruitment.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9dc5cef8-a059-43fc-8473-c26fc81c81bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 8, + "Paragraph": "The Charter of the United Nations Under Article 2(4) of the Charter of the UN, States have an obligation to \u201crefrain in their international relations from the threat or use of force against the territorial integrity or political independence of any State, or in any other manner inconsistent with the Purposes of the United Nations\u201d (this is regarded as customary international law binding on all States). This article should be read and interpreted within the wider spirit of the Charter, and parti cularly article 1, which includes among the aims of the UN the maintenance of international peace and security, the development of friendly relations among nations and the resolution of international problems. Therefore, in addition to refraining from actions that might endanger peace and security, States also have a duty to take steps to strengthen peace and encourage friendly relations with others. Article 2(4) provides the foundation for the premise that States have an obligation to disarm, separate and intern foreign combatants. UN General Assembly resolution 2625 (XXV) of 24 October 1970, which adopted the Declaration on Principles of International Law concerning Friendly Relations and Coop eration among States in Accordance with the Charter of the United Nations, prohibits the indirect use of armed force, through assisting, encouraging or tolerating armed activities against another State by irregular forces, armed bands or individuals, whether nationals or foreigners.2", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "68ad1dfb-de0b-4dd1-8f87-2339767a97f8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 9, + "Paragraph": "The law of neutrality The law of neutrality requires neutral States to disarm foreign combatants, separate them from civilian populations, intern them at a safe distance from the conflict zone and pro vide humane treatment until the end of the war, in order to ensure that they no longer pose a threat or continue to engage in hostilities. Neutral States are also required to provide such interned combatants with humane treatment and conditions of internment. The Hague Convention of 1907 dealing with the Rights and Duties of Neutral Powers and Persons in Case of War on Land, which is considered to have attained customary law status, making it binding on all States, sets out the rules governing the conduct of neutral States. Although it relates to international armed conflicts, it is generally accepted as appli cable by analogy also to internal armed conflicts in which foreign combatants from govern ment armed forces or opposition armed groups have entered the territory of a neutral State. It contains an obligation to intern such combatants, as is described in detail in section 7.3.7 of this module.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6efe5334-227d-46e2-90e7-9db2b2f5c4a6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 9, + "Paragraph": "International humanitarian law In accordance with article 4(B)2 of the Third Geneva Convention of 1949 relative to the Treatment of Prisoners of War, foreign combatants interned by neutral States are entitled to treatment and conditions of internment given to prisoners of war under the Convention. Additional Protocol II, relating to Protection of Victims of NonInternational Armed Conflicts, provides in Part II for humane, nondiscriminatory treatment for those who do not take a direct part or who have ceased to take part in hostilities, whether or not their liberty has been restricted. These standards are discussed in section 7.3.7 of this paper dealing with the internment of adult foreign combatants.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "162ba36c-5ea5-436a-89c0-021cda6ed1fc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 9, + "Paragraph": "Human rights law The 1984 UN Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment contains a broad nonrefoulement provision, which states that: \u201cNo State shall expel, return (\u2018refouler\u2019) or extradite a person to another State where there are sub stantial grounds for believing that he would be in danger of being subjected to torture\u201d (art. 3[1]). As there are no exceptions to this nonrefoulement provision, foreign combatants may benefit from this prohibition against forcible return to a country of origin in situations where there are grounds to believe that they would be at risk of torture if returned. \u201cFor the purposes of determining whether there are such grounds, the competent authorities shall take into account all relevant considerations including, where applicable, the existence in the State concerned of a consistent pattern of gross, flagrant or mass violation of human rights\u201d (art. 3[2]). Several UN and regional conventions protect children caught up in armed conflict, in cluding the 1989 UN Convention on the Rights of the Child and the 2000 Optional Protocol to the Convention on the Rights of the Child on the Involvement of Children in Armed Con 5.30\tflict (for details, see IDDRS 5.30 on Children and DDR). International law standards on detention are relevant to internment of foreign com batants, e.g., the Body of Principles for the Protection of All Persons Under Any Form of Detention or Imprisonment,3 UN Standard Minimum Rules for the Treatment of Prisoners,4 and the Basic Principles for the Treatment of Prisoners.5", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "9d1061a1-2f75-4cde-b22c-dde11f27b8bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 10, + "Paragraph": "Refugee law A refugee is defined in the 1951 UN Convention and 1967 Protocol relating to the Status of Refugees as a person who: is outside his/her country of origin; has a wellfounded fear of persecution because of race, religion, nationality, member ship of a particular social group or political opinion; is unable or unwilling to avail him/herself of the protection of that country, or to return there, owing to the wellfounded fear of persecution. Later regional instruments extended this definition. The 1969 Organization of African Unity (OAU) Convention Governing the Specific Aspects of Refugee Problems in Africa repeats the 1951 Convention\u2019s definition of a refugee, but also covers any person who, \u201cowing to external aggression, occupation, foreign domination or events seriously disturbing public order in either part or the whole of his country of origin or nationality, is compelled to leave his place of habitual residence in order to seek refuge in another place outside his country of origin or nationality\u201d (art. 1[2]). This means that in Africa, persons fleeing civil distur bances, widespread violence and war are entitled to refugee status in States parties to the OAU Convention, whether or not they have a wellfounded fear of persecution. In Latin America, the Cartagena Declaration of 1984, although not binding, recommends that the definition of a refugee used in the region should include, in addition to those fitting the 1951 Convention definition, persons who fled their country \u201cbecause their lives, safety or freedom have been threatened by generalized violence, foreign aggression, internal conflicts, massive violations of human rights or other circumstances which have seriously disturbed public order\u201d. Some Latin American States have incorporated this definition into their national legislation. The 1951 Convention \u2014 and also the 1969 OAU Convention \u2014 explicitly defines those who do not deserve international protection as refugees, even if they meet the above defi nitions. These exclusion clauses are particularly relevant in the case of former combatants who have committed crimes against humanity, war crimes, etc., and are discussed in more detail in section 13.3.4. The instruments of refugee law set out a range of obligations of States parties, as well as rights and duties of refugees. The fundamental obligation of a country of asylum is not to \u201cexpel or return (\u2018refouler\u2019) a refugee in any manner whatsoever to the frontiers of territories where his life or freedom would be threatened on account of his race, religion, nationality, membership of a particular social group or political opinion\u201d (art.e 33[1] of the 1951 UN Convention). However, there is an exception to this rule, permitting return to the country of origin in the case of \u201ca refugee whom there are reasonable grounds for regarding as a danger to the security of the country in which he is, or who, having been convicted by a final judg ment of a particularly serious crime, constitutes a danger to the community of that country\u201d (art. 33[2]). While the humanitarian character of asylum is implicit in the 1951 UN Convention, its definition of a refugee describes a victim of serious human rights violations, and it pro vides an obligation for refugees to obey the laws and public order measures of the host country. It does not, however, deal explicitly with issues relating to combatants. Neverthe less, principles relating to the humanitarian and civilian character of asylum have been developed in the OAU Refugee Convention and in recommendations of UNHCR\u2019s Executive Committee (the governing body of representatives of States) and have been reaffirmed by the UN General Assembly. The OAU Convention specifies that \u201cthe grant of asylum to refugees is a peaceful and humanitarian act and shall not be regarded as an unfriendly act by any Member State\u201d and highlights the need to make \u201ca distinction between a refugee who seeks a peaceful and normal life and a person fleeing his country for the sole purpose of fomenting subver sion from outside\u201d and to be \u201cdetermined that the activities of such subversives should be discouraged, in accordance with the Declaration on the Problem of Subversion and Reso lution of the Problem of Refugees adopted in Accra in 1965\u201d. Under article III of the OAU Convention, refugees not only have a duty to obey the laws of the country of asylum, but must also abstain from subversive activities against other countries. Parties to the OAU Convention undertake to prohibit refugees residing in their countries from attacking other countries, by any activities likely to cause tensions with other countries. Under article II, countries of asylum have an obligation \u201cas far as possible [to] settle refugees at a reasonable distance from the frontier of their country of origin\u201d. The UNHCR Executive Committee has formulated a number of conclusions, providing guidance for protection during mixed population movements. Conclusion 94 on preserving the humanitarian and civilian character of asylum is attached as Annex C. It recommends, among other things, that States receiving influxes of refugees and combatants should take measures as early as possible to: disarm armed elements; identify and separate combatants from the refugee population; intern combatants. These recommendations are reaffirmed in various UN General Assembly resolutions. The General Assembly has \u201curge[d] States to uphold the civilian and humanitarian character of refugee camps and settlements, consistent with international law, inter alia, through effec tive measures to prevent the infiltration of armed elements, to identify and separate any such armed elements from refugee populations, to settle refugees at safe locations, where possible away from the border, and to ensure prompt and unhindered access to them by humanitarian personnel\u201d.6 The General Assembly has also \u201cwelcom[ed] the increased atten tion being given by the United Nations to the problem of refugee camp security, including through the development of operational guidelines on the separation of armed elements from refugee populations\u201d.7 In a report to the General Assembly, the UNHCR Executive Committee has recommended that the international community \u201cmobiliz[e] . . . adequate resources to support and assist host States in maintaining the civilian and humanitarian character of asylum, including in particular through disarmament of armed elements and the identification, separation and internment of combatants\u201d.8 The exclusively civilian and humanitarian character of asylum serves several purposes: it reduces potential tensions between countries of asylum and origin; it provides refugees with better protection; it allows the identification and separation of armed elements; and it helps to deal with internal and external security problems. A foreigner planning or carrying out militaryrelated activities in the host country is therefore not a refugee, and the host country must prevent foreign armed elements from using its territory to attack another State and prevent genuine refugees from joining them.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "917fe200-d539-4076-a01b-54dbe7fbfcd9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Context The varying reasons for the arrival of foreign combatants in a host country, as well as whether or not that country is involved in armed conflict, will be among the factors that determine the response of the host country and that of the international community. For example, foreign combatants may enter a country directly involved in armed conflict; they may be in a country that is a neutral neighbouring State; or they may be in a nonneutral country not directly involved in the conflict. Host countries may have political sympathies or State interests with regard to one of the parties to a conflict, and this may affect their policies or responses to influxes of combatants mixed in with refugees. Even if the host country is not neutral, international agencies should highlight the benefits to the host country and the region of complying with the international law framework described above. Awarenessraising, training and ad vocacy efforts, as well as individual country strategies to deal with issues of State capacity, cooperation and compliance with interna tional obligations and recommended actions, should be carried out.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "98cde800-2661-406a-8f59-0b5786a00f84", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Key agencies Key international agencies that could assist governments with issues relating to adult combatants include the Department of Peacekeeping Operations (DPKO), the International Committee of the Red Cross (ICRC), UNHCR, the UN High Commission on Human Rights (UNHCHR), the UN Development Programme (UNDP), the World Food Programme (WFP), the Office for the Coordination of Humanitarian Affairs (OCHA), the International Labour Organization (ILO) and the International Organization for Migration (IOM). Key national agencies that deal with these issues are those concerned with defence, armed forces, police, DDR, refugee/humanitarian activities and foreign affairs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "23323677-d2ae-487b-9795-50708b371fca", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 6, + "Paragraph": "Coordination Identification, disarmament, separation, internment, demobilization and eventual repatri ation and reintegration of foreign combatants (as well as other interventions) are multiState processes that require the participation and cooperation of multiple actors, including the host State, countries of origin, local communities, refugee communities, donor States, interna tional and national agencies, regional organizations, and the political and military parts of the UN system. Therefore coordination within a host State and crossborder is vital. At the national level, it may be helpful for key government and international agencies to set up an interagency forum for coordination and collaboration. This will be particu larly useful where the capacity and resources of the host country are limited, and there is a need for the international community to provide large amounts of assistance. It is recom mended that such a forum be restricted to essential and operational agencies present in the host country. The forum could arrange for and manage coordination and collaboration in matters of advocacy, awarenessraising, providing policy guidance, capacitybuilding, and setting up and supervising the methods used for the separation and internment of com batants, as well as later repatriation. Such a forum may also provide assistance with the maintenance of State security and with the mobilization of resources, including funding.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f810d3b5-53d1-4aa7-a5e5-6fdb72032b0e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 13, + "Paragraph": "Advocacy Advocacy by agencies should be coordinated. Agencies should focus on assisting the host government to understand and implement its obligations under international law and show how this would be beneficial to State interests, such as preserving State security, demonstrating neutrality, etc. What key points should be highlighted in advocacy on international obligations?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7c9a3b1a-ceaf-49dd-81f5-60a9f1505947", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 14, + "Paragraph": "Security screening and identification of foreign combatants Security screening is vital to the identification and separation of combatants. This screening is the responsibility of the host government\u2019s police or armed forces, which should be present at entry points during population influxes. International personnel/agencies that may be present at border entry points during influxes include: peacekeeping forces; military observers; UN Civilian Police; UNHCR for reception of refugees, as well as reception of foreign children associated with fighting forces, if the latter are to be given refugee status; and the UN Children\u2019s Fund (UNICEF) for gen eral issues relating to children. UNHCR\u2019s and/or UNICEF\u2019s child protection partner non governmental organizations (NGOs) may also be present to assist with separated refugee children and children associated with armed forces and groups. Child protection agencies may be able to assist the police or army with identifying persons under the age of 18 years among foreign combatants. Training in security screening and identification of foreign combatants could usefully be provided to government authorities by specialist personnel, such as international police, DPKO and military experts. They may also be able to help in making assessments of situa tions where there has been an infiltration of combatants, providing advice on preventive and remedial measures, and advocating for responses from the international community. The presence of international agencies as observers in identification, disarmament and separation processes for foreign combatants will make the combatants more confident that the process is transparent and neutral. Identification and disarmament of combatants should be carried out at the earliest possible stage in the host country, preferably at the entry point or at the first reception/ transit centre for new arrivals. Security maintenance at refugee camps and settlements may also lead to identification of combatants. If combatants are identified, they should be disarmed and transported to a secure loca tion in the host country for processing for internment, in accordance with the host govern ment\u2019s obligations under international humanitarian law.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e9d70150-6ab8-4bb0-8764-25a8494dd42d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 15, + "Paragraph": "Disarmament Once combatants are identified, they will usually be taken into the custody of the army of the host country and/or peacekeepers. They should be disarmed as soon as possible. Inter national military and police personnel may need to assist in this process. Weapons should be documented and securely stored for destruction or handing over to the government of the country of origin at the end of the internment period (e.g., at the end of the conflict). Other items such as vehicles should be kept in safe locations, also to be handed over at the end of the internment period. Personal items may be left in the possession of the owner. After they have been disarmed, foreign combatants may be handed over to the author ity responsible for their transportation to an internment facility \u2014 usually the police or security forces. The assistance of peacekeeping forces and any other relevant agencies may be required.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "21d1fc17-82a6-4f5a-b116-8da0667a59f2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 5, + "Paragraph": "Demobilization The host country, in collaboration with UN missions and other relevant international agencies, should decide at an early stage what level of demobilization of interned foreign combatants is desirable and within what timeframe. This will depend partly on the profile and motives of internees, and will determine the types of structures, services and level of security in the internment facility. For example, keeping military command and control structures will assist with maintaining discipline through commanders. Lack of demobilization, however, will delay the process of internees becoming civilians, and as a result the possibility of their gaining future refugee status as an exit strategy for foreign combatants who are seeking asylum. On the other hand, discouraging and dismantling military hierarchies will assist the demobilization process. Reuniting family members or putting them in contact with each other and providing skills training, peace education and rehabilitation programmes will also aid demobilization. Mixing different and rival factions from the country of origin, the feasibility of which will depend on the nature of the conflict and the reasons for the fighting, will also make demobilization and reconciliation processes easier.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "be7b2be3-84b2-43d1-beeb-9b8f49eda8ac", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Internment10 The nature of internment Article 11 of the 1907 Hague Convention provides that: \u201cA Neutral Power which receives on its territory troops belonging to the belligerent armies shall intern them, as far as possible, at a distance from the theatre of war. It may keep them in camps and even confine them in fortresses or in places set apart for this purpose. It shall decide whether officers can be left at liberty on giving their parole not to leave the neutral territory without permission.\u201d Internment therefore does not necessarily require complete loss of liberty, and host States could grant internees varying degrees of freedom of movement, as long as the foreign combatants can no longer participate in hostilities from the neutral States\u2019 territory. The host government should therefore decide what level of freedom of movement it wants to allow internees and set up a system to regulate movement in and out of internment camps. In order to be able to monitor the movement of internees properly and prevent them from engaging in unlawful activities, including use of the host country\u2019s territory for military purposes, it is likely to be necessary for internment to involve at least some level of confinement. Depending on the local circumstances (mainly the extent of the security risk), this may range from a closed camp with no external freedom of movement to systems that provide for freedom of movement (e.g., a pass system that permits visits outside the camp or a system of reporting to authorities). Article 12 of the Convention lays down the conditions of treatment for internees as follows: \u201cIn the absence of a special convention to the contrary, the Neutral Power shall supply the interned with the food, clothing, and relief required by humanity. At the conclu sion of peace the expenses caused by the internment shall be made good.\u201d", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "036ebbc8-8f47-4e39-a71c-aaaf032513f4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 16, + "Paragraph": "Standards of internment The Third Geneva Convention of 1949 lays down minimum rights and conditions of intern ment to be granted to captured combatants. These rights also apply by analogy to foreign combatants interned in a neutral State. What are the basic standards under the Third Geneva Convention?11 Additional Protocol II relating to Protection of Victims of NonInternational Armed Conflicts provides in Part II for humane, nondiscriminatory treatment for those who do not take a direct part in, or who have ceased to take part in, hostilities, whether or not their liberty has been restricted. Such persons may include internees. What are applicable standards under Additional Protocol II? Assistance by the international community At least at the early stages of setting up and managing an internment camp, it is likely that host governments will lack capacity and resources for the task. International agencies have an important role to play in acquiring and supplying resources in order to assist the host government to provide internees with the \u201crelief required by humanity\u201d (as required under the Hague Convention): In collaboration with the host government, international agencies should assist with awarenessraising and lobbying of donors, which should take place as soon as possible, as donor funding often takes time to be made available. Donors should be informed about the resource needed to separate and intern combatants and the benefits of such policies, e.g., maintaining State security, helping the host government to keep borders open for asylum seekers, etc.; International agencies should favourably consider contributing financial grants, mate rial and other assistance to internment programmes, especially in the early phases when the host government will not have donor funding for such programmes. Contributing assistance, even on an ad hoc and temporary basis, will make international agencies\u2019 advocacy and advisory roles more effective. The following are some illustrations of ways in which international agencies can contribute: Food. WFP may assist with providing food. Given the inability of internees to feed themselves because of their restricted freedom of movement, each internee should be entitled to a full food ration of at least 2,100 kilocalories per day. Health care. International agencies\u2019 partners (e.g., local Red Cross societies) may be able to provide mobile health clinics, to supplement hospital treatment for more serious medical matters. Medical care should include reproductive health care for female internees. Non-food items. Items such as plastic sheeting, plates, buckets, blankets, sleeping mats, soap, etc. will be needed for each internee and agency contributions will be essential. Agencies such as UNHCR and ICRC, if they have the resources, may be able to give extra assistance at least temporarily until the government receives regular donor funding for the internment initiative. Registration and documentation. Agencies could help the host government to develop a system for regi- stration and issuing of identity documentation. Agencies will often need the data themselves, e.g., ICRC in order to arrange family tracing and family visits, and UNHCR for the purpose of getting information on the profiles of internees who may later come within their mandate if, at a later stage, internees apply for refugee status. ICRC may issue its own documentation to internees in connection with its detention- monitoring role. Skills training. To combat the problem of idleness and to provide rehabilitation and alternative skills for internees, as well as to maintain order and dignity during internment, agency partners must try to pro- vide/fund vocational skills training programmes as soon as possible. In order for demobilization and reintegration to start in internment camps, it is essential to have skills training programmes that could help internees to become rehabilitated. Social skills training would also be helpful here, such as sensiti- zation in human rights, civic education, peace-building, HIV/AIDS, and sexual and gender-based violence. Recreation. Sufficient space for recreation and sporting equipment should be provided for the purpose of recreation. Re-establishing family links. ICRC, together with national societies, should try to trace family members of internees, both across borders and within the host country, which will allow family links to be re- established and maintained (e.g., through exchange of Red Cross messages). Where civilian family members have also crossed into the host country, arrangements should be made for maintaining family unity. There are various options: families could be accommodated in internment camps, or in a separate nearby facility, or in a refugee camp or settlement. If family members are voluntarily accommodated", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "e53bdcc5-9b20-4fb3-ae56-5c949e0355f1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 19, + "Paragraph": "Nationality issues In view of the chaotic conditions usually found in conflict situations and the difficulties in setting up an adequate identification programme that could be operational immediately, combatants may be admitted to separation, disarmament and internment processes re gardless of their nationality. Hence, it would be more practical to deal with problems of nationality at the end of internment, in order to decide, in consultation with the former combatants, the country in which they would undergo a DDR programme and the country to which they would finally return. This will require liaison between the governments in volved, and should be closely monitored/supervised by the relevant agencies.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "ced1efa8-ad62-41a3-a251-321ac314d369", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 19, + "Paragraph": "Special requirements of female combatants Internment camps should provide genderappropriate facilities, including separate accom modation, washing and toilet facilities, as well as sexspecific health services, including reproductive health care. This must include sanitary kits and clean birthing kits for women. Women with babies should be given the means to care for their own children. With the ex ception of young babies, accommodating children in internment camps should be avoided and alternative accommodation should be found for them and their mothers. When intern ees are transported, sufficient vehicles should be provided to offer women the option of being transported separately from men, if their personal safety is threatened. Protection from sexual harassment and other violence should be ensured at all times (also see IDDRS 5.10 on Women, Gender and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "04f6182a-55ce-4406-a28c-9c63d0e7e2cb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 19, + "Paragraph": "Redressing incorrect internment decisions In the internment camps, authorities should have flexibility to review and change incorrect decisions regarding who has been interned on a casebycase basis. For this purpose, agen cies with a protection mandate, such as ICRC, UNHCR, UNHCHR and UNICEF, should have confidential access to internees. Persons incorrectly interned include: civilians who have not participated in military activities, and who could therefore be regarded as refugees or asylum seekers; civilians who have not participated in military activities and who were abducted by combatants (including women and girls abducted for the purpose of sexual slavery 5.10 and men abducted for medical or other labour services), but who do not fall within the definition of a refugee. Such persons will usually be voluntarily repatriated; children associated with armed forces and groups who were not identified as children during the separation process, incorrectly ending up in internment camps for adult combatants; persons who do not fit the definition of combatant, and who were separated and in terned on the basis of criteria other than those established for the separation process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a00216b7-6335-4bbc-95c5-085901c21b96", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 20, + "Paragraph": "Exit strategies It is important, whenever possible, to plan for exit strategies for internment programmes, although where the conflict in the country of origin lasts a long time, internment may also be lengthy. Exit strategies may include: including internees in DDR programmes in the country of origin at the end of the conflict; deciding whether internees who are considered to have become civilians after a period of demobilization and who apply for refugee status should be given that status.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6c723cb5-bc86-49a4-b143-6ae0193b6d75", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 20, + "Paragraph": "Mercenaries International law makes special provision for and prohibits the recruitment, use, financing or training of mercenaries. A mercenary is defined as a foreign fighter who is specially recruited to fight in an armed conflict, is motivated essentially by the desire for private gain, and is promised wages or other rewards much higher than those received by local combat ants of a similar rank and function.12 Mercenaries are not considered to be combatants, and are not entitled to prisonerofwar status. The crime of being a mercenary is committed by any person who sells his/her labour as an armed fighter, or the State that assists or recruits mercenaries or allows mercenary activities to be carried out in territory under its jurisdiction. Not every foreign combatant meets the definition of a mercenary: those who are not motivated by private gain and given high wages and other rewards are not mercenaries. It may sometimes be difficult to distinguish between mercenaries and other types of foreign combatants, because of the crossborder nature of many conflicts, ethnic links across porous borders, the high levels of recruitment and recycling of combatants from conflict to conflict within a region, sometimes the lack of real alternatives to recruitment, and the lack of a regional dimension to many previous DDR programmes. Even when a foreign combatant may fall within the definition of a mercenary, this does not limit the State\u2019s authority to include such a person in a DDR programme, despite any legal action States may choose to take against mercenaries and those who recruit them or assist them in other ways. In practice, in many conflicts, it is likely that officials carrying out disarmament and demobilization processes would experience great difficulty distinguish ing between mercenaries and other types of foreign combatants. Since the achievement of lasting peace and stability in a region depends on the ability of DDR programmes to attract the maximum possible number of former combatants, it is recommended that mercenaries should not be automatically excluded from DDR processes/programmes, in order to break the cycle of recruitment and weapons circulation and provide the individual with sustain able alternative ways of making a living. DDR programmers may establish criteria to deal with such cases. Issues for consid eration include: Who is employing and commanding mercenaries and how do they fit into the conflict? What threat do mercenaries pose to the peace process, and are they factored into the peace accord? If there is resistance to account for mercenaries in peace processes, what are the underlying political reasons and how can the situation be resolved? How can mercenaries be identified and distinguished from other foreign combatants? Do individuals have the capacity to act on their own? Do they have a chain of command? If so, is their lead ership seen as legitimate and representative by the other parties to the process and the UN? Can this leadership be approached for discussions on DDR? Do its members have an interest in DDR? If mercenaries fought for personal gain, are DDR benefits likely to be large enough to make them genuinely give up armed activities? If DDR is not appropriate, what measures can be put in place to deal with mercenaries, and by whom \u2014 their employers and/or the national authorities and/or the UN?", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b8cde622-45c3-4b54-af9a-69639898fb8a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Context In many armed conflicts, it is common to find large numbers of children among combat ants, especially in armed groups and in long lasting conflicts. Priority shall be given to identifying, removing and providing appro priate care for children during operations to identify and separate foreign combatants. Correct identification of children among com batants who enter a host country is vital, because children shall benefit from separate programmes that provide for their safe re moval, rehabilitation and reintegration.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "bfc60ba4-4a68-42a4-ac30-f459a4fca2b8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Key agencies UNHCR, UNICEF and ICRC will be particularly involved in helping governments to deal with foreign children associated with armed forces and groups. Key national agencies in clude those concerned with children\u2019s issues, social welfare, and refugee and humanitarian affairs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "cda957ec-c0a8-49c5-9414-2dece705601d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Agreement with host country government on the status and treatment of foreign children associated with armed forces and groups Agencies such as UNHCR, UNICEF and ICRC should advocate with the host country for foreign children associated with armed forces and groups to be given a legal status, and care and protection that promote their speedy rehabilitation and best interests, in accordance with States\u2019 obligations under the Convention on the Rights of the Child and its Optional Protocol on Involvement of Children in Armed Conflict. An appropriate status for children may include refugee status, because of the illegality of and serious child rights violations involved in the underaged recruitment of children, as well as the need for children to be removed, rehabilitated and reintegrated in their com munities as soon as possible. Refugee status can be given on a prima facie and collective basis in cases of largescale arrivals, as and if applicable. Where the refugee status of indi viduals must be decided, reasons for giving refugee status in the case of children fleeing armed conflict may include a wellfounded fear of illegal recruitment, sexual slavery or other serious child rights violations. Agreement should be reached with the host government on the definition of a \u2018child\u2019 for the purpose of providing separate treatment for children associated with armed forces and groups. In view of the development of international law towards the position that persons under age 18 should not participate in hostilities, it is recommended that advocacy with host governments should be for all combatants under the age of 18 to be regarded as children.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "0b9ebc14-6d65-4fb8-bd64-5ec6ef60a709", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 22, + "Paragraph": "Identification of children among foreign combatants When agreement is reached with the host country government about the definition of a child and the methods for providing children with separate treatment from adults, this informa tion should be provided to all those involved in the process of identifying and separating combatants (i.e., army, police, peacekeepers, international police, etc.). It is often difficult to decide whether a combatant is under the age of 18, for a range of reasons. The children themselves may not know their own ages. They are likely to be under the influence of commanders who may not want to lose them, or they may be afraid to separate from commanders. Questioning children in the presence of commanders may not, therefore, always provide accurate information, and should be avoided. On the other hand, young adult combatants who do not want to be interned may try to falsify their age. Child protection agencies present at border entry points may be able to help army and police personnel with determining the ages of persons who may be children. It is therefore rec ommended that agreement be reached with the government of the host country on the 5.30\tinvolvement of such agencies as advisers in the identification process (also see IDDRS 5.30 on Children and DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8849856e-7866-49b1-9bb0-4ece04402098", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 22, + "Paragraph": "Separation of foreign children associated with armed forces and groups Once identified, children should be disarmed if necessary, removed from commanders and handed over to the custody of relevant agencies present at the border such as UNHCR, UNICEF and child protection NGOs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "35f2ab13-d7ec-402a-bb8d-1a566e173475", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 22, + "Paragraph": "Demobilization, rehabilitation and reintegration Children should not be accommodated in internment camps with adult combatants, unless a particular child is a serious security threat. This should only happen in exceptional circum stances, and for no longer than absolutely necessary. Where the government has agreed to recognize children associated with fighting forces as refugees, these children can be accommodated in refugee camps or settlements, with due care given to possible security risks. For example, a short period in a refugee transit centre or appropriate interim care facility may give time for the child to start the demobilization process, socialize, readjust to a civilian environment, and prepare to transfer to a refugee camp or settlement. Temporary care measures like these would also provide time for agencies to carry out registration and documentation of the child and intercamp tracing for family members, and find a suitable camp for placement. Finally, the use of an interim facility will allow the organization of a sensitization campaign in the camp to help other refugees to accept children associated with armed forces and groups who may be placed with them for reintegration in communities. Children associated with armed forces and groups should be included in programmes for other populations of separated children rather than being isolated as a separate group within a refugee camp or settlement. The social reintegration of children associated with fighting forces in refugee communities will be assisted by offering them normal activities such as education, vocational skills training and recreation, as well as family tracing and reunification. Younger children may be placed in foster care, whereas \u2018independent/group living\u2019 arrangements with supervision by a welfare officer and \u2018older brother\u2019 peer support may be more appropriate for older adolescents.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "dfb50492-308e-473f-8a6b-619b1690d63f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 23, + "Paragraph": "Prevention of military recruitment Prevention of (re)recruitment, especially of atrisk young people such as children previously associated with armed forces and groups and separated children, must be an important focus in refugee camps and settlements. Preventive measures include: locating camps and settlements a safe distance from the border; sufficient agency staff being present at the camps; security and good governance measures; sensitization of refugee communities, families and children themselves to assist them to avoid recruitment in camps; birth registration of children; and adequate programmes for atrisk young people, including familytracing activities, education and vocational skills programmes to provide alternative livelihood options for the future.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "91232464-24b2-4958-8a95-1f9cd7d7305b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 23, + "Paragraph": "Specific needs of girls In many conflicts, there is a significant level of warrelated sexual violence against girls. (NB: Boys may also be affected by sexual abuse, and it is necessary to identify survivors, although 5.20\t5.10 5.10 this may be difficult.) Girls who have been associated with armed groups and forces may have been subjected to sexual slavery, exploitation and other abuses and may have babies of their own. Once removed from the armed group or force, they may continue to be at risk of exploitation in a refugee camp or settlement, especially if they are separated from their families. Adequate and culturally appropriate sexual and genderbased violence pro grammes should be provided in refugee camps and communities to help protect girls, and community mobilization is needed to raise awareness and help prevent exploitation and abuse. Special efforts should be made to allow girls access to basic services in order to prevent exploitation (also see IDDRS 5.20 on Youth and DDR and IDDRS 5.10 on Women, Gender and DDR).", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "12f318e2-8e90-44d8-9237-2216e59202d5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Context Foreign combatants entering a host country may sometimes be accompanied by civilian fam ily members or other dependants. Family members may also independently make their way to the host country. If the family members have entered the host country to seek asylum, they should be considered as refugees or asylum seekers, unless there are individual cir cumstances to the contrary.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b76198d4-20ca-4854-9b2e-52313d241112", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 24, + "Paragraph": "Providing safe asylum and accommodation When civilian family members of combatants enter a country of asylum, they should be directed to UNHCR and the host government\u2019s refugee agency, while the adult combatants will be dealt with by the army and police. Family members or dependants may be accom modated in refugee camps or settlements or urban areas (depending on the policy of the government of the host country). Accommodation placements should be carried out with due regard to protection concerns, e.g., family members of a combatant should be protected from other refugees who may be victims of that combatant.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b873d0ca-d3c3-4448-9b91-0aa14577d949", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 24, + "Paragraph": "Maintaining family links with foreign combatants It is important to try to establish family links between refugee family members and com batants in internment camps, since separation and internment policies may create many femaleheaded households. Family links can be maintained through family tracing, ex changes of Red Cross messages and family visits to internment camps, which should be organized by ICRC, Red Cross national societies and UNHCR. Women and girls who have been forcibly abducted and are married under circumstances not recognized by customary or national law have the right, with their children where applicable, to be safely separated from their \u2018husbands\u2019 (also see IDDRS 5.10 on Women, Gender and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4186960d-97c5-471e-8495-691d45e969d9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 25, + "Paragraph": "Preserving the civilian and humanitarian character of asylum It is essential to ensure that refugee camps and settlements do not become militarized through the infiltration of combatants, which may lead to camps and settlements becoming the focus of security problems, including military attacks. Preventing this problem is primarily the responsibility of the government of the host country, but international agencies should support the government, and donor support will be essential. Security in and around refugee camps and settlements can be achieved through: locating refugee camps and settlements a safe distance away from the border (generally at least 50 kilometres) and conflict zones; the systematic identification, disarmament, separation and internment of combatants; the screening of persons being relocated to refugee camps to ensure that only civilians are admitted; prohibiting armed elements from residence in, transit though or visits to refugee camps and settlements; prohibiting all military activities in refugee camps, including recruitment, training and providing support to combatants; prohibiting the holding, trading and bringing of weapons and ammunition into refugee camps and settlements by unauthorized persons; ensuring the presence of enough agency staff in camps and settlements; enforcing law and order in camps and settlements; enforcing security measures such as stationing police in and around camps and settle ments; involving refugees in ensuring their own security and the peaceful and humanitarian character of camps and settlements, e.g., through communitybased neighbourhood watch schemes and good governance measures in camps and settlements; enforcing properly functioning camp rules and bylaws to regulate the conduct of refugees, resolve disputes, etc., in order to supplement the laws of the host country (to which refugees are also subject); correctly designing the size and physical layout of camps and settlements; encouraging good neighbourliness between refugee camps/settlements and host communities.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8c8f8dc6-5455-46c4-8046-2c132a4ebacd", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 5, + "Paragraph": "countries In the context of regionalized conflicts, crossborder attacks and movements of combatants across borders, experience has shown that within the households of combatants, or under their control in other ways, will be persons who have been abducted across borders for the purposes of forced labour, sexual exploitation, military recruitment, etc. Their presence may not become known until some time after fighting has ended.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9daceb08-0446-485a-aa2d-c86208b6e3bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 12, + "Paragraph": "Key agencies Crossborder abductees do not necessarily come within the mandate of any specific inter national agency. However, agencies such as UNHCR and ICRC are encouraged to assist such thirdcountry nationals on humanitarian grounds in view of their situation of external dis placement. Key national agencies include those concerned with humanitarian affairs. 5.10\t5.30", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "71e93dfe-170f-4f2e-ad2c-9f9f3ea97cec", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Identification, release, finding long-lasting solutions The main ways in which agencies can protect and assist crossborder abductees are for them to: (1) identify those who have been abducted (they may often be \u2018invisible\u2019, particularly in view of their vulnerability and their marginalization from the local community because of their foreign nationality, although it may be possible to get access to them by working through local, especially women\u2019s organizations); (2) arrange for their release if necessary; and (3) arrange for their voluntary repatriation or find another longterm way to help them. Foreign abductees should be included in interagency efforts to help national abductees, such as advocacy with and sensitization of combatants to release abductees under their control (also see IDDRS 5.10 on Women, Gender and DDR and IDDRS 5.30 on Children and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "402be46f-7177-4998-b73f-5989afa054c4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 26, + "Paragraph": "Eligibility for DDR Crossborder abductees should be considered as eligible to participate in reintegration pro grammes in the host country or country of origin together with other persons associated with the armed forces and groups, regardless of whether or not they are in possession of weapons. Although linked to the main DDR process, such programmes should be separate from those dealing with persons who have fought/carried weapons, and should carefully screen refugees to identify those who are eligible.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "596611ff-7b1f-4ad6-a650-3a7d39c7a88f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 26, + "Paragraph": "Issues relating to women and girls Women and girl abductees, including forced wives of combatants and those with children conceived during their captivity, are likely to be in a particularly difficult situation, both in the host country and in the country of origin. They will need special attention in protection, reintegration and reconciliation activities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "861f7c5f-18ac-4852-8525-b0b21f63b7f4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 26, + "Paragraph": "Local integration and empowerment Crossborder abductees who do not want to repatriate, or are not in a position to make a decision to separate themselves from abduc tors/combatants, should be included in hu manitarian assistance programmes in these locations, in order to empower them so that they can make decisions about their future, as well as to help them integrate into the host country, if that is what they want to do.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b4a368b9-b836-4ba9-86f2-62ff531ebd16", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 26, + "Paragraph": "Re-establishing family links Crossborder family links should be estab lished and coordinated in collaboration with ICRC and national Red Cross and Red Cres Repatriation, Republic of Congo, 2005. Photo: J. Ose, UNHCR cent societies (which have a mandate for tracing people across international borders) or other relevant agencies. This service will assist crossborder abductees to make decisions about their longterm future (e.g., by helping them to assess the reaction of family members to their situation) and will help to bring about future family reunification. Both abductees and family members are likely to be in need of counselling before family reunification.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d1b0b95a-0fa9-4cf0-90e2-d83476cf6ce1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 27, + "Paragraph": "Regional dimensions to be taken into account in setting up DDR programmes Since lasting peace and stability in a region depend on the ability of DDR programmes to attract the maximum possible number of former combatants, the following principles relat ing to regional and crossborder issues should be taken into account in planning for DDR: DDR programmes should be open to all persons who have taken part in the con flict, including foreigners and nationals who have crossed international borders. Extensive sensitization is needed both in countries of origin and host countries to ensure that all persons entitled to par ticipate in DDR programmes are aware of their right to do so; close coordination and links among all DDR programmes in a region are essential. There should be regular coordination meetings on DDR issues \u2014 including, in particular, regional aspects \u2014 among UN missions, national commissions on DDR or competent government agencies, and other relevant agencies; to avoid disruptive consequences, including illicit crossborder movements and traffick ing of weapons, standards in DDR programmes within a region should be harmonized as much as possible. While DDR programmes may be implemented within a regional framework, such programmes must nevertheless take into full consideration the poli tical, social and economic contexts of the different countries in which they are to be implemented; in order to have accurate information on foreign combatants who have been involved in a conflict, DDR registration forms should contain a specific question on the national ity of the combatant.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "9525ca0b-831b-497c-a741-a1ffc18bd13f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 27, + "Paragraph": "Repatriation agreements As part of regional DDR processes, agreements should be concluded between countries of origin and host countries to allow both the repatriation and the incorporation into DDR programmes of combatants who have crossed international borders. UN peacekeeping missions and regional organizations have a key role to play in carrying out such agreements, particularly in view of the sensitivity of issues concerning foreign combatants. Agreements should contain guarantees for the repatriation in safety and dignity of former combatants, bearing in mind, however, that States have the right to try individuals for criminal offences not covered by amnesties. In the spirit of postwar reconciliation, guarantees may include an amnesty for desertion or an undertaking that no action will be taken in the case of former combatants from the government forces who laid down their arms upon entry into the host country. Protection from prosecution as mercenaries may also be necessary. However, there shall be no amnesty for breaches of international humanitarian law during the conflict. Agreements should also provide a basis for resolving nationality issues, including meth ods of finding out the nationality those involved, deciding on the country in which former combatants will participate in a DDR programme and the country of eventual destination. Family members\u2019 nationalities may have to be taken into account when making longterm plans for particular families, such as in cases where spouses and children are of different nationalities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "fd95602b-50d3-4f7d-9d49-9baa51b6bba8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 28, + "Paragraph": "Information and sensitization campaigns UN missions, with the support of agencies such as UNDP, UNICEF and UNHCR, should lead extensive information campaigns in host countries to ensure that foreign combatants are provided with essential information on how to present themselves for DDR programmes. The information should enable them to make free and informed decisions about their repa triation and reintegration prospects. It is important to ensure that refugee family members in camps and settlements in the host country also receive relevant information. UN missions should help arrange voluntary contacts between government officials and foreign combatants. This will assist in encouraging voluntary repatriation and planning for the inclusion of such combatants in DDR programmes in their country of origin. However, foreign combatants who do not want to meet with government officials of their country of origin should not be forced to do so. The government of the country of origin, together with the UN mission and relevant agencies, should sensitize receiving communities in areas to which former combatants will be repatriating, in order to encourage reintegration and reconciliation. Receiving com munities may plan traditional ceremonies for healing, forgiveness and reconciliation, and these should be encouraged, provided they do not violate human rights standards.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "26abd182-9d8c-425f-8ba8-6119cbc4d766", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 28, + "Paragraph": "Identification of foreign combatants and disarmament Apart from combatants who are confined in internment camps, there are likely to be other former or active combatants living in communities in host countries. Therefore, national security authorities in host countries, in collaboration with UN missions, should identify sites in the host country where combatants can present themselves for voluntary repatria tion and incorporation in DDR programmes. In all locations, UNICEF, in collaboration with child protection NGOs, should verify each child\u2019s age and status as a child soldier. In the event that female combatants and women associated with armed forces and groups are identified, their situation should be brought to the attention of the lead agency for women in the DDR process. Where combatants are in possession of armaments, they should be immediately disarmed by security forces in collaboration with the UN mission in the host country.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fc1a95ee-c21f-496b-8ee6-27f732502375", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 28, + "Paragraph": "Voluntary repatriation In keeping with the principle that \u201ceveryone has the right to seek and to enjoy in other countries asylum from persecution\u201d,13 repatriation should be voluntary. However, where an application for refugee status has been rejected according to fair procedures and the individual has been assessed as not being in need of international protection, he/she may be returned to the country of origin even against his/her will (see section 10.6). The fact that repatriation is voluntary could be verified by UN missions in the case of adult combatants, and by UNICEF and child protection agencies in the case of children associated with armed forces and groups. Where children associated with armed forces and groups are living in refugee camps, the fact that repatriation is voluntary shall be verified by UNHCR.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "83799249-8eb7-4460-ba0e-f52d9867fb77", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 29, + "Paragraph": "Maintaining family unity during repatriation Every effort should be made to ensure that family unity is preserved in repatriation move ments. UN missions should support the governments of the host country and country of origin by assisting with transportation. Where combatants have family members or other dependants in refugee camps, there should be close consultation with UNHCR so that the voluntary repatriation of family members can be coordinated and carried out according to the wishes of the family members and with full respect for their safety and dignity. In cases where it is not possible to repatriate combatants and family members/dependants as family units, mechanisms to reunite the family upon return should be established. Spouses and children who are not citizens of the country to which they are travelling should be allowed by the government concerned to enter and live in that country with an appropriate legal status. This applies equally to spouses and children of \u2018traditional mar riages\u2019 and legally recognized marriages.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c63d525a-e589-4d99-a63c-f722793d1383", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 29, + "Paragraph": "Repatriation movements Governments and UN missions will be responsible for repatriation movements of foreign combatants, while UNHCR will provide transportation of family members. Depending on the local circumstances, the two repatriation operations could be merged under the overall management of one agency. The concerned governments should agree on travel documents for foreign former com batants, e.g., DDR cards for those who have been admitted to a disarmament programme in the host country, or ICRC travel documents or host country documentation for those who have been interned. To allow the speedy repatriation of foreign former combatants and their family members, the governments involved should consider not requesting or obliging those being repatri ated to complete official immigration, customs and health formalities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8fa909eb-6be7-492d-9f75-8c677f7c9f9b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 29, + "Paragraph": "Factors affecting foreign children associated with armed forces and groups Particular care should be taken with regard to whether, and how, to include foreign children associated with armed forces and groups in DDR programmes in the country of origin, especially if they have been living in refugee camps and communities. Since they are already living in a civilian environment, they will benefit most from DDR rehabilitation and rein tegration processes. Their level of integration in refugee camps and communities is likely to be different. Some children may be fully integrated as refugees, and it may no longer be in their best interests to be considered as children associated with armed forces and groups in need of DDR assistance upon their return to the country of origin. Other children may not yet have made the transition to a civilian status, even if they have been living in a civilian environment, and it may be in their best interests to participate in a DDR programme. In all cases, stigmatization should be avoided. It is recommended that foreign children associated with armed forces and groups should be individually assessed by UNHCR, UNICEF and/or child protection partner NGOs to plan for the child\u2019s needs upon repatriation, including possible inclusion in an appropriate DDR programme. Factors to consider should include: the nature of the child\u2019s association with armed forces or groups; the circumstances of arrival in the asylum country; the stability of present care arrangements; the levels of integration into camp/communitybased civilian activities; and the status of familytracing efforts. All decisions should involve the partici pation of the child and reflect his/her best interests. It is recommended that assessments should be carried out in the country of asylum, where the child should already be well known to, and should have a relationship of trust with, relevant agencies in the refugee camp or settlement. The assessment can then be given to relevant agencies in the country of origin when planning the voluntary repatriation of the child, and decisions can be made about whether and how to include the child in a DDR programme. If it is recommended that a child should be included in a DDR programme, he/she should receive counselling and 5.30\tfull information about the programme (also see IDDRS 5.30 on Children and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "34968c16-a867-44a5-ab2b-2a23c6c6155e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 30, + "Paragraph": "Assurances upon return Governments must ensure that former combatants and their dependants are able to return in conditions of safety and dignity. Return in safety implies a guarantee of: legal security (e.g., appropriate amnesties or public assurances of personal safety, integ rity, nondiscrimination and freedom from fear of persecution); physical security (e.g., protection from armed attacks, routes that are free of unexploded ordnances and mines); material security (e.g., access to land or ways to earn a living). Return in dignity implies that returnees should not be harassed on departure, on route or on arrival. If returning spontaneously, they should be allowed to do so at their own pace; should not be separated from family members; should be allowed to return without pre conditions; should be accepted and welcomed by national authorities and local populations; and their rights and freedoms should be fully restored so that they can start a meaningful life with selfesteem and selfconfidence. In keeping with the spirit of postwar reconciliation, it is recommended that the govern ment of the country of origin should not take disciplinary action against former combatants who were members of the government armed forces and who laid down their arms during the war. They should benefit from any amnesties in force for former combatants in general.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "979ebafe-e8c7-46c1-a68b-ac31d52804e9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 30, + "Paragraph": "Inclusion in DDR programmes In accordance with agreements reached between the country of asylum and the country of origin during the planning for repatriation of former combatants, they should be included Liberian former combatants, who were interned in Sierra Leone during the Liberian civil war, listen to speeches of welcome upon their repatriation and incorporation in the Liberia DDR programme in 2005. Returning home is usually the best solution for cross- border combatants. Photo: T.Sharpe, UNMIL/UNHCR in appropriate DDR programmes in their country of origin. Entitlements should be syn chronized with DDR assistance received in the host country, e.g., if disarmament and demo bilization has been carried out in the host country, then reintegration is likely to be the most important process for repatriated former combatants in the country of origin. Lack of rein tegration may contribute to future crossborder movements of combatants and mercenaries.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9835678b-edc6-428a-a1df-ccb7bcdcdcbd", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 22, + "Paragraph": "Reintegration Entitlements under DDR programmes are only a contribution towards the process of rein tegration. This process should gradually result in the disappearance of differences in legal rights, duties and opportunities of different population groups who have rejoined society \u2014 whether they were previously displaced persons or demobilized combatants \u2014 so that all are able to contribute to community stabilization and development. Agencies involved in reintegration programming should support the creation of eco nomic and social opportunities that assist the recovery of the community as a whole, rather than focusing on former combatants. Every effort shall be made not to increase tensions that could result from differences in the type of assistance received by victims and perpetrators. Communitybased reintegration assistance should therefore be designed in a way that encourages reconciliation through community participation and commitment, including demobilized former combatants, returnees, internally displaced persons (IDPs) and other needy community members (also see IDDRS 4.30 on Social and Economic Reintegration). 4.30 Efforts should be made to ensure that different types of reintegration programmes work closely together. For example, in countries where the \u20184Rs\u2019 (repatriation, reintegration, re habilitation and reconstruction) approach is used to deal with the return and reintegration of displaced populations, it is important to ensure that programme contents, methodologies and approaches support each other and work towards achieving the overall objective of 2.30\tsupporting communities affected by conflict (also see IDDRS 2.30 on Participants, Benefici aries and Partners).14 Links between DDR and other reintegration programming activities are especially relevant where there are plans to reintegrate former combatants into communities or areas alongside returnees and IDPs (e.g., former combatants may benefit from UNHCR\u2019s com munitybased reintegration programmes for returnees and waraffected communities in the main areas of return). Such links will not only contribute to agencies working well together and supporting each other\u2019s activities, but also ensure that all efforts contribute to social and political stability and reconciliation, particularly at the grassroots level. In accordance with the principle of equity for different categories of persons returning to communities, repatriation/returnee policies and DDR programmes should be coordinated and harmonized as much as possible.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "17d9c140-51a5-4080-9445-071a5749918b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 32, + "Paragraph": "12.4. Monitoring The disarmament, demobilization, rehabilitation and reintegration of former combatants should be monitored and reported on by relevant agencies as part of a communityfocused approach (i.e., including monitoring the rights of waraffected communities, returnees and IDPs, rather than singling out former combatants for preferential treatment). Relevant monitoring agencies include UN missions, UNHCHR, UNICEF and UNHCR. Human rights monitoring partnerships should also be established with relevant NGOs. In the case of an overlap in areas of return, UNHCR will usually have established a field office. As returnee family members of former combatants come within UNHCR\u2019s mandate, the agency should monitor both the rights and welfare of the family unit as a whole, and those of the receiving community. Such monitoring should also help to build confidence. What issues should be monitored?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2190284e-0d49-49c1-8c7a-6f89243c8d19", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 6, + "Paragraph": "Refugee status Foreign combatants should not be included in the prima facie awarding of refugee status to large groups of refugees, as asylum should be granted to civilians only. UNHCR recom mends that where active or former combatants may be mixed in with refugees in population influxes, host countries should declare that prima facie recognition of refugee status does not apply to either group. After a reasonable period of time has been allowed to confirm that former combatants have genuinely renounced armed/military activities, UNHCR will support governments of host countries by helping to determine the refugee status (or helping governments to determine the refugee status) of former combatants who refuse to repatriate and instead ask for international protection. These assessments should carefully take into account the \u2018excludability\u2019 of such individuals from international protection as provided by article 1 F of the 1951 Convention relating to the Status of Refugees and its 1967 Protocol.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "208a4d20-41cd-43fd-a63b-9c7597738d95", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 33, + "Paragraph": "Sustainable plans for the future Determining refugee status must be linked to making sustainable longterm future plans for former combatants. These could be: Repatriation: Voluntary, safe and dignified repatriation to the country of origin at the end of the conflict or other event that gave rise to refugee claims is considered the best response for most population influxes; Local integration: For former combatants who are protected as refugees and therefore cannot be repatriated, the best option will be local integration, since options for third country resettlement are likely to be limited. UNHCR negotiates with countries of asylum for local integration, and this process should be supported by UN missions and agencies. Local integration involves: Legal processes: Refugees are granted an increasingly wider range of rights and entitlements identical to those enjoyed by other citizens, e.g., freedom of move ment; family reunification in the country of asylum; access to education, the labour market, public relief and assistance, including health facilities; the possibility of acquiring and disposing of property; and the capacity to travel out of and return to the country of asylum with valid travel and identity documents. This process should gradually lead to permanent residence rights and the option to apply for citizenship in accordance with national laws; Economic processes: Refugees become increasingly less reliant on humanitarian assistance or State aid, achieving a growing degree of selfreliance and having permanent jobs, thus contributing to the economic life of the host country; Social and cultural processes: These are interactive processes involving refugees feeling more and more at home in their new country, and local communities accept ing their presence with greater ease, which allow refugees to live among the host population without fear of discrimination and contribute actively to the social life of their country of asylum; Resettlement: Thirdcountry resettlement may be appropriate for certain refugees who were formerly combatants, e.g., where the refugee has protection needs that cannot be met in the country of asylum, is unlikely to integrate into the host country, etc. However, despite UNHCR advocacy for assistance from the international community, it is often difficult to find resettlement opportunities for refugees who were former combatants. Some resettlement countries do not take former combatants, with sometimes varying definitions of what exactly a former combatant is. Therefore, resettlement to a third coun try is unlikely to be a viable option for large numbers of former combatants, although it may be a solution in individual cases. The fact that very few countries take former com batants could be used to encourage the host country to accept them for local integration.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "93a15d04-a499-4bce-9e82-39f20aedc22d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 34, + "Paragraph": "Timing and sequence of applications for refugee status UNHCR recommends that applications for refugee status by former combatants should not be encouraged in the early stages of influxes into the host country, because it is not practical to determine individual refugee status when large numbers of people have to be processed. The timing of applications for refugee status will be one of the factors that decide what will eventually happen to refugees in the long term, e.g., voluntary repatriation is more likely to be a viable option at the end of the conflict. Where a peace process is under way or is in sight and therefore voluntary repatriation is feasible in the foreseeable future, the refugee status should be determined after repatria tion operations have been completed for former combatants who wish to return at the end of the conflict. Former combatants who are afraid to return to the country of origin must be given the option of applying for refugee status instead of being repatriated against their will. Where voluntary repatriation is not yet feasible because of unsafe conditions in the coun try of origin, the determination of refugee status should preferably be conducted only after a meaningful DDR process in the host country, in order to ensure that former combatants applying for refugee status have achieved civilian status through demobilization, rehabilita tion and reintegration initiatives in the host country. In order to determine whether former combatants have genuinely given up armed activities, there should be a reasonable period of time between an individual laying down arms and being considered for refugee status. This \u2018coolingoff period\u2019, during which former combatants will be monitored to ensure that they really have given up military activities, will vary depending on the local circumstances, but should not be too long \u2014 generally only a matter of months. The length of the waiting period could be decided according to the profile of the former combatants, either individually or as a group (e.g., length of service, rank and position, type of recruitment ([orced or voluntary], whether there are addictions, family situation, etc.), and the nature of the armed conflict in which they have been involved (duration, intensity, whether there were human rights violations, etc.). Determining the refugee status of children associated with armed forces and groups who have applied for refugee status shall be done as quickly as possible. Determining the refugee status of other vulnerable persons can also be done quickly, such as disabled former combatants whose disabilities prevent them from further participating in military activities.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "ea723775-7e0d-4fdc-a5a1-a395eccdf560", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 35, + "Paragraph": "Requirements for refugee status for foreign former combatants Refugee status determination for former combatants involves establishing three facts: that they have genuinely and permanently given up arms and become civilians; that they meet the definition of a refugee under the 1951 UN Refugee Convention or regional instruments; that they are not excluded from being protected as refugees, according to the exclusion clauses of refugee conventions.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "13db4181-abb3-4706-840c-e50efb87c31d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 35, + "Paragraph": "Genuine and permanent giving up of military activities The giving up of military activities by foreign former combatants is more likely to be genuine if they have been demobilized and they have a real chance of earning a living in civilian life, including through DDR programmes in the host country. Detention in internment camps without demobilization and rehabilitation activities will not automatically lead to combatants becoming civilians. Breaking up military structures; linking up families; and providing vocational skills training, counselling, rehabilitation and peace education programmes for foreign former combatants in the host country will make it easier for them to become civil ians and be considered for refugee status some time in the future. It needs to be carefully verified that individuals have given up military activities, includ ing in situations where foreign former combatants are interned or where they have some degree of freedom of movement. Verification should include information gathered through out the period of identification, separation and internment. For example, it will be easier to understand individual motives and activities if the movements of internees in and out of internment camps are monitored. Actions or attitudes that may prove that an individual has genuinely given up military activities may include expressions of regret for past military ac tivities and for the victims of the conflict, signs of weariness with the war and a general feeling of homesickness, and clear signs of dissatisfaction with a military or political organization. Internment camp authorities or other agencies that are closely in contact with internees should share information with UNHCR, unless such information must be kept confidential.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "761b3db7-fa51-496e-b3ee-85cb7a12e3eb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 35, + "Paragraph": "Exclusion from refugee protection Even if a foreign former combatant has a genuine fear of persecution, he/she may not be eligible for international protection as a refugee if he/she has committed acts that would mean that the exclusion clauses of the Refugee Convention would apply to him/her. This is to prevent abuse of asylum by undeserving persons who have seriously abused the human rights of others. The issue of exclusion from protection as a refugee will be particularly relevant if there are serious reasons for believing that an individual has committed a crime against peace, a war crime, a crime against humanity, a serious nonpolitical crime outside the country of refuge before he/she was admitted to that country as a refugee, or acts contrary to the pur poses and principles of the UN. As defined by international instruments and interpreted in case law, exclusion clauses would apply if an individual had committed any of the following: crimes against peace, e.g., planning or participating in an unlawful war; war crimes involving grave breaches of international humanitarian law, e.g., mistreatment of civilians and prisoners of war, infliction of unjustified property damage during wartime; crimes against humanity involving fundamentally inhumane conduct on a widespread or system atic scale against a civilian population, e.g., genocide, slavery, torture, rape, deportations; serious nonpolitical crimes committed outside the country of refuge prior to admission to that country as a refugee: The purpose of this clause is to ensure that important fugitives from justice are not able to avoid the jurisdiction of a State in which they may lawfully face punishment for genuine, serious crimes, by claiming refugee status in another country; acts contrary to the purposes and principles of the UN: This clause covers, for example, high level government officials (Heads of State, ministers, high officials) who have exploited their political authority to endanger the wellbeing of individuals, their country and/ or the world community. A foreign former combatant cannot be excluded from refugee protection simply because he/she is a member of an organization or political party involved in a conflict. It must be established whether he/she was personally responsible for excludable acts. However, affili ation with a particularly violent group or unit (that is known on the basis of clear and cred ible information from the country of origin to carry out serious crimes of the type included in the exclusion clauses) may not only be important evidence, but also give rise to a presump tion that the individual has been involved in the excludable acts of that group. However, the procedure for determining refugee status must give the individual an opportunity to show that this is not the case. If an individual can defend his/her actions or claim mitigating circumstances, these should be taken into account in assessing whether to exclude an indi vidual from refugee protection. In examining refugee claims by foreign children associated with armed forces and groups, a child\u2019s age and maturity should be taken into account when assessing whether he/she had the mental capacity to be held responsible for crimes that may exclude him/her from protection as a refugee. Refugee status may be cancelled if information comes to light that an individual, who was recognized as a refugee (either individually or on a prima facie basis), should have been subject to the exclusion clauses when the refugee status was accorded (i.e., where refugee status was obtained through fraudulent means or substantial misrepresentations). Refugee status may be withdrawn if an individual who was properly recognized as a refugee later commits acts covered by the exclusion clauses.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4497a7f0-1ccd-4024-90a2-3bf8f6f30d75", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 36, + "Paragraph": "Foreign former combatants who are given refugee status When foreign former combatants are recognized as refugees, UNHCR will try to integrate them into the country of asylum or resettle them in a third country. The refugee always has the option to voluntarily repatriate in the future, when conditions in his/her country of origin improve. Foreign former combatants who have been detained (e.g., in internment camps) should be reunited with their families as soon as they are found to be refugees and may be accom modated in refugee camps or settlements, but specific measures may be necessary to protect them.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "222c67c0-b654-443b-9352-d50b04f2f280", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 37, + "Paragraph": "Foreign former combatants who are excluded from protection as refugees Individuals who fall within the Refugee Convention\u2019s exclusion clauses are not entitled to international protection or assistance from UNHCR. As a matter of principle, they should not be accommodated in refugee camps or settlements. Practical solutions to manage them will depend on the host country\u2019s capacity and willingness to deal with matters such as separating them from refugee populations. Foreign former combatants who are excluded from protection as refugees may be re turned to their country of origin. However, the UN Convention Against Torture provides an obligation for host countries not to return an individual to his/her country of origin where there are serious reasons to believe he/she would be tortured or treated inhumanely in other ways. In such cases, the UNHCHR and UN missions, as well as any human rights organizations established in the host country, should advocate for the protection provided in the Convention Against Torture. Foreign former combatants who have committed crimes that exclude them from being given refugee status should not only be excluded from refugee protection, but also be brought to justice, e.g., extradited to face prosecution in the domestic courts of the country of origin or international tribunals (ad hoc war crimes tribunals and the International Criminal Court). In exceptional cases of the most serious types of crimes (e.g., genocide, serious breaches of the laws of armed conflict, torture as defined in the Convention Against Torture), there have been an increasing number of prosecutions in the national courts of host countries, under the principle of universality, which recognizes that some crimes are so grave that all countries have an interest in prosecuting them.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b053b67f-be9f-42f2-a031-cd2b6e50239d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Foreign former combatants who do not meet the criteria for refugee status and are not in need of international protection The term \u2018not in need of international protection\u2019 is understood to refer to persons who, after due consideration of their applications for refugee status in fair procedures, are found not to qualify for refugee status under refugee conventions, nor to be in need of international protection on other grounds after a review of protection needs of whatever nature, and who are not authorized to stay in the host country for other good reasons. Such persons include those for whom there are no serious reasons to believe that they would be tortured or treated inhumanely in other ways if returned to the country of origin, as provided for under the UN Convention Against Torture. Foreign former combatants whose applications for refugee status have been rejected by fair procedures and who have been assessed not to be in need of international protection on any other basis may be returned to their country of origin, as an exercise of national sovereignty by the host country if it does not want them to be integrated into the local community. Return of persons not in need of international protection is necessary in order to maintain the integrity of the asylum system. The return of such persons is a bilateral matter between the two countries. The UN mission and other relevant agencies (e.g., UNHCHR, IOM) should support governments in finding other options, such as repatriation and local integration, for foreign former combatants who are not in need of international protection.15", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "47f19a7a-fe46-4149-8803-e5899c9c997c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 39, + "Paragraph": "Terms and definitions (NB: For the purposes of this document, the following terms are given the meaning set out below, without prejudice to more precise definitions they may have for other purposes.) Asylum: The grant, by a State, of protection on its territory to persons from another State who are fleeing persecution or serious danger. A person who is granted asylum is a refugee. Asylum encompasses a variety of elements, including nonrefoulement, permission to remain in the territory of the asylum country and humane standards of treatment. Asylum seeker: A person whose request or application for refugee status has not been finally decided on by a possible country of refuge. Child associated with armed forces and groups: According to the Cape Town Principles and Best Practices (1997), \u201cAny person under 18 years of age who is part of any kind of regular or irregular armed force or armed group in any capacity, including, but not limited to: cooks, porters, messengers and anyone accompanying such groups, other than family members. The definition includes girls recruited for sexual purposes and for forced mar riage. It does not, therefore, only refer to a child who is carrying or has carried weapons.\u201d For further discussion of the term, see the entry in IDRRS 1.20. Combatant: Based on an analogy with the definition set out in the Third Geneva Conven tion of 1949 relative to the Treatment of Prisoners of War in relation to persons engaged in international armed conflicts, a combatant is a person who: is a member of a national army or an irregular military organization; or is actively participating in military activities and hostilities; or is involved in recruiting or training military personnel; or holds a command or decisionmaking position within a national army or an armed organization; or arrived in a host country carrying arms or in military uniform or as part of a military structure; or having arrived in a host country as an ordinary civilian, thereafter assumes, or shows determination to assume, any of the above attributes. Exclusion from protection as a refugee: This is provided for in legal provisions under refugee law that deny the benefits of international protection to persons who would other wise satisfy the criteria for refugee status, including persons in respect of whom there are serious reasons for considering that they have committed a crime against peace, a war crime, a crime against humanity, a serious nonpolitical crime, or acts contrary to the purposes and principles of the UN. Ex-combatant/Former combatant: A person who has assumed any of the responsibilities or carried out any of the activities mentioned in the above definition of \u2018combatant\u2019, and has laid down or surrendered his/her arms with a view to entering a DDR process. Foreign former combatant: A person who previously met the above definition of combatant and has since disarmed and genuinely demobilized, but is not a national of the country where he/she finds him/herself. Host country: A foreign country into whose territory a combatant crosses. Internally displaced persons (IDPs): Persons who have been obliged to flee from their homes \u201cin particular as a result of or in order to avoid the effects of armed conflicts, situations of 1.20 generalized violence, violations of human rights or natural or humanmade disasters, and who have not crossed an internationally recognized State border\u201d (according to the definition in the UN Guiding Principles on Internal Displacement). Internee: A person who falls within the definition of combatant (see above) who has crossed an international border from a State experiencing armed conflict and is interned by a neutral State whose territory he/she has entered. Internment: An obligation of a neutral State to restrict the liberty of movement of foreign combatants who cross into its territory, as provided for under the 1907 Hague Convention Respecting the Rights and Duties of Neutral Powers and Persons in the Case of War on Land. This rule is considered to have attained customary international law status, so that it is binding on all States, whether or not they are parties to the Hague Convention. It is appli cable by analogy also to internal armed conflicts in which combatants from government armed forces or opposition armed groups enter the territory of a neutral State. Internment involves confining foreign combatants who have been separated from civilians in a safe location away from combat zones and providing basic relief and humane treatment. Varying degrees of freedom of movement can be provided, subject to the interning State ensuring that the in ternees cannot use its territory for participation in hostilities. Mercenary: A mercenary is defined in article 1 of the International Convention Against the Recruitment, Use, Financing and Training of Mercenaries (1989) in the following terms: \u201c1. A mercenary is any person who: Is specially recruited locally or abroad in order to fight in an armed conflict; Is motivated to take part in the hostilities essentially by the desire for private gain and, in fact, is promised, by or on behalf of a party to the conflict, material compensation substantially in excess of that promised or paid to combatants of similar rank and func tions in the armed forces of that party; Is neither a national of a party to the conflict nor a resident of territory controlled by a party to the conflict; Is not a member of the armed forces of a party to the conflict; and Has not been sent by a State which is not a party to the conflict on official duty as a member of its armed forces. 2. A mercenary is also any person who, in any other situation: Is specially recruited locally or abroad for the purpose of participating in a concerted act of violence aimed at: Overthrowing a Government or otherwise undermining the constitutional order of a State; or Undermining the territorial integrity of a State; Is motivated to take part therein essentially by the desire for significant private gain and is prompted by the promise of payment of material compensation; Is neither a national nor a resident of the State against which such an act is directed; Has not been sent by a State on official duty; and Is not a member of the armed forces of the State on whose territory the act is undertaken.\u201d Non-refoulement: A core principle of international law that prohibits States from returning persons in any manner whatsoever to countries or territories in which their lives or freedom may be threatened. It finds expression in refugee law, human rights law and international humanitarian law and is a rule of customary international law and is therefore binding on all States, whether or not they are parties to specific instruments such as the 1951 Convention relating to the Status of Refugees. Prima facie: As appearing at first sight or on first impression; relating to refugees, if someone seems obviously to be a refugee. Refugee: A refugee is defined in the 1951 UN Convention relating to the Status of Refugees as a person who: \u201cIs outside the country of origin; Has a wellfounded fear of persecution because of race, religion, nationality, member ship of a particular social group or political opinion; and Is unable or unwilling to avail himself of the protection of that country, or to return there, for fear of persecution.\u201d In Africa and Latin America, this definition has been extended. The 1969 OAU Conven tion Governing the Specific Aspects of Refugee Problems in Africa also includes as refugees persons fleeing civil disturbances, widespread violence and war. In Latin America, the Carta gena Declaration of 1984, although not binding, recommends that the definition should also include persons who fled their country \u201cbecause their lives, safety or freedom have been threatened by generalized violence, foreign aggression, internal conflicts, massive violations of human rights or other circumstances which have seriously disturbed public order\u201d. Refugee status determination: Legal and administrative procedures undertaken by UNHCR and/or States to determine whether an individual should be recognized as a refugee in accordance with national and international law. Returnee: A refugee who has voluntarily repatriated from a country of asylum to his/her country of origin, after the country of origin has confirmed that its environment is stable and secure and not prone to persecution of any person. Also refers to a person (who could be an internally displaced person [IDP] or excombatant) returning to a community/town/ village after conflict has ended. Annex C: UNHCR Executive Committee Conclusion on the Civilian and Humanitarian Character of Asylum No. 94 (LIII) The Executive Committee, Remaining seriously concerned by the continuing occurrence of military or armed attacks and other threats to the security of refugees, including the infiltration and presence of armed elements in refugee camps and settlements;17 Recalling the relevant provisions of international refugee law, international human rights law and international humanitarian law; Recalling its Conclusion No. 27 (XXXIII) and Conclusion No. 32 (XXXIV) on military attacks on refugee camps and settlements in Southern Africa and elsewhere; Conclusion 72 (XLIV) on personal security of refugees; Conclusion No. 48 (XXXVIII) on military or armed attacks on refugee camps and settlements; Conclusion No. 47 (XXXVIII) and Conclusion No. 84 (XLVII), on refugee children and adolescents, as well as Conclusion 64 (XLI) on refugee women and international protection; Recalling also United Nations Security Council resolution S/RES/1208 (1998) and S/RES/1296 (2000), and the two reports of the United Nations SecretaryGeneral on the Protection of Civilians in Armed Conflict18, noting in particular the recommendations made therein with respect to enhancing the security of refugee camps and settlements; Welcoming the discussion which took place on the civilian character of asylum in the context of the Global Consultations on International Protection;19 Noting that several international meetings have recently been held, aimed at identifying effective operational strategies for maintaining the civilian and humanitarian character of asylum;20 Reiterating that refugee camps and settlements should have an exclusively civilian and humanitarian character, that the grant of asylum is a peaceful and humanitarian act which should not be regarded as unfriendly by another State, as stated in the 1969 OAU Convention Governing the Specific Aspects of Refugee Problems in Africa and a number of EXCOM Conclusions, and that all actors, including refugees themselves, have the obligation to coop erate in ensuring the peaceful and humanitarian character of refugee camps and settlements; Recognizing that the presence of armed elements in refugee camps or settlements; recruit ment and training by government armed forces or organized armed groups; the use of such camps, intended to accommodate refugee populations on purely humanitarian grounds, for the internment of prisoners of war; as well as other forms of exploitation of refugee situations for the purpose of promoting military objectives are likely to expose refugees, par ticularly women and children, to serious physical danger, inhibit the realization of durable solutions, in particular voluntary repatriation, but also local integration, jeopardize the civilian and humanitarian character of asylum and may threaten the national security of States, as well as interState relations; Recognizing the special protection needs of refugee children and adolescents who, especially when living in camps where refugees are mixed with armed elements, are particularly vul nerable to recruitment by government armed forces or organized armed groups; Reaffirming the importance of States, UNHCR and other relevant actors, integrating safety and security concerns from the outset of a refugee emergency into refugee camp manage ment in a holistic manner; Acknowledges that host States have the primary responsibility to ensure the civilian and humanitarian character of asylum by, inter alia, making all efforts to locate refugee camps and settlements at a reasonable distance from the border, maintaining law and order, curtailing the flow of arms into refugee camps and settlements, preventing their use for the internment of prisoners of war, as well as through the disarmament of armed elements and the identification, separation and internment of combatants; Urges refugeehosting States to respect the civilian and humanitarian character of refu gee camps by preventing their use for purposes which are incompatible with their civilian character; Recommends that action taken by States to ensure respect for the civilian and humani tarian character of asylum be guided, inter alia, by the following principles; Respect for the right to seek asylum, and for the fundamental principle of non refoulement, should be maintained at all times; Measures for the disarmament of armed elements and the identification, sep aration and internment of combatants should be taken as early as possible, preferably at the point of entry or at the first reception/transit centres for new arrivals; To facilitate early identification and separation of combatants, registration of new arrivals should be conducted by means of a careful screening process; Refugee camps and settlements should benefit from adequate security arrange ments to deter infiltration by armed elements and the strengthening of law and order; Once identified, disarmed and separated from the refugee population, combat ants should be interned at a safe location from the border; Where the granting of refugee status is based on group determination, civilian family members of combatants should be treated as refugees and should not be interned together with them; Combatants should not be considered as asylumseekers until the authorities have established within a reasonable timeframe that they have genuinely and permanently renounced military activities. Once this has been established, special procedures should be put in place for individual refugee status deter mination, to ensure that those seeking asylum fulfil the criteria for the recogni tion of refugee status. During the refugee status determination process, utmost attention should be paid to article 1F of the 1951 Convention, in order to avoid abuse of the asylum system by those who do not deserve international protection; Former child soldiers should benefit from special protection and assistance measures, in particular as regards their demobilization and rehabilitation; Where necessary, host States should develop, with assistance from UNHCR, operational guidelines in the context of group determination to exclude those individuals who are not deserving of international refugee protection; Further to para 3 (b) above, calls upon UNHCR to convene a meeting of experts in sup port of the elaboration of measures for the disarmament of armed elements and the identification, separation, and internment of combatants, including the clarification of relevant procedures and standards, in consultation with States, United Nations Secre tariat entities and agencies, and interested organizations, such as the ICRC, and report back to the Executive Committee on progress achieved; Calls upon States to ensure that measures are taken to prevent the recruitment of refugees by government armed forces or organized armed groups, in particular of children, taking into account also that unaccompanied and separated children are even more vulner able to recruitment than other children; Calls upon the relevant United Nations organs and regional organizations, in pursuance of their respective mandates, as well as the international community at large, to mobi lize adequate resources to support and assist host States in maintaining the civilian and humanitarian character of asylum, in line with the principles of international solidarity, cooperation, burden and responsibility sharing; Calls upon UNHCR and the Department of Peacekeeping Operations of the United Nations Secretariat to enhance collaboration on all aspects of this complex matter, and as appropriate, to deploy, with the consent of host States, multidisciplinary assess ment teams to an emerging crisis area in order to clarify the situation on the ground, evaluate security threats for refugee populations and consider appropriate practical responses; Calls upon UNHCR to explore how it may develop, in consultation with relevant part ners, its own institutional capacity to address insecurity in refugee camps, inter alia by assisting States to ensure the physical safety and dignity of refugees, building, as appro priate, upon its protection and operational expertise.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fb072ee0-fb4b-4170-9e18-8178307a9888", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Agreement between the Government of [country of origin] and the Government of [host country] for the voluntary repatriation and reintegration of combatants of [country of origin]", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5d5550c7-2615-4c85-8f60-542f6963050a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 47, + "Paragraph": "Preamble Combatants of [country of origin] have been identified in neighbouring countries. Approxi mately [number] of these combatants are presently located in [host country]. This Agreement is the result of a series of consultations for the repatriation and incorporation in a disarma ment, demobilization and reintegration (DDR) programme of these combatants between the Government of [country of origin] and the Government of [host country]. The Parties have agreed to facilitate the process of repatriating and reintegrating the combatants from [host country] to [country of origin] in conditions of safety and dignity. Accordingly, this Agree ment outlines the obligations of the Parties.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "5e455562-96d8-4a8e-b388-ffca2362d9d5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Article 1 \u2013 Definitions Article 2 \u2013 Legal bases The Parties to this Agreement are mindful of the legal bases for the [internment and] repatri ation of the said combatants and base their intentions and obligations on the following inter national instruments: [If applicable, in cases involving internment] The Hague Convention (V) Respecting the Rights and Duties of Neutral Powers and Persons in Case of War on Land, 18 October 1907 (Annex 1) [If applicable, in cases involving internment] The Third Geneva Convention relative to the Treatment of Prisoners of War, Geneva, 12 August 1949 (Annex 2) [If applicable, in cases involving internment] The Protocol Additional to the Geneva Conventions of 12 August 1949, and Relating to the Protection of Victims of NonInter national Armed Conflicts (Protocol II), Geneva, 12 December 1977 (Annex 3) Article 33 of the 1951 Convention relating to the Status of Refugees, Geneva, 28 July 1951 (Annex 4) [If applicable, in cases involving African States] The 1969 OAU Convention Governing the Specific Aspects of Refugee Problems in Africa (Annex 5)", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "06ee5b35-676c-49e2-b7bf-55cb9acf9b5d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 47, + "Paragraph": "Article 4 \u2013 Technical Task Force A Technical Task Force of representatives of the following parties to determine the opera tional framework for the repatriation and reintegration of the said combatants shall be constituted: National Commission on DDR [of country of origin and of host country] Representatives of the embassies [of country of origin and host country] [Relevant government departments of country of origin and host country, e.g. foreign affairs, defence, internal affairs, immigration, refugee/humanitarian affairs, children and women/gender] UN Missions [in country of origin and host country] [Relevant international agencies, e.g. UNHCR, UNICEF, ICRC, IOM]", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "21b81f37-b855-4846-aed2-f9f09ae37ca8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Article 5 \u2013 Obligations of Government of [country of origin] The Government of [country of origin] agrees: To accept the return in safety and dignity of the said combatants. To provide sufficient information to the said combatants, as well as to their family members, to make free and informed decisions concerning their repatriation and rein tegration. To include the returning combatants in the amnesty provided for in article [ ] of the Peace Accord (Annex 6). To waive any court martial action for desertion from government forces. To facilitate the return of the said combatants to their places of origin or choice through [relevant government agencies such as the National Commission on DDR and inter national agencies and NGO partners], taking into account the specific needs and circum stances of the said combatants and their family members. To consider and facilitate the payment of any DDR benefits, including reintegration assistance, upon the return of the said combatants and to provide appropriate identi fication papers in accordance with the eligibility criteria of the DDR programme. To assist the returning combatants of government forces who wish to benefit from the restructuring of the army by rejoining the army or obtaining retirement benefits, depend ing on their choice and if they meet the criteria for the above purposes. To facilitate through the immigration department the entry of spouses, partners, children and other family members of the combatants who may not be citizens of [country of origin] and to regularize their residence in [country of origin] in accordance with the provisions of its immigration or other relevant laws. To grant free and unhindered access to [UN Missions, relevant international agencies, etc.] to monitor the treatment of returning combatants and their family members in accordance with human rights and humanitarian standards, including the implemen tation of commitments contained in this Agreement. To meet the [applicable] cost of repatriation and reintegration of the combatants.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fe8ab118-b6c2-43c6-bad9-cecc712e626b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": null, + "Paragraph": "Article 6 \u2013 Obligations of Government of [host country] The Government of [host country] agrees: To facilitate the processing of repatriation of the said combatants who wish to return to [country of origin]. To return the personal effects (excluding arms and ammunition) of the said combatants. To provide clear documentation and records which account for arms and ammunition collected from the said combatants. To meet the [applicable] cost of repatriation of the said combatants. To consider local integration for any of the said combatants for whom this is assessed to be the most appropriate durable solution.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ca6bc81c-bc1e-45a8-ace8-741117cd1ce8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 7 \u2013 Children associated with armed forces and groups The return, family reunification and reintegration of children associated with armed forces and groups will be carried out under separate arrangements, taking into account the special needs of the children.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "d169e9b2-fefd-45f3-968e-e12e96938d51", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 8 \u2013 Special measures for vulnerable persons/persons with special needs The Parties shall take special measures to ensure that vulnerable persons and those with special needs, such as disabled combatants or those with other medical conditions that affect their travel, receive adequate protection, assistance and care throughout the repatri ation and reintegration processes.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae88d025-0cde-4f53-86ec-3c109e0d79b8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 9 \u2013 Families of combatants Wherever possible, the Parties shall ensure that the families of the said combatants residing in [host country] return to [country of origin] in a coordinated manner that allows for the maintenance of family links and reunion.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "385b7c47-b1d6-4b08-a17e-c124090c1210", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 10 \u2013 Nationality issues The Parties shall mutually resolve through the Technical Task Force any applicable nation ality issues, including establishment of modalities for ascertaining nationality, and deter mining the country in which combatants will benefit from a DDR programme and the country of eventual destination.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "94a13736-4b47-411c-a78b-49a3c594145e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 11 \u2013 Asylum Should any of the said combatants, having permanently renounced armed activities, not wish to repatriate for reasons relevant to the 1951 Convention relating to the Status of Refugees, they shall have the right to seek and enjoy asylum in [host country]. The grant of asylum is a peaceful and humanitarian act and shall not be regarded as an unfriendly act.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "00daa4d7-cab3-44ad-906e-48dad887f406", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 12 \u2013 Designated border crossing points The Parties shall agree on border crossing points for repatriation movements. Such agree ment may be modified to better suit operational requirements.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "007bee3e-38d3-47a0-b401-a7e983ec87e4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 49, + "Paragraph": "Article 13 \u2013 Immigration, customs and health formalities To ensure the expeditious return of the said combatants, their family members and belongings, the Parties shall waive their respective immigration, customs and health formalities usually carried out at border crossing points. The personal or communal property of the said combatants and their family members, including livestock and pets, shall be exempted from all customs duties, charges and tariffs. [If applicable] The Parties shall also waive any fees, passenger service charges as well as all other airport, marine, road or other taxes for vehicles entering or transiting their respective territories under the auspices of [repatriation agency] for the repatriation operation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e822129e-69c7-4669-9ec6-609b21e016db", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 50, + "Paragraph": "Article 14 \u2013 Access and monitoring upon return [The UN Mission and other relevant international and nongovernmental agencies] shall be granted free and unhindered access to all the said combatants and their family members in [the host country] and upon return in [the country of origin], in order to monitor their treatment in accordance with human rights and humanitarian standards, including the implementation of commitments contained in this Agreement.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "3ffc215a-dc5c-4347-aeb8-17fbdc0839ae", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 50, + "Paragraph": "Article 15 \u2013 Continued validity of other agreements This Agreement shall not affect the validity of any existing agreements, arrangements or mechanisms of cooperation between the Parties. To the extent necessary or applicable, such agreements, arrangements or mechanisms may be relied upon and applied as if they formed part of this Agreement to assist in the pursuit of this Agreement, namely the repa triation and reintegration of the said combatants.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "d49e38e8-a2a3-42ee-ac5b-4f191f4e272f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 50, + "Paragraph": "Article 16 \u2013 Resolution of disputes Any question arising out of the interpretation or application of this Agreement, or for which no provision is expressly made herein, shall be resolved amicably through consultations between the Parties.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "1a4ad794-f4a3-4349-a34e-b53502e1638c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 50, + "Paragraph": "Article 20 \u2013 Succession This Agreement binds any successors of both Parties. In witness whereof, the authorized representatives of the Parties have hereby signed this Agreement. DONE at ..........................., this ..... day of\t, in two originals. For the Government of [country of origin]: For the Government of [host country]:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ad435f47-07c0-4712-a965-7bce4127b6b3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.40-Cross-border-Population-Movements", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.40-Cross-border-Population-Movements", + "PageNum": 51, + "Paragraph": "Endnotes See, for example, Special Report of the SecretaryGeneral on the United Nations Organization Mission in the Democratic Republic of the Congo, S/2002/1005, 10 September 2002, section on \u2018Principles Involved in the Disarmament, Demobilization, Repatriation, Resettlement and Reintegration of Foreign Armed Groups\u2019, pp. 6\u20137; Report of the SecretaryGeneral to the Security Council on Liberia, 11 September 2003, para. 49: \u201cFor the planned disarmament, demobilization and reintegration process in Liberia to suc ceed, a subregional approach which takes into account the presence of foreign combatants in Liberia and Liberian excombatants in neighbouring countries would be essential In view of the subre gional dimensions of the conflict, any disarmament, demobilization and reintegration programme for Liberia should be linked, to the extent possible, to the ongoing disarmament, demobilization and rein tegration process in C\u00f4te d\u2019Ivoire \u201d; Security Council resolution 1509 (2003) establishing the United Nations Mission in Liberia, para. 1(f) on DDR: \u201caddressing the inclusion of nonLiberian combatants\u201d; Security Council press release, \u2018Security Council Calls for Regional Approach in West Africa to Address such Crossborder Issues as Child Soldiers, Mercenaries, Small Arms\u2019, SC/8037, 25 March 2004. \u201cEvery State has the duty to refrain from organizing or encouraging the organization of irregular forces or armed bands, including mercenaries, for incursion into the territory of another state . . . . Every State has the duty to refrain from organizing, instigating, assisting or participating in acts of civil strife or terrorist acts in another State or acquiescing in organized activities within its territory directed towards the commission of such acts, when the acts referred to in the present paragraph involve a threat or use of force No State shall organize, assist, foment, finance, incite or tolerate subversive, terrorist or armed activities directed towards the violent overthrow of the regime of another State, or interfere in civil strife in another State.\u201d Adopted by UN General Assembly resolution 43/173, 9 December 1988. Adopted by the First UN Congress on the Prevention of Crime and the Treatment of Offenders, Geneva 1955, and approved by the UN Economic and Social Council in resolutions 663 C (XXIV) of 31 July 1957 and 2076 (LXII) of 13 May 1977. Adopted by UN General Assembly resolution 45/111, 14 December 1990. UN General Assembly resolution 56/166, Human Rights and Mass Exoduses, para. 8, 26 February 2002; see also General Assembly resolution 58/169, para. 7. UN General Assembly resolution 58/169, Human Rights and Mass Exoduses, 9 March 2004. UN General Assembly, Report of the FiftyFifth Session of the Executive Committee of the High Commissioner\u2019s Programme, A/AC.96/1003, 12 October 2004. Information on separation and internment of combatants in sections 7 to 10 draws significantly from papers presented at the Experts\u2019 Roundtable organized by UNHCR on the Civilian and Humanitar ian Character of Asylum (June 2004), in particular the background resource paper prepared for the conference, Maintaining the Civilian and Humanitarian Character of Asylum by Rosa da Costa, UNHCR (Legal and Protection Policy Research Series, Department of International Protection, PPLA/2004/02, June 2004), as well as the subsequent UNHCR draft, Operational Guidelines on Maintaining the Civilian Character of Asylum in Mass Refugee Influx Situations. Internment camps for foreign combatants have been established in Sierra Leone (Mapeh and Mafanta camps for combatants from the Liberian war), the Democratic Republic of the Congo (DRC) (Zongo for combatants from Central African Republic), Zambia (Ukwimi camp for combatants from Angola, Burundi, Rwanda and DRC) and Tanzania (Mwisa separation facility for combatants from Burundi and DRC). Da Costa, op. cit. The full definition in the 1989 International Convention Against the Recruitment, Use, Financing and Training of Mercenaries is contained in the glossary of terms in Annex A. In Africa, the 1977 Convention of the OAU for the Elimination of Mercenarism in Africa is also applicable. Universal Declaration of Human Rights, art. 14. The article contains an exception \u201cin the case of prose cutions genuinely arising from nonpolitical crimes or from acts contrary to the purposes and principles of the United Nations\u201d. For further information see UNHCR, Handbook for Repatriation and Reintegration Activities, Geneva, May 2004. The UN General Assembly has \u201cemphasiz[ed] the obligation of all States to accept the return of their nationals, call[ed] upon States to facilitate the return of their nationals who have been determined not to be in need of international protection, and affirm[ed] the need for the return of persons to be undertaken in a safe and humane manner and with full respect for their human rights and dignity, irrespective of the status of the persons concerned\u201d (UN General Assembly resolution 57/187, para. 11, 18 December 2002). Refer to UNHCR/DPKO note on cooperation, 2004. For the purpose of this Conclusion, the term \u201carmed elements\u201d is used as a generic term in a refugee context that refers to combatants as well as civilians carrying weapons. Similarly, for the purpose of this Conclusion, the term \u201ccombatants\u201d covers persons taking active part in hostilities in both inter national and noninternational armed conflict who have entered a country of asylum. 18 S/1999/957; S/2001/331 19 EC/GC/01/8/Rev.1 20 Workshop on the Potential Role of International Police in Refugee Camp Security (Ottawa, Canada, March 2001); Regional Symposium on Maintaining the Civilian and Humanitarian Character of Refugee Status, Camps and other locations (Pretoria, South Africa, February 2001); International Seminar on Exploring the Role of the Military in Refugee Camp Security (Oxford, UK, July 2001).", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "6955218f-a0c8-4c39-ae90-be3912c4b555", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": null, + "Paragraph": "Summary Acute food insecurity can be a trigger or root cause of armed conflict. Furthermore, armed conflict itself is a major driver of food insecurity. In countries and regions affected by armed conflict, humanitarian food assistance agencies are often already engaged in large-scale life-saving and livelihood support programmes to assist vulnerable and conflict-affected civilian communities, including displaced populations. These same agencies may be asked by a national Government, a peace operation or UN Resident Coordinator (UN RC) to provide food assistance in support of a disarmament, demobi- lization and reintegration (DDR) process. Food assistance provided by humanitarian food assistance agencies as part of a DDR process shall adhere to humanitarian principles and the best practices of human- itarian food assistance. Humanitarian agencies shall not provide food assistance to armed personnel at any point in a DDR process and all reasonable precautions and measures shall be taken to ensure that food assistance is not taken or used by combat- ants or warring factions. When food is provided to armed forces and groups prior to their demobilization, Governments or peacekeeping actors and their cooperating part- ners, and not humanitarian agencies, shall be responsible for all aspects of the process \u2013 from the acquisition of food to its distribution. As outlined in IDDRS 2.10 on The UN Approach to DDR, DDR processes can include various combinations of DDR programmes, DDR-related tools and reintegration support. The objectives and means through which food assistance is provided will differ depending on the type of DDR process being supported. For example, during DDR programmes food assistance can be provided at disarmament and/or cantonment sites and as part of a transitional safety net in support of reinsertion and reintegration. Food assistance can also be provided as part of reintegration support either during a DDR programme or when the preconditions for a DDR programme are not in place (see IDDRS 4.20 on Demobilization). In addition, food assistance can be part of pre-DDR and CVR (see IDDRS 2.30 on Community Violence Reduction). Food assistance that is provided in support of a DDR process shall be based on a careful analysis of the food security situation. This shall include an analysis of any potential gender, age or disability barriers to receiving food assistance. The capaci- ties and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of the assistance. Food assistance as part of a DDR process shall also be informed by a context/conflict analysis and an analysis of the protection risks that could potentially be created by this assistance. For example, it is important to analyse whether food assistance may inadvertently create or exacerbate household or community tensions. Available and flexible resources are necessary in order to respond to the changes and unexpected problems that may arise during DDR processes. A food assistance component of a DDR process should not be implemented unless adequate resources and capacity are in place, including human, financial and logistics resources. If resources are not adequate, a risk analysis must inform decision-making and implementation. Maintaining a well-resourced food assistance pipeline, regardless of the selected trans- fer modality (in-kind support or cash-based transfers) is essential.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "d1588430-3517-4072-9fd7-95ed0bd86543", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module outlines the operational requirements for the planning, design and implementation of the food assistance component of a DDR process in both mission and non-mission settings. It focuses on instances where food assistance is provided by humanitarian food assistance agencies as part of a DDR process to ex-combatants, per- sons formerly associated with armed forces and groups, dependants and community members.1 It also examines the different modalities through which food assistance can be provided, including in-kind support, cash-based transfers, vouchers and digital payments (such as mobile money transfers). Although not the focus of this module, the guidance provided herein may also be of use to Government and peacekeeping actors engaged in the provision of food assistance during DDR.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "43721096-ee61-4211-898d-9af674b7ac3c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Cash-based transfers (CBTs): This term is used when, instead of providing a package of food, money is given to buy food. CBTs include cash as well as value vouchers. Value vouchers \u2013 also known as gift cards or stamps - provide access to commodities for a given monetary amount and can often be used in predetermined locations, includ- ing selected shops. CBTs may also include digital transfers such as payments made to mobile phones (\u201cmobile money transfers\u201d). Commodity vouchers: Vouchers may also be commodity-based i.e., tied to a pre- defined quantity of given foods. Coping mechanisms: The methods by which members of households try to deal with a crisis. For example, at times of severe food insecurity, household members may (1) make greater use than normal of wild foods, (2) plant other crops, (3) seek other sourc- es of income, (4) rely more on gifts and remittances, (5) sell off assets to buy food and (6) migrate. Coping mechanisms should be discouraged if they lead to disinvestment, reduce a household\u2019s capacity to recover its long-term ability to survive, or harm the environment. Positive coping mechanisms should be encouraged and strengthened. Food assistance for assets (FFA): FFA aims to address the immediate food needs of the most food-insecure people while improving their long-term food security and re- silience. People receive cash, vouchers or in-kind food assistance while they build or boost assets, such as constructing a road or rehabilitating degraded land. These assets should in turn improve their livelihoods by creating healthier natural environments, reducing risks and the impact of shocks, increasing food productivity and strengthen- ing resilience to natural disasters. FFA is sometimes referred to as food for work. Food assistance programmes (FAPs): These programmes aim to improve the food secu- rity and nutritional status of the targeted population and can be implemented through different transfer modalities, including in-kind food rations and CBTs. Food assistance for training (FFT): A programme in which food or cash is supplied on the condition that the recipient attends a training programme. Food security: A situation where all people, at all times, have physical, social and eco- nomic access to sufficient, safe and nutritious food that meets their dietary needs and food preferences for an active and healthy life. (Note: This definition includes the three key dimensions of food security: sufficient availability of food, adequate access to food, and appropriate utilization of food.) Vulnerability: In terms of food supply, vulnerability refers to the presence of factors that place people at risk of becoming food insecure or malnourished, including those factors that affect their ability to cope with these risks.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "a4e50eb0-c922-47ee-a4a9-4639c2f3c8fc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 5, + "Paragraph": "Introduction Acute food insecurity can be a trigger or root cause of armed conflict. Furthermore, armed conflict itself is a major driver of food insecurity. In countries and regions affected by armed conflict, humanitarian food assistance agencies are often already engaged in programmes to assist vulnerable and conflict-affected civilian communities, including displaced populations. These same agencies may be asked by a national Government, a peace operation or UN RC to provide food assistance in support of a DDR process. As outlined in IDDRS 2.10 on The UN Approach to DDR, DDR processes can include various combinations of DDR programmes, DDR-related tools and reintegra- tion support. The objectives and means through which food assistance is provided will differ depending on the type of DDR process being supported (see Table 1 below). For example, during DDR programmes food assistance can be provided at disarma- ment and/or cantonment sites and as part of a transitional safety net in support of reinsertion and reintegration. Food assistance can also be provided as part of reinte- gration support either a part of a DDR programme or when the preconditions for a DDR programme are not in place (see IDDRS 4.20 on Demobilization). In addition, food assistance can be part of pre-DDR and CVR (see IDDRS 2.30 on Community Violence Reduction). When food assistance is provided prior to demobilization, i.e., to active armed forces and groups, it shall be provided by Governments or peacekeeping actors and their cooperating partners, not humanitarian agencies.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "c351010f-3d2a-49ff-930b-2973b390680b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 8, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the food assistance provided by humanitarian food assistance agencies during DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1dde9443-9597-4cc4-a0f4-2f367da06645", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 8, + "Paragraph": "Criteria for participation/eligibility Food assistance may be provided to all five categories of people that should be taken into consideration in integrated DDR processes, depending on the context (see IDDRS 2.10 on The UN Approach to DDR and IDDRS 3.21 on Participants, Beneficiaries and Partners). In a DDR process, those who receive food assistance may be eligible not just because they are in a particular situation of vulnerability to food and nutrition inse- curity, but because they are members of, or associated with, a particular armed force or group. The objectives and eligibility criteria are different from those of a purely humanitarian food assistance intervention and align with those of the broader DDR process. This may in some circumstances contradict the needs-based approach of humanitarian food security organizations, and, as such, shall be carefully considered and weighed against overall peacebuilding and stabilization objectives. Some female combatants and women associated with armed forces and groups (WAAFG) may self-demobilize in order to avoid the stigmatization that may result from being known as a female member of an armed force or group. These women may also be forcibly prevented from registering for DDR by male commanders (see IDDRS 4.20 on Demobilization and IDDRS 5.10 on Women, Gender and DDR). Therefore, com- munity-based food assistance in areas where WAAFG have returned may be the only way to reach these women (see IDDRS 4.30 on Reintegration). Careful consideration shall also be given to how to best meet the food assistance requirements and other humanitarian needs of the dependants (partners, children and relatives) of ex-combatants. Whenever possible, meeting the food assistance needs of this group shall be part of broader strategies that are developed to improve food security in receiving communities. Dependants are eligible for assistance from DDR processes if they fulfil certain vulnerability criteria and/or if their main household income was that of an eligible combatant. The criteria for eligibility for food assistance and to assess vulnerability shall be agreed upon and coordinated among key national and agency stakeholders, with humanitarian agencies playing a key role in this process. The process shall also involve participatory consultations with women and men of different ages. Because dependants are civilians, they should not be involved in disarmament and demobilization. However, they should be screened and identified as dependants of an eligible combatant (see IDDRS 4.20 on Demobilization). In this context, food assis- tance for dependants may be implemented in one of two ways. The first would involve dependants being cantoned in a separate, nearby camp while combatants are disarmed and demobilized. The second would involve dependants being taken or being asked to go directly to their communities. These two approaches would require different methods for distributing food assistance. During the planning process for the food assistance component of a DDR process, a clear, coordinated approach to inter-agency procedures for meeting the needs of dependants shall be outlined for all agency partners that will be involved. It is also essential when planning food assistance, that support provided to DDR participants and beneficiaries be balanced against the assistance provided to host com- munity members or other returnees (such as internally displaced persons and refugees) as part of wider recovery programmes. When possible, and depending on the opera- tional context, the needs of dependants may be best met by linking to concurrent food assistance programmes that are designed to assist the recovery of other conflict-affected populations. This approach shall be considered the preferred programming option.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c3478fbf-d284-47ec-84ed-6b4c971a7046", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 9, + "Paragraph": "Unconditional release and protection of children Children associated with armed forces and armed groups (CAAFAG) are particularly vulnerable to re-recruitment, and, because of this, food assistance can provide valuable support for programmes of education, training, rehabilitation, and family and commu- nity reunification. When dealing with CAAFAG, appropriate food assistance benefits should only be selected after careful analysis of the situation and context, and be guided by the principle of \u2018do no harm\u2019. Although food assistance can in some cases offer these children incentives to reintegrate into their communities, food assistance can also motivate children to join or re-join armed forces and groups in order to access this support. Food assistance in the form of cash shall not be provided to children, as cash may easily be taken from children (for e.g., by military commanders). Instead, in-kind food assistance may be offered during child DDR processes. Any food assistance support shall be coordinated with specialized child protection actors. Protection analysis and referral systems to child protection agencies shall be included in the food assistance component of the DDR process (see section 7.1). The diverse and specific needs of CAAFAG, boys and girls, including in relation to nutrition, shall be taken into account in the design and implementation of the food assistance component of a child DDR process. DDR practitioners and food assistance staff shall be aware of the relevant legal conventions and key issues and vulnerabilities that have to be dealt with when assisting CAAFAG and work closely with child protection specialists when developing the food assistance component of a child DDR process. In addition, appropriate reporting mechanisms shall be established in advance with specialized child protection agencies to deal with child protection and other issues that arise during child demobilization (\u2018release\u2019) (see IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "fe80938d-df78-4fe1-a1cf-bd671ed22f1b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 10, + "Paragraph": "In accordance with standards and principles of humanitarian assistance Any food assistance component that is part of a DDR process shall be designed in accordance with humanitarian principles and the best practices of humanitarian food assistance. Food assistance shall only be provided when an overall assessment con- cludes that it is a required form of assistance as part of the DDR process. Similarly, the transfer modality to be used for the food assistance shall be based on a careful contextual and feasibility analysis (see section 5.5). Furthermore, when food assistance is provided as part of a DDR process in a mission context, the political requirements of the peacekeeping mission and the guiding principles of humanitarian assistance and development aid shall be kept completely separate. Food assistance as part of a DDR process shall be designed and implemented in a way that contributes to the safety, dignity and integrity of ex-combatants, their dependants, persons formerly associated with armed forces and groups, and community members. In any circumstance where these conditions are not met, humanitarian agencies shall carefully consider the appropriateness of providing food assistance. Humanitarian food assistance agencies shall only be involved in DDR processes when they have sufficient capacity. Support to a DDR process shall not undermine a humanitarian food assistance agency\u2019s capacity to deal with other urgent humanitar- ian problems/crises, nor shall it affect the process of prioritizing food assistance to conflict-affected populations. In accordance with humanitarian principles, food assistance agencies shall not provide food assistance to armed personnel at any point in a DDR process. All reasonable precautions and measures shall be taken to ensure that food assistance is not taken or used by combatants or warring factions. When food is provided to armed forces and groups during the pre-disarmament and disarmament phases of a DDR process, Governments or peacekeeping actors and their cooperating partners, and not humani- tarian agencies, shall be responsible for all aspects of the process \u2013 from the acquisition of food to its distribution.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e7501fef-ec69-4ae9-9ccc-cf1751e218f5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 10, + "Paragraph": "Gender-responsive and inclusive In each context in which a DDR process takes place, women, men, girls and boys will have different needs, interests and capacities. Food assistance in support of DDR shall be designed and implemented to take this into account. In particular, DDR practitioners shall be aware of the nutritional needs of women, adolescent girls and girls and boys. They shall also assess in advance and monitor whether food assistance provides equal benefit to women/girls and men/boys, and whether the assistance exacerbates gender inequality or promotes gender equality. The food assistance component of a DDR process shall ensure that women and girls have control over the assistance they receive and that they are empowered to make their own choices about their lives. In order to achieve this, it is essential that women and girls and women\u2019s groups, as well as child advocacy groups, be closely and meaningfully involved in DDR planning and implementation. The food assistance component of a DDR process shall also consider gender analysis and power dynamics in household resource distribution, as it may be necessary to create specific benefit tracks for women. As with all food assistance programmes, those established in support of a DDR process shall be gender-responsive and appropriate to the rights and specific needs of women and girls (see IDDRS 5.10 on Women, Gender and DDR). A gender-transformative approach to food assistance shall be applied, promoting women\u2019s roles in decision-making, leadership, distribution, and monitoring and eval- uation. More specifically: A gender-transformative lens shall be integrated into the design and delivery of food assistance components, leveraging opportunities to support gender-equitable engagement by men, women, boys and girls, including ensuring equal representation of women in leadership roles. The women and men who are to be recipients of food assistance shall determine the selection of the transfer modality and delivery mechanism (time, date, place, quantity of food, separate queues, etc.). The transfer type and delivery mechanism shall not reinforce discriminatory and restrictive gender roles. The provision of food assistance shall be monitored, and gender and gender-equality considerations shall be integrated into the tools, procedures and reporting of on-site, post-distribution and market monitoring. Changes in food security, nutrition situation, decision-making authority and em- powerment, equitable participation and access, protection and safety issues, and satisfaction with assistance received shall be monitored for individual women, men, girls and boys, households and community groups. Food assistance staff shall receive training on protection from sexual exploitation and abuse (PSEA), including regular refresher trainings. Confidential complaints and feedback mechanisms related to food assistance that are accessible to women, men, girls and boys shall be designed, established and managed. These mechanisms shall ensure that women have a safe space to report protection issues and incidents of sexual and gender-based violence. An accounta- bility system should be designed, established and managed to ensure appropriate follow up. Possible violations of women\u2019s and girls\u2019 rights shall be identified, addressed and responded to when supporting the food assistance component of a DDR process. Opportunities for women to take a more active role in designing and implementing food assistance programmes shall also be promoted. The equal representation of women and men in peace mediation and decision-making at all levels and stages of humanitarian assistance shall be ensured, including in food management committees and at distribution points. The participation of women\u2019s organizations in capacity-building for humanitarian response, rehabilitation and recovery shall be ensured.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8ba9eca7-b81d-4533-b29c-97c20f0666e0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 11, + "Paragraph": "Conflict sensitive DDR processes shall be designed through a conflict-sensitive lens with careful consid- eration given to how a possible food assistance component could potentially increase tensions and vulnerabilities. Food assistance provided as part of a DDR process shall not create, exacerbate or contribute to gender inequalities or discrimination, including the risk of gender-based violence. Furthermore, it shall not present possibilities for theft or manipulation of assistance, or compromise the legitimacy of organizations and actors providing humanitarian and development aid. The most adequate transfer mo- dalities and delivery mechanisms for food assistance as part of a DDR process shall be identified. Food assistance staff and DDR practitioners shall be highly aware of the potential for their decisions to have unintended negative consequences and shall ana- lyse possible inadvertent contributions to tension/conflict. This analysis shall include: Having a sound understanding of the social tensions that already exist; Assessing how the DDR process and the food assistance component may inter- act with those tensions; Adapting the DDR process and the food assistance component to avoid con- tributing to tension/conflict, and to support sustainable peace where possible. DDR processes with a food assistance component shall also leverage opportuni- ties to \u2018do more good\u2019 and contribute to social cohesion and peacebuilding as well as to gender equality and women\u2019s empowerment.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "b4460245-44ff-4eaa-a8b9-a896b4696ea1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 12, + "Paragraph": "Context specific The food assistance component of a DDR process, and the modality through which food assistance is provided, will be highly context-specific. The appropriate local, country and/or regional approach to assistance shall be adopted and be based on good-quality data and analysis of the social, political and economic context, taking into account gender and age inequalities.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "6e99dac3-6dd9-46ee-8e7a-f6931e6728cb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 12, + "Paragraph": "4.6.1. Flexible, sustainable and transparent funding arrangements If the food assistance component of a DDR process is to be effective, sufficient human, financial and logistics resources are required. In a mission context, contributions from the UN peacekeeping assessed budget, supplemented by voluntary donations, must be available. Security provisions and the presence of adequate numbers of peacekeepers are also required. The lead food assistance agency shall support the UN mission ad- ministration in defining scenarios and predicting operational costs. In a non-mission context, voluntary donations are required.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "ef40897b-ebba-44c1-b313-3cbaf35c2cf8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 12, + "Paragraph": "4.6.2 Accountability and transparency Accountability to affected populations is essential to ensure that the design, imple- mentation, and monitoring and evaluation of the food assistance component of a DDR process is informed by and reflects the views of affected people. As part of accounta- bility to affected populations, information about food assistance shall be provided to affected populations in an accurate, timely and accessible way. The information pro- vided shall be clearly understandable to all, irrespective of age, gender, ability, literacy level or other characteristics. In addition, the views of the affected population shall be sought throughout each stage of the food assistance component of a DDR process. This requires separate consultations with women, men, youth and elders to ensure that their views and concerns are heard and accounted for. In particular, separate consul- tations with men and women shall be required in order to provide opportunities for confidential feedback and to report protection or sexual exploitation and abuse (SEA) issues related to food assistance (see Box 1).2", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "e29c07c9-49b1-414b-a4aa-829f3f2cb185", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 14, + "Paragraph": "Nationally and locally owned The food assistance component of a DDR process shall be linked to the broader recovery strategy of the country concerned. This linkage shall be included in the earliest stag- es of inter-agency DDR planning and negotiations, so that eligibility criteria and the necessary processes for receiving assistance are clearly communicated to all concerned. It is also essential to work with humanitarian coordinating structures, including the UN Humanitarian Coordinator (UN HC).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "cffb9396-cec8-4a50-9a9a-ce95d1f23000", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 14, + "Paragraph": "Integrated Food assistance to DDR processes shall be provided in close consultation with all rele- vant UN components (peacekeeping, humanitarian and development), as well as with the Government, affected populations, donors and cooperating partner organizations, including representatives of women\u2019s organizations and organizations working for gender equality. Food assistance shall not be provided as part of DDR processes if there is no clear, established institutional and operational framework. Effective mechanisms for sharing information, and where appropriate joint planning and preparation, shall be estab- lished between the leading food agency, its cooperating partners and other UN agencies, as well as peacekeeping actors and donors. This will further help uphold and respect humanitarian principles.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "34bd7899-94a0-4a41-b006-c0856abce95c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 14, + "Paragraph": "Assessment, design, monitoring and evaluation The lead food assistance agency shall participate in all negotiation and planning pro- cesses that may have a direct or indirect effect on the design and implementation of the food assistance component of a DDR process. All cooperating and implementing partners in the food assistance component shall be consulted during the planning process in order to establish the appropriate and necessary measures for exchanging information and coordinating activities. Assessments shall involve and inform local communities and, where possible, consultation on the design of a food assistance component shall include these communities and a feedback mechanism to support continual refinement.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "7434838e-d68b-44b1-ad91-cf129a0674ac", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 14, + "Paragraph": "Public information and community sensitization Community members may sometimes believe that more attractive food assistance (such as rice) is being provided to ex-combatants and persons formerly associated with armed forces and groups than the support being provided to broader communities (for example, bulgur). This can cause resentment in these communities and potentially fuel conflict. There is also the danger that humanitarian food assistance agencies will no longer be seen as neutral. For these reasons, every effort shall be made to manage public information and community perceptions when sensitizing communities where ex-combatants and persons formerly associated with armed forces and groups will return (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "cae4cbff-461f-4a9e-90f0-e754b3c2ac04", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 15, + "Paragraph": "Transition and exit strategies The food assistance component of a DDR process may initially focus on ex-combatants and persons formerly associated with armed forces and groups. In order to encourage self-reliance and minimize resentment from others in the community who do not have access to similar support, over time, and where appropriate, this focus shall be phased out. Any continuing efforts to address the vulnerabilities of reintegrating former combat- ants, their dependants, and persons formerly associated with armed forces and groups shall take place through other programmes of assistance dealing with the needs of the broader conflict-affected population, recognizing that the effectiveness of these pro- grammes is often related to available resources. The aim shall always be to encour- age the re-establishment of self-reliance from the earliest possible moment, therefore minimizing the possible negative effects of distributing food assistance over a long period of time.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "51bd6a32-c965-4001-8db2-ce02b70c34c8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 15, + "Paragraph": "Planning for food assistance in DDR processes Planning for food assistance as part of a DDR process often begins when food assis- tance agencies receive a request from a national Government, a peace operation or a UN RC. This request signals the need for the lead food agency to begin inter-agency coordination, in order to ensure that the operational requirements of a food assistance component are fully incorporated into an integrated DDR process framework.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "86f43a2e-c851-4f43-88cc-7f799a82d0e5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 15, + "Paragraph": "Food assistance planning data Food assistance may be provided as part of a DDR process only when the overall analy- sis shows that it is a needed, appropriate form of assistance as part of a broader package of DDR support. When developing the initial plans for a short-term food assistance component, the lead food agency shall gather information about the numbers and categories of recipients, the modality to be used to provide assistance, logistics and distribution/ disbursement plans. Depending on the timeline of the response, security concerns, and difficulties in terms of access, food assistance agencies may have to rely on secondary data provided by Governments and/or the UN mission and the UN peacekeeping DDR component. Nevertheless, sex and age disaggregated data should be sought to ensure that the food assistance component responds to the specific needs of the targeted pop- ulation. Longer-term food assistance interventions, such as those supporting reintegration, should ideally be based on more accurate food security and vulnerability data and analysis. This is to ensure that the food assistance component is designed according to a comprehensive understanding of food security and nutrition issues in a particular context. The analysis should include a detailed protection, gender and age analysis of the context and populations where the operation will take place. Generally, data col- lected through assessments carried out by humanitarian agencies to inform other food assistance programmes for the conflict-affected population should be used as the basis for planning reintegration support. In all planning for food assistance, vulnerability and feasibility assessments should be carried out, if possible, at the regional, commu- nity and/or household levels to gather data on areas that are particularly vulnerable, as well as communities, households and specific groups (such as single parents with small children, older people) or individuals (women versus men) experiencing food insecurity. To the extent possible, the analysis should also consider individual food security and nutrition needs, as well as the use of food and livelihood coping strategies within households, taking into account intra-household inequalities in access to and the utilization of food. The tools available for assessment and analysis include: Crop and food security assessment mission; Emergency food security assessments; Mobile vulnerability analysis and mapping remote surveys; Essential needs assessments; Integrated food security phase classification exercises including acute malnutrition; Food security monitoring systems; Transfer modality selection guidance; Standardized Monitoring and Assessment of Relief and Transition (SMART) nutrition surveys or joint food security and nutrition assessments; Other types of rapid assessments to identify vulnerable communities and to better understand local food management practices. Rapid assessments use a variety of quick and inexpensive survey techniques. They tend to be qualitative rather than quantitative, and they depend more on the ability and judgement of the person carrying out the survey than do other research methods that are more rigorous, but also slower and costlier. These assessment methods provide the basis for identifying the demographic and socioeconomic characteristics and the needs of communities, households and in- dividuals in specific locations, and provide detailed information on food availability, food markets, economic and physical ac- cess to food, food consumption and utili- zation, food and livelihood-based coping strategies, exposure to shocks, and other root causes of food insecurity, including inse- curity or gender inequalities. When possible, such assessments should be carried out through a participatory, gender-sensitive approach to ensure that the needs, interests and capacities of all community members (women, men, old, young) are identified. Community-based organizations such as women\u2019s organizations and village relief committees, including local leaders, can help to identify the people or households most in need of assistance and the local root causes of food insecurity. Engaging lo- cal organizations in surveys and assessments as key informants can contribute to the engagement of all members of the community in ensuring that food assistance is effective and that it benefits all those in need equally and does not create protection risks.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e1714971-d723-4910-946c-57baa2ca7635", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 17, + "Paragraph": "5.1.1 Data needed for planning Early in the integrated planning process, food assistance agencies should provide details of the data that they require to the lead coordinating actors in the DDR process so that information can be collected in the early phases of preparing for the food assis- tance component. The transfer modality that is chosen to provide food assistance will have implications for the types of data required, and this should be taken into account. Agencies should also be careful to ask for data about less visible groups (e.g., abducted girls, breastfeeding mothers) so that these groups can be included in the estimates. It should be noted, however, that acquiring certain data (e.g., accurate numbers and descriptions of members of armed forces and groups) is not always possible, because of the tendency of parties to hide children, ignore (leave out) women who were not in combat positions, and increase or reduce figures for political, financial or strategic rea- sons. Therefore, plans will often be made according to a best estimate that can only be verified when the food assistance component is in progress. For this reason, DDR prac- titioners and food assistance staff should be prepared for unexpected or unplanned events/circumstances. The following data are essential for food assistance planning as part of a DDR process, and shall be provided to, or collected by, the lead agency at the earliest possible stages of planning, ensuring that data protection standards are respected: Numbers of ex-combatants and persons formerly associated with armed forces and groups (disaggregated by sex and age, and with specific assessments of the numbers and characteristics of vulnerable groups); Numbers of dependants (partners, children, relatives, disaggregated by sex and age) and their expenditure on food and food intake; Profiles of participants and beneficiaries (i.e., who they are, what their special needs are); Basic nutritional data, by sex and age; Logistics corridors/supply routes; Roads and infrastructure information; Information on market capacity and functionality; Information on financial service provider networks; Basic information on beneficiary expenditure/consumption behaviour; Information regarding demining; Other security-related information. Qualitative data, that will be especially useful in planning reintegration assis- tance, should also be collected, including through ad hoc surveys carried out among ex-combatants, persons formerly associated with armed forces and groups, and dependants on the initiative of the UN humanitarian coordinating body and partner UN agencies. This process should be carried out in consultation with the national Government and third parties. These surveys identify the main features of the social profile of the intended participants and beneficiaries and provide useful information about the different needs, interests and capacities of the women, men and children of various ages that will be eligible for assistance. Preliminary data gathered through surveys can be checked and verified at a later stage, for e.g., during an identification and registration process. Data on food habits and preliminary information on nutritional requirements may also be collected by food agencies through ad hoc surveys before, or immediately following, the start of the DDR process (also see IDDRS 3.10 on Integrated DDR Plan- ning: Processes and Structures).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "7513b936-7cb5-4fed-957f-e2d21e77f136", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 18, + "Paragraph": "The food assistance plan The following parts of the food assistance component should be finalized in a food assistance plan and made part of the inter-agency approach to the DDR process: Context/conflict analysis, including protection and gender analysis; Agreement on ration/food basket/transfer value for assembly and reinsertion periods, taking into account the diverse needs of recipients; Agreement on the most appropriate modality (i.e., in-kind food, cash, or voucher/ e-voucher); The identification of programme resources; The establishment of viable distribution/disbursement/voucher redemption mechanisms, taking into consideration gender and protection issues; Putting plans and resources in place for special feeding programmes (e.g., school/ interim care centre feeding, take home rations, malnutrition and prevention treat- ment programmes; integrating nutrition awareness education); Preparations for special project activities (e.g., FFA, FFT, etc.); The development of a logistics plan; The establishment of monitoring and reporting systems; The development of contingency plans; The establishment of security measures. Having one lead food assistance agency as part of the DDR process will permit a more cost-effective operation and minimize coordination problems. In some cases, to improve the quality and variety of the food that is provided, extra supplies may be contributed by donors and other agencies. These actors can also provide non-food items required for the preparation and distribution of food (e.g., cooking pots, charcoal, paper plates, condiments, etc.). Experience has shown that the sharing of responsibilities between humanitarian and Government actors in the provision of food assistance must be done with caution. In countries emerging from conflict situations, Governments may have limited capac- ity and/or resources to ensure timely and regular food assistance supplies. In such situations, upon a request from a national Government, a peace operation or a UN RC, humanitarian actors may step in appealing for donor funds to cover gaps in the provision of food assistance.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "6098f7ff-3d88-4fdb-b0d2-101feb5095f5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 18, + "Paragraph": "Participatory planning As with all parts of an integrated DDR process, the planning process for a food assistance component should involve, as far as possible, the participation of leaders of stakeholder groups (local Government; leaders of armed forces and groups; and repre- sentatives of civil society, communities, women\u2019s groups and vulnerable groups). This participatory approach enables a better understanding of the sociopolitical, gender and economic contexts in which the food assistance component of a DDR process will operate. It also allows for the identification of any possible protection risks to individuals or communities, and the risks of becoming caught up in conflict. Finally, a participatory approach can increase trust and social cohesion among groups and create consensus and raise awareness of the benefits offered and the procedures for receiving benefits. Representatives of communities, women\u2019s leaders and women\u2019s organizations, associa- tions or informal groups should be meaningfully and equitably consulted. Although the extent to which any group participates should be decided on a case- by-case basis, even limited consultations, as long as they involve a variety of stake- holders, can improve the security of the food assistance component of a DDR process and increase the appropriateness of the assistance, distribution and monitoring. Such participation builds confidence among ex-combatant groups, improves the ability to meet the needs of vulnerable groups and helps strengthen links with the receiving community. Participants in the planning process should be specified in advance, as well as how these groups/individuals will work together and what factors will aid or hinder the process. Food/cash/voucher distribution arrangements shall also be designed in consultation with women to avoid putting them at risk. In cases where rations are to be collected from distribution points, a participatory assessment shall take place to identify the best place, date and time for distribution in order to allow women and girls to collect the rations themselves and to avoid difficult and unsafe travel, for example in the dark. It shall also be determined whether special packaging is needed to make the collection and carrying of food rations by women easier.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "5f3386af-834c-4da4-ab6e-19e0ff10c9a7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 19, + "Paragraph": "Resources and funding Once food assistance requirements have been identified, the lead food agency should take part in the drawing up of budget proposals. The food assistance component of a DDR process is often funded as part of the wider strategy of assistance and recovery, although the costs of a DDR food assistance component will depend largely on the resources and organizational capacity already in place in a given context. In both mission and non-mission contexts, food assistance in support of a DDR process shall not be implemented in the absence of adequate resources and capacity, including human, financial and logistic resources from donor contributions and/or the UN peacekeeping assessed budget. In mission contexts, the UN peacekeeping assessed budget should be available to support food assistance costs and should be designed to take into account unexpected adjustments to the length of the food assistance component, delays, and other changes that require sufficient and flexible funding. Owing to the potential for unexpected changes, maintaining a well-resourced pipeline is essential. DDR processes are often time-sensitive and volatile, and food/ CBTs shall be available for pre-positioning, distribution and/or timely disbursement to avoid the risks caused by delays. The pipeline shall have enough resources not only to meet the needs of the present situation, but also to meet the needs of other possible circumstances outlined in contingency plans.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "9067795d-f9ab-462a-81e3-10febf28d5a4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 20, + "Paragraph": "Transfer modality selection Some transfer modalities will more effectively contribute to food assistance objectives than others, depending on the specific circumstances of each intervention. CBTs pro- vide people with money while in-kind food transfers include the distribution of com- modities. Vouchers \u2013 also known as gift cards or stamps - can be used in predetermined locations, including selected shops. Vouchers can be value-based i.e., provide access to commodities for a given monetary amount. They may also be commodity-based i.e., tied to a predefined quantity of given foods. In some situations, combinations of trans- fer modalities may also prove most effective. For example, half of the transfer could be delivered in cash and the other half in-kind. Another alternative is the distribution of cash and food transfers by season, with food provided in the lean season and cash immediately after the harvest. Before deciding on the transfer modality for the food assistance component of a DDR process, an analysis shall be conducted to determine the appropriate transfer mo- dality in a given context, and how this food component complements other transitional DDR support. At a minimum, the analysis should take into account factors linked to context, feasibility, market functioning, targeting, conditionality, women\u2019s preferences, duration, effectiveness towards objectives and cost-efficiency, as well as \u2018safety and dignity\u2019 (see Figure 1). This can be done for the food assistance component alone or for a multipurpose transfer to meet the essential needs of the targeted population. Particu- lar care shall be taken to select an appropriate transfer modality when food assistance is provided during ongoing conflict. This is because armed groups can attempt to steal cash and food during the time that this assistance is being transported or stored.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c70cd20d-b635-4809-bb8e-2df73cd7c868", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 20, + "Paragraph": "Logistics strategy The primary logistical goal of the food assistance component of a DDR process is to deliver food supplies to the right place, at the right time and cost, in good condition and with no loss. The main elements of a logistics strategy should include: Port(s) of entry \u2013 identifying the most appropriate unloading port with the best location, capacity and costs; Identifying the location for/of the warehouses in transit and recipient countries; Identifying logistics corridors/routes and means of transport. The logistics strategy should plan for the following: Organizing transport; Setting up and managing warehouses; Identifying additional needs; Special operations; Recommended logistic arrangements; Cost analysis. The logistics strategy should be based on the logistics capacity assessment, which gives a detailed overview of the logistics infrastructure in the relevant country. Once the agen- cies and partners in the DDR process have been identified, an assessment of their logistics capacity is prepared through consultations, in order to develop the logistics strategy. Agreements signed by all the organizations and agencies concerned provide the basis for logistics planning. All partners shall formally define their logistics roles and responsibilities, including the reporting and financial obligations of each. Every agreement must deal with logistics issues and clearly define the logistics responsibilities of all participating partners. The assessments of partners\u2019 capacities and structures carried out during the preparation phase shall provide the basis for agreements and eventually be reflected in them.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "503a5329-3760-453f-ad16-b61ab49128a0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 21, + "Paragraph": "Selecting commodities for in-kind rations A cereal that is familiar to recipients, pulses and oil are the basic foods included in most rations. Other items are included to provide extra nutrients if people have no access to fresh foods. When selecting the types of food that will be supplied, the following issues should be considered:", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f48fcea7-a40b-44ae-b644-6c54136a8f35", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 21, + "Paragraph": "Nutritional and dietary requirements The mix of food must provide the nutrients required to supply recipients with adequate energy, protein, fat and micronutrients, taking into account what they can acquire from other sources. For in-kind transfers, foods that are rich in energy, protein or micronutrients, in- cluding fortified complementary foods, are preferred. In emergencies, fortified flours and oil, bio-fortified staple foods and iodized salt may be good options to optimize the nutritional quality of the food basket. When CBTs or commodity vouchers are provided, food baskets that address the nutrient needs of the targeted households must be closely examined as part of prepared- ness and planning. Pre-calculated transfer values can factor in the prices of nutrient- dense foods that are available in local markets, including those mentioned above as well as animal-source foods, fruits and vegetables, taking into account any impacts that emergency or crisis situations may have on availability and affordability of food and especially for nutritionally vulnerable groups. A key opportunity to enhance the nutrition-sensitivity of food transfers is to improve their nutritional quality and to ensure adequate size and timing of the transfers. Particular consideration shall also be given to those with specific nutrient require- ments, including women of childbearing age; pregnant and breastfeeding women and girls; children 6\u201323 months old; preschool children (2\u20135 years); school-age children (6\u2013 10 years); adolescents (10\u201319 years), especially girls; and older people. Other important vulnerable groups shall be considered according to the context and type of intervention, such as persons with disabilities and persons with chronic illnesses. In addition, for young children, provision of food supplements should always be accompanied by dedicated counselling on feeding and other infant and young child feeding practices like breastfeeding, consumption of family/local foods, hygiene and responsive feeding and care.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "8b74b99b-ae6b-49f7-af05-98f431d090c2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Local food habits Foods shall be familiar to those who receive them, be compatible with their traditional dietary habits and respectful of any religious taboos. Consultation with those who are to receive food assistance, including women, shall be undertaken prior to determining the composition of the food basket.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "99a58bc3-5a59-4b48-a651-c775926dfb50", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Children and older people Families must be able to prepare easily digestible energy-dense foods for young children. Easily chewed and digestible foods are also needed for older people.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "b333056b-d8d7-4547-8020-ec42a422b040", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Ease of transport, storage and use Foods shall be reasonably easy to transport, capable of being stored in the average household, and simple to prepare using little fuel. This last criterion takes into con- sideration that women and girls are usually overburdened with preparing food and collecting firewood, which sometimes creates new protection risks, and that domestic pollution is a major health concern. In addition, this criterion further protects people living with disabilities. Foods must be adapted to available cooking facilities, water and cooking fuel. The provision, promotion and use of fuel-efficient stoves is recom- mended, wherever possible.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 1 + }, + { + "ID": "d3cd1ea3-9693-4ac5-b4ff-6587cafc71f1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Cost-effectiveness, attractiveness and local value Cost must be taken into account for each of the various items that could be provided: In relation to the nutrient value the food supplies to those who will receive it; In relation to local (resale) value, as recipients may trade limited quantities of some items to obtain other essential items, e.g., fruits and vegetables from the local market; With regard to whether some items are more likely to be misappropriated than others, as items that do not reach the groups they are intended for, or that are stolen from them, are of no benefit.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "de7a8f7e-b542-4f64-91ea-725595237f45", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 22, + "Paragraph": "Availability of local commodities Commodities should be purchased locally wherever possible, to support local market recovery and employment opportunities. The quality and shelf-life of the food available should also be considered. It is important to determine whether whole grains or milled cereals should be provided and whether fortified blended foods might be produced locally rather than imported.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "71923c55-d98c-4080-b56a-636c33c34e50", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 23, + "Paragraph": "Cash-based transfers CBTs can be paid in cash, in the form of value vouchers, or by bank or digital-money transfers (for example, through mobile phones). They can be one-off or paid in instal- ments and used instead of or alongside in-kind food assistance. There are many different benefits associated with the provision of food assistance in the form of cash. For example, not only can the recipients of cash determine and meet their individual consumption and nutritional needs more efficiently, the ability to do so is a fundamental step towards empowerment, as it helps restore a sense of normalcy and dignity in the lives of recipients. Cash can also be an efficient way to deliver support because it entails lower transaction and logistical costs than in-kind food assistance, particularly in terms of transportation and storage. The provision of cash may also have beneficial knock-on effects for local markets and trade. It also helps to avoid a scenario in which the recipients of in-kind food assistance simply resell the commodities they receive at a loss in value. Cash will be of little utility in places where the food items that people require are unavailable on the local market. However, the oft-cited concern that cash is often mis- used, and used to purchase alcohol and drugs, is, in the most part, not borne out by the evidence. Any potential misuse can also be reduced through decisions related to targeting and conditionality. For example, household control over the way that cash is spent can be supported by providing cash to the families of ex-combatants, rather than ex-combatants alone. Ex-combatants and their wives/husbands can also be asked to sign a contract that leads to the release of cash. This contract could outline how the money is supposed to be spent, and would require follow-up to check that the goods purchased comply with the terms of this contract. Basic literacy and financial education can also help to reduce the risk that cash is misused, and basic nutrition education can help to ensure that families are aware of the importance of feeding nutritious foods, especially to young children who rely on caregivers to be fed. Providing cash is sometimes seen as generating security risks both for the staff that transport large amounts of money and for recipients. This is because cash is prone to diversion, capture by elites and seizure by armed groups, particularly in settings where corruption is high and armed conflict is ongoing. This is particularly true for cash payments that are distributed at regular times at publicly known locations. Digital payments, such as over-the-counter and mobile money payments, may help to circum- vent this problem by offering new and discrete opportunities to distribute CBTs. For example, recipients may cash out small amounts of their payment as and when it is needed to buy food, directly transfer money to a bank account, or store money on their mobile wallet over the long-term. Preliminary evidence indicates that distributing cash for food through mobile money transfers has a positive impact on dietary diversity, in part because recipients spend less time traveling to and waiting for their transfer. In order to benefit from mobile money transfers, recipients need to be in the possession of a mobile phone, or at a minimum, a SIM card that can be used in a mobile phone that is shared with others. The recipient will also need to reside in an area (or close to an area) where there is mobile network coverage and where there are accessible cash-out points or agents. It is also necessary to ensure that agents have sufficient cash on hand in order to make the payment. The agents will need to be monitored in order to ensure that they adhere to previously agreed upon standards. It is also important to ensure that recipients are not subjected to coercion or undue pressure by the agent to use their cash to buy other goods in the agent\u2019s store. Adequate sensitization campaigns targeting both recipients and agents should be an integral part of the programme design. Finally, new users of digital payments may need to be educated in how to use them and should, where pos- sible, be provided with accompanying literacy training and financial education. Irrespective of the type of CBT selected, the delivery mechanism (cash, vouchers, mobile money transfer) should take into account potential protection issues and gender- specific barriers. It is important that the delivery mechanism chosen permits women to access their entitlement safely and confidently, without being exposed to the risks of private service providers abusing their power over recipients and encountering dif- ficulties in the redemption of their entitlement because of numerical or financial illit- eracy. A help desk and complaint mechanism should also be set-up, and these should include specific referral pathways for women. When food assistance is provided through CBTs, humanitarian agencies often work closely with service providers from the private sector (financial service providers, traders, etc.). Where this is the case, all necessary service procurement procedures shall be followed to ensure timely set-up of the operation. Clear Standard Operating Procedures (SOPs) shall be put in place to en- sure that all stakeholders have the same understanding of their roles and responsibilities.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "dee5755f-df35-446e-a54c-b7c9e2de4dae", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 24, + "Paragraph": "5.7.1 Calculating the transfer value for CBTs The transfer value for a CBT to cover basic food needs should take into consideration the preferences of recipients, consumption patterns and the availability of food items in the local market. The transfer value should be sufficient to cover the consumption gap of the target group to consume a nutritionally balanced diet covering essential macro- and micronutrients. The transfer value can be obtained by multiplying the cost of a nutritionally balanced basket informed by consumption patterns and preferences by average food prices of the most commonly consumed items in the local market. Cash transfers in the form of value vouchers should be sufficient to cover the con- sumption gap of the target group to consume a nutritionally balanced diet covering essential macro- and micronutrients. The value can be calculated by multiplying the cost of a nutritionally balanced basket informed by consumption patterns and prefer- ences by prices negotiated with contracted retailers.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6b25dd50-2d1f-4976-b191-b52b07d60dac", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 24, + "Paragraph": "Equity with other assistance programmes Food assistance provided to DDR participants and beneficiaries should be balanced against assistance provided to other returnees or conflict-affected populations as part of the wider recovery programme to avoid treating some conflict-affected groups unfairly. The provision of special entitlements to DDR participants should always be seen in the context of the needs and resources of the broader population. If communities perceive that preferential treatment is being given to ex-combat- ants and persons formerly associated with armed forces and groups, this can cause resentment, and there is the danger that humanitarian food assistance agencies will no longer be perceived as neutral. Every effort to achieve an equal standard of living for ex-combatants, persons formerly associated with armed forces and groups, dependants and other members of the community should be made in order to minimize the risk that benefits given through DDR could fuel tensions among these groups.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "97012c4b-c579-49cf-8291-7b05780fa3b3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 6, + "Paragraph": "Food assistance as part of a DDR process Food assistance can be provided at different points throughout a DDR process, including as part of DDR programmes, DDR-related tools and reintegration support. Food assistance during DDR programmes", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7602bbb4-9aa0-43c9-b6e9-d713c691bc80", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 25, + "Paragraph": "Disarmament and Demobilization When DDR participants are grouped at specific locations, such as disarmament and/ or cantonment sites, in-kind food assistance is distributed in a way that is similar to a typi- cal encampment relief situation. In this context, demobilizing combatants and persons associated with armed forces and groups have limited buying power and their access to alternative sources of income and food security is restricted. In addition, their health may be poor after the prolonged isolation they have experienced and the poor food they may have eaten during war- time (see IDDRS 5.70 on Health and DDR). Ex-combatants and persons formerly associ- ated with armed forces and groups may see the regular provision of food assistance as proof of the commitment by the Government and the international community to support the transition to peace. Insufficient, irregular or substandard food assistance can become a source of friction and protest. Every reasonable measure should be taken to ensure that, at the very minimum, standard rations or transfers are distributed when DDR participants are grouped together at disarmament and/or cantonment sites. If ex-combatants and persons formerly associated with armed forces and groups are present at disarmament and/or cantonment sites, the type of food supplied should normally be more varied than in standard food assistance emergency operations. Table 2 provides an example of a recommended food basket. Recommended ration per person per day: 560 grams (g), 2,132 kilocalories (Kcal), 12.9% Kcal from protein and 20.2% from fat. Inclusion of fortified blended flour such as Super Cereal is essential to cover basic micronutrients and protein needs. Up to 20g of sugar can be added to meet local pref- erences. Fresh vegetables and fruit or other foods to increase the nutritional value of the food basket should be supplied when alternative sources can be found and if they can be stored and distributed. Standard emergency food baskets can be supplied to family dependants if they are included as beneficiaries of the DDR programme. In this context, food assistance for dependants may often be implemented in one of two possible ways. The first involves dependants being cantoned in a separate, nearby camp while combatants are disarmed and demobilized. The second involves dependants being taken or directed to their communities. These two approaches would require different methods for distributing food assistance. Although food assistance should not encourage ex-combatants, per- sons formerly associated with armed forces and groups and/or dependants to stay for long periods at cantonment sites, prepared foods may be served when doing so is more appropriate than creating cooking spaces and/or providing equipment for participants to prepare their own food. DDR practitioners and food assistance staff shall be aware of problems concerning protection and human rights that are especially relevant to women and girls at disar- mament and demobilization sites. Codes of conduct and appropriate reporting and referral mechanisms shall be established in advance among UN agencies and human rights and child protection actors to deal with gender-based violence, sexual exploitation and abuse, and human rights abuses. There shall also be strict procedures in place to protect women and girls from sexual exploitation by those who control access to food assistance. Staff and the recipients of food assistance alike shall be aware of the proper channels available to them for reporting cases of abuse or attempted abuse linked to food distribution. Women, men, girls and boys shall be consulted from the outset in order to identify protection issues that need to be taken into account.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a0c0b544-4cca-4f24-9b4a-d5f5a330645e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 6, + "Paragraph": "Reinsertion If a DDR programme is underway, food assistance can be part of a broader reinsertion package made available by Governments and the international community (see IDDRS 4.20 on Demobilization). Food assistance can form part of a transitional safety net and support the establishment of medium-term household food security. In this scenario, food assistance can be provided as a take-home package (for those leaving cantonment sites) and/or can be provided in the community. In communities that have access to functional markets, and where there is a reliable financial network, CBTs are likely to be a useful option during the reinsertion phase, as these transfers provide recipients with the flexibility to redeem the entitlement in the location and moment they prefer, according to their needs. When CBTs are dispensed through financial service providers who offer additional financial services, linking the food assistance to a financial inclusion objective can help to facilitate reinsertion. Where CBTs are not possible for contextual or infrastructural reasons, in-kind assistance can be considered for take-home rations. A general guideline is that food assistance in the reinsertion phase of a DDR pro- gramme should not be provided for longer than a year; however, benefits should also be appropriate to the particular context. The following factors should be taken into account when deciding on the length of time the transfer should cover: Whether ex-combatants and persons formerly associated with armed forces and groups will be transported by vehicle to the relevant communities or whether they will have to carry the ration (if in-kind) (the latter may require protection mecha- nisms for women or other vulnerable groups); The level of assistance when they reach the community; The resources available to the food component of the DDR programme; The timing and expected yields/production of the next harvest; The prospects for the re-establishment of employment and other income-generating activities, or the creation of new opportunities; The overall food policy for the area, taking into account the total economic, social and ecological situation and related recovery and development activities. The aim shall always be to encourage the re-establishment of self-reliance from the earliest possible moment, therefore minimizing the possible negative effects of dis- tributing food assistance over a long period of time. Food assistance and reintegration support Reintegration support can be provided as part of a DDR programme, or when the pre- conditions for a DDR programme are not in place. In both instances, the role of food assistance will depend on the type of reintegration support provided and whether any form of targeting is applied (see IDDRS 4.30 on Reintegration). DDR participants and beneficiaries will often eventually be included in a community-based approach and access food in the same way as members of these communities, rather than receive special entitlements. Ultimately, they should be seen as part of the community and, if in need of assistance, take part in programmes covering broader recovery efforts. In broader operations in post-conflict environments during the recovery phase, where there are pockets of relative security and political stability and greater access to groups in need, general free food distribution is gradually replaced by help directed at particular groups, to develop the ability of affected populations to meet their own food needs and work towards long-term food security. Activities should be closely linked to efforts to restart positive coping mechanisms and methods of households supplying their own food by growing it themselves or earning the money to buy it. The following food assistance activities could be implemented when support to reintegration is provided as part of a DDR process within or outside a DDR programme: Supporting communities through FFA activities that directly benefit the selected populations; Providing support, in particular nutrition interventions, directed at specific vulner- able groups; Providing support to restore production capacity and increase food production by households; Providing support (training, equipment, seeds and agricultural inputs) to selected populations or the wider community to restart agricultural production, enhance post-harvest management, identify market access options, and organise farmers to work and sell collectively; Providing support for local markets through CBTs, buying supplies for DDR processes locally, encouraging private-sector involvement in food transport and delivery, and supporting social market outlets and community-based activities such as small enterprises for both women and men, and linking CBT programmes to a financial inclusion objective; Encouraging participation in education and skills training (school feeding with nutrition education, FFT, education, adult literacy); Maintaining the capacity to respond to emergencies and setbacks; Expanding emergency rehabilitation projects (i.e., projects which rehabilitate local infrastructure) and reintegration projects; Running household food security projects (urban/rural). The link between learning and nutrition is well established, and inter-agency col- laboration should ensure that all those who enter training and education programmes in the reintegration period are properly nourished. Different nutritional needs for girls and boys and women and men should be taken into account. Food Assistance and DDR-Related Tools", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "b2a245a9-5471-4ebb-976e-f48f796c132b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 28, + "Paragraph": "Community Violence Reduction Community violence reduction as part of a DDR process seeks to build social cohesion and provide ex-combatants and other at-risk individuals, particularly youth, with alternatives to (re-)joining armed groups. As outlined in IDDRS 2.30 on Community Violence Reduction, one way to achieve this may be to involve various groups in the design, implementation and evaluation of an FFA or FFT programme. During these programmes, interaction and dialogue among these groups can build social cohesion and reduce the risk of violence. Food assistance as part of CVR shall be based on food assistance analysis (see section 5) in addition to the assessments that are regularly con- ducted as part of planning for CVR. These include, among others, a context/conflict analysis, a security and consequence assessment, and a comprehensive and gender- responsive baseline assessment of local violence dynamics (see section 6.3 in IDDRS 2.30 on Community Violence Reduction and IDDRS 3.11 on Integrated Assessments).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "49d14858-01d0-4576-abad-30681dedaff6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.50-Food-Asssistance-in-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.50-Food-Asssistance-in-DDR", + "PageNum": 7, + "Paragraph": "Pre-DDR Pre-DDR is a local-level transitional stabilization measure designed for those who are eligible for a DDR programme (see IDDRS 2.10 on The UN Approach to DDR). When a DDR programme is delayed, pre-DDR can be conducted with male and female ex-com- batants who are in camps, or with ex-combatants who are already in communities. Activities may include cash for work, FFT or FFA. Wherever possible, pre-DDR activi- ties should be linked to the reintegration support that will be provided when the DDR programme is eventually implemented. Nutritionally vulnerable groups Food assistance may be provided to all five categories of people that should be taken into consideration in integrated DDR processes, depending on the context: Members of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); Abductees/victims; Dependants/families; Civilian returnees/\u2019self-demobilized\u2019; Community members. Within these five categories, consideration should be given to addressing the spe- cific needs of nutritionally vulnerable groups. These groups have specific nutrient re- quirements and include: Women of childbearing age; Pregnant and breastfeeding women and girls; Children 6\u201323 months old; Preschool children (2\u20135 years); School-age children (6\u201310 years); Adolescents (10\u201319 years), especially girls; Older people; Persons with disabilities; and Persons with chronic illnesses including people leaving with HIV and TB. Analysis of the particular nutritional needs of vulnerable groups is a prerequisite of programming for the food assistance component of a DDR process. The Fill the Nu- trient Gap tool in countries where this analysis has been completed is an invaluable resource to understand the key barriers to adequate nutrient intake in a specific context for different target groups.3 A key opportunity to make food assistance components of DDR processes more nutrition sensitive is to deliver them within a multi-sectoral package of interventions that aim to improve food security, nutrition, health, and water, sanitation and hygiene (WASH). Social and behaviour change communication (SBCC) is likely to enhance the nutritional impact of the transfer. Gender equality and ensuring a gender lens in anal- ysis and design also make nutrition programmes more effective. As far as possible, the food assistance component of a DDR process should try to ensure that the nutritionally vulnerable receive assistance that meets their energy and nutrient intake needs. Although not all women are nutritionally vulnerable, the nutrition of women who are single heads of households or sole caregivers of children often suffers when there is a scarcity of food. Special attention should therefore be paid to food assistance for households where women are the only adult (see IDDRS 5.10 on Women, Gender and DDR). Referral mechanisms and procedures should also be established to ensure that vulnerable individuals in need of specialized services \u2013 for example, those related to health \u2013 have timely and confidential access to these services (see IDDRS 5.70 on Health and DDR). Monitoring and evaluation Mechanisms for monitoring and evaluating (M&E) interventions are essential when food assistance is provided as part of a DDR process, to ensure accountability to all stakeholders and in particular to the affected population. The food assistance component shall be monitored and evaluated as part of a broader M&E plan for the DDR process. In general, arrangements for monitoring the distribution of assistance provided during DDR should be made in advance between all the implementing partners, using existing tools for monitoring and applying inter- national best practices. In terms of food distribution, at a minimum, information shall be gathered on: The receipt and delivery of commodities; The number (disaggregated by sex and age) of people receiving assistance; Food storage, handling and the distribution of commodities; Food assistance availability and unmet needs. There are two main types of monitoring through which this information can be gathered: Distribution: This type of monitoring, which is conducted on the day of distribu- tion, includes several activities, including commodity monitoring, on-site moni- toring and food basket monitoring. Post-distribution: This monitoring takes place sometime after the distribution but before the next one. It includes monitoring of the way in which food assistance is used in households and communities, and market surveys. In order to increase the effectiveness of the current and future food assistance component, it is particularly important for data on DDR participants and beneficiaries to be collected so that it can be easily disaggregated. Numerical data should be systemati- cally collected for the following categories: ex-combatants, persons formerly associated with armed forces and groups, and dependants (partners and relatives of ex-combat- ants). Every effort should be made to disaggregate the data by: Sex and age; Vulnerable group category (CAAFAG, people living with HIV/ AIDS, persons with disabilities, etc.); DDR location(s); Armed force/group affiliation. Also, identifying lessons learned and conducting evaluations of the impacts of food assistance helps to improve the approach to delivering food assistance within DDR processes and the broader inter-agency approach to DDR. The UN agencies in- volved in the DDR process should ensure that a comprehensive evaluation of the food assistance provided during early stages of the DDR process (for example the disarma- ment and demobilization phases of a DDR programme) are carried out and factored into later stages (such as the reintegration phase of a DDR programme). The evaluation should provide an in-depth analysis of early food assistance activities and allow for lat- er food assistance components to be reviewed and, if necessary, redesigned/reoriented. Gender should be taken into consideration in the evaluation to assess if there were any unexpected outcomes of food assistance on women and men, and on gender relations and gender equality. Lessons learned should be recorded and shared with all relevant stakeholders to guide future policies and to improve the effectiveness of future plan- ning and support to operations.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "81f5833c-5ef1-4d49-9940-895dc3a32929", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "Summary DDR requires specific planning and interventions to eliminate barriers to participation and to address the specific needs of persons with disabilities. Disability-inclusive DDR processes shall be led by national and local authorities, in line with national and local policies and strategies, and build on existing systems and structures. A DDR process and all forms of support provided for that process shall adhere to humanitarian prin- ciples, including non-discrimination on the basis of disability and the best practices of disability inclusion in humanitarian action. Consistent with the principles of disa- bility-inclusive humanitarian action, the inclusion of persons with disabilities in DDR shall encompass mainstreaming and targeted interventions. Armed conflict relates to disability in two respects. First, it is a cause of disability, and, second, it is a complicating factor for persons living with disability who face spe- cific support and protection needs during conflict and its aftermath. Impairments giv- ing rise to disability occur in direct and indirect ways in the context of conflict. Direct impairments arise as a consequence of the immediate physical and psychosocial conse- quences of violent conflict, such as being hit by a bullet, stepping on a land mine or be- ing raped. Impairment also arises indirectly from conflict, and can include psycholog- ical trauma from witnessing violence, as well as a lack of basic needs (shelter, adequate clothing, sanitation, water, food, health care, etc.) and exposure to the elements.1 This context shall be borne in mind in the design and implementation of DDR processes. Conflict can also serve to amplify existing barriers for persons with disabilities, making it even more challenging to access the benefits of a DDR process. For example, destruction of infrastructure such as roads and the breakdown of social safety nets can result in the exclusion of persons with disabilities. Furthermore, conflict often weakens community-based organizations, and organizations of persons with disabilities (OPDs) may be particularly affected, owing to their frequently marginalized status in society. The intersectionality of disability and gender can heighten risk. Women and girls with disabilities face a double stigma, often experience abuse and social exclusion, and are financially and physically vulnerable. Additionally, women and girls are often car- egivers and may take on additional caregiving roles for returning DDR participants with disabilities. Disability-inclusive DDR shall be based on a careful situational anal- ysis of the context. This shall include an analysis of any potential disability as well as age- or gender-related barriers to participation in DDR. The capacities and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of disability-inclusive assistance. Protec- tion risks that could potentially be created by this assistance shall also be assessed. For example, it is important to analyse whether DDR support to former members of armed forces and groups with disabilities may inadvertently create or exacerbate household or community tensions.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "c581d1d3-fc60-459c-a772-246f8a6a72a8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module outlines the requirements for the planning, design and implementation of disability-inclusive DDR processes in both mission and non-mission settings. It focuses on disability inclusion as part of a DDR process for ex-combatants, persons formerly associated with armed forces and groups, dependants and community members. It also examines the different modalities through which disability-inclusive approaches and support may be provided.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f2d686d-22b0-4e5f-ad01-d385aa2365d7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations This section contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. The following terms and definitions are drawn from the Convention on the Rights of Persons with Disabilities, the Committee on the Rights of Persons with Disabilities, the UN Disability Strategy and UNICEF\u2019s Guidance on Including Children with Disabili- ties in Humanitarian Action. Accessibility means ensuring persons with disabilities have access, on an equal basis with others, to the physical environment; transportation; information and com- munications, including information and communications technologies and systems; and other facilities and services open or provided to the public, in both urban and rural areas. This includes the identification and elimination of obstacles and barriers to accessibility. Accessible formats refer to the provision of information in a variety of formats to make it accessible to persons with disabilities, including displays of text, Braille, tactile communication, large print, plain language, human reader, written and audio. CRPD compliant refers to policies and practices that follow the general principles and obligations set forth in the Convention on the Rights of Persons with Disabilities (CRPD) and the interpretive guidance of the CRPD Committee. Disability is an evolving concept and results from the interaction between persons with impairments and attitudinal and environmental barriers that hinder their full and effective participation in society on an equal basis with others. Discrimination on the basis of disability means any distinction, exclusion or restriction on the basis of disability that has the purpose or effect of impairing or nullifying the recognition, enjoyment or exercise, on an equal basis with others, of all human rights and fundamental freedoms in a political, economic, social, cultural, civil or any other field. It includes all forms of discrimination, including denial of reasona- ble accommodation. Disability-disaggregated data means data that are collected and presented separately on the basis of disability/impairment type. The availability of disability- disaggregated data (together with sex and age disaggregation) is an essential precondi- tion for building disability-inclusive policies and interventions. Disability inclusion is an approach that aims to identify and dismantle barriers faced by persons with disabilities, support their specific requirements and ensure their full participation. It also means ensuring the meaningful participation of persons with disabilities in all their diversity, the promotion of their rights, and the consideration of disability-related perspectives in compliance with the CRPD. Disability-inclusive DDR processes are planned, implemented, monitored and evaluated in a disability-inclusive manner. Intersectionality is the interaction of multiple factors, such as disability, age and gender, which can create multiple layers of discrimination, and, depending on the con- text, entail greater legal, social or cultural barriers. These can further hinder a person\u2019s access to and participation in humanitarian action and, more generally, in society. Organizations of persons with disabilities (OPD) are organizations com- prising a majority of persons with disabilities \u2013 at least half their membership \u2013 and governed, led and directed by persons with disabilities. Organizations of persons with disabilities should be rooted in, committed to and fully respect the principles and rights recognized in the CRPD. Persons with disabilities include those who have long-term physical, mental, intellectual or sensory impairments that in interaction with various barriers may hinder their full and effective participation in society on an equal basis with others (CRPD, art. 1). Reasonable accommodation means necessary and appropriate modification and adjustments not imposing a disproportionate or undue burden, where needed in a particular case, to ensure to persons with disabilities the enjoyment or exercise on an equal basis with others of all human rights and fundamental freedoms (CRPD, art. 2). Rehabilitation in the context of disability refers to a range of effective and appro- priate measures, including through peer support, to enable persons with disabilities to attain and maintain maximum independence; full physical, mental, social and voca- tional ability; and full inclusion and participation in all aspects of life (CRPD, art. 26). Universal design means the design of products, environments, programmes and services to be usable by all people, to the greatest extent possible, without the need for adaptation or specialized design. Universal design shall not exclude assistive devices for particular groups of persons with disabilities, where needed (CRPD, art. 2).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "73e364e3-d37b-4bb6-bd56-4de493103363", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 6, + "Paragraph": "Introduction Male and female persons with disabilities have unique needs and experiences. In sit- uations of risk, they are entitled to specific care and protection, and their intersecting rights and individual circumstances shall be given due consideration. International law recognizes persons with disabilities as individuals endowed with agency and legal capacity and acknowledges the risk and differentiated impact that armed conflict and human rights abuses can have on persons with disabilities. Persons with disabilities face heightened risks and vulnerability during conflict. Inadequate attention to the needs of persons with disabilities in humanitarian opera- tions and in DDR may result in harms. Barriers such as inaccessible shelters, lack of accessible warnings in alternate formats, barriers to evacuation, communication barri- ers, loss of assistive aids (for example, wheelchairs and walking canes), and challenges in obtaining long-term recovery services (for example, fistula repair or psychosocial recovery services) are some examples of how inattention to disability access inhibits participation. Research highlights the shortcom- ings of traditional approaches to meeting the needs of persons with disabilities that focus narrowly on specific medical and rehabilitation needs, to the exclusion of social and economic needs.2 It also demon- strates that separate and segregated programming for individuals with disabilities leads to isolation and disaffection. This is instructive for disability inclusion in DDR and in the broader context of post-conflict peacebuilding and development. Disability- inclusive DDR processes shall therefore not be siloed, but comprehensive and integrated. A twin-track approach is appropriate, meaning that DDR processes shall be fully inclusive of persons with disabilities and that targeted, specific interventions may also be needed to address specific needs (see Figure 1).3 Targeted interventions may include empowering and supporting persons with disabilities to participate in a DDR process or providing assistive technologies (such as mobility or hearing aids). Applied to DDR, this means that persons with disabilities must be able to access a DDR process on an equitable basis with other participants. The planning, design, implementation and evaluation of a DDR process shall reflect this objective. However, mainstreaming alone is insufficient to ensure that no one is left behind. Therefore, a DDR process shall also, where necessary, address the individual and collective requirements of DDR par- ticipants and beneficiaries with disabilities by providing targeted interventions. While this may include programmes to address specific requirements, what the twin-track approach does not do is support separate or segregated programming. Rather, a DDR process shall aim for disability inclusion within an integrated DDR process. Many potential DDR participants and beneficiaries will have experienced the onset of one or more physical, sensory, cognitive or psychosocial disabilities during conflict. These individuals are likely to have been exposed to trauma. It is therefore im- portant for DDR practitioners to understand and be trained to respond to the specific needs of persons with disabilities and their families. The heterogeneity of disability means that former members of armed forces and groups with disabilities will have differing needs and face different kinds of barriers to participation in DDR. For example, former members of armed forces and groups with disabilities who find themselves restricted in their mobility may not be able to call attention to their specific requirements in DDR processes. DDR planning must also account for the reality that former members of armed forces and groups with disabili- ties may face physical and communication barriers in accessing information about the potential support offered through a DDR process.4 In addition, the self-demobilization of ex-combatants with disabilities, a common phenomenon, means that they may be difficult to identify and thus be excluded from benefits unless specific measures are taken to identify and include them. Association with an armed group combined with disability results in intersec- tional stigma and disadvantage, including for women and girls. Emerging research demonstrates that females with ex-combatant status are far less likely to have ties with the disability community or to embrace a disability identity that might facilitate out- reach to OPDs for support.5 Women with disabilities, including female ex-combatants and women and girls associated with armed forces and groups, are also at greater risk of sexual violence due to the insecurity brought about by armed conflict.6 Survivors of sexual violence (both male and female) are at risk of psychosocial disability, vul- nerability to HIV and other sexually transmitted diseases, and physical disability ow- ing to violence, including the need for fistula surgery. While it is sometimes assumed that persons with disabilities do not require access to sexual and reproductive health services, including HIV and AIDS services, this is a falsehood.7 Former members of armed forces and groups with disabilities experience multi- dimensional discrimination in making a successful transition back into soci- ety in ways that are both similar to and distinct from their counterparts with- out disabilities. Discrimination on ac- count of disability works in combina- tion with other status attributes based on association with, for instance, a par- ticular fighting force, gender, poverty, ethnicity, age and so forth. The well-documented barriers that persons with disabil- ities experience during peacetime in accessing education, employment, health and rehabilitation, and an adequate standard of living are exacerbated for former mem- bers of armed forces and groups with disabilities. These individuals confront re-en- try into a fragile society with weak institutions and infrastructure and, all too fre- quently, an under-developed disability law and policy environment. Understanding DDR through a disability lens facilitates the identification of barriers to participation and the possibilities for dismantling them to create an inclusive process. For some examples of these barriers, see Table 1. For a checklist of steps that may be taken to remove these barriers, see Annex B. Making DDR efforts responsive to the needs of persons with disabilities presents some challenges, and yet recognition should be given to the problem-solving skills, resilience and coping strategies of these individuals and the role that peer support can and should play in facilitating their reintegration into society. Provided persons with disabilities are afforded opportunities to participate in DDR, they can and should emerge as leaders in their communities. Former members of armed forces and groups with disabilities should be given meaningful roles in the post-conflict period and rec- ognized as having a stake in the post-conflict social order and development efforts.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "eba528e1-2adb-417e-af01-3554b2a1a530", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 10, + "Paragraph": "Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the inclu- sion of persons with disabilities during DDR processes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9f9cba5c-bcb8-4f5b-990b-11af1c746290", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 10, + "Paragraph": "Criteria for participation/eligibility DDR practitioners shall ensure that they do not exclude or discriminate against per- sons with disabilities. Persons with disabilities shall obtain meaningful access to DDR services, programmes, aid and benefits on an equal basis with other persons. No group is to be given special status or treatment within a particular DDR process, and indi- viduals shall not be discriminated against on the basis of disability, gender, age, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associations. This is particularly important when establishing eligibility criteria. All members of armed forces and groups \u2014 male, female, and persons with or without disabilities \u2014 shall be equally able to access clear information about their eligibility for DDR, as well as the benefits available to them and how to obtain them. Eligibility criteria shall be clearly provided and persons with disabilities shall understand what they can expect regarding the accessibility of facilities and services.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "cc60fdde-6b1c-402f-98d0-8d78f8e50b9c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 10, + "Paragraph": "Unconditional release and protection of children Actions shall be taken to identify and dismantle barriers to entry to DDR processes for children associated with armed forces and groups with disabilities. These children will be at heightened risk of community exclusion and family separation. Support shall include referral to ongoing community-based support and disability- and age-appro- priate services (for example, community-based rehabilitation and inclusive education) to help ensure that reintegrated children with disabilities can stay with their families and participate fully in the community. DDR practitioners shall be aware that, in all actions concerning children with disabilities (irrespective of former association with armed forces or groups), the best interests of the child shall be a primary consideration (see IDDRS 5.20 on Children and DDR). Where possible, DDR practitioners shall also provide support to the caregivers and family members of children with disabilities who were formerly associated with armed forces and groups both during and after the family reunification process.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "347b10b0-3adc-4674-8e2c-27d6c70cb38d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 11, + "Paragraph": "Accountability and transparency During the planning, design, implementation and evaluation of a DDR process, DDR participants and beneficiaries with disabilities shall be consulted and participate in key decisions that affect their well-being. Persons with disabilities shall be recognized and respected as experts in relation to their needs and engaged at all stages of the DDR process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "fffdc4d6-93dc-41b6-8c51-a490ad7bef47", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 11, + "Paragraph": "Nationally and locally owned Successful disability inclusion is a long-term process going beyond DDR. It requires leadership from national and local authorities and shall be undertaken in accordance with national and local policies and strategies, building on existing systems and struc- tures. Therefore, disability-inclusive DDR processes shall, as early as possible, estab- lish links to existing national and local policies and strategies on disability, work to strengthen them and create linkages with broader peacebuilding and recovery efforts for disability inclusion. If such policies and strategies do not already exist, DDR processes may trigger their establishment. Persons with disabilities in the local community shall be consulted and engaged in planning from the start. The capacities of local communities and local actors shall also be strengthened in order for initiatives to be sustainable. Planning shall seek to build on existing national and local capacity rather than create new externally led programmes or structures. The capacity of existing rehabilitation centres and services facilities shall be augmented rather than parallel facilities being set up only for former members of armed forces and groups with disabilities. This approach also assists in building referral systems and social support groups for former members of armed forces and groups with disabilities who may need follow-up services.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "bc66b19b-bb32-4ea4-8099-dea5e1171e15", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 11, + "Paragraph": "Well planned Members of the local disability community and former members of armed forces and groups with disabilities shall be encouraged to contribute to the planning and imple- mentation of DDR processes. DDR practitioners shall ensure that the planning and design of DDR processes facilitates equal access to DDR sites, procedures, services and support, with the provision of individual support as needed. The principles of accessi- bility and universal design shall be addressed in DDR planning, design, implementation and evaluation.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "acf797ac-5d4e-412b-9b6c-6cdd79bc73c1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 12, + "Paragraph": "Public information and community sensitization Where appropriate, DDR practitioners shall support broad gender-responsive commu- nity sensitization programming to raise awareness and address stigma regarding per- sons with disabilities. DDR practitioners shall also work with state and local leaders, civil society representatives and media to portray persons with disabilities in ways that counter stigmatization, marginalization and stereotyping. The communities to which former members of armed forces and groups will return, including OPDs in these com- munities, shall be offered information and awareness-raising sessions to help them un- derstand the DDR process. More broadly, public information and strategic communica- tion on DDR shall be provided in various formats to ensure the widest possible access for persons with disabilities (see IDDRS 4.60 on Public Information and Strategic Com- munication in Support of DDR). This information should encourage former members of armed forces and groups with disabilities to participate. Moreover, positive images and voices of persons with disabilities shall be reflected in such campaigns.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "94ffe693-e5b4-4a4c-be76-7d5be66efa44", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 12, + "Paragraph": "Legal frameworks DDR processes are undertaken within the context of the international legal frame- work of rights and obligations (see IDDRS 2.11 on The Legal Framework for UN DDR). These rights and frameworks are relevant to the implementation of disability-inclusive DDR. This includes, in particular, international human rights law, international hu- manitarian law, international criminal law, international refugee law, and international counter-terrorism and arms control frameworks. UN-supported DDR processes shall be implemented so as to ensure that the relevant rights and obligations under that normative legal framework are respected. DDR practitioners shall be aware of the international conventions that the Member State in which they operate has signed and ratified specifically related to persons with disabilities. The discussion that follows summarizes the primary authorizing environment for approaching disability inclusion in a DDR context. The list is not exhaustive but takes into account the law and policy instruments that have been adopted since 2006. The chart below identifies the primary legal framework for advancing disability-inclusive DDR and is followed by a more detailed discussion of the legal instruments that are especially important for disability inclusion. Thereafter, additional policy frameworks are reviewed.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "90be691c-e256-4991-9925-dc3fd7f106be", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 13, + "Paragraph": "International human rights law Consistent with Article 55 of the UN Charter, UN DDR practitioners have a duty, in car- rying out their work, to promote and respect the human rights of all DDR participants and beneficiaries. These international human rights obligations are elaborated in the core human rights conventions, all of which apply to persons with disabilities. Of par- ticular importance for disability-inclusive DDR are the obligations set out in the CRPD.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f654de68-d0e2-4689-8487-3885ef8e5758", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 4, + "Paragraph": "Convention on the Rights of Persons with Disabilities The CRPD, adopted in 2006 and now nearing universal ratification, reflects current international law on the protection of persons with disabilities and the prevailing conceptualization of disability. Moreover, it integrates within its frame the protection regime extant in international humanitarian law through its provision on the protection of persons with disabilities in situations of risk. Article 11 of the CRPD requires positive measures of protection and safety for per- sons with disabilities affected by situations of risk, including natural disasters, armed conflicts and other emergencies. These persons include combatants and others disa- bled as a consequence of armed conflict. The necessity of such protection is recognized overtly in the CRPD\u2019s preamble, which affirms that \u201cthe observance of applicable hu- man rights instruments [is] indispensable for the full protection of persons with disa- bilities, in particular during armed conflicts and foreign occupation\u201d. Notably, the adoption of the CRPD created a mandate for the United Nations and triggered the adoption of a UN-wide Disability Inclusion Strategy (see section 5.4) that commits to an approach to disability inclusion that is rights-based and informed by a social model. Furthermore, article 32 of the CRPD sets out obligations to ensure that internation- al development programmes \u2013 whatever the sector of development in question \u2013 are inclusive of persons with disabilities, both as beneficiaries of development and as par- ticipants in processes of development.8", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ecfb309c-cc1b-4331-8f85-c4df4af4f58e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 14, + "Paragraph": "Convention on the Rights of the Child Article 23 of the Convention on the Rights of the Child (CRC) recognizes that a men- tally or physically disabled child should enjoy a full and decent life, in conditions that ensure dignity, promote self-reliance and facilitate the child\u2019s active participation in the community. The CRC recognizes the right of a disabled child to special care and encourages the extension of assistance to the eligible child and those responsible for his or her care. Assistance shall be designed to ensure that the disabled child has effective access to and receives education, training, health-care services, rehabilitation services, preparation for employment and recreation opportunities in a manner conducive to the child\u2019s achieving the fullest possible social integration and individual development, including his or her cultural and spiritual development (CRC, art. 23, para. 3).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d25e8605-3555-4f61-9076-d2ad679694de", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 14, + "Paragraph": "International humanitarian law obligations International humanitarian law seeks both to limit the effects of armed conflict, prin- cipally through protecting persons who are not or are no longer participating in hos- tilities, and to regulate the means and methods of warfare. The Geneva Conventions (1949) and the two Additional Protocols (1977) provide protections to persons who are in need of specific protection, including civilians or combatants who have been injured as a result of conflict as well as civilians with disabilities.9 International humanitarian law thus sets out positive measures for persons with disabilities that must be undertak- en to ensure that they effectively access services on an equal basis with others. These include, among others, measures such as the adaptation of infrastructure and informa- tion on available vital services relating to water, food, sanitation, shelter, health care and rehabilitation, the facilitation of support to transport food and non-food relief items, the continued provision of specific services required by persons with disabilities, or assistance to victims of the use of certain weapons in armed conflicts. The Mine Ban Treaty in Article 6(3) creates an obligation for the socioeconomic reintegration of land- mine survivors and, more expansively, the Cluster Munitions Convention, rooted in obligations under international humanitarian law and the CRPD, sets out implementa- tion measures including disability and sex-disaggregated data collection, the adoption and implementation of national laws and policies, the development of national plans and budgets, and the requirement to ensure the effective participation of cluster mu- nition victims and their representative organizations. These protection measures have clear application to the DDR context.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "2cb7f19e-7314-4a73-b00f-ee44849400e8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 15, + "Paragraph": "Domestic legal frameworks Domestic legal frameworks are an important element of protection and rights recog- nition for persons with disabilities. National law sometimes addresses the rights of for- mer members of armed forces and groups with disabilities. Increasingly, countries are adopting comprehensive legislation and national action plans specifically for those with disabilities. Other sources of rights for persons with disabilities are found wide- ly dispersed across the legal system (e.g., election laws, social protection laws, educa- tion, health). Legal reform often accompanies the transition period following conflict, presenting an opportunity to harmonize disability legislation with international legal ob- ligations. The review of the disability law framework likewise presents an important op- portunity to ensure consistency in disability rights protection and to avoid differential pro- tections between former members of armed forces and groups with disabilities, on the one hand, and persons with disabilities not affiliated with armed forces or groups, on the other. The following issues would usually be addressed in a Member State\u2019s domestic legislation and may have relevance to disability-inclusion in a DDR process: Anti-discrimination legislation and the prohibition of discrimination on the basis of disability, together with the duty to provide reasonable accommodation; Obligations relating to the accessibility of the physical environment; transporta- tion; information and communications, including information and communica- tions technologies and systems; and other facilities and services open or provided to the public, both in urban and in rural areas; Legal recognition before the law; Protection of the privacy of personal, health and rehabilitation information of persons with disabilities; Right to live independently and in the community; Access to justice and measures of support to guarantee access for persons with disabilities, including the provision of procedural and age-appropriate accommo- dation, in order to facilitate their effective role as participants and beneficiaries, including as witnesses, in all legal proceedings, including at investigative and other preliminary stages.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9651bd9a-4fdb-4dae-bb18-ff8b923ec065", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 15, + "Paragraph": "Institutional mandates, internal rules, policies and procedures The UN has adopted a number of internal rules, policies and procedures, some of which directly address disability inclusion and the rights of persons with disabilities. The general guide for UN-supported DDR processes is the UN IDDRS. Other internal documents that may be relevant to DDR processes include the following: Security Council resolution 2475 (2019). This resolution draws attention to the dis- proportionate impact of armed conflict on persons with disabilities. It also recognizes the importance of taking into account the discrete needs of persons with disabilities. The resolution has three main objectives: first, to raise awareness of the need to involve persons with disabilities in conflict prevention processes, reconstruction and post-con- flict reconciliation; second, to underline the significance of a broadening knowledge of the needs and rights of persons with disabilities in peacekeeping missions; and third, to improve the reporting system on conditions experienced by persons with disabilities. UN Disability Inclusion Strategy. The UN has initiated a system-wide effort and accompanying policies to become more inclusive of persons with disabilities. In March 2019, it adopted the UN Disability Inclusion Strategy, according to which UN entities, country teams and humanitarian country teams will measure and track their performance with respect to disability inclusion. The Inter-Agency Standing Committee (IASC) Guidelines on Inclusion of Persons with Disabilities in Humanitarian Action (2019).10 These provide detailed operationally oriented guidance in the broader humanitarian action con- text, much of which is directly applicable to DDR. This and other efforts, such as the adoption of the World Charter on Disability Inclusion in Humanitarian Action, provide evidence of disability-inclusive agenda setting by humanitarian actors.11 The IASC Guidelines for Mental Health and Psychosocial Support in Emergency Settings (MHPSS) (2007). These recognize that during humanitar- ian crises, many factors (e.g., violence, uncertainty, loss of family members, loss of home) can negatively affect the mental health and psychosocial well-being of in- dividuals, families and communities, and that persons with disabilities are often disproportionately affected. The MHPSS is therefore important to integrate into DDR to improve the mental health and psychosocial well-being of all DDR partic- ipants and beneficiaries, including those with physical, sensory, psychosocial or intellectual disabilities (for more, see IDDRS 5.60 on Health and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "b3882400-49b1-43ff-92a4-d34da019be85", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 16, + "Paragraph": "Other instruments informing disability inclusion in humanitarian crises Sustainable Development Goals. The 2030 Agenda for Sustainable Development pledges to \u201cleave no one behind\u201d. Its plan of action is directed towards a peaceful and prosperous world, where dignity of an individual person and equality among all is applied as the fundamental principle, cutting across three dimensions of the UN\u2019s work, namely, (1) development; (2) human rights; and (3) peace and security. Sendai Framework for Disaster Risk Reduction 2015\u20132030. The guiding prin- ciples of this framework state that disability should be included in all disaster risk mitigation policies and practices.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "36c38170-1586-4041-8a1d-2b0cb137014d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 16, + "Paragraph": "Planning for disability-inclusive DDR processes Disability-inclusive DDR begins at the ear- liest stage possible, during the context of peace negotiations (if these exist) and con- sidering the specific requirements of per- sons with disabilities. DDR practitioners should therefore facilitate meetings with OPDs, former members of armed forces and groups with disabilities, leaders in the disability community, and other key constituents. DDR practitioners should hold con- sultations with disability organizations during the planning and pre-deployment phase", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "99d2adbb-0912-4c57-9f06-429f37d8f67d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "and ensure that the voices of former members of armed forces and groups with disabil- ities are heard. This will help facilitate linkages with persons from the wider disability community. For an approach to disability inclusion in DDR, see Figure 3.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "6f1fdd00-6d92-4378-b3d4-b8493e42673d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 17, + "Paragraph": "Disability-inclusive situational assessment During the DDR planning process, a broad situational analysis should be conducted. At a minimum, this analysis should gather information on local perceptions, disability prevalence, local capacities, intersectional discrimination and accessibility. A disability- inclusive situational analysis should lead to the inclusion of explicit measures in the programme/project design that: Avoid perpetuating or reinforcing inequalities based on disability; Take a \u2018do no harm\u2019 approach that includes the provision of reasonable accommo- dation for an individual with a disability, where needed; Overcome barriers to the full participation of persons with disabilities in a DDR process; Ensure that women, men, girls and boys with disabilities benefit equitably from a DDR process and its results; Incorporate specific activities to address disability-based inequalities and con- straints, and meet disability-specific needs and priorities; and Use disability and gender-specific and/or sex-disaggregated indicators, including impact indicators, to monitor and evaluate progress and results. The box below provides a summary of some basic requirements when planning disability-inclusive DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "de6807a0-7d6e-40e3-807b-729686b4e47d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 18, + "Paragraph": "Knowledge and attitudes Understanding local perceptions is important given the stigmatization of disability prevalent in many societies. This takes many forms and sometimes includes stigmati- zation rooted in false notions about the cause of disability (e.g., curse, witchcraft). Con- sultations to assess the views of local communities towards returning former members of armed forces and groups with disabilities should begin as early as possible to en- hance local capacity and create an enabling environment for the reintegration of former members of armed forces and groups. Qualitative data can be obtained through key informant interviews and focus group discussions that, first and foremost, include per- sons with disabilities affected by armed conflict, as well as ex-combatants and persons formerly associated with armed forces and groups. It should also include the family mem- bers of former members of armed forces and groups, disability community leaders, health and community workers, religious leaders, women and youth groups, govern- ment officials and nongovernmental organizations/community-based organizations. During these consultations, support should be provided to ensure that persons with different types of disabilities, including sensory, psychosocial or intellectual disabili- ties, can fully participate.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7cf989ec-a3b4-4d29-8885-3c77763e35f8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 18, + "Paragraph": "Disability data It is often the case that little reliable data exists on disability, although some progress has been made globally since 2006. While there may be little reliable data about disability, and in particular about persons with disabilities affected by armed conflict, planning assessments should consider available data, including from surveys undertaken by humanitarian organizations, especially those with disability-specific programming. National census data can provide some insights into prevalence rates, although, again, this data may be highly unreliable. Sometimes disability data may be contained in demographic and health surveys that are regularly carried out in many countries, although these may have been interrupted because of the conflict or may not use recog- nized approaches to identifying persons with disabilities. DDR planning shall aim to capture disability data in all aspects of DDR. See Annex C for more detailed guidance and resources on disability and data.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a7b44af5-3fca-4045-a67f-15124a8706bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 19, + "Paragraph": "Identify existing capacities When DDR sites are established (such as reception centres, disarmament and/or de- mobilization sites, military barracks, etc.), existing capacities in the surrounding area shall be assessed. As a general rule, the area around a DDR site must conform with the Sphere standards for water supply and sanitation, drainage, vector control, etc.12 The availability and accessibility of basic sanitary facilities shall be considered, as shall the possibility of health and rehabilitation referrals in the surrounding area. Locations and routes for medical and obstetric emergency referral must be pre-identified, and there should be sufficient capacity for referral or medical evacuation to cope with any emer- gencies that may arise, e.g., post-partum bleeding (the distance to the nearest health facility and the time required to get there are important factors to consider) (see IDDRS 4.20 on Demobilization). Planning should also take into careful consideration the potential rehabilitation needs of former members of armed forc- es and groups with disabilities and plan for the provision of assistive devices (e.g., crutches, wheelchairs, walking sticks) and for linking and referrals to community support. Such needs shall be budgeted for during planning (see Annex D for guidance on how to conduct a disability-inclusive budget scan). OPDs as well as existing facilities and programmes that provide services to per- sons with disabilities should form part of the initial assessment, as they can provide support to DDR participants and beneficiaries. Identification of the local capacities of OPDs and organizations that provide services to persons with disabilities and working in collaboration with them is important, especially to ensure that former members of armed forces and groups with disabilities who have self-demobilized can be identified and included in DDR and to help strengthen existing capacity that may have been seriously undermined during the armed conflict. Transport planning is also an important dimension of effectively accommodating former members of armed forces and groups with disabilities in the DDR process, as individuals with disabilities in may require accessible forms of transport. In addition to examining capacities in and around DDR sites, the existing capac- ities and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of disability-inclusive assistance. This assessment should map existing health-care and rehabilitation facilities in and around communities where former members of armed forces and groups are likely to return. This should include a mapping of social protection programmes, in- cluding safety nets, programmes to support access to employment, skills development, and access to assistive technology. This exercise should ascertain whether the country has a functioning national disability strategy and programme, and the extent that min- istries are engaged (this should go beyond a ministry of labour and social affairs or a ministry of health, to include other key ministries such as education and planning and development, among others).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4320e20b-77ad-48e7-b3c1-e2bba4ff4ff2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 20, + "Paragraph": "Planning for the accessible design of DDR sites Planning assessments and recommendations for personnel and budgetary allocation for inclusive DDR shall make provisions for disability expertise and accessibility for DDR sites (e.g., removal of physical barriers, ensuring safe and accessible WASH facilities, appropriate preparation to receive individuals with sensory disabilities). The accessi- ble design of DDR sites will ensure that former members of armed forces and groups with physical and sensory disabilities are included and make it more likely that they will participate. International humanitarian standards shall apply and gender-specific requirements shall be taken into account (e.g., security, sexual and gender-based violence prevention measures, the provision of disability-inclusive and female-specific health- care assistance and support). Engagement with persons with disabilities and OPDs in the design, construction and modification of site infrastructure for accessibility is a strat- egy promoted in disability-inclusive humanitarian action and should be considered.13 Persons with disabilities should be reasonably accommodated, meaning that nec- essary and appropriate modifications and adjustments are applied to meet the require- ments of the individual in question (for some examples, see Box 4). In all instances, reasonable accommodation is intended to ensure that persons with disabilities are able to enjoy or exercise on an equal basis with others all human rights. The duty to provide reasonable accommodation is thus a requirement of the obligation not to discriminate on the basis of disability and applies to all aspects of DDR. Research underscores that reasonable accommodation is typically at no or low cost.14 Engaging the local disability community or volunteers from among former members of armed forces and groups to provide support is an option that may be considered. Sites must take into account the need for capacity to address the specific require- ments of former members of armed forces and groups with disabilities. Information on DDR should be made available in multiple and accessible formants, and registration processes should account for the accessibility of persons with disabilities, including having protocols for the provision of reasonable accommodation. Possible options in- clude the establishment of disability focal points in each region and the secondment of experts, including those from OPDs, the national disability programme (if one ex- ists) or an umbrella association of OPDs. DDR participants with disabilities should be briefed on community-based support and disability services, so it is essential that all personnel are trained in disability awareness strategies and are fully aware of available facilities and services.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "4be76fc0-8622-43d6-8104-df102dffefb6", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 21, + "Paragraph": "Gender and disability Planning for DDR processes shall take into account the intersection of age, gender, disability and other forms of diversity. DDR practitioners shall also be aware of the different ways in which these categories intersect, and the differing impacts that such intersectionality may have on former members of armed forces and groups with disa- bilities. Although male and female former members of armed forces and groups with disabilities may both experience social marginalization, women and girls often face unique forms of stigma and are more vulnerable to abuse. Limited access to viable eco- nomic opportunities may leave persons with disability more financially (and physically) at risk than they were as part of armed forces and groups, which may leave women and girls facing unique protection risks. Gender norms in the community may also be more traditional than in armed forces and groups, leading to losses in gender equality for women and girls. For example, community members may ex- pect female combatants to return to tradi- tional gender roles in the domestic sphere, even if they held leadership roles in their armed force or group. Female combatants with disabilities may find this readjustment particularly difficult, especially if they are locally perceived as unable to fulfil the role of a wife and mother due to their disabili- ty. Adolescent girls may also be excluded from decision-making due to their previous association with an armed force or group, because of discrimination on the basis of disability and gender norms, or because of a lack of accessibility measures. Therefore, when designing programmes, planners shall consult with male and female persons with disabilities as well as community members, including those belonging to OPDs and women\u2019s and youth groups. Planning and programme design Scoping Questions on the Attitudinal Environment What are prevailing attitudes towards persons with disabilities/former members of armed forces and groups with disabilities in the country? In returning commu- nities? Are they different for women and men? Scoping Questions on Existing Data on Disability How many persons with disabilities (women, men, girls, boys) are in and associat- ed with the armed forces and groups? What is the national disability prevalence? Are there particular types of trauma or injury that are associated with the armed conflict (e.g., amputations, trauma from sexual violence, mine injuries)? Scoping Questions on Existing Support and Service Provision What services exist to provide support to persons with disabilities at the national and community level (community-based rehabilitation programmes, OPDs, etc.)? What specific measures will be put into place to ensure that the requirements of former members of armed forces and groups with disabilities are given due attention? Are they gender and age responsive? If DDR sites are planned, what measures will be taken to ensure accessibility of services and facilities, including for women and girls? What expertise and training are needed to ensure that the needs of persons with disabilities are taken into account in all phases of DDR? Are there facilities for treatment, counselling and protection of those who suf- fered sexual and gender-based violence that are equally accessible to women and girls with disabilities? And men and boys with disabilities? Has the support of local, regional and national OPDs been enlisted to assist in the reintegration process? Has collaboration with leaders with disabilities in assisting former members of armed forces and groups and others returning to civilian life been facilitated? Are existing OPDs trained to understand the require- ments and experiences of former members of armed forces and groups with disabilities? Scoping Questions on Legal and Institutional Frameworks What is the legal framework for persons with disabilities, and is disability support provided in that framework? Is there a differentiation in support for civilians ver- sus former members of armed forces and groups? Can persons with disabilities easily access such support (e.g., disability pensions)? Is any existing social security system accessible to persons with disabilities, including former members of armed forces and groups, and does it meet their particular needs? What funding will be allocated to facilitate the participation of persons with disabilities in DDR? Are funds allocated specifically to ensure the inclusion of persons with disabilities in the DDR process? should also be based on assessments that are gender responsive. Safety and dignity shall be prioritized, and any unintended negative effects of DDR processes shall be minimized. Special attention shall be paid to ensure that female DDR participants and beneficiaries, including those with disabilities, are able to access assistance and services in proportion to need and without barriers or protection risks. Mechanisms should be established through which DDR participants and beneficiaries can express concerns and make complaints. Monitoring and evaluation shall include protection dimensions and take decisive action to address issues identified.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "c4781c6f-fedf-4936-9841-3d3529b31cee", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 23, + "Paragraph": "Disability-inclusive DDR programmes DDR programmes consist of a set of related measures, with a particular aim, falling un- der the operational categories of disarmament, demobilization and reintegration. DDR programmes require certain preconditions, such as the signing of a peace agreement (see IDDRS 2.10 on The UN Approach to DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "0b6ab4aa-a98d-4db7-b61b-3e14c7a3ebb5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 23, + "Paragraph": "Access to information specific to disability services and support Upon entry to a DDR programme, all DDR participants should be made aware of their rights and, in particular, any specific rights related to disability. They should also be provided with access to information specific to disability services and support, such as rehabilitation services, the provision of assistive devices, and peer support. The ap- proach taken to providing disability-specific support to DDR participants should be informed by existing principles of rehabilitation.15", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "104f672e-1fb9-4fb1-84ed-62e3c7402da0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 23, + "Paragraph": "Physical layout of DDR sites The physical layout of DDR sites should allow for DDR participants with disabilities to participate in all aspects of the DDR programme, from reception (if applicable) to disarmament and demobilization. Universal design and accessibility should be at the forefront of layout planning. While males and females shall be provided separate facil- ities, in part to ensure the safety and autonomy of women and girls who are sex slaves or forced \u2018wives\u2019, persons shall not be separated based on disability. Furthermore, space should be available for persons with disabilities who have caregivers required for per- sonal assistance, or who require assistive devices and technology.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "a9bd19b1-6971-4ad6-97df-265759329b6c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 23, + "Paragraph": "WASH access Water, sanitation and hygiene (WASH) play a key role in ensuring the well-being of people, including persons with disabilities and their families, who may need to ac- cess extra quantities of water as well as extra or specific hygiene-related items, and require reliable access to water and sanitation infrastructures. Persons with disabilities are often confronted with non-accessible facilities that they find difficult to negotiate, and they may face stigma and discrimination when using WASH facilities. This can seriously impact the health and dignity of DDR participants with disabilities. The gen- dered dimension of accessible WASH is also essential to consider, as women and girls report considerable anxiety about safety and security in this context. The addition- al challenge of menstrual hygiene management for women and girls with disabilities should be factored into WASH accessibility, including the need for adaptive and acces- sible menstrual health products. Suggested measures to address accessible WASH in a DDR process include the following: Engage OPDs in planning for access to safe water and sanitation to persons with disabilities. In low-resource settings, civil society organizations often play a criti- cal role in supporting government efforts in WASH. Invest in and allocate financial resources/budget for accessible WASH in DDR sites. Partner with organizations that provide accessible WASH in communities, house- holds and settings outside the home, prioritizing schools, workplaces, health facil- ities and communal WASH facilities. Partner with organizations that provide safe, accessible and affordable menstrual hygiene items, such as underwear with built-in menstrual protection. Adopt a twin-track approach: mainstream disability in DDR WASH policy and develop disability-specific WASH measures.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "485614fe-acea-4fa1-8bff-832706561acc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 24, + "Paragraph": "Equal access to health services During demobilization, individuals should be directed to a doctor or medical team for physical and psychosocial health screening (see IDDRS 4.20 on Demobilization). The specific needs of former members of armed forces and groups with disabilities should be assessed, and DDR practitioners should support these individuals to access the assistance they need throughout demobilization and the subsequent reintegration stage of the DDR programme. This can be done, for example, by referring individuals to health facilities identified during previous assessments (see section 6.1.3). Residential demobilization sites (such as cantonment sites) should provide birth- ing kits, sufficient clean water, supplemental feeding and medical facilities. Women and girls with disabilities who have been abducted and/or suffered sexual assault dur- ing and after the conflict should be assisted by women who are trained in trauma management and offered counselling services appropriate to the cultural context. They must also be included in HIV and AIDS programming in DDR. Research demonstrates that men and women with disabilities are often assumed to be non-sexual and to have no need for HIV and AIDS services, which is wholly without basis in fact. Persons with disabilities, especially girls, are also at heightened risk of sexual abuse and assault. Persons with disabilities must be able to access all health facilities, including tem- porary ones.16 When health facilities are rebuilt or rehabilitated, they should be fully accessible to persons with disabilities, including elements such as entrances, restrooms, ease of movement within buildings, and signage. Also relevant for DDR programming is the promotion of initiatives to transport persons with disabilities to health facilities and to ensure that entrances are wide enough, signage is clear and pathways facilitate movement. Information on all health services should be provided in multiple accessible formats, taking into account the requirements of former members of armed forces and groups with disabilities who have hearing, visual, intellectual or psychosocial disabilities. For specific guidance on persons with disabilities, mental health and psychosocial support, refer to IDDRS 5.70 on Health and DDR.17", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "21dcc3b1-80ee-4ff4-a74f-a4b3443f36c0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 25, + "Paragraph": "Reinsertion As part of a DDR programme, transitional reinsertion assistance may entail the pro- vision of cash payments, vouchers and/or in-kind support, or the participation of for- mer members of armed forces and groups in public works programmes (see IDDRS 4.20 on Demobilization). Irrespective of the type of reinsertion assistance provided, DDR practitioners should take the specific needs of those with disabilities into ac- count. Food assistance should, for example, cater to the specific nutritional needs of persons with disabilities (see IDDRS 5.50 on Food Assistance in DDR). More gener- ally, DDR practitioners should always ask themselves whether the specific transfer modality selected (cash, voucher, in-kind support, public works programme) poses any specific challenges or opportunities to persons with disabilities, and how these challenges and opportunities intersect with considerations related to age and gender. When considering the provision of transitional reinsertion assistance, DDR practitioners should:", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6779ff3b-d89e-4d1e-89fa-3ec8581eb2e7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "More generally, DDR practitioners should always ask themselves whether the specific transfer modality selected (cash, voucher, in-kind support, public works programme) poses any specific challenges or opportunities to persons with disabilities, and how these challenges and opportunities intersect with considerations related to age and gender. Plan for extra costs associated with transitional reinsertion assistance for persons with disabilities (e.g., assistive devices,18 transport, specific nutritional needs, community-based services); Ensure that, where possible, reinsertion kits are universal in their design (i.e., that they can be used by persons with disabilities without additional modifications); Ensure accessibility, for example, of pick-up points for cash payments, vouchers and/or in-kind assistance; Be aware of any safety or protection concerns that may impact transitional assis- tance or require extra costs, particularly for women and girls with disabilities if travelling to pick-up points for reinsertion assistance (e.g., ensuring safe transport and providing for extra costs as needed); Ensure that, when voucher systems are used, they allow persons with disabilities to cater to their specific needs in terms of nutrition, accommodation, etc., and are viable for them to utilize (e.g., accounting for distance and accessibility to locations where they can use vouchers, as well as any additional transportation costs incurred); Include persons with disabilities in public works programmes where possible, planning for any extra costs needed to enable them to effectively do their jobs, and provide alternative roles or reinsertion/reintegration support only when an individual is unable to do the work required; Ensure, where possible, that education and training efforts provide support for participants with disabilities, and account for any additional costs this may require. Failure to ensure that transitional reinsertion assistance meets the needs of former members of armed forces and groups with disabilities will compromise their reinte- gration and could be a potential source of conflict or care burden within their commu- nities and family. Research shows that caregiving responsibilities for former members of armed forces and groups with disabilities fall disproportionately on women and girls. DDR practitioners should also ensure that former members of armed forces and groups with disabilities have accessible means of transport to the area where they will receive reinsertion and/or reintegration support. Ensuring a safe means of transport that does not subject women (including women with disabilities) to sexual violence or trafficking is essential.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0435c56b-64f6-4560-aab5-0d33b969f583", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 26, + "Paragraph": "7.6 Reintegration DDR practitioners shall plan for and allocate resources for disability inclusion in re- integration activities, both when these activities are implemented as part of a DDR programme and when they are imple- mented during ongoing conflict (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration). These activities shall, as far as possible, be inclusive, and mainstream initiatives where persons with disabilities are able to participate in the same kinds of economic, social and political initiatives as their non-dis- abled counterparts. Where possible, community-based rehabilitation ap- proaches should be sought to ensure the inclusion of those with disabilities (see Box 7). Disability-specific (target- ed) initiatives may be appropriate but should not take the place of inclusive programming. Barriers to full partici- pation in social, economic and political reintegration shall be identified and addressed.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e03e3ad4-87ed-4157-98e4-1c44817ccef2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 26, + "Paragraph": "Economic reintegration Economic inclusion for individuals with disabilities shall be accounted for in DDR planning and design. DDR practitioners shall not make decisions on the basis of as- sumptions about what DDR participants with disabilities can and cannot do and shall not foster exclusion from livelihood activities. DDR processes shall not discriminate on the basis of disability and shall observe the duty to provide reasonable accommoda- tion where needed. Accessibility measures to foster economic inclusion and equality of opportunity shall be put in place (for example, physical, transport, communication and information). Specific measures must be implemented to ensure that former members of armed forces and groups with disabilities have access to the same kind of reintegration op- portunities provided to other DDR participants and beneficiaries. Like their non-disa- bled counterparts, they should have a voice in their choice of training and livelihoods activities and should not be segregated into initiatives that put them on the fringes of the economy. Participation in the open labour market should be the goal for all adult former members of armed forces and groups, including those with disabilities. Considering that many conflict-prone countries are agriculture-based economies, the facilitation of a return to farming or fishing can be key to successful reintegration and to the transition from subsistence farming to more sustainable livelihoods. Inter- ventions to support smallholder farmers and marginal fishers are needed, as these groups constitute the largest segments of the workforce in current conflict zones. The capacity of these agricultural workers to jump-start their livelihoods could be greatly enhanced by providing them with an understanding of how markets work, facilitating their access to improved production systems and making their farms more resilient. Examples of disability-inclusive approaches for economic reintegration include the fol- lowing: Implement strategies to counter negative attitudes and discrimination against per- sons with disabilities, particularly regarding their ability to participate in training and economic activity. Sensitize family and community members to the rights and capacities of persons with disabilities, including their right and capacity to work. Mainstream protection and safeguarding measures across livelihood and eco- nomic inclusion programming. Inform persons with disabilities about these meas- ures and how they can access them. Recognize the gendered dimension of some protection and safeguarding risks. Assess and ensure the accessibility of skills training, apprenticeships and finan- cial service providers, and markets and market-related information for persons with different types of disability. Assist vocational or business skills training providers to make the courses they offer accessible to persons with different types of disability. Ensure that trainers are aware of how to train individuals with certain types of impairment. Provide (or provide referrals to) technical aids and assistive devices where neces- sary, such as crutches, white canes and hearing aids. Adapt equipment or commu- nication methods, for example, Braille and sign-language interpretation. Encourage training and apprenticeship providers, potential employers, and busi- ness development and financial service providers to respect the rights of per- sons with disabilities, including their right to have full access to livelihoods, and prevent stigmatization. Support engagement with local communities, including OPDs, to identify barriers and employment opportunities for reintegrating former members of armed forces and groups with disabilities. Develop outreach and community-based processes that can identify and connect with persons with disabilities who are not visible, for example, the self-demobilized.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "f2cdde2d-dfc2-4def-b531-fd376245f7aa", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 28, + "Paragraph": "Social reintegration Families and social networks can remove or reduce barriers that hinder the social re- integration of persons with disabilities. Supportive families can promote inclusion, particularly for former members of armed forces and groups who are stigmatized or excluded. However, families may also act as barriers as well as enablers, particularly if stigma and misconceptions about persons with disabilities persist. To identify and address barriers to social reintegration, DDR practitioners should conduct sensitiza- tion that both challenges negative perceptions and acknowledges the gender and age dimensions of discrimination, engaging civil society representatives and supporting co-existence and social cohesion. Where necessary and possible, reintegration support should also be made available to caregivers to former members of armed forces and groups with disabilities. Peer support can also be critical to social reintegration, and is a well-established intervention used with success in facilitating the reintegration of individuals with dis- abilities following traumatic injury, such as one sustained from a landmine or unex- ploded ordinance. Peer support refers to the process of support and assistance to fa- cilitate long-term recovery. It may involve knowledge sharing, skills sharing, practical assistance and/or emotional support that contributes to mental health and psychoso- cial well-being. Individuals who are trained in peer support can connect individuals with disabilities to opportunities, resourc-", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "e779f10d-7c2e-4518-8f94-d16f1b1db08e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "Former members of armed forces and groups with psychosocial and intellectual disabilities may need focused additional support delivered by trained non-specialists or mental health and psychosocial health specialists. es and communities of support. Persons with disabilities from the community are potential peer supporters for former members of armed forces and groups with disabilities. These individuals may also be important resources for facilitating access to social protection programmes, in coun- tries where these exist. Peer support is specifically referenced in the CRPD, and capacity-building to establish peer support must be tailored to the specific DDR context. OPDs may provide peer support services, and the provision of seed money for the training of peer support workers and related initiatives can benefit both the community and returning members of armed forces and groups. Where appropriate, former members of armed forces and groups with disabilities can also be trained as peer support workers. Research in other contexts has demonstrated the empowering role that persons with disabilities can play when included in peer training for HIV/AIDS education, for example. Psychosocial and intellectual disabilities, including mental impairments, can hinder social and economic reintegration, particularly when these are associated with per- sistent mental health or cognitive conditions or disturbances in behaviour, including those stemming from acute stress, grief, depression and/or post-traumatic stress (see IDDRS 5.70 on Health and DDR). Former members of armed forces and groups with psychosocial and intellectual disabilities may need focused additional support deliv- ered by trained non-specialists or mental health and psychosocial health specialists. These needs should be identified in health screenings conducted during demobiliza- tion and throughout the reintegration phase of the DDR programme (see section 7.4). Finally, schools offer critical avenues for achieving disability-inclusion for children and youth with disabilities affected by conflict. The global comprehensive school safe- ty framework emphasizes three school safety pillars important for DDR and includes key guidance on disability-inclusive approaches (see also IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR).19", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "420cd5cb-f6a0-49db-a77a-26d1d3558e21", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 29, + "Paragraph": "Political reintegration Political reintegration highlights the importance of giving voice and agency to former members of armed forces and groups with disabilities in decision-making in the com- munity and broader political processes. In this regard, it may be useful to encourage the representation of former members of armed forces and groups with disabilities, exploring opportunities to partner with or join existing political associations for persons with disabilities. Such associations may help individuals to receive information regarding rights, resources and opportunities and may advocate for equitable assis- tance. These associations may also engage in counselling, training, the provision of credit for income-generating activities and employment, and other referral services. For further information on associations of former members of armed forces and groups, see IDDRS 4.30 on Reintegration.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "8e514b1b-5b15-4834-afd3-8a9f5ae0b79d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 29, + "Paragraph": "Disability-inclusive DDR-related tools In addition to DDR programmes, DDR processes can also include DDR-related tools such as community violence reduction (CVR), DDR support to mediation, and transi- tional weapons and ammunition management (WAM). DDR-related tools are immedi- ate and targeted measures that can complement DDR programmes or be implemented when the preconditions for a DDR programme are not in place (see IDDRS 2.10 on The UN Approach to DDR).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e4250bef-570b-479b-a698-8f9995e0890c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 29, + "Paragraph": "Community violence reduction CVR programmes are bottom-up interventions that focus on the reduction of armed vi- olence at the local level by fostering improved social cohesion and providing incentives to resist recruitment (see IDDRS 2.30 on Community Violence Reduction). They offer important avenues for disability inclusion, such as: Ensuring that targeting of groups susceptible to recruitment (i.e., youth at risk) includes persons with disabilities; Provision of disability- and gender-inclusive alternatives to violence-based liveli- hoods; Provision of mental health and psychosocial support to at-risk youth and former members of armed forces and groups, inclusive of persons with disabilities; Partnerships with OPDs and the capacity-building of these organizations; Raising awareness of the rights of persons with disabilities and disability in- clusion, including through civil society networks in coordination with national human rights mechanisms and working groups on disability functioning at national and/or local levels; and Provision of stop-gap support to former members of armed forces and groups with disabilities who are waiting for reintegration support, in close cooperation with the national DDR programme (where applicable) and national disability structures.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "67d4acf3-1e9f-4b44-93f7-6b1392eb6c87", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 30, + "Paragraph": "DDR support to mediation Peace agreements seek to end armed conflict but also to ensure sustainable peace by addressing those issues that caused conflict.20 As such, they can help to create envi- ronments where persons with disabilities are empowered and fully integrated into post-conflict societies. In this regard, DDR practitioners should advise mediators on the importance of including the voices of persons with disabilities in peace negoti- ations and actively removing barriers to their inclusion. It should also be clear as to whether peace agreement provisions relate to disabilities acquired prior to conflict, during conflict or both. Intersectionality should also be acknowledged, as failure to do so means that the specific challenges of certain groups (children with disabilities, women with disabilities, former members of armed forces and groups with disabilities, etc.) may not be identified and addressed. Peace agreements can lay the foundations for more substantive policies and law reform by ensuring that a disability lens is adopted in post-conflict mechanisms. DDR practitioners should therefore advise mediators that the language included in peace agreement provisions related to persons with disability should be empowering, for example, by viewing disability as a differentiating char- acteristic no different from gender, race or religion. Viewing persons with disabilities only as victims requiring support may perpetuate their marginalization and disem- powerment. Where DDR is linked to a process of security sector reform, peace agreements may contain specific provisions related to the integration of former members of armed forc- es and groups with disabilities into the security sector (see IDDRS 6.10 on DDR and Se- curity Sector Reform). In line with CRPD, DDR practitioners should advise mediators that members of armed forces and groups with disabilities shall not be excluded from opportunities to integrate into the security sector solely because of their disability. If a person is unable to perform a specific role due to the nature of his/her disability, an alternative role should be sought, and only if an alternative role is unavailable should the person be demobilized and supported to reintegrate into civilian life. Persons with disabilities may also opt for demobilization and reintegration on a voluntary basis, if this option is on offer. However, existing members of armed forces shall not be forced to demobilize solely on the basis of their disability.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "1d35763b-fce8-4a5c-8370-342e738397cf", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 30, + "Paragraph": "Transitional weapons and ammunition management Transitional WAM is primarily aimed at reducing the capacity of individuals and groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). Barriers to the participation of persons with disabilities in transitional WAM measures should be identified and rectified. It may also be particu- larly helpful to engage persons with disabilities in sensitization efforts highlighting the dangers of weapons possession and unsafe storage (irrespective of whether their disa- bility was caused by armed conflict). Such sensitization work can positively highlight the capacities of persons with disabilities.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a4092c02-367f-4761-8829-8c55e814a14a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 31, + "Paragraph": "Monitoring and evaluating disability-inclusive DDR processes Addressing disability inclusion in mechanisms for monitoring and evaluation (M&E) is essential for a DDR process to ensure accountability to all stakeholders and, in par- ticular, the affected population. Disability inclusion shall be monitored and evaluated as part of a broader M&E plan for the DDR process (see IDDRS 3.50 on Monitoring and Evaluation). In general, arrangements for monitoring disability inclusion during DDR should be made in advance between all implementing partners, using existing tools for monitoring and applying international best practices on disability data (see Annex C for more on disability and data). It is important for data on DDR par- ticipants and beneficiaries to be collected so that it can be easily disaggregated on the basis of disability (and other factors, including sex and age). This means that numerical data should be systematically collected for ex-combatants, persons for- merly associated with armed forces and", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "02e04ec3-a2ae-472f-a7ec-959582185ec4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 31, + "Paragraph": "Identifying lessons learned and conducting evaluations of the impacts of DDR assistance on persons with disabilities helps to improve the approach to disability inclusion within DDR processes and the broader inter- agency approach to DDR. groups, and dependants. Every effort should be made to disaggregate the data by disa- bility in addition to sex and age, other specific needs categories (e.g., people living with HIV/AIDS), DDR location(s), armed force/group affiliation, etc. Identifying lessons learned and conducting evaluations of the impacts of DDR assistance on persons with disabilities helps to improve the approach to disability in- clusion within DDR processes and the broader inter-agency approach to DDR. DDR practitioners should ensure that an evaluation of disability inclusion during the early stages of a DDR process is carried out and factored into later stages. Gender should also be taken into consideration in the evaluation to assess if there were any unexpect- ed outcomes of the DDR process on women and men with disabilities, and on gender relations and gender equality. Lessons learned should be recorded and shared with all relevant stakeholders, in accessible formats, to guide future policies and to improve the effectiveness of future planning and support to operations. While monitoring indicators appropriate for DDR will be designed according to the context in which DDR is implemented and the DDR strategy and components, the inclusion of disability-specific indicators should be identified to guide DDR practition- ers in the establishment of monitoring mechanisms and systems. Some sample indi- cators for DDR programmes are provided in Box 8, and more detailed guidance is provided in Annex C. Disarmament To what extent did the disarmament programme succeed in disarming male and female ex-combatants with disabilities? To what extent did the disarmament programme provide disability-inclusive access and services for men and women with disabilities? Sample indicator: Number of persons with disabilities who registered for disarmament programme (disaggregated by disability status, gender, age). Sample indicator: Number of information materials that included images/ voices of ex-combatants with disabilities. Sample indicator: Number of DDR staff with disability-specific training. Sample indicator: Number of information campaigns that informed ex-com- batants with disabilities about DDR programmes. Demobilization To what extent did the demobilization programme succeed in demobilizing former members of armed forces and groups with disabilities? To what extent did the demobilization programme provide disability inclusion access and services? Sample indicator: Number of persons with disabilities who registered for demobilization programme (disaggregated by disability status, gender, age). Sample indicator: Number of former members of armed forces and groups with disabilities who received transitional support to prepare for reintegra- tion. Sample indicator: Number of assistive devices distributed. Reintegration To what extent did the reintegration programme succeed in reintegrating former members of armed forces and groups with disabilities? To what extent did the reintegration programme provide disability inclusion access and services? Sample indicator: Number of persons with disabilities who registered for reintegration programme (disaggregated by disability status, gender, age). Sample indicator: Number of persons with disabilities who participated in micro-credit programme (disaggregated by disability status, gender, age). Sample indicator: Number of persons with disabilities who participated in vocational training alongside other former members of armed forces and groups (disaggregated by disability status, gender, age).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8aee24af-b43b-444b-8b99-96f1db4d877b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 33, + "Paragraph": "Annex A: Abbreviations CRC\tConvention on the Rights of the Child CRPD\tConvention on the Rights of Persons with Disabilities CVR\tcommunity violence reduction M&E\tmonitoring and evaluation OPD\torganization of persons with disabilities WAM\tweapons and ammunition management WASH\twater, sanitation and hygiene", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "ac1d5720-194f-48e0-8ce4-724bc74c3cdc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 33, + "Paragraph": "Annex B: Barrier checklist A social understanding of disability in the context of a DDR process focuses attention on the removal of barriers to equalize opportunities between persons with and without disabilities. Directing attention to the removal of barriers in a DDR process provides benefits to a broad range of persons with disabilities. While reasonable accommodation will still be required to ensure all persons with disabilities can participate in and bene- fit from a DDR process, this approach is applicable to complex DDR processes. The fol- lowing table provides examples of how an approach to barrier removal may be applied to benefit individuals with a range of functioning difficulties. The functional difficulty categories in the final column of the table are based on the Washington Group Short Set of questions. The examples provided are not exhaustive and are not a substitute for consultation with OPDs.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fdadfa6b-481c-4db9-a82c-191b2c31872e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": null, + "Paragraph": "Annex C: Disability and data The necessity of ensuring that disability data is captured accurately is underscored in the UN Convention on the Rights of Persons with Disabilities. Article 31 provides that \u201cinformation \u2026 shall be disaggregated, as appropriate, and used to help assess the im- plementation of States Parties\u2019 obligations \u2026 to identify and address the barriers faced by persons with disabilities in exercising their rights\u201d. The 2030 Agenda for Sustainable Development has as its overarching goal that no one is left behind in development and, accordingly, acknowledges the role of data \u2013 specifically, the disaggregation of data \u2013 as central to this effort. There are numerous challenges to capturing accurate disability data: It is not possible to write one question or a short set of survey questions that can adequately, accurately and comprehensively capture the complexity of disability. Any survey questions must be short, clear and precise. Often, problematic questions are used that result in poor capture of data. These challenges can be addressed. In 2001, the Washington Group on Disability Statistics was established as a City Group under the aegis of the UN Statistical Commission to: Address the need for population-based measures of disability. Foster international cooperation in the area of health and disability statistics. Produce internationally tested measures to monitor the status of persons with disability. Incorporate disability into national statistical systems. The Washington Group website and complete set of resources may be found at http://www.washingtongroup-disability.com/. The Washington Group approach acknowledges that: Disability is complex. Disability incorporates a variety of different components: body functions and structure, limitations in activities (capacity), and restrictions in participation (per- formance). Disability includes characteristics of both the person and their environment. The language of disability is not specific. In many cultures, stigma is associated with disability, creating additional chal- lenges to measurement and, ultimately, inclusion. The Washington Group developed a set of questions that capture a part of the disability complexity and that can be used in a valid, reliable and internationally comparable manner. They can be used in conjunction with other data collected in a census or survey (related to outcomes like access to DDR processes, education or employment) to under- take analyses consistent with the social model of disability. The Washington Group defined an approach to measuring disability based on identifying those who, because of difficulties doing certain universal, basic actions, are at greater risk than the general population for limitations in participation. The objectives of the Washington Group Short Set are to: Identify persons with similar types and degree of limitations in basic actions, re- gardless of nationality or culture. Represent the majority of (but not all) persons with limitations in basic actions. Represent commonly occurring limitations in domains that can be captured in the census context. The intended use of the Washington Group Short Set is to: Compare levels of participation in employment, education or family life for those with disability versus those without disability to see if persons with disability have achieved social inclusion. Monitor effectiveness of programmes and policies to promote full participation. Monitor prevalence trends for persons with limitations in specific basic action do- mains. For some important limitations and considerations in relation to using the Washington Group Short Set, see Box 9. The Washington Group questions are not designed to identify all persons with disabilities. The identification of persons with disabilities should be ongoing throughout a DDR process. The Washington Group Short Set will identify some persons with intellectual disabilities. The Extended Set of questions has additional questions to improve the identification of persons with intellectual disabilities or cognitive difficulties. The questions do not apply to children under the age of five, and they miss many children with developmental disabilities over the age of five. UNICEF and the Washington Group developed the Child Functioning Module, which is de- signed to better identify all children with disability. A limitation of the Washington Group Short Set is that it misses many people with psychosocial disabilities, according to research from the US showing that about half of people with psychosocial disabilities are missed by the six questions in the Short Set. For that reason, the Washington Group developed a set of four addi- tional questions that address anxiety and depression. These additional questions are part of the Extended Survey and are also included in the Short Set \u2013 En- hanced, thus helping to identify people with mental health concerns while still limiting the number of questions that need to be added to a census or survey. The Washington Group questions do not identify impairments or health con- ditions. However, the questions can be used as a screening tool for referral for medical assessment to ensure specific health needs are met. The Washington Group recommends \u2018a lot of difficulty\u2019 as the cut-off for identi- fying persons with disabilities in censuses and surveys. Including \u2018some difficulty\u2019 responses may identify more persons with disabilities if the objective is broader inclusion in a DDR process. The brevity of the module \u2013 six questions \u2013 makes it well suited for inclusion in larger surveys, and for disaggregating outcome indicators by disability status. To maximize international comparability, the Washington Group Short Set ob- tains information on difficulties a person may have in undertaking basic functioning activities that apply to people in all cultures and societies and of all nationalities, and so are universally applicable. The final set of questions includes difficulties seeing, hearing, walking or climb- ing stairs, remembering or concentrating, self-care and communication (expressive and receptive). The question set with specific instructions may be accessed at https://www. washingtongroup-disability.com/fileadmin/uploads/wg/Documents/Questions/ Washington_Group_Questionnaire__1_-_WG_Short_Set_on_Functioning.pdf.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "315bebce-77ea-4c79-ab68-998e3791587f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 11, + "Paragraph": "Children with disabilities The Washington Group questions are designed to collect information on the popu- lation aged five years and above, with a knowledgeable proxy respondent providing information for children. Because they were not specifically designed for use among children, they do not include key aspects of child development important for identify- ing disability in children, and the wording of certain domains may not be relevant (or suitable) for children and adolescents. The WG-UNICEF Module on Child Function- ing is designed to meet the needs of identifying and measuring disability in children. The question set with specific instructions may be accessed at https://www.washing- tongroup-disability.com/question-sets/wg-unicef-child-functioning-module-cfm/.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1be1071e-7cce-4090-a1e9-babfa1663bc1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 37, + "Paragraph": "Indicators for disability-inclusive DDR During planning, core indicators need to be developed to monitor the progress and impact of disability-inclusive DDR initiatives. These should include process indicators, such as the provision of assistive devices and the number of peer supporters trained, and outcome indicators, like disability prevalence among DDR participants and the number of ex-combatants seeking disability supports. Where relevant, DDR planners need to work with national programmes in the design and monitoring of initiatives, as it is important that the indicators used in DDR programmes are harmonized with national indicators (if they exist). DDR planners, implementing partners and national counterparts should agree on the benchmarks against which disability inclusion in DDR will be assessed. Demobilization Patterns of resettlement of ex-combatants with disabilities in areas of return (e.g., community-based versus segregated) Perceptions of host communities of ex-combatants with disabilities and reinte- gration % of ex-combatants with disabilities receiving employment creation assistance (into new or existing jobs) % of ex-combatants with disabilities receiving assistance to establish individual or small-group projects (e.g., microenterprises) % of ex-combatants with disabilities granted additional assistance to address disability-related needs % of ex-combatants with disabilities integrated into local or community-based development projects Incidence of violence among ex-combatants with disabilities Existence and degree of community mobilization to manage and facilitate rein- tegration of ex-combatants in areas of return % of ex-combatants achieving results in their reintegration activity over time % of ex-combatants with disability accommodation needs groups provided with reintegration assistance Sensitization and Awareness Popular opinion polls on DDR Number of sensitization activities at national level using voice/image of persons with disabilities/ex-combatants with disabilities Inclusivity, by disability, of sensitization activities Number of reports on individuals with disabilities in DDR coverage in national and local media Degree of local disability community participation and mobilization in sensitiza- tion activities Number of national and local non-governmental organizations of persons with disabilities voluntarily participating in awareness raising and sensitization Degree of comprehension among ex-combatants with disabilities of the DDR process Perceptions of ex-combatants with disabilities among national and local popula- tions Ex-combatants\u2019 attitudes to livelihoods and reintegration", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fc2e14ae-4221-4a2d-9aa8-42c3666f1edf", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.80-Disability-Inclusive-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.80-Disability-Inclusive-DDR", + "PageNum": 39, + "Paragraph": "Annex D: Disability-inclusion markers Disability-inclusion markers are under development in various organizations.21 To en- sure disability inclusion in a DDR process, an inclusion marker applied to budgeting at the design stage could help to ensure that disability-inclusion measures are adequately aligned to budgeting, a factor the research discloses has been inadequate in past DDR processes and has led to serious disaffection and required emergency donor budget infusions. A Disability Budget Scan, a tracking mechanism to monitor the integration of disability-inclusive interventions from the design to the implementation and evalua- tion phase, could help ensure that disability-inclusive interventions within DDR are adequately funded at the outset (and throughout) a DDR process. Under a Disability Budget Scan, budget lines are screened and classified according to four categories: No disability-inclusive link. Disbursements made without any disability- inclusive analysis. No expenditures aimed at, for example, barrier removal in DDR cantonment and registration sites. No budget lines to address reasonable accommodations for individual needs such as assistive devices or sign language interpreters. Disability-sensitive link. These expenditures are intended to provide different responses to meet the individual and collective needs of persons with disabilities. Examples include budgeting for physical barrier removal for housing, assistive devices, screening for disability prevalence and supplemental cash payments to address requirements of individuals with disabilities. Strengthening disability-inclusion link. Expenditures aimed at strength- ening disability inclusion, at the institutional level. Examples include capacity- building of disability focal points in line ministries or in partner institutions or strengthening community-based organizations that provide supports to persons with disabilities. Disability inclusive. Specific actions within a DDR process seeking to trans- form disability inclusion broadly in society. These expenditures address the strategic interests of persons with disabilities by contributing to long-term structural and sustainable changes in societies to promote disability equality and non-discrimination on the basis of disability. Examples include support for disability awareness campaigning in returning communities and local sensiti- zation about disability inclusion, support for disability law and policy reforms, and support for the establishment of community-based rehabilitation program- ming broadly.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1c393de3-2580-4b3e-9fbf-bc9cc26b96fa", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": null, + "Paragraph": "Summary DDR processes are often conducted in contexts where the majority of combatants and fighters are youth, an age group defined by the United Nations (UN) as those between 15 and 24 years of age. If DDR processes cater only to younger children and mature adults, the specific needs and experiences of youth may be missed. DDR practitioners shall promote the participation, recovery and sustainable reintegration of youth, as failure to consider their needs and opinions can undermine their rights, their agency and, ultimately, peace processes. In countries affected by conflict, youth are a force for positive change, while at the same time, some young people may be vulnerable to being drawn into conflict. To provide a safe and inclusive space for youth, manage the expectations of youth in DDR processes and direct their energies positively, DDR practitioners shall support youth in developing the necessary knowledge and skills to thrive and promote an enabling environment where young people can more systematically have influence upon their own lives and societies. The reintegration of youth is particularly complex due to a mix of underlying economic, social, political, and/or personal factors often driving the recruitment of youth into armed forces or groups. This may include social and political marginalization, protracted displacement, other forms of social exclusion, or grievances against the State. DDR practitioners shall therefore pay special attention to promoting significant participation and representation of youth in all DDR processes, so that reintegration support is sensitive to the rights, aspirations, and perspectives of youth. Their reintegration may also be more complex, as they may have become associated with an armed forces or group during formative years of brain development and social conditioning. Whenever possible, reintegration planning for youth should be linked to national reconciliation strategies, socioeconomic reconstruction plans, and youth development policies. The specific needs of youth transitioning to civilian life are diverse, as youth often require gender responsive services to address social, acute and/or chronic medical and psychosocial support needs resulting from the conflict. Youth may face greater levels of societal pressure and responsibility, and as such, be expected to work, support family, and take on leadership roles in their communities. Recognizing this, as well as the need for youth to have the ability to resolve conflict in non-violent ways, DDR practitioners shall invest in and mainstream life skills development across all components of reintegration programming. As youth may have missed out on education or may have limited employable skills to enable them to provide for their families and contribute to their communities, complementary programming is required to promote educational and employment opportunities that are sensitive to their needs and challenges. This may include support to access formal education, accelerated learning curricula, or market-driven vocational training coupled with apprenticeships or \u2018on-the-job\u2019 (OTJ) training to develop employable skills. Youth should also be supported with employment services ranging from employment counselling, career guidance and information on the labour market to help youth identify opportunities for learning and work and navigate the complex barriers they may face when entering the labour market. Given the severe competition often seen in post-conflict labour markets, DDR processes should support opportunities for youth entrepreneurship, business training, and access to microfinance to equip youth with practical skills and capital to start and manage small businesses or cooperatives and should consider the long-term impact of educational deprivation on their employment opportunities. It is critical that youth have a structured platform to have their voices heard by decision- makers, often comprised of the elder generation. Where possible DDR practitioners should look for opportunities to include the perspective of youth in local and national peace processes. DDR practitioners should ensure that youth play a central role in the planning, design, implementation and monitoring and evaluation of Community Violence Reduction (CVR) programmes and transitional Weapons and Ammunition Management (WAM) measures.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "84595409-869a-44ae-aff8-cd7b0c2f1008", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module aims to provide DDR practitioners with guidance on the planning, design and implementation of youth-focused DDR processes in both mission and non-mission contexts. The main objectives of this guidance are: To set out the main principles that guide aspects of DDR processes for Youth. To provide guidance and key considerations to drive continuous efforts to prevent the recruitment and re-recruitment of youth into armed forces and groups. To provide guidance on youth-focused approaches to DDR and reintegration support highlighting critical personal, social, political, and economic factors. This module is applicable to youth between the ages of 15 and 24. However, the document should be read in conjunction with IDDRS 5.20 on Children and DDR, as youth between the ages of 15 to 17, are also children, and require special considerations and protections in line with legal frameworks for children and may benefit from child sensitive approaches to DDR consistent with the best interests of the child. Children between the ages of 15 to 17 are included in this module in recognition of the reality that children who are nearing the age of 18 are more likely to have employment needs and/or socio- political reintegration demands, requiring additional guidance that is youth-focused. This module should also be read in conjunction with IDDRS 5.10 on Women, Gender and DDR.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "6ed53602-11d0-412c-909e-9b6277550f0a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Decent work: Used in reference to the Decent Work Agenda and Sustainable Development Goal 8, which aims to promote sustained, inclusive and sustainable economic growth, full and productive employment and decent work for all. The term is used to describe the need for access to quality jobs that provide dignity, equality of opportunity for men and women, a fair income, and safe working conditions. Decent work ensures that people have a voice in what they do and are protected from exploitation.1 Youth: There is no universally agreed international definition of youth. For statistical purposes the United Nations defines \u2018youth\u2019 as those persons between the ages of 15 and 24 years, while in context of the UN Security Council resolution 2250 (2015) on youth, peace and security, youth is defined as those persons between the ages of 18 and 29 years. . Beyond the UN system, the age of people included in this cohort can vary considerably between one context and another. Social, legal, economic and cultural systems define the age limits for the specific roles and responsibilities of children, youth and adults. Conflicts and violence often force youth to assume adult roles such as being parents, breadwinners, caregivers or fighters. Cultural expectations surrounding girls and boys also affect the perception of them as adults, such as the age of marriage, initiation and circumcision practices, and motherhood. Such expectations can be disturbed by conflict. UN Security Council resolution 2250 (2015) on youth, peace and security recognizes the positive role that youth have in building, contributing to and maintaining international peace and security and urges member states to take steps to enable the participation of youth in this regard.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "af10cd7b-0899-48c8-8413-55f686fcf6c7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 5, + "Paragraph": "Introduction DDR processes are often implemented in contexts where the majority of former combatants are youth, an age group defined by the United Nations (UN) as those between 15 and 24 years of age. Individuals within this age bracket have a unique set of needs and do not easily fit into pre-determined categories. Those under 18 are regarded as children associated with armed forces or armed groups (CAAFAG) and shall be treated as children. Legally, children and youth up to the age of 18 are covered under the UN Convention on the Rights of the Child and other protective frameworks (see section 5 of IDDRS 5.20 on Children and DDR) and all have the same rights and protections. Youth above the age of 18 are treated as adults in DDR processes despite that, if recruited as children, their emotional, social and educational development may have been severely disrupted. Regardless of whether or not they were recruited as children, youth who demobilize when they are over the age of 18 generally fall under the same legal frameworks as adults. However, in terms of criminal responsibility and accountability, any criminal process applicable to youth regarding acts they may have committed as a child should be subject to the criminal procedure relevant for juveniles in the jurisdiction and should consider their status as a child at the time of the alleged offense and the coercive environment under which they lived or were forced to act as mitigating factors. Youth in countries that are affected by armed conflict may be forced to \u2018grow up quickly\u2019 and take on adult roles and responsibilities. As with children associated with armed forces or armed groups, engagement in armed conflict negatively affects the stages of social and emotional development as well as educational outcomes of young people. Conflict may create barriers to youth building basic literacy and numeracy skills, and gaps in key social, cognitive and emotional development phases such as skill building in critical thinking, problem solving, emotional self- regulation, and sense of self-identity within their community and the world. When schools close due to conflict or insecurity, and there are few opportunities for decent work, many young people lose their sense of pride, trust and place in the community, as well as their hope for the future. Compounding this, youth are often ignored by authorities after conflict, excluded from decision- making structures and, in many cases, their needs and opinions are not taken into account. Health care services, especially reproductive health care services, are often unavailable to them. The accumulation of these factors, particularly where insecurity exists, may push young people into a cycle of poverty and social exclusion, and expose them to criminality, violence and (re-)recruitment into armed forces or groups. These disruptions also reduce the ability of communities and States to benefit from and harness the positive resilience, energy and endeavour of youth. Youth can provide leadership and inspiration to their societies. UN Security Council resolution 2250 explicitly recognises \u201cthe important and positive contribution of youth in efforts for the maintenance and promotion of peace and security\u2026[and affirms]\u2026 the important role youth can play in the prevention and resolution of conflicts and as a key aspect of the sustainability, inclusiveness and success of peacekeeping and peacebuilding efforts.\u201d Youth should have a stake in the post-conflict social order so that they support it. Their exposure to violence and risky behaviour, as well as their disadvantages in the labour market, are specific. Youth are at a critical stage in their life cycle and may be permanently disadvantaged if they do not receive appropriate assistance. This module provides critical guidance for DDR practitioners on how to plan, design and implement youth-focused DDR processes that aim to promote the participation, recovery and sustainable reintegration of youth into their families and communities. The guidance recognizes the unique needs and challenges facing youth during their transition to civilian life, as well as the critical role they play in armed conflict and peace processes.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "2df5830d-51fb-4e00-8740-55268dd90b14", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 6, + "Paragraph": "Guiding Principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to youth and DDR.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2c17b98a-7bf1-4e7e-a3bc-417a56017d9c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 7, + "Paragraph": "People-centred Criteria for participation/eligibility As outlined in IDDRS 5.20 on Children and DDR, any person below 18 years of age who is associated with an armed force or group shall be eligible for participation in a DDR process designed specifically for children. Eligibility for DDR processes for CAAFAG shall not be conditioned on the child\u2019s possession and handover of a weapon or ammunition, participation in hostilities or weapons training; there shall be no conditions, of any kind, for their participation. If there is doubt as to whether an individual is under 18 years old, an age assessment shall be conducted (see Annex B in IDDRS 5.20 on Children and DDR). For any youth under age 18, child-specific programming and rights shall be the priority, however, when appropriate, DDR practitioners may consider complementary youth-focused approaches to address the risks and needs of youth nearing adulthood. For ex-combatants and persons associated with armed forces or groups aged 18-24, eligibility for DDR will depend on the particular DDR process in place. If a DDR programme is being implemented, eligibility criteria shall be defined in a national DDR programme document. If a CVR programme is being implemented, then eligibility criteria shall be developed in consultation with target communities, and, if in existence, a Project Selection Committee (see IDDRS 2.30 on Community Violence Reduction). If the preconditions for a DDR programme are not in place, eligibility for reintegration support shall be decided by relevant national and local authorities, with support, where appropriate, from relevant UN mission entities as well as UN agencies, programmes and funds (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Unconditional release and protection of children DDR processes for children shall not be contingent on political negotiations or adult DDR processes. Efforts shall always be made to prevent recruitment and to secure the release of CAFFAG, irrespective of the stage of the conflict or status of peace negotiations. Doing so may require negotiations with armed forces or groups for this specific purpose. Special provisions and efforts may be needed to reach girls, who often face unique obstacles to identification and release. These obstacles may include specific sociocultural factors, such as the perception that girl \u2018wives\u2019 are dependents rather than associated children, gendered barriers to information and sensitization, or fear by armed forces and groups of admitting to the presence of girls. The mechanisms and structures for the release and reintegration of children shall be set up as soon as possible and continue during ongoing armed conflict, before a peace agreement is signed, a peacekeeping mission is deployed, or a DDR process or related process, such as Security Sector Reform (SSR), is established. Armed forces and groups rarely acknowledge the presence of children in their ranks, so children are often not identified and therefore may be excluded from DDR support. DDR practitioners and child protection actors involved in providing services during DDR processes, as well as UN personnel more broadly, shall actively call for and take steps to obtain the unconditional release of all CAAFAG at all times, and for children\u2019s needs to be considered. Advocacy of this kind aims to highlight the issues faced by CAAFAG and ensures that the roles played by girls and boys in conflict situations are identified and acknowledged. Advocacy shall take place at all levels, through both formal and informal discussions. UN agencies, foreign missions, mediators, donors and representatives of parties to conflict should all be involved. If possible, advocacy should also be linked to existing civil society actions and national systems (see IDDRS 5.20 on Children and DDR). In accordance with standards and principles of humanitarian assistance Youth-focused DDR processes shall respect the principles of international humanitarian law and promote the human rights of DDR participants and the communities into which they reintegrate. Core principles for delivery of humanitarian assistances include humanity, impartiality, neutrality and independence. When supporting youth, care shall be taken to assess the possible impact of measures on vulnerable populations which may, by their very nature, have disproportionate or discriminatory impacts on different groups, even if unintended. Responses shall enhance the safety, dignity, and rights of all people, and avoid exposing them to harm, provide access to assistance according to need and without discrimination, assist people to recover from the physical and psychological effects of threatened or actual violence, coercion or deliberate deprivation, and support people to fulfil their rights.2", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "94fd90dd-6ce7-4b56-b646-5a72a12d5687", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 8, + "Paragraph": "Gender-responsive and inclusive Non-discrimination and fair and equitable treatment are core principles of integrated DDR processes. Youth who are ex-combatants or persons formerly associated with armed forces or groups shall not be discriminated against due to age, gender, sex, race, religion, nationality, ethnicity, disability or other personal characteristics or associations. The specific needs of male and female youth shall be fully taken into account in all stages of planning and implementation of youth-focused DDR processes. A gender transformative approach to youth-focused DDR should also be pursued. This is because overcoming gender inequality is particularly important when dealing with young people in their formative years. DDR processes shall also foster connections between youth who are (and are not) former members of armed forces or groups and the wider community. Community-based approaches to DDR expose young people who are former members of armed forces or groups to non-military rules and behaviour and encourage their inclusion in the community and society at large. This exposure also provides opportunities for joint economic activities and supports broader reconciliation efforts.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "aac6170b-6adc-40f4-96b1-cb5f92fac99f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 8, + "Paragraph": "Conflict sensitive A youth-focused approach to DDR shall ensure that no harm is done to youth. Rather, DDR processes shall seek to maximize the benefit to youth, while minimizing any harm. This shall be done through: Assessing and monitoring both positive and negative impacts for youth, and disaggregating data by age, gender and vulnerabilities of young people (while protecting youth\u2019s privacy) and where safe to do so, other social identities. Listening to and taking account of the voices and views of youth in the planning, design, implementation and review of youth-focused DDR processes. Leveraging opportunities for youth to promote peacebuilding and social cohesion through DDR including by building and fortifying stronger connections between youth, irrespective of the armed group or force they may have been traveling or associated with, including those in receiving communities.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "92cec84d-22e3-48d2-8a0a-b2d4bc71824b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 9, + "Paragraph": "Context specific There is no simple formula for youth-focused DDR that can be routinely applied in all circumstances. DDR processes shall be contextualized as much as possible in order to take into account the different needs and capacities of youth DDR participants and beneficiaries based on conflict dynamics, cultural, socio-economic, gender and other factors.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "805c34f4-a7ce-4514-84b7-f4e930f65097", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 9, + "Paragraph": "Flexible, accountable and transparent Flexible, sustainable and transparent funding arrangements Sufficient long-term funding for DDR processes for children should be made available through a funding mechanism that is independent of and managed separately from adult DDR (see IDDRS 5.20 on Children and DDR). Youth-focused DDR processes for those aged 18 \u2013 24 should also be backed by flexible and long-term funding, that takes into account the importance of creating space for youth (especially the most marginalised) to participate in the planning, design, implementation, monitoring and evaluation of DDR processes. Accountability and transparency Youth shall be provided information about the DDR process so that they can make an informed decision about whether and how they may participate. DDR practitioners shall also solicit and take the views of youth seriously and act upon them.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8bd3b118-61f3-4ed5-a44d-4caeb6bab52a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 9, + "Paragraph": "Nationally and locally owned Youth-focused DDR processes shall be closely linked to national development strategies, the Sustainable Development Goals and youth development policies. Youth development policies generally include different combinations of social, economic, environmental and health objectives relating to young women and men. In some countries, youth programmes focus on education and training; in others, they focus on youth, sports and other recreational activities, cultural heritage, prevention of substance abuse and HIV/AIDS, and population planning. The variety of approaches is reflected in different institutional frameworks that may include different ministries \u2014 such as education, health, labour and sports and/or youth affairs. DDR practitioners shall support the active participation of youth organizations in DDR processes as local youth organizations, working with other civil society groups, often have the potential to direct the energy and ability of young people towards rebuilding a prosperous and fair society.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "40ab3c5a-b4b8-4ce4-8d1c-590a8dd7d7b7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 10, + "Paragraph": "Regionally supported Where appropriate, youth-focused DDR processes shall consider regional initiatives to prevent the (re-)recruitment of youth. DDR practitioners shall also tap into regional youth networks where these have the potential to support the DDR process.", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "f334074e-6450-4102-85f9-ca066ee0520b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 10, + "Paragraph": "4.9 Integrated Many of the problems confronting youth are complex, interrelated and require integrated solutions. However, national youth policies are often drawn up by different institutions with little coordination between them. The setting up of a national commission on DDR (NCDDR) that prioritizes inclusion of youth perspectives, allows the process of coordination and integration to take place, creates synergies and can help to ensure continuity in strategies from DDR to reconstruction and development. To meet the needs of young people in a sustainable way, when applicable, DDR practitioners shall support the NCDDR to make sure that a wide range of people and institutions take part, including representatives from the ministries of youth, gender, family, labour, education and sports, and encourage local governments and community-based youth organizations to play an important part in the identification of specific youth priorities, in order to promote bottom-up approaches that encourage the inclusion and participation of young people.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "aa0523e2-8034-42b3-a861-6ddcae8fa77b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 10, + "Paragraph": "Well planned Safety and security Youth shall not be put in harm\u2019s way during DDR processes. Youth shall be kept safe and shall be provided information about where to go for help if they feel unsafe while participating in a DDR process. Risks to youth shall be identified, and efforts shall be made to mitigate such risks. DDR practitioners shall promote decent work conditions to avoid creating further grievances, with a focus on equal conditions for all regardless of their past engagement in armed conflicts, ethnic or other sociocultural background, political or religious beliefs, gender or other considerations to avoid prejudice and discrimination. Planning, assessment, design, monitoring and evaluation The planning, assessment, design, monitoring and evaluation of youth-focused DDR processes shall, at a minimum, involve youth representatives (ex-combatants, persons associated with armed forces or groups, and community members), including both male and female youth. This helps to ensure that youth immediately begin to act as agents of their own future, fosters trust between the generations, and ensures that both male and female youth priorities are given adequate consideration. Preventing the (re-) recruitment of youth into armed groups shall be a stated goal of DDR processes and included in the planning process. Public information and community sensitization Effective communication is a critical aspect of successful DDR (see IDDRS 4.60 on Public Information and Strategic Communication). A specific communication strategy involving, and where safe and possible, led by youth, shall be developed while planning for a youth-focused DDR process. At a minimum, this communication strategy shall include actions to ensure that youth participants and beneficiaries (and their families) are aware of their eligibility and the opportunities on offer, as well as alternative support available for those that are ineligible. Youth can help to identify how best to communicate this information to other youth and to reach youth in a variety of locations. Youth participants and beneficiaries shall be partners in the communications approach, rather than passive recipients. Public information and awareness raising campaigns shall be designed to specifically address the challenges faced by male and female youth transitioning to civilian status and to provide gender responsive information. Specific efforts shall be made to address societal gender norms that may create stigmatization based on gender and hinder reintegration. For example, female youth who were combatants or associated with armed forces or groups may be particularly affected due to societal perceptions surrounding traditional roles. Male youth may also be similarly affected due to community expectations surrounding masculinity.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "bcfe7f08-135e-489e-bd5b-c27286bc539b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 11, + "Paragraph": "Planning for youth-focused DDR processes For CAAFAG between the ages of 15 to 17, the situation analysis and minimum preparedness actions outlined in IDDRS 5.20 on Children and DDR shall be undertaken. For youth between the ages of 18 and 24, who are members of armed forces or groups, planning should follow similar processes for that of adult combatants, integrating specific considerations for youth. Specific focus shall be given to the following: Assessments shall include data disaggregated by age and gender. For example, prior to a CVR programme, baseline assessments of local violence dynamics should explicitly unpack the threats and risks to the security of male and female youth (see section 6.3 in IDDRS 2.30 on Community Violence Reduction). If the DDR process involves reintegration support, assessments of local market conditions should take into account the skills that youth acquired before and during their engagement in armed forces or groups (see section 7.5.5 in IDDRS 4.30 on Reintegration). Weapons surveys for disarmament and/or T-WAM activities should also include youth and youth organizations as sources of information, analyse the patterns of weapons possession among youth, map risk and protective factors in relation to youth, and identify youth-specific entry points for programming (see IDDRS 4.10 on Disarmament, IDDRS 4.11 on Transitional Weapons and Ammunition Management and MOSAIC 6.20 on Children, Adolescents, Youth and Small Arms and Light Weapons). It is also important for intergenerational issues to be included in the conflict/context assessments that are undertaken prior to a youth-focused DDR process. This will elucidate whether it is necessary to include reconciliation measures to reduce inter-generational conflict in the DDR process. Gender analysis including age specific considerations should also be conducted. For more information on DDR-related assessments, see IDDRS 3.11 on Integrated Assessments. Planning should also take into account different possible types of youth participation \u2013 from consultative participation to collaborative participation, to participation that is youth-led. In certain instances, for example CVR programmes and reintegration support, there may be space for youth to assume an active, leading role. In other instances, such as when a Comprehensive Peace Agreement is being negotiated, the UN should, at a minimum, ensure that youth representatives are consulted (see IDDRS 2.20 on The Politics of DDR). More broadly, youth representatives (both civilians and members of armed forces or groups) shall be consulted in the planning, design, implementation and monitoring and evaluation of all DDR processes as key stakeholders, rather than presented with a DDR process in which they had no influence. Principles on how to involve youth in planning processes in a non-tokenistic way can be found in section 7.4 of MOSAIC 6.20 on Children, Adolescents, Youth and Small Arms and Light Weapons. No matter how youth are involved, safety of youth and do no harm principles should always be considered when engaging them on sensitive topics such as association with armed actors.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "0abe5612-19c8-42e6-a4aa-fb0f4268daee", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 12, + "Paragraph": "5.1 Gender responsive and transformative DDR processes for female ex-combatants, females formerly associated with armed forces or groups and female dependents shall be gender-responsive and gender-transformative. To ensure that DDR processes reflect the differing needs, capacities, and priorities of young women and girls, it is critical that gender analysis is a key feature of all DDR assessments and is incorporated into in all stages of DDR (see IDDRS 3.11 on Integrated Assessments and IDDRS 5.10 Women, Gender and DDR for more information). Young women and girls are often at great risk of gender-based violence, including conflict related sexual violence, and hence may require a range of gender-specific services and programmes to support their recovery. Women\u2019s specific health needs, including gynaecological care should be planned for, and reproductive health services, and prophylactics against sexually transmitted infections (STI) should be included as essential items in any health care packages (see IDDRS 5.60 on HIV/AIDS and DDR and IDDRS 5.70 on Health and DDR). With the exception of identified child dependents, young women and girls shall be kept separately from men during demobilization processes. Young women and girls (and their dependents) should be provided with gender-sensitive legal assistance, as well as support in securing civil documentation (i.e., personal ID, birth certificate, marriage certificate, death certificate, etc.), if and when relevant. An absence of such documentation can create significant barriers to reintegration, access to basic services such as health care and education, and in some cases can leave women and children at risk of statelessness. Young women and girls often face different challenges during the reintegration process, facing increased stigma, discrimination and rejection, which may be exacerbated by the presence of a child that was conceived during their association with the armed force or armed group. Based on gender analysis which considers the level of stigma and risk in communities of return, DDR practitioners should engage with communities, leveraging women\u2019s civil society organizations, to address and navigate the different cultural, political, protection and socioeconomic barriers faced by young women and girls (and their dependents) during reintegration. The inclusion of young women and girls in DDR processes is central to a gender- transformative approach, aimed at shifting social norms and addressing structural inequalities that lead young women and girls to engage in armed conflict and that negatively affect their reintegration. Within DDR processes, a gender-transformative approach shall focus on the following: Agency: Interventions should strengthen the individual and collective capacities (knowledge and skills), attitudes, critical reflection, assets, actions and access to services that support the reintegration of young women and girls. Relations: Interventions should equip young women and girls with the skills to navigate the expectations and cooperative or negotiation dynamics embedded within relationships between people in the home, market, community, and groups and organizations that will influence choice. Interventions should also engage men and boys to challenge gender inequities including through education and dialogue on gender norms, relations, violence and inequality, which can negatively impact women, men, children, families and societies. Structures: Interventions should address the informal and formal institutional rules and practices, social norms and statuses that limit options available to young women and girls and work to create space for their empowerment. This will require engaging both female and male leaders including community and religious leaders.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "acd2d65d-43df-4bf8-91e4-f96039ddae27", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 13, + "Paragraph": "Prevention of recruitment and re-recruitment of youth Understanding the recruitment pathways of youth into armed forces and groups is essential for the development of effective (re-)recruitment prevention strategies. Prevention efforts should start early and take place continuously throughout armed conflict. Prevention efforts should be based on an analysis of the dynamics of recruitment and its underlying causes and include advocacy strategies that are directed at all levels of governance, both formal and informal. In recognition that youth are often recruited as children, and/or face similar \u2018push\u2019 and \u2018pull\u2019 risk factors, DDR practitioners should analyse the structural, social, and individual-level risk factors outlined in section 8 of IDDRS 5.20 on Children and DDR when designing and implementing strategies to prevent the (re-)recruitment of youth. DDR practitioners should also be aware that: Youth participation in armed conflict is not always driven by negative motivations. Volunteerism into armed groups can be driven by a desire to change the social and political landscape in positive ways and to participate in something bigger than oneself. Gender must be considered when considering reasons for youth engagement. Although an increasing number of young women and girls are involved in conflicts, particularly the longer conflicts continue, young men and boys are over-represented in armed forces and groups. This pattern is most often a result of societal gender expectations that value aggressive masculinity and peaceable femininity. While young women and girls often serve armed forces and groups in non- fighting roles and their contributions can be difficult to measure, their participation, reintegration and recovery is critical to peace building processes as marginalized women and girls remain at higher risk of (re)recruitment. Societal expectations may have implications for the roles of young women and men in conflict, as well as how they reintegrate following conflict (see IDDRS Module 5.10 Gender and DDR). It is important to understand the drivers for recruitment and re- recruitment, including the different challenges that male and female youth may experience.; CVR and community-based reintegration programmes can be useful in preventing the (re-) recruitment of youth (see section 7.4 and IDDRS 2.30 on Community Violence Reduction and IDDRS 4.30 on Reintegration); Young people can play a crucial role in preventing the spread of rumours that may fuel recruitment and armed conflict, particularly through social media. Different youth networks and organizations may use their connections to fact-check rumours and then spread corrected information to their communities; \u2018Safe spaces\u2019 that may take the form of youth centres or other contextually appropriate and gender sensitive form are recommended to be created as a place for young people to interact with each other. Centres that allow youth to meet off the streets and experience non-violent excitement and social connection can provide alternatives to joining armed forces or groups, offer marginalized youth a space where they feel included, and provide spaces to educate youth about the realities of life in armed groups. These centres can also help with training and employment efforts by, for example, organizing job information fairs and providing referrals to employment services and counselling. Informal youth drop-in centres may also attract young former combatants who are vulnerable to re-recruitment, and who did not go through DDR because of fear or misinformation, or because they managed to escape and are looking for help by themselves. Well-trained mentors who act as role models should manage these centres; Interaction between different youth organizations, networks and movements as well as youth centres, platforms and councils or others similar entitiescan provide opportunities to build trust between members of different communities. DDR practitioners should support programmes that encourage young people to initiate spaces that form bridges across conflict lines at community and state levels.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "25a2f361-ef70-4eeb-bd14-ba53adfc9efd", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 14, + "Paragraph": "Youth-focused approaches to DDR It is neither possible nor advisable to design and implement DDR processes for all young people in the same way. For youth between the ages of 15 to 17, the guidance outlined in section 7 of IDDRS 5.20 on Children and DDR shall be followed. However, elements of the guidance in this section, which focuses on youth aged 18 to 24, may also be applicable.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 0, + "Must": 0 + }, + { + "ID": "ae87a7d7-4bc1-4adf-a399-a8b2afe18631", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 15, + "Paragraph": "DDR Programmes DDR programmes consist of a set of related measures, with a particular aim, falling under the operational categories of disarmament, demobilization and reintegration. DDR programmes require certain preconditions, such as the signing of a peace agreement, to be viable (see IDDRS 2.10 on The UN Approach to DDR). Personnel Youth-focused DDR programmes should include technical personnel and local staff with experience in working on youth and gender issues in order to ensure that explicit needs are identified and addressed from an early stage of engagement. This should be expressed either through distinct roles or as a function of an existing role and developed into relevant terms of reference. For example, the disarmament team should include a national youth specialist. Disarmament and demobilization sites During disarmament or demobilisation processes youth should be screened for age, following age assessment guidance found in Annex B of IDDRS 5.20 on Children and DDR. Youth, under the age of 18, should be separated from adults. With the exception of young child dependants who are with their caregivers, female youth participating in DDR programmes should, at a minimum, be accommodated in a female only section and, where possible, housed in female only facilities along with other female ex-combatants and females associated with armed forces or groups. Further guidance can be found in IDDRS 4.10 on Disarmament, IDDRS 4.20 on Demobilization, and IDDRS 5.10 on Women, Gender and DDR Profiling Even before disarmament begins, a general profile of the potential participants and beneficiaries of a DDR programme should be developed in order to inform later reintegration programming. The following data should be collected: demographic composition of participants and beneficiaries, education and skills, special needs, areas of return, expectations and security risks. To the extent possible, a random and representative sample should be taken, and the data gathered should be disaggregated by age and gender (see IDDRS 4.30 on Reintegration). During disarmament and demobilization, ex-combatants and persons formerly associated with armed forces or groups should be registered and more comprehensive profiling should take place (see IDDRS 4.20 on Demobilization). This profiling should be used, at a minimum, to identify obstacles that may prevent youth from full participation in a DDR programme, to identify the specific needs and ambitions of youth, and to devise protective measures for youth. For example, profiling may reveal the need for extended outreach services to families to address trauma, distress, or loss, and increase their ability to support returning youth. The registration and profiling of youth should include an emphasis on better understanding their reasons for engagement, aspirations for reintegration, education and technical/professional skill levels and major gaps, health-related issues that may affect reintegration (including psychosocial health), family situation, economic status, and any other relevant information that will aid in the design of reintegration solutions that are most appropriate for youth. A standardized questionnaire collecting quantitative and qualitative data from youth ex-combatants and youth formerly associated with armed forces or groups should be designed. This questionnaire can be supported by conducting qualitative profiling: assessing life skills and skills learned during armed service (for example, leadership, driving, maintenance/repair, construction, logistics) which their record often does not reflect (see Annex B for Sample Profiling Questions to Guide Reintegration). Medical health screening During demobilization, individuals shall be directed to a doctor or medical team for health screening. Both general and specific health needs shall be assessed. Given their age and increased risk factors, youth shall be provided with basic specialized attention in the areas of reproductive health and STIs, including voluntary testing and counselling for HIV/AIDS (see IDDRS 5.60 on HIV/AIDS and DDR and IDDRS 5.70 on Health and DDR). Female medical personnel shall be made available for women and girls. In addition, screening for mental health and psychosocial support needs should be available. Plans for how to protect personal health information shall also be made. Pre-discharge awareness raising The transition from military to civilian life can be extremely difficult and stressful for youth who are ex-combatants or persons associated with armed forces or groups. These young men and women often lack experience in navigating civilian systems or processes such as finding accommodation, accessing services and engaging in civilian life. Pre-discharge awareness raising can be a critical component in ensuring a smooth initial transition and to begin to prepare youth for civilian life. As such, specialized sensitization programmes should be developed for youth to address the various concerns specific to this group. These programmes should take into account specific gender differences such as addressing societal expectations (e.g., for males to be the primary breadwinner, for females to fulfil traditional gender roles) and risks of stigmatization/rejection. However, they should also be designed to prepare youth for their reintegration, including beginning to raise and where appropriate address issues such as social norms and how to resolve disagreements and disputes non-violently. Given that youth may have been socialized into violence during the period they were associated with an armed force or group, longer-term reintegration support is necessary. Sensitization should therefore focus on helping youth find solutions to the challenges they may face on their return, rather than purely identifying those challenges.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "21de2667-160f-47ec-ad7e-3b278f972107", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 14, + "Paragraph": "Reintegration Reintegration support can be provided as part of a DDR programme, or when the preconditions for a DDR programme are not in place (see IDDRS 2.10 on The UN Approach to DDR). For youth 15-17, reintegration support can be provided at any time (see IDDRS 5.20 on Children and DDR) The guidance provided in this section is applicable to both scenarios. Reintegration is a complex mix of economic, social, political and personal factors, all of which work together. While the reintegration of youth ex-combatants and youth formerly associated with armed forces or groups may depend, in part, on their successful transition into the world of work, if youth retain deep-rooted grievances due to political marginalization, or face significant, unaddressed psychosocial distress, or are experiencing ongoing conflict with their family, then they are extremely unlikely to be successful in making such a transition. Additionally, if communities and other stakeholders, including the State, do not recognize or value young people\u2019s contributions, expertise, and opinions it may increase the vulnerability of youth to re-recruitment. Youth-focused reintegration support should be designed and developed in consultation with youth. From the beginning, programme components should address the rights, aspirations, and perspectives of youth, and be as inclusive, multisectoral, and long term as is feasible from the earliest phases. Mental health and psychosocial support and special care Mental health and psychosocial support needs and capacities should be identified during the profiling survey undertaken during demobilization (see above) and appropriate support mechanisms should be established to be implemented during reintegration. When necessary, demobilized youth should be supported through extended outreach mental health and psychosocial support services. This may include individual, group or family therapy, or training in various community-based psychosocial support and psychological first aid techniques. It may require recruitment of mental health or psychosocial support professionals as staff or outsourcing to local service providers or civil society. Local providers can also help address potential stigmatization relating to mental health and psychosocial support. All DDR participants and beneficiaries requiring and/or requesting mental health or psychosocial support should have access to such support. Programme staff must ensure that appropriate protections are put in place and that any stigmatization is effectively addressed. DDR practitioners should consider the utility of a variety of innovative strategies to help young people deal with trauma. In some contexts, for example, music and theatre have been used to spread information, raise awareness and empower youth (e.g., \u2018theatre of the oppressed\u2019). Sports and cultural events can strongly attract young people while also having great social benefits. DDR practitioners should be aware that the cultural sector can also provide employment. Youth radio can be an excellent way of allowing youth to communicate and engage with each other and DDR practitioners should consider supplying related equipment and professional trainers. Radio can reach and inform many people and is accessible even to difficult-to-reach groups. Rural cinemas may also serve as an interactive activity in which youth can participate. Such initiatives may benefit wider social cohesion. Some of these strategies could result in new businesses run by both civilian youth and youth who are former members of armed forces or groups. This may help to bring youth together and provide/strengthen support networks. Mental health and psychosocial support interventions should be planned to respond to specific gender needs. Female youth ex-combatants may face several distinct challenges that affect their mental and psychosocial health in different ways. Specific experience of conflict (for e.g., forced sexual activity, childbirth, abortion, desertion by \u2018bush husbands\u2019) and of reintegration (e.g., rejection by family and community due to involvement in socially unacceptable activities for a female, lack of access to specific employment opportunities, and greater care-giver duties) may create a subset of mental health and psychosocial support needs that the programme should address. Likewise, young male ex-combatants may face psychosocial difficulties associated with their conflict experience (e.g., perpetrator and victim of sexual violence, extreme violence) and reintegration (e.g., high levels of post-traumatic stress, appetitive aggression, and notions of masculinity and societal expectation). The capacity of the health and social services sectors to assist youth with mental health and psychosocial support should be improved. Training of trainers in psychological first aid and other community-based techniques can be particularly useful, especially in the short to medium-term. However, longer term planning for the health and social services sectors is required. Health Youth reintegration programmes should build on healthcare provided during the demobilization process to support youth to address the various health issues that may negatively impact their successful reintegration. These health interventions should be planned as a distinct component of reintegration programming rather than as ad hoc support. For more information, see IDDRS 5.70 Health and DDR. Disability Conflict-related disability can represent a significant barrier to reintegration for youth who are former members of armed forces or groups. As well as having to cope with the pain and difficulty of living with a disability, it can have a disruptive influence on employment and social engagement. Moreover, individuals with disabilities can be extremely hard to access and, as a result, have often been overlooked and excluded from meaningful reintegration support. Support for disabled youth ex- combatants and persons formerly associated with armed forces and groups should be informed by the Convention on the Rights of Persons with Disabilities (CPRD) (see IDDRS 5.80 on Disability- Inclusive DDR). Based on the principles of non-discrimination, inclusion, participation and accessibility, compliance with the CPRD enables DDR programmes to be more inclusive of young former members of armed forces and groups with disabilities and responsive to their specific and unique needs. While young ex-combatants and persons formerly associated with armed forces or groups with disabilities should be supported through innovative employment and social protections initiatives (e.g., pensions, housing, compensation funds, land, etc.), medical and physical rehabilitation support should also be a feature of reintegration, or at the least, effective referral for necessary support. HIV/AIDS Educating young people about HIV and AIDS and teaching them skills in negotiation, conflict resolution, critical thinking, self-awareness, decision-making and communication improves their self- confidence and ability to make informed choices about their own reproductive health and to keep themselves safer and healthier. Since the involvement of parents, extended families, communities, schools and peers is vital in guiding and supporting young people to make safe choices about their health and well-being, DDR practitioners should consult with agencies involved in HIV prevention strategies and ensure that any health component of DDR works together with other community-based strategies to avoid transmission of HIV and to care for those infected with HIV or who are AIDS patients. Studies have shown that a consistent, positive, emotional relationship with a caring adult helps young people feel safe and secure, allowing them to develop the resilience needed to manage challenges in their lives and to protect their sexual well-being. Mentors in DDR training programmes should therefore be trained as educators and counsellors on HIV. Young women are much more likely to be infected with HIV than young men, especially when they live in conditions of poverty, are exploited by older men, or carry out sex work to survive. Specific interventions to reduce the vulnerabilities of young women to sexually transmitted infections (STI\u2019s) should be considered to address this risk and should include young men, given the role that they may play in transmission. Respect for each other can protect both young men and young women from the dangers of forced or unwanted sex and enable them to feel comfortable discussing sexual matters and negotiating safety and protection. Youth-friendly services within reintegration programmes should offer treatment for STI\u2019s and help young people access sexual and reproductive health information and services. Voluntary and confidential HIV counselling and testing services allow young people to find out their HIV status and understand safe ways of behaving, whether they are infected or not (see IDDRS 5.60 on HIV/AIDS and DDR). Drug and alcohol addiction Many youths may have habitually taken or been given drugs as combatants. In some war zones, commanders routinely give drugs to youngsters to make them dependent on the group, more obedient, and reduce their resistance to committing violent acts or crimes. At the end of the conflict, some youth may fall into drug and alcohol abuse as a coping mechanism. Reintegration programmes should make a particular effort to deal with the issue of the harmful use of drugs and alcohol by young combatants, including through the provision of drug/alcohol abuse treatment and/or the provision of referral services. In many countries, the use of such substances seriously undermines the effective implementation of youth employment and reintegration programmes. If young combatants are provided with money to start their businesses while they are not fully detoxed and rehabilitated from drugs they were using during combat, their reintegration is less likely to be successful. A fear that ex-combatants are habitual drug users is also an important reason why employers may be unwilling to recruit these individuals (also see IDDRS 5.70 on Health and DDR). Life skills Life skills represent a key aspect of reintegration. Youth face greater levels of responsibility than children but may have had their education or personal development interrupted due to armed conflict. Youth may be expected to work, support family, and take on leadership roles for which they may not be prepared. For female youth, strengthening life skills can facilitate the development of mechanisms to help overcome societal pressures and obstacles, positively influence the role of women in peacebuilding, and ensure that any elevation in their position during the conflict is not lost in civilian life. For male youth, improved life skills can help address negative aspects of contextual notions of masculinity and increase their ability to resolve conflict in non-violent ways. Investment in life skills development for all youth must be considered of critical importance for DDR practitioners. This should be seen as a key reintegration strategy and should be mainstreamed throughout all the main components of reintegration programming. Examples of the type of life skills that may be developed through reintegration support are outlined in Table 1 below. When reintegration is being supported as part of a DDR programme, the life skills to be developed should be determined by the findings from the profiling survey conducted during demobilization. Education A young person\u2019s level of education will often determine whether he or she makes a successful transition into the world of work. There is also evidence that keeping young people in school slows the transmission of HIV/AIDS and has other mental health and psychosocial benefits for youth affected by armed conflict (see IDDRS 5.60 on HIV/AIDS and DDR). Although a lack of primary education is normally a problem that only affects younger children, in an increasing number of conflict-affected countries, low literacy has become a major problem among youth. Time spent with an armed force or group results in a loss of educational opportunities. This in turn can create barriers to socioeconomic (re)integration, as youth are often faced with pressure to provide for themselves and their families. In contrast, a return to education can help to foster a sense of normalcy, including social interaction with other students, that assists with other elements of reintegration. As explained in detail in IDDRS 5.20 on Children and DDR, when transitioning from military to civilian life, youth may be reluctant to resume formal basic education because they feel embarrassed to attend schools with children of a much younger age, or because their care-giving responsibilities are simply too heavy to allow them the time to study without earning an income. Costs can be prohibitive, and older youth may be pressured into employment. For those youth who do return to education, many experience diminished educational attainment. This may be due to an inability to concentrate because of the trauma they experienced, or due to the absence of teachers with the experience and capacity to deal with the obstacles to learning that they face. Obstacles to the education of youth who are ex-combatants and persons associated with armed forces or groups must be overcome if their reintegration is to be successful. Youth should not feel stigmatized because they lost the opportunity to acquire an education, served in armed forces or groups, became refugees, or were not able to attend school for other reasons. Youth should also not be prevented from attending school due to costs, or because they are parents or hold other responsibilities (e.g., main household earner). The best solution may be to provide youth who have missed out on education with Accelerated Learning Programmes (ALP), which are designed and tailored for older learners and that are compatible with and recognized by the formal system of education (see section 7.9.4 in IDDRS 5.20 on Children and DDR). This may require the development of creative modalities for the provision of catch-up education in order to remain sensitive to the needs of youth, overcome obstacles, and maximize accessibility. For example: Begin education (basic literacy, numeracy and primary education) during demobilization and begin youth on a trajectory that will enable easier integration into formal education. Develop education programmes for different subsets of youth who are former members of armed forces and groups to best take into account their ability to learn and their level of development and maturity (e.g., through remedial education). Provide initial bridging education in separate facilities (for a short time only) to build up to a minimal level of educational attainment before entering mainstream classes. Train and mentor teachers in the provision of education to vulnerable, at-risk youth. Train teachers to promote peaceful coexistence and adapt curricula accordingly. Provide child-care facilities at all schools offering education for youth, to allow young mothers and youth who have responsibilities for dependents to attend. Childcare should be free and include a feeding/nutritional programme. Deliver vocational training on a part-time basis, so that it is possible to use the rest of the week for regular catch-up education. The mix of education and vocational training provides former combatants with a broader basis for finding long-term employment than simple vocational training. This system has the additional advantage of increasing the number of places available at training centres, which exist only in a limited number, as trainees will only attend two half-days of training a week, allowing many more people to be trained than if only one group attended full-time. Vocational training Vocational training can play a key role in the successful reintegration of young ex-combatants and persons formerly associated with armed forces or groups by increasing their chances to effectively participate in the labour market. By providing youth with the means to acquire \u2018employable skills,\u2019 vocational training can increase self-esteem and build confidence, while helping young people to (re)gain respect and appreciation from the community. Most armed conflicts result in the disruption of training and economic systems and, because of time spent in armed forces or groups, many young ex-combatants and persons associated with armed forces and groups do not acquire the skills that lead to a job or to sustainable livelihoods. At the same time, the reconstruction and recovery of a conflict-affected country requires large numbers of skilled and unskilled persons. Training provision needs to reflect the balance between demand and supply, as well as the aspirations of youth DDR participants and beneficiaries. DDR practitioners should develop strong networks with local businesses and agriculturalists in their area of operation as early as possible to engage them as key stakeholders in the reintegration process and to enhance employment and livelihood options post-training. Partnerships with the private sector should be established early on to identify specific employment opportunities for youth post-training. This could include the development of apprenticeship programmes (see below), entering into Memoranda of Understanding (MOUs) with local chambers of commerce or orientation events bringing together key business and community leaders, local authorities, service providers, trade unions, and youth participants. DDR practitioners should explore opportunities to collaborate with vocational training institutes to see how they could adapt their programmes to specifically cater for demobilized youth. Employers\u2019, agriculturalists, and trade unions are important partners, as they may identify growth sectors in the economy, and provide assistance and advice to vocational training agencies. They can help to identify a list of national core competencies or curricula and create a system for national recognition of these competencies/curricula. Employers\u2019 organizations can also encourage their members to offer on-the-job training to young employees by explaining the benefits to their businesses such as increased productivity and competitiveness, and reduced job turn-over and recruitment expenses. Systematic data on the labour market and on the quantitative and qualitative capacities of training partners may be unavailable in conflict-affected countries. Engagement with businesses, agriculturalists, and service providers at the national, sub-national and local levels is therefore vital to fill these knowledge gaps in real-time, and to sensitize these actors on the challenges faced by youth ex-combatants and persons formerly associated with armed forces and groups. DDR practitioners should also explore opportunities to collaborate with national and local authorities, other UN agencies/programmes and any other relevant/appropriate actors to promote the restoration of training facilities and institutions, apprenticeship education and training programmes, and the capacity building of trainers. For youth who have little or no experience of decent work, vocational training should include a broad range of training and livelihood options to provide young people with choice and control over decision-making that affects their lives. In rural settings, agricultural and animal husbandry, veterinary, and related skills may be more valuable and more marketable and should not be ignored as options. Specifically, consideration should be given to the type of training that female youth would prefer, rather than limiting them to training for roles that have traditionally been associated with females . The level of training should also match the need of the local economy to increase the probability of employment, so that the skills and expectations of youth match labour market needs, and training modalities should be developed to most appropriately reflect the learning needs of youth deprived of much of their schooling. As youth may have experienced trauma or loss, mental health and psychosocial support should be available during training to those who need it. Vocational training modalities should also specifically consider those with dependants (particularly young women) to enable them sustained access to training programmes. This may include supporting access to social protection measures such as kindergarten or other forms of childcare. In addition, it is important to understand the motivations and interests of young people as part of facilitating a match of training with the local economy needs. Young people require learning strategies that allow them to learn at their own pace. Learning approaches should be interactive and utilize appropriate new technologies, particularly when attempting to extend skills training to hard-to-reach youth. This may include digital resources and eLearning, as well as mobile skills-building facilities. The role of the trainer involved in these programmes should be that of a facilitator who encourages active learning, supports teamwork and provides a positive adult \u2018role model\u2019 for young participants. Traditional supply-driven and instructor-oriented training methods should be avoided. Where possible, and in order to prepare young people with no previous work experience for the highly competitive labour market, vocational training should be paired with apprenticeship and/or on-the-job training opportunities. Trainees can then combine the skills they are learning with practical experience of norms and values, productivity and competition in the world of work. DDR practitioners should also plan staff development activities that aim at training existing or newly recruited vocational trainers in how to address the specific needs and experiences of young DDR participants and beneficiaries. Youth ex-combatants and persons formerly associated with armed forces or groups can experience further frustration and hopelessness if they do not find a job after having been involved in ineffective or poorly targeted training programme. These feelings can make re-recruitment more likely. One of the clearest lessons learned from past DDR programmes is that even after training, young combatants often struggle to succeed in weak economies that have been damaged by war, as do adults. Businesses owned by former members of armed forces and groups regularly fail due to market saturation, competition with highly qualified people already running the same kinds of businesses, limited experience in business start-up, management and development, and because of the very limited cash available to pay for goods and services in post-war societies. Youth may also be in competition for limited job opportunities with more experienced adults. To address these issues, reintegration programmes should more effectively empower youth by combining several skills in one course, e.g., home economics with tailoring, pastry or soap- making. This is because possession of a range of skills greatly improves the employability of young people. Also, providing easy-to-learn skills such as mobile phone repair makes young people less vulnerable and more adaptable to rapidly changing market demands. Together the acquisition of business skills and life skills (see above) can help young people become more effective in the market. Depending on the context, agricultural and animal husbandry, veterinary, and related skills should be considered. Training demobilized youth in trades they might identify as their preference should be avoided if the trades are not required in the labour market. The feeling of frustration and helplessness that might have caused people to take up arms in the first place only increases when they cannot find employment after training and could increase the risk of re-recruitment. Training and apprenticeship programmes should be adapted to young people\u2019s abilities, interests and needs, to enable them to complete the programme, which will both boost their employment prospects and bolster their self- confidence. A commitment to motivating young people to realize their potential is a vital part of successful programming and implementation. This can be achieved through greater involvement of both youth participants and the business community in reintegration programming and design. This can enable a more realistic appreciation of the economic context, the identification of interesting but non-standard alternatives (so long as they can lead to sustainable job prospects or livelihoods), and the development of initial relationships. Effective career or livelihood counselling will be central to this process, and it is therefore necessary to recruit DDR staff with skills not only in vocational and technical training provision, but also in working with youth. Where such capacities are not evident it is important to invest in capacity development before DDR staff make contact with programme participants. Employment services Vocational training should be accompanied by high quality employment counselling and livelihood or career guidance. Young people who have been engaged with an armed force or armed group may have no experience of looking for employment, no professional contacts, and may not know what they can do or even want to do. Employment counselling, career guidance and labour market information that is grounded in the realities of the context can help youth ex-combatants and youth formerly associated with an armed force or group to: manage the change from the military to civilian life and from childhood to adulthood; understand the labour market; identify opportunities for work and learning; build important attitudes and life skills; make decisions; plan their career and life. Employment counselling and career and livelihood guidance should match the skills and aspirations of youth who have transitioned to civilian status with employment or education and training opportunities. Counselling and guidance should be offered as early as possible (and at an early stage of the DDR programme if one exists), so that they can play a key role in designing employment programmes, identifying education and training opportunities, and helping young ex- combatants and persons formerly associated with armed forces or groups make realistic choices. Female youth and youth with disabilities should receive tailored support to make choices that appropriately reflect their wishes rather than being pressured into following a career path that fits with social norms. This will require significant work with service providers, employers, family and the wider community to sensitize on these issues, and may necessitate additional training, capacity building and orientation of DDR staff to ensure that this is done effectively. Employment counsellors should work closely with the business community and youth both before and during vocational training. Employment services including counselling, career guidance, and directing young people to the appropriate jobs and educational institutions should also be offered to all young people seeking employment, not only those previously engaged with armed forces or groups. Such a community-based approach will demonstrate the benefit of accepting returning former members of armed forces and groups into the community. Employment and livelihood services must build on existing national structures and are normally under the control of the ministry of labour and/or youth. DDR practitioners should be aware of fair recruitment principles and guidelines 3 and how they may apply to a DDR context when seeking to promote employment through both public employment services and private recruitment agencies. Public works programmes Public works programmes aim to build or rehabilitate public/community assets and infrastructure that are vital for sustaining the livelihoods of a community. Examples are the rehabilitation of maintenance of roads, improving drainage, water supplies and sanitation, demining or environmental work including the planting of trees (see IDDRS 4.20 on Demobilization). Public works programmes can be easily designed to create job opportunities for youth who are community members and/or former members of armed forces and groups. There is always urgent work to be done in priority sectors \u2014 such as essential public facilities \u2014 and geographical areas, especially those most affected by armed conflict. Job-creation schemes may provide employment and income support and, at the same time, develop physical and social infrastructure. Such schemes should be designed to promote the value-chain, exploring the full range of activities needed to create a product or services, and should make use of locally available resources, whenever possible, to boost the sustainable economic impact. Although these programmes offer only a limited number of long-term jobs, they can provide immediate employment, increase the productivity of low-skilled youth and help young participants gain work experience that can be critical for more sustainable employment. A further key impact is that they can assist in raising the social status of youth former members of armed forces and groups from individuals who may be perceived as \u201cdestroyers\u201d to individuals who are considered \u201cconstructors\u201d. Chosen schemes can be part of special reconstruction projects to directly benefit youth, such as training centres, sports facilities, health facilities, schools, or places where young people can engage in local politics or play and listen to music. Such projects can be developed within the local construction industry and assist groups of youth to become small contractors. Community-based employment provides an ideal opportunity to mix young former members of armed forces and groups with other youth, paving the way for social reintegration, and should be made available equally to young women and men. Where possible, public works programmes shall be implemented immediately after young people transition from military to civilian status. Care must be taken to ensure that safe labour standards are prioritized, and that youth are given options in terms of the type of work available to them, and not forced into physically demanding work. The creation of employment-intensive work for youth should include other components such as flexible on-site training, mentoring, community services and psychosocial care (where necessary) to support their reintegration into society. Wage incentives Employers may be hesitant to hire youth who are former members of armed forces or groups for a wide range of reasons. These reasons may include distrust, image/perceptions, as well as issues of discrimination linked to ethnicity, sociocultural background, political and/or religious beliefs, gender, etc. To help overcome barriers and create opportunities, employers should be given incentives to hire youth or create apprenticeship places. For example, construction companies could receive certain DDR-related contracts on the condition that their labour force includes a high percentage of youth or even a specific group of youth, such as female youth who are ex-combatants. Wage subsidies and other incentives, such as tax exemptions for a limited period, can also be offered to employers who hire young former members of armed forces and groups. This can, for example, pay for the cost of initial training required for young workers. These subsidies can be particularly useful in enabling certain groups of youth to access the labour market (e.g., ex-combatants with disabilities), or areas of the labour market that may traditionally be off limits (e.g., female ex-combatants with a desire to work in traditionally male dominated areas). There are many schemes for sharing initial hiring costs between employers and government. The main issues to be decided are the length of the period in which young people will be employed; the amount of subsidy or other compensation employers will receive; and the type of contracts that young people will be offered. Employers may, for example, receive the same amount as the wage of each person hired or apprenticed. Other programmes combine subsidized employment with limited-term employment contracts for young people. Work training contracts may provide incentives to employers who recruit young former members of armed forces and groups and provide them with on-the-job training. Care should be taken to make sure that this opportunity includes youth who are former members of armed forces and groups, in order to incentivize employers to work with a group that they may have otherwise been wary of. Furthermore, DDR practitioners should develop an efficient monitoring system to make sure that training, mentoring and employment incentives are used to improve employability, rather than turn youth into a cheap source of labour. Trade unions Trade unions should be encouraged to identify and share examples of good practice for organizing and recruiting young people. These include youth-recruiting-youth methods, networks of young trade union activists for sharing experiences, and other informal networks for exchanging information. Youth committees and working groups from different unions should be set up in order to share information, identify the needs and problems of young people and implement relevant policies and strategies. Young members can learn from other unions about how to open up job opportunities and improve working conditions. Tripartite consultations and collective bargaining can be used by unions to pressure governments and employers to deal with questions of youth employment and make youth issues part of policies and programmes. It is also a good idea to work with governments and workers\u2019 organizations to develop and implement strategies for youth reintegration that everyone involved supports. Decent work for youth can be made part of collective agreements negotiated by unions. Unions can also provide advice on workplace issues and proposed legislation, support and encourage the provision of social protection for both young people and adults, put pressure on employers and employers\u2019 organizations to prevent child labour, and make sure that young workers are informed about their rights and the role of trade unions. The private sector The private sector can play an important role in reintegration, not only through employers\u2019 organizations, but also because individual companies can contribute to the socioeconomic (re)integration of young people. There are a great many potential initiatives that the private sector can contribute to, ranging from strategic dialogue to high-risk arrangements. The private sector may sponsor scholarships and support education by, for example: sponsoring young people working toward higher qualifications that provide relevant skills for the labour market; sponsoring special events or school infrastructure, such as books and computers or other office equipment; and establishing meaningful traineeships that provide young people with valuable work experience and help them reintegrate into society. The private sector should also be encouraged to support young entrepreneurs during the critical first years of their new business. Large firms could introduce mentorship or coaching programmes, and offer practical support such as providing non-financial resources by allowing young people to use company facilities (internet, printer, etc.), which is a low-cost yet effective way of helping them to start their own businesses or apply for jobs. Volunteer work at a large business provides young entrepreneurs with valuable expertise, knowledge, experience and advice. This could also be provided in seminars and workshops. The private sector can also provide start-up capital, for example, by holding competitions to provide young people who develop innovative business ideas with start- up funding. Networks of small businesses run by young people should be helped to cooperate with each other and with other businesses, as well as with institutions such as universities and specialized institutions in particular sectors of the economy, so that they can better compete with large, well- established companies. They can cooperate and share the costs of buying more expensive equipment, as well as share experiences and knowledge. Public\u2013private partnerships can also assist youth who are former members of armed forces and groups, for e.g., by working together to provide employment service centres for young people. Training centres, job centres and microfinance providers should be linked to members of the private sector, be well informed of the needs and potential of youth, and adapt their services to help this group. Youth entrepreneurship As there is often severe competition in post-conflict labour markets, youth will often have very limited access to existing jobs. The large majority of youth will need to start their own businesses, in groups or individually. To increase their success rate, DDR practitioners should: develop young people\u2019s ability to deal with the problems they will face in the world of work through business development education. They should learn the following sets of skills: being enterprising \u2014 learning to see and respond to opportunities; business development skills \u2014 learning to investigate and develop a business idea; business management skills \u2014 learning how to get a business going and manage it successfully. develop the capacities of young entrepreneurs to manage businesses that positively contribute to sustainable development in their communities and societies and that do no harm. encourage business persons and agricultural leaders to support young (or young potential) entrepreneurs during the vital first years of their new enterprise by transferring their knowledge, experience and contacts to them. They can do this by providing on-the-job learning, mentoring, including them in their networks and associations, and using youth businesses to supply their own businesses. The more support a young entrepreneur receives in the first years of their business, the better their chances of creating a sustainable business or of becoming more employable. ensure business-focused DDR activities align with national priorities and strategies in order to maximise potential access to resources and government support. provide access to business training. Among several business training methods, Start Your Business, for start-ups, and Start and Improve Your Business (SIYB) help train people who train entrepreneurs and through this multiplier effect, reach a large number of unemployed or potential business starters. SIYB is a sustainable and cost- effective method that equips young entrepreneurs with the practical management skills needed in a competitive business environment. If the illiteracy rate among young combatants is very high, other methods are available, such as Grassroots Management Training.4 Youth entrepreneurship is more likely to be effective if supported by enabling policies and regulations. For example, efficient and fair regulations for business registration will help young people to start a business in the formal economy. Employers\u2019 organizations can play an important role in providing one-on-one mentoring to young entrepreneurs. Support from a mentor is particularly effective for young entrepreneurs during the first years of business start-up, since this is when youth enterprises tend to have high failure rates. It is important that youth themselves control the mentoring relationships they engage in to ensure these are formed on a voluntary basis and are positive in nature. Some youth may enjoy more formal structures, while for others an informal arrangement is preferable. Group-based youth entrepreneurship, in the form of associations or cooperatives, is another important way of providing decent jobs for youth ex-combatants and youth formerly associated with armed forces and groups. This is because many of the obstacles that young entrepreneurs face can be overcome by working in a team with other people. In recognition of this, DDR practitioners should encourage business start-ups in small groups and where possible there should be a balance between civilians and former members of armed forces and groups. DDR practitioners should empower these youth businesses by monitoring their performance and defending their interests through business advisory services, including them in employers\u2019 and workers\u2019 organizations, providing access to business development services and micro-finance, and creating a favourable environment for business development. A number of issues may also need to be tackled in relation to youth entrepreneurship, including: the need for investment in premises and equipment (a warehouse, marketplace, cooling stores, workplace, equipment); the size and nature of the local market (purchasing power and availability of raw materials); the economic infrastructure (roads, communications, energy); and the safety of the environment and of any new equipment. Given that such issues go beyond the scope of DDR, there should be direct links between DDR and other development initiatives or programmes to encourage national or international investments in these areas. Where possible, reintegration programmes should also source products and services from local suppliers. Microfinance for youth Microcredit remains an important source of financial help for people who do not meet the criteria for regular bank loans and has wide reaching benefits in terms of enhancing social capital and facilitating conflict resolution and reconciliation through cross-group cooperation. Reintegration programmes should take active steps to provide microfinance options. The success of microfinance lies in its bottom-up approach, which allows for the establishment of new links among individuals, NGOs, governments and businesses. Traditionally, youth have largely been denied access to finance. While some young people are simply too young to sign legal contracts, there is also a perception that youth ex-combatants and youth formerly associated with armed forces and groups are unpredictable, volatile, and therefore a high-risk group for credits or investments. These prejudices tend to disempower youth, turning them into passive receivers of assistance rather than enabling them to take charge of their own lives. Microfinance holds great potential for young people. Youth should be allowed access to loans within small cooperatives in which they can buy essential assets as a group. When the group members have together been able to save or accumulate some capital, the savings or loans group can be linked to, or even become, a microfinance institution with access to donor capital. Governments should assist youth to get credits on favourable terms to help them start their own business, e.g., by guaranteeing loans through microfinance institutions or temporarily subsidizing loans. In general, providing credit is a controversial issue, whether it aims at creating jobs or making profits. It is thus important to determine which lending agencies can best meet the specific needs of young entrepreneurs. With adequate support, such credit agencies can play an important role in helping young people to become successful entrepreneurs. Depending on the case, the credit can either be publicly or privately funded, or through a public-private partnership that would increase the buy-in of the local business community into the reintegration process. Microfinance programmes designed specifically for youth should be accompanied by complementary support services, including business training and other non-financial services such as business development services, information and counselling, skills development, and networking. The role of families and communities The reintegration of young former members of armed forces and groups is more likely to be successful they receive support from their families. The family unit provides critical initial needs (shelter, food, clothing, etc.) and the beginning of a social network that can be crucial to community acceptance and finding employment, both important factors in minimising the risk of re-recruitment and in successful, sustained reintegration. Youth-focused reintegration programmes should develop initiatives that promote family reintegration through preparing families for youth returns, providing support to families who welcome back youth who are reintegrating, and working with families and communities to come together to reduce potential stigma that the family may experience for welcoming back a former member of an armed force or group. After serving in armed groups or forces in which they had status and even power, youth are likely to experience a sudden drop in their influence in families and communities. A community- based approach that elevates the position of youth and ensures their social and political inclusion, is central to the successful reintegration of youth. Young men and women should be explicitly involved in the decision-making structures that affect the reintegration process, to allow them to express their specific concerns and needs, and to build their sense of ownership of post-conflict reconstruction processes. Youth-focused reintegration programmes should emphasise the identification and support of role models to provide leadership to all youth. This may include young women who are engaged in non-gender-traditional employment to demonstrate the possibilities open to young women and to provide mentoring support to others in training and employment choices. Equally, it may include young men who challenge gender norms and promote non-violent conflict management who can help to change attitudes towards gender and violence in both young men and women. Youth who have successfully transitioned from military to civilian life may serve as mentors to those who have more recently made the transition, preferably in a group setting alongside civilian youth so as to avoid stigma and isolation. Voice, participation and representation Political marginalization is a significant driving factor behind youth (re-)recruitment into armed forces and groups. Ensuring that youth have necessary and appropriate levels of voice and representation in their communities and nationally is a critical element of successful reintegration. Reintegration support should aim to create opportunities for young people\u2019s civic and political engagement at the local level, including strategies for ensuring the inclusion of youth former combatants and youth formerly associated with armed forces and groups in local decision-making processes. Programmatic collaboration with community-based organizations and NGOs engaging in political development initiatives (for e.g., political party capacity development and the establishment of youth parliaments) to identify and promote opportunities for youth engagement can be a useful way to develop this stream of work. At the national level, DDR practitioners should coordinate and collaborate with national youth organisations to help facilitate social relations with peers and opportunities to engage in youth-led political initiatives. This should be accompanied by the aforementioned life-skills, including civic education, which could be jointly attended by civilian youth, to ensure a conflict sensitive approach. Youth ex-combatants and youth formerly associated with armed forces and groups have the potential to play a significant, positive role in peace building. Reintegration programmes should therefore make significant resources available to promote youth as agents of change. Programmatic interventions seeking to promote the role of youth as peaceful agents of change might include: a training programme for youth (former members of armed forces and groups and otherwise) in political mediation, grassroots organization and advocacy. a youth-led community peace education programme utilising creative platforms (e.g. sport, music, visual arts, theatre and dance) to promote a culture of non-violence and peace a youth managed peer education and mentoring programme promoting equality, trust and thought-provoking learning on issues such as SGBV, social inclusion, violence prevention, climate change and sustainable development, among others. an activity reusing scrapped weapons for artistic and symbolic purposes could be included as a reintegration activity involving community youth in an effort to build confidence and connections between youth, as well as leave lasting messages for peace in communities. a small grants facility for youth (both former members of armed forces and groups and otherwise) supporting youth designed and implemented social programmes that have an articulated community benefit. a community-driven development facility that brings youth (both former members of armed forces and groups and otherwise) together with community leaders to identify, design and implement small infrastructure projects benefiting the community (and providing employment). a local-level political forum that enables youth to engagement in local decision-making processes and provides referral services for access to resources. a national dialogue process, coordinating with other relevant youth actors, to lobby for greater youth participation in the formal political process and give youth a seat at the table at local, sub- national and national levels. Such an approach should promote the inclusion of all youth, male and female, whether former members of armed forces or groups or not. However, it is critical that such interventions are youth owned and that it is the youth themselves who drive these initiatives forward. DDR practitioners and community leaders can work with local and national authorities, formal and informal, to help open up space for youth to pursue these activities. This might be by first engaging in joint activities that benefit the community and demonstrate the positive effect youth can have on the reconstruction process. This is important as Governments should be convinced of the \u2018added value\u2019 of youth involvement in reconstruction activities and of the positive reasons for investing in youth. After leaving armed forces and groups, youth may wish to retain some linkage with the political entity of the armed group to which they were previously affiliated. Every person has the legal right to freedom of political expression, which should be considered and supported at all stages of the planning and implementation of youth-focused DDR. DRR practitioners shall ensure that youth are not inadvertently prevented from freely expressing their rights.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "2e338f0f-033d-48b2-99be-712de5b66f65", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 33, + "Paragraph": "DDR support to mediation Young people often lack a structured platform and the opportunity to have their voice heard by decision makers, comprised mainly of the elder generation. For this reason, the process by which national level peace agreements are negotiated often provides very little space for young people to share their perspectives. To counteract this, youth often create their own youth forums and networks. In some settings, interaction between different youth networks has been used to encourage trust- building between different communities and to reduce the risk of escalation to armed conflict. Some young people also informally mediate conflicts at the community level. The likelihood that a peace agreement will be sustainable in the future depends on the engagement of young people, as the ultimate owners, implementers and stakeholders of the peace process. UN Security Council Resolution 2250 recognises this, urging Member States to increase inclusive representation of youth in decision making, including direct involvement in peace processes. While youth may have the energy, flexibility and time to work on peacebuilding they may also lack exposure to education, theory, technical skill and best practice around peacebuilding and mediation. They may also be vulnerable to being instrumentalized by spoilers or other political actors during peace processes. Where possible, DDR practitioners should support the empowerment of youth to act as agents of positive change by advocating for youth representation in peace processes and for spaces through which youth can apply creative approaches to conflict resolution. DDR practitioners should also invest in the capacity development of young women and men in mediation and dialogue, and aim to strengthen existing youth-led efforts. All youth empowerment efforts should be developed and designed in consultation with young people. Seeing youth as positive assets for society and acting on that new perception is vital to prevent alienation.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4520ba1c-d2b5-4d96-a3ef-c4049b03dcb4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 34, + "Paragraph": "Community violence reduction CVR programmes are bottom-up interventions that focus on the reduction of armed violence at the local level by fostering improved social cohesion and providing incentives to resist recruitment. CVR programmes may include an explicit focus on youth, including youth ex-combatants and youth formerly associated with armed forces and groups. In addition, CVR programmes may explicitly target individuals who are not members of an armed group, but who are at risk of recruitment by such groups. This may include youth who are ineligible to participate in a DDR programme, but who exhibit the potential to build peace and to contribute to the prevention of recruitment in their community. Wherever possible, youth should be represented in CVR Project Selection Committees and youth organizations should be engaged as project partners. In instances where CVR is due to be followed by support to community-based reintegration then CVR and community-based reintegration should, from the outset, be planned as a single and continuous programme. In addition, where safe and appropriate, children may be included in CVR programmes, consistent with relevant national and international legal safeguards, including on the involvement of children in hazardous work, to ensure their rights, needs and well-being are carefully accounted for. If the individuals being considered for inclusion in a CVR programme have left an armed group designated as a terrorist organization by the UN Security Council, then proper screening mechanisms and criteria shall be incorporated to identify (and exclude) individuals who may have committed terrorist acts in compliance with international law (for further information on specific requirements see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.50 on Armed Groups Designated as Terrorist Organizations). For further information on CVR, see IDDRS 2.30 on Community Violence Reduction.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "8ddd8a2c-81e3-47e7-bc0d-dbceade2e795", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 34, + "Paragraph": "Transitional weapons and ammunition management Transitional WAM is primarily aimed at reducing the capacity of individuals and groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives. In order to design effective transitional WAM measures targeting youth, it is essential to understand the factors contributing to the proliferation and misuse of weapons, ammunition and explosives. As outlined in MOSAIC 6.20 on Children, Adolescents, Youth and Small Arms and Light Weapons, armed violence puts youth at risk by threatening their security, health, education, wellbeing and development, both during and after conflict. By far the greatest risk of death and injury by gunshot is borne by young males aged 15 to 29. The risks to and behaviour of young men are often influenced by social and group norms related to masculinity and manhood. As young men constitute the primary victims and perpetrators of armed violence, they should play a central role in the development of transitional WAM initiatives. Equally, young women, both as victims and perpetrators can offer an alternative and no less important perspective. While it may not be possible to keep youth physically separate from weapons and ammunition in the context of a transitional WAM initiative (such as when youth are handing over weapons during a collection programme), such physical separation should be imposed to the extent possible in order to minimise risks. It should also be kept in mind that youth may be targeted by individuals, such as former commanders, who seek to discourage T-WAM initiatives. Special attention should therefore be given to ensuring their protection and security. The priorities and inputs of youth should be taken into account, as relevant, throughout the planning, design, implementation and monitoring and evaluation of transitional WAM initiatives. For further information, see IDDRS 4.11 on Transitional Weapons and Ammunition Management.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d46bf72e-dad5-47e7-a022-d6f83f14eac4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.30-Youth-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.30-Youth-and-DDR", + "PageNum": 35, + "Paragraph": "Monitoring and follow-up It is vital to monitor and follow-up with youth DDR participants and beneficiaries. For children under the age of 18 the guidance in IDDRS 5.20 should be followed. In developing follow-up monitoring and support services for older youth, it is critical to provide a platform for feedback on the impact of DDR (positive and negative) to promote participation and representation and give youth a voice on their rights, aspirations, and perspectives which are critical for sustainable outcomes. Youth should also be sensitized on how to seek follow-up support from DDR practitioners, or relevant government or civil society actors, linked to service provision as well as how to address protection issues or other barriers to reintegration that they may face. Criminal Responsibility and Accountability Treating all youth, in the same manner, irrespective of age, when it comes to criminal responsibility and accountability presents a challenge because the definition of youth includes children under the age of 18, who have the right to special protection through child justice mechanisms, as well as adults, who are subject to standard criminal processes. To be sure that children are afforded their rights and protection under law, where there is any question about whether the person is a child, an age assessment shall be conducted before any kind of criminal process, interrogation, or prosecution occurs. Any judicial proceedings for children shall respect internationally recognized juvenile justice and fair trial standards, with a focus on recovery and restorative justice in order to assist children\u2019s physical, psychological and social recovery.5 Where no separate juvenile justice system is in place, cases should be handled by civilian authorities who have special training in child-friendly procedures, rather than military or intelligence authorities. All judicial actions relating to children shall take place in the presence of the child\u2019s appointed legal representative or other appropriate assistance, whose role it is to protect the rights and interests of the child, and unless contrary to the best interests of the child, in the presence of the child\u2019s parents or legal guardians. Most youth will fall over the minimum age of criminal responsibility (recommended to be 14- 16 by the Committee on the Rights of the Child), and thus may be held liable for crimes that they commit. Nevertheless, children, as victims of recruitment and use, should not be deprived of their liberty, prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, consistent with Article 8.7 of the Paris Principles. National laws that criminalize child association effectively criminalize the child\u2019s status (associated) which results from an adult\u2019s criminal conduct (recruitment and use), and that violates the human rights of the child. Such laws should not apply to children. In addition, as for adults, expressions of support for particular groups, acts, or ideologies that do not rise to the level of legally defined crimes, should not constitute criminal offenses. Children should not be interrogated as a suspect or prosecuted due to the actual or alleged affiliation of a family member. With respect to children suspected of committing crimes, due consideration shall be given to children\u2019s right to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities, including for example, the right to legal representation, prioritizing the child\u2019s best interests, protections against self- incrimination, and support from their families (see IDDRS 5.20 Children and DDR for more guidance). Any processes for youth who were recruited and used by an armed force or group as children but who were demobilized as adults should consider their status as a child at the time of the alleged offense and the coercive environment under which they lived or been forced to act. For example, a youth who is demobilized as an adult, but became associated as a child and who is suspected of committing a crime before reaching the age of 18, should, be subject to the criminal procedure relevant for juveniles in the jurisdiction and the court should consider the fact that the individual was recruited as a child as a mitigating factor. If a youth is suspected of committing multiple offences, some before and some after he or she has reached 18 years of age, states should consider establishing procedures that allow the application of juvenile procedures in respect of all offences alleged to have been committed, when there are reasonable grounds to do so.6", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "2b865931-276a-42e0-814a-b84fafa1c764", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": null, + "Paragraph": "Summary This module is intended to assist operators and managers from other sectors who are involved in disarmament, demobilization and reintegration (DDR), as well as health practitioners, to understand how health partners, like the World Health Organization (WHO), United Nations (UN) Population Fund (UNFPA), Joint UN Programme on AIDS (UNAIDS), Inter- national Committee of the Red Cross (ICRC) and so on, can make their best contribution to the short- and long-term goals of DDR. It provides a framework to support cooperative decision-making for health action rather than technical advice on health care needs. Its intended audiences are generalists who need to be aware of each component of a DDR pro- cess, including health actions; and health practitioners who, when called upon to support the DDR process, might need some basic guidance and reference on the subject to help contextualize their technical expertise. Because of its close interconnections with these areas, the module should be read in conjunction with IDDRS 5.60 on HIV/AIDS and DDR and IDDRS 5.50 on Food Aid Programmes in DDR.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8abe1e52-9d56-4386-b315-cefa9d993663", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": null, + "Paragraph": "Module scope and objectives This module is intended to assist operators and managers from other sectors who are involved in DDR, as well as health practitioners, to understand how health partners can make their best contribution to the short- and long-term goals of DDR. It provides a framework to support decision-making for health actions. The module highlights key areas that deserve attention and details the specific challenges that are likely to emerge when operating within a DDR framework. It cannot provide a response to all technical problems, but it provides technical references when these are relevant and appropriate, and it assumes that managers, generalists and experienced health staff will consult with each other and coordinate their efforts when planning and implementing health programmes. As the objective of this module is to provide a platform for dialogue in support of the design and implementation of health programmes within a DDR framework, there are two intended audiences: generalists who need to be aware of each component of a DDR process, including health actions; and health practitioners who, when called upon to support the DDR process, might need some basic guidance and reference on the subject to help contex- tualize their technical expertise.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "045d7f86-4885-47e1-a67d-285c61069e71", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": null, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of the abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. 5.60 5.50 1.20 In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicated requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "4045dad8-7ef2-40c8-a444-d3252c9d3a60", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 4, + "Paragraph": "Introduction This module consolidates the lessons learned by WHO and its partners, including UNFPA, UNAIDS, ICRC, etc., in supporting DDR processes in a number of countries. UN technical agencies play a supportive role within a DDR framework, and WHO has a specific respon- sibility as far as health is concerned. The exact nature of this role may change in different situations, ranging from standards-setting to direct operational responsibilities such as con- tracting with and supervising non-governmental organizations (NGOs) delivering health care and health-related activities in assembly areas and demobilization sites, negotiating with conflicting parties to implement health programmes, and supporting the provision of health equipment and services in transit/cantonment areas. The priority of public health partners in DDR is: to assess health situations and monitor levels of risk; to co-ordinate the work of health actors and others whose activities contribute to health (e.g., food programmes); to provide \u2014 or to ensure that others provide \u2014 key health services that may be lacking in particular contexts where DDR programmes are operating; to build capacity within national authorities and civil society. Experience shows that, even with the technical support offered by UN and partner agencies, meeting these priorities can be difficult. Both in the initial demobilization phase and afterwards in the reintegration period, combatants, child soldiers, women associated with armed forces and groups, and their dependants may present a range of specific needs to which the national health sector is not always capable of responding. While the basic mech- anisms governing the interaction between individuals and the various threats to their health are very much the same anywhere, what alters is the environment where these interactions take place, e.g., in terms of epidemiological profile, security and political context. In each country where a DDR process is being implemented, even without considering the different features of each process itself, a unique set of health needs will have to be met. Nonetheless, some general lessons can be drawn from the past: In DDR processes, the short-term planning that is part of humanitarian interventions also needs to be built into a medium- to long-term framework. This applies to health as well as to other sectors;1 A clear understanding of the various phases laid out in the peace process in general and specified for DDR in particular is vital for the appropriate timing, delivery and targeting of health activities;2 The capacity to identify and engage key stakeholders and build long-term capacity is essential for coordination, implementation and sustainability.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "202bf315-34a7-4a60-aeb8-5edba9f1fc10", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 5, + "Paragraph": "Guiding principles Health action should always prioritize basic preventive and curative care to manage the entire range of health threats in the geographical area, and deal with the specific risks that threaten the target population. Health action within a DDR process should apply four key principles: Principle 1: Health programmes/actions that are part of DDR should be devised in coordi- nation with plans to rehabilitate the entire health system of the country, and to build local and national capacity; and they should be planned and implemented in cooperation and consultation with the national authorities and other key stakeholders so that resources are equitably shared and the long-term health needs of former combatants, women associated with armed groups and forces, their family members and communities of reintegration are sustainably met; Principle 2: Health programmes/actions that are part of DDR should promote and respect ethical and internationally accepted human rights standards; Principle 3: Health programmes/actions that are part of DDR should be devised after careful analysis of different needs and in consultation with a variety of representatives (male and female, adults, youth and children) of the various fighting factions; and services offered during demobilization should specifically deal with the variety of health needs presented by adult and young combatants and women associated with armed groups and forces; Principle 4: In the reintegration part of DDR, as an essential component of community- based DDR in resource-poor environments, health programmes/actions should be open to all those in need, not only those formerly associated with armed groups and forces.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "84495573-af5f-4095-976a-f883f5677d87", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 5, + "Paragraph": "Tensions between humanitarian and political objectives DDR programmes result from political settlements negotiated to create the political and legal system necessary to bring about a transition from violent conflict to stability and peace. To contribute to these political goals, DDR processes use military, economic and humani- tarian \u2014 including health care delivery \u2014 tools. Thus, humanitarian work carried out within a DDR process is implemented as part of a political framework whose objectives are not specifically humanitarian. In such a situation, tensions can arise between humanitarian principles and the establishment of the overall political\u2013strategic crisis management framework of integrated peace-building missions, which is the goal of the UN system. Offering health services as part of the DDR process can cause a conflict between the \u2018partiality\u2019 involved in supporting a political transition and the \u2018im- partiality\u2019 needed to protect the humanitarian aspects of the process and humanitarian space.3 It is not within the scope of this module to explore all the possible features of such tensions. However, it is useful for personnel involved in the delivery of health care as part of DDR processes to be aware that political priorities can affect operations, and can result in tensions with humanitarian principles. For example, this can occur when humanitarian programmes aimed at combatants are used to create an incentive for them to \u2018buy in\u2019 to the peace process.4", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f0539b3a-085e-4a50-a28c-a10531b935f1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 6, + "Paragraph": "Linking health action to DDR and the peace process A good understanding of the various phases of the peace process in general, and of how DDR in particular will take place over time, is vital for the appropriate timing and targeting of health activities. Similarly, it must be clearly understood which national or international institutions will lead each aspect or phase of health care delivery within DDR, and the coordination mechanism needed to streamline delivery. Operationally, deciding on the tim- ing and targeting of health interventions requires two things to be done. First, an analysis of the political and legal terms and arrangements of the peace proto- col and the specific nature of the situation on the ground should be carried out as part of the general assessment that will guide and inform the planning and implementation of health activities. For appropriate planning to take place, information must be gathered on the expected numbers of combatants, associates and dependants involved in the process; their gender- and age-specific needs; the planned length of the demobilization phase and its location (demobilization sites, assembly areas, cantonment sites, or other); and local capa- cities for the provision of health care services. Key questions for the pre-planning assessment: Second, the health sector should be represented in all bodies established to oversee DDR from the earliest stages of the process possible. Early inclusion is essential if the guiding principles described above are to be applied in practice during operations. In particular: It can ensure that public health concerns are taken into account when key planning decisions are made, e.g., on the selection of locations for pick-up points or other assem- bly/transit areas, on the level of services that will be established there, and on the best way of dealing with different health needs; It can advocate in favour of vulnerable groups; It will establish a political, legislative and administrative link with national authorities, which is necessary to create the space for health actions in the short and medium/long term. For example, appropriate support for the health needs of specific groups, such as girl mothers or the war-disabled, can be provided only if the appropriate legislative/ administrative frameworks have been set up and capacity-building begun; It will reduce the risk of creating ad hoc health services for former combatants, women associated with armed groups and forces, dependants and the communities to which they return. Health programmes in support of a DDR process can be highly visible, but they are seldom more than a limited part of all the health-related activities taking place in a country during a transition period; Careful cooperation with health and relevant non-health national authorities can result in the establishment of health programmes that start out in support of demobilization, but later, through coordination with the overall rehabilitation of the country strategy for the health sector, become a sustainable asset in the reintegration period and beyond; It can bring about the adoption at national level of specific health guidelines/protocols that are equitable, affordable by and accessible to all, and gender- and age-responsive. It should be seen as a priority to encourage the collaboration of international and national health staff in all areas of health-related work, as this increases local ownership of health activities and builds capacity.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "f299e831-15d8-42ad-ac49-14e77f8b11c5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 7, + "Paragraph": "Health and the sequencing of DDR processes The different aspects of DDR processes \u2014 disarmament, demobilization and reintegration \u2014 may not necessarily follow a fixed chronological order, and are closely interrelated. The extent of the contribution of health activities in each phase increases steadily, from assess- ment and planning to the actual delivery of health services. Health services, in turn, will evolve: starting by focusing on immediate, life-threatening conditions, they will at a later stage be required to support ex-combatants and those associated with them when they return to civilian life and take up civilian jobs as a part of reintegration. Figure 1 provides a simplified image of the general direction in which the health sector has to move to best support a DDR process. Clearly, health actions set up to meet the specific needs of the demobilization phase, which will only last for a short period of time, must be planned as only the first steps of a longer-term, open-ended and comprehensive reintegra- tion process. In what follows, some of the factors that will help the achievement of this long-term goal are outlined.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "5e669443-7ad3-4fb4-a82b-c56bbd98f4fc", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 7, + "Paragraph": "Health and the geographical dimensions of DDR The geography of the country/region in which the DDR operation takes place should be taken into account when planning the health-related parts of the operation, as this will help in the difficult task of identifying the stakeholders and the possible partners that will be involved, and to plan the network of fixed structures and outreach circuits designed to cater for first health contact and/or referral, health logistics, etc., all of which have to be organized at local, district, national or even international (i.e., possibly cross-border) levels. Health activities in support of DDR processes must take into account the movements of populations within countries and across borders. From an epidemiological point of view, the mass movements of people displaced by conflict may bring some communicable diseases into areas where they are not yet endemic, and also speed up the spread of outbreaks of diseases that can easily turn into epidemics. Thus, health actors need to develop appropriate strategies to prevent or minimize the risk that these diseases will propagate and to allow for the early detection and containment of any possible epidemic resulting from the popula- tion movements. Those whom health actors will be dealing with include former combatants, associates and dependants, as well as the hosting communities in the transit areas and at the final destinations. In cases where foreign combatants will be repatriated, cross-border health strategies should be devised in collaboration with the local health authorities and partner organizations 5.40\tin both the sending and receiving countries (also see IDDRS 5.40 on Cross-border Popula- tion Movements). Figure 2 shows the likely movements of combatants and associates (and often their dependants) during a DDR process. It should be noted that the assembly/cantonment/ transit area is the most important place (and probably the only place) where adult combat- ants come into contact with health programmes designed in support of the DDR process, because both before and after they assemble here, they are dispersed over a wide area. Chil- dren should receive health assistance at interim care centres (ICCs) after being released from armed groups and forces. Before and after the cantonment/transit period, combatants, associates and their dependants are mainly the responsibility of the national health system, which is likely to be degraded and in need of systematic, long-term support in order to do its work.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "c2937dc9-99d2-42ef-8432-498d97c0a159", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 9, + "Paragraph": "Operational objectives for the health sector in the DDR process The overall goal of health action is to reduce avoidable illness and death. In the context of DDR, this requires that the health programmes focus on providing: basic, preventive and curative, specifically designed and good-quality health care that is easily accessible at every stage of the process \u2014 in any transit stations, in demobili- zation/cantonment/assembly camps if they are used, in ICCs for children, and in the communities where combatants will live once they are demobilized; basic health care, including reproductive health care and psychosocial care, that is appropriate to the different needs of men, women, youth, girls and boys going through DDR. This service needs to be supported by effective referral systems and emergency back-up systems, e.g., to control outbreaks of infectious diseases or deal with immediate, life-threatening mental trauma. Health information and advice must be made available in language that can be understood by the different groups for which the health care is designed; training of camp managers on health-related matters, e.g., on the construction of appro- priate areas for the registration and protection of vulnerable groups, the provision of food appropriate to different needs (e.g., for the sick, and for nursing mothers, infants and small children), problems with drug and alcohol addiction, water, shelter, sanita- tion, supplies of items needed for hygiene (soap, buckets), and fuel. Women and girls will need specific assistance to meet their hygiene needs, including menstrual supplies and clean birthing kits.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "ff8bedb6-0cf5-4d8b-8b86-e621a1ff053c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 9, + "Paragraph": "The role of the health sector in the planning process The health sector has three main areas of responsibility during the planning phase: (1) to assess the epidemiological profile in the areas and populations of interest; (2) to assess exist- ing health resources; and (3) to advise on public health concerns in choosing the sites where combatants, women associated with armed groups and forces and/or dependants will be assembled. Planning to meet health needs should start as early as possible and should be constantly updated as the DDR process develops.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9a6aebf5-d593-461b-bad0-07b1548047d7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 9, + "Paragraph": "Assessing epidemiological profiles Three key questions must be asked in order to create an epidemiological profile: (1) What is the health status of the targeted population? (2) What health risks, if any, will they face when they move during DDR processes? (3) What health threats might they pose, if any, to local communities near transit areas or those in which they reintegrate? Assess the risks and plan accordingly.5 Information that will be needed includes: the composition of target population (age and sex) and their general health status; the transit sites and the health care situation there; the places to which former combatants and the people associated with them will return and the capacity to supply health services there. Epidemiological data, i.e., at least minimum statistics on the most prevalent causes of illness and death, are usually available from the national health authorities or the WHO country office. These data are usually of poor quality in war-torn countries or those in transi- tion into a post-conflict phase, and are often outdated. However, even a broad overview can provide enough information to start planning. More detailed and updated information may be available from NGOs working in the area or the health services of the armed forces or groups. If possible, it should come from field assessments or rapid surveys.6 The following guiding questions should be asked: What kinds of population movements are expected during the DDR process (not only movements of people associated with armed forces and groups, but also an idea of where populations of refugees and internally displaced persons might intersect/interact with them in some way)? What are the most prevalent health hazards (e.g., endemic diseases, history of epidem- ics) in the areas of origin, transit and destination? What is the size of groups (women combatants and associates, child soldiers, disabled people, etc.) with specific health needs? Are there specific health concerns relating to military personnel, as opposed to the civil- ian population?", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "aa264418-74fe-48b2-9486-4d22c72b03ad", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 10, + "Paragraph": "Assessment of health resources After the completion of an assessment of the health needs to be met in a crisis, the capacity of the system to meet these needs should be examined. It is necessary to identify the system\u2019s main weaknesses and to make improvements so that they do not endanger the success of the DDR process.7 The following information is needed: What is the location and state of existing health infrastructure? What can be done to upgrade it quickly, if necessary? Do adequate storage facilities for health supplies exist nearby? Is there an adequate communications infrastructure/system with a good flow of information? What human resources are there (numbers, qualification and experience levels, and geographical distribution)? Where is the closest humanitarian and/or health organization? Is it ready to participate or offer support? Who will coordinate efforts? What material resources, including supplies, equipment and finances, have been established? What is the state of support systems, including transport, energy, logistics and admin- istration? After answering these questions and assessing the situation, it is possible to identify important gaps in the health system and to start taking steps to support the DDR process (e.g., rehabilitating a health centre in an area where troops will be assembled), and to identify stakeholders \u2014 national and international \u2014 who can form partnerships with the health sector. When relevant and possible, the level of health expertise within armed groups and forces should be assessed to start identifying people who can be trained during the demo- bilization phase. Health expertise should be understood in a wide sense to include, when this is relevant and appropriate, traditional practitioners, and combatants and associates who have experience of health work, even without formal education and training, provided that appropriate supervision is guaranteed.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d4880668-eadc-4e87-ac61-dd33d2e96187", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 11, + "Paragraph": "Support in the identification of assembly areas When assembly areas or cantonment sites are established to carry out demobilization and disarmament, health personnel should help with site selection and provide technical advice on site design. International humanitarian standards on camp design should apply, and gender-specific requirements should be taken into account (e.g., security, rape prevention, the provision of female-specific health care assistance). As a general rule, the area must conform with the Sphere standards for water supply and sanitation, drainage, vector control, etc. Locations and routes for medical and obstetric emergency referral must be pre-identi- fied, and there should be sufficient capacity for referral or medical evacuation to cater for any emergencies that might arise, e.g., post-partum bleeding (the distance to the nearest health facility and the time required to get there are important factors to consider here). When combatants are housed in military barracks or public buildings are restored for this purpose, these should also be assessed in terms of public health needs. Issues to con- sider include basic sanitary facilities, the possibility of health referrals in the surrounding area, and so on. If nearby health facilities are to be rehabilitated or new facilities established, the work should fit in with medium- to long-term plans. Even though health care will be provided for combatants, associates and dependants during the DDR process only for a short time, facilities should be rehabilitated or established that meet the requirements of the national strategy for rehabilitating the health system and provide the maximum long-term benefit possible to the general population.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "5ab5a647-e90f-45e2-9b25-92ac5347f5d3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 11, + "Paragraph": "The role of health actions in the demobilization process The concrete features of a DDR health programme will depend on the nature of a specific situation and on the key characteristics of the demobilization process (e.g., how long it is planned for). In all cases, at least the follow- ing must be guaranteed: a medical screening on first contact, ongoing access to health care and outbreak control. Supplementary or therapeutic feeding and other specific care should be planned for if pregnant or lactating women and girls, children or infants, and chronically ill patients are expected at the site.8 Skilled workers, supplies, equipment and infrastructures will be needed inside, or within a very short distance from, the assembly area (within a maximum of one kilometre), to deliver, on a routine basis: (1) medical screening of newcomers; (2) basic health care; and, if necessary, (3) therapeutic feeding. Coordination with local health authorities and other sectors will ensure the presence of the necessary systems for medical evacuation, early detection of and response to disease outbreaks, and the equitable catering for people\u2019s vital needs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "ff848c93-8348-4e5b-aafb-c240b638ded4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 12, + "Paragraph": "Dealing with key health concerns during demobilization Health concerns will vary greatly according to the geographical area where the demobili- zation occurs. Depending on location, health activities will normally include some or all of the following: providing medical screening and counselling for combatants and dependants; establishing basic preventive and curative health services. Priority should go to acute and infectious conditions (typically malaria); however, as soon as possible, measures should also be set in place for chronic and non-infectious cases (e.g., tuberculosis and diabetes, or epilepsy) and for voluntary testing and counselling services for sexually transmitted infections (STIs), including HIV/AIDS; establishing a referral system that can cover medical, surgical and obstetric emergencies, as well as laboratory confirmation at least for diseases that could cause epidemics; adopting and adapting national standard protocols for the treatment of the most common diseases;9 establishing systems to monitor potential epidemiological/nutritional problems within assembly areas, barracks, camps for dependants, etc. with the capacity for early warning and outbreak response; providing drugs and equipment including a system for water quality control and bio- logical sample management; organizing public health information campaigns on STIs (including HIV/AIDS), water- borne disease, sanitation issues such as excreta disposal, food conservation and basic hygiene (especially for longer-term cantonment); establishing systems for coordination, communication and logistics in support of the delivery of preventive and curative health care; establishing systems for coordination with other sectors, to ensure that all vital needs and support systems are in place and functioning. Whenever people are grouped together in a temporary facility such as a cantonment site, there will be matters of specific concern to health practitioners. Issues to be aware of include: Chronic communicable diseases: Proper compliance with anti-TB treatment can be difficult to organize and sustain, but it should be considered a priority; HIV/AIDS: Screening of soldiers should be voluntary and carried out after combatants are given enough information about the screening process. The usefulness of screening when the system is not able to respond adequately (by providing anti-retroviral therapy and proper follow-up) should be carefully thought out. Combatants have the right to the confidentiality of the information collected;10 Violence/injury prevention: Cantonment is a strategy for reducing violence, because it aims to contain armed combatants until their weapons can be safely removed. However, there is a strong likelihood of violence within cantonment sites, especially when abducted women or girls are separated from men. Specific care should be taken to avoid all pos- sible situations that might lead to sexual violence; Mental health, psychosocial support and substance abuse:11 While cantonment provides an opportunity to check for the presence of self-directed violence such as drug and alcohol abuse, a key principle is that the best way of improving the mental well-being of ex- combatants and their associates is through economic and social reintegration, with com- munities having the central role in developing and implementing the social support systems needed to achieve this. In the demobilization stage of DDR, the health services must have the capacity to detect and treat severe, acute and chronic mental disorders. An evidence-based approach to substance abuse in DDR processes has still to be developed.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "4a065944-5511-445a-8d88-d34ea85967fb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 13, + "Paragraph": "An essential DDR health package in resource-poor settings In sites where resources are limited, health planning to meet the needs of those going through the DDR process starts from a minimum package of medical screening, on-the-spot treat- ment, provision of condoms and medical evacuation/referral, which should be developed to cover, at least: early detection of and response to epidemic outbreaks; measles immunization + vitamin A for children aged 0\u201315 years; polio immunization for children under 5; treatment of severe, acute conditions (malaria, acute respiratory infections), diarrhoea, anaemia in pregnant women, acute malnutrition, dressing of wounds, STIs, etc.); uncomplicated deliveries; provision of long-lasting impregnated bed nets to prevent malaria; referral of serious cases to secondary/tertiary care facilities; voluntary testing and counselling for STIs, including HIV/AIDS; care and treatment for survivors of sexual violence, including testing and treatment for STIs. The delivery of such services requires the following personnel and equipment in each cantonment site or assembly area: an average team of one doctor or mid-level health technician, 4\u20135 public health care nurses and 3\u20134 ancillary workers per camp; one midwife where necessary; essential medicines and equipment (for sterilization, stabilization, cold-chain, etc.); rapid tests and combined treatment for P. Falciparum malaria; means of transport, easy procedures and pre-positioned facilities for medical/obstetric evacuation; options \u2014 either locally or by referral \u2014 for the treatment of chronic conditions: at least TB and epilepsy should be covered; back-up systems \u2014 teams on call, easy-access procedures, transport and buffer stocks (including protective equipment) \u2014 for early detection and treatment of outbreaks; availability and adoption of national standard case definitions and case management protocols.12 WHO provides hospitals with emergency health kits and UNFPA can provide emergency reproductive health kits (which may include post-exposure prophylaxis kits, when appro- priate) to individuals, clinics and hospitals, along with training on their use as and when 5.60\tthis is appropriate (also see IDDRS 5.60 on HIV/AIDS and DDR).13", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "79a824f8-28a8-40c5-8663-c065de29f9d5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 14, + "Paragraph": "Training of personnel Training of local health personnel is vital in order to implement the complex health response needed during DDR processes. In many cases, the warring parties will have their own mili- tary medical staff who have had different training, roles, experiences and expectations. However, these personnel can all play a vital role in the DDR process. Their skills and knowl- edge will need to be updated and refreshed, since the health priorities likely to emerge in assembly areas or cantonment sites \u2014 or neighbouring villages \u2014 are different from those of the battlefield. An analysis of the skills of the different armed forces\u2019 and groups\u2019 health workers is needed during the planning of the health programme, both to identify the areas in need of in-service training and to compare the medical knowledge and practices of different armed groups and forces. This analysis will not only be important for standardizing care during the demobilization phase, but will give a basic understanding of the capacities of military health workers, which will assist in their reintegration into civilian life, for example, as employees of the ministry of health. The following questions can guide this assessment process: What kinds of capacity are needed for each health service delivery point (tent-to-tent active case finding and/or specific health promotion messages, health posts within camps, referral health centre/hospital)? Which mix of health workers and how many are needed at each of these delivery points? (The WHO recommended standard is 60 health workers for each 10,000 members of the target population.) Are there national standard case definitions and case management protocols available, and is there any need to adapt these to the specific circumstances of DDR? Is there a need to define or agree to specific public health intervention(s) at national level to respond to or prevent any public health threats (e.g., sleeping sickness mass screening to prevent the spread of the diseases during the quartering process)? It is important to assume that no sophisticated tools will be available in assembly or transit areas. Therefore, training should be based on syndrome-based case definitions, indi- vidual treatment protocols and the implementation of mass treatment interventions.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "68a2abc3-bae6-4de9-8ca4-a28402ad2b4a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 15, + "Paragraph": "Responding to the needs of vulnerable groups Special arrangements will be necessary for vulnerable groups. WHO recommends planning for children, the elderly, chronically sick and disabled people, as well as for women and girls who are pregnant or lactating, and anyone who has survived sexual violence. Guiding questions to assess the specific needs of each of these groups are as follows: What are the specific health needs of these groups? Do they need special interventions? Are health personnel aware of their specific needs? Are health personnel trained to assist individuals who have survived extreme inter- personal violence and have symptoms that they may be unable or unwilling to describe (e.g., survivors of rape describing \u2018stomach pains\u2019)?", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "68645507-ee22-4781-8966-9a152b2d74c4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 15, + "Paragraph": "Children and adolescents associated with armed groups and forces Boy and girl child and adolescent soldiers can range in age from 6 to 18. It is very likely that they have been exposed to a variety of physical and psychological traumas, including mental and sexual abuse, and that they have had very limited access to clinical and public health services. Child and adolescent soldiers, who are often brutally recruited from very poor communities, or orphaned, are already in a poor state of health before they face the additional hardship of life with an armed group or force. Their vulnerability remains high during the DDR process, and health services should therefore deal with their specific needs as a priority. Special attention should be given to problems that may cause the child fear, embarrassment or stigmatization, e.g.: child and adolescent care and support services should offer a special focus on trauma- related stress disorders, depression and anxiety; treatment should be provided for drug and alcohol addiction; there should be services for the prevention, early detection and clinical management of STIs and HIV/AIDS; special assistance should be offered to girls and boys for the treatment and clinical management of the consequences of sexual abuse, and every effort should be made to prevent sexual abuse taking place, with due respect for confidentiality.14 To decrease the risk of stigma, these services should be provided as a part of general medical care. Ideally, all health care providers should have training in basic counselling, with some having the capacity to deal with the most serious cases (also see IDDRS 5.20 on Youth and DDR and IDDRS 5.30 on Children and DDR).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "200021f3-7629-4685-bcad-47e702eaa582", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 15, + "Paragraph": "Disabled or chronically ill people To assist this group, DDR health practitioners and national authorities should agree on a system to respond to war disabilities in order for disabled people to gain entitlement to disability pensions and/or to join the social security system. An approach can be designed that measures an individual\u2019s physical impairment and how much the impairment limits his/her capacity to benefit from socio-economic reintegration.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d7f0fd90-bc4f-4dc0-b465-bca1d20f4e22", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 7, + "Paragraph": "Women Women combatants and other women associated with armed forces and groups in non- combat roles require special measures to protect them throughout the cantonment or assembly 5.20 5.30 5.10\t5.60 phase, in transit camps and while travelling to their reintegration locations. Camps must be designed to offer women security, privacy and protection. Women who are pregnant, lac- tating or caring for young children will require health services that cater for their specific needs. Those who have survived rape or other gender-based violence should receive access to the Minimal Initial Service Package for reproductive health.15 Particular care should be taken to include women in the health team at assembly areas or cantonment sites (also see IDDRS 5.10 on Women, Gender and DDR and IDDRS 5.60 on HIV/AIDS and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "477e1bb7-f8d2-46da-b680-6c9ff6dae2a1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 16, + "Paragraph": "The role of health services in the reintegration process This section explains how to use the resources allocated to health action in DDR to reinforce and support the national health system in the medium and longer term. It needs to be emphasized that after combatants are discharged, they come under the responsibility of the national health system. It is vital, therefore, for all the health actions carried out during the demobilization phase to be consistent with national protocols and regulation (e.g., the administration of TB drugs). Especially in countries emerging from long-lasting violent conflict, the capacity of the national health system may not be able to meet the needs of population, and more often than not, good health care is expensive. In this case, preferential or subsidized access to health care for former combatants and others associated with armed groups and forces can be provided if possible. It needs to be em- phasized that the decision to create positive discrimination for former combatants is a political one.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e31bef68-a486-43ee-9bf6-8eda11711eea", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.70-Health-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.70-Health-and-DDR", + "PageNum": 16, + "Paragraph": "Systems for programme implementation The diagram in figure 3 (to be read from the top) shows how it is possible to systematize the various components, levels and executive lines of the health programme in a country emerging from conflict. Whatever the overall institutional setting in which DDR takes place, WHO, in consultation with the other agencies contributing to health service deliv- ery, will be represented as member of the UN/Inter-Agency Standing Committee country team. The WHO country representatives will be in a position to: (1) ensure that the neces- sary lines of liaison and coordination with the national health authorities are set up and managed; and (2) provide health information to other sectors and agencies, in order to ensure cooperation among the different actors involved in different components of the DDR process. In administering a DDR programme, the health sector is expected to supply both the technical guidance and the resources \u2014 personnel, supplies, funds, and administrative and logistic support \u2014 that are necessary for various partners to deliver coordinated and effective health preventive and curative care at the local level, i.e., in the assembly camps, etc., and beyond into the reintegration phase. In some instances, the military will be the main implementing partners at local level, with the support, in most cases, of medical NGOs and possibly the health units of peacekeeping forces.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "eae18cbd-3254-472d-a627-2b4132327419", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Summary Women are increasingly involved in combat or are associated with armed groups and forces in other roles, work as community peace-builders, and play essential roles in disarmament, demobilization and reintegration (DDR) processes. Yet they are almost never included in the planning or implementation of DDR. Since 2000, the United Nations (UN) and all other agencies involved in DDR and other post-conflict reconstruction activities have been in a better position to change this state of affairs by using Security Council resolution 1325, which sets out a clear and practical agenda for measuring the advancement of women in all aspects of peace-building. The resolution begins with the recognition that women\u2019s visibility, both in national and regional instruments and in bi- and multilateral organizations, is vital. It goes on to call for gender awareness in all aspects of peacekeeping initiatives, especially demobi- lization and reintegration, urges women\u2019s informed and active participation in disarmament exercises, and insists on the right of women to carry out their post-conflict reconstruction activities in an environment free from threat, especially of sexualized violence. Even when they are not involved with armed forces and groups themselves, women are strongly affected by decisions made during the demobilization of men. Furthermore, it is impossible to tackle the problems of women\u2019s political, social and economic marginaliza- tion or the high levels of violence against women in conflict and post-conflict zones without paying attention to how men\u2019s experiences and expectations also shape gender relations. This module therefore includes some ideas about how to design DDR processes for men in such a way that they will learn to resolve interpersonal conflicts without using violence to do so, which will increase the security of their families and broader communities. Special note is also made of girl soldiers in this module, because in some parts of the world, a girl who bears a child, no matter how young she is, immediately gains the status of a woman. Care should therefore be taken to understand local interpretations of who is seen as a girl and who a woman soldier. Peace-building, especially in the form of practical disarmament, needs to continue for a long time after formal demobilization and reintegration processes come to an end. This module is therefore intended to assist planners in designing and implementing gender- sensitive short-term goals, and to help in the planning of future-oriented long-term peace support measures. It focuses on practical ways in which both women and girls, and men and boys can be included in the processes of disarmament and demobilization, and be recognized and supported in the roles they play in reintegration. The processes of DDR take place in such a wide variety of conditions that it would be impossible to discuss each of the circumstance-specific challenges that might arise. This module raises issues that frequently disappear in the planning stages of DDR, and aims to provoke further thinking and debate on the best ways to deal with the varied needs of people \u2014 male and female, old and young, healthy and unwell \u2014 in armed groups and forces, and those of the communities to which they return after war.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "60543163-dbee-46db-ac2c-d4ea214e4480", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module provides policy guidance on the gender aspects of the various stages in a DDR process, and outlines gender-aware interventions and female-specific actions that should be carried out in order to make sure that DDR programmes are sustainable and equitable. The module is also designed to give guidance on mainstreaming gender into all DDR poli- cies and programmes to create gender-responsive DDR programmes. As gender roles and relations are by definition constructed in a specific cultural, geographic and communal con- text, the guidance offered is intended to be applied with sensitivity to and understanding of the context in which a DDR process is taking place. However, all UN and bilateral policies and programmes should comply with internationally agreed norms and standards, such as Security Council resolution 1325, the Convention on the Elimination of All Forms of Discrim- ination Against Women and the Beijing Platform for Action.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f5e2ecbf-5b3e-4c86-82e5-01e5f5b74658", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A com- plete glossary of all the terms, definitions and abbreviations used in the series of integrated 1.20\tDDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicated requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "4ba64b87-0772-4598-a2f6-cee868586e3e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 4, + "Paragraph": "Introduction Generally, it is assumed that armed men are the primary threat to post-conflict security and that they should therefore be the main focus of DDR. The picture is usually more complex than this: although males (adults, youth and boys) may more obviously take part in the conflict and make up the largest number of combatants, females (adults, youth and girls) are also likely to have been involved in violence, and may have participated in every aspect of the conflict. Despite stereotypical beliefs, women and girls are not peacemakers only, but can also contribute to ongoing insecurity and violence during wartime and when wars come to an end. The work carried out by women and girl combatants and other women and girls asso- ciated with armed forces and groups in non-fighting roles may be difficult to measure, but efforts should be made to assess their contribution as accurately as possible when a DDR programme is designed. The involvement of women in the security sector reform (SSR) pro- cesses that accompany and follow DDR should also be deliberately planned from the start. Women take on a variety of roles during wartime. For example, many may fight for brief periods and then return to their communities to carry out other forms of work that contri- bute to the war. These women will have reintegrated and are unlikely to present themselves for DDR. Nor should they be encouraged to do so, since the resources allocated for DDR are limited and intended to create a founda- tion of stability on which longer-term peace and SSR can be built. It is therefore appro- priate, in the reconstruction period, to focus resources on women and men who are still active fighters and potential spoilers. Women who have already rejoined their communities can, however, be an important asset in the rein- tegration period, including through playing expanded roles in the security sector, and efforts should be made to include their views when designing reintegration processes. Their experiences may significantly help commu- nities with the work of reintegrating former fighters, especially when they are able to help bring about reconciliation and assist in making communities safer. It is important to remember that women are present in every part of a society touched by DDR \u2014 from armed groups and forces to receiving communities. Exclusionary power struc- tures, including a backlash against women entering into political, economic and security structures in a post-conflict period, may make their contributions difficult to assess. It is therefore the responsibility of all DDR planners to work with female representatives and women\u2019s groups, and to make it difficult for male leaders to exclude women from the form- ulation and implementation of DDR processes. Planners of SSR should also pay attention to women as a resource base for improving all aspects of human security in the post-conflict period. It is especially important not to lose the experiences and public standing acquired by those women who played peace-building roles in the conflict period, or who served in an armed group or force, learning skills that can usefully be turned to community service in the reconstruction period. Ultimately, DDR should lead to a sustainable transition from military to civilian rule, and therefore from militarized to civilian structures in the society more broadly. Since women make up at least half the adult population, and in post-conflict situations may head up to 75 percent of all households, the involvement of women in DDR and SSR is the most important factor in achieving effective and sustainable security. Furthermore, as the main caregivers in most cultures, women and girls shoulder more than their fair share of the burden for the social reintegration of male and female ex-combatants, especially the sick, traumatized, injured, HIV-positive and under-aged. Dealing with the needs and harnessing the different capacities and potential of men, women, boy and girl former fighters; their supporters; and their dependants will improve the success of the challenging and long-term transformation process that is DDR, as well as providing a firm foundation for the reconstruction of the security sector to meet peacetime needs. However, even five years since the passing of Security Council resolution 1325 (2000) on Women and Peace and Security, gender is still not fully taken into account in DDR plan- ning and delivery. This module shows policy makers and practitioners how to replace this with a routine consideration of the different needs and capacities of the women and men involved in DDR processes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4b572db1-8608-41c6-93e0-309ff93a92e5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 5, + "Paragraph": "Guiding principles Up till now, DDR efforts have concerned themselves mainly with the disarmament, demo- bilization and reintegration of male combatants. This approach fails to deal with the fact that women can also be armed combatants, and that they may have different needs from their male counterparts. Nor does it deal with the fact that women play essential roles in maintaining and enabling armed forces and groups, in both forced and voluntary capacities. A narrow definition of who qualifies as a \u2018combatant\u2019 came about because DDR focuses on neutralizing the most potentially dangerous members of a society (and because of limits imposed by the size of the DDR budget); but leaving women out of the process underesti- mates the extent to which sustainable peace-building and security require them to participate equally in social transformation. In UN-supported DDR, the following principles of gender equality are applied: Non-discrimination, and fair and equitable treatment: In practice, this means that no group is to be given special status or treatment within a DDR programme, and that indivi- duals should not be discriminated against on the basis of gender, age, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associa- tions. This is particularly important when establishing eligibility criteria for entry into 4.10\tDDR programmes (also see IDDRS 4.10 on Disarmament); Gender equality and women\u2019s participation: Encouraging gender equality as a core principle of UN-supported DDR programmes means recognizing and supporting the equal rights of women and men, and girls and boys in the DDR process. The different experiences, roles and responsibilities of each of them during and after conflict should be recognized and reflected in the design and implementation of DDR programmes; Respect for human rights: DDR programmes should support ways of preventing reprisal or discrimination against, or stigmatization of those who participate. The rights of the community should also be protected and upheld.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b53eee15-97c3-4e22-896c-009c36a8d2e0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 6, + "Paragraph": "Security Council resolution 1325 Security Council resolution 1325 marks an important step towards the recognition of women\u2019s contributions to peace and reconstruction, and draws attention to the particular impact of conflict on women and girls. On DDR, it specifically \u201cencourages all those involved in the planning for disarmament, demobilization and reintegration to consider the different needs of female and male ex-combatants and to take into account the needs of their depen- dants\u201d. Since it was passed, the Council has recalled the principles laid down in resolution 1325 when establishing the DDR-related mandates of several peacekeeping missions, such as the UN Missions in Liberia and Sudan and the UN Stabilization Mission in Haiti.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "417e2c2b-a54b-4050-a950-3629587f69ea", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 7, + "Paragraph": "The Beijing Platform for Action At the Fourth World Conference on Women, held in Beijing in 1995, 189 Member States com- mitted themselves to a range of strategic objectives and actions aimed at achieving gender equality. The Member States repeated their commitment to ensuring that women make up 30 percent of all decision-making bodies and further committed themselves, among other things, to: increase the participation of women in conflict resolution at decision-making levels, and protect women living in situations of armed and other conflicts or under foreign occupation (E.1); reduce excessive military expenditures and control the availability of armaments (E.2); encourage and support women\u2019s contribution to fostering a culture of peace (E.4). The Secretary-General\u2019s Study on Women, Peace and Security In his 2002 Study on Women, Peace and Security, the Secretary-General recommended the following actions on DDR: Action 1: Incorporate the needs and priorities of women and girls as ex-combatants, \u2018camp-followers\u201d\u2019 and families of ex-combatants in the design and implementation of DDR programmes, including the design of camps; the distribution of benefits; and access to basic resources and services, including food, water, health care and counsel- ling, in order to ensure the success of such programmes, women and girls\u2019 full partici- pation, and their access to benefits; Action 2: Increase the number of programmes for child soldiers, fully include attention to the specific situation and needs of girl soldiers, and identify means to support child soldiers, including girls, who do not enter DDR programmes; Action 3: Recognize the impact of armed conflict and displacement on family relations, and develop awareness of the risk of increased domestic violence, especially in the fami- lies of ex-combatants; and develop programmes on the prevention of domestic violence that are designed for families and communities, and especially male ex-combatants; Action 4: Recognize and use the contributions of women and girls in encouraging ex- combatants to lay down arms and participate in weapons-collection programmes, and ensure that they benefit from any incentives provided for such activities; Action 5: Ensure full access of women and girls to all resources and benefits provided in reintegration programmes, including skills development programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e937756a-7be4-4186-9619-2051803f5cae", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 8, + "Paragraph": "Negotiating DDR: Ensuring women\u2019s political participation A gender-responsive approach to DDR should be built into every stage of DDR. This begins with discussions during the peace negotiations on the methods that will be used to carry out DDR. DDR advisers participating in such negotiations should ensure that women\u2019s interests and needs are adequately included. This can be done by insisting on the participation of female representatives at the negotiations, ensuring they understand DDR-related clauses and insisting on their active involvement in the DDR planning phase. Trained female leaders will contribute towards ensuring that women and girls involved in DDR (women and girls who are ex-combatants, women and girls working in support functions for armed groups and forces, wives and dependants of male ex-combatants, and members of the receiving com- munity) understand, support and strengthen the DDR process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "de523e32-5a1a-48fe-8f27-f4fe249e29d4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 8, + "Paragraph": "Negotiating DDR: Gender-aware interventions Negotiation, mediation and facilitation teams should get expert advice on current gender dynamics, gender relations in and around armed groups and forces, and the impact the peace agreement will have on the status quo. All the participants at the negotiation table should have a good understanding of gender issues in the country and be willing to include ideas from female representatives. To ensure this, facilitators of meetings and gender advisers should organize gender workshops for wom- en participants before the start of the formal negotiation. The UN should develop a group of deployment-ready experts in gender and DDR by using a combined strategy of recruit- ment and training, and insist on their full participation in the DDR process through af- firmative action.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05e9fd7d-026e-4f9e-9a3a-cbd53a5cc4da", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 9, + "Paragraph": "Negotiating DDR: Female-specific interventions Facilitators, Special Representatives of the Secretary-General (SRSGs) and senior UN person- nel supporting the peace process should receive an explicit mandate to cater for the needs and interests of women and girls, whether combatants, supporters or dependants. Moni- toring and evaluation mechanisms should be set in place to assess the effectiveness of their interventions. (See Annex D for a gender-responsive monitoring and evaluation framework.) Peace process facilitators, SRSGs and envoys should be made aware of the interna- tionally agreed minimum standard of 30 percent female participation in any democratic decision-making forum. Women who are familiar with the needs of female fighters, veterans and other community-based women peace-builders should attend and be allowed to raise concerns in the negotiation process. In circumstances where the participation of women is not possible, DDR planners should hold consultations with women\u2019s groups during the planning and pre-deployment phase and ensure that the latter\u2019s views are represented at negotiation forums. Women in leadership positions at national and local levels, including female local coun- cillors, representatives of women\u2019s non-governmental organizations (NGOs) and female community leaders, all of whom will assist the return of male and female ex-combatants, supporters and dependants to civilian life, are stakeholders in the peace process, and should be enlisted as partners in the DDR process. Furthermore, governmental ministries or depart- ments with gender-related mandates should be included in negotiations and decision-making whenever possible. To facilitate women\u2019s participation, the UN advance team or country team should carry out a risk assessment to evaluate the threat posed to women who take up a public role in the peace process. Adequate protection should be provided by governmental bodies or the UN itself if these women\u2019s security is at risk. Facilitators and other participants in the peace process should attempt to create an inclusive environment so that female representatives feel comfortable to raise their concerns and needs. The release of abducted women and girls from within the ranks of an armed force or group should be made a condition of the peace agreement. The requirement for the representation of women in structures established to manage DDR processes, such as a national DDR commission, should be included in the peace accord. Information about the DDR programme and process should be made available to any sub- sidiary bodies or sub-committees established to facilitate the participation of civil society in the peace process.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "037c348f-2612-44bc-b23f-9bede0bbb7e9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 9, + "Paragraph": "Assessment phase Planners should develop a good understanding of the legal, political, economic, social and security context of the DDR programme and how it affects women, men, girls and boys Wife of ex-combatant, Sierra Leone, January 2002 Photo: P. Marwah, UNFPA Humanitarian Response Unit differently, both in the armed forces and groups and in the receiving communities. In addition, planners should understand the different needs of women, men, girls and boys who participate in DDR processes according to their different roles during the conflict (i.e., armed ex-combatants, supporters, or/and depend- ants). The following should be considered. Different choices: There may be a difference in the life choices made by women and girls, as opposed to men and boys. This is because women, men, girls and boys have different roles before, during and after conflicts, and they face different problems and expectations from society and their family. They may, as a result, have different prefer- ences for reintegration training and support. Some women and girls may wish to return to their original homes, while others may choose to follow male partners to a new loca- tion, including across international boundaries; Different functions: Many women and girls participate in armed conflict in roles other than as armed combatants. These individuals, who may have participated as cooks, mes- sengers, informal health care providers, por- ters, sex slaves, etc., are often overlooked in the DDR process. Women and girls carry out these roles both through choice and, in the case of abductees and slaves, because they are forced to do so. Within receiving communities, in which women already have heavy responsibilities for caregiving, reintegration may place fur- ther burdens of work and care on them that will undermine sustainable reintegration if they are not adequately supported. (See Annex B for an integrated assessment checklist on gender and DDR.)", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "4e9ebcbf-d343-46cf-abe1-319a4b06868d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 11, + "Paragraph": "Assessment phase: Gender-aware interventions Gender expertise should be considered an essential element of any assessment mission carried out by the UN, specifically those teams with DDR-related mandates, and gender analysis and information should be adequately reflected in reporting to the Security Council and the UN Development Group that coordinates joint assessment missions before the deployment of a peacekeeping mission. The assessment team should identify community responses to giving female ex-com- batants the option of joining reconstructed peacetime armies and other security institutions such as intelligence services, border police, customs, immigration services and other law- enforcement services. To boost the number of female peacekeepers, women\u2019s eligibility for peacekeeping roles in other conflict zones should also be determined. In order to plan how to deal with obstacles to reintegration and better prepare the community and returnees to play supportive roles, an ongoing assessment should be con- ducted of community attitudes towards returning female combatants, supporters and depend- ants. Baseline data and analysis should be gathered and then reassessed at various stages of the process. Analysis should focus closely on potential causes of insecurity for returning women and on the extent of gender-based insecurity (e.g., gender-based violence) in comm- unities more generally. If the assessment team has the task of identifying sites for cantonment, such sites should be able to provide separate facilities for women and men, and girls and boys, as required. Sanitary facilities should be designed in a way that allows for privacy, in accordance with culturally accepted norms, and water and sanitation should be available to meet women\u2019s and girls\u2019 hygiene needs.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7b6ae6a0-467a-406e-8c38-1246a0951852", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 11, + "Paragraph": "Assessment phase: Female-specific interventions The number and percentage of women and girls in armed groups and forces, and their rank and category, should be ascertained as far as possible before planning begins. Necessary measures should be put in place \u2014 in cooperation with existing military structures, where possible \u2014 to deal with commanders who refuse to disclose the number of female combat- ants or associates in the armed forces or groups that they command. It is the human right of all women and girls who have been abducted to receive assistance to safely leave an armed force or group. Baseline information on patterns of weapons possession and ownership among women and girls should be collected \u2014 if possible, before demobilization \u2014 to gain an accurate picture of what should be expected during disarmament, and to guard against exploitation of women and girls by military personnel, in attempts either to cache weapons or control access to DDR. The assessment team should identify local capacities of women\u2019s organizations already working on security-related issues and work with them to learn about the presence of women and girls in armed groups and forces. All interventions should be designed to sup- port and strengthen existing capacity. (See Annex D for gender-responsive needs assessment and the capacities and vulnerabilities analysis matrix of women\u2019s organizations.) Along with community peace-building forums, women\u2019s organizations should routinely be consulted during assessment missions, as they are often a valuable source of information for planners and public information specialists about, for instance, the community\u2019s percep- tions of the dangers posed by illicit weapons, attitudes towards various types of weapons, the location of weapons caches and other issues such as trans-border weapons trade. Women\u2019s organizations can also provide information about local perceptions of returning female ex- combatants, and of women and girls associated with armed groups and forces. Working closely with senior commanders within armed forces and groups before demo- bilization to begin raising awareness about women\u2019s inclusion and involvement in DDR will have a positive impact and can help improve the cooperation of mid-level commanders where a functioning chain of command is in place. Female interpreters familiar with relevant terminology and concepts should be hired and trained by assessment teams to help with interviewing women and girls involved in or associated with armed groups or forces. Women\u2019s specific health needs, including gynaecological care, should be planned for. Reproductive health services (including items such as reusable sanitary napkins) and pro- phylactics against sexually transmitted infection (both male and female condoms) should be included as essential items in any health care packages. When planning the transportation of people associated with armed groups and forces to cantonment sites or to their communities, sufficient resources should be budgeted for to offer women and girls the option of being transported separately from men and boys, if their personal safety is a concern. The assessment team report and recommendations for personnel and budgetary require- ments for the DDR process should include provision for female DDR experts, female trans- lators and female field staff for reception centres and cantonment sites to which women combatants and women associated with armed forces and groups can safely report.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d9f6df09-28e1-4328-bd79-9755393ecd84", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 12, + "Paragraph": "Demobilization A strict \u2018one man, one gun\u2019 eligibility requirement for DDR, or an eligibility test based on proficiency in handling weapons, may exclude many women and girls from entry into DDR programmes. The narrow definition of who qualifies as a \u2018combatant\u2019 has been moti- vated to a certain extent by budgetary considerations, and this has meant that DDR planners have often overlooked or inadequately attended to the needs of a large group of people participating in and associated with armed groups and forces. However, these same peo- ple also present potential security concerns that might complicate DDR. If those who do not fit the category of a \u2018male, able-bodied combatant\u2019 are overlooked, DDR activities are not only less efficient, but run the risk of reinforcing existing gender inequalities in local communities and making economic hardship worse for women and girls in armed groups and forces, some of whom may have unresolved trauma and reduced physical capacity as a result of violence experienced during the conflict. Marginalized women with experience of combat are at risk for re-recruitment into armed groups and forces and may ultimately undermine the peace-building potential of DDR processes. The involvement of women is the best way of ensuring their longer-term participation in security sector reform and in the uniformed services more generally, which again will improve long-term security.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "04b4da25-9053-4c15-99f6-1b81b030a1c9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 13, + "Paragraph": "Demobilization mandates, scope, institutional arrangements: Gender-aware interventions In drafting a peace mission\u2019s plan of operations, the Department of Peacekeeping Operations (DPKO) shall reflect the recommendations of the assessment team and produce language that defines a mandate for a gender-sensitive DDR process in compliance with Security Council resolution 1325. Specifically, DDR programme participants shall include those who play support functions essential for the maintenance and cohesion of armed groups and forces, and reflect consideration of the needs of individuals dependent on combatants. When the Security Council establishes a peacekeeping operation with mandated DDR functions, components that will ensure gender equity should be adequately financed through the assessed budget of UN peacekeeping operations and not voluntary contributions alone. From the start, funds should be allocated for gender experts and expertise to help with the planning and implementation of dedicated programmes serving the needs of female ex-com- batants, supporters and dependants. Gender advisers and expertise should be considered essential in the staffing structure of DDR units. The UN should facilitate financial support of the gender components of DDR processes. DDR programme budgets should be made gender-responsive by allocating sufficient amounts of resources to all gender-related activities and female-specific interventions. When collaborating with regional, bilateral and multilateral organizations, DDR prac- titioners should encourage gender mainstreaming and compliance with Security Council resolution 1325 throughout all DDR efforts that they lead or support, encouraging all partners, such as client countries, donors and other stakeholders, to dedicate human and economic resources towards gender mainstreaming throughout all phases of DDR. DDR practitioners should ensure that the various personnel of the peacekeeping mission, from the SRSG to the troops on the ground, are aware of the importance of gender consid- erations in DDR activities. Several strategies can be used: (1) ensuring that DDR training programmes that are routinely provided for military and civilian staff reflect gender-related aspects; (2) developing accountability mechanisms to ensure that all staff are committed to gender equity; and (3) integrating gender training into the training programme for the troops involved. Box 4 Gender training in DDR", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "74e208a2-2131-4429-bd2e-157b4c50b9d7", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 14, + "Paragraph": "Demobilization mandates, scope, institutional arrangements: Female-specific interventions Definitions of who is a dependant should reflect the varied nature and complexity of the conflict situation, where dependent women and girls may not be legal wives of ex-combatants. Where a male ex-combatant and a woman or girl live as man and wife according to local perceptions and practices, this will guarantee the eligibility of the woman or girl for inclu- sion in the DDR programme. Eligibility criteria should be determined so that they include \u2014 where relevant \u2014 multiple wives (both formal and informal) of a male ex-combatant. The dependants of an ex-combatant should include any person living as part of the ex- combatant\u2019s household under their care. In situations where governments are responsible for all or part of the DDR process, UN representatives should encourage national DDR commissions to work closely with government ministries in charge of women\u2019s affairs, as well as women\u2019s peace-building networks. National DDR commissions should be encouraged to employ women in leader- ship positions and assign gender focal points within the commission. Troop-contributing countries should be encouraged by DPKO to make it an urgent priority to deploy women in peacekeeping operations. Female military personnel with gen- der training should be used as much as possible during the DDR process, in particular during the initial stages of screening and identification. Female military personnel should also play an important role in receiving and transmitting information on gender-based violence and/or sexual exploitation and abuse occurring in DDR sites.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "9c81be3d-386c-4621-86f8-b01998ba3f96", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 15, + "Paragraph": "Transitional support Transitional support can include one or more of the following: financial resources; material resources; and basic training. The overall aim should be to ensure that the distribution of benefits enables women and girls to have the same economic choices as men and boys, regardless of the roles they performed during the war, and that women and men, and girls and boys are able to engage constructively in reintegration activities that contribute to overall security in their communities. A good understanding of women\u2019s rights and social attitudes relating to women\u2019s access to economic resources is needed when designing the benefits package. This will assist planners in designing the package in a way that will allow women to keep control over benefits, especially financial reinsertion packages, after leaving the cantonment site. For example, providing land as part of the benefits package may not be appropriate in a country where women cannot legally own land. Although DDR planners have assumed that financial packages given to male ex-com- batants will be used for the benefit of family members, anecdotal evidence from the field suggests that demobilized men use their start- up cash irresponsibly, rather than to the benefit of family and community. This com- promises the success of DDR programmes and undermines security and community recovery. On the other hand, much empirical evidence from the field indicates that women use the resources they are given for family sustenance and community development.1 For reintegration to be sustainable, gendered strategies must be developed that will equally benefit women and men, and ensure the equitable distribution of aid and resources within the family unit.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b1a69959-4373-46b5-a487-010f8da63026", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 15, + "Paragraph": "Transitional support: Gender-aware interventions When planning the demobilization package, women/girls and men/boys who were armed ex-combatants and supporters should receive equitable and appropriate basic demobili- zation benefits packages, including access to land, tools, credit and training. Planning should include a labour market assessment that provides details of the various job options and market opportunities that will be available to men and women after they leave demobilization sites. This assessment should take place as early as possible so that train- ing programmes are ready when ex-combatants and supporters need them. Opportunities for women\u2019s economic independence should be considered and potential problems faced by women entering previously \u2018male\u2019 workplaces and professions should be dealt with as far as possible. Offering demobilized women credit and capital should be viewed as a positive investment in reconstruction, since women have an established record of high rates of return and reinvestment. Demobilization packages for men and boys should be also sensitive to their different gender roles and identities. Demobilization packages might be prepared under the assump- tion that men are the \u2018breadwinner\u2019 in a household, which might pressurize men to be more aggressively hierarchical in their behaviour at home. Men can also feel emasculated when women appear more successful than them, and may express their frustration in increased violence. More careful preparation is needed so that transitional support packages will not reinforce negative gender stereotypes.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "fda0a38d-d67d-405a-853a-f21f81522c9d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 16, + "Paragraph": "Transitional support: Female-specific interventions If cash hand-outs are given to DDR participants as part of their transitional support, the needs and spending patterns of women should be taken into account, and accommodated as much as possible (e.g., do women prefer large payments of cash or monthly payments? Does either form of payment subject women and girls to additional security risks?). Women\u2019s traditional forms of money management should be recognized and supported (e.g., through rotational loan and credit schemes or other innovative forms of microcredit), and, where available, women should be given access to banks and encouraged to open private bank accounts to safeguard their money. Education and training efforts should deal with the needs and desires of the women and girls and start as soon as possible during the demobilization phase. Experience has shown that women and girls tend to be overwhelmed by household responsibilities and may be unable to move around freely once they return home, and are therefore less likely to be able to attend training programmes. Women\u2019s access will be greatly improved if efforts are made to provide child-care and other services. In many countries, women and girls have lower educational levels and are skilled in jobs that earn less money than their male peers. This should be taken into account in training programmes through providing additional resources for literacy and training in high-earning skills for women and girls. Skills should be culturally appropriate as far as possible, although efforts should be made not to restrict women to low-paid \u2018traditional\u2019 female work, since the post-conflict period offers the possibility of social transformation, including making use of skills acquired by women in wartime. Educational opportunities should be equally available to female and male children of ex-combatants and widows. The spouse or other female family mem- bers of a male ex-combatant should be brought in to witness the signing of an agreement on Female Officer, Democratic Republic of Congo Photo: P. Delargy, UNFPA Humanitarian Response Unit how his money will get paid. In this way, the resources may actually get passed on to the family, and from there move into the broader community. Receiving communities and women community leaders should be informed about the intention and use of reintegration packages and their potential impact. It cannot be assumed that the benefits of DDR will automatically enrich the community that they enter; they may in fact cause resentment and violence. Efforts should be made to include communities when deciding how development packages will be provided so that ex-combatants\u2019 access to these resources can be influenced and monitored by the community to which they return.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "beea7829-172f-4092-96f2-0bb4eaaa12d0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 17, + "Paragraph": "Assembly Female ex-combatants are less likely to ask to participate in DDR than their male peers, for a variety of reasons: a failure to adequately assess the number of women and girl combatants, supporters and dependants in the assessment phase, so that women and girls are neither expected nor catered for; women and girls in many post-war contexts having poorer access to news sources such as radios and being less likely to be able to read than men; the stigma during peacetime of being associated with an armed force or group; the perception or fact that a weapon is required for participation in a DDR programme; security concerns or a fear of exposure or re-exposure to sexual and gender-based violence; in some cases, commanders deliberately holding girls back because they are considered essential workers and the most desirable sexual partners within the group.2 They may also hide women and girls who have been abducted, for fear of legal and social conse- quences. Measures should be put in place to ensure women know they have the right to leave, and the capacity to do so in safety.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "a3ce82cc-c70e-464c-9e0e-d010e70205b0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 17, + "Paragraph": "Assembly: Gender-aware interventions Male and female ex-combatants should be equally able to get access to clear information on their eligibility for participation in DDR programmes, as well as the benefits available to them and how to obtain them. At the same time, information and awareness-raising sessions should be offered to the communities that will receive ex-combatants, especially to women\u2019s groups, to help them understand what DDR is, and what they can and cannot expect to gain from it. Information campaigns though the media (e.g., radio and newspapers) should provide information that encourages ex-combatants, supporters and dependants to join programmes. However, it is important to bear in mind that women do not always have access to these tech- nologies, and word of mouth may be the best way of spreading information aimed at them. Eligibility criteria for the three groups of participants should be clearly provided through the information campaign. This includes informing male ex-combatants that women and girls are participants in DDR and that they (i.e., the men) face punishment if they do not release sex slaves. Women and girls should be informed that separate accommodation facil- ities and services (including registration) will be provided for them. Female staff should be present at all assembly areas to process women who report for DDR. Gender balance shall be a priority among staff in the assembly and cantonment sites. It is especially important that men see women in positions of authority in DDR processes. If there are no female leaders (including field officers), men are unlikely to take seriously education efforts aimed at changing their attitudes and ideas about militarized, masculine power. Therefore, information campaigns should emphasize the importance of female lead- ership and of coordination between local women\u2019s NGOs and other civil society groups. Registration forms and questionnaires should be designed to supply sex-disaggregated data on groups to be demobilized.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "d12e53b1-c306-44ff-98e6-e9c896ece4b3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 18, + "Paragraph": "Assembly: Female-specific interventions It is imperative that information on the DDR process, including eligibility and benefits, reach women and girls associated with armed groups or forces, as commanders may try to exclude them. In the past, commanders have been known to remove weapons from the possession of girls and women combatants when DDR begins. Public information and advocacy cam- paigners should ensure that information on women-specific assistance, as well as on women\u2019s rights, is transmitted through various media. Many female combatants, supporters, females associated with armed groups and forces, and female dependants were sexually abused during the war. Links should be developed between the DDR programme and the justice system \u2014 and with a truth and reconciliation commission, if it exists \u2014 to ensure that criminals are prosecuted. Women and girls par- ticipating in the DDR process should be made aware of their rights at the cantonment and demobilization stages. DDR practitioners may consider taking steps to gather information on human rights abuses against women during both stages, including setting up a separate and discreet reporting office specifically for this purpose, because the process of assembling testimonies once the DDR participants return to their communities is complicated. Female personnel, including translators, military staff, social workers and gender ex- perts, should be available to deal with the needs and concerns of those assembling, who are often experiencing high levels of anxiety and facing particular problems such as separation from family members, loss of property, lack of identity documents, etc. In order for women and girl fighters to feel safe and welcomed in a DDR process, and to avoid their self-demobilization, female workers at the assembly point are essential. Training should be put in place for female field workers whose role will be to interview female combatants and other participants in order to identify who should be included in DDR processes, and to support those who are eligible. (See Annex C for gender-sensitive interview questions.)", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "588d5911-405f-4b74-918a-572738347048", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 19, + "Paragraph": "Cantonment: Gender-aware interventions The physical layout of the reception centre should be structured so that women and girls may register separately from their male partner, and receive separate identity cards. This will help ensure the safety and autonomy of women and girls who are sex slaves or forced \u2018wives\u2019, for whom the assembly point may offer a rare opportunity for escape from their captors. Separate facilities will be made available to male and female DDR participants at the cantonment site. However, it is also important to make space available for families that do not wish to be separated. Men, women, boys and girls will initially be escorted to separate facilities, but reassured and shown that there will be frequent opportunities offered for con- tact in the early stages of the demobilization processes, as families may have joint decisions to make about their futures. However, women and girls should be given the option of being out of contact with their male counterparts, if they choose to be. Men, women, boys and girls should be offered equal (but, if necessary, separate) access to education about HIV/AIDS, including voluntary testing, and other health services and supplies (also see IDDRS 5.60 on HIV/AIDS and DDR). Efforts should be made to balance domestic duties between men and women so that rather than collecting fuel or water, women and girls can take equal advantage of briefings, retrainings and other facilities at the site. An unequal division of domestic duties can also make women and girls more likely to suffer gender-based violence as they leave the site to fetch water, food or fuel.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "088eb523-0e63-47ec-92c0-e7e9be7fe9af", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 19, + "Paragraph": "Cantonment: Female-specific interventions If women and girls are to take advantage of training and education opportunities offered in the cantonment phase, child-care provisions cannot be optional or considered as non-essential. In order to safeguard against sexual violence, latrines, ablution areas, and washing and kitchen facilities should be placed in open areas and should be well lit at night. Cooking facilities, fuel and water should be provided so that women and girls do not need to leave the cantonment area. Health care services, which include reproductive and psychosocial health services, are essential. Women and girls may have specific health and psychosocial needs, e.g., relating to maternity or gender-based violence. Cantonment sites should provide birthing kits, suffi- cient clean water, supplemental feeding and medical facilities. Women and girls who have been abducted and/or suffered sexual assault during and after the conflict should be assisted by women who are trained in trauma management and offered counselling services, pro- vided that these are culturally acceptable and appropriate. Such assistance is essential to allow female ex-combatants in particular to participate in training and receive any health care or counselling services required. Opportunities should be provided during cantonment to educate women and girls about their rights, e.g., the right to own land or the right to take legal action against those who have committed crimes against them. In some countries, demobilized soldiers are offered opportunities to be employed in new security structures. Female ex-combatants should be provided with the same opportuni- ties as their male counterparts to join the restructured police and security forces.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5266359f-3b1a-4ed8-b777-62bf656e1679", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 13, + "Paragraph": "Disarmament Weapons possession has traditionally been a criterion for eligibility in DDR programmes. Because women and girls are often less likely to possess weapons even when they are actively 5.60 engaged in armed forces and groups, and because commanders have been known to remove weapons from the possession of women and girls before assembly, this criterion often leads 4.10\tto the exclusion of women and girls from DDR processes (also see IDDRS 4.10 on Disarmament).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "39eb61ad-af76-45e7-884d-ff79e137afce", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 20, + "Paragraph": "Disarmament: Gender-aware interventions Women\u2019s equal access to secure disarmament sites is important to ensure that gendered stereo- types of male and female weapons ownership are not reinforced. Ongoing programmes to disarm, through weapons collections, weapons amnesties, the creation of new gun control laws that assist in the registration of legally owned weapons, programmes of action such as weapons in exchange for development (WED; also referred to as WfD), and other initiatives, should be put in place to support reintegration and devel- opment processes. Such initiatives should be carried out with a full understanding of the gender dynamics in the society and of how gun ownership is gendered in a given context. Media images that encourage or support violent masculinity should be discouraged. Other incentives can be given that replace the prestige and power of owning a weap- on, and social pressure can be applied when communities have a sense of involvement in weapons-collection processes. Men are traditionally associated with the use, ownership and promotion of small arms, and are injured and killed by guns in far larger numbers than are women. However, the difference between female and male gun ownership does not mean that women have no guns. They may pose threats to security and are not only nurturers, innocents and victims in situations of armed conflict.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "5ff676b7-083d-42ab-a17c-a726c7f38082", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 20, + "Paragraph": "Disarmament: Female-specific interventions At the weapons-collection sites, identification of female ex-combatants who return their weapons and female community members who hand in weapons on behalf of ex-combatants is vital in order to collect and distribute different types of information. Female ex-combatants can be a source of information about the number, location and situation of hidden weapons, and can be asked about these, provided there are adequate security measures to protect the identity of the informant. Programme staff should also ask female community members if they know any female ex-combatant, supporter or dependant who has \u2018self-reintegrated\u2019 and ask them to participate in any WED programmes and other disarmament processes.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "2fe148d9-7ac6-4b15-9172-059ff9cdf3e1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 20, + "Paragraph": "Arms reduction and control: Female-specific interventions WED projects are ideal opportunities for delivering specific training for women and girls, as such projects are often tied to the provision of services or goods that can reduce the burden of care disproportionately placed on women and girls in many parts of the world, such as water and fuel collection. Existing efforts of women\u2019s NGOs and female community leaders to raise awareness of weapons spread and misuse should be identified and recognized when planning long-term disarmament processes. Women\u2019s knowledge of trading routes, weapons caches, and other sources of hidden small arms and light weapons should be accessed, where this can be done safely, during the field assessment phase, and this information should be used in disarmament planning. Those conducting interviews will need to establish a close relationship with interviewees; and there is a moral responsibility on the part of such interviewers to protect their sources. When surveys are being carried out to determine attitudes to small arms and light weap- ons, women and girls (both those who participated in conflicts and community members) should be interviewed at the same time as, but separately from, men. Educating and including women prominently in disarmament activities can strengthen women\u2019s profile and leadership roles in the public sphere, and should be encouraged. Opportun- ities should be taken to link women\u2019s knowledge and awareness of disarmament to the pro- motion of their broader political participation and involvement in community development. Collected weapons should be properly guarded and, ideally, destroyed. The involvement of women\u2019s groups in monitoring weapons collection and destruction, and as participants in destruction ceremonies, can be a powerful way of solidifying community support for and investment in the peace process.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "d4d40d1c-f0bb-41a4-b8c5-73072ed58df1", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Resettlement: Female-specific interventions After demobilization, mechanisms should be put in place to allow female ex-combatants and supporters to return to their destination of choice using a safe means of transport that minimizes exposure to gender-based violence, re-recruitment and abduction or human trafficking. Female ex-combatants and supporters should be properly catered for and included in any travel assistance that is offered after encampment. If a journey will take several days, the needs of women and girls and their children should be catered for, with separate vehicles made available if required. Female ex-combatants and supporters should be free to choose where they will live, and can decide to return to a rural area from which they or their partner came, or to move to a semi-urban or urban area where they may have more freedom from traditional gender roles. Those who have been attached to an armed force or group for a long period of time might not know where they want to go, and therefore need more time and special support to help them decide. A transitional safety net should be put in place to help resettled female ex-combatants and supporters with housing, health care and counselling, and offer educational support to get their children (especially girls) into school. Female ex-combatants and supporters should be fully informed about, and able to access, any reintegration support services, e.g., a local demobilization support office, if one is established. Measures should be put in place to help reunify mothers and children.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "1191dfa7-ec00-4192-b34e-ca4ac0056531", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 21, + "Paragraph": "Social reintegration: Gender-aware interventions Ex-combatants who have been wounded or disabled in action, or have become chronically ill owing to exposure to combat, should be provided with medical care, counselling, reha- bilitation facilities and relevant vocational training. Counselling should also deal with problems such as drugs, alcohol and gender-based violence. These measures will reduce the burden of care that is carried by women and girls, usually unpaid, and can lead to nega- tive coping mechanisms, such as the withdrawal of girls from school to care for disabled relatives. Ex-combatants, their partners and dependants, and receiving families and communities need to be sensitized to the difficulties of readjustment to civilian life of persons participat- ing in or associated with armed groups and forces. Messages of reconciliation should also deal with the problems and specific needs of women and girls who may have suffered abuse in armed groups or forces. Leadership training for community leaders, including church leaders, traditional author- ities and women\u2019s NGOs, should be carried out before community sensitization projects begin, in order to inform them about community development projects associated with reintegration programmes and to strengthen their leadership skills. Training for community members should also include gender training. The media and arts should be used to exchange ideas and experiences and encourage a culture of peace, and respect for human rights and women\u2019s rights", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "7f472293-b2a1-4d6b-8557-4849e3c70ed0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Social reintegration: Female-specific interventions As part of the broad consultation carried out with a wide variety of social actors, community awareness-raising meetings should be held to prepare the community to receive ex-combat- ants. Inclusion of women and women\u2019s organizations in these processes shall be essential, as women often play a central role in post-conflict reconstruction and the provision of care. Receiving communities should be informed about the intention and use of reintegration programmes and their potential impact on community development and sustainable peace- building. WED projects should recognize the important role of women in development activities, and should organize information campaigns specifically for female community members. Resources should be allocated to train female community members, ex-combatants and supporters to understand and cope with traumatized children, including how to help ab- ducted girls gain demobilization and reintegration support. It is unfair to burden women with the challenges of reintegrating and rehabilitating child soldiers simply because they are usually the primary caregivers of children. Women\u2019s organizations should be supported; and should be trained to participate in healing and reconciliation work in general, and, in particular, to assist in the reconciliation and reintegration of ex-combatants from different factions. Have women in the post-conflict zone already begun the process of reconstruction after war? Is this work recognized and supported? The expertise of female ex-combatants and supporters \u2014 which may be non-traditional expertise \u2014 should be recognized, respected and utilized by other women. Female ex- combatants\u2019 reintegration should be connected to broader strategies aimed at women\u2019s post-conflict development in order to prevent resentment against fighters as a \u2018privileged\u2019 group. Radio networks should include women\u2019s voices and experiences when educating local people about those who are being reintegrated, to prevent potential tensions from developing. Community mental health practices (such as cleansing ceremonies) should be encour- aged to contribute to the long-term psychological rehabilitation of ex-combatants and to address women\u2019s and girls\u2019 specific suffering or trauma (often a result of sexualized violence), as long as they encourage and support rather than undermine women\u2019s and girls\u2019 human rights and well-being. Female ex-combatants should have equal access to legal aid or support to assist them in combating discrimination (in both the private and public spheres). The establishment of formal/informal network groups among female ex-combatants and supporters should be encouraged, with support from women\u2019s NGOs. This will give them an opportunity to support each other and foster leadership. Particularly for those who decide to go to a new place rather than home, such support will be essential.", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "011275a3-c654-4a32-a7cf-6eeb2a08bf7b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 23, + "Paragraph": "Economic reintegration Women and girls may have acquired skills during the conflict that do not fit in with tradi- tional ideas of appropriate work for women and girls, so female ex-combatants often find it more difficult than male ex-combatants to achieve economic success in the reintegration period, especially if they have not received their full entitlements under the DDR programme. Women often find it more difficult to get access to credit, especially the bigger amounts needed in order to enter the formal sectors of the economy. With few job opportunities, particularly within the formal sector, women and girls have limited options for economic success, which has serious implications if they are the main providers for their dependants. The burden of care that many women and girls shoulder means they are less able to take advantage of training and capacity-building opportunities that could offer them better opportunities for economic self-sufficiency.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "fba9f618-ddfb-4023-9fa0-bbd8d4436273", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 23, + "Paragraph": "Economic reintegration: Gender-aware interventions Measures should be put in place to prevent women ex-combatants, supporters, dependants and war widows from being forced to live on the fringes of the economy. Even excessive reliance on women\u2019s unpaid or low-paid NGO activity might become a substitute for their meaningful participation in the labour market. One of the greatest needs of ex-combatants and their families is access to land and housing. In securing these, specific gender dynamics should be taken into account, particu- larly when traditional practices do not allow female-headed households or women\u2019s land ownership. Legal reform should aim to get rid of this exclusion. In many societies, the production of crops and animal husbandry is divided among household members according to gender and age. This division of labour should be assessed and should be taken into account when providing reintegration assistance that is aimed at reviving the agricultural sector, improving food security and securing livelihoods for ex- combatants.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0c242132-ae0e-47a9-93de-4a2bcef79410", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Economic reintegration: Female-specific interventions Special measures have to be put in place to ensure that female participants have equal training and employment opportunities after leaving the cantonment site. Funding should be allocated for childcare to be provided, and for training to be conducted as close as possible to where the women and girls live. This will also reduce the chances of irregular attendance as a result of problems with transport (e.g., infrequent buses) or mobility (e.g., cultural restric- tions on women\u2019s travel). Barriers such as employers refusing to hire women ex-combatants or narrow expectations of the work women are permitted to do should be taken into account before retraining is offered. Potential employees should be identified for sensitization train- ing to encourage them to employ female ex-combatants. Women and girls should be given a say in determining the types of skills they learn. They should be provided with options that will allow them to build on useful skills acquired during their time with armed groups and forces, including skills that may not usually be considered \u2018women\u2019s work\u2019, such as driving or construction jobs. They should be taught vocational skills in fields for which there is likely to be a long-term demand. Those success- fully completing vocational training should be issued with certificates confirming this. Widows, widowers and dependants of ex-combatants killed in action may need financial and material assistance. They should be assisted in setting up income-generating initiatives. Widows and widowers should be made active participants in reintegration training pro- grammes and should also be able to benefit from credit schemes. Because women\u2019s homes are often the main geographical base for their work, technical and labour support systems should be in place to assist demobilized women in building a house and to support self-employment opportunities. Single or widowed women ex-combatants should be recognized as heads of household and permitted to own and rent existing housing and land. Measures should be taken to protect women ex-combatants or war widows from being forced into casual labour on land that is not their own. Where needed, particularly in rural areas, women should be provided with training in agricultural methods and they should have the right to farm cash crops and own and use livestock, as opposed to engaging in subsistence agriculture. Security should be provided for women on their way to work, or to the marketplace, particularly to protect them from banditry, especially in places with large numbers of small arms. Women should have equal access to communally owned farming tools and water- pumping equipment, and have the right to own such equipment. Greater coordination with development agencies and women\u2019s NGOs that carry out projects to assist women, such as adult literacy courses, microcredit facilities and family planning advice, is essential to make this reintegration programme sustainable and to reach all beneficiaries.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bc3b49eb-a072-46b4-9d39-1a644c505aec", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 25, + "Paragraph": "Terms and definitions Empowerment: Refers to women and men taking control over their lives: setting their own agendas, gaining skills, building self-confidence, solving problems and developing self- reliance. No one can empower another; only the individual can empower herself or himself to make choices or to speak out. However, institutions, including international cooperation agencies, can support processes that can nurture self-empowerment of individuals or groups.3 Empowerment of participants, regardless of their gender, should be a central goal of any DDR interventions, and measures should be taken to ensure that no particular group is disem- powered or excluded through the DDR process. Gender: The social attributes and opportunities associated with being male and female and the relationships between women, men, girls and boys, as well as the relations between women and those between men. These attributes, opportunities and relationships are socially con- structed and are learned through socialization processes. They are context/time-specific and changeable. Gender is part of the broader sociocultural context. Other important criteria for sociocultural analysis include class, race, poverty level, ethnic group and age.4 The concept of gender also includes the expectations held about the characteristics, aptitudes and likely behaviours of both women and men (femininity and masculinity). The concept of gender is vital, because, when it is applied to social analysis, it reveals how women\u2019s sub- ordination (or men\u2019s domination) is socially constructed. As such, the subordination can be changed or ended. It is not biologically predetermined, nor is it fixed forever.5 As with any group, interactions among armed forces and groups, members\u2019 roles and responsibili- ties within the group, and interactions between members of armed forces/groups and policy and decision makers are all heavily influenced by prevailing gender roles and gender rela- tions in society. In fact, gender roles significantly affect the behaviour of individuals even when they are in a sex-segregated environment, such as an all-male cadre. Gender analysis: The collection and analysis of sex-disaggregated information. Men and women perform different roles in societies and in armed groups and forces. This leads to women and men having different experience, knowledge, talents and needs. Gender analysis explores these differences so that policies, programmes and projects can identify and meet the different needs of men and women. Gender analysis also facilitates the strategic use of distinct knowledge and skills possessed by women and men, which can greatly improve the long-term sustainability of interventions.6 In the context of DDR, gender analysis should be used to design policies and interventions that will reflect the different roles, capacity and needs of women, men, girls and boys. Gender balance: The objective of achieving representational numbers of women and men among staff. The shortage of women in leadership roles, as well as extremely low numbers of women peacekeepers and civilian personnel, has contributed to the invisibility of the needs and capacities of women and girls in the DDR process. Achieving gender balance, or at least improving the representation of women in peace operations, has been defined as a strategy for increasing operational capacity on issues related to women, girls, gender equality and mainstreaming.7 Gender equality: The equal rights, responsibilities and opportunities of women and men and girls and boys. Equality does not mean that women and men will become the same, but that women\u2019s and men\u2019s rights, responsibilities and opportunities will not depend on whether they are born male or female. Gender equality implies that the interests, needs and priorities of both women and men are taken into consideration, while recognizing the di- versity of different groups of women and men. Gender equality is not a women\u2019s issue, but should concern and fully engage men as well as women. Equality between women and men is seen both as a human rights issue and as a precondition for, and indicator of, sus- tainable people-centred development.8 Gender equity: The process of being fair to men and women. To ensure fairness, measures must often be put in place to compensate for the historical and social disadvantages that prevent women and men from operating on a level playing field. Equity is a means; equality is the result.9 Gender mainstreaming: Defined by the 52nd session of the UN Economic and Social Council (ECOSOC) in 1997 as \u201cthe process of assessing the implications for women and men of any planned action, including legislation, policies or programmes, in all areas and at all levels. It is a strategy for making women\u2019s as well as men\u2019s concerns and experiences an integral dimension of the design, implementation, monitoring and evaluation of policies and pro- grammes in all political, economic and societal spheres so that women and men benefit equally and inequality is not perpetrated. The ultimate goal of this strategy is to achieve gender equality.\u201d10 Gender mainstreaming emerged as a major strategy for achieving gen- der equality following the Fourth World Conference on Women held in Beijing in 1995. In the context of DDR, gender mainstreaming is necessary in order to ensure that women and girls receive equitable access to assistance programmes and packages, and it should, there- fore, be an essential component of all DDR-related interventions. In order to maximize the impact of gender mainstreaming efforts, these should be complemented with activities that are directly tailored for marginalized segments of the intended beneficiary group. Gender relations: The social relationship between men, women, girls and boys. Gender relations shape how power is distributed among women, men, girls and boys and how that power is translated into different positions in society. Gender relations are generally fluid and vary depending on other social relations, such as class, race, ethnicity, etc. Gender-aware policies: Policies that utilize gender analysis in their formulation and design, and recognize gender differences in terms of needs, interests, priorities, power and roles. They recognize further that both men and women are active development actors for their community. Gender-aware policies can be further divided into the following three policies: Gender-neutral policies use the knowledge of gender differences in a society to reduce biases in development work in order to enable both women and men to meet their prac- tical gender needs. Gender-specific policies are based on an understanding of the existing gendered division of resources and responsibilities and gender power relations. These policies use knowl- edge of gender difference to respond to the practical gender needs of women or men. Gender-transformative policies consist of interventions that attempt to transform existing distributions of power and resources to create a more balanced relationship among women, men, girls and boys by responding to their strategic gender needs. These poli- cies can target both sexes together, or separately. Interventions may focus on women\u2019s and/or men\u2019s practical gender needs, but with the objective of creating a conducive environment in which women or men can empower themselves.11 Gendered division of labour is the result of how each society divides work between men and women according to what is considered suitable or appropriate to each gender.12 Atten- tion to the gendered division of labour is essential when determining reintegration oppor- tunities for both male and female ex-combatants, including women and girls associated with armed forces and groups in non-combat roles and dependants. Gender-responsive DDR programmes: Programmes that are planned, implemented, moni- tored and evaluated in a gender-responsive manner to meet the different needs of female and male ex-combatants, supporters and dependants. Gender-responsive objectives: Programme and project objectives that are non-discrimina- tory, equally benefit women and men and aim at correcting gender imbalances.13 Practical gender needs: What women (or men) perceive as immediate necessities, such as water, shelter, food and security.14 Practical needs vary according to gendered differences in the division of agricultural labour, reproductive work, etc., in any social context. Sex: The biological differences between men and women, which are universal and deter- mined at birth.15 Sex-disaggregated data: Data that are collected and presented separately on men and women.16 The availability of sex-disaggregated data, which would describe the proportion of women, men, girls and boys associated with armed forces and groups, is an essential precondition for building gender-responsive policies and interventions. Strategic gender needs: Long-term needs, usually not material, and often related to struc- tural changes in society regarding women\u2019s status and equity. They include legislation for equal rights, reproductive choice and increased participation in decision-making. The notion of \u2018strategic gender needs\u2019, first coined in 1985 by Maxine Molyneux, helped develop gender planning and policy development tools, such as the Moser Framework, which are currently being used by development institutions around the world. Interventions dealing with stra- tegic gender interests focus on fundamental issues related to women\u2019s (or, less often, men\u2019s) subordination and gender inequities.17 Violence against women: Defined by the UN General Assembly in the 1993 Declaration on the Elimination of Violence Against Women as \u201cany act of gender-based violence that results in, or is likely to result in physical, sexual or psychological harm or suffering to women, including threats of such acts, coercion or arbitrary deprivation of liberty, whether occurring in public or in private. Violence against women shall be understood to encom- pass, but not be limited to, the following: Physical, sexual and psychological violence occurring in the family, including batter- ing, sexual abuse of female children in the household, dowry-related violence, marital rape, female genital mutilation and other traditional practices harmful to women, non- spousal violence and violence related to exploitation; Physical, sexual and psychological violence occurring within the general community, including rape, sexual abuse, sexual harassment and intimidation at work, in educa- tional institutions and elsewhere, trafficking in women and forced prostitution; Physical, sexual and psychological violence perpetrated or condoned by the State, wherever it occurs.\u201d18", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "0b5e33b5-002a-405f-bc8b-cefabf176a71", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Annex B: DDR gender checklist for peace operations assessment missions19 How many women and girls are in and associated with the armed forces and groups? What roles have they played? Are there facilities for treatment, counselling and protection to prevent sexualized vio- lence against women combatants, both during the conflict and after it? Who is demobilized and who is retained as part of the restructured force? Do women and men have the same right to choose to be demobilized or retained? Is there sustainable funding to ensure the long-term success of the DDR process? Are special funds allocated to women, and if not, what measures are in place to ensure that their needs will receive proper attention? Has the support of local, regional and national women\u2019s organizations been enlisted to aid reintegration? Has the collaboration of women leaders in assisting ex-combatants and widows returning to civilian life been enlisted? Are existing women\u2019s organizations being trained to understand the needs and experiences of ex-combatants? If cantonment is being planned, will there be separate and secure facilities for women? Will fuel, food and water be provided so women do not have to leave the security of the site? If a social security system exists, can women ex-combatants easily access it? Is it speci- fically designed to meet their needs and to improve their skills? Can the economy support the kind of training women might ask for during the demobi- lization period? Have obstacles, such as narrow expectations of women\u2019s work, been taken into account? Will childcare be provided to ensure that women have equitable access to training opportunities? Do training packages offered to women reflect local gender norms and standards about gender-appropriate behaviour or does training attempt to change these norms? Does this benefit or hinder women\u2019s economic independence? Are single or widowed female ex-combatants recognized as heads of households and permitted access to housing and land? Are legal measures in place to protect their access to land and water?Annex D: Gender-responsive DDR programme management frameworks and indicators", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "2c67e727-6cc1-4e1b-a92a-fe5c3bb66bc9", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 31, + "Paragraph": "Gender-responsive field/needs assessment Field/Needs assessment for female ex-combatants, supporters and dependants should be carried out independently of general need assessment, because of the specific needs and concerns of women. Those assessing the needs of women should be aware of gender needs in conflict situations. The use of gender-analysis frameworks should be strongly encouraged to collect information and data on the following: The methodology of data collection should be participatory, and sensitive to gender- related issues. The assessment group should include representatives from local women\u2019s organizations and the local community. This might mean that local female interpreter(s) and translator(s) are needed (also see IDDRS 3.20 on DDR Programme Design).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "eb0cdec9-cfb3-4c7a-828b-d68f6950600e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 31, + "Paragraph": "Matrix to assess capacities and vulnerabilities The Capacities and Vulnerabilities Framework21 can be used to plan and measure the out- come of gender-responsive DDR programmes. This framework is also useful for assessing needs by mapping the strengths and weaknesses of the target population. The matrix below is an example of how the framework can be used. A similar approach can be created in the field, based on collective interviews and/or focus groups with women\u2019s NGOs, community leaders, female ex-combatants and supporters: Capacities refer to the existing strengths of individuals and groups to cope with a crisis and to improve the quality of their lives; Vulnerabilities refer to factors that weaken the people\u2019s ability to create positive changes in their lives and community.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "65497248-7092-4d9e-aa11-c5238d2b1399", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 32, + "Paragraph": "Gender-responsive programme design The formulation of a project/programme should reflect the results of needs assessments of female ex-combatants and other FAAFGs. Gender dimensions should be included in the following components: programme goals; project objectives; outputs; indicative activities; inputs; indicators (for baseline data and monitoring and evaluation). 3.20\t(Also see IDDRS 3.20 on DDR Programme Design.)", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "b8fc4229-1cfc-4ee5-b356-1dce0472c67f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 33, + "Paragraph": "Gender-responsive budgeting in DDR programming The formulation of a gender-responsive budget is a way of ensuring that female-specific interventions will be sufficiently funded. It also ensures that equal attention is paid to females and males by disaggregating costs by gender. Budgetary processes should ensure the par- ticipation of a DDR gender adviser, women\u2019s organizations and community members in order to encourage accountability and transparency. 3.41 3.50 In addition to objectives, indicators and outputs defined in the programme design, there is a need to specify the following categories within a results-based budgeting framework: female-specific activities (e.g., job training for female ex-combatants, counselling for the victims of gender-based violence) and its inputs (trained staff, adequate facilities); gender training (to programme staff, government officials, ex-combatants, supporters and dependants) and its inputs (trained staff, adequate facilities); gender adviser(s); unit cost (per participant) of all activities disaggregated by gender. It is also advisable to ask donors to specify the allocation of funds to female-specific interventions and gender training (also see IDDRS 3.41 on Finance and Budgeting).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "785e01c0-2e4f-4f1d-885b-4c3798f9f828", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 34, + "Paragraph": "4. Gender-responsive monitoring and evaluation Gender-responsive monitoring and evaluation (M&E) is necessary to find out if DDR pro- grammes are meeting the needs of women and girls, and to examine the gendered impact of DDR. At present, the gender dimensions of DDR are not monitored and evaluated effec- tively in DDR programmes, partly because of poorly allocated resources, and partly because there is a shortage of evaluators who are aware of gender issues and have the skills needed to include gender in their evaluation practices. To overcome these gaps, it is necessary to create a primary framework for gender- responsive M&E. Disaggregating existing data by gender alone is not enough. By identifying a set of specific indicators that measure the gender dimensions of DDR programmes and their impacts, it should be possible to come up with more comprehensive and practical recommendations for future programmes. The following matrixes show a set of gender- related indicators for M&E (also see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes). These matrixes consist of six M&E frameworks: Monitoring programme performance (disarmament; demobilization; reintegration) Monitoring process Evaluation of outcomes/results Evaluation of impact Evaluation of budget (gender-responsive budget analysis) Evaluation of programme management. The following are the primary sources of data, and data collection instruments and techniques: national and municipal government data; health-related data (e.g., data collected at ante-natal clinics); programme/project reports; surveys (e.g., household surveys); interviews (e.g., focus groups, structured and open-ended interviews). Whenever necessary, data should be disaggregated not only by gender (to compare men and women), but also by age, different role(s) during the conflict, location (rural/urban) and ethnic background. Gender advisers in the regional office of DDR programme and general evaluators will be the main coordinators for these gender-responsive M&E activities, but the responsibility will fall to the programme director and chief as well. All information should be shared with donors, programme management staff and programme participants, where relevant. Key findings will be used to improve future programmes and M&E. The following tables offer examples of gender analysis frameworks and gender-responsive budgeting analysis for DDR programmes. Note: Female ex-combatants = FXC; women associated with armed groups and forces = FS; female dependants = FD", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8b72f591-1bec-488c-90d1-3d65df2ad945", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 35, + "Paragraph": "Gender-responsive monitoring of programme performance Purpose of monitoring: To monitor programme performance for female ex-combatants, supporters and dependants at each stage of DDR: monitoring of disarmament; monitoring of demobilization; monitoring of reintegration; Data collection frequency: Every month during the implementation of the programme.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "a6595e7f-a026-4b0b-bccb-c2fb49effdc3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 35, + "Paragraph": "Monitoring of disarmament Key questions to ask: To what extent did the disarmament programme succeed in disarming female ex- combatants? To what extent did the disarmament programme provide gender-sensitive and female- specific services?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "81d1dc9a-0cc7-4ed6-a576-9b913e3a03ca", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 35, + "Paragraph": "Monitoring of demobilization Key questions to ask: To what extent did the demobilization programme succeed in demobilizing female ex-combatants and supporters? To what extent did the demobilization programme provide gender-sensitive and female- specific services?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "96ff82f0-a751-4c9f-abbf-7fdb00097e98", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 36, + "Paragraph": "Monitoring of reintegration Key questions to ask: To what extent did the reintegration programme succeed in reintegrating female ex- combatants, supporters and dependants? To what extent did the reintegration programme provide gender-sensitive and female- specific services?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "9a605787-29be-423f-bc61-5aa71d8374ae", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 37, + "Paragraph": "Gender-responsive monitoring of process Purpose of evaluation: To examine if and to what extent DDR programmes meet the needs of female ex-combatants, supporters and dependants, and to examine the level of participation of women; Process: (1) Reaching the right target population; (2) meeting the needs of stakeholders; the dynamics of participation of stakeholders; Gendered dimensions of process: (1) Reaching female target population; (2) meeting the needs of women and girls; (3) equal participation of women and women\u2019s organi- zations; Data collection frequency: Every three weeks during the implementation of the pro- gramme. Key questions to ask: To what extent did the DDR programme meet the needs of female ex-combatants, FAAGFs, and dependants? To what extent did the DDR programme encourage and support the participation of women and women\u2019s organizations at each stage of the programme?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "664dc007-90cc-4136-931b-fb7dec829c1f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 37, + "Paragraph": "Gender-responsive evaluation of outcomes/results Purpose of evaluation: To examine the contribution of DDR programmes to the creation of security for female ex-combatants, FAAGFs and dependants; Outcomes and intermediate results: (1) Capacity-building of ex-combatants and com- munity members; (2) human security; (3) social capital; Gender dimensions of outcomes: (1) Reduction of gender-based violence and dis- crimination against women and girls; (2) human security for women and girls; (3) capacity-building of female ex-combatants, FAAGFs and dependants; Data collection frequency: Every three months upon the completion of programme. Key question to ask: To what extent did the DDR programme increase human security (physical, psycho- logical, economic, social, political, cultural) for female ex-combatants, FAAFGs and dependants?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "e3d36a3e-982d-4b36-b1b9-2fb488b446c8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 38, + "Paragraph": "Gender-responsive evaluation of impact Purpose of evaluation: To examine (1) the impact of DDR on empowerment of female ex-combatants, FAAGFs and dependants; (2) the contribution of DDR programme towards the creation of gender-responsive community development: Impact/Long-term goals: (1) Community development; (2) sustainable peace; Gender dimensions of impact: (1) Gender equality in community development and peace; (2) empowerment of women; Data collection frequency: Every six months for at least one to three years after the completion of the programme. Key questions to ask: To what extent did the DDR programme empower female ex-combatants, FAAGFs and dependants? To what extent did the reintegration programme encourage and support the creation of gender-responsive community development?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1946ccb8-728a-4e1c-97a9-7bb6d00fd4a4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": null, + "Paragraph": "Gender-responsive evaluation of budget (gender-responsive budgeting analysis) Purpose of evaluation: To examine the level of gender mainstreaming in the DDR budget; Budget: Allocation of resources, balancing revenue and expenditure, cost efficiency; Gender dimensions of budget: (1) Allocation of sufficient resources for female-specific interventions and gender-related interventions, such as gender training; (2) equal treat- ment of male and female ex-combatants in the overall programmes; (3) participation of women and women\u2019s NGOs in budgetary processes; Data collection frequency: Every stage of the budget cycle (preparation, approval, appre- ciation, auditing, revision, reporting). Key questions to ask: To what extent did the budget specify female-specific and gender-related activities, their inputs, and the cost? To what extent was the allocation of resources adequate to effectively implement female- specific and gender-specific activities? To what extent did gender specialists/advisers and women\u2019s organizations participate in the processes of the budget cycle (e.g., preparation, auditing)?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "f8ff42cd-b0c5-4f0e-ad7b-aebce7f00694", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.10-Women-Gender-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.10-Women-Gender-and-DDR", + "PageNum": 40, + "Paragraph": "Evaluation to assess the level of gender mainstreaming in programme management Purpose of evaluation: To examine the level of gender mainstreaming in each DDR programme/project cycle and its management; Programme/Project cycle: (1) Situational analysis and need assessment; (2) project design; (3) project appraisal; (4) secure funding; (5) project implementation; (6) M&E; Gender dimensions of project cycle: (1) Assessment of women\u2019s and girls\u2019 participation; (2) gender-responsive project design and M&E; (3) understanding and implementation of gender mainstreaming among programme staff; Data collection frequency: Every month during the implementation of the programme, and before and after the implementation of the programme. Key question to ask: To what extent was gender mainstreamed in the DDR programme management and its project cycle?", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "7fb9449f-97af-4d5e-b60c-cf2c22ef856e", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": null, + "Paragraph": "Summary The United Nations (UN) Security Council and General Assembly have noted that a number of converging factors make conflict and post-conflict settings high risk environments for the spread of HIV, and that there is an elevated risk of infection among uniformed services and ex-combatants. This module outlines the strategies to address HIV/AIDS during disarm- ament, demobilization and reintegration (DDR) processes, in the interests of the individuals concerned, the sustainability of reintegration efforts and general post-conflict recovery. National beneficiaries should provide the lead for HIV/AIDS initiatives, and interven- tions should be as inclusive as possible, while acknowledging the limitations of DDR HIV/ AIDS programmes. A risk-mapping exercise should include the collection of baseline data on knowledge, attitudes and vulnerability, HIV/AIDS prevalence, and identify existing capacity. The basic requirements for HIV/AIDS programmes in DDR are: identification and training of HIV focal points within DDR field offices; the development of HIV/AIDS awareness material and provision of basic awareness training for target groups, with peer education programmes during the reinsertion and reintegration phases to build capacity. Awareness training can start before demobiliza- tion, depending on the nature of soldiers\u2019/ex-combatants\u2019 deployment and organizational structure; the provision of voluntary confidential counselling and testing (VCT) during demobi- lization and reintegration. An HIV test, with counselling, should be routinely offered (opt-in) as a standard part of medical screening in countries with an HIV prevalence of 5 percent or more. VCT should be provided in all settings throughout the DDR process, building on local services. Undergoing an HIV test, however, should not be a condition for participation in the DDR process, although planners should be aware of any national legislation that may exclude HIV-positive personnel from newly formed military or civil defence forces; screening and treatment for sexually transmitted infections (STIs), which should be a standard part of health checks for participants; the provision of condoms and availability of post-exposure prophylaxis (PEP) kits dur- ing demobilization, reinsertion and reintegration; treatment for opportunistic infections and, where feasible, referral for anti-retroviral (ARV) treatment within the national health care system; the implementation of HIV/AIDS public information and awareness campaigns to sensitize \u2018receiving\u2019 communities, to raise general awareness and to reduce possible stigma and discrimination against returning combatants, including women associated with armed forces and groups, which could undermine reintegration efforts. Planning in communities needs to start in advance of demobilization. In instances where the time allotted for a specific phase is very limited or has been re- duced, as when there is a shortened cantonment period, it must be understood that the HIV/ AIDS requirements envisaged are not dropped, but will be included in the next DDR phase.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "32b24aad-fad5-4aed-96dc-43072410388d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 4, + "Paragraph": "Module scope and objectives This module aims to provide policy makers, operational planners and DDR officers with guidance on how to plan and implement HIV/AIDS programmes as part of a DDR frame- work. It focuses on interventions during the demobilization and reintegration phases. A basic assumption is that broader HIV/AIDS programmes at the community level fall outside the planning requirements of DDR officers. Community programmes require a multisectoral approach and should be sustainable after DDR is completed. The need to integrate HIV/ AIDS in community-based demobilization and reintegration efforts, however, can make this distinction unclear, and therefore it is vital that the national and international part- ners responsible for longer-term HIV/AIDS programmes are involved and have a lead role in DDR initiatives from the outset, and that HIV/AIDS is included in national recon- struction. DDR programmes need to integrate HIV concerns and the planning of national HIV strategies need to consider DDR. The importance of HIV/AIDS sensitization and awareness programmes for peace- keepers is acknowledged, and their potential to assist with programmes is briefly discussed. Guidance on this issue can be provided by mission-based HIV/AIDS advisers, the Depart- ment of Peacekeeping Operations and the Joint UN Programme on HIV/AIDS (UNAIDS).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8d769b72-eeb2-4600-93bc-00decdffc71d", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 4, + "Paragraph": "Terms, definitions and abbreviations Annex A contains a list of terms, definitions and abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of inte- 1.20\tgrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019 and \u2018may\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u201ca) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. \u2018may\u2019 is used to indicate a possible method or course of action.\u201d", + "Can": 0, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "0bd2d2fc-ebc1-4c77-8112-3fcbde3c5509", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 4, + "Paragraph": "Introduction AIDS is a global issue. Every region of the world is affected and all are reporting increases in HIV infection rates. There is still no cure and no vaccine. Access to ARV treatment, which mitigates the effects of the virus, is being scaled up in low- and middle-income countries; but an emphasis on preventing new infections remains paramount. HIV/AIDS challenges human rights and gender relations, aggravates socio-economic crises and undermines \u2018human security\u2019. In the most severely affected countries, AIDS threatens to deplete the supply of skilled labour, reverse economic progress and under- mine food security. It overwhelms health systems and changes the demographic profile of nations.1 In July 2000, Security Council resolution 1308 (S/RES/1308) recognized that the \u201cspread of HIV/AIDS can have a uniquely devastating impact on all sectors and levels of society\u201d. In addition, resolution 1308 recognized that the HIV/AIDS pandemic is \u201cexacerbated by conditions of violence and instability\u201d. DDR programmes often take place in areas of high HIV/AIDS prevalence or high-risk environments, and ex-combatants are considered a high-risk group. As noted by the Inter- Agency Standing Committee (IASC), the very characteristics that define a complex emer- gency, such as conflict, social instability, poverty and powerlessness, are those that favour the spread of HIV and other sexually transmitted infections (STIs). Mass displace- ments can result in the movement of people between high and low HIV/AIDS prevalence areas, especially with migration towards urban settings. The breakdown of social networks and support mechanisms place women and children at an increased risk of violence, and can force them into having sex to gain access to basic needs such as food, water and security. The risk of HIV is further increased when rape and sexual abuse are used as tools of war, as illustrated by the recent conflicts in Haiti, Liberia and Sudan. The UN General Assembly\u2019s 2001 Declaration of Commitment on HIV/AIDS, endorsed by General Assembly resolution A/RES/S-26/2, further emphasized the concern that con- flicts contribute to the spread of HIV, and recognized that \u201cpopulations destabilized by armed conflict, humanitarian emergencies and natural disasters, including refugees, inter- nally displaced persons and in particular women and children, are at increased risk of exposure to HIV infection\u201d. In some circumstances, however, conflict may actually slow the transmission of HIV in pockets of communities or specific areas, as it restricts access and trade routes, and it is the post-conflict phase including, potentially, the reintegration process, that sees an increase in HIV vulnerability.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "159a3654-bc00-4ee6-ab2a-32918674e322", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 5, + "Paragraph": "UN institutional mandates and responsibilities A number of UN resolutions and declarations highlight the obligation to include HIV/AIDS initiatives in responses to conflict and provide the legal framework for such a requirement: Security Council resolution 1308 (S/RES/1308) of 2000 and Presidential Statement (S/PRST/2005/33) of 2005; Security Council resolution 1325 (S/RES/1325) of 2000; UN General Assembly HIV/AIDS Declaration of Commitment of June 2001, endorsed by General Assembly resolution A/RES/S-26/2 and reiterated by General Assembly A/RES/60/262.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "169905d7-e71b-4d70-a026-6a28ff9806bb", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 5, + "Paragraph": "Security Council resolution 1308 and Presidential Statement 2005/33 Security Council resolution 1308 (2000) \u201con the responsibility of the Security Council in the maintenance of international peace and security: HIV/AIDS and international peace- keeping operations\u201d,2 calls for HIV/AIDS training and prevention programmes for peace- keeping personnel. In addition, by recognizing the devastating impact that HIV/AIDS has on all sectors of society and by stressing that \u201cthe HIV/AIDS pandemic, if unchecked, may pose a risk to stability and security\u201d, the resolution points to a broader framework and obli- gation to integrate HIV/AIDS initiatives into post-conflict programmes, including DDR. Furthermore, the resolution stresses the importance of a coordinated approach among UN agencies, and essentially calls for the mainstreaming of HIV/AIDS into their respective mandates. Following discussions in 2005 on the implementation of Security Council resolu- tion 1308 (2000), the Security Council Presidential Statement (S/PRST/2005/33) supported the efforts of peacekeeping missions to integrate HIV/AIDS awareness into their activities and outreach projects for vulnerable communities.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "77761e1b-4af2-4e01-ad6b-21f659b3e00b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 6, + "Paragraph": "Security Council resolution 1325 Security Council resolution 1325 (2000) \u201con Women, peace and security\u201d3 encourages \u201call involved in the planning for disarmament, demobilization and reintegration to consider the different needs of female and male ex-combatants and to take into account the needs of their dependants\u201d. Consideration of HIV/AIDS interventions and requirements comes under this obligation. Furthermore, the resolution makes specific reference for the need to provide HIV/AIDS training for military, civilian police, and civilian personnel deployed in peace- keeping operations.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "87a2e07c-89f5-4e42-bb25-ab36a9e2086a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": null, + "Paragraph": "General Assembly Declaration of Commitment on HIV/AIDS and General Assembly resolutions A/RES/S-26/2 and A/RES/60/262 The UN General Assembly Special Session on HIV/AIDS Declaration of Commitment (June 2001), endorsed by resolution A/RES/S-26/2 and reiterated in 2006 by resolution A/RES/ 60/262, established a common set of targets and agreed strategies to reduce the spread of HIV and mitigate its impact. It called for HIV/AIDS components to be included in interna- tional assistance programmes in crisis situations. More specifically, in addition to training for personnel involved in peacekeeping operations, the Declaration called on Member States \u201cby 2003 to have in place national strategies to address the spread of HIV among national uniformed services, where this is required, including armed forces and civil defence forces\u201d (para. 77). The obligation to include strategies to address HIV/AIDS in DDR programmes is clear for two reasons. First, national uniformed (government) forces, directly referred to in the Declaration, and non-State combatants face HIV risks. Second, by extension, there is a need to consider HIV in broader security sector reform (SSR) initiatives and efforts to establish newly integrated national armed service and civil defence forces in post-conflict settings, as DDR is often closely linked to SSR. The Declaration also points to national uniformed services as being a possible resource in themselves for HIV/AIDS initiatives, calling on Member States to \u201cconsider ways of using personnel from these services who are educated and trained in HIV/AIDS awareness and prevention to assist with HIV/AIDS awareness and prevention activities, including participation in emergency, humanitarian, disaster relief and rehabilitation assistance\u201d (para. 77).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "1a5fdd7c-e5d4-49ff-abe1-81ca1c537a8f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": null, + "Paragraph": "Inter-Agency Standing Committee guidelines on HIV/AIDS interventions in emergency settings The Inter-Agency Standing Committee, which is the primary mechanism for facilitating inter-agency decision-making in response to complex emergencies and natural disasters, issued guidelines in 2004 for HIV/AIDS interventions in emergency settings. The guide- lines are a practical handbook and planning tool to enable governments and cooperating organizations, including UN agencies and non-governmental organizations (NGOs), to make the minimum required multisectoral response to HIV/AIDS during the early phase of emergency situations, as well as during the stabilization phase.4 Most of the recommended actions for vulnerable groups are also valid for DDR and addressing HIV/AIDS among DDR participants (see Annex B).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "129e13a6-96f4-4098-81c6-c0fc52dc91a3", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 7, + "Paragraph": "Rationale for HIV/AIDS integration into DDR programming As noted in the introduction, a number of factors make conflict and post-conflict settings high-risk environments for the spread of HIV. The age range, mobility and risk taking ethos of armed forces and groups can make them high-risk to HIV \u2014 with some national mili- taries reporting higher rates of HIV than their civilian counterparts \u2014 and \u2018core transmitters\u2019 to the wider population.5 Child soldiers are often (though not always) sexually active at a much earlier age and are therefore potentially exposed to HIV. Female combatants, women associated with fighting forces, abductees and dependants are frequently at high risk, given widespread sexual violence and abuse and because, in situations of insecurity and destitu- tion, sex is often exchanged for basic goods or protection. In some conflicts, drugs have been used to induce in combatants a fighting spirit and a belief in their own invincibility. This not only increases risk behaviour but also, in the case of intravenous drug users, can directly result in HIV infection as the virus can be transmitted through the sharing of in- fected needles. Integrating HIV/AIDS into DDR initiatives is necessary to meet the immediate health and social needs of the participant and the interests of the wider community, and it is impor- tant for the long-term recovery of the country. The impact of HIV/AIDS at every level of society undermines development and makes it more difficult for a country to emerge from conflict and achieve social and economic stability. The sustainability of reintegration efforts requires that HIV/AIDS awareness and prevention strategies be directed at DDR partici- pants, beneficiaries and stakeholders in order to prevent increases in HIV rates or more generalized epidemics developing in countries where HIV infection may be mainly limited to particular high-risk groups. Negative community responses to returning former combatants may also arise and make HIV a community security issue. To assist reintegration into communities, it is necessary to counter discrimination against, and stigmatization of, those who are (or are perceived to be) HIV-positive. In some instances, communities have reacted with threats of violence; such responses are largely based on fear because of misinformation about the disease. In cases where SSR follows a DDR process, former combatants may enter into reintegrated/ reformed military, police and civil defence forces. In many developing countries, ministries of defence and of the interior are reporting high HIV infection rates in the uniformed services, which are compromising command structures and combat readiness. Increasingly, there are national policies of screening recruits and excluding those who are HIV-positive. Engaging in HIV/AIDS prevention at the outset of DDR will help to reduce new in- fections, thus \u2014 where national policies of HIV screening are in place \u2014 increasing the pool of potential candidates for recruitment, and will assist in planning for alternative occu- pational support and training for those found to be HIV-positive.6 DDR programmes offer a unique opportunity to target high-risk groups for sensitization. In addition, with the right engagement and training, former combatants have the potential to become \u2018change agents\u2019, assisting in their communities with HIV/AIDS prevention activi- ties, and so becoming part of the solution rather than being perceived as part of the problem.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 0, + "Must": 0 + }, + { + "ID": "287e1dfb-9959-4b78-b222-82498e8e62b0", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 8, + "Paragraph": "Guiding principles Lead to be provided by national beneficiaries/stakeholders. HIV/AIDS initiatives within the DDR process will constitute only a small element of the overall national AIDS strategy (assum- ing there is one). It is essential that local actors are included from the outset to guide the process and implementation, in order to harmonize approaches and ensure that awareness- raising and the provision of voluntary confidential counselling and testing and support, including, wherever possible, treatment, can be sustained. Information gained in focus group discussions with communities and participants, particularly those living with HIV/AIDS, should inform the design of HIV/AIDS initiatives. Interventions must be sensitive to local culture and customs. Inclusive approach. As far as possible, it is important that participants and beneficiaries have access to the same/similar facilities \u2014 for example, voluntary confidential counselling and testing \u2014 so that programmes continue to be effective during reintegration and to reduce stigma. This emphasises the need to link and harmonize DDR initiatives with national programmes. (A lack of national programmes does not mean, however, that HIV/AIDS initiatives should be dropped from the DDR framework.) Men and women, boys and girls should be included in all HIV/AIDS initiatives. Standard definitions of \u2018sexually active age\u2019 often do not apply in conflict settings. Child soldiers, for example, may take on an adult mantle, which can extend to their sexual behaviour, and children of both sexes can also be subject to sexual abuse. Strengthen existing capacity. Successful HIV/AIDS interventions are part of a long-term pro- cess going beyond the DDR programme. It is therefore necessary to strengthen the capacity of communities and local actors in order for projects to be sustainable. Planning should seek to build on existing capacity rather than create new programmes or structures. For example, local health care workers should be included in any training of HIV counsellors, and the capacity of existing testing facilities should be augmented rather than parallel facilities being set up. This also assists in building a referral system for demobilized ex-combatants who may need additional or follow-up care and treatment. Ethical/human rights considerations. The UN supports the principle of VCT. Undergoing an HIV test should not be a condition for participation in the DDR process or eligibility for any programme. HIV test should be voluntary and results should be confidential or \u2018medical- in-confidence\u2019 (for the knowledge of a treating physician). A person\u2019s actual or perceived HIV status should not be considered grounds for exclusion from any of the benefits. Planners, however, must be aware of any existing national legislation on HIV testing. For example, in some countries recruitment into the military or civil defence forces includes HIV screen- ing and the exclusion of those found to be HIV-positive. Universal precautions and training for UN personnel. Universal precautions shall be followed by UN personnel at all times. These are a standard set of procedures to be used in the care of all patients or at accident sites in order to minimize the risk of transmission of blood- borne pathogens, including, but not exclusively, HIV. All UN staff should be trained in basic HIV/AIDS awareness in preparation for field duty and as part of initiatives on HIV/ AIDS in the workplace, and peacekeeping personnel should be trained and sensitized in HIV/AIDS awareness and prevention. Using specialized agencies and expertise. Agencies with expertise in HIV/AIDS prevention, care and support, such as UNAIDS, the UN Development Programme, the UN Population Fund (UNFPA), the UN High Commissioner for Refugees, the World Health Organization (WHO), and relevant NGOs and other experts, should be consulted and involved in opera- tions. HIV/AIDS is often wrongly regarded as only a medical issue. While medical guidance is certainly essential when dealing with issues such as testing procedures and treatment, the broader social, human rights and political ramifications of the epidemic must also be considered and are often the most challenging in terms of their impact on reintegration efforts. As a result, the HIV/AIDS programme requires specific expertise in HIV/AIDS train- ing, counselling and communication strategies, in addition to qualified medical personnel. Teams must include both men and women: the HIV/AIDS epidemic has specific gender dimensions and it is important that prevention and care are carried out in close coordination with gender officers (also see IDDRS 5.10 on Women, Gender and DDR). Limitations and obligations of DDR HIV/AIDS initiatives. it is crucial that DDR planners are transparent about the limitations of the HIV/AIDS programme to avoid creating false expectations. It must be clear from the start that it is normally beyond the mandate, capacity and financial limitations of the DDR programme to start any kind of roll-out plan for ARV treatment (beyond, perhaps, the provision of PEP kits and the prevention of mother-to- child transmission (also see IDDRS 5.70 on Health and DDR). The provision of treatment needs to be sustainable beyond the conclusion of the DDR programme in order to avoid the development of resistant strains of the virus, and should be part of national AIDS strat- egies and health care programmes. DDR programmes can, however, provide the following for target groups: treatment for opportunis- tic infections; information on ARV treatment 5.10 5.70 options available in the country; and referrals to treatment centres and support groups. The roll-out of ARVs is increasing, but in many countries access to treatment is still very limited or non-existent. This means that much of the emphasis still has to be placed on prevention initiatives. HIV/AIDS community initiatives require a long-term commit- ment and fundamentally form part of humanitarian assistance, reconstruction and develop- ment programmes. However, in the absence of a functioning national AIDS strategy or implementing partners in the relevant communities, there is a moral and operational challenge in DDR providing awareness, testing and prevention programmes only to demobilized personnel. Reducing HIV transmission relies on changing risk behaviours, so focusing on only one group during reintegration would ultimately be counter-productive. At the same time, extending the ben- efits beyond former combatants and associated groups becomes unmanageable within the DDR specific framework \u2014 again emphasising the need to link with national programmes. If HIV/AIDS programmes do not exist at the local level or are very limited, DDR officers should aim to support basic programmes in receiving communities for a minimum of 12 months as part of reinsertion, community security initiatives or reintegration. During this time there should be proactive efforts to involve partners in broader community-based programming.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "64cd21d6-761e-44c4-9023-39c22b43a275", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 10, + "Paragraph": "Planning assessments During the planning process, a risk mapping exercise and assessment of local capacities (at the national and community level) needs to be conducted as part of a situation analysis and to profile the country\u2019s epidemic. This will include the collection of qualitative and quantitative data, including attitudes of communities towards those being demobilized and presumed or real HIV infection rates among different groups, and an inventory of both actors on the ground and existing facilities and programmes. There may be very little reliable data about HIV infection rates in conflict and post- conflict environments. In many cases, available statistics only relate to the epidemic before the conflict started and may be years out of date. A lack of data, however, should not prevent HIV/AIDS initiatives from being put in place. Data on rates of STIs from health clinics and NGOs are valuable proxy indicators for levels of risk. It is also useful to consider the epi- demic in its regional context by examining prevalence rates in neighbouring countries and the degree of movement between states. In \u2018younger\u2019 epidemics, HIV infections may not yet have translated into AIDS-related deaths, and the epidemic could still be relatively hidden, especially as AIDS deaths may be recorded by the opportunistic infection and not the pres- ence of the virus. Tuberculosis (TB), for example, is both a common opportunistic infection and a common disease in many low-income countries. A situation analysis for action planning for HIV should include the following impor- tant components: Baseline data: What is the national HIV/AIDS prevalence (usually based on sentinel surveillance of pregnant women)? What are the rates of STIs? Are there significant differences in different areas of the country? Is it a generalized epidemic or restricted to high-risk groups? What data are available from blood donors (are donors routinely tested)? What are the high-risk groups? What is driving the epidemic (for example: heterosexual sex; men who have sex with men; poor medical procedures and blood transfusions; mother-to-child transmission; intravenous drug use)? What is the regional status of the epidemic, especially in neighbouring countries that may have provided an external base for ex-combatants? Knowledge, attitudes and vulnerability: Qualitative data can be obtained through key in- formant interviews and focus group discussions that include health and community workers, religious leaders, women and youth groups, government officials, UN agency and NGO/CBOs, as well as ex-combatants and those associated with fighting forces and groups. Sometimes data on knowledge, attitudes and practice regarding HIV/ AIDS are contained in demographic and health surveys that are regularly carried out in many countries (although these may have been interrupted because of the conflict). It is important to identify the factors that may increase vulnerability to HIV \u2014 such as levels of rape and gender-based violence and the extent of \u2018survival sex\u2019. In the planning process, the cultural sensitivities of participants and beneficiaries must be considered so that appropriate services can be designed. Within a given country, for example, the acceptability and trends of condom use or attitudes to sexual relations outside of marriage can vary enormously; the country specific context must inform the design of programmes. Understanding local perceptions is also important in order to prevent problems during the reintegration phase, for example in cases where communities may blame ex-com- batants or women associated with fighting forces for the spread of HIV and therefore stigmatize them. Identify existing capacities: The assessment needs to map existing health care facilities in and around communities where reintegration is going to take place. The exercise should ascertain whether the country has a functioning national AIDS control strategy and programme, and the extent that ministries are engaged (this should go beyond just the health ministry and include, for example, ministries of the interior, defence, educa- tion, etc.). Are there prevention and awareness programmes in place? Are these directed at specific groups? Does any capacity for counselling and testing exist? Is there a strategy for the roll-out of ARVs? Is there financial support available or pending from the Global Fund for AIDS, Malaria and TB, the US President\u2019s Emergency Plan for AIDS Relief or the World Bank? Do these assistance frameworks include DDR? What other actors (national and international) are present in the country? Are the UN theme group and technical working group in place ( the standard mechanisms to coordinate the HIV initiatives of UN agencies)? Basic requirements for HIV/AIDS programmes in DDR include: collection of baseline HIV/AIDS data; identification and training of HIV focal points within DDR field offices; development of HIV/AIDS awareness material and provision of basic awareness train- ing, with peer education programmes during extended cantonment and the reinsertion and reintegration phases to build capacity; provision of VCT, both specifically within cantonment sites, where relevant, and through support to community services, and the routine offer of (opt-in) testing with counselling as a standard part of medical screening in countries with an HIV prevalence of 5 per- cent or more; provision of condoms, PEP kits, and awareness material; treatment of STIs and opportunistic infections, and referral to existing services for ARV treatment; public information campaigns and sensitization of receiving communities as part of more general preparations for the return of DDR participants. The number of those being processed through a particular site and the amount of time available would determine what can be offered before or during demobilization, what is part of reinsertion packages and what can be offered during reintegration. The IASC guidelines are a useful tool for planning and implementation (see section 4.4 of this module).", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "b778be24-a054-4072-8db0-594676831a5a", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 11, + "Paragraph": "Design of DDR field offices The design of DDR field offices responsible for the registration and reintegration process must take into account the need for capacity to address HIV/AIDS. Possible options include a central dedicated (but mobile) unit to coordinate HIV issues; the establishment of focal points in each region; and the secondment of experts to field offices from relevant UN agencies and NGOs or, in the case of national DDR field offices, from the national ministry of health, National AIDS Control Programme and local NGOs. In many cases, field offices will play a key role in basic briefings to DDR participants and referrals to VCT, so it is essential that all personnel are trained in HIV awareness strategies and are fully aware of on available facilities.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "6eaeba76-9fd3-46e6-89cc-f768cefe2e54", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 12, + "Paragraph": "Monitoring and evaluation During planning, core indicators need to be developed to monitor the progress and impact of DDR HIV initiatives. This should include process indicators, such as the provision of condoms and the number of peer educators trained, and outcome indicators, like STI inci- dence by syndrome and the number of people seeking voluntary counselling and testing. DDR planners need to work with national programmes in the design and monitoring of initiatives, as it is important that the indicators used in DDR programmes are harmonised with national indicators. DDR planners, implementing partners and national counterparts should agree on the bench-marks against which DDR-HIV programmes will be assessed. The IASC guidelines include reference material for developing indicators in emergency settings.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "c468bfa5-01c6-4383-bc2e-0084453c2997", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 12, + "Paragraph": "HIV initiatives before and during demobilization Depending on the nature of soldiers\u2019/ex-combatants\u2019 deployment and organizational structure, it may be possible to start awareness training before demobilization begins. For example, it may be that troops are being kept in their barracks in the interim period between the signing of a peace accord and the roll-out of DDR; this provides an ideal captive (and restive) audience for awareness programmes and makes use of existing structures.7 In such cases, DDR planners should design joint projects with other actors working on HIV issues in the country. To avoid duplication or over-extending DDR HIV budgets, costs could be shared based on a proportional breakdown of the target group. For example, if it is anticipated that 40% of armed personnel will be demobilized, the DDR programme could cover 40% of the costs of awareness and prevention strategies at the pre-demobilization stage. Such an approach would be more comprehensive, easier to implement, and have longer-term benefits. It would also comple- ment HIV/AIDS initiatives in broader SSR programmes. Demobilization is often a very short process, in some cases involving only reception and documentation. While cantonment offers an ideal environment to train and raise the awareness of a \u2018captive audience\u2019, there is a general trend to shorten the cantonment period and instead carry out community-based demobilization. Ultimately, most HIV initiatives will take place during the reinsertion phase and the longer process of reintegration. However, initial awareness training (distinct from peer education programmes) should be considered part of general demobilization orientation training, and the provision of voluntary HIV testing and counselling should be included alongside general medical screening and should be available throughout the reinsertion and reintegration phases. During cantonments of five days or more, voluntary counselling and testing, and awareness sessions should be provided during demobilization. If the time allowed for a specific phase is changed, for example, if an envisaged cantonment period is shortened, it should be understood that the HIV/AIDS minimum requirements are not dropped but are instead included in the next phase of the DDR programme. Condoms and awareness material/referral information should be available whatever the length of cantonment, and must be included in \u2018transitional packages\u2019.", + "Can": 0, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "135f1590-64d7-4bfa-95de-ebe656d8fa62", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 13, + "Paragraph": "Planning for cantonment sites The safety and protection of women, girls and boys must be taken into account in the plan- ning for cantonment sites and interim care centres (ICCs), to reduce the possibility of sexual exploitation and abuse (also see IDDRS 5.10 on Women, Gender and DDR, IDDRS 5.20 on Youth and DDR and IDDRS 5.30 on Children and DDR). Medical screening facilities should ensure privacy during physical check-ups, and shall ensure that universal precautions are respected. An enclosed space is required for testing and counselling. This can be a tent, as long as the privacy of conversations can be maintained. Laboratory facilities are not required on site.", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "7af93035-b368-4098-abc3-57ab4077e64f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 13, + "Paragraph": "HIV/AIDS awareness training Initial HIV awareness training should be provided to DDR participants, covering the basic facts of HIV transmission and prevention methods, and debunking common myths (2-hour sessions). On the basis of the qualitative data gathered during the planning stages, infor- mation, education and communication materials should be developed that are sensitive to the local culture and customs. Written materials in local languages are useful, but alternative materials using pictures should also be provided to account for different literacy rates and specifically to target children. Separate training for men and women should be available to encourage individuals to speak openly and ask questions. Children should receive special training in ICCs, in collaboration with child-protection officers (also see IDDRS 5.10 on Women, Gender and DDR and IDDRS 5.30 on Children and DDR). Peer education programmes can be initiated during more extended cantonment periods of four weeks or more, and during reinsertion. Peer education typically involves training and supporting a small group with the same background, experience and values to share knowledge and change behaviour patterns among their peers. Peer education is often used to bring about changes in the knowledge, attitudes, beliefs and behaviours at the indivi- dual level. However, the approach can also be used as part of efforts to create change at the group level or in society as a whole by modifying norms and stimulating collective action, both of which contribute to changes in policies and programmes. Globally, peer education is one of the most widely used strategies to address the HIV/AIDS pandemic. It increases the capacity and sustainability of HIV/AIDS awareness and sensitization efforts. HIV/AIDS peer education kits for uniformed services and additional material for awareness sessions for women and children are available from UNAIDS and Family Health International.8 (See section 9.2 of this module.)", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "05120e94-fe1f-45a6-a05b-81a2f65485b2", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 13, + "Paragraph": "Syndromic management of STIs Screening and treatment for STIs should be a standard component of health screening for participants. STIs indicate risk behaviour, and their presence increases the chances of con- 5.20 5.10 5.30 5.10 5.30 tracting or transmitting HIV. Syndromic management is a cost-effective approach that allows health workers to diagnose STIs based on a patient\u2019s history and symptoms, without the need for laboratory analysis. Treatment normally includes the use of broad-spectrum anti- biotics. Individuals with an STI should be strongly encouraged to bring their partners in for STI screening so that both can receive treatment in order to prevent reinfection (also see 5.70\tIDDRS 5.70 on Health and DDR).", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "8d845323-d478-4068-b370-685116d9ad13", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 14, + "Paragraph": "HIV counselling and testing Counselling and testing as a way of allowing people to find out their HIV status is an inte- gral element of prevention activities. Testing can be problematic in countries where ARVs are not yet easily available, and it is therefore important that any test is based on informed consent and that providers are transparent about benefits and options (for example, addi- tional nutritional support for HIV-positive people from the World Food Programme, and treatment for opportunistic infections). The confidentiality of results shall also be assured. Even if treatment is not available, HIV-positive individuals can be provided with nutritional 5.50\tand other health advice to avoid opportunistic infections (also see IDDRS 5.50 on Food Aid Programmes in DDR). Their HIV status may also influence their personal planning, includ- ing vocational choices, etc. According to UNAIDS, the majority of people living with HIV do not even know that they are infected. This emphasizes the importance of providing DDR participants with the option to find out their HIV status. Indeed, it may be that demand for VCT at the local level will have to be generated through awareness and advocacy cam- paigns, as people may either not understand the relevance of, or be reluctant to have, an HIV-test. It is particularly important for pregnant women to know their HIV status, as this may affect the health of their baby. During counselling, information on mother-to-child-trans- mission, including short-course ARV therapy (to reduce the risk of transmission from an HIV-positive mother to the foetus), and guidance on breastfeeding can be provided. Testing technologies have improved significantly, cutting the time required to get a result and reduc- ing the reliance on laboratory facilities. It is therefore more feasible to include testing and counselling in DDR. Testing and counselling for children associated with armed forces and groups should only be carried out in consultation with a child-protection officer with, where possible, the informed consent of the parent (see IDDRS 5.30 on Children and DDR). Training and funding of HIV counsellors: Based on an assessment of existing capacity, counsellors could include local medical personnel, religious leaders, NGOs and CBOs. Counselling capacity needs to be generated (where it does not already exist) and funded to ensure suffi- cient personnel to run VCT and testing being offered as part of routine health checks, either in cantonment sites or during community-based demobilization, and continued during rein- sertion and reintegration (see section 10.1 of this module).", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "53a1d682-1c55-49af-93ac-5b80332ae309", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 11, + "Paragraph": "Counselling Counselling is generally offered before and after an HIV test in order to help individuals make an informed decision about whether they want a test and to understand their risk behaviour and cope with a possible positive result (including information on how to stay as healthy as possible and how to minimize the risk of transmission to others) and provide referrals to options for treatment, care and support within the national system. Counselling also helps those who are not infected to stay HIV-negative. Counselling on an individual basis is ideal but it can also be offered in group settings with individual follow up. Individuals shall always be informed of their test result and post-test counselling should be provided for both an HIV-positive and an HIV-negative result, especially given the \u2018window period\u2019, the possibility for \u2018false negatives\u2019 and the need to impact on behav- iour. HIV-positive individuals should be strongly encouraged to bring their partner(s) for testing. In all instances, participants should be provided with referrals to further services in their communities. (For psychological, medical and legal support to rape victims see IDDRS 5.10 on Women, Gender and DDR.)", + "Can": 1, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "e7b5dd13-8659-4a69-98dc-9b4518c717b5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 14, + "Paragraph": "Testing In countries with an estimated HIV prevalence of 5 percent or more, an HIV test (opt-in), with counselling and informed consent, should be routinely offered as part of standard health checks for ex-combatants, but this must be linked to provisions for treatment and/or other benefits. In opt-in testing, individuals in a defined group (in this case, DDR participants) are given counselling and are offered the option of having an HIV test. It must be explained that they have the right to decide whether or not they wish to undergo an HIV test, without any personal repercussions. Routinely offering a test respects human rights guidelines, while also reaching a larger population. In general, such an approach results in greater numbers of people finding out their HIV status. Routine opt-in testing is suggested on the basis that DDR participants are a distinct and potentially high-risk group. However, VCT services for participants and beneficiaries should also be provided alongside any offer of testing as part of medicals. Voluntary testing is a client initiated process, whereby an individual chooses to go to a testing facility/provider to find out his/her HIV status. 5.30 5.10 Advances in testing technology mean that rapid tests can provide a test result within approximately 30 minutes and do not require blood to be drawn or laboratory facilities. HIV-positive results need to be confirmed to rule out \u2018false positives\u2019. If local laboratory facilities do not exist, a combination of two further different rapid tests should be used to confirm an HIV-positive result. The map- 5.70\tping exercise will have identified national capacities (also see IDDRS 5.70 on Health and DDR). Planners also need to consult national legislation regarding which HIV tests are ac- cepted, particularly with regard to rapid tests.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 1 + }, + { + "ID": "e98ebb2e-3abf-4393-bad4-b3dcb0e5139b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 16, + "Paragraph": "Providing condoms Male and female condoms should be available, and information regarding their correct use should be provided during the demobilization and in transitional packs. A range of contra- ception measures also need to be considered as part of basic reproductive health services to prevent unwanted pregnancies. Many countries may not be familiar with female condoms. Post-conflict settings, how- ever, have proved to be receptive environments for the introduction of female-controlled methods of HIV/STI prevention and contraception. It is important that any introduction of female condoms in DDR programmes be strongly linked to national/local initiatives. UNFPA and Population Services International can provide information on designing and running programmes to promote and supply female condoms. If female condoms are not available locally and there are no existing programmes, it may not be feasible or appropriate for DDR HIV/AIDS programmes to introduce and promote the use of female condoms, as it requires training and specifically tailored information campaigns.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "0d2f14e4-2a49-41fc-8616-680235d3401f", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 16, + "Paragraph": "Provision of post-exposure prophylaxis kits Post-exposure prophylaxis (PEP) kits are a short-term antiretroviral treatment that reduces the likelihood of HIV infection after potential exposure to infected body fluids, such as through a needle-stick injury, or as a result of rape. The treatment should only be admin- istered by a qualified health care practitioner. It essentially consists of taking high doses of ARVs for 28 days. To be effective, the treatment must start within 2 to 72 hours of the pos- sible exposure; the earlier the treatment is started, the more effective it is. The patient should be counselled extensively before starting treatment, and advised to follow up with regular check-ups and HIV testing. PEP kits shall be available for all DDR staff and for 5.10\tvictims of rape who present within the 72-hour period required (also see IDDRS 5.10 on Women, Gender and DDR).", + "Can": 0, + "May": 0, + "Shall": 1, + "Should": 1, + "Must": 1 + }, + { + "ID": "fa1f3184-a7db-4d08-969f-197282ca63a5", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 16, + "Paragraph": "Planning and preparation in receiving communities HIV/AIDS initiatives need to start in receiving communities before demobilization in order to support or create local capacity and an environment conducive to sustainable reintegra- tion. HIV/AIDS activities are a vital part of, but not limited to, DDR initiatives. Whenever possible, planners should work with stakeholders and implementing partners to link these activities with the broader recovery and humanitarian assistance being provided at the community level and the Strategy of the national AIDS Control Programme. People living with HIV/AIDS in the community should be consulted and involved in planning from the outset. The DDR programme should plan and budget for the following initiatives: Community capacity-enhancement and public information programmes: These involve pro- viding training for local government, NGOs/community-based organizations (CBOs) and faith-based organizations to support forums for communities to talk openly about HIV/AIDS and related issues of stigma, discrimination, gender and power relations; the issue of men having sex with men; taboos and fears. This enables communities to better define their needs and address concerns about real or perceived HIV rates among returning ex-combatants. Public information campaigns should raise awareness among communities, but it is important that communication strategies do not inadvertently increase stigma and discrimination. HIV/AIDS should be approached as an issue of concern for the entire community and not something that only affects those being demobilized; Maintain counsellor and peer educator capacity: training and funding is needed to maintain VCT and peer education programmes.", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "f267c9cd-e163-4f2f-88a1-0168c63124b8", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 18, + "Paragraph": "Peer education programme Peer education training (including behaviour-change communication strategies) should be initiated during the reinsertion and reintegration phases or, if started during cantonment, continued during the subsequent phases. Based on the feedback from the programmes to improve community capacity, training sessions should be extended to include both DDR participants and communities, in particular local NGOs. During peer education programmes, it may be possible to identify among DDR parti- cipants those who have the necessary skills and personal profile to provide ongoing HIV/ AIDS programmes in the communities and become \u2018change agents\u2019. Planning and funding for vocational training should consider including such HIV/AIDS educators in broader initiatives within national HIV/AIDS strategies and the public health sector. It cannot be assumed, however, that all those trained will be sufficiently equipped to become peer edu- cators. Trainees should be individually evaluated and supported with refresher courses in order to maintain levels of knowledge and tackle any problems that may arise. During the selection of participants for peer education training, it is important to con- sider the different profiles of DDR participants and the different phases of the programme. For example, women associated with fighting forces would probably be demobilized before combatants and peer education programmes need to target them and NGOs working with women specifically. In addition, before using DDR participants as community HIV/AIDS workers, it is essential to identify whether they may be feared within the community because of the nature of the conflict in which they participated. If ex-combatants are highly respected in their communities this can strengthen reintegration and acceptance of HIV- sensitization activities. Conversely, if involving them in HIV/AIDS training could increase stigma, and therefore undermine reintegration efforts, they should not be involved in peer education at the community level. Focus group discussions and local capacity-enhancement programmes that are started before reintegration begins should include an assessment of the community\u2019s receptiveness. An understanding of the community\u2019s views on the subject will help in the selection of people to train as peer educators.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "82159c0d-2aec-48b6-b4e5-0b40f7c95565", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 18, + "Paragraph": "Voluntary counselling and testing Voluntary counselling and testing (VCT) should be available during the reinsertion and reintegration phases in the communities to which ex-combatants are returning. This is distinct from any routine offer of testing as part of medical checks. VCT can be provided through a variety of mechanisms, including through free-standing sites, VCT services inte- grated with other health services, VCT services provided within already established non- health locations and facilities, and mobile/outreach VCT services.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "675e7c6b-17fa-4da5-967c-739679006c3b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 18, + "Paragraph": "Condoms and PEP kits Male and female condoms should continue to be provided during the reinsertion and re- integration phases to the DDR target groups. It is imperative, though, that such access to condoms is linked \u2014 and ultimately handed over to \u2014 local HIV initiatives as it would be unmanageable for the DDR programme to maintain the provision of condoms to former combatants, associated groups and their families. Similarly, DDR planners should link with local initiatives for providing PEP kits, especially in instances of rape. (also see IDDRS 5.10 on Women, Gender and DDR).", + "Can": 0, + "May": 0, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "afc73b51-b76e-4ec6-a14b-79d5e8f41328", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 19, + "Paragraph": "Vocational training One of the major factors increasing vulnerability to HIV in post-conflict settings is the increased levels of commercial/survival sex in communities where unemployment rates are high. Poverty-reductioninitiatives, includingincome-generationandvocationaltrainingprogrammes, should be seen as vital parts of overall community reconstruction, and also contribute to reducing the social risk factors for HIV transmission. For HIV-negative DDR participants, the creation of livelihoods is, by extension, an important aspect of HIV prevention for them and their families. For those who may be HIV-positive, but otherwise healthy (i.e., have functioning immune systems and showing no symptoms), vocational counselling may need to consider health and risk issues, but shall not deny each individual\u2019s ability or right to be trained and have a livelihood. The long incubation period of the virus means that it can be many years before an HIV-positive individual develops AIDS, even if he/she is not on treatment.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 0 + }, + { + "ID": "854bf207-f053-47b0-b1b2-81bd9b116616", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 19, + "Paragraph": "Caring for people living with AIDS Caring for people living with AIDS, especially in resource poor settings, can present a number of challenges, particularly the provision of even basic drugs and treatments. It also raises concerns about the extent to which families (some of who may already be affected by the disease) and communities are able or willing to commit themselves to caring for ex-combat- ants who may have been away for some time. Overall, the burden of care tends to fall on women in communities who will already be facing an increased burden of care with the return of ex-combatants. This will make the overall support and absorption of ex-combat- ants into civilian life more complicated. In addition, any differences in the types or levels of AIDS care and support provided to ex-combatants and communities is a very sensitive issue. It is extremely important to provide a balance in services, so that communities do not think that ex-combatants are receiving preferential treatment. Wherever possible, support should be provided to existing medical and hospice facilities, linking up with national and local programmes, with targeted support and referrals for families caring for ex-combatants suffering from AIDS.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "12921bd6-e132-4df1-aaa1-53c03a22a909", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 19, + "Paragraph": "Identifying existing capacities National AIDS control programmes, where they exist, must be the first point of reference for, and key actors in, designing and running HIV/AIDS DDR programmes. UNAIDS country coordinators can give essential guidance and will have established networks with relevant NGOs/CBOs. The UN theme group is the main mechanism to coordinate HIV/ AIDS initiatives among UN agencies and other partners.", + "Can": 1, + "May": 0, + "Shall": 0, + "Should": 0, + "Must": 1 + }, + { + "ID": "be381085-8d94-49af-adf5-6d3da3b4b1f4", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 9, + "Paragraph": "Implementing partners In many settings, key HIV/AIDS implementing partners, such as the International Rescue Committee and Family Health International, may already be working in the country, but 5.10 not necessarily in all the areas where demobilization and reinsertion/reintegration will take place. To initiate programmes, DDR officers should consider providing seed money to kick-start projects, for example covering the initial costs of establishing a basic VCT centre and training counsellors in a particular area, on the understanding that the implementing partner would assume the costs of running the facility for an agreed period of time. This is because it is often easier for NGOs to raise donor funds to maintain a project that has been shown to work than to set one up. Such an approach has the additional benefit of extend- ing HIV facilities to local communities beyond the time-frame of DDR, and can provide a buffer for HIV-related services at the reinsertion stage for example if there are delays in the demobilization process such as time-lags between the demobilization of special groups and ex-combatants.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "30b850eb-6a13-47c3-bf69-c313c5d8ae0b", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 20, + "Paragraph": "10.2. HIV-related support for peacekeeping missions HIV/AIDS advisers. Peacekeeping missions routinely have HIV/AIDS advisers, assisted by UN volunteers and international/national professionals, as a support function of the mis- sion to provide awareness and prevention programmes for peacekeeping personnel and to integrate HIV/AIDS into mission mandated activities. HIV/AIDS advisers can facilitate the initial training of peer educators, provide guidance on setting up VCT, and assist with the design of information, education and communication materials. They should be involved in the planning of DDR from the outset. Peacekeepers. Peacekeepers are increasingly being trained as HIV/AIDS peer educators, and therefore might be used to help support training. This role would, however, be beyond their agreed duties as defined in troop contributing country memorandums of understanding (MoUs), and would require the agreement of their contingent commander and the force commander. In addition, abilities vary enormously: the mission HIV/AIDS adviser should be consulted to identify those who could take part. Many battalion medical facilities offer basic treatment to host populations, often treating cases of STIs, as part of \u2018hearts and minds\u2019 initiatives. Battalion doctors may be able to assist in training local medical personnel in the syndromic management of STIs, or directly pro- vide treatment to communities. Again, any such assistance provided to host communities is not included in MoUs or self-sustainment agreements, and so would require the authori- zation of contingent commanders and the force commander, and the capability and expertise of any troop-contributing country doctor would have to be assessed in advance.", + "Can": 1, + "May": 1, + "Shall": 0, + "Should": 1, + "Must": 0 + }, + { + "ID": "bf125e78-ec99-4471-951f-5d8724ab513c", + "Color": "#D10007", + "Level": "5", + "LevelName": "", + "Title": "IDDRS-5.60-HIV-AIDS-and-DDR", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS-5.60-HIV-AIDS-and-DDR", + "PageNum": 21, + "Paragraph": "Terms and definitions AIDS: Acquired immune deficiency syndrome: the stage of HIV when the immune system is depleted, leaving the body vulnerable to one or more life-threatening diseases. Anti-retrovirals (ARVs): Broad term for the main type of treatment for HIV and AIDS. ARVs are not a cure. Behaviour-change communication (BCC): A participatory, community-level process aimed at developing positive behaviours; promoting and sustaining individual, community and societal behaviour change; and maintaining appropriate behaviours. False negative/positive: HIV test result that is wrong, either giving a negative result when the person is HIV-positive, or a positive result when the person is HIV-negative. HIV: Human immunodeficiency virus, the virus that causes AIDS. HIV confirmation tests: According to WHO/UNAIDS recommendations, all positive HIV- test results (whether ELISA [enzyme-linked immunabsorbent assay] or simple/rapid tests) should be confirmed using a second, different test to confirm accuracy, or two further dif- ferent rapid tests if laboratory facilities are not available. HIV counselling: Counselling generally offered before and after an HIV test in order to help individuals understand their risk behaviour and cope with an HIV-positive result or stay HIV-negative. The counselling service also links individuals to options for treatment, care and support, and provides information on how to stay as healthy as possible and how to minimize the risk of transmission to others. Test results shall be confidential. Usually a vol- untary counselling and testing service package ensures that: the HIV test is voluntary; pre and post test counselling is offered; informed consent is obtained (agreement to a medical test or procedure after clear explanation of risks and benefits); and HIV tests are performed using approved HIV test kits and following testing protocols. HIV-negative result: The HIV test did not detect any antibodies in the blood. This either means that the person is not infected with the virus at the time of the test or that he/she is in the \u2018window period\u2019 (i.e., false negative, see above). It does not mean that he/she is immune to the virus. HIV-positive result: A positive HIV test result means that a person has the HIV antibodies in his/her blood and is infected with HIV. It does not mean that he/she has AIDS. HIV test: Usually a test for the presence of antibodies. There are two main methods of HIV testing: HIV ELISA (enzyme-linked immunoabsorbent assay) test: This is the most efficient test for testing large numbers per day, but requires laboratory facilities with equipment, maintenance staff and a reliable power supply; Simple/rapid HIV tests: These do not require special equipment or highly trained staff and are as accurate as ELISA. Rapid tests will usually give results in approximately 30 minutes and are easy to perform. Suitable combinations of three simple/rapid tests are recommended by WHO where facilities for ELISA or ELISA/Western Blot testing are not available. Inconclusive (indeterminate) result: A small percentage of HIV test results are inconclu- sive. This means that the result is neither positive nor negative. This may be due to a number of factors that are not related to HIV infection, or it can be because of the person is in the early stages of infection when there are insufficient HIV antibodies present to give a positive result. If this happens the test must be repeated. Information, education and communication (IEC): The development of communication strategies and support materials, based on formative research and designed to impact on levels of knowledge and influence behaviours among specific groups. Mandatory testing: Testing or screening required by federal, state, or local law to compel individuals to submit to HIV testing without informed consent. Within those countries that conduct mandatory testing, it is usually limited to specific \u2018populations\u2019 such as cat- egories of health care providers, members of the military, prisoners or people in high-risk situations. Nutritional requirements: AIDS patients usually need a food intake that is 30 percent higher than standard recommended levels. Opportunistic infection (OI): Infection that occurs when an immune system is weakened, but which might not cause a disease \u2014 or be as serious \u2014 in a person with a properly func- tioning immune system. Peer education: A popular concept that variously refers to an approach, a communication channel, a methodology and/or an intervention strategy. Peer education usually involves training and supporting members of a given group with the same background, experience and values to effect change among members of that group. It is often used to influence knowledge, attitudes, beliefs and behaviours at the individual level. However, peer educa- tion may also create change at the group or societal level by modifying norms and stimulating collective action that contributes to changes in policies and programmes. Worldwide, peer education is one of the most widely used HIV/AIDS awareness strategies. Post-exposure prophylaxis/post-exposure prevention (PEP): A short-term antiretroviral treatment that reduce the likelihood of HIV infection after potential exposure to infected body fluids, such as through a needle-stick injury or as a result of rape. The treatment should only be administered by a qualified health care practitioner. It essentially consists of taking high doses of ARVs for 28 days. To be effective, the treatment must start within 2 to 72 hours of the possible exposure; the earlier the treatment is started, the more effective it is. Its success rate varies. Routine opt-in testing: Approach to testing whereby the individual is offered an HIV test as a standard part of a treatment/health check that he/she is about to receive. The indivi- dual is informed that he/she has the right to decide whether or not to undergo the test. Sentinel surveillance: Surveillance based on selected population samples chosen to repre- sent the relevant experience of particular groups. Sero-conversion: The period when the blood starts producing detectable antibodies in response to HIV infection. Sero-positive: Having HIV antibodies; being HIV-positive. Sexually transmitted infection (STI): Disease that is commonly transmitted through vaginal, oral or anal sex. The presence of an STI is indicative of risk behaviour and also increases the actual risk of contracting HIV. STI syndromic management: A cost-effective approach that allows health workers to diag- nose sexually transmitted infections on the basis of a patient\u2019s history and symptoms, without the need for laboratory analysis. Treatment normally includes the use of broad-spectrum antibiotics. Universal precautions: Simple infection control measures that reduce the risk of transmis- sion of blood borne pathogens through exposure to blood or body fluids among patients and health care workers. Under the \u2018universal precaution\u2019 principle, blood and body fluids from all persons should be considered as infected with HIV, regardless of the known or supposed status of the person. Use of new, single-use disposable injection equipment for all injections is highly recom- mended. Sterilising injection equipment should only be considered if single-use equip- ment is not available. Discard contaminated sharps immediately and without recapping in puncture- and liquid-proof containers that are closed, sealed and destroyed before completely full. Document the quality of the sterilization for all medical equipment used for percuta- neous procedures. Wash hands with soap and water before and after procedures; use protective barriers such as gloves, gowns, aprons, masks and goggles for direct contact with blood and other body fluids. Disinfect instruments and other contaminated equipment. Handle properly soiled linen with care. Soiled linen should be handled as little as pos- sible. Gloves and leak-proof bags should be used if necessary. Cleaning should occur outside patient areas, using detergent and hot water. Voluntary HIV testing: A client-initiated HIV test whereby the individual chooses to go to a testing facility/provider to find out his/her HIV status. Window period: The time period between initial infection with HIV and the body\u2019s pro- duction of antibodies, which can be up to three months. During this time, an HIV test for antibodies may be negative, even though the person has the virus and can infect others.", + "Can": 1, + "May": 1, + "Shall": 1, + "Should": 1, + "Must": 1 + } +] \ No newline at end of file diff --git a/src/Static/data/json/json_log.log b/src/Static/data/json/json_log.log new file mode 100644 index 0000000..9931cf8 --- /dev/null +++ b/src/Static/data/json/json_log.log @@ -0,0 +1,35 @@ +2023-10-24 12:48:03 - INFO - 36 seactions has been saved to: ../Standards/json/IDDRS-4.50-Police-Roles-and-Responsibilities.json +2023-10-24 12:48:08 - INFO - 47 seactions has been saved to: ../Standards/json/IDDRS-4.10-Disarmament.pdf.json +2023-10-24 12:48:10 - INFO - 28 seactions has been saved to: ../Standards/json/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.json +2023-10-24 12:48:12 - INFO - 33 seactions has been saved to: ../Standards/json/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.pdf.json +2023-10-24 12:48:28 - INFO - 88 seactions has been saved to: ../Standards/json/IDDRS-4.30-Reintegration.json +2023-10-24 12:48:32 - INFO - 34 seactions has been saved to: ../Standards/json/IDDRS-4.20-Demobilization.json +2023-10-24 12:48:34 - INFO - 21 seactions has been saved to: ../Standards/json/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.json +2023-10-24 12:48:43 - INFO - 71 seactions has been saved to: ../Standards/json/IDDRS-6.10-DDR-and-SSR.json +2023-10-24 12:48:48 - INFO - 49 seactions has been saved to: ../Standards/json/IDDRS-6.20-DDR-and-Transitional-Justice.json +2023-10-24 12:48:52 - INFO - 41 seactions has been saved to: ../Standards/json/IDDRS-6.40-DDR-and-Organized-Crime.json +2023-10-24 12:48:54 - INFO - 22 seactions has been saved to: ../Standards/json/IDDRS-6.30-DDR-and-Natural-Resources.json +2023-10-24 12:48:58 - INFO - 35 seactions has been saved to: ../Standards/json/IDDRS-2.10-The-UN-Approach-To-DDR.json +2023-10-24 12:49:01 - INFO - 24 seactions has been saved to: ../Standards/json/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.pdf.json +2023-10-24 12:49:04 - INFO - 35 seactions has been saved to: ../Standards/json/IDDRS-2.20-The-Politics-of-DDR.json +2023-10-24 12:49:07 - INFO - 33 seactions has been saved to: ../Standards/json/IDDRS-2.30-Community-Violence-Reduction.json +2023-10-24 12:49:10 - INFO - 19 seactions has been saved to: ../Standards/json/IDDRS-2.11-The-Legal-Framework-For-UNDDR.json +2023-10-24 12:49:13 - INFO - 49 seactions has been saved to: ../Standards/json/IDDRS-3.30-National-Institutions-for-DDR.json +2023-10-24 12:49:14 - INFO - 18 seactions has been saved to: ../Standards/json/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.json +2023-10-24 12:49:18 - INFO - 53 seactions has been saved to: ../Standards/json/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.json +2023-10-24 12:49:21 - INFO - 48 seactions has been saved to: ../Standards/json/IDDRS-3.20-DDR-Programme-Design.json +2023-10-24 12:49:24 - INFO - 40 seactions has been saved to: ../Standards/json/IDDRS-3.41-Finance-and-Budgeting.json +2023-10-24 12:49:28 - INFO - 51 seactions has been saved to: ../Standards/json/IDDRS-3.42-Personnel-and-Staffing.json +2023-10-24 12:49:29 - INFO - 21 seactions has been saved to: ../Standards/json/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.json +2023-10-24 12:49:41 - INFO - 75 seactions has been saved to: ../Standards/json/IDDRS-5.20-Children-and-DDR.json +2023-10-24 12:49:52 - INFO - 85 seactions has been saved to: ../Standards/json/IDDRS-5.40-Cross-border-Population-Movements.json +2023-10-24 12:49:57 - INFO - 41 seactions has been saved to: ../Standards/json/IDDRS-5.50-Food-Asssistance-in-DDR.json +2023-10-24 12:50:04 - INFO - 51 seactions has been saved to: ../Standards/json/IDDRS-5.80-Disability-Inclusive-DDR.json +2023-10-24 12:50:07 - INFO - 24 seactions has been saved to: ../Standards/json/IDDRS-5.30-Youth-and-DDR.json +2023-10-24 12:50:09 - INFO - 24 seactions has been saved to: ../Standards/json/IDDRS-5.70-Health-and-DDR.json +2023-10-24 12:50:14 - INFO - 50 seactions has been saved to: ../Standards/json/IDDRS-5.10-Women-Gender-and-DDR.json +2023-10-24 12:50:18 - INFO - 33 seactions has been saved to: ../Standards/json/IDDRS-5.60-HIV-AIDS-and-DDR.json +2023-10-24 12:50:18 - INFO - Number of successed saved files: 31 +2023-10-24 12:50:18 - INFO - Number of seactions: 1412 +2023-10-24 12:50:18 - INFO - Number of seactions after cleaning: 1279 +2023-10-24 12:50:18 - INFO - Number of cleaned seactions: 133 diff --git a/src/Utiles/AxiosInstence.js b/src/Utiles/AxiosInstence.js deleted file mode 100644 index b4e0817..0000000 --- a/src/Utiles/AxiosInstence.js +++ /dev/null @@ -1,35 +0,0 @@ -import axios from "axios"; -import jwt_decode from "jwt-decode"; -import dayjs from "dayjs"; - -let baseURL = "http://localhost:8000/admin_api"; - -let authTokens = localStorage.getItem('authTokens') ? JSON.parse(localStorage.getItem('authTokens')) : null - -const axiosInstance = axios.create({ - baseURL, - headers:{Authorization: `Bearer ${authTokens?.access}`} -}); - -axiosInstance.interceptors.request.use(async req => { - if(!authTokens){ - authTokens = localStorage.getItem('authTokens') ? JSON.parse(localStorage.getItem('authTokens')) : null - req.headers.Authorization = `Bearer ${authTokens?.access}` - } - - const user = jwt_decode(authTokens.access) - const isExpired = dayjs.unix(user.exp).diff(dayjs()) < 1; - - if(!isExpired) return req - - const response = await axios.post(`${baseURL}/api/token/refresh/`, { - refresh: authTokens.refresh - }); - - localStorage.setItem('authTokens', JSON.stringify(response.data)) - req.headers.Authorization = `Bearer ${response.data.access}` - return req -}) - - -export default axiosInstance; \ No newline at end of file diff --git a/src/Utiles/useAxios.js b/src/Utiles/useAxios.js deleted file mode 100644 index 75c303a..0000000 --- a/src/Utiles/useAxios.js +++ /dev/null @@ -1,43 +0,0 @@ -import axios from 'axios' -import jwt_decode from "jwt-decode"; -import dayjs from 'dayjs' -import { useContext } from 'react' -import AuthContext from '../Context/AuthContext' - - -const baseURL = "http://localhost:8000/admin_api"; - - -const useAxios = () => { - const {authTokens, setUser, setAuthTokens} = useContext(AuthContext) - - const axiosInstance = axios.create({ - baseURL, - headers:{Authorization: `Bearer ${authTokens?.access}`} - }); - - - axiosInstance.interceptors.request.use(async req => { - - const user = jwt_decode(authTokens.access) - const isExpired = dayjs.unix(user.exp).diff(dayjs()) < 1; - - if(!isExpired) return req - - const response = await axios.post(`${baseURL}/api/token/refresh/`, { - refresh: authTokens.refresh - }); - - localStorage.setItem('authTokens', JSON.stringify(response.data)) - - setAuthTokens(response.data) - setUser(jwt_decode(response.data.access)) - - req.headers.Authorization = `Bearer ${response.data.access}` - return req - }) - - return axiosInstance -} - -export default useAxios; \ No newline at end of file diff --git a/src/index.js b/src/index.js index 34378dd..8bd664c 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,6 @@ import "bootstrap/dist/css/bootstrap.css"; import "bootstrap/dist/js/bootstrap.bundle.min.js"; +import "bootstrap/dist/js/bootstrap.min.js"; import React from "react"; import ReactDOM from "react-dom/client"; import "./index.css"; diff --git a/src/Utiles/PrivateRoute.js b/src/utils/PrivateRoute.js similarity index 91% rename from src/Utiles/PrivateRoute.js rename to src/utils/PrivateRoute.js index 46cb33e..add68bc 100644 --- a/src/Utiles/PrivateRoute.js +++ b/src/utils/PrivateRoute.js @@ -8,4 +8,4 @@ const PrivateRoute = ({ children, ...rest }) => { return user ? : ; }; -export default PrivateRoute; +export default PrivateRoute; \ No newline at end of file

Ê¡'Žs¡ìDèãOâLúAjI}è-èh1ñ1:«`i·Wèå½xÄ°°“dKÝ|lFQ½‰Ô¡çž_µ²ª÷Ò§KŒx2‘|²« /³W¼qê}QU'ܺÿÈŠ€08' Ì…Ù¹K~’uEYâøÝ< "h¸5h<¡,.”BÚ­Mnñ¤< R& 74\_‘r ̃” ¬ˆ 1 Š #™§d©ìœ@ÒÆ% Î…áJx®”e{~ÍËSiÕ'Éû<[Yé¸úÅ•%F< îí܈—W8^{·;DÏîÏ<–ÒM W؃킽šåq»‚ôL4ŸÈòD›L”›˜éG3’>ˆí£¢Å Ü”T‚‡­ÍͨXS}6·íâšüq„×è”ÑCW¢‹²ˆx„Ð â°nVÈ]#.'”uÓ˜°–!TÕO¸¦-°ç®F–e—ñHXxxÓæê†ÆÏØሪ‡cì͸Ëym7° ‡©:P/Ô ‹SdÅkçd€È ë iŠ»vü¢'9ôBO躇jpóbölÏ F‘ˆ¦ ôÜ  ñ„²'C4sìGé•RBK•¦Txp–€ˆhœ äîëö0&ªz‘ólmiÄ].ÇqKŒøÝ·}G–1Ì æ?ìWÿOTW¿o™Af˜¦`D´‘Á`ªQìn±d©_hjͦnmt“5ñ‡¦¿5kûô§MvÝŸÚþÒF›¿`Ò­µ•Õ2ˆóæ ¥t†™÷f˜fÞÛsî}oft@¾¸‰½ž÷Ýwï¹çžÏ眹‡ôÑËa[²›a½öpÜEBªéµ8Ûd¾ÖzýyŸãjc‚P}¸±˜&Blˆ7Ÿ+=H‡·ú;„Tb©Ûß;8ølœ=ûOòÿÒ¸Å-^ÔòUœæ£ÓïLwÈnDúZ"¶f|>]z›£w¯Èþî‡ÝçK +-{jGFÇä|é±®„ »¾¤~U$þ§þGÿ©ZÔé’•ÔIêIÝEÕ/ɪ2ºïc¦IñÙj7qNL!Ý…)PIŠù±Ì8ô’¶Žïoê3³>ÎT–ðH d"9þlžÂViŽX•¥9?Ç´/[Ð6<<\__í.ßìøö3ÙÛu´&[KÔ~U½!öµ4ÖV-–W+$KÞ + + +ººº–¢%nCCC;«²m„|EH?½ûÍçw¿Ûtf-=x©ÕÚÙÙù¼OóG[²æóùÙ‹åüµo&dùahŠ÷h‘ÈêD,¾XŸÇ* +2¥ŠdÕV워k•WžÕXëÑò JB¾ò>¬þh IËLZ$:i=Ó #v¯pÏeÀC­«©Ði" ²§SQKËLfš*ÄëM4IP +OZ™:ÆU;=”Ÿv\(8bG E®sœ™Œ›·ÐúÏN öMŒJòƒðÔ±S§×ætÞúq…Ÿ O¾}ä nÊÉýüÒå ž¦NN~(t&""ò¿ ößiGe‚Ý+Ú=‚õ(Ž*Tˆ™O2mÔ· +‚ÐñÒåêÞqÑɼÍ8ööŠNh¦ÁÉpT˜#ÞG>`hœl#úƒí‘Ú)Ú©ý±#,͉Ó|•‡¦#oÏbÉ»ýKÏ +#îõz4¼ˆ›só>ýºyœ"ŽnLŠ8×ù +ÁÕ´‹nQqàxPŠ¯‹GK¾ ¯°"€ HcMå †#˜×ìU²íâЉŬ¨rR!ƒ›ê‰íç3±¿,pÇL…ó“^Yþ¡Ÿ¯z­|^f-³Ûí+Œ¸èvUîÜXRö“Ý-ʲÛ?aŸ÷©ãˆ«Bqgq$*yŒÅ,:s& Ì€› +Rlœ²Btz•$@#š¦š„@fanÃÍ&'æ€ãJ>wÄ’•š:âJ‚òÄí_Ö膭ï&=²|“wí©Á[’Õjåy~…_|kÜXLH!6D›Ï•¤Ã[ýB* ±Ôíï|6>þø#Viu«L¹kL¹é³ĸlb0§MÚ,SšÁ¬Ë±¤gÓ8 ¶¬l­É¢Ã &]2 ðÔÁr³%ݘ£[–ösœ¦([[³ÉT½Ñ¸c]&JafE!>gKEaÈŽuúÝ û^6®ÍЀ‚÷Oj—GnDúZ"¶f|>]z›£w¯Èþî‡ÝçK +-{jGFÇä| þ)=Ib¯ëΘ”0EyŸ9#6OŠwb3¤èìÙR|…ô$…Òã/±E’,ͱ|t¶Nz¨¹l^ÊÖñýM}fÖ‡'ÊÚåáï¢w[¦çâô¯—¢÷ÄŸÝiªÞ¶ˆ¤Iáô†Õæ< rÕ€LÓfçêLùk´™«±ÎJOÚüy£±¢P¿£P_ñ$š­‡§~{aæöuúÊ¢¬½ÅÆík3ÒW¥ÐoÒ™ót±@ƒ-(±Ó@ ³-éZRZ›¾Ê˜«3bHª“stæ—tðLMeœ'…&íŸ6eï*2гv¬×ÏiLÅzì¯ËܵÁP[l*É[³Š#\ª&ˬ5åÑ-0$!ú@ÒŒ9é\™†´”ü](ÊÏmÿâÙß%¹Z#¶KI¼jk–ú¯Êž[¿õ\¨ÞZôêÞ×½~a¾(>Î’9i˜@ÜÙ +è)QIŠÈê»$ÏŒ¯„ˆQ¢FJø”¸Ác›Å¢2!>¾EgcÆçåkÃÃÃõõõÙîòÍŽo?“½QGkò@°µDíWåÑ¢­¥qoroµ¦„z£V£áRR4zX®HÂòmöS…EÐ,ѪÁ5÷OIv.P}Íš¬T ¥zAAAWW×rB´ÄmhhhgB¶¯é§w¿ùÜ"àîw›Î¬¥€R«µ³³óyŸæ¶dÍçó544²f‹åüµoÂ@•Ð4ïÁ² +=—oÂ-„à‰EŸK?·?äô‡ ”súhß7e_]|šÀšŽ´âcÂP:¹Eø +s&Äð}qr@œtÂ.1J`‹À$Švù'œ>P¢û™*º0@Õ€¬Ætù.ºõÃ8¨å)¦ Ua«`ìÛA õ#/†a ìG ƒXuºa\€ƒCÁ‹åªÃÇöEƒAÜ0“ƒ /6ÙA°žõMŒJòƒðÔ±S§×ætÞúq…Ÿ O¾}ä nÊÉýüÒå ,? âÚ¶ÐCyÑEà^78ǯ8ø0¡ý ŽîD±p":È(:ã!æ% + Ì 3µH0ä[únÀ:85@±sR¸üA|õ‡‘-@‰ñ®à(Göâ¦H† òÌì8Ñ£¨<4yëø{KÞí_zVq¯×{ á ŒñܼO¿n§ˆƒ7 Dœ§AÁ +ãcýéðO`t‚ã˜4øŠÁH‘ucì‡A@q =Šx˜§†á‰X+ÓœˆxÐ>£UÁËEC9ã¾Ì½˜+D dC\Ý0±8V +nà-Ë ”Ï“^Yþ¡Ÿ¯z­|^f-³Ûí+Œ¸èvUîÜXRö“Ý-Ê2Ħ})‹"Q‰i1Å'C£ µ³ß1D3jHI¿4Bq- Ëá5 p€ÇŠxpŠ%aŠx€y,æ[øäbù–í!ÌøÆìCô•ñ0Ìø@ž1??;ôÞüúxdù&ïÚSƒ·$«ÕÊóü +#¾øÖx按s„ôÑËa[²›a½öpÜEBª ÞŠ³Mæk­×Ÿ÷9^ 6&Õ‡‹ i"ƨqó¹Òƒ´qx«¿CH%!–ºý½ƒƒÏfÀÙ³giY@J^1ý‡õ¯g¬‡Nl>x¢åø–ƒÇK˜X:9xbË!Ô¼ùÍ¿[ßý |ßÑ—u©ú,í_Žû ¼ñdilÓÄ}QóOnùÛûå§6•ÀþŒTÍ¿Þ)l:¾pÀûßýÞsû} ÿÞçûHÝ 9WG'ÔyÎÕ¾<¹|øËw7h wôÍÃÁÁvyäF¤¯%bkÆçÓ¥·9z÷Šìï~Ø}¾¤ÐR±§vdtlaÞ—¤ÿ±_¥AQ]Yø¡3(5‚".à2ã’–nt QƒWÃ*" ´S(*"BPã̤œ21ɯ©TÍ©ÒÔüˆcÕ hM àB2c4‹‰\X¥išf ¯××o¹ï½;çÞn£èäÖi¸ï.çÜ{Ï÷{ü°ç÷øXyt—êýÿhWýø÷zUФ>¼Œ>såzÕ«_Â&Ÿ®œûú¼ÀØ=S±é,¶|¥Ü¬FCp"ºV©Ü'Öv^=@ +µ$}–~GÔšÂðÔ¡6ì∼ÝQáñS™_ùlŽ™òã'‰è³ öŸ ½ûWX?Nx`Tìûã­ØW²ûœWÉ'Ö´ümé¢ÿã}—è_è¦o +OÙJLPH热МmnYdDÌ$ˆÇáó&æ”겋µi^I+ Ëؾ~—.mSØ´—`©£GŽüǺ0ôiw8……•̯°´À<¡Ã~‚y®ªü`ïƒU© / ,Kbb"¸ìõ¨ÐÆ31kPk'B]µR +w㨫N_6¦Ïî~ïBÀ‰óЛVŠdëø E¾Äy(I®Ì¸ônÜü1Là¨Å¹sô»¢Ò ÂiÀ'P'h÷Dõ|¨S¡Ë( ×ïÔÅç¼ä?Î7 Ð7>û¥¼2BTr…Ò¹ƒß,Éý%ß;19?4õÁK„Ú%¦×n‹È-Ó-N›â  ™V[{iX}ôl‹Ùlž¿`¬<šaŽ1Ì-úöÊ+Þ~WèÈåô¡Ñ †½›_Ê3+6›-)) <;!8¸âôÿ$€Š€Y’5HÍZ9HñD¨C +é$}4%[9©Cí‚bâ#‡ ¥ÅÎC^Òdãiºä„”Í$Èf C–íF—ÔÆËmn"F7m0ÚM¤Ar]Ý +¶ ”ß¡é(i&©¢×4Ø5rò‡W¡©í¦ÖX‰a³ˆa=­Ty#ÍaIšÉ!°Øê”@ Ô[©6#ª E[fQ5ñÈH6èMHa¿osnd$ ¬-$!%¹êOÉ:I®Úë„ci´¹»Ul$ý–âiS¦.|÷œ=. +bÖÚµàñ ‰“þUy‚ø]@ ½Ž†!ì‹ì¢Ï'/9pÅÆ8O7¢Î%'Füh¡§ +gnt!/“ôóMÔ5-N¾Õ…FA†‰Ípòt¼‘G$DL‚jäeÐÐ.ÈÃàfcT€¬2ŒiÀ¿"ŒÐΣ.Àƒ„[\B“à Þ8QØBC/àóþŽÚÔ3—&ש`3’37O¾òÃåçìq–eS’’ Ç'Mþä?UVêñF«ëI‘L#Ôp +pªÄ¿.ñŽ[lsÉw8Odð +'„™zµÐ“ob9Â) ↠+ü…OЃ=a*&Nnç•6êq˜ ^7ÛÝ ¦€ÓMn„Í­¼Çé€ VÚE¥C&ã!PC„³€êë0:÷!‘€ãYŒ¿½Õ°`ÉR8s­F[__ÿœ=î´;¾6v˜öûú'Æ-vwý@ÞŸ õpt6âñfOüçà´i%þ%¤&-œh¤4ÒðÁœzVl²ºšm\ ¡?_i#§³Üx–¸Ø-‘{„—ÛãŸ9É$(íÀ!"uHÀ_h1yîjz›($*”zY´’(Í”öz÷2ÜÔöÖ‹ñù†æEKÉ+I£Ñ444Ÿ‹Ïeãc©øH +.OÆåIôo9œŒ+RˆMÅ_dáÖ÷§È@†Y’ê2žÁ]ßÊ7ªåº*ò÷ñr½J¹yÛ/µ_ªû]pì¢å]Ý=Oxü*üŽ::Ý®zTUv:E‹Ev9im"5F*9óe+Y»cˆNT©ÈNŽ7[€÷Ú½bg—ââë$LZR@˜Å&Ô€„‘Póö8»ñ).w¸HA)ÚªÒ5Éñz©”šz x„’S@š›äj¾Þ¬s3zŠõ:õÆVµ® ×ZcqQ ЦÖÃúª>/T£`µ´´âDC7~_ÜÝ‚ð¥Ûá”Y\o²%*ª0Ñæ40p,ÞÄ•™¯ŽþmCýý猸Ç퉋ć QRq î0›’˜’%³õÁt™À +¾Þ`‘>‚•h£ìõ7@@lî›ì€&Ÿ0¶âº© +º€•§à…Fk›Z¤R:½:Š–÷yDk‡†ìÐ`–ÚEÐzŠ!i¤ó"˜U/ÃÀM#¡n»»“0 V –‘aäg³BÛ©3‚&„=žF^/SˆHp¦Ûæ”<@¡.,44| §Ž ¥| —¥ŽlkmyΈ[,–¹‘¬yæ³J«q©t°áp€, €¸Fhª]écàc ®ƒ(¡p¸q·DlÄ]F;Ÿ0±ˆË” 2•PoÆ>qÒÚŽëz³¢Ç­ó²î)2Úîv )6ÚAFG!ÂKƒ›â \/Uµá„ÜîÒ|Hnwó ‹ÐÀò‡¤`B«šlðAÀ™&¹¦E©ƒˆÔmwI¬½Ïßþ,’Yûïk‘dò{SáÌÇsÇ‹ÅâçŒxÝñÖ_& _'–C~,÷ûà“[ñÍ+¬úà€q§b¯àÑHomVé_‚¢µn$» 61<Ív¾Î‡_'U5Êqã:Š|!Š¶kÂ*§Wïcp¤mV¨;´z`   > Ã@ÙëáëLÀ–µV6Ã}DÑ°,°ÎVíòá.ZÄF . –'‚K +\"¹Ädr‚»}r-Ï}¸˜@gÐóž¤û©l–Äår%ÉsFü¿oÑÙÙÃ0ì† üÉáÇe†·üÉa ‡sæ`0üåa¯|QSûSÛñ?Ԍǔ¨è±VŽa|5Γ¤ôÐopج¾àŠ œÞ‰ãO§À¶mÛüe6îOá‹_ýÆ|^Ð|^pÔòàù©Ï óÆ-H IÊ ›»tì /08riPRNXôŠ ¿LзSÆù{ðüåßï¼ +C r\¸Šôæp ã ô³ã‰!èj*›ç- ÷ž˜I†S'f±ã~ú^ŸÉœD51wrC…aÑsçöªn"ò®OPåãW²ÏÿÜ;+iáçÈÞ¬i¾üZàŸß™NŒ=ºÏ©ËÏoŸ1C¹keµ2yMFmA?2¢;7·O"} Æx½æò+¸xYV–¹ºÚp¹LÌãɲÿÞÓÖŠ˜„|yú´hñ"]Á1§DB–ž—笳޺ÍN¦|ö{÷ðƒõÅg,ׯãöKWeØîÜ?n’З”.^4WTà»vÅÅð]µo¯hI¼8y©(a‰(!ÿ`(7noÙâT©`–KÖ «u%'‹–,/KÑ渕*PÃRS#Œ•oÜà!´ ÖÓÔ¨>tÈXvÉg6g0ót<}|»uçÞ ¿Ù›‡Ô7q›VQObGÝUl úöò)Æ# 2-fLR΄…é\ÖRƒ¢xÁ±ܤõoNœ÷6„“6Êvvª\@šEùiö¯Â©~”ógξªšŽ‡¿5b(öÒϧ'M\ +ö¯üá°×¢¬ÐÄuaÿ:šÃá„Lžº(3¢ü’¬Ëä„Åf„¼Î} TÄá|‚*£Ñ…HØÅÛoßÔž¾“áè“TÓ¼õmnÀàÁ£1{EpâÚ°¨ÔXÿAŸÇ ·JÊ0'ilàï†ÂF¯yóÂdobºk|üŠÇ)¿’U#s½®¥lJèÞ6Ëbw<9Ž´Ã¡Þ¿¯cæLM~>e³!Ö#ÌêûÚÿöž$^Ï$µ÷0¦g:ØÜö1`ÂŒý“Ò>>=(€ûfçì=¼äädÉ õ_q‹e5ŸŒìíÇ…cbÄéÀ cÓ“< ¯ê?Ô~LJa°X30œ_öÖ#0ð\RjSÿP¿.%6\Ïɽñ /&%ÕÍÇŽ7>$,&þyM(ñ›úOŸ‹5ÂZü˜œBÄ»ûñ‰q7ÿ€3‘W²ï“è݃sñ¾KY÷¼ñÇ]½ý½pa1qOË«ÚFÆó_–œ LJ^Õ7Äë»zñ Wo¼k¦æ”¼8åz$Š¹ù€ÕLž clú—¤] 'ÏÞ>6͘àbW¶Ò´õôÏÑ(4•JýʈO²'öíÕÚ†D¿§vNÂp'›C] í4Ö•5Ù1ÁerçZG³žG%]îerø´Q6ÈÒn~¹Ù åäð3ó NFÆ$\ˈ½œ°vñé=ìoèt€?0{A27±°Œˆ•7¶àN…Û;¹xá‚ÂcãÁ±´±‰îLI1â|‚G@ «_€wphRÆ-À¶‘±‹™·Ý£“RÉÌ9½ë¯ý”STZEë¼[ø îwâ.üLÆÃGàÃÔËvŒs~ Ê¢ +pT×»ŠÖq@_T%¡P(ö•ÿó׆ ëÔ,._®2|+.ë%$žB$ ß ½±ôù‹¿ÛŽÿ¡121¡cm£AO ˆ"BMâKJz ¯%DU}#í… 9£ÃM==LÈÈHq[!56Úù¡ìýÑæn;Ì]•,<SÜ•°® kS>†Gc×HI®^» ë²ãhª¥‡"Pà÷_7wW{,=‘Gp*6ÞÊJ»ë¡K—¤9)ùp6–“nÈIÃpÓ ¹éFÜ+¿&`>Ý—f Ì4ŸX•ŸPYIØXXrzÞÀÕsÍEs”BÑó÷¥©PÐR³ëzër‘[åöÀ ,Ôÿ3ÌÞ&[›—’’úÜÖ60Ãiïhurz½juµr 뎀Ï5ÕìÈHGpðëµRUˆmBP¥ P…@ ^»&äƒ| s©´&[»r)©VW×O©î5;wܹ–ÓœÁŸ2›ÌLé~~=ÉIM¦¦•ßneDý(œ›åõ2;à ]gÏvÇÆÖkiµº8çæ¶ãk5Ô‰Ä;¢‚ÍÓ›Aˆ¨UWoÐ×›ji8pëv­¦& ¨Û³§VU•|HðVÖ ³‡y!á­ôÆjUÕ±²2°URÒæì Næ"§Pü[¤ñ¶¢jÍÚuž–0ó (°M•nJà•cxåm¨õ@Õ%Dª~l g™òÒ0á EÏÿTƒ'‘>i†¼tŒð¦1ü³UÝíë–KÊ­0òP:ˆ_!ÒdÞ^ëÀ&N +ß|» +\„—}s?xIØñ|ŽRð—R +…­ÏàQb}žŽÊw ŒYì‰ßB B(zþ›œ–æ&#£2IIŠ-·³C<ÓúkVºlé{õ]c/_Íoc¿'R¬­k”‘t@à W+W’uõØï*>m Qììª7o!0¢¢èx|³ýPÎ=°475EÇáöîí½t¹;*ºb³|%1p÷®è.­=4”Ž ̾Góñ}¯¨ØÒ›’Ú¨§_±a}µüfò¡C-ŽŽÍæáÌtkp ë||­šj†z½ŽQQ‘biÉ*-¨¨h±w¨•i43›Ý)ÉD%äPNÎbňÍÙ~5%zYÌ" èÏ?”"!õ<ün’Rdc -*zåWW†kÃ?[ÏÞ4æ¤pÓ1€íÜ+ÿM­ùDÊ1ü0œgÉLÔ5E¬‡Ö,ÝdÛ÷Á*–îH¬«8]»ÿVJG‚% V^JGƒÐ殊Ҳ+V­“4<²ýh +Èðó«‹ô š?|A@LØ'³e%0\NššÅè/}}}ZÚ"ÈÔ!赊k¿/©"@íGïĈ €(‰Dú»­ùÿøËÆøø8‹ÈJËÊ=(yú¸áYAW0 €É½C'Ïž;ˆÁDÄ'6÷3ëIá®hyႉô®³q‰ë7H£Õ4² ŠY0\ô®ÚÑÕ=ðTxcWT0ÌŸŠN¹|c¤Øø°…eHdtq%éjöCŒ©‚> oèî ‹‰Ã…L¬lwïÛ¯­«»kÏ^íƒúa±çÁü¾ƒú§cãØ<oNø¤¢ôÞø`M-íjjW³|•î‚Þ¥‰D©‚·|ðÇýBO€¿[·)`›Y;:>GjgLÁpq5IÏØTJjƒÕ‘ï›:»€Õ7îç!UÔ +Šûtu÷ëêyU¶Òê½f¶öjššŸ½dÃ0ux,!ýún-­í;:º†X‹È¤”¶6èLÛÅçÂúGТ‚F•5Iç a&oÆÙ'p‹üf±ú+#ÎçñDˆo’¹SP< ÿ‹ý*jêÌâ€Ä#²È"[´,Ù÷MH@BbÂ*"D«¬Ói;‚¸UEP\"ut´¨8`+²/*;Èšˆ@$²„UYÖHÈ›/áLí§ëÒ?f¾sONòrßûî}¿ßý}÷¬ù…®1Ž ¶ed!HDøýÙÄLÏ·~ñni•Ý4ÆÝ£Ñ ºÌcgÏ«ijº“¼ÁËYà%_¿IÝëN&«jhXÙ9’|üv‡Gå”×LÂðÃ&š=Æe¥¸–@lc0Axe-­Žœ¢’Š‘¥• Cðñ½t3£u`4-7ø ŒÐ8cK+#s‹˜“ Å ´£gÎkë¢tPçÿqäRÖÔ‚ÙŠÚú …þ]R² mèº0ó~SsšËä̃Èß¾÷±g“3ËðÀÏ{W°¢¢BKsÓ'F|||œ€÷ˆ¯“W¸ös΄qƈííˆÿG"Óϧ¹}s¼œªÚ-8(ä–ç=ñS@)á=½«Ÿv ,À)73‚C#ÂÄxxù¨kjYÙ:¼)Ô°ÈìÊZ°uY+Ýã".!éºÜØÁá•7µ:bÝ•”M¬¬m0Û|ýRÒn7÷¤el%y¢ŒMìœ\L-¬L,¬€,Ö5M¼ g`¨ƒÒ?õ¨îªöv7™¼ÝÿJÆÏû¾úÖÜÆ‹÷…æÉÐËaÌdϽÉÞk¿<Pë9‡ ô艵ZÐ#¡ô;…}ݧ\SlŽ¥•–Žþ£N&Ðm&{¶óÝïŸÅ20¿H~™pé²;É+úd|÷Äts/‹DUÓ@†8ørff˜=yðˆ©•-%(Ø+`§±™@ÜÕƒömLC—@lË[Zlœ%%%ݶ‘3˜ 0ücV®±©ªªº…­Ô ·º®º³ûðéDSëÍ&föX( ¹Wîd•4Ó¾bµëšSYÇš_LÏ+Š}$!1-;ejeãìA PübãO·°†Fáîɹ‡õ›ŠœGµÝhA—„B¡ººº>1âï¿È²” +AO„ÍaéÛ:à +asØA÷ ȉ¯•]WXTügçñ?´^p8v$ò&Ê‚ º5‘å´ôÀJE]}+Y‚Y‹£õõý±:$ ]3yï}(ï/õÀÐF907}”qìõ<¨M¤jS"PÚ2²Ò2+ ŸSÂô‰»–1 oߥí³å¹WO×\Ä/)ŠHÞŽ‚oà4<˜Ug“—ÆØ7&Ù_Ù|²3ï²+üññA³U²a¦¯ ­æ=ÉåÑsŸ¿o´œÅö|˜ÝÈjÌÐQS4·w}ñÎÈÌ(—‘)AÔi!SSa>†Nk²0σ `-ö³íÀmª²ªÍÅ9ɇ ¶-Ž;È­» Ðhîð0p»{·TN6°ˆ@LI­32* þS§À_<»76ö‘ªj³}מmíl*ß :QX8K§w†ƒ‹]{ö>¯ÕÖž(.™¦Ó¯\ivp,— “Iìššáë×*Ö¬©QWŸinæ4<®Cn|¤¡ÑwjâþÖ…¤Gêµêj}ÇOtøúÝŠ cwÈbðòå6FhèLÇëÓ“ÿÇhºŒU^Y#½Zæ •÷—ÁC‹í¹ ˱-›ßQ³†[³lt‘ddÅ1^Z~ú¤ÝºøÀÏ?ÙÈ!ºþQ›m¼µD$ÅPòã?¸ÂÄù¬fØߢ٬𓛌å]r3‰©®æ +RÐÚ˜í)a("U@cP „ Ý%Vƒ¢óÜ£G 70G«ˆŠ‰èšÊm4ðÚ‹Z*Iɶ`ßPðÙh”^ Ùç(:ð]|Í y6ù7©þ:ždçÅ¿c矵7’•\©(£êø…ÂصŒ *ÒnÁFî•ÕWƒ4•ÊÒÁ[âwñèÙoy¥ôþÓx¬n°)ÓÎ@Ãã:Îæüpü_qbar²/!¡ÑиDT¬\Zj$ý¸È¾_R…Df@PÑ +±žÃG–n`ÆD©¬Y¯Ô¹‹JÇáŠÀêŠU«žÇâs_ñ¹Ü¾¸8PS«W×jjÐñøVŒsƒžnÿéÓàîE6»ÕŹTÁŒŠjß±ý$HÛæìÌ©¬˜¬¨ìØ@Ã{0££ÍÌ@"¬¤‹ ##¬¤ U땪••{ãâÆï—Vת¨Ð¶n¾q£÷LB­–æcã™wØU•ÔàGH­vo/ƾýušZT A=cù<^O\8”ûÏûhE ¹¹¹Èl µ¯Ããõ‹Œ¢·=—ßY¤oŠžCÆX š^eéšhkÀ“WW\g/þ"¤ÿçó€á?ààt—0¾(yHz…/Ò?r3è| Î[Ï@9pøîGƒtä•¥¤Öˆãü6Q „²Œãàý PÝ/\KA*nXWT\ßÐÐðñúàk``ÀÊZ™Ý §ÂÞo9]èýZ„žÎÂ@…ª¯¯ÿ³³ùÿú`krrÇd×)(ÞÊ-¢9ƃY¯ø0ÜÆ&ùù¯Z-´/œ604 à )©„(ÚÍýas»o u©'ô ,kí¸•Wä„s#úù72ž-=¹ùÜz 8xïØy53«œFkdö|sôø† j(Cï/¬k,¬}þ ä&G,îØÙ$Oÿ@aïä¼;s!ŠOûkì<Ék“žî‰‹ßÖ7¡ EEÅRoþ“í=¬à°(Ùur&fß%&]½““UVýl‚Ó7·À˜œy×áQ0¥‚Yu|Š19;ʇûç_íت¢¤\_Wû‰çÎs}}|À‹’•“ÿ1;o†Yó ]cAlËÈBÈ¿v³ç^ÂpÍÓ.=Cã5keoåÒG·ù|! “¼âíüžéyjhR[›²3p³±™ÄgŸ}ùÕ×E~*­líå~#CÏÀøË+)¥ÝËôË,.‘Y –lØߢ÷ó/ö«3¬©4 ß)6$´¡C*ˆŠ‚$€@¨RKTªF@E)"¶u¬ˆÎ¬Œ"è¬Rp¥ ˆ¡cH(B…ÐBKrç :3»ûìŠîˆóc÷ä×m~Q²©wr™ÃÔ}‘œËÖík6løj‰ØŽÐýiE97°ú;ǧÒ³°::àzY9…k·3âÙ…%¥–GD…DPÕÔõ¸7ú·ÿ54Ö'dOúÏEGÎœ×#I¦¦Ôýá¶öÂÂBà úDãGõ͞Ѱp×¾è£ TÕÔ¢cΤÞÉË).}ñfäå$—Éæü#i« ~çèô —·¶m4t?ž@§ÓçÅèóÚØȨ¡¾†ð”Þ1ÆàýÓO M@]N÷$·k|úòÍ yE%’Iy3ãni¥ª¤FÚD.mzQEowÞâ%ƒ’ÝdimL¶Z§ou8%3/÷qE{bp†w5ý6@(*©$ffµ³Ç<³h±(†@ˆþö”‡aÍZ{gj¹¥µ>Éø@Ì©´{…»Â£¾VSµuv9|ò N[@Q1Ñ °ˆµu—o¦ÙPœ½üž8©£§§¬¦~à›oA½ç”T´ ³&¹ísˆ/4è¿yçø4hƒ•ôvc3Á”„ÇãÛÚÚ¾0âÜœ÷îrñ +5Ï ‡ÅóM†Oæ†ÃZ²ˆ$P™Ðò+.¼ÿgçñ?dƒ££$'gMºAMÔ3Ò/F¦úzÐB–±´jìîþï8zôè»!·~•k0Îe¨¹…ÖbÀâˆÁÝ8_ôri1‰¥"Ž¾h÷»õööl@¦ A™Ô:7û}Ìf¿º¹+Éï<¾ººúÏÎæÿöÙŒÍfÛÙÙdWÈ näÞ}ohfÍòÙ0ÜÜ?èîã·BZfÇþˆ–×ýÓ0|!)YDL ˆ²Ò&ºwU ÖDDŒ-,/¦þx-뮳§·»_@uƒ/x‡Ãõݦ֛HÈÓ? °†ö–ÇïçL9§¢ª±v½þ±Ø Õm´®¾ð£'08ŠÇ–Ôœ¼ðã1rŠ_S\=ŽÅÆé¬[·ÁÈøI}#kb2(<Òp“YÌw£¸{ˆKHF¹_UëC VÖÔ +ŠŠjf½œœzÖþrWX¤°°}1ùz~YUYkû ¿š˜ÜuH^^ »z³‹ë¹+IÌ‘‰Sñ—EÅÄŒÌȱ I[©‚ö‰‹ß?¤5®70ë×ng“ièê •W4 ™\HL¹WQ]ÖÂì›ìš˜f ²x¨T U‡ÆlÎٺ3DAN¾ºªò #>=5íîæ&@\zÕõÜ{0Ìššm{;*ˆí#²$òëo&›ó†_ ¼±rt’‘•‹KLɯ¨qr÷B +I-[—”\×Û¿¤…ÃQC÷›˜[I-]¾çà!ÁI¶2»9ÜúÞþÓñ 6ŽNJ*jjšZg¯\åó³KË 0X\rÎÝ„´LÂj]qq +Š£ûkg—ìûØÓÓ M;CÃMÈ›)NDsi”,‰PRVÿ{Ú­‚"íÕ묜2îÛ8R–, +‹*z^×Ü7ørüö«ªÉ, ×ÝŠ: +" )Ò)$iH‰@0Aš Ë gpíe]Eë@i2³cAéD„’DŠ€‚@ÿ¾„÷ìœ3¢ÎÈì9»ïÜ󟼓÷¿ûîý¾ïý÷Nw¾™jyó ðýk5õH¤>!aºº:Üºç Œ¸H$¢xzÄáÚ:×rò‡åˆË“0?â?E<º—öa1Í/@gÙ2 ¦{e•ÞAÁŠŠŠpø±óiµÝ¡1;hLxÜNœ;Y]S3&qoAYUy‹ k\Âí8u銡GšNM’Hs~x´bÕ*#ä嬜Kw²-ll–¨*ã½(?&‰æYX<<9UÑÄJܳàîAõƺàtåˆë¦Þü{îÃRK;Æbß¡£n$²1ÊìHJZU{gËàH×[ÉcSÿRßç„ø.Ú‡ÇAPY‹ÀÞÕMV#¡Ð|>:ØÚ­A¢+ùBp +ÅüOÈÀ<œ7SýR¨°¬ +43Cc +žV^Ë+X©¯BsÁ“n~Ÿóè+"ÒÆË`àHÁm¹ïàÑÂòNgOÏÔLcïÀ‰ —<¨Œ5†ÔÚuGRÎ?ã Rpmw*õî?'Ÿ:³넶°´°^6Üt ²¹U41™óÝX<ÞOܻӉî”UU€ÞÏ\»~6ã†+˜›|â´£« …>x&¥²­³õõ苉éαÉ6ÑøB +¤è5Uð;œÝdU +…óƒô_6Û·kÂ`i0X“¼8|4_eX*/90Ø= +ë2ašð%ßýÞqüÁÑQ,€Áò`0ž 5…)é=RUõõ0˜-èeˆî]]Ÿv€¤¤$y[C­×ò‰6óŽ4]€^lÎ@3胢†˜hê|¡ªþ'Ð!‚)%ÄØ‹m‹U»Ó@tç‡mí>~â­Pøï˜g?§ó'OËUT—~J…^>†úJgš $bÃýÙÖbH\óª>ÏÑÂI ¾ﳆ‡¦‡!)l/À7¶ #°ãÌ4úÃ¥ ”–(ÍʤL'Nœ›#Ø/ÑŒ0÷—Ð쎗ø2Éj™ +Lc>ÀÐ?E 5•ÓxùItlcz8róŒ½ûJ¥?*˜ÙèlÞnîa +”B Ë´0Ÿ()ræœlÏ2M¡t•4•úî$ø÷œ<%‰Ð]ŠàÐkø‹tCLücÐÔŸkéÇûÒPx1X®óøÎ)¥ÙŽ)ïþ<)åå϶CCU½Ï³±æ«q$‘xt~üäÄÌÍ­62ìHHxqü8ÇÓìÏ|ÃçÕ˜ +44‘ÛámÑÛúÒÒZ‚X5æ˜ö;û.§ó<7–©ªð<6¶qzÒÒ^çårxtZ×Ñc­ÁÁMÞ QOÀ÷]¹¼HÇÞ43™åË— ¿þºus@9\«ÁÍí¹]•¢54D)Ø øôRª¦6Tò¼2=0ÐÂb5R¨o…`úº¸˜ë¼G¡BCê±NÍtÆÈ“'sqL¿ê&&rÌ×V#¸®®<ciYgg+ܵë9Ö±TUu ;ûsi‚úúúÈd2€Ìq­IÛà HT=ÓV2¿x³übh lŒ—ÏÀÙƒ×Í—«”ﱃ²©Óé$@ò‰Ô÷ñ|2/I#@·<ÇÎÙëtaÊJŽ~†qÀÛ¹‹úýæÅF¾ùF£éᦺ«”UÔ“˜ßh3çâ3¾;hr€Ñ2½% pИÔÔÔ|>€~óÑÓÓcg/ƒÌ» ƒµÈk¿©"@íÇ•¯ÄËo3ªººú÷Žæÿã7###žžžYMmëyà~I¡î©™ajx­¿‘|ð…H _ÎÌVׂSý˜Oê[C·ÅiµÉº½ó;‡˜Ä=a›ÙaWsò ++kJjê7ðO\ºŠuí20p÷¢Ý)xÐÚ/:röü²•zŠ +ŠúF‘»âoÜ+ŒOJ6Aš!LŠ—³‹•­ãßÒ3j;_î?vÒÁÅ5!ù/™%Y[·m + *®¨MüöЊUzñß8{óŽÙÕLÎyòl®Xƒ ÓÕ5dŸ¼Õk ÉÆ嬜W’™¢Ê*š¯¿'Ý;þ›dŠÍßÿûZî…[™KÕÔWê¯ö f/+ë´ÛYO›¶NNjšðì"ÙeÎïŒÞ³o©šš‚‚ +ÌÈÍïO¾œœiþèÆS04Ö64&µL ÌB/'§ƒ"b¾\¾¢ºªbŸšœòóõ•!®¥}ý~á8uOJC£²³}` ò'0‡~Élï¤ôÀ鳎®n¡Ñ±±{ö…ÄÆÑü˜P*#õÆí¨ø¯¼·¿p‰â#s +×Ñq%’ŸImì¼™_´)±k÷ö½û]‰d&;ìi‹ °¢45@ Àžß?éB$™¢1Vv›»Ø7,+Ä“Ó³s‰¶´±÷ôöÅyxb,­|ƒƒ#¶é®XéËb7õeÜË_km­§§O÷õOÏÎmì„â·mÇݯ´ö‘ñW3PDꦫ«Ã­{¾Àˆ‹D"Š§—,ùÚ:×rò‡åˆË“ðAˆÿ§÷Jfû¤³GRÓ°BpTLlâþ°è8ªÿfc´9™B;såFLâÞM¬-`Á?Ù¯ò¨¦®<*ˆŽEY‚   ly„EH€’@BX‚ì ² Ô•M\J * K-J«è Uê8" ‹ K“  »ˆVA on‚ž9cG™*ýcæž{Þ9ï%÷Ýßw¿ï÷{¿âÄB!¥¥MpxÀfSïPnÑÏ /ÿð¯BňΞÞ÷Ÿ0‹ªj4µ´•TTNŽI¿ðÃB‚ ÑÒ5ÜF¤Ò-ml´ôô\ݽƒB·l±±£UÖžHM‡ÐXŒ¶îÞЈ‚²‡ÝS³ÝÓócÓÿ.àO;ÓÏõèTçøì W¶³ÍÌÁ™cЋµÌŒOŒoßf¤ aªYÏAa|>6ÍZ:jöÈ$XNÀy11EssWAAÇϦ„‰Ö@cM-ðnþû|‚C#cã?yèä©ÐÃGõ ·­X±BAIiÏÞÜ;÷Û†¸Ù7oÑÝ=ãaG¢‰To¿ÌË9–tv³ªª±Ù®¤¬‹1Ç€NLñ–H¤´ñ.ó¢ªwݧ·ßw¤™¬Ú´Ey‹ªÑÞAKÏ`ë¿ý{|÷FX\Q•¤‰Æ ±Z~aá*:'ŒNý“‘e˜`Óa~ÄzfjÎï’Ðh4›Í^fÆÿ †…oçy¢UЖ~¨3,4‡õÄ-Â!€KJ!¾{ïÆñ?4^›ØSÕˆ‚ÉgMècZz0K…ø]}± xK«–îîÿ.€Ø˜-@ ·®§iÒöi,‡¸EŠ7pdhŠ—º”ÌŸÖJ®" nÉÞê$/õ{ä†0[e@ü«…¿HwE×my9„™LàdcÅý–“ýeâÞž·„óÈÍÇ·Š ¯°'‘§{Já—•ó­EóÌBþõ?Ï–Â…¶;ðX}o}¤(k¸÷rèÕ’àòå”z£ÙnvXH­–Ö£‡óóÇêÛ\÷´Hí F Ð̤Ø=Ö×ïÏÊêM=W)%õ«Å +j&‘ÚœŸ:ÒJ§5>õõéNHhßãÆ ¸p¡ÑÔ´|¥Hv6Ø…73Û—žQ§§ßhfÁ ng¸´Rí;"#[í©åëÖÕ¨©öœ9Ótº‰¬VS›xò,™Ÿšê:q¢ÒèÍÌ·SMÍuPµ¢â@VËãRRêåÕ«‹x<^gLÌCQÑf3³Æí;jTU{SRz¾®B"+ää™dJObâ›]‚¿Â¿^?Ãxð°Jlíºh +ÜS”/´Í} ‰Í·yOK౺Á¦‚:@HHQ¼ƒ²KÆÞ"{ò¥HòBQý ×p¬©‹êŠ5Ânèõ#ç­àk¤™LËéôE½GfÓé¿>ŸËÄù¶c¬õ7ˆ!$EÌ]Uò} ? ²—ÆbF½ÔÁ¦.aXc«Â+¿Ð4”a„aiþ S(ü_!;_=’¥+ B%;•¡ß°ƒ°žå«}qGÜ{¥þËsüÜ÷–p>™uÊÔ¹FDv•¥7Ê9ó/™å…±9¢Iž(•µ`£-r2eWÏ€Sâ=»;ϼý#eòÚKà×5ý ×M°›M-¬GÆÆ“6Þ¢ŠÞé¢'1éÁªÕ­Ï£ŽÖc°»v½*,ÊË«ƒ Çhtf&ËÇ»B±ÜÜÙL'§®˜Øþ´´F ó +qqŽ¯_WtÌc}½§]±1M;wrû22žº»µÐ¨L*­‡¼”×÷ädÃ¥jƒ\ÇÁƒ­4Z¢RGpÈSw÷jyù}ý&++vP`oZz#_&&6\\ –Ìtw3i´F ü$³ܾºyóÉö-d2Ûקi·Y+Î--[ô¦³³#<¼A[§VE¹q×n¶ÿ>–ŸO+…´&–#¥JÅ%†oÝú\9JÊÀ@”íÐFqþžÔ.pî~8˜Eñ~ϼ{‚›…ô +i"ï©+‹øRØÄYÅ5L‹âƒú˜b.ÈпìÆ/Å$D­jNAüùŒŸ!/h16°‹S†ÀP“U\€ËÊn¨««û|}òÑ××gḑLÈG Ú½ßÇt ÷kü'h4ÑèÚÚÚ?ÍÿÇ'\.×ÖÖ0+%#séV(°¯àžYÞkn{9즬¦qàØÉîQ~qκv])Mrt¾ÿ¸ÉÃ/@UŠˆŠspuSVQÝÇãˆ$Š“Kô7‰Qß&Å%&çÝ-+©®?™|ÎÀx»œ¼‚G@PþßÄ$$nRVY½zV{TÜ·K"£ãÔÔQ² +r(,Fa“’–ŽAv~Á«ù…+ÅwL,ðxRì7§½ƒC£c+ÛžEÄÆËÊɇÇŧ]¹†³!™m¯Ý+}+òzNHÿN\BBDD££Kßãqév1‹;™t![ÇÀÐ’h³7,øVcãÜ’»)Ù9â’ÊjêÀNì©X]½S)i…•ôŒŒ$¤×ÿTÂw7ìÁá£Ñâ’’¢¢«ô¶û†„åËÙ3³ÀáN-Õ<ò]*ðª#îôî™yëæ¬ '_[óh™Ÿ™urtä3.½Ñ ÷Î̱_óc["(ÎèdßÌBïÌü÷y7ìœD;Þ–äñU|rªÉn3 ƒ‡Ã£cÂcãÓ¼F Û !„””•ÉtçÓç³k;^ÄŸM…Ðk*uïþ½­FF;M¯ÿµ´¤ºN«ŽÝÕǼÊ+(Ø+(„H¥YÚRNœËè僓S©—rq$;H££gHwó ˆ<èèáeK£®…EVÒ=¼&ß°ûCG«Aìy'êΉ™ÓsϸÓKFú;fwjpî››§{ûÊÊÊ4>iXfÆGFFȶ$À8r½ÌŸoŽ +Üq–È8P{d²çÍ|ß[ÞÅŸ +ì]\­ì©x²hø±³É&8¼:FŠŒ§æ\!Ø; )nV&Òèß~—UÍé:•œ†Ñѱ¶£ù‡Æs‹ïÝ©ªÑÐÖ['ÎðñÝyÀ3 Ø+00Ž·%ÇM톦Þdäæ(ÿ`¿J£šº¶ð™‚ˆŠ Q Œ"€ŠÈP! B˜•YF)3O¨`¬µ¶¨µˆÃ«‚Õ×¾*ƒ2Xª•AC Df¦ÈŒ¦„@î; >×êë[E­ÚïuÖͽwÜýíóí½Ïþ\´t¶ëêé»zûEIp÷õÇ»¸‚œEˆ#\½|¨Œ‘G¯€PUµ­ÀhdBb#}`ͥͰ_çàÊ|ï¿þ,¨t& ®ië4Ùg ö\£ÓÑÑñ‘Ÿ™fš«¡užtÐf`˜6=ßñ–^w¾¢Ô«¹ñexx‘•xLg‡^Hlœ›?v¯eX\|ptÖrŸ«oÊ™¯Ï}w=>õÄýÝb1M &8*îöƒÊƾá™çµwì²sr ŠŠÁZZ™î±<~&3íL&¨*[Ý ‰GRÒ#?MÒÐDï65Í/¯\â»ÐDë?gµßÁ–è"¯¤lˆ5;’šnig¯¤ªjb¾×–@Ì8w¡…1Z\CòôPUÓPRSü4‘Ü3À`Ãt&ëUÉý÷õƒNú,{†ë:z,,y]ƒéììüÈŒÿùá³ ‚.CÐs~sX¾ZgXÅo è.ay*’Ú$ýsÙ/µÿCcŒÉÄ:»h@P!Qy¬ ¼IKf¹¯«§@Ð26¶-ýýï %%…/ Œ¡Œ{Æ5L›/š>˜ûÍDóÔ_À6)9„äFQ`Ô#C \]H®Lb –û'·0mŒ¡ÀÌòÖ†o9psñ¬l dhÅý^Éòîë÷Ö‹@ÏþäHI7\'$èLpœë¯€Gk–ž/Q‹x×?ž-EË­¥ðtÃ`ÃOh%¤9ndtlÕ ç‚Á¿á¼œj&:•Ô×o=x°fËæJ1Ñ®ðpúÉŒF,¶ÙÁaàlfozzƒ‘Á°f·‹F›ª¨x,'W'/O%ZˆŽCW® _Ë©RT,zÐÓk¶åyÿ—§[½¼Îksw¯–X×½82²@£uGÇÔkk·Ø;tøù>3ÇvÇ™ïîîK;Q +Ae¢b´ØØþôôŠªU”gëIï­§ ßÄ3!`Hç´gŒ®‰-JXDc ë³Ý- ¬Dƒ¼ h:kº‡k»†i¡õ¤WÒö‚§œç_·cY<[óÙ¸ß!YAˆãÆq®ØÀwˆŸï1”Y+„³ ÔôŒÔ]@@ƒ¬ä¹„ö×î+¨¯VT·ÈUü v‰ÛS¶D½·Ê–R‹¸m÷á Ò‹ÆÛX] +»Éiæ¦Ä«ß +噉ɯDÒÖzîîNÖÆToXßîˆ~<퉊r“Í\KsOBB 8¹ädûOfŒçå3¾ù†žœ ‚­\@ 34d´ ŸêH¬Cú)gl|™ÍÊÍmÂá(ûöQ,,È::þþã%%ãyyÏŒoƒt“Ú4q÷îJ0†††ðx< Ìl‡f×£\x²~¹«lõD s;îãÕ3Ôbœ1¯é•—¨M4‚o¿³1óªxfÿg³@¼8ϲ^ºl ß²g^´ص’ÆT÷‰ÙN Dó¢úÍê9lç-$JbÝFQ;/ ÞÑ„þÐg€¬[vÞ[ià8¹™L&8‚Þû`0Æ&&ùNº~ï÷&]èýšø+qüJ¢ÁÔ××ÿÕÞü¼·155å@pÌn’CÞ*.¢lb îgqG¸pÇ3ù‹¯4ÐZö.®¥5¤®‰éÄŒS’’’žÁ¥uäýÎ. +(ÔÕÞ)øµÊœ/ˆkÅ­ˆŸ:~ôX@DÔW—®Vµ´õÎ.æ—WZX(¨(FFù„ÖÕÓ·wuÏ)(œc·ÇKݦ­këH<šqÒÞÕ)ŠKMcr–úÆÆñ.n$ ¢®îVRCꙞó9¼FhÍßRŽóô``°"J% ,ª®£kpf¾¦µ;8:và³RRCÿ›±¸\T]·Ó4¿©ñ §‚’2JY9úh’‡€ˆÂÝçP]ýÛÿØ"¯hjnñùù,zqñÓ¯ôLL?$7FD«lÝæèáYXQÝØ÷âi/£‡¹@›a½ƒØäýeb¦sr¦kj~” °}G*l‘¯'Õ}dÆÙ,öã2²7î•ÌÁð ‹Ó9Áäa{[§&g¿ƒ,nM;-&1y³¼‚à¡Caá©íŸÄ'ŠÊ*ÁÑÑÀÊõ¼B}#i™ 9ßßé3¬’jÒ[°°ïäå­¨¢**&w,9ëæ(U„Â?,"·°ø)­¯ùÅè©o/íÜe°×Úînyå$g©ŒÔàbŽ³ÁÙ;î62¶´ÅyùZaUmHLŒˆ¨ø¦µ#±ñb†[†&Î_ÿŽ_Ÿšþ¬xhî›ç¼­§fvOÍ /à Β{`0)×ô¬ñ#3>99éè@Û"-+—“_ô’Ïx×K€ííÒùrpÇ`qŸtÒ£“’7+( {†>j¢FÆ'(UÀxlNÁ½ëw + ±XY9äùk¹} ‹4æBñãz+<¯Ô¨k¢ ”TãbQ ‰oÜB©© ‹ˆÆs +KHÝý-Œ±/.^Þa``am}»ìáØ"çgÒS¿° œ­•½£¾±™•íþ3ÙWóUGÇ âà›{lì(½½ln‰û,UP@@ZZîFþ½AÖòÀ<§ûåÜJ¾Cæ¾av¯|¢ÿ‹ýê€j2ËÂ?(°.U¤D@P@ €‚‚! +$ RBÇB—b £+""Š e`” AHG„ MÐÔ$$&ùç%8çìÎѳg÷›ÿ$'ïýïÞ÷}÷¾û±ù ®l§YÛ;ˆz$šJ¥~eÄ9clì*Œ]MíáÀpÏúY‹âb¾§ó§G¦áœo4F›¡-,b÷î+¸[¶1|ëœ9’ iH:I~R•’º³ÚÞe]NÑê[v›_VóÂÅÃK„¸¡Á×ÏÈØDVNÖÅÃ#$f»Šªºæ"£gÎ߯mhy÷¸µÝgsˆ®¡aLü¾º®ÞA?ëÆ-k»µŽëÖ…E€‹ÆÂÊêòýÌ‚¢e+,Eµk*¸8(CoX0ÜÐÛ÷ݱ¹s¥æ«¨€U|awª›Åû¢ˆÿ­õ¾ç¿…áçÔn;ñ=ˆB¡h4ÚWFü?^;w.€ L¢ˆ›ÃŠu†OÄÍaÝ H®¼@å~Ùƒ?:Žÿ¡ñ†Í¶ñô2€ ÛÔ*BMb6-=° + QWß A 7B89·ôõ}ž‡Ëe¥ê‹"F™ˆSÈ—•c¿šH‘¹‡*«ÏS˜/6õ݆r­t5ö‰F·š˜X©CóæJ¦Ã×6ÀùëÇ\MÇÑ:#]Ç3pÿÌ€°Å ®¸À?º7%¬”—”ðtsãöUÀ£•J‰ •,zþ{k!O·•Âc  …H„¥-ndôÍìOžY^^¥£S¥£=ZTÄ£ÑèiiÍx§f\3WoaÞæðÌGëDÛ½,aý\^­©Y£§Û²Îµ=0ˆ]_ÿ¾¡¾ÊÀà>½J8<Íã ]!QˆÄÁÌKCÙY/Ö¬©]º”Þ¹c{ÛâîÑŸv®'>¾ÑÒª;.N0ÎãµwÔ¯²z()ÙÜ{äh¥ÖÂz4ŠSW6°˜¯¾«35¥§Ÿ?9MMu(TÉyù’ÛIk´±©RWïØòêøñö€€z´-rëpAA Á­FOQV– œM+ÿÓ¼r)©îø½üÑQqÄŸ/3?­’WP<æ÷?‚‡žL·•LÍÄ—ÅÂŽ{ðXÝpóíÕËA"(©Èà½õ¶£=ÃÝ‚ÅL 1ò +7 +Ümj¨/);w J…qßp›¸hˆ4C0üol"ÝIÌ1'ðEpÉ .ÜÀ"¹®@ÈI*K9éæ{„ýŸÝB A +xF všZ;kKIK¢,ÕwšyG™Hn!FáF>1&Ä(c¤¹ +p”ì³þHø¦'œë:žŽãÚgÌlúO>8’Lç=ÚÙ™+ÿY1Ï%é¿ =ã€[d¥(ä0¤oŒ _K_l¤«¡þ¨à48%aw™ µø#GÚJ¶ßƒßÕ 6Þ°1]bçèÂcÿKØ„ÂR¸Ü¾””z4šB çäpéé5ººµHã¶ÀÀj=}ŠQÀ`¾½s§\Q±\Vn8;kŠ>0’ŸßýÍî& 橬lGx»©i -홢b¥¢ÒàÅ‹ã]}ÉI­îC¤¬ÑkµhÓçKƒLéŠÛS­¯OñõeU”wEEƒù¯““Œ{¥•K–”AP{`ÀpÞ÷/ìí+ÕÔß’Éà/^Ww+Ñû¥“3»^” onÕ››S¼¼ÞÞ½;”—[‹2y®µ¨çÐþ3§›lm,,úO$õ§œlÄ`(ÞÞ\ +žäwíÚU AåÊÊŒòKxhhÈÕÕ@¶z™Qgù÷0£vº³ìã‰ÐZ"¤Þ¥ÓJörĈš^M¹ÊÀ“Él@rž¸`NüÉg>žŽ\v†¯¹1Ïã6.S‡ä¤Vûéí4¼±zvõÛ3¡-'?_Æ%Ð@t5„!¿ôÜ»€½\‚–‚­AàÄÂ:q üot:cm <_AE€ºâÞo6]èý^ˆgâÄ € +U[[ûGGóÿñ» ‹Ep#ˆ¤QPZ&€áÑ©é^îd߸ |ú~Mýz/"BC‹¸qóþcI8W‚…•uFnÁ“*裣«ûCqéˆN)ìdq?U<Šô)P© N'‹7*„û'&7mݦ¥¡Y[óü+#ΟàûùúŠWUË+¾ËmØÄí[äÛ'¬‹ÉëŸÒ'§Ïrç+ƒ×îØ°›ÉÉ.¼©¡©%!)ñ¬•VRYu°—Sß}ñêõS™¤Ø½û°vkmq¸´œ¼'­m )©Ë--:Á1ÛjiYZcoþôhD0 hÀ‚áŸ[œÝ=ô^›Ngç†DÇ£MCÃÒHÙÃ#mñgsò_q'ón—,Ò^ |À¯#\½ûðrá­ãç.~{üÄJ,ÖÌÂ"”CbV÷pøŸég[‹;< Ó§>¡á„ú‹¦Æ¯Œ8ƒÁØ@pÇ¢¢¦ž{“Ì#Þɾ}â´æö ù ¹ùªªjàµÑqñ I׋4µuæHÎõ«hn-yö܇e!(4"#ÿک̬Øø¶8[GüiR.˜p$åŒ%K z‡Äl[¬«¿b¦è@\ƒáŠÆ— h()+»ûú¥ffV –Yøm M½tyÓÖ¨µN.€o=l^^qɃ¥¢{ÍÒ*õJv~q)Hü˜={Ae°°ÆÞªxJŸ¾~?ù!}þî&:ñ›»˜Ü^6ŸÕí4k{Q„BS©Ô¯Œ8gŒ]…ÑC¢«©=à<{ÆxÔO|&(€8Ȭ¾°’Ò+/'2[JkÛ(3&.(¯ t8ùTÓkú¹_دҨ&¯4q™šnbeJÛÊÚvµš:΋È'@ø\(M¿‘kbµŽÐ KIq!xÂŒ˜Øôœ\pvl56ͯx +Dy<~ÙË€0H”À 9?\ºuçüÕë!‘5´µw˜šæýR Æ‰ëÿŽç¢éqç×.e—„@ ººº>1ã¿àŒ•0Ø%Œ­jËßÖ>V5‡ 0Ø?`0K¥Ë„­X¹ªèañÇÿЛš²ÄῆÁòa0–’µóiéA”/PvõÍ0˜ ð2ö­\îû8zô¨ÊÀÆ«=è7ªžÒ1ù\;ö:”Ž ã¿y…Ú’e˃I ! y¾FCÖõ )#ŒÕ`°Kþ´0¤Ýt…rœ%éHq˜YÉ+ßúŸa÷ê+Yš"ÝÅÔÙþÙÂxWŒ„[VÊÙ÷å¬åõ·£µ@Ñöšll¸­³A}§•ÝËѱ·­÷ÜÜë×ñüüÆ;Û}ˆRwbfs_\\›7‘ó°8NtôTK³´¯¯s¯ï³‡³³Á3S1-,[í»©A½QQN·ŒÛßâäôL[ûåsrùè­Û]AA£yyS Ïk46bÚÙµb1­(TRÒdmípöe6Ï?!NÉÅâÞ訚͛zÂ#ÓÒ™¶Ö, FØÒ&’ON ¥^·£?ä€[‡ÓP98ˆÛ;Ri_||ƒ‘Q³²ÍË»ÕÞíAË˱Ù]áM»w Š•Èijê&ÓM-nÒ©ï_ù¿ŸLç1=©ú|Ù±h y¬h»?;[îÍuB“u/šó-¶ê‚BørÕb¤»–wèEí§Rš?O#ô­ˆÚ ÿúç}ˆU‚,{èF–”¤ÙEI."UºB¾öUÈÒìåÊçù™ŽÛÕ—.\±È–¨íI×ü¡g´ÿfP¸ý:Þ }3‡õ‹þ²±s ‘aàNE`t@] ýáX +Ü#XϪ ߶ +@[vŠ—.ôºê$»`'ICþ›Èß@¢ À ¥@ó—•šg}kiøåg‹×.q$Ã=é[^@û뀪T¦ CÖé¯ÓþL¤¹V­âæY°Js=å¬{oYRVÁ\{!Ä«n¼c©¯±ËÖ‘?9õ[¡ª‰ ?!±ÕÅe 9YÖÓ Ä,jme{y5ï±î¦Ñ˜6vÝ¡ar¡HÌd6XYÖmÝÆ/*Tˆ…cý 'ÚH$PJ½±GÅ==¼{L3s¦¹… ¬l–Ͼ˜ÞE£ñ)úì Ôé!Ø kA¡F2/ÍŒ $Ÿm46Î̤½½,‚Wµ¦¨ ÞƒÂN2¹ÉÒRP^¾’q8Œðr€°¹Ü +JKÙPa#àì¦Rëõ YB;™ÜhiÑA&O>zÄ/.iß»·;8XÜÑ~*´rݺ¸ÎDYéG+hdd…BÊ, áÝe× ~­¢ûáÛ u®³}*dÝÇÛš*›Þ¯–V1…îbg®8‘ƒ SzÑþME)ߨDŽ”g;B¹˜ñ[ï-k`K™{jÃô1*UÏo?ÂÆí×U_¿ôó勉_+†}x`0—#i˜$®®þ·ºººGÐCCC¦ffJƒåÁ`íªÞo>]èý˜ª'íT €Q[[ûGgóÿñÁÆÄÄ„‹‹ `v•ºú­¢`Ó^Ì(z„²>ÑÌÐ4Ä~Á;ž|n‡©ö rÁ{…GV4²˜ý/¨ßDÙ8¢î–TL@Ð¥{¬u‰©écÒiHåõÊšÛ&$úÑ‚Ã#<öú…DÅÜ**MÏù»«»§‘™…}ððw§ƒ¿‰ò¡&ef³FxŵL,Á Cð*©kâCеüƒå+W†ŠHdS²™ƒ 'wš[%g^áJf‹jêqD’žáV['gßýAQñ ôƒ‡Ì,[·á¼IFı¤äÈoãw!‚£±Gx³ŠUuàC¿`º ÊEWßøS ëåíî»/;7¯¼©-ˆq`£¶¶•µ €sX•£@‹ÂàpDŸÄ´ŒŽ±‰9Ä™”¼«yTºTž°‹/잌ÎA²ß uk¿ª­©þÄŒO˦= ÀøÊÕk®ßûY Aƒ²Ù.Þ”Û{$Åq¥³ã”[X¢¿ÃHcÓ¦¤‹Y€Âª:[G§ šZa‡b[F«:8¾Tšöf¸3: 4ÜŸ +(óö8r:©ºƒ3¡˜+¬ªÙA cÐDZXÛøQC*ÙÝ #@¸m;sÎØÜÂ¥FF»IHgôéôŒÂšúãg¾÷ö§dݾ;8­xÂêtuó\¯¡¹JϹW÷}ªp¨Žv÷b„VÖpâç¢éžIé»fú{‚3!~¡€†fådŠºº³©ñ3Îçó]]ÐÊ_£võÇŠñnÀönŒº»¢® QŸxh8¯¤ÜÈÄl£–Vâ…ôçBÙƒêZ$£©µ™s¤©0îG£ÆmQÎä0À¸OH¡Ä|wª²½›'W…ˆ"ÓC©¢¬‘Žû‚‚³:ù¯gŒÇ%§˜Zí²G£Aº}\±'SÓ~Z.…´?ðRî®Tþ¤½ïCÚ ¡‰v#œNÏŠ;›JŽÙHµGc‡c«Ú9RE¯Pö«V_]?x(WFõÏJMMƒ,*ۻ̬m”=bKggç'f\89enbª¥³åYg/ØŠ{'%ï›8`¼W$ãJLîËØ“gôô œ±nÅõLîô\ÒÅÌ Zp=ýóWo€Ýãæƒbw‚¡‘±·7ˆF‹Œ>”~86öTòã–6Þ¬¼´¾)äà!7’ k‡‰yT\°H< AãÊýP^Æd…Æ1ßmõô"‡„8¹¹ãI¾×~*(ú'ûÕÔÔ™Å/¶[ëîj·‚J[§;»¶–GÔvwƪ•Ú© A[•W¥•ÎT±S«Ý²ÙÝ?¶åïÇî +‚‚ ˜ðJyò‚@x$Â#!@7¯›Ü›Ü=7ìvìþ±¢ü£ûÍÉ{ïwós¾ßïœï¹æÜ¥/3?Ê뫬aêPx'5õ`ÊÛ_ýµðÛ›·¾þÛß?ÿÓŸAÝ{Y9üúɈÞâ'Ì(v?(k-R ÊôÆ#G©*‰F£ †uFü‡ì‚‚X¹Ž #ÑâPð ÊP-ÕrAR¨.Ù×Åá>i?~DcES²²w#H+‚è(ÔbVSÒƒb¨ª^‹  —¡§[,f@aaa´-@hon;}‰–s!™ê˜Î®m;ö¡:²Œ³¯mݱiËóAiî´Œs«m$3Î%þœ–óYròþí`ÿOŸÚPò1lÎ$ëOet¼„*M –¦`÷I°$-TJÇËÒðRz¸„N2Þ'Û²{ÿòú³’}*Ã7#"¤ÄH¡cS×ÿ-ÃìðhéVϪ¿ÿíÔûâƒwf2Á#ÄP…ÂÑÍ -Ú©G¿Ï-—Ûª™så¶Æ¯a|Å~ðh¹³+03÷á0á\d±ÀÔ0†Ýïü ‘¤oó–ç¾ÉÏ g„¤UmÃWâ+2ÞIº•6mëá7’€H¿ˆÛ˜öÁ®3Ø“u>éä'Q¦MÈ>Ÿ÷ÕÞwμòÔÏžþdïvgÕq²9›¸ž4"ÇB”п/i!àa(¥“7Ž‘¬œ¥²ôßÆmŠ‰}æhÞ«¹—’3ó¿Çç“g_ƒÈú4ñLÁÞCé/ÿä™ ´ýÛó +ö}p–™ŸqqòlBæù„Ó“s.$íþM˜ºAŠ?J$YÙdí ¸]F–¥E9OÿocJ`8Ÿ.K‹T¿G²³ ߢmÙôìÎMÇòr/Ò¢@à'ATR.ç'æ^L÷w¾ò(úõ‹;„uW`—"F¡c=`KuìÈX'¹Ü?¯iLÙû«#¿;æp£„/ì÷»ûúÜî€ÕúÝKߤÑ%•zT*ŸªU< <*%Ú×G¸Ü@&l~Þ;2âQkÜ"‘O§ƒ°Â·DŒöÉàKøÀ?n€eñ%8ÞÉ}ÁÁái­ †W=@àTŸ‹MO;»y~ƒ>egÀlv +„w¹¼CZ˜ +Fí!(½j—D²²¥EÞ*U¸ +RÂåtŠ©X³–W,·±CóT‚1Í€KÖ\^ZYÁ-‘,³XØÌìš@tX­ÖãÇd‡_O˜à3H‡"<Áyp èÚ"úNÒ.Euì¬Ôƒð÷}/m–j…ïã%i@c`Q°¨NÇ(I‹^©—@ïpY:IED¦õÊ»™»·"›Ÿ>üᮼ/÷eäGY½º|ÄÎú4)þåŸo~~ã±¼ÝÔÑŸ¸Ög˜Z@ױ߿ +ªÁñøø”JåÚôØÇÜÜÜÁC‡Àò7¤ AÆ¢µßjª¨ý£_¦F €dM¡PŒ˜=˜Xg¸y·õJyåõºžrÀäöƒ"¹~ª­W&7¹±¹ ©4YšzÄl©B2bhàö\.¯€øå)4£¶e3ŠA¨(Ø|¿#E:C5»£™/µ; ™ÎØyüº^¿az‹ŒØl±¼¢¾©¨Šyµ’Y~§é®@ÄÒi¦æ-þà +ë“N¿¦…/©awrZ£Û/hHªÖ9¾äº'’1o[QùA6a‚À™ö`<¥¶•/ÑXæ­$¯@;y^44*›¨ëâ])¿QRS×Õ? ³-3.ÿ¿óíz¸Ù„Ú¢àÈQªJ¢Ñhƒaÿá#»  A®#ÈH´8<¨2G‹C5‚ÜC$ß×Åá>i?~DcES²²w#H+‚è(ÔbVSÒƒb¨ª^‹  —¡§[,f@aaa´-@hon;}‰–sá_ìWipS×~&‡Í³Ø¥„ `ð"áÄŽ „e†%–L,„ñB0mcÓBêÉtú/ôGÿgÚ_ fKš ™’¥›ÅIƒÁ6Þµ/–-k±$ëIOzOÒ[oÏ}24d:`í´wÎhžî»g¹÷ûÎy÷(pÇTótÛ±û‚;2mMNFæìô…ià´ê˜R{h²¤öP~åeÅÛ +eÑRˆ^êŒÆƒèRú{:­Fjñd±xR%ž(±Q%,–NªÐ)úÛntm_Ûï æÄÞÝÚ˜³ùo úfAׄ-ƒM¢á2¢º]Ýçó^É*Ú²ÓçLòØEžçC!.”X! †<+òŠ ‘B˜â£´$ˆx.ãÉqÄÃ2$qp  ‘¨“‘ˆÄ  ÆÇc<]y1ÓA)‘Hz¢ÑØÐPÜf­äŒÄóIò!2© ZÀ›à£‹IG’(ÒQ6FŽL¢Öïñ‰øcL|d˜6›ã.—Èq“Qšõù…x T@ÄD‚õûŠB¢pßÒ“±t2㻶öùé Þ¯Õ¢ÑVä½)šùÉ€8pQ2]AT×Xÿ…M…ù@¤—§½Q±zÿ»ëÊêò5e¦Õäî­Ë­~¯`ë[Ù/ÌM­+ÌŠ|ZŠ.W¢³%@3k,e^}_¤Fà˜|ò&úfßx£ªhÑ씌YÛª×T½£ØS÷Ÿ559e‡óö7lT­˜9k»ºáÕŠzåžÚ<È MM.¨TU”×çç.†PS âà +tµ}¡•N©ÄSÀy5¸Žó!ÎÌ)5:¿}]Õû‡×ó_œóòœ’Úܪ£ +9Hü|œûÚÚ<˜„í/Ï^ŽV-Ëlýì8%ÉÞ"è.>æHuM’ñ + +vxz>ß\°rë5IE…\’ü‚À¬Ï'rüƒ7ÀFà°¥±8M€š4 L†bš±¬ÀÐ]‚ÎAFT¸ÿ´]“A¤§nÚ—ýËßìI²zrõˆ]v8?kżù ÓÔÕkñ§¡6ïiƒ <ð¾ÔÖ€kØxVÖOºººž@Ó>Ün÷†!òB‚ø‚ ŒòÝo2·¸ûõÉ+wÊ…RÙÙÙù¼wóÿ1m#—––²‹³²Î_½iwœ7q38IŒ0¼‹•ÌãÔm“­uÀpÏáfXŸ(A£§÷Ž÷zÐ0Ã9ÂP„ÑyÆÜK˜¶3ìP4a 1.›Îr£OßewQñ1zCÉßsŒ¶›lÐÖu ¹=ã_ÈàÙB4˜_½N/(Ú©„3Æ›TŸkÌ軂+.È} ½$4‰Ðœšáv³ý–ÁÖïöÛ"1S0Ò=ìãmË«£×é1ùIh?Gãœ;!ŒÄxˆ +¬é}$8íuŽÝ6Ú;l#Ðöú%°&YH&ïZí&;l:MnÇè-½ºÑ»V‡%ÅÐœNµyÄj0j!á`càk4ÁýêícË—ý´³ãÎ3FœM°ûªªñEK–þõâ%ø̸<ì Ç6ÕM‘xG¶0í 9[8ÖïìÀÐf˜æèž/ “ááäÍHà DjÓ›Ûô–Ûð '`£bÃ1ÎÅò þ~Œ„yc p˜IZ^û96»ì#ßÞë»e´‚_/\,2“ÑA·¸ÈW g#õ^ÒfÝ›:Sk¿¡gØ@KspÊ;ý1‘Œ‰ÈÍ •‡ê²²2ûz{ž1â$Iî.Õà_šùÑWM!q™ÃS; I2ŽÚA³ÖÓçôöŽx g!sGhΠzœ^7ÏΘ`öŒ¸ïšìPÚô¦;–á·ßŠqgœ;&2àñC€bb–]@­°0â ohôZÏ`»ÉjF<q tûu^@òZ„•Ëƒ>t¡°|ÓÝîÀ,°ÎIXB˜¥VqPLÊ´CüÀ,>™K"tÛhÙ¸m;œù:å:³ÙüŒR‘××oX·î®yî¸CTÌü¤»†ü‚3„Ï•ŠáòëôöŽÁ6¡8C6A)îwùM8å98mâÞ +{›ÎEЗ ;ã`.Vó6 +#>èñëW,Û(ìL¹9ÉÅIF?yÛ`»Þ«ë°Çà–<ãõc!ð ô/¸†‡0 Á@l ÇÀMÙà  ÁÐò¡ªûôâGèŽÙ¾u;¾%)•J‹ÅòŒÿñcoCÃ"‚8Azùrxãq7Ûòå°› þA›‰ØxÆ¢ÅW[¾~ÞûøHdsÙÞµq tµ”É\éAn¤à[}?A¬‡^¦X5èt>YÇ—ÛBù‹%•ï(Ëë¸cªyºíØ}Á™¶&'#svúÂ4pZuL©=4ÙFR{(¯òˆ¢¢>_Q´⟓:ãį Ð¥rÔ´}´ V¡3%XN«ñóéjZ›DÃeDu»ºÏç½’U´e§Ï˜^z $Mãbé‡ ¦dü?}|w«}~ú‚÷kµh´yoŠ†f~2 \”LWÕ5ÖaSa>é¥ÅioT¬Þÿº|ÍÁLȲùÞ+ØZ½fÆÜÔÚ‚LæS j©DŸ¼)³¥’¥’Ÿeš‘)wF=A³s¥èÚ[ž?ïüyÆœ™‹Ò¶UgWók±eMÍáñC 8ÊÛßP°Qµbæ¬Ê¢¥Õ ¯–×+÷ÔæikaA.¨TÉ/¯ÏÏ)„JOÌLIùË%º\‰¾Úó/¶ŸÙ%Çpß5æ¼ÌÙ]øÄù¥µTµÿnýªÙ3®œWZy¤üA$ÚÚ¼ª£ +ÍÁÜåÙ ÀѪe™­Ÿ}§$Ù[ÝÅÇ©®I2^AÁOÏç› VnÝ¡&©ÈÁ”¾÷û_:¤ç½×ë-))È6½–k½þ1";ÿÉ~µÇDu¥ñ‹­à€€ ÌŒê*ïaÀµÙPE™wAŠYÓò0ÅWHw³ÿ•ý£ÖUén³é>Ò¤Év›M6u›®Zµ&ë#´VV+>ff` hÇy03÷Îëìïœ;LÍnR´ðG=ùrsï™ó=Îùý¾oÎÐ}t" t4§ÉDs »fóz¨¯}.þê*rnùp;#’Èçm!z¿WΞ!’ÿ­‚|XEÎÔ Q/Kä’¢Kv§7Ì‹"ÿ;¨ÛŸ[³W!_±0>)¦bw&ýk˜ŽúÌD¤:|U4fÀ56.—/éëë› èf8,ËúÂB +Ç}Äq·ÙÝ/’[î~×ØÊ2vÈU*{{{çz7OÇ6›­²²ȦÊå'Îœã 1{|bŸ+vUC6·Ñíó‘»>bæƒz/ö‰#.ŸÑãÇ'ú¾!»Çèò™=<mnÍ}tõÖß Ȩ`ý ÝÆÍ$Æd<@ÆüÄ,€ýa§0dwcú>ØA ¿‡€VqÔOÐñ¡±ÕZ'aÄ,ñ‰î~¡…OØÀÕÅ',3ã£^:i‚5§ 6‰L…‡;Ì[¼Äâ#0ŽÑ ÎF½Óy/ bw˜ÇÓì%âöMî,„OfZBUèœð2D`Þ=¯\¾tYï•Ë³Œ¸À »êëøâTé§>uqˆ;hlÓÜTxkn»Ç"MBÐ0)€!(E°Ø'¸DÀ=a@ãòëí¼x¤"š#“ÞáI/Ð &CGg„…aEÈ8˜@ –ñ H‰I¯ÈC0 ØÁ¥£f¶»Ç—A› )`ñùëš[årÙµ¯¯Î2âV«u{eO‘ÊÞÿ¸ëC\‡,~LÄ<ð5‹ˆ³"0âñƒ€ L1›¦Y«šûN "° @´†òKË7¸‹À +ˆ—ˆµ%Ć¯ÖF ¼›x?|Á¯ÉCÓ‹a‹E;³q¸& YYƤÁåE%cîèÿ‹Í5' Ž=Þ'ä²fH]JoIJ¥R«ÕÎ2â?v´·£]|—ãn²ËáùGÝ /±Ëa?Ç}ÂqE\6ž¼8åÌÙÏçz?¢qÏá(ªÙ‘Éq'9n€¢É•r>ŠÞê¯sÜ:ô2å[o3  ££ƒµœò…ÔºÊÚ¶\Ú15ý°íؔЎ¬º)+Y&IHŠÓúƒÊêæ¬Õ«›sêöåîlSäHÿüyQ¿)_mx»ÔòÇÍÚêÁ#EÆcÅ–Îbs§ÊÜ©6/f¢¶tBJLÇK ¿Sk ÿ¾tôO›—KŸá¸—_Úé6'ã=þ›Ýþ.úü~¹Ñ¸õ±÷›ûO䬔¨ÊÆ'î=Yz<‘‹=_Æ'$¾ÞRMLÈØ¥À­n_$ ~s*xç4±÷ݽ~rãZˆ´(%fËδ†Cy5­ŠªWBd«Ù›ÝøZ~icæ³ Ñ[W$^ý톱?—i QS[Žƒi%!ŽuÒ'ˆ1/ÖUkÞ,:ªÿkù¹C?K[-‘IÊ3(ó[(Õ«šB„§/Mp”ÓО_¸uÅüèyÊéîö5µmÊ[rª[° *uûµmŠ¬çQé¹yQܯ·¬y»tä­’;oéŽS±`Ôb,¾x”r^­§œßhx«ØüΖ÷v*’ç?#ÍZ´}/Í#@v8’ê–œúý¹ØþòôD8Z½TváŸÀ)‡ÎúN=âHº‚·O“o¯Œ^ýWQþ*õæ +«Ý1×ìø±Œ±±±mÛ¶²?ÍÖýçïÄÚÐ}t" t4§ÉDófwMY!ÔW¥HþѺfì/eÃ%Ú7Uú£*Ó±œUT°KEyu¼ØÔYl8ªÒÞ¨?¦}gË¿[×d'ÄDË”ý2£á@xùßAÝþÜš½ +ùŠ…ñI1»3Y‚LC}f"R¾*3à—Ë—ôõõÍ5ŒÓ‹e}!…l-Ç}Äq·ÙÝ/’[î~×ØÊ2vÈU*{{{çz7OÇ6›­²²ȦÊå'Îœã 1»}bŸju­“ÃNÁÌZ9£Ë7„ÓêÔÚ\z'†Ÿh÷hÇçàÑ6¢UD‡H¿dœ`ôqX4ô›ó‹óÃnŸÁ%@ Í£ÞF›Mº€}R³S= tÅxð‚=k–°Þ‚Ä3âöyhÆCÛR¤Í ]Í}‡¨t™Ç~Â)ÝÔƒIjßíÅ Dt²éñ£™vzuVWød¦%ìLœZ«SgsO‰‰÷îyõàò¥Ëz¯\žeÄ^ØU_ħJ?8õ© ˆó@ÜAc›æ¦ÞàÐp˜àÀ Ý- Ÿ6`5²“Ïœ.vPhB‡#BãàñÄJ¼à§A†rˆ‡67L¸)¸”~¹µ ”0V¥å!0Žͼ˜ÿˆ™nsf‚½ß ‹Ï_×Ü*—Ë®}}u–·Z­Û+«€xŠTöþÇ]⺈m†G!¦rp³ôaÙêÒO +aèX‰ @‡÷8½áÔ~qQð.".‹ÌT¹Ý~C ¨Ã «›ZÃj÷Šôù0kˆW-i%¬„|q[[¸©gž§ÌÓh4³Œ¸ÓîØ°n}ZNÞW½“=ŠöcB¸ÈD)1UELNy1LJYîpŽ?¬B“ÔÁÿ_¦P &š³¬,ÛQ·§ü:Cµ‚ÿzú⦈ϲ ˜û„\Ö ©Ké-I©TjµÚYFüñÇŽöv´‹ïrÜMv9<ÿ¨›á%v9ìç¸O8®ˆ‹ÂÆ“§œ9ûù\ïãG4î9E5;29î$Ç PÔ¢"¹ÒCÎGÑ[ýuŽ[‡^¦|ë £qfttt°¶€S¾Zw@YÛ–K;¦¦¶›Ú‘U7e%Ë$ I1pZPYÝœ¡zusNݾܺ}Š¼YTeo’äÙNŒ±—ƒyZ®f«¨“QH|žhôÒÊz9l?)‹Õã¯>Qšêk›46-RcóTw+9zëñí³ùÙ©[T»#Ôìx_Úðð°Z­È6æHz®œ$-oOÛÂÁØâ5µ’#íNcKù%M­.®Sq ;‘ËJ‰e§ €Wøò.eŠ"³DàU:}‘‚/îßYY ˆóÂSM?¹Hò‘wøP[ô¾æûñ·8i¼`r: +æŠê|‘g„š&¤e÷^¡å,êÎY2ŽK`û/941©«Ý'Åßùýv·X,ÛJËpV)Œ?q¾ÙJ!ŽØ’Ÿ3¶ ÄVâÐ,“Ñ9lýÑ•ê<#M­û´ðéȳ·K-ðv½ýרhîa½†¼FßðÞo™Ä?š¦´’öŽ'w/lÌ•bâXEkv­Ðî“•íeȦÝ/©þ&[½7+JÁCë“£óÄÜÕüpÌ4`T,;˜†:,1MK +&qYaÄ–51¹B𔿚£þ2³˜¯ÇT/«a;5°twC¶²D¼bå2b°ªaíŽ:b»^ªÑƒ‚L€ð;êdY‰£-Púoé1D‡"<+)6{‚©Nñœ¢zJ,&?8FùÆÊNˆ*Jç¥sY`žšÃ‡Ù*êd”Ÿ'½´²^ÛOJç‚ZZbüµÓG JS}m“ƦBjlžên%Go=¾}6?;µ`‹Êbw„šïKV«ÕÙÆIÏ•“¤Åàíi[ø [¼¦Vr¤ÝÙÕ¢-Üæ+> +“'r +VÇH‘b.KÃJ¢è”B±:% &9=Ã’ #7§Çfó#ÀVÂÙº7kçAùöZià¿]½\»_&s¢x,UU&þ5èa¾4¡©k©ª3`ip^$Jèèè5Œ‹hCCCyJ%xž‹Ð9„º©Ü/,r¿;”f!u“È Â`0„z7Ú[k6›­´´ŠÎ\ºì&ÉA÷ÄÌZŒ*¸Lϯ¯æ^Vg¸¦sõX§Í¡oï½VW/w1êk¯…Ÿ]2µ¡ÍÅõ•)é™)“¾éÙ°¹…YÅL{5­æ3ÇbwÓþЛbÜö/BG¡üómsÎh,¶x¤¦ÅÅlÍ=2Ez^ìùêPRâ*í›AF|Ü3¾³²ç „§š~r‘ä# îÀ¾-aSóÇäJPѱ5ÏÒ™á—V³æ4ÑÊÔ„ó¹ñfÎV‚ôÚ\O¼äÐĤ®vŸHç÷ÛAFÜb±l+-Äã„ñ'Î7[)Ä)Â/%sžæ¨RÍêÑ€¦}E^…xN×ÌL|ý…ëå¡cÜB’¿t›•›6CÌ„Âd2q§Ý±a}Þ©â7S¿“$ûínÓ;‹É|'n¾S<ûÕL_Œ~#Fø’·Î£¹Á\#fL9Gð÷—‡cãÏIò¦©¯`3Î’‚0›ÍAFüÍ[yC¡cuQÉáÕ…2ÃTr؉Ðå#¨YQ,?îRÛÏ¡ÞÇ{Ôž9ùÚòL„. dĨ…’Òƒ\ ÃYý]„ÖC-S\ro``i466Re">è;êä¸bªy·åØ´àŠLS“ÍcÁ¢•‡MmV€æšZ©î€¼â€ŒX'ÿ#–/ûv·Ü}Nãþï6ëñÛ±b<Û—@ǯ´/™)±-ûa›§IóýžB»*´îëäÓöÉ®–Ic3~¾^î5{ï_$í:ÏHSDë>-|:òìíÒãC ¼]oÿ5*š{X¯!¯‘Ã7¼÷[&ñ¦©­¤½ãÉÝ se@¤˜8VQÅšÝ_+´ûde{²i÷Kª¿Y[P•þQäò/á“«<絘`GK*à•!XÑô³3í;•ý»bûÑ"Ç õxKE׿>SD³VƱ «ÓwÖ=¦zY CxÜ©…¤»²•%â+—±«Öî¨#¶ë¥=(HÀDw@VQ'“äÀM–‡…}«“zÎj\ÿÙj=JS]e?Vâ£:Ã|æY ÇÔ\ß—yþ§½xð¯É¬üôèmÇçˆr@âóD£—VÖËaûIé\X(-1þÚé#¥©¾¶IcÓ!56Ou·’£·ß>›ŸZ°Ee±;BÍŽ÷¥ «Õj€lcŽ¤çÊIÒbðö´-|Œ-^S+9Òî4¶”æyΪèëÿTz.h§>·-²S¦Ã}×)fõx±óÄçp" ‡• "–DZ6Ugì:¤Ø®—þ;ÐÕ˵ûe"1'ŠÇRUeâ_ƒ^ú®ÿA4Õa-Uu, ‰:::B ã"ÚÐÐPžR žç"t¡n*÷ $‹€Üï¥YH%r‚0 ¡Þ͇öÖšÍf+--d…¢„3—.»IrÀýÂ<:³ ¤0¤Ÿ½VW¯ÝÝçø³Çê¢_¡_m.ü ^mî>»»ßéadlž}ðÉâú­o¶Á³ßöçCZæ±¹ÿÏ~µEudá‹DY Èk|,)E… êVÊŠn¢ Œ‚ãðR ’ ++„˜ÚûcK~ì¯ý±•[«¬UY³[IùŠIiP_ *qg†ç o˜Ç÷™î=}ï0 +ƒVmì:4wºO÷9Ýßwî=ÔHÁ¨æv&Ê&^ŒòûwhM mNë0Î ±«1v2d+ø ;¸•´Š±JöwԤܭ®E<¹%)iu +qá3ûѧ'Ö¬Z]ÿðþ<#n1[ŽfdâAÁç˯0~a¶ÊGâÛ 5átäAlj~òu‘;Të&*»ß¿+‹&³kÊçaáFÔy“6aÀŽ{­¶ôÜ| äé“ÇóŒ¸J¥:œ” ˆ‡”^©Psˆ+Ô<^¯~.×Ë”¾SSb¤fMžpÀu|~°v‚N'cQa|·Uûá^¸óh:Z&“Í3â:-³sûŽ0aôY‡ã­QöÚ÷àzín§ž:BÿSF4¼fe*çBÂ%¾‡A™JçfÈnòn™sˆ_"zËÆ÷eí{ö’,‰¦i¹\>ψ¿~K)*‚rñ E5sÉaÍt™a-—6RÔ5ŠŠ£¼àà+oTÿô¦Ïñ+jà 'IÙHQW)JJPóò$¥©ñ"Y}Em‡ZfÿgJå«9P\\Ì•½-(ýs:µ ŠTL9s[Ž ©ÈÄ9á+Bûùû€ÑŒ´87ÜÃåbRKF¦DFm òú¾ã}6w¾™Ž¯§âoⲃ¸”:'rûÙD rN„KEè¼_MÁuYuÜäKQ’ÃɆîÈ\ŸQHÉŸÀçäœpÉqafQLìÐ…‹Ð[ƒ³Š6¥ÐGò„É9°$½0 +8¾9\]äåõÍÇ1øÖ1\žŠÊD„ð\ïî GxĹŠÎÄ?Hð̦?ïŽöóYú®(O˜þD½ÐÕqž0£0 +Ž¿fý20´nUÈíニ[BíÕ6iù4W*­@­Uxôaßã‹q1k÷ìKTiAta0ǃ†t •1u;?æÊC4Î9îÿ¤˜p'­Ëˆ «ÇµœƒÜüsÑp‹—ñýM&ÈÝ‘ÙìX7÷¡Ðßß/‰²]›#?—aU½]Q=} H+‘¬ +Õéš+%ñ;`ùû¡~Oþ²××Řgðùl":—èJ-ÂðR..BDíýû¾Cëüá]¼ëhXö—1â¼|J€Ø’ã‘‚Ð¥¾þ>‰Yɧ!OèáÚWžê`+1{˜†ƒ +æ§Ùk½½½;bcÁó-u‰¢Z¹ÜÏ“,r¿§œf<—DÑt}}ý›>ÍÛ6kM£Ñ$%%²A!‚ 7n1î1²“‹/ +Fµ^®1´3¦N©CgéֳݶKoé6XA:3™Ò[:Ȭ¹ÛÈö˜mJ“­Ë`)…ÚЦ5véY¥Áª4°F²°CÏòû€šÒhƒMzŒ6XÕ©g» ì “ ~véasK<›íJ³4ys=&»ÒÄÕòæ¬},êe1lÛ©3ƒ¡ÆÜ6UQ)ŸaU8ƒ[‚òV¥ShŒC÷˜Ù>=±fÕêú‡÷çq‹Ùr4# +>_~Ý€ñ ³U>Êß^÷˜:Å,lòÿ&mÀ÷Zmé¹ùAÈÓ'çq•Ju8) )½R¡æW¨õoÁš-èæ_ƒmjC'cQa|·Uûá^¸óh:Z&“Í3â:-³sûŽ0aôY‡ã­Qæñûü­ÌTà£6‚ñ}Yûž½$K¢iZ.—Ï3â¯ßRŠŠ(ê E5sÉaÍt™a-—6RÔ5ŠŠ£¼àà+oTÿô¦Ïñ+jà 'IÙHQW)JJPóò$¥©ñ"Y}Em‡ZfÿgJå«9P\\Ì•½-(ýs:µ ŠTLWs¯'¤"焯YìçïF3NÐâÜp—‹¡–ü,2­ ŠÞþ/ñ^p*; +_>Œ¿OfKâÙÓ lI‚¥d?ˆ¹$ÁU,0u¦ˆØÏ'áÊ”š?Ð>•rXlPÞƃwmÍ•6ié_.Ï*ì-?bmã‹Æ Â÷[wÇ ÏìöùCD0Öjѽ{¨ñ2?k2‡±,§G´¶!dçg‘N‡Û[pÛðzq4½3l³rÖÓ,²²ht©5ÈnGãî äðÉáivÖ¨Á+— ÆôlV4<‚FF`28ØnÝBØhœ¸ß|´;u÷|ý–ÌãžÛ¸¿ÖÞRiõÄ_ÊÑó*¬mhººkK$iy OBZXæÑ’üÈäO8¦åD¤äGd}³;sý‚wßù8:HuV„¯ˆ-gL§Ç™æF3ÓJØS 蛸8 Ô²•Š,§âYŽÌ–Óñ–I$g9±CD\–ôüõ÷×.§|½ãŽ†es$oŸ ¶äx¤ t©¯¿ObÖFòiÈz¸ö•…§:ØJÌÞ¦áàÁʆ††9Dh¶[ooïŽXÙŠºDQ­\îçI¹ßSN3žK¢hº¾¾þMŸæm›µ¦Ñh’’’Ù Á…7á“ÜcdùR×òȩ)WëÛSc~Ö7ܤRØAêÔYZUÒQPè6Z»Œ¬\Å4ªžhj¦ePýD9ð_ö«5ª©+ _¨h«VyE´Z+# T\#YKÞXCx +Ø*FŠ8 U;.D´v¤³¤Ó•©Î(`•êT‘Uà€‚HxÉû„@. IΞsoÄ]Sƒü¡gíÜusϹgç|ß>wïòû•½õR²U¤dU[ž¡yHÙ1‚šåª:ñ`uDÐÑWÓ-i‘«ºt¨P§ÚG N2TÕÞs·½chS . ^©Ás +:û[Hu/‚ûƒŠªŽ>úïHPÙÖ]ÞÔ*ì“ÝR6HH [$Öu±OmÔ.õRŽ¤d‚VÅÈG›bæšÏ)+½1ÁŒ+ʵAA˜q#Ó¹çqÆÖ¦P‰úe° ¯¦ÕKå]hW©Ã# ³;·+&˜q±X쳚‹765;v6OB3Žc§î5ãÏÉptkÁz‰¼I¦\«9®tÁ{nͱ +…Ìøà€ì{‡…,ë›ÂÆA€ÆR¨óyþÚÆkMCÊ>€Âg*Kâp8"‘h‚öækDéqN¯<)3,¡“Ãr‚ø‘ œ=¼ðYFÆE.¾ìu¼B­W&sòó_D9! XÓÓ%¥ÇvEÊê+ Â×2žw[Zž@BB]œe&›9QlªbÒ¹š{6£*2^˜å,3Ãé3§`§A1^¸¥Ž¯óp-ù‰̱7Åø ßÐ?ʆS\øþÃáWyŠûpªÇpªö:ÆHªË}8Å]yÐUsÔ Îù–îZb¨§Àõ![Š¡çšú^¾ZG]Ûîæiª ` ¼­<‹5Ÿa·Â­»§w\›¯Á?4ú'7Ù.†øx$—ãï=df¢¨(ôù¨¾^; +¡ÑÑímðíAØ°ÒÓ¡»[;zÐ7:Z55p "#щ“H*yèîUÃW_AH(¬_I_Cc#Œ™äÁ½†”£Ë—açNˆ‹ƒë×ö<S[‹ð»üp¶¥CK3ºx Àº`¸Qúø„/º]ýùú´é3vóyÐZ %šê|•.$Vå¢ÚB¸ÕU™³ÜÖ + émã)îko±ö‹°ân¤•Æô`†ÆÙ8[èOô1Ǥÿ°dòXK)! §º=®4E +%?,6EŠ›:ÝÎðúy,1ªgd°2Ä"h3Ç—?FÏÜ0K~‘¬àXGÏy“õ9v¦!±ï¯‰Â#Y8.¸aLßf`4; ÊŠ¹ÄCÅGö7k­àœ?:¾ +{!µ<¶47­æ‡SÜ4žLÕ'뙆oÎ1ôæ3×ÅXó­~„ÇgE³ñòçZÌÀŽÞ37+>uïj¸ ä>aKy¨¦úK;*²l8»z‰dã¦S9ÇN UBÒ~D’€#+9ø|”‘º»=i4P] ICܧN£¡¡±a¹Ò‘£R¡Ò›°c'ÄÆÂO?RI÷¡×ûMèÈQ´a—_¢ÚšÇuK‰Y57o¢ÄD´õS(8ò¡_:Éa(+…¤$Øð1DGÙlèí…‚Bä´‚š¶«sÌÃøy!­³³ÓÛÛS¶|1³îòq—iê.<9ùHXˆ¾AA¾¿‹=•ôšO»¾Ë~ðÉð"biQº"ÿßqŠ~ØNs»“]˜ÆÄ[Ë×. ý“ ¥p?%XØ~‘VŒyoM›9Å+dõià³^ô7H+uìË+ô÷Ø5^8ƒ1ûÖ­[/¡çÝÚÛÛ1r[‚8C5tî§Ks¿;ôH7:`s8eee/{5¯ÛskR©tõêÕ˜Y3FVÑH€VrD[êêXQ#û‡Dø^*ïP~òuÚѸ„ÄRQN]nÔ6îÜûÅŽ=û.ý· +÷ +ºzÏ].9ôï¬Ï“ÿ¾-aÏ–ÏvmÞñÙÎ}ùW^¨O†]ŸÌ-X±).>±LXßz‰ìXNþÖø„È-qq»v'ùîr… SZHENɵø¿îŠÛ»mûÞ}™E—„}Ò²†æý)i1;þœuñJ?Q¿äHÖ‡Og_­¬.*«øDZï·ÅïÝ÷é·ß¸ÝÜyPÙ0@Š¤¼®‹}j£wir$%{´*F>Ú3×|NYé f\©P® +ÂŒ™˜žÈ=/hS¨Dý² Ø„WÓê¥ò. ´«Ôá †ÙÛ̸X,öYÍÅŒ›š;›'¡¯“`l¯>†£[{`ÖKäM2¥àZÈq¥ •#q¬…Bá3>8 ûÀÞa!Ëú¦°q q€ê|ž¿¶ñZÓ²é„ Î.T–ÄápD"Ñ3þìÍ?6Öˆ Ò â^yRfXB'‡åñ#A8QU&1ËȸèÂÅ—½ŽW¨õÊdN~þ‹"‡ kzº¤ôØ®èQY}%Aà*Žááy·¥åé$$$ÐeÁYf¸™Ŧ*&«¹g3ª"ã…YÎ23œ>s +vÃá…[êø:×’ŸXaÀ{A辡ŸÊÆÅ)œ\5œê*§jXweT²Ôs2º*SÝ4G¼à,¯c7Ÿ­ÅÐY¢©ÎWéBbU.ª-„[]•9Ëm­p ¼m<Å}ÍÂà-Ö~VÜ´Ò˜þÌ8ç ý©“6°MÄéå£Hó SÜiE¹ÑŠòxÌ´"tS§»C¶ä°×̦F+C,‚¢9¾côÌ ³Ä!àÉ +Žµqôœg0YŸcgûþš(Ž/Ÿ…ã‚ÆįF³¢¬X¶&*>²¿Yˆsþp|ö¢uGÛ£0È4-BL†'œñ©Ù·b‰Ñï&›¿éÉg®‹±ÆÁHEÂ㳂¢Ùxùs-f`Gï™›Ÿ:€w 5\P rŸ°¥‚ÈÚÌÍÁ Ü)„ü|°±Å6P^Ãù;– ÑÖÖæáá!sZȨû5„Eu×GN„Ê ÄÏ„ö\YU†/Ç_`¢“ãx}'¹C$wûMj©ŽÙ¾dwøÁSx˜³ÞÒˆ˜ª¹t­9¦®OSý«Ûw‹n6UGO‹8ŸºB™c}©¨Ž×âÍÃKã§Óg!B¯ÛZ[[ñÎÄy‚¨QÖ~êT¸ö+Uöä( 6I)ïšwöÿab±ØÓÓ#K3¦§^»Ñð°§W%uG!Ž:eaW½¤§ ¶C¼5jÉR§K7²ñv)+×ÞyÙ[û“ç/·öÁíjÁWÿ>½7ÖÍË›eee»l¹›·o`Ȧ¤ïÏ +:»jÛÅÑ{ãfÌœµÄÑéâÍì^€ªGOþöÙÖvvÖ¶vÎ.7oŸÏ¾ú×ýæG¹Õüí1±ËW`·qtZâ`ùÉ®Œ¼Âó7³W}0ŸÉŠÜÃïãáŸîßùÙçxõ]ûâ½Ö¬u÷ôYé±ê£=Ÿf—×<)šdò:q÷8ˆG*žT”duâžv彶D™šÌ,*,gÄrÅÚ€Œ¸ÍètÚU|õÈûRjoc‡·ÐëÅÝ µ¯ß?$ŒN7.½oœ +…Þž^qC#ãSÓEJÄëDxoï=Ž³[u`Ö‹º›¤ +!@^Àq¥ Ž¹%iÉçóÇq™DºÔÞÁœiy‡ßˆ+ÔFITçù;7u): +ø Ë]¨*‰$I@0Έ¿ºùEGDAT)‹Ã¬‘*ÃeqXBW™R™„¾áµë?¿é÷x‹ì©Têìë7Ÿ .D%…š†:%=ö, ªª/#{¬eÜÜ+š›ÿØââ┲€ íhþ‘äêp6¥˜ÔVs¯æ”"ã[èkëêiáE¢H^ˆ…šÃyXKne­ g“vFxÿÒœp4 ß{ÂéUX¨b1+Ǻ5Q%]9/øKÚ¶/™ ç¼Ë?·Õ™¨áëåÝÝœ íyýUý•éÔó÷½"} ú'”´”¤2gÓm—qž´?eø‘ꃵ О‚Î¥RM¹yˆÇCZÚ`jŠ.\ìƒM5æÊ4w."àp ¦–j*/‡”S• 2Ùà¼MMèàAdµih—‹êëŸ/×Ñ·nAJ +Ú½™ÏÃó çep3 ²³àÒeÄ磾^ª_¯åÜF›·  ij¢pûà*«¬@©©” ööÔ$6@A|²¦ëÂŽí P .ø|ÀØÚ­Ü|Ýi±¡{[àðÝÄ\½ÀÑÝlÒä ¤­Q`´ÕšpÜ“‰óÂ+˜áÆð`¯g1¬ix«øÈ>²ž }à$÷9±Gâ|²;œã ö¯°¡MDŸâÂXeé̤60´^(3 ‚_ßtî4¼Ðãì¿ÆQB ×û+ÓFie:ªÉ„ÎÂG÷Î9/øóò÷¹B‰T}U,G%w1ÉÁÙ Êʨ†ÌL4_ÉU7w(-E/v¯oLu’©ŽüàQ•*¹¹˜E…CI ž½hòd4i2ŠƒÎÎÁñªŸrrÐÙ³è@<"I*³,èn1jþ/:}nç¢^Å`çZ>DlCÒÓC&xÇSÈÏœ11`f†S 1 + A††èÈP¥ÕçC[[›‡‡†Ìi!£î× Ô]9*3?Úse•~ï;REïÌ©y{í1OzOp1É1‡åƒüy‰är|ÌU¤InðOi¢ëÆÅtBg²Óº¹AÛ`Þz«{žcbûnbÑͦêèiqçSW>ÆwŠêx-nÐ<¼4~q:}Fqqñ˜bôz­µµÕÁ‘‚lAœ'ˆeí§Nk¿ReOŽ²`“dQQÑ›~›wöÚL,{zzbdiÆôÔk7zöôª¤®š²÷ì,éy‚ A" ݨ± +TÄv+¢¢†#Š¥"EDÄB $ ¹³÷K[Û-è +þ¡snr¾ÜÌwïÌýýfîÌ]X‰†AùŒ%3,@;v úG]º?7¢¼s(1FBs‚P×ý…È×U­ÐØ€ärTrx|DÈÇ?É[Ðòt&Ôm¤šVƒª*ÑÑc(8¬­`Óf¤éÀÓº.#ð:JxüÉŠ DˆÌþŠâ—CíCرLM!"ÚÚzl¹p©ÐbÈÐ R>ÔæC}îvŽ¶/ ÞÊBwrAQô¸ä”÷$'L¤aVfìyãÄË…1NÜH=Ó¢h!1´ˆ•.>’ñƃM0mä©ÎÃìR§°ô\2|ÿ–i)þä| +KÂîØÆt®ò@à[ b„©¯ÄAÇÄü†ÏÜ(GÂEtq‚‹WÀhÓ¿3Ý)’„‰ób™)Ç7Š†_ c`ÎÓܬ a»K€“8Èy’ê×Cïöga«SYê®X`“œÏàWl™én5Ø”úv@4-<Þ™E' 趄/¥‹âØ}ûñCñ.cmmòÓ·ãSBwó:K³z9ÒÒlT– M×gLwy×Ç#W(ŸH=ePÁd1X,¨y@NTU¡óш ’’§ºø¿†Fݹ<´t)ØÛƒ( p`ꦥ€…:5ˆ\!­å|‹¦L +6nBM¿ îÝPûhh€¦&¨Â‘µpDÐàÊU8sÄbØ“F†ŒA¹±„9Aàê +ûjjžšÜÙ ­­8ѾýÈÃÙPà‹} ÑÂú `kk×!E‹Á³~‰úúúÀÀ@ ™·+­ò‡C —é*óz„ÒTž —”¥9B?/üº‹­Å嵞87jà\ªîbÔ³$'sl +I9MŽ©öøG¾7’07õ‘à"ˆ¦÷ý*ÁÄ.r¢Ž6·nÆ‘L ¯)½¿ï Õñ^œ¼5vœJYTTÔ½l©««óô"!›D™Q¦¯ýúREàÚï¦^“¥Ï$ &S&“½joÞÈK“–––àà`Œ¬µ õÄÙïÕµj¡Õíc[Dj6©*ðCs[}'%Ue‹ºAm»æý%ñö¶v²kWñŽöŽ0‘#biMù*ë[\=l×V4)IÛúó^ÛQÕÒöXuÚÎÐè*ÕææâF\.—ó‚¹q+ŠÍ—'³›õˆW6cÛÞ þrŽnC¬jnÃYEp¹¬Âk¶/>sg¦syWc5p¢R(§MõGw¾Z~OpO¡.ïçüö:êÖŽ_®”ßõñ%«$&“YQQ1Àˆÿÿ’`I{ â'}qx¾·Ê°@_^'ˆÓ10ÂŽ°´:›wîUûñI£R9]2 ND)‰šQ_Jz<ΑU} ALŽŒÀ¼˜IIIú¶€`zX‡.cÌ‹eð¤ÏÑͽØàw­Oáî/ÊÑÒfÐáfäÏåLžÔ±¯‹Hi¡Ks—0˜6ØþA&Æ) 8„¶wõ­¬ßw²úfÖ¿G¡÷³'x·6zZ˜…pym.@ÃåΟr:K³Éï??fënŸÅõ‡×OÐÇPÝg°~nh|þdd“‰Øþp£égÐýû°d ¼7}sê]òß ùhÚ4$ëjªÉéÌLÁ¦Mp¿õèa)( æÍýý…žÙ·²dg©ip¯¶ý$~Tʧ:mm°sLœˆ¶~†´ÚžÈU+ºxV­BT[D¡ ÃGHà +/ë(àp@¡øýŽý*.Z ºAʇÚ|¨/ÐÝÎÑöÄ[YèN.(Š—œòžä„‰4ÜÊŒ=o¬x¹‹0†ÁÔ“-Š.\D—$ºøˆŒÍMßw¦ÈÓü!ÛžÊV§°ÿ„iúy–žrl8ÆUìçL±5',M}#DËœ8ÐôLæFusžÜˆ!Iœè0ÆÔô-†E’à27։߭)ˆ¡‡Æ1ðŒ£›•!lwJpRÿætìñÓïø‡f<µíÞÈàW&Ïò°67¥ +ˆ¢…Ç;ó£ !©8¸è¢8&7ÒÑ~¼Þe¬­M~úv|Jèn^giV/GZšÊr¡éÚ£âŒé.ïúøqä +eïøuKgrÏ‚± …B«ª+"òóѬYhþ|(+{V_׉rÏ ?_¹@«Ý»Á×ÒöBGǯÔtèómàŠÉ¼õù‰är´HŠ¬­ é#\sñc8$Ñ?w€JõT ¿˜öâòÐ'Ÿ@]]Ï"]ëŸÎB¾³Ñ°aÈË]ºHÎ9¬›æââ öSôsI}}}`` †ÌÛ•VùÃ!Ët•y½Bi*Ï…†KªÒœ?/²èµ³(\ë Çyš=ÉÙÿƒ]äL{Š¿'Ò#AÊTv¤•07î‘8QíÄíÃUbÐÁÄÆô¦Ž2·nÆ‘LÃWC7íû÷2’ÒÃâ™G›Ñƒ±ãTêÈ¢¢¢@êeI]]§ Ù$‚È$ˆ2}í×—*×~7õš,}&a0™2™ìU{óF^š´´´cd­m¨'Î~¯¨Uk ­nÛ¢_kÖ´iê4uñŠ@$ž:cæš?Ý÷õq~XØ[&&3Ùþ_ž<-‰^Ìæ}ö»%+WæC&MñX±n}aÅ=YUͪ’ØÁA±«ÖDÆ-›:ÓgÛÞýW+ªcâ]\ÝV%mL9|Œ#Ž;v?d‹Íæ ¯Ü¸eðâzuí v€‘‘q_»òƒÉ^ήnÂ01_$ž>›•¸nvm}òV×)4†sx¤ôhöÙ¯ &¯,üÃJ­òðÁ#**  u¡"¬$¼”$^†yTX|t»Û©Ã´;}èt:;nµ·ê´ÕAÇ*"Ž»"UTª€<‚ H"1!É9{ÿ?躭•øÂÑ;‡ðÿÿœ{ï¹÷ûν竔«z5†.å]òÐ!7u±Olô.ÉTR2шú`f,ycÎ\'çÚ‹ç'q­FG·µw8PR>ŠØ«ÑIeJéóß„—Ó®Œ°O§MËptd]þ©a’—Ëå¢H!AÜεïhé0ƒxÇðI ýKb$»ÇàµáÑëJ­ñ\«ÔM0]#ñ¼Úa5™M¥P¾¹ÒÏãu¡½‹T¥] +u»Éçù+{\»~G{ñ|{g`0]%ñx<©T:Ɉ?}“äåÙRÔŠºÊ‡§'ª «™â°ž¢ŽSTeF>ÛÖîDåɽŽ—¨ )•Q’ÅuŒ¢šiÔÌL)é‰6£«ú+µ’h™Ð°¦›O¨:óóóY@ñ|íc³¹1›¸¢4ŽhƒÇóÕbãj‘—Í%϶¬é6³¦Ò¯¹D ²ELÒƒb¢%³þaó-^3çú:$æyGoò$žÄH$;b7sc²¸ì7ìH¨äÈÞÀÅ£ëñëpíl„˜nOK? Zaoi1çõÐ4ö[9^â4OcJ2Æ&ÓÅgó„©sZ“‰ÜœXU?'»•úæ’ ¶´¹Z+Pvñç†ÃÞ®üp¹Bi:ŽFvay9š›còpL;þñÒ%äó!1z5ŸñInô‰ÛÌÊà8γ²ž55?3oûº¨h'—w?ø¨º±5#'ÏÕ}áZILÖöw£“’%‰É›¶¾Ã_Ws¥É¸Šsm×ø3ssA¤(kÛŸ$ñI©›râ“S¸¹;:ÏÍÚöοOœ¯ß¼ýÏ‹<<çÎKÍÊ9U¥{TÛ­Öw*Ô“ é]’©¤rULjšÜ==š±ä9sœk/žŸdĵm|\AÜÖÞá@Iù(b¯F'•)éØžÿ>¼„vmdtÀ€}:}lZ†£#ëòO “Œ¸\.E + âv¬}GK‡Ä;†Il¯6F²Ûx ^½®ÔÊɉÔ*õ_L×H<¯öööIF\¥P¾¹ÒÏãu¡½‹”°] +u»Éçù+{\»~G{ñ|{g`0]%ñx<éCÕÇÿw“äåÙRÔŠºÊ‡§'ª «™â°ž¢ŽST­2©Ù¶v'*O¾èu¼DmH© ˆ’,¦¨cÕL£ffJIOì´]Õ_¡¨•DË„†5ݼùdäçç3²€âùÚÇfs£7r'A‹1bÐCœÆ~+‡Gžg³¦ÛÌš*ÞÀ‰Ïå‰ÒÙ¢ éAÆAœÎŽÝÌÞÄåú²HüÓ~g^˜ÄÅï"ñÀZ"Wï‰Ù_+ÙM ÛŠÅ¢ÆWZO1 +Õ=§qðœþj™¾¹”þ}´5•Z~@E}o}1ÇÅqÅjÁà­¡ÇÙ{`ŒiG£ˆÖCÓUúÕ`Àê3† `Á Ñ€J]7ð¶Œî€ß~ƒ®®° +«ª€8aO¢Þ`”¸€\Ž_}…žžô{¬­£Ç” Ðj`pvì€3aæLص îŽÒƒË û¨ôƸHrñåä ³3ämÁ¡! ÞèÆþ~$óôxgÛÚ!') +}– ©‹êpá" E…~kÝϧ9[cm3cGº{ª°¿ÚÐR¦3ÄÆh«@EÝÀ•c«–z"Í´Ÿ*ˆqOø£·$ƒ+ÚÀ¦y¾Eer’¶ú&,2·´Hæ9È÷„á!¡¦ÈH3šH¿Á4ñxâÁHåÞˆåNVÔl‹à¤…ñÙ^âtÉ‚_[’é™çí6Êkæ<_‡Ä->:%i SÙë38qÙ¼˜,.{™= •Ù»¸xt=~®)Q?Šê÷s!D÷eK? Zî`i1çõ°tNB®7™š†dó@&ŠÏæ’‡¹î3ÈDnN¬ªƒŸ“]‚ÎJ}sÉ[Ú\ +­(»øsÃáo×@~¸\¡4Æñ¤€²R (HIA½ž~Óá¾ýÅ àÃ?â]5ô@g'(U„¬@ÈVX„läóáÒ%ÚÿŽ +;:@&»?,ýqh³³ÑinÛ$_Ôw±·úIR_À<°²Æ­Û€¤2ÔÒr<Þدöh¨Ó>þ£›[éÍeÝ–ÃoDBoÂŒ ETgCmµ”êìž.»/]vÛÞ6oíFHØÞÒI—SØŠíEv‘ñê•Kí Êq‰ØÆ ÆÌó}Ÿß¨Ý³g;aCä{¾çgæç™çù>Ïçûý>ŸO]|öØ,‚O¡² +¤R<µ<ƒ1!¹œª5O/<øðPy9JM<5ÔN0¦uÑÒÒâáá![nm^“û=ˆøŠšì¡ ¡* nCÛÏ]ÕY½–{oÿ—ÇœW²¬mL˽‡–Õ7‡lß¡ª:iÃæ-¹U ½²ŠæÖ°ˆÈ)Ó¦Í_`Ê[·ž´¶žI56Ø.qáßžX®¾³V²¿{œ›â¬;\õ.¶Õš¤ÂãúHîA[¡¼:K^•I=ßì•™ŠG· ³¬©,9nëäú¼­}D‡^=Qþ=di f¦¨ €zSTˆBBÁÐ&OAlJIFgâ!<ΟG2ðKa…3"dhÑQ^œ<… !µ·½œº¾ââÍFêH_"Â!ý +|ó Ú»ÒÒ¨ñ4ž ص]»ŠÒ.¢ˆØ 9?¢Þ^*¤~™¢¤íß,+PQA‹lPÌ ìÞŽGÏžÁ/HŒG§¿ƒà`¤£”“ƒÎÄ–òã¡®®?lrìíÞÏEÓghæùÐR x”50+2Ð/·¡³´õáå68‘´u¦­ZciÅÛb‰s’Êà†0ý>¶X¿{¡ãºªš“7²ô;Ü!Ý»ïÌ`šá\r}S¦ÅºËãÝá²·ø,{)]“˜5Õeý‚u;X8q¼,ª"̹›ÌñBA‘¬eîs¦LUµXª¼ËÊ›%U! ü_ßÍÌÀÖšm–f6:ƒe{r®ûB +§/Öõ ©>è8Zi¬«<‰ ×|q\¬£1•¦ÆcàºSÖCYzTõñ¶XFž™ÏÀ«Òò/ÅàSBuÙòªŒ!Ž´*=¾ /Jž=¸âhõó*Ž¨S2b8³sÐ45äº +µ¶P_ÿs–;P;gDGÁåtع6n„+éð°’S`õj¤®†ôõglQ$$¢M›àòe$—¿œPôŽÃ%CŽ³$'CJ*„m†ƒQaJ:óçSó›à¢‹ ø>Ú·V{@Ú%e"+j„ðùçˆÅBÓ{8 §¿¥VŒŽFññÔr73!é,rsí€ ª¢´{j}®ŒiE´´´xxx`È–[›×ä~"¾¢&{èB¨ÊB‚Û¸õIª2y«ì)Òk4½h¿=\õ‘ã¼ê¥î¯KrêMÎðD6¤yuœvÛ`M#´&;.Ø°‹jæÜá]%Tbï ñ“6GsúÌ©œ Sœ~¸@ÆúR.m‹‘dj0O oœN7(--C„FÛš››íì)Èlâ*A¼¿³Ý¹þöN+ÜÜ£cN•Õ7v+c¶‹B¶‡k¨k|èàtäÔ™}_}íâÁYÅñÜ}øÓCGðŠ>ÞƯ­/©©wá¬Æ’Å‚euà豘¤”3.Š9µp‰-Â<‘xîÑóMýŠ§]}BQ—pŒÅ#užø|D]5bi‚Æ>ÙÆ­³ ø%ÅãŒx_`@ÆBGOÿ|Æ=M}Â*¶1>„÷ÓkÅ=­ +h¯ ÝL§ÓÊÿ÷`œ‰DÞ^\Œ¸®>-õzf‡ñšÛâ£ãƒÝº£ç©¤_PøXh¿Ò…âH$K Œ3â]‡ev&LÖ}Á,±žtJ#ìç>|ÚÝÿ+@± ÎÙ…bI$I +…ÂqFüíÍ/2ËÅ‚¨V’ü¡˜a’–ÄM‚pÄ·,AÌÒѽ“ó®÷ñY»DâÈó3#ˆQE¡¦2J=O…bõ bÖ2îìʆ†¿@TT1¨ –ꆓk·“ÞXÊ OͽsC¾¡Œ HÐÖUÃb»‰šRKþ¦™JÿÓÏCð–á–þ[™¤­>Ž_m’Jl°%\âÂÏÞX7,f¥qn¯S²¿{œ›â,®ùü÷‹5UUý¸>Ò†{ÐV(¯Î’WeRÏ7{e¦âÑ-è,k*KgΣÛ:¹>okáñ£—+«aÉR¤=ÝÌ Þff"06 9­ø?ûUÖÔ•Åã.âÎ"8. „`ªVÜ Ð@Xew Áªì´bÅ¥S÷¥¢`pAAA(:–Mu¨"‹Â'pásë¦ $䜹/ íô›©`Åþaï÷Ëû^Þ}÷ÞsïùýÎ;7n€o¾oGc[¤¥£‘!WF=†…Aü p÷@]] [ ŤP^ŽëÖ£™LÐÀ)SÐÕvíµkA$Ĉܱ§O‡‘*0ÛE"Ü»¿^š˜BR¶¿¢Íjk‡Œ³ ‚ªªâߌ14¶o?!†‡CÝ=¼z–§Z[áüùI…MaØ0ùA[;½ÒÞ—}o—ó +TFŽ + ðÁ%lÈ•WfÈzãÄò4¸•…-ÅËRÌŒY„H£Æ ±tÑvæ8ùë!¦B:-cy…ÎqÕ¡† ð1PkKUjÄ@swïŽ@ÈúE0ÿ-8ø3—¬Òj‡=ØÚcšûJ"^ýPhÊ€ç>Mc²2Ù¸†Æ„âââ~õÑûm=215%–SÔiŠªRä~½É"HîWªx“Û°ÙEEEônþlï­577óù|âYUuäsÉ÷øA»´»ÔíSqDÞWà%Nâø¥ò +îb;ò©õðVÔ?­|ò¦NÁC‡@ÞÕ³ÁwãeßÛå¼R­„‹øà6äÊ+3d½qbyÜÊ–âÇe)fÆ,"„‘ã†X8k{…rœõTd:ˆ˜.Ëõ}¾4šé8…¬äk¤Öt̆0MvÐZz€G3ê¿iö3Ès1¯K̃#Ö˜æÔÍ›­ªLdé3Í+ĸ{~ô¾ Ãm…¾gˆÑŒZ@1g¨E¸­` üôè„ §–W¨‘ëgl‰ôÔŠŠò``ªÆóå +ÂËçÅÜBuÜúžÀšIz»¢yòh+8¾ˆ ¹±ÞÌ`ÔÐA†. +`z…püi¡ „,K b¸2‰¸/ÕÕœ¤BÒÖT¿”¸‡œÜÉî’¤½åH%éP•…ϯ՗œ2çLgiÓØÒÚ{?vêî«3hOÅÈH”ÊðÖ-ˆÜ{öásJäãÙ ÌÈÀŠJ¼}srðøqˆ9 'iìØhÅÃFx­ˆgOñô)ܳöí‡c±óo 4NMË—Ϫ* ³Å‡¸8ˆÅ“ …&¦ §‡Éß¿± +ïÕaò)ˆŠ$½ä5zÈÅ xá­ˆ›åX\Œ ñ¸m;>ee´® +QWõ˜pµàÍæúU ¶¶¶ÄefFŒÚœ8l,’×f¿]’ yu>Ék•d8Zš’á†Z# +×›bª£<ÎV*¦™,£#'M-B{Boiå¸4Ã.Æ3õßY8莥Fšë9mé†Nݤ¢©ÛÏÆß|bXNËí íýã5”GŒbã¡ëõö«=¨É+‹_ìj§ZdWå¡uuV!ÜÖQ ºÖ BÐV­vuw|LkëÌvfÿê¶ÝuºŠºZ¥>@VQ©ˆÂCžI€¼yABb’{ö|ÊvwmE 8<ùq¾ï>ι¿sî=çÏ èŠö›hÚ÷†ÅÏõü-^ÄËkzòøËF³d)CY!ç i`s¿¡d˜ûU±=CÙÀˉDÏÛš2lb0ø|>2ëîé•Ý ¶ØJÝg«’ZŒýj«³^«»xóΗ'Ï\º]¬4[ÛÎ5GOgŸÍÿ®¾³§ÝwêdÇÎåü-íø§é™Ÿgfýó_ßdå\º^^¥0÷c%‹*myÅ%g…×. KÊ‹šd=&¥Å®°>Ÿêîqòò3@«Õ.í11ºð&ŒM4ÌNÐØq[S¼¼<«*+F™qN·–‰ŒOóðÌÊÉÕ³ŒËô¨Û ƇƒgH“Þ,7Ùðä)n.}k%î¹?×_‚•ÔèJ¯Ñôæâ%s9þ÷$-xœ¶-’‘?âÆ,ä}¶n€Ióò•L–Äår¥Ré(3þó%fÏ,Ó©c“ÛOÊ ‹ØäPLÈ%BBˆ >eê´ü‚kÏÛŽ1$]&Sˆ f>! ©eXsJJ¸éÂdõÕ„,ÆZ&œWƒµí3ÉáÇٲ€pMÛ¸7`ãŸR8‚deÑ)X—q† ?œMâì»Ã/éàÂÈ$oW· “\'D%û&Z·ÃW°Íâóÿ +à“hT}‹Ãö®ßåïó{wB\^}i\Z¢?äÅb} +ÇVÓôp„3ƒçø*ì‡p¦…;ÓÂØ·«p†×â‹M$D°6ʬº ÚbG]ž£6—i5¹Îú«`·Š³9³½- íÔv=ÅÖSìóuäÔÍ v½z=ô™iK •HA&¥2Ö~T×C;;Á JA¯£T&¥Ú:àF!lxââ¨HDçî吝jflSN-rèÒ23wi©Ñ„o¡§”*ÚÜLårHè‘#°búvwLB©“ ¨HA*iU©(ŽêÔBw8ÔjÅPZ +÷ïƒÉÄXóýº|ƒð*}œÅ#*·ïÜuìöQr¨oA{‘³>Ï>ï_¦B0–uT_ òÅ@p›örhüœÄqïq1b¶û"6¼ÏÝòÁÂ7³ÉøqÛN7^Wbifº3çHs¤…;¾â=û= =},=N®‚øžt^°Ç¤q¿™–4?i_Pì.ë̦Mñ$ûĤpÞÝ°?ðõ?Ìçââûº{âþÀwÿ Hñl÷ŽÙƉÛé—¸?}~NÀTu a,œ‰D'wd ¸õóÁƒ4œñ·¿:͇+ëZ¿x›?ï×ÄmüŠ„ù[Æ¥úF?<Éñôöùá-ÀžäÌa>pÎc¬%ìŠÚê;Õcâ«“'¬Þä“ÀÜ~¦ÃC ãeÄ*À(†×܆÷ý÷ñÞ™ç9/‚õ]YYÙHÓ4Œ¢Ñh–,]Ššrž6÷J¹_Û3”Mü¸\‘Hô¼­y!Ã&ƒÏç#³îž^Ùù×-j‹} Ô}æB©¥×*Ó÷Ý×t•5««5 +óÍÙ 5Ü“)ÄJM³Á¢²Øqþr¹æû:iaU-âvm£¨YÙÐePX´Ùj«£É`©iÓŠ­Õ­8U¦KÒm’,2ƒço³C«•–·¨óKÅß•W•µ¨•}´òÞþJ…F,WKõ¦v;UZì÷5ÚJU[MG·X¡¹QY{­¼ª´IÙd´¨ûr“Õø9–Ì*¸–®MÐRP[lNÝ=sÆk¢Ò’QfÜfµ­GƧº{œ¼|Å ¸“H‡‰Ñmä÷a ¢É`îp‚ÆîˆÛš‚GUeÅ(3®ÓéÖò#‘ñižY9¹z–qŒP٠Ƈ ƒÇH“Þ,7ÙtÅ Ò¥o­Ä=÷çúK0Ó]é5šÞ\¼d.Çÿž¤¥ Åh‘ŒÊ)76!ï³u”Hš—¯d²$.—+Å ÿ—&1{öL%$:69¼ù¤Ì°ˆMÅ„\"$„¸ áS¦NË/¸ö¼íCÒe2…bær‘Z†5—¡¤ôˆ›.LV_MÈb¬eÂy5*Õ³)ðñLJٲ€pßðØ´7pó¾ëvø®KEø!bR}c¶RµÌä\lãws“-\“à=iò,×&q¶~¸0~7®ËPà1«³±`Äñ»ü¶|„“Ì D¯'õRFbäÇBžN¬†ãÇWC&Á׫"3‚þÈZÇWAN4Æåïô~…¸˜(‹ò&h‹uyŽÚ\¦ýiÔä:믂QÜ*ÎæÌöZ´,´SÛõt»OñÀ‘Ž8ÿ-…`Ð?iУ!bÐÓ’¨ª¤ýúãÝÿý¯±ƒ¢VÑ¢"ªRRxL§ÿBä9Hé©S4?Ÿvw?|ùøÅFDnß¹ë:Ùí£ä(Pß‚ö"g}ž}h$Ò!Ë:þÍ~µ5yeñ•ÇÑðˆbC5ë* H@H ˆRž">Ðݲ®ŽÎ>ìlkÿÙÙÖììî¬ÓÖÝ>ö§êv­Ð +Ö©êªP|Ô(“Â;oòüîžï VWg*w7—û{ι÷üιçÞ:¹&>€ÀòÍ(änÝ_¼[£!ºì¸Š?¼'å /´kÕBÛÑ\|¦ÿ+gfÿ¤À‰yAѯ°°p§àåh&˜êM›u¤<×à“H-]#–ˆGú‘„úDõ€ùo +¿ß›åçí:Wº3fÛï—T +@{Ä~%¿ ’_º'‚+{SDp(-YrþhœÑVï’çHeÔ‘j¯u_?ž·8%]¬3šžÄ“#8%4üïÿàº:(†Æ"ð‘`™oïÀß}Gt´c·ûA¦ÑóØ!ºÔÄ÷X©ÄNד_A¸‰nàp¥R±IPÛ"žeTôôôH$pÙšeQ-ß~Šu î–úñAVë–ŸÆý—̲ÚüôDXþ +‡qã)øl1>žG&Lºþ‘MÁ)‹Ê¢÷F†@6>–‡ÏµïŠ^ +@LoÑ^…p*“?œÀïgrr È/øULÉnÁÖ½Ks6ó˜,¦¤,0I-ñdû©¼‰F̈)É•Ñ¥oÄB°g¾¼.Äf/hll|všò¦Ñh“’Àòx„N ÔLÕ~©" ö»IqfP@Œ@ÐÐÐð¼w3Ó¦¬ ©T +ž +a«;k…KÞêôLf•„©}„x£H²‰'.åçúüÌâðÐp&Øï3›övNxïáµÚ¿g¨÷§¨¦öV¥ T§V ¢já@µ°¯J¨9Öù~jï_Ò fTç,˜Pyñkê ¸ï²ëN­KVCö§Û5î»_ccSWÓ1~{å«}ý“ñAй]„^‹±ÃAüøþFs»GϹÝÄÐaûiÌZ|Oà6§›L„ÓI¦z/¥÷¯º²>ßÇñõò +ò}µ›W• A·1âN¼1Ƥ`á ‡ÉòEK†œ?Z§D´Õ»d§Æ9Réi¬½Ö}ýxrÜâ”t±Îhš¨‰ûáÆZ-îï'Áùà÷‡£&È€ÙˆNLÅ…W?´ÿG„‡„X-ØåöLŒÒK#ï<‹¦Ñh“’Àòx„N ÔLÕ~©" ö»IqfP@Œ@ÐÐÐð¼w3Ó¦¬ ©T +ž +a«;kÅXmuzžº“{%ÉuäÂV½¥ÃlWYÐÃX¡j3 wZCŽ6ƒf”ÆaµÅ©vSäêN‹Ci¶µè‡à «Ð™ÛŒ¤„Ž!;<»`–·€=¥E d!g—PÛÜVG«q>ðvj ZtæV#ù¯Gr;i ˜aùU;ù=N‚H]Ô¾Z Ö~«mŽò×w-ZÚpíÊ4{Ün³ÇYAÁŸúÊ‚q—ͩКºé;ŠZ –^7Ö8]…;Øì›7®O³Çu:Ý:i.x<08ä“/jô”Ç[ÈPšñøÔD·'™@Rj7Ùu_nV$ Ep求X¹\>Í7M«¹üØ«r¥c¥Ñ*ŸÆ\÷¢\1ƒ_‘·¥ˆÈ*I (ŠiöøÓ·ü={X}€Ðª8<7^ex‘*›ú¡dDƒÏgÖÕŸyÞûxڀɔ¼!Ÿ‡ÐI„d¤×h)éÎÑȪþB ð–É̺­RM΀wßÝG= Ðœ9´–/cžÝßÇ?À7`žoÀ|Ÿ‰ùÀøéÉŸIjñcøÌ™ëàmFgx1YÞÐû1À J;Ë›R=bÉ<–/“åëYNgxÏ òa²æzyÍF$ziþÞ?ç0âBý¸Aô¨º ”¾”㿌à é%FÜ"rÏ ˆçc>›¾$ðg±¡~ º@´7w”Ú».à¾K®;µ.Y Ù?žn׸ï~M]MÇøa앯fôõ<ÉÙÿýji*Kã§{ÛÛÞööý… +TÜq­d¥õÁP ¢âú‡o³î®fÜ¿æ/³fÿÜMÌŠn²f2É8»Ñ¬N&Ž0£˜‰¢ëc„àèX%->yqh¡E"BïÝïœ>¬hµâròËéé=ßý¾ïœï÷ûÀã’ŸóÑçQ™¸H²TüÑוø!xáy­Ï’DÇ(yÎ…äw¢>ðɈ 7øç¬ò -üص½»vþâe•šÛ³­Zèhü"·F&D¾ ‚ØÒsã„£(¤‚ˆa¥˜fæð“UQœV¦1Ê¥Œ¦©¤ÐÊMWe˜lL3Ø5oðŠƒÁœ4Eéšùš¹é*»…Í2(rÌŠ’LÝ\«š–ˆ±•”3Èÿ,'ƒŒSëV †€Õ@xFk’SƒÜPkh¥ŠRªe858ZgÂY •D9 ,õq†ÚnUÎ4Ême!y!üÏ€17?ƒ›Oò"‡p>ßÊ:²4³ôr1h‹”²L°¥âhXµBEG A/ÂFPfš¹éè>Ø%þnã¨çä8[ê-=%ô]í¾vÜQ8³Ô¹20zHòÉ|ä“Ÿ?Oíÿâ,å£|«Œç“X™ ¼0–— ¥üÖ¾Èàx2$f’R0ö8a4>Ç'’†Ñv +›ßï///‡-žkk?{X4GÚÇOOCÄ{Jè½¾ÕPãZý"ÌÐ1 ÒÕpfyV¶0MU4x¥*"+ÊàŠ2Ô…3Ø\+œ· +›U±h¦6ר”bæ"FM«õ˜±Aj-Ms‚Äæ §ƒÃœRFùf¾Q8ýD"` §gÈ!OÁiŸ’oæyÓØ.¸TgÒ読VkKKË;‹Oê[WW×Â’ð|Bß ÔFj¿‰TPû]'’.²ð|»½¹¹ù}¯fª¥¬õ÷÷»Ýnˆ¬Ñl9vúÇ!Aè‰^ußè–o…}€à ”àqlÊŒñC¢dðT~î%’ÁPì­`’d€8Œ¾žb¥=¡66Ä„“fãŽÅßåoºÌ×6„Wnïêå…Ž'O7ìØ5}ZZóÕ+“ñá'Ãëjk!âz£éë“ß?„Î'#¾¾Pl“§jÜéܺFF×nÝn±˜¯ÿ|m’#ªÜ•¸4™¿ú¶>H"N²i*â©Aâ$¹||?4„Km¾’¥e°çö¯×;É„/ÌÊ-øÉ{/,÷†¼“uÐ}€¸?8ü« \ñÞ--ÃU’Ýn÷ù|“ñ·o5»wë:„Ð-Rž¯2¼@ŠÃV„¾CÈA®™:½átã™÷½Ž¨= +…«j²:GM4‘’pN„«ú#dY¾âæƒoæÀÞ½‰^ˆ(ZÄàjFËä©L.yG ¡g@¿T¡¤t&…R#‡» X,Vj¤œ––3 °.&}ü/ƒA“'´L*g¤Z­10-A„½VŽ^Áå˜&–UÀ¤¢£0Æ0ËR–šmdJf(£÷Ñ?o_?Üy^xxqôVè§÷¯ÆÍúÈí„ÖÎÖc¹–K\{¥ˆ|Ò€•àëk|íÉñßI‡oÙÎ_¼¬Rs{¶U M‚ÿBävÃÈÄ‚È·A[z~9ᘗ‡y )T”F/~Ò˜®˜„¬ +3MÂHA@%“ÌŸÎZY³JfÀ£¢ŒŠS ÿ5à) ™’J×ÊK2´s,*Z,ªá8\®&¸ œÈåRµF®5¥Å`ˆ¦Åœ^Ϊ)Z&¦e™L"WPƒ\£—I$’µ"3Gò‘z¶ž1°RÂyÚ3«cŽX8Ÿm`J3¹lƒH«¥9 òÒŽz"“ÂhMŒJ#cGPfš¹éè>Ø%þnã¨çä8[ê-=%ô]í¾vÜQ8³Ô¹20zßìÓ^ÁXžŸ(Ÿ_¥dÌlÊÒx¼æ÷ûËËË!d‹çÚÚÏÍ‘öÆñÁÓñžz/†o5Ô8a^ˆQ–Qñ›é* ®A™Dï8·ÍjÜÕ1ògꘒ M¾Q!á‚ï§RÅê— à¹LLÎs‰B ‡¹\©¡¢ œÇ y@hÿ®¾D2ü5[:$;vD¬Ö–––I‰UjZWW×Â’ð|Bß ÔFj¿‰TPû]'’.²ð|»½¹¹ù}¯fª¥¬õ÷÷»Ýnˆ¬Ñl9vúÇ!Aèz½ê¾ýÉûž_œ%bÈ÷2ñ”c'“Ÿ£/qþ L¤ؽ>âXÿP//tñõ…^ºiSx{ÜéܺFF×nÝn±˜¯ÿ|m’#ªÜ•qƒÉüÕ·õAñö ø6ñÔ qþÜ >¾Â¥6_ÉÒ2Øó{×ë䈇B‹Šfåü佄{CÞTœçSx)îÿ*W¼wKËp•d·Û}>ß$Güí[ÍîÝz„!t‹‡çÆ« /â°¡ïr \ëô†ÓgÞ÷:> ö(r¬ªÉFèB5ÑDJzÀ9®êo TŒeùŠ›¼™{÷î%×4{®nÕö¼5;ò*6ÎvoÊ©Üœ[¹9Ç Ø”:lµ¶Ê-6Ð\±1§z‹mýgKWe2J©‚¥\kf­Ûi¯±ÙXŒ¿ôu7‘©Úl[·³ bSN†Mþ+(ÉßÖØ‚ÿùtàð§ÝuÎžÎÞ.gë\¸zººë\ÿ(ëû²|ð¿U_Ô¦ÃôwkWuœ^½Õ0ê©Çý«q³>rûa µ³õXn†eÁ×ÃÞG©¥ÇT›x;ñ²JÍíÙV-t4 þ ‘Û # "ßAlé¹qÂQ”DRiiGEzíN{ÕÖ\ ™{S6ô«Ÿ·ö³‚Y¿†ÄhÓú×òÁãÕ¿üÕQlbEzImÖúU˜Æ˜ÒU[lUÀí«wä­ù£=gž§d¡~ÍòkvÄܨØIa[·+¿bCδYj Äèï«sBÿv¿,ïÚÎz†u¦ÎÕs Ì_çìÚ_øbåà‘ª;ŠÒe™UîÚ8»öOv÷&d\47·å®Ûe_Zý‘Ö$C™ÓÌMG÷Á.ñwG='ÇÙRlé)¡ïj÷µãŽÂ™¥Î•ÐûfLJÒü~yy9„lñ\[ûÙÃB 9ÒÞ8~"x"ÞSB殺§~•k!.zÓØ3Ÿ>ZùèÐòîýĮ̂eñãôðYZG~hÅà÷ÿ>/þبDU²:óÿìWkP“Ù>q%ŠÜ,·Dt× +rùÂEÔÊ2媒 7‚€²RëÎT¤é¯Îtÿ)Ø[”ݱu]GТh(Šk”M@˜³¸(!ÉBrú~_¬ë¥TLºÊ;Ï|3|œ/ç=çyÎ{ž7“,æþÔUòT1Ïý Ô{«ÞXÂ|œ¸X±Ÿ³+ÝÉÅ!Zä›^Ê£J½ÿãao|û$?‡ÿÜnâBnÚ.bÿÃ¥L:,|Ù2Ÿ®®Ù›ÆW•J™‡ t¡^ÊûÍÆE€÷ë¡FÆQ€K2™ÌÞ«™9 F#€Y/óDËyÆÆ)k«k÷†ë]¹Ÿcz¥Zߧ1ŒZððäTNQÙ +Ÿå²k6fÜ8iÌHOÆ=¼¼5œ™ÀøÞ¤I9¦#s³÷.½“è×LÜ7c•i:-¿€ÉdôܸncÆÕjµP Œ{z3jO5ŽSŒ÷CnóŒÏ àt[ fÿøĠΨÆør¯2":†ôHO¡Pؘq½V·!,ÜÍ»ªÐc< 5(æëù[Ãà#ãCŒ;w£bH—D„R©´1ão’òr„Ž t›2‡m39ÃK”9ìFè4B‘ˆ w÷ðli=gïu¼Gñ@§‹KüªGHN²F›¥´ÑHW¡0„˜ ›n ½^UUUT[€ˆpïûƒs? I+妕@¯àl)æ¤Á“;Ç ~<«<°ðëÄ…lg7º“+]RÄ)<š¹›GÎ^Â%§.&§N¥ðäCx’¹•p2wÒ¡[? d¯õ†ü].¬•â ¸e þR€ëqããÚÄg‘D¾À€/’pc*¾²µãÓ@7„ÄBÑÄ÷íxôòôí¦iy#ù|9n5šïœÅÚî{Ý'Ø+™ë?ŽûqôÁÜÊc>f;®¸¸ºUJSðp;¹d¾Ódš ‰ß6X¾kÆÚ®û7ë7†p@HK½mÊZ-­\ Ò™¥—qÓK¹Û÷þq}¨Ø9,(ûµÏÄ×bÜ–…ÿNÉìX"%³”öDfuIød +îÈÖ|Îf:ÑÜó 8…•¡Y{ê q(ª&'Ú"­ ]½Ê1±Þ[z`Íöߧ—p*á¿Y{‚ ++×dè•-¢-¨ÝšÏÄM©ÔD‰óy>>>j<¥ùÓbÜ‘Ùó§(ž³ã¢åŽ¢=¼Â߇f”B29yúˆìŠ ÂªÐ”üæGN0‘¯£ýøg°K–»­Óò†¶TÞhémÆc×~¸þUdનØÍj­ÎÞêx_bdd„ÏçeƒY}ŽbµÌÜ×:óA7™Íx´C/o’ÄFÀçë?ríùóoð?³ð7¢Ÿt*ªÝü à (ê þZ„Û3U‡ã“V¹!Wzl>»èàڬݔ¢vYëö»G@ù%.Ü u¸kܽÝ%ï`TÂ]øø.ØÅI“{ç…;rË©*¨\Ëßú+æÊ%°p&sYWW—½i|…P©Tá$e!D¨—ò~³qàýz¨‘q”à„L&³÷jæcÎB£Ñ`Ö‹Á<ÑrÞ€ñ°aÊÚêÚ½áz—@îç˜^©Ö÷i £<<9•ST¶Âg¹ìZ§7N3ÒÓq/ïc g&0¾7iRŽéÈÜì½Kï$ú5÷ÍXešNË/`2=7®Û˜qµZ-$ãžÞŒÚSãã}ãÛ<ãs8ÝÖ‚Ù?>1¨3ª1¾Ü«ŒˆŽ=ç<…BacÆõZ݆°p?6ïªb@ñ€Ö ˜¯ço ƒŒ1îTÜŠ!]AJ¥ÒÆŒ¿yHÊË¡]<‚ÐmʶÍä /Qæ°¡ÓE"èD‘»‡gKë9{¯ã=Š:]¤XâP=Br’5Úl,= Fºú›…A/“°éÖÐÐë%PUUEµˆ³Î+s7‘¹‡—"e óY)©õÉžCÀ/?þñ<ÉNvξÁg7º“ =97`ÛoƒÄœ”ü€ëëìÖOžú È °³÷n)&ÖxAþK>¨ÞÆÁ§Ä–$OÕÄOVÇMÕ¦ªãŸAÍ&òeM¼©:ÞTg©KÂg%m¼ÅI„"Ã÷ñèåéÛMÓòFòùrÜj4ß9‹µÝ÷ºO°W2×÷ã胹•Ç|Ì>.v\qqu«”¦àávÎWnÄ ©æ£|Óa²–šH…?/r#©pRÿ–¿ññ7¢á¿Dó}—"‡¨­þÛ÷ƒ\AK"ª’“êzñFx|°SwB1çÁàîåèäJßœ¹j»¸#̼›ˆºƒàa¥Ô+‚âÒü¼W8™LfW—ÌÞ4¾B¨TªðŠ2„N"ÔKy¿Ù¸ð~=ÔÈ8Êp B&û9-|>^F ³^ 扖óŒ‡ SÖV×î ׌€$Ÿ†Ýóyyª}¤Zߧ1ŒZððäTNQÙ +Ÿå²k6fÜ8iÌHOÆ=¼¼5œ™ÀøÞ¤I9¦#s³÷.½“è×LÜ7c•i:-¿€ÉdôܸncÆÕjµP Œ{z3jO5ŽSŒ÷CnóŒÏ žÔŸþñ‰AQñå^eDt ì9à) +3®×ê6„…û±yWzŒ´ÅÿwyüYcð‘ñ!ÆŠ»Q1¤K"B©TÚ˜ñ7Iy¹BGºM™Ã¶™œá%Êv#t¡HDƒ…»{x¶´ž³÷:Þ£x ÓEŠ%þÕ#$'Y£ÍÆÒÚh¤«¿‰Pô2 ›n ½^UU©¶qÖz¥—ðÒvq“óXÂ<²_{‹Èc rY")+kO°#ÀÍ}±³]˜ +ó’sa[˜ÏþŸ³!Ch!¡¹Ë(%ÄEÈ¡Ž ?8”ÍÅÇ…–º¤ÉCñÿf¿Üƒšº³8þC‹ax%€Õò¸‰ÒV +Ò’@l„ð«XØåÕí_ëŒìLÿØ?ÝŽà£u¶ÚÙ¡EÖZ‚"GÑ•d ¨Lð1ÄJÈ£ yüöwoª«ã*±™AÎœ¹s½Þð;¿ß÷sÎ=Çr˜miæÌþæÜgŽZ›ñÿ²4q­‡ÙÎorà™Üý Àˆ…BóX7œìu u8”2üúz¿-sŸ‡†þ‰þVÚ&JÒNöäÔã…ÅcÅ<·+=×HëƒJEp¼j¯:‡;있x«Ýu§ÚÁÓé(‚BÖ°ób‹ëYâJBÁÆßGͯ¤—|±593xoÕ>&Ywœ Úš¹æ&Î, ñöcnG­M\„Ùìa¶ý(žNÍÞ±„øf–ÆÕ3ER„1U„PÇ3ŽÀ-TECKoÏÜ°ÚwíÃÐ’ÖžjLP–€§Ì¾QE‚¤˯¢Ç±BQ±ÿQHCÓ»­‡¹f´.Zî%æÑ?ÝÀŽ˜Ï†m¹7ÿ–Î +ð£d—ÓŠëXÂý4wâãÉU– ®¤Õ1y{ã"ÿ@B«ÄD‘»[¡SrÝër(Ûç9R¥Ì5Ò §ûœNgmÎÈÊьަã]1­VËãñdiÛ¨£—NBÜ9Ú5"(;œªN8ÕcTÊò²Rð¦7*°÷@2âdìçÐzΛ8(¬‡9Ž¯sà÷‚ÉC»ò¨a Ð7][ÚÀ¡Z½¯ä‚òTºqŒ_ªçœZ®”VX‹¡ª¹} ²‹¶Õ¡ŸÓ‹ú%"€G¨#þ9qä÷סS(‘ +…ÂÛ2¾i4š”ÔTy"mŒ½Ÿ']êý‰7ÙDÀÀ0¹\îíݬ؂™^¯çóùHÙp2¥õÂE „ã–9÷¨ëõk99~žÓ&µÎ4ª·L¹à¸unoU톨hyßõ%VÜfµI + ‘â¡á§ÚÏ™!œ°ÚÕÓF<6oŸÒ²ô»zó#'ÔØå +yð—%V\§Ó ù¤xXùÛ3²BñÑÛŠâ ã(»ÝóîŒùѦƒ°wDº+ï‘0¦J¥ZbÅMãÇÉ)±4æ Õ}„÷ ÕJ=_4ð«í „×U÷22ñ. Ã0µZ½ÄŠ¿½å54„p €!¢9¼<_gx•hûø €tbÌ »Ðõ³·÷ñÙc£1]œÀY”¸j>ž´ôÈ/ûà]ýM’Ñ,Ã;=6öûhllî¹ )¼ +øC¸¨³ØÓ‰ M|h,ªg¢É18ì=R°¿¨œZ\ÏIÝÃ#íµ?§¡S$¥Ij°ü*:#)ŸßUM¥ Ø"„ß}:ÛœeAãj3šdÙ³øõ·â#­ûžãø&ž4~´n „–ñËp²×1ÔáPÊðëëý¶Ì9|ú'ú[i›(I;Ù“SóÜ®ô\#­:(Áñn¨½êî°{"â­v×NhP<ºy6-‘Ž!(ÔŸSRÏW2f‚Õ¼?ÒJ¿Øš&‰õ Xý“!þY¥qEuÌÜ +ã§Tã ¡¼@<7°v°ß÷õ[MßVú9kO5¡ŽÞA/çVP%uÌüjzü6TéñŠýO  Oî¶6q,ÿ'€ÿ¹¥Ég¾-wøË„¬õ£¬Í–Ò‹ë˜Ï’‹ØrBn% EÈß·%:†„V‰‰"w·B§äº×åP¶Ïs¤J™k¤N÷=8ÎÚœ‘•£3½MÇ»bZ­–Çã!ÉÒ¶QG/„:¹s´kþDPv¸TpªÇ4Ô‘ÇNÅ›ÞhÒµ©°M4w‚G@ÎyŽçÜMãx6l<ù*« $¿ô¢ØÒ–Ç鵕œà ]á…5˜°,!":00Ø?§8á'’ÒýKTNW"þ·fm¡l D§P" +…·e|Óh4)©¸d‰´0Bô~žt¨÷$Þd» “ËåÞÞÍŠ-˜éõz>Ÿ” 'SZ/\´@8n±»G]¯\ËÉñóœ6©u¦Q½eÊÇ­s{«j7DEËû®/±â6«MRXˆ 8Õ~Î á„Õ®ž6â±yû”–¥ßÕ›9¡Æî((¯ Pȃ¿ ,±â:NÈ ÅÃ"Èßž‘͊ΠØV_GÙí.˜wgÌŒ6„½#êÔ]™x„1U*Õ+n2?NN‰¥1o¨î› ¼o°¨Vêù¢ùƒ_mO ¼®º—‘‰wI†©Õê%Vüí-¯¡‹Ç"šÃËóu†W‰æ°€ŸH'ÆÌа ]?{{ï=6ÓÅyñœ@‰«æãIKü²ÞÕß Í2ÜìÛcc¿/€ÆÆFb,ØŽð‚Æžjº¨|žQîí]TF\Ëi…µ t±–¼FXF•Ôb"iÂü6ERjÁŸùÕ Æ2Š?ÀwUs)þ›ï:µ{ö›f¹OçÙW9{î8žÝúrÉ×G,šÇºáT¯c¨Ã¡”á××ûm™sø<4ôOô·Ò6Q’v²'§/,+æ¹]é¹FZtP*‚ãÝP{Õ9Üa÷DÄ[í®;РxtólZ"º†³'¶¸ž•WIìO V÷Só*h¥ÙšQ²eu ßgX„G8O1c¿‚4¶ûƆÞÿ^h<ÁKŠ ô ñÏ*‰“Ô0s+¨‚²i/£¢E‹X©Ü~þ¾XRDÉç¬ü*ºHŠ/(‹G?)¬Áò«éÔÄ0wÚ~UL‡ÿÉ…ÿâÙæAû4ØöãÙˆyÕß?I +ô£pË©Åu¬g1  1Ð͆Øõh•˜(rwË!tJ®{]eû0…j[C|iu·ëÀ|>53l¶“¶õb%R‰àéõúFÜb2‰Ž ÇxõC‡LVýÚy¾l9üÖþÂúÁ„DJ%a0VñOtµš @9½´8lt§ [hqØ À-âZøfð†»Þ^Ç*Š ³9^ž¾€Ztj>žHz”>”ªï vrJÏÈÈÇPRRBÛ@Qã_reËéÅ2/Òe³Îèa k}Ðæô€^Ñ—üsý\qš›Q„ã‡Y¨þõ~¾¥98¼)vV·• þà[IÁ,ò³UÒ§—¢~>r‰Ô:Ò ÇÛæzµs: õùáìÑÌ÷݆¦ÎUØNvÔQÁëñ‰¥¥ÇZxÍ­÷A/ªdp´ [æû´O@|Zç|VM¯ºkãp‘6¿ +Ï>Ç“`’\DTL–‡¥`Êïø Ù¾ü¿!BɲdX)¶• ­W]ü?¦ 褞m¥BX)5_ + [ü“”YÅÏMÙ¹nªTó3 +q™ +C‰ËT‘Š3xF—s0ØÕ¶W”8¬Iƒ×Sín¨þ®Ž¥Àj™þŸ_ +ÞàÇþkr>'ûÿ]hz"Nf1Ž¶‡¡Yv‡±š*/£]r6ÌéêÜl©Nã쯇“^vUÇów%$¥’&³·Ù±ZÂh4ŠD"YÜ~ÎÀ½ +H¶Ï4¸oÖ©¯‡ã­–^­\K‰ÞmŒ¶ 1°Z:{-•&¹p‘ãtá›Ù„ðßÇÍ¥Éyß +ýâ¿ÏQïK£îÑ@Ýgù)nèŽ@Ææ€TåÞ¬bt`Ëz I®! 5£HÉÞÉ@ g³·vttxÆ?ccc1±dø€~Zûy¢"ö{BÐ' NíííÞ^ÍZ,YLOO‹Åb„l‹]uçw+„£V‡ËêzÝp}NIíç¤Å@Z¦­ãN8j›=Yxv{ضöGVq»Íž•™‰g†„þT÷Û „/l䙪ÍÛ»ôYæóé™WópÌ1§È/`³YOw­0â$IJÅ„xp(ëFfŠF|` +Õ¶†øÒ$ên×ù|jfØl'!lë7ÄK¤4ÁÓëõ+Œ¸Åd>Žñê‡,™¬úµó|Ùrø­ý „ôƒ ‰”J"Â`0¬0âŸéj5€rziqØèN¶Ðâ°€[Ä´ð-Ìà; w½½ŽUfs¼<}/µè(Ô|<‘ô(}(Uß @4ò2É)=##W@II m q8DQŒgq—Õ‹-ØÀ·ˆe"÷—Ïa²¾Ú€^³Î¢×H÷ÿ‡¹¼¤â47£Ç³Pýëý|KspxSì¬8n+üÁ·.’;ò³UÒîKÑ ?ßt‰lf¤Ž·ÍõjçtêóÃÙ£™ï» M/:«°ì¨£‚×ãKKµð<š[ï3‚6^TÉàh4¶Ì÷iž€ø´Îù¬š:^u×Æà""m +*vgŸçÉ 0in$E¶<,½S~ÇOÈŽðÝàÿ Á"Ë„°Rb+Z¯º&X„i <´• +á/bó¢Ca€éŸ¨ŒÈ*楩ø,ÉsqžšH~Š«üv_lÊÿu¾xT¨RÍÏ(ÄÓT˜L…¡a2U$Íy.ç`ˆ«m¯(¹°& ^Oµ»¡ú»v8ÊS`µÌðý—Q!üØÉùœìsü÷š -5–ULHr9Û÷¡Yv‡±š*/£]r6ÌéêÜl©Nã쯇“^vUÇów%$¥’&³·Ù±ZÂh4ŠD"YÜ~ÎÀ½ +H¶Ï4¸oÖ©¯‡ã­VžC‰ÞmŒ¶ 1èlœ½–J“\¸Èqêj¡£\>a.ædƒ@¿¸¬ðõ>ÄpIžûëÀ5Fq—ÿƒËÞÈت܋‘pY¯!WßQT?ËåD¢©ÑÂÙì­Þ†ñOÄØØXLl,ªü¿ÐOk?OTÒ~Oè‘ú$Á ¢½½ÝÛ«Y‹%‹ééi±XŒ a±«îün…pÔêpY]¯®Ï)©ýœ´HËÀ´uÜ Gm³' ÏnÛÖþèÁ +#n·Ù³23âÌПê~›ð…Ía˜4Sµy{—>Ë|>=ójŽ9æùl6ëÉã®Fœ$I©X‚eݨÑLшL¡ÚÖ_šDÝí:0ŸOÍ ›í$„mý†Øc‰”F"xz½~…·˜ÌG¢cÂ1ÞCýÂ!“U¿vž/[¿µ¿ð~0!‘RIA †FüÓ#]­fP@/-Ý)ÃZvp €xàƒ¾…|§á®·×±ŠbÂlŽ—§ï …š'’e£¥ê»ˆF^&9¥gdäã +())¡m ‡(ŠñŒ"®Ô+÷‰)sM‘‡e²|“õEÐæi>2hè5Òý?ä-FÅinFNf¡ú×ûù–æàð¦ØYqÜV&xç[ÿÇɾŸûBX%{z):ð/>r‰Ô:Ò ÇÛæzµs: õùáìÑÌ÷݆¦ÎUØNvÔQÁëñ‰¥¥ÇZxÍ­÷A/ªdp´ [æû´O@|Zç|VM¯ºkãp‘6»³Ïóä˜$±‘ “ŸÂ”ßò²#|ýOòXdY2¬”ØÊ„Ö«.‚ aÚ—¶Rüå„ùGÑ¡°@ÀôỎÈǯ¹"QÊTªP’ËÙ¾'Ͳ;ŒÕTyí’s°aNWçfKug=œ|ô²«:ž¿+!)•4™½ÍŽÕF£Q$!ÈâösîU@²}~ Á}#è´N}=oµè´ò¤JôncÜ¿ «¤³×Ri’ 9N]- t”'ßO˜Ê„¹Ù€áÿõžõ¾4â¶ûëÀ5FqÿûUÓT–†O†%P”Ò+Í ý¸EÙ8²QÛkKi¡0@4|Ô€ˆaý·ÙH6ÙMößü˜, ÎLF‰3âG¢€1m)` Bt@Ò[[úqöÜ‹“7ŽT…6Á¾ysÓÜž›óžó<ï9Ï#>ʶ…PóŠã +s ×ú&Zn=4WvI<¶ŠŽa›•J¥·a|‡Ðjµ)©©¨òD®0Bj?wTÒ~ýäH.y’°q\¡Px{5¾XµÐëõ!K£cMí·-NYìËV×ë†k=%±Ÿ &Î4ª·Ì¹à”uépeÍÖè-Š½FÜfµ Ä#hQZn˜!œ¶Ú5 F¢6oïÒºÌ1½yÖ µv‡´\†aôþG=Œ¸N§Ëâ‘Qôs×ä‹$⣋¨6â«“¨»—̱Eó„Ѧƒ°gD“ºÿ¡‘pŽZ­ö0â&ƒqorJ “s_=n‚pÜ`QûÎó5ˉ¶çöªŸf TŽãÆÈxHjk#8À);WR†Ý¤8ìà:适ÙÞqËÛëøˆbÞhLKâh@E FqGң줪~€däeø™ƒ““ïW@]]i ¾‡&=ŽçU± Ç䆛[dÇEeñáô Ð°@4iA .*wósQ9Kz ϯds’¢PýAþ~ %løƒÀu>ÛÚˆì*ßÚÀ}““ý_"Kk;̓M9ÿ‘LÝà—+Ì1OvÁg=Ž¡V‡JN<ßžƒrçðMhè›îkbnÇ’öqŸÍͯ.=|á~ܹ{ºñT…NuÁ™nçp«Ý·¸ž´Aƒrv 9-‘…ˆ´)2—St‚#–±„¥$ÓÊ£øäÎ}E;6ûæÐu|ø“ÐÚHPˆäÒï1k­'~,5ðàE¡ñ›ìÏ£ƒAxÀþ’Õx®ì5> ËâQ ˆ2‹jR3·|â‡'E×î̯Âs+X"b3WÆ”V³òªXŒÄHT*:²¿*bÁ«¹ð»,QÉê7”Á³4r­¨ÂzÔ\ÇÙLx%Wó¯?%Ñ‚ýéà—3¾¨á¼*£Œ)${_TÁD +Kã·ÆRÑDŸEÓ»~üí’ëi‡Cղ–ªä®‘6¸ðà—‡—Ó>Í8˜¥3½ÍŽ%fff²³³di»£?Ÿ‡:…s´cåFPµºÔmp®Ç¤’‹¦ Ï¢Czÿš /‹–¾Íþ•äˆZÜ7œ¢$óígxð‡CÆ^ÙîÍ€VS\›[Áº}•H«Ùâ£,l[5,0«8Ž¸*˜k}¡¦C³ ¹²Jv ©ÑÂ1l³R©ô6ŒïZ­6%5UžÀFHí玊@Ú¯ŸÉ%Ç +…·Wã‹U ½^/²4:ÖÔ~Ûá”eiÙêzÝp­§$ösÁ¤Ñ™Fõ–9œ².®¬Ù½Eñ ×È۬¶Â‚„x-êBË 3„ÓV»fÁHÔæí]Z—9¦7Ï:¡Öî–Ë0ŒÞÿ衇×ét9!B<2Š~îš|‘D|tÕæC|uu÷ò9¶hž0ÚtöŒhR÷@{ÎÁ9jµÚÈ› ƽÉ)1LÎ}õ¸ ÂqƒEí;Ï×,'^ØžCØ«~šq€PI8Žk4#þá!©­à C¤8ì\Iv“â°€ë¤.„GD¶wÜòö:>¢˜7ÓÅ’8šP¨QÜ‘ô(;)„ª y~æàääûPWWGÚ€ï¡IãyUlÂ1¹íæ>, G&*‹§…†¢I jpQy¼›Ÿ‹ÊYÒcx^%ßCGõùû5”°áE¡ë¡— <3aW—ý,zr“Ëï¹–Fâ/ûY>¼’Óÿ÷$êŠD(4Ov¹ÇP«C%'žoÏA¹sø&4ôM÷51·cIû¸ÏææW—¾p?îܽG ÝxªB§ºàL·s¸Õîˆ[\OÚ A9;Ðœ–ÈBDÚÈË):ÁËXÂR’ie ‰ŒQ|2!£(vC°ÿ6Mw:^ʱ6ò,õ¼_ ö4ãþæ=o©‘/ ßd¾9„p°$¶°Ï­xϲxÔâ£Ì¢Ú„ÔÌmŸøáIQŵ;ó«ÐH–ˆÀÌ•1¥Õ¬¼*ó4T*:²¿*bÁkb×w¶Öó, | 9õÉ_¥•(ý…ÏG}áø: ^ ÿsßîÈà,ˆ_Îø¢†#Z®¡”)${_TÁ,¨Æ…¥ñ[c©h¢Ï¢é]?~‰vÉõ´Ã¡jYaKUr×H\xðËÃËé ŸfÌÒŒÞfÇÇ333ÙÙÙ²´]ŒÑŸÏCÂ9Ú±r#¨Z]ê6tô™TrÉÁBôn¡öü-^-}›i©çZ&ó_¾Î+”$ßøÖz¾¤úóŽì¢ƒ€½E±ÅÙ)ª`ݾJ¤ÕlñQ¶-„˜UG\ ̵¾ƒPÓ¡YÐ\Y%;ÐÔhá¶Y©TzÆw­V›’šŠ*Oà +#¤ösGE í×OŽä’€ã +…ÂÛ«ñŪ…^¯Ykj¿mpʲ´lu½n¸ÖSû¹`ÒèL£zËœ NY—WÖlÞ¢xÐëaÄmV[aAB<‚u¡å†Âi«]³`$jóö.­ËÓ›gPkwHËeFïôÐÈëtº!E?wM¾H">ºˆjó!¾:‰º{ùÀ[4Om:{F4©û ç¨Õj#n2÷&§Ä09÷Õã&Ç µï<_³œxa{a¯úiÆB%á8®Ñh<Œø‡‡¤¶6€3 ‘â°s%eØMŠÃ>®N¸LÙÞqËÛëøˆbÞhLKâh@E FqGң줪~€däeø™ƒ““ïW@]]i ¾‡&=ŽçU± Ç䶛û°$™¨,>œˆ&-¨ÁEåñn~.*gIáy•l|Õ´R_†? á÷‡c5¿²®ü7%zϵ4ò_Öóœ_g«9ÿ9µ;Ø"æX&»à\c¨Õ¡’Ï·ç Ü9|ú¦ûš˜Û±¤}Ügsó«K_¸wîÞ£†n™Qëì„MÓÉ‚—r¬ßlµšëÅ&''‚,{_ŠñÎ9hÖxK‚®Í§oGWŸ]§–æg¢7–ÒýÇLxY<ÿÿߟsþÃ"ÛçîÓ\t÷Îü5_G›³Ž%*T©D~?%²:¦¤†AßI á+’ˆ§A‰­ô„†EA±øå{QhT8¾K«ÕÆ·0“É”Éf£ÌÓ¸ À©ýüQHû '9¤`â¸F£ t5¶lf±X„B!B6ŠF¿ØqÛá„c~aÕ øµ–œèçŒÝ`¶-ŽiœpÎ?Q«éíYeÄ]NW©\ŽŒŠ>ßzcÂgN·aÆFäè.­I¶ÌMy¡Éí‘UUÓé´Gý«Œ¸Ùl.ŠâÔhÚÙ«êYqã,Êmñåq4Ý æðìܘÍe†°{ÈÀ>œGh$œ¥×ëWq»Õ–u03c=ÔÚ!µ:ô÷ùŠùØ+×K{ô#¹y„JÂqÜ`0¬2âïnR•*€fIqxw)exŸ‡}\ ‡Ø2AD$µ£óV ëXGöÂfË‘H“¸€Ž@-ÈIün¡êpí2\Þ“ññ_–@CC¹ü@”ì$^\Ë$6&¿·¹wsb#W&Gж‡…‡  òz\\•ìççâ*†ì#¼ø?@CùoßÜø!ÓwE /ÝMó®/9Î&Ž³‘û†¸šw7q}gBµ¤ûéÛŠã÷àt·g°Í£S¿?ïOÔÞ§7¡µïYßEìzÆ!ÎÓ/–—æ¿Ý{ð%ì½O•b8Ñ'ï{Ÿ¶¹ýñûVßíЪz|-;ˆô>5¤ $¡ìc–¤š!ª ™V™"­NQ|’zH‘¼cs+Êüw>üVâjæ¹ æ› +œÈ ^£ÙÇ\Mï¿”“º;7Ÿo¶ÚÍŽõb“““A–½/Åxç4k¼ÆÎ¥A×æÓ·ÃéöÁ6 '}žKéi`ÃëÏYÁyþKòż"oQ‚á_óá•¢©¿äIS¨€²)«4¡\•†.òû)‘Õ1%5 züNJx_‘D< Jl¥ß DxÅâ—ïE¡Qátú.­VhßÂL&S&›2Oà2C¤öóGE í7@žä€‰ã&ÐÕlز™Åb +…Ù(ýbÇm„Žù…U7à ×Zr¢Ÿ3vƒÙn´8¦}pÂ9üD}\L¬¦·g•w9]¥r9B<2*ú|ë9Ÿ9݆‘[ »´&}Ø27å…&·GVUM§Óõ¯2âf³¹P(BˆS£ig¯ªgIij(· Ä—ÇÑt/\˜Ã³sc6—Âî!ûpê9 géõúUFÜnµeÌLÀXõ£vG­ýÆ}¾b>öÊõÂýHn¡’p7 «Œø»›T¥Š €ARÞ]JÞ'Åa×ÈA¨ðˆHjGç­@×±Žì…Í–#‘&p Z?’ùÝ BÕ?à Úe¸¼'ãã¿,††r-ø(ÙI¼¸–IlL~osïæÄF&®LŽ m AAåõ¸¸*ÙÏÏÅU ÙGxÉ &žòß±)¸ù·,¨–Â+bßž·™ç9Íu·pÝ_.rZc› ¼-\o 9üg!¼Uòà÷i¡H Åsã]pºÛ3ØæÑ©‰ßŸ÷'jïÓ›ÐÚ÷¬ï"ö=ãçÇéËK óßî=øŽöÞ§J1œè‚“÷½OÛÜþ€ø}«ï‡vhÕN=¾–Î@DzŸRP’Pö1KRÍUL«L‘V§(>IÍ-KÜ´c³rÍòÍQx£Äû•€d׃¼ù ¦ýD3>D~þ씿láfP·Gný"Q~’Y¤\ÄgQe2I V¦Jeóâ·l FÄV¨ÒJjñ"%CLÀŠª1Y£¸–‘¼ŸŠRÝ@£‡7‹á¿D°…ë;Í÷¡ˆÍ\Ïk™É„oFgx¾ …°]Öß…S¶íøU¨ :E^‡¿>\J ýQT‘—HAöÄк.œB]òtzt­K´T§ö µÃ™Þçý—rRwçæóÍV[ Ù±^lrrR  Ȳ÷¥f×عô èÚ|úv8ýÀ®k“r2Ñçûâ´>ÛK¼ÿ8ê!hLÜýÉ Fµð|§MD[ñóÏò ÷FÊæìÒÄ—&V"ÒúûÈꘒ=~'%<„¯H"ž%¶Òo:Åâ—ïE¡Qátú.­VhßÂL&S&›2Oà2C¤öóGE í7@žä€‰ã&ÐÕlز™Åb +…Ù(ýbÇm„Žù…U7à ×Zr¢Ÿ3vƒÙn´8¦}pÂ9üD}\L¬¦·g•w9]¥r9B<2*ú|ë9Ÿ9݆‘[ »´&}Ø27å…&·GVUM§Óõ¯2âf³¹P(BˆS£ig¯ªgIij(· Ä—ÇÑt/\˜Ã³sc6—Âî!ûpê9 géõúUFÜnµeÌLÀXõ£vG­ýÆ}¾b>öÊõÂýHn¡’p7 «Œø»›T¥Š €ARÞ]JÞ'Åa×ÈA¨ðˆHjGç­@×±Žì…Í–#‘þ‡ýji2Kç 4*ôÆ¥Åí×~ ¸Ê¥‚mVÁR UpM(…@\ÖŸ“ÈÝdÿlÄÑÉ$c6ÞØlÜUc¨"®+¨ŒŽ‘ +¶%ÃÅB±¥AÊÙóu0;ÃL¤*ÒDyóä˗朞÷¼ÏsÎ÷¼QÔ %X#¹céZH„«ï õ2™YÝýýï–@MM«-xBâž_Î':&·»¹÷Ñ‘ÉTs%…NF‹*«pY ÇÍé²LQÁ/(çñãƒQþ«VNÇÀf¼œÏ¥NIáI <)ý$Ðï§wÂ3;á¥<غ÷Zw +¹|üÇ8Ò6óH3£m$žoFw£³ç +´uvžÇֳⷋGL£‹+åp?nÞ¾ãO¡VËà@+4Þröh¦Ý!ñaÃìã&hëîªOŽã!!ÑÉìƒÑòR^N1'Ç%Hywß¡M©…¤ÕÞˆ]óò_2ø%üG6¡¢Óx:ëW2CÈ‚§$ðŒ”ðïÝ°µÈôUF}åŠrz![Y‰ËÔ„ŒsTs‚'^Th!¬°:Fæãë…ÇUoÊ/ÇsÕœ£âÊÔE/¿œÇÙŒnzàãEúû~>¼¦„õrxz¡ç3.ÙÏÏÄ%{"U—æëóàõ=Ÿ'E­ö¥nðÛUŠ)+øó2‘©1e%?§˜AE m a¶ž«EUš}Ò<£mX ¤ÚÆÙÞ&h¾÷ìþ…”˜ðT‘Äb³{ZŸJF©TŠ(KŽånœ…–v§¡yრÕ8uMÐÔæÐjòD4}Kµë¯;à÷‹¹¯E.ù ‘Ÿré ‰ê‚ ^Wöý-MJ4ŸÔBt‚bŠÜÿ(*ùò2+ÌÏŸN–EŸ†·™þnøIêh-ɾH´4Ú8‹µ¦££ÃÓ4¾E % Êâ¸@¯Ëû¹ã"÷{à)v>Ž···{z7˱haµZ³³³³ALÖù«×' ˜x¥7{¾ÛúÈ 7; f‡Þâ0X'L³p`òÕþϪBCֶ߻»ÄŒOMNíQ*ãAÁu —Ç!œœÖ›íDnž®ÒG‰¬ãÃN84=£()e±˜¾¿¿ÄŒ[,–ÝÙ9ˆñÀ`æ™Kc.Æ c(·eÆètq=6ÞgŸ²@øm¯^.D5Æ£u:Ý3î°Ù·%&±±èïtO>µMèÌË\(ô½˜zá]Ý“T!á’p×ëõKÌøûG^u5jOðÈe[r†·\æ°€oH$´qF@àÕækžÞÇ'£v{ŠåOööú‹,ÊzRòâ¤dähºéhºå˜Èö¥x>ŽgØŽ‹­ÇEω†kÓ¬_g½¬“~•²€ß+ &~l#m343ÚFâùft7:{®@[ç`çyl=+~»xÄ4º¸òX÷ãæí;þêaµ ´Bã-gfÚ6Ì>n‚¶Žá®úä8-œQÀ.<-/ååωM^Æ-:´)­(ÒÛoEn$£ïˆp²n§é ¡©V8FÈL„Dõ+±‰¬ÇÅ4æHšåKÑÔ?ww|.ÀüÉä •¢¢e%.SRÏQÍ žxQ¡…°ÂêAV˜¯\T½)¿ÏUc25ÀES¼ür'.’7 ü9›m?%µžÈ2I9*ümÍÏ)_üü ÑHmºõDæDôbq4Ë×;0’²»Œ8Gó2‘©1e%m?4‚Šj²1„Ùz®UiöIóŒ¶a’jg{› ùÞ³ûRbÂSE‹Íîiu|*a4¥R)¢,9–k¸qZچ慂VãÔ5AS›C«‘‹h:Æ\ÝøÇ-/ë²­_g"]™ ÑI\ž?S”á¸Ø|L4Z+´|•ñòì®–ê­±´U>A¾Â}{«ݺÿ9PTòåe o3ýÝð“ÔÑZ’}‘hi´qkMGG‡§i|‹J”Åp€^—÷sÇE ï÷À5Rì2|ooo÷ôn–cÑÂjµfgg#fƒ˜¬óW¯O@80ñJoö|·õ‘Aov̽Åa°N˜fáÀä«ýŸU…†¬m¿ww‰ŸšœÚ£T"Æ‚‚ë.C889­7Û‰Ü<]¥?XLJphzFQRÊb1|‰·X,»³sãÁÌ3—Ç\ŒÆPnËŒ/Ðé&8âzl¼Ï>eðÛ^½ ]ˆjGëtº%fÜa³oKLbcÑßéž: |j›Ð™—¹þPè{1õ»º'©BÂ%á8®×ë—˜ñ÷¼êêNðÈe[r†·\æ°€oH$´qF@àÕækžÞÇ'£v{Š9Ž‡t@ $g° FËKy9Åsb“—q÷ŠÙYÌñZå @|(©+6ÔoËjr$#Ëqç+MÈ Hç0lzì:Úï6P21Æf¦¿7²pá”û9ÊJ\¦&þ9G5'xâE… +«cYa>¾^HØEÕ›òËñ\5†稸25 >¿œÇ‰C7=º±Ik©äQ´Ä ”˜P +Òü¶Hê=ý—™ˆ±7%œN‹Y矴‘šÁeDP чÇ¢+(çý?×S¦Æ”•|´ýÐ*¶1„Ùz®UiöIóŒ¶a’jg{› ùÞ³ûRbÂSE‹Íîiu|*a4¥R)¢,9–k¸qZچ慂VãÔ5AS›C«É ˆï‰ì—Iߺž²y5‰MKå0„Ø|‘ïˆb$°©±a”ÿ±_­AMfgøDá @H¸ ¹&ù‚b[‘›š$Ô­\A±Ô?þûg»èììv¶3µ:êî¸Öq €uÄ ’ +À|áÒrYn&ä")Âéù>ÙÙ–éHTHfwžù&“9ç;ï9Ïó~çyæd†1=ˆ&ågž‡~ƒ¾í¹2[?æ’Ó<ñI.;ԓΠeEWƒŒ³ÞwÐk©£µ²F¢¥Qòlv R©t4occc‰IeqÜ ô~¶¸äý:É‘™¤àa˜B¡pôn6cÍB¯× Ä,“Å®i¼g†pÄÆW«ÕvfÜd0îNH çðŸ¨MÌjí&×ë…¡W–—¶©RÒ —„aŽãvfüý#¯²µ‹—è!Íaójΰ•4‡Ü ™h3¯ŸcÓ]GïãŠi£1Yœ@-*‚5Š-–¡™B¸ú.P/s «{xøݨªª"Û€íbJÎ`ùe<¢c*^ßvìG™¨8Ú—åæÅ ¡E¥˜¨ÄÖ^RT‘”ó +Ê9X<“B!Ô@wÙäÆpõqsFðuwös§úz8ÿ7üH0Ü©>nTošóV†[\ ›‡šMù­¬Ð2zN>\ì©_Tɉç›Ñ-·öÞ†ŽÑŽÎVvüÞÌɩ鵕ÇfØ÷<¦{yŸ—‰àH oµöÖ/ØBâóº¥ РœèªÝÇE:ðñ§í//<Ë—r…'–Å&>St.öà‰h/¦ ×ß#šéÁp%dÆð@£þ?¥¡? ¥yÓ¨lºËÎ z¤·+Ѧm£ü(ZŠ”/#¤.,^<ñ£-Ä)¬ŒMÊ +¥ºlÁâŠ*·ç—a¹2ŽH†Ä )’rn~7j§Yµ&Ý%.Øs««·+•½»’½¯u¥æ݉r`uá„4âìæŒæoÛá‡ÞVPÆý)ò)’q¤§yhû!ÞÄ° VË·Ÿ£SZhZTÕ­r¤*ùR_Ô¶ÿðô»äØ°”ŒlÁèhu|(1>>ž““ƒ(Û³#FóýU¨SX5M«‚ªÞªn€SM=õy™I¤´¶„2{jgÆu:Ýa1îÀºrS>C2®™A¹m2¾6@ÕM8âzfvÈhÑAø¨OJKGgÎÇøjµÚÎŒ› ÆÝ ‰áþõ  ÂAƒY­Ýäz½0ôÊòÂ6õ@J:á’0 ÃqÜÎŒ¿äUV¢vñ=¤9l^Ͷ’æ°€[$ +Ú¸¯ŸcÓ]GïãŠi£1Yœ@-*‚5Š-–¡™B¸ú.P/s «{xøݨªª"Û€íbJÎ`ùe<¢c*^ßvìG™¨8Ú—åæÅ ¡E¥˜¨$ÚÆé¢ê% ʸX< åOs¦|’9ñ—ìñ?ÐT§j>Ké¿Š0paß +ô_ا¹ŠÆ¼øtïðWûµW²ÿ˜Dà˜4ïßÃÍpòábOý¢JN<ߌn¹µ÷4tŒvÔp¶²ã÷fNNM¯­<6Ãö¸ÿà1ÝËû¼LGZàx«µ·~ÁŸ×-½h€åDWíž8.’?mAxáY¾¸”+<±,6ñɘ¢sÛÓŠ¢œ=©â(ßS'/gõWïÃÿ2P:p1­ÿbêJT#¥¥j.¦ª«S†¾H›ùZðèw Qž..L׌c„òeÄ›…ÅË‚'~£…8…•±IY¡T—-X|@Qåöü2,WÆAƒ…Å1"Y´¤œ›_ƉóG©:QÀ'ˆɿfþ)ÿ4¯FšßGäó¿²_.”du*þYÊðW™/ÿ–sý£X–‹³¤—ècŽ¤œ·"‘Œ#=ÍCÛ‰ðF m bµ|û9:¥¥¦EUÝ*Gª’/õ5@mûO¿KŽ KÉÈÖŒŽVLJããã999ˆ²=;b4ß_…:…UÓ´z!¨ê­ê8õФª§'¡é¼@yåNíåœ~™®þlŸ¦ éõçt%Ї ú"ãååœÆßü"ÖÇÝ…IË8ñ« +~n)Çöë}ÌÅ'¹ìPO:ƒ–]EÈ[L7¼–:Z+ûh$ZmœÍT*•Ž¦ñ-bll,1‰ ,€ô‘Þϼ_'92“4< S(ŽÞÍf¬Yèõz@€˜e²Ø5÷ÌŽ˜çq­ã»­ \kÒhM¸Î¤Ñ›§–àÈÜüñS!AÁŠö6;3n™³‘Jã~Ì€ku·g![ÀµF"7GŸÒ†D¿~v +Ç%%¥l6«óÙS;3®Óé „ˆqÿÖ•›ò’qÍ Êm“ñµªn¢À×3³CF‹ÂG}xRZ::s>ÆW«ÕvfÜd0îNH çðŸ¨MÌjí&×ë…¡W–—¶©RÒ —„aŽãvfüý#¯²Ò€Kôæ°y5gØJšÃn (hã¾~þMw½(¦Ædq^µ¨Ö(¶Xz„f +áê»H@½Ì¬îááwK ªªŠl ¶‹)9ƒå—ñˆŽ©x}Û1Ñòû9RÔýGû±Ü¼4´¨´•DÛúÔK–s Êx¼](º³ÓÕ·ÃûGà?¤ðïBx]¿¯ÁkáµC?ýó€ÀurL½¶{üûÞˆE¢WÿjS{êUrâùftË­½w ¡c´£†³•¿7srjzm屶Çýé^Þçe"8ÒÇ[­½õ ¶ø¼néE4('ºj÷Äq‘|üiû  ÏòÅ¥\á‰e¹æ•Æ=·=¹0Âé?ìWmL“Y¾•Aüh¡YŒ‚Ò·(fåk˜J?°¥´@;”5 +‘A ;ÉþØl†ìŸý·q(*3»YdÇ°‹ŽQ@‰QtD¥D­2maЖ~H¥´ôîy_ÉFœÍPG¤ rrr¼=}Ϲ÷yÎ{Ÿ³&àðo£œ”øÚgø?r’E§N¯Þt)¹Çeø¼ßÞ?YŸ“ÂXKÛøiQ¬º’È+›ÇgYI´€¢œSTŸ,Š\½ŠHŒÐTï̯ ò´¹Øðà|~7.¥®F´–ìÂ×5¸­€L~šJÝð‡‡§©€F)¾X€oßÿË'üРè59Zx't=çõJäZŽª’€íGņA¢m‘ÌÎÆ#pJÞÇ}óGªoñ´as÷Ó¾3iñ[ӳěÝßìøPlllL"‘d©»Ø¦+§°E7kêX¸ô­^C|úúeV2ü=q˺{ýwip‹Ÿ¦H|nø Éù@9 tÄ Íø‰lÙ¶õ(4 U£©ŽÏRùp•È¨˜ÂJž¢œËŠ Ý$ÖìPÃÕ åør¼ëe¤e««ø’âí6Îbmêééñ7Œoa£££IÉ$d Eh€Ò~¾¨Ð~ýT¤€<‚ÐétþÞÍŠ-šY­V©T +Ȇ3YMí—8gŒfÿO[ËÌf‡Éì0Z&«s‹G¦gö¬ŠŠÜ¬ë¾µÄˆ»¦]j• +§‡G44_œÂøÉ´Ûh¶“µùû”–¥?²NÏâQ·§°´ŒÅbößé[bÄ-K®Tˆ3"˜õçZ&)ÄM“PÛ +â‹ãÐÝdƒÖ“SCv—ã®crF&œ9Ÿà †%FÜa³§ìMŠáðoÚœó +Öïˇ^¸žc|Ëð8=“TIAÆ%FüÝMY]MG¨¡”8¼º2¼N‰Ã^„. ”†h°ñtF{ÇwþÞÇdÏìö4…rBçÒ“¨Ñ|‘ôàWi¤ª¿‹Ð^˜e„¢ûÃÿ¬€ššj,@ÄžðÂCD~—|˜æÞi›{?GÓ_I¶!’ªªyiœ¯/YòsnAØÄú׬:¹Ÿ‡›óð¹û+¡ë¤p椈Zçû ¡ç„È}R4S'ž©z¿‘áö‚Î?ðƒRäʧ†;ñD—çA«GßB®?ï÷[f^¶Þ'½Mœ-¬Ä?N<[\z¬˜ïvíû›¡aë¾ÔÊñH'»>û°Õí ˆ÷š½?´a[ÏøÝó© \ ÒzFPvALÑa¾¢Œ+;0GWe[óÅÎtÍö€µ¥;™Ö†|AáùZsŸÃ:s‚$ÛëN>„µŽ$›·>·NÏþ =˜F_Q´]}ˆÈ+›ÇgYI´€¢œSTŸ,Š\½ŠHŒÐTï̯ ò´¹Øðà|~7.¥ tTÃíJÜ(ó¼ÊU't“ÙEoÐ’?Õ g¾âÓR|)¿·&…´æ×krJÙªJšñõJäZ<”àDņA¢m‘ÌÎÆ#pJÞÇ}óGªoñ´as÷Ó¾3iñ[ӳěÝßìøPlllL"‘d©»Ø¦+§°E7kêX¸ô­^Cž¸áxЪ$ÃßwE…êþœÔšýfŸû¸ÈÔ:!þ?$¯#ÝÒSûpsþÈ‘Œœ­ëQÈGiê˜âêø<ß®SXÉS”sYÑ!¡‚ĚР@Â÷z ÍÝ#Z¶ºŠ/)Þ©aã,Ö¦žžÃø6::š”LB–€ÐY„(íç‹Ší×OE +(À#Nçïݬآ™Õj•J¥€l8“ÕÔ~Ù‰ñˆsÆhöÿ´µÌÜhv˜Ì£Åa²:'¼xdzfÿÁª¨Èͺî[KŒ¸kÚ¥V©qzxDCóÅ)ŒŸL»f;Y›¿OiYú#ëÔø,u{ +KËX,fÿ¾%FÜb±äJe€8#‚Y®e’BÜ4 µ­ ¾8ÝM68`=95dwY0î0&gd™ó ¾Á`XbÄ6{ÊÞ¤ÿ¶aÐñ Íi0¯`ý¾|è…ë9Æ· Ó3I•D„Ñh\bÄßÝ”ÕÕt„êz@‰Ã« )Ãë”8ìEèBiˆßHg´w|çï}|@öÌnOS(w t!=‰ÍI~•Fªú»í…YF(º?<üË +¨©©¡ÆDì /5 DZÏÊ.ˆ):ÌW”qeæèª,ck¾ˆÿ¤(6`íG¿#–:nÊ>ží<–õŠN$£Žg¿îNÒ…N áQ礟•?¯î_KÛ˜Y«®"ò´óø,+‰ƒP”sŠªã“EÑ«W‰šêùÉ‘k!€WFr>¿‚ËÞÍ€Riˆö75ŸSàú}ÓÇSµTêWë<ο*&ÛY› aÞ¿‹ñ·ò»5)üõ¿ +Ú,Ѳ?«âËK¹¯U–k9ªJBv€»m‹dv6Sò>îðè›8R}‹w  ›»ŸöI‹ßšž%¶ØìþfLJbccc‰ KÝÅ6]9…-ºYSÇ oõÚðÄ ‡¾U™•DŠÞÍ!]JÂß*fþ!vsÈÏé|†ÿW@*ÏW"øöŽÉPÆÑQh`š:¶ø÷ñy¾]%2*¦°’§(ç²¢CB7‰5;Ôp5h9ïõš»G´lu_R¼RÃÆY¬M===þ†ñ-ltt4)9*O@è,B”öóEE€öë§"”à„N§ó÷nVlÑÌjµJ¥R@6œÉjj¿ìÄxÄ9c4ûÚZfn4;Lf‡Ñâ0Y^<2=³ÿ`UTäf]÷­%FÜ5íR«T€8=<¢¡ùâÆO¦ÝF³¬Íߧ´,ý‘uj|º=…¥e,³ÿNß#n±Xr¥2@œÁ¬?×2I!nš„ÚV_‡î&°žœ²»,w “32IDð Ã#î°ÙSö&Åpø· ƒŒmNƒyë÷åC/\ÿe¿ZcšÌÒð)rY" XJ ÌB/_«¸+·á’ÚÒNz¡ ·³B!ƒŠéì¿Ý$³Éfÿ™ e1ãÎ0;v]¤Œˆ™âŠ#,ŽHÛš± +¶Ðv(-½œ=ßguHG&›7_>àð÷œçyÏyž'ÞÐNääâ* Ã0N·Æˆ¯< +•J2MŒâ°g9eØGˆÃ!.…\&ÛÈQ—º/û{ë(f-–,Ya"íhpÔH¾Hz”=$\Õ†¼ ?dròÍ +¨¯¯'lÀR)ÅÇ°¢Z–Ä77·"/æý>£¹¿Ê$254"2MZR‡I«’|ýò’G˜kYìT*ª?t©¡CæþC´¨â. '«âãÙÀE?þ”vüéý“½çþTÏIÿ{bÿæR¡Db›ì¯»F;]5þ|}Ž¨Ýc¡yèÁP+c'-%›ûxfvué±¾ÇÕkýá[N(¤pªúÜcN_@¼Óá¹Û̓†Û3“™ˆH[£Bxã˳eÕLña/] «éòßq²å a‡0Š©‰[%öF¾­á9ˆ—çi÷R§™«‰ Û$s§¿¦†‘ÈA*v—à +/ñY\™„Z@VÃ(Wr2òã‚‚°”h¹rOQ-É*ÐzA5Îù¢Z&}åiÛþµŒ ÿ-ƒÍÚ¸ ø¤O§æ½ÈùEïÄŸ¸îOóáyé蟲“·…ÇüJ H*«c£fÄ ðVB—*%G1´ü [Ð,»b©½-'Ñ.y&º]šŽe¶T£öŒwAã͇·ÎfqÞËɘ̳c½„Á` +…²Ì½tý•fhpë»—oM§GÛgþcí”qÓqÑ»=¬ÿéð\óïDrÛsJ¿Dr›Škkä¡3Öyš[DONå•a˜Y_¡äøv•ˆ‰1ÅGY²&-.,<2D OD ‚HøV¯!ï=¢ —Ö±…»ÑÔhá4ZÌàà ¿aü1==ž‘*O  €qBûù¢"ö»MŒä' Ãü½šXµ˜ŸŸ‰DY +•Özé„S¶%ÑÿnëKѪ7Zu&«~Þ6ãSö¥CÕíˆÝ>póÆ#î°;JKJâdJô_/@øÀîÔ-xmþÞ¥w2¿Ÿ_xä†ÓNWqU5F½ýÝ­5FÜd2IDb„xT4õóóê9qýªmñÕIÔÝxƒ#¬çî[&¯ë2äâ ckµÚ5FÜj¶¼Ÿ–Ï`«½g…ðžÙ¦5n`ý¶òþŽ'ÞÐNääâ* Ã0N·Æˆ¯< +•J2MŒâ°g9eØGˆÃ!.HháÛÈQ—º/û{ë(f-–,Ya"íhpÔH¾Hz”=$\Õ†¼ ?dròÍ +¨¯¯'lÀR)ÅÇ°¢Z–Ä77·"/æý>£¹¿Ê$254"2MZR‡I«’|ýò’G˜kYX*Õ ’cð+‘§ùC»ŠÌìb#7­¸å¿^Kk'žŽÓùð¬ôÎ')á›H…bɽpæºk´Ó¥QãÏ×çˆÚ=vš‡ µ2vÒR²¹gfW—á{\½Ö±å„B +§z¡¡Ï=ÖéôÄ;ž»]Ð<øh¸=3™‰ˆ´5*„w0¾ü8[VÍöÒµ°š^ñ1'§¼u6‹ó^NžÀd¶ø›ë% ƒP(Deî¥ë¯4CÓ€[ß½|#h:=Ú.tôY5jY^:.z·‡õÿ! Î3ü,ÅÉÌ_|…Zö§üoà;ÿ–¿YTÜÃûb@XPfY¼\É)ðí*cŠ²d5LZ\Xxdˆ@žXŠ®ã­^CÞ{DA/­c +v£©ÑÂi´˜ÁÁAÃø bzz:=#Už @ã„öóEE íw›É% Ãü½šXµ˜ŸŸ‰DY +•Özé„S¶%ÑÿnëKѪ7Zu&«~Þ6ãSö¥CÕíˆÝ>póÆ#î°;JKJâdJô_/@øÀîÔ-xmþÞ¥w2¿Ÿ_xä†ÓNWqU5F½ýÝ­5FÜd2IDb„xT4õóóê9qýªmñÕIÔÝxƒ#¬çî[&¯ë2äâ ckµÚ5FÜj¶¼Ÿ–Ï`«½g…ðžÙ¦5n`ý¶òþŽ'ÞÐNääâ* Ã0N·Æˆ¯< +•J2MŒâ°g9eØGˆÃ!.…»L°u©û²¿×±ŽbÖbÉ’&ЀG䋤GÙCÂUý0iÈËðóG&'߬€úúzÂ,•R| +ªeI|ss+òbÞï3Jû«L"SC#"CФ%uliU’¯A^òŒ¥R …n +PU`ð+‘§YˆØ®]Å[Tñž>ÿ/‘ŸE‰^Mùð_Ò;Ÿ¤†o +‰%¶záÌu×h§K£ÆŸ¯Ïµ{ì"4=je줥dsÏÌ®.=6Â÷¸z­?Žð¬©õ& ½ìˆG튥ö¶œD»ä™èvi:–ÙRÚ3Þ7Þ:›Åy/'O`2[üÍŽõƒA("È2÷ÒõWš¡iÀ­ï^¾4m:ú¬µ,/½ÛÃûŸÏJ—Ξ‘üçyeC] â/¡ƒôK‘UÅ;¼/„f–ÅË•œ‚ª$_®11¦ø(KVäŅ…G†䉥èjP0Þê5ä½GôÒÿ±_µAMegøð%U ®@H@Wg…Üä†.Ý‚€ [! `ó‚ÄÚB€Be÷ßþP:³3í¿ÙȲ³ê¶uŠŒƒgAD“A˜Da +dA0!’&$äôÜ‹¬íj%*$3È;ïÜÉMîÍyÏyž÷œç©Â³îEC£‰ÓéJ¥ÒÛ0¾Bètº¤ädTyŒÚÏ´_?ù$‡,W(ÞžÍF¬ZF>Ÿ¥Òè m×­NX4zï»­u–½E«·h ­Ñ:ザ…cåU;#w(îôxq»Í^ ‘ ÄC©á盯ÌC8ishôf¢6o¯ÒºÌÆùéE¨s8óe¥t:­ÿnŸ‡7 B¾!N;{I>G"®Cµm ¾:‰º›hp„õÜü˜Ùn€°{D“|0ÐH8[­V{q‹É¼?1) +cßVZ 5YÕú ¬×*ÇžØCØ£~˜–N¨$Ç5‡óWW‡PÀ);VR†]¤8ìà2©„Ë!¡amí×¼=·(fÍæÔ\q4M¨Ô|Ü‘ô(;|U?@"ò2¼ÌÁññ×+àôéÓ¤-ø¾pÉqV^Sˆì˜nn™Œ)©ÂE2F(mKðö@ô º"/éöëùÇñÞHCõoö÷­=ÊBæÔu.ÛVǵN–CZWÞsÉ%âý»–k¯ç‹‚{Ÿ%QüýrBëx'œévµ8Urâúò”/_…¦ÞÉÞl7=áçÑÌìêÒc#Ü7oQ‚·*Á‰N8Õµ8ÜâpÄ{Í®û­Ð¤œhJ‰c""m äæEž`ç–2EOÉ&.eH?‰M+Üëð{œj¨ã |‚fµÜeFýšáÚê8ð|Ó7Yñ‘[AH@†toA%;§5öŒÒÅÄ­¸ŒYX›œ¹+ ÀO—VÇ.gŠd˜ue–SÂXâ|̯B—Úö ) ^Áï²ìOk@%q^T o¹žã«LØ(ùëGñÔ Mô-<ãH[(ÃÅ1(Ÿ6W Uˆ¦¿sO0åýHZç…ÏÑ*¹¶;UÍ+,©Jîi…ú;?ö]L}/-#Ë`2{›oKLMMegg#ÈR>`h8 ŠEmûÊ jq©[ÑÖgQÉÅÉ„è¤Üú4 ^9¿ÍZ"¹½–g«}žç\‚rˆTõ<ø=ßr†[üa ¤DIOÆ¢½]°Ò6þåÐé“[Ƥ½K¡lÌ’FKªXç×ìôùªWáÙG£é»ƒÐÄéô¥Rém_!t:]R2YŒÚÏ´_?ù$‡ÜIX8®P(¼=›Xµ0|>!K¥ÑÚ®[!œ°.hôÞw[ë,5z‹VoÑ,Z£uÆ'l ÇÊ«vFîPÜéñ0âv›½@"Aˆ‡RÃÏ7_™‡pÒæÐèÍDmÞ^¥u™ŒóÓ‹PçpæËJétZÿÝ>#n0„|B<,œvö’|ŽD\;‡jÛ@|uu7Ñàë¹ù1³Ýa÷ˆ&ù`:¡‘p¶Z­ö0â“ybRƾ­µ@8j²ªõX¯UŽ=±?†°Gý0-PI8Žk4#þæ!®®Fv±€!Rv¬¤ »HqØ ÀeRšxHhX[û5oÏã-ŠY³95W @*5w$=ÊBÕˆ¼ /sp|üõ +¨©©!mÀ÷Qó+YyL!²cÅkeÇþË—1D2¦¤ +Gæ1”¶%x{ P†·1îŒNÚ:Lr?\ÁÄÃQý›ý}Ïü‡çÃs‡lu<+áX9¤oå½ÈÌr–>Ø‘Ÿ½(¼÷YÅßW,ZÿÕ gºC-N•œ¸¾<å‹ÃW¡©w²·ÛMO8Ày43»ºôØ÷ãÆÍ[”àm§JDp¢Nu-·8Üñ^³ë~+4)§šR☈HïP9yQ…'ع¥La¶Ä·Ü2LúqlZá^ß ÿc8Õð%^4«]"Ø ™öŒf uô¼ùÛCñ;¶‚€též‚J¶¨,ÿ?‘Ũï0q³°:69sWÀ&_‹J.ÎH&Do$åÖ§Ihot|“E’œ»LéçINðÜQÏ…û­å ·øÃ@ñO)ˆ’žD¤bÜ;D%Œ‚J<§”I{w+: ²FgA æλ¯{Å<ºŠFŒØ„&N§Ó•J¥·a|…ÐétIÉdq40Bj?wTÒ~ýä“r'aá¸B¡ðöl6bÕÂh4òù|„,•Foh»n…pº Ñ{ßm­³Ôè-Z½Ec°hÖœ°-+¯Ú¹Cq§ÇÈÛmö‰!J ?ß|eÂI›C£7µy{•Öe>0ÎO/BÙ/+¥Óiýwû<Œ¸Á`òñ°pÚÙKò9qíªmñÕIÔÝDƒ#¬çæÇÌv„Ý#šäƒé„FÂÙjµÚÈ[Læý‰IQû¶zÔá¨ÉªÖo`½V9öÄþÂõôtB%á8®Ñh<Œø›‡¸ºÙÅz†Hqر’2ì"Åa/—H>hâ!¡amí×¼=·(fÍæÔ\q4M¨Ô|Ü‘ô(;|U?@"ò2¼ÌÁññ×+ ¦¦†´€™@•T²ò*˜‚b†°x Ù²/ÃD2ìÈI¶¨˜±º™òN úpä›øµh¥×‹1dëm”Tâ‡Ë™ø>ª³Ÿo­”/\ß²ÕrçI3k#’÷œ™åüäp_gÁFQߟãƒü|r…ÂùñNø¨Û9ÔâTɉëËsP¾8|šz'{°Ýô„œG3³«Kp?nܼE ÞvªD':áT×âp‹Ãï5»î·B“rz )%Ž‰ˆ´-,0#/ªð$;·Œ)(–2· “~òËÔ#{|¶øésõ<øO¡­Žg­åþŒQ?K+b`-Ïñ%6_gýš¾„lÊ8º· ŠŒº@XÌÊbÈŽ`ŠbÄÄ +«ÙIÜ]~Ìxªôãؼ +j ‚ö`ä”ü‡ýj j2;讀]äÛh×I—㥂 ­¢!!Aîèr[Qˈ¸?:mwùÓßN·] v»éÚQÇ à";Ž¸î"D b©ˆ(š»¤¹Ÿ¾ß§nÕn\Ì ï<“ çä¼ç<ÏûçåäWSE“ÀxR¶ŸpðÉlÜ$Í?Kæ!|ša½ÀýyhþÖS×2–?ˬàTóžÔÔ³4Ø°ßüjRR³"*V‰d1/=§äjw«›§8Ru‹w° ë»ïõOá¯JMÏ4˜-¾VÇ›ãããb±(KŽgë.Æ•G×>u!¨[½š6<ÑiU·(Ò“(ÓË +îü]>‘íü"Óö—ïåý²ÀlP T¸¡"¾”?”Ä1Q°JAtq _FËiª‹ @ û7dv›ù‹¥pd­~R ³ ÅdW²Aÿ™…Ñï¬ ‚ÑÓÓãk_!ÆÆÆ“(Ê:Ð íý¦ã"ÀûõÓ#ô›$–$U*•¯w³3&“I"‘³áLâعó6ŒGmN­Þ÷ÝÖ<ƒVoÕé­ZƒUg²Mxñ¨Ý¹½ªzk¹ª»kŽwØùyyÀxXxđ泓ßµ»´z •›¯Oi^â¶iò¾¹Ü¹å•Áì¿Ú7ÇŒ ©$ gD0›N¶iÆuFÈmñ™T7UàÀµqrÄâ0`Ü9¨MÚœFy$’§Ñhæ˜q«Ù²qCb‡wE3lÅxØlÓ踞-Œa‰ŸŸ\*¼Ó':Ý­nu õùã¸Ñâ¹ù6÷Þí=ÆYI¬ß$x0ñpfå±Óo¾½²ìã +½ˆÇ/yn¶º¦Câõfï­6lî¹ítr„˜–UXÃW쌙ÑbãäTq‹÷Ç'æD¢Åþ;øÆÏ3ñ ™½Qh«§4öÃJk:à_ "G½ÐýW>•mPŠ~±…¤Gíåþ³Ê^P5ü™»'–^·™åïïÇ]Ë(ÞÇÏÝM§AÈ-ÜKnÛÅ}Ÿozê•ýiŸ–ã#[ X–³7¾,x{c¤j¯PcÒ½Ïħä×ëRøo/ `.CRuG-!«  ¿Œ­ØÉ…‡[vD³Þ †…"YÌ‹GÀ)y‡ÚÝêæ)ŽTÝâlÃúî{}ÇSø«RÓ3 f‹¯Õñ¦Äøø¸X,Ê’ãÙº ‡±AåѵO]êV¯¦ O|gU·*Ò“`:Ÿ|ùI ×!ñ¿?y @E/‰œÒU%rxßz¾ãã²Ú¼Í@A)ï—Ôò³+^Tøÿ‡üCNÁ^^VY ƒõVв€ŒÂ肽0}¶¯!@LN§p_XE¼'¢§§Ç×4¾BŒ%&Q”% t¡AÚûMÇE€÷ë§G +hK’*•Ê×»Yˆ “É$‘H€Ùp&qìÜyÆ£6§VïûnkžA«·êôV­Áª3Ù&¼xÔîÜ^U½‚µ\ÕÝ5ÇŒ;ìŽü¼<`<,<âHóÙIŒïÚ]Z½…ÊÍק4/qÛ4y߃Ç\îÜòJ‚`ö_í›cÆ ƒT’Œ3"˜M'[Œ4ã:#ä¶Àø̪›*pàÚ89bq0îÔ&mNƒ3ç‘7Z<7¿ÂæÞ»½Ç8+‰õ›&ά<búñÍ·—ƒC–}\!ãñø%ÏÍV×tH¼Þì½Õ†Í=÷¯NNà‚BÂÓ·E×ÆåT‘”ê Ê9ÛvÅ–|”°^þ +ô/#Œ‡Äø”ÜuPdo ´DËLh*°§€‡N¥Äænzÿ–‰›s ÊÌĈ ^]RË?_2JÕì¼j²¨–¿æW¬Eþ‹¸k%µqy{HY­JóÜâZÐ<É …T!¿?ÆÂ/ãH\J«ñÍÿÊ §Räj‚àÝJ!>²7+ú>I&CKÄP†ûøt­=):j¡œ*îöÚø­;V¿³2Šd1/=§äjw«›§8Ru‹w° ë»ïõOá¯JMÏ4˜-¾VÇ›ãããb±(KŽgë.Æ•G×>u!¨[½š6<ñu U!H‚éq˃»>Ixš¶8(‘ƒ´2ž¹C Èt‚¼JnÚqïÀ¯³£CQPÀ¦‚èíûãä•OEõÜûŸó"ž>Qìäíãg•Æ0ˆ%K—dEƒÎå•Üg·ÀŒ\C/, ¿I×;wwlñþ8aAñîRØ8A===¾¦ñbll,1‰¢,¡ ÒÞo:.¼_?=R@€X’T©T¾ÞÍBÌX˜L&‰D̆3‰cçÎÛ0µ9µzßw[ó Z½U§·j VÉ6áÅ£vçöªê¬åªî®9fÜawäçåãaáGšÏNb|×îÒê-Tn¾>¥y‰Û¦Éû<ærç–W³ÿjß3n0¤’,`œÁl:Ùb¤×!·ÆgPÝT×ÆɋÀqç 6isœ9äi4š9fÜj¶lÜÅá]Ñ [16Û4ú®g #0îÒ ¥¦Q.‰$I­V;ÇŒ¿~(jjÂ:ˆÐm;¦r†—hs؋ЄRßدҠ¦²,|C)à¾䱴Haa–—„ÜÀ ¢D-aw’Ò*:ŽÝÓŠâþ1óÃù1?flFV­ž¢[!-bih `À¥ +¤QlcJîœ÷Òã:%¨4©RN}u+õòî½çÞï;çwtr>S{ÖÜçø„ì¡Á Ž‹÷E¨! Åc2%= ŽAUõ--‡^&,¼µ»ûý((( ÛÄ_îšþ…ßÖ/…²®4›ŸÅ(9¿AÁŽý P‹˜Æ8%Wš[°“wð²ÄÈϳ³œog)Ur”ùþ‰Ÿ“ÔîÙð«`Ñ#Ó\ð +ºHi6¦Ãû©à±E.1lfY”)ø|2®‘áÒ ¸8EàÂð×ñ ýð(üŽK"ð))nJmÚ+p@(>:úIwîokSiª©ñíh­6¶ŸÆÍ÷š+Ø^ÄÒàÐý§V36ykh¼hck—/Á=õ¸ï‚±]5:oToÖ`½ú~K¥XÈ…@pp± +Oõ‘ï÷OÝÅ™Ér8²mÜÍ»ʃ¢8/di‘·ÌcèD4¥´òÈß„tô ™™p4$¸"7¦ E†ºÛ2œ-Ô,å~Qòv:¶ˆËâÄgCDp¶‘[öúÉ÷‰V{@:&—23ö 7ïáKs8ÒnB7y_±ß?m߇™|a§óð¹$|*I¨`Ç‚ÈÃð7á/P#¨p€w 4*ãqCÊõCÁ¤µ•§uÌR±O”˜K9ŸÍ’ÒçÝ´›¯ÈÅd²ˆó`#owfý·‡ñÀÏã·kÇ4U\©¦z¼£?ºüËÕïÄ|ïUë"ts«ãS±¾¾>‰D”­ôcuýXŠujcWíÄ Qµ5¸¿Ñ QÅ­[Ó—zÙµþ97$c:Ȧˆ–PáËÕ$*:Í–Hð‰\—Üû·õ‘ ‘ݬÐLVV¾(‰R8ˆŠûŧäèdN‡@ÊN>D$yG—¹óí­¢ÓYòý¤”&©ù?s9ïú zsðŠ +í=y¾("m‘Û¹pp‚p»r効i|ëíí]ž ú¡ºö›LµßuúÍPºà’¤Z­6÷iflÊL¯×GEE³.L¢â̹!Œ{†ž™Z]³7\¨û|4Ø©ìÒõãžág›³·{º{¨/_šfÆG†G’q'ײªžb|ox´ó‘òÍÜ·ôQâ–þé}#îKÈTóúµ«Ó̸N§‹ŽÚŒ;»2KNV?¦ïz ¾Í0>5€è6%Ì[ŸÞ5Œè0nêè Y wÎ#yZ­vš0-_áÃæý¤½3ˆñ!íL>ÿÝp÷Éȯ_ÒÞ^µ–ª’H’ìììœfÆ?Üâóò ]<‚P]ÖMT^ ‹Ãf„N!$FЉ"G'ç3µgÍ}ŽOÈ â¸x_„*ÒP¬1&SÒêTUß‚ÐrèeÂÂ[»»ßÏ‚‚º-@¼å®[¿ðKÿ“0!— í’l)˶Žûñi¶i)zÌ!éõ¹)yüì‚€é‹çÙζq°ŒSp”DÉ;Lÿ’ÒÎÿð|z…Ê1Yzɬ)»x,?ðþl‹R9ŸOÁgeøX$.“à’H\´GàbÉ Ñ#t²¥¸|V%à¦Ôó;9vÉb£‡ºpÓX›jLSMoGkµ±ý4h¾×\Áö"–‡>è8µò˜±É[CãE[»|y î©Ç}ŒíªÑÉx£Êx³ëÕ÷[*ÅB.ÉÞÕ*,e‘<_”º›RLÈå$~ÎݼG ,F{¡ÙŒ]+<ŸˆÁu)øøF\²ÒŒÅ^‘Y1ý°t.‹¤p27¥é #ÂØ[8[…)Ù Ýä u6%u:¤Û8 ¹¼ô/ý2¿ò®t·` Þ2fÆWÂ-{²\pƒLÌ¥4¯È¥äñòÀUk ‹² Ð|VIq©—Ñ;šDþ2À7Ê õoy$®–â†ÔkWrl­­?›³ƒTì%m8&@Ø´‡§ÌE¥/výl.läíάÿö0øyüv혦j‚+ÕTwÔàG—¹ú˜ï½j]„nÀ`nu|*Ö××'‘H€²•~¬®K±Nmìª84*£¶÷74ªØuðIAËصý%ÿ'ÿ;––±Iáoˆ¼”–\y®ŒÅõ)= ]¿ÀÙ[­—³²ø'íäIs9 ^¤ñ—>%ÒçÉ<›ú $—º‹"ŒÉd98ϱu°Þ¸•%Ï÷OÞÉK iú¼6ýÝ¿A¯"¶æ&@hÿQ{…§ø^sààávåÊsÓøÖÛÛ»"0<"ô=Btí7™*j¿ëô›¡tÀ%IµZmîÓÌØ”™^¯ŠŠf]˜DÅ™sC÷ =3µºfo¸>&P÷ùh°S7Ø¥êÇ=ÃÏ6go÷t÷P_¾4ÍŒ $%&ãN.®eU?<ÅøÞðhç#囹oé£Ä-ýÓûFÜ;:–© æõkW§™qNµwve–œ¬~L3Þõ|›a|jÑmJ˜·?½kÑaÜÔѲîœGò´Zí43>8`Z¾Â‡ÍûI{gã;CÚ™|þ»áî“‘_1¾¤½½j-U%‘$ÙÙÙ9ÍŒ¸Åçå9!t¡6º8¬›¨2¼@‡ÍBHŒppG'ç3µgÍ}ŽOÈ â¸x_„*ÒP¬1&SÒêTUß‚tqDXxkw÷û9pèÐ!º-@NÄáJ·€Õî~AnþbøðñœZ,YCA´ÊÝOLÅîKC<|ýg[YXZÍòõw^â! "üÅ„hµ›h€žõªð<Ø\õ "`)Þ2¦ƒ‹5ø?ËEó™Å[x噂#iäÑÍdyÿ¸‚L!8&ã4àâ­ü¤qK3Ç2ȶ ¬³%qä^~Ð8Ö¦ÓTSãÛÑZml?šï5W°½ˆ¥Á¡úN­¤Òøæ“›r9çžÏ9ŸÏ÷œïÉ)&4l»€ ´×ÿºÄdÍ×+´2„(J$:¼#éò¬ß}iýÛÛÿyÌo%?m[àc½ú¥õÛß[€ów',ÿ:µãìn³J*³’mŸêƒõY¦;$ä`2$×'VµœI&›úG×.â`Ë|OÝœ³z‘%uÖÌwÝÅcͯž_·[3Š÷ðCñvÇz ŸÏWVV’í²mó<¼‚ýŽˆ§nñDpÖF\wñHcØYûùÞ"è®c$Ü“ +Îùæ„åïÄ3ü÷'mߟ²‘Þ5ùÕ“;¾=Áÿã·ü7dzÀð)ÍHa¥ˆ¥gCwéCr糨Éžä80å'C€ç¡Í6›†–‹e´øWV ü˶Ë(t+šò„ö±<Œ>3çì6Õá4n›·+erLÜhLnii‰·ŒË¯×[PX̳ºP—Pû-¥Š€Úï¥Ð²T(²xÞápÄ{6³ååå$—õ†ª{&1˜œ‰^uã~áZK ë9vûÞÀäÈ<˜š9~æ¬Ùhr47­²âÓSÓÇ*+I1¯KºZ}{ãÁ©Y÷Xˆp‹÷*­It&†"Ø;;wôäiƒAÿòÅóUVÜï÷*?HjÅ$ýå›5ã‚âžqඡxlÙÝ0»Ç'úBÓ~ŒŸt¹ ÷”Àš[x‹ËåZeÅÃÁPQ~Á–LË3WoãÞà¤kc?ÿhè{3ýã&WOq ©’xžw»Ý«¬øÊ£âÜ9 B—êŠÃúÅ*á8lEè„숂‰«5Ú{u÷ã=u£¡ýHÅV„n!ä$ªQK)éõ©êÛÊGÈ°o{ÿ‡¸pá‚p-@‰ˆSË”Z¡¢95ÍidœF®Ô +Ð ÐÆ*ðe…ZÆ©d*-ÈI(EQ"9'á´4¼0ºRK¿ƒ…ßz*à)°UÒ R…à p™•í4³;S8ÞÌZÍLN*››®ÈIçÞEnš" +[ +Ë™ÜE^ +«’ôç3¿™õ6àáƹŽÚ9g y¾í5‘Î;8Ø:ØZ•™fÈÛ]:<23glÄ2ãqãSVÁ?u<¾†HgíìDœý©:ò3ˆøãPÛ-{v$8AÎ$€*©BI\ʪ¤œ†øP¶I ‰Øj`>MUd™‹™ÉNGåü‡ÓÒ£6SXLŒÍÌäg(³ô‰›Ä"Øhå +)XUKjZ)|¾/ŒH, ÉÄ@D*³B.(Tr’•@RFGÌž'IK!=+Ù™¢ÈI!dv˜Ù¨çsÉè ôRXhÀ›ˆç Ò¸ <ÒFL%r2’ïJÈz9¡A“=5}¬²×è’®VßžÀxpjÖ="Üâ½Jk݉¡öÎÎ=yÚ`п|ñ|•÷ûý‡Ê‚âÚ$ýå›5ã‚âžqඡxlÙÝ0»Ç'úBÓ~ŒŸt¹ ÷”Àš[x‹ËåZeÅÃÁPQ~Á–LË3WoãÞà¤kc?ÿhè{3ýã&WOq ©’xžw»Ý«¬øÊ£âÜ9 B—êŠÃúÅ*á8lEè„숔Åjö^ÝýxÏcÅh(d?R±¡[9‰jÔRJz@=Eªú6„ò2ìÛßÞßÿa.\ø +ýŠOüÏq—G.“+$‘ Jøêìïæ| x¸q®£vÎYCžïG{M¤ó¶¶Ve¦òv—ŒÆÖ±ôxÜø”UpçOÆ°¯!ÒY;»gªŽü "þ8ÔvËž½}qïQ‹5X<–åÕÿ;EQ+f²ÔîFýãka•pO]dÑUuÖÌwÝÅcͯž_·[3Š÷ðCñvÇz ŸÏWVV’í²mó<¼‚ýŽˆ§nñDpÖF\wñHc¸£¶¢´he¦Šú*^§ÉJ‚p6™Ì--­ñ–qáõz + y6B7êj¿¥TPû½Z– +“Ïây‡ÃïÙlDÌ"”——ƒ²:½¡êÞƒIŒ&g¢Wݸ_¸ÖÈzŽ…Ýþ°'092¦fŽŸ9k6šÍM«¬øôÔô±ÊJP\£KºZ}{ãÁ©Y÷Xˆp‹÷*­It&†"Ø;;wôäiƒAÿòÅóUVÜï÷*?Šk“ô—oÖŒ Š{ÆÛ†â±dwtÃìŸè Mû1~Òå.ÜSkná-.—k•CEù[2-Ï\½aŒ{ƒ“®ýü£¡ïÍôkŒ›\=Å%¤JâyÞív¯²â+Šsç4]B¨C(ë« „â°¡² U±Z£½Ww?ÞóXG1 +ÙTlEèBN¢µ”’PO‘ª¾ ¡|„ ûö·÷÷¯¿þkôR$¥ÅJ­L©‘±*Z¡’*T2…š ƒß,ù3f`É¥œZ¦NÚ”¨Áè"ƒ*u4¼g•0"p1Ð’´§¹…ÝÐæ4r‰D,˜—JQÒ…é\^*gIfùd&˘È-Ì[ðð4‘Y€dfgW”CAÑŸÎ|1óª7ÎuÔÎ9kÈóýh¯‰tÞÁÁÖÁÖªÌ4CÞîÒá‘ÑØÚc#–Ÿ² +îü©Ãxàö5D:kg—&â\×p µÝ²go'6Q 'Q%ÑQÛ3‚ÿ•ÞH™h ¤%;S¹üt¼6żc³·f#>4$Ú̬}³Š7$JÅ¢(F%Uëäl4­„DcÕÄùd ÍéäRH&+urNC˜d¤`~µ^ÎOH!bz*YI“ÜÔ³_í1Meyø€ËC¤yµŽV¥z[A|ð!ðÑR@^­Êså5¼†Ì¬“ÙIdÿ˜dg“}¸›l| NÔ¸JQdbT\Q)‚°Ù¶¨ PŠ(¥Ûðh9{Î-dGÝPš ¿|¹inϹ÷wÏ÷ýÎï;T6©yò¥K¿×4O +žÂÁ©¢1”°åÔ(uµÇb{”Šƒ=ÅÓi©×b\õ“õ…2qr÷pFºPìáÒbøÒϺO̲Úi–T&™èª‡CÍým磹Œ˜¸ÞÖêøXB­Vóù|DÙæ–òÆ ¨‘Z” Ó‚¬Î"¯‡ƒw u)ñQX{‹ìY´% ÷?Jð2RTXKîÿ9Ò^èrjäJw–—‹ÒË";Ww$ªIIOµ,ò×y‡T5ùRoç%nŽ¸þìÅÝ5#ë\êTë¡Ì^²¾ÝZS¨´=|»¸:üüü¯çA¡1(µ¦Á Ø;2–]\îïë'm¾7ÇŒŽŒŠE"ĸ§·ÏÉÚ+FûFÆCzœ›­Wi^¢[k°@Õ¸9coNkØ6ÇŒk4š$a"bܡvü¢d˜d\9Œr[`|v€ªÛºavŸéG56u)"y±hÍ9G.—Ï1ã>*É(å$æáZÀ +Ì HÉge”q˜¶ÿh¬ê(¯ïð–?Æ›~Hêø6*œæjçæ°Y´J\ÊE2æg`açLEV@jQPêgÁÌ/´p=SŠ‚“ X¸q& ¹â2® +Π Tíí¾KaêŽ 4ÛŽÞòÿ’8j-„ØþjžêÖ¼©&¡¶(t¹³£}q\63£„-È°–þ‘˜¼—%*!bW.õvF/bøÒÏVC݃‰' fYí4K*“LtÕáæþ¶óÑ\FLÜNoku|,¡V«ù|>¢lsKyãÔH-ʆé AVg‘×ÃÁ;Y]j\$6½¾®×÷…¿ªIüÓÖÞÃ[Th/­ŽSW¿)-¤·¾jÞàŸ·O'þs_x˜·  þ*2ôƒ’.Þÿsð–.x«û9¾™˜ÇÊ(!xÉŒ%TW7GÞÎUé%Á ¹húAÎO›Ñ‡ö IX+÷š€äüàô"j»ÿRoGôáË–-kii±5ï*•*"S +ÀºHï7¼_;92ž4l‚J¥¶þš…˜µÐjµB¡1ëM£Ÿ»vÝa¯iÌzÔµùk>¯çA¡1(µ¦Á Ø;2–]\îïë'm¾7ÇŒŽŒŠE"ĸ§·ÏÉÚ+FûFÆCzœ›­Wi^¢[k°@Õ¸9coNkØ6ÇŒk4š$a"bܡvü¢d˜d\9Œr[`|v€ªÛºavŸéG56u)"y±Ø#¹\>ÇŒtú¨ðˆÕAœûò§ŸêLò…ýüóW£/!¼'‹]A +…bŽÿðH­¬ôà¤9¼93¼MšÃV.¢xxz]køÑÖßñÅ ½>:%• À%d˜5»™Xz„›vØÕw}ÛöG==ï—@UÕ!òX¸´¼¯×ýú›PqG\NˆÊQ)‘QÊÎ@×+ØïÒ©+ Q)[\Fd~ÁýìІ” Wª£«»czIPÑ¡õ{*¹“o/#¦foLGsÅel4²ðÀ†Ì߬ Zï…ò§8,:QÌ…·Äðz<›Ïái!<™ð&N%À¬AWrÀ•t(ͺÿÍ:wv&%{nÂÁ&sgY&ÁןÇ#‰åñU¨kík=´‚¾ñÓøçƒ/fW 1óh¼s—BuÛŸŸ {oAõmËãºñ™ø¯Zó¿‰-—¢Cƒ‘ܽvdV­ÏúKqWgw'÷«¢o7­OcGðy¸¿ñ;aãnøƒUf‰XTX]Bxê'@;€5†p)ÞÏ1œHØêK±÷tæX¿ûsŽUçåXÒâ +vÞo×VmØÀó··³ãl¢çïËû:tW9gWÎ¥T\–õeÈj.Ö¼“½ý©üµðönx5 žIœÔ|ÍÛ²bÔ@¥q% ÞÝÓñ»ÅÉÙoIJ%·hz>.«ròZÆÉÞR|hCr‹ö‰+zÑ*_ZãÙ#P÷`âIƒYV;Í’Ê$]õp¨¹¿í|4—·C£ÓÛZK¨Õj>Ÿ(ÛÂRÞ85R‹²aúBÕYäõhëÓwJRâ"ÐôMŸ¸uüž›ö@I*©dR<§oü ïr +¼³Gõ—m†psˆ+` C[´ˆ•è¿}äµ¾ šÜÌ9Y_¬-<–VÄöðqqusLÊc@½`-ù/Ù ðøéAÙG¦zY)z&çVAä~µ®¨j£ { }… úp:ÞÒÒbkß!T*UDd$Ê<€ t‘Þo&.y¿vrdÓj lêRDòbÑšsŽ\.ŸcÆ :}TxÄêÿ°_%>Me{øÁu€°×í9¸@o,n’]@»—UdGQGe¢ø2/3ÿ€o’GpL\Þ‹u|H3¸ÂÃ)`‹b2(H¡EJ¡-çýîíÄq‹0Š4Q~ùrsÓž{Îïœï;ç|?‚sKÛ1„q‡Á¤9Ï?=}†ñMíÃÈ(Ò%±ÙlN7ÍŒx(òò¼*A¨…2‡59Ã:Ê6"t ¡Dƒ‰{zyWU_qô<>£è3#䊄ÊÒ¬Ñ&cé54ÒÕ7!µŒ@ØÜÙù~ 9rÙë‚u>Éyœäo‚ä9LY!ËaP/² Ù‹÷÷ñòô©Ìe¥ÿ+NøÂmö7If@Ú!®b§}8{û7?'dY h™v0J<ÆȾó¬cé,²>½ µ”ÆŒ• +ÆJ„–â <_C©Ðþ—µDˆÿ#ÆÕq×ò¹PÊ%RSg-î½nm©°jÔäóÝhVÛZ/cCããÆsÄ2ú†M¼§½}S+™˜|\½vÃÕÍýp¶wÕâž:[k…e2$Þ+·Ý¯Ä††'MeÁ,’›×ì踩ùÜøÝ,JlLy6‘ø5;ýÛµk¤_"”L8³«–bFAK¥¤ÆÆÞ€¥DZK㧶àªx}± Ü÷ šÇœè´€Ôƒ«•;™ôØAP²LÞ´=Ÿ»6r¡F¬óÞž¿:i€ÐL¹‹™–”°‡íφ“9#Ú±m,\¡Ä?Š­% yÐvŒ¥ômš/Ž”F!¥Rм_V6ld¹Îž½pîØG¸ò/ïS ‘zhõÖ´U~KÀ@ËùÕž=Š ÿXmÕ”O°¤õx[%î¿ýûóAþ‘Ñ1zƒÑÑêø\¢§§'66( ç2Ú=…õõ¶öê‰7‚¦Â¦­„£oH£–óBásî×[ß…ãËqãÿƒŒ… 0Jç‚—a¡¿ÛN“;¢ëû(¡¿ru‰Ü¾*ýW¹“%˦´ýçyþÊ¥@ +;›T~ÜnÖöƒ«% /ßùpÄ$à Væ2©kˆ Ä9%wÐËW Ã~•$ìá¤å¯á'.÷Y—¢Óé Ž¦ñ/DwwwhXdŒÐ„Ú(ï7Þï.Õ’g7lv}}½£g3Sƒƒƒ"‘˜õñ£Ÿ«úÅ„q—iÌ^ê:¼àú”@®gÿN?Ô>hêÇ]æ±ÔܽK-®¿}sš5&&$ã^>¾§ËÆø±Ù¢ë7’¹9z•>I<~bÃÝk|Vîw÷·;Ó̸^¯—ˆÄÀ¸·¯ßÉ‹êŠñöÈm†ñ©ìnûù``ø‘qTñõ6]Øæ(Xs›£Õj§™ñ!ƒqcHè +‚sKÛ1„q‡Á¤9Ï?=}†ñMíÃÈ(Ò%±ÙlN7ÍŒx(òò \,A¨…2‡59Ã:Ê6"t ¡Dƒ‰{zyWU_qô<>£è3#䊄ÊÒ¬Ñ&cé54ÒÕ7!µŒ@ØÜÙù~  {]°Ö7~;nS’ Δd’L†$ëcA”(Ë"¶åq¶¦¸zÌbP”ÆHÚÏ‘dˆ2Þ=´8“J³‰{ÙŠLb­/ä?×Ù©p ŸŸÙj.ä› +£GT¼‘"ÁˆêUÀ/E|“Šo‚—Bží¸ÿ$½ñ-w¦H‡;kpïukK…U£&ŸïF³ÚÖz7ž#–Ñ7lâ=íí›ZyÌÄäãêµ®n¥¸«÷ÔÙZ+,“!ñ^¹í~%64¥B|^B.ä¨øfÞ_WšŠ’üõ/ž­˜/HŸ 6øÎG.QÉ+“÷²¥ÙÐ3)u +â ‚(—HÜ´>jé,g'b­wr^rKœ(É +¥3¤ÙDò¾ ¸\ÖŠ H•†hÿL`à‹2|r+ŒbRñÌ*©òy]ö&Jó#ä¾àÙN!™»á÷y.ô¹‚,FÒ^Ž˜œf ™F&™•l‘´³%%`Ñ2WhùbzíÙ£°JøaµmÂUÕ¨ÇÛ*qÿíßïœòŒŽÑŒŽVÇç===±±±@Y8—Ñþë)¬¯·µWO¼46m%î½6¤©PD‡’¦w‘ë„€NÆNÄÂ9i*"uNá i +–’ü£¤çèfÙ*Oäêž´2%#Í"µ$¶晄î”7ÏsRr Y‡¹8=Ðgá‚î.¤• ?iö§=õ ü×t+ßA$ïâ%¬ôY:&N§/lhhp4!º»»Càó`„. ÔFy¿É¸ð~w©–<»`³ëëë=›™˜²‰DÀ¬ý\Õ/&Œ»LcöR×áקr=û‡tú¡öASï8î2¥æî]²hqýí›ÓÌø¨y41!÷òñ=]þó0ÆÍ]¿‘ÌÍÑ«ôIâÁàðî¶Xã³rèt¿»¿Ý™fÆõz½D$ƽ}ýN^TPŒ·@n3ŒO `wÛÌÃŒ£zŒ¯·éÂ6G‘‰ÍÑjµÓÌøÁ¸1$tÁ¹¥í¸Ã`ÒÎœç ž>Ãø¦öadé’Øl¶N§›fÆ?<yy^• ÔB™Ãš‰œaeº„PT™yzyWU_qô<>£è3#䊄ÊÒ¬Ñ&cé54ÒÕ7!µŒ@ØÜÙù~ Peb¯÷Iøš·›%%‹5¨ÂÞVÄMiE&Ëf&ïçˆ2î^s\ÝgK2d1µä„5 Yc2¤Yd-©Ì%Xë} ÿ¹ÎNª>+ÆgD#Eüá"ž¹ˆ?BBð^üÈ·þ Äe ‡×-pr’‹%Ã5¸÷ºµ¥ÂªQ“Ïw£Ymk½Œ ÏËè6ñžööM­&0©H™_Õ+0©#*¾µ˜ÏKŽÇlð›OótᥬJÞÇ‘åTçdÿvUÃS¹‹€¡¿âýÍÙÙ‰¹Þ;å›ÕÊ]l±}Ëd0à“¤}Aq»X«‚=©]Kû>‘Àÿ•ãS[Ì*¾©H`~[B ø¶Bü“Lóݦ5ÿg¿ZcšÌÒð©Â¢#µ”puÅ^¾22›á&ÈD(—:½P˜¶\V3\TPfþM6òc6™Ÿfç‡:NbFÍì8‹®QŠÆ) +Ø–K¨(HéE:½Ÿ=ßWãΪB›@ß¼9ù '9—çyßó<Ñ7äU0JN$ ’÷Ôÿ`a¡b䎉 CËÄFÓÚ®œF·ämqª–¸R•Â=Ü纞õ^ÍHØ™™¯7šüÍŽµÓÓÓ<A–¾—¡½w ê•.mËÒ… jt«›à̳ª±0; ½1䎿¥Â‹ìò;󦑾…äbtþ˜‡zïì?²e¬@Ê(ŽCÔ-('Êçußþ¿ +þT2eÕ˜HΈŒÙºùù¥»ŠO`¢Š•}ƒ<)>ÂDÏPnÉnúŽMèàtzTww·¿a|‡Ðét©i8d‰\`˜Ð~Þ¨¤ýúˆ™\¢•°1L©Túû4X¶0 |>!K¥Ñë›ïZ œ´Ø=V×ï†k5%~ŸsfÞ¬5XfÜpÒj?TU³-:FÙÕécÄmV›L*EˆS¨‘—n-@8euhæLøÞü}K«2G Ï]PçpJÊ+étZßã^#®×ë…|B<"’vñºbž@\;ö@|yU·§aŽÌ/Œ›lz;†5i²p„qÔjµ7MûRR㘜Gê13„cF‹:ÐÏW,Ç_Ù^BØ©ÍÌÂU†aÆLjxÖÖR8À ![—R†í„8ìà&€„¾•ÑÜrÇßçXC1k2eˆ 㸀 +Gä¤GÙJÂUýR—É͘˜x¿ ÔÕÕ¶`ÉTi5öÅ1L„œ|Åía™Ò6ZnkäÆ°Í!ÈŸàà¿Ê½òƒ¢ +†ä8»è(›“LCûß´îLþ‡—Z‘]ÅÍ,÷­Nöw™ã@~öª¨ÿÛ”Ðõ$±@h™¸g:œƒN•Ï…kè64öLõÔ3wГös_ÌÌ./=á}Üð~ªB'Ûàt»k¨Ñá ˆý î§MÐØýüÉôD"RxDH¶$¶¸–#®dy +A gŠ+™¥_'ì/Ù½nSÐa6U>Ö ­ç<4ópl1¦9ÎåÀ_…¦ ¼¤¨P@ Î*ÛU\Ã.¨`âU€'ë5íå ñ_™Å'9©¹Ûƒƒ×³“¨e_}\t{Íy9³ ’)9Æ*ªb1>‰ð”í÷¥lx½þij-Eõ7ûÄ9M¤þî³O©¡ÁôyÌ’ Ä1÷xF”h!Y5}l‹ G«ÄFÓÚ®œF·ämqª–¸R•Â=Ü纞õ^ÍHØ™™¯7šüÍŽµÓÓÓ<A–¾—¡½w ê•.mËÒ… jt«›Pë3«…Ùi¸è!w|“Šz£ýBþâ$·œÃÿoÿ!þ|Ðx&çËO¢9(]Wz2A„èäÕ[°5séq ±ŽöG2yKH^ÉnY5&ªðê!ø°g-Í”ÕpòKã£þŠN§GuwwûÆwN—š†C–À5† íçŠ@Ú¯˜É%: ÔJ¥¿Oˆe ƒÁÀçó²T½¾ù®ÂI‹Ýcuýn¸VSâ÷9gÖèÍZƒeÆ '­öCU5Û¢c”]>FÜfµÉ¤R„8…y¹áÖ„SV‡f΄ïÍß·´*sÄ°ðÜu§¤¼’N§õ=îõ1âz½^È Ä#"i¯+æ ĵóhoÄ—'Qu{æÈü¸ɦ‡°cX“v ×HG­Vûq³Ñ´/%5ŽÉy¤3C8f´¨ý|Årü•í%„êÑÌ,\%a¦Ñh|Œø‡Gam-€ó â°u)eØNˆÃnHèà[)Í-wü}Ž5³&S†¸0€¨pÔHÞHz”­$\Õ? y™Ü¼‰‰÷Û@]]a –L•T³¿8Ê•3…ò•µc„#C#SZƒ–cP"? +Û²A$G C +å^ùA4SrŒUt”ÍN¦¡ýo\¿îlþÂw_âY‘]ÅÍ,÷­NöwɵŸÏƒÿõ›D „–‰ûp¦Ã9ØèT)ðqñP¸†nCcÏTO=s=i?÷ÅÌìòÒ#ÞÇýÉaá§*Dp² N·»†Þ€Øßà~ÚÝÏŸÜHOd!"mŽáJbKNbâJ–àK† |@ÎW2K¿NÈ,ݵ>4ø0F?— XÏyhæáØbL³£ùW¦ ?”ିì’!æW0=U ”³^³-t„UR›–·=8x=–YúÕÇEUøL”èׂJ¦ä8»¨ŠÅLŒð”í÷¥,x½þij-AõÿíÓñc.¼&Ô|÷Y54˜¾!·œQr"(É=oF´´š¾·Å…£Ub£imWN£[r¶8U K\©Ján‚s]Ïz¯f$ìÌÌÎ×MþfÇZ‰ééi‡ KßËÐÞ»õJ—¶eéBP5ºÕM¨õ™UŠÂì4\ôÆ;¾I…W…ö ù‹“ÜBŒŽó9ðçÏMgsäŽäà Ù®²“ ¨E ¼{D éq ‘?r{(yKH^I¼¬Ã9¿ÂÏgiY ‡WOß± œNêîîö7Œï:.5 ‡,€k ÚÏ´_1“Kt6†)•JŸ&˃Ïç#d©4z}ó] „“»ÇêúÝp­¦ÄïsάћµËŒNZ퇪j¶EÇ(»:}Œ¸Íj“I¥q +5òrí§¬Íœ ß›¿oiUæˆaá¹ êNIy%Në{ÜëcÄõz½/@ˆGDÒ.^ẄkçÑÞˆ/O¢êö4Ì‘ù…q“MaÇ°&í@®‘0ŽZ­ö1âf£i_Jj“óH=f†pÌhQúùŠåø+ÛK;Õ£™Y¸JÂ0L£ÑøñÂÚZ +ç$ÄaëRÊ°‡=Ü ÐÁ·R"š[îøûk(fM¦ qa<7Pᨑ¼‘ô([I¸ª@ +ò2¹yï·ºº:Â,™*©ÆŠŽ²q»$_q;†;²r†´É÷Phö„äÄŸøê^ùA4SrŒUTÅf'ÓÐþ7­;[ƆÿüÜ}‰gEv7³Ü·:Ùß^ÿŠ>¸¶ra½¨ÿï)ä ’X \øOœép6:U +|\<®¡ÛÐØ3ÕSÏÜAOÚÏ}13»¼ô„÷qÿÁCrXø© +œlƒÓí®¡F‡7 ö7¸Ÿ6AãÙ¯Ö˜&³4|@ T¡´ ËDAèåk‘¹ T#h×–R°å¶îRŠQÙŽÿf“!›L2?Mv2 ‹;ÆËî,»Ê¤8€1ŠFDÚ€¨U¦å–+ˆòÑ‹tZ(={¾¯˜¬Gªb›oÞ4å4ç=ïó¼ç{íä–´$"ÒáA|Ùö’?r¤•,qù"Ù¤•Œ²cÜŒ’8ÿà€?`x}lÛëÝDrsé•L[üï\}6Zoù^øiT Ì,ÛAP]ɃÆÌS°Y­`b•¨¸¼Ü߮Ò#JU\Äðü +¦„XÆD?‘U± °˜Iáî±ýK) 6Kà)ãW¨þ"ùdÏó'r`Sžþë½ÉÔàú†œ +Fq ç¥á"7’W³ÅŠ„èX +Úe{­«ñ8ê’k¤Ó©k]¢¥:µk°N÷>î?ŸÎÝ–‘%ÀÍ_³cµÄÄÄ„P(D¥íd ]9qÍÂPçÒƒ kséÛÑÕgÕ© ²x„èÝJéþ"žÏ›;)x=ÉmnR5dÃì·Ôg+>Ž”Àôâ¸2U"º¢Å¾ ” y&=ĢDŽPBƒ%ñEÕDBo¼†”L´— 4žŒN§GjµZ_Ãøa4SydI40Hj?OTÒ~äJ>y“°1L£Ñøú4k±la2™D"B–J£Ÿë¸lƒpÜ6綺>7\+)‰~N[ ¸uÈd›rÁqûÜÁÃ5ÑQ[5½=^FÜawÉåñ0jÄÙÖ‹³>²Ï¦-Dm¾îÒŠÌaÓìä4Î;e•t:màv¿—Çq|»jkkI[°]TY5Vx„MØ%Å{·c„#«`È«1IEBmæРèy ñ§Ç†Ž!;Ê.<Ìfú7øו±á?Eðìoí„]E–ÿJ'K˜Ù:÷÷|ò³ç%w¿J¥øIÅy³ÿí‚SÝÎûmNšø|}ÞS/<øšûõc~HOÞÃ2õty鱞ǵ7)›6©”Àñ.8q}áAÛ¼' ÞmuýÔÍÚÉ;-iI,D¤Ðð ìÛ‹?ãH+YâòE²I+eǸ%qþÁ¿Ç¨x}lÛëÝDrsé•L[$á\}6ü—ØrRøId Ì,Û!¯fK”L11hÌ<‹˜82¥‡˜¥Ÿ'òrc×aÉ´R1<_Ét/FŸŽ² +°…£RÑ•ýM) 6çÃSBǯPýEòÉ$žçOäÀ¦<ý×{“©!ô9ŒâÎKÃUNl'¯ÂÄå Ñq´Ñö(ZWãqÔ%×H§S׺DKuj×`;œî}Ü>»-#K€›-¾fÇj‰‰‰ ¡Pˆ KÛɺrâš…¡Î¥A×æÒ·£«ÏªSdñÑ»•ÒýE*ºçN +^Or››T 9ð‡ý–úlÅÇ‘€˜^W¦JD7¼Øã׬Š&ŽB Ê-ÙQTÍA$ôÆkHÉ(ªa Jãi1!èàtz¤V«õ5ŒoF£1•G@–@ƒ¤öóDE í7@®ä“€aÆקY‹e “É$‰²Tý\Çe„ã¶9·Õõ¹áZIIôsÚjÀ­C&Û” ŽÛ箉ŽÚªéíñ2⻣H.Gˆ‡Q#ζ^œ…ð‘}Þ0m!jóu—Vd›f' qÞ)«¨¤Ói·û½Œ8Žãy"1B<<‚vºY=C">4ƒj[C|yM·ûž™³8p» ¼}™„FÂ8z½Þˈ[Í–Ý)©±LÎ-ý¨ÂQ³M¿vŸ¿·{îxa~$#“PI† /#þîQ R…ÐÀ}R^]J^'ÅaH'\&ØÞÑyÉ×çXEñÔbI—ÄЀŽ@ÍÏIòª¡êLNß®€ÚÚZÒlUVavIñÞí™Ì¢jL¢HØBÛ¸)4m*¯Á$ žº +–ì(Q0'%Õ¿!À¿®” Åðïûíßñg ›m'ò—NÖípÝ œË…MùýN^ç'‹m¯Á'ÝÎûmNšø|}ÞS/<øšûõc~HOÞÃ2õty鱞ǵ7)›6©”Àñ.8q}áAÛ¼' ÞmuýÔÍÚÉ;-iI,D¤ƒ²Ä–|Æ‘V²Äå$ÓŒ‚JFٱĽ%;üCbT¼!þ[b¯ÏµÕeÛê "‘ùKŽ¡´}Ç'höWb½éûÜO"Cü¶¬Ï,‹CÌÏW¾Äg±"€ô³DÅååÆ®÷Ç’#JU‰…GÐJ¦¤‚!*O(²£¬‚ÃLÆGTüЕýM 6çÃSB{Ÿ,†Üºî• ´àç:þ<âüò¿ÚóixðzúÆœ +fq ÷E¬<=H”Ly?:n3êÉö(ZWãqÔ%×H§S׺DKuj×`;œî}Ü>»-#K€›-¾fÇj‰‰‰ ¡Pˆ KÛɺrâš…¡Î¥A×æҷéV]›4+ýœE¹ù§TØ$™;)´ÕñíˆQõÿOõE¶ß×ñþ6ÛyB™¾Íþ]bY—V[ú9Wªdzþ:U±¥‡Xô˜Jh 4žx5¼ÉÏß.Iª3ŠªÙ‚²hktp:=R«ÕúÆ7£Ñ˜Êã¡Ê“h`Ô~ž¨¤ýÈ•|R°1L£Ñøú4k±la2™D"B–J£Ÿë¸lƒpÜ6綺>7\+)‰~N[ ¸uÈd›rÁqûÜÁÃ5ÑQ[5½=^FÜawÉåñ0jÄÙÖ‹³>²Ï¦-Dm¾îÒŠÌaÓìä4Î;e•t:màv¿—Çqo9öÜñ ÂýHF&¡’0 3 ^FüÝ£@¥ + €û¤8¼º”2¼NŠÃ>.Ë[ÂÂ;:/ùú«(žZ,éÒ‚xZШùýýji2Kç0È r¿U$8 +H¿ö+Ȭ‹ˆ ‰Ðë Ð Pnq×ÒÔ0›ìÍDv÷çþqoê(*3Ù5‹Ž"tD&FÐ/T¤‚/ ˆ …–¡ÓÒËÙ÷k5Ö‰h¢¼yò…Ðsò^žçœó¾®´ô€6ÕÕ÷"”³ ß7<üvTWW;ÆDn+ØOæU°¨‰I¾¼ãØ+Ôô'Žðñò§²¤¨,ÞÅí¢2fÁgd~‹ñûxzÔ–²ð™\û¿³Íµc ÷GϨâ9Øù€©–_s Ç~Bˆ/Hn~ññZä!ÉÉ5·á‰Në}µUÓL}ߌ¾f[ÿE¬ïyÚÓ@l¤'ïâ<Ÿx±´òX5×íjÇu?ÿ€C +iÇc×lýj‹+$Þk²?hÁúîñÞÆ´$&)0Ô››S|-Q2sö:”&gH•Œ’Ïv•Äzøzî!CtÇxø¬È¬â™j8?ª¸æZ®‰ÕψÍTC­±}ÉÃçÄ“G¿ +_G ñÊ,‰-¬d‹•óôœ#‡# )'Š«RùÑ^k<Èäð’ªÄ¼ +R¬ D +XÀ+‰‚J–tÁø8Bõ@èïEn”Ú¿þÔ\ÃÍU?†3<¾Só6Ðüyñ½?¥'ùxGz ʈ¢ýì—aÈ™¹r")Y% ÒŠ G›##ÚO†*ÙµZ5M ”TÓlhÁ“·žÝ>“ž°)#K ÓÜ­Ž÷ÅÆÆÆ„B!P–¶•1t¥ëºlC­ Ú®mÁ3µ$+¶'Dú]ÿ"Ÿ“Ìk²L5”®Ló®Ð—·(¥®®µŽrÇÿ–™G„ ?¯´ÂX.¨Èõç„-)gÒ£×ùy J¶POÃb¶¿œR_‚Ò8p ‰Óéë»»»ÝMã"ltttG*EYBgpô~®tÐûÝu¬ä8Ivuu¹;›U[2›žžÎÎÎfÃ"è —.11Î9G]·\ï¨zNÎ êf†¦v_6<ùÁü=Æ7´22©.‰$ÉÁÁÁfü—›´ª*¡£Ýw4‡m u†×ÍaBJG4H<8$ôRëwîÎã=²CºDº¡F„4k4WZz@êê{JY†Çï~»ª««c"·‡ì'ó*XÔÄ$_Þq쨉L$Žðñò§²¤¨,ÞÅí¢2¢à3VA“•ñ¯õôT•²ñ7ûr,G¸foNÅ3á™Tü×À3«¸ð«EÅÅõÙXßñ‡¤Mš“knÃÖûj«¦™ú¾}Ͷþ‹Xßó´§ØHOÞÅy>ñbiå±j®ÛÕŽë~þ‡"<ÒŽÇ®ÙúÕWH¼×dЂõÝã½iILR`¨77?¦ø [¢dæìu(MÎ*¥Ÿ'dÇzøzþ–¦;!Äç%–£|K-wîˆSfÜÿ“ü~²Ô8ö:>n’Láo õ¥…xí.‰•í'ÅÊyzΑÇÔÅU ©üh¯5drxIUb^)V",`ˆ•DA%KºˆO +…P=úG›¤ø_ÙÖZÐ<·üŸþ‘Ì©øϦâáúOqsÞ?¦±|>Üà#¤Ž!ûerf®œ€HD +BVÉ‚ô£bÀÑæȈöÓ‡¡JöG­VMÓ%Õ4ÛZðä­g·Ï¤'lÊÈèôw«ã}±±±1¡P”¥me ]©Çº.ÛPëÂA£¶k[àê3hÔ⬰=qƒßC;qSž­^h®å˜_j駺¢d?§âÂek]âsâgÍÊ A¤Å”dƒn]@Ø’r&=z_· d õ4,fûÛÁ)uð%(×8¾¾»»ÛÝ4.ÂFGGw¤¦BäIEhÀÑû¹ÒE@ïw×±’ãhX$ÙÕÕåîlVmÉlzz:;;˜ ‹ 7\ºlÄxÄ8çuÝ>p½K ê993¨›š6NØñˆinϾQ‘ºnÝXaÆÍ&s¡LŒ‡„…Õôí,ÆOM–ÁI›»«ôNâáôì¸ Z¬eJ:=âîÛ+̸N§ËÍÎÆCÃ#Nkžr0>4±­2¾4€Óí¼0NÍ>1˜uw ¦î΄š³I¶V«]aÆgô†);böMíãŒëÚÕû|Ùðäó÷ßÐ>ÊȤº$’$W˜ñ_nÒªª„Ž"tßѶ-Ô^s4‡=]@(Ñ ñàÐK­ß¹;÷È^ éé„ÒP¬Ñ\iém4ª«ïE(f¿oxøí¨®®vŒˆÜV°ŸÌ«`Q“|yDZW &2‘<>8ÂÇ?Ȝʢ²øEÍ’æ¯Ã ~?/Ï“e‰ør!¾˜‡ë…ø„×ññq¾ýØ<`Àq…:>)Äç%¸³¨ã÷‰IE¹³ÃWñD§õ¾Úªi¦¾oF_³­ÿ"Ö÷<íi 6Ò“wqžO¼XZy¬šëvµãºŸÀ!…´ã±k¶~µÅï5Ù´`}÷xocZ„êÍÍ)>È–(™9{)™‰ä ©’Qú»Ä]Åq4ß*·EÍ~#Æ— ðןP2;àã/_Wšã'§ÌrñKuÇ…;ÃÖz¯Ù]G)_9OÌ9òx8’r¢¸*!•íµÆƒL/©JÌ« Å +B¤€ ±’Ò|~“‘7=òB´ºßø² ŸS‘€£:§¼_×<×±@@ ÐüÕÂ;N#}}|£}… +†¬’|Ã^¼@$"!«dAúQ±àhsdDûéÃP%û£V«¦i’jší-xòÖ³ÛgÒ6ed tzƒ»Õñ¾ØØؘP(ÊÒ¶2†®Ôc]—m¨uრQÛµ-x¢cF£–f¥ÂömÑþwþ’ÛdøŒˆRÎ ‡Èñ^‰Š÷êåã||JˆÏŠp[ÑÈ?9Ÿ|ˆ½2ŠãŠ‚nñ€°%åLzô:¿ oAÉê€(ˆå~ƒœR_‚Ò8p ‰Óéë»»ÿÇ~Õþ4™åÑ[ì BiiiVGy)mŸE¡ˆ0 ÊËKÁ1ZZ Î&›ì‡áØÍd¿šý0êìŽdhQÀ˜ Š–€ lAH€oRú" ÊÝûÍ®ÎFªB›`9iyžþ~÷žsoÏéu7Pz½>‘SÆ €Q‡÷sÆE ï7àx2Ãa8¦V«Ý½OíXF@€˜¥Ñõm÷­N[׶¢®Û×^¾ŸKÁ2f´.lÂéÕµK•5!AÁê'=.fܶj+’Hã´À›Ê;+ά®ë–ÌølîÞ¥=‰qãÊœê×7Äå2ƒ>ð´ßÅŒ †ó‚\Ä85~½Qµì`|lÍæa|g€N÷Ö…9¾¼2i¶ |8ªã§¥£=çb\­VëbÆ-&sRBb(‹ûX;apÂdÕzîó]Ãä+ÛK{´/RÒq—„a˜N§s1ãŸ^ùµµ(.^`Øa;¶s†]sØ@3É€€N  ¶µßs÷:>£Z4›“Eù4 ÁY#8cé:¸« e™s™CSS7@]]#ì$M¬À +ª8xb*ÛÝ8öx"–1)t?25•Ô`Âr¦óß ‘sÄrŒGEóûzï».FáÞÃäÀÙx\ý! þý $›oüþ˜Uù°§¸ó*‡ @Hhzçn ·lhTøçû1¤²Ü…¦¾™¾zÖQFüéŒù…Å•‡§œ¯Ý|ýHßI…pºÎvÙGZÖ!ñ™róy+4õÎ 6ⱑü©Ä³…¡ÅW¸";·—™°,2_YòmÔéâð}¿¨‰ ^k̃Eð–—®±¬ÿ¯4\f9ðflÂGß,];—L;°BL+/’s…²·Äœ[ÆDG@TÁ*®âgñÞï…Å–ÔFTayR–PŠˆÌ“EŠåœÂjN$Ýô`?Áëz)vÖ¼ËÍœ7ó¼3‰c¼­I¶4ßu¡¿.)Ò‡è÷Õ¡[RÍAßÏPÊB]Ð$B) .´ü0jt<ˆÞyë{´K›/Ú74Êm¶T£Úm…KO~í¿u,åL–Ádv·:>—šÍÎÎF”Š‰ûå4¨ícíÛM˦¶.t[4-¢ >z=þ¨ßð_R‘NàÏ"\9o‰<ó5Ћ$‡tÕ”»Š§þ––ñ; ìÿº$âºÌ¥,ç/s$lQ›qä/™˜Uÿ4|Èë‡-©£^YÃQk´pãpoo¯»iü€Òëõ‰|œ2 Œ:¼Ÿ3.y¿Ç“ÀÁ0µZíîÕxjÇÊh4 +Ä,Ψo»o…pÚº¶uݸöðý\²è –1£uaN¯®]ª¬ +V?éq1ã¶U[‘D‚ ÞTÞYpfu]·dÆgs÷.íIŒWæìP¿¾!.—1ô§ý.fÜ`0œä"Æ©ôëªeãcËh6ã;tº·.Ìñå•I³ÍáÃQ?-í9ãjµZ3n1™“CYÜÇÚ „&«ÖsŸï&_Ù^BØ£}‘’Ž»$ Ãt:‹ÿôʯ­EqñÃsر3ìr˜Ã>šH´pJµ­ýž»×ñÕ¢Ùœ,Ê  ÎÁKÐAÀ]ý (˜˚šú¸êêê±`'ibVPÅÁSÙîƱ7À™°ŒI¡ûø‘‰¨©eÉr¦sï2Ï—±$ +n¡ çÑÐüÞ^I£¡’×$çýTν]ósuls O¥ˆy è?5'š±ÿ®âý$j”Ç*kb.ÄBê¿|Il›é„óÝÃ-þù~ ©ì#w¡©o¦¯žu”:c~aqgåá)çëA÷#_?ÒwR!œî„³]ö‘–ugH|¦Ü|Þ +M½sƒM§xl$$*ñlahñ®HÆÎ-}­7QEäÅ«Qg/1¿$c¨þ^ÂQ^‰»%ª—E#™)±ªß*MÛ¬à5VÅþ«"ª¾2úÎÿ×Ü°à/¿8t ó›p‰Ë“âßœ[öZðøe¨«¸6ŠŸyÄ{¿XR]P…žd ¥,4Lž,R\V³™n€ºº:G,ØIšXTqðÄT¶»qì ðD&,cRè>~d"j*©Á„åLg_/cI\4s8ŠæGò !ù¤†’SÃÈ ÇHü0ÿÓá””Ê×Lòÿ"G@ +“’ŽóO £¤…‘x‚ן*.¬é;á|÷ÆpˆF…¾C*ûÈ]hê›é«geğΘ_XÜYyxÊùzÐýÈ×ôT§;ál—}¤eÝŸ)7Ÿ·BSïÜ`Ó) ÉŸJ<[Z|…+’±sK_‹MTyñÛèœR)Ðç —W|)-œœxÌŸJÆeö¶ÆÞ€’ANFj õ?JÎ`Rbè½ Úq¿ÿ°_m1Mmix•ûµ× ko»(9'å¦" +dŠåÖP'–bävÒœ·yd2™œã<8É$óàÃ$êËIÔ¤(`Œ A‘¤€m¹$\,‚”^¤¡Ð²fí œLœ©mýóe§ÙÙ»ÿ¿þï[kÿþȾˆ¤.'þ¹P¶)x⇠%â–+’„yQG¼½ðf…âxi5^$ç‰å\TLQGRƒ—Õð8¤æ‘ê†ú"ÁgŇžŒ N£¢bN¡¼ÿU º“•–Gl¬ø°œø°„P +ÄýÀ,«æ!|±¹P:i-eŒŒAib#X¿ÝB]Zo³«›¶i©Z¹>Ú{>ô?ÈLŠÉ>›o0™Ý­Žƒz½¾  Q–q‚£{qT]ÛöAÝìдÀù.ËpsInzÝÛË‹Íô?@M M‹ ÍL;øûùù;h§¨ñai±!é1¡9ñ4Ýÿ0 „'„¢Ã¹fSáNBRË/¾ÆâƒÂ|ò+‰Oƒœ»×ß ´éP”+ÿRJŽaá½½½î¦ñbvv6M(D•'ð€QÒû9ã"÷ ŸÌ%>Ž«T*w¯Æ»F£Q$!f,ì~ës+„ÓÖÕQ×í×~ÑÏE‹Ö`Ñ­óëpzeõÊõúȈ£ªžn3n[±]”Jã4ó^Ó“egVÖ´‹f¢6wwi_b̸<瀳kvIe†±Þö»˜qƒÁpATˆ§3Yw)—HÆuK¨6ã»´»7̱¥åI³Íá«Q­ðLê¹h43n1™ÓSÓ⸂7š „&«Æsžï&?Û>AØ­ÏÎ!\ŽãZ­ÖÅŒïohjêû +hhh Ç€ŸdHêðÒj>11ÉövÛ1‘‰el*Ë/8Ì%•ÖãâJ¶³¯£Ù³N ©°“€TïNâ°×¡?×_ZÓw¹.ûp³]­$®_ÇÒ1òšúfúîs£±”¬Üó »+O8/»^‡Ü‹átÔw:Fš×œ!ñ]ÓúûhêlÌHæ!%„Ò}Εŕÿ$(®â^Ý[ñ5Î埓ÄUlj„ÿ•ÍÒÅÅr⟠e›‚'~ÈP"n¹"I˜uÄÛ OaV(Ž—VãEržXÎEÅUq$5xY LÛadPø)Ì‹5üÒjÞ› ¥“ÖòQÆÈøô\l«ã·[¨KëãmvuÓ6-U+×G[àbχþ™I1Ùgó &³»ÕqPB¯× Ê2Npt/îBƒÊ¡kÛ~#¨›š8ÿÊ<¬,ÎîPUÑÜP$ciõ¦Â„¤–_|‡E…ùäW$Ÿ9w¯¿AhÓ¡,(Wþ¥”aá½½½î¦ñbvv6MHP– ÀCFIï猋@Þo€|2—dã*•ÊÝ«ñÄ®…Ñh‰DˆY »ßúÜ +á´uucÔuûÀµŸ@ôsÑ¢5XtFëü:œ^Y½r½>2⨪§ÛÅŒÛVl¥RÄ8Á¼×ôd™•5í¢™¨ÍÝ]Ú—3.Ï9àìš]RY…a¬·ý.fÜ`0\"ÆéLÖGÊ%’qݪÍÃøîíîsliyÒl3@øjT+<“ƒz.ÀÆÅŒ[LæôÔ´8®àfÂá„ɪñœç{†É϶OvkƳs—„ã¸V«u1ã;…‹·&Íaûvΰ“4‡}< PЩ4zkÛ3w¯ãÅ‚ÙœY\’@#j‚5Š3–¡B¸úARÑ,s>ohjêû +hhhؘæð“ I^ZÍ'&&ÙÞŽc[ &2±ŒMeù‡ù ¤Òz\\ÉvöuWZ'@5³`l,ì-ˆà`~14ôÿ…­ûÇHp°€$, ð0R¿×Ÿ®—¯~è„s]öáf»ZI\¿Ž!¥cä)4õÍôÝçFc)Y¹çvWžp>^v½ +¹!Ãé¨ïtŒ4¯9C⻦õ÷-ÐÔ;7ؘ‘ÌC* +¥ûœ+‹+ÿIP\Å+¼º)¶âkœË?]e³|½)^\f?<”o,Ý/öÿèí¡7ÿªo"ÓÿÄÑ è`o + `±¡¢«Bùr⟠e›‚'~ÈP"n¹"I˜uÄÛ OaV(Ž—VãEržXÎEÅUq$5xY “LÛÐ<-ÐGÈf£‘é6Šù²ÿXúÖ¦ ù%²“˜~‡ $üÈVó˪y_l.”NZËG#ãCP–ØVÇo·P—ÖÇÛìê¦mZªV®¶ÀÅžý2“b²ÏæLfw«ã „^¯/((@”eœàè^Ü…•C׶ýFP7;4-p¾Ë2Ü\’+D¯9¢©~I‰ ÿXšoÌ–º¾!~º?›å—îèƒÞH ¾PÅ•ÖŠäßð9Ôò‹¯ñ°¨À 0ŸüŠDrƒp÷ú„6Ê‚rå_J@©QñÞÛÛën¿!fggÓ„eÉ<`”ô~θäýÈ'sÉ“„ã*•ÊÝ«ñÄ®…Ñh‰DˆY »ßúÜ +á´uucÔuûÀµŸ@ôsÑ¢5XtFëü:œ^Y½r½>2⨪§ÛÅŒÛVl¥RÂ0˜÷šž,C8³²¦]4µ¹»KûcÆå9œ]³K*«0Œ5ð¶ßÅŒ † ¢BÄ8ɺóH¹D2®[Bµyߠݽq`Ž--Ošm_j…grPϸ@£Ñ¸˜q‹ÉœžšÇ¼ÑLX œ0Y5žó|Ï0ùÙö ÂnÍxvá’p×jµ.f|çQ¢P qñ6ä9lßÎv’æ°€Çd +Z8•Fom{æîu X0›3‹Kh@M°FqÆÒ#´SW?@*šeÎç MM}_ äXð“ I^ZÍ'&&ÙÞŽc[ &2±ŒMeù‡ù ¤Òz\\Évr C¯Kkeµ|ît(¾‡¼þ"ŽŸ»÷áŸyº_²µ¿dß<=qóôøÍSã¿þ'È;;¥ûõ”ö¯YÓÿ8·ø¯ó‡಴Ô:Õ?vÙ‡›íj%qý:†”Ž‘§ÐÔ7ÓwŸ¥då~œ_Ø]yxÂùxÙõ:(8ä†\ §; ¾Ó1Ò¼æ ‰ïšÖß·@SïÜ`cF2ïßì—{LÓYÇ/ÊC—‡"ÐV$åÕǯ›]ä!J;¶@y˜-+"„˜ìþ³v³ÉÌè&ëf³ìcâkÅEc”¢€c”Q¤ ˆc•ùµÇd/ŒÆ$In$B—RSª¹Í¥¥¿åFuõÚ³Ìî̇Ožü´jkké±[ƒ +y‡oÏ‹ñµ¬*éú}ÌZ„$YYÓßµãñÛ£f›ZA=Ü*ì¯aC÷Hw#g#+.9ãùø‹ùÅcÙæn_ÝýÚ×oÍDzl<ÜŽÇnÛ7[ç"â7MŽo[°AõìÁåÄX.€´6ÐkW~XQ5_"çŠ÷;AeçÊÙŇ£“ö†¯\½²ú×ÌM|§_ÌDø`¶Ÿý蘉(ÌÎÓ˜]ÉÅÊ}ÆÓ¢ _´ÎcGQøÞCüù[T‹K£lI9§¨&:!3ÔÃsÇ(®Ù’_AäÈ8YeQ ,)æ+¸ìX¨ôÈÓÍíT)Ÿb¾5ŸÚÅ <àýÿ˜?çd>ß+QšÊ÷]å³Ñ[ÿó ïMfqů“‹É;†„¯63ÛŽÁ-9Úlê¦Y®T­pôµàÉ®§=’¢7¥¤ t£«éøPlllL(‚d‰1líÍSX§´kÛfOu³ƒlÒgR7KÒãaùÖ~꿤âÎÜœGaÓõ=´Äoãst±Uä⎒±ã™{ÂÖ!?÷ä½áÅÕÑ9eŠêÙê¹9[RÎe…úøú{ Š# áÕ@a¿ð¯!»°Š/,‰€­áà,Öz•JåjßÃFGGã òX„."ÔG÷~sé" ÷륙A7<‚P*•®>Ͳ͛éõz‘HÊ1Y­7Ì›­ÎQ×å×Rrê>'MI«7;ððÌ«}ªB‚7(»:YqËŒ¥P*Å‚§›®Nc<2cÕL©Ø\}KKÒûõÓÏìxÔj+(“³XÌÞû=‹¬¸N§Ë‰Añ@óä%Å­¸v +b[V|~²ÛY0û§¦‡ŒÆ}š„ipç|‚O’ä"+n2·o‹ãð&Œ fr¹ž/˜½´L`ÜI¤¤Q]Af‘ÿù–[Sãâq„ÑÍá­Ù:ÃÛtsØЄ’|]@`kÛuWŸã²Fc’$7¡Ë©)ÕÜæÒÒƒßr£ºúmƒYfwæÃ'O~ZµµµôX€ˆ­A‡ˆ¼ +5.•.ø8FMd¥)L¥QÌÕ~þ^°©´ŠÈ.›}|½fɃÜü +./Žñ{»¯ø|?7çâK9ÖB[ÀZ/°Ö lÇ3¿ïÔ'u™àð­í‹L|> ™wçw|o„r³²§Ÿ´ãñÛ£f›ZA=Ü*ì¯aC÷Hw#g#+.9ãùø‹ùÅcÙæn_ÝýÚ×oÍDzl<ÜŽÇnÛ7[ç"â7MŽo[°AõìÁåÄX.€´6ÐkW~XQ5_"çŠ÷;AeçÊÙŇ£“‹"Vz»Ëc˜†³{ðÕ<Û ,ÓV/¤ži‚wH³Ögcö/2göà/¥u»·z»x¦…V9ò·x—FA +HÊ9E5Ñ ™¡ž+ˆ8FqÍ–ü +"GƼ—²aIA%˜Š…JÜúG "ÁY¶zé:ÚßfhßÖSIáhãëù=Häù®úE¨·PÆ–Vò^‡QÊÓ¹Ÿ-ãÀ‡püð5°Ñæ`f{Ã1¸%Ç@›MÝ4Ë•ªŽ¾<Ùõ´çBRô¦”tÎ`t5Š …B,1†­½y +ë”vmÛ쉠nv-PúLj…$=–Ç„ø¨þ”„[óí " +¡z¡“¢×€½qºœ ++LeDÁðßÒ>Úì|=’÷†WGg—q(ªg«äNälI9—êãëï%(Ž,„WƒŒ³¯!»°Š/,‰€­áà,Öz•JåjßÃFGGã òX„."ÔG÷~sé" ÷륙A7<‚P*•®>Ͳ͛éõz‘HÊ1Y­7Ì›­ÎQ×å×Rrê>'MI«7;ððÌ«}ªB‚7(»:YqËŒ¥P*Å‚§›®Nc<2cÕL©Ø\}KKÒûõÓÏìxÔj+(“³XÌÞû=‹¬¸N§Ë‰Añ@óä%Å­¸v +b[V|~²ÛY0û§¦‡ŒÆ}š„ipç|‚O’ä"+n2·o‹ãð&Œ fr¹ž/˜½´L`ÜIü‡ýji2Kç("#‚Z $¥_ûµŠqd#½´¥Å–¥¬»–b†›Óøg“Ù‘l6ÙŸkÜ‘z]wÔÙ¬¼,BGÄL‰àAE +Øâ%± +C¡ezÁ^ΞïƒÙŒÆ±Œ"M„7o¾ô|œ÷=Ïóžïy²² •„ã¸ÙlžeÄß=:²‹Çè&Åac eØLŠÃ. (¨ñÔè+ WƒÝÇŠa»=S®X@ F5Êt$=ÊF +¡ê;HE^F ìêï»*++I[ð-1Êr<¯„EØ%Í{·c„#Ó`*äþ4ITZxäò0´©ª—6’S¯1•¥¨` ßBCõ‡/Ñ°àY)üz‡[Ïsâ:õ|·^àÖó]?Kçañ$’ç®âú¥½Ûú§‹)@.•:ú›àóo·Ák¬#žoή:_ÏehëxÒQ­¦§lã=žYzÌÇôãúÖ¥‘Qûµ28Ð-;ƒg: Þ«õ߯‡¶ög5ÉLD¤eÑaü {Ùòb¦d÷$QŠb†zç·ëD„þ=.‚ÕR—žç8ÄséÿçÕË) hVÅwâyðàùÜ=SÌG!Ô°íêU9+WûŸ%š$4ò=XŽ“.\º(O‰Uë6ä•à¹ZL¦E ¹Å e)3¯„ÉØJEWöA^ïv¸¿ä:^-àg´'*ä;ªx®C\ÿ?…ð¼ìÎ[ñ¨Å‹ã?i±üröT¦„œ}™S•±Pûñ‰Qh£µq´¦³Ð)ù6xµŽÔXçï­‡#·žÞ>—ÉY“ÅYmö`³c®„Åb‹Å²ŒŒ¾k§¡µÍ××xŒ¿©µŒ òì4BôÆE´|žŠ¨õâ¤Èõ%ÏUE0Ý™."_%¹«Šë=&€ßHžþ=[ºŽ +"B3ò +?ãÈ&Yè&Ÿ¤œ²Œ%ß䯊Xº Zl6>CZF~[\¸m§Ó?noo6Œ¿"ÓÒÓQåÉœ —Ô~ÓQHûÝ%WòHÀÂñ¶¶¶`w33ccc999Ù½úÊwNœžI«tÃõ!%qž#ãfëxߘsÈÜ/v}Z·²íÖÍYF|Â=‘¯R!Ä©1±gj¿u@øÄí1؉ڂ}Jd>s<óÁAWYTL§ÓîÞ¹=ˈ[­ViŽ!K;u±n”D¼oÕ6øÌ$šîÉ óÁ¨ã±} +aK¯9}{6¡‘p¶ÉdšeÄÇmö­©i û{Ó£qÙœ¦ùûü½åã'~€ð¦éaV6¡’p7›Í³Œø»‡B§£p €nR6R†Í¤8ìà™„Ë+¨ÑW®»9Ãv{¦\±€Œj”éHz”BÕwŠ¼Œ@ØÕßÿvTVV’¶à[b”åx^ ‹°Kš÷nÇG¦ÁTÈýi’¨´ðÈåahSU.+ +l$§^/bî,eå•0Ù[h¨þð!z5 ™Søõ÷ažSÏuæ»Ét½&yįz®ï„^Ìmÿbó +E!•:ú›àóo·Ák¬#žoή:_ÏehëxÒQ­¦§lã=žYzÌÇôãúÖ¥‘Qûµ28Ð-;ƒg: Þ«õ߯‡¶ög5ÉLD¤eÑaü {Ùòb¦d÷$QŠb†z߆¬‚u!KîÂcFOˆà9™û¢ÙkÙE¤[/p n=ßw”Öl¦/¡Pe&æ—ã¹Ú—ø,Ñ$¡ïÁ +tœtáªÐE!xJ¬Z·!¯­ÄdZ´€‘[ÌP–2ç±äT*º²æ3áåðÔ'î*žcrß_¨ÇI&â¼ÿ¤^ÈíúKæÆeáaqá"-#¿œ=U††)-ˆ–µ˜ªŒ…ÚOŒB­£5=€NÉÿ°Ák¬ p¤Æ:o=¹õôö¹LΚ,®Èj³›s%,‹X,Feldô]; ­m¾¾†Àƒ`4øMõpèƸѠড×9q­NCwã‹“"×!â°KÿjýDržï¸ݽCy;±±0#?¡ð³ ˆE«Ýäòs£,cÉ÷0é«"–.©×£A¯ÏÆgñ¿‚-.\‡¶FÓé···Æ_ƒƒƒiéé¨òdÎÐKj¿é¨¤ýî’+y¤`áx[[[°»™‹±±±œœ„l ^}å;'„NÏ¤Õ ºáú’8Ï‘q³u¼oÌ9ä‡î»>­ˆ[Ùvëæ,#>ážÈW©âÔ˜Ø3µß: |âö˜GìDmÁ>¥2Œ9žùà Ç«,*¦ÓiwïÜžeÄ­V«4G‚Ž¥ºX7J"Þ7Šj›G|fM÷ä…ù`ÔñØ>a…°¥×œ¾=9g›L¦YF|Üfßšš–€±¿7=‡ð‘Íiš¿Ïß[>þqâošfe* Çq³Ù<ˈ¿{(t:*Çè&Åac eØLŠÃ.I¸L°‚}¥áj°û˜C1l·gÊë¨ÀH F™Ž¤GÙH!T}'©ÈË„]ýýoW@ee%i ¾%FYŽç•°»¤yïvŒpdL…ÜŸ&‰J \†6UUಢÀFrêõ"¦²”(˜JCä]¼0D_È‚ÿÉñŸù„°«zò­Î#ÒÀ +^Nôú YZÏq¬–ÞýkJÄBŠB"uô7Á¡o·Ák¬#žoή:_ÏehëxÒQ­¦§lã=žYzÌÇôãúÖ¥‘Qûµ28Ð-;ƒg: Þ«õ߯‡¶ög5ÉL4Ë¢Ãø; +ö²åÅLÉîI¢2Å õ>NVAbÈ’`E[ aµÄ(¤çÿĨW8&p#úF$D)ðÀo$¶“âÍq€ÊU'ªÊðÜâ—ø,Ñ$¡ïÁ +tœtáªÐE!xJ¬Z·!¯ÏÕb2-ZÀ@¯(K™y%LÆ&êäØþ£ƒäð+±›¨ÿÚJ¦Rê!JõžÀs2Óß²~³d}±°û]ýrð™Ò"ŒhY‹©ÊX¨ýøÄ(´ËÚ8ZÓÙè”ü¼ÆÚGj¬ó÷ÖÑ[OoŸËä¬É⊬6{°Ù1WÂb±ˆÅbYÆFFßµÓÐÚæëk<FƒßT‡nŒ r^:!zWF´~ž +ÏË<ÿ9&ÿ¯ø.òŽõ ‰øwŽ½ŠÿÇMtš‘Ÿ ÖqþÇ~ÕÆ4•¥á ¢ÑÂ"--èjf@èmo™a²ò%ÈF,…ÎôÃÛJ3¶ÅˆZÃøk÷‡üØù1ÿ&ÙM¬5«NÐ5HQÀ˜‰ˆ¶AA +Ø‚: Hé‡4-…ž=÷ÖÙ•ªÐ&Ø7onÂåÂyÏyž÷=ÏC’véy.$¯ÙQ¶ä‹±e%>¦T™¦@Wƒ Æ5¤a*´þþmhi´q#É`0„Æ·‹Å’›G@– ÀUH툊@Ú¯›ü’KN6ŽëõúPï&Ë6›M  ditF]óm„c.¯ßê†Üp­¦$ÎsÆi¶:m®)sÏ8¬Ýœ¼Iÿ 3Ȉ{Ü…\ŽO %^h¸1á¸Ûkžqµ…ú”VeÙæ&¡Å» SW0ôîGƒŒ¸Õj „qj"ýÜ5Ý,‰øà,ª-Œøò$ênÿÀšqx¬v ˜óv ç˜L¦ #î´;vää¦`œû¦a'„Ãv—)<ÏW,G^xžCØizZXD¨$ÇÍfsÿVU!»x€>R¶.¥ ÛIqØÀu +@ÚøÆjsË­PïãŠi‡£@"M #ZD ’ek¡ê{ÈA^†WÒ;:únTWW“¶àÙ4Ù1¼¬’MØ%ÕŠÛ1‘:]¬ÂäÈý©ÒèëbãcТr-.V/m$_:5Kvß[ÉÂs舼k£"köãð’Ðwþsr¬§¸È·ºj‹ ëúë‰ü,wþ Ö‰z¾É¦DEJ„"×hœêXèk\0êˆç›³W·Øڻƻ갭Œ¬ÜgSÓËKpwîÞ£ÄÆÔˆáXœh_ìoôâãß“&h7LöÔçg²P#ü–S¼7¥ü8GRÁ$™¦bJ+˜Ê(OýÍú¨/Ù‰ÖÓ%ðG¡»–ç:EÉEíU‚¹‰'×òo¾–9Î~¾=‰ÖíOUÃ÷hþ‡ÏBU:jÉ!¬¼*#¯dKôšH<+QYõIY%úkˆöT0eGXe•,ægTT*Ù-gÁHफ़²†S\×k•¸ü•~ô~_¯ˆÍßf%®f¬+VcåÚ ±¿ &RcÄ–5˜ü(msjZèãdzÛåïÐ)ùž¶,–8R£Î7ÐgüüðJAÆG…»K­vG¨Ùñ¡ÄÄÄŸÏGåÊüé<´ê[–nc£ÏÔ§î:Rn!z“)÷þ”‹xâ=[Šèíú…<ÿ/‰Aú÷/œ5<Õï“%º`_ªòë ?i—œäBòº‘eK±[6PâcJ•i¨A WþBTg*´þþmhi´q#É`0„Æ·‹Å’›G@– ÀUH툊@Ú¯›ü’K +6ŽëõúPï&Ë6›M  ditF]óm„c.¯ßê†Üp­¦$ÎsÆi¶:m®)sÏ8¬Ýœ¼Iÿ 3Ȉ{Ü…\ŽO %^h¸1á¸Ûkžqµ…ú”VeÙæ&¡Å» SW0ôîGƒŒ¸Õj „qj"ýÜ5Ý,‰øà,ª-Œøò$ênÿÀšqx¬v ˜óv ç˜L¦ #î´;vää¦`œû¦a'„Ãv—)<ÏW,G^xžCØizZXD¨$ÇÍfsÿVU%p€>R¶.¥ ÛIqØÀu +— 6&P›[n…zPL;iõ Ô"‘ô([#Uß@ò2¼’ÞÑÑw+ ººš´ϦÉáe•lÂ.©VÖ‹‘n‘0Œr-.V§Séëbãc=Thq‘&=/I‰ÉŽàe‡Ùx6Õ¿6*²FɆðß][ìzéXy¯å^"·ë9̓WEÿœ)ŠæFÛàTÇB_ã‚QG<ßœ½ºÅþ›ÐÞ5ÞU‡medíä>›š^^z„#ð¸s÷%6î¤F ÇÚàDûb£77øž4A»a²§>?“…ˆGáÊRÊs$,ÑW˜ŸlÒ +Ly"£°|[äúè/qšµ¶^ºk…ütâ¾N6×)ÿ{”ð~OpÞômávÚúhÆ:žš¹OËñÿÿ·žXƒ)Ž±Ñ›SâÐ*'ÓÛ.‡NÉ÷´eÁØ°Ä‘u¾&8óàç‡W +2>*Ü]jµ;BÍŽ%&&&ø|>‚,ÿSæàOç¡U¿8زt#}¦&4úœFtwúóŒM”{Ì…u¢ù³¥ˆQ®—ô~•Znr̺j‹½§‹áÅ/5¼ƒŸ%Jtþ¾ÔýUŸìQcÂÀ®ÄpÔ’C¬Ä-(ñ1¥Ê4…–H¸Ò×J’ê8_™ÆغmœÁH2 ¡†ñ-Âb±äæep€Rû¢"öë&¿ä’“„ãz½>Ô» Dz…ÍfYQ×|Ûá˜kÞouCn¸VSç9ã4[ƒ6×”Ž¹çÖnNÞ¤ÐdÄ=nB.Gˆ'Ð/4ܘƒpÜí5Ï8ˆÚB}J«2‡ls“‹Ðâ]©+ z÷£‡AFÜjµŠB„85‘~îšn–D|pÕF|yu·`ÍÎ8> ˜v8 +$Ò4ê0¨E"éQ¶Fª¾€äex%½££ïV@uu5i žM“cï­d‹Õ,ÑA¦(0C÷ž‰Ì X•ž@_#Rc +-.Rf- /©fÉröVâœl:ªmTd’ / +ྻ–K:YîëNö¿ß Ãë9ÃW…½ßäÆFEJ„¢¹¶Á©Ž…¾Æ£Žx¾9{u‹ý7¡½k¼«ÛÊÈÚÉ}65½¼ôGàqçî=JlÜIŽµÁ‰öÅþFo >nð=i‚vÃdO}~& )ŽÕ¥”çH*X¯0¡ +©0i¦<‘QX¾-r}Ôœf=] /‹Üµ%ˆB$—~…iä¯^¾œ¯áÂKûYþöM”ˆkv+SˆùLxÐOfŒh7ÿBÿb¿jcšÊÒðG—âÈG[Ñ(½í-ʬ2P©$B6¶·P•X Ÿ »€höÏd3Ë&»ÙŸ&nìÎèjFÝLÜEÇQÀŒƈH ˆcÛò‘€¥ôÃÖ––ž=÷–ÑÝGP¡M€7onúqÛûžó<ï{ž§ŒWÏËÚèÏIdäÞº·œ#-a¡›Ñ·Ù¥XîïÉ&e}êiÛcˆó—²á—"ÇL ‚_¦½çà çIÄyBó·Ôák™d³U\I õÝËÖË.eÉ+9èmTt0zÊæFÛù£h—܃-.uý,[ªnp÷7Á‰ÎÇ=øñ›RÓ…“Ù×ìX*166&‰d)ÛXºg¡A5­k™½ÔnM}uƒ,GŠÞÚíO“ábê´1Ùö³áéIû ¯N4H¿ÚcþGFѯ×Z@Š|KAM¼´˜jŸ_žáÊ¡”RgANÆÜD[·J˜+¯â’œ_°£çÕ£K0y%W”ËÜ„Îd®ïêêò5Œoz½>™GB–ÀEú)í7´_/u§€š$W©T¾^ÍrÌ[F±XŒ g0ëš¯Û µMy¬®Ï ×bJr?',ZƒEg´»á¨}ê@yUTD¤ª³Ãˈ;ìyn.B<4œ~®þªÂGv§vÂLÖæë]Z”9`´>™†z§kq)“Éè½ÛãeÄ !– ÄÃèŒ3—&)Äu“¨¶eÄç'Qw{æÀ¤uØì0@ØÞ¯åíN#5ÎÕh4^FÜb2ïLJŽÆ¸w4C‡L6Íò<_°~îxa‡f05TI8ŽkµZ/#þþ!«©Avñ}”8lMÞ¤Äa7Wà?´ðаæ–k¾^ÇŠ§f3?G ÀeÔ$j~s‘ô([ýHU€$äe2³îŒ¼[µµµÀã 鹕ì}lY¹Â…²cÿëˤ%,E5N±BÂWÓ>\%-Bo¹È!oô’uƒ¤ˆ…~Ž¼ä¾ +÷ªõ +eÏðÜ;r²JÒ±ÚIëšùÿfvÆÛÚ”™/”® +á×DïŸ? ò÷—IëHowõ5ºÔ äõÍy¿aúÁ·ÐÔý¨»ÛÈLÜ%øaüéüÒc9æßݺM ^ûY‰Ž¶Á±›Ósñûz÷Ã&hêzrïrJimØ*Á¾è¼C\Y[Rˆy2§ +8²u—b‹ßš¸ôÉYð?„ýóLŠfˆN‚—¼z•Ê™ˆÎ/2aa:%ÚÁ¤Àô‚yWZ‚þy†Ï¨ ¨+¶·œWÃMÎØ°2ÀŸ“È(8¿·‚3Ó2…¬ìRŒäüï8¬„0OÛS°á7ÙðKá ¥à§¼Žù6¥Ày +q^ú𯻶‡ý*€±ZXÊΫŽÿ±é0*Yh½Š*\RŒž²9‚Ñvþ(Ú%÷`‹K]?Ë–ªÜýMp¢óqÏ~ü¦Ôt¡Ádö5;–JŒ‰D"YÊ6–îÆYhPMëZfou£[ÓÇoYÔ²t)z#iíŸ&ËҩÓBÛ+jýŒäˆQ$Õ3¦Of¯ÄÆãé·1@ÐJ¾"¦àðVi1Ô³ sò,@ÓWr½ÑÖ­æÇÊ«pôáBC(ÑCUñ¼˜õƒÐ™Ìõ]]]¾†ñ-B¯×'óHȸ@?¥ýæ¢"öë¥îxŽ«T*_¯f9æ-ŒF£X,FȆ3˜uÍ×mŽÚ¦u ¼**"RÕÙáeÄv‡<7!N?WÕ +á#»S;a&kóõ.-Ê0ZŸLC½Óµ¿¸”ÉdôÞíñ2âƒKâatÆ™K “âºITÛ2â󓨻=s`Ò:lv lï×òv§‘ çj4/#n1™w&%GcÜ;š! „C&›fyž/X?w<ƒ°C3˜šFª$ǵZ­—ÿÕÔ„p€>J¶Î¦ oRâ°€+ðZxHhXsË5_¯c ÅS³™Ÿ#‹à2j5¿¹Hz”­~¤ª¿@ò2™Y÷GFÞ­€ÚÚZÊvbxn%gÙ4¢pÁ혤(NZÂRÂѳօ­¦}H±Õ\¢8Ž(Š›ÕHJ +ÉŸË+ñ½ålN"Õ¿z¥¿2ŸÿM¸ÿµÇ®Ì°)3^kc_ùYe†])pÊ‚—ˆî?mò÷—IëHowõ5ºÔ äõÍy¿aúÁ·ÐÔý¨»ÛÈLÜ%øaüéüÒc9æßݺM ^ûY‰Ž¶Á±›Ósñûz÷Ã&hêzrïrJim誴½›óqsÊ0ÄRI!É7ôºàÈÖ”Ü-~kVäÒ '³`aÿ<ÓvÜÃ4ÁkȦDI~k?.˜:‘/“'…‰Œ ˜^£¨Æ³K0 ÙhˆðARšd5âs^M|’ࣕþìíáù5Ü}ì9Ï¢8ÏÙWÁ‰Mõ´í19¿É†gD/”‚7°*,Ò¦LwžÎ‚_g÷ý…ÿqèšÆÂV^u<ùÿh±3׸œ2ÔŒøžƒ1‘›iè)›#mç¢]r¶¸Ôõ³l©ºÁÝß':÷\àÇoJMLf_³c©ÄØؘH$B¥lcénœ…Õ´®eöFP7º5Mpü–EÝ(Kç‘¢7’vû<Ä“©ÓBëñ—ôþ)ɽ­$Ã3œ¨#ÎK&þž–Ï¥Ú +~^LÁ‘x)âm!æ™öo8ë²K1y%WZŒÑ#ƒÐY Ì‹‘WáÒÌ ÇjmEž©Ø²~cZ8“Éìêêò5Œoz½>™GB–ÀEú)í7´_/u§€š$W©T¾^ÍrÌ[F±XŒ g0ëš¯Û µMy¬®Ï ×bJr?',ZƒEg´»á¨}ê@yUTD¤ª³Ãˈ;ìyn.B<4œ~®þªÂGv§vÂLÖæë]Z”9`´>™†z§kq)“Éè½ÛãeÄ !– ÄÃèŒ3—&)Äu“¨¶eÄç'Qw{æÀ¤uØì0@ØÞ¯åíN#5ÎÕh4^FÜb2ïLJŽÆ¸w4C‡L6Íò<_°~îxa‡f05TI8ŽkµZ/#þþ!«©Avñ}”8lMÞ¤Äa7Wà?´ðаæ–k¾^ÇŠ§f3?G ÀeÔ$j~s‘ô([ýHU€$äe2³îŒ¼[µµµ”-ìáŠCx^5éÎcB¦lA="ç·Øoþ°UR@þ—ýjjêJã't™Ë‰•±ãi=Ó-…¤mDAÀF/;À-³Ð'ya ˆ 2— _Áoþ|pÕ1þ‘Æ…?ãFAð%àÉ&Ú™W/G)g„Æ!>‰kɶýëùófÛyÌŠÌaeð_L@b&ŠÊZ¹ð/Ž0Ñ2OÆc`—Ì÷êªÚ ¶T¥0wÔáÞ«¯æ/ ‹Ðé ÖVÇÛbZ­V,eAVç¹*¬k6uÖO*¥Y]GŸA¥„ÂpŸEŽW>[:1‰)Ž–XÎÒWu’]KEæÑpöjÿJ²\Ó;Ái+²vûHr8–«Är¤s­@,dPw sŽƒóŸ"2–g +`øÏʧ"qœáµ. ËCÒD™0Å›¹Øõ]KK‹µiü ÖÝݽ.¢Ì¡uйßd²ÈýnÐ=Ãé€KÍÍÍÖ^ÍŒM™õ÷÷GGG³nÌêÓg‡0îµ”ºV/¸Þ$PûÙ; Ñ töõ˜q×ðh–<‘§WóÕËÓÌøÈðHJr20îâæ~´öÛAŒ iz ”oÖÞ¥7wûŸ˜p÷˜1Iš Çëצ™qNŒ»º{9©è£ïìßfŸ@t[Ì»}ƒ #:Œ/vhß …=ç<µZ=ÍŒè ë×®ófó®¨ï`|_?¤ž9Ïÿ0ò#Æ—Õ÷BB©,‰ F3ÍŒÿ~#wírAè B·éä°a¢Ì°‰N[ú¡`Ä€…/pq=]ÆÚëx‹ì™Á,!W"TƒŠb1™”ÐÀ ²ú6„ÖB-#ÝzøðõØ·o] ÞZ(å²>$È9’\e’V|6¨Èâ³ÙñÙœ×Fœ ʺU–¿È¨Ù)Û Ù§þqR–Ã<Û¹ÎöÐMº×Ê4If·Ì(á26ýªˆ‹ÏæÂ'+‘s’ó¹Ò"AêN‚íï +þϵeTJù¸>+H Uj…—Gà2>$4¿|HD½,§¿VDà“ñ¸)­é#>Ô„d\ÜóðÓ ÆÛJ£JAµãã–ÂÔ~ +ë[µV³—0×lÚóljå1c“·óß_rtr.–Åá®F¬m2µ+Ç&"‘êp³Ö|§ë[ž´ÕùrAHóÜf S—K÷ø¥îà‘¹\@B.;½ÀGúY€¿d ²cä­öü*—Œˆi!‰q¥4ó+J+³hL„+ÄøX nHÓ•E„,t´q±‹±dE~ÉÛ (™V;<¹,½¬[öøù…x2 Î÷-Ÿøeú$äräl@òvÄHÚNž7NzdË@åïóñ™düu<%f˜¨‚š×LAø2(gÊè‡#ð‰8üï”ëûƒyN³ì½fÇæód{ü󸤜Mƒ n¤ð¥E~±›Wx,ž -óôh@è{2<’’œ Œ»¸¹­ývãGÃcš^囵wéÄÝþÁ'&Ü=fL’f3™7®_›fÆu:]lt 0îêîq䤢f¼³|›a|jÑM8pÝ7øÀ0¢Ãøb‡&ð½PØsÁS«ÕÓÌø€Þ°~í:o6ïŠúþÆ÷õCêÞ®ÿ(ò#Æ—Õ÷BB©,‰ F3ÍŒÿ~#wí‚rñ B·éä°a¢Ì°‰N[ú¡`Ä€…/pq=]ÆÚëx‹ì™Á,!W"TƒŠb1™”ÐÀ ²ú6„ÖB-#ÝzøðõØ·o?] â]÷ÌÝ>Y ò ã’r(ÊبžâsX’úåëBBý‡õâ‡TËI³Só‰œbÿ˜-,';çYqÙ,é§þÉÛº=r(¨Ân_8&§kÉ|jÏÔÄ*¨͵µ©Üâƒë“±2WEâÃ?U¬å–ªögÐo*E¸2ã7¥ŸÙ¹Ê¡$‰dð‡Füô‚ñ¶Ò¨RPíø¸¥0µŸÂúÖG­Õì%Ì5Ÿö<›ZyÌØäíü÷—œ‹eq¸«k›LíʱÉx³Ö|§ë[ž´Õùr@HóÜfmJY.+òKÛÉOÈå&ȉ9'£¿µØß'v1²el_í5üe,>›‚«¢(Uˆq¹˜nEÿÐ^¥Ei‘ú7¦õmôr²q±Êز½þ `z‚Ü#2“˜Ç}ÿcŸ­E¾‚ &b0Ø«Ý7ÿUµ[@TBȤäód{RóùKy ÀU;FÅf>¥ù ®ãÑԌå¿Ô<-û +ZðGÄø_ñø\êŠ×³íì½fÇnçI÷ø'~@-| ó¸€ôB>x•µÜ}Ñl˜h™§Gã±°Kæ{õFUí[ªR˜;êpïÕÇ׎󗆄Eèôk«ãm1­V+‹² «ó\Ö5›:ë'•Ò¤®Ã=TJIøºÿ²_­1Mfiø´h ì×~ýz/ȵJË­X–’TdÀÝ&+â eçÏf2™„_›ýåŸýe²?ãÎì ãÅŒ/£ƒ– ¨ ÛV!:(ÚÒ‹4”ÛÙ÷ûÜõ²c¤ òæIíù¾óžó<ïyŸç(ãïüµt‚Ïì`dÌ(ü­"Qšvâ‹5Ž›ÊãQ|„©6¹Ž>ÌÕLÁ¹¾ëåþf_`´ÇxíÙÛkSâEJkò¿\Tzè&Õ·ç³ÌýŸkË~·L ¥NQÒîîîpÓøár¹ +ôzÈ\ƒP3BŒ÷[ˆ‹ï×ËŒ43 C¥²Ùlá^Íj,Yx½^‹ÅÌŠ%TSÇÅ ÆÃÁ)‡;ü·­‡;àtž€Ó›ÃÓS{SÈ䶛]ËÌxh2´»¦'Ä䩶sLN;Ü~:·pïÒŠÄïÄãYìšž©®­£(Iïí[Ë̸ÇãÙaÙŒ‹HÉɳÖq†qç8ä¶ÊøÒª›.pàz|bÈò`|}À¡7š`ÏÕ*µÝn_fÆ>a~ÁÆ4õ û`ãA_Ðî^åúCaèyèÆ]ö‡E&Ú%©T*‡Ã±ÌŒ/>ª„N ÔϘÃKó9ëŒ9ìA¨!bÁÂ…„¨£óB¸×ñÅS¿ß°«*¡„úhÖX ±ô€K,ÚÕßA(î2å÷=z¿™kÉø9%Š¼²m±Lg’ç•)óË•úŠÄ‚Š„ÅCÿ濹¥Jm±\W"+Ü–˜®#9‘ìÈHŽ*—,(Wf—È´Fy^©² <Æ«§”/ÿÎ3+rŒ2m‰Æk¶Ê„}¡ã°9Ÿh%ßÎn­×ž®U7Èl=¬i­Ïn;úжÕÓcšjN×nn>’m=ªùÃf¼áàÞÝ“#Wð“k3ýí3}Vúó·qÏ:{ÿìëéiJK¤r·šŸŒ=]Zy¬ÆÂãÊO? bã¾Ü¿_Æ£Wgï·O/„Ä»msÿ>}Ýï´4é ƒH.{S&ÚË1ÊuEòœb|æ›Pdj< È• þ±GeýTwzßæÕe~XŠ²‚®h¼RšP¯9{XóMmÖ·2;>Óý½:5)Ž‹¸ì$z…R["ÓåùfZêðrIEÚÎ7'H¢a"RcTæ™ÙE vøU©3*@ÿOrb±Y¨:‡jafdšê4ß¡Ó°¾˜ý´íõº–#ÙM²NïSŸ9˜uîOºÏK× ×p8±‘é[¨³RW,Ï5*rKr Y®Q®/W¦éž` d²A.¹üÍqØ¥¹‡3}móliŸunà¸Õñ±Äèèhee%P¶%+ÕùãWØc›uvÎ_}í³öóxìZ ¿½ª´Öž ê/ÚŽe{0ëëÚÌæCp–j­õ´´^yë‘ìæšîS]—iýTû7KÒ:A$ŠâlÌëË ph…癕ùeÊ·ö…ürè +£3Ê "2rH.oMd;5[?Á €ÌãoÃû·¤2ežæ•çš $$g +¹ÑlX¸T*íîî7ï.—«@¯‡Ì55#4Àx¿…¸ð~½ÌH3c2T*›Íîլƒ…×ëµX,À¬XB5u\ b<œr¸ÃÛZap¸NwÀá 8½Á±9<<9µ÷Ð1…Ln»ÙµÌŒ‡&C»kj€qBLžj;7ñÈä´Ãí§s ÷.­H<ðN<žÅ®é™êÚ:Š’ôÞ¾µÌŒ{<ž–íôõ”œ)‰â­A´zYëEÜj²2]T˜oØ$,Nf²öu”$/¾ßš´†UdˆªT„œWBÖŸ÷ÿ>亂Ÿ\›éoŸé³ÒŸ¿{ÖÙû?`_ÏHOSZ"•»ÕüdìéÒÊc5W~úY÷åþxø2½:{¿}z!$Þm›8}Ýï¶4éP,+N%M€\ ­F‚äS²*Q¿¯åE”' -jô³%)¾è…®Þ”ó°d–,,LšR„»µÓ¦ø˜L+Ž¢øL¡½¨‹h‘Œ/¤`:>©ˆ¡by|4âò׈å1¤4JƒNCMHùTb )çGFqÍ£õbh¾,Ð3š/J!ŠS~¥ù¡1™þÞ°i­~c¼9•¨Î"sä1,Š`ÇS|J#¢¢Et2Pn0þ& +„’(Ú —\þæ8ìÒÜÃΙ¾¶y¶´ÏJo©ûæ/·Î6¯/*ÝæñùíŽ%FGG+++²-Y©Î¿ÂÛ¬³sþBèkŸµŸÇc×ýíUf=<Áak”‚j±1…–ÖVV2zft.|‰¢d•€Æ>ÑH¶¬‹ãqà4g Ä\ ˆŠ>äy/Žnú0ÿU_€³ÖæR›óÙlè(žàRt'¢Y2Ã݃Þ2;ÝD Écãˆ(èA°p©TÚÝÝnß!\.Wž¦LƒP3BŒ÷[ˆ‹ï×ËŒ43 C¥²Ùlá^Íj,Yx½^‹ÅÌŠ%TSÇÅ ÆÃÁ)‡;ü·­‡;àtž€Ó›ÃÓS{SÈ䶛]ËÌxh2´»¦'Ä䩶sLN;Ü~:·pïÒŠÄïÄãYìšž©®­£(Iïí[Ë̸ÇãÙaÙŒ‹HÉɳÖq†qç8ä¶ÊøÒª›.pàz|bÈò`|}À¡7š`ÏÕ*µÝn_fÆ>a~ÁÆ4õ û`ãA_Ðî^åúCaèyèÆ]ö‡E&Ú%©T*‡Ã±ÌŒ/>ª„N ÔϘÃKó9ëŒ9ìA¨!sÍ¢ŽÎ á^ÇGOý~îªd„ZþÃ~µ5yeñ›`x¨@B„ !$!!‰€¢<¢@4„‡ò*òv»‚¸ÚÙ»Š¢q:³îÌþ±·ÿXg·t°ÓQ *nÅwå%6A´Ã£–‰PÂÝó}¸®¯ª”Ì(g~sçË—{¿{îýýιç"¤%X£Ì§¤\¦U} B±£cZ»»_Ï#G“×â.&òeŠÖ0ù"†‡ˆ¾Zäø „o‘#oö›BâGþHœ¤,xcE¥Ð¬©| ]âÏ‚öù©a ðñÀÙ–/¢ƒ‡| C²–%\ô§Ó¢,£P7y;•Ä Äxæ+ÝsC¸YJNv07‡ç àMV';:¸ç)9û£ù¥¯Pž ìÀï²S&{kðÀõ鶪im%Ѿ­•æö x´¡·¡\Âc¯S >XXy,Ùüíʵ›öŽ‡òãqO î¿jn¯šš‰·+f:.âÑúÛçCý¤ šµÕ*HËSÆð;ÎB(w’¬svt_ J“0í¨ø· +w…ºç(¹9!îYÁÜì ÎÓ2#•ÆÉr½÷læKíVr]l—!k +WÂú;ó½!@ÉŽBð r)˜’µÎ ¦xÂ`Ù‰ý˜B…“‡ØO¸Áð”2$þÎ^2ÆrÐ<‘²ÃEN‡ÔÂ}*\%&Ê™Åóžp³‚ݲC¸¹ÊU9JNq$ï£xa²ÂÕŽJ¥.·ò1¼}Yà ±RðGL牽dNÒu›Ö¶V0‘'×µ¦ì$ìÒLWõ´¶bŽ-ÕV[:TûcãÙPcäèÑÒêxW¬¿¿?66(Súzw~÷6Ô™;«çm•Yw^7i+#ƒˆ«årZF ·$N´g/Ô0è‡'çqRÍ»ÈAÿ»BÜ÷FðŽ's6¸1¬­ÍŠ#¦CA2EñÄt2çCö¦?w.€ìy1ÝÓôæ ©Þj•F£ÂKP¾§7©Fòà 鼆¿á‘³ÃQB„öZg͆ + g³Ùõõõ–¦ñX___Pp0xî‡Ð—uµß|ª¨ýšÉž*²ð‘Éêêê,½š%[0Q«ÕÀ¬³+»üÒ·ã÷Œ?ÒYþ¶õ–A?dê2é ¦Î‘ñÁÜ3ñ(³ Ðí«½µÈŒONL¦¦¤ÙÛÙåLÅ×c÷NL里„o–Þ¥·wFÆî›qßÔtrÞ.6Ûµ¹©q‘7 u0Îrq=ýUå0Éxç0ø¶Äø¢›pàzxìžqÒ€ñ}ðæØs¹L®Óé™qÓ¨1$0H ‘¯»kÂøîè¸nh‰ë_ ÷Nþ„ñ-]×Æ¢J’Édz½~‘sK*.f"t +¡6²8¼ù8ŽcÐδ¤Ÿ{®àÓmUÓÚJ¢}5Z+ÍíðhCoC¹„Ç^¦|°°òX²ùÛ•k7íåÇãžÜÕÜ^55§nW˜;€Äúû-ç”~R’=Ý&(Ê]“ë½%]¤Õ%ƒð<·fˆ4ùR~QQ²ŒÕp"üÎ'ÑÇÃJ ÞšK•Í/[¡Ã£Ê–á?|º¥æþÌåÇeâ=r¥Q)O«ÚköA)ŽËñö’A"G)3.[¼-K™ÌÚ!ˆÚá!Ÿ'—ØÐF¡Q º>‰j;¹ÄL:£l:öOKC‰ ‡µÞôÃßcNg¯áÚ,£¹ÚnLñ„ÅÎ.3Št#r»ç–÷„ ùÞÊØÕ – ‘8®5e'a—fºª§µs쪶r¦ã"ªý±ñl¨‚¿1r‹aÔhiu¼+Ößß ”)}½;¿û êÌÕs‚¶jFwÞ0i«’"ƒa¸”½¢¼Ð¿ëTÌíÃAÀ„ŒÉœÙô”ΛŽ’z#B¡ˆª²È_Á´C´õqÌ£’ -=IÚ/ž#³™Ú˜t¯ø<ï05o¹= ΂°­<Ð$ W=›ößøzvj"¦±B˜+ Â΂C¹¹¹Õ××[šÆ_`}}}AÁe~}‰PYûͧŠ€Ú¯™ì©" ™¬®®ÎÒ«Y²³‘‘µZ Ì:»²Ë/};ŽqÏø#ýåo[oôC¦Î!“Þ`êœÁ=2 +Ý9ܺÚ[‹ÌøäÄdjJ +0Îtv9SñõƽSú!#ᛥwé­Ä‘±ûfÜ75œ·‹Ívmnj\dÆ ƒFŒ³\\OU9L2Þ9 ¾-1¾0€è&¸»gœ4`|£C¼9ö\.“ëtºEfÜ4j Häßëîš0¾;:®Zâú×½‡“?a|K×µ1‚¨’d2™^¯_dÆßÜ’Š‹á>y +¡6²8¼ž¶W¾óÅî㉻}VÒmí­“wû¼$ cŸoZt“=Éÿ8F€è°Wž±_ñÛ#™øJÖ9#Du Y)ðÅ×Òñ¿Rp¹—Åø\ÿ¹í¨‰¿¾ q1ÿ;³öC?B‰ÍX÷þ^>~’|¶|o\æ62ã©þ/¤EHrÃö¨¼ãrJ¸‘KƒbxÏœñµŒ¤î§ß¥Û*Óì‡ùvªM³N{ßAýË·æããüïìËe1>IÅâ‡]u¸·Þ~³Ú®RPíïã†ÂqëÜß|§ù$±ˆµ|ï·Þû+é{üôó_?ÿO·JpwÖ]vܪ¶DÛ¯UŽ6 ±éÞõ³‰qQPþ^¼¬ð¼½±Y;HZlQ…ìM»8òO–ÆI!Eq¡}ÿâêLû߶ÊT Pºz ´J£’ï¨à;­Çµ™†CüÄoF€çZy¤ìc:'½ˆ. º•Ò"bsi´¬,î÷Ba?&–ç•Ån*¡eOõÉÜ%+‹͇‘°Ó£™ Æß>Ígâb:%øJZöü§3±U€ÔÓ (l•û7iø[1®Í¾öÙ*®ï,OÖ¬uÛÙG±Ò©ª¤[ȇ“½“”íÊ"˜oyÃ@a¡Ìºãû`•œíµvUÕ(«ªR8Ûj°¾ñnË©¤èÅ«SÒ ý&w«ãu N'€²ÄX¶öâQlP:´µ£‚ªÚ©®Á½¿˜UÕÒ”xÈmšñ‰T7UàÀuŸ¥Ó4dÀ¸¾M“°&ÖœKrÕjõ$3nî7­\Np¯ª;Ìwô[Õúi®_:=À¸Aݾ:™rI$Ij4šIf|ü!--…ëâ!„nÒæðÒhÎð2m›ú¡$¸ˆ"470è|íîžÇk÷M¦¤ iBgRQ¬1Æbé—”«¿ŽÐ +¸Ë¤òotu½\åååôµïgíàdm'Dò%"[,g‹ó#Åùl®Ä8À~êU‘¢üH¡Œ°7•F¯Ï‹ôãáãç%ÊcoÚÍ•DŠä‘®nOž‚þÐ ¢ŸÉ aõKöNî•ìeÁ¿×Ìûs9ø¸[g=ȳà \kùj­õàsxüãÀ~\iñéô+eq^ F†Xbýo߬¶«Tûû¸¡pÜú÷7ßi>I,b-_Åû­÷þÄÊc:Æ?ý|Å×ÏÿÓ­Ü]‡u—·ªmc!ñ×*gØtïúÙĸ(’_€WrFØæÝÑé…„PAiUΙåþ1fyÆbôæ 7¸¯b->!!íç=ÒÒs28@ý8p€}ì_§âS’S—‡x£Ï5¹á)©Bè™-’³]- —YÌÉÙÍ]ö~èoÌ –†lÞMn(Ž¹ÒE¦oeoÜ--Ž +‹ž ©2ã‹'Áÿ ìOyø<£§>›Lê¡>HqT‚æÅ­å‰1þ³=X³øùì%\*y¤+a>;½ˆÈÞE®Ëýü…¾0PX(³îø>X%g{­]U5Ê’ªζ¬o¼Ûr*)zñê”4C¿ÉÝêx]B§Ó  ,1–­½x”míè… ªvªk`ë3«)ñ”é õ©ÿ$Ÿ–ؾI³îO±Ðúy,­' ¾Zò@TöC©°÷êþú¾8b.òõX™–»'FRÀvUГ |hÕð¯¤È)!AAóÞôñ÷LÍYš„¡;Pš¤ƒq@ÎŽ³3 + ‹—Î|Ë&÷»¦¦&wÓøÑÓÓŸ™Ç!t¡6ÚûÅE€÷k¥{òhÀ!I¥RéîÙLÇ„…Ñh +…Àl0“uòü+ÆÝÖaÞý·­)Þ¬Õ›5³ÖhíuâîÁá-Å% Bç+&™ñ¡Á¡œìl`<08äXÕ9 Æwm½‰ÊÍÝ«4%qÛh¹çÀ=6{VA!­×Z&™qƒÁ Š€ñ æ‘3Š>šqmä6ÍøĪ›*pàºÏÒi2`\ߦIX“Ly$’«V«'™qs¿iåŠøp‚{UÝaƸ£ßªÖOsýªÐùpèÆ êöÕÉ”K"IR£ùûÕÔԕƯ¢•°¤Ë(Ts“› »ƒ<Ù]ɳ’„G]y*+¸±ÿm§‹³;»³ÿ9³¤µ[mwk¬E "NG|SaP‘&TÝ…HHÂÙïÞø¤Ö "™)|ó›;7x®ç;ç÷ûÎù~úyfüå#M£ @¨ +¡.º9lvÖž¦›Ãv„Ž ”.!ÿ汦ã®^ÇŠa“)15m5Bµi)ÖÜfÓҚݨ®¾¡Xð2bIg_ß‹%°{÷näðë3vð3þÀWP6ê‘wû O÷¼xÂæS~PYÈÉÚÉWä~Ì%ŒåÞà +á'˜AEÞÌiW¸F™ÏQR‘C½<Ž²È,å§mçòbXÿR÷Š\)ÇŸo²T€cš+E÷*Dð~¯Bü8,”É¥ß?Ù>’âå¥ÝÑ w·T¹|¢ï$:gëj°ië©ç³ÑYoï>Ší7Û«‰0öº Â;CÃs+Ř}œ:sžáû‹?*qÿI Yáok"UÔaN<8·écüG÷üTÜ 7U!Á +õaøyK³é)¤*BIÝkæêz(7ê¦#TEÜ;0cp˜,<˜ÜÖÖæjŸ#ââã!ó(„!ÔC÷~³é" ÷»L:’lmmuõjcÎbll,%%˜ d±«}kƸß<¥q½Ûú™A?2Þ;2®7Œ÷Ž™‡¦q¿ejËö²Ð­Zæ™ñIˤ:3 ú¬î› ŒoZ¬ú•›«wég‰ïÇ&nÛñ€Õ–QPÄf³._º8ÏŒ EŠg±ö®¥ï…ÜŸ@uS\NÜ0M0>×£ÿÝFØs>É×étóÌø¸Ñ´>6.œà§»>Žñu£Y7²Èõ«Â»“?`Ü¢»–´‘ê’H’ÔëõóÌøËGšFv± +¡.º9lvÖž¦›Ãv„Ž ”ˆÜ`áþÌcMÇ]½ŽÃ&SbjÚj„jÒR¬¹Í¦¥4»Q]}B±±Å’ξ¾K ¼¼œ¶ˆŒ Ì,套JÊ.Í©{š)“çQFrù„_Ð_?o˜TM™Á§ŽçÌHINÿ/™^Â#cXÿO÷Š\>(ÇŸm²TÁÌÞ7­Ôó X½‹¬Ip²ã/1¾žn*¹b¢ï:gëj°ië©ç³ÑYoï>Ší7Û«‰0öº Â;CÃs+Ř}œ:sžÁð}¯@û›ñà{÷7Ö®:ç$^©›¾Úˆm·;j¢¸ ¤åLoQzxöù©E”JåùNj1‘ûŽ`Cv„û2Ïß“A†* ®VX*Å´Ì~Ri÷*„½Míãÿ*ŒûdÑ!>Èß+97B]FªŠ8ŽÿüaQ€ÈÓ¶q³wEƉéååÁ[”»+JòáUšß\ÂåD1eû~VáOe“OO``ŒÐú±¥¼ú÷¤hæ믱—J +ˆ¬2rFÅ©Š¸êR>,?4ÂfYÂ:ypìÒôµ&›ÖÙ®jëí=xä­‹5‰‚•IÉRƒqÜÕêX(188(“É€²„µœÞ°¡ÕÞÛduzši¦uxèìxWCjr<|.XáÓòn<>¤œúDú¤Ègྴ¬UbüŸc…hkùx&¨Ãs5‘*¸Jò;Ãt°ƒþ>AØ©Å\ö> ?oiΛêRRYH<ãÛ—Äú©g• ¤9«ƒÃ°p6›ÝÖÖæjŸ#ââ)Ê¢:„PÝûͦ‹€Þï2=RHŸ$<’lmmuõjcÎbll,%%˜ d±«}kƸß<¥¹ouõ‹vrî@í'¼Œ™ïLãþIë–’²Ð­Zæ™ñIˤ:3 ú¼î(0>`±êGLzÞ"æßMܱã)[Fá66›uéÒÅyfÜ`0(RäÀ83ˆ½ÿë†1ŒoZ¬½£ÛbuÏ5׆»7Æ-ŒÏvëÖÿv#ì9Ÿäëtºyf|ÜhZNð¿Ó]‡®úºÑ¬[<É_GúÿîNþ€q‹þZR²'IR¯×Ï3ã/iMBUuÑÍa³³Îð4ݶ#t¡Dä ÷`k:îêu, 6™SÓV#T‹–bÍm6-= Ùêê;Š/#–töõ½Xååå´-@dL`F)/½„§7÷ +ŒØȧŸ²£.#•ùküƒ–úúyÃ_ৢ`Ã':|ž±ƒJ˜ŒaAþK=Ý+ry`N§¼e©ÒfVü¸u}„Sàg«WþËðtSÉ}§ðÐ9[WƒM[O=ŸÎz{÷Qll¿Ù^M„±×mÞž[y,ÆìãÔ™ó †ï{ +ÜߌOAÖÙx¥núj#6¶Ýî¨Mˆâ‚–3½EéáÙ;ù©E„<ÔȤ9»IÙ>^[ɠѽü¥ÜR)¦eö ¥ / HüEŠiŸ,:Äù{%çF¨KIðL©çsÒŠ‰l ^æååÁ‹ ÊÑ6oç) Tªˆ šß\ÂåüŠé(Û÷³yø° +*t"uñƒ$Aó\£Ôýã7ÑÌe^¬¥¢NUw3Š‹ÈÜAÂòC#0˪ÖɃ{`—¦¯5Ù´uN¶T[oïiÄ#n]¬I¬LJ–Œã®VÇB‰ÁÁA™L”%¬åôž8€ ­öÞ&ç… m˜Ö5ÂÑgÒÖ«’㨦wãÜŸâ@'SŸH‰œ‚µJ„ÿ½ÉT)Êÿu0bx%ªÃs4‘*ZÒ³¼2wðR‹¹ì7|~ÞÒœÕt¯ôrTÌ¢.åÃŒì0Jêlvp[[›«i|Žˆ‹‡Ì£:„PÝûͦ‹€Þï2=RHŸ$ÿg¿jcšÊÒð)Ò°,”U(´®QˆôöÞ2êùg¥:ö‹˜‘SN2Ë“þ0›1Ž;$`ˇ1¢ÌÀh (PÐd\>D@®mù°-mÏž{‰›]7¡šHß<¹!áÂ9ïyž÷žçÁ B«ÕzºomZF‰D‚˜ åpë;î¬B8µj3,Ò‘‡†ÇÃ×Ç”"ÇŒ«sN8e];S^¡}øë63nµXóU*ÄxHhØ÷ÍmˆñËÚ‰®—î­qeÎglv¥ºŒËå>~4°ÍŒ“$)“Hãì0îw-F§ßØÝc¤—îMÆ8¹üÛ’…„°gÔò—tÊ#½^¿ÍŒ/™ÌÉ ‰Q˜à~¹ê ÓªÞ;Ú[êŠ$—Ÿ/[_AØk?~21N„Á`ØfÆ?¼r4šj¡Ía—+gØM›Ã~n +¨ñàvGçmO÷±ƒjÁlNÍÎ9@:Š5†;–¡‹A¹úAP–eON¾ßªªªèXˆøPežWŽËÕ˜ûiîÀQ鯘ÂùcÐ?i1/¿’©cÖóšKÈKxÊóxî9ç ýûûúTáðG‰óÆç–!f7J²«ß­(Ï6ȇ.'²| +©leò>œï±´Úu-Ôsc ·8FÛ ©º¿ÛÏ=v\87¿°¹òð–ûuÿç^+è+µ NuÁÙnÇhëš;$5;Ÿ¶CSßËÁ¦”#|$¤Ýl¿Œ¼¨‚‹‚ìRLz©‘‡]†^ŠM+ˆö ðý‚{]-‚uRKˆ–ÙJÒ2C¿Ÿ$æoÅqá ˜y²(ZUI ¿+uz¡Mlræ~&sV¨‰E +——`²bLQÊWžçç–óyGÙëc{µ‡ +x=˺¡Ôß‚ÚÉZm&ÒüÓ¿ˆc09þjÞijîÞ.Lu@íGF³Ð*Ã9÷ê® Sr>ë´ëš]©®Åñ¤.>|1Ð{ -=‹4-yZ;¥fggÅb1¢,å0oìî Hjc®A×êÔ·£OŸY×¢HO¤Lo«çË$X/³]Ër%r +kèCúÃ)SuFñ§{‹™z:ºH󉂖´›×òŽÄÏÝÈÚã—Uxˆºæ·òZŸ>´J~…@\ÃÝOIËÝÛ××çiGÍÌÌ$&%¡à&Ohï王@Þï1ý¦þ’à¡Õj=Ý·6­ŒF£D"Ăr¸õwV!œZµéÈCÃãáëcJ‘cÆÕ9'œ²®)¯Œ Ð>üu›·Z¬ù*b<$4ìûæ6ÄøŒemŒD ×K÷ÖÀ¸2ç€36»R]Æår?ØfÆI’”I¤ˆqvçzc‹Âé76zºÍž?œ ã¯Wž/YI{F ÉŸ¤<’@ ×ë·™ñ%“99!1 +<ÐO W=aZÕ{G{k€>éÏ—­¯ ì5Œ?™'Â`0l3ã^9MµŒÐæ°Ë•3ì¦Ía?·H Ôxp»£ó¶§ûØAµ`6§fç  ÅÃKÐÅ \ý (ˈ2‡''ßoUUUt,D|¨²Ï+ÇåjÌý4÷aÀT(ýÇ„püƒöøI‹yªJB®Žqÿ?ä•ósÏáD<íßßקº‡?Jœ7>·Ôé0»Q’¥!´ÕŠ`ƒ|èr"Ë—¡ÊV&ïÃùûH«]×B=7Æp‹c´ šú§ûë±ýÜcÇ…só ›+o¹_Ý?÷²‚þô×9œê‚/º£ÿ\s‡Ä¡fçÓvhê{9Ø”r„„´›í—‘UpQ]ŠIÏÆ Y"d—a…—bÓ +¢}|¿ ÂÈj¬“XjD´Ì6Pš=Ñ;–j!zßü­8.<3Ó‹¢ó+EÉ;zŽ‘cÙeüMlRæ>&sV¨‰E +——`Ò³ë´ëš]©®Åñ¤.>|1Ð{ -=‹4-yZ;¥fggÅb1¢,å0oìî Hjc®A×êÔ·Ãù_–FZ³…I”é`õ|™ëe¶kY®DNa­6þpÊTQüé^Àb¦žŽ.Ò|¢@Zrû*Q^ÀÑ”q÷²öøeB‚D¸¥´M7uÝäWЊœ?¢Æ¹Ü½}}}ž¦ñwÔÌÌLbEÙnð„ö~î¸äýÓo +é/ NZ­ÖÓÝxkÓÊh4J$Äl(‡[ßqg©U›aqÙ°¸´'¯ÿ9F”"ÇMoæÑ![lgÎUFFDhµ¶™q«Åš¯R!ÆCBþonCŒÏXìãä’ÁÓõQbܸ2ï€36{žºŒËå>~4°ÍŒ“$)“Hãì0Îw­F§-k4×ÞéÞl®Éåß–¬‹öŒ’?;Iy$B ×ë·™ñ%“99!1 +<ÐO W=aZÕ{¿ä[„×+ÿZ±½‚°×0ž–ž'Â`0l3ã^9MµŒÐæ°Ë•3ì¦Ía?·H Ôxp»£ó¶§ûØAµ`6§fç  ÅÃKÐÅ \ý (ˈ2‡''ßoUUUt,D|¨²Ï+Çåê­cÿL…Ò_qLÇ?hŸ´˜§ª$äê7ÿ\^ÂSžÇsÏáx<íÿ¾>ßáð')üÇ)K³%YB[­6ȇ.'²| +©leò>œï±´Úu-Ôsc ·8FÛ ©º¿ÛÏ=v\87¿°¹òð–ûÕýK/+(è+µ NuÁ÷Ý%q¨Ùù´šú^6¥á#!ífûeäE\d—bÒ³1H–ÙeXá¥Ø´‚hŸß3D(Y#‚uRKˆ–ÙJ®ÿ`©É€uó5q\x f¦FçWŠ’ÿѳ)¿Ë.Å 4±I™û˜Ì]ø±°BMl^9¡(åËKÐfxŠRLyžŸ[Îçe¯íÕ6*àõ,« ©‹ÞnRhû»Þ”é¿>Àäøgªy§+‰ÿ.Lu@íGF³Ð*Ã9÷ê® Sr>ë´ëš]©®Åñ¤.>|1Ð{ -=‹4-yZ;¥fggÅb1¢,å0oìî Hjck.A×êü7ûÕÔdz…ß0"ƒÜ…dK§Š@’/(Ý]í(¹àn:n¸TD¶it¶³3´3íïv*u׺µSwÕuQpÛY¼—I…„$²;‚Œ«;¹@BÞžïCÇ*–D…ÄQÎœù’ÞpÎyŸçœï9ºv|ÿ²½¿M.È"EoBÔ•ßeÂlœú,ÏÉI÷ìâl³5 •ïÄ£¨ðœíIª5À%å\3<_ùhÚ×ñä5\v"=*:"¯,¹d/H¸Ðï H¢”Öó·–§°éP8›¯ÕjC ã3Øèèhf Y:B' ´_ *´_uR@MAh4šPW³hóf‹E"‘²LûØÙ;1qNéz£}ÆC¿y½NÞ$uŸ·l.Ð#õ?IHÐhº‚Œø¤{²´¤g0㎜>ã‚áàö’X‡úŠ^U¿eqÞ÷áÑ)oqe ›Íº~ýZ7™LRI> Ç:üu›ã;n÷bwÏ7ÖfÇmÇ” ã+7õÙ›sIDðu:]·[m22Wqø]ºïAUouê'ù89ÕÍ·#ÆWõ·6å +q‚ ôz}qS¨T „ö#ÔO‰ÃNÊð"%»:…P¢Aá1ŒØ³çB]Çkdc6[Ž\‘ŒP B}$j´@$=x'Tõ½eÀ.#ß~¾¨µë™Å{‰ÂZžÔß67Î)ÝKÈ”)1¬ÈåÑ´¤žU¦øsY%·h¯p7‡ÈˆòF. k¬ ðQ©ïÈ6—ZàP Ýÿg“¥ö\g|xˆðW²ž?¬‹ +£É¥RÇð|¿ÍÛ×J>çö­Óg°åÛ‘îcÜDö{÷ÆÆç—‹æß|>öÁç…ËWéQQíÚæ»sß½äíoõööâw§}ƒíتý±·%; ðVl„°hUÙ‡|y57ÿŠiÊTEujùoÒ6•­£‡ïä3ÍÍBü¥Ô­9I.‰(¦=Õ…NŠž&>&µ|–÷^<ÆßR‘´½Ž/«~ŒÏùÊhy §L•–%N _F¬‹+W­)¬% +ª8²*8ZPÍ)®ã)vsRÓ™* ÑþRÆÁ'eøo[ÝBçb ŸF{¡C-p’äxŠóƒÚônì²¥ìe¢J+›ICÉ…®$K®â”Ôñ ü·“Þ„@+W°ÎýnÉ7ÔáïVÉk'ûÂØu÷Úñœ´•·ˆ[¨Yò*ÙmttT$dÙk9†o>Ç&Í´¡Ããwšõµùtíøþe{›\IŠÞúÕ3'žCy®}g£à©³ôóEžbüO‰¥Q°s- ÑóK“ÊUiiç@ly —HŠŽÈ+O&_ Uœ…~AzbåU¬†ÐP8›¯ÕjCˆæ³ ž™•™§#t¡Jû¢"@ûõP'”à„F£ u5‹6of1›ó%ù€,“Å>Þþ/Æ#Î)ØwôF›ž¦YnžxŸܕžå¯óë϶Ó1¸7ƒqBg²ƒß²:Ç©K®øe]B +mWWw»Ý¥¥¥€x43îï§ÚÜ0ÜÞA£]g´‘y.ä-…‚ fòèßI܇¬.q×TÑ®J6‹ÕsýZ7™LÒ|²ÇLÖᓧlâz ¤Ñ:“ä#_HD^€^0ÖS†Éà 4˜ÃNãK}Y¿ØwžÆOÓétAFÜn³mÈÈ\Éáwé†ÿ`uŽCk?êî™IþÒBðòŒn?™ˆ;‡Ý#Æ—omÌâAèõú #þâ¦P©íG¨Ÿ‡þ”áEJv#t +¡Ø2ŠaÄží8ê:^#³ÙräŠd„Zê#Q£"éÁ;i¤ªïE(v‘øÆððó%ÐÐÐ@­ˆXÏ,ÞKÖòÈI¹°ëØC'72™2%†¹<:‚–Ô²Ê@IY%·h¯p7‡XÏBˆ¶lIXc!õyß­Îu¨…nr“Ìr!,¹¤«…“jáôA1>)íþý;ô0š<_ê>ï]ñö·yûZÉçÜ~£uúælùv¤û÷§ñë6 +îÏ/=-óù¨Î‹——½Aÿíέ¾Ñóøî¥é›âiÿ ~wÚ7ØŽ­Ú{[²Ó¹ÐoÅF‹V•}È—Wsó? ˜¦LUT§Vü:mSYRØKvðcMDø˜ÔÝ$œ!Ò ¯f3ÍE1 žÞf!>.3Ì{—MGŒð-IÛëø²êÇøœ¯L×pÊTiYâÄð¥aĺ¸rÕšÂZ¢ Š#«‚©Õœâ:žb7'5=R…‘ýç²T|R†¿ïj„d„TÂYÉ@&B‡Zà Rò~*Æ_ üqãÏ‘áñ‘¢ÊÔíõüi(¹Ð•dÉUœ’:”ÿvÒ›hå +Öù£ŸÀ-ù†:üÝj+˜8ƒÇÿs÷Úñœ´•9›Eãfkˆ9òÚØÈȈ@ Ȳ×r ß|ŽMšiC‡Çï4ëkóéÚñý+ö¾6En&üœŸ@¿úq>Yà9´Õ¹HžëR‹žJr’ÿûD舣Ó_åi,D_’]šTñ«4Š´Îs ¶¼†ËN¤GEGä•'“¯†*ÎB¿ƒ =ˆ±ò*VCh(œÍŽ×jµ¡†ñltt43+ 2OGèB”ö DE€öë¡N +(À#FêjmÞÌb±H$@–ÉbyæÜ$ çÔà¸Mg´`Õ%WÈÇ}ö25÷¿?ŸG<Ö“K\3™nÒ>h¶ëLCV— ãÛîí•»Vh»º‚Œ¸{Ò]ZZ +ˆGÇ2·´ºa8¸=ã:£Mg²=™ùBL25“ýÁíAÛqPü·“ò»Ø,vϵëAFÜd2Ió¥€8ƒwèÄ×vq/ä=Oƒ‘ÊÓhŸ¸_Z€æŽå/œaöl!/“tƒÙ1âòÚ0¾ÐÛŸµi3©‘ø|NdÄí6Û†ŒŒŸq‰.Ý ã¬ÎÁ1«ºÛ8Aúìz_2B8ºçÎä ÐÉN7;îLz_¼©ËÙœ ˆa0‚Œø‹›B¥b ´¡~JvúS†)qØÐ)„rÈ-Å0bÏvœ u¯‘Ùl9rE2B-õ‘¨Ñ‘ôà4RÕ÷"”»ŒH|cxøùhhh ÖD¬gï% +kyäƤ\Øuì¡“™L™Ê\AKê Ye ‹¤¬’[¼‡(ªåë〼˖„5í ð‰ü…ÄÓ,œT‹ÝÍ¢IøÒ$rÿO6‰'›ÅSÍÂ)µØÓ$‡%¸UÑõQzäÙ¯ö ¦Î,þ «€È;PKw%o v•·µ +$@C$ÁÄî¬!°¨eœÙ?Ëî_ýÓÎÎÎø”îv«¶ÚòÁHk·Q AQK0[E á‘@Hr¿=÷"Zt—„òÚ­œ9sçæ»ßÍ9çûýιç $JO7jqÿUkgU]M^gÖŽjÛísxèz_ëiÆ[[õ?™_z,‹ãrþRójw2žUׄüÆÚ VÙ±½ŠÐÔá!Õ£¶Š¸&$ÂZ?·$q¨l?G”Ë졘¦ gæÒå¸ÛdV¬vý='ÀP–Š¿YŽñ&%™$€Tã/3-™b`²õP2QÊš ámö_íäë¶CÌÏPNã³@) ÊcÈŠ¸1¼וÎì-ò¢MYù°“!TÂzF.]RÀÌÊg†Gúƒ«ÎýUÆÄ•™ø³4Ëᤠ0w˜ôç%OÆçÉ\ÂÛ'å)ðJÛŸâ¸^«~ìÎÏ¡ƒ3Ï|ØÀ¬$CV2¤…,]˜ZØtò œq¯Þª¶wªêBS‹[úZ¿ˆb†ÄmOì:¸Ôìø… A“7з$$$dño3î\þë[lwë-v«@Ö]‡û¿é¬%FÃëÜ7Ö|ÿQ,®Ì²•§™%Sü!+êË$ò†ó‰)ølÆãOvdÑý§K\vèî¹JŠÕŽÕsI!K”Ǥ…xxz»ñåÉOƒ’±Ðß p¬€-þî `§Ñ‚T*ÕÒ¢9+ÑétÑ11àyBgê¢z?GºèýnQ;©€Åf·´´,u4Ë2ob0 ëG >yŽìê›­0ìÜ5{ ¦ž!SÏ qf…?Õý4ù©Ý?Yg|}vžÌòÏgµùžÁôbÜFaå¾aìžaL;>a¸wÄ$}L»öý?q³ÙœMÎqþŸVTÃ'á NÂMºýÌóÁ)Ïç¯ÿ'2Ì%LX2=Wí˜eãFÇR¥²€ÿ7Zq½^ŸNå¸o@àñ/¿2ââî‰ œòÐÑs˜#^KЬh98‹0Ÿ•J8CòM÷GÍOlxãË7۶Ē-‡ÃÑh4‹ŒøÈðplTT(‹{ýÎ}+ÆŒæ;ú‘ÃTUŸtÞ°”92ŸdÐÛùó¹’á¿(Y*)ÄlJzc[çÖ„í€8›Íîîî^dÄç.™EE¾E¨“jíu†ÍTsØŠP%Ìȉü øú¯oXê8^#y2</Ê܈PBj5'GZzÐF'²«oC( +f™d^‡Vûó(..¦ÆÄÞê/ÙËÎÊg‘“baDZ)%'2¡"Ü'pÕo70*ÝÇæ8:H +s˜’¶8ŸÉÞþ{¸8—æpp½W‹py +.åãÒd¢$™86]a¥$ —$ãR.ãá3BÜ,½òGîj„²„Bcoî¿jí¬±ª«ÉëÌÚQm»}µö^û<üMÿø$Á€Þ0¿ôXÇ¥öb³»§×>ñ‹® ?«-UöAl¯"4uxHõ¨­".‚ DZëç–$•íçˆr™‚=ÓôÌ\ºüÀ¦xYè +÷ˆ 9•Žë%¸<—ðI¦•ðÐéLàðtrÃçܸkàhJ”ïjg×÷äaÙ{9¹Óø,P„C +ˆò²"n /Äu¥3[^´IœÏÎP2 / +:¼".`çé~àª+B%ppƒ%ÄÇùø8Eûc¯pþƒ–ðpi +¹çK!¾$½ùç8–§›gˆ{ª’.-d Ÿû0™\J,Bøë¼ÀÐúàÀ¦“ᔈ{õVõŒ§ª&•ÐÔâáë÷U§"Âv$ .çÅ"IW—&*: ‹{›~çr9TÙz,v«@Ö]¥oD]-ÚI¾¾9ÄëÆÇÛðE)>- Ke)ÅŸW¨EòŠ,¤)ä¶éÿìLýZã¿+Lþ!W¨|Á(»*)d‰ò˜´Oo7¾|#ùiP2úî°Åß½LCà4ZJ¥Zjg!:.:&<@è B]TïçH½ß-jg"Õ°Øì–––¥ŽfYæMßOKdýƒ×½pVF-øá8Ñ;fùÁ8ñ²ŽN×Ùn]H£«óíɃQ3èä½Ödí³õY°ž:ö‡I"qp­åÚµEF|||\"‘ˆÓ‚NÕÕà +Lµ: Ñg¶iǬ½FËsççÿˆ^2<0Nôš, Í¤Ò uìºÑñ¤,i Àë­‹Œ¸^¯¼/Äý‚‚ÿQY +FðÇŠû̉¸i +ñ…Fä ù´e$ÓΰoÜöp?†ü¢Î¼ùf{dt,œ9‡Ãéîî^dć †Ø¨èðÈÍj­~>%pßÖšm½cÖÿìrévØÖƒÉ45Y w f>"ðÄ$â]¿MÄ™L¦F£YdÄç.™EE¾E¨“jíu†ÍTsØŠP%BñÈ ÷ñõ;_ß°Ôq¼Fòdx8^”¹¡ +„Ô$jNŽ´ô NdW߆PÌ2ɼ­öç9P\\Lˆ½Õ_²—•Ï"'&ÅÂŽcSJNdBE¸Oàª5Þn`Tº-ÌqtLW0$,I“µ%üwwq.Ëáà Ù¸VŒÿ–ŠO¤à2>.ãQ×—”Z<ž‚ËSp…³ëBÓ!q†ÐØÛ„û¯Z;k¬êjò:³vTÛnŸÃí¾ûlÃ~qIé†áÑù¥Ç²8.u—Vy¬Ù+~Ïú¯+¸ÿ;â6`äˆíU„¦©µUÄE0HkýÜ’Ä¡²ýQ.S°‡dšPAÏÌ¥ËpäaÎî.‘Áã_ñÅlü÷4\–Bé8Ÿ¼y•iðÖŠ§ÓñùÀa~´»³ÏÊwåaÒ½ìŒÜi|(Â!Dy Y7†âºÒ™½%@^´IœÏÎP2 /À™ %/Îg†G@¥G+‘Séï8ø¢WfâÀù4Òb)—N§})¥ð6”§á¯Eøò®Å2Ü]½ÞòHË%óè…ÔPɲÀâº0/0´>8°éäA8%â^½U]5ÓyªÉܱu×âÑ›w[Nr·=ñ©ax©ÙñºH{‡zóæw²˜MáݗʱAeëi°Ø­fꢻ÷;¢®ÉLŒ×ßyÓ«ýãwq“ ŸÍ˜ª¥Ï‹çO•â?l8#Ri?Ù™âÖºl“…É÷qEÏeW%…,Q“âáéíÆ—o$? JÆBƒÀ=°¶ø»7€iœF R©TK ã,D§ÓEÇE t¡.ª÷s¤‹€Þïµ3‘jXÿf¿Zƒš¼Òð R)^¹„$ «"—äã!‚(¨!ù$!á¢\DépQS­;ÛÁÙÙ»?:þsÝÖ*EÝêpIB.Ü1J Ë +RwÚ™]**‚:êÖ®…äÛ÷û¢Eö‡P@2Œœy&ó%s¾œ÷<Ïóžó¾f6›í½›å±`ãÑ£G‰”¥{z}mh"¨Æöž•¸7AŒüLüð_+ô>Ðó.c¦`{2w­ÄŠöáÇÏvàÉ^ž,sW×"+þüùs¥B Š»3YÕZ=üò'ˆ»“6ŧ‚·;Kw^XïN÷-Ä3Šö?ù1^šÂððèéþû"+>>>.Á%6ÅÏÕÔÃ/?SŠPŠCœvçjiã…õd÷qÏBŒÄ$Åy“¹ Î1 ZdÅ?~#ø…„Ýüá.|…3玅Œðõ_Æ”uptÌ8Xp¡Áx®Vó—‹—ÏÖhªµÆ‹º¦ ý2æCsµ¾ñœZwúrÝ™+u_5÷çO\èŒ6t/z6=|ø0A$" ƒŽ©¹«4º³5ê“/Q£©Òè«u¯ÃþÔ-Y{_ªN_©ÅÏktÇÿô‰+Ó‹Å`ô¼º8¬Vëâ(>::‡(Éåû²Î©µ_ÔjN^ºòy­æ¼ÖP=°ýI[‚€Ôn‚ì®ÒÎÖiO“Zë«´ºœ’ÃÎkɪØÏϯ··wq„þeŒo‰Yáä|äã—ô§ÿVsêë+çÔ Õ ÆåÔž^Ï‘¯ _ÖiÏ\©?¯ÕŸW7ä–^µŽTÜÛÛ{ñŸÿPªTÐ.žBh*[gª ;¨â°¡:„b¡ËDÈÍ®7í½whŒ=}«Pú#T‹Ð©m6%= •FVõý  —‰oÏ-€ÊÊJª-@X”Gz)–ZÄ#;¦¼·ÛŽ½Ù‘ÉóØnLçu®N°hÆaLžÏžåëò|nz1–VÌåE1(óÒØÌÕû™éab=1È#)˜! xHƒ_CÂ31®{ZkËÛÅ^?šŸùâN1jšÔL¨ÉÏ7c@mÒÏzG¾¹ä³þa§Pœ›_˜(Sˆe¸TK•âäq <™„íyó„ø”*婸 HNÙ›•“ž½Ÿ¾ÁLp¢(Ýrÿ*1Úi!ªŸYÄõÖouÄ“îûýµÛC¹ð.t§„4ŸÌ#ŠC\Ù—fSd•IpÖÐ]iÉ\zf çÑñ@:8J }N{ÁLø1)ˆ.æy€ßò^"_×÷iÈuó<—QŠ¥Ló³4 ) (ädª‚¢Å›Þ[é€ñYªàÔ"˜É‘À„y;½˜ IJ·¥msD’ÂñÜð@ðj¦2 ÃÌf³½w³<lŒŽŽ&$$ØNƒ-¾lQJZ¼$)fמ"<OÜ-IÞµŒ…AR<.‰&±B¹‚„³ýýûûúYñ±±±Ä¤$›â›||…²”xB`qb Ä9vçmé" øŒŠvˆð=ÒNpîçãs£¿oñ‹Å6Å7nöÞ#•ÇI’cv ©OÚ…ÿ¢ò²ÜsZ'Ÿ;„â]I²…Ò—‡Ùçr¹}}‹¤¸Õjµ=ŒÛßÀK+wñí{Dq8dw¢-¯ál·?iKSÉçùN‘8V(Þ Š§(ýx<›âl6»··wq_À¡T©Ü:…Ð U¶ÎTvPÅaBuÅ"lÜÍ®7í½whŒ=}«Pú#T‹Ð©m6%= •FVõýAȉoÏ-€ÊÊÿ±_­AM¥gø/ $`)Œ‹HŽ@D dÅQ$m !W’“.á–qÖziw¦ÝQwYEgtÔþi·#¢ †ËrÙ^ä’B r Þ¶;»Œ\f­—iQ 9}O­¸….ã.ߢ³öÕZ-5Äõ»a©±Ý®Å‡šžÝúì¿+”&²Äq‘’ø­âÝ‘©ñp)eo•'D)£å LÄÍ2æҘȄܦîÞ"ŽcÀU +ÙfoÄmÛŸ–ÜYq¿ßd»ÿ×I 4ƒ€žjÛzü±i¸[»A#¬õvÝ# ’læeÑ’Ó§ÄÆË‘í OL§º¯sõwwÉfù«wþT´Õ—Ï €Ò¦u5Siá> ?xË Ë¢üö³7HÂÈnNNžo')‚ å«f虣¤‚xÙ¡RM+1ÀÙÅ "cšpAš¢ +…ÉeWEÁ rhTÆ:‡m™k4»Ócü°ƒÂ%‚!sþW0„옖ÁúÉö†„ u+$p³'ÿ=º0‡ößæR…Šs霌ÿkˆ"d=¥éÒ È’íËF«¥z6_TÙîÔáC-ã·êJ¿/M|W^Ø&ߊí‰ÄØ[e{¢ L…ÃK­¨7°™0‰LH&ˆ?u7±ÛHâ·¤%Ũ…ñùÒŸg “ÎÉ}h¼ŒuÝv¯~[YíäÝz|TÿÔRËÆ×¼åÌðÑÄÈ™~|»r¸ß•ðŠÏ +˜ëßgoH¡ù¸“H^¿ÈIÍESþŸã@”KçeÓ|Ü××Ïd2½ÖC~aÇÐÐP ‹‘3¤AnÛk¿¹TPûuÙg²í; E;::–úk–Çkãããååå¹¹¹šBMa^ž2M¡À¤2©D*§Š„„É2æ P"bb‘\’š†a™iiér™B.»pá£G›ñgÏ*¯Uæçæi + òs3Ò +¦J1IªD,’_ÁR§î †Kã + [ãà­3gÏ~óðá"3þüù󪪪BÀxž2#-]†É1 0.9(NcÉ“öÆAèp +d‹IºS)3 Ïš‚BµZ}îܹáááEf|bbB«Õf«T2i*Ä£Iå &vÐm‡`™îïM7DZÆÓäXfæãyyygÎœyðàÁ"3>ÿÁ×h ]< }öâðúl•a‹½84#H‚Ä"$(½Öy74~¾Ôßñ#cOžÄòøÁ¢E Ái.%=à:‰¨ê»$z™„ÄÞÁÁï@QQ‘½-@P¦(äЉŽI¹°íØ4ˆŽŒ«¤zQÜV{ºÂ¢â|”›IãϹ™4‘©é(“ ñ»® ý*)èfñNÓÑ͇¢-‡c­‡¢¿…˜–CðœsŒî°”ÄI ¬D4‰à__5ã#:k_­ÕRC\gƒ­¯ÿ{ãäu_ëJÛ*Jš/o¾xLWöQ{y±©¢Ø\y²ëÚ©níéîkº®MÝ,c^ÐB&O™+K:Ê?i¿Rl(û¨µô(¤½¥ôcKÝ…§æJün£í^ݤevúôTÛîÔãMÃÝÚí i­·ëa´`3/‹Æɘ/;D¶/›Ý–ÚÉ»õø¨îi_ ŒSÉošÞ{b—áƒw[ÀžÉšÞKg쨄ÎG7`>Øn)Ù}QìáâæëÎV„H`oWÍu3ˆré¼lšo€Ç*O×$,˜8T¡ }é`X+I¶ –†÷õõ3™L¯÷”_Ð144ÃbAä ©@ÛöÚo.UÔ~]ö™l{@GÑŽŽŽ¥þšåñÚ†Ífƒ¾µ§§§·§÷¦Ùܦ×0Ú ¸¶éõíöûeÌú©H©Á 7èuFcûÀà Õj]dÆ'm“Ã##½0€ñÎz½Î ÓAxÝmK¥€q"Ÿ`(=xÊ o5ýý÷'^¼XdÆÁ㣣£‹lÞÙÙ鈧ݠºÛì6YŸË˜ã„`ÿÔwÞ¸þ‚„ Œ/2ã0ÆÆÆÌæNƒ®„g0t·ÚìXê,ý0@xGo7¸ž`¼Mo6߀SFÿ’0>ÏÁ×h ]< }öâðúl•a‹½84#H‚Ä"$(½Öy74~¾Ôßñ#cOžÄòøÁ¢E Ái.%=à:‰¨ê»$z™„ÄÞÁÁï@QQ‘½-@P¦(äЉŽI¹°íØ4ˆŽŒ«¤zQÜV{ºÂ¢â|”›9×^’›I©Q‘šFòøW9¯¸ø^®Ãð¿Iðr.~9¿ÌÁ/qðÒ½3aR¶—˜p%oáæ4ãስÂãrÿ9Єè¬}µVK q /úª­–*Û|X‡?6áLø7F|¬kÃGÛñÑ6ø7âÕ°Ñ×e¼èðQ{>G D’ÇŒøC#þ"ÿÛðþ¿Lw½Õs¡@OµíN=üv¸[»A!­õvÝ# ’læeÑ8Sbãg…`ûÂb%A+Üœ4ÑþµÜ À¯¦”Òö¾ª4xϯp¥UóñiOþ´7ÖÛƒ´Öy—t#(?%k†ž9J*X€—*Õ„±œ]œÐ(2¦ ä )*WÊQ†pUT¼ ‡Âð†P]H¤?ªÂq†ÿYŒ_ùæ" —ì€W øòd¼AˆwÈûŽî _õ–{€Ç¿Ù¯Ú ¦²3|hD¾„ Ô2]ùHrï ÛLaíX ®ù„D“ìì3ÈÇdi´ÓÌì´k»³‚‹Š³­³ËºËvpÅ…qÕu’µD:Ewé¤ë¢­ŠƒÐ5¹§ï½AW·~\0ll¹Ï.g{”¾ÐI}„¿„ºø ßü ÿÓƒ¯ÊÖŧLîBåÀÅyfîô¾:Ãœ'sáœÅ×ïÊá¦_ý„ëåx|ÝÁ±Z‰Ïڿܧyé…d”]dÍÚÞ¨0Ìç90בÆB’Ÿ,ÔØr™§Á)_ì74«ÀZ{, —HÒ½^ox_ùE…ßïߨTBäùµ#4Êz?..¼ß;³”5$Ey<žHï†G@Óôý‘GÁ§`©Ï8<ž+˜\.B-°æpàiÎð$kÏ!t¡b$s˜"÷ö‹ô>–®MMM¹u äc²&àbéÆÕ#T½ŒJ}abba¸Ýn¶-@TAª¹žª¨%™ŽÉ±¸íØ=2™Þ!MI‹ML¢–J_%åø¹¾Š0ï¤*wä†Tˆ?.&ºeÅô§ƒË­š`«&p¨>@ø…[åt«†éyO˜?ùE^B&nú‹üÕ©ÀHwÀ×ÅŒO¥Æ®àÅzü8ýù úJ?¾ <ÿbàå~æ÷ÐßÌ¿0öó|FÒãǘSýÛýÃBZ%–UfYÆjB»cNl¦j™ýÕu/nÏŽZ]“Ÿ>õ¶d¦ß*gµ¤ 1øm¥ÁȈˆmÅýÛ¯ïÓˆW +R„›­Ù–zÊPýžµ)”€±Fnuå)ՙ˖GQVÛ\ë*j)ƒ“Ð;åZ‡Lwµ„4_ ¡Æ Á›v÷Vâvݺ%<!iX‘ÃÀò¹HÂXŽkñqËÐkŊıkâ¶TÉ-uÔ\LíË™ârÊ,u$lMv,´6#m°m7œ=ÇÛùÄ#í +Ž°µÓF»ññ1}åc|ù¾ ‰ eð8û_ÏP¬þé{%€Ù{†Ý9pÁ]4Þía/¨£\î±àXž<55Òe,UBÆ×?ÁûÛqŸ…nÓ1rjU3ú™S”:¸ÿžÈ[Ùñ †nÛ +:üûë%[^X…cŠ­Y¶Æ!Y¨±å2OƒsŸ/Œ yXÖÒØs`iظD’îõzÃûÊ/*ü~ÿF%“²|„Úe½ÞoˆYÊ’¢<O¤wÃ#  iúþÈ#‚àS°¤@?/bà±(x>Æã &—K„P B#¬9xš3<ÉšÃsA¨ À¦ˆÄ½}Ç"½%„kSSÅFS.Bù˜¬ ¸Xzà€€qõÃB/£R_˜˜XXn·›m Uj®§*jI¦cr,n;¢Þ!·@÷çŠÒb“…°¨¥ÒWI¹~½äN¦ +Ò þÑ‚=6ÖáC[ïì)ÞSz§©ì œn*›y£4¸_ƒÿ¬;õó®@¨B§›žÄ“§#Ý_3ræ]_×#àn>î¨ç|>Ycx¾“¾Ôƒoy¯wå ¤UbaYe–µQa¬&´;BB•™ªe¶]y›¬ÙQq1/S©7ö©ñ{º™æe¦z¬Ìö”ÞTávõfÕúÔ•Qâå›í9–zÒà|HÏZ‡JÀX#·ºò”êÌeË£¨ «m®uµ”Á)×;a‚ÌPÒ¾"øy–àRóIS7=Öƒ'OÝöu›J”qEFüé_n|} t5ýÄ»îÛ@‹ +¿«ýÇï6ërRP²âmÙöW [.O‰–c®#5„$3>!Y¨±å‚&A„ßÅ3úoP”Ûs`iظD’îõzÃûÊ/*ü~ÿF%“²|„Úe½ÞoˆYÊ’¢<O¤wÖ®MMM¹u äc²&àbéÆÕ#T½ŒJ}abba¸Ýn¶-@TAª¹žª¨%™v‰C7†ŽÌ!·@÷çŠÒb“…°¨¥ÒWI¹~½äN¢²–¤ +%ltT“ÄmZ|hë,Û®Î4«žL˜ܯÆíº¿¸7ÄGG™´ºé‰AysRʹ=ï{ÏsÎû<—Í…Y‚<ñцRWiõ¿ÂgÊ«„#`kÂÜAÖX,N’‡ <ÁýŽf˜‰Ñ~˜ ²XÎ;šqÕânìKn‚¹ae¾6¯pkm‰×¯¶'RzþW#3@Ïþé7‡ò%Rì2ø0w‡†öá›9p#íÇœ­”¿§$VÙ[$Ÿè¿oiãáØzthçwÔFtdcn®¾gÑa{v\½[2y¶x²ÚgÚr—¾çKܸÖk`®_èÒ5–+P–¨ædi×@ª¤Z ÅÍ©o%lM¸¢8K’›nò”Á~ˆ6äW¹ÚÕæ†RX +W( +#‘Hj»ü¶"‹UkÙ-+Gh¡œöKFE€ö»ÇÍÔq€ Ép8¼ÓÕðàÁƒpféy^ãÕò v­ö虫Ǟ…ô¾ƒ…H"®9Yâ j¬þ¤Z ÅÍ©o%lM¸¢8K’›nò”¹ 5ø±цü*W»ÚÜP +KCá +Ea$Im—ßVÄb±j-»eå ô€Ó~ɨÐ~÷¸™:N$‡wºš`žL®ÏŒ¬G‡Ù‘>¦‡6fG™…Èã©Á#å8éóütý‰}îµ-€S§DUÙ*ÏM­»D˜)j$d?v˜ï©ånÃÛifXê†QãRH¿Ò1ýÔÂeó¡B ÊK«ó”ºÚÔVÿ+|¦¼J8¶&ÌÔhÅâ4!y¸ÀÜïh&­~ŒöÕ5à<Ž•ËÀ•}ÉC27¬Ìó +»¨Ž£·~ É_$Óõó—k½Ff€ž»P{X–™V˜að)O¶«->lk&´s¶Pþž’x'{‹äýá-m<[íü®ñ‘ÚˆŽlÌÂÕ÷,:l¯ÓÂŽkvKþù‡jæËjŸ ȳôúå¹ˉèÒ¯ö蘫Çâ!ý©ƒ…H"ªqíê² O¢•PÜœúVÂÖ„+Š³$¹é&O™ ZƒK¦ü¿mȯrµ«Í ¥°4®PF"‘ÔvùmE,«Ö²[VŽÐB8í—ŒŠíw›©ãA’ápx§«áÁƒ!<Çklö2„Š²»&HFÒCŒ XU?…Pxƒñþüüû%pîÜ9Î ²RVßF:š‰àÅ^:2g;Iû”RyFvî.‹ƒ?->%åU&÷8VßB:ND¥ "aÈC0׎o|óÛÿ†t‹¬‡ÕÿÒÉB€Ï… ìç.ÃJž¹NMŸ¯’ˆ„vʲøh‚y2¹>3²fG>>ú˜Ú˜e"§”ãpròÓuõûÜj[·4²LBÚ*ÏM­»T˜)n$e?uë™~j¹[¿ÔÅ)A§7„>Á·åžùŽŠ÷™+Š$‚<ñQO‰³M ¦¼/øìÝ [æj´Æ/ÄiBò°ÜÔ8Nã4Çv‹³0g+q¢Çä'ŽíWÀù4sÅ´ò&ª¿šIb‚~­×È\·Ìý¹¶B–)Rd|Kû6+}y¸\mjê”rOI¬²·H>Ñ‘Yø7óŸÛÏù£ññEtäùÜ(óäÏ¢#öºjØqõnÉäÙjæo–µË&îÂÔ¿äóc NÄÕãñÞ{°IÄGN–x‚ûTT2½À‹ÁLgikÂ_H$¹é&O™ Zp~;P‚í´_ k™Ê¿Î‚ +E$Ii“ß^Äb±j­2/Gh¡œöKFE€ö»ÇÍÔq7 A’ápx§«áÁƒ¥Å»vl‹#S¹ÚÕ´W%-ÈÈÎM·ø0Î ²>1™Ûx¢…pœ&ÈÊÈ?ã3a¨`¾£˜o]|»‡å|®.ásWz ÌuËô«$"¡ý¸eñÑódr}fd=:ÌŽ||ô1=´1;Ê,DO )ÇH9ùéºú}îµ-€Såeéj`ž3šZw©0Kü{µìG M?µÜà’£Óù¶ùår·æÇûÌE$õ”¸Ú€êìo608w¶&ÌÔhÅâ4!Y)oør¿ã4N{•´þ‹Y˜³•8Ñ‚«ä'ŽíWn‚ù»•¹bZy;á_Kií/Ff€ž»P{H–)–g}˜»CÃþ>—Éÿد֠¦Ò3ü…kQ‚B¸Ü[¹æœœAQ`LÎ’œ%W@¢nH¸ H¤¶uk;ŒÓé_§S ,/3Ûê^Ø]Z”…µâtmEªüA'3V¦ZØ]@Iøúžpt BÊ žgž9Â9ùÞo¾ç=ïó0%•P›±V ¾•´ VILˆ¸xßÀ÷û|\k¬?º{|÷zñÃkî}^œ¸d ðÃü™f¦]ÅŠ\ñ¼žÒ ñ‡‚‰fEÙ¶xÄ–“Mõ *‘z9ôf×R†J±ð>?2TeJegÁ²Ák!˜;’|sªðÝ°q¡0Þår­è_]x<žœÜ\¨<¡„î°Þo9.¼ß-öN9û&S”Óé\ëÝpàÀ8pXìvB-°æ°)gx•5‡7êBH†x`£Ñ—¯ô­õ>Þ ŒMLÈô†T„:r3§Æ[Ž¥öóW?„P6dZ9<:új466²±Q;bŠk$EÕ¤–Ij«Çž…2­MdUBâ/õøœjêe‚ŽùL£ù»¿Ù½=zcp\˜ÒF”N‡îƒÕç{‚fXÒÞJŠ€…â.žÄã7ðý>×ëîžÙ{½øáµoGzôy¹pâ’-áƒÇ³ñº§gTS§óò^Lä~QAG\(ø÷iùÁŒ8$3&™íRÑÒÒã ŒÐZ‰âZ±ÖFßçG†ªL©F¦A–+5†ê$ÊÒ”„†ÃÆ…Âx—˵’3~•áñxrr™#Ë@¨¡;¬÷[Ž‹ïw‹½SÎ1E9ÎµÞ 8pàÀ‡€Án Ô‚Ðkû—r†WYsx¡.„dLÊDQ‚èËWúÖzoÆ&&dzC*B¹™Sã-ÇÒûyŒ«B(² ­}µ‘?dÅî«¡Šª MYÃÿO";L©-¢Èè0þ¦%­ä°Dk]:KÂ#j¶BÈ’…U$¹#ê p˜Åø5þ}Á´C1yz‘ ;O9$ÜI=íûÚTø íÍƬ<½Zóýèþç w¤Çëîf®×=o_š½Û‹Ç]†:we ¤M‚м¢¤Òz‰¾‚P[ÒÔ¸ðÙÜ ÝUœ :;@Å®5Ö}îžÙ{½øáµ w>/N<=?x<¤õô¬jê”|ŠÑ¹bq‘× *èˆ êG§ä¦ôX$3&™íRmîE­~é@ÿêl„±–‚—ì–pþæPUiŠ±dÕgÐܪ“(K“ãß ‡ …ñ.—kE‡üêÂãñääæBåu t‡õ~Ëqàýn±wÊý€¢œNçZï†8pàÀà +À`·C\lAh„5‡ýK9ë¬9¼‰PB2&e¢(Aôå+}k½7c2½!¡N„ÜÌ©ñ–céý<ÆÕ!” Y†VŽ¾Zl,@dV ä#&±qLk#ž§æõ¨]@M¡¯ ÍG¤ˆ""¢µ¤™¶êË ­u+ËgXŸûÆJjÙÇMöô¢j’تG‚šö‹q‡¢™ùHñ¤‰žnV°T. óýÓ&z¦™Æç÷ànÃ_‘±ªµ“£_㇃ޑ¯»Ûëîa>p\ß¼}iön/w=êÜ•A‚"¡ò}Éæ©¡RÌ4+¹¢jÊ|4cGa" + °¤Ç=>»¥{ÚBO7–èEeö¤™žjVÀu¦Yá;£Â]…ÿj¡wÆnàEË÷§šíéú +øý9yëàZÆÈ»¸†‚¥·ÿ8! €GnÞß -®‘hllVR_A0š?$NN„Rï´‰‚_Æïi¢YÍÓóÐ/ÖÃù¤YÅàóù¸Ó0Ô¸K²9,D–_N˜¤3À*6Rc†*f¡=Râß ‡…·Ä \<‰Çoàû}>h5?5Ž+Kwï^/»þøö%õîpâÒþõ_å€N|ç÷ÎëʯsúEQÑOš•3ÍJtD‡öÁoß7ˆ¢?h·)é@ƒD5§p¦DsÝd}ñeÎÒPI”ÖKÔ–´haSˆÊ”j²KuåäÂIôþo3†Sž¨°J cˆ.I¾ÃH](Œw¹\+;åW''7*Ï@¨¡;¬÷[Ž‹ïw‹½SÎ1E9ÎµÞ 8pàÀ‡€Án Ô‚Ðkû—r†WYsx¡.„dˆæ0J}ùJßZïã ÂØÄ„LoHE¨!7sj¼åXz`?qõCeC–¡•Ã££¯VÀ‰'ØX€È¬ÓQ©ùhza¥X_Iê*Dºòçh鬯ÁrbžÌg}¥H_!*®%ËŽg|¼‘¢µ‘–3‹ªÅº +‚) \¤÷ßoc¨/÷“Ðû¯$÷ÕP–c[÷ÕQi™1P??$àL™÷á.=>›Û•¸žmSúZé©šmSá6%Ã3Jü¹÷ÿòS +2¡A£ùî_ã±ë¾oþèîöº{¼#×5¿éöwÏÞùþîož¿•“ˆ"¢BÅI–cÛŒuCi¨" #Lõée¿Ü¾M÷ +F‡²â¿ýTƒ¯ãs{p+#¤Ù¶Å”æ×°]…/¨ñŸKµªv ù¼¨P¹Ud9–Yt‘ºÿ +kV¦ŸHþÏÒˆêÊ›ŒµíÌÎ})*:$L!Ú¶W_ßfÁ^€_‘Ø2vîOY–ÏïAOï'=ÈݘRÙl¨ï`\U‰t¤­ZÝ.ÿR1==•™ã¶uLrÞo%.½ß™ÏƒÑèõz×z5”Z×fq7¦–6¦–4¤*´¢9½®ÝâªJ 6†àD Qá}~ÀÎŒ°Ÿ_õûøÒXoôûºçþr™ý×ЗÃçešpÇ1Òñ÷_G°¿ßÁi8 ó¥'jà€=Í}ýh;û§²©oÉ–B¸¥&©¾ƒ! +_8ðç9’slH.áNr$ÖZm»¥¨Z/UŠCåªĺ6óÛ½ 9Жå2=èÙx®ÇU4cM™rÊbå´®ÓÅ®n—©˜žžÎÊÎÆÌ€N€IÎû­ÄE ÷ã"ó9`0½^ïZ¯†ö]x<ÑÍsÓ×=;Þ5wÿû¿ñ{×Ïèc#B’(A“(R£ÆbDªX±2FH$'„òU%‚²4éA§ºÒ"«2Ë«­ÊZ‡ŠÐ¦\JUµM¹×ªØm’U[ÍÙô½T¿:A¨Ž FµkâQÞb:^LÅátBå­ 'µ.˜ŠÇDêX‘2&X+Ò&Šå‘ ŠGÍ+ƒ÷Ùõ6eyº¼’Qàt5Á?#{Ô|•E^n–bn3T¯EŠ#„† °¦T±d\¤Õñ"*Q(Y¨ÍHZyíìØÎý횟/õE¿ á‚ÿ³öáȧ}gÓc›ž-ltªk¬Êr³ OË›²ö©ãԮ¯{ ðe¨òâ%UIˆÂQ´B,"ã(xòK‚d)Åt‰!ÚKã_ÍkRM:éQ@ÅNDºF¬@ó<®¤-D’Ñ€Š&Í›v=±t¡ ’’¼^ïêvù—Šééé¬ìlÌœè˜ä¼ßJ\z¿1.2Ÿ[¸ÁøöËî©©$ ãoþà‚¿€¹ñN¨AÉÇÉI* |ʧˆ5[µTÍ\ïÝ–ëÌ,_*³³U¢ƒËGB‚!„p˜8²I`'3©Ýp5ë\ŒIÎÙ·û$@$ÃB¥\ú©_ê$}ºß¦Ÿ>ç!óãZ8Ó^267c²îðÑphÛ/Úi8t äùg3%5mtÌšìu#­ƒ9…Æ €/Ù5E"‘±)Hª_ÀßÒyÇï?XSSSµµµ•M¿«¯mºXy©²¼¾ÌTSZ\m*ª6cW¹q`b·—/⵬¸¦ÜT[YV_Su¹ñòï¯|úYcMu]¾ºR{º\«,Ó(Mª3%”båéb¼ªr)gdLê3eœª‚WW¸úó|S±îŠÉÐXš_Yh¸§=«ãô¼–תµj¥F©T+s·£R+•œZ©åÔ^}VÏ!š3Ùùꉯÿ(®<ü¶Ð¢%ì5G¼–ÏfüÿBö×3ùaDúçôÆw}×>¯7i?©;Ï5ð \¥NnD*´ª*ªö,ßhÔ7šòª†Â|>OÇåk5zN­Õ¨4j´ÙN§i”ä{N£Òqš<^s>O[Z ¯/6\.Îk(ÐW4h`´±IKMžkÒä–ãDzuý9¾±P‡s]º ÇI±Œ +^UΫ°Œ + + k(Ð])1\)Ëk,˯0êqä<ÆÀktœJ«Vq*R‰F_)¿á5j½VÏ« |y¾¡8¯±ØÐpNwQÏ•kÕ¥Ö`Ò(Ë9u¥NS“Ça µ\¡&ë—K_LüE +<ŸYñh$}㇉ׂÏ:ñɨôÇ+÷ß¾ø¼®D÷Ie_V ?G¬Åé9mÌÅLŽFÚD­RqÄTš|w>+=¯«/2\*Ò£E«ó4•<ž 5:œ>Ìåøéíä–¿©*yUAÓpVÕxNyÉt¡¡¶©¶úÓªò|M”•T—U™ŠªJ‹ðÝqxW—–TW”ÖUUÔ×Õ455~ZW[_b2]½zõçŸ:Ü·ü‘*degcx; аD³_")³ßcÚ“¢™™‚ ${5LLLLLLLLL‡ css*@'€†CÛ~ÉÐNá` SRÓFǬÉ^Ç1ÒZ0˜ShÌð’]S$雂¤ú€Sé¼Îã÷°€µ5—Ë533#Ì=šqÓö9‡}.z}(#Ä5LüP‚Ã.×#·Û#LO9î´M}suªë«‡]­ˆ½»uº§ ¯öî6{Ïv¶~jémú;Üæ‚ù†­¯}¤»e¸ëÏ#]-ظOÙI+¡«u³a¹ÕbþëŸì½_¾œí‘žÞŸŽ†}ƱÀ‹˜Ã‹ÃÒ3믋ÃO¬ßL÷~éêk›½K=Fl¶ÅÌí¶¹{ÂàÍé{è+ó­–tÚ¦¯ºÞï´á.ÚèB[¶Xo·:û¯ ý7œwÛ=ĽhfêdÙØòD-ŽÞVN4pÃÕ×á¸=ô'rÅnÎ;íóý×ÝÃ7Ë Û·m8²åVBl¿‡ç[è¹Øªd¸«uüN«kàú<Ó‹´LË•ÐbH»» +tõµÏÞk{xû‹¿›oþçû~iyL\ºŸü]câÒˆô|üÝâðSë×Ów¿rÜë˜èmÞ|`îa*âð¨Ï‰ÕÜn›í¿>×ßἃ.j¡'¨=êðnúÄîiÙ†l¶¨½[=ׄ»×k߬Cp8ÜôMä"<$8äöo`n_ð„³ÌL s®y׬Ë>=íóyùåíá¾åT@ +;ÃÛI€>€%šýI˜ýÓžÈÌ!Ù«abbbbbbbb:››S:|4ÚöK†v݃9 Àp˜’š6:fMö:Ž‘Ö‚ÁœBcÀ€—ìš"‘HØ$Õ/œHçu¿ÿ·N-ŠâQ¬è  +KoI/mÒ›yéµ ½š“^¹¤ d–°îÚ“9iÍ%­ÍJkNi™ÞBîztØø6Îõz^Ú¤“¡EKÈ3öYLj—6¼fÑc—Ǥ—NéõwÒ¿ê=Ù0»ü†N“m¶é´uçÖ7Ûœ&3›Ü¿t¾ÇÕ›m'½ÎÅ>î.c6:ÎúnÏïQ̺s[=;{î¨d6z²ük祗3Ò²5ì +!ÉÞ5ÆQá5ã.KÿrJoè)øÀSt§ÉgãÔ1GmìfŽº:ÙøìÅgþAZ·"/“ý2ú˜²²³1¼èX¢Ù/‘Ùï1íÉщÌLA’½&&&&&&&&¦C±¹9 ÀGám¿dh§áÐ 0 + ‡)©i£cÖd¯ãi-Ì)4f xÉ®)‰ôˆMARýÀ)€t^çñû0»(Š‡¾¢êÝÉ?)-H?NH?NŠ/Æ¥UÊó»WÒóñ(Ø^‰ý„×ÕÝKŠµqÿ¤ˆ“.…|–°×Æ+ãñ’kwÜkŽü0"®¢÷lâ‹ ‘˜ÄJ²2q—ˆç”í6Ûí·ÕÛ¬;y&÷$cF,ó³ˆÄfŒ»7®ùÉŠˆ[}Ðóï¯Gm":uüJŸ[£p@<?MŠ«Ä'÷#>sÈ3”ô]cxÄ%<ã"yÊ§àƒŽÚ 1³5j­¨ÙÆ·±2GÌiäÜMJþ qÅ"-J¯žHR$Ù/¤F@ +;ÃÛI€>€%šýI˜ýÓžÈÌ!Ù«abbbbbbbb:››S:|4ÚöK†v݃9 Àp˜’š6:fMö:Ž‘Ö‚ÁœBcÀ€—ìš"‘HØ$Õ/œHçu¿?ÙK9¸DäíZØÓvw‡<a¯™àÙÿc'ìÚíæµÐ_‡v±óö7nXßÖG!ìc'-dÓɾ“h ŠÜï²5‰ì´¡°/!§‘ž2Ô«‘Í;FÞæê­öNÏÇ¡­s1òQ+&6ݼ:\Exב‰?zr òÂC>‹Lò7ŽqxýoS‡G¢Vÿ°dG †ã\{tíùýÈó>ú64ßZuJï~MÚËH“5õÁ²²³1¼èX¢Ù/‘Ùï1íÉщÌLA’½&&&&&&&&¦C±¹9 ÀGám¿dh§áÐ 0 + ‡)©i£cÖd¯ãi-Ì)4f xÉ®)‰ôˆMARýÀ)€t^çñû“½”ÿMo7žÁð÷½aß0ñþ—ý2ØMIÃèW¯€Yðlð†XòÁ¿ˆ_‡'H÷u€¨%`cå2š…¥Kp0ÍF–¼B…%Í-ÜS®îiµz¦…ï€RøŽŽ¢›¨œäW9·N}ÅÅö¤>þð\X|ú}ùµxðù?Ÿ>õãôf-Þý¦ï[üëÖÙ<+åï¾ò;¿ÿÝÛòUoÚó_­?~óç?ù·þ•âÿz?¿æäO~ÛâOæôËì%¿ÉWÿPz³þP|<ýñëgÞùÓoü0)ñS~ûOû—GžåÛwrù ÿõ\þdô4ʵ·Aš¦mÇQñÖ†ÀV·_™ŠPí·Ò+;(hØv†¦§!„B!WÀó} ‡Á¹2ü¤ãð30\‡«:ÍMÏqGì³Ìí{u`ÄÅ®‰2I¯ DQõÐjÝÞ:ILrùáG¹~ú²ú[™ëçÿ¾c~õ#Wy–Þ›ÿßÛòü—|Íþ‚¿½_¿¬Ÿäò›üŸÿYMŸH7Cš¦mÇQñÖ†ÀV·_™ŠPí·Ò+;(hØv†¦§!„B!WÀó} ‡Á¹2ü¤ãð30\‡«:ÍMÏqGì³Ìí{u`ÄÅ®‰2I¯ DQõÐjÝÞ:ILrùáG©n…Ñ£ñË)¥”Ò÷åò›Ón‘Ë£ééfHÓ´í8*ÞšÀØêö+SªýVze ÛÃÐô4„B!ä +x¾o`£ã08W†Ÿt~Æ€ ¡â°bU§³¹é9îˆ}–¹}¯Œ€¸Ø5Q&é•(ª>Z@­Û['‰éQ."?¼Ëõ“Œ_N)¥”0žÈå·§Ýâgy4}"Ý iš¶GÅ[[Ý~e*BµßJ¯ì  aÛašž†B!„\Ï÷-`ltçÊð“ŽÃÏÀp!TV¬êt67=DZÏ2·ïÕ»&Ê$½2EÕG@ ¨u{ë$1=ÊEä‡÷/oßÉèÑüå”RJéÇOäòÛÓnñ³<š>‘n†4MÛŽ£â­ ­n¿2¡Úo¥WvPаí0 MOC!„B®€çû06:ƒseøIÇág` ¸*+Vu:››žãŽØg™Û÷êÀˆ‹]e’^ˆ¢ê# Ôº½u’˜å"òÃ_Þžd449¥”Rúñƹüö´[äòhúDºÒ4m;ŽŠ·&0¶ºýÊT„j¿•^ÙAAöÃ04= !„B¹žï[ÀØè8 Εá'‡Ÿ1àB¨8¬XÕélnzŽ;bŸenß«# .vM”Ize Šª€PëöÖIbz”‹ÈïòíIFæ/§”RJ?Þx"_N»E.¦O¤›!MÓ¶ã¨xkC`«Û¯LE¨ö[é•4l; CÓÓB!„+àù¾ €ŽÃà\¾è8\ +1\‡«:ÍMÏqGì³Ìí{u`ÄÅ®‰2I¯ DQõÐjÝÞ:ILrùá]¾=ÉèÑüå”RJéÇOäëÃi·ÈåÑô‰t3¤iÚvoM`luû•©Õ~+½²ƒ‚†m‡ahzB!„r<ß·€°Ñqœ+ÇK!Æ€ ¡â°bU§³¹é9îˆ}–¹}¯Œ€¸Ø5Q&é•(ª>Z@­Û['‰éQ."?¼Ë·'=š¿œRJ)ýxã‰|}8í¹<š>‘n†4MÛŽ£â­ ­n¿2¡Úo¥WvPаí0 MOC!„B®€çû06:ƒseø¢ãp)Äp!TV¬êt67=DZÏ2·ïÕ»&Ê$½2EÕG@ ¨u{ë$1=ÊEä‡wùö$£Gó—SJ)¥o<‘¯§Ý"—GÓ'ÒͦiÛqT¼5!°ÕíW¦"Tû­ôÊ +¶†¡éi!„BÈð|ßÀFÇap® _t.….„ŠÃŠUÎæ¦ç¸#öYæö½:0âb×D™¤W¢¨úhµno$¦G¹ˆüð.ßždôhþrJ)¥ôã'òõá´[äòhúDºÒ4m;ŽŠ·&0¶ºýÊT„j¿•^ÙAAöÃ04= !„B¹žï[ÀØè8 ΕዎåcÀ…PqX±ªÓÙÜôwÄ>ËܾWF@\ìš(“ôÊ@U- Öí­“Äô(‘ÞåÛ“ŒÍ_N)¥”~¼ñD¾>œv‹\MŸH7Cš¦mÇQñÖ†ÀV·_™ŠPí·Ò+;(hØv†¦§!„B!WÀó} ‡Á¹2|Ñq¸b ¸*+Vu:››žãŽØg™Û÷êÀˆ‹]e’^ˆ¢ê# Ôº½u’˜å"òû|{’Ñ£ùË)¥”Ò7žÈׇÓn‘Ë£ééfHÓ´í8*ÞšÀØêö+SªýVze ÛÃÐô4„B!ä +x¾o`£ã08W†/:—BŒBÅaŪNgsÓsÜû,sû^q±k¢LÒ+QT}´€Z··NÓ£\D~x—oO2z49¥”RúñÆùúpÚ-ry4}"Ý iš¶GÅ[[Ý~e*BµßJ¯ì  aÛašž†B!„\Ï÷-`ltçÊðEÇáRˆ1àB¨8¬XÕélnzŽ;bŸenß«# .vM”Ize Šª€PëöÖIbz”‹ÈïòíIFæ/§”RJ?Þx"_N»E.¦O¤›!MÓ¶ã¨xkC`«Û¯LE¨ö[é•4l; CÓÓB!„+àù¾ €ŽÃà\¾è8\ +1\‡«:ÍMÏqGì³³_6»‰,g~ë€WÀ6ì©—¬éáv¸L£c°sNø±Ý&Ž²hE ˜æ #ƒúL/"KiÅ‘b÷OªÊö ÌئGp\!|^¡¶\]U_UC?åje=ÔKì‹¢ô<V?r@²XÚ¶êRV"¸»õÎ÷½ÁžúÃ)…B¡PÞ?Ö÷ñƒ?9 ¼{Õo¤Áqœ|¡Àå- Ô€±t¿(Áݯ/[î@ÎdLÓT] AA±ôJ%T‘”Cc™v¥ök—ÃX<ÑlµU×±EÌ\W+ë) Xb×X¥ç1˜°ú’ÅÒжU—²ÁÝ­w¾ï öÔN) +…òþ±¼üÉYàÝ«~#m Žãä .oY Œ¥ûE±î~}Ùr‚t&cš¦êj‚ ‚ ˆ5 W*q  +Œ¤ËÌ°+å°ÇXÐÀ¸Æâ‰f«­ºŽ-bæºZYOuÀ»Æ¢(=Á„Õ€,–†¶­º”•în½ó}o°§þpJ¡P(”÷uàõvýÉYàÝ«~#m Žãä .oY Œ¥ûE±î~}Ùr‚t&cš¦êj‚ ‚ ˆ5 W*q  +Œ¤ËÌ°+å°ÇXÐÀ¸Æâ‰f«­ºŽ-bæºZYOuÀ»Æ¢(=Á„Õ€,–†¶­º”•în½ó}o°§þpJ¡P(”÷uàõvýÉYàÝ«~#m Žãä .oY Œ¥ûE±î~}Ùr‚t&cš¦êj‚ ‚ ˆ5 W*q  +Œ¤ËÌ°+å°ÇXÐÀ¸Æâ‰f«­ºŽ-bæºZYOuÀ»Æ¢(=Á„Õ€,–†¶­º”•în½ó}o°§þpJ¡P(”÷uàõvýÉYàÝ«~#m Žãä .oY Œ¥ûE±î~}Ùr‚t&cš¦êj‚ ‚ ˆ5 W*q  +Œ¤ËÌ°+å°ÇXÐÀ¸Æâ‰f«­ºŽ-bæºZYOuÀ»Æ¢(=Á„Õ€,–†¶­º”•în½ó}o°§þpJ¡P(”÷uàõvýÉYàÝ«~#m Žãä .oY Œ¥ûE±î~}Ùr‚t&cš¦êj‚ ‚ ˆ5 W*q  +Œ¤ËÌ°+å°ÇXÐÀ¸Æâ‰f«­ºŽ-bæºZYOuÀ»Æ¢(=Á„Õ€,–†¶­º”•înýó}o°§þpJ¡P(”÷uàõvýÉYàÝ«~#m Žãä .oY Œ¥ûE±î~}Ùr‚t&cš¦êj‚ ‚ ˆ5 W*q  +Œ¤ËÌ°+å°ÇXÐÀ¸Æâ‰f«­ºŽ-bæºZYOuÀ»Æ¢(=Á„Õ€,–†¶­º”•înýá¾×ÿƒoú‹§EßR}\¥P(ʺÃÛçÞõ‡Þïò,ôT¿‘6Çqò…—·,PÆÒý¢Xw¿¾l¹A:“1MSu5AAÄÐ+•8PFRefØ•rØc¬h`\cñD³ÕV]Ç1s]­¬§€:`‰]cQ”žÇ`Âê@HKCÛV]ÊJÿºõ†ûý]Ï:œ?*R( +åÿ3ÖáüŸçû½Þå_Bï^õicp'_(pyË5`,Ý/ŠEp÷ëË–;¤3Ó4UWCAA¬½R‰U`$åÐXf†])‡=Æ€Æå0O4[mÕul3×ÕÊz +¨–Ø5Eéy &¬~ä€d±4´mÕ¥¬Dp÷ï¼îóSáèð79R( +å-–øô-™þÞß~ç_ý5ôT¿‘6Çqò…—·,PÆÒý¢Xw¿¾l¹A:“1MSu5AAÄÐ+•8PFRefØ•rØc¬h`\cñD³ÕV]Ç1s]­¬§€:`‰]cQ”žÇ`Âê@HKCÛV]ÊjÜÝúÖaÐû}0þ1øù§`ô#¯üÐJ¡P(”ß&¾õGþ#/~íþ)ä?ûç?x?ø¶úª_Hƒã8ùBË[¨cé~Q,‚»__¶Ü ɘ¦©º‚ ‚ b è•J¨#)‡Æ23ìJ9ì1Ö40.‡±x¢Ùj«®c‹˜¹®VÖS@°Ä®±(JÏc0aõ $‹¥¡m«.e5ü‡ŸNÃI#¼9¯OÂË£ð²NÛá´óMÚáDfÚ~¾î<]OŸ¯'ËrÑZøói 7¾˜éÜd–wÒzÎÜlgþô§¼xùÆÓø¾[Z‹÷¾6îb?s#Nž·àó.D™ÀÅ|Ÿ¹æ>ßZ½Wúÿö¸xãÞùt¾ô0ýu^yH.^«ôyÄÚ(ÏɲiGoo<í…oÐB¥¹‡dn›¢vÛ~ÚÍ%OEkñKñxûç¯Fgnô·†ùq«{yÚ¯,ìW›õÖWr®Ÿ‹Å¾7z~Ÿ¿ó¼­ÅG"â´ß^ç7Ÿ«­oÛ¿ùp~UÅ´3·Ï¿üwþê(¼:oNÂéŸÂ‹ƒpf…§ú…´18Ž“/¸¼e0–îÅ"¸ûõeËÒ™Œišª«!‚ØD‚¹Ïù ‚ eè•J¨#)‡Æ23ìJ9ì1Ö40.‡±x¢Ùj«®c‹˜¹®VÖS@°Ä®±(JÏc0aõ $‹¥¡m«.å» ‚/¯Îÿüóï“£à—Ãàú$¼9 ¯ ñùZình?7à¿ž†ŽÚ§Áµá_ò—ÇòXÚyá¸z!O²Óv0i—`zì_7²“›SïŠß~Lä1ö±ýÜçÓEKþëHÜ;=òÄír7FÀoŸžxÓ£§†nÉ¡gÅsÌo.O<>[^2ýS7üÄK8ñ¯ŽçJxJ0i=O^þ9íøròŸíŸ|7tþÌ;á3áåÈŽù Å@þj&"`rÄ[Šö%üzØüÞãÇ„¼>ÐÅ7 (&Ósãe>Þ~ÍKàs0B‡Waק¢¨©Š9È \Ìût-;áñà=Èõÿ$:á]y—+ÀgØU\t¾¬ÿÓ:´ŸVrÊá¿ìWÉo×Õ gÞ2Ã]’my_c]|‹øh$×Æ@R DÝ[=õÐK%gHYn- +DIQ Š¶6ŠZ(’²‰ë®$[†Úƒƒ5Ú:¶¢qß›áb9EÜ"€ „žéñð}ï}¿å{|žÙR"’ê ·¾ˆ“ßbƒo¨ôÕ)*`uVA(‘ +}5ëNSÃ7›?°a$ž}AÝ-&iÔ‰÷T¡GT‘`ªt—8÷$ž|Í'-N{Å0JtÅX.o‘ ƒÕÖ¦|°n~û‚|ÒUö Û(ºˆs }¨ ûèŠ~zÕBVÒ…øÙD–g ÀíÞðú‚(¥FX+ºfˆÒurµ 4òåh…ì|C5ˆbº£BJW0×gT[@·‘ø î¥•›jøMá®)~V•PöF‰ÄzˆÕ`uêJ×SªÕH~˜p=C®M'ÔSEjŠ‡EO,ÕS“î+ÝÔ"Ðʵ䥻¾sfIÿ4˜ðÎœ×Hól¬Š_Rͪ}!ÜæiÖlg÷ÁvÎUnK#pj¥-j¥)Õ *}E­ðWíæÖ´v¡Êg^zgùq‰ÒWÔa²:éßf-ªdŠNB *µèÂ<Ê–-¤Fóè~m<òš‹ü¶ùùø³;™Í¿}üòåÖý(í¾ØØظØׇËÛMÖ´ûêî÷&·Üý—5Šó½½µZm§Ñ´£íhÇ® wû¿êÿÃÙz±ù¨òâÞŸ7¿Xu›¿løÖõ’Üm©íhG;Úñ=Å•«W#šv]Óî©Ëañ»n†%u9¼ÓÑ1®i—´\Ñè›;ãOž>½ôÞ•Óš6¦iŸ‘jor¥Ç(vЭþM{[ÓºÞy÷Óõõ†òÿÇÊÚ£?åþ8ñÛ_.þþWåÁß”3É¥Lbi(ù߇½”µ+CÉZÎY.8Ë#©jÁYÈ;3ƒöLÆžË9‹»:Ò¿UÊb~RÍ·òöBÏ©™Œƒ÷åá4¥öߢ®-ù‹,Szm´ær˜lO#óóÉùœ]Ì8Sƒv1ë`ñÊ(¦¥où‰ý·ÕÖÞ +´ûpÿ\.ùÓƒv)k/R5‚`/d±Brf(9—O•‡S´‚W?Ê h÷t¹Ð?—wŠCÉ©AG¥;*Ý™ËÚÓ +Ñ|6½DéT-ro#·ÉƒZd$½O—²éi‚ +B„àM)—R ¤À[Çò8ÒûËù:l—³+#¨Á©ˆÕ)RÁ™Ï§–üEÒþ¾þ¸†Ý—ò)Yr¦>JÌ Ù(¾2jW†±TÒ‡³„k$âØ« +éj!]Χg³(À™É$çóöbÞ™ÏÑóÌ Q«Ä€ZÁW@}¦kcTØâ°§‡ PI-£Úa»–·+Y²<¶¤ªY»šw–à“a{z,%KÙÔ"¶(¤É-ELº¡áGùę͢B»œƒp´#¥çÚKßNrÃ0Xl/Ò%(ž±áðRÎWü€%T2=d+¶ázÖ6ÉÈóD×\6EŠ& Áð[Éö; ÏŒdó6:‹6*Ц“•£Ë ²j åj¿Z‚ Y½¾(fR°q)—\„ y¨™À¦³0Ue§• +·=Œ1ªLUHÁŠä +¢—èBWÎà`B/äl§»ßnPíw4ÚÐSÓ©Ž¦*yg6—˜L‡ð@ } ?¤Ú@M‘ƒRKd†äT&V‰™§\H–†è”˜Ã9ô9§…XÕÑ£tž” Î|•«nÊ’ÊØ:3˜@UpZe$ €·š'Ò@ÃÌUt4šOç_d3‡Rö¬ª¼R诵:Yí®º …o!+<\<£ìÚ¨‡³*]ubÕOWª5Û•Cźæ£$\N¬"}/é0™Í¦æa{Pc}{8\7GéÄ®Hè}†Õ'¢žÐª‰´úAÄÔ0¼\A àVà õי螄¸qÓPÀ=qe«¸ÊûƤ~4Âè,BÉ‚  .±Î‰ï4ÑËtšþahù[7+G¿ëÐè­8? ©‘MÓäLv©ÝXH7<ÚeË怦 SåüÒ N“±Š¥ë½c¢ÙGNïÖÑì/†ÖÝ÷£½{:´ßÿ૯¾Üé_§]ûúpy» iÚv_ÝýÞä»ß]5ó²Fq¾··V«í4šv´£íØ]áÒÿfð¹ùÌ}þ/÷›¯Ýú[ïóÅã¿þÝÿùsëßøÉ7ÿ‹zé¾t]?ùùدÒب®+|g}ËŒmðØ0€gƳx»ÞÆc³Ø³o^Æ6Kc»a3`­”.*¤ËT©Jª¨U KE± Ä¢‘¢Ö? œ HQ‰ÁšD\<ïõÜ;‹—T‚æϘ£ãÇã½sî=ç;ß¹sÞ=~ò˜ŠRð1‰ILžeñuu):€Ð‡7^ ÃáE ¡ +$€á0Q‘Ô?0í<ž#¹3>^QçKGèBWqÕO2Òƒ ðT¡R„”6û•ÑÑh§ò=eô󱥦rüe"AÒEH¤@ÂD$JšV¡bÖAÅðd>’(³‰æ¡ˆèâЋùì yŒK/±k)«–6kè*]•2­fmÑ0¶TÚ¥£Ü:éz#ÛY$ËKÄîñBÔ’MoÌg¼)¸ƒEÃV¥0ØQŵRÅXÔØÝ©£\zi«‘ÞQ,+UâÞ‘"Ô˜NuȪ R‡V`¬ØW†Ý+Sðv·§2N-ãÖQ YÔŽYmš„ +§`T Í…Lk6 +8´°kV±àeVQU*ªRE›ÉîíÒR¾ ªË$kÊ¢âD!wC<êÈg6)·–²kiK*cQÍŠŸ(eVS6-ŽÁ¥“lÈe¶ɲŒñÔœMµ€:±=UjÕÀvÀYîŒYÍZ  k²é®¥qVµDNÁ´@ÐY(k͆·‚Ô–ŠSž³<´ë(»NÔIm3Å{õ‰ äž7`7äÂúR›Ž²¦²f À¹tð)"à1HÚò˜Íù²´xìžL# @ÛXwhwÖªÆöá,h&”†|\:ÌÖæ²;Kåå‹Ã€È³I’‘È–Œ(%©1B +àIõ£™7MâÐI­ZpÆ@Í™T +oy²& Ò”¯LÁ ÁŸG/ÝR(¯I“Úp„´UCªúŠÃ¶¨i€Ë¡¥ÜziC&ÝY,¯Ï Ø0ÜuG»6 Ä@ZK0Ù”9 +DÂùæn½d}.³½˜)V„VÎC´7”8‘(i@i2FÑÓ”/ÁÖY´¨•JY58eÂm:‚* M˜)m΢;Ml‰G)FèÔ^@CÖ¶ c¨š32%ëÀ+'F Ü¥ÛMò*5¸âŸ%³Z²±€©Iw 4EОdŠ÷28´,T*²!²c‹”!€à‹F¸©ˆ­M§ISCØÓØV¦P ì ÝêÔAãSëŒt—)®b‰(’ø²Å"poÈ„~”@A¡ý+§;b È@×K[²ÙmE²²…‚`ä^ƒdS¼: G¸58f­2æ3f²–vèi—AÚ”%…f¬J·¶¥Š¶ËêÒ!lhâìÇpWbn€¯Nê1H˜Çl)–$…h XÕâE,°Å…Ê’;äç¡> ©Ö&y0øò%Â-E²æLÜÈ°‹M3Mr3)\ñQ¦“ºôT ¸ËW*ÅAÑ CŒ’;¨sNr8íE¤Å$Éx‹HÑ**ªnß¾íߥ§FÆÆÆ–••n@è2û=ɳ߇ÄÒBJ–c4G;›˜Ä$&1yº„Ã\ ðõÍÀKÜ­«ÜÄבwS\à?÷O¾¾jb—øÁW{í½G‚ž÷ï>ºþ©—øÉûQ<&1‰É³.¾®.® 4B†Ã¡ÇM†ÈpxQ èƒi + DERÿÀ`´óxŽäÎøxE/¡S]ÅU<ÉH:$ÀSýe„JRÚìWFG£Êÿ#ÜôíÍÑ/ÊLUðIhrÌkÝm¬Ý˜én3xÚõž6¬n¢x2SÛá¡¡æÅŒ–Ý9Åéq@]™XðÆÚ þL-º–ëvð~ßãÄêwÌÒò¼¿ +€ÙI/®ñôÎB¹HÐTœ|ÿ-'ß_Çùíü!;¶é%ö³V°“e]påºíü /¾aø—¥Käↄ[‡¬ü¹Í!õϸ’­±;Øqòç¿ü³Å“™)$P£FþÝzþm/wÐŽí{ƒ¡F‚·ãûÃĽÛÉqÁv‡/,]î´P¸MÿN5ßW€ÅýNb9;…ç´v; 0P{|{ž\"hÌOš8âæÏÔadº³âŸ‹!6à9¸c@à³}«ló!½‚øq§®Ð;g‘02~p· …ÁúÛoš› +’À]ÁŠwæaúj0>~ût =ß ×ÉAš}5Pµî¶@`G•êÑ)/ÿ·Zˆ §Ðëd‚3Cè9)âÛ^~¨ñÒÞ²ìdb`ã%åÕªÖÝ9u›2\@¶à›¡~k暟ä¤[Q7,ø¶¨çzØÝï •Õ?»Ü!œ]Øæ˜PyuEZeR±×ÿ´²æ„8朕iO+CÕÁaÎÖß뵯/L†P)¡àÍ– þZþd5®xw¤¸ß-!Rw˜óg}véh±XIYÚ -/e{IšÞv|u·¥ù¶àæZéSÇ+¤°QÖæý_˜ø³ ü±jR—Hœä¾;i˜T‡ìÜQ?ØðÁžRu‚d™F>úÆj¾ßÇa·) aŸQ‘à )(¸¿å|>Û·"WÉêéWÎúpîgnÁ9ˆ!nÉ<9Y ô{ÿåUŽ¼T÷é«+øØEzjfG„áÂ!»ŸÐÑï5|ôëåÆdÜ3ô?+ÁgÂQόġ”ƒdî%òc.qÇ=°ûðž2}µÒc¿™ï¯ç°½=dÖ;c÷ FÒ5º!ÔýaUá"Yæzä÷+¡ÁùÃnî mîy2³s?¡ñ»µÿiI¡ñ +]ܧ¯‘ÄÿêÁ ìqLŸ$ÝΆb€NtâÈû}ý¶Ì”"÷Â%²î)²ñÇ=¸jøØq„Γ9»û1ù£¸d#¿)[¾€Añ¢åk4ÐA5鞶4O{ðÄÖ{ÚÓàÜž©^|˜c­Û’Ù´3£Ð6Æe%«¾¼}7j¿MO›Œ-++ƒ’ t¡OÈì÷$SÌ~K Â’c4G;›˜Ä$&1yj„ã9ò5Ã<¼>„*`"G(Q‘Ô?0í<ž#¹3>^QçKGèBWqÕO2Òƒ ðT¾|RÚìWFG£Ê÷”±›·Ë—ÚbdnVn~¥dý®üæÎÜæmÆæN¬M[s@ƒ÷Óº= Ö½”¿i¯iÝ®üÌÂ$ îÙ¯Ò ¨®,|Avd£Ðвˆ(KX{aédEƒ:qAœÉè8U&΢cœ©R»q²¹°¹$ cF)#¤ˆJGKkJ„è`R(ݯè;ç¾×MãL'U”•>u~¼¾ïží;ß¹}Ÿ³µåñÕ!øjþ<ŸãJ®­H©\.п=!Ä i¸-ÿúö7ëqyQS–â«Ùø”ˆl«óSs°-­¤7|JÌìY2×Í–Ãòè­“à/rqµ„8¯ºÜðÀØžZ)¾‘?P+Ë ›%L´·jÜ´·äáÆt\Å$ɨ!sFõ¥‰p­_ÏÅK‹f¹“Õ¸“«Bñå,|)”Æ䶕LhÆ\øR—â–즢<­òNÑ}šŽ›²ðI±ÁœGö F*í6œM…þU&H%%ø{:¶lÆ7rñgKq•ˆÎs4B"\/Å͹êÉšèé`>ÉÉæ–pXÁͯ͠hCŒêÅ üEÞùâE€ÀfÁü·Lüy†>:£¾ï)# +a +>KÃ_.ë”sæ:CÜí“r|×|–ÿ«àÌõó²6-Øò‹ß/ M…¬Ñƈêsi¸9ŸëÛ¡ïŽI’à ‹ðY¾‘×s89ÐÓ1j¶ËHj¬‘è3Ôg5 +¨aÂTÈ „iÉl7Ƹ­,O­ +ÂMÙøB:Ý,p©·ršóô†*ºÞù·ÿÇv²µæ˜Z¸fÛ‚ì¢y™ëÙŒfm\öë@@¼’å9Õ{9µïŠÃ×óñù4=÷* 02ÎˈMX!Ã×óîÉ9þ“Ïv}®1pw„©Q8Bõ2Ü’û¬,%Ògk¢C×¾žƒë¤¦Qn¨”™è8F¸-ïÞîx_{È<þ·žÒDÒ,€Ži‡žÒ‚ƒPi4Ñ_æ÷ìO ŸáæA^Žw ðk¹„çÃtª4”\.I'>—Š[óîåΛèÈe¹÷Â"S¸þ,¼ÄÍx™uˆ~†þÃñ”˜Y.^ãÿy0ˆMg.‘¹.úñpRH&®9çîîø°é„ÆÌ×±Ó×’C›9χ5ƒ^„)[öAHá¶Ð„Ì)È +- +{ú¤w¬ÿ—ÞéîŒ„–… TÐ]úî÷:·¸ûݤwr‘6»µµu¬«1‹YÌb–·NtC«{îö׫wÌSÉã¨ÚbíWÕÔwŸ?lë;»õÅžj«_ÁíkØõüa+ÕySÛZFÕ¬×ì‹Sï`«ë6iž=Öýï´ ÿ¤ehhè•›™uãý&o5Ͳ÷u¶ñJÃ7óf³˜åÿYQ‘;B¥Ý¡/‡—ìfØD_Û-,Î ,àrèæîÑxáâX×ñ3’§}}ÑRÙ\„êúštÍâu®ô —-È­þ|Á!4™ÇïèìëRÞPº»¾\ȳ°F±’‰9ÅÒ÷X¢?ÑŠ*^i¬,Ñ +–°ÀOòžÖF¶lu€o°P×ÁÊRžã¯«몄Z%O£àRJ®J¸”±*yyÅÑ(¹Z%Gw4ŸMmÚiki)?éùq>-sJÎÕ(`'21/áªi[¢ +Žî0˜§uü1ÖÛÕ.ÌÛ¥«”ÏÊöó©}\Ú?W[òR5´-eP0*åá:Iÿ±¤¥!žP‚‹­ÕÉ XÑKÖÊÉf‹6$æJ>£1ßÏÃ5’ÁJẸ`ngey07ŸáŠ­q ÚèBx…VÁ…X¸VÒ´yѤñ6²`ÏþãÉà !H8@€O6À;ì|ðH"®—}³7!•.a¦«}Ã/Ã`eèFÎ#*GHj!}à`"®–ô䯌šJΫê÷ƒqXW! TpŒ†‘”cH`@ÉÅÇSðYÍÚùvã,×%xT‰ð ¼R+èò•œ—VFM$æà8p$ŸK½·+.xêxÈÁÙÍ6^æT”ˆ–ù‰—û‰–±ÒVä~4_ì¬-—y~˜ë¤ÚR>ð`T—pFó„DWp‡ñq}ê£=ÜÙöÁÓœ:÷.ÁµÒRžFÎ!,}Í(Ól ]‡ððit¼0zÓñÒœ\-Æe)ZR,OßšÑN” ç‰êŽ%á3Ò¶-‘~N66“ìWúeŠVø‹ +ÈdÁô X©kr‹ùÙs<§LæL´¿ú›\/:šã£!ôãi•|P ¡ŸZtÉС$ ñ½]±ì)ãÃf8=Þ·’Ôî§+5â¤Ö4C.3ƒPfè©bÉ»ï¸Íñt¸ÿqdà0ŸLÅt“ É™&ô` ðù¼ì«ß½ëãf™‡{;ßûS,0|ð_£j:g#xõ³¦äêŽpýyqÈt'0÷õthÙÑIátætº¹|½’ÐäTy:LÆáï;cg¹ÛEù¸tA£«õ<¡k¶2(µ’5t(ÈÿDžáã2ËͶcg œNÚƒ<úZ˜çÛ·o———···ôSà »ÿ~CCø§(ê'÷o³˜åYQ‘;B¥Ý¡/‡—ìfØD_Û-,Î ,àrèæîÑxáâX×ñ3’§}}ÑRÙ\„êúštÍâu®ô —-È­þBáMæñ;:;Ǻ”7”®Ç=aK+”µaž¸ÀO¸ÜWXê7¬#¿"Y–`¹/®“6o²³²”†x¾8šŒO5Œ9l“›š«he<¨Áü×HïîŒéf·`ºs—’ûoö«=(ªëŒ”‡€<¢”(,,A ˆ pïÝvÙ…5H´¦–ª™LÛtìØÆÑDÔª»–§ˆ‚Êø‡&”q‚[¦0¢j“VEÔˆìåîóô»wŒ“I‡q²ß|³sϹç{ÿ¾³ßÅgäÚ’Q€81ha¡É!ëˆë H|29’ò.‚›ƒý‰ pµÜp8…Up‡ÍçMâôõ4ñê+¤¹K_q;Ûâ÷…¸B‚¥²4Á ??: ÅÐø`(ã*é7ŸÄÌvsÈ ÷<š‚+ÒY%èA.W —1jTL¨•Éúb +Ÿ’wJzw¡7ø0ÇÝñü¶H\#7”¥@¹*ŒUS&•„¦P! Râfƒ¸§“]õ‡áàñX*Wå9™ Še,KÁ§3jsN±”›è§;.Á冧‡nT!”«L2‹ñiù÷yK#f»€®S3ýßÛ&ÏJÖJ×J×ÞÙœõQX¤|šl»&lúc¨û)k.4h«Öa>FVA Ìjy‡‚˜ïå¸`–˽I 8Tf8£lt*WJ å’q¾àê»Iù«„¸J†¦jɼ'ä˜ g†ζŒ‹·ù±B×)“g8ŠÖ Væ†J×I× ¸¾[(Y'ÈØ Í(ΚïãËåä /‡†ßGã™®Tü<«Ð2#VAèŠÄìï÷Ä/ðuyËÏõÞ¡d¨©&ŸT+ÉñdŸCKAèUléCerb —ÀÛù»¼תHsW>¤ÌLS¼iLJS £¯íŒó÷pÏ£ü¦ýkwdÊ9ÁÝl–×ï¹±$WJ[?]5‡ó<Æß ü¤ jÁ(8÷ ßGnb5¯Ö]P)éÌ[J`ˆ@¡³\®@à5rmi +sÈ|aŽÕÈ” TúbDÚ¹7A:ϹØ/^1/kkhz¶@²6ˆ¿ÀǺÉM×;/HþAÐò_ —ͲqB ã{ôNôÿÒ+C1±±P²p„ªjãg¿—™"`ö»ÆŸ$GÂÆÆƉŽÆJV²’•^-2X‹ñc×Í«=GÖ3;4öÜɨ¤ê9£‚ox ¿¬"^­3EiìþhöÓ¹OóÂ{N~ôàæÕ'¬N;Žö¾¾>…BQRR200Ë®®®ººº3gδµµq†yó¦8ÐÐРT*kkkÕjµI\£Ñ´´´4551 ËË—/ïÞ½»¾¾Þ`0Œ¼2)7Z‹gž€yyygÏžíïïOÛ ”[ÉJVúy)sË˜é ºÉ‡l2üš›mljŠC60zxz]øò«‰ŽãD½ýýq™E¨•«šÍËŒôÀm¸©¾¡h„|(Ñöö‰å'Rǽ®èE„픸læÊÜPyNpúßÃÙ´#Ë Z±9ä_GÍð:ÚNÊ_‚OH_¤2ðÅJS¦ïV6ßü0ŒI¸€{ÐS¸FÖ¼sÉTûI>꣩¸RÂ朆KAŠ¥‡-iJWHájÙÝý‰Ó"|]:hXÊ5*‘š&š´Á ^@âJ©öXÚª·^ƒî›æhW³)§°ÊÊrâ¤Ì•KðIÙÇÔ\w´³=¼6â#©°N!‡³)-मXŒ«Ò¯ý%κãŠE>Úãi¸B¢¡¹W,ïPÈÃÅaI°4ɉCª¤}äêè™àƒŸ‡Ã…m‘øc>9fH“u-ˆWHKÄ¿MšâîÎv5›# ˆ†ciœ]šGÜÌ ACÆ>-ÿÛÇQNv“rýôÇ%ø8Ü#Ø&ªÌ*I}‘×d´"¢æ¸nžÉËü³¶†fnJ×ñØ['ÈÜœµíÍØo '»µ¡3ƒÈI[ÀeÀdÂfü>$x¥/„óé}…b·sØl×{’a ±3CZøi‰X8Ii  ò³y©/¸ê`;©pµʇ¦jøpÆÇü¡|ÒP,Œ}»3n¡‡³ýkŽâõ‚÷rÃÒ³ƒLe⌠A+~’¶6`–¿ šçåpéwÑ ¥/CÆXz†U„÷V[Ī㯉1þn1þîÝ4à\¢ãÞZV“´d­ŠTüPH¦…Í9õî¾$6øž2‹®Fþíç ó<ÁóعnßíY +ÙÖ«Díó e6 }×Ñ=J*šC°·Ó?ÿô6>!µÏsHQ/î>¡)½ŠÂ§ÒÛ&Ï÷rZìï~ÿ`2>!ƒ a,χ5£Ùþ>©””Š)¡çwÇë»–°µE"FI¾ i §4”ˆ!Éÿýó˲ÝÝÝà hsmmmýýý°¯ÕjáLSSSsssOO,ëêêÀòòòÇÆû÷ïƒþöövxeÒ®_¿þlÇJV²Òÿ•2·lñD¨¡›üpxñÇ&ïùá°ÙƦ¡8dᇧׅ/¿šè8~AÔÛß—‘€ÐY„Z¹ªÙ¼ÌH|ц›ê[ŠFȇÁÍ;Ñ¡üDêì莉$ìPÒò™ËsCd9Á–ŸÒìÀ‘”ž-å-ûP¸lSpH´7B6v¶ôûB|\‚¥P M }öŽú˜¥†m’:…OÉnìJ˜:ÙNîÍ”¥à +)›âÏNR–ÌÐæ}J„«d퓃|œ#|];”þûÕÓTšÅ/HG2‚(ꥈ&ÊKÅÞK[z[eñq@VÀ5ꈮ, ¸ B[ÊcËS@4‹Aˆ+:ºó‡QVg'ëº à(*Z ô½{îm}@y˜I6ÄØ““æÞö¼Ïï|=_-_•O +(ÆÒ•‹G„¡ÊG‰²UYÈo{˜>+3“ºxO° )æ(ÈøÇ [Ç” Ô‰jÞ·l:¨›š˜”Fz•\¢„£뇎f° Ć XD5Þvlåb;‹ÍËíUPÀ2ŽJ¤lVuTæAQP!A·ù·Ì4½”¼Œ8Ëþž5(Ää"l¬:€q&¸†”Pÿr®¢„´vyþ˜ÓÎÅyB +šÓl2G§ZVP¬*†¢]ÝïcN›–°ÆaHBH¹¤€p´î›ÈßËEÄTIPøI.ê·ÐŠì‚­)s#=<Ñ=4Ö \Œ#]ÖǺD${¬ +_4Í‚¶a× aWñbt€2(3åzqR½fRN1•\½(b»ÚÏð˜gù8'º¹¾ÃÉDiêŠÂb&QÊ!Îâ Aêt㢭îDN”°•Ú†ŠÈš]+¤1uåúE°jù, š½)íòu‚;_;kQºqãïXÏ€ôç;}ŽœlÍØçCÔðÔE,½Ñ Kª¤äXUâ]§Ö®p²ò§[÷1¢"D)ž¸›TÑÈ4U*ú ƒùžvP®Îì x…6饦ßMT%!³û9+nk‘û;Z=ún5”H- Ïï©c¤ë*¼G„ùÑI0¸Î±¸ý?¢‚;\ÈRˆ˜¸&Á&¤&ºïÎe:Ï28uk +ɨ㈩§NTN@]ÊqÀ—Ú9X›þóXÔ\ êyúò£:‹ª ¡h!íY«gBä~të_«ˆj.L‡\oôÑ5,aåø«¼µü¥pœ"Pöø5¸º˜-§RÓ;¾0í„j›¢¦Ž²>ù•=bi²b}s¢ŸÂï-´¢Fì<8ÉIx^¼i—;bÍñúÒûéoϦúé£!¸ÇùúùAË<¤AP»ß‡l°ûýDI2’Ü ¸Nu62 ô±Ñ°zx°_þ¼ëÙ¿n=n9Ý]õçWbî`öry†kŸ`Qÿ1º–ûHvêÐÒüuY¯dCWÍ᮫g^<¸¡|õ„R‚%†P ©‡4ðDQww÷öíÛ^¾| ¯r¹üÎ;µµµ/^¼qãF}}}nnnJJJ\\ÜñãÇ«««“““ccc333=ZVVvýúõÐÐP@ÙÙÙ·oßnoo‰D‡ÎÈÈHOO///onn®««Ë‰$†¢óçÏ÷÷÷kc8sæ ˆåçççååíß¿¿  àáÇ׮]§B¡0“¢¦¦¦††P‡Ønݺuùòe@,Ã7R©ôÂ… `?''$Á—L&›ÂŽÈ@Ÿ…&&Ú ˆAîSËaËd›á5j9l52º€ ˆ,‡3ml/55OuŸõÈdëCä<‚Ü#»fô!+=p‹¹Õ·!ˆ‚ÌÆ‚ïvtLu*¿“º:Ÿø.Ci¦HPØÜ°ƺ.£/ã0?ÚuccÃ7n o¸É™ÒŒ…np9%ΰb n¬poyÕ±\¨û^.BUpŸ­áÝZN7Yçi'/få\…NÏÂ[VŠ1¢šßq*ÈeÎ ¯?Xvæ­%jø*ðž7©.:(DIuiˆºœ»ÍÛ¦ÏÊ”v.Î ,hŠÙ +2~=•÷X›!åÕø·GP7£—Fy!šŽb²ÈÁ¤©bÃ’`¢š×&X¹x¶EÄr{µ4BRN¦;(b* €Æ•·[¤KhŒKD²G`ø"ã´­ŒY½b”¨ÂI˜ép2ØPm• _Ž¿(d¹Î±ð˜gÙ‘½<*óA{Ó©Iû…QEC‰Óâ,/!ÈBnb\´Õ¨ä%l%@bbu¡îA]€µü_Ò—ϲ0±7â—|àþn²¢¨áÚ±$,žG:ϧŽœf™ý°Ïüª‹XráûhÔG&ùª†ŽTá]¹ÌNÖþNVÏDdúJqð¤iR) Pï+ +æ{ÙyÌû¼3g @B%3ÁC¡ëf-ÿç¬@'[3ˆÜŸþž $*qiò‰b¤zÞ#Bý­@ÝÍÞ¢õ°?ÌÔP!Ko$G¸&Ë+¤„*`ÉÙÎÂo¡U7D8‘@£™ï ‰h.S8‘r%,ÞÒÙV¦mi+ˆZ\)y{žèJº¬ÅÌ¡BŒ¨À;²V¯v†-ñ£[ÿ*XITqÕ…o[60PꀣïÍcò—Ú: ôÇ>ÐqU1ëMðc ”pòSM¶ŒÛ'F£¾²G,i›è‰KExÔÄÇ8yÚke6írgmqøìsÄëKïgO{¦úé£!¸ëùúùAË<¤AP»ß‡l°ûýDI2’ÜŒ›7oNu62 ô±†ÐhˆÄo÷‡þýÁ;õ¯[DÏëSžIwöŠ¸ǽúÓœ_§Ò_§-–ÁgªÓëÔE²Ô…}iŽYž½¡O+{êSdÏVßûÑÕ6ô¼ýÕÓÇííÿ}ÔÞùòÕëáa øèîŒLJJêíí…W™LvåÊ•œœœS§NUTT”––ž‰Ûx|2'Å››ÝG4`\y×þœdïÅžv`ÈÓ‰tío«p)O[Á˜ù ~ê ©Ò&Î@õÏöá2 +e©‚¶2ÖS‡ª&Úª!v¢’Æ r +ºŠÖ\+2RrK° üì+ŒŸÁópwûŸGùZ1ÍXG ÐS¼™+¢¡îDྮ6ÝÂñF¶ö8ãn W5á9$º‰;TŠz9[‡¹Û GãM±*j„´çe  ¼Ž­<Áä.sþÈÔ›¿bQ‰éÆà„?SÇÐJ¿FEyÀ„yØÿôM$8£)§O†¨®)~“T×Â9ÐÈ+‹ÓÚü*Œ8Í*‰ŒË†ëjT.„s€†7°'Ô” [ˈϖnÚÀKõá¤?Éõk ÞInVó å!ÿŽÌôÿÒ¬‘а0HY ‚Hä¶nö{—)f¿º•T„? +¥««k¦£1‰ILb’Y#S“cÊ¿WÈ+ãEaª£êï‚T%áŠÒ¨‰£acyäG9r_(ŽuwwÚ¤¤¤-[¶ÀOð(‰îß¿¯°ð¦¨¨hppðÉ“'yyy,«¬¬ ƒÃÃ㣣R©ÌíÝ»·ººúÂ… `Édæää´´´lݺPàdvv6Ä*ŠLœILòžH|F\ ÄrK7v͈á°A¾GÄ †ÃùŽN/µÍtï‘ÈÆÇ#ÖÅ{!H+‚Ü$²fö.#=h§1Õ÷ H‚¸Ðè½ýý3Êÿ)†BW¢–$$zýÂõ锸T²Ñ‹¤^y|ßO·ù}ò¹/%ÄJ×ÚÂÛè‡7Æâµ,%F“cÔß_c_Wø•ª.§á-q7ò#m­Ì? Z ¨fá’X¥•c¨\@}+œP­˜ŽŸâö—D“]æ.¶û/ƒŸâ©…tyjÌ:¡j!Š7Īëc·„,‚ìI–§¿Â¥¼©*†3/CÕ¯gã'¹ûXž'}`^“€K8x5KõÜ::­vŠNgà'9ÿÊ]ííb“¼œ=UÁÀ4Ö0“£jÅ4p`XDÛ¼|øxþ.í +ƥ릪˜Š—›¼1 + À%EsûšîhcE0ÐÄyVË&’hŒ@Ø\% M§ã-¼2CçXZl_릭#B ¬ƒË…4¦K¢4n°4&ÔÝ|°s²¦&¸'îðOóã${sR|¸!ǧ‘7íZ™¸ÔÜÆb3Åù±ˆNêëdšgÃ& -±ž;ZÁ »Îõ_dûàX ¦ÓŒòóª*1*Q0u,¼™»=Úȸ…yåfØùÙ &a £é’e°nÑé÷¨– +îv^ä +Gk+WƒONÜÀM!sR¼á“Ë'0.ÍgC:…“ì³Øsòp"]Í\•©© ËT&pBU¥MÜRj¸‡C¸‡½ +UÂçåï,¡ÐÈt^à€®¢h¼‘£Ñ߇t«t‚j)¯¯p§ <w·ÿùðHdù•v0@;ØUb(Qϧ¸2-t‰=À}]mº„ã6¦cøpP‘hoæ@àK­Ã—ØÇÀ£J„¾4%¦û"D çØÊj&'Àù#ÒÍüÕ)U¹þ<1ÂÛTHþ¥0*ʦ$ÌÝá§o¢ TÔåŒéÃÕeÇp­jáhˆ}\Jå.w¸ÿBÛ¿ +ëš*¦î04\çJýž”hä†Øq,&e…+bkñÙÒM;x©>Dû;Éõk6|éÏHr³š‡-þud¦ÿ—f „†…AÊDŠ ·u³ß»L0ûÝЭ¤"„øQ(]]]3ILb“ÌÑLŒN^Ž—Ò&¿öPpUç.Q R Ÿü6øÑ×>²ƒž#=e9^²C^#9^£9Þ#Ù^²ƒ#ÙKçúÈ¿]®)\>•ï¥ÎùPup"ÇMv$âzÅ_[›j϶]þ÷Ýÿh40144”––¶gÏžÉÉIxT(W®\),,RÜÁè2€ÒÈjfyøªù¿ƒ¦QLêS|ÉzŽF&ãáR8ùp ÃP +p²’IV³¶3œPL&Kô†[ͱp9‚&0l&„|òpU ¬aÝÞ»ØÙÚ4ÖÏN~<‚¬ŒP ÿø(ùC>‡9ÊbÔ>;ßr ZMþë–…ÐR•ˆñ…B„*Šhx_I؆o¿Dû™Icª/YËV—Gȸ¡0A*µ‡<RÕé䉨 ?|mjb¼1ÄAYÁ$+˜RÔÐQKqWÓÉÆHñ‘¯§!¬)¡ËœV¦{G­ó`&Îa%Ía'ºF¯sÛì³(ÆÅÈÌ$ÁËöð^Ç‘ t]"´ìè—)׎>>Ò‰æײ{ é®vS|fNç…Ëò"šŒ;†NGŸ–,%1ÎN[‚ÚE™`Tï ž5eH0²Qäú^6ZÆ#ïì šûe¢½=ÙuåF/VÒÀ²‚z¡ê¨un+6z†¯ž=ÃѹØP®þÉPJ!hÕJkøÌ¥<¥ZZÃ~–âïdàhÑÃÅA–ýhUŽ],øGeV±ÞÒ½§{ÚO}š³$ª,BðwªÖ÷£[°rÕP݉ȶý߸X›BæýáÁ%Ð" @‹q7=þ¡‚ ¡žóœ‹ëÄàf7åÖîX¤Ð4]ˆÒFžAŠªb‚¬c?Í q±5]ädÙ D×°å(tè¨DCtÔR,‡j¦THó´¡ZQîdAÏÞ7ZÏ ¤1M- atìše™Cô–@2ýG}Ü‘Ö2ò&E P•0 ç/óCýlî=Ãüo;`i÷ ÉãÚÍpxÆÑVŒW±^å‡ÆyMÇÌ'.Žý*.Ý›“ì:¨«Q†nNlš#ž:Éó›ëßûüåxÿ/}6&‘H2_ «Ç°víÙïSNpökÕÎÄ1džžði9ÞÕÌ`3Øça’”)¯ž´I®V‰ëì<–"&v‹¾ïÆ¿æÒ^gy>ßí$ÙE•d8we|Õ•1«+Ã]ï¢öd8¾Îò~Å‹è*M’“%Åñ]¥kºª·½¼v¼¯ó^¿B®T“jÍ@”®®®ÄÄÄàààÊÊÊ–––æææúúúÜÜܬ¬¬ƒnÛ¶-===??ÿúõë=:{ö,¼‚9;vì¸wïžP(çÎ{óæMiiiLLLEEESSÓŠ+à„ xX¿~}||ü† UPPpãÆ ©TªËA,gggC ššš+W®À„µk×ÖÕÕ‰D¢ÌÌÌÓ§O_½z®óòò +pÕÐÐi¤¦¦‚ÿööv€www÷ööB-/^LJJb2™§NÒh4#õÖ`3ØÿÅ¢ÓÓ­1¬ÃÚ´‡Ãæ1‡FèpxÃNbXf‡C+k›sç/Œw¿!{ñömPTôl k°»ˆ5£O9ÒÃh6B§ú`˜?†ÙÑèwž=ïRþG“tv, &R°˜ßÇüÑ32ÙmÌIÝà|ïº|ƒû²õî §ƒtM'óWyµME„œGÈx8ú˜årýYbàó–‡+x„ZÈ ODÝܳÈÌÄxÙ<{iYYÃR +Áá—6;'|€ãê£4€?ÊžeM™÷¥…¸n#û ÿ(î¸Ö9®.¢“õÅñˆ¸ùvPÂ4ŠIý|ÉÆHMY*7tp\Î%Ô…dKV³~ ¨§˜‹Öx¡'år>.åá†û(ä ªP—2È:öÍÌ@ê”e¾vòŸÂÉj¦bŽkÓL{hè-®*A ìâáËýP ŽV“ÏmY%¨D¨9_/máð+ÐÁCû¡µì_KÂÖ͸õ“†4_²Ž£þ‰ oe0†`õú€.úùy,ŒlŠ>»y¾©‰ñÆe%“¬‚| ×+ÝöóBÕ%tòdÔ“Ü¥ , Ö”ïœâÒ½£Ö¹3ç°’æ°“\£SÜWmñ XæŒQŒW{M}”A6päâ]“unõ¹!Éx„‚‹«‹idCd7Ÿ˜mkæ3Ó\œ\QDuùŒ }o*ðüÖ°S—8@ª“'Ç{BɲpPã;µ8¤ZÕi€ñ¦èÖ=‹½§Q&Ù›1’]ã6y.+¨FtŠÛÊt¯ð„ÙöTs4ËÖôÚÎ ZUÊ Q¦~Kµ¤JhiûIÎÒTKªE7‡$•\‹] Ú2Ù¯4š‡­‡ýÔ_²—¾[ć:|ÿ„GôóijTu7ëkSÈÜßqÚÃK`•©Šé£†Öi‰¦Ò¡Ìî‚Ð…ŽH nvf73 Ø(¼YþŽBBcäãÜ¥.6¦‹œ-» +p3-ERœ<춀èC:©eÿç(æníhE¹“õ $Ó_LÈ +ôzN ‘ñ@áa€½¿ïÛ@gKÈ|‘“å(¼£,a U©Þ@ WTQËê9Bó°¸Ï ó»Ñn&dH ÐjUðôö÷åÀFª} –ýâHÈr7ÌÜdqì¬Ué>œd7´|ÆÚÉYIè76Í‹OdùÍõï}þr¼ÿ—>“H$@™/†ÕcX»öì÷)§8ûµjgâ2OÏ[·nw53˜Á öy˜FCÊÊW/_>yp·ýæå»—jÛΔÜoÈ~Z±ù_…‘ÿ>ä÷<Ó©s—ƒx·£x—KçNñn'ñ.ªd‡Co¦óÛ?/x!Lø¹nß?›øwÿRøó…²G7Îtw´É¥¿êEéééIMMõððX½zõž={òòòªªªŠŠŠöïߟ‘‘¯ÒÒÒöíÛWZZzþüù3gÎ_ºtéþýû{÷î… 'OžLHHÈÉɹ}û¶@ X³fMMM ÌLNN‰DæñãÇà0%%…ÍfÃÌíÛ·ƒsˆòðáCµZ 9tvvfeeEEEmÚ´éðáÃ[·n=tèPKKKYYYbb"‚‡Hyy9ŸÏ‡ˆWB¡òimm…è×®]«¨¨HLLÌå˗ǃ4ƒì·eÑééÖV„amÚÃaó˜‡C#t8ü/ûÕÕuÆï‚«. òR‘QD@”—¬ {ï]`]ØÅ*T ¾R“q£µ5m°©",¬ *(á!ŠO1£GÅ*b£òPAf‚´AÝ{úsï¶ “G¾ù†¹ìžïœßï÷ýÎÙsoQT9EQ"¸ZYÛœ=w~¤y¼Gñ²»;H¡t¦¨2ŠjÀ] çJY#·úïáÍ—¢liænsóHSù…ÑÖúÜßW*O…ªíÔÜc’çüì‹$ŸÑI.ê7UŠ›«ï$Š™e&º£ +%:Ãe1œ†Öe0}™LýVfâÔeÒúLÆ ÂHtA]·Ý_b,RûÚö—£r%§eôxŒ´_#Œ‡ìËBöCò3hh½†Aù‘è¬êþ‹-%~3,ÚËPUw&gôVjùr€T§‘ê³`u†;ŽÎ¨^F&xO†Ýg)ý‘':‡ŽÉŒ‘0Ïó}ø™ÌI£ªŒãJ¢~2 Ê%cŒrëÊ”¨8Ðg1:?3ˆß@GñÓ\ŽF¢Ó±—·}8ÅL¬ò²}}< +•*p9à×ð30 ™VÇ ó#@–L©b¦àd5þâV?T¥â +åÂ$Díþ!ÙÇë=‚<«¿Ê‹Xð”Û˜ŠK7y£ÊXT4Ð…ÿß‚^xÐDÈb`>«*Ûäcb,Ú,uЕ(PI4ÀÓ¡t?¯ÿ +|0TÎÇ7}âig&ZSÍøͧžªÜÀc`HE²küz÷ÄTOÅtj¬Q²—m°>¥ÔkeÐhè2…ç|Ûi˜&ÛìHhÒr€ž=ÉÄ{šyK ¹\VOŒûÙÊÁ½ƒveˆßh”Ž*b¹âè”`{€:nŒqÎJp,*µi]öíËE€ÁzÒÒqK}sûB³±ãl%k]?™“ L]É_—˜ßÍmµrë|ùJg[û °ÐìÉ’ov 3q\AvN&VUGZù¶¤ô ßJåÿ,v³3õs˜øÚT¡@Z–˜jÐN¦Â ¸#!Ãåay;5Òà™– Øi¡èT,pçˆo±4Ì[‰ ¹lÃ[òîçÁ3­%€|¡£Å?ÓB`› \lXÞâ׿3ÈÑ9Uóß—øØ›C¹ëÓú?‚æ(?‚Ë’êøݤaÀ~COƒ~ÒD\žÝø×ų¬%3-ž§â¸–W pþŸÉs€g¸laâ±?fÑÁN–NÖ’|‚Ï@žA«–#¢ œ$X4- ‡ˆv÷óÀyðL«G@üT,—'#»€G‚_(ç1²‘aé‚HðdëW!¡ÎVPîù«‰ßþ)¸ è8^ˆXK# í7pǦʒbSå‡CÇ[¿ +•;YRÆÅ;-ß<¶ÏpNrù*ü7~ý\v…ÃXsÊk¾_G{çHÿ.½3ÑÖÖæ€[FQ')ê>¹û çw¿ïÈÈ0 +‡›»û7FšÍhŒÆhŒÆ»Çõõõÿ«§·½ëuÓË7·ž÷Þllk¸Xü,/å§ýKÞì øq¯ç‹?:7os|šjÿ8uÚãTûæmÓÛwºtáÝû· ® yÓñíõßÔ~ûðùÖî:z:º_ÿô¦WÇ釮Ò××wóæÍÜÜÜýû÷Ù³gOppðÖ­[¯_¿^RR²eË–´´´ÖÖVÀðôéÓÝ»w'&&îܹ³´´ðÀz½þÑ£Gå$ÌÖÞÞÞÙÙùàÁƒ––ðøñcø°ÁêwI@áµkת««á·æÕ«W#Ô·Ñ÷(”›7[S”†¢î‘ËaÍÏÝ kÉåð–HTNQA”.‡VÖ6gÏiïQ¼ìîR()ªŒ¢p×DùÒCÖˆð­þ{Šò£([š¹ÛÜ<ÒT~a´µ>÷÷•ŠÇS¡j;õ÷˜ä9Ãy—äSâ—âæêcÖ5c”³Ú]TÃë-:Ž±(‹å²„“H.›ÑgÓœ–A‡”âª[V·c¡…Øh¹Ÿ]_Y,:/”g38á—$§”rðM#HŽNÄ +KÓBfYI~=ÛªãXºò¡\Fåœ0 #|Ó·0Æ×,}S$_î3(X›Œ=µÉ]J@_+ÈÖ€á‰xXüZ*ˆ„rT¡Øâå¦bã‚äyè¬U(Q® åÈ`Ë x Ѳ¢Qµúògþ“MÄË|¦ö–Æ *:,Ã_<ƒTÀ Ì@XhI-d±Õ.}¦e”ó'É•¨&ŒÁd6‹å¸c:z`¡¥…òãQ¨:¡ûh䪅@ùd3ñéOà&V(0-OY(ÄD4ä— –+AöŠ}&ˆEŸÊ¹3*t ³[À—C‰’DC(7•Ä ºåö-ñœj,l$ìÒY«·ù$lt]ë»Î5vÛŠ=’vx{))±Ñ†vÿ>….¨Q^8ÖPP‰j3ÞiDdÒè¢(P©5“õ°5 p´hç@— #„ZâIƒÓ:>ä2ÈU‰.©Q©bã"{€*cTäΫP¹»Qè8o<†8–ì×!Òñ\»«vÙ­sLdz3‰Þà¾:Õ3n«rkìÚ9qëÜ–mž›ü™WÔjç)öXw[“ú?A§Pq^cÆÚk½àI¢Vƒ\qIýp_¨«­IÐt‹øä:Éc Zñ¶äµ20Í&8!ì‹‹ 9là K—I&O„Á¿ƒraÿÈ Æ`y? -ْБ²ht%áÞÞEÎ6@¾Èɪyÿ\~4ñ¼8ádØ’2¼ôI\Þœöá´‰Pî1Õôö®`t!GãoÉøDŸ-ÐV@À±'¢QmÂÃ}!n“LB],;òd¸¶ \°"ïç¡GÊÀù %«Ãv¸ß•Ã.r²pµ5kJ—âók6#Û —à1ÊcÁ°qöûÚ›òPë§P«‹À}ѲCvË °Î&'áaB¼:¾íÀ’ų,¡ÜwšÅ­=‹„ŽómÕ72™?¦ ü„Ž‘–ô°pGKÊ\”0sùF˜¤aãòUøoüú¹ì +‡±æ”×|¿ŽöΑþ]zg¢­­Í? ZæIQ')ê>¹û çw¿ïÈÈ0 +‡›»;¼¬4›ÑÑw#8ŽÓéúßü‡ýjmê¼â×±8‰ã$¶ï½NIHh~; % $PøÚ±?§a M%À¦†Ø$:uƒ1„J[ +” ÄH×,X I!Ûlj¡4ÝTÁxAÁy,øq}w¾{`@MCUs|tu}ýs~çœßùü]Ð7¼3þÖÇ|såÆ¿Nþnhÿ­(°³ttçœûïëooÌ»ñÞŒëïe_ÿÅŒÛó·}27¸£düâ{ûÜßö|ÚwµÿòP¨84üï€?¤iú©@ããã÷îÝ»yóæµk×à& +Á“öööU«VíÞ½ûòå˧OŸnllÜ´iÓ;w`=xlccc###œ7¸}ôèÜûý~xîóù` |vvvÚl¶Í›7_½zµ··wýúõ[·n½Á¾ZBÜ]»vmÙ²åÌ™3¢sVàçþýûày``àáÇ\,8Ÿð+üCÁu„•ááa+÷Ù4§dJ¦ä.®µke¶ÃúØÃaÏóN†½ìáð ¯ÃÊ1¥2ù©Óg^uß#.wºò0¬ þF]ã½È‘´‡‡Nõ1¬ÃFê»{åö­þÒY‹…"¬².½nµÚ±¢ðùï’oV£wÉüºwTîFu¾ꊅ1¿©WѦÃðPÁ&ŠöšÃ^SØK±× õ˜ÂÍ fÚK`Í1óyM÷šb2^P?+mè°…ér¼TÐcæÌ™fΧF°eX'4ZCÑG¬ÌÉš¿þ²,;%nA¾ôÖ~#xó7[g¯‰n¦¢l'aPà~¡ÃU`Þ¿×èÐBjÿè +]¸Ë¨û¨‡b¡N€Ðf¦)˜‡<¦ÐÁ*æÎáƒæ†²t0Oò÷ü@úÌþ¬„")˜‘Škd¹bX·t“)°Ÿ¢Ú˜nWûêדã5ÂwÀÂt8üM&( —ì„9õØC3Ò×€e-æóÚn[`,„½Ë‘ÅŸ\7›9Qj³Â¯ò©²÷ æT ‰òªbN¸îüvqm‘Ìå ¶éÃÎðï«yªó¤!§‘R°)½H!_(ÚåÚd!ÿ'•Yãm¶ð\~Ðû´Ósƒ¾#äÇlá.ǟחyEnÊ7[çAôàaØŽ&0GyˆLb3ôѨÂVÖíürÓÜâL ˜ë2’ÿ²¡ r ¶ZK=œ‡Ç€90ž0È€<Ô‚¶‘¯6Ì)#’ø²¸K_«_£r4¼Àf¾¼À†6s4b¦eY±¬H_rïîà«þ_úμv•–•AË ÖŽaÿ`Ï~/rŠ€³ßvå" ‰J­>þü«ÎfJ¦dJ¦ä;#á0  +…ÇÃÌðØøÐß:|»©±_eø;ºóͽuw÷Øì¨þ¨xôƒ¢‡ÛJîîXÔ¿§fp¯cäã9ãÓÇ7¤û<î¡ §Fü´?Ì„B4øcÂà—ý ÿáÿzpp°³³³©©©­­­¥¥åÈ‘#.\ƒ/˃Z[[·oß~Œ•ŽŽŽ¾¾>¿ßÏÅêéé9wîœÏç{iÿS2%Sòÿ×Úµ2 Û‡a}ìá°çy'Ã^öpø×aå‡R™üÔé3¯:ï‘ —;]yÖ…a_£®ñ^äHÚÃC§ú‹ðæ‹a +#uéÆWÊKÊí[ý¥³ EXe]zÝjµcÅ ¼K¾ÖØ +êרݪ\•¨Ëãaùd¼KKÔèH“JnVáV-aבva×>Öj^­#lZÜ¢–›”2»_R¤(Î’Äðx„8ά”»õ¤Y%3«å6 ,fÍ'=èà z×*5nRÊmj¹[G”dI„1<‰ˆ¿0OêÖ‘f%,j¼ZûDhÎr¢%,¹YÃuiaUxR¤ÀçñÔéâZéД +¯RËgòÇH¬Við%¯“ÕJ–Š‹¦eIÒ¦‹H“ÈŒÄô¬$ЄTgEb,U së Ä•Ü +T‰Õ¯j h¦’ÁÕm Ës H‚D!¿bf +²AŽM„Q +ëГN½ÂiP¸ŠàŠ¾²&­‡×‘6N²Îçá‘Ž›”ˆPäíÖ,Z1ìb‰œ›)A½„1²´„ôl‰"Sœ–™4-[’ž™Y“™Ié3$R"^ äC ‘€?;+ù-=ÊÑÌrÛÊ%¨'«¹¦è‰ÈXipJ)³*Ñ\”f§Ä bı‚ŠœT—Ž0*08›ïdŽ1pk‚®©ñ:Y™—š' cÊs“á« 5” gsd=h¹âpÝDŒ‚ +صˆ¥ÙÉ`ÈccÊr’Ý`¦ @ŽGX­#'‡Ú!ƒ¸´´ˆ|sf +GÀ?++r±©aWAËFÇíH£è„&mvC(Ë‚è±H0o¦´FGÏVn–ŸJ\ÅÆÿ°_­±Q]GxÎ9÷Ü{w×^¼ƒ1{×oïn²vDk[1j„Ì#ŠÁm •¨THÚ*1©D‘ú£iUõOE›*ªªiš¨âh+$ªCû£h››P…†‡ËB0¤-¦#?è̹÷®×Þ5» J[—Wgïž™ùæ›™³g#xæ”oU‰—R⢳Ö×_† †Àæ$ž2ÄO±¬*5|»-¾¬½ÊëV‰—JÑZ‚³lw !_jÏÂ\äц öê¶ÖŠ/ÕúKUân]|¡ +y£~Lñ†ÌlŽ—Ï)ñ¶ôñ¨•8•ì‘ê%.ÁjÏã_oØÚ‹‡ysîÃ|gã¦ôºµ7¶q{•î…ÖxÛèå«…þ^Z4’L&Û;:°d-ý§ÔÝ/Ÿ[ÞýN¨]ê»#&‰BgS”¢¥(‹CfÒ“·oO\üëÍ}/Üú~Õø‹+¯¼ÜuúÍŽïûéð[»?ûù×&ö¬¹ýÊoîéúû/¿ùQÿ‡Þ~õÓ7ž}éÑñïVÜúA̓?œûçT†ó™™™ù!çÊäää¹sçŽ;6<<|íÚµ»@žæ9}=11qöìYt888866–z>===>>ŽOnݺ•UQŠR”ÿéîë ì8©.‡¹n†GÕåð8c:áåÐ:|¤ÐyÜGrel¬sKw=À~€aªËçJ:ÀèV?ÐP±~ÃÐÈH¡S¹GI^¸Ô¾z4amOeÏ.ü-Ù”û·äÚ³ù©Æ¯~;öä3‘pC™úe@çU0¦1&hj1WA¨”2ɹɹäØüŒ“ô„ Û6‹¹`\)ã¨@t|¶õVm£‡Y=8~p3×7sqÁɳ=p„Á ™3eÎL…Ÿ)[›ÆÑÜÞ ð`'¢ 6œˆY[+åù¶šJkœ0`Pæ ª @*? 0`y&ÂU +Ä'…Zè³2CÏ!A+; ¸"©¢HÇÖÒd)\œœ¥R ?󅞀óª»S#Xˆaf³ä”Us<U&¶m&B„¤ .Eš4Z˜‚èJUÜjZåÍâj$¨¸_ ™–®• 'M‰S°C¡¹¡&Åá͆MUžU+ +ÕEÍ…ãRKƒÝöw®)eŠ¥àVtkÊdZ7:eå&:-; ¹ ¡˜E.2ãâsU#“ƒ‹³”41TEÒ¦)Ëh§æEWmiñŠO¤Ý$w˜«@d%iš¬VdÊœëÍ<ÇO=G[î¦ILKRÇ,|Ø°i £3GX>îœE©ÖÊÌÚ.+® au8¬•âùÜól$¯Ã|gã¦ôºµ7¶q{•î…ÖxÛèå«…þ^Z4’L&Û;:ö€~€Sêî—Ï-ï~'ÔÎ.Õ-‘h4‘H:›¢¥(EY233ƒÿÖzrfæÆÙããýÏ_ß½úó—Öœ½wðàkþã>8òöù7úÆ_éœÙuí™_çýw“x¯}ý¹«?ydüG-ÿþí‹ãÿ¸8uO¦§§¯_¿~óæÍìðî^¦¦¦Ðá72ýàÃÝÁ63â½a(JQŠòß’î¾¾À^€“êr8ëfxT]3v Sýð‚‡)t÷‘\ëÜÒ]°`˜ªÆò¹Ò£0ºÕ´T¬ß042RèTîQ’.µ¯^'MXÛSÙ³+šÇoÉ&¥´Þö\¬ûMu1¿Ð˜LšB39ªtkºGÓݤ2Cé#´6i–j\rl~.˜ýÜ%¥Ëò 3ÍÓœ¨.ÍpK—‡Ô~â±5«I +€t í™%K0>ügšÎõ ¶~µy®+{ƒÐ Žª›šé–èM'„mëIO?ÃB‹;qa” \='H2W"–Í%q.t¦#L7-4×,€,à1"ª["uDn0‘¦b1¸­òɬœ%! .ŒÝ@>ÓHÖ³!Ÿ]NJ¤Ð©@ÕA7¤‰Ÿbž.äYÃW,©Í„ÓKÙúÄ“Æ•âßðh®Òô6plÕ7~*õ + 6¤a·±¢T±MŠ…v¹%]G¦Ex +L¢ R+–Àâj†˜¶®©†FkÓÊQ#5¹áRÎ «.Ä •¸Dy£B“Ã…ŠBQ<6®RÝåÑ •cªgž B¨ÓèQE0"Ef€ ZÈ­DôÙ˜Wa“¦FÙ™T,—›êE•25Ý5ÿL˜ß ª[hŽJtM×TÒô‡Þ¨\"Ådª¸¹Kg`5w©ÄRš.-gâ)Tš=Œ:å͘tÑlJ5SÕa)ƒpjŒToXch ‰©Ž2·=æÙ&QMÅ*Ôt:‹h9S´S-ÒΓ,‘åDsk]r!xmÄ÷ÄΦ'Ÿn~êÎ'¹­›vÐëÖÞØÆíUºZãm£—¯ú{iÑH2™lïèÀvmè8¥î~ùÜ"ðîwBíìRÇ^$M$…Φ(E)JQ‹Ì(%™œœ¼vñÌg‰ß}úÎ/†ßÛw⃿ >÷ñÈçßœ9}ègc/wN}oÙ¿ö¬;ýÿ6òñù+ƒŸœ}ÿÃ?úÓïÏÞ;zì­ñËç'§¦ ›LQŠR”ÿ?éîë ì8©.‡¹n†GÕåð8c:é×øÁC‡:ûH®Œuné®Ø0LUcù\éQÝêÚ*Öo)t*÷(É —ÚW¯“&¬í©ìÙ}âé¦?$w(݉ۚ¾òLdËÓ«­\Yã]Uç­nö…">õêGá¨_i`®úÃ1Z„¢þP³¯öÁ@ÃÃ@¥›ßSª×Äüµñ@¨É‡e³¯5è*⯉úk£AT'âB†©üˆÐÂÙÐZ^ÕXf¸`Œ•WºëZ‚£ºÙïd¡ÐFæûÄ'¶“&_¸Ù_  †ÉŠÜ†ò¯¸*Ãê[‚å.à.ÕÑ°ö¡`U³¯:âKKÇ¿@"–Åy³¯&ŠZŽ”YØr¨nÂ(þú–ò–˜n‰8gKWzêâA¬Kˆ0äð`“©ð`"51¤.è \pÿ¬a³1 aãÃåÕ¥BãˆAêbehIýCÔÕeÔ È0‘ì«¡ZSÅÏyå8Ëv”lk±Áb~ëí¼R’·f_]œø/)ÓIYÐDÂ1«U,õ+¶ @-¶_„z8¹ 0v¬fe¨üP.ÖB¥ie½T/_öêq¢é¼2ìÅ> aÕšóŒåWBsQ“{§ãPa÷ -KWÔz±"šä+j—ÔÅË«)ýyÌðc•ÆšßR„¯ö:œsZ3D05_m,€#¹<äÒN|y¨´> ;›a˜]ë¤Z×Dò9T?¨èj—VÖPâRŠUõ>âõ­éÔÇÎô¡ÎTÚQ_gúСSG +g¬Ð3)TTˆÜ4$tý;ᘌ º¿YìÉNþý¯o}k­ÍúY°`±óàt:ç^½x:>öxä#£?ŒMØ'¦^ÿ÷ÕÒ“éÙñ¿ýyö7Ç–¿Myù»ÓãÿëøóyÛ«Å'O_OL?zòä_CÓÿ¹03 ;„;,X|jPööòºÐ3› ï3ÃႸP"`8Lâ'ß¹{/Üq|Fxáp”Õ*sº…Ð(ÎÊH6Hà©~¡b„R+*Gl¶p‡²MØ'§J +ODsQ¹&Mc¥kLÂÎ’¹ÕFaµAˆ¯FAmYgi:hµ…T[(¸ªÌ`B†×˜)f ©ë—´^‘}ñͨ(â@V|c¯¸å¢´oE1Ëí³][ß“¬·ŠLWdêêç™qÐ}ќȒŠý-eº~Zåep’ y³­=„¹G%ÐA×'6^’9y *šH?Äkè5_ª,àÝ£¤PÕ€/A™«ÍžÂ†.‘á² >§gŃnä‘“†K²¦©ÊL3¼4>†)Ûß3Ç"à+¥í•¶_-¨h̉KŒñüØʆ,ãeHÞë:<%A×m!Æ@¢ùP'«?'9s!O\œJY¸·ù¼TwVÌ<²V´>2¾52ž²YÖkøóZ¤4«í›¾Í?¥Ïæ§Æ‚&q‰ÜãšÃÆËù =2¸Aþ}¡¶à¤Ô[iãÅ%¶B“ÕzYÖØ-ötJ°—!釬1‘ +ü~0¯è /sÜ€¯f•>ƒÃC2iñóg3áþ¿´c`·ÛKJK!eyÝDè3û…2EÀì÷YyaP4=44îhX°`ÁbçÁår/.¿{嘟z9;=3÷rn~añíÒÊêÌÛUÛãѧìžþõ“:?9>6ûnuÙéž_XzùÚ153÷ìÕ›9ÇÂòò[—sÅív‡;,X|RPööòºÐ3› ï3ÃႸP"`8Lâ'ß¹{/Üq|Fxáp”Õ*sº…Ð(ÎÊH6Hà©~¡b„R+*Gl¶p‡²MØ'§J +ODsQ¹&Mc¥kL!%×Ì@V…J3¥é¢ë»èºNª®“¹vØ:ëø‰QšNš1²ÞJ¹×ñËÂcªC‘‘²ã›Ïçµ]-hìÃ)6Ô¬oÀ~âÅ·Ó÷?Áž`°y½•Ö÷‹-× tý’ôÃñÐ}Ñœˆ#§2Ú¯æ·\4XéM>ܳӧwª.Τ¦kM´–óyæk…嵇Áûþ,Þ™sRÓ•‚únü#©ÿX6zdn5 mxF€Q‹`¥ôý’ökÚñAA(ÀáF~)Ï4_+0\Ì«·Š4ŒA²@pÿ̽YÀ é¿*:Ý"àñc€CŸû>Û|-_VâI“f-Æõ\„*²oÅ>¸ÅdºpI4tÓ†Kùm¿((:º@„¨8ÕtEÖ‚¥¸nՌԷ»ÏBÚ˜,¹ùœÄr½PÑ*Ø›¾4á%ÅVjs,׋šÎIëª!µF蔼ÅìÑA×/ýÕ*!%v£0’櫺>1.ÚÀõÐù~7õ†\‡R LABàRË÷… +ƒ0!™ Ç%ÅV5f·_-ÐH6½B‘½s ˜êb·ŠšÎŠ-ߨÍtÒÏvñ95­È‚¶ORßé}¿ùÚÇKiÕiÆ I_ ÜJ507—_c&§îÂ]°7ö”.Çò]QÓ€jb×xÛÜwî:¼}ÝE©Ì¤Â(”àýÒ˯4 +ÀE•>ƒÃC2iñóg3áþ¿´c`·ÛKJK!eyÝDè3û…2EÀì÷YyaP4=44îhX°`ÁbçÁí^}ûne~éíìüâ›ù…å¥%§sÅå^_Y}j³ýø—ßNü¡ûÇ»¿69±´‚;ÎÅÅEÇ›ùÙù¥…åwx±Óå†X°`ÁâãAÙÛËGèBcÌp8l2¼Ï ‡â6Beˆ€á0‰Ÿ|çî½pÇñá…ÃQV«ÌAèB£8kD(#=Ø §úa„ŠJ­¨±ÙÂÊ6aŸœ*)<ÍEåš4•®1?KÊá¼iØxðÌõ|¯À·¹ë·þLѺî"Gm&›ÏIŽ*DZæuÕØ'R´z–?Òúß9èJL»Ö$ÔŸ«-$¸†î‹ŠŽ(úzó UmÀk<úß6H¤ (°’¹* ©ë•gÄp£Ò2ã°=b#£?üñQx>6¥ €&སM¨ë+MÂÌÜP :&²øx:ðÑta¶ ¸[÷R:@³°é¼¤²1›—x 1ÇT‡´Àª \rÃöõ÷cÙ8¸–}™)”¥Àgu'ÅäÂãËÚ†PlÏW ò¹J3©í—œÔeïMßšìŽùJ‘©¨ÌTÀ7¥`c.¶A£ ¦] ëA$îÝÍãTi³ HjM$ôûö6 M¥\ðÍØ4 =©Íá%ábØÅãUÒöŠUfÒÓ’;ãë$¡Ø„µÐýâêAbJì®=Ñ• Y 9| š¯»öÉáÃRTx-h¾<Å‚ȧtÙÉ©±x|bLyM¦þ¬ÞØ»1ˆì8;­Xùy_ë»DUú ɤÅÏŸÍ„ûÿÒŽÝn/)-…”å!t¡GÌìʳßCfåq„AÑôÐÐP¸£aÁ‚‹·k N׊îàøvÅå~=ûæ?ãÿ~üÃCÛÄãÙÙ¹—÷·Ûµâr­ÀŸËí‚;w8é³`ÁâS„²·—Ð „Ƙáp0ØdxŸÄm„ÊÃa?ùÎÝ{áŽã3 ‡£¬V™ƒÐ-„FqÖˆPFz°AOõÃ#”ZQ9b³…;”mÂ>9URx"š‹Ê5i+]c +reŽ±BlÆ\ÏÙSnÌÅGKƒPaâ[ïi4è±(ÛH}¿äëÚƒ‘ľÌ=* ÕÐ-ª6xŸ5„@ÆÿæA(Œ¹="pšvpt_4'¢¨|Ÿ¶O¬l'OŸ úø6ýz ‹&oÁ +‡¯™Üب´Ì8 SßEWo1dÃI‘oåÁÓ-¹ŠVaC·¸Ö$<(H81QÅÇö7öˆë:hy ŽQnØÑÖYIx©mèÄÿc¿ÚžšÈ³ðiÈ CH $š˜ô5*å,Iª¨‚ÁpÑÙ¤Óé\Кâóßø?ø oê åk,-µ|g̲‚óBíθ®Z{ºã¸Ö®Jdí¤ú«CŠ*šœó}çœ_¿…\Àá2c ö~Ë…ÅS™—,PŸOw€b>©Ò ŒÀå"©†ÎO»» ]äø€2Eºù/Í!ÿ3ùaÍñO׆ŸBÂ.\Z:=4ªL¦µÏ4•ðä68œÌf_¾ñ•ÿêog2‘f* &r [{æ…œ5ÁQ‰/SŸ_ÉæÀü.é— ¥®µ´qæÒR°ÏÕ£w˜¦ø“x&úóÊ7 ¾/M­v–T×ãeÒ5ÔsÌj˜“üK?…’ +ñVÛúEÊø ÄM¼¸túøˆUÙ§ùÛ¤·y)Ù÷;mÞÏÿ‡Žr ´N…L—¸…+“Æφwž¿èô{éРÑhD¢QlÙ9€OUï׊‹@ï÷@}2 +–­×ëf£C‡‡oÍ_ÔÀõóÍÛ¿ÿã·¿îþòóöÎÎî/øû›7ïŸRþCæ³:tèÐñ•!Öj.€ëOTs¸¹Ÿ3¼§šÃûq `4‡N×Àí;w;ÍãawooR7+]#Z±ô›„âꄆææmmušÊÑx¶>3Z`F‘Êlr…nñ:ùU"¹Jå~:KêîîñÚ¯Ñé +››Þ/¸Û,ø•`ºÌ¥Jì˜ßŽÛg4u…/¸sµÐb‘ÆÚ@i +:S ]XôYm&÷)»´ÎJ%¶=âcv>Oa:±@ûY§ª@÷Dl4[ ¥ÖÙ8*ÐdRÀØ8óÝ÷Áþã=XƒÃižMù²U•iïÕÀÏÅ5:SåÂ1·ÁØÍ|s\Hmçð÷"Saãßܧ¨‰ÕaœJxs5N\£šuj¼ºzü +™.±É<94Ökï7_¼HW8~•jƒH<[ Å ›Ã`s˜f„“™2Ûžaàó$Bt÷öXs’iãLr•ÔTsürõ`¤÷—¨ys ¦yon#$®1Úe÷Íj[Ó%náŠÇd‡ñ³‘ç/:ý^:4h4‘h[vàÀSÕûµâ"Ðû=PŸŒ†eëõz§ÙèСCÇ +ÿzýú·—¯~}ùêå?_½~ó¦ÓåèСãA¬Õ\מ¨æps?gxO5‡÷ âÀ$h®ÛwîvšÇÂîÞÞ¤ nf´ÀŒ4"•ÙdžÒèúÑàód¦ÆÍJþn1ⱉEZ*3ü»¿Rjh–]¦0‘Tb1ÆüvÜ>£©+ÍÖ8qn›ÉU*SæfSþ^»Éí³Këlji£þÒGÙýœKQÀÒ=sg*Ü噸Lbh[€L%d¬!˜­rñeÒyâÖÐç´ÄR¾t… +mÅf`ë³µPd~Ì`6°ƒX˜¸Æðr»+Á¾¤K\b™õ)“Ùë0M%¼Ù +'­›WÉâ +«ôˆ×îè7_ºH—Ô„ö:(B•Ã©èìAâ¶>óŒpR*1m$¾X¤‡Çl=VãlÊ·´quˆËA­ó&WiÜ}ÜÔ‰;œæiÞ›­†p µËþá7ã¼-\ñ˜ì0~6²óüE§ßK‡F#bËÎÜxªz¿V\z¿ê“1PÀ°l½^ï4:tèø£áíïèt!:tè8Zk5Àu€'ª9ÜÜÏÞSÍá}‚¸0 šC§kàö»æq„°»·7)ˆ€›•®­XzŒMBqõÂCsó¶¶:Må€h<ÛŽ|3Z`Fú“Tf“yJ£KèG#™'3Uv.í7ˆM,ÒR™áßý•RC³ì2ůPR‰ÅóÛqûŒ¦®pl4SåÄ5º} +¬R™27›ò÷ÚnŸMZgSëL;[.±‹EÆÏ:,Ý1w¦Â^¾Æ >Ú꯶ !“|>ˆãËA׉cXCŸÓKÂ1 +mE^ÆzH±@窡èܘÁl`'³Ê00¼ÜÖJ”bòNBb™õ;P“^‡i*áÍV8¡@Çe³«dq1׈×îè7_ºH—Ô„ö: ñ´2 dÿ`·÷™/'¥Rû†‰ã: {l=VãlÊ—«…ðHŒËA­ó&Wi©Äábj$îpš§^å,*2Úeÿð›Ó%îâU¯ÉãgÃÏÿö¢Óï¥CƒF£‰F±eçn›´Î`´'u\™L•˜ÅkŒs* +X 1w¦Â]þ»@ÅekÀä Ÿ§2U.¾LºNÃúœ–XÊ—.3ÉÕ¶Ž"¯ÎƒX sµPtÁÓmê¢ÿ<˜­r‹EV•6V—)>OK%.±LŽú¨I¯Ã4•ðf+œP 5m +¯dW¤H—•\#^›£ß|éÊilŸ'Û ƒ: !†þÁ$në3Ï'ÓeV(h˜º¹MaSëÌb‘³õX ³’‡‰7Ð.;žJÇerØ£œE§yš÷f«!¡H«k¢!ñfH%vaÉc´ÁøÙÈÎó~/4H4Š-;pà©êýZqèý¨OÆ@òõz½ÓltèСC‡:t|ˆµš à:ÀÕnîç ï©æð>Aܘ͡Ó5pûÎÝNó8BØÝÛ›ÄÀM€ÇJ׈V,=Æ&¡¸ú‡a€¡¹ùG[[¦r@4žm‡ÏÇ f˜¾<œ®pBžÖâú©àWÈ\›Kû bØÓ»X¤Ó6!“ åÆJ©¡Yv™ÂJ,ÆØi;nŸÑÔ‰¹sµ¸†"Û£@r•ÎVB³)¿ÕntûlR‰‘ÖÙ6äËÁ¸"2™*1b‘ñ±NE‹aâßìWYS[=M&$ d p“€Åw‰P*$éNÈÀ˜ C à|ý¦¿áðAßÔÊ×övÿ*ã!b*tÊ4€@Èì þ5f*HΞ5õût7”+ršÙ/@†¯.FÖ-C甚 +êRS`ÍâŽS§®C~jpÐÄ—¤Aü\w hR]£qtάYØèé’qŠÞCàa#Dëy­¾Nssî7?¤#,Htªú/áB1X *ꚪ p]­æk)Øè)º7‚ø×› àjéÐUU+¯{{f×­®Èî«S58à Z:uÂ.¨¼ê2R6N +ç¡`§¸hà}b¦C¥C}½ƒo+÷ïÒOƒL&384)³!ô¡OBïWJ½ß[a¦ñ h:N—;2dÈ!C† '.•2 ô¡Bs¸Y¬3|-4‡o0ì9BÃæ°ÞÐðâå«rÇñ áëÎÎ0Ë™z†Ð>kX)-=Ø&Æwõï@¨y|âýÖV¹C9">ÿùeèâu…pg}kŒ+BLÍÙÆìñ ½%¤Ù9³aót+-絞eÒ¿JO…À)Ì$NÒïÎ%Ü—d¼+Ô¹=ì>¥J10Ö6³Î¸ãO À'‡J¯Ä·Ò ˜ØTg£D`Í2æéªÖ«Û»õÞí]¡áùÉþ}ïÒ“¼WSA¹DøV.Jv‘õ €J­¸lï>že +8Cçé¦À ^\a|fÝ:9OÔ5žú:µÝÓ eµ!TKÉ’ÒD²RæOqwŒ +¤˜±v¥ª‚¼ØHYÝqbªP)f/+‰ÄbÈ% QCUø’ôä‚©ÍÈW¦V¯qtή[¸ Y;ÎÖ8H,‡aH¨Š0îMÒ®0Ñ|N§«ÕÜœ3ùWg˜8¸)Žé!ÄÀW„„ò›\Äk« pð~•5ú“ # +°-Ú÷çþpÉ,ž9¸/ia£TS›¶²Z5îíÍ…#1_ó#û*T<¸ƒ?Hï +3¹`nîÐ »@3â2ÂÙÿ¯’3²ï߃Ò·ÂŒùÚT:Ô×;°ýå[¹—~d2™Á¡!H™ ¡§}z¿RºèýÞ +3íˆEÓétºÜÑÈ!C† 2dÈ8p©”¡'}šÃÍbák¡9|ƒaÏF4‡õ††/_•;Ž__wv†Y΄Ð3„>ðYÃJiéÁ61¾«‡ÐBÍãï·¶ÊÊñùÏ/W.^¯P¡ßÙ³u‹+B8„åþ¥2dv†ð“2o„c‰g£äÜ]똻[¡ÀZÎk=ˤ•¯«üÌ÷ÙãzçWÞ \8Ãfÿ3 Ú»u°ûTêŠËcm3ëŒ;Nî‡Z:ó¸X³Œr]g´ÊV£n:Áx“ÌÿJ$y4võÀý« !Œx=¯€Fqùz;”Át‚t„LÀÐy¢)È[ŠÏEç¢Ä܆õÖœ¹ÖP jê4öéîÀ¥(‰pdJÿPð‚{nSuúÒh›B‰‘!5îeÒ$N6e‘¨ 6Šƒ“ ¦ÖN¾2uz͈£sváb  ñ¥Šj^T"Ȉ+‚ûVi×~¶]««­º1k„“¡ˆGc2µwàˆÛavÝ:9×6ðÅ ­Q²ÆÀªžÿhBÄ„5Cfœ4J6¶VWU«&|=sw,BÝõ÷O!ѯ3d†a'Þš7渾®rÄeœ¹cårÏ¢cæ:ßBR½¾$umºU©E}¶Áííoåþ]úiÉd‡† e6„ž"ôIèýJé" ÷{+Ì´#M§ÓérG#C† 2dÈ!ãÀ¥R„ž ôQh7‹u†¯…æð †=GhaÐÖ^¼|Uî8~!|ÝÙf9BÏúÀg +¥¥ÛÄø®þB5O¼ßÚ*w(GÄçÏ]¹dÇ”è_lãÂý^÷2å„ëg˜Í!ŒaüÄlÉ,¬É›+Œ{W¨à¶«.#VÚ»j|IföŽ•’<‡%Ò>p“=†k)(Áxî8¹øÀæ[¡ÛŒ:„0¥J10Ö¾xß4¤9¢çÃ(fæ»"8x_¸oqvj*•­F½o•™Ý°æél_‡}Î+°pÏ≓çMµpþ¨*çæïÙkàVp©ã¥ß JX<†O'¨Ð}7æÌzƒ8èëÔק»çùR$÷gæšc©pàŸg?Ù³°ª®¤ƒô¯1sw­ý#m˜‚ìoœ»cÍ.†½J(]áÂé8°)r–ÞT…mro9§M´5êQ¶ *sú6%­YÒŽ(¡n‰$pH +_w­ÎÞÐ|F«Wßœ7Ïß³ºcÄ^hûû1_íbdòl/dq/ð.>ì\0×Å «U_sçî2ž™¥mŽëÊ¡`F²&羞{–a;𻯮±òŒVucö·à›;Nå~E8óS\8ûâW…¶@—»7Á,Üë½µ`nh©‚Àk •×<Ý‹z½·ù™—+D:BE.¥ö +•=1 gÖ-£Ó-Xê³ noÿ]îߥŸ™LfphRfCè)BŸ„Þ¯”.z¿·ÂL;âAÑt:.w42dÈ!C† 2N\*e@è B…æp³XgøZhß`Øs„†Ía½¡áÅËWåŽãÂ×a–3!ô ¡|Ö°RZz°MŒïêß!4€PóøÄû­­r‡rDd2]¹lÇ”hÄÓþw¿o…æ¢%Ù(!ÞùÁ Z×sǸFÿ×?ê2V(PGOÍì†5øÐæ^ïx6‡};®÷]×\Œ_Ü› Ãÿé÷­2í]:Ø}J•bh¼=ü¸vÃÂÅvE€¿®¹«OWYÿŠ‹“yɤϥO ¯:;UE[—~fÃ|`sÇI6FI‰0"}{˜¯lªÙ ³{úS0Ö÷'éðã>_‚î0Õ‚ªJå•›KûçïZÝq‚‹JÞ÷í8úï‘Ç¥ðÙ8H1±ÿ_¸µ`Ö4À¡¦^3áï =î÷%)SyQ;Ã&áyAñEßf ö!¸22zÔwá÷6 Ãè‹¡‡¶9¡x±ÙÌR Å4ÌæŽS3)6£#„7·Wƒ&º:µ}ºžVi-µç…,±à {À5Ÿ‘é]¡—õqª¾©²Z¯š\Ä¡$àd`sO†låÅÂ+J&7x®k’ã·DÿÛ?Äk„bÐÕò‡ÙükûçRÁbÇÒ@Ê‘4_|%Õ@ö6ä½óÛð'©ðcÛ?ìW[oSW^{ŸsìĉÏÅ6Á8¾ßâÄNˆÛÑ4qeJC" 3"N —–†V¤´LÁT30Œæðx€7à%âÕˆ÷H.¤™ô!¿`ÖÞÛvN;‰# ±?-E'ö9{}ë[ßÞ^™X=ýž¾ú_QøˆÝ‡ö·níæ\Ûì‚zj\9ƒ©/–ÇðøÛBÆëwaá–¯gú|;~éæ(?‹Ú:[z¯©ûxª`v´=ʾpgü«óGH|:>¹²²ÚíߥÕju²PÀ–åî¼á³_;SÎ~ÏùSÀÍå*•J·«‘èJå²àÀk>.µš Ÿòáð!Š@p8ôx}?évV×׋³¥4À€W¬k¤‘c‰°©þÀ€zæåòr·KÙ#~ÿýÝŸÏ û&O{®ÜÉŸû%‡¯“¥Ÿðu5;û“¸èxl,{ñæØw?ùüTØáPCIsþ¹Ë·ÇK×FðÅ Xêá9¼Xž¿ž»r÷“¿_Íø#n¢9ÔÏN¿ÿ×ø…£œ€­üÅN3¹ÆþÎ._¸yôûÛùÂtHÕh æ>÷sîò?Ö¨^.@ °­s,ûðìbfþúÈ•Ûù³?c:ž?8‰ +ä/ÝCnÑ\–­ÌõœC-Ž\¸1öãò_}w›Näග'æb ·Îÿ‚7gÕ}ˆ_KW/¼é¢n‰š+Ì¥ßƾ½5–ûë!däÓCßþvôbyÔîÈ +ÉsñBØuSÒ­Ùw&¹™ÏÈù_s wƦ/$¼‡]¨I¿á<~6±p{ü¯£;çê.êhdK‹ÙùëÙ…;ãg¾KYÞž~·cæbÿýæ:~u@kñÜ"«èâÍÑîæ§Î%ÐÌ †ãøÙn<jÙí-ë`ÙÇîäO_N{\†×uêRòÊ¿ñH™½ÚØ m5tw‚ó¢ÎßÓçä|Âò±Žç‰ReG'Ø2òc}åÍ +ÏóÂG/ÝÊMœ>„?Ÿý¥øÇÿëöïÒƒjµ:Y(`Ëò÷ÞðÙ¯)g¿çüÎ)`Èær•J¥ÛÕHHHHHHHHHt¥rÙ pà5—ZM†OùpøŒ‡EœÈ<^ߣÇOº]ÇG„Õõõâl) ðàëig¤ÇX"lª0àŸžy¹¼ÜíRöˆwoWfNžAïõ™J$e„âf0¡‡ÓFtÈŒ1xaÙ#¶›hz62dð01E0©‡RìÚèEû;]j f°ÏîPÊÄÏ£™æÔû ¾ _SdLjf¬@Twö*¨!Äôö†‡ŒãÀDˆðÚ9“]§ÛA±f8e &¸iÓsÈE€ôôÒ@ óZÏñ6ÎÁl_á6ˆy°§‘”Â, ?q;{U&%–¯'œ4ïŽð€ÙˆhÌÀÉXu0µ#c Чª» ¨ÔwÄI!ü*©ï ÂÎeŠ§Äƒø7–Á¿ÜÕÖ°A­­µk+œÒ™ñÒ&æí7œlGè·"¶É-Ú!žâaðg¹C2çfÆ«šJ‘ͱ³hÜ¢pzý½èüe‰¦-QrtG_í6¸ì&Ûƒ)s0Þ?˜ú‹âñµµ?»ý»ôÁ Z­N +¨[à>À>ûµ3Eàì÷œß9 Ù\®R©t» ‰ T.{î¼æÃáR«Éð)Ÿò ‡C×÷èñ“n×ñau}½8[J<xźFÚé1–›ê_Lø§g^./w»”=båÝÊéS_óWPBª¨,T¤´SÁ'₲t,#!h~”ä°A@ëdê&";’ÁŒœ!T|ÂþÚ ×–æ H ø¹j¡ó¡°ì + Ñnä50£ü&tÀ iâßZ"¬—Rî"š´n¥Æaõj6KkõVj¶mdDÞºDw„J5Ó6/¥‘µ‰ikÛµk$"ÈÊ?ß0†àÓé ¢ÕR×\Á‚Yyƒ”ÍžÔö»)št£׿^8Ô€u‹Ñ0=˜­AxŠà Ž#,œåjl‡šg”æ¤üÌQ¹Ò³ˆ»Q©ßÉ.:™ºÑ¤žùر/×ÖþìöïÒƒjµ:Y( ny€ûoøì×γßs~çow6—«T*Ý®FBBBBBBBB¢(•Ë^€{¯ùp¸Ôj2|ʇÃg„<(ò¡Üãõ=zü¤Ûu|DX]_/ΖÒ^±®‘vFzŒ%¦úþé™—ËËÝ.eXy·rúÔ×âUÔáPÙ[ª‚/ª<›_QÛ-ãû-áß*šFNLÄÌOÑTul›w¿¡l* ¹a±N'ã@Øî£H?g4ÊîØ JˆBö’Ë͘Ks* T–°ÔŠÐª-Á[ñ!öày¦ê€)€2E#ÈGÑêOa“ÔM±³šªÞÂSijÒ@Á=š¢RÞTÀу¿MР¤•¤ÛÎ;©â‚äË‹ŒõomnäËrqT|DAqö¸M7UAbšCÁN Ũ\@R¯ï!-¸½¿ÅÖîÚ¾à„…1@ÓÖ—æÅÉ{DÞµJ¶n²À,Ôá X>ÖÇÚ¡¢Ei½{Yv›PšHŠÂ=ì²™n˜¡á‡­2îhË–û…ðeYv§¢jvÍ™ ü°°ï£Ú"õfÎÌi|2O:™åOŽÒó“A8Pô…ÐÝžB­‚¨@UÀ•1W}wÀ±c_®­­uûwéƒAµZ,P·<À}€7|ökgŠÀÙï9¿sŠËžÍå*•J·«‘èJå²àÀk>.µš Ÿòáð!ŠüÐãõ=zü¤Ûu|DX]_/ΖÒ^±®‘vFzŒ%¦úþé™—ËËÝ.exûveúäô^Ÿ¥F‡Í`ÂÄô@BŒƒ‰÷Gp7±õñ@Â=ˆë'ô`Ôˆ$øˆÇ;Ћz]Z$eF2æ‘r7›âN[lËjWÀêbîpÂñ„ânG „RÏ@o4c…R:Ä7òö:n‹­ÆuÈ!eĆ-ë‹)Ч†’FxÈ Ä̺m ÞŠÌ& C #Ócì">b Æug¯Š +P…ú.äJa Üœƒ¹óâÍLâ›b[žB\?ꎤôDÎ:ìSTì¨õ‡úb#f0‰]Øè{ Þ¼x«ªḵŠpBg­P¥ÄáPƒqwl˜Y«!roŽ£3ñÚÍi›á¤NŠŠtA8u¹\(Z/—‹°|=±ŒN³,|5ÝžºoüŸý*kj*ÛÂû$dBB†Z"3Î99I˜Ú”×AlBÈ@F0 C’@»o÷•ÛÖýþôM}¡|̓¥¥–ïhʶõÖ­âtݵw˜´ë"p•²<_-R6{­ï[ßÞYÑ·ªöÎ]MC‹²©]Ùf®­×WK$;šè¸/íäx–JÚQæ Ñ´ú@Ó¬ú¾±F$@;”Í& ´ +ÛÛóXûÿO5ˆÎº©CÕÎq$ââ +ꔾš¥ß#¾sh†£—V|ØáŒCÓÛÍêïÏTWTP uº |¢†}šú/WÁž? õö›%Í  ¹º®¡ºw\*®;Cˆ“ ™Têÿr–ÿOåÉ=¯<Ñ¡‚KO¡W#‡ã¿?þ§ÜßK_ ŠÅbÿÀèfGèB¯Éìw˜)f¿gdå Â`X¶P(”› @€àÉçµÝEè7¾4>!ÃáSŠzÓ8¢`8Ôhu=.7o¶¶n¡û½Ä]£3ÒClPxªŽPBõÃ#/67ËMå¨ø“ü®yïèFbtÎ¥‹ß²û³o’ñ¦yâM±žÒK^bgOoŠö%épž›ý¹ÓqµQ"¥;jƒy.ºfó¦aíKÑ^óng§IöRÐŒeæç.o’®oRÀé“ÊÄ}ƒúØš=¼ÄyñJÖKþ¥ô_¼Œæ…õþØS ACºø­NÏ<­oU2¹ø‡‘3±µÎ©ÛÞ²ä'ÁG1ؾ4ë#›‡òÜÜ/]C…Z +5(5ò![lÍÌY| -‰Ôl{,Åø’L0k™ù{×è”A¡’êêª&æèè­Nß»§F«jŽD%òÄ›4ã6Á&Ø®ŒÿÔéÏXšÚ•PªHLuž? ýŠ¬X= ¼ 6-!x”:IêJàPÀ›ÁEè‹}4dÐÖUA¢šZÙ%ot*¸ÈíÏ’˜|¹qû×ïÏrñ[]ΨQ¥‘W×È®†;bp3d ¬¯dƒoðkØ<œ·Á…0lW3`âžÖè*˜Ãå¥ÙRg¤ða¸+²Á_³]3ªu2•FúãtG Ú½Àì‰)'xH÷Y€ÉáÀ=0ì¨ÕÉx­V>8Ù_ë +åÈ]ÖJ²¼ßB¾tÉ´Lh‘›ºÁ9\uH„zºÎýñþc¹¿ž¾‹Åþh™¡{½&³ßa¦˜ýž‘•ƒƒaÙB¡Pn6 @€x€'Ÿ×"t¡Wd8ÜøÒdø„ ‡O)êBDÁp¨Ñê>z\nß>lm9ÜB÷z‰»Ff¤‡Ø ðTÿ¡>„ê‡G^ln–›Ê1ð'ü½}ó!ª …ëSÿì¬ØY „?ÃîÆäÃWìß6˜µÄnÚîô\ö¶J¤T³±6¶Ú™¸ÝÊC,„?Ã[ÞÏ +‚ÁœejÅžþ­7¼lÕ·)áôIebÇÕÆÔzOlÍŸr–]îüŠ€7vÀ1g‰®Ùë=—cÔÕUqõw•p +Òëg£7ì¥Ë¯ìû¢$; 'äý¥sxªÉP—}àß?–û»é«A±X쀖ٺ‡Ðk2ûfŠ€ÙïY9ˆ0–- +åf#@€ €xòy-BwzE†Ã/M†OÈpø”¢ ä@ ‡­îá£Çåæñ áÃÖ–Ãí1 t¡—¸kÔaFzˆ +OõÏêC¨~xäÅæf¹©oß¼ëï¢$è¼çTd™›˜gÆãf׬ b|Íüì¹θɛb®­Z/¸š)ŠjhVÀÏÕð’Õ7á€N®`7MÌÑS×­¾4}º¹N_…DÔ{©!²ÂM¦A„ɾ°³ÑE*ñ¥˜È²õ¼«I&—œn®B‹þ¨¤À dßÑßèŒÝóæð²Å3on6Õ‚©¸oP6ðgXXà‚െÝÖï ×àMÑà‘P‡R#‡”µòAohâIР±M8>ÆR: ‹«¥ZO"+V\@Ü81c†8 ×{ŽƒæÐȱMF%”*‰ìŽúÐ7¹rvy[–Ò ‹7Iƒ£C;³F%½0Ñ2½Ây’ôxÌT: Û•óÚš’''æÍ‘eËx̨>UY­”ŒF:ÈÍ@LŸ¬çÏ $5˜™¾a½1¨ˆ@ÜÝ +w&ß]ÌëO‹1zæi8þP‰ú»ªJ…d$ÔÅÀâü^†û;^ºŽàD–8Z[_ÄUÙEwËôu+¼ïIJó|wÊ gH‚.²ý ¨uÚúÞÿþ¡ÜßK_ ŠÅbÿÀ´ÌŽÐ=„^“Ùï0SÌ~ÏÈÊA„Á°l¡P(7 @€<À“Ïkº‹Ð+2n|i2|B†Ã§õ!¢`8Ôhu=.7o¶¶n¡û½Ä]£3ÒClPxªŽPBõÃ#/67ËMå˜xûæ]ÏH‚λëB‹œk†vÆLŸÿn=pÆMcQ³{ž‰¬p\-"‘èts7I³ÜxÔìŒáŸ«®ø‰eŸ1ŽEM®shÑâM2 - +8}QïņPžó&gô¤0ŽÇMΨÙ3Ï„rÜß\M•UPÀ—bü ´À3Ÿ˜òÆí'1“kÖÈY&fÍÍ&5( •ŠÏ^>\ä|i/‹ƒD'êè‚Ñ=OO]·^ w¨4r¨A©–z[¡/î9ôqÆ©C‰&ÈCy+䪪‘(Õ²§ ð5ºÀíâ‹NÃÍÂ+ýYÖŸa›M*(Lk?WÌY|)ËXÌxìƒãŒ^¹{Þ ÛŽ†ÿË~µ5'‘máÕ$\r¡¹e4áäBB7½M´J’ªœŠcz2B ˜ŒCH"Wý7þôM}Iùʃ¥¥–ï)K3OùgíÆd’:ÎIŒ´”eµŠ*èM¯õ­õíÝ_ûGƨ2­6ÓBÜs»!b¯bwøxžnvtx( +D$lW`s\Ãýƒ6ÓÍœ_=xüåh‘‡BêLPÍS1ܾZ^óÛœ}H³_KLfëb¢ôMb8±ÿtÇ)D!ˆ¹°«®óý}ƒÆ¥Œwí~Ń£?œQ‡{NSc'¹T >ñ?kþ!÷ÝNó‚äY»w1µyx ójtš>fÿƒCŽ¨ê_åQC?\žú¸×íçÒƒV«5;7‡#›xðNõ~§qèý^ª+#@!Òl6»ÍF‡:tèСCGj4\Þªæpç$gø\5‡/æ1À<0h®¡'OŸu›ÇO„½ýýùdÊðà sK±ÃPWÿ + 0½ñzw·ÛTΈ÷~_Yê1ï«îlMÄ7ĸ8|mŒ)øÒèøÛèám“¥àÚý‹Ké©ž^ÆíaW¶ƒ™Qpq…ïxÞc¡pÒF S%r…Œûl¸ûŒ&Cxqôö½ÐÊ– ë/õv S¯¯x¬¦Ñ)V.‹™Š Ž@Cú± •ÂK3¦ŠAqÒ˜{®.Žåê¡t™¨#Ài2÷£SHP¡ßîìC¬uš#io¶N°3xõèÏ””¶i")L4h3Ùæ[¿ð«TÆ”¯¹•ºX®ˆÙ™äXªÁ3óùº¸º-4¶RøD‘CeÞºã¢ÊdM Òdî^(YâcÇ·gÇ…£Cç1;çÇ­vóòºŸž ÅN&ú‚Ôýž(ò¹F(öçø¥‰[í¦ëÉ©lM bèhöã•ÐìªøLEL•‚¿ü«¿oÀÍøÖî…Å`,ÿw©ÒWiæDÖ`<ˆ~»Ã Y‘¸Íiº&MÜn„R›˜.ÐàDâÛ»CÍŽÄI47n´ÂÌ¥ð§{Ý~.ý0hµZ³ss8²i€‡ïTïwÞ梁2!Íf³ÛltèСC‡:tt©FÃðà­jwNr†ÏUsø‚ãæÐézòôY·yüDØÛߟO¦üÞЩ1§±ô; uõ¯ÂÃѯww»MåŒxÿç‡ð•ˆÑ‹²;S%R!û¶7߯ +iƒËÕCQÙÛÓËŒL°+[‚\!qE}]Õ:»ÂK<¦“«dü‹»Ïh2„#£¹†˜* q…SËàw:{€Æ—(ò™ª¸”ö ²ÆÑ)kú.‘ËBû’fĹÒQ J.]V¶‚ˆ‹vÀÒs52š­“Õ»rÿJP¸j Anå9ç¹~¬Áæ²DÒÞLUHƒßxóeJ;)h““Å Õnf–åßýÙzŒç9 9æÿS¼½ÉÁ‚Õ2ÉÕÉq`©ƒaæßîL¤¶>—Ûh¯ü:µÄŽ¿bmr™Äòܘφ‰m¦…˜'W“¥ jƒÖ¬êG¢sì´2ÛíªÌåöXY‡yyý‚\#ŽCƒ\ÿ“:˜­‹˜Èq΂ĭvÓbrJV‹ùb¯:Šª…O— žBÃcƒ–Þ%Ù·vï"îÐ#I5i8ÞÕ.W¬aÄc¥»Ài¾&áÄC©Íƒ¶·÷¬6ÜñõvsÝcbaæÒì§{Ý~.ý0hµZ³ss8²i€‡ïTïwÞ梁2!Íf³ÛltèСC‡:tt©FÃðà­jwNr†ÏUsø‚ãæÐézòôY·yüDØÛߟO¦üÞЩ1§±ô; uõ¯ÂÃѯww»MåŒh½ÿ¾1Zàºì–«$Qjòîù!mpÙºÍøz{ n»²”+ÂÁU^ Ͳ+¼´ÁË"WÄqŸ wŸÑdGF±žÔ&6!p<»V•$Š|¶*Feß kó²r™ÈeA£\G¸s1%@û_ XÙz‰“vÀÒs52–©‘Õ»Ú×€Ùõ³Àekâ­|Ày¾k°;Í‹i/•bñۥȴÂeÔÚͬò¼ÀŒÈ=¦|îÆ)›†Y-ü¯—رԞÃåw¦†‚éd»p4ê\„x>€’ÀD6ÓB|2‡Ê,ÖƒÔ4ÐmŠ0Y +º=VÖa^^÷gª‚¤ñÉSé ñ\=ËsŽsT V»y19…M–è°Ú¢Õ4Òeau[™°ö ôFÒÞ\ã"îÐãk:ÛszÊý=q…ñX‘8ë4/H“¹FH=‹>÷G#úí]©ˆ7×'L,Ì\ +úøW·ŸK? Z­ÖìÜŽlà!À;ÕûÆE ÷{©®Œ…@H³Ùì6:tèСC‡@ªÑp<x«šÃ“œásÕ¾`˜ÇóÀ 9tº†ž<}Öm?öö÷ç“)?À#€7tjÌi,=ÆC]ý+€0ÀpôÆëÝÝnS9#Zï?„¯DŒ¸.»å*I:ûÚ{BH.Û£_o¯ÁíaW¶x¹"\åÕÐ.;WøtY+â¸Ï†»Ïh2„#£Ùº˜Ú Æ7ߧ‰"Ÿ­ŠQÙ7ÈǼ¬\&rYÐ:)FL ¨ýdž“•í —8i,=á¥ñl•¬n 횆¤pí²51–ç\çû±»Ó¼˜öR)ƒ1eÊÅó¤™(íf›Ã²¼ÀŒ˜7¦|ÍÝÔÅ+wI®ò–ÚÓÃ\^pgj(˜L‹€e£$0рʹŸÌ¡2KßÞ“iò8a²t{¬¬Ã¼¼îÏTIû“¡= ¶Úq®‰[íæÅäÎ.Y¢ÃúšÄÅ?2aí褽¹ÆEÜ¡Zfü|ÊщãÆW˜‰³Nó‚4™k„Ô³¨Ýœ€FôÛmÏTÄ›ë&f.…?}ü«ÛÏ¥­VkvnG6 ðàêýNã"Ðû½TWF€B ¤Ùlv›:tèСC‡Ž Õh¸¼UÍáÎIÎð¹j_0Ìc€y`Ð:]COž>ë6Ÿ{ûûóÉ”àÀ:5æ4–c‡¡®þ@`8zãõîn·©œ­÷ÂW"F \—Ýr•$ +¼ïžÿRË6ÄhÆ×ÛkpO°+[¼\®òjh–]áby.]ä +¿`ÅÝg4‘Ñl]Lmãÿe¿Úz“X»ðšrjaÊÁhK*X;Ì©ž¶ mÒ„K©q ÃAf¦;\t ”nŽÇÿà…Þ©7·\ï‰ñpÕ_ð­y‹ßÞ7¦Õv Æ÷ÉJ/`ÊZϳž÷å¡&ŒGÂŽhvÔ¬žðsžK<§·½%;Ý+g D\)ïI¼¶ð¹R1³£<Ø“p´4{ ü+¢æ¸‹ÈÅs8C0Ì®WxÛŠ;Ò©[ˆ„i2¿- ÍBCòÙÙ{¯*˜]¹ÿGË­´'oõ–y%„£º\Ì­tÔè¢aÎxed/2Ž–ÀF3³Þt~q Ù8½&ÇÒ5+‰&,6¤èåg˵dtdÍù›ÁÞš¡«¢Ô¡ ÓH<d׋WpwÅ.+é¼'¼ÊMy>˜žqg*üVÿžP';Žn9¼ +-)o ؉sa6­-nõ—É]t$Žà}"{Òh«w«q/7¯§>ú:éï¥_ÃápeuWvàÀ{’ýN’"0û½"OfÀ†¬(ƒÁ`Òl(((((((((Î¥~?ðà ‡ûÇ%Ã$¾d˜'kÀ`8 GÎ?}ö|Ò<~#|9<\+––¼µ·Æœ$Òcí3vª ˜Ën¾98˜4•ŸÄðÃÇÔîèQ½£ê¢¿=¿WZ]4ûËY#áv3ÑËrSÒÛò·wERŽu·’¹í¤þ¬·•ØÕž>w*•Y0{jiWÊׄñ(PØÍŽšÕ~Îs‰çô–¢·d§›bå,áH¤_Þ“x%l+às¥6bf_Ç ÙnÙèª÷·…ÈÅs8C0Ì®WxÛŠ;Ò©[ˆ„i2¿- ÍBCòÙÙ{¯*˜]U«D f8Ó,ŸGeðy%ˆ£º\Ì­t‡/íž±\d/2Ž–ÀF3³Þt~q Ù8½&ÇÒ5+‰&,6$<’œ-×’Ñ‘5‡o†\MÈ3 ¼(u肉‚ìzñ +î®ØñÝ÷åT •–\nÊóñÀôŒ;Sá·ú×ð„:ÙqtË¡+- ‰ck$Î…Ù´¶øí."úû9¢¼-{Òh«w«q/7¯§>ú:éï¥_ÃápeuWvàÀ{’ýN’"0û½"OfÀ†¬(ƒÁ`Òl(((((((((Î¥~?ðà ‡ûÇ%Ã$¾d˜'kÀ`8 GÎ?}ö|Ò<~#|9<\+––¼µ·Æœ$Òcí3vª ˜Ën¾98˜4•ŸÄðÃÇÔîèQ½£ê¢¿=¿WZ]4ûËY#áv3ÑËrSÒÛò·wERNµÎYɼ•Ô[²ÞVbWxú<Þ©TfÁì©¥])_Æ£@aG4;jVOø9Ï%žÓ[ +Ž4†¾9K8Òé—÷$^ Û +ø\©˜ÙÁWÆ1ƒv´…šhvÕûÛBdng†Ùõ +o[qG:u q´èmi’?ÈΆØ{Õ%ì¨ÕG"Øeï´Ü¶€Ï£2ø¿¼ÄQ].æV:jtÑ0g,Ù‹Œc_âmgÎÌzÓùÅ-tfãôšW–¨‘sQlHx$9"—Ñ‘5‡o†\Mø¿ò–ºàCâ »^¼‚»+6D|÷ß}94ƒ%Tþ‘ÊMy>˜žqg*üVÿžP'›Žn9tc¥%!qlĹ0›Ö¿ÝE£Ù¢OdOmõn5îåàæõÔçO_'ý½ôË`8®¬®âÊn<xO²ßIRf¿WäÉ Øe0Lš Å ÔïG¼#ápÿ¸dø‚„× ó`  ‡áÈù§ÏžOšÇo„/‡‡kÅÒÀc€·öÖ˜“Dz¬}ÆNõ¯RsÙÍ7“¦ò“~ø¸r{Ããƒ;zTï(…щߞß+­.=5k$Üî©h˜žqgtþïþ5‡¯DñÈ¥èÆJKÊ[Â|ÜĹ0›ÖÍÞr±áøm0:ƒmõn5îåàæõÔçO_'ý½ôË`8®¬®âÊn<xO²ßIRf¿WäÉ Øe0Lš Å ÔïG¼#ápÿ¸dø‚„× ó`  ‡áÈù§ÏžOšÇo„/‡‡kÅÒÀc€·öÖ˜“Dz¬}ÆNõ¯RsÙÍ7“¦ò“~ø¸r{Ããƒ;zTï(…Ñéß¡ÿ-­.=5k$Üî©h˜žqgtþïþ5‡¯DñÈ¥èÆJKÊ[Â|ÜĹ0›ÖÍÞr±áøm0:ƒmõn5îåàæõÔçO_'ý½ôË`8®¬®âÊn<xO²ßIRf¿WäÉ Øe0Lš Å ÔïG¼#ápÿ¸dø‚„× ó`  ‡áÈù§ÏžOšÇo„/‡‡kÅÒÀc€·öÖ˜“Dz¬}ÆNõ¯RsÙÍ7“¦ò“~ø¸r{Ããƒ;zTï(…Ñéß¡ÿ-­.=5k$Üî©h¹Ùï )³ß[÷É"P(„ ƒI«a````````8èý~à ÀG7îü.¾vÃáŽ{° †Ãxâì‹—¯&­ã/Â÷½½eM_xðN;H¤ÇµÃÑTÿ paõÎûÝÝIK9$†Ÿ¿,Þ,BpÛH²öXòú;ô×Uݔ̞ºjfýþ©d:¢·$££Œ©ºMWÝ!F[M]ðô‚Sùâ¬ÕSõ-¹²!Ž‡6ÜêæJF6,f³ò©;ãê€Û£MjÛr†ÄiB¾|)euð…öÇ{e·ŠÙ#ÖÅÄùÓÈ!çWê׊ò‘÷—F%ÖE£­¬5•p”ŸŽñ÷¢ÕU«›¸›-•mñᶂÉ(Rõù¸…¤ÙUk­c‹C°\*K™ÞªÌ#g­)Á™Uû²áÈZSNÎE„¯±`v¤ämÑ‘ð8¨å 1v.D…Gùí"š…ã¿Ø9Ø’{!(µ–<“Žœ:ã/™Gý+_‰Ò¾KÑuG®ØâL:ŒÂ…8_¨Î[½œÖôü6Á¶z·‘ +pýjþÛד~/ ‡ÃÅ¥%Ù5€§ŸÜìwÙï­ûd(BƒÁ¤Õ000000000ô~?ðà£w~— _»áð Ç=XÃaòþҨĺh´•µ¦ŽòÓ1þ~C´ºjuów³¥²->ÜVÐ!Eª>w£4»j­uÌ#£sq–Ke©3#ÓÁBy9ë[ÒœYµ/Ž¬5åä\Dˆñ÷ fGAJÞ™ƒZÞcçBTx”_Ñ.¢´&6ðR»-í_µ–<“Žœ:ã/™Gý+_‰Ò¾KÑuG®ØâL:ŒÂ…8_¨Î[½œÖôü6Á¶z·‘ +pýjþÛד~/ ‡ÃÅ¥%Ù5€§ŸÜìwÙï­ûd(BƒÁ¤Õ000000000ô~?ðà£w~— ÿqÃá¿Ï–ÃpOœ}ñòÕ¤uüEø¾··¬é Ï>Щq‰ô¸v8šêßä.¬Þy¿»;i)‡Äðó—Å›%nI£CÖK^‡þºª›’ÙSWͬß?•LGô–dt”1U·éª;ŠÑ&©Kž¾@p*_œµzª¾%W6ÄñÐÀ†[Ý\ÉȆ…ÀlV¨;)³ÿ(¿¶-gHœv äË—RVQh¼'Pv«˜=ò`]Lœ?¢q~¥žq­(yiTb]4ÚÊZS Gùé¿!Z]µºù‡»ÙRÙn+è ‰"UŸ»QHš]µÖ:æ‘ѹ8Ë¥²Ô™‘é`¡<‡œõ-i άڗ GÖšrr."Äø{³£ %o‹ŽÌ€ÇA-oˆ±s!*<ʯhÑ Z›x©Ý–ö/„ZKžIGNñÌ£þ¯Diߥèƺ#Wlq&FáBœ/Tç­^Nkz~ŒÎ`[½ÛH¸~5ÿíëI¿—N †ÃáâÒŽìÀS€Onö;HŠÀì÷Ö}² +!ƒÁ`ÒjþÇÏŸ?'Má¤Bï÷O>ºápçwÉð7þ ð`8 ‡ñÄÙ/_MZÇ_„ï{{Ëš¾ð àwHk‡£©þ@àÂê÷»»“–rH ?Y¼Yò‡à¶‘4:dí±äõw诫º)™=uÕÌúýSÉtDoIFGSu›®º£m’º$àé §òÅY«§ê[reC l¸ÕÍýÇ~Õ¼6ñná“&ͤšLó!jCoÒ6±Óùª_WI \lREMÓIÌd®d‘iMÓ;ùúSÜúèÆ….uSpP-Šˆh0ø‹‘,„*–{f’ÈÝXµ“¡·óðRÊðæ=Ï9ç9ï<“ÃNrp4Lf)õ³þ˜~f• q^µk$*ø„Uë£?¤%Wã.(ß¡}ÈÁí%æ²!MŠÌŸO÷B(±Ì.Y§›öò”TåSË¿xšL'eêÒ*‹ + qn¤jµZNÆü¹*Ÿ)ípËÔ¾(† „Ueº†í±ärN¯Ð}PfJžF(2þ1é!Îç's)é´'>¹Dy:ÔÄÝÄœ0bŠX|Ü gî2ݽ2%f$èÚo‹‹¡Ëõ£:_‰tW¥¨Æ¬Â,ÈÔHЉ‰“^"–—jÓBQ÷Û 7ƒeþ\>h'áıȇöG£ßK»­Vkfv[và&ÀsÍûmÇE ÷{¬íŒƒ +–ã†ÑÙ˜0a„ &L˜Ø¤ëuÀ5€uÍ®ýÌ>ÐÌáC€ÛQ° 9ôúܽwßè<ö6:¨ž¸ðLíše;–ךEuõO"‡çÏ>m6Nå7Ñz÷~æTÂæ€3¢_¬p‹Wh½¿C\©e:Wãçsa›mÀt¥K´Xaû]VWVaÅ28Bâô Ú"ñQ©Æ§W˜…%ª?4°àRu:!†äàh˜Ì*Rêgý1ýÌ*â¼jÖH" Uð «ÖGI-J®Æ],P¾CûƒÛKÌeCš™?>Ÿî…(Pb™],²N71ì!.ä)©Ê§–ñ4™NÊÔ¥UâÜHÕjµœŒùsU>SÚá–©}Q8 «Êt ÛcÉ1äœ^¡û Ì”<%*ŒPdüc.ÒCœÏOæ*,RÒ7hO 8|r‰òt¨‰»‰9aÅ ±ø¸AÏÜeº{!dJÌHÐ5´ßC—ëGu¾é®JQY…Y©‘ '½D,5.Õ¦…¢î·AoËü¹|ÐN‰c‘íF¿—v Z­ÖÌì,¶ì8ÀM€çš÷ÛŽ‹@ï÷XÛ,Ç5 £³1±w±µµe4&L˜0aâÿézÝp `]3‡k?s†4søà6@,h½¾wïÝ7:=„N'*¤'nE—Õ•UX±ÌŽ8}ƒöH|Tªñéfa‰ê ,¸TNˆa'98&³ +‡”úYL?³Ê„8¯Z‡5’H|ªõÑŸ@R‹’«q ”ïÐ>äàösÙ&Eæϧ{! +”Xf‹¬ÓM {ˆ yJªò©å_(3%O‰ +#ÿ˜‹ôçó“¹ +‹”ô ÚŽŸ\¢<jânbN˜@1E,>nÐ3w™î^™3t í·ÅÅÐåúQ¯Dº«RTcVadj$èÄÄI/KKµi¡¨ûmЛÁ2.´“pâXäCû£Ñï¥]ƒV«53;‹-;pà¹æý¶ã"Ðû=ÖvÆAËqFÃèlLìu|úôéÑ£G¯^½ÚÜÜ4š‹ &L˜0±‹‘®×}×Ö5s¸ö3gø@3‡nDÁ‚æÐë;p÷Þ}£óØCØèt¢BzàÀ3µk–íXz\kÕÕ?ˆž?û´Ù4:•ßDëÝû™S ›Έ~±Â-^¡õþýq¥–é\ŸÏ…m¶Е.Ñb…íStY]Y…Ë\à‰Ó7hˆÄG¥Ÿ^a–¨þÐÀ‚KÕé„v’ƒ£a2«pH©ŸõÇô3«LˆóªpX#‰€TÁ'¬Zý $µ(¹w±@ùíCn/1— iRdþø|º¢@‰ev±È:ÝÄ°‡¸§¤*ŸZþÅÓd:)S—VYTHˆs#U«Õr2æÏUùLi‡[¦öEá0\ ¬*Ó5l%Çsz…îƒ2Sò”¨0B‘ñ¹Hq>?™«°HIß =1à8ðÉ%ÊsС&î&æ„ ƒPÄâã=s—éî…)1#A×Ð~[\ ]®ÕùJ¤»*E5ffA¦F‚NLœô±Ô¸T›Šºß½,óçòA; 'ŽE>´?ý^Ú5hµZ3³³Ø²ã7žkÞo;.½ßcmgT°×h4ŒÎÆÄ^ÇúúúÕ«WoܸÑn·æb„ &Lìb¤ëuÀ5€uÍ®ýÌ>ÐÌáC€ÛQ° 9ôúܽwßè<ö6:¨ž¸ðLíše;–ךEuõO"‡çÏ>m6Nå7Ñz÷>òÏø Έ~±Â¥–i½¿C\©å©\ŸÏ…m¶Е^¡Å2ó÷ç*¥otCLeV,s#nœ¾Aû@$>*Õøô +rÐ9úßkñ +-Uøy1ì$GÃdVáRâvË‹íË|f• ó>µ„5’H.³ÊõCJ¥ÿÐRu:Y |‡‡ƒÛKÌeC(ÅÅ+ÌND¡“z¡@aš‹EÖé&†=Ä…<%UyÔÞ¯%ÓX´K«,*$Ä©‚±Z-'cþ\³“-Ã(ÈM,³Hû!r ÿZÿwVôOU²E(ÿ˜‹ôçó“¹ +Û‡›¡«IlMriÊsPƒËMÌ 8¡B‹¯û€çgÿÃdJìHÐ5´ßC—ëGqBõ JkK½ ³ +³ S#A'&Nz‰Xj•†‰ÿO}tZ¢ÂË]pâX¤ý×G£ßK»­Vkfv[và&ÀsÍûmÇE ÷{¬íŒƒ +–ã†ÑÙ˜ØÓøþýûõë×OŸ>Fïܹ³µµÕ}¸±±ñòåËf³¹¹¹‰Oðïëׯ_¼xñùóçî¿|ùòöí[œ…¯_¿vŸt:|‚?ì‚;ß¼yÓn·¿}ûfPr&L˜0aÂD_‘®×}×Ö5s¸ö3gø@3‡nDÁ‚æÐë;p÷Þ}£óØCØèt¢BzàÀ3µk–íXz\ÿe¿êCšjÛø5·¹|ÚŽs‹ÝcN›¹3ûæY†`ïãÒ(¶¹éÎfì85Ÿ¹úþC(¢¨è*H²¨$"$%¢ÔÀ7!As”Ñ1Ù RôEð^çìyÿ)²páùq1äxï\×ïº~÷½ß= â\}À ]Qy?M5•ŸDlü¹y…E:þb4L€®j w÷ü6ì>ƒ;dª`tIšFK8›H¦…JRvÖ`e .?Å´Ðy‹Ü}Òô4³%×29›Œ¶z}j°²z»t°…rBš[H¸ü4–”œÔ|ÿ±átu³±Ð¤æ: ›×.ðð „ì\øIbÏ­^½:;kPªdå./EãLd!­^É"ͪF£\)ËÌ’­¯Ó{‚&äþc¯ò’¨™šf +«ÕÑJ,U,-/Ó¸ƒ(˜?ÊæÕçrÊTd¦¯±Ô†LŽ¦ÄoO–K"t45ù +‚kW‘;@ýp»~<âšÄÑXë Yó91(”²rÇBœ£‡øÏ‚D†‰Wo¦r´ŠŒ¹ £Û^œà#‘äƒ; ]~£ÕçhåHœPÉÊì¨4$þUŒŸ^W§•*`Ùó‹‰×©þ]úe‹ÅV•”àÈ–t<â½ßt\z¿Q~¥8P4=44”j6f5ž>}zîÜ9¯×»zõêcÇŽ}øðîß¿ÿĉׯ_ÿ/«W¯?~üäÉ“wïÞ}ùòe$¹víÚ¥K—ÚÛÛ{{{?~Ü××wöìY\† FGGñ ¸ŸONN¦š¥ 8Ãa5Ài€1Þ|Ïòæp  DhUêy7{ûRÍcáÕÔT©ÃYÐ ð€›šh:–c@Ĺú€ »¢ò~4šj*?‰Øøsó +‹tüÅh˜m÷‘‰»{~vŸÁ2U0:‰$M£%œM¦…JRvÖ`e .?Å´Ðy‹¸û¤éifK®'dr6mõú$Ô`eõU ¤'P\ÁÊ in!áòÓXRrRóý'‘~u³±Ð¤â: ›×.ðèšf›“èì| +¬Á4Y½zuvÖ TÉÊ]:”bUƒq&hÆCϽ°‘’+e™Y² uzÌøÃR÷’¨™šf +¢£•XªX,Z^¦qQ03<2~.”Í«Ï+$0‘"3}-¿6Xìhœž|'X®-(BÌ¥ÉWY²õuEî•„“Çôê Yó91(”²rÇB”¨£‘ŒÏ1Á5è‘xõf*G«È˜+±0ºáŸCÙm>ø“Ðå7ÚX}ŽVŽÄ •¬Ì^à qO4wÆO¯«ÓJ°l‰ùÅÄëTÿ.ý2ˆÅb«JJpdKºñÞo:.½ß(¿Ò(šJ5³?~¼uëVGGG[[›Ïç;tèЛ7o>}útîܹM›6=zôöíÛû÷ïß»wï‘#GΞ=‹ŠÃõ»wï>|øðÎ;8pñâÅÖÖÖ–––óçÏö÷÷Ÿ9sfûöí;vìèé陜œL5Q p†Ãj€Óc¼9øž3äÍá0@@)ˆÐªÔónöö¥šÇ,«©©R‡³ à75Ñt,=Æ€ˆsõ3@vEåýh4ÕT~±ñçæéø‹Ñ¸ƒ&»Lèõó«°û ž°©Â](‘¤iò gÉ´PIÊÎ’özLGcä-"p÷IÓÓÌ–\OÈäl2ÚêõÉ)£ªôLL¡œæ.?íò'£VVÏ÷Ÿë€³Ù¨£U\æˆÿ´,pèš¿é$Ô`g ñš]EB”ÄKÈwf +ˆn¾H¤“ÆÐ''ÍÌô9çyÎ9šêH¸^83~ç½ãêJÜ]dÂft_(;(#WTì–éR•u~CôU4Gð¢uàæY®>12Š-Jâ]2£Kʨ싪ª¬¸º‚0Ö_"‘R +„…lÍM€20Ô…VoDRhÁ5v|_£¼À‚ ÖF@ |ê4ÚX‰*J^œ>š”Èš +‚Ëçð…œ½e³Jø$Å¢#}#uŒÿ£`0xŽ±Vf®#ÅR„”¶=ÞÜ ×WKUó7RîV.‹Ö™ëI•%E”ÈGQ|öŽBqI£Lç$|Û_*L?6SLS‰ÅoäòœüÒds=œâ^jŒV¦ÆŽAùA_Ö†{‰çh¡I¡MrºàWY%Þ D^'â†G†æ“Jå¨ îCÖŸ? +‡d×:“KV`‘Ä%p8ȾC³ úBç¤ö"&wB*è5ðžk…D¡4eæ˯üý^únàñx¶efBÊ”]Bè=û-gŠ€Ùo”^™‹(HIrhhÈßlX¥˜íèè(((p:—/_îêê*//×jµmmmíííG|÷Õj­¯¯žžž~ÿþýØؘ…Æ­[·^¿~=55õöí[ø…'Ož4›ÍpïÄÄÄøøxKKK~~þ… >|øçææüM:€ €„ÎíŽA¨¡1z8øÚdxï"ÔPbÁp(Œ‰½Ú×ïo«S33YZ] +B]=¤²ÆZÎH6À¢¦úûe ·{σ‰ SùFLþ÷ïŸ~Ì +E¿hãŠÝ +÷~„.~½~þëKƒ'kDI“b—.)(8hƒ8ª¨Zjª# =Úñ»àSWbæÒPKŠ’xÐ}!ìà­»DûÜò¢*RŤkš¦²b:'QÜ Ïщ#¸¡ c¬ïæd/¬ÀiÃÀ;¤ÛT/ÓÚq1.B9Á[óŠÝrC ÿRA2*Ä`Áµv¢äwE~™$:6bà 8¹†$sƒLc'V¢dPeÅM7ÊÔD$Ͳ Ê%ûåpq>Ë_ÒüÌé§F°Âsp“Kf®“‰ñh5(ˆ•–WÜ ÓWKÁõ4*­ÄJ5±bZ•¹·,eÃ&ª2¹|ε¸¤Q®sâ¾-Œ>Í« T…¦‹EFE³+I)†S;ãýH' üöZ°è5a4qvŽF Å×™ì*q´ƒ˜:ˆ5ë#Ã#CòLI¥M + Ô‰Õ—‚N÷ºÖ:`ë“ï-“¬q8O–­ñfÜ—ÞÿŸòPo°ñæ6sQš2óÅ߯üý^únàñx¶efBÊ”]Bè=û-gŠ€Ùo”^™‹(HIrhhÈßlX¥˜œœlkk«®®nmmRlii1›ÍpzìØ1›ÍvúôéÑÑÑžžžææfXvâĉÞÞÞ§OŸÞ»wV:ÎÎÎÎÛ·o?yòäÕ«Wccc]]]GŽÑëõMMMƒƒƒÃÃÃ.—+''§££ããÇþ¦@@ŒCçvÇ ÔŽÐ=|m2¼N‡wêF( ±`8ÆÄ^íë÷7U„©™™,­.¡.„RYc-g¤`QSý}„2ŠÛ½çÁÄ„¿©|#&'ÿúé_¹¬´]³¦¬Eߡ𭪮dÊà;tñXcÇ µ¤õ 2[“Èb!QR”©NVò»Bc_X_A0 XQQ¾?Õè"7$FA÷…„eì•·PWÔ•u%Ƥw h‚ÆZiYSj¶ZÌ ‰ße ®1k©b¾ (kIÕW‘?¤Dƒlvжݔær1æDÐP¿„¡†´TþV*áÇp ž€“gÜ QUKÕ+*ELC×MSj9 ,´âQìèŽÚŠ•7§B©/a÷‰¦Ê&QÙ¨Sº—–+®u`¥M2gFÉÄJÛ_Ú¤0¹¼rajûJå¢Rš@3”Iâ¸à(’ÏÎÖ%B­j¤¾ÍÈÍ«ÂÁ»¦‹‰ çò9ù¥)¥Ír]ÁpGPf¨!,{K%;§(©´9UOÇ óš¾Úº¬ à†þZ’lÙŸ +=¢fªç5ƒ=§¬I‘_*‰â|axŽ.iIÆ1õ盧½Ó²“Åd¶>žŽÒ”/_Lùû½ôÝÀãñlËÌ„”)º„Ð#zö[γß(½2Q’äÐпÙ°177÷ìÙ³¾¾¾‘‘‘ÙÙYï•Ç_¹råÎ;pýÔ©SgÎœééé€*ííí=~üxkkëÍ›7Ÿ?>88xñâųgÏž?þÆpãµk×àJww7ÜÛßßwÁÁ¹sç:;;ÇÇÇú“s@0 ÛƒP;Bcôp8ðµÉð:=ÞE¨¡,Ä‚áP{µ¯ßßý !©íDA^ NáÛ¡Ô’F¹@¨P´[²×[¤•4*–¬üÆŒ, &-n€¼( Ê%ëD‘à(JÀÙeØ\ñGº¹N¦Õ‡ÅðÉ´NŠl¶Ãi ’p]8—Ç.°`ÖÃiúZÒ×±ÄïBK×Ë!Sªrœ/¤‹!š“§O¶L7ÕË +’‰jœÏ¯É%ƒÂÐÙ áÚ.Ä+ÿH72KüâEURØ m‡¨ŒÇÄQÄDä’+§ƒ t®Ú“!ã”ìæzEi‹b§!qPš2ãå‹)¿—¾x<žm™™2%B—zDÏ~Ë™"`ö¥Wæ" +R’ò7›V)¦§§¡’ß¼yó?ö«¥·‰, ŸªòûUå*Ó„ ’8¶ËU.»œ87VwB2 ݱ†W€B·ÜjhèõH-õf6#ñfǤ^‹‰„4K  ˆ 0r %HÀl|úôéË—/ñÉÈÈÈíÛ·ÇÆÆ^½z5==ËåpÃèè(òüùó'OžKö]_IÇ~ŠœV÷œŠ–-´»Š6ê/ý& ¡£ƒíø…øÖ/Ì®ÁïÙÿ}äðZúñK¶ ÊÕtÑf“ +î +¿OŸ +×mvb÷a Ýœ‹ÈDúO„úOÊÄHœUe I1ÁÁ$e=Ù·Ñdfë=g”Cg5ôK6÷ê{'$ìH †”£çc»ƒht#+—ÜÑpø\ì›´bÅHªÆž’KLÖÈÀàE½g Ù-X1·×²}oÓ‘s:ƶ{PžÝ¼Ôèù +%9´ïŒrü‚þÇoš]¼E\gß}J“=!\ìŠÇRü<†ÊrL,µþÐÙèAB×,« +º^'Ø%ª|¯=¯÷ðKëEN¶¥›Žœí?£”©«N{îYhä@¼ŽžÓwnñH6§ÇÒwЮ÷žÆ~¤MQ%=¼ã—ŠáØ}Ǿ’°^Ûö4=‡‰«ó:¢Ê—R9†ðÀI|ס€à³{¼¶/ÿìGìý«¼›&¾‡ÞHK-÷Ÿ$u?ð†7ÏŽýMÂ:&.HvìÔ­x¨Ü†Õ¾©¡°Qo‡ÎF’_­:ŸMNü§ÖßK òù|W2‰%Ó.ܧ³_%SÎ~#tg(ªšÍfk 0`À€* ÉH—Fép8¼Ødx“‡·®¤€ÁáP”|׮ߨuk“33©þtà +À=R5¦’‘m˜!Sý€N€ºÞ¾»¹\­SY2 +…¾=ÛþEj_ÏâB³Æû5!÷†ÛEjR8Qmk•v)Ôæm‰ñ¡V!œðúê­€ÝÉ5GÜr‚÷G=ŸWß;úE —¼»1^í’¶„]fKœXg ¶òȃ_ãƒq>L7—¬Ê<ø‚q/flB ¯H°9¸&Õƒ6k›€A®Šk$!á µJ-ÈsÜ#wx7…\è`ÆWo µ×þ¨71Î꺞59!bõ[b2 vx74:9¹9lhtÈm’_ç[¢|(.,Ÿ„vt!¢Ì°¦áeX†³° AO !5ÇÄ]Àº„al’=ÞÍŽh›ï—¡È¯ßiŸ~âkv#3Ø] ê¾–¨×—äNßÕms–#|b C„¢hå6q¡ä¨Up›„ªh‰ +$à„Xßè0[ÐÚ n‹MN~â9iwT¡AĆªêê?Ôî­÷;XÃqL}³ƒôK”–£uV“ 3]‰HK¶ŠØ¨½p§Xßd/Šå n3zð#¿æ –Å°J+3L0 Å&lô)¢mlqÈ /ºFy`xÕâ|¡±â„Ø„°a‹Ãd&‰›ÌlýG¨]@‰úQx!'ªÝŒÄŠ B¼4EÝn¹>ÿ¼{jêy­¿>äóù®dyÓ.ܧ³_%SÎ~#tg½IUÍf³µÎÆ€ 0`À@Îd$€K£t8^l2¼I‡Ã[WR@~ˆ’ïÚõµÎc arf&ÕŸ\¸GªÆT2Ò£ 3dª¿Ð P×Ûw7—«u*K@¡P˜]=íþb;jáÀîâlNÖáæÜ^“G\5“J 'ϹÎåå83ñϲ`wƒK`Ö%p«áš—Ìh¸p{9'Ï8=,®mNÊà,ààYÏÑØU$A4»zqâ»Pdl.Î)pvãâWµ +f<ÜI¼3n‘µØ(s`2ƒ“ÇçÈ€ #Ä«G‚ËËÒX Æleg«`¶1NÞd÷OÝsJXr$¼d"iò–Ò%r% ˜¬•7[=Ä…ÃÃÙݨÖd%$(›¿ýû×ú§A7p`²€ÕÉÚÜœÃm&Ûx‹C4[\,S¦‹3£\9'9‡Å’}@r•r"ài4`fæqH”gí„“¹:®°@ bs fÌ‚TßËší%ï(”ѪçmMJË÷û®•+ÅJÙæ%neHKz‡›pâ^®óιˆwL³ÐÄñeu0È9‘è*6#éD©8)ú¼Š3+ñî -߇ÕoFJ» nvBñèîÞ619Uï§ ù|¾+™DÞt€Ë÷éìWɳßÝÙCë­¨j6›­u6 0`À€ª€t&#\¥Ãáðb“áM:Þ¸ +¢C¹(ù®]¿Që<Ö&gfRýéÀ€{¤jL%#=Ú0C¦ú;u½}ws¹Z§²4 +…âb|||ç®`ÀÀš^¿¬Ådú¶}Ý‹¿µþÞùËŽzÑaҵ̀߻víŸxVÛ¯§ù|¾+™DÞt€Ë÷éìWɳßÝÙCiWT5›ÍÖ: 0`À€U@:“‘.ŒÒápx±Éð&o\H‘_¦ J¾k×oÔ:5„É™™T:pà©SÉH6Ì©þ@'@]oßÝ\®Ö©,…Bav===}ñçŸ5-‰hmmmѨ®ªj8¬¼mjõlîX…¾«j$¡/UCS”ˆ²ú®©wò¢Þµh4‹‘7äŸ(ŠŠö Õ7…šª*‡F8@ÏèýhWfïç¡ì¸Ö­n+b5K@yVHƒŠAÄhpQªÂJŸK¡äEÓµÖ.Mª<²ÏlØ…ÃZBÖ·†Û»{RíÿüKè¿¿Fÿ÷ø¿3Ñ]Á¶î¾UÑÚd9ÚT’,òz{D–ñ¨'rAÁD4rtE‚QËÒú-*-ŒŠ=¡ij%”Äñ^N*%üb˜Oš¢(óꢑÜÔå)m b( ’hˆ!»%1P=(KÑÃ’x˜$åŠÍø–_EYy.Œ­ìV!—‘+—\£„Ãs:^)ÃïÛ@Ć×~kkûÿÙ-ÛÞ&²+Ÿù qT¥­ZíðVS‘–®’AFBÛ(E­÷eY­è‡ªj¥¶’ù°}‘@ÐNK Ù ]¥n¡t¢’%NEÁqvcá@“˜Äq‚ˆâì$ÇÛ3žñx¦wƉ ¯qÀÛ)›óèbî\Ÿ¹çž{gâ‡ü$ëxë­_Çb1ž^,X–­¦i"o•!Ýý +±â~#zd hógÆèjAA"`³ÛMN€q]½+™¡O—C?@7€("‡%¦RwÇè:ÖQŽ³ÖÛÌ.€1íÔ¨B”ž4/¥Y}  + ¬¶.]ʪQ%ב$‘ã¸TŠE1½„ ä[1!ç'_Ž°t‹YvUäüù–Ï•[’Ž¨·Åò—~Jía¸‰¿ îüÒŽë;°U|»¶‡¶"öéG;«/œ_ÜÎÅüi^’“ñȼ{ÿÜ»¯ÅÎï^˜ºÈ¥¢ó’”Ø”_zÿu¥ñKªãóê©úÔ$Ô˜(sóÓ ÅÎývîèæØÙ_qw§x1£/ŠÏ­.—kÙ +Ÿ{›Ø aiýüãöð6|•kHço\Õc¶r†G^‡üF.î벇AX¶’g柺ÔûYü»ôÀû¸úç° ­^J->²€ç|œV®:½”˜üÄãñd2!˲±¿M/,ËVÓ4‘·J€N€î~…Xq¿=²4Ê-†aŒ®AA)6»Ýà×åл’út9ôtX"rXb*u÷xŒ®c å8k½Í àÓN*DéIóRšÕªÊjë‚á°Ñ¥ R07Ϩg¿§öþL8®Æ/«Êœ6ȳjçO³¾,ïûœú÷ªó7´A%ªF½êÇU{®ž®Q-ª*¹rAþo`Y¶š¦‰¼Ut„t÷+Ä"ˆûè‘5 Qn±0 ct5‚ ‚ H°Ùí&'À¸.‡Þ•ÌЧˡ À +‘ÃS©»Çctkˆ(ÇYëmfÀ˜vjT!JOš—Ò¬>PPV[ ‡.A§¢,þ/©êÂ'cÜé_Ê7( _”WHío¦Žóýæß{]8¼IøCßV—ê=Ä÷;Ó'wȇ¿®8Öe•§Ný˜ï•$éY’ëä:ù‘UÝþ w8'‚ Ï˲Õ4Mä­  ¤»_!AÜoD¬r‹…a£«AAAŠ€Ín78Æu9ô®d†>]ýÝV ˆ–˜JÝ=£ëXCD9ÎZo3¸Æ´S£ +QzÒ¼”fõ€*€²Úº`8lt)‚¯ªwîÝ›¹p4Ù¸QÚ]*5¼$´lN¾·3uê')çw„ÖÍBó·øÖ-Éã;R'ÞH5ÓbÃW¤½_H5}3ÚµïîT(™É*dE1N+ŠK>AH&“’$åF–CFHd&“yÊTÇ‘{Ÿ«ìGȯ$7¿,Ë«½AÖ8,ËVÓ4‘·J€N€î~…Xq¿=²4Ê-†aŒ®AA)6»Ýà×åл’út9ôtX"rXb*u÷xŒ®c å8k½Í àÓN*DéIóRšÕªÊjë‚á°Ñ¥ òdퟢwU•ÔC¡Ûÿø]¬õ5ñmZl¡…CBã+é¦ +ñÈÆô‘BS…àXÏ7~5}d“pt3׺u¦ýSÃý3)5™›ì©È²|éÒ¥sçÎÅb1r™L&@___(’$é¡`–e=O"‘ÈÆãñÙÙÙL&Cú]]]###dÚâíÈ}[ZZ†††>Éä3 yy«išÈ[%@'@Hw¿B,‚¸ßˆYå Ã0FWƒ ‚ ‚›ÝnpŒërè]É }ºúº¬@9,1•º{±bºL&ÓØظsçÎëׯ“Kžç»ººü~¿$Iddaa!ÎÍÍ‘Ï+W®8Ž†††ááaEÑ–)Š¢ËåÚ»wïÕ«WÉe0•Jå‚sñ‘HdzzšeYò•,ËZ¥ŠBr‘•oI"2ž'ƒ÷îÝ»{÷.™\¶··[­Ö'Nä¾å8ŽÌFÖœ/'ÏÎÎ’ŒÅ9 ù¬@Þ¸jš&òV Ð Òݯ‹ î7¢GÖ€F¹ÅÂ0ŒÑÕ ‚ ‚ EÀf·›œãºzW2CŸ.‡~€n+PDKL¥îÑu¬!¢g­·™\cÚ©Q…(=i^J³ú@@Ym]06ºAž†’•U~^‰Ý–ÿ3˜òù°m惽sÇÞH´ÐÉ?V$fîàzÒzËu¸ëŽ |ó« ùþÓ¿‰œoZ¸|Jš¼š¢J¼ª(ªòø\²,ïÞ½{ûöí@€\f2™‰‰‰¾¾¾`0˜N§ãñ8é\¾|Ùçó1 sñâE‡Ã±k×.—ˇEQä8®©©iË–-mmm©TŠÜÛÑÑ1::J¦ŠD"ÃÃÃä®k×®E£Q­.E™™™êííu»ÝdfžçsIïܹ355uëÖ-<88H.sk#YHüÀÀ˲äöööö­[·žø¶¦~Pn±—ÎèjAA"`³ÛMN€ë@ <(m>]ýÝVÐì°ÄTêîñ]Ç"ÊqÖz›À0¦)=Õ·Ò©->¥Y}  + ¬¶.] +‚ OD‘ÅìíÁÌùñýâ±mÒ;[ÄÖÍé?ÕòÎï&šéù†õ±}/Ç6Ä÷›çh-¾ÿ•øþ ±}/Å~ÿr²é»5Â;5Bs•ØR%¶Õ¦ÿö#©gvÚOæUTU–å´N&“Égܳg϶mÛFGGI?›ÍÞ¸q£££ãÌ™3>ŸïÂ… ÿe¿lcšÌ²|Þþ~øETÜ]ØlØuV©Á$“eIŒŒF£ €švЄB¡€Á–ï/A Œ|”´‚-H¡X(H0ÕÖÚBi¡îm»!WÖÝÄXî“›æ¾÷½÷œ{zyZ\\œ””Â`0êêêâããÏœ9Ãf³™L&—Ë}ñâEttôŽ;ЭVÛßߟ˜˜ÈçóÕjuFFFC§.^¼˜››;66ÖÑÑQYYÉãñètz```AA:‚’’$Y__"çää t7oÞLHH@÷äp8YYYè3%%¥­­ ÅaïlœË\‚›u`.ñÀlâC¹„ýz¦Ë,sÏÒ¿¬f¿v÷¯Æ¤}k¬Ý«‰ûVn{,?øÑ4þËóÆûuókæåË— +…B«ÕF[Æøøx???¹\Žæ&“I*•fgg§¦¦–——WVV%''Ÿ9s&22²ªªŠÉd†‡‡çåå]¹r%$$äÙ³géééÎÎÎ111ËËËB¡ðìÙ³eee£££t:ÍY,Vpp0ƒÁxüøqFFFfffuuõÕ«W}}}QN‡’ ”%,, åmjj¢ÑhAAAuuu­­­è`qq1ÇCyÑñ7n\¸pA&“)•Ê[·n]¿~­GDD°Ùlta”E›{{{QL{vƒùÆP«Õ^ +’7O€Z @ ÷CÑE|Bº€Øœ#÷¶ì$Žƒw‰Dbïj0 ƒÁ`0_€“tº@À(’CáháG£Û*‡R€&o :8:=içÛ»Žm„ž$½©n#–®‚ÏuÍ6„Ȇì<á+W©ì] +ƒÙ’ ³yyN«^󦊮Íõ×eúêsü拨ï +~ Ó½eî}³KëªeîÓÆïCŸoÑ$ÎU³ûmœ+™vÌÿ»®0HŸýÃl†6÷oÊ.Ïþ’÷N­@‘ ‹í|~~~~ii©X,^\\´ed±XJ¥Òö800žžÅáp>|XSSS]]ýàÁƒ––>ŸŸVT*—Ë •J¥èmPPÐÓ§OÑY–J¥æää õðð𸸸±±1—™™Y^^yçÎÎÎÎÜÜ\4‘ÉdëëëèÔÜܺƒÁËåh¥¬¬ÌÇÇÝ +E¾wﺘÑhìëëKII9vìØéÓ§'&&…B F›9VP6›œœŒ‚£›Õa0„Z­ö¢P¼yÔ¡¢`+‹èbsŽdcˆN€cõw‰Dbïj0 ƒÁ`0_€:Ý `Ôb} ÜB7G7€@ +Ðà ;tptzÒηwÛ=IzSÜF¬®¾•Ò4„Ȇì<á+W©ì] +ƒÙ’ 󇥕Õ7¿ŽN?«Q4r^V')~fýVqÃP´x÷Ž¹_½KÍpÑĺªã\Õ±{5±{Ñ£:z—>Öu9íàlñ•qŠÊ¸©Ê[Êú”_;jäâ¥y=Š¼¼¼,‘ô744´¶¶Êåò••[F&“éïï?>>n{ÌÊÊŠåp8%%%¥¥¥555"‘hrr²··7//¯££ãýû÷÷ïß¿víÚððp}}ýùóçÑ+töùóç§NB{"""ÒÒÒ;;;Qœªªª¨¨(‹…¢¡˜ÍÍÍóó󶌃m`³ÙÓÓÓ豶¶öøñã £ººº¢¢B£Ñ Å™™.—{äÈ*•ªP(ÁÑ£Gi4šT*‹Å(JÝÕÕ…²$''çääLMMm~¥f³ù«µƒù6Q«Õ^ +’7O€Z ÆèØÊ"º€Øœ#Ù¢ÀÇ¢~àîá!‘Hì] ƒÁ`0 æ @ý‰îP0j±>n!‡›£@ hð‹:8:=içÛ»Žm„ž$½©n#VWßJé?BdC‡vžð•«Tö.ƒÁl‰Ùl^1mè–¦4s/¦ ¢‰9Q¿l¤«/ zÇ=D²ÿø6~ßk†‹*zÏo·\f¢wÏĸ¼ŽÝ£eº-&¹¿OÿN—RÖÓ#îí—+‡'5¯ôo ‹Ë«F³Ù{}Ýd4M&ÓÆƆ-z¤ÓéÎÎηoß–H$}}}B¡°¤¤$)))%%%:::<<œÅbµµµMNNŠÅb‡S__¯ÓérssCCC;::‚ƒƒ‹ŠŠVWWA@@@vvvOOÏ¥K—ÐÁW¯^µ¶¶ÖÔÔ hh'FC‘Ñ¢Á`°Ý$ÉÒÒÒË—/çååõöö¦¦¦¢måååµµµèÇCÑPR”­ûûû£KÊd²°°0tÉÑÑQ”baaaiiI©T¢°~~~ fkÍ_³q_9#ó¿óZ­ö¢Aòæ P„’€^Õ>mÖÑDÀ0Àc¾·ºßÜÝÑ? +{WƒÁ`0 ƒù¿ùè·Êú‡?E:Œ„᧴ðßG7€@ +Ðàm•CG§'í|ûÔ³-Ñ“¤75À  u uMð¹®ýKï  ØyÂW®RÙ»”íˆÙlþü& Æ‚ym}ƒ|g|K®M,˜u²Ò骛d¦‰sp5ýàûOšøß½ŠÝ¯Šv™‰Ù­ŠuU'ü~–ýç•´ƒÆ»ß-rÿ6Uq}¸¯[®^žœ3©ç×VŒÿd¿ÜƒšÊî8þ;<$ +ì”?œÖvZêâð€Äú` +!!ìvÊnDZ:VÅE™iÇ>VmG+ÂRT\Ç­ ²&¸ØRÊ2²v"fƒZ¨’Â#Üþro¥gewcËùÌwîürsNÎùÝ|30h}ÕùHKKóóó“H$ÇŽ+((¨¬¬¼víÚÑ£GwïÞ½uëÖM›6íÙ³'33+**Ξ=[ZZúøñãÓ§O§¦¦¶¶¶Þ¹sgË–-{÷îmooW(k×®ÍËËkllܹs'&Ôjµååå/^¼råÊæÍ›E"ÑöíÛ:”ÝÐÐ`6›qF£177W&“mØ°!##c‹Z­¾yófJJ +fÎÉÉ9uêÔåË—ÓÓÓׯ____ßÑÑqàÀ¼uõêÕêêjE§ÓáÌóóówìØ}ÊÊʾ㢣5Ny›éìÔ…‡G y ¸ + ¨C{`3 dÿP¤  àS€HÖûÍ™;W­þ»£WC¡P( +…B™, #ݶÍ  •Z ªWÛBN·jŠ„¬9ôñõS(˽”)D·Á ”HŠp×p×*^·kœTšZÂü£cîjµŽ^ÊTdddÄÑS ü/çOÌ Ã˜ÌFs]®5sÅÈáŸ0ÇCFÎÄöœûÍ“ùìX¸þÐÜÞƒsôGÿ+KÔ›—lÍ1aÌÁYÖã‹Ì•ÇM†§øªy®W4ÒÐÐpâĉ“'OTUU={öÌl6+•ÊÔÔÔ}ûöÕÕÕÕ××ïÚµ+--íöíÛxW¯×[­ÖŽŽ|°¯¯oxx¸¥¥ûß»wO£ÑÔÖÖ>|øÛ±3¶à]“Éd41IrròÆ›ššöïßøðáöövœWXX˜’’’žž^RR¢V«;;;±½§§ÓbË7jjjðã£Gðq p÷ï߯¨¨À8"öÇ[8Æø8¦ÅA¿“m[Ú´Ì)o-ºÎGaááhÞ(þ p às@ˆØ =ÆçÒÐ ä&@(Ø +Á +vôj( +…B¡P(o÷·¥ŸaÞKÛù=€L€/lT•ê–Í7B#@1€šC_?…²ÌÑ šBt B‰4  M{Åëv“Š@3@ @€tÌ]­ÖÑK™¢pÕG¡|=Õ1×Çd…2§1ùR“â ¦¶è+e–5WÊd„1K˜3ñO¯쬾düìøÈŵL–ùss1‰Ñ|:™a{{{?aÑét&//ïÒ¥KF£ñ †œœœŒŒŒhµÚÂÂÂââb½^Ï°¥¡V« +EWW×dæü6@Ëœòv¢ëÔ…†¢ €p4L¾hrÛ&°Ûnsw´z€ëÁ`cqØ’¶¶/½ +…B¡P(Êdég˜þ°k¦“S&@@-€ +℺PÐP ‚æÐÇ×O¡,sôR¦ÝƒP" (hµí©xÝ®qR›½oÀ¿þÑ1wµZG/eJc±X ^Y({,–K¿eÀ0`Õ÷tõÕ±œŽ3~ÜõQxÇÇ﫯f+o~ÖXü—þ3æÔ&3Ôz&þË¿­P*J +þ‘÷áãQ]ûf[þ´ÈR~Hÿô±~ÐjÆÓÖo¶ŒÀb6›M&“‘ÏáèùÆCCC]]]EEEYYY.\ÈÏÏÇ ´´´»»oõ÷÷㳘c3 V«•;ÒÛìïçŽ7×Ó>yòS9räܹsçÏŸÏËËS©T˜»áXååå%%%ÁT£b<ÂÂ5bgL…#öõõaÌÝÅë‹•;`OìÀ­œ ¦úwhp ˜¹··g‹3qà‹…B™N·hñ4o!€´ASWn³¤’ØÛ†*ld!v¨'-G6´Èüà êêj<íXêæþ~[9°Õ7H5…oüÁ¡ç R¾Cÿ-œAVßM****ª©¡Á‹Í¿Y¦£§gõæ-³œ³ÐÖ²ö¯rBÝ@ÙP ‚æÐÇ×O¡,s´ÕBt B‰yºôZ ¯Û5N*Í-aþÑ1wµZG/eêb2™ÒÒÒ‚ƒƒW¬X±zõj‘H$¡PìHD¤"‰>>** ++zݺuZúj¥¼Åèt_-Z¸Í›;À‘KB ,‚¦nÀ8tzÁÚ†H[‹Ó»„ðlÖxî¡K#×|ð¾X.‹‹dR±L&’ËÅI6%&%qÕÿ©’DIr‘\– ‘ĉ%¿%®‹E’DöC†oÆ‘…o}ÛD‚íš '¶"N¢ñz±eJ°û8n‰öûfeB4*î{31‘˜û•'%ʤ 6ÉPñr©ØVA´ˆ¨¨¨¨¨¾%±¿ãRi|¢4A.—&ÿz™Xì>kÖl Ÿi#¤–@優¨h"¤Ð.ÚÜ¡¯ŸBYæh«;…è6„i@@+@-Š×í'f€ÖáûGÇÜ¥ÿ^Gww÷Ê•+±|!®®®<ÏB±‡Ïw÷pw÷˜Æ÷xzÌò&³½ÁŸ®xf\`š;8ñ¼Ü\~éýlÿOGŽÏË“øÎôràƒ«§ë47'ðt‚ïóàDàÎwá x|[ΗŽäÁÂçóñ(òÇãÅâää,ÎÎÎÀÓÓs´Ã “~ù\;7£ ]\\¦OŸîííÍuà ¸¹¹Æèã/¶ØµÛu¶[Ý›ìÀ„pCàT±„qÎxÅå677;úC¡¼N·pá¶øˆ 7WVðØëXñž7NûO@\:?b»`Œ%0c:_àé&ðä |€çåå>Fü³_¶1Qegÿ? +Ê˼0w†—m¢6Ù-%`šµ‚:lLÑÝÕZX]RWXÐôÕ»í&±i²I?Ù4›n¶é¦M?˜lZèv4)/ÚÕ¶Š.êÊ8€Âð"ÈÜ{{ιÎ: ‚Š·2矇{Ï=çÜçÜóœyž#Y^ÌZÙ4¶èé–Ué–ä´ôÕì—ÖbµXm›•ýæ®NaÑ$•þcž’–’*nç"Uð¸§OLÚc® 3ž°ã1Kgcé\ªáD§ W€fPÐ8/M¼Z‰j·È§«îÌY³SÝR8q—”æ5@'Ъ_hÕ m@;PäïêÌžJ⪯¯Í,˱cÇNœ8qôèQÇãõz}RR1qo¨ªªb>ߧòˆ·â°¯âˆïð‘*·Êëñ½öºï•ŠêŸ~¿âò/ö¹ï×?yý°§ú;•^ö”uòxª+û*=¾J¯—9—1ä“{˜á^!fEõL-f^U1Cñ)ÆÞX§Å¼âiêøñã'Ož,++³ÙØ©¹¹¹mmmlkšföÏŒ”Ô +ƒ7mb¾š¼D8ì^f/÷‚âÙÃ+_½”ƒv±D xØ}¯hf°W²¬y°ÐÄ®™Ûs€CÂ2Å™"yÕªîÂÏ÷êJÏÁýÞ×øÊ_õ–—yyã`VMù«>·ü€Àxt`öí¡å<‡ö3ÄÓýq-çdÞ·?M•ùø×Ø_]QöÆw½ÞÿðåV‚Š€o¾ ¼hìG¾éfïG‰D"‘HÏž‡ 7ßÊ€@*è¢?]5ƒ€ÆyišV¢ZÀ b9€âtÕ9kvª›@ +G"î’Ò\ èZ@õ ­šA¡ h +œâ]€ÙSI\‚‚‚;v ›m‹Ôÿ­´øUÓUUÓ45V¯±÷5mh¨¿÷_õÿãð@ï´:³Æ;h3ª¤–D===n·›ļ¼¼ŽŽ³Í‘’z¬‚¡Ð¦-[˜¯ný0ê&žøAí ‹,Á‹£MàÉF'ü”/r¿Ї  ¢OyG¨ø’ew "át4&œä%p¥¥­>ýþ¯„¯MëêÔ£CútX¿ßc`Ñ~A˜·Tïêê°®èÚ°®Žèꨮ1ÆbD4^9¢GGDý¨¦Š-×l\06>¬vGWïðwM¯˜mÏ’Â^:->³AgßhòþXÅ›?°ÑŠ÷€1ÐØŽ»HÔfö*K$‰d¹Ò&Ò¶P'=4j¾äï‚®-„ q^šÖ«•¨p‹äPqºêÎœ57ÑM(…#wIi.P#rõPýB«fÐ@† -zñ®Ž@Àì©$®@~~þîÝ»GGGͶEêÙVT®Ýþ´+:5e¶-‰«ÁÁÁ;w²€˜——ç÷ûY¦if%%5‡‚¡à× +Y€m  D*(\u‰ä°ðÇÁrŒNBÐ TB#ÑWYîG( ú+«…@—‰Á1F,{˜c\bÂUá?SÀ'@)ñCAÊêUüþݘ» Xž3¬ëC‚;‚»‚;q°ÑxB×ïéú$ n8¯**§ã©âV}2ßgͦÄàãº>"Þø¨K1ÍQaCTØ4]ý³7m+Vþ.¶›º8üó^2{•%‰D²\1âxßFA {ðˆÅôf¢ q^šX3 •¨pƒçŠÓUwæìâU©Ï¡p$â.)ÍjÄš¶€êZ5ƒBа#ANñ®Ž@Àì©$®nݺ•ŸŸ¿}ûö³m‘z†¥ªêäÔôèÄý‘ñ©{“÷Ù­Ù%¨z{{‹ŠŠX@dûÚï÷›mŽ”Ôc +…Š¶r_Ý|ô牧çD‚×D30²>£üpø³è¢ç ï7?h@v—,€‚®‚ØÑ`¸’“VþæÔÛ,:éSwÕ+ÑðUuðšîVæ%ü C wkƒÝúÐu=Ò£O„ôÉ>}¢W i#ÕDúØ-}<¨ß éã!~ÁžN†ôÑ >ÒÃËÉ~}jP¿×ÇŸNÞÖ§Ùí€>q[‹£Ã7uÎ ýÎumèš:ØÍYЪ¥Àx/›l䦮NÝë¯~ëG¶•+OñÝDçÅn:Çw“Àôõ•H$ÉrÅHü@.XôùÁ¼\XXo!išD³V¢ZÀ b9€âtÕ9kvª›@ +G"î’Ò\ èZ@õ ­šËüÛ€v È)ÞÕ˜=•ÄU0,((ضm[86Û©g[ªªF£Ñi»6ÛœÛÈ[·neqýúõ~¿ßls¤¤«`o¨PøêàOD×€{'ÐÜɃàcà2è#P¸ž~ êÎ?Hçî+Y¾P#±¥'v(ðç€R⇂¤¤¤÷N½­ëSúd¿ö_öË>(ªëŒÃ¿w\ÚþÙ‚Qgœ4E'³n;± +Ë¢f‚mb"Œš`4±æ«UǘILªQóe#hR'Šß­:?Fhª£TE]ì.(¸î²÷²ÒŨàÞ{zî]el-²3ŽÜ‰{žyæÌÎî¹÷ž³çÜyÇW§úœŠä +INEvÜÁP¸•ªìdþvéÅšñôÒ…óøO«³–ÌxnâôI^ž6ùݹ¯îÚÜ~¡†]jR/6ðÇ…t•–zGý¯ÐZæsòa0¥E½Ö<ÿã…q&“~ÃQB8ÒóÓ–x¡„B¡Px¯åå¦ 8T€Æ€~èõˆ*Â鮧kyõ¯"*R@bãú4:êFþ`0%=c¯§t¾ˆÅ‘­{ iáí  ›Vív=•èÅãñ :4))©¥¥Å豂»%Øl6^-‹Ýn7z8A·x½Þ$«•ïÕaÀ^"žýŽéÙ¯T÷¶ÈGܽC¹žŠ ©ZôC\–e£Ç"î–@ `³ÙxA´X,v»£ªªÑƒþÞfo¢ÕÊ÷êzö; +t—"JA¥7?—Ï<%Rª–ý(È%rÇ»:“ñáVØkòåÖ•'´£eBÃdŠÉ]³œ±ÖîS%GHr†d§¢·=ªÈN5xž±×?8:yÄ _=øá;sKöm=~`Wá—yeûwvøríñ9¯LôЃö·¶ÇvÝ/5Vµmí+Ó&?2xoë¿;l?r`´uߨ¯¿øÜ×»óJöýýìw‡CþzÖzViqÝx\K×£]½£"Õ+áGK.æ?Ë:%¥CZ¸lI?“i}ø Fè:ˆñÿÖðU +…Bá}l8㪀JÀFèÚª•k‘¯çËËùµD@Š×·°è ÑQ7Šðƒ)éC€| ¨uéÿÇÂið`D`ÀØ´j·Ûè©D/Çl6'$$H’dôXÁÝl6/ˆ‹Ån·= [¼^o’ÕÊ÷ê0`P§¥D’"xö;­õ¤ThÄåµÀ±ˆCˆð>³ÄåŠDåD™Ð0™Ly9ÙŒ]eWš™Ï¥HÎÖÕ£ª¿žµ_`!ÿºñ[e<5ÆöT[Ó™C{6ïÛ²ædqA‡äø׮ܑÖǧ<3nþœWóÈàÙ3žÈçùÆîlmXÿé‡OŽJÊÉZÂX{sSݸ'RøM&O¿míg¿Ì•]•ìŠ—ÎE8˜{¤Vâ“m`’Òá[˜õ~¿˜˜ €Cñ’›„B¡P(¼wêuœª€J•ÐÈÕj©JnéýíZíË +¢SD€ ±qq…EEFGÝ( ¦¤g ò-EDšÉKHKõg€D`ÀØ´j·Ûè©D/Çl6'$$H’dôXÁÝl6­$Z,»Ýnôp‚nñz½IV+߫À=@–"IŠ(‡!ŠA©zö‹'Êxt<qÞg–†„“ rB&4L&S^N6cWY{3ó9É’]=ªwsªëY»‡]“>yï-~«Ù3§²ßùÚã]0ï×_Êý<Ëõí¡-k²“F<:뙟}´Ðÿë cF79Oò}ýÒù¼•KSG&­]þ>c×<Ž?¤Žâ7Ÿ:jåÒÅ{6}Þ\wŒ]ó©m‘ŒçÞ©èªr=ó7°NYí”d-é³pè/cø VróƒP( +…÷N^Çˈª€JP2¡ ªãeTrKîm×R)ieëQÈظ¸Â¢"££náSÒ3†ù@–""Íä%¤¥ú3@"0`lZµÛmôT¢Çc6›$I2z,àn 6›V-‹Ýn7z8A·x½Þ$«•ïÕaÀ NKˆ$E”C‹Å T=ûÅ}rŽEv¹ð~µ ¨ÒNÈ„FŒ©OnÎrÆ:ØI•êB’#$»zT‘ŠìRýõìòº˜“µ˜€)Ç/ØÝöò9/OüðCþÖ<÷ÕgÏ|Á–ôø´IÏþyÆÔˆûûeÕuÆáß Øô3išÔ?2“Ú¸ÙØÁd %µ-Äv¦è$N¿l3MÚibµI£mœš¤:i'¥‰6ƪ­š&ŠŠíLÆ5£Ù°àpAÖd½.»À… ò½÷ôœ‹øKº3ÈÜ8¿yæβ{ÎÞ÷pÞ;çÙ;çÜ~pg!5FúÔ­¯ýÞ½pÁëÖ°ÑÞ–FeñC‰ /üê©SGö×=Ô¬býši´ÄSÏÔCo`A6ÒÖW¿²nvRÒV T~Õ1‰D"‘H¦*%qŽW•@6JØÆíNëWΣR> ô?¿Á'äŠ nˆ$§¤öxìVÝ”H4š—?(ê„ÒSœN^BÂêk€ -'·6²{)37ªª:—Ë¥ëºÝµÈÈÈL6†a¸ÝâHt:Š¢Ø]ŽŒÌ„Ñ4-3+‹÷j:Pø…E ‹ð +÷ã#i±å~w퀊ø¦K¦+c?(x{,ƒÈ¬¤Ä¿½±‰±aÖ¯ÇtL?7ÚÑ0Ú°®Ÿ0Ãì#®¦ÆÁ]›S“¿øàÂôÊÃ{ÏŸ.yyÍÊù÷Ü=gΗ¿éÎøöâE=pÿcßydÙwI»mvò-7¿²ú™£)6 mÞô’+ýÞ×~÷<înT#ó¾Ä„„—_\¥)e­gJ{š«Y´Õìþ¿J¦–˜…©7°Î  džõç6¬KMJz h•+})‡ìß\‰D"‘LcJHœ5c‚ÇuÎ ¤¶Î 9¤’ña¥ ÎõÓ[³ª@B$9%å°Çc·êΠD¢Ñì¼ü¹@1PgíZœNηžoz ¤åäÖ†Bv/eæFUU‡Ãár¹t]·»™ÉÆ0 ·›§p:Š¢Ø]ŽŒÌ„Ñ4-3+‹÷j:Pø…E ‹óÆc Å–ûÝE´h$TZÓKâóÉtblßyÿ(V{¹|Ãê_—ïjó3ã|,Ò8Òáw 7^.cŠˆ}¾Æ€©Ìö³+ÈÌÎÑA}ÅK/Üš˜¸h•+})Ä5Û·X"‘H$ÓqâøÑSkæY Tàm þ&ŽŽ+q®Ÿ~8ªísE’SR{KÈn@ŸRPfY¢dÚSfõƒ×RГ f È#ѳ’w¾¹I´Úp/ëjb]AÖ4;›Ì®FƉ4˜—hC|ÊÇt7sÌî³ï‚9ÜÎFÂFkí{[þøìß/øÑc¿XþøªŸÿxãÚ•ÏüdÃsÁªRÆF3»5ÿ_ÿðÛuÏ6Ò£ÕWzönß·ý/vn.9°K9þþÉö×û<£}áKÝl4W—ðíÆú{Ôú€ïpgs53ûX,n÷ùÏîÙVhõÚ0j ¶³~í.^whcƒmbäp‹…™i068q°¡.6afßø;ýÌìﳘ¸šQÆú®›5ÄXøò! ´‹;ö·±>õãµM)b±mâî|¥f7¯éâÅÈò•7SÂ@‡eõÖõÊCä“”D"‘Hn ¸ªNg ôèaÐ<àÜîˆü “À)àäœUš€h° ÜRRRˆ6ØZ ŸþÌMëW¯PÏÕ´;<}ì‚âm?[ÙQ_öWðëáúÊ°_`½ïèç*õZ]yHñ¶Ôo®ûðü¹3jS½ô«MþPc]³¿*Xw& øΞ8ªxßÿ/ûåÛÄyÇñﳩZ5º‘ØçØNÈTxÒqƒ8j;gþ†$›Ä‹ÅÛ›Ih¯özcª˜JÕíÅÄx3iÒ´õÍ€°”sÛUÅI‹E †D‰Ï†”°–Å» ‡üâ¿)dÏ]ÈD#Y¸èQ¹ß'_=ºÎ~póÓ&õkŸß¹¼=šý"?451ò¯üÐähöÖèÅ[cC· #_ÜŸúLÿϤ>5qýNþÊTþ²‘¿bÞ¸z—¿ï„óŽ÷žgx׋.ÆâãÍkÓúпÇ.ßÉ]¾ûyáúP¦í'û_fì—@ì pÊý4eôQ¢P(ÊW™§÷q¾ƒ÷2œûìO`[Á¾üÆÙÖ‘zÀÎ1ÆÞuóÞ²ð_Ï»§¿ ö>Ø°u`Ü$¿Ôßß/Zu=D©\Nv¦"îý*8JÏ*Qzž,·úBíùbQt+ÞÅ0 Y–UUµ,Kt-AT‹mÛš¦ñ QQ]×E—C+bšf<‘àÏjÔu Ç"P‰E ºþp‘±V~2s~j.k€F`›õÀ«”:ë—òª{Ç׺#7Ò0ðM<¦æ•UÖ®Y×X_ê ¡º5áàšúàšpÝã8ÇÁÇã²4„ëøâú:)ð‡%_Xª K5õÚ7õRMÈ¿:ä¯ øjêjWjW}5!_3úkC~_RMØ_tâ ùøâÕA~Š;É_­>àç/^’œ7 +×5>~ߺç˜úà C¼Í@C0Ð~]cScÃKßz™_´ïºWµÉÍÿ?J럌ð»O¡P(”¯uÖ?•&w+ç‘Ü}œ¯€?às'ÎÈÜ8ÇuÀï® 0|Œ¹ ™Ѫë!Jår²3Å5, ¥g•(=O–aÌûjëЋEÑ­xÃ0dYVUÕ²,ѵQ-¶mkšÆ7DEQt]]A¬ˆišñD‚?«Q ˜p,•XÄ ëÁöaÑþ‚ ‚ ˆ V¡é±e£C@’ú>­º¢T.';S ¥g•(=O–aÌûjëЋEÑ­xÃ0dYVUÕ²,ѵQ-¶mkšÆ7DEQt]]A¬ˆišñD‚?«Q ˜p,•XÄ 0î®Üçà·W­Úªªm?üQ¬E‹nS7oÙº‰â¥lÞêdñ ªnWcñ–––d2¹sçÎ]»v-Ž{÷îÝG|­­­»wïNîØÑ’Ôv$wðí#m{m{³ªnÞ¶mñÚ.^^ +…B¡PžGœ]&º¥yë¶íñÄÞööÄž=«Ãáo®‰[À6Í Qæã–e‰ºikfl;X X ö’+‡’äè­º¢T.';S ¥g•(=O–a Èüö…Ú:ôbQt+ÞÅ0 Y–UUµ,Kt-AT‹mÛü›ßEÑu]t9±"¦iÆÜø©ë&‹@%1Œ»+[áдvíÑ£øàà §{zŸè:~âäñ“§þÖõDø å…M—÷àäß»»ß9ÝÓÓÓÛÛ{Æ¥×åìÙ³çÎë#¾ ~•zzù5ë9Ó{†Ý§ß9ÕÝ}òT÷‰®¥kKŸ +…B¡<×?yâDW÷éž÷ÞÿçÛ]§š÷ì©~ü‘áwÀ`o2¼ÅüvYÞró&Ø°ßÇ€ŸÀ¸J’4Ðß/Zu=D©\Nv¦"@(8JÏ*Qzž,Ãb@¨­C/E·â] ÃeYUU˲D×BDµØ¶­ißEÑu]t9±"¦iÆ þ¬F>`±TbƒÀ8ð1°‰––[·n‰î† ‚ ‚¨–¹……_ycc=À} Üt-ñ†›_JÁù ¸ vì¿À»Àk`\}’”èÝŠ‡(•ËÉÎTH»÷å +X%JÏ“er@ µuèÅ¢èV¼‹a²,«ªjY–èZ‚¨Û¶5M㢢(º®‹.‡ VÄ4Íx"ÁŸÕ(Ðç*ß ‹„£|å>×ý~°iÓÈȈènâëÍüüü3ü‰ ‚ ¾Zî/Ìÿôõ×뀷;À(ð Øe`)ì“'âháU°qn’Œõ‚©Ì‘CŸ_ÊôgD·â!Jår²3Ò@ÁQzV‰Òódø½Ë1 ØÞ‘/E·â] ÃeYUU˲D×BDµØ¶­ißEÑu]t9±"¦iÆ þ¬F>®sŽE ‹à8î®l…ƒ¼qãðð°èn‚ ‚ ˆj¹¿0ÿã_ôvä]]&‡—Àx–;aviþ—CƺÁTW}~¦?#ºQ*—“© +ŽÒ³J”Þ¹ƒÌ±ú‚íùbQt+ÞÅ0 Y–UUµ,Kt-ÄÂüüüÜÜŸùôG=óéÄ €mÛš¦ñ QQ]×E—C+bšf<‘àÏjèsÜ[*±ˆA8 +ÁW¶ºî·QQ†‡‡EwCAATË£……Ô¯ú€¿p9dlÈ.à%0ž§ÍO^ã>ÙâÊ¡Ïï¿ÉˆnÅC”Êådg*¤‚£ô¬¥çÉ2Çês@ ¶wä‹EÑ­xÃ0dYVUÕ²,ѵxš¹¹¹{÷îår¹ëׯOMM=|øpq¾T*åóy>Ã,ÎÌÌÌLNNŽŽŽòÅ|þÁƒ³³³¦iòeŸºLOO‹ëƒŒmÛš¦ñ QQ]×E—C+ÂÿkÅ þ¬F.rŽE ‹„£|e«ë~exxXt7AADµðo¼©ƒ%à¯ÀM°!†ì’^ãyÚ ùäUÆÆû ¹rèóû/d2¢[ñ¥r9Ù™Ši à(=«Déy²Ì±ú‚íùbQt+ÞÅ0 Y–UUµ,Kt-Þevv6N8p ¶´´=ztzzšÏ—J¥Ã‡755íß¿_×u>333sìرH$âóùâñø¡C‡ÎŸÿûõG¹Æqü÷žËÞˆÙô¶êBf_‘mÙLgO£4n¼)˜-b*Zš5mZÙ+Ab$(x¡^((šéE•õ£$è) ¸lfC«¥a;ÓNšÐ1[‘æφó̽9''{ œW˜çÃÂì›ò>ÌÛÌ7ÿøã>ÜÚÚºwïÞƒŽŒŒ¬­­©ž‰©áû¾i¯D)å½3ÃØŸ“ëºí†Ag5 €… "ÐHE\D´òHØ~ )-ËR= cŒ1ÆÛÙ|>|Ì AqXü½§!èú÷2œf€’ÿ€øÅaS¬ybrJõ²\«¥»³q`˜ ’^4’ôtEPõ³@ +hÉtUªUÕ£D—ã8š¦éºîyžê½D—ïûƒƒƒÉdòÀÏ=÷ÜG}´´´D÷mÛÎd2ôËíÁ¥;ô˜Nž|Ì AqXü½§!èúqHËJø˘é0›bœœT=G„,×jéîlæ‚Ç!IzºŠ"¨úY ´fº*ÕªêQ¢ËqMÓt]÷ÕÓ0ÆcŒ±]ÍçcÀ0Æaq§2œã°$Ć 8lŠ5OLN©ž#B–kµtw6ŒsÁS$=]ETý,Z3]•jUõ(Ñå8Ž¦iº®{ž§z/ÑuãÆ“'O>öØc}}}333õznÞ¾}ûôéÓ¯½öÚÓO?}äÈ‘ŸþÙ÷ýS§Níß¿hhˆÙÆƆeY'NœØ·oß±cÇÆÇÇiM­VS=S†NˆišôB”RÚ¶­z;ŒmËuÝv೚ +ÀBØ~Tµ_9\Ù‰@BJú5¨zÆcŒ1¶ ²ù| æÃ8,îT†Óa–„Ò‡M±æ‰É)ÕsDÈr­–îÎÆQ`.xj¢‘¤§«(‚ªŸR@k¦«R­ª%ºÇÑ4M×uÏóTï%ºêõz¹\>zûí·/_¾üÝwßÑ÷‡z÷Ýw;;;[ZZ¾üòËÅÅÅ\.·gÏž¼óÎ;ããã_|ñEooï<ðÄO ]¸p᧟~ÚÚÚR=SÃ÷}Ó4é…(¥´m[õvÛ–ëºí†Ag5 €…°ý©j¿r¸²„”–e©ž†1ÆcŒí‚l>F€ù0‹;•át‡%!Æ€4ÅaS¬ybrJõ²\«¥»³q`˜ žšh$éé*Š êgКéªT«ªG‰.Çq4MÓuÝó<Õ{‰®z½~ï›o¿ý¶£££­­íøñã/½ôR*•Êd2¯¼òÊSO=õÐCår¹Ï>û¬¯¯oïÞ½/¾øâ¥K—®_¿þÍ7ßôôôÄãñ³gÏ–J¥ÅÅÅ••µã0…|ß7M“^ˆRJÛ¶Uo‡±m¹®ÛntV“@XÛ¯‘Š ö+‡+;HHiY–êicŒ1ÆØ.Èæó1`˜ã°¸SN‡qXb HCP6Åš'&§TÏ!˵Zº;F¹à©‰F’ž®¢ª~H­™®Jµªz”èrGÓ4]×=ÏS½—èºsçΕ+WVVV¾ÿþûžžžd2™N§é¡:tèå—_~ë­·z{{üñgžyfppðÔ©SôÝô}¿^¯_ºt‰~ä‘G˜™™©T*7nÜP=S†N…išôB”RÚ¶­z;ŒmËuÝv೚ +ÀBØ~Tµ_9\Ù‰@BJ˲TOÃcŒ1ÆvA6Ÿ#À|‡ÅÊp:ŒÃ’c@‚â°)Ö<19¥zŽY®ÕÒÝÙ80 +ÌOM4’ôtEPõ³@ +hÉtUªUÕ£D—ã8š¦éºîyžê½D×âââ믿Þ××wæÌú:44”ËåùäóÏ?ßßßOmll¨ž‰©áû¾išôB”RÒ±Q½ƶE¿»Ú ƒÎj( aû5RÔ~åpe' )-ËR= cÛÚÚÚúãëÿú)cŒ15Ù|>ŒóawŒCÄa Ò‡M±æ‰É)ÕsDÈr­–îÎÆQ`.xj¢‘¤§«(‚ªŸR@K¦«R­ª%ºÇÑ4M×uÏóTï%ºè) ;v¬§§çÕW_- +Ÿ~úi?}½sç-¸{÷îøøx.—úüóÏ?üðË/nllÐG«««çÏŸ?~üx&“yöÙgé_øꫯî}Ä"È÷}Ó4é…(¥´m[õvÛ–ëºí†Ag5 €…°ý©j¿r¸²„”–e©ž†±ÿf+Dßlnnn·àÿ»#ÆcìO*›ÏÇ€`>ŒÃâŽq(‚8,c@‚â°)Ö<19¥zŽY®ÕÒÝÙ80 +ÌOM4’ôtEPõ³@ +hÉtUªUÕ£D—ã8š¦éºîyžê½D×ÆÆÆÍ›7üñǹ¹9z"ëëëtgy™þ‡ÕþXCM,--­¬¬üöÛo«««¿þúëGܽ{—_½z•~¼R©Ð£¬×ëŠFaŠù¾oš&½¥”¶m«ÞcÛr]·Ý0è¬&°¶_#AíWWv"Ò²,ÕÓ0¶³+W®|ðÁ.\¸}û¶ê½0ÆcRÙ|>ŒóawŒCÄa Ò‡M±æ‰É)ÕsDÈr­–îÎÆñ/öë/4Škø÷ôY(d"±K 2h£ $ë,V4dõ©ì¼´úTJEÁŇú‡Æh©¶âÃV¡ˆúP»-»PÚd¡¬¶ +2jH&»D´,32e[׌MÕDsïofÛ4×Þ¸soŠ§q~†e2{fæü2‡ý}y <5%ÒÓVAªº€¶ÞÔhµ*»”ørGUU]×=Ï“=—¸›Íó +Bה؂S¯× à†¨išmÛ²§ÃØœ\×íN$h­v9`,Ì~QRe¿ápdšfY–ìjkbrròÌ™3k×®5Mó‡~˜9>ϾÏcŒ=cÌLF²@% ‡¥¦áPáp(I +‡-JëÀ`Qv1RóýdÚlò@9xj"J¤§­$‚T?tm½©ÑjUv)ñå8Žªªº®{ž'{.Œ±ùª×ë†aPCÔ4ͶmÙÓalN®ëv'´V;0f¿()‚²ßp8²M³,Kv5Œ=ÉÄÄÄ‘#G–-[®Ùà÷ù‹/¾˜šš’=/ÆcìÇÌd TÂpXjE‡€„ >Û¢´ e×#5ßO¦Ív ”ƒ§&¢DzÚJ"Hõ#@ÐÖ›­Ve—_Žã¨ªªëºçy²çGÓÓÓ2E½^7 £ñâiÛ¶ìé06'×u» Z«@ ³_”AÙo8Ùƒ@‡¦Y–%»Æžäûï¿_·nþðÜsÏ™¦Y©TdÏ‹1ÆûÇ13È•0–š†C„Ã! $!¨Ï¶(­ƒEÙuÄHÍ÷“i³Èå੉(‘ž¶’Rýдõ¦F«U٥ėã8ªªêºîyžì¹<#¦§§ç32ú鯿ÞWÖLØ|ÔëuÃ0¨!jšfÛ¶ìé06'×u» Z«@ ³_”AÙo8Ùƒ@‡¦Y–%»Æþ4jìONNžÍÉ°…®^¯†A QÓ4Û¶eO‡±9¹®ÛHÐZírÀX˜ý¢¤Ê~ÃáÈ:4Ͳ,ÙÕ0ö觸¿¿É’%á"…aË–-ûì³Ï&''gNçÖÏc,¶ÌLF²@% ‡¥¦áPáp(IݶEi,Ê®#Fj¾ŸL›í@(OMD‰ô´•DêG€. ­75Z­Ê.%¾ÇQUU×uÏódÏeAzôèÑ/¡‡6ŽÐÎíÐc!ÿîÝ»wîÜ¡ñô§ïû?ÿüóƒf_g||œLMMÑþÄÄÄo¿ýÖx5h|E§Ó>BW¾ÿ~ãš4˜ŽÐ'Ý‹îK#ïÝ»GiŒ§OL;t;:83IÞºuËuÝÆeW5nJŸt½ÚÌÔÅzd†aPCÔ4ͶmÙÓalNôûÓHÐZírÀX˜ý¢¤Ê~ÃáÈ:4Ͳ,ÙÕ0ö'êÅ_ý5%+D¶aÃ^ÆŒ1Æ13È•0–š†C„Ã! $!¨«¶(­ƒEÙuÄHÍ÷“i³Èå੉(‘ž¶’RýÐ,éMV«²K‰/ÇqTU¥øêyžì¹,ÓÓÓ3û—.]zûí·ßyçË—/7Ž\¹reÇŽo¾ùæÙ³g}ßo¤ÀŸÉdèø¹sç.^¼¸mÛ¶t:Ï秦¦¤{öìÙ½{w¡P Š£Gær¹Z­ö¯ðõõõ:tèÚµk_}õ]ù“O>ùõ×_é+Û¶i0|øðÒ¥Kbfÿ¥—^¢ÞH½ìì}Æcìff2 +*a8,5K†çÃp8$DH"h¬-JëÀ`Qv1RóýdÚlò@9xj"J¤§­$‚T?tKzS£ÕªìRâËqUUu]÷µ”MÕë^1±ÍF#Ó¡Ø/&“‰Ëåòù|³ÙÌ´/c—/_.\¸pÚ´il6{åÊ•XçbgII‰··7ÞHžžž{zzzð-öLŸ>]­VoÙ²ÅÕÕÿFDD<{ö ¼xñ"::zâĉR©T¥R%'')Š¶¶6|ûøñcŸsçÎÉd2œèèèxôèQ£Ñxë֭ÇËår‰D‚ÖNœ8ÑÞÞŽËacܸq ££Ãb±,Z´Ë“ƒÞ¿?-- ·;''çÕ«Wz½_͘1£¨¨h÷îÝÎÎÎh|îܹ÷îÝCã™™™QQQõõõŒ~cŸÛ-‹qy<žÁ``ÚaXðŠDxVƒ4­´öŠ@í×DŒ<žN§c:‚ý2888ÔèêêÂÔìëë ¿)ø÷Î|…龬¬¬··÷— áÿž$¥’P +𜇵#)Ã:Z6RÔ Ø²ê–‡¶º†é8ìˆOV«di  + Å¶kÔh$=>µ”MÕë^1±ÍF#Ó¡Ø/&“‰Ëåòù|³ÙÌ´/c»wïÅÇÇGEEEFF>}ú;ËËËgÎœ‰7’»»{II ö¼ÿ~ÅŠ...!!!›6mrvvvttŒ‹‹«®®FÁ___?{öl6›žž®V«¥R)ÇÛ¾}û»wïp:Ö¼ÇÇÇçìÙ³2™ -£©­[·VUU]¹råÔ©SJ¥RLƒË UZ­v„ hÿëׯkÖ¬qrrÚ·oß… ÂÃ㣣oÞ¼‰Ãúûû³²²Ð8ZHIIù믿°BÁªäÀ<سg††¾1ú †ÅbÁ“€‡Á``ÚaX:;;…"žÕ` @+­ýF£"Pû5Ñ#£ÀF ‡—$ÓÑìïß¿cb +…ð¿`V…a h~ïGE)øׯ_LÇD $)•,€R€ç´8¬IÖÑâ°‘¢nHÀ–X§°<´Õ5LÇaG|²Z%K“8U-¶]£F#éñ©¥lª^ ðŠ‰m6™Å~1™L\.—Ïç›Íf¦} Ò`E{^^ÞôéÓOž<¹ÿ~‡sæÌ™oß¾UTTDGGÏš5K*•:t¨¬¬ìĉûöí[½zurr²Z­^·nݤI“âã㱞ž~ùòåòòòˆˆƒÑHbbbPPPvvö‡p!½^Ïãñ|}}OŸ>ššêîî¾råÊ”””ÐÐP¹\~þüù½{÷âŠááᥥ¥èNyòäÉÔ©Szzzúûû7lØ0yòdt2##ÃÛÛ;77·¯¯o(F³dÉt ­?>..ÝFË8kùòåhŠÁ¯MøS,‹X,Æ„ˆgÆ`00í0,B‘Ïj0€ •Ö~£Q¨ýšè‘Q`#ÇÓétLGC°S†ôþ>zô3éhP ¬òóósqqá¡(j¨io쀀///Lßiii­­­LG $)•,€R€ç´8¬IÖÑâ°‘¢nHÀ–[§°<´Õ5LÇaG|²Z%K“8U-¶]£F#éñ©¥lª^ ðŠ‰m6™Å~1™L\.¬ÙlfÚ—1ƳgÏÄbq```VVÖÚµk=<}º¨¨¨°°0???55U$Éåò¶¶6\¨±±WÁãèÑ£qqq³gÏ®¯¯?w«+ÎÍÈÈÈËËKHHH$'OžìííÅ)X¡°X¬ twwÿþ=%%ÅÍÍmïÞ½*•ŠÍfãr?~Š݈ŒŒÜ¼ysXXÖ&èüí۷Ѻ±ÑÒÒÂäW&ü!‹%&D,3 ÓîÃÒÙÙ)‰ð¬hZií7Ú¯‰6yY­’¥I€*€Û®Q£‘ôøÔR6U¯xÅÄ6L‡b¿˜L&.—ËçóQˆ2íËXâÝ»wááá...ÙÙÙZ­V£Ñ¤¥¥y{{ã—\¿~}|||AAÑhܶm›­ì ~ýúõÛ·oårùÆq¢››[yy9V)))8{^¾|ÙÔÔ”‘‘¡R©nÞ¼™ŸŸ?gÎœyóæaT* +…………•••<Íf766îÚµ çúûû+ŠÅ‹‹Å⢢"‹Å‚îÕÔÔà‘‘‘_¾|ÁBch•ÜÜÜöövµZ ²²²6mÚ„íÔÔTN‡233qº^¯ÿ/ûÕòÓÔÖÅ÷Ñ¿@q`¢C%7¥šE¡)‰ƒK|&7Ê@økLˆccœ8Ð舑‰wà„^¤h$ˆ}œ¾)ôE ŠÅò(}­ý­uNÁ–žBÑϯ=¿œ6í>k­ý[½÷Úèªèt:‡ÃQåX«Ø °°0wX*¢(V›Ž +e‰Du:Ú!kgÌ%õ~•tØûY$ÉfF¨Ójq«¶7*T¬…Óé<{ö¬ Ð Eþ^ypûöíØLNNV›¯ +*T¨Pñ¯@Kkk cmŒ9¤æ°{£Î°GjM‚ðŠ±&FgëΚ]†®jûña&‘h:ßRËØKÆì”5¡’–Ÿnºz+c Œí>qÒ +UÛ•ßápX£ÑÔ××G£ÑjsÙJp»Ýz½þÈ‘#ñx|zzº½½½±±ñرc·nݺqãÆÓ§OqüáÇ{öì¹zõj, wîܹ}ûö•+W<øüùs´óàÁƒ½{÷^¾|ãïóùîß¿ÿèÑ#›Íöæ͛ӧOïÛ·Ssøða´000`6›Ïœ9ÓÐÐ`±XP÷Å‹hçøñãwïÞ½yó&yöìY"‘ÀW½½½@­¹¹¹t:“ÖÖÖ>~ü8™L¾ÿþÔ©Sû÷ï?zôh]]Zxòä ŠµµµýñÇ÷îÝCõÙÙÙëׯïرãܹsèiuC­bSÀªÃÊÄQ«ÕŠ¢Xm:*T”E$iÔé°V1ÖΘKêý*é"°÷³H’ÍŒP§ÕÆj{£BÅZˆNÇÉ3gØFضmÛµk×Bj'¬B… +*THhim­a¬1‡ÔvoÔöHÍ¡I^1ÖÄ<[wÖìê4tUÛß3‰DÓù–ZÆ^2f§¬ •´ôøt ÔÕ[k`l÷‰“6µªÂá°F£©¯¯F£Õæ²5ø=???88h·Û³Ù¬<žËå\.×ÈÈÈÄÄ^xgffppnnÎétNNN¢V*•ÂqŒ3 +X­V9à‰Døý~Èd2(055…¦ÐìøøøÇ Ç€<µÇã1›Í8;þM§Ó^¯G¦§§q +4‹ÅP_-..Z,|…6ñ/¾Å¿hY扒}}}]]]¯_¿F/dª( e‘¿ÉdBòò[[ñx\¯×ã¨ÕjEQ¬6*Ê·»Fkõc팹¤Þ¯’.{?‹$ÙÌuZ­Ñh¬¶7*~1À ð!—óϳg™°• ò÷¥K—|>ß&émLà;ð½F+×+•üY¾T†œýÌüçâgX…ÿKÎÊMRÅ‚Ù4¶×uQâȦ<ƒÍêü2q«[ÝÙ« e´´¶Ö0ÖƘCj»7ê {¤æÐ$¯kbt¶î¬ÙÕièúq&**ÄL"Ñt¾¥–±—ŒÙ)kB%-=>ÝuõVÆÛ}â¤-ª¶+¿/Âá°F£©¯¯F£Õæ²ÅN§³ÙìšA¨¬W •ˆá,©Tªp¤tREd%”›g2™d2‰ß«ƒ¹\n « +yªø÷ ëõz<µZ­(ŠÕ¦£BEYD"‘Fkõc팹¤Þ¯’.{?‹$ÙÌuZ­Ñh¬¶7*~|ôU<4ð÷ßÍMMÂöíX¥‚ °ò¸pá‚ÏçËøú,â^/÷gŸ‡±qâc!‘àÒ¥IG7a~~åÈùÒwy¸ÙÌÇÆH78w:9  ›ývIŒDx§÷öÂÜ\þ~7å##Ü&‚ߊ8/LL º ÃC06 +™4I¦—Éxÿ ïﳦgòg>ƒÉÌE+ø}|"á Rù¨‡cÜ\NH.Óì¹,÷¸áŸ0[yjiå² ˜çv;GßÇ}4{ˆ¦‡††ÑÏå¤ÜñÄ\ 08ÈeUˆLÁÈ8ÜÔ KÌý踧Fw “ýv«Fáý;øô ÏÇbzá6;GÉPH=DÌÝŒŒŽbÆsrÆG=ÐßÇûú±`f&_4˜qôZ¤¸Éù9e(Œb.·Ì2îtñŽrf O.ñ>|ažÆ­"øÆQŒ¿Ã#Ã<lNËQab@Þ¾…Á~̸Ä<Ë#a>l‡“Ò„œ'(nðS(††¹ß'«V¬ÇËûøÀX-ðå Ù„NQíä8‘º”q?eÇ%Éz&ÍÇÇI·€ŠpúsÞñÙ/`Áj•˜SÁ@ó+eÜÓIžÏ¸‡¿í ²L.ä7}_Áé2>Žá$à'æ”J¬ŸLn%D@ܺºhQ,,柜¢bs:ÑY‰y˜tÜåÌáÔXBé4 "— S}}´¬¤Œ“ÍXŒhcuQ©‡ð4"ß1¼n'Œw”rÀŠõÖyßøˆ‰ÏÆä +¢%#Ú(eãc<”ãF‰óŒ’:²’xB.Ãq¤£“›0ãÉUÇé-FX”3$ HÃn£jÁßX'+k‚‚i0p\k¸-Á,LNr“3,QòšÊƒàtÐ"Å2ÈfIu3îá}Ç°ÏÎæ×8æã€÷ù(àX3!y¥H[VlŠâ†Ñ»:;Q2'mw2qÜ°2¹Í*©Ké¦RЊ¦Œ»òGæ¸s:¹ÅÄ—V÷Žu‹2ØšŽû(\˜eL™c>DI¤Z] Z~÷ŽÂÂ|~å~FæfÚF>ŠRXÎ81'Ç1ii[Æ Ðí¡Bíû„žò¹x~_Å8fÜf#æ´;…9nP¡ÈÌq¥')ãZ»ƒG7å}^>þË~µEy]ám3c|´±Û›™L5"3­M™*â$™1ßQÚ*B'¼ä,( ,»ì²ÔŠ´Ž¡’èTë3j|LìTñƒ)F*>bx”°<Æ(¸* °çô;ÿþ°F‚Ñf¦ÄtÏüÃì\ιç;ç|çÜ{ïØ¥‘1"ª*¥ kѤUØ í€$‡Cóªc6b®‚-ήïêz Ëx3çhR1g´-º ùWKÆΣ›¢×XóÒ¤ ˆôxµÌ¥:;›?/ÃMŠ%cù˜N +ôoßršK·^,g!Œjîœàúâ“ ´j§€uèÀ5ÂWµVt~åªä`€G³TU3ÇI®Q²T ŽØ£\ZâgnGï\ãÏnpGgOýŸJôzE)P” +õrxòën†§ÔËa‰NwPQ&+ràó~øHáÓúuË-7íöÉóF+ÊE¹,UÓ=É•ßIÜêËe‚¢xNõ¿¦¹¥Ÿ¤®®ÎËËËÇǧ±±±¿±Õ——¸>ZÈ1ÑÅ0·˜ÉšÅYY”™IK—rH[³éóÏE­¹…óÖðôMç T¾óç)9™"1b´X€œŒFŠ§Ð0Ú±ï·jÈïÝãiÖlùWÅ5–vÞµ“""a­Y\S–0Iç‚ |û¶$^©´ÿÍ›Ë!¡ü/5ð®.>tH¢Ž‹§ c7r‹ ž·hõjnŠ³­¬ …¼0ˆ££ùø1íuº®):† x[|¦L^²„àÅšÍUÕ¢Ö|›W®â7Þ ”¥TYÉÝsi -_.yK_²q¦… é’ØðpÚ±ƒîßS5‰Z[yÓFžæOÐ,/— Û[iû6 çʼn ~"dÔ ; ŠT<„ + +¨åŽ˜×ÔPö +þ£TmI2Ÿ9#®»:øÀ~ìØ82fHÎQ/|¦ NJ¢·B)/oÝ„M´v SP0ÅDSávF~ê#Š‹sDG‘Á€aƒÑÄÉÉàgÿ™kªEPñ38%•o|ê +üÂ'”’Æ‘‘`5YÌÈ<FB¼tÓ¶­Rh§´µÒ–Í4çMNHàK—Ä°½ßŸ¢"{*Î*ÙØddôNhççóí[b[U)… $pU¯ÕÅ»ƒèðŽç¸8”ŒÐ\V«€—O¢°0Ê}!‹y*¾š‚‚(0 áǵ›3˜”Ä1±œž®VÜ*Ï4ñ’¥èo¨õEÅÑ)Sý WVkQKÅË„* !Ì&FŸ2I +à-[øŽ]ãj[oÜÄÓ§ 7ÊËHízÚµ“ERa2³Ù*QKÎQñ ô8ßiGµµ´b£^ABÎÓ§ÕÀ|èCŠÕÕ&µˆ­&ƒ9,Œór £O*Þ$9™9S¦ß¿k{^;\tFŠ%€1šÐhÈ<ò¶"=[]#šv;ÿeÏšA©)týªkº"ð´4BàZ›Éh®"çß‚ŠkŽ@õ-›yÕÕéÔAû÷qL pfÖÆ‹ Gt [þ;ZW~ÆV‹”láÖ'óÙ3*pi%iêp#'Ïaži¢ä$˜SN×7ˆk›MFÇôi‡úz­d`̹s”š&¤d™r"– %°²{kC¬¥…×­ãiÓ9)™=Ž‘»y3EE aL&$M¸ŠÐãÀ‰Š÷Œejk£›hæL R*-• ÛÛ0¨%c 6òlqR]íq'†›Ú¤d«£•9Ò¡AA ºCXììtüãCÑŒO¾Î2Ëi"y3t`žû65Ô‹ï›7iÅJš=[˜\]Å=Ÿ=K˜c(D†AJ†Ì§$ð¨(þ`=èÐJÖÒLùù0g ·O¯ lˆ6|·ÏípzJ Ðë=¥@Q*ÔËáɯ»žR/‡%:ÝAE™¬È;ÌcøaõxrËÿFnÚí“çŒV”ŠrYª¦{’+=¾“:¹Õ—+ÊEñœê©¶¶¿Cùÿ•ºº:///ŸÆÆÆþÆâ·¸å›Jss³ŸŸDooï‹Ý¯E·¸å[(6›m¢¯/¸:^Qö*ÊUõî÷$·ÜýÊTÍבqÞÞÅÅÅý[¾;"/˜'è‡?"Eq~¬~Î4j.’‡^Ã<\:ÑQÔÕEŽN<šçeŠ0/Nûñ%Ñé´• TWW‹ëÎ2dôìù0í‡nmØ Þkjè嗵ż\êFNë×cÅÑ™Þç¥1\Vª©ÕÙxö,mÝhdQs ôöè +ßÓS üŸ‡ù'ž.µð0êxÀˆxÄãÃ;  +Î’úù(YÿÞÚü7 ^ æ,î²Å«¯Pu¥cEýê—Ú¿Ö䉭­Ž^yµ·S×ç5Nœ:+ÛÔÄþþš£´4ÙðžÞœC½ÓÕóýì§|ü˜˜=Ê#=]:aáÜÞ.±'ÄeÞ´ïCyïb^ZB/¾(:Ï=GÛ¶u³8ÓôÕ~¡é;‰oÜÐ4ñc’ŸÆ5pÌPzíµÇ>z ]¼(š»vñÀ.-S·ÛyîœG ¦’G3ñc.’ŠóÉá\xX¸zêcv>x«E”=´srÒ£©~ø÷óÏóÖ­‚¼â2§V\ÇëßÑZÏáàœœ¾¼Ó„‰TYåÔ¤ë×Èç7ÚºÕ*¶7›xªÿ— >Jõ—¨¬L\ïÙǸþ›¨ÿûÕåuÅ¿o}Äg›úˆhŒ15¥²®‰0 m Ѥ&5±SìL6ÿÔTó3›11Æv&™IÕ-ZEdÁ…EewylLV*ãÄËcE–—¨è²€{NÏù¾»,`¬NÒ)3Íž¹,Ëáœ{Îï¼î½Ðß½½¸aÃý¥îßpÖÔÝlúkêñ9Ìœ9 m¹"]n|÷Ýû}aŒ„†F!Y^‹tü¯1cÁhTæU¾°ü?´ ,]å¡^W‹á/ þ®]ÌliÁW†ñ ?]€gN³![.÷K¾÷Ãñt©¥Ž#´ÿ|üqÈÎfõ’œ;—™?ú1$§ˆíé¡ÊñÞoTýþÚkx½UÔFi)‹Œ<ÈLçeÔ-FíB¬º zö£u11Ó%é$U*—CûÃn†…Êåð‚,[%)B9m§MŸq‚Žéý¯¨ÃíŽxk]°$Y$©‚³&<•ž–]æ[}™$½(IA«V—76Ž6”.¹\.­VÚÖÖ6Ú¾(@ú¾ÔÙÙN¢N§s8£íN€ô@jnn^FµºT’2$É©ÜýåAw¿KŠd”Ä´H§;wîÜh£ Ðÿñ{Ê” ³g+ é¥#ÉüE} †„ÀéÓ,sÊ ø_I1180à…÷߆„K5š(YÒPò…>”_CH–gýúõõõõlšÞ°Ÿ~ãƉmeYl. ë0e*Æa/›\ø«• +g2îߪÛÄOH€I“•§œ<¨.6Y¶Ë`{;nøƒ²³?ù”¼F÷|ûíÁ7#×eæ3ÏÐ ”uí§ øç>I6o†{÷` ¶lYã{<z.¾ãÌ™ÃVVáâÅ,3e +¤}A÷ÂîÏaâÄFÅzõU¨¯¯Ë«W!2’™&ÀþÌioÅ×ß1ÙgƒÆ†^Å‹UàxóD¯¾}ü13»»@ Ô~à"æ?{ì,YTÚ¿W›7ãÝ»Øßlõ§iø¼‚‚ÐlfõŠ +X¾œÅ~2 ÓÒýõ¶s'Œ7ÄðqåJ ¼ªXCüz 3'M‚û™ÓÚ +k×âEñýùç ¼œ•³¬0+Hüwì8ܾƒóèñàŸþè›ê¹<ÄóùOcI1[?{ú#ïr3ðmÛ@3f¸Qÿ&8c¦§±zU• +&OÄ$D¾w–o­·È_`]­Þä‚W¢Xfüxܳ‡9ׯߗñá³l9\8Ï’998÷)­~øïíÁ‡—|Îû€+À‹‹1DëßvãŸñŽ`ûv_ „ŠwhÜ‚‚ í«—;`Å +6=m¨¡ ¢)±kLœ$\ÞéðÒ +t:…dk ®YÃù}ì1ˆeN[;þvú=®Kë¹çñbÿê<ù¤`Ž‡}„Þ~.õMñ©K÷«ãܹ˜—džèH fæ3Ñd…Úÿ¾Çû§“Ïß39…¯©°0%ã“1.NL'‡Ä$hhð¸urm@’¦LRÒ5[àØ1Hн=0½PU‰ôö<ø/¨©Q<÷‚³ +©l ´Zyeñ'¤§ƒ^Û·YÝãÁ¢BŒ? ‡ãÁ˜‚Ž2Re~]-¦¥¡! 2Í š¦O‹Éó„ Ýè‘Kb}}P\„;ÿ©Ç ½]øC?--h¶B¢žå³²Qõœd’’àôiìéQ%Ñ;€ß|ƒ{ö`b"¸”Px½@>$ÀhTŒZ9þôI¦ÓÓ9’ùè¾>;P}ccñÐ!¸Z#’^ídC))ì­/æ !=ƒ3žk۷ا ‹ŠáÈŒ‹C2VVrµ~S‰Á_Ü”¦ ržwkma+w{áÔ)ؽSSQ½r«ê×Û)ÎpÔÀÀEº­˜z õp¦|Àa`Ï3pÐ'@Ã5P9e—ØîÏ-V8ž† GðäIì⌃û6æ@ü.W*ãê+ T::dˆ±˜39AbÊ8©'à—6¸ÝÉÖ{{ „%=9…£=ÐÏ.‘¦ 403Ó§›Íq£hPÜhCfÿ–”àîÝ@ÀÕP¨«µ²³½G $OŠhɵV)ãçîîÁ–$˜¸w/ó® Ž£¨éhCjÌÁ€ÓJã&ż“xGÉøÛx2Ÿ<÷Žƒ#^©5pµ–CD;X,àCÍß©Ô)e6ܼ¥ôx—`‚•÷–;€°zSdd*q3)v³€JŽüç&ÕƒÙŠÍ.뻇”AªU£[ÕŒ+æ©ìslx4Y¹íµ˜1ÕÈ]VXWîõâ…‹ ”‹úz5ãPQÁuN7õÜŠié <¿Ý]J“v{ ì‡óÎÎËj̱æ +¤¥SÑ¢6©’tòœ˜To¶/i€°íÞ^ê/4p ½ |)CWùÑ£ÊH̆Á°›Èº Oî€Ò³\«Ædž‡ +nÞ¡£sriŽO'e¼p­¦¢>OBO7øRŽ—.aì?¹Ç¯‰Œót¢¦ rµZTÏÙº™3$–—'2N3ª @iÒCTK<–i>¿¶2L˜b๚¥xÎSÂB#ÂKêY9x£ƒMw{€Æ5) ߸á--ÿf¿j~Û8®øÛ?!¤ú t ÖM…”ŠD·èãÔ4âÿ@lö`û⣓Õ¢EÚƒÓ¢*J9H*bV×-áªõK2 ÐË”¨l œªQ´o:»ÜÝYrC)ÝÆšŸ×6wçÍ{¿÷13o‹t“¡݉nk¤Y ¿þ yü˜üûÔcN7·¿ýö ]ÎtJï õ…Ö>øÌv£í”Š³H+Ôq§¤7ªÎQÂ2N…éîôË_9„ÝOtw"ÔÉÊŠŸ²'}¿û-uœüé ºHÁ¯¾¢Û ¡‹ô?wêmï{ûËqƒîN4eÎôÞ~ÞÛ駎þ¹“Š¯¿vjï“Éïÿ@¾l!;Ûÿt*„ºãm+ô‡³îè~õø/N…÷ôÍ7„¶a÷?¦ËOþåäúèä¦ñwzçË(–Ëi€%€=·9¬ê 7ÜæpÓ0V +àœ¸©ôÈêÚúpÖ5†ÀI·[X(ŽTv¬qZzúT §«ß˜›ßq7 D`YV&“Éf³íÞñ­¡¡ñ}F§ÓÉçóô@4M³^¯'MGC#­Vk:—£µ:° pàö~qºÚûm¹’3à`Ü4k´#Õи àé)¾ÿLà£G¤wå r}ÒhÌ|ða0¥R©Ñh¸ +TZv™ç|\ô›$‹1Ü—†¹¿¾$¾+ãA‚cˆvx }‰¾Ø(JÈè?Ó…,l2ùÁ1ÇÐalpÎÐ÷20Ï2¥E–±x•¶V輯óbfÕ«@‘‹pUðWYI,oh|z! +'èŽÌ¡vŒÄ ž e¯‚Bi•y¿Q*âhªêªè'*ÙUÕ©<`+‹†:µ*jëSH¢ÊÉBa;6(©Šú€š01*•¨rÜ]|vÔò”X…ô†ŠJ¹ÿ(Ö£ÿ&í–ý«Z!ƒŠm'ÀM9¬¤­”g¹R¨:<Äw'ÉÄñø8šx?Ëå4ÀÀžÛVu†ns¸i+pŽÝTzdum}8ëCà¤Û-,Ç*»NÖŒ8-=}ª†ÓÕoLŒÎÍï4›I»ruaYV&“Éf³ív;i.E§ÓÉçóô@4M³^¯'MGC#­Vk:—£µ:° pàö~qºÚûm¹’3à`Ü4kµZÒÞh¼!ÀÓÿ`±HÞJ៫¤ï]Œ(.ªì +ëàïÇGïýø}0 „R©Ôh4HôM-lQ¾»ùï ]*2ÁXŸ;$vç s10>`:m¿£À;vÀe½ìzÚojÏú‚‘SEsê Å ìÿ÷sˆÂÁÜFõx¬˜»*ÂßyàûhA9Š_ú——ƒgeç™éAüiµ„ Cþ(8+^e_uJ1*õD•%{+M^aØ †MB¶‚E…ñv%a…ʬ¤H’˼}ëÒ2qŠ0^„Ý}BèéUp“öÏóвDžÊ¨¢ðd!–Œ¥#èAÂrh*œ›Ž²ÃEœªBïÏë•J8´Ñê$1ì¿Äx£g+÷l_Æri<#““øöÛäøÙ %jËå4ÀÀžÛVu†ns¸i+pŽÝTzdum}8ëCà¤Û-,Ç*»NÖŒ8-=}ª†ÓÕoLŒÎÍï4›I»ruaYV&“Éf³ív;i.E§ÓÉçóô@4M³^¯'MGC#­Vk:—£µ:° pàö~qºÚûm¹’3à`Ü4kµZÒÞh¼)8?'?ý¤Søð ñÖé_*W-ïlè_±z¨ïlÏÌôŠ Àh”J¥F£!šR_…Qï72Û/ÆB¾"»w¢tõ¸GÛe#=6z +BÌú_${ÓP2Ây#ᓜ쀺š|ô[5Ñw U\€ðW¿‹¡ô$‘Øž­€‹²Î0/ÞBx¥@±TÉ.K$ ,^T1w‡l_»ŸtD/4Á€ððó¬ðJñ$ѯr”ýòÄ¥*õùW)„Ñõ&FV:~³ÌFéAááî W(ežö[ ĉ{EÜg«âˆ!Ó|ý$0Š,\¶OУǧ"ˆ™@ÂÃåUE¸ŒY™ÒŠ±é^Ô6/ß3LUú‡‘yà¯Pi_ò]e«ÕSl÷„%Ò—ðHˆ9bÛ•O"œÎ =ÓÌ UÍsßXìý!Ê5ªâ-Ö¸ Š Ï)†"¯/qu »_}ÁuÂ*Êf{…³Ù"›'9å;IJXcnèz­$;I®]Ãããó±P,—ÓK{nsXÔn¸Íá¦a¬À9pSé‘Õµõá¬k “n·°P¨ì:Y3â´ôô©NW¿ 00:7¿Ól&íÊÕ…eY™L&›Í¶Ûí¤¹hhh\N'ŸÏÓÑ4Íz½ž4 H´Z­é\ŽÖêÀ2ÀÛûÅé"hï·åJ΀ƒqÓ¬ÕjI{£ñ¦À>'.b:Õjø2çÝÛä;¦|«%»»»³3ï¹EêÞR¢Q*•áÓ÷È ~]ÅÙõQÅ™°ë&Jdý_Üvðîééö\ˆøïˆìþÉœŽÛî[ä'ÿRÌfš=f¾ ~lÿÕVÌe~ 1‡Op$ì1ûa#"À¸°¸©æ,z.0ã<ŠÌ#5ópœØ8ªY3i12>S©ÐÀdŒxž¹÷Ò4ô’tÅÿÎIDšä¾P‘ž6,L–}à>NJ‡™þr‘‹×Cˆ¸ÈÇ›j‡j]p¶¡Z”ªR,iš’¹”`¾^|râÚ—ªŠÇ¦ÇÒæ ôî6+- ˆÈ¤E]"E)Å¢?ÂÃÂ+h 27Ì ê=7³Äå'F1¤‡pb(,V…åÄy‡‚@-\,ŒòÙDQ ÈöÖpé!sˆW›œAEEÈ.KYñ)(wsô³å9A^ +y´^à²äÚ5òì8¨%Šår` `Ïm«ƒ:à ·9Ü4Œ€‚{ä¦Ò#«këÃY×'Ýna¡8PØu²fÄiééS5œ®~` +`tn~§ÙLÚ•« ˲2™L6›m·ÛIsÑ ¯_¿>::zòä ½çÒgggôãéé)½2üÃÅááa·Û%îŽüòå˧OŸÖëuúïÉÉÉùùyÒô5’G§ÓÉçóô@4M“ÖFÒt44"Ñjµ¦s9Z«Ën溜 ½ß–+9ÆM“n˜I{£ñ¦À>ÇÅH*EªÕA¢¡‹–ŒýýýÙÙYˆR©DOùË`Iæ»Ä%íÏïÌèчÉÿÉ0.È-~¦¢Œ§!JÛ·5}¹Ê‡àSþri\ºÂÿ †ãü=òôâT±ïë0J.ÊÉz““Äü>;N[±\N,ì¹ÍauPg¸á6‡›†±Pƒ¬©ôÈêÚúýЈ“n·°P¨ì:Y3â´ôô©NW¿ 00:7¿Ól&íÊÕ…eY™L&›Í¶Ûí¤¹\uœ=zôèÎ;‹‹‹7oÞüôÓO_½zE¿×ëõû÷ï_¿~ýÆ÷îÝ£2¶mw:J¥rûöí[·nݽ{÷ÁƒÏŸ?OÚäA #ŸÏÓÑ4MZ9IÓÑЈD«ÕšÎåh­N,¸½_œ.‚ö~[®ä 87ÍZ­–´7o +l›|´ˆ©·ðáà jÚßߟ…(•JFãRèkhhhhh$Œ/-òî$1¯á³#ú†ß^A±\N,ì¹ÍauPg¸á6‡›†±Pƒ¬©ôÈêÚú¥{¦…“n·°P¨ì:Y3â´ôô©NW¿ 00:7¿Ól&íÊÕ…eY™L&›Íþ—ýú mbËãþŸ.\n“…*^Š §#½c›t‚–6iQëŸF;×kûp¥*ˆc¡/ú ø‡ú§>\¡E}«Zíî6þ)m ÅrÁc:i¥Ûtgܳ-Ûö¶3{fºÊ݇ڱ {.ÍùpHÊôpøý8‡œï¨ªŠ»–\7::Z__~ÊœNçáÇoÞ¼‰^+úûû:´qãFô~QVV¶~ýúššš`0xçÎÒÒÒ5kÖoÞ¼ù»ï¾;uêÔøø8î&Ì4Mã8"†a$IÂ]A,HQ·ÇƒÎª   ie?;)e¿¨5Ó¦"†Ew7ÄJñÛoúÏ?ß~k„Bú’^g>C78º¸ÁžçS©TÖZ ‚ ŒÞ¿7~øÁ 7éCCK[ €V€¸Ë%Ã>+F(*à +]¬ygOo(»m_0–Éxk…]ƒæ®Qv"=aÊLõ%ù•U±tw+¹K–eš¦Y–UUw-¹îÝ»wX½zu èîîŽÇã±XìÚµk.—kÿþý>loo?xðàŽ;Îœ9#¶mÛ|>ßÕ«WV­ZUVV6<<Œ» 3MÓ8ŽC"Ã0’$á.‡ ¤(ŠÛãAgÕÐ ´²Ÿ²_ÔšéSÈ¢ˆ»b¥˜™ÖúÉø棻G_ÞJ‰DÂï÷ƒ <ϧR©ìÔOAxŽê[\úÆèåvi ÁÐ +·Âax±dØg…ÃE¼@¡‹5Ïáìé e·-â Æ2oM   `ÐÜ5ÊN¤G#L™©~  ¿²*–Nãn%wɲLÓ4˲ªªâ®%×%“ÉÚÚÚµkמ?>“ÉLLL01Œ(Š¸»!Vý_Æ¡ZýON½·g™K% ¿ß6ð<ŸJ¥²R?AAà¡úþLj^ê1\.}pðw¿B@­q+†K†}V8ŒPTÀ ºXóΞÞP6»#¾h,“ñÖ +ºÍ]£ìDz4”™êJò+«bé4îVr—,Ë4M³,«ª*îZrÝÐÐP @?en·»­­­£££©©©¼¼üäÉ“’$ÍωÇã‚ ”””lÙ²eÛ¶m¥¥¥ÕÕÕhþ¦M›®_¿>55…·;MÓ8ŽC§ˆa˜Ïdž þ€Eq{<謺:’Vö³“"Pö‹Z3}`*bQqwC¬SSú_þªÿò‹>2²Ì•‰„ßïxžO¥RÙ¨ž ‚ pÑÿûÉ»w±±ÿyn[@­q+†K†}V8ŒPTÀ ºXóΞÞP6›#¾h,“ñÖ +ºÍ]£ìDz4”™êJò+«bé4îVr—,Ë4M³,«ª*îZrÝÛ·o÷îÝ‹~ÊvîÜyÿþýîîîsçΕ——9r¤¿¿~΋/ЄíÛ·»\.ŽãöìÙS\\¼uëÖÛ·oÏÎÎâmÀNÓ4t*Ð)bF’$ÜåÄ‚Eq{<謺:’Vö³“"Pö‹Z3}`*bQqwC¬úÜœ¡|Ðÿ>dLN,s©D"á÷ûÁžçS©TVê'‚ ÌfçôŒ‘}zzi ÁÐ +·Âax±dØg…ÃE¼@¡‹5Ïáìé e·-â Æ2oM   `ÐÜ5ÊN¤G#L™©~  ¿²*–Nãn%wɲLÓ4˲ªªâ®%×E£ÑêêêuëÖµ´´LNNÎÎξ~ýº¾¾¾   ©©i||½8‚PQQÑØØxôèÑâââ'N=ÿêë4 €V€¸Ë%Ã>+F(*à +]¬ygOo([­‹Ëd¼5B€.€As×(;‘0e¦ú€€üʪX:»•Ü%Ë2MÓ,˪ªŠ»–\FkkkÑ^tttÌ?Ñ4­¹¹¹  `×®]?nooß½{÷¾}ûîÞ½{éÒ¥òòò³gϾÿþéÓ§h}>z ÁÛ:3Ç¡ ‘aI’p—C RÅíñ ³êèHZÙÏNŠ@Ù/jÍô©ˆaDQÄÝ ±RÌÎñ¸ñë¯F&³Ì•Ðì÷ûÁžçS©TVÊ'‚ ,t9ó¯O‘×ztÀ˜žžÿÏ×.@+@Ü +‡áÅ’aŸ#ð….Ö<‡³§7”剅e2Þš@!@À ¹k”HF˜2Sý@ @~eU,ÆÝJî’e™¦i–eUUÅ]K®C{ÑÖÖváÂ…W¯^}~8>>~ëÖ­ººº-ǃ“““’$µ´´01Œ(Š¸»!V}lÜØ¿ßøþ{#ô·e.•H$ü~?ØÀó|*•ÊJýAñÿ§º>ÿ$“z)§s¥Æ»wK[- €V€¸Ë%Ã>+F(*à +]¬ygOo({ý‹Ëd¼5B€.€As×(;‘0e¦ú€€üʪX:»•Ü%Ë2MÓ,˪ªŠ»–\711‰Dž?>::úûçÃÃÃ÷îÝknn¾råJGGÚ2ôPÓ´þþþ7oÞÌÌÌÌÍÍÅb±gÏž¡Ï©©)Låè`p‡.D†a$IÂ]A,HQ·ÇƒÎª   ie?;)e¿¨5Ó¦"†Ew7Ä +¡ÿSÕ9¯¾j•Ñùçe.•H$üþÿ°_>1mcyÿúº{#8Œ´+Í.ciÄÁDÉÞ0œÉÁ£î}÷u4‡­ÔC«j.UÛc…TUíNƒz˜@ÿd‡nµÄ’´êÖ€×V]5¤U)…<ÏÏ“Bã¦iÍŸ÷Áûù÷~ïû³~ߧ ªªêºÞý‡Ãá|}ýìüvgfªßþÕýóŸÜéߘ[kú4Rét  +¾9Ì5s†¿úæð¿‚0$!ÐÂÚëÌŽO´¹HÎÁ”+•äpªÈsÞ[ÂXz:r‚çêg€> kphÖ0¢.åäbš¦(Š²,Û¶µÎ.Œ5~D™OÓ^Õjõ‹‰âÇI$´ J’”Ï磖ÃáˆeYýñ8ÍÕ^`(ùÞ/Œ‹ ï7íGÀ£G’4M‹ºÎqáÍkvùŠû²é™ö2AŠÅ¢¢(ªªº®·G?‡Ãáp8‘P_5_ÚìÜ9÷_gØâÿ[Ë”J§cÀPðÍa®™3œôÍá0$!ÐÂÚëÌŽO´«2NSÊ•Jr8Õ d€9ï­ a,=9Ásõ3@Ð584kQ—rr1MSEY–mÛŽZ § 0ö™[ÎÑÆqœD"A ¢$Iù|>j9ÎX–ÕÓ\íF’ïý¸ò~Ó~äj9ÎX–ÕÓ\íF’ïý¸ò~Ó~äkH²›h[u@S°Íenc¶3ÒÎxµ!k¶C«»‰÷J߯.¿g ú`ªk7ª ¡õÇ˸ÇæöÌÔ¥%öÃî?ºå¥Æ[áH¥Ó1`(øæ0×ÌNúæp +’haíˆufÇ'ÚT§9åJ%9œê2Àœ÷Ö„0–žŽœà¹ú èš5Œ¨K9¹˜¦)Š¢,˶mG­å°À|Âäò0CR×ÖÖ^¿~Ý‚æ7oÞ”ËåÍÍM÷H•|p'‘HЂ(IR>ŸZ‡s –eõÇã4W{Q ä{¿0.‚¼ß´9IÒ4-êj8Ƕ¾îþý”ûÍ7ìß¿²–¶3uŠÅ¢¢(ªªº®·­çSaõ_ÝtYàØs³¡/ ÆAdµ¿±v韒²½cúî×ÜÐÈ‚òXC|£Z¶+x{ºxÿžm¼gÕ*c»zYclÙ©x§‘mßß÷‹lÜ;þvƪõ0ìÁv*ü¬ï‡óõØ© ‹,ù7Öwÿ÷¬µT©t:Œßæš9ÃIßNc@-¬±ÎìøD›*ã4§\©$‡SÝ@˜óÞšÆÒÓ‘¥–€µqIÃÈÈH&“©•¶¼¼L"©1˜*u§$µ¡=ztáÂMÓZy¬œ/ Í™D"A ¢$Iù|>j9ÎX–ÕÓ\íF’ïý¸ò~Ó~ä:çhPû 9ÿÝwìÛ¿°'%÷ƒÿ÷0¤Òé0|s˜kæ '}s8ŒI´°vÄ:³ãm¯såJ%9œê2Àœ÷Ö„0–žŽœà¹ú èš5Œ¨K9¹˜¦)Š¢,˶mG­åpñöíÛÇ_¿~ýܹsW¯^5 ãÝ»wwïÞ=þü7êkkkëþýû§OŸ¾|ù2ís©emmíæÍ›gÎœ___§j¿rå +¥ªøFkyyùÎ;·nÝZ Ïæ~PÀµk×Ξ=ûðáCæ»îöíÛ/^¤Ñ/]º”ÍfIÞææ&5ÒÐ4ÜË—/k}Iäƒh¸Ÿþyqq‘† ~g¿ÜcšÊò8~êfͬˆ Í°×D"- +hy4€ «€‘£ÑDÈÄ!Ñ?|$jŒ &:îü.>FQN@PÞ +Z!–…ŠX[^*ÈËR~¿ýÝ[Æ‘UFfêêýäÒÜóãœßãœsÏý^*,TΫW¯^GQ*•;wî<}ú´ÅeK}rss)úÛ)Ñ@òsèÐ!rN)QááᔤÉdšÎIøhŒF£¯¯/½%‰B¡°v:B£LF{Õ±LÆyí7AÚ¯Žï¹–qˆ%¹\níj>À<Û·á¼ypëÖGºR«ÕAAAlDGG·´´LKþSÆþøŸ¡a,-ƒòœexòò0!«î×|…ee˜‘‰ÍÍoŒ³xßçx¬ñÎ{œÈøV°8€ª*¸t *ïP>œIQ?üÕUU÷v¬_íáé3pæ 47ýOzo6ßÏ;J{]ºÁ€Ü@o¯eš'JémŸðkK@àÿ +½¥Rpƒ¦éõé2%"öîµg,‰1/K?¤ +xqXËX.c~LD/V;{‡›…EÓ_šÀúúüÂ#–2–ÃX·j¢ÉHzºJEœª¯gÌ›1Çà¥VkíR¾\t:‹‹‹T*íèè°v.Ÿ•••4-®®®kÖ¬‰W©T555‘?þü³gÏ Q·®®®M›6qç]NNYêêêÜÜÜÈâééICÈrëÖ­9sæ,[¶ŒœP³ºº:00œ_½zuxxøíÐiii¶¶¶äa×®]½½½dÉÊÊ‹Å×ÃÃÃÙÙ™²¢±<ðòò¢nŽŽŽW®\±Œ¥ˆ6l˜1cÆ’%Kh8e¾~ýzŠCn;;;-Ý(ùS§N‘·ÄÄD³Ù¬Ñh¢¢¢æÎ\Fªo<@᜜œ(Vhh¨^¯¯¯¯X·n\.ÿ½@à7a4}}}i¥$‰B¡°v:B'‰LF{Õ±LÆyí7AÚ¯Žï¹–qˆ%á ˜6Ìfܹ æÛañí)ÉŒG­V[4ÉŽŽnii™žü~€Ü†7½‚„øóLܶ è¾A…2` bc¡¿ÛÚ`Ó&É0; {ûày7j4¨{†&…¾^ljBµ +žYpxzzH—€NOZñe‘”­æ14ª¡½{âÈ88„Æ`0àÓ§ðT‹ƒ\·‘ÐjA©Ä'-8006¶õ ÄÅÁ×_ãwßaï Îx.llàÛoú¼xª|ôŒF¾ÿ(t°½  }J78b{®@݈ߟÅqûvý£ØÓBëÎóà —ygòj‡‘î=h~hmá*äóèGR×z=´¶âóçäøTWÏø׿Ñ¢TŠEE\g.ŠŸi¡¹¨31:Šíi8ÿQƒÜü(ØÔ }}y ü‘X¶+Ðãàå…®ÐhøgaÊ~"öîµg,‰1/K?¤ +xqXËX.c~LD/V;{‡›…EÓ]ŸÀ„úúüÂ#–2–ÃX·j¢ÉHzºJEœª¯gÌ›1Çà¥VkíR¾\t:‹‹‹T*íèè°v.Ÿ—/_ž5k–ObbbaaaOOOyy¹···EÆÇÅÅHÀ i"ÍÆÉ2{ö쬬,²”••yzz’eÁ‚7nÜ KAAÁÌ™3/^¬$yƒXQQááááììL!†y ð&¤#Ž?n‰²yófËÇBjj* _¹råáÇ###.\xäÈ‘üü|‰DBÝlmmOž<922B=³³³W¯^íàààäääï–vïÞ½îînK­V»{÷n___Êš*•jË–-‹- + )"é2þ§JɃ Å + ¤”È+“ÉÒÓÓ-q>ŒF#-+­í …Baít&D¯×ûÈd´WÝËd¬ñíW.be¢ E Ù+'!Š[ÃI?&–Här¹µ«ø\0›qÇNœoÅ·§þ)3µZÄ&Att´å]/ `-€¿¸Ÿ´4˜ñ' ħ­XR†bd ‚ÖB{;>~ àå$n›š±¤”ëœsuzN7ªT@’òÜ0#Z[qtk°¸ŠK0+ .ýˆ5Ð<Š¤{ïUã©”„?ÿ ÏžAß h|嘟—‚Ÿ.cƒŠ†ck+\IÇ °¸ÚÚ—¦ð¤·oÇYÈHèä¾\àT"0†ß|ímX[ƒ))xá"TVàðô÷“‡Œ ¸Y€é霃óÒ݃•˜rÿµþ¹†Ba!¶é±¢ÎÃô«X]EåàÝ*(¸É¥ACh6nÝÆê»\Quu™t©ÕÐÝÊz¼‘™$ÁQ©^sói2AÂI°›"ü} ¤¤Ð,AÿK,/çʼxjjЄÑhôõõ¥"mTËâ +|šèõz™Œöªc™Œ5òÚTD¹ˆ»Þ#!Hû‘„(fl 'ý˜X"‘ËåÖ®Fà3L&ˆÁ9¶XX8õ™7P«ÕAAAlЋµ¥¥eÚjø/ûåÕuÆñ³IÕI}¤#Z±•÷ÃUÙEÞO—×.,o‘ñÁK  SQ§T@ÁW*™©†QS±UŠ†&âàˆ!j‘P ãàØ:£¾Ï•†™¦!>â'Ýßœeïœ{î÷ý¿sÎrþ÷…áTØìü3ò÷n¸¹Ð’%´w/vŽx¸ÓŒé´p>®¤³ÕðñÊH|òGìØA«V"2Þ>´õ=jjBYR7’JOOäæRÝ9ÞggÈå % y{sïHï¿O¡!¶œ"#I¡@v**°%2ÜÝIá[[¬[OÇŽQr¬¬°:–Ž%î…‡ÓŠÄ{Qû9ŠôÂSöP +UŒ½$hÐð:Cßüééµ5™™âƱþ"X­Öfì cOÍaýøžp´5>5‡-ŒU1æÄw¨¥­Ss¶öÕÖ§á{øúÁ§ `ÆN2vMX5Ñùg­Úh« ®¾•±¥ŒÍöònç›GÃÑÛÛkaa!‘Húûû'ZËëŸââb›”””ÖÖÖ“'OªTªØØ؈ˆ¹\^PPÍýü‘#G²²²ÌÌÌ***Nœ8!•Jׯ__TTdmm͇uttÔÕÕéêêZZZÞ¾}›Gniiñôô´··¯©©ùVÒG:88ÄÇÇçä䘛›ûúúÞ¼y³ººZ,+•Jþ ››[SSÓÕ«Wy +ÜÜ\WW×ÔÔÔÇsÁk×®=tèPBBB^^Þ™3g¶lÙbggçççWRR—›gyòäÉ-Z”‘‘qçÎÑÔ< ™œœ\__?222Ú9<<ÌS¯\¹rݺuééé<—ÏÅ‹ù­Ó§O;::&&&þh‹¢á™ ñuá"ß0mmm-Gƒ†qéëë³³·ç{u1cÇ™¨“‰¸÷ã.¢Aô¶¡‰Æ®›D‚¨cÌS°~lXÜÜÜ<ÑÕhø‰@"(¦OEuõ uýúu™LÆžn$ººº^‰~ ^"½¢¬wÈÝÊ@„„ 9‰¢¢adDÊÚ¾Ñ1ˆ[5X`Á’û‘¾>¤Räo£Û‘¹ Ë—cÎ\²¶ÆF5侤7‘‘(ûáaôÆd`~ËÖâϧ¡Tò  ‚›“2Š‹ ${{¤ªÉÍÓ¦ÂsöíC{+  ò¾êAJ*ÞšJ3¦ÓòpâòôçÓ¤IÈΕ+(*†*ŠÌL1e2’©°tui¦6¦!= ÎÎ$÷GZyy“·7ýáJJáçÇ;G¤š§‡¤$\ºD¥{hö,\ÄCÁÄ+èèÇ(˜ù ð˜äêJV–<&,ÌIw99á÷‡h``té_©d~õk¸¹QÆ&a¤DBÇ£ü#XYÒ,dgó\رóæAO\’‘LÍ(3;w"cÓÈÊš3‡&O!µšú¯Nøf4hx]á»Tøú[-²‚¹]¿örq‚ÕjmÆ2ÖÁ]cõÿc ¿Õû”±ƪsb‚;ÔÒÖ©9[û*kÓð½|ýàSP° c'»&¬šèü³Vm´Õ‹ØU&û¥ŒÍöònïé™èRþéííµ°°H$ýýý­åuaÌuww—••I¥Ò… –””ìß¿?444>>>'''!!aÆ NNNîîîçÎ+--511ÉÏÏçà ¶mÛfcc³xñâcÇŽ:uJOOO,ߺu‹‡½|ù²§§§]UUý÷!÷îݨ¨(###?%%EGGÇÊʪ¡¡¡²²’kà)¼¼¼–,Y¢P(øG{{;¿«T*¹H___®$))‰+ä2ÊËËãââvïÞ}ïÞ½¦¦¦.ÀßßÿÂ… <ãððð¾}ûø³›7oMÝÙÙ™™™É««««Ósÿþ}^‘J¥â#ÓÒÒ¸¾UªŸ¾.ÕÔÔ8;;s?ÒÂhx†††ùÈ÷[[[ÛDËÑ a\úúúììíù^]ÌØ &ú’‰þÊØx.¢‰Æ®›D‚¨cÌS°~lXÜÜÜ<ÑÕhø‰@þAÑÑdl„ ?0?¦e2{ÂÃûºº^‰~ ^ÚS3:êHÿù{ö@&#±˜$6غ»~Gæf02¤„x$&Pb"VDbÖ,š¯Oþ +ØØÀÕ ›6!#R6PxéÎ&SSÄÆÂÛ ÈÍCû5ÊË£I?ÃÏß"ýù$[F Ôu«ã`hOÈå<e¾C—>⸹Sn.Ö¬!CXZ"EúóxòD×ݤdš6ƒLi×.TVÂÃÞœD’Ñ؈ü|„…‘‰1½ùT*ÊÉ&mm˜›£¢‚ÊËá@ŽŽˆXN.®ˆŠFk¸ã]…‚æϧiÓðî»xôˆªOÓ/çB,FêF8Ø ñÕj89ó9A” +o¿Í«€\AÊrq‚‹ /–ôõM—>ç›F§t`€’“¡­{Z¹ +¦&àsòÛì*$[)Y/Æñã¸Ûì,Lž‚™Zðò!©„l—"9™22()iDI³gƒ1Dªðå Œ-“ ¯=ÔÝC^>ü?u~ñr›6X­Öfì cÜõ1V?Ž9kŒ}ÊX cUŒ91ÁjiëÔœ­}Å…iŸ³_æ1QfI¯ïͪÑxá½ãFG™¦QAˆ\‹ ¶È% + rÈx-Š +C@9ÔÄ5*Þ +ÂÊ¡QApQ¹fh\™‰$a§=ð¢jëÝLŒì¨ëlí_^:ß«~¯¾ªWõ½W¯M­–99O8p]ŒšÐ[IÿJ+  +ÄÂÞ`¤íœš†M»òéÒØØ(‘HŒ[ZZ4mËDgggsss{{ûÝ»w×­[7vìX//¯ððpkkk__ßœœœ´´4¾Î‚»»ûýû÷³²²ljjÌ¿,LHHàRŸ…nnn;wîäEÖÑÑÉËËcÍ'NœËåS§Nˆˆ(//omm}ôèQÏ{³³³yʘ1c”Jell¬T*ÕÓÓ‹ŒŒ\³f‰‰É²eËxî† d2››«««ëèèXQQ=`ÀžZUU•‘‘aoo¿jÕªÛ·o³Ú}ûöý¥›={ö<}ú”%û÷ïŸ6m+칌°GŽá) +…‚ÿâdhjjª««+))IMMݾ}{RRÒâÅ‹ûôé3~üø“\Ì?~Ü‚ kkkÓ\ ´¼JGGÇ…3““G¥RiÚ-Zz…7SS3ÎUÞI3A¨¡ „^*¡èeeX + (ø«XúžTÊ{ ¦½Ñò±ðì•WЙÓØÖ&^gðÝî4"µµµ666ðpµÐskÑ¢ PÌóßd:~ÿ-°C6¬ëàâä´·ç.I$Nii´f NžD3唘„Çã4 Ý€fæèáq[i®- ‡'ÍS ¡¡8¥¬”"£hðüüs23ù +ÌÎÅ®Q@ r×Å…ÐÊ +÷ü;;)9…lmé»x¡”Jše…S§Pôf¼÷«h[ÝOèï£G“·ݹ#Jv¥P¿?‘LF›7£7+1‚œ( €†'[ºz ËËÉLJŸ1( +Zä‚ù˜‘ŽKÜÑÞž¦OÇ?†¡ëèçŸéØqœ<ç+('##‰=í×GŽÄˆ¯iï^š2G˜hÊÏǼÓGæf(ÑÃM›è—_^¬'““zRÑÎE®äçG2Kš8‘¬­ÉÓgÛˆ^»Êãpgk#}}Qϱ£È«E3g’ÝŠÚDóæaÿþè²kT=ÛQwœÞ}SÒ¢ååev"v>Ä’ËTT„¿ª{o«Êyõê¡»~¸ò²üû/­à2ÀU€lˆÕá¡ÃΞ;ÿ¾]ÔÒ+mjµÌÉyÀ)€ëbÔ„Âß‹ZO+  + À`¤íœš†M»òéÒØØ(‘HŒ[ZZ4mËDGGGaaá©S§ + + +BBBLMMׯ_¿mÛ¶yóæùûû—––ž>}ZWW—·°°0ÏÝŽ7néÒ¥>>><’§ÇÆƲD.—s×ÈȨÿþ111—.]⮵µõ”)S\\\vìØÁ#9 +Ô}০¦öíÛ×ÜÜ===''çܹsl!?³_ƒ Ò××ÏËË{üøqrr2/Kxxx{{»fƒ¥å·pêZXXpfJ¥R•J¥is´h镦¦F3SSÎUC€,€Ÿ((á"E¯+{„E‚PPpÀª»ö“Hõ*Ê+4í–|øîÝÃgÏzzﬧ¶¶ÖÆÆÞWWW>Üß—ýZ´ü¯45¡—WÑ••Å_¢ØN›6Sy9¥¦¢¥%)æÓÞ}Xt¸ÅÄž„æϧ„DúÒ årZêCsçà„ äà@Û”èá&¢«}ér+ + ÄdrsG\û7ruC™ S’±£ƒÉjÅFÓ¹ó´+•qŠ>­¥»wÙ4¬«£  V‹+VbOýyìJ´<ÿ ð§É“iá" + ¤Q£ÈƯ”àÅ‹´t)¹»Ó7Jòô$s3ŠŠÄ°0œ=›œqáB45#w7v¾F\ñÖÖÒ¡ƒ¤§G4þ3:x€Š/‘Ý|úBBß~KßWPu(dý,‰ˆÀ;w^,à³ç´+ÇŒAccÚ¶•’“Ä42"}}T(hŽ-¹,¢’Ѽ41IHÀóùXxA|04$SsŠÛBÞÞ8z4.v#•ª{'z÷íH‹–?¾Çþ牺èÕjêB±÷ö™ë¼zõP€Ý?\y]MøJ+¸ p @Ö]:ì,ï!Zþ_´©Õ2'çI§®‹Q +/j/Ê{ªªLFÚΩihд+Ÿ.‰ÄØظ¥¥EÓ¶|@¨Õêôôt777oo︸¸êêj•JŸœœÌkÕÚÚjoo_\\Ìã+++œœ¬¬¬”JeYYÙ½{÷XØÜܼeË–•+W>|8<<œÿU(^^^!!!ÑÑÑAAAÖÖÖvvvüÌÊy|ggçþýûù¥™™™]]],¹qãFZZZddäÆcccÏž=Ë›.¿:11qëÖ­lÉòåËÙ¤ŽŽŽ#«åËEIw¥Á +y@```ppp@@À’%KØŒŒŒŒ»ÝeS__ïëëkhhxèÐ!î–––úùùÉår¾Å¬X±"%%%))‰5Ÿ9s¦½»îzðàAAA»Ì¦¦¦ššÖÉöó*=yòDCQÒò8,,,ø@”J¥œ±š6G‹–^áÄÄÌŒsÕ 9ê¡@¬"(àŸ ¼Ú±ð+á*ÿ8#€9ˆLþB·´¬TÓÞhùØxû{Ì«ÔÖÖò‘ +oŸÝ·nÝzFkÑò>àR“Ž%£éäæŠ*•ø-dœD++š;—²³Å£µ ¿K E‹hÉbZ»³þ…hÅWdk‹Ëü0d-mû†¶o§9¶ÿf¿\ƒšJÏ8þ?;~r¶3â?´ÓÎTéLd¦±Ùu·°Óݶ?uK:mGÝõRÝîv7»µ««,•x/Œ·uUpEq`PF¹ RMT„ps­!&6ˆcj€Bò<}O"P."6TÎož99ç=ïû\ò¾ç¼ÿÃ3fðw¿G¿x‹ýŽ7mâ›7©®Ž?ú5¿”ï®^EEgIhàýûùƒD¾ß!‡Xó)mÝÊ›7ó»ïp¢–ß{OŸ¦ž9¹öv>r„W­â/¿$·[ÎÍl¦eËhÃJKãåËù·Z~g©[O†®©‘Ëß "IÝ"öáG|xð 䤯¯¯ºº:??¿¶¶V´ïÛ·Ï`0lÙ²EŒ2gΜٺukrrò‰'B_^¯WøÏËË»}ûvÈCoo¯ø²(...,,¼páBKK‹ßï¡ëêêŒArss+**¼AÊÊʲ³³N'˺©ýâÅ‹999iiiÛ·oA³²²nݺ%‹½ ÝÝÝÛ¶m›7ož8 +‡"â¡C‡D·;wfddˆˆ%%%EEEõõõ"‡Ð{÷î™L¦ššQ—ˆ«ÕjE>¦n·[LØcbb¬Vk¤ÓQP§óî« ^ku>¤¯%É Ô¥Y’*!™ÅÉP«”$!3ª 5­J ½&K?DGÿ¨ªÊéj^(hâ_3ƒˆí[£Ñ`ètº PP˜"PS#ïÚəǩ½]¾ni¡ƒ‡øàAnn‘/ª¾Â©©¼æo”’Bç/°ã•–°a |<“._¦Â³ôë·éå—éÇ?á÷ßç´4¾tI(c!@9?Ÿ’“hí:Î8ÆmmÜÙÍU—éä)®­åžºqƒ‹Š¹¨ˆŽePr²ðÉ99üÍ7"¨Z ¯¾*·”—‹sù9µÙèÔ)— "4§läí;èøq¾RÍW¯QV6’ýÛ[Ùh-Bâs«÷Ÿñž}|:O8$ç]qÓð_?á­›ÉddG~þ½^.7ÒÞ½|ö,uvÊáî´qvoXOŸ'qf&›+èë:™CUUÜÙÉÁW÷zÉhäôtjn +µP¯¯V‹?²³©¸˜KŠ¹­U¾%°Zé‹´öSÞÄyy|ÛƼcRxß>ÎÊb³™îߧG®¦.¡OÂaë”&´rµz}ph,€ (Õ„z¬j€ ²:œ5«ô\Ù¤Ô¥0:<ž¸Dm44ʳ&Çšµ™$ÔõÀ`v|BƒÝéR¦/‡C¥R©Õj—Ëé\¦@ ···OȘIB¼0…·Ðk3„ßïÖÞyÂQÂ/ýAïVWW·xñbƒÁàv»C£½Ïû‡‹“@H†=FnnîÂ… 8à’Ia*!f366Vlˆ111V«5Òé((ŒˆÃéP¿úŠX«? ʹ.¼t¸&›T éÊcV-Éw¯Cj“ðoI*•0_’µßœ¹s++Í‘®FáEAìz–J.(d÷ƒgôÔÜܬÑh0t:Íf›”ô&‘~59 +)üB>ëõrÏÈ߯“)À}½â(wé¸G[¶pB<ïÙîöÐ`pé÷“ÏRœáš•ÂN„e_ûû†Ýö ȱúÓ¢zÅ#Ô®ÃÛð84ŸŸ5ó£ZîàósW¤èw^Ê£¼Ã¤=à7(¹Ã›ú|ÔÓC}¾Á>"  Ì‚Âÿ ÔÝIÿ8O&õÈ߉ø¤ÕêõQÀa  °& |T«*É ˆƒ,gFÍ*=WöŠSx2O\¢6ÈåY“ŒcÍZÈLê€z`0;>¡Ánt)ӇáR©ÔjµËåŠt.S‚ ¼»žãÏdb9wtt¤§§çæævuu=­‹Åb0Ìfóâ*¹ +Ó +ŸÏçõzé riì~¿ÿyd¥ð,¸ÝîØØX±!ÆÄÄX­ÖH§£ 0"‡Sl=b­~R<°ÒR`1¤VÃl5ð'`°DÂr@ôy˜™èèhK•%ÒÕ(¼(¸þEqoз¾MgN?£§ææfF\¤$ #£Óél6Û¤¤¯ 0©<®Ç¥)tèêæŽöx8àj¡9.&ì•úvù¿O`à|D?4ìWAaŠ">&I>p@^¬õõ4gýàû|ýúÄÜiõú(à0ÐXP>ªU•@ PÄAÞpgFÍ*=W6™%*ŒJ‡Ç—¨òFyÖ$ãX³2“„: XÌŽOh°Û#]ÊôÅáp¨þË~ýÄ´‘Ýqÿé&‡4‡b¬Ôk©2;QÉ€MÆ +ÙL¤¦ŠðªRÂm9t/¾µ{É©í!ÙiÕ­Ên*õµGP ##)Ù­{Ì¿à?àÉ Æa'Yþ½é3îî’6Æ{; ü>üŸyßOïÞQäog¦iº !¤Z–e)ŠÂ7DI’TUu;BÊ2 Ýëõ¡jÇßïßw»²_,/³Ï>u>üЙ™aÕ4==}áÂAÊ-ÝÒWüzåÊ•l6[›ü q+ý²Òå?ñíW„}nëA_\t>ùĹqƒ ì›Æ݆B ˜Æ€0¼cŒ£@èü(î­õž†ð`­«#eåmÛßlú€‰â¬ C•f­q xÆ@gRÓÜ.åàÒu]EY–MÓt;òÿÆØi¥Ž{îN¾;–e)ŠÂ7DI’TUu;BÊ2 Ýçkçkµ®®î­ÃG„·áñGŽ|ïÈaA(žý¤'¾øâs·«!ûÅƆ“É°øV(°Ý¿Ël755^e9wwwg³ÙZU@ˆ‹Ø¶:%r€lÜ×ÖX*Ŧ¦ØÊó½  …<@/0 Œ`xÇF(ÐøQ<Ö{ƒ5©Œ¼Š¼mû»‚M@0Qœ5a¨Ò¬•"" $/ÐèLjšÛ¥\º®‹¢(˲išnçBÞ$tÞ{=Y–¥( +ß%IRUÕít)‹ï>Þvoq­þ¸éw¿ýÍ_ïÜùÓÇ÷Þ¸qûæÍÛ==·oݺ}«ç›øcOÏg=7?ýè#w~ÿ‡»þ˯ù«¾ý6ï~òäÉh4êv5dÿ`ß{ñUgw‰DGG*©««ëîîN§Ó5,× 9Ø 7Û>íe' †B ˜Æ€0¼cŒ£@èüøÞZïiÖ¦4ò +ò¶íï +6}ÀDqÖ„¡J³VŠˆ€8ø+Ac 3©in—rpñW3QeY6MÓí\!Õ²,KQ¾!J’¤ªªÛéR–aè^__«ïžiŸ¿·¾´T0Œ/³Y;7ÿ,—[ÒxÌo[›:?gÍÏ/™æº]»{÷¤(òî'››£±¨ÛÕ}‚±M–Óœ™ç«ç/¾ÜìZ,kooG%‚ \¾|yvv¶f5òºaÕø…Ó*;÷?¯r¨x<~ñâÅÇ ‚P·…ß`K©åСCüæèÑ£W¯^M§Ó5ÉŸBqÙ#Íy¯‹ßcšÆ?1þ³KÁPÈô“À†wŒ`ˆý€Å­¶ÞÓ0üj#/—·mW° è&Š³& UšµRDÄÀ_ É­5C\¡ëº(Š²,›¦év.„jY–¥( +ß%IRUÕít)Ë0 ŸÏÇ×껾öÙhÔalÕüç³Lfy.ûìe±<7·’Í®Ìe6Ÿ}ºµµÕëõò+¿ç'®¶¶6¾øyË©S§Î;wýúuN„Bö–Í°Ÿœ`dz‡ÓÅ»! +y€^`"ÀðŽ1ŒQ ðCà‡ÃzOÃ@x°æ¥‘rò¶íï +6}ÀDqÖ„¡J³VŠˆ€8¼@c 3IÇ!÷èº.Š"?¦š¦év.„jY–¥( +ß%IRUÕít)K7 ŸÏÇ×êY¯75>îl®¯<ÒžÎÌÒ©B&]¼þo¤f ©™5Ãpž={ôàÁOÏŸçÝ[ZZb±˜ÛÕ}‚­­±învìû,®r¨õõõÅÅÅ\.—N§çæær[´¯ñ{Þ˜Ú²°°°²²R“ü !„w±\Ž5·°¦9–v;B0ò½À$0D€ác¢@?à‡À‡õž†ð`ÍK#åämÛßlú€‰â¬ C•f­q xÆ@gRÓÜ.åàÒu]EY–MÓt;BHµ,ËR…oˆ’$©ªêv:„”¥†Ïçãkõl»ov|ÜÙX_ѵ§g +é”Iÿw¤‹×­¯f×tg©° ª—:¼{ssK,s»²_ll°÷ßgõ?p†þV“ñ6777¶lnaÛðë_ãP“G!„¸L×ÖVçÑI¥Ùž†B ˜Æ€0¼cŒ£@èüøá°ÞÓ0¬q]¤¼¼mû»‚M@0Qœ5a¨Ò¬•"" $/ÐèLjšÛ¥\º®‹¢(˲išnçB©–eYŠ¢ð Q’$UUÝN‡² Ãðú||­žõygþ~ÏY]}®åìÔl!“ZJ§ítªð²àí«¹œóôËüôÔÏv‘wonnŽÅbnWCö ¶¹É®^u<õÎðpµC±½½B!o2ÃpÚÚ؉,ÝÛÁPÈô“À†wŒ`ˆý€?Ö{ƒµ-‹ì oÛþ®`ÐLgMª4k¥ˆˆ À 4:“šæv)—®ë¢(ʲlš¦Û¹BªeY–¢(|C”$IUU·Ó!¤,Ã0¼>_«g}Þ™{cÎóåç¹ÜÓÔl!] ;“~!Ò©³_¿mÛWÀ¿¼(6H>ø>ÌØX®+ÌH€‚ö€Ù(¬>lÇ5gì/vÙzuÐ`  ;l€Ԇ僤–o&lÚN‘.D–ìØ%v,!÷“YtÂÉIìú[ïã‡ø'?é½¼çü~î9vì8ìÏÄí°A?¶¬Åù9¶]–eÃ0xWCnŠ—/ÓÛ·³B1k6x§B!„\?é—Aú‹[™ô^æ8é[½C¹R)KÀÐ@sdl›À6° ” °Ëa¡8±V[¿äÂÈpGq\Z(OU`¿ß5¡~^×òhØv˜œ™Ýó<Þ¥Œ/ß÷EQT% CÞ¹B.*Š"]×Ù(I’iš¼Ó!d¨ TMc³:­©ÖV+KN×íÚížÓøÐŒžc³È‰Ûaƒ~lY‹ósl»,ˆað®†Ü/^¤ý.-Òzýí~!„BÆÑ·§f¤·n¥ïý,sÓÁ篭\©%àh  926€M`XJØå°PœX«­_fud¤£8.-”§€*°ßïšP?¯ky4컀 +LÎÌîyïRÆ—ïû¢(*Š†!ï\!E‘®ëì@”$É4MÞé2Tª¦±YÖTk«•%'‰ëvívÏéG|è FϱYä‹Äí°A?¶¬Åù9¶]–eÃ0xWCnˆôùóô·¿ÉÞ}7«ÕxçB!„\Cn'•?È~ú“¬ýŒ½Jßü Ê•JX€К#cضe ] ʼnµÚú¥WF†9ŠãÒBy +¨ûý® õóº–GCÀ° ¨ÀäÌìžçñ.e|ù¾/Š¢¢(aòÎ…rQQéºÎDI’LÓä!CA j›ÕiMµ¶ZYr’¸n×n÷œ~ćÎ`ô›E¾HÜôcËZœŸcÛeY6 ƒw5ä¦H’ì×åìw²ÕUÞ©B!×ÐçŸg’”þøGÙ“'ìUʾÞP¹R)KÀÐ@sdl›À6° ” °Ëa¡8±V[ÿj#¯vÇ¥…òPöû]êçu-†€`PÉ™Ù=Ïã]Êøò}_EEQÂ0ä !䢢(Òuˆ’$™¦É;B† +‚@Õ46«Óšjmµ²ä$qÝ®Ýî9ýˆÁè96‹|‘¸6èÇ–µ8?Ƕ˲lïjÈMñuœÝþ({ÿçÙÆïT!„ë'õ¼ìÃÓÙ_¦ígo÷åJ¥,@ hÍ‘±lÛÀ2P‚À.‡…âÄZmýrë"#Åqi¡<Tý~ׄúy]Ë£!`ØT`rfv áÄ÷}QE Ãw.„‹Š¢H×uv J’dš&ït*UÓجNkªµÕÊ’“Äu»v»çô#>t£çØ,òEâvØ [ÖâüÛ.˲a¼«!7Å¿“ô“O²ßÿ!}ú4å !„r= ™_}•}üqöÇ?¥_þó;÷ZÊ•JX€К#cضe ] ʼnµÚúeGÎuÇ¥…òPöû]êçu-†€`PÉ™Ù=Ïã]Êøò}_EEQÂ0ä !䢢(Òuˆ’$™¦É;B† +‚@Õ46«Óšjmµ²ääÔs»v»çØ=§:ƒqöÐΉÛaƒ~lY‹ósl»,ˆað®†Üéÿ‚}½ñï2×W:Pl:N…¡oû;¶¦B®ÂÙÏ×Û¥åJ¥,@ hÍ‘ñØ AXJØå°PœX«­_zMd˜£8.-”§€*°ßïšP?¯ky4컀 +LÎÌîyïRÆ—ïû¢(*Š†!ï\!E‘®ëì@”$É4MÞé2Tª¦±YÖTk«•%'§žÛµÛ=Çî9íøÐŒ³‡v¾HÜôcËZœŸcÛeY6 ƒw5äFI¿‰ü;!„BFJ¿³øfù6Çh¹R)KÀÐ@sd<6C–v9,'Öj뮊¼®£8.-”§€*°ßïšP?¯ky4컀 +LÎÌîyïRÆ—ïû¢(*Š†!ï\!E‘®ëì@”$É4MÞé2Tª¦±YÖTk«•%'§žÛµÛ=Çî9íøÐŒ³‡v¾HÜôcËZœŸcÛeY6 ƒw5ä†HŸÿ'ûû?²?ÿ%ûâ Þ¹B!×OÚí¦½÷òáÃìë¥ìeš¾é;”+•"°- 4GÆc`0a(A`—ÃBqb­¶þ}TG^é(ŽK å)  +ì÷»&ÔÏëZ ;À. “3³{žÇ»”ñåû¾(ŠŠ¢„aÈ;BÈEEQ¤ë:;%I2M“w:„ ªilV§5ÕÚjeÉÉ©çvívϱ{N;>tãì¡/·ÃýزççØvY– Ãà] ¹)zÝlîWé®®ðNåª={öìÞ½{÷ïßôèÑÊÊÊgWeåÌꙫüÜÿK€×çæ…_í'¯>zôÙ§ŸþíÎ;õzýôô”÷è]‘4Mó…mÛ>|ðàõ¼«„\’|œVVWªÕ*ûïôîÝ»ìŠòâÅ ¾ÃÒÁ~ð~*ŠéÓ'gÒáû^­\©%àh  92›€!Ë@ »ŠkµõˬŒtÇ¥…òPöû]êçu-†€`PÉ™Ù=Ïã]Êøò}_EEQÂ0ä ù/ûeÔTvÆñç$AP`ëª]Vo‚rq3&5q]Òš¨„“€ok«ëË®×­µ]Ûïý²³ýÐ~h¿8ãÇ­Ng:àìL¥UÁ B^ ÄdÍ.ÑKÂK$çöÜDg +êrgáüæ?'''÷ÞçùŸóÜœ{ „ù²¬J¥Â¢L&³Z­B§C ÌŠÏçS(•¸V?P*lÿiãÂãaÏà°Ãt:‚N{È圩ø #Ñ ºq¡l¶ƒUz|:Ã0ø©[h7„ÅÂ0Ëi4(=ûæ¡SI)±XìÚµkJ¥R¡PhµÚ}ûöí]@tÓ-ßàhûöÇÁNÔ-PdÏÂ'üêf$¶ è¦C'Œÿÿ°ºÊeŸV»w—z×öíå @@èêK¡DçúõëjµW{¢Ô+++õú*!)àZÒëõø¦Þ³g®±;v|õÕWccc3+pQòÜ[ܤ½+.FëÖ!k猟ޣٜp     eNµÜ°PÔM5Pøá07/¿±éV æf(RŒ%7ºùU£n¿jÕj¦ à!€ @«ëòx„¶²tñz½4MËår¿ß/t.a¾°,«R©ð†(“ɬV«Ðé³âóùð33®Õ”ʾ»ÿå&'Ç=îaG_Ðéx¡Ë‰5³ƒtsìÓ€­·¦JOgÆb±톰X9ƒ­^Í55 +JJ ‡Ãõõg°Ä(,,ìíµ ]})ejjêܹsBOú„Vï߸ru&½L"*S­©:þÞÞ#Å8züàäG–€©hOÍ&ýñÍŠò×.Ï\.’W¬ûè䜟ۭ0ajªùvÏ¡âª[Ôú¹¼q±$½lçj<²÷hI|f’žÀô4bïÚƒEûm*ûp•ï—ö;ÝBW_Š@ˆ¿c±XCCC¦Dü—¯ÿìqÛ»:ÛÛï·v´·>Àíý–ö{Íí÷pÛÒADôšâˆ¯ÜÁUdéh}ðàßVk‡½Ïú÷¿ýõgkWïÜ©r¹„-þÔ€žï™hjy<ÈéB‘Hâ—7½”Ñlθ +ÐÐÐ Ð2§ZîX(ê&€(ü¿š›—ßØt+É ³3 +© Æ€ÝüªQ·_µj 5SÐ ð@P ÕuyN©¯£MõIvmªÛ‚§´æ¬´¦^zÔ¼íԗۜ޼¶0 Ï\‘®®\êÊö_QVS/‹O;TãϦ±ºžOàHCéñßmÓ~¼Vœ ïþ|‹Ó> tõ¥„øÛ9ÖÕÕ¯Z•ýí·ÿŒÇE(ÄÅB(ŒM '„¢DD¯©àóš â*âÐ(Ç…%×ÓÓÁ0²òòò¾>‡p…/h†^ÚT_£Ùœp     eNµÜ°PÔM5Pø57/¿±éVò½fa(RŒ%7ºùU£n¿jÕj¦ à!€ @«ëòx„¶²tñz½4MËår¿ß/t.a¾°,«R©ø—;™Ìjµ +0+>¯O©TâZýp‡ÂÞÑŽG¢C?Láç¿ûÞÏýð=ò?žôyÇÜý!—3¡ Ó1Òï +{9öIÀÖ[S¥Ç§3 c±X„vCX$ XŒsØÑ :—”211i>w‰ß;Ôo¸¼íHÃ6çRc-eøt‹1¹ª¥MµtuôðyÙ'¿g g¤²pè ‰Hµã‰ËåGÌ[µRS–äмøè¦ZéÁ³¥¿ù-sè³ÒwŠ²3Ä¢ +û'ÿPŽSJdhL~hš7÷~ø|éñ˼ñ %«°qqfú/önÀSññç¥&þ)ðÂL;žÕCŸm=vqkå‰Yk`ýúB{_¿ÐÕ—R¢ÑhmmÝÊœÿúGük$LDžF"O"‘@8G†x…‰ˆ^OÏ +†/\Evr‚FÇqu¹lJåvš–Úlvë> Dƒð'š˜@=½\ïÿØ/Û˜¶®3¿·F +efm–ð‘()Ü/y‰“Ú‰Ú%…$`—4R°M ¦$κ5ZûcêŸEª¦ì×&±Ó4%?6 ´¦ƒd ¦j© 06þˆ¬ú œÁ5÷îØÎÒhdI W çÑ#t¯ñ=ïûú¼÷Ü{ÆøÈrìCþ©ãL&)@;À(À € oMû,Ñ ­«ÙҜÉ.³*¾pX]ÍtŒÄfè}Ò¬%4p`@ °µ´lm0"áv»išV(^¯Wì\0Ìó +…T*UlsDzV«Uìt0˜UñxäuE¸rEb§ñÏžj$Îd’´Œ ˜úÖ´`ÀB]j кš-Íéî¹¹.ebþ¾pX]ÍtŒÄfè}Ò¬%4p`m ¶–– ;b—²yq»Ý4M+ +¯×+v. æy …B*• +=Y–µZ­b§ƒÁ¬ŠÇãQ*KP¯¾sàÀd¼Wïz¾¸qã·Ÿ~úÑù &½ágÆs¿ÿõÛ?—fg÷¦a‡ùÀåæBþñ±zMº\.—[,±«Á¼ ð‹÷M…–ÆþùÓmc¾ãD–#Û.¡ŠTf4\`jZ˜ŠÆ"­žÔ꩸dòüvÀJy¢­ÔÓ?,ÈB¡_N•””å4ɸfFÓøèËI ýP®(½®•©maswe¥¤‡Ž¼w±¸ú,+\—ü [Õ ­Ñ‘;Èï£ÂSÓR”‡sO^(®i¡4…šuŽŽ +¯9GU4îÊÞyy;lv±»oC‰FWŒÆÖŒWÒ;®_E§K >ÿ׎€o:èŸÁbŸE_܇Çé~ø® ,xœ_½}èð6ۤؿ±8¦x–åw¿Á}õlp&“ ``À з¦ý‚èPÖÕliNwÏÍä–…Y_8¬®æ +:Fb³Fô>iÖš ¸0 ØZZ6ìtŠ]ÊæÅívÓ4­P(¼^¯Ø¹`0˜ç% +©T*ô@dYÖjµŠ³*G©Dopä zf|LàWþöç?U?*£iåÞ•ìÝ{`ß>ã™3ÿèê\˜žŠ¸\÷§§æí“a‡}Ùíææ|ãcõš +t¹\.·X,bWƒyQˆD„Ó§ù¬ï ·6׆"²¹Øv ÝP¤2óÄy†kf´z2.¥Ñ‘ÿ9NŽ¬4Põï³UMô¶Y(tjšäÀÑüSq,ºŽB¡ã&9z<¢ÄAM SkdóÞØ"‘œ2íáš)M#©MvɇF¢ÂkL•ÚÅJ…ï?¼½á¼¬ö£mLþþ_¢è\ ¥ÑïúA>‘—[`›°‹Ý}J4ºb4¶ff¤w\¿†N—ýßTÐ?ƒÅ&ËP`6<çøù oºüØôBn³MŠÝø‹Ó)ìÝË‘„ ñO?g2¡Å±``À з¦ý‚èPÖÕliNwÏæzŽ‹‹/VWs…#±Y#zŸ4k ÍÜ@[‚­¥eèy0"áv»išV(^¯Wì\0Ìó +…T*z ¢÷«Õ*v:̪x<¥½ÀÑwÞöLŒ?ðû/üq±Œ9~äð/?úù•O>ùÅ?ýÍåË–[·Âûçì½)Ǽ}/»]Âüœol¬®¢].—Ë-‹ØÕ`^¢QA¯²¥B¯ùö2ß]"Ë‘‹m—Ð E*3O´1\3£Õ“q©¸äzXi ëZÙê&zûÎ,:5-å­c'MÅÜYF«£Ö5´FW„þrÍt‘Í/Ü"‘Ëóã¡)í²²q½‚&¬4Pu­L•ÚÍJc…§§(ç6œ—Õžc´ëUòc?{QM3¥5ì~­à¥¼¼Û„]ìîÛP¢Ñ£±5ã•ôŽëWÑéÒ‚/à› +úg°Ød9t·\üÊ|Ð?[Q^ʲ2›mRìÆßPx[xSÁ³2ÁþŒ…s&ZÛFÌ}kÚ0`!ˆ.5h]Í–æt÷ÜLn]˜5ð…Ãêj® `$6kDï“f-¡™€;ChK°µ´lØ黔͋Ûí¦izß¾}^¯Wì\0Ìó +…T*z ²,kµZÅNƒYÇ£,)A½Zu¬Ì;lýâÆgï:ôc•ú¯üCÄ휹ý¯Ï®^ýûõŽÙ/o/ÌL/ÎÎÜ›rÌÛ'ÃöÉe·KÏûÆÆê**Ðår¹Üb±ˆ] æF…&/ÍÌ}b粡D–#Û.¡ŠT¾ZßF×´0Z=‰Ôèb&Ž“«FW¤ÕÕé*µmç«(tjšä­£'/sg™XÐX\j=B?•Ygdó ·H$/,/h¸ «n¢´d%ªZ_´~q+ T­‘©j"wˤ±ÂÓS”GrOœ—Õ´ÐÚÆõ-9n×Lk …¯åKòr lv±»oC‰FWŒÆÖÌŒôŽë×ÐéÒÂ×ßtÐ? +Ìb±Ï jžÇ ùчÎù [X ³ååﲬlrÒ!vão,ž»üþýËðŽxá<ÿ´p&ZÛFÌ}kÚ0`!ˆ.5h]Í–æt÷ÜL~i˜Uð…Ãêj® `äßì—]LÙÇÏÔ¨ E$ᣂpØØcÏÕI6˜|H °‰± xIúÛ@0u0R«HÛmÚU_Z©ÛÝ´R£HUµÚŠ¶nú¡@VÅЧJ.6!€clìðal¯ %‹13½ÀªÝ‡Mb3j¸?þ/w˜¹çüçÜs¯g£jÄÀnUÛ’€'€  °¶nÔïçÚÊþ%ˆÅâ'NÌÎÎr ƒyY¢Ñ¨B¡@"MÓ.—‹ët0˜m ƒ2¹­U]ýÅàˆãîozÎVV]ÖiÿÞwÉëùÓ¯?þv‡ù'?xothð™ozuÆ¿ôdjÉó8îõ$3l<š׫êÑãR©Ôáppí󪰾ζµ1y¹¬}ëTö”Äj¢Ûr5)ËÖ[(]»Xeªdš„&W…£°¹CÜÐ*.z=…>p0£ê­’k™¶RD2ŠÒ—RãUªÙLó‡y¼S¶tI´m¤Úðy†)gøIÔd¦L¢7%y›ÆyçŠZ®ItWÑ=ÂM×i4®1‘¨¾£ €Ï+).uOz¸^}{J2¹n6wfeeÚl=h¸²<^˜Š,Nca¥JÑ°/aÖb‘EŸRYCÓen÷þê26ø”­¨`iŠõx™š@gµ¢Íñ6ÀÀ;ÀàŽpD/@5h_ÍÍËïë¿—b_˜í ÅãÕZàÀê»UmKvFœ2€ÂÚºQ¿Ÿk+û—@ @QTyyùÜÜ×¹`0˜—%* +t Ò4ít:¹NƒÙ–`0(“£_ÐxQ9ëüƒ­æôÙf•êoìLN|øÃ÷Ž:TXðÕ_~ðþòïúÜìŠozÙë]šò®l<š׫êÑãR©ÔáppíóªL²­&67‡øë‹}ÎüŸ’XMt[®£†"eÙz ¥k« Bµ‘L£ "µQÔl¦ZEE¯g£ÐfT]8ÚÒ%ѶQ[ÿÝTsh¼*n6Ó|Áa8¥ä£Ð ­dºŒ>÷‚æטqºÁ$>V–·a<3Cv¾èík”Ú(L·q‰DõÕ|^Iq©{ÒÃõêÛS’Éu³¹3++ÓfëAÕåùðÂTdq +UŠ†}±è ³‹,ú”Êš.s»÷W—1Á S^ÎÒãñnŽŸ{ÕŠ6ÇÛcìƒ;j`ÀA½Õ@ }57/¿¯ÿ^Ê­a¶#Wku€;7ªF ìVµ-Ù p O‚ÂÚºQ¿Ÿk+û—@ @Q”\.ŸŸŸç: ó²D£Q…BDš¦N'×é`0Û erô+4µu cc††T5µÇtóg÷Äïný"?'çKñ£wÞ‰=v³s³Ÿù|ÿœšZòz…&Æõªzô¸T*u8\»Á¼*¬­1W®0‡0Ÿ|Âu*{Jb5Ñm¹ŽŠ”eë-”®]¬2ÕF22ˆ4&Qs'­m½v…>pWuáhK—D×F© èt›(µA¿h +Eoê šÍ4_p˜ÇƒSJþ¥.IC™.ãÑVH‰â6˜ÄÇÊò6gTœ+j¹&iìØ4žÖ×¾aœDõÕ|^Iq©{ÒÃõêÛS’Éu³¹3++ÓfëAÕåùðÂTdq +UŠ†}±è ³‹,ú”Êš.s»÷W—±3æäIF,fogÐßs¢³ZÑæx` à€`pG  8¢ ´¯ææå÷õßKƒ7Ì'Wku€;7ªF ìVµ-Ù p O‚ÂÚºQ¿Ÿk+û—@ @Q”B¡…B\ç‚Á`^–p8\UU…Dš¦].×é`0Û‚N™LŽÖjÝ™3÷D"öéOoÜ +Þ¼pþ|Ï­[ݼ)!EG²³ßÿþèc737û™Ï÷zÖ6 MŒëUõèq©Têp8¸vƒyE`ž­0ºFæ+Yì_þÌu.{Jb5Ñm¹ŽŠ”eë-”®]¬2ÕF2­jhé¿E7˜D_/=„B8È«|‹¹»¬±RH5’Q”Úˆÿ6…æטÈ&3ÕÔ!)9v8#ƒ8¥D¡%Ú6²þŠp3tZ„@jh%õŠò•³i<£â\ñ¥.ISǦñ4¿vdÕWcðy%Å¥îI׫oOI&×Íæά¬L›­ W–çà S‘Åi,¬T)öÅ¢3ÌZ,²èS*khºÌíÞ_]Æ<ñ®KhöØ1fü³yáygÐY­y·ÆØwÔÀ0€ƒ zª@ûjn^~_ÿ½Ô{ÃlC(¯ÖêwnTØ­j[²0àÖÖúý\[Ù¿ O3Š¢ +E(â: ó² F®¬¬D"MÓ.—‹ët0˜m ƒ2¹­Õs +Å“‰G,ÃØoÓ«êÏTUYLÆï˜Íåß—H>þù͘çñúӧϦ§c^OÜëY Øx,41ŽnFK¥R‡ÃÁµÌ+³´ÄjuLNÛw—ë\ö”Äj¢Ûr5)ËÖ[(]»XeªdZÕÐ*zÛBkŒâ¯ÍF¡¿|€WYWr¹»¬±R]!ÕReHWhäNcé;©¦«tɇ22ˆSJþ7»Ë´mdý¡: q·Þç¦#!Š‚^2òøš(?p0£â\Ñ¥.I“½ö4ºÞ’ÆD¢újŒ‚>¯¤¸Ô=éázõí)ÉäºÙÜ™••i³õ áÊò|xa*²8…•*EþXt†Y‹E}Je M—¹Ýû«Ë˜'SÌɬ„f½Ø :«5à6ÀÀ;ÀàŽpD/@5h_ÍÍËïë¿—Z_˜ÅãÕZàÀê»UmKvFœ2€ÂÚºQ¿Ÿk+û—™™Š¢NŸ> +…¾xa®RÂ`0»²]‡ÎÍÍ) +t ŠÅb—˵ÇYa0ÿ;ÁàS™\ŽÖêY¹Üýº’ü4:yÿþ¯>üà»Vë»ÝÖïÝßÞº5>|?ö/ö«-¨‰, ÿAM‡‹ +n¹t$„²’rqœ*GÜ] Âì¬:C®+J‹µî‹»UîÓ8<è›øº%3ZQPk $@n†„˜€ Ý{: (à8hï@õU×éÓç¿|ç?§O·Í:kš°ùmVĹa'ùò¥»÷½:™Ëår³ÙÌ´;³¯‰ÖVòê? «éT>+æçæj›Ð†)#õµ]®.DB ¢QLÑ€k è*ÖRWª³€î_Oôךðâ*ü|£LkÇ%îG¡C÷ýá 3õ5RjÀûmÅoã.{+0 T…ËžéÛ•”ÖrUHã_2Kª¤ñÉQ{Cöœ*8öíeyIµtÅÏ{£¯HÓ¬ÉaÝ‘v£G&$\„„Ÿû›¬À N …«rã/\’•ÖI“†ÓÑW© &Y»¤‚žð·®LÈ–ŒÖ®1bƒâù–>+Ó«ï³baa±ºº&""¬­­ÝÎL»<®I÷K–ÛE¯Çîó:‰7>Ûž—wF*Í°Xv×.#&'É$®ÿ‡AwüZºúz àÀs€.€N€{›ò>À3‡s 8è½ÊÅxwÚïn»4aÂïÏ)Ô n<£ªÆéتj4;9ð @ —{ö©ÃÁ´”Ý §Ó‰ãøéÓ§ý~?Ó¹°`Áâ·b||mgêçN$êééa:,6ÄÈȨR¥Bkõ”RÙ÷è!êYœt“£# c£³vÇ«¡yÇЛaÇìÐà´Í6e³ú­ýS¶×Néõº{{õê|d.—ËÍf3Ójvfgg‡ËåZ\\d:—Oâ#~`væçæj›¨³C©¯•è*pu™°À újŒâ¢J¼¸/ªÀ‹Êq]%eN³°_i/SRT!)®”TK¾©O7]QèLxܱH:4|ïÉüDc‹âüEYqŽXT)~Çו<—‹‘7]…”v»Ì5ƒ ×’î,ª”Uá_×¥›³J¿OOL=üUQrå?çÒ‹«ÐS Rô^ÛwHg( ®âúLÐÌ ù)®’RÂ2ŒÏFÂR áaáÁ'óŽ™Z².4ÊŠ«©Ðˆô4®‹¾Ô †UIÐ$ ù_]Ž- §1ŠA›”Ï·ôY™^}Ÿ ‹ÕÕ5amm­èvfÚåq Lº‡X²Ü.z=vŸ×I¼ñyÜö¼¼3Ri†Å² v±¦A¼½!>âTÕÕ×c7žttÜÛ”÷˜9œÛ9ÀAïU.Æ»Ó~w[”±øLøý9…:À-€gTÕ8[Uf'žt(ârÏ>u8˜–²{át:qW*•L炋ߊ¾¾¾'N Q ôôô0 bddT©R¡µzJ©´<|ˆzæÆGçìƒäÄ Ò3Aº_/Ɖ±á™¡Á)›ÕgíGôÛ¬S¶×Néõº{{õê|d.—ËÍf3Ójv2ˆåzôJ¹yófGG‡ßïg6¥O b™»ósó µMhC‰”‘úZ‰®W— ¢­ikLb­I¤3‰uå4%…å¸Ö$.D,Ç×Q‹®KÄ%5’ —eyç1ñûQèÐ𽪳ñçe_×¥#‡…4×y0á…F1¢ÖH9Ñš®„ úÅ«Û+\J‰²UIÎ_”i øѤ¨ð¨à/ +øß5e–ÖHµFd…ëL¢õ¶ï8GNVQ¼*÷¨ÑÚõ5Òó—d>/<ÂDÂÃÂC”¹ .ÉþR—ŽrÓB¯Ëåv•Oªÿƒj´–£ÕWcÄ&%Äó-}V¦WßgÅÂÂbuuMDDX[[+º™vy\“î!–,·‹^Ýçuo|·=/ïŒTša±ì†]FKG'±ú]ù„øUÐÕ×c7žttÜÛ”÷˜9œÛ9ÀAïU.Æ»Ó~wûÔ±Ø~N¡Np àU5NÇVU£ÙÉ'ÝJ€¸Ü³O¦¥ì^Œegg‡††–••]½zõâÅ‹ÍÍÍ---W®\iaÁ‚Åÿ=І½|ù2Ú°×®]+))Ù¿ŸúÃJNN~üø1Ó/,6ÄÈȨR¥Bkõ”Jeùùg’Xœvøú~™¶Ù^ X§mSƒS6›ßfõYûQƒæ¬ÃNz½îÞ^½:™Ëår³ÙÌ´šôaßÞÞþå—_bVZZÚÝÝÍtFŸ ¯¦‰~ ››I«mõ¯ÍŽÇüÜ|CmÚP"e¤¾V¢«ÀÕeƒhsjŒ¢â*<ÿ;Aº*.Ap0YÊMÍä¦Ê¸©r,- (0¡‚'XÇl^š‚—"Ã’2¸I™Xª"&>õÀ¾ð zÏ÷p8_ÆMÎäò¥èz(-+z½ù²‡4 +ÁK“c9W¨ˆFP;U†Q¡Thz°0{ )Ûl^ŠC¡Ñyñ¢ƒ¡Á{‚8Ñ )YÑ(+*´ŒÎÿÐKqQ*œPŽ‰ùvæé<ïó<ó¼3ï;Yü41Ÿ/¢)M‹ùTIè™ý”#(‚òèLŠÎ¤"*]ò´9Ûg²‡,:MD 2)6’m¾B«„k:y1º{RéÙü4 _…~iMÄ4/ƒ$º&x|ž¡…lð‚DðOGžúÅh+¤Ò„T†ˆŠùéè:ƒ¢…F‚×Ò%‚§#—0lþcט Å ×lÞERBŠŸL\<{ßæÂÎz,l³Þ…A“|’¢‰¢R±á}ùî*š>Ä¢(°( U-!£Eõ5šåE<™´ØÑëLõè{¥D"Ѷ¶ƒBazw÷I< NŒzGÆ<ƒœ8-—|^—ß7›ñ{=.ƒ¡N©Üäp¬’§ çÌ(»ïë‹k´q6æì_ÚLjjoÏè¸p  àò‚ºpÀFgq•’˜Mrróο°Ü r<—‡@u³Ipà[5âÒbUKª‡€Ûw€BöîÐPªSY½ŒŽŽnß¾¯K2Ç#988VD‚¹§8Ù.//¿uëVª_0ÏÅív3j5ŽÕ†±ß¼FB##½þ~§¿¿/Ðïð;þ>¿ÛNÜÎ)èŒûÆ<ö»Ð\¥RÙl¶Tgó:sãÆÆÆFš¦“/™ªªª‹/¦:¨ŸŒááX&^øFì›o–ð-³r™O±v`}Œh·µÂÔZÞx l§Y±°Œ–²½‡”º÷ä™Ar +Âå#5;½< h29k±?š ø/cŽ—’óí—±œ5¡Y#ÜÄ`^ +ŠœwÈ{"’4àüˆá“@dò&¼4IòÞÅùiuï•ì9¤l²(vX¤^³US`}fyAO&-vô:S=ú^)‘H´­í P˜ÞÝ}ƒ£ÞÑ1Ï 'NË%Ÿ×å÷ Çfü^Ë`¨S*79¯ÿS›2Ùý{¬Š‰mþYüÎí¥Í¤¦öö\€N€û×z./¨+Wlq :ñ"ÍÉÍ;wþ²¥Ç±êf“à À=¶jĥŪ–T·î0…íÝ¡¡T§²z Ge¦¶¶V¯×ët:=ÇŠ[­V«ÑhêlÛ¶­²²rÿþýv»=Õ/Ž¥Kê(~rÜn7£Vãâ­†aì7¯Ç£‘àÈ°ßaô;ý}(¿Ó™¶ÙíœB®Á¸oÌc°«±ÍU*•ÍfKu6¯?:ê°L¸HÈÏχY¶nÝzêÔ©`0855566æóù=zä_iàâg®)x<žGþ@ŒÇ?þcüƒâ·V× šO±v`}Œh·µÂÔZÞx l§Y±°Œ–²½V¥~©8? mÓhÞÛëÄõsÕÅ•,“•T¤’ŠU2ÑW®m‘Š*eBu1{qõz‰8BsŠGn^+Ò—ãñ™h‹,³R*ú¡-kžl`'UE’wå9ØIŸ¤)r«L\'Ï}gDÅv>åœ*eÉó"ÕZQ¥T¼µ(k‡<§fC¶8&IÿÒ)0ò¬-hȆý¬kÑæDF¸eŠÅº²½W‰Ÿñ.f;”²çÑ‘z½ÄP‘Wû¦DHÂ<Áö=öR-‹뉪)°¾F³¼ ˆ'“;z©}¯”H$ÚÖvP(Lïî>‰‡Á‰QïèÀ˜g§å’Ïëòû†c3~¯Çe0Ô)•›ŽUñ”Í/"þ÷}ü·1ë¡ØÀž[ŠÖÔÞž Ð pà@Àåuà*€ ÎTï՜ܼsç/,gz ò0¨n6ÉÎÜc«F\Z¬jIõpàP¨ÑÞJu*«ü‡Ãããã¡P(ÌÁÁ±Â™žžžššO€íT¿`88ž‹ÛífÔj\¼Õ0Œýæõx,t½ß L~èwú}?ªk0îóØìjl@s•Je³ÙRÍëCl~eÇÛÜÜ,`’$¥Ri}}ýáÇÛÛÛ[ZZÌf³Åb1¯4, Z[Z<Ü·oŸ¥¥å_§¿L…â33q 6‰Å—öA³"™O±v`‰Œh·µÂÔZÞx l§Y±°Œ–²=V¥~_i^a&Úç.uTE¿n +}f?® ujB]Ú©(ÍœBì¡nªK7Ù¥ ~ª~ÕäøSí~B¡˜>óQe¤Û8õφ‰ãÚÉ®„y—†Õ=„Oh±“ Ö\‡;ÿ\SS’]ñ†ðÛ?TGO7O~¢Ÿ8Ž&ºz9¡yVáº`'v®üDùÒøý_w4« +dÙÿÁÈOƒŸ³æAôû÷§]³‘³!é&°‡ègNÿûûê·×‰0òŠáåß½=ÝÄFþ·ºà\Øóæì}%2šÀíçºèWymý[ùh¾VÌÿ²ms¤»)|Ò0Ñõn° ïö‡Y'îaÒ;Fþ©#ùËSY.d𪚊÷z«éÃòEë5[5Ö×h–ñdÒbG¯3գDÛÚ +…éÝÝ'ñ081êó râ´\òy]~ßplÆïõ¸ †:¥r“ñºž2vê øq©†ÏÛÒ&QS{;Î +÷®ô\^PW®Øâ,@5ø^ÍÉÍ;wþÂ2§Åñ|ÕÍ&9À€{lÕˆK‹U-©nÜ`p ÑÞJu*¯·Ûͨոx«aÔ½ßވǣA÷ȸÓ154ž ô;ýÎ>Ü&síÐ W›ûƒ] h®R©l6[ª³y ñx<ÇŽ+,,„D'‰d2™"Aii醕Éú%%%¥%l +kÖ¬‘J¥¿9Øær$Ó%Kû¤YL‡§X;°Ð +F´ÛZaj-oOA‡’‰kÜŠyŒL‡ø’†YRôqž¹}·dsü"ðãdáiyËTïòž¢d<®jXÊ,®¯232$Ü7lq„®C?ÓOßS…¢Ü99›¹ÜùeøÔ>d²šºú-ݬXM—¬†Á;´kÐj1ÈdDLL¬N÷B½eÌNÂím=iê¼<üm-¸ÐPPûXÕÔh9œ*€ààïj@`PõÙsÓ–ËT˜m¶„u$@%@;S5ÎÅ©ªæU Z®à¿¡¤¤ÍhœéTXXXXXXž(Šjnn>sæŒÙlöFhú¡íÕ¸Óç‘Þž^¡H„7o«Eñº¦&&t÷®£«³þDÕÁ?ü²ªr@×1j4 uuÚôz›þÖ G¶NýˆÑ€ú­–›7RåÉØ.´ZíLg3{p8'OžLHHðññÁËËñ/K¢£«ÎœF_®\Aw‡þÿ4ÏÎQç¶Ü|¼<¡jn´z#_‘ÉÃ’gDayÛ¥Êæ¥ná'¦ÿ24Ü{Îõ­+¢ãJjľ‹°#EXäÃb‚ÃøR¡Ø½[‚>•÷ŠeÁؼÀïdn*Wº÷Kí»ÈÉíb;nT1‰íÖbB¼4(ì¥y-^‰*”Î=¤ý#±w{ñ8/i÷h¤KìÔ¨TJíOLýM(×Ï·ö½xl§ö&â™{G™èeŽŒ—pï• ²äoþµFú:3s^肆"tDNíKþH|¿‡q£‹™™’ŽB’Ɖ—Év‰³V.b÷ŸS¾i9:ªt3ë&o/¼wŠí¸s¶—JG‹Åïý. ü8ËeáëóbS²øò ž"cédÅz@QL}³"ƒ—ø†-ŽÐuègúé{ªP”;'g3—;¿¢¢ ŸÚ‡LVSW¿¥›«éÒ€Õ08p‡v Z-™Œˆ‰‰Õéfÿ[F{ÞŸ‘aTw 5\F£Ž'ëM—Pp   ö±ª¨Ðr8U ÀlZƒªÏž›¾üX¦Àl³%¤¨#*Ú™ªq.NU5¯j8Ð +p@JJڌƙN………………åYaxxxçÎÙÙÙÆiŒŒÅÇÝ01âv»§Æ?œÞÞ^¡P„7o«Eñºæ&äé»Öú·?¼¿z…¨`ë–®+_¹û¾q w;õ6ý->z4b4 ~«åæTy2¶ ­V;ÓÙÌ(ŠºvíZff¦¿¿?¼x¼wâôiTX„ +¶ÓÝÝã_¤YsÔ¹-7/O蟚òîREf”"“'ψÂÂGJ•ÍKÝ—¤ý"4œy`Îóýr‡W¹öHì…„½)š(ËÎ4ÄîÝ$:$Ô*A0¶/˜sjë¯Q¹Ò½_:RHâ<7O´‹½m—†@‡åÿÙ-Iäÿ,ì¥yÚ¿¬DJ'zqo”âGNÀ+ñ¨†D¥Rú 4-þe®ŸOíûñ蘊ڛx\ñä^߆J“ûv®Q, a-”Û°C„ŽÈ©}Iö]âIfŽ;Ä—HGIï‘ C2[±iU8¶‡üį"GÀ$~PêY´‰öïOqç®Ýô‰Ô¥! ÞŒ?ÎrYØú¼Ø”,¾<ƒ§ÈX:Y±P”z#_‘¼Ä7lq„®C?ÓOßS…¢Ü99›¹ÜùeøÔ>d²šºú-ݬXM—¬†Á;´kÐj1ÈdDLL¬N7ûß2zì€1›ÑDú+²Zž¬7u^^ @ Àu€€€ÚǪ @ËáT$WƒªÏž›¦äX¦Æl³%¤¨#*Ú™ªq.NU5¯j8Ð +p@JJڌƙN………………åYA«Õ¦§§óùüüüü¾¾>¡iúöíÛ.\¨¯¯·Z­8âp8ÚÚÚΟ?ßÚÚj·Ûqdhh¨½½½±±±³³“¢(ÄlÍÌÍÍÍ---&“ÉétâcSSÓåË—{zzÜn÷ÌæØÛÛ+‰ðæm•0þ¿ì—{LSYÇOAQë `]^£.TĆ2ÛÂ’™ÝÙÞ¶”¶HÇi1òaÁÍø`g¢b̬cömyhy™å¹ +KDQy¨€†Äªò°[lV…Щ-´åž=m—Ñyd&ŒU¹Ÿ|{ó»çÞï9çw~·¹çö<¸gÍhT[SOßBC«Üß/ÍÎF[J|èÙ÷}ÊqÅcRa—Q­‚£Ú‘î.Ÿ‡î¤Ñhh¹›Ë»zƺ»»SRRœÑÂ’H¤Žï0¤ÿÿ¬øEDÔ\¹y<¸z~ýš£ òZ1Mšö¥D‹@¡“Ei›bwoäÇ (skkE”̉ÛàíGF^÷åKš¿fÀÊs.Û(aÙ„M?Õ„„iÎÆ`q´>‡%Üâ‰ì^䥵éa°L`‘EÅvï«vÔ´Çf©Õþü,‡G]ãë¾\~ô°B`ÊãÎ`³x_s^‹¹_0Ö¾çâÔxàCXc>Ë1ˆg3Ú‡¶^5çq`!W{êOŸ…y[ÍÛ­%“KùhæÈnëa®™[rX°ˆk²þöI²{’]*ÿ +ËøSQÓwb¯x_œš‘½€‹ç²³Øë‹S(×÷ó jlb0?ž"ˆß8oÕ AÂä`Ab §¿³¯O@oÂÑOßkÅb™JIÙëææZYyôCÚ¡¾Ñ‘'„-”Æ´ªñ±Ü<®QEGc!!ÔÞÞEñ/È”J² _·ïzô˺fdx@'-4Ð4§nÐ €œDª ÒöR_í±æJÝÕÊŒ`~†uºÈXa UtX«Fj˜¯jv5’À}@À›Å~¨V;:‚7“ÉT[[›™™¹mÛ¶={öÜ»w5êtºëׯK$’¢¢"¥Ri±X +EEE…T*­®®œššBíÈXRRRWW7<<<99ÙÚÚ*“É._¾Üß߯R©nÞ¼YVVvñâÅÎÎN4ŠcÓÔh4tÚ€èôžö¨ePù8ûÛ°>þ˜¼b…³“ó?±<û/Ö÷÷+ë” +ûѨVÁQíHw—ˆÏCv&—Ëç·ñë§õƒÖ§½½=..,6H¶¯üÂ#j®]…11pÕj¼þÚ¢z\L“¦}iÑ"PèdQÚ&ar0?>H@™[[“(¢Ô`NÜo?2òº/_ÒüM8¬ˆ±ä²–MØtðB±µqBŠ™³Y°(ZŸÃÒ<‘Ý‹¼´6= – ,碌b»÷U;jaÚc³ƒÅ¼çgÙ<ê÷ewFÀr¾)cëFïËbN"{s¿d¬}o©Sãþa…ÀœÇ6œ™ÍhÚz՜Æ…\í©ODa^ÖEó^Ñ’I‡%|‹, +>=ÙgžcMÜ Å¾b »çJ—Ê=¡°”7Ue̘øNMÙÌçâ¹ì,ö:àâí÷y56q“ ~£UóUM„ê+H ôôwöõ èíQ8úé{­X,S)){ÝÜ\++Ï£Sƒ~H;Ô7:ò„¡…Ò˜V5>6€›Çµ#ªèh,$„ÚÛ»ˆþeÖWg?N¥â¬ƒ]p{ËÏD˜‘á@´Ð@Óœº@3r©€HÛ+}µÇš+uW<;‚ÙÖé"c…TÐa­©a¾ªÙÕH÷xú$ðf±ªÕŽN…€€€€€à```àøñãUUU555IIIEEECCCååå'OžDÇ[·n©ÕêÛ·o:t(++«¶¶¶¡¡¡½½ýÎ;gÎœÉÏÏ/--=zôhIIISSSZZZrrr[[Ûàà`aaajjêéÓ§Ñý===ŽMS£ÑÐh>¢3z;¢–º ÿæaÌÝ_|ùׄD¿ßú8¬ÞÖøìÙ¤ZePõ딊qÅct4ªUpT;ÒÝ%âóF£Éåòy‡Ãmüúi½Ýèt:™Læïï$›¬ø2ÂÿSß·oÇüñÖ;Ž®ÆkÅ4iÚ—v-…N¥…“ƒ $~|=˜Q[“(¢Ô`NÜo?2òº/_ÒüM8¬ˆ±ä²–Q‚%L[0“¤˜IÊ‚…<}.ëÓ-^ÈîµÒ¥6= –ðñs£ØîÅ^1¾èÓ$aÂbîó³œèÍž>îË¥|SÛ(¶ßöª÷e1'$”E¡v2Öº-unÜO‡å1æ\ŽAŒ¬Ó›Ã‹YrÐ̹£§ÿüYØoÐ̃¼W´bÀñ¦dœéiÏ8ºõÒ„„eÉa#»>û + @vÏ•.•{Ba©`*Ÿk˜eÄ—OMR æsa^Tk=XæD‹ö‹Ë Æ&nÄo´jözM+ÈZßÄ@Og_Ÿ€Þ…£Ÿ¾×ŠÅ2•’²×Í͵²ò<:5致C}£#OZ(iUãc¸y\;¢ŠŽÆBB¨½½‹ã_†Cû6 ×hàïépóf\iMül¾„äÐ @ 4Í©4 '‘ªˆ´½ÓW{¬¹Rwu$˜a.2V@Öª‘æ«š]$p€ Ooû¡ZíèTÞ:::RSS+**šššP ‹[[[>|âĉ®®.­V«×ë/]º{ìØ1µZýôéSÔ^^^žžž~êÔ)då¸â±N©0ªUpT;ÒÝ%âóF£ÉårÇæò΀ãxww÷îÝ»]]]Á"„¾ HöÐ/<¢êz=ܾ®ûÞ¾ƒCøó¿fÞVL“¦}iÑ"PèdQZˆ09X@AâÇÙƒµ5‰"J æÄýÎÛŸŒ¼ï/snþš+–\¶QÂ2J0›X?Ñ„ØH1“”‹xúìÓ-^ÈîµÒ¥6= –ðñs£™3ÙííÖØ$aÂb®þlT4ÕÓÇ}ÙÝ#°”oÊcÅ?ºm1'$”E¡v2Öº¹87î§Ã²s.Ç Æ ÖéÍáÅ,¹ØÿØ/˜¦²4ŽŸ‚8€0 Tð1.ÏÊØñ1ÅfÜYÛÛBÊ(lÖMÁEÇnt4ÆÑ ƒŠkB[>@e"˜YŠFAÍ® ".P +R˜¢>JÁ>îÙS + *jbÍêýåŸôœöþ¿ó}÷;7÷žל\³ÒeîïåR÷C(<Ç1°ÆÒž¤ðñŸŒÙ<¡Ëf|O_Œ¶y–CéŽåðÏ|*Bÿš'N Ëê0/ü0ö)p"QÙ¾±Â¨„`?Т×÷kLþ–þ&ø‘Úû,X$k‘Ûz÷M+&“Y HrvžYZZ„¦z]º§]£ê Dhª¤U+ú´]¸±O­R°Ù +%D&û0ž2|ô¥‰+»!†/£àmíðÞ¤ÑB¡'9< €n¼Q7¸ €”D* läîá9»¢²jjë#x½ýýaQÑ~”ÐhééúÛºfU Ôðô—À c>ìì´u)¶Ç`0œ={vãÆÇŽ»zõêñãÇSSS“““1 ËÎο¬¢¢bݺuééé8n9piµÚÜÜ\' +ÏŸ?ÆW®\ihh@¡öïß/‹«««kkkKJJÒÒÒ8PVV688h»*-(•J síÚßä2“n` ÉaÆG´+R‚¯h4·Y³voÝÚý ªU¦n¥®½­OÞÚß&îT@ZÕÜÃå ;•J•J¥¶­å=C§Óeff’Éd0i0ÆÄñ{Æü?†–WUÁͱpñüî][÷aZ1 „»ö¢›àOsÙ´+xÃŽ`^¼?—À‹Y\¾¿u™ðmR0+ös¹"¯›ÓŒÛÖÀKmnìS«l6ƒB ‘Éä¶ÞøÓ>ú¡Tâ_¬Æ)\Þön¢…BOrx@-5Üx£np)‰T@°œR<°^Š4æ1‡ÄŒ ¢OCo‘elÊaÀ"¶.—ý¹²Ïuu¸º{%,æâ?³†Eؘ{EÖ€˜A€…º|gÙw§û?~ K¸†<¦^4¾è«^Ìš6æ0Ñê¦\ÖAÆà`·œí' ‰Úlm—ïÿjË&*2!0z{—¿tŽ¯Ï‚E²¹­wß´b2™‚$g癥¥Ehª×õ¨{Ú5ªB„¦JZµ¢OÛ…ûÔ*›Í PBd²ë)C'<¸z5¤P ¼íÝD …žäð€Zj¸ñFÝà6R©€0`9´xxή¨¬šÚ²Þ@oXT´e4ZºFºþ¶®YUCõ<€€Æ|ØÙiëRlŒÁ`(//ß³gÏÅ‹?~¬ÑhšššŽ9Âd2ãââŽ=zùòe©TªR©nݺ•˜˜˜’’RQQQ__ßÑÑqçÎÔÔÔ'NÜ»w¯µµµ··W§Ó577WVVddd644 Ë:”œœŒÆ¶-V©TÒhè"Y¬®ÿüûæå_ÖG„G±#$?ýt÷×_‹²²V~F]ºxñ…‰±û7Ó“nÝãöþ69ÒP§jÕªæ¦.Ù©T*º'¶­åýÇñ‰Ó´´4wwwð"ööönnnÞÞÞd2Ùc ÏÿƳµf{ÎþÄÃÃÙyæ'žž›þo›ÆÄÀyÞðzú` Ï Â]{QÖ¸lÞ¼a{0‡ÀãZð²ø\¾?RÔ¶ÀÍßQ±KÉ>®Èëædk? þiÊe‰z1¦—`CâIE.¦ã¹LXÌÑJë©dd'»8üs÷*xgÎaÃbÆk¼£2J°ˆ­û™Å !û¸;Þ?ô%,ár1}2Z4ÙêÖŸFìÙ<"ü5tÞÇÙפÐà%ž!‰ì(ó¡×fn bÌc³lÕ?þ5’y€—KݾPxžk*×£ÂE¿¯òâÒt4c¦ ²$ØÎ?ùZ +wu(M\/FšÏDèQÚ¢I‰‰¡Ä†Ett{‘Ý ÁR¾^쨾ùûgQÛ‚¹üÑîLÒ² Z¿5hCbPÄ–ÅóÏ‚…²¹­wß´b2™‚$ôÈ—–¡©^×£îiר:š*iÕŠ>mnìS«l6ƒB ‘É>¬§ vuá+VàAA¸¼õÝD ÿÇ~¹5uåqü—j±4>ÁnñÁXwFHD£Ö-[@Í á ‚ÕÖ­ëÖV *¶»kWÇ™Ýq÷Nµ€„Ô*Ï«,×B·UÉÂ(¯@òˆIÈãž=7øÀ±â0CIuïg¾sæžsîïwÎïüNNÎMv4ÔHªÇU @€”Á(>WÝÜç—WTNnX4ã0h0ÄÄz”Ü¢²Æ¸ò¼¬J€F€&üIàAðoªÕÎ…†††††ÆÉÆŠŠŠ‚‚‚þþþÑ‹ÅR]]}úôéÚÚÚ²²²#GŽ?~¼¡¡áÎ;×®];sæÌÑ£G322ÚÛÛ CUUUZZZVVÖùóç¯_¿ŽóòòŽ;†Þ¸qC"‘äææfggã^ìS§Ó97ØÞž^.¾@èÆÊk?¶ÔÕ¤üãïe¹ßrd6o÷ˆ2íÛw!;[ÛÚjR«†;•÷” +Ü‹Ÿ‘^«ikÇæG*•:7–—¼y¼½½a žžžIIIÅÅÅEEEx³‰Åâ,§^4F'Ÿ)g…i))9ùù:­Y¯CæÌ%ËÊœ½öSŠeIJïœ_ßõ3·±<>‘ù±w%ŸÈßSåX9Z¼£wyÇ%²¶±‚ضÌ}Ûº»N¿zˆ‹¾ÛŒN lé|«oI','7œä=’å$Ϛγ yv!Až +EÅ1ƒ'7Åq~E™3]¾Û»DÙ³¦Tž9gJ#Æ‘MÈGç"‡D„€ý†§Ûk7þú.*Œ¶ˆøÆ”q yfÊœ@ÙaXÛ¹ ™.Óªÿô*Š¶e†SŸ3.ž˜-S€r#nµAÀ¢fîã1óûƒëP^¤-+ ›;<<í·l2¥ññÐvžy¸þ$±s½'6_0Û¥ø³U¨4–<nV!¯Û–cÅÌŽÒŠWÒ!¼nè”åG™…Ägþ Áå•ÕK>úÃÊÍ»YŽìxãìWÝÜç—WTNzh4ÏbÐ`ˆ‰õ(¸EeqåyY•„Mø“ÀƒàßT« + “±X,---&“éQcwwwss³V«U*•/^¼té’\.¹{÷nSSSYYYUUU__I’555—/_®®®–Éd½½½uuu%%%R©T§Ó©ÕêÚÚZ‰DÒØØØßßoµZ)¦§§‡ËÅ· Þ TJ Ý]?–•É¿¯³÷÷!Ó}¤×ÉøOU~þÿ}EÓÚ6Ü©¼§Tr,“Z…ôZM[k|D86çp88@çÆòƒ7Þ¡C‡fÍša±X"‘hppP£Ñà-‡·%.»^T*Õ£g…B©P(:d²öövußíaðà Š'-D••þ’y‘±ŒX’÷ÀùeÿföŽ+¶îñ‹ùÄ+z—oô.oG9VÞ¸+öSŸ­{Ù¿û’ò¡—û"&¶}“ùjýáu¨<冣L%Q™AØŸ)â#¬,Ê@—â…Ä–Uobóy®Ó/ì]Š¢lYS*ÏœÆ3¥&ªñPÚí|”©<7O·×®ÿ-E[D|c +õ‚ùñûÄ“¶ŽÞTžMÈÇó´ºm­ÓeZÍwPq´MbLåý”ác¤vq:¡>¼Ñ¼‚³þà:”e;jLÝäðð´ܲé9žùùHM*o;w!6_cõ0k>Ž¬ùÆ'²?ÜïºcÉlð\¼TÖ®töî›Rl6{bb“éZX˜ƒ«Æáí€R§é¢Ek²¤×ª†ôݤuH«Q……ñØl?™Lîì?¥J%éÏEji¡ªh§±ÉÉøl4ÔHªÇU @€”Á(>WÝÜç—WTþ ÁÑü4ƒC@L¬@ À-*kŒ+ÏËÚ¨$ hhÀŸÿ¦ZíìPhhhhhh~Aä„ïQ/½=½þ\|y æúw44PMwuUçý®Îa¥Ü¨ê²÷÷¡;ænõ=¥Â c É;piV«^¯ikÛŽÍ9ŽT*uv4/3v»=''ÇË _÷(¸\îÕ«W=©Ÿ Òl"KJPJ +Ù©rö\¦‹Åºßœ_Ö»3wþÙïƒä•›w³6'øÆ%°6ïöÅÏq lê9KU}°â|>Ø¿|çAÛ²y¯cÛ¥s]¯^.oEù‘(KàPˆ£ #\å#q:J½V¹¥/•·e•6Ÿ;cÚ…„¨ Ô.Þ`>þžñ›@ó7A¦” O*È|"ÐxwÚÓ‚Ð9âö×ëßšé9{ú‡W£¢Pkúãñ eˆü¤°y0åóåÄš„² cz`¤ï<æôWª>_‰ +Ãl¢Ø¹é~-ø)ó`3ö‰‡>hËÆC·üeíZO*ðeo¸T¾å‡Ú²6šNà™ýÁÌ͇ÁæéAè,¿ï«€¸îØÜsÎŒ‹Éo£ÊxôÏt*„Òƒ¥ y¸€$æS¢zè\$*¿/ +Ù±Ò^Ÿ¶&fé΃«¶îa¦Ì‘ß±ŠÛÍzüœàûþÞå¿ýãÊí‹]Ý`ñ¢_ËÚäÎÞ}SŠÍfOLLb2] spÕ8< Pê4]´hM–ôZÕ¾›´i5ª°0›í'“ýüʨ‹«ãîj0 ¼|òÌR3èhŸ°§Øäd|8 +šê$Õ㪠   ø\usŸ_^Q9ÉÒ<›Aƒ! &ßKnQYc\y^ÖF%a@#@¾^xü›jµ³C¡¡¡¡¡¡ùÅA’¿N½ ôöôúsýñå-Ëm¿þ?ö˨‰ôŒãO6ß$ˆBH €žç¨F¼¨m !ȧ „/™Öéôê·UQ¯ôìééM;Óiç¦7Óåz:Nõz*xC«\;S?îÄ:hk­9uÌ…€ò5‡ ²»Énvûn‚~{=$j÷??^Þ}ö}vŸ÷yv³ï{Y˜¡Aòvûp»ÃÓjnsøzºý½_x»»îÝn÷´9ÜŽVê¬kÐi³­,.Bî:Îjµ†z6/¸z{{wì؆ž––ÖÜÜꈞš–¹{—¹ÝÎŒà/ì»÷8ù¼¾Ÿ½±ÕwÖ|iù¦¤’us—ý0±pUbÑêdŽ5¦@ß´*©hU¢iUbáK×%Ëè¼ÃÃ3Y¸:Ü®.†r8;L¦¥ZmŠÝîõƒ?U +|8?Íôö2Ý]ŒÏÇÜ7~%•WV¢¯Â~€›šÎOÈ€f€«F ßÕÈ(Õ©Óg&{z¼þ£ú=ãŠòD€“7¸ª Î=©jAšp    &¿àzgg¨§Â‹/^¼x=ëb˜'¬®ž8àÙQOOOª^o™úTÛåK¬Ÿ&º»Üv›ÇÑêns¸Q;O›Ã0¢–èì`]ƒN›meqr×étV«5Ô³y1Åì[,–¬¬¬íÛ··´´„6°§)†¥(Öçû_v2ϳ|>z÷[{Ð %*6L¯PÇ)5ñʘøð˜x¥:#†;TÆ&„ÇÎäZt*6Aù™áÓUr ïT$ÐÆ)KR¢—ÏSåÏS•,ЬÐÅ”/Ò¬X¤ƒ;ÔÅ”¾ªY>_]8_U–¢úÎKJ‰¹O—a¬HaKý¿Ï%ª„9ƒ°d5@ Ö°[ŒþÚ%ìÑÇ;zãKÊ$•ìòžÅlý2ï{™#ætÂb䆙D`ð}Œ ¸ H§öf°XÚo6–i#5á¢3¯§°õÔûY#ÕéÜàšôÀà/Ýñ`‡ Ãè?Í~¸Ìúöâ…ña(ò9*é'?Maë–Ó‚‘ŒÜˆ®Fï^c$ÍFzÛPÚöCî—sLðMµÜ¤.J‰ÎŸ‰Ú2Ê•f”…(iêò…1ˆ’W5…ZÊJ²~vDx oòIÌL…&N©ŽWj1\i”ã-ÙLÔrUÓÄ)¢ãÂBä[R\êGoªEÓþŠŠ­ +…¼¡á:Äïõ ôµ:ïððL®·«‹¡ÜΓi©V›b·;BýàO…˜à‡“û‡¾¤>Öïµ~u•WVFì¸ p  àü„\h¸ +Ð`úq‹ŒR:}fRçÇk"õ{<Æå‰'npUœ{RÕ‚4 à@ @*@L~ÁõÎÎPO…/^¼xñzÖÅ0-°&>û¬©§§'U¯G‹·L}ªíò%–¦ð®Î!»ÍÓêð8ž6ÇP«áv´ŽÙ‰ÎÖårÚl+‹‹»N§³Z­¡žÍÿ…nݺU[[{ôèÑÎxÙFQìgŸ±çÿƸ‡ÇÏÓ;õuDQÔîÝ{Üv +¡!@`6Ú ´0‘H€@ …ò +ø¢žT„IÄB™SJ…á2Q¸\¤” Ç!BFtJ.ÊĘ ] +ÂÎ3Â$'~^Æ^{—9½ÓW·‰¨ß@Ôm ®{/jë6z?ÚìÿÓ6ö“]_ÔWVþ`ùkE¹7naϽIØNÔo"ëÖ“ÇÖ{ƒd­÷ØZäNßL5lcO¿é9±ã—KJ 2/×ld?ÝE7¾NÔo&ë~ì}Ää|×õ½Ç71?aÏî¼ýAÅêÒ\õ+ +s3¬µëÙOwÒW’uèîÈcc¯ °á=¶Î[·ÁW¿Ùÿ—7ØþÚ~p}úœép_R1Ê &“ÂPêd\–‚úÂѾT&Æä(½b!—¶ûŠFK3Z#ìAPÉ„‚@ÕPC–1ßââÒP?zS-šöWTlU(ä GÐ!~¯o ¯}Ðy‡‡g²p t¸]] åpv˜LKµÚ»ÝêJ4öÁÄqöÊ¿X´6óz<ñߪ¼²2 +`?ÀM€‹Mç'ä@3ÀU€Fcàƒ¥:uúÌ$NŽ×Äê÷xŒ+ÊNÜàª&8÷¤ªiÀ5€€T€˜ü‚ë/ð +“/^¼xñâõˆzzºõz=Z¼eêõŸÿãï,Má]]C6ÛPëçžV»Ñæð8ZnÔ¢~›ƒë8Þ;ìà Óf[Y\„Üu:->yM‰†¡(Êï÷‡:§%¦¿Ÿ)/g^žÍœ=û•w2ϳ(Ê·û­·0´£’+D²0±D.’Ê„ uÆ@‡A¤2L&T„‹¥r‘@ÀmÄ„L.ž)›&U‡K¢Jq´Rò0 +®U+%ñÓ¤¯¨ä±Ó$b ¸}\¤êÏ'Op[H¿õŒg¼8׎gÌB,E2~/C{I’ÀqÜï#Y¿—¥½ ²SD`Àãa(4$¹Ñ^/IŒà8…Üi/‹ìwÔ>ì ‰k¹‹34ÉøÈ‘{#N—Ç3|èB*C¬R¨ — ¤i”BªVSÇ¡æP2ÆÙˆ5Ó$³"d‰({3$\þűôßì—TS×À¿QúƒÅ–’àm§â„$@Ó_kT¬$’€<Å2«›‘5ŒvUçY·µžítûc§R‹Ò£®Nœ;[êPçŽrVPªÝé:S¨pÀBŒhHHùäÝÝ—hÕµâØ¡y§ì~Îç\îý¾wÏá~¿÷å¾7-\¬¾êCÓ±Q¡ßÆøð´éQLÉ^*.b{ëEš@ ¨Õê¸Ühƒ¡‡œn§¥ße%'KÛæõôÐ~¯ÛeS*e"QºÉdf{ãÓÐô-™AGZ¼K_61C4áã”Òëù5mÎŽkÀy€‹Ç¤Àü¸ñøq§ÏÔOþB ÷ Ïç“RÉu­LÕ8 ÷«ZØF4´dÄË—ìv¶—B !r8‰D‚_Þ–H2/ò ö\ùârÇ—}—½Ø.³ÏÜéÅâN—ÙêãÈ°ÍŠÏÇ‹þäÍйbtlú½ +Õæ¡Ãyè6÷.q¼VÉøAú°¸·Z¶ö™8<ý±XÞ‰S§ØÎD„ i„7ãõÏè#jTý4:¬@GÕè*Æ#Ê¡>þQÍ´áNøìŸÔè/…¦½ò2}Zž.mµ.*K¡ÊTY*U.Ç•…«+„ê’„g”ÓwU•²‰HµZ—m0ÔâáЀÓí´ô»¬DâdéqÛ¼žÚïu»lJ¥L$J7™Ìloü@‡ÍPã¼Nÿú-ô‹ŸÓvûíàD ôz>@ @À€F€³ãÚpà"Àq)pðÂãÇ>S?¹+$ŒCŸÏ'-¤’êZ™ªqîWµ°hhȈ—+.Ùíl/…@ Bäp\qH$üòöâÂ…]ÍŸ1¡èú5ÔçD×{ѵ^OÏ µÛ×eë5w†;Ãvò¸]íEjž.‹F#Ë‹!Lèð ¼ù‰óÃب_¿i;~ „‹ýÑŽŒlÎ(,K¥ÊS©2î” Bm*/ÅAÁÊWÅ•BÍOĹk’yOÌÀsã¹|üúBT_„Žªƒræöç÷ç(‚p›`Zg¤ªÑßV9÷¾¨y~&žÃ;yòÛ™ˆôÍ=Ök¤åÐUéhÿrô¾ý.>˜‹ÜïŠ0Ã<ßyX…NP–ƒŠ(§œ©ˆZ“’ÓÔq,Ð̧ÊSTš¹Ï«¢ví.a;‘&jµ:.7Ú`¨Åá§ÛiéwY‰ÄÉÒã¶y==´ßëvÙ”J™H”n2™ÙÞø‘àÖ±I‡OR:4¦ÿ§Ã”Òëù5mÎŽkÀy€‹Ç¤ÀÁ +wúLýd.0.}>Ÿ´J¨heªÆi¸_ÕÂ6r   ¿EÈ—ìv¶—B !r8‰D‚_Þ²¥RËç͈Žõ^µÙ‚W¯ø{lƒÝÝ^sç KWX_—ùK‡í6äq»:Ú‹Ô*<],F¶WC˜:„¿hþ³;ÕÛ²i~ R$3Öl®Ú˜¦^Ÿ¢Ö¤äkRó7¤`5¡öfGŽS¯¤®Ýš!_Ä{œ‹çÆFGÛ!Au…Áƒ9#Õ²Ñjùè^Å£ì™àè^6x ý¹àêÛYëž›‰§ÇÄòNžú+Û™ˆ th‡Y?Ý·|ì7"ÿž%c5 +Æ} +ÿ>ùWT„»Õ¡ßS £ªŽ=Ë5ÓòµBªTÈe=.Ù|\šq,Ø0Ÿ*OÍýa‚X1íß®g; ‘&jµ:.7Ú`¨Åá§ÛiéwY‰ÄÉÒã¶y==´ßëvÙ”J™H”n2™ÙÞø‘„FwŸô—ÍD ôz>@ @À€F€³ãÚpà"Àq)pðÂãÇ>S?¹ #ŒCŸÏ'-¤’êZ™ªqîWµ°hhȈ—+.Ùíl/…@ Bä¸âpdfâ·PÉåÝÿú§±¾~»VWYRò³­[¼Q»M§{÷îöšº-Ãvn}]f¯¹;d³"ÛÕÑ^¤Váéb±Øh4²½ÂöÒÇ>@UUÈq•íÿ%¢ŒŒm©Ø†¨ù )Þ,¤Ê…ªõ)ùšÔ|MJþ†¯S“¢ÖÌ/,K-®É_Jœù½xnìÃÓ?Ú™‰ +‚ï)†Þ• Uˇ«³‡«eÃLGê„|7{¨Z6R-Ç·¡#JgÕ²u âñô¸™qÿ°íLDƒh¦c97ôÎÒÁ·Ò«–ÜÊ•lqbGpVq»7ÊkÛ½¬T—Fé„…¥µ&µà^õºÃ‚ )T¹@¹.ñ©ìß|[Ãv&"M Ôju\n´ÁP‹‡CN·ÓÒﲉ“¥Çmózzè³_¶1m]gî²DP‰bœhZPˆßBgµ öR7! ×NâŒDc“pd´©Ù‡¨ß·¤{ 1/R·¤eo `c)0 Ckª½å + b Áo-ØßlsïŽaÑÖ©±·È½WŠÎO_ùû¹:Ïÿ9çžsãá`À«Õ’2Y‰Ûíá{âsÂÖc-ù\[ ³ï¼Íüüg̃Ov'“Ý.h˜p ¥Ôû.€»=* І’'ÈïëÈhz˜T,Ó´ªÒT Ð 0‘¬1˜®jÛr0 +0€^ „j͸ÏÇw* ƒÁ`¸Ã¿èW*Ð)Œ§NÎÿñ¿~ë­—JžßSPð•}…{…‰ä;¶¦ûzÎ[ð=œ¿OÏzžtú¼lh%0=U­×¡p¹\NQßÙ`ž"™o}›=vŒ½û¾‡Â)±X³í2ZP"ENí%iÕk2½Yd°¤‘Ñ*ªµIÕgöïþrŠÍÍÚẢdoW$:4Qu¨]ÿKÉÎõVu¼CÍvêV®?¯ØƒÂwï~ð¾‹o'¸ƒÙ¾z£×>üž†I÷™˜ìv@;À$À€`(¥†\Aô¨€@Jž ¿¯ £bR±LÓªJS1@7ÀD²jÄ`ºªmËIÀ(Àz%ª5ã>ß©`0 ƒáŽÅÅE…@{üÄÂø¸ÿÞ=Çw¯V:%ܽëK{÷¾ÞØèêé™ÿóŸh·;:mn.<ë {fèYOÔçeC+é©j½…ËårŠ¢øÎó”ÀD×ÙJ#“•ÅÞéã{,œÛˆ5Û.£%RäÔ^’V½&Ó›EK­¢š&éÉsEûrPlnÖ×%{»"Ñ¡‰:ȨCJ­d¼dßÖ®Þ(·Þ‹Â +„.—‹o'8%Á²»½k?:¹úB¤åè–3È·ò4Ö%ÿCÆZ5ìMí7”úº¢ª&™Ñ*5˜Å‹8mÕ*êŦ‹bÝ«û÷úBÓëgøö€k‰Í††Æìì]]¨Y[ +.Í­æ±°2¥PÐ-0ñp0àÕjI™¬Äíöð=ñ9…™›e$R¶°™œ|²;˜ìv@;À$À€`(¥†\Aô¨€@Jž ¿¯ ³yaR°LÓªJS1@7ÀD²jÄ`ºªmËIÀ(Àz%ª5ã>ß©`0 ƒáÿ¢_©P¢Ãùò+÷§þÆ$ÿ˜ñüâÆò#¯è5êz{£Ÿ,­ÝŸ »Ýô¬g[aÏ ºF}^6´˜žªÖëP¸\.§(Šïl0O ±{î,ûÌ3Lÿïø +§Ä6bͶËhA‰9µ6‰é¢ToëÍ Q +­¢š&ÉÉsEÂ}9(67k‡ëŠ’½]‘èÐDdÔ¡N¡õV2Þ¦foiWoœ°ÞƒÂwíÚíâÛ Î`Ð'Ûœ¾ýð‡G¢×^Œ´”m9ƒ|+OmÝöb­È½Óï4¿ðrEaµMf´J f±Á"N]2¤Šz±é¢Dw~¡¬¶*¾}àšDb³¡¡1;{gWW'jFÖ–‚Ks+y,¬L)ô†C L< xµZR&+q»=|O|nñz¹œ).bîÝÛj3ÿï Lv» ``À 0”RÃ.Š zT@  %Oß×?ñÌ0c™¦U•¦b€n€‰dÕˆÁtUÛ–“€Q€1€P­÷ùøNƒÁ`0 wøý~…R‰oÇ¥îÑÑdWß©`0 ƒáŽEÿ¢B©D‡·²ÒC3Ô_QO"¼:ø«_4ê½nòCEÂîizÆMÏ΄=ÿRÄ;φ‚é©j½…ËårŠ¢øÎó”Àln².0ãæ{,œÛˆ5Û.£%RæÔÚ$¦ ½Yd°¤‘Ñ*ªi’œÜãÌ#Jd!Ò`nÄJ$Ï0š 5½)¿¤B”ܲ*‘ñ D³çÙ'7dàØ5«W ÿZºK;Tó-ªp\å’ª{ŒÏ„–N¢í*ô®væ­V¿ð2{zzø®Dªàâëë=ÖôzC¨©xá÷χÿôƒpËöP«2ÜzÑ>ksü m*ôg]Gåsùòom,¯Æ-a—ívWµXoÊý¶è‰ŸTø.Dª‰FcµµuééiÝÝ]xšõú½S3>'‘¸R²~W€æ~ŸK«UJ¥…v;Ã÷ÂOñ¿6‡Û¼™“ †ánO}9 õõB€v€ €+À`R‡†hŠê( +_P²„Ù½}ý+žáAÜ ‹Ê y€ñxר庖ÐJÁ(À%üH£R¹Ý|§B !ux<…BoÞŠår;}Ï„n\{ïØ;%jõË¥¥ÿ¶ Ù@ØíúÃ` ƒ“ >†]NIJ>›Í¨×áp™LFÓ4ßÙ¸è"2™¸5ßDgÎ|ùG™G˜ÈB¤Á܈7”Hža4j$zS~I…(¹eU"ãA‰f_nÎú ›ùõUg_U ¿–E;Ôáfe¨EjU…[”÷©škVηlç«P—ÎßôRÅÖž!X,¾+‘"«ë#züµ_¸õfñüï6…šŠÅ™o‰'üãów¶EiUãêuø®xë:ã¡åÕâeûu»k•¢]5bÝþܵÏ@å#Ï…H9Ñh¬¶¶.==­»» C³^¿wjÆç$WJÖï +°ÓÜbÀïsiµJ©´Ðngø^ø_=Üÿ5üzum~ž+(@†Cÿ›ÿâêë…í#V€Á¤ ÐÕP¾ d ³{ûúW4CB2nƒEå†< Àx¼kÔÀr]Kh¥`à€ G¥s»ùN…@ Bêðx< +…ß¼+¶Ø/^Ä3¡ëžþÇ+öî©Û¿âÃ!`Ãnk¿` ƒ“ >†]NIJ>›Í¨×áp™LFÓ4ßÙ" hß^$p½§ùþ))%²i07â %’g͆‰Þ”_R!JnY•ÈxP¢Þ—›³^€c3W?ñá+rô·²èaU¸ås*—¼= 5+#-J®S…Nè½MÛö+Öáp@ð÷ ß•H)“ÓüÍ+7_œã¹PÓ÷ÿo­î¯dÛ¼}±UŽëŽÚ´ñÅ'¿(,¯~`Ëðü½oá®íú¹DûÓܬ ð³êÝ|× ÕD£±ÚÚºôô´îî.< ÍzýÞ©Ÿ“H\)Y¿+ÀNs‹¿Ï¥Õ*¥ÒB»á{áõp÷œ»Üh“ ‰DÈnç C}½ ``À +0˜Ô!€aš¢zŠ€Â”,avo_ÿʤFøÜ ‹Ê y€ñxר庖ÐJÁ(À%9@ŽJ=ævó +@ „Ôáñxä +¾y+–o±_¸€gÂׯ9F†Oï:}âøÕÑÏÕ¹+SAÆq‹aŒœŒŸ„]NIJ>›Í¨×áp™LFÓ4ßÙ¸PvsèÔû÷8óˆYˆ4˜ñ†É3ŒæCDoÊ/©%·¬Jd<(ÑìË]·>Ç +ÓV}UŽþ±ÛkSFÛÕ±vM´MµØ¦Š,¹¸d|¾CÍV£ww"Kùæ—L[ÖâpAæ‹ÅÂw%R‡8¼À"rŸ{/òÖ¶ØcÍÅÑ .N¼\­Ê{]¸c¤u{¶MkWq‡5è/¥üöá™’jñ²Íºky•xWmzï†uyPuèe¾+‘j¢ÑXmm]zzZww†f½~ïÔŒÏI$®”¬ß`§¹Å€ßçÒj•Ri¡ÝÎð½ðS +7u%¶i‹¹O&î õõB€v€ €+À`R‡†hŠê( +_P²„Ù½}ý+›! 7ƒÁ¢rC€`<Þ5j`¹®%´R0 +p @£R¹Ý|§B !ux<¹BoÞŠ›íÎã™ù×}cWþyë·}:ç¼rk’ 2Ž[ `Øàdü$ìr"–õÙlF½‡Ëd2š¦ùΆð¸07ÇUTrù"ôÁ¾JJ‰,DÌxC‰äFs¡F¢7å—Tˆ’[V%2”hö>»öéoàØœô¯}ôÚVtæÇè¤V£N êÜÁu¨>o§Ñ £šøÇN½mÛ+·¬Åá‚ÌL‹ÅÂw%R—x‰8Ï¢N%úC!ê؆ÞÞ‰ŽìÀuã:Ô±¸ªXû’ø$1ÄÕ‹VÿØ;ZÔS>Úº}ŸI¬5åëïx›îN–VŠK+E†±Ñ,Uîyú;߃Æ×MüV!õD£±ÚÚºôô´îî.< ÍzýÞ©Ÿ“H\)Y¿+ÀNs‹¿Ï¥Õ*¥ÒB»á{᧷›ÓiѶmèÓO¸‡úC}½ ``À +0˜Ô!€aš¢zŠ€Â”,avo_ÿ +çEx07ƒÁ¢rC€`<Þ5j`¹®%´R0 +p @Žï"Tê1·›ïT@ ¤Ç#W(ðÍ[±B~ùüÇqóׯ…®Lq×<ÑëWçœSÆœdðñ®‰aØåD,ë³ÙŒz—Éd4Mó á1[\àÎ}ŒÞ?…nÜx¸Ç™G”ÈB¤Á܈7”Hža4j$zS~I…(¹¥•bctÇÞÜì§Òpìú5«‡~%G}?B'u¨SŽªÑ‘è¨fÉ¥!>y»Yš<©Gÿe¿Üc›ºÎþ]^!8!Äס!LÛ:Dâ¡VKfÓ˜Pì<Ûجf ¨Â 8xsöÇЦm ñÒVUÕ¤5Y¦Ú-ÿlóxt]qR‰„éV2’áø‘ØÖ6cDZɃøqïŽc´G°à«¢óËOçžs¯Näïûν÷Ü¿3ún…n3MÏËgôÑß™ÎD¦˜_^ÿé‹¿/O¼#¤ßßIX—LΙú¬‚þ –þ°&)ꜭ¥?@ê¹vnˆüC-}Nå8SóýÖWjQ±ô¼TQ”:_´DÓÄGeÝ}§;,¬o-•×¯EF¼ý»CL& âñ„ÁÐÂbe›Íh8=éúGÆn,v± =áÐ …B&–ÚíN¦þó‡zØRÓÓÔÕ«Tw751A=¼öhM& `à:@@oZ¯\°ÄE)è…Â&9–®îE“Ž;‘ˆT£-¸0˜¬qy¡ª¥ì! `@ P(¯ºéõ2 +ƒÁ`0˜ÌáóùÄ Ú¼UHÄÃ}7hŠšñݾëtÞóŒÎxÝ“£®°Óq9Q;oj8ãqÓ¡PÀfÓ)ëÐt‘HdµZ™ŽóÂ@Q“w©ñq:eú—d”èl´ÕxÝP\q®Î(Ð6ó•úU7½êFž®EXS_ÌYŸæ¾”»¢}¯ÀýîÎ['¤ÿüùÖ/·Ÿ:O~AשdkûŶÁcåC'·9ßÙñ×C›·~#M_“ÏùøoŸ0‰ŒAQs‡ñáÏ>ûQÙ§ëú~òšõ˜´ÿèëG_:¾Í~ú ׯ¶»~Yá8ý†ãÔ6û©mŽÓÉÖvB:t\:p¬|ðg[n=ÿSI“±TÑÀUêyJ=*J‰JÏ{l±vàï:ÀÓ4q5M|íA~ÕÞ¯¿Z»ôäo0œ†Œ' †+ÛlîDÃéIÐ?2pc±‹e(è ‡Æ¨X8ð(2¡°Ônw2½ðŸ/Tò‰–„ž{®Q ŠŠDÐV Ýo®?Z“‰è¸ÐЛÖ+׬q@ +z¡°IŽ¥«{‘ãÄ<™;‘ˆT£-¸0˜¬qy¡ª¥ì! `@ P(¯ºéõ2 +ƒÁ`0˜ÌáóùÄ Ú¼UHÄÃ}7èDlæ¶wÂ1<á´‡ŽÇq9Q;ãq£ÝfÀfÓ)ëÐt‘HdµZ™Žó‚ðè× õÔŸ2_a¢³ÑVãtCqŹ:£@ÛÌWêKT ÜôªyºÃÂÚ}%dÑ*4— /{Ùú¼¬‚Ü$k'u’ýG]»zÅÚÜ,Nn™“µ6wÅ×ò²Ø«–/]‚fI’Ÿ\ºÄt&2Äüêú³ù'?@^Ö” +vöòd»jÉZÎI™“”Lµ¬¹«¬d‡³rYaör~q¾bo±ö àAQžX5TÐû5ÕóÔø5o½\R?øñ&³ÀñxÂ`ha±²ÍæN4œžôý#ã7»X†‚žphŒŠ…ƒB! +Kív'Ó ?£P´èa÷ ïR­ÉDt \èèMë€kV‚¸ ½PØ$ÇÒÕ½ˆAaÒs'‘j´Å“U#./Tµ”=ô ˆ +åU7½^¦CÁ`0 “9|>ŸX"A›· +‰x¸ïˆÍÜöN8†ÃNÇ“Œ¸œ¨ñ¸éP(`³é”uhºH$²Z­LGƒyÑ žñkæ«Jt6Új<‚n(®8Wgh›ùJ}‰ª›^u#OwXX³¯¸ ˆÿ7’sÉba:"Aß_]¿ýã_`YÎ3'm5geåžõ¦RM•ãQS5š¯#ê¤úꮦ™WûÖËE¨ß¯b4 ' †+ÛlîDÃéIÐ?2pc±‹e(è ‡Æ¨X8ð(2¡°Ônw2½ð€¢ég~‰jM& `à:@@oZ¯\°ÄE)èÙÈ&9–®îÅŒ“–;‘ˆT£-¸0˜¬qy¡ª¥ì! `@ P(¯ºéõ2 +ƒÁ`0˜ÌáóùÄ Ú¼UHÄÃ}7èDlúöXÈ>v8".'2ìt|ÉÔÉ›…6›NY‡¦‹D"«ÕÊt4˜*ž ¯^¥ÏŸ§ƒA¦KF‰ÎF[GÐ ÅçêŒm3_©/Q5pÓ«näé k÷sŠV¡¹Ë—.‘|k;-ë”› +dbÃHDªÑ\LV¸¼PÕRöÐ0 (”WÝôz™ƒÁ`0Læðù|±mÞ¶K¾mÿüstföß¾)—sjttjtdjÄq9ÃNÇ\kŸÓ‘rÆë¡CÁ€íÖ›Ê:4]$Y­V¦£Á¼(T]]XH[º˜þ)%:m5A7Wœ«3 +´Í|¥¾DÕÀMï®FvßÆ‚õ,4·hõÊ®–%Îi&ÏV¿W9Ñ&‹´Ëî¶Éî¶WÎ;‰Î´Ë'Úäí²©3Õ ó®¡Så*~ÞÜwi±\b:ƒ¢) +b·­_ïøïqnè½íòH[*c©¤Íwæúm•á¶Êêÿ¾*ö'•çííêb6¬ZZ¦þæ÷L¥»šøªý\•ž·`ÕÔ%» ” r8 —W1‡L' †+ÛlîDÃéIÐ?2pc±‹e(è ‡Æ¨X8ð(2¡°Ônw2½ðŸ/TÒă.MߺE—m¡ÊÊh›ºêéКL$@ÀÿØ/ÿ˜(Ò3Ž?£æ” ",Õm­›VàH÷Nã®éjÂΈûØFîðú‡ Jƒ[ÿ²µi“þ×äΘW“+çá]Ópâ©@R"äbLF(pÐeYØÝ«Ë.Û]qwÙóöÖ´‘»Û–îDó~øf˜÷yÏ÷yßyßw`À0TƒC,Eu¨€Z^PòzzûV5KB2æUµ!  `\¨ÕŸªj Y(PHifÌé;@ éƒã8¥B‰7oo+÷[ïÝÃ=±ùGQ—#ÊqîëˆËœ ÌØü¶é +9ÈçõLMÕiq¸\.gYVìl¯ +¢ƒ‡Ðºuè¯×_à,óòYŠœn>ƒ'”L‘UÓ\dh(Ô ôu²äª:!{§©èÈ{»ó¶eâØíÙëïýþ ºs uU£kZô©}ªEš•J<ú³uÐÀ»ž+tݾ-8<'7÷ÖíÛb;‘N–‡Ø#}r™÷¡Ï4‚'ØœkØ¥oó-a~çzúÛ»KW5 {¿Ö¼¥ÝYûþU' õF™Þ¸'eÕ*ëe?ÿe¡¾îõ¬ï­fÄ6!ÝÄbñÆÆS™™¸\t{ÝöÏÑjÉçuø}.>ê÷zº¸¸Äjµ‰=ðÿïðˆç…ošðYãÇÆøüÝh×.tÿ~âÙób0™$f€ €a À@R  °Õ   +/(¹’¼žÞ¾UN’ðÝ̪jC>@À¸P5ª?UÕ²P00 + Ò̘Ó)v*@ ÒÇq +¥oÞÞV*¦YVè +ü =z„<óÈíŽ?àÂÇûL`Ææ·MÿG¸r:Ï뙚<ªÓâp¹\Î& „ÿ>âÿÔÎÿæ·üÔäóe^b"K‘ÓÍgð„’)²jš‹ …:c¾N–\U'd5ME‡íÞòÃ,+ÉX7øk%ºaàÛ+¢—ÔQ35ÓÑKßYPÜLã×Ðç•.”ýbßž“#¹uë–ØN¤aˆñ®{‘¶ÒÈ?Ž¶•E/3˦1ÑKÌJÇ„ÁÏØ%šÿ¨ý¥2|‰iÚ¿ Ö¯yS³³ÖTR}²P{¼@gLQ2¬Êz™¡a¾>?{+Ð4#¶ é&‹76žÊÌÌèììÀÍà¢Ûë¶/x戈VK>¯ÃïsñQ¿×ãÐhÔÅÅ%V«MìŸ&ž®›^/ßÒ‚Îã9îÅVRƒÉ$0L X’j`€¥¨nPxAÉ•äõôö­bj„ä̪jC>@À¸P5ª?UÕ²P00 + Ò̘Ó)v*@ ÒÇq +¥oÞJ°ŒàžÇ=ý»ó>k¿{wæî]ÏäW!ÇÜâ¬=0cKÈo›Æ×Ó|^ÏÔäQ‡Ëår–eÅΆðŠÀóq~vŽ¢@@ìÿ%­D–"§›Ïà %SdÕ4 +uÆ},¹ªNÈjšŠ{]ºc#ŽÍÞ°Öò+º^»Â„/–…[Ô¡6u¸õ[j-´–ǯ0è3w¾ô½}[qøæÉÍ›·Åv"ÝÄæî†þøÓàJBKí4VH°ˆ~Ö®ÄйÔR»Ì kÜùþí°ž’k·×šJªOjèŒ)J†UY/34ìÑ×çgošfÄ6 ÝÄbñÆÆS™™¸\t{ÝöÏÑjÉçuø}.>ê÷zº¸¸Äjµ‰=ðÓŸøYBÓÓüW“|0Äÿ·÷90˜L3ÀÀ0€` ©†XŠêP…”\I^OoßêfGHÂ|  ª6ätŒ U£úSU-! #£ +)ÍŒ9b§B !}p§Pâ]Ї9''¢ÿGçÏëËÕªýû{ßÔÓê®Û#Ü×ñ‡Ûm~Ût`æé5ät Ÿ×35yT§Åár¹œeY±³!¼j,Ÿeâ/pœyI‰,EN7ŸÁJ¦Èªi.24êŒú:YrU(x§©¨¢6_º3 Çf¯_{ç¬]¯Œ^aB-t¨Ul+µá›gÄj£Ãmjþ2ƒ:´óJ¤Bøæœ/¾¸)¶é&6ûeðÂÁàòPKÙ²cê`k9¾YaÚ²oø)jSG±oW+¢fúìÏvÁkkåG¶×šÞ¨:Y¨7ÊôÆ=)«†ehÀ¯íΖM3bnb±xcã©ÌÌŒÎÎÜ .º½nû‚gŽˆhµäó:ü>õ{=F]\\bµÚÄøé_þYÑdz/%“I`˜° $Õ ÀKQÝ* ð‚’+Éëéí[¥¼©™TÕ†|€.€q¡jTªª%d¡`` ¤43ætŠ +@ „ôÁqœB‰wPQZÊMM=v¹šëŽoÚ¸1;{ÓÎÛì{ë“–‹K.'ÿðÁcû´ß6˜±áëcûLÈé@>¯gjò¨N‹Ãår9˲bgCxUÀ'û,CÁ'Ï}’y™‰,EN7ŸÁJ¦Èªi.24êŒú:YrU(¨i*ª8–¿uÇF»iú;g•èóÊØe&ÜB‡ZÕ¡Öò°p}FáVáQ¸M3«ÑUÍÂŲúŸü‡goÞ|ãÆM±H<ÿt|Åf¿|ráPðýá–rlKð©E+M-¿€53¨½"~™þúGðÚù‘íµ¦’ª“…z£LoÜ“²jX†üÚîl)ÐjF\ÒO,ol<•™™ÑÙÙ›ÁE·×m_ðÌ­–|^‡ßçâ£~¯Ç¡Ñ¨‹‹K¬V›Ø?-ð‡Mø´--ñV+²ÙP,*t?ÿ_2˜L3ÀÀ0€` ©†XŠêP…”\I^OoßjgHøNæUµ!  `\¨ÕŸªj Y(ÀG)ÍŒ9b§B !}pÜ…B‰7oÚ²²Zÿáš«®¨Ø¼)«úÈá+ç>ìjo Î͆ŽÀ¿Ù¯¾˜¦Ò,~®®3Xh,qšu—ĉƒ¥TÖÎf´<4> ô^l)µUDv&@e2[²¾˜¬û>¾DÁyPã›Ý ®šÙµÐMf²Û…k-mí‹“Ò?´B+m¹w¿öºw»…Þ"ÃöfÍýùËõûÎ=ç|çüν¹Åéˆ9¢Ž Ñ:áqSápÐfk×´¢p™LfµZ¹î†Ç{2±J]¸@?F~÷×µ”ɵäàÀEôB‰+:$ºó’¶®:M×á¶nñ¦¤o2ˆÏ^‡D5(¶rïîéKÔ=mz”H +ÃøfT¾½u]™º¡¤n«"CŸPx•@ðàá#®•(5Ò.Küê‰7WŽ½¹Öüo}6Õí?LÞ ¨[*òfËeâ |¸ë¨ªæœñˆÎÀ6¯\j{ÄúÞ:mOm•pœàZ€R#^ïëë///3™î¢m|% +¸ÂA÷¦Œ„<ˆ,wóykö(–#ØÏÝæ¿i,%jaÓšY¢ØËÛºì3ÚJž¢#x×z¢™Š†‚µZ)•6Øí®ü’‚|ù’:s†:}†ôz¶—Ao4 +Fæ,f€IVNLX1ì>€0ôAÙ'¬~<>±³}ñ`ÁR,¦ÐékÆæ2SÞ›M33³rN<õz¹n…âZ‰R#í²$®žxsåXâZsVeQé’7ê–Š¼Ùr™8î:ªª9g<¢3HŠÎ‹¡¾·NÛS+Ž\ Pj¤Óë}}ýååe&Ó]´¯BW8è~WFBžë<#ÃBŒ{ÈFÏ¢w‹z²8¼“[QM +•·‘E¥cé«hª­'a™éÖuˆF|d* +zÔj¥TÚ`·;¸~ðK +Òù‚:ú))‘P¶gÙ=ù®ôF£``À`˜dåÀ4€Ãî(C”}ÂêÇã;ÞBXŠÅ:}-ÀÀ\fjØ“bS£iÆ``@ ‰§^/×­ðàÁƒnwooo×ÿÞ¬DÚ™N'7÷›ßlv¿ïÿüý÷î¾`ækNg²[I!…RH!…F8ŽçååÁámQQÞ{¾y£nåÊ©“§?U°©®îç[¶ž;ò¦ìrÊn7cïõÛàÊõÛØ[Q[ãXÏÕ«f ÜÆY=—{’ÝM +÷ ÔXL«¯W3Òµ3ÝÉ®eT‰ÈÍ·ÁjzÞØêM9KrËžË,¯I0«|mæÝŒ/Z²ª7Ì0/ÿƤ)cÁw—¿xîGs´ÎŠh{‰ÐbZMRk±Øj[±Ö…–b¹‹µ—h‡,Ԯšï<îã'L8vâx²•5¨ø£ _vÏ^4 +{ +oku·hºbúÊGŒî3k¿·È{±ÍOMEfY_Ù<³²6{ñ‘œ×GS›×ʺ¬%ë²KW=-a˜9Ù:Œ6%Öظ>-mLgçAxxÚO|Ã#ô;B'r‹a* j*«iPU˜hÄ/KÞX4 ¯¨Œ DD¯$вäÓ-cŒ,ùÃ,Á]À0GÀº Ee¿À“<ëcMa  ª„`KäižÁ9Æ-ð`é…E0V• dÔ`Ÿˆa_‘}R˜æ*†9 @U`÷P0Ïx ˆw ‹ñÁŠ&!`ü†‚J$ÁhE&šå!QįiÐ)îJÄƼވv9‡G%Œ)Ahgq.ä†6eÑ[B|¨_ Ôá{=Häƒûˆ¨§† +!#\!5lA/p„˜ÐDK¨”ØM¸@|Ð +ƒªâm,ã†ø`•üñuÁ!)T¥kÃRYÔ6`ÉÆ‹8º¼Ñ*ƒ¼>QOM‚A|p}…§@Cˆ#BÙ•ØUd= }L®Ä’¸ùæ€eü>‡ÅbÊÍi³Ù“ýâ.p\›=[ËÍQúÕÏÀÚÔ”Ð>„zº€Ð„º?‘g:PÁp¡|d€”ôŒGºÞ9õ9÷•Â½áeÙü*ë4„Ž t]Ÿšáô§M-Á3t¡«ÍEèQÌ|ÍéLv+"’RH!…R}àn…džߋì^ ½8Kj)’ÚL’.Ñ»DÓÓ·tFÚ0¥Ã¬*“öbMù“Ñãåñg~ð„µ>†UQ3ýóú/+ë²–6æ”®þÚØt„aX’…u(J¬±q}ZÚ˜Î΃ð(ð´Ÿ ø†G2èw0Aƒ>Eؽä@(à +œñûA1LE#^0 =ý.çM·« ¹#¢—c<^zÈï‚G'%‘–ÂDóà6Št/¿À¯“ô x¿„à(K~I ÁÝçã[·ÍG ±A·,ù.P¤†tàÂÜ\ç<Ì… yhrˆ"8j Å0æMØ)-àÓ{ +ê{ˆ íø- ˆjC"—¿=5}¬r&‚»úhjIJ!E ¸\}¸»ÏG ýNhŠÿ¿¯Í7G2~ŸÃb1åæδÙìÉ~ñG8®Î~R›‘£ |¶_RkSSBûêEèBgêþDžEèw.œPiA¡Ã~ VðÞÞwßxãÏ^Ùu¸uoßùóJЧ1A…ðȸ;êq)¸Kõš €±ãú5SþÇÚU½1·f»±dÕ´ŒÉiðaœ”ö…îø®vj¹ö‡ÅÚþí€Yí0ÇÚXl_œí:Uà~³v D;T¦½½”j[¸vÎ$p?!ýÄñKvøe­½XÛõ„¶ß¤½º‹‹†¤®[G\·ƒeÚQ«x`Ѻ9_Ež¬œZóCãòïçVÖg+ê²*jÿ‡0Äø5³ª>ËÚ½¬1wUSnéš)_0ÌœìþGŠkl\Ÿ–6¦³ó < +<í§¾á‘ œOú¨¡®µkWçÏË+^XhÆŠ1SіͺNþåõ×÷-±V.X\VÒÔÜØÕõæ¥÷ξ°ó§å‹mÙ¼éÒ¥îh”Ó´M9~ñÂÏ + +ò×ÕÞ¸ñ¾¦±÷­ššÕ æϳXÌ››7¼uä0ËàPšÛÑ÷Ú«-kÖ¬,..À°¢†úçþxø·¡®ªì‰ã+ª—ÎúikãúÚ¶¶_ÿûêy9Ò´¨ÛeÛ½ë—e¥%74\ùð|‹ aº»ûím[›ÍØÂÒE¦gW¯xù¥ï_<ÛóÁ?öüæ¥çŸÿÉÅsÄßNݱc{Ëž_õõ} ©¼¦r¤çÖþöݦâ æ-[Z±¾±~oë+½×ÿÃ~™G5uåqü¦¨Q¬ÚÎÑ*†$dd¯ K€„EÂæŠÕ"  ÄeÔŽ»è¸eÅ¡!: 8 .€.È"‘%Á,dƒ„„-·ìœãÔÚ=9vò9ß?Þ»ïÝ÷»¿ßý½û»÷áà€Båð°äÁƒ;tú:äï¹ »P››k““6mOI|ü°øAÙíýûvïÙ³½¦ c¤›Ývúô‘Äĸëײ$¢ŽÊÇ%;¶oÝ÷ÝΪ'÷Ä#ý¥%Û“ŽÙÏj­è¹{'ocTXü–˜êªRõõ÷îÝÎ`cµ5\ÏÍ^èçêêäééº*=ýtW×3ô›ý|×®d2Ù%e[BÛóZt´•ËE™™i~4o²Ë’åA~ß&nλž%u@(ï`5že_¹*ÐÙe1Ń¾.ç_ßËú8ý2^Öå‹!ÁAQ‘aÈ4¬©.Œ CAë“rE"ö…´SkׯX˜—™ÞΪWöóû¤œ_L$±°C*îR I…=Tª+Oliiç¼ÿ°¨::U$hj +›Ÿ¿jx×/Ðbb°œ €2Š(þU•P +@“ €#À ‚¢‹Õ+¸Yø»»¦æmz{}i&äÐ0:k˜»¿5k¯T„5Ô€Ž_’Ýê;;ÇÛ5jÔ¨Q£F͇ƒÍáØØ ]ðtrf³Æ¶ŽJ9ŸÇïìì|Þò²é™‚Ær)ì“Àäó Ÿ \(¡sz÷ECý[[ÔÝÂÒ¢ªªrœQó‡A©„þªÉ“U7òÞù$ó1300~¨ù‹§®K&­Š%ù‡ãü"Ìia¸_z@ÇÇ×'- „cgNF}¿Ò™øx§,Z³|à*¼àÓ<à9$÷ÿR¦Sa¶¼Äg¸®³þuÿlúô7þ=Þ‘ø`ü'¿¸Õ0 OXÂtxÑ^ ÀóoD째yŒ>J§ÀËÞðf â<õ/Vš˜…~†ë·-XM …ã|Ãæù†á^×OS>Ï/ç[MX³…H ýjÂT@&»kÆáá:}ƒ¶¶“™nûe|!Ÿ%êiÿ™Ä©¸«_Æåu·^;èá=YCc‚æ$ÍÏõõW¬ ¥¥ G¬ûlÚ4,VwÁRpp 3ëbÎÕL²öd-i~FÆY…B‚L´´ÔúѼ'LÐ07Ÿwûöµ‘!1ãLªÑ-­OŒ ìmâž=«”–”䇮Yiffbd4{öìffÆ‘Qa½½ÜýöèëëéèLA¶¬¬HAË®0Óe2!ú~]Ýc?š–––‰píZ„C}}¼óçOY[[M:ÅÐp6gæééž~qçN^lì²›óYƉ–¦ªûÿêêº4>>®®®­HÏ›*׳ZsÒ$,vºƒ½µ£ƒ-Í×'#ƒ!sPÆ*•¢K—ΉxŠµkV°ZõŠŠ²Å‹í–,qdfg\ÉÎð§y{Q + sÑ£—œ¶;/rغusMÕýË?¤¹8/^X^zkx¸O¥êËÏcz{º/ò+/»%ïãž>ut®ñÒ|BnN&„24ÚÀßø-ÑUU¥{÷ìÐÓÃêêêðæn®NÇŽíëèx +¡¢ººÜÓË}âDM;»…wïä!£‰ )iÓ´i:X=] ‹ù_;Ú'ÄÇ4Ô?Toߺ¼j¹‰‰±Á,##C¼¹YlLø³§|+%eë_è#ëii§P(.Ê·°$Òx/Y,VÓÆh:³±¶Z|úä‘æ¦'ƒÊž>)G(xòämÉ£’ +{:¨TW<žØÒÒ:žIÿÁQ½x¡"TÆƪ¦§£+Ý»WSZL €34P@Å¿ªJ¨Â`rpTPt±z7 ßÔ¼Ao¯£/Í€Fg s÷·fí•Š0 €ZБàK²[}gçx»ò\.R©]ô.djÔ¨ùH¿ú{{{y<žD"ïÕEš·ÂáplmmÑæÍöÏ ö …â®NA{»ˆÍ–twK»ºzZš»ëëص5/ëëx ü†Fn}=’¤£])ì¹y% gfŠº“H¤ÊÊÊñöFÍ•¬†‡«,-à½ûã=–ÊÀàÀ¦ØôCÍÆJ 3óY‹£¬2¡†˜RW›PW›þLž¨1Ä„lâóÍ<:Þ:K«9ÚwºVn”åÐ?½$'ÈÜCKz/u¥:#‰¹ ^¤:‰Ž.í9âÄ?ì$9á2”N­øÖÆÅDgô§‹Í/ÈÁ+•hIJ¤½£%P¡ÛÇö£Òø¿2!WŒYQôËÇ +®€/x‚«RAí¢ìª~±×®-Þ€{p‘ਫ(ÕI’ºT<´×%ALuuâqw8ïÞ¼ÛÑËThNÀ»Î  ›{­6õ”7çëuQBL½BÍ|×›ÚPôp#Sß#à5ÃÃ#túmm-&3ÝöËøB>KÔÓþ¦Ä¢N©¸K"ìärÚJï&'m^ôµý¢EöÛ’ã+Ý/½wËÙék”·>˨™™ÊJ ;Û˜Y‰<$+(Èvss622¤G¬[·zÞ<“˜ônN3„ +ûj«KƒWˆ¸“'°Ù?²_%PMkxn6H÷*à{ HiU $@@ ‚ €È¢(¢ +eßž ¢XÑ'¥µ(öeUP jYT´TQ¬(EÔîaU’NÚž§­µÇWŽ6ßùνsïÜÿŸ›™;Maa0t &6n_kËô´ÃövÖññûn׺mr†]æf˾‰;‘Ïjl¨Œðº[R™ túò3äded÷îÝÅçö÷õltY‡Åa=<6¥$‚£Ï™­µ;¢²’ëæ¶QOWgwdx9—]t*×iƒ²ò¿CCƒjk+}|< †Ù÷W+JŠO¨«lj²øAs}U×Âb)YóþÝwÅuuÕmwŸ ?‚µñÚ²W¯ö +ùƒ¼ÞV‰¤{ïÞýi®û¿ÂŽN‘Óz‘µµ¨©éÏiZ¬@*w¨ €ªße5—¸ L"ÞP•Î–Ÿ{WžIñFô ™:¬Ñ€ @ƒ8kHÅ›²6ÉJÔp *Ê–V·ÛÚ¦Û•¿/AEEEbbbvv6‡Ã))))“B +)Þ+p¹ÜÒÒR8yáf³Ù999pFÃ7ÃÃÃÓ½ÀH!Åo¢³³ƒF£ÁŸ·OÔÕÿ»sWaN6‹™”r(!ãpbfR+%åx2“uä+™™š’Ÿž‘Ÿ‘‘“––•œ\ÀbÉÏߺmöl(®§§WWW7ÝÞHñ@82"JK†‡ §Û–¿ãããÛÃvÀ õYhŠùl#sUʲ9FªTº*•1÷Hc¨Â.C3øÁ\c+5M}Eeåp¡ unÀ¢/ýl½/r‘¯>ÛÏ@L ý 8~ðe·~îò)/½³‹bíç-P’‹ÃsÜÙò·6](ª¯¯OMÏ`åæ––žærÙÜ2·¬ˆË-*…íwJ¨°¬ *?]RrêÌ™œ¼¼d&C¿X$þ³áGðÞÑp5ÁQ#f¹|†«V®'Œ ¹ÈOŸã¿p*nSуo ؾ…^ä¼-ä[É¥~‡4É*òV%ͤZÎ¥˜Í¡,—¤ì•|½¤}.ÅRÕÐ\E]GÆÜÚÚî­þžC ˜ðõõ““ÃfÃÇ‘§Ý¼î‡}½-¯²¿·µŸ×út°sBðllt¸²²48È70`ëùólþøó‡÷-éËa ÝÝ]+*K>¸ýüéãÒâ‚¥KLf))**(XYÑ«ª¸]]ÍÙÇ3ÝÝ\”Uþ¥¨¨˜—óíÓ¡®èè/Œi†11{««ÏnݲYsÁ§^_í¸ÖÞ’¾¬ ?‹Ïåõ=ùêËhŠ¡³‹S~kû¶ ÕT½¼>/>S°ÅÓ¨­ðøQ‹HÄÏÎN7Ð×ÕÔZ`½’º-ðÇ›5c#ÝGã t×­>z”éíë©®®àÕÚÒðýÕ ŽŽ«©4 +ÝÜlþüy®®N?Þº*œ‰žOúk.£ÉËË:•' +®ÔT˜›-ÑÖÖd±˜c£½—/•øû88¬ÒÒZIOO‚¼QWû™öüùó?=ÎJÏÍ9jÁ0§ÑŒ8œ|Iy ÛZÂÂTT” Y¯° ›/ÍLOzþ¬'šìjoÚ»'‚HÔŠŒÜÞÜt3,,Æ“ GØ¿ÿ‹Ë—ÏÇÄD¹»m,bç´·6ºº¬‡]«ìm²²2.V•ñz[¡ò¦Æºð°à ë×ÍRRò÷ß:4Ô78Ø¿yÓÅ™ ßÄ]¯­rssVP˜éëåqìXª‰‰1͈R]]>>62<ÄK8ûÑ?åmmWÀe#$Ø~†B¡ttˆééGòr2uHDkk˶–;Õ•\=]R\쾟~ª{ò¨Y\C]}m°ñúÊáµö· ùƒÐN‰¤{ïÞýé-ûÿ?à‚ö˺'ìï&&Švuý9uk‚ƒHà5TPõ»¬à27„€)@`µ(À ¥üÜ»qNŠ?€ž¡!S‡5°hg ©xSÖ&Y‰€zn@@ÙÒêv[Ût»ò÷Eww·‰‰ A #+^ +)¤xO',‡C£Ñp +£$€Ó™H$³Òt/0RHñ›èìì¤R©“›ÀÉ ðx' °8‹EÄWZF‹Çãx,/ƒ'Èâ6!°3f q²°à¡0‰Húá‡kÓíàÑF(ˆ’C­Pô«“· >Ÿ±c"9OIþ§ö4ZLÔk‰B¦¦þ"'¥á3°‡Aá!±(ÙW(ƒA°bÍ*AMÉ+))–——¿­å££#îžbyÈÊ"²²hñ*Çà âë»$ƒÇ£ x¨ŽÇ28#¶^‡DºråÊÛÙý¢º² ØXYùqCaшÌT”—Äc‚øŠ‚]84ÿeØ%”$LBU ê×DM6$)›Lx!mggÿ¶ß!LøúúÉÉá ³áãÈÓn^÷þޖװ§^ûÛùãƒ"ÑØõëÃBCB|/]:;;Ø®´‚1¤PîÜvòdVWç½ÒÒµŽ«mm­--ÍÍÌ–ÄÆDÛ}`UêB¢!BÂfXrß¹Qßó͈GÆ6ß|9óŸÌ¹÷þë9ÿqêïËÞ»;O–:…Ä áNš=gv´½½mìœh¥òéÓ§¢uë²Vœ`Iiñ1©äžF­lo}¢=zmæ("”6Zu›B. +ç±XÞõõ÷)ß}¨Øˆï{‹s”/ÐöÜTT¾‘Uת1ì4GwQiô Ëß½YzôY{;'ŠÏ8PGD »òGQ{Î + nÜ@W‡Ð°Z±x°Mù+‚¨TollôõõEåãììÌ`0lõÐCNNNvvvÏ»}TÑ7nÜìmF=ú…ä‰ÄßÏåªÀ€` `óR°z…¯N©¨sРϯ¶L¦»Px}ÑãÏ­¶5Føƒ‡Úž-®}‹ëÌŠ^µfUÖjTP˜˜Y‘Ì MH¦db415|=IdsCs+cS²1*FTŽ˜ƒ%‰akæhmB77¦[èhnBÐBGL37F´µ4v²6aÐÉC¬LŒ ˆZ¦ÑéÊ/TóŽ.?6=n àà¨ìt㻥ÝËmVÃ<C‚NqpscTTT Pq­Žø¹sç]‡ÐÌÀÖÜÈÎÊÄÖ’pòýUZ¼pÚóéK•<Ôšdl@|ß„dhfaLëE\ú‰—Ž¦$C’™Š¯‘1ñlDøô:üC‡FÓ—šºØÜœ\RR„¦ªÎfEóÃyÃk(µÈEJ…¨[Õ¬éi¹|élòÂĤÄø³g¾Çµ*qÃo¼)“1 KH˜óãùÔÞú¹Iúû‰o‡……ÄÄ|ºníª%‹“£>‰ðåÊã–œ,Ú°~ “ÉØ·gG»R‚d++K{û˜~ΦõW.7ÔÜŸÈ àGE\»FTAg§¼ +780&:êëƒAª-‡°pÁ¼Q^žÑÑQõõÕ=]ò-9ÝÜG,]ò7xÅš2~ü/¿TìÚ•;šå5j¤GÔ'ÓýýÆúŽõ9vl¯FÝ…ÞüðA]h(E?iþ\‰øŽ?ëÓ´ª{•½Ý²«U?LG&›?þ ZY]ós||tX(wïÞ¼²²Òè™|*…–š2Ÿå5ÒÏ—\QýëÕ‰' =ð݉oÂB§r&üPr¼OÓãès]Ò¯¾Ê622òͪ©ù E [%kW>éV5áxŸTrz8lj;k}öçééKWf¤%%Îõ`27¬_ÝÝó¬U)›9)ÌŸ9½¨è`UŹÆ'wÕfd¤Y[Ûøú²—.þlr‡Épݺå‹ÆÇw22–¡Å®®ÎI‰q6|Ž×$}°wÏvŠ5²îî›D¨U‡íqvÆ›rðÀÎää„iSy›6fçço‹ŸÌDoˆQ(ž¢Åɽ3gN&$ÆÚØX±X^çÊJq¼§[%}ÚÈPδ)kÕm +¹(<œÇby××ßÄœ ¶5b_ëíÅĨÏÃûú^ü=@ðÀ~€ÛB€ +€Ê7² +à:@5†àÇPiô Ëßµzô Y{;'ŠÏ8PGD »òGQ{Î + nÜÚûаZ±x°MùëB*•²ÙlKKˬ¬¬¼¼¼ÌÌÌôôô =ôÐãƒ*Ûììì;v$%%ÙØØ ‘ÉdÖÔÔ ö£‡ýB"‘øûû£\µGÝ>@2@ ÀL€h0K'D¿þ;ýõê)€…X­0˜îBáõÁ¶F? zzñ’|ç¼Q2ت¼Wôöª33V¡‚² b#}iLê/Šûh*AV?Mñ`SYã윘6F¦†èY+’QìxÇ-|¬0—´àá‚)΂)hty•Ëÿ'8¯ùØescáDG'Šq££{Ü…jÞÙÓ•˜d0 °Õ¬À  ƒ ö¹R7f„lÀ¶‚A`tÝ ÔÓs¤P(¸×µèwçFefèˆoÓe“‡­à¹¬q!üÆý"qÓ^N3y.›#iAÇ[™‚Ø»YŽò³u÷¦ºy¡¸Ðú 1º±(î, +Ûê9†æ8 i>mjÄÀÕþ°¡Ñô¥¦.67'—”¡©ª³YÑü°EÞЕ +Q·ª©¯·õò¥² æ%&Äž>ýVÛÑð¨–;y†aé+–ÔÞüI"¾×ÔøûáC»ƒ‚8³fñ òs×­]åçË&“H3"ïU•oÎÙàîîZ°s[‹Lœ½n5•Jñé‘uùòY©ä^×3é¥Ç'ŒeûîëîVÞðo`ñøñ¾iK“K‹¥¦,°£Óç̉.(Ø29"bªPøO±ènjJ²¥…eÐ$ÎÊ•ia¡\•:#rZñÉÂœœõþ~ìnÐÚ5Yü¨éóöÊÍý²­µ™üTú©„¢/¤(d ¸¶CÝ#Ww+z»eU•&|4ÎÐÐ ?ë³gŠ’ÒãAAa¡Á9¼Âub9}Ú²%)~c}F¸ºäååT^97qâ„‘žÌc…¾=~ˆ<™=ÆgwÁvÉã»­Ê'µRÝÛ²{×vÉ”=ÆûÞÝ[„ÏU²Ö±ª³ÇÕmM©‹1 Æøxge.?p `çŽ-3"#Èd2êf·mÙ¨Å5r¹4|:óaaò¼Š+ewoÿëqC]U幸¸Ùvvö-[š2õcÞ°aC%'UÿzuùòT´ØÇgtΦìóg‹›¤÷µ}ߟ82ÔÑÁÓƒYVv²³³Y$úmíß3]†;'Ì‹+..\°pnppàž‚Üò‹§–.YD&Õ;K&{¬Ñ¨ššÖÕÝøâË56+¤ÕÑ£_[fW ò^9Ó¦|¬U·)ä¢ðp‹å]_óþ=Aû|[Ã[[µG +ñ¢"¼£CûV/â 4€ý·„•odÀu€j ; ÀÑmËT:PÊÿÃ~™@5u¥qü{õL•a¦Žè9u¦3µÕ +$„‚Š(ˆ ²…Å„ÕeG "JE¥p­CÑ*\E° + +²XŠ¸b–°'lBîÜíèT£5§5¿óÏ=ïÝ—÷Þ·½û¾÷F½“ó2xƒƒú4º2ÀE€’¬…¯ÊÚ¤Š¸P  0×Ä´†Ã‘µ+ï.­­­d2ÙÐÐÏçËÚ9rä¼.G__¿I$RMM ž‹ÿ¿w²9¿.ííí‹uqËn!¨#àwPIw&Uâ~ˆÉΡˆ! .¡.íý*+—Þ*•µ7r~/ð¹9ú`&ÊÍ}§–Î1áX`@0~ (úÞ¼KkC –ÅÎKÍÖ‹üœð¤½š½/Å9p‘û.3Æ™UÄçΟ5£"r9*b ŒuˆmŽ’¨ˆm’ÌÑi‹ŸÉ\rˆME)–(Ã]wê8ºÆùó9øôYJ³ssó¦j9_(4rw×h@ ¤‚· ¦ÒUH•D.//›’ÙbürFÒëº'>m">¢‰Ø¦’˜H"F•Déy™I¢'‰›J³F×'Í™‹>„éÓ–ÚÎ÷ÕYÏR—æ…bûbÊþ;ŽIDÄÎ i)8JãOz“NÇãIc#ƒº:Ü—N tõõ4 ôµŠ&úŸŒrS“UT>SRR +ÚæW[[QXxÙÜÂ?Vd²ÊÅ̳8:<^Ó•1CaÆ*#ƒ¨È0vRbvöÙèèpkkKÆz‡#qû ò/%û§áJ}“5§O'x“HÊ|5ÐÇAh¡'8Ïõu÷üý¼4Ô)t»uQ_…î ¢RMlm­.eŸ«©þaûv–™™IRRBWGùÔSóæ}Làíµ¹¹±ª¬´àëÃ{÷ïß´ÍßÐp……Åš+W2X0:Â}±lž¿¿U<Îïíi¡R×R(uu ²,ú·ÅOõõH]]¬FA?þ8ydª—¢³X³jJŠŠ_ª€›¸Q$ˆl}鲬4{NÞÕkoÐ;9/‡78¨O£+\x ÉQøª¬Mªˆ€ÉöÌ51­ápdíÊ» ‡Ã!“ɦ¦¦CCC²¶EŽ9¯ Ç366Æ/D‰T]]-ksäÈùEÚÛÛ—èâ.–üÄ8-5Ò&Õ/èµ@<èQLÚ’Ö*/,½U*koäüNô###4mÊ̘µ1o¡PÈò ÆÔ"£™žáÚ®;´ýÔ·¨;øRì}Ôž“Ã5G?Š“¿ºëvM¯ðÅTW¥þ„Ïýdæô»{ Pé”CGg,Ñ+‰R-QÊÏE•ÌàùsÖ(›ŽJ6ôŸ2s×ýŸþ—YJW®äMÕò1áJw·¥mè©ôÓö¯¨‚°‘,B B&•••MÑpñÓ_÷=”jŽ£³æèœ :k)õi2nV(‹†ŠÖ‹ÎXù-ù¦¿§k¿À;BÇe›N +ÎÎ )#K²æKÁ ÅÚ¨¹9Dkç§ÓgÁJÃÑÑ'Sùo‘hÂÇÇWQQ!==½ÜƾžæçÔßÛòlC0Ø12ÜU^^ñå—¡E׿övuÔ‡ì RUQÖ[¶Ä™áœsþ|{ëVßȈÛÅß—äÚÒ­—,Ñɸ2*èb³ÓèÖ)ìD^W#;)éê|üxÜÐÛ01Îõu\¾”fgkc´Ê€Éta0¬,ÍöD…67Öôö4ÇÄDšš¬NMù›œí¾òæMãÆùû{3]ù9í•·‹ŒÞâë±+$holTp0+>þ0§õaii¾›ÛF&sÃÕ«YbñØ Ÿ»;l‡¶¶Ö¡CÑÝ Â‘žá¡®A—p”÷øaeðŽ€ >ÕÓÓÝ貞±ÞŽàs%7óÎïcc¢¼<7ŸH<ò°¶¢»«éRÎyG?ï”䓾>nn®yy ¿óóóü\KCw©Ž‹³Ó7qëÝ×ÍÌL166Älh¨AhtXÐ) ,G8Êt^¿D§[kjjÄDG`{jTxx0?ùtfuëfŽO_gTDIUyÙ²¥.ÎŒððÄG""vº»1îßSQVÈín®¬¼èëììðí©x:Í*--il¬ßN<1( à<¦§±70׬]íàhëèdgkgÞðø~KÓÃb<=6e¤§ ôµÞ./¦Ñ¬.œ¾³©¡úZ^Ö¶m~®ÎÎNØ…˜èðêû·Dc}ÃC/–ͳšá÷·ŠÇù½=-TêZ +E£®®A¶eÿV‹¥£dxô-X þÛ?PU•øéÔÔ ³X³¤=a)@@ñKUpà.Ad胤;Tš='ïêµ7ë¡œ—Àԧѕ.J:vœ5¢ðUY›T÷ªð'Á\ÓGÖ®¼»´µµ©©©­X±‚ËåÊÚ9rä¼.ººxe2™\]]-ksäÈùEÚ:Úuõôp­jàF® \ÚûÝÀ 7þ[%“óRUÔä,–ö~ª*ªeee²öæ?ìW{PùÿÅ»Në`ÇçµÖ;­7u¹SÛé© íœÀÇ‚ÓzÖs* gÑ»bgzw3í¿>O=–vFÑv$ê¼Užhx%„’M6Ùl²Iv“lvC²ÛoÂÙž£x#w£æÃ'?²ßßïûüývóÝ(žд¹Wxé%¡®n®C™Uð| àýÂ7Ô¦NÈöMH;›ž7=¥0î;°`íŽýk–¬ˆÝ¥ó_hùxƒøyf¨|'_¼ƒ;ŸÌ—¤ÀÈ•|™ çS„ò]â• ëé­ú=P_´hquMí“FNÛŽä­<D„„Ù"ø² ”~¡8©tÆO¡ ¡Ç_ø–ÿ¯k¹¢í|ÉÎ@¸8©V,9\Ãy¨[qJè;ÅËiþ’”㉯ ç­ß½êàïÖeæŧeÇ¥çJ3r§Ù²ûò½yÒ_“í:´záÐË+V«Õº™Eþ”" å狉™/—WÀ%ë%)RïtC·cÜf“Q­T¶vw5Æý>ÂËXT*Å•+Š‹>)<{òâÅ¿÷*[Ç´ýÊž¥²Ån§]¦Žö[u5rÌ0àš‘Þúºkêa%(jGû››ª{a9áõ´Û BÞo÷2Ö¡ÁžK—ÊOúSaáÉšªJð%Lº'9‡ê^çW¡I7e74Ô_¿*¿ÔÙÞØ£hRõwxÜVQô‡&]¸IÓÝÙt§µ®¿·MÙÕ|·¯ÝnÓ»]X_okCÝUÕÝ–up¬]ÙÓ|õZE_o›ƒÔCœS zÜEUŠË—ÿYTtªäü™«òŠ‘‘^žs¸œ˜¢³±µ¹ÇÔb†!ú”­--õƒƒÝ·;Ú MÂ2Nÿsù_P“²ÒOkk¯™Œ#KŽÝ«©®¼uë†×úYxG@ø~-øh[k=lGŸ²ó‘^Ú¢h¿]yåB[K-kƒÚï³ uË+/”•ž-:wêrEyscuÓíª–Æºqíïwˆ" ºÕ#ýM5P ewó­›7T +‡}‚¡ÍàÅC㬗_#CÊW”Ÿ9ý—¢âÓÕÕ•¦\´ ƒÊܹӠV+=´Ùç± tUݨìR4A©µê>yåųgÿ5²CšPO0Eƒ³Y<|`¦R&iÊaܳ'Y&{C«}î2þ"ÿà£× ‰Iâ× CCÂŒŒe,E¨¡a„:"ÍaËc Ía;Bý ô“["Íá’¥Ëên~“ FñXØfKfÖk}†ÐPx×$M_µkSl– {©‚××å)©ƒ6ש<¿0›Í III$IÎu,QDÅ×A6l€D™L6000×áDÅ´€—M‰‰pV×!tItÐEHÐíHû÷p/Ña£$<¥ˆ´U…•’ÆÇwuwÏu6Q<#¼^á÷ŠÛ¶‰]sˬ‚ç'Ž7TìÆïîÿ@–õ^üÛ¿ŽKËŽMˆ1.=çFäafæIßùàõäýk–­Xº‹æ¿ÐòñFñêÞ`Yª¿p[”ü‹dDÈKÊRÅKoŸl}÷Íå ¾pñâêšÚ'œ¶É[ÐB"’ÍE„„2"O¡8©T¡P̬òÁ‰nöÌÏ}^Ëng‹Rýáâ¤<²bSôŸK–¤ŠöðÅÉ'¶¬Bßš·n×Êk÷æƧŽKh³þ¿k9±° í°4#Wºï7 »½ºøe´ò•WG5ã3‹ü)E0ÊÏ?3_.¯€KÖKR¤Þé0<†.Êt:Œ$1n³ŽQö ³+íÂ,ݸnP£î»Sn'³6BǸ͜¤›EK;M~ŸÍå0ZÌ©÷y¬n§‰°j­–QÊnpRa 6a™—±šM£CC=`ÓŠk=´™gœÏkÌ&5iÓÁ ÍªÃ #6˸ƒœ€)Ÿ‡àýï·ƒq°I:|‘Vøb½VeÀMj0ÈÐÖk-ܬeÿË ]&pǸL8®Õé´£w1Ã0í6Oò˜V‹ò‚xœ|AA 82‚50¼Œ„&£zlôO¯¤ìSùÁQ¹]¬™*ì”S° ¡â&ݦg½d)XpmØ&¶ ¥†¨¬Ö±‰ñA­¦_¯SYp k „kËsÏSŒÛb³ŽSäxÀKx§À Œ. +/~Ö̘F=Ò§Ñô›ÍZcD¼ À®Á»À±$,ƒÚÂvÃ%Ç01<<¬ê ÁÄ9†©ñ‘Ö“4å0îÙ“,“½¡ÕêæúàÏ„ðÇ…¼<áл‚N'Ü>² + +–"TŠÐ04‡‘°å±lE¨¡~‰äs„¶ <–—,]VßpóO/Šé`g˜-™Y¯!ôY¤Kï@’‡›ùG²Y‚î!¤Bh#BËSR1l®Sy~a6›’’’ìvû\ÇEQ|]8ÎÍ›7âL&S©TsNQL Ç7%&ÂY]Ðu„ÆRDz?èîZ%îú¦FE¤å¸)A[í’%Èz{”sMÏ +A$¬"¼ËøXáÉßež^øÀ‰÷?„*vSÌþßÆg½—v8.=gfÇG—™ÿËã²ÔwÖ|ÕÐ]ôÛÿ(Ê÷ËRýÅÉþâ.BÿƒäÂS;€Á²ñÒnǹm¹I+@}á¢ÅUU5O¹‹çßÊÉy!#B"BÂl|¹‘ä@ä 46^ªèìšYåƒ +öÓŸ±'â?·=RŸäûüRÅŠ(` 4U¼°k²4õ;V£oÏ[·{å¯N¼žuDšž-ÍÈoYZvldãÂÌÈ•fÉ–­B+WþP;ª›YäO)‚ÁP~þ±˜˜ùry\²^’"õN‡á+ɸÍ~Ÿ è¡q—£ï·‹#ŠQôŠ!7Ç’0 B¿ô¸qm pŽPÀéc¬n'Æz‰Iž‚‘q›X¯¦8ŸÝí4;í_اì´Ë¶¢ÃEO0àô2…:ÇÚB“.Pw9 „)!èžä°„ ê.ÊèóXA6Î’ðFˆ–qãÿe¿úbšX³øé²Y5`$âêõ®‚›(ý7—«‰²@Êúp¥-ÂR¤ÜxרE4AÙà“/&{³ï€º‰÷n|º—l4h¢fsÙMàr—MŒVkc€é¬mg¦-m§´efÏÌ´C +d~ùñå›oÎwÎïœofzÀ .F'Ñ”S\’a#ï‚´KŠŽëH´Ì$%àR nD瘻èÖÞ$©aÆ=ó'¦˜r"ûPÍPzö²Bt ‡ªR +„7 i?)Œ…¸hƒ•‘ +ˆÆ óÂ"àˆzèÀŠdc¾i¡,b©9ázÃèBA(R(P"ú‘2J=镳# +žÑ'd•Ê‹Â¤ˆX^±’oåd1 Ã!†ÀÊ 5áBèY<‘´ò…¼…~¸dˆ +F‚¨p8ÖË[Ɖä“)Îã™'¹©xfyy°vu•Üx 0$6‡óÛÂ9-â À•ê@­øYÞZ²íá£Ç:? Â׶XËîŠ]ú¨~XêÔ$¨à)À3€*€OLæçNg¾SY¿p¹\:®¦¦Æçóå[‹ +Þ4M üA$Ân·ç[Ž ÂãñT×Ô೺àï€sèýþ)šÙAõZ?Ðë‰ÿŒŒä;¸ÌÈqÜòÿ›Y«HL%º:/á ¥®.úò:ë9}ÓiMS›ÚÒ¦i² ãlj-6]“MÓrVûå…ÏÌÇ÷í,+½Å>x¹šÿ¾9uÓÌvÙnS\$;›ñë8ÖÅ{Œ©&þo Ô_Ž´>Åí[Š·ö÷ß_®rf*~Øfû Àp«EŒ8!þªÖi‡‡ZYåS£?Æ®þ6vå{ýˆX4™ÙEÃË:ùV¢×ÌstúVýM¿†_ülCéñ‹Ÿµ´ã¡h…£™{Xùñ@‘Íg´Ös8ßûËRÕî]eŽ×oV¦|"•šîè8_X¸©¯ï^Æ">Ê7JÆ—$C‘!Æ ÒN:@âådÈù$Æ"^¼ÌpB´tEÂÑÉ·8AãpÐsq{8èÁ[“Á‰ å¤ý$ Ñ?åÃ[hÃFßÉ>Ñî•bIÛE®Hhä“ò£Bôì–³”¸‚´ ç‘°Gôæd¨q\NzQ^ÊÙ¡I3†žbý8¢ܘŽ(ºÅ‰`R)ô‰+( 'n41N)ÍXä­˜ G¬Õ¸´mðRHÖ/Œ(C +‹xW* ,í’.ѹ´¡„¹,ñè»hø­T[© ”èDÌqB¥èL@¨|:Á‰ò&%?bvòÑ„h)¬¤ p–±&Q1–Tp!ñDd.𨸸dˆ +F‚¨p8ÖË[&ünJ“ å¿eÁÚÕUpà%ÀPÍá¿ž¨T÷jÅÏòÖ’m=þ°Ù)Xþp¸¶ÅZpà…pjªrhé‘*x +ð   +`‡ÉüÜéÌw*ën·[¯×WVVz½Þ|kQ @Áû‚aƒÁ€?ˆAØíö|ËQ `Ax<žêš|Vô¼{¿\ºˆA¡…ú: 'ˆ‘‘‘|g£àc7Í¿ú/÷ïŸøH8ßRV‰©ÄÅÎKøBiª6·vê­çtM6µ¥M³(ÕÇÚ5­tõ¿ß÷IYîݲ±`ðr5ÿ}sò¦‰í^ˆF¶»ï1%{Íü·ÌµºöÚ_ Û‹‹ûû,W9Ͳ†“§*Æxnµˆ±B'įZ«^YåS£C±«‡cW*c×`}âB}$.XÃÖív=wËü§ú½°Aµÿw¥Ç/VXÏê,6M³McÉáàð|-gÊ·—ìÞµÇñúÍÊ”¯Q¤RÓç 7õõÝÁËXÄGùFéÀxŽ¤üÂÈPóo‘òHùÇ2ÆcÒœ¡ÈKj<ÛF"igV”¹»fy@úgYb\FM.êA¸”V„,ü³²-3 $'” ™Ìò™ á“œdBøI95™sôÌIYÖC§õH—™•Y…Ÿï*ÛçÜúàŠT*=‘Ò—-³ÇùQ¨t3‰ÏIgq¢Ûãâ’!*@66 ¢Âáøøß2Nq–ö”{ù‚O&ÄUná}ÿÖ®®€/Åæp`ÉæPƒOîÔ‚ +?Ë[K¶=|ôøCf¨`QøÃáÚk9À]€©©rié‘BWϪv˜ÌÏÎ|§²~áv»u:ÝÁƒ½^o¾µ(P à}Á0ŒÁ`ÀD‚ ìv{¾å(P° <OuM >«ú^‰½_.]Ä ØB eÐÄÈÈH¾³Qð± åÛÏrŸÎç[ʪ"1•¸Øy _(MÕæÖN½õœ®É¦¶´iç±vMë]ýWûv–áÞ⃗«ùï,É›&¶[`¬'=É¢1Ížºd¯‰ÿ¶¹öE»áSܾ¥¸¸ÿþƒå*§YÖpòT%ÀÀ­1Và„øRkµÃ+}`R£C±«‡cW*Ùëu³ê3·n3LôšùÛG¹[õ_›÷ÂÕÆÒã]-í:‹MÓ|ZkYúàÔx¾–3åÛË +vïÚãxýfeÊ×(R©éŽŽó……›úúîàe,â£|£t`|d(2H;‘!Æ…s‘éK™x™¹5c,ÙKN²%ã¹!(R^—½‰±\!Ú½QŒ"…vKžçË–Ö%'t ½Kr2k 5“ ¼eNâ'³gç+Ïs)æœ"ˆ+3•‘'‹MJùÇd1rµ³d³=¤ Ò‹BU= Gî¹pÉ Qáp¬›·Œ§“o¨çÖóãã\zmy°vu•Üx)6‡K6‡*xp TøYÞZ²íá£Ç:= Â׶XËî¼NM•KK»úgU;Læçøð(ÈÜn·N§;tè×ëÍ· +¼/†1 øƒH„ÝnÏ· +„Çã©®©Ágõ@À+±÷Ë¥‹[´¬z‚Éw6 +>D£Ü±c|ÑfîáÃü/³v‘˜J\켄/”¦jsk§ÞzN×dS[Ú4‹óX»¦õ‚®þ«};K‹poñÆ‚ÁËÕüw–äMÛ-0Ö“ždÑ(ÒÄö“½Fþ›æÚíµ;qû–ââþû–«œfYÃÉS•c<·ZÄX!€âWH­Õ¯¬ò©Ñ!öêaöÏ•ìõº¬úçÕm†‰^3»ÿëѯÍ{aƒê@céñ®Š–vŦi>­]òÔ,mj<_Ë™òíe»wíq¼~³2åk©ÔtGÇùÂÂM}}wð2ñQ¾Q:0¾,2‰ ÒÎÉ'žˆN¾ÅI8è1®ÿ±_ý±MÜWüe‘ÊP`0‚ÊÐøµiä‡s‹ŠPXˆœö;&?˜K€ ÈÚ&Ô±ŠB5Ø Ö”¶¨­&oÀ ik¶T)J…˜ÄIü#>ÿ¸;ßù|g;¶oïîÀË: ?ºaAüÑG§»ç÷}ïóÞ÷~<ã¥À“ â%Îè‰FÕ-ª] 2aW³`Lžs!1M Ñ^Ì./áüv%õ£¡¿‡n «ÚÕPx¤¼ƒx¢ÊÀ£lô&²¨²1×Ç8Taª=¡ /ÂU«–Çué 'O ÚŸ‡m´«þjgP’ZãØJÿ-ŒÿN¢]½ÄJ1Êâ±™c÷"±Gú€ÝãÝŸ¨n|ñÿ]8Œ²”oØ`ÐD¾Å2½ž2iÀÏÿn|yV¼÷^Å¥IN«šš2Zî*Ãaû¸Ãatt\(†4|-ÏËœõÚõÿCm)<^Ž+®¬Ê¸pGÞµ´‰ŒôÈveª¿P°@_zÛfKv)Ó‡C£Ñ$™l-)¤Â—Ã0Z­?ˆAôôô$[N +)<N§suQÞ«+̽Êì7‘)¢C!гdäDWWW²«IáyA$"mÙ,ÍùZüúôúC Gö7À*§p¶©1¯ª^³®6ÛX—ódVìÌ1íÕ”mZ¾pÉ,\;gFzÇÁBɼ>z¦Tlщ-úGQ§þ:¥‹¶ê¥÷Ö2o—ì*^$/Ÿ;·íò•É*§EQ»uÛ*€A þ´ˆ¹X€-Ê[(;7·³³sjZÿ!œ|EüMØ\2¦?ëžÌÈéRéÜÚøÙ²Cºoà _yÉ°dcS~åά—“â|¢^UgBêÄoLe)ß°Á #ˆ|‹eºÌH¡Ý…q8¿çœhG¢…ñÙ¼®A«ñ¬œE^âwÈvÒJ:->÷ËØ‘(Á€ 5cjà§lï +‰´ Ôj Ð>ì§íAÞ…¡Â¢Wý -^rÀiïu“ý¸Dµ£B¹´ Ãb@Œ?¶9hD´cEH´¨'hy@Æ.—¬8£g$ŒÊÉû}ÝÝŸÞ¸ƒ!Áä\>Ï6–óc7\x¤Üèo ^ÔDa” ai;êA‹¼´òZåþ+[£ètPÞAZÉ‚µ 1ö<Àºhì’{ÐC` +ž}AÞ ÊîqYGìkkWuNööÀÄGYÊ7l0è"ßbyþŸ²ø˜#NxÒ÷VIï¿?µ/iUSS&@+À]e8lw8Lƒ€n€Kņ¯åy™ó¯^»þ¿ª.…qáå¸âʪ,€‹wä]K›ÈHlW¦ú[…ßЗ޶ْ]Êô…ÃáÐh4$I&[K +)¤ðeÁ0ŒV«Å"A===É–“B +…Óé\]T„÷ê +3@¯2ûMdŠÀÙïsųdäDWWW²«IáyA,&íª—æÏ“Úÿ–l)O‘pdã| r +g›óªê5ëj³u9OfÅÎÓ^Mé¦ï,\: ×ÎùjúÇ?/”.TDÏ– +Í:¡EjÖ‰-ú±NáºH‹^:[&}Pî>ùjmáByù×ç¶]n›¬rZµ[·­âO‹˜‹Ø¢¼…²ss;;;'%;þð0:ø‰pâeáøJñíWÕÎ(,QŽjÓF½Ø¬ 7ë°½ÒyCø´þg¯,…i+ ‹köåWìÀ-Ë5Ö去qëwäàþ®¯ËZ°$}ñ¢e–¾þÉöü™F4khØ“‘1Ól>—ï¡÷ΩŸþäǵÛ6>ôúÇ7®ýéâ‡uµ› ½é•ë×­­®4¾uäàg7oðœóóîŽcG×ÔTË¿ÿÃӉ߳Üû,¦>íºqä̓57à’úúÚ“'~Õsë“H˜–¤$ÛÚ>ܾ}ÓîÝuí¹,ð^I +F#4CÛ;þ~íè/m®1•——mª1?~¤¯÷¦Ÿ±_øã{vm¨^_]]±ûGuïkµ Ý ‰'Å G’x79pä­7 ݱ£oºFñ&¤¼Ãþðþþ¦½M^3UíkÜýûÞuÜ÷ûWþlF{eEùºò²¯U¿ûÎé`…ÅïõÞ<|øu|òäq›­7òq~‡Ú?mÃsž °Žuò!@üxé \bÐ-ò¤ð/öË<ª©+ã7•2 .,VÁaóˆ!ËD „:n°o£\ (ÊZ‹â(P\¦BY”ÕkÚ": +.#V”€(‘%a ! YÈ››ÐÓÿP9–|øžœ÷’wïû-÷¾÷e kJÄýVEÅ~û¹³©Ñ{#KK~vÁô»ØM§O%½<ékÿîëãí¾5t#,øƒûe—/füÆ}ÐÚû÷–3z:›[šŸåæüxìè÷w‹GäC¨bø·Çw÷í‹ + \“ÊïmÝF"¿­¼¼$áH솾¾žAAk'ÆÕ×Uq»^ݸ¶k×v_wO:,Åùü³~‡t˜“ÍŽ…syÀk„‚…LÈçµÁR#ˆ ‹5¹vÚÙ‰:Ø£‚6ò>î&†d¤™qâh/·uD&€IMt…À! +™ÏkóðpAkrí2èðP{{AÐæWðì=^¦þ‘‘Fdð\eËÇr†÷Tæ°ƒ)À `àcÙÐhÖͲ[=3 o£W$ròóÇp€ze×0ã±ôP奫¯€ €1^×Þ®îT&/l6›@ H¤îînuÇ¢Aƒ†E P©TøBD„Édª; Þ +‡Ãq¤PàZµ€À •÷‹€Þï™êJg „ˆ ÕÕÕêÎFß¹\¢00Pܽ£îP>)R‰4*"n(yz@Ñ?Œàlí‚{·|·àvÜÖ-˜c: Ž5ÖÓª¡8Ø_Ÿìó)f¦–¬Ææ‰Öü³F. ß¡§§Ë`\„§Cƒ\>·¥×:¦ü¶?dR}“HKK‹J%§¤$—–üÂzù´¹éYQáOÿŒÙK"-¶°0ݽ;¢®îñ‹†'I‰ñ«V/wvY‘œœPZZwø‘híJwÎÌ8óíž ÑÛÛíûØ}^^î:º:ë×ôñ»`¤÷+JCB6™˜˜À5FsYÁjzn¨þõ×Ôõë¿9yâhnnú©§®äwv°jŸVúùyÍžó•³Ëʸ¸ƒ—.eW>¸ÝÅaÉ$<™„/—òº + +òlm8¡¹™é•+yp––†  µ–––ëÖìùvéR»¹s““â+ÞÞjb2‡Bqˆ‹?x>?ëQÕ]¹lX.ŸJ>2mšÞ”)Z +9ë\*Ÿß:" ö 9¢~vK³èúÕÌŒÒÓOŸ¿p¶æɃ¡ÁîÖæú_‹—.æäd§:y,3ó‡—/k`ùûxmwnåæe$&†%²·_š—“1Ðß ‹{ëj«òs2B‚7ηš·ÈÉ:›ÞÖÊ*ºQ°Úy%€ ŽÞ·ÛÖv!ÎzAÖ¹”ÒR†‡'‡Çž:(‡QŠ…ÑßE}ù¥¶®®®§—[qÑ5™¤V#öPÌ’%vÞÞî))'óó3SS’×.45ÖTVÞÚ´9höì¯ÈdR\üÜÜ´û÷Jù¼V˜W_ûhßG5ž¥"t(dB>¯ÍÃÃAlX¬ÉµËP6up@Dñªéý&ðŒ4 €ç*sX>–3¼§2‡5L!NW¸¡Ñ¬›e·>nZÞA¯Hääçà:õÊ®aÆcé¡Ê1JW_ º½®½]Ý©L^Øl6@ ‘HÝÝÝêŽEƒ Š@  R©ð…ˆ “ÉTw84¼‡ãH¡ÀµjãÿìW P“W”Ù!@UŽx"9ˆr&­Ë}I"A‚á’#­hÝ©[»­u»Ö¢" ´õÀ³+—Áƒp(—‚”#€"„@äÉ÷íKìÎ8;SvGFÉïûÍ÷½÷åÿã½÷ý@«RûÍFE@í× lé°$‘jjjæÛÞLO£‘ˆÎb¤taý¡NIS9épCá©Ú,Ž%3žÀÆÑ£ñoæÆX<+™èf†5ÂÀ¾+´þt?Ó ½‚ž§£§}Ìw_%•ÕW…lå=Ç=€–??æEÆÂî‹—.¹Qxc®– '&h‘º@@Þá\b•§Ž@àñxs2Q\KÏêÐSžèQ+4Ç ÍõWD,û} ,¼z£¨z£¹>èТMã'}¢¬—lŒB¹ëã,él=šÀ`Ï5F æ—m5V724ioë˜kÌßiÈdòÄÄ$ F£  VÇ%ƒ‚ÁNáp÷ì9"ä˦GärÉ{`ö]\œ._Îï|Ú8.y!“IÆÄüÊ[q±ÞÞnW®\”˧ù=q1‘–$Âö”m×MMMVWÝõñv³³µÚ“±3>žíèDIå&œûñtBB¬ŽŽ+˜)ʦ%y¹ßEE…yz¸êéé:PìjkïCƒo—{z¬§ÑœŽ~ý÷Æúʶ'ÊË y¼²—cM ¼À«LŒC·çæfUW•õv·ŒŠú§&eR¡\*èêl:rä _Ï+–ð¸cÿújZ:Æïn‰ŠÜbe½nß¾Ýy¹'ü|½—/Ã:”yÿNIrRœ™™)ƒîwö쩇µ÷úŸÂ£bDøü`f†±‘1ˆ÷óóÎÌÜÝÑQ"éäð˱çbQoó£êì“Ç~úÉ®])IIqgò²CÝu•Ÿýu߶øèNÂÖðÍlöÖ’’«““ÃÍMUÿøòP*7999Žâ`gmmu&÷¤Dü ‘‰ùˆtjdðÿ¹܀ >‘¡ÍÍPÖÊïÞ¹ ]pt¤~qø³ììoÝ\×››™?öUqÉ•À ;«oGùÐP/'9ÞÐp¥+$èDÖ7ÃM•¡ŠÝÁƒ{[škž´Ö–ݼþ°¦bh £Š÷sdTØêÕ«à\ߟ £÷KGƒXÄ÷‹=0ïðþŠ3®ØÆ™ †{üý=I¤uíí k—¡½½¨=!ÐŽ§¿o&—« @ÍJqx{&eX¡‡ujj×à–jpc.ÕÕ+.YXßñùÅÐè¨K Ó€«¾]Y¸èëë#‰d2y```¾mQAþ(D"FƒD‰ÔÔÔ4ß樠Âo¢¿¿ßÑÉ ®U +hUj¿Ù¨¨ý”-=€–$RMMÍ|{£Âû‚‰ $ˆ‰`0èÂù6å­B:%Må¤Ã …§j³8–ÌxbGÆ¿™cñ¬d¢_˜¹¾¡6ì»XSýp EÝAçŠÝäR®}YùÞn^†ceµ2ÝAAXÈ ÞOw¨Hs¸µƒ\¾‹\›éœ³ÕÒÎPv_²T·¨pÎaNLÐ"")t€€¼-¹Ą+O!Àãñæh8‚"| >á]K°:ÏÒ+N±)Ûépg—Ã}E””¤*I©Jÿ5Œ»)·vØ—§‘k÷9_d[Ùh©øgZÐêÍÛ×nŒ%ÒÙz4aƬ1bð0¿Œh ¬±º‘¡I{[Ç\cþNC&“'&&a0ù°:. v +‡»ßL‘ çõ²tr•]¦øZ[‘ètÿ¿:ÐPO&Ÿ„cvýòhGj"ƒá_qç&¬¶47Ñœ©¦&&gó³d¾^¤íÜîìLŽ`…ÙÚZ{{¹ÇÄDxzº‘H„£_FioO[p¶9°?=8˜A$à¾;~T&»rés3Ó€ >ª+úøO.\Èã$ÇíÝ›ÖÚ\û´½!„µiÉâíl­“csrŽ76TŽùÒ)!Š¾”KEùgOzyºÆÇEr8 î®[Ã7×TWô÷¶q8ÛV›®òõóŠf‡S)׿¬/üwAk˃„Ä="ÏMI¼p.¯»óÑøË¢¢K[B7Ñþ©Ü$?_/²½í•«? (t| †eLÜãðÍ?¿Ü›‘Æ +fb±^žîµUåÅ…—>úØÉÔÔ„Æb1×®µüdÏÎÒÒkû÷gxyºAk?ÿü€»ÛÇ8œùéSÇ%£ÏàPÓR<‘ÙËò[?…„0·mcóùŠµZÍ»ëíí¶ÆÌ400 *r‹#•ÂdÜ)/ª¬üÓå#§³y'`Zº~‘ɤ3¹)I~~^¡¡Áw+ŠŠn\bÐý¶„²n–^xÖ~ñ|^\Lä§ö6ÖóÖÞ‰ŽÐ××#àñ))‰yyYõïˆz%£ý0†3®ÿY-bQ/2- ÷øû{’HëÚÛÆ.CþûìêFÖ®CÌÌ‘––ß7“ËÕ €f¥8¼=“2¬PŠÃ:5µk¸5x,/ÕÕ+.)ý¿¹¦ÂLu dZp€ÇŠ¬©ÍFÒCÞVS¨úF¨,óò~ÄçÏ·+ }}}D"‘L& Ì·-*¨ Â…H$¢ÑhðƒH"‘šššæÛTøMô÷÷;:9Áµj@­Jí7µ_ƒ²¥PÀ’Dª©©™ooTx_ ‘ \.êBCy¼ù6å­B:%Må¤Ã …§j³8–ÌxbGÆ¿™cñ¬d¢o˜9ÖPK¹q¹–n‰ÕJ-s,rf¾†¹¾¦™¾†™² (hŸpXm#/‚®½‘ö"õ`_]]Ý¢â¹Z.œ˜ EDRèy[„s‰Wz#xs]0¼¨(/µ3Ö×ÀÂ`a¹Ž9Vk& Ú}Íר¡ ¦VÓÂcµRÛ·”¼RGŒÁ"÷³Íœµ1ERØ„LjÁÃü2¢-°ÆêF†&ímsù; ™Lž˜˜„ÁhäÃê¸dP0Ø)î~3E‚ž×Ë£#}ã’±ßÑ^&7ë?ì— PYÇ¢î*κw”pˆ¹xŽrÊ}¹C¸B‡º8–¨»:*^((‡J@A®g,  +ÈD£(ì"WHPQÄd;qªvÖ-v¦†R󫯺Òîêïý¿ï½÷o‰ ©¹$$ØÿîÝV¹üiç­A,_’5¡´ô;èw„d[k]8<)éàÄÄ°òJ³Ÿ“dEˆ‰‰ðññÂb1xS:ƒlnnJ¡Ú••@ýQYY‚D!´´–³Ùþ>[=uá:n®Nm­×¯Õ”àñ¦v¶¤’«yBaËéÓIú‹/N>uDt§ÍÐÓÕóôpI>y¸¼¬ ³³ÊVöJ"—?î eih,¤Pl¢¢ÂÍLMôuu“ŽìêDÇputà–x3Íný†µ>·;{z:9A:ð•tº]JÊñ††šÑ‘žnÑM.7lÍg{.'ؘ?wn|üö±±>¹|R.“LHúëk¿ß¿#4$N#Ï›÷ ]P›{aÓ&+ëMÄK—2.\Hµw Gñ8Ç“7S©äÜÜóm-×£xá&&ÓΞ’Ž ¼˜y19<õbd|¤·ð2ŸÁ xz:CJBêýpý4|8|¥µ5J³373‰á>èn¿yóGOW+¢evVZ{ÛìàÁdz††°bõ™ÓG ³™LwgGûììŒÞ^azz²®.\kÅòcÇ]¯+ eéëëÑhäÓÉG+ õÚ!õú&$ãcþ· ÞÝ-qŸì¥dt¤×Þž‚Å‹DŸþ,“½^ÕdÊ…íŸò€¹»»üžb௯Í·èh©t)Íaíûœa½Ò¶©©@jв¬ [ZQYõ[RÅ[–J‰®nŠ¸­¨šÚ‡Xz(jÕ®¾sVPiÍöP>_úûû1 ‡œí\T¨Pñk‹ÅÚ±XlGGÇl§£BÅ[°Àã¡^]@>B¥÷ûy¿[Ê;É@!+f{4*>dÏ'e—.É”ßïV~æ|.L½˜Š‰Ü M(”ù^‘†n¡GÒ)õîp Fyq1 oÄ2íEгês€ji8QÛuír*F1„‘Ñ0»75ɳÌ}½V¸Õ*çµ0عÊï8XyyùL3›œ$ø˜ð9²ß+ wIðU®BH4º¡¡afyËä2e{5ߨñÚ°¿l ³„Ž]FA/…T²Ei¾¯Õƒô¤a`ÎÆËC«Ü—ÿiŽú‚¥´ÝbÀŒ4r F+ŠÂB¿·pÎlT_ç „\]{•®èîý™jþQ3=ýŠÃ‰ÐÐXŸÏ‡NŸ=z06Òóîöþò÷¸¸odèáã‘x¸§­ùoÏùóç1èAÓ5¹üÉíöÆÀ+"ájqôŠžÓË]OG‡Ç  +Û¦§'þQUdkcM$XìÛ»+$8pÝ:cW7§m±‘Ž ’µUNN¦Tò8#ãŒþj=8\;0З諧£»qú‚|¾ ©ÎÝÍ g²!1ñoÍÍõÙüt  5á¾}_wÝn a¡QÈNHQaNcã5¡°E2Ö'—MÈdO»ºšèêêsÈäMÛ·ó,ÌMaKþ¼=†[[SÊá„` 1Þ[=¡ ­¬,õuewî´„sXÄj?_fiée‘è–t|@ÐXC£Ùijjzz¸Dó°è¹êêþÞw„-–rùÓ¡Á{y—2Ùì€ ¶?“éƒÁ 1Èììt>?Jµuqu¨©.)//ôööÚ¶wòø7W'ƒš““!hªä†âpÏ¥ž”ŒöMM+âù°x¤7?/‹N³óðpþ¤°µuuU¶6$CC+È—fM"øy·¶Ô75Õyzº‰øÌô3Uå…66¤/¿\áï¿R‰\£­½2!!î»ËÙA~–xó={â q®\ÉA¢Ö@µÛ½{guåÕ°Ð 4éãíUt%ÊG$lí›ô¿®>tüe¼»[$â>ÙKÉèH¯½=‹5‰>“Y¦X× ›d\žyA~*YþxH&ÿ¶R·èh©t)Íaíûœa½Ò¶©©@jÊ eiEeÕo>BocX*%ºº!(ජjjb顨US¸úvÌXA¥u>z4ÛCù|éïïÇ`08nppp¶sQ¡BůE,hCÄb±³Ž +oe``À‡zu=ù•ÞïC\äýn)ï$†X¬@ ˜íѨø¤½þŽ™ù·ÌÇËÔ‹©˜ÈЄB™áièŠqd!‚Pï—`”ÃðY³lÕ"èÙ¿,š_ý•éË2÷'¤)Ô‰³4i*u"å¿By]ñ×D*ýÉ…ÍSÅ®¢Dkæ:Mèñ%š°²²Š™f>69Ið0à!rd¿W@ï’à«\…htCCà ÿ¹½^´JSlÇa¤)di$ í Åþ©THO)$]&}ªÐmðÅ  ÕqNºLž‘K0FQú½…sf£ ú:!´àêÚ«tEwïÏTóšééWN„†Æ‚ü|>túìÉÐèЃ±‘ž ñh¯t¼_2ÞWØš“~üØ¡3ÉIa¡A8“õQQá?u dÓãím7¸ÜGFIÉe¨ÐOŸ‰ùüsŽŽt¼…Ù¶XÞÙÔcNð“u¼¨°ÊÊâh4òáÄ¿wu6:qØÌÇå†ææfðxaª]LTD^nfAŸ¹Å]GG;.~GwwG^îy:B¶³Þ›°ëÛo÷­úúº'OvµÆÆF ÐŒÍ”ø¸'Ž'~_zyð_ ùýxèáùó)Ê&k1éè7ÕÕ¥ {âÍÍL|˜ÇŽ~Ãfû{x¹de¥·êc£#Œ ÷ïß}­¦dÇž‘‘¡­ i÷×=wîTMuiÖÅ4 SnczzrUeQ|Üv‚¥N¾x1Rjçî{·ÜK&Ûúù{·D²´µ±Êæ§ó³ÒÜÝ}}¶ÔTW”†„îIˆ«ø7ûeÔä™Çñ'ÛÝív¬3­ØÑV§tBÖÖA`Š]9DDŠ€€„+¶¨U»SOä>•cDÔ-—‚@À@G¸Öh¢¹$„Àáy÷yc;uí¢í4SÈ'¿É$Ï<ïó|Ÿßs}ßšŠË1ç Z¯ÇÙØìÙµkçÍ™rÞܬD9#VÎŒÉÆGî–zz¸ ü¢ŸƒÚÚ––:7wBYyÁ#VsH°¿ù.ÓÔÔx*µ„D +tqrHM‰KK‰ÝñÙ§ŸïÙ]\tó^UIDDÈîÝøÀÀ÷oßÊËËÜ·ÏÎÚ{.## &d›á'I 1­ Úñè(cX3::*!áR=¢ò¡† 9_ûòb‘L*êÅI™”çäd‹ÃmçrWÿ.S«¼2_º<ßð%’ÉäЧ1‡Œ•œa³Æ>Æ`(X <–7l¤ÕÒá ôhÏøÔ”•;Ñ€ +zÑYÃhcéa00¨«ïÀ€Ívö=|¾®‡²v +…X,ÖÔÔT,ëZ‹=z~) +…Çà ‡Ã±Ùl]ËÑ£çg‰D––p­î ŽÆûiã" ÷ëÒÔ´(&8‹ÅÒõhô¬FÞð…æwÉÂü±ˆ“pC™¯÷Š0!†`]¶–· #¯p¬£á[ÖÃg?|÷Ïí—þŽ<8„Ty · h» EÎHáËá‚Þ! w\ +iõQä9„šo‚¿ÿþ†êêš×U.W*ñ~‡Í@ý[ìk_Í)´ÍؘÉd¾aêÇ:‘"G$w'š®7¤X“´BçW¦–£u\‘ +w¤ÉGUD ™ý¼Ùá¼õ`äßÜ‚°è¤¯8k®GŒàüºnÚúÖ–>æ<{Cå¿OTª%)lݺwJKóáßÙi‰L2$—Žh +ojBc ¿ãêÕ¤à`ÿÐ@?_ïƒÞž¹×®Œ>S-ÈzºîŸ?{úhH NAyõÒLWgÛùs§möîq%8öð xy¹åç_ç<éÈËË +ò»u#{|ìYmMùÁƒû#¦¥Å……‡DF†Ý)ºñ”Û94Ô›”cm?}æ¸PØ?Àiÿæô G[ßCÞ¤° {{›}Žve¥#ƒ=q±ßZZšYYYzzºEE’þu+GÈ€û›Ççdg¥úûûœ:ñUk ],®¦Þ%‘‚"æ$ÅŽŒ>U[K ®å¤;;ÙŸýöV–˜pÁæÖ¦û=]#¢Bss¯Þ¼‘ãsЋÔÑÑ:::XI)>F;ä{ ''U!Áì>r¯_»âæîâ¹ß-ŠL" þ¾U”;åe…aáÁ_’Û¨uU§¾þ*5-®³£ ÊþÂÏÛÖv¯÷O{(»ìn>̳rflvZ C&©©.Œ=s*zðY/œ²ööV29 6ÞÚZ;*HNŽ!œâã.VU_¼øMèÑ#é‰i)±n®Î'N|Éátðùý¹aaÁ° +¥ˆÅbœ;fŸ£ía?˜"˜Fg‡âÂ]í­‰ ­w[í2Û KüäJ%#s³’ 9_ûòb‘L*êÅI™”çäd‹ÃmçrWÿ.S«Ñ+Sýýç‡Bä oR"™l@}sÈXÉ6kÌác †€ÀÀcyƒÁFZ-ýמŸš²r'P@/:km,= uõݘ°Ùξ‡Ï×õPÖ.B¡‹ÅšššŠÅb]kѳÿ÷X]Ko-z´B¡Pàñxx!âp86›­k9zôü,"‘ÈÂÒ®Õ”ÀÑx?m\ô~]šš6Ňc±XºžU‚zvV•œüZ=¸úßã^fa~áXÄI¸¡ŒÌ×{E˜C°.ÛFˇ[‘W8ÖÞç“Í[ޅϾ÷—?62G*‰KyŽsY6sÙvóÙösÙ¶/Ç|–í\–2Ûn!ÛVCJ\EéŸûš}€>þÞ†{÷¨¯«\®Tâý›0 €ú· +Ø×$¾šSh›±1“É|MájDš¸%k2þӹ̽óÙóh–ì^Iš7M2•hölUבb‚2Û>ÌâCð§?|¶o‹7y»{0–`D0^qÖ\Áùu 4Ü´õ­-}ÌX[K]¥Z"‘ÂÖ­{§´4þ–È$CréÈò¡ñ^þ=©Hă­Í´«W“b/ŸÍÊL¡Ñʼ¾ùÙñÙ™±ç‚þÿ®«§Wrû+g%ªEùÂܸ`äIUEqrbÌ¥ ÿ̺’ļ_?=5ªœ{Ò÷°¡¾²«£ ¶)• =d66Ð+k«Ë)e…,&C!åCpƒŠUUwêêªdR‚LÃ.îUÞNO‹OL¼”™J­,ðžügRÈîj+*¸ž–j««¥Œ>]\TŒBI õUœ^ìAæfgĽ=[›h÷[éMM5--µPí”B(àqšÕÍŒjN«·ûAeyqzjÜ嘳II—ËË ÚYŒÖ:»‹9¯”BUÓÓ⾞´ê²¶–Z©dxaA>¯ò9•P[zbVfrþw¹°µáAö@ÿã¦Fjs#md¨gx°6ÒÞÞ “)‚ªÒ322 +ò¯76PŸr;a&|˜8¢ ¹`ðiwc#fæ|aqB,â¶AÍTX>=õ|ðYw]}eKSuOóÑ£fF#•ÙVÏl«c4P8í*Õ$‚('‚ÎŽ6:Ò×ÇZ\Ëe<:­,%96.î|VVJͽ»Pì´—}ÿnÉwi©q1—ÎÆÅ^ QKa¡rFàý—ýj‰*;ãgÖ4®¡F*¦êF¬M ĸ1X$Ã6[eÀ.+ l¬4vQ"Ôl4­›fSc›l6Ö]–ÿrwuÿq¶jÄVÜtQq…fÆyÃ<î÷óÎã2Îéwï…)ÙDb™(|ùrsÎ÷ü}ß¹÷Ì7br·'ÓP•ñD[Ë)ø Ä%«ë[ +ëŽJö6æW7‰gçÚ#âúã’=¿ÝºaóÁwÍÊ=§I¾®M]¬dÛwÇ>«àY>“YaÑ.Ÿh—ƒùê]Çù··ã§àžý“µ]]·æ‹Üϲ²ƒ‡v 4ŽA/C®Bø[(¿ @©TÎ77Ãq#YÊÜ»ðVôoÛØOw±í| iå?è›ÐÌ(È?-OvV’/Þ˲MèG¯m{'·¡µ¨ö™¸º±`ÎS«9,†ó­iÊ[¿yEî¦-FÃè|{þRS*5ÙÜ|,+k•Bq¶±ˆÛç6ù½æÙ9à³Ì\}¶PÀFÛôêá~•êîÈpŸÍ¢I,ì ‡h°±S›å‰Û1 +ÂhØ1sEÃv»Í êWõ«î÷¸LqÖÃF]· ,”,# íu›ì6½yLcz:ä²?2ÎDÜ—L„ ˆÅª5k‚~HبÓNé!Îàã^­Ze3ë¸ì‡Ï3n6©µê‡ƒƒ†¿ÿnìé0H"GÀg…°”U[ðMÄýqÖ …Ø)#Ä¡mÊfp;ǘÅh§ý)måÀû=pÑi <xÜkÐN‡}” s%âÁ8ë øÌVó«YëõŒ‡;àŒ0v›õÉȈrx¨Ï`´ÓHZʦ£­ðõyÇ¡u4md‚q:íFæ¡zD h”ÁãšÌõÙo_^òHÄôY´Ñfѹ¦pÈ„ƒ  ´Uç²:c4¥·ÛŒÐj°l¬'÷Z¯Ëd1k|b›JøÁxøû¾Gî>Ñ<¤,º ß"eÕj5ªÇ«îu€@ +§/@šóU,á8p2äóZªªäRi‘Ñøêeü?L¸Ô¸{  d÷.R^NÆFöϳ®µ5¡N„´üpØ3×dxE¢•!\ËksÖÝî¾óBK\¦ÙÈÃ0eûêòºŽ†;5ÑóŒôÀ="nªF¨¡ •j«5Ó¥,]¢(J"‘;ÎLcYã{÷pO‰F¹m4Šõ:¢Õø FÒÛ‹ÕjœL€»äî]b1sשÇMzï“^#ÿù»]Sl(Hîß'Š«Ø`˜ +Î0xpwuᯜ¥^*ÜßO¾é&×®ák×'•Jðg¤îeZ4 +2™ ~¥RéÈÈH¦á,Ó2=“hšÞYZ +ïê›)Òñ³ßóL0û ñ–刣B©T¥ReºšezUÈã!55øøÖ­…ýyI)O´µœ‚J\²º¾¥°î¨doc~u“xv®="®?.©Ü¿uÃæÕà»æõ×zÿ¸“(jS+Ù9ÛQñ –Ç>+‡gâbùò]Ï'»šJ7rîÙÙ7oÞš/r?ËÊÚÐ8B!¼X ¹Bào¡ü‚¥R¹°Î§ÆûbŸü*öÑv¶}7ÛQ)ôgöî%;+ȥߤ:+Ïìú9Z)ÚV•Ûp¢hßá½âêÆ‚9O­æ°η¦)oýæ¹›¶ £ Cþ’R*5ÙÜ|,+k•Bq¶±ˆÛç6ù½æyqÀg lqÖC&C„„ᙘðF;È™ ÅF]  ‡h0öyÆAÚdÜÇsöÁ‰˜Ì‚~k,☈¹£a{Xƒ#D† ÒqîÞxÌ ð‚m*á'˜éž° ÷)H˜Á© „!D/$‚h‚$qNÄ\BFxB„4RÄÿË2üT çû0Îãw‚;ÿßùy™¼ÿ>9ž8 Á5þë9ÜÝAüïá?$'O’sçÈà.X½C¨†ýäêU’šä$££øïÈ{Íø½ß“?Æ]]øòræü‡6ÒÖJNŸž¼t‰XÌ™,™þÿd2ü J¥Ò‘‘‘LÃY¦ez&Ñ4½³´ÞÕ7R ¤ãg¿ç™"`öâ-ËG…R©J¥Êt5ËôªP8LÎþ…44àÇ™†²¨”ˆ'ÚZNÁ%.Y]ßRXwT²·1¿ºI<;××—ìÙ¿uãÏVƒoöë+ü©”(jR+Ù9ÛQñl.Ÿè':åä‹*_{ùÙà¾&;ûæÍ[óEîgYÙÁC;Gˆ „‹!W¡ü-”_P T*Öù¤©/vá­ØGÛÙöÝ|gäÓü¬ÖÉÿ“K{&/îù³üh¥h[UnCkѾÅÕÏuj5‡Åp¾5Myë7¯ÈÝ´Åh]ò—”R©ÉææcYY«ŠË°EÜ>·Éï5Ï—>K8DÇ"N6ê‚g„±‡6Aô[A ‹´1hÁŒÓö 9´…š R°N;‚„é‚;¨ÀL°„­8v€ÁÖ XÈ"¸§Ar õt:A%à„`/$-¢Õ̺fJ„òÓ•!2o6•ef„µPHÚÂÎlu’ çÊä·é’…`+¬Ó,ëóŒ§Í Û?èžP—Ðêt÷y:ãÞ H“!Ÿ×RU%—J‹ŒÆWü+ƒÿ¡§—„8ìäô)|¢ ›Æ¦Eó£ºÖÖ„:ÒòÃaÏ\“á=~8‰n T†Dp-¯ÍYw»ûÎ ¬q™f'Ôí«ËCè:BîÔDÏ3Ò÷ˆ¸©~¡„6TTª­ÖL—²t‰¢(‰DR\\ìt:3e Ð8;v¸ï;RQAv—““mäí_s£æÙ¯Ú ¦²3üF¦"²¬T˜ŠUE w™¢ š(µæƒ‰–ê‚|HÁÅÎì0Óuf?~Ôý±v¥ÝÎj§;Š3º¬-X+uFÍšiEÑ1" +&Û $\B]!œ·ç^V! IÆ5ä™g’{Î}Ï9ïÇ=ç>÷7Èk¹[—.1ƒEE¤¡%?Åwí"ïì%ÿ=y¹³÷O‡¹©èÌ ÒùŸüKŒ]Á Ɇ XW‡Í_ŽmÝFæÏÇ•«ÈöíøÎ^§Dèš[Ê„ù•âŒ‚ÕQ!tlhPÀÕýix&×~Le­WXë•Î)>¢=ªÄ“YìaùnÙ2:|QhhsóO=ï·Z¥…EÉŠ¢×Eº–`' +Å‹DÆ»ÌÛ»® Õ®³”Xëä|fÏé,u +ÛQžÈÀÏTf¬‚@ARvÔ¯ªßÊ+sE)M[µÜR!­onIÜ’¨€ÈåѺÞy>Ca·UTì jjj¤Í¡g½æÞ®~ÓÈš»Ç/Ì}_pÒ­©Í‰–/ì±ÛÜçÀ`¼ÇáÒvŽr¹¨SNtxRtÎ"uìF_wŸãù]çУŠÐ‹iœ”:×ÙóÎ û”ŒZ̦îìlÃ$êtsg—ñïM2F-d`€î7‚Þ¼KÕÕÕa ¼8l›N^áÅáMà<€ ôX^ÞÒzñUGç‡Sô ÊòÔqçîrU¸#é)Ûœª¿ ¡TÝééñu(sz½^,K$£Ñèk_æN"$6–ttй~¬[‡)©XR‚©?ÃÀ@ª3Q&Å·ØÒŠ+WaÞCa·UTì jjj¤Í¡g½æÞ®~ÓïÈš»'Ò£S/\ÏàÐ`¼çÅ-‡3LurÒ¨‰6îøì°é`EÇiC›äÞ$c‡žOZÝa8.r¯GEt‘…}JF-fSwv¶‚auº¹µË^¡©ÄÓAêêê0€€^¶M§ ¯ðâð¦@p@z,/ oi½ø}ä‡Cô ÊòÔqçîrU¸#é)Ûœª¿ ¡TÝééñu(sz½^,K$£Ñèk_æNŸ& ƒ1ñ-Ôé¸æþMTJLO'e»ÉÆ de4 +B‘›ÎâgƘ,ÿ žú+‘I‘aÈ¡C¤«‹pç+âý{¸mµ$J%®ÿ¾ÿ>[±í2FGcD¾û.vêÈ¿Á¢]œvÅêjllć=>—ý˜i`YV*•Ò"Ã0ííí¾vÇ?œÂ`0¤¦¥Ñg5   à>¯ýÜQTûÝâ-åÀ!a´Z­¯£ñcö€8¼œí°ØöUÕÐ %L ɯJP—‹7Çç”]sK™0¿RœùëØ¥+Þ¤cC\}/ OçØ©¬õJçTXë唶# +<™ÅÞX&[F‡/ + mn¾à©çýV«´°(à1<äu‘®5°“?…âE"Fã]æí]׬µë‡&[ëäÏ3£àé4{#4oŸg’ã™(c 0à'Ù‘ûóÊÄÓÖkœ¹¥BZßÜ’¸%Q‘Ë£u:½ó|†Ân«¨ØÔÔÔH›CÏzͽ]ý¦'^5wSNêqmï¬s|ªÓÎ<Õ`Z&ÍïNt-ö8vÆÔMéÎ*î/áQš9‹ë’NnaŸ’Q‹ÙÔ­`˜DnNí2òòáè!ÔÕÕa ¼8l›N^áÅáMà<€ ôX^ÞÒzñU†å‡Kô ÊòÔqçîrU¸#é)Ûœª¿ ¡TÝééñu(sz½^,K$£Ñèk_f?Æš¿"!o’5kHWm’[·qÓ&ÜŽ……(W`n.lǬ,²u+‰1(ˆútld„4A¥ +#£0#ƒ|ý5 àÇ#Ã`fct4IO'wî’\˜®IÂß §ÏìlN»†,ŸKqo%iû'ŽÚ}?¾_°,+•Jé ‘a˜ööv_»ã‡Na0RÓÒ賚ÐpŸ×~ýnñ–ràÀ0Z­Ö×Ñø1K@Æƈö¶´‹Åã/™™ Û°í·•5tCŧ„äW%¨ËrJ„›‹ãsŠE9%”—Xü]Ï–2Q~eBFÁêˆ!tlè‚€«¿KÅÓ9£ÇTÖzåpÒZ§ªWZ_æp½|¸^A/F*ðd{xãnÙ2:|Qè››/xê9;<,-,’<¦‚€¼.Òµvð§P¼H¬Ñh¼Ë¼ýÑõ¡ZÙðÁäáº|~Ö)›@zWn£yû<“ÏüPµ +æÏKÊŠ*¨NÌÛð]]Š§Ôëeæ–Æ«Ë©MìVDEFëtÞy>Ca·UTT/<{¶‘6‡¾í5÷uõ›žøéç«"kOɨÅlêÎÎV0LâÙeüK“p¿Ö!rå_¨¹†#6òü†GPWW‡4tðâ°m:ex…‡7‚ó2ÐcyqXxKëÅW¡ÎÑ78(ËSÇœ¸ËUMàŽ¤§lpªþ6@ +@„Ru§§ÇסÌ]èõz±X,‘HŒF£¯}™ý —/“ðpKîÝãÚ7n Béëñí·qÝ:ÌÉÁýû±¦†lü%ùÁ|@jÑ£”|c Ÿ|òöË=(ªëŽã¿•Ö*hEPkŒ@ã öî•”L—]ÆØB@FŤÐE˜ÅÄŒ&Õ4“IkÌÄ×"ÓZ5¯® +…*ðG¨ÑÈÌš â¡Ès×aõF÷Áîž_ϽF§± È ;ÊýÌ÷û8çÞßïwî9ç{É/gà„ŸãGáwßã+¯|!.ÄqãQ*Å’rð™9“ŒG”±¸ïSr¼‚h4¼I‘’µ¯’¢"r¶†ú!O×@äÑÂqœB¡ "˲µµµžGD¤_ÌfsdTýVà u‚÷ˆ‹ ÞïœÐR <2–5žÎFä ôöâ¶qE.iü·§cVz½ùytBGŽ[œÇ¤åÊ’²BµÁIZiRUHŸJΖ.^-‹KŸ=5h<íë;ÆëÔ†(ü*ɹGcÓ«û—Ò¦WÙõjçnîçvÆæD?M»OðXZZö°‘sv»"#3 €÷<Ã%ú®n€ß «P0#­®®\å]Mßڶϳm ·íŠŠ£ºoéè]e/­Û_àÞ¸Íq3`ô¨°øÀôüДY¢¶ïaú?§å2 —Ïžä0=¨¡¡qp‘?¦¸\îU«Öøøx è©õf§¥³éFW‹(QC%ÎÒÚ͵g·¥«5!AŲ¡#d–‘»G]×É;qó&´X„¤ß>ýªÓù\ÌaÕƒœá ÁÖH$%Ñ ¡Ë²Ÿÿ¤òŠÊ!ÌNäþ\ïé‰NIP p‘5É@,=U•„wõç"¦ª5ÚÚ<ÊÈÅd21 #—Ë;::<Ë“¹v ££yKùî±±‰|ø!a¤˜’‚o¢ü×$\Ž‡‘Æ«dåªÌmv65‘îrö,.]ÂÑ„x²i3 ĉ~$o-yýudD23pi:Κ…¿‡>£m·0#ƒ>ccÈ‘ÃÄx†\®#7{³:‹<>p§P(è†È²lmm­§Ãé³ÙE¿Õ0@àýâ"¨÷;'´TŒeF£§³yB 6;¡›²·7–Q{¥ÃÑ«Ë+ *8ÂgÉ«LZ®,Qœ”’”%Ò§’³¥KÖÈâÒgÿ"h<íë;ÆëÔ†(üûB×^]¯¶õ+¥U¯´ªÜEj<cGl¶bí>ÁwbiiÙÃF~ÃfSdd†´PÃsÛ; ‹è»þð²ðÌH«««WywóiÛöy¶­rû.åú¨ý¨hÖ]·¯¨ì…*­Û_¸÷hÞV=£%¿Z® MÎfµ}Ó=Z¸<8u…41kæäÀQÓƒêëùcŠËåZ¹rµÏØÆôÔz³ÓÒÙt£«E”¨¡giíæÚ‰³ÛÒÕš bÙІ†‘0Ëþgϼz熒Ùs°î2¹çÖÀHÕéüŠ. æ°êAÎð„`k$’€haYöóŸT^Q9tÙ‰<€ë==Ñ)©sŠ.ò£&ˆ¥§ª’ð®þ<@ÀTµæB[›§S¹˜L&†aäryGG‡§cX­díZôò"*%)*"ÙË‘KÖåã®8> —cI1qºÈÇÛpôOyÛ™–†%%xì8kJà8Ú×wŒ×É hHvï³ëÕ¶~¥´îŠµë•®=j<˜Ðµ#fùož¢Ý'øN,--{ØÈ9»]‘‘ÐL .ÑwqH—ð ÁRiuuõà*ïnþÖº}žuËs¶1BqTwÔgéT´nî" þ-Þ¹GófLŒ¸,?49›IÔ +ã¢íw¼îŒZHZ®4á÷ÏL +Lºr¥qp‘?¦8®ÜÜU>>Þ‡ é©õV§¥³éFW‹(QC%ÎÒÚ͵g·¥«5!AŲ¡ #k–as }gÎÀºËƒ{@ªNçPpI0‡Ur†'sX#‘”D¿,ûùO*¯¨Ú´DîÃõžžè”Ô9ÅùQ“ ÄÒSUIxW `ªZs¡­ÍÓ©Œ\L&Ã0r¹¼££ÃÓ±Œ ššð›0>/Æœlüଫ#íí¸m;¾Q@cIZZpÍŒ_@þôgòùçdãF’›KÖ­Ã÷Þ#_}û>Åõoâ£Äåä××ãîÝXP€´Á[oaa¡¤×é½ò +’’Bb•˜¶3µ¸e+}·‡+ ò(á8N¡PÐ ‘eÙÚÚZO‡#"Ò/f³92*Š~«a€:Áû ÄEPïwNh©ËFOg#ò„@7V²<›øù‘¯¿öt,ÊÃÑ›ŸW@'9n™Ž]”Ë&iC’²nKzçà^¥åÊ–éB5鳦øо¾crrC$MuçЫm…j‡^c׫©l?’Ê®W:õ*²/¿HìÜ£|ŠïîëWZVö°‘sv»"#3 Èp‰¾« `‘ð"eªÿ6Üͧ;æÛ·„Ùw¾`/T åRÙxÝ[4›p«W¯rïÃÏ^tìVçGO‡ŸIž{1ðåuϦäH2m߃uw4Sr˜—VËâ3‚ü¦ÁÓÓ‚.]¬\ä)N§3''×ÇÇÛ`8@O­·:-Í7ºZD‰*q–Ön®8»-]­ *– mhhôô‡?|ð ×Ìäùçq.‹Wï^{(Ru:€"€K‚9¬z3Ù·¿ù¯ÔáéÓäe¤¾ž [h|‹|÷=9B¾üKþË~ù@5uÝqü÷l+›X¡- +SÅÄ„'4*1‘?)”LþDœ×Z9k×õl]·¶NÜ©ö¸õ8ùSDD©Nüêl‘¶ž¹ìÌ£Q´£ˆ$$ò—€üÑ$÷íæV'i±™ø>çK¸ïåþn~÷Þ÷îýÞêì—ÔÍ›ÔÀÜÜŒ£PAµ¹€Úö1ª:Dµ©¢Æ+f³Y$á ‘$I…BáêtŠF£‰ +ñ³Ppö~£qØû]¤kÆ‚ƒ`’”Ëå®î Ã8ÙlTNåå…>ÿÜé“Œ«ABŽÍ‰#ºî½8ŠºÝç—o¼ãx¡M^óÖœô×BRr¸)¹³“s°¸ôçpá;ÜÔ\núkäš·øKVù°Üq¬Ï¤ç¾~WHOC»¥¶¢kq¼ã³+þöθAÆãK[aœ½8•'R‡Sô;$9Âi8ÜÃÓëø‰ãÎöÚÔ{ÑÚìù­E Ѐ±Ò}­áßÒ £W!.wþü?œJ{hôÛþeß)±nåÛ +cm% ôˆ ®»ºSe+Š·' ²Dª*ùvIÂÆE,˜HÌK +Xû+~Úzž²äÜÙI÷OÖì¤W +œ”\<§¼´õÁ™Càá þ~W›œó'Ǩ[­Ö¼uëÜÝ':¸—6Ñ:cG«É 4Z1™J‹¹ Y-FƒR*#ɦ¦fW?ü?.ø(ºp!5‡Dׯ;Þ:äôv*ËÏ÷(h¤Íaý£œam/Ä1xYžêísòÔéÇÐ7†£ïê§ÊØ5W³FŒÆÒcÕW `!€o|Âe•ÊÕ]yzQ«Õ<O hµZWçòT€îúÊb¡z{ïÞ¤-ú+>’ yE›BvÇe_?ÕÙ‰+Ä"»‹®†WF¸M‚?í¶!ljÏ8ýý¨§ݺ…úûþj0 †ñ‰Ùl‰DxC$IR¡P¸:†‡¢Ñh"„Bü¬†T\£½ßh\ö~éš±à ˜$år¹«{Ã0^À»ð«9ÈÓýýŒ«Sq–´³[mèÍüßኻhÊê·CÓ7„¦äò°’s¸É9¼ä\îH9¾JÍãelÉþõÜØ öó/¸ãØO·óï ©3Ôdª4‘*]J•.¡>¥U’0$Ç¥TY"µ?‰ªËÐíˆÏ™ï‹Ã=½¼kkkÍÜÜß'Î^‹—‘ +ˆA¸ü¸EÜ"ž>r¸œsçÎ9™8œ1óejß2ê/aTÙª|µ+‘´¥ƒãvO7ñ–-¥*—Qµ+úJ–æ†M‡ç&„'¿œý›¹éÈÔá²Jåê®<½¨Õj'´Z­«sÿ „è¿áö ˜Cô OBØÔˆêhx E£¡oÐÁáÿ³Ù,‰ð†H’¤B¡pu: E£ÑD…øY ¨¸F{¿Ñ¸ìý.Ò5cÁA0IÊårW÷†aœ€úûQFå>™ª=éê\œïîÝÝ·”Ê›*•¾½Ý¢ÕZtº.½Î¢×?Pø«®vmg›Ú¤V[,[ãm’4¿P/Θ¹œ™ÌÿlfTjPÌr¶+3Rìh{qRP”Œ+É$9‚€gžˆc½ÝÜKÒÃMÛ¥ªMqMïE_?ºuSL[ALÛ–UÁ ð¥j³¤õCIóïcZÞíØšxê "§àp¯©ÞµuµÎv¼³·/.+ !ÜB ÐРÐÆT¸Áv €ˆ.€Ãlz + + +jhhpvÂð”™zúOï½ú¡ø?ïó‡¨o7ÅÜØ£Úâ±áRo‘¨ÿ„ïGß(ˆ¾¾IÒº9V»}É—ùb±ŸÀ¿ùþÑYÁâåQjPdÚ,ÉŠY’Œz%ýJ¢W°£dìÈ4Ndo–ø%x^z‘w°ú«î>k»¾[©1Þìèì0XtF‹ÞÔ5n¤3vkuêv“º£Û|Ëúï‹MQ’DßiÓêj«(ÊÞÛ£3ê[Lz¥ÉÐʈјÈlTZÌmÈj1”RiI†455;»²=Ù´ªPh(bQW¿A÷ZG…,?¯êE´9¬”3l Íá‚8 /ËS½}Nž:ý8:Çð@ô]]âTÞk®8f¥Çª'®þÀBßø„Ë*•«»òô¢V«y<ž@ Ðjµ®Îåé ýw¸@ –‡×£ï}w1¥«ß­=;ˆ}ä¯ ¶y· û½fÆ+f³Y$á ‘$I…BáêtŠF£‰ +ñ³Ppö~£qØû]¤kÆ‚ƒ`’”Ëå®î Ã8õöR²åÔäÉTm«sq›ÝöõWç·lÿxÛ§%ŇËJk*ö«Üw¬²ò8­#U»o߉²²šÂª¢ê¾ØúÑ~.[@Lœâ6ƒ?}V8kVøt^„ÿQ@èâïHÌ"…,Î<ÑØ[ZŸfs¨«è{;eùùÞE´9¬”3l Íá‚Àkµø¿ì—PWÇ¿/$½?UDâ(gÅ’"©&KøSSIÜx½éù§3Ü?éulµÓkG«Wo< +Œ¢­­N•ëÌÙúßÊUü;x½ÑééôÄë\Jõ®3© F†SÁd&aMõD÷Ýî‚B +‘tVp?óÍÛ·oß¾ßîËï}ˆ´ Œ;Qv2ò±)„À Úægé¥Å±Vüjd0–^ˆ®¾ÈâæΫij’;”G—Ëe0Ìf³Çã‘{,#ž®ÔÈKˆ¿=2%/žÞKÒ%©¦«êÞõ{?|w¯}3nÏÚ^RÙpDz¬° 2 ãt:厂BHÜn·Åjæjp¨“¼ß`\„àýª¤–³!bd‡Ã!w4 +#…ëm´ €_´ˆVWÉ=”ððy¯þæׯ ÿˆIñQ6v´Ñý”.Z—£ÓÅ&èÆêzKª‰Ñë£ ÆѦ”QægÇØl£gÍT³VÌ´Â’¡šþLTšIebÔŒQÃÕ÷ÉhP'3šSTzšÊ2#ŠeU¬ ¶YÄj¤2[ÔÆô¨$F£{Z?EŸ¨™<¥—â“KxZ3Å IËмð õ KÔ÷qÚXmiii¸ßê¸õçÍëSS“ÒÓÓ­Ö©fsbZº.5%!%Yg2é’“#&Sr‚I8¦$¦¦N›>==Ã2ƒeŸÉÈ`L¦ ^v:Þ0~ŸÿÕß½.¥1$=¡z.5*5)*q¢&aÂcñq½5AÔä8MÂD͔ɣNýìTͬd5Ë™F2sšÊ2U==Q•òd39Ê8Im˜ÕâÕÂUÓ“êôÄ(ËTk„ ë4b™úÃúè´„QÌ£¦ý$:iÂASÆGw%¢“4>&I(O=ubôtݨR7?õá…'ê™o¾9Méíí-~ïÅVß%EŠ"%Îßà.ó¿¯13sØêëÂÍÛÍ_EWü‘¿xQ:{š•­ +s’9´ä Ë%sXIÈqÀqA‰ÕŽ;Qv2Ò)„Ä Úægéc@­øÕÈ`,½ ;]}5ÄÍWÓÔ$w(..—Ë`0˜ÍfÇ#÷X¾+1†¸v.Â] +ÃŽãX–D†aœN§ÜÃQP‰Ûí¶X­Â\MŽu’÷Œ‹¼_•Ôr6DŒ ãp8äŽFa¤Ðq‹ÿºœ9B›=ÃkmnnµÙ^þ bǬ]‹Ü\¬\‰UùÈ_ü5½µkVã½µX¿6`ãFlÞŒ½E(>„CûQôî®mؾÛ>ÂÖM÷kË&lû˜ìØŠOv`ÏnØ¿ÆgáÃØY„‚íX¿k7!ÿCämDîäõ”P³yXõ'|°»?ÃÊuHÔ‹ÿåØXmIIi¸ów¨øhwáºO÷¼_\üΡC«öïÏÛ·÷í¢"A9‘ÓÛE{åì-Z¹oßšƒ×o>|x÷;wî:räH³§9Ü‘_i¹’õÛÅÈUøÕO±+—!o!r_AÎ"äöPÞÝcþkxç ¼¿Ë°-ûòQ¼Fu0{V`÷rì\†íK±u ¶,îOK°m v,%Ÿ¼…OWà@ŠW“ƒ+ɶ¥øp6¼‚^ƺ—ð^ÖŽ½ûâÝò|¼+6.@á›XóKLøâu)_Ÿþ¥·¯··ø½[½­¾KŠEDœ¿1À]æ;~_cfæ†1Õ×7„›†#<½»mk£_~ÉñßÚ*Õ…½œfegkBàœdí9ÃrÉVr°ˆ Šv܉²“ŽP!4Þ`Ð6?KX̵âW#ƒ±ô‚ìDtõÕ@7w^MS“Ü¡<º¸\.ƒÁ`6›=ÜcQPP*DZ,+,ˆ Ã8N¹‡£ ·Ûm±Z…¹šê$ï7!x¿*©ålˆÆápȈ‚§áocäÆë >÷³?ètäüyPÚ)" ý©ï¥¾§=Õïí=/…ªé÷éÝÛxýXü¦¸‹‰Ñ–””Êý"‡χ1q®®-YºL|²%;T´ÐfBk¡ÕtŠÐjÐ*Ig ={·,H¨w±AMŸjÈ=9¥–UD’tc%h…tìîg„I|-ÒÛþùß·XÌ"v|ò?ÊNQzûz{‹ß{¡ÕwI‘¢H‰ó7¸Ë|GÀïkÌÌœÃ0¦úú†ï/í<\ð÷- |XY±›¬ìl-Pœ“Ì¡} gX.™ÃJBŽ6ˆ J¬v܉²“‹Ka ¼Á m~–8ÔŠ_ ÆÒ ²ÑÕW@ÜÜy5MMr‡òèâr¹ ƒÙlöxêúëÙ99Bàbðyhhè¿ÿ¡å _…¡öå^/é¾[x{¯–½û—*Ë;ßñÐa¨ÎpìRhvñ¥ñ§AëpóßxÆQcŸ—œ¢ôÎͶÿ•‹­Þ¦Vß%EŠ""Îßà.ó¿¯13sØêë"™;Nz¦G!-¯Ñ¶v± &é°³gÖÿÙ/Û˜&¶4Ž?sõ‹F èòIÍš@RF¢&Ø´»häCE¤&»šè®oHL”FôƒÆ¸kâÕ`„/â ÄE"ÊmY´bÀ«ååJñVÞ +ÅÛ2i©P ³ÏÌxYõ^äå"sÑùñ9sÎsÎœgÎôœÿèt2€l€&ÞÇr†¼9¬£¨5pJˆ,To(›Ú%>ƒÃãQ'iʹU£ÆcéQFŠsõõÑaëâ:;ÅNåÛÅf³Éår…Ba·ÛÅž‹„„Äï…a•J…"MÓf³YìéHHŒJww÷j¥ßÕ·šyï7Þï ‘4m2™ÄÎFâk!`««IÙ‰Û-öT&F_Ÿo}‘¥K¿³¼B(^Àr¢ð?ùXìÿ›(¡üK¾;0^ }ßÈŽÜH¨ü$øýÄFîèr¿þÉLJ>x`˜DîìÇš~&wߟï@ÚALüOAPô=E,@j€}ÄH‘Ç(øma«qä’ú @±¿èW]~5ÂÇ?hýì­g¢¸ÇÅ=1õH5ø#µ+æÉ‹Tâ÷y{\oÛ{Ö^g‡$IS"Æeu3]ì°Ûå´j4q4e±´Lý¾óGƒ%,Ëa3ìï'O*ÙŸ‘AŸÐ2ÑÁ´:  ‰7‡Æ±œaoë(ª@ ü" ÕʦÃãQ'iʹU£ÆcéQFŠsõõÑx®‹oèì;•o›Í&—Ë +…Ýn{.3’ÖÖÖ³]PPðèÑ£7n\¹rååË—Øexx¸¶¶6777###33ƒÛÛÛ±þÍ›78+ìˆcâe¿Á`¸yófOOÏt?S‰ßÃ0*• +Dš¦Íf³ØÓ‘•îîîÕJ%¾«+n4óÞo<.½ß >28"i7F±³‘øJ`.ò÷?/%eVìÉL¯w0!ápDÄ,k‚¢fŠ¼^jç.î·, Õë b?ÈéÃçLK;ˆ‰‡CÑI Í@j€<–ôEÄV©£ü?Q)ñ0/ˆ¾«¯"Ä?ð®ÇåhëuvH’4Ub\V7ÓÅ»]N«FGÓQK‹ØûÍ4À}Ô²lNÖòšý[,Q«Ø†îrâciu:@6@oc9à +ÞÖQT €(ÜWCd¡zCÙÔg)1 +G¤ (häV¥G)ÎÕ×Dãi¸.¾¡³SìT¾]l6›\.W(v»]ì¹Ì{ö,""bñâÅ—/_NIIÁŽØ=''‡Õëõ8àÞ½{׬YæÌ™ššš×¯_:tÃpeñ²¥¥%&&föìÙééémmm'NœX¶lYbbâ½{÷ŠŠŠ¢££—/_ž——‡õsæÌÁ^qqq===ÀùTVVŠü”%&Ã0*• +ב¦i³Ù,öt$$F÷ÏÕJ%¾«+n4óÞo<.½ß >28"iÚd2‰ÄWÿ]ðó7ì$>gÄÂëJØp$"b–µAQ3EÞ>ع‹û-ËBBõzƒØrúðùÓÒbâaÁðÃ÷@^[ äÇ’¾˜jÀ_)ñ0?ˆ¾Sö”ÀÀ»×Û¶^GG¯S’¤©㲺™.vØírZ5š8šŽ²XZÄÞo¾8,j +Ç&÷G$NÐI¥ZN ÐÄ›CãXΰ‚7‡uU  +÷ÕY¨ÞP6ÕYJŒŠÃãQ'iʹU£ÆcéÿÇ~¹Æ4µeq|IÀˆ‚¶¨LDAÛ#ZµZ°¼ßˆåF‚Å™@A!Šâ-1yˆ†| QÁD‚7âU¹Žo,˜XÁ8G«‚!^b±Å*Ú‚Óö‚=³ZçÃLr`„äüòÿÀ¡kï³ÖÞç¬ý?(aqõrž†¡aϺ»é.eê¢R©8ŸÏ×h4tç2ùËå>>>ëׯçñxØÏŸ?¿dÉìHŽŽŽ†kƒÿY¾|ùñãÇÅb±^}šÇã]¸p!??Íš5W®\¹víZ`` ‹‹‹§§gaaa]]Ý7$‰ŸŸŸH$***JHH˜9sæ† 233 + +êëë¯_¿îåååïï_RRröìÙ¨¨(œíСCjµïÒÖÖÆårqÂóçÏÇÇÇOŸ>Ý××wÇŽ8Û‘#GÊË˳²²‚ƒƒ}||ÊÊÊŒF#ijjš?~dd¤^¯7™Lb±˜Åbåææb ,8|ø°N§û\ÂÕ«WCCCìíí×®]‹óx{{çä䤦¦ÆÄÄ444Ð¹Ä cD«Õ +…B<I’T(t§ÃÀðE°¿yzyá³Ê¨è°z¿Ñ¸ô~mÖÈ`°À%ÉÆÆFº«aøQøóOóo¿QgÏ™{z¬×ßôICCC&‘(ÃÝÝF©Š"&‘†A,¶¼Ël–“TZC÷BNF£I"IÇÂçÀ­ Ú ª (A=Fã¢: ša¸RBaÖlòNícŠúdøø®ÿ}×@¯r ï5#FßEÚ~¥NûÆ<¬ëïSFF†¤Ggç+ºûÍÄòáõË/æk¿âÉ„‡¨yìitZ à…Õʾæ ë­æ° Àì«,¶“´¦vjcøkzõzï­Ñn·ž[v¥GÉ‹«—ð4 {ÖÝMw)S•JÅápø|¾F£¡;—IÆàà`rr2—˽téÒñãÇ]]] + +úúú***ÂÃÃSRR²²²8žž^\\,‘HâââòóówîÜÉf³q`ll,þzîܹ]»v%$$\¼xñÌ™3ÑÑÑ6lÈÈÈxûö-ÞH¡Pxxx¸¸¸”””`üÂ… 333÷îÝ»dÉŒ,--=vìXDD„¯¯/7 8¤¹¹ÙÙÙyóæÍ:Îd2὜œœ0 ¶··ÏÎÎþ\ÅÍ›7·lÙ/X,VRRÒ¾}ûV¯^-‰¢¢¢¶mÛÖÒÒBç*3Œ­V+ +ñ@$IŸºÓa`ø"jµÚÓË ŸU@@‡ÕûÆE ÷k³Fƒ.I666Ò] ÿ ÔÏ?›üÍ--cÿ”¡“¡!“H”áîn£TE“HCƒ [Þe6ËI*­¡{!'£Ñ$‘¤cáÎsàVPíÕ”Œ £ñR3Œ´BJ(ÌšMÞ©}LQŸ ßõ¿ïèUô½fÄè»HÛ¯Ôiߘ‡uý}ÊÈÈ’ôèì|Ew¿™PÌ*µ3Îü÷˜Õ=–KjÌÇitZ à…Õʾæ ë­æ° Àì«,¶“´¦vŠcøkzõzï­Ñn·ž[v¥GÉ‹«—ð4 {ÖÝMw)S•JÅápø|¾F£¡;—ÉÙüßæV]]½hÑ"‡   7ÚÙÙ…„„\¾|977700P"‘Ü¿Ïž=Øš–/_~÷î]™L†—©©©ÁÁÁsçÎÅÈÖÖÖU«VM›6m×®]•••ååå'NœÀáûöí ‹úô)ÞèÁƒnnn+W®,,,ôõõår¹r¹\*•â$3f̈‹‹ËÈÈ÷ôô<}ú´^¯Ç!=rtt øðáƒÁ`ˆµµµÍÎÎ...^±bELLÌç™M&S^^žP(FFF*** + + +ž¶vêÔ©`_6›­´´;íííÅ°ÎöíÛwïÞ]WW‡=9r;D"x [`YöرcSSS‰D¢¦¦fëÖ­W¯^Åt:V«={öìñãÇ1’3gÎ \¿~}Û¶m/^\ÈîàÁƒ›6m:tèÞ’pÀ)˧'D\‡Cêp(”EÁ]±H£Áµš`pŠÞo).½_—X³Ò䲬Ýn—:ÊFa~^øû A®¬6©CY±X¢¼¼V©Ìà8 „YGŠEÁ`H¿Ër™Âl¶H=kG<ž0k0ñœlhªÒÏv V†Ø€jµÔ ÉOPU™YlsK!©ÙéÉ o8äçBQ*ªäÂü˜ \YÙ>–Ýår J½ß¬-Ba!Ù¹“  „ø·LôÕÕr€;}¢9´~˶Šæ°à%€ÜWer…ÙÒ²ÉQþ/þHDwX¿à@ozÖ˜¥Xz”•I»ún€B< KJ{Ün©Sùqñx<*•J­V{½^©cYOàp=~üøÍ›7sss %ñxÜb±466~øðáýû÷.— ñCC–¤R©h4ÚÞÞÞÕÕ…wŸ={¶Pa``àÑ£G­­­Éd2‹}üøñÓ§O³³³‘HäíÛ·ÿyøðagg'¶€]`&“Éï÷ã³SSSØã«W¯ð»ÝþîÝ;§Ó™H$ð–Ïç{úô)¶°p‰b`===ø{ffæ×_½ÿ>¶|ëÖ-¬6>>Žån·£Âv°#¼ìîî¾wïÞëׯC¡4CLù.xž×jµx ²,ëp8¤‡BYÜyŠ4\«y&§èý–â"Ðûu‰5‹!M.ËâÆ%u6” ‚J 'Oy6±Ù¤ŽeyÄb‰òòZ¥2ƒã€f)ƒ!ý.Ëe +³Ù"õ@®ñxÂh¬ÁÄs²¡©H?CÚXbªÕRÌwBU df±Í-m„¤f§'ƒ¾áŸ F©¨VD| ócB2 peeûXv—Ë5(õ~³¶LL‚|’›+ á•°üôÕÕr€;}¢9´~˶Šæ°à%€ÜWer…ÙÒ²â™QÉèëw¼èMϳK²2iWß Pˆ§aIiÛ-u*?.G¥R©Õj¯×+u,ëAømo‹F£CCC“““_K¿ßŸºáp˜çùH$‚%333X255…¿“Éd(±ÂÄÄÄB…ÙÙYüåø{~~ÞçóƒÁ…6±æÈȈÓéÅj ]·ÛÇ.±e|ÄÖð^b#XžH$ÆÆÆpNS©I/ľöˆLOOc#}}}½½½øøB!>‚õ¿öŽ=~ùÚ5e]€kO«ÕâȲ¬Ãá: +eQpo,Òhp­æ˜œ¢÷[Š‹@ï×%Ö,†4¹,k·Û¥Î†²QÀCóä?™L°ý"u(Ë#K”—×*•„0ëH±( éwY.S˜Í©ríˆÇFc &ž“ Mõ@úÒÄÊP­–:`¾ªJ 3‹mniÃ~vz2èù¹P`”ŠjEĹ0?&$ÃÁWV¶ew¹\ƒRï7kËÄ)ÈØ\ah¯„å7 ¯®–ÜèÍ¡õ[ΰU4‡/tÀà¾*“+Ì––ÏŒ²þHDwX¿à@ozÖ˜¥Xz”•I»ún€B< KJ{Ün©Sùqñx<*•J­V{½^©cÙÈÂwlŠʲáy^«ÕâȲ¬Ãá: +eQÆÇÇ‹4\«y&§èý–â"Ðûu‰5‹!M.ËÚív©³¡læçÉßþ*lÉÞü[êP–G,–(/¯U*38aÖ‘bQ0Òï²\¦0›-RäÚ'ŒÆL<'šêô3¤ˆ•!6 Zý¤æ;¡ª2³Øæ–6BR³Ó“AßpÈÏ…£TT+">È…ù1!¸²²},»Ëå”z¿Y[Æ<Ÿó…Ü\20ð} è««åwúDshý–3lÍaÀK0¸¯Êä +³¥eeÓ¢üþHDwX¿à@ozÖ˜¥Xz”•I»ún€B< KJ{Ün©Sùqñx<*•J­V{½^©cY‚ð¿—ÿU¸öaP( ð<¯Õjñ@dYÖápH…²(ãããE ®Õ<€Sô~KqèýºÄšÅ&—eív»ÔÙP6 +ssä矅ÌÍ‚Å,u(Ë#K”—×*•„0ëH±( éwY.S˜Í©ríˆÇFc &ž“ Mõ@úÒÄÊP­–:`¾ªJ 3‹mni#$5;=ô ‡ü\(0JEµ"âƒ\ø?ì—_K#YÆŸÓ^ v’ ?nǃŒ, ³°hd^†]v¯vÃ0xп€ÌØ¿À. "*»K’Ù%Žà,I·Æt°]+&t4©”‰q’˜äœ9UÚ½ÝÓÚFÇX£žOŠâÔ['ï[Îû”¶Ïj5§x½C”ö&;f¯7w +SÖ÷kþìO¼¼Ù ¾@À +L›†9Œ\å — sæ7ˆXW-V[0¾Ýº$![,ºG}]À°¡ß5ÒŒ¥ŠÝÕ¯ý¢z†×“I³Ky¼¤R)»Ýîp82™ŒÙ¹Üc78taX“ñ×âÃ92 Z—€Ät4Ms¹\¢!RJãñ¸ÙéH$—’N§œNñ¬ö3À¶áýšqÂû­‘ƒÐé¡4š]äÀ~øúX{;ÿWÈì\®G©T™ìînSpNî‘JÇðûõwÙj±ƒ÷ì²ÿ*•êøø„(¼ó)f§À·_¾©V)†úsŒyÐÞAÂËœ7Ê'êán>«äs{RR·"MU +Ú>«ÔœâõQÚ›H옽ÞÜ-ÿÛeŸ|ž=ã››üFŸœ¾@À +L›†9Œ\å — sæ7ˆXW-V[0nAm’‹É‹îQ_0lèw4cé…"Dwõk@¿è†žáõdÒìR/©TÊn·;ŽL&cv.÷Œ¬rךóÂùßþä(3¸ñ53.¹hšær¹DC¤”Æãq³Ó‘H.%N8âYíf€mÃû5ã"„÷[5"¡ÓCi45»ÉC¡tÌÿü'þ«.¾ø­Ù©\R©:22ÙÝݦ(àœ\Wìú§ÜÖé¥cøýú»lµØ‚ÁÙòî¨Tªãã¢ðΧ˜ß"|·'%u+ÒT¥ í³ZAÍ)^諒‰ÄŽÙëÍqþ ™LòÏ>c¿ý ùR¹þ§¥/°ÓÀ¦a#W9Ã%ÃÆ€yÀ "ÖU‹Õ …o¹<Éåd‹E÷¨¯ ˜6ô»Fš±ôB¢»ú5 _tCÏðºxx$&‘J¥ìv»ÃáÈd2fç"yfðîŽDr%š¦¹\.Ñ)¥ñxÜìt$’KI§ÓN§xVû€`Ûð~͸áýVÈAèôPFÍ®Fò@`õûþ{þòƒC³s¹¥Rudd²»»MQÀ9ù¸1oEÞÙê;ŒΞ;`Æ8ÓOÑÏ2Døû§ëñƾˆ?[c†73L¥cøýú»lµØ‚ÁÙòî¨Tªãã¢ðΧ˜ß"|·'%u+ÒT¥ í³ZAÍ)^諒‰ÄŽÙëÍÝ¡·Qñ+ó|ž×ëì|èzø+0 læ0r•3\2Ìa ˜Ü b]µXmÁP¸õI.&[,ºG}]À°¡ß5ÒŒ¥ŠÝÕ¯ý¢z†×“I³Ky¼¤R)»Ýîp82™ŒÙ¹H$’Ÿ‹¦i.—K4DJi<7;‰äRÒéô€Ó)žÕ>`Ø6¼_3.Bx¿U#r:=”F£Q³«‘<Ø{÷€R©:22ÙÝݦ(àœ\%¼Ý’ïþKææñõ×ä›oL‚11¦=—ØgìݳŒ‘ó˜w'$ggåóä¯ÁßþŽrùÊLHé~¿þ.[-¶`0dö…¼;*•êøø„(¼ó)f§À·_¾©V)†ú ŒyÐÞAÂËœ7Ê'êán>«äs{RR·"MU +Ú>«ÔœâõQÚ›H옽޴öÁ>ÓÅnÖJ}€˜6 s¹Ê.æ0Ìn±®Z¬¶`(|+¥Iš![,ºG}]À°¡ß5ÒŒ¥ŠÝÕ¯ý¢z†×“I³Ky¼¤R)»Ýîp82™ŒÙ¹HÎi4§§§õzýÝÁšÁ‡Áb±{õõ"i%š¦¹\.Ñ)¥ñxÜìt$’KI§ÓN§xVû€`Ûð~͸áýVÈAèôPFÍ®Fò@лi^å½߂ù”JÕ‘‘Éîî6EçäãbgÛ ‡ñ‡?âÓOÉ矓/¾À—_⫯{Nê³IÀª§¤ÑÐã+¢‘£#T*ÿÿ‹:#§urZÓƒß*²H(Åï~OTõŠL„JÇðûõwÙj±ƒ!³/äÝQ©TÇÇ'DáO1;¾Eø +x„ðEHµJ1Ô_`̃öº^Ž»|r îæ³J>·'%u+ÒT¥ í³ZAÍ)^諒‰ÄŽÙëMËag ôì“´Qg¹¬ø&y3ÆÞh_ `¦MÃF®r†K†9Œó€D¬««- +ßz™’ËÈ‹îQ_0lèw4cé…"Dwõk@¿è†žáõdÒìR/©TÊn·;ŽŒ°Á³©V«âFììì$‰×¯_×ß|˜½zõjwwWUUÆΗÖr¹,bĸØÖj5ó²–ü‚Ð4Íår‰†H)Çãf§#‘\J:p:ųÚÌÛ†÷kÆEï·jDB§‡Òh4jv5’«7Øì—mlS×ÆŸC4¶Píª|ÚX'‘ÊÜ…Æ D‰ÚUJœ‚ë”Dc”.hÃbJ €£dy¡”Œ&Ë::ªÄÚ@Wña«D²TfGkœ¡BEPçÕÁ„$7ةؾy±›$÷ì\OÛ7ˆƒB®DîO¯ì«£ãÿsï=çÿÜ·Ð/ëD@îZG01+âããx”’$²#ÆÇɱc„ã™IŽ%Uï’“'ÉéÓ¸ÚˆAšfcVMIo/<"Šdp6Ûª¯¿&v;açÙ B€ôÀyƒƒì Âa|?‚Á!rîc<ó vì ££¬˜U.&8“IZËj•Æb±Ê}!—p8R\\ÂŒoXúÐ^BoƒÚm¢'¥6̵£@µë¸Æ¦”ÎÏ„¼þÑÀð )R´$üü„p_œðûxƒ!“ãœÎ~¹÷›å@Œ~¤c0H-±ù_âL8zn^\äT¹f³¨z¢áжP2¼ ‡mÀ „í«*µÆbmZz“ +alr2='wÐtKwÄé™lDJõÀ6Ö õY]ÃÃr[Y¹¸\.­V«Óé<ܵ¬t¦§§ óóó«««/_¾"‘Hss3ûY¥²²Òjµ²‘###/^,---//?yòäÙ³g»»»åv  ?‚ ¤¥¥±†Èq\gg§Üå((<·Û½=5•=«‰@àˆf¿XRË~öèÈ Hlæ¸ÖÖV¹Ý(<-ø}ôu#}î9jµ,öEF^‚ÁˆÑXÇó ”,$i̵¯È³ÏbW.qô¯vܽ G.œ'G îK27GÚ¾C^Î×b& ‹¥¥d_Ù³Ÿçòñ9ì}‹"}„/êpáÊÊÈñã$7GZ›»A…‹ NÁd’Æ«U‹Å*÷…\>ÂáHqq 3¾a=êk@{ ½ j#´Šž”Ú0׎=Ö®ã›nP:?òúGc|À7¤HÑ’HðóÂ}qvÂïã †LŽKp:ûåÞo–©kŠì öõŠÉ:š’Lûúo¦\³Y Ô=Ñph[(^†Ã6à +ÂöU•Zc±6-©=…G169™ž“» hº¥»Fb‰ôL6"¥ú`ë†ú¬®áa¹­¬\\.—V«ÕétGîZV:^¯·ªª*%%%;;»¦¦¦¡¡¹sçNii©Ñh,**:|øðÎ;ËËËív»Íf;xðà®]»ØÉýû÷gddœ9s& +ÉmBAfAHKKc ‘ã¸ÎÎN¹ËQPx(n·{{j*{V:ÀÍ~±¤–ýìÑ‘ØÌq­­­r»QxZðzé+¯Òý6Ô‹rײ(‚ÁˆÑXÇó ”Ä |üGŽšÉü<ðÏk°5ãæ·¨ªÂŽ,òá‡xð€|ó t:¼sœÌ„qó&N@ +‘WŽï«…˜ÍHL$¿z‹œ9‹÷ß'¦ýä׿ÁŸNa_ââ°ç—„…+ NÁd’Ö²Z¥±X¬r_Èå#Ž—0ãÖ£¾´—ÐÛ 6B[ èI© sí(Ðcí:®±é¥ó3!¯t 0Æ|CŠ-‰??!Üg'ü>Þ`È丧³_îýfYÿ÷éê_xAüÙó´ý»Ç›)×lVµ@O4ÚJ†×£á° ¸¤ƒ°}U¥ÖX¬MKéNá‘ŒMN¦çän€n鮑X"=“H©¾Øƺ¡>«kxXn++—Ë¥Õju:Çã‘»–•NOOOvv¶Z­.**r:ãããìxâĉ7îÞ½Ûn·ßºu+///)))??ÿÀÉÉÉ{÷î½téRYY!dË–-l¹M(ÈŒ iii¬!r×ÙÙ)w9 + +ÅívoOMeÏj"P8¢Ù/–Á²Ÿ=:2›9®µµUn7 +O ÓÓâÅ‹be%ísˆrײ(‚ÁˆÑXÇó ”Ä ¼÷žôöTT$w8ðÛdfb×xù$'ãD8Œžÿ)9r„L‡ðíMòÙgx· +))Øi`_HöäEŽœþ3œwIÉïˆZƒŠc$Ä¥/ RÁø:Æ| œ‚É$­eµJc±Xå¾ËG8)..aÆ7¬G} h/¡·Am„¶@Ñ“RæÚQ ÇÚu\cÓ JçgB^ÿè@`Œø†)Z ~~B¸/ÎNø}¼ÁÉq Ng¿ÜûÍr þÿðÑO>¡§?ÝîÇ›*×lVµ@O4ÚJ†×£á° ¸¤Cjm*µÆbmZ:s + 069™ž“» hº¥»Fb‰ôL6"¥ú`ë†ú¬®áa¹­¬\\.—V«ÕétGîZV:½½½ÙÙÙ*•ª¬¬ÌëõNOO777ïÛ·oëÖ­§Nb?§¦¦Î;§×ë CVVVRR’Édºzõjuuõš5kRRR‡Ü&dF„´´4Ö9Žëìì”»…‡âv»·§¦²g5¨ÑìKŠ`ÙÏ™‰Í×ÚÚ*·…§…ùyqp@d›çä¤Ü¥,Ž`0b4VÄÇÇñ<(%1Ÿþ?XMÞ|“¸wEÅxé%$¼ˆ„¤$£ò÷dä{ü£?ù11ňçÏ£ðLûô—QR‚×vH#ÿþ7„B8v «W“·ßfÿŽ¯®A£ÁkYÄë]¸’àL&i-«U‹Å*÷…\>ÂáHqq 3¾a=êk@{ ½ j#´Šž”Ú0׎=Ö®ã›n°?òúGc|À7¤HÑ’HðóÂ}qvÂïã †LŽKp:ûåÞo–‘Šâ¿Ì> ÷úÅ^=ÞT¹f³¨z¢áжP2¼ ‡mÀ „í«*µÆbmZBw +flr2='wÐtKwÄé™lDJõÀ6Ö õY]ÃÃr[Y¹¸\.­V«ÓéþÃ~ùÆ4‘æqüûÈ‹Ý7$B9ã _˜} Œ((áOZqÝ`ÕmªPâ.ÑÕl0«hÎÃ+Ü…½·ç)Ê n/$ìË»ew_¸FXL +Þ¥Ä,w»% X<ÎVËŸvhii í<÷Ì ž®AÀÅ•ùäK™>ó›éï7óÌïùŽÛíV:—ÕÎÀÀ@III\\ÇqgÏžmhh8yò¤N§cŸ}}}s1÷îÝ«¨¨Ø¾};»e[·nÍÉÉ),,,((ÈÌ̼xñâôôô\˜ø¨1«¬:AÐjµlAd³ÈÁÞmUT^U\.Wn^›«À Oö~KqÌûuË‘Hã8›Í¦t5*oâÛ¯>@Äh¬JI‰ãyPJ– ôß#Æ}$%çÎáÆ RslßNÒÓ¡Ó‘÷Þ#ÄÅ‹(-%ë~…ßšÉõëD¯Gú&cs:vìÀ©_³Ã±{7š›ÙÙÖ|õá6¡¤„45‘ßýž¼õ6)*"££‹'˜b¿"=ËšÄ$‹¥Ué ¹,~Ö ‡#fs+|}®VƒöÚ j%´ª^–ìˆv¡Løµ\s[¥±PpÔ36äç½÷U©Z Þ'Œˆ³>Ïo0ìâ¸ôþþ•j:¯,¢¤Ø£ÿóÍQúòBmÒT^®€ÙZs†7eshš뫉š$KkÛJV¨ò\Æý~]‘)¸Ü‘îYŠ¥g²ÉÕßrØj¨ß}{xXéRV/N§3555++Ëív+ËjgppðÀ¬•­[·îøñãgÎœ9|øpvv6Ûîíí‹ééé9}út~~>ß¼ysrr2»}7nܲeKcc£øbÍWå B­VËfÇq‡CétTTÄåråæå±¹š\údï·Á¼_·Y‰4Ž³ÙlJW£ò†À–Q‘çÅž ½^ j 1«RRâx”’ÅÄbàŸ"—/“Ü\|ø!©«Ã§UD¯'{öâãQRBŠMäDŒF¼ó>ûiiÁûïãÝw‰ÙŒÂBràùçä£ÃäƒðÝwÒ/þû_Òy +M,X:ù„x½‹'˜Bi©ô,k“,–Ö_ö²ýß6-|»Å§ž<≃–oÀÂáˆÙ\Á +_Ÿ€«Õ ½„v‚Z m‡ª—%;¢](Ó#~-×ÜÖAi,õŒ yÇyïÄ}UªVD‚‡÷ #â¬Ï3Á »8.½¿`¹ýáõäQgfÄÁAúß!qvV|‘îHMåå è‘Í¡u1gxS6‡v  а¾š¨I²´¶­t* 2î÷ëŠLÉÀ5àŽt×ÈR,=“•H®þÃVCýîÛÃÃJ—²zq:©©©YYYn·[é\V;‡cÏž=¦²²òîÝ».—«¥¥eß¾}›6mºtéR8žœœ¼|ùòþýû:´wïÞŒŒ ¶Q[[[RR’`6›ƒÁ ÒE¨(Œ Z­–-ˆDZ¥t:** ÂZ\n^›«À Oö~KqÌûuË‘Hã8›Í¦t5*o +ÓAzâݶþø£Ò©,@ b4V¥¤Äñ<(%Ï—øhá0±ZQ}>KÎW£®ׯ“®.XZñù_Q[‡º:RSC~øn7¾þ55øûßÛhiÁ?ÿo¾Á—_’în +ƒª¶–ÔÕá/Ÿã³?â»f„B‹'˜Bi©ô,k“,–V®øø½¿>ù+νϊAolìž8ùFgÇÏ¿êŠóZ6ápÄl®`…¯OÀÕjÐ^B;A­„¶CÕË’Ñ.”é¿–knë 4 +ŽzƆ¼ã¼wâ¾*U+"ÁÃû„qÖç™à †]—Þß?ð³zÔëÀãž(m;bQ‘h*¢##?ÙµDLåå è‘Í¡u1gxS6‡v  а¾š¨I²´¶­d…*ÏeÜï×™’kÀ鮑¥Xz&+‘\ý- ‡­†úÝ·‡‡•.eõât:SSS³²²Ün·Ò¹¬v:;;‹‹‹wìØqãƹ‘h4Z__¿aÆmÛ¶ÕÖÖž;w.;;Û`0466ž?~çÎ.\˜™™afffæææÚíveKPQA´Z-[9Žs8J§£¢² .—+7/ÍÕ à +Ð'{¿¥¸æýºåÈH¤qœÍfSº•7…PH,2‰o½M¯·(Êò"FcUJJσRò|‰âJ!Î ˆË&ß$b1éðX~?ñùH0ˆ©)Jƒ‘0yøN'Û…htÍÌ ™žÆT€„Ãs¿ˆÙ&!lœø§¤½1q‘L˜S(-•žeMb’ÅÒªÈÕeÑùÏ'Çg¦ý‘ï¿5–†¿ÿ"ôÌ Ë¯¹ÏÆ.p8b6W°Â×'àj5h/¡ VBÛ¡êeÉŽhÊôˆ_Ë5·uP G=cCÞqÞ;q_•ª‘àá}ˆ8ëóLðÃ.ŽKïïx¡ÎôÚ28DÓ8ºq£ØÓ+wÆe·GSy¹hzdsh]Ìޔ͡ht ¬¯&j’,­m+_šÊŒûýº"S2p ¸#Ý5²KÏd%’«¿ä°ÕP¿ûöð°Ò¥¬^œNgjjjVV–ÛíV:—ÕNoooeeå‘#G¬VëãÁŽŽŽÂÂBNwêÔ©cÇŽåçç›Íf‡ÃÑÜÜ|ôèÑúúúÙÙÙ°]û÷ïoooŸs«*«A´Z-[9ŽcóDétTTÄåråæå±¹š\údï·Á¼_·Y‰4Ž³ÙlJW£ò† Î̈ÒøxÚöš½P£±*%%ŽçA)Y‚XDù“)&J¢tüõ©˜ù i„ÅGcs»Ö<{¶gŽ%T\óLäO˜Bi©ô,k“,–Ö_üÊI¶i!çÄÆ#ޑз¿ Ö¤O[õðóÃOżápÄl®`…¯OÀÕjÐ^B;A­„¶CÕË’Ñ.”é¿–knë 4 +ŽzƆ¼ã¼wâ¾*U+"ÁÃû„qÖç™à †]—Þß?ð¢}âõ„çifMN¦ÿ¹+Î5Ùeb*/× @l­‹9Û²9´M€„õÕÄÿ±_n1\gÿ¦¼µ¢¥ØªP¥*U¥bÉœ¥!‘8&½H`¨UáTªšG‡ÔJE5•Jú@•f·ZuWd7UVh{{h»Š‚Â¥ÚÔv•V¡»ò BðÚ1d|lfÌŒ/szf²·TµWÞ.çÇ_cûø þ¾9s¾ï?£Ç{Äúø‘&žÉ´u;ëÆ–ÔUcJ±ôD~Fuõ -¤Ú;Ãa½S9¹D"³Ùl±X¢Ñ¨Þ±œtdYÞØؘ™™ÙÚÚRîÕPò†|¼qã†×ëõù|@ ‹‘qQ—––VWWs¹\±X¼}ûöôô49½P(èšEgxž·Ùl¤!"„‚Á ÞáP(ûÂq\«ÕJîÕ&€€Íû•â"ˆ÷›×f¶ƒJB¤0ê 嘠ŠøÕÅhÄ“SzÇR‚ ;&SËÆÌÁRívTî‚&æÞña=üÕÃß‚roDy0þ`ð³ãûJØ—K݈Z£ÇãÕçò³%îÅT¸˜ÝQ4F$aåCñ’]zí+Ù·;²ŸLå´qõ â½Äda;¤Ä×±$”ÿà‹%Iv»ûIâu_…÷Îþ˜Á7û< TOJ³P¸½v¨®A¾iŒ‹{âv2¶‘Š³©Ä*ªŠˆO²i~Sɧ“ ¶««¡ÆPh­Â%ëð¡Ü?nKinQNRÖ×µZZvtöõ†–5sè”3¼¦™ÃY€q€6`H]­5=^_es¤@<“iëvÖŒ,©«Æ”bé‰üŒêêZH7´w.†Ãz§rr‰D"f³Ùb±D£Q½c¡à|>/‚$Iš'}€,Ëñx<™Lær¹ûƒdš(ŠÄ™~:!N“s?ýH9±ðÍ‹FL–æ³”ÆÙíuáÝ_d¿!¿Ù"ÿ{P} %63¡ë;£¯‰lòSvèÅñÁõ¹l<œ[º*OüJ~륽7ê³ÿì‘6ƒE\öý"I²ÛÝO¯«ÑÓ€W¾€oökš¤z2š…ÂôÚ¡ºMø¦É†ß·“±TœM%îPQUD|’Mó›J>L°]]5†BkO €b¶8ÜÜŒÂk™¸³¯Ï0 °¬™Cÿ£œá5ÍÎŒ´Cêj­Áèñú*›åâ™L[·³` `I]5¦KOägTW¿ÐBº¡½s1Ö;•“K$1›Í‹%ê åsP”Çy4y¼³(Çžçm6iˆ¡`0¨w8ʾp×jµ’{µ ``Eó~¥¸âýæµ™í Ò€P Ð;Êq¡W^u)†Z<é×;”òÙá0™ªX0fŽ„]p¹Ô½l¨5z<Þ§zÕ”»‡ÆâNlçýÓâà3òo¿.Û¥÷³s£éëß¹ò³ì…6ùlcvȶsåç;ׯˆscò¿~“{û¹×ŸÉ¾ñíÌ诳1¶XþK’ìv÷“Äëj`ô4àÀ3€ýŒªI z"š…ÂôÚ¡ºMø¦1.î‰ÛÉØF*Φw¨¨*">ɦùM%ŸN&Ø®®„C¡µJ¯Ã Ç)Í/`„ðú:¾[hËÃÙ×gXÖÌ¡ÿQÎðšfgÆÚ€!uµÖ`ôx}ÏŒ²ñL¦­ÛY0°¤®SŠ¥'ò3ª«_h!ÝÐÞ¹ëÊÉ%‰˜Íf‹ÅFõŽ…òù(ŠrÿH¡ Ïó6›4D„P0Ô; +e_8ŽkµZɽÚ0°¢y¿R\ñ~óÚÌvPi@(è 嘠ädüÊ+¸úËØãÑ;–òÙá0™ªX0fŽ„]p¹Ô½l¨5z<^]®^ãÞZ[ܾòKñì³òëßÜ;g/w‹ýivø‡Ò«tþÙ½¡çÅ?~_øóËÙËNù\sîwßϽ{Ç[žÞ• …òT’d·»Ÿ$^W£§¯2x°ŸˆÁ“@UyMžƒü-èµCu šðMc\Ü·“±TœM%îPQUD|’Mó›J>L°]]5†Bk•/[‡6Œ›žÃ&^]%Ÿã ÖÙ×gXÖÌ¡ÿQÎðšfgÆÚ€!uµÖ`ôx}ÏŒ²ñL¦­ÛY0°¤®SŠ¥'ò3ª«_h!ÝÐÞ¹ëÊÉ%‰˜Íf‹ÅFõŽ…RŠrP•=ø[Ê1†çy›ÍF"B( ê…²/ǵZ­ä^mXѼ_).‚x¿ymf;¨4 ôΆr\$ååã/~ _½ªw(å!²Ã1`2U±,`Ì! »àr©{ÙPkôx¼z\<%ñN‡·SìI^úQö÷{x.ûæ‹{_Ú»h•†ž—ÎG>ß(o‡Z³C­ÒÙ&2!uù'áÿ¶µÉq±ü_•$Ùíî'‰×ÕÀèÀ!À³€ý L2Ê$`ªŠk +ðäoA¯ªkЄïìWmLTÙ~þõaøáÏF…YÇ»&ÆÎVÉ4Ù¨tKhê˜Mû³á‡š´ ¶Yûg]WD­w­kpS£Ùµv]¨`;°.wf`@f‘Š" 3ÌÔù¸ÌçÏszΆQ¾\tï“gnÎyï9ïyÞûqî3&B’bhÒ35æuY½îq™2W„‚Çê&pÜçq[KK÷pܶáá‘•ß·V1ðãqüöÛ¸`3úï‹eÐVT(j%sÈ/æ ’9¼ÐP ˆî«yŠ|]SóÊÖ%c¸üþâ}ÚB€€v×ÐR,=%˜«ïØI¿†{Kúm¶l—òæÂn·«T*µZít:³­e-cüãǧ‚ œz±å–«MÆëA4 ý rg±X²-G†Œyáp8vÑgu;@Àäý–â"¨÷ë•Fg6›³]Œµ‚@:DvlÇmÆlKY‚ÁhYÙ¥rÕ +„ ×ˆÁ”—³wY‘—¯Ó5½Ê‹6ë‹â„øÅØ„Óý¨[?Qlúâ¯Â5;ÅS[C'•¡SÊðé·Â§·ÐFðdAèÄ&±ºP<óSáÒû¶Æ3£}íŽIw(–xÚœÍüF$­¬•&ÿÃœæÜ1é<¬m|Ÿ‰¨`¦­‰Oê%©´›“0@œ‡$žªHʆùvÔgjžU‚XE¬Fˆµ è]©ÛŠ0M(eï‚ø-$èHzqfÎ)!Mþiñz–ô@¢–Àú\îV³‰¤šôLy]V¯{\¦Ì¡à±ú„ ÷yÜÖÒÒ=·mxxäåmb«‘(Ä=½8z±ÚŠ +@-À dùÅœ¡A2‡Ý5¢ûjž"_×Ô¼²eÉX.¿¿xŸ¶ `€Ý5´KOÉ#æêûvÒ¯áÞ’~›-Û¥¼¹°Ûí*•J­V;ÎlkYÀ˜ni¡X,–yn{άd2™I$ñx<3BÌ7}vÀœMB•,<ë¹E1‰<›íÁƒ£££´‘©|)’žŸÏh4Ò$6›í¹›¥ßﯯ¯?þ|___*B3ó<íÚµ«W¯644 & º´^¯¯©©ijjšÕCãýýýT ]‚Îòx<&“éÊ•+4áÇiQ³«ÐîΞ=KUÑT4KK Uû¬$š–&¤evuuÑ.½ Z­–Š¡ñ¼æ2~<胪Ñhè‘ã8‹Å’m92dÌ ‡Ã±«¨ˆ>«Ûê†$ï·A½_¯4r70lå8³Ùœíjd¬Ð?2Äf%`Q̶–å!Œ–•Q*×Y­@z @y9{—yù:]Ó«¼h‰€+bú*”Xà>Zèþp£çèÆéã[gÔbÍ;ñjeäØOBUªÀÙ¢À?Þ[ÎŽ6jìžãížA$­¬²òÐ%Ü?ÖøèŠÝT7(Š£h|ð°k#EZ¡¾Xº2¨Õa° yƒäéð†aå9÷Ûsï¨MÛXqƒ ­óËÉäûÎý×wïœ{n± ,¥µ ,þj™A誈 —Oz²BVBL`%¼!÷”Œ¼­OWù¬r‰ˆgÒU¢åGB òVŒW E†ßíÿ;$…â·±¢+‡@ö¾èÓÝØ•¬XY= Z$„+¢"—'(‹ ÑZ@“…Aß5P‡¬Ø}þjë¿ñB&…BSŠà­Ø=¡F!%._Hž< ΡTf.²Û|¶|ˆj˜¬„]ž`f!¾ª, )~äq¦·¹_ÝÖß×j£L‹h5m:í#nB§ék“J=Äbû††‡¯½Í*Œ³æ&ÖÖÂôz¾N¥!þ¾V uÂp˜ó²É0WË3$€ÔW-­æ*2•Ó_š/€zpPâãk ¨åïNe¤'ÉA~ª¯p¢·¡§WM{ûL—òæB¥RÙÙÙ988twwÏt.³ ôÑ·wï^ÿ˜˜˜ÆÆÆ®®®ØØXww÷={öÔÖÖh###§OŸvvvÞ²e‹AI'*‘HÈJ£Ñ¦¡¡aûöíAAAjµš¶---QQQ(++Óëõ?÷}Ó$þŽ;Ö®]›œœ<99IšÊÊJ™Læçç÷OÇŽknnÖét‘‘‘ŽŽŽdb°ÕjµgΜٺukDD„R©¼uëVtt4™S¡Pô÷÷?BÛÕ«W“[*a``àøñã¾¾¾GŽ!Ï?= **<<|Íš5TìÄÄÄÍ›7]\\¨L2|‡oÄÿ zÜÜÜè…(‹«««g:#Œx!¨Ç:»¸Ð³ºà2À}aö›ÊA³_¥ÀtKÅâ’’’™®Æˆ_ &&¸´T.&†S=zõO™™Äðð˜·÷>[[“¶6` A2<~~üÙÊr®B‘ùÿ<´ñÇC÷Ò5)êøšOW _1ýÇ‘9Ç:j/é•-ꉰVï_¤–-VËÞ&鑽ݱ wÿBíáwcWŸ\õ$ÆaèØ2m”Cßgë5?ÊOÓvNñÉ + +¦Âß²€ô£ÀZ€Õ!+FVÙ'@ê {6¢ú[«Ç/‚a…-nFóðó@ØùgÌ8Œ£·‘U!»¬Ø]dw‘9ï”Ââ®p•<—+ôÄ!f‘ÁJ0|Ê|¶.!2²Rd%‚¾PÐ?#"—‡ì6pyÀ‘Ÿrœ,ù!ؾ7ÿI´{#D@ŒÙ [H¡" X=°J!7C>W†ß"AŠŸÖÎQè&è¸ÞÎøÎ|¸~”üÓɈˆÙœ ‰ãçAÃ%`ÕÈjðûÂï +žŸk!lïðIRª,X²j˜¨„Ýž`f!¾ª,`L?ò¸GÓÛܯnëïk5ŠQ¦E´š6ö7¡ÓôµI¥b±}CÃÃ×ÛËf ž÷>ú<ü*‘?Ç ý@?eøX$Ô ÃaÎË&Ã\a8,GÌR_µ´š«ÈTNcqFü<Ôƒƒ_9@-×p*#=IòS}€½ =½jÚÛgº”7*•ÊÎÎÎÁÁ¡»»{¦s™]¸páÂœ9sV®\)“É.]ºÔÙÙ™——çææF­F$j4¢µ¶¶zyy‘ÒÜÜ\.—“¦°°P"‘ÆÚÚZ©ä;’B¡055µ±±©¯¯§-ùqtt´··OKKÿi踸8ò°mÛ¶váß‘œœlkk»bÅŠàà`OOOŠ–••E¢™™™ïŸÃ«‡á|(\Ú5_ád.Žd‹*1UgC !2A—XŒdCi<üç žËáX‘ú;0™‡Õgár$œÛ ñ˜¶T—•‚æ&Þ<‰Á}{Ó»¬ˆôȪxCûE0ï·xâC¼ßÁäp8¼VÛ£õïàR¸ +Ù±ÐwY%ß»ñHþ/ÀììNVŽãùpï Œ ˆÐ˜Œ÷Ïãªeð{KHøj’°â ¨Ò°ê œÚÑ»°ô4v| YQÂg˜ø1” \>RæõgñúQøú žÝ‹é‘ØuØAò‘ˆX NVÂ.Oø…øš²€1ýÈ㺥¿¯Õ(F™.ÑjÚtÚGÜ„®_Ó&•zŠÅ˾ÎÆ6@õYk%yØÈÞ}—-spOu¯߀+€€:a8ÌyÙd˜+ ‡åˆà¦¥Õ\E¦rz‹4âg ”øøÚÈjù»†SéIrŸê«œèmèéUÓÞ>Ó¥¼¹P©TvvvÝÝÝ3ËìBBu#prrJIIijjšœœÌËËsuuEä»T*mnn&Zyy¹)ÍÍͯ]»F¹\¾iÓ&+++33³¤¤$ÒܸqÃÔÔtñâÅuuu´ÍÏÏ_¾|ù’%KRSSÇÇÇwll,$$ÄÄÄä¿ì—{PSÙÇ?èìLêZ@k•©/„–*HÂKHxÃE–å-;ÃCª‘`‘P@ð1³³*Ž¥¶€/* -ê""P2,„€¯”Á â‚bXBnÐÚîÎ8Æר›ÏüþHÎ=÷w¾¿{Î=ç{W¬XÚÚÚJËÊÊÖ®]ëééYZZÊçó—-[–œœ\YYieeEÄ,Y²D Œ‘žÅÅÅÎÎΤ䷵µuuu ÌÉÉiii‘ÉdJ¥rÁÙD$©âÚµkä¯T*MII¡ÓéAAA¤å…m^ §§‡Ôhbb²hÑ"oooò4D2™Ì'NLNN¾…éУ% +…ÂÉɉ¬ +2›b±X×rôèy)r¹œÉb‘µjPpoÞûiã"ˆ÷Í÷ô„9htºP(Ôu5z>4c£¡¡æo¯ý%£STªé€€ C™(Š¾/¡Ra\ÜÜ»lldR[[÷ÖžØììì”Z3ö\ÝÿdôîÝ»íÿ¼-¼YÓýÓ²ÒÔñ/|'ò7d¯—ïùÕÀžÕ{Öôg®È\ÿ(sÍ`Æšáì Ê|†âxP_YZgMIûÍ¿w¶|u¿[40ødtbzò[’X«µ355-¤’ÂW,…ʃ@I‘êJT>(7pû-X˜Âå :!.Äyâ*¬ÎAI)zÛX¯ÅöÓ@µc}!B † Û¼!w<ø L_‡úC[]ñ8¹ ‡.aÿE<œLp@®DqáZ!jšAvÅcœ/Fp BÜðèx\ÃUø%ylðg‚»-„mÁú"TßÄÎS^öP˜Hd€º©6¤:AÓçþˆ?_ –ÐrŸ5Àã+(þœàËÿ¬Í€k‡ þøõ)¤ÚAR‡â!·ÈF>ï?Jä•$-pì È ªs@x·Ø€©1äÄBÉï ŠSQxnÅ=Ÿá.TçâÕôñ¦BñT6®x¤™‘ùùqètk‰¤÷‡ÞÐtŽæÿHhÌÖkV®Ôˆ»¾{Q[x|¾1ÀI€;óæ°áUΰqÞv V°l˜`dlR[WÿæêÓó +†•Jv0Ï  + gnÖPKO¢ç\}€9 ¹^Ýýýº.åÇËÀÀ€¥¥%ƒÁÒµ–w‹ææfGGG++«ôôô®®¹m­©©),,lË–-ÖÖÖ,«ººº­­-//¯¨¨ÈÃÃÃÔÔ´®®îþýû‰‰‰ûöíËÌÌ\·nÝŽ;¦§§oß¾mddDîêëë#yÚÛÛÝÝÝI†«W¯.Œ¥ÑüoÃ$Wƒƒƒ}}}SRRüýý³²²&&&HfÆf³ wîÜI4”••Ýºu‹ä\½z5Ç#ý+**zzz¢¢¢È팉‰‰ŒŒÜ½{wxxxllìÙ³g?~¼0ñ¬ååådÒ‰T‰D²ÐØÙÙ™-nܸ133óBÏÈÈÈþýû½½½Ií¤ÌÐÐP‘HDÚIÂÍ›7óù|Òá­Lˆ­P(NNNä@¤Óéb±X×rôèy)r¹œÉb‘µjPpoÞûiã"ˆ÷Í÷ô„9htºP(Ôu5z>4J%¢ùåJª®öµ¿dtŠJ5aaa(“E‘À÷%TÏ .nî]662©­­{kOŒX/âvžONŽO Œªî3ÝÙ7ÔÝX5x&qêˆÓÌa†ªÀö›+yö¯åYú³Ìúÿ`&ßg9|`ã³Cvß1TG]ä%ñÝ·®t>þ×ÈÔàè„B©z>9©žQk)`jjZ H%…¯X +—ò€z”©V D ºñèãYQ˜‹Iàëf«0ÖÏeCŒ7|î ƒ•Ø[1>ȶƭnàh…ëWA~(k@xÆc° ¬[ná¯pù°h°è#ˆõ†8sSqêXœ +;ˆâBQ;£# l‡Ë¹èÅÀ~‚,øÔm-0-:Š¡$ 6˜‚ÑÈŠÙ9 šç¤R0t SCàCVÎHšAj©.¨9€¿AsSŒö0]†…IpïÏX˜€; tB&lX…ŸûbÛq,HÛ ècG“àA)Þ9ƒ{44@{ øÔòãAR×C<6Á‘ßÁîÏð㟡nó{KüÄnŽS¸7x®í…–k€¶¾:2/Rš¦¹ ºAÝ \X¼”~¥¾‰¢Ô“ÏŸ<~8:"Õ‡>ÞT(žÊÆ”Z9úTæçÇ¡Ó­%’Þt7{øΉÙ÷rv¡ ªç®æ{—´ƒÇ眸3o^å çÍab5ì«FÆ&µuõoª:=¯dX©dó̪zæf µ±ô$pÎÕw8ÓëÕÝ߯ëR~¼ XZZ2Œ¡¡!]ky· ­ÙÙÙŽŽŽ,+??ÿÑ£G555‘‘‘ÑÑÑ<Ëå;v¬   66öÌ™3ÉÉÉæææuuu...Û·oÏË˳²²Úºu+¹±±±qùòå7n”J¥$sGG‡§§§““S}ý÷÷+µZ]RRâêêJÒfddØÙÙ……… ^¿~F£™™™‘¡ÉU‡ÓÜÜ,‰lllØlvzzº››ÛÞ½{ÏŸ?ïëëU\\L4– .ðù|&“qñâÅññq2Êìììéӧɽ»víêÿïÛ×ÛÛ›››+H‡’È@qqqáá቉‰îîî~~~¤…´×ÖÖ:;;“Q†‡‡ßÒ”èÑ…BA–9étºX,Öµ=z^ +Ùc™,Y«6÷潟6.‚x?Ñ|OO˜ƒF§ …B]W£çCA¥¢ÒÒ(®—¦­U×R^•j: ÃÂÂP&Š"ïK¨þÍ~¹5yeqüÇue•pX§ê +[žá!$¢D¨ ¨¬< +,  [±*ˆP¨ +j±#"hA‘bhム+"2¥â# +ºŠ¼‘·È3’ïÛ›¸»ãtg+ݱâ¶ùq’ÉðÝ{Î=÷žï|ÿoù|ù½¬ÆP +/¾ÉM“I¥££cbñhïˆôéU_÷¤±(ñYò£ FcIìÁC¶]û­ÛâXÑFQúm{ ÛãY=IÜ¡ƒÜ±D–$Á¤÷¯¹0©±¾¾CB÷Ȇ%££#£2EÓÔx¢K$#aaá$qMUÈýè: ï!}è*-…3»Ðs1ú:Â*;غbÖ"Ç@¬?„~ñŸ@W^9<:±q·/¬] +FÚ¸{-v_€»|ÁÖêa|dï+Cøël< Â/À‘ ÖF°‡;ýp‡@í7p`pô`à +Lû.2 U8¸ ÎF£'B=ðûD̉‚%,`ÎǨÏú:Ðw¾ Í9°yÌ~£}@ö褻'Ñw p/Z dâ¾ àèOŠòâ8 v…Åæ°Å>]ƒ¶FÈ_ +y{ÁÇôç`b 6¢ô!6]' ÆL\j™‘8\ ?¦à +..6ƒƒ!äCxG×-á>ùþx9  Ë¿Äh?ä» äé€vxû$ÐÕHÿÔ5 È‚E ½ Nð'UfÁ¥2¢»ÅC=]õϺ”¦´×e½=}½-´¬ÿYO£‹Ë&ÓøÑ£Ú_»›M8/w=ªõ)D}ìC×>ù‹ãÂ-4T  Z!¯¾J–*Äá-Ä|.Ö 5uáÅK¯+;%¯¤«¿Ÿ»ÊM à¾üÔp<’žØU”«ú»ò4ttº×Ô4Ñ©ü~iii100`³Ùííí½–·Š’·/©TÚ××wåÊ7wî܈ˆˆ¸¸8gg瀀€C‡EFFº¸¸hhh888ÔÔÔdddÌ™3'000**jÖ¬Y&&&þþþFFFóçÏOLLÌÎΞ7ož–––H$"ž¯]»fgggnnNf ¼ºººšÃᨨ¨xxx¬^½zÚ´iätÎ;wôèQSSSkkkâ–|[XX”––Þ¼y“Édºººæææ®Y³†ø···÷ôôLOOÏÊÊòòòŠ‹ÅMMMÁÁÁêêê$âùóçe +Ž;fffF’jkk{º¢¢‚¤æããSPP066ö⟤`9¸Cs(Ö°÷«åÍ'ëÓÖ?MvH´”ì3í;`Ý~deCzÀÓ4þód§¡½zƒÛ5†÷³$å©##b©\=þó3ÎÈÉHXX8I\Sr?Gºè{@—]ô ||·­†w5pÊÜ浧qãJò¶‹úóp‹;Þ8‚cÅpz˜j!KvxcÜzŒôáP•‚ŸùBÀ2Üêöf 3¶ºcöntZl]ü!g¡¯#ÚaøG¸Å—q ó3üNï{ ZŽ_mkcÔž U©8|bý1Ä Š“°å,~‰‹X`i€qþø$é* «QR‚G6êt|ßD>E\%Ð*€Ô0°6„yØ”ƒ?¦ §ìò“Çr·#-ä/Å}°Ó²vBÉÁIKX“f30c;ŽÞEºšŠp±©¼*T¦¡¹Ü CÅ(Jw;p2Ǥ ¼4fBâF¤¯ãùÜ°OnGá~ »d¬+lp—/æîA2‹‘ýª©ëd‡Qz@e&3ÿ»2rXâ¡Žž®ºgÝ JSÚk´þç-´l€üpv^Âd?zTû«¶±·†u?éÝÒLÕÕ‘6÷ zâK¸…†ª¤T+ÄáÕW)ÃR…8¼…˜ÀÒ*¡¦.¼xéµf§äçèêïç®rÓȸ/?5¤'våªþ.‡< î55Mt*¿_ZZZ Ølv{{ûD¯å-âùóçeeeÅÅÅUUUáááúúúAAAÑÑÑëÖ­+))ÉÏÏ766&m'$$„Œ/**š1c†¶¶6ŸÏwss#SADD„¦¦æ¢E‹LLL¦OŸž””tÿþ}òmccC|zyy¥¦¦VTTtvv¾ˆ{üøñ©S§ÏgÎœ9uꔫ««µµ5 íííÍår£¢¢jjjÈ òûĉ:::dŒH$JKKSWW'!bcc›››óòòœÉ¥Â†††äädCCCâ633slŒè_:''ÇÒÒÒÏÏïáÇ´¢ ÈD‡C*¤I–TZZú­2’$K3 R-R©4%%… &™öôôLÜA)ù)½½½¤ºHe2™LR½%Jþ+­­­–VV¤V(´ßxTÑ~w#yò·F0d2+++':%¿!(Š–QÿÛ»Ì288âêº]OwrcÐô C…ÁÛgø² Àúõò{™ÁP~'|£»öï·Xšw<ÎÚ«Û· .=XT˜v³¸àNAzczÐðK*Ao(ɶáëM·¾Í¨*ΫÉ?üä8¿=náÀ^]ñ¹Íc§(ê§N_…D2N×T…Üx¤ë‘]Ôu¤+QV‡7ãÔ)8qR¥pòSTù#NBܼ +Ú.}EéàÃwñƒ…þÛ†ß`ù´3ùF'6°ÞCƒ¿`¤7 +ö Óþ^Kà“eÈeB˜\?Œ'"à}p³ƒ°_¥AQ]Yø;ü˜3S¢Q«¨'V™¡”éL\ +‚A •ˆ£…Ë8LIˆ %:ŽQ)h#{DÁAY¤YÄN³uƒ ,- akY¡ûÍí&3•ù‘q)+¤¿:uë¾÷î=ç;÷Þºç{AØlK[ì(#9¡°^Œ ‚¯ ÚÓìe°w] ‚ÜÕÓÙÔÓÝÜ«7½½©©zZ˜}ÿØ¥íö·³[¹³£ÁÁÞšÇûP¡hxë·×„®nj&:œzœ›¸ߨ”ºúúÎε:qXð2eX¨‡D€H[PfÎÊιý6ÓÓãÿ¢«¿ßÊÅÕ¸Ôhw^EÒ3+ ­ª¯ÌY5tàË•ÊÉNå׋ÖÖVSSÓŽŽŽÉæ2…ÐÕÕ•šš»{÷nGGÇS§NÅÇÇoÞ¼Ù××·¦¦F*•Z[[FDD°ñyyyóæÍ›?þÎ;Oœ8‘““ÓÞÞ.‰¬¬¬V®\Éü¬^½ÚÈÈÈÇÇ'&&æàÁƒ...öööÌ[bb¢B¡`NÔjuddäœ9s¼½½•JeKK sîîîîáááæææêê* +ûûû‹‹‹Ùô}ûö±¯Ì ûÚÔÔTPP°téÒ¹sçž?~xx877wË–-|>?888=== `ÕªUìM~~>‹2AØÖÖvíÚµ¥¥¥ì±ººzÇŽ‹-Z²dÉž={RRRâââë°OOŸ>­¯¯ 333srr*++S©Tþþþæææ!!!}}}“»Yzülk,--YAäñx2™l²éè¡Ç¢­­m™…;«‹4 N§ý^EE0íW¥i-þÄãI$’ÉÎF_ +X‰¬¯ã$ÍàÐdSy= Ž¬uú§±±AS#8ŽMaí¯<=µÿqÓgÌÌʺõ“¯œö¯u\­l«ëöFòŸœÝ*Ï<#)-‘TÖVå6& 5S½?(°jLñ/¿'–TÕTÝ©¹~ª9Ö«ç§þŒƒ#OªÕãc¯xddÔÏo/KÜh:®'®‰881¸"ppR\ ¢ÞÅßCêp%ÈÙš7›Žo§\âj©[„¯w`96Ûâð6J8@­©xpžŸ’íRò\ƒM+Éeöe®`õ‘v‘íMÉÍ–œ–#áÔ“Iâlµ…ór|¹ŽÜløw4\$Y¶ñḌʄÔy±{é„] ‚8‰‡Èß.§Þxt\)¸rpÕÌ¡0oZ4Kál g:æEá_b÷_àïNµñTú öo¢¸ý­it'ÜÀÓQËaÏF +ûœŠ"1^é¿à³Ÿ,Âg|ºD%´}-¹® (_òß5ˆßëÇpè¯ðÝHçà¤Ù}LÑ~Ô/¢;a$ð¡ó_‘Ð,‹å<¬·"—O°Ã™ÊcIK²”4ÅÐkWx¬_8à÷†&é7Ål†‡»º;{ºšz»›ÿc-zÓÛë˜öبzZ˜M$Ur¨¿ƒã†Ú[ëmm,™JQ(ÞþÕ5õ ùo3:ª‘Ë4µµš/ÞÌ•«¯ïLà,P«‡/S†…:qXA”XA{×½3sVvÎí·—œ/AW¿•‹«1p¨Ñ¤gV@ZU_ ˜³jèÀ—+•“ʯ­­­&&&¦¦¦“Íe +addäþýû'Oždí7º»»;;;³²²nÞ¼Ù××7<<|ùòå°°°úúz6¾¹¹9<<üðáÃJ¥R£ÑÞŠÏŸ?gãããã‹ŠŠRRRŽ=*Ø›ôôô¸¸¸ÀÀÀ   ¤¤¤ÇOŒÏÍ͉‰‘Ëå4X ’’’äää .¤¥¥I¥RµZ=00}õêUÖž;wN$ õöö&&&FEE1&lbSS ­ƒP(dA*++Yˆ Ï,??¿… ²OccclÖ™3gF‰cžYš,"[–éÄ”G1&yyyÌI~~¾³³3Km"Y=¦T*•¥¥%+ˆ<O&“M6=ôøQ´µµ-³°`gu1Ôé´ß«¨¦ýªt#í “Ü‰d²³ÑãÍðsÎk;÷៹ҲŸWmëU ÙÙïù`¾BŽûÓhXKSÖT*xxjÿã¦Ïx'+ëÖO»lßoò˜ZýìYO{]YC©èD\S÷衲³¡sð²û¡8­7rÕèa#U¤Ãã»)uOz¾¬o~*¯­«©4”u<ôu¶¾}ÝØ##£~~{YâFÓq-\#¸JpÐÜ…¦„8 º2 ²OÐí0tg‚+£[(> Q05^WN +î>žÝ"‰n‡âî)ªŠÅ@6ÆïâáEž¦ûB’ÇáA<)¯PÖI,6ÆŒiîƒòh”ŸEï-pÕ-¤ÚxbQ˜ÛÜp<¹J\Fò BI*½ÈÅãK¨M –+Ô|Òh‹J£ð]WM‘ŽLä“<ÒŽP²?Ý=ú hH¢ò’Åa(‡ún¢"†I¤Ó¸˜鎀ò%Qh¹îi¾Å“4ºLWŽ€ùy–…šF•º2ñ4 R!UDS}"ÉãIvN;¥! â4&CSU&š’Hz‘»àΧ}n»°u¬?BJÔbFœ–'q2ŒUÁÇÓ yÿf¿jcÛºÊð{Â/ƒ4)¨`@Xí»±ŠYK3GE“J+­HÐhbš:©ˆ ‘Š +è~€º©0Òª¡mÚ|8IÅI›¬!q¾'uÛqlÇ7vìøÚ÷ÞsxÏqŠ´¶ÉuÒÞGŽŽßû~ž{|Î{[mâ-ÈòJ`u%¸š\\Må•…d ÁP왎¸©dhm5R($ñ\ Æ­¯XÌfÉç›Ýå£k‚nœ§| Ù©Sìµ×ØB€nÊv„º††J€&€ ÑÚÕ:Es8LH @-ð ¥¢ò ­³kwK4ðÄÓéÚÓuU×Æù[#Ûié‘v»úQ€j¼ OœÃÍc D…B&“Éb±D£ÑRç²'@)-Ž±XÌãñØl6—ËP¢iÚâââüü|>ŸÇŸ8I¥R¨ŸÉdîÞ½ëp8|>Ÿ¢(EWº®/--ÍÌÌàÚ¢òÀÀ@Àðð0:œžžv:]]]CCC‰DõÑ-ÊÑC:ÞJ¡‡©©©¹¹9ô£ D"‘ÙÙYô999‰&ªŽe³Y4D¨?11±0 Šóµµµ­2±–¦¦¦Ã‡Ÿ?“G«ÁÁAÌßív£ ºòûý˜!nô\4A5 ŠË‚óË—/›ÍæúúzŒþøÞm@–e«ÕŠ¢$I^¯·Ôé0ð@„Ãá£55¸W4L‰Þo;]ö~#Bó8p˜% ¯RWcàIÁú:ýÆ7éÇ>Îl¥NegH¬d_}µá‹_(óÍcE’û{‰ÿ•˜,C}}þ—¨hoïx¼ËFy«…M‘ÎRëJ$ñÏÍúæƒóáØRb5šRæV߿ܱ?¼±öËÏÇ›^Ÿê]XQb)%—ç£S÷"s Ñ¥èr:-«ja§±%ßØx ?T×.æ6 ÌÌA˜»Œy@ud+‘Û@Ea?¡.HwD+ä»õ*°.Ïv’èUi&‰›šy; a²äz‰æ‚‚œ¿#_=–ç ç·  @Î:š6Y¹I–þY–h%ª‹Kt7¤Ú!Ùš¨²°fåäºI¼‚Ô×Q³(ŽNÚì}À1~ƒ„šÉjfB +v’ê€t;ÑÜUªdl@1î ¿ ‘fÀÌ3Ük×=$ÖBÃè„õ‘\Ö šƒŽ $oTŸdlDé&¹[Dn‡õnÂ\@íïÅE€÷~õ_‡&¿þ.yë¼~Œô¼C(®Õm`nÂWl Ôøþ×à“/tö 1Þg³k‘Lšs-N¯†Rò¢Aƒ;%îÜ?¸‹ÖÓËÊzL§üsláÞxMõKf³äóÍîþéµ÷@·Æ9?}^¢UUtz†þçÉP×ÐP Ð0!šCû£:C§h‡ i¨‚çjEåA[g×îhà!ˆ§Óµ§ëª®Œó·F¶ÓÒ#í„wõ£Õxž89 –º”§¡PÈd2Y,–h4Zê\ö"(ÝñQ¶_.\¸péÒ¥T*õµ\ööö³gÏ^¹rEÓ´ÿ[‚> dY¶Z­x!J’äõzKŽD8>ZSƒ{õ@3À”èý¶ÓE`ï7"4‡Y’K]'´PÐß:Ã>ñ ÛoËÑÔ+5õÏ> SSÀ¹ Hö‹YÁò2|ë þw ¼²µµíq.Úæ+Õ5šÏÒÙœœÎÊk¹l.§ªª¢ÑdV]¸77ßviáÝï[ÞÏM®*,¯Q%ŸÏd×WÓym=½®(yUÕôFG³ÆÆsXø¡r¸z˜Ø]`vA'P'07aý‚nþ“ºaãgaN„ ûP(ˆTp 5Ϧd}v§,Ò ü)y÷'$ÖJØ8aCè“PWQ‡p5 pÂå‚?ùÄ%Âõmúï+>B·ÈÓN¨˜(êsWdCÁS&Ô6ºîs¾UWŸ˜óZD .Ü Äcm˜s?|ÈFÅÐ}By+ÛÛüQè佟ÁÏß„ gÈo~ð‘žwH¦ ø#( m~xʾØéï¡ j~¥ $ò¹¸Aƒ;eA¹Î÷ÕdÆø÷ÑÄØí_0™ÍÏOOÏìêѵç\ _y‰}é9:ó! ¯kh¨h˜Í¡ýQ¡S4‡Ã„´Ô¿P**ÚöÛ=¾¯O§kO×U\çol§¥GÚ ïêGªñ6`ï³sR§  ¨›07Á sâHJ1r5(JhQ‚¶„õ“õn2ù2ù'ÈÝ"í†N‘¹´Qøñ)øè3‡ÿ|¥U-dV“á¥ðtlÙŸˆßKÆ+ñ{+1œ4¸m&ĶÄ]_žC®&#ÙL¬íæ•Ï}ö3’ôå©©éÝ?¿ö ¶nÍpˆ½ü2•$柽_¼}Ô54T4LˆæÐþ¨ÎÐ)šÃaBZjà¹ZQyÐÖÙµ‹Åx8âétíéº*€ëãü­‘í´ôH;á]ý(@5Þ†'NŽƒ¥.åéE(2™L‹%–: ü¯eÙjµâ…(I’×ë-u: <ápøhM îÕ#ðoöË5&ŽëŠãçôS¨"——ÜÈiÜØkXFrH¼6Ð¥RÚøÒ/ÆŠÇüB~Å"»ùÒoµ«ªŸú¥’¥ª*UmUdÛM§Þå=ØÖ<\Y82ÞM֦ͦkKؽ§ç^`È°Ë£ƒç§¿G×wÎœ9gföÞ?P0 ¼_2.‚½_·Š,I®¦†av7ë…hŒŽ™™äÑÍ.eisÕBc•\pÎ'‰ÓÁžyñK*[UâåüsOÉò<¾ŠZÕ3üJu"µáT*qC•Í½÷õâ‡ò‡òüëùo¿¶âHù¾wßÝsðàÞÇö9¼ÿHù~y´d)y90¥Ãåï•—¿wèàÞûßáñÑ£òw½ÁŸÚ›oþøÞ½{+^¢ÖíÚEšFƒƒËKPVY™p  O™Cw"g¨+sØ…XPÈ==#³¾¡quÛ²X„áp¸hw™ ÀÐ+ß&céYn”®¾ ŸwÃ’ÒÛCCf·òìâ÷ûív»Ãá`Ãcv-+% +9NÞ5Móù|f—ca± @  °¿Õ<€€åý’qìýºUd1Hr5Í0 ³»±X/Äb¢¢‚22É£›]ÊÒ‡¿ö|Jʆ|VXðJ^ÞæÜÜM9öïfgo´m{ñiÒ ÛlYÛ²7æØ_ÚþÚË?p~?¿àÕM›^Jy.eûöí^o“Ùr±Xl<ùò«Çþþê?#cã‘X,ÊÓñ!IJ“G"UUÕ¼ˆe¥Âå‹@w€:ÜHXT¨”0ffìF¡µ @í ¼(â<¯£L+AÚiq¡£ð~SˆŸÕg—\s¼|R1‰2ð%ͲGº‰tKõÛ²w~¤7ÔÙ& n}øá>~ê)›6ç½õövìx=;;;''Çf³m™ÅÖ­–,%©i¶lyuëVÛ¶l›Ýž—÷ÚÎ;6o~eÆïTTT<|øp5¤µÃçŸÓ®]BÓÄààò”UVf\èSæÐÈêÊv!Öò/<=#³¾¡quÛ²X„áp¸hw™ ÀÐ+ß&céYn”®¾ ŸwÃ’ÒÛCCf·òìâ÷ûív»Ãáƒf×ba˶µ+ñÃÿ#B¡Óéä QÓ4ŸÏgv9  + + ù[ͨPÞ/ÁÞ¯[Eƒ$WÓ Ã0»‹õB,JÇŽRjšøû§f—²TÄ ±ÑS{ÙërÝt¹:ë\†K©¶¶ó©’«öfm-¦Æ.£¾ÞÐõÖ7<oaf?ÆY)M~-™œœŒÅb«˜>™¨ªªæE,+j/õu¹‘<°°pF‹Ä€Ðã‘jÜ ÔŽÔŠä¹'›ZX ç›Q4ð‚àSîÅ2Ë„S¯JØÆ9ç¦nêU·˜_óËÆÙ™e œ™kkYÞTr=q˳Ä{ê1ιJðYÖ-ˆöàÙŸÀsßÞöó_}díõ õ.×Õº:Öu”ºråj|lÉR2šõÍ\Qÿ½võ*ëjccãÝ»wyõXÅ¥c à÷“c§Ð4\^‚²ÊÊ €K}ʺ9C]™Ã.Ä:€"@^WÓ32ëW·-‹E‡‹v—Ù\½ò­a2–žåFéê{òy7,)½=4dv+Ï.~¿ßn·;Ž`0hv-+…ÿªr:¼!jšæóùÌ.ÇÂbA@Aa!«y5Êû%ã"Øûu«Èbäjšafwc±^à?ßÊцTq}íýA!ˆ"‘ÉÑ‘‰Ñ‘èèHll4::cÅž2 ®52áÁäÄÄ×,FÄ„ÙOq>BˆòǤž³:¬´ÔHd¢ªªš±¬T¨½ÔÔ äAòÀ¢Â$b€Ü(Ń& f¤V $/’ÎáåI“m@íêl³Œz´ <†2-'lQ]Ýn¦*N"šæe[¨æ™yU’’,O3•Ü;;,‰®§‚Ýñz◠п%3wÁdœ,ô¬‚ëM}üNÇ#㣣c3Œ³‘q ‹¥#?"õ9ÎÀ“Ñh4¾˜¬pÑX3 = 7v=‡îÞ]^Ïe••—ú”9t'r†º2‡]ˆuE€¼®¦gdÖ7¬½}|í2í.³¸zå[Ãd,=ËÒÕ÷äónXRz{hÈìVž]ü~¿Ýnw8Á`ÐìZ,þß…ÙUX¬&¡PÈétò†¨išÏç3» ‹ ……ü­æÔ (ï—Œ‹`ï×­"‹A’«i†a˜ÝÅza|œÊÊ(%…>þØìR–ŠPZó‘ÈDUU5/bÓàò ~ N ’‘Ð¥(.Ϭ㌄wf¦©Ç®Ã0èâÿµ€hbyqüSü×xä‚‘OPèHÍ å›<®©>یԂ“7ðþ_ðÎðq=Ê»¨ § ã€6¤5¯«vt5˜ªmvñò,Ê®gê©F®ãý?£ÿ¯0Ö€Â+“sGÂ;§ÇoêñÆKŹš=9së[»§Já…Mù­ƒ+|ƒs˜YÅàg¤i´e õ÷-/SYeeÀ%€>e݉œ¡®Ìab@ ¯«é™õ «Õ™EB†Ãá¢Ýe6@¯|k˜Œ¥g¹Qºú€|€KJo ™Ýʳ‹ßï·Ûí‡# š]‹……ÅJ …BN§“7DMÓ|>ŸÙåXX,H ((,äo5 `@y¿d\{¿nY ’\M3 Ãìn,Ö #éƒJr:E[›Hma±|"‘‰ªªj^IJÒàòE ~¤N 7’æKÁòµ Ãø؆¢Eò€ ¾VÉ@Ñ +¢ˆçÛ‘úîa÷ïñà[ð›`’ú:Ï~ö'øí9øÙ¼x~}>ù% ×!ç*@¥’wi•w¡ uÓ[@ÝÈúòoø»sxá(öÿñ¿ì—}PT×ÆŸgý§N›ÎL!Í´MœÑά›L±nÂÇ®1¬ÈV«MMâ N5.«ÆLSŒjÔøTMü®"¡à.$º|)°à + ˆ 1&¸;Ý I6’4‚‘{zî•f,G2;ƒ÷7/‡Ë¹ç¾ç}ßs月Vö¶–Š›rLg1¼yì–‘Ÿcï‡õšÃ3Z +ÕPcû&‘:Õÿ'x¥XÓˆKyصû_懴`<Ò§|ePßÖÈÔ &^ -NÍsêV–H”ݨÿûзŒÒO‹’n®¨n öÐÑ2(šõ6ÂëUf=©L›¦´µi}·}ÚìöP hÑÄ¡³_qHUº"À +Ês5$4ÌQR:¸Iê|ÖTÛh hVW‘ôÒœTU}#„Ç'4µ·;•»¯×k4Íf³ßïv,:::wJ °X,òB4™L'ØáèèÜŸÏ#÷j$´jÚo *Bj¿mdTƘL.—+ØÙè ”®«ÊÁƒÊªÕââûÁŽEgˆÓÕÕ‘‘)±ˆ(Ȇ8OQá¤(C_+‡RQ qÂu˜lk¨ÔPTCÔRœ•&û)j!ªe§AÔhcZ!Úx| ?Ã_f¢ËMñ>E=®‚s=æ&qj,ŸMÁìDØm(Û€¯å,çÐëÊEµ•³Ôª­êùFtÒÀO‹ùÚsX:Í{)Þƒh„ „‡=.T¿†Üt^ØGÑ¢ö¨«±Q‹ jlÒ¡ ½Þšpµ µ›YºÆðI1Å9^:Ä×íØ‘ÉKµoµ”kµOjµ‰ªµê¾1µS-Ñÿ—®ÕCqÞŒ°ˆq•5­ÁÞ::C¥·Ñ~_¹¢¼¹KÙºE|ü±¸¹ÀØìöP hÑÄ¡³_qHUº"À +Ês5$4ÌQR:ØYêÜ’ŽÎNkªm4P4««ÆHziNªª¾ˆÂãšÚÛƒÊÝ‹×ë5f³Ùï÷;;%X,y!šL&Çìpttn‰Ïç‹Ž‰‘{5ÈZ5í7!µ_ƒ62*cL&—Ëìlt†·÷?ŒŽÎíÓÕÕ‘‘)±ˆ(Ȇ8OQá¤(C_« ¨¤R†Kpb WðÄj6lÇ5'®WòÝÝ,ÛÇ+8ð"‹VЛQÏëÕl;ÀŠM,߀?'Ã,Ha·â2D#>?Ž óñàH$EqÃB>ñ8GÜÃ9‰ï[¼~š°üU8VáäZ^Χ¨ÆÎmgñ*æ½DÇj|”_>Ö-`út^؇/ßÆ;ky$ïíãWoó “c9l?—‹ êX³•»—°d ›w³m?wB\°‚Å9šÿz¸w"ÁÌð¤OãÿàùÝ|u>_OçñÕI4¿É¢•<œ…£9¼°JºËqq?ª6¡(›{_@A¼‡)NË*A©€â”Eû¶2J«GéÉ‹WUÛì- £3¤PEmÕÍnrM:û‡TÅ¡(¬ ¡©½=ةܽx½^£Ñh6›ý~°cÑÑѹS€Åb‘¢Édòx<ÁGGç–ø|¾è˜¹W#| UÓ~QRû5h#ã 2Ædr¹\ÁÎFgè ÜÔêè|tuugddÊC,b +²!ÎSÔA8)ÊÐÇ”rˆ*|}ŠU¹tæ$!-‰9sp9ã|c±aQ*LEJ,§ÿ†G^†rWJ¹g93¦qÙLŒr–Ìé¼Ö á¥hâçÇ°þ˜ m<÷.穸7Œs’ ¿ +°g©úÕ©|nªáH6;l܉͋°(3&àÙ)<–ƒÆÈœAÛ£¨Ù†Æí|&™ó&ãh¼y<¾ +‘£äŒõSÖlæ¿X‘ÆñÁnC~k¸o9³fã‰Ç™–È‚üâN®‡ñ2FCŒ‰¥¯ðÔFdü{Êpöï|w¶Ù17‰³'ɬ±s1>=JŸdº ³~Ë„‡i³ x5”Ó§©TÈŠQ”KU«Göd„EŒ«ªm öÐÑZ(ÊõñnÑÛ¾Qmv{( ´hâÐÙ¯8¤*Ý@`…zâ…„†9JJ+3~éèì´¦ÚF…@³ºjˆ¤—椪ê( <>¡©½=ةܽx½^£Ñh6›ý~°cÑÑѹS€Åb‘¢Édòx<ÁGGç–ø|¾è˜¹W#| UÓ~QRû5h#ã 2Ædr¹\ÁÎFg¨põª²-WY²Dik v(:Cœ®®îŒŒLyˆEŒ@A6ÄyŠ:'ED5“PÊ¡TBœaO%«·rù,¤%Á4!Ì}ž5[˜bÁ÷âÉx¤Xùƒá˜b奃8žËCHŒAö:÷ý¿³ðu<›Ë”Xüø‡†´DzvàŸ+ÿ0¦Ärã|dÏÅô ”³/ý#&Œ¥œ}÷2äeqr4îgR4'Žå=Ã1o2?9QQ¥VOqâFõúZ=7Ò“1®ª¶5Ø[@GgèÐ#„¢ô>+bíZåÕõÊgå¦þc³ÛC\ E‡Î~Å!UqèŠ+Ôó'$4ÌQR:¨)ê|ÖTÛh hVW‘ôÒœÿa¿\€¢:¯8þÿoZkF§-Â$[µ6h\n£hWa]Ô¨À&€ ‹ÅWfÄ7°ˆ©õ‘É„hÕ`5FЪDóÐÀPt|µ]GŠ ‹Mš¬»3;»‘:£Þ¯w×i:±Q1:³3xsöî¹ßž=ç|g¾ó¿D3Є)Ó0Êh³Û}Êã‹ÃáÐjµ:Îårù:•‡Åív e J’d³Ù|ŽŠÊ]q:áz½Ò«¡@ pΫýº¢"íwÊ»2B$Éjµú:•î‚ûŸbÆ !i媪•QQy:;¯gee+‡X Jó ÎRœ€°PTáN«¨‡¨Ckw.ã– Gñg½°z6+Ö3^σ¹m)væò¹þˆx' +¹9!°z[ö0w:ŸìÌ$\o…¸ÑŠ«(\ŠgûBq" àÀ Ãðñ6^=Š7æ14¦±È™Æ=æÆBù»´D,‰Çks™Ç4«6±~Ç ¥_oåbÏ+Ø#sßJ͵*|}Lù•æ'O`M*n|‰OJ!ý=¤Ù´ÄóèR«óY´‹'cè³Pœ”¬áÅbä$#l÷þÿ®Æ±|FëŽ)˜?‰3£±w +9•á!Xó2¶e2ftƒ±~!ß\ÄH™È/ö+U¢¨S +ø}5¼m›‹€@]mC›¯[@E¥û Y–½ßÊçÂyÙ-ò…Ïo?zPo&³Ù(΀u åž²°ÚcTÄáI  ˆ•sµ@yEå#OSån´wtD$šy·à´GÒ³+’^1 Ñ ´aÊ4Œ2Úìv_§òøâp8´Z­N§s¹\¾ŽEEEåaq»ÝƒAˆ’$Ùl6_‡£¢rWœNg¸^¯ôj(Pœó¨tEE(Úï”we$<„H’Õjõu6*Ý…öv19A +GŽ>𛌊ʃÐÙy=++[9ÄýPšq–â„…¢ +wZ ÅÇì(ÇÎÌ6bõ$åÏ{sAÞ_‰Dâõ<³_)‚ÃY¹+f²ßSܵœ·êðfzõÀ‚8^³Q8(l¸|qp?ê%d$!\ åþƒU¼ø!sSÐïiGrãbnN÷øß· +)øÂPΈâ’D|ø*ä|¶_.¡wO¯áåCüãDé89ůò›¿qÝ<ö鉷—SÜÒ´¢6}ýøÑNˆ/Ùòr¦"ÝÄôÉÐ Áþ(Ì¿Žrs•¤Ž¿EÑÊÚ­ˆ c\8ÍS0efF£æ-^«ä– Žen2ó!ÁÀ„žÜÎ ï1yS&âÌnˆ:Å(Ž_ o[#ä&dÆ" PWÛÐæëPQéFÈÂ;4eå*·}"ë bÄÑbûa“4Él +€3qHË=ea5=WEC6‘€P9Wûø”WT>Ò UîE{GGD¢iPœöîZW$½b¢h”ie´Ùí¾NåñÅáphµZNçr¹|‹ŠŠÊÃâv» ƒ2%I²Ùl¾GEå®8Îp½^éÕP 8çu]QµÀ)ïÊHx‘$«ÕêëlTº W¯ÊyyòŒrÓI_‡¢ÒÍé켞••­b~(̓8KqÂBQ…ïX5DE/ÃlBp_$Œæ¸Pþ´ç'àWŽ¸0¶ìæ¥2&0,˜ÏÇÆÅø s’ñÑÛXO ¹(×NQØ!Zpé ×ÎÃð`¦Æ²b#²¦â×AX=GcÛ©ÉKå¯94˜Ë¦³`)«7±b=“Æ¢ÿÓøí`ÿݹ¸QÏöiô!xòÇx%nZðî +%$“eÓ4Žb͆…èñÒ¦ðæy~Z +m_<ã‡ÚíŸjäqÔs¥e\8ƒƒ0 [3è>¤Œ1Ïs[&ÜGù× 0ŽBœž«fcÞ$L20?Õ²dDë¸a!wd3ÞÀX=j¶°u¦Mà¬(Íé]uÞZÿ¿~k›‹€@]mC›¯[@E¥{!{>ž‹Ë%ÿ~…ÈÈŸÿã‡y2™Íþ@!pÚ#i¹Ÿ2¬öjÈ&ò*çjÿ€òŠÊG˜œÊ½iïèˆH4 Êþ»k]‘ôŠYˆf S¦a”Ñf·û:•Ç‡Ã¡Õju:Ëåòu,***‹Ûí6 Ê@”$Éf³ù:•»ât:Ãõz¥WCàœWÔuEEÔ§¼+#á!D’¬V«¯³Qé.ÈBîèí_Éß\÷u(*ÝœÎÎëYYÙÊ!è‡Ò<ˆ³' ,UøŽUCÔAÔþŸ«fräLéã1v×Îç_^GZ"ÇkšwÐY‚t¦¾€³ElÝŹ/Á8³^䘡Bþ"ÞPü·A4âÊaårÚxä/Á•£lú³gqz"ê·¢v Rc0q2±#­E<–Ñ¿á/ŸâïÆcV%ààëh,Ä’Œ–4{V°í=dcV4âFsm*ìÅʆ À ÃÐTÀ/öazÇ £u;Ä)^‹ Ã9.”)9‚/ŽÄ«pµ¥¯1& /qd¾Á… 0'áð:ÊcjŒæ¥p.H@J$–OGóMýVšMœ‡š­hÞ…eÉX9‹çß…¨ñÖªwÖð[k„Ü„ÌXêjÚ|Ý**Ýexþï^¾%®\‘¿º,nÞ¼ýìA1™Íþ@!pÆ+-÷S†Õ@=ÐD– r®öñ(¯¨|tù©Ü‡öŽŽˆDÓ @Ù‚Óž]cW$½b¢h”ie´Ùí¾NåñÅáøûeWVÆñÿ‡/»HŒ¯5nŒ˜Üãðb„¾£4Ö5ûf4Æ¢5³ëª¬»MZ·­¶º1»nÝmk)¥ +C»ÌÜ™;ÐX w°Z‹³3qZh/L·e€rŽçÜè”vÚiÁ^¥ç×ÛsïùÎw¿ïÜ3÷üoÂãñ躞J¥ÜÎE¡PlÛ¶}>ŸØ5M³,ËítŠ‚$“ɯW¬Õ*  ˜t´_1*ÂÆÏ:H*5-‹¹]b‹ÀòŽÎÿÿ=£PG&³ØÜÜ"^b¥hoŸ > Ä:c!ð0V š>Žs{¨/…ÂØOÿxÉ6ŠÂÀÌvÒbÉG c/>õƒG0ñ'êüδâô/©ýøÛ{Ä#ÄcĈ)qá{›–>¤Ìyˆ¡·põ–ƒøûŸ©ïMêþ5üž>Äà!Ò?Ú/àŸbÏñu/Z^þ¸táý4} ‰6ôï#q£ÁCHž$¦ù:·—Ž¿‚©#tÛOC‡¨÷ ºÚ! œë¡èAôíAä™z‹®%QÝ|/…öSçëôñ»¸rŒ~'Fa¾‹A²ÞÁ_^AÛ«tn.@+A¤{=Dáƒ4{†nöÐÐa>Ls]à†EòxßællM (¯ÐÍè”ÛK@¡Øb0çß}—s'ÞM/•‡¿:â0°ªÉB©d„ÐòÄ{u[Yy¯¿okS<œ™tº¶qçv —OŠ‘ô„Qà"P-vÃúV<îv)Ï.‰DÂãñ躞J¥ÜÎE¡PlÛ¶}>ŸØ5M³,ËítŠ‚$“ɯW¬Õ*  ˜t´_1*ÂÆÏ:H*5-‹¹]b«ÀÖ<ÞçÌÿ5Œ±µ£â)É,67·ˆ—XE)Ú[Á'ˆˆ±Î˜°x„–‚4{×NÑõ.šëAæ< ³»pý4Ï —¤ÏÊörx”úqí4f:i¶ W;p³‡¸¡dc)1p®‹V‚b Í¥™ |P ÇÌiš>Z2s|ˆÆPC5}íKØÿ#¼ö]zá«ôú0}ËÝ죥~Ü>GñãøçQºÑMw E0ß‹Ä ÊÆO÷еSXè#>@̤O{åéN‘ìnºå¥AtÍ÷Rò¤¸‚[}°Ï}+¢üø÷IÄÉÚ—Äü àNP:ÌvÊ»‹É™ë’Ñω6qcýìÝcÃ`#hj@y…nF§6çAª_ŒB‘#·8Ì1§ñ¨meÕ3÷cºÃyãKÍeÀa`!rÄ! hˆ­ BÊš +¢T2 +:|$Þ«ÛÊÊzý}ÿõŠ«Ì¤Óµ;·À¸”ôTŒ¤ Œj±Öï°âq·KyvI$G×õT*åv. +…b£Ø¶íóùƨišeYn§£P$™LÖx½b­VmÀ¤T(FE˜À˜ãYI¥¦Åb1·«Ql[‰ÆXw7›³ÝN婲îÃmíMQˆìŒ=òƒ÷!d2‹ÍÍ-â%VQŠöVð âCàâA<À °¸ qÌ$y ;–½r"yíìõðA⃎gPgÙ€a¤Oh5ˆˆ"¦Ü(q*ŽRú D#f€‡ …À ÇBòŠèb«myQ:SîTô:CòCñloˆ˜lç„ì2‹€_ •¦SÏ|ð3œz SïáN?DrˆÌŠ™àæÝ[° Ó6å-V³¢» dOeJN²Š’\>ab!'ó°Óv +‘n&X$?C'ˆ3 ¹øÆú¹zðƒ ©åºÚ”• P(r¬½¯Ïò7ßà¿ÙÇççŸ L†ówïþð."L1 J4 €²F⃲ ÃDS„€—¤8ÜVVæ÷÷nfuŠ‡2“N×6îÜî<‚q)é©I/,@.Õb7¬ßaÅãn—òì’H$<®ë©TÊí\ +ÅF±mÛçó‰ QÓ4˲ÜNG¡(H2™¬ñzÅZ­Ú€I©"PŒŠ01dzNJ?TjZ,s»ÅVaá6ÿæ7Øsϱ³½ìÑÞ +Å““É,67·ˆ—XE)Ú[Á'ˆˆñ03ˆ%<¸æF«mÊkçu ÿ`ɽ]ââšÖw‰cÌ &Ê#3Á£à96Dü¸™ +ýÙÚXƒòrp,@÷fµ–Ϻ¢²ùdow7 –=5òj äRZmã¾’Qø¢cÃ`#hj@y…nF§Ü^ +ÅÖ„ML®|¹†ÕÔ¬\¾üÃo0¾ë'»?[ò™ßW€PÈÑ~açè™wÛ û$”ä/‚Ä{u[Y¹ßß·é¥) +1“N×6îÜtãRÒS1’^X€0 +\ªÅnX¿ÃŠÇÝ.åÙ%‘Hx<]×S©”Û¹(ŠbÛ¶Ï碦i–e¹ŽBQd2YãõŠµZ´“RE !Dà˜ãYI¥¦Åb1·«Qlø®o±çŸçÝgÝNåisëÖí+Ÿ|òöË6&ªìŒãÿÝa†.2Fwµº*ÊpãÊêÍÂ8¸ˆ*¬"cךlüÐ}é—¶ ;¤IÓ4Ù¤†4û¹iš4éKÒ6û‚,¶ëVÐt`wt–aäåÊ­ÑqFLÖî€poϹàvÅ΀p8¿üssçÎ9ç>çœçyÎsoܹsûîÝÐxdp,2466<>Æ®B|)â7ãcá±1¶8ƒ¶>‘Á¡á›7o OOO§ºà±Ø„ËUÇ’˜5õÐúHë€æ&­OézðDu?©½:Óž+ÞR}üPôX±Æêgм¤ù¡]eWÒ¼ü‰úÈàÌlþDmƒÖ63šþ®Ùño‰Ï®íg”->,=bX–ôÍÎtfLþ:vïæ7jÛc'õ ù¡v¢¶ +«ìiHuËTU½{÷ÖíÀ‘á!îc3ab´s + -±†rû®ñ!=nß»wãþýþ‹—®åç÷æå}ÙÖúïÉÉÀøxhd$yR°°ŒF&'ýÁPé[o~;-íàSà#П€ôZ±¤kææ,QƒÞà}¢sÀÏA›ˆX^]›cinnI5Æóf$-®qæM@//é)™’žÉMèz€Bv–W(€ÑSY¹ƒA›Í&Ër86Ú@°P"‘ˆÃá`¢$IŠ¢mŽ@0'¡P¨Èng¾Z {ý¼Š@2U„èÖ[–“/I>ŸÏèÙ– SSê›oi9k5÷?T£mYJ¦¦§~ó»ßçH/î*=x äÐáW*«ö=¶¿ú¸P\%ÇÙµºôرýG8|äPyÅÁ²ƒ{ì{·îØ~úôéë×ÿ•êšÇb.WKbÖl4ÖCë#­š›´Vê– …+++Ù–e?>>ÑýaÖCfe¸» + -¶÷“þ| Rg?èiól"4Î>.@þëCýæ<ÐÌâ‹è˜0s%4?žšfDºØ¿ì!ý¸œrõ´¼Ö’s¡¥9ÕÌ›‘h´¸Æ™«oM//é)™’žÉMèz€Bv–W(€ÑSY¹ƒA›Í&Ër86Ú@°P"‘ˆÃá`¢$IŠ¢mŽ@0'¡P¨Èng¾Z —‚ý¼Š@2U„èÖ[–éµ_¾$ù|>£g#X&¨±˜úÚI-#S;Þh[–”Øýûß÷]sÚ*ö÷5è†^¨³@ë®]eW!]Ý k@çYˆ^±,”g³}áõ¦¼æ± —«Žu·f£±ZiÐܤµBh±ä‡Ú‰Ú*X¬²§} …ÝRùel|ìä÷N²-Û üô5÷ê"ês¿Ñþ)$´”ò'|ÞêÔ£ ƒ¨p иè&¨Ÿ#ÔÍ<èõ¡XøN3qÔÁ†â‚OܯÿÔÿå/â7‰ƒ©SÁkü]K¤åµ9– ÍÍ©¦eÁ¼‰F‹kœ¹@ÐËKzJ¦¤grëõFPÈNÃò +%0z*+—`0h³ÙdY‡ÃFÛ"J$q8ì@”$IQ£Íæ$ +ÙíÌW € ŸWH¦ŠðÝzË2pò%Éçó=Á2A½wO=qB5™ÕóŸªF³”LLOÿàÌóªU¿î 1ò€¼ +D—™ ÄÖñ›+˜ùý$ñº#/Ïëõ¦ºæ±Ø„ËUǺ[³ÑX­´hnÒZ!´XòCíDm,VÙÓ>ê–E£ÑS§N±-Ûü4HèÕ¤¸W\æQOâ‰Ð²×¬·³ó"ž!?'¸øhiŠ^­]ÖÄC\ñ^ÿwäÏùÖó ¸fÿŽb䢸ÈÇ_J׉ö𬌵9– Í-©Æ¸`ÞŒD£Å5Î\  <1²J¦¤grº€ †å‡”@À詬\‚Á Íf“e9m‹@ X(‘HÄáp°Q’$EQŒ6G ˜“P(Td·3_-€~½ÆK¦Š`%e·Þ²Œ—~È—$ŸÏgôlËõ«{Ú/ëµ×_W;;U£YJ&UíGï½÷ìêÕ¿þ©ˆ]ÿ¾c×FIÕö+Dñ5ù‚ÅPÁ¡g¡¼¼¼+^oªk‹M¸\u¬»5ÿe¿ü~ÚÈ®8þ=Ò†>ƒÙÄRxjWÛó‚”IÁÔ'<úCZà_XQ£>4}æ©[µ*DÚì?Ю%}(8Y28õ2ñà˜ ð&}h­™®¶LäÅ’Y-s{ïD»Í ’j.Á÷à [3Ì9sî½ç{–æÀöˆm‚™ÄÖ¡Ô*”03†î¸ž/”£–ì«úÑûS“¼d7yÐ ÀÖÂUaÊ^™JJ²E¹Ð›=$îÓè_ }zZû¿>È|Cß}Ã] *þü‚®Xl5›ºÇgæ VŸè–]aé©K/ÊGØ-¼ŽŒ:•ŠìTÚ×u“ɤ®ëÕjUv, +…â¼ø¾ooˆš¦9Ž#;…âT<ÏL§ùZí}á"ÐŒ‹ÈÛá•Ã¡÷KišmÛ²³Q\‚¯¿r&ûÓ'Á¿¿Ë…ò c¿øð·]׮ݞƒ6ÂQîõØ•#éóæå’˜@ÃSè/ÀÃS¨/‘°,+ê;o4Ž3™Y~{¼Ks`{Ä6ÁLbëPj•ŠJ˜Cw\ÏÊQKöUýèý©I^²›Àè€6#SöšTRº¢\¸>ž€€ëoÀQ«7ÿÿOˆËT} BЋ­f³Q÷¸âÌÔjCã½À2°+,=5céEù[À0À»áȨS©ÈN¥}q]7™Lêº^­VeÇ¢P(΋ïû†að†¨išã8²ÃQ(NÅó¼Átš¯Õ~`Ø.͸ˆ<°^9z¿”¦Ù¶-;…âí愱_ýaþzGÇGÀç  ´|”{«e%௠a?…ú ˲¢¾óFã8“™å·Ç;±4¶GlÌ$¶¥V©ˆ „™1tÇõ|¡µdGõúäô/ÙM`ô(4׶””ÚJ|S<­}û1jõs$<äðgÀ€ +[Íf£îqÅ™9¨Õ†Æ'ze`WXzjòl4InàÝpdÔ©Td§Ò¾¸®›L&u]¯V«²cQ(çÅ÷}Ã-QÓ4Çqd‡£PœŠçyƒé4_«ýÀ"°/\DSVد½_JÓlÛ–âŠðþ¶<å_ÏÏ_ï踔ÃÍhÊ-/³6@%`t'<…ú ˲¢¾óFã8“™å·Ç;±4¶GlÌ$¶¥V©ˆ „™1tÇõ|¡µdGõúäô/Y°¼ +j§()½¡ˆk È‚‚LñøòžËÛÖh0 èŠÅV³Ù¨{\qfjµ¡ñ‰^€—`W¸jÆÒs™Ä ‡`€wÑQ§R‘Jûâºn2™Ôu½Z­ÊŽE¡Pœß÷ C´DMÓÇ‘ŽBq*žç ¦Ó|­ö‹À¾phÆEäíðÊáÐû¥4ͶmÙÙ(®W½¼zÅNNdÇr¡ðÄï.Ì_ïèø(“ØŒæÿ.ùÃæeг-Ÿ@©D´ O¡&’Qßy£qœÉÌòÛãXšÛ#¶ f[‡R«TDPÂ̺ãz¾PŽZ²£z}rzŠ—¬¸<'zNµÒ§’’t™ôú„¤ÇaûàMäÉw¦®Å{„Î9aű¼ tÅb«ÙlÔ=®83µÚÐøD/ÀK°+5céÕƒ-`àÝpdÔ©Td§Ò¾¸®›L&u]¯V«²cQ(çÅ÷}Ã0xCÔ4ÍqÙá(§âyÞ`:Í×j?°ì‡6²‘¶Ã+‡!HišmÛ²³Q\‚“¶YdÙÕà•Èæ"áÉÞ]˜·£ãc Lb3¾1sÉ9/ƒøìùíßÄ'п+ ‘ðêK$-ËŠúÎãLf–ßïÄÒرM0“Ø:”Z¥"‚fÆÐ×ó…rÔ’Õë“ÓS¼d=À=à9ÑÓpª•¾8•”ä‹Hø”ð´ *‰ÄÝšÙâGçˆrŠ'>†@ºb±Õl6êWœ™ƒZmh|¢Xv…¥§f,ýzx„n;ÀpãÎè³JEv*í‹ëºÉdòÖ­[ÕjUv, +…â¼ø¾ooˆš¦9Ž#;…âT<ÏL§ùZí}á"ÐŒ‹ÈCX~å0)M³m[v6Š+BpxÈ~òÓàû?`×ÙÁ\$<Ù»ó ׿×q(“ØŒ¯G9³õ3ÝÛ(> +ÀHx +õ%–eE}çÆq&3ËowbilØ&˜IlJ­RA 3cèŽëùB9jÉŽêõÉé)^²`xNô”7#’¿ •”.‡ˆ÷‹‡Àèàz +Ê^HyúŒh‹è`@Ћ­f³Q÷¸âÌÔjCã½À2°+,=5cé¹L®~nÜ}V©ÈN¥}q]7•Jݾ}»Z­ÊŽE¡Pœß÷ C´DMÓÇ‘ŽBq*žç ¦Ó|­ö‹À¾phÆEä!,¿r8ô~)M³m[v6Š+Bðå—ìç?cï½Ñ ,»¢ÔŒ¥ç2I¸ú`¸qgôY¥";•öÅuÝT*•N§_¾|);…Bq^ C´DMÓÇ‘ŽBq*žç ¦Ó|­ö‹À~hêšqy Á¯½_JÓlÛ–âªP¯ó 샂Ý@v,É7ŒÍüæÃØ;ï||Ú™²ÌK«`ñ X„§P_"aYVÔwÞhg2³üöx'–æÀöˆm‚™ÄÖ¡Ô*”03†î¸ž/”£–ì¨^Ÿœžâ%ëî^>ÕÊ^JJ—CÄÏÆÇ„Gï ÿe¿übÚºî8þý‘Ia“ºvÀK¶á`|# -LØØ‹È‚@+/­Š”¦­ºîi2OI5iëÄC6µ´Ymý³§Òû!µZ +CEkÌ–jh:Û%ûìæÍçž?À–l3pô! Šbä3:8¥¤Œñ½‘åBoZÄRƒøuM*ûÓ!àP'ÀOA@‘ÉÔãõf›ã’O$ÜÍ-V ˜à–ž2±ôL>â®>Ô% ãѨÑSY¿ÌÎÎÚív—ËÇ‹D"yXæææjkyITellÌèáH$Ë‹ÅN'‹Õ*€¹)î"‰‹ðƒ[Ö³^x?»¢¨ªjôl$¹†ÆÿiéŸëù» /¾újAÞ†cÀßA%–~`ùcÝ€áGÑ5ÔÀ’;^ :Ô‰]¨Âf ƒÙ~ódrÞãic¯[ +ÑÕ}’ôè>Òû!µZ +CEkÌ–jh:Û%ûìæÍç`K¶8 +º„E1òœRRÆ‹øÞèÑKè#ô‚zÙâ¿Zí¿>¨ @ ðSPd2õx½Ùæ¸dÅÄ ws‹è&¸¥§L,}¿ˆ @¨JÇ£Q£§²~‰F£•••{öì™››K?Ñ´õbƒ%’ÜãÊ•+.—‹D»Ý>66fôp$’e‰Åb§“ÅjÐ LqL\„ÜB°žõÂûÙEUU£g#É´Ôíd—ÞÑ¡Íή+3t+•zþ•Wž$z¸,RŒ¹úhˆˆ5ütŸØ“sÄb~q"&¿Ðཇð–Þ>æ¢ô7 ŠSÏGÀi"—Ø…*l¶`0˜í7O&ç=ž6öº¥]íÐ'Iî#½R«¥0´Q´6Ál©ö‡¦³]²ÿ¹±oß>¶d¥ÀÛ MòA‹i’Y II催 i±­2 ºD|“Ön÷êÈòÿ–V?Ò·âÊëݯtŸÅ=™iôWàCà$ÈbIZd2{{Îd›ã’O$ÜÍ-V [”H¶4™Xz&qËj€’†ÆñhÔ詬_fff***öîÝ{ýúu£Ç"‘H–Ë—/×ÖÖ²‚XYY‰DŒŽD²,±XÌát²X­:)á3qÌ(^=ëÁ±+ŠªªFÏF’+ܾ­·µéuuúùóFeM¹™J8tðɼ¼w€kÀ$!DüL"& +â> ³l%®% +‚Kú?øîc-6A• bÀû â'Е¶@ ˜í7O&ç=ž6öº¥]íÐ'Iî#½R«¥0´Q´6Ál©ö‡¦³]²k7®ÿèÙgÙ’•ï‚®‚þ +±4áây¼'ãÃUJjÍ”ÞüÓU`4Aøø”0Î*…(,;ÒZ.A>/‹ÄÓJ<Ïc×ÀýZòwóTä€FE2þ‹ùIÊs€oËE&³×ëÍ6Ç%+&žH¸›[¬@70Á-=ebé™|Ä]}¨JÇ£Q£§²Ñ4]/]ºT^^n·Û/^¼¨sG|ûÖ­[wîܹ+XH$*é M¥R,a“É$k³(++cqûöíç×ÙÁVòx‹ÅN'‹Õ*fä€)î"‰‹ðƒ[Ö³»¢¨ªjôl$¹Âí¤ÖüŒ–Ÿ¯>môPÖ”Û©…Ì'úÏ/:ô½ |‹{Éȯ,Ø!NåÅí™Ïutvñš :CäŸåOħÌæû°Mœ@¿]^~n` ÛožLÎ{ÝGz?¤VKah£hm‚ÙRíMg»d_þø‡O?Í–¬ø9&^’N§ÁccIäçNØKI-§3÷ËK`Yð>Ð bvî¢OxíÀIž _d-©_¾P¯(+ƒ¬ÄõуÕ']€à#®>âýÿÂÌ!!êÙĶ\d2{½Þls\²b≄»¹ÅÊÜÒS&–>½ŽÌÕG€ ¤¡q<5z*ë—™™«ÕZXXxâĉH$ÒÛÛÛ××7444<< +…†%É£J:CÀàà K[Ö`)|øðá‚‚V·mÛ¦ªªÑŒD²,±XÌát²X­:)î"‰‹ðƒ[Ö³»¢ÈP—üߘOêû÷ëO<¡÷üÙ衬)ÉÔÂOÊË£g€ã ×Ãì„Et”ßâèK:.®ì·¿~¼Kô{Ð[âö5 x8"nsIoŠ©ýZ´ ¼ˆ]¨¬¬Ì××—õ7OÎ{ÝGz?¤VKah£hm‚ÙRíMg»d—ffêöìaKöU`?ðŽˆ„Ã"æÓ$Ã^JêêÈêéðKÑþ#ðžH_¿ÞÈ (Ý:Dƒ••·D¡aÏ>PƒŽ/i³¯ƒØ¶üñn/ƒ,b[6™M^¯7Û—¬˜x"ánn±ÝÀ·ô”‰¥gòwõ (ihFžÊúåÚµk---ùùùŠ¢¸Ýª;wVVVVH$’Ç›Íf·ÛYÚîÚµ«®®ÎáplÙ²eãÆ»wï7zƒ‘H–%‹9œNfÞª€N`Š»dâ"üà‚õ¬ÞÏ®(ªª=IŽ -ÜÕ_ú±f6i>ŸÑcYS’ ©Ÿ:¢¯‹”ÜAô-à›@)h+¨”7îi+ñkÁFØ* | (ØðÛ–-ßcU©´´¼¸ÄZ\lÝ´ÉZœ#ª(Þ´cÓ¦Š’’Ëw¿±ÙùÔSß)ÝZ\\Ì +®ëûîpø|Öß<9ïñ´±MÌRˆ®v蓤@ÿ/ûåÓÖu†ñç%´¦[lBºU]e8ëHCné7•ø„Û}Y¤)S—HÓ>Ô2ýÐ)š´icZ2u[÷§Ù´iÕ6­SG)MÁɈ¸ØøÚ8# @7ÍÙU¤°íƒQsïÙ9—? + D6 ¾s~ztöñÕ}Ï9ïyž$‚ÔV)#_+Î:%:Uè’ݸqãèÑ£ŸÚñè.›íÐçöyª÷Öí©:ä¬K6´jIŸ=I¨!zÜPâçªÃî\¼XhK6Í\:ÝØæuÝÀ¸ˆô”O¤ç +’Hõ£@=wÃæ–d*eu)/º®ÏÌÌsçÎõöööôô¬^%ÉG¿¢(Á`pdd$N[}ÀH$¢iZƒÇÃÃ[-Ð LŠ|R„!øÈ&jÜnUU­®FR"ºnœ8Îì6 +V?L1É.æ¾qòdÑW·@?~üt +8 :MX#à”ø¿ý ô-P¹ù"öXÕžSüÃÕTêRr¬'¦öÄc½qµW\KA=±ØªzVUß‹DÞ ‡»Ãáó‘ð¥ÁAn¸cccóóó…Îy&“õûÛù¼9ËÑÕ6A,$‚ÔV)#_+Î:%:Uè’-..ÎÎÎ^ +^êè‹D:åÁÁw#á÷£ÃD‡ùž·|—JIY%~Bör%{f§Ï¾ývç—žê|úé³=çzfgzWDwÄ6þ­ùóóñXÿèhôïþUUŸzñÅÀ Ó~âvíçÇXÖ’ª„Uýô[Ð7 Õf8´Ûí B{\²iæÒéÆ6¯ èÆE¤§|"=WDªê¹6·$S)«Ky¨1 caaáö +“¬D"y@Ȭ°Ô¿<¸êºÎ¯¼µ­>]$’ Ñ4­Áãáá­è&EŠ@>)Bˆ|d“™ýjÜnUU­®FR*è:;~Ü°ÛY(dõ£•L.wìäw¥²×ë„+DŠÙ’CDC„0ÖQÄ ÿèÏ ƒ ÞŒUO<1 ÆøÝ[`Æc¹Ò¯(ËçÊ0nëúíÅÅŒ®çLÃ5L +žóLÖïoçóæ,GWرXXR[¥8Œ|­p8ë”èTþ‹eÜñ—ˆXúbV_¼ÅÅ·adù›”aX¾?¥¤¬“‘ã]Àô¥CòöÌÌ|Sóü /ܺžºmžœ÷¶ƒ;ð^»™]øŠÿÕj¢3Ü@W„aBÓ}†>.âŸÓ ß}YØlvGß… …Ë’M3—N7¶y]@·™ ø¢ä鹂$Rý(PÏÝ°¹%™JY]ŠD"‘H$’â¡iZƒÇÃÃ[-Ð Lšé.Ÿ¡@D>²ID?ԸݪªZ]¤TÈåرclW9ûÛEÃêg)&]ÿú÷¾»³lÛïÿ‚¦€80B©ÀÇqÅÅ[þê5˜ÍXYU¥ÆbV—b%†QÀ®Éd²~;Ÿ7g9º:À&ˆÅÀ‚ÄBÚ*Åa$àk…ÃY§D§¶n'H$5ׯ³çŸgžgÙ?S›øu–±¯½öí}À[ÀMФpŒëYvŸØZKâ_]q?úá=P½éG6»=Ü÷Ê$1—N7¶y]@70."=å鹂$Rý(ÀÎÙÜ’LmfÏH$‰„ø&"‘|BÐ4­Áãáá­è&EŠ@>)Bˆ|d“™ýjÜnUU­®FR" ìèQö鬯Ïêg)* ºqâßÿ̶m¿þa¾j]@KW‰ωˆÞŶgÈ|Ûí +­Þ³Ä½ÉX¾,Yx±™LÖïoçóæ,GWرXXR[¥8Œ|­p8ë”èT«½v}ïX÷uF–øΗHÖaµ'ÌÝ?3Ëfn7»6½òm·Xiœ[ÌxÉï¯ÞfVühP˜Ñ²ïúW!áI’ðàˆmv{_ °%µJÖc.nlóº€n`\DzÊ'ÒsI¤úQ ž»asK2•²º”‡é\I)±n•m.ùd¢iZƒÇÃÃ[-ÐÉãœHÈ'E(‚l2³_Û­ªªÕÕHJ…>b^¯±ó³Æù>«¥¨,2æ;}ªü‘G~Lƒx3öó¸.:Ž‚wÇøeQÄ;·‹Ð@¢wÙíáHÄêR¶ cÍÛ­‘ç»îÆd2Y¿¿Ï›³]`Äb`Ab!Hm•â0ðµÂá¬S¢SÿßnˆÌ]’‡éiãÈÝ}ÈH&7ñëcm>Ÿx˜Âfä[ñ„èn?¢Ëf†¼¼4˜áÐæpœ\¼ï•I6b.nlóº€n`\,åéÅ +’Hõ£@=wÃæ–d*eu)‰D"‘HŠ‡¦i oµ@'0i†º|R„!øÈ&3ûոݪªZ]¤T˜Ÿg/¿ÌÜnc`ÐêG)*:c¯þäuûöí¿®™/bA³Ý.ß³# Þ¹ïϚ͸Ën []ÊC&“õûÛù¼9ËÑÕ6A,$‚ÔV)#_+Î:%:eõHJ cùb¤R†×«·´“›é2~‡6ŸÏœááhÕî¡ða” tžñsÕfwô.Üç%3—N7¶y]@70."=å鹂$Rý(PÏÝ°¹%™JY]ŠD"‘H$’â¡iZƒÇÃÃ[-ÐɳŸHÈ'E(‚l‚ ÆíVUÕêj$¥B.g\½jô÷³ß´úQŠŠÎØko¼±{ûöß×€p~yž7c8 j4›q—Ý6¬F­.å!“Éúýí|Þœåèê›   Aj«‡‘€¯g²z H$%J6Ë ¦ ±tzs7ð¾òŠ8L€Â„à=è2á²™!DÝÀs ~®Ú쎾À…û[–äÌ¥Óm^À—`\,å鹂$Rý(PÏÝ°¹%™JY]ŠD"‘H$’â¡iZƒÇÃÃ[-Ð Lš¡.Ÿ¡@D>òì—]lSçÇÿmr;c»Á\l—Q¥XZ³ –Xøj‹’j´•â]ìrk%.Ö‰9U5¶‹^šT©šC…i»îEDЦ$jñùòÉIÃè¦Y;e[ZØL'÷Ýû¾±QBû‚Ïb=?œsŽŸ÷ãÎyýüßhZ‚A˲ÜVÃÔ+ËòÁ}ñè‘Ûó¨)«R?}º©±áoÚJ»-e×P(,Çb=ê¾öâÂ)Èk$'!ã$àx^11ƒc‡áIgÝ~¦~ÂÔ̵Âùð¡¸õ…üòßÅ«O_Mú€€ªGñjõ(IÚÎ aú]õúüƒCÃ;*‘©ÄR>îŽ4ýÀ¼väÄÒ«ˆ“võs@›ª†]™\Îm) Ã0 ÃÔÛ¶ÛC!eÞZ^`Q»8qÊûÍšÌhZ‚A˲ÜVÃÔ î‰÷Þ¯¾*g¦ÝžJMQû¶_ž9ÓÔØxÈšÅXtì[ïÈ’ cæ/‚™Åèñy'¬´ÛRv …Âr,Ö£î[`/.œ‚¼Fr2N2ŽçS38vþÀ‘tÖíW€aê +!¤þ§ø–o¾%Ž‘·n‰mu‰F}À9`ÁÔ£­ÊÐõh†hƒÔïª×çÞQ}L%–òùpw¤èæõS#'–^Û Ò®^y‰6U ;»2¹œÛR†a†©¶m·‡Bʼµ½À¢ñ~N\„ò~³&³š–`в,·Õ0õÂÝÿÊ×_/5ÉáÁímgv)Jì/~{º©±á|i1ê­Q¢âŽì +ðpIoÄ4{}þ4/FÇ +…X¬GÝ·À^ô„\$9‘€ÜNÐÆx–o7'ü߆s]æ4Ir*¢¯á¥ÀÁ‘tÖíW€aê]1…Xû+oÞ”ßù®x¥Uܸ¾½Þ"Ѩ8,˜zT¡ ­EʘÃi`@×#R¿«^Ÿphx2•YÊçÃÝ‘f ˜×OœXzí1H»ú9 MUÃήL.綆a†aj‡mÛí¡2o­@/°h¼Ÿ¡¼ß¬É쀦%´,Ëm5L½pçŽüÁ÷ECƒ¸ÐçöTjʪ”±?ô74üÈ‚œlÄÖct‘Öû0x¼þtš£S +…•žžwÕ}ÛïAßIÈ,ÉIqÈÄæ MQ6Í•xƉm–ö¼dŠä ‰D£ißÁÑtÖíW€aê Q:¸~C¼ü²üÖ7ÅììözŠD£>à°`ÌaÕz”2õhÂÐÉëó ï”2¦*Kù|¸;Ò ôóú©‘K¯"NÚÕÏm@ ³+“˹-…a†a˜ÚaÛv{(¤Ì[+Ð ,ïçÄE(ï7k2; i -Ër[ S/Üù|ã á÷Ë?ýYTÏ®Iýàß‹/ªXs°K˜5›]$2‹ÑãõOLðbtJ¡°‹½«î[Àƒ¾“YÈIˆ8dbsPµ¨œ_¶Ï­âÇzª¶OÓ<^UH•±D +ò*‰{ Mƒ£é¬Û¯ÃÔ!ºtÞü\~¯M¼òm™Él¯“H4êT=Z0…¦j=Js8 aú]õúüƒCÃ;ªŒ©ÄR>îŽ4ýÀ¼~jäÄÒ«ˆ“võs@›ª†]™\Îm) Ã0 ÃÔÛ¶ÛC!eÞZ^`Ñx?'.By¿Y“ÙMK0hY–Ûj˜z¡°,?þXœ8%oüÅí©Ô”e!Žœ8á}áµ»­mÄ’ $•_‰ê+åü•ÿ¿H8d£ÇëŸH»-e×pïÞý£GßQ÷-àAÿ)’7HNA~ +y™D*d¢z”Í|òJœt\F1*dVìVÆu¬¿^¡ùæÞ*ª ô)gNňï§HA^…˜ÆÑÂ802‘uû`˜úDܾ-þðGqö¬üç¿„:}ú"ѨPõhÁ˜Ãx5g˜2æp õ»êõù‡†w^³Kù|¸;Ò ôóú©‘K¯"NÚÕÏmªvver9·¥0 Ã0 S;lÛn…”ykzEãýœ¸åýfMf4-Á eYn«aê…U!ÿþ717+óy·§RS +«~úþûÞ={ÔF, Œ­Ûˆ%©üJL‚”óW»¶‹„Cf1z¼þñ‰´ÛRv wï~ýöÏ~®î[Àƒ¾_Cþò*d\‡0!åcÃW&ÿÉœø“§ºÃËåºÝj”M×EibNš¯O‰â¸em­±ú”¶º4™0HB¤ FI~†Õi¼Ý ÿþƒWÒY·_†©3„Xû»²"nÞ”ÙEùà¾ØVG‘hÔ¨z´`Ìa¼š3Ls8 aú]õúüƒCÃ;¨©ÌR>îŽ4ýÀ¼~jäÄÒ«ˆ“võs@›ª†]™\Îm) Ã0 ÃÔÛ¶ÛC!eÞZ^`Ñx?'.By¿Y“ÙMK0hY–Ûj˜zC˜Xûؼ¯ÅkB–ù#Ëml+ÄãýÓºÌ*û'ñx2Bˆ mŠçbCò†cñÄ٦ѿ^Yùññãž=tVoÄ(E&úÄ,4µ#ûT‡2ù”4kP]üÄÄhžh€èÙˆ}cß¾‘©ÉÍJ*E]¢ô§|r馕ùfÝU±±Éúœ-žf±ß-Ç-e­–›ö† ”Äú´Ó·oõ“7ßR÷m¿}¿!¹´G~NÒ‚H“œPŸc$“$ã$âW ÇÕ·$Ó£IR!U‰ s0Fb”ä¨9‡Ð¡›‹D©­j8aFÔuèPMÔ@ª‡µæc›ëô§j˜€þT§i3%5ÖTŸ2¡ûѧ&ß´-N`Üt;®Ç]MB¤ÌñôT¯˜qzb¤4g®'9 +™RªI®ԷꞤUs%g¾2^Ò2VŠÇÚ"S®g.'!&éì[Oçõ|/UÕ‡ÈKµÛDyhí\LÕ *.áK*_ªÖŽdú”DQÜJM_x!ÊhÕJ‰9JÚØNí¸ujܤ•¯,»`ì]Xn ìÃ.»Ô8ÜÖØ9§ç|³»ÌÎ.û!–Ü9fÎœûmÎG~ ZñÂñ}Põì«í=1[šÐòZ©ë7*R,«,{IX +Ý¢íeYÚÌkBÐÀRLy½Qa>”›g›RX‚Yû„vÛm”%H´c,\Ò VZƒl}XÓb÷ÝêZõÚ¦°ÍžÞ(ÃWnXŽp1œ VÆŠtÅU"´e¨¤v +N¡5pÖic±+úN–’ª<­”h«8 _Oå\¸ãMI–+3n MÍÍÕ'ä$Ë¡ëA›¡G/‡~€‹úTU½õÒå+«×G†»™L㱦­C’5µ™•ž/—’­~ `Û¡ÃDâq»â€8à€|sJ¥êxy«8Ô»ßf¶Þýú5åØUSãóù·7<)ÀgÃÑQ ‡)—³íG¹²Ã£‰zàq²HZkTü^úZ¢ -äe•½*ÚP8«¢Ýl¢LvùWï½·E©d¥Wn€Ë×@]Wêš‚« +øÞ¦ôpà*¨«º‡Añ) ^ÉAìéíßóøý6í6]¶çfídZn¹éÜ:_7{ÞÔçS,Ê)`9ß›Q9«XÈÊÞ•ÛZDNMM½ñæÛ·mUðÅŸ€fÝìô)¹ºny] +ÛvyýŠ|Šn(d¼GÑ- &ë–äë¦fñ$Üb2…nÀÂeôõ(ò2;óuuHëVèbâ<»Ð Oc:¹:Y ¨Ffgü  v1ŒÙß šXxYzµ…¦Qdtj™½ZW§2X`» Ú*‘À_Y—W_ÚrêRÚqÀv!LÀaa7Ù·öÝ«½6õêKTßÒŠºõ+›çOEi’¨2žé#*{S½ý*ly¦þjw¼mÊxRG +íQÚ¸ÚË4£•}ØÚí±ò¯§k½P0XŒåö›–b°ˆ+7{°Û¬²ÉYC¢9J“c} ¥–¯kÆ:+ Û²ì 5 墰ä©Ô/\\ ¡F´ººž CSss5À ùÅÈrèzÐfèÑÿ#?ÀE€FÿQUõÖK—¯<¼fîf2Çšv´ÊÁYS›Yée©P²ÕÔñßðÐá@"ñ¸]qÀpÀ¾9H¥Rõ ¼¼ÕœêÝo3[ï~ýšò쪩ñù|ÛžÀ{÷è÷¿£—^¢S'izšË”ÆÆ0‘ÀñÅb4 x—³Li,-Q$J==èëÆþœþ:/áëiÆp„¹„=¦T“)Š2;”p龜’Vs‘ËECC´´¸fÁÜ<CÄŸ’ LMûäiboáЃ¸2ÃÀxœ\íÔ?È6ëCœÖ~# ŽÐX‚¹„=9±8²êÄ8ŸÑòg7>ðñ'·›ººÄM¢é¥Å£--O+uà®RP] n*¸¥À Э”À pEA;#zzuÛ&\Pê'º««ªÚOŸ¦Ì/ÍÍiÕHSwhx#Qd–t +Ó“ÈYT4Šƒý4§å¡Ìf1C¿Ÿzü80ˆ3ÓyËgfh$H‘ˆNYšÙÅžäÅc4Àh”Åq\YåÔP[›Ñׇ ŒO:üs9À~ Îüè+  @'Néû'€ç€®uÈ…×>|èC /n¹5Á§@g€þt^_ÿ<xè/@§¶ú/ó3ÐÇ€ý¨° È£éOþ èï _ð¥èœ!ºäâûg€Ÿˆ±ŠÉ:o^ÐÚYò¹¼vv± +?Õìÿv¶A<ú³6àß`°Ùìß¿d±§µvÓx¶á¬VÍ®i-ì{›8N}ø¯¼ãÂÂòÏ/²‹ãPtO~$Aõwa˜uÃë»á;ß~ö«÷?§éΚ´öظîqÎx€3ŽËº`¸Ç¹ß¹Ç»}‚Ÿ.f|GF0¦ñ¤ä:ÍIOIŽéqZÔ=¾²‚Ѻ]80kÀ,AšŸš°.õ´ŒL&1¥ÁA©ºb©£ÁV‘§ƒúzéžîúœL<<Ì…MÉ”T©Û¤îq¶|€ÆÇ(·jZ.õÌ–÷ú¹¶ivÖxç±åÑ0š2©%p³Äc¨‡-/ evYÈØòPYTÞn"®ùPCaâ¾ÖÃM +>ÅÓI†{Ä=.ñÉ­òÌáñ‚< -ì÷2b³³_Ü fGŸH"7²Ijä$nr§ð@6{œÛ–á(ñ0”©˜FsDDuÜÆe¸ %@5’2¯ ½¹Ù|×OMáÈ°4 ‡zr’&u“ò˜âüJð¹»%nYä^nw#"A“}fVÆuØt<-¾'’ìòdãæòCL¦:ÏyGr±¨§×»9–ÇpÂœN“< gE4LR~fÆQ7Æwv ·Ì¼Ž¤!9’YÄ–óhšœ4X“™µÊu»"ÿ#Êòÿ(føý< 8ìÄCI 7ÌŒ“é¸Ylì;ÿØŽß—µã<ŠƒAò°ã#"ª1š'Η+ÏF‰¼éxHäp‰š±º"Ž·»Ø#\ÒqëõãÁƒtôu)ª¢´‡¦ææj€Ãz9t=h3ôèåÐp ”ÌÕê­—._yX½<2ÜÍd5íh’¬©Í¬ô|¹”lõuÛðîä€8à€üß@*•ªohàå­à<@Pï~›Ù"x÷ë×”@`WMÏç{ÜÞ8ð¤Àâ}üÍo ·}yÔ8pö졽{øŽµµø ôÎ;4—ƒO(Ho½EÏ=‡Ï|ëêéìYäó#”>;Mu?Å_Æý¯Ñ¾}¸w/íÛ‹¯¼‚?ÜAo¼I}}¢(2Žǧž¢£G¨ÇŸ×žËáÅ‹´ÿg´c56Òk̾EÂÚ½›vî¤#G¨³C(çf±¥«¶ˆ–¶6*ž»::èÈQÚñª¯£ýûX»üøGôüóøšÈ+º—Á?ü‘¶oÇÚ—©µ•3Ù•_´´lÿûUåuEßçYܤ•*–`¬`°ÏØcÏæ{<ã™ùf؆TŠ[c `‡@ ÚB$Ú@QRR¡@ITDZ‰()mCB´$J$!@í°4ÄÂfvb˜szßØ õWQ~4Rå«'küéÝ÷î¹Ëy÷º“ø7”º¨Ô%¥.+uÕÐÿ¶ÆN¥6*õ‘2Ú”ºn¨›JÝVF§2d +𥊱_ZÚÖò2640!~ S€WGXVÆÜÁlMc5ðvLš,ÀQWÓ\;S\÷Î:FÂp:QU¥ÍŽFÄðyáñrþ|^¼Ðe8Î~…ٳٻCUضMéèÀ‹/ÒSH¿±”»î©,(äÌYl;…®‹®]çâÅÌÌ€l^·N;íë[|í5””¢Ð+Ö¦t£ŒÈŠ ¸˜yùœ4™Gê»%âMMÌvp`ƒA¾õï$yç6ÿôGTïF¼ÛÈQ¥%ÈsqìãlmÕêâü§žBïÞ¬«ã üÔ—m?x¬^ü–iXVú.+@©>+|iœÆ\ šlØ`ã [¬|ÇÆ1v~߯¯Ø“ÇìÜfçx+r,ÌMc‰Á2ƒå +eJÿÎ3ä;~dåßlÎý%Ä]]ê/rΡe†ª±y³öäå+Xð|>Mƒ&ñhWƒiÒ›9“'OÊí8°²ëˆcÕª{†;©÷¨›ßÂk8ÍMŠ{ œLbýz™™•¥Õ½^º ÓŸ¨û¼t F]-·ýCï¼ÜÙ³Ñï!Êlû^÷ì£ç¯Û9r„V]¿6@+ºr™›+#$Nu÷Û¸zK–èmròÚµòåâ­¯ëfÍÊ4Œ÷•¢R7•êPêjj]7Œ›†j7Œ”±ÑPF›R7 ÙcÜ1Ôme¬U†'5ˆeÆÖÒ2Ö×£ª +Ÿ† ËíÖ.jh@K 4ð³xæôîƒÚáøøã»3#°a=#Õ8^¶*@‘Ÿù.­þü ¸p¾{ãWç8g3ú3TÅ-[´ú•Ë\°@¹¹NÑba¡Ž7µü|ÊúéÏx8¯ßÀ«¯b@äü5«µzg'—þ†"æ8èóCB&ê6@Žr:ÙÜÌÇS?‚‰Orp.³³Yäòåè¼Íäþy%*†0{v¸D¹ ^¯>_·76bï^}uûiN™¢CVW‡={´Ï/]˜ó«ùŽâÒáåUÛã5Œ× œÀ“¥ºª™â´·›lâTÛMLNðá8+M¾‘Àù8÷Å9ݤ3ÂÜý²‚ðVÂWI_a8«ÙåN“—L¬Š±ÎdN”ŽC1,ŠóL'bü¹É‚r´.ý•ôá« /ȼ WsT ›Mtı)Ɔ˜¨#;Ær“/˜<™À™8_6ˆ0'Lo ½•zÉ9b¹#ŒG£\GG‚;ãx<Áþ ÄL¬ˆãdŒm1Šò•*Â/¨ÕÅ_œ!„1µÛ£àmQ|hòi“Y<ÁßÅq.&gDQP­aÄæ*}‚?Üb~5&D°Ãäe“5Qk2Û„Ãd$Î%Ãx¦æÚٚŠ™Œí.1²¢‚¥Å,)–ÿ7ûUÅu…ï4ïU‹QK€@ˆÁ6± % +¸u[‘¸˜<â–RE(éSÓ*AIÓ´ RU5mÕVêTMÛ4@᩶¡r@jÖø¯w½¶×Þ¿Yï®ff×»öÎ9=çÎØûëüP$:‡ñh¸{ÏÿwÎ=k¹ÆáôiªqÆÆð¾úTVÂŽØÐ|€ó)ÆêåK„p 0XWÔêêaÿ~†îî'ð;-pûsθªBëëøկ౰« d…R‡À¶vln&Àðþ}û-ôAH«Ù ?}¢Q«³³ð‹Ÿãöí¬úúu^Ñ4xÿ}Ø[OT2Ô©3ìouÜšªªñìíw»á¥—°²’GŽÀÇÿ`å™ üå">ý4u' ËIiÍ^ê0Ü"ª«¹|Îœ‡à•WÉr8ñ=ìíµ{ u§Ë—ák ¸c°Ùû¸¸¬bÙ[cR'<ñ]ü\:áoà£[á…cðÉM +˜”ÐqŸoB +&¹|ðWèþ§¨CrÍþì]ˆÅ,EHÀùóÔ4ðëØö/^L%ñàf²»J©Uãõ\¤„Ú'ñõ³Ž0o¾ø"îÚ»ÇçŸÃ>ÂÅEÈ.‡â³ÏrÊê¹H-³)e¤««àÔ)ô1ûð·> +'¿n·Ý›2¼|¿ù-‹õûÙw²‚FÀ sá׿ÂĔ܉ <ûܺ ¿Ý„].^™œÀwßáðVUsO öRSCö³/{ªØñ·ß†¨jGxfyw>†„®öv»Qÿî÷”)¨ÜÍÖ’³52\„·ê*¬¡ŒŸ¿Ÿy½^8}†“¸g7€B÷Ï+Øø Üù8³xŠ…ÐH);x~ó[ÔtËq‚:ž{ÛÇŽá§ÿa^5 +çÎÁ„–y÷O-­­B\bP‡kM†·äpØ-Ä5!åy´©bs[{dž”;´ŠiZãñ–*!® +áæ¬)ëéééTxªïâ[Ž6„Bk+sÈ!‡rÈ!‡RUõpC o„¸$„WÎ~ë™"höë“;›Sm]ËåzÐÞ8ô_a2iœšÂPƒ! ‡1æ7Mªããàóa ói¹-¡0]áî]ðz1‘@ëþ£ÍÁè(ŽŽBX²³„¿AƱqL@[³&/v¹øB—L‚ÔÍïTŠwŽŒ²FÉÌdõÉçÍ€t ½Óƒ8;›3~>mƒ0:"gFrÆÄ äÝpí­€ñ8ööA_?&¦ia.>~îÍ/)Ê_…ˆ*JŸœê? +U%½o åS¡Põý›jP¡E^q å®!®å ,ÆŠŠM_BCçèø"F÷Í@}Ãà‡dŠ-Ìš@VuÝÁ¡! +…m6½ ‘–G"À1£}>ˆFqq!gùäöô¢Ûs + ¢àSÄüc.Î)³ÒB‘̤s—ÓDûú°¿Ÿ?¬¨ÏÎP`9evÌÉ’†Àú¼8€T’7’ déu€Ç ±8‚ –åcc@˜]/3Á†À ë¬ÝÌ‚Æîôx¤@Vm$“Ñ©ød|:}OÃ(=:N8i`$ A § \ éˆduœÑqLÇ€ºF8Ðp΀m6p"Yð¨) ê0¡a†À¦Á¢1‚ k0Gö°X0tP T“¬Ñ敪Ü9¡cZçmYâ:„tZDzOëh»ÁHŽêÖ1JR0‘”-V%5f75œÖЯ‘I+¼äѼ÷t O\!C:®KÇ5Ìê0CØÐ  ÃœH뇈-Ïñ¬Zev¸g@Fn[Ð!&-$Þ³:ÂÉL.h‰D|>¢2ØB!3,ç"Üb:Å Z\$ìÛCU^Äb ?"àBæ2§Zã +•h ÔÇ%ÔÇ@—À†,FUèê†ÁA€u«Æ©œMŒ„+ƒ6Œcc u.Ò´]¤kêU(v‚¨\é„ÄêoĪqÙ¼>v'3ϼ«H(õxÐë¡b·º PÉP òs{a]‘ˆuÙ܆Ùñ”tœ°JòïÈ"5ô\{¡oªhÒ JÞä’=€ÔüÔtÛÇÉIèe¨Ëî¶ïóË°,´ ]#d9;NÝI®qÛL˜šêNwafV +˜™!½à÷ÛQ¶· ±ã`ÕøÂKvâ€i=ÁE*Û²Æ-ˆRf©¶¼¦Ð‘ËÃ>®ßw'Èf!„;]ìx*iûBDŠ|$ˆ=l5äù‹¾P£°°ÔW)nQèéásÁ®zê´  €SØ­³Àz(þ–ãôa¥ ä¿xÌìï‡~r|ÚÒN©ç€¨Â! ¶¨ÜÜXà(óÒòE 6¯•qV@&ÎQá@67ùâ”Ya²Î#Î8f³lYî¢XåND:›ø@Íe\ZNhArœüµ»²Éïé…A‡š 7æf!žàŒàrïƒZZ[+„¸ Ä ;ך oÉá°[ˆkB4 +…ΣM›ÛÚ;î[±C¥˜¦5o©âªn9B¬g¤§§S᩾_ˆCBl9Ú<@øtÈ!‡rÈ!‡þoHUÕà 4¼â’^9û­gŠ Ù¯OîlLµuu.—ëA{ãÐCK°ô`ÞåˆV¸ë¬´¾ük¡º>Yw«ùÅßyK–!¸t«,¶6ß’"«@ªdvùƒ‘Éœ|ë­/*üIãME´)¢C(íŠBï +=vyÒíÿ$®Ëbôå²ÏÈbÜ´uë']]¥n–‹,»€%Ž—±Ü¶ ?X(«œ§¹ï|omÅk_V—®½¿²JTË®ØvçI[SõêbW o)˲íù±-EÚÚrÖí²é['•VY©ÒI.ÒRô]šÐå\zT¬¹´Ö +6/·ú3M®ô¥"-ò¥Ø €ÜÛe.ó­ŠœÀ|¼®-…–äÕ#[m–¯±•âVlÓ+üÙ,øÈî˜kq«!a9då +ÙQ°X Ù$Ç!Oê*õ…ýA.qàJ8Š Ã¥ˆšè’ ‡ÓVî<å»ä™]¨mc,Ë‹Á¶‚#Pb¹\XÒ¹m©Û–ÖÖ +!.1(‡Ãε&Ã[ò<êâšBáó¨bs[{Ç}+vh£Ó´Æã-UB\ÂÍYSÖ3ÒóP¡ðTß/Ä!!¶m…´+9äC9äÐÿŽTU=ÜÐ@ÃÛ!. ᕳßz¦šýúäÎ&ÁT[Wçr¹´7=$$¯¡fÙkLá% –ï>…[Êßsâ .qeîyyÂËš°tÛ‚ÂÍP V¼†­x=K›ÙWÞ{ïË_xäÏB Q1*↼‹-_Ǭ›Šõý_ö˦§q$ãÿÒ¨sgX>ráÙÉÁ‰=FšËJ|€¹4R Ÿ.­:lOo,!öhÉ'n>î*å­*b»Ê.'ÕÝVšç'wÛõò¼T¹þüÿTÊ_ìÜc& ±µÖO?ÿY´8u¼PmVŸe ÍJ·ñ<F KMÒÛ´}zÃ3óª’^aâ< 3ýa9sZ¾†’#a«ì§­³Ó’²°rnºUåhöÚœEÅ•kÝt_¸­KÕŠeœ­~Û»«6×4kyn>TéO’]Iëò-´¶ÅN÷*›Ëü\Ø2_\ÜZLÿìß+›Ë6³æ9\°5-ª>nU]«Xð5+Åó Í½ææ| 7O9öEn¤ôQšÿuÙô¥”pí‡[óT©îdû:é‰5¾eãªcQŒ´›åKð{=8•8-S†c%oÄyt!Ï£¦×º¸~³!„+/qÜ=ô73àAÉI/“ªþØ6ö¦aX·+AA¼Qív:B¼m§À“Ò~.*Bh¿[Õr’­v;‚º½!¾d-Çç­´™?ç<ý“>˜¿R}yÖ®ØÛ™Ï8/×b‰c]5/ç6˜–ñ™uL^x®•¸ÿÍþöë¯Í~øðàOMÒ”WzËÔ%{b0öWUˆýØlþëÓ'=PɼÚ4"UéPé}îÙkï¬üäÖˆUmŽ©g ‰'¼4æk6óÙ0<Pü˜•­ÑGÐbÌçÓóA0ü1ïõ\—(7.sR݆$[" ÃŵÆF«+ú³™\Šù +-[\m‚©të¨VmOcð4}¦í†SIK½wö¢ÒT¾Ðø$_§Z{Ó¹RËbÞ’ô[”%, £e¥êÃržûnfó¤b¿e¥+Ïfmy~ãqº§¸6»¹îÌ<GÂ-Ïì3Y^š ¥˜ K ¸q«Mü›Ú¿†¸*y«R®l_}¾Äœ:]\{Wt{Æ òudÝæ…–Fز³OOP9°¦åZïrµÇ‹¶‹¿×ó€càQ‰ÃÑ2e8Vâð]u5½ÖÅåð‹'&¾–—8îú›Àð ³Æ\$½¸FLªú;`ØØ?˜†aÝ®AñvDQ´Ûéñ¶ œOJû¹¨¡ýnUË=H¶Úí êö†øNàFÝZÕ¦Poñ¬ âz›emR˜æuÈ´¿}^žg5kÅô­`-u6¬’ÿý/I~ùí·Ÿ>|…س’ô#%×_7ÝÇùÅÄu¥j4õ–}’úŸý! 1Éš×úüy’[§×‰<ûÇSOg– VÅ\ráÕ±ü­Ù#€ç¾ó×VU“æ?Í¡Š)¬ìžÎ˜.‰%éÕg-šÅM{2Ë£¥ ™kn&Ö/Ï—µ¹|“BÍìÔMKL+³Tž¸´Óù"sóÕPÞH<ÑÃǹÙËlž&ê•bš«7©Õ0^rÇÈ×¾'¯Ó-ãÚwÁô¯8õ¼Y!ô<ïmÛ@Å8×g*† 5¸ÊQÝCË^-ÜV†2ÏtêMy½“hlý;“­Ÿª5½ÍÐ,†Ùœ/Z‡¥PØWwM?4<·¾ºu¾t¹ù#¿©²–±µmõågæ1OôQÜ·|¿×óq=*q8Z¦ ÇJÞy1q5½ÖÅåðL ¾Œ—8îú›À™RE¸Hú+¥4„ª¿v€ýƒiÖí +AAoGE»ŽoÛÀ)𤴟‹ŠÚïVµÜƒd«Ý‚ noˆï„¥¯v[]5ñ¼è]6K^Bñ„/+Âôz5-èÊóÙGái'»%³$ùûï¿ÿ¥ñáxV’~¤j±¥ ø‘å¿Åž€u™,Ä~ô¼OcÊtÍÔì÷¬àAf%²¶”^.éWá5毿ø‚>s£¸e!,ə֘gºv±mf¹z¡q³·½sžV»á–ÝP¸y S)0™E¼Çì}q=s½#O×Nµù<ÑrT±kmwE7ª\4µ%ƪçz–,K„Ëë¯ÔÅòr’̈Š6ÚûÂʱ¤ÜR¬Ñæ…Æ —©Í‚lE”╇wá—£bÝ°%ßU‡ÑŠ,ˆ¿²/æ·|6 +ƒ"¾p+,;_[<ß²öïçã÷zp <ªƒf´LŽ•8¼@òß1MÞâ@èÉ짒"DökÊ™ixb†Á9ºB¦›;™ä-+¢i ¯v«ƒ5€6P’r3†ô°Íí K!„2ݲ¹œl]µ~´#Ãák` H‰~ÖgÊ•jÐuüD†£Q*“›@Ç[5¦éŨ1/Õ·€%`vumo0ºB!„øÇqœ„iŠðŠ@Of?•!²_SÎLÃ3 ÎyÐÕ2ÝÜÉ$oYM+}µƒX¬´”›1¤‡mn] +!„é–Íåt`èªõ£_[@ +Lô£°>S®Tƒ®ã'2R™lØ:Þª1•H/Fy©¾,³«k{ƒAÐ¥B!Ä?Žã$LS„·8Pz2û©¤‘ýšrfž˜ap΃®†éæN&yËŠhZè«Äê`   ”€¤ÜŒ!=ls;èR!„L·l.§@W­íÈpøØR`¢…õ™r¥t?‘áh”Êd£À&ÐñV©Dz1jÌKõ-` ˜]]Û ‚.…B!þq'aš"¼Å"ГÙO%Eˆì×”3ÓðÄ ƒst5„L7w2É[VDÓ +@_í Vkm $åf éa›Ûþ¿üx<>þîôôô!„ ˆ/ðÉÉÉWéììÌk.®{¯z6—Ó  «Ö¶e8Üel H‰~ÖgÊ•êewò_ G£T&6Ž·jL%Ò‹Qc^ªoKÀìêÚÞ`t)„Bñã8 Óá-žÌ~*)Bd¿¦œ™†'fœó «!dº‰“[Þ²"šVúj±:Xh% )7cHÛÜöÿåß¼yóìÙ³J¥R«Õvvv^¼xñòåËßBñËKéùóçõz½Z­–Ëåýýý Õ³¹œl]µ~´-Ãá.c[@ +Lô£°>S®T/±Ñó G£T&6Ž·jL%Ò‹Qc^ªoKÀìêÚÞ`t)„Bñã8 Óá-žÌ~*)Bd¿¦œ™†'fœó «!dº¹“IÞ²"šVúj±:Xh% )7cHÛÜöùÍONNž|üøñòò²ø&'‰·oß^ìÞÍåt`èªõ£mwÛR`âéa}¦\©^n»!çŽF©L6 +loÕ˜J¤£Æ¼Tß–€ÙÕµ½Á èR!„âÇq¦)Â[(=™ýTR„È~M93 OÌ08çAWCÈts'“¼eE4­ôÕbu°ÐJ@Rnƶ¹íó›Þ¾}{nnîÕ«WâÏããã¯ßýxMqþÿÊï„)srr2;ÎÊÊÊââb·Û½Ø‡=›ËéÀÐUëGÛ2î2¶¤ÀD? +ë3åJõR» 9Ïp4Je²Q`èx«ÆT"½5æ¥ú°Ì®®í A—B!„ÿ8Ž“0MÞâ@èÉ짒"DökÊ™ixb†Á9ºB¦›;™ä-+¢i ¯v«ƒ5€6P’r3†ô°ÍmŸßüèèèÎ;⺿¿ïó£ !„ü§/_¾Ü¿_|–;ÎÅîÍåt`èªõ£mwÛR`¢…õ™r¥z¹u‘s G£T&6Ž·jL%Ò‹Qc^ªoKÀìêÚÞ`t)„Bñã8 Óá-žÌ~*)Bd¿¦œ™†'fœó «!dº¹“IÞ²"šVúj±:Xh% )7cHÛÜöùÍïÞ½;??ßjµ|~ôÏÆõ†û¯kÅrÎ|÷ß·U¿%!äÿ—ëzùàààÖ­[ Ýn÷b÷Éær:°tÕúѶ ‡»Œm)0ÑÂúL¹R½ÔâÈy†£Q*“›@Ç[5¦éŨ1/Õ·€%`vumo0ºB!„øÇqœ„iŠðŠ@Of?•!²_SÎLÃ3 ÎyÐÕ2ÝÄY.oYM+}µƒX¬´”›1¤‡mnûüæGGGëëësssÍfÓçGÿF¹÷L ×=OÆgò×ûòOãñøÓ_ÿò‡ƒ? Þ|‡Ÿ>}ø4|?üønøá`øáýð½¸xç]|ü0ŠŸ>ŠŸÞ¿ûãûƒáŸ?œžþø˜±§®gßÜoc÷›xèä‡gB¦…+ýãZ¼›7oÎÏÏw»Ý‹Ý-›ËéÀÐUëGÛ2î2¶¤ÀD? +ë3åJõòê#¿b8¥2Ù(° t¼Uc*‘^ŒóR} XfW×öƒ K!„BˆDnL˜¦oq ôdöSI"û5åÌ4<1Ãàœ] !ÓMçò–Ñ´ÐW;ˆÕÁ@(I¹CzØæ¶Ïo~tt´¾¾~õêÕf³éó£›Ü3w|<>ûúmüõoîßÙ¯÷˜¶®;àßÓiŽ´GÇlƲX yÙa!$Ævl’$iæk´©Ò’iR«´•×ðHÂòÒº4t,Å] ]X•tm§„ Fš!ƒCâÛó,$qþ˜[†2Úm<®Ø÷žëõŸýQd²:¬+Ö9÷w÷è|OpJOÉ3AöGå_T +H÷}çëêåÏzú٪玜=\YUqäåå'+JO)=^Yz¢²ìø‘²SeÏ—•Ÿ)«8s¨âÔÏJUTœ=ûëëí׳ÎzrõLVþéœ' ù?7çÏ/8µsçÉ;Oì(<žWpÌ°½2Ë|x½±To9dÙuô?~ñè‰Ko¾íñ…§CT¢Q™†dyŠ†'¤ÀTd:šš ‰’Iöà8n^ÆÆÆL&ÓÚµkïÝ»7·ì‡¨†âÛ\±pØCH#`aû‘Z“ÚÜÒº°uq³Ÿœ°–ØW À Ò5‹ôÄE”î|^×صƒÀËF ½¨xÀïOv)ÇqÇ%Îèè¨Élfá-¨ºãÈ~,ctô,o*Ñ:½^„dWÃq‹›Li¥Ó™¦RÕ#ñÄb‹Q óM€EY‹HѨ=‚'Áw.Š¢ÍfÓjµ^¯7ÁS/M²΄£Á€š¦ái©ˆÌLLNßùðÞÕ¿^ùS•³ö@ùï¶>~.sÇVæ]È|ä↯çÔ™Š.ì}ëÑÇÞÜýØÅ{/äï©3¾’e9—™û›Ì­g7ï®þÞþsO•ÿþ—¿j{÷Ú?ücÑPT–iD¦ÁhTœ ‰aö#FƒA*IÉ~ÇÍ x¹¹¹:ÎçóÍm»Ã¡j€¡øö#àzi¬PÒ¡Z“ÚÜÒº°uq³Ÿœ°–Ø3`PéiåQºóy]c×–êû#^T<à÷'»Žã8Žã‡åF“ÙÌÂ[6P2 tÇ‘ýXÆpƒ°ÁòF¡ý ÓëAHv5·¸É”V:i*U-0ßAŒ-Æ. h,ÊZDŠFí< ¾sQm6›V«õz½ žzIboBˆÊ*‰Ê•ýN‘ðÇ££W[ZªÏ{íØó—”]1?qmÅ®ökÛ—sÚR²ÛÓ·ÜÈ0º7lë±ìþpWÉÀ®}=…~¿G°¹r¶]ÍÜR¿|Óåo™šÖíiرÿO8^>~úÒ¥ËwïúbPŽR9,G‚RTŒÊÓˆÒˆœìgÀqܼ°€g0ôzýýû÷ç6‚ÝáÐ5ÀP|û‘ p=„4V(éP­Imni]غ¸Y|29a)±g À Ò5ÒË .¢tg–Þu°Tßô¢â¿?Ù¥pÇq—8,7šÌfÞ²za ;ŽìÇ2†„E–7 +•è^/B²«á¸ÅM¦´ÒéLS©j‘øbl1vý@`QÖ"R4jàIð‹¢h³Ù´Z­×ëMðÔK{f( R9@å ¥aJ?˜¸uûöËÕΪÕ¯?YÚX¼¿%c—ëK&÷²;Zß±lͯê:Ó¾Û½rKï¦íw¶íÞ^<˜W0WÐoÙ!l±´¯ÏygEV£&ëÝ4Sˆ}õ{~úêÓ5/U_wÝøht,,†¥  ÉrP¦¢DE™Fäd?Žãæ…<ƒÁ Óé|>ßÜF°; Šo?rn ‡FÀ +%ª5©Í-­ [7‹ñÉ k‰}5ÀZ0¨t´Çr‚‹(Ý™¥w,Õ÷F ½¨xÀïOv)ÇqÇ%Ë&³™…·l dèŽ#û±ŒáaùåB%úA§× ‚ìj8nq“)­t:ÓTªZ`$¾ƒ[Œ]@?ÐX”µˆÚ#x|ç¢(Úl6­Vëõz<õR¥t†Ò0{¶’4úÉx[G[õ‹g~{ð™ ¸b°]û¦ÑõEÝ-¬ñ`M7Vu!ÃEVºTî‡3…åzWçxu›½Y›û·Ì–¾­fÁh¼™•ãZ¡w}m]çÃ[¿óÈ[E?¬yêÙW_8}ùÏo{½½ããÿ +£R”Ê3ÊIJ”ìú9Ž›ð ƒN§óù|sÁîph€`(¾ýȸB+”t¨Ö¤6·´.l]Ü,Æ''¬%öÕ@£Ò5r¤=–\DéÎìíëX°7éEÅ~²Ká8Žã8.qXn4™Í,¼eõ Ã@wÙe 7Ë,o*Ñ:½^„dWÃq‹›Li¥Ó™¦RÕ#ñÄØbìú&À¢¬E¤hÔÁ“à;EÑf³iµZ¯×›à©—*ö2D) KÒ?'þó~ïÎW;Z÷“' ¾ßöm‹kÙº›È¸ ™·°ÊŒNd¸ZÙ¹,ãÖ×3ß[¾Þ³R/dfõdåôrû¶?°n}/7׳vãío¬ueMkÚÆK› +ëöý蕃ŽóUUï46 ݹóéÔTH’%)6±œìú9Ž›ð ƒN§óù|sÁîph€`(¾ýȸB+”t¨Ö¤6·´.l]Ü,Æ'',%%«€¿}–"ÈuÈ åÃDþÿóYãXg;–ê{^TÜÿ÷’] +ÇqÇq‰óñè¨ÉdbámðBîþ—ýújò¼ãþ}ì-óŽ³c b••?¡}a:ª±jœqþ=×›ÿ¦[§éf»UÔC)wžs½mÜÀi[ÄRDkˆ „„B$ˆ¢F¬à +JÄdoBÝuÕZ¹d¸çs¿ãÞîyž_ž¼<ߤ”BGº{ZäHöë2.B( æÂnZP¾Bïên(jd³Úl 2™'—öu¤ÿþ1.í«#D;nFw_§×9yå‹E, …BƒÁàä©_HVÇÏžžîƆ/UJyFê‡é{vžÜö{¥xU©h–ÎÍ_¯2Œ/ÅOÔ˜¬!¾ÅðS5¼U˜T’œ|t붼77¨$«ŠãjãV.ZR9oAiX¤r‚ß9·Igyþ§’;*$ŸLWŒ +=ÿÒ % .@€ +·"¯(uàœ’9jQ´>0¼*$\ÿÓHÕ쨂ÈH¹ÿ«ç=C”cBäLvÀœãW§¿“}$-_žóE­ÞÒÝõü]P/*îûi6›»»»^Z\»$êI,Ë2 #‰L&ÓÐFH¥ ¨ÜyÄEG PE—'cá/ð(†·/êZÍæ™Ë–ù;ö«¨!\ª'\°/³ùV•‚hAt€ŽjÇß_æò<0Y¼èjS“«[¡(Š¢(Êyê®^ ™1ƒ o@!Ð\—"E¸\A¾Y\®Ðrù¨®Í J(Ø–——»ºŠÙ¬6[‚LæÉã¥uƒ{S¨#D;nFw_§×9yå‹E, …BƒÁàä©]«··÷àÁƒÁÁÁkÖ¬©««®a;»:?úgJâ†M‡×ÿ6ç•ùÌÏ‹bât+V×îüÓõC½~äïƤ]jÉŠsÁ³ +Â.ؤˆÿröúÒ9o•Ïݦ ]3.ö”Wì…ÈÕÕ¿zïÚö}Æ·÷–.]W6»h:£^¸@»uÃ;ß©~7¡f㻆øÅAâ|¯ŸåúÌË÷æÑÍL”þîýI×ꇫêÅÓß߯V«÷ï߯Õj]½ê;±,Ë0ŒH$2™LCA"• +€T vpçQ1 ª9 Ä€pç_à!/P o_Ô3´šÍ1Ë–û:6âH-ˆÞÚõöâ®G}³ÊÉãw 1‚t‚\üï%KnܽëêV(Š¢(ŠržšÚ+Ó¦‡pá +AîWì!T8²„£þ»¾Ž•&‚»„ÈA^…@@™¶ÌÕÝPÔÈfµÙd2O/ ¨܃˜ +D < Úq3º ø:½ÎÉ+·X,b±X( 'OíZ>LIIñðð7nܸÏaX†m¿ßþÁÞ=;%+2Wn:%ÎõŽ,ŒŠ«‘þ¡!ãP“&·Y®ñLÖÅ; ãW–¬z˸/õâ_S®&}r=ñ¨fÍîãaËs£Öè6$Þú[fk¦¼!ãTÕŽä ó–("bK×®5~lúôHãgYì¡ÌúݲŠ_H çOœ{&Lrdñ¯·-•lÙºÙxåÒÀJ¬ÃÒõbyôèQNNNlllbb¢Ùlvõr¨§cY–a‘Hd2™†6‚D*©@íàΣb@TrˆáÎ#¾ÀC^ Þ¾¨gh3wÎ]öË1À>àS ÈŽ'žVÙÀgéÀ1 €à ÜŽ{Ìšõyuuw__Sûý›Íw[ï5µu4··7Ñ¢E‹-Z´FtµµÙ«½;ÖÙ¶¶†ÖÖ›--wººÚz{ÒNæŒNâ›p)r 8jÏ $ä‰ÁýÒ02/ó€$)Žìççç§Ñh\ˆ(jd³Úl 2™'—Ô îAL¢ŒŽû1vî¾N¯sòÊ-‹X, +…ƒÁÉS»\VV–——÷É=zË–-,Ë>ÿ˜---IÛ¤IqKÏ-XwÖûõcn毼sò„ù–±åöÅ{l¥ñj³¼@·;ÙøaZç›}æ®Þ{÷ûïuw]nªeeoÜQ²'åöùŠ—¿ìªg»o³wJJ+þœt~ùz}âûME +óͺîÆ[½·nu¹¾é„¢bóÞó¡+Îø¼‘¿1$jÅ¢ÅúÊÊçïâÿ“ÕjýÖÅ )33ÓÍÍÇãíÚµ«££ÃÕË¡ž‚û_Ä0ŒH$2™LCA"•þ›ýrj*»ãø÷´ØdlbýjÀ(ÄGµ4ÚÜÚ"ÖµcЈ”Ä·íÊ#+®¢¬]]S»;ê¶Y-™‚¢kÕUP•—˜„D@Ö¬ŠG‚#%jÒ›uEw–EØÔó™Ïd.9çî¹÷Üü¾‡¤µ]«G +@èÉ‚ÙpÈå ÊÍËïÙyQ^A˽¶wÃç2·^²ä/„Ä‚$:Ž‘ô-’5À*`%A,Û?èpFø&îØy,/Oöå—ÿ'##cèС콇OZZšÕj}¡ÍfûNc6šL›ã$Û§Í)9í5%ãW8g±¹Tyß|¥á«²kUª–úšÆ¢âòíŸTIw[¾¾òä´Gö{u×JvíˌߨKË4_j0Lêî]»ÞRSW»óߊåh?ý̨Qµ6Z¯^¹ýfG£©EáÒ§©ŠÐ'ýgí].˜4oÆLVÛ#7çâ»>e—æøñã\.—Yó&LÈÍÍ}¹Ãu7~˜F¡P( C÷FK$L@Lj»V€ +Вѹ¼A¹yù=;/Ê+h¹Vø\æÎû3‘€a€7ÈÀëÛBÀT/_¶ÿx‚‰À8ñý~:ÎÍÍ¿¿›¯[ÿaîî>îîÞŒnäS©T*•JuŸ”owöØ}€Ï€L}÷uw èßlÿ·~Õßí7ýúM$? +™ÀD`,ÁH‚áLN øàùR„ð†9"ù%H0Áà-8ðõ©R«û:Q(®ÍnO–Js82 ®k19ˆ¨²™]û2äq5åš^¾r‹Å"‰ø|¾^¯ã···kµÚœœœâââ’’’Ò>…¹¥R©P(Ôju~~þªU«¼¼¼ðØØØÆÆÆï3_“©éoq ;CfMÎôöÞÈI°Ü¸jyp§êÔ å';ζûÂ矟[•P´déÕÔýo™˜³Úšn^HMÍš·ôÔ²5×Ï–X›Í Åʲ»/þçø]mýcÅÚ-Rl¿A©6œ+Ñ=yñLAsƒÁz×xûlAeÂG¹¿”ýzæ{Aâ?Î(­èí%Dq-˜•ÿlÙ{zzJ¥RæGàù6›­¯®âÄh4 +…B@`0º7‚X"á)@m×ê‘P:B²€`fmpyƒróò{v^”W`nkûCxøO€( XF‡ ¢™ÏÎF³MK˜nÀŸ ‰%X ²äC XÊ6-zÚóeçS©T*•Ju£ØÚÅêüf[å—:cl6;’V+ YÁ6-v‰—\Èž¾ˆÍIÝøùù©Õê¾DŠkc³Û“¥ÒÁŽ ¨ëÚFL¢ªl ˆ}ò¸šrM/_¹Åb‰D|>_¯×¿Žñ›šš6mÚ4}út±X<þüÈÈÈ?õáááóæÍ‹ŠŠbŽ…B¡‡‡žÃÛÛ;==ýñãÇÝŸ¯É´=.~gH˜|jtor:ñÍ_˜pßx£££íBöÉÂuï'•­^S1/çw!ç“>zP[Ïœuçj­êÃu‡'‡æ-”4ª*57_>v¢0v­f›´QQu3§L·s_åÞÃ_©jrÎ*ö¤k¾]_õ°õf³º¸jÝÇïF¥N­œüNج%e=÷ôÞl6Û³«ÕÚÞÞÞÑÑaý¿ £3Î9fddxyy=[óAAAr¹¼OŸåEŒF#óë$ C÷FK$LÆKj»V€ +Ð’ƒ0 ƒË”›—߳󢼂;mm“犇±ÏëH=ˆ¨zêyN‡zG¢© D TT€ã˜irt€Þq.œ=©T*•J¥º¢çÙO«³¾ëuŸ©þ¤‚•9v´RÉ6éQ¤Š"*ªÒ˜Aò@&°ÙÏßTYÝHR(ß ›Ýž,•æpd@]×6br%ûVfAp0ÇÕ”kzùÊ-‹H$âóùz½þuŒùòåI“&ÁuðððX¿~½ÙlîÞ|MM¦mñ »~/ÖÇœûÙäCQ0{ykMÓÔ\_W²W»V9{þé1G~î%Ÿ5×|NÅ,ŸÆê’¢EÑGÆ)WÄ›+«Ý2^üÇžÓ¡ÊeÉ·N•Þ(<_™z\ûʼnËEe—rU¥û3uGO4]¨zxëòÝ3Ù5ï'ÍŒLŸ&Ž …MWkéïy7iiiÙ»wo\\\bbâºuë’““7lØðW—eãÆ[¶lÙƲuëÖÍ›7323 + 0`Àók~È!2™Ìjµöõ <Áh4 +…B@`0º7‚X"á)@m×ê‘P1I’, ˜ ‡\ޠܼüžå4Ýk{{®Ø(Ú êáÌöÌ'›ó;ËlXá´Ü¹/ ¤œ9&Îï§W²­•ä›žN+©T*•J¥ºˆ/ñoÂû a2:ù4 h;e†'V²yOT €(&²;‚A€¦\Ó׈Bqmlv{²T:˜Ã‘u]ÛˆÉA”@5 ±/ã@·÷_F‹Å"‰ø|¾^¯ã_¹r%(È9¿.„çÿ5jTFFF÷æÛØdúX"Ù1-\3e‘’;ù(†LjÌSÙ;Zï6ß–+ëví)_›xÀ—:óŽ¼ØnÜT­>·$úÄøÀ2IbkMÍà µßuæ9êÅI·O—ÜW•§giž0(µ×J«ëóÔ_ª[k/þ·öüí}ûu W„ÌÝ*Ž›6-,lzIEY>À7›yƒíF£1&&ÆÓÓÓÇÇgøðá¾¾¾~~~#]ÿÑ£Ge3fŒ@ øûåÔôyÇñ÷c5ÛyÎÑ|‘­ç.:Zôô‹[õ4Öò#ˆÁS[ÍIZuÞÙvS™Ú^Ýz›b7¯º­×sÚz©êÔÒÚªUgŒb‚Dáû ð•TÄ_, $ÁV¢A'[²$ºžçVr@ <¯{ýñ½@ž{ž|>Ï÷y?ãŸ8dȇ¶€B¡¨ª¢ó¨hE¹\(™(Š‘ Öh ¨ï<2æPPÔi¾¥L¼¡Èسë¢tAÛMOªú…ÑÀ1à +P ”Ü« 'NP©T*•J¥†!¹-Ù=ðL0úa|òž·F;Q(±ÏïÏÕj$’|à|x±2rÀÚŒ©Á½ˆ8FÊñ\ÏÜëõªT*™L&BoŒßÒÒ’••…Xƒa˜ 6¸\®î®×ÑæZûÆê·Ÿ{‘›±¬jDº£ GN¯Y¹©¥°ü¶ÃåÿçN—Ó~DbÞÂ÷‡ÅJIs–üþίÏVp«–¥+jÖ¯o¿hël¾zámÅ3^´®Ìm-­jª°Yöê*÷ë®ð¶›M®;ÎŽ³7O×4çK^-›2»pâ¬Ýª×3”êy³9kÕý©øz¸”ýžË—/O:5Ú­×GBú$11±   ³³3Úu øív»\.gYVÅÈFPk4 Ô‡y˜Z@¤!ØR&ÞPdìÙuQºÀíiOÉV?ŠBU+ †vò…û_¤R©T*•Ú/,<˜î%C `N€d„²›<ç­ÑDJlãóûsµÚ‰$8æE ¤<´·€T‰c¤Ïõñ̽^¯J¥’Éd‚ ôÆøN§3++ 1!Áwã Aƒ/^|îܹn­×þ•{õº5›æ-¬ÎÊF(NàIý0yÑ”%¥+6Õìù‡ëʵÀÿt8[ÊÞÚ´ù‰Ä‚Ÿ=ÝZ¨÷ûÿõU¹jÅò銚?¾éëÿí¶‹î1.Zjùæ–rkcE­å“ƒû‹üO£óÖѱ¯¸îwï”gü¢xä3Åÿüø¨Ôò9«¦eªŸ›ÍW÷u õìv{ÌõjÄÜkò‡6lغuëG´K1Ð ´¢\.gYVÅÈFPk4 Ô‡y˜Z@¤…¡”‰7{v]”.p{ÚS²³“€cÁAå( ¦÷È“?•J¥R©TêCš@L§H𹨌@&‚°ÉÉ<ÏG;Q(±ÏïÏÕj$’ü`¤ï"RØ=ÚŒqŒ”ã¹>ž¹×ëU©T2™L„Þ¿µµU©T"6aYV¯×wk½öëî5¿ÿí_æ.”9uñÅkŒW”*~]øò›†ÛÏ•Vܽ}ûöëæ­ïm9ö£¤ -GÚçz¥2g¹~Z:·vÝ g}_»®øüäªÕ–?ÿÍQYÝh²VíÙoùôXU㪯éÊj×½w2ó¥?I1|üÉï+|âÙ'ÎZ9E‘=g6WMßçâp8fÎœí¦‹2ãÆÛµkW{{û7?‹Ïç‹bQ&v»].—Þ?¢(F6‚Z£a€< >ÌóˆÀ Ô: $Ð R&ÞPdìÙuQº ÍÓž’=& ΃ªVò@u¾£|ÿ7öS©T*•Jív7ü¯§‚Qu¥Y¡[›œlµZ£ˆ(”ØÆç÷çjµ I~0Ò‡w)l¡[@jh3Æ1RŽçúxæ^¯W¥RÉd2AzcüæææéÓ§#:tè’%Kºû³´º]ë³fsÖ"[fŽð¸Â0ˆ­È\~aó§5;Û´ãäß?k¹rõŽËU½e‡–IúøǬëÀñÀ·Úê„ò_.?8ajÙÒ×ÝœÕû–S°ÖìÞýÅ}K]}ÓñSÖwwVïÙ{¹Âr¹¤âôê·?;kßà1zü´‰&Œ-”Ê?¯\1)]ýü\®¶º7ê8p8J¥2Ú}}†¾qãÆöööhdàb·Ûår9˲¢(F6‚Z£a€< >ÌóˆÀ Ô: $ÐR&ÞPdìÙuQº ÍÓž¢ÎNŽ ª•†Bû½ê|Gù¨T*•Jíš@ô‘­Ÿi +† bJ€,ϲ<ÏG;Q(±ÏïÏÕj$’|à|˜1r °õ@jh3Æ1RŽçúxæ^¯W¥RÉd2AzcüÆÆF…BdòäÉ{÷îõx<ÝZo«Ëõ§×Öl™±¨.3Çúô£± Ö8ôæ/Í6óGGNïÓµ^¾z§ÙQóÖÖ¼ŒÚ?bBÛg'ߺ^÷ÅéWrö%M4.XÖRRîï¸u£éÒ¥RcÏ]o¸ÔtÐPý×mgv4UV]1˜Ê~µþÀž=€Q…]†DS(•o§\>)ý…¹*®¶º7ê8p8J¥2Ú}5!ß_të2±Ûír¹œeYQ#A­Ñ0@PæyD`j†`'H™xC‘±g×Eé·Ç“š­NŽ æPP/ +KP©Škæƒvë¯Î´©¹õe¨±%­&5bMÿ}¨±òFVèÀ&'ó<í@D¡Ä6>¿?W«MHòóa^Ä@Ê Rƒ{qŒ”ã¹>ž¹×ëU©T2™L„Þ¿¡¡!pÃÅ# !ä¡O† 2þ|‹ÅÁz[]î«×n™órÕœWKâS>yì©â…+œ&Kg[»ûâµæš 7Ï7Ý(®²¨_û˜0… SÚ´Çüî»î2îä‚W +F$é&Ϻ°uWGƒx·ÍÑá¼zÇõåͺ³—¶í¬Y³öâûÛ¯›N·.ªYüF13͈ѥ]†§Š%ÉGF¦¾ûô¬—&ed??Ÿ«®ÎÃ×Ãu8¥Rùm]Ñï¹·äÁƒgff>|¸££#Ú¸ØíöÀk“eYQ#A­Ñ0@PæyD`j†`'H™xC‘±g×Eé·Ç“š­NŽS ”£$Ú*u`j‰ú¨T*µ÷4‘ûU€ ¤ÈBñÉɼ•v ¢PbŸßŸ«Õ&H$ùÁHÞE ¤<¸¡RC›1Ž‘r<×Ç3÷z½*•J&“ ‚Ðã7ü‡ýòjò:ãø÷¢DÅ5$@+j ”+L!:ÖÉйM3IQŠª²®²òϘ+îx<§ö9õ«í{ëßÞ¡Y]2u^¦•¿´ nI|Ãï>Ô®ÙZà|ÔÍ[î!Ô­:óîW»w5¥í9ÿyŠ!)IS-]køý–¦É Ig%k+_Ôbf9x%.…³–Y±á“õño-_³þ7QÕUcB/Œ.]º´téRL`-Y²D.—÷ööÒŠ‰.jÙ‹Å"‘Èh4ŽlYb"HÜ*€z ³‡®G‰¢ttýb4ŒÚ»n…Êd@ü¨ÎØ«w5±ðO ƒ¨ U]PuÀ D›ügèt:º "FŒÆ·,Vkrjª‹µhvð ¢9jÙ\Ž¾F?Æ–›Íf©TÊãñ ó¿³³sïÞ½‘‘‘ëÖ­Û¸qcLLLttôú1WÿC©–2`Ó¦M ñññAAA“&M ùúúîÛ·ïöíÛýÆ[,–ê¯Ù|çtIù—K?ñçO.)ôZT8E$ç¬RþlƒF²I9oM±×¢âÉá)YóʽW” ×ù/ÍõôË}éÕ¢Ÿøif„T…¬ÐÉ"µïD«ãbÔ2™ö+«V¬¨]ÿF]ÜÛµQo鬨bÏ×¥¿ˆ”¼:;æ½Ï·mÿã›[¶Å½WW[?bã'¸ZZZ$ &ª¼½½wïÞÝÑÑAwYM&“X,‰DF£qd#ȹ@:Ðèà~DPÔ…@•®G‰¢ttýb4ŒÚº»%²({¼n‚œªAôöV÷Uƒ.ª}},O½ù¡þ*Çx\þ`ô[È@#OJfyÖ3üÔy¦=Žì_Cÿ‚ª'ü4ÌÞ§{Ì¢Ú£ö<`ŸCèA΂6Bʱý,0K Ðh5tDŒoY¬ÖäÔT/k?ÐìàA D 4r Ôþ2²¹}~Œ-7›ÍR©”Çã †g1~___WW×µk×Z[[ÛèÖõë×)3:::z{{;;;?úè#‡cŸ{8;;GDDÿH©L¸z­]©Òd¤§g¼Ÿ”}|zX¾ÓÜ\øÀ·~%ð/†¯Â‰_6yöi§9 +©Î“˜!Ÿôê‰)¯(¦ÌT¹ÌÒ¸ûŸáùÍö+ž+TêBBjÂëÃÃtË*–…ë.«ò“Tz+ùKN…J âŽïþ8ï`FI^Q]uýŽ›£¸ ¨Ë—/ÇÆƺ»»O:•j©Ü Z6›ÝߎwQîxzzr¹\WWWB†*$$$??ÿîÝ»ýSa±XèÅ—Éd‹Å"‘Èh4ŽlYb"HÜ*€z ƒ-=8\EéèúÅhµww¿þFÔt ¤äœtÄV·W?r®±mlP7ô_ßï84Ù‚NQbgàâ{*ïßpÿ¶‡ Ž µ×±™cO'RI@»… 4¢}ÌÚ¬3£IåSnx~'œÊG–ŽG!è¾wç‰nþËà½Ò¶ÁQ Ñ`èöý¹€<(A¾!È$Ú¾|¾J¥¦» bÄh|Ëbµ&§¦z±Xûfbö…±¡ö—‘Íåèkôcl¹Ùl–J¥<Ï`0Œñ£iWFF†§§'5ónnnqqq---£1ª¥¯ÏòmG§²V{à@úIücí;ò…‘g^ S³æk1G?J'rÒìr"Ta®šˆTdöéI¾ŠÉ3Kg–9ûœqå«=üÕÓç¨ùB]ÀkõAñOë% õ¯/©Z¾\ñëª_É´«c”Ñ[Šßß.ÿô³ò‹Ín™Í–Ñp`ÂêÎ;uuuYYYí:tèÐáÇ©$ÉÌÌÌçÊÎÎÎÉÉ9yòd^^ÞæÍ›]]]©´'„P­‹‹‹L&«©©éŸ‹…I"úe2™Äb±H$2#A–˜ÈÒm%ŸCû‘Ú^Z×R„Á–®G‰¢ttýb4Œ:º»#¢¢Ü€[¼HÈ‚\\‚| o(ù ƒ;sm_mä݇ê9N(äbkïsÌJ'r~ Ç@žôÓqºmcžgýÖ +íþNLžÏ{ò(G£,â:“3d„‡Ý¼Á=o“@;G€ [9“„ì dlòññ-W•Ó]1b4¾e±Z“SS½X¬ý@³c1ˆhä@¨ýeds9úý[n6›¥R)Ç3 cühzuïÞ½´´4wwwjæ%IAAÅb-Ôç»»÷Z®~}¢¬(í%$åÉþ  +^Wá¦qž§†¿ +üT˜£&¢ +2BCÊüNO”±ø¥Î¾eSøå/ûk¼„ÓEúYóë…†À×ê‚«%‹*×kW¯UoØt&>Añ§äS)—eeý«®öÆͽVË=«µÏ:*^LDQ ÐÓÓÓÖÖÖÚÚzýÿì—{PT×Ç¿§êNcQ)‹ØÆfI« ((\ƒ‚ø‡Äšq««8I4Žiû‡W«É0cëŒMmZ Ëc3>hë“-!.T”|,6E1¤Ýv º[å±,ìÞ{Nï®JÑ(ÙfÌùÌw.çž=üÎïwÎïÞß¹”vKKKkkkÛhæžÿíííÊÃÞÙÙY\\¤¥¥•””x<ž{+îMàøq¹\¢( +‚àt:‡fAo0¨Ð\=²µ@=! DIŒ(u´µ¢rxãâ Bgw×âœÿIä9ï|PêÏ«œÕA4ûàÚßÿ<È €¢iÀt . á JxXOÆÅ5¸ý"ý·_šW#9ñF¬c£7Ì@z|½–7Äú¿VuD­ÿÀÜ÷fèoÇáyÿÈø‡Ç?Va}äHY+m ¡õ<={öL˜ÏCÎ(‡2–k4ƨTf )¸±j (2c¤:Ê^g±çn·[§Ói4‡Ãâ©ÃKoooaaaFFÆŠ+êêê†Í®’ +^Æ|ŒRÖÞÑññõ¿=ö‡};vZ¶üªjÙÚãç—Güð4ÑžCÜ$\"‰v$ž‡pñ5Êí·Ò.«gŸ˜T5nzÕ¸ig¿W;!Þ®N¼òlâåï ã“«g½dŸ]úÚkÇ †£ïl/Ýkª©²~vãž^·Ìd¯,{}2U&¾çȃ‡3«Õ:eÊå…3~üx½^ñâÅGðÌ ;.—KEAœNçÐ,è 5`ƒ«G6 ¨'Äd(饎¶VTo\œAèìê^’“8 À äÑûÇćÃáp8œ~9;ÄÆÆÚl¶pˆ8œÑ e,×hŒQ©Ì@SpbÕ 5@PdÆHu”½ÎbÏÝn·N§Óh4‡#ÄS‡—ÞÞÞ£GnØ°¡¤¤¤»»û^'¥ô«ÚU ô)¢Lf²Onëh½ÒpåȑÇÞ{¯tóÖÒoXbçV>“bCÂ$Ø‘x Éç‘TáI®ÿöÜ«šù—'gT«´gÉ´ê1/Ô¨´#ìjáÒ÷’jµ3NÏž{rÁƒ+Wîý¹áàî§ÊŽ56]mïþÄd™QŸOòy¥{!PÿŸ¯ çiDIûÈÈHå…“œœ¼ÿþþäçŒ\.—(Š‚ 8ΡYÐ jÀ4Wl@-POˆÈ +œ£ÔÑÖŠÊá‹3]Ý‹–ç(+?HI $€D¿ˆhQÚÀ¯"!Z1À؉“R2fgΛ—”šªm‚'Ü—v€âÖ“ú¹¸‚O¡Ñ¨ì½„]#vý¿$7 +·“O§eñ’’…Ô”Ô™i)©©qZmNNεk×Â} âpF7”±\£1F¥2MÁ}ˆUƒÔ @ ?‘ê({=Äž»ÝnN§ÑhGˆ§/’$ݾ}»¹¹Ùçó £YʨO¢}}’Ô+±>Êd*ÉÒÝŽ– +»íýü]û¶n?¹zsyÚòÊIYg¾1ó¬¢1igÆÌ8M’mªôºgÔ',»ôüü3fTŒM¨#XÇ&ZU‰“«b_ªJ›oùѲ}¯®úýšuÆßl?õ—ò¿Þüo¹¯“É=²ìóɬO¦>êÏÅ®p8 ¤ý¦Nš””d±X(ý_–ô·vr‚ËåEQ§Ó94 zƒA ˜€Æàê‘ ¨ê ±Y J=ŠRG[+*‡7.Î ´uueçäŒÞÞÙB` Øò‹ûµØhìY D(»¦ÿužñøÉÒ‚¢¢]»w¿Ÿ——WŸ—Ÿï¿rqqqqqq}íe,,ð7òÊ5¿¨°ÀTd2› + wìÜyèС;wî„û@ÄáŒn(c¹FcŒJeš‚û«©€2 ~"ÕQö:{ˆ=w»Ý:N£Ñ8ŽOv¼^¯$IÃkSf¬—ÒŸìóÈÔC™/0“›î6(ýÓîwß=üÖÛeË6•½¸øÏ™åÏÌþ0bNyÄìÆ‹§&Í9ûŠMПž–]>y–eBŠ%"ådDêñˆ”ã“g~?Ï:oÙ‰å?)þÙú¢mÛNž8rõŸŸÞñö´2ÖÁh·OòöIÌK™ ¥ÃçiÂçó8q";;Û`0ܺu+ÜîpËåEQ§Ó94 zƒA ˜€Æàê‘ ¨ê ±Y J=ŠRG[+*‡7.Î ´tug.]úƒÀ~y@>ÀÇʦ€|ä©HiÒ ¢ŒTþ7nñ’ÏZ[ +‡Ãáp8œÑ + n/8œÑŠòðä1*•h +îC¬¤hÊ€Lø‰TGÙëì!öÜívët:Fãp8B<õS‰ÌX£n*û¼2õPÖ˘ϟcÿêl·V6í6íÝú»¢œÆŒå¦ô¥{Ä¥fQ_œ¾¤hæ¢Â´E…é?6‹ºâ´WŠÓîI_¨\M3e,Ú÷òŠ?®Þtì­·+öþÛµO:<7cuS摘Ï˨W™‹2þ"ç<I’nܸqîܹ›7oöwòê?Òp¹\¢( +‚àt:‡fAo0¨Ð\=²µ@=! D©GQêhkEåðÆÅ„–®®9ú¥ÓK@!M õ€ø¸ò8)ýõ1×AzA®/Óëw?w(‡ÃápF+4@¸½àpF+ÊÓk4ƨTf )¸±j (2á'Re¯³‡Øs·Û­Óé4ÃáñÔO%2cF=”J¥^Êú(óz“m¾u«¼´ÜôÛü]†_潹ɴzSñêM¦UM« +×__c|uMÑëkÍ+Ö¯\¿gÕ:EÅo¬+^µÞüÓ7o³š6]v¸;Ýc}Œõ0ÖM™'0¬X÷‹2þ&ç<¥Ð÷ôô´µµy½ÞpûÂy".—KEAœNçÐ,è 5`ƒ«G6 ¨'Äd(õè¿ì—ÏoÜÆÇ¿S§:+Ë…¡\huaë¢Òµëm=÷Ðkè%€{ Ð^rÈI*ç¨÷ )µäØÒA”¼–£Ä´e/ÀKÔK7`ÑÚÇ’»KÎ’»²eueDïŠârfÞÏμšU_[ß8_¿„ ÷Ý/ßÿGé‘@iÖÔf–š/ªòÕþòhpþìÅÓàëƒ'ß<ùû·ßžœœä‚O÷LÅò^ÙñßZÂ0t]×qœ Î&¡ÙjYÀ +pðjûQ¸ì*µ +,B%ûQͪ¯­oœ¯_ÂŽ{ÿXXjþø+Ô7ƒ¬Ýa§…vùRiÖ†™M²ì?ÞûU£óòåE»"‚ ‚ —ŠãËËWgfn‡¯Vˆ%Gý{À#à6°€”Y«¶½³=eË£(ò<϶mß÷§¬úû +þJ/+^ŸU~zÓˆÎE°pé™óv†¡ëºŽãAp6 ÍVËV€ƒWÛÚÀ}`W©U`*ÙjV}m}ã|ý&pÜë-4›óƒ#ÁWPIÖ6‡ÙQ•ùRùóJu ö˜k4:ÝîE»"‚ ‚ —ŠãËËWgf>Y!¶UU‘eGz•b¥n§…XʬUÛÞÙž²åQyžgÛ¶ïûSV-¼tÑ‚ðÿ" C×uÇ ‚àlš­–¬l?špµd?ÚUj5ÝT²Õ¬úÚúÆùú%Là¸×[XjÎÉ‘à T’µÍajTe¾Tþü…R öŸsF§Û½hWAAá2Bqü‡O>¹:3s8d…ØVUE–éURˆu”ºb)³Vm{g{Ê–GQäyžmÛ¾ïOYµ ‚P& C×uÇ ‚àlš­–¬l?špµd?ÚUj5ÝT²Õ¬úÚúÆùú%Là¸×[XjþXeMmS£*ó¥ô³Â°\æN·{Ñ®‚ ‚ Âe¤Ç7–—¯ÎÌÜY!¶UU‘eGz•b¥n§…XʬUÛÞÙž²åQyžgÛ¶ïûSV-‚ ” ÃÐu]Çq‚ 8›„f«e+ÀÛ&\m Ùv•ZM÷#•ìG5«¾¶¾q¾~ 8îõ–šóÀ-àqš5µ9L:%w[ +{À>p ˜k4:ÝîE»"‚ ‚ —‘~ÿþãëïüðSàPéBl«ª"kC TRˆu n§…XÊ»uëáÎö”-¢Èó<Û¶}ߟ²jA¡L†®ë:ŽÁÙ$4[- X ÷£ WHö£]¥VÓýH%ûQͪ¯­oœ¯_ÂŽ{½…¥æ´žÌdªÁC¿mm•6פ§@Ö˜²qd~g êõ¹)Üø¸8=*U‘NƒÙ×L±¢ßãÝ(N~ÊGÌ­|)ñ˜š,ÅÚœŸ^2T5n"4ÂXIÙ:%æE)"<_zªSÉJª´?_ƒÆ‡£Âb=±Ùg$[Å>dVêªûáq“(ÃZY(ÖË$óˆig‰á‹|̤-úbÆdHöù2çƒÙ+—cF­,„­¼êÔj §L²9ù?†úLa1­Ã0kY>0}™äŒÑ^^k¯FEžçÙ¶íûþ뎽@ô·\áûE†®ë:ŽÁÙ$4[- Hö£¶M¸ÚÀ}`W©U`é†T³êkëçë—0ã^oq©9ÜŽ›§emx%G‹=`¸Ì5®wºÝ‹vEáÍ`m̪ÊÑÏaÙFºé[VWæ%‘.÷¨²àÕ•º•†äZç¨Aº’Y”‹£\PÌZG.f‚Jõe^œR|B1ñ¶83ÔüWGúåpX_K3bœGY‹Ô6Œ¢Ø¨¹XØ ›¹CÌ¿¢å:»Ä“Éäöò€®ê8ñ¹ÇyŽr{ +fêlS–Ö…ŠŠA'þ¦à[Ì2–Dz¯£—½uãÙ =¾0XüóÊ Èç:™–TÏs£Caqd’´rªî¬—„9ÉWvwÉ%iÙ¥XhݤW_6‰t‹¹/‚ò9A|¶¶o¬Ón:b+£á,¯fôr+‰–èê?DÄÜs‡û|ÅÜMæ4ëQ•š8OmŸ}¯Ø|Ê”±¯*[>zdZOUáËq @¾Æ3õÜÑü=õã|°5ÊÔ§RöY6ªVDi}³y¤3ÍtWe3SFŒ–ü¿Nè7~øîÔŸ¯³#ýVZm©¼ìº«Š‡ù/•z¢ðÔbZ‡aÖª}ùði1_¯ÄcÆ{°Ü©Ÿ‚"QyžgÛ¶ïû¯;ö-èµ½Axk ÃÐu]Çq‚ 8›„f«e+ÀAº¥›Ñ݉W²CÝv•Z‘nH5«¾¶¾q¾~ 8îõ—šóÀ-àqvŠ˜œµü,±ì×€¹ÆõN·{Ñ®‚ ¼£ò§P¬Å… +¯â‰ÌZŽÈ`v)Š3kÈ1} +’ø#³³_RÍgzF6_t’˜à›¸ÊÁ\tŸ ©´  âW°ÔÔ˜{Î=)zW@¥åå!Æ,ÍæXÒØ7çl¡ƒn¢Ì†Âûj#tʧu¿Ø û*ÇT4CÿϵT¤;k3—Ê2µa†<"s•Å›+6óÐXQ†Pý6û1C:éTa›3¤™úBw2í2|7ºæzÉTÁâ—_çbÆÌSÖÉp¶8<›3ãó¬Q?&3ÅeTœ¤Y.úÄÞè4ü +UËb_™±‹n¼ÛUŸ3c®–cNCfYÕzɉ͓޿ÿóë>˜Uj9-ÄÔ=`êoÀæàºuG©á~ðŸ+$­÷TZµýêHùûUÓÖ}ÅÏ}ë礅$P’8º†”LºŒ¬}Jº5b m­ë6-݇6!UU¥*¶§mÚ&Uê^ò´§nZ£MÉ[¾ dK1°ñ÷ƒm ƒ¹çìœ{mŒ1M)év—køûÎÿü~çãÞ³©²²çöíu=ÇÜ'®ŠÇZH÷ Éd²½½Ýd2Y,–û2ð0×d™!†bÈW]B¡Ùl®««s¹\÷g¡£³³ à´<  K{ú”¸ºzúå@(ò<*Û|þÂÅ‹ËI$ÚŽwÔœ–¨)W7Šš~u)00p âÈÑ;ÀÆbˆ!†òå¤ätJkF¤b»r; Z*>ñÉ]U ¬µ°ÖǬ“¨.g×J •yàªUÍšXüÜbFJmÃR¨+“Tî8\1¹öô5Lf}×ó ­R× LžîªO¤<ÅóþÅ¢‰QÂÛ⋘ñ×|Y{‰…¼®E¿Wçj´¢G¯çÆ z‘sÆ<àÅíù" \Wk}gra–„ÂÏ¢&2áÆ\¾ªá/9·’eUŠì/a³ØW'pÑSª¥ÏÊ+½µ_!•æ'³MÍû»ˆÙ,d!eÉQµ¿Õb6 çª +^uåËõšØ*tÅJY[ýBÀsͳ®j¤—ÔÌAXi~˜ëöù¹VD«^̯‘™»w¿÷Þ{_S”ìÚ„uAË \‘ ®(p•/È\¼rY»ßÅÊPšAdëÎ]Ý·n0€E)U³De¡¨¤.oLÝI&“ííí&“Éb±Ü»ö#!ˆÅcgˆ!†òU”P(d6›ëêê\.×ýYèèì,8 0Ð Ðp­äÕ­=¶úå@(ü<ÚT¶ùü…‹—!%$’H´ï¨8 0,QS®n5ýêR``à @Å‘£w‡ ÅC 1äË æ>eX‹ÏÛ…ccÒô4ÅgÕø4Ʀ1$ë…Ù) ½D܇‡år:in.c&%‡~ŠN±:ÎÄ1ÇXŒØ ÍJcAZ^ÖÕÑáÀ럡×ËsVnlœE‡|>ŒLátŒu‰ý‰Åp|œFGÉ痢´æ¦Ê{èúut:q9-Šê2…'Éé±(²ç3¬§h ý>´R$šdexûzid„S2Ü°‘9xˆtà+ê’mÇ'tà¸pWŽ¢¡At9x´Ëg–\. ä ×ÔxhŒxp —Uö|qQ€ôôbÀ‡Ëj68?O·ŒjÎ3áSSäöâè(Ƨ³Q?}~êaà¦B—–h"L.'¿Íظx.…×'g±ùsóÓ×GV+ÝMe˜œš$Žˆ˜Ö,LÇ%úD›Ãá o©Eòû„±‘aΚçˆkêÑirºe3—ÓgX]< ¢Í†¡qR3'»“úz8mPUs%äö \xã+!Î +»]B°’šòÃÀ{ûÐåF=…øÎÙÈonã㜟âs\SE8Ívô˜Í͉ܨCClS¨Í³ÄxuÞ˜"‰×¬D-‘ìµÚhb‚“JÔ™(NHF=tGòmaA÷IH–„ ÊAñx&⌂s@fœÒâ'¦R…Þ^©Ýs=š Üë68â¬ÈÖ8L…ÉÌáJ^0WäópÄÅUæ—ÒiŸ¢àÏ…óH%â6“-lÆ bo bO$…TI-žë¹*©.´kÀ­‚…·M†©¯™´ÉpqCèrHàƒ¤3^ä@8j—$\Ϋ¯é(ݼE–~JÌeüàBæ`ùý8Åê±L}±)“#ý‡)bê¬ZšÙGÅ7^äk–óÄ-‘Šä—§ðlwǃcœŸÓKö:œz5É6m3s…ëQßQ;Kš ×ûÈZ‡Ñi'n>zœ‘úb›ìj\G:#'&$-}~­ô´Ððʈ•Y’ý¼Aç|NsÕãfž5¢f4õ˜¤+{åusÐ3ÇCxC+ÆT +3y.ùÆ-Kšð䤴>.Inª\žv;†'¥ÐJÃäooÝÂU‹‘¨Çcèr¢–TÒCf2]ÇǸ- Xn\º·¤4÷1F”˜ÕOFWŠÏ«ñ¦Õ2{ÎéĵÀ]c·”’#®ÐÞë\Œ´´œÉTþåÞÈœs‰iÝ›Õ%èœ`œKN—¨hµ#¥76&]ˆ‹4¥Ô[+ÓðJœšÞ¤pÕ«+)’Nuãõ÷#Ó°°ðÊ»ï~]Qþ +00¤@}ÚDÆ÷Üà—ü‹ŠrMV^¹­ðȦ@9P/s”WnëúôR•tŽ'9Ÿ.ÏyœáÒ’^;=熙^ZiLš?œ«sst’L&ÛÛÛM&“Åb¹WÝGAÒé´Ãát:^¯×ï÷ 1Äÿoñù|n·{T“)~êíqÃ~òˆH(2›Íuuu.~c¹/éèì,8 ü”‘ÇPÀµ’W7@@¿¢œhy m*Û|þÂÅ‹ËI$ÚŽwÔœ–¨)W7Šš~u)00p âÈÑ;üžoˆ!†ò¿ Ú°9Ÿ¤OauîÙ£65bK3µ¶Ê½i?îÞC••xò'™’ݽ7èð·©¼·n¥º:üû'b#™Ä_H¦TUƒhn¡V3µ´›ª­ÅŠJ|íuòxE}Ђ/¾HO3 +ÓÓ±®äBP\ð§÷äŠÓtPÔ`ˆÐò…|I@ ü +LŸŽÔ0ÉÏAM#@í¤RÁ–h*åœo ¢PÅ©gÖ­ƒŽ¥âׯÃüùÜ0”™’¹ù[ + üغ™&…+NžC”™‹èç»òÀ>+WÁ³£Q‚{ ùžövxm-Õ…æ>!yn³Ø€Xð2\ûZ)VOnØcÇÚi vî”ÓÕ[Þâ>ÑjG›ú$ŽÕ-fÔÓhÀÌ™pù²#^œ=}|q¼ûCí10ÀüÜH!*’«¬ ƒFTix¦ö|Ì-ÝÛ Ö™¦¾Š’‡ÑÑÒlK϶^šÇpÁ(tñ‡AÌtÜ–ƒý} „ÞÚ@ `#Í?ÂÂm·`q¸¹AX8îÛ7ôt¸˜sEM#LêŽúR—ª/YÍMJ~Ú;ðßQÞØ¥]yäukOÏ”5«$‰ÞÒQˆ>!u Ñ-D§lBÜ¢MH§$é3I*çgâHtìBÒ§Bè$^ÄFŒ(¡q¦JP‹F[䊇òDLIÅJùW†0gÎ$¢"ž>­øC;þ‚ÉÉp`¿òñ[“ÍfKOO×h4•••O¢÷A}}}{öì™6mšÉdŠ‹‹KLLLHHˆŸä"¹èGIñ2Mž<9%%ÅjµjµÚeË–555=m¬z2jnnŽ «««ûn7ddg{ +‘+ÄE!N qLˆãNÏ !J…¨¤½B$ þ=çéu¨øð—‹œÐÍÎΤÙ:! +…¨åªI%ßT5Ç9&‰*!ª…ˆÂ7ujMCÃÓÅE.r‘‹¾‘üŸÿZoÁ¬Y ÄýïÿHÛbÝU–üäë1Äßòð®ÚŽóæã#êƒÔjñüy¶vôŒÏ?¡¸ÒÛ+_}ÈúWùúâáÃìhe•Ý gŽ»»²Z^¨³…8ö‡,>LŸJÈ_~‰–hþjÄHع“/¼qŸKvâ9ÄXñjKþ}7Œ3$¶õ¾ñöm˜7o­ÁC æ¹óœ¢ƒ‡ÀLJł‚±ô¤xw7¬xñY9™ ±£]©PEŒÌüÅ8WŽ«F¹¡Ÿ/nÝÊ7­ùóMDˆžz’óóùQôó4˜¿rÞ¹ƒý}½zX'÷ +bõŠ +ˆˆújÎ\¼ý_î·Í›¥÷çÏÀG³Ÿ õËœŸüsr†yÇv–Ös‚ßÚZEŽ¶­3>u8)vt@fæ£ùzÖ°ü ë/9p…¿æ5;Øí¸jõ£È9t~ ÙPÍ”Gw,(‡Ûýý¸é÷Ãh ÞFC”—Ç’ /wàÈ‘³ #'(ù³á3o±à¥KŠXËs”äl܈-w{“WgOÒYSºW)!9>ÞR¹ÿ”¤/„èe¦4(P(¤`ZÃ$É_ˆ’GÆYùèåEErà5`02ÓÍ + +îÌk×2gû +Jk²Ùléé馲²òIôž>Ñ[ù¼|ùò”””„„„‰2Y­Öh¹ÈE?nJLLœ:ujXX!kLLLUUÕÓ†«'£æææØØXò¿®®î»Ý‘í)D®…8%Ä1!Ž;='„(¢B’ö +‘$$ÊÛ8O¯CŇظ\ä„nvv&ÍÎÐ Q(D-WM*ù¦ª9Î1IT Q-Dœ¾©Skžv(.r‘‹\ôýÉŽŽ¦±å• 5jHHD³¢"Ñls ÄÄÌP_ÏgÏ@j +j& Z…‘&ø0W…;wxE5èíÁÁi†(3’"¨(0†‚Z iÓðÒ¿xútÒ¦ó^™úVW9¬Ã@?îئHÐA¤‰¬³n$©GbxÙ‚äd(;Ã~6_Ç…™¤“â ´”Õ››qéoP«E£ÌÑ%k‘]zÐë pd¯ÂÖVekkkƒËÁÓ“Ö[Ü¿Ÿ™]]ðúëÌa’ŠÙìp›/1`B ,Zˆõ2àŸ,ò™ò£R±«ùùÌìí-[Po]°Q‹5Ý` E5Ë^[Ã’ÕU6ÝÝaætZ3•´ àöÁ!lÑä€É”Æ  \ÿ&vu;<‡úFX´<Ü!)ËÊdN=þú<”g»à°‰: +<V®€-ŠúV΃—X¢ñ@snµÁš5lE¯G®—ù^ÞLÌ¡¼QàM¬|º ŸÔ¨žÀ•ï¶ÁÛ[(çBžSŸ˜å̳u ¦šÇË—åŠ×bZž:+•EèëƒÜ\ CŠ”íšÚ†JL±ÃÆÿ±_mAYWô;oÕ'S¢¢8Qª¿¨I(fê˜hMÚ‡j$c2SÇxéhãH5á~¿‹ +ÿÿ#DÑ1Š4FmŠ¨¼!ah¼!•›Üïü{uïsâôÁÖ43¶Söæxö·÷Úkíu8áèê!cDµ5øý +Œ{  °P’ëê°fµÃÅ…¥õ_\z¦»bÊ4lþ3µHnÖ1bUOšH'cÁ¯è¯'¤t{;}öqÛãÃmKç¿p•¹}²ŠêtàçÏcñ"ËoÒd!å §þD3ã®ä:]×\>„fÍÂgxyQe¥4_VJü†^‡ß-Ãõë&ýHI&‹Á¸›Ð=OÎ +dàaá,HSÕwéãenk’¹y§ÚñÉ*¸Li ãOÌ|ÆtLu·7›L©7<Äúõ"uwwÊÍ•~E¼bpS-¦`fbâ$JÝûŒ @š0AJùJ²::B®3ETÑzÏ2yqgZö!**LZ{{)!‘&N„ËÚµ ä@ÿÙ¬d™¥ý„3ðÅãâÙ.Y‚Ò2I®®ãå•áãZÑÑèí‘3})`§¹÷Éêº_—¶Y<< +,yŸà©¯1Ñ’ûÚcMÎ%CÆ2._†ª*™ÏµrZþ!Ø—ØÄ,²Z¹s8¢ÉÙÐ]ˆ ÷3žm¡)ShÑ"}'­ÖÔЪÕà;“'‘ë Ûw™ wéjŽ›¾PóL…¸Í¦©.4¾ãÌiIôúLÍœytü¸) þwö,Þy—x¤nnô†¾suâÜ•+‰çc<ÙÑA¡¡˜ð2½6 æØãâ0}†Hˆë¾ñúˆò]¦kòZ¹.`¯Æls#À.Äêbàlzw«M+à!ÇDã•WÙ®iÿ>.ÜØ×÷ëÍ›4¿¿ ´¥u*ÅW—R=Jõ*­EiEúü—•Ö¤T¿Òú4mHiƒJUÚ ýCìUNçZžïàÍ7yÍal´Üó=^’ïߧ• qãà1ùÒ £..3«4ìÞóï½mG¢»»{éÒ¥ÎÎÎeeeÏšû|£®®ÎÓÓsÖ¬Y……… Ñÿû¨©©áŸ÷îÝknn...vwwwrrÊgcÿŸŠúúz‹ÅRUUõãNðòö¯Ôn¥*”º¤¿˜ +žzSê¢R¥š–£ÔBý}ôâø—NæúiqÆS¢©£cár¯úß åšvö_±f\ùšº¢ÔU¥ÞRê•÷?¸V[û¼¡ŒÆhŒÆhüG¡m9Ì_êîÁÓ“ÆŽÅúõ8pö$JH€ÍN6ÅÆ"À¿D[«¤56 = äçƒØ*.‘O$Ç]º„èhŠˆ@¢ì6I´Ù`³".Žüü‘šJÍR«µÒ÷ÑšuHNFÃCzümxå +¶ÅSX(`·ë¹|B"m‹£À@ì܉Ú{’Þׯþ‚µk¿ 5º÷öu†…!.–lIdÕ‹Ú¬Ä?ù+20²²ÐÕeBÄßrià +ÛRzh§¿EX„4/‰6 —ft ¢ƒ‡ÐÚ&¹õ(}/üýàó9ÅÆQi™~"QaÅÄ"*Š¬œžd¤;¸ó­[) i©ôð<ÙÒL©{±z ¥$ÓÇ#,\+§mñç¹%Âneì<cH(:EýƒAèêF&_K[ãIQg'åä 4LXH²K¢Ñ¼5‘¢"yh”M]fžÛ7ß0pGx]¿nÞÉËCX8ÅÄ^ûcà ÆÜq˜ÚڥЃJcàðóà%%rshÌ8k#"ÂàÚdÜj¥¸8øû#=šš¤P{íÝKÜyòNܶ•¬ ˆâ΃‘…žn)rû¦ÈÌׇ>÷A¢Õ>4ä8}š"#¦èd¤sð(éða´ëÀïߧ´4&‘|tàWLÆQXH1Ñ5œk5ä +f<0éûeGøÁÆFìÞƒukñÅòû0n9‡ÕË 0ÑÆØ8Ï!,Ìqê +Ü܈Î.ddÈÜxëëåf[;Ëba 6ÎÜM“q«œÆ”?N]]c£ûú}\Ö™ÿëúMwrs¹ + ÆË®§Gů/.Iâ™oiãFQþW¥èÀò ˆˆŒZöᢜ(ÎÀ댆&ƒEßÑ–-ز™ + M—).FÜV„‡ón’®Rch<.ž6víFý}o'=&ô÷%–åé3ûåHH„8C"=9ïWüV +ÁŽJMCi©>[Î_@dE„ ³F-»Y‹O¦ýûÑòH0¶´°¼E¥lb11tñ" q«Tò½#6–þ¹–U¬)())¸W§+°‹²rdà~¾²ªy'Á³å¨¬ûOHvÍîxŒ”¥Ì<:îÜÑ]H–ë705tó& »1XÞ)»((ˆvì0×Ùš(¶Bàž fyõ +ÎѦMäç‹«?©É"?E +p؇Ûfã!‡cß~èžCÍ-ŽC‡ØÏÙ½‰¯ð2{7öÇ..b°?±ËñÛ¤Ÿäܽ Ý…èp&ÖýÜ¡~Ç\Ò[·aµË抉¸ ‘aÞ¸CK'NЧ)2 +••#XW‡])æc)ÉÈMä÷óK™™ÔÚj>ÇÀ/\À&oòñEÉ÷â©=½¿Ý²y¼¦Uª_i•v[©;|iZµR5J»¥iüÙ•+ß_Z¥RµJã«Ii­JQšEÿ{ùgcÎnÚ„¯ó»c»,c¢U64P€›fÛÛG_Áš5ˆÙŠšý½ÓK)_И±4f 2㣻»{éÒ¥ÎÎÎeeeÏšû|ãÖ­[®®®nnnõõõÏ»—ÑÑø¯‹žžž+V899<ï^ž-ØÓ<<<,KUUÕ;ÁËÛ{¼R»•ªPê’RùJ<õ:§¿¡J5-G©…úûèÅñ/Ì;õÓâ§DSGÇÂå^3”ÊVêì—ÏSçÇ¿ob»·K‹sЭº'jÏKèVÔÉΠé!Ó{&—ž<Ñ¡ƒ}Í©Î4±'Å3ùCœ`Y2ÆÅiYÐصI”Ê S0V*».è}»«Õý%Á +Ú¥ÓçÃ;°¼Úç÷»zöY2ªÆ¦vªš¹R óÀÐ tõ,šã AÄÿ.\Ô;¾YýV\»&67¹õsÛíܘ@-Õwx]‘]Š7VÙr‹!Ä+T®k.Aû¿ Óœ—+2 ÜiÎ"^v ‚oój,Üz³[œÛ©}jø_5Y§Û\Ô4Ü.—ëþ8” »' SÂ*¾mµkM»GôDU]¨)ä¦8w +átÅÐ’Þ†òê¾Óa—ÿœ[Ä«Þ‹2·XsoK ™¼ºŸFä^Õqæ¼ê;¯UÝ¢«¾_7Ýì¬z”†ï"c®[Íó-ÊÛÆ5­ÛÏŒCÖ<ØæU#gÛÛ5—,wº2Æ«é0÷õã<ÅNÓöªUvÊåz¾ wÅ«Sv´rJk5•ªY¯>Îöpô'Ô²ãXqý¿²õ;d§û…ûlÔœ/;râå9·žŒÆá´ì»GsOÊÂ4Z}$¹CÐfšo×ËQÍPõ´xÔÈëd6\¨Y)×t +˦Wj1Ö·xÝaÎ[ÈZ¬Úr^ù^µçÑîœÍg!¬‚•»ËúÏvÕíç/_ýì½÷Þ`¯ýxÜ&€ÛÀs±ê\–ª¬;`·€[`3Àcàw` + Ž¾ùfêáC—ã¹4Nuy«ì³güÚU~öÇüÝwùŸyÆÞ‚R©¤ªj$Ñ4Í\ð|ýõ×===§NzòäIоq€0¿Ï_¼xqþüùãǧÓé =òG>ŸWE–ål6Ûž†D2F€eà>ª ¨ÅJÓÀcc@LïG¡°4>1¹¿q-X+ドn`X2ªÆ¦vªš¹R óÀÐ tõ,ærA‡B±'*“^m ù×–xüXüå+a0Ü9ý4™"›YtÊÛ&Õ&seãÂ6›Vœ¯iôœLm×Ütž[?å®ÛZøîuU5ïµçŽ%w2R–x=h{8»òºîœ#-|Aóº£îXva7þ8rÎ=‹å¡€×ŠfUhQÜLCÍŠÍoÎw!î‘"S¬Õñ¶ŸC×ãcV¼iî¸íÒ&ov³m§ú8Ô‚÷÷xZâ«ikXöJ¦MÔmËã¦fn{=¼Ž<ôÛÌÛŽŠç͵LÚÒi‰®ÜÂÉÆý–gÏñ…Òâ8Y,6reÑé—S÷Êo{¼~ª=5Øwæ†×zH³'zÉlj×vQýºtž©¼Úúù¥Ëß}h¼Ò3}Èš›d¸m.°;•ÑÌ\úõÃ8c÷*SÛ'`g`ÐqâDúp¹iqÀó\½z)4~㆘™áÅ¢ðŠ´¥RIUÕH$¢iš¹àÉç󊢜˜èF·½jlj§ª™+Å0,½@WÿÀb.t(A{Ä>~qÛÖ„»çZ‚ âÿ’Wåò/Þÿèë¯<›»£¿±³Ê{;s¿É³»•IíØ—€>ˆÅŒ9 !iúþŒ_Ó¼¶Ú£T*©ª‰D4MkWG0¬®®Æb±Ó§O?}ú4h_‚8plmm]¼x±³³3Ní‹?òù¼¢(²,g³Ùö4$’É00,÷+íÆÕ†l+ LsŒéý(£!…ÂÒøÄäþÆE´`­XŒ&ºQ`ɨ›Ú©jæJ1Ì @/ÐÕ?°˜Ë +AÄÞàæ\cüâ›Ïù•_ñ+Wøæ3±·‘‡ ‚ þÓl ‘üàƒð¡Cú ö˜ÙÅ v׸ý ¸ 7æ0t„Â3f}Û~ùJ|ü1?÷Sqù²XYñ+]*•TUD"š¦ù6(…B!‹E£Ñõõõ }!â 244$IR&“ ÚäóyEQdYÎf³íiH$“a@ïGËÀý]ô£40 Ì16Äa4¤PXŸ˜Ü߸ˆ¬‹ñÁD70 +,UcS»x‹ÐWŠaXz®þÅ\.èP‚ ö +çÂøÑY]?àýüoßíAAì@Yˆ_þúCéðáëÀ—ŽAŒ¹G0V¹`ú›¿þþè3æ0t„B~?ëÛöæsþÎ;üÐaÞÓ#>ÿܯt©TRU5‰hšæÛt  +…X,F××׃ö… ˆƒÈðð°$I™L&hGü‘ÏçE‘e9›Í¶§!‘L†`ÙÑš¬40 Ì16Äa4¤PXŸ˜Ü߸ˆ¬‹ñÁD70 +,UcS;UÍ\)†y`èºús¹ C!‚ØÜz½òDüP?èýŠ7• ‚ ˆÞª.]½vì{G®˜1ˆµÁ˜y¡b‹À§@ ŽJáÙ‡³¾Mo¬ó³g9 ÞèàŸÜð+^*•TUD"š¦ù• –B¡Fc±ØÆÆFоqPà¼1: wvvf2™ýiƒ|>¯(Š,ËÙl¶= ‰d2 ŒË0úQªeKªt%£Í16ÄÁô~ +Kã“ûÑ‚µb1>˜èF%£jlj§ª™+Å0,½@WÿÀb.t(A{‚­¼òGÿõ÷5~æ —eñÍ·µ=‚ ‚8 è}êÒÕkÇŽ¹p¹F0¦o¦™1ˆ}| +ôÁàh8<ûpÖ·ébQ¼õ„$ñÏ>ó+^*•TUD"š¦ù• –B¡FûúúÖ×׃ö… ˆƒç¹ahhH’¤L& ?mÏçE‘e9›Í¶§!‘L†`F?J¹Ú«+ýhŽ±1 ¦÷£PXŸ˜Ü߸ˆ¬‹ñÁD70 +,UcS;UÍ\)†y`èºús¹ C!‚Ø?ž?çÎñž¾º´+A±ú zéêÕcGŽ\ín» vø¸ ôÁ #š}8ëÛô?_‰·ß?Ñ%nßò+^*•TUD"š¦ù• –B¡Fc±ØÆÆFоq’$)“Éü—írÎ÷"žÏçE‘e9›Í¶§!‘L†`ywý( LsŒq0½…ÂÒøÄä^¢ |±V,ÆÝÀ(°dTMíüa¬Ã<°ô]ý‹¹\СAìß}'TUüè$/¬í +ñoöË'¦+ãßçgËžEHÎ¥%Qœ¢ízÙœH°Ç6r…WU÷X…ä˜øâÒfïQ÷ä \¢œ#5Pz€tØ EFJ-EòÆ #'F f3³oì’„ÍîÚc;©Þ‡Ã`xïû~ïßï÷c0 F h8wØlãÀf}…Ø<Ȧ€~èØŽÔRÊ°ôÁ¿´oþ¢jW§ú“á:NQ”p8ìr¹Òé´Ñ¶íE’$žçA(‹í ƒÁø‰ÅbÇ%“É÷ÒÛ«W¯dY¦ÎÎÎÎnù¶···¶¶ +…B¹\nX(ŸÏ{<·ÛÍfë!:1`£¾x”eB&/G'7=c8 0¦ ËÞáH70¬ë«FfkgºÍ¬«@Ðéó¯årív…Á`0Þ{»ÚW_©_ôj[[í +ƒÁ`05P5m4ï°ÙÆÍú +±y Lýб;©¥”aíƒõ›¯U@ë:¥ýÃp§(J8v¹\étÚ°t[‘$‰çyAŠÅb»ÇÂ`0>Db±ÇqÉd²ù®3™Ì­[·FFF®]»vãÆh4zãˆh…ëׯ_¹rexxøæÍ›OŸ>mX+ŸÏ{<·ÛÍfë!:1`£¾x”eB&/G'7=c8 0¦ ËÞáH70¬ë«FfkgºÍ¬«@Ðéó¯årív…Á`0Þ²¬…‚êçŸk϶Ú=ƒÁ`0j jÚh<Þa³›õbó @˜ú¡cw:RK)ÃÚ%íë?«€ÖÕ¥ý4c´µ¢(ápØår¥ÓiÃÒmE’$žçA(‹í ƒÁø‰ÅbÇ%“Éæ»*—ËÓÓÓÕÛòÌ™3gÏž=wîÜÙãtwwÓ¿Úíö‡6¬•Ïç=ÛíÎf³õ‰FÀ°Q_Ÿ÷xÿZ.×nW £IÔ#ÓÔüSõÂõÓOµG¿´{T ƒÁ`Ô€†®Ñx¼Ãf6ë+ÄæA€ 0ôWjI»Ó‘ZJ–.TQTÕn×~øÁhsEQÂá0­vÓé´Ñ¶íE’$žçA(‹í ƒÁhªªúÿX,Æq\2™l^º\.ß½{·§§upêÔ©4¬•Ïç=ÛíÎf³õ‰FÀ°Q_l¼ª¾xñâÙ³g;;;{{»´bÚßWJ¥ý2J©ò£ú^ýõ­÷˜îàþ;”~¥(UÕÞòý'¼ªXz{–÷_Ï@éÈZ3óǦºòrÒŽ“ÞÛÛÛÞÞ¦Ég±X¤énËŽƒñ›„F©Ñx¼Ãf6ë+ÄæA€ 0ôWjI»Ó‘ZJÕ¥AKûö[•õ“O´Ù9£#§a.»\®t:m´m{‘$‰çyAè%Ö–ЋtK’ž?¾»»»WIJµ8 +Bú\ÚWh¼{üŽG(ã#¥²é®>Pöu«dú>/Uÿ±Ëÿ˦כІÊîÞnáù‹§OŸÉ²L“óÆi,ã8.™L6Þi¦tïÞ½ÞÞ^ÔÁéÓ§—––Ö¢¹™Çãq»ÝÙl¶±"Ѩ6ê‹G `X&dð‚PNnzæ~Ã.0ŒReïp¤˜ÖõU#³µ³ÝæV€U èôù×r¹v»Â`0MAc~%êëõåKu5£þü³¶·ûúÃÖ@ë‹«W¯ž?þâÅ/}>¿Ï'Vìäð¿m~@ô‡bÈï ©·]: …BC@PW¬ eê"ÕÅ€ŸºÜ"é꜋T4¨{Ô÷N~ÅNu@¢‹^™óÖM¸Ï¼ìçyžnõ‘‘‘Ç·ìˆ1¿Ih”Ç;l¶q`³¾BldÈS@¥–´;©¥”aíÃòá£Gê÷ßk‰„&ËF[+Š‡].W:6,ÝV$I¢—˜ 4p·^]UÕ;wîüÞó‡Ïz¿¸è»< ŠËñ²(êÏÿg0( ÑÈ#Cƒ¡Ð` à—⥠™1ûˆ,0 úB!1¤_"Ýç¡ ýd0àÅÁ£créór)HÏB`@ ô ôô~ÑÓÓó÷ï¾+•JÓX,Æq\2™lþÈNMMõöö¢ºººR)ã—ùù|Þãñ¸Ýîl6ÛX‘hÔ ŒõÅ£°,2 xA¨ '7=s¿aF)Ȳw8Ò Lëúª‘ÙÚY„ns+À*Ðtúük¹\»]a0ŒæPõÂêèµò<,Óoµò«ú?›½gž<¡±ø4 b2›-&b6™Ì&b:13WT_¨¦Ùb1[MÄòë''(}lf³Õb±Z­6ú4™ªê­‘®˜‰ºm¥c /Äd9yÇßL;pk‹ÅbÒ¥[ ®Ñ®¸¾Üæ7+Þ²9·˜MVBôÜfžÍ¤¯ C«©Ñx¼Ãf6ë+ÄæA€ 0ôWjI»Ó‘Zjä06(E ‡Ã.—+N7ÔAÛ$‰çyAŠÅbëÕ_•ËýÛM9õ•³˜A_,u[%ÞVXmÆÚ2cöñ±ZÍ•ˬouë¿Ù¯Ö &³3üœ„ ¹}°ÝxÁÈÇÕ`D²üèθâmSˆÕTX]vw¢®—ÚNÿuwvúƒÎTëÏþÛíŒ΀8õ‚ìZ¢KaÇÚ¬¶´´Ø‘šÎÔ‘¤ç| ¨«3&$‚u¾gžù滜sžóžsÞï}_PÒ÷Rá6Ré{EÜAÆ> ¨Û^wÿþ}êtÁ`Ì?9·ÛÍq\OOOü.OÕÏž=kµZ C<™Õè(-Fl4=óù|³ÁÙÖ¦NÃÑÅ£Ë@/ÐOÈ ,9Ôé¹®sݳ6AD¬›œ¬¨væ§!¶k䋳Æ‹7€  X°¶òæÈÈ|›"B„qBøá ÿð¿Áï†C·ÿ|ô(¾Š'fÐXlµ–†Ãº§„NLm*R³ —°©&B=BªÎì*T›K´ù«2Þ4¥K¥„¾8/·q9šPóÑDêNKk©i¹V ]ä,jx3\.—MJ~g*Ö… 7%^"¶­tÇK´eaÃ%òd²Ô¢æmzjõ´á‰4ù©ÃV¤Éµê,6½a©B&c û¢E‹ÎŸ??·~&BÄ몎´·gÊå'[Ñb—@®ƒ@ð–PKjôº>O_ÌÒÿ w*¸~}ðð§ÁŒÆÚ=8£Ñèõzcí;¿ðûýåååv»}bbbîÕéŽÿü3Iª¢hÙIP²ƒz‚  a’B »niùd&츂J‚ý´;HkɺÐk˜Ó#ˆùªsæ¸6€ÔSG`G­€t°+*Aö» xŠpÚê#Ó}wPÖ¬ ÄH€u.×øääŒßÅ·ÛÍq\OOOü.?55ÕÕÕe³Ù ƒÇ㙵Öèè(âyÞçóÍng[›8 G.½@?!g€ +aËtz®ë\÷¬M+Æ&'+ª9Ài`ˆí¹ðâ,‚ñ"Á ` å낵•7GFæÛ"Dˆˆ Á…˜û/Á¬,ÊÐõk¡ØÓ€x@ë ZhЀ¨ÔÈÞ®^Z°ä½}ùÎ&¾ªÙRÕ”WÕd©Þe©nJé˜ÕÍÊÚøÆC%›êͽB¥MÙ¸ÃÜxÈêÚ›Ïäš©n.•®Ú•—@iA7ÏÙœ÷Þ¾‚†ƒ%•[M.…U¦\òšÚì†O­[ö +Óc3¬J nD=7¬^Ûšßp dãvSº.Y©–¯ÛjÚq ÈÕÂ;›Ø׋F¤™EÎÝy[÷츺,„ŠÐ—_ÅÚ=8£Ñèõzcí;¿ðûý4^Ûív¸çe‡Û“ªTþð |Jòµ°û½OPx« } à ÷@hÝgaN‚œ$ø'{? m¾žf/!½O#Rä+Kvb§o¨\ŽôßA΂ðÂÏm1pŠß ® +×o@ž!Ì«‚/ røMµ®{„Âå@Œ%Ûíæ8®§§'~Ÿššêêê²ÙlˆƒÁãñÌZktt” +ñ<ïóùf7‚³­Mœ†£‹G—…]è'ä PBMÐé¹®sݳ6AD¬›œ¬¨væ4@ qáÅYãE‚Ôe€2`ÁÚÊ›##ómŠ"DÄ…à“7wî„rrƒË–…®ûÌ÷—‹ñññÕ«WÓ€¨ÒÊß©Ín:fÝöq¡ko¾«…wîµlÞËoÞ“XZèà5-üûmÍ?+ݼ;O—©PjRº3w÷qÛ–©4ïjå7·Xœ —¦#·XjZ-ÔÀæ£+¹ú7R©áZ.µr«©ùøʺ‹\{-nµ -¾ë¨µz—E›‘ªÒÈ7í0ï<ºbËþ‚ªÛ¿„§‹É³5oåë>)Úóó•ëÌéúj¸Z—²n«‰îøû¹XÖ,±`+Ù"L€íx!]䪦< '×p +G£¥I0œ¶©ÔãÔr|MIXtÀ “Ñ/ÉÎ8e0}ëôÕ6ÃL#ÜÄØÂ!Xm-.æÒµÎèAc¡´šŠ6™Jîžc†$ ›mÊœÏßhVòžýöÛßþöwV§‹D"åç}.— ‡Ã‹@¯×G£Ñ’µ‰â8.—6‚'Ôg[…Õ£)`šA„œÚèéD_µºðÅñ’-H( ™L›ÛÓ ŒsBÔÈijß"^"¸&fÍ. ¡Ýqs~~½­H AB% Vü|6›YüýïJx (÷îݳZ­´ Ö¨eo8·öÍûr¼Ÿqú(Y§ÏX6Ùï“÷1ïÔNÞËÔ½¼¡ZQåèÞþAÈìîgé/ô¿ÂüFeHóKê~ãQÚ¦ †ì4ïíkÖêk¨ñZ͆·\M|¸ó½_;DuñY¦ÞŸ\ +ÞËzÆÞAsÇ!F[¿±F%stíè4»¨q_‹ êgù²…øeï7¼Ô¸ñ`è5GÏUœWªå{\M4 +ž£¢_¿ÈÊ}…eqLªîîgú>|W©å +u•£w{ß)1âK¡&YIiÞOÉ +ô±ïåz‚æ·»šê^Ù@«Tµ££ck—c$¼ˆ eêôÐP½L6 Ü-ì"6 r¸\^ï’j­f&:S´ô·ß.†?[<9°øÉ'‹_]ìãÙl–çyƒÁ‹ÅŠ}v}‘L&m6›ÝnO§Ók©ûð•äãß«”ª_þBc:D@~€d©A»ÑÎä3#7ä È߀?‹—;Úáòò#Â8?:šD‰Ï§–÷ÿ2gnã ?£hÎq‚ØR7B·:îóÇ·:¦« s ôl4ÑãÑéJe³Od_…B:.‰”Ÿø¹\.[,½^FKÖJ$Tˆã¸x<^Úž`P œnV¦ÄeŸ%ä<Ð&†L£Õ…/Ž—lAB±XÈdÚÜžf` ˜¢F&žý!ÖŽkÀu`ÐÐî¸9?¿ÞV$H ¡Läó"…G•Ÿ6rE¿”T*eµZiAT¨e»[»N´zFÞÇ,±ÃÛBùðkè¥c²tL§Ÿé>Ñê>bÔmÚX­¨jïlzÿ”Ùåg÷¢*&·rþBC ãî7vŸ0ýò`K}£‚Wiä»]¯öîô¸ŽÃÕ+êúÑצk Õécê7Õ(Õòw{¶ÓÉ8},ïe+®¸¬»$}˜¡«Ý7hÞÛ׬ÒnŒ«e{ܯöœ4¹ûÙåUªÜÊ?ZaX–ª;ýl÷I“ËÏÔjäJµ¬½{{O~5Ò5_^œŠ¯ö’#/ë °­Ž®m:ýFÁ¸J9::ºv9&A‹Z¦N ÕËdÃÀÝÂ.b“ —Àzóï’j­f&:SšúÊÂY²Ù,Ïóƒ!‹•4Àº!™LÚl6»ÝžN§×eŸ«Uª†€;ÀKbÐ0îS®oW€¿‚Œƒ´Š×gAî‚\%˜™¸¼7&û*QâóM"òAÐ ÿÈ5ào€‚4‚|J„L‰‚|ñdš|o«ò%}œ??¥Ç£Ó™ºŸ]\:âŠ<æB¡N§‹D"åç{.— ‡Ã‹@¯×G£Ñ’µ‰â8.—6‚'Ô +Ç nVhȦYBÎm Ô‚F« _/Ù‚„b±É´¹=ÍÀ0'DL–}´²Ð\»ìÚ7çç×ÛŠ $Tyá/Ÿ_Yøó9ᇵB*•²Z­´ *ëd»][;L÷1«M§Ÿé:nòØ—««kªÚ;·õ š]G؎ë©ëe:¼Œ»Ÿí<ÞºïP‹~³‚WiäÔxï Ùà¨:í°ÊÆu§y¥Q¡TË=;ºZ]~–÷±«¤¸äˆ~ºŽé"ÿâý–ZMµ`¼N¾ÇÓÔ}BXö•=+*Ý"6XºòÔ8Õr÷3µ™R-sôlï>irù«qï£õ#Î9z¶Õ7n¶ºR522²f)&A Z¥N ÕËdÃÀÝÂ.b“ —Àzóï’j­f&:³Æ3Ïf³<Ï †X,¶ÆÒe"™LÚl6»ÝžN§×e;§V*>nWžë)‘ÂƸCð9`#¾ 8+n˜«À„Э k D‰Ï3/‰;ù+„­þ&4œ¡›$ +ré©ÇãÒ¿¦AfAÆ `w:îgKKÒP(¤Óé"‘HùùžËåÂá°ÅbAÐëõÑh´d­D"A…8Ž‹Çã¥à µâñr«°z4%¬9f 9´P ­.|q¼d ŠÅB&Óæö4cÀœ52Q`Æ\®»€†vÇÍùùõ¶"A‚ •Cî¿ùo¾Ég2‹âmkùcMJ¥¬V+-ˆÊ:ÙnזΓ;`ä}ÌðÀ1nÿQNoPV×¼ôÎm½A³Ëoì8¼š¢^¶Ã˸Ž°Ç8*¤ß¢¤Æk5ò7[©º'°Êê"~¶óx«»ßØ°Y¡¬“¿ÛÛÜ5Ðêô¯º.5N?{Nšöl©ÓU Ƶ~¾¿©{ •.Èê«·ð^F00ÖjåŠÚ*GÏŽî&!âÞÕbÄ[÷öíh0Ô[]©Y³“ á…­R§‡†êe²aàna±IËÀ àðºx—Tk53Ñ™â•óÙå‰ü?ÿQB±Ìf³<Ï †X,VüÓë‰d2i³Ùìv{:^— |tnX­Tü¸\#þcAŸH0-t&_f1â?† îW »J”øAºÕ¿™Úä-›3Àm(!O$гñ/Àç}#·; ÷³¥%i(Òét‘H¤ü|ÏårápØb± èõúh4Z²V"‘ BÇÅãñÒFðƒZà¬x:R¦ œN³„œÚÄi´ºðÅñ’-H( ™L›ÛÓ ŒsBÔž‘)y‰àpØ4´;nÎϯ· $H( ù•ÿü;?5µ8=½øÝwâO¹5›F*•²ZékuU»][:L÷1kÀǸýGzƒ²ºæ¥·;·õÍ.¿‘ÿûUûÓT–‡Ÿó‡^ZÚK)ê íí ̧FZÙñ- ®N{Û²¼ŠÊ¥Àd­cøäÿ¢+þDC&[M|¡:Ž4+UÑ]7é‡]²ÝÙ†n72©ó©íž{‹€/@[¶Ô5÷É“››sÏ9ÏïõžœÓÅåYút±]£oÔÕ3Ôq¥Z~ÛÕ{®É;brÓœ¼²H6p>AÝ3lª©S0Uò£}Ý£:Xô€ó,7hì=gýæ”±êó‚ãšò#{zÆ,4 ÅVφTp|„UiåŒJÖÞÛÐsÖ*dœ/–úJ9ŸPlÇúuõ +ê8ÃTNMMm[‹IðI‚ž\'&ªe²Iàen±{ ÷gÀ4°_¼Kª4êÙÐlþÚéôÜãÌÄDææ3¿ü’ïêd2ér¹ôz}8Î[º¤ˆÅbv»Ýáp$‰’péÚ¤ŠQ\^ÅŒ¯—ô÷…¹ 4‰ß \þ <"Âœ\î€%~üÌ–úœXù‡! ¸"”: rgãµ A€ò1@;Å88nñu²°&×jµÁ`pëýžJ¥€ÍfCÐét¡P¨`­h4J…Ìfs$)l¯ß¯®Š§\ΣàM!7€Vê‚Z£ ܼU° òÅâÒR«ÇÛ\Ž šµM:e…w žO}@M[ûüÂB©]‘ A‚„ÿ èí*“Šý+}øpúë_§£ÿÜfùx<ÞÒÒBDEUÙ·¾sÔâ1¹ŧ¡óŒ¹ã[³®žÙQQö›®†>“ÛÇ:Š)ʳôéb»FÍ.ÞøÅ®Jê¸R-?Èí¢êÞSqÕEr>ªnñ ›jêL•üh_c÷˜…ó?à ¦­}~a¡Ô®H AÂAïUé´ð̤¢Ñ´‰MŒé¿ý=#ŽnâñxKK =UeÜúÎQ‹gÄä4•NÞ@ÙyÆÜñ­©F¯ØQQÖÖÕÐçoâ|Fç@1¥y–>=æ®Q ú¢ž¡ŽWªå¸]TÝ;b*®ºHÎÇv±¸}lMÃTÉö5öŒYè`ñc.HS7Ÿ2TiË©ãJµüðïöôœµº‡Š®že÷˜•V—R+W(ËÚ{i_cNkl%æ´ØŽõïÕÕ+¨ã S955µ}=&A§zL]œ˜¨–É&—¹]ÄîÜžÓÀ~ñ.©Ò¨gC³yk'é¶ö4Vi2ÓÓù®N&“.—K¯×‡Ãá¼¥KŠX,f·ÛG"‘(‰—®MªÅeàðPÌøzIŸ šñyÛ@3Í7A-0I„‚yw@’Ó5P¢Äœ´Ô UMA@pY(~Ì‚lüo¼+öKä1@;Å88nñu²°&×jµÁ`pëýžJ¥€ÍfCÐét¡P¨`­h4J…Ìfs$)l¯ß¯®Š§\Î#š²À!7€VúoÔmàæ­‚]/—–Z=ÞFà:ð\ȹ“[»Ý%x<ö5míó ¥vE‚ ¶ŠôÊsñß™ý­kSæÑ•ñíA<oii¡"SUvÀ]ß9jõŒ˜œ¼ÑÉ\ƒÆ¼¸é:î좛8Û=fñ ±Õ;ŸU”µu}yâ;«Ûgrž^³„nÈ¿½É Žß\1ûU§Ñ%½Ãf*ýÍICÍNu¼R]~нûÄùf:.¨gùqñk&ð¬kÍ=Dî!¶{ÔB—T×V0*ÙѾ½=皸A“`Û`Öàì¶ê)ýºj›(Í‹K60#»ö´ÑícûÎ7;aPiÊÇ«äG:v÷ú›ÜC¦eÇùe6%÷¡ø¬“ŽF1ã,7Èöø­ÔýJ\¡”µ÷6ôž³Ò2 Å]Èm:ÑG:s ó·7®ªÒù{óoû÷Öè…Œ3LåÔÔÔ66™ Ÿ è9uqb¢Z&›^æv»rxLûÅ»¤J£ž Íæ­ýóϧ3 ¤µÚô÷ßç»:™Lº\.½^‡ó–.)b±˜Ýnw8‰D¢$\º6©bW€ÀC!ãäY7×ôHžƒÜš…„È€¿?ŠwÀ»«“³ÌéV(QâGÀw*–Ìa[ _C@p…ÐâÇ,ȦÿƱYþÐN±Ž[|,¬IÇÇǵZm0Üz¿§R©@ `³Ùt:](*X+R!³Ù‰D +ÛÁë÷k€«âß)—óˆÆü0GÈ  „º Öh7oì‚„|±¸´Ôêñ6×çBÖ„C!—î»Kðx +ìjÚÚçJíŠ $létzùí?¯2mm鯚Ó?ý´Í6Äãñ––z 2UeÜõ£VψÉɼÁ5h̉üò ]²²Ê) ²®ìs…˃,ýêb{ýMž!Óçµ;*ÊÚº¿ì¿Ðì29VwvãÙ÷vÈñoTø·Œ-TV\X8@74zGL½ç¬ÇOUËPÇ•šòCÞÝýšèxVÝ9¸fÉ*ßvyU—]ó²!EK<ÃlÏY+}×Ö~Æ(eG{{üÍnŸiuCþý…ìš ¯Ø&΃éâo[øžåt怱cØÔá«c' J\p\-?âÝÝw^È‚ó4ûF÷åëT¿ö%íMØSH¢s€¥ïû®É=d¬TËJY{_•~ãø¥Ùw…\Ëö¬oÛ{ä|ìÙ¯¶Ÿ&Ó<ü¼›¥ ¶€´1”]êZ(=| À$DZ£á'°”STXf–\g¼ñ a“½ß̦ÑxSO3X]ºF<àÆ öbÙµp©£´û¾T  JqÑ|Ož|~ö{¿çwx¼¶®©S•­³©.I÷ûý»¼ÐøÈ@O¯ ##‡D¢1àÙö.bã Àcà*PÁß%3¥Y“¡É¤µþ9j;¢ÙÙÑë×’µŽD"&“I¡PLMM%-½§‡Ãz½Þ`0,..îI/eJÄ£ÀSà.ë8'[öš>ƒ<§Ùu#´áDü˜Bñ‘·yŽÇŸ~LØîè<¿<"$@HrQB¦Iwî·ãnzÀ`6Ï¿Œìl‘Ëd²`0øþë}yy9”••aËå¡PhÇZsssTˆã¸™™™yh’ßñ»ÓvÎ#Zó;ÀB®•`ÛS–T¸v}Ç)HóKK•Ö¶à2;&h×èI±½ÕGð.7à8ÝÐødvv¯S @€€÷F4þï‹Q³9VRûïó]aaa¡¼¼œˆ’ƒ)ՖöÁ"«OgtiŒ.µÉ­ÙŠo¾šÝ‹Ggñê,}‹÷ µ+4{è×8ã?¶õQê샅®ó%ô=ëо’Ô–îÏ…RûgéÓY}œÕËû¤\gÈ¿¯ü—ýnõhÌ-51÷q&ÖäÕÒ§ÑÃã¹jg«[ÝâÖ4Ñ—³œýëâ“g +$²´ý¢:g¾ãÜ1£O×ä¢cÖÆÇÍyEvEÂܧ£OKŸÖvVg(lïçè;/­[å:kôh[<šÚ4¨³}u´Æ¦Ì¥±Ä³Ò*-G_5õsÍnm+ÍÝÃ'˜›hRÞxTݧm?«£\‘6{iH:ãÆdØêÑ4SÏýºö/Öu䋳R÷eˆªíÊS<ÚêÕ6»4-lÌŠ®úMÝÖ÷0]*d飺œm€kï×Y|º7egdiª Hsiuk©´é÷œã\Iu»R|0…&.ΰþÎöÕ1ãY–8-NëÿeÍבIðäÕã‰3iVp£[û¶ÄÝš—ÖèÓR­ú•Xšz KTëTÙ¾<ÖÚ§kv±ð˜&!r³gUÔ¼"M= p¶~®ÍÇ™=›ÌÆ­HýPæNU¶BÌ:.I÷ûý»¼ÐøÈÅ.ŒŒ‰Æ€gÛ»ˆƒL«@—Ì”fM†&“–~õ:æ°G¨\½‘ô=.‰˜L&…B155•¬íÞ"ëõzƒÁ°¸¸¸'\¼4–)O»¬ãdœlÙkú ¬ã7@>!„v\ +Œÿyˆ_Mð_'ج(ðƒä8ﶳý øA¿¹å£„L“ ïÜoó‹å>p гyþedg‹txxX&“ƒÁ÷_ïËËË@ ¬¬ Û€\.…B;Öš››£BÇÍÌÌìÌCÛÐÝ^¾ãw§íœG´æw€„\*Áv§,©,p-éEÀŽ1¿´Tim+.Ó¬kä‡wÿÁø#ÁCàpÈnh|2;»×© @À/‡¥¥Xss´¤$úüù.+/,,”——ÓQr0¥ÚrØ6XdõéŒ.Ñ¥6¹5o§Å«³x5Í]ªzg^•-¿Êž_ãÈ«uæÕ8óê›ÑžGœ°çÚ•{^mú“¦Ãi)¢¿.iÈ­ëÕTØ•íÊj[~ã ×Ìkù5N&QÍóäiUkÚØ«ù¬[]ב_Å~TÕ8UtXí&ÒÊ;/}êHE‡²¶GUüéod¤ÒÄ÷e¤ÕæÔöT8•úö#U6åJ‰¨ÛµòëϨ>ë*hì*¨é`ÁÔRÝŽ¸.M;Á¶–™(OØ”LFÒ•_ÒøÛT Küè§9Õ]†S4ñ#UÔpcʧEv0ÒÄ[zÔ­.uS—ª®#¯ÊήaYó¶Ne‚y#ÿ„&®¬tæÕ÷ª‹ësÒÒShâ©R +ksª{TÖ‘|â‰Ò¼gÞ^µ]I3­ïà?£¢?V±†ªÖ¤í‰æ5êSI‡U°Ž©íV—6榦§ˆ$)Å ¹5]jí¸]¹IËùšóÕ£NêO«š;Uͧ Zº5f6ýè$Tog¢š=ZÛ×Ô©ÊVˆÙT—¤ûýþ]^h|dˆÆbFF‰DcÀ³í]ÄÆA&€ÇÀU ‚¿KfJ³&C“Ik¿z³Š1yvôƵd­#‘ˆÉdR(SSSIKï)Âá°^¯7 ‹‹‹{ÀÅKc™ñ(ð¸Ë:NÆÉ–½¦Ï À:Np(#´á$äàpø+ð=àÇÿدº˜¶Î3ü~6?ÁçÇÇ?€ÿÁ>¶!Ç؆6]BȲ HlÝÔý@·L]¦Bˆ“m¶¨ÚÅ®¶6‹%½Ê´Ë•%j/h¸ ^Ò$•²Œh kHp‡ÙûCÒe‰“¦ku½úôÉ>ïû|Ïû~¿ð'ÕTû\YnÒžW ;oüQÙÖ†~à:ק ¹ 0 dt£½q\Y,×”¥ˆÅãóËKù-ÒD"a6›S©Ôö×ûÊÊJ2™”e6QÓétÞ\³³³H +…¦§§ó‹ÐÝßo8£ìN›90çW®‚{Q‹R2£Éœ¼8œ·[ÅüâbKW·OYG·iÕÈåoÔF Üø  ÀÒ¶ÿÖÌÌg-E… +*¶‹ìƒ^&“ ‡³Á`öáæ–}¬ËSG&“‰D"x r†ÂÝ®žÃ5]‡‚í½R{¯¿£Oz¬Å±íE ôüˆ~éÝeÒ›‹-¦ÜÕy8ÑËÛüzg@pŒž€Ñ0P bÇè’ NI°Uqø¥XÁ{z‹“%Z h ÜÎzüÑËÙªx‡$¸‚ xrî´ùx‹—+useNÖîᬜÑά;°=œEa· »OO#Pwêè¢-†Ã§·zõenÎRÁW„r‡N[Ho-)µ–x$d§ñí>¼Á-<¹ñKÆœ»Ý/ˆUB)²¸Y¤¶¸9ÁÊì:‹›Å~yk­ä~5®I^s\3‡d°Vñ¢‡GកPfg€hˆÊl:·O°(rUz÷š» ŒÜˆƒwú1c¼¥‚3¹Y*¼‚·z9³1ŠŒÑAÙ1™åŠp;¦]è°ƒÏzÎ +¬•<~ƒŽUA¤fIh !&‹Î%á8L ÝÇcÒ<¹Jå†Ä’±šb%¥(sqö +¿¬:“Mgñ 5[æaÚê£US” +T‚”ËM¾Ã¯GáJÅ9¬¸"œ ör;ã–ôø£­’Ço°âî\¶%%íA#VÁ†™ñêÍ.®ÔÉ:P¸‡×——ð¦¾ZóW¿íÿúáêÎï?~Š>:c_ô¼:ðRÎ7:Õ9~hhèÙ¬/*¾¨À#êµS§ÊŠŠÎÜÙÜCl Èû7ÞhVÞ’‚É8™žÜ2õââê×f²æÒÕwßݪûÒÒRGG‡Ó霚šÚªï£#É>zRcðû÷ï///o3òc177Fc±Ø§Cœxë¬À±§>˜ 'c䉵ÆvœÀåù6B ¦T\KÈÎâ⃺’=…Ú/íW4¤@'.4X都Úÿ·å&jà @À€B^(*jg˜æ’:¼Û8N‚+å* ÷Æq€À5€KQ€X<>¿¼”ß"M$f³9•Jm½¯¬¬$“IY–aE1NçÍ5;;‹D¡Phzz:¿Ýýý&€3Êî´™ósŽ»ÓuB.`ù€>Œ&sòâpÞTló‹‹-]Ý>€ó·iÕÈåoÔF ÜPN–&KÛþ[33Ÿµ*T¨xzøø£ÕPu¶²rõÞ½UåÁµÖ|úÈd2‘HDÎP¸»ÓÕs¸¦ëP°½WjïõwôIO´^)ÞøÆ«|Ç/Ø™²k©4ÔØxId6FB³²’ÈùElY?íp’•“l\ÀÎÔØ8Ù-¨17TpZ-)ÔÙ#ì šê\|µ ÚYÉÆú­¬âË)† Ȭº ÈÊ.~¯ß$‰:­Fƒ‡¹®¸ ÎÎ?ç5Ô:¸ UáµR^Ê(ò~ìS^6`e‚6ã7UPêz7_T@oÅZRçà[C¦F²³!üÒŽŽ e·rͦ @ÔÕ;ØÝU_9R²C[ïàš=)þr ç•Ð—ª,N–NuŽz6ëK…Š/*ðˆzíÔ©²¢¢³w6÷ò>ÀM€wš•·¤`2N¦'·ÌýïÌj[[ +WÏ_ت÷ÒÒRGG‡Ó霚šÚ2õ#«à“¿Ü½{÷ܹsW¯^]YYÙfðÿÅÜÜ\4Åb O=øfp⭳Ǟø`‚VœŒ‘'ÖÛqW”çÛðzŵ……õµµûÛšÃu¡šº`p—ÏWëõîòzë¼ÞÚJï®ÊJÕTû<˜2W}þ¿T +Ö×îl‰Fã8±Kt Nu'ÀiBnLÙpoH\¸ˆÅãóËKù-ÒD"a6›S©Ôö×;nbÉdR–eØDQL§ÓysÍÎÎ"Q(šžžÎ/Bw¿ àŒ²;mæ<Âœãît -@ŸF“9yq8o *¶ŠùÅÅ–®nÀy€Û´jäòÆ·j£n('K€¥mÿ­™™ÏZŠ +*T<Ð7Evîãlg|u_[öÞ½gLŸÉd"‘ˆœ¡pw§«çpMס`{¯ÔÞëïè“o½ôƒxŸÿÅWk^øVðáR6ý“è?Þl½þóØÄñ¦T"<6¾4Ø429~o°é=läKƒòè |åX8}¼éæ/›ïŸÜ7r¤ÑoÖù̺áÁÆ™“{§~›8Ö”:*_”/‘©ã L}ûåËòøÑðŸ‘k?þí×Ïô»}¿ÿîN‡¾GÞ`çFÿùÆÞN´L_9&Ewä S÷…z q|° ƒ£û_õüÜ©Ö ‡¤Rº,ÌÛ?¬¿ÿFë­×›'Ž…qð£Gs¾á¥Ew´±#aü÷/Ç#w^î_'[ÿð½S‰öK6~ìxäï¿ÝsígщõE#k#W"AjêN…'š®Ü<Ñ<ûfkr Ác,ñþ‡ýjŠê¼ÂçÎDªÈ"5qñÊCŒUYÙ]AD…}Š4ÖqŠ6:Ž­T]Ò‰6c§f&‰1–jÔÊKm,Ññµ@QX|±@@ceg4XjŠ–t²{=ÿ½»ÖÒaq4ãÜoÎþs÷î~ç|çœÿþÿý¥ÃNåÌú•ošs1wv­•$N¡xbÑUëfU¯WÙ­1u¹1õïÅÜüpî?óä¿=U:ô5TþV°¤rmô×Û®¾?çR®ú‰>›äK¢“šc «ÖEc5.¼‹Êc®w÷É_¬š1Q6éa£†ýuÕÛ>KjÞì¡Wo ‚+…Ò!(!Å<ŸS÷kõõˆò’ŸM“ûûÍVŽ¸ôžöö§‰_nÒ óZkÌÙõÑ|âžÒ ô3ë¢ÏbtkŒã]u3Ÿøéµ³¦È‡M öÇ?ßÞ–tå7tŽEåÞ–y +Ž¯Ý0+Ö°QÓúû¸ö‰û–FŽ–´8ô§¿z+íçß;Q½fYž¹:2ué¤`e™ê’À²²²ü ‰ñŠ·®yy£ýüöÜèßA¬¨Z€&€ãsø³dLZç¨pèV±~?⢢Øû@é½½½f³Y©T644 ”ÛW Ë>ùµµµuÙ²ex¼-**¢izþû ££C£ÑhµÚîîîç빟؜¿'H° àÀÒqªšzj¯q¬¡à|«ðvüu…âÀ‘#·ü»þÖíÚë×ζ4—7^=ùeý‰zb/Dí‡l'y;]__yõjMs󅯮_nu¶´Ý¹Ý}ÿô…óQÑ3qª+vQT @PÏ\kìWª4Z‹¥óa¯o©Õj•Ëåvû€ÆÿÃ06›M¥RA? P(‡Ï±ÚÛÛ1®œN§Ó7992€ÝüêÔŸýkŽ«S=Eˆ +SÊä¶ò +ŸS1PtöôĦgL8 +ÐBºFyö[±³4ò;K @p²®¹­íe§"B„ƒ„p  ç +¶§‡Ý™Ç~ü×qï‹èêêR«Õ¸!JF‰O É\•¾2”fÊžb^öÝ–aγ,Ÿ²ø—Sç- Ékú‰Òû \åb¶ÔDéÝ%w‰É]jv4}[jt•âµÉ]b$Vl¤‹ L¡ž=dâ*·ï\ 4}LàͼDîoYìA3ƒôbƒ»ÔÈ „UDˆxŸ.4ÐE®, ¹ŽßÆN€Ê“¦HÛþÄUdr‡‘n ñŸ( Ôä:ˆ¡ BPW±žæéL¡û‹…«Ìt~š ˆtUȈƭñDüçšÐItŠG^å.¼YdÄ_y:FÏjØ2w‚thÂ$Ù½‚Ö˜˜B#ÍçèBåy"zîó‰ñ?ì!3W¾øN^ÒŒ7§½>¼uû|¢ëV¨Gÿ|• ®RÞI)I™dÍÇÅ¢q_¤sUYç7iÆ Cåñ¡²;;Ñ{8D/5¸JøˆBh¡æÄÉ9``¤qU?¹ñaüŒ7$HŸù¦¤ië\’8Ö­P¨›ÑEô ‰{ú…z„–qŸ›¹Ê¬Æ-s'Jý“Ãe]ûõ\y&Sb¤…šë‡v t¾e.A?FÇŽWfÝÞ‘¨+Q ¼µ# •3M|Öü„)ñr=S…ÑØb“Ðñº÷µSFû“—·àá ²&-Y;-íï¨^³¬Ï\™ºtR°’L‰$°¬¬ì?h"D¼bÀkc^Þh?¿=7úw«ª  à8Àþ,$“Ö9êúáC¶°ˆ3Y¸õØÖ›¥÷ööšÍf¥RÙÐÐ0Pn_%d÷Œ=Ú¹sgHHæEQ”Ñhljj¤ÿ>èèèÐh4Z­¶»»ûùzî'6çï ’ì¸ptœª¦žÚkk(8Çßʽ7aÂÅË—ÑÃq4ǹ9ÆŲßzÍÅü÷Z4Ñ~°æzÂhŽeˆyðMW×¼ä8Õ•»(ª ¨g®5v€+U­ÅÒù°×·‡ÔjµÊår»Ý>øça›Í¦R© P(‡ÃçXííí(22Òétúæ!#'G°›_ú³aÍquª§¨c±@‘wK™ÜV^ás +"ŠÎžžØôŒÉGZHר3Ï~‹ v–‚F~g‰NÖ5·µ½ìTDˆ!b`=ïû2Dtuu©ÕjÜ%#‡Ä§…d®‰J_aÊ3eO1/ûN³xÆðÌ_LMX +#†,ÔY ãN.¢ÿœê.HqïM¥q,HÁÑ•¯s£á×üTw>þ”BïÕÓ{S¸b#wjÑýݺØñ#BåþږÈÙ2ézü3½—w"R +x"¹Hq!}*wØÄÈhÞ§ +Êã&tnŸÞØ"ƒ»éW`é.] KqïÓ±¥FîÄÂìHš7_"`úXÉåßÅq¶EL©Q ó0-È÷ä íMaKPùÂëÅG(üçO–ÞËסú Íg—B?_ð?ׂ¶XÏÌøf÷õ„ᣇÿý“üÊê‰6Œ»WPëÍÝ+žÞ—ÂìK᛹Š¬«[âÆK‡¢ò¹¡AmŸ%pDzÅF¡ª4/ÛÚCב\ø_Iâ‹o}’=VBSÒ¸%Ž;•Á–èi¡k|ãúh&wðþ¾T’øéE­Ï å?w²ìn~ +wb½_ï-‘ÎÛ/áúqåõ„ŽÑ‹ H¿û§ä™c§‘8·yçCëÜ} +õ„+v_*w;¾;¥ðGå£þÉY¡o¯J{'ÜŒõésÕ3cW„g®ŽL]:)X@¦º$°¬¬ìeèèèÈÍÍ•H$ð"""Ž;ö¼BQ4V«íîî~ŽnûÍù{‚$»®\ §ª©§öÇ +ÎñÇ7±@aM”ãÇ]¼t饈!âàþƒ©™êø¤4åê™kc €à +@€@k±t>ìõM€Õj•Ëåv»}ð¹0 c³ÙT*ô +…Âápø«½½EFF:NßÊk!½VªÇJö°(ü×Þ‚z¬Ÿ•òY !Åg~c ùI3RÆ7nÕs?–ùkp=®¡xéSéU7xQWøŠê¡ïŠ¹côͯóç§'"sMFÒízîpuÁ¯°Xм 6½øÙj(AõÇÿ,,Tâ%r'Ç_ý›½£:’÷±½ü /½ 4¬‚e+Ü_̧ٺ0grBáì”ÿì%¹£¦û‚ž~§¯K¯:KFôþëÞ%ù3“”“âÙ¶ó¨éMŽ° c|¥ˆ_ >Þ;é·‘áïJ¸SežÍŠä È\—‘Ü´CÏ¥1ðÖˆk|,ù¦kƒ`“†BŠ¹Så÷wèçM矒àþ»Ž;A‡ö}BÕ|/«öfþyb~–Âe˜äûÛõÊIqèú‰…äN˜}6²§¯Ä†7 +ÝŸ7ž_ñ Âò„%çN•äÈâïaÉŽ3~;V¼7oÔ[Ióöî–ô[ÉðÁ¥æ­¯ósät("Dˆñ^Àß&Âíá_q›6sOŸŽñE¹££C£Ñ`C”$Ó›Ó+Öç–­Í6UªL•Jzµ*‚d¡0«•Ÿ­ËY²2ói>•Æ=ÞSÄ4ûl”—%{¬Td!q¥‚6÷Ci—½Ø•šžÛøíB®Ö쯡¼–AÕYƒ%Cû‹¹#¦{Ûêf&#sMFÒÝmzî˜é…£ØËâÕѸ!ä0¢ë§ÿ*,ÉICõO¦H®lÔr'™ÀA#róZqMD^Ö°SèýÁÎÅLO"³¥¬;dòïÔï+T°ÆÈ.í´‘K²SU²ø{;sGiüñ¥Ó]ó¬|Èü@1òlüfáô”Xdž?+¹Õ•íÆ¡Òn@õ 2?Á´ì*œ¯'\Û¤åŽ1A‡q{ÅÏ’¼úQúñî%˜1MFr+~œñÙÈ—®IŸÒÀ>TgÚíÆyS$Ù²øûÛõhÍßÇ|à¨ûsÆŠ25}«Ÿ7g.•ÅQŸÍ\±!ǼFE1ÈFífMVÅ:uɪL™"ßê’ÄÚÚÚ±}ÎDˆøØ€­j£Å2)&ÆpgxƒX—nœÁãK˜%“RSÜ #výûïáÝ»¸ü‚ðúõ\sóHÕ»»»išV(g¤ºï{è–-[&Nœ0wîÜóçÏÞ¢­­M«ÕêtºÎÎÎ÷bp¤Øì°'Il·®ð'êˆÁ*^Oð³Žo?,²15]qùçŸ?y"ÆÏŸ?7›Í¸ÕÓl@441äÙXà¸p@  c˜vowtª««¥R©Ëå},¡PÈétæååE:Ü^‡\.w»ÝQûjmmEGjµº©©): åUU©5Âé4œ~„9¿ p N!¤¤JgÏE‚ˆ‘¢½«« ¬|6À)€F¾jÄ…¡o¼\$àv–2Êx«¥åC‡"B„£D8ÌVîÝË'‡e²ð¿£ïªÑ‡Fƒ Q’ A»‘;´ì™¥È4' Õ?™"¹ò•–;Á¼8P‚ä½Ö^‘h5$wÄôhw¡&#©D-}f5 5d>”_’'Ï’|à‡Jÿë0ç¤åÈî\ÌýP¨Áœ k*rÒH2w¹ãôÝíú©±È|Qfò£rß—í¤—m£ö£z Å£[÷åMODõ9S%žMùKÀÁWdæ^¶ÈÏNqGJµæ)53&>±Ìk”1þwKl˜·Òg—~:-1[;_2¿Ý(¨h¡ÿw œOV|¾À\*£>ŸµbC®yŠþ"òF})Ìš¬Šuê’U™2E¿Õ%‰µµµcü ‰ñ‘»×F‹eRLŒàÎð±: .Ü8/Ì’I©) î†û~ØÌýiA ¨oDÝ”×°GR½=;MœÀu^bww÷"¾d8ü +ûÔ&5&Æðd~ƒX·\ØäŸ%“Éý–þˆmÿðƒOAû@èë¾iÇ´Ûí ÈÅâˆM³­;hðõë×GA.Š‹‹ûúúÞß$"ŒŒŒÈd2¹\>>>…úÂqÐhHâ%èô±'zˆpï%ØYoWqÃòÇAœ•y÷ÞÝÀnчÿg¸\®ÆÆF|Ô3t@ ô1gmì0ܸ¿iäjõ¨Ã––¡Ph6›îËÌÌŒÉd*** +SâÞB$Y,–¨m cC‰ÄjµF·C}s3®Åíþê4Ÿ~„c~àA\(¶P' „¦k×£vC¤š*ÙRŸp `ˆÍqsî¯Vn0€;ËF€4ZñÈfûЮpàÀÃÂà þX8§}ß~ë»rÅ71ñîãEÀØؘT*Å ‘Ç_º¹.£aoÁ–Ïשvåªv­evç†<,ê¦Ü†?J*·eÇ­ˆ_½léÓcåèŸuNåÐRÓmôtåz6!ÙG::]ëì¨R¦ˆù±• ‹jW;íÐÉêì#B]JÛÑŠ²µìD&[Åö·RtVé1V9´³Z ê:´¤³ô¶ÓètÍä ’)LÁêëÓyßí—¢óŒçd5&ïh{Ëö}Üz +SÚŽWJWók$)¯Û(t¦Ö­c÷ÑRx%^ÿ“QQS’/JøWk9êRyô´3¬]üÔ©%=zºÀ<=²9393/ÍN¶µ–áݼ†0ѦlL°:Íš>¯þñ8YœùVÿxoà ÇmÆX^0s‡ý•–üd%ocÿ¥†ÂAsêè7•227…:k'NVoÈHÌK‹·þ S¹ôõP¹Æé`wðhÔ©zÑZþiff.L‹§¶®Þº/¿®)—Ùæ EÝ”×°GR½=;MœÀu^bww÷â¼_8üZ[Ô&5&Æðd~ƒX·\ØäŸ%“Éý–þˆM»=èömô×/|§Nù^½ŠTÝn·3 #‹"Õ}‹çÏŸïرcÉ’%~?€ ˜ ééé333Q‘Édr¹|||<êM‚ƒFC/Að Í8ÑC„Ëx/ÁÎzx|»Š–?â¬Ì¾{w?yn·»±±õ Cý@ÌY{Ì÷nàoZ¹Z=ê°GG ¥¥E(šÍæ…û‚‹•Éd***š³¸aˆD"‹Åµ­ááalH"‘X­Öèv¨onÆ#A»¿:ͧá˜ßx@—J€-àÉ¡éÚõ¨]à)F§¦J¶Ôç\b³FÜœû+‚•[ àβ V<²Ù>´+8pàðËÀÇþ|hbÒ7úäñþ[4ŒI¥RÜyü¥›ë2ölù|jW®j×ZfwnÉânÊmØ#©Ü–·"~M\̳cè¢zZG9´ÔtVÈé6Ê©S Ô:;ª™õ©b~ìÃC%èã6(¬NÖü¯õFH¯‘F]J[kyYþ +Ù*þ³C¥è¬Òc¬rhé÷´~¾ös£¼í4:S;©!™ÂT¬¾>=¡o¿g<_W㎠Êû^ï¸õ:«²¯”®Nª‘¤Lè(t¦Æ¥ŸÓkúgõNåOFEMAJþò„ï[ËQ— +Sr†´ËŠÿ)éÖ+p”ž)Ë,ÃÌK³“m­eد +¥Èêjƒ¾»1Õo˜“Å™aõWòþ"Çq›1Ö„Ê­'1ÕWZò“•¼Yü—v7§Ž~“ñPØûŽ6ÚŪvâdõ†ŒÄ¼´xëáRtNåÒÓ¡LP‘͸FªGË?ÍLÂÌSDñôÖ5[÷å×5å2;ÃÔ ¨›òðY­Þž&N`:/±»»{ñÞ1~Àmê€F“cx2¿A¬ˆÛ®lòÏ’I‚ä~K4Ö§^#ësßË—>+R]»ÝÎ0ŒX,ˆÂ4ÆÔÔÔ‰'D"ÌA.***ƒ.DÞéGFFd2™\.ŽùqÐhHâ%èô±'zˆpï%ØYoWqÃòG@œ•y÷ÞÝBž‡E€ËåjllÄG=@Ä@?sÖÆ^3À}€ø›@®V:ìÑhii +…f³yá¾ÌÌ̘L¦¢¢¢ùT9\-KÔ¶†‡‡±!‰DbµZ£Û¡¾¹íþê4Ÿ~„c~àA\(¶D' „¦k×£vC¤š*ÙRŸp `ˆÍqsî¯Vn0€;ËF€4ZñÈfûЮpàÀÃ/ ßÛ¿Ï + ÂØؘT*Å ‘Ç_Z¦ÎjÜ›_÷‡Í°/·zo¶nWÖ›M[»®jOÎö}¹[~ùNâ»yq¢o>ÿ%{^ïo¢½&Êg¦}f’7j’ùù§^39b¡ØSþ¿–W¬_‘/zx¨éK™×y“3úçÆ= cØ3•ß5””¬K@åª5ÒîÏJØýˆ­œ÷>Ñ&s}&2hcØS•/M¤nÃr¤ç­’ü〽Ÿ@:éuJ½îÚË)§G,4û•¶¯q‹*]Z–»üeÃþ½b¸y¢r*:ɇÏÓOWYiäæ$ŠŸ5”àhÖñy{u1I¹ßL†¬ {^×}´(-ëI‹2¤} ¥KЊÚP9=UÔÜ€Þ&-ˆ®Ïé\_nÍOCúúUâ ÙmÈÆ;5q.&ÑýùÀÿm¤6®^¦J‹ÿÑD±çª|MÔØœO5=–D*ØL±g´îãåHW&ÆöÁ”é†-LDÞëKelLÚßÄgüTÅ÷GK"Êå‰Kéí;?Ϋړ­­åV#~êj§]®¸¤ û”åïg¬\‹t‰dYkkëBî2Þ>`¡:`4®ˆ‰±<]#ÖÄ-€‡—6ó½¤T–Ðé윻ç0;V)£¨—G§Ó)Š®®®Yùã¹~ñâEcccrr2Ì$IvvÎ5jýýýjµZ£Ñ¸Ýî(èóÇA›U*7<èà2N´oÊx;Áõzؾ](æcW¤¥vܽ³(âXƒÁ€K=€ß)D'7f:Û÷®¨4zý€×€úúz¹\îp8æK(²Ûí³9Ö’’’œNgÔ¾\.:R*•½½½ÑPSW'°ð§ÓlêÎùm€ûq  !A&·_½u抡¡ÂêšµsY›y§Dì&°²lH¤™G}}‹ŠÌØi„G;¯—½|9l¿öûù' 'bppP¥RaAÇÇ”èR·ÿ6·zoŽ¶všnWÖÔV›¥ý «jOöŽrKv¤rQþò¥?|±•=_åo¦=!½fÚ7½yM”ÏL†,4{Zë=Æ”+å© ¢Ç,b[«üÆc$}fjÌÆYܵ—çúMTèD{¦ò١⢌xT®N“v.aÏêF¬e<ýu§”—3¤Ó>´•±§*·nË•#}}²¤c¿ +Å/ó¢x5îq‚w^ÒTÈÆ°-ºoJóSã¨lù 3Éž®n¢=FjŒ;…€ÑÀTÐÊ°§+_šIF)_·2¶ûH1Û¢ Zð)ùZÔ£®‘ˆ0Sáceìyý?§$ˆPyazüw ¥KЊÂÈi½›h7odØJ³_W=ÿ|Ë{ +1¸øÞA Û¢[çbš|5áÌS~3¯aàÏ·nH–¨Rãþe$Ùszå5Fü’¯‰ç¸øé1óYkæèƒÖ²_¬’䬌íù¬73HŸnÁà}N¹™ +/ÇIûöpÑFE*—'.evdüê“õ¸q)N³J¹G‘e\óaŽaŸ’Ù™¾bU,Ò%’e­­­ ·Çxeê€Ñ¸"&Æ +ðtvX·\ØÌ÷’RYB§³3ç·짟†q#{þ;W²ÇãÑét +…¢««kNÄçÏŸïß¿_*•¢ò˜˜±X¼dÉ‚ `À÷cccE"Qäg~~þåË—ƒÁàœô÷÷«ÕjFãv»çDüá Í*•ˆ›žtp'Úˆ7e¼àz=lß®ó+ÒR;îÞYñ,€Á`À¥žÀ3í€{×ñ?-€F¯ðz¢P__/—ËÇüc …Bv»½  `6G\RR’ÓéŒÚ—ËåBGJ¥²··7ºjêêdþtšM=Â9¿ pŸ .âßiàŽñ™Ü~õZÔ!˜+†† +«kÖ\xÌemæ±›<Àʲ ‘fõõ-v(0O`_ó_¬û'ö÷¿c?© »_ŒÞY( ªT*,ˆ’ø˜R}ÚŽòj~“­­]§­ÍÒíšÆj³ð…šsvÖ­/Ú‘ñK4IbןI¶µ*`¡½FÊo¦}fŠ·ñ‹ñŸ´ßDÌdÈJ³-:¡³e© ¢Ç‡‹Ù Õ+ã3’¯Þ7Ñc#£f¢‡ÍLèoÛÛs¨xsz<*׬‘v)f¿Ö1^ÓV¿9"€æéä¸yÍ$ïš/c¿Òþç‹-ŒRŽô É’Ž›Püȉ2¿q¢lr¢ùùñ…бröœþÙÑ’÷RâÈlÙ€™dÿÇ~•Eqfáײau„™Aâ 3\°0€è:GÏ §£¤Ý-¯ªM\Rµd­e·Ö­Jy¤²Z–¢Î×z‘ƒCŒ7Ž–˜`¡l\EÝ A±Ø×1Nÿûº5 ZXeõW.zf¾÷½÷¿×ÿßï`úO&>Ô'ö,ýIî,½4ãÇ­jM„4Ì_ôõºTò©á±Yó‹Ü¹UÝÀ3tÍ£m²SOʳ¯®I öc§Ë”Icn<‡ÈpYè‡=Ëû<—[ õ£­j¯ÈþvÃÜ™¼‘äuéoÉ䳬ÇÚY¬ù?‘wƒê.¤žùÍÆ_Gz)C}ï«ÉçYÎí¹æ!Ï*~6ëÛ´üWÎb¬8Z÷¶ÓÓ‚¼ä¢ëgã2>2Ñ}Ö\ûߟé­¥ÙŠgÜX“2‹\(¢ó'¿õ~tÖÒˆŒß`¯†?ߥl—vÿŸ»B¾pe¤6âØñ"¶Õ½ÅeeeÃø ðÏ©¢-[ü==Í×7ˆUu à0@27KúJüjëjÝÕeœÉÚµdJóöÛÌ­[îFîp8 ƒL&khhp‹X__ŸŸŸÈ!***...44tÔ¨Q0FŒ1~üø3fÄÄÄK¥R¹\¾~ýú{÷î¹@[[›R©LJJêììt‹ø²°ÚböõöÚÐp­8UMõWñ³;ëáøVÊ-…,4äÂÅšW¼çÓi4±Õƒ¸'…ªêô@{ãY;À%€SJ|­ÍÌlàZ………¸ÃØíöÏÅårÙl¶øøø·8îŠuuuCÖjmmE!…BÑÜÜ<49·; æ<Â5?ðEUâë4P˜‚ŸDj;v|È)pí]])Ù9aWÙª ü¤ðv†‚Ëx²$hé+--¯:x!0Ü|ƒÆþÝm%rNnÿ{˜ÃèèèHLLÄQ<ÆS•;é¦ßÊZªÈ^ÆZæ’ˆg, miDö2ù‚÷"¯šž¼pˆ=èÐ1?Xõ¤*Ù©'f-cѺÌZ—Iûøis™èÇfš±ÐĪ%{ÓÈѼû%ÚÙ“}'KE_oR“F²gƒ?°Ò.3kM:ü=ox‹_ä–èȧ™äH^ÓÚY ¡>yj˜ô&Ò«Œdo:±êОÞËÕ¡±ºh;ô¤4ƒ|‘ww³Já‡ôéÄõ¦’ãFr ƒ±è\Õqê½X'±°ÎÉÁ rtþ¿>žä¥ +“´ã'GrÉ®y¬.FnÁkûŸÄßMß—ŽêífͬÉ>ácE×6¨ÐO'V}oئÞàž‹‘câ'4®™êÇŽ¢s¦ø}·YͪãbZõ˜ ‹— +BJhRj §~³Q?AŒôioŠפ’£¹dß¼îu³ÒÏ&Žt“–U/Ñ“éÄf¼¹a®Ü_4;\ò=Æc3bä¨ËXu|â?™é¾†tìb¥YuLü˜±ÍLǽ)Ž ò¾¹ Ïcv#- câ†îéV×ÅöW²O°â¹×Ö¤Fycäゼ2M]¼jÚüßEf-•³ö3½:5kéTlÔœeòü•Q‹ +cuoM’Œd[Ý[\VV6Ìš¯ðä*Ú²ÅßÓÓ pmpƒX5Pç$s³¤¯Ä¯¶®ÖmíÎNF£arè»l‡Ãa0d2YCCÃàY Ã455•––>¾ÿýG`` îŠCÖjmmE!…BÑÜÜ<49·; æ<Â5?ðEU¤»‡ûI¤¶cLJœ‚wÑÞÕ•’Pp•­ÚÀO +og(¸ €'K@€–¾ÒÒòªS @€€—~$`~è ©³˜èhòÝ·=º1,¼:::ñ@KÞ˜“²øƒØïEå,“ç®Pä®ç,—ç¬P䬈ì1¼•çr×ü•‘‹þ—^Yá~?Z´¤j>Ù“FJt¤DO¬Üu‡î9Ó“zöº?˽»Yâ£7êúGÉä¨ìÒ“ŠXµÄªá®ZRB÷ÞšÕÄ¢"¥4)ÓŸÿCŒÜÿ—yR°÷͵‰äp:Ù­!湤DÓMïË-ѲfÑ°öѤb^Ó_gƉ8ª¶hù"“ìÓ2ÛçöJ[i.—Ã[«šõ¿OK*Óêÿ4=Ø÷I¡â;›f‘ÊtR¢"fÇÕpZOsù,jV}ª§ÝZ—0rŠŸç•ãÉ¡4²CMLs»¹¬®ÇÍùäˆHÿDiV¿4Ú#ÿUÐèÛ˜xeÙͯŒ†X蟑FŽ¾_‡‹Üð—™ +O¤+Ƭ/šI¥“=¸ìê§íéÄYÏ*²_‹ê_þyF°Ï³'Š¿ß:›1uOÉøzéžS窉áýCKŽdÜþ{JÜ„Ñq2ñsÙ†Ù›ÖÝ'x-áÚƒ7þ–ï¥]zòY9’s±(aÊØÑùØ QÚ¢ðß®Š5¾«È^ѧQåOÙr¾]ù¿~§0V•7qŒÿH¶ÕÅâòòòáy¾x]GTÑ–-þžžf€kƒĪ:Ðp ™›%}%~µuµnK;þÃdeâ?–TU¹Kw8ƒA&“544 V‘aø«Ëåêûycc£^¯÷ðð€~áããS\\üŒOÞó‰þÑÖÖ¦T*“’’:;;ùËÅj‹Ù×Ûk@À¶âT5Õ_ÅÏR쬇ã[@*·²Ð k^Ið œN§Ñhd[`+À?ºÔéöƳv€K§”øZ›™ÙþÀ1´ + ¥R©Ýnñ\pƒ²Ùlñññýïo<ëêꆬÕÚÚŠB +…¢¹¹yhr + +$&nwÌy„ ~àK€J€ 0?‰ÔvìøSà.Ú»ºR²sÂ*®²UøIáí —ðdIÐÒWZZ^u*ðÒÀÜ¿Ohš‰%wï ³tGGGbb"ˆ"ïÿ±_¥1m\yü?Ø0ÌøÀ€mîÃ׌Çã Û3c +! ¹H¥Ý¦íFªÐjÕýP­’4\ÍQHÚtW[íÇíVI·B›mš*MP+š^é>EK8í4h ³o R`E¤Ê?ý4z3ó~ÿã½ÿ¼7Oê-Ñ×ì#+›L; [v·î1!¢ÛÊ&óš*÷˜¶ì6TìÌûM“qÛ>3Ušq’’,ÅÍ?L°yøí CÅcÇJƒÇËB'JC'Kïœ(ýe ÑíØñ’᎒ñ%ST\ÿGëâsUѽ­÷ÞåÇÞrß>œ?ÚÊÛ¹`Ç"C<âx›oä-/ê0qÌ;qÂû÷†ôT\ØÊ)ôâÃÔ)~¬5ÿö!÷h«O”óKåÁNn¼=ê»}ØêðNŸôýkov®B8Íå($5eÍœö;¼ÿ9äiõ†Úw!ÁÂv +×Ñ£,òêðL½Ãþcw¦*³¦È®½NNwñèùàaÏh;ÞÆ"áNp©¼ƒïàFZÙ¡ÃÞ`«oúîß/çe˜>!ê|sîd;tÄ=x%ÎÛÙG„(þñvvøˆwøçî vª›ûëöt…Tø 3(QâÆ©.ÿh«å…ì£Cˆþå®Ù‘£¾‘޻ܽwýíÍJÇ-—ü³)oóò ·úÆÛ¸Pû¢6$Ð?ÞÎ#Ë·ˆ‰wsîÉJŒÅ)Ñý ï*>’?xÄ3ÖʆÄÄ ~þ‰˜x~°Í3}Š¿ò:M¥ÄPZùå?²SÛ2z¼d¨LIU‹H¡q²láöXÉp§PQwºËÿû—Š›™tu,Š\•WTUÛlAõY±#O¨Õ]󅺔fôvó.ãæƪ½æm¿%}åi¸J†äAœ={v?´"ø•!<7÷FWW²Lvàçg;ˆ]ì +ÀwŸøų¤2Q}½ïúŠ]ß›¶‡Â:íÜ… +•ONNVUUeddô÷÷¯TûnÞ¼¹uëV‰DØJ0 ƒÇ­9ÝÝÝkô…022ÂqÏó¡PhíÖV7ß?£ÄNüpU˜qìö¤¿Œ g=t|;P(EFvÖÕk_=—à#ˆ`033„R8ð`×»ø´µñ2@/Àןp|uõØÔäêhiiÑh4½½½kÏevv¶§§Çãñ¤ðÊ­¯uê}ú׊3kìIñ1˜LŠUÚ4¯¦Ö;”µt| ¯gðD"XÈ×€¨w¨^òiöóÉE9ñ1’(€(y´¤ÂB¼â×îqkêíªzF!Jðz[‚h¯Ÿ'ƒ×Ù‰:FÙäÑàS6šâdèO‹‘`Ź Hþ’Wƒ@ÝK\/Àl´+w8Õ¨Û+þ” y„T…Ë¢*)¢™×4:U uƒ(¸D» ƒïp(Q·=^õË~íf EK$¥b—ÜèR¡¼(xBt°(D)Û‰í(*»òwÞ¤ڢ܄hñ*–n²ÍlÒN§ºÎ®˜³! 5zsG‘¿úBJ¹™KyŒDR”ƒïã’vºŒªAp´,k‘xzhWåî|u3OEEá1ÒjZµOjt*Q`hÌ £½\.ÎcÀ¦ØNã;]ÊßoHÑ¡•K1™$ª‚Òì!=àÖÕ:µunT0óu¢È€P*ºZ—À&.íµâ¬d4¹T&ÑfâÙUZ.*ET8*×´\b9ñtTº9Djži rHUrjœT*È Bqöì¹uþÐ"ˆàW´½ÑÕ•,“øùÙb—»ðÀ'~ñ,©LT_﻾bßÓ÷æêsa~îÂ…•ª'''«ªª222úûûWìz9nܸQ^^O„\.omm½ÿþãì„ÃáǽZŠ‘‘Žãxž…BkŒ|uxóý3J<á4ÀW…Ç.aOšñ˘pÖCÇ·ó…âPddg]½öÕs >‚Ö333@@(u€S?v °‹O[/ô| ð9ÀWWMM®.€––FÓÛÛ»ö\fgg{zz<ϓ׷yètº¾¾¾UûDŽ(ŠX…šƒÞW§gÙЀ ð ÀÇ üª5=Ÿ~¶ê"X)Æ&& +¶ÕÎü ÌÚÓ¿”y~Á·hgñhË7}ëÖóN%‚"ˆàÿ‡;¿„KË 37t{=ƒA–eцˆa¡ŽÕfà‰)r…:WÇâ*Y‚rÑD…:uHÒÊu™x¬*i1’R£z ¥qg¶4œNÃI}¼E`jzùÆÓ©8“Žsyª™d>+^ +›àçÙêŠ >·ÝNYÊd³i³Ñ6OÔ¶­èJšÚâf¬|>SÆ» +—4vHŒ1¶C Ƥ 8 ùÂm(©Z>L™`“ýÈš}$Ñe$Œ¶[&-RH6íÇ´(Q`¡ÛTU­*•|lÃ)ØØüøÚÆ T"[†äª.ÄUÍ\ûzï½6Á¤°­ÝGG×W÷¾Ï9ç=ïsß×'= @š—Q+JÅ™%y\$‰â­œ"Zñ¶{§d[Æ~÷HaV}Éæy™¯¤QÞÖ­Ç9sò8üÍé<þnÖ† ›CÙ¹r³Ø™¤Õ ”VÅ™BVMçr¹]]]«ü¡1`ð’ŒD.·µe³XíWÖˆëpÜ(£{Iž€o³ÛýìÙ Ž9["‰÷q@@¥R‰D"Çå¾—ËU]]––K"==ýúõëA,>+ çóùär¹B¡ðûý)fž®t´ó287ÆÌÔŠcl©7bT¯‡Ú·n€ +º¢±ÙjY“ä0XƒAFCIàÀ8`VÀôËíFÀ0€@ ¨«›zH.––¡Ph2™RŸK8ÖjµR©téý-ŠÜÜ\»Ýžt,¯×‹I$’‰‰‰ä<¨›š·èÝi%ç*øÀÀ]€r þòBmâ +ƒ¤153S^¯.¸à¡Vmù/%j}8ÐÉr §ºftrr­§Â€©‚ŒÌ5¾¯È’’È®]‘ÇÉç/WOž<‘Édè@ÜÀYW¢ØR¥ÙQ¡ËkEre¾¢V\v4¿¬}s4_A_ËjEŠÚü#ªí•'_-8œ ëÓdy™šK×ÊõÍÒž‹‡z/êm.E¦k–êÐõÒë½x°÷biÿû +÷ï*>:•Ÿ¿ +öù¬Ç<öèË!·Á:b´ã;n´;M6'ºÆÌF™ÁêÔ[FõYæ!§Ë=:æqºMVGïÀH¯yDgvôÑ,ƒ 7ÚbDÃü ®7;tfäaØlGt·Çãq º ïéD+ +í¢<Øiâ\è9ïêÖ :ú‡§gØ9Š’¤ãR¡QzˆkB™Çå*¢Õ›äøv$ìýå[6rÖ!:—ËíêêZ—舺ÜÖ–Íbµ<\Y#f¬À p Œî%y¾ÍnK8ô7ßJ% @fñÉ{÷¥•J%‰p_iDrñí¤UUUiii°$ØlöÕ«W ‚H4Õàóùär¹B¡ðûý)ºJW:Úyœ›cfjÅ1¶ÔŠ1ª×Cí[7@] +QØlµ¬Iò ¬‚Á F£¡¤p`0+`úåöF#€ `@ PÔÕM= $—@KK‹P(4™L©Ï%kµZ©TºôþEnn®ÝnO:–×ëE$ÉÄÄDrÔMM€[ôî´’ó|`à.@9`h +|Pûàó¤§À QLÍ̔׫ îx¨U[þK‰ZNt²È©®œ\ë©0`À€AŠ ç,B~éHŠÉ;Èظxò¿Àôô´L&C"—ÏzãxÁ;-û4ç%ÇZ\fQ+ŠÞ¨ÏŸ8¿çÔ»ûö׉aÓúº]_»’ü{ÃlçÑ`GÍìŸ)‰Å ½ª¦Þ~¨"ÿÑø¨uï!VòÆñ/þýJ†“D(L„) …Éx#¢"gCadA"ŒFF›5ô}}EÄƇŸ³â=DÇÌ¡9:9O§=  "ÆÑg£Ñ‰XtD Ó Ï…&Ÿsã=, 1:¸±Ð¡¹ÌCßÉÍ}>t˜nUI‚ Ÿ§O‰ÏŸ®'•'MÍÒ™ÇèÔC’¦/ð?÷Ø¢ÌU>Z7äcvž^ôÛ®(½=úúéÁ7Õ¯ñáѵäýâ/Lj%q{qµÌFí¶2ô±Šü[ãÀ¯ä;…‘V³¿·éíS…?|w_ãÏV‹Ôg‹‘}K«êyT«öœúEÉ[ ™B6%u.·«ë³UûÄ0x)6‘ËmmÙ,V;ÀÕ5bÀúÜ÷Êè^’'àÛ춄COO“5ÊÉË"ïÝ‹$xd•J%‰pO4ô p»Ý•••†Á’`³Ù­­­A¤ÎçóÉår…Bá÷ûSt•®t´ó287ÆÌÔŠcl©7bT¯‡Ú·n€ +º¢±ÙjY“ä0XƒAFCIàÀ8`VÀôËíFÀ0€@ ¨«›zH.––¡Ph2™RŸ úŸªÕj¥RéÒû[¹¹¹v»=éX^¯’H$±>(a¨›š·èÝi%ç*øÀÀ]€r öp¾@¨}ðyÒS`(¦ffÊëÕ…w<Ôª-ÿ¥D­':YäT׌NN®õT0`À %T+C’tGC>yBþüù£ŸD?&c¯V ÓÓÓ2™ ˆY¬7ÕÛO¿wàä…½ g% ç$ê³ÅßaEèzòžӿÜ/;ñ*p_©)àMwÔF´šð_ßuÖ†;kC·•Q ¿`èյᔑŽE´Ó|M¾vÉ~ñ/ïªM™Áâë§ÿ9XÙXš(Ò}"òá±Pg ÒÒF¨Sù\6”r:)CÃVF>UEºÇ®¿¾{+i5{Û¦cïž~Ÿæ<­ÒsHEõgŠãê÷Î!%ÿàÂîÓï•ÔœÜ‘µ%ѹÜÌ®®®µ®ÿß@§Ô嶶l«àáÊ1`ýn€ûet/Éðmv[¡gžF®ü†Üº-RùVdd8Qz P©T"‘ÇñD¹/ÀívWVVbK‚Íf·¶¶‘b8ŸÏ'—Ë +…ßïOÑUr¸ÒÑÎËàÜ0S+Ž°¥V܈Q½jߺ*èRˆ +Äf«eM’gð_öË6¶©óŠãÿ+m6ƒLlPÌ47/±ãdU[°b›4°âø:ö†yé>àðR•Lõ&ùÃƦ¹û°i/Ú‡˜~臡v[±`L ƒBbŒœ!a%“7»¡ +؉qí»ç^¯4°Ö‰¯¥Xh÷—¿®®ruŸóœóœ{ŽÀËå\.›ê€¸jÔ•…jãn€0Úí©l†ß¼^¯\.‡ÃÕûR(B¡N§+_ßJ(ŠH$ÂÛV"‘ †´Zm<ç·‚Óã‘ý\uZL?"¿ÜÎí`kx½Lºt™· •’š™iw87ç€qöÔþRJºJá6@:KÐ`±ŽMMÕÚ*)ö%›-þõ/Å?}Ĥ?.=Z²M¤Ói½^Oâ +©¨ƒ~逧ÕùV3íÖÐ]öZºyNn5Ý¥vk>ðÃVý÷TXõÕ××Iþõ;täú-Y¿y®Ï2û™æž“Ÿ\Ís~Sá=+sÖžú•N¿ß|Í4qorÉ\¨!ÿ~øXÛa{UŠ{?{…ù¨3°Îùwp)A²Å<;?sü%™Ÿœ2ßÿógzì§[[ÖÕ‘\•+VXn|óGßrÕØ‘œlbsÒ­yF]Ÿý¿KóÝ·š¾Óbv©V¯]F^_)Y k Ò¥Nôô¬‰ÀÝÅ bƒ ®1à°•›%¥²úÑÈh¥v‹¹9fàoÌO~Ìôú‹‰D¥ý2“ÉÐ4­T*£Ñh…¯>O,3™LE¡,b±Øçóåóù*Í%“IƒÁ`4§§§«\Š'O¤’º>`fOœ¤ÊøÅÎzd|»tp¡Pª‡GnÔdóK@.—s¹\lª~à¨PWªC@¸ Àh·§²~ðz½r¹<WïK¡P…B:®|}+¡P("‘o[‰D‚Òjµñxœß +NGôsÕi1ýˆü:p 8´ƒ­áõ2yèÒeÞ.TJjf¦ÝáÜœÆÙS[øK)é*…Ûé,m@ƒÅ:65UkWª¢øô:oª)‰*rª"NëõzÒëV‹·ÙUûº[G5t—ºŒl‡XuiÞ÷ƒ–Žý¨5Ë6Ë–ÿó·;˜³ö¹>K¦Ç<ë*Ó¼{VYN³½æü) ó¡í“ß·oûúWT¯¼1~or)½¨>yÜdÜýZ=îû¶0´ç;³½$%,œÌ³ÿ«^óœß\|o'sfϽŸ¿þê7V‘\•7,·ì_ÀÓÚyDCR‘v7Ñ]Nó²ÔÝds“Gì½ãhó¾îVëþõkÖ-'¯K$’`ðl­#! ðbCÕ‰žžµ"Q¸»¸AlÔ5 \¶r³¤TV?åa»8¿‡VH&“¡iZ©TF£ÑÊß~†X,f2™(ŠBYÄb±ÏçËçóUšK&“ƒÁh4NOOW¹?NžH%u}À0Ìž85H•;ñ!ŠõÈøvèàB¡T5ܨÉæ–€\.çr¹ØTüÀP# ®,T‡€0p €ÑnOe3ü6àõzåry8®Þ—B¡ +…t:]ùúVB¡PD"Þ¶‰1¤Õjãñ8¿œ èçªÓbú øuàph[ÃëeòХ˼]¨”ÔÌL»Ã¹ 8Œ³§¶ð—RÒU +·ÒYÚ€‹uljªÖ®TM‘oŠÜ`ótÌá?íð"NëõzÒ%«EÛ:]ÝÍŽ£ºK]F6öªé<Üì:ÞòÆÁâ†åÚ•Ëþþ›ÌÙÎ\Ÿ%Ûkžõ[fýfN–y÷ŸkÎoΟ²0ìytj›I%V½üí‰ø?–Èaš’z8£iÛµY†ûïnf>´= ì$ 3×kÉ’Ìé{>Oˆ¸š +§­ÌvOþbûf•”äêÅ +ë¾<­GÔ6wӗ窆SSç«»e×›”ulªKVƒÁZGB@àņô¨==kE¢pwqƒØ ¨k@ ¸låfI©¬~42ÊÃôÓ›ÿ6Ìb-3“ÉÐ4­T*£Ñh¥¦Ÿ#‹™L&Š¢P±Xìóùòù|•æ’ɤÁ`0ÓÓÓU.Å“§RI]0 ³'N RåN|ˆbg=2¾]:¸P(UÃ#7j²y% —˹\.6Õ?pÔ¨+ ÕÆ! Ü`´ÛSÙ ¿ x½^¹\‡«÷¥P(„B!NW¾¾•P(‘H„·­D"A iµÚx<Îo§Ç#ú¹ê´˜~D~¸œÚÁÖðz™K¶×<ë·,$ó“>3sfw¦›eý2ÕËoLÄ…ªþAêá#ÞºYŽûïna>°= ìäæ sÆœeÅÞ|°2göLþrû–F)ÉÕ5Š–}ö¿Óê8¢±*›¨œì‡5{ßÖîúþÆe›ê’•Á`°Ö‘x±!êDOÏZ‘(Ü]Ü 6ê.[¹YR*«ŒVj—åÑcfr’y8]¬¼af2š¦•Je4­øåg‰Åb&“‰¢(”E,û|¾|>_¥¹d2i0ŒFã4ùµP NžH%u}À0Ìž85H•;ñ!ŠõÈøvèàB¡T5ܨÉæ–€\.çr¹Hª¿°_ +…QP ÔF +C ÂÀ-`0F»ýA6Ão^¯W.—‡Ãáê}) +¡PH§Ó•¯o% +E$ám+‘HCZ­6ó[ÁéñÈ€~®:-¦‘€_çb~h[ÃëeòХ˼]¨”ÔÌL»Ã¹ 8Œ³§F]YøW««n¤³´ ëØ”0B +¼èŸŽ8ÅŠÝǧ˜LÎ{º¤Ói½^O¢dµh»]¹·»Åq¬ÙæVÛÜMt—ú EžÒ]ûaõÞ·µ¦ÿ°_¶±MWÿ_©ØˆÆiˆ ²a»IF^lJÄÃ6i€Ä/ Å×8Z4¢ +'¢(_¢iâ j]mºihNü’®ý°‰µRëBó© +Ä23¤: H4O3± µDZïî5+ƒ‰8±=ÅŠz:Š¯tó<ç9ÏóιçHÍZÉËòWøwÛLfœsèâýÚÙÝR¦™·ké?ˆ;÷µmY[µ}ÿxËê?"Ë”ú]"Ü·6Ð1Ì;õÁdÓÌÜ€65ØJŸ5L¾¿¿¡²”ÑêÉËzsõá“ÛLoɨ£‹ +õ©{dŒVÛºjÄd +uA©Ûí.öNpp¬n˜uÊfÛÈã¹€‰å5b# ®`Ø“é%Ë„åc¾±œ]÷˜~ç]º¶6}øpúÛos‹Å(Š"IÒï÷ç:ö† d…Ïç[­Öd2Y »p8¬R©Ôju4-pªü8=è*”Øq`”=qb„ÈvâW¶×cÚ· @Sf+ȪÊÑ׋²xŽ ‘H˜ÍfFê€À×| .-•½ ¼ÀMàK@ ¨(êA<–ßúúúD"‘×ë-<–T*åñx +Eöüö‰Dâóùòö +…Gr¹< æ7C{o¯pf²Órê³á×2{~h›ÃË…"ÏÅá¼CàÈ•é™™FS{-p¸Ãž{S–úŠ`í2[SYvbþö×Brpp¬vÒËüܽ—~õÕôOwÐß|“~úbEˆD"J¥’)ˆ‚õ¼}F²ãD½éØVƒEj°ÔQÝÒó–ê–»ë~~|kË/jÖˆ×m/_{ÿwÍôgÆ9‡.Þ¯Ð-jv]|@;Ûß2ïÐÒ~#îÜ߶emÕöýãÁÉ•Š˜£˜L?œ‘înÝ%Ä}ký±aÞÕšL6Í$ìÚô­ôÙƒ“ïïWT–2ZÝ ^§ï¬î<¹ÍÔ#£,/Vé³fì‘u—·uÕˆÉVê‚R·Û]ìààXÝ0Eê”Ͷ‘ÇsËkÄF@\À°'ÓK– ËÇ|c9û…èo¤ôæMôðÅ\GÇb1Š¢H’ôûý9»~ž@  Ñh‚@Vø|¾ÕjM&“º ‡Ã*•J­VG£Ñ§ÊÓƒ®2A‰FÙ'Fˆl'~…`{=¦}»4e¶‚¬ª½q½(‹çàX‰„Ùlf¤^07åkÀâÒRéñ +›‰›À—€ +PR†ñX~ èëë‰D^¯·ðXR©”ÇãQ(ÙóÛ$‰ÏçËÛW(bÉåò`0˜ß í½½BÀ™ÉNË©G^àÀìùy l/Š<‡ó#W¦gfMíµÀ9à{jìMYê+‚µËnLeÙ ˆuúÛSSÅ…ƒƒƒãÿFzrŠVþŒÞ¹3øë +»ŽD"J¥’)ˆ‚õ¼}F²ãD½éØVƒEj°ÔQÝÒ›Ef8*3vKÍ'ê›TBžZ\òß7ÓŸçÚx¿fv@·¨Ùuñ~ílË‚SOl˜±7µTð~òZóxpr…ç( +‘G¥ª¶]Bܳ6П.=«‡íb‚aÞÎ hÒÔÓgÞûÍÞ†ŠW­Š$ët‡«;On;Ô#¥Ž..ÔïÍØ#ë8.o몓%¬Ô¥n·»Ø;ÁÁ±ºIÓô)›m#ç&–׈€¸ +€!`O¦—,–ùÆröú;m4¦zÓ&ú‹¡tŽ£c±EQ$Iúýþœ]?O Ðh4A +|>ßjµ&“ÉÝ…Ãa•J¥V«£ÑhSåÇéAW™ ÄŒ£ì‰#D¶¿B°½Ó¾]š2[AVUŽÞ¸^”Åsp¬‰DÂl63R¯ì™ÜøKËHL +½  +@EQb±üÐ××'‰¼^oᱤR)Ç£P(²ç·'H$ŸÏ—·¯P(Ä8’ËåÁ`0¿Ú{{…€3“–S¼À5à&ph›ÃË…"ÏÅá¼CàÈ•é™™FS{-p¸Ãžqié¯Ö.ìea*Ën@¬Óßžš*v(…ñL3“Ž>¤ß9MÿòWé'É-×>§"‘ˆR©d +¢`=oŸ‘ì8Qo:¶Õ`‘,uT·ô…–y+5v×u¼]ßÜUƒõkön.ýç™úSc¡÷kft‹YœùËüC¿&åÒÓŸÙ÷þ襪×Zƃ“+3Gñˆ<úN¦>°c=î¾»‹@Â¥Ù4Œfâ‹ ¦_37 IØJŸ5ß{}ÇK­n¯ÓwVwžÜfê‘Q–«ôY3öÈ:ŽËÛºjÄd +uA©Ûí.öNpp¬n˜2uÊfÛÈã¹€‰å5b# ®`Ø“é%Ë„åc¾±œ}?ž¡Ïœ¡•*úÍ7Ó@®3‹QE’¤ßïÏÙõóFC²Âçó­Vk2™,Ð]8V©Tjµ:8U~œt• JìÀ80Êž81Bd;ñ+Ûë1íÛ )³dUåèëEY<Ç +H$Ìf3+u`€ÍÄW .-•/g.Ô-À4j£q:Ëo}}}"‘ÈëõK*•òx< +…"{~{‚D"ñù|yû +…BŒ#¹\ 󛡽·W83Ùi9õÈ \nçF°9¼\(ò\Î;Ž\™ž™i4µ×ç€;쩱7e©¯ˆÌ}!ØËÂT–Ý€X§¿=5UìP8888 +„éfÒéï˜Çôžè\ü‰D"J¥’)ˆ‚õköªè8±Ítl«Á"5Xê¨né"&£,2£Ej~[Þ|¤‚—Z·”G:ú¼)õAkÒ¡K:´ómÂΘî©Íg,ɘS¿àÔÓ ¿8ýƒòu1QµC3þ7.«ÿ ˆüë±üuÃÎ2Lþzýy{êö¤CŸpêç¬Hæž‘ +kÝ‚C—ԥϤ?7M¼×´}³€ÑªH²Ng®îŸÿoöË6¶©ëŒãÿÓ‘¸€&ñ%‹QgHQÈ‹W*ƒm²0­–ñKˆ“ã‹“HCm²& ib­×õÃ>FÊp(Lݺ‚V¬DH‹“I$1,!ÌÈ–i– +a®æƸ%ŔֱïÎu(]‘bâkíþô—}øžçžsþ~žó8ŽX,–a¸P(¤Ñh´Zm$Ép(~ræKăÀ0Íí8™$©v|Šp½mßFÆäRÈK¶N_žÉÊà 3-ìv;Ã0'óÅãq·Û­R©Rç·ed2™×ëå+ Ò@ +…"𡵿_ +œHf§ÕÔ#ºþ—€«ÀÐ.‡J÷Ø8ï)¤ËÂâbƒ¥u;0 Üàv\xú)‚ÓÁ5€V–]@±Þp}^h!Ö:‰'.ËW‰¯³OÂá°Z­¦QR³Ç¼ÅÚ[e9TÙb+o±•;ËWP…ÑFUÞÞ§øñOJ!Î1—I?;Õ̺ÛØw÷²'›Ø“†ø~‰“aÉiXj¢ŠS9›NCü¦Ä©&öO-ì¸õ³õ‹Qòêks!«ÿ_¾w_ÙØ¢*À¿»“u·³ÜO Ç?iàܲlç#%N¨—ØÓMì9#;jýè­ÆêÍêUF¶^ßQÚѧ´tq>\Ù¨dꪰö(š–ËÅœÕ%y.—+Û+! °¶¡UêØÀ@Qn®¸¹ºFlä"àÎÓÎ7ÙKæK g½³¼€_¥ŒF£F£Q.—û|>~¡ã÷ûu:!)‰D‡#‹e. +i4­V‰D2ŠLJœùñ 0Ls;N&IªŸ"\¯GÛ·Q 1¹ò’­Ó—g²òðÏŒÄòÙòðë‡Vk;µú+ÀïOˆddŠþ"šgfË$)î#¹ò!Èm¿õ€Öl^ˆFY^)În·3 ãñx2ŸU<w»Ý*•*u~[F&“y½^Þ±‚Á ¤P(¿Zûû¥À‰dvZM=ò—€«ÀÐ.‡J÷Ø8ï)¤ËÂâbƒ¥u;0 Üàv\xú)‚ÓÁ5€V–]@±Þp}^h!Ö:ËŸ;K$î-ƃ¿cïñœ"«ÕjZ%9{Ì[¬½U–C•-¶ò[™±³|EÙ¨*Úû”¯,ÅÆum•Ìâé½ìx;û‡}ì©fö4UÓ#zB;pÖÄŽwß®}µ•jýGÛÏyâYáó/î«t–Ú<Üz{;ÖÁ¾·?i j Êny·™u™ÙQ«÷—šíE©W7mÞ ïØÖѧ´tUpVLaÔ¤L]ÖEóÁÒb¹˜³º$Ïåre{%Ö6´r(ÊÍu7W׈M‚\üÀy`w²—Ì—ÎzgÓ‹±gβmmì[¿I,,¤{{45r¹Üçó¥{ïøý~NGAJD"‘ÃáˆÑÇÎŒP(¤Ñh´Zm$Ép(~ræKăÀ0Íí8™$©v|Šp½mßFÆäRÈK¶N_žÉÊà <;ô0Ÿ<Ô?øêá«•Z½>ù0ÃeHò÷9×_ÎóI×OâþA¨Èúw+„|ò1ð°жšÿ÷°Ûí Ãx<žÌ'ÇÝn·J¥Jß–‘Éd^¯—w¬`0H)Š@ Ào„Öþ~)p"™VS<À%à*04€Ëá…RÆ=6Î{ +é²°¸Ø`i¥†n$#ž~Šà4Ap  •eP¬7\ŸŸÏöT2fùA߃wØ궪*qûV"Ùp=7Âá°Z­¦QR³Ç¼ÅÚ[e9TÙb+o±•;ËSª¢ã¨²ÙV.b^|E"h+ïßq¶«úLWõ¹#uïïé©î©é¡;èGî/Üký¹Ã5ïwÕüùpÝ_zkÑX(&ÐêZ·ï<ÇI dûÑ/›LÖ ~þ#™û莳ÝÕïuWp¸~äõúaNÔ9uôzY®#ugºkßï¬>R7Ò[÷SÝ–Bqõ*#[¯oßÖѧ´tWm©]ÊÉÔUaíQ4,-–‹9«Kò\.W¶WB@`mCëÔ±¢Ü\'psuØ$ÈEÀœv'{É|iá¬w6íØwï&öï †I¸ÇÒ½;F¹\îóùÒý]ü~¿N§#„ %"‘ÈápÄb± Ã…B!F£Õj#‘H†Cñãø3_"æ€inÇÉ$IµãS„ëõhû6 +4&—B^²uúòLV^@àYB3bœ¾->øÒh>@­¾0àg6à2¡Ú´Ð©˜Öýà؆ïì ¿yx“à ȯÈ:@g2-Üûü›aÓÃn·3 ãñx2ŸÒÒÒ’ÛíÞ¹sgêü¶ŒL&óz½¼cƒA•J¥P(¿Zûû¥À‰dvZM=ò—€«ÀÐ.‡J÷Ø8ï)¤ËÂâbƒ¥u;0 Üàv\xú)‚ÓÁ5€V–]@±Þp}~>ÛSȈÿ-ö‰O>a•ÊDYûñ­Dò_iø‡Õj5-ˆ’‚œ=æ-ÖÞ*Ë¡Ê[y‹­ÌØY¾‚*–_Û*Zº+^Ú¼a=!Ú-暢&³·Š1ÕYê¿o©ç^[ë8%?rj­/6Õ2ÍôkÊ"c•T)¥' è÷™oݹó¼f,M¢šÛ:è¦W‰¨š”Œ¦¶è@ý·&y,smѾêMÔTû”ÔWÒš—Źë^ ÷2›7êÛ·uô)-ÝFÛJ.ýV¦® +k¢ù`i±\ÌY]’çr¹²½kZ¤Ž åæ:›«kÄ&A.~à<°;ÙKæK g½³iǾ{7¡×ÇÄKùìðHºwG£Q£Ñ(—Ë}>_Ú¡¿‹ßï×ét„¤D$9ŽX,–a¸P(¤Ñh´Zm$Ép(~ræKăÀ0Íí8™$©v|Šp½mßFÿ²_>0MÞi^„V ÅÒ¾à[s¼À”?¥0J¡­Lœk(¨¼´u/a¹/†9î’ÞÃ-^®Kv&3Y‚çÀ¹-·Ýíþ¥ÁùÄ?UJáâjŠzn׸­ÎŽZ=°¢¶¼ï½ï jô¼J‹Ò˜½Ÿ<¼ùÑö÷{~¾ïóüžµìVàÙYvÇ`L&ÏÁñ˜™¢ÿƯMÔÔè¦_ü €ú¶ P-ˆ;¢Ëœ|CÙóbÞ&QüR€Bö[ *%Ó`žKØŽÚ›Æü—Ù1#®Ìf3Š¢6›mîë …B +…"||›F*•GíËãñÐŽär¹ÛíŽnCS“ N³ÉG6€“§”ÃÅ´ëXwÔKàˆ”±ññ2½! à sjHÏÃoŒõ"p€Î,¥X…vdt4ÖKáààà˜+äí”O^¹B>ÿ<¹|9yñâ<ÏÁçó)•ôe„© åºLcc‘~[Aµ)¿Ú”GÔ燱“lk£\÷Rš!˜Í! :Ýæï¾õÌóÂ9bÂõÉÉŒ[ç(˜4,I[»¬vG‘¾AF˜Â©tF« 2ãvyU]†3Z +S¬Vk¬w‚ƒãɆN^-­­é<^;ÀùÙb}€œpXþË"‰xhx(bßׯS› $‰aT÷±H{‚ pw:»¾—Ë¥Ñh ²ø|¾Åb ƒstçõzU*•Z­öûýs*:vío ûÎØ™Gúp'Þ0µ]¾u¬e·Ïβ;c2yŽÇÉôužº6qeg½aÑÝ@·â!.¡¸íß¹‚úhÝéß­Þ¤L‡Ä… f~ „ ⸸ęnz½Á7öCtó0›Í(ŠÚl¶(—A’wÚ¡PèÈ‘#ÅÅų¹˜aæp8¢sJãñx +…\.w»ÝÑ`hj’´±Ñi6ùÈpàÀA€2æ˜@,A»ŽuG½ŽH/Ór:Î0§†ô<üÁX/§èÌRJ ¯B;2:ë¥pppp< +¦3ðø¨ È+Èï/ͳŸÏ§T*é„(LM(×e‹ôÛ +ªMùÕ¦<¢>?ŒÕ˜dµr¢A&Z’HF*/S²0MÀ'óR“RãE‰ñLã^%2Oú7Ø"þSþ"“‹«ªuߌ~;Ï çˆ ×&'u›·Ò‡Ž&Æe¦.Lò§#JŠ§-•µ;mQrmh2ï'¢ÄeiI’¤xöŽ iX’¶vYíŽ"}ƒŒ0…SéŒVdÆíòªº 0R¦X­ÖXïÇ“ »ZZ[Óy¼v€ó³+Äú9à8°†­%EñÐðPľ''©-/¤t õ駑öAà8ît:#v}/.—K£Ñ aáóù‹% ÎÑ×ëU©TjµÚï÷Ïq¨èص¿]$ì8 `gNéCÂx?ÂÔztùÖ °–Ý +<;ËîŒÉä98äíÆ͉ËmÙZ%…,»¸§ô÷¦•EŠÕÉY‚Å‹Ó ò2– +%ªZ™!^œ.X$yå•_øý—£›‰ÙlFQÔf³E6’üߧ¦¦>¼zõêðñm©T:8ý«íñx +…\.w»ÝÑ`hj’´±Ñi6ùÈpàÀA€2ön)– ]Ǻ£^G¤Œ—é ¹g˜SCz~‹`¬Ótf)À*´#££±^ +Ç#ƒœ˜ u:ê™UÔ÷—æÙµÏçS*•tB¦&”ë2EúmÕ¦üjSQŸÿ@«™iÈj_.¬x1w(¡Dš2ðkå…·Ö·¨ìÍ¥ƒ¬Ù_¥­dðösÆš•ŽæRGsÉç¿-sï)ÿ[.M€åeÏ_à¢ú‚«×ÕZ}:^ÊuïY÷Ï×T3ò Ó\zW'Œlf>tü¦tÄò¬û­çöþT† h­¦I“+¶,­ÝQ¨o¦«ôÅ6ÈŒÛåUu9.`¤.L±Z­±Þ Ž'ºnlimMçñÚÎÏ®ëä€ àÀ¶–IÄCÃC»¾qƒªÝBتûx¤ÝA8Ž;ÎHûÞ‡ËåÒh4‚@Xø|¾Åb ƒstçõzU*•Z­öûýs*:vío ûÎØ™Gúp'Þ0µ]¾u¬e·Ïβ;c2yŽÇI’LL¤×~¸ÚÑüÕ¯2?ozjàµò½M½Ö{?ùû~}ò-µ·”l[wõ㟟=þq_×![û«Ã¯?;òË¥Z +¿Ûÿ3÷g°ôØì_|ùï7nÞ;¢™˜ÍfEm6Û#YWWWWqqqøø61 ºÌ™ yPûÿáñx +…\.w»ÝÑMÕÐÔ$hc£Ólò‘ à$À)€ƒeÀ,A,A»ŽuGç# +ÆÆÇËô†\€€3Ì©!=¿E0Ö‹Ài:³”Ò«ЎŒr%$Ç“ÏTym‚ÔéÈ•+©K—æy +>ŸO©TÒ Q˜šP®Ë46é·T›ò«MyD}~«©—my¹p}]ã7åH®¨¤:¡?n½WÉØÊàmè]íÔ»•ÓÏéýyè}Ú´ä_ªËøõO?“9%•çÜ\TÿQà¬\_³*¾~³˜ÀÔG›hßc…q rZ'·Õ +‰þêƒJê5ÔQã@‹2'-‘Öjš4©¢viíŽB}ƒŒ0…SéŒVdÆíòªº 0R¦X­ÖXïÇ“ ¾ZZ[Óy¼v€ó³+Äú9à8°†­(EñÐðÐÃÝçúÆ$Uk$(éªûx¤ÝA8Ž;ÎHûÞ‡ËåÒh4‚@Xø|¾Åb ƒstçõzU*•Z­öûýs*:vío ûÎØ™Gúp'Þ0µ]¾u¬e·Ïβ;c2yŽÇ 9EQÁ€j`Õ¶~êí·>¨š:¾óÖ¹O&ÿõÙÍîÝ¡ö¡·KÉwž£:És‡o}ãö¿9õ~µ§€úêo7uù«P(x“ŽÁÉÅ$Ìf3Š¢6›í‘,éèÑ£ÅÅÅáãÛ4†9Ž¨y<…B!—ËÝnwt#þË~ÙÀ4•eqü<7Òˆ”¡´ò'Ŷ£Ã ÒV-YÛRf;L¢Ù¤`H”uÙd‰›°Éèlq£«3Š|º:kÆ€Ù±‹£«€‰`URS`W‡J(‚Ú¥S¥¥´´ô½½¯ ®3X(84&ï—š†rï¹çÞ¬Œ Pë½æR´7ºÎdy‡‡3YÍ-­óNÂ_F¬Ö EA@@yjØÕÙ_¤Ú0¸ €*K2ž$§{j!)((Þz^ýg£ÄælÏÚµø£'‹¼³Ù,PA¤3–fåÇ(K×(J¥*®TµZVÄ}x2}*Ë߸-B—æƆÿp2hQâ§ó<'s=§¶ á'§å!•;%ÜûÑ 'Z•?KKNò¦î>ã"'NÌ£ö¤óSÂaèP*ѬÄÏH=§¦ C~9ùŠð¯·x “GüCŽþ¹çó̤h:òêŠèeÙ…q…»“ÅÈŠ¯séKÉ‹yÊü-Ûã£Ø!¤Õé¡&Ð;AAñvƒªWEeeDPPÀ½¹5bí€]Ð\H÷ö’aÌðÎ;~‡' +8I´4û;Ün·Ëd26›­Óéüû#ôz½X,Æ0 |B£ÑÔjµÛí^`8“É$ +E"‘ÅbYàTóco}]=¤  ƒ›¬É ªÖãßäáç~ƒŸÛá9ý‘³*Ëy$mâȆÉZ±GSâ¹ø;ü~|ýdeŠ³Aeÿ¾Ã…øìqf¡¼¼œÅbiµZÚl¶ÁÁÁþþþÇŽŽ:Ž£Gòù|ß÷Û £±±Ñår¡ŒFãƒÐ hª¹DNMME± ƒÿI“”•1j½·Ó\ê‘à@Ày€ ïðp&«¹¥u~Ñ)æÁˆÕš¡(Hhè!O »:û+‚TwPeIˆ’ät: + + +Š…‚ãÓO|ÄL„8 ñpˆ ÞÀÃ`î˜Íf@€ +"±4+?FYºFQ’(Uq¥ªÕ²"îÌR!ñ”¥üMÛ—õnØ“ã9Ä?ugU¶³&{¢FâªFÊ™¨–8«³_h¢vú þ·-„&ß|8M‰q’7õŒ‹˜4EÀKJ—­c@ÿþB#wÈuT‘nqÖä Ûü¿UH·‘LTçx¾þñ­¼û3?:yuEt°äãØÂÝIŠbéÆ×õ¹äÅ<åNþ–íñQlr8ªÑh½o7¨NUTVFÕÜ›[#ÖØu=À€to/Æ ï¼Óéwl› ß*Åð,üÒ¿üm·Ûe2›ÍÖét~‡~½^/‹1 ŸÐh4µZív»Îd2 …B‘Hd±X8ÕüØ[_F©èè OkÇ|ø5ŒìõPûv Ó»lΪŽÛ·²x +ŠŸòåî&pA<2<¹Zo«ÉsZçú*ÍyìCç± ç—Æ¿LqþÀqp­ãÐ:DZ ÇñGÎCɶÊ#ßþÑô ×ê!&_÷¿!(//g±XZ­ÖßF£±©©éĉ —.]jkk;{ölii)‡Ãñ}¿M]€Ë—/¯¨¨¸yóæ•+WOy¹xñâÀÀÀ‹fÇÃÃé©©|>ß`0ø»ò) +ÊʘµÞÛi.õH p  à<@)„3YÍ-­ó‹N1F¬Ö EA@@yjØÕÙ_¤Ú0¸ €*K@”$§{p0ЩPPPP,ü¹|è!ž˜H$$}}ÏZ$Ìf³@ @‘ÎXš•£,]£(I”ª¸RÕjYwf‘?ñäE\室MÛâ—D,û€üð«ÍĹ|gd¼Râ¨"5î•cF»k$D£ôéÑôÌ•¿xïýM½㢥L@ÌÏl‰éyÉ xðçâ¬ÜU—;~<ÛQ•íuÅO}B~NTeãõ¹Äé÷û3×½Š¼ÊŠZ.ù8¶pwRþžLõ—½ô°¼˜§ÜÅÏÛBZªÑh½o7¨JUTVFÕÜ›[#ÖØu=À€toGÆ ï¼Óéwè‘<' ÂÞ!¾ûÎßáv»]&“±ÙlNçïØ¡×ëÅb1†aà¦V«Ýn÷ÙL&¡P(‰,˧š{ëëÂè!Õ½ä‰c혯¿†‘½jß.dz·‚ÍYÕqûV@OAñæ _ïøóo/Þì“èzqy ûož{Ôð{zÞN?¸Ö~€;öE¼ý/ ¤ÄÙ¿xo|?Çq€7~0åÙ±Ü'/yxùèãû]£ŽñÉŸò³!(//g±XZ­Öß”úúúöìÙË`0V®\Éõ‚¾ÏzÅ!–,Y‰†p8œˆˆ4Irrò¾}ûîß¿? î+“áááÔÔT>Ÿo0ü]ùeeL€Zïí4—z¤¸Ðp ÈÙ¬æ–ÖùE§˜#Vk†¢    ‡<5ìêì¯RmÜ@•% J’Ó=8èT((((ÞÓ…òéSâÓO‰ò?àCC‹¼³Ù,PA¤3–fåÇ(K×(J¥*®TµZVÄQrW¦J”«x¿ÞÉß¼-žÌ]Öd3qNŒ£‡P•ÄQ%öJò:¹j$DÃV[MÖæ˜ Îº½ã"'NÌOm‡8³Õxð—ëW½ƒ¼ÊŠZ.)Œ+Ü”¿ƒ'SÍìR¤)£Oy1W¹‹Ÿ·=.:&„´:=T£Ñz'((ÞnP骨¬Œ +ª¸7·F¬°ëz€ éÞ^2ŒÞy§ÓïØccÄáÃÄûÉø'ŸàÝÝþŽ¶Ûí2™ŒÍfët:¿C¿Š^¯‹Å†Oh4šZ­v»Ý g2™„B¡H$²X, œj~ì­¯ £‡Tôt'Žµc¾NüFöz¨}» éÝ +6gUÇí[Y<Å›Ÿ>õˆ÷¸=Ö'î‡]“ÿ¹è¼sÚÚzhDó§ÿžÙ=zâ#û_7ØÔñ£ê8ëç Öÿ±_îAMÝY?׉h‚H2®8;ámÁ¡ëB$ PóÚJbB è¢38ÎVêðÇæ/ªE£;ZÛ* ugw«‹2îŒÝAŒÄ‘†Fé:n¶R4+‘˜@^„äî½A-J ÁÊ°ÞÏ2Èïžßïw¾sûq³a¿îgØUIvU¢ýÀÊ¡c"ó_ÊÍý½ý¢Êýͽ·ÿ6Ö×á³üˆŽ¢þ§žBB©TÒh4­Vê‘|>_OOÏ–-[°|5!ƒM™â^„B¡”——ߺuklll:ÞF#›Íf±Xƒ!ÔSTYI¨d§éÔ#-@;@7@ @.àŒ¡Ò.]¾žw‚0´ÛsåE+ÎÜÁ£†´NÝEàv¬²d,Šn÷÷ÏöQ^ãßïñ 7ÐÖV¿Íöš7`6›9^Ä—ÌÏ—ÅW¬”oO“(˜Cº•ùRÛ `Ji¶¦ÀZW–²`ùB&™d8²=»Á]'tÖ +\j¡KÍØøóDþã=.D¿Z?R_ L$%d¬é5YýÀlff‹3iЧÊBOKF5â€`Æ¥òrµxÔ_ƒ=Uøã¡‚¬øŘVi±‹„¥É¥;Óåå©RÅËUŠÙ¸†±Ï åÌâ¬w6'ÇÆ‘ýjTssólßÁÜ+^U55K#"4w§7ˆµr@p '0ëaãÛE€¼ÀUÐâ;ntÎÊæ ^9þñ&Þãðöuz´5Þs•£ï»þ¼qäD‰í‹Ò‘úÂáÃYÖ½‰–=IÖýŒ!chÓºaU1¬ûR,{°ûg¹¶Ùȉ÷Ü*ñ|¹ÅÛTáùû±{ÿð»†ð$ë:&L¥RI£Ñ´ZmÇq:MMM«W¯žÁ¦Lq˜7o–©mÓjŒF#›Íf±Xƒ!ŒcUVRêÙi:õH ÐÐ Ð øc¨´K—¯„ç íö\yÑ +€ówð¨!­Sw¸]E «,ÙË„¢ÛýÄI@@ð‚ƒßj0Ìf3‡ÃÁ +"eÉü|Y\qÅJùö4‰‚)Q0¤[™ALVÎ(þk]YJäòE©dÒ¿?YƒžÝàV µB—3AÀ„/öw­Ð['DO®wh +ÄÉ‘ k{ DV#0[‡S9âL*ô©²ÐÓ…£‘³vR©<3ÁXƒ=Uظ +>Ó*mÙ"AiòÆéòòT©bR‰>×°l³dë7›“cãȸÔ)QÍÍͳ}s¬NUÕÔ,ˆÐÜÞ ÖÈu=À€œÀüMéºÙõšwîp8¤R)N×ét3|•^¯çóù‚@PH$’J¥òz½3tg2™¸\.dzX,3|UxT7h¢)ä:€^€<âH,â×|ÖÃÆ·‹y« 'ÄwÜ蜕Íü`™ÐërêΩ9áÚ›è>˜ê>ÂvÍs}þöÐÁ_=þ8Ñ´;þquòã=+ÌÕ)÷à6PŒýѲ7eøP¦ûó÷‘,×2*Æð>¦]]èhozäGÙ”J%FÓjµaŸ¨··wÓ¦M‘‘‘ÁÓÚdP(”²²²îîîœF6›Íb± CxÛ.ª¬¤Ô²Ótê‘    ðC¥]º|%<ïa0h·çÊ‹Vœ¸ƒG iº‹Àí*=XeÉX&Ýî'FH‚¹/ù~üsÌ‹>xèðc<ÿÏkÁl6s8¼”/™Ÿ/‹+®X)ßž&Q0% +†t+3ˆÉÊÅ°Ö•¥b#Ó/¸ÿÉZôk™»N䬺ԓ[È­ºk…Þ:!zr½C“/NZ±¶×@dõ7‚Aëpj¶8“?¨²ÐÓ…£L0—ZL3j¯AŒ~Uب +>Ó*-v¡`còÆéòòT©bR‰>×°l³¤‚õÎæäØ8r kjnnží› ˜Û`Uªª¦fiD„àîô±6@®è.äFÈhjL×Í®0\û̓èwßùôû}¾P—;©TJ§Óu:]¨k' ×ëù|>‚ ‰¤R©¼^ï Ý™L&.—Ëãñ,Ë _Õ šh +¹  8Ò†‹ø5Ÿõ°ñí"@^à*è ñ7:ge󯎧:öƒ% Ë1|ïË…½OÔëáëgoÕŠmu…#G× xëñ®ÄGUqv' |œlÂ?“v'þgW£]ñæ½LÛáì‘cÛ1õèš'Ÿ ›Oî¾uÖmôùüa J¥’F£iµÚôÌ›ÏçkjjZµjUð´6l6ûÌ™3'$ïF£[Èb± C¨;§¨²’ +PÈNÓ©GZ€v€n€€\Àsx •véò•ð¼„Á Ýž+/Zpà5¤uê.·«ô`•%`™Pt»Ÿ! æ<Ï«°Àä/z}ï]ôÑ@ Û£³ÙÌáp°‚H‰‰È—%”|È’oO“neb&Q0Æ&˜DÁ”*˜òmi%;Ó 6%5‚½”üàÓµè×2÷q‘³FàR Ÿ™ `Ï:æV |ÇEèéÂẼuñ¤„·Ö~ÿ¯¾×vd‚YdpÈžÊÿš +÷U™h£dT#tÖþD!/ŠWË"ôTaßÁü̸ŘViËŠJS~[™!Û–*yÿ%ý­â.ÚžVZ‘..KúÅ/ÉØò¨¨¨ææs³}s¬JUÕÔ,ˆÐÜÞ ÖÈu=À€œÀMéºÙ²o› ýp§ŸLF òÑžžPW;©TJ§Óu:]È®Š^¯çóù‚@PH$’J¥òz½3tg2™¸\.dzX,3|UxT7h¢)ä:€^€<âH,â×|ÖÃÆ·‹y« 'ÄwÜ蜕Íü`¼Ç3fµZÞ¿{ïÛö^mË÷—Nü³åè —9¬|²;ÑøQüê¸ÿ²_.@MY?w\Ô“ˆT×ÒBB%’D¤;šu¦>ÑÙµe\3e»8W«}­¦<¨lw\Ûn§*:£^Ó øŽŒH‰¢<ïÝ{/kµÚ*wïoþ“ 7|ó}ÿ9çžÎüÐû5äÏ2ìfòC,x£lÿai×±-w¾Ú{í»Òë—¾¾Ýx^íû¾nýÐÐ êv“Ó{†B¡`±Xfœq577§¦¦Nš4i8‰šå†]ZZZSS“Ë >ŸÏãñt:w–çå1JÉì4–zT p AN$ƒÉ:W}Þ»Õ)¼ ×bIÈ’GT´·†\ý-‚Ð%ZðÊ"MjÓë} +ŸøY­ïè@#9hdvûö/þþâ0™L/ˆShof„ælÎÊ’m䌤 Üôõœ¬ÍQ«ß™“¸*è“…¯u}¶ ûW†­D:¨” Iÿ›?—à²}.q—&c'Óû” oþnrؼ¥×ïtLL¼¾ÅÔoáŠRbðCáBì¤Ì¡Â #Æ-1Tô¼m$ƒEâÁ"‰­Hì®HÂN¤ÝÝÿf,û·¸W™¯ùKW½±6/&s3aEÒ–\RO\š¾!ò§OynÔªíÑÒ5³YÓý «~û­Ú×'AAñrƒ—¨|¥2˜FSÜ[#VÈe-Ài€Åd#Ig2›=^º»[&FЩÁØ™3ž·Z­2™ŒÍf·´´x:ö´Z­X,FFÄÏϯ°°ÐétŽs9£Ñ( +E"‘ÙlçTÞ±§LE (¸PGÜ8RƒŒtãµÑëáíÛY€Dò(Øa¡u õ>Ù<Å‹EQ‡Ã5ðpÈ`2ߺÿcëŽæïëµNê¾*(‘9ÎíÛÙý—ðÎüÐû»Cõ»gá¿w¿n.äYÅYŽH:o»~º¨¥¾æjûwõúnc_ÿ€Íæp»Ý^ìG¡P°X,F3θ\.Wee%‡ÃNbÉóÉíé‡1116›Í‹å ŸÏçñx:λ Ëóò˜¥dvK=ª¸ÐŒ §€ˆ‚Ád«>ïÝê^Ðk±$dÉ#ªÚ‰[C.ŽþAè­xe‰‘&µéõ¾…‚‚‚bÜ (F¶WØ]{æLtÆLìêUtøÉDa2™^¦Lþ}fØ[;æeoãeläflÂÅ‘m$”¾á?_†•kg嶨u;c„9³áÕßHÃè¦b)v*Ë]žì(–8K¤öb‰­Hl+’<-{±Ô^"u”H]%ìørüÿ͇KB°Øeíw¨¬þiÀÊ[’¶` +tìÃÔY®£„aìÆ)~ìRŽ"‰“ô’[%Åþ‘Š}“ycß’¹3p¯Nî¿|]ĺs³·rŸvæ3^Å]:ìÕœ?ðÖí˜']Î y¤V«}}/7xÊW*ƒi4Àͱ5b5€\ÐœXL6’t&£±©Ñã¥ïwb"! +€½€ü§§Ã­V«L&c³Ù---žŽ}­V+‹ñóó+,,t:ã\Îh4 +…B‘Hd6›Ç9•wì)SÑŠ®Ô7ŽÔ #Ýx-Bôzxûv ‘< +vXh]C½O6OAñ‚p¹]CvGÿ «çv¯Ï­»u«ãŒÒTœ9ôqœãÓ…>YÔ{ ®koŒ¡€Ûõ~¤¡€ÓõÁÜÞüGŸˆœ-´˜óàðÒÎo +î^oýá³ë¡»ÿ‘}Èæp¹\(:ÜxÖ( +‹¥Ñh~•Ðêëë¥Ré¨)ŽF£¥¦¦644x½Á`àóù<O§Óy7ƒ<((H­Vûú$((^nðd¯TÓh*€›ckÄj¹  8 °˜l'éLFcS£ÇKw÷` +€Ñ阺ÊÓáV«U&“±Ùì––OÇ>ƒV«‹Å‚Àˆøùù:Îq.g4…B¡H$2›ÍãœÊ;ö”©èÅ×êˆGj‘n¼!z=¼}; H;,´®¡Þ'›§ xA¸Ý.§Ë9dGìX¯ÅÖÓ¦éýòOÖùö\Û§‹Ž,3~&é9¸Ø´þƒ}sz÷ÍëùPÔó·ä>e²ý£8ûaû¸æãëŒ-zl6lÈîr8]øœ˜›x%F=|1V(,K£ÑxŠ>YÑf³©TªY³fœâ¸\nyy¹Ýn÷zQƒÁÀçóy<žN§óny^ ”ÌNc©GµWšä@9œÁd«>ïužÒk±$dÉ#ªÚ‰[C.ŽþAè­xe‰‘&µéõ¾…‚‚‚bœµw¸â£ôÈôàA¬«{‚7a2™^“—f‡mØ»&/Z¾5*{k”<—K|+—+ÿé;©µïÆlÈ]˜“VG?<¾»° +û";š„M&•òœÈçÇp¥`_f`rzÍc'^zãî½ œÂ'ô=ŒËÁýã° «±é„1Ž¥ü’a»åï)XU&VÓT Šœê{uÚÌ€ô·#7îŽ]õÎœì­ÜÛ¢•+Ï}âÕlB<ü×·vÄàÆ–ä̦OõÇ©Õj_ŸÅË ^ºò•Ê`MpslX —´§“í$ÉhljôxíA+ZY‰¦¥c;wþ›ýòj*»âø¹ùõ"IŠ€ðuY§™v­.’Gô缾¢»jÝie[gÚ™Ut7Ö)ë–éÆíÖvºCK˶ÝNC©Š,?£Ë«†‰ ,F""&J0A &½ï±¸ºÝáGfì¼ÏœÉ¼„ûî¹÷ž/çÜè¹6×·=N§#IÒl6ÏÙõ“X,­V‹‚i!Â`0ø|¾Ý9µZMÓ´Ëå +qªà(®(—EJJºZ˜ˆ£&4]Ä›Óëáöí4Àzö(Ȕ䖶ְ,žƒcᘼÌOã£7=5Ç='¨»GWÝ9¡ªØÕóAQWåÏÞ/¸÷íÿÕ·<¿Î.}éJå[Wþj*Ûuûè7ÇŠâÆßùº§êMï`÷Ãɉ˜mSßg^¯W(&“iwWWW§Ñh¾2¹‰D¢¬¬¬GîØ5ƒÝn§(J©TZ­ÖàfÈ/,””±Ùi6õ¨àÀ%„ª4Àäðh¹¢æLmpÞ9‚`ÄíÖlÍO0t2QC 3ß"kDЀ+K@lvÎe›-Ü[áààà˜üSŸþÏŸýs¾„€ÓéT©Ô¸ + ”ú‚|ݦd:7I•Hç’šo'e²¦yÌÖmL¦ó’UÙ‰š¼¤u›SRÖ(@ˆVÇJþ²çí?UÚÿâÉ×Ö||€j8ÈXý4ƲÆ>4¼žöñÁ´S¯­­;þÉ¡ßÉVÈx Òn¶öõ?µ-s„‘1Ïxö–—%Žæ&´N¯Ù¿¶zßÚZ,Œƒi“‚a¥Âèçuªî U³«eMÓéÍo¤¿™·âk!ÖªD*zAµT³)I•“˜ž•¨Î%é<23+ö ú¥óð2#;‘Æ_7&­Z#/æã×¥RYU•1Ü'ÁÁñlƒ«TQIIŒHTÐ=»F¬ ÐY @5@&ÛTÊäÑíçÛƒpýè!ˆréñxt:I’f³y®ï~ ‹Å¢ÕjB0-A ŸÏ¢;‡Ã¡V«išv¹\!NÅå²HI)@@ qÔ„¦‹x3bz=ܾXÏ™’ÜÒÖ–Åsp,$L"zÜéû×ço´ößï¾^ù³ËgþÜŽiû¤÷£·ÇOP¾·—OøÓ:Oµ]èè¬ûÛµ ”íùíÆÑÊ{;k&îß qz½^¡P˜L¦ùØÔôôôDDD<žÙd2Ù¾}ûz{{CŸßn·S¥T*­Vkp3äÊÊØì4›zÔ pàBU`rx´\Qs¦6ô½pÌ’·[³5?ÀÐÉD 5Ì|‹`¬A®,±Ù9—m¶po…ƒƒƒc>ÁÝÍT{ã¢Ó §Ó©R©pAÄL.NX•¸Bš¸<Š|Nšô¼ ™*´¤Tiòó²”UÑdjtâʨ¤ç¢ÈT™ti.§r±`£RQ@Çï âv§Ç}_½¬€fl:[þªfžñ/¯f⇄ïRñÌ°ô¥iñB€vã–~ÛÏãÿw|˶XoÔ²Å{2âvQq;Ó㾇…A'¼Ê +æ1©$Љ¯d$ìL‹}%=~7›‘"‹°^@(äËãc­.[ÎX"#Eé—lRºÌ˜Q ŒI£cÄ|s÷“J¥F£1Ü'ÁÁñlƒ“uQIIŒHTÐ=»F¬ ÐY @5@æd_)n?ß„ëPðx<:Ž$I³ÙÚL‹Å¢ÕjB0-A ŸÏ¢;‡Ã¡V«išv¹\!NÅå²HI)@@ qÔ„¦‹x3bz=ܾXÏ™’ÜÒÖ–Åsp,4ú½7ûœ ¿»Qy¨çŸ'ºêÿn¹ÐzñÚÀÅîëÖ“%îwÓ½Gâ\Ç©þw^l7[-æÎÆ|ZýÞg½5òïcw¯ÔûîyB\ƒ^¯W(&“i^vô8'Ožœì& +…6l¨¯¯Ÿ—Éív;EQJ¥Òjµ7C~a¡ ŒÍN³©GÍç.!T &‡GË5gjçe;³aÄíÖlÍO0t2QC 3ß"kDЀ+K@lvÎe›-Ü[áààà˜üLsûŽÿØ1ÿ»¿ð»ÝOÙ½Óéœ*ô3´6 ‡n붧¼qŽ°à÷nigbA¬NCÒªT*5á> Žg\¹ŠJJbD¢r€îÙ5bM€ÎXª2ÙF™<ºý|ûœ}ß¿øÃûþ¬,ÿំ†æú¶ÇãÑét$IšÍæ9»~‹Å¢Õjš!#a0|>_ˆî‡Z­¦iÚår…8UpW”Ë"%¥]-LÄQš.â͈éõpûv`={dJrK[kXÏÁ±Ðø&|c£®á~«õj×ÕžÞkýŽ›w†F'úny{ÿS;\ö²³xå`ɦަlöá¡ÑqÛ­»×n^±Úz>í¼~utdðþƒû¸+ð³Apèõz…Ba2™æq_Àoûöí8¡-Y²dïÞ½ÝÝÝþÊš1v»¢(¥RiµZƒ›!¿°PPÆf§ÙÔ£f€s—ªа·Êh¹¢æLm(»à˜#n·fk~*€ “‰j˜ùÁX#‚\Y2b³s.ÛláÞ +ǼÀVÒ¡á@Nn 7—yxôãSÁétªT*öÂŽ„ŸXÄ +y6>ŸÏûjã!> ä‹ñy~SÄCK#‰ !ñ#DüE"cx€€?§Œ7exŒ@!ˆ‹-0Žó6o±Ý°=ås„wü;Ûvà G QÌbQ”X¸ˆ0šðÅŒH¬±‚``!ñ|¹D/GŠ±\xøöÆã!BÌÈO(ä3Bðþ×x¬1rð„b>!à y€˜»ŸT*5á> Žgœ¬‹JJbD¢r€îÙ5bM€ÎXª2Ùª#“G·ŸoŸ³o÷Xà‡?ð Õ«ý.ÌõmÇ£ÓéH’4›Ísvý$‹E«Õ"6±LAƒÁçó…èÎáp¨Õjš¦].WˆSGqE¹,RR +ÐÐÂD5¡é"ÞŒ˜^·o§Ö³GA¦$·´µ†eñ ÍÄÄ„×{÷–Ó90x³opÄ~kÔ5æ½3þÐá~ÐßuñFå!Ç/5ö?|v±~Øåv{¸Æî :Ý}÷mÿe¿üƒšÊ®8~n×%ën€@"êV#¨ƒ`@1KÖ¡!tVkggV»Ó ;¦Û­ýÃNÓmg:;ý‡]º«µÓvÇ™`iWåG´(N5N„Ñmãèb³šc †äñ’÷zïC¬2Û@ÚyŸùNæåæ{ï¹÷äœ{¿qýÓ=:::N3¡ÃÌþ0l6›%‰ÕjC¿ž@QÔ‰'4MQQÑÉ“'±¿¸1šÙ>ÁétÊår™Læp8f׃Ñd4rÙi&õ¨à<À„ÚÔ@rx²Xrº£3z_xfȈ׫®4¦´ ’]CÝÓŸ"ˆz\À•%`™Nmx8Ö®ððððD ÉãÞ]6;›Y·Ž½}›k +-Ø$îß¿¯P(pA|Yø¦‚¥Å5k5†UÊ’•¥«Ôœ +J¥ªIM¶¬R–®,4¤×®]›Ÿ‹Zšpö Üþžºû üŒiËÙú-]&y—iË!’wÕç©ßü—w•ƒ¿Ðß±bÉ"È-,ûâÖ—“kÂóÿÌ¿©KŒËÁ¾»ÆþsMŸù5õy]¦¼3“qÒiÊãå\Ìä};ïâO”vKᯪ2–ãp¬&I+ŠWïX£Ù¾ª „$‰Ò²gU*- "?m­H+®Y³Q™²8~6OLLlmmõJðð<ßàd}¨¡!%.® àÆÌ.b½€ÎØÚ +€ '\ˆxhÏV§gQÛÖ©¹Ïç3 R©Ôf³Ej;»Ý®ÕjB@`±XhšŽr8—Ë¥T*U*•Ç㉲«Ùq¸¹I/<0ÐOvõ¢p;Þ‡È]_ßNrK!MKí¿x!&“çá™oB CCcõÈçÇyÆ ð¿žf˜±}Ïå¾ùמ۟½?|ö·_ ßòRÁÃi:@ùù}>?5ŽCXQ]Ìf³D"±Z­såÔ°Cׯ_¿|ù2vp»u:r¹\&“9ŽÙõ`4™Ä\všI=ê8p¡65ž,–œîèœC§xÂ3âõª+é­ƒd×P÷ô§¢WpeÉX¦Ó_Žµ+<<<k0¤R©Íf‹xèg±ÛíZ­!a‹…¦é(‡s¹\J¥R¥Ry<ž(»š‡››DñÂ#CýdÇQ/ +·ã}ˆÜõðõí@!·Ò´Ôþ‹b2yžù†á ƒAŠÇé  +1 ;N=½·o~që©;¶¾—ËO9‹P0Hã7¹÷±~™™fŒé0›Í‰ÄjµFïΧ2¿ßýTŸÆétÊår™Læp8f׃Ñd4rÙi&õ¨à<À„ÚÔ@rx²Xrº£sâ ψ׫®4¦´ ’]CÝÓŸ"ˆz\À•%`™Nmx8Ö®ððððÌ^/»m“³‰½{wGv»Ý +…Daҋߪ^½çݜª÷˪÷¯Çªz3“ÓúÉO¢‰_wš6ìýq®rÇHx¡tµÈs¬Œ=[Ëü~s¬„9^Æ›ÔñR"ÜHÚñþº ‹ýÄÀvÕ>hÈפ@Znѵ¿Mdõ¹1„Ž—…Ž—²8*HÀ”†>.!A2!HX'ÊØO+ØŽƒ¿Ôd-âX]úÍW {2ëå}ûÙ$&I@Ê&£ô±ð~Yͬ¦{~”S²kmòÒ—°yBBBKKK¬W‚‡çù'ëC )qqM7fvëtÀÐP‘8yàÒ@ÄCülm À.•éêŠÔÜçó ©Tj³Ù"µ‚Ýn×jµ!‹@ °X,4MG9œËåR*•*•ÊãñDÙÕì8ÜÜ$Šè';ŽzQ¸ïC䮇¯o§ +¹¥¦¥ö_¼“ÉóðÄ +†a¨@à×7âÆÿÝû>Ÿ? +ÍÓXf³Y"‘X­Öùè;2ÝbœN§\.—Éd‡cv=M&1@#—fRúÎ\A¨ @ $‡'‹%§;:çÖ/ž0Œx½êJc:@+À Ù5Ô=ý)‚¨ÁU\Yò–éô׆‡cí +OÔLXft”)/gsrÙ»÷žj^Ün·B¡ÀñQÜëåi;ë7T•×e–×e`öfL<<«Ìò½Uû×ïz{£¢z5$¾øúŠ„»hÙvãx³Þÿ¡–:ªüGºÀÑbŠS€Õ-}\ƶTº¯Z +«s‹†þ~{æ‰ٚí9‰pó½ÍlKEð£2êC:3ùœˆ]à±HQºÐ‰2öÓ +ûÏÔYË…8V—,¹t׺Ý7U½)› ÑÌ'A;¡Š}O¾fVïÏÚU¿A[»:)å%lžÐÒÒë•àáy¾ÁuêPCCJ\\À™]Äz°´A$N¸4ñДŸ­­a˜e¯²]‘šû|>ƒÁ •Jm6[¤¶S°ÛíZ­!a‹…¦é(‡s¹\J¥R¥Ry<ž(»š‡››DñÂ#CýdÇQ/ +·ã}ˆÜõðõí@!·Ò´Ôþ‹b2yž€a¾îÏ°4=> F}ÔèX @ýksÙl–H$V«u>:Ÿ¿i;N¹\.“ÉÇìz0šLb€F.;ͤõœ¸‚P€HOKNwtέ__Ê®_Æï÷›Íf„$E*•º\®x<ž¦»P(¤×ë C$Isª•q¶Û-—euŒ +Gý(YÆÐëñíÛU€²ÄVùªÁÛ·DY<#ì‹?vm=9N‚ ¼^ïÚºYm‚Á V«¥(*¬l†Ú–@WâtZN=¸ p¡+FÎð\ÑÛwmuãÂ$a25Úkw\²†®/}‹ì‚{|e)PÒÖበ±CÁ`0˜´nÿ¿°““œöçUÄ~ómâÓßæ‡u:_e9’òj²®¹È~r§Í¡¶9 +™Fõ¢æPÛ›4‡NSG¶glÍÔÈ2¾þÌÄ]ª™é¤§ÚÌÓí–yFÿÈ„÷³4w¾ê¿îrk¾TµÛ4_·1"~Õè*÷(àŸ®î¢í©»rªí¹N, ™ð~¶»’WËøoËKTr^«y[6Ñõ‡?)¶×Ø’ +5aÕMšºSÔcJ2Kº,Ûãñˆ½Ìë _¥Î´¶n–HÜ÷‘p¥Ÿ»±/Þ‘ â1?@À^+r‡††Rv²«8ŽÈcÿö×T‡Çb1†aH’ôù|©Ž}¿ß_QQ‚¤H¥R—ËÇÓt +…ôz½Á`ˆD"iNµ2Îv»å²¬€Q€A!Ѩ%kßÂàÛ·«e‰­ óUƒ·o‰²x æMÀétáõzÅ^HjƒA­VKQT XÙ µ-- +€®ÄéôÕâeh^=¾ÝEè +€„3_·1"~ôX]ZYBÀ˜«„»Põ´ËšÌ‚š™{ÿ¤Ýò¬ÛʯÿÔT¢Ê浚§ÜDÞ^ÿq±½IÃ8Vé|«nÒÔ¦>ïÞcB“P0²á±œŸþÞãó^=Ïù# •%@JëÃñ^ +O”°,Ë]¹Ûéiü¹ƒ½ÖÏ>øf®i™ðx<*•ŠD¡hÍn#UZeªÊ4˜esS![Pä)S!7Vd”þB‘ÿÓ-H¼Fõ¼Àõ›||Ú8Ù¢?¦h¢ÓìÓ©&­¿•Æïï}ÐœW˜²æ/å9ï-ã¢yb†gôA¦J¿C wïÄ0L·í †Ä‚1õ£'› +Ùã4>µ÷nãî)Ï‘X•lL Ë¶”Õd™*åŒyá(}\ÆJ9‰Õ¢ò4)%àB]˜hµZc½<<+?ÆÕâÕ«[nêžû¤¿´°CÁîgĵ#¦‘8¹¯¿/ì±gfØ[7YëŸØ®.vt4Ü·}>Ã0EÙíö°‡~‡ÃAÓt\\„díÚµõõõ~¿?ÊáÜn·Z­Öh4^¯7Ê®"£®½-I(h ‡ØMÜ9Vʾ]Bœ×#ö­ /¸TjJwoOL&ÏÃó,`±X$‰Íf‹õDÂÃår)•J…Bát:#롤¶V ÐÌNW¸ì*5Í–ªË7"õ(ÉNÉbɹóžîºxB026–c*I80ÈÚïˆ%Õ…`€T–l)­s Çz)<<<Ã0EÙíö†~œÁÁAN!IHH8zô¨ßïr8·Û­V«5×벫ȨkoK +ȉtwFŽ…²o—çõˆ}ëÈ n•šÒÝÛ“Éóð< X,‰Db³Ùb=‘ðp¹\J¥R¡P8ÎÈz(©­´³Ó.;…JM³¥ê2À „Îä"Ù)Y,9wþÂÓ]OFÆÆrL%éÁO‚AîÔÐÅ¥NmV]HeÉÒ:Ç0o!yxxV:,ž³4ìäëpà›·p t.Ï{¤¿õ{ÿ>÷Él\<J¥"Q(ŠßU¼¹´z«©*Ó`–ÌL…le0fùþš¬üƒi Œß›–<Ú¡ÃÙǾ£gÛè@=ÓJZ¸ëL«.x•–{Ô®c;h|Ê€;÷yßÎÎ}R·9ïÍí +Ïÿ3#c¾¬<ÃNüãÍlüçŸàw_ÁíºÀq] Mço¥ýB…µÓl»ŸØƒ?dðÇû¾8’÷ÃMB«6&ж”Õd™*åŒy±(}$c¥¼ôB_ž&¥\¨ ­Vk¬w‚‡ge39øùo$Å¡ãÿô9 „zuuùI‘ò¨Ð߸} H"‰¸¯¯7Ü¡ÙqÛÖÆêõøµ×د]á¾îóù†¡(Ên·‡ûî<rssa)Ö¯_ßÐÐ055åpn·[­Vk4¯×eW‘Q×Þ–$4 twè3ʾ]Bœ×#ö­ /¸TjJwoOL&,;ÿ›ä»-<<óø6HØ Ë<ºÅb‘H$6›m™Ç—Ë¥T* +…Ó錬‡’ÚZ1@k0;]á²S¨ÔÄe'€Ë7: ˆd§d±äÜù Ow]üÃ_~‰7md7mbo\_æ)x<•JE +¢P¿«xsiõVSU¦Á,3˜3˜ +Yhí¯ÉÊ/O‡õ«÷gJ|ïáOÊð)ŸÔã“:Ü¡Ã'öàEø„žÓÉà•kÑá“{ð;EøCþt¿û×Û^ƒ,›úŠÏêÏ£c¾%;žƒ¯ß܉?9€ß'SÄéax|«à¿zîÑ{EøŒ _(½^§ÉøÞz«6­£Ë^,«É2UÊóQJd¬”—RèËÓ¤”€ ua¢ÕjõNðð¬l&ý3?{ýuBĈ"¸pà: «Á›k=®` \Gè6 Q€³^1‰TÚíjØcß¹ƒ³Õ,»nûÇÓl˜oû|>†a(Š²Ûíaý$}}}³44 ¡¡abb"ÊáÜn·Z­ÖhþÃ~ùÅ4•åqüwúŠT +½î è-¬­£ÎL׶Ç¿êÚK‹–N¢n¦âK5ÛÝÌÃ"Ù¨‰ó²«0bæÁ}Øy˜Ù +Ùl@6‚4ÊŸY5Î&›aí±é8 muËž{‹³*zI[lãr?ü8¹=·=¿sÎï{çþ ~¿?Æ¡¢£íb§\–Úp`Wg€®!®òm1µ.ßzJØ­ ss†F†2yž•€Óé$Âív'z"‘áõzµZ­F£ñx<ÑPëp(.°Ù铸R“®ÜF¨ ˆ=2Då]¦¦ŠÌµù]w™¨¡þ¥¢¶ãødÙYU}g‚/!yxxÞvèyšfZüÿà_´ª€þù†ù[·"­qbÄçó…ëYº¸Ô¤´4š6m*£­€:¬zµÙ.êŽVÊ™h׆ ï>œÿš +~^ýãùŠ`GE¨½òIGÕK†;CíåÁöòÀùÊ'_ì™ÿÊ8îT©S`ËÕß>à³úŠàñtаk_^2Üüí–ù¯LÁÎ]?œ« ´W;*C +©|&žÊ`{Åt{ųÚCiìq¼—›‘ŒµJdI«¬­öBs½ú'5rXM½ÚÒ¤Ù}0/“Le¤.[ír¹½<æææB¡ÐÓ§Oggggxx^Åì3°N¦§§ñóNÓq~£gp:A¸Ýîø»Ž¯×«Õj5Çã‰n„Z‡CpÍN7ØC‡#5…©ë·ê(bÏ£ Ñ{¥oy×ÅÃÁ£©©"sm>@À]&j¨©¨…mÁ8>YvdVUß™àKHž·žÿ½1ôe×üŸ¿œ÷ùÂýq{™ðù|:ˆ²tq©Iii.47l2ÚTF[uXõzSS6u]³fo½*u­4M(Ø·ågÇËr>)^ßP²Î^–ÓRžs¬Ly¬,Çξ qÛR¦t”ç6ïT)&KÈc%Ù;É$!@ÅÓw|V_‚!j_Ö[qnjˇëŠ×)^‡åá(g4c/W†­…Q VN.ÖÉ‘¢uGKÖ7¯Û™¯Jø·ÄZi•u£Õ^h®Ç:äPé‚ÕÔ«-MšÝó2ÉTFê²Õ.—+Ñ;ÁÃóv3 +}rü8~ ”f€`üx×±­å™Õ±¶ŸýÚ~¶g;€²³³G¿Ø÷“'ó½½ôoœôùótägG  (Š$ɱ±±ˆ]¿ˆßïïïïooo?}úô™3gpÛÖÖÖÚÚŠ[|ýÙgŸ={÷_ºtéþýû3331º›œœÔëõƒûq¨èh»Ø)—¥vÜÂÕ kˆ«|DL­‡Ë·€6âdnÎÐÈpB& ½½½¨««klllnnnii9ÎÃó‡Ãn·cy444:t¨¦¦æäÉ“>Œ¿VN'An·;þ®cÁëõjµZFãñx¢¡ÖáP\`³Ó &;q¥&&;\¸P7@ œ2Då]¦¦ŠÌµù]w™¨¡þ¥¢¶ãødÙYU}‡/!yxxÞzè…†~©—ÆÄm>ŸO§ÓáQ–..5)-Í…æ†MF›Êh+ «^k6õ±ÊzTc:¢&ÖË 6jLûþý&_Ÿïç+wøÍmû²¸£i.ap¬ñ¥[ñT×bBÁ¥î£³fmJ•u£Õ¾Ù\¯f¤È!TÖjêÕ–&Íîƒy™d*#uÙj—Ë•ÀMàáù?  Ù[Zb|–•$9::…÷E'gŠ¢H’‹vŒÄ099©×ë ƒßïOÈÚ.vÊe©÷†puèâ*ßSëáò­ „8™›342œÉGÍììì‰'b”:ÏJC©T Ä_®N§“ ·Û×±àõzµZ­F£ñx<ÑPëp(.°Ù铸R¶A€ë·ê(„C–¡ z¯ô-ïºx8x45Ud®Íè¸ËD õ/µ° À'ˀ̪ê;‰^ +OŒÐ‹K¦‡ŽºÜ‰ŸÏ§Óéð(K—š”–æBsÃ&£Me´P‡U¯5›ŠúXemÖPGTéÙ«ðÏÓ’„iÉ"±H  n‘H ŠEéR¡ˆ9Šaeš˜xÏUGÄâˆD#š% +/±87ä. ™,á K… KHÁpj«EˆV% )b©H~ß^“%­²n´Ú7›ëÕŒ9„ÊZM½ÚÒ¤Ù}0/“Le¤.[ír¹ÞÄêxxVOÿóôÔ©S²U«„±$#Cœ‘!’ËEiráê4ÖdÏ›÷¤É™/`KOO!RÜ/¾·ýÝñññH]ãäKz +E‘$966Ã0 `rrR¯× ¿ßŸ ´]ì”ËR;î áê Ð5ÄU¾ "¦ÖÃå[@ ›½ÉÜœ¡‘á„L>jfffìv;ž˜XØŒåॠ\¼Ÿø=nnŽûWG{Q£Y¸{^×»åÝ–Åü0(Þ³ÿ!|Q—3Òªÿ›ÌÑí—Ya¸_°®£ŒpÛÿkíðïô¿7æ+RÄX«kÖ¦TÕm°Ú7›ëÕ¬—°šzµ¥é¿ìW}LSY?/ã&R¤Ùaç*»8P û‡«TFgV-ÈG±L57€bŒFÑø5B\ãW‚Ù;ć‰ÎlB­-ŠÐBªÉ€ò±:3dûPôu¯OuL•Ò¥Ø_O^î»÷œsÏy÷ôžs$Ë×Ìöyq¡.˜®R©\蔼‡À½ðs{;þJß~÷]™FS®Ñ”–—cPVÎQ©¦üe*³¯––•«/–‚.––•”¨Š‹‹/]º4€Ü7þ­Y‹…íêb;a¹Åb‘Ëå"‘¨±±Ñ q7âÁƒR©´¿¿ß-dŸ,ðx)‰Z‰êУgµo5 ×ë¡}Ó-""ÿYu†z·ï4333§NzàÀ††½^_YY©Ó骫«¯\¹‚Ö ìß åååUUUÔjµx}y‰´½<ÿV…¼(‡mPŽÁ;jx£NØ6¦çÝyo//†c5 ………u±X\_ï†PÏÊÊ +…µµµ“¿õDpÿþýÐÐP‰DÒÖÖ朆Ä-[|‰òí·Ó5îvrt5q·ÑU¢†¹@I Žl†¯°âÒe×úåô‘ŠÄ‰ÔD-Ü©1Õo;5žt Ý$Bf #ò“E5ß»çnW<ðÀ&ö—Ç“'lUµM¯³Œp-?;)èëë GBøLY¼bfRFˆ"}N|JP|J <5È%¤ŠWf/YÀ>ˆúƒOÏ—KYµÂr2Êôå2“ržÆ-}ž/)—™•Ë†‹bYõŠÖ}Á’i$‹nmëp•GV«fOOOoo/º'<ÑL™L&,ŒŒÀßÎÎÎööv 0òìààà£GFGGÇ4  €†‡‚Ÿç8BÏÐÐЯ·ÃXS ¼JÇi]¡ +O°A9¶à_ù'ôÀZðCÏðð0ÏY¼Ž™a6›ÁóäÉ“1…Pû»ººº»»mï2özÙ°Á`~ ¨‚c +- ÀÌØ+\0¼….Á€É2Éç!º“3×vþó¡Âh£r™1Qa×H)ã&Of-ŽcUŠËÛøûþ±*üý4Yò“7+ÒÄòGQú|8fáõë×·mÛöÅ_ܹs‡Ÿ,++;|ø0D:”ŸŸëÖ-Ô™0–TUUa/œÔ™3g + + + ¯Bå_YY ~Ø°#¼xôèoÏPZZŠpâĉÎÎN~^¯×Cšá/Æyyy7nÜÀ§ÀêíÛ·9òÕW_™Íf¼âÁðð«.Aßcsð' ¡3¨3wÀö­œ‹Š¯—ÛŠ–¿*Eq/¢%Öv^a«LþÏ¡ÅÁ~^ˆUáGÓ–%ÏNÞ¬X'–§8ŠÒ籚&NÚ(Y¾f¶Ÿˆ¦«T*WyäL¬"fû·µ,h««¯¸Åb‘Ëå"‘¨±±qü›»ÈnR©´¿¿ß-dŸ,ðx)‰Z‰êУgµo5 ×ë¡}Ó-""ÿYu†z·ï4+×­[çëë‹ìÏÏ Ü¿¿§§¹{¼ùÑjµvtt@üÙ³gÿS{{{Qo`— ªÂßåÄÄõ¼o@HÄÅÅ!Ôƒ‚‚ Ã䀒O(ÖÖÖNþÖþ¡¡¡‰%·s·lñ%Ê·ßN׸ÛÉÑÕÄÝNDW‰æQ$18²¾ÂŠK—]ë—Ðk4F*?&Rµp§ÆT¿íÔxÒ1t“™%ŒÈOÕ|ïž»]ñÀ<˜XÖÞÙ»¢®.6øOÏæ̱uüw’­èëë GBøLY¼bfRFˆ"}N|JP|J <5è„%0$¤&eHþ²z6yOùTôÛ¥ÌVšh=5’'³æGñ4úbÀÓžX•æËžŽ±©Wô•~Hþs—6ÿt—ÿ(÷¨»»ûâÅ‹»ví’Éd .\µjÕþýûÏ;wáÂ…;w¢LMMÅ*xP–ëõú™3gæææ¢Ô‡8ŠüŠŠŠ•+WB¶¨¨ˆeYN›˜˜¸{÷îÍ›7ïÙ³§¡¡œCCCgÏž]½zuJJÊÞ½{¡­Vk4ñLKKÃÌŽ;Ö®]‹y(áÍC™]\\š&KHÞ¬HËSÞ¥/SBš8i£dùšÙ~"N\ ˜®R©\呼טðÍŽ_;0ÀFG³D¬Ï [™f¼â‹‰@$566Ž{o·‰ ""B*•ö÷÷»Å€ì“Þ/%Q+Qº3bôŒ£ö­†áz=´oZ¢EÄAä?«ÎPïãòæúõë}||*++möÌ[þ?ö«Êu s”vDÅ8qÎ^ÚÄÌHŠMî"bÐ>3ƒšJtÁŠj„Ô²ºP{¥,Õ’.6ªÕ…V¨ˆZ¥Tì-Ùt¿)µ&»¦”kI2 +3ç™ù;–½w[…XgíyÖ·þùÿ÷{ÿ÷{ßÿ{ç{Ÿ÷Ô)TÒ#GŽ@RYY 2ðùÖjjjÒÒÒ²²²þ¼‰à0…Ò,ùì4Årt/((‡Aõÿ|—þ а#ˆèúbço¤#RÅb•——¼àt:½¸¸xà—î ª««---…Baï,ø„‡k’*?.ÉN§žŽ&ÙéDH !×i´¿†©ÄÄDZýl€½hhh°±±AAT=ÔÉk,_`â<žÀâ0¹¬ÌrxÌY‚ .~†ÿ c©¥ò,qš4›'Nv}»Ëµ5É­ç!ÞåÖ‘â.Íä¾L´sü—’þ÷.Â'ýxõ‹/òóóÁÍttt/^\TTtíÚµ„„333PµðððŒŒŒªª*(ÇÅÅÉ›2uêÔ’’HD"Qdd¤¡¡!ºÜ´´´ìÚµkÈ!</==Ï竪ªFEE½ÿþâÅ‹...VVVIII Ï°N“Ãá;v +ààÁƒ^^^°LõhE#""ôõõ!„5¸ +áåË—aÊÜÜ<>>~óæÍp[KK ­H~hh¨©©éúõë7mÚ„›.Âÿþ}WWW,–——‡ “ÉÌÎÎÆlgg'X½½½½žžäp TòÕ«W#œ˜˜, O@Ã&¦^¿~½eËGGG???¬èíííîîNµBý…†×-ãí~0Eª6˜K³¸ïRÝ?™0â$WÉ^éa΃Ø)¦ßŽÀwÓÒQuŸm0{™‰W‹»°‡Dý0Å 2â/1öô7ÔÖ•½®¦¦ž““ÓA) €Š7-OBˆD럒S§¿ôí·oßr¹\œœ8¿‚s_µµµ¶¶¶vvv/_¾ÖïÙ=JmD2!„”¢;#´Ÿi=µo¿Ðd½Ú·|Bå¥VWï»Ò²_Åù^£££cÑ¢E.\ÀãÉ“'Q‹A'‚‚‚|}}Ž?.‹)eÜ Ôâ•®×Á Á–Q@(.X°o6Hå• Ü766fffîرãæÍ›CÒÞÞþîÝ»¶¶6JA"‘ LC BÊ8(ÊÙnß¾¥qŽŽ†J‹¾zõŠZšB»°ðæÍ›îòî8þ<8 xȪU«u”.Áć»4) vI@'à®ð–ò¹/ÿÿØ p'¤:ØfYYÙÀ;°råJ:^\\<ðK÷ÕÕÕ–––`¤øƒô΂Ox¸&!©òÓé’ìtêéh’N„”rFË#Äаešô3g ú7.z@}s³ƒ·ƒ\BîÊvVø©]£FÜ$•Åšm¶û‘h°CQ@è$Ý~›š¤nn¦¦ÒÏØ ð7DµÑC¼Æò&ÞÁã9,N“ÈúèÀ,7ЈÈä/0Í1dÌp3áO]¤Ù^m)ìÖ$7ñOìÿî÷²AͶ%±;RØÒLNÓ.‡©ßÑ3u®>鯈:åxúôihh¨A\\\]]]}}=È6“É7nXÓ™3g¨Æ*&&±«¨¨888>| öêÕ« ú Äà'‘‘‘MMMÛ·o‡ŽŸŸßÙ³gçÏŸ¯¤¤´téRLII™4iþµk×К››£eKLL F×vôèQeeåŠÛC"Жª««O™2åþýûpãÊ•+ŽŽŽè5¶mÛ³úúú ä§OŸ†Y¸(\]]±½½ýÖ­[»8ùÝ»wñƒÁÀŠàT¥¥¥x:t(BÆ,hBB‚µµõôéÓ­¬¬ÔãÇ!_»v-ÂY³fMMMMxx8¾ ÔÐ HåþܹsBggg8¹bÅ +ÊÃþBCÓ#Ûéæä·X i÷ýnyJü1O~?\;÷zHs~‹s2× çµtTÙ³ f/3ñ +bqö¨LêÊ 2â/1öô7ÔÖ!Ku5utRý” +(0 ·Iø3%„H´u$_ÞÇáÅᦫ«{ãƯàÜWDmm­­­-ª U¿ë÷ì¥6"™ +BJÑÚÏ´žÚ·_h²^í[>!ŽD]½ïJË~ç{ âE‹ihháqß¾}t:}òäÉëÖ­›;w.ÔÆ©imm +…·nݤ½½÷”••UTTàñÙ³g >%Àlee%Ê1ô!ëàñxiiiàà ¨Ú(ÁP‰D---ÂãGPâaÿÁƒ«W¯39tè,ƒ€ÄÇÇS…^Ý»wT•ÇŠPƒAÈÁv ‹ÅRyõïòþýûGŽI£Ñ@<°"¥'a¿¼¼1â›@—à ¢ƒ{úˆâòåËÐM¢>Âß +ø&|>©Îb±°éï(.ò³¸¸xà—î @b---A¼‘]½³à®IHªütº$;z:šd§!%„\§Ñòq 4l™†&ýÌ—zúæfo!¹„Ü•í­ðS»F"¹I*‹5!Úl÷;"Ñ`‡¢€ +(РȘ¤¥EÂãI̾—¾¨`@kQÕFuò˘xç°8Ln ëã#À +¼@æÌ%Æ®~†ßü{¸ÑˆaÂgi¯-™Ýšä&þ‰-¸q•_Ù]£Uþø.‰ÝžÂ–fü§e÷T7½az“œ+„ýªƒ½£ÊÎΖʿszz:“ÉÔÑÑ™7o^FF(.äÑÑÑÊÊÊ3fÌðõõõ÷÷?þüÎ;§M›º|ùò 6 Û»wï°aÃÐH&''Ïš5ËÊÊ*++ lÜÍÍÍÀÀ  à‹€A@àââ–zƒnÎœ9°æää”›› ªª*0F‡“šš +S'N@E¦Æ ET"yâ@Kœ‚S”K$jy±™Tˆ‚S@@‚¨ šbœ¾¯ðäÞëõbÄBïý²s²»ÏÙû¬uöê^¿¥”RŠQoíçG"Õ#-)ùÑÙ‰ç9“ɬ­­ãÆPÈGH+ÈkÝÝÝ +1 1W0]C=‹B*Qª”©|Q²Zå[!ˈLL–~eu•BŒµBBB †H$ÂÏcÇŽ©ªªzyyåççGFF"×ÇÇÇwtt477§¥¥íÝ»7..nûöíׯ_GÆ/++KMM‰‰ ÀÃååå­­­x><<·€"QQQûöí»qãF{{;® .ÄWZ·nݽ{÷ª««L?sæLUUxãøñã±±±9þ<Â@(.^¼XEE S\\Œõ9’’’RSSƒÀ00œ8uàÕÈéÉÉÉ>>> ÀFpppIIÉçÏŸÿèï»w£ç΋HÃc „ÞÞÞ>€%@/øïœ>}ÏÔ××'vïÞ c` _àîÝ»¹¹¹;vìÀ“’’`ƒ‚6Ma·øaœØÁñ7Ñ¥­­èÿWÿŒÿÀQü›G·‚Ot4ƒœÁÓ©Bv:t4ÉN'BÊ ¹OQ…„8 +[6ƒ¡}³ø–|ýRjuŠÅŽÞ>Æ„\%¤^¶kÔíïíÚPR¤Žd;Bt8܇/ä_B*¥”RJ³èákOtõjÚbýêõŸoŽ¹ºººìíí‘5´Tœøó|·™{‡šñÙ¼@“UAìo¶Á»lþf¶ïÖùËÿm¢6G­>¹1ÕEúÛê¾,Ž$ƒó)s¸¹¶ßGzeW7 ~ÎæHÏ­ø(pö0Te-tmh”Ï©NÓ¿·ììl ‹¼¼<ôûûû²l6ÛÀÀ~íÚ58Žq­††FÊ -Zäîîîë늇Á´{öìH§'L˜öÞ¹s'(ýòåË h°‹‹‹®®îÐúPSSÚÍÍ-11qÓ¦MFFF ,°µµe±X÷ïßÇ3 ð9s権©á¹\®¦¦&°\,·´´¶Árx ê,‹ªaÈBH L:ƒEEEtöñãÇÛ —/‡ž1cÆ®]»ðƒÆÆÆpÆXZZ¢AÁ‚5Q5hii¡ßÙÙ z‡×¨ez_°·²²BHÀ_ ®\öeXïÄl{Ž•6i>d-½Äëp?f|$iî¹\éy^ëgkÖt6SWãoèiŽ \ð7hŠ(êóƒÙ¾áfžët˜ê²P×Ð,((¯_J)¥Ô¸‰îë¥ýühBh]éK~tºD"ÁyËd2kkkÇÀº1Ôëׯ—,YâààÐÝÝ­sÓ5Ô³i ¤Õ¡J©‘Ê7%«õP¾²ŒÈÄdéWVW)ÄøQ ¹5$$„Á`ˆD"üLOOG>533Û²e 2>ŸÏ¿sçÎÛ·o‘1‘ß½¼¼síììÀÈÈÉÉÉxlÍš5žžžA¯©©Á&š››Ÿ:u +D1þ|€Gfff[[[UUú³fÍ:pàÀ«W¯nܸamm­§§¸uëÂ5??·°¸iƒÀ,khh˜€0t±råÊÔÔÔýû÷ƒRðŠ .øûû;998qâÒ¥KK—.'¬_¿vÂ`xfØYàMaa!ÇÏV¬X¹Ož<=AAAÓ¦Msuu-++ëè興ˆ˜9s& oºà±‹/ +…BKXXÐ_ ¤Ñ×ק°S„@Mø u“êêêñ7 >>0‰=ÿWÿŒÚÛÛmllðwhllÝ +>ÑÑ BrO§ +Ùé4ÒÑ$;)'ä>EâH(lÙ †öÍâ[òõK©Ô);zûr•zÙ®Q·¿·kCMH‘:BYìÑáp¾O ©”RJ)¥8Ñ´”þW,–®X)µXD¿z-»!§Gš*?uuuÙÛÛ#!jh©8ñçùm3÷5ã²y&«‚ØßlƒwÙü ßð_—¯3VÕ:_sJSª‹ô·Õ}YIçSæWÍ}¸õÊ®nhýÙé¹sœ= TY ][åîŒöFhš““NÃÈÁƒ+**zzz0Þž}ŠB¶mݺ5 ˶18äÈ•+W€ñsçÎýŠô0Øojj +OQ0>{ö Å˼yóPbÀßC‡aÊT.FFF“&MB5LE¢¥¥…œg``#@³ÃË 55µ¤¤¤þþ~ùnJç;1Ûžk¥MšYK/ñúÜn_Âã›a#ë är¥çy­ÿq¶ÑŸ†¦­«îîoèiÎßÌ^ð7hŠ(êóƒÙ¾áfžët˜ê²P×Ð,((¯_J)¥ÔøéÓ'ú_~4!´®®´¤äGgK$œ·L&³¶¶v ŒCáœ_²d‰ƒƒCww·B HÌL×PÏ"¤JTg„*¥F*ßD”¬ÖCùVDÈ2"“¥_Y]¥ãG­äVƒQZZŠŸéééS¦LÑ××÷öö¶°°@b'`G6lØ€äîãã“ÀãñÐÙ±cGbb"@""""88i·®®®¦¦¹™÷ܹsÈÝHâ®®®È¶ÏŸ?ojj<ØÚÚ"Cá¥ÅÅÅÀ°rz[[Øã©©©aaazzzÀ•üü| XÅÃÃãìÙ³è …B¼twÅÄÄxzzž>}æ᧠pE `MFFÆÉ“'áBTTÔƒ†}ÿþ= aŠY–––°G$577abddä›7oÀð‘¢(\±,˜Á×׸.\¸€‰VVVØîÍ›7ã隸­S€€Rk×®…ïN×ø¢g~…‹ÿ|¤¢øk \G·‚Ot4ƒœÁÓ©Bv:t4ÉN'BÊ ¹OQ…„8 +[6ƒ¡}³ø–|ýRjuŠÅŽÞ>Æ„\%¤^¶kÔíïíÚPR¤Žd;Bt8܇/^(Ú¥”RJ©ŸýåJw¾¡­¬h³ùÒÖôøÚ’´··GBÔÐRqâ³ü·ýêbº*ˆÍ 4ACç-PÖøÁ¦þÛÌ]ÖO˜õ‹¥¶ZËñåÒ|~oG’îö)“óçæþ—ÆÈáH/zõd;qX¿°¹64¶È×/š¦Aï( @Ëè÷÷÷ØFFF ü£Gþý2j2ÉâxÇ*GV`Mdqkda9ÔqÅ9TÌ!I8DÀƒkY©O”cVd] DfH@ÄRQQAT@”Á ðÄQD¢¡0Ù’ŠÙaJE¨­Ê¿º¨/ݯßK¿ôû=[__€vÆŒqqq=òõõ4i(½ªªª¡¡!((<‡ØØXEEEP=`xØ> ½  0 ›˜yüøqwww}}ýÝ»wÃò®]»V®\™’’"€ô˜TËÏÏ߶m›Í–-[Îœ9x^¾|ùÌ™3á'XÍźuëÐ5 5àp8À~Ø„çØ Aãà¥êêê‘1Êf¢;`2™hѤøùùµ··×ÖÖÂ7ðTTTZZº4õH©à':€}hh¨ªª*ÜC ¤Gc³ø‹¾¦ðµqÇö\:»zÆV¡’–½FâT¶0‰ÙOà1âÿ“6Ìþx Æ!:l%>eÛú¯å‹5¾D®ÒÔ¦2×j9kˆ$´õеõü•Dýi ¥üæY¹j«©+IR]Y9#ãüØÆ%—\r›D=="k+!"M|áâ‡.ïííe³Ù¸Tkjj>ƒwŸQ&&&¨k¯_¿žÂ’©(+ñ ©#¤Ý¡SFkßJ(’^í[.!D"uMŠë•âüG åØ@¥RKJJðqß¾}„N§óù|.—kjjš™™‰º HPPPØ°aCzz:Êwrr2Š;`háïïU………XŽ*¯©©‰ôËËËCOJJ²µµ544„5œ/ +´µµ5Š¾XZúqÜø¯,Qoß¾ bA­B€d¦L™ªÁ{@à!55µ¿¿¿²²ÒÞÞ«;;;ÀÐ èéé-Z´¨±±Ûa|«¨¨¶¼¼|þüùà"///D QSS‹ˆˆÈÊÊÂssó'Nˆ¥è¸zõj +…‚­3ˆ"!!!GGGƒ.vîÜiii‰o ÎwuuMÀ™Mœ@M...ˆ]GG48þ€6i4Ziiéøoý)zö왑‘@·©©éã,ØP I”ÞN×$·ÓhW“äv"¤œj +%‹3BÁ‘M§Òò.çm\r¢NÀÌÎ~!™„ÔJNRø[§&Er‡T–oQc²î·µMt(rÉ%—\c§Ÿ‹õ抵´ÅÍ-"t=ã¸3èÎØØQyÚäeµ›çÙyë±=um=t0døû³á¡kë®Ëý«ž³¿…‹6¡}a¤ªø4ÖRœÎ&°ú~`ôó˜¿6úøÌ^ždÂÐ!–ø´m7Ï|…úd–uZ?=‘H4òœ DÏÈÈx/UNNŽÍ‚ @ªà[ ,z+ ø²eËÀðøâââÀ$`û¥ú§T }`ð’%K€ëh'Gn‡9¡¡¡èÑœƒ‚‚`œ|îÜ9ÀvbbâÆÒ˜V\\ìääTÃïر#<<¼¬¬ [cZTT0ûÀEEE@}ÌA›ª ƒÙÇÂØN‚êF: XÂ;88XXX`âB°7oÞDG°yóæúúúžžD÷öïßäÈ4èඉ¡ €óp¬ªªJ,Å3!u„T ;#”bÊhí[ EÒë¡}Ë%Ä‚H¤®©Qq½rBœÿh y{{S©ÔÒÒR|Ü»w/ñð𨫫C­6„„„Ü»wÏjjjÀ H ??háïïòÊápPŽeHp÷îÝÙ³gÏš5+;;»©© sP¸Ÿ>}ŠÒljjŠ¿/_¾Ä|7–£4iðÏ°ïææ + + +ÉÉÉ0 t:>­ªªŠ_8‘"Ù´´´|||bccT°|ôèQL{ûö-8 +nÃ%‡U³iÓ&.— ÍÌÌð-á¿wt œ‹‹ b×ÑѼ¿8S&ËÕÿ#<£ø5áGñq쨄$Jo§k’Ûi´«Ir;RNH5…’Eˆ¡àȦSiy—óÇ6.¹FQ§@`fg?‡LBj%§F)ü­S“" +¹C*Ë7„¨1Y÷ÛÚ&:¹ä’K®±SG‡ÈÑQ¼zµ¨¥yœw~õꕱ±1 +¢ò´/–s5] 6Íåxéa°=ueÃÖã?ã§7’9lÒwÝ2ßÔY‹¨L^ñÕï;~ ‹3¹ï“V ù ÙàýÒà3ùŒ!>Cœ¼JœÁy󽉅Ú$ͯ-ëš[Ç6.PnkkkyyùãÇß¿7===€´ôôtPô±cÇÊÊÊúúúÐg]»v­¥¥sÉyyyÕÕÕè€v÷ïß9Ëæ±êëë…Bá°qÙCWWWII ¨ûìÙ³X‚…xßÞÞ³2¼y÷îl^—êêÕ«ÃNÂ%9V½xñ{ݺuKÖîÁsôX…ÝññÍ›7 }¬ÅÃÈá'¶¸|ùrZZâºxñ":™mmm999µµµÃ“a¹¸¸{=þüÆ ˆ¡¤¦¦ž ²s¹\Û\¸p!88xëÖ­`À –³X,;;;$|ll,ÀdûkÖ¬Í'OžàeTTðC©@ àóùXÙÙÙ DÁ¦ááá~~~¡¡¡{öìçp[`õë×c2≉ÉÍͽtéRHH¶Ã666úúúÿf¿ÚcšJ³ø¹£³®j‡6jF­¥ +3ƒ“a, ¾@[J_ÓÍ,Ìì•™ªt1ÆÆÇîß!€ƒÖ1>">G@A$Õ?ÀDÍ&ŠQT”‚únïÝsïE†Å Æ‚­›½¿.ç;÷|ßw¾ûžžñÜÕyXƒ©Õjtu©TŠUŸû ÀÛ +…XµºëÁ ¥¥&2™Œ­œ]@’F#Èg¢ÓU:: šèèP Ð@§"€À+óËÊ+†ö\À ƒ!"1Ip +à}kDÕ›n¥ËÜÀÌ2`‚By³¹ÙÓGáÀ‡A‚dˆA§Êû™Üµ‹|öÄÍF´µµÉårLˆ^Þ#"MMÖ†,]œ˜˜˜ð} ê¯ý…H¨°,=8%súW_ûÁØáJ1_ŸMý¶˜:ç,P²äÈWØ_#G¾’,Œ&DSÿŒ£~[Ô‘6küâÏ#o5=ò£™L&¬l»»»I’þÎøDþéÓ§X cáñìÙ3¬´±¾Åª5QÁjµ¢>ÆÈ£ü%dP ”#óú.¸æ“'OîÝ»‡O»ÝÎ +m6[GGGWWÉìã°§{ôè»> öõ±WÅ]°¤d-yþü9^ » >Ÿ3@µ~»£¦^¯Ìwì5×Ä*«ï^x´åx +”£Ù½ÇD«îß¿ßkZ…B´–ÕZ´uvFÄ})„Ç;¿¤Î/¦Jâ(t•B¥“öù¬‡°„g‚,TREÑÔÑxêìâ;Ÿ2Ñ }uÜÇ£$û§d†,Y„ŽŠÞ˜ðýëŽÀ8*¾ øú‡àdíg1š&üx$íê^¼“'OùÑ8pàà&3Ur˜JH Ö¬%ïÜyÛélãããE"Qccã;°îÃrXXXxx8sUXÀ÷“p »3 ª‰Ú·+Ýëaûv`Љ}êtõ1Þe`ÒLMMåóù/^Äáõë×7oÞ|öìYä1ÿìÝ»S0¦×£G®[·nÓ¦MÇŽ«¯¯ÏÍ͉‰™9s¦J¥ + ™4iÒ¶mÛ05cÊÉÉ©­­=sæLvvöÖ­[·oß^UU…‹“Ý»wïر‡×®]+***))Á¢÷zðà³²²PwÙ¸qcCCʱüÀEФsçΡmÇG3îÞ½‹&gdd¤§§£~ee%®ßÜܼ2èEeeexäÙ“b pþüù]»v¡m¬‹êêê>|øĉÔétX9à+œuèСÌÌÌ 6 a8PhNG ·lÙ¢ÑhŽ9b6›=rkžVqjµ]]*•â·r¿Z­V(ÖÔÔ¸ëÁ¡¡¡2™ ®­¤Ñò™èt•ŽN…&::Ô4Äi€ ðʼ²òŠ¡=‡€WDb’àÀ-úÖˆª7ÝK— ¸€™eÀ…òæ«Æÿ³ êÇ‘n6¢­­M.—cBôòþpN¢OJæôe?'¥&¥!ÐLj`bjKŒ001fÔéÁ)ëBB“|Àk¸J*xy š*_JÇR… +êe¡°/ýÃ<ñU,õëBêÂ’'?MÿÂüäÊÝk¦z?‚« I²ó_‡ï9¶–}û¶'z¾@{—éó¨„é{-ùÿ\­V£«K¥RNç~´Z­P(¬©©qÿÖƒAKKKhh¨L&kjjrm…$FÏD§«tt(4ÑÑ    NDWæ-–•W í¹8 €CDb’àÀ-úÖˆª7ÝK— ¸€™eÀ…òfs³§ÂƒSW±ÅÕ0ƒèw\€^¯—Ëå˜Gò†Í˜?qñŠ …ßÄ~#‰K–"-L @ZâßKq)(—Ä}#Q}ç¿h…,hþD=lž/ÿÞO³¿.ÐïjÛ3÷eNKHûûPμΜȎ}‘m{¢:VØKb¯¯‘JFAÐW±wî³QÝGçà¼ì2Ë•‹Ä# nMýðÂŽœùm»ç¶ïdÜ£‡ û{ùvô–}‘ÝùѶ¢˜“+B¦x¤‹·ñ#ç&Š—¬ Zø­ ú*údŠ´¯—öP²)îÏ’„¿,J“…GOâ}4§óx¼ÒÒRO ýA’N£ÙÚi´LÖ.³½Ûb3šmf‹Íls­“ÕÞ—h‰Åj´Ðjf«ÝfÇŽÔép:ltëê´Óÿ6šœ¶¦¡šƒÕÁÖÕŽ½®ƒžnu8L§‰~ö2½CŽEfü’Ng7I“‰$m§Åb¶ÙléJØgò¥Ó5O3ñññ"‘¨±±Ñµ<…ÖÖÖ°°°ðððöövUXÀ÷“p »3 ª‰Ú·+Ýëaûv`Љ}êtõ1Þe`„HKKãóùo5±©©)///;;»¸¸8??çΗ.]²X,ïÈNïð~Õj5ººT*Õétî7@«Õ +…šš÷o=´´´„††Êd2üÕ¸¶B’F#Èg¢ÓU:: šèèP Ð@§"€ kK°¬üí~ãƒCDb’àÀ-úÖˆª7ÝK— ¸€™eÀ…òfs³§ÂƒÙóGãù *óodÖfR¯'©>òw½^/—Ë1!~0 ÆO-ùD8-Ð[ÈŸ*óž$”|"@òëKÁ´|j€ÀO&ð ñæO…ét¨SÃ&oŒö]9[´jŽhM”x­B¬Uøf̯íC4ù¬ŽBµ)?FúlŠ'Hÿ8 `¦BÕôð±ÛŽÌÁƒè6cUKÐßbýyë•âU³}VÌA—`ÝÃ7£ÇIRø®™ç›>Çgù,‘&jʆ˜©ªOÇ1çþaÄðɾ<ɧ_™@ ˜„ž)ôëç¨èºÁè¥Þÿf¿ÜƒšÊî8þ;¼å ¹òâòÐ%@p…dPä) +dÕîV!>vÝt× ¢H*¨UñÕ¬:ít­­ÀÎìøƒ’Ì´[‚£þÓÍ>ÆNÚ‰lÒÆÌd½·çtÅ?°A–¸õ~æ;g.—üîýÝs¾ó;ç7/1âÍd^|*!ˆ õógÎ~ÎÜîîoÏËó|þùàÏßݨZÿÎöš†¦›ë›Zv5ïŸîÀÓ‹F溵¡¹egsK£®Uײkß¾÷:tèðƒ¿Þ×ÒÚÜü«Ý{wÖ7Ö×אָo˜$í®Ý »÷6éZpÈÁCmmÇŽ=z¸­íÀ±£ûo9~B7¡cº't'Nê~¸ÃjÚ:‰'sO[[ýÁõ­­»ö6oþ`{µjÝ‘#G¾³}ç©U¨‡©£G© 9µy3õÍמ†;¥RI’¤Édò4Ö»X­Öììl…Ba·Û½’€îì™ð°ÐS÷†pwè&šª}ëGL¯‡Û·ËKŒ2ÞòJòÓÆår©Õêðððëׯ{øøñ㌌Œ àqttßù‘’dyEp:*• +[]*•ÆÙO@«Õa0fÿÕ/ƒÅb‘Ëå2™Ìl6Oï • à´»: 2ÕiªÒÄT'€€a„zr€9Fðˆ+W¯Íìw±LÁèØXNEe<@À]fÕPß‹Vm\7Œà%@P¼üÎýûÞþ–—‚¢¨ñ úï_RB%ÑÃóœ†ÍfËÊÊ¢/ð%!±I\ql¨P) á‹‚ùâàH13>U$£¡$„œ—&Ʊ‘!þïfŠ¶æÊTþrÙEIDABD>–”÷TøŽ[DQÒ%Éü5¢_æJJbðf¼¤èí¯¾e«úkÁ˜ÃQ¬¬öXÏÙ¶„¬\((‘ÅI¼)ö /?1‚Q3$òŠ“ˆ’$¢|ÿLñGy1E‰Ü_ +s|£âÂæ'rÅ1aIHä„-'ÕíÕ$TH†’oÎKæò%Á¾~ÌÙÃátww{{&X&ñèÑ#MC3^ùAP·À¿Zê_L¢‚(Ÿ< ÂÊbÆ|!Fyb´L ¹B´TàS…Ö'ø- ˜ùAp…ƒ(Í…„Ï ÿ`N8pÀ?Œù¥oð“`ð‰X‡  + ¡Bð)D>ÅXÍ€!´ +`;žÞ'3ó×/þâ±]¾2S‹3)zÎú=v8J¥’$I“Éäñ«½ŠÕjÍÎÎV(v»Ý+ èΞ  =p`wg€n¢©Ú·~Äôz¸}» °Ô½âdlÌñ–W’Ÿ6.—K­Vs¹\½^?½'ŒöX^œN§J…ëH¥R£Ñ8û hµZ‚ Ãì¿úe°X,r¹\&“™Íæé=¡R£áœvW§A¦:MUš˜ê00ŒP/@0‡Ãqåêµ™ý.–)Ë©¨Œè¸Ë¬ê{Ѫ낼³dŠ—߹϶,,,?y¨'õÍ·Tz:•²€ºm¢ž¹? Øl¶¬¬,¼!£Ät"§øÀEV3¡.÷|^0à¹'œ/ÞôÔ-Ô?îÓ+WÒTd$Õû©§á‡C©T’$i2™<õ.V«5;;[¡PØív¯$ ;{&<,ôÀ=€!ܺ‰¦jßúÓëÝv¯ûR÷Š“±1CÆ[^I~Ú¸\.µZÍårõzýÿEQ³tŠcy¥p:*• +[]*•ÆÙO@«Õa0fÿÕ/ƒÅb‘Ëå2™Ìl6Oï • ÞVN»«Ó S¦*MLuF¨ ^²qåêµ™ý.–)Ë©¨Œè¸Ë¬ê{Ѫ낼³dŠ—߹϶,,,?u¨§#åtÒƒ´¾þ~Ì}oöΓ6›-++ oˆ^@au\ížôõ¦UoK®yO†U½+ùYÕLü+yÃG©›eVÏŽÙ|î¿?.§û×Ò]åô¹Rº½”>µ’Ï=¹Àj/£/”ÒÊý¹ÿ~ôdF&ægÝ3³U}‚ÿïnÂ6æHÉ]µ8þy<“îSÑߦϗ1†i/{b›gÔîVG9ýéjZ¿ævk®,2{•ºj“¬®)]¥Y€ Y½íy—ºÅ¸wÍ{É5ï'¯ß‘²q÷¢åëæEðqxXçÒ¥noÏË$\©Ú–`€Ï6FÑ7ªéÞª €½ñ¼+Ü5¤£ŒîYEüÌö»’’Ü@P°ÿ’òèMM‹6ìH©Ú’TµEVµ%qõæÄÕ[dÏ +߯ޚ„í±N³ ®iQÕûI¢„p¦t#D°úq…п¬@L#&Ž&¿øÛ°§n¡\.jØDýö4ÝÝC=xài¸ÃáP*•$IšL&Oc½‹ÕjÍÎÎV(v»Ý+ èΞ  =p`wg€n¢©Ú·~Äôz¸}» °Èؘ!ã-¯$?m\.—Z­ær¹z½ÞÛ¹°¼ê8N•J…­.•JFãì' Õj ‚0 ³ÿê—Áb±Èår™Lf6›§÷„JŸN»«Ó S¦*MLuF¨ ˜ý(‚G\¹zmf¿‹e +FÇÆr**ãzî2«†ú^´jãº`ï,™‚ÿ²_-0M¥YøÜL˜Á”GuÔ«²*”Ra-uWÚòÊø Šå5Œ¸’€»Ž(@a„qˆÊ°¢»uA$ +DQP1AÖ‘ +­<Š´<ïÝsÛ Ë¨`¡fs¿|4—sÿÿœóßÿËùÿã$¬¬gZH ü€ÔPóÐÓM©TT?9Ä8P(|>DCS½µ^æÒ¨e~á6ž2+¯ šøð.µ¯$á¼€½ßÚù˜Ã4½uìiÍç\©o¤2\©sÎTº3•&üç„´%MKú7Ý…úÑ…ÊQ·|ZOþqåt0_æP];U½§§û)¼¶ 5ªÕêööv|5Ôˆcp$¾œˆcÿÕ¢···­­íÍ›7ƒFì ð“¾zõª³³“$ß¿*•J.—ã\ôÐß߯T*qJGG> ½¥¥e0C€i £k£h}â¯þn4â[ôü–-è sÃkÁ„Ñ9Z^¾|‰¿˜Ûàøáòo¬W‰mM¡á(ŸÊó¡~Þ ‘‡V-ο§Ôªå¼+•í†ƒk~Xc=˵:ãQ€¥ô¯K}C¹•rÞU©ÇoZåzs%¼€¨¥ÂïÌMg|ÓŒ¦æää|ô¥1úHjûž ø×öyt%Éö¤Ò\©tWZiﶯ§~\O]t£ +$Š³.Î¡Þ±ù¶}Ë7ýå[ï`kŸ<ŸÖ(ï`ÞPúh¹“' ³Ù¾w¹O¨Í® N7â"0œPM!_³Ù•V-taêë%;”Tg'Õß7Úé]]]b±˜Íf——:´nÑÜÜlgg'°’ë$ØÔc#Ã$€j€bì΀($Fjßît¯‡íÛu€ÕšgÏŸW\Z¢“äÇ <%e2™‰‰I~~¾®sað©¯g‰¥naaQZZ:ù ìÞ½›ÅbM~èñ ±±ÑÖÖ–Ëå>{öll<#"Ì’5Õé]F*Mtu¸ ðˆ rìÀ-35cåݸùq×Å`È•J{ÏEWªè]# +>´kZÞ& O–3„•õ“ÑB2`À€Á$¡¯Ÿlh¤^½"Ir’#+ +>Ÿ¢Á4½U¢¹~a<œ [-ERKñ¶a(åˆ,q˜o8Wà½Ìô—OŸòâÄ:ê÷ž$GÕiõGõ‡AvŸqJÚ’è0êL]vSį|E˜/s¨~öB“ÎÄ.ÿÖ­[¡¡¡©©©¯_¿ÖZZZZÒÒÒð•••ÕÖÖ¦5*•ÊK—.…„„dffªÕj¼æ]¾|9222==].—kǨTª«W¯†……%$$455¡e`` ¦¦&##ãðáÇŠÏÍÍÅÏ;4žžžû÷理¤$&&ž?¾¤¤¯@èçÀ±ìÛ·/99ùùó稄ººº . ·ƒÆÅÅ]»v­½½`ò˜N9~ü8úÁ1OŸ>T:Ä”ÐUqq1¶3Z#æ†c07ôƒ¹ˆ†Æz«Ýæù†ò™Lfbb’ŸŸ¯ë\|êèîî–H$(u¼m–––N~xWd±XEEE“zˆF&zò˜ïÆóY‰·YŽD)ýë¾³q—õŸý|1KßÊH¿öøÙ¯ú˜¦²,~ßheÐÝA¡Â+qU v ¯`iiaøZVª8ãuå?âÇê@vÕ?Œ´fTtP¡Q"‰ +]  )R¾=mWׯŀ–Î$ï—“—÷Nï=÷œž“s‡C„¾’ª“Ü)1"…gàë—ÿÉh†N8qŠ sÊS~ßÚÑìWnhnïÐw¤ÑÑÑfff†>|¨>(  |SSÓ}ûö©T*PVUU­_¿”îîî=–¢û422Æ¥T*aͽ{÷‚‚‚@¹xñbÝ°P\\ìââ²fÍš .ÔÔÔìرƒÉdòùüººº7>äååÁ4ºdÉ’£GÊår ƒƒƒpDzz:‡ÃñððH$%%%/^¼ÈÉÉÁqœÇã]½zV¦¦¦_Š…Áveø”J¥;wî¤Ñhnnn ¤–Y¥¤¤]ºtipppyy9(áˆäädØùò墢¢k×®iSX·óóóÛÚÚ&&&ô—ÅàÛ+ØÓ=ùÙ +`,+H•ÁUÉ 0Þ/¨2ˆQi ú4¼òôïþLSð–±x>/Ê1æ'7ñV– ÁyŠZÕý +Ë"“ÙA±Žß,Y )uÓ‚‚ýÅHaŸT'¤þmÁWØ¿È«‚‰ÓPïñž@aŒgäe"“dÁ@€ŒMh¾|»èÝ ‰%@öqÁëø¨„Jðﶳái¿ÂÆ‚yý‚©5%zø{» +EXÙXß«¿?íry1 4i²²RËK§»{xxX(B+~ðàÁ´6( iûøø¬]»v``À ÈÎZhB—!ÔŒP Lg+Ǧß*0ͬãÛ „ü´·µgÖÔÞ1ˆó3°…¤¤$sssÝ]O‰‰R&lmöšÊ`0€ãÍþÑŸ ¯žžžÀlrÏÌBXJ +ð€LmwªÖt§©Z“¦;!T…P=†"ä ! KFI©üËÆEa +ô)•¾â0'„®#Ô¤ÉvëSYÓÉm 5 7‹°‚÷°³ÓСP @ÂgBýZHòÙsÒÅEíäD>~òú§Y‚B¡ðöö† ÑÄœ¶Alù£«8ÉE˜ˆ¿%¬w?qaK$Á#~p ø“£±±Óüy¿ß@æ‹Æ¤„ê$wžð „­pßB«—äÅe¦sžýJNs{§^õêUvvöæÍ›a¤š;wî¶mÛ”J%èóóóY,–‘‘‘±±ñ¦M›z{{ÇÆÆ@Éçó1 ^×ÜÜÜÖÖkh4ZDDDWW×äädqqqxxøœ9s€€ÉårµZ}âÄ ‡èè覦¦¡¡¡sçέZµÊÍÍíüùó`SçFAAµµµ……Ezzúýû÷ÁlT©T`-66– ˆ´´´§OŸÂܺÿ~CÀÏŽŽŽþþþ¼¼<0x÷îݺº:ÇÏž= Ëètº«««nÂmllFêççÇápÖ­[wéÒ%P>~ü,/[¶ ]¡Px{{Ã…hbNóÙE$»‰“\ ¸ ÁY˜ˆk…õúKà +•à‘Û]b,Yàh<ï×c2_4*#TÜ)ñIy%ã’ç7*Où0ìW~ÛÔÞ¡×0[[[¹\n||¼L&ƒÁŠ ˆ––Ðñùü7¨%à377w÷îÝÇ÷÷÷wuu­¯¯‡½qqqÁÁÁ°†Çãåi¡[Ÿvvvr¹¼··ÖÀ–’’݉ zæààOø“uÊ®®®={öxyyÁ¡‡z3–Ââ´´4=tÛ;;;ÃÃÃÁò•+Wt ^¾|¹uëV ‹œœœææf‹E§Ó###Åb1X;räÈÐÐ,;s挟ŸßÞ½{Á·Õ«W§¦¦G---uww‡Å}}}0NÖ¸>Vø6heŽî  hý‚©5%zø{{0$ÒbßØØÜ«¯Ÿnµ¨‡‡É0±ÆÔ¢EdiÉt· …B[[Û7ø÷‚žž¸¿à&‚Nndg-4¡ËjF¨¦3„•cSo˜fÖƒñíB~H[{fMíƒ8?cŒÃílnn^VVfh_(üÖ¤+&&JÝÙÙ¹¶¶vöÎÉ`0*++gÿèÏAww·§§'›ÍnooŸ™…°”à™ÚîT­éNSµ&MwB¨ +¡z +DÈW{YX2JJå_6. +S O©ô‡9!t¡&MÖ°[ŸÊšNnc¨!¸Y¼²"x;;  + +(|9 ‘¡ú«Èçÿžå“ +…··7\ˆ&æ4‘]D²›8ÉE€ œ…‰øÿ–0MtŽøž»ükkc–‰Qûq™'•rUÜ)ñö«5¦©- ïƒà¤ŒHÕÊ£R¡yˆ0Ê\n[H¡S sy\C…>¯Äñê8?x>¸Z@AAAÄ¥‚bÄGb +F‚¢V@(Ð3ëÇ?ã-k©“ôËJsºÏ~|묕µ¿5«Mä³ðß¹ ~²7¶÷z*ïѪ›‹/¦Óé©©©>>> +FT*Umm-—ËÍŸ’’ëææ& +[[[wïÞ Ï---2™ ÆE"Ñ`Ž@ X»vmLL è.qpp¸|ù2|Ƹ¸8OOϲ²²™»ºº`2ˆœƒ¾}ûö x¾téRhhè¢E‹BBBž?ƒýýý0mÛ¶mÕÕÕ𷧧góæÍÖÖÖgÎœ™YõæÍ`ekk[^^þðáCGGGpDå±5Ûx[™ÏÂ玈YöÆ4÷MOä=ÚðN¥RÁ¯B¡ØµkøhiiæêêŠaXjj*ôV555AAA ù‹‹‹÷ìÙãîînbb’œœÜÕÕ FCCH;.—+ +‹ŠŠ²³³½½½a¿/^=zÔÊÊJ"‘€ܹs§½½ý¾}û>|ø‡ÂB8 tNaa!ô¡3d&&&€Ì³gÏ`2ð¡Ñh---ðêÕ«W{÷î0íÝ»wÀD"‡‘‘‘ééi©T +<==›šš@ïÙØØÀÚŒŒŒ¼¼<¥RyûömXmc@@À’%K€X,¾ví0ÚµµµÐWfeeëÒÒÒöövØÁÀÀ %%¥®®®¹¹&h#_0øþ#Ó7ÄÛuöÂ%áÊBŽ:aˆœùŸÌù<>‘Çš.âàçÃzÛäM3‡ï¶œbÊÐikø‰ Þö?NÔÿZD"#&Õ%4~5…jF¤:ɼªªJ«nê1W(§UÂŒ_Í ê¦ãîdqÈ,•$—=žËV°!‹† +Ø,g2DÖ„dèÏ¥ +ˆ"Æœ5+ÔÆŒNv†ô »“¡-0B¨!\m*½iÍàó`ˆ¯nÄVX[?Éæš-PIq€Å +o¸9×åPy<•Jíèè˜ëZÝ곟ŸTx¸¼tB §¨p)É,¡§I¡;CØ-LSûÖ‚½´o×ú ÚÓ¤mwuB~Þ˜œœ‘`aaÑØبk.z|ï5úRÝÉÉ ÔãÂÈÌÌ$“É þè?ƒ¾¾>Ì...r¹|~;D¥§["$VW§V¢:i*MDuBèB2 «FÈ_}-³$×ßhø¶~顃 +…d”#BWzBD kš-j3ÖŒ¡GÁͲ! +›ÓÙÛ«kWôÐC=¾ +œËU­]‹¿~½À' ùúúÂ…H²0 +àÛÅìpLr1ÂEN¼ÆW Þò˜ ŒØ_ÖÇÑ È?ø,7ý÷?ƒðʈ 1g,—õ)­ÁÆòÙã¹ìI1—„+ +‚i?Ø{=‘÷hÏÇææf.—˜••%‘HŽ;F£Ñ<<<êêêàopppZZÚýû÷KKK­¬¬LMMOŸ> ÀþýûÝÜÜ`ŽT*…剉‰ðPQQáàà`hhxêÔ©©©)ØÊÆÆæìÙ³p +Ìttt)xâĉ²²2P†ÎÎÎéééÝÝÝ_>õÕ«W‹‹‹/^¼xäÈ‘U«Všo===999B¡°¼¼T%ŒTVVÂAL&óøñã%%%ñññ ™:422ÙÚÚÂþ°!¸ã§¾¾ö„ù ¨¨¨  –ØÙÙÅÅÅÉd²sçÎy{{GFFž?þäÉ“^^^t yïÞ=>ŸÑŽŽ†U.\èììT*•Ú‹Åà{Ó7Ä‹Œº{A( CÔ óÕœù<>žÇRsð a=ÿð¢™ÛåS¶€.H[ÃOdð¶ÿa¢~±ˆDFLªKhüj +ÕŒHu’yUU•ö|ÔcPNO 3~%Ô%Òñ +Þdq¨æJ2F${ª€—ñÞ°bBC€LH†þ\ª€(bÌY³BmÌèdgHº;Ú#„JÂÕ¦Ò›Ö >ï†øêFl…µõ™lÎé21ŽÇÆ»QV©nιåñxT*µ££cÎGë~~~6lÖ œ¢Â¥$³|„ž"$…î a·0Mí[ Fôzо]GèGD€jO“¶ÝÕ ùyô@RR’……Ecc£®¹èñ½$È3HuPƒmmm O 33“L&ÏhËÿ#ôõõšU,—Ëç·CTz:豺:µÕISi"ªBw’aX5Bþêûh™%¹þÆœ/=æA…Â?2Ê¡+=!¢†5͵kÆÐ#„àfY…ÍéìíÕµ+z衇ßïÞã,6îáŽ÷÷/ðÉCCC¾¾¾p!’,Œøv1;\#“œÃEŒp‘/ñUS¿…§Ø_ÖÇÑѲÅþVæýÿ +Æ+#&Äœ±\Ö§<¶Ëg籦 +9xYø‡¼¿m¢Ú{=•k±ª×ÔÔlݺ5''§½½üíìì‰Dÿa¿êcšÊ²øy®lbl Õ©q·ê Ò/ :Π€(ë +m)-H*«Ñ­(®Q‡¸Á5š¸F';ÿ11#_Ž`PpÕL•>Tˆ_ ‘dåK)"  +}wÏ{UÆI´„Ö?Þ/¿4¯÷Þwιïþrî9çÏŸ¿páÂÆ:ÔØØX\\Œ=———×Õ«Wñ­#GŽ„††^¹råÞ½{ØìÝ»·®®®´´tåÊ•r¹<''×$%%-[¶ íà3ÎFFFzzznÙ²eÏž=jµWž¡&™«}¿üë9|ÔêŒYS•zwýNOmŒTó×÷ +õ\%á1Ò¨mŠàõóEb#uþ4£Ñ8q{ä0X¬Ö?Èû•³é rN3ôc0f’~;iY“•äl¸)1(PêŠ';…?Ù?T¬g’˜Ì¾*ÞP¹UŽòp÷b[à +@XÒ'Œøy;(вØÌÙ³oWVŽZ.˜£""k"),íÛ¯^½Òh4b±¸ªªjÔ®ŠŽŽ¼¤üüüž?î”O™Îç%Ô”cwÔUÊ^ûvbz=lßòVñ¼¹å×ü˜144„5€@ (**rv,>u DGG£Ô%IEE…ãÀòR(b-çx׬Z½½½ +Ö¥c³çÌf§2&;ÙKMLv(¨¤¨,ö>ruæŽï¾8ØAgo¯¿.Âà"@5sjTñ‡NÍÆ+ÜÀ›e)€H©ºß2-$884MhÂ)÷é…‹h©„}ùòåÍ›7oݺ…ídqqqVVVgg'®©¯¯Ç熆|¶Z­ø}úôéS§N={¶¬¬¬§§gÄ).@wyyy8{îܹ˗/766Z,´¹ý÷ïßÇõö ¶õX&a0iiih­Ý¸qÀñ®®. ¾´´c¦iúÎ;F£wqéÒ%ñ8<<\^^ŽñàzüÛÖÖ†!===###33§Ð)Ž×ÕÕá`BBBRRÒ™3gð[aY;qgazÑ'ó ]ìþõ +`èDð+˜Ä 32AiãK›†’ƒHz9ÞðýòEä¡V…³¦é¿\»s.F†R|ŸPG#‹Ú¦^?_$f^çó§á›¸=r†¬ÄˆGMÊ6Ì%Fõdè`B %1^g囂jQšQ‰Jú„š\Ðu&*Wy¸âÉNáMöƒyI·EöAU°”En•‡ÇHݽ„ظ¤–4Ç #~Þ +´l#6söìÛ••£–Kw7­V3Ö\]éìœÑ¾‰T£ÑˆÅbÌü£víTtttøúúúùùÙ.)ÇãÀñ”é|^"@ @9vg@]¥ìµo×(¦×Ãö-`0Ï›[^qÝ)Áx)ÇÆÆ +‚¢¢"gÇÂáSVPÑÑÑ(u‰D‚…™ãˆ +…%%%Žwý1ÀŠ×ÛÛ[¡P¼]« +qqnÉlv*c²“½ÔÄd'€R€JŠÊðgï#W7a~Aáøtööúë"<.T3§FèÔl¼BÁ]¼Y–ˆ”ªû--ÎÞ +8|$h–,ÚÛi¹ÜêîN6_G“Éäããƒ"_à µÝS+3Hà Í&é;ÉL¤ZƒT¿}Aà_<€ÿ{µ»ëóÕäç5$-Äš¬NQYSTCIÊ¡D•%Iù6‡’ƒpŠÆŧÂHîšî|–N}ñU`ÍÃæ‰ÛcWWWSSS__ßÈÈàà n¼··K¸žžžîîn«ÕJÓô³gÏž>}j±Xp Î>yòàø‹/°¶}±öövÛ´ÙÚÚŠlfÑ.êæÁƒ8ŽíçˆG4BØþí×ÔÔ444 Sük›EËø"6}hжr$òÿ²hkk±†‹M,lñ`œÍÍÍzDã¶AÐEKK‹Ùl¶€Ö06´öèÑ£‘˜q×à`mmm}}=š‰j"`êy)÷]âm‡—ÜH’‚z>®NAm¼¥–Öd•õ¸šœP‘ÿ„‘ì5õÿþÓÂ?ðQ«3fMUêÝõ;=u12”âû„:ÂðYÔ6Eðúù"1‘:šÑhœ¸=r†ibøÇw¼I“~‰™G~Ö‘L5EiEa$ÿFlQ!™4r\M§¯&ykL)Ê@‰+žìÞäå¡sô˜Ä¶È>¨ +–²È­òð©»—Û€TÂ’æ8aÄÏÛA–mÄfΞ}»²rÔréì¤UJÆÚg:+›ŒòÒÄ\ªÑhÄbqUUÕ¨];xGøúúúùùá}á”O™Îç%Ô”cwÔUÊ^ûvbz=lßòVñ¼¹å×ü˜wbll¬@ (**rv,>u`ÑR—H$Ž >>^(–””8ÞõÇàñãÇÞÞÞ +…ËÔ±Yˆˆ‹sHf³S“ì¥&&;”TRT€?{¹º ó +Çw_ì ³·×_áp š95ªøC§fã +îàͲ@¤TÝoiqöV8pàÀaðº1™È·ßÒ›cI«£“›ÉdòññÁ ‘/p ÐΉÚî©‹•‡¤a‰f“ô½4 eú ׹ôÉ!î®='Ô¤` 9JN“T5IUa‚%Ná 2MMÎhHAÔ“Ã_y»Çe]c³ƒ7n4ýîFs´ããëÝ‘°Å0î‘t÷¾ZôgíâÏ íðפ@O2V¿Œú`~Ë´’B~Ò’_ÖTþs™üsjuƬ©J½»~çÝf#E;Be#‹Ú¦^?_$f^çó§Æñ݇Ä0!ÛûöË6¦­ëŒãÏM⬛p±Cœ0ÛØ”.í(¶! 0â 6b‚ÚG‘ÃPgJ³Vµk»7i]4>ì­[7¡dJÍy±â̦¦±®e³&+.MSW”ë{ é’4°óáþôçʺ—{ÎsÎùëyîóVüìÏ/í èï×ÐI¹‚Î$¿üÿ¢YºSøøký;KK2qt²O±Y{«RÌrý!é²® %­=œ]Ý"åòP[ÀèÐ"­›Ðöz0¨¡±ä””!‡#l»Ü»èèXHO'5äÐP¸IÊçó!œNgØSÇÇ£T*U*ÕÔÔTLèèíIä°»\ƒ¨;ìª}»ŽQ½jß.… =mÐ~+&ÁGÌüü¼ÉdÂqÜjµÆ:†'¿ßo0ÕÅb±Ýn~‹…ÇãÙl¶èO½Ünw^^žL&›˜˜ˆl}[à,nRÙ)Tj¢²À †(¤ëQ—7péòÚ®‹!w¦§ uú,€s£Ô©aW–;µ ®b0 €*K>_]>29ë¥0000¬–¯ÚßyáBà"£þµïõz +*ˆœU\“ZgÎÑ™²µF‰Ö(&š%•IZo–•5ebèÅÝ[?þñ ?hg:K§ß-9S:ÛYúygé\g©R™¯‹VgÙì™ÒéÓ¥÷~Qâë© ßÓ“HâAVP1þÑ'ë±:’ ·eŒö€ë4Kt⌀»³¾üòZÑSð·ãò…ßWÏt•ÝC†9]B™¤³Œ2L¥¹ yÎP¦O—øû*~SùÁÑgÓ¸qÈ«¼ñꆌ†V¹î)eÅF¥UÝ"­;"Ó4eòlÊ꜄þþþXïà ¿~§ýÍ€uÛ~[1×[q÷çûfNï›=]B›¡ŒrE—:è“Ù3eTy·Ä×­¼O¸Þ,T¤mE'ÇfV¥6˜åúCÒe]AKZ{8»ºE"Ê塶€Ð E2Z7¡íõ`PC7bÉ))CGØvùâ‹€ÕxíD »“t»ÃMv>Ÿ @àt:Þ:¦x<¥R©R©¦¢þ©¤£·'‘Ãîp ¢î °kX¨öí:Fõz¨}»P‚ô´Aû­˜1óóó&“ Çq+rCHü~¿Á`@V‹Åv»=úX,g³Ù¢?õjp»Ýyyy2™lbb"²ômm\€³tvºIe§P©‰ÊN7v ®GI\ÞÀ¥Ëk».†Ü™ž.Ôé³ÎŒR§†]YîÔ‚ºŠÁ0ª,ù|uùÈäd¬—ÂÀÀÀ°Ö$õn“³:¼^¯B¡@‘ƒ³ŠkRëÌ9:S¶Ö(ÑÅD³$¤¤õf™æeqüŽ8|Ó³j×[5™ÇÕéÇËÓ¾_•qJ+:EÐWJíZô{Q'5uú èmBx@¾…PP¶ÿŸÿg]—y[·¿ÞèN¸CÒ¬0ª•úõ•< wŠõðâŒïóŠšzô¦—'¾¡!Ã+Ò†YtKû¢gD§ö‹¾W%ú®FøjYÚIð "óÛ{øìolD^ÝÆW7d4´Êu-RÂÚ¥”ª[¤uGdš¦L¾€MY“Ðßß¿æKcX%íoþ°{øP¹ûDeÆ«¥i'*„íû—ü@ kæ’D'+…(¼V!ü‘.ëHñîí ›ÑÉná°öV¥6˜åºCÒe]Lbµ‡³«[$¢\j P.êÐ"­›Ðöz0¨¡±ä””!‡#\«þ'Yù|>‚ Óé wêØâñx”J¥J¥šššŠI½=‰v€ `ug€]ÃBµo×1ª×CíÛE€" ¤§ ÚoÅ$øˆ™ŸŸ7™L8Ž[­ÖXÇÂð¤ã÷û ²ºX,¶ÛíÑÀb±ðx<›Íý©WƒÛíÎËË“Éd‘ ok㜥³ÓM*;…JMTv¸àÀ°ó…t=Jâò.]^Ûu1„àÎôt¡NŸp`”:5ìÊr§ÔU †PeÉà«ËG&'c½†UBõp?óu÷֯׫P(PAäà¬âšÔ:sŽÎ”­5J´F1Ñ,ùz‘¤D³´Á,¯|Yš°3> V¾ý¥üeÞÞLnAF’Jˆ+Ò·*Óq…R¾0Q!L¤¯¸*#©(‹«}zû!Åöâ],4uQ9ñÑ'ÿ^×eÞoÃê￲š×W2ì²ÿÙPk5þ23;WAÔ¡/°}B¶ñù2d˜¤‚ œ¶¾d’Eˆð½YÜ}bnÝž‡ vf&nÞ@}¼mÛ_^ŸÑÐ*×µH)7>ΨKªn‘Ö‘iš2ù6euNBÔ–Ì°BÚø3À6‰·bÆç“«¿¹£Xœ´W”„ÒÅ}o(¾J#‰È3ÅY¸V¾Í¤ÚU»mk•I؜ͅûÓÌ9úCÒe]AKZ{8»ºE"Ê塶 Ñ E2Z7¡íõ`PC7bÉ))CGd†‰8mù|>‚ ÓéŒtŒØàñx”J¥J¥šššŠI½=‰v€ `ug€]ÃBµo×1ª×CíÛETèBž6h¿“à#f~~Þd2á8nµZc ÓŽßï7 Èêb±Øn·G?‹ÅÂãñl6[¨BÙs$È/Ðu±¡.dðágw\7çøØøí±±ÑÛ®‘ñÛ#ãè:JË526:z{tl|Ìõ÷1טëÃ‡Ρ±qקS^jÌ¥‰¨)‚_™è÷=ÝIéAÜnw^^žL&›˜˜ˆláú¶6.ÀY:;ݤ²S¨ÔDe'€ ;PH×£$.oàÒåÈfgˆ€;ÓÓ…:}À9€QêÔ°+ËZPW1@•%€¯.™œŒõRV¬ÄT¹$_.îxÉÏ> VÊ` ^¯W¡P ‚ÈÁYÅ5©uæ)[k”hb¢YRÒ³Lý¢xsr\ÚVïì¿´>ÛÓ$ïl”u5Ê»å]Ywãƒ:(G: ²ÎÆì_sZ÷¼^ÂKÀà[/Týã_ë•ÕÝ̶7š'²BžÀV½ٹ¢ÊÚÄ ðŽFpáès}/R~è:H©ûàÆY¼ß˜ýÞ+Ï|pô¹c%i‰q›W·ñ·¨ë3Zåº)a íRJÕ-Òº#2MS&_À¦¬ÎIèïïõN0<Ìñ×°ñ`Ζ æ§ÝüÌ™ÿc¿ZcšÌÒðûmÂd\©±P\v*.hi :ã¥Ju®)»¨Ù,0SWC²aÃNd‚ŽšÕ¨(XJaEdÜU& +h2^pðB«k@G™ Kte%+WµPèíûξßWFY&)kG¨?úäé ==—÷œóðœóJÐ.tkBu¬BFxˆ”£¤xMHÅïçÖe/*HÍôyOv²÷;‰jÖÄÄcªÂab«ÖK’³‚ƒæ 0-ð( Ǹ½¤p‰Øtÿ[MM.¨…é722½½.ø ÉdR*•B¡°¹¹Ù…©ÝˆÎÎN¹\Þ××ç–òËJ§ò¼u-˜u™r–¾]¡Ø\Ó·³Ë…pV@£áº[‚w6›M£ÑðùüúúzwÇâÁÛ³ÙœžžŽR‰DƒaâÈÉÉ ÎÑ c§i›ÝnµaÉÖŒpR³Åúí•G*·ço+ܵ§¢¸¤\§ÓkKtÚ’’¢}QI)Wêèµ…-..+Ö•<¨Û¿OWTp¼êèÝï›-&“c('²Ùšf?XØ­øïDpFz´swttÈd2©TÚÖÖæÚÂS³³}ôœ;]cÝÉ™5±îp ‰¢NDp÷‘¯àÜù:×f÷ÀtªÔ9µ÷ØS£.Žuj^¢à6Þ,Kübãî¶W +éx0Q`B;îb¦»‹Ù¸|þ9ÓÕÉ ßÏ.¤;® §§',, /DßkEÊÌ´M¡*$)#8)C¤Ì vÂäLÉêM!Qk‚€ï0µçH¹œNŽ)É× äh"9º’T&’Êö«£d™Èþô·DòõJrRE.«»÷-ù@ ,¶åŸ'f½o!fÜÏz¦ø?Ñc4Í]¡\ä KÈE5ùFÉʃ•„ƒ ¯ÈJ%iX0§V‘úÕÍ_EHÞóF­N›19V¨Þ¢Ê+3œ©tX«Yâ´ RźÙ~B¶;7¥ººÚÝ;áÁÿúÙŸwzõm¦\ú„Ô¤²Â8ÊI‚uÎL*ô—<¡"WÖ>-‹‹šÍÇ“äíµ,1@½)Dõ™xLUp¯Z/IÎ +š'À´À  €pd<7âövRÂ%bÓýýo55½¶ZúÉÖm$0¨ÕäÁý×ín2™”J¥P(lnn~ݾîEgg§\.ïëësKùe¥SyÞ:€€FÌ΀ºL9Kß®Pl®‡éÛY€åÀB8+ ÑpÝ-Á» ›Í¦Ñhø|~}}½»cñàm‡ÙlNOOG©‹D"ƒÁ0ñää䂆†gš¶Ù¬f‹uÐb· g"4!vBŒ¦û­Nùû–Ì ¿[ù‡?Ú"W|¹,á‹HEnLBn¼â‹¤Ä-©+óRVnIHÈý8>'<æ²èì…m’GnŽOÊÓl¨,-»ý[ÆçFvDvPÆNÓV†¶ÒV»Õʘ­Äb#vzTD2™L*•¶µµ¹¶ðÔìl_=çN×XwrfM¬;\h¢¨SÜ}äã+8w¾ÎµÙ=pÝFc„*u@-À=öÔ¨‹cšƒ—(¸ €7˿ظ»ííî^ŠxàÁÏóêÃòW¬4ÏŸ?YO;¬ìíííîî~ñâMÓ#Û[­Ö7!ŽéÎèˆÑßßy–ðÀÀ6À?-Ë #‚}1ÕUƒ_Ö¼ÜÖã¡ãÒp¨‘íq]XßÕÕ…C½ÁÕB÷ “t™Ræ {— «É±$V!Úù +lyDAªU¤.íÞÎå¡~Þ¨Õi3&ǪÕ›CTYbe†S•rLΧm*ÖÍö²Ýy¼)ÕÕÕã·F\€!Y¹;'Ã/ÎdÌ"ß}BNªX÷¨àL Äa#¯œ„sÆq%¹˜Þ}(>Fäƒ';ÉÛ+"1`5kbâ1UÁQ¼j½$9+8hžÓ/€r‘ñp܈ÛÛIA +—ˆM÷÷¿ÕÔôºja:žx;Ô¯ýÉùó¯Û-N©T +…Âæææ×íë^àM!—ËÃÃÃñ‚pKùe¥SyÞ:€€FÌ΀ºL9Kß®Pl®‡éÛY€åÀB8+ ÑpÝ-Á» ¼÷5 ŸÏ¯¯¯ww,¼íÀ×Tzz:J]$ †‰ ''G 4448iƒoB;>dÍËÕn¥Oo+Ãà[óÑã®\«Ú_²wíƼ…ŠmÁ+ +%ë?ŒÑ-ŽÓFÄk#z…òPŠªB•z(^©[®8 ‹Ú%]úÕœ%_ÎÈ_–ø—5Ÿ–îÜýmMÍýû÷Mf|{"ñ~·Ú‚ORœËL,í£CêèèÉdR©´­­Íµ…§fgûè9wºÆº“3kbÝ à*@Eˆàî#_Á¹óu®Íî è6#T©sjF]ëÔ¼DÁm¼Y–øÅÆÝmow÷R<ðÀ~˜á[0ÿj§ÃäÌüÌ÷w&8Œžžž°°0¼y|¯)3Ó6…ª4’¤Œà¤ ‘23Ø “3ÅiC"×QÓÞ]$øeû(R“bÑÅ Œ±hcÍÅÑ,u1æâØd¿Gcº,žœHîÞ»Xþ¸ ª¥íñË]X,–êêêÜÜÜÚÚÚþþ~GåÓ§OkjjvïÞ½ÿþC‡ÕÕÕ={ö 뻺º***¶nݺoß>­V{æÌ™ÞÞ^¬ÇŽUUUyyy.\ iú†ÇéÓ§wíÚÕÔÔäshh#ÙÅcÛ±cGiiéÍ›7ÛÛÛñ‘‰;v¬µµÛ `{üúàÁǘOž<Á.Û·ooll|9¾qœ W´wï^{ኰþÎ;z½çÚ³gOaaá7ðùöFV÷Sô<ï—,]ùÁTx¸m>ù&Ù¦<ˆR‰±°Âø©Z¢µQ–âhú°‚W¶ä/ ýµ*˜1)V¤Þ¢úT¬Ìp¦Òa­f‰Ó6Hëfû ½Y©ó¦ Æi¸Ídýiû$Š:±NHN(éò³6ŠÓÀh9J-úL SGNªþS9ÛOvÏkYâûjÎÄÆTGñªõ’ä¬à yÿe¿Zƒš:ÓðwØEE‰k$E…špQBH-ˆr ¤å’’pQê0xiÀÁEÚA¼ýP+::»Yc¸TAEí"¨Ü¬²‰pÇ.Û +SÄÔÀHä&IÎÙ÷œ¨ÛÝj,©äáýÎ|ß9ïû}ï<ïó0À˜#T€AnŠ) 8^†¢(#fmkÛ.“MªUȉÙ÷C¾ÍÆ¿xi²Í622"‰˜L¦\.Ÿì^ãB¡Pøøøøúú%½ùysh–R„ºjw†°LŸ}kÄH¯öí2B+ ¦½]ë6£$o0`L'%%ÑéôÚÚZcçb»Žñññ¸¸8hu6› šíí'žžÎ`0šššô¬ÁqbB­yªÖ¨5Z–Pƒ’T?½ßß×ØÖZvúìù¿JÏ‹w•ù¯½àvá=ÞEº{õ|«,Ÿ«Î~µKZüBeá«îˆ>ý_Ôò‘ qÙÇß8-/µù ÈƵÈÁ·xYDiÌŸOîÌ(.*¬o¿ñ£òç'jÍ8NŒÁÉà¸ZCà¡y‰Øïëëóôôär¹ÝÝ݆“šj…P.ÅN-$;é£&’ºŽ Ã*ò£æÑ\+FuÍþn‚x¤RùEÇ8!TP'ykXÝënMõºLo„æó½½Æ.ÅL0áw§þtÃÄ¿ÜGì؉÷ôÏŸ½4”J%ǃH£›D±bS–D'¹ÅÎB1[”àüʳ#8±›?ø$~‘™õ w+‹ÞÃÄù¨1iðÈ‘à±£|*BžÿøŸ•?•„hóÄYÑàažÿ3‡¥A]Ý/ +Ÿ€Ú¶m‡ÃÙºu+Èò[8ÞÞÞ¾k×®uëÖŽÚ²eËÎ;u*®££#!!!,,,---##£´´ôáÇ𼧧'99ÙÃÃãСC*•ê$6<<œ™™¹aÆ«W¯NL€`"FGGËÊÊRRRâãã…öìÙïæÍ›‰dóæÍ©©©Pø©T:00ðàÁƒììì;v477ëÞ ?bccýýýsssA£êÂEŸ>}öB±PéöíÛ ûûû¡’’HÎ^»{÷nÈ|Щî×P>~Âñ w§£ö/'Έžæ†BÃŒB«Hø£¿n•£ü tQ°öX(Q"üþ€ßÒ÷iЫŒü5‹Ö|±$:‘#¿ºKŸGd"'6™¶vñ|¦%Ùê´ÙåååST  †¼‰8=c&†]ØÀ"Ή4ÇÂG%A/˜Hƒâ“g¬Ý" Ée‘Š#ÁNt¸Ù–æþá ×P$öÚ® ‚³j“Kd¢ó"WØs„ +"¨ÀM1eÇ«ÀPeĬmmÛe²Év ®"gkýý‰õëpùíÉŽ‘‘‘HÄd2årùd?m\( +___˜hFI`o~Þš¥¡.„ZÁ!¬Ógß1Òë}»ŒÐ +D‚io×z£Í(É ˆ0pétzmm­±s1á]ˆ®¸¸8hu6›­“”o ñ ˆF=k´81¡Æ'4Z ƒîÖªü¹ùf[qÑÉc³J?ß]’pÉ9¢†á_m±´z†Ëµ?që­]˜îÍÎ^·<>¾ñ}hTg`¨Ì7ð–‡Ç£ê}îk—r†[…íG=Wo=ž•uªò\c‡¼w`@5¡…“ÁÉA¯Uã¸æ%)2÷ôôär¹ÝÝ݆“šj…P.ÅN-$;é£&’ºŽ Ã*ò£æÑ\+FuÍþn‚x¤RùEÇ8!TP'ykXÝënMõºLo„æñ½½Æ.ÅL0áw'ð_þÒjáþìŸÉz¡T*y< DÚÜiQ¬Ø”%ÑI.B±³PÌ%8¿*`Ad‚sl27(~ñô3]h3þýUQ9.åJBÆŽòõÇÓ£!š\Q"ÊYÈ4·w ìêžVÇñgÇØÖÖ¦+ÓÎÎîÚµk%õ + +¼¼¼V®\yäÈý,+%%åþýû………VVV`8P\\ÜÐÐ0<< [***lllÌÌÌ‚‚‚ªªª´ä}ý÷?¾uë¼¼®®Ô ,<‘ÏÁPÀöææfXFPÒñîÝ»°¬¤¤D €Ñ«¬¬„”² ´]]][bb¢ƒƒƒ››Û©S§†††jjjÂÃý½½÷íÛwðàAGGÇ… –——ÃKÖ¯_n±¨¨HW×þýû-,,¦OŸ¾zõj™L¦û\~~¾»»;ŸÏ?~üø¥K—Nœ8%ô÷÷wttlÚ´ Š…4233á%íííÍËtÛ›À£ÇO\|–3Ð<ˆRáD^(Õ0ºžyyç@·à_ ˆâˆû X΢Á%2æÏäê¸æ‹%Ñ9¢Ï^Ù¨/z82‘»™¾vñ–%Ùê´ÙpnST  †A­Å?KÛgù³¿':g…ê¯Ã~ “Läð‰R‘2—ÌC€,hô[É\C’G}ý2VmröXäÊ[`ŽPB¸)¦,àxŠ¢Œ˜µ­m;ÅQ“‚Žsq\‹kÁàj'»}ddD$éÉåòÉî5. +P=Ì‹ÁÁA£$°7?oÍRŠPB­àÎÖ€é³oéõÀ¾]Fh"Á´·k½Ñf”ä LUPt:渱s1á]È­¸¸8hu6› òìí'žžÎ`0šššô¬ݪÑ 8G blèöwË+Îd¹G’œzrÕƳ˅ßÌãÕZ¸5c.hqæPgîPka_?Û±a»ÍñC™«×/¿ï¼}äÞ<¹Oæåõí‡ËZ\[è.mÓ8-4÷kn+ω?ÏËØŸý·¯Îœ/û®óŸªáqW_ƒºÔ’þ&§¯¯ÏÓÓ“Ëå‚f6¬ð˜ÔTй;µì¤šÈÀÐu„dU"äGÍ£¹VŒêš+†}ÝðH¥ò‹ŽqB¨¡NòÖ°º×ÞõºLo„æñ½Sb!M0ÁÞ2¨É#šÀ_LIÇq}[Þ,”J%ǃhI7ˆbŦ,‰NrŠ…b¶(ÁùU "8±ÉÜ øŶ3fMûWÖ'Dyä¸T0* ;Ê×ã¾:‡OœŽPåÙM³w ììA§•••Ïš5ËÎή¸¸j4š¼¼ccc3wéíí…9’”””’’R__/S´:ÅÅÅÇŽ;pà@DDÄáÇ;;;áyÿ¹sçRSS˜L¦““SEEì2½¬|ÿþýÌÌLxåååÕÜÜ aAooï+Vœ:u*//N§A-MMMÐ…®Zµ +6‚a¯_¿†¶ÐØØØÊÊŠÃá\»v 2; Âj‰‰‰mmmííí•••ðwrr²££cÇŽ°‹Å*((¨©©éêê’H$ótÃ/Ç®~« ÑÓ“N²R¶(ßOA˜iμŸ9Âì’–¬$°ï¯Õ}ઑ©.f¶ŸÉa°£>HÔÿq˜-çªÿ6kS =˜N è———ÏS¨‘Du0°«Ž³–ýÆ~[èÿÿ(‰\FJÙ#¹¾¾ 0H›°À#€&1†ùš?ì¶zX9’Àh!t!™"¤š˜·€Ï;„¡`…363»+Ì/ï|¥ +·åÄÄDPP(Ö:f:6:ßvÿê%+çLå°ÞdùNfãÊc* åâ²’€×y^¾Ë¿¥8zwôôÍ_±±±ÉÉÉIII8ŽïÛ·ïéÓ§ðüÊ•+t:}×®]!!!žžž%%%`ŠŠŠôõõMLL ¿‚'Ož<ÁÝÝÝ` `XZZZhh(øʶ¶¶™»ÀšgÏžß°aƒ¶¶6t†ƒƒƒMMMÞÞÞ ¦¬]»–J¥æää<þ¼  ÀÇÇ',, ÆC#Äd2+**äÝÚ ÀÜÀÀÀ˜˜ÿ>zô( ÀÔÔ4888::ÚÅÅ%""âñãÇ‘‘‘`¯^½ +ÃÀênÛ¶-<<<%%’LHH€4à øûûÃóŽŽ¡PEAÉ………ãããýýý»wï644dffVVVB!³2ùŒ~9F_ÃZmˆzO:ÉJEùÓ„™æÌû™#ÌÞ(-`É.±ûNy­¦.®’–èàaVá?:pcAQʈ:ýƒM®~¿ÍÚÔ‚Ó ýòòòy*PÕ ~+‰:xB_ «‰³–•Š ?®$Â,\ 2RÊ~‘‡ûÚ‚!@Ú-‹°x{nãC¬˜?ì± ŽfX9’Àh!t!™"¤š˜·€Ï;„¡`…363»+Ì™."‘´¬T¶i³4#C2<<×Ù d2ÔrÎ[«CCCnnn ö£££jIàxA¾A/¡N„ZÀ!¬Sfßê1¹×ûV…'’ƒL¥´ð[Õ’¼Ê€®n"‘ÈãñÔ‹_;¦¦¦ ýªÓh4>Ÿÿå€Æ•D"544(&–Ÿ¿ø×½­\¹Xôóñ ñ±e¡›ÿðñ¯f¸Õ0ê¾1oAËøÈ¢-¿–ó•‡Qj‘E-f~{E£Îò¦ÅÖMKlš,h­tæ½ïœ:\ܺV»÷Ø;?!3ï-¶æ-²¾aöÝïLïbwvnHÔùÔôò²K÷F_½”I$3ÌÏ; 8;;C?ÜÓÓ£Zá!‰‰Ðä)Ô©Y®NʤIjBH€Ð „<÷ÑbCRuÍMÕv×@ ypClºŽP‡üÔ°[=5EÜÆÐ}„àfYƒ ÎzØ߯îR4Ð@ >Òw÷âÀ€Œi/µ³•>{&U:ç³cddÄÕÕ.D=¢Öú`‹Ðx&7Ö–½“ÎÞI ÚEÿPÀ[N4-lŸ½÷Vë&ÚŽDgg|dW‚§rð7Y'³qå1•…‹rqYIàxž×FÊBÊŠ =ó¥êR©ôèÑ£úúú~~~û÷ïg2™æææçÏŸ‡WFFFÐP(”•+WN·REEEºººfffiiieee½½½"‘(##ƒJ¥²X¬={öÐétX077wæF}}}/^,..NMMÕÓÓsttlll¬©©Y·n˜P@P[[ËápNœ8Q^^ÞÒÒ‹oß¾ÝÖÖöòåËêÌëëëq‡·ƒƒƒðïÇ¡hœ`ü²eË’““…B!ì»uëVØåÖ­[“““GŽ±´´är¹°…©©©½½}UU¤°iÓ¦;wîLLL¤§§Ã‰C¥¥¥]]]ðY–.]º~ýúÓ§OÃ7éîîž•ÉgÄðË1†«Ÿ õžt’• +óYo²|'³}Äð}?[²7J YÀ–¾S^ÎÔE9i‰fþ£7†„dü7f³tú7–oça½„¬ Ó }8‚y*PÕ ’H¢~J×Å°ŠËe—ÙâB1”Ɉ0  2R4’‡û2À …zZ”ð‡¸Ùdxop¢é›öÚÁ_KC°Z]@H¦©&æ-àóa(XaÄŒÍÌî +se‹ôŨìû@ùj$#iMõ\§ƒ‚&“Éäööö¹ÎU/†††ÜÜÜÜÝÝGGGÕ’Àñ‚|‚^Bµ€;CX¦Ì¾Õcr¯ö­ +!O$™Jiá·ª%y•!‹ãââˆD"ÇSw.|혚šÚ²e PF£ñùü/ŸÀ¡C‡H$Òt7û!Lˆ¦þÑý òÚ¥²Ó™¿þéFttuxØÍ ÀZ¯s÷úûÕÔdz…ß°ÊÄ…€@ªXZ@Dr!€ +á"PÐ@(r ·l +R¬ëx륳¬Luv%ܬâ ".Z H¸%*BAt¶VEÀEÐ.h‘Iz¾×ÑÖâ@öG2ù^ÞË9ß{8ç9tWùŠ‚h­Ð³nD+ë]†ðY‡¨õˆÚ€(õ0¨g[g@m\ê$·a*)®×ÜÚW3;˜®7ÝÝ]˜UvNß.¥UÓ*Íœ/ÚùŸ ØzzÇ®’ùõ Õ==wUÿzŽkówtf__HqзÝÝÝ3s<4=t@>žXvš*5a$ 9Bm]BȯG¦fä«Òꙮà 082â-µC¨¡.ìÖ²ÞÎ:úBPYÜZÊáÞê™­RtÐan í뺨éï×Ðí5¶všû4X÷‘144äááÑÐd¡oˆÕ–TA2'¤ò„~õýRxñÔ$jDªÃº[™èL6è9æ§-¨r9£9þ/Åœ‘=žÏÕþyãHžËjáòU¬Û÷f+«¿xñ"&&d0›7o677×ÓÓÛ½{÷óçÏËËË×à‰DÐmÙØØœ?–‰D[[Û¼¼<¹\þôéÓþþþ-[¶,X°ÀÍÍÇã™™ú@ ¾ ÁœW8šÂr}„N"¤Å©ÑqÖ¯w€€BðFl‰…Ek[Û´B+œÏžiý9ØnFÆšŠŠéäm>ŸoiiÙÞÞ>ݵó‹(UžžžÏà Ìö,&æ"t!%tgˆPO˜ª}k `½´oUù –Ë­•-ÍóbüŒ1>>ž’’bbbR[[;߶èðSÇØØXdd$„:躖––¹7„(™L-7Åœþ/I/žþã—g~›)‰M¬„×ñ‚e~C¸@¹)LÉ P2˜ò%ÔF»z¢£ŒÈ”Ýꈮ Df‘ÙøÉêZd_­G“¯QØø4;ù+œÖËk•ÎJ¦‹‚å]è_í»^J÷¨]æ\câre™WÙš ³Q)ŇþPz愬é/ß?îÁù;èëësuuµ··ïîîž™ã¡éé òñì¤À²ÓT© #ÉjCèBÞx=25#_•VÏìtf€Á‘oA¨Bua·F}ðÖpÖP;BPYÜ2gs;{f«…ÔAt˜3h4XeÄ~Aä³XšUNÚþþ9¶ahhÈÃà +¢áb}_¾uÄçŒÐ:?ö#©|!/¤bœÁ¾SxBjh2-r›£W¸ 2Ñ÷ZFêÿÚO[¢ÊãŒæ°_Š9S&¨ÄuA€ö<ÿŸßxúX|²b5ëN÷ƒÙðÞ°\.çr¹+W®ÌÌÌ,))‰‰‰y]aMMMAA›ÍÞ¹sgooï¹sç\\\’““»ºº + MMM-,,²²²¤RiGGÇÙ³ga++«Ã‡EGGÛØØ°X¬ªª*h´x§yìØ1d0°§±±1(œ+W®H$8=**ª³³³¹¹9>>öljjÚ»w¯»»{llìž={˜L¦ƒƒCYYÙÄÄÄËÕj5Íáp`ÎÇaD¡PÞ#FÃà1..fÂŽŽŽNNNb±8''‡ÇãʉD×®]ƒ™~8Š‹‹ËËËÁ<ðlnmmMKK³¶¶;9ÞݸqcÒ©ÙÀàð ºçFgôà‹öÿUwô8 3¹œQñ„ï¹làËΫ\ŽæÔm)ÿîa§_A¬þÌüSnÄÊ­ÛÉt^<‡çû9ù§0›aC^¶–“H$‰äâ,9¨ÃÌðJ­ŽÏ<×Sm©-çMœÜðò¸ÿ˜øM2a¿Å×™D%ö×rµeÁOÄþ~vРE ½­"¶9@ïžÂK˜Ì]Ô·ríux©!IôðTFH"m9Öë#T„§FÇY#¼Þ +Á±%­mmÓ——£ÚMaØnK—j¥W§»Ò5”KKËöööi=¯X»v­§§ç3Ð óý…‹I†¹ÝFH Ý"Ô¦jßX¯í[B>ƒårkeKó¼?c@ALIIåP[[;߶èðSÇØØXdd$„:…Biii™{vìØA&“AN1§ñfË®ßmÏ¥}*¬\Ñ:®SpCnf|~;çËïÎ|sGüUGzê_9!ræů"”¿V¥]ÜÞ˜ÑæŸÖ°*Ròs–ÄÚ_é—ôwÑ¡»;²:?ÛÕ´qK•³ç·úÁõ;ÛŽ¸µgÿwI_tpë/Yùžwà–† +¥oûbOªDzA5ñê?Lêëë] +’µ»»{fŽ‡¦§ƒÈdz“ËNS¥&Œ$G¨ ¡KyãõÈÔŒ|UZ=³Óu˜GF¼¡vU Ô…ÝAöÁ[ÃYG@íAeqGÈœÍíìé™oWtÐA>†‡µšÕ«µÏñÉCCCPI‹® ±ŽÚî¸Id,¤'`ä ip +ioƒ(›>³ßšáä¹Ù-`Y}ŸÃÖ^ŒrUbŽ*ãØ$Åo1—«ÂÈVçr´'ƒ`þ³¯×ú˜ë­Xãw»ûálx§R©._¾-‰@&³‰$00dÛ… N:Ÿ }â­[·âââ@üÃ4˜úÚÆÄÄĬ¬¬ÒÒÒ£GB; äã³_íAM]iüÄΪUp °¨KM}´òy)Õi!$„ˆî +Ô«‚2êˆÚUDzfé2­APp­€ +ÈCa‘‡È&€€¢y?B…(DÙ{ö»7–²:CFŒä7_ÎÜœ{Î÷¸ç7ßù¾îîk×®Áb77·”””/^€¡ÑÑQÐk6nÜèíímnnÎçó¡‰ÈÍÍ!!! ¿ªª*,,L$577§¦¦²X¬Í›7ƒ'ÖÖÖŽŽŽ°º Ï ‚OÀÊÁƒ;::`Lƒ*p©¡¡Œž8qlÅÄÄ€•ððpx~‚? ¬û™ŸÚ]_iWå±½ùŸ‘Oó/?­Ìn/Êx÷}íîýUÞBÉž?7|{æÁßÏ·üíⓈ‹Í‡ãîŽühí›±i‡dÿ?ºã3;/dµŠÿ³/<ïK·l›/î^<óäFšôò•nÑÅö#ÑbîÞ\vÃá’-7ÒË/ð¼ï£åŠo¸ÔÙÙ …7“É|ôèÑÌç…†ê t†ÊNedvš*5‘BCw#”…Ðê>¢ëèæÝœö…¢ÆŒÑ?<¼Áƒ·¡L„êÉS£ÝúÕS£ä6 I‚›Å¡%Ž¬:©TÕ¡¨¡†j¼;ÈG®¶°Ä==ïÙòÀÀ€-\ˆ‹ès¿òþ,àˆ¥Oˆ)OÈäï2æ =v½!0Éy +™~¡æÇ,×{†~Ä7Ðy–ä‚‹øâ|Ι”³Î8žMŽgÙ¿H<‹œIpÆçñe¾%ý°Þ^­ú½SCK;åñn£ƒðÞ½{999“+ÆÆÆ‚‚‚ÚÚÚæææÒÒÒ»wïÂ2…BQUU•››ÛÚÚ:88xóæͨ¨¨èè踸¸«W¯‚†ŒŒŒ¦¦¦ %°7++ ¶@¨œéîî†]° FxU\\ÜÕÕ%•J¡•())µPªÕÔÔ@—!—ËóòòNŸ>˜˜˜’’úÛÛÛÇÇÇ';Û ÁÃááaø #<Ã.˜‡¿X)++kkk«¯¯siuu5¨‚”‚€0•Ê1Uw¥¥¥ÅÄÄ$$$$''ƒ*h3Á(Ä•šš +ÁFFFÂXQQñ†'ïƒÃr3÷õ:¨ë;\èƒÿÅ!ùÀÂçدióš-ί‰”ÀÆÉÎ8Óç{ß?µÑd±puñ²…îþFG-}ö˜òv™P\5ò dÒI`þ.¦gÓo¿¹øZ¶ïçt½ù°]KK+33s–Tcfÿ/ŠÐœ3''`.ôÂéäÑŸg“#E "„Eœ…B±…L#®ø²;¾íÓŽÍ2¤ÃÉ.И·Ù}e@¸¥ß¾5|2‰1!•yì|;Á<І)Øk²ã°…×n“OÍèÐÌC(!L ¡–Yø¼½4Ä¥1=}ýj±xºl! +,ð!iÉïp~Át·CÂçp8 C"‘Lw¯jÛÖÖÖÎÎN&“©ÄãñqZš"„*‡î ÑŠiSµo%4²×ƒö-!D‚±byye…JœŸ1àÊ +…ÚÚÚp›«Ú5>t@Mèëë T700¨¬¬|ÿ8p@WWªÍ)Öd¦_ Ø´å2ïO%vÛS盥3ì;RS5Ôs¿µµ¬µ©¼¯¶²3-½):Vz=o¤­ýÕO#ãÏÆC}ÿ®ÿp%ûPTATR[i¬±µ³º¦¿öþ@a©äÐ_òœ·U‹ª¯}ÞÛ9ÐØ4X÷àyC‹,ë¶ØÿÈõÕìÔ›"̾ØÛ~qløùÈ.AjeeÅd2'—ëÓ/4T¡3Tv*#³ÓT©‰ºƒ¡,„6P÷]G7ïfþ̬«1ôoðà­F(¡zòÔh·~õÔ(¹MC„àf±Fh‰#«N*Uu(j¨¡†ïüä#˜Ë%,ÖBÝOÎïÏúÀÀ€ \ˆ‹ès¿òZõõQË­ûÌ<ƒL=ƒMøAÆü]oI“däd²mÿšÀo,­¼V¢Emeê^pÅÅœê†q¢+NtÁçÉ‘üû³œg“c’ NrÅi\|Ûw j2XÏj|Ô>ñ1Þ! +EGGG[[t‚“£££===ƒƒƒr¹‡V –Á<Ì´··ŒŒÑßß____SSSWW×ÔÔÔÚÚ +¯`ýd%R©ô@Ë œïëë{üøñÓ§O»ºº@3¬»ðÜÝÝý’<€f‚:`xxðàAKK ¸ó`4LvöB¥¤Ü«Ô ¬T:†à­œDÏ0B¼ÊJÀ3,{öì™ò/,€ˆjkk›››Á¥Ee,¯X,®®®‡‰Y£ lX¾v³‡u~g…oùâÝ)n°I¶¼-$g\p² ÎâáoÉq{Ãß.®.þd{€Ñ×G×ùì5ãïbRÌ4â ÿO¨yR<ƒ˜ÛÂÖYˬÒÖ›OÖ~tìììY +P™ˆþW9srv|‚oyáL>Nr&>I™=\H’LH•F’]ñ..ñéc± èp² 4æmâ¬ô?bá¶2˜g0“ÊWoç1`ùÖ7Ĉá¹Ût™)Ú‚y]@4Œ¡–Yø¼½4Ä¥1=}ýj±xÚtQ(€Ô¶t)Q0í>R+‡Ãa0‰dÚ¦U +Hබ¶vvv2™L%ÓÒÔ!Ô€P9tgˆVL›ª}+¡‘½´o¹9 ŒËË++TâüŒ·¼P(ÔÖÖ.**Rµ/j|èûûåÕDvÆño ¬PˆM *A¢Õºò0¼Z °n×Xϱ¶5ê©š#¬"º®ö¬këºÝVAÜöTݺõ ""²(dyDÀytA"j HÀ "Ѭl'½3œµ]º…\âé™ßùŸ9w’¹s¿;÷›ÿÏ®T*Qªóù|N7òh4ƒ¡Õj¸&çôyÕü%çJæ­<îrŽyûwÏÛïuX«*.U~‘Óz£Ô’›Û”q´åRž½­­¯—ýá“–â•Eà/”«žÞî³ÃÑË8²¥lé"vØRNx<·Ÿ"(“ÖÌ_ì®`Gij§Ï¥㎺3™Ìüüü—>5Ša²}Ï~7p_óº×¢ŠT©V#¼þŽøF*i iâBžJ*¶KÊRDÛÅu{Ãþ¶fÖ,Öx´²£Üƒ_ŸóF`T<±ô(Hã®EúØ¿¤à…Ë‘Ëq‘ã…ÆrƳ<°Ñ's ᔾ7¡ÇkÁ ž,Ä&²XUzýPSöOH nÅôsä_jw›Í&—Ë9ŽÁ`j_×b±X$‰T*íêêrI»2ÐÆy¨(CÕ`EØ@å[1FÔz¨|Ë[¦+wIðNÓÛÛ«R©ètzaa¡«c¡xÕ±ÛíJ¥¥:ŸÏ×ét#€F£a0Z­v€kòÎ^Ø ‹¿(W—ÏVž€ ÓA ïœ8ïøÇW¦¶†¬O>:½+µâÀ†öW%%ÞÝÝ–“ÿÜò ×fk.-ù|Çî‹?ßTòAúÝŠšŽ†æª#Çr7¥Öýù¬½¾Õ|¦¤`Ýžâ݇Úko›ô_?_~&»³Åèè}Ô~)÷úÊCå͉Y% {'-¹«ûQ¿Ìf³P(F£Ñ¹‰'ªÕ¾¤;•î45 @ #÷#_Æåü+ÎNáÝݲ„Ä €,€:bÕ°«ƒ®©kT E„>écãjM&WO…‚‚‚b˜àø‹¦õ.‘:fÎÀ[ZÈF.«Õ*‹Ñ†èæŽ1&žB ¦ð½¹|o:=0„Æ ñæM§¡F`<Ò¸Átâß`Zà :í nÓëµås™êHÎ/æ³Taþk#ü×}—ÖGpTaè2öÚ0Ž:’Ãã½HqÇÔ2rs¦p=¶žËÐXlÀ˜äÈI›Âü6†ù%E³¶.ôÿOm‰a«#'o g&GON‰š´`š×hâãÍÝ&ø +œéâ‰4eæø©³hß¡Ò¦ÆóB¼žœà±´ înnDwkrAAƒxGðM£Œ=û€›Ç4·õ²ÉëÂ8«$¬_ÉØkÃû¬ƒÝÏIÖÈüWÏ÷W…±·Äp—Ï›ä7~†Öׇ960Ĺ'È‘wñB+û–‰M'ŒŽŒ2„Κêýš×PbŒ8 ˜þ-†¦‰¹lt `ñd!6‘ŪÒ뇜+OžàK–wc0¹¹Cím³Ùär9‡Ã1 CÚ¥X,‰D"•J»ºº\À®Ì#´q^‡êÊPuX6PùVŒµ*ßò€Ãã–éÊ]¼ÓôööªT*:^XXèêX(^uìv»R©D©Îçóu:ÝÈ Ñh †V«àšKYÖG*rãß®œ½â3˜v*0ºùØy‡ãëûwó>9tjsRÑƤŠµë‹—•¬\}ëãÌžú[ÏÚÛkÏ>óÖŠ³ {ßQÓÐUw«ü½ç« ûŽÚªïµäVæ¿ýÛÂ=émÕÆf]ýµô“%Ç>³ÜùÒÑû ½ G÷Ëyá Æ­ŽˆÜš¶ÕÚý¨_Hf³Y( +£ÑèÜÄÕj_€ ÒJ wÈšw(ÐcX6€ŒÜ||—ó¯87:…tvw˃²êˆUî¶j}º†A5ÚYDÌظZ“ÉÕS¡   xà8ql3;3ðiSq£ã#8¾Õj‹Åä;FÊ(ÞhmmÁIS¸ ÛS›<^á’4{A@·¸¸ØÕO‚¢?ûôðxm ;LÃÆ`ðW @§ô½ =ÞÀâÉÅšÈbUéõCΕŽ<6Ž¸›7Í‘=ÔÞ6›M.—s8ƒÁ0ä¡]ŠÅb‘H$R©´««Ë%ìÊ_§Ó|†Á`hµÚ®¹“½:vqÎO7æ­8A§&Šjö~þÀúõWOïWêþò©nó¶Ï-Íž1ûÒ‰aSÊãâÒ§÷šõJÿT"Îú‘¸ñ7>klzr³¶J–'Š¯Iþ°§ªùîÕ›Ù;åíËìøÒÔÕØþ÷œÒÆüâÇ÷šì­ MGÓ‹vQ¶ôãÈŸ¬ŠÞ¼cKçã‡ýB2›ÍB¡P Fç&ž¨VûdîTJ¸Ó@ÖD¸@ €òdä~äã˸œŹÑ)œ ³»[–PG¬vu°UëÓ5 ªÐÎ"`ÆÆÕšL®ž +Å°Àÿ½ýð!ž–æHÚ‚·¶§8þ_:½|¬V«X,F¢»;æë7–=Õ›0ÎíÅôGÊ“ù¢„þÉ~¹5•qü;ø4Tåa”ÕB%(1ò0„$„ðªAAT|µ +_»¨CÕêtpvgkZ×Z]¥jw±¼ÂÓǪ¸QÈf* ,H»®QËjä¡DÙFîé¹AWA‡X‰ãÞßü¹¹÷Ü{îùÎ=gþi3ÞÅÆq2ËeêÏXÖ¤¯#kD¼7gß1ÚÓ!ÜÓ!júø¨éœ~9Ý!“ÁcÏóÿkþø §‘$K"åMÍ/}†wÇ8°_$‹$Òˆhò'K!AˆøeÍŠÂÐà©P,I#¤áá‘ä “ˆ%!!"¡Pb’°ZB¢àQˆD"‘ÊdáäÇß?@¡H¾zõK †¾ìܵ¬F¸µZæë0ßgB8Ï!Ò“8Çä'½-e'ÒÓ!’çãÅYàγ·±NŒÈÊ +ÙqFOœ2Ö‰˜˜3íWŽ´qqœHŸ8þèc{|ŒE¼Ž˜‡Ë>šîn (FV€zw…ê‘ÅКg*Ä8ÎÎUÕÕƒÝ*Ô=Þ½›òöÁ‹SõõƒíÞÕÕ%—˹\nMMÍ`ûZNÔÑÑa‘ÒÒ³ah¨$Õ R4PùV†èZ”og„@Ãu\©¹d‘àÍÆh4* +[[[•JeéXÞv CBBÙêîîîfèHMMe³Ùjµz€g +N.‘IO.ÝPËO(¶rSŽœV*[}ýháƒ+×q»ßim/U•–V,Êóö»”¼®½¼ô‡» Ù?!]J÷úC£¶³®úòÆígçÄÔíø‹¾öÆõòzåG+Üu ½ñ~ˆõÿÑÝ«¾þ°êÊí,å¿–%—ø„ù„íD- ýà·›[ïßëRKK ŸÏçñxZ­Ö¼‰Ç¦¤Ø2¹SíNYíNåÕLùÈΞ}ö\‰y£3˜A«^/˜ëPp…^5táU«Ö£‹jHfñ˜ ¯on¶ôT^ êÙ‘>1pe%UZFéõ/Ü +ÚÛÛI¡Aâ(k«i~lÁ\îì0—Y!Î|± _âÂ;ñÅÎ|‰Iâçš%r ›(˜;‰ëÆáÈÏ‘Uä]žêŸ»Úëx’WŽÂ7GáÓ¿V{g'úd&z­÷­øͬÝáãÇ"ðG_»irujè&Î`º»»ëêê23³23³ +‹óó‹”Ê|¥2/W©4)ïEåä’–‚\e~n^2¿0¿°¸¨ðDaaA~~!7W™““û£r{+ç)¦[ä]yù„¬¬¬#GŽž>}ª­­ÕÒ_‚¡/[>Ü`X’7«l“ï‰õ~ÇWye%yg¯îÇF²“}È­¬D¯âu¾šmþ‡—yLåŒ&&6bä07o‡àh×€0®_ˆÓ¬ï"&&q~.±ólÒ.râ‹\øRAôd_‘“ͺ»5 "„‘ Þiazšhè†{éò y¦BŒãì\U]=Ø­BãšZ|8Ÿ8Iµw ¶{WW—\.çr¹555ƒíkYt:É×AAAƒžõÿ…´ôÃãlX*Iu¨ T¾•!ºÖ#åÛ!Ðp]'Wj.Y$x³1 +…ÂÖÖV¥RY:†·ƒÁ@¶º»»»F£úRSSÙl¶Z­à™Â“KeÒÓË6ÔÍ^rÊêçù0µ„7ïòÆ?ßÌ9ßõÍ-|ÿᣦ[×2³NÇ-Ê™ÉW'%µV¨¾ï¸ùoå‘S¡¥¡²¦Oni;j.oýÝIÜ×;?Ñ×Ýü¶âë¬ÿªÜµ¿­ñ6þw^ùNw±V—WrmÇÊçÄ”¸ð|¹B,MÙº¹íÞ½>!µ´´ðù|§ÕjÍ›xlJŠ=À!“;UÐî45ÑîPPP1€À”ììÙgÏ•˜7:ƒ´êõ‚ù±nEWèUC^µj=ºˆ €d€ ²ðúæfKO…áu¡0Õmú¥èóç­/\¼qÚÛÛHB´±º`Jâv¿¥›f,XË‹_Ç‹_ë±€h 9zöÒ:úî²Þ‰;fúÇO1Ãæ»Ûu~/,™¿ÄŸGãŒ(üyþ¬?‘öŒh|<çÍ#Ï·îå϶ƒ)ü°mÓÐÍ™Ár áÖ~5õV…ó“æ …[ÏBè‹U“°*ÄÒ^A+ò©^vÚFbpÙ¢ÖÃ2wR€5k„Pîºj»ïÒM^´w[Ë#ÇkLzæ`ñ=þ¶Þsñûž+·ùCãzÚB£e À@‹ê-ü\ÈÔ‚¨§'oJ=cá^C÷Û«^ÒOûcã› ¾º_Šê;€S!ÆqrªªúÊŒ C½Fªìêê’Ëå\.·¦¦Æ¬X NÔÑÑa‘ÒÒ³ah¨$Õ R4PùV†èZ”og„@Ãu\©¹d‘àÍÆh4* +[[[•JeéXÞv CBBÙêîîîfèHMMe³Ùjµz€gŠO®’ÉJ–¾ß0{ÉY+·“VnÝbÊæn:ŸøQÅ3š*êž<0è¯Þ(ßš–ã+ørá’»ês;›ërÒóCC.¥Íû>jºñ ñÛÚ={Ï,WÔîKïl¸q­´*{çåŸöß¾zóþµÛÕòT+¶—‰–W¸‡ªÇx–YÏ8í"Øë+]!”lÚ²¹í~_kiiáóù<O«Õš7ñØ”òÀ!“;UÐî45ÑîPPP1€À”ììÙgÏ•˜7:ƒ´êõ‚ù±nEWèUC^µj=ºˆ €d€ ²ðúæfKO…á5¡ËŠê¦ÏŒFÜ؈ÿ{ Sݦ̬vÌ¢­­- €$D–íÈи)+·Í\’2#.™g’G¬bšI½”ì·†—ð×Êm¾ §‚Í°¨÷Ƶ‹Â_.ÂÑøhþG$>Fö'r×ô@¶Ÿ_ر/0ÈMñ“6h›ž}†ŸO(œ´åcB_¬rÅçã±rí!=:NûF'9i²‘¹Xµ¨5=\ö ;bbÖcFåï­Üæ“2ØWÅ*x}L1-nÇ‚5¼Ex¿Úê·Ž7ÉÓŽ”£2a„0õLô%‚G€îÜD!djÿûÕÛÔy…¿“R +&LÌ£êj’Á°Öµ[ ö(Áv Sœ`Zˆ¥¶KBp[ +Mé Bš6ÚUëT´A;ò‚2Vie´<št,<,’8bIV„Ë#ˆ‹1áá؉ã{wÿë8JCã2‚Äýôéú¿çžÿ<îuŽSc B:ÕBòÎ+ï\×ÍZ—Í.Ëá-a†1ûh5‚\€ð²]:(äúæ0:y‹/vÛœ<áG‚åk Ð)Pb¦Ô0w# +GÒå¨3Ínïä6aßìšQ°ß :òÞH– ›@™â 6|ÔcìåDZ>Ñ|ž;p€úf°×]ÃëõF…Báp8îàév"Žãº+p÷°o¹\.F£Õj=Ͻòy–­Y=tÈà" ¨¦3Ð^êi|ÛGlÖÆ·íÀd0(bcªìÕ}|Ä‹E&“UTTôu,îwøý~³Ù,|êJ¥Òn·ßû¬V«\.·Ùl=è”ýû³y†´]Y 볶G)· z²ö‹ã•å;_þóÖÅ+¶Ççö¶n>ð»÷6%¤Tdd]ÚûŸö+g¬_³9%e÷¤gμ÷7¿ókïù3õ­«øíÒºuÿºVwòë]U›ÿ°¼lEáùç9{]ùüwÖ« ¥Ñ¿Ø÷èϪ¢Æî(î‹‘š•¦¾”’ºhÉ›î–[+XSSSbbb||¼ÓéŒ,qS~~4P"V§JVz*M¬:ûCDe@²Ø†EËw”ïŒÌ»„pñêÕ䙦q@)PÇNvßéÔBÜC8 e0Êv¬±±¯S‘ A‚„®ûÏ… œio6sÍ8þŽ<ïv»“’’„†8xhÿÉÆsþx“Ež­2æ~7³UéÙj“%.ëõ šYc0ô‘¤‘CÎ~ ã·d¶|Óü…:Æ"½¿ÈÐVdhïF¡ ÀžפñÓÝ™¨I±O¥Ö8Ýý­H áB0Èç-ùÓ¢-/<Áo6ÿþ¬_,Û +õíEúö›+ è¹’4~SFóªi©ã† ElÀ ~ڣͯO˜õr\zŽX¬rÔŒ·T°uº(ÏÌSÏ~-!=W©ˆ— Ûû¼H.Laí#| šüÔzJà‰]Î+#ñá]á[‘DaI”À°å®íâ.¢.­Àn¢e@° ´( ,Vê2.êßì=sØì7DÅ ß°¼¨­38@ ·… @|·”ÃÙQ—Ùî·]ÙuS'B,‘NeŠj½ è {©óm„¶œ2BƒØˆáµôús¹vã ~à ~ÊþØÑÞîöz½F£Q¡P8Ž^»þÁø®&÷}šŸËåÒh4Z­ÖãñÜ͘¾7–­Y=tÈà" ¨¦3p²=ŒoûˆÍzÂø¶˜ ElL•½ºO‚@Àb±Èd²ŠŠŠ¾ŽEÂý¿ßo6›…O]©TÚíö{€Õj•Ëå6›­ÏJ7YtÓËM¯yú¹RRn›zâÝ5×kŽŸÜQ³÷õŸï¹|æ¢ïð)Çko—Å$ݲ«Òçv\÷ᆉ);ÔÚ¯¾ÕR}Èwù›óGjêËJÏUÖ\?ê<¹aëÎ%oÙŠ‹]Ç¿j,ß¿]7÷Ÿˆ)ÃF× ¶šâ¶É’þªšò‚fê›K»¯´ÜRSSSbbb||¼ÓéŒ,qS~~4P"V§JVz*M¬:ûCDe@r¨EËw”ïŒÌ»„pñêÕ䙦q@)PÇNvßéÔBÜC8 e0Êv¬±±¯S‘ A‚„„îSwê$§RñãÇó'N|Ÿéà.Âív'%% qˆì‘)1Y¯'˜æÅ¥g«Œ9jc®êöÌfÔæ,LHž=Ñ~=¸ñ}¿9³­ÈкJ×Z¨o-Ðû +¾Mo¾µÐÐQ’Æ’îY©Iyì¡ØŸ§Ö9Ï|ë­H áAAG˵¾3€hË‹ +~£±cí³¾Uz_Ám +Hˆ¬Âè‚«§ó3.è¦ ÔO;c´yá„Y–¸ô±X u,ç6EŒ•¸\UfžêùùñÆ\eìøaÂXÐøÀ‹äÂä‰.‚^†i@-â‰= +‚‚„b:L´‡nÅ]œ(tÄ…lúAa‚°àuÂ6)´·´x0ƒ¬ ÷Ä&—¹ 3rÅ!J\0³þf!úE@ø§MX šzh €ªA/-51‰¶ßLˆ„­[ABl;ÂQ Ž‚¢üº¸%³(=0I(<öè’˜‚ðê6…,‹î„ë) ƒØ 6T.¯©­íõçârqÓ§3S#Fpåå½ÝíõzF£B¡p8½v}Ñûvçr¹4V«õx<ÿ‡€îŒekV2¸¨ª„é ´—zßö›õ„ñm;0 ŠØ˜*{uŸ1€Åb‘Éd}‹„û~¿ßl6 ŸºR©´Ûí÷>«Õ*—Ëm6[:›·|:oÚô¦WOÍÚL?-UN=þÁGs—.Ÿn>¶×ÞPù¥çd“g÷—5Y‹>L[–wi[åõ³jKVüô¯Êb½h=ÿÅ>¯»ùò¹gÕ\ªo¸v°Á¹zýž7–Öºÿ[w~Û>›n^YÔØrŒªBl ~R¿U®]®žš5qê¢%V÷•–[BjjjJLLŒw:‘%nÊÏþ”ˆÕ©’U§žJ«NÀ~àQX{ŽlX´|GùÎȼKˆ¯^Mži” +WØ©Ñî;Zˆ{‡¡³LFÒŽ56öu*$HpWÀ±áÀéä~ü÷øãü‘£|$ãBäp»ÝIIIBC"{xJFìì 3-qÆ\UOÌQ³Õ™yqsæ'¤šÇö50îGýO®˜ÊoÉôé[ t¾Bƒ¯Pï+ԉכè/Ðûy.Plà7¤_)JIUô}2µÞ)Uu \‚Á뢭¹cøékÓü·) Ýhðê;J ü'éîbƒN%ŠØÀÁý’­ÈZ0Þ4OÍÊTL\dÌU?ÿjBfžzÌ„aÂö‡µ/’ÉÖDU€ +ˆ"šHTºtÕ õ O ÿc¿Z€¢ºÎð÷ùˆãƒd›±u4#,¯j)‰šÀ¢£¬€51*ˆŠ ñQk´f’IÚ`k^š6©Fƒ/žŠ€_ jPÁ¦ ˜ + +º.`d\\]öÞž{ÑÔ˜„ 4U§³ßü³sîyýßÎÙÿœ(R>±_H2¼^"J€½ànUtTGÈDa­ ¨v²Ó€™w]·‚ €8K€SÀçâ…K©px†H3À¢YéL×âQ½‹¬,„•¨&v(îø!§ŽzUyB³¬Q©þ†\~žW8ð¯d¶ˆ¨‰‹@1°ØLlêî­‰E‚|`; ‚ú»à \ ¡¸Û +ŠÕ;©,o€â…_¬ÖhG0÷Þbv­j= W…˜£³seUUËåKR@€M°j.v<î°X,‘‘‘â¨kµZƒÁðð $''k4šŠŠŠïê ²LvnÎÂðs#_?í7'»ÛN§ÑÇ$]Î-¹^]{ýdMëáÓW²ž]ñ‡" B‡q¿ù_¼³½!«´<ùwÛ=¹ç'^‡Æ‡ŸZ•Ò\Z~³¾æFÝÙ¶SU—?Î>—ôÆñ¹ ªß\{± çBú‡•Qe}µ~#KéVä06ÛcÊ»á~ÁIËW¶Þ¸þ«¦¦&___ooïúúúÞ‘˜(îÍL5;S²Sw©IÉNw+>Uïè@õ>ê¬)*.éw;zS{{`x„»ú†©UvŸ|ß®uYqFyÕ`<0LRÓh—vØaÇÿ! 54JÞ>677¹¦önÕÂ4~~~âBtpê?qÆÈ–ø„Ç{éc<î3ϯzè£=……½ìùÂ"Ÿç£F >Èmðu&ÉÙa– ]Gjð­4Ý·™¨îH ¶¤ÝJ º“¡“?žÞž91ÈuÀÈ1ϯoxˆAÛa‡îØlÑIëú²0n”¼+Ôú~È­Ô ‘.:ÒïZWQí?)¥SM#-™º O!0pH¿ Ó\g'ˆ$æí!¬› & +3b=½Ð;,ÖsÔýÁ÷™I)P5ì%µ€;8\ 6f"| L^ËT‹"VGÀbˆ¯¢Ï`°|H/'`%°X +¼ ~ÊŠásP &6·Ai"þHø€O‘a€ð»,¬BÚo VÄ2"•8Ö€é@"¹Žü“Òˆ9ÄV°þSŸGÆ‘ÑÀ_À¡x|M?ž(“(k+©…:@ŽÎšÊªª—«W¤)Slb›ä¼üžŽ6›Íz½ÞÅÅ¥ººú›­6ÉÖië¼#Ù,¶Û6ñùU“¸šoÛn7›+Ê˲?Ú^´cWÅÞüÃÙe9y¥yyóóJ +r‹…íË=¸?¿t_Á¡¼¼C¹¹‡ròöíÙ³w÷â³çÏ·µ~)[$¹S ëTŠ²$É6’ÔÝýo4ýýýÚÚÚzõ‚u[6;: ìj.v<î°X,‘‘‘â¨kµZƒÁðð $''k4šŠŠŠïê RÌþ¢KcíŒ[Y[0hô®þîE¾3ª—¾u!m›ñƒ\cúîº5NÙïütñ>'¼Âkç¿Y³"õàÌø®£sœÜ‹µD,þç† caÎÕCù {²>{û½Ósã á3O½¾øܦ”3«×&´¼ï¨ÃøiFðÈ6>ëWáïL;ë¹Ðß¾±®íÆ—°jjjòõõõöö®¯¯ï]à‰‰â©f§cJvê.5)Ù 8 +|Jæâ uÖ—ôλ½€©½=0<ÂÈj•]ã'ß·k]VFœÄÍ2¦ ©il|Ô¡Øa‡vüwPÀ] µß23䔩¹¹;Uð?@KK‹ŸŸŸ¸œúO s•ðóðx¯ÐhÐh­>ÆC5Ï{…»#š´a1³yE¹ >È}pÿº”ÉòÞ0Kú”ŽÔà[iºû,øž)Ÿê¯%5Äš"4ífæ¤à‘FŒ™\[ßðpã¶Ã;#XmÒ‚¥ëÔ%qnrÖtë–©·Ru_Ï$¦KZ5C'ïmÉÐ{iDèÐ7pšëì„Ñáq^÷¥¬3ØýM3_ñšë1jŒFÈ‚~` ƒ2 QXQ¸,‚Uà`‘6€óˆáè3 ˜%†’¯€qÀLp-˜@Œ%&/ƒþŠàà80‘ _"W“SÀ‰àŸ¡H’É€£"g¿Â{ 0ôV4KWM™•ã7à5áÆ‚„П®@$J>DA€?˜  å€`Ž7©á€^ /°ÐBIÍæ!à[à6b=eæ`b°°)LØ ì"Ö‰u ŒÄ„‰§€§$p¶Êj5¡'¦¿7*œù$Y¬†&‰y( u3+ëòcggCeeKG‡´m«¬×ËÉˤººžŽ6›Íz½ÞÅÅåßìW{PSWþ~¨ +¨‘8>ª‘ð0!“É4ÍÐ ÈÊÊ‹Åjµzg.]j+*üpßö?—g¾\åŸP6fö§£ÜŽ™]' ÿBû…ËÂúÉŠª'=ª ©†S½Íœú µOEUNô=f'9n+Q‰<ë§*š}£ÏÄ$¶¤>SŸ¼¤!:®%4òlDø©Å kR«žŽ­u—×YË>§éÇm\J¦ù˜_´ìù·2_ÊÞ˜]VV¥ÓõÿDRGGG@@€§§g[[›y'­Yã TR!;²Ó`©IÈNB‘Ūp°©wWV0ov ÌÀ÷==Á‰I3€£ÀaÕ¨ú×Ví6kgVYæ“”ÑçÛÛ‡; ,°À‚GwçÃÈÝýÎ1ûqçö^Ûÿ]]]AAA¬ Ú‹F….žžœé˜á—æ—&‹Owû%²ÞÅiîÉ«<#–¹Žœd3{ü“í»#ø’]~T_n¤6O©Í‹ÒæEÞ¥òuìšÏZ¢ Jþ`ì…aQNÖRŸÛ®M¼X`Ácˆ£1mÝk¶VVÇÒø#ñ†÷i÷D™ÒÈ=*ïgŸ)à +¢øC1]ï)£<Ä,‰ÙØŽ‘¤dÎL\á1HúºîKVz$<çæâ#f¶`¤ÉSð žL À» ) ښ؀JÐï€HÐg„2‚'騴XCHÉA/“pÐÝŒVÝ‘ÄÕ8`pÍZ-XzI˜N¸m9Ž31&ŒÅ°òR‰®&x +P{mòA› K6 ÁY±¡nÂê-ÐTöj@cAï8‚ÊÔâ%H¥?ˆÈÏšâbÜ«l“æM„WÙ„«&Œ_öƒv‚MGì4n ú#HY¤À XUb€ D) ]DÑ„1Ä^Ô@˜Ô NP…±šæf³·P+¹‡®•½½½ñññ‰¤µµõyÇõèûuƒŽ3MFžÿöÖÍêSuÅÅ>Úùö)Ïï›w@vh¬ï'6^åãfULñ;.õ¯Í­›§<”Ú’¼´."¦Ê/¤Ì[ñ©‹ïGãg|`íôáx¯Þ ö',/X»~oî_ÕgNµ÷þðoìfzx^Ïq\?oÐ9Ã`átvvÊår…BÑÝÝý°Qÿ&È.*go—\…mFµ4˜}«3ý˜}«BL+.‘:6jš†E¼ÙÐëõ"‘H¥R · wètºÔÔT¶Õe2™F£zYYYb±X­Vÿl/gJ˜z­¡íÊõÏÊËþ–ûΑµëK¦”:Ï?f=ód5pª‡T Ç8V[9ÕZ97@ÖÏFÈÔ~>rÊ?­'׎ž®yÂ¥ÕÎõÌ$×&g·÷™§¼.Ì ¼¤ürüddHMh˜Úo¾zFJPîR²0yÿªß߶ããâÃ.\î½¥}Ðâtttxzz¶µµ™xÒš5¦"βÓI!; –š„ì4gˆJ`¡ +c¼ƒ¸²ê„y³[`¾ïé NLš.«FÕ¿¶j·YC¡…Uv™¤Œ>ßÞ>Ü¡X`<nWEŽ3rwo¹{C(£««+((ˆD{ѨÐÅÓ“3½3<âÒÜâÒdñén¿DÖ›îžü‚WÄRš0:`¢íÞŽä?NÐå+ûr£´yJm»Fšxûöu¹Âµ/Oi(Pòc{ +BHŸÎZp±íúm<^Ð Ϯ˱].å?‰×ï]dÊ$÷¨ü ûLW#K#ű]ïEEº3Ck»Á1’–ÄV¸’¾î£û’• Ϲ¹øˆ™- < ä@<ÑÀ*km)@ÖÀï‰Þâ€Dá€J  YÀLÐׄ^`Ñj¢E ¹Do—×A£µ°b6mb‰&ì™s ~ lŒdÅ3SCXÈ +hщôÀ Ðn7°è!ºøùí% +@¯% ý ÍÀ4+PJd}z 4•ÅF$mDÒ?@À‹ðÀ”ÏØclB Ú¬^vNn²w2€Z@¬w-a³éW#€tÂ+€#èuÓëÒ€uQ 0”Dt‰p²'Aoç6¯˜^ ÃXMs³y{†ã9ójeooo||¼D"imm}°·Ÿãµœ^ÇqZž7-ZÎxú«íÙ—÷—œœ¿gn:8ï™ÃÓÂJäå6>•£Üªm=kfÖN™¥vòm Œ¸¶dÙÕÔåç•qÍ¡Mþó|ä'žò*µu*µq.Ÿ8§20®äÙrs¶Ù§ºrö«þžïx®ç€7ô†Ábêìì”Ëå +…¢»»Û¬ÐÙE…ãìíòÙ.™;ÕÒ`ö­Ž¯Çì[bZq‰Ô±QÓ4,â͆^¯ÏÈȉD*•j¸µXð¸C§Ó¥¦¦²­.“É4ÍÐ ÈÊÊ‹Åjµúg{ï$M#ëmËùóÅÿc¿j š¼Îðó‚X]±‚D«VB $D +”6š ‚I˜JøQQœ³*j¥°éQ[WmÕéŽmO€¢Ì©=û±uÖ¨„ÿ`Q´?™sl±R9´£‚|»_²3늎Uw–ç<'çËwïwß÷½?Ï{ß’ßøÕÖÃ+³K¢õ™É4­ â +ˆôð­†_µ«Xï*®C€ĵð©t}êÌc“+FL©'Ÿf7Ÿ–'|ÎMò7ˆäçÅ¡WŸýü¹°¶…aö ýìèªYêÊš3áq'µ Ž¤½ôûM[Jjimí¾Õû/OîtÌd2) +¹\n4‡xrN»챫S-¯NƒI¯N@ pžèÁ²$K»^‚Ó¥eóîÄ0p³»;")98 +\âWÎÞkÕ¬ ´,³L&j´ÛÛv(N8á„÷ß|ÍmÝÆmßÆuÿÃþßvWÎü¡ÐÙÙ©T*YBãé•è³puPRf`|š4>M¢K—þW:šÒe)«ƒ¢—úƒ}è=æƯc¹â$ónmO^ìí|µš»èx¯6ç«­…qÜu_ïœù”«(4¦ÍèTu'œøÿ…eÀú³5o>\êÍ}¨³͹½k‰íÍW÷åil…Z›yê‰'±Qî®s…‹²‚’–˾O¾î¤lþŠÀ„ ©8XÀÊ7 à@vÂ:R&½M0€v‰€Ä~•„TÐ) œð<ÑTûõ&è= ›ïð:ð Ñf`,h¨ø´´Èâ€ö¬%Š•qÄÛ5ƒvùØm9ØÊ­ž–ƒ®-Ä?kÕv~DñD›‡ùñ±ÒÚ­l'Z Šbù¡há5€y +m)X€DŸ_[õ W‰Äœ§p ØF¸ÊÏ úAìê®Âì“À>÷äƒÂ@ ¬#ô‚ÊÙ(›øù™z”E˜šúˆøAì³ +&SG|!æ!ßh0 u·Øúúlûöq11ÜÚuÜõ¿õóžžN' +›››ïnµØú9ŽÑ›ú¶¯§öBÓ;yooÉÍ-X²âpXüqi§HVŠ€rˆ+á[í"Ò»‰ôûV7ù_VÎú,&®mFÔ…éÊË‘‘ŸFÍjU(럖W=!¬ÂäúÑŸ„Í9º$cCÖ‹¯l^{àDq[»±·¯·dãOÁ€u0Ï;::T*UxxxWW×P£¾/ظ·ÐcŒ{ÐÔ±ê TIƒ•oUÄ×zìh°“ B_Q]CýCq~Ø°X,™™™žžžåååÛ'u˜ÍæÔÔT¶Õ%ICCÃw 77W èõúÁ:Yy}3›-×L«¨:óÁþ¢ƒ¿xóý%+Kf¦÷>éRîPC®ÒF’ÖCVi#üëá§wVŽéG‰«G>]ë*ªéÛä!m~ò™ÖÉ!mBùe±ôBÐÔjÕ´Ò¸Ø) Ž§§Éz¹äõ7Näïn*ûø+“ÉQØð¿Lïî¬rL&“B¡ËåF£qx'çäx{ìêTË«Ó`ÒÄ«Pœ':D€ÏG㼧Kˆg݉aàfwwDR2»ê°ÛÅ%~Õèì½VÍÁ +B‹ýÒ5˜¨Ñ^lw–N8áÄÿ8ìYÑæÈŒ7¾äÔ.6ÆvÝähùnÊüÁÐÙÙ©T*YBãé•è³puPRf`|š4>M¢K—„tYJVPôOü1Ö-ÖwlG¾š;’d)ÔöåÇö¨û 4æ|õí|ÍT› øVËní7?æJºvªfNr…Æ^2þõÁÄë„N<‚° pi¹›GÅK½¹# ÖßÎíÏc2ÂCm¾SFÌö—}ê­(Ž;šôU¾:F2Ž‰Ø(w׈¹ÂEYS“–Ë—¯S6E`B†T,`ePp ž„@$:¢^ ÈV À«¬‘X ̵:‰¿VK€wA‰ +¦°oøi;¨´´ +ˆ&Ì!J6FÞ¨Ã45ËR‚ ˆÖk€À Ñe`>h%á*¨ˆÔD/ï<»W'Þº +¤ý´Önha(ô2°H-±XR‰wþsà°ØAÈÍ"„ÀT`.¨Œ`#XAÌù4 +Ä<‰µwx ĆÕv·@ÕÀ;lX¢- Åö)b%!b5W 9&<‰þèÀÃsüCSÓ·Kw·-#ÃæêÊ…†r†Æ¡~ÝÓÓ£Óé„BassówÛXêµØl}7Àhë¹ýíåkŸ*>°cókE¹ëÇ¿pdJxéyü+áW¿jˆjI¨wñ®é­\X÷¤ÿ9ÿ–`EKèó­Ï)®DD|1;êÊÌBš¦Hón¤) ãCO)ç¼»`QvƲ-ÛÞ,-/ýòÆõ+³Ç Ú¬¶ÁRGG‡J¥ +ïêêjÔ÷÷zŒq/ÚØ¡`Õ¨’+ߪˆß“¬|;DÚW\è+ªk¨(΋%33ÓÓÓ³¼¼üaûâÄ£³ÙœššÊ¶ºD"ihhxðäææ +½^ÿ}l VÎ6À³÷VﵫWë*+Š ÷îuÃáŸfÿ)rñG>Q§G?SéØè"7¼²ZHë ©%½«¸úG²:àê±A•#Å#üjÜ¥M^Á-B.L +lñ‘dg”ÓŽÍÓþaÙâ÷³Wzc}ñ®÷jO4ÿÜ»ÏQõð"çàÀd2) +¹\n4‡xrNŽ°Ç®Nµ¼: &M¼:5Ày¢cKRlÉÆy N—– ϺÃÀÍîäà(pÉ~9{¯Us°‚аÌ2˜¨Ñ^loÿ'ûÕåu…¿³JSGhDWë#. è.¬5*òMŠ ¬¢UÄ$MÀŠIÔ˜¤¤©M_$6mÒÉÔ&*øJ­Q£X®O|!1­¤D‘ iVwÙÝÿöÞ—'† Œ#ÎäÿæÌïî9ßù÷ÎwïéèR(P àÀ{0^¿. ’VÇ®\•'[k î-,KDo[áçï3nZÀ̆¤ôÐÄT]bªÖ˜¦û ñ<Ì\hxâ©AèÚù—!jë––ŸÌ¶Æ³ ±lýdnÒºXi=·¸;lC<ËŠcÙ“Ùv#3Íúú½ðè^9ñBõÕ–ßC?*¸ÜÒ¯_{ËOEûæög3ØÎ$¡Y“Ù†8YL&·”Æ¿ÊŽgÿLd¦Ù–õ±±:Þ K×Îc’’æy5ŠëXëR6c~èÔ¹ºà¡jÞøYk67èèPMÄŸÅ$ÑmP5è(á$ º ØEB§€[€ ¸N¨Uñ[®ü`Ý™AŸñ€D_]¾nŸûA;íOA"…’äìh°8ªñkóeƒà!ºH< ìD烀I\’©h}IÈvñÈ O9Ÿ·•À ™VAœ*]̉3¿)ϯ&O‚^& Þ2·FÁYÔr0#ªê€rà + æVP ñê¨p‘¨ø^Œf1CŒTLŒ"Ô€QnÄzöésâÔÉ6o—†61V|®nK{rÚºÚf³FFS^^~—×nq9íöÏ/Wîù×ö¿þ%sýòßæ¾úÓœ´üÇ&x8¤ˆ‚Ì:‰Ç0  A¥(¦”P¿’Ný?yHSæx´Wð©@ý9ýˆÊ‘á—"£ªÂ£ªFDVv²ÛÀ"ô=Ð)0§ïè­‘SÿödúÚß¿±sãÆ3å'¾i´z H-Æ;QWWÕÀ¿@G`麺ùù®{e¼;¦ÖÚ·#$z=¾Çò¾84Aeæ£B¾Ýp:éééþþþ&“©£¹(xÐa·ÛSRRøV×jµf³ùþÈÈÈP«ÕÅÅÅ­ø8%·]r;%IrIÌár~së?—/Ú·wËŸWoå=3žß1xâî.# +ðèa 9‚Ð"„"Ä„#‡ïQ>`’yÀø¾ú½ÈUzhH‘oha·A&MhÁðð½ñS¶>3gÍ´7_qóÖ¿Ÿ»tö¿·¬N—ärñ”ÌÅÍuu«­­ ÓëõÕÕÕí+|úâÅüð¾¬NŸujMš„:¥Ài¢`Œ|uï¡>p0¿}Ù´õV똤éƒ=üÊ$þ5*ü¡ÍcE„3â΃p ÷¤Øó55]Š +ÜxOG‹…EFJC ì‹/î3‹ÅÁD?ŸqÓf.0$¥‡&¦êSµÆ4Ý÷XˆlÚY‹ 㟄®fë{Ùÿ‘È +“Ù¶¶)ŽmŒgÙ“…mäw‡mš"lK<Û•ÄŽ$[ÞуÃb+ª¯ÞçÂ(PðàÀ-±ç—¬ò#U^š†Îd{f¡Ø,Ë×ìøo5$Û£$qls<Û9•N©_79VËü´k瘄ÀÙ IóBMÄÀg¸T·I¬u‹h|Ѹÿ7D_‰·"—ÇS6‡ÿÄ-Ð P=qŠ“q’ˆÀ}ìÂÈãÉiXy(9ŽK,4n ‚<5yøËžœg#T.yÆá-P0wy«7ƒž^Þ¥q !"Ë™óÔrvñPä!Óäá/x’'”KŽÆ 47Î\%;Àó%k©r#Ö«oß“§Nµy»X­,!Q|4u¶o_[WÛl6£Ñ¨ÑhÊËËïî!¹¯]»š›»cõŸþ°æµE»—¼R2ÿ9S¬174<·§îP—À2•æÍ*Á€#b ,¦ýùXÊÇÎý‹»”ú<Ö_Z;üüÐQ•##ªFG_~,È`ê¢ÉCŸ<m^ÐøãžÉšûÒºe™´­âR…½ÉÑ:󺺺ÈÈȨ¨¨†††¶V}O°tÝÝü|×@ïÎ@‡©µöí‰^·oyÀXh‚ËÌG;„|»át:ÓÓÓýýýM&SGsQð Ãn·§¤¤ð­®ÕjÍfóý'‘‘¡V«‹‹‹[ñibîFÉípsH¬ÉÍ.‡ÍVõiÅ®-›7._µý…ß}5kkϨ]ªG÷#ä 0íèò ËWéK»…8©dÀø½]õá‘ÝÌQ Úû“àÝ?hÈ™˜óô¯²=÷VÆ «×,7•Ô7~ÍuÍÉó8ÝN‡äl’DÒï ¶¶6,,L¯×WWW·¯ðé‹ó{Àû²:}"Ô©5iꔧ‰r€1òyÔ½‡úÀÁüöeWÐÔ[­c’¦öÄ¿F…?ô¯y¬ˆpà'K8Ð{RìùššŽ.E +î¬V)a +6œ]ûò>g¶X,ü@ôó÷7-`æCRzhbª.1UkLÓÝÝReKÓ&/4Ä>3Håïösߢţþ½úñ³K£Ï¾]¹<¦*SXufÌg²UeŽå&žWÆT.>ÿÇ(îsåí±[’éÝa¿˜RuEQu +~ÔX²âíNP½4úáK™Q+Çž}=²bYô¥BFªWz•DˆÉ›c/­Œ¹¸,úœ‘1Wß¿ïÅdžõóå"ÖÅ×'&!`öBCÒ¼XqkMÊÒBfÌ:WÐÿ#{Þz“^í¶¶»£@ý]êjA‰î¬ÎóDj´ÌÞòòÉëÀ4X¯~ýNž>ÝÖ­"9n³äY"ZŸÞRAA[—Ûl6£Ñ¨ÑhÊËË¿û¶Ña;uáXvÖšU/Ï{ïÙ9ûŸM-›™R2)¾`„œ'ÿûÕÔÔ•†ÿƒ§ +–HP|…ðLB@تYBÒŠ‚HT;»\âÌâUuë«ÚVEVð±êbkÅPy"T!v•8뫵Ì:Öڌ u±H ɽ{îMxˆtÀݽß|ssî=ÿ9ç;9w¾ÿþge!%¢€j'w5âVOø•!¿Jð«ß©ATÞÀýðÎÛ{”±…U3Ô¼€+^Ú߈¯¼õfmdD…$¬‚;·ÒÞ·üÎO-+O&þñÐúÍYŸ)úôþýV+Êu:]pp°T*moo·u×/Û +òrn4àê ÐEd­|«CT­‡Ë·r€y@ëÎkÐ4ŽŠøaÃ`0¨T*6›]SS3ÚZ¼êÐëõ‰‰‰øUçóùf䤧§s8œúúúg$ÙM¿¦.“ÉØc"õ&ÒH=Õ› ÷t?~YR²ëLJÞ[{H¶,Ç9(%:>Æ÷o,?Ìce N9øŸv™[è2爃0å‘?Îûðk>¹Ž>û¦ˆrg‡ž^±òBÆÎ/r²+ŠÏÜýçw¿õzüŸ„ž ]C—Áh0ÄSªZ[[Åb±H$jnnÞÆãÒÒœòhwºL¹“5k¢Ü à@B%2 òÑ$gNEeÕðVg0 <èè)ã|ŠnR§†jŸwjfª\À™%À5"òF SB2`Ààtv$=" +2ð òþý^¿­­M"‘à„èÈf…ź-IõWª|c’1I|y²àÒä/Mõ[œÌŸ0e¼Ë¸±)A3¶Gy­]È[·À}ã"ÍQž›£¼¶DyÑ Ï-Ñ^˜¸±i±çŸ¹¯[ÈÛá±ãmXþ{€ùoËïY\ýé ü_`Ç®L°àÂú`wc¤çšp·õ,òÜå½µ×IÌf²)Êsc$/}¡ÛÆrŸ٠׉㰉Ÿ0v^4oÙjeŠÐlVØǬ[Yü*_ÅJW—,€£$MbIdG"D·MèmŽÄ4¡A·ýñd›ŽhöΉ{©dgŽ¤ƒÑÀ‡½búûîµÌ`YÑúÅÃ1¨_@‚€FºhúBÿˆ^Ô¬Ö} š|À-%`€H€Q…ØäiÓ¯]k²ù]éÖ K©Ù¦ºÕ6×qr¹œËåjµÚ§{ï¶4ù¼ kçÆlÕ{'ñêÅïhæG×…GÔ&Ä—¥,/NZR^Áó¯šÀ/Ÿ8»Ô9´Ø9ôü¤Ð2'Y;¬Ê1äË1~Ÿ!ïbÇÀò™Ò2AXù¬·*„Áj÷Y¢Ù_G.¬Z±´òwïª#–\ô‰¨|]R4Q|Ê-ìԛˎ¯|Çê?mX¿¦®^mE¹N§ –J¥ííí¶îú¥`[A¾“£C.À-€\ºˆ¬•ouˆªõpùV0(pÝy šÆQ?l •JÅf³kjjF[ ƒWz½>11¿ê|>_£ÑŒ¼€ôôt‡S__o%¦‡$D·Ñdì1‘zÙC˜RO’ÿ6õ4ݹ]xäDÁúOrßYý¿ÅÙÓCò\%ùÓ$yÓ‚r§ÎÍ™:'wÆÜ\· ƒî’nâì³Ìœ»ßmN–çœÝþÒìEŠÂ÷×Väå].-½÷í®î.üMßCÝ&¢ËD<Æ41{‚xês¿µµU,‹D¢æææám<.-Í v§Ë”;Y³¦‹tŽ»ЄP € ¨|4É™SQisBa0l<èè)ã|ŠnR§†jŸwjfª\À™%À5"ò†¥„dÀ€ƒÿ^P™§Fêúè©PÄOºÑÖÖ&‘HpBtd³ÂbÝ–¤ú+U¾1I‚˜$¾11¿ê|>_£ÑŒ¼€ôôt‡S__o%ÆD=iÄ?FM›N~ÕéëÇ7®hk?--Ï9Q±7¿rÏÁòÌœ²Ìœ YôuoöùÌ}çöì;—¹¯dOVqFæÙ2Š>ÙU´'³4¿ æLÑíoþÞñ  ¯A j“‰4$^±› õ&¼]þ<‰ÖÖV±X,‰š››‡·ñ¸´4g€<Ú.SîdÍš(w¸ЄP € LræTTÚœP ::dÊ8€b€›Ô©¡Úçš™j×pf Â_‘7ZZF{+ 0`ðâ H:;?ÿL„/ Éï°‚¶¶6‰D‚¢#›ë¶$Õ_©òIÄ$ñåÉ‚!“ÌÇòdaBª_t’ÐÁõµ‰vv }œc8ó¼ÙR/'™;„&nK©«…!Þls—ÌÓ)\ÈQ8¿1Ù/¾Xq¯å‡Þ8 ^)lÏÈ»±<#rZ àPNâí„MÃLÚLœè;ÄÛö§ùv| Kˆ÷ëãÇÁNâàÈ +vKXí‡MìYöõ$…ñ«|+^\°Ž4 Šˆ°4µ -ñ&úJ¢ˆ0@Ô-õY®$²8Êü¼dïp<ÐC¢þ™é!¸Ë2dàXò‰‡¨?ج„z>x­Aëµwdû_1ÄÌ:±t!6yúô«MM¶¾*ÄãǤ2ŽšmŠ+QYiëðÎÎN¹\ÎårµZíà™Ir÷Ø/ ¦®,ŽŸ‹Ò®]˜1’ºv˜8E´ëºYH¤øµ +ò Ø(‚FW­¬5£»;ãbwk[«ø¹" Zg¶luuEQ$Q0mQPK +D}"FhCÞÛû^‚¢B0 Îöýøóx¹ç›wç9™Ûß{bÕfdý៽7jBýûëIÝ•nsË]S½©³Év¿•(:U÷ñ>Ã9u÷£‡=V+ù£•|hµ7>h,ª,Zó÷¯6n7TÔš¯77_¹Úah鬭«Y·ùØÔÙ•k×=hª±ÚÛL-Mn·ö´›Ú.|]•¶ñ$oΩ ;'ÏŒž:õã=ŸÙÿôA"‘H,›L¦Á®Ú-däæŒõöʨ¨ÆÕ  +äª|«Dt­‡Ë·€ áMò«Ö\‘䇌ÍfS(G¥Rt.,¯:‹E&“á­Îçó5Íð' T*¹\®Z­v=l@—éÅnï±Ûð/ýÓ«ž^1í¸ßfµY»­Ý–n‹ÅÚÝÛÉ“?×`0…B@ ×ë_”ZÿHÓÓ}²wª¢ÝÉ•5Ñîp@‹Ð €pæ<çÃ=s¶thOgmfsx¢t +Àq€kô[Cå/zkGP€O–P€ "¯67ôRXXXX^ç I¶µ‘¡¡¤@@¶´ sF£1,, ˆÞÏY “V‡$*‚âRâRùy@¿Š“óñ‰_£Ñ J¥’ËåªÕêáôË`0„B¡@ ÐëõC‹ MO÷ÈfÜ©Šv'WÖD»ÀE-B'™óhœ÷ÌÙR÷®‹Åmfsx¢t +Àq€kô[Cå/zkGP€O–P€ "¯67ôRXXXX^Òù÷ÎjêTròd껆aÎÀh4†……áÑ›ã9+abÒêDEP\j@\*_"p©Àä‚ç¥øƒ×hÉó¡…TY2u$–*XHÆPÑôóEö +£CI©òäûÛgü†o #ëXWgaùéb§HÅŸ>ý9ò8™Ê£ÊQǤTa´Ó. ++Ú©B‡DSEqTÅâ{Y‘sü9ØÄÆxyÎŒ™¸xUˆtyà‹ìËib‹VŧøOãâ²À €bDºI8T@3‚Kt ‚¾tˆîEÈ91¢ï#pôáâå2@'Ê9Å1‹b‚PÎvô䉨ÿ4˜‰ôÕè4þ×ÁÎ4PŸ‘O=ýIzOqÃwB H` +±ñ¾¾—µÚÁî–ž¶62*ŠŽ6–CžøÏ`§wuuI$§Óéžïݾc·tfTYê–ÆÙëþeæ뿨Ùz·›M÷/äåÚø×›™9-[÷Õ®ÙPû—Œ;ÿ>f7¸÷A}½vÓgçÓTé5]¬µ-5þu$yå·YGÈ»îWMúÃiå&£þFË­ïŠæŸÊÏ»×Ú„'>ª¸ ]º¶tzìþéó’Bg|ºw[3òùÜ‚‰Db±Ød2 vÕn!#7g¬·W@@5®Îáä¢|«Dt­‡Ë·€ áMò«Ö\‘䇌ÍfS(G¥Rt.,¯:‹E&“á­Îçó5Íð' T*¹\®Z­þG¿ ƒA( +½^?´Òôt€lƪhwreM´;ч2h:ÎœGã|¸gΖºw],.h3›Ã¥SŽ\£ß*Ñ[sè<‚|²„LXyµ™-!YXXþ ïÝ#ccÉÙs©†Fúc?Áÿ +£Ñ†DoŽç¬„‰I«CAq©q©|‰<À…âåÉ„Ì[:¼GGùk?C•½G‰¡ +2Šr^>£…T!V õe"¥J~°'Tü&Lš1¿N{øÖÌÂÂòŠa#©å¶xƒGIÚDª,‰:š@Haã$}ä°‘‚Hº {Î?ã¨ó﵈š?e6±1^£gÆò’±‰-tm_½ +\´"(>-À—žù#ÒM¡::°`/xìGø¾À +}u<!Çx +9[°ô(d¢ÛŸä†¯]€@Vz:žèñx +=ýI|ã?Ú˜Ѓ2Ú‹Ð!€fsvL„ è®/Ä‘< )ÄÆûú^Öj»[ÈövR.'G"ù|²\5Øé]]]‰„Çãétºç{·îÚ-‰XxN¾åûÙ<2Ê7sÌ[ºmù¸½³Ãøu^þÉeé߬XE¾êBT|U|ÒO>û±ñ&EÙ›Õå§eEÁâó+7Wõ¤¹[ûyNaX\Õ¦]öæ‡ÆòÚ¯RÖ¸™¨¿ÑX{íË{Švîj¹u/¥SSU³ìòpiî»1Éá¡[voí8s‚ D"‘X,6™Lƒ]µ[ÈÈÍëí•PP«3@ÈUùV‰èZ—o%@ÛäW­¹4"ɛͦP(8ŽJ5èÍÆòSÃb±Èd2¼Õù|¾F£þ”J%—ËU«ÕÃÿè—Á`0…B@ ×ë‡Ašþ_öË=(ªëŽãߣZ¨šâ,à(OѦT áµÄ–‡AEcëJ]Ó`£¤3Il41M|W@°Ñ¦ñ-(Ʊ€†‡¨H”W”ˆeaå¥ »{oÏ]’I3êZ` üq?óËåÞ=çü~÷œùžó‹·RîtIp'SÖ$¸p(#:ø÷#[»ìœ³æÍKÄ-¾‘QÎ@&P%Ìå=nÖú”O¨ØÎ2˜$ ½ÖÐ0Ü©ˆˆˆˆ Žã¹n{{¹ÊJ¾¬”ÓÜq¦š™µZíååÅ6Dk‰¥„CtÜŒH¥{˜Â5Lá"_ájZѯO|uÙ>é5Ñêû]AüÉÈž=²®ÝAÚ”^£z~.mr°6™]Cz’C i¡üq¹zëï|&Ò”ÙUµ·†.g‘†žãcÿ¼i (ýU)Ÿ!×ïŸ×“Ô#Ø…L›Âôßl¼‘õ&1‘ñ'"ïì˜&a&6Öj”ïËÒ…«§G®t{¬}å¶`•{x¬ëÔ™v¬,°ö¼Qœ™Ä®XÑáLXOXš ZFT#¼¢^¢v ¤%á—ì‰Ô Ü%Ü#è‰Ø¹÷oD‡‰¨ è$p„n ˜úÐ b÷Zˆš.P7è.Ð +ÜZ = ‹`pô HØNl\!SÖg¡Ièœ~ÌÅCmƇm ½±s}Î8„Ša,Ä&ØÛ—”•õ¹øêjþDŸŸÏµ·÷·µF£‘ËåR©´¼¼üÁ·›wmó :ûî-ÿÕé“÷Œž\úædžÖNöên}õÃÇJßJÌ }9ÃÑù„Ô¹hÙò¶’+<¯«ÎNÿì¹çöÿJzaMBÇFN£)ß°å€óÜ qõ·:š¯ÔMÌ\³±¥²¶éFCÞÁÌÜcÍMu|o[Ûç™%‹•y~Qd¯,õ÷Û´íCã#W©TÞÞÞ>>>­­­ýÍÚ,lØ›6ÞÚ*¸±ê T@¦Ê·ó$Ôzlg~:9_–àŒN§S*•‰$77w¸céhµÚ˜˜¶Ô]\\Š‹‹‡>€„„;;»Â¡z0466zzzzxxÔÖÖ¬‡¨øx[ ÕèN—w2eM‚;2¢S€¯q?²±µËÎ9kÞ¼DLÐÒÙéå dU¬QÞãf­Où„ +€í,s€I²Ðk ʈˆˆÈ á8ž®ìoßÿ?¿ jµÚËË‹mˆÖKÿ‡è¸‘J÷0…k˜ÂE¾Âõ‘R¸†+\£_Ÿ°t*Mó[Ûqßï â3"µ)!÷wu'…t'˦.£´I!ú44¬u‡÷ܧŸpšXUssèraè œâ­c@Ëøt¹î“y]IÁÌ1ô¾‡]I²î¤ }ªŒ?Ñ”èlÃLl¬•åóó¥‹âfD­t3e_?ÉmÁ*÷ðXש3íXY` ìx£8s¨¯«"`ÚAø a"ð,¨ÄøƒDùÆ“ðu‚¤}M¸ ʱsïM+[¶‚þIÄÀÕ„« R TÄ‚ØçZÔÁBTŽ‚Îß‚j@„s Bá ƒ°˜ + bÇïB`ÑG„{ ¨tH'º +´ƒº @9Àb8Ê5 Y'ÈlŸEEˆ0bìíKÊʶf„½Ó`@CF#—Ë¥Riyyùƒoÿºk[¸_À¹?¾S¸úÄ(ÇýOØE¯ë¸ZÅt½†îöšoë<¿\qÜyú‘_;,\r÷j1ÏjÎfòžsÐaÚ—o'Þkiâ4÷+Þýø3gßÂÕïé:šJë®\Ÿÿ^óõºÎ;mUyW* .v67pw¾kLN- +]”ç%?üÊïýýßßöá)=ì R©¼½½}||Z[[øàÙ°7m¼µU +[±ÂÂF¾q¥™(ßΓPë±Õ›øA@êäXT|yX‚0:N©TJ$’ÜÜÜáŽEd¤£ÕjcbbØRwqq)..úììì + ‡~èÁÐØØèéééááQ[[;°¢âãmT£;]ÜÉ”5 î°¶ŒèàkÜllí²sΚ7/´tvúFF9ìdR%Ìšp2=k}b¤ +€í,s€I²Ðk ʈˆˆÈ`ùéàßÓÃW~Åó5§×Ÿs¯ +þ¨Õj///¶!ZÛŒöpˆŽ›©tS¸†)\ä+\!¹Â5|…[ôŸ<—NýôS¿|²n{ Ÿ¡M íJ +éN–™VO’LŸÊëHž(µtz6àzíÍ¡ÉWDDd¢3pË×nG§SøãrýßçýN¢O ᆫ÷„»Ù0k=Êw¾ã¢¸g"Wº?Ú¾~¦«ÜÃcݦδce%°àâÌ¡¾®.‚ì l€Í ÷ß/r § ± hP h !8‹•D¯¡o`Qá@ð° x´ÎØöðK˜h +p„zøa1á èO´˜ÈFøÄš=E´–°˜,êÁ"Š(¢¢õ°øHd±¶ Y iÀN ăÌòMú>‹Ša,Ä&ØÛ—”•õ{¹pWSÍýë _QÁétým­Ñhär¹T*-//ðí–í["æúe½ñNõKoœ;õ&|>Ñ?_‘x#=«ýÖmÎÐc¸÷öé“9Ñ‹>•ºdÏT]b­ê¾ÈJxáäôÙ•7w©[¸ûš¯6m;ðLÀ…77ênµÝ)ýnßkoX»¡©æ&¯å;«ÿ­.¾Öž_ܸ3íJè’/&Ï)p :ô|øRß¹ìøÈðèÈU*•···Okkk³6 ö¦·¶J®E¬:©òí< µ+ß²?H‹Š/KðF§Ó)•J‰D’››;ܱˆŒt´ZmÌØ/ ¦²+Žÿ+ÖHÖÕE#( ²jG©$FÅwðaÑZ¢Âvq-âÚ«ŽºŠ®»êò!¢NÝEGFW>\¨@¦Zд*ºÊ§‘Z,¼×û´ëÔ5È€3}¿9“@Þ{çžûîÿ¹ÿ˜¶Õår¹Á`èýRRR¤RiEEEïý&ÆÀÀ@…BÑØØؽ QÉÉîÀ~»:U +êäHšuº3jˆ +µ½ u——ôì¼DÐÜÚªŽŒœê…U£ó¯[µÎ¸@¸°Î2® ©kjê멈ˆˆˆ¼)Ü>¸ ·u+Ÿ–ÆYÌ/þÞ ˜Íæ   Ö]%N3#F/L +ˆÔû‡Åù†ÅÉuË}_ì†ðå~ W)f/õqé"4àÖîYüÉpkfH{ºæI†ÖqXÓµ¶,-Ÿ;¿5kæ\Ï^g54ÞíùŠˆˆ¼…<ëèˆýxó ~t6Þ›Ï ³åÌ{­’\·4¹bìŒR×€rÏ™G¦Î_¤š¶mïÎŽWWn2™”J¥J¥²X,]u°ñ@ö7×L ¨bî TFŽì[9 ^m×Bû>gȼ<« Õ}R|·±Ùlz½^"‘”––öu-"o;V«5&&†mu¹\n0z¿€””©TZQQÑûC¿ F£100P¡P466v/CTr2;ì·«S¥ NŽ¤IP'¡ ¢†¨PÛûÑPwiQqIÏÎKÄÍ­­êȨqÀ)vtVοnÕ:ãáŠý 4® ©kjê멈ˆˆˆ¼!Ü_·nr#Gr#Þã._îå"ÌfsPPkˆ®§™£%ŽLð‹ó ‹“ë–ûþht^ +÷]¸R1g©‹‡Ë8çŸÞø,˜?aÍ iO×<ÉÐ:kºöY––ÿSèãìà¹^<'̪o¼×Ëy{xÖÑ»fó`§~E Þü×óŸçÌs¬$íéLF46&#GÃZ²´?fàìÖ_*‹N +ˆÔû½J¾þ'¬ôˆ÷óž e¶À 8ðöàz(xÁz'ð`2h"h!ƒèaˆý²Ø¬A¿=„åÀP*h3hˆ{O…˜ÉÜZ ,&Äg@,ínà]Âìç\ìÏÞ´ÿ[ú8„ƒA¿c7Ë@i„GÀ7À{ÂÐÈfþ@аüŒ XœþBô ƒÞ ~'&B„݈ óð¸\SÓåíòý÷œJ)dsÄçïêÓmmm:N&“ÕÖÖ¾|uOÚöHµòLê†ëó“ +Œ:…wK|uÅ‹×åÇ|’·xí_3Ž?{ÔÎÛž^ÍÈÉ5áĤ9–’‹ì©ÛÅ…ÇÔÓOú¼_·v£õž‘n«?òÕñ˜ØK_dqÆ>¨ª;´"%wÃVó½í÷-uéÇŠæ­,£-XIÞÕð.gÚþMÄä©[÷îìxuå&“I©TªT*‹ÅÒÕY÷dqsÍ€*æÎ@eäȾ•“àõ˜}+fØ7˜Ì˳ÊPÝ'Åw›Í¦×ë%Iiii_×"ò¶cµZcb˜fC.— †Þ/ %%E*•VTTôþÐo‚Ñh T(ÝË•œÌÎûíêT)¨“#iÔIèΨ!*Ôö~4Ô]ZT\Ò³óq@sk«:2jp +¨VοnÕ:ãXg™ + ׆Ô55õõTDDDDÞ î¿<÷ð!—À/]ÂݼÁõnf³9((ˆ5DW‰Ó̈ы’"üÃâ|Ãâäºå¾?—Âã}%ŽŸ½ÄÇi¸sÀw>ŸÍçGX3µíéš'Ú׆-KËç†>ÎÖx ôœ0«¾ñÞ/EDDäÿŒgÏc?Þ<Ø©_‘Þ‡Ï ³å„¼NI4OӵϙŒ 3gk4þC™ˆ¹¸:M •Eÿ& Rïÿ*ùz1˜ˆýr•""ÞoìûîÌ8‡Þ\O„=3ý† +ìžE ÌvÑÀ`)°‹è+ ˜° +€|AÌUæÍ ³À`1ðGÂiÂzÐËðû$¥í \³p'=$zJM±Ì*:JBÎjÐaÐp‚ÈE^„|Ð5 4š„á¢AË€K ;À2!¨Ä&Ò#ï¤óµ˜v#6ÌÃãrMMWw ×Ò¯KåGʸà`®²ª«·µµét:™LV[[ûòÕ=iÛ¨”Å«7ÜѬ(Á;EÎc®¯ú´¹ºáúé‹Åë÷öoo~ÜÑö¤fGæÁ¡ã üæ<*¬dOÝú¶0wšúè(yu쇖ê+6ÖIH²ÌŠxwêΚxw +rb9šåe>v’dfêÛu‰tC}s³ˆÞHªø·F¹O{kÊ#T,³L\´jjz)""""Ï„õá•ß0·XÓÒl_|a«¯·öo ¾¾¾,!:8žªs[°Ô;$Ê+(\.ã"ä]R<’pˆ ‹”³“§…Ž'ç¡“œìk¶ØŽèÚ’´fƒ¦5QûSi=i1hÚwhmæÜÛ9Mí1Ìã•զ랊ˆˆÈÿ,–E+×xÁ.#r¼íðœö”Àƒú1ÑþÜUî4ÌF5$kÔ^£™‰ýÊað”ÙÒ˼C¢½¸ˆÇì§&Ö5¨‹TÌ[¢ Ž”›ÈOìl‚¬}¡ÎK½D4v׉/}gƒ~|Z +Rh=ÑA —ðð"à +m]Í!„ö_kX ÌÏ¢3ü.! +Uö/f·zÐïgšàËÎÞ}É z ´ Ìäû&z—à ú”"ÜeQ4ð¡ˆE»˜¡‹ ¾z&¥Ž 1gWײòòž~-–û÷­¬}[¹ÊŸ`­©éiÚ0›ÍÇI¥ÒŠŠŠŸýdãÇz•êÔ²Õ×fD‚$ÝÞãÊ{Ÿ<¸ÕÔt½þüÁSžn½s¯åÚíÒåþ>L‘.×4~o³Ø.fßççw`Ìø3º°›iÙ––ëo^¨.L½s¥ÂV·æàñ´…‘k>nù×»ç¾ËûðS{ÅQ¸œ…ûyx”Â3{”ß6Ïz/Ÿ-›6waüâ¢êêêüüüT*UcccÝ7¬Ý•6Ö Ø)¸SïNÝYïN@!PN”ø ùh´“$“e‘þ¢¾¹Ù?Dï ¤‚¯ŽX²È}Ú[ëT¡`™e2+Š´jjz)""""}Á£êßb³X¬OþÏihhðõõc ÑaÔЩœû‚eB¢¼‚Â//®s#BÆEÈn‡Ë¹0yP˜\­X¸l¢ÿü±=dŠË‹·âlGtmIÚ–íêVƒ¦5‘IÝš¨Äï¶-Lì¨AmÙh;Ä5mSMuäñÊŒ*Óõþ^¹ˆˆÈsC»Åº(nƒ½]j˜‡íHPǧ3[¶ð^Ñi ícf¢æÅۈƒhû’«ß¡ ðd †ÛöŸå¶pù„7bAá².Ëê2.ÞÇ„AÞÍø]Ýbż%Jn±Üc"›NC€½D6€ÉÚG²]V€Öš€P +a _S&h °VhdÒl ŒHDo6‚ö%v‚>'$þÚºº +Zɦ€Ž9À»À&P#Ðú X +°‹ÿ´B8á›bçÄ»ùxìâa÷oà<ð!ð°’°…X½mØ ¢] ]D7ûö™uЈ9»º–•—÷ôkéÌV«ÅjµY{ž5Ìf3ÇqR©´¢¢â‰C›uËÖÍ!uêòÕ—´Ñ'ì^Þ7È%/$æVAIGSSÛõÛ•¦;ç/oÜ›718ãθO¿ò—Ý· +* +7mÝç=鈓{Ö«šÒUýPXd¾]ÝÜðæ[Õw‹KªÖnÊ3¿,ö½ºãYßHËæ¢ —„K)Üf’¥y$LÖÿî·êm›ã;¬–ÿy]]ŸŸŸJ¥jllìéªû„µ»’GpHªbÖNSwíÛâ{=Ö¾e¯Gêá^l,à{M{{{tt´££cNNÎ@Ç"ò¼ÓÖÖÊ>u™Lf4û?€¸¸8‰D’ŸŸßÿ·~jkk}||”J¥ÉdêÝô±±NB>eîTÄ»SwÖÄ”ç€4À_ÈG£$™Y§úv]"ÝPßÜì¢÷ä+"TñorŸöÖ:Å +•J€e–É€‹6ðBMÍ@/EDDD¤oèìk¬]êê7|}}YBtp"¶RY˜·:èµµ/fy†¸’²`"À>LÓÖ±°xÖa4¥R)9ê|>_¥R~ÅÅÅ\.W¡PŒ¾ëá@£Ñ…B@ V«‡f!³¨È `­N§)u²'M„ +€z€sÇ"èûÈÕ[^Q9²y±°}ggDF¦À1€KÔ®¡ê§íÃçÈÍ2À=Ar±¥e¬SaÁ‚‹áÃR˜÷qu ®­3?0ráá"r!Ns›ã³ü½9¯¼œ½J@˜UH3ÀúÂPU˜óFÀ’·Ÿ_ñÇ°¹¹^à4.O0ýÞW qm.>Š÷§à}IxO"ŽÉxoÞ›HSB3 ïKÆû“ñáE¸Nzë3aôt͸zC?ʉ³`ÁâÙÁ#ŒWýa«Ûøñ'^çáš\|,ïOÂ¥I1¡d¤‰†v"5‡Óñ©üŽ‰Äß•ˆØd§‰Ñ‹¼–¿?gÉÛ/ä +r +ƒië§`”ˆe¯ +"¤E!Dñ²<+Ä #À~LÓŸ¯R©F?€ââb.—«P(Fßõp Ñh„B¡@ P«íi d¹ì Õé4¥Nö¤‰PPpà8@}¹ºqË+*G6/v ïìŒÈÈô8p‰Ú5Tý´]cXƒà<¹Yæ¸'H.¶´Œu*,X°`1ìý(É÷ÏñI”ÎNyÕ/ j&Lëårf]xûçñêM‘êQ×7Ç´n¡ØF=£[·2Œ!lÙ}msô•QW·ÄÜü|AÙ¾A.ÀAT^­ì¸u«¥Us½¥õÆÍ›íZV«#ÐR`žÌKêè4´ÌHæå ¤­õ²g*ÝK×õ±ø¸é:ž&ù¨×Ùd¢ëÕÏÃvÛDcÁ:Û÷Þ‘7Ö_ëÈÞñº~ »Úmýê{’B¾6ëfÍW×ÛbuÝoÑ¿m£Õ'ýG¯ígöñë`ͱ×yïÈöì|Ÿ3ÓgÝlÖHoÿðô¬«¶Ï‰±Ù‘~KÞë{GY›M´OÚú¾a÷Ù&ëÜvÛìãÚvelÓµžAfmsÒtÖ“¦ï1¢ëùRèúe×›…Ö6ò=okÓ´´´êôúŸ~¹’¾´pšƒÃÆx·ÖOc®nùÏGÿý3"±-Œ’XÅ„|¼¶)êÊÆÈë[bt_HªÞ¾Ä›FDl¢ã¸ð_]"z—ãM”*Qê›$ b¤%ß7!×G’瓺Ô/r‘—ë,gJJa„0€yĈ̈ˆYK sÏ;3€~§÷ܸ ð3ÝÂD‚‘ef¬²Ë¼ z$zjHÌÚcÓÚEÞ‘êçt¸$µÒéBl†‡ÇÙ¦¦Aß[wïâW_£¢ +ƃÝÕÕ•––Æãñš››öv›ÌÚ›wÎ4žýîÈáo¶ýåëe‡Ä)ßðæ—M ­D‚Jð—#ßzðVÁ¬3È»Îÿ= +>AuàsyÈ'¸—;zÖ:6M\p 8çÒà?W(>,üAÚ¦ŒÕEÅ6Ìo|iA}pÌws^þ*%gÿš5ß¹½¢²J}­í¾ñ‘ÈÉ7Jôö«=¦Í늟ϼü6Æ’€?cllƒ!YxøKh déFM:±ýÓýƒÔiýƒIÓ6-ËÔ$%Áøõ%QUuÊ*­´‰¢…Ž<œîÚ@Ö$kµ1©¢cK¡+*ÁÞ¹÷Ä„ÔàDòOGöç{ï9çwß½¾ÕÕn·{bbb©Q¯ +œ<‘-“vÜèÇÛ0—™D×·+ ¹ëáõ­ XCAd )ä—™™™––¥RÙÛÛ›l.)<혞žnnnÆV·X,‘Hdí ´µµ©Õêp8¼ö®W‚ÑÑQ»Ýn³Ù†‡‡—g¡©µUpœîN}dwJ´5¡„®\8PCÏ£•ú|Ï…Õ+…¸;9Y³·É pà©sñqUãå7ðdq¬««¿92’ìPRH!…VQþëο¢¥eQ«5öùç ‡×ããã.— DAš ¯@ZæДTjŠ+Ô¶Jm©C»ÑI¤ÌÉ?äâÚìÚ’rm .pjsM +Hd Ûvè½û‹î1l(:¼×Ú¾¯øèþâŽ}ÅÇöYÎËKÖö&Ëá½f\s¨Ñâ}ÙúÓu®”¹¯¾ösîÄ›‡u¾þƱv¯ÃÏyüÁN_Ðãx|üìôñ‚#A§¾@€ãB\(†¼8ˆËøÙ„Òk|ÁNoÐà‚T?®NÜu £9 v>¨ˆ³ó#~΢{_€óƒ~J’˜íôͯ< ^t}? +ŸósœŸº&*TqÌ-ãÅà-øA¤ +ñ™ðã¸ÇKià§7àõ?`çBãÕ¹PWW×|Þm>átÍQÏUãxuTDæüH‡oa°‹¢¦‚åóò¸ ð¹¸kU¼¾À\ö%&6艻ð óPˆÃoÚd¶ƒ7»8á¼Ùù”úÑ&œãhÙ±ú´µhNp—¸mÐöƒX5o€ã#õÜý¡ªñÊyâµ£…ã[.„ $k¼TÝ»€á‚êóEŒ»à¼~’1z(ä rñ† tÄíó‹æßCf4KA/VYaù£r +ÿœPñI{R‚q1ÐH/bÚ¼¼—zlE¿ú*Z¿‹XS©bçÎ-U}jjª¡¡eÙ¡¡¡Å¶c³±o¦fÿ9z'¹öÇSo¿û‹_½³ÿ•w+_|_ã<ËX»ÁÔ Æ>0|ìSxY`î”þ lýŒi€É¿˜±¡'Ëΰ ÌŸdåX>Ò•_7:nZ«þºiÓ'U߉¸]á­;úw5~øâþ+»_>Óø£S-?9ÕÑÞÓ}öoÿÇääÿfï%b>66V]]ív»'&&–õªàÀÉÙ2iÀm€~¼s™It}»Â»^ߺj€5ôG’B~Ù˜™™iiiQ*•½½½Éæ’ÂÓŽéééææflu‹Å‰DÖž@[[›Z­‡Ãkïz%µÛí6›mxxxyšZ[UÇéîÔGv§D[JàÀu€35ô<ÊQ©Ï÷\XݸRH€»““5{›Ì§n‘ª1W5^.1pO'Àººú›##É%…RHaňƿ¿¼«©‰––E¿øb)Œ»\.ú‡¡²$0°tGY–÷UA²ü&ÏnÔÏ.óâ™|y$ÓÒ+ˆ‘Y™:à€•hò$éÖ À1i±´yy.ùÜúï×Ñ={H–4šè¹sKÕžššjhh`YvhhèÓ3±Ø7±è½èä×ÿùô³ÛÝï¿÷Ö¡#Ü_}sÛþ?˜¶UTôfØ®2Æ°0\eÌ—˜’+P<¦>(§ö‰Šÿœeûˆ)º†Á ó |ã_4Ÿ±Ÿˆ¬eW7;?ؾ»ç‡¯|Ðú³s¿<ø^»çôïÞŽ „ÿýåØììllýÞÿc°cccÕÕÕn·{bbb©Q¯ +œ<‘-“vÜèÇÛ0—™D×·+ ¹ëáõ­ –¾e¬¡ ?2òËÆÌÌLKK‹R©ìííM6—žvLOO777c«[,–H$²öÚÚÚÔju8^{×+Áèè¨Ýn·ÙlÃÃÃ˳ÐÔÚª8Nw§>²;%ÚšPÂ×®œ¨¡çQŽJ}¾çÂêÆ•BÜœ¬ÙÛd8 p‹T¹ø¸ªñr‰x²8ÖÕÕßIv()¤B ++ÆüÿÿÉÉØîݳ›7Çî܉%º¬>ÆÇÇ].ˆŒdÊ,Õz±B#ÊV‰”j±R-ÌVeQQ!?qP©e«E9Z‘zƒX¨ÈB]•0}‹Q±Í¬¬dzE¥^^ÁÊËYÙf|^Êu8ˆ³dj³^î0(vçlÊ—§ ÂtÆ©×)\¬Ø®“ØY‰]/¶ëEvüÉJŠC‡ Ä[ åõEr³*S@/’ ÇwÉ]zi+®Z¤)ê:óEµ…²z³¼L+J§ú¢t(ß ®³ÈÝRâ]‡ˆkº[(:ò‰Æk +¥HµH•I\g1½tG‘Œ2;ˆ:¿þ!b§Ž’gÅϤuEéº,ü’™ÆTlï0KzI•.sâ×ÉJ¶å»,r£*“ž9S•ê˜7 ÕE/„öÃIÓã ª¶PºÛª(Ñ +T?#Ù¸^¸Ó,«Ö‹«mä¿(jV⤱W±’-…Ò]…YC—e2î 朸#Óð3'u$³H××[×ï™A%–Ì,s²âJˆ¤ Ë­ |‡Å))zÞ({¡H^\šÉ «Ø0ú9¿NÝ"×4"šQ­ARg–m3J×ËÒ¨P‹Óž7J°pd ±ðˆÀyáío7Ék %9b¢ž¯HGĔ}Aº¾¥pbÚHâ­&é6“|½,Õ5Ò´­Fi­Õ¥NÚ‹I#b7+ÝeÎÆÅ9Â9æhd«Q†´K¿­ghÇŠ]zŒQZªÍâ[]˜ù¢zluýc¢¦,Þbí4Ë9´âBÆ­—lÇŒ‘ZÇ›œWò\¦WQ™'ÉÎ*]'¬3£ I%+K:P¿˜$­{¾¸Z'Þn’á+ Ëصâ¬ÿg¿Úƒ¢:¯øwy¿aÙeÁ•ÇîÞݽ» V‘g•çûàÈ«˜Æ™ªS&S;ilµQ^⃨ð øH´ˆˆÊª€§1§¡Nt†1Œ…I±T̺{{¾» "2¨ü±g~Ã\î÷s~çqÏ·;ÄÇ9h¾aŒÀè€I⸈™!¼“$„#0vl-q„A8¸XÃ\b¹Ù²ðƒIeà .›Ñ!f€µ `Ãr³áγwåÚYXáôÚ"t!š h„ô&üd€ôö(…¹ˆq½¼nݾ=ãskä)žŽMyzÐm—fª=<<,—Ëy<^OOÏÄ58}¿×ÓÏt´V§£õÿÕi¿ùöÑ•Ž«Õ»÷VnzÿhÎ{çbrÚ„+Ûv˜ 4HØÈ«ˆ„¿×à!ì²–Þq^zÇ%¸ÓB| ñ»ñM Ùßìoq~ît=pikÄÊfyú‰ÂõuØÚr¬îæÎ{ßÜ~¢Õëôz½îùsýsÝ4ÌûûûÃÂÂÂÃÃgõ‘-¸8:T!ôBp;CÄUbºë[ïzp}kA(Š™`<_ŸÎî®9!ÿÊ¢Õj‹ŠŠX,V{{û\s1ÉÏ]FFF233¡ÕI’ìîîž}ÅÅÅG£Ñ̾ëב¾¾¾àà`Š¢z{{_Í‚bÃ6Bû™étO§éF@ƒÐu„¾@è,B‘ÌyäÊæ\h½øfã2É4òxh(2U!Dè BwqÕˆË?V5®èBp²„ ä±zÍ—Îu(&1‰ILòædhˆŽ‹Õ/ ¢=¢™«É¬ÉÀÀ@hh(ˆ–Öf~RÖ/¢½daT°»l©‡,Ä]ÂKaÕ=(Ücñ +/±+§nvûÔäÉ‚À]*r§’,U“ej T-.U‰ (S‰ /Ë”bس7CÜ\øa¼¿«½%×Áj[’slJXšÊ¯P w©€J ã3 B%(Wø—+59â¦<êÝO' `î˶Þ*÷kÌ“îM#Ë”ür• B-¬d0¦Ë@X®â—+³ÉSÔo–óØö– >ÏÙróê§ +©ýd‰Ò««ø°y—Jð@]-(Uòd‰šóe¿Šò²¶$|86;Søõ¹’ +µ LÁ¸fvîšè ò+”X½*ƒl*m^Ås²6ws°Úë[Ÿ'ÕR…Ы`¢ž 6Ë`IIy[rºPZæikiÌ糬þ”àÛ'Û«`æØËD]œÃ4°PªTg‰Îþ2`cô|–Î×Ñòý^c¾d_š D!ò•BV@ÎKUü¿d‹NÈÖGͳ±2ç»ÙÀæ†<)æ¦Ä¡þÂï8þüR¥ÿ'éÂÓ…¿[³€egîáhùQ’oS>µ˜§úÁ†Jc¹ÇC¸K),W’LÅò¨Â°yvVæÀ\àfó±Ü¯)*ŽSjh˜Ê4áxuüs†CYÐœÒ#Ùâx©+Á\NÃ|ög ò$˜¿WgŠÀ™j–ã–à[KUç'„ˆXŠ}ìIu¶¸TÁ/c¢«|©Ö†ðq’S®äÎ_+M 8à:Òߥ:›¬ÍC«C?æWÇ3Çá€Ó2¥òÝR- +õubˆ£±ë¡,Ñ‘·E`¶ ·ú‹öžPzp ÖN¼CmŠæ93÷fY}Çk.¤  K|Üç?5x÷?˜)j, òÃÝÍÍÍø\[øvêr© +%z èUö+…ŸdóeÛ“øÞ.6Й—{7H«Ò„%©†ÑP²òåö¨€/çÊÄ?‘KÁ±‡ƒ™™Yn˜wcA@U†d‡BXåS‘e"ŒÃf‹ +¾VѾtÑ™¢À’ó]l!@ 31kq´×ÂpO)Œ©Ã3<ŒÆ 1.ÞÊ]²Ü› +q·çØ€:˜8éMøÉéí'P +sãzyݺ}{ÆçÖÈSZ­Æ¦<=ômm3Õ–Ëå<¯§§gòªþ{~DK?ÓêtôS8"GþwïþýÖs­));ZüÁùµ›Ú¢3[|¢ZZ-¨KæÔe3ÉesÉ3É ê†]P;ò6'BcÐŽÈ«¥±ÐØvp;„KÚC£ÏǦÔeäV¿·ñøŽ²kmíÿzðàÛ'ÿy¢Ó>£õZÝs­ö™Nû|š_ýýýaaaááჃƒ3úÈ–ƒ\ªú +¡N¸!â*1Ýõ­ƒÀw=¸¾µ ÅL0ž¯OgwלeÑjµEEE,«½½}®¹˜äç.###™™™Ðê$IvwwÏ>ââb‡£ÑhfßõëH___pp0EQ½½½¯fA±a¡ýÌtº§Ót£  Aè:B_ t~˜1ç‘+›s¡õâ›Ë$ÓÈã¡¡ÈT…¡3ÝÅU#.ÿXÕ ¸B ;ÁÉ‚Çê5_>|8ס˜Ä$&1ÉëŠ~ô¯~`@AËdp4ß̇ÐÐP8XV+•~y¿ ÊÜ S®“(×Q<‹_â‡w%Y¿ÈÝ´DáƒìÌ“Iöw5ñôÅtúX]G×ÆÓ5±FTǽü[‹Wõ‰°¿¿juÈg©§Ã×{VÒ—@=‘®† q`§:~œ. ¿¥S)t«úó-ox:óe"öƒÊUð†®Kb¶¢z‚wèÆdúbÚ?K–…ø8ƒúbžK϶(ìý¤Ü¸Áè=n*õ8úd2})íζ(?¶M´ÀõñÁXº5>šÈÄ;¦?I=Öh¶NÞì‰ òv +ð°ÿº|}Q=.oñS¨ÃKX=OŸI¥ÛÓº~¾€m Ì£ù®}»c˜À嘶aÛ¡É®³à½)™¾œqïÏËzá¼-òvúûÖ·pÕäÆôÖNÒcKM)t[ÚÝíÑB7ûUö¿a?¸> ç»Ùó5RØ2¸âã{ã%õxc9À5TüBý™òp¾ÌÑÊ,¬_á3R/ÇŽ2-W3eàã2ÿ© +ÔKÒÄÖfÄÇ +’>§¤Ï(™zÅý@àñÆ´ãvJ O§‚¯ãëmÍѦ•~øß³ŠÑ>ŸÊuíh3@c\PÑŸ¦~”,Ú"¶§é&9ýd>q´dc=ÿ‚¹AýH"PýÇŽe‹x¸â¡¾.ww.‡î¥’Û&çü¥VO¥ÛÒ»¶Dx9[¯s¾›-éØæXi uG˜Ê^P?9—(å¸;XÞüc$vQ?JoÂ×4áV'Ðç•Úú¤ÂHo;Ëÿ³_íAM]iüDYŠ<$ ŽÑð( `„J…$!<äÑÇlÕ)µ­Š;Ël»ëŒ¶³•â¶ît… "òVÐÅ*ŠL¥ÌŽ%Žèvµt·ê2¥¸¢‰InrÏ~÷|ÒÁý#¿æžûï÷û¾ïœsÏŒöu”Ze°WÔÊ(TO𲄡¦4X×Ë%‰l8ËÅ16Õï–¼¹qÑ£›ØøöBr> …—•kC8!à>ã„ê3!ÒŽH¯†”ôEÌ‹Ã9Ûß?Õc‹¼w§¥Q³Í™ƒ™ª»V«U(\.W­V[&L¤Ö`Ö £ù>iÖaò.i¾{çŸçï=ð÷’‡7n®—¿],Úãq€µ´ÕÎŽ<ÈŠjcEòáÄæˆZ<^orhulcF5±Âkæ½VÓœ™Ó¶v}Ãï?jغ­·óøMÍÍ»&Ó(»$qÐÝ't&3aƒ¹F£B¡pdddªªŸ‹m©ÜÅts-Gè"B½p;CŒn†­ëÛiu׃ëÛQ„Dˆ2®Ÿooß·ÓBþ© ˆ‚‚‹ÕÕÕ5Ý\ìök7½^ŸŸŸ­Îãñúúú^>¢¢"OOÏžžž—úYlhh(**ŠÏç>Ý ™……UлÓjw²µ5zú¡ïê@(–>؞Ǿ~¾ºìfÃnŽÆfd"ԎЪjŒ“¿T5 N1Ð9„àdY†Ð\iÒÀÕ«Ó-Ånv³›ÝžÍHIR0yCC.^Lñð•+–‘—fÃÃÃÑÑÑp º±³_]ó§ˆ76†e¯ d½àÓ¿ýŸŸ½–Ÿý>ÿÂE«7…Gçø#×™òöH­wåáÆT\#õ2\“<†êÇO`´NŽ›Òð‰¼‘*YŒ¯{°·Ë%•wçá}©´—l OøVÓÁ·-Ï9_,Š\0˜/çy^)“⹸IAMþ úÄзܢ„Ð×Jâ2Á})×]]¼ŸÊÇ-é¸FNcbhË ôäÍé¸+÷û/—y;'z W˩ЩcÒjecT'’·ŒîWàã¹7*“–ùº‡z¹~•ˆOäཀྵX;‰pꡜޑ‰»sÏ}ëïá ÌW°®ƒðã9”ð1Ú2+¡-´ëd¸U‰Oçÿôב Ü(áœÙŠã!¸Y1yÎ-¢èè­éødîàöÄ`/WqÇÍ:Zxƒüanm$ÍRñ“y7v%½Îu_:ö¥bÊ}_®IOšµÐ+ž7°U2ט'…ιª’à.žŽ!ÿ5Éքˆ†ŠËÁG³[>XÌœå3¬KðÑA!u)céµÊÜ‚z9>œ¬,{;ÌÅaÆ+ƒðÑ•øPÖ½ÉÈ[|-©kϱm"œg2~—è‡eâÙtÅåVõp…Æ8¶ÍúreІ/×’ nS\?¾Öž¾g<瀆TPýŸ¯~îà.ðc^øZ=êá1Õ»ås•·®üþ­"_YòÏÿÕ§PilH_ã´/$ZúXŽ¡>%{‰—ç,‡³Q!(Ò°ªÑ’¢:Zã‘,²U¹~9×Ùѱa)¥i­¤Wö°¥!JwÞðîd).ÈÉõ7"…ßê?.ysã¢ñMìÑl Ùkƒ-£yëCW}¼$ûÃPn˜b0œªE Œ€´ã…Ò«a %}óâpÎö÷Oùܺ}›LJ6Ãll6>tˆœâ¡©Õj +—ËU«ÕIl2aÁ¬ÓõFɤŤci¹=r¾·¯³ª¾å“mªü‚Ï"¥Ûý£wû|â}DuÜØZn\½o\½|Ÿ¨ŠS5_X7?¶ž+Ú½ úo;„ñ5oý¶ù7—œhÜí_—u÷ïß3›îÄ“qÔl%´ZBg&M6˜k4@  +GFF¦˜²çc[*w1Ý\˺ˆP/ÜΣ›aëúvšAÝõàúv!¢ŒëçÛÛ÷í´j#¢  €ÅbuuuM7»ýÚM¯×çççC«óx¼¾¾¾—O ¨¨ÈÓÓ³§§çå‡~ŠŠŠâóùƒƒƒO7Cfa!|TлÓjw²µ5zú¡ïê@(–>؞Ǿ~¾ºìfÃnŽÆfd"ԎЪjŒ“¿T5 N1Ð9„àdY†Ð\iÒÀÕ«Ó-Ånv³›ÝžÉHêgü6s}ˆD“ááä—ñï8ÏhÃÃÃÑÑÑp º0ã¾ùÂ2 +BÒV)VOŠ´UÁðBæ»!yÂYˆé(ðvùïŽDÜ–AìLÒ—%ËÅÆrÉd0¨$F•Ô¼; ·¤ÿ¬’ļÊòe; |.¢Üwûc¾†Ç¡W‰‰r ®–áŠOc"}ܹÐy Ü[”D•Ì ¬úŒ* ¡’˜÷$ãæôkÛW$²Á}Çí̦hܦ$öÈ eÖÇ3—‰ÍU2`þ}q\(Ç5ǾQ–ˆ›ÒL»¤t\) k¡-÷Ê$ܬÐìHá^Î?ææŠ$c™Í¤•K9®–ãv¥ú¡Ë ˜ ü™?n‹‡T˜+¥àn®·†(áänÏ,…ÏwwàÿÍBÜšNîN6Pîֵ멼‰)÷ªdxy°$>ØÛEèÏR‰ñA¥±Bjx„¹µ¤ÑUƒ´WJq«òz™øµy.ü¹.—yk:Tœ +=Y½håR30o‚ŠÇòç¹óÌJ a”&`^:y¹0÷}ix_êÁ÷³`†51œ;ÐÍJãN‰žÖn½^tÑ©–«—C•+Þâ»9Î,Î +¤f«“T'‹m•{¼åp Õ3ëÂ]g~Ï57¤à†Txnɹµ5BWS%1UH¨X-Š¿PŸN`ŒÍ)†Z9nL%Æ^›´g %L;¥xoêOÛâc˜àÁu;»EH-´ªdX§U!ÒÌPñ…úSáÂ9ÎI¡· ûÓ€’±Ìò&Ūƒ+“á¹®B’áíîäpf“Ì€>§·‚Iײ%$Á´SrLµò >³fÎØW°wdBÉŒ¥¶Ö²¥©HXM•×KÅ )N.ÂdŸ¼ÂEYï…¤½ckS¬ +V¬Îx7(w]˜b Ê‚kÁ+Õ „iv¼0@z5 ¤¤/b^ÎÙþþ©[äÏÃ8;‹šÍÛwvNÕ]«Õ* +.—«V«'L±ÉŒ i ŒÃ}£Qg6ëI’  ÿ/]þ?ûUÔÔ•Åo¦¨¨A D«E#hk@ðcµK%‘ò¡y òKWY;Ðfv;:v¦Ìvw§V]´ø­5_$à7ò¡8íììÚv«¬"][éTí–­#¶‘%¼ä%ïî¹D+!-JÁ?ò›3ÌåÝwÎùsî;7çŸÕ;ß]÷Þë+‹sVs +¬9«J~·Ò˜gÌÊÓkßØ£Z¾'s¹^ý†A›gÎ*°d¯2f¯ØýÚvåç™ +ß9¾÷Ã+gÿãlu€#0a˜vš¾çq;YÆéqѬÛÃzý0·Ùl‰D*•:ŽF=(Xoµ„†ðM]A¨¦3Ä;Íó7¾á‘YÆ·“%q-LYßp~XÈ?1†Ñét ¶¶v¸¹𬃦éÜÜ\8êb±¸¡¡aè  +…ººº¡wý4hnnŽmjjz2 Ùk׆#TÂu§s¤;ùkM uEè+„>F(‘»ÂÂ…Ÿ|úÙàÆ€´tt$f‘_·!t™TwêçªÖ-ŸóÐ×ÁͲ¡IrÅ¥›7‡;” €§K&¶ç{ «Ó±Ë_Ç7®ã‡O‡v»=!!.D~èÈ$uä²5³³Þœ¥Ê‹QçǨ ¢ATùâîE¯¨òĪ¼™YoÆ,]·(g/|Ôo…cnîY‚k´.“¼S/ë2P]F¹O¡r', rE+UmfyêÌ°i‚àË›“pM¶»Dáõ~t‰èe´‘òîSâJõÕ¢WNÌ¢B¿õjÛšÖixàÝÄÉcê°e ˜R>ªº½+•š?"Ðìˆú¿%yw™²KO9M ðòã!m§¢ a^­þnKò<Ñ8Ytø½ —gºÍd×ónïzÊS¢Àª½,Y.ž8æjq®R3fØ•õK›—‘ÂeJ|BûMQ¢H Ì¥ÓM[S ¯Ô—89ÎNÌá Eò×d]ß–2ê8P‹àÿ÷})Äâµ*€áïËõCuk$ùÆö”¸É|ÉôÐf=…k4´™…K—uÐ…¼u‚:T¯RÛŒò¹/ðgM ÄÇ4®9Trî;j±À1WBÒ®%Ή ÌSf†~WœLJf匩ŸÌ›zJÆó#*|4ã«ù#ÀBÁ¢)mPÇ* m¢|ŸXWgÁ(ÇÒqEæ¾qッ¶æDCÅñ%mù+ºIÎe•g÷+qµê_o¿<.xÄê”iì‘ |(6ö«NòÆùeL†—«wæˆ6ñÖ«^ríOLJ3ÜÆnã¾ürÉzŒ™Â‡ÓomOI @}hܨxMSšÖ©_Ò×»ÓÔ“LØrÂYµ@ÅU—ŠEO›>{‚Ã$Çån3ç—”›âª#g-rÈ-]B-{yrèè óïIðq­Çµ‚þ?‡î¯ŒÖS.Hïá ï~e¡ + ~òégƒW~ÐÒÑ‘˜•=¡ºLªÆ;õsUë–Ïyèk„àfYˆÐ$¹âÒÍ›ÃJÀ`€%S™DnÝÂׯ³]]ÜÿCçßn·'$$À…”’µtõìlÝ,uA´QåǨòb´«f-}+.5÷Å‘“FÇŽu}W*>®¥2§AÖe”w)Nä ÝóbJ(|4ÓY¦TÆ #ÁßlJÄ5W‰Â©ïÕòa¡Û¸§L+2¯oMyuf0O˜úíɸJÍXÓœ†Ç=þÄ;Ù¥<.Ï´ï]œ1w¨Ï™rî¯ðÎìS‚}§QÖeèåù¨.Õm¨W©nìH}%2T'l5Ê!W‰?¿†Ã”ïíf +tc&󛶧àJCÔe½$i_ê.#Å–¦áãškÅIÓƒyÒ‹‚ÛRñÑ ¯,Ë8EŠ~`秮ɖ×"‡5ïZ/êó"øß—B,«Âg±8­‡kO‰¨þðá’ySC¢BoÀš†6É»ôÝ¡Éú!” =Þ=f +W¨Z­ÊùSCf=?¦iK2®V», +§¡'3´á1×$g7óR’´ÅI ¦…óähÁÿ>HÂÇ4.«œS—õ­×ƒÀɖתÀ‡2 Lÿ~'þùñ£ÀBtJ˜ߌÓ^›„Þ§„#wD77llÐîe1¸\…÷§õ¾Ð_öˆ Ƚeip>Oýù•pþˆ·eQøH>¨$úª5ýÈñs›(|H yÞ›ƒ8i^òìWÂCØê-n?"súÁô–Ý‹©X!èΟ6þºE¸FË”¥qQ÷©‰º72rÔ+UpÞfGðÕó&´CÆŽd¸Í”óÁ =é…ƒq8Ý]ªX!y!ltÐ… ‰@˜±P\iü~&ò×e$êø`ÚúÌ!£ž«úãoð X{Tîó];‰¢Œ´‘JU«Y.‹&óƒ3DËÖ&¦Êï·ƒiòcÔùÐÇÄš•1¯ý)N»*zúÒIF"t!Ì _M ½6ÒrƒØĈˆ//^ð½ÅxØn³Ùk×ØÎûÕîììT«Õ"‘¨±±±ï. ð²½·0Ë-9éyäv»îÞ½ko±w8îÞ»Ûv¯­½£­ ÖíœtpÏaÝæ¸ÛÖÚÚæ°·¶Üi¹óãýŽv–}xÁ{1¸ò²Ü#öÜü6›M"‘H¥R‡Ã1Ш뭖о ¡+ÕÃt†x§yþÆ·3<2ëÁøv.,®ƒ‰¢"ëÎ ù'Ã0:N ÔÖÖ7—žuÐ4›› G],74üŸýªi*ÍÂoY)P¨È,XÀ TdÔØP>¦|Ý{Û½2ºËºŠ³¬ÆMÈî’¬›ùá~ø…Îì¬ÃmiAPG@Pý5j‚b£ÉŒbFç‡Lw3egˆ,Np)·´ôÝóÞBU(uE„ùÑ''´ÜÞsÎs>î9÷í]zuuuR©Ôf³-½ë×ÁÐÐR©T(v»}a*kkc²Óé6™NFˆ ¡[ÝEè2ByÂ>ŠŽ‘^¹zmqã +"åUTnDèBIÕD×_V5¯Ü¡ûÁfÉB(ŽÑ<\îP‚"ˆ žgäàá;…,FFFT*,DqtHAEòÎßlª¨Ic«S‰1 ¤üý´{7íÚúÓ0yøÊ|Tˆ/œ&ÚÑ@O˜É—9B;ÌäËd#ÛÊøÖ’²Í±‰Q¡_Ìà N‹Æ«î»y–ºƒ£xŽq73¸½làXzc40Ï^Õ8ŸÓ»š´n®GæEƒ´Ûª×OŠÙÌ5 ž‘ ¾½?¼»Zt^Ú¼?×à×ËÜeaÀ×ÀߊTë£t›¤OLHédc ¿ˆÚDy-»,ð>fÑh7Ko…ÿóÃBÂÜÂð3ùy˜ó&ÊÕÄà 죣êä˜UÀ\"8^ÞÝV6‰â‰£Yº”7·…Æç C)#A=3>¼ï@.îÔO5kÉmœßz1æé/n!ðï¨-ë"²’#¿ãÀË›I­!3įyNÒ¦½ y3Ó¸]?Ú¢Û*§­ ³ÍǬӪ Ð*^]ÈŒ»IƒÏ– ÔçoOŠæ…rÉ7‡Õ‹³ÉÛiÀ‚™ž²2øL î(í©Û¾6r%X¨ÎY÷C#ƒ;ËœÀ™››1æ¹4’”â-îзÿzKÌêUé¸M[4pÝñ\zçx(<Ͷg–Tò[: bÁ§uN¡dþÊMû’÷àS:hΆ_¤!‡ )n sZ7i¦!öyŸ¶ÑáÓ%#'Š5 +x_FÛd‘_|U›lÖL4ø¡-X£}ý涒Š÷×d&ˆ [bŸBëž-qš½Q{[šâÍ4iŒ3%®“cN|tØŠ»ÎÅ],´´c¾ŽšI¬ChÞ¬’øŒî¯lJd芮½[a’¸š4ó6äô3EjDÆHGÙˆ…¡Ó¤`høŠÜRÙÏö‘!¦7b0ÁRõF¹awÚ{{å»SßÎ$ù A¨!,ˆ'(oL ½Ã"T.Äbã㿼wïU×–wMâ…nÊññq–ee2Y__ß<ößà +ö¼†ýáááìì윜œÑÑÑÅeõâ@“5JnFèk„îÀé ‰zDŽo7Eä¬Ç·Ï`a L–œt§÷óe!¿`¸\®šš‰DÒÝݽÜ\‚ø±ƒçùªª*hu¹\ÞÛÛ»ôêêê¤R©Íf[zׯƒ¡¡!¥R©P(ìvûÂ,TÖÖÂ"·Óé6™NFˆ ¡[ÝEè2ByÂ>ŠŽ‘^¹zmqã +"åUTnDèBIÕD×_V5¯Ü¡ûÁfÉB(ŽÑ<\îP‚"ˆ ïÙÆóâ5ß¹çcddD¥RÁBKBòËwì˨¨I×SõF9[ê_Œi¬1Õ°;uÇ^µkCX|XJØÊþ ñÅr§Yãàè Xœãl¤ñ§¥|«ŽÍ\›( ýêà»øBù¤Uãhx¹º«IƒÛõõùòh`ž½^ÒPÏé]MZ@‘vpÔ„‰r[|¶ì‡ʹÔ7ÇGÜùƒ +Ÿg'Oê€<Ïz³ ¿º@½C?ðq±j}TÉ&é3…?-q™_J›Ü@Ô ÿ´Y«Ëf¼%þöX!ü 6ùçn›+¼‰â9ÚeÑÏGÇò“¤«€¹zƒd°¾€x·Ò3Šô\ à”'i¡‰ëNö_'Š”I ž¹N|ÿO¹à}ʪá}1ú)í„´˜·…ÆeÃ\ñ¶uYÉ‘ÿn p;Ñ8­ÂÏÃÔï̤‰ÆmúÑVÝV™8=nµýˆÒèœQw@u^´ \'~AqJ¨øàñÂí‰QÀ¼PÓä]ðN†”Ìk_ÁˆÏ”àöÒžß+ã"~ªsž˜IyBÀ¹g„‚ä{Z´¸SnÏ–5«C>ùy:ô>©uróæüÅÚ ü»ÊoîÏõßQIDýT /DíW—çž‘÷´êðE·+hëë!CŠ»E‡Ok'ý´ÜlkÀý¤X£€÷e´MñÅ9$o͵?¶ŽgAQ¤Õ;õýÇ ¶¬W¼³ö¿ÆRâ—óe††G~ÊÊ€w‹vwnBLXȽ¿äp[à‡bºâNˆñ”,©Øµ*¤kïV|Þà¶2 sC{Þ í„gZºƒý…¦ÓÈ([’Wš¸sߦŠ_¥ûæL³YÌ@&Xš^bïíQ”¿Ÿ¶!S +¹…ÎhE â ÊHï°• ±Øøø/ïÝ{Å­åyáãÕ1>>β¬L&ëëë[¨åÁððpvvvNNÎèèè²8Ðd‡›ú¡;p:C¢Q ãÛM9ëÁñí3XXd„!YrÒÞÏ—…ü‚ár¹jjj$Iww÷rs âǞ竪ª ÕåryooïÒ¨««“J¥6›mé]¿†††”J¥B¡°Ûí ³PY[ /:a:Ý&Ó)Ðh±!t ¡»]F(OØGÑ1Ò+W¯-n\AÀã±±¼ŠÊ]Bè!©šèú˪æ•"t!Ø,YÅ1šƒƒËJAÄkÂã!"|›à==7±Íæqò >ì, ###*• +¢X’_ž¸c_FEMºÞ˜ª7ÊÙêTÿbLc©†jùνŠâ_¦¬ˆ }'*ìÛŠñ…rÞÄ88zÂÄL˜(AhAŸðÂÞD¹)ÜV·jõ›c%¡©ñƒÓÂ8è]j–®ÏìTƒÛËê óåð€²×Kú«ñ9ÖÕ¤spÌŒÓÙ®g®Pîf n/}ÒPlÈŒõŒñí?fƒ÷É“ZG9ˆ ÆŸk/Êeað9ýàÇEª·%LºtÔDã¶R§åyÚ~˜óÂEžcÜð®jeJ2֤DžÛåæÞÌ0§§š´ÀóQ½:):˜«S$ƒÇ ñÙR·Õ¬?×æé_Iλء¿)#@}sBøý¹¸ƒ…„ðþŠ5“B è¹iü{ŽÚ*‹P%G}ÇQø< Æ…ŠÓóDMóæiË“fª6ÚªÛ&‹H[ýÍQ5îdV ä|Fqv½HN8’:Rñ¶ÿ±_íAMYüK(‚K‹(–t±RH¢pïÍ‹<`]Æ¿Àmvh§ef—ݱ;ãÚéhU¦ky‘ ˆ/>¶ýËê.U™Šì¨àŒu;˜ºÒaÜ ÈºÎ&$Üp¿=÷$à -é9œ —KÎ9¿ß9çžïžÊ»Í[6¦ÇòÍY CûäÀÅëð÷[ÀŒ±Ùpsȧí>ª†è_˜vÈRØØ:zl$€D|&¥à·©mgC0:ìà¶lp…(ýVžÑ·TÜkVL·ªí¥÷ÞÆD4V¤CÉp»Úk Ø¥óxÊB0GÔøŒÁ¼=q²ÇåkSávåT€’=jÂÙBÎÛ5ŸV($쓲A´êÚ®¨ÚT«b6o‹±&!u>»X5oYŸÊ×®Kü/t>´ºœ}ýô¡¥)|LMVBV¢Â>(²S-O@ +Ë=ÑÂÀñ¨z_U–॰®†|FOÏ œñàY`î·e{²C;f'Éœx ¶I“¶í¼jcî̤ZlˆÕ³#N¿#»¦AbØ‘½fÖèŒ6„0§LH2…ô:yÈÀ-bI))×–{l1Ì4¾qƒ1›™¿]`&ÝË5w¹\:N$ .×6¸ât:¥R©L&›˜˜ +€Ý{?ÆŠÐm„ú`;C¼K¼¥Ö·ËôóÈèèhaa¡D"~6Õð¢ÓÂM§+ìtZj4ö"ô5B7ú¡MÜyŸ üòü…—WH–±‡7UUg!ô9Bß°Uã}õ´ªùõ"ÝDN–"„’)Å­‘‘`S IHB’çæÑügþðG¼s'{|wEd||¼¸¸D¾ \nH«y;¯Ê˜«­ËÖÖ‰uõÙµ.GWâ­ ’Ší¯½¹QóÃÁ +|Jï±R.3é¶P“¬“rræú %}6ŸÔL¶)5ù‰"Aä­½r|ÆàµSnÉúmŸ4w›I™dZ¸£räÀy¼ é«‚¡å¸KO;Tð¿ÿ€¡Ý¬‚ó“•ÿùŒÐ­Kó¼Õü+ïIñi=}X ÿu³¡©ÅCt_ …;µ#Ë‹2ãÈœ„ûf Rém HseVYsˆ®}hW¨ò“r~=´_Þè–G$Íc¦&Í„×BM;Tø´á»òŒøH@^º&þnóf|\CÛYs·•] ‡œ„~\Q˜ æù«cß/Á:ŸC1k˜5›v å'~ÏDü2•_”±êž‰ÄÝlÅçä< k>)ÚFáíÄ!Õ†ÔØÜäèa Þ¥óÚœ9ÉE!• Bs?Qy÷Àæ×Óãù–¬øá}ràâu°ÑgK¶‹K;ãPà£(ÓÅßmLŽõ²Ô6ðØüqz˜EÅ}â6€ïümABtøG5ÙÐ~øˆŠMÚ ø…Ügoš)¯YÁRáSºK;‹„Ñï–§AÉp»jÊâG¾˜-«´•Äí•ø¬Á´=q²ÇåkSCô)+¹ ^l¶ç¦ªÄïRNIØ'eƒhÕµ]%ÐêS­Jy@Ö³çs(q—vhÿæõ©|M^âh€¯mk1m§ðq5}HU/[>ð~)”fª…œÓ2Ìuµ¿µ€£²×µ*2¬»¡FíPÌ–ŒîŽÏFBOŽ·Pð$Á¨è°Mš´mïäU³CLÌN*vdåp`”~“SÓ°>3ó`-€ÎhCsÊ„ô'SH¯“‡ Ü"–”’r}``¹ÇãþnnfÖ¯Ço¾ÉÜù~¹æ.—K§Ó‰D¢ÁÁÁåÚWœN§T*•ÉdA°ÛaãÇXºPlgˆw‰·Ôúv™Çîz°¾C¨Œ›`¢Œô¾þ«AÿÌBÓ´Ñh===ÁÆ’Ÿ»x<žÚÚZhu±XÜßß¿òššš„Baooïʇ~-,,”H$ÃÃÃÏ桺±ÞZ¸ét…NK&Ð^„¾FèB_ ´‰;â„_ž¿ðãò +É2öðᦪê,„>Gè¶j¼¯žV5¿^ä¡›ÁÉR„P2¥¸52l*! IHBò\ÂÀfÿCC89™YÂÜdVÆøøxqq1ˆ|A¸ÜVóv^•1W[—­­ëê³khŽ®^¼õ-IÅö×x‚KSø÷>%ði½ÇFºÌĤ…ä” + føé±Óv +wj]¥"W˜&ˆ¼µ· ÿÕàµS.á6?¶sMµÛDyÍ”ï° +wVí--Ériƪïö•áSº)»bÖü±Õ<5Q“&’>¤€ÐcW(óÁ<¾?᳆©ÃJ÷g`ø)φþèfÂc"}îÒß,ߘ[.Npš ÜQéµ±žgãàΙ“lô +wh'¬$‘#'E}ûaîÖÁMö óL…¦ÜltÂk&™C*|ÆðÏ=eiñ‘€¼4Sp瀼ùJ.:kå1/m¥\’5äg«F>*=•æù)17þ\ Ñ}Ê y³ø, Îq÷X(–x·î‡ƒåù/ó¥±£&¶ân+[ÐEËÍUœÍ›™ôµ°æc-Šõ©üœä¨¡ý@\ï⦠+.½ CÏ$Íc!¦+!ÉÃ{Ë +Rcùæ,ÁTü´Þë¯xàrϤˆOCÞŽkðÉÊó“øáà¡^ºú¢[7iõ·±0únW€cõù‚È°¿ÊW¸]5ižÛ« ÍgÚ¸OCÇvkÿÞT˜ñ–Ïó~¿ùöšKОts¹\V«F]*•ööö.<ÊÊJ±Xìp8>õ£ØÐÐPZZš\.x¸æŠ +ø¡SKW§Ëduškiw t ¡>„:ʤûQ´HÜÙuöñÖ´9ldl,ÓdN@¨¡›¤k‚óêïè:B°³lB(†ao º” -hA{$ã0Gڻ܆T.%™ûè:½µpæt: +lˆÂ¥1¶¸<ÙT–¤/•éK¥†í²Ù½<Ñ°Cj)_—÷Óx¹dKläWÕjÜf¼W˸ªÔ÷lŒ«Z >QÍüŸ“ëðggñ;…cõš<©hUtèÍ?(ñ)³§¨R¹ªU<|Fú¯|zljîŸ,üÛî,E\$0ßõ÷×”}²ACá<– &ªUþP¿G¸©=M|Òðåþ-Œ~D ”W~§Àí&O³È»«Un_jλÚÏ\ÍÙµø㧯+S%OçÄ‹¾¨RáO-ã®â³0~ì}…ÃE·Â½ ,dwV«se"éò°¿Bá­…“uD7×´nS©ÉʼnÆeSMÚÜ’;L7wg‚bÀÁÞ·+²{ \Ïøáêû¥#‚xj/ÀÛŒwöåÊcÂ3⢆l¤ãîò°ÛFt›µãüuÐÞjüª†Y¿2<)&ì“ו £»ŽuUå¹I^fFáê©®hž5×¢Ñþ±'ëG”y®T8ðwMž Ѥ`fëCà0lM:|LëO¿´qYĈ°cóʯ)7LìAZû}…ó3À´v|8tn.MŽ ]üªY +¡ð[ùpËMåÊ_þS¥š1„´é5jo‹tîzùÙ¨Ð%/*Ÿ™ª÷—HµßÖÞƒù?’ï±MÁï«ÚÜõxÁçû¶ä$D656òƒ]dÔµ¤êiÈ̪Õü¸’–AÇ[·vg&})›$©e@ÿ¨Ó¹ªV ïò ƒ«±>ºøê®Í¸ÃèµkîÑ þ—‘™ÁÓçZ? aß.àZt¿eW‡…¸ÊÿBù©Ú«òTÓeä],>y B(0téâͺXkEÊÖ_ÈçZÁ|.5½hÙ™lØ!‹KŽ†cLFB˜:ôoÍAÞa2ÒƒØò+>¼vmÞûÖgŸq:„ò._Ƶ·ÏwÇ7 ‰¤¿¿Þ©jÃÃÃéé飣£!°«¾.*"܆Ð-„®Àé . +æ:¾½/ g=8¾A(›®`’Õ«®ô^ ù‡6ÇSVV& +{zzÍ%hOº¹\.«Õ +£.•J{{{ž@ee¥X,v8 ŸúQlhh(--M.— <\sEü¦¯¥«Óe²:͵4;º„PBeÒý(Z$îì:ûxë +Ú626–i2' ÔŽÐMÒ5Áùu÷ t!ØY6!ð7]JЂ´ =>sOàË—qw7ö ùw¾çœG0§Ó©P(`CŒ†(±Ååɦ²$}©L_*5l—ÍîäVbai¢e纼çâÑÒc¢èß-ZÜUŒß*àìZÜÀ‚sõ®žõÖk¼u¼Ãw¸Èà-nÔ⣸«äk»V¹F˜°léí*ܳ .À l×À'×ÁóZŠe8SC€Í:ÜZˆ»ŠníÍJ‹æ9 Ñÿ<‡Ï–à#z°v’C.Ö'¡œ!‘›tø„wq@'øFIdßž,ÜmÁÇ ä;y˜ReýÌI!$¦]GÓC®Ûoä$ÿ \ý%@:‹qK†ÂIíZŽ–9…¥(¼øëðQÈ^4RÇd®”-»½?ê–Ï5RY(O_êiæ42`Û +ñ…mïÉ^# +%…¯TáÓEÜ‘_jBžèæ݈O1§Ò¸õîþ¼K"¾~eÄW³¡  %Ï€Î]ãë%àëH³–èv®d`_nâ²°\™xXè»Æ§šS ;å4;MM:®Çç,ÃõšM’§7¬ ÿZð·a`XŽïx;#/?*$2wH‹[ ò­=Y 90ge¢»Õ@†L<@:®6|ºp˜ŸÞŠO*ß( + å9«¾9°þ|¾ã~å½ujBÀî¹v3~Ï\û³äˆE{MRü—"ÜnÄMZÒS–/|z`ˆtvÚñ&:±EþUjø’§væÆz;L¸ÃÌ5Ã]¯öo +eÎÐŽäÃ`構޴$"j{M \«Ÿ2V00>8;5o^xûHQ,¼øÔÖÏÿ´%+NXE\äG¯åàîmd†yÙiÕtÞXß‹F +gIv¨îx!>[|}OVü²0V&vBÆ3E\‹nê5áHsó1Œßé"W‹®8õ{Ñß ùà•lÜSBÚM&‡Œy›fˆã¥l1¯8ÔøÞVïIÃ˪UK/j{iY + ;d®º’LM”†'m«Š£Ûmq6hØD8 °ðlÃêç“jýe²é…DsY|š~žd&Ÿ2ÞÉwrKn)Oyþ×ë‹^”¯N¡§ßAèB˜:ôoÍAÞa2ÒƒØò+>¼vmÞû–ǃûúpÕAÜÖÆýkd¾èññqƒÁ ‘Húûûç: 6<<œžžž‘‘1::»êë¢"ÂmÝBè +œÎà¢`®ãÛûrÖƒãÛ„²é +&Y½êJïÕ€hóxª'¨æ| +Ôú"¤‘oÑáv>Wòñ+™þË~µ5•^ñïŠÄ%†G$ +¼6B| ¢Ó´qÖŒ«ð›“Ò›K5u[å®ýJO^Ë5C¥¨‹gµ€ì¡9óðËò¬4òÏ‚C–8¹pæžÝ&ÌÆ%4â¡eòKkGÙ™>p,êïÙ +Ük7çˆN4Xª†®>:Þ•‡g’}¡Ø¹ÂãÁô‡¦¯z~\sgÿªUž< hg7GºR°n³tª_D¢Od²o”Á\“òŠG%ûFê}ÔI>j½ïº4ÿðø% „8f«!Š („,6ÿÞÚÛO }s÷ô¼ßÚúºŸ-üí|òÄò ê6R¯ÿÑÑjµB¡°­­íucg×úûûCCCÃÂÂÌfó¬8tò}G^B_!tNgˆ¸MLu|»Cà³ß®!¤¤w0¡÷Ý–{³~Ú666–‘‘Áçóg‹Í~è6::š––£.‹[ZZf@VV–@ hnnžùÒob&“)88X&“µ··O/CRf¦+BÕôîô9Þ¦Úšðî„ÐgµD=B +ú{´ÀUpýFÃwËËfSØÓáaEb’¡+}‰U#š¾M5ÆoèBðeY‹G̺/ŒÆÙ¦b3›ÙÌfod|œÁ'üÏð0uª†ª;gù÷ öîLÙÀÀ@HH|ùö*ÝÃybF@Bº$!]¬Ý!ù¿N?ÂOS÷ÊâÒE×y¾$|3߀#Óöšî:Àómªöë™èd&:}!ñ§Î H'.™ <áƒ)À©Ob×à1}j9œÑ•Üu”zþ9øÛ6™«©ò™ê^î Mç€êoýQ†Qt¿Ãúéᆿœ )6c-ÃŒ·xaX“õ•¾((§(cuû~„Z(×ë!¹w>Û¶Ñ+Ô0$ß$Â^ž)½©s‹!± I8F.`A«dFªçŸi•µ¸ã‡‰æ’»ÀþÒ¥]$Žà7 Gœ G\϶¹cMNÖ†GüÝcÈ&ÃlR¨øOæ@ï2Cú苘Ëëý|~~·­Âwßþy¿ðâ¥Í“›í6|mm­··×ï÷/,,ì6vmyy¹µµµ­­muuu_\½{Ç"ð·ùšðvF˜˜^ß>fð]^ßÞ!$EO00ð`î³}ÿĶ±±1>>nµZgfföKÅ~¾žÏçAꪪÎÍÍí=€‰‰ ‡Ã1;;»÷¥ŸÆ–––š››‰Äâââ“eH_¹b'ä6=>ÅÓi§£ O'B>!džaî’¤Ï#›Ýñî{ïÿ¸}Ulûöñãd:JÈÛ„|…Sc>ø¡©iþ!C¾ ž,G »{¾|øp¿[©XÅ*V±§³B¡üùï¥Íçš +›ß|³Ç(VVVZZZà(XtôÕç.êo87;7¦ö^Š}¯Ó[xwðrâ×/Æ-" án/‡MvÑ*-¢Ñì6˜ÜF³Èš%Î,±š›DVñK«Ä:}|½j–ü§ÁÆÆEÖ&ò.?Š z7Û „þü3p5ÞÉ2Û¼œÕÍ5³µwý $çòqž /ùc—8àÜ.³VNÁ¤KŽÓJcut–îÄ¥ ©>f¬uXš­ö1 ‡ ¨bÝ2iø‰R‡½  Ìà½õF SµãÐ=š¶·…—ã.6‰’E™«®®™ª@;ç‹Xœ2ê aK宵(-¶ ÄÂt¤ïѤô +è-«ÆdõpNïô ¸}¨R'Ž†®´hù%mGpÛt妲tc²b’Cæ:C5ðcvê#L… +‡@ƒ e(5Ÿn„jaxXÉ›‘sB7ë’XQDP¦‡sÁÔ@'nÖ .©ëø„[08…"f˜E5‡¥a<÷²IÐ ÿÉè]fH݉.¯÷óùù]?·­úÓ˜MòfþµÛèµµµÞÞ^¿ß¿°°°ëÒûjËËË­­­mmm«««ûàêÝ;¿EÈׄ<€·3Â|Äìôúö1ƒïzðúö!)‚æÌ}¶/àŸØ666ÆÇÇ­VëÌÌÌ~c©ØÏÝÖ××óù~œìOG y›¯pjÌ?45Í?dÈ„À“å(!bwÏ—îw+«XÅ*ö”V(ÀŸæÿY.4-$›{~¸­¬¬´´´ÀQ°èè«Ï]>Ô?Þpn,vnLí½û^‡[tAlðw‰ÞѸÙbä¬uGû‚]£j2lOŽåê!í"UtúM(™QÚÓ¡Ô`¨{,Öü¼ß(Ô„Úæ_ÕwÅán{&x,[ Ïê!eÏBxÂÛÓÁã9åôpôìyµg8Ò‘ƒœÁöŒ‚!Û|k¬Òù‡Â£jS5ÕÂpÖÚ¦._T +·¥CÇt¨Áÿ+ ÙÂɬ‚ø3¡Ž\¸+ž¢˜“ÙжZzË¡Rã)¸‹+íÊÉQõðY__cjšOûO]TÛiZìŽ&IeÃàZEôœÞ ÔmÏBiåôHäù jÏH„VW’åÅábÑ2{”ó`ÇÒ=¦6vz ü˜¸ÑTÛÔ)w^Œ&€ÏP²Ì^¸@‡A“C×ZãJ÷p¤;¯tdiT½T(UŒMé`ð."±Jçhìðºf͵GÎú;G£n%µ‰gC[uR¢ʠ—'žÏaõí—™/iKI …O½ ž‰*Žªj|9u‡Ì@TôŽ¬*EÉQÁè0ÊMá^ðä`¸g8zr(œDÎq :cÚˆ‹^L¥è±éPÇpôÔŨÒ佉Š©ðD[µÁeŠÔ•¶Iq +šÞè|C§†"g/DÁ±:Ul„¤&’-±šä4T-ÊÉóÑÆNÙ àÄy›á¹n?h cPÑ'žÛÒø6òÑÛ³úFƒ‰wå#©ìÿèDç9IÉ»]ÃÈÏq,]ÜŒ[µQÆù_ö«ô§©m‹¯ƒBA)ö´´Èx¦–É.C¸zõJq¸NK[ÊT +ôP(Š +Š÷}ñ¿0ê'ß_ y/q¸Á(öƒõŸH¸ÏFÉÃpà Iûö>§…–¡ *õCWVNËéÞký~¿µöÞìÈK´p$í%¨OTG3 èêÔ'?;Šêx¼¬"+«0jQ`éJúüÜ”¯w¡q¡­Dß\Ø`+h°"×Û ôøY$>c¼Á†½±¹ÈÔÅœi*È.Ì‚Bð€èÁ¤7Gò0‹±œÜÜ·Û>·þ;¼øŽ¦R…þù¯íÎ^XX0frrrÛ©j@ ¶¶¶®®nnn.!nÝ»«gÞø0Žng@¼ â]ß^ø®‡®oNâ­4ùÇÇýo~Ƕ´´$I’£££‰Æ’´ÝN'juŠ¢ü~ÿîV«Õccc»Ÿúklff¦ªªŠã¸©©©E° ªîˆ»Ók¼;ÅÛšðîð +`‚ Ô‹ç‘R¥~üäé·å•´8öy~¾ž·”<ø€«F<Û¬j’?'à:YªéßOO'šJÒ’–´¤} ŠšûOè—Ó¡²ÒПî2€ÙÙÙššt ÊÉÔSæ<›OÇ ¬ÁMÜ”±‹Žçn¦ù’Öà¢3å2Õá}&é¸YiécÑs/kFOäü粋/ÑOzÚ/é:ož¸è¦¨Ó労 %®ß+­ýœÉÃðhºÁ³<+ÊQÌk/ÛäeÑOAƒ=èq1y¢òzpX4Òv¹Ôu³²±µ˜ÌNGÄÙé¿Ú‹:~¯°]Öáa½"qVl FŠ,…E*Y{‹ÆÃ<+Mk\z¦ð½œu€k©¸à¢äÊôÌ©çÚŠÛGn:ñ×Hœ…]¦£ž(ŽÕËÚú8+ÎÎ,35ÇŽ_É‹éààö˺οŸ8Û\”EÊñ,eú¯ŽB¦É§•Š"…2Ge–Ô$)Œ‰cî|,ëUÈÃÃïqp›O‹:ä‚«X¡”)Ô²óí%í#åÖ~­”‘’Š£y8fXUL\䮸°\åp®µÄ±ª^Î>XÚv£¢e¨ìÄ/Gö¦âÿò9e“O×q£Òâå"mÉJ¹–aDc0Š‰,"Ko¸V4­{øW‘ïÅCþvæ(‘Z•ãj©óZ¹ÉË¡~X§mV)/Cfíãšú8ô%¬U¤(k[Î^ƒ¬¥k.×;‹²T¸âdNFCs1Zwöîgë³,òº¬áVg-^6ªÙ$l‘ÔžpPWX{9~¹‘¢‹¸.B\GÎÒ§E ›|\E¦ì!~ÒÅ‹ñ’vEX½jQ˜é»Xbqµ¢ÔMXÔ 6Ž£MCr‡OÛ9RaéåŽi•B î„D&ý»9’7@€Y¼ˆåä澘Øö¹õ×_!Þ‚C<zòx»³ŒF£F£™œœÜvê„Z ¨­­­««›››K€[÷î*ä™·>Œ£Û/ˆx×·—¾ë¡ëÛ#€“€M“|Üÿ&!àwlKKK‚ $9::šh,IûÑmqqÑét¢V§(Êï÷ï>€ááaµZ=66¶û©¿Æfffªªª8Ž›ššÚYËà  +àŽ¸;½Æ»S¼­ ïN¯&â!@½x)UêÇOž~[^I‹cŸççëyK À€¸jijͪ&ùsÞ “¥à¾ñýôt¢©$-iIKÚ7°`0ˆ?¾| ¡ŠÊп?í2€ÙÙÙššt ÊÉÔSæ<›OÇ ¬ÁMÜ”±‹ŽçnÆ1 5¸èýr™ê`†¹›q]¯°ö²|céaÌ=´èìgxv{?×9Rnî¡”9ûäiÚŠÜ#6/Ç÷Ð4 ‡æ=h:³j:šõ%f€øfÕøe´”4œz@Ûq½ìb{±úp"®PÊÎZ Ü7Ê›}Z”Tôµ°×õHÆ-Œç% "Îv •š\´2gßþ¬Ôó­Å®ëeM^6Û Q˜Ek&,&~ÆO+‚Tµû¸®›çZK²ÈtDÏÏ×ó–€pÕˆg›UMòç¼@'K5À!}ãûééDSIZÒ’–´¯¶`( âÏ/_‚fs¨âDèÓ'ñõîÙììlMM :ådê)sžÍ§ãÖঠnÊØEoèxíà ôþ¬4eNºÁE·^)5u3ÆNÊäf"#™5N›Äé|Ór¥eQæddìOÓ7µ•ñ…J´zº)*Fè¦Mî KÃba£)”¥—m¾¬;ßRœ}d?"~@);mÎo»Zfíe¥ì¦õC­9ÓX—ôDĺù’ö·Ju0I§o.nuénf#Ý–•7ºc2"µã6…5§¼mCeÎâ,R†+®H;mÉGUã=,ªÛ/”iÉ*6JÄÌ{èÖ«¥%W¦e*Ò DµXÄ­ …ÅÜrj‘8®ø€ùOg¥Êö îy”‚PêÌ]Œw¬Tôx½ýk|ÁÅåé ±K›¼\Ë ®¦áØÞ½DKÚû9{¿Vâ²…f‹Ê&NÅ¥AˆSwÎYŒš ·zvúkAÛ5­q±â[`Íl‘u„x|l«ÃJ+´ +\!G¦¤UgŽµUX$„bRÃÖøÝvs7ãл™nlŒ˜Ìý÷Þá¬OJe-'O x€n–!€ö±ñ·ëëÕ¦"@€Gƒ ú·±‘œÌ|û-ú»s©BˆÇãZ­]ˆbií¨±ÛºÌš<*½ƒÒ;HÎIí)x5³ªÖÏSÍu²¶†ÉKý3«¬ÑE£ÎAoÛL*è)ÉÍÓ§jzEmt«¾>ÙØÐX;fë›»1`tSŸ§?Å Þ ÏÏÂ?wîßžÐAÝôô2;ùg²ý›&D¼YVÿ{cÏÜõ3Oœ÷oÛÕ´ÁAç$ïþBò²§é-â¼fƒ‹¶­¨ Nªµ³Q,]˜=3½Êæ<ÌqÙI¤`´ ú­8ÐÛ½Úôísî9Ó(Ú³7þ8×ß"kÀÄ¥¢sæSök,Z/„qgØw(/ì)ó\| È=”îyÕ*“‹j‘‰Ä’ºñ™3Ø´K•WRéî¦ ¹¦ó®nÏEáѧ¦ ŒL ôÔ"c[fu¾©«¯AÜ»)©ÉMÛ½¬Á™×\ŠËö,—d½U¥¹(=4";2Ñ][wâ´Zn[f¦U¹Gú•¶Kúr/µKšv¸½õòò¬WÕÏ · ±–|ÝpÎr +Õ€Ùë/ÉšâYo:°ƒøçÇ·<,ù:ÐÛª².1–E†üµüĉ¯~÷‡®¹QâÛíîUTNŠ5«Ý;¯ÄE[—Tè³w@†â#ø@–—Œ Ç&(¼1Œü ÖÚÙù:*÷ÚʤR™é)¬ª£#óSÙs\2™ä8N©T†ÃárÏV±XlxxX§Ó%‰ª8póéÀ{€54ñŒ(6¾='ð¬‡Æ·gCÙÛ³|UçŒt:íñx¤R©ßﯶ/¾t¤R)»ÝŽJ$É`0Xy|>ŸB¡•7}D£QFÃ0L$9˜³×+¸Íw§—¸;kM¸;¼Ä}€þ>’É•}¡80>nlŒ˜Ìý÷Þá¬OJe-'O x€n–!€ö±ñ·ëëÕ¦"@€‡B&“Éý?~þ9sþ|vp0ûáÃæR…ǵZ-ºÅÒÚQc·u™5yTz¥wœ“ÚCHÎAqzfE­Ÿ§›ëä­ —úí«¬ÑI£³{Ä¢w’zÍ9iÛŠÚìQµu554ÖŽÙúæ®Ýüq¬ÜÕ¼è  ¼ä¾sXU ‹[‚6;(ãm[fõ—ɓ݈x³L4jèAÖ-WTyçó>”ä-÷s¿nÐ=½¬FjïjKDã³gfVX´˜ãÅa…88ŕ䈛1)Á:ÿ‰¬Ì^øÓER"o@Ä[d¢s–Þ™UµÑ­âö©Êù©o%£ä(„œ^eÍ ´D.j’ÔŽÛûf®±FµóbªP®É\÷pÌ<£›šZdPÒG&ºD¿ªAÜ»I‰ÑEÛ½8òùB*A|Óèþmpæ«4÷Ó´@Û¯±ßé»ëD'úX¹m‰±,Ò¹2ÛGÌ·3¢?{7w§s{ +?­‹êÉKý­¸Ô[õß›OÍÞ0/¨6_Ÿ’ÖÉBúöáá¾wæ7ãn`p‘SWUS‹*ú7òšb臮¹M ª­¤ì;ìû”B|Pö‘iƒ›>=(‚¨ø+Y‚Èd96Aá`ä±ÖÎÎסP¹×Væ¿É¬ÅŒôdÛÛ2–{<™Lr§T*Ãáp¹g«‹X,6<<¬Óé‰DU¸y÷ŽDÜt à=ÀšÎ€xFßžxÖCãÛ€³€¡ìíY ¾ªŠóF:öxŸO¡PÊ›> ¢Ñ¨F£a&‰LƒÙë•Üæ»ÓKÜŠµ&Ü^„â>ÀÉ䊇-/EðqccÄdî¸ðgxR*k9yJÀt³ ´¿]_¯68<2¼d3ÿþÌdöŸÿâ—~É­Wñx\«Õ¢ Q,­5v[—Y“G¥wPzÉ9©=„DOÑžéF?O56×ÉÚ&.R3«¬ÁEï}ês±.1–+ª¥¸¾±æ¼õô¬wÐà*n÷hÄèVÙ–XÎAwôˆñf™hÔÐ3ë0óÄÑú±ZGmKj“KEfû§WÊ‹ÛaLÛ¯±“—H©¢o‘‹ÎYN¡¬™*a bŠ‚,QˆÄ’ºq{rÇ1?öŒS¨Ò¦WÔßMv‹jðpJ¶œ|Å:ù’;Ö¤;(“›¶{YTfuõ'úX¹õªÚ²¨âœ•ûÔ"3y™lû¦ g\!úÞ„KÝ´ :vÖåˆå +3uEÅü¶µ¶ö«¡ºf½¬ÑM—êB‡ÉH8mYdŒ.ºoPÆ‚Z€¿dyÉrl‚Â#ÀÈb­¯C¡²î,|E&þ“¿€UIeÙû÷˽õ’É$ÇqJ¥2—{¶ºˆÅbÃÃÃ:.‘HTÅ›wïHÄM·Þ¬¡é ˆgD±ñí9g=4¾=8 ÊÞžµà«ª8`¤ÓiÇ#•Jý~µ}ð¥#•JÙívTê$IƒÁÊ;àóù +E ¨¼éà j4†a"‘ÈÁ4˜½^9Àm¾;½ÄÝ©XkÂÝ à@ˆ îŒð÷‘L®xøèñÑòP76FLæ~€{ïpÖˆ'¥²–“§¼@7Ë@ûØøÛõõjS @€€£C4še˜Ì™þÌ?"üû~ú©âñ¸V«E¢XZ;jì¶.³&Jï ô’sR{ ÚÀ9ééµþ2Õ$®“µ5L\¤fVXƒ‹.rêS!­KŒå +ÓÑ-®o¬9o==ë4º÷üà‚œ´-±œƒ>Ù#FÄ›e¢QC¯ýÚ€™'ŽÖ׺ƒš¾ª6¹ÿÏ~µý´±áÙ_6ø²ˆ1„°»^/<…‚-MBRð‹—Ü0CÂÅ9’ßÓ¿"J"åoHžr‘È%Ä98j’‡V<4HnåâZ’[WîYwv9ÉÉéÑ1ØÆvöã³,ÛûûÍ|3ÃŒÆÒhÒhõª “‹yÅ­á4¿Â\¥ô¤…×Ug}mþeÎ3WëÈñE+V—ŽTiuÊ!þ$švÏZJp,c$ +÷Í[°\O´¨ª‰Ë)¥sM3RÅîQêÀí™a0ò.³R]ÕÎÇ®[} ü*CÌ} ¬cŠnh®3~D}ÆÓ†¥î™³”\ud0;£óŒõTƒBYÕs®y2Ô‰­`Ï.TDF˜¯Mc ´w‘¸(îd% +2KF oœ·´ˆÕ75½ÝØÈkfáh¶Ù¡ ?àU:}öáÃ|§^*•r:&“)æ{¶²ˆÇã6›Ín·'“ÉŠ8pëÞ]Vsà#À:ng@¼ r­o/ q×Ãõí@?ˆ0µš×#o*â|ÁÈd2Á`P¯×¯®®VÚß:Òé4ÏóXêEE"‘ò;‡I’\[[+¿éb‹Åº»»Y–ÝÜÜ,ìo(d¸#u§×bwÊÕšÄîð +`ƒ ôIóÈ`$?yz°ºdäÀöÎNŸÇÛðàƒ˜5âÙ^YÛåsÞàdéhý¥Ì$‰ÞÞ^ˆZ½bÀÝ2¶Èy‚G€v(ç4“ÌÄ’ÕqÖÔ*õÕ×)üèšaö:õÇn°¾yöh‹¶ºF18vb2ÔåžÍãxÁD'ÇopÎs̬EáµÕ€«Õ¿Òé™cœ¿/­õizü:‹¶êM­^ua²cb1¿¸!œö/[G®R²…×Tg}mþeN^zëN)ãÞ «;¢Öê”CüIÿçžµ`À÷QloF¢ðÑËÄwz¤EU}H\N)TÀ\9" Ü³4â\f¥ºª3Ž]·ú,è@b>ºÀ:¦è†æ1ã¤úwž6^,uKy2¾?2¾yËèiŒäã'OV—ŒØÞÙéóx;|³F<Û+k»|NÀ;œ,=ç‡ÞomUZŠ 2dÿ²Ò+›ýá¿Ùí¿gÿö×ìÒÂç_ʃD"ÑÛÛ‹Q«W ¸[Æ9OÐâЎ圦s1Àø—¬ŽktM­ÒÐP=|…ö/s®fS_qìë›·5iÕ5‡ÇNL†º\3û°[4ݳ–ñÅNÇ}´EƒÂk ª—y2Ôé•„£®’ZGã‹VÏœ¥ñ¸F«W]¼Ô1±dÍ+nŘæW¸‘«”žT£ð:£ê¬¯ ³æ™+‡uäćAÖ‘*­N9Ä·ûWÄ‚c^[XH»”2ÎŒ.°ãKÖÓ#-êÇÄ唪Ãhˆ+=Yê¤c„±À°Ì”êªvÎ8vÝê[°8§Ëvßë¸Fa±¡j©>ãK˯ ªóprž·°§êʪžsÍ“7ÑCf_]¨8bùaa¸g˜ö.×À}€¬DAfɈáà–±ú¦¦·ùŽ-A²É¤ðç?e?}þý¯|§R)§Ói2™¢Ñh¾g+‹x¬ãvÄ "×úö’w=\ßôƒS«y=ò¦"ÎŒL& õzýêêj¥}‘ñ­#Nó<¥NQT$)¿áp˜$ɵµµò›.±X¬»»›eÙÍÍÍÂnð†BF€;Rwz-v§\­IìN¯6â!@Ÿ4 Fòñ“§«KFlïìôy¼>ˆY#ží•µ]>'àN–€ÆóCï·¶*-E† 2Š…ðù%HoÒ'A(¯‰D¢··¢V¯p›Ç9OÐâЎ圦s’á—¹‘kTM­ÂÐpxø +í_æ\Ó žýú™_;îš¡Ç­¾y¶ñ¸V]£;qéf—{V´ûå†}øPݳ–ñEÑócf- +¯5¨\-“¡N¯$ÜøUŸ„¢ð%«{–ih®Ñê•/œXb]3%3úU0Ñ4¿Â _¥ô¤…×ÕgGÛ0kž¹ÒJþBÿçcêŒJ­N9Ä·ûW8þó‚90J…„õCIgFX ûé‘õa…¸œRu®iš_î” JtŒ0X¿Ó¬TUµsÆñXù–]£%*ò/ô-°Xê Ç5¨ZGªÏxZ?—zÉUï“X–£ ${ªþò7¿l¾ô]—{nŸ]¨0RŸMcaXÝ3L{‰kVÆ}€¬DAfɈáà–±ú¦¦·Ï/AšùžJ¥RN§Ód2E£Ñ‚MWñxÜf³Ùíöd2YnÝ»«Ójn|XÇí ˆD®õí%!îz¸¾=è¦VózäMEœ/™L& êõúÕÕÕJû"ã[G:æyK¢¨H$R~Âá0I’kkkå7] b±Xww7˲›››…Ýà …Œw¤îôZìN¹Z“Ø^lÄC€>iŒäã'OV—ŒØÞÙéóx;|³F<Û+k»|N@'K@ãàз¶*-E† 2Š†ð³·Ÿ¾~ñ]ÉH$z{{q jtŠ~—yb‰õÌ1Ž)Æ8¤¿¦#@;¦(¤kšáCÜï/Ÿ¬Ñ( õ‡‡¯Rþe«kFú5 R|>@ÿßq¼/wLÑ®ËÄç™eê›5Õ5Šóã'.Ýìt‹ÇEŸþÅñ"9%:à™M_¡L^kP¸Ì“79oÐ2rM2zàvŽÒ÷,3±hÅ(9vXS§¼Àwø—97ÆùKÌÖ:&S†™¢Ñ4ùâåŽ:£J®Wžñµþýjýi2KãÏ+PnåÒRTF- Kß[[.fAÚ%ºƒ:È(½m¹–B+wÄËlbvÿ£&óy?mô“— ^ˆbGGkw7»$&D&èýÀÚ„ÓîsÞ‚Ëà¶Tê‡þò£=¼ï9çy~Ïóœsz¬ƒ*|^ßÎÖG]» “®w²hKç¤1àÙɵÖbüÓôÆ é×.6ÌlCßاÔÖíJNMDíùt¶!ä)éÅEQu½Ja±¶ÉÅâêøC]~’(¡H)mìãz”BXèh×Ûb ¦I }Û¢ÈÝ‘†ª³d)5¦Ýöãj\G;¢¯:Ì +½ƒ´-=¼ÙÅ1å²ÄÄ-•v4Ÿ(Á]èhÇâ6}'IÆIYº¸†^w­¥(Jð=@BRÈ@€ü»ØØn¦­X1(ð€Üà 7難GprV0\øý~N'—˽^o¦cˆÙÙYF£Õj}>_L8ùRv†øÀ € ¼u‡Zïúv—"w=¼¾]ØGò‚ σ˜81\.—D"‹µ/q|队Ÿ·ÙlXê4M{<žÍw`ddD&“o¾é`ff¦¢¢‚çù©©©Èf0 å\v§ûdwZok"¤àÀ€«Õ@$iŽìú›ÑÕÇ:x=7Wm4)®L’¬Q·>™5·)ðàɲ`û¡ÚgÓÓ±–Gqı!>|‚@àÍÛ€ï-~GtщoÞ¼©ªªÂQ,Iú£±Ð:¨2¹8ƒÑu"Yü¬wÐB[ ƒ#$ ÆØŶœ(©kV¤‰E9ÛÒêÛûqµ¡‹]îUcWÓØÍÙ‡JŒN6÷«ô´ô¤ZkqËp)ÎYß±ØA>üöð°HÜp°HœSßɚݼmP}¤•Þ¶SŒÂ³¤)5†Ý-'ÕæcÊú솦Q&»Žó'$ ¯}P­ë`dyiâ,Ña›Â~œb.|vDÑhH{(˜Ätëpi]3%MFá™Ñs!f sF…>è$UÕ¤fôŽÅŒ7ŸPëœt¦49C’rØ^*˜%÷6p½c˜“É;³›kêW7 ¨4µ»D) ¨½€‘˜IªõN¢Wÿ¿¥¾Ñ°‡´Є¥‡G±Ú:y¢hK‘RŠž4õ©ô‹Hˆ¢vÇò´D;ÂŒËòÒI©ç¦´µœ,1¹øú¥në¯ÓÏK!ïŸÆ>¥ÅÍ)Js¶$P•5;°J±VWî$ŸÃ.6 Ýœu@…«/_)Áøˆ¾ÄùÙˆáÊD‘‹˜lÛö‡?ýî±EŽÉwï/_}¾ÎK¿ß¯Óéär¹×ë t,1;;«Ñh´Z­Ï狉ç/_ÊÎ_x0·3 îPë]ßîR䮇׷kû€@^X0áyç#Æ‚Ëå’H$ccc±ö%Ž/óóó6› K¦idzùŒŒŒÈd²ñññÍ7½ÌÌÌTTTðZZU+OHØò;eNóÉ’–áRôdÜÍE;Ý̲uK×:¢®kQH¶¦¢êìÜ´Zkqç¹ò¦•ÑÍ—†¯(õ°3ñŠ™3»xK²u¸ ‹p7/Ý’UßìržÛcPš¢·üFM²}JÌ‹¹—“+¥x-Hê¯@8?1¼3XÉ= $²­?>|ö¹õî?Á¿ü9HÓA›-ðï…;Úï÷ët:¹\îõzÃ6SÌÎÎj4­VëóùbâÀùË—²3Ä^Làí ¨;Ôz×·»¹ëáõíÀ>’pLxÄÄùˆ±°°àr¹$ÉØØX¬}‰ãKÇüü¼ÍfÃR§iÚãñl¾###2™l|||ãSááùóç=ÂÏ¿¯Æ “““OŸ>}üø1^½zÿþ}Ķfff***xžŸššŠlÓÐPÀEawºOv§õ¶&B +î<¸ +P ä@’æȮ߸±„8ÂÅë¹¹j£Ip`’dºõɬ ¼MO–½ÛÕ>›žŽµ”8âˆ#Ž " üÈ×Ë—Á’’@yYàŸÿX~µ9À‹Fee%ˆiâ„ýú]m£Ê†^Öà¤Ý]´ÉÅ.ÓØ͘ºYC7mè.Æní§U_›å)é ’mÉõŽâöÑ“›1t3FÒs‘ Ç'†.iéaZGUu­E™ÒäTqb]sQÇ™s#˜féZ5|ö¹õóLðÈ2ÕÎ]~w´ßï×étr¹/³a›Ž)ð¼Öh4Z­ÖçóÅÄó—ÿË~µÅ6‘^á3¹ÇÆöŒ=¾ÅI·˜Äñuìñ\¡¡!žçGGGsŒ“J¥&''O:uøðácÇŽ ŸÖeÛuÐÖ®Fß +Ú mûJ‡Ué°i]ÎDO :¶&]+Ž$BmMÖh]v¹ÃªvYqÈÙ¢éKË¡¤ Zbú]‡ìH­´[Ñ=ÞC¹zßDmvÀ€…ÔZ½­ÏÖ©.­ çL`‡ k;`Ç”¤½V…÷á¯ÒeOÝŠHÖbÝPÖ'Ömm=`k’uL”•C“¤kÝYñR;¿Býá™’®ñMºâɵˉñ‘ºí c[¨J‰pL…·îGÉ<–%ÖåXþZœl©éÄ»80 +íø®CŽfeò"<Šk®ì³êN;L"™‡j¯©9vÜ©j›ÖcÃÁ–÷qö†rz6½…‰ìf1d—ÛmZ·“ göìo´,Y“èqâ +Bi¨=ÞkõXì[ËÚhc¤vst[\\ìïïÇQw»ÝãããŸÀÐÐÏó£££9ÆI¥RçÏŸ÷x<ååå&“‰›Y,\z½op<{ö,kº™™Q‘njj*»}ƒƒ€3twºCv§õ¶&nÜø@[f¶ð—¯\ÍZBÑ2µ¹…­·¯à"À#Ò5æú;»FqƒïðÉ"Øwïy8=]h)E+ZÑŠ–“¥ð©K°L0ÿïåÏ>[þä“ÔôtŠþ-ý³öøñc|Óv°5”{c&dl-2ëSÍþO³xc>r5{¶I2zU6Ôʹ«Ð±´¶tÁ„Ù#™Š4ï ¤ãd š¶Wµx 5‹9¬«±J©ìR¨uWZ©®¨±Ea½*GÙ_FÈžš²¨f¯böDM-16Ðf®ÛY‰Ì(|sS%Ö ³jÂÒÉì[…gÊøŠ/ÕÞ¢pMQ“7ÆÛÌ5;*é@ Ô6V¬G6bbXv_Zø«q²¦Fø‰pg‰Æg±ÅõÍÕÈ‹5ohÑZ¹fɄ±æd0ÖÎIÖÕ~¥æœWÆŽ›¼çK೧[UFØ1œGbØñ|œÖÜLåਛÓÚ}ql¨‰µ£rб€óï×pØL-„š6=‡I{­ÝixUs3j—M>um¯ 5Çy+…:œ·Vœ¶9Ê’Q_Õ›‡šgÚ²$qöHƒ ³;¬¯Ô“$ùºR2“*»S4â†ðb1æ²¼æ‹ÅÁÈ;E}£Pí‘ ÛºJˆÑ| ðŠßüà<À€?å€/Þ¸¿°Š?ӗ᯾$Wæ+úÉ…UÆ/€É…w¤)¾¤ì¡ì/©/¬I5ÀJþà÷4þß~°•®D‹¿÷÷o3}l¥~XX>9¼/ü«Ôƒ™º?þ¼»»»¾¾~bb"SßÂÚì쬢(ªªÎÏÏ$O??Ë6˜ÃÓ07™õŽo·rÖÃãÛ%€íxý–†±ñ»I>k[ZZà8ndd¤Ð¹íC·ÅÅÅþþ~u·Û=>>¾ñ ñ=ù’ÿÿâà³¹áùèèóÙ³g³³³_ýdfzÖ㜞tx¬›w9ÆÝìWnÇ›æb¿rò—\¬Çíôú|S>ï”sÒ;Á"s'.½²•ËyãØÄÃãvùÐZd.¼Ü31îYZþ¶…év;ŽeONxÜnßÌ úÄ?=5ãvMM:<è÷Žeú7>qEÜĬñG‰;¼^÷J|fffjjÚíšžœð"=èöíåN3ô«‡ÉWv±â(uߔәˆëæ͵áÏœ}Ýí`=Î kÒçõL'ŠîóN;žeO~3O|w%ŠîœðzÜS¨èÏÚ~x³»6#´ãu\Ên’õxpÅQÚ³h«»\ø±/Fßœý–„B^n5¬WÇ;ãó¡—ч4/u’E‘ßØê¸&8â”wöÙ?ÂÏÌÑ£Mh(Øž³å=í>]¯RÛ£PwÈë;+êŒrA®MÃ4o˜±¢ÞPQ×)ס>ìW)~^¶­0…ÞºguìÝ#¿ªÒž¡ÔòCy=¾¹2Ð+­ÞP‰Übç§+L4ÝZ¾­`Ç–Ý;hæÝûéúnt ¥LÕ©:Ceš‰¿Ú(?d”«š³Š†>šn.Í%·£Ä¥$966–ÜÉ•8!¿ ÄGFâïâ¡™ ‘H„a™LƲl²k…% +i4­V‡pùúµ‚ü¼+n€Q4qXm|»OàYo·#+/µ?D|ÊÄb1“É$‘H¬V«ÐZD²h4j0ÐV§(Ên·g^€Åb!IÒf³¥ïj`` ´´ÖÇñãÇçææRŽ Õj5MÓè/´Ô<èÍf)ÀU¾;=ÄÝiµÖ„€ãC: P +…Ròöð”SI–ù…]›¾`À…«FÜ]³j¼à@'K@QS³3:‘ô@³ oø1ç?ÿŽùeüωÿ}âo›|sý‹ˆˆˆü ˆF_ttÑP°s÷Öƒ¥Ÿ8uiK¿Šá­µOÕjJÃúTLŸ2a­È[¿êDÝÖW}êbíé/Þ?b”¿S”‹Bï–ìüé©ŠÓ8xÒ\ÃôÑÈø›é´B¯0Þ3Nªý“ª®ßh:£Èß›“›·í£nù/¾ø ýB5´Šé¯jAwnph—FÖ~±¶ë÷9õ^ápâR©tll,Ù’qÏŸÇÿz3®oçþø'nþŸÉ.D" ÃÈd2–e“]+,¡PH£ÑhµÚp8,ˆ€Ëׯäç]pŒ¢é ˆ{ÄjãÛ}Ïzh|»ÐYyÙ¨ý‘ âS&‹™L&‰DbµZ…Ö"’íD£QƒÁ€¶:EQv»=ó, I’6›-}W%%%°>š››çææRŽ Õj5MÓ~¿?5z³Y +p•ïNqwZ­5a#àÀ8À€”B¡”¼=|'åD’e~aAצ¯páªw׬o#8ÐÉRPÔÔì „NEDDD$-¸ÄGâG0ÈÕîWUsß|Ë-^ʸ–TVqi,ìœ=J2IVeI1ܲ·&“¬Œ˜U%˜X,ÖeìFCANî–C‡KO_ªí2×è{Uú^%¶óŠ¶t¬W¹dúó*l&lª{>?pÜ(—å¢Ð{ +vÕ—÷üîýŽ U‰ÛÚÏ£û•i…^a Ÿ(úÉ_Ò§³¿µGAïÚ•·ýX—üìçÐ/Û7 ¸½w1´IÕÞ«ìø¸êìg~Öñc²$b…ÒÇÇV­ÏÛöj(?v,ß·/><œìnŽD" ÃÈd2–e“\*0¡PH£ÑhµÚp8,ˆ€Ëׯäç]pŒ¢é ˆ{ÄjãÛ}Ïzh|»ÐYyÙ¨ý‘ âSµ“É$‘H¬V«ÐZD²h4j0ÐV§(Ên·g^€Åb!IÒf³¥ïj`` ¸¸ÖGccc H9V0T«Õ4MûýþÔ<èÍf)ÀU¾;=ÄÝiµÖ„€ãC: ðy$%oßI9‘d™_Xеé+\¸jÄÝ5«ÆÛ,:Yꊛ'ÓØx""""Yj¸ïžrUÕñJŠ{òMüíƒP½RúÑûšìœ=J2IVeI1ܲ·&“¬Œ˜U%˜/bxŽËÉÙz°¡ÄðIÍ©«[Î*˜dÊÖs +fÃL¹ô½½OÙýimSgEaÑ.ú=;?l)ë¾T£ïWµôàÛZ{T­ËîßC[ñ§¢í¼¢ó×Õ-g¨½Å»ró¶#ÝŸÖœèEᨸd'zí&U—¹æ£“ådIÄ +¥?æëÀ½z7ðOŽ[:\ðîÅÿ¸è9îåâÆýîiüða€ÛSZ¶ý[{oG"†ad2˲¿Ÿ6“P(¤Ñh´Zm8DÀåë× +òó®¸FÑtÄ=bµñí>g=4¾ÝhŒ¬¼lÔþHñ)‹ÅL&“D"±Z­BkÉv¢Ñ¨Á€Š¢ìv{æX,’$m6[ú®nÞ¼Y\\ 룱±1¤+ ªÕjš¦ý~jôf³à*ßâî´Zkâx0Ä:>…B)y{øNÊ)ˆ$Ëü‚®M_ 0àÂU#î®]5l#°èd©(nlžLc㉈ˆˆd KÌ¿ÂÜ‘Ã\mmüi‹¯c°Ù Œ]Ýh(Ø™»å'‡K:/Tµ÷«ZzÌ9Ó£dÎò_6Ò(朲í¼Òx±úÿì—mL[çÇÏJé0N0¶šš\Jl_§Í>x‘=FZ*Èäkã1œK:«ˆÛ@K“§mÚ¦LûíµZ·F„N«ÖÉ“&u"¦„¨&Äåå¢i±”MZœ}ðæ$©N.Øß»ç^H:í/c¤>?ý1Æ/Ï9‡óèý[ÙƒZ²…Vï)obêºôºS‰èD¡»é­ íä Ër÷ÒÞ~3*í…ýª +õ®öà‰³ ®z¥êbèéɨ@ô>æ}é…ý_˜FËóS+m¥ÿÙ~Ê&•—rÙÜôŸ³Ÿ¼·ÿ‹˜_’ß|4#?.ˆä‹ÒÇ£Ÿ5R\×þaŠ¢¢ÑèÞ¢m ™LÚl6»ÝžJ¥J’ÀùÁKUêÊ‹ÓÈ1J¬fßn²×Cöí +@ÈPuµüdI’/˜\.ç÷û5M8.u.˜N&“aY]uƒÁÀóüö' u:]$ÙüQ¡Pˆ$IX‡#+‘HX­V³Ù‹Å +;Áh”é4.O§ÕF“"b à&—hTJ¨Öê®_+¸ÌF™I§Û=z€!€Ûr׈‘µ»&ë:Q´YŽŽ–[›¸x ³Sxæ`Òsb[›ôÊaéþ=i=ƃÁ`0[Äo|™‚çUeÖæ¯½mrrF¦‰VdÜjÑî^š XZ»ôÚ}(teUySÇyNÑNN‰È™ŠÚ°üÄÕCwö™]ÝôÞ•êçZºô'Î6 ”ŠPéSq+‡»{MÞþ†¶~ï•lÄ4ZžŸú¿vˆ²VЯ%!• ÿdხÌÔù¬ âá#é¸SÈï£Äðسo-iMA`†¢¨h4º¥÷¨è$“I›Íf·ÛS©TI8?x©J]y``¹3 F‰ÕìÛ BözȾ]hª®v‚Ÿ,Iò“Ëåü~¿F£ ‡Ã¥Î³ÓÉd2,Ë¢«n0xžßþ‚Á N§‹D"›?* +‘$ ëÃápÄãñ‚c% «Õj6›c±Xa'x-À€2Æåé´ÚhRDŒÜâ2J ÕZÝÕák—€Ù(3étc»G0p[î1²v×d]' +€6ËÒÑrkƒÁ`vË.æÉcÉÝ.>,>xPâ|0 æs†ÏçC¦àyU™µ¹Æ{¦¡ã´™áh¦ÛÈtÓŠŒ[,ŽvõÙ@CÛɃZ²…Vï)ob꺇<~Ú¹š3%ôS}ýtÊ< RíÞÕÚ¥GU»zPhCñ".ËÝKwö7´ž¬')•lÄ4ZžŸ’{ 楅´øø¡8?+æ%e7"-IRæ.??è™ÿ®öÉo;²÷þ–GïÝ$}Õ#ä÷jóý^”De‘ÊßWvêj‚À0 EQÑh´˜×jëI&“6›Ín·§R©’$p~ðR•ºò"À4Àrg@Œ«Ù·„ìõ}»Ð2T]í?Y’ä &—Ëùý~F‡K f§“ÉdX–EWÝ`0ð<¿ý ƒAN‰D6T("IÖ‡ÃáˆÇãÇJ$V«Õl6Çb±ÂNðZ€e:ËÓiµÑ¤ˆ¸ Äe •ªµº«Ã× +.³QfÒéÆv`à¶Ü5bdí®ÉºN@m–#¤£åÖ&.ƒÁìDåG~|üXr¹Åïˆ÷”:) ƒù|áóù)x^Ufm®ñžièxÛÄp4Ómd8EÝ[,'gtõÐ'ÎYÚNÖëöU Ðê=åG™º®€Å㧊k*Fègê8mvõÉ*Õî]­]zTµ»Å5+"·\¸îí·´ž¬'©JÙˆUk§¦¦ää—ÄG±¥;/ýc$ÿðŽ˜[@›qI’²Ù…ù¿~4ÿ«fáÛjáׯ-ÜÉ¡µyÿ‘ÔÞ™X|±béýïˆóqQZRö©(k-A`†¢¨h4Z䛵Å$“I›Íf·ÛS©TI8?x©J]y``¹3 F‰ÕìÛ BözȾ]hª®v‚Ÿ,Iò“Ëåü~¿F£ ‡Ã¥Î³ÓÉd2,Ë¢«n0xžßþ‚Á N§‹D"›?* +‘$ ëÃápÄãñ‚c% «Õj6›c±Xa'x-À€2Æåé´ÚhRDŒÜâ2J ÕZÝÕák—€Ù(3étc»G0p[î1²v×d]' +€6ËÒqìÖ&.ƒÁì8þ3+57K‡^–î%W³¶µÁ`0Ì–àóù)(W•Y_¯ñö5t¼ebºë—“389šá”?å'ô_áhw/Íž³´ÔëöU Ðê=ÏuÖ²Kû)ÚÉm ôÄŸìê1vö™]=ô^ªRµ{WkW½÷¬ÅÕûYÚ¨¢¢äÐmt÷;ûÍ­]÷Q•ŠÓNMñ¨b>—½;–ùã™ì;™ÙÜäûK3w³‹¹'ñ¿Ï }_øÙ—2?< üòËscÂbzñ_w–Îyk‰ìkeÙ½œýäǹ¹¯k +‚À0 EQÑh´hwª($“I›Íf·ÛS©TI8?x©J]y``¹3 F‰ÕìÛ BözȾ]hª®v‚Ÿ,Iò“Ëåü~¿F£ ‡Ã¥Î³ÓÉd2,Ë¢«n0xžßþ‚Á N§‹D"›?* +‘$ ëÃápÄãñ‚c% «Õj6›c±Xa'x-À€2Æåé´ÚhRDŒÜâ2J ÕZÝÕák—€Ù(3étc»G0p[î1²v×d]' +€6ËÒqìÖ&.ƒÁì$DÙγ‹£÷îWU¨wµ²õìY‹»‡f¸"…–ƒ:ßDçÓîSFoCˉ—Èý*T¸F£åyµ /I§÷ÓÃ?.X2? úÅ…?ø…‰gÇ~7êÞùJæ‚eþÝWgÿô­Ùñß, _XüEÛâ7k2ßÛ?÷î«s‘÷2?—·æ:6§ð_öË?¶‰óŒãÏ A +IXpÓÎKHâó̀榶<Ö.¡´öÅÄ9Z ‰Í­QehÕM¢•Öhü*]5±$Ò¤m­¥nûÐ&ª!±Ç´–"ø§õpãV^˜$Žíì½w!#l, N‚#õýø«Wwï{÷<ÏëçÕsz¢Q–e +…ßïŸã“5Ë„ÃaN§×ë#‘HV8ÜÑ^Ÿw +à€ug@t“µoÝ„Ðë¡öíÀP”{}}Y >c’ɤÍf“H$n·;Û±`æ;ñxœçytÔI’+nO§Ó)“É<ÏÌM¹\.¹\Óƒa˜`0˜±¯P(¤ÕjÕju ÈÌçpHÚÄêÔ+T§ÉJ“(¢à +g€0ˆ[(”Ê:Ï_Èx ˜ÇephÈ`┧® +Y#.N5A—ð /K%€œ©îŸÁÁÃ`0˜yBj|H…BišN——§¾üjâ<ƒÁ`æ«ÕŠš‚œÜÚª"K‹Æl§ÙFÕ¬kk)Œ»)v7ej¦ù«jø2©|1rÿƒœØ’V›lô+»gßõxB HÆ&ʲOÃ6¨–å-É[¸¹¾ŒCc#Ü:7®Å«G“ª}UµeåŠg…K +¥>Ÿ¥à^:}'–¸ù÷¿ÝnÛ6ú^Iâ½ÅOFþôÆÐÙ_ ÿ~gìäOGÖÆ~mþƒõÎ_£[ý4ÙJÆŽUÜü¤éfÿg£‰Ä½±\NãËFY–U(~¿.Õì‡u:^¯D"Y àpG{A~Þ)€k^ÔÑELÖ¾uB¯‡Ú·s@@QRìõõe%øŒI&“6›M"‘¸ÝîlÇ‚™ïÄãqžçÑQ'Ir¬¸=aœN§L&óx<37år¹är9L†a‚Á`ƾB¡V«U«Õ@ 3 œÃ!h«S¯P&+M¢ˆ€+@œ n¡P*ë<!ã-`—Á¡!ƒ‰Sœ¸*d¸8uÖ]"À€¾,•r¦ºƒÁ`æ·n¥ß}7ýÖÁÔÀ@¶CÁ`0˜ïV«59¹ ´UE–ÙN³ªijk…Æm{TÛšÐHMX"ÅUò?3h=fl¢ŒMªºý롵›w”KåKëü‚EU\É®Cuû4è1㛚‘¢wÚÔD™÷Ò;ß\½­‘’=»$wá–JëÁ5µvù×cÞ)S3eAwVlæË–=óÚ¸TºÜwùs”‚{è3x7}#ômð³ßý«Ý=þ\ìèúÑÏÇ>ÔÇ>ÔÅ?XÿÝQMüøêÑ“ÚÑ“•ñÏ!œxþŸ;oôž EF†Óé»b*SÓHw4eYV¡Pøýþ¹‰d%€Ãíùy§®xQwD1YûÖM½jßÎlEI±××—•à3&™LÚl6‰Dâv»³ f¾ÇyžGG$IŸÏ÷äp:2™ÌãñÌÜ”Ëå’Ëå0=† ƒû +…BZ­V­VÌ,p‡ M¬N½Buš¬4‰"z®qƒ¸…B©¬óü…Œ·€y\‡† &N pàª5ââÔYt‰?ú²TÈ™êþ< ƒ™Oˆ}L"‘þürÚÓ•ºs'Ûñ`0Ì÷ «ÕŠš‚œÜÚª"K‹Æl§ÙFÕôelRq6ªÖNs6ÚÔL!‘šÐÞû·lôøúh«räý²‘÷•#­äp«r¸µ|ä—eHÑV­Þj7†>=4ÐùQÄ÷çÄWÞTäëôw±ôCÓGFY–U(~¿ÎÏÖ¬‡u:^¯D"Y àpG{A~Þ)€k^ÔÑELÖ¾uB¯‡Ú·s@@QRìõõe%øŒI&“6›M"‘¸ÝîlÇ‚™ïÄãqžçÑQ'IÒçó=ùœN§L&óx<37år¹är9L†a‚Á`ƾB¡V«U«Õ@ 3 œÃ!h«S¯P&+M¢ˆ€+@œ n¡P*ë<!ã-`—Á¡!ƒ‰Sœ¸*d¸8uÖ]"À€¾,•r¦ºƒÁ`æ ©ñ!™L]¿žþzàþí” ƒÁ`f «ÕŠš‚œÜÚª"K‹Æl§ÙFÕT¢¶6¨ŒMg£¶ì$_äJ7šËªëÊk,¥Õõe5õå5∮«yqÅð¥›,+7n/«ÙQþ²•üñÆgó%9Èõâ¼E/<óò.’á˪Ì+7Õ•1õ¥5úæò|ï~Nwº{¿ìòê,Ô®°æ,^A%IøaÂSå(´úéj4…lº V~ÅvÙG¢/(qôÑ‘ÙÃ!L–¯ÅEªQ>ý¬²¼:»â9功¨ŠÊH¡˜ƒ&.O•þã£?G#ýÑ«Gï;ßü`=½¯¶ÿ7ÏÝùõò»- î6)Mó¨Ýª +lÍÁjR6f¶*?Û¾0жr`ß‹[ð/õŸÿ½õÁÙý_ô^ŒÜ»~1þ Íf3EQn·{z6Øw…ßï×ëõƒ¦é¸$Ðо7ELìà"=¨:ð¯|;q­‡Ê·J†ÊÌèqŒKò1‡m6›D"q:ñÎ…e¦ +…, Úê*•ÊårMv»]&“uuuMÝ•Ãá IL“ÉäõzcŽåóùt:V«õx<±y¨¬¯—ÐÆœNÝøtïhbOpÀ™)¤Je‡‰y +,K_ `\U™À~.àUƒG'^5¬NÜ ›¥ÒTqn +………e&‰Dþ‹øoEWWE«ŸôÞÂ}qN………å{„ÕjEEOÄÕ•§×¬Í«ªÓ˜kÕ“Ñê:MÕM¡&%ÌJJä§òD2>‘&+¸ÅB=+ð#ÔÏIŸ/ãÏ'B.D¡!„ B._ÊHñ[±\(N2Vc5ìSŽ%’ ’IQÚ\‚¤’s‰”tdÂ'ä8n23’`$ -Ä=rPÆà‰I<È‚bú)”ò )¥÷¨ÉC%)pÐ$äœI€ Ñsjº)™ä‹˜|ˆ4Ü)tÌÄe|/çsE hÎhâ¤8ñøΗ¢g[²Ü{[n)x°ýÉЮÒÀÝ”;Ð=°YIoΡUt£šÞ¬BÏ óé-óß,ÚYz·ä~KÁý7rB­ ‡Þ[9ôáúÐùƒ†èáË5:ÚŽ! šÍfŠ¢Ün÷tn³©ã÷ûõz½Á` i:. 4´ïM{¸@ªÎ<Ç+ߎC\ë¡ò­€R€¡23z\'ã’|Ì„Ãa›Í&‘HœNg¼sa™é„B!‹Å‚¶ºJ¥r¹\ÓŸ€Ýn—Éd]]]Swåp8H’“Ãd2y½Þ˜cù|>N§Õj=Ol*ë르1§S7>Æ;šÁœð€Ff +©RÙ¡ÃGbžËãÒWUæ°€ xÕàщW «7èf)F_¦ŠsSØx,,,,3„ÑâåúõˆZÉÍ^ù8¾)±°°°|ß°Z­¨(à‰¸ºòôšµyUus­z2ª^£]½V;¿@:qÕ1ßòú›~±úš‡ËIHà&p9¼ý¶ œ0:€\R¬æ¸‹Lâu¾ýRÔµùÞoŸl) +½YðùŽâ¡]eƒ;ôêÛ›²ü›²û”}›s°ÐÃ&åí׳¶äš >kÖ 5.¼×¤zýÌ¿³óGƒŽ5C§>ú†ïÖÑv,Á`Ðl6Såv»§uŸM¿ß¯×ë MÓqI ¡}oŠ˜ØÀEzPuà18^ùvâZ•o”2«Nefô¸NÆ%ù˜ ‡Ã6›M"‘8ÎxçÂ2Ó …B‹mu•Jår¹¦?»Ý.“ɺºº¦îÊáp$9ÉÃd2y½Þ˜cù|>N§Õj=Ol*ëëÑMÜÆœNÝøtïhbOpÀ™)¤Je‡‰y +,K_ `\U™À~.àUƒG'^5¬NÜ ›¥}E˜*ÎMaã±°°°Ì"#% n>ù$BÍ‹>ñDôì¦çj–ÿV«<WWž^³6¯ªNc®UO r͵¹Õk´•uš¹šdy2aIfraºX&T¥ Õi¢\…µc%@š4QÑ\qYVrž‚HLày œ|’(ËJ)š#ÖŒX 1g +sÓ„…³E†Ì”|R$H@‘‡•2¡1C‚ÜæŽØŠTòGmorÜjDa:±$™ Î,.§€$–ÌKÉŸMhçx¤â«ÑsÄ—=BdXfÂá°Íf“H$N§3Þ¹°ÌtB¡ÅbA[]¥R¹\®éOÀn·Ëd²®®®©»r8$I‚Éa2™¼^o̱|>ŸN§Ójµ'6•õõRÚ˜Ó©ŸNãMŒà Nx@#3…T©ìÐá#1Oåqé Œ«*sØÀ¼jðèÄ«†Õ ÁÐÍRŒ¾"*–ŸÂÆcaaa™!DaüþHuudåÊH¬" KlX­VTðD\]yzÍÚ¼ª:¹V=UýTc~Y-Q¦d‰y‡×-ºÓ¾âZëÒKK.o5^ÙZ2Ü>Ôe¦·%×ß*h«èxeQþ1 +­” þú³"™o_z™1ÇÚ°É•m¥#6oÂý×Z–¼WÑýj±q¾™+ļ}/ÒíË}ïüðRÓ’KMÆ+Ì°á £_öÙd¼Ú\r{·©ó—?PÍQÞGëŸh[~µy)2|wÄðËÐXM#¯®5—Ñ»+Ü †Å™’TѬ?¾\8жâzëˆ93Ø8jÈ< ÃK8ù%Þ·–ö·-?øóEs8ótª³Û…–Àw«ÿ”ûÌ¿zŽíøýÿðÊÝ=Ï m×Ñ[T·6Ì»±!Ë»1Ëû«Ì¯fÞÜÑûº’n]l}ªÿêòJ•ûÝm§Î9ûïó_þÏ-ßÝ¡ûáðƒñ—; šÍfŠ¢þÇ~¹5•_qüܱ]yH u#jª" £vÝFL6‚+äÂE0®fêä;FÇN‡Ù™Ìní¸ËŒõ­uµ<„D*h£ëê +³ÝáQ#’H]%¾hw”ÚN4.)5˜p!_7ñS1(afïgw.áwÎùžü~s~³Ù<Çëõa³Ù„B¡H$²Ûí!P¬­Œ‰Š,èhÃÓçˆáÆ·‚žõðøV4Ü™3ÚLí!4n·[­V³X,ƒÁj- ㊢”J%>ê<Ïd2½FÃf³FãèCéõz‡#C"‘X,– sY­V@Àç󻂃 +‹Šâ*üÝ©•îNõ&º;œè ˆ:1¸„Ø8vCcSÐ%0¼*=‡¸ 0  à:½kÄÙ—íZÀš ¸ €o–4ŽTvma\áÃ?*/÷íÝëë¶ùŸ00000Œ *• +a™ñ«6¦*Ö§k“GbŠ )yëR&ÍŠžÇžøýÎ%èÌjt‚DÕÙ¨&›~VËÑáìÇVýÄjrPu:‘‡š7ödˆbpêyñ‘ßm£3«Ð—OÜk†¬XõÓ89è8‰ê?”I–Ï›ŒÝ§Ç„7ÿn:³Î÷/Ëy–î¹¼~_üÔç¢oVXK2ÓfMJd‡wî]‚þ¶#‡,{>{@ÒÓ*üîŽ*yþPûÓüfÖ­5ó¯Ñuܹ×Ùýð?w{{8\Ô Çã~»N'I’\.×l6Åñz}Øl6¡P(‰ìv{Hk+c¢"Ë:ÚðtÄ9b¸ñ­… g=<¾Õ¤ wæŒ6S{HÄÛíV«Õ,Ë`0„Z Ãx‡¢(¥R‰:Ç3™Lc/@£Ñ°Ùl£Ñ8úPz½žÃáÀÈH$‹%è\V«U ðùü®®®à"ÅTø»S+݆kMtw8ÐAub p ±qì†Æ¦ K`xUzqAa@-Àuz׈³/Ûµ€5pß,iø¿©ìÚ(ÃøÀçC¾Pk````ø±£R©ðP1A¿jcªb} +¹6y$¦Ø’»Ž5/.¼s[jXéÓç¹ur.Û£“{ur~je­Ì«“áOð ý¬ÊFú”^¯çp802$‰Åb :—Õj|>¿««+¸…EEqþîÔJw§áZÝÎtD€\Bl»¡±)è^•‡C\P˜P pÞ5âìËv-`Í\À7KG*»6ŠƒÇÀÀÀ0>ÀÓ =Á†Ÿïñ¯ c‰J¥ÂCAXÄAfüª©Šõ)äÚ䑘bCJÞº9“fGócï‹Ñéåî*¹«LÒ_&¥Ê¥T™t \F•Iü/ô'ýôS‚ÍW•¾Z~cG†hV,N=‡ùí&ª-ôÎ(¥Ýé•ý^´ûS“ú-Ë}HŽNw÷güb2vŸVÿÑ{è«|ïÑ\ªTÚWúa÷Çü/tØ,ª<Ë£•¢/Èž?I2’X?}»sÛtj¹G+ÇŽ~…ÒÇëŸd÷‹Ç…ôKÝZ9:Fº*å¿Z8…=qÂ.ðèäýÏûÜÊ߆Ô[%G'ó¿ßº8+1+ŸÆ½pñ"ò߃®>{_{µóÀ®Ï¦Q[“²~ЩîT®éÝ·Ô±ssÇÜû{YJÿ®Z×­]í8°„úãÜþÒŽ¿~tÝàpúoБ\¢N§“$I.—k6›ßôÑz½Øl6¡P(‰ìv{Hk+c¢"Ë:ÚðtÄ9b¸ñ­… g=<¾Õ¤ wæŒ6S{HÄÛíV«Õ,Ë`0„Z Ãx‡¢(¥R‰:Ç3™Lc/@£Ñ°Ùl£Ñ8úPz½žÃáÀÈH$‹%è\V«U ðùü®®®à"ÅTø»S+݆kMtw8ÐAub p ±qì†Æ¦ K`xUzqAa@-Àuz׈³/Ûµ€5pß,i©ìÚ(ÃxÃwÿ¾wÛV´c'r<ôùG$†±A¥Rá¡ ,b‚ 3~ÕÆTÅúrmòHL±!…\7'fv4?6üê§ï£/H·.ÛY’å*•ô—½À\´á¿fz*åè$ysWÆû ,œzÎ;ÆO¡SË=:¹«¯‘âÅÔ‹Üø¥4k°BŽôy¶™+ÐSÛ”IoÕôKt‚ôUç`w, °øÿÝé°¥÷A :ºì~©$+…~cg­¼BŠ#÷Ó©¥/P^N;Ò’hw)vÔÉÕ‹¹?‹üió'ièT¾G+s•dÑkJ_䎭T:P–…—¡ãä­é²9±XyüÔi/]Â[àóy©ÛW\§?vmM¶'t—7On½Ôxìr]ÉíÊ5ÎÝïy·'=ÚŸ~óøï¿kýë•:]×o—ÞY6ñÞƘ¾ýïö·ìöôõøwrD—§Óé$I’ËåšÍæ7xªÞ6›M(ŠD"»ÝÅÚʘ¨Èr€N€6<qŽn|k!èYoÿc¿ücšÊ²8~^LÄE@KRpÓ… ZJÕì¸]le\}¯`á±2lLÿi‚«™Ù Φ‰n6£Ùdÿ˜‘¬ÙÉlÁÍhÕÑ…?\Ф*å‡Ýé,+ã E™2E Kuªm}¥oï+þ`©X”’Ìûpò(÷åœó½½'çrš +CœÕi»ñ1Ã0ŒN§‹%ÞZx:4Mk4Tê‰Äf³Í¿½^ã¸Õj{(³Ù,‰`vát:cÎår¹är¹L&s8±E¨¨®#Ý©ƒëNÑZ×Úº1¬  0´…T!ÞrþBÌ[àyQF½Þ‚m«®s§†]|Þ©MÚ% ¾@7K>€ˆTýg…ÇÃÃó@?cîÜeUÅœÝæÖg5Üððððð¼´Z- +–.’oÎÜþΚÊ]yÔŽÜÙXåî¼²yË_K‘ —ôìßÈž.gJü"P˱@-9ùç¤ùÑÓ°…©/fÏ–;½™#@©¥¢¥m{7°gj(»ÔS§¸AS1{’ù˜¨|#¹‹–%´¼÷sö3*|T²Gl™î‘„"“A£Š=®þ®–,–á9x¢ãà[ìi*h$iÃÚ@úëMË;¹RÇE&ÙOÕÌ‘­¿+ÊNO^ܺ)/gêU7N>~N5$›DßF¨žSþ͇Eê<)ÏÈ\Ùuí:‚‰ã°ÝÿÇ^Ï¡¢áC„ã¸þKËç¶/®vY½ãýàg¡?ýøá!ÅͦþÕß÷Eëåoß|S ®’ı¿(v~4~øѵ9‹ÛÓçóQ%‹ívû«,«—ÛíV(J¥ÒãñÄEÀzÓòä¤:€^€N4v‹6¾µbܬ‡Æ·f€BàgguÚ®ÄE|Ì0 £ÓéÅb‰·ž…MÓ•ºD"±Ùló/@¯×ã8nµZçÊl6‹D"˜A8Θs¹\.¹\.“ÉGl*ª«…ÆHwêàºS´ÖÄu'€v€n k( m!Uˆ·œ¿óx^”Q¯·`[Åj€F€ëÜ©aŸwj“v ;ºYòÑÿ?„ªg…ÇÃÃóP?~ܽ^÷Ópnnxp0Î’xxxx~`hµZ4$$.’oÎÜþ®¬R'¥ª¤ÔŽÜ(VVÅ=+wçQ;ó–½–²Fø£ž÷7²§Ê˜†b¿ÔN9͸õq2©Ø3å5› +W¥¢ÔÒô¥m{Áž-yâN>+áG‹"h$Xs鈨|#¹g¤$4ïY²‡nEoýrfœ“ìqõ“J½6-'-q ¦ùäÌyŸŠGÆ‘û±­¡#%ïý2+3%¡mŸ‚ýŒ +šTS|gŒ2‘ì‰RWÍ&j]Ržž±òjW7:‚º÷íÀP×?û[Í7ZÏ^¿ÚÑÛ?ô•ëþõ›·ož«ó|¨þaÙýCoµŸèßèì-"zи2å¶qÿÈØ×÷B!f–Çíóù(Š‹Åv»ýVÕ+Àív+ +¥Réñxâ"à@½iyrRúæ:ÑtØe,ÚøÖŠq³ßš +CœÕi»ñ1Ã0ŒN§‹%ÞZx:4Mk4Tê‰Äf³Í¿½^ã¸Õj{(³Ù,‰`vát:cÎår¹är¹L&s8±E¨¨®#Ý©ƒëNÑZg´t4†¶*Ä[Î_ˆy Gçê[j0æ8'U:2jÕv”7¾YŠ”4{fG Ž«WQ­-\ˆþ}qtUC „úúz, +¦¤=ôÔ²œ5/?±úÅ¢šu܆»ZÍz5þÔ7>ó’fÅÆÂŒ¼Œ¹ò´3o—¢½5|[eÈB‡›†Œ¹Íè¥"²ƒl,Ú¯ÿǶeesd8t¡2ãøÅè€>¾óÆvæN†ßǬ4²¯¼d¡W?™…·gϘÒþêb´§FØ]¶ÜØ{Ç$‹µÐèÃ6¶j®bŽ"ͳm)Þ³2wËÜì3ÚL£÷«â;«^)4kÆ”®7– }ocoÎðnâ8óVú¶—Wk°†ƒœÙ³ÿÚsz¨ +‚ Äb|,åñ#…¸ ˆ¡˜x©¿ß{úÏž®}ßöýżÆK® ÚÚ8@L™íhçñÞáJÞÓý 9ŽS©Tn·û¾ôÓ}Ãï÷ëtº’’’@ ’¶¶ÚfNÏhèèÆê ¨cÔHò­‹’´–oíe ¡ÊËívJIòIÃó¼Éd’Éd‡#Õ¹&:‘H¤®®·ºZ­v¹\>³Ù¬P(œNçø]Ùív¥R ÷MÓ^¯7éX>ŸO«Õj4Ç“œcc#¾T¬‰étRšN#&É(8Ðp (|„L¹¢£ópÒG Œ•þÁÁRƒ1à À9©jÔ‘Q«–°£¸ðÍR  ¤Ù3ãh<@˜p\½*êkÑÂ…è¢ÿž„ @ ~$êë‰EÁ”´Ÿ,^6kÍËO¬~QS³®€[_ÀmÉô …Ïnž[ÝP4íÑisåégÞ.Eû9~gehn2æv YèèFh«Dûõžw—þ|Ž ‡.ÌÊ8þf1: vV†-7¶ßѼ f¥‘}å% ½úÉ,¼={Æ”öW£½5âï«Ã‚Ñk¡ÑG+¯XV£xL‘þ÷w—¢½\ÌÊ /° e~[Üë_¢Í4ú :¾«ê¥¥³ɘ|ìõb´ãmìõ5·ï½ñWÐqƒCû¶—³ÒÁU¹¹§{z†ª bâ‚ ÄñCÅxáòà€ï»o¾ýúì÷Î_ŽÅâxéÀ2D!;[8Ü)འ“>ÄѯÐ`0ÈqœJ¥r»Ý÷±«î~¿_§Ó•”””$°µÕ6szF3@@7Vg@£F’o]”¤õ°|k( U^n·ëTJ’OžçM&“L&s8©Î…0щD"uuu¸ÕÕjµËåzð ˜Íf…Bát:ÇïÊn·+•J¸7hšöz½IÇòù|Z­V£Ñx<žä<åÖÄt:)M§‘F“dœè8P +>B¦\ÑÑy8é#ÆJÿà`©Á˜pàœT5êȨUKØQ +zðÍR  dسãh<@˜ éóò±¼\œ7O¼páºÀ!ƒ ¾~S§MÒ.ÏùÅ–ùk^™WÛPXÛP¤o(à6¨¹ 7›ÿ´±ÛªŠžÿÕüª…SsÒçËÓÎþ¦ }ºZüpe¼…Žµ°¼•á[˜H i¦£ ‹µ0ÒK+#XYá+Ðg«<ï•—=.á ²§9ßZ‚þdˆï®[ØP3n¢ÆÜjCoèXkÚ£÷ï ‹fáíÙ3¦|¾E‹öë…÷W„-LÈ"­ Yî°=ÒÌD›p•ècý[*Ë É“§}µmÚÇñ66da¥e–›c [›ô&2´ÝÎEvU¯ÕÍ–§Oþⵟ¡O |[e"nEd8óXE(ñ'ˆm•8Öù÷–—Íù)Î|N~~oï—#”F„h,zõÚµË×ÃѨ˜¸1Äš@ÌÊ;:ÆzcƒAŽãT*•ÛíN¾iRßï×ét%%%@ % lmµÍœžÑ ÐÐÕPǨ‘ä[%i=,ßÚÊ@B•—Ûí:•’䓆çy“É$“ÉGªs!Lt"‘H]]nuµZír¹|f³Y¡P8Îñ»²ÛíJ¥î š¦½^oÒ±|>ŸV«Õh4'9ÆÆF9€51NJÓi¤Ñ$M'€=u (|„L¹¢£ópÒG Œ•þÁÁRƒ1à À9©jԑѪ6dG)èÀ7K1€’aÏŽ£ñaâ Š‚$júÿ#jµbQòþk¬‡@ ãaíÚõX¤¥O*¦sê__ðÜ–ù«LEF“Æ°©È°©°vcÑ-¶©Ðh* žÝ¨ï C:rçít¤™ŽXhÞÊ¢½\]öxfnfZß;ËÐ.ncÂæ¦Ð·lY¡›%ϼAsÁ¶Ê5OÍ’¥Oî4kqæ8¥”yEä7»¢£M´ˆÿúﶗ/ÉÍÀ™ç« ܽ_ŽPQãB<‰„BÑ0Ïó‰ R D–D…Büô³±^šÁ`ã8•Jåv»“î™”à÷ûu:]III HI[[m3§g4ôtcuÔ1j$ùÖEIZË·v€2Pååv»N¥$ù¤Á}g2™d2™ÃáHu.„‰Vuuu¸ÕÕjµËåzð ˜Íf…Bát:ÇïÊn·+•J¸7hšöz½IÇòù|Z­V£Ñx<žä<åÖÄt:)M§‘F“4NôPÔ!€R ð2劎ÎÃI0VúK Æ|€ƒç¤ªQGF«Ú¥ ß,ÅJ†=;ŽÆ#„‰‚ˆUOâùýyqÞ<¤Î¿þ&Õ9Âÿë֭â`jú$íÓÙÏÿzÞs[æL…Æ„6ýÐŒÃ?=³YSÿÚ‚ŠõÍJ[ œöÕÿØ/ ¦²+ŽŸ—„Ï5ð„ˆÁ¢F­²Ý‰áKH·dî¸ÝiWÜÒiw?2Žãº£î¶[«ò¨Îv7£tùp»[Ô6Q13:ÄtƵig6;¬FgÒ$’¼ÛûB@P &t Ûy?›ûî¹çsçÍùEºü:W„Π³…èl>úíÈ`Ôž|,@ç‹PçÖ{dz”Ëç2-d|äUÝzÔ¢ö4f9«”®š Wm–«>ç)£êrðx9w9»'ð¹í?]‰Î©½¿ÛìªR:°{ÝsÜ™ÉÚ Wõ&÷é ìþÕ‡²Ô…Q‹çpû§¢óî† gµÒU›‰—9ësœ}uÙNÆ=ÓY£t×+±û£*EÎ2ALüéçk°r÷Ÿr,».û¹¡µ™T5f£–ü;‡7Hã"°ò)+ûúÌS&Èëõz<^zä}‰yôÒ´PHöY év8F,›ÍS‡žUØl6¹\®P(ìv{Hinš#8p wg@t“µo=Óëáö­ ÄÉI½¦!4n·»¼¼\( †Pka™íP¥Õj™ª.‘˜L¦™ ÓéH’4ÓßJ¯×‹D"x1T*•Õj :ÖÀÀ€L&“J¥‹%¸J+*â}Õé:S&+MLu¸ÐG”@à#ÄÆ‘/]ú,òxpPYRšÐp‡Éqeª¬X·ð›% @¤ÎïŸÆƒÇÂÂÂ2K }Æðà]TD«òåïôä>,,,,,ÿSv¼¹7aá„TF½)Á¦~}yvyÁö…ÛV¾‘2Þ¶lOÁ“ønáöÅ;W¥'ó懧ÄE]|'Õy6ÿaMîW¿ÊúæDöÃÊœ1³Unf§rTnþúdŽõxö£šÜÁæü?ïþþ÷ñ™’Œ0î]ÎeyNË'Ó\•é®j…«Fù´UorTÉ]§6ºëÒÐ2¾|wuÆbv'#¡åÇKÐÇYtÓ&êÄFge:U-§ª7=ã®pV¥;+±{:ú(ãþá5kHî‚h0éV¡O²Ü5éΓUr'^V£tNôefð†UrÇ©4wõFìþÍ/7Èã hß™Œ>ÉÄ{:OøÝŸ«ߢNm¤O§#}æÍ}’å1¬|Ù²·nÞš2A4M{½^ÿÿÚíè'oÑ\Z)AÝ]¦Ûáph4±Xl6›õ -6›M.—+ +;þBÁ‘æ¦y1‚3wzqwD71YûÖC0½nß:2AœœÔkºñAãv»ËËË…B¡Á`µ–ÙEQZ­–©ê‰Édšy:Ž$I£Ñ8ý­ôz½H$‚C¥RY­Ö c Èd2©Tj±X‚Û¡´¢" ÑW®3Õi²ÒÄT'€k}q@ >BlyñÒå À(•%¥)w˜¬W¦ÊÚˆup¿YÒDêüþiÇYŸíªËožoÈjÈõ6磖bËñµ4€›+¸Pñ2ú´ØûÑ+®º¶ÈñÆãGr"Ã9‘Ý5ÁZwµïîØçýâ ê9ö°õ௥¤*·äßhÜ…®óþå]ªcÿpûÞ¡¶ÝOû2Ûö ·ï÷¹µµÜ÷ÖÖ²×_½÷ñ~tõ(žjÛ7„£·î[ÿÄFfÚöPíû<Ÿ@ÝGþõù¡ÞÖ¾ñÃ"ScêyßÛyh¨]‡Ý)ÆýYåLhw‡uBÆ÷¿n9ðö¶,[½~ë¶Ý¿ÿe ùò7 #¯7Pw‡Ã¡ÑhÄb±ÙlÔ7´Øl6¹\®P(ìv{Hinš#8p wg@t“µo=Óëáö­ Ó÷&NNê5݉ø q»ÝåååB¡Ð`0„Z Ël‡¢(­V‹u‰Db2™f^€N§#IÒh4N+½^/‰àÅP©TV«5èX2™L*•Z,–àv(­¨ˆhôU§ëLuš¬41Õ à@A\Pú^ıqäÅK—ƒ>K <T–”¦tÜa²F\™*k#ÖEÀmüfI©óû§ñà±°°°Ì +hšö57Ìphõ÷£{÷hÜéŒu=3+Æ“ö ýñéñóãfŸ fš¦ÇÇÑåWýœÕÓ4î”ôØç7¤ŸÉ&M{gâ›{òl}ë¡XX¾ë”í(im"¢¸s„ü9Qüð(Ac|| ŸhaÑ1a¾kxŒ022& ‚Ç¥±‘ë–’Q‹c# #ž²Å~ûûåÔä}Çñσ·‰¿®Ò-®,v3… Ön—sÉ!Tm@w3– ½eUÑUÓYornqÿ¬ž½¹uíÝl¯×§½ÍÆ?ÖNØ9AAÈ\5Qa¶#þ 3y„°˜B>ß}Ÿ0òDí=/>$Ïó}žï÷óþ>ßo>ϽSåi©ß–ÌúΓ³òçÏ¡§3Rø¼yÏä45žá®Áÿ¡ŸÅ@/ ø0Ðüçƒ \¤‘úÈméëeo_ûoçÍή»>iË@/¹Û‡\”¾ÃÁõ“@?ᆻ³=·¼·º¸~–?åhÇ>BûrÑ:ÞëN¯®—Þâz{{nwuuù}·é)?f Ï­;¯œVŽ4 ~«ýêõ›7;9Ž‹w½ø·€ë*9q‚8/b0ow¿ß¯Óéär¹Ãሷorñz½jµZ£Ñ°,›{«¦Í›[ Ð`£î ˜³L,ûÖÈð^Ú·:€ÂðOLže³·$E¼`‚Á Ñh”H$‹%ÙZD¦;´  ºÕ +…ÝnŸz&“I*•Z­Öć2›Í2™ &†V«u»Ý‚sy<•J¥T*].—°ôUáêÔÌW§X¥‰¯NM¦ :…ô iý©ÁS‰—nŸ¯ T¿  •_5æôx«‰3 8è›e)€¬¸ärODDDdz€ÔÞ vÜ  ‘ö«¹4¥:¢ŽjÂ0#.#‰œá”KÅhǺ=rbH`¶ÐƒYX—‰Ž6F*>Ô>™PÝ!ú7©DD¾älÙ²…š‚¯§¦(UßøáËŠÃw‹Öf//Í^¡_°²ìé1±¢tÁrýzuåº?Ú¤P­ÉJyâk ÓROìø^ç/\Ù·Ìùkµãu>œ{4_'=4ÔŽ=? ÇŸÿv™çÝ•µ?[²H6‡¦V.~®ùÜgû‡=‘Ÿ}"¥£•ßÉN:jœ®.òÒzdR0'‡üÃow¿ß¯Óéär¹ÃáxLŠ¦¯×«V«5 ˲I°·ú`Ú¼¹•m6ê΀9ËIJo ïõ¨}«(yv–ÍÞ’ñ‚ ƒF£Q"‘X,–dk™îpg0èVW(v»}ê˜L&©TjµÆ]Æl6Ëd2˜Z­Öív ÎåñxT*•R©t¹\ÂFÐWTdT…«S3_b•&¾:4\`˜Z€`èÒ3¤õ§OA$^º}¾‚RýB€€V~Õ˜Óã­Z$Î0à o–¥²â’Ë l<‘é"ÒÿáãövÌÌħ2ñ¼ãqY§x¤ ëÁQ¾m¬ó‹nqŠõ"‰Ã“"†B„½ƒ·¼$âJ Ûƒ?íŠ}}Äç Š{œ±OoÒ9aÙPO Mv.‘/;›7o¦¦ uNŠjåS~±ø'»òK·å”sÊ^Í ‡rdè¹ü%cÎúíÊò_=ûÂ+ŠßœùÜ“s®ü¾ˆ4¬#ÇÖàáUäðjú>‘F<²ŠÞFN®o«¨ðé'hjeþb[¢£TƉõ#ÑŠêÄ:Ÿ:Yðƒß¸ugÏ"Ÿü%Þü~¿N§“Ëå‡ãñë›L¼^¯Z­Öh4,Ë&EÀÞêƒióæV´ب;æ,˾52¼×£ö­ xäÙY6{KRÄ & F‰Db±X’­EdºÃqœÁ` []¡PØ­êB0™LR©Ôjµ&>”Ùl–Éd01´Z­ÛíœËãñ¨T*¥Rér¹„ ¯¨È¨ +W§f¾:Å*M|uh¸À0µÀÐ)¤gHëO5ž‚H¼tû|¥ú…5­üª1§Ç[µHœaÀ @ß,KdÅ%—Øx""""ÓÞˆá°B¯—lÝF üâód*¡_N?ŽÔvѳÁArþ3¬?…üÕà ¹ríç¨Z¼×ññIxèèQ÷ܾMêO¢­9Ž?í÷‘sÿ"6;¹s'J§®N¬:@Þüþóƒ1òFÏ×íÅÞ'G?Æó籪ŠÔ'ÀøsÙ`k+ÖÖà±c¤æoÄ餦ôñ=·èøµë½ƒ:Š‡ªIGÇdeùªP^^NMAê¬ÕŠÌ¿|öå]ùúmʲm¹eÆ\½1·t[ÎèàË^U®ß¾¨|÷’ÕÆÜ™™³–Hg·½ù<©‰Ó ^4þ¸*DãÐ*<> qxuè0=௒ckHݺŽw–çR+yy‹Zš›&¤•ÿyG>¢´_[pÌwø…VóÑ•Ç6>tó¨¬áoD©‘eÉîÝdþ|Rô<65Å;€ßï×étr¹ÜápÄ;©x½^µZ­ÑhXú’ÁÞêƒióæV´ب;æ,˾52¼×£ö­ xäÙY6{KRÄ & F‰Db±X’­EdºÃqœÁ` []¡PØíö©`2™¤R©ÕjM|(³Ù,“É`bhµZ·Û-8—ÇãQ©TJ¥Òår A_QAߦUáêÔÌW§X¥‰¯NM¦ :…ô iý©ÁS‰—nŸ¯ T¿  •_5æôx«‰3 8è›e)€¬¸ärODDDd:Àû¡ûN?N>6cwwø\˜Iªä¾Ÿ"}„7àÉ¿óí==äí·È¦MØÐÀ_ïí%>JöïG‡ïw¼§#/2§X©qmÀðbh(ù”ì܉テýýc”?ü(F5^¿NÞ}lØ@6n$Û_#ØOþÝ=×Ø‚Ã;áþ†À7?â 7‡èÑÕ«hÚ»v‘K—¢ß+""ròòrj +RSg|¿è[?þyþú×òÖlyfíOùÐ=:^ÜškØ™_òJÎÌÌÙyé³/½±ŒüU?tduàCí@eñ@¥6%‘àèçÅÜí`eñБUäÓµ×Þ.Ôæ¤ÓÔyy‹Zš››DÌÒûc`€Ôד‰¼ÿé舷·ßï×étr¹ÜápL‚¸IÄëõªÕjFòlRì­>˜6on%@€º3`Î2±ì[#Ã{=jßê +Gže³·$E¼`‚Á Ñh”H$‹%ÙZD¦;Ç ºÕ +…ÝnŸz&“I*•Z­Öć2›Í2™ &†V«u»Ý‚sy<•J¥T*].—°ôUáêÔÌW§X¥‰¯NMþÏ~¹EuqüÜf¦ª£À6Ckg«Ž#…¤¥ÊCwஂ¯Žk ˆÚ¦Ú1´©D"¾Hy%‚# QQ‚1õÙP^»Ê†·/+Jt+  <̲߿çb¦¢¢¹¿ùØ9÷^Î9ÿïœ3眿 fÌ“ <kYNî±A§ ñ¸\ïìô +žÀØ!ÆΈ³&Û·ÓéZâ{raRSiíZ$'£º-WH§GF†ø‹èhÊÎ&Ó7èé…^O7ÒêÚ˜HÿýQQHߎK—îyÀ½Ÿ‘¥%Ù;¢¶F|U £ßNÁ+?Çò?¿´>ŒM¯µy®\¦sç¡Rј±¼Yœ;KÅúxVE#1‘JKÈlâ-#c%nÄG±ÈÊ¢7Ä.jjiwíÚ…ˆÅ°ø)ùúÏ"<œ’>·cGÒºu´m›(xK²(þê5ª¬ ;hÃDþqq¨«ÕšL´s'Æ£1c°b…‡cüxZº„x{2hC,¶nEy9ÊNOóðêî¡[HOCL ªû4÷¡®Ÿe".žðù>œ?‡Æ&9Ês¤ø8ZµŠ’SÐÔ$*¿|_üCTÅ{‘ËáíMúC·œ$$^ ´Z-7–/¿4Ùwô[ï¾:w©BýŽ½&ìÿ‡:ÔNê  Ëü?g,r>n¸“e퇞اéÛî߬ìIQ=0’U½Éª¾td©¯$ø:Ëx×NNN%%†¡†z@ùéêêÒh4r¹¼ªªêiIz6F777ww÷v~ «ÓRG¾•±³Œ¸;cB‘0}Ó ¢×ãö-›1/&";ÆPZ2$âÉdŠˆˆ°²²Êçw ‰éíí áKÝÎή´´ôÙ ˆŒŒ”Édz½þÉ›ÊÌÌ´µµe†R©læ^`°´´´¸ºº*Š†††Áµ¼|¹ cÛúw§bqwhkw'ÆN2V)‡ódOÁÚF–“{lÐ)H<.×;;=ƒ‚'0vˆ±3⬠›µ»Q(°jÆøÉ2…1[•ßé'XxÏÔÿw×Õ­­h¿ó}Ÿžú¾7ª¬ Àôº ÅÇÑû¡Qƒ1r™H…HÙ +77ZÄD¨Õ4o>fÏÆ4OD,¢´4Ú±ƒbÖЬ š6 ˖ѶT¼÷Móà-Ðâš:ÁA´w%%Ñ[!X´k×`þ‹"Äa™< oRa8¢¦>ddÀY—IHHÀÊ•4Ñ…–ý yÇű]CsçÀLJÂñ¾($„,À” ÿøúPñI±‘žn:ž‡ukþ{øùÁÃþö>vïÆܹdgGÁ³€éoPBåäb},‚‚±x1´ZÈ^‡;•žÙB’xAÑjµÜXüì%Wß_Í×yÎR…&ÔAfÿ€pЄ:Š…P‡9KšÇ‘ãG8ÙXžŽö@–Ú”î߬ìIQõ¤(ûCõƒß›Sý9ãëD_Ík2ÞµÂɹ¤¤d¨‡á…âö-j¹L7Qµ««K£ÑÈåòªªª§-ëÇÅh4º¹¹¹»»···‰€Õi©£F ßÊØYÆ Ü1¡HȾéÑëqû–͘û/ûåÔTvÅñ›YW·,‘ìl-‚«†$€‚²&À’„U ÐJqƒüPc…õ7B­-êÔ©ˆE°k+M»Z«Î´#»@*Ñ…ÝÕtFºhYGÛbY¢‘óí}¨ÓNÛñŒ€3ùÌÉ››¼›s¿çÜ;ç½#ààßæxÍŽºËå*((ðññ±Ûíã­ÅÍDÇétšÍf~Ô¥R©Ãá{eeeb±¸¥¥eô®l6›D"a/†V«íééñZ½½½J¥R¡Ptww̃Éjõe¬f¸:µ +ÕéY¥I¨NŒg¬C$:ÅXñ¦ùŠ>ýlÄ!¸yYîô÷G¥šæ1v’±.a×DÏÛµÇÖ$bWãOc¾sÏ7n&$|8ÂØéÄY;ÙñàáÓ{4¶Rž.×sÅŘ3—2ÍT[‹’bxz!P†C‡hã&¨Tô“Ÿò×|Ï¢¢)%AAˆÇörøíØ$åÐi…É+r ² Ú³Z-T‘°Z)ÙˆÐPlÛ†Ó§aY‰éÓ¡Õ!>Ž¼½)9›6"6)É´óÇX_ÊÿBs碸Ÿÿ;gG?¡·=H7ÝŽvAFȤ¥“N¹ ËsÈb"ˆŠŠP_ìlèõHOGXâb‰râÄ_Eˆ¨¬@qÂ# —£týuEF"+ ‡EEÅ4Õ~ˆ … ååèìB‚–&M"³™¬k°8t °®ÅGÈœ‰D=©TH7ÑŸ‡_É\.ª?Bž=X¤\]¹,Ä;ðOâ¹Ú^Nùù¤VãÝwaJ¥½{I£DB<9<ØØX,UTPz:-]‚ª*Áù¬YPF¢µm ’7¯%999¼)˜âñ†2~æ²’à´B¹1WfÈ•r3æþɆ-ÏI/T-²ïÎñRø~çór ~kpÕ%î×Vë«ù5axð_Æ×>:¨‡-éÖÏâŒóÅ|iEPp{{ûx§áõ@—.Ò¾Ÿãt¾|Ù F??¿Ë—/¿q¯¾¾>µZ½hÑ¢»w€ŠÚƒS½<0öcm¼;c¢fѳڷs"¡×ãíÛiÆb˜€_€›ã5;ê.—«  ÀÇÇÇn··7§Ói6›ùQ—J¥‡c씕•‰Åâ–––Ñ»²Ùl‰„½Z­¶§§gÄkõöö*•J…BÑÝÝ=2&«Õ—±šáêÔ*T§g•&¡:1vž±‘ècQLÄC˜æ+nàM›±âNTªic'ëvMÔø¼]{lM"v…1þdQ1&Ñé;Gqðܸqãf"@Ãz<îëCBâãqëöð-zr¬¤ dhxü8‰XiA]-ååQHét¤TbqGMÍà;’f"½Ž +Ê^N/ÐY;½ÿ>E„£©é?Λ7nþ99+xS0Åã eÜÌe«ƒÒ +åƼÀçZr¾,½Pn°È¼çxùzt–«ñ;ÃPþÛýÚÁjÁœÕ:gõ“ñ`µnPøʯ üë£-lI_ï3̇/­ +nkoï4¼>Ü¿O¹¹BI—+ÀkòK200`4ýüü:::^…ºWG__ŸF£Q©T÷îݵ§zy`ì ÆÚxwÆDÍ¢gµoçDB¯ÇÛ·ÓŒÅ0¿ÿ6Gû¸ˆ1.—«  ÀÇÇÇn··7§Ói6›ùQ—J¥‡c씕•‰Åâ–––Ñ»²Ùl‰„½Z­¶§§gÄkõöö*•J…BÑÝÝ=2&«Õ—±šáêÔ*T§g•&n-Œgìc§‹b"Â4_qçŸ87/Ëþþ¨TÓ<ÆN2Ö%욨ñy»öØšDì +cüÉ¢bL¢ÓwŽâà¹qãÆÍDž^úþJ B!“ãæM'!ôDèë¿@ Æ R¡¡öF,IÂäIäå…5kpñ¶nÆqñôë#Äß“£ü|ŠXˆTòòH£¦  J3ÁœÐ(*±£XžƒØ8¬_GzæÌÁÖ­ÔÞ†Í[ðÞ{ø AÁ4Õ›êàსª]”´”*+éìüþ8¥¦ÒôéÈ]AW¿|¢õRÅÆB"¡Í›é¬**)&†OCa!EGC£ÝN×oÐJ ²³èG;°d)ââ(%…§—T‘¨«CS3~…ëÖQV¢£°};Š‹2ºDZG³gSv6NžÀ–-$#*F0 %«ÑÚJj I¦ãøq\» +®aa8ñEM©H2‚¯²î‡ô§?â~¿ÌðËÃ$“‘¿?Ö®—š”„¨hDF’2œ23±ÒB¡¡àÞ**qû6vîZÝ7ßD_}ùd;®]£Õ%ˆŽ¦¬L2èmOp‡Öµ¤€R‰×ÿÅ~¹Ey]qünl“µ#°Î¬a±¸ÂB}´YiëjÝPV¾VÁE!*j£¨3Xß&‘§šdDP©§(†E‘Çj‚Pñ “ÒEj@BÌêêÆ…óïý@k›é À 2óýæÌåÛËwïýŸsÏÜûTWSôbÌ AD$&«ÉÇŸ~ŠíÛáæFJ% ½’Q""}ˆÐÐ0^¼a×ï/§ÙKÜgD+üç»jÃGhüó—óvz„ë¬ÅîSº Ö_áhwy +‡µ¶½>–$ÍÃdÍ£Í#Þ&«ÛÚgö0Iý(IÝ’>ýë¶Nôsç¥ S¸{”–•õvú tï||…KÊÞžNävv¸ÅbÑjµÎÎÎ= ®ill?~üرc›››{E@žôA¤0v•±R^1ÉYIGåÛ9‰Pëñò-± LÀy˜K©±¥ºÍfÓëõöööüƒGD¤C¬V«N§ã©.—ËFãË/•J‹ŠŠº?UVV–L&c/†Z­6™L]^«¾¾^©T*Šššš®ÍÇoÓ´¶Ó©D8::š¸1VÌX9cÇS1 wÁÁQzêt~—]é,wÍfU`ÐpÆŽ1vEØ5‰áy»Ön…VÉ¿Y<“i¦Tu#ñDDDD^èió}Æ©Èãw¸}»Wdž˜À?ÐôbŒþèIÆ ÄÏ[}½ù: L›7£¡û3hôhøM¥ô=Ttg iù +=Š÷`Q Àk"BæaÖ,üö7ðòÆêÕðóC` >ÛK6ÿïÌY”˜H‘‘POFt4&«i¨ eÀ}3íÜA³gbÝ:Êù‡cÞ<¸ CĺqóI¬êêhÅ +ru£€@JH ùá˜6 kÖЦMäë‹I“ðU>nÝBl¢ôؼÁ30u*ÅÆbni4X´7"0³f#5•""1f4V­¤Õ+áåEsæba$yO"|ø!ÍÑaÈhhÙrŒƒ•«PVF~~äêŠ#Gpíþ² *ýá÷˜$¾\e%øÆÅ‹TRBu&üx•øü $'#/î6 ®56 çßì—oPSWÆßKH”+°:Õh‚€6†E¨2¨+•hu²" +—º®Ëv6µ~ããîÎtªÓ©Pl·¬Ìì:ÐZAjT²²®¸:Àð̬Dƒ"$(¦MsΞ°«N'š $8÷7Ïܹ¹ÜsÎûžsxïyQmjhÀçÏãÞ^r:Á}}øÛ³˜ŒÛÔ„Ï|ƒ»®"³¹ ÷ô’¡ùyÞ„Égèû‡xd‘7wìÀiJ´aÖnÄññ8)Ÿ:ÅÆI46†­ÿBk@ÇëñÅä¨61ø_û:…þqc;4DV}þ9JY‚220™ÃÇ—f`·4³}’Y=}‘™±õc’TGvã ¾~_ïÆ÷ÆðÐ]ÜÚŠOÖ“ó:sw]AÎìE³¸“88楥eÄDEóÔšäÒÒ‹ß_­cDEŠ­{W<¥¢ +VÛ*•;ö§•}˜±©rż¤¨tItߟßÆßíÀ …踟(@Ç ¼µSÒzkó‰PûŸÐ¢z-y ·ì8¼>…˜ –¶²³³3ÔÓ0wp?Ä;w"”˜„HÝÊd²«W¯¾Œè^·oßÎÊÊR«ÕN§3$T×ÕÆŠ„Çz,Äu‰ògßÚ(ÖëûÖ ,²Ô‹uŽmuÇÃ0ŒX,6™L¡Ž…#Üq»Ýz½žlu¹\nµZg?ƒÁ@Ó´™œ6gŒÑh”J¥ð|h4;9‹ÃáP©TJ¥ÒFÎíA¡«ª’ÔøªS[ü•&"3@;@@@6P$…8 Ýr®5è8eØåÊ.Ò-hèaWºð¬U›ÒE +®/‹@š_Ð=ƒÇÁÁÁ& ŒˆØ›Q'^·­\‰o9|Ïç^/«'Ãþ54„A%¥ø«¯ðäCôøŸž|Ñdzfg27à"C?zÐ7_ã}ûðøÃè·ûpu5êî8îɇøt#ÛÉ'Ÿ ›7§ûGÍ™ÝÀÁ1W)++#¦ 2†§Ê[\òÁšÝ\µ­RI¤«T蘟Ñ6F±QìürÏ¡ôü½+øIQ™Ò˜¾?åâó;qC!®×²:±‘ÕÉM¸~ãÿuB‹OmÆŸ{×ö—œÜ7bÉÐÊ´4‹Å2ëyÏÉâÂÖÆû.T¸àEñèì·¦ár¹´ZmrròåË—_Jˆ/ôôt•JuçÎP]W+è°wÔ%ÊŸ}k£X¯Gì[3@°ÈRS,ÖÎ4‡a±Xl2™B G¸ãv»õz=Ùêr¹ÜjµÎ~ƒ¦i³Ù<ó®ŒF£T*…çC£ÑØíö Çr8¤²)•J›Í\ºª* @¯:u°ÕÉ_i"2´t4dERˆ“Ð-çZƒN#P†]®ì"Ý2€F€vÕ¨ ÏZµ)]¤àù²¨¤ùÝ3Øxáº;„Ó3ðòåèÆž£ní)&'ñùïÐg5øÊ¿Ñ«‘ÑÏ1Úÿâ†S¸æ3\ˆœÇFGM¹Ýˆœ!¿üµ·#—ëQÿè•;Ž°¡¬l1‚Hj¥:~ëo–oÝ»\»ké¦]Ë6ífµùI±OÈŸv-ýUÉR]¥â—Û_çÅG)$Ñþ úá‹M£Ÿj?ʽûñú‘Ãœ‡óœGòÈï~Ãè‘<çáõï¿óQÞØÑ|÷ɦ÷ßÌ\,"C+•ŠŽŽöYΚ—û÷ƒƒw‡ÉñÜÇÄKcºëqŸØ¡œÎ‘[·n8G¼^oÀ¡"m@q4nú:ÐÖ£££yyyÄðvvv4Ýnz,RÓT*•R©$U.¸tUU€_uê`«“¿ÒDdhèhÈŠ¤'¡[εG “Gv‘n@#@»jÔ…g­Ú”.Rp €|YÔÒü‚îl<Žð_6};xgeáÕ«q?òùµö‚p»ñø8žœdõ~º{`sAV ýèÁN'¾;„<ÀA.Ÿ»'ñÄéê§ö¯Ðtqp„/åå{¦¬MŒP }M˜¸D$]"J~]ôÚ dK’ëSZœ*JN!¯ SDâÄ(DÌ ÖÊDÛÓ¶¦'®Yô®Jºk­´XT¼6‘h—zZ¿^+Ýž)-\ÿΚø¢ôø7e ¢d\¥BÙÞÑ>ËYûéÑ£êuÙ9Z­®¸X_^¾»‚)­x¯´¢²”aØë ó^ é“aÈ;Êöl/.Þ\¸%+ëü~pÐhähxé¶!,MÂg›m>22²eË–U«V]¹r%ж¡¥¿¿?33377÷æÍ›!  º®6V$<Ð `!î ¨K”?ûÖF±^Ø·f€ß¿˜,5Åbí IðAãñx†‹Å&“)Ô±p„;¤®êõz²Õår¹Õjý MÓf³yæ]F©T +χF£±ÛíAåp8T*•R©´ÙlÁõ «ª’ÔøªS[ü•&"3@;@@@6P$…8 Ýr®5è8eØåÊ.Ò-hèaWºð¬U›ÒE +®/‹@š_Ð=ƒÇÁÁÁ /FhêŽØœÊ +\\ŒnÜð=A! ìE€åàe³DÓ¿ç~^~ð"D’õ%lžlSôèö•ž,Ž0¢¼¼|ÊÚoÀãEðø|O0/b^$o^$ßw}\+>?‚}™GùÚ?‚Š‰ä‰æó‰b£q1ü¸˜y’$†?-¡@Í_ÅÎç‘7£"y¶-‹B¡loÿç,g=>>¾·’á üèè˜Eô„„¸Ä$Ib²„\“’Øë TRrœ¯Oqb’(Aº€¦…"!Ç{ë-UooO ‘£{÷СC(!羬Ö@›ŸfÍ((ÁWôp+ +ùÅ4ÂîÆë+Šm¢oÈ9àáYðÔ־ɖ6‹Óef¥e,MM_²(##%=#%-cQý Kz ?%mIJföâôÌT ¨TŠZµ,}­0C´,C˜•F$ŸÈÒÅùY‹óÙ6Û™NdyV:¼:Éòì´Š®GJK%íC’½¾72Rý“dõe«VäGŠpŽ„¨Z|~`-Óɲbå +C»1^ˑφQGîîÆ'âîóùúúúœNg¼sç·Û}÷îÝ;wî¸\®y1à ¦!';ë@7€‘Tg@]¥¦*ßÚ(ºÖ#å[3@%ñ‚¢B£Ù4/Æ'Œ×ëU*•@§ÓÍ·-< ò¿©P(ÈQ‹Åf³9ù¨Õj¡P¨×ëg¯J«ÕŠD"˜2™Ìjµ&¼–Íf“J¥‰Äb±$¦A®RåÔ3ÙÉ@g§©R=@;@'@@Ðqnž°åbkÂ.ðÄ‹Ýᨨ‘œ袣F]ž.j¬\¡à¹YÊDUÕ·gqðxxxxL#Ô‹Ñ“&Ì (ðz[‹Xk¹¿ÂýÓÂ7QÀoŽÃÈãA.BQ;€B:#—Æ1+FÍbTû¼ØéDäVT†vsl@Øí"ã1òãBò?NwØFP¤-Áà†, ( Ï N˜€B»Ãj ìOàÅí"›ÃYŽí¨äì)÷p¶?¢X8ELp!¨„ó—ÇhYX'—‡g¦ÔÖÖ’¢`qFʺçóe;×nÞ±fãÖÂJ"ÛŠ)Œí…·mÜZ´iûê-¯?ÿJÁ¢o¥®Y–þåswþøòõß¼ø™Zjx÷ãþrãrÃþÚcåÝòÎß¾hyÓ'o–•|{)Yº¬¬ÔdLv yßáxiw]ÀI€;@Ýè¸þt„h6u às€> >JÂÔ’Ï<ûlÇõŽ™Xs/ûãqùIJæ®rÒöù|~ôÕñ¤YQsÉD¶Çëõzȵ8ÙOÕ/.5 9ÙYǺŒ¤:ê*5UùÖFѵ)ßš*™ˆͦäX;W((•J@ ÓéæÛž…ŽËåR(䨋Åb³9ÙY V«…B¡^¯Ÿ½*­V+‰`fÈd2«ÕšðZ6›M*•J$‹Å’˜¹J•PÏd'¦JMDôíM@ró„-[v'^ìGE¼à@5êòtQcå +·ÈÍR ªª¾=‹ƒÇÃÃóP`¿å‘Ÿm ¶#Y_øÓ0ù>@7cóƒMί` ù¹0Mô„/ŠPÇàvãñq<2‚ïßã£äcs„ cÂÁŇíè‹ÿ¢Aöùp¸7°pȧÀ¯õ÷ã¯z±Ó‰ÃšÙ¡¨ò+bB®…ÖwL ±1ÖHú9<ìwŒãè0èex6ÓFˆë<šœD}½Ø6ˆ|þðhzŸã7yúþ…m9£6´/^Ÿ‡<ú€ØÉ™ˆ" o/×ËÈã°0Ž.OœìÚUKŠ‚Œ¥©ßiÕkªïþôí²šº’šºu?Þ½¾†–’h©[_S'Ù±§ôuõs›w­K]ž±!?³ëðFüÏþ“?rkª< ÕÞãÕ>Mµ·¡Ê£‰•jtj+n’÷üî×ä¥%ee&Óµ${m8QùÖ[…Ÿ` €ÿiŠ(?P˜^ ¾JÆÔ’+ +®ut`:Gz}LŠfá¾’T411ñèÑ#4³ËqŠa3ÔðØñ~¿ßív“gèurrÒËføˆÁv»ëÔ“l@ÜÛÑ<666::J”  y<ž¸Ì~zÔ4ädgè0’ê ¨«ÔTå[E×z¤|k¨d"^PTh4›æÛø QV*•@§ÓÍ·-< —Ë¥P(ÈQ‹Åf³9ù¨Õj¡P¨×ëg¯J«ÕŠD"˜2™Ìjµ&¼–Íf“J¥‰Äb±$¦A®RåÔ3ÙÉ@g§©R=@;@'@@PÄ…ÜkÇžÇWI}=„?8†@ÿjÆ“NÌØ05øŒl„+Ä} âǵâ63ÅfCšñ¯~‰ëêðÛ*LÖu»#TÜ¿ŽGöãC‡ðáÃøäßPðãqÔFævâO?E»÷à¿üÙí1õX”1Ù‡ýÔãßÿݽ‹8cbç¡Ç¿¢Àk_/j$òJ@NЂIÏG?ħ·ãæýz¹º$—,]ZZj2’ìõƒÉG›ßyg E}€Š˜CAÜWŠ²ÔÐu¬|¦àß7œÎÉ––“ÉäõÒ7`OOF£9þ¼ƒI˜ýýý§OŸ&u®ÇãáÚPò2Ðøøø¥K—Ξ=ÛÛÛË®{óæÍ£GvttÄ&v¶µµ9räÔ©S###ñ®511qáÂ…3gÎ †ÆÆFâûðððø0Ô4ädgè0’ê ¨«ÔTå[E×z¤|k¨¤E…F³i¾ýˆr,•J¥@ Ðétóm ÏBÇår) +rÔÅb±ÙlN¾jµZ(’„9{UZ­V$ÁÌÉdV«5áµl6›T*•H$–à·}¼ÈUª<€z&;èì4Uj"¢hèh¨úBÊͶ\lMØžx±;5òb€s]tÔ¨ËÓE•+üý*‰2ÉÂÕã&.;šˆtfÉ ®²³ +¸ë D'ÃŒ&#ݘÍDE6€¨À‚#Œ^ൊ ÆõàPFÄæò9›–£iD[P9Tñha9tÓýÞ¾¿9 #ºIyùSÿ«úßQUÿ«úäŒÑÉ2“1C°lOtÐáƒq ø¥}}pÓfll­æ=‡tµ–,AKKð÷ÇÇ_î}³û‡i}4ÔzQ¯Õ©!']Wãüâ·ß´/Ð67 0wû6,s«¸Ì==qïÈËÃn¼ìh ÚÛðÐ!üòK\çõöjž‡óïV÷yž‰:üÂÙÙ…HÁH½Óç9üÛb±‡Ù‚¦ß­œLb¿rJO£_ìWô6ºN^êm!Xiªgô' ½ÒíÖ˜´H9O"Њ2D¨<&T†ÚöJˆ°+T  +¨BmÕ‘ó0Á¾:pö\S¢2ÌÜܬ°°`˜³~ÖÙ!ôõ1þè£ +Æ1`¼W„ýB¾jÏŽÇ1£ ãåò +…b÷îÝaaa---˜H$š?>ÑÛ‡Ò«T*õóó‹ŽŽîꢲIµV¥¦"Ö‡îînÒ¼aÊ Å› {É Þ={ölØ°!Î퀸¸8{{ûÈÈÈW RœgÏžutt xÜw€’µGR[­Å«ÞÉWPPP```JJÊ®]»<Ø3ƒüÚ¤Þ üÃÃÆŒuŒ±[Œ;c<1o0ú–Ëã¸Ñ·Tƾa&LšX -žhßh¹¹¹éëëgee½ïXtøÐA¿¿ƒƒmuª]ÃUN>Ÿ/‘H†n*66ÖÐнlll¨v½µ¯GYYY™™™Ý½{÷í,,òö¦Ó4T[ò¹ê4Xi"‘0–ÇX cÉŒY3î<kÀO»œþÖ)èð[ÑÐÚj½pÑçŒ%1v“[5^öëV­GrxLÎ,33ˆ°ñtÐA>@ß}þî=7ÆüÚ0ÝïF;¶ã'†Q£ÁÒ/\$4?C™ ³2ñüy¸t ŠŠðZ ddÂ¥T(+çOñ~ \½ +锌™™PRŒ……˜’ééø„cFÐPÔ>u +OF }¨%€4Üó©vì€É“áÓÐÚ ø ´Åª*ìáq=c’’ÏÇ‘#qÅ +8z¢¢04΃ǰ¹KJ@~oÝ"ל—ìlÈÌÀkבBòócctt"hÄóò "‚âw­­ÐÞÅÅ(ŠÇKip¯oÜ@O´bl ”–bùmT)Q­‚ò +,’AeVU’}ˆŽAq66`{;–Ê1>¢£AZôJèRBX8Nœ–Ó1WÌ_$åb˜9kk¡© D"?qg ’ýu˜ŸÏL¹ˆgΠ¬˜–€››û5\:”©ÇZ°°ÀÕk¸‘õ +¤©8~âÏåÛÐ…˜“-Í4MPY Ä\(l…$yû375ÕP_OÙ8#"á| +46jWºoò·n¿}ŒáŒx]ÎõЂfdÒ¥[âº:¤©+ÈÇs"ü9‹‹@©Äg͘‘Q§¹¥{Ô/ ÿOuÐá]ÁÉÉ™HÁõFLŸóéOóïט-p6]°¼OV ”å¦vZ¡Æbóy«L?þËÇæz¥Û¾Â³ßu·íøïÜŽ#6GIævµé‘Ž#ÔÖ¾t¶Ñ„ ñŒ]màlÛ)cɵ™¹yýÈËv¥ÒÎÏﳸKÿ>ãQAïcóµ\òÓñã¯É¯?yüÄÁÁA(–””¨Tªµk×R—±±qnn®F£9qâ„ÝÞ½{‰9VWWÇÇÇ'''yìêꪯ¯ÏÎÎŽŠŠJLL,//ïТ¢¢B,§¥¥Ñ0©TJJ¶©©‰”±ZÈd²îîîÖÖV‰D’™™yåÊ•ÔÔTrÝÙÙINYYÙéÓ§ãââÈ Ó3WEEEsæÌ™:ujLL ½*•J___ +ÒÅÅ¥±±±®®.==b¸páBmmmKKKhhè¬Y³œœœîܹCfÉ5I‘“qÊH­Vß¼y3!!]¾|¹¡«Ÿ4Œz)ž   @àîîNŸxxx#¹\N.èIaP¨/^¬ªª";mmm¤!¿””H$¢€5ÜÙñ;Â?Œqq˜˜ë×sìØ [¶@pFD Züœ ¦ïÕPTœ·ÕˆR)е-x?®óÆýA*Y¸ºÂìÙ°?ÂÃðäIâ“ØÞÂy'w§" æ4ã?àö`®eÅpä’Ç!)šŸqI©”FF8nho&¦°jÈŠ13ú ]W­…'‘Íóö¨*bµ))¸mþý*Šê¼âßH[«IˆX<´aDE˾"‹â  3PQ6 ‹£leÙ"ËVÅ•¨hDz•5gÀå@TjT¬‚E­9žÓR¸·÷¶çôM ¢Ìoî™ó½ù¾wïï.sß»û÷cmGŒ’•œ‚Ç+ ¡*N`üôü#îJÇîžÿFö‡Ø´ ­­qÖ‡ ¡gÏq?^º„±‚^™Mp¾ó¾Â„°5¤R¼ûW¼} ‹Š!.¾ø£b@.‡Ñ·V± +(0Ix{{ÓPðÞûJ†¶êáz냗¸ø.vñ•HüøÂç@홚3ug¿-Á¹ íø,ß~ Ða Ð~Lþ³xq9Xàð¬Ð~´Ä ¿ÜϲqÖS!Óºzºr¹lŠ½î\+‰ÕRúÕ]Æñ€±©dìã xÜ ¦ª®~éò•§OŸ/[¶¬ººšÖ>>>´5þüÊÊÊGeggoØ°!++K&“ÑÔÔÔ¤¤¤ŠŠŠÛ·oߺuëÈ‘#‰$>>þðáÃty÷îÝC‡%$$Й˜˜˜ÜÜÜ›7o µ··“†ˆˆ±Xœ——wïÞ½ëׯ'&&Ò½R©tçÎÅÅÅwîÜyòä é  ­¶¶6ºq>|ø lF++üíL´µÅÐPtY‹ŽŽ„›|Ð̆… A] ýý10ílÁÍ£c006zaz:†…Ÿ6À_:Çý„‡01>ý~ý\¾âã 'r²áÇaü«<sÓ¦¡½fgãÅ68õ-8¯Ac01{<~Ž]¨‰óçcdÂÒ¥ha~þ(p^”–bt‘¬,HJÆÕ«pý:‰ÀÜmí09/_AÙpvF}}üòKÒ€ŸÙâÙ³ÐÔ>>à¾V®DK+ŒŒÂˆíœ§>¾àï––hb‚›¡úÏøt€ àÈ(|sýCkkLNÄ•+i ž£}}@VÒ3P‡ÖV¸f ~•=]\µ +·…ƒ™)êèáñ +¬=‡N«€² •¢Ÿê룯wï¡íì€R`û›`~ž91ÑÄ ÑE€¡!¸%„K“#ÇßÓ´—àî'O^D`tÏÐÓñV.ãjjH‘¹ +ŠpÁÔÔ„´4,,:¯F‰½¼(¤‘T…… •rjÕÕ)¹Ø}o*+Vþðöö¦¡`ú %£ÏÕ<ÂôÖ/ø-vñ½¬§“K>\4KGå½k;-ð¨`x¿Ó³ûÂqqøä„ÛÙçˆåkþ–m+ПC¦utõärù{Ý?4ä"‰å+Më¦NE jª„lý1×±AlÎ<µ 2Îñââb ððð7n„††*))—””„„„샟Ÿ_XXXJJÊæÍ›ÓÓÓÛÛÛëêêh‹2èè蘑‘qâĉµkךšš¦¦¦FDD899mÛ¶­¨¨(..nË–-¹¹¹;vìpwwOKK‹‰‰¡™—¬ÐIÚrqq!=555dÝÀÀ`ûöíÃÃÃã±jkk£±×Ì̬ªª +Ç:'i˜>}ºH$ÊÏÏ·)ôôô + +:vìØÞ½{i‹˜ìƒD"!·nÝJ| + ¯^½ÚÒÒRVVF¶èLdd$­333}}}‰g||IPPZ•••ëëëß6Þu zxxP©óùüÖÖÖ©'¥¢¢ÒÜÜ€¨(ÌÉA774XŽÖ6`g‡aaØÜ‚¥¥°h!,Ãêêq×ñ꺺¨¢‚úú;$ `0ú‚â©S0w.g×Ìœ#vù2jàµUçáŒhar966€æÐX€yy¸+´ø 6D"X/D‘HâPà B!´´à™\½—ꣅ%ZX¡ƒ#ÆÇ£¬ššÀÊù|Ždl,¬À\)äçÓ*z€©)¨©Ch(¦ïBW7pvFWW´²K ðñÁ“ø¯~.©#£x¤.âØ›`DÓ¼¼ ïŸÐv²s03“‹‰‘Ñ¿Ù¯ö˜¨Î,þ$űòP¦J°0À……á%èò„‡<žòX*°jP±‚ +Ê3eMäaµb—Mð±Xa‹ [" +jܲºÐâF£5”ŠÈ9{.ã&ûGW[X©›Ì/g&7÷Þïœß9ß¹çËsr€¸CüC#DD€ÎX\ÇŽ¢…%¦¥C?”ìC;ŠlÁÃ|| ¼z{8·VVŒn@Q²²aÏHNB©×¢¾>DE#¥, A‘%”ˆÑÀÄbìêÆ/Õ.Nü))¸b&&bL4êê¢\Ž==Pz´´ÀÖ†Û‚ú.:mâ®Ýð»´GHOƒcÕÄŽÇøxT_îøׯ¸i•Pâ…˜˜ªï©Øy¬ K3Ùb&•›JãL^kÜ›Ifï¯Y*Ô^<´Ó[ý§$“G½~<¦0ñO÷èE76û—»K?ZN¡…æ½4ÁSSÒü•E£4©h@-”Q¬ŒÎ +1mþé¹BdN:¥««ëééÙÑÑ‘ŸŸodd$“ÉÊÊÊâããCCCJJJ¬¬¬¤RiyyyzzúÚµk鿯¯¯§§§¦¦&**ÊÄÄ$99¹±±ÑÕÕÕÙÙùÌ™3´J,“ÏèèèðððíÛ·ÓË­­­r¹<((HEEÅÅÅ¥¥¥åÀ‰$##£­­-//ô)]“óÉÉIE­úûû}}}Éíi$ΞÜÄGMM-,,¬¨¨ˆØÒò'NäææR¬ÊY%ww÷ê®Ã‡߸qãÈ‘#D;;;ûâÅ‹]]]§OŸ¦÷i!ñIII‰%VMMMT +âWQQaooOéÐMzS(«öövr¨§§Gq)ÇÔÔTªU‰üœ— ‘†‡ãï 1"¬¬ÏG©š‘xs>>µµµ®®®ÞÞÞCCCþþþÖÖÖNNNëÖ­+,,íêê’ÉdÁÁÁëׯ'AAA÷îÝëîî¦;ÔtÑÞÞîëëkccCQgÔ;wââ⬬¬ˆÕÄÄÄ£GÒÓÓ544bcc³³³µ´´èf[[[RRÒ®]»Š‹‹#""D"#oõõõ?nii¡ ´„œäççgddPtsssSSSgggwww¹\NœûúúˆÉæ͛ɉ±±1­««£p–––•••ÏŸ?///§ˆ”uuuµ››eGÜÊÊÊnß¾ý¦{fw}Ý2õ%ÕŒÝdì +©3Æ»Ì{•|ëâqZä[c\¹Ó3пҷЭ>OLOOÓ¶ÒvÓîüÚ\”xÛ155Eß>µº@  oyá äææjkkÓ(›¿«ææf>ŸÏ~¼¼¼ÆÆÆæk||ÜÎÎN(ŽŒŒÌ̓,3S‹±ÚÙéÔÃM§W&²nƾdl€±ÏsQœGZÚçÎ_˜s +JüR|÷ô©K̘±³Œ s»Æ»ôº]SØ<6È,ŒñÅÞCóh<%”PB‰· Ð +<|ˆáap7á¿/{CdþM ++AS ±¬ ªŽ`\ +ÍÁú7€k×br2ŽþVáuŒ‰…[·ðÔ§„®nè-FO/liÆÞi®\ MMpë&î؆.ÎÜòÜ°÷îÜ\0·ÀñÚ5P„=xÔÕa ~|““@Ww†Äã;ï`f~óÍKŠŸžÂeš¨¡‰Û¶ÁŸÚ¡·ëê9ŸÎÎ`j†"¶¶âggÐдµ1;‡¢ ƒX[ƒ,}| : +ªªpÓ&´·Ã¢",.A DF@é~¨­ÅÌLX­‡æ–PP½¾«øÃÄLZ:,^L2##qxÿÅ~•G5}eá‡þ!§­¶,ãØÓã2-¨ bSh¢‰Â"K” Š¬²©‚Ä$ #‹ˆ0Ê@‡¶Üè8=Ê¢–J[qÁv¬çÔ…Þ;÷'ž3ÿôh -úG>.üÞ{÷ûî{7÷åépæL03ÃðpÌHpô(êpK4òf€±1§âà|š›ƒ“´|ÉÅxí,YvBÐé@á‰3f ËGhcƒ––¨P#ZðqW:Ae%XYaæn¬:‹lP"!ÙŒ–V(Yʵôý ;›6„BT«¹SØ·x< xµ**èÔð½¹àçÛ·ÑQbJ +ººÁ|kšOMγüº{cãðoïᇞÅŨ䴑NçAX À­Û¨ð†iSÑ^ˆ#ðãQ£Á•hj¢ÐÉ ihᬬ‘‘‰N\=ôø# T*©)˜òÚd[—™>Šy² y2•ù MÊw_Ïsî4 Ãöm"<.Ö-ïS‹ûóGMòk&î?ðÑ°vs¿³gé +KS¢,/RM›X<”%n5›<©›Jc0QF\?2ÑFl:ïtS‰yøða||¼¡¡á¬Y³rrrº»»kjj/^Lsœ;;;[[[W¬XÁçó×­[§V«9BÓBCC¥R©§§§“““©©©··waa¡£££@  9ééénnn™™™AAA^^^¹¹¹»ví¢i;vì 322 + †ôòåËäV¥R577·µµÅÆÆZ[[Ëd²ÚÚÚÁÁA’×××GŒööö...:®¤¤„HIØÞ½{“““IsLLÌÀÀ@CCC\\\FFQÊåòÈÈH¢'aIIIDMKvîÜ)‰$‰B¡ +…vvvÁÁÁ4“Òò´´4b¡œÜ³g­­-ÍÔjµÑÑÑK—.-¦*tí3gŽ±¸ººÒ{AAÁ7þìœÙ®Õ¼5õƒŒ]eìugÌ Ñàyí[“×ëQûVǘãðîìYZ&:ÕljáááÊ:ß—­EWýýýôÙ¤T733kii™xT¾¨R)¿«²²2Ç~Äbñ­[·ÆÌEu˜Ê……EWW×Ø<È7o6aìÐÓêtž«NÏ+MdÍŒcì+ƪÞG&¦Ÿ~öù˜CÐã÷âþ£G¢Uò÷;ÅXwj§_tj£vÆ€]aŒn;Æx’eíãH<=ôÐCW0ú@¯{zpþ|°²Æ[ÝÀL´”QFÂÔT03Ãèh¼ôlkƒ¢Ãàæ† €Bžž¸5oÞÄâ£h!À¨(¼v «O¡*¼à‡¾¾Xõ.– h+Ä•ØÑ©;ÁÏÒÒ09 V¸¡r *•àâ‚i©ðýg¼'Oâ’@,ÆmÛ06D ΞÑÑÐÖ6ºPÿò-ðí¿Àj_LOãÀ]Š7BXHÝ /÷çá;ïÀ믣 ‚U(“A ""ÐÇbc‘<44téÒ%©Tjll|ïÞ½ìÞ½ÛÛÛ;!!¡´´´®®®¸¸8...000***,,ÌÑÑqÓ¦MÆÆƆšÙøøx ÐétgÏžÍÎΦµÑÑÑô0""âرc¹¹¹B¡–P3ÛÞÞž””D£õõõÄKD +…‚†šššH r—ÐsÊžž¾víZrU[[›““#‰222z{{ÏŸ?Ÿ™™©V«óòò¶lÙB3)–ÔÔTšœœœKK(RwwwI}}}³²²òóóU*Õš5k"##)p£Õjår9–——“ÿÕ«WWVV’˜šš +–Þ&&&Òhxx89OIIillýBðg}‰Ø®Õ¼5õƒŒ]eìugÌ Ñàyí[“×ëQûVǘãðîìYZ&:Õljááá##£†††—­EW£Ÿ;ª^^^”êæææ---/ƒŠŒ©©issóø]•••Q-e¿ b±˜j阹îÞ½kkkkaaÑÕÕ56òÍ›é6=ô´:çªÓóJY3cçûŠ±jÆDOï#cÓO?û|Ì!èñ{qÿÑ#Ñ*ùûŒb¬ƒ;5ƒÓ/:µQ;cÀ®0F7‹c<ɲöq$žzè¡Ç«øÿ¿ûÿÅE‹ÏÇîî—¥„~¡·+*0';¿~&îñc¨ý23±PG_ î_ðóÏpý:hq¯ïý×®bÕIÐhðú×xçc}=$$€á˜6U*T„S§ðìW[L“yÿ7<Wíd‰q¼d²JÍ®d^v 8®Ëaõx‰£ñÅöl5ÙñŠå. ºãdÊEré[Z¦åRZB‘R*ÐÂwΞË »0È¢V7é/‡ï;ßùŸë¿çÿú*«¨Ä¼øðŽŽ`wddÀÉoáôi¼{mVh3`v6éŒt(*Ćüñ6¦¦B{;÷ÍdijgñôiËùãø8VVàåd¼x oæcm-ÌÉá®&_Æü<°tOEd4¤öÚ5ìhçi´õc~>þø#X,H“Å?¾ƒËÉC¶@"‚HOÇêC+÷§© ''±¬OÆ3g 9™§N©Äá T@âwðí <—„Ëqô%7÷̆”·¸¿aq18ø‹z=WߟÒVZŠÒ*ü×m^D• +aªì6+Þ¼‰Y×Ðhšr{poßÆ~€¬, À%çɧbQ-ðüy¸xïÜ£ä +¼pžs23 -ò °µ…In[/¼xKˆ¥¡`É2Ÿ µûŽÆñ8è·Š9êÿ—Ãþ}¶b«x©>á ,Š‚œ=WÃ'®†:®þiœSèø•0Ç•Ð)ºêL ®†Aî¼ÕuöËÝ[Åd:0p«\&÷pÔv‡#">~‹™1d ¼wïÞíÛ·'&&ÚíöwºgN¦¥®Z±ü +cMŒÉh:c¢*Ñ|ã›TÄg=ß$Œ3Žõ›6ÊžÞêoª,%™6m°Ùo§wˆ^ «qEGGÓV÷óó£_±çˆ‹‹‹ÅÕÕÕo®*//Ï××—- ¡¡¡]]]‹¶E 0((( Àd2-NCôñãkKqu§:ÞækMDÕŒÕ2¦fì>c;\çÑê5âš&¼ðú‡‡wDEofìcz^5QÅëªæ¦JÓ2F'ËçŒù†…ëÞ`ãyá…^|pÀÄmÛ §ç}˜§ïZקíØ846B}=»¿t9Ÿúm 4¨×¡ÉN' Ví&´¿„gÏ¡Õ4­´4£N6vuÁÏ?C¿ ´·c›i¬›˜À aY¶¶â¸Ãm¸„ÁT©PR‚Òjlkƒ.3èô$/t›qÒÉGGA¯‡ò‡$e%P%E"FǸïýÏè«’¾‡ß,ÃO?…¤3ðXæ.|>ÝÔëñI'9N4ëA"Ÿ~â^‘å/°¶JJáñcŠ¨­­ RÃÀsîÕˆÔj¬©EKÏÔ§?HÙ(.†ê4šxBduXVŽ55`lƒ±1WÒ_ ^-9ÀW‘“ÍÍ$”«¤R¨x¯Ñf367ñôRž'¤<46¢µ[ï醊JFµŠ3mý\ùÀs +\(*‚š|útÊœÓMz”VaG;)á©ŽE°²)“ØÒ‚Z _2=ż´ó2‘æû”J%JÝ€šËÀDOº7 PñH¡B΋5øë㣇XW WþÌ xf¿záÅÛEll, K–ù…¬Ýw,0æˆÄA¿…PÌQÿ=ßø¯ølùïÅK[ÿù%–Å`Ad~»„ô0!-LH ›L¥k8§tNô +3waA$Jþj¹¸sÏÖOÈt`à6…\áá¨íGD|ü3cÈxŠÈVŸˆEº1±¯o\æögxx¸¥¥E§Ó Òãäää“'OÔjõÓ§O]ç´··K¥Òººº¶¶¶ŒF#-¡+ [,–ÜÜÜ 6øùù÷õõÇáàgÓélnn¦µ*•ª··—8£££ƒ¡££ƒÆÆÆÈŠÙl¶Z­Ä¬®®V*•´œ,¢ë˜r;@KZ[[kkkår9™› ~N£M¿^¯wë¡ñ¶ÏÒf³ÙˆIÊ«ªª´Z-9Œ¼Ñ +ÝÝÝ Ä¡@H’b'm¤™ø&“‰$‡††L.Ð=9F7d‹–“ôª  àСCÁÁÁ‘‘‘!!! v»ýi©«V,¿ÂXc2šÎ˜¨J4ßø&ñYÆ7 cÁŒcý¦2…ü:ùÖA¥¡T‹ÅbÚïÛ/>tÐo0**Š¶:u!…ÂÓ]÷¶öj^^ž¯¯/[BCC»è;v± Î@nq¢_ÃXŠ«;Õñî4_k"ªf¬–15c÷Ûá:V¯—”–-:/þWôÞÌØ=Æô¼j¢Š×UÍM•"¦eŒN–Ïó ×½ÁÆó /¼øÐ##ðuüa;Z­àyëî?@XˆmxõNq˜Áœ- ð’0mvê +3½¦ôM«žC¹Á€ññO:gêœiyöÂé¡ïu^e&i´›ÌpÌméWòÿõΠ~͘ãQ˜Gò—Ðfi›Û9˜ýÒu/¼ªÏ0wd^xñ‹ØØX +–,ó +Y»ïX`Ìÿˆƒ~ ¡˜£þ_ã¿òwù¼T{jJbðÆŸ…´pÌøŠS:Ñn×ÕEnfÆ.Nù{°0ª5ñ‹›?&Ó[·Éä2Gmw8"âã·øø˜CÆÀSD¶úD,Ò5ˆ}²v­òqýlßf÷Àiü‚9ƒÒëõ'NœHNNX\Z|"¼gØl¶[·nýÝ…S§N%%%)•ÊwíùÉ´ÔU+–_a¬‰1MgLT%šo|“Šø¬G㛄±`Ʊ~ÓF™BþN|ëp:û÷ï_¹reiiéûöÅ‹ÿf¿ücÚº®8~^ÝŒe`JðKúb²ƒàà‘H KŒµDAà¡1%ÅIM$h­[ÉÄ_Ñþè¤-ÚöO„Mj»ÉÿMƒ?Ú`ñãl"‚A¢i±”âÖäå—åD8À}»ï›ãÄ°æ~tô°¯ï»çœ{çê«Õjq©ïß¿ŸeÙÔ`±XhšÞ×V«•aˆ Nçr¹öåv»5R©t:‰­`0›%mBwâ»S´Ö„èÐ +÷Q¶„î¶õ$œ!^<^¯¶ÎÐ 0ÅŸÕ»Þ©¬‚q|³T0ÕúÉ$ +@ ¶>W[Ë8€fg7Å@M„$EHZ °Ïa¿¡ð /MC\ä[hÍu¼cþZcÒšo®õÕçC#ÃKXf>{¶êǵÅRdÐ(r yFLY½?¯Šyõ¬ú¶†£µ÷ùåE–^Jdi•ˆ}é £šÌ¯ÂÃãw-q‘ƒ¿ëÇK üŸ`4±(HKiŽIš‹ê›5¦‚X ϬmRî(ÈÚû£t5•=é¨þîOG¿ù¬Òý‡£®å­*d®TÍ\©úîG¿ù}¥ûÏUZu_}¨> c×E*•ÃaOqÖ>¿¿¦¥E.Mp(U†}ÍQP+±]Ré­ÑÑŽlukóèÑ£¡¡¡‰‰‰/^$·=©&–ìÂñûýN§“eÙ¾¾>»ÝŽS~øðákŠ-ÄåŽö,qF+À;Vg@õSÑäÛÅk=,ß®T,/×>ìxÝqn,¸–L&Ó¶mÛ®^½êóù<Ûíž››ÃþKxãÁe€‹aff??~l³Ù +.õ¼¼¼7n¤¾\- MÓ¸3$¿”ÕjebC§Ó¹\®„}áÿ)F£T*q[KlƒÙ,hºÓߢµ&l,À À@€V¸²%t·­'áñâñzµu†|€N€)þÔ¨ÞõN-`}Œà›¥€©ÖO&Qx°E@\Px½èÔ)tàšÆ—RF@¬DîF(ÒàvGl +Ï?|h%ó•ø¹ðcDÁŒV¥BÁCXö•ŽS×[£ÑˆEAZºHsLÚÐ\Tߤ¨1Äb¿¼ ¨»¨•d¿ PýÓUÉç4”ï~¿BŠ?4Êi<¼?‡;$}ÿPΙ +é¯Ê™³‡öü¶êǧŠwfþð-ìZ¥*v؇RœµÏï¯ii‘‹DÓJ•a_³µ‚Û)•ÞåšX€åžŠPøׄA«¯ˆµç$é"v_Éx&ïúÅåŽö,qF+À;Vg@õSÑäÛÅk=,ß®T,/×>ìجøã%p.‹‹‹—.]ÂÁ655™L¦3gÎœ={öá æüùóçÎÃ7Hcc#þ€Ëãĉ™™™¸ZöíÛwýúõÔ­Åb¡išeÙä—²Z­ Ã@lèt:—Ë•°/·Û­Ñh”J¥ÓéLlƒÙ,hºÓߢµ&l,À À@€V¸²%t·­'áñâñzµu†|€N€)þÔ¨ÞõN-`}Œà›¥€©ÖO&Qx°%@ËOþ\u5*)E33hå·ïq%‚"çoà&¤r?QŠý­Ç«bÙØ·ZÖB`Y‡EAZºHsLÚÐ\Tߤ¨1D±Sȱáõ•†‹ŠÜÒl,*í×—½{$?»LöNÉ^qñ±J*V戋xËTåˆU{2ð`ÙÞLunf•<»^ýnåþÛ·½…]«T*‡}(ÅYûüþš–¹H4 À Tö5 P+±]Òœ[££8„’íɯ°±ë¼æççGFFnß¾½°°°)\îhÏg´Ü°cuT?M¾ P¼ÖÃòí@%ðÈòríÃŽM >apI´··ËåòÂÂÂãÇkµÚòòrµZ]RRR\\\"PLx#ÁG_ZZŠ‹A£Ñ9rD¯×ët:<(“Ép©8›Pê‹…¦i–e“_Êjµ2 ±w¹\ ûr»Ýx•J¥ÓéLlƒÙ,hºÓߢµ&l,À À@€V¸²%t·­'áñâñzµu†|€N€)þÔ¨ÞõN-`}Œà›¥€©ÖO&Qx°E@Áš›E%¥H^ÀÝ¿'B*0X¤¥‹4Ǥ ÍEõMŠSA,VAQÛ¤ØY%ÝþöçgŠî~vtàÒϾþ¨ÌöñÁëØ>9Øó ~ª…gyÏÇmfõ×fõWø´â_¿;ò×FeÁ®íØu‘JewŒ¤8kŸß_ÓÒ"‰¦8”*þ怪„ØÎÝÒá‘[žBñÝ¢ñÎß,îß¿¯×ëOŸ>íñx6%€ËíYâŒV€;v¬Î€ê§¢É·Š×zX¾]¨Y^®}ر)Á'Ó'O&''oÞ¼900À²,~öýý¸$pyØíöÑÑQ\*wïÞ}úôiêkÕb±Ð4ãI~)«ÕÊ0 ĆN§s¹\ ûr»ÝF©T:ÎÄV0˜Í€6¡; ñÝ)ZkÂÆ Œth…û([BwÛzN/¯W[gÈè˜âOê]ïÔÖGÁ8¾Y*˜jýd…G [ A<˜Cï½·T^Žî9W ðú1X¤¥‹4Ǥ ÍEõMŠSA,VAqê7Šw~".“¤ÿûJךûG÷ÅIîË“üó‹_ðöyо8Áþí$÷÷“Ü?븿žþËÏu…ÙØu‘Jew8RœµÏï¯ii‘‹DÓJ•a_s@Õ +Blçn©cx³°°à÷û—––Nçùóçÿ˜ŸŸÇ_zå5º¸¸ˆçàgø öŽWˆòÖVàÞ½{r¹\­VÏÌÌlJ—;ڳĭwìXÕOE“o¯õ°|»P <²¼\ûpªK@xs°X,4M³,›üRV«•aˆ Nçr¹öåv»5R©t:‰­`0›%mBwâ»S´Ö„èÐ +÷Q¶„î¶õ$œ!^<^¯¶ÎÐ 0ÅŸÕ»Þ©¬‚q|³T0ÕúÉ$ +@ ¶ +! òè1wéSÔÜŒ¾ýVßÒÚ„@ ¾OF, +ÒÒÿÇ~ÙÆ4•¥qü¹é£kW––L«cxiK _ÊkƒÎbÛ!BìXݪŒ +i ICR0ø’YeÖ˜HUZ'c”Šˆ(Ä(`m´Eå¥`ˆVBGš ++…¥Jïž[f’ÉêB-±¸ñüø÷žÜ{žóÜsòœó§ñÓÂe +ž4—#ɉöGÒAy=dßn¤EÄj¶±Å´ ƒ/>ŒaþßP©TL&Ó`0Ì¿+½^Ïb±À?„B¡Õj 8–ÍfC•ËåZ,–ÀzÈV*ç|Õé!Uf+MH€mµß~Ê`Ö74œæcq8‚¬ìH€]Ô¬wçšµ5`@;KK$îœÇÂÃ`0˜Ï ß±>ÇÆȽ%=S¿µ`0 &(Èård +ý‰ÆO —)xÒ\Ž$'ÚIó8’}1˾¦sBÿR”BVoöœOŸ8æ*º4j/Ûè.NëÒÉÊŒW?¤Š8LšÇ‹5MAÎzÜí–¨ÕQ4Z? à –P,;@A±¯–¯xÒÚîñx´ZmAAAÀfÖåri4šíÛ·—••õôôŒMNN~ðÉ·oß^ºtI©T^½zÕívÏ4K$’¦¦¦¿fP°ÙlñññÉÉÉoÞ¼YÒ–‡Ð—žè0"wÄ=b6ûvŸ ¼²o·R"b5ÛØ쥎Á|jÐ)ÞÏÆOJ¥b2™×Ò?¢×ëY,ø‡P(´Z­ÇBÅÏçs¹\‹ÅXÙJ%àœ¯:=¤ªÓl¥ Éð   @Ô~Ê`Ö74œæcq8‚¬ìH€]Ô¬wçšµ5`@;KK$îœÇÂÃ`0˜Ï¯ï×Kþxtøï{ ƒÁ|Jär92‹–Ðøiá2OšË‘äDû#iG²/fÙZ:7tñ/ÅòªÄs>ýߧÓ&Ê„.Í4Aiã»2¡G—NVfôÿ#5ËD¡y¼X“Éä¬ÇÝn‰ZE£õÞ` Ų‘å3b¬+ÛÚ;Þ½{WTT„|¥N§C×þ§@m—>†‡‡•J%êáìÙ³ÍÍÍMMMííí£££ï¿‚žxIÊkxÇœ^}Y]ípyIráíƒÁ|1Èård +-¡ñÓÂe +ž4—#ɉöGÒ}:11¡Õj·mÛvýúu”Ë­[· +úŒ¨gƒqôèQt[WWwäÈ‘;vìÞ½ûòåË¥¥¥(ЪU«6mÚ„¦þçŸ6Ë—/¯¨¨@þ´¦¦¦°°pçÎ{öìÑh4CCC(„×»ð;³Ýn ### 2€CÚòúÒ3ÝFä΀¸GÌfßî”×Cöí6@*PD¬f[‚½Ô1˜/•JÅd2 Ãü»Òëõ, üC(Z­Ö€c¡ÂËçó¹\®Åb ¬‡l¥’pÎWRÕi¶Ò„dxÐP ðíG¡ f}CcÀ)`>‡Ó)ÈÊŽ¸ÐEÍqw®Y›Q3f´³$ S„HÜ9…‡Á`0Ÿ^’2/^xW®˜f¯"»º}m ƒ r¹™‚EKhü´p™‚'ÍåHr¢ý‘4“¹/fÙZ:—±¤³(™¬ÌôèÄe]‘K#ôIôž¨vO¹˜¬ÈøõÇo2×1Qh./Öd29ëq·[¢VGÑhý$€7XB±ì@lñ1ÖŠ•­mSS“l6{×®]%%%È&''WVV>~üýÍÏÏ +…=&“É + ¯\¹²wïÞ¸¸¸ . 77wãÆÙÙÙõõõ§N™™™(ºŠÅâšš.—›˜˜ØÚÚª×ë% zíŠM^ÚÛÛ\š×a·ÛÑfëÖ­“““‹²]sÓÊÐKú:ÂDÌ%ßzZë!ùÖ š5ÑQ}ÞêÌÒA«Õ’$i6›îÊh42™L˜B¡ÐjµúËf³¡ÎÏf³-‹ ÀàíN÷èî4WkBf¸ 0ÐÀ÷žGa òf×-¿SÀ¼-/œN~–" `”®Ñý¦ªùìÃèdIB_¢Ô‘l< ƒy×ð|û­'bµ'"œzøþIývÁ`0Ìÿ•J…DÁ²à Îö•åñ9{YruÜ|,§Œ%ûŒýÑÚlFðÈ1õ•ôeKª[/tëEÞ«oðŠÑó/ "Ê(ýþ)² $ +ÍŽOèïïpÖŸž–×ÔÄ= <2ËD¦Wˆ1W¯úfzjJ£Ñ$$$444Ü¿????11±®®Îd2uvv~þùç2™ ÍìÙ³çܹs{÷î‹Å•••jµ://=388¨T* ‘¢œ½víšT*ÕjµOŸ>u¹\½½½ÍÍÍUUU %%¥ººº¦¦F"‘=zt``àøñã"‘¨   Ò-[¶\¹r=Àb±vïÞ}úôéôôô 6´µµ¸4¯cbb‚Ëåòx¼ÉÉÉEY€®¹iehÈ%€G}Ha"æ’o=­õ|ë͚訾@ou fé€ZI’f³yᮌF#“É„ù! +­V«ß±l6‡ÃA}µqÿ<(4€ÁÛîÑÝi®Ö„Ì p` €ï=ÂäÍ®[~§€y[^8ü,E @;À(]5¢ûMUóÙ†ÐÉ’„¾"D©# Øx óÎñ· J.§¶ïðŒ=õü:å™ó ƒÁüoP© +(ø`ùûœ”åøì2–¬(N®F¶þ·Á¿XšŒEƒŒâõ9elùg¬Ö†²Á>þ;êKéËæTW£Ð¥MyÍýï6¥ºõ;Ð`¦)•2Jmu)òOHšŸÐßßଞž–Ö‰ z﯀À`"Ë+Ä>^1<<ìüÉYRR«×ëÇÆÆ*++“““µ^***Ž9’žžžÔnKK˪U«BW¬(,,4™Ln—Û`0¬[·N§ÓÍÌÌ ¼ºººÔjummí³gÏFGG«««ÑÏòòr@Àb±rss÷ïߟššzâĉ'Ož\¸pA.—çççGFF¢»ÈºË`0$I]]]MMMiiiwww€Kó:ìv;—Ëåñx‡cQ knZr à@Rg@˜ˆ¹ä[Ak=$ß:@³&:ªo Ð[ƒY: ¶I’$j• we4™L&Ì¡PhµZýŽe³Ù8›Í¶X,þyPh4 ƒ·;Ý£»Ó\­‰îNw†¢€ï=ÂäÍ®[~§€y[^8ü,E @;À(]5¢ûMUóÙ†ÐÉ’À¥Ž,`ãa0Ì»€Ay~ý13ãyøºÿ5õ³“¾µ˜ëÂ`0˜¥…JU€DÁ²à -)áÊñ9ûX²Â8YQ¬\÷Ÿ&SÇúne¯ß¹^öሎO]“ÿÒ"þGã—^äÖ ½&zÅ\h²Qø²YL})ûþ\Šì…fÇ'ô÷÷8k§{JR]ôþ_(O  Ųdzµ$3bõàÐ7n·ûàÁƒk×®ÍÈÈÐh4ÉÉÉjµº¥¥E©T"˜––¶mÛ¶ÈÈÈââb$<>¡¿¯?ÀYÿèr‰\÷^Ð8à ”¡XßéÕ’«Âÿ~ð§ÙÙÙ††‘H´sçNµZ-•JÏœ9ÓÛÛ«ÓéÒÒÒÐLaa¡X,®­­œœ·X’?ý©¸ò}åÎÌÊÊBïšL&_^?®ªªB“õõõ—/_ÎËËS(eeeùùùJ¥ù¼xñbiiivv6òœ™™Y]]ÝÙÙyøðaýúõëCCC'OžÜµkWEEÅÙ³g[[[ÇÇÇ\š×a·Û¹\.Çs8‹²]sÓÊÐKú:ÂDÌ%ßzZë!ùÖ ðV|MtTß@ ·:³tÐjµ$IšÍæ…»2L&æ‡P(´Z­~DzÙl‡Íf[,ÿ<(4€ÁÛîÑÝi®ÖDw'€»CÑÀt¤@ƒ¼ÙuËï0oË §“Ÿ¥ˆh¥«Ft¿©j>»CÀ0:Y’˜¢Ô‘l< ƒy7ðxÍ;šžöŒQãêåìâ® ƒÁ`–*Uq~‘§Ù þü¹sçîÞ½;00€¹rå +Έ#tuu544ÔÔÔX,|goo¯/2Îä5úN§S¡P(•ÊçÍ™’Ê +AtT@+€»3@—ÐXöí2⼶oÕjà%‹-ÖO L EQ&“iâ¡ŒF#MÓ0>4Ýn8Þär¹T*Ås>°ºâb!@9?¸é4Öh⦀  ¡*¿Å ©šÚº€[ ø‹ËëUiu€3-ܪ¡úW­šOÜÀ;K“Û<@ &Ì‹ßž^æóRöøq¶¯yv’@ A`÷n=6‘aYßûxùŽƒÚÂ4mAª¶@ºe_êæ—…Ïh Òt…iÛHõ‡—ç¥ÎJŒÈ¤Þ¸óÇulÝvöoï2'r™ÊÜÑÊÜ‘rÍ‹­ÈÁbN¼ÃœÌc¿ÞÄžßþýŸ³*£pêôôt«Õä®;û¼ŠÂ¢T€°1Á à@ Cœ›“@›- ¸˜§OŸö÷÷wwwc{èt:ñO|rdd¤§§Çåry<ž¾¾¾¡¡!|òÖÍ[‡>9Rpè¹ùVïÐPÅÉ“ïx¿ººzxxøykøÎÇãàÁaÝn÷“'Op +gppÇÇ<ø|[WW¾ä‹€ÛÚÚp1¸_1“üÏ( +¥R‰Û I%•‚è¨2€V vg€.¡±ìÛeÄy=lߪÔÀ!J[­!)ž@˜ + Š¢L&ÓÄCFš¦a|h4»Ýp.!Ä>?~½z9ò]*·ÁÜy WÌWü*ûãûokkÿñÝwޑѧ,{ív«éêÕçÿô/M*œN§B¡P*•n·;$”TV¢£ÊZ,غ„Ʋo—çõ°}«Ps ¢d±¥Ñ’â „©€Á` (Êd2M<”Ñh¤iƇF£±Ûíçr8r¹\*•Úl¶À"芋…åütjà¦ÓX£‰›Nf€&„ªTÀmHqBª¦¶.àþâòzUZà @ ·j¨þU«æÓE7ðÎ’@çä6OàÅ#„IðŒï¨ó#“1 óàw† iY0•ÐëõØ̘9-}ÕÜÍ{—nÞ›šó‹%y;–äï”ä¿'Éßò’v¥äí’à«wJ´ûÒÚä0áLIlx]±üÉé<×çÙŽ®íú4»û³õÝDz»KyãUºÞõY¶óÓuŽ¾Ýýņþyõ‡Þ\)ŠÂ©Óe2«µ1È]?t¹ÞÚº¨ðrôxyõ¡×)/ºqX>θ„÷’ñóç™ÌþXÏÀ·´·ß¾3ü }´§ÛÙÓÓééõ+ˆ×ëõx<~=2p: +…B©TºÝîPRY!ˆŽ*h°`wè˾]Fœ×Ãö­@ͯ¸(Yli´†¤xa*`0(Š2™ü›«ÿ£ÑHÓ4ŒFc·ÛÎåp8är¹T*µÙlEÐ ÊùéÔÀM§±F7ÌMU¨áâ„TMm]À-üÅåõª´: À€nÕPý«Vͧ‹nà% €ÎÉmžÀ‹G “Æ÷ÝÓÃf¯g—e°ŽÐÖC S ½^ï³6±Tø"iÜBiœH"/$/MNû‘ñßâ8eöâ aü¢4cZÔt¤]8gaÁš¤=Êùꤢµ¢ýëDû×&ýWë’ +×&í[“¤_X´FdЈµ+æ +"§ã¼2™Ìbµ¹ëÇîžÜŸÿ gWüà À‡8òºõ ÀÇ¿æK6Ìàÿð…‹6ZÇ[1óì`pý¢”•Ë™>`íým¼¿¿ÿèÑ£%%%þ>ZœN§B¡P*•n·;$”TV¢£ÊZ,غ„Ʋo—çõ°}«æ_3Œ(Yli ö«N L EQ&“iâ¡ŒF#MÓ0>4Ýn8—ÃáËåR©Ôf³AW\,(ç§S7ÆMÜt04!T „[ˆR5µu·@ð—׫Òê$gZ¸UCõ¯Z5Ÿ."¸€w–,:'·y/@ L|F‡ñzؼLæröÑ£D S ½~ÏÚDÅÌJX3wþqs"bç„ ¨ˆÙÂAܬ—$Œˆ¥ÂñUa|x‚8fö¼H ›¦Z(Øš¿fqÜJQt悘e¢˜eI1Ë£_ÔrQÌŠ‚•â˜l‰pÛŠøÕ‹3Ãp^™Lf±ZƒÜµ·¯ÿàoŽÄÒôÒxzƒX¼:))+!á'4½*>>+~îëÕ*Nñ«èõ¼Ä‘HõöË?¦óŒãÏ›,!°Qû¶^âÀ–Ràlév¡¾º„dœ$6ÂIC¦uŽ$]2kš×©ÒTÔ¿VmZU©Éšl“׬] ÿ„ªøáM¢  S¦yªvÍ5qÙŽÆ‘I¤6÷î=CÚµÝ ¶&âýèë—ïîyŸ÷‡ŸW߯çæ²³tº]»wM\¹²È„UU½—z76ªkÖàmEøÒ%½I?é]ˆ™™™ººº;w^½z5þeK%¡PÈl6 ‚ (JJhîhÏÊÌh˜ðwhŲoCHózľu”Eb†Üïèru +eõàr¹†ñx<ɇr»Ý,ËÂâEQ’¤„Ç’e™çyŽã‚Á`bN§ -ZF´ê«4iÕ `` ¡. 2žééíKx +”x™‡-µŽ<€N€Im×PÿB»6§ãäf)`­•$…B¡¬ÔùO”[·pM-Þ^‚oÜø¸“B¡P(Ë@CC1ë@›te¶œ'övìÎ.ý6ÑæÒ +¢ìÿÔc›wh]Ùf1»¼&ÇX¾e®Ûœñ@û¡Â?ÿL¸xêÑ?4½q¼øÍc%QßSÉëÇ‹_'í÷K.4]üáöÑç;ýü­_M#C›LE>Ÿo™g}÷®zíšü§K£=—/÷}©Þ‰Éž‰‰î‰‰‹¤ hÿ_õL\é LôC‰Kþ±‘ï•ññðÍ›q§®(ªÕŠÔ¬qgg¼oÏÌÌ”——Ã{ùò帇N)¡PÈl6 ‚ (JJhîhÏÊÌh˜ðwhŲoCHózľu”†!7Ç;ºÜGBY=¸\.†a<Oò¡Ün7©“°8DQ”$)á±dYæyžã¸`0˜X‡Ó©h‹V§­:Å*MZuC¨ ÀˆLA§gzzûž%^¦ÃaK­# `RÛ5ԿЮÍiÁ8¹YJXke ‰ƒG¡P(+UÕ>jôñÖMuï>µ¸D½ÒþMqf +…²Šhh8LLAÚ†µ;¬›ÿ´ä{?.Þœ;@t¸ÿxáçuàé*S9/ò寫ð«DÕø‚÷<)ýjWeŽ m4}>oª—áþav×:Tõ¡‡poO¼oG"»Ý¾eË¿ß¿É-!¡PÈl6 ‚ (JJhîhÏÊÌh˜ðwhŲoCHózľu”†!7Ç;êKIòÊjÀår1 ãñx’åv»Y–…Å!Š¢$I %Ë2ÏóǃÁÄ"8œN=@[´:hÕ)ViÒªÀ0ÀB]@d +:=ÓÓÛ—ð(ñ2[jy“Ú®¡þ…vmNÆÈÍR +ÀZ+I< +…BY)¨š´æúul2á‡óðßß¹÷…B¡P–ƒúúzb +X¿æÑëNšž|Æh;œo;òˆíH¾½±ÀÞ˜ÿ‘.ÒÖ-8tÊXÕ˜Ÿ–nÔ¯Ÿh~ÿ±æóU·_ï´ˆ·5Yÿ«H¯z¦ +_°¿óó'¬:2´ÑXäóyS½ ÷ ê?ÿ…EQP³ÄouÅûz$±ÙlƒÁï÷/AvKH(2›Í‚ (Š’’š;Ú³23Z¦¼ÄD±ìÛÒ¼±oÝe aÈÍñŽúR’<…²p¹\ Ãx<žäC¹Ýn–eaqˆ¢(IRÂcɲÌó<ÇqÁ`0±§SЭN#ZuŠUš´ê0 0†P€™‚NÏôôö%<J¼L‡Ã–ZG@'À¤¶k¨¡]›Ó‚qr³”°ÖÊ@B¡PVê¼´æ½kªÑˆ·nÅý›:ßG¡P(”å ¾¾ž˜‚/¦¯ýfù×êNšœàlGòíÿS¶#¶æhAÝŒ{ž.H7l0êÒÏ?Žß¨ùðlÕì+âl‹x»Ekç>Öìi1rZûò£3•ø5›ôbY5G¬ E>Ÿ7ÕËp@nǻ￯Z+1€úå,µ³+Þ‘HÄn· ¿ß¿ .!¡PÈl6 ‚ (JJhîhÏÊÌh˜ðwhŲoCHózľu”†!7Ç;êKIòÊjÀår1 ãñx’åv»Y–…Å!Š¢$I %Ë2ÏóǃÁÄ"8œNr›¶E«ÓˆVb•&­: Œ!Ô`D¦ Ó3=½} O/Óá°¥Ö‘Ð 0©íê_h×æ4€`€Ü,¥¬µ2ÄÁ£P(”•€ÕüóÌw_x»žUß}7…)Q(Ê*¤¾¾˜‚´ôµßÚµéÐIÓœ½1^Gò?yþ´jŽ8Qh{ºðKßÈ4êÓÏ ø‚ýî™êÙÓâl‹xG“õv‹øÝi© íGí•ø÷ûä_–Û¶1dhÎhòù|©^†û‡[·ðË/«üüÔS8P~áSD"»Ýn0ü~ÿRd·t„B!³Ù,‚¢()I ¹£=+3£` +ÀKÜ A˾ !ÍëûÖ P†Üï(=êÊRár¹†ñx<ɇr»Ý,ËÂâEQ’¤„Ç’e™çyŽã‚Á`bγ_v±m[W?wْر3Ob¢ñ+I¤[OŒà|,”/¢gÙKÒ Pj;i$˜6@ «½mȆڮ?º5}PÓ Xí¢€?ü¡Ú”ûb:±ýPLÍVµê"xU1a´“(!w)%EÖf²EU“ßþ"/IñÞsx/ÎÅßoèKW§Y½:e+Mzu˜˜GhÀ §`2S£cã†S äÊJ2élöÖ ,鳆&Ö›µŒ&,ीv¹óXx°P1™3þݹ­¾;§M‡´ä¿rõ8@ÈŸï6;w}Õ~¬òôe®¥Ó&¶Y=m{=mÜÛ-J¿™n4uX[.ÚÄóÖ¯?SΚK¯ÿŠ×®yî6¬v»V{„5]®‡ÇÏ„/ßîvÝëwkÁ“±+G=û)<4ËÕJ’TìÏðÄ ¦RÚõëÚ+¯ho¿­~òI®›¦¢(¢(2 #Ër!Â+ñxÜápð<ŸH$Š@×@EyY/À2€„Ý )”;M#Ýëaû6P:Lu•4.JðÂV P +…òï* Ò4 C„h4jx¬X,f·ÛY–D"Æzðúýf€¾tušÕ«S¶Ò¤W'€€y„†œ€p +&35:6n8B®¬$“Îfo ÀÀ’>khb½YËhÁÞYêh—{1…G ›õ‘ã#­\}@ Œâóù°)ØQºÍ~´òô%®¥Ó&¶YÅvËÿÐÞKË ¶“l»ŸÙÍšK¯¿xH{Ý“lXíÖz2r=FÝÂíá^ŸK žŒ]9æÙGá¡9®6û3‘H%€®þŠò²^€e »3@S(›}›Fº×Ãöm t˜ê*iŽ,u¡PŠ¢B¡Pþ]ƒAš¦ac‚F ‹Åìv;˲‘HÄX^¿ß З®N³zuÊVšôê00Ð0€NÁd¦FÇÆ §@È••dÒÙì­XÒg M¬7kM"XÀ;Kír/æ±ða“ ªêƒÆ?>V[Z´³gµ[·ÔâÆD [ ŸÏ‡MÁŽÒmî9s¹¶µÓæyÎ"¶¯£¦ë©‹\ãyKYõ.Î\r£‹×þ$¦Ý«ÝÂZOF®/ +?]ív¥´7<^9ÒÈa+Ç…ÃR±?ÓÿÕïWKKÕÃGÔ¥å\ßVEE†adY.@p$;žç‰DQèè¯(/ëX°;4…²Ù·i¤{=lßFêA‡©®’æÂE ž@Ø +Š¢B¡Pþ]ƒAš¦ac‚F ‹Åìv;˲‘HÄX^¿ï¦}éê4«W§l¥I¯N3ó 8áLfjtlÜp +„\YI&ÍÞ€!€%}ÖÐÄz³–Ñ$‚¼³ÔÐ.÷b @ 6jæô·›šÅrß~õ¯õ³›@(<>Ÿ›‚í%_ùÏ\®mí´yž³Šm±=›š:¬§.q':,¥L)g*¹ÑÅkﺕ—Ž¯õ` k=®‡ÇZÅê>¾öÒñÔ [{CŒþæpƒÍ„‡æ8.–ŠýžVþ©6œPÔ§¾©æîãEE‘aY– \‰Ç㇃çùD"Q”ºú+ÊËz–$ìÎM¡lömé^Û·€zÐaª«¤¹pQ‚'¶@€¢¨P(”WÁ`¦iØ‚ D£QÃcÅb1»Ýβl$1Öƒ×ï7ô¥«Ó¬^²•&½:ÌÌ#4 à„S0™©ÑÜ7‚aV’Ig³·``IŸ54±Þ¬e4‰`ï,u´Ë½˜ÇÂ#„Í‚ªâŸ~ŽDÔoUj•{´9ó ¨aÂÂçóaS°³d›ýhå³?Ýê2'vX›:lMíVQ—å ²âGÞ ÖÿlÃyëÎ=%ûÌ¥7~íÔÞòjWïö¸îöb ¸q§×u»×nßéu§^vß{ÙuÿµÚ÷ï¿=|Üò <4Çq’$å—D>»†šõ²@ƒGýèCõSPwíÒ®]ËõuEQDQdF–åDW@âñ¸Ãáày>‘H%€®þŠò²^€e »3@S(›}›Fº×Ãöm t˜ê*i.\”à „­@  (* +åßU0¤i6† ÑhÔðX±XÌn·³,‰DŒõàõûÍ}éê4«W§l¥I¯N3ó 8áLfjtlÜp +„\YI&ÍÞ€!€%}ÖÐÄz³–Ñ$‚¼³ÔÐ.÷b @ 6jÚW©ñ[Zk«Öب¾÷^qŒ@ lUÎ;‡MAÉ®mßsW¶ýâÀ¹ŸøÑÅÚÖNËû<×ò¼õQy_`[ôG왟Ô^øåw;m_{ºäàS¥‘+ß×Þ9«ýå‡ÚÕFíê íÕÚ±õãp£Ao¼Ú¨ßíÚ›ÍÚä³Ñ߬&<4[[–¤œã~¸[¨irÏ[}xJ¿¬~þþ^Ö_U7ðÿÿî?s¡np Çðé§Ú¥KêöíêÚÌ;¹¾­(Š(Š ÃȲl0€"ÇÏó‰D¢(t ôÿ‡ýòj*»âø¹Bødá oUž -³åù шISüQCu£¤»SE·.?캫mœN´Ön‡éŽƒÛí¶ý£-ƒØÝuƒ":0³.?Üò#B@§v€ZÛÔÙɘ*Ãl\ã2@ïõ¾QHânØr?s&¹¼wÏ=ç¾ûrßiT)@/€ «3@ÍÈ“|kA‚ÖÃò­ ˜ä$SG{@’'fz½ž¢(£ÑèÿRƒ¦i˜*•ÊjµúËf³Éd2–e-‹o+huº8€2±:µ ÕÉSiª@+@'B5J@x ±qT]}ƒÏ[ xK¿Ã¡ÌÕ¦Tô§†§:5·5!èÀ%€ÎRwûñâÂLàIÇÝwpeeÜïÇÿçŽøw ’"„YÇk¯åcQ”±yážC+t(íå7–¾¼³Ôñ&\|e»ã'ËŠ~±*{ï Áó#Ö$DZ~³‘oÊã/lçOoáßß"|>´œqv +ßÍá/äò—xë½õSbphvùŠöŽ«îd¸±ÀM²Ip“\¸ñ6a©Gq<¬ÿО– ÷8ìSœ¹ îã/ù×äùŠ +~ûvîÈaÞò/o½4 Ã0f³Ù¯4¾vúúúär¹B¡°ÛíI ¸üDŒ4ª À„Õ fäI¾µ AëaùV Lr’©£= ɳ½^OQ”Ñhô)ƒÁ@Ó4L•JeµZ}Že³Ùd2˲‹Å·´:]@™XÚ„êä©4 Õ   ¡% ¼…Ø8ª®¾Áç-|Óá8ÿú²÷ô;Ê\m +@5@pj¨qªSs[‚.ÜY2è,u·/@ ÌD¡æ–LOJ-‘@çF ³†üü|, +æAâ·cÖ©åÙ‰k¾¿0#+q]v¢| £oòìEøV†*q­jáw·0©Ê„9Ñ’ùÒ’—¾Õø3ÙGûW]|=íÒôúŸ®i8¸ºá`ú“V§KÿèÀêê}„OÊŽm[’L…áÐìò•mW¯OÈÊCচàÙqÊõ¿v¼ËeÜö½ï—†a³Ùì­o`éëë“Ëå +…Ân·$âò1Ò¨R€^Vg€š‘'ùÖ‚­‡å[-@&0ÉI¦Žö€$O Ìôz=EQF£Ñÿ¥ MÓ0=T*•Õjõ9–Íf“Éd,ËZ,ßVÐêtqebujª“§Ò$T'€V€N„j”€ðb㨺úoã:ΫW¯UTT\ºôqs³±¥åŠÑ8CíF‘ÆƦêêš3gÎà1n‹¾=vèw8”¹Ú€j€áÔPãT§æ¶&]¸³dÐYên?^<@˜`9#*ñ›ãFF¸±Ë3K±Âÿ5ùùùni-¡EÑ‹¤ ‰R:Iú|RôüÅؤO¾(L`Ããç懃…­M’þ`UÂKËæmY:O³"!7Î]•»*>7-A¶OXŸ³lžfyü+é ëK£Bƒq\6•mm3=ÌfÔÅs£îNð¸qý÷ Çàð°sdìâ½ãaËqóÜ°Ó98Œ[÷¨Mí.Lu¯0êvr8[÷Eîf=æÿxý…ãË¡!çtÒ~ê&8ççS³Ä +H£Ñ0 c6›½÷$}}}r¹\¡PØíö€$P\~"FU +Ð `Âê P3ò$ßZ õ°|«ÈbLr’©£= ɳ½^OQ”Ñhô)ƒÁ@Ó4L•JeµZ}Že³Ùd2˲‹Å·´:]@™XÚ„êä©4 Õ   ¡% ¼…Ø8ª®¾ÁÛ¸8JŽ_¿~öm¹»óöìÜùêλݖçäíš!–—·;/ïUÑ„ÁŽy99/nØ°þèÑ£·oßöí±ûC¿Ã¡ÌÕ¦Tô§†§:5·5!èÀ%€ÎRwûñâ A5¢ÆùâWRÂÿö]Îñ@¼3ê“Ü!‚×LSû|E¤2ñÆÓoñýŸŒÞ¨r^ûÀÙYá2ŸíºàšhU#檑땣]çø›U÷¯úó»ooÞñÆ¡ÃG>ûëIþf%×Sé2Ÿs™«\æɾ‚ î•®®³ü?ª>o=õ^Iñ±_¿u§å/Ø×e>+ܾÂÌ‹Âä'Ìõ)¾rñ¡»ù£êË¿}pòÇŠyÔÒPÆß<ïê:ç¼~nDt™lŸ +¡]æJ®»’ÿçÅÏ[OÿÕáÙÛß.yçÞ=»W‡%ôMç0²œß´‰?òsþÎo{``@£Ñ0 c6›½õ ,}}}r¹\¡PØíÞ=´gEqù‰iT)@/€ «3@ÍÈ“|kA‚ÖÃò­ S|Õ™ä$SG{@’'fz½ž¢(£ÑèÿRƒ¦éiv1•JeµZ}Že³Ùd2˲‹Å·´:]@™XÚ„êä©4 Õ   ¡% ¼…Ø8ª®¾ÁÛ¸¸,g«ÕÏæ_±xñ’+WžÁ ã-ý‡2W›P Ð#œjœêÔÜÖ„  w– :KÝíÇ‹G 3îÑàî]N­ìÎ]ñâè7 ð’ŸŸïþ÷X! ”„…‡†…†?<ÅÂ#‚#¥’ ’ ´ :d 1?&,!:”ŽO˜JYBtˆð97„ŽÃ²à¹ÐÅTd|TÈAŽÀ ÏK[ŽmåMúÑšžÙ3hÈ®(À6TQ8ÞŠ EøÎïåëÞ´žÜ•·9=xî‚46µõ¸–¿¼Ÿ«yÝi(ÂsÎ ÷mP»Îa÷ÏÊvmý^ÚƵKÿþ§<¾a¿«²pЀç8…™ECŸuû  +G* ùßìÏõÚu+R¯¼£Ü/ìú°pRÂ3w'0zq/ùÀ?îÌZý ÈM*õ­[ÿöê°pkäÜç‹Šø  >=¿~ÝÛãÐh4 ØÍfo} V r¹\¡PØíö€$P\~"FU +Ð `Âê P3ò$ßZ õ°|«ÈbLr’©£= ɳ½^OQ”Ñhô)ƒÁ@Ó4L•JeµZ}Že³Ùd2˲‹Å·´:]@™XÚ„êä©4 Õ   ¡%86Žª«oð6nÿÖsÜ!,b¤!QQ’ÈpIdDpDx0þÆ3Ä"$á’ˆˆàè¨ÿ²_îAMåW?·*‚²4¾bXA j#›©Ü„G •Çî–ÇZµZ-¨Ùîn»®ýc]Àmy„:>¢®Û.tf•VØ:ˆ3êtÛIÝi¦Ôf˜¦Ë# ¸¿þ~Á¶€[40;a†û™o.?î½ßsNòËœ›ãëô˜ûѲùüÖÖSûاCo¿,M Ðð€ìuíE»6ªëÜÀO–h®Ru_<–3æïãÇ#ëÖ£¯¹ÂÂÂÂÂò­“——‡Ïó BD[4kâ¶òcx1‰«c’øò$~Lò8É’V“EâjE2ŸN_E¯¤|æ.ô<—ñå±ØÛïD·lüý!ñõÃX›œ9n—~W îxOò凊†œˆ oœZày³@ˆÎÄ8Ê7Ú +#­EQöbÑP±Èv\d?¾ /Ⱥ8ÊZe+Št”n@§bþôóPùŠ¹dœñ€O²W¡Ór¦j“­0ÂVe+&ž¹þc·Çç#mEŽ’õè¤Ôx$,‚C-õ„/´tFê(Ù`ý_´ïúѼc„³“K8¸ã—"T/1‹­œ;à·?ä£Ó2GÙFka¤óžg•MíŒe/ŠdÊ6¢3²;ƒÖú’ydÕªU_¸¼a–1J%`üüPS“«n«ÕªV«y<^ww·Ë©ÝŠÙl–H$R©Ôb±¸¥€£úZ?_Ÿj€‡íx:ê5ÙøÖJ‘YoÍ +çÊ ä·wv¸¥x–Ù€V«åp8mmmÓe0¸\.¼4M›L¦)çêéé‹ÅB¡Ðh4N-‚&?ß ÆÙn“î4Yk"Ý àÀ]ŠjEž¤þœËW®ºš÷ë¾¾mÛw`ûBOMrÄ-ýÓq?Ù%+Ø#/Ø{ðGX +÷)vÌ‚("¯â½Cñï¿­LM [´ÐW"howC[îíï—¥i‚]£®½h×Fu‚{øÉ ÀUªîOã‹ÇÂÂÂ2£`ð«·—yMÂÑé¯î.‡………ev‘››‹Ï÷š³!vyÆþu;ö…§äˆrCSrßÏ'|&%Ÿݺ3ì‚ȸ7×Î ð\Çñîú@ŠÓ†êû*âû*ã+i¬Š Šï¯¤û*iû©$ôYj×/äbþ"œZ°Äë¦V„.ÒŽšX[‰ÔVc/“cÙÊåör…½Bd]&#*•W)AùÕ±Mt/¶/Y0§qWÔÅÙJ$¶Ò{9¹ó™«ü™ÝVŽÃÆ •Æ8trt6þo…âèU^Ë}çuYÎÇã“Ö_I‰§À® +Å8‘8Ď娔¡Ó[,%’DÁB_ªù@8º¨|Z-wV.u)ŸÚY ©œ©V  Êûï¯\Bæ~à«wîüÁÕýbPJ +Àp8èóÏ]µ[­VµZÍãñº»»]õº³Ù,‘H¤R©ÅbqKGõµ~¾>ÕÚñtÔ j²ñ­•"³ßš@àòÛ;Ý0²°Ì´Z-‡Ãikk›~(ƒÁÀåráå iÚd2M9WOOX, +…F£qj4ùùþ5Îît›t§ÉZéN·îRT€ (üûs._¹êjÞ¾þôôLlð_p`·Ü ÿA}yfùGi…šòÂmNif‚*œª,Òè>Öœªzýœ>ûÐ>9oÅB\yHˆ ££sjûtèíï—¥i‚]£®½h×Fu‚{øÉ ÀUªîOã‹ÇÂÂÂ2`ÆþÓßÏ$'1¢(ôøïÏ_daaaaùöÈÍÍÅ¿ç{Q›¶¬ÌÖŠÞ8‘¶+L³›(mWè‘ó{È¥{ÃsÞ%î +ó\>_Äñ~X´µ¤£ )¨>Ñ)ªKøÕ' †t1]Ýñ¨dslÐbœ:”»àÖ»¯¡ßh'í:Ú^­ªV᣽j¼FOV+8Î'©+âSEK±}ù"ÏæÃbôis:Ù^EÛ«”C£&ØO¨È¥*å°>]PÿS§Œ ô÷úcñftiëp­Ê®SÚÈ £©•ì΀øÕpm2¤ÚôIÙ’œó®½>K®KpÞ¦sï%%)œúRê£büÆÉ<²&hmww·«ûÅ 1™ ³ŒË´´¸j·Z­jµšÇãM!µ{1›Í‰D*•Z,·pT_ëçëS ð Og@Ý &ßZ)2ëáñ­@^ ¿½³Ã-ų°Ì´Z-‡Ãikk›~(ƒÁÀåráå iÚd2M9WOOX, +…F£qj4ùùþ5Îît›t§ÉZéN·îRT€ (üûs._¹êjÞÁÁÁÌÌ,l÷÷÷>¼ÿ{Mçv]¨Ï®+ÍЗ¥cÕ–fÔ–¸O¥™ÿ]色ôe™ º¬‹ 9gw~ø3eX0W"èèhŸÚÇ>zûûeiš`€F€dרk/ÚµQ]§à~²Dp•ªûÓøâ±°°°Ìf„ðk`¥nE"züÆÝU±°°°Ì*²³³ñocO/ê»±Ë2ö¯Û¾W¨Î¨óê·BÕyaê·ã”:ºHÝ)ÈØ®Ê ñây‡/öº÷A ú4u¸!ÁVo¯R9e¯¢'JÿDG×'¢K©.TH_]„S‡.]póÝhôë­# ‰øÛ3cüóöÑ°Ž:¯6WÒÛ7©mù"ÏËÑÅ”‘“I6Ë^íÔóÙ«ppÚqB‰Î&}B™Î +ðúKq,ö>­QÙÿWð7z‰°ý ¶ŸI~Z§úñfÞR_V\ù¥TG­rH÷ÿ]:碚Ö«!ÅtÕÚñtÔ j²ñ­•"³ßš@àòÛ;;ÜR< Ël@«Õr8œ¶¶¶é‡2 \.^š¦M&Ó”sõôôˆÅb¡Ph4§A“ŸïPãìN·Iwš¬5‘îp à.E5È€Âoa±?çò•«®æÌÊÊ"öW¼ì–ŸÓ¿YWžY^¸½¢x[%ÑöÊãÛfˆtÎ’tï¨/Ï:sâõ³_¾1MígÎ5ƒ¬Ãi•SÌŒ"…Îáí¸­È9§ÚƒÒÎ\š¡Ñ`¼–4Ñ%óº½Ø@îîÝh¹-à¿«Õ˽/47 èÿTžkD_YÞ°Û»’” åœýNi Ûf+ ¿O¾9mNû}žçœßÉs~ÏoNPrÙT¹L&{ø0my"(ß×°àÀ3~Õˆ[Ë­Úœnð½YÊHZ=’ă‡Á`0+–cèƒc_¾äê÷²ÛÌýÝǦº, ƒYU˜L&´7N¼ón¥Äø~±á¨\÷ s—®9öe¾tÍùèX¨`ÿQ¹æ칂¢¬ï?ý œû‚™é«™ìª[é°•ŠêÕ^“–jôë”…ŽôÖp_Ô¿hÿiùæL~[NfÜ;YÆ}Y?Û§™´Pó- …¢ÑSVzƦæ®èÆ»(Ci6²K„i­¥Üíì¹ZdŸ´Ðsÿ\ìÓt7Í}V°ÑuÅâ-룕ÜUÅœçZÊ>õ)Í]¬ôÕ´Vå’Â4çÉ÷¸~fÚ®[èÅ—¼0±ÓœC÷uG¥¶( Už³ñ‡ÃÃÃñ®;fûgX‰„ûË_㵇B!†a¤R©ÛíŽ×›Z|>ŸR©T©T~¿?%œî±g®Íèx0„¦3 îKow ~ÖCãÛ@ðH7å¹R0b0«³Ù,‹Ngò¡I’ðvP566–p.¯×«P(är¹ÇãI,BCk«ÀíNøî´Tkâ»À}€Çq t Y"ñà›ñæ ƒM¼}àø‘]—íz?1þñ÷ú?uè»V ÚõÖCï'»üöWtq¿¾2™Ìår%vÛ“a"(ß×°àÀ3~Õˆ[Ë­Úœnð½YÊHZ=’ă‡Á`0+vþç?¿e«ªØmÛØo¾ùïß1 ó¿Äd2¡½qºàw«$ÆcE†–B¦¹€9({“tÍùèX¨àgGåºÃ…ÂÍÂ"‘àé©ÜUÝLoͤ¥:l¥ÃV**z¡ø“S–ê{ ×_?ÚQY‘—ÅoËÉ ç‰2®Ÿ‰ðöWÆÅöXiÅ9´ãÊPšìaÚ@ÛîŠvö¬fÊBE#¼ÖÓt7Å]¬}i§ëJÄy£•|å6z¹¼óì4‘>MÛžÜaÚ=¾rÝŒ]æóV¿!B,rÄNs—µÞŽJ¦d=ªœ”äŸO©TªT*¿ßŸ’N÷Ø3×ft<BÓwˆ¥Æ·»?ë¡ñm x¤›r‡\SR<³0›Íb±Øét&Êáp$ oEQcc‰0^¯W¡PÈårÇ“X„†ÖV€-ÚðÝi©ÖÄw'€û â:@9è²DâÁ7ãÍ ›xû:Áñ#».Ùô|lì:£ïêX‘j×[Ú ¶öŸ·4}xªn{ñFTy~¾Ìår%vÛ“a"(ß×°àÀ3~Õˆ[Ë­Úœnð½YÊHZ=’ă‡Á`0+–?ÌÎ}÷~Í•lcóóÙ/RYƒÁ¬>L&Ú§ Ö(öäé[ +™ææ l éšeL³Ì€þyD.Ü"”‹#§vrWu3½ê°¥:l¥ÃV**z¡æNVGìjîózOgeE^J-#3î(ãú™Hoͤå•q±=dÚFqí¸…2”f#»D˜>ضƒ»¢=[3e¡¢^kŒiº›â.Ö¾´Óu%â¼ ‚ÑÎJ¾r½\ÞyöóšHŸ¦µ*W²ö{N¾rÝŒ]8ioˆ‹±ÓÜe­·s·®XŒ*'Éœááá¸l|œ«©eØu™ìW×ãu‡B!†a¤R©ÛíŽ;uJñù|J¥R¥Rùýþ”pºÇž¹6£à9ÀšÎ€¸C,5¾Ý%øYoÀ#Ý”;äz˜’â1˜Õ€Ùl‹ÅN§3ùP‡ƒ$Ix;(ŠK8—×ëU(r¹Üãñ$¡¡µU`‹v§|wZª5ñÝ à>Àc‚¸Pº„,‘xðÆÍxóƒÁÆÆ&Þ¾NpüÈ®K¶=»Îè»:V¤Úõ–v½í#ã¹®¦?¨Û^’ƒ*ÏÏ—¹\®Än{2Låû¶\xƯqk¹U›Ómž 7KÚEÐê‘$< ƒY9°sGß?8ÃîÙÃ&úBÄ`0Lb˜L&´7N¬QTm4+Ö·2ÍÌAÙÒ5˘f™¡EÎ.nÊE‚§§vrWu3½ê°¥:l¥ÃV**z¡ø“SVzÖ^Ã}Îx:++ò²Pj™á¥¹ µ‘>MÛž\‰0íßìW{lS×ÿn;¥Ëƒ–$Fq²Í %vM@”ÉM“&iPsoB×$¡ÄâQJXÙª"²i‘ÚijÑþA$0¡aÇvu©+`­’­R€? ˜¬òÆd¶Éš¥zl‘š:¶Áö¹;çú?¯_[ ÿòåúÜsÎïû~ß9ç^û#ÊÏ°î!œ8&’ÜþˆHœ\=C ÷i›õp»vV^".»yófªû…þóonÏô½g9©Œ»«høj_å–ŸËÙ]Rå;ÊÝR¶GÆöà«·É­ÏøÛÍ=²­ïÉ[Þ•å¯Ì—åÞ=ð:w†õovhhç ãä¯|ÛEÚ´CK;µ4n?VÓ^=Ãe͇7Ö¿T„CKKò¯|ø*÷¹’ÐÕd²‹7ÞONÚÜÖÐnÃÚmzËRµ•¾3þË ÜévïÉM8:/€öMvi0qj}züŸ`úZçôMm•+^å>ØÈf=:Ú§6@_˜Ï»ò)a\ú‰–á>iñœØÔûæ‹¥ÏçL~X…sqùæ„ä@Ç5z†ÞØV)ÂÊKÊÊ®_¿!´Y1Ÿ¯™¢?qW&¹¹oR=óóó,ËJ$’éééT¹‹ ›ÍV]]]SS3;;»( -_V ¸0…«3 &(¡òí2Ej=\¾Ôdeù”éÚ¢ˆÏ"‹§}}}"‘Èh4fîÊ`0ˆÅbH4M[,–´cY­V…B!—ËÍfsz:{{‹ôüÛé*y; ½šˆQ0 p `  (œBQ±èÜù ©ÆµÛí*•ŠÐ óöï­Ño>Ú}ìP—z KÓO®KÐtG¶žTo;øQËúu¥XyE…Ôd2¥·ì™àÑÜ\mGçj€Q€{dר‹ w·KÜÀß,UøWÓ4“ÁÁË"‹,²X@þ ÿéÅÿn/Âõ‡Ò®{“á,TZéDð‹ÆHOƒ?çÝç'få÷¿EH} ² Z^°¦,ãÿ—gÌ ¼î´c¦Ãýn 32 +?ca·Qç€EþÁàŽ —gÂÏô%82áòŠ˜™ˆž Z†B¢0¹O ùŸŠ@Â(t$$Œ^§ Á¢ÅÈã»FPáÎoãßÆÏå>£h(Sí[óÖÏäì.™ò +ånoR[o|÷`ÛÜ#ë~oM뻲üò|yQîÝ_çÎ(Ý'šÚ1؈Í9H»ˆ1ØpÛÉ7\ÆuŒv5sg•æà õ« +qhYIþ•^å>WzŽ7;Ža.íÔb Ì×?˜Ž{Ȇvëî³6›šÞ²Tm¥/<7þ‹Ÿp§Û½§pôFlN>ºÓOÇ~š…BiùVË´U–¬å>ìoàN³ãPc.( ››–qú³`œjÚ­¥¹OZÜ'šzß|±tYŽñƒ*î¬GOã¡ ×LVpB²hDCMœ¡Õ2ÐÐR‰k8—•}uýz‚m +ûoF>*Ia~~žeY‰D2==:{1a³Ùª««kjjfggEÀá¡åË +´÷¦puÔ%T¾]¦H­‡Ë·q€z ¬,Ÿ2][ñYdñ4 ¯¯O$ÆÌ] ±X ɦi‹Å’v,«ÕªP(är¹ÙlNÏCgo/þRÑóo§«äí$ôj"FÁ$À-€1€Z p +EÅ¢sç/¤×n·«T*B/ÌÛ¿·nD¿}øh÷±C]ê.M?¹.AÓÙzR½íàG-ëוbåR“ɔ޲g‚Gssµ«Fî‘]£.&Ü5Þ.Qp³T”0M3¼,²È"‹%ÄÃ×t:ÑÝ;è¯8¯—óU=ñª0!Ï!3g¡ÈVRÎñ +ïI ‘t¸Ñ5`„ráQäs³¼L*‹Q²«AJ!4ZøDQ±éq²Œ^¿dX¸ÄÊ£Îg¤ì„É"áŽø¡Ã9ÑR®Pœ3”î ô?£äÊÿ{¦Ÿ"3þ9 ãòþ‘Œ¸@ +Q²m(RvÜ¡)/R´ 28µWhÁqô`0ŒŸr.b®¨ðmÔÂÄDŒc™`jØSëûرcþmœ“ûÌ+ e[÷¯íz_Þº[ÚÖ#m÷›Œí‘²»‰µï®À=m¼)*ëÞ·¦e,O’÷rqîßÖq£žS-ŽAÆ©e\ZÆ9È_ù6Ò¯#æÒÑÞS-Üæþ7êVâÐRqñ7¯qîÄtç íÐÒ®AÚ…¯:Òvð\ïÖ©¥ñÕ}¢™;Ýþ¯ß7¾õ +©ÚJŸÏÿ•‚íôŽ´9ýq›ü“uŒ74Ä!îqèh§žñ oâ íß ÒÍ•+~,ÊûË‘Ü›ÝÇ1…vøC¢ß•švipëi$ôŒ{˜á>m}<Ì¼ß ))È™øõkÜX–DæûÂi‰xoNŸrâ~¬¥ÑÉMÜYåßúßhz™$þÕuýFÂ- 4§Ìãå<@_~ÉݹƒÜO’=+ÌÏϳ,+‘H¦§§Så..l6[uuuMMÍììì¢80<´|Yà>À®Î€š „Ê·Ë©õpù6P’•åS¦k‹">‹,žôõõ‰D"£Ñ˜¹+ƒÁ ‹!9Ð4m±XÒŽeµZ +…\.7›Íéyèìí-Ðóo§«äí$ôj"FÁ$À-€1€Z p +EÅ¢sç/¤×n·«T*B/ÌÛ¿·nD¿}øh÷±C]ê.M?¹.AÓÙzR½íàG-ëוbåR“ɔ޲g‚Gssµ«Fî‘]£.&Ü5Þ.Qp³T”0M3¼,²È"‹¥¾Æñ—9èïÿ@ H©D_ÂæDÖ»(Äâ{Ž1?vŠœ}í0ËFQídV#aÑžRâyˆf†ªáE­3J°¤Âû“M"½í[ '¡IWìúo_üéoý¶¸Ïvž½ø—Ï5E­ÂÒkÚ£^iÒ«Ì:¥Y§0Ñ÷x… ö³ÄÈܬUUæäÕ¶ôw1w]käJï×h”aî/Í»ქ›lÆÁRÐ’7Çú "ܤW˜’Tf½Ò–¨Âôw¿ÿçÖ½Á§¶³/†{bñF{v9AeÔs³ÎŸsÐ*µ\ˆñ4~‚NaNT z•M¯Äó'}åŽÏ]‹–aéF[J€i€¹ U²ç/œ’ ѾB´ŒŒ˜ãEòz••ÃטÕòm¿wqœûlÁ^o?¿F„ó)pî:Na9åG̸NÑ“¨²$«0-s×ߌ\éëæ@Ì]ºU\»ö¤ú>±ùoßÆuë`Ö,|óMSŒFc@@€«««Á`˜(vz¥££ÃÓÓÓËË«³³sZìÑľ0on cÍŒUÒtÆ$%’ÑÆ·R Ÿõh|Ëċqq}ååÊêªi!?#3òS°°0''§²²²©›JNNvvvfã™LÖÖÖ6i_íííR©´µµur‚BCéiªo§ +~;v5ñ%aåŒ52–ɘ7“Pó.åLÔoOOOHH‡;Ìùdëò$õ{šcŽ¹öDäÚ“‡øçS¸NEkOlŠW.]²€˜»¹-ª®®ž\Ú§"w»»½ƒ2v±¼j’¢1«&®b kbŒž,o1ö¢ŸüúoFfdFfäi@—8æÜú7¾º^ý ´Ü„A:?–¯LñM˜¤‡ ŽGì£N|C\<ú>ÀsÄ(Æ”>ø Í‘=(ŸÚ˜¬¦XÓqf~Ò]ô$凘thãÌÛ(&—v‰< ùivÿß ‹06~… â–ýáÞè ±ßå#·0ŒäšâóØ?b·Û¡ßï#£Ãáƒ8ïüï®ûiXcL®ÏÇ.ñHWÖD{cˆrooop0«æùYn2ÿK}?ûש÷ǯû|üúŠRßmR凋ÞÙâ¶z³»ÿÝWms_±cñÛÛûow_ÿç%¾[ÜŸuž-uœc8¼ +K6ÚÒטô*ZfñÓ¤W +Zeïi¹]#·Åù :¥1IeNRZS0oÝ­Ãoû,¤Q†¹ÿú¥–‹ðÀ¸’°dDˆWôÆÉm§åÖxvT–x%$­Æ¬ ï¯ZÿŸÚ8ÌÎùÛ2,±g‰@©õY´Š^¿V¼¿E¯ Í^­Vcz`W´Ì±ãK?7#曬)¢ÇÕ„5%(É—%Na•ÛÔ2«ZfÓ(,Z%íÓ§]¯Â´@á´âO^.ŽÏÿ,/Ü KClç)p®`"× ¢ë8÷KÌãäd͘¨²$)1u æ·D®ôus æ.¯¹]múט5ZÍo¾EO/` ~õ"^¹2Vñ‡ŠÑh puu5 ÅN¯tttxzzzyyuvvN =šØæÍa¬™±JšÎ˜¤D2ÚøV*á³oyŒù0.®¯¼\Y]5-ägdF~ +æääTVV6uSÉÉÉÎÎÎl|"“ÉÚÚÚ&í«½½ÝÃÃC*•¶¶¶NÎBPh(=MÕâíTÁo§Ñ®&¾$¬œ±FÆ2óf +a¾£Ó¥ü‚‰úíéé á¯óæ|²uy’ú=ͱ Ç¿\{"ríÉCüó)\§¢‚µ'6E„+—.Y@ÌÝÜUWWO.íS‘»ÝÝÞA »ÀØ ^5IјUW±„51FO–·sö“_ŸBãÍÈŒÌÈŒ<%B3nÿøc6ÃÁƒ°lF|‰¥ÅPQU•P[ tQ_Êdz)ØP6‡tuÍA‰IYÙØþ_nÁn‡æ‘yyHúF¬¯‡ÆF¨«¥¡ ΞÅò +ïéÆœ\Œ< …E(˜ò€ÖVÈμ<¨®úhhÄÔÖaQ¦¤`q1=ùÈXÌPXˆ‡¢ðb. W+˜¡®2Ò±¨I¿¡û%8½ù_¼)çàú °YQôÀfǪ*øCC‘²JÖì6ª;îû9Ïx-$Šp##á³]÷9¶« ©Çþò)6<ËËÉçC½}à ìÛ ÑÑœm‚õz8}©™wí‚“'‘Ò{§DgØ|©Ãsséââ-AWU‡÷$ÝB)XYï@xð®^Åÿ³_åQQWü¡ 'jˆBPÆ°ƒì0ð û ‹0ÀÌ ¤3`ªQ–1 +$fÑ¡%.Q Ñ.¢ÇhªÖD£]H‰šœÔ¸ÒµZè‰ÊV–aî¯ß7`OOO³49mó÷|ç7ßy¿wïïÞß½o¾í|…0‘VîövÚù zg?Ø°XíÚu¼{ˆ7ëµSäÝd…ƒe`ß;LKlxNÌÖ2\¬MzosE gku쿱ë7kc–´I#]­–Ô©Åë\㜫2çkŒÞqËý–ù¥•ø®ÌrÝ1§9Æé©Åî95AŠå l\güpÚÙlO<E5ò±Êð1v­‘›+d–eÁx6m©ØŸƒ­jª ·ù[ +|¨"miÝñÊ@GæzÝÃǵž¨‹²ÔDŒU„™«åægåægdæe! ‚-*ÐbG:\ïEOc« +¿YÜû†Zk…;ÙÚIsC«æÊ0s•lŒÁ«äã˃©,¯'b6~™A«ä–E^0¡9 ïç~±#=)øq›igs둲¥Ê-ùmÍ‹7mÐmnÔmià×Y[ôÖÅï75j77èùjÔ?¸ù7o¸65ðõe~ÿymkZ´cóÖקÎc‘{yyÌŽÿs»Óß“£õ„‚ÐÅ«&úý×Umbuˆ„³‚À¾,‚0Wrá;oʦlʦì{bŽ3ÖëùsX¶ ñ ¤×R~> …0“¡š,$ÄÓ†WÑo=uu‘É„˜ŠŠBŽŽ~÷[ŽAK ©TÐdÂ`€©„JL()¡båäP|…²³qò#¶14<¬ÑêØc'Axy¶m—ÇcçÝí:¥3?”ÎøÔyú¹yÓw†:ê ^òrÿˆ²€Ìb¯V™ãgö¶gç=òªJ¬YZáÿǬ‘Ðån‡ ”bŠf™[â%á„@GdxŒmL8¬37Ä#Q +ÏYäf‡H'¬‰:·.V2‡¹üÁCŸxÙ#Εb%w¥D E:SàãHv_Û8wd‹IR¸Ì€Â ë”8¶¨{£*Í×Á§‰ŽÎŸ…X1ƒÇŠ)ABÑbbÞ•âñç£ÞÓ¼™$3<k8’Û³=Uêè.vcXŠq!|œ„-‹Ì‰cužãÍI#ogïÑŒnMF¾/¤vðu@• ‡ô7wf¤(ÅŽ‚¨sÞ DK#&¶qö…3üâ6özRÿa='žò¼gÃs6¢]ð\Äé£ä¡Ž,ò¿³_-@QWø¿•7‹»ÀŠøZÀ «²€Z„ Æ0ˆÕ+På‘F›©V•¨dÒG3m",¥Õ* aFmc°Óæa!*Æúª `|Ô(ˆE1wQl÷œžsï¾fªpöÌÏýÏã;çÜ3ÄÁ©tÒ$üé>óSR‘ŽnÐAGÁâŶêj^Z õ6ZfÆQTYøò¬¼?÷ìÆaCÑÁ·|€÷nÒ‡$«Õg0***VçÙ úúúˆˆˆÈÈÈÆÆƧÀÊ‚÷tnš|!N qˆº3!í“zjß>—¸×£ö­HˆI‚Éàç{èÈá§|/õÒ·ÒÓÓõzýþýûŸÜTaa¡···èž$IjÇÄÄÔÖÖ>¶¯ºººñãÇƪªªÇ³Ÿ–æ)Äùt:ȧSOGŸNBâ¸$}"D”` žú]Å%ê×b±$%%±º»ËÒ·lH-X=gmVºì„\3?;q®9‘äê+süZuÐÅÌGfs¢â47‹8qm÷3×çÌÞ´.eUÆôày@@à‘#G/íOB ÍÍQ³âý…øXˆS\5i¦p©$*… ›%\况'Ÿ`áõR/õR/=3¤v3 +cQ::(3täÐ8ž'ôºõµ a“åøëwØLS&'Á=¡ÂØñéãƒÇÊY½´ÔÖ¿?MÃaß>¥‘‚ÖV|}y'ØAߊ‹yò'1(ˆ…nnðé§ö™386¬£¯ÎƒéÓñòe.]÷ãÆò«>}° €% _ÃóSà>×íÃB¡ŠãÖ­ Ñ´aĬL oÞ„¤dÛ7=~C= ÿq”1–”à€üjØ08ðwxK ¤-Å6›°'%AS³Z¤ÊJ4ù­N‡;w²òÉ/ ØÔ¹L-ÄNƒK—Ô2Ÿ?‡‘<ÙÕÕ¶y3¬ýLœØlÇ°º†•·}.íÀ!3“…×aöì.²Ý–þPqœ ´g7gùÀA°¯T…cmÁ×–t™4Ï·š•áÑ£èëËr­wì`ƒÿ<cÆt],E7®]cÝììö9.®°q# )'ÏOî®â<ˆŒ€êjžùþtrnŸf6³w‹…€ÛîsÚÎ#±L^ê;‹ ¿7Ã:ÊÊÔ-f±à¢…Ýê¦þn6©û±¼ Fâx¼½xñäر6à]Ö+^W§æíÜ9ˆ˜À¾ZüÃY½ª&O¶u£Î’·ß†Ö;œ=K¬þk54à̸Ž•í¬KëùÞç4ÝÀWæ©Ó~þ @ªãüùÝâ%öò‚Ò½¬\VþþíòWæÕ +Dou¹HÔƒ#ê½ ‹Kƒ·,´»Ûr¨CöŹ·l7»x Z-øŸ»°|E +úéaW1‡ZQ£G·¿•€7n°üÝw{¨ØÛS“ƒÊÖ gI;\³š-­­ßOˆ§oc!}&¤ŽGŸÂÕzÇÏn|#ؘnJ|Ù¿|°F‘oöˆ{Ó4úM“ÑÃ$ÄÙûnéëø·WCÌ[¦•Ì}Gc¯Ê%Ñü‚!g‰©ÿ=uWÁB”u£Þêl÷ÙËAYïÇþeEØM½3Kú”¥nß45ógã‚|Ü(òABìîF%éÐFdoŠ-Ì¿>ˆ#·IâÔ‹~;7NýÕªý(Ïï +q±Ý&O§í¯…äçG¯ÿý”¿®wÉè¡È¿œ2¤8?:;gÒà±^ôI¼u«‹ýö…¦¬¦ÿd´ÕÍ¡ øÍhŸœ…&¯`Oñ1DþÈÇû +Ç;E§ƒ|æàéÓ`䊣³3þi+Ü»;!ý tp€ü¼û.ÕÕj‹‹3 ´–þ¯¨¾¾>"""22²±±ñ©°²à=›&_ˆÓB¢îLHû¤žÚ·Ï%îõ¨}+b’`2øù:rø©ßK½ôm ôôt½^¿ÿþ'7UXXèíí-ŽbbbjkkÛW]]ÝøñãFcu +EñiižBlO§ƒ|:õt4ñé$ĺ¿$é!¢„D<<õ»ŠKÕ¯ÅbIJJbuw—¥ &nÙZ°zÎÚ¬„uÙ ¹f~vÍæDz›—ÿ›Äõ9³ó²éo" »ß3›ךUd¬å™؃wò¸i]ʪŒé!Á(ò€€À#÷¾$ÿ—ÔÐÜ5+ž¾">âWMÚû ª)\*‰J!èf Â{jìÉ'Xx½ÔK½ÔKÏÿlÔÇØ”næh ŽÔÀöí :wÔiA«C ØÙcô PUÍ:¥¥Dzxš5lÄbåËA£G'$꧴ZR§j4H3džaå V?V¡¡Üs£| °ßßÅ,3¸»s“E*î: ×4кƒ›†ã ‰{÷ðÌš Í›¯”È·gÍEœ‡öàê +îìšüºsðèì‚ö˜šŠW¾Rñ~uâãA’À«n•û»¦øÒKèè..­VŽ\@pì 6/ÈÀ‹Š h$ØÙÙììÀÓss¹1¼m…eËÉ5:9ÉêZPPSöÜHÝ""ñXÏ$°aayø,; +J_ÙÚ +™™ í NÎrÆtrεèè ŽŽøê"l¾¥F~þ<ÄÄpßê?öìeIfÌàäw»MNš +°ØÛaR2^¹¢d._†9³Q’pð`ÛŸ?dàW¯Br2’g9i:%álÁÙ…#'w”[¢’bÊ?£&¼\¶ÙÜl[¶Œ];;ÉõR*.Ѹ¢N˜€'N°£òr åÈMÁpø0(pnßÁwV¡ÖP*®ÒHÞ—.Å[·Ô™gÏBTçV¦¼¦¦+KâB»³‚« 8ØãܹpýënÚl3 æ`ìúð‚Ùº•Õ®Cj*9îê‚¡¢Ó‚q势8/^ä¤íØ œ +R§Šçå+‘CZUÜFÀu²–¼Z¸p7NÑsÏa…\ñ1ÄÄÀÃñ²RÝr­w!/£`ÄJO0™lcF:6 V¾ ´•”’Õ\€”dŽpÊ(/gIu5Λ‹~¾0r$†„ ‰Ø&“5ôõô×áZƒê¨þ*,Z8v,ì*âÈë¿æȇ …‘²ºIeR„Aƒ  À†¿| ¼¼xoÛÆvnÝ„Œ ô÷g49$”=šBèÉv ˜9ÏœQWéíüm’)__\¿+Øzéˆ0aÄpY=„ «‡€1}|h™Áñ +V¾Pƒ))ècÀÿ²_¥AQ]Yø¾qWÔšFi•¨´1…˜D"*:.“QDZj j’JU ÎŒ—LD@S5© +« 4;t+".1’¸/€Jw; v³÷9sîëÖš?Ñ1©S5ž:PËYï÷ÝóÞu•ãD/ص »ºøú7©äîîÏÜÅMóÃɾèîÓg ß4HL¢)DÙ!6áàÒ)É9iáŸBtR”J*•ïäÅjœéωag 4붆&0÷ãç{pèp>…†‹L¶â;‡ã|£=¡éGrë6 #Fp;8ÀúõÐÖÎ×SŽ€ÔÉ2?QœŸ| Pô'±H&C•J„Æ‹£P TŠ_M ]½=‹¢¢èÛر,;Á<ȦÏÞÆ8€TÒm#é—H.¹ ^³tâôØ)Ób§¾·F¡ñ붵I›9æ÷ûÍøð¾#|»`#€¤ÛVx"ŒÁD6‚ÐÇXÃÈq+¼$ÌÙ¹RÑ0z ­vÚKªçº¬^ããà5’R{ 섹 Ý6ÏÜ…. w×±‹ðX°õÏ“¯º ¦é­l›áþÁne̦)ã=‡1‰ ³“äÙIúm…^îûÄêÎúöh€$%L¾[ù—Í~ÕîCûk I uÝðÞ–é=†ùÓ5ʆ™í$&1µ‰+ëX/cWí·¯T,›µòSÿm¦h¦Ž¦zŒ‚=Ûéó¢>ùã›cüHNI„~¡ÓFè0Kå=bãõÃlãb fïŒñº1Ú¾WàõtÚÛ|$[»Â{b]Ådô…OX£FZG7Í„aCÌÄ …Nh8ïÝE"ªÀÀÍ +¬'””βÏ$AüÏ×ê Åd2…‡‡Ëåòššš[ÿ–Ä`0(•Ê€€€ÖÖÖWR@ÜÑ##†I"Î0vž°cB¥ð¼ëÛißõèúVÊØ[Œ‹|Âøó¾}%Å¿–×òÿ Û¶mstt¬ªªúõ¡ÒÓÓ¥R)ûï$$$¤©©éçÒëõþþþ¾¾¾õõõ¿,BäæÍ£K§Ó9>ž7šøtbì,c—!Ÿ±@z16j´cY¹úeóÆeË–q÷‘]?'5eÅуK¿Ü³øÐÞʼnñü÷Ïéá½QI KRD9°4itb|T➨CÏuùY·:&í]’|`I2EK •ÈŸ³OÞý¯C1»·¿;Íω*W(¼/ˆWÂÿ±4wtFDz1¦bì*GM¨xj=%°ZÆèÍ2‹1iØü+¿‚x¯åµ¼–×ò[xú#ÞeÌíXQ99PV + jNÀ‰PPˆépöÜÈøÎTAf&¤§cž +èJÎÐPÏoL¹yP®&/Ôhxz(*ÂÌ Ðaq €Ü]C½£Z y*ÌÉÆËuÐÛkÅ©§/|‡É)¨ÊƒæŸxÀžn¨­ÁÜ\Ì/äu‚§æîTƒJ…Y™P] ]]– ,ö÷cÝâ%Ñ©ü¡2³ - ŽÇÚZìÏ郜ÌdYV–Ibq§ÅãÇF™á!ß3ŸBœBlÁ‡ɯ§·7*z)};Ø ‘ÓF%.šðÅy\ˆlGˆìó`ÙÞ¹.-p[¼J²Þ'dý¤wߟ´1r—Ò:oŒöˆØê¶iÊ(ÏáÃ$l“ÿد"Ýãß–oŸçê²#Ôeç\ç½s¤…º†.÷ðÙàü‡‰[ßvÝ?[º?@šæúÁjï7£<ìœ(µ£ƒíåد"Ü÷Í—ovÙÎÝeÿvJ˜ãüé<ÙÂhOßuÞ«'ƾ#? Kʈ0»–Gâ´ìçï‚L•†ŸDª?ååPßð²/^“É.—Ëkjj^Ö÷ÕŠÁ`P*•­­­¯¤€¸£GF ’ÄØ5ÆÎÓíŒ ÿf¿ZƒšÈ²ðíuq5*q7Ž;ŒŽ’î¤t§†uaЕG@ ’4Ix$§f`¬Åª™Ù²¬ÙR(y¬º?°ö¯þòQ5>(Ôn•Ì–Î?þ€Š@ ž!Ý{nw:**léÖØ_ºu»sÏ=ßyÜӹ׈Ůo× |׃ëÛ„ö"Œð­[nuÝ~#ä%HxPUU%“É:áã²ÑÑÑ!—ËÑË!99¹··wɶúûûcbbhšî¿IK‚¾²2 ¡V¾;ÝÄÝi±Ö„»B7ºCçŠG¸°!LvñÒåWµë÷ûÍf3V_¿ªÂ±§£5¿½ÞÔXmp9 M5xü™49 ÍNCËq¦µÞÔR—ãªaªuMΜ溜f'ãªÑ7Öè…•5†ùù"ÒÈ«4Õ2Íu <6c\Õ <ºœÌóTZêŒg\yG§ïŠÞÌI’êêêZZØ—ƒ!¯7^§W t¡{8kÄ•eM«ú!ø²ìFHž’z·¯ïõ“— A‚„ÿ9Xö±yp–õû¸ÑQÖëa}^Îç‡ï ;æe‡‡X¯—ƒ_ñm(Èû¸‘dbRTž pccìè(ç}0² ^ ?ÍES~;ð«fY‘Ëœ×ÇŽ¹Eu¨û0/¶…·…&&¸~nx˜™åog;5ͺY0áõ º,¯Îéa<Î.ø85É=|È=b§§9Az\æ1çøÌ D˜us8n¼ºWÈø,†‚Œ‹+Áµ:œÄ¹‚ ˆŽãÃbÌÇpºÁSž2;—qöÁ(B+1‰ÓXÑ;&dJdŽcŽÕñ\¨5à1‡ !h#n¬%¨ÏL±|ÆÅã •ãS†3Ž™ÏŠæ l84Ž³““Â;60‡ û|‡N°ÎgœÏ/À뇔A.æ¬PêÏ<†bžxVæßÀ¹cÞ¼ð@?~¦Y>B±qܳ7™7DzÁ…9„ŽÌ>±æYZâæ»°Ñ•…ÅÏæúDæØ' +àù¾cžPE“s]Š|l§Àïe…þ#ÔÔ˜ÛWΊ=4(fH+äwê?ã3ü‰pCiytñ¡ðBãžiC߃5 ‡¶ °Å­JÈ-†Xœ|iA½A?O.‡k šØà ÇorŒ&øo²zÅ' ï~™_¦ÒYz+™c%cUhm”¦X©±+3Š•Y627/"?Oa°“ÌÁ(m9-ßú^Hȯ’4[KF›JTY… +]e(R¬ +£%Bo!ÕVÅ;™d#³áMÁöœ‚ˆüb*¯2*Ö¸m<L¯yoe¢öÃ’/£Í n!u…ì ·*L’) S {lŠ„"2Û¢(ÈÝnÊ‹H·âÝRŠÈ4«Bm!S¬ +0j.¤r@±Òc!a4ZŒÖP`}ŸÒZ1sPÏ´S_FÅån_- ]½æŒœm¶ŠŒÊ¶’z°[D1àx˜§’ûŠûŠÈ„"…ÆJ‚×ù¹Û5Ø:•h£’ É4ì Âl% ¼E˜,8nK„ºPo£€yV!~cÇíJsEÔs¶†ÊßÇe²×~ø$²„oGȸGøîà”Oppœ ,Ôþä4®+ø‰]´LŸÂøø¸V« ïîî~Yÿ ÆÆÆÆÅŹÁñ7#ímëÖ®9‰ÐOÝ‚Û"®‹]ß®ø®×· íEá[·ÜêºýFÈKð6 ªªJ&“uvv.«ŽŽ¹\Ž^jµº··wɶúûûcbbhšîééYÚúÊÊ0„Zùîtw§ÅZîNÝ@èAœG(à†0ÙÅK—_Õ®ßï7›ÍX}ýª +ÇžŽÖüözScµÁå44ÕàñgÒìdZ3o0¶œÈ©ûVûí×iG©Îh¨6´Ô›ër\µŒËÉ`õZ,‚VS-Ã?2â#^À49Å70¶Ö›ÛÌ 5ºï¾JÿÛ7é ÇôMO™ž0tÆ•wôpú®èMÀœ$©®®®¥…}9òzãuzB纇³F\yQÖ¹J ‚/Ën„ä)©wûú^?y $H A‚ ¿$ƒlnn>ü7Yõë)¿K?z0*±œN,S$9èý¥*ʲaÉ´SûKTðkÂ:­Œ6}ip¨>øh튕+b Û´ß|¬®ˆLp(“ÊèyIuÐZ»2ÛFiŠU)úO媽åtrE¤áÐÎÔÜÙoCÁtèú•`¶iÿòû”Š‰U2ˆ ^N«*M1•­+SJé„2:ÙAg+L¶Ò—*™rZW¦Js¨’0[Ur©J='@ö»º"Ì<µT´ÊéŒ2:·2JkQlüMè;kW~j%5_íLþ,û ûƒã¥@ r) Z`[·Si¼ã Å*x£³Q†e8ȿĶ™.£SÊLž9DOíÀÛw€³íJ2oÛøþJp|ýFyç¿ÿõš3>>>®ÕjÃÃû»»_³éebpp0666..Îív¿GÚÛÖ­]s¡Ÿº·3D\#žww#`¼N ßà. ´a|¸eË­Û·ßy ÞTUUÉd²ÎÎÎåouöìÙÍ›7£—ƒF£¹ÿþ’mõ÷÷ÇÄÄÐ4ÝÓÓ³´ô••aµòÝé&îNÏkM¢\G¸;Ý!ˆóÅ#\Ø&»xéò«Úõûýf³«¯_UáØÓÑšß^oj¬6¸œ†¦<>.MµLë cë÷¦Úï²>/ùT—•¡¦3Sw˜ôÿ¹"±Ñ©ÿGsîéFsËq#H{½±ý{s[½éTƒùt#¼Ï=ÕÛvÂÔVo<Õ`:í2ÃØ^Ï/h4w´ü³Ýrìp&“¹Ó¨Ûùׯ÷7;™“NƧi´ÔϸòŽNß½ ˜“$ÕÕÕµ´°/C^o¼N¯@èB÷pÖˆ+/Êš W üYùB»’§¤Þíë{ýä%H A‚ $üŸŸÿß ]ñIÂfã;˜´¶ˆÒÚ(­]ŒY6,0É´Q™øQ™mW?‹4”ÓD¬ ù/ûeÔDÖÅñÛ.¨HJA!D”tš$ ¢’dt“Èâ‘0ýG>ç«aP–GñóÅGðÉåA%Êâ‹q}2å«¢V0q+¥¾{–0È'BTiÿêԭ۷ϹçúVä.Ü–ÍÓÿ­,ÊiÅŽ„£G´NÀQQ"ÐÅ™:>;„Sû¯ðI&a¸XU%/"ÜžQ0YDÈÇeŒ›G EOx”»÷—£ ŒBFzÇ¢W¸G[Ž€Ê¡’•k|}ý}2´|m•8§¥£è(rdφø„Ô´÷g™à Ÿ`05AMÌî™ä”šJQ†fýª°e°ðÀ€ ÞÞÞ9>n—ËE’$—˵X,sœz–Øív©T*“ÉǼ8ÚÕàï×À#úàí `7°©în{0p  Ü%’"œÇëëïŸñ ß&“‰Ãá˜Íæé‡|üøñýû÷pö^<{ö,ì“`,X° ++ëñãÇcáŸ>}úðáÃÛ·oá8 6›M"‘…B«Õ:}åÞ(F6îîÔ‹ºÓT­iÄzêNw0ì" ƒU±9—¯\ýÚ¼N§S£Ñ ð@VUYâù}WKþ©ãªÖFU[½­£%ÿ\›®îHVFŠ0 +–n]«ÈŽÑçnÖ©cK eµ¦ôu9S¶5©Z”'ê')NÖçÔ×fÿþkÖµY¿ÉO7©;O䬣Žɪ;œÙp4»õ¸útSnK½¢¾6«H·%Z¸æ‡øˆš©íM¹Ð †É2Î4çkÕÕ×fnŒ Êq\0000³Ï>^ %(”|ºxˆN »ö¥SóØu ý¬Ü €à´ôƒƒs/žác×®]ð¿ñRÖÉöÕù•"uyYˆ“´€4('\§qŠPÅ„ºB¨ÚÅ ðY¼09›§¯+Ë¢àÛÒÏnž9EãŠbÖ(Ú©ä³`jÿ>É$oWµXU%õ¤Š ç¤ìžWôø8¾8y…öZ¡r( Rž[!¢ ĪP_–¿ÏN-_»OœcÀÉ"œÝjÄÙ01Ñg=©½ì©=s)ŠqÍ^Q†6rÔ×Û7ÇÇír¹H’„^‹Å2Ç©g‰Ýn—J¥2™ÌápÌ‹€£]þ~í< ÞÎv›êî†Á±·ºÁ] Ây¼¾þþyÏÀð=`2™8ŽÙlž~ÈëׯŸ>}úäÉ“gÏž½xñ¶¸òüùóÆÆÆÐÐP05†M’““oÞ¼ùîÝ»¡¡!Ø©à†ÝÀ݆‡‡¿¨Áf³I$¡PhµZgV¸ÒhdÐáîN½¨;MÕšF¬ îtÃ.P!AlÎå+W¿6¯ÓéÔh4(Iòµ:# ‡›#±·¿WjŠ±Ï¨2|æ•Ü€“n©#V„S£ÊUBª˜óó]¾$CÇϯÃGTµ';0!Ö{sÊ«®qÿÿkc_fÉÝ+‚…s}aáìÛs|Ü.—‹$I.—k±Xæ8õ,±ÛíR©T&“9Žyp´«3À߯€GôÁÛÀn`SÝÝ08ö`à@7¸K$D8××ß?/â¾L&‡Ã1›ÍÓyõêÕ… ***ôz}ii©Ñhûlx94” Pòèà!:5ìÚ—NÍc×1ô³r€8‚ÓÒ νx†oŒ‚‚øßx k$eu~¥Pµ› ‹Ò „ÛŒ&ä4NÒh®.©Ë…áü€E‹&dó4U"Eé¨?- .wÏ¡Éi‚ô˜ASBh«ÄºHv0 ¦ö_á“$_«5ŠQ8MPÈÿs©¿ÒÜ:ññù¨~ª˜PïÂ18ÌÏwù’ =_³OœS<.Ï;5… +™´9¬ mN|V瘿»è)) +n ò*„úõ!\?Xx`ûöíÛs|Ü.—‹$I.—k±Xæ8õ,±ÛíR©T&“9Žyp´«3À߯€GôÁÛÀn`SÝÝ08ö`à@7¸K$D8××ß?/â¾L&‡Ã1›ÍÓyóæMwwwff&× Žã6lˆˆˆX¶l˜,kݺu0 ¸IHHȦM›jjjîß¿? 6›M"‘…B«Õ:³Â•F#€wwêEÝiªÖ4b=u§;v€€Á‚ØœËW®~m^§Ó©ÑhPx «ª,ñ|‡¾«%ÿÔqUk£ª­cvº9÷ï¿4-õ +©$b‘Ï"­*z¬ü1c;±3U´+o³J¾!6&,~ ïྔCU)IÒˆŒb·A¦UǦm'DDHȪåIÒõ*rC”àì—ÛSSÛÇ[@ÚpL$ —ÜvvB¸IH‚ŠÜI€rCшT žÓ´§ç´gzf¨@Å pèÔÿ©u¦ZR…ðb +Õ±y)N¢ÂÂŒO´kÑz(‚!ftæ;kV²÷oÿ¾kÿf~k/fò±ò¢ÌCÍ…}¾Z‘•—zP-(•s÷¤îÊÏgÿÎQ>ì4 õH=º·m ¡KW]–îs5¹Rr.=ÏÖ^{(¼˜ŸW6êøדUÃîmVµÝÇÀ Ø4@1³¢rzf&üæ)((((((((>1Z[ oãhZ„lª±S¬ïi­¸ö˜Ic¬Lþ§7—ôèf1›Ÿ¡ªË0Ù%'ðµ÷ÿLø²„ m"³]RÝÂc°h(uÜ®hµ6ÝlÏÖÙp2£uã‡|5Ÿ£‘™UÕÂ7ž‘Ô·­·Ø-”ÅpŠ¨²p™ìXò$µ›199ær/..jµZttõz½aN"@@±ÌÜÜܶ8?úCB\ìÀ€qò‡alƒ`ccü°)À~Pc¨àÀÎHŸðLl‹y +ŠÏ‡ÃÁ`0ÜnwPQ³³³—.]âñxðs0 ƒ-Y[[{óæÍ………÷1à÷ûe2A>ŸoKëþ®«‹0²Ü’-hmSZ#Ô <°J —¹›Î¸}çn°yÑM&žH³ÛT×FZF//_hrõ6 ö㪮8õ£¦Á¾æ25/2*¢¦\Ôÿ}cg›š¤ÐhxVR©"K–Ï).L·ŸP}Õ¡.‘¥PóXdÍyúúÜJ^‡ž#Þ³OÁp“œÙ~TîüC½Õ\œ-ÚSyÿý¯+:«EBfŽ$å·gˆû CÎfäa ¤a§áªËÒ}®&WÊBΡÇãÙÚk…óóÊFà:Àc²jؽͪöÓþ‚°i€bfEåôÌLøÍSPPPPPPPP|b´¶AßÆÑ´ÙTÃiBß!ÒZqí1áƪoÃõ'Åúv1‡Ÿ¹CU—nî’6žm…/‹Œ5Û%Õ‡xt ¥ŽÝ­Ò’á:®± +4G7I¢PöæSâú6!“Uiá;ÉŸ5銎ã†Óâ* ¥&OR»é“““a.7:ÇiµZ6›íõzÃœ:D€B¡Ëå³³³Ûbàüè q±ƒOX>Äac€­sp[þs ƒèøö#€HØ鞉m1OAñ9àp8 †Ûí*jiiijjª½½=>>>8Ž;ÎgÏž½§¿ß/“É‚ðù|Á/šD×ÕE!»<$[ÐÚ¦´Fc@v§Gv@ ¹Ñ·ïÜ 6/ÚPL&žH³ÛT×FZF//_hrõ6 öãªûô£¦? ˜ 9±1¿(Êgm/;s\%Ëc'ÆÓÒSKŠÒ÷pò²S[šóšdÒ4µ<«¾šeîSòUòÌt6à3² ~V’TœboW öêO´Ê K­àþêÌ~Û%ÎKF—¾>[6ì4 õ5#kl ¡KW]–îs5¹Rr.=ÏÖ^{(¼˜ŸW6êøדUÃîmVµŸö ¼S{˜•ÓÏfÂož‚‚‚‚‚‚‚‚âãðáVômM‹íO5uJô"­×¾K«õmxóIBßNpx»"£"Tu–³RØ ð Çq³]Rݧ³h(uLB´º…gël8ù𠳇®ú6¡áò‰'§ÅÒâvVYøÆ3ô§Æú“®-ÜpZ\iæ&§Å,Ÿ¤èÏd˜Ë½¸¸¨ÑhØl¶×ë sê %%%………ÏŸ?ßß ÇÇĺžæ ÎÞuply„qÀþ Ø-ÀÔ@ÂæpÆ'&¶Å<Åç€Ãá`0n·û=ï_ZZZÏÍÍ …Bx†a$;wî,//¿uëÖëׯß߶ßï—ÉdAø|¾àü]W`à ÀC€ûïhMoõ(xðÃn(\æn:ãö»Áæ]XX0™LËÛÍnS]i½h¼|¡ÉÕÛ4ØCŽokä¢ñÏ.ó÷ßT«ä\N£TÁ36äîSr³ÒR"µ®‚Ø_ÂËäгÅ)y/¹´„‹””ŸÁ¦ä¤ef|‘M¤¨åYR« ‡}ú˜r°W÷Í—‹‹8è ŲLEQ'5±(ýíWeCNýP_3òðÿ6††«.K÷¹š\) 9„gk¯=^ÌÏ+u|€ëɪa÷6«ÚŠÐÖã˜Ø \^15óï𛧠       øÄhi9„¾£¹£pßc§Dß!ÒÖ[…ÚcëHc¬LêÛ„†SD“MÄæÆGFíPÕe´|)ÕÙDè†Õ{Ö ×Xù Çq³]ReáÑY4”:fW´J›n>+i´ád¬ßà !Jc]q.F“¤=1´¸¨J3ÏtF‚þüxIW…nìW˜¸ÉiäÂéa.÷«W¯jkk9Ž×ë sê J¥²  M¶Å€cÀ{à_ãØô7Ø€¿(„Íá<ß󟇃Á`¸Ýî ¢–––V&OŸ>íì쌋‹ƒ­Âçóûûû_¾|”¿ß/“É‚ðù|A®¢ëꢌ †óàþf­i àÀ# »Av' 9ßMgܾs7ؼ &“‰ O¤Ùmªk#-£—/4¹z›{Èñm õF/™ºum‡‹s$iùÙi•e¸ª$+G’Z¦æ5Ëtu9‹2s³Só¤©Új‰¦J"ä%g‹X¥ +nA.G%Ϫ-©ä™û•¼.›úJŸþç5 uÙ„€‰(Ëçàü¤ƒ¥Âï~SyÅ©êk¾Ò³Ža§áªËÒ}®&WÊBΡÇãÙÚk…óóÊFà:Àc²jئÊŠîcàÅ°ì`UUO?› ¿y + +Šÿ²_¶AM]i.‹ÁR1é.¢-"/ /¢ÊòŽ¬U@ ¹¹ à ‚$j…¢i­²¸;»Ž¼„d§®­ÓÝñ‹8ãq¦¢Y©¬.°Ý;Vª4㌊¸ÏMv]Kâd¦õþæ?wçœçù?ç=¹‡áçÄãÇsrømìâê•ä].Ûš‘$²(c+*ðyY;ƒÄÛ‚³‹Ã$*Áž‡ó<§„ ßêå”J€sDùÁO§=•È*:g Fåî _›³ŒíÅBëo»$‰ü6î¡Ã7äfä‹ò_jm¬ ƒEÖÊ‹ÂÖç½ãíîêîüÜ_Q–YÀŸQókwÂ…+J– çq¼]qál6ûÒ¥KÞñ»wï®[·Î××WßÓã`k;XqëÖ-‡OOãcêÉ“5Õ,–{=ÀM€n . |μ¸Y‡àotÄ·§b€æ=?ßo¾ã ojµšÃáèt:›3LLLÔÕÕq¹\˜#NNNÑÑÑ'Ož|øðá\MGGG…B¡@ 0™L¶•M³Z::^r.='<¸.è â@Xÿ"6çLûÙ¹úšÍf¹\N‡{²Š +ã·(Zk³ê+$ U’ÆJúù‚5Ts´±Š,U¯)دX•Ÿ½3?þw{×>D,]¿£ ./wUá–˜]ÊøŸ¬ýý§©%ªÄ·ÅíÞž´ggÒ§%)ûJRJv$íÞ™|°4µI#ýS]VyYúö­1yŠ÷•y1;òã>)NÑü!C[Ei5R¬afÍÕ²£ 9‡ÊÒ"ÂcåA]]]¶½v{¸=9'&Úè]#νj×¬ê   à}‘È4>îøâ~úL?m=zôhÓÆ-ømìÂ"¢×,ÍÛ»rÓÇá”’O©ø_\È'· ž“R` –ï +ݺEÖÎÐwý=\YÎk¤¼m"s> +“(ƒ%JŠTZÃ-âK +1P€i)•@ñQxþo#Öçp¼ÜÐÚÃÓe­Ì[Y”bw8í«äc,Yü¢µRbæ`ÌOW¾o…¨€îî æ§ç”Fb§¥¶`²ÐZöŒ…Û£B|'˜<$·$,dšbÙ;ÞóqáK—,Õww;xï'ïÝKOOÇkoOoƒ­ídll,:::22Žw8ýx{E¹»›[ À@Œñº Àçe€¿?¯Ë8ÞÝFîY®{±@Ãåñ®è½ã ?E¦§§_=ijµšÃáèt:{¬§¦¦ÚÛÛñ´»»»B¡¸|ù²mŽ£££B¡P ˜L&Û2ÅÅl<::ÎϪ ôq + \Â"6çLûÙ¹úšÍf¹\N‡{²Š +ã·(Zk³ê+$ U’ÆJú9SZ´¥FÚzXÞ\#«/—|VNÒ=µYGêdGË´Ê:§©FÚLK†jÀT•dS5e™ m¨¤ê+HT£†Âi«­–ZæP8Šê+ɆÿãŽj®–mÈ9T–¾+ êêê²íµÛÃíÉÉ81Ð0@ïýK1û®YÕAþ¸ô|2E7¿ûÎñÅ300000000üœ˜zø`ó¦ÍømìÂrZµféÖ½›?^.U +(ŸÚÎ'•|‰2äYQ*öã¨|Whþ¾•2UȻܷX æýFÊ+<©( £Uô4‰J@¢è |l[{¤´BrK JW¤åp¼Xhíáé²ÃË"sw‡ãJ‰3é¬í’*ÄR]yvQÈÖ}+2ò‚8^no½í’¦((ÌÞŠCRËÒè‚•¯×oyizáû#SsüÙ^óqá>>~=únïøÝï¿OMM + +2ôlm'ãÿ‰‰‰X¾|llÌñîSOž(þÑÃÕµà n^Íz¾ éº-ÒÓz‚è%ðâöO &8 į ÜpàòxÝz½ã‹g`xCP«ÕG§ÓÙ™gbb¢¼¼|É’%ð㈊Š:qâÄýû÷m³ +…Àd2Ù–,.f´ ttœŸU.â‘E§â€>ž±9gÚÏÎÕ×l6Ëår:Ü“UT¼EÑZ›U_!i¨’4VÒÏ™j¬¢šª¨æjYóá,mµT«¡šjdM5”¶ZÒ\#Å6v6UK›kdÍØÐP-8j™Ö\m©µ­Õ`* +S5ZÂq²VcMEO *©—º£ÐúhCΡ²´ˆðÅXy``PWW—m¯ÝnONƉɀ6€z׈s¯Ú5«:üé!ú’ÜW®l=}zäæMCOooÿà qxxhxˆaŒCÃFcß@ïÀÀðÈÈ×:]BJ +~¿ßPv<åŸ$åÅnðKq“2¹ÉbÞj±ÿ³J&ý“Äþ8ŸÉMÉ^µî=_¹9»9óc¼Rä‰$—ŽÍôO¶Î'q>7™´FqQ‰™Üø n‚„›,ç…&x³º µ«û<~Ìâ”쀉ܿÄLÚb¦µ}â&‘X/^äŸ æ®ÎâE¬^ŠîóÝçaX9.'ÖbLò°æ×jM/?QÌù%J¸«åËBâÏ_àŒ ÿ¥—wmCÓÐõë†ÁA}__ÿÕ«¸;Æ×úMoDƒW¯öô÷  ™LÇ¿ú«oôªèk×®9þ*dwîÜIOO_è¹ðØ—_\¹Þc0è ½øÒŒÆ×øÆþÃð°qx“÷õú ýæëW®¬–ËÝœ·|ð9@ Ÿp ˆ/žÑ—ôŽpàÀŸ ø À^?78^^5ŸÕ¿5ú^â®Z‹þß“áMÂhùgÿ —¾ùºãÜÈÓÓÓ¶jµšÃáèt:ÛŸõ}ðàA[[›P(„Yquu‹Å/Mò#E#@`2™l«œ,.fÓ‡ ttœŸU.è â@ÐÇÓ"6çLûÙ¹úšÍf¹\N‡{²Š +ã·(Zk³ê+$ U’ÆJúù‚èN«°]%ÑVQ(kg}%ÝÐVRZEøg=Ÿî´N«¢þEjŸÉÿoöË/&êìŠãß3Ã?£0H7+þ¡ é¸aMئMÛ]aÝ–þÌÂú²mɶQpTfPt‘¡$DF Ú|ôA“­€Iœh2u[wkp»±“¬Nû@¬‚ã.ëé½÷73Ì‚ÌŒ¸IïÉ'7¿ßýÝ{ϹçÌ=sO`€Ãô‡Ðjóô†ÓßS=è¬í´•æ0ËuºÇÛc‘‰©©’ +c>p çQ£kKEMÁEø ø(g7·ï½VöÑGöîî¦Ö£ûnjmµÚíÛí‡ì‰D"‘H$És9h·°µ5=ÒØÚÚÚÕUoµnÐ(ΚœÕ¯gåîÈÞð¦vSq֖⬼íÙßßžN'{Ó¶¬Üm™›w­_ÿFFbZÔyk7í\¿±8kCŸ›ÇgŠñ™â!3O°¹8scQfîöÌÜÙÚüuê”v±U'%dlY»qWNÜ"íf¦z‡²B<ÙÂ(ÎÞX”•ËlØ™ùƒô„”DU¢Z“¿ŽY¾[žÉ°Ýå툳ê<®:sÓ¶ìÛ³6î\Ï6«JT1‡§¦­y»²ªåÔ©f›mßá–¦Ö6«­ý ½=žá¶Ùµµhk³´i²µþøä{5椤”ŸüèÇ÷ïµò¥P,òøñãÚ÷ßW«Õ&£½ëTÃÑ#û[7·µZÛÚâ}Fl¬°²¶Û›™ßŽ±´¶íìüuKˆâb•JýP_&âÏŒÊ0”è= 0ƒJ‰Ö‚XÄW¥­ùyÅ/[N~Üd³ï;Ô‹¸ ñ4PwñâÅgÏž)§~fffYYÂjµjµZ·Ûuž ×811ÑÑÑ‘••…ç =yò$jL|>ŸÁ`Ðëõ^¯7ºŒ‹î70¶(×Àm¢Ë@‰ÈNíÈèÕåêõûýf³™OOOm¨/½0Pw¾·¦¯Ëäì6qðv¼“÷W*Ï!ø×Ðkw%Ç1Ûs¶»ò¬Ò£,ò{ÓY{5†Ö sT‰~ÞÙ·v…þžêAgm§­¬¨0‡Y®Óx<žèÜ‹LLM•TóKÀ8][*j +.ÂmÐ=P ‘øªD¥H‘"EŠ)R¤H‰NTP©Ä± +‡½AÍZñLB ø‰VñÁÊt•*…¦+ãç¬ ^Ù,µ*ø5°€˜®š^!ËUA(Æ`ñÖظh7Î¬¼Üçû÷Ê—B±ˆÿ©ß¾} ÐÊúÔP©¿ñ¸9–Pà4Í7‚_U²Š“"å¹bªª|ôøqtYÂjµjµZ·Ûc¶™™™Q¦§§‡††ôzý|;“““÷ìÙãr¹œ¸,ñù|ƒiñz½Ñl´X4Àp¸ ¸€±E¹Ün]JDnÊÐhGF¯.W¯ßï7›Í|zzjC}é…ºó½5}]&g·éŒƒ·sïŒà¨äÌèùµÏÁY`–2qÁþnSOõ ³¶ÓVVT˜Ã,×é +<OtnE&¦¦J*ŒùÀ%`œG®-5±À©î•ügH‰À*€µ ‚Ä`+‘H$‰D"‘, »:ªD›¬RAɼŸXZ|zù¥”’D«—œÆlH’$,yq½1¢ê’ø––¯˜^eã) ÕÄ}žìöÄ?ÊsÖLf0y{Ïž¾ÿ¬|)‹|ýõS‹¥Q˜Ïw±*¸»¸û-!’PÔVñcÂ~®ìŒp”rØÏX@)¢3E¼²§%ñFù®ë•§‰ä¢¤>åø’Þ}÷áE—%¬V«V«u»ÝqÌ<÷ïßollÔh4ˆ”­[·ž;wnrr2v>ŸÏ`0èõz¯×Ý +F‹…Ù7Ün.`lQ®7€ÛD—áø vdôêrõúý~³Ù̧§§6Ô—^¨;ß[Ó×erv›Î8xûrq–9«¿§zÐYÛi++*Ìa–ët':·Ç"SS%Æ|à0ΣF×–Šš‚‹ð9T_ýŒý7~Ktt°Ç€ã‚’H$‰D"‘Hž¡qŸ< œ¾*·Êcb´Â9†Ä>7lÖ‹"¦P¡.bÀÕ12_»â„…Í~9ª7ö ÏO +B®àÎ$Š{¸• ¶ u§ß«€]e»ÿåó­|)‹|3=ÝÜÔ a à9X)$Ü_§…ÿ,Oĉ0:ÂBvB \Ï3ÃNúß´à²øtšè$Qñ å A"y¥ÙécB7P'N÷O«ª>y]–°Z­Z­ÖívÇ7ùLNNöööæåå‰sŒÔÔÔòòòÑÑÑ™™öUicŸÏg0ôz½×ën£Å¢€»ÀMÀŒ-Êuàp›è2Pb›ÊÐhGF¯.W¯ßï7›Í|zzjC}é…ºó½5}]&g·éŒƒ·ßAú{ªµ¶²¢Âf¹NWàñx¢s{,215URaÌ.ão¸?d%ÃÀ«‹€‚wÞ¹ûÀ·ò¥P,2ýí·Í°:Nœ=¾âûâ>Tö8?Žñ:#·Âú—Š)>gÿ;þÇ~ÙÄ´•]qü²++Œß&“®c¤7 C+½dbHÖ ƒ OÐ5Ùኾٕ‰€ÐRaO1TJZÑ,š¨ +Š:&àñã#/J¤ 2o²âe¤¸•çAÆÔ{m’æ£ø°59G?]YÖý8÷ŸÿõÁ2è? qà¤ýô'пAßf'Ü"nߘ÷Q,s Eú:[)GB¡Ôêª7•0 CQÓ4·KvÖ××_|~øðaGGÇ™3g.]º”N§·ëaŽãhš¦ªªmÛÞvE"BãÀ D>|³)I`JDžh¨ uªð+#£cùžëº®®ër¹¯¬µåèP¼y°·±¯3íǺäX‚ô÷œ¾m:×^W]µWxTZ–å-ì…X*®mí®÷dÖhb«¬åHnË%tð—ÅSH¸J<ϬÉ0 Ã0 Ã0ù$ù72 åøß÷YòÛíÕ?¥/6ym·ä‹™´ÁÆ7¹9yšÇMßp&ùÆ÷;}ôó˜¿íÌoö¸\7!úŽû„¯µîøâÊÊî·B…ؙڌ/DWtlÑÕŠI^v4‰¹ê0e¾^úé¾ôù5r«r1¿ ~~%ž‹.ô÷ o‰n&²yÙ…ŸÔoJ±¨šà6Ñ5  +¨©ÿì_kkÞTÂ0 EQLÓÜ^ñyaOŸ>}üøñ³gÏ^þr}}½ÀmÇÑ4MUUÛ¶½íŠDü@XRŸÆÍ1ŸJ4 Ôfթ¯ŒŒŽå{®ëºº®Ëå¾²Ö–£CñæÁÞƾÎp´;ë’c ÒßsúB´é\{]u•d•–ey {!–J§kBû«À]ÈÚÄVYË‘ Y,÷AÀGø ð¬ ߘ ÿZ¼Ë> Ã0 Ã0 üoLÊîןÖ_ZYÙýV¨Ëd2m† è=ÍŠ)KÑcû6f€%РBšèBûE @6qT|¦¸$²U0-Ê™èoÀÏšúúÔÚª7•0 CQÓ4·W|vÚÇÑ4MUUÛ¶½íŠDü@XÁ|'UÓ戆Z€ +¿22:–ï¹®ëêº.—ûÊZ[Ž Å›{û:ÃÑîp¬KŽ%HÏé ѦsíuÕUB’TZ–å-ì…X*®ií®fŸfQ[¥,ù¼dæÄBP„¸ < ñÖl,O‚E¯k†a†a†aJ Ñ'šÀ?I@œ8±ì<ÚýV¨Ëd2m† 8 Z"š%JÈÛ•h”$Ñëa4:iû€Â`Û7†)LÐhÁúúÔÚª7•0 CQÓ4·W|vÚÇÑ4MUUÛ¶½íŠDü@X€”ÄV1Of§Í µ ~edt,ßs]×Õu].÷•µ¶Š7ö6öu†£ÝáX—KŠ¾®û{N_Œ6Ÿk¯«®Ú+<*-ËòöB,•N×4„öW»24ñYc‚0ŸMtI¿,3ï°œa†a†a˜÷Ñ'šÀl3x8pòÄçÑî·B…X&“i3 å@Ñ"ðì½¾=¼ÿ—$a +´BÚ>`€ <·JØm†ÙeL¨”YÂuàc X_ŸZ[õ¦†a(ŠbšæöŠÏN›ã8š¦©ªjÛ¶·B‘ˆˆ Y‘Ols¡NbÚ›å+ñêgñ‚Ü! +Òž +à +`3„ ’oÊæû0 Ã0 Ã0 ó¾‘ë&$ÇIà.‘ *?ùäþÊÊî·B…X&“i3~ 8 ZÍÉ ÒÆe“$)zÌ¥'Ï?L‹ ëÀAŽca€°Ü|ž†aDÙNƒæ1à0üôÓÔÚš7•0 CQÓ4·W|vÚÇÑ4MUUÛ¶½íúeÄÄû i’òò²¾¤”Lt4Gø+¨Rž*edt,ßs]×Õu].÷ý¤µåèŸ~ñ‡ßéÑÎp´+ë:%ˆv‡K„˜p©;ôåùS¿müã—Í¿>þѽÂó@ Ò²,oa/ÄROž|ÜðY%ðwñ:çùˆ×|{Ž`pø˜M@<ˆ”ÌRô¢f˜7I¼JÑýÙµ‹ü8nÍ0ÛÅöJAbSŠ~Ù +Úõš¥á¢ûÃü—ýrŠê:ãøÿÃh¶SÅ›¤ÇÖ'«Û4uJ®U“L+ìÂ.»Ë» ˆDÓ€ŠOH»ítœf¦c3Í`«( ²H4NM3v¦± ,^A”˜ÔG³MTX­šQ Ô$}dzîYy#p÷î rÏüæÎåîy|çÿ}ç;|!â¯$— Ç@gy½ ³M¦óÍMá/…Ô´O>û´øG?0xžè"¨‘bË;ê""5Q¯4 `˜mljÞ%ªÜvÞ#Ôó|x$-×5Ú-Ów¾®ã!:Ž˜·€×A,;=n·ß¼s'°,áv»A$)¸É'ÔÍç󉢨×ë½^o`38ŠŠ&Éé€ã=ƒ­[b¡:ò–…b΀‹ ·ØI“^£Féºííí999òð‰÷oXùä~OÞîm9e/d–•8ÊKì¹9Z¨ð›´Ùé)Í~içÒMÍßþædf¹N§«¯¯Lv5íFkÛ{º8Ä\Ft„0D˜O§ïÈ·!®'ý.öwÀP§ÒÐ'u=‰¸=áÙHÝÚ¸†FPøDô=2jˆøfC¡ØHÝf4‹qó44Ôã¯ýe +."†Œ ¬2™Î75‡¿RÓXºfíZÈ¥^.ï kƒGüe‘ «°Y¨:pêèü(к zƒH¹= x€@¼p“:fëòT¤F#ˆh÷xÿt„zçya'¥èp˜,´Ûo´·–%Ün· ’$7ù„ºù|>Qõz½×ë lGq±ÀÓË &¦?qµ©®#=î Žk~tô[¢ù<;=ð€P{¸Véº,-çää°á±“Æ~ïÕêå{Ês+J\›ŒòGy‰³›ÃHŸ¥+~åÚ¹%kÏŽÜ—«—oÚhúÖ܇˜åññºúúúÀdWÓ®µ¶%Øí: Vöê‡Ì›¬?Éîc‡e"áá¢wSÀi~ÑŸT2›†††††FôРí¾Ó'µHÓqÈQMtŠ¨¸ÜŽ¬šÐ¥Ï75…¿RÓnßnyº ŸÕq“€RÐ-¢K¬"V +Ñ©ng6ÔeÑPû.kN¸Hhj€¹PLÑ>àá}bXGZ¶ùBÑëÿ™ˆÛ j°Ã{xÔ ú;)ÀwÓÒ®·µ–%Ün· ’$7ù„ºù|>Qõz½×ë lgц‡€ý<½¼ΧÓ–üù—z•e§³ K„&à5àQ°ô„¯Mž,U¬[kk›ÓébÃaÜ×'þñÕ•^\^]–S½=»z[Îîh¢z;cÉÞŠÜ×öþà¯lÚhÒÍŒe–Ïœ9ëرcÉ®¦]mmM°gLþz»ãæ"o“ìÇ9ÀÂAB èoÀ ÿUB¤h* è¡A ·Vc£›Æ£áî“U +ôàýб‚Â`8{ùrøK!5íÆÇ/ÉËcuÜà—À5¢ —º'ePßmË!=¼CÉ ¼:c&®A³˜Ý ‰vW‰ÎN¸ñ‘°¡]1ýr +8 ú;ð +0 ˜o³]ki ,K¸ÝnA$I +nò uóù|¢(êõz¯×Ø Žukc*à s,1’`LØÓ ·@§ätD ÷¡aü¨ú1rjj]yž09.®î¨bÝnßnÉÈpÈiy˜õ+ýnßÓ/{r+·8+·º<[]U¥Y»·e÷$+lT•fw ¿{J]Ì0O©ó7žÜ{ò~²þñ¯Çg–Ϙ>C’Ž&»šv­¥e¡Í>(öž¡QÅŸÌkÏñ«ð>`p`7K)°ØTöì_Õs†Ê{L[5ØÒ•ÝÆvï_¥Žwªrò‘Ácc¸£Iª‰ž}EÜ Q¨É0òue¢V´ˆÇ@xtFk)Bi˜EJ#†ˆP*Ë»ÿäáe+¶@5°š—.^|á£Ã_ +©iWš®˜ÍfVÇ2€½Àn`+PÞçØFÜ}»¸Úe|òýÀzà«ÛX`°{d+ﳫcHp¯¶ˆ^tnsÐáAüïeÄä¨î?±øßÁOÊ~(žF S’¯Ü¸X–p»Ý‚ H’ÔÜòæóùDQÔëõ^¯7€áÿùü󜂖a\a¦ç¯yÎ/ãÏàgÀÏßO¹ÿJJÜ…ù±/ÅsÀ/€Rž‘¾Â³SÜÔoÔIÇ•.}õªÏ`0°áÄ—ðà† ëWˆ«–Ï[W ­ZðìêE.dÈïÏ®Ÿú}úkçœÝû÷Åß­hå‚uùâšgŠW=Æì|b¾0z”¼ñ)S¦ÖÔÔ »ÊvóŸmÉ™éÌ€<~G¬éÉêžt~ô¿¬œÀxP `~Ê*èÙÓÿ¾–Ó&˜¾–0 +9÷šV#X~1Ð$ÕDϾ"î…(Ô$ª|­h­à®ͲDmð £µ"(Z8U1D­7‡—å½¾ûÿÌVð—'y ¸Èhô^ºþRHMknn¶X­Ü|Ì6ð∕B«ú«\Bç¾Agó¯Î¬ZÉË=7ÀŒÇÍþóù³õ­³†Ã倄t›¡°àQå‚{“ΰ_ÉÏ ;ñc’d³5]¿X–p»Ý‚ H’ÜäêæóùDQÔëõ^¯7€áÿþßó×09ñÏóÏË@Œ§@K;°H'Ú3/öæêøs§ožúe `AÌRÐDc¸ì3âuÇßlPºtSSSrr²?-Ïž9Ñbœjœ•’8½ØL:»y®Í<ç.&§óE—fêöÝ<Çš¢»ûçPž}_ÌŒøNÒLñiæ®>i왢³&Ç[Œñv³Îš2{ά ~³§MŸQ[[€ì*ÛgŸÞñ<ÿ¬aúØï'.NJ³¬6F’Åš”jé‹Å`eÏTö”±¤f-Ésäfä-Ëtegd:LééF›-‰õI5'¦š“RSe,©ì‹Á&”?v ¿ÇÖ~ HLí6–Mh‘{2Vk’ˆ +SýX:H”×U5çƒé<² DÑð(Z+Œ’º¯¢È¥ +§ªjâVeà…Í¥RãMÕk…ÑÝAÕ!i@ 2¶î¨Q)´$”Þnà…4Ò!xY%¤¢)õàÀÁ xa;ËQEPݧ¬¿:Ë{­¥(e9ð,Ö®úB–ÔÂÿǶ¤ØÓíN§+;'Íj3 [JKoߺþRHMkÿW»§Êc0“-Ö¬¼¥Žœl‹##Ån7ZÓ:K• ¸¯—þ}¼ÙçžêÃV¹ã™ÑfMMOKwdº\Ùé®,sV–=ËåpeÙ33ÍééÌrƒÍ&×VÌøŽ«PeŽRsgW ++]+œ²(º+5l°àQb§º¨i0 êß>³ñ‹ÅüÉiö4§Óáp˜M¦d£±¬¢¼µµ5°,áv»A$)¸É'ÔÍç󉢨×ÿŸý2Š"»ø?Ñ¿™_’]·vÓ»‰›Ýír-Ý”® +bƒ.‹"11‰[x'%&–¢Âœ€È­€Î}±ÊF´•¼@ĈÐ80E‡#2sôœÝy3#n\ݘ™áÒý~êËãõ{ßë}ßëîiœ¢¨(ÌÙ÷íEƯRâ×%&'oúíºU ñ+’’Ö¥þ~ÃÎo6ü!cÍÖÝ)_m”í[æ,úÔqzÙù¿oÚ”þ§ßìØ»m÷_Òvg~½eGܯ—üõÛžôöDÚjµŸŠ_·>qÛö[¶lÛ˜”œ¸>imÂú¸Õ +WƯ +˪5S‡$nuüêÕñ¡>š]óLáµè$.,A竧¼Må€ããÖ®MܸqÓÖ­[RS·'%mD¬¬èÊ#¬ß×S_Z›þs~¹„¯Òòò9Y¾Lú² )¾BfC9_&=«×+›[Õ †3:}±F-Vª„r_&+"‘¢6õ§ôCnƒ—A[…üBȦ4¿7õm°•É2™P&)b…‰(&QL¥-ÈåB…µ¨Œ"ÿ.Äs‰-ÖÛ)â×IDæó'Ö¼ªáŒJDÉDº9¯í´†Þ4féŘv,±æp7c¬ƒD©ø"~é½0o«4£»?½oæn¨YÞ‚™+Z;õªcŒõÖÈôn_,Îgt!³sðÐ/j‘|ê7¶T*Q©Kuºêúúµú¼B~ûî·Û=ûŸB±à÷û>|¨P*e*µôÂ…òúúb­Z¬R†?+—< Û÷ª7*uX‚ß52Ts_ú®Q*JÔš³:B«Sétr½îŒNW¢ÒªU¥Rü¾ }g)‚†Ó~b¼æÏ-3›e™Ñÿ¥Ÿ7³Wáùs‚úèð£G“L¹B¬TÖiª´Ú*…ò¼\~ïî]7åÓ‰ÇãaF’äô>|fš¦ ‚Àqœ¢¨è< ™êšÎjtg´ŠòŠüÑÁÒ*A•^[Órí\kG奫Õ…7%_»O}æ¯^ѩȪ¾ÐPÑÒ.¿Ú¡i¹¢—Õ)Oî¿|:kÂø Ò¸çþýûF©Ò¨TúÚZeeåùÒÒšââ*‘¨L <- ‰HT–२T,)öÃ", + Îsµè$ä<K\&?÷L@š‹Ë + +ËÊjjkå*•6˜¶Ruõê5³Ù]ÙcÅjâîVqž9ŠÀ6$o oR®Ä¾å#»ïy<†a$IÎHJ3MÓAà8NQTT^¬’µ›k?ÎÝ8Ì=ÑpnÓ3…!’Õü9 ú„=½Œ»rœ³„Æ=œ¥“»_É5íᚌm~¿ïÿ‰çóù<ßï*[` +ÖǹÆ9Î;×yðã„}½Ê<‚}³Ò &Øð*²ûžÇãaF’䌤4cÐ4MŽãEEåàÅ*Þáô¿ãª¾à.ìäJىǜÅÈÝWp²í>!á+ZÂê2¸>gîçF:¸ÛEœ6;ó%§Ùéëkõú¼/WœeY§Óév»Ã—@Àf³;ŽWmË0ŒÏçý¡\}>ò†œDµÒ×ã÷ûPª¿?23xÁ¼Éðx< ÃH’œëD"ƒ¦i‚ p§(* +svªA®g6=~ªÌtfÿÔ÷7Œ‘,q)¾qÖgÙëÒ%+ÉbF¼u&kÓª½ÎÚ­nÁ§îìŸØ >¶hÙ†þéñ³Ï¼…ÿ‡0›Í—.]jkkóz½èÒãñ tttF¿ßÿ½dFFFêêêššš† ‹Åâp8—ÈêÊ•+&“)Š•¾”agg§^¯¿wïžË嚉À<„ÇãaF’ä\'4Mã8EQÑسl° +ËpܘËoêj‘g:DKÜ‹ÉRשåÎÂÅŒ`‘Gð ·ð#—è—ñç®ÂeNÉçŒðWö¢cêƒôƒfÆïýo¯S£Ñ˜™™™——g³ÙBÑØáááæææ®®.‹Å266611¦rFFÆž={ß`0LNN"—Ë…fQÖGÙ"[¤ìt:‘m4Õæ<Ã0’$ç:‘È iš Ç)ŠŠÊˆÿqÃqãnn¨·wÐP4Q™Ìˆ—x„Ÿ1¢O\‚™ü÷ƒRð¾«àgÁGŒðcFD¸ +¿0W¥ _*¦Z|œïUÞŸ44tëÖ-ƒÁ€¢>RC†ìîî¾sçÎõë×»ººl6G ôôô´···µµ¡Ðf³¹¹¹™Ïç744LLL8Ž¾¾>ä­··M9Α‘d‹FPh¯×Uµ€yÇÃ0Œ$ɹN$2hš&ÇqŠ¢¢0g96ˆÇ°Òž‘Ç“ýí#íßK‡e™¶’8—àCGî{ö ,œ’wí9ï8óÞuñÙKÖŒžÏ6HÆ;tÎÁ.ïS“×öo·ÃÊ0Œ?û7›7oÞ»w¯Õj :thÿþýƒáâÅ‹ùùùéééÉÉÉçÎëîîÎÈÈXºt)š=|øpaaaEEÅòåË,XÀçó=z$•J=ÚÖÖÖßß_RRräÈ‘œœ4R]]ÝÐРÑhd2™@ HIIIMMÕëõ(“pD¤€!“ììì}ûöÕÔÔ rµ¶¶ +…B¤âÄ Ô¢d´Z-Šˆ\¡c€úÅÅÅÇÏÍÍ-//W«ÕÈêرcyyy7nÜ{Þx<†a$IÎu"‘AÓ4A8ŽSÖëòÿ«Çߥñ¶•¹þ!²^ÈSeÖí²é8ùíÄ;¶ 'sß³å.´¢6g!™Ìù™ãäدûŸ¦ó;àÿDžHNÝÖÓÕÝnÞív3‹&N\Â) +•l‚¢ÚŠ}@Ú‚¥EÖâìòТT + >U@žz‚>Æëë냦\.öëêê >›Ínhhðù|ëqz!„B!„BhãQ©T‰¤×ë7zµ!‚B¡Éd“ÉôéÑåh€Xø†9ûKwû"×bÁá'óÂO½Ü³Ì­Îœ¦™[œ¬-.Ö6'k+,œ76OßØ<ÃÞæãï‚ÈÅŠŸ·}!ìåþbªàóAiÆ·º«5‰Bý·oß?~üÌ™3v»}µ#Ì™––vèС¼¼<¡PxãÆââ⎎ŽH$—.\¸Àápl6[OOL&+**JNN†·Û ¹555«ÕjëëëÏ;W[[ ›f³Y$¥¦¦¦¤¤äææÂʶµµAÁÕŽ£££°YRR3ÌÎβÙìÇܹs§¬¬ÌårAñû÷ï_¿~ýòå˦R©ÎŸ?'—Ë!·µµU­Vët:ƒÁ—²²²ÅbYÓC!„B!„BJ¥’H$½^¿Ñƒ¬ A +…L&›L¦÷HG¢>ç„óU“M'±T3­TÛ½ôIeÚÌß<‚ý3ìmvÆf#†¸kgÄÂ'ÁˆµÑ7Ù1.ÎÇsE_8¤_O”þÙªü˸*۪ͳ=O¼¬µ x<Þ¥è?êÃTgÎœ‰‹‹»wï^ooïÔÔÔÀÀÀÅ‹a‡Á`äää\¸pÍf766z½^ÎÎÎf±XoÞ¼ioo—ÉdR©ôÒ¥Ko0  ¬¬ìüùóuuuŸ™™Y]]½´´4::*‘HÒÓÓSRR FãñxMMMn·{õ¡,—Ë…¥R ûL&ÂT*dÁº¡¡áÉ“'wïÞ‹ÅB¡°¤¤äáÇEEEÐH ètº¶¶¶îîî¡¡!˜J«Õž={AJ4]¿cD!„B!„B†J¥’H$½^¿Ñƒ¬ A +…L&›L¦µæF£ËÁpÔ3çž3š_w ¶~3¨+®ŽU1¦å§<¢ßºrf§ÇX雬ô˜ ZÌ}óm“•ö;#Æ»cîö[éiãÎPí_Z*/ÇûÚ£Ûå †B«-ÆÆÆètzBB—Ë}ðàA__ßÐÐPnnn|||VVÇ………R©t``Àl6ÃW‘Hd4;;;U*•F£ƒñèÑ#‹Å¢V«Y,VKKËóçÏ¡H}}}$/++ËÌÌLJJºzõªX,–H$ +…z…Ãa˜att”Ãá$''çåå•——óù|èøìÙ3XCe¥R ƒÉårèUUUUQQ¡Óé´Z-ÄÀ$° ‘===¯_¿6 uuuríÚµööö(üûB!„Bèýýë;Ňù–ñaN…Bë‰J¥’H$½^¿Ñƒ¬ A +eÇŽ‹e­¹Ñèrdi)Š¸Â19æÍÖ¡—:›æ†ïîŸB·?[Èß=Ãü)Áˆ ÅXi±VÆGVÆfûõØÙ›Ûƒû‚Eûg¤_™êŠ¿í´8ÌS‡wÑŠFW«O¿ßÿòåK•J¥V«ŒF£Ïç3 ,+##C¡PÀúáÇW®\õôô4ÜÅàà ×ë…õðð0ÜÉdzñâKCCC“““‡£§§g||Z„Ãaˆ +…‰‰‰"‘¨¯¯A}¥R933oß¾-,,¼víš\.úôiww7$.,,˜Í榦¦ÆÆF8ôþþ~§Ói·ÛaBøœ››ƒ,ØòäIooïØ +èÞÕÕõìÙ³W¯^AÀzž"B!„BèÿÌê{Óêò»ÛÿûIÖâ;CG?ðQBhm¨T*‰DÒëõ=ÈÚA¡PöíÛ799ùßÔßôÈòò¼Çåm¿*ÿz¹ä×˲/—ï Ëþ¸Pü…§`ïÿ—sù{=‚OçÅ)¾ZVÆ-—|²\¼/P•æí{´/ýûâ¡PÈï÷w;£££*•ª¦¦¦»»»¹¹¹´´´££ciéûkÀ'ÿðsgddD,WVV †Çk4šþþþHîiÙëõ¶···¶¶:Îj_C+¾·&¤ÃØï®Â×F!„B¡ÿLtåïG^Ð~ü7BïP©T‰¤×ë7zµ±Ùl{öìÙ½{7Ag¿Þƒ¢ºî8€ŸŠc¦N:Óû‡ÓNÚtÒë¤cRg:ÑÔTä¹ËCAQi}ÅŽdb5Ûy.°´Eì.`5$µ“fGE«C}^„–E[™Ú á¡I‘]Øǽ·gï† IM +u»w¡ßÏü¸sî¹çþÎwÏì0³OÞÍùé絨E,|Q(·}°}ä¿©Ø`Õ…Œ½l+^5Z9|ü—Ã'_w¼—(ê~*üH(àëô‚õÁ”6©¯¯¿páÂÕ«Wkjj.]ºÔÓÓó$ÉÏŸ?úôék׮ц´ùÐÐû‘Íf»sçNww·Óé|’-¼åÓûŸµ4w46Þjmý¤ÓÔ×ÕÕßÕ5Ðeî3›Ýcÿ(³ëzëÖÀ­®³i ­í“ææ;Fc{oï/ðr!€7±,Ë0 Çqr™šžžžåË—Ï›7O§Óݾ}»¥¥¥±±±­­­££ÃôŸ´Smí-­7o4µrõMµÿÜú^æß²~bJb®îø®!iY9_®ÞU“—Ø{8DÔ®´®¸} Ì»õhæ®ão¨ÎìX\·ýÛ·vçïy«Z ŵõõM7F¡•jnnnjj2J÷½¥ãš°¶¶öܹsUUUååå•••ƒáâÅ‹tÒ³€.v¿BÑn7%tàiEÑþõõõ tý•+Wh“'NІtLgê$´suuõÙ³g/_¾L{¶ ¯ÓVã¹{tÇvI‡„žXgg'½Òqû8Ï£ÿ5¹¿hà=‚xùRÝ{ófJªZ­ÍÉ-Ñä•j4G5š2¦Ô*·,/Ï]GsrÊr²µ©iÙ{ö¦|ô§êÑ1«Ü‡àM,Ë2 ÃqœÜA¦¦¯¯/88˜_PP V«ÓÒÒ²²²²%ô6ûëe¹¨Ó3ÕûÓÔûÒ³4iÉÇߌ9·sÑÉuÏh‚Ÿyí•$„½´-!¶à5•I½R(xÁrà…«ûVfìP%ÆE%®yq÷Ë †|ëÔ†ùIz®rÿæluæ[éÙié™Y™™™éééi©4Kšk IMM}K’‘‘‘›››——G3dJhN:™*ñ¬wèLƸt‰{Ò½f¿„vp7ÌÉÉ‘>”+}J÷ÚÿoRÇMìóXtGw7µÄsntìžô<ý†Cö¹¿hà5ccŽ×w§ÓßqÏ?Ov윻vVXè¬ðð§¤RŒü¤áaô:+&ö©íÛgÿ|5MMVý,æîÝ>¹OÀ›X–e†ã8¹ƒLÅb)++ ‰ŒŒ\¿~}ll¬J¥¢ãˆˆˆðIp­Šˆ WEª¢Ö¥ïÚ¨MÙ˜“´îk#W‡„¯KümRb]Ú*‡&h(燧Ø5IÛ6¯ŽNxi*84|[|ä¡_ÇŸHÛüû½›¶lZ§TEED(=[ÓAä8¥RIƒEEEEGGÇÄÄÐœñññÇÑäqqqk×®¥O'æÿ†OánN»Òwi“‰ ×Iè<íLoévîþ4 ãNñõ&sz¾$÷ ¼ÆjµoÙ²òêNrªšTV]1Ñ鈮„èõDç?¥#ztÕ»Bž>MÔjòôÓdÉ’à.óÇrŸ"€7±,Ë0 Çqr™žç;;;;¦ÓéJ%%%%z½žÞê'¡¤DGÿ´º’¢"­^¯ý ¢ôÌûï¾_YZp¤0;ÿ¬Cº¼¢òr]QËáM£šç†~÷ãºÂ]¥z½¦ðݬü¢¬·ß9t¤ðÃ㥗?ª¬>Y^qÔµ©gÛÇ ÙhB:(**:|øð!É‘#Gè­;‰ä±Q¿ÒÐsKßÒjµ´ÉÁƒ8ŸŸO;NlèxLæpünœÜ_4ð›ßº5oÁ‚Ù 7ˆ(*D‘H¥˜0ö“R|%Øgÿ$k‚É¢EÊSܧàM,Ë2 ÃqœÜAäää…Q›ÓjsØ< tF‡,¶Þº?ö—l¸lç`û»ÃAçi9œ¼eÔ>4ê°8\+`2váÕùß{vvs3E…Tž¿•;ØSîñ£GD¥$‹«L¦^¹OÀ›X–e†ã8¹ƒÈLEþË3cN¡¿ãÚÝÕŸz{ð¯MÒ’/ØÑáË|ÓœÓ)ìÙSøýgçÔrD]%ˆ +©ÈøÕOêKahÎHhY¼Xe6÷ûþÜ>|Øßßo·Û}¿5Ìx,Ë2 ÃqœÜAþ‚ øhtpØj³9œ‚ôŠûÏÀ$ñ¼˜œR¼pa@c#EZŠiRÄb!QQ$hQ”ÙÜëãC«©©Y±bÅüùóCCC¯_¿îãÝ`ÆcY–aŽãäâwxž·ÙÖ1ǨÍaw8xA “‚t€©ây19¥800Àh$¢HK1MŠX­$&†©Ìæ~Ÿ—Íf«ªªZ²d Gǃ?KÀ‹X–e†ã8¹ƒøúÏ–—¹ãLoH3˲ Ãp'w˜Éx^LNÑDü;ô[ÕUÇü÷+ò`I¨žÄ©AͽÙ0!¡%XK‘¤¯Œûb2‘¨¸-a5ða¾·l*0E²,Eþí‚ÆÅ Y•Ž?®c4@£—"#7âtÞ•×®­%Ð> +r)í{÷_[5Ä·IûòÂÝ÷“onÎ}÷œó¾ù)¾‡âºdÄHÓ ÇIzJÍÍÍååådÎœ9'Nœ9âû~¡[@XI)…–e»„™ç©DÒÔôˆm“R|ÅuɈ‘¦Ž“.èˆ._¾\WW7iÒ$ +2qâÄ+VtttŒô}¿ Å ¬¤”B˲Š]ÂÌóT"ijzĶI)¾‡âºdÄHÓ ÇIïL|ßÿ׺¥¥¥ªªŠ‚ð°‘uuuukkë^0JRJ!„eYÅ.aæy*‘45=bÛ¤ßCq]2b¤é†ã¤ 1™«W¯Ö××O›6‚ð°»ÉŸ2M3“É¢„ž”RaYV±‹@˜yžJ$MMØ6)Å÷P\—Œiºá8éqKÿáÇ+**hÔ˜ùî×ÊÊÊcÇŽe³Ùqï¡'¥BX–Uì"fž§ISÓ#¶MJñ(2´ÍÊÈ~òýQ ˆÿÏ«†ŸÁwº.1ÒtÃqÒã;“[·n544”——ÑäÉ“ËÊÊJKKKJJ(È„ ò›§Nš_ä_ó7=ztpp0§ïûã[BLJ)„°,«ØE Ì}îܹ ,˜5kVii))++«®®^´hÑŒ34M›7ožiš™Lf|ë@èI)…–e»„™ç©DÒÔôˆm“Ròóñ9ÿy½ûÓ(Ž&4Ê«\—Œiºá8é±ÏÁ÷ý‘E.—ëììlii9räHssó¹a{÷î9s&Y¸pa~s[[ÛÉ“'óÇO:ÕÝÝ¿sì àƒCJ)„°,«ØE ÌýÌ<²X¶lY___þªžžžt:ÝÙÙ™¿'[6›{CøàR +!,Ë*v3ÏS‰¤©éÛ&¥8 ~þ™ßF}×ùôiÞ·vï¦={øø[t­'èlp¨³‹÷à·š©¿?¸Œë’#M7']è)¥R©šš +ǽü@ÆFJ)„°,«ØE ÌÍ÷”·n¥Ç£IÞ°¾äý÷饗)åMùìYþÅ«¼­ž¾óÝÿ1®­esÍ|ˆ§}²äÜ9ê¿Ãß\Κ@?ýIþßé•W¸¼œÖ­£Ìõà2®KFŒ4Ýpœt¡§”J¥jkk)H<Ïår….¡'¥BX–Uì"fž§ISÓ#¶MJqPèÆ Þ±“¾0›b1Þ¿Ÿ^ú?ø O™B›6²|š><•ªªxëè[Ëi^II/šô•¿³_7?reÀßZ¤¹äZ>˜ƒºù0Žæ£9Ôâí1áñ!G²eƒ­•r Hë ¤ðåàÉdàˆH.$v^p‚Ý&`—p°fƒ/I”¤½®êbfvg¦g³¸…P»5­ç§wg§¿ªžy»k¤9JG¾@_=Áöì!!ØwŸcŸø8íÝK\ øì·Ù#Ì-.Ò/Å––è“ûûã°·Þ*LÂÒ”¢&a”$ݲ»dŒBP)¥µ¶ì0P{J)ιֺê PgÎùV»„8&ïYQQ–Í­¬°ÅãtèÉ“ôôÓìà§æö?Æ:/²ó?bû÷ÑÁƒôÄìÈ<;|˜–ÏÒ… ôùÃìÐ!5éÀcìÄ öãØç>Ë`ñÚ`Ì—~Æöíc?ξqš-DôéÏÐò2½ýva–¦Ô3£$é–Ý%cŒ‚ŠH)­µe‡€ÚSJqεÖU€:sÎ·Ú lÄ1yÏ\™ïŸ3¨ä:=ÿ<;}šžù&-Ÿ¥Ÿþ„nþþ~›.]¢o=Ö—é{ßg/²µ5ö××éÒKtîûáØ çéå—Ùõktñ"u^¤;wCݽË~þ zö,ûιþ˜ýýì÷z®×+“¦5)£$é–Ý%cŒ‚ŠH)­µe‡€ÚSJqεÖU€:sÎ·Ú lÄ1yÏ\™'ŸõßP¯GIÂ~ókö»ßÒÊ*ݺI÷Rö¯Óí7èÊZ]¡W_¥›·Ø;ïÐÆÆ`矮²?¿Æ’ë´¾ÎÞ—Ó¿œÞ¯?#Ý¿Ïþq‡Å1[]eW¯Ò¿°»ÿœ³¶8LšRÔ¤ Œ’¤[v—Œ1B*"¥´Ö–jO)Å9×ZWêÌ9ßjw‚°Çä=+¨ŒeÃ×Ñžü%´S}ðÐxÏ\ÿ5óÛ&ÝvÚƒ*M)jRFIÒ-»KÆ!‘RZk˵§”âœk­«uæœoµ;A؈còžÍP¥)EM +Â(IºewÉ#„ "RJkmÙa ö”Rœs­uÕA Îœó­v'qLÞ³ª4¥¨IA%I·ì.c„TDJi­-; ÔžRŠs®µ®:Ô™s¾Õîa#ŽÉ{6C•¦5)£$é–Ý%cŒ‚ŠH)­µe‡€ÚSJqεÖU€:sÎ·Ú lÄ1yÏf¨Ò”¢&a”$ݲ»dŒBP)¥µ¶ì0P{J)ιֺê PgÎùV»„8&ïÙ UšRÔ¤ Œ’¤[v—Œ1B*"¥´Ö–jO)Å9×ZWêÌ9ßjw‚°Çä=›¡JSŠš„Q’¬—Ý%cŒ‚ŠH)­µe‡€ÚSJqεÖU€:sÎ·Ú lÄ1yÏf¨Ò”šG)›I²^v—Œ1B*"¥´Ö–jO)Å9×ZWêÌ9ßjw‚°Çä=›¡JSŠš„Q’tËî’1FAE¤”ÖÚ²Ã@í)¥8çZ몃@9ç[íN6☼g3TiJQ“‚p!IºewÉ#„ "RJkmÙa ö”Rœs­uÕA Îœó­v'qLÞ³ª{÷è‹_¢ Œ’ëewÉ#„ "RJkmÙa ö”Rœs­uÕA Îœó­Ö… l¼“÷lvŠ66èØ1 +Â…äÆ›ewÉ#„ "'Ož´Ö–jO)Å9×ZWêÌ9ßn_ÂF¼FÞ÷‹ÍHQ¯G_9NÁG£$é–Ý%cŒ‚ŠH)­µe‡€ÚSJqεÖU€:sÎ·Û lÄkä}¿ØŒõz´¸Ha]OºewÉ3??OE¤”ÖÚ²Ã@í)¥8çZ몃@9ç[­ÎGm¬\!ïÙìõztü8at=Y/»KƘùùy*²´´d­-; ÔžRŠs~ùò媃@YëO}ýüÞ½?¬÷lvŠîmб/SF×®uËî’1FAE–žzÊö +ðÿQJíÚµKk]u€‡)ÖÖ›á_–?¶ù’å^·åŽm];º0Û:s4Øhc²•&ËÆe“‹³üI“,£ ÙdþÉõ~rÆhÿhØq²á|Ùd{úCMMµ}ŸË]â§fÏ:iE® Ù$Àæ\½ ÷ä“Ï}xχô+äý¨2æýfmmfý=Ã×l°g°?Û*¶YÞÏM.Öø¨Ï¶ÞûɵƒÁ³á,[f,áæì£ÁGseãÍÁÑwߣ# ôèÇŽ¾víÍ©vnʸ¹›2¹;´õ¿»õÆíù…ˆØ°vöµS§î;;Ž2š=ËE˜šwÛ½ÏíζÍlôtè,wr¶Ã‡˜ÜÞlÇããgz«?ùS²q˲ÜÂ-EŸK‘›(›Ž4þ üÌÙdYnŸ8ß„ÜÊÍ}–©¥3Üp;#Œçú7Z“ÍÉØ£U?ù™´}*•›Ê:¾E“&Ÿ¼qNçógäÞMz0¾•ÙtèÜâêS¾ÝãnŒVyæóCfS_ £õÿ¿=úð°d¹e×sæ̙ݻw¯®®V› +àáÚüm›ÿy»ý°þÜýûÕÅyE¿Cj @ Á¶ÈA¥Hý „FNÕ†6Püƒ_°ñÛë'C…DiUñùMhCèD(¨mH›„TJ$ž…"B nÅÆ^Û»¶÷1çô~3»ëÝõÒþ+(š£Ïã™»÷Ü÷iBªùBâÛݶ„¿„¡ÿÑB;☰ïa•#“²‰NèD-¦…­ÄEÎ46ëè¢YW¯7PP°+åÉѽ H} ¯†ÄÜ„B¬\_¾Ñ?ÙŒ¨{M‰Ñ·î#7„­±`D±l¢!Fqµ°§Ged¨ßÏ;ÿyg¢~Å<qÅAD)^?QÁ¯Ý¼™™“«î#ô¿¢Áå§ã9ªäá)²ú>bŠ{Fl¿€Xk á{$HŒ'È6jæG˜/mœFp'd\P÷ûøÊ ö1ZÑÞåbF[~$\þãßñÑG[Žmí#ÜùF†éÑ0£ßL#ß$ˆgŒ¬|\}¢äQÁü×AwðàÀ4ͺººéÓ§Ÿ9sæ~ÇâÀ8pàÀÿ' ö«&÷!káDäðûèvÓë…ˆ,†eÁd0hë„ÍZ'` 1¨oL“î^xú#~µ$°£éú¢éÁÐ#€@?ýú|â.äZ~׆‰aˆŽè‡E𠲧¾!ØL}¬@8ðèÜ%0l(MŠS¸{90dçŽWèAm!Æ5tÅ$xš¡G+ôô°·—–½n÷в¼-Óõ—)Ç PŽ’ úµP"AЀߒøƒ†–Ë1•VƒÅµ%–mÄÒ„%×GXnƒÞa lËA1bKŒš+¾`mM±Öc Ï€ö¥ît«/Q3žXvîô?Œ“\ÊÓž,ª§·ýØЃt<Á, +tsý‘v\¹p~ñ‚Ÿ(e¨D0Âòò ¾ÁA«GCÚBd˜dN¤àCC¡.ØÞå0­‡FËý~«e@X,èíÃÀ#Ó¢{AUZ¶={z\á÷[fOTPË£ü߈/)]ôRH0Á0]ÔºÁªm\ÖtY‹ÙIÜÝÃÁˆ +"fÄq…¨ÛÉÛ’ÈŽx†ŒŠ<¶n„å:ÊZPZ Çç×îlR˜@âÈu‰¬Ž‡â’¥ï~Kh¯•µ®–w$ò„å(¼¤~öõbp œ¥j¥(`øͺ‘Úý¡GØÁÙÛÖÛ)n»ÃI“àÖ:Àj™~Q˜A{ÒàõÒÛo× L8x°044TVV–œœ|ôèÑ`0èõzûúú|>Ÿßƒ÷{E8pàÀ|K¡¿`­ÏÞÁA¼u˜…,+cS#›ZØØ„ÊJde±v#®^ÑÊž~îÞÍùóQ²Ž/™6_þ.œGE³²Y]Åæ&65ÓåbI ²³±o/ºï†| ð7‡þ<³rxú´&ú}xç¬Z…‚"Ö»Ø܈–f6‹ëF®[Ïì,¼ü2nÝҚܴ aÑBâÄG!›zŸÅÅÈ_­éâW¼Ëit¡lƒ¹|96oáõ/uˆ]]ܶs梺š_|1œ~û§(߀¼<ÖÖ±©‰-Í:+qfç°®—þ¡é^/ù+>3ÅE«P£pM¸cäÚË æhºb›vÍR…Õ~«Ð?Š«5ÝŠ{ŸS,V<§Ä`Çݤg²ÔcƔϯⶭll`]=š›ÑЀµk™»‚ûö²«3TŸGŽèŽçæòo§´$ tÞ:‚]»ØñU¤ dx<žªª*y¥¤§§·µµ¹\®ŠŠŠJÜïqàÀ8pðíL ÇÍ[ßàÓ“üé2ŽKæĉHMAj*SRùðÃHJâ¬Y8ñ‘þ°ý÷mäæB)LŸŽwߥõµ«Ï±cxb“’0e +SӚƔL1cͯn„œuu¡²†I“qø°¦{=hmÁøqH‡iÓ˜šÂÔTq ¡w¢Ð¹`/_Ö.ΞåìÙ5JŸI“°{wÈæ/^ÁäI÷>ªcŸiZG"z6ÛÛ5ýÚ5¼ð‚DΧžâ‰Ã¹›<ðk¦¥pìX>ò¨&¦¥!M'I\¼ÏúÞ;®éw:‘“£éòëÛoæËß~Ï™³(šS§Jâ<%‹ñ8f¬$ŽŽŽPÝݬ­Õu›0Šàf¯g~IùD¥þøâŠ+<¦ø¤‚œi +"ü‘•™àq& éŠI +£§*¼4æ\ði¼’ÌIŠãWœ¡0Kq¦¾aŠâدòàªË+ú{KÞ’©,²D ¬Y_ö—¼„-1C)Äa)¥Ò‘RYÜÚ©%ÅZ;8šŠì"ƒJT”¡Ò•2È* 8H!dAÞ9½÷÷ Óét¦TÆy'ß¼—¹¹ç»Û¹ßLFü{™ÍÓýQhhè¶Ç“©äòn®Gá%n? ­9Ĉ08' -w£Ô³é[¨´háâöj2ëxÛÔ Ö$Ãx7²¿}'ûöÕªåSÔ §““&âä‰`‹>¿ŒùèÄ££ùâ‹jéêÂâEêŽÄ^”† ½)ñÁäxøþûJ>vüpN®×øï˜áttJÛãzÒÆQ#¹{·F?u +¹9”Ìûß…;xcdX·V³u¸ojµ7( +t:8kÎ4ÏŸÇ”)ZxR_nxU¹m­˜9S%®ÅJÎ’|b¢9ñÕ@ù$65i˜];‘rm6ØmêVS£ÆÎ,X@—KO¯&%)]þ*ô(-œ>üP=ß;ÄœØì´ÚËêjtwàŠgt).$$èŠiª7ÄDÆ‘£°{7…úeâwÄÖ­¸¹êkk…è—@ñ=5®Y8Â#4ŸÓÙÒ,\~™:UGÖ'‰6(ñ³O9g]n¶ŒÌ\=ì•-ÜI“ Aų¡CCÒ¶Úü²D5/hß®uó±Çƒ—ˆ2háöNRº<5az²yäˆÚßÈ´4Ø„neL4«ÍîkzíïV¡gœ$ t³iÒ:}"«}KMEƒ9_Ùq¯W +çw`Çö›kk‘œ sǃK*Ëîv‹VQUåon¶HækN\£lÐG[0[34'®i›}C@0ÝqžùHƒìÙÃá©š¹œ>IX½Z/ìêæÒ‡YPˆ}ÿø_žæþïèìì\¶lY|||JJÊøñã½^onn®ÇãÉÊÊÊ !„Û_÷Š„B!„B!„ð ‚ßW¯òñǘ2ýú12 +±±ŒŒ¤ÛE—‹îp¸œ´X‘ˆº:uniÁ„ 0 öˆåºu·.Ûø:ï¸Cìp™D—›n7ÃÂh± °GÝZ[1{NÀ Ï=§–öv>8Ÿv;lvh8N:]p¹átÂbá˜ÑØ¿_sÝ·£FÁbP¢Kz¿ø%ý~¨®–<%I‰ ëåÝ¥t È­[5Љã(È×ÌûõÖ-â?_x=âÔSî–FwšU¸5zb"׿¢Î>Ae¥Ò{ÆqÝË7zGi ’“¥L³]nÍÜí‚áMËË»Y8>mÅó”îtñé§%ðÅ®®i>2<<üm«ƒŽhÚ¢h‰€k  †¥²ñ5ð÷ý‘cF°«ÑÇE?D÷ä?¹ìÇpE‰‘¶ZÃ…¥Ç"­pS<ïˆwjȳ8µ…9i4,ìÝõÏ‚Â=4²f)zÆÓ°Ò¹Á ½Ä # •ãpömð8yÍ›1Ñ Ã‚¸D®]F6i·|ÞÄl§û =LÛæÐãphÛÃÚ4)üÈ‘ Â._á¼y22ˆžzRÝ]X¸PÛe³ªN‚wÊ/Ò7¥‰½{µkÇŽ}—ç5LXäçßa1Qe·wôèÁè(ÄÀxë- tò$óuâHî‹-oà¦â_z‰ ‰¶eÊrD922«•å8ÓÌüüyN«2'žÀuk•ÞÚÊ™3ÄÍo³ßŠª=@×Ì=9C‡¡ÑÜñýHÏ Y8a|è!^¹¢é¯|Ñ1´ÚÌÕ6{X´@áýúcóf¥Ÿ8AŸOÅ–œŒÍ›‡ßÏÕ«™ØûÆÄ͸’ŒC_'––QthQk«ÿ¾*³ðX¬­UK[gφMVÌffë +UF‡Ú“,üo{0t¨¶BN\O¬Z¥Æ?ÆرŒ‡´å+on·)D®ÍÍÍÛ¶mÛ¸qc]]]}}ý¦¨!„Û_÷Š„B!„B!„ð Å¥ÏX^ÀÍÊ1c9c*+éóÑWÊÒq(.FF&+*¹w¯þWÛÞÎêe<ˆ%Ålh\ öÆ}¬ªbZ‹½,- žü|¦grÉbž=tëèàó5žÊÌ,¼ù¦Z¾¸ÆuµÌ/€'‡eÊ‚‰^VÆ¢"¦e`ÞOpâ¤ÒOŸæƒó™6–£ÇÐëåŸ×ÃïW{ý&”ø˜•¥taùÌÐeešyz:¦ÏàšåÅV,]ÌA1y2o•ß°ƒÈÈ€¯„㔟æÀ’¦gàÞ{ñ×]¥½Ë—3e¤ð;p“~ð ¦MOi4ºdîcA3²¹x Ï ºuv`ͤŽ@V6êÿ"†Ëׯ¯xåO?ò–ÈÊgñxŽg^ó|Ìõ1³#²8çg8٤ܦÓXø(Æx8*¬]iýظ‰EÄȼ!"ÛK9rƒ|ŽÈÄÔûñÞaͼ­K~Ž#P>ûÁœ„¾}''~—#Ó‘ëeA©å’ô<ÿØ<üj%[Û`Ž Ÿ·qù3H oöh#¯]­^S³° øDnžÖ[\Ìâ=> + +‘™ÅE‹ØÜ,¼ûjk™šª…×Õ©ÅxE^x<,-Ó##3§†¢"HÏçÞÏcÇÔóBËá¹s‹ÃÆ„Å°Xäë¾Þ}:ª¦ñ{S˜‘ÁY3qèyñ"–.ÁàÁ,¯À—'¾{+'#3[G):1µŠüBˆ„žx‚-‚ª¾ÒŽ•+1t¤´íï¨åjþÅ~¹üHVWq¼æ_ðˆ , u```¦fPDÁÄ…aj&DX°Ð@ÜèZã#º ÑFvJDHF£3nÑyÐx§SÕÕ]U]~Uw×½ßãùý~÷}«º]Q-ù~ºúÖ­{çù;ç$¿ŸýT 5¸÷³×Îs½êýÑL ½ð‚\³OMÉsÏâÐ]ÐŽxø„¼þºy8ðå7¿ÆCǃ»¿,“eS¥aà¦ÔMàO?©)ãyõ^zITüà¨f­œÍ ³ø=NÅÙØ%WVàÍ`nëk+øÒ\Â|MšM•²‚-i4TV–Zз±ÑõU™‘™iY[ Ÿõ×þúZKXjK§mÄUJÅçU¼)[[Ɔï£Ó•Z ×jz•åq¦77­¡E#Õ^rÖ5(㉊7š²±ií@º]\1²ý$[uÕzÞ‚ +ª†vÛi€:¿° ý¾°Üô^ÅÚzŽ•B½.š(g½mGmÞÜ× ÖÖdfÖľºbJw½ß\\쫉¥6Úét¡v:šIQñf[&»fioEª5©V¥¶€^?Lzß-,Ô!=/¸O§£i4/¶d3·¬»"ÞU©ê&".€`ÒìH݈£k¬›Ì75ç ÒY•@VÖezs5錠Hgm³Q¯oé®ÙŒAÛöc·L7ƒ­0l³ãë0;î·Iï¯Ëâ¢z®»l¾dr¨ªš Ì×uã°µåd/ŸÿDZCK;ñ­'¿¾ÙíÉ` ÕªÙµÍM»50)¾Šêµh­?ZH¦ªëâ*Ü›Æ2_ÕìÉ D +=™–¹9Ñ¢µÒТ]X4µºÔ +cwÅÖX4•©û6qA`TÕæQ«B÷beÙY‡ºaKÝ™Ö}kÆÔªíWêj¿×…×R¯ËrO„¥Þj8Ïaëÿ«rû~¹òa* B!„B!d7žnÑíâäIs€½ásòî»ñ+¸o„÷ˆ~»÷ØWîÊH¸:oÆ +%õW€PuzQ¬%uIn‘_™]–ºO¯qþ ñ>t02½–‚ÛYSÑ=òO¢Ä‘¹O™Cb<ëu.|D«SîfòAQ6Ž9ãš » #-3<ú¼‰Ðy¤åŠ‘#)“$Þ\¨…È㧙‡žç•'Ë¥xö¹ïl ¶2Eef$y8,Ö¤zイ†2)IÇ•^äu¹K¦Æ1¬?Òz“bÎe".•¢ÿùg±åX!ÒŠ“¢…Ajƒ² /™JHªƒ!é=ϸ)÷ðÚB³2"âNL¦–s=¿vW!„B!„a ¾>ÞxCNŸÆÙ/³ ¨²3Ž_A–^»DÞ»ïí AgF–Æظ4«‚" Ýâ6ã2ÊÒ `M&“‡©,/¦Ê‰e’“©¤Ê©<ÄÉŒS1e@cÆtUâò25êĉ†årn¾{,‡™Épï “ïW_î>\ÎÿûÎ÷¿§ê¼ý6yüxa³Bç‰F£‡š‹@ À²ìB'‹ 1„sõóϹþ€;|„»t‰ŒOÀ! ‚ ‚ ‚ ‚Ì@ž OŸpÇÕ2Îã%Ñ(^^‘‡h4êñx¨¹,Ë.t²C8DïÞãjjIz:éO>Yè”AAAäËðXr÷Y¿ž£(.5…ûå%²Ð9!/:„#B|D£QÇCÍE `Yö›HAþ àå |@²³ œ«ùk¹¯á½Yè¼AAA$!ÏÆ{÷HYU/çÞ}wóú_xôèÑ[o}¿½½óÔ©ž¡¡áPp°¿o°¯7Üw&Ô{&Ôw&Ø+|+`Ù¾^>ú"áàð`øl84 ƒ‘þ¾H?H÷†Å‰`Ÿ°ø@Ê<;„/‘0|…‚CR¿$º!a3a'ƒý½‘`ÿ`p |âÄ ¿ßÿÎ;?“ºÅÑhÔëõRsX–•:™©)öÒ¥_íßï?vìì9ìÆL»EvZlÃañþÞP0ÖñÈÙÁÁáph0 Ÿ ‡¦ý&²z¯œîx_˜oúÀP˜·zÒ‡†CC0ßפ¥²”ˆð/Wd¸§çLÀàÍ7¿wÿþ}©[,"äÚ§tZþ\ÕéÈGWÉBçƒ ‚ ‚ ‚ Ï !±OàÓ¤¥…ÄÅqF#÷þ•™ÙEÀ;wjkkU*u^^žkÍUÌ0«•1Yi£øÁ-ühbìfç:Æfgôz‹Ao¶;­ÎBš±[xiÆÏX‘¥cº6§ÅYD;œ´Éh,Xk4xuWm³[h¡p‹ø…›,Vƒ…6Ð6³ÝeuY ôy«Vetwzðà¡Ô-ŽF£^¯—š‹°,+u2ãã¡P$==#oíêÂb›ÝI[ Ý1Wˆ¼…ôÔî0CÇíN›ÑhÑi¡ã0CƒÛm3͘§½!ªÉù5ùŽAšî(d§Õ`0ô&H2´¬h^4‘M>Bí6ÞØ ¨haÏ7oÞ|íÚ5©[,±³õ¯QRQAâã‰ÛÍݸ›&‹æpEAAAþo`'¹¿|L~v‘¼÷÷ÙgSÜ¢¹»ŽŒŒÐ4M ¬Ê_J—( ÅŠg²Ö%Ó¯SæúÙ!×Êu…r­Ka(RX7*³t 1i>Þ˜¢['ixÆ1oõÙQ¨¤eÆõ +¦$%SOÍ°2?’1ÉuH– !Zá±XYë’Še¦ É˲y]§½øÖÍ¥nq4­¬¬¤æ¢»»›eY©“yòϧ] —²’²¼ÌoKS¦ã[ó›6¯ý/”…:nÚ dJ•™Ú¸ç:¾ÄúJŠ¾H®ü6m¹BÅtˆ`¶éÁr†b9¼V¹–JÐ×à-K…y°:ŒóËf™<z—Œ·z±Üü’beA\LZ¥R]¼xQê‹„ŽOë×¹_üœûð*÷øÜâ9WAAAo?_¸£øE¦XŽ„²x£#v»¢¨dy¼½D½µ-·bgÎF_VI5¥ÕšR~üšQò¥˜™Ô¸ë³·´æ®Ûœ‘,[šH¹*Ò«ÚrËë5%Õ™e5Y¥5__ô?‡–u(pkÛGùŠÄä8(U•…§,KÜT¿v_«ñ0]Ë?À§'bÕBáBÕ~s}À *-'›3é”QÇ\ûèOR·øÖ­[n·›š‹®®®‰‰ )á_‹‰‰É㯞9×&uûiGã!†ïK fŒÙn™g»!`YX¼éÝÞãÚ¶W¯ÎHiEêRwM~Û){ÓQ¦nÆlâ[ð›êýæ­­¯;j»L…<5ÑÛ¤mïq€ÕaF„2gÏ23ò6nUJÚÒþó²ÿ,l%.¯Ýd+í¦<°Z©ÐÄéol’M¶Z°Y;.êï“ŸNFsŽçwûž#ßÿÊÞ7ìJ\“TAU¬¼¬±±5~b¾Çí±‚k»Ó2(‚Ôù0t|WêÕ3)MÏ®p’Jé´7ØêNMw'.õÊš¹ËLïUs*é7¥žaf—ùÓ±¯·Z­¹\îZüãÑ‹ë“Çzo/œ«zŸ±½ýÝ{AAA©5o.¨záÿ·ß££p5Ünýögÿ®e\å‘ÏçƒÁ A®ˈ싯 J†St(mš˜¢Š•5ø¬¬Ñ³+<8òx6gÝÙ9|= ©L5Ü°#«Lb=01O56“¸£‰VNÄ×xYca¶¸¦z@Ž‘‹ìéØq·—èlëúü³»ÕnñÎÎεkצ¦¦Îœ93]@. (J8†‡¡¡¡±±±O?ýôÕ«WÕØØø”½o¸yî’ h\(U­Rït„=uŽr{¬àÚî´ Š]±,Îpf¯«Ùn³ãiff‰S4º½ÁVw*Ò¸Ô+kŒ˜¬ŠÒŠ{¶8*vv™?ïi?î€ÄI’Ìår‡Ð⊑Ïë<çªNQÆ£‡†yêêº^ë¨AAAdpOÕŸ?×'&ákttêwïÔ:¢2Èç·‚Á‚ \nrT9ËòJ†“´˜¢Biºz&©ÌÌ2cÛ1‡½±þlÂÍò²ÆTÕ©i)FRÙøš0¹@¹ÜVHÜé"GÃ'b«‚¬r0[%§û§§/°¿Jtµ%Ú¿uónµ[üòå˧OŸæóùGmÿ?~øðპ={öúõëjln\…²÷ 5Ç×E«ZÍŠ-ºÊ‡’Tk[¸¶;-ƒbW,+„3ïÉ +»ƒ½³ß¤¹È…3´Çko°ÕMwÏ­d•™:³UN\£g–ù‰yªÃç€ÄI’¼~ýú!´øÇ£ëº9~õµñÑÏÍsUàõí'za¦Æ‘!‚ ‚ ‚ Èúî5õÅ Cœ‚ ¬îõê÷ï}@w×­üVð'A¸Üä°ì‹®ráEFLÑ¡téƬŒŸH*Yâ%•i;j³7ZÆ=Ѭ/aªàº@y1¼Ë’´”*ºfbYarjj±BâN—e4ì‹eyYe+ìq× ž…‘*&¾@Ïwµ#Ú=¾Û7ïÕZ‡Í6ÿ eïjŽ­ñŠÆ•©´24¹÷eIegVxñ¼¿µ­\Ûõƒâñè*/k,,“ªý¦é*Y¦Ù6¯£ÁV76Ý=·ŠIPxy»¦<×iJÒ`—±ã =í>$n%­¹\®Öý/óýÇŽññÇæ¹è5¶· çªþ®‚ ‚ ‚ Èÿ ú‹†8e^`½^ýþ½Z‡SùüV08@DS«uDñEW8%ÆÒty–bÀÄ-¦©·®d +FÃJI¥g–8Ye<ÇìöÆúñ„?º*H*³ÿke‡ñvK¾y/±¬0¹@5¹IHÜ鲌„}ÑU^ÖL¿ÅðŠqVÐÌâ¤ÞxŸ¾ÀœMo=F´{|·o~Hj©›W¡ì}CÍñ5AÑ81¹ÛôJü€„$]åÅó”»­\Û–¡©®è*Þ¥Sñ^ì;ìff‰_`=G ¶º±ÈÉø¥ˆM<ÿ>"/|°ÔÅ ¶È;±àïð9 q’$s¹\­û_º¡ë0îìèý€sUèÕŸ<Ù}¯×::AAA9È‹S! ŒN¯qÿ¾y¥­uD%’ÏoƒA4µZG_t…S2l(MWÊĵßvßÐ’ÊÌ.s¡í9ê°;êÇãþXV€—Å5Õ3ø¾¬Ñsëɺ©…„Ä.ËhøD<5FLÒû‚ü~ä)…¤Ò‘%îL¼Ëí%:<]·nÜ©µ›Í«Pöþa×ܺ°'6DÕšg¢YA<çw{¬àÚî´ Š]Ñ,^¬¤ÔÈ@Õ3Ëœ²Èx¼v«­îÔtwâr@VM±‚ëÈ;±àïð9 q’$s¹\­û_oÎϯ¿Òú3ó\ ô_nëûfAAAäˆçÿÔÇ'Ì lG§qçn­£)ƒ|~+ ¢©Õ:¢ø¢+œ’aCiº Kí=3¥¬S˜¬2Ñ~{¤ÓnsÔÇý±5ARÍÙ½eå…Q²É=·˜˜§šZHHÜ鲌*]ñ¬ kŒ˜¬ŠGq¯D)ðÎD–øÓ±ã-Dg[×­’Z*ÂæÆU({ÿ°knjÎ}Wœj¥d˜XV˜Zèq{¬àÚæ´üR슮ñáE¶¨Æ=YVGoÌì2#HÝj«;>™¸Ô«¨±¥ÊØ2ïáZRAlìÄ‚¿Ãç€ÄI’ÌårµîièðgÿÒèï7ÏUA0ž<Ö÷æ ým¿EAAACæ›oŒÁ!óëvë7nÔ:š2Èç·‚Á‚ šZ­#Š/ºÂ)6”¦Ë°T9‹wMÉ0sëIeZÛí6{ÝÙØÉù+e‘ ¥©ÂJLQïñÙwxŒ\d>éŸëil¶@âN—e4웿Ò¹ÀÁ,Xåý¦˜=ïáE6šåGg;[¼Ä±Îî[7ïÔZ‡ÍæÆU({ÿ¨kþ“@x‘+–¥Ò5g +f~YÖ˜é‹ìüåÞÉó+¸¶7Z‡B¾Äe!r‘“v—ÁXqÉå9Æ×9Ãé°7ØëÇ"Ý ¿éE¶°q$.þÀV’R¦í[F}ïámj_b'ü>$N’d.—«uÿKD×aøâoF÷I8WuŠÒ¿ø«ù¶Öa!‚ ‚ ‚ È{·TýÙ3cdÔ€ ¬Û­ß¼Q˘Ê$Ÿß +‚hjµŽ(¾è +§dØPš.ÝdQ2Œ¬Ñ’ʼӊ‹Áf–Øs¿î•5¶µÝÖਟë9ÿ›¾™%®8 Ë$•’Ô’¾Y¢]‡ÙXVHÿ®rÞßÔbÄ.ËXäDò·ýÑr/PA¿×,Ô§;»Ì%®NE;Ü^ÂwÌÿ—[÷j-ÃfsãêØ/·Ø8®2ŽÏewgÖÞû%Ž×‰í±cïÜv}ɺJ +´Áj;Þ‹½öæ¶Nö–¬×¹5ÔÐä!)jÞ=©úâ $Tž*ê ¤’ÒuxA´%€€<ô!…"PføΙ]ß[Û5Êðp~ú2Ÿ™ïr¾ïFZh{â…À™—gj±még›m¡á0ñÜyæ{ôt4°Ë ©]n4-€Þrç͉#Ã."Þÿ0;š8¨zöêàä9¹­£µÅå8|l_á¥áéšbêkc³PE1ƒšhviëg^ÎÎÉcùþˆà‚s§išÕóß":úºÞ{GïêeH’ñöoŒŸ\@ @ ¬~¢>F×Çèþ£Gúw¾­|ÚÈŸ4îß·º´mP¯/&#EyCühFÈÍ+™Šœ,ŠŸd…(˜yŸ*‰é²4U•gΫÈjêÌ\lzNÍÎÉÙ\0øs…ŲU¸*35åÄ%µôµ¡t)Øítyã§ú+×÷Ÿ¸ŸÆ.(NM]íÛ°,XMmįBö†¡û9yªùh½ã N=]“óWâgoì?õ9ظÇϽ0Ý[º¾ÿÔ‹Ó¨f”bod…)x;fø¾ªÀƧÎIY°ª [ž®ÊÓ8.¹Ë¸*åÔ‹ƒÅkC£ÓmÎ ¥JC¿þÕÛVKàIsëæhûSÏ*7†O^ŽOײ  s¸M[;÷j /ÊÐvÜpÉlivnC¥-GÈÕÔSWÊׇæÅ`›R»¼ö禄âËxâ5ej¾©+Ó±¦NAÀ¦üšJ†¤hÐ(;š¸™¿V…Ú”Õ¥.€¥ƒ‰gJR{§Ëäœè«Ü0¥.ã—•U¯*Ùqpd¶ƒ"¡°ª '.Y’’1U>åœ.P¨|,ß\°qŽã4M³zþ[D‡¬ñ·¿×®éê_ýŠþÇð²Åe@ °þ튩þçßÆ»ï꯿n¼ñcýí­j[Ô닉ÄEQÞ?šróJ¦"'‹âV,]–À’Å(¾—3ey²¬dJrª„þL—dt]m©’”*J©‚8Y‘Ž_Œ=Ÿëõ…y—›Íôž¸G© "¼€|!HIÚ0¾A©ñ;K…kªŒŸ–¤õÙ3E9U@©³ç”—â_L Ÿ6îò8¾0Þuür<{VNž‰¦ +8Å:÷Ú‘Ìàؤ+áŠf©fÙÊúšqO µ»›<«ä.(‰Ã>†§†üöE«%ð„Л7·^ù´]yÚ˜¬¨æÄq—VÚÚ6â¹gÊfÿñ¸ËÒòh6Љœ*Êi˜xQœ:§¿{nRð‡9HÝê²îH籋1XGCAša—|›‘AÒ銙]ÄãÍqã›FIéÒ’&—J…«‚×åtQUç.¨‡s}»:ZÜ~þÙdÏñKñɳH ¸8 ]J QðRÙ±¥°lÔ(3Üë w»Õ»ÆóýÙªœ.K8†Òæ‡tNË÷Gôœã8MÓ¬žÿÖÐãqó»Úüžêæ#«Š"@ a}ù÷ªññdž¶`$SÆÍ›ÆÇVVµMêõÅDb„¢(oˆÍ¹y%S‘“EqSK•Äܼz4ÝÝå¦,…¦?»+¶dÞQ„#GÆ<ø³ÕxÒܹóÍô÷}gSÛQêJfÙù³Dq£Ùžcb“gådAJ¥MivNË÷G¸s§išÕóßëÿ_EÏfõ…ý£àu]_þì@ `=øìCãä)Ãî0Fú½{VW´ êõÅDb„¢(oˆÍ¹y%S‘“EñÓm¢ ¦ËRî¼:>ÝÝé¦0­6&À±.Ã1´Ã4z½Q:o‡EžE’0ÝíK¾pCQÍè,àce÷ÙQvÞëx&#»¨N“á & ›œÓTIÌÎÉcùþˆàBesœ¦iÖŠ`‹˜ZÑw_?ôŒÎqz&c¼÷^óác«ª"@ a:þ‡¾ÿþì!ƒ¢ô`Èxã'×µêõÅDb„¢(oˆÍ¹y%S‘“EqSK—Åܼ:q&º§×ƒÜö—Çz~võÀæ†îΪwgã¯ÍªÚ¬º0[¶¼º—ïÎÆ^;ûAyàÍË#ßÍÉí>>ìr|kFzóË#ß+ hÈ+®¡÷Õ…5î³1xz÷t "|¿„ܵ|¬oWK«ƒ½qtßO¯<15ôNL˯u„PÚiä ©XúùÕw&ûw¹íPy»—¿•îû/ûÕÕuÆo-°<eyˆñ±>ö øØEÇè²»wŸ,,Oë”"*bj¨Æhcš¤þÑ8©À¸¼Ë² ˆÄW¢ÖZQkcLM;k2NkL“ŒñÆÔ}ÜÓïÜ}°«©Ú$NÏo¾9{çÜóû¾ïœßïÜ™=½)mÿê9íliëÏ$¸´/ ~@i[IjGIòþŠTØfà +1?>œÝxÐ+Þ©i‡ÖÀÆ%í–Ô×°½èɶÒäýkæ©–¿£K䎣Җj®üëÚ;àY½'ÈÉ W¶ý:”¢¶)âYÉàÐð[K$í¼á=FVñ’”îUs@ñ¶ŸJø  økúY§‘önÅ\,V 6F[ è¬‘’ÛK“;Ë’Aš?m\°#—?9†’%Œç¼ašy¦ZŠÛJ¤î•r1K–r`Íܳ›4® +#€>>4¨Z5­÷eù{kÁ0Ém%)^“øùœMb+Iú¾Usz«e–å¢ÜðÄñœšá™ °Õ‹ñÖ¬žrފݶ»â]³ôÔ3Õi]%RyBÄ‚ӌӗ¿$Í]-2•=ù’f—‹ò+Åúb~/:çp8V«uŒ}ðt€ï*6ÌÇ@ßU$¢¿^`ƺ+?0¾‘¹yƒ©\‹¢£Qz:úè/ÏÑؾ¾~™LNQT47TaæUIÌbÓJá#g•°p$«T0ev ТBö¯›ëèÎú¶•¨QܨͼQ“‰Ç:¿¨Í¨UÀüÍšÌA‹ÊÞ¡ÿû›‹¥I‘Ó&†Û¶È¾×pË¢¼¾S1€YJoP«„Ìw,*Ç^ã¥í‹—ÌœôĨ}«çØ÷ï6k ¹gïmc:> %ŒCõjûný'›%s")i†úòÕ¯ÇÚÏv'³~ó‰?¦þ¸v–£Û0hQ_Ç’)سRD­×?¬"·-jPüêÛKÂØØðàìâwil˜÷âú{Úì¼â›•cñíé)I‘ ÙLnø‘ óA…ošX¯B>³¹ †…öбâõ*G—ñÓíK–ò±Õã#ClåÉ÷; ß6k°£X‡ xƧ8XN1´+óA‡þÒ[K2x1‚øˆ·.´weÝÜV÷Þ¨â³zíh¸;¸K­þ{§¢HÌ¥BÆÍÓM]þRrÞj±©LU&xü%Í.åWŠõÅü$Þ8‡Ã±Z­cm§ƒüýç?³Mœ€²sPÿX7E@@@@@@@@@@@@@Æ;0€k×йóèÒ%fä;Æýæy@__¿L&§(*šª0óŠª$æ +±i¥ðñ‘U&È.TJŒ¥‚©Âh 'çônIG§ +Ña3²M‡:tȦ8:´x¾CºèDÁíÍÒÙfņ]®Y†z‹Pw~Õá^iÀc»_¸súè¿ÏÞmø‰|RbDðùm¨·õd±D¶n»ÞSWç‰N–ÞcB§‹¾¬SÍ<:O™qñ­Åè$г=t\Ú]]‡Ã—ÄWúdá­69%è“£8§6¦aú¡¼ Ó»Á€]³ÕÝ[ë6¡…CõéÚ(<ó³+_µžð¥¸ow­¬Þʧ>ýU +v‹ïÌm¸¥]ïÑäè4 ½ xÞý.cÁüÄØ° óÛ¡“h6^€ÏÜŸ¨µŠûaŸ *ºV¯\2#$rÃþöz– èlþ¯]r¼íd%ë-ÅSã>)*ä/ËÁ½è`.K×y½êï_@çYèxþ6NÂÄEôíX†7.j×z¯ Ÿë¸°¯=t¼ÀÕ“½aa4.E3¥`½Ô\!2• +žxO³ËEù•b}1?‰ s8«Õ:Ö6ø_àt2W¿`΄._fîŒu7`|ü0 ²;ø' 3ðìÿ£¯¯_&“SÍ U˜yEUs…Ø´RøøÈ*d—‹ +*¥ÆÁ4Q4У8Ç7ÊÐÑ\¦ÛdoÖ@8Z`ÔÂèv’¶·ÐŽVÚÙJ36:l¾Ù@/ãOäMíÛñ":’Ç´ë`¥³³ì­xt6†ç„IÏ·ëÐAówV튴IqáAg·,@Çr™=Tq¶Ðl†ÑÒ8ð¼ÆÑ +ÏjÔ¡GÇò¯þ635):'F~üz®Þip·íí–m‡†MËfnÕ¸lZô~î&µ)™ ô„Èã?—Á ê2:piܞݯ4d€ºN¼#¼5ƦG‡sn×¥k§P|yfÿç_µžð¸ow•oØÊ .þ2ÍsuÜÇå=áÑp4ÓN藍UËXuè@Î=›.o^BLhП·,Äg¾ÛëÎ0zàÍX…xû uêA߯ë3°Wgņ{5½—˽{ÒÁ§»Ãí^6\PºÝ­ÞŠǹ?Z%÷2{>­ý ãiÃóJë‚Îæ 5ÓjQìô‰á·¿ˆŽå¹l:{“ÿJ¶g·Ùk¡V­«M‹å8ºŒ•i“¨àq©º©ë¥æÕ"S„àñ÷.i~¥X_ÌOâa«s8«Õ:Ö6xZà/*b?¥;r8r=7_U‚ÿ|ßT濾ù¢¯¯_&“SÍ U˜yEUs…Ø´RøÄÈ.åWJ¥‚é 'DÝ0õd»lº‹j¸^5R¯ºÑ ˆz<ŽÔ«MÔe´(•¢8^løg¿Y\G=bÁoÙ âÂä=6-„½Yö4©ËO‹>³9 Èv´hFv±\O!ÚŸ;âÍàhQ£¦/ÞY–29 +:%D^xmz×äú2³{zå²1Œ“ÐÎfí56¨M©q@ 9R5èN«nØ‚ëBç#o:¡{¯žv4Ò¨K?T—aœ6n¶LÑå˱¶À3ňÝQ²~³0’º¸U +‡fo¡‡ë•¬UXüŸ˜çر"à ´[÷ U[˜–4!,äƒW¢}&(nauÁ¡ +t ͆ú~½ÊÕB£ãµZeÆ ìU7ô즨ÇälÓÞ³(½+Ýâ¥cÀÙzL7T:)+Å9¼nê6¡6:üˆ[lÓƒWõw›Ô´ˆûBLØ'o.Fs4Óï-±7<þåªÜÍ;ÕpSìº +ùd*ä?ì—oPçÇ7*,èb98‚"wÇEÎQŒwŸ½»Ç‘T3éX8 &*h^´þu&yÓi›dœ„½ãöà4‘C̤Ñv¦™i£éL;¾¨q¸i›Úšæ…1þ©ÊÞÞ¿}úì*Žˆo¼8y>ü–g÷ûü~Ïóû>;³óV[K¶t]zG‡~n‡Ô`ÝVYT¦B•“$é÷ûÓm9#O¿”Ÿ¥7+ƒÁ`0 ƒÁ`~ÈÉoVåÏýûð¿_Éwî<{6 šLk‚X¬Éjv–mÝ]íì2pºÇ†c»þ¥ÕööÊ2}.’ª3Îí5Á€#~Üê"O‡Ü 䦧…”t+ÚàýŽ›ÕšrÍÂ/Ó lÄ«ÇÝ@DZ>…<ÊÝ0’ÚÂ>°ó…R­*ãÏû×ÂÓŽ¨À„ziÑóèÉ)*-¢ žŽ +žâ®¾Û²jiªÜP¨ºx¤¸¸ÏŒž'„SBRê¡’‹ŠyüÐö¿>ÐZ—äªÌ³=õp”‹û-(»4KÍ!ÏÄTZ¸ínï®b~Åš–à•«é¶ÀSE GÛ»÷rˆË‡jО£–)»ÊSŸbÛ“yJéš—†',Ñ~ËÏ‹òfüå@ádƒn¥lY¢×TÂrT u<À^osSùbÔ²rMögûÖ*0‡¦çlž‰‘(êx€»á¥-Fbõòãîzx’ƒ~‹¤”—ºò‡G@‘ÚÆ ùÅK².½µžq„,|Z.Ñ3e‰å¤Ø"C¶×Ö.#2æÕY‹·ì6¶ué9—~n‡Ô`ÝVYT¦B•“$é÷ûÓm¹¢¼GeÞº-ýµ<~ÿ™z­b0 ƒÁ`0 惜øZFež—àžxý›t×ôŒM¦5A,Öd5;˶tÛvèY—žëÔq.ëÒ)“°®*táØ®ÿéN£½½²L·É Ô™g÷˜àÿÀ*òtˆ§%7¥:yípÐvW ­µ+󳯼½ i#}@Dð)…S= OXãýæ7ZJ “6ÀQ.* ¹’Bâ%z’2‚ª¢â€£ìµ£T]qª\_¨ºx¤ؘyl^ÉCÇPê!Û=´­Ö"¹VMþ-<ÀÅ´j‘§f¦NŒPÉb^YE÷&gåü +Ssðʵt[à©"†#íÝŒ¹Dðð*Ôñ˜—™¼?36íQ 'QÇcÇÌ]M%ùêÌ¿nTÌ&‰O©M†2öE{ÒþM/µq¥âÕòü¬ y¿’]œá7qbÎd˨(’p7}ŒµF£t<‡ü¤Ç‡mpÀ,M²tJ·+†ñøE`c~q.ùÅ[ëáiGD Çùäüßm9:ÚG¡“f__·”Èx®ÎZ¢Ò.}òÎ8žS[·ë^ÚUmÝVYT¦B•“$é÷ûÓm9’x¯Þº):›šàÛïÈ÷î&Fe8 ƒÁ`0 ƒÁ|o@°È ´òùóé®æ  šLõAäæe·8Wlí©iÛ¡g](t\gëªâ:u“ [(Z_ÕoÙUmo¯\®[‚ä…êÌs{M0ÀÊÇ­"OóTÈM‡Ü`FL Fû²Ý[­¶\“ýåo7!mT`&=–B.z’ƒtÉmñ~óž–­jÁgûÖÂÓ­1$ï¥ÅI*%ÉMÅG¹kG©ºâT¹¾PuñÈz”=æc’I¥D¤šÓ²—CöûÓ¶ºɵêÌ?ì]\lÀâiq–…£ÊE"õÑhá÷ù *LÍÁ+×Òm§ŠŽ¶ïÞgÈ!.ªU6M0‹|JŸLÚö–Ø1ËŽ¥šE™Ÿl€#vÔJ‰h1µÙ2CØ d/€'Ùë½`C…âÕ +ÍÂÏ÷#9ïWü&ò³&1'’Ç‘<À~+0Öš|¥ã9™Ÿì©‡Úà€YRR|Wý’›‰ö1pÐö›ÍFMq.yéÍõðLkD¡^ +?›ÓF,aõÈ0ûúºeDƼ:KÉÖnã‹; l‡ŽséfÏIç´*qH–ŸU<¿\*'IÒï÷§ÛOÂ?þ)×Ö@ô^­©Q®•!ùA`0 ƒÁ`0 ó½áÆ ¹å'ʬ&_þôÓtWóŒM¦z‚ ró²Zœ+^ÞSÛ¶CϺt\ç¬ÁvèQ´¾ªß²Ëho¯,Õ-AòBuæ¹½&8ÊÉÇm"OótÈ D@¿§„ˆhœ§£}ÛïzÅX°"/û_¿Þ„´/#&„!7ˆéreBô@/AòA[Ôgîn.Õª2þôËxÚtKL%T´‰ßOÇ}žr\}wó—å Ê ZÕÅÃ0ÀÆ| š\LYvrž–Ü”ìePå÷¼ÀY§EòUƹžzàâ–Ù²K¼2' +”=æM,¼·É¾b~…©9øŸ¯Òm§J(ëèÞ¯S?h„£Ž¨ð°ã ä 8h‰³t5•ä-Ì8 µLöeÏùYú•ˆ°È€#ìõ÷éõ幨eåšì ûàïG³È'æŒZ6Ê}«xUƒäZ5ù;Ôñ“vyÀ"Í*Ðz7ë3Ã![h€aª5Źä¥77À3­ˆïožËÂcÈêCöÈ0»sÝ2"c^¥dkñŶCÇÍ8§¬«jò¿ÉCjy¥âùR5ªœ$I¿ßŸn Ì ý@9„5F™ äªJùò‰áä ƒÁ`0 ƒÁ`Òò‰*'¾Roß‚6›ò[T/\Hw]OÀØXÐdª'"÷Gd³sù+oÔ¶½f`]:®söpéÙŽ*g—îåîë¶Ê’Ê\$/TgžÝ»žvÄOXC½Tˆ§Bn:ä3‚ +ót˜1#Ümž¦õy¥K²Æ~µic{)‘GÂr)!—ÜtØMŇí’`îjZ–·pÁ±~äŒúÌ(µ¤hÁL¹è¦EžŠð´<`†µ^}§¹n©U®Ó.úÛ¡FxŠ‹÷3’R9Ì2Už(‰ž’} ånõQܪ$/X”ñq÷jxÆ?nIÈ)1Ūèh]({\0ÃûÍ£ë˜ÒçVšZ‚ÿ¾–n ¬Õ™vgGëb·U@¹gç& ;£ÿ˜íìùøqçæœóó;çû~gæÞ¿ÿÓªíË}© ñ¨[=q@:%Yî¬C“8EÃì“>Ø/E‡”ã­yëÒ#‚|¼ú·¥¡. %“2’ÍÖKrtÜ'™hÊ¥[e ïWïä¬\Š½úÂBö Ы'æƒ^ÒÇI†Sº‹½ +ŠËP·öfs®Œô°ùÞ=•B‘¶Ê'ñêUG#¸=[ýýü;û%¹±ÁÜ ögof¡cÚûïIÇðÆ€èôL£d¬Q: ÿ@5aS”§FRsçä£)Q¿%.Ó +ˆÙåéltöê^3lM”cÂ8~9‹Å²Z­ž¶À“¹Vé/®¢Ì,¸WQBºtéÑ.ƒÆø3•¥óUø6j1=|îGôå:22"‹)Š + +f­)ˆ^oáTðÔeqšÍqê²Ø١٫)ÃQ°%¾¤&Iµa'&è¬ëÒÐq}H9Ñ"™h–Às¼I:æÐ~¿Yò E:i•¡nííFÉšØ`nëó_e£=}P>Þ,k–Ž9Ÿî\¦ ¦•>h‘Эyèˆz¬U¾)kq°ÏÜÞmièÂI«‚™Fæá\Dç‹d¼9f˜lÉC +|}ÏO„‹ý!ó¸ðùŸìÎB¿ÓÒmrLg’‡Õï¹С=Ó­rHõ›ýuÒ" ‡ÏŸ÷‘IŒzt¨Sq¿E +éãüg$3g6ŽéÝš›ï¤K9TŒ8gäï7|À¢¨(4<ìÙ”ž +/ŽˆÅ)E.dÉ‹c^y]¼ÎÌ/¬à–'l‰Ÿú-ñ…å¼¢ +^I]Òæ×’u¯ÄFÅÈv¼–†ŠÑ‰dS¡vj—#«µÉÜZÚeȦ@GÔ¨Ïpë=ًˬñù뻹˜Û¥A69ê–Ç :ü´Êð´ +tÓÇ~›_š¶8ÒßûÜ+ÑÙbtT‹»lr×`·¥™d`æN:¦EŽÒ¿ÎMãúCæüHÿ¿üb5,FÝ:œX‡“;‹ÞÆ,mSâUŒ·¬²B~(Þxk°!Óëp/$0=Þmu^æïÆôoš2e‘T|êš‘\÷´ž)¾ýþž~£)†M}þº9J°âpb³Üy†ŒÀK6Fñ^ãØ!ÕúôÈp?oÇn8s#:¦Ã\§ÙÚå3õjcôêÌg7|ݘûRLHÆ õûìÍ•hÀ€Ûñê +—ß\+Nû‡qšSñ!ã¨U¡„3Š³{ëÓ Ô£g ã\zz y÷VïTâ=Ú×þ»]®M åGο¼÷%t6®Æ\èuÑeô£{ogÂiظÝHw©Vs)¶W²fÉË»DëÌ‚Eª? Ë™—òè][Ńae;EÊ 1¡Q~9›Í¶Z­ž¶ÀÓàÚ5:+ ß«IIèòeæ²¥§î\‚ÿУ£(_…(ŠŽŠBç†=ÎSàâű8…¢¨€oiѲ—w‰×›ùEñE …¼ÂrxºE4VðŠ*y%µ‰e;…ù›b#¢€¾8€=¸# Ñ =²©M‰lrdSÌŒv¦±S‰ºÔ¨wí?›$Ù1 âC}/íÉAFtDY0L‰^ à¶3½Jô6üǪ\+Šà±þ°+õQ—u¨˜Ud¨ÝÛ15!$vL‹J®îÉIåâÌ#æú³UÈnDÝf']μLžY¶Ö¥A}†¯[¤~(Ð9¬>K´ ýÃœ¦:¼ ϹA’}†íMYJ%eäŽ\½ái å—ñä8œGthÀp³Eª„=2}²&쇷)]öp.ê$v038v*°aÎÞ< Õ$†Š8þ—Þ~9Œè¨›á7*<`v™À´P#¸Rèp>¤J¿¯jÈæR~^|·lgòº:(R.Òr(U¦NË©ÐÊD¨Ð¢*Þ:3㡬dÙ¢H_ÈœÍf[­VO[àIAÃÿ—×Pz:Ü«ˆÏGW®x:#‚ÀíÛH&£á62 9hO§óä‹EE±|¼VCV+¹™2nº$*#“%ç®T<Ÿ¥Xòh¬”/É’q2¥8V)–$e„ù³€îÏžk–DÕ§ÙÍâ«„§kRìæ”~sꌰ[Ä}µâ«E§L"¼Ï¿t‘ïB?¯·´Ñ¬O>U•ôQ%¿¯F4`NqXR†ÜÃQŸµ)§LɽՂóÛDÖÒåña>~Þ^;$œsõ¸ñD•À^#´ˆõ©nôúÔ‹Ø^+:]%¬žß.zKûB¸¿7dâçµKÊzŸ èÂ>S²£rÔi.üt˜SìuâÓÕ“àOÛÅÍkcbCÙ@÷™7§:;â¬YØ_+dI´0ô­»I8lüR² ä9*-[ú·/®{ÚÏ·G¿Õ—lœGQ–Ì 8ó3['+ùöZ±ÃœÊœóCէĵpnB÷œEØVºœáã;ï¹íΰEØo‚3O¶›Ä;sL3œÙʬœß.~[Í ÂŠùx5H¹Ã–ä¾ÁÉŠÄ3¦ä—ÊnžÅûÁ0Õ0Ì' ¢&ò¸0¬øÙ/÷˜¶®;Ž_›—m‚1ØØØÆ` +1ø¿Hú4’ò`ã7˜—îº r-ê;^¾Þ¡>Ÿ?øý~·Û»2ÐÅ\Þ!ÜÞá÷<Ÿsùëè=§›L²µ­}÷¢`æ—·ÍénhlÞµk×›o¾qíÚ5®Kà!BQÔªÎÜÜÜñãÇ[ZZQ"\JW+¬’£½eµœKý…gÚÚNäÚãq;Q  ÆQ»:¼Í‹ïf ‰É…Ëåòø|ð€Ïçs/¤ìN¹Ž½åv@BÛ]í.J9"àñúáò¿ Ê>êCT ³÷H_›oOZfv2Ÿh*•¼ð¬ÖoÓ¸Ì*•µ†z­ÜVµË¢+ù­ê#[µ–¬\IÁ#Ò4ÉJeÚBIöñì ·$ÚÂ4ði®.-¿D¦Ð$Ç'€G ¡P +…8«†ïÁÌ ýúëTzõ5ú˯hf·]ª% ƒÁ`0 ƒÁ`8$ötzûö<õÙ§ÔPgÿHý럜Íéþ™šŠ’¤‘ Ѻø²Jeuó†Í;r­öl[Mve¦µ+dceÏÞ¼=gkÓzòiµXšáQâOš +§^Û|®Ïtª›üC/È0|îeý^öÒxªÇ8v¸ââ+ÖÁ6mŽ€ç•¾ý›÷¯\ùxòÌÙ‘p$›ŸŸˆÕÒ$«{9119 š„ß±å'—˜¸“à቉3x†ÂWÞ%– Ÿ`¢Ñ;@h|lÉp·\/ß‚ÄF˜þRÁ ð ö±ÕU[$P‘±±³çþ4½üÛ¡ábã“êDâ-Ù—^Ý>dúýó†Ó=F䔃«uú qÁ5=†ÑÃÆ?¿b w“ÛòÒˆx^®QVÕ”¿e»Öjϲ­r%’†½¬¬É“nÙ‘»µ1o“M!óÁ¤B0 +qTß‹oç¨K—hØWÏ_ ÿ}ƒbv]êîa ƒÁ`0 ƒÁ<¨¥fÕØcÃÔT”$ AH¤{k~Ç ÎÞÒÆ=ºÆ®"PCP×عRÁ"tw®µû oŸ¾Þ¯Sç¥B¸Z,yÉL‡[é÷èZz µÇõC[³Ðé¯Aã¡:úWõô©–™Ÿšª”DžþéϾšåz%0Š¢nݺÅõ,¸áëoæw¹öëDÄÔJèHýn==`§j#úkÄÚäXÍ‚SÀ&¡íô;õôéæÛïî ƒÁ`0 ƒÁ¬€Z<´¢8®~|…>ñýá‡ÔÜ·œÎëþ˜šŠ’¤ IºpÛî|ÿËåŽ%]ºÆ®¢† ¨˜i—ã¬Z»Ÿð¼¨ßبɗ@¸Jœ8Üg¢GZèÏÑ5t-Ý_Cc;µËì·ÓvúíôPóõŸYjÕ„¶¤òê—3\¯ÄCgnnnvvv~~žë‰ØU"®m)¥÷Ò¢P5rË[ð' f†ŒŒÉšÑH«âzƒÏY×L4³º‘øϺŽfIvŠqÔHÔutÆ‘]i¡´çìmyˆ£î wÉþ>ù•Þr{nÏýµß“œ¾’âi.Rû3ëÏ/³¼LµrÃìµU¿ÉZ3kjô;RHÃÂÂDQ”»o¢ÃM._Á_|oÞ ØGz~N>¹§øù7©$ðøî!ÉÍÅAÁ>µõ–{b¯¯¥¥…eY„ЄɡKÍñïmJÎ-Us4/0œ@ó6†·ÑK:e)fVVjŒk£'Jç+¨³YÒÈãÃÙv½Û¡ëph;ü_*½{¯®Ó¡÷È$dzïü­é]”@ÏùæÎÃÀtpw?ýGxu±oÖ?§¹¹¹ººº±±Ñçó=7ºnó õ¿»+W®¬Zµ*--íøñã^¯wX.߯†8?ô|þË|+¼øÜýòY‡W—WŠþñ†|nöÈr×JÑ]ºN»”·.“|ÊuÊ*›…ÆŽI1Ä®Ü8{y©Š/H’B: ›LÿÌJ!µVÎδΊŒVH!¥(JÅ_Ø‘âïþÚ‰,ÄcǃܼÕ{FÖy¸ß·¶’ }á øì—£hçêt:Y–EMü•aŽocrn‰Š+ yÍ o“Š¤Ú\Ää¯××&Æ&EHÃ#ÃCÏnšK8ß!£«Vë²kÝ­Ë¡w;t/”]ßîй캮ý™äXöŸ,Ê™<“I½uï{¹;ñÖ]¸p!==]„»wïöýãQôcy…—î¥ÿËÇïܹ3::züøñ;vìðxþi¸»°.¯(žBÍÕÒhöÔÚk—¹ý¼¤Œ¸ý¥õîÓ“cœç°±tA + JÍŠ]¹aör)¤B' –Í~e)f¬³ «”ÓcRH)ŠEQîn¼‰¿ýÇÅb„ˆRI®\í·äþ|³@`‹ÚöWU‘¸8¢×“«WåžÒp:,Ë"„"&Ë0'¬¬Ôä–¨8ám4/¨x[à`°21ùë5¦u‰ñô$ixdxè™MsÉ ÎwÈè²k¥r;¤Ò,×^ÿ_Ï>=9’ýtÏ’ü$J©N½óí#¹;ñÖ?>::Zê•Åbinn–{:#çöíÛ[¶l™:uªtïÁÁÁUUUííírOj¤y0ùýr!aúç‡ÉäO9ž:C #ƒä¥òîÏ”’ÒuÌT–6…ŒIÍŠ±Vh–—ªx!‰’†Šg_HóÊÕYk”Qñ +©ùE‰¢(w'^–VÜz›¬[Kf’5«ñ7×ûNõ¬º€üüXÒÙA¾ü ~ÿ}²g¹ÿ¯Q´ku:,Ë"„&M—aI°VªsKN`xÍ *Þ8¬ÌELÞzi]b<! =³%'8\otÛu.»Îíкú¥uíõxöéÉ‘ìgµK¬t˜Rz÷Á#¹;ñÖ]¼xqæÌ™R¯¦M›¶}ûö¶¶6¹gôaÜ‚gÏžÕ×ק¤¤ €òòòû÷ïwŸõù|}ïÆöz½Ò•‡÷²¿P!–uテ¾þ0™4äxê ív­Û“y¡¼û3¥¤xŽseiÑ($(Õk­Ð,/UñÂàÁ|9¤åjã匄p©ùE‰¢(w'Þ~ú7|Fª> GŽàGþ%"ð[Á=Ï€¼^ئbìóIå?=ûV§Óɲ,B(brX†%ÞZ©Î-axášT¼ámô e.bòÊ5¦‚¤xf’4<2<ôÌF–œà|õF—]+•Û!•~¨êÚ§'GMÿ®]’Ÿ¦T§Þ}øh„oã‘þŽ.]º¤V«Q€B¡(((¸~ýúÏa„Ý»w¯¦¦&&&õ + + +JNNÞ¼yó®]»jkkwïÞíp8ö »Ý.]pÇŽ[·nýø㥆wvvÊ݃Lsk” +äü(…4ðž:C #C¤¯¼û3É‘ì®c¦²´(dÌc¬µrvn±?¤Ce³¯r +é媬5ʨx…Ô|Š¢DQ”»¯w?°×G¤uµûÕhZ\üŸðo^1éÙ°Ž®mkKK ËÎCELË°ÄçW¨,Å /0œ@ó‚Š·1¼´r +éåjSAR=IzvÓ\ÒÀû]öe.»ÖíкöêÝŽ—Ëe×¹í:ïþLr4û§]‹r•!Jõœ;ù{okkkjj:xð`}}ýÉ“'ÿ<ÜN:ÕØØØÐÐ œ>}ººº:** +õ + + +JOO?wîÜÈßøȸ|ùr~~¾B¡@Œ3&èEÁÃAºŽtåî;v¬ôé×®]“» =ºYÌ­V*ó£r‚÷ÔÚk— L‡? Ýe×u'Å·OOŽe{Kçÿ…¥cò+5–•R^H*žÏCZ¦2®Mœ‘.õ„¢(QåîÄkzyŬ´€ìpÏÞ5°Y•žžüDnÝ$ßçU;W§³…eç!„&N [jI°V¨-Å*ÞF¿²r +™¼r5·ŽŽ£'J燇žÝÄ’ÏsðQc‡CÛáÐw8tî½z·ãyõüÓ¡õ8´¾zò©éÇO~gžóçÏojj’µ~Ý-ñ’nZ¨@×jRÈÉœ®?:ìºÞDè]v]wF\RdööåE×éÐùê2Ég¦ÎÃÆ’yQ(4(Õc­Ôä3œ@óÂ+CJ¯(W×&F%(¤†P%Š¢Üýx-¦aâóI+*nmÅOžv¯´3½K/ ¿ÀÕã!؉ÕRXH¾}0Šv­Ng ËÎCMœ¶Ô’`­P[ŠU¼~eå2+ÊÕܺ¤¸¤ixÔ„°¿nM#çóÉ)3³ˆh  ø@¦÷€¾»þÃ~½Ç6uÝq?Ží\çiXL„8Iíkß<áX;„8q°]'î¶fäå€c(êªI“¶‰Vª˜´A«¤pIC££Ý€­ê6ቀDÙfWc¯h–Òh@gŸ³c“P +Uí +â´ß'?ÝØǾÎ9ßøw¤xP{M½UÁ7´ëÆÞ.µ«QNîâë7oEí½½½<Ï#QI¥ÒŠŠŠ“'OFùSc|ñâŵk×*•Jq³eYöÀt>¢B¯ÿŤÌÚÈ)Ñ•-<9^O~³švÞkÆ{LwhM¶Ig%¦õN%Ùj“}Õä׫ÉGuþC¶MKæ!YL~U†sc^­KgmÒYš´áš”u¸õæMª:‘Â0Œ â¦)ÚX‡‡ñk? ……ø7ðè¨Øs¾ãÉËø8yåŒÉËû$ö¼¾¯×ÇóÅ!¥Ja´«ÎîÒ[›Ù°ekÑ9Üœ¥Q›©ý½=-™9ù“rêeò‡5d y·štU“}ÕD¨š¨}¡¢ƒïÖë·6òçØÛ%Ö ôbAɵOG¢¿öÓ§O/Z´‰mæÌ™íííׯ_~Sa```Ë–-™™™bçŠôz}OOO ;’ ?!+×´æ&£ë?ãIïwÉaé6Ûd_Õ=òx§˜Iw59d%Çø=ëKæ!yLž)ݹ1·¶Mgi¢m¨ פ¬Ã­77hRÕ‰4†aA;‰…öÖk×A¯2‘7ÄžðÕðð0._‰"³Täø_±Øó‰œ×ëãùb„R¥0ÚÕNgwé­ÍlزµènÎÒ¨ÏΤ·«b…Æüÿæ±]¦›¿(ÜV>ÒQ~{­•´F^;ʇ¶¶‡w¬ü¬³òDû‹lÊÿvÅÍá‘诽¿¿ß`0 i@*•ÖÔÔôööèçðlíÙ³gÖ¬Yb'Äq\WW—ßï;’ º'8קHÐ9w…ª¡ŸþÜ0¼Ýx«£üVÇD›’—K辪Õâ¿_šÜW¡8€éߺMLU˜`çÌ!'O=G§V¯×ÇóÅ!¥Ja´«ÎîÒ[›Ù°ekÑ9Üœµ‘ÍdgÐÛbemËÒ®_ðûuEû›òµi/:æYøXu/|¿­à@sÁÁ–Â÷]ù¯/OI’ %e¦¡Û£Ñ_ûùóç šT*Õ¦M›®^½ýž!ŒñÖ­[ +…Øqq×ÕÕå÷ûÅNeÂ÷[Û¥­[¬:æ.:ØZÐÓœ¸­èˆ{Á“mìÏÂÖj-¤õaû‚_ÕqüœD&9v‰5³~c^m[„MÊ:Üzsƒ&UHaF±cˆ ý&Ñëå’…t_Ň}ÞÉ}õ9Ú_ü½ƒ­B°ióp_ŸØ³ù¼^Ï#„”*…Ñ®vz8»KomfÖ­EçpsÖ&Í|­MÈ¥…L/Idb’2eœ<9Nö°”ñreœ,‰‘ÇËeŒL*—NÜVYU}gl,úkïïï/++C"‘H$¨TªŽŽŽñññèGñ 9sféÒ¥_¹Ø'—<¥´ZmWW—ßï7LBÖ¹7>˜X¬4†‘KãäÒ$†öí‹Pw„êÑf¡”+UÈ¥²˜šßŒYq+ÙNOnm›ÞÒ¤ IY‡[onФªéßeFqÓˆX04|õ*^¼˜î«¤°ˆüëòä(&“‘ÓÂèbY<À¦¥á¾¾çèÔêõúx¾!¤T)ŒvµÓÃÙ]zk3¶l-:‡›³6j3µ3ÐÓ©¬2ßû,úkïïï7 O9ùÈI$’¯CVVVggçøøxô£x†7oÞœ’’váayJ999‚ øý~±#™ÐæÞø”+R¾ ¨¨Ëvzòh“Zš´VZaš”u¸õæMª:‘ÞÎ0 Dì"‚qpÅW®âbº¯âÂBrùrp$TÀô2| W® +`gÏ&½'ÅžÍ7àõúx¾!¤T)ŒvµÓÃÙ]zk3¶l-º:7giÒÎggÐÛ±1Ž…³ß²j^¯Èl]–Þº<½myškyZ+½®H§|°,­mÙÄà«åójR×qɱ-)3 Œ…¦ƒ£¹ösçέX±Mùùù»víŠfSäþýûÝÝÝÙÙÙâFš••ÕÓÓƒqT¿T_ã{­¤Õç%¿¹:ÛcÌp•Î›hG:¥5ø€ŽÏ£‚Ͳ,­Ý±¹&çÕÒ´ôFž$/}IíÜgwé‚=ضIY‡[onФªi  v ‘Á¡½à“O—K÷UzÅ>~ðBtw ¼c£#„SRðŸÿô\½^Ï#„”*…Ñ®vz8»KomfÖ­EçpsÖFí|­’Þ>'‰ùãkÅäXmàÀê{»*ï﮼׹ê~çªÏwW~©èàîà ¿«š¶]y³hi +Ò,\qcðNô×~öìÙ’’$6™LV^^~üøñ@ ý¦×h4>¹ÞØØØÄøøø¸¸¸øg$!!~fRRýL‰D’œœ\__á±c˜@ÿµ•õ­Ùqè?. GÖ|¾¯ú`›ì6ÑëƒzØ&÷ƒƒ¦{¡A¿`"¿{i¼ÓÔ\ð’K +«Óë7äÕ¶›ÔÖ¶IY‡[onФªiò  v +m¢—>Æ ÝW Ë’/>ú +0MÏ©CCÄb¥X<7•œê}ŽN®^¯ç‹BJ•ÂhW;=œÝ¥·6³aËÖ¢s¸9K£6S;ƒÞ>/™9ñ£râer´–ì7OV é6Qô)ì®!=5ä=+ù¨nä—%Ué(» äÚÀhô×Þ××WZZŠ¢N"‘<ú4;;{Û¶m££"$0¥îÝ»·sçÎŒŒŒÇÖ>wî\žç—,ùûuÓDšÇ|ÀpJ.‡A‹‹­H;…*ƒèƸBŽ©Ò7( +u“ã …"jô£g|Yõþ0ñλï\qÁD8cü×»äöâZÖø{ÖXa]ÖB‹Sú<7mÁ /Q;b~Ÿüx˜>Ã3<ÏÓùN2KRSSSRRø LÊðáÉÉÉþãÄÄD©TÊ_ÿÀv»]èmÀþ'„㌫Ã-èœnÓb12-eÕ'UÉyeÞæ˜Æ )µ¦"A](KÃùÍ'I’eY¡wcÐ÷ТTÌ?WiýpGèé# ß·uºPc#*_‡÷íCöGBÏkl¶6šN#""ŠÌ4HŒ•JƒE¡3ÉõfjìÊ)¡ò+”Úbj.É…4o¦ñ·ÏIM_ ÓW«âjU}µÞoùz^òU÷ WËô³ +ŸÓu\ªžKÄ'¦?løµß»w¯ªªJ"‘ˆÅâùóçËåò¸¸¸yïAþÊJ¥’¦iþ#¥§§766ö÷÷~ùqõêÕeË– ­—ßFÓÐÐpëÖ­ëׯ·¶¶¶´´´¾µ+W®\¾|¹ÙçâÅ‹.\¸víZ{{;B¾ŒúZa¹1^ž[?¸»#›ãf³]ÕŒ?}å‹IÍÐGæ¥/Dž#+q½ž«S—§Í&B‚dÇ«’óÊÆM¨?¤kÊÔ…2±4œß|’$Y–z'&dà ëþ ?†+*ð7_ãg?ûÏ ,ü· `üêyúQûSôýð½Q¯SÈ9M’ÍÖFÓiADD‘™‰±Ri°(t&¹ÞL]9%T~…R[LÍ¥"ùáÑá!MSq½¾ÿX¶óp–Óʸ¬|ë=^._?_Ü—*|RÛuðS4(>q±½ý—À¯ýÉ“',Ë”””X,“ÉTüîðW3›Í¥¥¥›7oÞ¾}»Z­ #†‰‰‰Ù»woWW—>¡±'<õôô:thÎœ9þ%ó~ÿþ}—Ëåp8~ÔÝÝýëä zþüù/ƒ:;;Ÿ={ÆŸêïïzõ¯¸1^ž[4:ñöd|^ÇYÙ{øOÎÑ2òZ^ܵ >­}y,»,m6´ ;¶ 29¯,aÜ„úCº¦È÷ãm{{Ð_ …ᇧЫ«ÍÖFÓiADD‘™‰±Ri°(t&¹ÞL]¹¥ŠüõJm‘\BEòãE¡Mh|F‡Žf÷U3.+ÓW­rñ¯W–¯Uqµ*\§vXW¬U„ÉÙÛ;…Þ‰÷®©©iöìÙ"‘hëÖ­v»Ý߉Ј›åµ™§OŸÞ¼yóÁƒG蹚ãŒKzyÏêÑ1µËšå´2}Õ*gÊU=¼—•ñ»¿Tá“ZÇá #&K\ô¨ãÙÛ¯ù¼ýuÞ“Û·o—––îß¿¿³³Sè¹€@s#¼\ÿ—øp¢í¯)øœž;²²×›yÁGf¨†"ÇÈ]Ãàî”®bi ´PýÉÚª¤Õëø êM|$¾%ª:“<·”*XŸ¤þ³,F·”$I–e…Þ‰ ò&ݸbc½ÏÕ¸xô¯žt^À4Рîn¼o¢i´ÖˆîÜzZ“`³Ùhš&â÷ ËÈ•|¾19o]‚®˜Ò™äz3¥7+|í°2y{ø?0XÆJ¥ºP6WÁ…6oJÅõzÏñl§5Ëie\ժъqýŸýrjêÊãøU o5B‚„(!!¼•·•GR@Ô¤<  Ýê·Ýά³;õÕq;»¢¶`PÄÇZw;uÖGEyT¨³Ž³Î(™²"X¡@å†À9{n ;Sš°ìvÎg¾ssrÎùóûÝs¿wæV$¾ªHœø$Önù8:Ëß~ üÛÞ~ëkÓX¿ÔbÐßßÿäÉ“—/_.u"˜%ÀaTzî:7Bý›`øç7Ç+“u'¶v89Ë)úS&$¥#¯‰“§’à…4CMêž&á`&eË÷ ³JIù²BKoòç»™tÇÛÂéë‚LJ¡PT*ÕR߉€&¿è‚åe@"ûßííKƒÁ`0 ƒÁ`0s&A£<ú¨:®]ƒKÔhmm‹ÅA¸{Qã3}e¢¬ÒÀôB¾¬0@V„®|YQÀ,™zÒ 2‹ùòw‚RóÖ±×y pš›Ãõ²pø—7ÁùTCE¢¡" éUEÒØÉYzu’?™*“áÅ´á7eríxñóž~›—6>>ÞÓÓ388hó•ƒA«ÕFó_ÀÒæƒùAé\ÆÜ”¦p#þùAü,ÃX)}u"ñÕ©¹Ñ#J´ô 8 /§Χî‘0 »P);gPV)?½p½É¤¤Lmþ”,ÜšU¸ó—AÉ9\:Û™”B¡¨TªÅ¨ÎæHÐëÁ½{ ª4Ü££æ~ˆƒÁ`0 ƒÁ`0˜ÿ€ùKunßÿjµZ,᱊’$ç½.ÿ•(«DUˆ”¡ ÈPò3”3Ê,&•U(ß/*8†z8ë=Q8ËRÿëHxg'ü<VKÁ)P¥LV%ƒÊ¤MV&ƒ*)<#…g¥ðRüÛ6MEL6w9O(yÞ3h“r€ sãÆ +…B©T>xðÀ&‹c~®LLLtvvööö.ÞãÆÈvy‡"`ÝNxYUÈ#Ò‰ªä‰Ê¤9BÆ™<“ŒFAu +¬Mƒ7³'¯ÈÊ7²Çåa2NÁPÅþ ³C3‹ù&‡šLZLõ ¡¡m¥Åþàüwö¾Å£³]I)ŠJ¥Z¼m ˜û&?ØÄ`0 ƒÁ`0 f ±øz=߿߇ííprrIsZ­­­b±˜ U”d¹ñ’Üòì½Âí{Ù{ÛJÛö-•M*IQ&*z/,CÉgóæçDwwwmmíÍ›7 Ã"ma„0!«@èNy%ýÝhö2ª}˜ŒSô~ø®òà×&Ý#È* 4Yyun߸ýmá®òÂá[óx4gdR +…¢R©©@[È—ë„>{>„½}¯_µ¯ ƒÁ`0 ƒÁ,1æoT ×ò2èä 6ƒ¶§KœÓBP«Õb±˜ 7‡ˆ¦¬ %Ç?q‡_²œ›’Ó*æ +&ËÉ )r^Ú[ë7¤pVÒPøJgû?åð{+Þè>¾ù_¿î8óâH\ױخâ,õâhü·‡ãÚ?Œé8×ó‡øëÅÜgB ‰í~9lâ?~¬P(¨T*a‚B¡(•Ê§Om|.Z­öû¾¾¡¡‘Ñíð°F3¢ÓiÆt½IKJ£AÒŽêЄRš) £«õkM“uódŸÖ˜iÙ1ík¡(^OJ«ÕiPiæ¼@åoN’Ô¨é¯VCÓiÍ£cÓ…Í’v̪Ý5SWͨndX;4¨èéëéïîþndÄO fïÂŽŽŽ}ûö1ŒÚÚZT—åèLÚ­Ì?¹Å+–—rý¾¯H|z8®íw1Gb»ŽÆv³ðȱxRž8×y8öÙ‡±í‡âúþ¸¥õ·QrpXÆÝ@C¾KQð¶l÷K’û#?ÎøÔ¢LÊMÚÉEÓRóÖGlazx9š R©¬.ç¿yßAWÌÌ®n°¨öõM÷Ohý¡`0 ƒÁ`0 c–Ÿ¦`x¤¥A‚>lpÿþ’å´pÔjµX,&‘ºÜ?heÄfŸðzh=<–!ŽcJâçJÏ c†Æ0¢’ÕnžŽ(ÜÅq¹2šu¥Dt¡(è“\~u¾°¦(èÂn$ÑŒ.îÕ‰Îå}š'På].ˆ]㱌ݘÐ;8be!LÈÐÐБ#GØl6a‡Ã9~ü¸^¯·œiåv><[}öó¿~Qw»¡îˆ»uMw[šZšê[Ìj®¿{õ×Ýn¼ýeÃk¡ù·îÜiª¯¿×Pߌ¦‘Q?Z _75¶4ßkinnijBá ˆ]¸šQ9dEõSu}ÕÔ< Ù6Møš”­·6ÝòÎÔßùêö­ú›×ë®}qëÒÅ+•ŸV666FëO] CMMH$B •JÍËË{ôè‘õDz£ ÔŽ öFz]- ®ÌžÎV +k‹fyÄ¤à ¤S‚Ïæ «òUy«%!§s„›8Ä2‚Æó”$°Âc˜&õ–ijÄS oÔÃf„Ç’£þ¢N.hg‚B¡¨TªEªÎ¶óûõ›o@X@ïÕˆØÖfî·…}1 ƒÁ`0 ƒ±–™Tòg`$&¡X¸f5¬¿»¤y- µºU,ag¿|5ÓŇçAg¹zÑœ½hN+iÔ•kæ‰FEC«Î4–+Mf»8RíQ¸ƒý²(Hïô Z4oÅFÏH®gäZ_øyZ*ÒoÅ&®WÏ+Q°*GB‹ò¡¢Øˆè7†F~Zþ`ó߶¶6¥RéêêJÌÃÉÉi÷îÝ6¹o:.?¿ÐÞÎÞÝ݃ãÇâò™¾þ _$:‹C÷™›ÆbÓ¼Ùkþ“X +1N‹Ãð±\C.8#4a­?ƒãÇ`2Xô5Þ,¦Áöc˜GÙ¾sc­—iSr_öZ†ß:&lj¶fнét&“Å\Ëcr¸(m iNªVÊ—ÁB7Ó—Æö£s¸tîz/ðßì—yL[ÉÇÇ~\6`㌇ $fM'Û$Æ'Æ&æ2BÎ&ÝÕªUú_•UÓ4!d›XÚ¦Ûª»UµIµª*EŠZe•¢ü`ɵÙFJÒ( 1¹P;¯ól0G  K+ÍG_Ÿç½™ùý~3ß'=aº0‰ÍfoÙb¾wï^ô›øèѣÇ …ÂÈ!a±X&“éüùó£££ÑÏ?o³Ÿ>íÂ8¯1Ó¢M3夬Ïá)ãî‡=’BKžR,O^—‚¬dÖ"§dz +3D¼4`–ûi›H#6iÞ BÍ&1­ H¢¶’ö÷¥{·Ê”çþÌ–—`•‚›gLC&U “jærh²\“¢ “Õ…«HcºDÅåÄÒ ",y^Ë ÿܺI½W  H-¿áJF†Á`0 ƒÁ`0Lˆ©_§0„®Rô EbêÒ¥‹iáôõõ E€$>±¹\^·/¿ÒOº|š2Ÿºl²ÕN‘ÚRe«¶¶[g­U +¤‰h¸ ‘snWü²âÍYçð ˳%/zJž÷ÐmDèï3ÔÒw-/kÿþ®Û?_mJ¹ëî>|º¸ø!߇»wïvvvòx<ðNº»»ïß¿eÝ^¼xé°;Ñ„l«pSš§#·¬9ÇZ' Ëâ•E®Çå•Òšì‘Oú+*›wª&¶ÕI;åžN•­N–šÇâ0‹-‚š.•Ë—z@J?ã•M•è`Æ––úÕ]ê-Iª€@‰Çp˜Óª;Tå­Jk=c£#—MWKO– ¥¦p4(ÜmŠb'ŸE©Xyý››Ñl_0`aVüúë•gôõõ E€$~ìæ +yÝ^½Ç¯uùÔîfµ»IƒÚ²¦i¢ûCU~Mí.£>W¤ä¡á.竽êË +ø™s´Çü¦×2zÊòæj­S5†ú{Íc'-ðŒ•ú“ëñÇkKe@I¾÷݃'‹NáÁƒ‡JMMó&99ùƒ>xòdñ‹¾zõÊét¢©bã™Å%"ïžüê]]7Ͳ •]UѪ©íÖyü‘‚ËŽantIëä{üäø–-ϺaU¶i¼{ô.ŸJ¬L¢c­5gíØ—¿­ƒtOŒå ¼…n+ZÉšÎ<ÛIb‹7®ßZÐ~AÃÏŸ??vì˜B¡Ÿƒ1×!a±Xv»ýâÅ‹3æ‰L5ï¥év”¢Leõ¹ à›ò‘Mƶ׽æÑM¦y¤w†,Ôi+õ…ûõ§ŽŽ¢LÃ,°K¼{ó=íye>Û)û„¦YUSå'·ïÒYkrÒ³PFA¿ÂÜþ®]‡Þ«”.®t4 ƒÁ`0 ƒÁÌÁãÇ°ÄLÀ +ÔÅ‹p¥Ã™?}}ýC ‰»¹BîíÖU¶i]>MY“úr5jÊ[Ô5yÎz•T•Œ†gp9_í.¢>wÿ©ãÕ óË%#=–YõªÝ*=e¥Î:ŸþÊTžÃÎ%×üëßç-„3K{õêUÇæ ƒÁ@-RSSÓßß¿¸ºŒŒ84O\"«Ø"ªíÖWùIW£êÝu‹^îfͶÎ<_+Êæ±ØL“SêÝ£«lEKk\>µ«i©Ÿ„P[Þ‚–&Ñ*2u +Jœˆeo×îÖ{ÚɲÆÿr`–$q”µc§‚Ÿ$béÍ·±k\.wþ§…$ÉÓ§O ½ã·QŠ2¹rÀµõÔçåo>±†<ÖìN ©dôd õ{盳N¿1 Ä0 ìâía“6¢}™Û¡>Õø–uäÙ¼9™ÒDzË","øHÑE†P§£€¤ö][é 0 ƒÁ`0 ƒ™ƒ‡©m†ÿa¿ÜcšÊò8~ûÀ–E”‘X¥-¡½··e†¡F1”iÅ[ÚKP̆•¶(Î_š]Âþã &n6´€Æjdgý|M¢‰úÿ8h #ºf¥f1¢Îà£Z¸gO[_, 8nÎ'ßÜœÜsÏ=¿çI†O??üÀ‚ȵöcÀçó©Õj ÃRRÿlÌÚîRk } ®·É v +b /߉W6ºj™ÿ.OO^Ö×¼|o`OPwIÀ­™ðh™X +DìÔ‚“º'ÿÜd–-Ë%¿¸{ÿá<Œ÷ûý­­­iiiؼ€ ÷íÛ÷øñãylÍ0 EQð'Â$Þ­¨Ê•gªSDƒ6ºÅQáTZv‘âµ+yŸO­Vc–’*,6J­MJSBo#  aáû늼³´C^Ñ@êjä™x +\žž,ès©Á)={‚b<š€GÃxJžÆ£}KpJìÔ‚nÝ3÷f+.È%¿›“Ù“““W®\¡išÃá`¯Ã‰€Å"æÇUUUsÃ0EÁ?$.çnY›T0n†hÐìoí}Š0ד§B"[Éãs¾ÔI¶ïVkq} ¾[ëmò™1íÀ- $í r”©ÐqA"ýW"«KeÙEjð¥òþl€‚õf®Wì¹i™\±X:|óöœò544ÔÔÔ´råÊÙëá·ÈÏÏïééyúôé\ëd†Å&ÛÚ?`7þžNÓÁ#Ú€[3á +V¼T°v +ú®ÌY˜%pò) Œy¤ØbÆ +ÖÀË2(wà JªZ¶&kE8e×ë· KIøh…üôØ°Àsuc!ëüuêC†@ @ į°aE¯©Ož€o¾aI’¥i0xãC6|¾Aµz†a)©‚b£ÔÚ¨4Ö;þNÑÜâT–ÕàRü¸<-yY_s8UŽSŒGóÜ­aÜ%ay´¯*С³pêÔ‚“ºgîÍ•¸0W™?rÿÁœÌöûýmmmb±nÍápø|>7<.‰Ž¥Riggçøøøœ `†¢(¸\˜Ä-,Y]yæZÒ`‹+t ”©Ž¨p’Ù +SDeV5«`Êô6ùbïK;‹“¤ŠU*t\È_¿%ÃêR™ë—Æq¹©NAÛeéžX$¾y;þdƒÁÞÞ^N—!===99™ËåÎ^$B¡~¼jÕªÄÄÄÌÌÌÖÖÖ‘‘‘9I”ÈB|e¶g'b×ÿ–NÓÁ®­owGL…:¶ÂN õ”5f` œ|JRÙ¤„5;ã¶)£ªek²–‡S&x½Þy¸°ôDUvô¿ls3€çj£“ýÏÝÈ«ñD @ âwAôš +ï±LŒ=fƒÁèòêó ªÕë0 KI¥ÖF¥±–0ØñwŠv৲l‡\*OËÓ’—õí.ßëÙãÔD»6àÖ0íš«„ KêÔ‚nݳöâJ\˜K~~wt,~›ƒÁàÅ‹÷ìÙc2™ÌfóÎ;ËËËÅb1ÙÙÙp\âp8à*ƒÁ°wïÞþþþééiÎd\¹c†¢(ø7a·°Tduå™kIƒ-®Ð-P¦:¢ÂIJd+x¼qãF‡ƒÍ +ü`Ó¦Mííí.\èëëëîîîêê:yòäÀÀÀÔÔTü60 CQü¡0‰[X*²ºò̵¤ÁWè(SQá$%²<§ˆÊ¬jVÅ™²Šv' Ÿ9ªTè¸ ‘¿~K†Õ¥2×/ãrS‚¶ËÒ%<±H:|óvüɼzõjÿ;w®_¿~ðàA‚ f/•mÛ¶õööÞºuëÆ—.]º|ù²ßïgÙy¶v€"ú¯k“°Á–Ï`›„Ž”Ü%Ñvüv³„;¥C;%ØS¶«P„%póu’ÊF¥©–ÐÛäñ¥LAUËÖd-§L ðz½ó³ɉéè»é¥¶@ @ ˆ˜Ì\]§§@o/ØUŽt§OØWf~çø|ƒjõ: ÃRRÅF©µQi¬% vü¢¸Å©,Û!—ÊSàòôäe}» Ài{‚bÚKž{4Œ§d"üÔ¾ª€GpC•LuiÁ·e¿üãKS?—,}8'³§¦¦&''C¡˾ˆ´ßïw: جp¹Ü†††{÷îEWMOOƒÁ@ Ÿ3¿Š†a(Š‚?&q KEVWž¹–4Øâ +Ýeª#*œ¤D¶‚ÇãQ™Uͪ8S¶@ÑÂâ$i‡b-¹ +:.Hä¯ß’au©ÌõKã¸ÜT§ í²t O,’ß¼={‚^Í&ÃD¿úæâÅÿ±_î±M]w¿öub§É0‡@â81AŽï½vH‡ƒ›—M¢4~\°oýÎKãÇcbÈ6iÚÖ+ª¶þ7 ‘&p)šÄF¥ªi×N•öb*tÝVp¦$¦Õ!…=(¹äqÎŽcZ“°K¡ž¾‰åÇ9çþß#ýþ`6›o•@ píÚµ‡[±üy„›Ûò‰‘Ô ›LØî>}ÜòˆAÒË<ÐÇ-³',ðìžé_ìŽì,!rÄ5¬joLRrâT-mÒ}4Û©)QdJ&•ò<ÿ‡°ú€;wàièï¼ ¿¸—©ß㘃Á`0 ƒÁ`0˜•d~NÍNª7>V+ Xª/>E³k"1b0Ô±~£´ÙUáëѹ”3¨]R\Hëêöø«Ê©õhù–uÒ÷¿k„ïzá9Çìk–™~ëìkÖé~˽Ö‡5Óo™ë·€+xÝßä>ÿ¹ÉU)ÞÆ>¼)07n:tH"‘‹"‰z{{§¦¦—N§Y–EÊòÅu6¥/^í 3ÎÀ²R'Pînª=ʨ4ëHRdbË;zõ %sªVî\.Dy£ ¢+™B¸4Obl-õÅõžÈê^å ¦XE–)+ÆÇ&–Y)þ‡/\¸ÐÜܼx«ÉÉI}²À4€¦=ߢ×cGwÀw<àÌžÙm³ýY´="ô!r +òÑÜ€ž¶Ã!×ôYGdg ‘#ÞnWíU£p´ÎÀÒyóî£ÙNM‰º S2©”çù'Ñjpõ + é̽j4‚Ñѧè^Å`0 ƒÁ`0Ì׿USIP_Ñûuà×ï®éC=‰ÄˆÁPK„\!kq©}=Œ+L;ƒÚ%Å…(o”qø«ÊµëÑò¹ôw߯ƒ¿ï€C.ÈÛà);<Å‚“¶¹Áƒvˆ„¾âíð—øžçÎñ&÷VÑ6ñ×ÿ%0ÉÉÉH$ô0"‘ˆø +ÄbñþýûS©”ÀãÒé4˲hCY¾¸Î¦ôÅ«=aÆ –“:òD¨ö(£ÒÈIRlbË;zõ®ðjœ›­8¢+™B¸4Obl-õÅõžÍ­|à\Hë ¦XE–)+ÆÇ&„”oxxØl6U“déêêJ&“ûÂûwÄ „fg'#'þþÊøÛ½ðOÙSÀ)+´Î Zæe— œ´"ïd|tš…gwÃ÷½3眱çJ‰Ñv[ʹ»›røµKöJš7J³šuA¦dR)ÏóÂ#Z2i|J•€ @e%üðÃ_`0 ƒÁ`0 ³æ²Ó+úK¥ ¹93ÀnØßûÍZ?ÙcHŒ µAȲ—Ú×ø´3¨]R\ˆòF‡_[®•£å› +rߊí€C.ø+ÇÌ€eî¤òvxÚ_G²?Ði;à­ÓVpf7|ƒûäpM£‚¨ªiH~vK` “““$I’X‘HÔÓÓ“L&—N§Y–EÊòÅu6¥/^í 3εœÔ ”'BµG•FN’b[ÞÑ«w…WãÜlŹ]É¢À¥yck©/®÷DhnåçBZw7Í5Å*²LY1>6!¤|ÃÃÃ&“iñVéêêÞ' ÌBh﫤ĥïPðm÷ì™ÝÈ&ठò¶y›,½µfOÙæ­sèo¾p»ßzv !ËÙnSùbzw7JxÕr’æÒl§¦D])™TÊóü“Šh5øèOp›&s¯j4ðÒ%˜½lÁ\öƒÁ`0 ƒÁ`0˜µä¡Ùܼ ^ì¹¹P§ƒÿøM­‰ÄˆÁPK„\!kq©}=Œ+L;ƒÚ%Å…(o”qªT”-_Ÿ—óªGûéÏš'Ž™>úÑsWŽ4Œ5½l}¹iì˜)«ÑÌ[ÓÈ‘†¿¼T?r¤qâÓ/ª·ÊýÎ]“ÿü\` ׯ_ïëë“H$Ä¢ˆD¢X,–J¥—N§Y–EÊòÅu6¥/^í 3εœÔ ”'BµG•FN’b[ÞÑ«w…WãÜlŹ]É¢À¥yck©/®÷DhnåçBZw7Í5Å*²LY1>6!¤|ÃÃÃ&“iñVñûýÂûdt'¸»öÉEÄ€G•|µåêá¦?ÿ°~äpãèѦñŸd<2z,ã—1ä—Œ2NùÛ‘Æ_ª¿òãúäO›/ÏÈVŠŸÉݱ»¼#®wwSÈzËIš7J³šuA¦dR)ÏóO*¢•&s‹~2ÛÚ ºW[[Aâêý3ÿž¢+ƒÁ`0 ƒÁ`0_ÀCCàüpëÖZ?ÍcHŒ µAȲ—Ú×ø´3¨]R\ˆòF§_«Ön@ËsÅdcå†`£ÒkØlÕYu›¬:E›nc£x~^mó²0 +›Na×)\5›üõ›w•ç¡µ;›Zoþç¶À@¦¦¦úúúH’$E$Åb±T*%ð¸t:Ͳ,ÚP–/®³)}ñjO˜q¨å¤N <ª=ʨ4r’›ØòŽ^½+¼çf+Î…èJ¦.Í“[K}q½'Bs+8Òº»i.¨)V‘eÊŠñ± !å;þ¼Ùl^¼Uü~2™Ø'ó€ìK×·÷¡mÊü`C WSlÑe¼`eŠÚ BÏ{DW„lb¡7Z™Bd"®fS ^Ùñìæb©$g]nà [QÎQÅí’ý†’æÒl§¦D])™TÊóü“ˆhå™Ï¸wüõc0ô¸|ܽûåW`!¥ ƒÁ`0 ƒÁ¬1óCêý1Ì07ž¦¡5‘1j ‚+d-.µ¯‡q…igP»¤¸å2NU…v=ZžKŠwUî3—uÔn±ë‹mº"«NaÑmlcmº¢Œ$ô‰Â¦W°ú"ï77¶´T<ƒÖÖ6¶Þü÷mLMMõõõ‘$I,ŠH$ŠÅb©TJàqétšeY´¡,_\gSúâÕž0ã PËI@y"T{”Qiä$)6±å½zWx5ÎÍVœ Ñ•L! +\š'1¶–úâzO„æV>p.¤uwÓÜÙ/û˜6Î;ŽŸ}„ƒB¥$0‡ålßaòfBÉ ^)Ø8‡íÃØÄL+ÍÙ®íYœ™dí¯6Y«IíÓ´v$%‰—¦Û:ej§mi•IÝ$«Ë[›&f”mÍY“‰”LSsÁÀ={Τ”f•!ºÍô|üÕãóYÏËïUzd•¯Ó4LNL) _2™´X,ùS…ã8AæÉrž Fá²íõ%áv{Ï6»i ”­ +ÖH¥\rl±™¶Úè-6úQ{SåaÓ÷îmáƒÚoî©ÞRˆo*+<Ô»&tEÎ-+¸:Í¥˜A²FW*‡Œ ‰Ä}´hM‘¤;T‚}ua^Zì³ÒÕ^@ ñ ¼£.ÞSåïþüþ¢tåŠ4—}€®®©Ô¸ÙÜ‚aXYeQ‡[ç¢Ý!Ê0¬(6hôFi'g¨7”Ãé%›N>Ie~dýèÅö??Ûö—cû/ßÿþ±ïÛ¿L.ËoÀÿú½ƒ×~ðÄ…§IÃCenOOÿ[¡!™L&ã8ŽåE¥Rñ<ŸN§n'Š"Ã0pÁ¢u›]ã‹5{B´Ëo\ëÊ1öGi-Y†ãêv¦~`Øä­Ç¾‹gƒT#] 'Š Z;k}1“'B±ko84ô…)6@Viñ:MÃäÄ”’ð%“I‹Å’?U8ŽAaž€\—Gßxºjö·ý_/w]}þ,“ź¸|§:Ú>¯”ãû߃er\®”+ÏLÿð‰÷žÝoÓ•«ŠñG½oê ~=ÔŠNóF)f¬Ñ•Ê!#ˆD"¡Ü¢u@9¯e³àƒ¤wÞ‘>þ8×mï|@ ø*°tC•æç¤sg£|÷9iúÆtsM¥ÆÍæ ÃÊ*‹:Ü:ßíQ®€aE±Ac”vÕkõåpzõfâb|¸à¿tf_±eǺçNuËã+Ö%eÇl³còËì)û« xÓ}í…½U¹ë€pý¦BC2™L<ÇqË‹J¥ây>N+ÜNE†aà‚E%ê6»Ækö„h—߸×)”'"{^K–Ḻ©6¹Cë±/Œ¸7J³Aª‘®€†Å­µ¾˜É¡Øµ7œ ú «´x¦arbJIø’ɤÅbÉŸ*Ç ‚ 0O`o€À¯9:½Á¯•`ãÇw‚ßyçÏöÌŽY³§ºçÆlscÖåe’«köN¥tÏ'ìà7½ŸžéöïÚŠøn¦Î7ÔÔ6:ýz¨æRÌ Y£+•CF‰DB±EëC®‰Þœ/¾z{¥3 éÖ§`YËE @ bÑ–Æ™OÃH&Uo“.ýicOuO¤Rãfs †ae•Enoˆv‡(WÀ°¢Ø ±?J;8²ÞP§Wo&.~§¼í¿bçOw/œ±-À1§ùÏŸ¥Ó6ø—tÚ^í¿îy連ÛÑôصëŸ(4$“ÉÄãqDZ¼¨T*žçÓé´ÂíDQd.XT¢n³k|±fOˆvù«qBy"²çµdŽ«Û™úa“;´ûˆ{£4¤é +h8Q\ÐÚYë‹™<Š]{ÃÙ ¡/L±²J‹×i&'¦”„/™LZ,–ü©Âqœ  +ó$‡Ü!f8È5”b“Ïïo{^ëY8ËÁ¾¼@r²A}V;öyX)gð[ÏÜ/œü¾j¬P½ë°öo‚®púõ«qš7J1ƒd®TA$‰ûaÑ: A¯I›v6þ +öì‘&&¤>@ @ Ë‘–ÆéiÐÙ¹/°••àØØSÝ©Ô¸ÙÜ‚aXYeQ‡[ç¢Ý!Ê0¬(6hôFiÇQ}ƒþ8½êá ÃfðFïÂk=âH×íÑ®Û'lâ Ûí»4Ú%ŽvÍŽZNÛÁëÎßoëÑadS˵ë7’Édâñ8ŽãX^T*ÏóétZáv¢(2 ,*Q·Ù5¾X³'D»üÆÕ¸N¡<c”Ö’e8®ngê†MîÐzì»q6H5ÒÐp¢¸ µ³Ö3y"»ö†³AC_˜bd•¯Ó4LNL) _2™´X,ùS…ã8AæÉs8Ä>µ£¦¼ÉfO†eò%ršÓç?çÇlà<;{Îñ-s5V¨ÞÅhð&èŠU:Í¥˜A²FW*‡Œ ‰Äý²hm‘$¹¯Žƒ¦&ûª^/]½*mô¡@ ø"RNÌÌHL„aRMôî»}ª{ •7›[0 +«,êpë|C´;D¹†ÅÞ(í8JêŒÀéU› ßúv 8ï\ø)#ŽØnØÄëí«8ú݂ʽ̞ìçzf^:Ô»cÓŽ¦½BfZ¡!™L&ã8ŽåE¥Rñ<ŸN§n'Š"Ã0pÁ¢u›]ã‹5{B´Ëo\ëÊ1öGi-Y†ãêv¦~`Øä­Ç¾‹gƒT#] 'Š Z;k}1“'B±ko84ô…)6@Viñ:MÃäÄ”’ð%“I‹Å’?U8ŽAaž@$Ins<îæK°«ÏìçÙì˜]üI×­Ñ» Dµå´ôl;Ñ ~î˜ýYOd_-¶I½ûpÝ‘!º/,;Üéׯè4o”bÉ]©2‚H$Ê-Z¤Å¾:õw©í1¹¯Ò4øðCp§Û"@ ñÕBºySr8àh4àÒ¥>Î=J›Í-†•?J<îÖ¢Ý!£Ëot PN¿~ñáÅýÑ&çSz¡N¯z¸ð­Ø^ðºC:ˈ£VqÄz{Ô&ŽvÉÏw ¾·eOÚÀ¹žÿüøëGôIï¹–™VhH&“‰Çã8ŽcyQ©T<ϧÓi…Û‰¢È0 \°¸o³×ùxS_˜vú¿ÜW÷K¹pè= +z^K–ãêvF;3Áå‰Ô}´Ëo„÷Fi86šäˆÅ­µ¾˜ ž‡õ×Úv¸o_˜rvl­Çë4õ) _2™´X,ùS…ã8AæÉótôù·?„ý—ýòÿiã¼ãøÙØ4ºaJR° Œ`ßmÀ°ÖµhSrþþ i g vLÎIäfš–þ¶`­jB¨ävdY$öÃ~I+-ûÉUöë’­¦ ,Ë[Z͵©”p‰{öœ1º'Ý™E(Ï‹·NŒîùÜçóþ|éùüÌ~ð[W~¦9ayÌ€l˜”³–‡Â¤Ðù ŽhOV)i§Õƒ¬–ü‰¦»BZ”:t¤µ¾©F°L&K&“åÊhkááàoÞ¯™†ñmmüõÅâï€çŸõÇ!@ ñ]î~ËÛí<¼À*•ü•+ÛèâšNϯ`¦¨“õzš¬Þ&AÒ9F@9‚Úââûr…ȨÞ>ªiÒ*àë{j«>‰u‚‹vþcš›²,',Ü”. +ÏM”Ÿ¶‚YúÞ½B®Ñud¾º#2‘\.ÇqÇJ"‘HX–Íf³"ÃqGÓ4Ü°ºïéWXƒw‚r7¯U¹T´Ã¡`åÕŽK_·©‡bÏY©2æ$¡ãþ¨>[ »`â²êŠ®ƒ ˜ÁÑ9r«s‡ò†)çXëîF\¥l\\¸!ƾT*e6›K· +Ã0™LFdŸ¬³ +ÀÞ`ó Ø_~¾Ì9ó3ý…±”˜‘â'%ÿG´G‰UJÚiõ Ò Òùï!-!WˆðG)úˆ¦¾¹F°L&K&“åÊèÿÁßoWMÃ@[XX|ôã6:^@ ñ|Àó °Ñ<¼À*•àW¶ÑÍ5ž7;1 SÔÉz=ÍVç “Ž é#JË"&õö£š&B_ßS[u)füGôƒ„u9aᦊ²nªü9+8o»—è òV]G&÷O‘‰är¹x<Žã8V‰D²l6›Žã8š¦á†Õ5xOŸ2pÜà œOQ7ñòE¨¨^­QH+¤&›jøD›gZ¦ÝŠX·u…H”r‡È}†:˜¸L^Ñu°!3ø#:çÖDÿ®´¾,ï¾ÝR•ªqqá†ûR©”Ùl.Ý* Ãd2‘}²Î*½¦åìó3ûÁœóáLßý'ÍHQ+g-`–Î_pD{”X¥´Ã¦°zoø©šÍ=‡TgÑ44× +–ÉdÉd²\m)ŽÐ›7ùî.á\m3€ë_n£s@ @ Ï_Í÷÷ ØúðÙgÛè›Nφ)ê佞æ«ó†IGtŽ%äîqr`Rg?ªi"ðõ=µU—bà¢ÿˆæ>°,',Ü”•›*>7Q~Ú +ÎÛî%ÞòV]G&wGd"¹\.ã8Ž•D"‘°,›ÍfE†ã8Ž¦i¸au ÞÓ§ °o˜r>©ne‘/Bù£:µFWHMvõá“Ïé`gpkãºBÄÀ$å#÷éwÁÄeòŠîƒ C'Úü3¨Ýê¬]!-ìLçXËîF©JÕ¸¸pCŒ}©TÊl6—n†a2™ŒÈ>Yg³ktß,}æ˜sægúï 3b)1#Å Z“2Kç/Ø£=J¬RÒA«‡X짱Û=-ÓÙF4õMµ‚e2Y2™,WF[ eð„ h™3H•?b\÷:>8©ƒ 6“‚ã2yE×ÁØ0¾åj¶4k(÷8á S¶£?®Sb*eÓâ 1ö¥R)³Ù\ºU†Éd2"ûd<Lö#­5XúÝpLò3ý÷…)jóI)ȲzNŠ=Þv¬»«”¶R±¡æŒÖù¤f+X¦ï?¬yY]#X&“%“Ére´µÎUþÚ5^£ÎUBË_½úŒ? @ @ ˆð–_åø7ß„X°k¸ü‡g÷M?˜tzÞhìÄ0ìÅ:y¯§éðÉ6o˜r0„#H8Ç6‘#¨ŒÖ=NX==ªQkðõ½µUŸž4‚9çÚ,Í%ÞâVAS´<µ¾¶<˜²>LXWÎõ_ÛïþÒäk©Ðè:nçîˆL$—ËÅãqDZ’H$–e³Ù¬ÈpÇÑ4 7”ïv[†bX7ûQ²P7í¦¥!r}í +‘ƒ“D§l©Å+¤&»úíSO˜p0Zg,w\b}Oè»àøq= ÔHŽËª+º6 ŸhóE(¡+`â陲È=NøŽQ‡Fš_ªÇTÊÆ……bìK¥Rf³¹t«0 “ÉdDöÉ:+¼n?ÒZƒÍ¿ÛÇ$ÿaÿrÂÇjYÐ÷'¥8A–Õi+œ”ü¬íXw=V)m?¤Ž|²àøŠæ™ ëû†Z÷ªv–ÉdÉd²\m)|áxå¯ýh4¹JüŸ®þçŸ_@ @ ž…»káŠzïxï}¾«‹û0øò‹mtkM§çÆN ÃuÕËèOX½{œr“îqÂ"]!b£ +¿“î j`RwäŽ1B­y¾þòΪߟîŸøÀœkõœuíœ>óç¬+ÓÖüY( |®NÃ-«3VþÃ>0k¿sß}ÿ5w‹¤U÷Ê­Ü™ÈÒÒR<Çq+‰T*ÅbÙlVd8ŽãhÚ7¬®Å_¥Õ#§÷Æô®bqB„sŒ\—kÃúSÁ-´Ê¡FÞÙ8nPµì¬¬’öº›™ŸµLê×­ù/¿Ä«°­ÐÐqÚ=A6j0qy5þ“>õèéöá†bÖîå +Q…o& +™¸°I!w¡ýÇtçô6¦Q±S)›¯ÿMŒ}©TÊd2•è‰D2::zûöm‘}R@8Vx`rŒP;±¿þ¢\ò¯ÍÚÖfúVÿÅ~¹Ç6uÝqüÞëë×µ}ïµ°Có$±ãk;~ÄÎÃ8$Õ‡$ ;äEÚ$²“,É@ØÔIS'Q±®Ú£Ð–ĉ†Zi“¦iÖMÑ*ÄŒ…1öG\­?i DJäÞ{„„µtpCÛt瓯®OνçüÎï÷;¿#·+åÐ1 ­÷æ+eË¿ùJ©š{;ÀWr¿ Ý·fï†4ÇÜÛ2wƒ"í¶ñaigþ»B"Æ„¢ ¨åæ}Ž@SŽ!Mœ’Ëå±Xl%<ú‚`'o²‡r%%ÜKûÙkדç*»ŠŽW@ |}a—þò²·a#å߆:>%e"%XçýFiý 3W(¥·eµò4÷9k;­¼’‹X“ËVþ4î/hÞ4ð X¯ïu´¼ä¬iˤ HFzvâÃ+bÒwêÔ)¿ßÿ˜}‚¢hKKËøø¸È}²È}Ž{~Ç‹ù2~ØËý¥ßÿCÛ¸¡_öxÅme“•«ä‹åÝîÏ;ç~Us ,‘KÜ`³}· iÏb‘Z?#eL]—­i¯£õ€k[‹É¦NÉåòX,¶R=kÀÉÊ~2ËŽr'N°§N±ÓÓÜüqË~É+ƒ@ @ dvy›ý”î¯4ccqÇ‹ ©•m +f¿ÐïÞÕcF¬¡(Að\¢PÔŒ€~fg·}÷>g ÙlÈҀᩤìä^/÷^÷ëss±ÀÜP€ °±‡âÀsï|0X1÷N÷›àøÜ¥zÄê-¿>yK¤#7nÜèííÅqy,†uvvNLLˆ47;;[]½L('°â-ëšú»zòùpEl@¡kí‚–¶ÿG…–«¶ÃŠòawÙ›÷9¿ÕΤçP*RZV“ùBÁNÁt(j -OÖJHØ‹ßï¬Úm^—Ég\¡ÄK6§=а'?µ/C‹z¸rŠÚyuØ’sÖuÙë÷ØŸq’•w)qELúFFF + ¿U‰„È}²8j:²äÈ?8¸“µì;Õ L8¡>K ˆ€ +:QÅý¾öÞ`åþé¨wT¦ïîwÖ'7[ÔºP•Ì£©ð¥º³ÇÞÔçÜÎÖÀ#¥B‹ÅVÊ£g Ë-;Q!@ ùjÁÎßYYþç“Yn`«®æ¾ÿ2wsr]fãñ¸×ëE—ai¹”ך_¼Ö^dpø .¿Ñ]ºÎUj\&¿¼²­Í/68}†õ6­JƒƒáJ)^[`|£žùÙ.æÕùÇ;-o41o6[1‚¬o5ÛŽ5Ú~ZϼVgy-lùI¹ÅMËdÃ7*>žº-Ò‘k×®µµµ¡(Š|­­­—/_inff¦²²Ì jr³›49NÙCY i¦HËk-ÅZkÑŠÉRHƒÉMÀ‡Ì`¹ +“àXZíð…”­áSVšêò/èy$ƒO"÷ÆT§ßà(1äó_ëØ`̱ëÔ”ŒwCôFéz—,Éä"-ÊVH¯ ¿Ö"ð¤-…ZsevS9.•6•ßl¦\K⢨ ž>}ºªªJ&ã‘ È@C*•‚N’$»»»‰„È}"0´vtƒÝY›O«·ü(l9\kµp¬Éêb¡R@Xß…Óž¶Ÿ70¯×å½^gÿ¾RëIÓ L—¥é°¬óçs$d9™h¾áEZ©$®xm†‰”)1¾H•Ê¡¡¡•ðè™Ã&cöÑGÜ+?ä‚Aöøw÷îüûe® @ @ yî§Âvr’mhd¥R® €ýÇ…UtuÇã ¨R-Õ¦(:¡7)©ªð\"Щ3ðhõü—jJ†ã(-A±çheaY˜My3©’Úo¦ËÌt¹Y[Î?“ ]©IëË¥‹²éÂLð™æ9ŒÝ´µòÖí;"™˜˜ˆD" ?ác@Q´½½=‘Hˆ4wûö­-[6'çÄpDE!*%hT­Ã(=F¦`A üWŒøô˜Z©´˜’B$‚+'à!Ô2:EI§(´) +ÝZBŸJ<’/‘Z“Jè JÝk`BI¯Qªi™T&áÍ ŽKÕˆBƒªÑa¤.¹`ÉâšE:N¦ @ Œ*- +|†Pœ¸Ù”÷á¿.ŠIß… úúúÜnw^^^AAh8@ÛårNŸÏwøðá«W¯ŠÜ'óçA´«,Þ ÁA™x²hoåÏ¥ÊLÚ¥5RÆ‹ž:¿I[²ž.Ê¢}9”;M£%€ó¨”Òzq%Åg\)äHµ´<“ Ý"YË´NA¨¥ÆÇ ˆááá•ðè™3²>`ËÊ8¹œÛ¾ƒ»reáÝ*:_!@ òõfþŠÊ^½Ê–—³¦è¹?¾·Š.®ñxÜëõ <¨ §EÄÐÍ•wîL‹tdrròèÑ£~¿?##Ãn·»Ýn§Óé —ËÅ0 xåõz9211!ÒÜÔÔT8NzŽaRÁžÞÿ'E\†J¹Ã$¢‚.nIÓR\¡i0Dö…¸,J’­âââK—.‰IßÌÌ ˜attôÌ™3çÎ;þüßHvž={öâÅ‹ÓÓÓ,»bÕíê]‰ <=A ¯”;Ï–â>:Êå™9p®æå±;»ŠÎU@ ü?Àß^…û+;9Évu±$Éú|Ü_Ϭ¢ l<÷z½‚`”Ô*R ¥ShhùçŠÒÉu‚Ô+$ Ç%¨ÙH”åÒÞ Òšª¤±5–Ô%2ª¾_ÞºÒ5¾,2W+cË7nݹ#Ò‘ééé‘‘‘þþþæææÎÎÎÞÞÞîîî.o DþÃ~Ù5•qüê‚ Ë;á-ï Ü‹J+¨+Bb@yS^|ÙEwlg:»:õ˶3Ýav! Ì¶U¬ÚNÝé´3û©ýÖî¹PWgV­‚ˆ¸$äžž›ð¦D+ím:ÏÏ?'çr='ÏÿþÏÌ­«Ã—Ž?~íÚµÑÑѵ/wæÌ A,–¤¦ªÄByR‚(Q’Ÿ,ˆONˆOZ/ p$'% +…)‰X‘–š±{WnNö^>ÿ]Ü:n_xT`hØ¿÷kíÂŽ‡aÇ·pð£Â<07ŠÅ²Ü½šL2K*Q +S¤x“¸‚¸$¬õí@b|JJ²D,R$'‹âãã8pÿþýµØçr¹fffž?>55…«ÃáÀqvƒ''''ñÀét®ñ9YNUC3î›ï·3)4=.Xæ‚'Œæc´(YLPz\ÐÎäÐÌx^ן 6ò° ¡|nHè&^è¦7Z¶)4<€â·É(ÐÛÛ»Žßè? +>EéÛÿ MFšŠ š`{G° Ú-OqÍ¡‡é¿ÿ Ùíèù”gÞ' (Š$I‚ ‚Bü Ž3ÖH Ê…¹ûSòJRr‹Sò ½)Y]&ÔWIsŠøQøö°Íþ½UiÏ:5÷¾gðãCg³‡ÎeÛÏå Ÿ]’ýlÎÐ9\³íŸdß=¿{ì³Ü?7ˆÄ„rûÞ‡cÏÖþ]ÇøøøÈÈÈØØØ“ÆuóøñãÉÉI§Ó¹Æµ\.^wÏf³ ÚlÔ500p‹Â¿×Sx +ÿ÷v»}xØ~çÎññ§ßÞ¾»ßX†Û.ÛÎ3TcËDØ2òŠW¨ÄÛäâüÊúª’qÍ-NÖ”¥àµ²‹aÑ\¼4ŸÖÖÖ611ñàÁ¼1»}ÐÝܼç[n­í‹ãN.Š²Ûlƒ·nÝÂM˜™™Yûóß^¨úƒ Q~ÄÍñÓÍíó»mŸà€d¹ã`_Êg»ëÐYœ£ßþ,çI[žýãlKjá¿A–ív‡û"zŬ\·YŒe%x¬-Ç!•d©cy|¶ŒËåöôô°Û·†¦qÏfè»{ô7ß »w‘c†ž?WN^`‘ï¦øM–fÞ]™WZ_yq¥(Š$I‚ xaܼ┪T–f…¹Nfn™pŪ—{“¬´Iy°5½ð82‘‡oæqþÔº}UŒ®P—–î.@ÖÔ½BžÉ.-ê+B7ŒÏ“»#ñÖœ{£ÏØî„/ᚣÖÄmßš»åPkº¥9›åö‹±f•’¯¨¯\•º©¥IQq*]W)ŽI +ÆKÇÆÄܸq•¯ïNÙ|ýßdzKBù%5â@bè§*t³õéP·ÆKFº4ŒÃbÕ ‹Zôûý³=ÚãY1g£J+8Ôª²4)Ýv+^ï©ÜÜ ÀFŇéjKJXT¶ŒË èééa·«~éZû¡.)w|÷h‚íNøÇO㶓y[J/mVk¥¦:)ãŽÛ²EãVVþÍ›åy °ã%ŠŠTÆ©@ÂÃKÇÆÄ^¿~ƒí6øÌqà¤Ñ.c•8ˆ°²ÇÄէáp1‰ÐÎ-fÏtÐLvm]L¡ÙÞx ™wÔ‰g´VKMÿå¯loiPE’$A¼pÎS’¥Ei®—ê«%†ÃRCµ\_-eË4é°ÔX++iTUŠ¥¡øö¨ ÎÍ–Lô½ëb¡£]=ݞ︠ö¦üéæ’³Sút“m{J$‘"ãþÈÛð1š´â¶oS‡—µ(Mur}•Ì°Â¬õÕ¾YÉQ%SùxéȈÈþþ~¶Ûà3Ì"”c¬n&l?V¡+ûf?/xÞ–÷ú˜,å…Iʥ¿*:²#ŽðßQ(°´¤îo/ãÊx.„TZrT¡=(ŽI Æ–q8«ÕÊv'ÞæXEö!:- Ÿ«(= ±½%ðýdåæâX:â]ôõ×logPE’$A!áœ÷MI–¥¹^f8,õH_-]/ÌH<c­¬¤Q©¯’$ÉBñí‘Áœ›ÇHtYO÷êÔÓíù¸zSþtsÉÙ©F}ºÉö=)W¬È¸72Æv'|Œæ#§pÛ·©ÃÊZ”¦:¹þ_ì×{lS×ðC +ÜP9uâFvqRȃsvb—ò(«²Äøus3'î´e!qr{íDXËVmëþXÿ©¶j„ÐÜ"B»®·BU+˜´jôŸý³ŠÚ]Êú€=Z4 +I‘!svló-‹C&Ýzû}òØ{s¹G¿¯~G:[ùÈÂúï–çÛ‡çꜦlâf‹¦iz·¡hL²¥¥Óv;Jÿ` Ѥ©½~:#7“kó’”ý©—Âʆj´dÑÚÀŠö$Ráúa¼yd\Tš;ìËYŒaUUõîÄ|d2ÄéÌî«õõøøñÜ%œ+à+áòulôKª¬øè1}—4/étÚår!„ÊïdZØö¤ØÚÃGºøH7w³ +wÕÓÏ–‡ù¶GáÎz–+§[Ê–~ÌE~Âû»=´.ö{o¨É\å¿OzÉH`ü¹ÚìKW9î=uúŒÞ(2Ém;hÛÝ^S,å|¸‹ËUýîÖêêÿ)Åù¨"Jq®ÎiÊ&n¶hš¦wŠÆ4!Ê[k—¡ww®&¯¶L ù'v}ÉŒÜ0;“ýž™9œz)¬l¨FKJÖV´'­=Âœ©Ñ¢aE· »•5ÐȆQUUïN(»³â>$÷o t_u8ÉŸßË]ÅW7]@O˜\;¢Ž}ŽC!Œ®®ÂÇÞ.¢ƒk:q¹Ü!ceiƒÌÆzE9!Dº¹9KŠómŠê´×påôqsÙ’C¹È+‘Ù}‰ÝMv{.ö{/öç?¯/ϽµË3³ÇGF‚ç~¾¹uÕb»cÝ©ÓgôîD‘I*}´ín¯)–rÈ ¾ÈX4ñ¨"JqÎ欠¯¶˜-š¦é݆¢1MÈ×äNÛíèÝ«‰&M ù'~Ù4ñÅÙ}ã¼Ì øÈ‹Á©CÊú*´¤dmàîXÒÑšàÃ]F&:ìVÖ@#cFUU½;1øãȦÍ!ât’÷G¯\ÕuMÀ5—ϨxlœC˜`««ÈÑcº.i~ÒéŒËåF+Kd6Ö+Ê !ÒÍÍYRœ*b¨Ó^ÕÓÇï*[zøq9(“Á©~ϥݞÉÏÅ~ZÞëk²ßKïÎô{ñp3y9|îÙ áÚ»èþë'gõîD‘I*}´ín¯)–rÈ ¾ÈXùÄ¥8gsVÐW[ÌMÓônCÈïS„l‘:WPæ©Õä 4=¸´Ës‰NÄ€g²¿éb¶¼¹yÉW½Ho]ðâ!Ñ"Ó#Ámî»Ðâ’5Í+Ú“ŽÖžì†»ê ˆLtØ­¬FÆ0Œªª:·c^Nž$› a§Žê½à&ÆÇH(ˆ"ÕÕäØÛz¯fÒéŒËåF+Kd6Ö+Ê !ÒÍÍYRœoSÄÐÖú•\9}¼ª¬ô·;î#¿‰MšòÍîñÓÏ©Aï¥\Mzò_f}xȇ÷úðH¼&ÿbc¤­ï;õÉY½;Qd’Jm»ÛkŠ¥r‚/$²M<ªˆRœ³9+è«-f‹¦iz·¡`úCÈ &JßáÊÐû?]GGñHhvÐGgdfÈ;½‡N‡gr 7)¹Ï©=ÞZCÞÙ!?Ù$oD§é]¿-)Yݼ¢=ålí)(ñ\dB Ãne 42†aTUÕ»óqòc²iA;xt”d›™ë&ð•rîñû1=À.·’#GŠèèšNg\.7BÈXYÚ ³±^QN‘nnÎ’â|T#]ö•\9}¼êæ;7#ß$‡¾A„ÈHŒÈþ/+z‹þÂÁòfûØs뛫Ѫ5Ož>§w'ŠLRé£mw{M±”CNð…D¶ÀÊ'.Å9›³‚¾Úb¶hš¦wŠAn;˜%ÄÛþ0o@ýì^rôÛä œ‘ð•¡ÈOGðJ]ù'­…üþ!üŠ´}S5ZºèïÝ¥îií)(ñ\dB Ãne 42†aTUÕ»óqâ^»–î«DIæ½üµ"Ú]üÏÃùsê™ÏHccök¶·ÞÒ{QóNg\.7BÈXYÚ ³±^QN‘nnÎ’â|›"Fºì+¹rú¸¥Œy=µŽ¼ÞJ^ŽÌ ùf‡›‰z]½ÿâÏÖ°?ßLö‡È«ÒèSÎûË‘à~ðoÿÓ»E&©ôѶ»½¦XÊ!'øB"[`ÑÄ£Š(Å9›³"›¸Ù¢išÞm(t›ˆ|«gƒþ¸]$oDg÷‡föúðp€ çç"7#/\™Ë“2û¼ìk&¯µžô=²ÎºhÙm«ýÕ±”³µGˆtñá®ú"v+k ‘1 £ªªÞ(TvcM§± Ð}s9~ë½$àßàìé5{\ýôSÜؘ=ÀšLøÍß齬yH§3.—!d¬,mÙX¯('„H77gIq>ªˆá­õ5œ‘>ÎÜVâîüq°îGͶí+wøØ~Û“~ÛþÚ'|µÙOmîJmŸ¯ö{MlŸ‡Ýé]²#´¥±ù³ñÏõîD‘I*}´ín¯)–rÈ ¾ÈXùÄ¥8W笠¯¶˜-š¦é݆bïé]„PS­á‡~v»‡}üëµß÷×Ò‰xÒw­òÃB‡ ½Ûç©Ýáa°)«mw”–™MRMì»ÎÖ>ÜU_@d\Tv+kÈ)說w +”ÝVññwf9>»¯Š"ùÓ;øÚ@gøº¿ñ… D&þfò¨Bþr¢ˆN®étÆår#„Œ•¥ 2ëå„éææ,)ÎG1¼µ¾ÆnDY‹Ð­òùçϟ׻E&©ôÑÖ¹½¦XÊ!'øB"[`å—â\³‚¾Úb¶hš¦wŠÂåýà¥÷–g$Ïh^ÖØVמt^N¼kŽÜiXQEtØ­¬>Î0Œªªº¶¢Pçºvö,yæL÷Õ§Ÿ&ÿGn«¥·²ô^ €ÿwWN§¹ÓêÌ,ùð|è>z”Œë¼²ùH§3.—!d¬,mÙX¯('þÅ~½Ç6u?vß0òX«AX$öµ¯M€Øt0Ñ@J®“8±ÍML<µ yG\ìÐIˤ©Lš&M:±jšÝ4 7š>rÕmÕÆ£«ößÆP·NÚäTíªª„VD¡PÀyásv®“@ÂþˆiDo]}?}¹¾Ÿ›ïÓw¤cñt±K†7`ö‰œ»ÓTfÊCH£Ñ ]–vE¦6S«Õj442µš¬ ­.#C§•z©ÜÔÒGÚ¬Lí +F«¥3£uõ7¾¼©v&ÒLX쥩s8 ý=V!hN¥dˌي{l¹­€N­/Ö˲¬vÒžýØ»o?Í[¦­`´™Ú Ú¥_”6ÉÌH5YÉÈÌPÚ'CK¿£|3[§eè0„r[ñÔîuþµ¹;Ù¤KÔË'Z\mÆCÎ0Œ$Iêæ"eɤMÏ౱ĩÓäŸï’[·pò.VûÍ€YXÙ£ÎíS•žÛ·â„ŠoõPb±1»ÝÊ+Ê® þ'-ž.vÉðÌ>‘ót²¥l>¾*;ó'|Ù[6î]ß÷ ×ÿCîØîX»íØë±v«DOÚ•årµ¿Ív¢Óö§ý•¿¨-.Рªmüåë7ÕÎDš ‹½4íg¡¿Ç*Í©”l™1[qo€-·ЩõÅzY–ÕNC:ÙÝ!®Ð ŸÕŸíÙt¢sýKÏpÇÚ¸ÙI7bj·I{¬ƒ{8ÕgBvéi®ò±ïhWfnñ”µ†”Š»;M)”Œõ‰W›±ÄCKÆ0Œ$Ij§!UøþÚŠÜÄ /õ`œÜ¢*‰yï=üÚ(9ÿw<=…IÚl]c±1»ÝÊ+Ê® þ'-ž.vÉðÌ>‘sw²el>^´R÷r rj¸á‹ÈÎ ‡ªÇWr¸úâáíㇶž‹‹‡w(qdû…Ã;>ûuÍíþܳf.Y6ïøôê µ3‘fÂb/M»ÃYèï± +As*%[fÌVÜ`Ëmtj}±^–eµÓ6èŠàz:X¢Co齃j¸ttçLJª/¡=R=~Dé—ùPÚäS%¶ÓN¡ñÙѧ⃠´§ÓwQvFUcikˆkZÜKË'Z\mÆC-Ã0’$©‰”àäŠ'§Èùóø7ðûïß_lÓguðm‡ç6©—/cA KÞ9¯òK=ŒXlÌnw „òŠ²kƒ?Ä A‹§‹]2¼ón‘sw˜JMùtøêUÌŸº•üåä÷r© Õ“¡:"-å&}ÔH^õS-7³Õµ•Û¶Œ_þBíL¤™°ØKÓîpú{¬BÐœJÉ–´â-"ç ˜Êmtj}±^–eµÓ6f©ÞÕnÉEý²Š¼í'¯¸•F8Þ0ßõɨ[tIŸw‘‘&rÖ—xÝÓ³y5ÒeT6”¶†lÍÝ©6©O´¸ÚŒ%†Z2†a$IR;)J.¬ÿþ©ªÂDxž|ø!^ðøÀ³›TüÑÇø‰ïa„Ȫ||útí\c±1»ÝÊ+Ê® þ'-ž.vÉðÌ>‘swËØ|:üñ\Ý™o&§|äuw¢¿>ñR]bÀ™˜=.ˆA'¨Ç äx#ùÝ®ë/lu­EÖÍ._S;i&,öÒ´;œ…þ«4§R²e­x‹Èy¦r[Z_¬—eYí4¤iLžôìasо‘ü±»ýNXðøÁÓÓøoçð¯ž'#'ñ•+j¿ÎCˆÅÆìvB(¯(»F0øCœ´xºØ%Ã0﹦S[H‡çêNÿÈNF=‰aWÑâj3–rhɆ‘$IíL¤'ñ89û~þ~óMrýú½'XÅHîRçö©‰ù+NŸk,6f·;ByEÙ5‚Áâ„ ÅÓÅ.Þ€Ù'rîvS)›O‡ësu§ØÉkMdÈ5áã~2ÊO(á\µôþdÄ9Óç$'oE¶ûYÆÈmüäÒUµ3‘fÂb/M»ÃYèï± +As*%[fЊ·ˆœ'`*·(/Ö˲¬vÒÆ !Û…Žu+Qì`%õN÷;ã‘s=²0è~ª''\3#Mû¶¬FYš®µ­akswJO6©ÅÕf,1äÐ’1 #I’Ú™Hž{—ói³ºøÃÉíirëŠIâ.9}†„{ð@?ùò¦Ú¯öb±1»ÝÊ/ÊÞ!”µ†8!hvw²ž.%ܦٓ{áîTžÒûÞ€y·hmê0–²yt¸>Wwú€¼Ú„»&¢|<ÂODô$y\å8Ýç$'\·#;ül¶‘ÛtñÒÕG÷?âG÷Ó³?ŽççÀx²Âb/M»ƒ/ô‡­ÿc¿\€š¸ó8¾Þ¤=åTPð¨å‘MHT ¾NP“  «G@y z=û˜z×¹^ïI[…1‰Cµг^§W½¹ÎuIX­kÏúB©UóØÇÿÿ èÕs$µùæ˲ûßìã÷ÿìog)¥i¬2üHÍ'×G¢e˜t +o< Ðl6{«<p X­€¡Iöàrº¯\½ÖÓÓ}îlg×ÙN{—µÇnï¶Ûº»mv>Öîkw·Õn·ÚÐÃçºlç¬gÏX»:?ýìbÿ­[à ž “C<Q€Ù; +Öæ…>MXwI¡)•Ö¯F=âx`ƒè”­r ƒ\Z…§S’éÆ”â¥A„ϸ¨äà¬RIFÁƒjX$km‰Xµ)bæ\_¤L  oTç-îÜõõà;ÁÑ£Àí†ü[—{èA ƒÁ`0 ƒÁ|Ë—¼ø"˜: $«à¥KOúv»Ý.“É‚˜ì/ˆOŸ³¾T’Q ¦4"JCªó¾)©ù¢ÌbIJ®p9èëc)‹SÀÛkœZ…C«pꔎj%ZÞ~S£€õª»Úø,ò©ðÈèϯÜðv¥€‘ÛÿgËph 9X–,@áø@À@npBÎ3N†E?yªmy‹ÒâçÑ´/Tø!eé[ÅT.©~˜²ÇLj>™Y‰–aÒ)¼ñ€@³ÙìÒŽašaÝ4ÇŽ˜díþòß_þóô?Zë›êwW5”W4¿QiÚ£k©ª6骛kª[ô:³^wH¯5é´Í{µwW6¾^a,ßm|³¢Y¯oo;r®óLßMÀpƒçäZÞ2Ç{å Ëðþ½a|º&ôÇ„u×0þ-5ƒÁ`0 ƒÁ`0ÿ?}7Ab" 0uüëûߣ/W›Í.“Å1Ùÿé„ôg²·K3 +DT®HGª5bužgeX(ʪ5dZ>™UIýL8‡œ‚ü‰e» ¶P\]²C«@qi•.­Â©SÅåÉÀ:S£„ Éw*Wf’‚ðÈè/®öy©@Çr,Ípn0Üð]n·ûúÕkÖ3g~·uý»ûê:öÛ- Æ£F£å`“¥¹ÑÒÒx¬¹©½Éx´®¡ ýF_w¤öíÃuu­­ÿðË.~}ûkÈŽÎŽã @ƒ,º¼—Ê‚¥E/ i_¤ðßP6/£ )㣎òõ¸Ñˆ¥k„©[ÈÌm¤>TâÇ4›ÍÃçy¬JCÓÇÐ íbi× 2tj€ëý·º:­'YL¿ÙSAå¿&Uü1dÉžàź°eU’¸Ê¨åÚÅ ú•Šýò¤ÚUŠšØĪ¨åo†-ú]мWgH_ ]ô‡êÊ­Û÷ÿ¾¼íPkÏù^‡ËÏÌ9 ëæ‹®E³pì +árõ¦° „õ—ó¡)•Ö'ÝÓʺ â ‘{2¸ééÝH-™EŒ¥ +^_Æ7)ò’ªyˆ¾´-¢¬‰jcøÌ9‘2@`0¼QÝØ㑺{€T‚Þ«›uØ ƒÁ`0 ƒÁ`¾ |¦öõUrþvZ8y’ûþ|½Úlv™,† ˆI~OŧÏÍÙ1/£@DiHµF¬Î©óÈáØ…’¶E”U"IÞ"œŒŸîëÓ¾CMj®NåÐÊZ…S§ü_A{Ù%lH¹½wźŸðÈè/®ÝðR–a'ùŽaÑæÀ8»~£Ïvæ\{Ó!ÝË¿ýSvaÅÚ¼êÌ‚šìBí檼‚êÂ’·¶•é˶ëKKkŠŠ´›·T¬Ë}#ucyzNù³ùU/ì2jkN´w\øäç]ÇoôŸžëÐZóÞs°­è4í þʤb*YC²„£|I<Æ…i[ÈuÛ"©\á3bÞx@@ Éd>ÏYÑÐñ,hš¥Ý,ƒæãGÔa÷îvötkë8RuÀ\úš!6§:x¥aRt£ï|S@´i¶ìPø’ÃóW‹U¼—°æD|RûÒÄÃÒئè}þdåÄÐÝ~‘ºÈDƒ:·¶ì¥ÚÝ{ÛO»t岓ãXÝ .YäËkÊP qêMaÛ®°%•Ö'ÝÓÊ¿¡GÃwJ4&ÓFªhñ,bü¢Ö„ WçŽnÏQIß*Î,Ž\>s¶/R& ƒWÊs,ôžQQè½ +H1°vØ…Á`0 ƒÁ`0Ìw‡þ~œŒ>`ᬠpêÔ“¾›GÀf³Ëd1ALò$dÌÝøÜüµEbJ#Tç‘(©r`e(”†¤rEh™Q Ú°]ªÚ1 >Ý×Çòœ ¾“TnÜ¥S 8ùȇ…Aã´NÁÕ&Áæ”þŠeé¡? ŒùüJŸ— +dtÓ¬ÛÉ04 8 ¿¯ήÞó'ÚÿrT{ ¥ä•·b7TΊ«õ—cZ‚—4‡þ´E÷ÎâDK‚Ê¢H¶¬R‰S˜ÄÕ‡ÊjD~䟃dÚEªýY…†—~m¬­=õÑGWnÞtr!   7XýüżCiñóhÚ*ýrvH×òʨûdñÑ<^†¤kÈô­$2ž’KÎ&yãþ~þF£qÌë2,p3¯Ë3w9æÂåµ·Tï©Ø÷ò«¦Í;Û–o²„(:&.|o¼ä}ñ¾â¦JNG},Yf_¦¸ W¡ôÆ+­±‰Ç,û[DtÇ Ñá)dÛ”¨s¯È>X´S÷zù#¦Ó½Ökwï8!pAˆÂ²ÈŸç¼z0â¨MB_¢çWQ°5­]3¬Mä÷»Q§T+¸}IÐLÑÆ”’ųˆ[°&$ççó<Æ‘ ÑýƇ?…â eÒÕÙaÓC& eÀ`0x¥¼±Ç£á³Oá²Xô^R ìížQ¼cƒÁ`0 ƒÁ`0˜G ~»zøê6 (þ6(ž>ýïêQ±ÙþÃ~¹5uåqüòŒ‰•ò +7ï„H$¼H@ j@+Tyé*øAe—ÝÙ­ÓÚîŒãƒ­¼Ó*mQ—â"ðˆ¢`UpZÇYuí ¸"’ܳ'WWKÛv4Óvæ~øΓ“\ÎýÏýÝ™;"KYäJŠIE3w¬Þ"HÎå$åàÉf«çNÂoaRóxïù«²ØžLgxúr'RÛÎ`ЪMjSµÒT¥4UÆ+”† +Å«ÌV(ጩR‰UÇ‚ú•àTÒ“²ԖΓܹ7aê  “3Ìš “Ñ„a˜eæ©Á0rë»Ó-­åÚæÒ}Í«¶çª¥Í „-ÁYWÿ6wq;#¸/ b02þJLâ7Qñ¡Ê^qØ9–¤y9çÈ"fUx”q“—ÊR6pÓ¶ð3vø­Ì`,ó"Ce$I«ÕZ£:+€k¸} “Ëás…ØØøœG.Á¯‡É'@¥6ÃX ×ÿ†Þ^‡‡G$’@A(®$E*š[*I/ôÓlæâái6qS7ÿ(¼Ô<~ZoívAV‰H•ÅrGàéËæuì’]hYêã_§anê@C‚eДÎjí—®ôDP?é¬Qa2cF0bÀÀsî=}Ü¡ï.;¸o_qImVÁWŠÌVz\;YÚn'è´cé™:2]çÂìsç°o…†E…ýn44b84üªtE¿  Ë[ÐîÊítv/‘u$ÌȯÚóaùçUgz;ÇÿuwòùŒ_Ëd\Õj·BÁÖÝpۃ㨙%¢÷ +„«,jø©¸²WÖ4oœÔ—G>¼Ön÷Ë*«²Ø ‹q +…R«­}ËUa/w àNÌNÝÿâ«c?øcÙï7~–ô^S@Ì7I'‰«G}Ú‡øö ´.[ŸŸŽ>:*ÚëκàËà +D¢o‚ƒ®…H‡ä²ëÒ×x’K7ÙƒŽÜvfÄ©”õÚü‚¿ï*ß¿_×Ó{obb_3Ìlgfšl&¹¹GºÖ€É–^xÙ&  .ÿø“4$‚F8—j>¦*–{"óíü½³þ Ê(ðÇ-ó,j6ññÁ­ñ4y°Oyk …ëw‹âÒén  2‰¤Õj­QÀ,nßÆVÈ0ø\õó£c/æÙË" ø&'A¢Ê _`=<€^ÿK_ÍÿÁðð°X,Adá"y¼çê-üä Ü„õ,U')Ç’äöóbR•ÅNÎå¤åñ¢4èÏðôÅ 7ŠLÇÕ3uñÿ)‹~vX1S;[k¬RÎIeìt…òéaÅ×%\Û% tFØbù݇­T Ù Lf``˜¦._¯­-ÿ¸¨ðP榆¸ôSü•mT™ÎNØ°»mè:;ßN­“LÓQç½ø—yâ«âàkÁÒ!™ìº¯îº ¿sÿþ³Y£ ®‹Ì0+UÀŽÂ¸í¼JjWÆLʆ²¸ÉÙlKrÞRr¡n¶:›“˜ÉJÎá¤åó¢5¾K½Èpi''§ššš·X†½Þ-8š2Nß¼÷mKWKŽåEÛŽde~­>ÃþÓ‰ÝcGëG|ú_=‚v#h§ ­Ã–ÖnïÝ1ߧk­w)zÁ‹ÕÏâ_ò]”\ ‘È売›¨xÌ™7èÈlsó;{Lþ÷5¹¶­ýìÊðõG3SИ峊4x&®Ýàîˆtå³L_¨§*ã&a›”+f+a_ľN%ž*Ø;qÏË•O?U<«PšŽ&<<³1È݆dËtOÍç½»«ZÏRg±ðå¤àÁ•AM–Iu®l#G“ÇS{¹¸ÍƒÊH$’V«µFuÖÀ¢áÖ-Œ!æçÆÆ_Müº˜˜À”Jø –-Ãzt¿¡wב‘‰D‚ ˆ½ƒ­'JáJ–0ü]P•! 2„® á‹ãœÐùT”ç¿â.¡q],t@’ƒ]’¿Û'ÉŒ?Ç£Û¢¼ ÞÅ1>E +Ÿ"%Í~Tâ31ÞQ>%±¾©|Ó…‚Ê£¾üÄz5bÀÙÞ²´¥ªªÚ¥™Àì÷“÷zNÔ”Õ”ے׺!»]£9'‹ìDý»© =Éã"òÎEīעŒÑ0:z'BÃ㣳£õÌóíufž_λˆŠùCbéX lL<Äèóævñ=¹Ö¼XÐŒ†7„¦Tfç)?Ü{©÷þƒ»fÃsÌo·œW·@zîfQ³)Ÿ$¡;ciÛ¢},=ò¢/”>Å +Nf–*QáR2Üvª'™#YÂô§Â6¤ó]é°NúÙ/÷¨&²;ŽB7$@x…Â3Dò€ I0„‘§@0‰¼DEPQ÷ÔÕõÝÕª§+ukÛµ¢P! oXWVÖÇn»V튲ºâ©ÕVéˆz¶è Ƕç~ò9÷Ü™;™ïýÞß=g¼‰È¨>¨=WlïÊ"“ÌMÁX‰¤R©Œënž0LÚ¥K8‡#ΓÑ~ÿCû+@ @þŸÁðç_°S·±ð ApªÞ¡y·oõFLNNŠDbAÌÞ3¡»[±ül™,kº…îN¦»‘éL+âüª˜dâ’Ù•EñâÙºxY›[˜áæf bxö¥QîÙR9JKF’N‰þN‰‚Y½Ò¡NÉBZf£0œ‘À²\€ Biäô3ódð)þôÞƒÛ£_öž>þùÑ]Ûª r[s³;ärõâP “¯'{˜¹Œ .CSxiï.Ä«ñÐ"Ì.„Ùmâ®3sï±ðì³õ`p‡}ÐQñ¸PrY,¹ŒŽ±½4ö[¯[vƒs@=7²26ãXñöSuÕçÆÎý0=õôñcÃæÉ×ö²À´[ÙšzñlÜ|¬]Ü) w+š›%ȈÚn”׃{;qSÀz`xPÀÂð&·"-¡!ÖÖ6*U¥Ñ}ý{rîÏOü±¦êã½5ë󫺕ºD™V–Ð%‹×ÅFwëÜ9=O=ɻӌ£6ñS›øw"þZ?ÂëDu >Z ~“¸×#¸‡%ée û9‚~±P)UG…Ÿ•„´y 5Ö\õ{Ü3TQ½py݆º_nh®¹0>üèÑC£›š##;Ì[Œ7¥ds•Ä99ÀQ†:& ž—JKDAÃqVDO²ÀiE€Súbú–·\©‹§­nððâS™,Š+(R2c.#¦!/g7"/Ð äâAvcÛxó©4¦•ÙÏLÀX‰¤R©æÉqÁæ +ç«1Ì›Eì«‹açG —Þå{A @ òÌpàØ;xRø€Å®¸^÷nßꘜ˜ Å‚˜[˜ú +¤±®Â0º0M u;£àüš‚ç4p›$Ú…äD±%áds³­Qîí[D'rü+Ò8霊 î‘ôÙÆK=Dg¯:˯9ÝMs0Eü$á·îÎà†¹4&à÷ß¿xõ|Ë*«vï¬ÞÓ’µVŸ™¡•%µ‡„i¸BÝ·ÏÊ}ÐÔuqïF|:v'qfiÏnÄK‡xë@c§Þ§מÛï&a ÏóÅcBñW#Bq§¯³ »‰â}Æ’}Æ)°> ¾*m}Ýêö¦‰Éѻӷž={blOJ·íÓîìeŽr¡¡Ršˆ !ôzpo%T:·hDâ¡ÎAÑ®|‰…úøk[Ûêêj#:šKæÑߪ5§÷}º[µ½¬1%»-LÖ½$F³¼'3¥¿(g¨hý@úJ}P˜–é¯ut:J5ŽáíöZûÈ^‡e½Ô­EÐYSAÛÂkø *–*{Çwù…t,òïhdQëRµ™ýqŠA¿hcP+%à”Û’“q«jw}ðËÃj­»{Úˆ¦^8‡|õFKdw$½­P¬ZëHó­Èð=’îû¼(¸G28³m_P)ÏÅQ­æÝp|5?ØÕY€¸òm¥1®¢P:H\B„ND,íed`1Ì®°0Àòð °_hi +"#‘H*•ÊØîælòk\$û*(~66ö¢{¶ +@ @ÞÌðúèïXK ^T„<„ݼù®ßê ˜˜˜‰D‚XSIÑ+½×í H+â+6rfÅ•çqä¹ÿ¦—R ¸k¶ –g±é^d0œN&u–JðŽ¼Q†©â€ðÊØŸ–*¯ŠÃëðfÅâhÂò¾>õ#>7“Fåñ“6ô´í?ôѱ’’zÅZMhBß’¸¾¸D}fj_Aö`Av¿R®GƒtÎ<½@븤Ý!\C ÓÙGô9FöÚ¾ßA·˜òÕVÂfäP€lhqrŸ0ª›ØÅtK:“c;2ÝJe_Xâ€ÏÒn‡ V‡ÀÓœ¥'SÖ×îÝsôè''šª§îÞ6¶'Å…å`ÚcìÖ–¡éDd¾†Èr_LžË}kÎ=V™ÇM-ä­)C³Ø.,"q*•Z[[kTODþßÞø.3?'wejCnYgxF3m±šüEZÖÕÏÝìm¼=ªþkWý×?^³qxÕæ åû/íW]9XûÝ7>­Ÿ,ýu‡¬¤>$S“\|yÏoîÔ´ß9¥ù¦B5˜[Ò"‰<Þ_Zr¹¾ú†ºyª¡iú·§þR~x tu£¤ÞIZ’¼U–P²«àÒµ«F5eà)ŽGÈ×±­+{P\½ÿ}" +¡ò?—Iål™Õ,ÇÛ”Ojâ·Hèiºœ™U†¦ðåÏ+ñµÐ_T¨2“"Ûæ›îí@·‘‘H$•J5îæbkÅgàuuXq1®ªÄïL¿r@ @ ÿ0Ãñìöý÷øð>1=|ø®ßê ˜˜˜‰Ä‚ØØ‘bRX9»„ÅþÊ|ž"ŸkÐFΫRæq åóÒ +ùkËѤ_W gPHÚò ¼+oZÇÇáÕqxU<^÷7œHÂÏ*f> JrGX|Éõ[÷æÃ݃G÷ÿî³²’Mu›Š[cWiØa:~Ø@‚|¤´ð‘}Ç>¾ðaù@²BïÚã·¬/$£'l]oHöHhÞhئ!áš6—¨FûµOüðÒ ã™å³w ˳µÒ¨V?Q[hˆv]Zÿî­_þ|çøæÒñ休y;#´.­‘ßP°wûæ}‡vsýÛùðزy˜vIœ]Ö4c‹Ÿ2ˆF‘Ç•çq^•b#H÷ÖRæñD⼕ ñ"~V9ºbý"&› þÚÎξ®®Î¨žˆJºü§« +…2?AÙ–³³K’zÒ’–µäbñŽ©öÆû×¾˜ùáâ̵ó7ÛšÆ÷í¿°÷×ê[¦‡FgF¯<üûeÔD–‡ñ.gÇìŽk‰:åx "I8¼6èÎzŒ¥C@®€I†CÀÚu§ÔÑUW˜)壌D9/N‘ gCB¸ƒN‰0¹¡{;Ác†qªö 5ºõ~õÕKw¿¼îþÞ×ÿWõŠÇí=é¥_¼ÅúºòDÂ@!_Ý"Q‰»†ñàèø»vŒÂ]ôÚsç«+Æ[›Ç•Õ cy¥Í!ÿ(0µÏšg}eÍg¡›·ù¢5…¹ÒùÒ è'¦ù\¨ãÌ&ôž;šéˆ¦Ø¡Ü=o¯‘«vº–«¯£4ô®ûd&íË­Ë¡Ù³6ÒV±Žnò +·r 2Ç„E3•ÑË + |S¡nÁ–؇ÁŒØ@õÆ/Y>‹ ‡Ãq8œ™ug(ݤ¡Z-ÒÓƒðùH›U©¦:tÓ‰ü®ïÀ/y½UE¦_x×a˜D"Ad´·ËyµWøzsš/ÎÄÓ™G‘Î&ÐÙÄ7bhLœý‰î!öûÍV¬‡ _¸}§Óµ®3„/Œ°à#Ø´“l0Â,÷˜;0ñ4 Ë‘¥Kíؘÿ¾èo …wò#x„XQ}«ðFØ£.ü8==}!úŠim{Rœ#m¼*öóÀ|o2d|k„›%—´J¥MmÕ}õÃM5Ù7[®¤<-.V õO W È„ùåwÏ&Ýÿ>µ£¼A38&*µŽ´ŠKxõG£+<‰¯¤Ë{$/zŸöÖ5Œvu£jõ˜® :Q`jÇ]´åñºûÜàvá šzE·;ú˜Îš"×ae¢M²SÄØ(âÉ¿Ô¯¯P´‰¶è ºš»ç‹-Ë ?ÌÚ`·Ü3tk€9VƒX1þ¼0õ/ór`êZ's·ƒV†É’Â"ÃápÇî Á´5™ö À»òªEÞœ½À0L"‘ 2ZˆÛåd̳rö7wð%Иz±ðtÎ"þLš¾×Ùèla¿¿b­6|ñÜÙwÂÿ‚fÓ&Sì16òEyš”qLò8¬ËF›HA¯;ŒFo¥›~`fA’H‡ á®o`€åéAeTùŸ,Yï’ }’cº£+&IÑÞðâyËÈhóØ`ëðã²æ‹ñ1‰ÕO”Úçc“#JuÇH[NYAäÅ¢ã±ÂŠÇ…½šgê¾~YCsëen™gH™W 8‰3&‚å½ÝãmêÖ.5î<ŸòpÛþì¥Û“·†XZ{ºÒøµ†ð…M;Éf#ÔRþU^Äiyý/¢é„ÝYws'?‚[%Õ¿š¨K|Ñ¢E3î«M$ö±u=õù¾*Æ×¥x§dhe‰ö,ïÞOC½íb>¿,¯¹´@RzO̽VýèzšL(B'''µÚXô8îZÞ—gJbÓúêÚ5ý£ýü:áí¢îŠê‘ÇMâïÒª¿mMÉ‘µIzpÍ­¢NAí$2¡èž‹{°ÙõÆÊíGL7±½\ÛZfÜÆŠîtò1ùjŒ\fÑ5IvòXùôùUÕÄ“µ d¬R4ר[>>œµÁ~9#ÔÊÅß|*nÚËŒ0éãfëƒcô½NþD·`K +ÃdéŠ9Xd8ŽÃáÂÝŒƒ (¢_E_¯¤/—Ö÷feÀÿ?S»WÝVuA?BΞErsQ¥ò÷~¯ÿ†I$Aóâv;™0B­œýÍi,E¤³‰4žÎ&¼MD'?s· ªÙJ‚6|é\\a˜5šAŸL¡*â(Š8²2ž<ÕN“*ž¢Œ§hlÑTêXìgîøÙk-7õôÂÝÀà` +ó4Å·Þëdéê%h~ö;YEÕ$2.îàóJn‰+V•·¦\­‰ºÐy;_)•b£‰‰ÁÆ–ŠKœ›‡ÏVrn‹ž*%C}¼ÚβJiM£ôǪÆÓÉÕÚ3óGDm’Ú¦–âò>¡QÉ‚… Ç¢ŠHN×MvD˜‘¼hö•uO á ã``6í›) aúȘD]joë¿MœŠ[Ÿ8Ñ-Øû$L,çc^²xIVVÖLZÒÚ*nó¤º'{ðÜU™9^ƒVælvì+~¤Vu¶Ô–s’ŠOœâ¬bû= :–{ûu]I×t?SôJ`nê-WïL*ƒ8ÚÔ>Þ ‚£“°#ÑW+„’\ïÌÕúÔü^ /½(ã«s•Ù*Å2!kOã;ìÏßh{fóNïýn<“¦^1¢»œ™k>‚àH+4ÛQd§ˆý\©«…©º ¼ÒôzÑ^&£©{ÔiÔÀ¿.ƒ>œµÑ~•G¨¥ËºÄéLâôÈX¯òÒè" ²°ß·v™ñŸ±Èp8‡Ã1„;(•ÈÛHTRY‰jµºѯ·¼ ¯D.G¾=…¨·7"‘¼G[Wn&‘¬!š÷1n·ójÐu{ˆ4M¤³ ¿%'?¢[°…ƒ¯Ù*Â|løÒ¹³ ÃHè r•ªŒ£(âÈÊø·Š¢Š§`Ð$PÐTêxìNwü×Zlê6„»Á¡¡@Öi[ß&ƉGÆ{b!£,kªLФEÕpCÙ}nÂ.§33½éŸçËÃÃë£.Ž>©C5µL&Î/È;–uàï|N΋véXK‡(ý¦ ñZgA©ô~(6§æd¢(«°·¦©±°¤”{Cø¨B«y¡’v ¿¿ü`·g–9Òêož4ûŠZ¾!|a :ŒM»5e#Ôro‘ÆüÍ°fDŽˆ®ta•.ñÅÿb¿^€šÈï8€ï9åÒke(ÖJ+SEH´Š‰è)>I„„MH GŽhÕrž¨wÞi}\=Ûªá5p" F8D¯€@’†W"B•ìvñ1çµj%C;óÿÌov2 ;³ßýæ·3™g#‹§=—JsÍ`îòÙ\ÅÙ]íäŸÙ]q‡Üž@FõÚö†ÌÌòøý·¹ÑEß¼%Ë‹¼aͱ„eë°F#&äldæPüŽ'5©†$u ñGoÂK¿8ÕW¦è(lO—^¸Þ*‘×f^Þw¬ò¢Øhx„˜ª¿?SBçä‘|­Þ(Uɦ=fE½Ø¼…@²ø? b¦)ÉÇ ô6þ¸&Ô—æ'+3ú=O͠ǬœY¼çN³ ¸múÄ…Áufp§è‹ðtIñØ’ÒBÏ·ŸU†ÃáD"‘9Ò™K·ŽB\‰ûö¡ú‡èóW.ü@äéoÕ¶VÔcA¨•’Ÿ?Ówõär‰D† Èj.΋eϸ±£ 0×™ÁÃO10ïÿ1!ðS¢_¸“Þ»ü·–ïço#£0šBI „cÕ˜ðìøòPž4%RÑó´'§Öqð8¹,íìÑ™#]¿^Ï Ø㻥yËWuvô3uæ2º®Z†ý©«UYyæ\ùî/%üØ?8g ¹ˆÊ¾6éÓ iÔU‡‰×zçÂœfQÆ°º]w³¬jÛ—ÅÁ[åOí)nÒ\®¨f5\º¥þAZy>7ïhBýµ<Ópÿ˜®M%–øg¯†÷{z³ý}Kj%æÈ…ðã°ÇN¦ÎálueE¹ÀXkX5¯)î]†Iˆ!2yG·ÉÆmæÙˆÅâiÏ¥l¹Ç`1v0ËÃâkÌ‹x§ìÈéá¶NÔhíêê½~KvàPÁFzÆB|.yµòàa£BnlSjÎ +KØAíIgŸ(‹o×}º»È‹s7þxŸ¤YS&+=U™y£KÞÖ×Ô¡*¨êªmB MÒ»ŸÅ®¤æ¨û=7…ÔªdÓ +3Ž¢ëÙÜE¿€d{þˆŠ™¦$Ÿ;2õPF'7…nJ§óWÚB³Üi 8±®ìh÷M*Ãò‰´P'[K¬2'‰Ì‘Î&ß«’ +ÄÎnò½êèˆÖÔ"ÏÎ#ÈÌÞLB^:"GŽ ËÜ‘ ÚÔ8“wõ–är‰D† Èj.΋eωueE`®3ƒ‡Ÿz˜‘ø>Ñ/ÜÉÿ+ìrK‹üm$ô"c"Ù×(¤„cÕ˜ðìøòx?;iJ¤¢©ôÇÂõ„Ÿ;—vöèÌ‘®o@Ê ÝÉ TDì¿»È/²Î°÷ÔœÍz‚G7«:3³¤q»¯­÷¾`ë¿|MÛÉÓH÷ƒa\vø`ñß;Áá—ĵº÷J¾$lk)§8–¬½#WÞ–Ÿ»ZŸýCg¦½²Yy£âAm㸮{¨¶¼~W|Á:øò‡>{×zÃÌÅ5æÈ…ðã°ÇN¦Ìሬ(—×öõîÃŒ$`3yG7ëÉÆçÙˆÅâiÍ4¹KÍ5}};{S%ow=‘yr[¸zÕÅŸÔÖ˜ºÑa¬¸¦šCI_³&sÕ‡ ¾0¨êL]Íí©‰’°àªðˆÎ´TC‹J_~§vg|¡opÝþôT+T’¦Òäìšì"Ýý^dhbäþ QÞ5T\­Þw´t9­Ð~E–ëúÏ—¯ +¨W)¦5Ôsc(º–ù‘ã/!ÅÞ%è%x4ÉgXøŸÛñŠ1%R°MK‡ù+m!‹Yîô›®ìhƒû&•aKêB s²u°Ä*Ãáp"‘ÈéÌy EwìD–-E±hKËä÷yñÊ€™… Ï¨bÆÆÑÆF49ÉÏC>œÙûz+r¹‚D"Cd5çŲçĺ²¢ þµÃŒÄð]ág¼5v¹¥Eþ6š O$û„Þ!Ř@}Õ`ç½±¦D*šJÿçÉuÎ8'¢{gÞézô!‘¡ÛYŠÈ¯û¥BÖi¿v¯Ýþ¾J6®{Œ Ë•­çD…›ƒRœr‘É#8º=m|žX,žö\Í5廃ͪæ}Þ@d^‡å@ø¼Ô"x{ýÑÔþ*:õ혮õIgSó‰#wجÚè˜îÜ«#­=7 +c㊷ðe§Î?¨”ÉŠªÊÓ®5TèÛúÚÇêÚû®•w|+’2yÅ WÝø=ù¢›×./ºo©´Ò¹0~öØÉ”9V™Ë‹vOgªúþë™l<†ÈäÝž6>ÏF,O{.e‹ +ö÷ÙÅ`Ö‡Ö„‡ !Ç"«U+¹å~; BöT|“Ò]§~ü/ö˨©+ç–f¥²Z ¢¢<5qepP@Bˆ(*BQS@Qp±ÚÕév§>W»­àúAˆ`ˆT"ï÷+@äeÂCpAÀ ÉÙhuœÝYt„q»s¾ùçäæÜܹ÷?þ3s»{%÷ø<¯=‰$ÛÊðãÊÑN¡4&²p›W)sgǵ(E[ËpsƒðÚõÜÐ㵑1OÊ„ÍÙ¥E×ãËî¥wŠ[[s«³BÎÞµòÊ^eŸ§e‘V~bÎ3°7߸ӛ%4θ)Œ—*hMÛiªD',aýå5§uG¦DýÏM¡¼¸LQ^¡ÀÛ®Š›´ýd=ðÉœ5Ôe^Aæîû¯šø_#Ã{0£ú˜è­ÐÂ"Ãápg6ÜÍ8*¨ÂxsF=ùú@ @ ˆÿ^¿«vwÁÂBØÜ•ÊßÐ{«P("‘ÈíEšvLCV ‘`F÷ÃO+†?ÁƒMtõ5]Ž_€]¾d>îç#d˜ÊTÆÓƯ8("‘L/"ÞÔääÄŠê†#L¤?»´ÉÝècc"©]Ö?îäý>¾;ÂLéþoEÆ4Ðåi˜e3²œ‚ò_”ò LJÇ&†‡ëãâoÚ:Ä“Ö /žïiyÞQ'úáû<:½ÂoŸ,õž¢«­· ·ôØÉœ€º«ñÅQfQñ­{‚ù2Ig_}{KbŽàä•Öá³­?µÈúlM~sy³šWY2¾0‚Øaز“) YÁæÌÂÛDöžšJœá7²P'®«£ËårgÜWcKîø5!ð «5¦òQÎJÇ&ÿ¿6ÿG^È…¼3i¡`°M&¹›ÎgîášÛTùf¤¾f¬«I}µîYììÙþ÷kã­mc²)ŸWqñÇÆÄÔÞŠFiZ^ñOQ•)¼Nqscjî§}Qó-Ó5‰EsŒËÁÊ2 ó´%à V>ÞÛÍ3lI¥Þ ÆUp“‹a>ŸZ SÜ”ª"‚2Õ‘±Êèel{³,ØÆ#U×`2CïÂ&ë9–ά sw,ñ½Ó‡Ž…åÁ6£î2Ñ3ÔÂ"Ãápg†ÝÍ*¨T¼| ›š`i‰J&ûuþ7´¹"@ âÿÕ«ql†VÍÓRn±S5‹?ìS½B¡ˆD"´iÚ1 YDf€Ý?­þO6ÑÕ×d^»|éü¹¾¶‚¼!oŒ¥Ágí £þMÑTƒuI øÀs8b“ûJ`LÜÐ.˜ w½ý{vïøÑê÷çzC§;@'ÛpksÀ™ÆðÈìß眾ÑU-íý§8‰Ÿhã’`Lÿå섬ýy{CùӶ:—2w=‰MïîjnÅÆ–_ø©åîƒî¢Ú†”ŒbN\íýŒÇUuÂ8>Ïå«[ºV¿û¢èc³b`\ i™²Ìæèjwµ°ªl6|a±Ã°e'S²‚Í™„·‰ì=…%îÁ&2üñF °[ëêèr¹Ü÷Õ ÓhẀZ²|K,0à[{v'dŒ‹Ÿ<©7—zÚäCýâèTÞfï»+lꃿoNôõJcâ³·ýL¦Žªk‚Ê#ý]}õ5†ÁŠñÕۥߞkHI}ÚÖÞ–‘¶†q èfƒ*`"&åsÌSYYµa'k‡@Ò4³Ž¦v‰—Ú2÷Zhƒö3duM¸ uA°:DQ!Çrœ~ÑÉã('íca,&¸Â,/eýÐ} ñÑjGƒíÁ«·íË’â=ØfÔ]&z†ZXd8ŽÃá̬»YB5µnÝ]*O8_úú¹êÍ“@ @|XT¯ÆgƒÐÅU€réRUqñ‡}ªwB(‘Hd€ö"M;¦!+È 0£ûá§ßàÉ&ºî5]fú{ìòÏ?û t=Ìð‚wÝ`”3Œ¦Â*ŒvV¯…}¥©Mƒ ®0ͽ癢Œ-ÿØÞ38îäý}»wy‡;Ó[wŸ¨Y¶õ&ø,s£÷Çä§ÉånæEÜî¨m‘?Çñ’ÖÓ¸ä–SSÉå£]­çÏ?´u* xu\¹©èì|!ïêx”Ý”œÚ["/¨Å¥”Fܨç§?®ª©‹Lä®uýÈ0–ÓJ`Zˆ³LÖ·#Z»SiÕå³á #ˆ†-;™²lÎ ¼Mdï),q6‘á7²X€ÝZWG—Ëåθ/¡¤Ñ™æxÔ^à +-Z¾…ô¸V®- |EÏÀpÿà€¬wôéóa©Lx)6…ä–¢o]à;E­t¼»W‰Oßê–J´) —å–*#J墿käñã¾üJáéËåÇN6'ß’J»âîç¬aðÀ’|`PŒË€Q¡†Å‡VYm÷ô®•ˆgÖÑÔ.1¡½×—&ó@Ó)K˜é¥þÿOÕ$z²êjLJ=3Õ”Éú`ºåÓ=1´@²˜;gµ£+ØÂ}«}ï4¹cay°Í¨»Lô µ°Èp8‡Ã™Yw³ƒJ5µl’&¸Ž„í«ªõ$(‘¼>ùË¢"@ ñáQ¿£ö÷A{{ì.^ æ|è'z„B‰Dh/Ò´c²‰Ì3º~Z1ü l"Ý×ÔÐtv¹N#ÔaE~(9ëດ}kî’2­Ë !e†3BH“™‡ÉØxÿ )õ«µüÀµ¹‡ÉhKÏ–ìäOŸÍ†»îÙάc·Ç;NT~næ%mt•gÀ‘ñgíònqÛèÀóÑöþšsœÄ¶)ºVÒo.ÃîÁ‘®'‚ ?ðþ`Ïÿ¾&üì@­hâÅb¸w¤§s¤¥MžžWwærõéó­ü´§Õ饸,<•ô¥eÀ¨˜äâÖ&èÛÄ[3iù•e³á #ˆ†-;™²lÎ ¼Mdï©©Äþx# uâº:º\.w&-©‹¤Í¬=»C¶ùäû+ÂS¹À€»„TøåѶ„´’Ú碡ÜÊŽ«ÿb¿Îƒš<ó8€?€’ 7E™ˆ pI@@‚$‚ñ¢,Ъ¸,VëÑqÝ¢µŽbk·A‹Qî"GHH8´‚"5.]/Ö¼»]Í»/âníìî #öç3?ÂËûÎ;ïó}~üÞ™ïJÌ©¶øÖÒ¿oaÞÈžê‡{×li`Dwb4…%]¿c¤µíáPÿ“Kýw:TC{¿îMÏíIÍÜU2\[5´åóNjLÀk€ úÙ\묘Þñy~1ÉK–÷hû§3ÔkD©YX6Fá: ýksüª%¾ÒW3Ò’ÿ¯ÏüÉã‰?›ò˜õ«õ9ŒŽu•é>!Ž†¦³ü\Ź^‰Y”„4O~Ú}G›%’Py)ŽD3´e F&“é)>èt ߉÷*™¢» ÕMžœáEAAAAлðâÐ/°:Gºc¦Wó´Ú‹L& `i‹å +‰âš0“ÊO'OY‚ ŠHBã¯òt%[¡·ÆÑm7Ä×F²Cñ’|.ŸÏ%H# RîËŠ$äM~5—ÅÆK¹øõ±„$š…þ¡ îŽ=ÔGº‘ŸFSRVñDC+7œqb æTxq.:ñóûÏîŽ?½ýâÖøø™¿žþðÇì˜u¶— +>ÿåüðXÿ½›·×ørNÌ éL+þVùìöèó§w¿õxpèúáš¾¢­ç7lº&?v·³ûÊŸ¾Öy-€ ønதfSV…Û‚›ß~æ´>r¡r%…足blÄRº0“ò&-{Çšì¸ ƒLò²F³ÃÉåòiÏuåÆ‚¢õë²ó¥k“°ÔjSz kQoFñ߶î))¿¶©´?µH9ŸWoFoÂúœòkWnéÏþDÃ{¿ä_3—ÞL‰<µøíÖ’«‡d×+ˇ¾(í[SÜ#\Þ›(:·VzþÓmg3 Ôîá*€o.'KÕl÷JB˜Œ³tMtòª´¬³Ú ÓjÒòôÐ}‹!™£c‚NGV¸K |Þ¿g„KÈC =ÉÁ£ó’ËÁ¯FçˆMØÀs—†»M1³ÌCÄ¥Ro´ã iž‚´)úŽ6K$¡òR<‰fè£1ŒL&ÓS:½¸| +œx¯ÒhÈÀ€At3½"‚ ‚ ‚ ú/Æ /@œ\®®™^Í[Ðj/2™,€¥-–+$ŠshÂL*?­óãϤ®Ü]:\}d¸þèÐW_õåÿ¡'iEïû)}‹¾ß¾ýlªTMU×vàÜl@¬6!WºqdìeÒÈDQâRõéÓúÈ…Ê•¢ÛΊ±KéÂLÊ›´ì í¸HBdI^Öè£qv8¹\>­™tèÏãGOTÊî¿”W|³w_ƒä÷MA‹ë¬ýŽ÷ZÃyŠ9>]–þÌ6Zë,w…Qià¡2š¯2ñW˜1Nš’LœZL]ÕÖôn{f§»¿š¨ŒSEFu³£ûÂ9}Ü°Î8N /º9˜«$0Ú±$¥±[%¥’~(~垬·n,/;<úãíi õ*J¼*ÛÙbÃBbzˆ‹˜é bþ:&¿cbR}qI~¸%,ÇÔ`§âb~ˆ³³‰±‘Åì«8Ç RAÚÔsŠ6K$¡òR<‰fCŠÁÈd²éN§/»võ† ïUoodpðµ AAAôÿdü’0ñÖÙéêœéÕ¼­ö"“ÉXÚb¹B¢8‡&̤òÓÉS– ƒ"’ÐVyâÉ–èísÍŒdÍÿù›ø{ûc‡KØ#;Ø7wrnîàÞ,ùMìäŒìD¯r~ÜõX{nÝß}Çoë#ݳ'Ï”­{ÿ|ààÎ]« +ZÈÑu&ÔãÀ­Km· üÎÝ57TaîÓ<˽ •†•I€Ê*¼ÕŠÕh>¯qŽK‹9Iýžo7>¤“ª ‹PÇEkââNEÆœ‹àô,`kâ´òb[ƒ"TNóÛݳ‰u6ô#Ô°²E+÷f¯ÝœW´{Wéå+×ô‘ •+)D·c#–Ò…™”7iÙ;ÖdÇd’—5úhœN.—Oc"Ýä¯çÈßïýcèÒðÉNåQÙ—‡ Öæ&s ©2¥5·6મí€Ðnàª6rSÍëäSÀ£¸«“Âpn›±C'–؃%3q?m…ïrrëò ÷z³üƒXg#4œ`Uh„Æ/\MVy7ójS²+6l=°§´µ¹íÞ؃iLôº“œNÀMùÙ¡øŸö,þôå˜ìx9&¯WÉ«ô*:/£»£ž–ó†w²E[`lÈàᗠϢðÓÈü4Ï©ZFI¨¼G¢Ú2 #“Éôpz½úg¸z +Ò¡ïUooÝàÀÌ. ‚ ‚ ‚ ‚þ§ñ1dÑ¢‰/°ÎÎHWçL¯æ-hµ™LÀÒËÅ94a&•ŸNž²‘„ÆOõ$xZ¡·;Z`[Ö ­ÉH•‘ñò8¤œ‡”Å!x¿)ôLÙB¤Œ‡I@ê…÷> ˆu󼃯ÝÓGº¿<¿>0\פ*;(;þÑ–†˜¥5.•†î'€s3À«{; )Q*¢Ê€¬^퀮¤fàØ4Û^1‡ØeNí±òî¶õÔà=Tt/5Óÿ»€þ à¾ˆ .n°‚ª`«ÜíïQÛlèõ¤à£þ̼Ò6ïßµO©èðH¹P¹’BtÛY16b)]˜Iy“–½cMv\A&yY£ÆÙáärùô{Ž ‘‡÷Ÿ~y°þdÕÁíÛd+~W.¬"q-|[ÿÉ~¹5uåqü$@‚U„„*„Àͽ7!¼–m!È3vZQ1ê:Ë®Û2û~µÓº£[Pt ZEÁÈ(Š€H €""EݺÕítYE׊òHrïÙ› ît»¾F2üs>óÍÌ™dnîïw>÷wgK |-ðïfû÷Øó»Ù˜žEžäèo'{i‡ÃR-gy¿ï‚#ÿüþç¼°s<ñ.¹&–\—„¿Ù÷Žnu‚.~Í™è5íÑ©-™ËÊO|^yJ­þêÆM3=÷ =m+ní&Òüí·a°5ÖfÀýÌtÌ&åÿ„™ˤ$ÃÃi°%ËX“º%|)p`'-Ë.ey¸%/P†g)È”\Ì›çÌ(ãr¹J¥ÒVÎ)=Üø +FF2ïUZ GGç·$@ @ ~M[°ããTb"d°ž^P£™çš^ƒaD"‰,rw\%çå å…dF>þÂÈ +ˆõ +aÚfÌwe.÷rá|¹-6d£éæªDKö®1ïM¢þ'UIæ*)µW +«“᱌»;¢Rý@ (òÖ·wmÑEÎ$ü÷ø£¾Ñáú†£ËË•ë6ÔD&Ÿð‰já;Oü4€§eû÷Øóuöx/ ˜°»Ï¶WçM½ƒï€ƒÿ £ßÀ"^¿vÎ/h˜»~u…d(zEo\Œ6>^›¨‰J8“Þ².¯ágå'vïion¾ñ÷›&3e-ÂÁE³íÒ%9¥"y!ñ2Ê^3Œñ,…PV€YŒ{zxªTª¹lɺQŒ2Ê¡ šŒ¦[ßþ£ëLÛ‘]»ªËÊk7•ž\õcµ_Ì©…â®X/?Ë&úÙˆ~¦ü;¾–Ë×qtö|=Ç¿o!Ö¿XxÞ]lð¹ætE <ª}§}mZó†wëó êŠKU¿ùÝéššë.<š˜`l™ŸNô\c¤aLú3ýU(lS’M{¤æªÿŽ†ùqÖ<œÙ_áþ$X/3}‘¶Eâ8v!ɾÙ%A™EDFž =Oð"ex–‚LÉżyÎŒ2.—«T*mÑ-°h¸þÂÈ +ˆ,…0}“À_Ì\îéâд5ªÖR_¤NW¬ž®H˜®”ÎT&ü ÒiK©}I°&müÓ¨T&Š¸ùÏq[tGSÎ@óýÍÝ;]݇*vV*J«×n¬Kþ¥wô)¢øw~7; Ï>Po‡÷rÏA/ðíbûhìßì¶_Ögç;Àñpá¸C>bƒèu"äjhðŨȾUqÚää3éòöôõÍë7ª‹ÚôÙN]£úúèèÄÔÔl ¶è‹¡DQÆl{„tIN©H^H¼Œ²×̬qYäj1îá©R©æ²%ëVÑ44™hÚ !~7qýÚMSSí®Ïlÿuý{ÅQò&¯µr‚:Þ,¾ú©gz€õ€@=‡Ð»ˆ{]Ä:G¼‹Ã×9ö8“ý®A=Ä—}„Ãþ„>(¤meLcÖÚºÂÍÕ¥ï+?Ú^_U9ØÝuol R–ÛS–*æ\™å4ŒÉÈ p†ò`x\fÚ'²ÌHâÌî'y< ÌÂ:8Ì7–µ¹J +ëÒg¦…û»ÐäåÙ%A™EdFž =Oð"ex–‚LÉżyÎŒ2.—«T*çº;[Áì=4D2ïUZ€Ñƒæ»"@ @ ¾MÓÖó+¤oߦ×eC ¯/ÝÕ5ßu½ÈD",vãÆÉy9Å"y!‘‘?3y‚Ù…¬€ÈRˆÒ6á<Ü•¹ÜÓ…Ó¼UePR&+&+§*¥Ï‰qJ½¿3& sÀ„a·Æîؤ=R&Í¦àƒ‰‰áá¡Æ#G«ÿqͶ²·¨ƒ’›ßkcZ€÷±&½,A? ïeaÝìÀn.¦w&{œ-7@Ëáë`zá9·àK^âËËÈ‹Dohèéø•êõ™Ç 7þ@q°üç'÷ÓÝûm2[nNÏ>!6¡DQÆl{D¢[N £Œ|"ˆ°æÙú^#VãBYd5îá©R©æ¼/fãQô$ÍÌjš¢N?¿÷õÕ«Mµú´®¨ìDü†“þ MÎívÁ êÂ.@v\Ãè†ö{E÷yGw-–´r°SöíAÇ¢Óïò »BÛߎ=)KWæ¿·c[ÑŽ?üB¥:8ríÒw÷F£ÙDSFHihcÌc+Ûà åÁð˜Ì¸7™“çψ5‰&fR§MN)Zá Ø¡©Ë³KD™Ìæ½”è¬-dJ.æÍsf”q¹\¥Ri“öæ«úÊeøVͼW£¢àðð|ׄ@ @ Ä÷¡éÙ|ð€þó'´X ×­ƒ—.ÍwY¯€Á0"‘H‹Ý¸qr^N±H^HdäãÏJzž`v!+ ²¢´MîÊ\îéÂiþ@ëÒé)“ “‰S•ÒçĸG +¥>øëÊlœ‹ ÃnÛ¨A“šÍRÐDXóL}¯«q¡¬²÷ðT©TsÞãê!M?¤q4=c†SFjjfjbbtÄP_]}`û/d¿_™uÜ+¶‘ÞDm€lD+´¼Ã)¬Û+FçÛîÑÀÁNØñÙ˜ÚS;¨ÝðSddKRªjû%…—ÿdßþ½ôcîL§gÌf£Ñlš¡©ÿ°_>@Mžw‹ƒP‡b‰ˆr€@ò’Ô+êµG"’¢àªñj¯V{Û]o»©³ÊŸ„¿fHPþäVA;êÖ¹­óv·Ú»6vmoëÄm-­ôŠyóþyžgOBikÛ õ$çÜ=ŸûòðÞûÞ›çý=Ÿç÷Þ½DþQÆ#ôŒ¡dù\Êy8õ¸Ö,Ü&¾{Ä5ïí¶+§rM°2'z‹Y^€›Ô8³h¯²¤ì퉑±ó°2‘Hd³ÙüRÞ¬3eáãàÞ=0e4›Ñ?o>äG"@ áà×FYŽÂ;cHñ™î§ó†J¥¤(*,\”žST#ϯ uF‰¾Lê;†réf“,·$1F†o‡ ìR¢î\Ø¡e¬j—EÍX5>Â5k=gÜ’^D'ÈVÞ¹íêD“NBÀ ¹bxÈ ãwÆÞúë_Î66tìy¡'¿Ê¡Ð¿²`ÝÅ€ä!Jv…’ QÒW) ¯ÎK½¶$ýOQO_ [1˜Ø?0G2˜09‚JI»¬Éî~¶¸±fÇ‘÷¶Û®]ÿó'c·'Y·›œ€xNïŽÙÇl:€—=U½°È,˯HšÑ׃ÇPNšdØ{¼bÇx„ØápÌz]BÜ€åÀñˆå¡<'÷·ßï³wY¾ÔúìÞ–ÔÂæˆõíAŠÓs’ìA²®@ÏÎOé¯éLë _Ñ"i{<±%8¡)xyãܸ†Hº}m†£¼¢÷Ða{Ýñ¡Ë†?žàÜ@˜À%“<ïæA€Ð?Êx„6l*‹ ¡Þ9”Œú \k–Ë’é»G¼Qó¸S:µÜ™\ÓÚ(*0`UNt‘Y^PAëô÷iÒBSRö¶„%±ó°2‘Hd³ÙüRÞì3­q£Û·=ïUÀO_€È}E @ Â÷z¿NáÔüö•G§ó†J¥¤(*,\”žST#ϯ uF‰¾Lê;†réf“,·$1F†o‡ ìR¢î\Ø¡e¬j—EÍX5>Â5k=gÜ’^D'ÈVÞ¹íê„&œ@€ãdÄðSžFF?½xþ×ÖC?=U¶¿kCIWtfwàŠW(ÙE*©Ÿ’ž§$(Éå¹Ê+‘O E®ëÿaŠ#(±'`yo@|ÏœØ3Á1ÝbúÜ“éý…Å]¦Êúç÷ZëñÚÕß úŸ;ãâ9†‡nr,þ}¹:7T*%EQaáÁù±[w+ +vÒ:£Dg”êË|ÅP.Ý\-Ë-IŒ¡àÛÅ¡Aƒ»U¨G;´.K¦Ë¢f¬áš5Èžs·á™-RQ¢lÕ­‘QTr!8 !Ë €áËaSø$ÐÇw?ïhþÙ˧ªÒ”QRa _Ýžj{buû"Uë"Õ©¨´Ž¸§~·¾}Ù“-‘Jëâ•VñŠz±âøÒäãÉëZ [zö8Wwò÷ýç‡oþÝŹY<€&è>üQ•³é^öTÍÂâ]ò‚2])=£²Œ¡œÞ\-ÇËe^ãb±Ãá˜õº Çä  €"¼†ðp^kwÝÌ͇ß|ýÚUû¹ßÖw k:byõ¨7Ç.=9x¤îÒѺÁcõÞÔ]Ây¹nðdÃ`ƒõr›íçûß¿þ–kl ÁéÉ€g& B7ôÌ _Ú?|F1.„zçP2êÓ³­q›øîoÔ¼·S¸3ºª´(*ð±UÚèb³·IK%ú™Œçí ·T˳·%DÆÎÃÊD"‘ÍfóGu~Àk¿KÛÚQµ]ì‡;}åz¿@ áÿøåðÙ(ÊÉ—.ƒ×®=ܧº/œN§R©¤(*,üñŒüØ­»ù´®T¢/“ê´Îè=øFŒR]©4o]T#ÏÙ.‰–„áÛÅ¡A—ö(QŸœÖ2™“µËªfî«ÉÆ¢v7ª¹–¨Sûù‰õ›â嫆GFýQ@ÇP€ðŽ B!œ1—ëÝ·ß}½wà‘¶¾ý?ï1¿Ø]}ðlõógªtUî·Wî³WÖÚ«j;qLµ5ûìÕµvó¾ÎÚçN<ÜsìøkÝÝ\Ó56öÅd€x9º!dð,‚©íáÌUÏáeWe†oÝ-ŸR¦3ÒXÙwøzx~г pòvH·ÔÈsK%±´ÇxDDDooŸªû}µŽ"žX7˹Ý‹Gö 8Öýµƒ©L nÖív3üoSøÅ–÷G„žÎ+‰¡œ/$#‡mÝ8Ùø#ƪa¾Õ&Þ“ž¸ðhÑMtFÇvåT­YBý `evtñ.EA%EèK}‹“æU`eŠ¬â„ÅÑ!X™H$²Ùlþ(Ñxt8H&ÃïU”–†Þ{ùÏ@ @ ÷œà¿ÿ…Ö¦áX:^zÈu?87T*EQa ƒ3òc¼GQ°“Ö•Jõe}­3JôF©ÞH•2©ÎèI~]dVh·K–JæãÛ‡ îQ"‡œÖ2™.‹š±~wÜ kÉÚ²PWîgÇ×å-Ÿ“(SÞõGuØ @p*x€ÐsÌ#Ä{.¡ñ»ÿe¿Üƒ¢ºî8~÷ýv”7ìŠöòØDAcRÜeØ]^Š¯¨¼Q0øÀ¢“™ü£ÎøGMié®;3©à«&>jê‹´NÙ™6™ÚtÒi§5>0±v÷œžsY‘Vè…Îï×Ëáœ{î¹÷÷½ß;s¾ûK÷Ýç¯\;uîwÇ?ê:vêJç‰Ëǯt»|´óÒѪŽŽK—;]éèìê<~õÄÉ«'O}zæìÿpíîÍ!Ç¿‹aŸ÷!*»Öóx.B}m)»1'dézjYþjÖ©r-ë×`iÇ&Í€ãñ…Uâ8YH¥¡Ž‡‡:tè9='åúž`Èÿ÷ë¯Ñ—È£“Ç9½¥ÑÑÝÝm4¦1 £ ‘šJg¬ÙšZÖ0»°R[XEe¯ÐØË5ŽŠAªÔUi¯Kxµ)ÙV®™¥$Ó#’Ó[2ð¯Kñ»¯ÝŒö™Q›ÙÛ–ëm5÷î5õí5‘¶·ÍDFñÏÌøçy¸£ðî3íÓ˜™úŒ¿þýÖ‹~r„ž~ίôC]h4¼¶n+){†eʪ×SÊ «‰_:G%« +½\û_¤¢ÇÌ*­£RK¯ÒUë–¬K\Õ”b«ÐÄÌ "Kµµµqñè ľ ^Œ_r¬Ò2_¼mÀ§ãCù¨=×מKc²×ÜÇfäaR<4)$DÔnEïåáã%Þ÷í3£?%?võ–ä¥ ‰Ž*½ƒ:N ²W¨êXiýï@¥†XF²LBj]1=,ZN,“H$N§“ëzŒŒþª]»†fÍ"ßU? uu±ÝÜÄ †ù7ªßÜÄ«W!¡éÑå‹\ßÕ(èîvi Ã(C$¹e3«·VnL.©Ó•ÔêŠkôÅ5º¢-9"',kL,oN)¬ÔFÏP’éÑ +ɹæ¹øÂRÜY„Zñ ÞoÁ. vZ|Î\"äÌ%mìÊ¥CïYñ;>]zïL›Š™‘˜ùÕ?ns]‰ Ɔ†7HÙçæ‡TlK]±1©ß²¢Z}qm¿kÿCÚÁbîÒ³ŽëK×ê—7&U¼i°Wé¢g*ÈÒr¹¬¥¥…ë2L{ôbüJñ}sc‡ÿfþÀ˜äa—•æ‚ÍÈ£¤¸Øìì·âƒùø° ¼ÄwÄñFv #¤¨+ßL]¹ivI]B¿×ÃYF¤-­Ó/ßDBš÷êÌÐ(9±L*•:NŽË1B­úó—ÈdB"ÎÉÁÝnú!>ß½Ëõ]‚îînƒÁÀ0LRœe‰]ÚP\£³¯Ñ8Ê5ŽJ]a‘v°•{¹Ö¶FST­]\ŸðJI\hT ™>5Pt¸&É{ØÞ{0ï»–EÞ5÷µ™¼ûùÚs½ûXµSyÚL½m¦{ͽíï!ëï7ë’‚˜„ô…»y‡ãB ±Œ?mòs`ËæfRv]¦bq½¾¨Fo[ï¨ÐVj‡ø5v9*4ö +-1\| u|ZhŒœ,-‹wïÞýâ|‚B^‘¢•µbæl½Æ÷KÛývËý–œï[MžVsF|lFh»Íìi5÷¶š¼›ÓKFQpóœºÌ(^€PûrDY}Bq•®`u<ñ…˜î¨šPÒi+×Uë¯M\`SM•ˤR™ÓéäºOù…P_/úìsü«£¨ë*ú¶§Œüp7ºGõoT‘Ï‹¼rôïk'n·Ûh40 #• µ†© lꬼع¹±YÖØì|Õü‚'”¯ÊÊSÍcO˜oSÏÎ +SKÉô ‰ É¤¾¸5󖌓ë gÓ/lN¿Ð”þÛ¦9ŸlÎ ¢ ªô³›ÒN¿–v¶1í¦Ԗð`>“žóÏ[w_ècçò›9ê)q`wóÖí¤ì¡jI–5šx‘iŽ!¾ oÙØDí¶ÒWbž%vAzvf¨b²˜,-ŠvíÚõâ|â²¼b­”Çl{9ìâë§ÓO5¤žÛ”FbÂFãaF2úóòÉæ9ç7¥Üh8³!íÒÖÌkS¬ñSxbAdÂ$âB¶E5ÇD|Wg穇šÎ&t®…X“eU‘ôéSå +!±L&“¹\.®Ë02h¤|þHz¼ÈÓ‡w Â|]€ÿcР *m߸Oœ@Ÿ}Ž½ž ´qu»Ýƒaø")O,á‰Ä<‘D  D>=RñY Ä!"ýX*Šx|^ÿl¾DÈ – CD“dÂÉ"¢IDòÇ RÊ…J=G)ˆøt¦)×Òs¯‡ëJPBCã–íÛßê¯;±€X#ñ…¬/b¿_Ï(±äqIÉ5B1ˆ¾>yIüë +;vìຠÖ»qåcuÝ:š23Y* YPÈè‘ÆD.¤’ ÙŒ°m¹(8@<0$ +‘‹'I…"¶ò<Mu\ü„_ý©¤£ä•H®@Àã14¥2™Ìårq]†ÑÐçAׯ£N£¯n`ìÃ>¹0ŽðxÐýÈbÁÛ·£[·'ÐîÕív FflðÈÕ3²Èlíé¹Çu%†¡ñëä¶moѵ1"òwîÚÉužÂ¸r°ºn혫þì)#Èd2—ËÅuF +qݹwîBö´¯ ßÿ¶¿ÆìVõöœkö1 ŠˆÀ/r|G£ÁívF†a„b~DLP\|ptœ"R© +ˆ" 5û/9²U`Ä´Àu`Ôt…Z39B$‘ Èt‰H£R?_µ,=*?)¬ )Ô–LnO u¤†Ù‰RBíÉaT)aeéá5ó¢r¦ð&saî7w{¸® Àõ<ææm¤ìr%_¯Œ‰SD©Ô2ê1‹•jP{äR=.ö‚j1:*NIWˆ¥Ä4F*•îÙ³‡ë2 ±Ïçóq}@Øÿ:­¨¬ã1Ì¢¸€µÙ‘¥†p’"úcâH w¤Ò?µ€=–¤†×dŬ0†Ç*Å ï?ì—{PSÙÇëJBC÷+ˆ°¹yñÀ¨ëèVIÂ#É%€”òHÀHÀàBëªÛvÆ鎫#.‘U'hñAaíôa·ÝŽ³¬kÿÑœ F[FtqpäèTÂ==7âc–êìÕéï3ßçÞ“{òýÞß™9(4^L…‘,âV…Ʊ‘:%ù’b5ß Y¹:4I% +zw9y2 + + +êêêâÔŒ +1¸Æ¸\83“Agd1·\ Æø-(Màÿ +ïIud„Q«Ùlt þê«·èðêt:•J%B($Œ·IŸT¹[^Ò ÖÕ°Ò×¥éjÙŽÖ+Ò'­¾†ÒÕP¤Sl¦ŒMr•ñ½¨™Ì»hÍÆ}ôÔé‚Ñ£ycGóÆ?Ís·«ÇåùÉÝ®mWwª=ÝÚo÷)²C${ÓýGcÞåpïðk˜™™ñx<\¯åeü¢u?±=}c¨q—ÌÐ ÕÖ¤éë¾ëuIO^€Ú4oúTq=UѬP“£ƒÈ£ƒƒ'N|Ƶ þLNN^¼xñðáÃ7nÜàz-søÞ(ò)¨Ü‘ÈGÿh•0=ú‰ãÃG·Œ·«&Ž©ÆùZo´ÏWʧ*÷±¼±ö¼ {þìyÝ££[LkâPà2YžÈ¸Kn¨—hkÓt5i:oaú +Ö—þÓ>/i›¤›èÄÐH‰ŒÏçwuuqíÇ`nßf²×Ì’}•’àoìk$÷»ÌŸOÙ–c + r€g¾þšÓU- §Ó©T*B+"øªòóÇk¶ïV”í”±j”–î”–Z©l§´ÌB®J+vÉj?ÊÒ›©øÕ!dz|ÿòžuø²ÿÁ€Oâ®"¶u,–†?­ÅçuøÏe£Ÿ¬UÇ£ÔŒ÷ï=ãÖfÒ÷x<ƒƒƒ¾ßLZmûˆí¹ùu{³¶µ¤“D¶6²¹øåõŠò¾ ä5mm”WÚu{×Ðf*!%˜<:X(ßáppíÇ`îÜaÖ¯›Eˆ‘Ë—Ë[ÌüÆ œÃÌRÝãX§#Xœ€¯~Ãñ¢–‚ÓÙ¯Tæ „V„ó¶”$Wÿ<£¼I^\/14HHëë,ÔÓKeÒí­Ú:*!%„L~Ñ–ƒÿT†/è='ògç¤ñ“g¾ÃtâÏé‘#ëŠV¡TYîwC£\;Æ—%¾|ù²Á`Ðjµ—.]òx<~Wýú\±»y/±=Gñ³ÖŒr«¬¸ž24P~a½&Q†z)iIâU­txe›xxxĹsç¸5Á/ˆk×®Ñ4½lÙ2²<¡PØÒÒòàÁƒ—OùјfðFº:-¹~‰ÿX2{ºÐÓ©ö<¯FæUàñŠ9•o˜9«Ý•+BモY”XÕ–^n•Òæ甧¡Aº@ÔV«l{kzþ¶Ô¨øŸOø|¾Ãáàäçÿ â÷70d_U(ð-׫?˜¹¿îq¬Ó±Ø„üÍUN—´4œÎ~¥2!´"œ·Ù´ýCEÙN©Þ$¦Í”OŦEš—”îTÚEÕi ©!dzŒ0ð/f㋦[÷Ä®ž²«Ÿ'ÒLW/fŠÈ®ž¶«fOæã ºáOÖi“Pª,çÞз>0Ì\”>Ü·o_LLLXX˜Õjð»Á¯Ï-M{‰íJUø¶–E‘ùåõªšÿBÚ$.ÙAUÚäºÚ´Dñ +ò訨¨žžnMXÄÈÈÈbccÑ<)))ÝÝÝgá\e7ÍàtuŠõœŽ?/ž9™?iW=S ¾ª™«);[/ÌgÜCOŸ)²æÄ£å++w{¯“ÐÏäõ´l}*µH+lrMeJ´H@ áóù‡ƒ“Ÿ¿t¼1 2ë׳ûª"»\øû Þ$ÜcŒVË`E"æêÕ·èôêt:•J%B(4œ·Ù¼­EQj‘êMÚL½Dz“ØÐ@U4˵Õi«Ä¡dz¬0𯻳q/={¦èq‡ê?êI»æybÇw¨g:5ø¬n¼}ciêòTyö½¡a®`éïﯪªÈ Ç+,,¼råŠßm Ã}Â6ë²Âu„72I„6½,²WIÜØ$××QïIÙÄ££cz{{9t`a +7oÞ$Á¡Å„„„ìß¿xxØw?‡ÁÍ`¼‰®M ç/3p¯aúTÁd‡Ê[/ª”¹zñtªñ9ÝôYmãZZþNfQb¥M^j‘ Ø\L‹µ8²‹”DV°=%.1Ø÷>;®X"Þ¨îÜÁ¹¹ì¾š‘ŽoÝbGç>ð&1:Ê°ØxsåÊ[tru:J¥!ÁßlH®´)J-½IB›©IoÄÆ&¹®FœD…‘é±ÂÀ/Z”øwúÙ3…íêÇêI»æy"ãjrÃt§wk'Ž}`óRekî =âÚ <11qèСÄÄD´€ÈÈȶ¶¶û÷ïûîaæiË-»÷ååj"+mòR‹”$ò’È^]äû‹ë%åVm¢VËØÄ££cz{{9tài +n·ûàÁƒ"‘ÈY@@ÀÂ)Šêëëó›òã3ƒñFº:5õÿ*÷OŸÌŸìÈó•Ã‹+…m=j|Vû䜶qm®mÀf³Y ø +ðò_öë?¦Éü ø[Nx!+Z~ÌǾý…(­§É༠+m¡Ð–B¥jl:êG¼e.ž—83½SŽZðœÑÙd—Ûâɼ›ÉýÓÓhÑh²ÝÇYç!¶ðýîÛ8…"·ÖKžO^ÊûòmŸç}ú¼ÉwVI[÷íÛ788Â<=çi·fES=»sð½§Mõ¬¹pØ7/›”‰a!áiUã“%îS%õë’©ð°Uš•’Š:‘¶Z ¯žcN$ ¿nÜ.ÕlÍJL‹&÷¦i»Ý›°Èw¼z¥g ŠÂþæjh3f@“»Wâ»>¬Px7°1±øÂWh®eo§³G&“Sʼn£†TSƒÄP+ÔÕ0ó†Þ­í6A*C–'DGœÛ!Ãg´¨K3Ü\ø¬Y9Ú¢iQúB5äd¡ï¼ÊÓªÂ'5O?Y_) 3Å9÷ô‡ð&ŒŽŽ?~\$Q¯¿gÏžY  +Y«­M$1¹*Öd ´e‹ ½Eh´ŠIß3¤ÞŽó¸<‡Ãªòý†††š››SRR^Õ¸)999çÏŸaªn„óµæ,6Õ³{%>­w·«‡›•#Þ1)œ9#“25;c¾Iy~ª´~]2¶JÃ7Ù¤u"]£«¨esVR›Üš¦ív{oÂBøFëÚ5”‘é}®2 ¾rÅ{vÆcäߺúw©CCèè”—ªªÐÍ[¡MlAœÎ™LNQ'ŽVRM C­PWÃÌz c´JJ· RËÉr^tĹ_æb‡nüDñps!‰‘Ê‘Õô&Çfåh³r¬MÿXúäã¼òŒðL‰ìîƒGA.ù»‡ñýû÷wíÚÅår©9-]ºtÓ¦M×®]›¾|êM‚¯ÑÚD²’«bM¶@[¶ÈÐ[„F«˜ô=]ãí8—çp8‚\õô~ïÞ½††‡3wã¦ÄÇÇ:thpppú[­ƒcç—š³ØTÏî•ø¬ÎÝ¡þD9ì—ÌÈ´c­*|ªÔýYI<‘Š[¥áWÚ¤åuB}ÕüM÷µL¤1g%¥±É iÚn·§ÞÅ@¾§«÷…Ë…÷[”Ÿ~ó>îí¼¼wûŠ&öªä÷èsäq#ä?÷ÓàtöÈdrŠ¢8q´Âjjj…ºfÞÐ[£U¢ÝÆð™ådyâ2ºû×kð_+ðíX«ÊÓªkS¹[UÏ?UŽú£¥Ðý©Ò㽤oSá. þsÙ“#?/{›•)–Ýýn $å_¹rÅh4FEEQ`±Xk×®=wîzúÛhm")ÉU±&[ -[dè-B£ULúž.!ÍãòG0Kž~Û/]ºTRRHã¦DDDX,–ÞÞÞW½íÿá|íV&šº½w5þK9ùþ‘i9#ÞP¶(ɤ¸Û +Ýíʱ¶áÏËžŸ*­_“HE°rŠù•6IyPW%ÐV h™HcÎJJc“òiš¶ÛíA(öG€¦ý<'ÏU·O +ýô“&w¯¾#šø{<¤)-€ÓÙ#“É)ŠâÄÑ +Cª©Ab¨êj˜yCoaŒV‰vÃg–“å?[Fÿýýuøkþ¼ ua{>®FêñvõØD¨ÈŸ˜Äñ"Lþá´ilÉ3¤±Ò%ò÷ ¿v—˵wïÞäädj‹Å¢æÄf³kjjîܹülgi´6‘|äªX“-Ж-2ô¡Ñ*&}O—Ææqy‡#$µ÷ööîܹ366vîf½iw{{û³gÏüo… +NÎc¿«3‹9Ô?÷Ëñ…ÞïÿÔŒt¼˜ÿ rS#ò]ÅøT)þ›Ñ}V¿cm2ÎÊ.â›lÒò:¡®J ­Ì?¤õ"9+)Mj§iÚn·§ÞÅò>IÑÔÓuòÕÔƒ14¹[õAÇÚ±N‡÷|€ú]?¡«ÓÙ#“É)ŠâÄÑ +Cª©Ab¨êj˜yCoaŒV‰®ŠIpÈòäeô…]ïà¯*ñÜ¥ñƉÜUüƒÐàÏŠ½—Îêð—F×™"ä¾{÷á“ ~ýúu³ÙÌf³©—a±X/=O„……­_¿þâÅ‹…²ÏÖ&’Œ\k²Ú²E†Þ"4ZŤïéÒòÑ<.Ïáp¹êáááîînµZýªî"22Òb±Ü¼y3˜™c\¼©63ŠºõÁJüµ ÿI‹;‹q§æÅhtþ`R¼Q‚Oëp÷FÏI֮ͯ "—HÕ+*wHËëDúꀺf¬iÌYIiÞï9MÓv»=˜U¿6ÿ³¹úñ‡⊠+|¬?œy-ßþùö¨ýýxËfŽseøê7¡NlœÎ™LNQ'.RaH35ˆ µ"] 3oè-B£U¬«¤0²<žÞY-é,lS÷Üà:´aàpÁã#úŽÓ¢ÿã <:ªzÚ¡úGC&³”Ê^WÐ÷èI0«v¹\û÷ïçóùÔk‰ŽŽ¶Z­·oßfγ4Z›H&rU¬É&1Ô +iÙ"Ãßq½…ÉÆæqy‡#˜%#„nܸ±}ûvrÿ_¯qS<øðáÃ`¤í{BUõqoQ_XÒG»Šúüçï=üˆŒI¡.þ;‡ýQøè#2GŠ‡‡ †íÅßþ>o«„÷ÖÒðUÅüJ›¤¼N¤«ž¿é¤YF«HcÎJJc“ªiš¶ÛíA(ùGá½k=·P^¦#QYúö_hæEà îÞC +¢(ÌGçχ:ŸÀ9=2™œ¢(N\¤ÂfjjEºfÞÐ[„F«X[-Ha8dù’°0I"»<;¡beBI6W¿ŠW)KÜ,OÚ´æEl~'™+rõ9<ÃJ®!;NÊ kßS?þþûàÔëñx._¾¼eË–¨¨(j!X,Ö¬3yyyÝÝÝn·;8™ÏÒhm"9ÈU±&›ÄP+ ¤e‹ Çõ&CC>šÇå9Ž`–Ü××wàÀÜÜܤ¤¤ŒŒŒÕ«Wggg'$$,Y²dÞö‘v“%d­D"áóù</??ÿĉCCCAË¿vûÿد÷ ¦²3à—Wn@ !€H4Mnà"IGj!JÂÅhê(«!ånÂÚ:ÔNw¤ÎÔÇ?}Ì‚Žõ:³ë:ݦÛ;Öî´ýkéÌÖévìLèÔ:¨XXXÅ!ÎéI*¶Ä¥&Úù~|s9ÜpîýÎùòÝ™ë!™¨Ä›*%ÖÊ"ë +©½ºØa9fÛ¤8²¯†ÿ Ÿß\]ÄVImoHì+‹Ö}I\‘¶(_¸¦e™Ã«kÙ¥nrÆS2ÆÎi,­J™<›Üš¦ižç¶Þ…@‘À.` Cž«ˆað/ÌžG(ÙÙóŽa¯I$¸¶úéL²Ó‰Ÿß?¨×(ŠëY¹Ã£eÝk3l.µÓÚv*ËU"*,%-5%KžŽ´:=/3#?+#?óiˆ³2ò²2D™9Âôl:m‘ 552ÓÜh¹ÿðAbÖ{ëÖ­C‡•••Q_HJJÊ“qVVÖîÝ»‡††“ùs¼\'ÉÁ`;:t¬[Oɳw1ŠŠ|rk©Dêóù¹äëׯ÷ôôìܹsûöígß¾}ÇÕÔÔBÄ,ÜâÅ‹›››÷îÝ»gÏ—˵uëÖ¶¶¶“'OŽ½üÄQô××ßî˜ýæd¤-¢ÓI^È‹4ÅÓ6™“ö ÓsÃ’Nþ93=Ü+9…µöåOÅlÅ1êNŠeç4–V¥LžM¦Ó4ÍóüË_ïÿ@tËÐåËhËTT„[ZÐà_ç>AÉÌ ˆ@èé+*£›7ñ'Ÿà¿\Ä'7±â÷êõŠ¢DÂzVîðhY·ÆÚÆÄ ›Kmç´ÖL¹*LOKI)Î¥’¬Ò|Zš+ä + +sÂQ0?¢g +sé’¹µT"õù|‰\r ¸yóæÕ«Woß¾ýàÁƒP(4<<ÜÕÕUTT³v ÃJ?|øpttôÆW®\¹víÚ£G–¿«Ýþe¥.+¤ey´$—&°øßzD’CG£0‚b‘@Q˜Y&¢Ó)*{±°~Ó2‡g®âÎu'ŲsK«R&Ï&·¦išçù„­wAPäQ0=¯ áü·K(0fϯˆè{jøu‘Ãdƒ¯×Ë«ß?¨×(ŠëY¹Ã£eÝk3l.µÓZª¥L™ž•‘ÆVI÷oP|cm™ÓXÒf,q­.i#a,%;%Nc©§nÉwÌKYmv:E­ªk½7ž€ÅNNN^¼xñرc]]] ƒþþþ}ûöRqP(Š ã$ÿ/×IR2˜ÅŽëVÇS²©ø&Nku©ùáŠK¤>Ÿ/ñ ©f___iiiÌÚiµÚóçÏ'1UòDXïøÚ2!uñÛZü<Ñø¸wé…Ép_Dš¥oÝ“ÁDodóä 3öÙÆ{Í­•JZe)sxu-»4Mθªfo×XZ•2y6Ùš¦yžOâ&¼4€¢ƒð/ô̇À«á³?ãž#ø7ãÉ`²Sy~ÿ ^o (JT ¬gå–uk¬mLÌ°¹ÔvNÛ´CUÎä‘é%¹ôo¿Uƒ?Þ‚?²a¾ó øT ¾áI„OF>B§,øƒ¸¿åÞㆥ”¢bÕðÈÝdíÀÈÈHmm-òoÃÃÃÉÊó9^®“¤d0‹:Ö­Ž§d RñMœÖêR)*òÉ­¥©ÏçKî&LNNvwwËd²˜µS*•ýýýIL5„q]ó[Lõ÷ïUã_Ûñé¦H#4F:¢q~§¬Ÿë”H½·Ÿ³Oÿ¤éUÅ” µ²¡t‹GײKÝäTÅS5{»ÆÒª”ɳÉ&Ð4Íó|7!~ˆüc`ÿþwèøqôÙŸðÌÌÜGÀ+f:„{z‘Á€½èÎ×èÕÕïÔë E‰ +„õ¬ÜáѲnµ‰6—ÚÎi›v¨Ê™|2½(Gpî›züKvæƒÁ>óÔ1Sè89®7?‰©p¬EŽ3§ðO­Ÿÿpµ¥/½u:?OîüÉûíÏGzHâõ^­½MUª_/%ž›ä5Ažçóóó—ÍŽ¢¨`0(c©1ŒÍwéKèæI_««þÖW)5H¼–´I|qV±Ó,¾l.ÚŽš6¢”ÕkQS¯®®3©ÄId ^Mu3•_²–˜ P(ü~¿Œ&¬€DwÞº%ÊÉ\ ¾õù‚=Q¶Â`ñ#ê7xÿ~r€Å/¿Œ?úHî’V@(4f4šB™Òö9K\=Zg‡ÆÞJ/«Ú6uƒW˹ˊéõäqeFêõ¾jŸ±NZˆ¦|–É!"vNS îcÃ,µ=üÍžF*•ÒïŽóœÿq1¹¹ÿþîÝ»Q”——ß¹sç9×ù,z½'HI&6ÛÕ§sv¨“‰ì{Š$^ïÕÚÛT¥z)ñ¼Ü¼@ ¯ ‚ ð<¯T*—ÍŽ¢¨`0(c©1Œ÷8[JÓQè$ƒöعê¨oQwºdëÚQ€RV¬EM½ºº5çI²I5ÕÍT~ÉZb‚B¡ðûý2šgqS¯®®SËyÔöVÚž¸.‘GÍyhòµmtƒWùˊé,òx^Fê{ýF|•›¹`‹úبÏ29d‰‘+»@ó…aÚþíÛë¢Ó(ݶ{ã_Éå@$1›Í( † ‡ÃrÕ¹„Þ®¤$›íêÓ;;4\‹:‘çQ=%µï)ôr’x}—†\K·®—ÏÍ òš ÏóJ¥rÙì(Š +ƒ2•) ƒÆ{îÒtz“ÁZáé‘Êè¢îXÒ)–ùN¹hÞáº^)@)«Ê­E®^}}§&™ mêÆn]usY~I1A¡Pøý~™LX)’i⿉&“HæêVF¼u{n~ ÌS#EÎ.` Å?ýñ:»†BcF£ !”¹!mŸ³ØÕ§«ëÔrµ½•¶·ª9¿yBµ£]ÝÔ­åܪb:‹<ž›‘z½ßˆ¯râˆ-êc£ƒ–©!ˤ$vNQŸeÊ7»( ³xÔö¯Á½Mt¥Ûvoü+¹ˆD"f³%Ã0ápX®:—Ðë=AJ2±Ù$2g‡¦ÆM“°8ŠhaR‰•äõŒ¸¥—׶©½ÚÚVºTŸM¾:/7ïÚµkòš ÏóJ¥rÙì(Š +ƒ2•)̓iŒ_s¶lIG¡S[qÀ!œe'÷/ìŽÅ"=RI45T9}Ú‚/ÖïpÞW +Pʪrk‘«WWTco}FX rw´ÓÝZksY~q1A¡Pøý~™LX!‰úå—¸¢‚ÌUÑ`À_|!JË/Ðpþoˆ<ÀV+FloÜ»š +&„P憴Ÿ8K èë:5œGmo¥Ÿ®øç¡íê¦n­Í]¶™^OÏËH½>`ÄW¹™kÔg‰±“³²,´Bv'}–é3UxÔöà×»ëËRUÚm÷Æ¿–ËH$b6›Q0 ‡åªs ½Þ7HI&KöÁ>)²š åɼ8jEzjèäÍd+ž¸Žs«JÔYä«sss¯\¹2W(ŠÏßAxžW*•ËfGQT0|þÆ‘œ‰a¼×Ù²%}vRáìè`%i„Å BT¹¨S†,ÓÃ,¾\#\®éÚY€RV—[7»útR“¶¨ã‰?-2Ob‹vvh\=ºêŸRùEk‰ +…Âï÷ËdÂÊHü˜Ä;aqû6‘ÌU†Á·o‹ó;ðCbb³,FHT*g~ÿñ tv …ÆŒFBh]ŽbŸ³äЀ¾®SõМ‡¶{4öVµ½•^$šl9ÚÕM=ZëëeEªõäñ¼ŒÔëÛqÀ>3b›ä+£>Ëäû¤¢CiËg™>[…/ÕLüòUgéTÚíwÇ¿–ËH$b6›Q0 ‡åªs }Þ7HI&Kö¡~½³CŠŒD³4¬ÿ‚¤wÆW‘Ä]=:έ*¦³ÈWçdç\ºtI^Aày^©T.›EQÁ`P¦2¥yÃxý%Ý<µ_sÄÎøvð™m2Û,>Ò,•ÓÃUø·Ü£Ñš®QÊjCõæƒý‰&•:ñ)‘‘°È–ÔÂ*òÃpõè,U¾DLP(~¿_&VFb„ŠŸÿUÔêE„°NÇÆf×_ ñ +üO3Bÿ'Þ»O:ÀælÀ| cI+%3M¡Ìœ´Ê†»^ÞÔ­«mSÏÉÞJ'TÛ–ÚÑ.©Ñ«m>ÎÔ´¨6Q™äñ©ïßß«ÇWìÓgªbÃìô0K®†,Sõè´´23\5sö¾`ÅïÖNüjW‚(]ÅÝLÈå@$1›Í( † ‡ÃrÕ¹„þž_’*Øì×â‘Ññ¼è…‘}=Ny>î¹ÐIâGŽ8]T¶NúÁ¬Ë<þ¼¼&‚Àó¼R©\6;Š¢‚Á LeJsbã×î²µèÖÛ¬Gl¤bñN‰ WMf't +ù(:ÃÎœ©Âç«ñï±Ë\ßÎB”²ªÜVÔ|ÂàêÑÍEC® ²SÅoH^)²n]ó1¦úð–ÜÂtbš5kFFFd2á;ñé_DŠ"sUTÑâŸ?ų#W\8z@fO§‰“êýîÀé鸢Büä™+[ ¡Ð˜ÑXÊÊQ8XÖù¶éÈqC£W×@Ô¥ièÒÖ}¬®„Ⱥ®±{ëácúö7·×¶k K³Èã…™ŠOíÂ8Œ¯7àÑ^©ŽÉHiŽ:&Í#Ctj%þ[ÕPóŠ]‹_‹ÑÆVd×í)Ú¬iÕ¶'·;4¼;läm5¿,*+OoÒ"¤¦¦ž9s&˜•~E×ÖÁAü‡£¨¦:‚ûzǽLhìχü~ {W„§Éþµ££C‹†‰‹Ífµb©aN‰¾ðuCQiæ|§±¸Ì4¿Ìó™sJ ä$r­ÚøWb&F[³@¦Ž?Y+ÙÈ7T[OÔÙOn-8U_p¢ÞNâd½]=/hªµ«æWs'6±Ûç¥&2ÌBgyßýZðx<‡ƒ‰‚(Šn·›VžaÞÛó>I)ÅWøzza‰¡àûú¢E³æ;I¿LóHFc Ós‡òmNcÑbÒñYsÄE9œ6^C~Z§Ó544Ð-‚,Ë.—Ëh4Fì˲’$QJÿªëß&£RW ;]Ãýq{t#×Tc#cBæ‚ÄIõ„ŒÌ uLNn-l®µß"4Vóç¶ò¿_m^˜¥ab˜´ÜÄ9¥zÒ‹BÒñRÃÈŽ†úTié—^,Õ”ddYãâ•–éõú––JExjáöÉÊÒ¨´“&BêÍl&§½½Ýn·1ªmŒÎ03•Ä¬„tS¢þUÃÄ W2²ÓŒ $RfÅ'&Å2±ê‡c˜¼´¸J‹ö NëÌÓ.ÍO*guË9ÝrVW®Ær6t¾Ì’¼$?iÉlíÒ9Iùð"ç²{÷îÓª€Çãq8LDQt»Ý´ò ³k×n’Rì &)}†NŸbˆO7%è³õÙš ñêÿJdzÓI»3Rgŧèã^ ö›INNnhh [Y–].—ÑhŒØ;–e%I¢”¦²øÍ5µ$“Ml¹Y³Ä¬qäiË-c£12 )Ë,)äXÎéÊ-ÉKg'•ç'­âµŽ×4 1äãqeHÉè¥ffȲǧò”ÉÍ–9353>Y¯ !##ãüùó”ŠðÐÈÊZTÕ'šO†¾Æ}½øÑ#å|lG;Õuww/X°¡ª²¢ò^ÿ=Zðx<‡#š+¨Á+Á –q‘ õ% K®Øòf[rrswþôÝhUÀãñ8& +¢(ºÝnZy†9vì˜ÕjÍË˳Zm‚À“^Œ´†?.Â;8©°„¾#ífYžç›Õ.VrÔ––^ºt‘ndYv¹\F£1bïÈý*I•$‘ºø|òüŽ´)/ÏÂZíޚϑà-gDV78dˆ¸|‹0›ã9ÒoÒk2¡¯ é;±×Ë ¤[Ê"˜Íy—/_¦R„烆†ðß?Áø‹vð«…$åœ.‹+€ï²ME}}¸j=bd·ã+W‚§¯×{ëÖ­ÖÖÖööö®®î®®]c:Õxœr±[<¹qã†rÞÝÝÙÙÕ©ycwè;:'|Yð äØÖÖþÙgWÜn÷ðð0­ + .^¼˜‰‚(Š$UZy†éïï'-kkk«öSûõ êîìê¾ví¹a®^½JJ7šBnyY–].—ÉdŠØ;–e%IzùŽ"õéíímS|¡vL©¤ÊÈŒ…:ƒáq=ÔWeÄ&Û¯.õ':::Z[¯Æ=|øb&!x7]ïÀ  ˜üæX=ü›.Ë+€o³q»ÓžÛ¨dbœšŠ>úˆ^J“†òù|ÃÃò,û'# zÂu¿ +øƒð‡…/å(Ë¡Ÿ&_E«Çáp0QEÑívÓÊ3 ©˜¬šT×¾ä†ñz½¤q»DþýC‡™L¦ˆ½ã8N’$ºÙ’r‘ºù|²?|(Æùañä){Êô=þ¶Ñ– «È9Ý"D )Ë맟"³YYW9·¶â k.@]hŸŠð¾ýA@«Vá¶QM)2„í¦Çãt:™(ß¼y“v¾`ŒÏç;|øpVVVÄÞ ‚páÂ*I¸=µh·¿D;v`Ç[·¢ý;xmˆP•?ïêëE÷`¿ö­ÓˆÇã)++c¢PRRÒÓÓC;_ºé¾ó9^¯÷àÁƒz½>bïxžoii¡/eS¤kÑ@#GôÕ#Üû48ˆýþàb;mþßrÊ5¸Wp5ìùT…дHó…p:LJKK{zzhçKßÔ¹s†††8––±wÇ={–v¾SÂÔiß³L\FÇ^~.üýz‰*»ã> ÚV]cKA@ÈÆÖlh0¢šýC»I%*m‚ÀZ£¶>ÖS“Š«FÜDL\v«[#a›(+h@þÐV.H+ tA„™A†ÇÀÌýýzîapx¸ï5~?â̽gÎ=çwÎý“Èõ!I”û ýî÷”žN–u£‚Ñ "Ç…ÉdZµj•n¢¢¢ôz½ºaƒ»ÎÎδ´´ ˆ·ãíí=iҤɓ'Oêçãã3qâDÇ»‹ˆˆÈÎζÛíj‡ £$/O²Xè‹ JJ¢Ü\êíSŠ¸á¨L9¡*çT«•þø'úÑiÃzª«S7ª·)3§zF£qÍš5ºQˆŽŽ®­­U7fp×ÕÕuùò嘘˜ùŠÐÐÐ ÅÂ… Åupp°¿¿¿øiË–-·o߶Ùlj‡ £CòîJÏšøãßðŒœ”D&“«@3H>¨¶š(:šu:žñÞÁÑuD¤P; +ÙóçÏwíÚåïï°H¬aŠŠäääúúzµã™#yl6[CCCQQÑ7²³³ssssrr²²²®_¿.nEa^^ž(å%%%MMM’$©8Œ–ü‚«*),ŒÄ¾Ìß=R +‰5±m¸1ym´|€ùHj‡£g±X222âãã’‰nRRR’““·+ÒÓÓ›ššÔŽ^ "«ÕÚÞÞnR´¶¶ŠO£Ñè~ë(1›Í¢¦¨ïxJíÀa¤üquðØW)h!=ªã倆8O©æ6Š‹“°sü¨¸XÝ´Én·›Íf‹Åâ¸%"uãq‘$©½½½Ea0Œn ýš››Ÿ>}j2™z{{ÕŽ^‹v†AŽU¯§ÈHy_ ãêê?h‘rJ5·S\‹ì?*.V;(-²Ùlz½¾¢¢¢££CíX~ ç»ø¡B¯¦NÏþ’t:çêjçÜa +@kÚÌ+`ýüè^±ÚÑh‘$IÛ·o?zô¨Á`pÿ‰ˆÔŠ +àqä¹Xeee™™™<°Z­j¥mõu)ï«áá\]­v4Ch{Î1ëåììŸrQ‘ÚÑhT~~~PPЄ vïÞÝÜÜì*'…ŠŒ5W†®^½zúôéñññ555êF¥YÄÊ|Õ<á_,‘÷Õ°E\õXí <°&E¯Xš5‹ïª‘F…„„ètºðððk×®I’¤vDo”Á`8pà€¯¯¯XëÖ­«¬¬T;"M£ÇU&ï«!!üè;µÃpCnßÍ-µZ`ù'ÓéÖ-5£Ò°û÷ïGDDèsæÌIMMmkkS;(-£_#UóXq¤gaÌ9_Beeå¶mÛ|||K`íÚµêƦue¥ü³@±¯RP=|ˆd-QΩDò—ÑÀÅ:ÏžMw'}}}V«Õ¦°Ûí®‹±&ú‰IŸ7oÞ\¶l™Náååµråʼ¼<Çü½•HÎr|(t»sŒnCЈóRyXnÂÙ +yj‰úËå ×dÒ‹yP„CtéŠØUJý;/^”;¯iˆu2bÉ» ­­íäÉ“sçÎÕõ‹ŠŠ*((`en{{{+eL£h_ô"ú’$Iíù‘’Ê+iñÏI§£%K¨¢âÝÌÐ(r^•¬µ‡só(q'§¦rC£Ú‘ f±X233÷îÝ{øðá'N¤¥¥}þFœ={ö´âÌ™3Çߺu«ŸŸŸÎͼyóį"<÷hI™Qm#åïÅÇëá GîÀ9äÞ¹7¦D¡Tÿ%&WÙ«õHDns>øi£s¯Dý ~Tû¯qŒ¹fU¯×'''O™2Å=ùgÎœ¹iÓ¦S§N‰õ(V¥Xc·0ÅJ;vlÿþýÌÊÊêèèPwr†çÈs2·ó¥¯)%…22¸ÅȯžÛcˆúÏ©’DÍ-\ZÊÕÿæîn­^Fã¾}ûCCC—.]ñá¹bÅ +Wwaaa¾¾¾:7ÞÞÞQQQùùùjÏÐk‘“@dBŸMùbGZ8\oT©!ײZÙÔJÝ=ŸæyiP·JU➶XØn÷ð¤ÇÆ%V+MJ&³s@n#Ç?I’ÓÞÕ¶R^C:;;ÏŸ?¤hüøñóçÏw,åË—‹•"ÖËØ­DÑÅâÅ‹ƒƒƒÅ&˜˜¨×ëÕž˜á8Ó©ÏFO©¼œõµÔÓíJlMqXµytmllŒÕiƒ——× ’€€€sçÎuuu¹&…Š36²þèÈÚCååœy•/]âo¿ågÏÈ­ÊËc娨¶†ÿö%ß¹Ã=ÝLÒ0í8{!峧‡ÿù/ºr…2¯Pþ-*¼Ë™™"0Ò×¹?Dn/7+·TRBGŽpn.Iö—Æ¢ôf6“hùÂ\ûd¨±5Rm¿×ÿ³ººº={öL›6M¥6¤Y³fåää¨=7ð•:oÛÂ;•@ð6 ÁÄZ:¾655mܸQ§^ +×í¸qãbbbî޽눖êÎØÈÓ“ÿð™3üÉ.>tˆÓÓ¹¼œ$É=½FPéCúóaþê+ª¯ã:=?m$»ÝcS®^D.+¥c¡ ”´“ä'ùÓOyï^.*ò yjŠûúøë¿SÌ:úì3êí}©¾2r½žwì ¸XÎÍfÉþªÃÔÖò3ÝÝÝ.\X´h‘ŠkÍ£©S§^¼xQíéÎ"²Oû›¼+äSª|†•$©ä¥¦ÒÔcÕÚÁµ¥¥eóæÍ:íñòòr]ž>}Úd2©=[£"^¼üi0Б#ôþûIÇÿÊW3©´Œí}ü¼<à{%T§É!?ÐÞNee$J=¢úz®ÿžššIÔ´KÔØÈúZ¶tqk+—•RU·›é›ð¯?æ?ìæÏÏRüVþíVºv•kžð¿'S«Ü M¢ºz~\ÅJ¾¸q]ºñC«ªXQÁú¸sljÂ×_ã«rªoò~7ïÞ¥fh%aI ¯T³³ó‰<öµó_P]]­T*µ8¿žgàÀ999ÚÎÐ hoGñìØÉÒ³ìê⣠+AAA­žØ£65ÂÃ2G†fÛÇ477ûøøÈú*ž†\.W*•õõõÚNØ »q‘ëi`@+kP­fK ++˜›Ë§d|ŠŠpõ*öìa€?##ùa7qu(ÒRØØ€Ž~ôÃÃx ÛéâÂÈ(œ-E^°h‚ƒ8l¸ôŠµk¹ó׈ˆäötÞº…K—¸i6l€æuwï2,œºzX½šU•¼ÕÌ+ÕÈˇó|ÒÆ+ÞeH(÷{6¨ùE1T*ÄÆb]wìdi)Nœà–- @d$víBHˆ¦+δea!²³™‘Á+WzF¬©y\¬bD8f΀±1m¦ãè1éƹrzyÁÝgóàçÌÍaÚV&&aÝ:¾¯bñž<Á½{©JfàJhÆRtízÔÖ÷û_imm éׯŸvgÖóèééeeei;I½´¾’°´”ÖUG^¾ô*VŠ ‚ ‚ ‚ðÃãS]lm¡ÙÀàH±v£zVss³¬¯Òy §íêêzáÂm'ì'¡ç»ãV3ÓÓ9i"­¬‘ÁË—QSÃý…ŒŠâúDEÒË ‘Q,,¤2nnLIåÞ½ £b6yµííLˆçܹLMeh(~1’kÖ¢òoؽ›tvfÐ*˜šòç?CB3³èéÉ€œ+Ç¢‡'W±'] puÃë¯c×.vuIWº»qú4\\9xìXüíìñËML__?$$¤¢¢è[©{¾qªÕ8~ŒGs_Þñ†Á ˜™c¾3­¬`cƒUX¿ž›…‰igÇcÇqý:2waÆ ŒƒÈlÞ NžÌðNŸNKK”•I½çíÁ 9íغnîP(°'mß±ª’A22x¸³¶öa(íLL‚Þ©·ôm,>̃ù«-|{¬­qà€¦Ã… áïOSSÐÛ›‰‰LßÊØXLœ„‘£¨T²ä4ÊËM¹òA´±¡=’“ÑÜ$½è^'33a2 &o0"‚ÉÀÊš£Í¡R!:šúr.^Ì–^®¦ƒ#d288 !žiiT½¯‰–´·‡…ôô0aþðG<•ÏWK]]]pp°®®®¶§×Óärynn®¶ÓÓ«'‚'Wק›‚ ‚ ‚ ÿb¿N€ªºÎ8€?pÃeFg4¶Sµ‹£M@yŠFk’VǺÅ;qŒ’ÔeÒª­ZqCm$¶hMÝ•Ø€*‹E#P4qYA1Fy€²<ïÿï¹°VÓZñ>Òï7Ë{çÞ{Îw¿ó;s„0´ýiÃUÛÄòÔ)\Íb ¶wÍÉÉ>|¸É‘899=øÓËË+**ª¦¦ÆèT=mŠ32±e ?üˆk×bòdšÍ|cûqüxzysÆL¬ZÅ Ýܽ›£É/sÝ:Šb` ÇŽG¾ù&¦¿W7z{q¹?||8|8’R´Þ÷‡ò‡=8z¶måt_¼â‰÷ßgî5aÉR{«–pvæ¼y°XKÐο‡ÒÝŒž?Á[oqÅ +¬Z‰?,T‘àç¯1<‚yyX¹ÓÞ¶/_Ž>øioªËV¨ð°}§½Aƒ1ùWX¿û÷qîüñ8d0?ÿÜÀékR@ôÄÄÄxzz~kͨcÇŽAAA†fè1ô·+a«cÖUž=ï¿þ×:ÚûU!„B!Äÿ/@ߢVWcÁïѶ-}|˜“ctPËÏÏŸ2eJëÖ­[´háââÒ¶m[ulóµk×®C‡jPggg“ÎÉÉ©þ‹:«bKMM5:IO%÷·o£Ÿ.à’%ܺ ©Uº±w//ÆêíìÙs¸}âwóè·ˆ›6©³Üó Wþ çc‰çÌeàŸð(®]ÇÀ@u»ê‰‰\´­Gü9†Àâ%ü3ÓÒ´jûøcšLìÖ QQ aè5H‹…áá˜7Ó¦cήX¡ÆâÆMüˇ8Ï[·p Œ»vñ«“ ê-`56l`d$/\äùóر¿ù-çÏçŽغ•‹üü)Ô¼lÜÈ… Ÿ  Qx;wâƒeu•Ö’rÿ•6`ÍΞIu¶¢\…ƒøxÐߟë70" qǸs/æÊU ÄÒ¥ ø€))õ±Ã€™kB ï„F999S§N½_ù÷©Å¨VbûöíÕ±IWŸZøêX¿ê[µj¥–ž‡‡Gll¬Qùy7 +ñúëhßžïþš·oS+•ÜïX½!„B!„hÆ»v,+ç„ñ0™Ø£ããêaEEEkÖ¬0`€««k?]ß¾}Ýž www!C†xzzöîÝÛÅÅÅôïÔÙÐÐP«ÕúPÌ ÉÕ“)-ʼnܽ››7#8„çϳ²’¶Z¦¤ øS|²‡‘ÌÌD ×®á³ýܹƒHˆgrá¾½ Åþýø"š©—øE ¢£Y\¬õ\Ï°ˆ‰aa!ÒÓÆðp\¿®’bß²…ªÒ¾Œ‹©z`}®ìu(ÈGD7nÂÖ­ü,”G!î¸Ömn.ïÞeb2¿:‰üfgóh,ö† $˜ê‚ë…´X bÞ½K=Dóø FFª§`E9ObHÓÒÕ8,)Õ®?‚ëúÀZxú,ccxèÿ¶‡_ž`U•vª¸ÇŽi9Q÷ª/ii<Ÿ õŠƒ‘ˆçáÃõÓ¨9L÷“x°€:¤ƒeïääÔ¹sg³Ùìåå5hÐ õE-É>}ú¨úÌ× êSu®V}ÿþýëG™1cFjjªÉùèÙ»š»ªöÁ?ãÕl£CB!„B!m{çF‚É„®/àxœÑ!=Ìf³&&&ž;w.!!á¼.AŸÐdTçj ”””ŒŒŒÔÔÔuëÖõìÙÓÔ¨M›6“&MR—=0ô¤:>-L[ï݃ł{w{c»]ýdé––ÒZÓÐXkeE9ïUÒfW7ÂV‹êÖÖÒZ ›ö:ÖZa­†Ý®zUGÖÔh-ÚÔÚ««´¼ÔÖ 4”&`ófTUÕ§ ú%Ôh7VU²êžv»Í¦úW÷uÚY5¢ +FÏ­6zyKJXQºº†*+YVΪj¨‡ªµÑn¯ïPH…ª£О¨a~Ð0¢êM…Z]5CROTQŽ;%¸[¡eI5Ym*WÚGÅfµR]ð@.›~ºžèl¹téÒĉë‹ßÉÉÉÛÛ;$$$;;;==½©×ãýnÕ@¥­Tsíø23Ù¿¿ö^u}‰—/74~§*E!„B!D3ýO;–Y0n¬ÚÀ²{wœ9-;×og6›Mº.]º,]º´  Àè ž'ñ§¯»ß|ƒ+WXRÌÆê{ž¬©ð§pëÖ-ÿN:Õ/aÆ%%%”cËË…——ö^íëŽÌ ©:!„B!„ d™ãÆÙÕ¶[wž>clT+..ÎÕÕÕd2µhÑb̘1'Ož´ÛíFÕüÀVÇšÖÕ5Ôžh>GmÒ :4))Éèˆ[~¼‡B½WÝÍÈÌ4:!„B!„â?(+ã¸ñÚ¶[wž>ct4êÈ‘#½zõjÙ²¥¯¯oFF†Ñá4chüü×ë„ãÉÎΞ5k–»»û‚ ²²²ŒDZåçc¨·ö^5›‘™ ½ò¥ä…B!„B8œ2 Ç¥ÚÀvïÎ3§eëú(ÑÑÑžžžýúõÛ·oŸÕj½ßnl`ͨ§Lý3:ñTåGEE-[¶,88øæÍ›F‡ã  ˜—KÏW`2ÁlFf&î· !„B!„¥¤¿©6°üÞ÷yâK££q,Ô±¶¶6999(((::º²²òÑkê/¥ç ú‡’´æH­‹ÅR^^®¾‹cKOƒ››ö^usãå4©u!„B!„êv||Ô_`ìQ££qDV«5//ïÂ… 7nÜx°:£¢j¦@4~Í•Tþã]¼€^½Ô{•/¾ˆäI–B!„BGR¿OÅ?Ù¯×ß&¯;à“Ç!± ÁˆíøÛý$4È–K¡ƒ”BBÂ¥­&õEC´õÅx±ÓÞLB“6i*—IeÕ¦ýÛ¸¾B›Öu©È´r[|aEËZ15Pè’Ë9ûóøqŒcHb¤:ѾŸ=ŽŸçùó;éÐûäÞ×OXæv³¡!f>ƒ¬éé鉉‰RgKåmmb_ݸ‘]ý s³´9˜˜ya_|Æþ3ÓXO»~£Äi-JL*u°0±±²;wø‘#L³ïß¾}ı‘ÀbÀ¸yFelb‚}zŸßÀ''qpx&ŒÉ}u’ß»Ç<àSSâ+ÃÞ +‹Ë^8ûïö÷+üß·åyŠ&wÑé)þá‡ìƒð»ãôÝÜY±ÁÀâ=¡NOósçØÀüÔÛüóÏJ™À’'öVöùìôiþæ›üìYöõ×â›+à›Ãägãã|×.®(ÜåbïýµÔY,aŒÉk×y,Îh_Ý°‘&Œ{rÇX Ì#êØkkØšZvñbISXÚ“{ëð0opŠ}Õçãï_É<Êîº%Æ2gÔ±1¾y3`ÙŠüÂÅÒæ°Ä‰­•\á¡&±¯6…ÙðßJ@:½2ñ1>Î^WTð–µü/ï²R§°”ÑÖÊY*Å¿³‹Ñ¾ºc¿~MÜû+”3©†éižN³ógùå!öàŽ®ÅcL족k×ø¹ó|d„}ù¥¹áæl¼¥cœNé›9¦NO±©Iq¢¹µ‰ +±Ê}J”©)NÅܵõÞ +ÿ?Xö"?S)væ,á“%Lj¡&&'GÉáááë×o$“‰d2™J§ž^’™’ét2•2 +}§ûK%!Ë•Èw’f%)ÙjJÞ™+0•ý_6'%4Ò©ôÜ튨¤Ñºˆ¤ÞÈ3™Ï#„T"Ó¼¨!'ŸtúI!élþ4Tò«Ñ÷l¿ÒéÌã½ζBM¦rÆ?“ùi§³‰ ‘ƒ1ê·’óì²,ôªh×ð¤9ˆòN^=úbd‘MËu3ïvS©™úĀߓ˜2çñÉ]È·ÌŒg¦ )ë™ßªKfÖ¶±Æår““.¿Í½ÚF3·RÉ[)s±ÏLÙ\­›}–ƒ&?á{J¯³“.»I¿ê7n ¿?|óæ͇–zË™fl­&ùÈvñ"û×-β.{z,À7%s~å_}ųr•mÜȉRgµ}ôŸCÕ/_áôzýMq—/êòE\¨Ëu¢nºú"¹¥Ñ5Šøêú‚ÑHL×›×FcÍÞ Fánã©?2óÚ¬pãjÂÔš"zS$î D³^.ëòS`D&¥¨P$ŠÆ©iqGæ,_Oókx¬þ¨7‹ÆZt½%¬Å½Íå×dÎ…Ó6Z7:å–9xCZDkÖ›[¢ñfú_t\ôÝ|óñX3aquú#N؈„"ñ`D§.¸ò’,ÔºÓŸóˆÂƒ‘`8FC':.ÚÕŒ¦Ÿ4hF׌ÌýA&KonD›=¡¨3“¹V¸ã¹ó%®aO(&:®7G4Ý'f\Œ¶Ñ„kV¯]þÜzè‘S¦Ó¬Ñ8ó–Óó.Þi h4hM4ãrÁ¸|Æ”i]~cÜÄtS ¾&-×››õ°FÃn¬ÕpfNŸ°ÈÍÜ¢rÁh¨·¬ ÇŒa7øÂôKiœ=òÆL™Å%Z7µ@DFã«åí“ŠËÈß·0…SH“Û¹Ãiah”m£Ç¿råÊîîî«W¯–zËY66ÆwîäV+?x}ü±y·¤9Ì`™cêýOyw7S¾ÆÉß{·ÔY-@*êììT2,J,ÖrµB±¨¹·_.KÑÊŠ ·XÊ(s«b)¶u‹ªªVª¤Èqi—Ùt&\û­, +u¼¼BQ¬E†[ÔrU•3^\ÇÕgëxÑá¢ãªÈ¼è//·ÒR/zƵZ\¬"çëY~)J8¾|y¨Ô[ÎB$’¼¥•Ó¾º®•þSnµ¬Ô9ØÌõî8ßñ"£ìêÕìÏZBg×D"ÙÖÞ¦(Je¹²Áeë‰×m Vwxl^{§(¶NŸý±âµwxìÛ¶€cV×æ¶Ù¬ +·–YZ×Øzãu;Bz¡=nÏ÷ˆ +»¼¶­û^­îÛ.[y™ÅZ¦´7Ú^ŽÕ=çwtxmÔºl7¿é._&«.¯}K úåX}§×±LU¨ùµ U{cu["Üh·kV¸¨™5Ú·«÷Å—¯wU©‘yE™²Îi£d¶DæTg´Eæ™m V÷Äê;Ü›Já–2‹_]¹'V÷BˆÆÍÑQxÐ(+‡1nÔÊÞXý·ÃZNƒ¦PHolùê¸ÇìøìpŸè”ѵÍþjJõ9¯ÃÈ~½³ª'^¿MtÜÞa¼S Vt¼ËC¯Ù­kmXFí’*µŒf¼—ƒư;Dß šÍó­¡ê½ñú¶F»]θZ¦èßZFw¶‹SÕ‘“y—qQ^E᛼š²ÝbÆ)q1æÜvZ?Ïûr©s¯-[(ÿçŽÝZ-a¥j¡ô×®©¤q o™W凫T¦Ýå±mÕöêõ4VFÇ麮ÁÖ#f¼Æ˜”Yá¶.£ïr¹ÒÌÒÑ^U.:Nuh«–íÑj·kÚ3˵Ђ14ã{bµmnG…ÅXêvªm³ßÞfÎiX³s©×nòÑ°ÓZ£Ì«zãµ[BbÄ:|…~b¾ÌO C®ÕÝÑÚõk*+UÑq¯×{éÒ¥Ro9ó’ÙBGGYk‹ØW#a~íªù„eŸ, +÷îò;Ŷ¡ •:›H§Ó›6mRe•Ãúããï¼>Ö8Ö:Ñÿ1zm¿(…±Fùõ¡…ÿ¤Û³Òn­«RéŸ3ñ·4½Õ8Þ’/èýÜòK3œr8u(ôûý½Ag]e¥j9²Åyf@ÿÕ¡5}¢ß ÏËœJŸ(¿y­éÂ`Ë^ôÔÛTÊ|…ÍúÃÊ-p²??öäþe%ZïP+gëG_ò¯ª±.·«Gwûζœ:ø?ö«5&ªô O®"Ãu€® À —që‚"ÌÌ9sç6àu»IË®Ûl[Ͷº¡Ú­kº[âÆ r™a¸*(xᢀV]-¬fÍÆl6›Öj¢VkÛuAÛ¢s9oßïÌ0Â̘è/þ|O^N&Ãy¾÷yÞç='TžXgpNivÕ‘Jtu7nH¨Î¨3$. óó_´ð7rœùÊ–ÍÉüÜÈ î­‘KŒ“4Û¶¦ôUgÔ0?Š&Æ£‚…5ÌÒsÛ¤ø=O—ÑytGÍuüÉæ-)Û¤Ÿê–-÷Gz°ŸÏÏ׊ÞËè|;•OE&º‚Æk=_uÄ{ÎÄ´Yr¦:c¯:!,ÈgI€Ïeüà»RãFÉÁŠ$§ò¹­T%ב"0ñ¦M’ÓÕŸ—%Ƈ +… l_×ÿ®´y³äîª!Ñ-¯ºÙeHlßš:ôþÊÝl|DÐ"T°ðן0-›12tç¾*¨™, ´Æ'‡ü™.á ’¸ `Ñ‚Ÿ­÷W§·o]AæV9³-ΕK&µ!ÙÙç¶ Ÿ”ôOµ‰1‹}E>{ÕñCÛ2Ð8*wdêöŒ —”Ó{²i“¤ï½ô‰I‘þ> >,ŠÚ–Þ²Erµ95yVñ©U9“¶-+NW§íQÄÅ…ãIIIW¯^ïWÎ+ã8r½w—ËÉ&ïÕô4øÛ­ùEAAAAAAAAAAAAAñ.€ó•Ð­³7+9³Š3)mÍ,~žSf¼²x…cZ8k¸¸X+@zlˆðÂÎl8o€“Hg93)OºÍL +‡N –ÿó,{iHBXÀwµë`Ä›ÉÑ…µ{rùo83íÐÀ@Ù›YýʨÈ@Ÿ+åÀH%ÓÌtÄ+㮼…%¦Z”p\ ç«n}V˜!Då©âÀ¯öäÁ°º´vž +Q¹ÒNµ¨•ÕÀPÅý#26M„tq°ïÈöL*‡„Îßéε™­í-Núƒ#²Âå¡)QAßÖ’™ÕðSe­f†÷>›N¼pŽDpìj,û_«²rUTlˆßŸkrÉÌ»563C6{Î%zÌ*Òº[‡C»][˜·,„O<èúÇùdìÇud\„î®Üe³Šx'‰—?¬“W¬Šæ÷ü7@¯žs.†g1vž¬´áØÑø@Ń:yA¢h¹(àæ>Òš;ª¶w ç¹i®ù!ÆûËž4³ji¤(Ðç‹02ÜUl­ò¶-Î DÙ¤u—o¾S[˜¿•'EŒáÜPy·Ž3±žyÙ]cĹaë.5 W¡qej˜#ñ2q{¡GG\›g«e]\~ÕY»Ãø`ÙÃz™"E”Š‰ÿ_õN-éeb¸ç¤øÈpn*®S‹ô)3³1SŒ3¿´+FªÈ®šYiǾÍ45Í0óˆ«~¶b|¡<%•K’%£££óýÊyLL@~‡ïUiܹÃÍ· + + + + + + + + + + + + + +ïxò˜ÓêÀÆÅÂõkó­æ5po|¼°¨H dˆ¿ÞW—7ÁÉhSA» +Z•^Êñ/¬:8_ù}[±*éqK„—jràRô•A›Ú”Îr£;¸xC·F “Ffmâ’‘ß­Epi#ti-<‰­ŽUÎ:¦…sÏ:Ô›2Å‘>£»óàò"ée\½] *èÕÃåŠßŒ Fåéâ ›ŸäÃÅ*èÑC«úE —Wñj8®…?U~ofõÒp¤‹ƒ|/~˜+át)oÜQžt5´óº ý3#O%G~·Ÿ7~\ï¬ñ,©6•ó„. žwi7gE‰ƒ…_þn \®‚^Ý Ížt—r4>TñC²b‰ˆ þzß:¸´N•B«ŠŽ-¼Ìœ—u‚D6edßÎŽAzlˆðÜölôgJxås´ÍtoaÖ0ñ¡ÊÉf–I _.òÿæ…¤5~鈵Õë¾±3¡«‰ñ¡ŠéN5î[¨?&¾†Ìµkœ»ê™—+ñæ{ÿ°,Y*OŽð¿±'.TͬºòE^nËÖÎÿ÷F¶aªy&ñ`áð¯²p|â3Æç¸V;Ž;s«˜la”iá)‘A©-"‘áµ¹VÚmh3“Äî(f¤bú˜úÕ1QA¾WjòÈS†ÆOÓœîªYÊÕ¤5.ÆpåúbMz1.‘ŒŽŽÎ÷+çÁ‘¿‰ .¿ß« •r·os󭉂‚‚‚‚‚‚‚‚‚‚‚‚Â;OFÍáظ8¸~m¾Õ¼ÆÇ' +‹ŠAZdÀ—¿Í…³å\§ÆÒ¨xÞ¤°š«‘!×Ùed-FÆÒ¤°µ*áTÉ¿ëäå?ŽDºx±ðÂŽLè+µwk,MŒÅ¨°“'KauÐ{K~¨—­O[êÿ×ÚµÐ_jkañdkËßæÑôénFºî©™ýINŒ(`ÑåÙ0PjkS=oD:ã<Á­u“¹¶&×®‚ò{ûׯŒ Få’耻󠯌kSYBGå.|YœW4ÅØy㺌p¤Gûžûe¡ãÜšäÖ&Æë*2Ò&†Cå§KÅ)¢ø%~ßì͇Á2œÆóF9öµå +¯tGÙ[XèÕ?ïPUeFûú\Ù¹Ëí* oœ g®kG \»zô>/dWå)ÑA_íÎÅÈlGÕüÜäžÊÆqn,ÎNé§êåïäÄ"=*XØ÷þ›p¦Œ;¦Ak–—'šP¹zt“õ24bi¨ðæï  ¿ÌnfQ¹ÅÑÈs[œ¡ýdaz´ÏZYÃ[‘!BŸ«»VÙ®µ6âΨ,FÖkkž« ÊÏ”þýPQnÂT¾<Üt'¡C›ÒJº»sgÁD02æû¨A¡I‹@zD°ÿƒ·pСÁMæéŽr±X×9dìüªO5*dÑ¡~ß~B·ò‰[Œ^‡6ë(\W3 'õÓ­Ê-ÙÑ‹…>Ã;²` ÌÖ©²4z¶fg'Ÿ‰ñ^ý¿•¬$Ê%’”±±±ù~å¼8¾`brsÉ{U*…Û·ç[…wpS“œRI~ÀŠc`ll¾å¼&Æ'Ö ‚Qc59Ð_foWM×˧Ͻó¯ +‹™…^ÝË «¢"Ù‘½z®S=Ý :ëþÙ5ݨpЭH?®›¬—ÉV„'„ùߪ]§ôVû´A÷L{ãòt…M×+,&%tk§MÌO×Ć.úbW6ô•X›•OëÓ Î;=¹ØúÿìWkl×]ñØÅÆÞšxí];¤`°yÖ`7666ØÞyìÎîz ´J”@‘¨¢DmB‰Ön" +4ª P’}¯16¿@• EÊ-„´*!ôŠUÔJ –C{fvwfn¿;»Æ[<¦ô—Et>Ffvνç;ç›+MÂO+QÞ:ò^KÕâ|P^a[øéÛõhЫDaw¬Ø&÷85ß²SËŽ §ðÖ:é¾ë³ÿ°¾ èÅùÆáתÐWéÑÏx>½q¬ÈaPî¾û¡½½Êúü3 ®ØÜTˆžäêv­5Îã \t•ˆ8^¬)Y”3ïBg€ÈèKàuâÎ ›6Æ*$>äýç¯[ê¿ý-P¾Ô’s᧵0oJŒ‘|vÑÏfûœ3mPaßϨa'jõSÜj ЋòM¿ùQ5„¨v;%žÒízòMñéÈÜ÷ü UYXV`º¦%ž ³n\Ç®ìþ«°]Š9vÖ•ä›æë€aƒÄ"V®3féY}xVñ¨Ÿtßy˶õø%­¨¨Œ?U§ºyUoÀçêšµèúõÙVC@@@@@@@@@@@@@ UÅÿTüç—_¢Í[àV-,T?úHmeOŽ‘[#-­­ƒa¥5÷b×Ftº]>êy»È3¢ŸýékVðUâ9Ì SîQõb è%fãï:ªÑ€G9Æ <-ð”è§D>½BvÑ,ÂÓɃN¸înuѲ¢œï5£6¸)øiajSfZQ’ö@2È >W2âøqËs¶<ãÅÎhØ ’ð¾<<ÃLø)áÑ(·K~Jåƒmÿ8l__jÆÛòþ¸¯”Ë æ®qᎤé'Ü÷ƒÌÖõV [óM¿ÝS ª1§”1 Ú„‹û‚_%ž–ƒ4~?Âpk,¥‹\Ý߀†¼Ðˆà£%~z¿ÅPé¥ä z9µ×ùrÝâ…ƹöÖ¢á­rÓÅ´çÊfÒy'r”EÇ\£ï·n¯ÆÊ+my—»ê ñT·SôaÍB`z㌖&NM ³¨÷Óo¶,z‘Ù8øzê÷*=\VXÓ}ËèOoÇ]ãö¥J–Yrÿôn˜– +±Zâ:qg{©ÉøqwªÛ±«áÙÂ…ÆOßÙˆú= ,ô”iðS" )ï÷|õ½qY(//Zpñgµ¨¿M‰:³6b²4‘ÒæJÀÀ„€î Ad…éÄϾQƒNºÔn§¤ßröûÓ0«b”u¬¶¬TAÇ]÷C¬kMñò¢Ü¿j†Õ’AFÀ;BQZ͸¦÷¹”÷–}‰ÍlºôózPž +±šl}–ħÅÓJ˜AÞÛ‡íëËÌ |•má•} è”[Ž°’ö¤Ð¥cUR€QÂ,(b·m°Ýšo<¿7®ÄÚôcd'üŒŒ•sãQ§kµ´Àtõ hЛ +;&¦Ó¥Óiñ˜ÞÃÁ +?¨6×8çã½µhx«uj¾áh$bÚLJŽ²¨×ùõ‘–td•¶¼Ëx¿[>ê”|šó:qÓ“[Sط㮉 £ƒZ +ôâ|ãÐkßÁ÷8gèú¿î$Á·>×Dˆy¥®d¹%÷/ï6w2²ÿ]©N¤¾ÚTV”güÃ;825ÌLv7#1#càá;>jóòE ¼Ü’{¹«î(QÏêcé™é÷ŒEX×Ú" ÛÌÆs{ªÑI‚Ägž· vå½\"Æ:×XÊ +L×nBgÚ“8ñdzFRs%û\»›ÊòMsÏý¤ µ)1œ¸ ³õÃçŽgµÏ}ÏGí¨+å+**ãñøl9O8UñzójnÆçjófô×ë“çêSt¾|“‘þJÅ×ã*Ï«h×.ôų,ëÿÁÈ­‘–ÖVƒÁ°Òšs©³ yå˜CôÑ¢ŸÑ- ŠgDžN…Ôï¹ÃSß«±½Äl<ßQƒl¯*3ƒòU¶…Wö5 Sn%Ìfäf ¥ ò!vÛЭùÆó{pãJÌ!ñ44.Í AðÓð“d€>uºÖ—˜>ÛßbRaDŽ映­ G§ÓæC¨‡C½ÜÎúŹƹï­EÃírÔ ÄL:Ó¬ž4“–£,ÇŽ´n¯ÆÊ+l¹—»êP›|”ßð“¼ndtÆ7­ññ »§õy ç‡_¯BƒmrSœO?B|XI ÷¹'‚Ì+u%å…¹þe#˜– +±Âcóš¢Ã¼õqòQÇ«Me–¼ù¿»GW)aÚ¤¥}€añD€QaëSž;>º©¼”—[r?é¬Åô(Þ]˜yÒ ~ZÕF},Ârk‹pâfãÙ7«ÑI—e%¼õŒsŽ•ÀÀ@d}\"æp¬±”-2];؈N·'¬–8#è{>U²FOör»KóMsÏÁ[žÇœà¶ÎÖé÷.}Ÿ–±ç®Hí¨+å+**ãñøl9OU;VÑ診ÿjlB]èöíÌOøÜUgSA6𗪢ª +J$U1¡ÊŠúô|¶Þº5ÒÜÒj0VZsâ]uèL»Üí}v§E?%úáÊd—`¸ÉSr˜Eýî¯>°oß`úb³é|G ô(Ç8§ 4:£S<-ùh9Ä¢®»~š]eYúLÎß~µ y“!VðÑÚÖzÄI:T*ôö«5(ªó 3Qnrq\¼TME¼€—eÏmï +&NÒi'43iGm.­Q;Ó:cš–Ê.,{ã&ÈESo1FÇvr)Î4I§ý#“™Ä1ŒRZGX`÷¼}ßsv—EÐñŸCæ<óeÝ|œç{ŸçyßóÍ,­úq'÷Ê®‹£?:X§Í“ ìØ íh°î å¸l̸Mh`±Ö×ïj6,M"㙉Ÿ*‚NSÀÉù¨:=웥´ö¾];nch¼Í0RÇX6¤#==1úü«›‰îæ¥Üfw¥qùl¬ßÁÝÁr9ªe)±?\ ݤ|ôD8í™öyÓggüõ,´èºª‚Ì„˜§®î/@ºßÅÖj©/uÁZáŠáêã6&àâ¡Åpûx©!7•¯Í\p;Þaô{±ãÚ‡ÅNûµ¨œ!ãíÆ;óÓYd<)¦ûå<è4û›tH÷ÙÞ2;ÅNÓjøŸ±nÉ\™ÿù‘bè2ù4Kä²Rn’ñ“ú 7·¯0+uAtÿë¨\tqc2ngD'‡ß®)Û±:•¯RÅõ̇“ßÅE¦4kˈŽ³Úi¾SÏ +ëTHÏLŠ=÷óÍÐf·€Ê]g•F½UÏÉ19‹–¥ÄÝ8²ß² œÕÚ²Ùzý`tdG½Ix±8ka̼ ¯mAú¤G7úðÌG§:NoÙÝMåV©ãÙÙýýýOúÊylнŠŸ"Œ‰>øòž8‡®W +(P @ +(Pð½‡þ ÏàOÖ¹óÓõæÍÁ&***'#¾ÿÍBøK¹ßËûlÚ1;ã³Óç¨-¸Æ쬴hWÀÅC‡ñvMYÅÆ ¤«“c.ýr t›Í:Ÿ·iezˆ5µÆmì„ 4pÐn¶iµ9‹~ÿÕ±Èõ7pcµZ©3+—ªÓጿ…6ƒÏÉýdÇ2Õ‚ùWäË߉ÊeÙl¤rYü¨´9aÓŠ¨üŒåë?”nXš$OüäPt›nŽdÛXŸÖuÇèX-*'ú)ÓpÖ’›ŽôôÄèó¯n&ã^Ág+ó=Dù(FJ'3TÞaºë`´Ù‹–§Ä~~¤N[&œïÄTà3]KÕIUÀÆõ~¯®jkfBì¼q7?F¥e:{_:?ï“™ ,íà¤áÖ;¥ÂºÅd<3áú…Ðeö7 +¾Z”7‹lmR&˜LÀIʇíì‹ÕHÏ\Óý³Ðe 4ë)ö}ÆÀ°ã”›»ƒ-û¯)ߘ±"5î³Ãh;ÎJ܈ ¦ ž€â±ºŸŒ}.¾º`IJü¼«¿*€N3¸¸wÖÐHÕDÔ².Ó·Òl_•‚ÊW«â{;î³MëWHyØ‹‡MÄYí¶Ü©ctϪÈxbÌÙW6A»<þufn‘/Ë8ÆîäȸƒÕæ¤-K‰8ºÞ³L8Ù±Ú²ðœG&6=:Fî¸Ï+¼°M½0fþû¿ØŠt¿[F‡G>jxImZ긛2úc©u3½¤k³³ûûûŸô•óXÀT„©[4xÁJ÷ꜹ[(P @ +(P @Á÷¢ü#•þõ"ÃÀ[oÂÐwsè§ëÍ›ƒ%¥š¨¨¨õêÄO~»®ì;Œ':¹@ëw°þzv²ž>黃ÁMpñàæÅ6\Ü3TÏY7-Aúò”Øž7¶ÁV8m%:@ŽN¨cüõ~40¢O U­ÃN®tmÚÊÔø¾S—­Ðb#JëÖK‡Hçà~KãjÖÁùÝãMº}…jUBtï[…py/œ4ˆN^tácœ?Tzê„K‹Úðaå75ÚMK“$ã G·Ã%+´HwòH„*†éXš´yx¬ïïvsy‹‘®NŠéÙ_@Æ;Œø@À%ÅG,ƒ¦îÄV¤ï¾ãØìEO«âo/¡Ì[ "ZCz7é`§êÒb¤Ø9Ò†ôfŸh3<_°$}AlïoŠáC+:]|€r›Ò,§‡-8édR~Êç+¾ù³†ÉICå¹êÄÏÐ8ÆÞi¹_N~šk +œ:Ž™`Çá$¶lÏ°‹©( éYɱç^ÛJ¹u™q$¨´“Å%ýRÓCCÀ-Cã*Fœœ!7cejÜÀïvRËp \˜9Š nºœ[ˆÎA uÜ×b¨ÎÏL‹›ß‡¿´›:Ž'cnNê¯MÆ×¥'Ü8º®"½œrk’Úí çH¼,›Œëh0z+G¼‚5/ƒŒ'Çõìχž½”[‹T"2·pì^éeÁdÐcOÕH£`ÉUmP'ýëÝRjŽzð¦¹]˜®'ã=•ã§Œ/ïXº<%¶÷P冎šøˆÌCʃ£"½b-Fz¬Çú]Ö’»•?³fM__ß“¾ròúÕ—PT ÑÑ`2‹ƒ7åmQœ+—« +(P @ÁÿÙ¯úØ&Î;|>;>ßçÃ_ù !…8¶“8”AlŸ”@'¤S5­hZ×®ÚÄŠ4„|8&¡+];M[+‘8ƒ”¶”ñU`›ÖiHÓJHB>œ¶4Œ.k7iÓÔÿ†É×Ö»ýÞûpCTúW†x½¾œÏ÷¼¿ç÷<¿;)ÄÿR?ùT¨ªB0›ùË¿[mI_33ݶuA3}¥i³pa÷›OÄŽÖÌFjç{aÕÌ÷V/ôç#A8. +ÁÙH0Ö[=ÿzp®qòÅÊÇ™@ÏJÕ^Ü·Q¸ÐøßS;bݵpÏâ"Jâ’é=ÁÙãµÂ™Æé#[ëŒv33Ðá.ìš=¶ývwÍp#KD(-¯Þš…^ôëžàܱZá\ç?ݺÃmÉM¥~½£ðN#HŠug{€‚ +-ĉˆ‹ôÜé Æ"Áÿ¼YµFÂ~w®”ZØ?ØŒè' zõ\¤f-©å¸Ô ”ží©Yè«Þi˜üQe3èfV{î97vÇâÉzðíÜ©…Ò ‰- êhAïóÇ·ƒò[/oÙV”îÎa¡ñ‹{æúên­žu.(Õ—7ŽdÀæsÇê Ö?^Ûöä£Yd²¿ýþ&èeáD]¬çñÙH òü..,Øùœ¿±?×0æ6奂ò" óû@â‹'Ÿ¸Ý¼Ó½”—Ô»²C-XŠ<½¿ùRU}© èVuòYh¼qñí±(‘XXõ.+ï«ãOïœz±²Êžî°2lñ€ç³ÇëbGA›TzIö’ó¢íhÿãuü™ÿÙ¶],¹FêÒó¡—…õ„‚,Š,£ÏÿÁ\â.¼Q/œoí ”¯EdPïîßÄŸm€ÄcÝâ¨GUÎ.BS±u˜Æ[/?VWlF‰ëµo=S½,¾U„õÔΡ¢µŠ~q‡^I9X‰× gvBâ5%™îlý@;‘Íõm¿ÝS-šv—òˆD¯…A¾ýl$þ”ÇVÉþj?šUèèßhVƒRd ¦‰óƒ"«‰I‰ŸiïôU¬C£¾¶ àÊ•+«ýÊù2œNÞ«N§0<£·-/¿r10000000000000V|üðÙgÂóû„Œ žã„¡ëÐÿ®33ÙZUEDvjÊO¾jŸîªkçú›6_oõ†¸ñßûhqh…áè†|Ã-žþƒ›®·x';oÓ]–› +ô4ZÓU¿î£ÎŠ:üW›=ÜH«o Ù{ý g¢ÓÿËïlØ”g„ÒGÖÁWvõ@ùp‹o,äO.Íuø®·y¯,¶û¦WÛ[üˆ‰åVõãÝö‰ÎÀH«÷=‘m÷Þ£tJ{›Ëá8u8ð‹gJËrY ³Zu[íÚa.âÞ;°y¨Å3ÞÎ-™¦Ðáב6ß@‹w¤Å7Ùå?ÿí2w®~M:uì)×Ͷ ·xû›ÁsoT¦øâ "Ñmó ô ôNtÞÝ·Á_–Áj_j\?ÙióBd`ìè]žÃ†£í>pûZsùp›÷ÃCÇ÷ZPn3R¯ì¶=ò÷7¡D¢íɦAdc!„ À ­>péì·Üåù(qƒNÓ\]ðAG’êo*z(•„a`¸ÑVß ˜ø‡aÿ©§KÊrôÙiÔ«O:&º*ÀO”x‹'¹tXñ­Ã?"5Þâùèwñ»¼Æ4ºkǺ‡80"B{“èãa? 0;Ð\ãž÷}£ÄnC‰g²)Gv®¿qÈŽõahÞâEãâÇC~p |{§_œ}Ö½15®§4MÕ±v/Ì$ +£ò¸Š©Iâ‘r”C•‰CóÏmx4ß°&:ú5ŒØuµ FݽÇcâSè¾Áø Uþæ{_y¬0-ƒÑþpgáT—´ûSÌ*Гgz;''Þê½ö÷íuºÄÆóòò/_¾¼Ú¯œûzƒòßâ÷ìáÓ3øÝ»„ÉIåêç«, C/?çùý“F…©›B,¦\pëÏ** ‚ •…Mqšh‡™^oÖ9¬Lq[š£wgëÝ9úÒli±%6ÖaaífÆnbœf&Ç Õ’* Ã'ƒÒÁE SdfœVº8‹qgÜ9‰+îc(ÉÖ»lè¸ +å)-IªTª,=å0±…™PšvZ¨µ ®H——Hgá×B T§&ߨ:TÏdR€n:lkcJ—U4Ë«$KÚì¨4í23¹©%r¡¼™º:ZobVV¬®‹ŠÊE @wYY»…-2³Åf 4ŽúFHƒÆ3¡$ Èʸ²X‰%ê—¸O±-º‰vZèüt¥–×"ÇL°-ã²±àO)r›/·²o|sYØ‚4¹q“.™ifA€Ë*5ž*–6Ȳ ÅYzˆ¬Ð„"s˜è'5®$®“TvŽ‡²R^rã¤üë²Äï£k);Ô¸ZS +t5)Ïy/ÏÓ„¬S<'+HÕ½º^¡q5®£¡qø˜$5~¯Á‹ç‚æ/ˆOœË{’_d¸r]M’ZRC‰“+(L|4–“Um¡´UƒææÌë6GÆÇÕ›ÆlÕ ˆkëZ{¢N€ŠÉFC¡ à]½22®1ˆù 1Í™7–Eo!M`|œîï$]³-2>dÓ膈îÞ.Ôqy7\›ìtMÇI©ƒ„˜I=á)ßqzئž€ŽÓ Š´´v­5CIEkȸ•E¾ãÝZ3ÆõbÍyÅÓ]£ý‰~ eS›Æ(^šB«,mÕ«5‡*ÁtéŒDOO72óf"`ü`!@+HŸÔ°Ù52n°Pða«Æ<§AT+=jˆ×ŠÞÅ7Å0BBÇᔽ»ÕÜhUCòbÀ©ÒÕGP(#ê8Õ_­yÛ%'«Æi“M­1ª`ØÀ¸Z­~þüùe9g'¤µ¿ÒwÕNY Œ7uŸ¬\å/æ>ú˜ûä“ÊË—Wè«õøøØç{K&“ÑZùÛwÆûl`ËéO;ü™Éežþz.ñNþfˆ)ÄÛèº1¾ËØ|¸²9/2 ‘ µVA½7Cã‰{g£Nºãn(â…”Ö;JóÁG0ëLìO]_'Ôr0Ni¿ò¬î¹ƒÈxk×­¤‘.2ž¶£ëŽÒ(1°é\ÝóÜZµêúU$Ý;O–